From c82de1178a09725bad7494a3d9d706f3a3a3f7be Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Wed, 15 Oct 2025 10:39:46 +0100 Subject: [PATCH 01/56] Working chapter 4 --- .DS_Store | Bin 0 -> 6148 bytes chapters/chap03.ipynb | 461 ++++++++++++++++--- chapters/chap03_stack_diagram.png | Bin 0 -> 66499 bytes chapters/chap04.ipynb | 732 ++++++++++++++++++++++++++++-- chapters/diagram.py | 386 ++++++++++++++++ chapters/jupyturtle.py | 353 ++++++++++++++ chapters/thinkpython.py | 93 ++++ 7 files changed, 1925 insertions(+), 100 deletions(-) create mode 100644 .DS_Store create mode 100644 chapters/chap03_stack_diagram.png create mode 100644 chapters/diagram.py create mode 100644 chapters/jupyturtle.py create mode 100644 chapters/thinkpython.py diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..e6b7433eb3dfee771423d5461b4adea691d0b698 GIT binary patch literal 6148 zcmeHKJ5EC}5S)b+Pohal=__ypD+(vb1%L#U0x5_<|EioTM`QL=5Ixd`CYqJjW3P8? zd5X7h0odYu^8m~N40J~ve3+W=yHD(_Yi#k1kKg>4 z-R|8tWl}&2NC7Dz1*E`56{zw$++Flk9VP{&z%?k~--kwb?1f`ud^$Kp3qYJP9L9O{ z62#^KVlNyM8KGHHiAl9;F)Znfx612KhZtsNO$8rC>)|36Qdk+;pO-~ ck}|LPocq0SObj~XK_}{Gz;%&Hf&W(E2mR+2n*aa+ literal 0 HcmV?d00001 diff --git a/chapters/chap03.ipynb b/chapters/chap03.ipynb index 5f2cb1d3..beb90554 100644 --- a/chapters/chap03.ipynb +++ b/chapters/chap03.ipynb @@ -17,7 +17,16 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Downloaded thinkpython.py\n", + "Downloaded diagram.py\n" + ] + } + ], "source": [ "from os.path import basename, exists\n", "\n", @@ -97,7 +106,18 @@ "execution_count": 3, "id": "2850a402", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "print_lyrics" ] @@ -118,7 +138,16 @@ "execution_count": 4, "id": "9a048657", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "I'm a lumberjack, and I'm okay.\n", + "I sleep all night and I work all day.\n" + ] + } + ], "source": [ "print_lyrics()" ] @@ -171,7 +200,16 @@ "execution_count": 6, "id": "a3ad5f46", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dennis Moore, \n", + "Dennis Moore, \n" + ] + } + ], "source": [ "print_twice('Dennis Moore, ')" ] @@ -189,7 +227,16 @@ "execution_count": 7, "id": "042dfec1", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dennis Moore, \n", + "Dennis Moore, \n" + ] + } + ], "source": [ "string = 'Dennis Moore, '\n", "print(string)\n", @@ -206,12 +253,21 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 9, "id": "8f078ad0", "metadata": {}, - "outputs": [], - "source": [ - "line = 'Dennis Moore, '\n", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Monkey Moore, \n", + "Monkey Moore, \n" + ] + } + ], + "source": [ + "line = 'Monkey Moore, '\n", "print_twice(line)" ] }, @@ -244,7 +300,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 10, "id": "e86bb32c", "metadata": {}, "outputs": [], @@ -263,10 +319,18 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 11, "id": "ec117999", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Spam, Spam, Spam, Spam, \n" + ] + } + ], "source": [ "spam = 'Spam, '\n", "repeat(spam, 4)" @@ -282,7 +346,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 12, "id": "3731ffd8", "metadata": {}, "outputs": [], @@ -302,10 +366,19 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 13, "id": "6792e63b", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Spam, Spam, Spam, Spam, \n", + "Spam, Spam, Spam, Spam, \n" + ] + } + ], "source": [ "first_two_lines()" ] @@ -320,7 +393,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 14, "id": "2dcb020a", "metadata": {}, "outputs": [], @@ -333,10 +406,20 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 15, "id": "9ff8c60e", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Spam, Spam, \n", + "(Lovely Spam, Wonderful Spam!)\n", + "Spam, Spam, \n" + ] + } + ], "source": [ "last_three_lines()" ] @@ -351,7 +434,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 16, "id": "78bf3a7b", "metadata": {}, "outputs": [], @@ -363,10 +446,22 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 17, "id": "ba5da431", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Spam, Spam, Spam, Spam, \n", + "Spam, Spam, Spam, Spam, \n", + "Spam, Spam, \n", + "(Lovely Spam, Wonderful Spam!)\n", + "Spam, Spam, \n" + ] + } + ], "source": [ "print_verse()" ] @@ -395,10 +490,19 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 18, "id": "29b7eff3", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n", + "1\n" + ] + } + ], "source": [ "for i in range(2):\n", " print(i)" @@ -427,10 +531,31 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 19, "id": "038ad592", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Verse 0\n", + "Spam, Spam, Spam, Spam, \n", + "Spam, Spam, Spam, Spam, \n", + "Spam, Spam, \n", + "(Lovely Spam, Wonderful Spam!)\n", + "Spam, Spam, \n", + "\n", + "Verse 1\n", + "Spam, Spam, Spam, Spam, \n", + "Spam, Spam, Spam, Spam, \n", + "Spam, Spam, \n", + "(Lovely Spam, Wonderful Spam!)\n", + "Spam, Spam, \n", + "\n" + ] + } + ], "source": [ "for i in range(2):\n", " print(\"Verse\", i)\n", @@ -449,7 +574,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 20, "id": "8887637a", "metadata": {}, "outputs": [], @@ -460,6 +585,41 @@ " print()" ] }, + { + "cell_type": "code", + "execution_count": 21, + "id": "8476d1b4", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Spam, Spam, Spam, Spam, \n", + "Spam, Spam, Spam, Spam, \n", + "Spam, Spam, \n", + "(Lovely Spam, Wonderful Spam!)\n", + "Spam, Spam, \n", + "\n", + "Spam, Spam, Spam, Spam, \n", + "Spam, Spam, Spam, Spam, \n", + "Spam, Spam, \n", + "(Lovely Spam, Wonderful Spam!)\n", + "Spam, Spam, \n", + "\n", + "Spam, Spam, Spam, Spam, \n", + "Spam, Spam, Spam, Spam, \n", + "Spam, Spam, \n", + "(Lovely Spam, Wonderful Spam!)\n", + "Spam, Spam, \n", + "\n" + ] + } + ], + "source": [ + "print_n_verses(3)" + ] + }, { "cell_type": "markdown", "id": "ad8060fe", @@ -482,7 +642,7 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 22, "id": "0db8408e", "metadata": {}, "outputs": [], @@ -502,10 +662,19 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 23, "id": "1c556e48", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Always look on the bright side of life.\n", + "Always look on the bright side of life.\n" + ] + } + ], "source": [ "line1 = 'Always look on the '\n", "line2 = 'bright side of life.'\n", @@ -523,12 +692,21 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 24, "id": "73f03eea", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'cat' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[31mNameError\u001b[39m\u001b[31m:\u001b[39m name 'cat' is not defined\n" + ] + } + ], "source": [ "%%expect NameError\n", "\n", @@ -564,7 +742,7 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 26, "id": "83df4e32", "metadata": { "tags": [] @@ -593,12 +771,23 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 27, "id": "bcd5e1df", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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o48+6pYtW+Y1j59++umo56jzjBkzElXPhJ793HPP2TOTkkceecRVrFjR3XPPPbHOhfd9eL0OHDjgGjRoYHPr1VdfPad1lJRkTLaSRYozcOBA16VLF5clSxaXVlmyZInLlSuX27Bhg9u2bZsrWrRoSlcpzbNjxw43btw416FDhxSrw+nTp91bb711zuV8//33bs6cOa558+aJui8pnu3L3r173cyZM93OnTtdhgwZvOu1ePFily1bNrdgwQKXmlCkkYb48ssvXcOGDV21atVc1apV3dy5c80rql27tnkjjRo1cps3b7Zru3XrZj85xrl9+/alWL0x9pMnT3YbN250Z86ciffavHnzxvg+ceJE165dO9eiRQs3adKkqPf06dPHvfbaa/b7Z5995nLmzBnqB0STZwNGkr6i7zAye/bsseNPPvlk6H7g3uuvv96dOnXKffrpp3Y9fVi5cmXr84SYMmWK3RM8Z9euXSFD+fzzz1s5fHr06OFOnjwZ6/5Vq1aZV7pu3bpY5xjHNm3auCpVqlgZGP9w7/KVV15x9erVs+hs8ODBUevH3KCNtOnuu+8OHf/kk0+i3ks/MQZ16tSx5/bt2zfOth85csTKpP7MPaKaIAq57bbb3L333mtlfPXVV65x48Zm8OG3335zd9xxh93Hz/bt28fw9qlDy5Yt7XyTJk3MC6cv+vXrF4r0gjkfTlzjF/nsO++808q+/fbbzbgH/P333+7FF1+0tlNGu3bt3MGDB73H/dChQ9ZuIv5atWq5IUOGxNl34fVCMF544QXrJ57Ld/r2scces7rwjK5du0adP9HWUVIi0UgjsEgIbV966SUzKitXrrSJ0717d7d06VL7/uCDD7qnnnrKrh86dKj9nD9/vp3Lnz9/itWdZ+MxUZcJEybEKx60JbzNixYtMsFo27atGf9o97GIiEiAxVWpUqXQd37WrVvXfh80aJCVv3r1ahPeAQMGhFJD48ePN6MO77zzjhmtjBkzupdfftn6kj7kvoTSULSNxY5nyfUYKlIO8O6775oQkH6gvK1bt8ZKSXFfz5493fTp012FChVilc+54sWLuy+++MKMC2mLNWvWhM7/8ccf1me0+8033wwJVji0hzKow9SpUxO8t2PHju6hhx6y4ytWrHDffPONmzVrVtT2Uy9EZe3atSYaGLYADCAGmGvol3CYt4wb940e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IxqffPKJ6969e4LXHTp0yA0cODBZ67Jnzx7373//21WtWtXdcMMNbtKkSS4tULp06Rjfz54968qUKeOaNm0a4/jy5ctd9erVXWogKerSqVMnN2LECHc+2L59uxs7dmysfl+/fv05lfv++++71q1be1//6KOPumXLliV4Xf/+/d3TTz8d9Rx1njFjRqLqmdCzn3vuOXtmUvLII4+4ihUrunvuuSfWufC+D6/XgQMHXIMGDWxuvfrqq+e0jtIaF8WfETl16pS7/fbb7eMrGs8880yy1ofJf9NNN7lff/3V3Xjjja5Zs2Yua9asLi2xZMkSlytXLrdhwwa3bds2V7Ro0ZSuUppnx44dbty4ca5Dhw4pVofTp0+7t95665zL+f77792cOXNc8+bNE3VfUjzbl71797qZM2e6nTt3ugwZMnjXa/HixS5btmxuwYIF7mIjTUca6dKlc88//7wrX768u/baa82bCj/34osvmgfRq1cvN378eHfnnXeGjB1q36VLF1euXDlXqlQp99VXX4W8Sv6OFBEARj05KFKkSKjsv/76y6VPn94+KQHGfvLkyW7jxo3uzJkz8V6bN2/eGN8nTpzo2rVr51q0aBFntNSnTx/32muv2e+fffaZy5kzp9u8ebN9p/95NmAka9eubdEXRoZoDJ588snQ/cC9119/vQnvp59+atfj7VWuXNnNnTs3wfZOmTLF7gmes2vXrpChZC5RDp8ePXq4kydPxrp/1apVNqfWrVsX69y+fftcmzZtXJUqVawMjH8A8+2VV15x9erVs+hs8ODBUevXrVs3ayNtuvvuu2NEytHupZ8Ygzp16thz+/btG2fbmdeUSf0bNWpkUQ2wbm677TZ37733WhmshcaNG5vBh99++83dcccddh8/27dvH8Pbpw4tW7a0802aNDEvnL7o169fKNKjXZHENX6Rz2bdUjZOH8Y94O+//7Y1Ttspg344ePCg97jjINLuP//809WqVcsNGTIkzr4Lr9fixYvdCy+8YP3Ec/lO3z722GNWF57RtWvXqPMn2jpKa6Rp0QjE4ZtvvnHz58+3QcMIBuA5rF27Nmr4+N///tcm2XfffWf34fnDqFGj7A+EffvttyEhSS5YWCxiFmCWLFlcSpA/f37zmOi/CRMmxCseS5cuDf2OYVi0aJEJRtu2bc34R7uPRYRIA4urUqVKoe/8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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "from diagram import diagram, adjust\n", "\n", @@ -638,7 +827,7 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 28, "id": "886519cf", "metadata": {}, "outputs": [], @@ -658,12 +847,20 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 29, "id": "1fe8ee82", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Verbose\n" + ] + } + ], "source": [ "# This cell tells Jupyter to provide detailed debugging information\n", "# when a runtime error occurs, including a traceback.\n", @@ -673,12 +870,26 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 30, "id": "d9082f88", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'cat' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mNameError\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[30]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[32m----> \u001b[39m\u001b[32m1\u001b[39m \u001b[43mcat_twice\u001b[49m\u001b[43m(\u001b[49m\u001b[43mline1\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mline2\u001b[49m\u001b[43m)\u001b[49m\n line1 \u001b[34m= \u001b[39m\u001b[34m'Always look on the '\u001b[39m\n line2 \u001b[34m= \u001b[39m\u001b[34m'bright side of life.'\u001b[39m", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[22]\u001b[39m\u001b[32m, line 3\u001b[39m, in \u001b[36mcat_twice\u001b[39m\u001b[34m(part1='Always look on the ', part2='bright side of life.')\u001b[39m\n\u001b[32m 1\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34mcat_twice\u001b[39m(part1, part2):\n\u001b[32m 2\u001b[39m cat = part1 + part2\n\u001b[32m----> \u001b[39m\u001b[32m3\u001b[39m \u001b[43mprint_twice\u001b[49m\u001b[43m(\u001b[49m\u001b[43mcat\u001b[49m\u001b[43m)\u001b[49m\n cat \u001b[34m= \u001b[39m\u001b[34m'Always look on the bright side of life.'\u001b[39m", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[28]\u001b[39m\u001b[32m, line 2\u001b[39m, in \u001b[36mprint_twice\u001b[39m\u001b[34m(string='Always look on the bright side of life.')\u001b[39m\n\u001b[32m 1\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34mprint_twice\u001b[39m(string):\n\u001b[32m----> \u001b[39m\u001b[32m2\u001b[39m \u001b[38;5;28mprint\u001b[39m(\u001b[43mcat\u001b[49m) \u001b[38;5;66;03m# NameError\u001b[39;00m\n\u001b[32m 3\u001b[39m \u001b[38;5;28mprint\u001b[39m(cat)\n", + "\u001b[31mNameError\u001b[39m: name 'cat' is not defined" + ] + } + ], "source": [ "%%expect NameError\n", "\n", @@ -797,12 +1008,20 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 31, "id": "3f77b428", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Verbose\n" + ] + } + ], "source": [ "# This cell tells Jupyter to provide detailed debugging information\n", "# when a runtime error occurs. Run it before working on the exercises.\n", @@ -842,6 +1061,83 @@ "And if you get stuck on any of the exercises below, consider asking a VA for help." ] }, + { + "cell_type": "code", + "execution_count": 34, + "id": "3c181950", + "metadata": {}, + "outputs": [], + "source": [ + "def repeat_recursive(input, number):\n", + " if number <= 0:\n", + " return\n", + " \n", + " print(input)\n", + "\n", + " repeat_recursive(input, number - 1)" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "e4cbd89e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Example using a recursive function:\n", + "RepeatMeYourself\n", + "RepeatMeYourself\n" + ] + } + ], + "source": [ + "print(\"Example using a recursive function:\")\n", + "repeat_recursive(\"RepeatMeYourself\", 2)" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "15a1c69f", + "metadata": {}, + "outputs": [], + "source": [ + "def repeat(input, number):\n", + " for _ in range(number):\n", + " print(input)" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "435654c6", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "First example:\n", + "Hello!\n", + "Hello!\n", + "Second example:\n", + "PythonBaby\n", + "PythonBaby\n", + "PythonBaby\n" + ] + } + ], + "source": [ + "print(\"First example:\")\n", + "repeat(\"Hello!\", 2)\n", + "\n", + "print(\"Second example:\")\n", + "repeat(\"PythonBaby\", 3)" + ] + }, { "cell_type": "markdown", "id": "b7157b09", @@ -854,12 +1150,16 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 45, "id": "a6004271", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def print_right(text):\n", + " target_width = 40\n", + " spaces = target_width - len(text)\n", + " print(\" \" * spaces + text)" ] }, { @@ -874,12 +1174,22 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 46, "id": "f142ce6a", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Monty\n", + " Python's\n", + " Flying Circus\n" + ] + } + ], "source": [ "print_right(\"Monty\")\n", "print_right(\"Python's\")\n", @@ -898,23 +1208,41 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 101, "id": "7aa95014", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def triangle(input, number):\n", + " for i in range(number):\n", + " space_number = number - i\n", + " spaces = \" \" * space_number\n", + " text = input * i\n", + " print(spaces + text + (text * 1)) " ] }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 102, "id": "b8146a0d", "metadata": { "scrolled": true, "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " \n", + " LL\n", + " LLLL\n", + " LLLLLL\n", + " LLLLLLLL\n" + ] + } + ], "source": [ "triangle('L', 5)" ] @@ -931,23 +1259,37 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 105, "id": "bcedab79", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def rectangle(text, width, height):\n", + " for i in range(height):\n", + " print(text * width)" ] }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 106, "id": "73b0c0f6", "metadata": { "scrolled": true, "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "HHHHH\n", + "HHHHH\n", + "HHHHH\n", + "HHHHH\n" + ] + } + ], "source": [ "rectangle('H', 5, 4)" ] @@ -975,12 +1317,17 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": null, "id": "53424b43", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def bottle_verse(number):\n", + " print()\n", + " print()\n", + " function()\n", + " print()" ] }, { @@ -1068,7 +1415,7 @@ "metadata": { "celltoolbar": "Tags", "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "thinkpy", "language": "python", "name": "python3" }, @@ -1082,7 +1429,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.13.5" } }, "nbformat": 4, diff --git a/chapters/chap03_stack_diagram.png b/chapters/chap03_stack_diagram.png new file mode 100644 index 0000000000000000000000000000000000000000..525b0d9d80acf8ecfbe570b23a64856f3bba9881 GIT binary patch literal 66499 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 d{jz`a5ae|m\n", + " \n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "jupyturtle.make_turtle()\n", "jupyturtle.forward(100)" @@ -119,7 +151,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 5, "id": "234fde81", "metadata": {}, "outputs": [], @@ -137,12 +169,36 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 6, "id": "1e768880", "metadata": {}, - "outputs": [], - "source": [ - "make_turtle()\n", + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "make_turtle() # Removes the need of the dot operation on calling a function!\n", "forward(100)" ] }, @@ -157,7 +213,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 7, "id": "6d874b03", "metadata": {}, "outputs": [], @@ -179,11 +235,45 @@ "execution_count": 9, "id": "1bb57a0c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", "forward(50)\n", "left(90)\n", + "forward(50)\n", + "left(90)\n", + "forward(50)\n", + "left(90)\n", "forward(50)" ] }, @@ -211,7 +301,37 @@ "execution_count": 10, "id": "9a9e455f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", "\n", @@ -241,7 +361,37 @@ "execution_count": 11, "id": "cc27ad66", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", "for i in range(4):\n", @@ -287,7 +437,37 @@ "execution_count": 13, "id": "193bbe5e", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", "square()" @@ -331,7 +511,45 @@ "execution_count": 15, "id": "b283e795", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", "square(30)\n", @@ -378,7 +596,43 @@ "execution_count": 17, "id": "71f7d9d2", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", "polygon(7, 30)" @@ -400,7 +654,43 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", "polygon(n=7, length=30)" @@ -464,7 +754,89 @@ "execution_count": 20, "id": "75258056", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle(delay=0.02)\n", "circle(30)" @@ -588,12 +960,194 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 27, "id": "80d6eadd", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ - "make_turtle(delay=0)\n", + "make_turtle(delay=0.02)\n", "polygon(n=20, length=9)\n", "arc(radius=70, angle=70)\n", "circle(radius=10)" @@ -625,7 +1179,7 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 28, "id": "1571ee71", "metadata": { "tags": [] @@ -646,12 +1200,23 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 29, "id": "f4e37360", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "from diagram import diagram, adjust\n", "\n", @@ -714,7 +1279,7 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 30, "id": "baf964ba", "metadata": {}, "outputs": [], @@ -736,7 +1301,7 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 31, "id": "e2e006d5", "metadata": {}, "outputs": [], @@ -768,7 +1333,7 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 32, "id": "b68f3682", "metadata": {}, "outputs": [], @@ -876,12 +1441,20 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 33, "id": "9f94061e", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Verbose\n" + ] + } + ], "source": [ "# This cell tells Jupyter to provide detailed debugging information\n", "# when a runtime error occurs. Run it before working on the exercises.\n", @@ -905,7 +1478,7 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 34, "id": "6f9a0106", "metadata": {}, "outputs": [], @@ -935,12 +1508,20 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 37, "id": "c54ba660", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def rectangle(w_length, h_length):\n", + " forward(w_length)\n", + " left(90)\n", + " forward(h_length)\n", + " left(90)\n", + " forward(w_length)\n", + " left(90)\n", + " forward(h_length)" ] }, { @@ -955,12 +1536,42 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 38, "id": "1311ee08", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", "rectangle(80, 40)" @@ -978,12 +1589,16 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 39, "id": "3db6f106", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def rhombus(length, interior_angle):\n", + " for n in range(4):\n", + " forward(length)\n", + " left(interior_angle)" ] }, { @@ -993,17 +1608,48 @@ "tags": [] }, "source": [ - "You can use the following code to test your function." + "You can use the following code to test your function.\n", + "# BOOKMARK 15/10/25" ] }, { "cell_type": "code", - "execution_count": 36, + "execution_count": 40, "id": "1d845de9", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", "rhombus(50, 60)" @@ -1330,7 +1976,7 @@ "metadata": { "celltoolbar": "Tags", "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "thinkpy", "language": "python", "name": "python3" }, @@ -1344,7 +1990,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.13.5" } }, "nbformat": 4, diff --git a/chapters/diagram.py b/chapters/diagram.py new file mode 100644 index 00000000..b33f97dc --- /dev/null +++ b/chapters/diagram.py @@ -0,0 +1,386 @@ +import matplotlib.pyplot as plt +import matplotlib.patches as patches + +from matplotlib.transforms import Bbox, TransformedBbox + +# TODO: Study this https://matplotlib.org/stable/tutorials/text/annotations.html#sphx-glr-tutorials-text-annotations-py + + +def override(d1, **d2): + """Add key-value pairs to d. + + d1: dictionary + d2: keyword args to add to d + + returns: new dict + """ + d = d1.copy() + d.update(d2) + return d + +def underride(d1, **d2): + """Add key-value pairs to d only if key is not in d. + + d1: dictionary + d2: keyword args to add to d + + returns: new dict + """ + d = d2.copy() + d.update(d1) + return d + +def diagram(width=5, height=1, **options): + fig, ax = plt.subplots(**options) + + # TODO: dpi in the notebook should be 100, in the book it should be 300 or 600 + # fig.set_dpi(100) + + # Set figure size + fig.set_size_inches(width, height) + + plt.rc('font', size=8) + + # Set axes position + ax.set_position([0, 0, 1, 1]) + + # Set x and y limits + ax.set_xlim(0, width) + ax.set_ylim(0, height) + + # Remove the spines, ticks, and labels + despine(ax) + return ax + +def despine(ax): + # Remove the spines + ax.spines['right'].set_visible(False) + ax.spines['top'].set_visible(False) + ax.spines['bottom'].set_visible(False) + ax.spines['left'].set_visible(False) + + # Remove the axis labels + ax.set_xticklabels([]) + ax.set_yticklabels([]) + + # Remove the tick marks + ax.tick_params(axis='both', which='both', length=0, width=0) + +def adjust(x, y, bbox): + """Adjust the coordinates of a point based on a bounding box. + + x: x coordinate + y: y coordinate + bbox: Bbox object + + returns: tuple of coordinates + """ + width = bbox.width + height = bbox.height + 0.2 + t = width, height, x - bbox.x0, y - bbox.y0 + 0.1 + return [round(x, 2) for x in t] + +def get_bbox(ax, handle): + bbox = handle.get_window_extent() + transformed = TransformedBbox(bbox, ax.transData.inverted()) + return transformed + +def draw_bbox(ax, bbox, **options): + options = underride(options, facecolor='gray', alpha=0.1, linewidth=0) + rect = patches.Rectangle((bbox.xmin, bbox.ymin), bbox.width, bbox.height, **options) + handle = ax.add_patch(rect) + bbox = get_bbox(ax, handle) + return bbox + +def draw_box_around(ax, bboxes, **options): + bbox = Bbox.union(bboxes) + return draw_bbox(ax, padded(bbox), **options) + +def padded(bbox, dx=0.1, dy=0.1): + """Add padding to a bounding box. + """ + [x0, y0], [x1, y1] = bbox.get_points() + return Bbox([[x0-dx, y0-dy], [x1+dx, y1+dy]]) + +def make_binding(name, value, **options): + """Make a binding between a name and a value. + + name: string + value: any type + + returns: Binding object + """ + if not isinstance(value, Frame): + value = Value(repr(value)) + + return Binding(Value(name), value, **options) + +def make_mapping(key, value, **options): + """Make a binding between a key and a value. + + key: any type + value: any type + + returns: Binding object + """ + return Binding(Value(repr(key)), Value(repr(value)), **options) + +def make_dict(d, name='dict', **options): + """Make a Frame that represents a dictionary. + + d: dictionary + name: string + options: passed to Frame + """ + mappings = [make_mapping(key, value) for key, value in d.items()] + return Frame(mappings, name=name, **options) + +def make_frame(d, name='frame', **options): + """Make a Frame that represents a stack frame. + + d: dictionary + name: string + options: passed to Frame + """ + bindings = [make_binding(key, value) for key, value in d.items()] + return Frame(bindings, name=name, **options) + +class Binding(object): + def __init__(self, name, value=None, **options): + """ Represents a binding between a name and a value. + + name: Value object + value: Value object + """ + self.name = name + self.value = value + self.options = options + + def draw(self, ax, x, y, **options): + options = override(self.options, **options) + dx = options.pop('dx', 0.4) + dy = options.pop('dy', 0) + draw_value = options.pop('draw_value', True) + + bbox1 = self.name.draw(ax, x, y, ha='right') + bboxes = [bbox1] + + arrow = Arrow(dx=dx, dy=dy, **options) + bbox2 = arrow.draw(ax, x, y) + + if draw_value: + bbox3 = self.value.draw(ax, x+dx, y+dy) + # only include the arrow if we drew the value + bboxes.extend([bbox2, bbox3]) + + bbox = Bbox.union(bboxes) + # draw_bbox(ax, self.bbox) + self.bbox = bbox + return bbox + + +class Element(object): + def __init__(self, index, value, **options): + """ Represents a an element of a list. + + index: integer + value: Value object + """ + self.index = index + self.value = value + self.options = options + + def draw(self, ax, x, y, dx=0.15, **options): + options = override(self.options, **options) + draw_value = options.pop('draw_value', True) + + bbox1 = self.index.draw(ax, x, y, ha='right', fontsize=6, color='gray') + bboxes = [bbox1] + + if draw_value: + bbox2 = self.value.draw(ax, x+dx, y) + bboxes.append(bbox2) + + bbox = Bbox.union(bboxes) + self.bbox = bbox + # draw_bbox(ax, self.bbox) + return bbox + + +class Value(object): + def __init__(self, value): + self.value = value + self.options = dict(ha='left', va='center') + self.bbox = None + + def draw(self, ax, x, y, **options): + options = override(self.options, **options) + + handle = ax.text(x, y, self.value, **options) + bbox = self.bbox = get_bbox(ax, handle) + # draw_bbox(ax, bbox) + self.bbox = bbox + return bbox + + +class Arrow(object): + def __init__(self, **options): + # Note for the future about dotted arrows + # self.arrowprops = dict(arrowstyle="->", ls=':') + arrowprops = dict(arrowstyle="->", color='gray') + options = underride(options, arrowprops=arrowprops) + self.options = options + + def draw(self, ax, x, y, **options): + options = override(self.options, **options) + dx = options.pop('dx', 0.5) + dy = options.pop('dy', 0) + shim = options.pop('shim', 0.02) + + handle = ax.annotate("", [x+dx, y+dy], [x+shim, y], **options) + bbox = get_bbox(ax, handle) + self.bbox = bbox + return bbox + + +class ReturnArrow(object): + def __init__(self, **options): + style = "Simple, tail_width=0.5, head_width=4, head_length=8" + options = underride(options, arrowstyle=style, color="gray") + self.options = options + + def draw(self, ax, x, y, **options): + options = override(self.options, **options) + value = options.pop('value', None) + dx = options.pop('dx', 0) + dy = options.pop('dy', 0.4) + shim = options.pop('shim', 0.02) + + x += shim + arrow = patches.FancyArrowPatch((x, y), (x+dx, y+dy), + connectionstyle="arc3,rad=.6", **options) + handle = ax.add_patch(arrow) + bbox = get_bbox(ax, handle) + + if value is not None: + handle = plt.text(x+0.15, y+dy/2, str(value), ha='left', va='center') + bbox2 = get_bbox(ax, handle) + bbox = Bbox.union([bbox, bbox2]) + + self.bbox = bbox + return bbox + + +class Frame(object): + def __init__(self, bindings, **options): + self.bindings = bindings + self.options = options + + def draw(self, ax, x, y, **options): + options = override(self.options, **options) + name = options.pop('name', '') + value = options.pop('value', None) + dx = options.pop('dx', 0) + dy = options.pop('dy', 0) + offsetx = options.pop('offsetx', 0) + offsety = options.pop('offsety', 0) + shim = options.pop('shim', 0) + loc = options.pop('loc', 'top') + box_around = options.pop('box_around', None) + + x += offsetx + y += offsety + save_y = y + + if len(self.bindings) == 0: + bbox = Bbox([[x, y], [x, y]]) + bboxes = [bbox] + else: + bboxes = [] + + # draw the bindings + for binding in self.bindings: + bbox = binding.draw(ax, x, y) + bboxes.append(bbox) + x += dx + y += dy + + if box_around: + bbox1 = draw_bbox(ax, box_around, **options) + else: + bbox1 = draw_box_around(ax, bboxes, **options) + bboxes.append(bbox1) + + if value is not None: + arrow = ReturnArrow(value=value) + x = bbox1.xmax + shim + bbox2 = arrow.draw(ax, x, save_y, value=value) + bboxes.append(bbox2) + + if name: + if loc == 'top': + x = bbox1.xmin + y = bbox1.ymax + 0.02 + handle = plt.text(x, y, name, ha='left', va='bottom') + elif loc == 'left': + x = bbox1.xmin - 0.1 + y = save_y + handle = plt.text(x, y, name, ha='right', va='center') + bbox3 = get_bbox(ax, handle) + bboxes.append(bbox3) + + bbox = Bbox.union(bboxes) + self.bbox = bbox + return bbox + + +class Stack(object): + def __init__(self, frames, **options): + self.frames = frames + self.options = options + + def draw(self, ax, x, y, **options): + options = override(self.options, **options) + dx = options.pop('dx', 0) + dy = options.pop('dy', -0.4) + + # draw the frames + bboxes = [] + for frame in self.frames: + bbox = frame.draw(ax, x, y) + bboxes.append(bbox) + x += dx + y += dy + + bbox = Bbox.union(bboxes) + self.bbox = bbox + return bbox + +def make_rebind(name, seq): + bindings = [] + for i, value in enumerate(seq): + dy = dy=-0.3*i + if i == len(seq)-1: + binding = make_binding(name, value, dy=dy) + else: + arrowprops = dict(arrowstyle="->", color='gray', ls=':') + binding = make_binding('', value, dy=dy, arrowprops=arrowprops) + bindings.append(binding) + + return bindings + +def make_element(index, value): + return Element(Value(index), Value(repr(value))) + +def make_list(seq, name='list', **options): + elements = [make_element(index, value) for index, value in enumerate(seq)] + return Frame(elements, name=name, **options) + +def draw_bindings(bindings, ax, x, y): + bboxes = [] + for binding in bindings: + bbox = binding.draw(ax, x, y) + bboxes.append(bbox) + + bbox = Bbox.union(bboxes) + return bbox \ No newline at end of file diff --git a/chapters/jupyturtle.py b/chapters/jupyturtle.py new file mode 100644 index 00000000..0425bbbd --- /dev/null +++ b/chapters/jupyturtle.py @@ -0,0 +1,353 @@ +""" +jupyturtle.py release 2024-03 +Celebrating Think Python Third Edition" +""" + +import math +import sys +import time +from dataclasses import dataclass +from textwrap import dedent +from typing import NamedTuple + +from IPython.display import display, HTML, DisplayHandle + + +# defaults +DRAW_WIDTH = 300 +DRAW_HEIGHT = 150 +DRAW_BGCOLOR = '#F3F3F7' # "anti-flash white" (non-standard name) + + +DRAW_SVG = dedent( +""" + + + +{contents} + + +""" +).strip() + + +@dataclass +class Drawing: + width: int = DRAW_WIDTH + height: int = DRAW_HEIGHT + bgcolor: str = DRAW_BGCOLOR + handle: DisplayHandle | None = None + + def get_SVG(self, contents): + return DRAW_SVG.format( + width=self.width, + height=self.height, + bgcolor=self.bgcolor, + contents=contents, + ) + + +class Point(NamedTuple): + x: float = 0 + y: float = 0 + + def translated(self, dx: float, dy: float): + return Point(self.x + dx, self.y + dy) + + +LINE_SVG = dedent( +""" + +""" +).strip() + + +class Line(NamedTuple): + p1: Point + p2: Point + color: str + width: int + + def get_SVG(self): + (x1, y1), (x2, y2) = self.p1, self.p2 + return LINE_SVG.format( + x1=round(x1, 1), + y1=round(y1, 1), + x2=round(x2, 1), + y2=round(y2, 1), + color=self.color, + width=self.width, + ) + + +# mapping of method names to global aliases +_commands = {} + + +# decorators to build procedural API with turtle commands +def command(method): + """register method for use as a top level function in procedural API""" + _commands[method.__name__] = [] # no alias + return method + + +def command_alias(*names): + def decorator(method): + _commands[method.__name__] = list(names) + return method + + return decorator + + +# defaults +TURTLE_HEADING = 0.0 # pointing to screen left, a.k.a. "east" +TURTLE_COLOR = '#63A375' # "mint" (non-standard name) +TURTLE_DELAY = 0.2 # pause after each visual command, in seconds +PEN_COLOR = '#663399' # rebeccapurple https://www.w3.org/TR/css-color-4/#valdef-color-rebeccapurple +PEN_WIDTH = 2 + + +TURTLE_SVG = dedent( +""" + + + + +""" +).rstrip() + + +class Turtle: + def __init__( + self, *, auto_render=True, delay: float | None = None, drawing: Drawing | None = None + ): + self.auto_render = auto_render + self.delay = delay + self.drawing = drawing if drawing else Drawing() + self.position = Point(self.drawing.width // 2, self.drawing.height // 2) + self.heading = TURTLE_HEADING + self.color = TURTLE_COLOR + self.visible = True + self.active_pen = True + self.pen_color = PEN_COLOR + self.pen_width = PEN_WIDTH + self.lines: list[Line] = [] + # TODO: issue warning if `display` did not return a handle + self.drawing.handle = display(HTML(self.get_SVG()), display_id=True) + + @property + def x(self) -> float: + return self.position.x + + @property + def y(self) -> float: + return self.position.y + + @property + def heading(self) -> float: + return self.__heading + + @heading.setter + def heading(self, new_heading) -> None: + self.__heading = new_heading % 360.0 + + @property + def delay(self): + return self.__delay + + @delay.setter + def delay(self, s): + if s is None: + self.__delay = TURTLE_DELAY + return + if s == 0: + self.__delay = 0 + return + if not self.auto_render: + print('Warning: delay is ignored when auto_render=False', file=sys.stderr) + self.__delay = s + + def get_SVG(self): + svg = [] + for line in self.lines: + svg.append(line.get_SVG()) + if self.visible: + svg.append( + TURTLE_SVG.format( + id=f'turtle{id(self):x}', + x=round(self.x, 1), + y=round(self.y, 1), + heading=round(self.heading - 90, 1), + color=self.color, + ) + ) + + return self.drawing.get_SVG('\n'.join(svg)) + + @command + def render(self): + # TODO: issue warning if `handle` is None + if h := self.drawing.handle: + if self.delay and self.auto_render: + time.sleep(self.delay) + h.update(HTML(self.get_SVG())) + + @command + def hide(self): + """Hide turtle. It will still leave trail if the pen is down.""" + self.visible = False + # every method that changes the drawing must: + if self.auto_render: # check if auto_render is enabled + self.render() # if so, update the display + + @command + def show(self): + """Show turtle.""" + self.visible = True + if self.auto_render: + self.render() + + @command_alias('fd') + def forward(self, units: float): + """Move turtle forward by units; leave trail if pen is down.""" + angle = math.radians(self.heading) + dx = units * math.cos(angle) + dy = units * math.sin(angle) + new_pos = self.position.translated(dx, dy) + if self.active_pen: + self.lines.append( + Line( + p1=self.position, + p2=new_pos, + color=self.pen_color, + width=self.pen_width, + ) + ) + self.position = new_pos + if self.auto_render: + self.render() + + @command_alias('bk') + def back(self, units: float): + """Move the turtle backward by units, drawing if the pen is down.""" + self.forward(-units) + + @command + def jumpto(self, x: float, y: float): + """Teleport the turtle to coordinates (x, y) without drawing.""" + self.position = Point(x, y) + if self.auto_render: + self.render() + + @command + def moveto(self, x: float, y: float): + """Move the turtle to coordinates (x, y), drawing if the pen is down.""" + new_pos = Point(x, y) + if self.active_pen: + self.lines.append( + Line( + p1=self.position, + p2=new_pos, + color=self.pen_color, + width=self.pen_width, + ) + ) + self.position = new_pos + if self.auto_render: + self.render() + + @command_alias('lt') + def left(self, degrees: float): + """Turn turtle left by degrees.""" + self.heading -= degrees + if self.auto_render: + self.render() + + @command_alias('rt') + def right(self, degrees: float): + """Turn turtle right by degrees.""" + self.heading += degrees + if self.auto_render: + self.render() + + @command + def penup(self): + """Lift the pen, so turtle stops drawing.""" + self.active_pen = False + + @command + def pendown(self): + """Lower the pen, so turtle starts drawing.""" + self.active_pen = True + + def __enter__(self): + self.saved_auto_render = self.auto_render + self.auto_render = False + return self + + def __exit__(self, exc_type, exc_value, traceback): + self.auto_render = self.saved_auto_render + if self.auto_render: + self.render() + + +################################################## procedural API + +# _install_command() will append more names when the module loads +__all__ = ['Turtle', 'make_turtle', 'get_turtle'] + + +def __dir__(): + return sorted(__all__) + + +_main_turtle = None + + +def make_turtle( + *, auto_render=True, delay=None, width=DRAW_WIDTH, height=DRAW_HEIGHT +) -> None: + """Makes new Turtle and sets _main_turtle.""" + global _main_turtle + drawing = Drawing(width=width, height=height) + _main_turtle = Turtle(auto_render=auto_render, delay=delay, drawing=drawing) + return _main_turtle + + +def get_turtle() -> Turtle: + """Gets existing _main_turtle; makes one if needed.""" + global _main_turtle + if _main_turtle is None: + _main_turtle = Turtle() + return _main_turtle + + +def _make_command(name): + method = getattr(Turtle, name) # get unbound method + + def command(*args): + turtle = get_turtle() + method(turtle, *args) + + command.__name__ = name + command.__doc__ = method.__doc__ + return command + + +def _install_command(name, function): + if name in globals(): + raise ValueError(f'duplicate turtle command name: {name}') + globals()[name] = function + __all__.append(name) + + +def _install_commands(): + for name, aliases in _commands.items(): + new_command = _make_command(name) + _install_command(name, new_command) + for alias in aliases: + _install_command(alias, new_command) + + +_install_commands() diff --git a/chapters/thinkpython.py b/chapters/thinkpython.py new file mode 100644 index 00000000..3f08885a --- /dev/null +++ b/chapters/thinkpython.py @@ -0,0 +1,93 @@ +import contextlib +import io +import re + + +def extract_function_name(text): + """Find a function definition and return its name. + + text: String + + returns: String or None + """ + pattern = r"def\s+(\w+)\s*\(" + match = re.search(pattern, text) + if match: + func_name = match.group(1) + return func_name + else: + return None + + +# the functions that define cell magic commands are only defined +# if we're running in Jupyter. + +try: + from IPython.core.magic import register_cell_magic + from IPython.core.magic_arguments import argument, magic_arguments, parse_argstring + + @register_cell_magic + def add_method_to(args, cell): + + # get the name of the function defined in this cell + func_name = extract_function_name(cell) + if func_name is None: + return f"This cell doesn't define any new functions." + + # get the class we're adding it to + namespace = get_ipython().user_ns + class_name = args + cls = namespace.get(class_name, None) + if cls is None: + return f"Class '{class_name}' not found." + + # save the old version of the function if it was already defined + old_func = namespace.get(func_name, None) + if old_func is not None: + del namespace[func_name] + + # Execute the cell to define the function + get_ipython().run_cell(cell) + + # get the newly defined function + new_func = namespace.get(func_name, None) + if new_func is None: + return f"This cell didn't define {func_name}." + + # add the function to the class and remove it from the namespace + setattr(cls, func_name, new_func) + del namespace[func_name] + + # restore the old function to the namespace + if old_func is not None: + namespace[func_name] = old_func + + @register_cell_magic + def expect_error(line, cell): + try: + get_ipython().run_cell(cell) + except Exception as e: + get_ipython().run_cell("%tb") + + @magic_arguments() + @argument("exception", help="Type of exception to catch") + @register_cell_magic + def expect(line, cell): + args = parse_argstring(expect, line) + exception = eval(args.exception) + try: + get_ipython().run_cell(cell) + except exception as e: + get_ipython().run_cell("%tb") + + def traceback(mode): + """Set the traceback mode. + + mode: string + """ + with contextlib.redirect_stdout(io.StringIO()): + get_ipython().run_cell(f"%xmode {mode}") + + traceback("Minimal") +except (ImportError, NameError): + print("Warning: IPython is not available, cell magic not defined.") From 7e2e236c886a37c4ad9c27e1f24fd56361e15834 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Fri, 17 Oct 2025 12:59:41 +0100 Subject: [PATCH 02/56] solution to pie drawing --- chapters/chap04.ipynb | 358 ++++++++++++++++++++++++++++++++++-------- 1 file changed, 293 insertions(+), 65 deletions(-) diff --git a/chapters/chap04.ipynb b/chapters/chap04.ipynb index 8c017c55..5d5b6b98 100644 --- a/chapters/chap04.ipynb +++ b/chapters/chap04.ipynb @@ -17,15 +17,7 @@ "metadata": { "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloaded jupyturtle.py\n" - ] - } - ], + "outputs": [], "source": [ "from os.path import basename, exists\n", "\n", @@ -232,7 +224,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 8, "id": "1bb57a0c", "metadata": {}, "outputs": [ @@ -298,7 +290,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 9, "id": "9a9e455f", "metadata": {}, "outputs": [ @@ -358,7 +350,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 10, "id": "cc27ad66", "metadata": {}, "outputs": [ @@ -413,7 +405,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 11, "id": "ad5f1128", "metadata": {}, "outputs": [], @@ -434,7 +426,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 12, "id": "193bbe5e", "metadata": {}, "outputs": [ @@ -487,7 +479,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 13, "id": "def8a5f1", "metadata": {}, "outputs": [], @@ -508,7 +500,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 14, "id": "b283e795", "metadata": {}, "outputs": [ @@ -569,7 +561,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 15, "id": "171974ed", "metadata": {}, "outputs": [], @@ -593,7 +585,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 16, "id": "71f7d9d2", "metadata": {}, "outputs": [ @@ -649,7 +641,7 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 17, "id": "8ff2a5f4", "metadata": { "tags": [] @@ -721,7 +713,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 18, "id": "7f2a5f28", "metadata": {}, "outputs": [], @@ -751,7 +743,7 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 19, "id": "75258056", "metadata": {}, "outputs": [ @@ -872,7 +864,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 20, "id": "381edd23", "metadata": {}, "outputs": [], @@ -895,7 +887,7 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 21, "id": "2f4eecc0", "metadata": {}, "outputs": [], @@ -915,7 +907,7 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 22, "id": "539466f6", "metadata": {}, "outputs": [], @@ -940,7 +932,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 23, "id": "8e09f456", "metadata": {}, "outputs": [], @@ -960,7 +952,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 24, "id": "80d6eadd", "metadata": {}, "outputs": [ @@ -1179,7 +1171,7 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 25, "id": "1571ee71", "metadata": { "tags": [] @@ -1200,7 +1192,7 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 26, "id": "f4e37360", "metadata": { "tags": [] @@ -1279,7 +1271,7 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 27, "id": "baf964ba", "metadata": {}, "outputs": [], @@ -1301,7 +1293,7 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 28, "id": "e2e006d5", "metadata": {}, "outputs": [], @@ -1333,7 +1325,7 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 29, "id": "b68f3682", "metadata": {}, "outputs": [], @@ -1441,7 +1433,7 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 30, "id": "9f94061e", "metadata": { "tags": [] @@ -1478,7 +1470,7 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 31, "id": "6f9a0106", "metadata": {}, "outputs": [], @@ -1508,7 +1500,7 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 32, "id": "c54ba660", "metadata": {}, "outputs": [], @@ -1536,7 +1528,7 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 33, "id": "1311ee08", "metadata": { "tags": [] @@ -1589,16 +1581,23 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 34, "id": "3db6f106", "metadata": {}, "outputs": [], "source": [ "# Solution goes here\n", - "def rhombus(length, interior_angle):\n", - " for n in range(4):\n", - " forward(length)\n", - " left(interior_angle)" + "def rhombus(side_length, interior_angle):\n", + " for i in range(4):\n", + " forward(side_length)\n", + " print(f'{side_length} steps forward.')\n", + " if i < 2:\n", + " left(interior_angle + (interior_angle * i))\n", + " print(f'{interior_angle + (interior_angle * i)} turns left.')\n", + " else:\n", + " left((interior_angle - (interior_angle * i)) * -1)\n", + " print(f'{(interior_angle - (interior_angle * i)) * -1} turns left.')\n", + " " ] }, { @@ -1608,13 +1607,12 @@ "tags": [] }, "source": [ - "You can use the following code to test your function.\n", - "# BOOKMARK 15/10/25" + "You can use the following code to test your function.\n" ] }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 35, "id": "1d845de9", "metadata": { "tags": [] @@ -1630,12 +1628,12 @@ " stroke=\"#663399\" stroke-width=\"2\" />\n", "\n", - "\n", - "\n", "\n", - "\n", + "\n", " \n", " \n", "\n", @@ -1648,6 +1646,20 @@ }, "metadata": {}, "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "50 steps forward.\n", + "60 turns left.\n", + "50 steps forward.\n", + "120 turns left.\n", + "50 steps forward.\n", + "60 turns left.\n", + "50 steps forward.\n", + "120 turns left.\n" + ] } ], "source": [ @@ -1667,32 +1679,44 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 36, "id": "895005cb", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def parallelogram(side_length1, interior_angle, side_length2):\n", + " for i in range(4):\n", + " if i % 2 == 0:\n", + " forward(side_length1)\n", + " left(interior_angle)\n", + " else:\n", + " forward(side_length2)\n", + " left(180 - interior_angle)" ] }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 37, "id": "7e7d34b0", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def rhombus(side_length, angle):\n", + " parallelogram(side_length, angle, side_length)" ] }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 38, "id": "481396f9", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def rectangle(side_length, height):\n", + " parallelogram(side_length, 90, height)" ] }, { @@ -1707,12 +1731,58 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 39, "id": "c8dfebc9", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle(width=400)\n", "jump(-120)\n", @@ -1724,6 +1794,14 @@ "parallelogram(80, 50, 60)" ] }, + { + "cell_type": "markdown", + "id": "7c312b41", + "metadata": {}, + "source": [ + "#### BOOKMARK 16/10/25 👇" + ] + }, { "cell_type": "markdown", "id": "991ab59d", @@ -1740,22 +1818,40 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 138, "id": "8be6442e", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# My solution here\n", + "def triangle(radius, turn_angle, internal_angle, outter_crust):\n", + " forward(radius)\n", + " left(180 - internal_angle)\n", + " forward(outter_crust)\n", + " left(180 - internal_angle)\n", + " forward(radius)\n", + " left(180 - turn_angle)\n", + " \n", + " " ] }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 154, "id": "be1b7ed8", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# My solution here\n", + "def draw_pie(n_segs, size):\n", + " turn_angle = 360 / n_segs\n", + " internal_angle = (180 - turn_angle) / 2\n", + " turn_in_radians = math.radians(turn_angle)\n", + " outter_crust = math.sqrt((size ** 2) + (size ** 2) - (2 * size * size * math.cos(turn_in_radians)))\n", + " for i in range(n_segs):\n", + " triangle(size, turn_angle, internal_angle, outter_crust)\n", + " left(turn_angle)\n", + " " ] }, { @@ -1775,7 +1871,137 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "turtle = make_turtle(delay=0)\n", "jump(-80)\n", @@ -1783,14 +2009,16 @@ "size = 40\n", "draw_pie(5, size)\n", "jump(2*size)\n", + "left(90)\n", "draw_pie(6, size)\n", + "left(270)\n", "jump(2*size)\n", "draw_pie(7, size)" ] }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 152, "id": "89ce198a", "metadata": { "tags": [] @@ -1816,7 +2044,7 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": null, "id": "0f0e7498", "metadata": {}, "outputs": [], @@ -1826,7 +2054,7 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": null, "id": "6c0d0bff", "metadata": {}, "outputs": [], @@ -1879,7 +2107,7 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": null, "id": "4cfea3b0", "metadata": { "tags": [] @@ -1938,7 +2166,7 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": null, "id": "46d3151c", "metadata": {}, "outputs": [], @@ -1948,7 +2176,7 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": null, "id": "186c7fbc", "metadata": {}, "outputs": [], From 238bd1cded3744cb3eeaa985709e2aed6f13e724 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Fri, 17 Oct 2025 14:05:21 +0100 Subject: [PATCH 03/56] Solution for flower drawing --- chapters/chap04.ipynb | 6073 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 5997 insertions(+), 76 deletions(-) diff --git a/chapters/chap04.ipynb b/chapters/chap04.ipynb index 5d5b6b98..2f42cc0f 100644 --- a/chapters/chap04.ipynb +++ b/chapters/chap04.ipynb @@ -1794,14 +1794,6 @@ "parallelogram(80, 50, 60)" ] }, - { - "cell_type": "markdown", - "id": "7c312b41", - "metadata": {}, - "source": [ - "#### BOOKMARK 16/10/25 👇" - ] - }, { "cell_type": "markdown", "id": "991ab59d", @@ -1866,7 +1858,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 191, "id": "c519ca39", "metadata": { "tags": [] @@ -1878,35 +1870,35 @@ "\n", " \n", "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", "\n", @@ -1944,50 +1936,50 @@ " stroke=\"#663399\" stroke-width=\"2\" />\n", "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", "\n", - "\n", + "\n", " \n", " \n", "\n", @@ -2003,16 +1995,19 @@ } ], "source": [ - "turtle = make_turtle(delay=0)\n", + "turtle = make_turtle(delay=0.05)\n", "jump(-80)\n", "\n", "size = 40\n", + "left(45)\n", "draw_pie(5, size)\n", + "left(-45)\n", "jump(2*size)\n", "left(90)\n", "draw_pie(6, size)\n", - "left(270)\n", + "left(-90)\n", "jump(2*size)\n", + "left(180)\n", "draw_pie(7, size)" ] }, @@ -2028,6 +2023,14 @@ "# Solution goes here" ] }, + { + "cell_type": "markdown", + "id": "7c312b41", + "metadata": {}, + "source": [ + "#### BOOKMARK 17/10/25 👇" + ] + }, { "cell_type": "markdown", "id": "9c78b76f", @@ -2049,17 +2052,27 @@ "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def petal(radius, arc_angle):\n", + " arc(radius, arc_angle)\n", + " left(180 - arc_angle)\n", + " arc(radius, arc_angle)\n", + " left(180 - arc_angle)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 244, "id": "6c0d0bff", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def flower(n_petals, radius, arc_angle):\n", + " turn_angle = 360 / n_petals\n", + " for number in range(n_petals):\n", + " petal(radius, arc_angle)\n", + " left(turn_angle)" ] }, { @@ -2079,35 +2092,5943 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 247, "id": "04193da5", "metadata": { "tags": [] }, - "outputs": [], - "source": [ - "from jupyturtle import render\n", - "\n", - "turtle = make_turtle(auto_render=False)\n", - "\n", - "jump(-60)\n", - "n = 7\n", - "radius = 60\n", - "angle = 60\n", - "flower(n, radius, angle)\n", - "\n", - "jump(120)\n", - "n = 9\n", - "radius = 40\n", - "angle = 85\n", - "flower(n, radius, angle)\n", - "\n", - "render()" - ] - }, - { - "cell_type": "code", - "execution_count": null, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from jupyturtle import render\n", + "\n", + "turtle = make_turtle(auto_render=False)\n", + "\n", + "jump(-60)\n", + "n = 7\n", + "radius = 60\n", + "angle = 60\n", + "flower(n, radius, angle)\n", + "\n", + "# jump(120)\n", + "# n = 9\n", + "# radius = 40\n", + "# angle = 85\n", + "# flower(n, radius, angle)\n", + "\n", + "jump(120)\n", + "n = 42\n", + "radius = 60\n", + "angle = 45\n", + "flower(n, radius, angle)\n", + "\n", + "render()" + ] + }, + { + "cell_type": "code", + "execution_count": 201, "id": "4cfea3b0", "metadata": { "tags": [] From 514a04c7aed3ac4b9a61b4081f7579f53d2f8524 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Fri, 17 Oct 2025 14:12:33 +0100 Subject: [PATCH 04/56] Solution spiral --- chapters/chap04.ipynb | 3826 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 3824 insertions(+), 2 deletions(-) diff --git a/chapters/chap04.ipynb b/chapters/chap04.ipynb index 2f42cc0f..1e80602f 100644 --- a/chapters/chap04.ipynb +++ b/chapters/chap04.ipynb @@ -8090,9 +8090,3831 @@ "execution_count": null, "id": "46d3151c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "from jupyturtle import make_turtle, forward, left\n", + "\n", + "def spiral(n, angle, length_increment):\n", + " \"\"\"\n", + " Draws a spiral shape.\n", + "\n", + " Args:\n", + " n (int): The number of line segments to draw.\n", + " angle (float): The angle to turn after drawing each segment.\n", + " length_increment (float): How much to increase the segment length by each time.\n", + " \"\"\"\n", + " length = 1\n", + " for i in range(n):\n", + " forward(length)\n", + " left(angle)\n", + " length += length_increment\n", + "\n", + "# --- Main Program ---\n", + "# Set up the turtle graphics window\n", + "make_turtle(delay=0)\n", + "\n", + "# Call the function to draw a spiral\n", + "# Try changing these values to see what happens!\n", + "spiral(n=2000, angle=69, length_increment=0.1)" ] }, { From f8a9389c5d76616d945f2b5ab9e585a34528822b Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Sun, 19 Oct 2025 17:17:02 +0100 Subject: [PATCH 05/56] Solution for time exercise --- chapters/chap05.ipynb | 826 +++++++++++++++++++++++++++++++++++------- 1 file changed, 693 insertions(+), 133 deletions(-) diff --git a/chapters/chap05.ipynb b/chapters/chap05.ipynb index 23e50942..b14aad1a 100644 --- a/chapters/chap05.ipynb +++ b/chapters/chap05.ipynb @@ -69,7 +69,18 @@ "execution_count": 2, "id": "30bd0ba7", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "1.75" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "minutes = 105\n", "minutes / 60" @@ -89,7 +100,18 @@ "execution_count": 3, "id": "451e3198", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "1" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "minutes = 105\n", "hours = minutes // 60\n", @@ -109,7 +131,18 @@ "execution_count": 4, "id": "64b92876", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "45" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "remainder = minutes - hours * 60\n", "remainder" @@ -128,7 +161,18 @@ "execution_count": 5, "id": "0a593844", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "45" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "remainder = minutes % 60\n", "remainder" @@ -149,10 +193,21 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 6, "id": "5bd341f7", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "3" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "x = 123\n", "x % 10" @@ -160,10 +215,21 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 7, "id": "367fce0c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "23" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "x % 100" ] @@ -179,10 +245,21 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 8, "id": "db33a44d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "2" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "start = 11\n", "duration = 3\n", @@ -211,20 +288,42 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 9, "id": "85589d38", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "5 == 5" ] }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 10, "id": "3c9c8f61", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "5 == 7" ] @@ -240,7 +339,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 11, "id": "c0e51bcc", "metadata": {}, "outputs": [], @@ -251,10 +350,21 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 12, "id": "a6be44db", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "x == y" ] @@ -270,20 +380,42 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 13, "id": "90fb1c9c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "bool" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "type(True)" ] }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 14, "id": "c1cae572", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "bool" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "type(False)" ] @@ -298,50 +430,105 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 15, "id": "c901fe2b", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "x != y # x is not equal to y" ] }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 16, "id": "1457949f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "x > y # x is greater than y" ] }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 17, "id": "56bb7eed", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "x < y # x is less than to y" ] }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 18, "id": "1cdcc7ab", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "x >= y # x is greater than or equal to y" ] }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 19, "id": "df1a1287", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "x <= y # x is less than or equal to y" ] @@ -361,10 +548,21 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 20, "id": "848c5f2c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "x > 0 and x < 10" ] @@ -379,10 +577,21 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 21, "id": "eb66ee6a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "x % 2 == 0 or x % 3 == 0" ] @@ -397,10 +606,21 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 22, "id": "6de8b97c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "not x > y" ] @@ -416,10 +636,21 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 23, "id": "add63275", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "42 and True" ] @@ -448,10 +679,18 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 24, "id": "80937bef", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "x is positive\n" + ] + } + ], "source": [ "if x > 0:\n", " print('x is positive')" @@ -476,7 +715,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 25, "id": "bc74a318", "metadata": {}, "outputs": [], @@ -506,15 +745,23 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 26, "id": "d16f49f2", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5 is odd\n" + ] + } + ], "source": [ "if x % 2 == 0:\n", - " print('x is even')\n", + " print(f'{x} is even')\n", "else:\n", - " print('x is odd')" + " print(f'{x} is odd')" ] }, { @@ -545,10 +792,18 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 27, "id": "309fccb8", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "x is less than y\n" + ] + } + ], "source": [ "if x < y:\n", " print('x is less than y')\n", @@ -587,10 +842,18 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 28, "id": "d77539cf", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "x is less than y\n" + ] + } + ], "source": [ "if x == y:\n", " print('x and y are equal')\n", @@ -619,10 +882,18 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 29, "id": "91cac1a0", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "x is a positive single-digit number.\n" + ] + } + ], "source": [ "if 0 < x:\n", " if x < 10:\n", @@ -639,10 +910,18 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 30, "id": "f8ba1724", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "x is a positive single-digit number.\n" + ] + } + ], "source": [ "if 0 < x and x < 10:\n", " print('x is a positive single-digit number.')" @@ -658,10 +937,18 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 31, "id": "014cd6f4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "x is a positive single-digit number.\n" + ] + } + ], "source": [ "if 0 < x < 10:\n", " print('x is a positive single-digit number.')" @@ -681,7 +968,7 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 32, "id": "17904e98", "metadata": {}, "outputs": [], @@ -707,12 +994,30 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 33, "id": "6c1e32e2", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10\n", + "9\n", + "8\n", + "7\n", + "6\n", + "5\n", + "4\n", + "3\n", + "2\n", + "1\n", + "Blastoff!\n" + ] + } + ], "source": [ - "countdown(3)" + "countdown(10)" ] }, { @@ -750,7 +1055,7 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 34, "id": "1bb13f8e", "metadata": {}, "outputs": [], @@ -775,10 +1080,21 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 35, "id": "e7b68c57", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Spam \n", + "Spam \n", + "Spam \n", + "Spam \n" + ] + } + ], "source": [ "print_n_times('Spam ', 4)" ] @@ -805,7 +1121,7 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 36, "id": "643148da", "metadata": { "tags": [] @@ -825,12 +1141,23 @@ }, { "cell_type": "code", - "execution_count": 36, + "execution_count": 37, "id": "a8510119", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "from diagram import diagram, adjust\n", "\n", @@ -853,12 +1180,23 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 38, "id": "a2a376b3", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "from diagram import make_frame, Stack\n", "from diagram import diagram, adjust\n", @@ -892,7 +1230,7 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 39, "id": "af487feb", "metadata": {}, "outputs": [], @@ -913,24 +1251,48 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 40, "id": "e5d6c732", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Context\n" + ] + } + ], "source": [ "%xmode Context" ] }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 41, "id": "22454b51", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "RecursionError", + "evalue": "maximum recursion depth exceeded", + "output_type": "error", + "traceback": [ + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mRecursionError\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[41]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[32m----> \u001b[39m\u001b[32m1\u001b[39m \u001b[43mrecurse\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[39]\u001b[39m\u001b[32m, line 2\u001b[39m, in \u001b[36mrecurse\u001b[39m\u001b[34m()\u001b[39m\n\u001b[32m 1\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34mrecurse\u001b[39m():\n\u001b[32m----> \u001b[39m\u001b[32m2\u001b[39m \u001b[43mrecurse\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[39]\u001b[39m\u001b[32m, line 2\u001b[39m, in \u001b[36mrecurse\u001b[39m\u001b[34m()\u001b[39m\n\u001b[32m 1\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34mrecurse\u001b[39m():\n\u001b[32m----> \u001b[39m\u001b[32m2\u001b[39m \u001b[43mrecurse\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n", + " \u001b[31m[... skipping similar frames: recurse at line 2 (2964 times)]\u001b[39m\n", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[39]\u001b[39m\u001b[32m, line 2\u001b[39m, in \u001b[36mrecurse\u001b[39m\u001b[34m()\u001b[39m\n\u001b[32m 1\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34mrecurse\u001b[39m():\n\u001b[32m----> \u001b[39m\u001b[32m2\u001b[39m \u001b[43mrecurse\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n", + "\u001b[31mRecursionError\u001b[39m: maximum recursion depth exceeded" + ] + } + ], "source": [ "%%expect RecursionError\n", "\n", @@ -965,7 +1327,7 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 42, "id": "ac0fb4a6", "metadata": { "tags": [] @@ -977,7 +1339,7 @@ }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 43, "id": "f6a2e4d6", "metadata": {}, "outputs": [], @@ -996,7 +1358,7 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 44, "id": "e0600e5e", "metadata": { "tags": [] @@ -1008,10 +1370,21 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 45, "id": "964346f0", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'obe'" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "name = input('What...is your name?\\n')\n", "name" @@ -1029,7 +1402,7 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 46, "id": "590983cd", "metadata": { "tags": [] @@ -1041,10 +1414,21 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 47, "id": "60a484d7", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'32'" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "prompt = 'What...is the airspeed velocity of an unladen swallow?\\n'\n", "speed = input(prompt)\n", @@ -1061,24 +1445,43 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 48, "id": "8d3d6049", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Minimal\n" + ] + } + ], "source": [ "%xmode Minimal" ] }, { "cell_type": "code", - "execution_count": 48, + "execution_count": 49, "id": "a04e3016", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "32" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "%%expect ValueError\n", "\n", @@ -1115,12 +1518,21 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 50, "id": "b82642f6", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "IndentationError", + "evalue": "unexpected indent (2365500740.py, line 2)", + "output_type": "error", + "traceback": [ + " \u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[50]\u001b[39m\u001b[32m, line 2\u001b[39m\n\u001b[31m \u001b[39m\u001b[31my = 6\u001b[39m\n ^\n\u001b[31mIndentationError\u001b[39m\u001b[31m:\u001b[39m unexpected indent\n" + ] + } + ], "source": [ "%%expect IndentationError\n", "x = 5\n", @@ -1142,24 +1554,44 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 51, "id": "583ef53c", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Context\n" + ] + } + ], "source": [ "%xmode Context" ] }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 52, "id": "2f4b6082", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "ValueError", + "evalue": "math domain error", + "output_type": "error", + "traceback": [ + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mValueError\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[52]\u001b[39m\u001b[32m, line 5\u001b[39m\n\u001b[32m 3\u001b[39m denominator = \u001b[32m10\u001b[39m\n\u001b[32m 4\u001b[39m ratio = numerator // denominator\n\u001b[32m----> \u001b[39m\u001b[32m5\u001b[39m decibels = \u001b[32m10\u001b[39m * \u001b[43mmath\u001b[49m\u001b[43m.\u001b[49m\u001b[43mlog10\u001b[49m\u001b[43m(\u001b[49m\u001b[43mratio\u001b[49m\u001b[43m)\u001b[49m\n", + "\u001b[31mValueError\u001b[39m: math domain error" + ] + } + ], "source": [ "%%expect ValueError\n", "import math\n", @@ -1245,12 +1677,20 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 53, "id": "66aae3cb", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Verbose\n" + ] + } + ], "source": [ "# This cell tells Jupyter to provide detailed debugging information\n", "# when a runtime error occurs. Run it before working on the exercises.\n", @@ -1276,7 +1716,7 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": 54, "id": "ade1ecb4", "metadata": { "tags": [] @@ -1289,10 +1729,18 @@ }, { "cell_type": "code", - "execution_count": 54, + "execution_count": 55, "id": "dc7026c2", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "x is less than y\n" + ] + } + ], "source": [ "if x == y:\n", " print('x and y are equal')\n", @@ -1313,14 +1761,20 @@ }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 56, "id": "1fd919ea", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "x is a positive single-digit number.\n" + ] + } + ], "source": [ - "if 0 < x:\n", - " if x < 10:\n", - " print('x is a positive single-digit number.')" + "if 0 < x < 10: print('x is a positive single-digit number.')" ] }, { @@ -1333,12 +1787,20 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 57, "id": "1e71702e", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "x is a positive single-digit number.\n" + ] + } + ], "source": [ - "if not x <= 0 and not x >= 10:\n", + "if 0 < x < 10:\n", " print('x is a positive single-digit number.')" ] }, @@ -1352,7 +1814,7 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": 58, "id": "84cbd5a4", "metadata": {}, "outputs": [], @@ -1360,9 +1822,13 @@ "def countdown_by_two(n):\n", " if n == 0:\n", " print('Blastoff!')\n", + " elif n % 2 == 0:\n", + " print(n)\n", + " countdown_by_two(n-2)\n", " else:\n", " print(n)\n", - " countdown_by_two(n-2)" + " countdown_by_two(n-1)\n", + " " ] }, { @@ -1375,12 +1841,24 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 59, "id": "b0918789", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "7\n", + "6\n", + "4\n", + "2\n", + "Blastoff!\n" + ] + } + ], "source": [ - "countdown_by_two(6)" + "countdown_by_two(7)" ] }, { @@ -1405,10 +1883,21 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 102, "id": "1e7a2c07", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "1760890588.48161" + ] + }, + "execution_count": 102, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "from time import time\n", "\n", @@ -1436,42 +1925,113 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 103, "id": "c5fa57b2", "metadata": {}, - "outputs": [], - "source": [ - "# Solution goes here" - ] - }, - { - "cell_type": "code", - "execution_count": 61, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Number of seconds in a minute: 60\n", + "Number of seconds in an hour: 3600\n", + "Number of seconds in a day: 86400\n", + "Total days since 01/01/1970: 20380.0\n" + ] + }, + { + "data": { + "text/plain": [ + "(60, 3600, 86400)" + ] + }, + "execution_count": 103, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Solution goes here\n", + "def number_days(time_now):\n", + " sec_in_minute = 60 # 60 sec in a minute\n", + " sec_in_hour = sec_in_minute * 60 # 3600 sec in a hour\n", + " sec_in_day = sec_in_hour * 24 # 86,400 sec in a day\n", + " print(f'Number of seconds in a minute: {sec_in_minute}')\n", + " print(f'Number of seconds in an hour: {sec_in_hour}')\n", + " print(f'Number of seconds in a day: {sec_in_day}')\n", + "\n", + " total_days = time_now // sec_in_day\n", + "\n", + " print(f'Total days since 01/01/1970: {total_days}')\n", + "\n", + " return sec_in_minute, sec_in_hour, sec_in_day\n", + "\n", + "number_days(now)" + ] + }, + { + "cell_type": "code", + "execution_count": 104, "id": "322ddd0a", "metadata": {}, - "outputs": [], - "source": [ - "# Solution goes here" - ] - }, - { - "cell_type": "code", - "execution_count": 62, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Number of seconds in a minute: 60\n", + "Number of seconds in an hour: 3600\n", + "Number of seconds in a day: 86400\n", + "Total days since 01/01/1970: 20380.0\n", + "Seconds passed today: 58588.48161005974\n", + "Current hours passed: 16.0\n", + "Remainder seconds after hours: 988.4816100597382\n", + "Minutes passed today: 16.0\n", + "Current seconds passed: 28.48161005973816\n", + "Current UTC Time: 16:16:28\n" + ] + } + ], + "source": [ + "# Solution goes here\n", + "def current_time_today(time_now):\n", + "\n", + " sec_in_min, sec_in_hour, sec_in_day = number_days(time_now)\n", + "\n", + " seconds_today = time_now % sec_in_day\n", + " current_hour = seconds_today // sec_in_hour\n", + " seconds_after_hours = seconds_today % sec_in_hour\n", + " current_minutes = seconds_after_hours // sec_in_min\n", + " current_seconds = seconds_after_hours % sec_in_min\n", + "\n", + " print(f'Seconds passed today: {seconds_today}')\n", + " print(f'Current hours passed: {current_hour}')\n", + " print(f'Remainder seconds after hours: {seconds_after_hours}')\n", + " print(f'Minutes passed today: {current_minutes}')\n", + " print(f'Current seconds passed: {current_seconds}')\n", + " print(f\"Current UTC Time: {int(current_hour)}:{int(current_minutes)}:{int(current_seconds)}\")\n", + "\n", + "current_time_today(now)" + ] + }, + { + "cell_type": "code", + "execution_count": 91, "id": "fc43df7d", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n" ] }, { "cell_type": "code", - "execution_count": 63, + "execution_count": null, "id": "0184d21a", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n" ] }, { @@ -1827,7 +2387,7 @@ "metadata": { "celltoolbar": "Tags", "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "thinkpy", "language": "python", "name": "python3" }, @@ -1841,7 +2401,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.13.5" } }, "nbformat": 4, From 0fae4442f627dacc4a2cd5bad82a5f807ae46325 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Mon, 20 Oct 2025 11:55:40 +0100 Subject: [PATCH 06/56] Is triangle solution --- chapters/chap05.ipynb | 79 ++++++++++++++++++++++++++++++++----------- 1 file changed, 60 insertions(+), 19 deletions(-) diff --git a/chapters/chap05.ipynb b/chapters/chap05.ipynb index b14aad1a..ebcbd935 100644 --- a/chapters/chap05.ipynb +++ b/chapters/chap05.ipynb @@ -1377,7 +1377,7 @@ { "data": { "text/plain": [ - "'obe'" + "'je;;'" ] }, "execution_count": 45, @@ -1421,7 +1421,7 @@ { "data": { "text/plain": [ - "'32'" + "'12'" ] }, "execution_count": 47, @@ -1474,7 +1474,7 @@ { "data": { "text/plain": [ - "32" + "12" ] }, "execution_count": 49, @@ -1883,17 +1883,17 @@ }, { "cell_type": "code", - "execution_count": 102, + "execution_count": 60, "id": "1e7a2c07", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "1760890588.48161" + "1760956943.4858801" ] }, - "execution_count": 102, + "execution_count": 60, "metadata": {}, "output_type": "execute_result" } @@ -1925,7 +1925,7 @@ }, { "cell_type": "code", - "execution_count": 103, + "execution_count": 61, "id": "c5fa57b2", "metadata": {}, "outputs": [ @@ -1936,7 +1936,7 @@ "Number of seconds in a minute: 60\n", "Number of seconds in an hour: 3600\n", "Number of seconds in a day: 86400\n", - "Total days since 01/01/1970: 20380.0\n" + "Total days since 01/01/1970: 20381.0\n" ] }, { @@ -1945,7 +1945,7 @@ "(60, 3600, 86400)" ] }, - "execution_count": 103, + "execution_count": 61, "metadata": {}, "output_type": "execute_result" } @@ -2061,14 +2061,23 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 82, "id": "06381639", "metadata": { "tags": [] }, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def is_triangle(number1, number2, number3):\n", + " if number3 > (number1 + number2):\n", + " print('no')\n", + " elif number2 > (number1 + number3):\n", + " print('no')\n", + " elif number1 > (number2 + number3):\n", + " print('no')\n", + " else:\n", + " print('yes')" ] }, { @@ -2083,48 +2092,80 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 83, "id": "156273af", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "yes\n" + ] + } + ], "source": [ "is_triangle(4, 5, 6) # should be Yes" ] }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 84, "id": "e00793f4", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "yes\n" + ] + } + ], "source": [ "is_triangle(1, 2, 3) # should be Yes" ] }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 85, "id": "d2911c71", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "no\n" + ] + } + ], "source": [ "is_triangle(6, 2, 3) # should be No" ] }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 86, "id": "2b05586e", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "no\n" + ] + } + ], "source": [ "is_triangle(1, 1, 12) # should be No" ] From 3582d930a00097052f037e166c042be12d3a291f Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Mon, 20 Oct 2025 17:04:20 +0100 Subject: [PATCH 07/56] Koch curve solution --- chapters/chap05.ipynb | 635 +++++++++++++++++++++++++++++++++++++++--- 1 file changed, 591 insertions(+), 44 deletions(-) diff --git a/chapters/chap05.ipynb b/chapters/chap05.ipynb index ebcbd935..4582c696 100644 --- a/chapters/chap05.ipynb +++ b/chapters/chap05.ipynb @@ -1377,7 +1377,7 @@ { "data": { "text/plain": [ - "'je;;'" + "'hello'" ] }, "execution_count": 45, @@ -1890,7 +1890,7 @@ { "data": { "text/plain": [ - "1760956943.4858801" + "1760975222.988169" ] }, "execution_count": 60, @@ -1971,7 +1971,7 @@ }, { "cell_type": "code", - "execution_count": 104, + "execution_count": 62, "id": "322ddd0a", "metadata": {}, "outputs": [ @@ -1982,13 +1982,13 @@ "Number of seconds in a minute: 60\n", "Number of seconds in an hour: 3600\n", "Number of seconds in a day: 86400\n", - "Total days since 01/01/1970: 20380.0\n", - "Seconds passed today: 58588.48161005974\n", - "Current hours passed: 16.0\n", - "Remainder seconds after hours: 988.4816100597382\n", - "Minutes passed today: 16.0\n", - "Current seconds passed: 28.48161005973816\n", - "Current UTC Time: 16:16:28\n" + "Total days since 01/01/1970: 20381.0\n", + "Seconds passed today: 56822.98816895485\n", + "Current hours passed: 15.0\n", + "Remainder seconds after hours: 2822.9881689548492\n", + "Minutes passed today: 47.0\n", + "Current seconds passed: 2.988168954849243\n", + "Current UTC Time: 15:47:2\n" ] } ], @@ -2016,7 +2016,7 @@ }, { "cell_type": "code", - "execution_count": 91, + "execution_count": 63, "id": "fc43df7d", "metadata": {}, "outputs": [], @@ -2026,7 +2026,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 64, "id": "0184d21a", "metadata": {}, "outputs": [], @@ -2061,7 +2061,7 @@ }, { "cell_type": "code", - "execution_count": 82, + "execution_count": 65, "id": "06381639", "metadata": { "tags": [] @@ -2092,7 +2092,7 @@ }, { "cell_type": "code", - "execution_count": 83, + "execution_count": 66, "id": "156273af", "metadata": { "tags": [] @@ -2112,7 +2112,7 @@ }, { "cell_type": "code", - "execution_count": 84, + "execution_count": 67, "id": "e00793f4", "metadata": { "tags": [] @@ -2132,7 +2132,7 @@ }, { "cell_type": "code", - "execution_count": 85, + "execution_count": 68, "id": "d2911c71", "metadata": { "tags": [] @@ -2152,7 +2152,7 @@ }, { "cell_type": "code", - "execution_count": 86, + "execution_count": 69, "id": "2b05586e", "metadata": { "tags": [] @@ -2183,15 +2183,27 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": 70, "id": "dac374ad", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "recurse(2,3)\n", + "recurse(1,5)\n", + "recurse(0,6)\n", + "6\n" + ] + } + ], "source": [ "def recurse(n, s):\n", " if n == 0:\n", " print(s)\n", " else:\n", + " print(f\"recurse({n-1},{n+s})\") \n", " recurse(n-1, n+s)\n", "\n", "recurse(3, 0)" @@ -2199,25 +2211,11 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": null, "id": "a438cec5", "metadata": {}, "outputs": [], - "source": [ - "# Solution goes here" - ] - }, - { - "cell_type": "code", - "execution_count": 71, - "id": "2e3f56c7", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "# Solution goes here" - ] + "source": [] }, { "cell_type": "markdown", @@ -2236,7 +2234,7 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": 81, "id": "2b0d60a1", "metadata": {}, "outputs": [], @@ -2254,17 +2252,18 @@ " right(2 * angle)\n", " draw(factor * length)\n", " left(angle)\n", - " back(length)" + " back(length)\n" ] }, { "cell_type": "code", - "execution_count": 73, + "execution_count": 78, "id": "ef0256ee", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "draw(10)\n" ] }, { @@ -2300,12 +2299,26 @@ }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 96, "id": "c1acc853", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "from jupyturtle import make_turtle\n", + "\n", + "def koch(x):\n", + "\n", + " if x < 5:\n", + " forward(x)\n", + " else:\n", + " koch(x/3)\n", + " left(60)\n", + " koch(x/3)\n", + " right(120)\n", + " koch(x/3)\n", + " left(60)\n", + " koch(x/3)\n" ] }, { @@ -2318,13 +2331,547 @@ }, { "cell_type": "code", - "execution_count": 75, + "execution_count": 98, "id": "55507716", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle(delay=0)\n", - "koch(120)" + "koch(360)" ] }, { From 7158973cd9a5f32e525d2fce763819bc0c90b12a Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Tue, 21 Oct 2025 10:33:20 +0100 Subject: [PATCH 08/56] Sierpinski triangle solution --- chapters/chap05.ipynb | 1280 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 1248 insertions(+), 32 deletions(-) diff --git a/chapters/chap05.ipynb b/chapters/chap05.ipynb index 4582c696..966d85cb 100644 --- a/chapters/chap05.ipynb +++ b/chapters/chap05.ipynb @@ -1377,7 +1377,7 @@ { "data": { "text/plain": [ - "'hello'" + "'w'" ] }, "execution_count": 45, @@ -1421,7 +1421,7 @@ { "data": { "text/plain": [ - "'12'" + "'w'" ] }, "execution_count": 47, @@ -1472,14 +1472,12 @@ }, "outputs": [ { - "data": { - "text/plain": [ - "12" - ] - }, - "execution_count": 49, - "metadata": {}, - "output_type": "execute_result" + "ename": "ValueError", + "evalue": "invalid literal for int() with base 10: 'w'", + "output_type": "error", + "traceback": [ + "\u001b[31mValueError\u001b[39m\u001b[31m:\u001b[39m invalid literal for int() with base 10: 'w'\n" + ] } ], "source": [ @@ -1890,7 +1888,7 @@ { "data": { "text/plain": [ - "1760975222.988169" + "1761038810.664702" ] }, "execution_count": 60, @@ -1936,7 +1934,7 @@ "Number of seconds in a minute: 60\n", "Number of seconds in an hour: 3600\n", "Number of seconds in a day: 86400\n", - "Total days since 01/01/1970: 20381.0\n" + "Total days since 01/01/1970: 20382.0\n" ] }, { @@ -1982,13 +1980,13 @@ "Number of seconds in a minute: 60\n", "Number of seconds in an hour: 3600\n", "Number of seconds in a day: 86400\n", - "Total days since 01/01/1970: 20381.0\n", - "Seconds passed today: 56822.98816895485\n", - "Current hours passed: 15.0\n", - "Remainder seconds after hours: 2822.9881689548492\n", - "Minutes passed today: 47.0\n", - "Current seconds passed: 2.988168954849243\n", - "Current UTC Time: 15:47:2\n" + "Total days since 01/01/1970: 20382.0\n", + "Seconds passed today: 34010.66470193863\n", + "Current hours passed: 9.0\n", + "Remainder seconds after hours: 1610.6647019386292\n", + "Minutes passed today: 26.0\n", + "Current seconds passed: 50.66470193862915\n", + "Current UTC Time: 9:26:50\n" ] } ], @@ -2234,7 +2232,7 @@ }, { "cell_type": "code", - "execution_count": 81, + "execution_count": 71, "id": "2b0d60a1", "metadata": {}, "outputs": [], @@ -2257,10 +2255,44 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": 72, "id": "ef0256ee", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "# Solution goes here\n", "draw(10)\n" @@ -2299,7 +2331,7 @@ }, { "cell_type": "code", - "execution_count": 96, + "execution_count": 73, "id": "c1acc853", "metadata": {}, "outputs": [], @@ -2331,7 +2363,7 @@ }, { "cell_type": "code", - "execution_count": 98, + "execution_count": 74, "id": "55507716", "metadata": {}, "outputs": [ @@ -2886,12 +2918,418 @@ }, { "cell_type": "code", - "execution_count": 76, + "execution_count": 75, "id": "86d3123b", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle(delay=0, height=300)\n", "for i in range(3):\n", @@ -2919,12 +3357,606 @@ }, { "cell_type": "code", - "execution_count": 77, + "execution_count": null, "id": "68439acf", "metadata": {}, - "outputs": [], - "source": [ - "# Solution goes here" + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Drawing Sierpinski triangle...\n", + "Drawing complete!\n" + ] + } + ], + "source": [ + "# Solution goes here\n", + "# Import the necessary library\n", + "from jupyturtle import *\n", + "import time\n", + "\n", + "def draw_triangle(points):\n", + " \"\"\"A helper function to draw a single triangle given 3 points.\"\"\"\n", + " penup()\n", + " jumpto(*points[0])\n", + " pendown()\n", + " moveto(*points[1])\n", + " moveto(*points[2])\n", + " moveto(*points[0]) # Close the triangle\n", + " penup()\n", + "\n", + "def get_midpoint(p1, p2):\n", + " \"\"\"A helper function to find the midpoint between two points.\"\"\"\n", + " return ((p1[0] + p2[0]) / 2, (p1[1] + p2[1]) / 2)\n", + "\n", + "def _sierpinski_recursive(points, level):\n", + " \"\"\"\n", + " Recursively draws a Sierpinski triangle.\n", + " \n", + " :param points: A list of 3 (x, y) tuples representing the triangle's vertices.\n", + " :param level: The recursion depth.\n", + " :param t: The jupyturtle.Turtle object.\n", + " \"\"\"\n", + " \n", + " # Base case: When level is 0, draw the triangle.\n", + " if level == 0:\n", + " draw_triangle(points)\n", + " else:\n", + " # Get the three vertices\n", + " p1, p2, p3 = points\n", + " \n", + " # Calculate the midpoints of the three sides\n", + " m1 = get_midpoint(p1, p2) # Midpoint of bottom side\n", + " m2 = get_midpoint(p2, p3) # Midpoint of right side\n", + " m3 = get_midpoint(p3, p1) # Midpoint of left side\n", + " \n", + " # Recursively call the function for the 3 corner triangles\n", + " # 1. Bottom-left triangle\n", + " _sierpinski_recursive([p1, m1, m3], level - 1)\n", + " # 2. Bottom-right triangle\n", + " _sierpinski_recursive([m1, p2, m2], level - 1)\n", + " # 3. Top triangle\n", + " _sierpinski_recursive([m3, m2, p3], level - 1)\n", + "\n", + "def draw_sierpinski(size, level):\n", + " \"\"\"\n", + " Public facing interface for drawing the Sierpinski triangle:\n", + " - size: the side length of the main triangle.\n", + " - level: recursion depth.\n", + " \"\"\"\n", + " height = size * (3**0.5) / 2\n", + " cx = 150 # adjust cx and cy to position triangle drawing on canvas.\n", + " cy = 120\n", + "\n", + " initial_points = [\n", + " (-size / 2 + cx, height / 2 + cy),\n", + " (size / 2 + cx, height / 2 + cy),\n", + " (0 + cx, -height / 2 + cy)\n", + " ]\n", + "\n", + " _sierpinski_recursive(initial_points, level)\n", + "\n", + "# --- Main Program Execution ---\n", + "\n", + "make_turtle(height=200,delay=0)\n", + "\n", + "print(f\"Drawing Sierpinski triangle...\")\n", + "\n", + "# 4. Start the recursive drawing\n", + "draw_sierpinski(150, 4)\n", + "\n", + "print(\"Drawing complete!\")\n", + "\n", + "# A small delay to ensure the notebook updates\n", + "time.sleep(1)\n" ] }, { @@ -2937,10 +3969,194 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": 79, "id": "43470b3d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle(delay=0, height=200)\n", "\n", From 2bcd63d70d3d049f685a75fdd32f8a980f3fc0ce Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Fri, 24 Oct 2025 19:18:59 +0100 Subject: [PATCH 09/56] Chapter 6 exercise solutions --- chapters/chap06.ipynb | 391 ++++++++++++++++++++++++++++++++++-------- 1 file changed, 323 insertions(+), 68 deletions(-) diff --git a/chapters/chap06.ipynb b/chapters/chap06.ipynb index a8d03c32..7921757b 100644 --- a/chapters/chap06.ipynb +++ b/chapters/chap06.ipynb @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 1, "id": "56b1c184", "metadata": { "tags": [] @@ -66,10 +66,21 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 2, "id": "e0e1dd91", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "3.656366395715726" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "import math\n", "\n", @@ -86,7 +97,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 3, "id": "5aaf62d2", "metadata": {}, "outputs": [], @@ -104,10 +115,21 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 4, "id": "741f7386", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "3.656366395715726" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "radius" ] @@ -122,10 +144,21 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 5, "id": "e56d39c4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "7.312732791431452" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "radius + math.sqrt(42 / math.pi)" ] @@ -140,7 +173,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 6, "id": "50a9a9be", "metadata": {}, "outputs": [], @@ -164,10 +197,21 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 7, "id": "d70fd9b5", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "42.00000000000001" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "circle_area(radius)" ] @@ -182,7 +226,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 8, "id": "ef20ba8c", "metadata": {}, "outputs": [], @@ -200,10 +244,21 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 9, "id": "0a4670f4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "63.000000000000014" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "circle_area(radius) + 2 * circle_area(radius / 2)" ] @@ -218,10 +273,21 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 10, "id": "6e6460b9", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "42.00000000000001" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "a" ] @@ -236,12 +302,21 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 11, "id": "77613df9", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'area' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[31mNameError\u001b[39m\u001b[31m:\u001b[39m name 'area' is not defined\n" + ] + } + ], "source": [ "%%expect NameError\n", "\n", @@ -269,7 +344,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 12, "id": "89c083f8", "metadata": {}, "outputs": [], @@ -288,10 +363,18 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 13, "id": "737b67ca", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Finland, Finland, Finland, \n" + ] + } + ], "source": [ "repeat('Finland, ', 3)" ] @@ -307,10 +390,18 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 14, "id": "9b4fa14f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Finland, Finland, Finland, \n" + ] + } + ], "source": [ "result = repeat('Finland, ', 3)" ] @@ -325,7 +416,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 15, "id": "50f96bcb", "metadata": {}, "outputs": [], @@ -344,10 +435,18 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 16, "id": "6712f2df", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "None\n" + ] + } + ], "source": [ "print(result)" ] @@ -364,7 +463,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 17, "id": "0ec1afd3", "metadata": {}, "outputs": [], @@ -386,7 +485,7 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 18, "id": "c82334b6", "metadata": {}, "outputs": [], @@ -404,10 +503,21 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 19, "id": "595ec598", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'Spam, Spam, Spam, Spam, '" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "line" ] @@ -432,7 +542,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 20, "id": "236c59e6", "metadata": {}, "outputs": [], @@ -459,7 +569,7 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 21, "id": "2f60639c", "metadata": {}, "outputs": [], @@ -481,7 +591,7 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 22, "id": "c9dae6c8", "metadata": {}, "outputs": [], @@ -501,7 +611,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 23, "id": "c8c4edee", "metadata": {}, "outputs": [], @@ -544,7 +654,7 @@ "As an example, suppose you want to find the distance between two points represented by the coordinates $(x_1, y_1)$ and $(x_2, y_2)$.\n", "By the Pythagorean theorem, the distance is:\n", "\n", - "$$\\mathrm{distance} = \\sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}$$ \n", + "$\\mathrm{distance} = \\sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}$ \n", "\n", "The first step is to consider what a `distance` function should look like in Python -- that is, what are the inputs (parameters) and what is the output (return value)?\n", "\n", @@ -555,7 +665,7 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 24, "id": "bbcab1ed", "metadata": {}, "outputs": [], @@ -577,10 +687,21 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 25, "id": "923d96db", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "0.0" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "distance(1, 2, 4, 6)" ] @@ -601,7 +722,7 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 26, "id": "9374cfe3", "metadata": {}, "outputs": [], @@ -627,10 +748,29 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 27, "id": "405af839", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "dx is 3\n", + "dy is 4\n" + ] + }, + { + "data": { + "text/plain": [ + "0.0" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "distance(1, 2, 4, 6)" ] @@ -645,7 +785,7 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 28, "id": "e52b3b04", "metadata": {}, "outputs": [], @@ -668,10 +808,28 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 29, "id": "38eebbf3", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "dsquared is: 25\n" + ] + }, + { + "data": { + "text/plain": [ + "0.0" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "distance(1, 2, 4, 6)" ] @@ -686,7 +844,7 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 30, "id": "b4536ea0", "metadata": {}, "outputs": [], @@ -712,7 +870,15 @@ "execution_count": 35, "id": "325efb93", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "result is 5.0\n" + ] + } + ], "source": [ "distance(1, 2, 4, 6)" ] @@ -753,10 +919,21 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 33, "id": "c734f5b2", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "5.0" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "distance(1, 2, 4, 6)" ] @@ -771,7 +948,7 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 34, "id": "094a242f", "metadata": {}, "outputs": [], @@ -813,7 +990,7 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 35, "id": "64207948", "metadata": {}, "outputs": [], @@ -835,20 +1012,42 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 36, "id": "c367cdae", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "is_divisible(6, 4)" ] }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 37, "id": "837f4f95", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "is_divisible(6, 3)" ] @@ -864,7 +1063,7 @@ }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 38, "id": "e411354f", "metadata": {}, "outputs": [], @@ -883,10 +1082,18 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 39, "id": "925e7d4f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "divisible\n" + ] + } + ], "source": [ "if is_divisible(6, 2):\n", " print('divisible')" @@ -902,10 +1109,18 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 40, "id": "62178e75", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "divisible\n" + ] + } + ], "source": [ "if is_divisible(6, 2) == True:\n", " print('divisible')" @@ -949,7 +1164,7 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 41, "id": "23e37c79", "metadata": {}, "outputs": [], @@ -968,7 +1183,7 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 42, "id": "5ea57d9f", "metadata": {}, "outputs": [], @@ -991,7 +1206,7 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 43, "id": "b66e670b", "metadata": {}, "outputs": [], @@ -1039,7 +1254,7 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": 44, "id": "455f0457", "metadata": { "tags": [] @@ -1073,12 +1288,23 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 45, "id": "a75ccd9b", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAASYAAAD2CAYAAAB7jSpBAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjYsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvq6yFwwAAAAlwSFlzAAAPYQAAD2EBqD+naQAAIm5JREFUeJztnXm0Tef5x19t/RBtUW1Jo5IQtEXFEEORmkMNwTLP2mqxKmSJslhVQ6T+sMxTqCGLSJGYxxpiKq0YYliCZagoJSFB1dCU/NbnWd1nnXvd4Zx99zl33+v7Weusc+455+69z97v/r7P+7zP+zx5vvzyyy+dEEKEiK9k9wEIIURqJExCiNAhYRJChA4JkxAidEiYhBChQ8IkhAgdEiYhROiQMAkhQoeESQgROiRMQojQIWESQoQOCZMQInRImIQQoUPCJIQIHRImIUTokDAJIUKHhEkIETokTEKI0CFhEkKEDgmTECJ0fC27DyAn8K9//SvQ7X3jG98IdHtC5DZkMQkhQoeESQgROiRMQojQIWESQoSOHCNMzz//fOBOaCFEOMmjEuGZo1k5IXKZxVSvXj03ePBg9+KLL7qSJUu63/3ud27Dhg2uTp067plnnnETJ06MfPe1115zL7zwgllHfP/UqVORz/LkyeNu3Lhhr/m/kSNHulq1arlnn33Wvf7664n+GUKI3BbHdOHCBff++++7W7dumah8/vnnbvfu3e7y5cuuXLly7uc//7krXLiwGzp0qJswYYL9z5/+9Cc3cOBAt2nTpjS3iUjt27fPXbt2zZUuXdr17t3bPfXUU8n4OUKI3CBM7dq1c1/96lddkSJFXKlSpVyLFi3MAkJIvvOd77i///3vZiVt2bLFTZs2zYZODx8+dJ999lm62+zSpYs9f/vb37Ztnj9/XsIkRC4hKcKUP3/+yGsEKvXf//3vf93HH3/sfvOb37gPPvjALKCjR4/acC7WbbINIUTuIDSzcjdv3nR58+Z1Tz75pMMfP3369Ow+JCHE4y5MFStWdJ06dXLly5c3BziOciHE44nCBWJA4QJCPKYWkxBC+HZ+f/LJJ65JkyYp3jtz5oz5hgoWLJjifWbY6tat65JFq1atzIkeDTOBhCekpmfPnu7VV19N2rEJIWJHQ7kY0FBOPI6cO3fO7dmzxzVo0MCVKFEiqfvWUE4IkSaMgIgxnDdvnlu7dq27e/euSxYSJiFEmhQrVsyWfcGhQ4fczJkz3cWLF10ykDAJITJc61qoUCF7/e9//9stWLDA/eUvf7FYw0QiH5MQIkOOHDniVq1aleK95557zrVp08Y98cQTLhHIYhJCZEiFChUembA5e/asmzVrlvvnP//pEoGESQiRIaxFJU1RNAy0vKEd2UOCRsIkhMiUypUruwIFCjwiTl988YVbtGhR4JaThEkIkSkssGeGjnRFqcHP9LWvBZuoRMIkhIiJH/7wh5HZOE+gvve977kBAwZYXrUgkTAJIWKiaNGi7pvf/Ka9JqU1kIX29u3bLmgULiCEiBmEiOyyLFH54x//6C5dumTrYVm2EiSymIQQMcPQzVs3V7NmTXsmf3/Q9o2ESQjhCwqJeLCmLkgkTEII3zN1hBHARx999Mjn9+/ftzz+ZcqUsQy13bp1C1cxAiFE7qRkyZLu8OHD7h//+Mcjnw0bNsxm706fPm3PV65ciXm7EiYhhG8onwapAyyJCiddCoLlhRYUL1485u1qKCeEyLIwQXS+JtbSfetb33JvvPGGq1atms3cbdu2LebtSpiEEL6Jru+IT8mDOo+sofvRj37kDhw44KZOneo6duzorl69GtN2JUxCCN88ePAg8vr//u//UvievvKVr7iuXbva3zjJCco8duxYTNuVMAkhfBNtJUULE0O8hg0bus2bN9vf58+ftwfLWmJBzm8hhG9wckenR4lm9uzZ7he/+IUbOnSoWU9vvvmme+qpp2LaroRJCOEbr1wai3hTZx4oVaqUe//9931tV0M5IYRvmH2DH/zgBy5IZDElqHacEDmRb8RR85DFvF7Et5dtIChkMQkhfHHixInI6+9///suSCRMQoi4IZvAn//8Z3v94osvKoOlECIcviXP/VGjRo3Aty9hEkLEBVHdK1eutNcvvPBCQmrLSZiEEHGxc+dOd+fOHXv905/+1CUCCZMQImZIpbtnzx573b59e1ewYEGXCCRMQoiYIHvAW2+9Za9ZWsIC3UQhYRJCxORXQpQocAktWrRwiUTCJITINDTg3XffjaQs6du3b0Ic3r6FafXq1WbCPf/88zGnL4hm1KhR7t69e84P5HQhn0tm7Nixw45PpM/LL79sVVVr167tXnrpJXfkyJHsPiQREPfu3XOdO3e2NCM/+clP7Fp7y0b8ihIZAk6dOmV/9+jRwxUrVswlmrjqyjVr1swOjB/ua2d58rjPP//cFS5cOG4zMtYALoRp0KBB7sMPP4xrH4/TkpQbN25ErsHatWvdH/7wB7d3714XFuK53n5gKQWw4j03CtPOnTtdkyZN7H5jRT8GxYYNG+JekuKJ0t/+9jf7u02bNu7HP/6xSwYxX5lXXnnF6kcNHz7clJgEUKTM5ECbN2+eItH4+vXrLb6hUqVKZr3wwzD/gBSbvPfJJ5/Yo23btlZBoUKFCnYSPZ555hlLl1C9enXXs2fPFJYQDZeenv2XL1/edenSJUX6hURDNdIJEya4evXq2bEvXrzYZSeUzlmyZIktEfBuuoyI7hhu3bqVZj36ZMM5HTdunE0/Y1nTUVB6mnOMdUf7+89//hMputi9e3era8ZnY8eOtfdpYzNmzIhsc8SIEZbaFXimSkfr1q0tIJD2OnjwYGtDtGeilz1rfuvWrXZj8x7737Vrl8sp1zd//vx2b3jXlPvQywAQL/xuT5QwSpIlShBzt0RqzKNHj5o1wsX99NNPI/XKx48fb42J/CtUROjdu7f9KFYc4ywj5oHPEB7EzbsxGJpRm2rFihUmUlWrVjUx8wrpXb9+3U4MJxlhis77woWiZDGq3r9/fzdt2jSrypAs8uXLZ8fE76XxdurUKaG9fEZwHZi23bRpk50vbjzOfUYWwa9+9Su7FoD/IAxwXentASFCdLiuXGNEatasWW7gwIGuT58+Vvl10aJF9t1r167FtP39+/fbVPd3v/tdG76yL97jPN28edMSnZHMDAuSAELEkmFQ06ZN3fHjx+2a55Tr68E5+9nPfub84JUDb9mypatSpYpLJr7vJISBhkEvw8NLSr5lyxa7kF4aBGpPFSpUKM1t0DMdPHjQXtNYsJ54zxOmXr16pdmb01AnTZpklhnWE42KXi+ZdOjQwZ7Lli1rgoRjMHUSLBo9vXuyYP8MlWnAJH4nziS9yhRz5syx57ffftuNHDnSvffeey67wQryWLdunZ0/zwJiqhrhun37ttu3b18k8jh1QvyMwAqinXkWOW2HTg0rnjbLjU77O3funFkIHrx/8eJF99xzz+WY6wtY9fwWhut+wE/FSIZ7ONn4EiZ6HSwoGggXes2aNda4s0pqEfr617+erihu377dejxUnWPh72QS3XvScGnkORGG5K+++qpZp1ig2Ul0sB6dDx0fxRKjQZjSgw4ieqhDhxm9zejXdJZYH7RlLMfRo0e7jRs32n7r16/v5s+f73IyU6dONUHCv5SVGbTsECXfwoRq4ySjITPuj/YNMb4dM2aMO3nyZIqhHA2B/8G68YZyjRo1cnPnzjXfAkNDhnTLly+Paf/0kogSvoiFCxda8vOwgX8sGeBfw1IlKrdIkSLmG0nP1MfxjfXx5JNPRiwTyuzwCBPEyUyePNlNmTLFBIdr/tlnn7nSpUvbbCJDPHxE3lCO9kDGRM8CR2g5Jwyx04L/4fyQl5phIQLFzBN/45pg6Ia14M0I44vKCdcXpk+fbsNzRCneiaaw4EuYMHtx+OIfQpwQGE4aYO4uWLDAHI2IEuY3/iUuIg2pcePGpuCkTEDV+/XrZw5keiqclbGsVGZmkJPO/hl/Y4pTKuZxBVFH/L0hdEa+B5zdnD+sCb7HDb1s2bJQOMCjwc/z+9//3kSI40Sc6PAQJoahQ4YMsTZFj44PhbbD0J/fhogwVEtLTDwoxIgfizZKpQ/cB7RNtkehRnxZCDgdL07f7LSgPo3j+nIfMkHF7/eCIPGd+U1xm13EFS6Qm3mcwgWECCKDZSLJfYEcQogcj4RJCBE6JExCiDQh1uudd96JOU4sSFQlRQiRJkxSEUB85syZSHR8ssIHZDEJIdKEGDJyLhEbRjgFs6HJsp4kTEKIdCECnnADII6MmMVkZKOQMAkh0oXVFwzjiHPDcmKFw6pVqyyO0EsalwgkTEKIDCGQlUDpaLCaGNoRkZ8IJExCiAwpUKCApU+JXh1AXDbLfoiSJzI9aCRMQohMIQVN6mVLiBNLZRAnljoFiYRJCBHTUhUSNaZep4c44YcKOhuo4phCtkZIiLBCvv9Dhw6leI9FxeSFClqYZDEJIWKCjAVkeWBI9+yzz9p7pDdKxOycsgsIIeLKP05EOOlySE1D+EAiUu/KYhJCxGU1kbWWoRuFI8ArWBAkEiYhhC+8qikUEgk6nknCJITwBamtvQIcH330UYrPyJBKNSWKdVD5iOygLAaOFQmTEMI3XuWYtIIsKRFGHnWixKkI/Mtf/jLm7UqYhBC+8Upnpc65T+FNcrF7QZnkVMdxHisSJiGEb7yit/iYMprgp9oNVlOsKMBSCOGbWGrWUZ4d/xJFOmNFwiSE8A3lrTzSKgFGNWDqRVLhOJ7CmxImIYRv7t+/n+5nEydOtJzhiFK8hTclTEKILFUJhtRr5SgoSoFbqiNTch3y5csXczCmhEkI4ZuPP/7YnskNHk2JEiUydIZnhmblhBC+OXHihD17i3qDQhbT/1CJcCFcXOl/7t69awUKEiFMspiEEL44ePBgJJgyXud2ZkiYhBBxQ7oTLy6pSZMmaYYKZAUJkxAibj788MNHsgwEiYRJCBEX+JbWr19vr8kakLq0UxBImIQQcbFu3Tp7pkIvZZ0SgYRJCBEz5F3yQgS6d+/u8ubN6xKBhEkIERM3btxwy5Yts9eUDSeIMlFImIQQMfmVZs2aZa+pI+ctM0kUEiYhRKahAQsXLoxkEujTp4+VcQqNMK1evdqK3lGR89ixY3HvbNSoUZYL2A8HDhxwHTt2zPR7O3bssOMTacP579y5s6tcubKZ4yTvOnv2bHYflgiIIUOGuAoVKlg+7qNHj2Z5ew8fPnTLly+3ggPQr18/23aiiUuYZs+e7UaOHGkxDBUrVox7Z6NHj/YlTCh2tWrV3NKlS+P+X/EovXr1soqqe/futfSnAwYMcGGC651IuNl45EZat27tNm/e7EqWLJnlbT148MB8SqdPn7a/e/ToYaWbkkHMwvTKK6+43bt3u+HDh1tP27VrVxMLgquaN2/urly5EvkuMQ5MI1IdAeuFVAd9+/a1z+rWrWvvocA82rZtayKHyr/55psp6lcNHTrUVa9e3fXs2TOFJUTDfemll2z/5cuXd126dImkX0gG9BgkwKpXr54d++LFi112Qi7lJUuW2GxJZjccywc4d16kLtfJWyGenXBOx40bZ7XKsKxZu4hgco5r1apl7c8bSly+fNlmhMgjzWdjx46192ljM2bMiGxzxIgRlj0ReO7WrZvduDVq1LD2SloO2hDt+cUXX4x0muQPIpqZ99j/rl27XE65vrVr145ULskqa9eutWIC0KFDh8DXw2VEzAPFqVOnmmk4aNAgu7hURfDy/Y4fP94aExYV6tq7d2+7mNQ1p3zwnTt37DOEB3Hz1tUwNCtXrpxluEOkqlatamJGg4Pr16+bqHETIUweBHRxoYoWLWqpFfr37++mTZvmhg0b5pIFuWU4Jn4vjbdTp04JH3enB9ehYMGCbtOmTXa+uPE497HUk8ehidUUBriuO3futNcIEaLDdeUaI1Ic68CBA83H0aBBA7do0SL77rVr12La/v79+92ePXus16dyB/viPc7TzZs3LS7n/PnzVmF25cqVJpYMc5s2beqOHz9u1zynXd+sUKhQIXum4y9TpoxLJr7vJISBhkEvw8OrlrBlyxa7kJw4IM7B+4GpoWfyFgLSWLCeeM8TJoYcaa3BoaFOmjTJLDOsJxoVvV4yoQcB6mYhSFevXn2kp6LR07snC/ZPUngaMOuY2rdv74oXL57u97H6zp07Zz1jGMAKig7i4/x5FhCzQgjX7du33b59+0w4PLy2lxlYQd5QBIuctkOnhhVPm+VGp/1xTpo1axb5P96/ePFipFRRTrm+WYWZtzp16iQsVilwYaLXwYKigXCh16xZY76nrJJahJiWTE8Ut2/fbj0evRrHwt/JJLr3pOEm2i8SNJwzBIkJjXhyMScSrILozoeOL3VPjTClBx1E9FCHDjN6m9Gv6SyxPmjLWPH4Pzdu3Gj75YacP39+gL8s55I3G0TJtzCh2uRtYSjFuD/aN4T/YsyYMe7kyZMphnI0BP4H68YbyjVq1MjNnTvXfAsMDRnSMQMQy/7pJRElfBFMZQbh7Asa/GPJAP8aluqlS5dckSJFzDeSkak/ffp09+6775ooBZ2uIihatGjhJk+ebGV/EByuObl/SpcubX4Uhnj4iLyhHO2BNK6eBY4bgHPCEDst+B/OT8OGDW1YiEDhT+FvXBMM3fB7ejPC+KJyyvXNDfj6ZZi9+IZ4eM5sD8zdBQsWmKMRfxHjYc+BRkNi0Z/n/KbXJsQdBzK9FM5Kvp8ZzA4gduwfk5tjeJxB1DkfXBcmCkhzml6jpXEzgUEULzc/N3mig+X8gJ8HRz3Hh6+pVatWESf9nDlz3OHDh00Y+NzrGBn6IziIyK9//es0xSQ6JzW+UrZNm+Oc0TYRvnnz5pkvC/cA25g5c6bLKdd34MCBJlpc5zZt2tg9mBPJ82VWEvPmIpTBUggXVwbLRJJ7bUEhRI5FwiSECB0SJiFEmhDrRcHKWOPEgkRVUoQQaUIYCQHEZ86ciUTHJyt8QBaTECJNiCFjBpDYMMIpmA1NlvUkYRJCpAvhOCzVAeLICM1giJdoJExCiHRh9QXDOFZlYDmxwmHVqlUWnEvwdKKQMAkhMoRA1tSVULCaGNoRkZ8IJExCiAwpUKCApceJXstKXDbLfoiSJzI9aCRMQohMYelO6kX2iBNLZRCnW7duuSCRMAkhYlqqwhrX1Gv0ECf8UEEvKFYcU8jWCAkRVsj3T0rmaFgwTF6ooIVJFpMQIiZIrkcKGoZ0Xppd0hslYnZO2QWEEHHlHycinPxXpKYhfKBly5auSpUqLkhkMQkh4rKayFrL0I3CEUAm0KCRMAkhfEGFJCDpY9DxTBImIYQvSG3tFeAgE200VLnBusIfRR3KeJEwCSF841WOSR1k2a5dO1v4+/TTT/varsIFhBC+8UpnXbhwIcX7pEjJCrKYhBC+8Yre4mMKcoJfwiSE8E2iahJKmIQQvqGupEdaVbP9ImESQvjm/v37LhFImIQQWaoSDKnXylFwtESJElZYlOrc3uxdrGhWTgjhG686MrnBo/GqI/tFFpMQwjcnTpywZ29Rb1DIYvofKhEuhIsr/c/du3etQEEihEkWkxDCFwcPHrTn/Pnzu8KFC7sgkTAJIeKGdCfbtm2z102aNAk0VAAkTEKIuIlemOtlGQgSCZMQIi7wLa1fv95eN27c+JHSTkEgYRJCxMW6devsmQq9lHVKBBImIUTMkHfJCxHo3r27y5s3r0sEEiYhREzcuHHDLVu2zF5TNpzI7kQhYRJCxORXmjVrlr2mjlz9+vVdIpEwCSEyDQ1YuHBhJJNAnz59rIxTaIRp9erVVvSOipzHjh2Le2ejRo1y9+7dc344cOCA69ixY6bf27Fjhx2fSJshQ4a4ChUqWL7mo0ePZvfhiJBf34cPH7rly5dbwQHo16+fbTvRxCVMs2fPdiNHjrQYhooVK8a9s9GjR/sSJhS7WrVqbunSpXH/r0hJ69at3ebNm13JkiVdWOF6JxJuNh65kdYBXt8HDx6YT+n06dP2d48ePax0UzKIWZioerB79243fPhwc3x17drVxILgqubNm7srV65EvkuMA9OIlSpVMuuFulN9+/a1z+rWrWvvocA82rZtayKHykevSKbCwtChQ1316tVdz549U1hCNFxSKbD/8uXLuy5dukTSLyQDeowJEya4evXq2bEvXrzYZXcRwiVLlthsSWY3XO3atSOVLcIE53TcuHFWqwzLmrWLAwYMsHNcq1Yta3/eUOLy5cs2I1SzZk37bOzYsfY+bWzGjBmRbY4YMcK98cYb9prnbt262Y1bo0YNa6+DBw+2NkR7Jke112lu3brVopl5j/3v2rXLPY7Xd+3ate7UqVP2ukOHDoGvh8uImAeKU6dONdNw0KBBdnGpiuDl+x0/frw1Jiwq1LV37952MalrTvngO3fu2GcID+LmrathaFauXDm3YsUKE6mqVauamNHg4Pr16yZqhLsjTB4EdHGhihYtanmG+/fv76ZNm+aGDRvmkkW+fPnsmPi9NN5OnTolfNydHlyHggULuk2bNtn54sbj3AddTz7RcF137txprxEiRIfryjVGpHC+Dhw40HwcDRo0cIsWLbLvXrt2Labt79+/3yp30OsfOXLE9sV7nKebN29aXM758+etwuzKlStNLM+ePeuaNm3qjh8/btf8cbq+hQoVsmc6/jJlyrhk4vtOQhhoGPQyPLxqCVu2bLELyYkD4hy8H5gaeiZvISCNBeuJ9zxh6tWrV5prcGiokyZNMssM64lGRa+XTOhBoGzZsiZIV69efaSnotHTuycL9k9SeBow65jat2/vihcv7nIKWEHRQXycP88CYlYI4bp9+7bbt2+fCYeH1/YyAyvIG4pgkdN26NSw4mmz3Oi0v3PnzrlmzZpF/o/3L168+Eiys9x+fevXr+/q1KmTsFilwIWJXgcLigbChV6zZo35nrJKahFiWjI9Udy+fbv1ePRqHAt/J5Po3pOGm2i/yOMAVkF050PHl7qnRpjSgw4ieqhDhxm9zejXdJZYH7RlrHj8nxs3brT9ckPOnz8/wF+Wc8kOUfItTKg2eVsYSjHuj/YN4fsZM2aMO3nyZIqhHA2B/8G68YZyjRo1cnPnzjXfAkNDhnTMAMSyf3pJRAlfBFOZYXTm4h9LBvjXsFQvXbrkihQpYr6RnDiUi6ZFixZu8uTJbsqUKSY4XHNy/5QuXdr8KAzx8BF5QznaQ6lSpSIWOG4AzglD7LTgfzg/DRs2tGEhAoU/hb9xTTB0w+/pzQjji0qNrm/i8PXLMHvxDfHwnNkemLsLFiwwRyP+IsbDngONhsSiP8/5jaVDiDsOZHopnJV8PzOYHUDs2D8mN8fwOIOocz64LkwUkOY0vUaLj4ZGTSNv06aNXaMwgp+HPD+IEL6mVq1aRdK4zpkzxx0+fNiEgc+9jpGhP4KDiJBzOi0x8SAXNb5Stk2b45zRNhG+efPm2XnCPcA2Zs6c6bKTT3Ph9c2MPF8GWaUuB6MMlkK4uDJYJpLcawsKIXIsEiYhROiQMAkh0oRYr3feeSfmOLEgUZUUIUSaPPHEExZAfObMmUh0fLLCB2QxCSHShBgyZgCJDSOcgtnQZFlPEiYhRLoQjsNSHSCOjNAMhniJRsIkhEgXVl8wjGNVBpYTKxxWrVplKZAInk4UEiYhRIYQyJq6EgpWE0M7IvITgYRJCJEhBQoUsDRG0WtZictm2Q9R8kSmB42ESQiRKSzdSb3IHnFiqQzidOvWLRckEiYhRExLVVjjmnqNHuKEHyroBcWKYwrZGiEhwgr5/g8dOpTiPRYMkxcqaGGSxSSEiAmS65GChiGdl2aX9EaJmJ1TdgEhRFz5x4kIJ/8VqWkIH2jZsqWrUqWKCxJZTEKIuKwmstYydKNwBJAJNGgkTEIIX1AhCUj6GHQ8k4RJCOELUlt7BTjIRBsNVW6wrvBHUYcyXiRMQgjfeJVjUgdZtmvXzhb+Pv300762q3ABIYRvvNJZFy5cSPE+KVKygiwmIYRvvKK3+JiCnOCXMAkhfEPoQCKQMAkhfENdSY+0qmb7RcIkhPDN/fv3XSKQMAkhslQlGFKvlaPgaIkSJaywKNW5vdm7WNGsnBDCN151ZHKDR+NVR/aLLCYhhG9OnDhhz96i3qCQxfQ/VCI8NpQeRnjcvXvXChQkQphkMQkhfHHw4EF7zp8/vytcuLALEgmTECJuSHeybds2e92kSZNAQwVAwiSEiJvohbleloEgkTAJIeL2La1fv95eN27c+JHSTkEgYRJCxMW6devsmQq9lHVKBBImIUTMkHfJCxHo3r27y5s3r0sEEiYhREzcuHHDLVu2zF5TNpzI7kQhYRJCxORXmjVrlr2mjlz9+vVdIpEwCSEyDQ1YuHBhJJNAnz59rIxTaIRp9erVVvSOipzHjh2Le2ejRo1y9+7dc344cOCA69ixY6bf27Fjhx2fSJ8zZ864Ro0aucqVK1uli9T5moXwePjwoVu+fLkVHIB+/fpZru9EE1dduWbNmrkePXq4zp07+9tZnjyW6S7eKFEUO1aFRpgGDRoUdwL0x2lJSosWLewadu3a1a1atcpNmjTJ7dy5M6b/1ZKUx4cHDx6YKJ06dcr+5t4PeulJli0mqh7s3r3bDR8+3BxfNOpq1apZcFXz5s3dlStXIt8lxoFpxEqVKpn1Qt2pvn372md169a191BgHm3btnUVK1Z0FSpUSLEimQoLQ4cOddWrV3c9e/ZMYQkhVKRSYP/ly5d3Xbp0iaRfSAb0GBMmTHD16tWzY1+8eLHL7iKES5YssdkSeriMIGn84cOHI9bnyy+/7C5duuTOnj2bpKMVOYW1a9dGRKlDhw5JE6W4hGnq1KkmBPSue/fudZMnT7bh1dGjR01sGKbB6dOnXe/evd2iRYvckSNH3AcffGD1zWfPnm2fI25YMxTNGzBggCtXrpwNC7dv3+5ef/1199e//jWyz+vXr5uovf322ymOhYAubkT2f/z4cVeoUCE3bdo0l0zy5ctnYvnee++53/72tyaW2Zl3uWDBgm7Tpk3urbfeylCgyI9TrFixiAWKFevlzREiGu4roOPHhZNMfHuwEAbEB58RD69awpYtW1zTpk1NjIA4B+8Hpmbr1q2RhYAIFdYT79WsWdPe69WrV5prcBh9IpBYZgjCzZs3zYpLJvQgULZsWbvJr169Gqmx5bF//353+fLlpB0T+2eojECxjql9+/auePHiSdu/yF3Ur1/f1alTJ2GxSoHPylEvCgtqw4YNZrFMnDjRt1M7mtQixLRkeqKIhYVfBGvrtddeC2T/8VpMHmTvy06LKR6wjhBR73gReaylRMakiJxL3mwQJd8WE70yTtCiRYvaFGK0bwjfz5gxY9zJkyfNavriiy/cnTt3zGrif7BuPOc3M0Nz585148aNM9/HihUrzNkWy/6x0PD14LRmKrNkyZIubOAfSwb417BU8RUVKVLEanpx7lOnO/WGffj+li5dan5CZlqxtEqXLp2UYxUiYRYTQzV8Qzw8Z7YHuX0XLFjgunXrZjdAjRo1Ig60wYMH26I/z/mN1cVUNQ5kzMYRI0bY9zOD2QHEjv0zU8gxPM4g6pwPrgsTBaQ5TUuUPKZMmeLmz59v4QIMiWfOnJnU4xUi0HCB3MzjFC6QFRQuIJKBIr+FEKFDwiSECB0SJiFE6JAwCSFCh4RJCBE6JExCiNAhYRJChA4JkxAidEiYhBChQ8IkhAgdEiYhROjQWjkhROiQxSSECB0SJiFE6JAwCSFCh4RJCBE6JExCiNAhYRJChA4JkxAidEiYhBChQ8IkhAgdEiYhROiQMAkhQoeESQgROiRMQojQIWESQoQOCZMQInRImIQQoUPCJIQIHRImIUTokDAJIVzY+H+wFqgMSdFIAwAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "from diagram import diagram, adjust\n", "\n", @@ -1142,7 +1368,7 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 46, "id": "cad75752", "metadata": {}, "outputs": [], @@ -1156,6 +1382,35 @@ " return fibonacci(n-1) + fibonacci(n-2)" ] }, + { + "cell_type": "code", + "execution_count": 47, + "id": "86041a54", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "55" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "fibonacci(10)" + ] + }, + { + "cell_type": "markdown", + "id": "452be40c", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "69d56a0b", @@ -1994,7 +2249,7 @@ "metadata": { "celltoolbar": "Tags", "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "thinkpy", "language": "python", "name": "python3" }, @@ -2008,7 +2263,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.13.5" } }, "nbformat": 4, From 4c9c7b82e081da4c038ac53adec73df2ddf519f1 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Sat, 25 Oct 2025 17:51:16 +0100 Subject: [PATCH 10/56] Update chapter solution attempts --- chapters/chap06.ipynb | 156989 ++++++++++++++++++++++++++++++++++++++- chapters/chap07.ipynb | 114285 +++++++++++++++++++++++++++- chapters/words.txt | 113783 ++++++++++++++++++++++++++++ 3 files changed, 384901 insertions(+), 156 deletions(-) create mode 100644 chapters/words.txt diff --git a/chapters/chap06.ipynb b/chapters/chap06.ipynb index 7921757b..faa5c552 100644 --- a/chapters/chap06.ipynb +++ b/chapters/chap06.ipynb @@ -867,7 +867,7 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 31, "id": "325efb93", "metadata": {}, "outputs": [ @@ -895,7 +895,7 @@ }, { "cell_type": "code", - "execution_count": 36, + "execution_count": 32, "id": "3cd982ce", "metadata": {}, "outputs": [], @@ -1403,14 +1403,6 @@ "fibonacci(10)" ] }, - { - "cell_type": "markdown", - "id": "452be40c", - "metadata": {}, - "source": [ - "### BOOKMARK" - ] - }, { "cell_type": "markdown", "id": "69d56a0b", @@ -1435,12 +1427,20 @@ }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 54, "id": "5e4b5f1d", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "factorial is only defined for integers.\n" + ] + } + ], "source": [ "%%expect RecursionError\n", "\n", @@ -1466,20 +1466,42 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 49, "id": "3f607dff", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "isinstance(3, int)" ] }, { "cell_type": "code", - "execution_count": 53, + "execution_count": 50, "id": "ab638bfe", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 50, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "isinstance(1.5, int)" ] @@ -1494,7 +1516,7 @@ }, { "cell_type": "code", - "execution_count": 54, + "execution_count": 51, "id": "73aafac0", "metadata": {}, "outputs": [], @@ -1524,10 +1546,18 @@ }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 52, "id": "be881cb7", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "factorial is only defined for integers.\n" + ] + } + ], "source": [ "factorial('crunchy frog')" ] @@ -1543,10 +1573,18 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 53, "id": "fa83014f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "factorial is not defined for negative numbers.\n" + ] + } + ], "source": [ "factorial(-2)" ] @@ -1592,7 +1630,7 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": 55, "id": "1d50479e", "metadata": {}, "outputs": [], @@ -1621,10 +1659,35 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 56, "id": "798db5c4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " factorial 3\n", + " factorial 2\n", + " factorial 1\n", + " factorial 0\n", + " returning 1\n", + " returning 1\n", + " returning 2\n", + " returning 6\n" + ] + }, + { + "data": { + "text/plain": [ + "6" + ] + }, + "execution_count": 56, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "factorial(3)" ] @@ -1678,12 +1741,20 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 57, "id": "e0f15ca4", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Verbose\n" + ] + } + ], "source": [ "# This cell tells Jupyter to provide detailed debugging information\n", "# when a runtime error occurs. Run it before working on the exercises.\n", @@ -1703,7 +1774,7 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 58, "id": "90b4979f", "metadata": {}, "outputs": [], @@ -1725,7 +1796,7 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 59, "id": "9217f038", "metadata": {}, "outputs": [], @@ -1749,7 +1820,7 @@ }, { "cell_type": "code", - "execution_count": 62, + "execution_count": 60, "id": "3168489b", "metadata": {}, "outputs": [], @@ -1788,12 +1859,36 @@ }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 69, "id": "62267fa3", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9\n", + "9\n", + "4.242640687119285\n" + ] + } + ], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def hypotenuse(x, y):\n", + " dx = x ** 2\n", + " print(dx)\n", + " \n", + " dy = y ** 2\n", + " print(dy)\n", + "\n", + " result = dx + dy\n", + "\n", + " final_output = math.sqrt(result)\n", + " \n", + " return final_output\n", + "\n", + "print(hypotenuse(3,3))" ] }, { @@ -1899,12 +1994,17 @@ }, { "cell_type": "code", - "execution_count": 73, + "execution_count": 74, "id": "0a4ee482", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def is_between(x, y, z):\n", + " if x < y < z or z < y < x:\n", + " return True\n", + " else:\n", + " return False" ] }, { @@ -1919,52 +2019,104 @@ }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 75, "id": "956ed6d7", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 75, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "is_between(1, 2, 3) # should be True" ] }, { "cell_type": "code", - "execution_count": 75, + "execution_count": 76, "id": "a994eaa6", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 76, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "is_between(3, 2, 1) # should be True" ] }, { "cell_type": "code", - "execution_count": 76, + "execution_count": 77, "id": "4318028d", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 77, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "is_between(1, 3, 2) # should be False" ] }, { "cell_type": "code", - "execution_count": 77, + "execution_count": 78, "id": "05208c8b", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 78, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "is_between(2, 3, 1) # should be False" ] }, + { + "cell_type": "markdown", + "id": "1a7cf576", + "metadata": {}, + "source": [ + "###### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "57f06466", @@ -1988,12 +2140,27 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": 95, "id": "7eb85c5c", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def ackermann(m, n):\n", + " print(m, n)\n", + " result = 0\n", + " if m == 0:\n", + " result = n + 1\n", + " #print(result)\n", + " return result\n", + " elif m > 0 and n == 0:\n", + " result = ackermann(m-1,1)\n", + " #print(result)\n", + " return result\n", + " elif m > 0 and n > 0:\n", + " result = ackermann(m-1, ackermann(m,n-1))\n", + " #print(result)\n", + " return result" ] }, { @@ -2008,36 +2175,13367 @@ }, { "cell_type": "code", - "execution_count": 79, + "execution_count": 96, "id": "687a3e5a", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3 2\n", + "3 1\n", + "3 0\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "2 5\n", + "2 4\n", + "2 3\n", + "2 2\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "2 13\n", + "2 12\n", + "2 11\n", + "2 10\n", + "2 9\n", + "2 8\n", + "2 7\n", + "2 6\n", + "2 5\n", + "2 4\n", + "2 3\n", + "2 2\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n" + ] + }, + { + "data": { + "text/plain": [ + "29" + ] + }, + "execution_count": 96, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "ackermann(3, 2) # should be 29" ] }, { "cell_type": "code", - "execution_count": 80, + "execution_count": 98, "id": "c49e9749", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3 3\n", + "3 2\n", + "3 1\n", + "3 0\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "2 5\n", + "2 4\n", + "2 3\n", + "2 2\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "2 13\n", + "2 12\n", + "2 11\n", + "2 10\n", + "2 9\n", + "2 8\n", + "2 7\n", + "2 6\n", + "2 5\n", + "2 4\n", + "2 3\n", + "2 2\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "2 29\n", + "2 28\n", + "2 27\n", + "2 26\n", + "2 25\n", + "2 24\n", + "2 23\n", + "2 22\n", + "2 21\n", + "2 20\n", + "2 19\n", + "2 18\n", + "2 17\n", + "2 16\n", + "2 15\n", + "2 14\n", + "2 13\n", + "2 12\n", + "2 11\n", + "2 10\n", + "2 9\n", + "2 8\n", + "2 7\n", + "2 6\n", + "2 5\n", + "2 4\n", + "2 3\n", + "2 2\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n" + ] + }, + { + "data": { + "text/plain": [ + "61" + ] + }, + "execution_count": 98, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "ackermann(3, 3) # should be 61" ] }, { "cell_type": "code", - "execution_count": 81, + "execution_count": 97, "id": "8497dec4", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3 4\n", + "3 3\n", + "3 2\n", + "3 1\n", + "3 0\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "2 5\n", + "2 4\n", + "2 3\n", + "2 2\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "2 13\n", + "2 12\n", + "2 11\n", + "2 10\n", + "2 9\n", + "2 8\n", + "2 7\n", + "2 6\n", + "2 5\n", + "2 4\n", + "2 3\n", + "2 2\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "2 29\n", + "2 28\n", + "2 27\n", + "2 26\n", + "2 25\n", + "2 24\n", + "2 23\n", + "2 22\n", + "2 21\n", + "2 20\n", + "2 19\n", + "2 18\n", + "2 17\n", + "2 16\n", + "2 15\n", + "2 14\n", + "2 13\n", + "2 12\n", + "2 11\n", + "2 10\n", + "2 9\n", + "2 8\n", + "2 7\n", + "2 6\n", + "2 5\n", + "2 4\n", + "2 3\n", + "2 2\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "2 61\n", + "2 60\n", + "2 59\n", + "2 58\n", + "2 57\n", + "2 56\n", + "2 55\n", + "2 54\n", + "2 53\n", + "2 52\n", + "2 51\n", + "2 50\n", + "2 49\n", + "2 48\n", + "2 47\n", + "2 46\n", + "2 45\n", + "2 44\n", + "2 43\n", + "2 42\n", + "2 41\n", + "2 40\n", + "2 39\n", + "2 38\n", + "2 37\n", + "2 36\n", + "2 35\n", + "2 34\n", + "2 33\n", + "2 32\n", + "2 31\n", + "2 30\n", + "2 29\n", + "2 28\n", + "2 27\n", + "2 26\n", + "2 25\n", + "2 24\n", + "2 23\n", + "2 22\n", + "2 21\n", + "2 20\n", + "2 19\n", + "2 18\n", + "2 17\n", + "2 16\n", + "2 15\n", + "2 14\n", + "2 13\n", + "2 12\n", + "2 11\n", + "2 10\n", + "2 9\n", + "2 8\n", + "2 7\n", + "2 6\n", + "2 5\n", + "2 4\n", + "2 3\n", + "2 2\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n" + ] + }, + { + "data": { + "text/plain": [ + "125" + ] + }, + "execution_count": 97, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "ackermann(3, 4) # should be 125" ] @@ -2054,12 +15552,143236 @@ }, { "cell_type": "code", - "execution_count": 82, + "execution_count": 99, "id": "76be4d15", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5 5\n", + "5 4\n", + "5 3\n", + "5 2\n", + "5 1\n", + "5 0\n", + "4 1\n", + "4 0\n", + "3 1\n", + "3 0\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "2 5\n", + "2 4\n", + "2 3\n", + "2 2\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "3 13\n", + "3 12\n", + "3 11\n", + "3 10\n", + "3 9\n", + "3 8\n", + "3 7\n", + "3 6\n", + "3 5\n", + "3 4\n", + "3 3\n", + "3 2\n", + "3 1\n", + "3 0\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "2 5\n", + "2 4\n", + "2 3\n", + "2 2\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "2 13\n", + "2 12\n", + "2 11\n", + "2 10\n", + "2 9\n", + "2 8\n", + "2 7\n", + "2 6\n", + "2 5\n", + "2 4\n", + "2 3\n", + "2 2\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "2 29\n", + "2 28\n", + "2 27\n", + "2 26\n", + "2 25\n", + "2 24\n", + "2 23\n", + "2 22\n", + "2 21\n", + "2 20\n", + "2 19\n", + "2 18\n", + "2 17\n", + "2 16\n", + "2 15\n", + "2 14\n", + "2 13\n", + "2 12\n", + "2 11\n", + "2 10\n", + "2 9\n", + "2 8\n", + "2 7\n", + "2 6\n", + "2 5\n", + "2 4\n", + "2 3\n", + "2 2\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "2 61\n", + "2 60\n", + "2 59\n", + "2 58\n", + "2 57\n", + "2 56\n", + "2 55\n", + "2 54\n", + "2 53\n", + "2 52\n", + "2 51\n", + "2 50\n", + "2 49\n", + "2 48\n", + "2 47\n", + "2 46\n", + "2 45\n", + "2 44\n", + "2 43\n", + "2 42\n", + "2 41\n", + "2 40\n", + "2 39\n", + "2 38\n", + "2 37\n", + "2 36\n", + "2 35\n", + "2 34\n", + "2 33\n", + "2 32\n", + "2 31\n", + "2 30\n", + "2 29\n", + "2 28\n", + "2 27\n", + "2 26\n", + "2 25\n", + "2 24\n", + "2 23\n", + "2 22\n", + "2 21\n", + "2 20\n", + "2 19\n", + "2 18\n", + "2 17\n", + "2 16\n", + "2 15\n", + "2 14\n", + "2 13\n", + "2 12\n", + "2 11\n", + "2 10\n", + "2 9\n", + "2 8\n", + "2 7\n", + "2 6\n", + "2 5\n", + "2 4\n", + "2 3\n", + "2 2\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "2 125\n", + "2 124\n", + "2 123\n", + "2 122\n", + "2 121\n", + "2 120\n", + "2 119\n", + "2 118\n", + "2 117\n", + "2 116\n", + "2 115\n", + "2 114\n", + "2 113\n", + "2 112\n", + "2 111\n", + "2 110\n", + "2 109\n", + "2 108\n", + "2 107\n", + "2 106\n", + "2 105\n", + "2 104\n", + "2 103\n", + "2 102\n", + "2 101\n", + "2 100\n", + "2 99\n", + "2 98\n", + "2 97\n", + "2 96\n", + "2 95\n", + "2 94\n", + "2 93\n", + "2 92\n", + "2 91\n", + "2 90\n", + "2 89\n", + "2 88\n", + "2 87\n", + "2 86\n", + "2 85\n", + "2 84\n", + "2 83\n", + "2 82\n", + "2 81\n", + "2 80\n", + "2 79\n", + "2 78\n", + "2 77\n", + "2 76\n", + "2 75\n", + "2 74\n", + "2 73\n", + "2 72\n", + "2 71\n", + "2 70\n", + "2 69\n", + "2 68\n", + "2 67\n", + "2 66\n", + "2 65\n", + "2 64\n", + "2 63\n", + "2 62\n", + "2 61\n", + "2 60\n", + "2 59\n", + "2 58\n", + "2 57\n", + "2 56\n", + "2 55\n", + "2 54\n", + "2 53\n", + "2 52\n", + "2 51\n", + "2 50\n", + "2 49\n", + "2 48\n", + "2 47\n", + "2 46\n", + "2 45\n", + "2 44\n", + "2 43\n", + "2 42\n", + "2 41\n", + "2 40\n", + "2 39\n", + "2 38\n", + "2 37\n", + "2 36\n", + "2 35\n", + "2 34\n", + "2 33\n", + "2 32\n", + "2 31\n", + "2 30\n", + "2 29\n", + "2 28\n", + "2 27\n", + "2 26\n", + "2 25\n", + "2 24\n", + "2 23\n", + "2 22\n", + "2 21\n", + "2 20\n", + "2 19\n", + "2 18\n", + "2 17\n", + "2 16\n", + "2 15\n", + "2 14\n", + "2 13\n", + "2 12\n", + "2 11\n", + "2 10\n", + "2 9\n", + "2 8\n", + "2 7\n", + "2 6\n", + "2 5\n", + "2 4\n", + "2 3\n", + "2 2\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "2 253\n", + "2 252\n", + "2 251\n", + "2 250\n", + "2 249\n", + "2 248\n", + "2 247\n", + "2 246\n", + "2 245\n", + "2 244\n", + "2 243\n", + "2 242\n", + "2 241\n", + "2 240\n", + "2 239\n", + "2 238\n", + "2 237\n", + "2 236\n", + "2 235\n", + "2 234\n", + "2 233\n", + "2 232\n", + "2 231\n", + "2 230\n", + "2 229\n", + "2 228\n", + "2 227\n", + "2 226\n", + "2 225\n", + "2 224\n", + "2 223\n", + "2 222\n", + "2 221\n", + "2 220\n", + "2 219\n", + "2 218\n", + "2 217\n", + "2 216\n", + "2 215\n", + "2 214\n", + "2 213\n", + "2 212\n", + "2 211\n", + "2 210\n", + "2 209\n", + "2 208\n", + "2 207\n", + "2 206\n", + "2 205\n", + "2 204\n", + "2 203\n", + "2 202\n", + "2 201\n", + "2 200\n", + "2 199\n", + "2 198\n", + "2 197\n", + "2 196\n", + "2 195\n", + "2 194\n", + "2 193\n", + "2 192\n", + "2 191\n", + "2 190\n", + "2 189\n", + "2 188\n", + "2 187\n", + "2 186\n", + "2 185\n", + "2 184\n", + "2 183\n", + "2 182\n", + "2 181\n", + "2 180\n", + "2 179\n", + "2 178\n", + "2 177\n", + "2 176\n", + "2 175\n", + "2 174\n", + "2 173\n", + "2 172\n", + "2 171\n", + "2 170\n", + "2 169\n", + "2 168\n", + "2 167\n", + "2 166\n", + "2 165\n", + "2 164\n", + "2 163\n", + "2 162\n", + "2 161\n", + "2 160\n", + "2 159\n", + "2 158\n", + "2 157\n", + "2 156\n", + "2 155\n", + "2 154\n", + "2 153\n", + "2 152\n", + "2 151\n", + "2 150\n", + "2 149\n", + "2 148\n", + "2 147\n", + "2 146\n", + "2 145\n", + "2 144\n", + "2 143\n", + "2 142\n", + "2 141\n", + "2 140\n", + "2 139\n", + "2 138\n", + "2 137\n", + "2 136\n", + "2 135\n", + "2 134\n", + "2 133\n", + "2 132\n", + "2 131\n", + "2 130\n", + "2 129\n", + "2 128\n", + "2 127\n", + "2 126\n", + "2 125\n", + "2 124\n", + "2 123\n", + "2 122\n", + "2 121\n", + "2 120\n", + "2 119\n", + "2 118\n", + "2 117\n", + "2 116\n", + "2 115\n", + "2 114\n", + "2 113\n", + "2 112\n", + "2 111\n", + "2 110\n", + "2 109\n", + "2 108\n", + "2 107\n", + "2 106\n", + "2 105\n", + "2 104\n", + "2 103\n", + "2 102\n", + "2 101\n", + "2 100\n", + "2 99\n", + "2 98\n", + "2 97\n", + "2 96\n", + "2 95\n", + "2 94\n", + "2 93\n", + "2 92\n", + "2 91\n", + "2 90\n", + "2 89\n", + "2 88\n", + "2 87\n", + "2 86\n", + "2 85\n", + "2 84\n", + "2 83\n", + "2 82\n", + "2 81\n", + "2 80\n", + "2 79\n", + "2 78\n", + "2 77\n", + "2 76\n", + "2 75\n", + "2 74\n", + "2 73\n", + "2 72\n", + "2 71\n", + "2 70\n", + "2 69\n", + "2 68\n", + "2 67\n", + "2 66\n", + "2 65\n", + "2 64\n", + "2 63\n", + "2 62\n", + "2 61\n", + "2 60\n", + "2 59\n", + "2 58\n", + "2 57\n", + "2 56\n", + "2 55\n", + "2 54\n", + "2 53\n", + "2 52\n", + "2 51\n", + "2 50\n", + "2 49\n", + "2 48\n", + "2 47\n", + "2 46\n", + "2 45\n", + "2 44\n", + "2 43\n", + "2 42\n", + "2 41\n", + "2 40\n", + "2 39\n", + "2 38\n", + "2 37\n", + "2 36\n", + "2 35\n", + "2 34\n", + "2 33\n", + "2 32\n", + "2 31\n", + "2 30\n", + "2 29\n", + "2 28\n", + "2 27\n", + "2 26\n", + "2 25\n", + "2 24\n", + "2 23\n", + "2 22\n", + "2 21\n", + "2 20\n", + "2 19\n", + "2 18\n", + "2 17\n", + "2 16\n", + "2 15\n", + "2 14\n", + "2 13\n", + "2 12\n", + "2 11\n", + "2 10\n", + "2 9\n", + "2 8\n", + "2 7\n", + "2 6\n", + "2 5\n", + "2 4\n", + "2 3\n", + "2 2\n", + "2 1\n", + "2 0\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "0 413\n", + "0 414\n", + "1 415\n", + "1 414\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "0 413\n", + "0 414\n", + "0 415\n", + "0 416\n", + "1 417\n", + "1 416\n", + "1 415\n", + "1 414\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "0 413\n", + "0 414\n", + "0 415\n", + "0 416\n", + "0 417\n", + "0 418\n", + "1 419\n", + "1 418\n", + "1 417\n", + "1 416\n", + "1 415\n", + "1 414\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "0 413\n", + "0 414\n", + "0 415\n", + "0 416\n", + "0 417\n", + "0 418\n", + "0 419\n", + "0 420\n", + "1 421\n", + "1 420\n", + "1 419\n", + "1 418\n", + "1 417\n", + "1 416\n", + "1 415\n", + "1 414\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "0 413\n", + "0 414\n", + "0 415\n", + "0 416\n", + "0 417\n", + "0 418\n", + "0 419\n", + "0 420\n", + "0 421\n", + "0 422\n", + "1 423\n", + "1 422\n", + "1 421\n", + "1 420\n", + "1 419\n", + "1 418\n", + "1 417\n", + "1 416\n", + "1 415\n", + "1 414\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "0 413\n", + "0 414\n", + "0 415\n", + "0 416\n", + "0 417\n", + "0 418\n", + "0 419\n", + "0 420\n", + "0 421\n", + "0 422\n", + "0 423\n", + "0 424\n", + "1 425\n", + "1 424\n", + "1 423\n", + "1 422\n", + "1 421\n", + "1 420\n", + "1 419\n", + "1 418\n", + "1 417\n", + "1 416\n", + "1 415\n", + "1 414\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "0 413\n", + "0 414\n", + "0 415\n", + "0 416\n", + "0 417\n", + "0 418\n", + "0 419\n", + "0 420\n", + "0 421\n", + "0 422\n", + "0 423\n", + "0 424\n", + "0 425\n", + "0 426\n", + "1 427\n", + "1 426\n", + "1 425\n", + "1 424\n", + "1 423\n", + "1 422\n", + "1 421\n", + "1 420\n", + "1 419\n", + "1 418\n", + "1 417\n", + "1 416\n", + "1 415\n", + "1 414\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "0 413\n", + "0 414\n", + "0 415\n", + "0 416\n", + "0 417\n", + "0 418\n", + "0 419\n", + "0 420\n", + "0 421\n", + "0 422\n", + "0 423\n", + "0 424\n", + "0 425\n", + "0 426\n", + "0 427\n", + "0 428\n", + "1 429\n", + "1 428\n", + "1 427\n", + "1 426\n", + "1 425\n", + "1 424\n", + "1 423\n", + "1 422\n", + "1 421\n", + "1 420\n", + "1 419\n", + "1 418\n", + "1 417\n", + "1 416\n", + "1 415\n", + "1 414\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "0 413\n", + "0 414\n", + "0 415\n", + "0 416\n", + "0 417\n", + "0 418\n", + "0 419\n", + "0 420\n", + "0 421\n", + "0 422\n", + "0 423\n", + "0 424\n", + "0 425\n", + "0 426\n", + "0 427\n", + "0 428\n", + "0 429\n", + "0 430\n", + "1 431\n", + "1 430\n", + "1 429\n", + "1 428\n", + "1 427\n", + "1 426\n", + "1 425\n", + "1 424\n", + "1 423\n", + "1 422\n", + "1 421\n", + "1 420\n", + "1 419\n", + "1 418\n", + "1 417\n", + "1 416\n", + "1 415\n", + "1 414\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "0 413\n", + "0 414\n", + "0 415\n", + "0 416\n", + "0 417\n", + "0 418\n", + "0 419\n", + "0 420\n", + "0 421\n", + "0 422\n", + "0 423\n", + "0 424\n", + "0 425\n", + "0 426\n", + "0 427\n", + "0 428\n", + "0 429\n", + "0 430\n", + "0 431\n", + "0 432\n", + "1 433\n", + "1 432\n", + "1 431\n", + "1 430\n", + "1 429\n", + "1 428\n", + "1 427\n", + "1 426\n", + "1 425\n", + "1 424\n", + "1 423\n", + "1 422\n", + "1 421\n", + "1 420\n", + "1 419\n", + "1 418\n", + "1 417\n", + "1 416\n", + "1 415\n", + "1 414\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "0 413\n", + "0 414\n", + "0 415\n", + "0 416\n", + "0 417\n", + "0 418\n", + "0 419\n", + "0 420\n", + "0 421\n", + "0 422\n", + "0 423\n", + "0 424\n", + "0 425\n", + "0 426\n", + "0 427\n", + "0 428\n", + "0 429\n", + "0 430\n", + "0 431\n", + "0 432\n", + "0 433\n", + "0 434\n", + "1 435\n", + "1 434\n", + "1 433\n", + "1 432\n", + "1 431\n", + "1 430\n", + "1 429\n", + "1 428\n", + "1 427\n", + "1 426\n", + "1 425\n", + "1 424\n", + "1 423\n", + "1 422\n", + "1 421\n", + "1 420\n", + "1 419\n", + "1 418\n", + "1 417\n", + "1 416\n", + "1 415\n", + "1 414\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "0 413\n", + "0 414\n", + "0 415\n", + "0 416\n", + "0 417\n", + "0 418\n", + "0 419\n", + "0 420\n", + "0 421\n", + "0 422\n", + "0 423\n", + "0 424\n", + "0 425\n", + "0 426\n", + "0 427\n", + "0 428\n", + "0 429\n", + "0 430\n", + "0 431\n", + "0 432\n", + "0 433\n", + "0 434\n", + "0 435\n", + "0 436\n", + "1 437\n", + "1 436\n", + "1 435\n", + "1 434\n", + "1 433\n", + "1 432\n", + "1 431\n", + "1 430\n", + "1 429\n", + "1 428\n", + "1 427\n", + "1 426\n", + "1 425\n", + "1 424\n", + "1 423\n", + "1 422\n", + "1 421\n", + "1 420\n", + "1 419\n", + "1 418\n", + "1 417\n", + "1 416\n", + "1 415\n", + "1 414\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "0 413\n", + "0 414\n", + "0 415\n", + "0 416\n", + "0 417\n", + "0 418\n", + "0 419\n", + "0 420\n", + "0 421\n", + "0 422\n", + "0 423\n", + "0 424\n", + "0 425\n", + "0 426\n", + "0 427\n", + "0 428\n", + "0 429\n", + "0 430\n", + "0 431\n", + "0 432\n", + "0 433\n", + "0 434\n", + "0 435\n", + "0 436\n", + "0 437\n", + "0 438\n", + "1 439\n", + "1 438\n", + "1 437\n", + "1 436\n", + "1 435\n", + "1 434\n", + "1 433\n", + "1 432\n", + "1 431\n", + "1 430\n", + "1 429\n", + "1 428\n", + "1 427\n", + "1 426\n", + "1 425\n", + "1 424\n", + "1 423\n", + "1 422\n", + "1 421\n", + "1 420\n", + "1 419\n", + "1 418\n", + "1 417\n", + "1 416\n", + "1 415\n", + "1 414\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "0 413\n", + "0 414\n", + "0 415\n", + "0 416\n", + "0 417\n", + "0 418\n", + "0 419\n", + "0 420\n", + "0 421\n", + "0 422\n", + "0 423\n", + "0 424\n", + "0 425\n", + "0 426\n", + "0 427\n", + "0 428\n", + "0 429\n", + "0 430\n", + "0 431\n", + "0 432\n", + "0 433\n", + "0 434\n", + "0 435\n", + "0 436\n", + "0 437\n", + "0 438\n", + "0 439\n", + "0 440\n", + "1 441\n", + "1 440\n", + "1 439\n", + "1 438\n", + "1 437\n", + "1 436\n", + "1 435\n", + "1 434\n", + "1 433\n", + "1 432\n", + "1 431\n", + "1 430\n", + "1 429\n", + "1 428\n", + "1 427\n", + "1 426\n", + "1 425\n", + "1 424\n", + "1 423\n", + "1 422\n", + "1 421\n", + "1 420\n", + "1 419\n", + "1 418\n", + "1 417\n", + "1 416\n", + "1 415\n", + "1 414\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "0 413\n", + "0 414\n", + "0 415\n", + "0 416\n", + "0 417\n", + "0 418\n", + "0 419\n", + "0 420\n", + "0 421\n", + "0 422\n", + "0 423\n", + "0 424\n", + "0 425\n", + "0 426\n", + "0 427\n", + "0 428\n", + "0 429\n", + "0 430\n", + "0 431\n", + "0 432\n", + "0 433\n", + "0 434\n", + "0 435\n", + "0 436\n", + "0 437\n", + "0 438\n", + "0 439\n", + "0 440\n", + "0 441\n", + "0 442\n", + "1 443\n", + "1 442\n", + "1 441\n", + "1 440\n", + "1 439\n", + "1 438\n", + "1 437\n", + "1 436\n", + "1 435\n", + "1 434\n", + "1 433\n", + "1 432\n", + "1 431\n", + "1 430\n", + "1 429\n", + "1 428\n", + "1 427\n", + "1 426\n", + "1 425\n", + "1 424\n", + "1 423\n", + "1 422\n", + "1 421\n", + "1 420\n", + "1 419\n", + "1 418\n", + "1 417\n", + "1 416\n", + "1 415\n", + "1 414\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "0 413\n", + "0 414\n", + "0 415\n", + "0 416\n", + "0 417\n", + "0 418\n", + "0 419\n", + "0 420\n", + "0 421\n", + "0 422\n", + "0 423\n", + "0 424\n", + "0 425\n", + "0 426\n", + "0 427\n", + "0 428\n", + "0 429\n", + "0 430\n", + "0 431\n", + "0 432\n", + "0 433\n", + "0 434\n", + "0 435\n", + "0 436\n", + "0 437\n", + "0 438\n", + "0 439\n", + "0 440\n", + "0 441\n", + "0 442\n", + "0 443\n", + "0 444\n", + "1 445\n", + "1 444\n", + "1 443\n", + "1 442\n", + "1 441\n", + "1 440\n", + "1 439\n", + "1 438\n", + "1 437\n", + "1 436\n", + "1 435\n", + "1 434\n", + "1 433\n", + "1 432\n", + "1 431\n", + "1 430\n", + "1 429\n", + "1 428\n", + "1 427\n", + "1 426\n", + "1 425\n", + "1 424\n", + "1 423\n", + "1 422\n", + "1 421\n", + "1 420\n", + "1 419\n", + "1 418\n", + "1 417\n", + "1 416\n", + "1 415\n", + "1 414\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28\n", + "0 29\n", + "0 30\n", + "0 31\n", + "0 32\n", + "0 33\n", + "0 34\n", + "0 35\n", + "0 36\n", + "0 37\n", + "0 38\n", + "0 39\n", + "0 40\n", + "0 41\n", + "0 42\n", + "0 43\n", + "0 44\n", + "0 45\n", + "0 46\n", + "0 47\n", + "0 48\n", + "0 49\n", + "0 50\n", + "0 51\n", + "0 52\n", + "0 53\n", + "0 54\n", + "0 55\n", + "0 56\n", + "0 57\n", + "0 58\n", + "0 59\n", + "0 60\n", + "0 61\n", + "0 62\n", + "0 63\n", + "0 64\n", + "0 65\n", + "0 66\n", + "0 67\n", + "0 68\n", + "0 69\n", + "0 70\n", + "0 71\n", + "0 72\n", + "0 73\n", + "0 74\n", + "0 75\n", + "0 76\n", + "0 77\n", + "0 78\n", + "0 79\n", + "0 80\n", + "0 81\n", + "0 82\n", + "0 83\n", + "0 84\n", + "0 85\n", + "0 86\n", + "0 87\n", + "0 88\n", + "0 89\n", + "0 90\n", + "0 91\n", + "0 92\n", + "0 93\n", + "0 94\n", + "0 95\n", + "0 96\n", + "0 97\n", + "0 98\n", + "0 99\n", + "0 100\n", + "0 101\n", + "0 102\n", + "0 103\n", + "0 104\n", + "0 105\n", + "0 106\n", + "0 107\n", + "0 108\n", + "0 109\n", + "0 110\n", + "0 111\n", + "0 112\n", + "0 113\n", + "0 114\n", + "0 115\n", + "0 116\n", + "0 117\n", + "0 118\n", + "0 119\n", + "0 120\n", + "0 121\n", + "0 122\n", + "0 123\n", + "0 124\n", + "0 125\n", + "0 126\n", + "0 127\n", + "0 128\n", + "0 129\n", + "0 130\n", + "0 131\n", + "0 132\n", + "0 133\n", + "0 134\n", + "0 135\n", + "0 136\n", + "0 137\n", + "0 138\n", + "0 139\n", + "0 140\n", + "0 141\n", + "0 142\n", + "0 143\n", + "0 144\n", + "0 145\n", + "0 146\n", + "0 147\n", + "0 148\n", + "0 149\n", + "0 150\n", + "0 151\n", + "0 152\n", + "0 153\n", + "0 154\n", + "0 155\n", + "0 156\n", + "0 157\n", + "0 158\n", + "0 159\n", + "0 160\n", + "0 161\n", + "0 162\n", + "0 163\n", + "0 164\n", + "0 165\n", + "0 166\n", + "0 167\n", + "0 168\n", + "0 169\n", + "0 170\n", + "0 171\n", + "0 172\n", + "0 173\n", + "0 174\n", + "0 175\n", + "0 176\n", + "0 177\n", + "0 178\n", + "0 179\n", + "0 180\n", + "0 181\n", + "0 182\n", + "0 183\n", + "0 184\n", + "0 185\n", + "0 186\n", + "0 187\n", + "0 188\n", + "0 189\n", + "0 190\n", + "0 191\n", + "0 192\n", + "0 193\n", + "0 194\n", + "0 195\n", + "0 196\n", + "0 197\n", + "0 198\n", + "0 199\n", + "0 200\n", + "0 201\n", + "0 202\n", + "0 203\n", + "0 204\n", + "0 205\n", + "0 206\n", + "0 207\n", + "0 208\n", + "0 209\n", + "0 210\n", + "0 211\n", + "0 212\n", + "0 213\n", + "0 214\n", + "0 215\n", + "0 216\n", + "0 217\n", + "0 218\n", + "0 219\n", + "0 220\n", + "0 221\n", + "0 222\n", + "0 223\n", + "0 224\n", + "0 225\n", + "0 226\n", + "0 227\n", + "0 228\n", + "0 229\n", + "0 230\n", + "0 231\n", + "0 232\n", + "0 233\n", + "0 234\n", + "0 235\n", + "0 236\n", + "0 237\n", + "0 238\n", + "0 239\n", + "0 240\n", + "0 241\n", + "0 242\n", + "0 243\n", + "0 244\n", + "0 245\n", + "0 246\n", + "0 247\n", + "0 248\n", + "0 249\n", + "0 250\n", + "0 251\n", + "0 252\n", + "0 253\n", + "0 254\n", + "0 255\n", + "0 256\n", + "0 257\n", + "0 258\n", + "0 259\n", + "0 260\n", + "0 261\n", + "0 262\n", + "0 263\n", + "0 264\n", + "0 265\n", + "0 266\n", + "0 267\n", + "0 268\n", + "0 269\n", + "0 270\n", + "0 271\n", + "0 272\n", + "0 273\n", + "0 274\n", + "0 275\n", + "0 276\n", + "0 277\n", + "0 278\n", + "0 279\n", + "0 280\n", + "0 281\n", + "0 282\n", + "0 283\n", + "0 284\n", + "0 285\n", + "0 286\n", + "0 287\n", + "0 288\n", + "0 289\n", + "0 290\n", + "0 291\n", + "0 292\n", + "0 293\n", + "0 294\n", + "0 295\n", + "0 296\n", + "0 297\n", + "0 298\n", + "0 299\n", + "0 300\n", + "0 301\n", + "0 302\n", + "0 303\n", + "0 304\n", + "0 305\n", + "0 306\n", + "0 307\n", + "0 308\n", + "0 309\n", + "0 310\n", + "0 311\n", + "0 312\n", + "0 313\n", + "0 314\n", + "0 315\n", + "0 316\n", + "0 317\n", + "0 318\n", + "0 319\n", + "0 320\n", + "0 321\n", + "0 322\n", + "0 323\n", + "0 324\n", + "0 325\n", + "0 326\n", + "0 327\n", + "0 328\n", + "0 329\n", + "0 330\n", + "0 331\n", + "0 332\n", + "0 333\n", + "0 334\n", + "0 335\n", + "0 336\n", + "0 337\n", + "0 338\n", + "0 339\n", + "0 340\n", + "0 341\n", + "0 342\n", + "0 343\n", + "0 344\n", + "0 345\n", + "0 346\n", + "0 347\n", + "0 348\n", + "0 349\n", + "0 350\n", + "0 351\n", + "0 352\n", + "0 353\n", + "0 354\n", + "0 355\n", + "0 356\n", + "0 357\n", + "0 358\n", + "0 359\n", + "0 360\n", + "0 361\n", + "0 362\n", + "0 363\n", + "0 364\n", + "0 365\n", + "0 366\n", + "0 367\n", + "0 368\n", + "0 369\n", + "0 370\n", + "0 371\n", + "0 372\n", + "0 373\n", + "0 374\n", + "0 375\n", + "0 376\n", + "0 377\n", + "0 378\n", + "0 379\n", + "0 380\n", + "0 381\n", + "0 382\n", + "0 383\n", + "0 384\n", + "0 385\n", + "0 386\n", + "0 387\n", + "0 388\n", + "0 389\n", + "0 390\n", + "0 391\n", + "0 392\n", + "0 393\n", + "0 394\n", + "0 395\n", + "0 396\n", + "0 397\n", + "0 398\n", + "0 399\n", + "0 400\n", + "0 401\n", + "0 402\n", + "0 403\n", + "0 404\n", + "0 405\n", + "0 406\n", + "0 407\n", + "0 408\n", + "0 409\n", + "0 410\n", + "0 411\n", + "0 412\n", + "0 413\n", + "0 414\n", + "0 415\n", + "0 416\n", + "0 417\n", + "0 418\n", + "0 419\n", + "0 420\n", + "0 421\n", + "0 422\n", + "0 423\n", + "0 424\n", + "0 425\n", + "0 426\n", + "0 427\n", + "0 428\n", + "0 429\n", + "0 430\n", + "0 431\n", + "0 432\n", + "0 433\n", + "0 434\n", + "0 435\n", + "0 436\n", + "0 437\n", + "0 438\n", + "0 439\n", + "0 440\n", + "0 441\n", + "0 442\n", + "0 443\n", + "0 444\n", + "0 445\n", + "0 446\n", + "1 447\n", + "1 446\n", + "1 445\n", + "1 444\n", + "1 443\n", + "1 442\n", + "1 441\n", + "1 440\n", + "1 439\n", + "1 438\n", + "1 437\n", + "1 436\n", + "1 435\n", + "1 434\n", + "1 433\n", + "1 432\n", + "1 431\n", + "1 430\n", + "1 429\n", + "1 428\n", + "1 427\n", + "1 426\n", + "1 425\n", + "1 424\n", + "1 423\n", + "1 422\n", + "1 421\n", + "1 420\n", + "1 419\n", + "1 418\n", + "1 417\n", + "1 416\n", + "1 415\n", + "1 414\n", + "1 413\n", + "1 412\n", + "1 411\n", + "1 410\n", + "1 409\n", + "1 408\n", + "1 407\n", + "1 406\n", + "1 405\n", + "1 404\n", + "1 403\n", + "1 402\n", + "1 401\n", + "1 400\n", + "1 399\n", + "1 398\n", + "1 397\n", + "1 396\n", + "1 395\n", + "1 394\n", + "1 393\n", + "1 392\n", + "1 391\n", + "1 390\n", + "1 389\n", + "1 388\n", + "1 387\n", + "1 386\n", + "1 385\n", + "1 384\n", + "1 383\n", + "1 382\n", + "1 381\n", + "1 380\n", + "1 379\n", + "1 378\n", + "1 377\n", + "1 376\n", + "1 375\n", + "1 374\n", + "1 373\n", + "1 372\n", + "1 371\n", + "1 370\n", + "1 369\n", + "1 368\n", + "1 367\n", + "1 366\n", + "1 365\n", + "1 364\n", + "1 363\n", + "1 362\n", + "1 361\n", + "1 360\n", + "1 359\n", + "1 358\n", + "1 357\n", + "1 356\n", + "1 355\n", + "1 354\n", + "1 353\n", + "1 352\n", + "1 351\n", + "1 350\n", + "1 349\n", + "1 348\n", + "1 347\n", + "1 346\n", + "1 345\n", + "1 344\n", + "1 343\n", + "1 342\n", + "1 341\n", + "1 340\n", + "1 339\n", + "1 338\n", + "1 337\n", + "1 336\n", + "1 335\n", + "1 334\n", + "1 333\n", + "1 332\n", + "1 331\n", + "1 330\n", + "1 329\n", + "1 328\n", + "1 327\n", + "1 326\n", + "1 325\n", + "1 324\n", + "1 323\n", + "1 322\n", + "1 321\n", + "1 320\n", + "1 319\n", + "1 318\n", + "1 317\n", + "1 316\n", + "1 315\n", + "1 314\n", + "1 313\n", + "1 312\n", + "1 311\n", + "1 310\n", + "1 309\n", + "1 308\n", + "1 307\n", + "1 306\n", + "1 305\n", + "1 304\n", + "1 303\n", + "1 302\n", + "1 301\n", + "1 300\n", + "1 299\n", + "1 298\n", + "1 297\n", + "1 296\n", + "1 295\n", + "1 294\n", + "1 293\n", + "1 292\n", + "1 291\n", + "1 290\n", + "1 289\n", + "1 288\n", + "1 287\n", + "1 286\n", + "1 285\n", + "1 284\n", + "1 283\n", + "1 282\n", + "1 281\n", + "1 280\n", + "1 279\n", + "1 278\n", + "1 277\n", + "1 276\n", + "1 275\n", + "1 274\n", + "1 273\n", + "1 272\n", + "1 271\n", + "1 270\n", + "1 269\n", + "1 268\n", + "1 267\n", + "1 266\n", + "1 265\n", + "1 264\n", + "1 263\n", + "1 262\n", + "1 261\n", + "1 260\n", + "1 259\n", + "1 258\n", + "1 257\n", + "1 256\n", + "1 255\n", + "1 254\n", + "1 253\n", + "1 252\n", + "1 251\n", + "1 250\n", + "1 249\n", + "1 248\n", + "1 247\n", + "1 246\n", + "1 245\n", + "1 244\n", + "1 243\n", + "1 242\n", + "1 241\n", + "1 240\n", + "1 239\n", + "1 238\n", + "1 237\n", + "1 236\n", + "1 235\n", + "1 234\n", + "1 233\n", + "1 232\n", + "1 231\n", + "1 230\n", + "1 229\n", + "1 228\n", + "1 227\n", + "1 226\n", + "1 225\n", + "1 224\n", + "1 223\n", + "1 222\n", + "1 221\n", + "1 220\n", + "1 219\n", + "1 218\n", + "1 217\n", + "1 216\n", + "1 215\n", + "1 214\n", + "1 213\n", + "1 212\n", + "1 211\n", + "1 210\n", + "1 209\n", + "1 208\n", + "1 207\n", + "1 206\n", + "1 205\n", + "1 204\n", + "1 203\n", + "1 202\n", + "1 201\n", + "1 200\n", + "1 199\n", + "1 198\n", + "1 197\n", + "1 196\n", + "1 195\n", + "1 194\n", + "1 193\n", + "1 192\n", + "1 191\n", + "1 190\n", + "1 189\n", + "1 188\n", + "1 187\n", + "1 186\n", + "1 185\n", + "1 184\n", + "1 183\n", + "1 182\n", + "1 181\n", + "1 180\n", + "1 179\n", + "1 178\n", + "1 177\n", + "1 176\n", + "1 175\n", + "1 174\n", + "1 173\n", + "1 172\n", + "1 171\n", + "1 170\n", + "1 169\n", + "1 168\n", + "1 167\n", + "1 166\n", + "1 165\n", + "1 164\n", + "1 163\n", + "1 162\n", + "1 161\n", + "1 160\n", + "1 159\n", + "1 158\n", + "1 157\n", + "1 156\n", + "1 155\n", + "1 154\n", + "1 153\n", + "1 152\n", + "1 151\n", + "1 150\n", + "1 149\n", + "1 148\n", + "1 147\n", + "1 146\n", + "1 145\n", + "1 144\n", + "1 143\n", + "1 142\n", + "1 141\n", + "1 140\n", + "1 139\n", + "1 138\n", + "1 137\n", + "1 136\n", + "1 135\n", + "1 134\n", + "1 133\n", + "1 132\n", + "1 131\n", + "1 130\n", + "1 129\n", + "1 128\n", + "1 127\n", + "1 126\n", + "1 125\n", + "1 124\n", + "1 123\n", + "1 122\n", + "1 121\n", + "1 120\n", + "1 119\n", + "1 118\n", + "1 117\n", + "1 116\n", + "1 115\n", + "1 114\n", + "1 113\n", + "1 112\n", + "1 111\n", + "1 110\n", + "1 109\n", + "1 108\n", + "1 107\n", + "1 106\n", + "1 105\n", + "1 104\n", + "1 103\n", + "1 102\n", + "1 101\n", + "1 100\n", + "1 99\n", + "1 98\n", + "1 97\n", + "1 96\n", + "1 95\n", + "1 94\n", + "1 93\n", + "1 92\n", + "1 91\n", + "1 90\n", + "1 89\n", + "1 88\n", + "1 87\n", + "1 86\n", + "1 85\n", + "1 84\n", + "1 83\n", + "1 82\n", + "1 81\n", + "1 80\n", + "1 79\n", + "1 78\n", + "1 77\n", + "1 76\n", + "1 75\n", + "1 74\n", + "1 73\n", + "1 72\n", + "1 71\n", + "1 70\n", + "1 69\n", + "1 68\n", + "1 67\n", + "1 66\n", + "1 65\n", + "1 64\n", + "1 63\n", + "1 62\n", + "1 61\n", + "1 60\n", + "1 59\n", + "1 58\n", + "1 57\n", + "1 56\n", + "1 55\n", + "1 54\n", + "1 53\n", + "1 52\n", + "1 51\n", + "1 50\n", + "1 49\n", + "1 48\n", + "1 47\n", + "1 46\n", + "1 45\n", + "1 44\n", + "1 43\n", + "1 42\n", + "1 41\n", + "1 40\n", + "1 39\n", + "1 38\n", + "1 37\n", + "1 36\n", + "1 35\n", + "1 34\n", + "1 33\n", + "1 32\n", + "1 31\n", + "1 30\n", + "1 29\n", + "1 28\n", + "1 27\n", + "1 26\n", + "1 25\n", + "1 24\n", + "1 23\n", + "1 22\n", + "1 21\n", + "1 20\n", + "1 19\n", + "1 18\n", + "1 17\n", + "1 16\n", + "1 15\n", + "1 14\n", + "1 13\n", + "1 12\n", + "1 11\n", + "1 10\n", + "1 9\n", + "1 8\n", + "1 7\n", + "1 6\n", + "1 5\n", + "1 4\n", + "1 3\n", + "1 2\n", + "1 1\n", + "1 0\n", + "0 1\n", + "0 2\n", + "0 3\n", + "0 4\n", + "0 5\n", + "0 6\n", + "0 7\n", + "0 8\n", + "0 9\n", + "0 10\n", + "0 11\n", + "0 12\n", + "0 13\n", + "0 14\n", + "0 15\n", + "0 16\n", + "0 17\n", + "0 18\n", + "0 19\n", + "0 20\n", + "0 21\n", + "0 22\n", + "0 23\n", + "0 24\n", + "0 25\n", + "0 26\n", + "0 27\n", + "0 28" + ] + }, + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mKeyboardInterrupt\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[99]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[32m----> \u001b[39m\u001b[32m1\u001b[39m \u001b[43mackermann\u001b[49m\u001b[43m(\u001b[49m\u001b[32;43m5\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[32;43m5\u001b[39;49m\u001b[43m)\u001b[49m\n", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[95]\u001b[39m\u001b[32m, line 14\u001b[39m, in \u001b[36mackermann\u001b[39m\u001b[34m(m=5, n=5)\u001b[39m\n\u001b[32m 12\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m result\n\u001b[32m 13\u001b[39m \u001b[38;5;28;01melif\u001b[39;00m m > \u001b[32m0\u001b[39m \u001b[38;5;129;01mand\u001b[39;00m n > \u001b[32m0\u001b[39m:\n\u001b[32m---> \u001b[39m\u001b[32m14\u001b[39m result = ackermann(m-\u001b[32m1\u001b[39m, \u001b[43mackermann\u001b[49m\u001b[43m(\u001b[49m\u001b[43mm\u001b[49m\u001b[43m,\u001b[49m\u001b[43mn\u001b[49m\u001b[43m-\u001b[49m\u001b[32;43m1\u001b[39;49m\u001b[43m)\u001b[49m)\n result \u001b[34m= \u001b[39m\u001b[34m0\u001b[39m\n m \u001b[34m= \u001b[39m\u001b[34m5\u001b[39m\n n \u001b[34m= \u001b[39m\u001b[34m5\u001b[39m\n m-1 \u001b[34m= \u001b[39m\u001b[34m4\u001b[39m\n n-1 \u001b[34m= \u001b[39m\u001b[34m4\u001b[39m\u001b[32m 15\u001b[39m \u001b[38;5;66;03m#print(result)\u001b[39;00m\n\u001b[32m 16\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m result\n", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[95]\u001b[39m\u001b[32m, line 14\u001b[39m, in \u001b[36mackermann\u001b[39m\u001b[34m(m=5, n=4)\u001b[39m\n\u001b[32m 12\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m result\n\u001b[32m 13\u001b[39m \u001b[38;5;28;01melif\u001b[39;00m m > \u001b[32m0\u001b[39m \u001b[38;5;129;01mand\u001b[39;00m n > \u001b[32m0\u001b[39m:\n\u001b[32m---> \u001b[39m\u001b[32m14\u001b[39m result = ackermann(m-\u001b[32m1\u001b[39m, \u001b[43mackermann\u001b[49m\u001b[43m(\u001b[49m\u001b[43mm\u001b[49m\u001b[43m,\u001b[49m\u001b[43mn\u001b[49m\u001b[43m-\u001b[49m\u001b[32;43m1\u001b[39;49m\u001b[43m)\u001b[49m)\n result \u001b[34m= \u001b[39m\u001b[34m0\u001b[39m\n m \u001b[34m= \u001b[39m\u001b[34m5\u001b[39m\n n \u001b[34m= \u001b[39m\u001b[34m4\u001b[39m\n m-1 \u001b[34m= \u001b[39m\u001b[34m4\u001b[39m\n n-1 \u001b[34m= \u001b[39m\u001b[34m3\u001b[39m\u001b[32m 15\u001b[39m \u001b[38;5;66;03m#print(result)\u001b[39;00m\n\u001b[32m 16\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m result\n", + " \u001b[31m[... skipping similar frames: ackermann at line 14 (2 times)]\u001b[39m\n", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[95]\u001b[39m\u001b[32m, line 14\u001b[39m, in \u001b[36mackermann\u001b[39m\u001b[34m(m=5, n=1)\u001b[39m\n\u001b[32m 12\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m result\n\u001b[32m 13\u001b[39m \u001b[38;5;28;01melif\u001b[39;00m m > \u001b[32m0\u001b[39m \u001b[38;5;129;01mand\u001b[39;00m n > \u001b[32m0\u001b[39m:\n\u001b[32m---> \u001b[39m\u001b[32m14\u001b[39m result = ackermann(m-\u001b[32m1\u001b[39m, \u001b[43mackermann\u001b[49m\u001b[43m(\u001b[49m\u001b[43mm\u001b[49m\u001b[43m,\u001b[49m\u001b[43mn\u001b[49m\u001b[43m-\u001b[49m\u001b[32;43m1\u001b[39;49m\u001b[43m)\u001b[49m)\n result \u001b[34m= \u001b[39m\u001b[34m0\u001b[39m\n m \u001b[34m= \u001b[39m\u001b[34m5\u001b[39m\n n \u001b[34m= \u001b[39m\u001b[34m1\u001b[39m\n m-1 \u001b[34m= \u001b[39m\u001b[34m4\u001b[39m\n n-1 \u001b[34m= \u001b[39m\u001b[34m0\u001b[39m\u001b[32m 15\u001b[39m \u001b[38;5;66;03m#print(result)\u001b[39;00m\n\u001b[32m 16\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m result\n", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[95]\u001b[39m\u001b[32m, line 10\u001b[39m, in \u001b[36mackermann\u001b[39m\u001b[34m(m=5, n=0)\u001b[39m\n\u001b[32m 8\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m result\n\u001b[32m 9\u001b[39m \u001b[38;5;28;01melif\u001b[39;00m m > \u001b[32m0\u001b[39m \u001b[38;5;129;01mand\u001b[39;00m n == \u001b[32m0\u001b[39m:\n\u001b[32m---> \u001b[39m\u001b[32m10\u001b[39m result = \u001b[43mackermann\u001b[49m\u001b[43m(\u001b[49m\u001b[43mm\u001b[49m\u001b[43m-\u001b[49m\u001b[32;43m1\u001b[39;49m\u001b[43m,\u001b[49m\u001b[32;43m1\u001b[39;49m\u001b[43m)\u001b[49m\n result \u001b[34m= \u001b[39m\u001b[34m0\u001b[39m\n m \u001b[34m= \u001b[39m\u001b[34m5\u001b[39m\n m-1 \u001b[34m= \u001b[39m\u001b[34m4\u001b[39m\u001b[32m 11\u001b[39m \u001b[38;5;66;03m#print(result)\u001b[39;00m\n\u001b[32m 12\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m result\n", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[95]\u001b[39m\u001b[32m, line 14\u001b[39m, in \u001b[36mackermann\u001b[39m\u001b[34m(m=4, n=1)\u001b[39m\n\u001b[32m 12\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m result\n\u001b[32m 13\u001b[39m \u001b[38;5;28;01melif\u001b[39;00m m > \u001b[32m0\u001b[39m \u001b[38;5;129;01mand\u001b[39;00m n > \u001b[32m0\u001b[39m:\n\u001b[32m---> \u001b[39m\u001b[32m14\u001b[39m result = \u001b[43mackermann\u001b[49m\u001b[43m(\u001b[49m\u001b[43mm\u001b[49m\u001b[43m-\u001b[49m\u001b[32;43m1\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mackermann\u001b[49m\u001b[43m(\u001b[49m\u001b[43mm\u001b[49m\u001b[43m,\u001b[49m\u001b[43mn\u001b[49m\u001b[43m-\u001b[49m\u001b[32;43m1\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m)\u001b[49m\n result \u001b[34m= \u001b[39m\u001b[34m0\u001b[39m\n m \u001b[34m= \u001b[39m\u001b[34m4\u001b[39m\n n \u001b[34m= \u001b[39m\u001b[34m1\u001b[39m\n m-1 \u001b[34m= \u001b[39m\u001b[34m3\u001b[39m\n n-1 \u001b[34m= \u001b[39m\u001b[34m0\u001b[39m\u001b[32m 15\u001b[39m \u001b[38;5;66;03m#print(result)\u001b[39;00m\n\u001b[32m 16\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m result\n", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[95]\u001b[39m\u001b[32m, line 14\u001b[39m, in \u001b[36mackermann\u001b[39m\u001b[34m(m=3, n=13)\u001b[39m\n\u001b[32m 12\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m result\n\u001b[32m 13\u001b[39m \u001b[38;5;28;01melif\u001b[39;00m m > \u001b[32m0\u001b[39m \u001b[38;5;129;01mand\u001b[39;00m n > \u001b[32m0\u001b[39m:\n\u001b[32m---> \u001b[39m\u001b[32m14\u001b[39m result = ackermann(m-\u001b[32m1\u001b[39m, \u001b[43mackermann\u001b[49m\u001b[43m(\u001b[49m\u001b[43mm\u001b[49m\u001b[43m,\u001b[49m\u001b[43mn\u001b[49m\u001b[43m-\u001b[49m\u001b[32;43m1\u001b[39;49m\u001b[43m)\u001b[49m)\n result \u001b[34m= \u001b[39m\u001b[34m0\u001b[39m\n m \u001b[34m= \u001b[39m\u001b[34m3\u001b[39m\n n \u001b[34m= \u001b[39m\u001b[34m13\u001b[39m\n m-1 \u001b[34m= \u001b[39m\u001b[34m2\u001b[39m\n n-1 \u001b[34m= \u001b[39m\u001b[34m12\u001b[39m\u001b[32m 15\u001b[39m \u001b[38;5;66;03m#print(result)\u001b[39;00m\n\u001b[32m 16\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m result\n", + " \u001b[31m[... skipping similar frames: ackermann at line 14 (458 times)]\u001b[39m\n", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[95]\u001b[39m\u001b[32m, line 14\u001b[39m, in \u001b[36mackermann\u001b[39m\u001b[34m(m=1, n=27)\u001b[39m\n\u001b[32m 12\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m result\n\u001b[32m 13\u001b[39m \u001b[38;5;28;01melif\u001b[39;00m m > \u001b[32m0\u001b[39m \u001b[38;5;129;01mand\u001b[39;00m n > \u001b[32m0\u001b[39m:\n\u001b[32m---> \u001b[39m\u001b[32m14\u001b[39m result = \u001b[43mackermann\u001b[49m\u001b[43m(\u001b[49m\u001b[43mm\u001b[49m\u001b[43m-\u001b[49m\u001b[32;43m1\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mackermann\u001b[49m\u001b[43m(\u001b[49m\u001b[43mm\u001b[49m\u001b[43m,\u001b[49m\u001b[43mn\u001b[49m\u001b[43m-\u001b[49m\u001b[32;43m1\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m)\u001b[49m\n result \u001b[34m= \u001b[39m\u001b[34m0\u001b[39m\n m \u001b[34m= \u001b[39m\u001b[34m1\u001b[39m\n n \u001b[34m= \u001b[39m\u001b[34m27\u001b[39m\n m-1 \u001b[34m= \u001b[39m\u001b[34m0\u001b[39m\n n-1 \u001b[34m= \u001b[39m\u001b[34m26\u001b[39m\u001b[32m 15\u001b[39m \u001b[38;5;66;03m#print(result)\u001b[39;00m\n\u001b[32m 16\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m result\n", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[95]\u001b[39m\u001b[32m, line 3\u001b[39m, in \u001b[36mackermann\u001b[39m\u001b[34m(m=0, n=28)\u001b[39m\n\u001b[32m 2\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34mackermann\u001b[39m(m, n):\n\u001b[32m----> \u001b[39m\u001b[32m3\u001b[39m \u001b[38;5;28;43mprint\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43mm\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mn\u001b[49m\u001b[43m)\u001b[49m\n m \u001b[34m= \u001b[39m\u001b[34m0\u001b[39m\n n \u001b[34m= \u001b[39m\u001b[34m28\u001b[39m\u001b[32m 4\u001b[39m result = \u001b[32m0\u001b[39m\n\u001b[32m 5\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m m == \u001b[32m0\u001b[39m:\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/miniforge3/envs/thinkpy/lib/python3.13/site-packages/IPython/core/interactiveshell.py:3048\u001b[39m, in \u001b[36mInteractiveShell._tee..write\u001b[39m\u001b[34m(data='28', *args=(), **kwargs={})\u001b[39m\n\u001b[32m 3044\u001b[39m \u001b[38;5;250m\u001b[39m\u001b[33;03m\"\"\"Write data to both the original destination and the capture dictionary.\"\"\"\u001b[39;00m\n\u001b[32m 3045\u001b[39m result = original_write(data, *args, **kwargs)\n\u001b[32m 3046\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28many\u001b[39m(\n\u001b[32m 3047\u001b[39m [\n\u001b[32m-> \u001b[39m\u001b[32m3048\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mdisplay_pub\u001b[49m\u001b[43m.\u001b[49m\u001b[43mis_publishing\u001b[49m,\n self \u001b[34m= \u001b[39m\u001b[34m\u001b[39m\n self.display_pub \u001b[34m= \u001b[39m\u001b[34m\u001b[39m\n self.displayhook \u001b[34m= \u001b[39m\u001b[34m\u001b[39m\n self.showing_traceback \u001b[34m= \u001b[39m\u001b[34mFalse\u001b[39m\u001b[32m 3049\u001b[39m \u001b[38;5;28mself\u001b[39m.displayhook.is_active,\n\u001b[32m 3050\u001b[39m \u001b[38;5;28mself\u001b[39m.showing_traceback,\n\u001b[32m 3051\u001b[39m ]\n\u001b[32m 3052\u001b[39m ):\n\u001b[32m 3053\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m result\n\u001b[32m 3054\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m data:\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/miniforge3/envs/thinkpy/lib/python3.13/site-packages/IPython/core/displaypub.py:150\u001b[39m, in \u001b[36mDisplayPublisher.is_publishing\u001b[39m\u001b[34m(self=)\u001b[39m\n\u001b[32m 147\u001b[39m \u001b[38;5;28mprint\u001b[39m(data[\u001b[33m\"\u001b[39m\u001b[33mtext/plain\u001b[39m\u001b[33m\"\u001b[39m])\n\u001b[32m 148\u001b[39m \u001b[38;5;28mself\u001b[39m._is_publishing = \u001b[38;5;28;01mFalse\u001b[39;00m\n\u001b[32m--> \u001b[39m\u001b[32m150\u001b[39m \u001b[38;5;129m@property\u001b[39m\n\u001b[32m 151\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34mis_publishing\u001b[39m(\u001b[38;5;28mself\u001b[39m):\n\u001b[32m 152\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m._is_publishing\n\u001b[32m 154\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34mclear_output\u001b[39m(\u001b[38;5;28mself\u001b[39m, wait=\u001b[38;5;28;01mFalse\u001b[39;00m):\n", + "\u001b[31mKeyboardInterrupt\u001b[39m: " + ] + } + ], "source": [ "%%expect RecursionError\n", "\n", @@ -2093,12 +158815,20 @@ }, { "cell_type": "code", - "execution_count": 83, + "execution_count": 110, "id": "0bcba5fe", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def is_power(a, b):\n", + " if a == 1:\n", + " return True\n", + " elif a % b == 0 and is_power(a / b, b):\n", + " return True\n", + " else:\n", + " return False\n", + " \n" ] }, { @@ -2113,48 +158843,92 @@ }, { "cell_type": "code", - "execution_count": 84, + "execution_count": 111, "id": "4b6656e6", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 111, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "is_power(65536, 2) # should be True" ] }, { "cell_type": "code", - "execution_count": 85, + "execution_count": 112, "id": "36d9e92a", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 112, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "is_power(27, 3) # should be True" ] }, { "cell_type": "code", - "execution_count": 86, + "execution_count": 113, "id": "1d944b42", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 113, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "is_power(24, 2) # should be False" ] }, { "cell_type": "code", - "execution_count": 87, + "execution_count": 114, "id": "63ec57c9", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 114, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "is_power(1, 17) # should be True" ] @@ -2179,12 +158953,20 @@ }, { "cell_type": "code", - "execution_count": 88, + "execution_count": 126, "id": "4e067bfb", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def gcd(a,b):\n", + " print(a,b)\n", + "\n", + " if b == 0:\n", + " return a\n", + " else:\n", + " r = a % b\n", + " return gcd(b,r)" ] }, { @@ -2199,35 +158981,100 @@ }, { "cell_type": "code", - "execution_count": 89, + "execution_count": 128, "id": "2a7c1c21", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12 8\n", + "8 4\n", + "4 0\n" + ] + }, + { + "data": { + "text/plain": [ + "4" + ] + }, + "execution_count": 128, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "gcd(12, 8) # should be 4" ] }, { "cell_type": "code", - "execution_count": 90, + "execution_count": 129, "id": "5df00229", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13 17\n", + "17 13\n", + "13 4\n", + "4 1\n", + "1 0\n" + ] + }, + { + "data": { + "text/plain": [ + "1" + ] + }, + "execution_count": 129, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "gcd(13, 17) # should be 1" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 130, "id": "8bec38b3", "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "48 18\n", + "18 12\n", + "12 6\n", + "6 0\n" + ] + }, + { + "data": { + "text/plain": [ + "6" + ] + }, + "execution_count": 130, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "gcd(48,18)" + ] }, { "cell_type": "markdown", diff --git a/chapters/chap07.ipynb b/chapters/chap07.ipynb index 9d9c634b..e8aab50f 100644 --- a/chapters/chap07.ipynb +++ b/chapters/chap07.ipynb @@ -69,7 +69,15 @@ "execution_count": 2, "id": "6b8569b8-1576-45d2-99f6-c7a2c7e100c4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0 1 2 " + ] + } + ], "source": [ "for i in range(3):\n", " print(i, end=' ')" @@ -90,7 +98,15 @@ "execution_count": 3, "id": "6cb5b573-601c-42f5-a940-f1a4d244f990", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "G a d s b y " + ] + } + ], "source": [ "for letter in 'Gadsby':\n", " print(letter, end=' ')" @@ -109,14 +125,29 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 5, "id": "7040a890-6619-4ad2-b0bf-b094a5a0e43d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "This word does not have an \"e\"\n", + "This word does not have an \"e\"\n", + "This word does not have an \"e\"\n", + "This word does not have an \"e\"\n", + "This word does not have an \"e\"\n", + "This word does not have an \"e\"\n" + ] + } + ], "source": [ "for letter in \"Gadsby\":\n", " if letter == 'E' or letter == 'e':\n", - " print('This word has an \"e\"')" + " print('This word has an \"e\"')\n", + " else:\n", + " print('This word does not have an \"e\"')" ] }, { @@ -129,7 +160,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 6, "id": "40fd553c-693c-4ffc-8e49-1d7de3c4d4a7", "metadata": {}, "outputs": [], @@ -150,7 +181,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 7, "id": "8a34174b-5a77-482a-8480-14cfdff16339", "metadata": {}, "outputs": [], @@ -172,7 +203,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 8, "id": "0909121d-5218-49ca-b03e-258206f00e40", "metadata": {}, "outputs": [], @@ -194,20 +225,42 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 9, "id": "3c4d8138-ddf6-46fe-a940-a7042617ceb1", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "has_e('Gadsby')" ] }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 10, "id": "5c463051-b737-49ab-a1d7-4be66fd8331f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "has_e('Emma')" ] @@ -235,14 +288,25 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 12, "id": "a7b7ac52-64a6-4dd9-98f5-b772a5e0f161", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'words.txt'" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "download('https://raw.githubusercontent.com/AllenDowney/ThinkPython/v3/words.txt');" + "download('https://raw.githubusercontent.com/AllenDowney/ThinkPython/v3/words.txt')" ] }, { @@ -256,7 +320,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 13, "id": "1ad13ce7-99be-4412-8e0b-978fe6de25f2", "metadata": {}, "outputs": [], @@ -274,10 +338,21 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 14, "id": "dc2054e6-d8e8-4a06-a1ea-5cfcf4ccf1e0", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'aa\\n'" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "file_object.readline()" ] @@ -299,10 +374,21 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 15, "id": "eaea1520-0fb3-4ef3-be6e-9e1cdcccf39f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'aah\\n'" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "line = file_object.readline()\n", "line" @@ -318,10 +404,21 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 16, "id": "f602bfb6-7a93-4fb8-ade6-6784155a6f1a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'aah'" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "word = line.strip()\n", "word" @@ -340,12 +437,113802 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 17, "id": "cf3b8b7e-5fc7-4bb1-b628-09277bdc5a0d", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "aa\n", + "aah\n", + "aahed\n", + "aahing\n", + "aahs\n", + "aal\n", + "aalii\n", + "aaliis\n", + "aals\n", + "aardvark\n", + "aardvarks\n", + "aardwolf\n", + "aardwolves\n", + "aas\n", + "aasvogel\n", + "aasvogels\n", + "aba\n", + "abaca\n", + "abacas\n", + "abaci\n", + "aback\n", + "abacus\n", + "abacuses\n", + "abaft\n", + "abaka\n", + "abakas\n", + "abalone\n", + "abalones\n", + "abamp\n", + "abampere\n", + "abamperes\n", + "abamps\n", + "abandon\n", + "abandoned\n", + "abandoning\n", + "abandonment\n", + "abandonments\n", + "abandons\n", + "abas\n", + "abase\n", + "abased\n", + "abasedly\n", + "abasement\n", + "abasements\n", + "abaser\n", + "abasers\n", + "abases\n", + "abash\n", + "abashed\n", + "abashes\n", + "abashing\n", + "abasing\n", + "abatable\n", + "abate\n", + "abated\n", + "abatement\n", + "abatements\n", + "abater\n", + "abaters\n", + "abates\n", + "abating\n", + "abatis\n", + "abatises\n", + "abator\n", + "abators\n", + "abattis\n", + "abattises\n", + "abattoir\n", + "abattoirs\n", + "abaxial\n", + "abaxile\n", + "abbacies\n", + "abbacy\n", + "abbatial\n", + "abbe\n", + "abbes\n", + "abbess\n", + "abbesses\n", + "abbey\n", + "abbeys\n", + "abbot\n", + "abbotcies\n", + "abbotcy\n", + "abbots\n", + "abbreviate\n", + "abbreviated\n", + "abbreviates\n", + "abbreviating\n", + "abbreviation\n", + "abbreviations\n", + "abdicate\n", + "abdicated\n", + "abdicates\n", + "abdicating\n", + "abdication\n", + "abdications\n", + "abdomen\n", + "abdomens\n", + "abdomina\n", + "abdominal\n", + "abdominally\n", + "abduce\n", + "abduced\n", + "abducens\n", + "abducent\n", + "abducentes\n", + "abduces\n", + "abducing\n", + "abduct\n", + "abducted\n", + "abducting\n", + "abductor\n", + "abductores\n", + "abductors\n", + "abducts\n", + "abeam\n", + "abed\n", + "abele\n", + "abeles\n", + "abelmosk\n", + "abelmosks\n", + "aberrant\n", + "aberrants\n", + "aberration\n", + "aberrations\n", + "abet\n", + "abetment\n", + "abetments\n", + "abets\n", + "abettal\n", + "abettals\n", + "abetted\n", + "abetter\n", + "abetters\n", + "abetting\n", + "abettor\n", + "abettors\n", + "abeyance\n", + "abeyances\n", + "abeyancies\n", + "abeyancy\n", + "abeyant\n", + "abfarad\n", + "abfarads\n", + "abhenries\n", + "abhenry\n", + "abhenrys\n", + "abhor\n", + "abhorred\n", + "abhorrence\n", + "abhorrences\n", + "abhorrent\n", + "abhorrer\n", + "abhorrers\n", + "abhorring\n", + "abhors\n", + "abidance\n", + "abidances\n", + "abide\n", + "abided\n", + "abider\n", + "abiders\n", + "abides\n", + "abiding\n", + "abied\n", + "abies\n", + "abigail\n", + "abigails\n", + "abilities\n", + "ability\n", + "abioses\n", + "abiosis\n", + "abiotic\n", + "abject\n", + "abjectly\n", + "abjectness\n", + "abjectnesses\n", + "abjuration\n", + "abjurations\n", + "abjure\n", + "abjured\n", + "abjurer\n", + "abjurers\n", + "abjures\n", + "abjuring\n", + "ablate\n", + "ablated\n", + "ablates\n", + "ablating\n", + "ablation\n", + "ablations\n", + "ablative\n", + "ablatives\n", + "ablaut\n", + "ablauts\n", + "ablaze\n", + "able\n", + "ablegate\n", + "ablegates\n", + "abler\n", + "ables\n", + "ablest\n", + "ablings\n", + "ablins\n", + "abloom\n", + "abluent\n", + "abluents\n", + "ablush\n", + "abluted\n", + "ablution\n", + "ablutions\n", + "ably\n", + "abmho\n", + "abmhos\n", + "abnegate\n", + "abnegated\n", + "abnegates\n", + "abnegating\n", + "abnegation\n", + "abnegations\n", + "abnormal\n", + "abnormalities\n", + "abnormality\n", + "abnormally\n", + "abnormals\n", + "abo\n", + "aboard\n", + "abode\n", + "aboded\n", + "abodes\n", + "aboding\n", + "abohm\n", + "abohms\n", + "aboideau\n", + "aboideaus\n", + "aboideaux\n", + "aboil\n", + "aboiteau\n", + "aboiteaus\n", + "aboiteaux\n", + "abolish\n", + "abolished\n", + "abolishes\n", + "abolishing\n", + "abolition\n", + "abolitions\n", + "abolla\n", + "abollae\n", + "aboma\n", + "abomas\n", + "abomasa\n", + "abomasal\n", + "abomasi\n", + "abomasum\n", + "abomasus\n", + "abominable\n", + "abominate\n", + "abominated\n", + "abominates\n", + "abominating\n", + "abomination\n", + "abominations\n", + "aboon\n", + "aboral\n", + "aborally\n", + "aboriginal\n", + "aborigine\n", + "aborigines\n", + "aborning\n", + "abort\n", + "aborted\n", + "aborter\n", + "aborters\n", + "aborting\n", + "abortion\n", + "abortions\n", + "abortive\n", + "aborts\n", + "abos\n", + "abought\n", + "aboulia\n", + "aboulias\n", + "aboulic\n", + "abound\n", + "abounded\n", + "abounding\n", + "abounds\n", + "about\n", + "above\n", + "aboveboard\n", + "aboves\n", + "abracadabra\n", + "abradant\n", + "abradants\n", + "abrade\n", + "abraded\n", + "abrader\n", + "abraders\n", + "abrades\n", + "abrading\n", + "abrasion\n", + "abrasions\n", + "abrasive\n", + "abrasively\n", + "abrasiveness\n", + "abrasivenesses\n", + "abrasives\n", + "abreact\n", + "abreacted\n", + "abreacting\n", + "abreacts\n", + "abreast\n", + "abri\n", + "abridge\n", + "abridged\n", + "abridgement\n", + "abridgements\n", + "abridger\n", + "abridgers\n", + "abridges\n", + "abridging\n", + "abridgment\n", + "abridgments\n", + "abris\n", + "abroach\n", + "abroad\n", + "abrogate\n", + "abrogated\n", + "abrogates\n", + "abrogating\n", + "abrupt\n", + "abrupter\n", + "abruptest\n", + "abruptly\n", + "abscess\n", + "abscessed\n", + "abscesses\n", + "abscessing\n", + "abscise\n", + "abscised\n", + "abscises\n", + "abscisin\n", + "abscising\n", + "abscisins\n", + "abscissa\n", + "abscissae\n", + "abscissas\n", + "abscond\n", + "absconded\n", + "absconding\n", + "absconds\n", + "absence\n", + "absences\n", + "absent\n", + "absented\n", + "absentee\n", + "absentees\n", + "absenter\n", + "absenters\n", + "absenting\n", + "absently\n", + "absentminded\n", + "absentmindedly\n", + "absentmindedness\n", + "absentmindednesses\n", + "absents\n", + "absinth\n", + "absinthe\n", + "absinthes\n", + "absinths\n", + "absolute\n", + "absolutely\n", + "absoluter\n", + "absolutes\n", + "absolutest\n", + "absolution\n", + "absolutions\n", + "absolve\n", + "absolved\n", + "absolver\n", + "absolvers\n", + "absolves\n", + "absolving\n", + "absonant\n", + "absorb\n", + "absorbed\n", + "absorbencies\n", + "absorbency\n", + "absorbent\n", + "absorber\n", + "absorbers\n", + "absorbing\n", + "absorbingly\n", + "absorbs\n", + "absorption\n", + "absorptions\n", + "absorptive\n", + "abstain\n", + "abstained\n", + "abstainer\n", + "abstainers\n", + "abstaining\n", + "abstains\n", + "abstemious\n", + "abstemiously\n", + "abstention\n", + "abstentions\n", + "absterge\n", + "absterged\n", + "absterges\n", + "absterging\n", + "abstinence\n", + "abstinences\n", + "abstract\n", + "abstracted\n", + "abstracter\n", + "abstractest\n", + "abstracting\n", + "abstraction\n", + "abstractions\n", + "abstractly\n", + "abstractness\n", + "abstractnesses\n", + "abstracts\n", + "abstrict\n", + "abstricted\n", + "abstricting\n", + "abstricts\n", + "abstruse\n", + "abstrusely\n", + "abstruseness\n", + "abstrusenesses\n", + "abstruser\n", + "abstrusest\n", + "absurd\n", + "absurder\n", + "absurdest\n", + "absurdities\n", + "absurdity\n", + "absurdly\n", + "absurds\n", + "abubble\n", + "abulia\n", + "abulias\n", + "abulic\n", + "abundance\n", + "abundances\n", + "abundant\n", + "abundantly\n", + "abusable\n", + "abuse\n", + "abused\n", + "abuser\n", + "abusers\n", + "abuses\n", + "abusing\n", + "abusive\n", + "abusively\n", + "abusiveness\n", + "abusivenesses\n", + "abut\n", + "abutilon\n", + "abutilons\n", + "abutment\n", + "abutments\n", + "abuts\n", + "abuttal\n", + "abuttals\n", + "abutted\n", + "abutter\n", + "abutters\n", + "abutting\n", + "abuzz\n", + "abvolt\n", + "abvolts\n", + "abwatt\n", + "abwatts\n", + "aby\n", + "abye\n", + "abyed\n", + "abyes\n", + "abying\n", + "abys\n", + "abysm\n", + "abysmal\n", + "abysmally\n", + "abysms\n", + "abyss\n", + "abyssal\n", + "abysses\n", + "acacia\n", + "acacias\n", + "academe\n", + "academes\n", + "academia\n", + "academias\n", + "academic\n", + "academically\n", + "academics\n", + "academies\n", + "academy\n", + "acajou\n", + "acajous\n", + "acaleph\n", + "acalephae\n", + "acalephe\n", + "acalephes\n", + "acalephs\n", + "acanthi\n", + "acanthus\n", + "acanthuses\n", + "acari\n", + "acarid\n", + "acaridan\n", + "acaridans\n", + "acarids\n", + "acarine\n", + "acarines\n", + "acaroid\n", + "acarpous\n", + "acarus\n", + "acaudal\n", + "acaudate\n", + "acauline\n", + "acaulose\n", + "acaulous\n", + "accede\n", + "acceded\n", + "acceder\n", + "acceders\n", + "accedes\n", + "acceding\n", + "accelerate\n", + "accelerated\n", + "accelerates\n", + "accelerating\n", + "acceleration\n", + "accelerations\n", + "accelerator\n", + "accelerators\n", + "accent\n", + "accented\n", + "accenting\n", + "accentor\n", + "accentors\n", + "accents\n", + "accentual\n", + "accentuate\n", + "accentuated\n", + "accentuates\n", + "accentuating\n", + "accentuation\n", + "accentuations\n", + "accept\n", + "acceptabilities\n", + "acceptability\n", + "acceptable\n", + "acceptance\n", + "acceptances\n", + "accepted\n", + "acceptee\n", + "acceptees\n", + "accepter\n", + "accepters\n", + "accepting\n", + "acceptor\n", + "acceptors\n", + "accepts\n", + "access\n", + "accessed\n", + "accesses\n", + "accessibilities\n", + "accessibility\n", + "accessible\n", + "accessing\n", + "accession\n", + "accessions\n", + "accessories\n", + "accessory\n", + "accident\n", + "accidental\n", + "accidentally\n", + "accidentals\n", + "accidents\n", + "accidie\n", + "accidies\n", + "acclaim\n", + "acclaimed\n", + "acclaiming\n", + "acclaims\n", + "acclamation\n", + "acclamations\n", + "acclimate\n", + "acclimated\n", + "acclimates\n", + "acclimating\n", + "acclimation\n", + "acclimations\n", + "acclimatization\n", + "acclimatizations\n", + "acclimatize\n", + "acclimatizes\n", + "accolade\n", + "accolades\n", + "accommodate\n", + "accommodated\n", + "accommodates\n", + "accommodating\n", + "accommodation\n", + "accommodations\n", + "accompanied\n", + "accompanies\n", + "accompaniment\n", + "accompaniments\n", + "accompanist\n", + "accompany\n", + "accompanying\n", + "accomplice\n", + "accomplices\n", + "accomplish\n", + "accomplished\n", + "accomplisher\n", + "accomplishers\n", + "accomplishes\n", + "accomplishing\n", + "accomplishment\n", + "accomplishments\n", + "accord\n", + "accordance\n", + "accordant\n", + "accorded\n", + "accorder\n", + "accorders\n", + "according\n", + "accordingly\n", + "accordion\n", + "accordions\n", + "accords\n", + "accost\n", + "accosted\n", + "accosting\n", + "accosts\n", + "account\n", + "accountabilities\n", + "accountability\n", + "accountable\n", + "accountancies\n", + "accountancy\n", + "accountant\n", + "accountants\n", + "accounted\n", + "accounting\n", + "accountings\n", + "accounts\n", + "accouter\n", + "accoutered\n", + "accoutering\n", + "accouters\n", + "accoutre\n", + "accoutred\n", + "accoutrement\n", + "accoutrements\n", + "accoutres\n", + "accoutring\n", + "accredit\n", + "accredited\n", + "accrediting\n", + "accredits\n", + "accrete\n", + "accreted\n", + "accretes\n", + "accreting\n", + "accrual\n", + "accruals\n", + "accrue\n", + "accrued\n", + "accrues\n", + "accruing\n", + "accumulate\n", + "accumulated\n", + "accumulates\n", + "accumulating\n", + "accumulation\n", + "accumulations\n", + "accumulator\n", + "accumulators\n", + "accuracies\n", + "accuracy\n", + "accurate\n", + "accurately\n", + "accurateness\n", + "accuratenesses\n", + "accursed\n", + "accurst\n", + "accusal\n", + "accusals\n", + "accusant\n", + "accusants\n", + "accusation\n", + "accusations\n", + "accuse\n", + "accused\n", + "accuser\n", + "accusers\n", + "accuses\n", + "accusing\n", + "accustom\n", + "accustomed\n", + "accustoming\n", + "accustoms\n", + "ace\n", + "aced\n", + "acedia\n", + "acedias\n", + "aceldama\n", + "aceldamas\n", + "acentric\n", + "acequia\n", + "acequias\n", + "acerate\n", + "acerated\n", + "acerb\n", + "acerbate\n", + "acerbated\n", + "acerbates\n", + "acerbating\n", + "acerber\n", + "acerbest\n", + "acerbic\n", + "acerbities\n", + "acerbity\n", + "acerola\n", + "acerolas\n", + "acerose\n", + "acerous\n", + "acers\n", + "acervate\n", + "acervuli\n", + "aces\n", + "acescent\n", + "acescents\n", + "aceta\n", + "acetal\n", + "acetals\n", + "acetamid\n", + "acetamids\n", + "acetate\n", + "acetated\n", + "acetates\n", + "acetic\n", + "acetified\n", + "acetifies\n", + "acetify\n", + "acetifying\n", + "acetone\n", + "acetones\n", + "acetonic\n", + "acetose\n", + "acetous\n", + "acetoxyl\n", + "acetoxyls\n", + "acetum\n", + "acetyl\n", + "acetylene\n", + "acetylenes\n", + "acetylic\n", + "acetyls\n", + "ache\n", + "ached\n", + "achene\n", + "achenes\n", + "achenial\n", + "aches\n", + "achier\n", + "achiest\n", + "achievable\n", + "achieve\n", + "achieved\n", + "achievement\n", + "achievements\n", + "achiever\n", + "achievers\n", + "achieves\n", + "achieving\n", + "achiness\n", + "achinesses\n", + "aching\n", + "achingly\n", + "achiote\n", + "achiotes\n", + "achoo\n", + "achromat\n", + "achromats\n", + "achromic\n", + "achy\n", + "acicula\n", + "aciculae\n", + "acicular\n", + "aciculas\n", + "acid\n", + "acidhead\n", + "acidheads\n", + "acidic\n", + "acidified\n", + "acidifies\n", + "acidify\n", + "acidifying\n", + "acidities\n", + "acidity\n", + "acidly\n", + "acidness\n", + "acidnesses\n", + "acidoses\n", + "acidosis\n", + "acidotic\n", + "acids\n", + "acidy\n", + "acierate\n", + "acierated\n", + "acierates\n", + "acierating\n", + "aciform\n", + "acinar\n", + "acing\n", + "acini\n", + "acinic\n", + "acinose\n", + "acinous\n", + "acinus\n", + "acknowledge\n", + "acknowledged\n", + "acknowledgement\n", + "acknowledgements\n", + "acknowledges\n", + "acknowledging\n", + "acknowledgment\n", + "acknowledgments\n", + "aclinic\n", + "acmatic\n", + "acme\n", + "acmes\n", + "acmic\n", + "acne\n", + "acned\n", + "acnes\n", + "acnode\n", + "acnodes\n", + "acock\n", + "acold\n", + "acolyte\n", + "acolytes\n", + "aconite\n", + "aconites\n", + "aconitic\n", + "aconitum\n", + "aconitums\n", + "acorn\n", + "acorns\n", + "acoustic\n", + "acoustical\n", + "acoustically\n", + "acoustics\n", + "acquaint\n", + "acquaintance\n", + "acquaintances\n", + "acquaintanceship\n", + "acquaintanceships\n", + "acquainted\n", + "acquainting\n", + "acquaints\n", + "acquest\n", + "acquests\n", + "acquiesce\n", + "acquiesced\n", + "acquiescence\n", + "acquiescences\n", + "acquiescent\n", + "acquiescently\n", + "acquiesces\n", + "acquiescing\n", + "acquire\n", + "acquired\n", + "acquirer\n", + "acquirers\n", + "acquires\n", + "acquiring\n", + "acquisition\n", + "acquisitions\n", + "acquisitive\n", + "acquit\n", + "acquits\n", + "acquitted\n", + "acquitting\n", + "acrasin\n", + "acrasins\n", + "acre\n", + "acreage\n", + "acreages\n", + "acred\n", + "acres\n", + "acrid\n", + "acrider\n", + "acridest\n", + "acridine\n", + "acridines\n", + "acridities\n", + "acridity\n", + "acridly\n", + "acridness\n", + "acridnesses\n", + "acrimonies\n", + "acrimonious\n", + "acrimony\n", + "acrobat\n", + "acrobatic\n", + "acrobats\n", + "acrodont\n", + "acrodonts\n", + "acrogen\n", + "acrogens\n", + "acrolein\n", + "acroleins\n", + "acrolith\n", + "acroliths\n", + "acromia\n", + "acromial\n", + "acromion\n", + "acronic\n", + "acronym\n", + "acronyms\n", + "across\n", + "acrostic\n", + "acrostics\n", + "acrotic\n", + "acrotism\n", + "acrotisms\n", + "acrylate\n", + "acrylates\n", + "acrylic\n", + "acrylics\n", + "act\n", + "acta\n", + "actable\n", + "acted\n", + "actin\n", + "actinal\n", + "acting\n", + "actings\n", + "actinia\n", + "actiniae\n", + "actinian\n", + "actinians\n", + "actinias\n", + "actinic\n", + "actinide\n", + "actinides\n", + "actinism\n", + "actinisms\n", + "actinium\n", + "actiniums\n", + "actinoid\n", + "actinoids\n", + "actinon\n", + "actinons\n", + "actins\n", + "action\n", + "actions\n", + "activate\n", + "activated\n", + "activates\n", + "activating\n", + "activation\n", + "activations\n", + "active\n", + "actively\n", + "actives\n", + "activism\n", + "activisms\n", + "activist\n", + "activists\n", + "activities\n", + "activity\n", + "actor\n", + "actorish\n", + "actors\n", + "actress\n", + "actresses\n", + "acts\n", + "actual\n", + "actualities\n", + "actuality\n", + "actualization\n", + "actualizations\n", + "actualize\n", + "actualized\n", + "actualizes\n", + "actualizing\n", + "actually\n", + "actuarial\n", + "actuaries\n", + "actuary\n", + "actuate\n", + "actuated\n", + "actuates\n", + "actuating\n", + "actuator\n", + "actuators\n", + "acuate\n", + "acuities\n", + "acuity\n", + "aculeate\n", + "acumen\n", + "acumens\n", + "acupuncture\n", + "acupunctures\n", + "acupuncturist\n", + "acupuncturists\n", + "acutance\n", + "acutances\n", + "acute\n", + "acutely\n", + "acuteness\n", + "acutenesses\n", + "acuter\n", + "acutes\n", + "acutest\n", + "acyclic\n", + "acyl\n", + "acylate\n", + "acylated\n", + "acylates\n", + "acylating\n", + "acyls\n", + "ad\n", + "adage\n", + "adages\n", + "adagial\n", + "adagio\n", + "adagios\n", + "adamance\n", + "adamances\n", + "adamancies\n", + "adamancy\n", + "adamant\n", + "adamantlies\n", + "adamantly\n", + "adamants\n", + "adamsite\n", + "adamsites\n", + "adapt\n", + "adaptabilities\n", + "adaptability\n", + "adaptable\n", + "adaptation\n", + "adaptations\n", + "adapted\n", + "adapter\n", + "adapters\n", + "adapting\n", + "adaption\n", + "adaptions\n", + "adaptive\n", + "adaptor\n", + "adaptors\n", + "adapts\n", + "adaxial\n", + "add\n", + "addable\n", + "addax\n", + "addaxes\n", + "added\n", + "addedly\n", + "addend\n", + "addenda\n", + "addends\n", + "addendum\n", + "adder\n", + "adders\n", + "addible\n", + "addict\n", + "addicted\n", + "addicting\n", + "addiction\n", + "addictions\n", + "addictive\n", + "addicts\n", + "adding\n", + "addition\n", + "additional\n", + "additionally\n", + "additions\n", + "additive\n", + "additives\n", + "addle\n", + "addled\n", + "addles\n", + "addling\n", + "address\n", + "addressable\n", + "addressed\n", + "addresses\n", + "addressing\n", + "addrest\n", + "adds\n", + "adduce\n", + "adduced\n", + "adducent\n", + "adducer\n", + "adducers\n", + "adduces\n", + "adducing\n", + "adduct\n", + "adducted\n", + "adducting\n", + "adductor\n", + "adductors\n", + "adducts\n", + "adeem\n", + "adeemed\n", + "adeeming\n", + "adeems\n", + "adenine\n", + "adenines\n", + "adenitis\n", + "adenitises\n", + "adenoid\n", + "adenoidal\n", + "adenoids\n", + "adenoma\n", + "adenomas\n", + "adenomata\n", + "adenopathy\n", + "adenyl\n", + "adenyls\n", + "adept\n", + "adepter\n", + "adeptest\n", + "adeptly\n", + "adeptness\n", + "adeptnesses\n", + "adepts\n", + "adequacies\n", + "adequacy\n", + "adequate\n", + "adequately\n", + "adhere\n", + "adhered\n", + "adherence\n", + "adherences\n", + "adherend\n", + "adherends\n", + "adherent\n", + "adherents\n", + "adherer\n", + "adherers\n", + "adheres\n", + "adhering\n", + "adhesion\n", + "adhesions\n", + "adhesive\n", + "adhesives\n", + "adhibit\n", + "adhibited\n", + "adhibiting\n", + "adhibits\n", + "adieu\n", + "adieus\n", + "adieux\n", + "adios\n", + "adipic\n", + "adipose\n", + "adiposes\n", + "adiposis\n", + "adipous\n", + "adit\n", + "adits\n", + "adjacent\n", + "adjectival\n", + "adjectivally\n", + "adjective\n", + "adjectives\n", + "adjoin\n", + "adjoined\n", + "adjoining\n", + "adjoins\n", + "adjoint\n", + "adjoints\n", + "adjourn\n", + "adjourned\n", + "adjourning\n", + "adjournment\n", + "adjournments\n", + "adjourns\n", + "adjudge\n", + "adjudged\n", + "adjudges\n", + "adjudging\n", + "adjudicate\n", + "adjudicated\n", + "adjudicates\n", + "adjudicating\n", + "adjudication\n", + "adjudications\n", + "adjunct\n", + "adjuncts\n", + "adjure\n", + "adjured\n", + "adjurer\n", + "adjurers\n", + "adjures\n", + "adjuring\n", + "adjuror\n", + "adjurors\n", + "adjust\n", + "adjustable\n", + "adjusted\n", + "adjuster\n", + "adjusters\n", + "adjusting\n", + "adjustment\n", + "adjustments\n", + "adjustor\n", + "adjustors\n", + "adjusts\n", + "adjutant\n", + "adjutants\n", + "adjuvant\n", + "adjuvants\n", + "adman\n", + "admass\n", + "admen\n", + "administer\n", + "administers\n", + "administrable\n", + "administrant\n", + "administrants\n", + "administration\n", + "administrations\n", + "administrative\n", + "administratively\n", + "administrator\n", + "administrators\n", + "adminstration\n", + "adminstrations\n", + "admiral\n", + "admirals\n", + "admiration\n", + "admirations\n", + "admire\n", + "admired\n", + "admirer\n", + "admirers\n", + "admires\n", + "admiring\n", + "admiringly\n", + "admissibilities\n", + "admissibility\n", + "admissible\n", + "admissibly\n", + "admission\n", + "admissions\n", + "admit\n", + "admits\n", + "admittance\n", + "admittances\n", + "admitted\n", + "admittedly\n", + "admitter\n", + "admitters\n", + "admitting\n", + "admix\n", + "admixed\n", + "admixes\n", + "admixing\n", + "admixt\n", + "admixture\n", + "admixtures\n", + "admonish\n", + "admonished\n", + "admonishes\n", + "admonishing\n", + "adnate\n", + "adnation\n", + "adnations\n", + "adnexa\n", + "adnexal\n", + "adnoun\n", + "adnouns\n", + "ado\n", + "adobe\n", + "adobes\n", + "adolescence\n", + "adolescences\n", + "adolescent\n", + "adolescents\n", + "adopt\n", + "adopted\n", + "adoptee\n", + "adoptees\n", + "adopter\n", + "adopters\n", + "adopting\n", + "adoption\n", + "adoptions\n", + "adoptive\n", + "adopts\n", + "adorable\n", + "adorably\n", + "adoration\n", + "adorations\n", + "adore\n", + "adored\n", + "adorer\n", + "adorers\n", + "adores\n", + "adoring\n", + "adorn\n", + "adorned\n", + "adorner\n", + "adorners\n", + "adorning\n", + "adorns\n", + "ados\n", + "adown\n", + "adoze\n", + "adrenal\n", + "adrenals\n", + "adriamycin\n", + "adrift\n", + "adroit\n", + "adroiter\n", + "adroitest\n", + "adroitly\n", + "adroitness\n", + "adroitnesses\n", + "ads\n", + "adscript\n", + "adscripts\n", + "adsorb\n", + "adsorbed\n", + "adsorbing\n", + "adsorbs\n", + "adularia\n", + "adularias\n", + "adulate\n", + "adulated\n", + "adulates\n", + "adulating\n", + "adulator\n", + "adulators\n", + "adult\n", + "adulterate\n", + "adulterated\n", + "adulterates\n", + "adulterating\n", + "adulteration\n", + "adulterations\n", + "adulterer\n", + "adulterers\n", + "adulteress\n", + "adulteresses\n", + "adulteries\n", + "adulterous\n", + "adultery\n", + "adulthood\n", + "adulthoods\n", + "adultly\n", + "adults\n", + "adumbral\n", + "adunc\n", + "aduncate\n", + "aduncous\n", + "adust\n", + "advance\n", + "advanced\n", + "advancement\n", + "advancements\n", + "advancer\n", + "advancers\n", + "advances\n", + "advancing\n", + "advantage\n", + "advantageous\n", + "advantageously\n", + "advantages\n", + "advent\n", + "adventitious\n", + "adventitiously\n", + "adventitiousness\n", + "adventitiousnesses\n", + "advents\n", + "adventure\n", + "adventurer\n", + "adventurers\n", + "adventures\n", + "adventuresome\n", + "adventurous\n", + "adverb\n", + "adverbially\n", + "adverbs\n", + "adversaries\n", + "adversary\n", + "adverse\n", + "adversity\n", + "advert\n", + "adverted\n", + "adverting\n", + "advertise\n", + "advertised\n", + "advertisement\n", + "advertisements\n", + "advertiser\n", + "advertisers\n", + "advertises\n", + "advertising\n", + "advertisings\n", + "adverts\n", + "advice\n", + "advices\n", + "advisabilities\n", + "advisability\n", + "advisable\n", + "advise\n", + "advised\n", + "advisee\n", + "advisees\n", + "advisement\n", + "advisements\n", + "adviser\n", + "advisers\n", + "advises\n", + "advising\n", + "advisor\n", + "advisories\n", + "advisors\n", + "advisory\n", + "advocacies\n", + "advocacy\n", + "advocate\n", + "advocated\n", + "advocates\n", + "advocating\n", + "advowson\n", + "advowsons\n", + "adynamia\n", + "adynamias\n", + "adynamic\n", + "adyta\n", + "adytum\n", + "adz\n", + "adze\n", + "adzes\n", + "ae\n", + "aecia\n", + "aecial\n", + "aecidia\n", + "aecidium\n", + "aecium\n", + "aedes\n", + "aedile\n", + "aediles\n", + "aedine\n", + "aegis\n", + "aegises\n", + "aeneous\n", + "aeneus\n", + "aeolian\n", + "aeon\n", + "aeonian\n", + "aeonic\n", + "aeons\n", + "aerate\n", + "aerated\n", + "aerates\n", + "aerating\n", + "aeration\n", + "aerations\n", + "aerator\n", + "aerators\n", + "aerial\n", + "aerially\n", + "aerials\n", + "aerie\n", + "aerier\n", + "aeries\n", + "aeriest\n", + "aerified\n", + "aerifies\n", + "aeriform\n", + "aerify\n", + "aerifying\n", + "aerily\n", + "aero\n", + "aerobe\n", + "aerobes\n", + "aerobia\n", + "aerobic\n", + "aerobium\n", + "aeroduct\n", + "aeroducts\n", + "aerodynamic\n", + "aerodynamical\n", + "aerodynamically\n", + "aerodynamics\n", + "aerodyne\n", + "aerodynes\n", + "aerofoil\n", + "aerofoils\n", + "aerogel\n", + "aerogels\n", + "aerogram\n", + "aerograms\n", + "aerolite\n", + "aerolites\n", + "aerolith\n", + "aeroliths\n", + "aerologies\n", + "aerology\n", + "aeronaut\n", + "aeronautic\n", + "aeronautical\n", + "aeronautically\n", + "aeronautics\n", + "aeronauts\n", + "aeronomies\n", + "aeronomy\n", + "aerosol\n", + "aerosols\n", + "aerospace\n", + "aerostat\n", + "aerostats\n", + "aerugo\n", + "aerugos\n", + "aery\n", + "aesthete\n", + "aesthetes\n", + "aesthetic\n", + "aesthetically\n", + "aesthetics\n", + "aestival\n", + "aether\n", + "aetheric\n", + "aethers\n", + "afar\n", + "afars\n", + "afeard\n", + "afeared\n", + "aff\n", + "affabilities\n", + "affability\n", + "affable\n", + "affably\n", + "affair\n", + "affaire\n", + "affaires\n", + "affairs\n", + "affect\n", + "affectation\n", + "affectations\n", + "affected\n", + "affectedly\n", + "affecter\n", + "affecters\n", + "affecting\n", + "affectingly\n", + "affection\n", + "affectionate\n", + "affectionately\n", + "affections\n", + "affects\n", + "afferent\n", + "affiance\n", + "affianced\n", + "affiances\n", + "affiancing\n", + "affiant\n", + "affiants\n", + "affiche\n", + "affiches\n", + "affidavit\n", + "affidavits\n", + "affiliate\n", + "affiliated\n", + "affiliates\n", + "affiliating\n", + "affiliation\n", + "affiliations\n", + "affine\n", + "affined\n", + "affinely\n", + "affines\n", + "affinities\n", + "affinity\n", + "affirm\n", + "affirmation\n", + "affirmations\n", + "affirmative\n", + "affirmatively\n", + "affirmatives\n", + "affirmed\n", + "affirmer\n", + "affirmers\n", + "affirming\n", + "affirms\n", + "affix\n", + "affixal\n", + "affixed\n", + "affixer\n", + "affixers\n", + "affixes\n", + "affixial\n", + "affixing\n", + "afflatus\n", + "afflatuses\n", + "afflict\n", + "afflicted\n", + "afflicting\n", + "affliction\n", + "afflictions\n", + "afflicts\n", + "affluence\n", + "affluences\n", + "affluent\n", + "affluents\n", + "afflux\n", + "affluxes\n", + "afford\n", + "afforded\n", + "affording\n", + "affords\n", + "afforest\n", + "afforested\n", + "afforesting\n", + "afforests\n", + "affray\n", + "affrayed\n", + "affrayer\n", + "affrayers\n", + "affraying\n", + "affrays\n", + "affright\n", + "affrighted\n", + "affrighting\n", + "affrights\n", + "affront\n", + "affronted\n", + "affronting\n", + "affronts\n", + "affusion\n", + "affusions\n", + "afghan\n", + "afghani\n", + "afghanis\n", + "afghans\n", + "afield\n", + "afire\n", + "aflame\n", + "afloat\n", + "aflutter\n", + "afoot\n", + "afore\n", + "afoul\n", + "afraid\n", + "afreet\n", + "afreets\n", + "afresh\n", + "afrit\n", + "afrits\n", + "aft\n", + "after\n", + "afterlife\n", + "afterlifes\n", + "aftermath\n", + "aftermaths\n", + "afternoon\n", + "afternoons\n", + "afters\n", + "aftertax\n", + "afterthought\n", + "afterthoughts\n", + "afterward\n", + "afterwards\n", + "aftmost\n", + "aftosa\n", + "aftosas\n", + "aga\n", + "again\n", + "against\n", + "agalloch\n", + "agallochs\n", + "agalwood\n", + "agalwoods\n", + "agama\n", + "agamas\n", + "agamete\n", + "agametes\n", + "agamic\n", + "agamous\n", + "agapae\n", + "agapai\n", + "agape\n", + "agapeic\n", + "agar\n", + "agaric\n", + "agarics\n", + "agars\n", + "agas\n", + "agate\n", + "agates\n", + "agatize\n", + "agatized\n", + "agatizes\n", + "agatizing\n", + "agatoid\n", + "agave\n", + "agaves\n", + "agaze\n", + "age\n", + "aged\n", + "agedly\n", + "agedness\n", + "agednesses\n", + "agee\n", + "ageing\n", + "ageings\n", + "ageless\n", + "agelong\n", + "agencies\n", + "agency\n", + "agenda\n", + "agendas\n", + "agendum\n", + "agendums\n", + "agene\n", + "agenes\n", + "ageneses\n", + "agenesia\n", + "agenesias\n", + "agenesis\n", + "agenetic\n", + "agenize\n", + "agenized\n", + "agenizes\n", + "agenizing\n", + "agent\n", + "agential\n", + "agentries\n", + "agentry\n", + "agents\n", + "ager\n", + "ageratum\n", + "ageratums\n", + "agers\n", + "ages\n", + "agger\n", + "aggers\n", + "aggie\n", + "aggies\n", + "aggrade\n", + "aggraded\n", + "aggrades\n", + "aggrading\n", + "aggrandize\n", + "aggrandized\n", + "aggrandizement\n", + "aggrandizements\n", + "aggrandizes\n", + "aggrandizing\n", + "aggravate\n", + "aggravates\n", + "aggravation\n", + "aggravations\n", + "aggregate\n", + "aggregated\n", + "aggregates\n", + "aggregating\n", + "aggress\n", + "aggressed\n", + "aggresses\n", + "aggressing\n", + "aggression\n", + "aggressions\n", + "aggressive\n", + "aggressively\n", + "aggressiveness\n", + "aggressivenesses\n", + "aggrieve\n", + "aggrieved\n", + "aggrieves\n", + "aggrieving\n", + "agha\n", + "aghas\n", + "aghast\n", + "agile\n", + "agilely\n", + "agilities\n", + "agility\n", + "agin\n", + "aging\n", + "agings\n", + "aginner\n", + "aginners\n", + "agio\n", + "agios\n", + "agiotage\n", + "agiotages\n", + "agist\n", + "agisted\n", + "agisting\n", + "agists\n", + "agitable\n", + "agitate\n", + "agitated\n", + "agitates\n", + "agitating\n", + "agitation\n", + "agitations\n", + "agitato\n", + "agitator\n", + "agitators\n", + "agitprop\n", + "agitprops\n", + "aglare\n", + "agleam\n", + "aglee\n", + "aglet\n", + "aglets\n", + "agley\n", + "aglimmer\n", + "aglitter\n", + "aglow\n", + "agly\n", + "aglycon\n", + "aglycone\n", + "aglycones\n", + "aglycons\n", + "agma\n", + "agmas\n", + "agminate\n", + "agnail\n", + "agnails\n", + "agnate\n", + "agnates\n", + "agnatic\n", + "agnation\n", + "agnations\n", + "agnize\n", + "agnized\n", + "agnizes\n", + "agnizing\n", + "agnomen\n", + "agnomens\n", + "agnomina\n", + "agnostic\n", + "agnostics\n", + "ago\n", + "agog\n", + "agon\n", + "agonal\n", + "agone\n", + "agones\n", + "agonic\n", + "agonies\n", + "agonise\n", + "agonised\n", + "agonises\n", + "agonising\n", + "agonist\n", + "agonists\n", + "agonize\n", + "agonized\n", + "agonizes\n", + "agonizing\n", + "agonizingly\n", + "agons\n", + "agony\n", + "agora\n", + "agorae\n", + "agoras\n", + "agorot\n", + "agoroth\n", + "agouti\n", + "agouties\n", + "agoutis\n", + "agouty\n", + "agrafe\n", + "agrafes\n", + "agraffe\n", + "agraffes\n", + "agrapha\n", + "agraphia\n", + "agraphias\n", + "agraphic\n", + "agrarian\n", + "agrarianism\n", + "agrarianisms\n", + "agrarians\n", + "agree\n", + "agreeable\n", + "agreeableness\n", + "agreeablenesses\n", + "agreed\n", + "agreeing\n", + "agreement\n", + "agreements\n", + "agrees\n", + "agrestal\n", + "agrestic\n", + "agricultural\n", + "agriculturalist\n", + "agriculturalists\n", + "agriculture\n", + "agricultures\n", + "agriculturist\n", + "agriculturists\n", + "agrimonies\n", + "agrimony\n", + "agrologies\n", + "agrology\n", + "agronomies\n", + "agronomy\n", + "aground\n", + "ague\n", + "aguelike\n", + "agues\n", + "agueweed\n", + "agueweeds\n", + "aguish\n", + "aguishly\n", + "ah\n", + "aha\n", + "ahchoo\n", + "ahead\n", + "ahem\n", + "ahimsa\n", + "ahimsas\n", + "ahold\n", + "aholds\n", + "ahorse\n", + "ahoy\n", + "ahoys\n", + "ahull\n", + "ai\n", + "aiblins\n", + "aid\n", + "aide\n", + "aided\n", + "aider\n", + "aiders\n", + "aides\n", + "aidful\n", + "aiding\n", + "aidless\n", + "aidman\n", + "aidmen\n", + "aids\n", + "aiglet\n", + "aiglets\n", + "aigret\n", + "aigrets\n", + "aigrette\n", + "aigrettes\n", + "aiguille\n", + "aiguilles\n", + "aikido\n", + "aikidos\n", + "ail\n", + "ailed\n", + "aileron\n", + "ailerons\n", + "ailing\n", + "ailment\n", + "ailments\n", + "ails\n", + "aim\n", + "aimed\n", + "aimer\n", + "aimers\n", + "aimful\n", + "aimfully\n", + "aiming\n", + "aimless\n", + "aimlessly\n", + "aimlessness\n", + "aimlessnesses\n", + "aims\n", + "ain\n", + "aine\n", + "ainee\n", + "ains\n", + "ainsell\n", + "ainsells\n", + "air\n", + "airboat\n", + "airboats\n", + "airborne\n", + "airbound\n", + "airbrush\n", + "airbrushed\n", + "airbrushes\n", + "airbrushing\n", + "airburst\n", + "airbursts\n", + "airbus\n", + "airbuses\n", + "airbusses\n", + "aircoach\n", + "aircoaches\n", + "aircondition\n", + "airconditioned\n", + "airconditioning\n", + "airconditions\n", + "aircraft\n", + "aircrew\n", + "aircrews\n", + "airdrome\n", + "airdromes\n", + "airdrop\n", + "airdropped\n", + "airdropping\n", + "airdrops\n", + "aired\n", + "airer\n", + "airest\n", + "airfield\n", + "airfields\n", + "airflow\n", + "airflows\n", + "airfoil\n", + "airfoils\n", + "airframe\n", + "airframes\n", + "airglow\n", + "airglows\n", + "airhead\n", + "airheads\n", + "airier\n", + "airiest\n", + "airily\n", + "airiness\n", + "airinesses\n", + "airing\n", + "airings\n", + "airless\n", + "airlift\n", + "airlifted\n", + "airlifting\n", + "airlifts\n", + "airlike\n", + "airline\n", + "airliner\n", + "airliners\n", + "airlines\n", + "airmail\n", + "airmailed\n", + "airmailing\n", + "airmails\n", + "airman\n", + "airmen\n", + "airn\n", + "airns\n", + "airpark\n", + "airparks\n", + "airplane\n", + "airplanes\n", + "airport\n", + "airports\n", + "airpost\n", + "airposts\n", + "airproof\n", + "airproofed\n", + "airproofing\n", + "airproofs\n", + "airs\n", + "airscrew\n", + "airscrews\n", + "airship\n", + "airships\n", + "airsick\n", + "airspace\n", + "airspaces\n", + "airspeed\n", + "airspeeds\n", + "airstrip\n", + "airstrips\n", + "airt\n", + "airted\n", + "airth\n", + "airthed\n", + "airthing\n", + "airths\n", + "airtight\n", + "airting\n", + "airts\n", + "airward\n", + "airwave\n", + "airwaves\n", + "airway\n", + "airways\n", + "airwise\n", + "airwoman\n", + "airwomen\n", + "airy\n", + "ais\n", + "aisle\n", + "aisled\n", + "aisles\n", + "ait\n", + "aitch\n", + "aitches\n", + "aits\n", + "aiver\n", + "aivers\n", + "ajar\n", + "ajee\n", + "ajiva\n", + "ajivas\n", + "ajowan\n", + "ajowans\n", + "akee\n", + "akees\n", + "akela\n", + "akelas\n", + "akene\n", + "akenes\n", + "akimbo\n", + "akin\n", + "akvavit\n", + "akvavits\n", + "ala\n", + "alabaster\n", + "alabasters\n", + "alack\n", + "alacrities\n", + "alacrity\n", + "alae\n", + "alameda\n", + "alamedas\n", + "alamo\n", + "alamode\n", + "alamodes\n", + "alamos\n", + "alan\n", + "aland\n", + "alands\n", + "alane\n", + "alang\n", + "alanin\n", + "alanine\n", + "alanines\n", + "alanins\n", + "alans\n", + "alant\n", + "alants\n", + "alanyl\n", + "alanyls\n", + "alar\n", + "alarm\n", + "alarmed\n", + "alarming\n", + "alarmism\n", + "alarmisms\n", + "alarmist\n", + "alarmists\n", + "alarms\n", + "alarum\n", + "alarumed\n", + "alaruming\n", + "alarums\n", + "alary\n", + "alas\n", + "alaska\n", + "alaskas\n", + "alastor\n", + "alastors\n", + "alate\n", + "alated\n", + "alation\n", + "alations\n", + "alb\n", + "alba\n", + "albacore\n", + "albacores\n", + "albas\n", + "albata\n", + "albatas\n", + "albatross\n", + "albatrosses\n", + "albedo\n", + "albedos\n", + "albeit\n", + "albicore\n", + "albicores\n", + "albinal\n", + "albinic\n", + "albinism\n", + "albinisms\n", + "albino\n", + "albinos\n", + "albite\n", + "albites\n", + "albitic\n", + "albs\n", + "album\n", + "albumen\n", + "albumens\n", + "albumin\n", + "albumins\n", + "albumose\n", + "albumoses\n", + "albums\n", + "alburnum\n", + "alburnums\n", + "alcade\n", + "alcades\n", + "alcahest\n", + "alcahests\n", + "alcaic\n", + "alcaics\n", + "alcaide\n", + "alcaides\n", + "alcalde\n", + "alcaldes\n", + "alcayde\n", + "alcaydes\n", + "alcazar\n", + "alcazars\n", + "alchemic\n", + "alchemical\n", + "alchemies\n", + "alchemist\n", + "alchemists\n", + "alchemy\n", + "alchymies\n", + "alchymy\n", + "alcidine\n", + "alcohol\n", + "alcoholic\n", + "alcoholics\n", + "alcoholism\n", + "alcoholisms\n", + "alcohols\n", + "alcove\n", + "alcoved\n", + "alcoves\n", + "aldehyde\n", + "aldehydes\n", + "alder\n", + "alderman\n", + "aldermen\n", + "alders\n", + "aldol\n", + "aldolase\n", + "aldolases\n", + "aldols\n", + "aldose\n", + "aldoses\n", + "aldovandi\n", + "aldrin\n", + "aldrins\n", + "ale\n", + "aleatory\n", + "alec\n", + "alecs\n", + "alee\n", + "alef\n", + "alefs\n", + "alegar\n", + "alegars\n", + "alehouse\n", + "alehouses\n", + "alembic\n", + "alembics\n", + "aleph\n", + "alephs\n", + "alert\n", + "alerted\n", + "alerter\n", + "alertest\n", + "alerting\n", + "alertly\n", + "alertness\n", + "alertnesses\n", + "alerts\n", + "ales\n", + "aleuron\n", + "aleurone\n", + "aleurones\n", + "aleurons\n", + "alevin\n", + "alevins\n", + "alewife\n", + "alewives\n", + "alexia\n", + "alexias\n", + "alexin\n", + "alexine\n", + "alexines\n", + "alexins\n", + "alfa\n", + "alfaki\n", + "alfakis\n", + "alfalfa\n", + "alfalfas\n", + "alfaqui\n", + "alfaquin\n", + "alfaquins\n", + "alfaquis\n", + "alfas\n", + "alforja\n", + "alforjas\n", + "alfresco\n", + "alga\n", + "algae\n", + "algal\n", + "algaroba\n", + "algarobas\n", + "algas\n", + "algebra\n", + "algebraic\n", + "algebraically\n", + "algebras\n", + "algerine\n", + "algerines\n", + "algicide\n", + "algicides\n", + "algid\n", + "algidities\n", + "algidity\n", + "algin\n", + "alginate\n", + "alginates\n", + "algins\n", + "algoid\n", + "algologies\n", + "algology\n", + "algor\n", + "algorism\n", + "algorisms\n", + "algorithm\n", + "algorithms\n", + "algors\n", + "algum\n", + "algums\n", + "alias\n", + "aliases\n", + "alibi\n", + "alibied\n", + "alibies\n", + "alibiing\n", + "alibis\n", + "alible\n", + "alidad\n", + "alidade\n", + "alidades\n", + "alidads\n", + "alien\n", + "alienage\n", + "alienages\n", + "alienate\n", + "alienated\n", + "alienates\n", + "alienating\n", + "alienation\n", + "alienations\n", + "aliened\n", + "alienee\n", + "alienees\n", + "aliener\n", + "alieners\n", + "aliening\n", + "alienism\n", + "alienisms\n", + "alienist\n", + "alienists\n", + "alienly\n", + "alienor\n", + "alienors\n", + "aliens\n", + "alif\n", + "aliform\n", + "alifs\n", + "alight\n", + "alighted\n", + "alighting\n", + "alights\n", + "align\n", + "aligned\n", + "aligner\n", + "aligners\n", + "aligning\n", + "alignment\n", + "alignments\n", + "aligns\n", + "alike\n", + "aliment\n", + "alimentary\n", + "alimentation\n", + "alimented\n", + "alimenting\n", + "aliments\n", + "alimonies\n", + "alimony\n", + "aline\n", + "alined\n", + "aliner\n", + "aliners\n", + "alines\n", + "alining\n", + "aliped\n", + "alipeds\n", + "aliquant\n", + "aliquot\n", + "aliquots\n", + "alist\n", + "alit\n", + "aliunde\n", + "alive\n", + "aliyah\n", + "aliyahs\n", + "alizarin\n", + "alizarins\n", + "alkahest\n", + "alkahests\n", + "alkali\n", + "alkalic\n", + "alkalies\n", + "alkalified\n", + "alkalifies\n", + "alkalify\n", + "alkalifying\n", + "alkalin\n", + "alkaline\n", + "alkalinities\n", + "alkalinity\n", + "alkalis\n", + "alkalise\n", + "alkalised\n", + "alkalises\n", + "alkalising\n", + "alkalize\n", + "alkalized\n", + "alkalizes\n", + "alkalizing\n", + "alkaloid\n", + "alkaloids\n", + "alkane\n", + "alkanes\n", + "alkanet\n", + "alkanets\n", + "alkene\n", + "alkenes\n", + "alkine\n", + "alkines\n", + "alkoxy\n", + "alkyd\n", + "alkyds\n", + "alkyl\n", + "alkylate\n", + "alkylated\n", + "alkylates\n", + "alkylating\n", + "alkylic\n", + "alkyls\n", + "alkyne\n", + "alkynes\n", + "all\n", + "allanite\n", + "allanites\n", + "allay\n", + "allayed\n", + "allayer\n", + "allayers\n", + "allaying\n", + "allays\n", + "allegation\n", + "allegations\n", + "allege\n", + "alleged\n", + "allegedly\n", + "alleger\n", + "allegers\n", + "alleges\n", + "allegiance\n", + "allegiances\n", + "alleging\n", + "allegorical\n", + "allegories\n", + "allegory\n", + "allegro\n", + "allegros\n", + "allele\n", + "alleles\n", + "allelic\n", + "allelism\n", + "allelisms\n", + "alleluia\n", + "alleluias\n", + "allergen\n", + "allergenic\n", + "allergens\n", + "allergic\n", + "allergies\n", + "allergin\n", + "allergins\n", + "allergist\n", + "allergists\n", + "allergy\n", + "alleviate\n", + "alleviated\n", + "alleviates\n", + "alleviating\n", + "alleviation\n", + "alleviations\n", + "alley\n", + "alleys\n", + "alleyway\n", + "alleyways\n", + "allheal\n", + "allheals\n", + "alliable\n", + "alliance\n", + "alliances\n", + "allied\n", + "allies\n", + "alligator\n", + "alligators\n", + "alliteration\n", + "alliterations\n", + "alliterative\n", + "allium\n", + "alliums\n", + "allobar\n", + "allobars\n", + "allocate\n", + "allocated\n", + "allocates\n", + "allocating\n", + "allocation\n", + "allocations\n", + "allod\n", + "allodia\n", + "allodial\n", + "allodium\n", + "allods\n", + "allogamies\n", + "allogamy\n", + "allonge\n", + "allonges\n", + "allonym\n", + "allonyms\n", + "allopath\n", + "allopaths\n", + "allopurinol\n", + "allot\n", + "allotment\n", + "allotments\n", + "allots\n", + "allotted\n", + "allottee\n", + "allottees\n", + "allotter\n", + "allotters\n", + "allotting\n", + "allotype\n", + "allotypes\n", + "allotypies\n", + "allotypy\n", + "allover\n", + "allovers\n", + "allow\n", + "allowable\n", + "allowance\n", + "allowances\n", + "allowed\n", + "allowing\n", + "allows\n", + "alloxan\n", + "alloxans\n", + "alloy\n", + "alloyed\n", + "alloying\n", + "alloys\n", + "alls\n", + "allseed\n", + "allseeds\n", + "allspice\n", + "allspices\n", + "allude\n", + "alluded\n", + "alludes\n", + "alluding\n", + "allure\n", + "allured\n", + "allurement\n", + "allurements\n", + "allurer\n", + "allurers\n", + "allures\n", + "alluring\n", + "allusion\n", + "allusions\n", + "allusive\n", + "allusively\n", + "allusiveness\n", + "allusivenesses\n", + "alluvia\n", + "alluvial\n", + "alluvials\n", + "alluvion\n", + "alluvions\n", + "alluvium\n", + "alluviums\n", + "ally\n", + "allying\n", + "allyl\n", + "allylic\n", + "allyls\n", + "alma\n", + "almagest\n", + "almagests\n", + "almah\n", + "almahs\n", + "almanac\n", + "almanacs\n", + "almas\n", + "alme\n", + "almeh\n", + "almehs\n", + "almemar\n", + "almemars\n", + "almes\n", + "almighty\n", + "almner\n", + "almners\n", + "almond\n", + "almonds\n", + "almoner\n", + "almoners\n", + "almonries\n", + "almonry\n", + "almost\n", + "alms\n", + "almsman\n", + "almsmen\n", + "almuce\n", + "almuces\n", + "almud\n", + "almude\n", + "almudes\n", + "almuds\n", + "almug\n", + "almugs\n", + "alnico\n", + "alnicoes\n", + "alodia\n", + "alodial\n", + "alodium\n", + "aloe\n", + "aloes\n", + "aloetic\n", + "aloft\n", + "alogical\n", + "aloha\n", + "alohas\n", + "aloin\n", + "aloins\n", + "alone\n", + "along\n", + "alongside\n", + "aloof\n", + "aloofly\n", + "alopecia\n", + "alopecias\n", + "alopecic\n", + "aloud\n", + "alow\n", + "alp\n", + "alpaca\n", + "alpacas\n", + "alpha\n", + "alphabet\n", + "alphabeted\n", + "alphabetic\n", + "alphabetical\n", + "alphabetically\n", + "alphabeting\n", + "alphabetize\n", + "alphabetized\n", + "alphabetizer\n", + "alphabetizers\n", + "alphabetizes\n", + "alphabetizing\n", + "alphabets\n", + "alphanumeric\n", + "alphanumerics\n", + "alphas\n", + "alphorn\n", + "alphorns\n", + "alphosis\n", + "alphosises\n", + "alphyl\n", + "alphyls\n", + "alpine\n", + "alpinely\n", + "alpines\n", + "alpinism\n", + "alpinisms\n", + "alpinist\n", + "alpinists\n", + "alps\n", + "already\n", + "alright\n", + "alsike\n", + "alsikes\n", + "also\n", + "alt\n", + "altar\n", + "altars\n", + "alter\n", + "alterant\n", + "alterants\n", + "alteration\n", + "alterations\n", + "altercation\n", + "altercations\n", + "altered\n", + "alterer\n", + "alterers\n", + "altering\n", + "alternate\n", + "alternated\n", + "alternates\n", + "alternating\n", + "alternation\n", + "alternations\n", + "alternative\n", + "alternatively\n", + "alternatives\n", + "alternator\n", + "alternators\n", + "alters\n", + "althaea\n", + "althaeas\n", + "althea\n", + "altheas\n", + "altho\n", + "althorn\n", + "althorns\n", + "although\n", + "altimeter\n", + "altimeters\n", + "altitude\n", + "altitudes\n", + "alto\n", + "altogether\n", + "altos\n", + "altruism\n", + "altruisms\n", + "altruist\n", + "altruistic\n", + "altruistically\n", + "altruists\n", + "alts\n", + "aludel\n", + "aludels\n", + "alula\n", + "alulae\n", + "alular\n", + "alum\n", + "alumin\n", + "alumina\n", + "aluminas\n", + "alumine\n", + "alumines\n", + "aluminic\n", + "alumins\n", + "aluminum\n", + "aluminums\n", + "alumna\n", + "alumnae\n", + "alumni\n", + "alumnus\n", + "alumroot\n", + "alumroots\n", + "alums\n", + "alunite\n", + "alunites\n", + "alveolar\n", + "alveolars\n", + "alveoli\n", + "alveolus\n", + "alvine\n", + "alway\n", + "always\n", + "alyssum\n", + "alyssums\n", + "am\n", + "ama\n", + "amadavat\n", + "amadavats\n", + "amadou\n", + "amadous\n", + "amah\n", + "amahs\n", + "amain\n", + "amalgam\n", + "amalgamate\n", + "amalgamated\n", + "amalgamates\n", + "amalgamating\n", + "amalgamation\n", + "amalgamations\n", + "amalgams\n", + "amandine\n", + "amanita\n", + "amanitas\n", + "amanuensis\n", + "amaranth\n", + "amaranths\n", + "amarelle\n", + "amarelles\n", + "amarna\n", + "amaryllis\n", + "amaryllises\n", + "amas\n", + "amass\n", + "amassed\n", + "amasser\n", + "amassers\n", + "amasses\n", + "amassing\n", + "amateur\n", + "amateurish\n", + "amateurism\n", + "amateurisms\n", + "amateurs\n", + "amative\n", + "amatol\n", + "amatols\n", + "amatory\n", + "amaze\n", + "amazed\n", + "amazedly\n", + "amazement\n", + "amazements\n", + "amazes\n", + "amazing\n", + "amazingly\n", + "amazon\n", + "amazonian\n", + "amazons\n", + "ambage\n", + "ambages\n", + "ambari\n", + "ambaries\n", + "ambaris\n", + "ambary\n", + "ambassador\n", + "ambassadorial\n", + "ambassadors\n", + "ambassadorship\n", + "ambassadorships\n", + "ambeer\n", + "ambeers\n", + "amber\n", + "ambergris\n", + "ambergrises\n", + "amberies\n", + "amberoid\n", + "amberoids\n", + "ambers\n", + "ambery\n", + "ambiance\n", + "ambiances\n", + "ambidextrous\n", + "ambidextrously\n", + "ambience\n", + "ambiences\n", + "ambient\n", + "ambients\n", + "ambiguities\n", + "ambiguity\n", + "ambiguous\n", + "ambit\n", + "ambition\n", + "ambitioned\n", + "ambitioning\n", + "ambitions\n", + "ambitious\n", + "ambitiously\n", + "ambits\n", + "ambivalence\n", + "ambivalences\n", + "ambivalent\n", + "ambivert\n", + "ambiverts\n", + "amble\n", + "ambled\n", + "ambler\n", + "amblers\n", + "ambles\n", + "ambling\n", + "ambo\n", + "amboina\n", + "amboinas\n", + "ambones\n", + "ambos\n", + "amboyna\n", + "amboynas\n", + "ambries\n", + "ambroid\n", + "ambroids\n", + "ambrosia\n", + "ambrosias\n", + "ambry\n", + "ambsace\n", + "ambsaces\n", + "ambulance\n", + "ambulances\n", + "ambulant\n", + "ambulate\n", + "ambulated\n", + "ambulates\n", + "ambulating\n", + "ambulation\n", + "ambulatory\n", + "ambush\n", + "ambushed\n", + "ambusher\n", + "ambushers\n", + "ambushes\n", + "ambushing\n", + "ameba\n", + "amebae\n", + "ameban\n", + "amebas\n", + "amebean\n", + "amebic\n", + "ameboid\n", + "ameer\n", + "ameerate\n", + "ameerates\n", + "ameers\n", + "amelcorn\n", + "amelcorns\n", + "ameliorate\n", + "ameliorated\n", + "ameliorates\n", + "ameliorating\n", + "amelioration\n", + "ameliorations\n", + "amen\n", + "amenable\n", + "amenably\n", + "amend\n", + "amended\n", + "amender\n", + "amenders\n", + "amending\n", + "amendment\n", + "amendments\n", + "amends\n", + "amenities\n", + "amenity\n", + "amens\n", + "ament\n", + "amentia\n", + "amentias\n", + "aments\n", + "amerce\n", + "amerced\n", + "amercer\n", + "amercers\n", + "amerces\n", + "amercing\n", + "amesace\n", + "amesaces\n", + "amethyst\n", + "amethysts\n", + "ami\n", + "amia\n", + "amiabilities\n", + "amiability\n", + "amiable\n", + "amiably\n", + "amiantus\n", + "amiantuses\n", + "amias\n", + "amicable\n", + "amicably\n", + "amice\n", + "amices\n", + "amid\n", + "amidase\n", + "amidases\n", + "amide\n", + "amides\n", + "amidic\n", + "amidin\n", + "amidins\n", + "amido\n", + "amidogen\n", + "amidogens\n", + "amidol\n", + "amidols\n", + "amids\n", + "amidship\n", + "amidst\n", + "amie\n", + "amies\n", + "amiga\n", + "amigas\n", + "amigo\n", + "amigos\n", + "amin\n", + "amine\n", + "amines\n", + "aminic\n", + "aminities\n", + "aminity\n", + "amino\n", + "amins\n", + "amir\n", + "amirate\n", + "amirates\n", + "amirs\n", + "amis\n", + "amiss\n", + "amities\n", + "amitoses\n", + "amitosis\n", + "amitotic\n", + "amitrole\n", + "amitroles\n", + "amity\n", + "ammeter\n", + "ammeters\n", + "ammine\n", + "ammines\n", + "ammino\n", + "ammo\n", + "ammocete\n", + "ammocetes\n", + "ammonal\n", + "ammonals\n", + "ammonia\n", + "ammoniac\n", + "ammoniacs\n", + "ammonias\n", + "ammonic\n", + "ammonified\n", + "ammonifies\n", + "ammonify\n", + "ammonifying\n", + "ammonite\n", + "ammonites\n", + "ammonium\n", + "ammoniums\n", + "ammonoid\n", + "ammonoids\n", + "ammos\n", + "ammunition\n", + "ammunitions\n", + "amnesia\n", + "amnesiac\n", + "amnesiacs\n", + "amnesias\n", + "amnesic\n", + "amnesics\n", + "amnestic\n", + "amnestied\n", + "amnesties\n", + "amnesty\n", + "amnestying\n", + "amnia\n", + "amnic\n", + "amnion\n", + "amnionic\n", + "amnions\n", + "amniote\n", + "amniotes\n", + "amniotic\n", + "amoeba\n", + "amoebae\n", + "amoeban\n", + "amoebas\n", + "amoebean\n", + "amoebic\n", + "amoeboid\n", + "amok\n", + "amoks\n", + "amole\n", + "amoles\n", + "among\n", + "amongst\n", + "amoral\n", + "amorally\n", + "amoretti\n", + "amoretto\n", + "amorettos\n", + "amorini\n", + "amorino\n", + "amorist\n", + "amorists\n", + "amoroso\n", + "amorous\n", + "amorously\n", + "amorousness\n", + "amorousnesses\n", + "amorphous\n", + "amort\n", + "amortise\n", + "amortised\n", + "amortises\n", + "amortising\n", + "amortization\n", + "amortizations\n", + "amortize\n", + "amortized\n", + "amortizes\n", + "amortizing\n", + "amotion\n", + "amotions\n", + "amount\n", + "amounted\n", + "amounting\n", + "amounts\n", + "amour\n", + "amours\n", + "amp\n", + "amperage\n", + "amperages\n", + "ampere\n", + "amperes\n", + "ampersand\n", + "ampersands\n", + "amphibia\n", + "amphibian\n", + "amphibians\n", + "amphibious\n", + "amphioxi\n", + "amphipod\n", + "amphipods\n", + "amphitheater\n", + "amphitheaters\n", + "amphora\n", + "amphorae\n", + "amphoral\n", + "amphoras\n", + "ample\n", + "ampler\n", + "amplest\n", + "amplification\n", + "amplifications\n", + "amplified\n", + "amplifier\n", + "amplifiers\n", + "amplifies\n", + "amplify\n", + "amplifying\n", + "amplitude\n", + "amplitudes\n", + "amply\n", + "ampoule\n", + "ampoules\n", + "amps\n", + "ampul\n", + "ampule\n", + "ampules\n", + "ampulla\n", + "ampullae\n", + "ampullar\n", + "ampuls\n", + "amputate\n", + "amputated\n", + "amputates\n", + "amputating\n", + "amputation\n", + "amputations\n", + "amputee\n", + "amputees\n", + "amreeta\n", + "amreetas\n", + "amrita\n", + "amritas\n", + "amtrac\n", + "amtrack\n", + "amtracks\n", + "amtracs\n", + "amu\n", + "amuck\n", + "amucks\n", + "amulet\n", + "amulets\n", + "amus\n", + "amusable\n", + "amuse\n", + "amused\n", + "amusedly\n", + "amusement\n", + "amusements\n", + "amuser\n", + "amusers\n", + "amuses\n", + "amusing\n", + "amusive\n", + "amygdala\n", + "amygdalae\n", + "amygdale\n", + "amygdales\n", + "amygdule\n", + "amygdules\n", + "amyl\n", + "amylase\n", + "amylases\n", + "amylene\n", + "amylenes\n", + "amylic\n", + "amyloid\n", + "amyloids\n", + "amylose\n", + "amyloses\n", + "amyls\n", + "amylum\n", + "amylums\n", + "an\n", + "ana\n", + "anabaena\n", + "anabaenas\n", + "anabas\n", + "anabases\n", + "anabasis\n", + "anabatic\n", + "anableps\n", + "anablepses\n", + "anabolic\n", + "anachronism\n", + "anachronisms\n", + "anachronistic\n", + "anaconda\n", + "anacondas\n", + "anadem\n", + "anadems\n", + "anaemia\n", + "anaemias\n", + "anaemic\n", + "anaerobe\n", + "anaerobes\n", + "anaesthesiology\n", + "anaesthetic\n", + "anaesthetics\n", + "anaglyph\n", + "anaglyphs\n", + "anagoge\n", + "anagoges\n", + "anagogic\n", + "anagogies\n", + "anagogy\n", + "anagram\n", + "anagrammed\n", + "anagramming\n", + "anagrams\n", + "anal\n", + "analcime\n", + "analcimes\n", + "analcite\n", + "analcites\n", + "analecta\n", + "analects\n", + "analemma\n", + "analemmas\n", + "analemmata\n", + "analgesic\n", + "analgesics\n", + "analgia\n", + "analgias\n", + "analities\n", + "anality\n", + "anally\n", + "analog\n", + "analogic\n", + "analogical\n", + "analogically\n", + "analogies\n", + "analogously\n", + "analogs\n", + "analogue\n", + "analogues\n", + "analogy\n", + "analyse\n", + "analysed\n", + "analyser\n", + "analysers\n", + "analyses\n", + "analysing\n", + "analysis\n", + "analyst\n", + "analysts\n", + "analytic\n", + "analytical\n", + "analyzable\n", + "analyze\n", + "analyzed\n", + "analyzer\n", + "analyzers\n", + "analyzes\n", + "analyzing\n", + "ananke\n", + "anankes\n", + "anapaest\n", + "anapaests\n", + "anapest\n", + "anapests\n", + "anaphase\n", + "anaphases\n", + "anaphora\n", + "anaphoras\n", + "anaphylactic\n", + "anarch\n", + "anarchic\n", + "anarchies\n", + "anarchism\n", + "anarchisms\n", + "anarchist\n", + "anarchistic\n", + "anarchists\n", + "anarchs\n", + "anarchy\n", + "anarthria\n", + "anas\n", + "anasarca\n", + "anasarcas\n", + "anatase\n", + "anatases\n", + "anathema\n", + "anathemas\n", + "anathemata\n", + "anatomic\n", + "anatomical\n", + "anatomically\n", + "anatomies\n", + "anatomist\n", + "anatomists\n", + "anatomy\n", + "anatoxin\n", + "anatoxins\n", + "anatto\n", + "anattos\n", + "ancestor\n", + "ancestors\n", + "ancestral\n", + "ancestress\n", + "ancestresses\n", + "ancestries\n", + "ancestry\n", + "anchor\n", + "anchorage\n", + "anchorages\n", + "anchored\n", + "anchoret\n", + "anchorets\n", + "anchoring\n", + "anchorman\n", + "anchormen\n", + "anchors\n", + "anchovies\n", + "anchovy\n", + "anchusa\n", + "anchusas\n", + "anchusin\n", + "anchusins\n", + "ancient\n", + "ancienter\n", + "ancientest\n", + "ancients\n", + "ancilla\n", + "ancillae\n", + "ancillary\n", + "ancillas\n", + "ancon\n", + "anconal\n", + "ancone\n", + "anconeal\n", + "ancones\n", + "anconoid\n", + "ancress\n", + "ancresses\n", + "and\n", + "andante\n", + "andantes\n", + "anded\n", + "andesite\n", + "andesites\n", + "andesyte\n", + "andesytes\n", + "andiron\n", + "andirons\n", + "androgen\n", + "androgens\n", + "androgynous\n", + "android\n", + "androids\n", + "ands\n", + "ane\n", + "anear\n", + "aneared\n", + "anearing\n", + "anears\n", + "anecdota\n", + "anecdotal\n", + "anecdote\n", + "anecdotes\n", + "anechoic\n", + "anele\n", + "aneled\n", + "aneles\n", + "aneling\n", + "anemia\n", + "anemias\n", + "anemic\n", + "anemone\n", + "anemones\n", + "anenst\n", + "anent\n", + "anergia\n", + "anergias\n", + "anergic\n", + "anergies\n", + "anergy\n", + "aneroid\n", + "aneroids\n", + "anes\n", + "anesthesia\n", + "anesthesias\n", + "anesthetic\n", + "anesthetics\n", + "anesthetist\n", + "anesthetists\n", + "anesthetize\n", + "anesthetized\n", + "anesthetizes\n", + "anesthetizing\n", + "anestri\n", + "anestrus\n", + "anethol\n", + "anethole\n", + "anetholes\n", + "anethols\n", + "aneurism\n", + "aneurisms\n", + "aneurysm\n", + "aneurysms\n", + "anew\n", + "anga\n", + "angaria\n", + "angarias\n", + "angaries\n", + "angary\n", + "angas\n", + "angel\n", + "angelic\n", + "angelica\n", + "angelical\n", + "angelically\n", + "angelicas\n", + "angels\n", + "angelus\n", + "angeluses\n", + "anger\n", + "angered\n", + "angering\n", + "angerly\n", + "angers\n", + "angina\n", + "anginal\n", + "anginas\n", + "anginose\n", + "anginous\n", + "angioma\n", + "angiomas\n", + "angiomata\n", + "angle\n", + "angled\n", + "anglepod\n", + "anglepods\n", + "angler\n", + "anglers\n", + "angles\n", + "angleworm\n", + "angleworms\n", + "anglice\n", + "angling\n", + "anglings\n", + "angora\n", + "angoras\n", + "angrier\n", + "angriest\n", + "angrily\n", + "angry\n", + "angst\n", + "angstrom\n", + "angstroms\n", + "angsts\n", + "anguine\n", + "anguish\n", + "anguished\n", + "anguishes\n", + "anguishing\n", + "angular\n", + "angularities\n", + "angularity\n", + "angulate\n", + "angulated\n", + "angulates\n", + "angulating\n", + "angulose\n", + "angulous\n", + "anhinga\n", + "anhingas\n", + "ani\n", + "anil\n", + "anile\n", + "anilin\n", + "aniline\n", + "anilines\n", + "anilins\n", + "anilities\n", + "anility\n", + "anils\n", + "anima\n", + "animal\n", + "animally\n", + "animals\n", + "animas\n", + "animate\n", + "animated\n", + "animater\n", + "animaters\n", + "animates\n", + "animating\n", + "animation\n", + "animations\n", + "animato\n", + "animator\n", + "animators\n", + "anime\n", + "animes\n", + "animi\n", + "animis\n", + "animism\n", + "animisms\n", + "animist\n", + "animists\n", + "animosities\n", + "animosity\n", + "animus\n", + "animuses\n", + "anion\n", + "anionic\n", + "anions\n", + "anis\n", + "anise\n", + "aniseed\n", + "aniseeds\n", + "anises\n", + "anisette\n", + "anisettes\n", + "anisic\n", + "anisole\n", + "anisoles\n", + "ankerite\n", + "ankerites\n", + "ankh\n", + "ankhs\n", + "ankle\n", + "anklebone\n", + "anklebones\n", + "ankles\n", + "anklet\n", + "anklets\n", + "ankus\n", + "ankuses\n", + "ankush\n", + "ankushes\n", + "ankylose\n", + "ankylosed\n", + "ankyloses\n", + "ankylosing\n", + "anlace\n", + "anlaces\n", + "anlage\n", + "anlagen\n", + "anlages\n", + "anlas\n", + "anlases\n", + "anna\n", + "annal\n", + "annalist\n", + "annalists\n", + "annals\n", + "annas\n", + "annates\n", + "annatto\n", + "annattos\n", + "anneal\n", + "annealed\n", + "annealer\n", + "annealers\n", + "annealing\n", + "anneals\n", + "annelid\n", + "annelids\n", + "annex\n", + "annexation\n", + "annexations\n", + "annexe\n", + "annexed\n", + "annexes\n", + "annexing\n", + "annihilate\n", + "annihilated\n", + "annihilates\n", + "annihilating\n", + "annihilation\n", + "annihilations\n", + "anniversaries\n", + "anniversary\n", + "annotate\n", + "annotated\n", + "annotates\n", + "annotating\n", + "annotation\n", + "annotations\n", + "annotator\n", + "annotators\n", + "announce\n", + "announced\n", + "announcement\n", + "announcements\n", + "announcer\n", + "announcers\n", + "announces\n", + "announcing\n", + "annoy\n", + "annoyance\n", + "annoyances\n", + "annoyed\n", + "annoyer\n", + "annoyers\n", + "annoying\n", + "annoyingly\n", + "annoys\n", + "annual\n", + "annually\n", + "annuals\n", + "annuities\n", + "annuity\n", + "annul\n", + "annular\n", + "annulate\n", + "annulet\n", + "annulets\n", + "annuli\n", + "annulled\n", + "annulling\n", + "annulment\n", + "annulments\n", + "annulose\n", + "annuls\n", + "annulus\n", + "annuluses\n", + "anoa\n", + "anoas\n", + "anodal\n", + "anodally\n", + "anode\n", + "anodes\n", + "anodic\n", + "anodically\n", + "anodize\n", + "anodized\n", + "anodizes\n", + "anodizing\n", + "anodyne\n", + "anodynes\n", + "anodynic\n", + "anoint\n", + "anointed\n", + "anointer\n", + "anointers\n", + "anointing\n", + "anointment\n", + "anointments\n", + "anoints\n", + "anole\n", + "anoles\n", + "anolyte\n", + "anolytes\n", + "anomalies\n", + "anomalous\n", + "anomaly\n", + "anomic\n", + "anomie\n", + "anomies\n", + "anomy\n", + "anon\n", + "anonym\n", + "anonymities\n", + "anonymity\n", + "anonymous\n", + "anonymously\n", + "anonyms\n", + "anoopsia\n", + "anoopsias\n", + "anopia\n", + "anopias\n", + "anopsia\n", + "anopsias\n", + "anorak\n", + "anoraks\n", + "anoretic\n", + "anorexia\n", + "anorexias\n", + "anorexies\n", + "anorexy\n", + "anorthic\n", + "anosmia\n", + "anosmias\n", + "anosmic\n", + "another\n", + "anoxemia\n", + "anoxemias\n", + "anoxemic\n", + "anoxia\n", + "anoxias\n", + "anoxic\n", + "ansa\n", + "ansae\n", + "ansate\n", + "ansated\n", + "anserine\n", + "anserines\n", + "anserous\n", + "answer\n", + "answerable\n", + "answered\n", + "answerer\n", + "answerers\n", + "answering\n", + "answers\n", + "ant\n", + "anta\n", + "antacid\n", + "antacids\n", + "antae\n", + "antagonism\n", + "antagonisms\n", + "antagonist\n", + "antagonistic\n", + "antagonists\n", + "antagonize\n", + "antagonized\n", + "antagonizes\n", + "antagonizing\n", + "antalgic\n", + "antalgics\n", + "antarctic\n", + "antas\n", + "ante\n", + "anteater\n", + "anteaters\n", + "antebellum\n", + "antecede\n", + "anteceded\n", + "antecedent\n", + "antecedents\n", + "antecedes\n", + "anteceding\n", + "anted\n", + "antedate\n", + "antedated\n", + "antedates\n", + "antedating\n", + "anteed\n", + "antefix\n", + "antefixa\n", + "antefixes\n", + "anteing\n", + "antelope\n", + "antelopes\n", + "antenna\n", + "antennae\n", + "antennal\n", + "antennas\n", + "antepast\n", + "antepasts\n", + "anterior\n", + "anteroom\n", + "anterooms\n", + "antes\n", + "antetype\n", + "antetypes\n", + "antevert\n", + "anteverted\n", + "anteverting\n", + "anteverts\n", + "anthelia\n", + "anthelices\n", + "anthelix\n", + "anthem\n", + "anthemed\n", + "anthemia\n", + "antheming\n", + "anthems\n", + "anther\n", + "antheral\n", + "antherid\n", + "antherids\n", + "anthers\n", + "antheses\n", + "anthesis\n", + "anthill\n", + "anthills\n", + "anthodia\n", + "anthoid\n", + "anthologies\n", + "anthology\n", + "anthraces\n", + "anthracite\n", + "anthracites\n", + "anthrax\n", + "anthropoid\n", + "anthropological\n", + "anthropologist\n", + "anthropologists\n", + "anthropology\n", + "anti\n", + "antiabortion\n", + "antiacademic\n", + "antiadministration\n", + "antiaggression\n", + "antiaggressive\n", + "antiaircraft\n", + "antialien\n", + "antianarchic\n", + "antianarchist\n", + "antiannexation\n", + "antiapartheid\n", + "antiar\n", + "antiarin\n", + "antiarins\n", + "antiaristocrat\n", + "antiaristocratic\n", + "antiars\n", + "antiatheism\n", + "antiatheist\n", + "antiauthoritarian\n", + "antibacterial\n", + "antibiotic\n", + "antibiotics\n", + "antiblack\n", + "antibodies\n", + "antibody\n", + "antibourgeois\n", + "antiboxing\n", + "antiboycott\n", + "antibureaucratic\n", + "antiburglar\n", + "antiburglary\n", + "antibusiness\n", + "antic\n", + "anticancer\n", + "anticapitalism\n", + "anticapitalist\n", + "anticapitalistic\n", + "anticensorship\n", + "antichurch\n", + "anticigarette\n", + "anticipate\n", + "anticipated\n", + "anticipates\n", + "anticipating\n", + "anticipation\n", + "anticipations\n", + "anticipatory\n", + "antick\n", + "anticked\n", + "anticking\n", + "anticks\n", + "anticlerical\n", + "anticlimactic\n", + "anticlimax\n", + "anticlimaxes\n", + "anticly\n", + "anticollision\n", + "anticolonial\n", + "anticommunism\n", + "anticommunist\n", + "anticonservation\n", + "anticonservationist\n", + "anticonsumer\n", + "anticonventional\n", + "anticorrosive\n", + "anticorruption\n", + "anticrime\n", + "anticruelty\n", + "antics\n", + "anticultural\n", + "antidandruff\n", + "antidemocratic\n", + "antidiscrimination\n", + "antidote\n", + "antidotes\n", + "antidumping\n", + "antieavesdropping\n", + "antiemetic\n", + "antiemetics\n", + "antiestablishment\n", + "antievolution\n", + "antievolutionary\n", + "antifanatic\n", + "antifascism\n", + "antifascist\n", + "antifat\n", + "antifatigue\n", + "antifemale\n", + "antifeminine\n", + "antifeminism\n", + "antifeminist\n", + "antifertility\n", + "antiforeign\n", + "antiforeigner\n", + "antifraud\n", + "antifreeze\n", + "antifreezes\n", + "antifungus\n", + "antigambling\n", + "antigen\n", + "antigene\n", + "antigenes\n", + "antigens\n", + "antiglare\n", + "antigonorrheal\n", + "antigovernment\n", + "antigraft\n", + "antiguerilla\n", + "antihero\n", + "antiheroes\n", + "antihijack\n", + "antihistamine\n", + "antihistamines\n", + "antihomosexual\n", + "antihuman\n", + "antihumanism\n", + "antihumanistic\n", + "antihumanity\n", + "antihunting\n", + "antijamming\n", + "antiking\n", + "antikings\n", + "antilabor\n", + "antiliberal\n", + "antiliberalism\n", + "antilitter\n", + "antilittering\n", + "antilog\n", + "antilogies\n", + "antilogs\n", + "antilogy\n", + "antilynching\n", + "antimanagement\n", + "antimask\n", + "antimasks\n", + "antimaterialism\n", + "antimaterialist\n", + "antimaterialistic\n", + "antimere\n", + "antimeres\n", + "antimicrobial\n", + "antimilitarism\n", + "antimilitarist\n", + "antimilitaristic\n", + "antimilitary\n", + "antimiscegenation\n", + "antimonies\n", + "antimonopolist\n", + "antimonopoly\n", + "antimony\n", + "antimosquito\n", + "anting\n", + "antings\n", + "antinode\n", + "antinodes\n", + "antinoise\n", + "antinomies\n", + "antinomy\n", + "antiobesity\n", + "antipapal\n", + "antipathies\n", + "antipathy\n", + "antipersonnel\n", + "antiphon\n", + "antiphons\n", + "antipode\n", + "antipodes\n", + "antipole\n", + "antipoles\n", + "antipolice\n", + "antipollution\n", + "antipope\n", + "antipopes\n", + "antipornographic\n", + "antipornography\n", + "antipoverty\n", + "antiprofiteering\n", + "antiprogressive\n", + "antiprostitution\n", + "antipyic\n", + "antipyics\n", + "antipyretic\n", + "antiquarian\n", + "antiquarianism\n", + "antiquarians\n", + "antiquaries\n", + "antiquary\n", + "antiquated\n", + "antique\n", + "antiqued\n", + "antiquer\n", + "antiquers\n", + "antiques\n", + "antiquing\n", + "antiquities\n", + "antiquity\n", + "antirabies\n", + "antiracing\n", + "antiracketeering\n", + "antiradical\n", + "antirealism\n", + "antirealistic\n", + "antirecession\n", + "antireform\n", + "antireligious\n", + "antirepublican\n", + "antirevolutionary\n", + "antirobbery\n", + "antiromantic\n", + "antirust\n", + "antirusts\n", + "antis\n", + "antisegregation\n", + "antiseptic\n", + "antiseptically\n", + "antiseptics\n", + "antisera\n", + "antisexist\n", + "antisexual\n", + "antishoplifting\n", + "antiskid\n", + "antislavery\n", + "antismog\n", + "antismoking\n", + "antismuggling\n", + "antispending\n", + "antistrike\n", + "antistudent\n", + "antisubmarine\n", + "antisubversion\n", + "antisubversive\n", + "antisuicide\n", + "antisyphillis\n", + "antitank\n", + "antitax\n", + "antitechnological\n", + "antitechnology\n", + "antiterrorism\n", + "antiterrorist\n", + "antitheft\n", + "antitheses\n", + "antithesis\n", + "antitobacco\n", + "antitotalitarian\n", + "antitoxin\n", + "antitraditional\n", + "antitrust\n", + "antituberculosis\n", + "antitumor\n", + "antitype\n", + "antitypes\n", + "antityphoid\n", + "antiulcer\n", + "antiunemployment\n", + "antiunion\n", + "antiuniversity\n", + "antiurban\n", + "antivandalism\n", + "antiviolence\n", + "antiviral\n", + "antivivisection\n", + "antiwar\n", + "antiwhite\n", + "antiwiretapping\n", + "antiwoman\n", + "antler\n", + "antlered\n", + "antlers\n", + "antlike\n", + "antlion\n", + "antlions\n", + "antonym\n", + "antonymies\n", + "antonyms\n", + "antonymy\n", + "antra\n", + "antral\n", + "antre\n", + "antres\n", + "antrorse\n", + "antrum\n", + "ants\n", + "anuran\n", + "anurans\n", + "anureses\n", + "anuresis\n", + "anuretic\n", + "anuria\n", + "anurias\n", + "anuric\n", + "anurous\n", + "anus\n", + "anuses\n", + "anvil\n", + "anviled\n", + "anviling\n", + "anvilled\n", + "anvilling\n", + "anvils\n", + "anviltop\n", + "anviltops\n", + "anxieties\n", + "anxiety\n", + "anxious\n", + "anxiously\n", + "any\n", + "anybodies\n", + "anybody\n", + "anyhow\n", + "anymore\n", + "anyone\n", + "anyplace\n", + "anything\n", + "anythings\n", + "anytime\n", + "anyway\n", + "anyways\n", + "anywhere\n", + "anywheres\n", + "anywise\n", + "aorist\n", + "aoristic\n", + "aorists\n", + "aorta\n", + "aortae\n", + "aortal\n", + "aortas\n", + "aortic\n", + "aoudad\n", + "aoudads\n", + "apace\n", + "apache\n", + "apaches\n", + "apagoge\n", + "apagoges\n", + "apagogic\n", + "apanage\n", + "apanages\n", + "aparejo\n", + "aparejos\n", + "apart\n", + "apartheid\n", + "apartheids\n", + "apatetic\n", + "apathetic\n", + "apathetically\n", + "apathies\n", + "apathy\n", + "apatite\n", + "apatites\n", + "ape\n", + "apeak\n", + "aped\n", + "apeek\n", + "apelike\n", + "aper\n", + "apercu\n", + "apercus\n", + "aperient\n", + "aperients\n", + "aperies\n", + "aperitif\n", + "aperitifs\n", + "apers\n", + "aperture\n", + "apertures\n", + "apery\n", + "apes\n", + "apetalies\n", + "apetaly\n", + "apex\n", + "apexes\n", + "aphagia\n", + "aphagias\n", + "aphanite\n", + "aphanites\n", + "aphasia\n", + "aphasiac\n", + "aphasiacs\n", + "aphasias\n", + "aphasic\n", + "aphasics\n", + "aphelia\n", + "aphelian\n", + "aphelion\n", + "apheses\n", + "aphesis\n", + "aphetic\n", + "aphid\n", + "aphides\n", + "aphidian\n", + "aphidians\n", + "aphids\n", + "aphis\n", + "apholate\n", + "apholates\n", + "aphonia\n", + "aphonias\n", + "aphonic\n", + "aphonics\n", + "aphorise\n", + "aphorised\n", + "aphorises\n", + "aphorising\n", + "aphorism\n", + "aphorisms\n", + "aphorist\n", + "aphoristic\n", + "aphorists\n", + "aphorize\n", + "aphorized\n", + "aphorizes\n", + "aphorizing\n", + "aphotic\n", + "aphrodisiac\n", + "aphtha\n", + "aphthae\n", + "aphthous\n", + "aphyllies\n", + "aphylly\n", + "apian\n", + "apiarian\n", + "apiarians\n", + "apiaries\n", + "apiarist\n", + "apiarists\n", + "apiary\n", + "apical\n", + "apically\n", + "apices\n", + "apiculi\n", + "apiculus\n", + "apiece\n", + "apimania\n", + "apimanias\n", + "aping\n", + "apiologies\n", + "apiology\n", + "apish\n", + "apishly\n", + "aplasia\n", + "aplasias\n", + "aplastic\n", + "aplenty\n", + "aplite\n", + "aplites\n", + "aplitic\n", + "aplomb\n", + "aplombs\n", + "apnea\n", + "apneal\n", + "apneas\n", + "apneic\n", + "apnoea\n", + "apnoeal\n", + "apnoeas\n", + "apnoeic\n", + "apocalypse\n", + "apocalypses\n", + "apocalyptic\n", + "apocalyptical\n", + "apocarp\n", + "apocarpies\n", + "apocarps\n", + "apocarpy\n", + "apocope\n", + "apocopes\n", + "apocopic\n", + "apocrine\n", + "apocrypha\n", + "apocryphal\n", + "apodal\n", + "apodoses\n", + "apodosis\n", + "apodous\n", + "apogamic\n", + "apogamies\n", + "apogamy\n", + "apogeal\n", + "apogean\n", + "apogee\n", + "apogees\n", + "apogeic\n", + "apollo\n", + "apollos\n", + "apolog\n", + "apologal\n", + "apologetic\n", + "apologetically\n", + "apologia\n", + "apologiae\n", + "apologias\n", + "apologies\n", + "apologist\n", + "apologize\n", + "apologized\n", + "apologizes\n", + "apologizing\n", + "apologs\n", + "apologue\n", + "apologues\n", + "apology\n", + "apolune\n", + "apolunes\n", + "apomict\n", + "apomicts\n", + "apomixes\n", + "apomixis\n", + "apophyge\n", + "apophyges\n", + "apoplectic\n", + "apoplexies\n", + "apoplexy\n", + "aport\n", + "apostacies\n", + "apostacy\n", + "apostasies\n", + "apostasy\n", + "apostate\n", + "apostates\n", + "apostil\n", + "apostils\n", + "apostle\n", + "apostles\n", + "apostleship\n", + "apostolic\n", + "apostrophe\n", + "apostrophes\n", + "apothecaries\n", + "apothecary\n", + "apothece\n", + "apotheces\n", + "apothegm\n", + "apothegms\n", + "apothem\n", + "apothems\n", + "appal\n", + "appall\n", + "appalled\n", + "appalling\n", + "appalls\n", + "appals\n", + "appanage\n", + "appanages\n", + "apparat\n", + "apparats\n", + "apparatus\n", + "apparatuses\n", + "apparel\n", + "appareled\n", + "appareling\n", + "apparelled\n", + "apparelling\n", + "apparels\n", + "apparent\n", + "apparently\n", + "apparition\n", + "apparitions\n", + "appeal\n", + "appealed\n", + "appealer\n", + "appealers\n", + "appealing\n", + "appeals\n", + "appear\n", + "appearance\n", + "appearances\n", + "appeared\n", + "appearing\n", + "appears\n", + "appease\n", + "appeased\n", + "appeasement\n", + "appeasements\n", + "appeaser\n", + "appeasers\n", + "appeases\n", + "appeasing\n", + "appel\n", + "appellee\n", + "appellees\n", + "appellor\n", + "appellors\n", + "appels\n", + "append\n", + "appendage\n", + "appendages\n", + "appendectomies\n", + "appendectomy\n", + "appended\n", + "appendices\n", + "appendicitis\n", + "appending\n", + "appendix\n", + "appendixes\n", + "appends\n", + "appestat\n", + "appestats\n", + "appetent\n", + "appetite\n", + "appetites\n", + "appetizer\n", + "appetizers\n", + "appetizing\n", + "appetizingly\n", + "applaud\n", + "applauded\n", + "applauding\n", + "applauds\n", + "applause\n", + "applauses\n", + "apple\n", + "applejack\n", + "applejacks\n", + "apples\n", + "applesauce\n", + "appliance\n", + "applicabilities\n", + "applicability\n", + "applicable\n", + "applicancies\n", + "applicancy\n", + "applicant\n", + "applicants\n", + "application\n", + "applications\n", + "applicator\n", + "applicators\n", + "applied\n", + "applier\n", + "appliers\n", + "applies\n", + "applique\n", + "appliqued\n", + "appliqueing\n", + "appliques\n", + "apply\n", + "applying\n", + "appoint\n", + "appointed\n", + "appointing\n", + "appointment\n", + "appointments\n", + "appoints\n", + "apportion\n", + "apportioned\n", + "apportioning\n", + "apportionment\n", + "apportionments\n", + "apportions\n", + "appose\n", + "apposed\n", + "apposer\n", + "apposers\n", + "apposes\n", + "apposing\n", + "apposite\n", + "appositely\n", + "appraisal\n", + "appraisals\n", + "appraise\n", + "appraised\n", + "appraiser\n", + "appraisers\n", + "appraises\n", + "appraising\n", + "appreciable\n", + "appreciably\n", + "appreciate\n", + "appreciated\n", + "appreciates\n", + "appreciating\n", + "appreciation\n", + "appreciations\n", + "appreciative\n", + "apprehend\n", + "apprehended\n", + "apprehending\n", + "apprehends\n", + "apprehension\n", + "apprehensions\n", + "apprehensive\n", + "apprehensively\n", + "apprehensiveness\n", + "apprehensivenesses\n", + "apprentice\n", + "apprenticed\n", + "apprentices\n", + "apprenticeship\n", + "apprenticeships\n", + "apprenticing\n", + "apprise\n", + "apprised\n", + "appriser\n", + "apprisers\n", + "apprises\n", + "apprising\n", + "apprize\n", + "apprized\n", + "apprizer\n", + "apprizers\n", + "apprizes\n", + "apprizing\n", + "approach\n", + "approachable\n", + "approached\n", + "approaches\n", + "approaching\n", + "approbation\n", + "appropriate\n", + "appropriated\n", + "appropriately\n", + "appropriateness\n", + "appropriates\n", + "appropriating\n", + "appropriation\n", + "appropriations\n", + "approval\n", + "approvals\n", + "approve\n", + "approved\n", + "approver\n", + "approvers\n", + "approves\n", + "approving\n", + "approximate\n", + "approximated\n", + "approximately\n", + "approximates\n", + "approximating\n", + "approximation\n", + "approximations\n", + "appulse\n", + "appulses\n", + "appurtenance\n", + "appurtenances\n", + "appurtenant\n", + "apractic\n", + "apraxia\n", + "apraxias\n", + "apraxic\n", + "apricot\n", + "apricots\n", + "apron\n", + "aproned\n", + "aproning\n", + "aprons\n", + "apropos\n", + "apse\n", + "apses\n", + "apsidal\n", + "apsides\n", + "apsis\n", + "apt\n", + "apter\n", + "apteral\n", + "apterous\n", + "apteryx\n", + "apteryxes\n", + "aptest\n", + "aptitude\n", + "aptitudes\n", + "aptly\n", + "aptness\n", + "aptnesses\n", + "apyrase\n", + "apyrases\n", + "apyretic\n", + "aqua\n", + "aquacade\n", + "aquacades\n", + "aquae\n", + "aquamarine\n", + "aquamarines\n", + "aquanaut\n", + "aquanauts\n", + "aquaria\n", + "aquarial\n", + "aquarian\n", + "aquarians\n", + "aquarist\n", + "aquarists\n", + "aquarium\n", + "aquariums\n", + "aquas\n", + "aquatic\n", + "aquatics\n", + "aquatint\n", + "aquatinted\n", + "aquatinting\n", + "aquatints\n", + "aquatone\n", + "aquatones\n", + "aquavit\n", + "aquavits\n", + "aqueduct\n", + "aqueducts\n", + "aqueous\n", + "aquifer\n", + "aquifers\n", + "aquiline\n", + "aquiver\n", + "ar\n", + "arabesk\n", + "arabesks\n", + "arabesque\n", + "arabesques\n", + "arabize\n", + "arabized\n", + "arabizes\n", + "arabizing\n", + "arable\n", + "arables\n", + "araceous\n", + "arachnid\n", + "arachnids\n", + "arak\n", + "araks\n", + "araneid\n", + "araneids\n", + "arapaima\n", + "arapaimas\n", + "araroba\n", + "ararobas\n", + "arbalest\n", + "arbalests\n", + "arbalist\n", + "arbalists\n", + "arbiter\n", + "arbiters\n", + "arbitral\n", + "arbitrarily\n", + "arbitrariness\n", + "arbitrarinesses\n", + "arbitrary\n", + "arbitrate\n", + "arbitrated\n", + "arbitrates\n", + "arbitrating\n", + "arbitration\n", + "arbitrations\n", + "arbitrator\n", + "arbitrators\n", + "arbor\n", + "arboreal\n", + "arbored\n", + "arbores\n", + "arboreta\n", + "arborist\n", + "arborists\n", + "arborize\n", + "arborized\n", + "arborizes\n", + "arborizing\n", + "arborous\n", + "arbors\n", + "arbour\n", + "arboured\n", + "arbours\n", + "arbuscle\n", + "arbuscles\n", + "arbute\n", + "arbutean\n", + "arbutes\n", + "arbutus\n", + "arbutuses\n", + "arc\n", + "arcade\n", + "arcaded\n", + "arcades\n", + "arcadia\n", + "arcadian\n", + "arcadians\n", + "arcadias\n", + "arcading\n", + "arcadings\n", + "arcana\n", + "arcane\n", + "arcanum\n", + "arcature\n", + "arcatures\n", + "arced\n", + "arch\n", + "archaeological\n", + "archaeologies\n", + "archaeologist\n", + "archaeologists\n", + "archaeology\n", + "archaic\n", + "archaically\n", + "archaise\n", + "archaised\n", + "archaises\n", + "archaising\n", + "archaism\n", + "archaisms\n", + "archaist\n", + "archaists\n", + "archaize\n", + "archaized\n", + "archaizes\n", + "archaizing\n", + "archangel\n", + "archangels\n", + "archbishop\n", + "archbishopric\n", + "archbishoprics\n", + "archbishops\n", + "archdiocese\n", + "archdioceses\n", + "archduke\n", + "archdukes\n", + "arched\n", + "archeologies\n", + "archeology\n", + "archer\n", + "archeries\n", + "archers\n", + "archery\n", + "arches\n", + "archetype\n", + "archetypes\n", + "archil\n", + "archils\n", + "archine\n", + "archines\n", + "arching\n", + "archings\n", + "archipelago\n", + "archipelagos\n", + "architect\n", + "architects\n", + "architectural\n", + "architecture\n", + "architectures\n", + "archival\n", + "archive\n", + "archived\n", + "archives\n", + "archiving\n", + "archly\n", + "archness\n", + "archnesses\n", + "archon\n", + "archons\n", + "archway\n", + "archways\n", + "arciform\n", + "arcing\n", + "arcked\n", + "arcking\n", + "arco\n", + "arcs\n", + "arctic\n", + "arctics\n", + "arcuate\n", + "arcuated\n", + "arcus\n", + "arcuses\n", + "ardeb\n", + "ardebs\n", + "ardencies\n", + "ardency\n", + "ardent\n", + "ardently\n", + "ardor\n", + "ardors\n", + "ardour\n", + "ardours\n", + "arduous\n", + "arduously\n", + "arduousness\n", + "arduousnesses\n", + "are\n", + "area\n", + "areae\n", + "areal\n", + "areally\n", + "areas\n", + "areaway\n", + "areaways\n", + "areca\n", + "arecas\n", + "areic\n", + "arena\n", + "arenas\n", + "arenose\n", + "arenous\n", + "areola\n", + "areolae\n", + "areolar\n", + "areolas\n", + "areolate\n", + "areole\n", + "areoles\n", + "areologies\n", + "areology\n", + "ares\n", + "arete\n", + "aretes\n", + "arethusa\n", + "arethusas\n", + "arf\n", + "argal\n", + "argali\n", + "argalis\n", + "argals\n", + "argent\n", + "argental\n", + "argentic\n", + "argents\n", + "argentum\n", + "argentums\n", + "argil\n", + "argils\n", + "arginase\n", + "arginases\n", + "arginine\n", + "arginines\n", + "argle\n", + "argled\n", + "argles\n", + "argling\n", + "argol\n", + "argols\n", + "argon\n", + "argonaut\n", + "argonauts\n", + "argons\n", + "argosies\n", + "argosy\n", + "argot\n", + "argotic\n", + "argots\n", + "arguable\n", + "arguably\n", + "argue\n", + "argued\n", + "arguer\n", + "arguers\n", + "argues\n", + "argufied\n", + "argufier\n", + "argufiers\n", + "argufies\n", + "argufy\n", + "argufying\n", + "arguing\n", + "argument\n", + "argumentative\n", + "arguments\n", + "argus\n", + "arguses\n", + "argyle\n", + "argyles\n", + "argyll\n", + "argylls\n", + "arhat\n", + "arhats\n", + "aria\n", + "arias\n", + "arid\n", + "arider\n", + "aridest\n", + "aridities\n", + "aridity\n", + "aridly\n", + "aridness\n", + "aridnesses\n", + "ariel\n", + "ariels\n", + "arietta\n", + "ariettas\n", + "ariette\n", + "ariettes\n", + "aright\n", + "aril\n", + "ariled\n", + "arillate\n", + "arillode\n", + "arillodes\n", + "arilloid\n", + "arils\n", + "ariose\n", + "ariosi\n", + "arioso\n", + "ariosos\n", + "arise\n", + "arisen\n", + "arises\n", + "arising\n", + "arista\n", + "aristae\n", + "aristas\n", + "aristate\n", + "aristocracies\n", + "aristocracy\n", + "aristocrat\n", + "aristocratic\n", + "aristocrats\n", + "arithmetic\n", + "arithmetical\n", + "ark\n", + "arks\n", + "arles\n", + "arm\n", + "armada\n", + "armadas\n", + "armadillo\n", + "armadillos\n", + "armament\n", + "armaments\n", + "armature\n", + "armatured\n", + "armatures\n", + "armaturing\n", + "armband\n", + "armbands\n", + "armchair\n", + "armchairs\n", + "armed\n", + "armer\n", + "armers\n", + "armet\n", + "armets\n", + "armful\n", + "armfuls\n", + "armhole\n", + "armholes\n", + "armies\n", + "armiger\n", + "armigero\n", + "armigeros\n", + "armigers\n", + "armilla\n", + "armillae\n", + "armillas\n", + "arming\n", + "armings\n", + "armless\n", + "armlet\n", + "armlets\n", + "armlike\n", + "armload\n", + "armloads\n", + "armoire\n", + "armoires\n", + "armonica\n", + "armonicas\n", + "armor\n", + "armored\n", + "armorer\n", + "armorers\n", + "armorial\n", + "armorials\n", + "armories\n", + "armoring\n", + "armors\n", + "armory\n", + "armour\n", + "armoured\n", + "armourer\n", + "armourers\n", + "armouries\n", + "armouring\n", + "armours\n", + "armoury\n", + "armpit\n", + "armpits\n", + "armrest\n", + "armrests\n", + "arms\n", + "armsful\n", + "armure\n", + "armures\n", + "army\n", + "armyworm\n", + "armyworms\n", + "arnatto\n", + "arnattos\n", + "arnica\n", + "arnicas\n", + "arnotto\n", + "arnottos\n", + "aroid\n", + "aroids\n", + "aroint\n", + "arointed\n", + "arointing\n", + "aroints\n", + "aroma\n", + "aromas\n", + "aromatic\n", + "aromatics\n", + "arose\n", + "around\n", + "arousal\n", + "arousals\n", + "arouse\n", + "aroused\n", + "arouser\n", + "arousers\n", + "arouses\n", + "arousing\n", + "aroynt\n", + "aroynted\n", + "aroynting\n", + "aroynts\n", + "arpeggio\n", + "arpeggios\n", + "arpen\n", + "arpens\n", + "arpent\n", + "arpents\n", + "arquebus\n", + "arquebuses\n", + "arrack\n", + "arracks\n", + "arraign\n", + "arraigned\n", + "arraigning\n", + "arraigns\n", + "arrange\n", + "arranged\n", + "arrangement\n", + "arrangements\n", + "arranger\n", + "arrangers\n", + "arranges\n", + "arranging\n", + "arrant\n", + "arrantly\n", + "arras\n", + "arrased\n", + "array\n", + "arrayal\n", + "arrayals\n", + "arrayed\n", + "arrayer\n", + "arrayers\n", + "arraying\n", + "arrays\n", + "arrear\n", + "arrears\n", + "arrest\n", + "arrested\n", + "arrestee\n", + "arrestees\n", + "arrester\n", + "arresters\n", + "arresting\n", + "arrestor\n", + "arrestors\n", + "arrests\n", + "arrhizal\n", + "arrhythmia\n", + "arris\n", + "arrises\n", + "arrival\n", + "arrivals\n", + "arrive\n", + "arrived\n", + "arriver\n", + "arrivers\n", + "arrives\n", + "arriving\n", + "arroba\n", + "arrobas\n", + "arrogance\n", + "arrogances\n", + "arrogant\n", + "arrogantly\n", + "arrogate\n", + "arrogated\n", + "arrogates\n", + "arrogating\n", + "arrow\n", + "arrowed\n", + "arrowhead\n", + "arrowheads\n", + "arrowing\n", + "arrows\n", + "arrowy\n", + "arroyo\n", + "arroyos\n", + "ars\n", + "arse\n", + "arsenal\n", + "arsenals\n", + "arsenate\n", + "arsenates\n", + "arsenic\n", + "arsenical\n", + "arsenics\n", + "arsenide\n", + "arsenides\n", + "arsenious\n", + "arsenite\n", + "arsenites\n", + "arseno\n", + "arsenous\n", + "arses\n", + "arshin\n", + "arshins\n", + "arsine\n", + "arsines\n", + "arsino\n", + "arsis\n", + "arson\n", + "arsonist\n", + "arsonists\n", + "arsonous\n", + "arsons\n", + "art\n", + "artal\n", + "artefact\n", + "artefacts\n", + "artel\n", + "artels\n", + "arterial\n", + "arterials\n", + "arteries\n", + "arteriosclerosis\n", + "arteriosclerotic\n", + "artery\n", + "artful\n", + "artfully\n", + "artfulness\n", + "artfulnesses\n", + "arthralgia\n", + "arthritic\n", + "arthritides\n", + "arthritis\n", + "arthropod\n", + "arthropods\n", + "artichoke\n", + "artichokes\n", + "article\n", + "articled\n", + "articles\n", + "articling\n", + "articulate\n", + "articulated\n", + "articulately\n", + "articulateness\n", + "articulatenesses\n", + "articulates\n", + "articulating\n", + "artier\n", + "artiest\n", + "artifact\n", + "artifacts\n", + "artifice\n", + "artifices\n", + "artificial\n", + "artificialities\n", + "artificiality\n", + "artificially\n", + "artificialness\n", + "artificialnesses\n", + "artilleries\n", + "artillery\n", + "artily\n", + "artiness\n", + "artinesses\n", + "artisan\n", + "artisans\n", + "artist\n", + "artiste\n", + "artistes\n", + "artistic\n", + "artistical\n", + "artistically\n", + "artistries\n", + "artistry\n", + "artists\n", + "artless\n", + "artlessly\n", + "artlessness\n", + "artlessnesses\n", + "arts\n", + "artwork\n", + "artworks\n", + "arty\n", + "arum\n", + "arums\n", + "aruspex\n", + "aruspices\n", + "arval\n", + "arvo\n", + "arvos\n", + "aryl\n", + "aryls\n", + "arythmia\n", + "arythmias\n", + "arythmic\n", + "as\n", + "asarum\n", + "asarums\n", + "asbestic\n", + "asbestos\n", + "asbestoses\n", + "asbestus\n", + "asbestuses\n", + "ascarid\n", + "ascarides\n", + "ascarids\n", + "ascaris\n", + "ascend\n", + "ascendancies\n", + "ascendancy\n", + "ascendant\n", + "ascended\n", + "ascender\n", + "ascenders\n", + "ascending\n", + "ascends\n", + "ascension\n", + "ascensions\n", + "ascent\n", + "ascents\n", + "ascertain\n", + "ascertainable\n", + "ascertained\n", + "ascertaining\n", + "ascertains\n", + "asceses\n", + "ascesis\n", + "ascetic\n", + "asceticism\n", + "asceticisms\n", + "ascetics\n", + "asci\n", + "ascidia\n", + "ascidian\n", + "ascidians\n", + "ascidium\n", + "ascites\n", + "ascitic\n", + "ascocarp\n", + "ascocarps\n", + "ascorbic\n", + "ascot\n", + "ascots\n", + "ascribable\n", + "ascribe\n", + "ascribed\n", + "ascribes\n", + "ascribing\n", + "ascription\n", + "ascriptions\n", + "ascus\n", + "asdic\n", + "asdics\n", + "asea\n", + "asepses\n", + "asepsis\n", + "aseptic\n", + "asexual\n", + "ash\n", + "ashamed\n", + "ashcan\n", + "ashcans\n", + "ashed\n", + "ashen\n", + "ashes\n", + "ashier\n", + "ashiest\n", + "ashing\n", + "ashlar\n", + "ashlared\n", + "ashlaring\n", + "ashlars\n", + "ashler\n", + "ashlered\n", + "ashlering\n", + "ashlers\n", + "ashless\n", + "ashman\n", + "ashmen\n", + "ashore\n", + "ashplant\n", + "ashplants\n", + "ashram\n", + "ashrams\n", + "ashtray\n", + "ashtrays\n", + "ashy\n", + "aside\n", + "asides\n", + "asinine\n", + "ask\n", + "askance\n", + "askant\n", + "asked\n", + "asker\n", + "askers\n", + "askeses\n", + "askesis\n", + "askew\n", + "asking\n", + "askings\n", + "asks\n", + "aslant\n", + "asleep\n", + "aslope\n", + "asocial\n", + "asp\n", + "aspect\n", + "aspects\n", + "aspen\n", + "aspens\n", + "asper\n", + "asperate\n", + "asperated\n", + "asperates\n", + "asperating\n", + "asperges\n", + "asperities\n", + "asperity\n", + "aspers\n", + "asperse\n", + "aspersed\n", + "asperser\n", + "aspersers\n", + "asperses\n", + "aspersing\n", + "aspersion\n", + "aspersions\n", + "aspersor\n", + "aspersors\n", + "asphalt\n", + "asphalted\n", + "asphaltic\n", + "asphalting\n", + "asphalts\n", + "asphaltum\n", + "asphaltums\n", + "aspheric\n", + "asphodel\n", + "asphodels\n", + "asphyxia\n", + "asphyxias\n", + "asphyxiate\n", + "asphyxiated\n", + "asphyxiates\n", + "asphyxiating\n", + "asphyxiation\n", + "asphyxiations\n", + "asphyxies\n", + "asphyxy\n", + "aspic\n", + "aspics\n", + "aspirant\n", + "aspirants\n", + "aspirata\n", + "aspiratae\n", + "aspirate\n", + "aspirated\n", + "aspirates\n", + "aspirating\n", + "aspiration\n", + "aspirations\n", + "aspire\n", + "aspired\n", + "aspirer\n", + "aspirers\n", + "aspires\n", + "aspirin\n", + "aspiring\n", + "aspirins\n", + "aspis\n", + "aspises\n", + "aspish\n", + "asps\n", + "asquint\n", + "asrama\n", + "asramas\n", + "ass\n", + "assagai\n", + "assagaied\n", + "assagaiing\n", + "assagais\n", + "assai\n", + "assail\n", + "assailable\n", + "assailant\n", + "assailants\n", + "assailed\n", + "assailer\n", + "assailers\n", + "assailing\n", + "assails\n", + "assais\n", + "assassin\n", + "assassinate\n", + "assassinated\n", + "assassinates\n", + "assassinating\n", + "assassination\n", + "assassinations\n", + "assassins\n", + "assault\n", + "assaulted\n", + "assaulting\n", + "assaults\n", + "assay\n", + "assayed\n", + "assayer\n", + "assayers\n", + "assaying\n", + "assays\n", + "assegai\n", + "assegaied\n", + "assegaiing\n", + "assegais\n", + "assemble\n", + "assembled\n", + "assembles\n", + "assemblies\n", + "assembling\n", + "assembly\n", + "assemblyman\n", + "assemblymen\n", + "assemblywoman\n", + "assemblywomen\n", + "assent\n", + "assented\n", + "assenter\n", + "assenters\n", + "assenting\n", + "assentor\n", + "assentors\n", + "assents\n", + "assert\n", + "asserted\n", + "asserter\n", + "asserters\n", + "asserting\n", + "assertion\n", + "assertions\n", + "assertive\n", + "assertiveness\n", + "assertivenesses\n", + "assertor\n", + "assertors\n", + "asserts\n", + "asses\n", + "assess\n", + "assessed\n", + "assesses\n", + "assessing\n", + "assessment\n", + "assessments\n", + "assessor\n", + "assessors\n", + "asset\n", + "assets\n", + "assiduities\n", + "assiduity\n", + "assiduous\n", + "assiduously\n", + "assiduousness\n", + "assiduousnesses\n", + "assign\n", + "assignable\n", + "assignat\n", + "assignats\n", + "assigned\n", + "assignee\n", + "assignees\n", + "assigner\n", + "assigners\n", + "assigning\n", + "assignment\n", + "assignments\n", + "assignor\n", + "assignors\n", + "assigns\n", + "assimilate\n", + "assimilated\n", + "assimilates\n", + "assimilating\n", + "assimilation\n", + "assimilations\n", + "assist\n", + "assistance\n", + "assistances\n", + "assistant\n", + "assistants\n", + "assisted\n", + "assister\n", + "assisters\n", + "assisting\n", + "assistor\n", + "assistors\n", + "assists\n", + "assize\n", + "assizes\n", + "asslike\n", + "associate\n", + "associated\n", + "associates\n", + "associating\n", + "association\n", + "associations\n", + "assoil\n", + "assoiled\n", + "assoiling\n", + "assoils\n", + "assonant\n", + "assonants\n", + "assort\n", + "assorted\n", + "assorter\n", + "assorters\n", + "assorting\n", + "assortment\n", + "assortments\n", + "assorts\n", + "assuage\n", + "assuaged\n", + "assuages\n", + "assuaging\n", + "assume\n", + "assumed\n", + "assumer\n", + "assumers\n", + "assumes\n", + "assuming\n", + "assumption\n", + "assumptions\n", + "assurance\n", + "assurances\n", + "assure\n", + "assured\n", + "assureds\n", + "assurer\n", + "assurers\n", + "assures\n", + "assuring\n", + "assuror\n", + "assurors\n", + "asswage\n", + "asswaged\n", + "asswages\n", + "asswaging\n", + "astasia\n", + "astasias\n", + "astatic\n", + "astatine\n", + "astatines\n", + "aster\n", + "asteria\n", + "asterias\n", + "asterisk\n", + "asterisked\n", + "asterisking\n", + "asterisks\n", + "asterism\n", + "asterisms\n", + "astern\n", + "asternal\n", + "asteroid\n", + "asteroidal\n", + "asteroids\n", + "asters\n", + "asthenia\n", + "asthenias\n", + "asthenic\n", + "asthenics\n", + "asthenies\n", + "astheny\n", + "asthma\n", + "asthmas\n", + "astigmatic\n", + "astigmatism\n", + "astigmatisms\n", + "astir\n", + "astomous\n", + "astonied\n", + "astonies\n", + "astonish\n", + "astonished\n", + "astonishes\n", + "astonishing\n", + "astonishingly\n", + "astonishment\n", + "astonishments\n", + "astony\n", + "astonying\n", + "astound\n", + "astounded\n", + "astounding\n", + "astoundingly\n", + "astounds\n", + "astraddle\n", + "astragal\n", + "astragals\n", + "astral\n", + "astrally\n", + "astrals\n", + "astray\n", + "astrict\n", + "astricted\n", + "astricting\n", + "astricts\n", + "astride\n", + "astringe\n", + "astringed\n", + "astringencies\n", + "astringency\n", + "astringent\n", + "astringents\n", + "astringes\n", + "astringing\n", + "astrolabe\n", + "astrolabes\n", + "astrologer\n", + "astrologers\n", + "astrological\n", + "astrologies\n", + "astrology\n", + "astronaut\n", + "astronautic\n", + "astronautical\n", + "astronautically\n", + "astronautics\n", + "astronauts\n", + "astronomer\n", + "astronomers\n", + "astronomic\n", + "astronomical\n", + "astute\n", + "astutely\n", + "astuteness\n", + "astylar\n", + "asunder\n", + "aswarm\n", + "aswirl\n", + "aswoon\n", + "asyla\n", + "asylum\n", + "asylums\n", + "asymmetric\n", + "asymmetrical\n", + "asymmetries\n", + "asymmetry\n", + "asyndeta\n", + "at\n", + "atabal\n", + "atabals\n", + "ataghan\n", + "ataghans\n", + "atalaya\n", + "atalayas\n", + "ataman\n", + "atamans\n", + "atamasco\n", + "atamascos\n", + "ataraxia\n", + "ataraxias\n", + "ataraxic\n", + "ataraxics\n", + "ataraxies\n", + "ataraxy\n", + "atavic\n", + "atavism\n", + "atavisms\n", + "atavist\n", + "atavists\n", + "ataxia\n", + "ataxias\n", + "ataxic\n", + "ataxics\n", + "ataxies\n", + "ataxy\n", + "ate\n", + "atechnic\n", + "atelic\n", + "atelier\n", + "ateliers\n", + "ates\n", + "athanasies\n", + "athanasy\n", + "atheism\n", + "atheisms\n", + "atheist\n", + "atheistic\n", + "atheists\n", + "atheling\n", + "athelings\n", + "atheneum\n", + "atheneums\n", + "atheroma\n", + "atheromas\n", + "atheromata\n", + "atherosclerosis\n", + "atherosclerotic\n", + "athirst\n", + "athlete\n", + "athletes\n", + "athletic\n", + "athletics\n", + "athodyd\n", + "athodyds\n", + "athwart\n", + "atilt\n", + "atingle\n", + "atlantes\n", + "atlas\n", + "atlases\n", + "atlatl\n", + "atlatls\n", + "atma\n", + "atman\n", + "atmans\n", + "atmas\n", + "atmosphere\n", + "atmospheres\n", + "atmospheric\n", + "atmospherically\n", + "atoll\n", + "atolls\n", + "atom\n", + "atomic\n", + "atomical\n", + "atomics\n", + "atomies\n", + "atomise\n", + "atomised\n", + "atomises\n", + "atomising\n", + "atomism\n", + "atomisms\n", + "atomist\n", + "atomists\n", + "atomize\n", + "atomized\n", + "atomizer\n", + "atomizers\n", + "atomizes\n", + "atomizing\n", + "atoms\n", + "atomy\n", + "atonable\n", + "atonal\n", + "atonally\n", + "atone\n", + "atoned\n", + "atonement\n", + "atonements\n", + "atoner\n", + "atoners\n", + "atones\n", + "atonic\n", + "atonicity\n", + "atonics\n", + "atonies\n", + "atoning\n", + "atony\n", + "atop\n", + "atopic\n", + "atopies\n", + "atopy\n", + "atrazine\n", + "atrazines\n", + "atremble\n", + "atresia\n", + "atresias\n", + "atria\n", + "atrial\n", + "atrip\n", + "atrium\n", + "atriums\n", + "atrocious\n", + "atrociously\n", + "atrociousness\n", + "atrociousnesses\n", + "atrocities\n", + "atrocity\n", + "atrophia\n", + "atrophias\n", + "atrophic\n", + "atrophied\n", + "atrophies\n", + "atrophy\n", + "atrophying\n", + "atropin\n", + "atropine\n", + "atropines\n", + "atropins\n", + "atropism\n", + "atropisms\n", + "attach\n", + "attache\n", + "attached\n", + "attacher\n", + "attachers\n", + "attaches\n", + "attaching\n", + "attachment\n", + "attachments\n", + "attack\n", + "attacked\n", + "attacker\n", + "attackers\n", + "attacking\n", + "attacks\n", + "attain\n", + "attainabilities\n", + "attainability\n", + "attainable\n", + "attained\n", + "attainer\n", + "attainers\n", + "attaining\n", + "attainment\n", + "attainments\n", + "attains\n", + "attaint\n", + "attainted\n", + "attainting\n", + "attaints\n", + "attar\n", + "attars\n", + "attemper\n", + "attempered\n", + "attempering\n", + "attempers\n", + "attempt\n", + "attempted\n", + "attempting\n", + "attempts\n", + "attend\n", + "attendance\n", + "attendances\n", + "attendant\n", + "attendants\n", + "attended\n", + "attendee\n", + "attendees\n", + "attender\n", + "attenders\n", + "attending\n", + "attendings\n", + "attends\n", + "attent\n", + "attention\n", + "attentions\n", + "attentive\n", + "attentively\n", + "attentiveness\n", + "attentivenesses\n", + "attenuate\n", + "attenuated\n", + "attenuates\n", + "attenuating\n", + "attenuation\n", + "attenuations\n", + "attest\n", + "attestation\n", + "attestations\n", + "attested\n", + "attester\n", + "attesters\n", + "attesting\n", + "attestor\n", + "attestors\n", + "attests\n", + "attic\n", + "atticism\n", + "atticisms\n", + "atticist\n", + "atticists\n", + "attics\n", + "attire\n", + "attired\n", + "attires\n", + "attiring\n", + "attitude\n", + "attitudes\n", + "attorn\n", + "attorned\n", + "attorney\n", + "attorneys\n", + "attorning\n", + "attorns\n", + "attract\n", + "attracted\n", + "attracting\n", + "attraction\n", + "attractions\n", + "attractive\n", + "attractively\n", + "attractiveness\n", + "attractivenesses\n", + "attracts\n", + "attributable\n", + "attribute\n", + "attributed\n", + "attributes\n", + "attributing\n", + "attribution\n", + "attributions\n", + "attrite\n", + "attrited\n", + "attune\n", + "attuned\n", + "attunes\n", + "attuning\n", + "atwain\n", + "atween\n", + "atwitter\n", + "atypic\n", + "atypical\n", + "aubade\n", + "aubades\n", + "auberge\n", + "auberges\n", + "auburn\n", + "auburns\n", + "auction\n", + "auctioned\n", + "auctioneer\n", + "auctioneers\n", + "auctioning\n", + "auctions\n", + "audacious\n", + "audacities\n", + "audacity\n", + "audad\n", + "audads\n", + "audible\n", + "audibles\n", + "audibly\n", + "audience\n", + "audiences\n", + "audient\n", + "audients\n", + "audile\n", + "audiles\n", + "auding\n", + "audings\n", + "audio\n", + "audiogram\n", + "audiograms\n", + "audios\n", + "audit\n", + "audited\n", + "auditing\n", + "audition\n", + "auditioned\n", + "auditioning\n", + "auditions\n", + "auditive\n", + "auditives\n", + "auditor\n", + "auditories\n", + "auditorium\n", + "auditoriums\n", + "auditors\n", + "auditory\n", + "audits\n", + "augend\n", + "augends\n", + "auger\n", + "augers\n", + "aught\n", + "aughts\n", + "augite\n", + "augites\n", + "augitic\n", + "augment\n", + "augmentation\n", + "augmentations\n", + "augmented\n", + "augmenting\n", + "augments\n", + "augur\n", + "augural\n", + "augured\n", + "augurer\n", + "augurers\n", + "auguries\n", + "auguring\n", + "augurs\n", + "augury\n", + "august\n", + "auguster\n", + "augustest\n", + "augustly\n", + "auk\n", + "auklet\n", + "auklets\n", + "auks\n", + "auld\n", + "aulder\n", + "auldest\n", + "aulic\n", + "aunt\n", + "aunthood\n", + "aunthoods\n", + "auntie\n", + "aunties\n", + "auntlier\n", + "auntliest\n", + "auntlike\n", + "auntly\n", + "aunts\n", + "aunty\n", + "aura\n", + "aurae\n", + "aural\n", + "aurally\n", + "aurar\n", + "auras\n", + "aurate\n", + "aurated\n", + "aureate\n", + "aurei\n", + "aureola\n", + "aureolae\n", + "aureolas\n", + "aureole\n", + "aureoled\n", + "aureoles\n", + "aureoling\n", + "aures\n", + "aureus\n", + "auric\n", + "auricle\n", + "auricled\n", + "auricles\n", + "auricula\n", + "auriculae\n", + "auriculas\n", + "auriform\n", + "auris\n", + "aurist\n", + "aurists\n", + "aurochs\n", + "aurochses\n", + "aurora\n", + "aurorae\n", + "auroral\n", + "auroras\n", + "aurorean\n", + "aurous\n", + "aurum\n", + "aurums\n", + "auscultation\n", + "auscultations\n", + "auspex\n", + "auspice\n", + "auspices\n", + "auspicious\n", + "austere\n", + "austerer\n", + "austerest\n", + "austerities\n", + "austerity\n", + "austral\n", + "autacoid\n", + "autacoids\n", + "autarchies\n", + "autarchy\n", + "autarkic\n", + "autarkies\n", + "autarkik\n", + "autarky\n", + "autecism\n", + "autecisms\n", + "authentic\n", + "authentically\n", + "authenticate\n", + "authenticated\n", + "authenticates\n", + "authenticating\n", + "authentication\n", + "authentications\n", + "authenticities\n", + "authenticity\n", + "author\n", + "authored\n", + "authoress\n", + "authoresses\n", + "authoring\n", + "authoritarian\n", + "authoritative\n", + "authoritatively\n", + "authorities\n", + "authority\n", + "authorization\n", + "authorizations\n", + "authorize\n", + "authorized\n", + "authorizes\n", + "authorizing\n", + "authors\n", + "authorship\n", + "authorships\n", + "autism\n", + "autisms\n", + "autistic\n", + "auto\n", + "autobahn\n", + "autobahnen\n", + "autobahns\n", + "autobiographer\n", + "autobiographers\n", + "autobiographical\n", + "autobiographies\n", + "autobiography\n", + "autobus\n", + "autobuses\n", + "autobusses\n", + "autocade\n", + "autocades\n", + "autocoid\n", + "autocoids\n", + "autocracies\n", + "autocracy\n", + "autocrat\n", + "autocratic\n", + "autocratically\n", + "autocrats\n", + "autodyne\n", + "autodynes\n", + "autoed\n", + "autogamies\n", + "autogamy\n", + "autogenies\n", + "autogeny\n", + "autogiro\n", + "autogiros\n", + "autograph\n", + "autographed\n", + "autographing\n", + "autographs\n", + "autogyro\n", + "autogyros\n", + "autoing\n", + "autolyze\n", + "autolyzed\n", + "autolyzes\n", + "autolyzing\n", + "automata\n", + "automate\n", + "automateable\n", + "automated\n", + "automates\n", + "automatic\n", + "automatically\n", + "automating\n", + "automation\n", + "automations\n", + "automaton\n", + "automatons\n", + "automobile\n", + "automobiles\n", + "automotive\n", + "autonomies\n", + "autonomous\n", + "autonomously\n", + "autonomy\n", + "autopsic\n", + "autopsied\n", + "autopsies\n", + "autopsy\n", + "autopsying\n", + "autos\n", + "autosome\n", + "autosomes\n", + "autotomies\n", + "autotomy\n", + "autotype\n", + "autotypes\n", + "autotypies\n", + "autotypy\n", + "autumn\n", + "autumnal\n", + "autumns\n", + "autunite\n", + "autunites\n", + "auxeses\n", + "auxesis\n", + "auxetic\n", + "auxetics\n", + "auxiliaries\n", + "auxiliary\n", + "auxin\n", + "auxinic\n", + "auxins\n", + "ava\n", + "avail\n", + "availabilities\n", + "availability\n", + "available\n", + "availed\n", + "availing\n", + "avails\n", + "avalanche\n", + "avalanches\n", + "avarice\n", + "avarices\n", + "avast\n", + "avatar\n", + "avatars\n", + "avaunt\n", + "ave\n", + "avellan\n", + "avellane\n", + "avenge\n", + "avenged\n", + "avenger\n", + "avengers\n", + "avenges\n", + "avenging\n", + "avens\n", + "avenses\n", + "aventail\n", + "aventails\n", + "avenue\n", + "avenues\n", + "aver\n", + "average\n", + "averaged\n", + "averages\n", + "averaging\n", + "averment\n", + "averments\n", + "averred\n", + "averring\n", + "avers\n", + "averse\n", + "aversely\n", + "aversion\n", + "aversions\n", + "aversive\n", + "avert\n", + "averted\n", + "averting\n", + "averts\n", + "aves\n", + "avgas\n", + "avgases\n", + "avgasses\n", + "avian\n", + "avianize\n", + "avianized\n", + "avianizes\n", + "avianizing\n", + "avians\n", + "aviaries\n", + "aviarist\n", + "aviarists\n", + "aviary\n", + "aviate\n", + "aviated\n", + "aviates\n", + "aviating\n", + "aviation\n", + "aviations\n", + "aviator\n", + "aviators\n", + "aviatrices\n", + "aviatrix\n", + "aviatrixes\n", + "avicular\n", + "avid\n", + "avidin\n", + "avidins\n", + "avidities\n", + "avidity\n", + "avidly\n", + "avidness\n", + "avidnesses\n", + "avifauna\n", + "avifaunae\n", + "avifaunas\n", + "avigator\n", + "avigators\n", + "avion\n", + "avionic\n", + "avionics\n", + "avions\n", + "aviso\n", + "avisos\n", + "avo\n", + "avocado\n", + "avocadoes\n", + "avocados\n", + "avocation\n", + "avocations\n", + "avocet\n", + "avocets\n", + "avodire\n", + "avodires\n", + "avoid\n", + "avoidable\n", + "avoidance\n", + "avoidances\n", + "avoided\n", + "avoider\n", + "avoiders\n", + "avoiding\n", + "avoids\n", + "avoidupois\n", + "avoidupoises\n", + "avos\n", + "avoset\n", + "avosets\n", + "avouch\n", + "avouched\n", + "avoucher\n", + "avouchers\n", + "avouches\n", + "avouching\n", + "avow\n", + "avowable\n", + "avowably\n", + "avowal\n", + "avowals\n", + "avowed\n", + "avowedly\n", + "avower\n", + "avowers\n", + "avowing\n", + "avows\n", + "avulse\n", + "avulsed\n", + "avulses\n", + "avulsing\n", + "avulsion\n", + "avulsions\n", + "aw\n", + "awa\n", + "await\n", + "awaited\n", + "awaiter\n", + "awaiters\n", + "awaiting\n", + "awaits\n", + "awake\n", + "awaked\n", + "awaken\n", + "awakened\n", + "awakener\n", + "awakeners\n", + "awakening\n", + "awakens\n", + "awakes\n", + "awaking\n", + "award\n", + "awarded\n", + "awardee\n", + "awardees\n", + "awarder\n", + "awarders\n", + "awarding\n", + "awards\n", + "aware\n", + "awash\n", + "away\n", + "awayness\n", + "awaynesses\n", + "awe\n", + "aweary\n", + "aweather\n", + "awed\n", + "awee\n", + "aweigh\n", + "aweing\n", + "aweless\n", + "awes\n", + "awesome\n", + "awesomely\n", + "awful\n", + "awfuller\n", + "awfullest\n", + "awfully\n", + "awhile\n", + "awhirl\n", + "awing\n", + "awkward\n", + "awkwarder\n", + "awkwardest\n", + "awkwardly\n", + "awkwardness\n", + "awkwardnesses\n", + "awl\n", + "awless\n", + "awls\n", + "awlwort\n", + "awlworts\n", + "awmous\n", + "awn\n", + "awned\n", + "awning\n", + "awninged\n", + "awnings\n", + "awnless\n", + "awns\n", + "awny\n", + "awoke\n", + "awoken\n", + "awol\n", + "awols\n", + "awry\n", + "axal\n", + "axe\n", + "axed\n", + "axel\n", + "axels\n", + "axeman\n", + "axemen\n", + "axenic\n", + "axes\n", + "axial\n", + "axialities\n", + "axiality\n", + "axially\n", + "axil\n", + "axile\n", + "axilla\n", + "axillae\n", + "axillar\n", + "axillaries\n", + "axillars\n", + "axillary\n", + "axillas\n", + "axils\n", + "axing\n", + "axiologies\n", + "axiology\n", + "axiom\n", + "axiomatic\n", + "axioms\n", + "axis\n", + "axised\n", + "axises\n", + "axite\n", + "axites\n", + "axle\n", + "axled\n", + "axles\n", + "axletree\n", + "axletrees\n", + "axlike\n", + "axman\n", + "axmen\n", + "axolotl\n", + "axolotls\n", + "axon\n", + "axonal\n", + "axone\n", + "axones\n", + "axonic\n", + "axons\n", + "axoplasm\n", + "axoplasms\n", + "axseed\n", + "axseeds\n", + "ay\n", + "ayah\n", + "ayahs\n", + "aye\n", + "ayes\n", + "ayin\n", + "ayins\n", + "ays\n", + "azalea\n", + "azaleas\n", + "azan\n", + "azans\n", + "azide\n", + "azides\n", + "azido\n", + "azimuth\n", + "azimuthal\n", + "azimuths\n", + "azine\n", + "azines\n", + "azo\n", + "azoic\n", + "azole\n", + "azoles\n", + "azon\n", + "azonal\n", + "azonic\n", + "azons\n", + "azote\n", + "azoted\n", + "azotemia\n", + "azotemias\n", + "azotemic\n", + "azotes\n", + "azoth\n", + "azoths\n", + "azotic\n", + "azotise\n", + "azotised\n", + "azotises\n", + "azotising\n", + "azotize\n", + "azotized\n", + "azotizes\n", + "azotizing\n", + "azoturia\n", + "azoturias\n", + "azure\n", + "azures\n", + "azurite\n", + "azurites\n", + "azygos\n", + "azygoses\n", + "azygous\n", + "ba\n", + "baa\n", + "baaed\n", + "baaing\n", + "baal\n", + "baalim\n", + "baalism\n", + "baalisms\n", + "baals\n", + "baas\n", + "baba\n", + "babas\n", + "babassu\n", + "babassus\n", + "babbitt\n", + "babbitted\n", + "babbitting\n", + "babbitts\n", + "babble\n", + "babbled\n", + "babbler\n", + "babblers\n", + "babbles\n", + "babbling\n", + "babblings\n", + "babbool\n", + "babbools\n", + "babe\n", + "babel\n", + "babels\n", + "babes\n", + "babesia\n", + "babesias\n", + "babiche\n", + "babiches\n", + "babied\n", + "babies\n", + "babirusa\n", + "babirusas\n", + "babka\n", + "babkas\n", + "baboo\n", + "babool\n", + "babools\n", + "baboon\n", + "baboons\n", + "baboos\n", + "babu\n", + "babul\n", + "babuls\n", + "babus\n", + "babushka\n", + "babushkas\n", + "baby\n", + "babyhood\n", + "babyhoods\n", + "babying\n", + "babyish\n", + "bacca\n", + "baccae\n", + "baccalaureate\n", + "baccalaureates\n", + "baccara\n", + "baccaras\n", + "baccarat\n", + "baccarats\n", + "baccate\n", + "baccated\n", + "bacchant\n", + "bacchantes\n", + "bacchants\n", + "bacchic\n", + "bacchii\n", + "bacchius\n", + "bach\n", + "bached\n", + "bachelor\n", + "bachelorhood\n", + "bachelorhoods\n", + "bachelors\n", + "baches\n", + "baching\n", + "bacillar\n", + "bacillary\n", + "bacilli\n", + "bacillus\n", + "back\n", + "backache\n", + "backaches\n", + "backarrow\n", + "backarrows\n", + "backbend\n", + "backbends\n", + "backbit\n", + "backbite\n", + "backbiter\n", + "backbiters\n", + "backbites\n", + "backbiting\n", + "backbitten\n", + "backbone\n", + "backbones\n", + "backdoor\n", + "backdrop\n", + "backdrops\n", + "backed\n", + "backer\n", + "backers\n", + "backfill\n", + "backfilled\n", + "backfilling\n", + "backfills\n", + "backfire\n", + "backfired\n", + "backfires\n", + "backfiring\n", + "backgammon\n", + "backgammons\n", + "background\n", + "backgrounds\n", + "backhand\n", + "backhanded\n", + "backhanding\n", + "backhands\n", + "backhoe\n", + "backhoes\n", + "backing\n", + "backings\n", + "backlash\n", + "backlashed\n", + "backlasher\n", + "backlashers\n", + "backlashes\n", + "backlashing\n", + "backless\n", + "backlist\n", + "backlists\n", + "backlit\n", + "backlog\n", + "backlogged\n", + "backlogging\n", + "backlogs\n", + "backmost\n", + "backout\n", + "backouts\n", + "backpack\n", + "backpacked\n", + "backpacker\n", + "backpacking\n", + "backpacks\n", + "backrest\n", + "backrests\n", + "backs\n", + "backsaw\n", + "backsaws\n", + "backseat\n", + "backseats\n", + "backset\n", + "backsets\n", + "backside\n", + "backsides\n", + "backslap\n", + "backslapped\n", + "backslapping\n", + "backslaps\n", + "backslash\n", + "backslashes\n", + "backslid\n", + "backslide\n", + "backslided\n", + "backslider\n", + "backsliders\n", + "backslides\n", + "backsliding\n", + "backspace\n", + "backspaced\n", + "backspaces\n", + "backspacing\n", + "backspin\n", + "backspins\n", + "backstay\n", + "backstays\n", + "backstop\n", + "backstopped\n", + "backstopping\n", + "backstops\n", + "backup\n", + "backups\n", + "backward\n", + "backwardness\n", + "backwardnesses\n", + "backwards\n", + "backwash\n", + "backwashed\n", + "backwashes\n", + "backwashing\n", + "backwood\n", + "backwoods\n", + "backyard\n", + "backyards\n", + "bacon\n", + "bacons\n", + "bacteria\n", + "bacterial\n", + "bacterin\n", + "bacterins\n", + "bacteriologic\n", + "bacteriological\n", + "bacteriologies\n", + "bacteriologist\n", + "bacteriologists\n", + "bacteriology\n", + "bacterium\n", + "baculine\n", + "bad\n", + "baddie\n", + "baddies\n", + "baddy\n", + "bade\n", + "badge\n", + "badged\n", + "badger\n", + "badgered\n", + "badgering\n", + "badgerly\n", + "badgers\n", + "badges\n", + "badging\n", + "badinage\n", + "badinaged\n", + "badinages\n", + "badinaging\n", + "badland\n", + "badlands\n", + "badly\n", + "badman\n", + "badmen\n", + "badminton\n", + "badmintons\n", + "badmouth\n", + "badmouthed\n", + "badmouthing\n", + "badmouths\n", + "badness\n", + "badnesses\n", + "bads\n", + "baff\n", + "baffed\n", + "baffies\n", + "baffing\n", + "baffle\n", + "baffled\n", + "baffler\n", + "bafflers\n", + "baffles\n", + "baffling\n", + "baffs\n", + "baffy\n", + "bag\n", + "bagass\n", + "bagasse\n", + "bagasses\n", + "bagatelle\n", + "bagatelles\n", + "bagel\n", + "bagels\n", + "bagful\n", + "bagfuls\n", + "baggage\n", + "baggages\n", + "bagged\n", + "baggie\n", + "baggier\n", + "baggies\n", + "baggiest\n", + "baggily\n", + "bagging\n", + "baggings\n", + "baggy\n", + "bagman\n", + "bagmen\n", + "bagnio\n", + "bagnios\n", + "bagpipe\n", + "bagpiper\n", + "bagpipers\n", + "bagpipes\n", + "bags\n", + "bagsful\n", + "baguet\n", + "baguets\n", + "baguette\n", + "baguettes\n", + "bagwig\n", + "bagwigs\n", + "bagworm\n", + "bagworms\n", + "bah\n", + "bahadur\n", + "bahadurs\n", + "baht\n", + "bahts\n", + "baidarka\n", + "baidarkas\n", + "bail\n", + "bailable\n", + "bailed\n", + "bailee\n", + "bailees\n", + "bailer\n", + "bailers\n", + "bailey\n", + "baileys\n", + "bailie\n", + "bailies\n", + "bailiff\n", + "bailiffs\n", + "bailing\n", + "bailiwick\n", + "bailiwicks\n", + "bailment\n", + "bailments\n", + "bailor\n", + "bailors\n", + "bailout\n", + "bailouts\n", + "bails\n", + "bailsman\n", + "bailsmen\n", + "bairn\n", + "bairnish\n", + "bairnlier\n", + "bairnliest\n", + "bairnly\n", + "bairns\n", + "bait\n", + "baited\n", + "baiter\n", + "baiters\n", + "baith\n", + "baiting\n", + "baits\n", + "baiza\n", + "baizas\n", + "baize\n", + "baizes\n", + "bake\n", + "baked\n", + "bakemeat\n", + "bakemeats\n", + "baker\n", + "bakeries\n", + "bakers\n", + "bakery\n", + "bakes\n", + "bakeshop\n", + "bakeshops\n", + "baking\n", + "bakings\n", + "baklava\n", + "baklavas\n", + "baklawa\n", + "baklawas\n", + "bakshish\n", + "bakshished\n", + "bakshishes\n", + "bakshishing\n", + "bal\n", + "balance\n", + "balanced\n", + "balancer\n", + "balancers\n", + "balances\n", + "balancing\n", + "balas\n", + "balases\n", + "balata\n", + "balatas\n", + "balboa\n", + "balboas\n", + "balconies\n", + "balcony\n", + "bald\n", + "balded\n", + "balder\n", + "balderdash\n", + "balderdashes\n", + "baldest\n", + "baldhead\n", + "baldheads\n", + "balding\n", + "baldish\n", + "baldly\n", + "baldness\n", + "baldnesses\n", + "baldpate\n", + "baldpates\n", + "baldric\n", + "baldrick\n", + "baldricks\n", + "baldrics\n", + "balds\n", + "bale\n", + "baled\n", + "baleen\n", + "baleens\n", + "balefire\n", + "balefires\n", + "baleful\n", + "baler\n", + "balers\n", + "bales\n", + "baling\n", + "balisaur\n", + "balisaurs\n", + "balk\n", + "balked\n", + "balker\n", + "balkers\n", + "balkier\n", + "balkiest\n", + "balkily\n", + "balking\n", + "balkline\n", + "balklines\n", + "balks\n", + "balky\n", + "ball\n", + "ballad\n", + "ballade\n", + "ballades\n", + "balladic\n", + "balladries\n", + "balladry\n", + "ballads\n", + "ballast\n", + "ballasted\n", + "ballasting\n", + "ballasts\n", + "balled\n", + "baller\n", + "ballerina\n", + "ballerinas\n", + "ballers\n", + "ballet\n", + "balletic\n", + "ballets\n", + "balling\n", + "ballista\n", + "ballistae\n", + "ballistic\n", + "ballistics\n", + "ballon\n", + "ballonet\n", + "ballonets\n", + "ballonne\n", + "ballonnes\n", + "ballons\n", + "balloon\n", + "ballooned\n", + "ballooning\n", + "balloonist\n", + "balloonists\n", + "balloons\n", + "ballot\n", + "balloted\n", + "balloter\n", + "balloters\n", + "balloting\n", + "ballots\n", + "ballroom\n", + "ballrooms\n", + "balls\n", + "bally\n", + "ballyhoo\n", + "ballyhooed\n", + "ballyhooing\n", + "ballyhoos\n", + "ballyrag\n", + "ballyragged\n", + "ballyragging\n", + "ballyrags\n", + "balm\n", + "balmier\n", + "balmiest\n", + "balmily\n", + "balminess\n", + "balminesses\n", + "balmlike\n", + "balmoral\n", + "balmorals\n", + "balms\n", + "balmy\n", + "balneal\n", + "baloney\n", + "baloneys\n", + "bals\n", + "balsa\n", + "balsam\n", + "balsamed\n", + "balsamic\n", + "balsaming\n", + "balsams\n", + "balsas\n", + "baltimore\n", + "baluster\n", + "balusters\n", + "balustrade\n", + "balustrades\n", + "bambini\n", + "bambino\n", + "bambinos\n", + "bamboo\n", + "bamboos\n", + "bamboozle\n", + "bamboozled\n", + "bamboozles\n", + "bamboozling\n", + "ban\n", + "banal\n", + "banalities\n", + "banality\n", + "banally\n", + "banana\n", + "bananas\n", + "banausic\n", + "banco\n", + "bancos\n", + "band\n", + "bandage\n", + "bandaged\n", + "bandager\n", + "bandagers\n", + "bandages\n", + "bandaging\n", + "bandana\n", + "bandanas\n", + "bandanna\n", + "bandannas\n", + "bandbox\n", + "bandboxes\n", + "bandeau\n", + "bandeaus\n", + "bandeaux\n", + "banded\n", + "bander\n", + "banderol\n", + "banderols\n", + "banders\n", + "bandied\n", + "bandies\n", + "banding\n", + "bandit\n", + "banditries\n", + "banditry\n", + "bandits\n", + "banditti\n", + "bandog\n", + "bandogs\n", + "bandora\n", + "bandoras\n", + "bandore\n", + "bandores\n", + "bands\n", + "bandsman\n", + "bandsmen\n", + "bandstand\n", + "bandstands\n", + "bandwagon\n", + "bandwagons\n", + "bandwidth\n", + "bandwidths\n", + "bandy\n", + "bandying\n", + "bane\n", + "baned\n", + "baneful\n", + "banes\n", + "bang\n", + "banged\n", + "banger\n", + "bangers\n", + "banging\n", + "bangkok\n", + "bangkoks\n", + "bangle\n", + "bangles\n", + "bangs\n", + "bangtail\n", + "bangtails\n", + "bani\n", + "banian\n", + "banians\n", + "baning\n", + "banish\n", + "banished\n", + "banisher\n", + "banishers\n", + "banishes\n", + "banishing\n", + "banishment\n", + "banishments\n", + "banister\n", + "banisters\n", + "banjo\n", + "banjoes\n", + "banjoist\n", + "banjoists\n", + "banjos\n", + "bank\n", + "bankable\n", + "bankbook\n", + "bankbooks\n", + "banked\n", + "banker\n", + "bankers\n", + "banking\n", + "bankings\n", + "banknote\n", + "banknotes\n", + "bankroll\n", + "bankrolled\n", + "bankrolling\n", + "bankrolls\n", + "bankrupt\n", + "bankruptcies\n", + "bankruptcy\n", + "bankrupted\n", + "bankrupting\n", + "bankrupts\n", + "banks\n", + "banksia\n", + "banksias\n", + "bankside\n", + "banksides\n", + "banned\n", + "banner\n", + "banneret\n", + "bannerets\n", + "bannerol\n", + "bannerols\n", + "banners\n", + "bannet\n", + "bannets\n", + "banning\n", + "bannock\n", + "bannocks\n", + "banns\n", + "banquet\n", + "banqueted\n", + "banqueting\n", + "banquets\n", + "bans\n", + "banshee\n", + "banshees\n", + "banshie\n", + "banshies\n", + "bantam\n", + "bantams\n", + "banter\n", + "bantered\n", + "banterer\n", + "banterers\n", + "bantering\n", + "banters\n", + "bantling\n", + "bantlings\n", + "banyan\n", + "banyans\n", + "banzai\n", + "banzais\n", + "baobab\n", + "baobabs\n", + "baptise\n", + "baptised\n", + "baptises\n", + "baptisia\n", + "baptisias\n", + "baptising\n", + "baptism\n", + "baptismal\n", + "baptisms\n", + "baptist\n", + "baptists\n", + "baptize\n", + "baptized\n", + "baptizer\n", + "baptizers\n", + "baptizes\n", + "baptizing\n", + "bar\n", + "barathea\n", + "baratheas\n", + "barb\n", + "barbal\n", + "barbarian\n", + "barbarians\n", + "barbaric\n", + "barbarity\n", + "barbarous\n", + "barbarously\n", + "barbasco\n", + "barbascos\n", + "barbate\n", + "barbe\n", + "barbecue\n", + "barbecued\n", + "barbecues\n", + "barbecuing\n", + "barbed\n", + "barbel\n", + "barbell\n", + "barbells\n", + "barbels\n", + "barber\n", + "barbered\n", + "barbering\n", + "barberries\n", + "barberry\n", + "barbers\n", + "barbes\n", + "barbet\n", + "barbets\n", + "barbette\n", + "barbettes\n", + "barbican\n", + "barbicans\n", + "barbicel\n", + "barbicels\n", + "barbing\n", + "barbital\n", + "barbitals\n", + "barbiturate\n", + "barbiturates\n", + "barbless\n", + "barbs\n", + "barbule\n", + "barbules\n", + "barbut\n", + "barbuts\n", + "barbwire\n", + "barbwires\n", + "bard\n", + "barde\n", + "barded\n", + "bardes\n", + "bardic\n", + "barding\n", + "bards\n", + "bare\n", + "bareback\n", + "barebacked\n", + "bared\n", + "barefaced\n", + "barefit\n", + "barefoot\n", + "barefooted\n", + "barege\n", + "bareges\n", + "barehead\n", + "bareheaded\n", + "barely\n", + "bareness\n", + "barenesses\n", + "barer\n", + "bares\n", + "baresark\n", + "baresarks\n", + "barest\n", + "barf\n", + "barfed\n", + "barfing\n", + "barflies\n", + "barfly\n", + "barfs\n", + "bargain\n", + "bargained\n", + "bargaining\n", + "bargains\n", + "barge\n", + "barged\n", + "bargee\n", + "bargees\n", + "bargeman\n", + "bargemen\n", + "barges\n", + "barghest\n", + "barghests\n", + "barging\n", + "barguest\n", + "barguests\n", + "barhop\n", + "barhopped\n", + "barhopping\n", + "barhops\n", + "baric\n", + "barilla\n", + "barillas\n", + "baring\n", + "barite\n", + "barites\n", + "baritone\n", + "baritones\n", + "barium\n", + "bariums\n", + "bark\n", + "barked\n", + "barkeep\n", + "barkeeps\n", + "barker\n", + "barkers\n", + "barkier\n", + "barkiest\n", + "barking\n", + "barkless\n", + "barks\n", + "barky\n", + "barleduc\n", + "barleducs\n", + "barless\n", + "barley\n", + "barleys\n", + "barlow\n", + "barlows\n", + "barm\n", + "barmaid\n", + "barmaids\n", + "barman\n", + "barmen\n", + "barmie\n", + "barmier\n", + "barmiest\n", + "barms\n", + "barmy\n", + "barn\n", + "barnacle\n", + "barnacles\n", + "barnier\n", + "barniest\n", + "barns\n", + "barnstorm\n", + "barnstorms\n", + "barny\n", + "barnyard\n", + "barnyards\n", + "barogram\n", + "barograms\n", + "barometer\n", + "barometers\n", + "barometric\n", + "barometrical\n", + "baron\n", + "baronage\n", + "baronages\n", + "baroness\n", + "baronesses\n", + "baronet\n", + "baronetcies\n", + "baronetcy\n", + "baronets\n", + "barong\n", + "barongs\n", + "baronial\n", + "baronies\n", + "baronne\n", + "baronnes\n", + "barons\n", + "barony\n", + "baroque\n", + "baroques\n", + "barouche\n", + "barouches\n", + "barque\n", + "barques\n", + "barrable\n", + "barrack\n", + "barracked\n", + "barracking\n", + "barracks\n", + "barracuda\n", + "barracudas\n", + "barrage\n", + "barraged\n", + "barrages\n", + "barraging\n", + "barranca\n", + "barrancas\n", + "barranco\n", + "barrancos\n", + "barrater\n", + "barraters\n", + "barrator\n", + "barrators\n", + "barratries\n", + "barratry\n", + "barre\n", + "barred\n", + "barrel\n", + "barreled\n", + "barreling\n", + "barrelled\n", + "barrelling\n", + "barrels\n", + "barren\n", + "barrener\n", + "barrenest\n", + "barrenly\n", + "barrenness\n", + "barrennesses\n", + "barrens\n", + "barres\n", + "barret\n", + "barretor\n", + "barretors\n", + "barretries\n", + "barretry\n", + "barrets\n", + "barrette\n", + "barrettes\n", + "barricade\n", + "barricades\n", + "barrier\n", + "barriers\n", + "barring\n", + "barrio\n", + "barrios\n", + "barrister\n", + "barristers\n", + "barroom\n", + "barrooms\n", + "barrow\n", + "barrows\n", + "bars\n", + "barstool\n", + "barstools\n", + "bartend\n", + "bartended\n", + "bartender\n", + "bartenders\n", + "bartending\n", + "bartends\n", + "barter\n", + "bartered\n", + "barterer\n", + "barterers\n", + "bartering\n", + "barters\n", + "bartholomew\n", + "bartisan\n", + "bartisans\n", + "bartizan\n", + "bartizans\n", + "barware\n", + "barwares\n", + "barye\n", + "baryes\n", + "baryon\n", + "baryonic\n", + "baryons\n", + "baryta\n", + "barytas\n", + "baryte\n", + "barytes\n", + "barytic\n", + "barytone\n", + "barytones\n", + "bas\n", + "basal\n", + "basally\n", + "basalt\n", + "basaltes\n", + "basaltic\n", + "basalts\n", + "bascule\n", + "bascules\n", + "base\n", + "baseball\n", + "baseballs\n", + "baseborn\n", + "based\n", + "baseless\n", + "baseline\n", + "baselines\n", + "basely\n", + "baseman\n", + "basemen\n", + "basement\n", + "basements\n", + "baseness\n", + "basenesses\n", + "basenji\n", + "basenjis\n", + "baser\n", + "bases\n", + "basest\n", + "bash\n", + "bashaw\n", + "bashaws\n", + "bashed\n", + "basher\n", + "bashers\n", + "bashes\n", + "bashful\n", + "bashfulness\n", + "bashfulnesses\n", + "bashing\n", + "bashlyk\n", + "bashlyks\n", + "basic\n", + "basically\n", + "basicities\n", + "basicity\n", + "basics\n", + "basidia\n", + "basidial\n", + "basidium\n", + "basified\n", + "basifier\n", + "basifiers\n", + "basifies\n", + "basify\n", + "basifying\n", + "basil\n", + "basilar\n", + "basilary\n", + "basilic\n", + "basilica\n", + "basilicae\n", + "basilicas\n", + "basilisk\n", + "basilisks\n", + "basils\n", + "basin\n", + "basinal\n", + "basined\n", + "basinet\n", + "basinets\n", + "basing\n", + "basins\n", + "basion\n", + "basions\n", + "basis\n", + "bask\n", + "basked\n", + "basket\n", + "basketball\n", + "basketballs\n", + "basketful\n", + "basketfuls\n", + "basketries\n", + "basketry\n", + "baskets\n", + "basking\n", + "basks\n", + "basophil\n", + "basophils\n", + "basque\n", + "basques\n", + "bass\n", + "basses\n", + "basset\n", + "basseted\n", + "basseting\n", + "bassets\n", + "bassetted\n", + "bassetting\n", + "bassi\n", + "bassinet\n", + "bassinets\n", + "bassist\n", + "bassists\n", + "bassly\n", + "bassness\n", + "bassnesses\n", + "basso\n", + "bassoon\n", + "bassoons\n", + "bassos\n", + "basswood\n", + "basswoods\n", + "bassy\n", + "bast\n", + "bastard\n", + "bastardies\n", + "bastardize\n", + "bastardized\n", + "bastardizes\n", + "bastardizing\n", + "bastards\n", + "bastardy\n", + "baste\n", + "basted\n", + "baster\n", + "basters\n", + "bastes\n", + "bastile\n", + "bastiles\n", + "bastille\n", + "bastilles\n", + "basting\n", + "bastings\n", + "bastion\n", + "bastioned\n", + "bastions\n", + "basts\n", + "bat\n", + "batboy\n", + "batboys\n", + "batch\n", + "batched\n", + "batcher\n", + "batchers\n", + "batches\n", + "batching\n", + "bate\n", + "bateau\n", + "bateaux\n", + "bated\n", + "bates\n", + "batfish\n", + "batfishes\n", + "batfowl\n", + "batfowled\n", + "batfowling\n", + "batfowls\n", + "bath\n", + "bathe\n", + "bathed\n", + "bather\n", + "bathers\n", + "bathes\n", + "bathetic\n", + "bathing\n", + "bathless\n", + "bathos\n", + "bathoses\n", + "bathrobe\n", + "bathrobes\n", + "bathroom\n", + "bathrooms\n", + "baths\n", + "bathtub\n", + "bathtubs\n", + "bathyal\n", + "batik\n", + "batiks\n", + "bating\n", + "batiste\n", + "batistes\n", + "batlike\n", + "batman\n", + "batmen\n", + "baton\n", + "batons\n", + "bats\n", + "batsman\n", + "batsmen\n", + "batt\n", + "battalia\n", + "battalias\n", + "battalion\n", + "battalions\n", + "batteau\n", + "batteaux\n", + "batted\n", + "batten\n", + "battened\n", + "battener\n", + "batteners\n", + "battening\n", + "battens\n", + "batter\n", + "battered\n", + "batterie\n", + "batteries\n", + "battering\n", + "batters\n", + "battery\n", + "battier\n", + "battiest\n", + "battik\n", + "battiks\n", + "batting\n", + "battings\n", + "battle\n", + "battled\n", + "battlefield\n", + "battlefields\n", + "battlement\n", + "battlements\n", + "battler\n", + "battlers\n", + "battles\n", + "battleship\n", + "battleships\n", + "battling\n", + "batts\n", + "battu\n", + "battue\n", + "battues\n", + "batty\n", + "batwing\n", + "baubee\n", + "baubees\n", + "bauble\n", + "baubles\n", + "baud\n", + "baudekin\n", + "baudekins\n", + "baudrons\n", + "baudronses\n", + "bauds\n", + "baulk\n", + "baulked\n", + "baulkier\n", + "baulkiest\n", + "baulking\n", + "baulks\n", + "baulky\n", + "bausond\n", + "bauxite\n", + "bauxites\n", + "bauxitic\n", + "bawbee\n", + "bawbees\n", + "bawcock\n", + "bawcocks\n", + "bawd\n", + "bawdier\n", + "bawdies\n", + "bawdiest\n", + "bawdily\n", + "bawdiness\n", + "bawdinesses\n", + "bawdric\n", + "bawdrics\n", + "bawdries\n", + "bawdry\n", + "bawds\n", + "bawdy\n", + "bawl\n", + "bawled\n", + "bawler\n", + "bawlers\n", + "bawling\n", + "bawls\n", + "bawsunt\n", + "bawtie\n", + "bawties\n", + "bawty\n", + "bay\n", + "bayadeer\n", + "bayadeers\n", + "bayadere\n", + "bayaderes\n", + "bayamo\n", + "bayamos\n", + "bayard\n", + "bayards\n", + "bayberries\n", + "bayberry\n", + "bayed\n", + "baying\n", + "bayonet\n", + "bayoneted\n", + "bayoneting\n", + "bayonets\n", + "bayonetted\n", + "bayonetting\n", + "bayou\n", + "bayous\n", + "bays\n", + "baywood\n", + "baywoods\n", + "bazaar\n", + "bazaars\n", + "bazar\n", + "bazars\n", + "bazooka\n", + "bazookas\n", + "bdellium\n", + "bdelliums\n", + "be\n", + "beach\n", + "beachboy\n", + "beachboys\n", + "beachcomber\n", + "beachcombers\n", + "beached\n", + "beaches\n", + "beachhead\n", + "beachheads\n", + "beachier\n", + "beachiest\n", + "beaching\n", + "beachy\n", + "beacon\n", + "beaconed\n", + "beaconing\n", + "beacons\n", + "bead\n", + "beaded\n", + "beadier\n", + "beadiest\n", + "beadily\n", + "beading\n", + "beadings\n", + "beadle\n", + "beadles\n", + "beadlike\n", + "beadman\n", + "beadmen\n", + "beadroll\n", + "beadrolls\n", + "beads\n", + "beadsman\n", + "beadsmen\n", + "beadwork\n", + "beadworks\n", + "beady\n", + "beagle\n", + "beagles\n", + "beak\n", + "beaked\n", + "beaker\n", + "beakers\n", + "beakier\n", + "beakiest\n", + "beakless\n", + "beaklike\n", + "beaks\n", + "beaky\n", + "beam\n", + "beamed\n", + "beamier\n", + "beamiest\n", + "beamily\n", + "beaming\n", + "beamish\n", + "beamless\n", + "beamlike\n", + "beams\n", + "beamy\n", + "bean\n", + "beanbag\n", + "beanbags\n", + "beanball\n", + "beanballs\n", + "beaned\n", + "beaneries\n", + "beanery\n", + "beanie\n", + "beanies\n", + "beaning\n", + "beanlike\n", + "beano\n", + "beanos\n", + "beanpole\n", + "beanpoles\n", + "beans\n", + "bear\n", + "bearable\n", + "bearably\n", + "bearcat\n", + "bearcats\n", + "beard\n", + "bearded\n", + "bearding\n", + "beardless\n", + "beards\n", + "bearer\n", + "bearers\n", + "bearing\n", + "bearings\n", + "bearish\n", + "bearlike\n", + "bears\n", + "bearskin\n", + "bearskins\n", + "beast\n", + "beastie\n", + "beasties\n", + "beastlier\n", + "beastliest\n", + "beastliness\n", + "beastlinesses\n", + "beastly\n", + "beasts\n", + "beat\n", + "beatable\n", + "beaten\n", + "beater\n", + "beaters\n", + "beatific\n", + "beatification\n", + "beatifications\n", + "beatified\n", + "beatifies\n", + "beatify\n", + "beatifying\n", + "beating\n", + "beatings\n", + "beatless\n", + "beatnik\n", + "beatniks\n", + "beats\n", + "beau\n", + "beauish\n", + "beaus\n", + "beaut\n", + "beauteously\n", + "beauties\n", + "beautification\n", + "beautifications\n", + "beautified\n", + "beautifies\n", + "beautiful\n", + "beautifully\n", + "beautify\n", + "beautifying\n", + "beauts\n", + "beauty\n", + "beaux\n", + "beaver\n", + "beavered\n", + "beavering\n", + "beavers\n", + "bebeeru\n", + "bebeerus\n", + "beblood\n", + "beblooded\n", + "beblooding\n", + "bebloods\n", + "bebop\n", + "bebopper\n", + "beboppers\n", + "bebops\n", + "becalm\n", + "becalmed\n", + "becalming\n", + "becalms\n", + "became\n", + "becap\n", + "becapped\n", + "becapping\n", + "becaps\n", + "becarpet\n", + "becarpeted\n", + "becarpeting\n", + "becarpets\n", + "because\n", + "bechalk\n", + "bechalked\n", + "bechalking\n", + "bechalks\n", + "bechamel\n", + "bechamels\n", + "bechance\n", + "bechanced\n", + "bechances\n", + "bechancing\n", + "becharm\n", + "becharmed\n", + "becharming\n", + "becharms\n", + "beck\n", + "becked\n", + "becket\n", + "beckets\n", + "becking\n", + "beckon\n", + "beckoned\n", + "beckoner\n", + "beckoners\n", + "beckoning\n", + "beckons\n", + "becks\n", + "beclamor\n", + "beclamored\n", + "beclamoring\n", + "beclamors\n", + "beclasp\n", + "beclasped\n", + "beclasping\n", + "beclasps\n", + "becloak\n", + "becloaked\n", + "becloaking\n", + "becloaks\n", + "beclog\n", + "beclogged\n", + "beclogging\n", + "beclogs\n", + "beclothe\n", + "beclothed\n", + "beclothes\n", + "beclothing\n", + "becloud\n", + "beclouded\n", + "beclouding\n", + "beclouds\n", + "beclown\n", + "beclowned\n", + "beclowning\n", + "beclowns\n", + "become\n", + "becomes\n", + "becoming\n", + "becomingly\n", + "becomings\n", + "becoward\n", + "becowarded\n", + "becowarding\n", + "becowards\n", + "becrawl\n", + "becrawled\n", + "becrawling\n", + "becrawls\n", + "becrime\n", + "becrimed\n", + "becrimes\n", + "becriming\n", + "becrowd\n", + "becrowded\n", + "becrowding\n", + "becrowds\n", + "becrust\n", + "becrusted\n", + "becrusting\n", + "becrusts\n", + "becudgel\n", + "becudgeled\n", + "becudgeling\n", + "becudgelled\n", + "becudgelling\n", + "becudgels\n", + "becurse\n", + "becursed\n", + "becurses\n", + "becursing\n", + "becurst\n", + "bed\n", + "bedabble\n", + "bedabbled\n", + "bedabbles\n", + "bedabbling\n", + "bedamn\n", + "bedamned\n", + "bedamning\n", + "bedamns\n", + "bedarken\n", + "bedarkened\n", + "bedarkening\n", + "bedarkens\n", + "bedaub\n", + "bedaubed\n", + "bedaubing\n", + "bedaubs\n", + "bedazzle\n", + "bedazzled\n", + "bedazzles\n", + "bedazzling\n", + "bedbug\n", + "bedbugs\n", + "bedchair\n", + "bedchairs\n", + "bedclothes\n", + "bedcover\n", + "bedcovers\n", + "bedded\n", + "bedder\n", + "bedders\n", + "bedding\n", + "beddings\n", + "bedeafen\n", + "bedeafened\n", + "bedeafening\n", + "bedeafens\n", + "bedeck\n", + "bedecked\n", + "bedecking\n", + "bedecks\n", + "bedel\n", + "bedell\n", + "bedells\n", + "bedels\n", + "bedeman\n", + "bedemen\n", + "bedesman\n", + "bedesmen\n", + "bedevil\n", + "bedeviled\n", + "bedeviling\n", + "bedevilled\n", + "bedevilling\n", + "bedevils\n", + "bedew\n", + "bedewed\n", + "bedewing\n", + "bedews\n", + "bedfast\n", + "bedframe\n", + "bedframes\n", + "bedgown\n", + "bedgowns\n", + "bediaper\n", + "bediapered\n", + "bediapering\n", + "bediapers\n", + "bedight\n", + "bedighted\n", + "bedighting\n", + "bedights\n", + "bedim\n", + "bedimmed\n", + "bedimming\n", + "bedimple\n", + "bedimpled\n", + "bedimples\n", + "bedimpling\n", + "bedims\n", + "bedirtied\n", + "bedirties\n", + "bedirty\n", + "bedirtying\n", + "bedizen\n", + "bedizened\n", + "bedizening\n", + "bedizens\n", + "bedlam\n", + "bedlamp\n", + "bedlamps\n", + "bedlams\n", + "bedless\n", + "bedlike\n", + "bedmaker\n", + "bedmakers\n", + "bedmate\n", + "bedmates\n", + "bedotted\n", + "bedouin\n", + "bedouins\n", + "bedpan\n", + "bedpans\n", + "bedplate\n", + "bedplates\n", + "bedpost\n", + "bedposts\n", + "bedquilt\n", + "bedquilts\n", + "bedraggled\n", + "bedrail\n", + "bedrails\n", + "bedrape\n", + "bedraped\n", + "bedrapes\n", + "bedraping\n", + "bedrench\n", + "bedrenched\n", + "bedrenches\n", + "bedrenching\n", + "bedrid\n", + "bedridden\n", + "bedrivel\n", + "bedriveled\n", + "bedriveling\n", + "bedrivelled\n", + "bedrivelling\n", + "bedrivels\n", + "bedrock\n", + "bedrocks\n", + "bedroll\n", + "bedrolls\n", + "bedroom\n", + "bedrooms\n", + "bedrug\n", + "bedrugged\n", + "bedrugging\n", + "bedrugs\n", + "beds\n", + "bedside\n", + "bedsides\n", + "bedsonia\n", + "bedsonias\n", + "bedsore\n", + "bedsores\n", + "bedspread\n", + "bedspreads\n", + "bedstand\n", + "bedstands\n", + "bedstead\n", + "bedsteads\n", + "bedstraw\n", + "bedstraws\n", + "bedtick\n", + "bedticks\n", + "bedtime\n", + "bedtimes\n", + "beduin\n", + "beduins\n", + "bedumb\n", + "bedumbed\n", + "bedumbing\n", + "bedumbs\n", + "bedunce\n", + "bedunced\n", + "bedunces\n", + "beduncing\n", + "bedward\n", + "bedwards\n", + "bedwarf\n", + "bedwarfed\n", + "bedwarfing\n", + "bedwarfs\n", + "bee\n", + "beebee\n", + "beebees\n", + "beebread\n", + "beebreads\n", + "beech\n", + "beechen\n", + "beeches\n", + "beechier\n", + "beechiest\n", + "beechnut\n", + "beechnuts\n", + "beechy\n", + "beef\n", + "beefcake\n", + "beefcakes\n", + "beefed\n", + "beefier\n", + "beefiest\n", + "beefily\n", + "beefing\n", + "beefless\n", + "beefs\n", + "beefsteak\n", + "beefsteaks\n", + "beefwood\n", + "beefwoods\n", + "beefy\n", + "beehive\n", + "beehives\n", + "beelike\n", + "beeline\n", + "beelines\n", + "beelzebub\n", + "been\n", + "beep\n", + "beeped\n", + "beeper\n", + "beepers\n", + "beeping\n", + "beeps\n", + "beer\n", + "beerier\n", + "beeriest\n", + "beers\n", + "beery\n", + "bees\n", + "beeswax\n", + "beeswaxes\n", + "beeswing\n", + "beeswings\n", + "beet\n", + "beetle\n", + "beetled\n", + "beetles\n", + "beetling\n", + "beetroot\n", + "beetroots\n", + "beets\n", + "beeves\n", + "befall\n", + "befallen\n", + "befalling\n", + "befalls\n", + "befell\n", + "befinger\n", + "befingered\n", + "befingering\n", + "befingers\n", + "befit\n", + "befits\n", + "befitted\n", + "befitting\n", + "beflag\n", + "beflagged\n", + "beflagging\n", + "beflags\n", + "beflea\n", + "befleaed\n", + "befleaing\n", + "befleas\n", + "befleck\n", + "beflecked\n", + "beflecking\n", + "beflecks\n", + "beflower\n", + "beflowered\n", + "beflowering\n", + "beflowers\n", + "befog\n", + "befogged\n", + "befogging\n", + "befogs\n", + "befool\n", + "befooled\n", + "befooling\n", + "befools\n", + "before\n", + "beforehand\n", + "befoul\n", + "befouled\n", + "befouler\n", + "befoulers\n", + "befouling\n", + "befouls\n", + "befret\n", + "befrets\n", + "befretted\n", + "befretting\n", + "befriend\n", + "befriended\n", + "befriending\n", + "befriends\n", + "befringe\n", + "befringed\n", + "befringes\n", + "befringing\n", + "befuddle\n", + "befuddled\n", + "befuddles\n", + "befuddling\n", + "beg\n", + "begall\n", + "begalled\n", + "begalling\n", + "begalls\n", + "began\n", + "begat\n", + "begaze\n", + "begazed\n", + "begazes\n", + "begazing\n", + "beget\n", + "begets\n", + "begetter\n", + "begetters\n", + "begetting\n", + "beggar\n", + "beggared\n", + "beggaries\n", + "beggaring\n", + "beggarly\n", + "beggars\n", + "beggary\n", + "begged\n", + "begging\n", + "begin\n", + "beginner\n", + "beginners\n", + "beginning\n", + "beginnings\n", + "begins\n", + "begird\n", + "begirded\n", + "begirding\n", + "begirdle\n", + "begirdled\n", + "begirdles\n", + "begirdling\n", + "begirds\n", + "begirt\n", + "beglad\n", + "begladded\n", + "begladding\n", + "beglads\n", + "begloom\n", + "begloomed\n", + "beglooming\n", + "beglooms\n", + "begone\n", + "begonia\n", + "begonias\n", + "begorah\n", + "begorra\n", + "begorrah\n", + "begot\n", + "begotten\n", + "begrim\n", + "begrime\n", + "begrimed\n", + "begrimes\n", + "begriming\n", + "begrimmed\n", + "begrimming\n", + "begrims\n", + "begroan\n", + "begroaned\n", + "begroaning\n", + "begroans\n", + "begrudge\n", + "begrudged\n", + "begrudges\n", + "begrudging\n", + "begs\n", + "beguile\n", + "beguiled\n", + "beguiler\n", + "beguilers\n", + "beguiles\n", + "beguiling\n", + "beguine\n", + "beguines\n", + "begulf\n", + "begulfed\n", + "begulfing\n", + "begulfs\n", + "begum\n", + "begums\n", + "begun\n", + "behalf\n", + "behalves\n", + "behave\n", + "behaved\n", + "behaver\n", + "behavers\n", + "behaves\n", + "behaving\n", + "behavior\n", + "behavioral\n", + "behaviors\n", + "behead\n", + "beheaded\n", + "beheading\n", + "beheads\n", + "beheld\n", + "behemoth\n", + "behemoths\n", + "behest\n", + "behests\n", + "behind\n", + "behinds\n", + "behold\n", + "beholden\n", + "beholder\n", + "beholders\n", + "beholding\n", + "beholds\n", + "behoof\n", + "behoove\n", + "behooved\n", + "behooves\n", + "behooving\n", + "behove\n", + "behoved\n", + "behoves\n", + "behoving\n", + "behowl\n", + "behowled\n", + "behowling\n", + "behowls\n", + "beige\n", + "beiges\n", + "beigy\n", + "being\n", + "beings\n", + "bejewel\n", + "bejeweled\n", + "bejeweling\n", + "bejewelled\n", + "bejewelling\n", + "bejewels\n", + "bejumble\n", + "bejumbled\n", + "bejumbles\n", + "bejumbling\n", + "bekiss\n", + "bekissed\n", + "bekisses\n", + "bekissing\n", + "beknight\n", + "beknighted\n", + "beknighting\n", + "beknights\n", + "beknot\n", + "beknots\n", + "beknotted\n", + "beknotting\n", + "bel\n", + "belabor\n", + "belabored\n", + "belaboring\n", + "belabors\n", + "belabour\n", + "belaboured\n", + "belabouring\n", + "belabours\n", + "belaced\n", + "beladied\n", + "beladies\n", + "belady\n", + "beladying\n", + "belated\n", + "belaud\n", + "belauded\n", + "belauding\n", + "belauds\n", + "belay\n", + "belayed\n", + "belaying\n", + "belays\n", + "belch\n", + "belched\n", + "belcher\n", + "belchers\n", + "belches\n", + "belching\n", + "beldam\n", + "beldame\n", + "beldames\n", + "beldams\n", + "beleaguer\n", + "beleaguered\n", + "beleaguering\n", + "beleaguers\n", + "beleap\n", + "beleaped\n", + "beleaping\n", + "beleaps\n", + "beleapt\n", + "belfried\n", + "belfries\n", + "belfry\n", + "belga\n", + "belgas\n", + "belie\n", + "belied\n", + "belief\n", + "beliefs\n", + "belier\n", + "beliers\n", + "belies\n", + "believable\n", + "believably\n", + "believe\n", + "believed\n", + "believer\n", + "believers\n", + "believes\n", + "believing\n", + "belike\n", + "beliquor\n", + "beliquored\n", + "beliquoring\n", + "beliquors\n", + "belittle\n", + "belittled\n", + "belittles\n", + "belittling\n", + "belive\n", + "bell\n", + "belladonna\n", + "belladonnas\n", + "bellbird\n", + "bellbirds\n", + "bellboy\n", + "bellboys\n", + "belle\n", + "belled\n", + "belleek\n", + "belleeks\n", + "belles\n", + "bellhop\n", + "bellhops\n", + "bellicose\n", + "bellicosities\n", + "bellicosity\n", + "bellied\n", + "bellies\n", + "belligerence\n", + "belligerences\n", + "belligerencies\n", + "belligerency\n", + "belligerent\n", + "belligerents\n", + "belling\n", + "bellman\n", + "bellmen\n", + "bellow\n", + "bellowed\n", + "bellower\n", + "bellowers\n", + "bellowing\n", + "bellows\n", + "bellpull\n", + "bellpulls\n", + "bells\n", + "bellwether\n", + "bellwethers\n", + "bellwort\n", + "bellworts\n", + "belly\n", + "bellyache\n", + "bellyached\n", + "bellyaches\n", + "bellyaching\n", + "bellyful\n", + "bellyfuls\n", + "bellying\n", + "belong\n", + "belonged\n", + "belonging\n", + "belongings\n", + "belongs\n", + "beloved\n", + "beloveds\n", + "below\n", + "belows\n", + "bels\n", + "belt\n", + "belted\n", + "belting\n", + "beltings\n", + "beltless\n", + "beltline\n", + "beltlines\n", + "belts\n", + "beltway\n", + "beltways\n", + "beluga\n", + "belugas\n", + "belying\n", + "bema\n", + "bemadam\n", + "bemadamed\n", + "bemadaming\n", + "bemadams\n", + "bemadden\n", + "bemaddened\n", + "bemaddening\n", + "bemaddens\n", + "bemas\n", + "bemata\n", + "bemean\n", + "bemeaned\n", + "bemeaning\n", + "bemeans\n", + "bemingle\n", + "bemingled\n", + "bemingles\n", + "bemingling\n", + "bemire\n", + "bemired\n", + "bemires\n", + "bemiring\n", + "bemist\n", + "bemisted\n", + "bemisting\n", + "bemists\n", + "bemix\n", + "bemixed\n", + "bemixes\n", + "bemixing\n", + "bemixt\n", + "bemoan\n", + "bemoaned\n", + "bemoaning\n", + "bemoans\n", + "bemock\n", + "bemocked\n", + "bemocking\n", + "bemocks\n", + "bemuddle\n", + "bemuddled\n", + "bemuddles\n", + "bemuddling\n", + "bemurmur\n", + "bemurmured\n", + "bemurmuring\n", + "bemurmurs\n", + "bemuse\n", + "bemused\n", + "bemuses\n", + "bemusing\n", + "bemuzzle\n", + "bemuzzled\n", + "bemuzzles\n", + "bemuzzling\n", + "ben\n", + "bename\n", + "benamed\n", + "benames\n", + "benaming\n", + "bench\n", + "benched\n", + "bencher\n", + "benchers\n", + "benches\n", + "benching\n", + "bend\n", + "bendable\n", + "benday\n", + "bendayed\n", + "bendaying\n", + "bendays\n", + "bended\n", + "bendee\n", + "bendees\n", + "bender\n", + "benders\n", + "bending\n", + "bends\n", + "bendways\n", + "bendwise\n", + "bendy\n", + "bendys\n", + "bene\n", + "beneath\n", + "benedick\n", + "benedicks\n", + "benedict\n", + "benediction\n", + "benedictions\n", + "benedicts\n", + "benefaction\n", + "benefactions\n", + "benefactor\n", + "benefactors\n", + "benefactress\n", + "benefactresses\n", + "benefic\n", + "benefice\n", + "beneficed\n", + "beneficence\n", + "beneficences\n", + "beneficent\n", + "benefices\n", + "beneficial\n", + "beneficially\n", + "beneficiaries\n", + "beneficiary\n", + "beneficing\n", + "benefit\n", + "benefited\n", + "benefiting\n", + "benefits\n", + "benefitted\n", + "benefitting\n", + "benempt\n", + "benempted\n", + "benes\n", + "benevolence\n", + "benevolences\n", + "benevolent\n", + "benign\n", + "benignities\n", + "benignity\n", + "benignly\n", + "benison\n", + "benisons\n", + "benjamin\n", + "benjamins\n", + "benne\n", + "bennes\n", + "bennet\n", + "bennets\n", + "benni\n", + "bennies\n", + "bennis\n", + "benny\n", + "bens\n", + "bent\n", + "benthal\n", + "benthic\n", + "benthos\n", + "benthoses\n", + "bents\n", + "bentwood\n", + "bentwoods\n", + "benumb\n", + "benumbed\n", + "benumbing\n", + "benumbs\n", + "benzal\n", + "benzene\n", + "benzenes\n", + "benzidin\n", + "benzidins\n", + "benzin\n", + "benzine\n", + "benzines\n", + "benzins\n", + "benzoate\n", + "benzoates\n", + "benzoic\n", + "benzoin\n", + "benzoins\n", + "benzol\n", + "benzole\n", + "benzoles\n", + "benzols\n", + "benzoyl\n", + "benzoyls\n", + "benzyl\n", + "benzylic\n", + "benzyls\n", + "bepaint\n", + "bepainted\n", + "bepainting\n", + "bepaints\n", + "bepimple\n", + "bepimpled\n", + "bepimples\n", + "bepimpling\n", + "bequeath\n", + "bequeathed\n", + "bequeathing\n", + "bequeaths\n", + "bequest\n", + "bequests\n", + "berake\n", + "beraked\n", + "berakes\n", + "beraking\n", + "berascal\n", + "berascaled\n", + "berascaling\n", + "berascals\n", + "berate\n", + "berated\n", + "berates\n", + "berating\n", + "berberin\n", + "berberins\n", + "berceuse\n", + "berceuses\n", + "bereave\n", + "bereaved\n", + "bereavement\n", + "bereavements\n", + "bereaver\n", + "bereavers\n", + "bereaves\n", + "bereaving\n", + "bereft\n", + "beret\n", + "berets\n", + "beretta\n", + "berettas\n", + "berg\n", + "bergamot\n", + "bergamots\n", + "bergs\n", + "berhyme\n", + "berhymed\n", + "berhymes\n", + "berhyming\n", + "beriber\n", + "beribers\n", + "berime\n", + "berimed\n", + "berimes\n", + "beriming\n", + "beringed\n", + "berlin\n", + "berline\n", + "berlines\n", + "berlins\n", + "berm\n", + "berme\n", + "bermes\n", + "berms\n", + "bernicle\n", + "bernicles\n", + "bernstein\n", + "berobed\n", + "berouged\n", + "berretta\n", + "berrettas\n", + "berried\n", + "berries\n", + "berry\n", + "berrying\n", + "berseem\n", + "berseems\n", + "berserk\n", + "berserks\n", + "berth\n", + "bertha\n", + "berthas\n", + "berthed\n", + "berthing\n", + "berths\n", + "beryl\n", + "beryline\n", + "beryls\n", + "bescorch\n", + "bescorched\n", + "bescorches\n", + "bescorching\n", + "bescour\n", + "bescoured\n", + "bescouring\n", + "bescours\n", + "bescreen\n", + "bescreened\n", + "bescreening\n", + "bescreens\n", + "beseech\n", + "beseeched\n", + "beseeches\n", + "beseeching\n", + "beseem\n", + "beseemed\n", + "beseeming\n", + "beseems\n", + "beset\n", + "besets\n", + "besetter\n", + "besetters\n", + "besetting\n", + "beshadow\n", + "beshadowed\n", + "beshadowing\n", + "beshadows\n", + "beshame\n", + "beshamed\n", + "beshames\n", + "beshaming\n", + "beshiver\n", + "beshivered\n", + "beshivering\n", + "beshivers\n", + "beshout\n", + "beshouted\n", + "beshouting\n", + "beshouts\n", + "beshrew\n", + "beshrewed\n", + "beshrewing\n", + "beshrews\n", + "beshroud\n", + "beshrouded\n", + "beshrouding\n", + "beshrouds\n", + "beside\n", + "besides\n", + "besiege\n", + "besieged\n", + "besieger\n", + "besiegers\n", + "besieges\n", + "besieging\n", + "beslaved\n", + "beslime\n", + "beslimed\n", + "beslimes\n", + "besliming\n", + "besmear\n", + "besmeared\n", + "besmearing\n", + "besmears\n", + "besmile\n", + "besmiled\n", + "besmiles\n", + "besmiling\n", + "besmirch\n", + "besmirched\n", + "besmirches\n", + "besmirching\n", + "besmoke\n", + "besmoked\n", + "besmokes\n", + "besmoking\n", + "besmooth\n", + "besmoothed\n", + "besmoothing\n", + "besmooths\n", + "besmudge\n", + "besmudged\n", + "besmudges\n", + "besmudging\n", + "besmut\n", + "besmuts\n", + "besmutted\n", + "besmutting\n", + "besnow\n", + "besnowed\n", + "besnowing\n", + "besnows\n", + "besom\n", + "besoms\n", + "besoothe\n", + "besoothed\n", + "besoothes\n", + "besoothing\n", + "besot\n", + "besots\n", + "besotted\n", + "besotting\n", + "besought\n", + "bespake\n", + "bespeak\n", + "bespeaking\n", + "bespeaks\n", + "bespoke\n", + "bespoken\n", + "bespouse\n", + "bespoused\n", + "bespouses\n", + "bespousing\n", + "bespread\n", + "bespreading\n", + "bespreads\n", + "besprent\n", + "best\n", + "bestead\n", + "besteaded\n", + "besteading\n", + "besteads\n", + "bested\n", + "bestial\n", + "bestialities\n", + "bestiality\n", + "bestiaries\n", + "bestiary\n", + "besting\n", + "bestir\n", + "bestirred\n", + "bestirring\n", + "bestirs\n", + "bestow\n", + "bestowal\n", + "bestowals\n", + "bestowed\n", + "bestowing\n", + "bestows\n", + "bestrew\n", + "bestrewed\n", + "bestrewing\n", + "bestrewn\n", + "bestrews\n", + "bestrid\n", + "bestridden\n", + "bestride\n", + "bestrides\n", + "bestriding\n", + "bestrode\n", + "bestrow\n", + "bestrowed\n", + "bestrowing\n", + "bestrown\n", + "bestrows\n", + "bests\n", + "bestud\n", + "bestudded\n", + "bestudding\n", + "bestuds\n", + "beswarm\n", + "beswarmed\n", + "beswarming\n", + "beswarms\n", + "bet\n", + "beta\n", + "betaine\n", + "betaines\n", + "betake\n", + "betaken\n", + "betakes\n", + "betaking\n", + "betas\n", + "betatron\n", + "betatrons\n", + "betatter\n", + "betattered\n", + "betattering\n", + "betatters\n", + "betaxed\n", + "betel\n", + "betelnut\n", + "betelnuts\n", + "betels\n", + "beth\n", + "bethank\n", + "bethanked\n", + "bethanking\n", + "bethanks\n", + "bethel\n", + "bethels\n", + "bethink\n", + "bethinking\n", + "bethinks\n", + "bethorn\n", + "bethorned\n", + "bethorning\n", + "bethorns\n", + "bethought\n", + "beths\n", + "bethump\n", + "bethumped\n", + "bethumping\n", + "bethumps\n", + "betide\n", + "betided\n", + "betides\n", + "betiding\n", + "betime\n", + "betimes\n", + "betise\n", + "betises\n", + "betoken\n", + "betokened\n", + "betokening\n", + "betokens\n", + "beton\n", + "betonies\n", + "betons\n", + "betony\n", + "betook\n", + "betray\n", + "betrayal\n", + "betrayals\n", + "betrayed\n", + "betrayer\n", + "betrayers\n", + "betraying\n", + "betrays\n", + "betroth\n", + "betrothal\n", + "betrothals\n", + "betrothed\n", + "betrotheds\n", + "betrothing\n", + "betroths\n", + "bets\n", + "betta\n", + "bettas\n", + "betted\n", + "better\n", + "bettered\n", + "bettering\n", + "betterment\n", + "betterments\n", + "betters\n", + "betting\n", + "bettor\n", + "bettors\n", + "between\n", + "betwixt\n", + "beuncled\n", + "bevatron\n", + "bevatrons\n", + "bevel\n", + "beveled\n", + "beveler\n", + "bevelers\n", + "beveling\n", + "bevelled\n", + "beveller\n", + "bevellers\n", + "bevelling\n", + "bevels\n", + "beverage\n", + "beverages\n", + "bevies\n", + "bevomit\n", + "bevomited\n", + "bevomiting\n", + "bevomits\n", + "bevor\n", + "bevors\n", + "bevy\n", + "bewail\n", + "bewailed\n", + "bewailer\n", + "bewailers\n", + "bewailing\n", + "bewails\n", + "beware\n", + "bewared\n", + "bewares\n", + "bewaring\n", + "bewearied\n", + "bewearies\n", + "beweary\n", + "bewearying\n", + "beweep\n", + "beweeping\n", + "beweeps\n", + "bewept\n", + "bewig\n", + "bewigged\n", + "bewigging\n", + "bewigs\n", + "bewilder\n", + "bewildered\n", + "bewildering\n", + "bewilderment\n", + "bewilderments\n", + "bewilders\n", + "bewinged\n", + "bewitch\n", + "bewitched\n", + "bewitches\n", + "bewitching\n", + "beworm\n", + "bewormed\n", + "beworming\n", + "beworms\n", + "beworried\n", + "beworries\n", + "beworry\n", + "beworrying\n", + "bewrap\n", + "bewrapped\n", + "bewrapping\n", + "bewraps\n", + "bewrapt\n", + "bewray\n", + "bewrayed\n", + "bewrayer\n", + "bewrayers\n", + "bewraying\n", + "bewrays\n", + "bey\n", + "beylic\n", + "beylics\n", + "beylik\n", + "beyliks\n", + "beyond\n", + "beyonds\n", + "beys\n", + "bezant\n", + "bezants\n", + "bezel\n", + "bezels\n", + "bezil\n", + "bezils\n", + "bezique\n", + "beziques\n", + "bezoar\n", + "bezoars\n", + "bezzant\n", + "bezzants\n", + "bhakta\n", + "bhaktas\n", + "bhakti\n", + "bhaktis\n", + "bhang\n", + "bhangs\n", + "bheestie\n", + "bheesties\n", + "bheesty\n", + "bhistie\n", + "bhisties\n", + "bhoot\n", + "bhoots\n", + "bhut\n", + "bhuts\n", + "bi\n", + "biacetyl\n", + "biacetyls\n", + "bialy\n", + "bialys\n", + "biannual\n", + "biannually\n", + "bias\n", + "biased\n", + "biasedly\n", + "biases\n", + "biasing\n", + "biasness\n", + "biasnesses\n", + "biassed\n", + "biasses\n", + "biassing\n", + "biathlon\n", + "biathlons\n", + "biaxal\n", + "biaxial\n", + "bib\n", + "bibasic\n", + "bibasilar\n", + "bibb\n", + "bibbed\n", + "bibber\n", + "bibberies\n", + "bibbers\n", + "bibbery\n", + "bibbing\n", + "bibbs\n", + "bibcock\n", + "bibcocks\n", + "bibelot\n", + "bibelots\n", + "bible\n", + "bibles\n", + "bibless\n", + "biblical\n", + "biblike\n", + "bibliographer\n", + "bibliographers\n", + "bibliographic\n", + "bibliographical\n", + "bibliographies\n", + "bibliography\n", + "bibs\n", + "bibulous\n", + "bicameral\n", + "bicarb\n", + "bicarbonate\n", + "bicarbonates\n", + "bicarbs\n", + "bice\n", + "bicentennial\n", + "bicentennials\n", + "biceps\n", + "bicepses\n", + "bices\n", + "bichrome\n", + "bicker\n", + "bickered\n", + "bickerer\n", + "bickerers\n", + "bickering\n", + "bickers\n", + "bicolor\n", + "bicolored\n", + "bicolors\n", + "bicolour\n", + "bicolours\n", + "biconcave\n", + "biconcavities\n", + "biconcavity\n", + "biconvex\n", + "biconvexities\n", + "biconvexity\n", + "bicorn\n", + "bicorne\n", + "bicornes\n", + "bicron\n", + "bicrons\n", + "bicultural\n", + "bicuspid\n", + "bicuspids\n", + "bicycle\n", + "bicycled\n", + "bicycler\n", + "bicyclers\n", + "bicycles\n", + "bicyclic\n", + "bicycling\n", + "bid\n", + "bidarka\n", + "bidarkas\n", + "bidarkee\n", + "bidarkees\n", + "biddable\n", + "biddably\n", + "bidden\n", + "bidder\n", + "bidders\n", + "biddies\n", + "bidding\n", + "biddings\n", + "biddy\n", + "bide\n", + "bided\n", + "bidental\n", + "bider\n", + "biders\n", + "bides\n", + "bidet\n", + "bidets\n", + "biding\n", + "bidirectional\n", + "bids\n", + "bield\n", + "bielded\n", + "bielding\n", + "bields\n", + "biennia\n", + "biennial\n", + "biennially\n", + "biennials\n", + "biennium\n", + "bienniums\n", + "bier\n", + "biers\n", + "bifacial\n", + "biff\n", + "biffed\n", + "biffies\n", + "biffin\n", + "biffing\n", + "biffins\n", + "biffs\n", + "biffy\n", + "bifid\n", + "bifidities\n", + "bifidity\n", + "bifidly\n", + "bifilar\n", + "biflex\n", + "bifocal\n", + "bifocals\n", + "bifold\n", + "biforate\n", + "biforked\n", + "biform\n", + "biformed\n", + "bifunctional\n", + "big\n", + "bigamies\n", + "bigamist\n", + "bigamists\n", + "bigamous\n", + "bigamy\n", + "bigaroon\n", + "bigaroons\n", + "bigeminies\n", + "bigeminy\n", + "bigeye\n", + "bigeyes\n", + "bigger\n", + "biggest\n", + "biggety\n", + "biggie\n", + "biggies\n", + "biggin\n", + "bigging\n", + "biggings\n", + "biggins\n", + "biggish\n", + "biggity\n", + "bighead\n", + "bigheads\n", + "bighorn\n", + "bighorns\n", + "bight\n", + "bighted\n", + "bighting\n", + "bights\n", + "bigly\n", + "bigmouth\n", + "bigmouths\n", + "bigness\n", + "bignesses\n", + "bignonia\n", + "bignonias\n", + "bigot\n", + "bigoted\n", + "bigotries\n", + "bigotry\n", + "bigots\n", + "bigwig\n", + "bigwigs\n", + "bihourly\n", + "bijou\n", + "bijous\n", + "bijoux\n", + "bijugate\n", + "bijugous\n", + "bike\n", + "biked\n", + "biker\n", + "bikers\n", + "bikes\n", + "bikeway\n", + "bikeways\n", + "biking\n", + "bikini\n", + "bikinied\n", + "bikinis\n", + "bilabial\n", + "bilabials\n", + "bilander\n", + "bilanders\n", + "bilateral\n", + "bilaterally\n", + "bilberries\n", + "bilberry\n", + "bilbo\n", + "bilboa\n", + "bilboas\n", + "bilboes\n", + "bilbos\n", + "bile\n", + "biles\n", + "bilge\n", + "bilged\n", + "bilges\n", + "bilgier\n", + "bilgiest\n", + "bilging\n", + "bilgy\n", + "biliary\n", + "bilinear\n", + "bilingual\n", + "bilious\n", + "biliousness\n", + "biliousnesses\n", + "bilirubin\n", + "bilk\n", + "bilked\n", + "bilker\n", + "bilkers\n", + "bilking\n", + "bilks\n", + "bill\n", + "billable\n", + "billboard\n", + "billboards\n", + "billbug\n", + "billbugs\n", + "billed\n", + "biller\n", + "billers\n", + "billet\n", + "billeted\n", + "billeter\n", + "billeters\n", + "billeting\n", + "billets\n", + "billfish\n", + "billfishes\n", + "billfold\n", + "billfolds\n", + "billhead\n", + "billheads\n", + "billhook\n", + "billhooks\n", + "billiard\n", + "billiards\n", + "billie\n", + "billies\n", + "billing\n", + "billings\n", + "billion\n", + "billions\n", + "billionth\n", + "billionths\n", + "billon\n", + "billons\n", + "billow\n", + "billowed\n", + "billowier\n", + "billowiest\n", + "billowing\n", + "billows\n", + "billowy\n", + "bills\n", + "billy\n", + "billycan\n", + "billycans\n", + "bilobate\n", + "bilobed\n", + "bilsted\n", + "bilsteds\n", + "biltong\n", + "biltongs\n", + "bima\n", + "bimah\n", + "bimahs\n", + "bimanous\n", + "bimanual\n", + "bimas\n", + "bimensal\n", + "bimester\n", + "bimesters\n", + "bimetal\n", + "bimetallic\n", + "bimetals\n", + "bimethyl\n", + "bimethyls\n", + "bimodal\n", + "bin\n", + "binal\n", + "binaries\n", + "binary\n", + "binate\n", + "binately\n", + "binational\n", + "binationalism\n", + "binationalisms\n", + "binaural\n", + "bind\n", + "bindable\n", + "binder\n", + "binderies\n", + "binders\n", + "bindery\n", + "binding\n", + "bindings\n", + "bindle\n", + "bindles\n", + "binds\n", + "bindweed\n", + "bindweeds\n", + "bine\n", + "bines\n", + "binge\n", + "binges\n", + "bingo\n", + "bingos\n", + "binit\n", + "binits\n", + "binnacle\n", + "binnacles\n", + "binned\n", + "binning\n", + "binocle\n", + "binocles\n", + "binocular\n", + "binocularly\n", + "binoculars\n", + "binomial\n", + "binomials\n", + "bins\n", + "bint\n", + "bints\n", + "bio\n", + "bioassay\n", + "bioassayed\n", + "bioassaying\n", + "bioassays\n", + "biochemical\n", + "biochemicals\n", + "biochemist\n", + "biochemistries\n", + "biochemistry\n", + "biochemists\n", + "biocidal\n", + "biocide\n", + "biocides\n", + "bioclean\n", + "biocycle\n", + "biocycles\n", + "biodegradabilities\n", + "biodegradability\n", + "biodegradable\n", + "biodegradation\n", + "biodegradations\n", + "biodegrade\n", + "biodegraded\n", + "biodegrades\n", + "biodegrading\n", + "biogen\n", + "biogenic\n", + "biogenies\n", + "biogens\n", + "biogeny\n", + "biographer\n", + "biographers\n", + "biographic\n", + "biographical\n", + "biographies\n", + "biography\n", + "bioherm\n", + "bioherms\n", + "biologic\n", + "biological\n", + "biologics\n", + "biologies\n", + "biologist\n", + "biologists\n", + "biology\n", + "biolyses\n", + "biolysis\n", + "biolytic\n", + "biomass\n", + "biomasses\n", + "biome\n", + "biomedical\n", + "biomes\n", + "biometries\n", + "biometry\n", + "bionic\n", + "bionics\n", + "bionomic\n", + "bionomies\n", + "bionomy\n", + "biont\n", + "biontic\n", + "bionts\n", + "biophysical\n", + "biophysicist\n", + "biophysicists\n", + "biophysics\n", + "bioplasm\n", + "bioplasms\n", + "biopsic\n", + "biopsies\n", + "biopsy\n", + "bioptic\n", + "bios\n", + "bioscope\n", + "bioscopes\n", + "bioscopies\n", + "bioscopy\n", + "biota\n", + "biotas\n", + "biotic\n", + "biotical\n", + "biotics\n", + "biotin\n", + "biotins\n", + "biotite\n", + "biotites\n", + "biotitic\n", + "biotope\n", + "biotopes\n", + "biotron\n", + "biotrons\n", + "biotype\n", + "biotypes\n", + "biotypic\n", + "biovular\n", + "bipack\n", + "bipacks\n", + "biparental\n", + "biparous\n", + "biparted\n", + "bipartisan\n", + "biparty\n", + "biped\n", + "bipedal\n", + "bipeds\n", + "biphenyl\n", + "biphenyls\n", + "biplane\n", + "biplanes\n", + "bipod\n", + "bipods\n", + "bipolar\n", + "biracial\n", + "biracially\n", + "biradial\n", + "biramose\n", + "biramous\n", + "birch\n", + "birched\n", + "birchen\n", + "birches\n", + "birching\n", + "bird\n", + "birdbath\n", + "birdbaths\n", + "birdbrained\n", + "birdcage\n", + "birdcages\n", + "birdcall\n", + "birdcalls\n", + "birded\n", + "birder\n", + "birders\n", + "birdfarm\n", + "birdfarms\n", + "birdhouse\n", + "birdhouses\n", + "birdie\n", + "birdied\n", + "birdieing\n", + "birdies\n", + "birding\n", + "birdlike\n", + "birdlime\n", + "birdlimed\n", + "birdlimes\n", + "birdliming\n", + "birdman\n", + "birdmen\n", + "birds\n", + "birdseed\n", + "birdseeds\n", + "birdseye\n", + "birdseyes\n", + "bireme\n", + "biremes\n", + "biretta\n", + "birettas\n", + "birk\n", + "birkie\n", + "birkies\n", + "birks\n", + "birl\n", + "birle\n", + "birled\n", + "birler\n", + "birlers\n", + "birles\n", + "birling\n", + "birlings\n", + "birls\n", + "birr\n", + "birred\n", + "birretta\n", + "birrettas\n", + "birring\n", + "birrs\n", + "birse\n", + "birses\n", + "birth\n", + "birthdate\n", + "birthdates\n", + "birthday\n", + "birthdays\n", + "birthed\n", + "birthing\n", + "birthplace\n", + "birthplaces\n", + "birthrate\n", + "birthrates\n", + "births\n", + "bis\n", + "biscuit\n", + "biscuits\n", + "bise\n", + "bisect\n", + "bisected\n", + "bisecting\n", + "bisection\n", + "bisections\n", + "bisector\n", + "bisectors\n", + "bisects\n", + "bises\n", + "bisexual\n", + "bisexuals\n", + "bishop\n", + "bishoped\n", + "bishoping\n", + "bishops\n", + "bisk\n", + "bisks\n", + "bismuth\n", + "bismuths\n", + "bisnaga\n", + "bisnagas\n", + "bison\n", + "bisons\n", + "bisque\n", + "bisques\n", + "bistate\n", + "bister\n", + "bistered\n", + "bisters\n", + "bistort\n", + "bistorts\n", + "bistouries\n", + "bistoury\n", + "bistre\n", + "bistred\n", + "bistres\n", + "bistro\n", + "bistroic\n", + "bistros\n", + "bit\n", + "bitable\n", + "bitch\n", + "bitched\n", + "bitcheries\n", + "bitchery\n", + "bitches\n", + "bitchier\n", + "bitchiest\n", + "bitchily\n", + "bitching\n", + "bitchy\n", + "bite\n", + "biteable\n", + "biter\n", + "biters\n", + "bites\n", + "bitewing\n", + "bitewings\n", + "biting\n", + "bitingly\n", + "bits\n", + "bitstock\n", + "bitstocks\n", + "bitsy\n", + "bitt\n", + "bitted\n", + "bitten\n", + "bitter\n", + "bittered\n", + "bitterer\n", + "bitterest\n", + "bittering\n", + "bitterly\n", + "bittern\n", + "bitterness\n", + "bitternesses\n", + "bitterns\n", + "bitters\n", + "bittier\n", + "bittiest\n", + "bitting\n", + "bittings\n", + "bittock\n", + "bittocks\n", + "bitts\n", + "bitty\n", + "bitumen\n", + "bitumens\n", + "bituminous\n", + "bivalent\n", + "bivalents\n", + "bivalve\n", + "bivalved\n", + "bivalves\n", + "bivinyl\n", + "bivinyls\n", + "bivouac\n", + "bivouacked\n", + "bivouacking\n", + "bivouacks\n", + "bivouacs\n", + "biweeklies\n", + "biweekly\n", + "biyearly\n", + "bizarre\n", + "bizarrely\n", + "bizarres\n", + "bize\n", + "bizes\n", + "biznaga\n", + "biznagas\n", + "bizonal\n", + "bizone\n", + "bizones\n", + "blab\n", + "blabbed\n", + "blabber\n", + "blabbered\n", + "blabbering\n", + "blabbers\n", + "blabbing\n", + "blabby\n", + "blabs\n", + "black\n", + "blackball\n", + "blackballs\n", + "blackberries\n", + "blackberry\n", + "blackbird\n", + "blackbirds\n", + "blackboard\n", + "blackboards\n", + "blackboy\n", + "blackboys\n", + "blackcap\n", + "blackcaps\n", + "blacked\n", + "blacken\n", + "blackened\n", + "blackening\n", + "blackens\n", + "blacker\n", + "blackest\n", + "blackfin\n", + "blackfins\n", + "blackflies\n", + "blackfly\n", + "blackguard\n", + "blackguards\n", + "blackgum\n", + "blackgums\n", + "blackhead\n", + "blackheads\n", + "blacking\n", + "blackings\n", + "blackish\n", + "blackjack\n", + "blackjacks\n", + "blackleg\n", + "blacklegs\n", + "blacklist\n", + "blacklisted\n", + "blacklisting\n", + "blacklists\n", + "blackly\n", + "blackmail\n", + "blackmailed\n", + "blackmailer\n", + "blackmailers\n", + "blackmailing\n", + "blackmails\n", + "blackness\n", + "blacknesses\n", + "blackout\n", + "blackouts\n", + "blacks\n", + "blacksmith\n", + "blacksmiths\n", + "blacktop\n", + "blacktopped\n", + "blacktopping\n", + "blacktops\n", + "bladder\n", + "bladders\n", + "bladdery\n", + "blade\n", + "bladed\n", + "blades\n", + "blae\n", + "blah\n", + "blahs\n", + "blain\n", + "blains\n", + "blamable\n", + "blamably\n", + "blame\n", + "blamed\n", + "blameful\n", + "blameless\n", + "blamelessly\n", + "blamer\n", + "blamers\n", + "blames\n", + "blameworthiness\n", + "blameworthinesses\n", + "blameworthy\n", + "blaming\n", + "blanch\n", + "blanched\n", + "blancher\n", + "blanchers\n", + "blanches\n", + "blanching\n", + "bland\n", + "blander\n", + "blandest\n", + "blandish\n", + "blandished\n", + "blandishes\n", + "blandishing\n", + "blandishment\n", + "blandishments\n", + "blandly\n", + "blandness\n", + "blandnesses\n", + "blank\n", + "blanked\n", + "blanker\n", + "blankest\n", + "blanket\n", + "blanketed\n", + "blanketing\n", + "blankets\n", + "blanking\n", + "blankly\n", + "blankness\n", + "blanknesses\n", + "blanks\n", + "blare\n", + "blared\n", + "blares\n", + "blaring\n", + "blarney\n", + "blarneyed\n", + "blarneying\n", + "blarneys\n", + "blase\n", + "blaspheme\n", + "blasphemed\n", + "blasphemes\n", + "blasphemies\n", + "blaspheming\n", + "blasphemous\n", + "blasphemy\n", + "blast\n", + "blasted\n", + "blastema\n", + "blastemas\n", + "blastemata\n", + "blaster\n", + "blasters\n", + "blastie\n", + "blastier\n", + "blasties\n", + "blastiest\n", + "blasting\n", + "blastings\n", + "blastoff\n", + "blastoffs\n", + "blastoma\n", + "blastomas\n", + "blastomata\n", + "blasts\n", + "blastula\n", + "blastulae\n", + "blastulas\n", + "blasty\n", + "blat\n", + "blatancies\n", + "blatancy\n", + "blatant\n", + "blate\n", + "blather\n", + "blathered\n", + "blathering\n", + "blathers\n", + "blats\n", + "blatted\n", + "blatter\n", + "blattered\n", + "blattering\n", + "blatters\n", + "blatting\n", + "blaubok\n", + "blauboks\n", + "blaw\n", + "blawed\n", + "blawing\n", + "blawn\n", + "blaws\n", + "blaze\n", + "blazed\n", + "blazer\n", + "blazers\n", + "blazes\n", + "blazing\n", + "blazon\n", + "blazoned\n", + "blazoner\n", + "blazoners\n", + "blazoning\n", + "blazonries\n", + "blazonry\n", + "blazons\n", + "bleach\n", + "bleached\n", + "bleacher\n", + "bleachers\n", + "bleaches\n", + "bleaching\n", + "bleak\n", + "bleaker\n", + "bleakest\n", + "bleakish\n", + "bleakly\n", + "bleakness\n", + "bleaknesses\n", + "bleaks\n", + "blear\n", + "bleared\n", + "blearier\n", + "bleariest\n", + "blearily\n", + "blearing\n", + "blears\n", + "bleary\n", + "bleat\n", + "bleated\n", + "bleater\n", + "bleaters\n", + "bleating\n", + "bleats\n", + "bleb\n", + "blebby\n", + "blebs\n", + "bled\n", + "bleed\n", + "bleeder\n", + "bleeders\n", + "bleeding\n", + "bleedings\n", + "bleeds\n", + "blellum\n", + "blellums\n", + "blemish\n", + "blemished\n", + "blemishes\n", + "blemishing\n", + "blench\n", + "blenched\n", + "blencher\n", + "blenchers\n", + "blenches\n", + "blenching\n", + "blend\n", + "blende\n", + "blended\n", + "blender\n", + "blenders\n", + "blendes\n", + "blending\n", + "blends\n", + "blennies\n", + "blenny\n", + "blent\n", + "bleomycin\n", + "blesbok\n", + "blesboks\n", + "blesbuck\n", + "blesbucks\n", + "bless\n", + "blessed\n", + "blesseder\n", + "blessedest\n", + "blessedness\n", + "blessednesses\n", + "blesser\n", + "blessers\n", + "blesses\n", + "blessing\n", + "blessings\n", + "blest\n", + "blet\n", + "blether\n", + "blethered\n", + "blethering\n", + "blethers\n", + "blets\n", + "blew\n", + "blight\n", + "blighted\n", + "blighter\n", + "blighters\n", + "blighties\n", + "blighting\n", + "blights\n", + "blighty\n", + "blimey\n", + "blimp\n", + "blimpish\n", + "blimps\n", + "blimy\n", + "blin\n", + "blind\n", + "blindage\n", + "blindages\n", + "blinded\n", + "blinder\n", + "blinders\n", + "blindest\n", + "blindfold\n", + "blindfolded\n", + "blindfolding\n", + "blindfolds\n", + "blinding\n", + "blindly\n", + "blindness\n", + "blindnesses\n", + "blinds\n", + "blini\n", + "blinis\n", + "blink\n", + "blinkard\n", + "blinkards\n", + "blinked\n", + "blinker\n", + "blinkered\n", + "blinkering\n", + "blinkers\n", + "blinking\n", + "blinks\n", + "blintz\n", + "blintze\n", + "blintzes\n", + "blip\n", + "blipped\n", + "blipping\n", + "blips\n", + "bliss\n", + "blisses\n", + "blissful\n", + "blissfully\n", + "blister\n", + "blistered\n", + "blistering\n", + "blisters\n", + "blistery\n", + "blite\n", + "blites\n", + "blithe\n", + "blithely\n", + "blither\n", + "blithered\n", + "blithering\n", + "blithers\n", + "blithesome\n", + "blithest\n", + "blitz\n", + "blitzed\n", + "blitzes\n", + "blitzing\n", + "blizzard\n", + "blizzards\n", + "bloat\n", + "bloated\n", + "bloater\n", + "bloaters\n", + "bloating\n", + "bloats\n", + "blob\n", + "blobbed\n", + "blobbing\n", + "blobs\n", + "bloc\n", + "block\n", + "blockade\n", + "blockaded\n", + "blockades\n", + "blockading\n", + "blockage\n", + "blockages\n", + "blocked\n", + "blocker\n", + "blockers\n", + "blockier\n", + "blockiest\n", + "blocking\n", + "blockish\n", + "blocks\n", + "blocky\n", + "blocs\n", + "bloke\n", + "blokes\n", + "blond\n", + "blonde\n", + "blonder\n", + "blondes\n", + "blondest\n", + "blondish\n", + "blonds\n", + "blood\n", + "bloodcurdling\n", + "blooded\n", + "bloodfin\n", + "bloodfins\n", + "bloodhound\n", + "bloodhounds\n", + "bloodied\n", + "bloodier\n", + "bloodies\n", + "bloodiest\n", + "bloodily\n", + "blooding\n", + "bloodings\n", + "bloodless\n", + "bloodmobile\n", + "bloodmobiles\n", + "bloodred\n", + "bloods\n", + "bloodshed\n", + "bloodsheds\n", + "bloodstain\n", + "bloodstained\n", + "bloodstains\n", + "bloodsucker\n", + "bloodsuckers\n", + "bloodsucking\n", + "bloodsuckings\n", + "bloodthirstily\n", + "bloodthirstiness\n", + "bloodthirstinesses\n", + "bloodthirsty\n", + "bloody\n", + "bloodying\n", + "bloom\n", + "bloomed\n", + "bloomer\n", + "bloomeries\n", + "bloomers\n", + "bloomery\n", + "bloomier\n", + "bloomiest\n", + "blooming\n", + "blooms\n", + "bloomy\n", + "bloop\n", + "blooped\n", + "blooper\n", + "bloopers\n", + "blooping\n", + "bloops\n", + "blossom\n", + "blossomed\n", + "blossoming\n", + "blossoms\n", + "blossomy\n", + "blot\n", + "blotch\n", + "blotched\n", + "blotches\n", + "blotchier\n", + "blotchiest\n", + "blotching\n", + "blotchy\n", + "blotless\n", + "blots\n", + "blotted\n", + "blotter\n", + "blotters\n", + "blottier\n", + "blottiest\n", + "blotting\n", + "blotto\n", + "blotty\n", + "blouse\n", + "bloused\n", + "blouses\n", + "blousier\n", + "blousiest\n", + "blousily\n", + "blousing\n", + "blouson\n", + "blousons\n", + "blousy\n", + "blow\n", + "blowback\n", + "blowbacks\n", + "blowby\n", + "blowbys\n", + "blower\n", + "blowers\n", + "blowfish\n", + "blowfishes\n", + "blowflies\n", + "blowfly\n", + "blowgun\n", + "blowguns\n", + "blowhard\n", + "blowhards\n", + "blowhole\n", + "blowholes\n", + "blowier\n", + "blowiest\n", + "blowing\n", + "blown\n", + "blowoff\n", + "blowoffs\n", + "blowout\n", + "blowouts\n", + "blowpipe\n", + "blowpipes\n", + "blows\n", + "blowsed\n", + "blowsier\n", + "blowsiest\n", + "blowsily\n", + "blowsy\n", + "blowtorch\n", + "blowtorches\n", + "blowtube\n", + "blowtubes\n", + "blowup\n", + "blowups\n", + "blowy\n", + "blowzed\n", + "blowzier\n", + "blowziest\n", + "blowzily\n", + "blowzy\n", + "blubber\n", + "blubbered\n", + "blubbering\n", + "blubbers\n", + "blubbery\n", + "blucher\n", + "bluchers\n", + "bludgeon\n", + "bludgeoned\n", + "bludgeoning\n", + "bludgeons\n", + "blue\n", + "blueball\n", + "blueballs\n", + "bluebell\n", + "bluebells\n", + "blueberries\n", + "blueberry\n", + "bluebill\n", + "bluebills\n", + "bluebird\n", + "bluebirds\n", + "bluebook\n", + "bluebooks\n", + "bluecap\n", + "bluecaps\n", + "bluecoat\n", + "bluecoats\n", + "blued\n", + "bluefin\n", + "bluefins\n", + "bluefish\n", + "bluefishes\n", + "bluegill\n", + "bluegills\n", + "bluegum\n", + "bluegums\n", + "bluehead\n", + "blueheads\n", + "blueing\n", + "blueings\n", + "blueish\n", + "bluejack\n", + "bluejacks\n", + "bluejay\n", + "bluejays\n", + "blueline\n", + "bluelines\n", + "bluely\n", + "blueness\n", + "bluenesses\n", + "bluenose\n", + "bluenoses\n", + "blueprint\n", + "blueprinted\n", + "blueprinting\n", + "blueprints\n", + "bluer\n", + "blues\n", + "bluesman\n", + "bluesmen\n", + "bluest\n", + "bluestem\n", + "bluestems\n", + "bluesy\n", + "bluet\n", + "bluets\n", + "blueweed\n", + "blueweeds\n", + "bluewood\n", + "bluewoods\n", + "bluey\n", + "blueys\n", + "bluff\n", + "bluffed\n", + "bluffer\n", + "bluffers\n", + "bluffest\n", + "bluffing\n", + "bluffly\n", + "bluffs\n", + "bluing\n", + "bluings\n", + "bluish\n", + "blume\n", + "blumed\n", + "blumes\n", + "bluming\n", + "blunder\n", + "blunderbuss\n", + "blunderbusses\n", + "blundered\n", + "blundering\n", + "blunders\n", + "blunge\n", + "blunged\n", + "blunger\n", + "blungers\n", + "blunges\n", + "blunging\n", + "blunt\n", + "blunted\n", + "blunter\n", + "bluntest\n", + "blunting\n", + "bluntly\n", + "bluntness\n", + "bluntnesses\n", + "blunts\n", + "blur\n", + "blurb\n", + "blurbs\n", + "blurred\n", + "blurrier\n", + "blurriest\n", + "blurrily\n", + "blurring\n", + "blurry\n", + "blurs\n", + "blurt\n", + "blurted\n", + "blurter\n", + "blurters\n", + "blurting\n", + "blurts\n", + "blush\n", + "blushed\n", + "blusher\n", + "blushers\n", + "blushes\n", + "blushful\n", + "blushing\n", + "bluster\n", + "blustered\n", + "blustering\n", + "blusters\n", + "blustery\n", + "blype\n", + "blypes\n", + "bo\n", + "boa\n", + "boar\n", + "board\n", + "boarded\n", + "boarder\n", + "boarders\n", + "boarding\n", + "boardings\n", + "boardman\n", + "boardmen\n", + "boards\n", + "boardwalk\n", + "boardwalks\n", + "boarfish\n", + "boarfishes\n", + "boarish\n", + "boars\n", + "boart\n", + "boarts\n", + "boas\n", + "boast\n", + "boasted\n", + "boaster\n", + "boasters\n", + "boastful\n", + "boastfully\n", + "boasting\n", + "boasts\n", + "boat\n", + "boatable\n", + "boatbill\n", + "boatbills\n", + "boated\n", + "boatel\n", + "boatels\n", + "boater\n", + "boaters\n", + "boating\n", + "boatings\n", + "boatload\n", + "boatloads\n", + "boatman\n", + "boatmen\n", + "boats\n", + "boatsman\n", + "boatsmen\n", + "boatswain\n", + "boatswains\n", + "boatyard\n", + "boatyards\n", + "bob\n", + "bobbed\n", + "bobber\n", + "bobberies\n", + "bobbers\n", + "bobbery\n", + "bobbies\n", + "bobbin\n", + "bobbinet\n", + "bobbinets\n", + "bobbing\n", + "bobbins\n", + "bobble\n", + "bobbled\n", + "bobbles\n", + "bobbling\n", + "bobby\n", + "bobcat\n", + "bobcats\n", + "bobeche\n", + "bobeches\n", + "bobolink\n", + "bobolinks\n", + "bobs\n", + "bobsled\n", + "bobsleded\n", + "bobsleding\n", + "bobsleds\n", + "bobstay\n", + "bobstays\n", + "bobtail\n", + "bobtailed\n", + "bobtailing\n", + "bobtails\n", + "bobwhite\n", + "bobwhites\n", + "bocaccio\n", + "bocaccios\n", + "bocce\n", + "bocces\n", + "bocci\n", + "boccia\n", + "boccias\n", + "boccie\n", + "boccies\n", + "boccis\n", + "boche\n", + "boches\n", + "bock\n", + "bocks\n", + "bod\n", + "bode\n", + "boded\n", + "bodega\n", + "bodegas\n", + "bodement\n", + "bodements\n", + "bodes\n", + "bodice\n", + "bodices\n", + "bodied\n", + "bodies\n", + "bodiless\n", + "bodily\n", + "boding\n", + "bodingly\n", + "bodings\n", + "bodkin\n", + "bodkins\n", + "bods\n", + "body\n", + "bodying\n", + "bodysurf\n", + "bodysurfed\n", + "bodysurfing\n", + "bodysurfs\n", + "bodywork\n", + "bodyworks\n", + "boehmite\n", + "boehmites\n", + "boff\n", + "boffin\n", + "boffins\n", + "boffo\n", + "boffola\n", + "boffolas\n", + "boffos\n", + "boffs\n", + "bog\n", + "bogan\n", + "bogans\n", + "bogbean\n", + "bogbeans\n", + "bogey\n", + "bogeyed\n", + "bogeying\n", + "bogeyman\n", + "bogeymen\n", + "bogeys\n", + "bogged\n", + "boggier\n", + "boggiest\n", + "bogging\n", + "boggish\n", + "boggle\n", + "boggled\n", + "boggler\n", + "bogglers\n", + "boggles\n", + "boggling\n", + "boggy\n", + "bogie\n", + "bogies\n", + "bogle\n", + "bogles\n", + "bogs\n", + "bogus\n", + "bogwood\n", + "bogwoods\n", + "bogy\n", + "bogyism\n", + "bogyisms\n", + "bogyman\n", + "bogymen\n", + "bogys\n", + "bohea\n", + "boheas\n", + "bohemia\n", + "bohemian\n", + "bohemians\n", + "bohemias\n", + "bohunk\n", + "bohunks\n", + "boil\n", + "boilable\n", + "boiled\n", + "boiler\n", + "boilers\n", + "boiling\n", + "boils\n", + "boisterous\n", + "boisterously\n", + "boite\n", + "boites\n", + "bola\n", + "bolar\n", + "bolas\n", + "bolases\n", + "bold\n", + "bolder\n", + "boldest\n", + "boldface\n", + "boldfaced\n", + "boldfaces\n", + "boldfacing\n", + "boldly\n", + "boldness\n", + "boldnesses\n", + "bole\n", + "bolero\n", + "boleros\n", + "boles\n", + "bolete\n", + "boletes\n", + "boleti\n", + "boletus\n", + "boletuses\n", + "bolide\n", + "bolides\n", + "bolivar\n", + "bolivares\n", + "bolivars\n", + "bolivia\n", + "bolivias\n", + "boll\n", + "bollard\n", + "bollards\n", + "bolled\n", + "bolling\n", + "bollix\n", + "bollixed\n", + "bollixes\n", + "bollixing\n", + "bollox\n", + "bolloxed\n", + "bolloxes\n", + "bolloxing\n", + "bolls\n", + "bollworm\n", + "bollworms\n", + "bolo\n", + "bologna\n", + "bolognas\n", + "boloney\n", + "boloneys\n", + "bolos\n", + "bolshevik\n", + "bolson\n", + "bolsons\n", + "bolster\n", + "bolstered\n", + "bolstering\n", + "bolsters\n", + "bolt\n", + "bolted\n", + "bolter\n", + "bolters\n", + "bolthead\n", + "boltheads\n", + "bolting\n", + "boltonia\n", + "boltonias\n", + "boltrope\n", + "boltropes\n", + "bolts\n", + "bolus\n", + "boluses\n", + "bomb\n", + "bombard\n", + "bombarded\n", + "bombardier\n", + "bombardiers\n", + "bombarding\n", + "bombardment\n", + "bombardments\n", + "bombards\n", + "bombast\n", + "bombastic\n", + "bombasts\n", + "bombe\n", + "bombed\n", + "bomber\n", + "bombers\n", + "bombes\n", + "bombing\n", + "bombload\n", + "bombloads\n", + "bombproof\n", + "bombs\n", + "bombshell\n", + "bombshells\n", + "bombycid\n", + "bombycids\n", + "bombyx\n", + "bombyxes\n", + "bonaci\n", + "bonacis\n", + "bonanza\n", + "bonanzas\n", + "bonbon\n", + "bonbons\n", + "bond\n", + "bondable\n", + "bondage\n", + "bondages\n", + "bonded\n", + "bonder\n", + "bonders\n", + "bondholder\n", + "bondholders\n", + "bonding\n", + "bondmaid\n", + "bondmaids\n", + "bondman\n", + "bondmen\n", + "bonds\n", + "bondsman\n", + "bondsmen\n", + "bonduc\n", + "bonducs\n", + "bondwoman\n", + "bondwomen\n", + "bone\n", + "boned\n", + "bonefish\n", + "bonefishes\n", + "bonehead\n", + "boneheads\n", + "boneless\n", + "boner\n", + "boners\n", + "bones\n", + "boneset\n", + "bonesets\n", + "boney\n", + "boneyard\n", + "boneyards\n", + "bonfire\n", + "bonfires\n", + "bong\n", + "bonged\n", + "bonging\n", + "bongo\n", + "bongoes\n", + "bongoist\n", + "bongoists\n", + "bongos\n", + "bongs\n", + "bonhomie\n", + "bonhomies\n", + "bonier\n", + "boniest\n", + "boniface\n", + "bonifaces\n", + "boniness\n", + "boninesses\n", + "boning\n", + "bonita\n", + "bonitas\n", + "bonito\n", + "bonitoes\n", + "bonitos\n", + "bonkers\n", + "bonne\n", + "bonnes\n", + "bonnet\n", + "bonneted\n", + "bonneting\n", + "bonnets\n", + "bonnie\n", + "bonnier\n", + "bonniest\n", + "bonnily\n", + "bonnock\n", + "bonnocks\n", + "bonny\n", + "bonsai\n", + "bonspell\n", + "bonspells\n", + "bonspiel\n", + "bonspiels\n", + "bontebok\n", + "bonteboks\n", + "bonus\n", + "bonuses\n", + "bony\n", + "bonze\n", + "bonzer\n", + "bonzes\n", + "boo\n", + "boob\n", + "boobies\n", + "booboo\n", + "booboos\n", + "boobs\n", + "booby\n", + "boodle\n", + "boodled\n", + "boodler\n", + "boodlers\n", + "boodles\n", + "boodling\n", + "booed\n", + "booger\n", + "boogers\n", + "boogie\n", + "boogies\n", + "boogyman\n", + "boogymen\n", + "boohoo\n", + "boohooed\n", + "boohooing\n", + "boohoos\n", + "booing\n", + "book\n", + "bookcase\n", + "bookcases\n", + "booked\n", + "bookend\n", + "bookends\n", + "booker\n", + "bookers\n", + "bookie\n", + "bookies\n", + "booking\n", + "bookings\n", + "bookish\n", + "bookkeeper\n", + "bookkeepers\n", + "bookkeeping\n", + "bookkeepings\n", + "booklet\n", + "booklets\n", + "booklore\n", + "booklores\n", + "bookmaker\n", + "bookmakers\n", + "bookmaking\n", + "bookmakings\n", + "bookman\n", + "bookmark\n", + "bookmarks\n", + "bookmen\n", + "bookrack\n", + "bookracks\n", + "bookrest\n", + "bookrests\n", + "books\n", + "bookseller\n", + "booksellers\n", + "bookshelf\n", + "bookshelfs\n", + "bookshop\n", + "bookshops\n", + "bookstore\n", + "bookstores\n", + "bookworm\n", + "bookworms\n", + "boom\n", + "boomed\n", + "boomer\n", + "boomerang\n", + "boomerangs\n", + "boomers\n", + "boomier\n", + "boomiest\n", + "booming\n", + "boomkin\n", + "boomkins\n", + "boomlet\n", + "boomlets\n", + "booms\n", + "boomtown\n", + "boomtowns\n", + "boomy\n", + "boon\n", + "boondocks\n", + "boonies\n", + "boons\n", + "boor\n", + "boorish\n", + "boors\n", + "boos\n", + "boost\n", + "boosted\n", + "booster\n", + "boosters\n", + "boosting\n", + "boosts\n", + "boot\n", + "booted\n", + "bootee\n", + "bootees\n", + "booteries\n", + "bootery\n", + "booth\n", + "booths\n", + "bootie\n", + "booties\n", + "booting\n", + "bootjack\n", + "bootjacks\n", + "bootlace\n", + "bootlaces\n", + "bootleg\n", + "bootlegged\n", + "bootlegger\n", + "bootleggers\n", + "bootlegging\n", + "bootlegs\n", + "bootless\n", + "bootlick\n", + "bootlicked\n", + "bootlicking\n", + "bootlicks\n", + "boots\n", + "booty\n", + "booze\n", + "boozed\n", + "boozer\n", + "boozers\n", + "boozes\n", + "boozier\n", + "booziest\n", + "boozily\n", + "boozing\n", + "boozy\n", + "bop\n", + "bopped\n", + "bopper\n", + "boppers\n", + "bopping\n", + "bops\n", + "bora\n", + "boraces\n", + "boracic\n", + "boracite\n", + "boracites\n", + "borage\n", + "borages\n", + "borane\n", + "boranes\n", + "boras\n", + "borate\n", + "borated\n", + "borates\n", + "borax\n", + "boraxes\n", + "borazon\n", + "borazons\n", + "bordel\n", + "bordello\n", + "bordellos\n", + "bordels\n", + "border\n", + "bordered\n", + "borderer\n", + "borderers\n", + "bordering\n", + "borderline\n", + "borders\n", + "bordure\n", + "bordures\n", + "bore\n", + "boreal\n", + "borecole\n", + "borecoles\n", + "bored\n", + "boredom\n", + "boredoms\n", + "borer\n", + "borers\n", + "bores\n", + "boric\n", + "boride\n", + "borides\n", + "boring\n", + "boringly\n", + "borings\n", + "born\n", + "borne\n", + "borneol\n", + "borneols\n", + "bornite\n", + "bornites\n", + "boron\n", + "boronic\n", + "borons\n", + "borough\n", + "boroughs\n", + "borrow\n", + "borrowed\n", + "borrower\n", + "borrowers\n", + "borrowing\n", + "borrows\n", + "borsch\n", + "borsches\n", + "borscht\n", + "borschts\n", + "borstal\n", + "borstals\n", + "bort\n", + "borts\n", + "borty\n", + "bortz\n", + "bortzes\n", + "borzoi\n", + "borzois\n", + "bos\n", + "boscage\n", + "boscages\n", + "boschbok\n", + "boschboks\n", + "bosh\n", + "boshbok\n", + "boshboks\n", + "boshes\n", + "boshvark\n", + "boshvarks\n", + "bosk\n", + "boskage\n", + "boskages\n", + "bosker\n", + "bosket\n", + "boskets\n", + "boskier\n", + "boskiest\n", + "bosks\n", + "bosky\n", + "bosom\n", + "bosomed\n", + "bosoming\n", + "bosoms\n", + "bosomy\n", + "boson\n", + "bosons\n", + "bosque\n", + "bosques\n", + "bosquet\n", + "bosquets\n", + "boss\n", + "bossdom\n", + "bossdoms\n", + "bossed\n", + "bosses\n", + "bossier\n", + "bossies\n", + "bossiest\n", + "bossily\n", + "bossing\n", + "bossism\n", + "bossisms\n", + "bossy\n", + "boston\n", + "bostons\n", + "bosun\n", + "bosuns\n", + "bot\n", + "botanic\n", + "botanical\n", + "botanies\n", + "botanise\n", + "botanised\n", + "botanises\n", + "botanising\n", + "botanist\n", + "botanists\n", + "botanize\n", + "botanized\n", + "botanizes\n", + "botanizing\n", + "botany\n", + "botch\n", + "botched\n", + "botcher\n", + "botcheries\n", + "botchers\n", + "botchery\n", + "botches\n", + "botchier\n", + "botchiest\n", + "botchily\n", + "botching\n", + "botchy\n", + "botel\n", + "botels\n", + "botflies\n", + "botfly\n", + "both\n", + "bother\n", + "bothered\n", + "bothering\n", + "bothers\n", + "bothersome\n", + "botonee\n", + "botonnee\n", + "botryoid\n", + "botryose\n", + "bots\n", + "bott\n", + "bottle\n", + "bottled\n", + "bottleneck\n", + "bottlenecks\n", + "bottler\n", + "bottlers\n", + "bottles\n", + "bottling\n", + "bottom\n", + "bottomed\n", + "bottomer\n", + "bottomers\n", + "bottoming\n", + "bottomless\n", + "bottomries\n", + "bottomry\n", + "bottoms\n", + "botts\n", + "botulin\n", + "botulins\n", + "botulism\n", + "botulisms\n", + "boucle\n", + "boucles\n", + "boudoir\n", + "boudoirs\n", + "bouffant\n", + "bouffants\n", + "bouffe\n", + "bouffes\n", + "bough\n", + "boughed\n", + "boughpot\n", + "boughpots\n", + "boughs\n", + "bought\n", + "boughten\n", + "bougie\n", + "bougies\n", + "bouillon\n", + "bouillons\n", + "boulder\n", + "boulders\n", + "bouldery\n", + "boule\n", + "boules\n", + "boulle\n", + "boulles\n", + "bounce\n", + "bounced\n", + "bouncer\n", + "bouncers\n", + "bounces\n", + "bouncier\n", + "bounciest\n", + "bouncily\n", + "bouncing\n", + "bouncy\n", + "bound\n", + "boundaries\n", + "boundary\n", + "bounded\n", + "bounden\n", + "bounder\n", + "bounders\n", + "bounding\n", + "boundless\n", + "boundlessness\n", + "boundlessnesses\n", + "bounds\n", + "bounteous\n", + "bounteously\n", + "bountied\n", + "bounties\n", + "bountiful\n", + "bountifully\n", + "bounty\n", + "bouquet\n", + "bouquets\n", + "bourbon\n", + "bourbons\n", + "bourdon\n", + "bourdons\n", + "bourg\n", + "bourgeois\n", + "bourgeoisie\n", + "bourgeoisies\n", + "bourgeon\n", + "bourgeoned\n", + "bourgeoning\n", + "bourgeons\n", + "bourgs\n", + "bourn\n", + "bourne\n", + "bournes\n", + "bourns\n", + "bourree\n", + "bourrees\n", + "bourse\n", + "bourses\n", + "bourtree\n", + "bourtrees\n", + "bouse\n", + "boused\n", + "bouses\n", + "bousing\n", + "bousouki\n", + "bousoukia\n", + "bousoukis\n", + "bousy\n", + "bout\n", + "boutique\n", + "boutiques\n", + "bouts\n", + "bouzouki\n", + "bouzoukia\n", + "bouzoukis\n", + "bovid\n", + "bovids\n", + "bovine\n", + "bovinely\n", + "bovines\n", + "bovinities\n", + "bovinity\n", + "bow\n", + "bowed\n", + "bowel\n", + "boweled\n", + "boweling\n", + "bowelled\n", + "bowelling\n", + "bowels\n", + "bower\n", + "bowered\n", + "boweries\n", + "bowering\n", + "bowers\n", + "bowery\n", + "bowfin\n", + "bowfins\n", + "bowfront\n", + "bowhead\n", + "bowheads\n", + "bowing\n", + "bowingly\n", + "bowings\n", + "bowknot\n", + "bowknots\n", + "bowl\n", + "bowlder\n", + "bowlders\n", + "bowled\n", + "bowleg\n", + "bowlegs\n", + "bowler\n", + "bowlers\n", + "bowless\n", + "bowlful\n", + "bowlfuls\n", + "bowlike\n", + "bowline\n", + "bowlines\n", + "bowling\n", + "bowlings\n", + "bowllike\n", + "bowls\n", + "bowman\n", + "bowmen\n", + "bowpot\n", + "bowpots\n", + "bows\n", + "bowse\n", + "bowsed\n", + "bowses\n", + "bowshot\n", + "bowshots\n", + "bowsing\n", + "bowsprit\n", + "bowsprits\n", + "bowwow\n", + "bowwows\n", + "bowyer\n", + "bowyers\n", + "box\n", + "boxberries\n", + "boxberry\n", + "boxcar\n", + "boxcars\n", + "boxed\n", + "boxer\n", + "boxers\n", + "boxes\n", + "boxfish\n", + "boxfishes\n", + "boxful\n", + "boxfuls\n", + "boxhaul\n", + "boxhauled\n", + "boxhauling\n", + "boxhauls\n", + "boxier\n", + "boxiest\n", + "boxiness\n", + "boxinesses\n", + "boxing\n", + "boxings\n", + "boxlike\n", + "boxthorn\n", + "boxthorns\n", + "boxwood\n", + "boxwoods\n", + "boxy\n", + "boy\n", + "boyar\n", + "boyard\n", + "boyards\n", + "boyarism\n", + "boyarisms\n", + "boyars\n", + "boycott\n", + "boycotted\n", + "boycotting\n", + "boycotts\n", + "boyhood\n", + "boyhoods\n", + "boyish\n", + "boyishly\n", + "boyishness\n", + "boyishnesses\n", + "boyla\n", + "boylas\n", + "boyo\n", + "boyos\n", + "boys\n", + "bozo\n", + "bozos\n", + "bra\n", + "brabble\n", + "brabbled\n", + "brabbler\n", + "brabblers\n", + "brabbles\n", + "brabbling\n", + "brace\n", + "braced\n", + "bracelet\n", + "bracelets\n", + "bracer\n", + "bracero\n", + "braceros\n", + "bracers\n", + "braces\n", + "brach\n", + "braches\n", + "brachet\n", + "brachets\n", + "brachia\n", + "brachial\n", + "brachials\n", + "brachium\n", + "bracing\n", + "bracings\n", + "bracken\n", + "brackens\n", + "bracket\n", + "bracketed\n", + "bracketing\n", + "brackets\n", + "brackish\n", + "bract\n", + "bracteal\n", + "bracted\n", + "bractlet\n", + "bractlets\n", + "bracts\n", + "brad\n", + "bradawl\n", + "bradawls\n", + "bradded\n", + "bradding\n", + "bradoon\n", + "bradoons\n", + "brads\n", + "brae\n", + "braes\n", + "brag\n", + "braggart\n", + "braggarts\n", + "bragged\n", + "bragger\n", + "braggers\n", + "braggest\n", + "braggier\n", + "braggiest\n", + "bragging\n", + "braggy\n", + "brags\n", + "brahma\n", + "brahmas\n", + "braid\n", + "braided\n", + "braider\n", + "braiders\n", + "braiding\n", + "braidings\n", + "braids\n", + "brail\n", + "brailed\n", + "brailing\n", + "braille\n", + "brailled\n", + "brailles\n", + "brailling\n", + "brails\n", + "brain\n", + "brained\n", + "brainier\n", + "brainiest\n", + "brainily\n", + "braining\n", + "brainish\n", + "brainless\n", + "brainpan\n", + "brainpans\n", + "brains\n", + "brainstorm\n", + "brainstorms\n", + "brainy\n", + "braise\n", + "braised\n", + "braises\n", + "braising\n", + "braize\n", + "braizes\n", + "brake\n", + "brakeage\n", + "brakeages\n", + "braked\n", + "brakeman\n", + "brakemen\n", + "brakes\n", + "brakier\n", + "brakiest\n", + "braking\n", + "braky\n", + "bramble\n", + "brambled\n", + "brambles\n", + "bramblier\n", + "brambliest\n", + "brambling\n", + "brambly\n", + "bran\n", + "branch\n", + "branched\n", + "branches\n", + "branchia\n", + "branchiae\n", + "branchier\n", + "branchiest\n", + "branching\n", + "branchy\n", + "brand\n", + "branded\n", + "brander\n", + "branders\n", + "brandied\n", + "brandies\n", + "branding\n", + "brandish\n", + "brandished\n", + "brandishes\n", + "brandishing\n", + "brands\n", + "brandy\n", + "brandying\n", + "brank\n", + "branks\n", + "branned\n", + "branner\n", + "branners\n", + "brannier\n", + "branniest\n", + "branning\n", + "branny\n", + "brans\n", + "brant\n", + "brantail\n", + "brantails\n", + "brants\n", + "bras\n", + "brash\n", + "brasher\n", + "brashes\n", + "brashest\n", + "brashier\n", + "brashiest\n", + "brashly\n", + "brashy\n", + "brasier\n", + "brasiers\n", + "brasil\n", + "brasilin\n", + "brasilins\n", + "brasils\n", + "brass\n", + "brassage\n", + "brassages\n", + "brassard\n", + "brassards\n", + "brassart\n", + "brassarts\n", + "brasses\n", + "brassica\n", + "brassicas\n", + "brassie\n", + "brassier\n", + "brassiere\n", + "brassieres\n", + "brassies\n", + "brassiest\n", + "brassily\n", + "brassish\n", + "brassy\n", + "brat\n", + "brats\n", + "brattice\n", + "bratticed\n", + "brattices\n", + "bratticing\n", + "brattier\n", + "brattiest\n", + "brattish\n", + "brattle\n", + "brattled\n", + "brattles\n", + "brattling\n", + "bratty\n", + "braunite\n", + "braunites\n", + "brava\n", + "bravado\n", + "bravadoes\n", + "bravados\n", + "bravas\n", + "brave\n", + "braved\n", + "bravely\n", + "braver\n", + "braveries\n", + "bravers\n", + "bravery\n", + "braves\n", + "bravest\n", + "braving\n", + "bravo\n", + "bravoed\n", + "bravoes\n", + "bravoing\n", + "bravos\n", + "bravura\n", + "bravuras\n", + "bravure\n", + "braw\n", + "brawer\n", + "brawest\n", + "brawl\n", + "brawled\n", + "brawler\n", + "brawlers\n", + "brawlie\n", + "brawlier\n", + "brawliest\n", + "brawling\n", + "brawls\n", + "brawly\n", + "brawn\n", + "brawnier\n", + "brawniest\n", + "brawnily\n", + "brawns\n", + "brawny\n", + "braws\n", + "braxies\n", + "braxy\n", + "bray\n", + "brayed\n", + "brayer\n", + "brayers\n", + "braying\n", + "brays\n", + "braza\n", + "brazas\n", + "braze\n", + "brazed\n", + "brazen\n", + "brazened\n", + "brazening\n", + "brazenly\n", + "brazenness\n", + "brazennesses\n", + "brazens\n", + "brazer\n", + "brazers\n", + "brazes\n", + "brazier\n", + "braziers\n", + "brazil\n", + "brazilin\n", + "brazilins\n", + "brazils\n", + "brazing\n", + "breach\n", + "breached\n", + "breacher\n", + "breachers\n", + "breaches\n", + "breaching\n", + "bread\n", + "breaded\n", + "breading\n", + "breadnut\n", + "breadnuts\n", + "breads\n", + "breadth\n", + "breadths\n", + "breadwinner\n", + "breadwinners\n", + "break\n", + "breakable\n", + "breakage\n", + "breakages\n", + "breakdown\n", + "breakdowns\n", + "breaker\n", + "breakers\n", + "breakfast\n", + "breakfasted\n", + "breakfasting\n", + "breakfasts\n", + "breaking\n", + "breakings\n", + "breakout\n", + "breakouts\n", + "breaks\n", + "breakthrough\n", + "breakthroughs\n", + "breakup\n", + "breakups\n", + "bream\n", + "breamed\n", + "breaming\n", + "breams\n", + "breast\n", + "breastbone\n", + "breastbones\n", + "breasted\n", + "breasting\n", + "breasts\n", + "breath\n", + "breathe\n", + "breathed\n", + "breather\n", + "breathers\n", + "breathes\n", + "breathier\n", + "breathiest\n", + "breathing\n", + "breathless\n", + "breathlessly\n", + "breaths\n", + "breathtaking\n", + "breathy\n", + "breccia\n", + "breccial\n", + "breccias\n", + "brecham\n", + "brechams\n", + "brechan\n", + "brechans\n", + "bred\n", + "brede\n", + "bredes\n", + "bree\n", + "breech\n", + "breeched\n", + "breeches\n", + "breeching\n", + "breed\n", + "breeder\n", + "breeders\n", + "breeding\n", + "breedings\n", + "breeds\n", + "breeks\n", + "brees\n", + "breeze\n", + "breezed\n", + "breezes\n", + "breezier\n", + "breeziest\n", + "breezily\n", + "breezing\n", + "breezy\n", + "bregma\n", + "bregmata\n", + "bregmate\n", + "brent\n", + "brents\n", + "brethren\n", + "breve\n", + "breves\n", + "brevet\n", + "brevetcies\n", + "brevetcy\n", + "breveted\n", + "breveting\n", + "brevets\n", + "brevetted\n", + "brevetting\n", + "breviaries\n", + "breviary\n", + "brevier\n", + "breviers\n", + "brevities\n", + "brevity\n", + "brew\n", + "brewage\n", + "brewages\n", + "brewed\n", + "brewer\n", + "breweries\n", + "brewers\n", + "brewery\n", + "brewing\n", + "brewings\n", + "brewis\n", + "brewises\n", + "brews\n", + "briar\n", + "briard\n", + "briards\n", + "briars\n", + "briary\n", + "bribable\n", + "bribe\n", + "bribed\n", + "briber\n", + "briberies\n", + "bribers\n", + "bribery\n", + "bribes\n", + "bribing\n", + "brick\n", + "brickbat\n", + "brickbats\n", + "bricked\n", + "brickier\n", + "brickiest\n", + "bricking\n", + "bricklayer\n", + "bricklayers\n", + "bricklaying\n", + "bricklayings\n", + "brickle\n", + "bricks\n", + "bricky\n", + "bricole\n", + "bricoles\n", + "bridal\n", + "bridally\n", + "bridals\n", + "bride\n", + "bridegroom\n", + "bridegrooms\n", + "brides\n", + "bridesmaid\n", + "bridesmaids\n", + "bridge\n", + "bridgeable\n", + "bridgeables\n", + "bridged\n", + "bridges\n", + "bridging\n", + "bridgings\n", + "bridle\n", + "bridled\n", + "bridler\n", + "bridlers\n", + "bridles\n", + "bridling\n", + "bridoon\n", + "bridoons\n", + "brie\n", + "brief\n", + "briefcase\n", + "briefcases\n", + "briefed\n", + "briefer\n", + "briefers\n", + "briefest\n", + "briefing\n", + "briefings\n", + "briefly\n", + "briefness\n", + "briefnesses\n", + "briefs\n", + "brier\n", + "briers\n", + "briery\n", + "bries\n", + "brig\n", + "brigade\n", + "brigaded\n", + "brigades\n", + "brigadier\n", + "brigadiers\n", + "brigading\n", + "brigand\n", + "brigands\n", + "bright\n", + "brighten\n", + "brightened\n", + "brightener\n", + "brighteners\n", + "brightening\n", + "brightens\n", + "brighter\n", + "brightest\n", + "brightly\n", + "brightness\n", + "brightnesses\n", + "brights\n", + "brigs\n", + "brill\n", + "brilliance\n", + "brilliances\n", + "brilliancies\n", + "brilliancy\n", + "brilliant\n", + "brilliantly\n", + "brills\n", + "brim\n", + "brimful\n", + "brimfull\n", + "brimless\n", + "brimmed\n", + "brimmer\n", + "brimmers\n", + "brimming\n", + "brims\n", + "brimstone\n", + "brimstones\n", + "brin\n", + "brinded\n", + "brindle\n", + "brindled\n", + "brindles\n", + "brine\n", + "brined\n", + "briner\n", + "briners\n", + "brines\n", + "bring\n", + "bringer\n", + "bringers\n", + "bringing\n", + "brings\n", + "brinier\n", + "brinies\n", + "briniest\n", + "brininess\n", + "brininesses\n", + "brining\n", + "brinish\n", + "brink\n", + "brinks\n", + "brins\n", + "briny\n", + "brio\n", + "brioche\n", + "brioches\n", + "brionies\n", + "briony\n", + "brios\n", + "briquet\n", + "briquets\n", + "briquetted\n", + "briquetting\n", + "brisance\n", + "brisances\n", + "brisant\n", + "brisk\n", + "brisked\n", + "brisker\n", + "briskest\n", + "brisket\n", + "briskets\n", + "brisking\n", + "briskly\n", + "briskness\n", + "brisknesses\n", + "brisks\n", + "brisling\n", + "brislings\n", + "bristle\n", + "bristled\n", + "bristles\n", + "bristlier\n", + "bristliest\n", + "bristling\n", + "bristly\n", + "bristol\n", + "bristols\n", + "brit\n", + "britches\n", + "brits\n", + "britska\n", + "britskas\n", + "britt\n", + "brittle\n", + "brittled\n", + "brittler\n", + "brittles\n", + "brittlest\n", + "brittling\n", + "britts\n", + "britzka\n", + "britzkas\n", + "britzska\n", + "britzskas\n", + "broach\n", + "broached\n", + "broacher\n", + "broachers\n", + "broaches\n", + "broaching\n", + "broad\n", + "broadax\n", + "broadaxe\n", + "broadaxes\n", + "broadcast\n", + "broadcasted\n", + "broadcaster\n", + "broadcasters\n", + "broadcasting\n", + "broadcasts\n", + "broadcloth\n", + "broadcloths\n", + "broaden\n", + "broadened\n", + "broadening\n", + "broadens\n", + "broader\n", + "broadest\n", + "broadish\n", + "broadloom\n", + "broadlooms\n", + "broadly\n", + "broadness\n", + "broadnesses\n", + "broads\n", + "broadside\n", + "broadsides\n", + "brocade\n", + "brocaded\n", + "brocades\n", + "brocading\n", + "brocatel\n", + "brocatels\n", + "broccoli\n", + "broccolis\n", + "broche\n", + "brochure\n", + "brochures\n", + "brock\n", + "brockage\n", + "brockages\n", + "brocket\n", + "brockets\n", + "brocks\n", + "brocoli\n", + "brocolis\n", + "brogan\n", + "brogans\n", + "brogue\n", + "brogueries\n", + "broguery\n", + "brogues\n", + "broguish\n", + "broider\n", + "broidered\n", + "broideries\n", + "broidering\n", + "broiders\n", + "broidery\n", + "broil\n", + "broiled\n", + "broiler\n", + "broilers\n", + "broiling\n", + "broils\n", + "brokage\n", + "brokages\n", + "broke\n", + "broken\n", + "brokenhearted\n", + "brokenly\n", + "broker\n", + "brokerage\n", + "brokerages\n", + "brokers\n", + "brollies\n", + "brolly\n", + "bromal\n", + "bromals\n", + "bromate\n", + "bromated\n", + "bromates\n", + "bromating\n", + "brome\n", + "bromelin\n", + "bromelins\n", + "bromes\n", + "bromic\n", + "bromid\n", + "bromide\n", + "bromides\n", + "bromidic\n", + "bromids\n", + "bromin\n", + "bromine\n", + "bromines\n", + "bromins\n", + "bromism\n", + "bromisms\n", + "bromo\n", + "bromos\n", + "bronc\n", + "bronchi\n", + "bronchia\n", + "bronchial\n", + "bronchitis\n", + "broncho\n", + "bronchos\n", + "bronchospasm\n", + "bronchus\n", + "bronco\n", + "broncos\n", + "broncs\n", + "bronze\n", + "bronzed\n", + "bronzer\n", + "bronzers\n", + "bronzes\n", + "bronzier\n", + "bronziest\n", + "bronzing\n", + "bronzings\n", + "bronzy\n", + "broo\n", + "brooch\n", + "brooches\n", + "brood\n", + "brooded\n", + "brooder\n", + "brooders\n", + "broodier\n", + "broodiest\n", + "brooding\n", + "broods\n", + "broody\n", + "brook\n", + "brooked\n", + "brooking\n", + "brookite\n", + "brookites\n", + "brooklet\n", + "brooklets\n", + "brookline\n", + "brooks\n", + "broom\n", + "broomed\n", + "broomier\n", + "broomiest\n", + "brooming\n", + "brooms\n", + "broomstick\n", + "broomsticks\n", + "broomy\n", + "broos\n", + "brose\n", + "broses\n", + "brosy\n", + "broth\n", + "brothel\n", + "brothels\n", + "brother\n", + "brothered\n", + "brotherhood\n", + "brotherhoods\n", + "brothering\n", + "brotherliness\n", + "brotherlinesses\n", + "brotherly\n", + "brothers\n", + "broths\n", + "brothy\n", + "brougham\n", + "broughams\n", + "brought\n", + "brouhaha\n", + "brouhahas\n", + "brow\n", + "browbeat\n", + "browbeaten\n", + "browbeating\n", + "browbeats\n", + "browless\n", + "brown\n", + "browned\n", + "browner\n", + "brownest\n", + "brownie\n", + "brownier\n", + "brownies\n", + "browniest\n", + "browning\n", + "brownish\n", + "brownout\n", + "brownouts\n", + "browns\n", + "browny\n", + "brows\n", + "browse\n", + "browsed\n", + "browser\n", + "browsers\n", + "browses\n", + "browsing\n", + "brucella\n", + "brucellae\n", + "brucellas\n", + "brucin\n", + "brucine\n", + "brucines\n", + "brucins\n", + "brugh\n", + "brughs\n", + "bruin\n", + "bruins\n", + "bruise\n", + "bruised\n", + "bruiser\n", + "bruisers\n", + "bruises\n", + "bruising\n", + "bruit\n", + "bruited\n", + "bruiter\n", + "bruiters\n", + "bruiting\n", + "bruits\n", + "brulot\n", + "brulots\n", + "brulyie\n", + "brulyies\n", + "brulzie\n", + "brulzies\n", + "brumal\n", + "brumbies\n", + "brumby\n", + "brume\n", + "brumes\n", + "brumous\n", + "brunch\n", + "brunched\n", + "brunches\n", + "brunching\n", + "brunet\n", + "brunets\n", + "brunette\n", + "brunettes\n", + "brunizem\n", + "brunizems\n", + "brunt\n", + "brunts\n", + "brush\n", + "brushed\n", + "brusher\n", + "brushers\n", + "brushes\n", + "brushier\n", + "brushiest\n", + "brushing\n", + "brushoff\n", + "brushoffs\n", + "brushup\n", + "brushups\n", + "brushy\n", + "brusk\n", + "brusker\n", + "bruskest\n", + "brusque\n", + "brusquely\n", + "brusquer\n", + "brusquest\n", + "brut\n", + "brutal\n", + "brutalities\n", + "brutality\n", + "brutalize\n", + "brutalized\n", + "brutalizes\n", + "brutalizing\n", + "brutally\n", + "brute\n", + "bruted\n", + "brutely\n", + "brutes\n", + "brutified\n", + "brutifies\n", + "brutify\n", + "brutifying\n", + "bruting\n", + "brutish\n", + "brutism\n", + "brutisms\n", + "bruxism\n", + "bruxisms\n", + "bryologies\n", + "bryology\n", + "bryonies\n", + "bryony\n", + "bryozoan\n", + "bryozoans\n", + "bub\n", + "bubal\n", + "bubale\n", + "bubales\n", + "bubaline\n", + "bubalis\n", + "bubalises\n", + "bubals\n", + "bubbies\n", + "bubble\n", + "bubbled\n", + "bubbler\n", + "bubblers\n", + "bubbles\n", + "bubblier\n", + "bubblies\n", + "bubbliest\n", + "bubbling\n", + "bubbly\n", + "bubby\n", + "bubinga\n", + "bubingas\n", + "bubo\n", + "buboed\n", + "buboes\n", + "bubonic\n", + "bubs\n", + "buccal\n", + "buccally\n", + "buck\n", + "buckaroo\n", + "buckaroos\n", + "buckayro\n", + "buckayros\n", + "buckbean\n", + "buckbeans\n", + "bucked\n", + "buckeen\n", + "buckeens\n", + "bucker\n", + "buckeroo\n", + "buckeroos\n", + "buckers\n", + "bucket\n", + "bucketed\n", + "bucketful\n", + "bucketfuls\n", + "bucketing\n", + "buckets\n", + "buckeye\n", + "buckeyes\n", + "bucking\n", + "buckish\n", + "buckle\n", + "buckled\n", + "buckler\n", + "bucklered\n", + "bucklering\n", + "bucklers\n", + "buckles\n", + "buckling\n", + "bucko\n", + "buckoes\n", + "buckra\n", + "buckram\n", + "buckramed\n", + "buckraming\n", + "buckrams\n", + "buckras\n", + "bucks\n", + "bucksaw\n", + "bucksaws\n", + "buckshee\n", + "buckshees\n", + "buckshot\n", + "buckshots\n", + "buckskin\n", + "buckskins\n", + "bucktail\n", + "bucktails\n", + "bucktooth\n", + "bucktooths\n", + "buckwheat\n", + "buckwheats\n", + "bucolic\n", + "bucolics\n", + "bud\n", + "budded\n", + "budder\n", + "budders\n", + "buddies\n", + "budding\n", + "buddle\n", + "buddleia\n", + "buddleias\n", + "buddles\n", + "buddy\n", + "budge\n", + "budged\n", + "budger\n", + "budgers\n", + "budges\n", + "budget\n", + "budgetary\n", + "budgeted\n", + "budgeter\n", + "budgeters\n", + "budgeting\n", + "budgets\n", + "budgie\n", + "budgies\n", + "budging\n", + "budless\n", + "budlike\n", + "buds\n", + "buff\n", + "buffable\n", + "buffalo\n", + "buffaloed\n", + "buffaloes\n", + "buffaloing\n", + "buffalos\n", + "buffed\n", + "buffer\n", + "buffered\n", + "buffering\n", + "buffers\n", + "buffet\n", + "buffeted\n", + "buffeter\n", + "buffeters\n", + "buffeting\n", + "buffets\n", + "buffi\n", + "buffier\n", + "buffiest\n", + "buffing\n", + "buffo\n", + "buffoon\n", + "buffoons\n", + "buffos\n", + "buffs\n", + "buffy\n", + "bug\n", + "bugaboo\n", + "bugaboos\n", + "bugbane\n", + "bugbanes\n", + "bugbear\n", + "bugbears\n", + "bugeye\n", + "bugeyes\n", + "bugged\n", + "bugger\n", + "buggered\n", + "buggeries\n", + "buggering\n", + "buggers\n", + "buggery\n", + "buggier\n", + "buggies\n", + "buggiest\n", + "bugging\n", + "buggy\n", + "bughouse\n", + "bughouses\n", + "bugle\n", + "bugled\n", + "bugler\n", + "buglers\n", + "bugles\n", + "bugling\n", + "bugloss\n", + "buglosses\n", + "bugs\n", + "bugseed\n", + "bugseeds\n", + "bugsha\n", + "bugshas\n", + "buhl\n", + "buhls\n", + "buhlwork\n", + "buhlworks\n", + "buhr\n", + "buhrs\n", + "build\n", + "builded\n", + "builder\n", + "builders\n", + "building\n", + "buildings\n", + "builds\n", + "buildup\n", + "buildups\n", + "built\n", + "buirdly\n", + "bulb\n", + "bulbar\n", + "bulbed\n", + "bulbel\n", + "bulbels\n", + "bulbil\n", + "bulbils\n", + "bulbous\n", + "bulbs\n", + "bulbul\n", + "bulbuls\n", + "bulge\n", + "bulged\n", + "bulger\n", + "bulgers\n", + "bulges\n", + "bulgier\n", + "bulgiest\n", + "bulging\n", + "bulgur\n", + "bulgurs\n", + "bulgy\n", + "bulimia\n", + "bulimiac\n", + "bulimias\n", + "bulimic\n", + "bulk\n", + "bulkage\n", + "bulkages\n", + "bulked\n", + "bulkhead\n", + "bulkheads\n", + "bulkier\n", + "bulkiest\n", + "bulkily\n", + "bulking\n", + "bulks\n", + "bulky\n", + "bull\n", + "bulla\n", + "bullace\n", + "bullaces\n", + "bullae\n", + "bullate\n", + "bullbat\n", + "bullbats\n", + "bulldog\n", + "bulldogged\n", + "bulldogging\n", + "bulldogs\n", + "bulldoze\n", + "bulldozed\n", + "bulldozer\n", + "bulldozers\n", + "bulldozes\n", + "bulldozing\n", + "bulled\n", + "bullet\n", + "bulleted\n", + "bulletin\n", + "bulletined\n", + "bulleting\n", + "bulletining\n", + "bulletins\n", + "bulletproof\n", + "bulletproofs\n", + "bullets\n", + "bullfight\n", + "bullfighter\n", + "bullfighters\n", + "bullfights\n", + "bullfinch\n", + "bullfinches\n", + "bullfrog\n", + "bullfrogs\n", + "bullhead\n", + "bullheaded\n", + "bullheads\n", + "bullhorn\n", + "bullhorns\n", + "bullied\n", + "bullier\n", + "bullies\n", + "bulliest\n", + "bulling\n", + "bullion\n", + "bullions\n", + "bullish\n", + "bullneck\n", + "bullnecks\n", + "bullnose\n", + "bullnoses\n", + "bullock\n", + "bullocks\n", + "bullocky\n", + "bullous\n", + "bullpen\n", + "bullpens\n", + "bullpout\n", + "bullpouts\n", + "bullring\n", + "bullrings\n", + "bullrush\n", + "bullrushes\n", + "bulls\n", + "bullweed\n", + "bullweeds\n", + "bullwhip\n", + "bullwhipped\n", + "bullwhipping\n", + "bullwhips\n", + "bully\n", + "bullyboy\n", + "bullyboys\n", + "bullying\n", + "bullyrag\n", + "bullyragged\n", + "bullyragging\n", + "bullyrags\n", + "bulrush\n", + "bulrushes\n", + "bulwark\n", + "bulwarked\n", + "bulwarking\n", + "bulwarks\n", + "bum\n", + "bumble\n", + "bumblebee\n", + "bumblebees\n", + "bumbled\n", + "bumbler\n", + "bumblers\n", + "bumbles\n", + "bumbling\n", + "bumblings\n", + "bumboat\n", + "bumboats\n", + "bumf\n", + "bumfs\n", + "bumkin\n", + "bumkins\n", + "bummed\n", + "bummer\n", + "bummers\n", + "bumming\n", + "bump\n", + "bumped\n", + "bumper\n", + "bumpered\n", + "bumpering\n", + "bumpers\n", + "bumpier\n", + "bumpiest\n", + "bumpily\n", + "bumping\n", + "bumpkin\n", + "bumpkins\n", + "bumps\n", + "bumpy\n", + "bums\n", + "bun\n", + "bunch\n", + "bunched\n", + "bunches\n", + "bunchier\n", + "bunchiest\n", + "bunchily\n", + "bunching\n", + "bunchy\n", + "bunco\n", + "buncoed\n", + "buncoing\n", + "buncombe\n", + "buncombes\n", + "buncos\n", + "bund\n", + "bundist\n", + "bundists\n", + "bundle\n", + "bundled\n", + "bundler\n", + "bundlers\n", + "bundles\n", + "bundling\n", + "bundlings\n", + "bunds\n", + "bung\n", + "bungalow\n", + "bungalows\n", + "bunged\n", + "bunghole\n", + "bungholes\n", + "bunging\n", + "bungle\n", + "bungled\n", + "bungler\n", + "bunglers\n", + "bungles\n", + "bungling\n", + "bunglings\n", + "bungs\n", + "bunion\n", + "bunions\n", + "bunk\n", + "bunked\n", + "bunker\n", + "bunkered\n", + "bunkering\n", + "bunkers\n", + "bunking\n", + "bunkmate\n", + "bunkmates\n", + "bunko\n", + "bunkoed\n", + "bunkoing\n", + "bunkos\n", + "bunks\n", + "bunkum\n", + "bunkums\n", + "bunky\n", + "bunn\n", + "bunnies\n", + "bunns\n", + "bunny\n", + "buns\n", + "bunt\n", + "bunted\n", + "bunter\n", + "bunters\n", + "bunting\n", + "buntings\n", + "buntline\n", + "buntlines\n", + "bunts\n", + "bunya\n", + "bunyas\n", + "buoy\n", + "buoyage\n", + "buoyages\n", + "buoyance\n", + "buoyances\n", + "buoyancies\n", + "buoyancy\n", + "buoyant\n", + "buoyed\n", + "buoying\n", + "buoys\n", + "buqsha\n", + "buqshas\n", + "bur\n", + "bura\n", + "buran\n", + "burans\n", + "buras\n", + "burble\n", + "burbled\n", + "burbler\n", + "burblers\n", + "burbles\n", + "burblier\n", + "burbliest\n", + "burbling\n", + "burbly\n", + "burbot\n", + "burbots\n", + "burd\n", + "burden\n", + "burdened\n", + "burdener\n", + "burdeners\n", + "burdening\n", + "burdens\n", + "burdensome\n", + "burdie\n", + "burdies\n", + "burdock\n", + "burdocks\n", + "burds\n", + "bureau\n", + "bureaucracies\n", + "bureaucracy\n", + "bureaucrat\n", + "bureaucratic\n", + "bureaucrats\n", + "bureaus\n", + "bureaux\n", + "buret\n", + "burets\n", + "burette\n", + "burettes\n", + "burg\n", + "burgage\n", + "burgages\n", + "burgee\n", + "burgees\n", + "burgeon\n", + "burgeoned\n", + "burgeoning\n", + "burgeons\n", + "burger\n", + "burgers\n", + "burgess\n", + "burgesses\n", + "burgh\n", + "burghal\n", + "burgher\n", + "burghers\n", + "burghs\n", + "burglar\n", + "burglaries\n", + "burglarize\n", + "burglarized\n", + "burglarizes\n", + "burglarizing\n", + "burglars\n", + "burglary\n", + "burgle\n", + "burgled\n", + "burgles\n", + "burgling\n", + "burgonet\n", + "burgonets\n", + "burgoo\n", + "burgoos\n", + "burgout\n", + "burgouts\n", + "burgrave\n", + "burgraves\n", + "burgs\n", + "burgundies\n", + "burgundy\n", + "burial\n", + "burials\n", + "buried\n", + "burier\n", + "buriers\n", + "buries\n", + "burin\n", + "burins\n", + "burke\n", + "burked\n", + "burker\n", + "burkers\n", + "burkes\n", + "burking\n", + "burkite\n", + "burkites\n", + "burl\n", + "burlap\n", + "burlaps\n", + "burled\n", + "burler\n", + "burlers\n", + "burlesk\n", + "burlesks\n", + "burlesque\n", + "burlesqued\n", + "burlesques\n", + "burlesquing\n", + "burley\n", + "burleys\n", + "burlier\n", + "burliest\n", + "burlily\n", + "burling\n", + "burls\n", + "burly\n", + "burn\n", + "burnable\n", + "burned\n", + "burner\n", + "burners\n", + "burnet\n", + "burnets\n", + "burnie\n", + "burnies\n", + "burning\n", + "burnings\n", + "burnish\n", + "burnished\n", + "burnishes\n", + "burnishing\n", + "burnoose\n", + "burnooses\n", + "burnous\n", + "burnouses\n", + "burnout\n", + "burnouts\n", + "burns\n", + "burnt\n", + "burp\n", + "burped\n", + "burping\n", + "burps\n", + "burr\n", + "burred\n", + "burrer\n", + "burrers\n", + "burrier\n", + "burriest\n", + "burring\n", + "burro\n", + "burros\n", + "burrow\n", + "burrowed\n", + "burrower\n", + "burrowers\n", + "burrowing\n", + "burrows\n", + "burrs\n", + "burry\n", + "burs\n", + "bursa\n", + "bursae\n", + "bursal\n", + "bursar\n", + "bursaries\n", + "bursars\n", + "bursary\n", + "bursas\n", + "bursate\n", + "burse\n", + "burseed\n", + "burseeds\n", + "burses\n", + "bursitis\n", + "bursitises\n", + "burst\n", + "bursted\n", + "burster\n", + "bursters\n", + "bursting\n", + "burstone\n", + "burstones\n", + "bursts\n", + "burthen\n", + "burthened\n", + "burthening\n", + "burthens\n", + "burton\n", + "burtons\n", + "burweed\n", + "burweeds\n", + "bury\n", + "burying\n", + "bus\n", + "busbies\n", + "busboy\n", + "busboys\n", + "busby\n", + "bused\n", + "buses\n", + "bush\n", + "bushbuck\n", + "bushbucks\n", + "bushed\n", + "bushel\n", + "busheled\n", + "busheler\n", + "bushelers\n", + "busheling\n", + "bushelled\n", + "bushelling\n", + "bushels\n", + "busher\n", + "bushers\n", + "bushes\n", + "bushfire\n", + "bushfires\n", + "bushgoat\n", + "bushgoats\n", + "bushido\n", + "bushidos\n", + "bushier\n", + "bushiest\n", + "bushily\n", + "bushing\n", + "bushings\n", + "bushland\n", + "bushlands\n", + "bushless\n", + "bushlike\n", + "bushman\n", + "bushmen\n", + "bushtit\n", + "bushtits\n", + "bushy\n", + "busied\n", + "busier\n", + "busies\n", + "busiest\n", + "busily\n", + "business\n", + "businesses\n", + "businessman\n", + "businessmen\n", + "businesswoman\n", + "businesswomen\n", + "busing\n", + "busings\n", + "busk\n", + "busked\n", + "busker\n", + "buskers\n", + "buskin\n", + "buskined\n", + "busking\n", + "buskins\n", + "busks\n", + "busman\n", + "busmen\n", + "buss\n", + "bussed\n", + "busses\n", + "bussing\n", + "bussings\n", + "bust\n", + "bustard\n", + "bustards\n", + "busted\n", + "buster\n", + "busters\n", + "bustic\n", + "bustics\n", + "bustier\n", + "bustiest\n", + "busting\n", + "bustle\n", + "bustled\n", + "bustles\n", + "bustling\n", + "busts\n", + "busty\n", + "busulfan\n", + "busulfans\n", + "busy\n", + "busybodies\n", + "busybody\n", + "busying\n", + "busyness\n", + "busynesses\n", + "busywork\n", + "busyworks\n", + "but\n", + "butane\n", + "butanes\n", + "butanol\n", + "butanols\n", + "butanone\n", + "butanones\n", + "butch\n", + "butcher\n", + "butchered\n", + "butcheries\n", + "butchering\n", + "butchers\n", + "butchery\n", + "butches\n", + "butene\n", + "butenes\n", + "buteo\n", + "buteos\n", + "butler\n", + "butleries\n", + "butlers\n", + "butlery\n", + "buts\n", + "butt\n", + "buttals\n", + "butte\n", + "butted\n", + "butter\n", + "buttercup\n", + "buttercups\n", + "buttered\n", + "butterfat\n", + "butterfats\n", + "butterflies\n", + "butterfly\n", + "butterier\n", + "butteries\n", + "butteriest\n", + "buttering\n", + "buttermilk\n", + "butternut\n", + "butternuts\n", + "butters\n", + "butterscotch\n", + "butterscotches\n", + "buttery\n", + "buttes\n", + "butties\n", + "butting\n", + "buttock\n", + "buttocks\n", + "button\n", + "buttoned\n", + "buttoner\n", + "buttoners\n", + "buttonhole\n", + "buttonholes\n", + "buttoning\n", + "buttons\n", + "buttony\n", + "buttress\n", + "buttressed\n", + "buttresses\n", + "buttressing\n", + "butts\n", + "butty\n", + "butut\n", + "bututs\n", + "butyl\n", + "butylate\n", + "butylated\n", + "butylates\n", + "butylating\n", + "butylene\n", + "butylenes\n", + "butyls\n", + "butyral\n", + "butyrals\n", + "butyrate\n", + "butyrates\n", + "butyric\n", + "butyrin\n", + "butyrins\n", + "butyrous\n", + "butyryl\n", + "butyryls\n", + "buxom\n", + "buxomer\n", + "buxomest\n", + "buxomly\n", + "buy\n", + "buyable\n", + "buyer\n", + "buyers\n", + "buying\n", + "buys\n", + "buzz\n", + "buzzard\n", + "buzzards\n", + "buzzed\n", + "buzzer\n", + "buzzers\n", + "buzzes\n", + "buzzing\n", + "buzzwig\n", + "buzzwigs\n", + "buzzword\n", + "buzzwords\n", + "buzzy\n", + "bwana\n", + "bwanas\n", + "by\n", + "bye\n", + "byelaw\n", + "byelaws\n", + "byes\n", + "bygone\n", + "bygones\n", + "bylaw\n", + "bylaws\n", + "byline\n", + "bylined\n", + "byliner\n", + "byliners\n", + "bylines\n", + "bylining\n", + "byname\n", + "bynames\n", + "bypass\n", + "bypassed\n", + "bypasses\n", + "bypassing\n", + "bypast\n", + "bypath\n", + "bypaths\n", + "byplay\n", + "byplays\n", + "byre\n", + "byres\n", + "byrl\n", + "byrled\n", + "byrling\n", + "byrls\n", + "byrnie\n", + "byrnies\n", + "byroad\n", + "byroads\n", + "bys\n", + "byssi\n", + "byssus\n", + "byssuses\n", + "bystander\n", + "bystanders\n", + "bystreet\n", + "bystreets\n", + "bytalk\n", + "bytalks\n", + "byte\n", + "bytes\n", + "byway\n", + "byways\n", + "byword\n", + "bywords\n", + "bywork\n", + "byworks\n", + "byzant\n", + "byzants\n", + "cab\n", + "cabal\n", + "cabala\n", + "cabalas\n", + "cabalism\n", + "cabalisms\n", + "cabalist\n", + "cabalists\n", + "caballed\n", + "caballing\n", + "cabals\n", + "cabana\n", + "cabanas\n", + "cabaret\n", + "cabarets\n", + "cabbage\n", + "cabbaged\n", + "cabbages\n", + "cabbaging\n", + "cabbala\n", + "cabbalah\n", + "cabbalahs\n", + "cabbalas\n", + "cabbie\n", + "cabbies\n", + "cabby\n", + "caber\n", + "cabers\n", + "cabestro\n", + "cabestros\n", + "cabezon\n", + "cabezone\n", + "cabezones\n", + "cabezons\n", + "cabildo\n", + "cabildos\n", + "cabin\n", + "cabined\n", + "cabinet\n", + "cabinetmaker\n", + "cabinetmakers\n", + "cabinetmaking\n", + "cabinetmakings\n", + "cabinets\n", + "cabinetwork\n", + "cabinetworks\n", + "cabining\n", + "cabins\n", + "cable\n", + "cabled\n", + "cablegram\n", + "cablegrams\n", + "cables\n", + "cablet\n", + "cablets\n", + "cableway\n", + "cableways\n", + "cabling\n", + "cabman\n", + "cabmen\n", + "cabob\n", + "cabobs\n", + "caboched\n", + "cabochon\n", + "cabochons\n", + "caboodle\n", + "caboodles\n", + "caboose\n", + "cabooses\n", + "caboshed\n", + "cabotage\n", + "cabotages\n", + "cabresta\n", + "cabrestas\n", + "cabresto\n", + "cabrestos\n", + "cabretta\n", + "cabrettas\n", + "cabrilla\n", + "cabrillas\n", + "cabriole\n", + "cabrioles\n", + "cabs\n", + "cabstand\n", + "cabstands\n", + "cacao\n", + "cacaos\n", + "cachalot\n", + "cachalots\n", + "cache\n", + "cached\n", + "cachepot\n", + "cachepots\n", + "caches\n", + "cachet\n", + "cachets\n", + "cachexia\n", + "cachexias\n", + "cachexic\n", + "cachexies\n", + "cachexy\n", + "caching\n", + "cachou\n", + "cachous\n", + "cachucha\n", + "cachuchas\n", + "cacique\n", + "caciques\n", + "cackle\n", + "cackled\n", + "cackler\n", + "cacklers\n", + "cackles\n", + "cackling\n", + "cacodyl\n", + "cacodyls\n", + "cacomixl\n", + "cacomixls\n", + "cacophonies\n", + "cacophonous\n", + "cacophony\n", + "cacti\n", + "cactoid\n", + "cactus\n", + "cactuses\n", + "cad\n", + "cadaster\n", + "cadasters\n", + "cadastre\n", + "cadastres\n", + "cadaver\n", + "cadavers\n", + "caddice\n", + "caddices\n", + "caddie\n", + "caddied\n", + "caddies\n", + "caddis\n", + "caddises\n", + "caddish\n", + "caddishly\n", + "caddishness\n", + "caddishnesses\n", + "caddy\n", + "caddying\n", + "cade\n", + "cadelle\n", + "cadelles\n", + "cadence\n", + "cadenced\n", + "cadences\n", + "cadencies\n", + "cadencing\n", + "cadency\n", + "cadent\n", + "cadenza\n", + "cadenzas\n", + "cades\n", + "cadet\n", + "cadets\n", + "cadge\n", + "cadged\n", + "cadger\n", + "cadgers\n", + "cadges\n", + "cadging\n", + "cadgy\n", + "cadi\n", + "cadis\n", + "cadmic\n", + "cadmium\n", + "cadmiums\n", + "cadre\n", + "cadres\n", + "cads\n", + "caducean\n", + "caducei\n", + "caduceus\n", + "caducities\n", + "caducity\n", + "caducous\n", + "caeca\n", + "caecal\n", + "caecally\n", + "caecum\n", + "caeoma\n", + "caeomas\n", + "caesium\n", + "caesiums\n", + "caestus\n", + "caestuses\n", + "caesura\n", + "caesurae\n", + "caesural\n", + "caesuras\n", + "caesuric\n", + "cafe\n", + "cafes\n", + "cafeteria\n", + "cafeterias\n", + "caffein\n", + "caffeine\n", + "caffeines\n", + "caffeins\n", + "caftan\n", + "caftans\n", + "cage\n", + "caged\n", + "cageling\n", + "cagelings\n", + "cager\n", + "cages\n", + "cagey\n", + "cagier\n", + "cagiest\n", + "cagily\n", + "caginess\n", + "caginesses\n", + "caging\n", + "cagy\n", + "cahier\n", + "cahiers\n", + "cahoot\n", + "cahoots\n", + "cahow\n", + "cahows\n", + "caid\n", + "caids\n", + "caiman\n", + "caimans\n", + "cain\n", + "cains\n", + "caique\n", + "caiques\n", + "caird\n", + "cairds\n", + "cairn\n", + "cairned\n", + "cairns\n", + "cairny\n", + "caisson\n", + "caissons\n", + "caitiff\n", + "caitiffs\n", + "cajaput\n", + "cajaputs\n", + "cajeput\n", + "cajeputs\n", + "cajole\n", + "cajoled\n", + "cajoler\n", + "cajoleries\n", + "cajolers\n", + "cajolery\n", + "cajoles\n", + "cajoling\n", + "cajon\n", + "cajones\n", + "cajuput\n", + "cajuputs\n", + "cake\n", + "caked\n", + "cakes\n", + "cakewalk\n", + "cakewalked\n", + "cakewalking\n", + "cakewalks\n", + "caking\n", + "calabash\n", + "calabashes\n", + "caladium\n", + "caladiums\n", + "calamar\n", + "calamaries\n", + "calamars\n", + "calamary\n", + "calami\n", + "calamine\n", + "calamined\n", + "calamines\n", + "calamining\n", + "calamint\n", + "calamints\n", + "calamite\n", + "calamites\n", + "calamities\n", + "calamitous\n", + "calamitously\n", + "calamitousness\n", + "calamitousnesses\n", + "calamity\n", + "calamus\n", + "calando\n", + "calash\n", + "calashes\n", + "calathi\n", + "calathos\n", + "calathus\n", + "calcanea\n", + "calcanei\n", + "calcar\n", + "calcaria\n", + "calcars\n", + "calceate\n", + "calces\n", + "calcic\n", + "calcific\n", + "calcification\n", + "calcifications\n", + "calcified\n", + "calcifies\n", + "calcify\n", + "calcifying\n", + "calcine\n", + "calcined\n", + "calcines\n", + "calcining\n", + "calcite\n", + "calcites\n", + "calcitic\n", + "calcium\n", + "calciums\n", + "calcspar\n", + "calcspars\n", + "calctufa\n", + "calctufas\n", + "calctuff\n", + "calctuffs\n", + "calculable\n", + "calculably\n", + "calculate\n", + "calculated\n", + "calculates\n", + "calculating\n", + "calculation\n", + "calculations\n", + "calculator\n", + "calculators\n", + "calculi\n", + "calculus\n", + "calculuses\n", + "caldera\n", + "calderas\n", + "caldron\n", + "caldrons\n", + "caleche\n", + "caleches\n", + "calendal\n", + "calendar\n", + "calendared\n", + "calendaring\n", + "calendars\n", + "calender\n", + "calendered\n", + "calendering\n", + "calenders\n", + "calends\n", + "calesa\n", + "calesas\n", + "calf\n", + "calflike\n", + "calfs\n", + "calfskin\n", + "calfskins\n", + "caliber\n", + "calibers\n", + "calibrate\n", + "calibrated\n", + "calibrates\n", + "calibrating\n", + "calibration\n", + "calibrations\n", + "calibrator\n", + "calibrators\n", + "calibre\n", + "calibred\n", + "calibres\n", + "calices\n", + "caliche\n", + "caliches\n", + "calicle\n", + "calicles\n", + "calico\n", + "calicoes\n", + "calicos\n", + "calif\n", + "califate\n", + "califates\n", + "california\n", + "califs\n", + "calipash\n", + "calipashes\n", + "calipee\n", + "calipees\n", + "caliper\n", + "calipered\n", + "calipering\n", + "calipers\n", + "caliph\n", + "caliphal\n", + "caliphate\n", + "caliphates\n", + "caliphs\n", + "calisaya\n", + "calisayas\n", + "calisthenic\n", + "calisthenics\n", + "calix\n", + "calk\n", + "calked\n", + "calker\n", + "calkers\n", + "calkin\n", + "calking\n", + "calkins\n", + "calks\n", + "call\n", + "calla\n", + "callable\n", + "callan\n", + "callans\n", + "callant\n", + "callants\n", + "callas\n", + "callback\n", + "callbacks\n", + "callboy\n", + "callboys\n", + "called\n", + "caller\n", + "callers\n", + "callet\n", + "callets\n", + "calli\n", + "calling\n", + "callings\n", + "calliope\n", + "calliopes\n", + "callipee\n", + "callipees\n", + "calliper\n", + "callipered\n", + "callipering\n", + "callipers\n", + "callose\n", + "calloses\n", + "callosities\n", + "callosity\n", + "callous\n", + "calloused\n", + "callouses\n", + "callousing\n", + "callously\n", + "callousness\n", + "callousnesses\n", + "callow\n", + "callower\n", + "callowest\n", + "callowness\n", + "callownesses\n", + "calls\n", + "callus\n", + "callused\n", + "calluses\n", + "callusing\n", + "calm\n", + "calmed\n", + "calmer\n", + "calmest\n", + "calming\n", + "calmly\n", + "calmness\n", + "calmnesses\n", + "calms\n", + "calomel\n", + "calomels\n", + "caloric\n", + "calorics\n", + "calorie\n", + "calories\n", + "calory\n", + "calotte\n", + "calottes\n", + "caloyer\n", + "caloyers\n", + "calpac\n", + "calpack\n", + "calpacks\n", + "calpacs\n", + "calque\n", + "calqued\n", + "calques\n", + "calquing\n", + "calthrop\n", + "calthrops\n", + "caltrap\n", + "caltraps\n", + "caltrop\n", + "caltrops\n", + "calumet\n", + "calumets\n", + "calumniate\n", + "calumniated\n", + "calumniates\n", + "calumniating\n", + "calumniation\n", + "calumniations\n", + "calumnies\n", + "calumnious\n", + "calumny\n", + "calutron\n", + "calutrons\n", + "calvados\n", + "calvadoses\n", + "calvaria\n", + "calvarias\n", + "calvaries\n", + "calvary\n", + "calve\n", + "calved\n", + "calves\n", + "calving\n", + "calx\n", + "calxes\n", + "calycate\n", + "calyceal\n", + "calyces\n", + "calycine\n", + "calycle\n", + "calycles\n", + "calyculi\n", + "calypso\n", + "calypsoes\n", + "calypsos\n", + "calypter\n", + "calypters\n", + "calyptra\n", + "calyptras\n", + "calyx\n", + "calyxes\n", + "cam\n", + "camail\n", + "camailed\n", + "camails\n", + "camaraderie\n", + "camaraderies\n", + "camas\n", + "camases\n", + "camass\n", + "camasses\n", + "camber\n", + "cambered\n", + "cambering\n", + "cambers\n", + "cambia\n", + "cambial\n", + "cambism\n", + "cambisms\n", + "cambist\n", + "cambists\n", + "cambium\n", + "cambiums\n", + "cambogia\n", + "cambogias\n", + "cambric\n", + "cambrics\n", + "cambridge\n", + "came\n", + "camel\n", + "cameleer\n", + "cameleers\n", + "camelia\n", + "camelias\n", + "camellia\n", + "camellias\n", + "camels\n", + "cameo\n", + "cameoed\n", + "cameoing\n", + "cameos\n", + "camera\n", + "camerae\n", + "cameral\n", + "cameraman\n", + "cameramen\n", + "cameras\n", + "cames\n", + "camion\n", + "camions\n", + "camisa\n", + "camisade\n", + "camisades\n", + "camisado\n", + "camisadoes\n", + "camisados\n", + "camisas\n", + "camise\n", + "camises\n", + "camisia\n", + "camisias\n", + "camisole\n", + "camisoles\n", + "camlet\n", + "camlets\n", + "camomile\n", + "camomiles\n", + "camorra\n", + "camorras\n", + "camouflage\n", + "camouflaged\n", + "camouflages\n", + "camouflaging\n", + "camp\n", + "campagna\n", + "campagne\n", + "campaign\n", + "campaigned\n", + "campaigner\n", + "campaigners\n", + "campaigning\n", + "campaigns\n", + "campanile\n", + "campaniles\n", + "campanili\n", + "camped\n", + "camper\n", + "campers\n", + "campfire\n", + "campfires\n", + "campground\n", + "campgrounds\n", + "camphene\n", + "camphenes\n", + "camphine\n", + "camphines\n", + "camphol\n", + "camphols\n", + "camphor\n", + "camphors\n", + "campi\n", + "campier\n", + "campiest\n", + "campily\n", + "camping\n", + "campings\n", + "campion\n", + "campions\n", + "campo\n", + "campong\n", + "campongs\n", + "camporee\n", + "camporees\n", + "campos\n", + "camps\n", + "campsite\n", + "campsites\n", + "campus\n", + "campuses\n", + "campy\n", + "cams\n", + "camshaft\n", + "camshafts\n", + "can\n", + "canaille\n", + "canailles\n", + "canakin\n", + "canakins\n", + "canal\n", + "canaled\n", + "canaling\n", + "canalise\n", + "canalised\n", + "canalises\n", + "canalising\n", + "canalize\n", + "canalized\n", + "canalizes\n", + "canalizing\n", + "canalled\n", + "canaller\n", + "canallers\n", + "canalling\n", + "canals\n", + "canape\n", + "canapes\n", + "canard\n", + "canards\n", + "canaries\n", + "canary\n", + "canasta\n", + "canastas\n", + "cancan\n", + "cancans\n", + "cancel\n", + "canceled\n", + "canceler\n", + "cancelers\n", + "canceling\n", + "cancellation\n", + "cancellations\n", + "cancelled\n", + "cancelling\n", + "cancels\n", + "cancer\n", + "cancerlog\n", + "cancerous\n", + "cancerously\n", + "cancers\n", + "cancha\n", + "canchas\n", + "cancroid\n", + "cancroids\n", + "candela\n", + "candelabra\n", + "candelabras\n", + "candelabrum\n", + "candelas\n", + "candent\n", + "candid\n", + "candida\n", + "candidacies\n", + "candidacy\n", + "candidas\n", + "candidate\n", + "candidates\n", + "candider\n", + "candidest\n", + "candidly\n", + "candidness\n", + "candidnesses\n", + "candids\n", + "candied\n", + "candies\n", + "candle\n", + "candled\n", + "candlelight\n", + "candlelights\n", + "candler\n", + "candlers\n", + "candles\n", + "candlestick\n", + "candlesticks\n", + "candling\n", + "candor\n", + "candors\n", + "candour\n", + "candours\n", + "candy\n", + "candying\n", + "cane\n", + "caned\n", + "canella\n", + "canellas\n", + "caner\n", + "caners\n", + "canes\n", + "caneware\n", + "canewares\n", + "canfield\n", + "canfields\n", + "canful\n", + "canfuls\n", + "cangue\n", + "cangues\n", + "canikin\n", + "canikins\n", + "canine\n", + "canines\n", + "caning\n", + "caninities\n", + "caninity\n", + "canister\n", + "canisters\n", + "canities\n", + "canker\n", + "cankered\n", + "cankering\n", + "cankerous\n", + "cankers\n", + "canna\n", + "cannabic\n", + "cannabin\n", + "cannabins\n", + "cannabis\n", + "cannabises\n", + "cannas\n", + "canned\n", + "cannel\n", + "cannelon\n", + "cannelons\n", + "cannels\n", + "canner\n", + "canneries\n", + "canners\n", + "cannery\n", + "cannibal\n", + "cannibalism\n", + "cannibalisms\n", + "cannibalistic\n", + "cannibalize\n", + "cannibalized\n", + "cannibalizes\n", + "cannibalizing\n", + "cannibals\n", + "cannie\n", + "cannier\n", + "canniest\n", + "cannikin\n", + "cannikins\n", + "cannily\n", + "canniness\n", + "canninesses\n", + "canning\n", + "cannings\n", + "cannon\n", + "cannonade\n", + "cannonaded\n", + "cannonades\n", + "cannonading\n", + "cannonball\n", + "cannonballs\n", + "cannoned\n", + "cannoneer\n", + "cannoneers\n", + "cannoning\n", + "cannonries\n", + "cannonry\n", + "cannons\n", + "cannot\n", + "cannula\n", + "cannulae\n", + "cannular\n", + "cannulas\n", + "canny\n", + "canoe\n", + "canoed\n", + "canoeing\n", + "canoeist\n", + "canoeists\n", + "canoes\n", + "canon\n", + "canoness\n", + "canonesses\n", + "canonic\n", + "canonical\n", + "canonically\n", + "canonise\n", + "canonised\n", + "canonises\n", + "canonising\n", + "canonist\n", + "canonists\n", + "canonization\n", + "canonizations\n", + "canonize\n", + "canonized\n", + "canonizes\n", + "canonizing\n", + "canonries\n", + "canonry\n", + "canons\n", + "canopied\n", + "canopies\n", + "canopy\n", + "canopying\n", + "canorous\n", + "cans\n", + "cansful\n", + "canso\n", + "cansos\n", + "canst\n", + "cant\n", + "cantala\n", + "cantalas\n", + "cantaloupe\n", + "cantaloupes\n", + "cantankerous\n", + "cantankerously\n", + "cantankerousness\n", + "cantankerousnesses\n", + "cantata\n", + "cantatas\n", + "cantdog\n", + "cantdogs\n", + "canted\n", + "canteen\n", + "canteens\n", + "canter\n", + "cantered\n", + "cantering\n", + "canters\n", + "canthal\n", + "canthi\n", + "canthus\n", + "cantic\n", + "canticle\n", + "canticles\n", + "cantilever\n", + "cantilevers\n", + "cantina\n", + "cantinas\n", + "canting\n", + "cantle\n", + "cantles\n", + "canto\n", + "canton\n", + "cantonal\n", + "cantoned\n", + "cantoning\n", + "cantons\n", + "cantor\n", + "cantors\n", + "cantos\n", + "cantraip\n", + "cantraips\n", + "cantrap\n", + "cantraps\n", + "cantrip\n", + "cantrips\n", + "cants\n", + "cantus\n", + "canty\n", + "canula\n", + "canulae\n", + "canulas\n", + "canulate\n", + "canulated\n", + "canulates\n", + "canulating\n", + "canvas\n", + "canvased\n", + "canvaser\n", + "canvasers\n", + "canvases\n", + "canvasing\n", + "canvass\n", + "canvassed\n", + "canvasser\n", + "canvassers\n", + "canvasses\n", + "canvassing\n", + "canyon\n", + "canyons\n", + "canzona\n", + "canzonas\n", + "canzone\n", + "canzones\n", + "canzonet\n", + "canzonets\n", + "canzoni\n", + "cap\n", + "capabilities\n", + "capability\n", + "capable\n", + "capabler\n", + "capablest\n", + "capably\n", + "capacious\n", + "capacitance\n", + "capacitances\n", + "capacities\n", + "capacitor\n", + "capacitors\n", + "capacity\n", + "cape\n", + "caped\n", + "capelan\n", + "capelans\n", + "capelet\n", + "capelets\n", + "capelin\n", + "capelins\n", + "caper\n", + "capered\n", + "caperer\n", + "caperers\n", + "capering\n", + "capers\n", + "capes\n", + "capeskin\n", + "capeskins\n", + "capework\n", + "capeworks\n", + "capful\n", + "capfuls\n", + "caph\n", + "caphs\n", + "capias\n", + "capiases\n", + "capillaries\n", + "capillary\n", + "capita\n", + "capital\n", + "capitalism\n", + "capitalist\n", + "capitalistic\n", + "capitalistically\n", + "capitalists\n", + "capitalization\n", + "capitalizations\n", + "capitalize\n", + "capitalized\n", + "capitalizes\n", + "capitalizing\n", + "capitals\n", + "capitate\n", + "capitol\n", + "capitols\n", + "capitula\n", + "capitulate\n", + "capitulated\n", + "capitulates\n", + "capitulating\n", + "capitulation\n", + "capitulations\n", + "capless\n", + "caplin\n", + "caplins\n", + "capmaker\n", + "capmakers\n", + "capo\n", + "capon\n", + "caponier\n", + "caponiers\n", + "caponize\n", + "caponized\n", + "caponizes\n", + "caponizing\n", + "capons\n", + "caporal\n", + "caporals\n", + "capos\n", + "capote\n", + "capotes\n", + "capouch\n", + "capouches\n", + "capped\n", + "capper\n", + "cappers\n", + "capping\n", + "cappings\n", + "capric\n", + "capricci\n", + "caprice\n", + "caprices\n", + "capricious\n", + "caprifig\n", + "caprifigs\n", + "caprine\n", + "capriole\n", + "caprioled\n", + "caprioles\n", + "caprioling\n", + "caps\n", + "capsicin\n", + "capsicins\n", + "capsicum\n", + "capsicums\n", + "capsid\n", + "capsidal\n", + "capsids\n", + "capsize\n", + "capsized\n", + "capsizes\n", + "capsizing\n", + "capstan\n", + "capstans\n", + "capstone\n", + "capstones\n", + "capsular\n", + "capsulate\n", + "capsulated\n", + "capsule\n", + "capsuled\n", + "capsules\n", + "capsuling\n", + "captain\n", + "captaincies\n", + "captaincy\n", + "captained\n", + "captaining\n", + "captains\n", + "captainship\n", + "captainships\n", + "captan\n", + "captans\n", + "caption\n", + "captioned\n", + "captioning\n", + "captions\n", + "captious\n", + "captiously\n", + "captivate\n", + "captivated\n", + "captivates\n", + "captivating\n", + "captivation\n", + "captivations\n", + "captivator\n", + "captivators\n", + "captive\n", + "captives\n", + "captivities\n", + "captivity\n", + "captor\n", + "captors\n", + "capture\n", + "captured\n", + "capturer\n", + "capturers\n", + "captures\n", + "capturing\n", + "capuche\n", + "capuched\n", + "capuches\n", + "capuchin\n", + "capuchins\n", + "caput\n", + "capybara\n", + "capybaras\n", + "car\n", + "carabao\n", + "carabaos\n", + "carabid\n", + "carabids\n", + "carabin\n", + "carabine\n", + "carabines\n", + "carabins\n", + "caracal\n", + "caracals\n", + "caracara\n", + "caracaras\n", + "carack\n", + "caracks\n", + "caracol\n", + "caracole\n", + "caracoled\n", + "caracoles\n", + "caracoling\n", + "caracolled\n", + "caracolling\n", + "caracols\n", + "caracul\n", + "caraculs\n", + "carafe\n", + "carafes\n", + "caragana\n", + "caraganas\n", + "carageen\n", + "carageens\n", + "caramel\n", + "caramels\n", + "carangid\n", + "carangids\n", + "carapace\n", + "carapaces\n", + "carapax\n", + "carapaxes\n", + "carassow\n", + "carassows\n", + "carat\n", + "carate\n", + "carates\n", + "carats\n", + "caravan\n", + "caravaned\n", + "caravaning\n", + "caravanned\n", + "caravanning\n", + "caravans\n", + "caravel\n", + "caravels\n", + "caraway\n", + "caraways\n", + "carbamic\n", + "carbamyl\n", + "carbamyls\n", + "carbarn\n", + "carbarns\n", + "carbaryl\n", + "carbaryls\n", + "carbide\n", + "carbides\n", + "carbine\n", + "carbines\n", + "carbinol\n", + "carbinols\n", + "carbohydrate\n", + "carbohydrates\n", + "carbon\n", + "carbonate\n", + "carbonated\n", + "carbonates\n", + "carbonating\n", + "carbonation\n", + "carbonations\n", + "carbonic\n", + "carbons\n", + "carbonyl\n", + "carbonyls\n", + "carbora\n", + "carboras\n", + "carboxyl\n", + "carboxyls\n", + "carboy\n", + "carboyed\n", + "carboys\n", + "carbuncle\n", + "carbuncles\n", + "carburet\n", + "carbureted\n", + "carbureting\n", + "carburetor\n", + "carburetors\n", + "carburets\n", + "carburetted\n", + "carburetting\n", + "carcajou\n", + "carcajous\n", + "carcanet\n", + "carcanets\n", + "carcase\n", + "carcases\n", + "carcass\n", + "carcasses\n", + "carcel\n", + "carcels\n", + "carcinogen\n", + "carcinogenic\n", + "carcinogenics\n", + "carcinogens\n", + "carcinoma\n", + "carcinomas\n", + "carcinomata\n", + "carcinomatous\n", + "card\n", + "cardamom\n", + "cardamoms\n", + "cardamon\n", + "cardamons\n", + "cardamum\n", + "cardamums\n", + "cardboard\n", + "cardboards\n", + "cardcase\n", + "cardcases\n", + "carded\n", + "carder\n", + "carders\n", + "cardia\n", + "cardiac\n", + "cardiacs\n", + "cardiae\n", + "cardias\n", + "cardigan\n", + "cardigans\n", + "cardinal\n", + "cardinals\n", + "carding\n", + "cardings\n", + "cardiogram\n", + "cardiograms\n", + "cardiograph\n", + "cardiographic\n", + "cardiographies\n", + "cardiographs\n", + "cardiography\n", + "cardioid\n", + "cardioids\n", + "cardiologies\n", + "cardiologist\n", + "cardiologists\n", + "cardiology\n", + "cardiotoxicities\n", + "cardiotoxicity\n", + "cardiovascular\n", + "carditic\n", + "carditis\n", + "carditises\n", + "cardoon\n", + "cardoons\n", + "cards\n", + "care\n", + "cared\n", + "careen\n", + "careened\n", + "careener\n", + "careeners\n", + "careening\n", + "careens\n", + "career\n", + "careered\n", + "careerer\n", + "careerers\n", + "careering\n", + "careers\n", + "carefree\n", + "careful\n", + "carefuller\n", + "carefullest\n", + "carefully\n", + "carefulness\n", + "carefulnesses\n", + "careless\n", + "carelessly\n", + "carelessness\n", + "carelessnesses\n", + "carer\n", + "carers\n", + "cares\n", + "caress\n", + "caressed\n", + "caresser\n", + "caressers\n", + "caresses\n", + "caressing\n", + "caret\n", + "caretaker\n", + "caretakers\n", + "carets\n", + "careworn\n", + "carex\n", + "carfare\n", + "carfares\n", + "carful\n", + "carfuls\n", + "cargo\n", + "cargoes\n", + "cargos\n", + "carhop\n", + "carhops\n", + "caribe\n", + "caribes\n", + "caribou\n", + "caribous\n", + "caricature\n", + "caricatured\n", + "caricatures\n", + "caricaturing\n", + "caricaturist\n", + "caricaturists\n", + "carices\n", + "caried\n", + "caries\n", + "carillon\n", + "carillonned\n", + "carillonning\n", + "carillons\n", + "carina\n", + "carinae\n", + "carinal\n", + "carinas\n", + "carinate\n", + "caring\n", + "carioca\n", + "cariocas\n", + "cariole\n", + "carioles\n", + "carious\n", + "cark\n", + "carked\n", + "carking\n", + "carks\n", + "carl\n", + "carle\n", + "carles\n", + "carless\n", + "carlin\n", + "carline\n", + "carlines\n", + "carling\n", + "carlings\n", + "carlins\n", + "carlish\n", + "carload\n", + "carloads\n", + "carls\n", + "carmaker\n", + "carmakers\n", + "carman\n", + "carmen\n", + "carmine\n", + "carmines\n", + "carn\n", + "carnage\n", + "carnages\n", + "carnal\n", + "carnalities\n", + "carnality\n", + "carnally\n", + "carnation\n", + "carnations\n", + "carnauba\n", + "carnaubas\n", + "carney\n", + "carneys\n", + "carnie\n", + "carnies\n", + "carnified\n", + "carnifies\n", + "carnify\n", + "carnifying\n", + "carnival\n", + "carnivals\n", + "carnivore\n", + "carnivores\n", + "carnivorous\n", + "carnivorously\n", + "carnivorousness\n", + "carnivorousnesses\n", + "carns\n", + "carny\n", + "caroach\n", + "caroaches\n", + "carob\n", + "carobs\n", + "caroch\n", + "caroche\n", + "caroches\n", + "carol\n", + "caroled\n", + "caroler\n", + "carolers\n", + "caroli\n", + "caroling\n", + "carolled\n", + "caroller\n", + "carollers\n", + "carolling\n", + "carols\n", + "carolus\n", + "caroluses\n", + "carom\n", + "caromed\n", + "caroming\n", + "caroms\n", + "carotene\n", + "carotenes\n", + "carotid\n", + "carotids\n", + "carotin\n", + "carotins\n", + "carousal\n", + "carousals\n", + "carouse\n", + "caroused\n", + "carousel\n", + "carousels\n", + "carouser\n", + "carousers\n", + "carouses\n", + "carousing\n", + "carp\n", + "carpal\n", + "carpale\n", + "carpalia\n", + "carpals\n", + "carped\n", + "carpel\n", + "carpels\n", + "carpenter\n", + "carpentered\n", + "carpentering\n", + "carpenters\n", + "carpentries\n", + "carpentry\n", + "carper\n", + "carpers\n", + "carpet\n", + "carpeted\n", + "carpeting\n", + "carpets\n", + "carpi\n", + "carping\n", + "carpings\n", + "carport\n", + "carports\n", + "carps\n", + "carpus\n", + "carrack\n", + "carracks\n", + "carrel\n", + "carrell\n", + "carrells\n", + "carrels\n", + "carriage\n", + "carriages\n", + "carried\n", + "carrier\n", + "carriers\n", + "carries\n", + "carriole\n", + "carrioles\n", + "carrion\n", + "carrions\n", + "carritch\n", + "carritches\n", + "carroch\n", + "carroches\n", + "carrom\n", + "carromed\n", + "carroming\n", + "carroms\n", + "carrot\n", + "carrotier\n", + "carrotiest\n", + "carrotin\n", + "carrotins\n", + "carrots\n", + "carroty\n", + "carrousel\n", + "carrousels\n", + "carry\n", + "carryall\n", + "carryalls\n", + "carrying\n", + "carryon\n", + "carryons\n", + "carryout\n", + "carryouts\n", + "cars\n", + "carse\n", + "carses\n", + "carsick\n", + "cart\n", + "cartable\n", + "cartage\n", + "cartages\n", + "carte\n", + "carted\n", + "cartel\n", + "cartels\n", + "carter\n", + "carters\n", + "cartes\n", + "cartilage\n", + "cartilages\n", + "cartilaginous\n", + "carting\n", + "cartload\n", + "cartloads\n", + "cartographer\n", + "cartographers\n", + "cartographies\n", + "cartography\n", + "carton\n", + "cartoned\n", + "cartoning\n", + "cartons\n", + "cartoon\n", + "cartooned\n", + "cartooning\n", + "cartoonist\n", + "cartoonists\n", + "cartoons\n", + "cartop\n", + "cartouch\n", + "cartouches\n", + "cartridge\n", + "cartridges\n", + "carts\n", + "caruncle\n", + "caruncles\n", + "carve\n", + "carved\n", + "carvel\n", + "carvels\n", + "carven\n", + "carver\n", + "carvers\n", + "carves\n", + "carving\n", + "carvings\n", + "caryatid\n", + "caryatides\n", + "caryatids\n", + "caryotin\n", + "caryotins\n", + "casa\n", + "casaba\n", + "casabas\n", + "casas\n", + "casava\n", + "casavas\n", + "cascabel\n", + "cascabels\n", + "cascable\n", + "cascables\n", + "cascade\n", + "cascaded\n", + "cascades\n", + "cascading\n", + "cascara\n", + "cascaras\n", + "case\n", + "casease\n", + "caseases\n", + "caseate\n", + "caseated\n", + "caseates\n", + "caseating\n", + "casebook\n", + "casebooks\n", + "cased\n", + "casefied\n", + "casefies\n", + "casefy\n", + "casefying\n", + "caseic\n", + "casein\n", + "caseins\n", + "casemate\n", + "casemates\n", + "casement\n", + "casements\n", + "caseose\n", + "caseoses\n", + "caseous\n", + "casern\n", + "caserne\n", + "casernes\n", + "caserns\n", + "cases\n", + "casette\n", + "casettes\n", + "casework\n", + "caseworks\n", + "caseworm\n", + "caseworms\n", + "cash\n", + "cashable\n", + "cashaw\n", + "cashaws\n", + "cashbook\n", + "cashbooks\n", + "cashbox\n", + "cashboxes\n", + "cashed\n", + "cashes\n", + "cashew\n", + "cashews\n", + "cashier\n", + "cashiered\n", + "cashiering\n", + "cashiers\n", + "cashing\n", + "cashless\n", + "cashmere\n", + "cashmeres\n", + "cashoo\n", + "cashoos\n", + "casimere\n", + "casimeres\n", + "casimire\n", + "casimires\n", + "casing\n", + "casings\n", + "casino\n", + "casinos\n", + "cask\n", + "casked\n", + "casket\n", + "casketed\n", + "casketing\n", + "caskets\n", + "casking\n", + "casks\n", + "casky\n", + "casque\n", + "casqued\n", + "casques\n", + "cassaba\n", + "cassabas\n", + "cassava\n", + "cassavas\n", + "casserole\n", + "casseroles\n", + "cassette\n", + "cassettes\n", + "cassia\n", + "cassias\n", + "cassino\n", + "cassinos\n", + "cassis\n", + "cassises\n", + "cassock\n", + "cassocks\n", + "cast\n", + "castanet\n", + "castanets\n", + "castaway\n", + "castaways\n", + "caste\n", + "casteism\n", + "casteisms\n", + "caster\n", + "casters\n", + "castes\n", + "castigate\n", + "castigated\n", + "castigates\n", + "castigating\n", + "castigation\n", + "castigations\n", + "castigator\n", + "castigators\n", + "casting\n", + "castings\n", + "castle\n", + "castled\n", + "castles\n", + "castling\n", + "castoff\n", + "castoffs\n", + "castor\n", + "castors\n", + "castrate\n", + "castrated\n", + "castrates\n", + "castrati\n", + "castrating\n", + "castration\n", + "castrations\n", + "castrato\n", + "casts\n", + "casual\n", + "casually\n", + "casualness\n", + "casualnesses\n", + "casuals\n", + "casualties\n", + "casualty\n", + "casuist\n", + "casuistries\n", + "casuistry\n", + "casuists\n", + "casus\n", + "cat\n", + "cataclysm\n", + "cataclysms\n", + "catacomb\n", + "catacombs\n", + "catacylsmic\n", + "catalase\n", + "catalases\n", + "catalo\n", + "cataloes\n", + "catalog\n", + "cataloged\n", + "cataloger\n", + "catalogers\n", + "cataloging\n", + "catalogs\n", + "cataloguer\n", + "cataloguers\n", + "catalos\n", + "catalpa\n", + "catalpas\n", + "catalyses\n", + "catalysis\n", + "catalyst\n", + "catalysts\n", + "catalytic\n", + "catalyze\n", + "catalyzed\n", + "catalyzes\n", + "catalyzing\n", + "catamaran\n", + "catamarans\n", + "catamite\n", + "catamites\n", + "catamount\n", + "catamounts\n", + "catapult\n", + "catapulted\n", + "catapulting\n", + "catapults\n", + "cataract\n", + "cataracts\n", + "catarrh\n", + "catarrhs\n", + "catastrophe\n", + "catastrophes\n", + "catastrophic\n", + "catastrophically\n", + "catbird\n", + "catbirds\n", + "catboat\n", + "catboats\n", + "catbrier\n", + "catbriers\n", + "catcall\n", + "catcalled\n", + "catcalling\n", + "catcalls\n", + "catch\n", + "catchall\n", + "catchalls\n", + "catcher\n", + "catchers\n", + "catches\n", + "catchflies\n", + "catchfly\n", + "catchier\n", + "catchiest\n", + "catching\n", + "catchup\n", + "catchups\n", + "catchword\n", + "catchwords\n", + "catchy\n", + "cate\n", + "catechin\n", + "catechins\n", + "catechism\n", + "catechisms\n", + "catechist\n", + "catechists\n", + "catechize\n", + "catechized\n", + "catechizes\n", + "catechizing\n", + "catechol\n", + "catechols\n", + "catechu\n", + "catechus\n", + "categorical\n", + "categorically\n", + "categories\n", + "categorization\n", + "categorizations\n", + "categorize\n", + "categorized\n", + "categorizes\n", + "categorizing\n", + "category\n", + "catena\n", + "catenae\n", + "catenaries\n", + "catenary\n", + "catenas\n", + "catenate\n", + "catenated\n", + "catenates\n", + "catenating\n", + "catenoid\n", + "catenoids\n", + "cater\n", + "cateran\n", + "caterans\n", + "catercorner\n", + "catered\n", + "caterer\n", + "caterers\n", + "cateress\n", + "cateresses\n", + "catering\n", + "caterpillar\n", + "caterpillars\n", + "caters\n", + "caterwaul\n", + "caterwauled\n", + "caterwauling\n", + "caterwauls\n", + "cates\n", + "catface\n", + "catfaces\n", + "catfall\n", + "catfalls\n", + "catfish\n", + "catfishes\n", + "catgut\n", + "catguts\n", + "catharses\n", + "catharsis\n", + "cathartic\n", + "cathead\n", + "catheads\n", + "cathect\n", + "cathected\n", + "cathecting\n", + "cathects\n", + "cathedra\n", + "cathedrae\n", + "cathedral\n", + "cathedrals\n", + "cathedras\n", + "catheter\n", + "catheterization\n", + "catheters\n", + "cathexes\n", + "cathexis\n", + "cathode\n", + "cathodes\n", + "cathodic\n", + "catholic\n", + "cathouse\n", + "cathouses\n", + "cation\n", + "cationic\n", + "cations\n", + "catkin\n", + "catkins\n", + "catlike\n", + "catlin\n", + "catling\n", + "catlings\n", + "catlins\n", + "catmint\n", + "catmints\n", + "catnap\n", + "catnaper\n", + "catnapers\n", + "catnapped\n", + "catnapping\n", + "catnaps\n", + "catnip\n", + "catnips\n", + "cats\n", + "catspaw\n", + "catspaws\n", + "catsup\n", + "catsups\n", + "cattail\n", + "cattails\n", + "cattalo\n", + "cattaloes\n", + "cattalos\n", + "catted\n", + "cattie\n", + "cattier\n", + "catties\n", + "cattiest\n", + "cattily\n", + "cattiness\n", + "cattinesses\n", + "catting\n", + "cattish\n", + "cattle\n", + "cattleman\n", + "cattlemen\n", + "cattleya\n", + "cattleyas\n", + "catty\n", + "catwalk\n", + "catwalks\n", + "caucus\n", + "caucused\n", + "caucuses\n", + "caucusing\n", + "caucussed\n", + "caucusses\n", + "caucussing\n", + "caudad\n", + "caudal\n", + "caudally\n", + "caudate\n", + "caudated\n", + "caudex\n", + "caudexes\n", + "caudices\n", + "caudillo\n", + "caudillos\n", + "caudle\n", + "caudles\n", + "caught\n", + "caul\n", + "cauld\n", + "cauldron\n", + "cauldrons\n", + "caulds\n", + "caules\n", + "caulicle\n", + "caulicles\n", + "cauliflower\n", + "cauliflowers\n", + "cauline\n", + "caulis\n", + "caulk\n", + "caulked\n", + "caulker\n", + "caulkers\n", + "caulking\n", + "caulkings\n", + "caulks\n", + "cauls\n", + "causable\n", + "causal\n", + "causaless\n", + "causality\n", + "causally\n", + "causals\n", + "causation\n", + "causations\n", + "causative\n", + "cause\n", + "caused\n", + "causer\n", + "causerie\n", + "causeries\n", + "causers\n", + "causes\n", + "causeway\n", + "causewayed\n", + "causewaying\n", + "causeways\n", + "causey\n", + "causeys\n", + "causing\n", + "caustic\n", + "caustics\n", + "cauteries\n", + "cauterization\n", + "cauterizations\n", + "cauterize\n", + "cauterized\n", + "cauterizes\n", + "cauterizing\n", + "cautery\n", + "caution\n", + "cautionary\n", + "cautioned\n", + "cautioning\n", + "cautions\n", + "cautious\n", + "cautiously\n", + "cautiousness\n", + "cautiousnesses\n", + "cavalcade\n", + "cavalcades\n", + "cavalero\n", + "cavaleros\n", + "cavalier\n", + "cavaliered\n", + "cavaliering\n", + "cavalierly\n", + "cavalierness\n", + "cavaliernesses\n", + "cavaliers\n", + "cavalla\n", + "cavallas\n", + "cavallies\n", + "cavally\n", + "cavalries\n", + "cavalry\n", + "cavalryman\n", + "cavalrymen\n", + "cavatina\n", + "cavatinas\n", + "cavatine\n", + "cave\n", + "caveat\n", + "caveator\n", + "caveators\n", + "caveats\n", + "caved\n", + "cavefish\n", + "cavefishes\n", + "cavelike\n", + "caveman\n", + "cavemen\n", + "caver\n", + "cavern\n", + "caverned\n", + "caverning\n", + "cavernous\n", + "cavernously\n", + "caverns\n", + "cavers\n", + "caves\n", + "cavetti\n", + "cavetto\n", + "cavettos\n", + "caviar\n", + "caviare\n", + "caviares\n", + "caviars\n", + "cavicorn\n", + "cavie\n", + "cavies\n", + "cavil\n", + "caviled\n", + "caviler\n", + "cavilers\n", + "caviling\n", + "cavilled\n", + "caviller\n", + "cavillers\n", + "cavilling\n", + "cavils\n", + "caving\n", + "cavitary\n", + "cavitate\n", + "cavitated\n", + "cavitates\n", + "cavitating\n", + "cavitied\n", + "cavities\n", + "cavity\n", + "cavort\n", + "cavorted\n", + "cavorter\n", + "cavorters\n", + "cavorting\n", + "cavorts\n", + "cavy\n", + "caw\n", + "cawed\n", + "cawing\n", + "caws\n", + "cay\n", + "cayenne\n", + "cayenned\n", + "cayennes\n", + "cayman\n", + "caymans\n", + "cays\n", + "cayuse\n", + "cayuses\n", + "cazique\n", + "caziques\n", + "cease\n", + "ceased\n", + "ceases\n", + "ceasing\n", + "cebid\n", + "cebids\n", + "ceboid\n", + "ceboids\n", + "ceca\n", + "cecal\n", + "cecally\n", + "cecum\n", + "cedar\n", + "cedarn\n", + "cedars\n", + "cede\n", + "ceded\n", + "ceder\n", + "ceders\n", + "cedes\n", + "cedi\n", + "cedilla\n", + "cedillas\n", + "ceding\n", + "cedis\n", + "cedula\n", + "cedulas\n", + "cee\n", + "cees\n", + "ceiba\n", + "ceibas\n", + "ceil\n", + "ceiled\n", + "ceiler\n", + "ceilers\n", + "ceiling\n", + "ceilings\n", + "ceils\n", + "ceinture\n", + "ceintures\n", + "celadon\n", + "celadons\n", + "celeb\n", + "celebrant\n", + "celebrants\n", + "celebrate\n", + "celebrated\n", + "celebrates\n", + "celebrating\n", + "celebration\n", + "celebrations\n", + "celebrator\n", + "celebrators\n", + "celebrities\n", + "celebrity\n", + "celebs\n", + "celeriac\n", + "celeriacs\n", + "celeries\n", + "celerities\n", + "celerity\n", + "celery\n", + "celesta\n", + "celestas\n", + "celeste\n", + "celestes\n", + "celestial\n", + "celiac\n", + "celibacies\n", + "celibacy\n", + "celibate\n", + "celibates\n", + "cell\n", + "cella\n", + "cellae\n", + "cellar\n", + "cellared\n", + "cellarer\n", + "cellarers\n", + "cellaret\n", + "cellarets\n", + "cellaring\n", + "cellars\n", + "celled\n", + "celli\n", + "celling\n", + "cellist\n", + "cellists\n", + "cello\n", + "cellophane\n", + "cellophanes\n", + "cellos\n", + "cells\n", + "cellular\n", + "cellule\n", + "cellules\n", + "cellulose\n", + "celluloses\n", + "celom\n", + "celomata\n", + "celoms\n", + "celt\n", + "celts\n", + "cembali\n", + "cembalo\n", + "cembalos\n", + "cement\n", + "cementa\n", + "cementation\n", + "cementations\n", + "cemented\n", + "cementer\n", + "cementers\n", + "cementing\n", + "cements\n", + "cementum\n", + "cemeteries\n", + "cemetery\n", + "cenacle\n", + "cenacles\n", + "cenobite\n", + "cenobites\n", + "cenotaph\n", + "cenotaphs\n", + "cenote\n", + "cenotes\n", + "cense\n", + "censed\n", + "censer\n", + "censers\n", + "censes\n", + "censing\n", + "censor\n", + "censored\n", + "censorial\n", + "censoring\n", + "censorious\n", + "censoriously\n", + "censoriousness\n", + "censoriousnesses\n", + "censors\n", + "censorship\n", + "censorships\n", + "censual\n", + "censure\n", + "censured\n", + "censurer\n", + "censurers\n", + "censures\n", + "censuring\n", + "census\n", + "censused\n", + "censuses\n", + "censusing\n", + "cent\n", + "cental\n", + "centals\n", + "centare\n", + "centares\n", + "centaur\n", + "centauries\n", + "centaurs\n", + "centaury\n", + "centavo\n", + "centavos\n", + "centennial\n", + "centennials\n", + "center\n", + "centered\n", + "centering\n", + "centerpiece\n", + "centerpieces\n", + "centers\n", + "centeses\n", + "centesis\n", + "centiare\n", + "centiares\n", + "centigrade\n", + "centile\n", + "centiles\n", + "centime\n", + "centimes\n", + "centimeter\n", + "centimeters\n", + "centimo\n", + "centimos\n", + "centipede\n", + "centipedes\n", + "centner\n", + "centners\n", + "cento\n", + "centones\n", + "centos\n", + "centra\n", + "central\n", + "centraler\n", + "centralest\n", + "centralization\n", + "centralizations\n", + "centralize\n", + "centralized\n", + "centralizer\n", + "centralizers\n", + "centralizes\n", + "centralizing\n", + "centrally\n", + "centrals\n", + "centre\n", + "centred\n", + "centres\n", + "centric\n", + "centrifugal\n", + "centrifugally\n", + "centrifuge\n", + "centrifuges\n", + "centring\n", + "centrings\n", + "centripetal\n", + "centripetally\n", + "centrism\n", + "centrisms\n", + "centrist\n", + "centrists\n", + "centroid\n", + "centroids\n", + "centrum\n", + "centrums\n", + "cents\n", + "centum\n", + "centums\n", + "centuple\n", + "centupled\n", + "centuples\n", + "centupling\n", + "centuries\n", + "centurion\n", + "centurions\n", + "century\n", + "ceorl\n", + "ceorlish\n", + "ceorls\n", + "cephalad\n", + "cephalic\n", + "cephalin\n", + "cephalins\n", + "ceramal\n", + "ceramals\n", + "ceramic\n", + "ceramics\n", + "ceramist\n", + "ceramists\n", + "cerastes\n", + "cerate\n", + "cerated\n", + "cerates\n", + "ceratin\n", + "ceratins\n", + "ceratoid\n", + "cercaria\n", + "cercariae\n", + "cercarias\n", + "cerci\n", + "cercis\n", + "cercises\n", + "cercus\n", + "cere\n", + "cereal\n", + "cereals\n", + "cerebella\n", + "cerebellar\n", + "cerebellum\n", + "cerebellums\n", + "cerebra\n", + "cerebral\n", + "cerebrals\n", + "cerebrate\n", + "cerebrated\n", + "cerebrates\n", + "cerebrating\n", + "cerebration\n", + "cerebrations\n", + "cerebric\n", + "cerebrospinal\n", + "cerebrum\n", + "cerebrums\n", + "cered\n", + "cerement\n", + "cerements\n", + "ceremonial\n", + "ceremonies\n", + "ceremonious\n", + "ceremony\n", + "ceres\n", + "cereus\n", + "cereuses\n", + "ceria\n", + "cerias\n", + "ceric\n", + "cering\n", + "ceriph\n", + "ceriphs\n", + "cerise\n", + "cerises\n", + "cerite\n", + "cerites\n", + "cerium\n", + "ceriums\n", + "cermet\n", + "cermets\n", + "cernuous\n", + "cero\n", + "ceros\n", + "cerotic\n", + "cerotype\n", + "cerotypes\n", + "cerous\n", + "certain\n", + "certainer\n", + "certainest\n", + "certainly\n", + "certainties\n", + "certainty\n", + "certes\n", + "certifiable\n", + "certifiably\n", + "certificate\n", + "certificates\n", + "certification\n", + "certifications\n", + "certified\n", + "certifier\n", + "certifiers\n", + "certifies\n", + "certify\n", + "certifying\n", + "certitude\n", + "certitudes\n", + "cerulean\n", + "ceruleans\n", + "cerumen\n", + "cerumens\n", + "ceruse\n", + "ceruses\n", + "cerusite\n", + "cerusites\n", + "cervelat\n", + "cervelats\n", + "cervical\n", + "cervices\n", + "cervine\n", + "cervix\n", + "cervixes\n", + "cesarean\n", + "cesareans\n", + "cesarian\n", + "cesarians\n", + "cesium\n", + "cesiums\n", + "cess\n", + "cessation\n", + "cessations\n", + "cessed\n", + "cesses\n", + "cessing\n", + "cession\n", + "cessions\n", + "cesspit\n", + "cesspits\n", + "cesspool\n", + "cesspools\n", + "cesta\n", + "cestas\n", + "cesti\n", + "cestode\n", + "cestodes\n", + "cestoi\n", + "cestoid\n", + "cestoids\n", + "cestos\n", + "cestus\n", + "cestuses\n", + "cesura\n", + "cesurae\n", + "cesuras\n", + "cetacean\n", + "cetaceans\n", + "cetane\n", + "cetanes\n", + "cete\n", + "cetes\n", + "cetologies\n", + "cetology\n", + "chabouk\n", + "chabouks\n", + "chabuk\n", + "chabuks\n", + "chacma\n", + "chacmas\n", + "chaconne\n", + "chaconnes\n", + "chad\n", + "chadarim\n", + "chadless\n", + "chads\n", + "chaeta\n", + "chaetae\n", + "chaetal\n", + "chafe\n", + "chafed\n", + "chafer\n", + "chafers\n", + "chafes\n", + "chaff\n", + "chaffed\n", + "chaffer\n", + "chaffered\n", + "chaffering\n", + "chaffers\n", + "chaffier\n", + "chaffiest\n", + "chaffing\n", + "chaffs\n", + "chaffy\n", + "chafing\n", + "chagrin\n", + "chagrined\n", + "chagrining\n", + "chagrinned\n", + "chagrinning\n", + "chagrins\n", + "chain\n", + "chaine\n", + "chained\n", + "chaines\n", + "chaining\n", + "chainman\n", + "chainmen\n", + "chains\n", + "chair\n", + "chaired\n", + "chairing\n", + "chairman\n", + "chairmaned\n", + "chairmaning\n", + "chairmanned\n", + "chairmanning\n", + "chairmans\n", + "chairmanship\n", + "chairmanships\n", + "chairmen\n", + "chairs\n", + "chairwoman\n", + "chairwomen\n", + "chaise\n", + "chaises\n", + "chalah\n", + "chalahs\n", + "chalaza\n", + "chalazae\n", + "chalazal\n", + "chalazas\n", + "chalcid\n", + "chalcids\n", + "chaldron\n", + "chaldrons\n", + "chaleh\n", + "chalehs\n", + "chalet\n", + "chalets\n", + "chalice\n", + "chaliced\n", + "chalices\n", + "chalk\n", + "chalkboard\n", + "chalkboards\n", + "chalked\n", + "chalkier\n", + "chalkiest\n", + "chalking\n", + "chalks\n", + "chalky\n", + "challah\n", + "challahs\n", + "challenge\n", + "challenged\n", + "challenger\n", + "challengers\n", + "challenges\n", + "challenging\n", + "challie\n", + "challies\n", + "challis\n", + "challises\n", + "challot\n", + "challoth\n", + "chally\n", + "chalone\n", + "chalones\n", + "chalot\n", + "chaloth\n", + "chalutz\n", + "chalutzim\n", + "cham\n", + "chamade\n", + "chamades\n", + "chamber\n", + "chambered\n", + "chambering\n", + "chambermaid\n", + "chambermaids\n", + "chambers\n", + "chambray\n", + "chambrays\n", + "chameleon\n", + "chameleons\n", + "chamfer\n", + "chamfered\n", + "chamfering\n", + "chamfers\n", + "chamfron\n", + "chamfrons\n", + "chamise\n", + "chamises\n", + "chamiso\n", + "chamisos\n", + "chammied\n", + "chammies\n", + "chammy\n", + "chammying\n", + "chamois\n", + "chamoised\n", + "chamoises\n", + "chamoising\n", + "chamoix\n", + "champ\n", + "champac\n", + "champacs\n", + "champagne\n", + "champagnes\n", + "champak\n", + "champaks\n", + "champed\n", + "champer\n", + "champers\n", + "champing\n", + "champion\n", + "championed\n", + "championing\n", + "champions\n", + "championship\n", + "championships\n", + "champs\n", + "champy\n", + "chams\n", + "chance\n", + "chanced\n", + "chancel\n", + "chancelleries\n", + "chancellery\n", + "chancellor\n", + "chancellories\n", + "chancellors\n", + "chancellorship\n", + "chancellorships\n", + "chancellory\n", + "chancels\n", + "chanceries\n", + "chancery\n", + "chances\n", + "chancier\n", + "chanciest\n", + "chancily\n", + "chancing\n", + "chancre\n", + "chancres\n", + "chancy\n", + "chandelier\n", + "chandeliers\n", + "chandler\n", + "chandlers\n", + "chanfron\n", + "chanfrons\n", + "chang\n", + "change\n", + "changeable\n", + "changed\n", + "changeless\n", + "changer\n", + "changers\n", + "changes\n", + "changing\n", + "changs\n", + "channel\n", + "channeled\n", + "channeling\n", + "channelled\n", + "channelling\n", + "channels\n", + "chanson\n", + "chansons\n", + "chant\n", + "chantage\n", + "chantages\n", + "chanted\n", + "chanter\n", + "chanters\n", + "chantey\n", + "chanteys\n", + "chanties\n", + "chanting\n", + "chantor\n", + "chantors\n", + "chantries\n", + "chantry\n", + "chants\n", + "chanty\n", + "chaos\n", + "chaoses\n", + "chaotic\n", + "chaotically\n", + "chap\n", + "chapbook\n", + "chapbooks\n", + "chape\n", + "chapeau\n", + "chapeaus\n", + "chapeaux\n", + "chapel\n", + "chapels\n", + "chaperon\n", + "chaperonage\n", + "chaperonages\n", + "chaperone\n", + "chaperoned\n", + "chaperones\n", + "chaperoning\n", + "chaperons\n", + "chapes\n", + "chapiter\n", + "chapiters\n", + "chaplain\n", + "chaplaincies\n", + "chaplaincy\n", + "chaplains\n", + "chaplet\n", + "chaplets\n", + "chapman\n", + "chapmen\n", + "chapped\n", + "chapping\n", + "chaps\n", + "chapt\n", + "chapter\n", + "chaptered\n", + "chaptering\n", + "chapters\n", + "chaqueta\n", + "chaquetas\n", + "char\n", + "characid\n", + "characids\n", + "characin\n", + "characins\n", + "character\n", + "characteristic\n", + "characteristically\n", + "characteristics\n", + "characterization\n", + "characterizations\n", + "characterize\n", + "characterized\n", + "characterizes\n", + "characterizing\n", + "characters\n", + "charade\n", + "charades\n", + "charas\n", + "charases\n", + "charcoal\n", + "charcoaled\n", + "charcoaling\n", + "charcoals\n", + "chard\n", + "chards\n", + "chare\n", + "chared\n", + "chares\n", + "charge\n", + "chargeable\n", + "charged\n", + "charger\n", + "chargers\n", + "charges\n", + "charging\n", + "charier\n", + "chariest\n", + "charily\n", + "charing\n", + "chariot\n", + "charioted\n", + "charioting\n", + "chariots\n", + "charism\n", + "charisma\n", + "charismata\n", + "charismatic\n", + "charisms\n", + "charities\n", + "charity\n", + "chark\n", + "charka\n", + "charkas\n", + "charked\n", + "charkha\n", + "charkhas\n", + "charking\n", + "charks\n", + "charladies\n", + "charlady\n", + "charlatan\n", + "charlatans\n", + "charleston\n", + "charlock\n", + "charlocks\n", + "charm\n", + "charmed\n", + "charmer\n", + "charmers\n", + "charming\n", + "charminger\n", + "charmingest\n", + "charmingly\n", + "charms\n", + "charnel\n", + "charnels\n", + "charpai\n", + "charpais\n", + "charpoy\n", + "charpoys\n", + "charqui\n", + "charquid\n", + "charquis\n", + "charr\n", + "charred\n", + "charrier\n", + "charriest\n", + "charring\n", + "charro\n", + "charros\n", + "charrs\n", + "charry\n", + "chars\n", + "chart\n", + "charted\n", + "charter\n", + "chartered\n", + "chartering\n", + "charters\n", + "charting\n", + "chartist\n", + "chartists\n", + "chartreuse\n", + "chartreuses\n", + "charts\n", + "charwoman\n", + "charwomen\n", + "chary\n", + "chase\n", + "chased\n", + "chaser\n", + "chasers\n", + "chases\n", + "chasing\n", + "chasings\n", + "chasm\n", + "chasmal\n", + "chasmed\n", + "chasmic\n", + "chasms\n", + "chasmy\n", + "chasse\n", + "chassed\n", + "chasseing\n", + "chasses\n", + "chasseur\n", + "chasseurs\n", + "chassis\n", + "chaste\n", + "chastely\n", + "chasten\n", + "chastened\n", + "chasteness\n", + "chastenesses\n", + "chastening\n", + "chastens\n", + "chaster\n", + "chastest\n", + "chastise\n", + "chastised\n", + "chastisement\n", + "chastisements\n", + "chastises\n", + "chastising\n", + "chastities\n", + "chastity\n", + "chasuble\n", + "chasubles\n", + "chat\n", + "chateau\n", + "chateaus\n", + "chateaux\n", + "chats\n", + "chatted\n", + "chattel\n", + "chattels\n", + "chatter\n", + "chatterbox\n", + "chatterboxes\n", + "chattered\n", + "chatterer\n", + "chatterers\n", + "chattering\n", + "chatters\n", + "chattery\n", + "chattier\n", + "chattiest\n", + "chattily\n", + "chatting\n", + "chatty\n", + "chaufer\n", + "chaufers\n", + "chauffer\n", + "chauffers\n", + "chauffeur\n", + "chauffeured\n", + "chauffeuring\n", + "chauffeurs\n", + "chaunt\n", + "chaunted\n", + "chaunter\n", + "chaunters\n", + "chaunting\n", + "chaunts\n", + "chausses\n", + "chauvinism\n", + "chauvinisms\n", + "chauvinist\n", + "chauvinistic\n", + "chauvinists\n", + "chaw\n", + "chawed\n", + "chawer\n", + "chawers\n", + "chawing\n", + "chaws\n", + "chayote\n", + "chayotes\n", + "chazan\n", + "chazanim\n", + "chazans\n", + "chazzen\n", + "chazzenim\n", + "chazzens\n", + "cheap\n", + "cheapen\n", + "cheapened\n", + "cheapening\n", + "cheapens\n", + "cheaper\n", + "cheapest\n", + "cheapie\n", + "cheapies\n", + "cheapish\n", + "cheaply\n", + "cheapness\n", + "cheapnesses\n", + "cheaps\n", + "cheapskate\n", + "cheapskates\n", + "cheat\n", + "cheated\n", + "cheater\n", + "cheaters\n", + "cheating\n", + "cheats\n", + "chebec\n", + "chebecs\n", + "chechako\n", + "chechakos\n", + "check\n", + "checked\n", + "checker\n", + "checkerboard\n", + "checkerboards\n", + "checkered\n", + "checkering\n", + "checkers\n", + "checking\n", + "checklist\n", + "checklists\n", + "checkmate\n", + "checkmated\n", + "checkmates\n", + "checkmating\n", + "checkoff\n", + "checkoffs\n", + "checkout\n", + "checkouts\n", + "checkpoint\n", + "checkpoints\n", + "checkrow\n", + "checkrowed\n", + "checkrowing\n", + "checkrows\n", + "checks\n", + "checkup\n", + "checkups\n", + "cheddar\n", + "cheddars\n", + "cheddite\n", + "cheddites\n", + "cheder\n", + "cheders\n", + "chedite\n", + "chedites\n", + "cheek\n", + "cheeked\n", + "cheekful\n", + "cheekfuls\n", + "cheekier\n", + "cheekiest\n", + "cheekily\n", + "cheeking\n", + "cheeks\n", + "cheeky\n", + "cheep\n", + "cheeped\n", + "cheeper\n", + "cheepers\n", + "cheeping\n", + "cheeps\n", + "cheer\n", + "cheered\n", + "cheerer\n", + "cheerers\n", + "cheerful\n", + "cheerfuller\n", + "cheerfullest\n", + "cheerfully\n", + "cheerfulness\n", + "cheerfulnesses\n", + "cheerier\n", + "cheeriest\n", + "cheerily\n", + "cheeriness\n", + "cheerinesses\n", + "cheering\n", + "cheerio\n", + "cheerios\n", + "cheerleader\n", + "cheerleaders\n", + "cheerless\n", + "cheerlessly\n", + "cheerlessness\n", + "cheerlessnesses\n", + "cheero\n", + "cheeros\n", + "cheers\n", + "cheery\n", + "cheese\n", + "cheesecloth\n", + "cheesecloths\n", + "cheesed\n", + "cheeses\n", + "cheesier\n", + "cheesiest\n", + "cheesily\n", + "cheesing\n", + "cheesy\n", + "cheetah\n", + "cheetahs\n", + "chef\n", + "chefdom\n", + "chefdoms\n", + "chefs\n", + "chegoe\n", + "chegoes\n", + "chela\n", + "chelae\n", + "chelas\n", + "chelate\n", + "chelated\n", + "chelates\n", + "chelating\n", + "chelator\n", + "chelators\n", + "cheloid\n", + "cheloids\n", + "chemic\n", + "chemical\n", + "chemically\n", + "chemicals\n", + "chemics\n", + "chemise\n", + "chemises\n", + "chemism\n", + "chemisms\n", + "chemist\n", + "chemistries\n", + "chemistry\n", + "chemists\n", + "chemotherapeutic\n", + "chemotherapeutical\n", + "chemotherapies\n", + "chemotherapy\n", + "chemurgies\n", + "chemurgy\n", + "chenille\n", + "chenilles\n", + "chenopod\n", + "chenopods\n", + "cheque\n", + "chequer\n", + "chequered\n", + "chequering\n", + "chequers\n", + "cheques\n", + "cherish\n", + "cherished\n", + "cherishes\n", + "cherishing\n", + "cheroot\n", + "cheroots\n", + "cherries\n", + "cherry\n", + "chert\n", + "chertier\n", + "chertiest\n", + "cherts\n", + "cherty\n", + "cherub\n", + "cherubic\n", + "cherubim\n", + "cherubs\n", + "chervil\n", + "chervils\n", + "chess\n", + "chessboard\n", + "chessboards\n", + "chesses\n", + "chessman\n", + "chessmen\n", + "chessplayer\n", + "chessplayers\n", + "chest\n", + "chested\n", + "chestful\n", + "chestfuls\n", + "chestier\n", + "chestiest\n", + "chestnut\n", + "chestnuts\n", + "chests\n", + "chesty\n", + "chetah\n", + "chetahs\n", + "cheth\n", + "cheths\n", + "chevalet\n", + "chevalets\n", + "cheveron\n", + "cheverons\n", + "chevied\n", + "chevies\n", + "cheviot\n", + "cheviots\n", + "chevron\n", + "chevrons\n", + "chevy\n", + "chevying\n", + "chew\n", + "chewable\n", + "chewed\n", + "chewer\n", + "chewers\n", + "chewier\n", + "chewiest\n", + "chewing\n", + "chewink\n", + "chewinks\n", + "chews\n", + "chewy\n", + "chez\n", + "chi\n", + "chia\n", + "chiao\n", + "chias\n", + "chiasm\n", + "chiasma\n", + "chiasmal\n", + "chiasmas\n", + "chiasmata\n", + "chiasmi\n", + "chiasmic\n", + "chiasms\n", + "chiasmus\n", + "chiastic\n", + "chiaus\n", + "chiauses\n", + "chibouk\n", + "chibouks\n", + "chic\n", + "chicane\n", + "chicaned\n", + "chicaner\n", + "chicaneries\n", + "chicaners\n", + "chicanery\n", + "chicanes\n", + "chicaning\n", + "chiccories\n", + "chiccory\n", + "chichi\n", + "chichis\n", + "chick\n", + "chickadee\n", + "chickadees\n", + "chicken\n", + "chickened\n", + "chickening\n", + "chickens\n", + "chickpea\n", + "chickpeas\n", + "chicks\n", + "chicle\n", + "chicles\n", + "chicly\n", + "chicness\n", + "chicnesses\n", + "chico\n", + "chicories\n", + "chicory\n", + "chicos\n", + "chics\n", + "chid\n", + "chidden\n", + "chide\n", + "chided\n", + "chider\n", + "chiders\n", + "chides\n", + "chiding\n", + "chief\n", + "chiefdom\n", + "chiefdoms\n", + "chiefer\n", + "chiefest\n", + "chiefly\n", + "chiefs\n", + "chieftain\n", + "chieftaincies\n", + "chieftaincy\n", + "chieftains\n", + "chiel\n", + "chield\n", + "chields\n", + "chiels\n", + "chiffon\n", + "chiffons\n", + "chigetai\n", + "chigetais\n", + "chigger\n", + "chiggers\n", + "chignon\n", + "chignons\n", + "chigoe\n", + "chigoes\n", + "chilblain\n", + "chilblains\n", + "child\n", + "childbearing\n", + "childbed\n", + "childbeds\n", + "childbirth\n", + "childbirths\n", + "childe\n", + "childes\n", + "childhood\n", + "childhoods\n", + "childing\n", + "childish\n", + "childishly\n", + "childishness\n", + "childishnesses\n", + "childless\n", + "childlessness\n", + "childlessnesses\n", + "childlier\n", + "childliest\n", + "childlike\n", + "childly\n", + "children\n", + "chile\n", + "chiles\n", + "chili\n", + "chiliad\n", + "chiliads\n", + "chiliasm\n", + "chiliasms\n", + "chiliast\n", + "chiliasts\n", + "chilies\n", + "chill\n", + "chilled\n", + "chiller\n", + "chillers\n", + "chillest\n", + "chilli\n", + "chillier\n", + "chillies\n", + "chilliest\n", + "chillily\n", + "chilliness\n", + "chillinesses\n", + "chilling\n", + "chills\n", + "chillum\n", + "chillums\n", + "chilly\n", + "chilopod\n", + "chilopods\n", + "chimaera\n", + "chimaeras\n", + "chimar\n", + "chimars\n", + "chimb\n", + "chimbley\n", + "chimbleys\n", + "chimblies\n", + "chimbly\n", + "chimbs\n", + "chime\n", + "chimed\n", + "chimer\n", + "chimera\n", + "chimeras\n", + "chimere\n", + "chimeres\n", + "chimeric\n", + "chimerical\n", + "chimers\n", + "chimes\n", + "chiming\n", + "chimla\n", + "chimlas\n", + "chimley\n", + "chimleys\n", + "chimney\n", + "chimneys\n", + "chimp\n", + "chimpanzee\n", + "chimpanzees\n", + "chimps\n", + "chin\n", + "china\n", + "chinas\n", + "chinbone\n", + "chinbones\n", + "chinch\n", + "chinches\n", + "chinchier\n", + "chinchiest\n", + "chinchilla\n", + "chinchillas\n", + "chinchy\n", + "chine\n", + "chined\n", + "chines\n", + "chining\n", + "chink\n", + "chinked\n", + "chinkier\n", + "chinkiest\n", + "chinking\n", + "chinks\n", + "chinky\n", + "chinless\n", + "chinned\n", + "chinning\n", + "chino\n", + "chinone\n", + "chinones\n", + "chinook\n", + "chinooks\n", + "chinos\n", + "chins\n", + "chints\n", + "chintses\n", + "chintz\n", + "chintzes\n", + "chintzier\n", + "chintziest\n", + "chintzy\n", + "chip\n", + "chipmuck\n", + "chipmucks\n", + "chipmunk\n", + "chipmunks\n", + "chipped\n", + "chipper\n", + "chippered\n", + "chippering\n", + "chippers\n", + "chippie\n", + "chippies\n", + "chipping\n", + "chippy\n", + "chips\n", + "chirk\n", + "chirked\n", + "chirker\n", + "chirkest\n", + "chirking\n", + "chirks\n", + "chirm\n", + "chirmed\n", + "chirming\n", + "chirms\n", + "chiro\n", + "chiropodies\n", + "chiropodist\n", + "chiropodists\n", + "chiropody\n", + "chiropractic\n", + "chiropractics\n", + "chiropractor\n", + "chiropractors\n", + "chiros\n", + "chirp\n", + "chirped\n", + "chirper\n", + "chirpers\n", + "chirpier\n", + "chirpiest\n", + "chirpily\n", + "chirping\n", + "chirps\n", + "chirpy\n", + "chirr\n", + "chirre\n", + "chirred\n", + "chirres\n", + "chirring\n", + "chirrs\n", + "chirrup\n", + "chirruped\n", + "chirruping\n", + "chirrups\n", + "chirrupy\n", + "chis\n", + "chisel\n", + "chiseled\n", + "chiseler\n", + "chiselers\n", + "chiseling\n", + "chiselled\n", + "chiselling\n", + "chisels\n", + "chit\n", + "chital\n", + "chitchat\n", + "chitchats\n", + "chitchatted\n", + "chitchatting\n", + "chitin\n", + "chitins\n", + "chitlin\n", + "chitling\n", + "chitlings\n", + "chitlins\n", + "chiton\n", + "chitons\n", + "chits\n", + "chitter\n", + "chittered\n", + "chittering\n", + "chitters\n", + "chitties\n", + "chitty\n", + "chivalric\n", + "chivalries\n", + "chivalrous\n", + "chivalrously\n", + "chivalrousness\n", + "chivalrousnesses\n", + "chivalry\n", + "chivaree\n", + "chivareed\n", + "chivareeing\n", + "chivarees\n", + "chivari\n", + "chivaried\n", + "chivariing\n", + "chivaris\n", + "chive\n", + "chives\n", + "chivied\n", + "chivies\n", + "chivvied\n", + "chivvies\n", + "chivvy\n", + "chivvying\n", + "chivy\n", + "chivying\n", + "chlamydes\n", + "chlamys\n", + "chlamyses\n", + "chloral\n", + "chlorals\n", + "chlorambucil\n", + "chlorate\n", + "chlorates\n", + "chlordan\n", + "chlordans\n", + "chloric\n", + "chlorid\n", + "chloride\n", + "chlorides\n", + "chlorids\n", + "chlorin\n", + "chlorinate\n", + "chlorinated\n", + "chlorinates\n", + "chlorinating\n", + "chlorination\n", + "chlorinations\n", + "chlorinator\n", + "chlorinators\n", + "chlorine\n", + "chlorines\n", + "chlorins\n", + "chlorite\n", + "chlorites\n", + "chloroform\n", + "chloroformed\n", + "chloroforming\n", + "chloroforms\n", + "chlorophyll\n", + "chlorophylls\n", + "chlorous\n", + "chock\n", + "chocked\n", + "chockfull\n", + "chocking\n", + "chocks\n", + "chocolate\n", + "chocolates\n", + "choice\n", + "choicely\n", + "choicer\n", + "choices\n", + "choicest\n", + "choir\n", + "choirboy\n", + "choirboys\n", + "choired\n", + "choiring\n", + "choirmaster\n", + "choirmasters\n", + "choirs\n", + "choke\n", + "choked\n", + "choker\n", + "chokers\n", + "chokes\n", + "chokey\n", + "chokier\n", + "chokiest\n", + "choking\n", + "choky\n", + "cholate\n", + "cholates\n", + "choler\n", + "cholera\n", + "choleras\n", + "choleric\n", + "cholers\n", + "cholesterol\n", + "cholesterols\n", + "choline\n", + "cholines\n", + "cholla\n", + "chollas\n", + "chomp\n", + "chomped\n", + "chomping\n", + "chomps\n", + "chon\n", + "choose\n", + "chooser\n", + "choosers\n", + "chooses\n", + "choosey\n", + "choosier\n", + "choosiest\n", + "choosing\n", + "choosy\n", + "chop\n", + "chopin\n", + "chopine\n", + "chopines\n", + "chopins\n", + "chopped\n", + "chopper\n", + "choppers\n", + "choppier\n", + "choppiest\n", + "choppily\n", + "choppiness\n", + "choppinesses\n", + "chopping\n", + "choppy\n", + "chops\n", + "chopsticks\n", + "choragi\n", + "choragic\n", + "choragus\n", + "choraguses\n", + "choral\n", + "chorale\n", + "chorales\n", + "chorally\n", + "chorals\n", + "chord\n", + "chordal\n", + "chordate\n", + "chordates\n", + "chorded\n", + "chording\n", + "chords\n", + "chore\n", + "chorea\n", + "choreal\n", + "choreas\n", + "chored\n", + "choregi\n", + "choregus\n", + "choreguses\n", + "choreic\n", + "choreman\n", + "choremen\n", + "choreograph\n", + "choreographed\n", + "choreographer\n", + "choreographers\n", + "choreographic\n", + "choreographies\n", + "choreographing\n", + "choreographs\n", + "choreography\n", + "choreoid\n", + "chores\n", + "chorial\n", + "choriamb\n", + "choriambs\n", + "choric\n", + "chorine\n", + "chorines\n", + "choring\n", + "chorioid\n", + "chorioids\n", + "chorion\n", + "chorions\n", + "chorister\n", + "choristers\n", + "chorizo\n", + "chorizos\n", + "choroid\n", + "choroids\n", + "chortle\n", + "chortled\n", + "chortler\n", + "chortlers\n", + "chortles\n", + "chortling\n", + "chorus\n", + "chorused\n", + "choruses\n", + "chorusing\n", + "chorussed\n", + "chorusses\n", + "chorussing\n", + "chose\n", + "chosen\n", + "choses\n", + "chott\n", + "chotts\n", + "chough\n", + "choughs\n", + "chouse\n", + "choused\n", + "chouser\n", + "chousers\n", + "chouses\n", + "choush\n", + "choushes\n", + "chousing\n", + "chow\n", + "chowchow\n", + "chowchows\n", + "chowder\n", + "chowdered\n", + "chowdering\n", + "chowders\n", + "chowed\n", + "chowing\n", + "chows\n", + "chowse\n", + "chowsed\n", + "chowses\n", + "chowsing\n", + "chowtime\n", + "chowtimes\n", + "chresard\n", + "chresards\n", + "chrism\n", + "chrisma\n", + "chrismal\n", + "chrismon\n", + "chrismons\n", + "chrisms\n", + "chrisom\n", + "chrisoms\n", + "christen\n", + "christened\n", + "christening\n", + "christenings\n", + "christens\n", + "christie\n", + "christies\n", + "christy\n", + "chroma\n", + "chromas\n", + "chromate\n", + "chromates\n", + "chromatic\n", + "chrome\n", + "chromed\n", + "chromes\n", + "chromic\n", + "chromide\n", + "chromides\n", + "chroming\n", + "chromite\n", + "chromites\n", + "chromium\n", + "chromiums\n", + "chromize\n", + "chromized\n", + "chromizes\n", + "chromizing\n", + "chromo\n", + "chromos\n", + "chromosomal\n", + "chromosome\n", + "chromosomes\n", + "chromous\n", + "chromyl\n", + "chronaxies\n", + "chronaxy\n", + "chronic\n", + "chronicle\n", + "chronicled\n", + "chronicler\n", + "chroniclers\n", + "chronicles\n", + "chronicling\n", + "chronics\n", + "chronologic\n", + "chronological\n", + "chronologically\n", + "chronologies\n", + "chronology\n", + "chronometer\n", + "chronometers\n", + "chronon\n", + "chronons\n", + "chrysalides\n", + "chrysalis\n", + "chrysalises\n", + "chrysanthemum\n", + "chrysanthemums\n", + "chthonic\n", + "chub\n", + "chubasco\n", + "chubascos\n", + "chubbier\n", + "chubbiest\n", + "chubbily\n", + "chubbiness\n", + "chubbinesses\n", + "chubby\n", + "chubs\n", + "chuck\n", + "chucked\n", + "chuckies\n", + "chucking\n", + "chuckle\n", + "chuckled\n", + "chuckler\n", + "chucklers\n", + "chuckles\n", + "chuckling\n", + "chucks\n", + "chucky\n", + "chuddah\n", + "chuddahs\n", + "chuddar\n", + "chuddars\n", + "chudder\n", + "chudders\n", + "chufa\n", + "chufas\n", + "chuff\n", + "chuffed\n", + "chuffer\n", + "chuffest\n", + "chuffier\n", + "chuffiest\n", + "chuffing\n", + "chuffs\n", + "chuffy\n", + "chug\n", + "chugged\n", + "chugger\n", + "chuggers\n", + "chugging\n", + "chugs\n", + "chukar\n", + "chukars\n", + "chukka\n", + "chukkar\n", + "chukkars\n", + "chukkas\n", + "chukker\n", + "chukkers\n", + "chum\n", + "chummed\n", + "chummier\n", + "chummiest\n", + "chummily\n", + "chumming\n", + "chummy\n", + "chump\n", + "chumped\n", + "chumping\n", + "chumps\n", + "chums\n", + "chumship\n", + "chumships\n", + "chunk\n", + "chunked\n", + "chunkier\n", + "chunkiest\n", + "chunkily\n", + "chunking\n", + "chunks\n", + "chunky\n", + "chunter\n", + "chuntered\n", + "chuntering\n", + "chunters\n", + "church\n", + "churched\n", + "churches\n", + "churchgoer\n", + "churchgoers\n", + "churchgoing\n", + "churchgoings\n", + "churchier\n", + "churchiest\n", + "churching\n", + "churchlier\n", + "churchliest\n", + "churchly\n", + "churchy\n", + "churchyard\n", + "churchyards\n", + "churl\n", + "churlish\n", + "churls\n", + "churn\n", + "churned\n", + "churner\n", + "churners\n", + "churning\n", + "churnings\n", + "churns\n", + "churr\n", + "churred\n", + "churring\n", + "churrs\n", + "chute\n", + "chuted\n", + "chutes\n", + "chuting\n", + "chutist\n", + "chutists\n", + "chutnee\n", + "chutnees\n", + "chutney\n", + "chutneys\n", + "chutzpa\n", + "chutzpah\n", + "chutzpahs\n", + "chutzpas\n", + "chyle\n", + "chyles\n", + "chylous\n", + "chyme\n", + "chymes\n", + "chymic\n", + "chymics\n", + "chymist\n", + "chymists\n", + "chymosin\n", + "chymosins\n", + "chymous\n", + "ciao\n", + "cibol\n", + "cibols\n", + "ciboria\n", + "ciborium\n", + "ciboule\n", + "ciboules\n", + "cicada\n", + "cicadae\n", + "cicadas\n", + "cicala\n", + "cicalas\n", + "cicale\n", + "cicatrices\n", + "cicatrix\n", + "cicelies\n", + "cicely\n", + "cicero\n", + "cicerone\n", + "cicerones\n", + "ciceroni\n", + "ciceros\n", + "cichlid\n", + "cichlidae\n", + "cichlids\n", + "cicisbei\n", + "cicisbeo\n", + "cicoree\n", + "cicorees\n", + "cider\n", + "ciders\n", + "cigar\n", + "cigaret\n", + "cigarets\n", + "cigarette\n", + "cigarettes\n", + "cigars\n", + "cilantro\n", + "cilantros\n", + "cilia\n", + "ciliary\n", + "ciliate\n", + "ciliated\n", + "ciliates\n", + "cilice\n", + "cilices\n", + "cilium\n", + "cimex\n", + "cimices\n", + "cinch\n", + "cinched\n", + "cinches\n", + "cinching\n", + "cinchona\n", + "cinchonas\n", + "cincture\n", + "cinctured\n", + "cinctures\n", + "cincturing\n", + "cinder\n", + "cindered\n", + "cindering\n", + "cinders\n", + "cindery\n", + "cine\n", + "cineast\n", + "cineaste\n", + "cineastes\n", + "cineasts\n", + "cinema\n", + "cinemas\n", + "cinematic\n", + "cineol\n", + "cineole\n", + "cineoles\n", + "cineols\n", + "cinerary\n", + "cinerin\n", + "cinerins\n", + "cines\n", + "cingula\n", + "cingulum\n", + "cinnabar\n", + "cinnabars\n", + "cinnamic\n", + "cinnamon\n", + "cinnamons\n", + "cinnamyl\n", + "cinnamyls\n", + "cinquain\n", + "cinquains\n", + "cinque\n", + "cinques\n", + "cion\n", + "cions\n", + "cipher\n", + "ciphered\n", + "ciphering\n", + "ciphers\n", + "ciphonies\n", + "ciphony\n", + "cipolin\n", + "cipolins\n", + "circa\n", + "circle\n", + "circled\n", + "circler\n", + "circlers\n", + "circles\n", + "circlet\n", + "circlets\n", + "circling\n", + "circuit\n", + "circuited\n", + "circuities\n", + "circuiting\n", + "circuitous\n", + "circuitries\n", + "circuitry\n", + "circuits\n", + "circuity\n", + "circular\n", + "circularities\n", + "circularity\n", + "circularly\n", + "circulars\n", + "circulate\n", + "circulated\n", + "circulates\n", + "circulating\n", + "circulation\n", + "circulations\n", + "circulatory\n", + "circumcise\n", + "circumcised\n", + "circumcises\n", + "circumcising\n", + "circumcision\n", + "circumcisions\n", + "circumference\n", + "circumferences\n", + "circumflex\n", + "circumflexes\n", + "circumlocution\n", + "circumlocutions\n", + "circumnavigate\n", + "circumnavigated\n", + "circumnavigates\n", + "circumnavigating\n", + "circumnavigation\n", + "circumnavigations\n", + "circumscribe\n", + "circumscribed\n", + "circumscribes\n", + "circumscribing\n", + "circumspect\n", + "circumspection\n", + "circumspections\n", + "circumstance\n", + "circumstances\n", + "circumstantial\n", + "circumvent\n", + "circumvented\n", + "circumventing\n", + "circumvents\n", + "circus\n", + "circuses\n", + "circusy\n", + "cirque\n", + "cirques\n", + "cirrate\n", + "cirrhoses\n", + "cirrhosis\n", + "cirrhotic\n", + "cirri\n", + "cirriped\n", + "cirripeds\n", + "cirrose\n", + "cirrous\n", + "cirrus\n", + "cirsoid\n", + "cisco\n", + "ciscoes\n", + "ciscos\n", + "cislunar\n", + "cissoid\n", + "cissoids\n", + "cist\n", + "cistern\n", + "cisterna\n", + "cisternae\n", + "cisterns\n", + "cistron\n", + "cistrons\n", + "cists\n", + "citable\n", + "citadel\n", + "citadels\n", + "citation\n", + "citations\n", + "citatory\n", + "cite\n", + "citeable\n", + "cited\n", + "citer\n", + "citers\n", + "cites\n", + "cithara\n", + "citharas\n", + "cither\n", + "cithern\n", + "citherns\n", + "cithers\n", + "cithren\n", + "cithrens\n", + "citied\n", + "cities\n", + "citified\n", + "citifies\n", + "citify\n", + "citifying\n", + "citing\n", + "citizen\n", + "citizenries\n", + "citizenry\n", + "citizens\n", + "citizenship\n", + "citizenships\n", + "citola\n", + "citolas\n", + "citole\n", + "citoles\n", + "citral\n", + "citrals\n", + "citrate\n", + "citrated\n", + "citrates\n", + "citreous\n", + "citric\n", + "citrin\n", + "citrine\n", + "citrines\n", + "citrins\n", + "citron\n", + "citrons\n", + "citrous\n", + "citrus\n", + "citruses\n", + "cittern\n", + "citterns\n", + "city\n", + "cityfied\n", + "cityward\n", + "civet\n", + "civets\n", + "civic\n", + "civicism\n", + "civicisms\n", + "civics\n", + "civie\n", + "civies\n", + "civil\n", + "civilian\n", + "civilians\n", + "civilise\n", + "civilised\n", + "civilises\n", + "civilising\n", + "civilities\n", + "civility\n", + "civilization\n", + "civilizations\n", + "civilize\n", + "civilized\n", + "civilizes\n", + "civilizing\n", + "civilly\n", + "civism\n", + "civisms\n", + "civvies\n", + "civvy\n", + "clabber\n", + "clabbered\n", + "clabbering\n", + "clabbers\n", + "clach\n", + "clachan\n", + "clachans\n", + "clachs\n", + "clack\n", + "clacked\n", + "clacker\n", + "clackers\n", + "clacking\n", + "clacks\n", + "clad\n", + "cladding\n", + "claddings\n", + "cladode\n", + "cladodes\n", + "clads\n", + "clag\n", + "clagged\n", + "clagging\n", + "clags\n", + "claim\n", + "claimant\n", + "claimants\n", + "claimed\n", + "claimer\n", + "claimers\n", + "claiming\n", + "claims\n", + "clairvoyance\n", + "clairvoyances\n", + "clairvoyant\n", + "clairvoyants\n", + "clam\n", + "clamant\n", + "clambake\n", + "clambakes\n", + "clamber\n", + "clambered\n", + "clambering\n", + "clambers\n", + "clammed\n", + "clammier\n", + "clammiest\n", + "clammily\n", + "clamminess\n", + "clamminesses\n", + "clamming\n", + "clammy\n", + "clamor\n", + "clamored\n", + "clamorer\n", + "clamorers\n", + "clamoring\n", + "clamorous\n", + "clamors\n", + "clamour\n", + "clamoured\n", + "clamouring\n", + "clamours\n", + "clamp\n", + "clamped\n", + "clamper\n", + "clampers\n", + "clamping\n", + "clamps\n", + "clams\n", + "clamworm\n", + "clamworms\n", + "clan\n", + "clandestine\n", + "clang\n", + "clanged\n", + "clanging\n", + "clangor\n", + "clangored\n", + "clangoring\n", + "clangors\n", + "clangour\n", + "clangoured\n", + "clangouring\n", + "clangours\n", + "clangs\n", + "clank\n", + "clanked\n", + "clanking\n", + "clanks\n", + "clannish\n", + "clannishness\n", + "clannishnesses\n", + "clans\n", + "clansman\n", + "clansmen\n", + "clap\n", + "clapboard\n", + "clapboards\n", + "clapped\n", + "clapper\n", + "clappers\n", + "clapping\n", + "claps\n", + "clapt\n", + "claptrap\n", + "claptraps\n", + "claque\n", + "claquer\n", + "claquers\n", + "claques\n", + "claqueur\n", + "claqueurs\n", + "clarence\n", + "clarences\n", + "claret\n", + "clarets\n", + "claries\n", + "clarification\n", + "clarifications\n", + "clarified\n", + "clarifies\n", + "clarify\n", + "clarifying\n", + "clarinet\n", + "clarinetist\n", + "clarinetists\n", + "clarinets\n", + "clarinettist\n", + "clarinettists\n", + "clarion\n", + "clarioned\n", + "clarioning\n", + "clarions\n", + "clarities\n", + "clarity\n", + "clarkia\n", + "clarkias\n", + "claro\n", + "claroes\n", + "claros\n", + "clary\n", + "clash\n", + "clashed\n", + "clasher\n", + "clashers\n", + "clashes\n", + "clashing\n", + "clasp\n", + "clasped\n", + "clasper\n", + "claspers\n", + "clasping\n", + "clasps\n", + "claspt\n", + "class\n", + "classed\n", + "classer\n", + "classers\n", + "classes\n", + "classic\n", + "classical\n", + "classically\n", + "classicism\n", + "classicisms\n", + "classicist\n", + "classicists\n", + "classics\n", + "classier\n", + "classiest\n", + "classification\n", + "classifications\n", + "classified\n", + "classifies\n", + "classify\n", + "classifying\n", + "classily\n", + "classing\n", + "classis\n", + "classless\n", + "classmate\n", + "classmates\n", + "classroom\n", + "classrooms\n", + "classy\n", + "clast\n", + "clastic\n", + "clastics\n", + "clasts\n", + "clatter\n", + "clattered\n", + "clattering\n", + "clatters\n", + "clattery\n", + "claucht\n", + "claught\n", + "claughted\n", + "claughting\n", + "claughts\n", + "clausal\n", + "clause\n", + "clauses\n", + "claustrophobia\n", + "claustrophobias\n", + "clavate\n", + "clave\n", + "claver\n", + "clavered\n", + "clavering\n", + "clavers\n", + "clavichord\n", + "clavichords\n", + "clavicle\n", + "clavicles\n", + "clavier\n", + "claviers\n", + "claw\n", + "clawed\n", + "clawer\n", + "clawers\n", + "clawing\n", + "clawless\n", + "claws\n", + "claxon\n", + "claxons\n", + "clay\n", + "claybank\n", + "claybanks\n", + "clayed\n", + "clayey\n", + "clayier\n", + "clayiest\n", + "claying\n", + "clayish\n", + "claylike\n", + "claymore\n", + "claymores\n", + "claypan\n", + "claypans\n", + "clays\n", + "clayware\n", + "claywares\n", + "clean\n", + "cleaned\n", + "cleaner\n", + "cleaners\n", + "cleanest\n", + "cleaning\n", + "cleanlier\n", + "cleanliest\n", + "cleanliness\n", + "cleanlinesses\n", + "cleanly\n", + "cleanness\n", + "cleannesses\n", + "cleans\n", + "cleanse\n", + "cleansed\n", + "cleanser\n", + "cleansers\n", + "cleanses\n", + "cleansing\n", + "cleanup\n", + "cleanups\n", + "clear\n", + "clearance\n", + "clearances\n", + "cleared\n", + "clearer\n", + "clearers\n", + "clearest\n", + "clearing\n", + "clearings\n", + "clearly\n", + "clearness\n", + "clearnesses\n", + "clears\n", + "cleat\n", + "cleated\n", + "cleating\n", + "cleats\n", + "cleavage\n", + "cleavages\n", + "cleave\n", + "cleaved\n", + "cleaver\n", + "cleavers\n", + "cleaves\n", + "cleaving\n", + "cleek\n", + "cleeked\n", + "cleeking\n", + "cleeks\n", + "clef\n", + "clefs\n", + "cleft\n", + "clefts\n", + "clematis\n", + "clematises\n", + "clemencies\n", + "clemency\n", + "clement\n", + "clench\n", + "clenched\n", + "clenches\n", + "clenching\n", + "cleome\n", + "cleomes\n", + "clepe\n", + "cleped\n", + "clepes\n", + "cleping\n", + "clept\n", + "clergies\n", + "clergy\n", + "clergyman\n", + "clergymen\n", + "cleric\n", + "clerical\n", + "clericals\n", + "clerics\n", + "clerid\n", + "clerids\n", + "clerihew\n", + "clerihews\n", + "clerisies\n", + "clerisy\n", + "clerk\n", + "clerkdom\n", + "clerkdoms\n", + "clerked\n", + "clerking\n", + "clerkish\n", + "clerklier\n", + "clerkliest\n", + "clerkly\n", + "clerks\n", + "clerkship\n", + "clerkships\n", + "cleveite\n", + "cleveites\n", + "clever\n", + "cleverer\n", + "cleverest\n", + "cleverly\n", + "cleverness\n", + "clevernesses\n", + "clevis\n", + "clevises\n", + "clew\n", + "clewed\n", + "clewing\n", + "clews\n", + "cliche\n", + "cliched\n", + "cliches\n", + "click\n", + "clicked\n", + "clicker\n", + "clickers\n", + "clicking\n", + "clicks\n", + "client\n", + "cliental\n", + "clients\n", + "cliff\n", + "cliffier\n", + "cliffiest\n", + "cliffs\n", + "cliffy\n", + "clift\n", + "clifts\n", + "climactic\n", + "climatal\n", + "climate\n", + "climates\n", + "climatic\n", + "climax\n", + "climaxed\n", + "climaxes\n", + "climaxing\n", + "climb\n", + "climbed\n", + "climber\n", + "climbers\n", + "climbing\n", + "climbs\n", + "clime\n", + "climes\n", + "clinal\n", + "clinally\n", + "clinch\n", + "clinched\n", + "clincher\n", + "clinchers\n", + "clinches\n", + "clinching\n", + "cline\n", + "clines\n", + "cling\n", + "clinged\n", + "clinger\n", + "clingers\n", + "clingier\n", + "clingiest\n", + "clinging\n", + "clings\n", + "clingy\n", + "clinic\n", + "clinical\n", + "clinically\n", + "clinician\n", + "clinicians\n", + "clinics\n", + "clink\n", + "clinked\n", + "clinker\n", + "clinkered\n", + "clinkering\n", + "clinkers\n", + "clinking\n", + "clinks\n", + "clip\n", + "clipboard\n", + "clipboards\n", + "clipped\n", + "clipper\n", + "clippers\n", + "clipping\n", + "clippings\n", + "clips\n", + "clipt\n", + "clique\n", + "cliqued\n", + "cliqueier\n", + "cliqueiest\n", + "cliques\n", + "cliquey\n", + "cliquier\n", + "cliquiest\n", + "cliquing\n", + "cliquish\n", + "cliquy\n", + "clitella\n", + "clitoral\n", + "clitoric\n", + "clitoris\n", + "clitorises\n", + "clivers\n", + "cloaca\n", + "cloacae\n", + "cloacal\n", + "cloak\n", + "cloaked\n", + "cloaking\n", + "cloaks\n", + "clobber\n", + "clobbered\n", + "clobbering\n", + "clobbers\n", + "cloche\n", + "cloches\n", + "clock\n", + "clocked\n", + "clocker\n", + "clockers\n", + "clocking\n", + "clocks\n", + "clockwise\n", + "clockwork\n", + "clod\n", + "cloddier\n", + "cloddiest\n", + "cloddish\n", + "cloddy\n", + "clodpate\n", + "clodpates\n", + "clodpole\n", + "clodpoles\n", + "clodpoll\n", + "clodpolls\n", + "clods\n", + "clog\n", + "clogged\n", + "cloggier\n", + "cloggiest\n", + "clogging\n", + "cloggy\n", + "clogs\n", + "cloister\n", + "cloistered\n", + "cloistering\n", + "cloisters\n", + "clomb\n", + "clomp\n", + "clomped\n", + "clomping\n", + "clomps\n", + "clon\n", + "clonal\n", + "clonally\n", + "clone\n", + "cloned\n", + "clones\n", + "clonic\n", + "cloning\n", + "clonism\n", + "clonisms\n", + "clonk\n", + "clonked\n", + "clonking\n", + "clonks\n", + "clons\n", + "clonus\n", + "clonuses\n", + "cloot\n", + "cloots\n", + "clop\n", + "clopped\n", + "clopping\n", + "clops\n", + "closable\n", + "close\n", + "closed\n", + "closely\n", + "closeness\n", + "closenesses\n", + "closeout\n", + "closeouts\n", + "closer\n", + "closers\n", + "closes\n", + "closest\n", + "closet\n", + "closeted\n", + "closeting\n", + "closets\n", + "closing\n", + "closings\n", + "closure\n", + "closured\n", + "closures\n", + "closuring\n", + "clot\n", + "cloth\n", + "clothe\n", + "clothed\n", + "clothes\n", + "clothier\n", + "clothiers\n", + "clothing\n", + "clothings\n", + "cloths\n", + "clots\n", + "clotted\n", + "clotting\n", + "clotty\n", + "cloture\n", + "clotured\n", + "clotures\n", + "cloturing\n", + "cloud\n", + "cloudburst\n", + "cloudbursts\n", + "clouded\n", + "cloudier\n", + "cloudiest\n", + "cloudily\n", + "cloudiness\n", + "cloudinesses\n", + "clouding\n", + "cloudless\n", + "cloudlet\n", + "cloudlets\n", + "clouds\n", + "cloudy\n", + "clough\n", + "cloughs\n", + "clour\n", + "cloured\n", + "clouring\n", + "clours\n", + "clout\n", + "clouted\n", + "clouter\n", + "clouters\n", + "clouting\n", + "clouts\n", + "clove\n", + "cloven\n", + "clover\n", + "clovers\n", + "cloves\n", + "clowder\n", + "clowders\n", + "clown\n", + "clowned\n", + "clowneries\n", + "clownery\n", + "clowning\n", + "clownish\n", + "clownishly\n", + "clownishness\n", + "clownishnesses\n", + "clowns\n", + "cloy\n", + "cloyed\n", + "cloying\n", + "cloys\n", + "cloze\n", + "club\n", + "clubable\n", + "clubbed\n", + "clubber\n", + "clubbers\n", + "clubbier\n", + "clubbiest\n", + "clubbing\n", + "clubby\n", + "clubfeet\n", + "clubfoot\n", + "clubfooted\n", + "clubhand\n", + "clubhands\n", + "clubhaul\n", + "clubhauled\n", + "clubhauling\n", + "clubhauls\n", + "clubman\n", + "clubmen\n", + "clubroot\n", + "clubroots\n", + "clubs\n", + "cluck\n", + "clucked\n", + "clucking\n", + "clucks\n", + "clue\n", + "clued\n", + "clueing\n", + "clues\n", + "cluing\n", + "clumber\n", + "clumbers\n", + "clump\n", + "clumped\n", + "clumpier\n", + "clumpiest\n", + "clumping\n", + "clumpish\n", + "clumps\n", + "clumpy\n", + "clumsier\n", + "clumsiest\n", + "clumsily\n", + "clumsiness\n", + "clumsinesses\n", + "clumsy\n", + "clung\n", + "clunk\n", + "clunked\n", + "clunker\n", + "clunkers\n", + "clunking\n", + "clunks\n", + "clupeid\n", + "clupeids\n", + "clupeoid\n", + "clupeoids\n", + "cluster\n", + "clustered\n", + "clustering\n", + "clusters\n", + "clustery\n", + "clutch\n", + "clutched\n", + "clutches\n", + "clutching\n", + "clutchy\n", + "clutter\n", + "cluttered\n", + "cluttering\n", + "clutters\n", + "clypeal\n", + "clypeate\n", + "clypei\n", + "clypeus\n", + "clyster\n", + "clysters\n", + "coach\n", + "coached\n", + "coacher\n", + "coachers\n", + "coaches\n", + "coaching\n", + "coachman\n", + "coachmen\n", + "coact\n", + "coacted\n", + "coacting\n", + "coaction\n", + "coactions\n", + "coactive\n", + "coacts\n", + "coadmire\n", + "coadmired\n", + "coadmires\n", + "coadmiring\n", + "coadmit\n", + "coadmits\n", + "coadmitted\n", + "coadmitting\n", + "coaeval\n", + "coaevals\n", + "coagencies\n", + "coagency\n", + "coagent\n", + "coagents\n", + "coagula\n", + "coagulant\n", + "coagulants\n", + "coagulate\n", + "coagulated\n", + "coagulates\n", + "coagulating\n", + "coagulation\n", + "coagulations\n", + "coagulum\n", + "coagulums\n", + "coal\n", + "coala\n", + "coalas\n", + "coalbin\n", + "coalbins\n", + "coalbox\n", + "coalboxes\n", + "coaled\n", + "coaler\n", + "coalers\n", + "coalesce\n", + "coalesced\n", + "coalescent\n", + "coalesces\n", + "coalescing\n", + "coalfield\n", + "coalfields\n", + "coalfish\n", + "coalfishes\n", + "coalhole\n", + "coalholes\n", + "coalified\n", + "coalifies\n", + "coalify\n", + "coalifying\n", + "coaling\n", + "coalition\n", + "coalitions\n", + "coalless\n", + "coalpit\n", + "coalpits\n", + "coals\n", + "coalsack\n", + "coalsacks\n", + "coalshed\n", + "coalsheds\n", + "coalyard\n", + "coalyards\n", + "coaming\n", + "coamings\n", + "coannex\n", + "coannexed\n", + "coannexes\n", + "coannexing\n", + "coappear\n", + "coappeared\n", + "coappearing\n", + "coappears\n", + "coapt\n", + "coapted\n", + "coapting\n", + "coapts\n", + "coarse\n", + "coarsely\n", + "coarsen\n", + "coarsened\n", + "coarseness\n", + "coarsenesses\n", + "coarsening\n", + "coarsens\n", + "coarser\n", + "coarsest\n", + "coassist\n", + "coassisted\n", + "coassisting\n", + "coassists\n", + "coassume\n", + "coassumed\n", + "coassumes\n", + "coassuming\n", + "coast\n", + "coastal\n", + "coasted\n", + "coaster\n", + "coasters\n", + "coasting\n", + "coastings\n", + "coastline\n", + "coastlines\n", + "coasts\n", + "coat\n", + "coated\n", + "coatee\n", + "coatees\n", + "coater\n", + "coaters\n", + "coati\n", + "coating\n", + "coatings\n", + "coatis\n", + "coatless\n", + "coatrack\n", + "coatracks\n", + "coatroom\n", + "coatrooms\n", + "coats\n", + "coattail\n", + "coattails\n", + "coattend\n", + "coattended\n", + "coattending\n", + "coattends\n", + "coattest\n", + "coattested\n", + "coattesting\n", + "coattests\n", + "coauthor\n", + "coauthored\n", + "coauthoring\n", + "coauthors\n", + "coauthorship\n", + "coauthorships\n", + "coax\n", + "coaxal\n", + "coaxed\n", + "coaxer\n", + "coaxers\n", + "coaxes\n", + "coaxial\n", + "coaxing\n", + "cob\n", + "cobalt\n", + "cobaltic\n", + "cobalts\n", + "cobb\n", + "cobber\n", + "cobbers\n", + "cobbier\n", + "cobbiest\n", + "cobble\n", + "cobbled\n", + "cobbler\n", + "cobblers\n", + "cobbles\n", + "cobblestone\n", + "cobblestones\n", + "cobbling\n", + "cobbs\n", + "cobby\n", + "cobia\n", + "cobias\n", + "coble\n", + "cobles\n", + "cobnut\n", + "cobnuts\n", + "cobra\n", + "cobras\n", + "cobs\n", + "cobweb\n", + "cobwebbed\n", + "cobwebbier\n", + "cobwebbiest\n", + "cobwebbing\n", + "cobwebby\n", + "cobwebs\n", + "coca\n", + "cocain\n", + "cocaine\n", + "cocaines\n", + "cocains\n", + "cocaptain\n", + "cocaptains\n", + "cocas\n", + "coccal\n", + "cocci\n", + "coccic\n", + "coccid\n", + "coccidia\n", + "coccids\n", + "coccoid\n", + "coccoids\n", + "coccous\n", + "coccus\n", + "coccyges\n", + "coccyx\n", + "coccyxes\n", + "cochair\n", + "cochaired\n", + "cochairing\n", + "cochairman\n", + "cochairmen\n", + "cochairs\n", + "cochampion\n", + "cochampions\n", + "cochin\n", + "cochins\n", + "cochlea\n", + "cochleae\n", + "cochlear\n", + "cochleas\n", + "cocinera\n", + "cocineras\n", + "cock\n", + "cockade\n", + "cockaded\n", + "cockades\n", + "cockatoo\n", + "cockatoos\n", + "cockbill\n", + "cockbilled\n", + "cockbilling\n", + "cockbills\n", + "cockboat\n", + "cockboats\n", + "cockcrow\n", + "cockcrows\n", + "cocked\n", + "cocker\n", + "cockered\n", + "cockerel\n", + "cockerels\n", + "cockering\n", + "cockers\n", + "cockeye\n", + "cockeyed\n", + "cockeyes\n", + "cockfight\n", + "cockfights\n", + "cockier\n", + "cockiest\n", + "cockily\n", + "cockiness\n", + "cockinesses\n", + "cocking\n", + "cockish\n", + "cockle\n", + "cockled\n", + "cockles\n", + "cocklike\n", + "cockling\n", + "cockloft\n", + "cocklofts\n", + "cockney\n", + "cockneys\n", + "cockpit\n", + "cockpits\n", + "cockroach\n", + "cockroaches\n", + "cocks\n", + "cockshies\n", + "cockshut\n", + "cockshuts\n", + "cockshy\n", + "cockspur\n", + "cockspurs\n", + "cocksure\n", + "cocktail\n", + "cocktailed\n", + "cocktailing\n", + "cocktails\n", + "cockup\n", + "cockups\n", + "cocky\n", + "coco\n", + "cocoa\n", + "cocoanut\n", + "cocoanuts\n", + "cocoas\n", + "cocobola\n", + "cocobolas\n", + "cocobolo\n", + "cocobolos\n", + "cocomat\n", + "cocomats\n", + "cocomposer\n", + "cocomposers\n", + "coconspirator\n", + "coconspirators\n", + "coconut\n", + "coconuts\n", + "cocoon\n", + "cocooned\n", + "cocooning\n", + "cocoons\n", + "cocos\n", + "cocotte\n", + "cocottes\n", + "cocreate\n", + "cocreated\n", + "cocreates\n", + "cocreating\n", + "cocreator\n", + "cocreators\n", + "cod\n", + "coda\n", + "codable\n", + "codas\n", + "codder\n", + "codders\n", + "coddle\n", + "coddled\n", + "coddler\n", + "coddlers\n", + "coddles\n", + "coddling\n", + "code\n", + "codebtor\n", + "codebtors\n", + "coded\n", + "codefendant\n", + "codefendants\n", + "codeia\n", + "codeias\n", + "codein\n", + "codeina\n", + "codeinas\n", + "codeine\n", + "codeines\n", + "codeins\n", + "codeless\n", + "coden\n", + "codens\n", + "coder\n", + "coderive\n", + "coderived\n", + "coderives\n", + "coderiving\n", + "coders\n", + "codes\n", + "codesigner\n", + "codesigners\n", + "codevelop\n", + "codeveloped\n", + "codeveloper\n", + "codevelopers\n", + "codeveloping\n", + "codevelops\n", + "codex\n", + "codfish\n", + "codfishes\n", + "codger\n", + "codgers\n", + "codices\n", + "codicil\n", + "codicils\n", + "codification\n", + "codifications\n", + "codified\n", + "codifier\n", + "codifiers\n", + "codifies\n", + "codify\n", + "codifying\n", + "coding\n", + "codirector\n", + "codirectors\n", + "codiscoverer\n", + "codiscoverers\n", + "codlin\n", + "codling\n", + "codlings\n", + "codlins\n", + "codon\n", + "codons\n", + "codpiece\n", + "codpieces\n", + "cods\n", + "coed\n", + "coeditor\n", + "coeditors\n", + "coeds\n", + "coeducation\n", + "coeducational\n", + "coeducations\n", + "coeffect\n", + "coeffects\n", + "coefficient\n", + "coefficients\n", + "coeliac\n", + "coelom\n", + "coelomata\n", + "coelome\n", + "coelomes\n", + "coelomic\n", + "coeloms\n", + "coembodied\n", + "coembodies\n", + "coembody\n", + "coembodying\n", + "coemploy\n", + "coemployed\n", + "coemploying\n", + "coemploys\n", + "coempt\n", + "coempted\n", + "coempting\n", + "coempts\n", + "coenact\n", + "coenacted\n", + "coenacting\n", + "coenacts\n", + "coenamor\n", + "coenamored\n", + "coenamoring\n", + "coenamors\n", + "coendure\n", + "coendured\n", + "coendures\n", + "coenduring\n", + "coenure\n", + "coenures\n", + "coenuri\n", + "coenurus\n", + "coenzyme\n", + "coenzymes\n", + "coequal\n", + "coequals\n", + "coequate\n", + "coequated\n", + "coequates\n", + "coequating\n", + "coerce\n", + "coerced\n", + "coercer\n", + "coercers\n", + "coerces\n", + "coercing\n", + "coercion\n", + "coercions\n", + "coercive\n", + "coerect\n", + "coerected\n", + "coerecting\n", + "coerects\n", + "coeval\n", + "coevally\n", + "coevals\n", + "coexecutor\n", + "coexecutors\n", + "coexert\n", + "coexerted\n", + "coexerting\n", + "coexerts\n", + "coexist\n", + "coexisted\n", + "coexistence\n", + "coexistences\n", + "coexistent\n", + "coexisting\n", + "coexists\n", + "coextend\n", + "coextended\n", + "coextending\n", + "coextends\n", + "cofactor\n", + "cofactors\n", + "cofeature\n", + "cofeatures\n", + "coff\n", + "coffee\n", + "coffeehouse\n", + "coffeehouses\n", + "coffeepot\n", + "coffeepots\n", + "coffees\n", + "coffer\n", + "coffered\n", + "coffering\n", + "coffers\n", + "coffin\n", + "coffined\n", + "coffing\n", + "coffining\n", + "coffins\n", + "coffle\n", + "coffled\n", + "coffles\n", + "coffling\n", + "coffret\n", + "coffrets\n", + "coffs\n", + "cofinance\n", + "cofinanced\n", + "cofinances\n", + "cofinancing\n", + "cofounder\n", + "cofounders\n", + "coft\n", + "cog\n", + "cogencies\n", + "cogency\n", + "cogent\n", + "cogently\n", + "cogged\n", + "cogging\n", + "cogitate\n", + "cogitated\n", + "cogitates\n", + "cogitating\n", + "cogitation\n", + "cogitations\n", + "cogitative\n", + "cogito\n", + "cogitos\n", + "cognac\n", + "cognacs\n", + "cognate\n", + "cognates\n", + "cognise\n", + "cognised\n", + "cognises\n", + "cognising\n", + "cognition\n", + "cognitions\n", + "cognitive\n", + "cognizable\n", + "cognizance\n", + "cognizances\n", + "cognizant\n", + "cognize\n", + "cognized\n", + "cognizer\n", + "cognizers\n", + "cognizes\n", + "cognizing\n", + "cognomen\n", + "cognomens\n", + "cognomina\n", + "cognovit\n", + "cognovits\n", + "cogon\n", + "cogons\n", + "cogs\n", + "cogway\n", + "cogways\n", + "cogweel\n", + "cogweels\n", + "cohabit\n", + "cohabitation\n", + "cohabitations\n", + "cohabited\n", + "cohabiting\n", + "cohabits\n", + "coheir\n", + "coheiress\n", + "coheiresses\n", + "coheirs\n", + "cohere\n", + "cohered\n", + "coherence\n", + "coherences\n", + "coherent\n", + "coherently\n", + "coherer\n", + "coherers\n", + "coheres\n", + "cohering\n", + "cohesion\n", + "cohesions\n", + "cohesive\n", + "coho\n", + "cohobate\n", + "cohobated\n", + "cohobates\n", + "cohobating\n", + "cohog\n", + "cohogs\n", + "cohort\n", + "cohorts\n", + "cohos\n", + "cohosh\n", + "cohoshes\n", + "cohostess\n", + "cohostesses\n", + "cohune\n", + "cohunes\n", + "coif\n", + "coifed\n", + "coiffe\n", + "coiffed\n", + "coiffes\n", + "coiffeur\n", + "coiffeurs\n", + "coiffing\n", + "coiffure\n", + "coiffured\n", + "coiffures\n", + "coiffuring\n", + "coifing\n", + "coifs\n", + "coign\n", + "coigne\n", + "coigned\n", + "coignes\n", + "coigning\n", + "coigns\n", + "coil\n", + "coiled\n", + "coiler\n", + "coilers\n", + "coiling\n", + "coils\n", + "coin\n", + "coinable\n", + "coinage\n", + "coinages\n", + "coincide\n", + "coincided\n", + "coincidence\n", + "coincidences\n", + "coincident\n", + "coincidental\n", + "coincides\n", + "coinciding\n", + "coined\n", + "coiner\n", + "coiners\n", + "coinfer\n", + "coinferred\n", + "coinferring\n", + "coinfers\n", + "coinhere\n", + "coinhered\n", + "coinheres\n", + "coinhering\n", + "coining\n", + "coinmate\n", + "coinmates\n", + "coins\n", + "coinsure\n", + "coinsured\n", + "coinsures\n", + "coinsuring\n", + "cointer\n", + "cointerred\n", + "cointerring\n", + "cointers\n", + "coinventor\n", + "coinventors\n", + "coinvestigator\n", + "coinvestigators\n", + "coir\n", + "coirs\n", + "coistrel\n", + "coistrels\n", + "coistril\n", + "coistrils\n", + "coital\n", + "coitally\n", + "coition\n", + "coitions\n", + "coitus\n", + "coituses\n", + "coke\n", + "coked\n", + "cokes\n", + "coking\n", + "col\n", + "cola\n", + "colander\n", + "colanders\n", + "colas\n", + "cold\n", + "colder\n", + "coldest\n", + "coldish\n", + "coldly\n", + "coldness\n", + "coldnesses\n", + "colds\n", + "cole\n", + "coles\n", + "coleseed\n", + "coleseeds\n", + "coleslaw\n", + "coleslaws\n", + "colessee\n", + "colessees\n", + "colessor\n", + "colessors\n", + "coleus\n", + "coleuses\n", + "colewort\n", + "coleworts\n", + "colic\n", + "colicin\n", + "colicine\n", + "colicines\n", + "colicins\n", + "colicky\n", + "colics\n", + "colies\n", + "coliform\n", + "coliforms\n", + "colin\n", + "colinear\n", + "colins\n", + "coliseum\n", + "coliseums\n", + "colistin\n", + "colistins\n", + "colitic\n", + "colitis\n", + "colitises\n", + "collaborate\n", + "collaborated\n", + "collaborates\n", + "collaborating\n", + "collaboration\n", + "collaborations\n", + "collaborative\n", + "collaborator\n", + "collaborators\n", + "collage\n", + "collagen\n", + "collagens\n", + "collages\n", + "collapse\n", + "collapsed\n", + "collapses\n", + "collapsible\n", + "collapsing\n", + "collar\n", + "collarbone\n", + "collarbones\n", + "collard\n", + "collards\n", + "collared\n", + "collaret\n", + "collarets\n", + "collaring\n", + "collarless\n", + "collars\n", + "collate\n", + "collated\n", + "collateral\n", + "collaterals\n", + "collates\n", + "collating\n", + "collator\n", + "collators\n", + "colleague\n", + "colleagues\n", + "collect\n", + "collectable\n", + "collected\n", + "collectible\n", + "collecting\n", + "collection\n", + "collections\n", + "collectivism\n", + "collector\n", + "collectors\n", + "collects\n", + "colleen\n", + "colleens\n", + "college\n", + "colleger\n", + "collegers\n", + "colleges\n", + "collegia\n", + "collegian\n", + "collegians\n", + "collegiate\n", + "collet\n", + "colleted\n", + "colleting\n", + "collets\n", + "collide\n", + "collided\n", + "collides\n", + "colliding\n", + "collie\n", + "collied\n", + "collier\n", + "collieries\n", + "colliers\n", + "colliery\n", + "collies\n", + "collins\n", + "collinses\n", + "collision\n", + "collisions\n", + "collogue\n", + "collogued\n", + "collogues\n", + "colloguing\n", + "colloid\n", + "colloidal\n", + "colloids\n", + "collop\n", + "collops\n", + "colloquial\n", + "colloquialism\n", + "colloquialisms\n", + "colloquies\n", + "colloquy\n", + "collude\n", + "colluded\n", + "colluder\n", + "colluders\n", + "colludes\n", + "colluding\n", + "collusion\n", + "collusions\n", + "colluvia\n", + "colly\n", + "collying\n", + "collyria\n", + "colocate\n", + "colocated\n", + "colocates\n", + "colocating\n", + "colog\n", + "cologne\n", + "cologned\n", + "colognes\n", + "cologs\n", + "colon\n", + "colonel\n", + "colonels\n", + "colones\n", + "coloni\n", + "colonial\n", + "colonials\n", + "colonic\n", + "colonies\n", + "colonise\n", + "colonised\n", + "colonises\n", + "colonising\n", + "colonist\n", + "colonists\n", + "colonize\n", + "colonized\n", + "colonizes\n", + "colonizing\n", + "colonnade\n", + "colonnades\n", + "colons\n", + "colonus\n", + "colony\n", + "colophon\n", + "colophons\n", + "color\n", + "colorado\n", + "colorant\n", + "colorants\n", + "colored\n", + "coloreds\n", + "colorer\n", + "colorers\n", + "colorfast\n", + "colorful\n", + "coloring\n", + "colorings\n", + "colorism\n", + "colorisms\n", + "colorist\n", + "colorists\n", + "colorless\n", + "colors\n", + "colossal\n", + "colossi\n", + "colossus\n", + "colossuses\n", + "colotomies\n", + "colotomy\n", + "colour\n", + "coloured\n", + "colourer\n", + "colourers\n", + "colouring\n", + "colours\n", + "colpitis\n", + "colpitises\n", + "cols\n", + "colt\n", + "colter\n", + "colters\n", + "coltish\n", + "colts\n", + "colubrid\n", + "colubrids\n", + "colugo\n", + "colugos\n", + "columbic\n", + "columel\n", + "columels\n", + "column\n", + "columnal\n", + "columnar\n", + "columned\n", + "columnist\n", + "columnists\n", + "columns\n", + "colure\n", + "colures\n", + "coly\n", + "colza\n", + "colzas\n", + "coma\n", + "comae\n", + "comaker\n", + "comakers\n", + "comal\n", + "comanagement\n", + "comanagements\n", + "comanager\n", + "comanagers\n", + "comas\n", + "comate\n", + "comates\n", + "comatic\n", + "comatik\n", + "comatiks\n", + "comatose\n", + "comatula\n", + "comatulae\n", + "comb\n", + "combat\n", + "combatant\n", + "combatants\n", + "combated\n", + "combater\n", + "combaters\n", + "combating\n", + "combative\n", + "combats\n", + "combatted\n", + "combatting\n", + "combe\n", + "combed\n", + "comber\n", + "combers\n", + "combes\n", + "combination\n", + "combinations\n", + "combine\n", + "combined\n", + "combiner\n", + "combiners\n", + "combines\n", + "combing\n", + "combings\n", + "combining\n", + "comblike\n", + "combo\n", + "combos\n", + "combs\n", + "combust\n", + "combusted\n", + "combustibilities\n", + "combustibility\n", + "combustible\n", + "combusting\n", + "combustion\n", + "combustions\n", + "combustive\n", + "combusts\n", + "comby\n", + "come\n", + "comeback\n", + "comebacks\n", + "comedian\n", + "comedians\n", + "comedic\n", + "comedienne\n", + "comediennes\n", + "comedies\n", + "comedo\n", + "comedones\n", + "comedos\n", + "comedown\n", + "comedowns\n", + "comedy\n", + "comelier\n", + "comeliest\n", + "comelily\n", + "comely\n", + "comer\n", + "comers\n", + "comes\n", + "comet\n", + "cometary\n", + "cometh\n", + "comether\n", + "comethers\n", + "cometic\n", + "comets\n", + "comfier\n", + "comfiest\n", + "comfit\n", + "comfits\n", + "comfort\n", + "comfortable\n", + "comfortably\n", + "comforted\n", + "comforter\n", + "comforters\n", + "comforting\n", + "comfortless\n", + "comforts\n", + "comfrey\n", + "comfreys\n", + "comfy\n", + "comic\n", + "comical\n", + "comics\n", + "coming\n", + "comings\n", + "comitia\n", + "comitial\n", + "comities\n", + "comity\n", + "comma\n", + "command\n", + "commandant\n", + "commandants\n", + "commanded\n", + "commandeer\n", + "commandeered\n", + "commandeering\n", + "commandeers\n", + "commander\n", + "commanders\n", + "commanding\n", + "commandment\n", + "commandments\n", + "commando\n", + "commandoes\n", + "commandos\n", + "commands\n", + "commas\n", + "commata\n", + "commemorate\n", + "commemorated\n", + "commemorates\n", + "commemorating\n", + "commemoration\n", + "commemorations\n", + "commemorative\n", + "commence\n", + "commenced\n", + "commencement\n", + "commencements\n", + "commences\n", + "commencing\n", + "commend\n", + "commendable\n", + "commendation\n", + "commendations\n", + "commended\n", + "commending\n", + "commends\n", + "comment\n", + "commentaries\n", + "commentary\n", + "commentator\n", + "commentators\n", + "commented\n", + "commenting\n", + "comments\n", + "commerce\n", + "commerced\n", + "commerces\n", + "commercial\n", + "commercialize\n", + "commercialized\n", + "commercializes\n", + "commercializing\n", + "commercially\n", + "commercials\n", + "commercing\n", + "commie\n", + "commies\n", + "commiserate\n", + "commiserated\n", + "commiserates\n", + "commiserating\n", + "commiseration\n", + "commiserations\n", + "commissaries\n", + "commissary\n", + "commission\n", + "commissioned\n", + "commissioner\n", + "commissioners\n", + "commissioning\n", + "commissions\n", + "commit\n", + "commitment\n", + "commitments\n", + "commits\n", + "committal\n", + "committals\n", + "committed\n", + "committee\n", + "committees\n", + "committing\n", + "commix\n", + "commixed\n", + "commixes\n", + "commixing\n", + "commixt\n", + "commode\n", + "commodes\n", + "commodious\n", + "commodities\n", + "commodity\n", + "commodore\n", + "commodores\n", + "common\n", + "commoner\n", + "commoners\n", + "commonest\n", + "commonly\n", + "commonplace\n", + "commonplaces\n", + "commons\n", + "commonweal\n", + "commonweals\n", + "commonwealth\n", + "commonwealths\n", + "commotion\n", + "commotions\n", + "commove\n", + "commoved\n", + "commoves\n", + "commoving\n", + "communal\n", + "commune\n", + "communed\n", + "communes\n", + "communicable\n", + "communicate\n", + "communicated\n", + "communicates\n", + "communicating\n", + "communication\n", + "communications\n", + "communicative\n", + "communing\n", + "communion\n", + "communions\n", + "communique\n", + "communiques\n", + "communism\n", + "communist\n", + "communistic\n", + "communists\n", + "communities\n", + "community\n", + "commutation\n", + "commutations\n", + "commute\n", + "commuted\n", + "commuter\n", + "commuters\n", + "commutes\n", + "commuting\n", + "commy\n", + "comose\n", + "comous\n", + "comp\n", + "compact\n", + "compacted\n", + "compacter\n", + "compactest\n", + "compacting\n", + "compactly\n", + "compactness\n", + "compactnesses\n", + "compacts\n", + "compadre\n", + "compadres\n", + "companied\n", + "companies\n", + "companion\n", + "companions\n", + "companionship\n", + "companionships\n", + "company\n", + "companying\n", + "comparable\n", + "comparative\n", + "comparatively\n", + "compare\n", + "compared\n", + "comparer\n", + "comparers\n", + "compares\n", + "comparing\n", + "comparison\n", + "comparisons\n", + "compart\n", + "comparted\n", + "comparting\n", + "compartment\n", + "compartments\n", + "comparts\n", + "compass\n", + "compassed\n", + "compasses\n", + "compassing\n", + "compassion\n", + "compassionate\n", + "compassions\n", + "compatability\n", + "compatable\n", + "compatibilities\n", + "compatibility\n", + "compatible\n", + "compatriot\n", + "compatriots\n", + "comped\n", + "compeer\n", + "compeered\n", + "compeering\n", + "compeers\n", + "compel\n", + "compelled\n", + "compelling\n", + "compels\n", + "compend\n", + "compendia\n", + "compendium\n", + "compends\n", + "compensate\n", + "compensated\n", + "compensates\n", + "compensating\n", + "compensation\n", + "compensations\n", + "compensatory\n", + "compere\n", + "compered\n", + "comperes\n", + "compering\n", + "compete\n", + "competed\n", + "competence\n", + "competences\n", + "competencies\n", + "competency\n", + "competent\n", + "competently\n", + "competes\n", + "competing\n", + "competition\n", + "competitions\n", + "competitive\n", + "competitor\n", + "competitors\n", + "compilation\n", + "compilations\n", + "compile\n", + "compiled\n", + "compiler\n", + "compilers\n", + "compiles\n", + "compiling\n", + "comping\n", + "complacence\n", + "complacences\n", + "complacencies\n", + "complacency\n", + "complacent\n", + "complain\n", + "complainant\n", + "complainants\n", + "complained\n", + "complainer\n", + "complainers\n", + "complaining\n", + "complains\n", + "complaint\n", + "complaints\n", + "compleat\n", + "complect\n", + "complected\n", + "complecting\n", + "complects\n", + "complement\n", + "complementary\n", + "complemented\n", + "complementing\n", + "complements\n", + "complete\n", + "completed\n", + "completely\n", + "completeness\n", + "completenesses\n", + "completer\n", + "completes\n", + "completest\n", + "completing\n", + "completion\n", + "completions\n", + "complex\n", + "complexed\n", + "complexer\n", + "complexes\n", + "complexest\n", + "complexing\n", + "complexion\n", + "complexioned\n", + "complexions\n", + "complexity\n", + "compliance\n", + "compliances\n", + "compliant\n", + "complicate\n", + "complicated\n", + "complicates\n", + "complicating\n", + "complication\n", + "complications\n", + "complice\n", + "complices\n", + "complicities\n", + "complicity\n", + "complied\n", + "complier\n", + "compliers\n", + "complies\n", + "compliment\n", + "complimentary\n", + "compliments\n", + "complin\n", + "compline\n", + "complines\n", + "complins\n", + "complot\n", + "complots\n", + "complotted\n", + "complotting\n", + "comply\n", + "complying\n", + "compo\n", + "compone\n", + "component\n", + "components\n", + "compony\n", + "comport\n", + "comported\n", + "comporting\n", + "comportment\n", + "comportments\n", + "comports\n", + "compos\n", + "compose\n", + "composed\n", + "composer\n", + "composers\n", + "composes\n", + "composing\n", + "composite\n", + "composites\n", + "composition\n", + "compositions\n", + "compost\n", + "composted\n", + "composting\n", + "composts\n", + "composure\n", + "compote\n", + "compotes\n", + "compound\n", + "compounded\n", + "compounding\n", + "compounds\n", + "comprehend\n", + "comprehended\n", + "comprehending\n", + "comprehends\n", + "comprehensible\n", + "comprehension\n", + "comprehensions\n", + "comprehensive\n", + "comprehensiveness\n", + "comprehensivenesses\n", + "compress\n", + "compressed\n", + "compresses\n", + "compressing\n", + "compression\n", + "compressions\n", + "compressor\n", + "compressors\n", + "comprise\n", + "comprised\n", + "comprises\n", + "comprising\n", + "comprize\n", + "comprized\n", + "comprizes\n", + "comprizing\n", + "compromise\n", + "compromised\n", + "compromises\n", + "compromising\n", + "comps\n", + "compt\n", + "compted\n", + "compting\n", + "comptroller\n", + "comptrollers\n", + "compts\n", + "compulsion\n", + "compulsions\n", + "compulsive\n", + "compulsory\n", + "compunction\n", + "compunctions\n", + "computation\n", + "computations\n", + "compute\n", + "computed\n", + "computer\n", + "computerize\n", + "computerized\n", + "computerizes\n", + "computerizing\n", + "computers\n", + "computes\n", + "computing\n", + "comrade\n", + "comrades\n", + "comradeship\n", + "comradeships\n", + "comte\n", + "comtemplate\n", + "comtemplated\n", + "comtemplates\n", + "comtemplating\n", + "comtes\n", + "con\n", + "conation\n", + "conations\n", + "conative\n", + "conatus\n", + "concannon\n", + "concatenate\n", + "concatenated\n", + "concatenates\n", + "concatenating\n", + "concave\n", + "concaved\n", + "concaves\n", + "concaving\n", + "concavities\n", + "concavity\n", + "conceal\n", + "concealed\n", + "concealing\n", + "concealment\n", + "concealments\n", + "conceals\n", + "concede\n", + "conceded\n", + "conceder\n", + "conceders\n", + "concedes\n", + "conceding\n", + "conceit\n", + "conceited\n", + "conceiting\n", + "conceits\n", + "conceivable\n", + "conceivably\n", + "conceive\n", + "conceived\n", + "conceives\n", + "conceiving\n", + "concent\n", + "concentrate\n", + "concentrated\n", + "concentrates\n", + "concentrating\n", + "concentration\n", + "concentrations\n", + "concentric\n", + "concents\n", + "concept\n", + "conception\n", + "conceptions\n", + "concepts\n", + "conceptual\n", + "conceptualize\n", + "conceptualized\n", + "conceptualizes\n", + "conceptualizing\n", + "conceptually\n", + "concern\n", + "concerned\n", + "concerning\n", + "concerns\n", + "concert\n", + "concerted\n", + "concerti\n", + "concertina\n", + "concerting\n", + "concerto\n", + "concertos\n", + "concerts\n", + "concession\n", + "concessions\n", + "conch\n", + "concha\n", + "conchae\n", + "conchal\n", + "conches\n", + "conchies\n", + "conchoid\n", + "conchoids\n", + "conchs\n", + "conchy\n", + "conciliate\n", + "conciliated\n", + "conciliates\n", + "conciliating\n", + "conciliation\n", + "conciliations\n", + "conciliatory\n", + "concise\n", + "concisely\n", + "conciseness\n", + "concisenesses\n", + "conciser\n", + "concisest\n", + "conclave\n", + "conclaves\n", + "conclude\n", + "concluded\n", + "concludes\n", + "concluding\n", + "conclusion\n", + "conclusions\n", + "conclusive\n", + "conclusively\n", + "concoct\n", + "concocted\n", + "concocting\n", + "concoction\n", + "concoctions\n", + "concocts\n", + "concomitant\n", + "concomitantly\n", + "concomitants\n", + "concord\n", + "concordance\n", + "concordances\n", + "concordant\n", + "concords\n", + "concrete\n", + "concreted\n", + "concretes\n", + "concreting\n", + "concretion\n", + "concretions\n", + "concubine\n", + "concubines\n", + "concur\n", + "concurred\n", + "concurrence\n", + "concurrences\n", + "concurrent\n", + "concurrently\n", + "concurring\n", + "concurs\n", + "concuss\n", + "concussed\n", + "concusses\n", + "concussing\n", + "concussion\n", + "concussions\n", + "condemn\n", + "condemnation\n", + "condemnations\n", + "condemned\n", + "condemning\n", + "condemns\n", + "condensation\n", + "condensations\n", + "condense\n", + "condensed\n", + "condenses\n", + "condensing\n", + "condescend\n", + "condescended\n", + "condescending\n", + "condescends\n", + "condescension\n", + "condescensions\n", + "condign\n", + "condiment\n", + "condiments\n", + "condition\n", + "conditional\n", + "conditionally\n", + "conditioned\n", + "conditioner\n", + "conditioners\n", + "conditioning\n", + "conditions\n", + "condole\n", + "condoled\n", + "condolence\n", + "condolences\n", + "condoler\n", + "condolers\n", + "condoles\n", + "condoling\n", + "condom\n", + "condominium\n", + "condominiums\n", + "condoms\n", + "condone\n", + "condoned\n", + "condoner\n", + "condoners\n", + "condones\n", + "condoning\n", + "condor\n", + "condores\n", + "condors\n", + "conduce\n", + "conduced\n", + "conducer\n", + "conducers\n", + "conduces\n", + "conducing\n", + "conduct\n", + "conducted\n", + "conducting\n", + "conduction\n", + "conductions\n", + "conductive\n", + "conductor\n", + "conductors\n", + "conducts\n", + "conduit\n", + "conduits\n", + "condylar\n", + "condyle\n", + "condyles\n", + "cone\n", + "coned\n", + "conelrad\n", + "conelrads\n", + "conenose\n", + "conenoses\n", + "conepate\n", + "conepates\n", + "conepatl\n", + "conepatls\n", + "cones\n", + "coney\n", + "coneys\n", + "confab\n", + "confabbed\n", + "confabbing\n", + "confabs\n", + "confect\n", + "confected\n", + "confecting\n", + "confects\n", + "confederacies\n", + "confederacy\n", + "confer\n", + "conferee\n", + "conferees\n", + "conference\n", + "conferences\n", + "conferred\n", + "conferring\n", + "confers\n", + "conferva\n", + "confervae\n", + "confervas\n", + "confess\n", + "confessed\n", + "confesses\n", + "confessing\n", + "confession\n", + "confessional\n", + "confessionals\n", + "confessions\n", + "confessor\n", + "confessors\n", + "confetti\n", + "confetto\n", + "confidant\n", + "confidants\n", + "confide\n", + "confided\n", + "confidence\n", + "confidences\n", + "confident\n", + "confidential\n", + "confidentiality\n", + "confider\n", + "confiders\n", + "confides\n", + "confiding\n", + "configuration\n", + "configurations\n", + "configure\n", + "configured\n", + "configures\n", + "configuring\n", + "confine\n", + "confined\n", + "confinement\n", + "confinements\n", + "confiner\n", + "confiners\n", + "confines\n", + "confining\n", + "confirm\n", + "confirmation\n", + "confirmations\n", + "confirmed\n", + "confirming\n", + "confirms\n", + "confiscate\n", + "confiscated\n", + "confiscates\n", + "confiscating\n", + "confiscation\n", + "confiscations\n", + "conflagration\n", + "conflagrations\n", + "conflate\n", + "conflated\n", + "conflates\n", + "conflating\n", + "conflict\n", + "conflicted\n", + "conflicting\n", + "conflicts\n", + "conflux\n", + "confluxes\n", + "confocal\n", + "conform\n", + "conformed\n", + "conforming\n", + "conformities\n", + "conformity\n", + "conforms\n", + "confound\n", + "confounded\n", + "confounding\n", + "confounds\n", + "confrere\n", + "confreres\n", + "confront\n", + "confrontation\n", + "confrontations\n", + "confronted\n", + "confronting\n", + "confronts\n", + "confuse\n", + "confused\n", + "confuses\n", + "confusing\n", + "confusion\n", + "confusions\n", + "confute\n", + "confuted\n", + "confuter\n", + "confuters\n", + "confutes\n", + "confuting\n", + "conga\n", + "congaed\n", + "congaing\n", + "congas\n", + "conge\n", + "congeal\n", + "congealed\n", + "congealing\n", + "congeals\n", + "congee\n", + "congeed\n", + "congeeing\n", + "congees\n", + "congener\n", + "congeners\n", + "congenial\n", + "congenialities\n", + "congeniality\n", + "congenital\n", + "conger\n", + "congers\n", + "conges\n", + "congest\n", + "congested\n", + "congesting\n", + "congestion\n", + "congestions\n", + "congestive\n", + "congests\n", + "congii\n", + "congius\n", + "conglobe\n", + "conglobed\n", + "conglobes\n", + "conglobing\n", + "conglomerate\n", + "conglomerated\n", + "conglomerates\n", + "conglomerating\n", + "conglomeration\n", + "conglomerations\n", + "congo\n", + "congoes\n", + "congos\n", + "congou\n", + "congous\n", + "congratulate\n", + "congratulated\n", + "congratulates\n", + "congratulating\n", + "congratulation\n", + "congratulations\n", + "congratulatory\n", + "congregate\n", + "congregated\n", + "congregates\n", + "congregating\n", + "congregation\n", + "congregational\n", + "congregations\n", + "congresional\n", + "congress\n", + "congressed\n", + "congresses\n", + "congressing\n", + "congressman\n", + "congressmen\n", + "congresswoman\n", + "congresswomen\n", + "congruence\n", + "congruences\n", + "congruent\n", + "congruities\n", + "congruity\n", + "congruous\n", + "coni\n", + "conic\n", + "conical\n", + "conicities\n", + "conicity\n", + "conics\n", + "conidia\n", + "conidial\n", + "conidian\n", + "conidium\n", + "conies\n", + "conifer\n", + "coniferous\n", + "conifers\n", + "coniine\n", + "coniines\n", + "conin\n", + "conine\n", + "conines\n", + "coning\n", + "conins\n", + "conium\n", + "coniums\n", + "conjectural\n", + "conjecture\n", + "conjectured\n", + "conjectures\n", + "conjecturing\n", + "conjoin\n", + "conjoined\n", + "conjoining\n", + "conjoins\n", + "conjoint\n", + "conjugal\n", + "conjugate\n", + "conjugated\n", + "conjugates\n", + "conjugating\n", + "conjugation\n", + "conjugations\n", + "conjunct\n", + "conjunction\n", + "conjunctions\n", + "conjunctive\n", + "conjunctivitis\n", + "conjuncts\n", + "conjure\n", + "conjured\n", + "conjurer\n", + "conjurers\n", + "conjures\n", + "conjuring\n", + "conjuror\n", + "conjurors\n", + "conk\n", + "conked\n", + "conker\n", + "conkers\n", + "conking\n", + "conks\n", + "conky\n", + "conn\n", + "connate\n", + "connect\n", + "connected\n", + "connecting\n", + "connection\n", + "connections\n", + "connective\n", + "connector\n", + "connectors\n", + "connects\n", + "conned\n", + "conner\n", + "conners\n", + "conning\n", + "connivance\n", + "connivances\n", + "connive\n", + "connived\n", + "conniver\n", + "connivers\n", + "connives\n", + "conniving\n", + "connoisseur\n", + "connoisseurs\n", + "connotation\n", + "connotations\n", + "connote\n", + "connoted\n", + "connotes\n", + "connoting\n", + "conns\n", + "connubial\n", + "conodont\n", + "conodonts\n", + "conoid\n", + "conoidal\n", + "conoids\n", + "conquer\n", + "conquered\n", + "conquering\n", + "conqueror\n", + "conquerors\n", + "conquers\n", + "conquest\n", + "conquests\n", + "conquian\n", + "conquians\n", + "cons\n", + "conscience\n", + "consciences\n", + "conscientious\n", + "conscientiously\n", + "conscious\n", + "consciously\n", + "consciousness\n", + "consciousnesses\n", + "conscript\n", + "conscripted\n", + "conscripting\n", + "conscription\n", + "conscriptions\n", + "conscripts\n", + "consecrate\n", + "consecrated\n", + "consecrates\n", + "consecrating\n", + "consecration\n", + "consecrations\n", + "consecutive\n", + "consecutively\n", + "consensus\n", + "consensuses\n", + "consent\n", + "consented\n", + "consenting\n", + "consents\n", + "consequence\n", + "consequences\n", + "consequent\n", + "consequential\n", + "consequently\n", + "consequents\n", + "conservation\n", + "conservationist\n", + "conservationists\n", + "conservations\n", + "conservatism\n", + "conservatisms\n", + "conservative\n", + "conservatives\n", + "conservatories\n", + "conservatory\n", + "conserve\n", + "conserved\n", + "conserves\n", + "conserving\n", + "consider\n", + "considerable\n", + "considerably\n", + "considerate\n", + "considerately\n", + "considerateness\n", + "consideratenesses\n", + "consideration\n", + "considerations\n", + "considered\n", + "considering\n", + "considers\n", + "consign\n", + "consigned\n", + "consignee\n", + "consignees\n", + "consigning\n", + "consignment\n", + "consignments\n", + "consignor\n", + "consignors\n", + "consigns\n", + "consist\n", + "consisted\n", + "consistencies\n", + "consistency\n", + "consistent\n", + "consistently\n", + "consisting\n", + "consists\n", + "consol\n", + "consolation\n", + "console\n", + "consoled\n", + "consoler\n", + "consolers\n", + "consoles\n", + "consolidate\n", + "consolidated\n", + "consolidates\n", + "consolidating\n", + "consolidation\n", + "consolidations\n", + "consoling\n", + "consols\n", + "consomme\n", + "consommes\n", + "consonance\n", + "consonances\n", + "consonant\n", + "consonantal\n", + "consonants\n", + "consort\n", + "consorted\n", + "consorting\n", + "consortium\n", + "consortiums\n", + "consorts\n", + "conspicuous\n", + "conspicuously\n", + "conspiracies\n", + "conspiracy\n", + "conspirator\n", + "conspirators\n", + "conspire\n", + "conspired\n", + "conspires\n", + "conspiring\n", + "constable\n", + "constables\n", + "constabularies\n", + "constabulary\n", + "constancies\n", + "constancy\n", + "constant\n", + "constantly\n", + "constants\n", + "constellation\n", + "constellations\n", + "consternation\n", + "consternations\n", + "constipate\n", + "constipated\n", + "constipates\n", + "constipating\n", + "constipation\n", + "constipations\n", + "constituent\n", + "constituents\n", + "constitute\n", + "constituted\n", + "constitutes\n", + "constituting\n", + "constitution\n", + "constitutional\n", + "constitutionality\n", + "constrain\n", + "constrained\n", + "constraining\n", + "constrains\n", + "constraint\n", + "constraints\n", + "constriction\n", + "constrictions\n", + "constrictive\n", + "construct\n", + "constructed\n", + "constructing\n", + "construction\n", + "constructions\n", + "constructive\n", + "constructs\n", + "construe\n", + "construed\n", + "construes\n", + "construing\n", + "consul\n", + "consular\n", + "consulate\n", + "consulates\n", + "consuls\n", + "consult\n", + "consultant\n", + "consultants\n", + "consultation\n", + "consultations\n", + "consulted\n", + "consulting\n", + "consults\n", + "consumable\n", + "consume\n", + "consumed\n", + "consumer\n", + "consumers\n", + "consumes\n", + "consuming\n", + "consummate\n", + "consummated\n", + "consummates\n", + "consummating\n", + "consummation\n", + "consummations\n", + "consumption\n", + "consumptions\n", + "consumptive\n", + "contact\n", + "contacted\n", + "contacting\n", + "contacts\n", + "contagia\n", + "contagion\n", + "contagions\n", + "contagious\n", + "contain\n", + "contained\n", + "container\n", + "containers\n", + "containing\n", + "containment\n", + "containments\n", + "contains\n", + "contaminate\n", + "contaminated\n", + "contaminates\n", + "contaminating\n", + "contamination\n", + "contaminations\n", + "conte\n", + "contemn\n", + "contemned\n", + "contemning\n", + "contemns\n", + "contemplate\n", + "contemplated\n", + "contemplates\n", + "contemplating\n", + "contemplation\n", + "contemplations\n", + "contemplative\n", + "contemporaneous\n", + "contemporaries\n", + "contemporary\n", + "contempt\n", + "contemptible\n", + "contempts\n", + "contemptuous\n", + "contemptuously\n", + "contend\n", + "contended\n", + "contender\n", + "contenders\n", + "contending\n", + "contends\n", + "content\n", + "contented\n", + "contentedly\n", + "contentedness\n", + "contentednesses\n", + "contenting\n", + "contention\n", + "contentions\n", + "contentious\n", + "contentment\n", + "contentments\n", + "contents\n", + "contes\n", + "contest\n", + "contestable\n", + "contestably\n", + "contestant\n", + "contestants\n", + "contested\n", + "contesting\n", + "contests\n", + "context\n", + "contexts\n", + "contiguities\n", + "contiguity\n", + "contiguous\n", + "continence\n", + "continences\n", + "continent\n", + "continental\n", + "continents\n", + "contingencies\n", + "contingency\n", + "contingent\n", + "contingents\n", + "continua\n", + "continual\n", + "continually\n", + "continuance\n", + "continuances\n", + "continuation\n", + "continuations\n", + "continue\n", + "continued\n", + "continues\n", + "continuing\n", + "continuities\n", + "continuity\n", + "continuo\n", + "continuos\n", + "continuous\n", + "continuousities\n", + "continuousity\n", + "conto\n", + "contort\n", + "contorted\n", + "contorting\n", + "contortion\n", + "contortions\n", + "contorts\n", + "contos\n", + "contour\n", + "contoured\n", + "contouring\n", + "contours\n", + "contra\n", + "contraband\n", + "contrabands\n", + "contraception\n", + "contraceptions\n", + "contraceptive\n", + "contraceptives\n", + "contract\n", + "contracted\n", + "contracting\n", + "contraction\n", + "contractions\n", + "contractor\n", + "contractors\n", + "contracts\n", + "contractual\n", + "contradict\n", + "contradicted\n", + "contradicting\n", + "contradiction\n", + "contradictions\n", + "contradictory\n", + "contradicts\n", + "contrail\n", + "contrails\n", + "contraindicate\n", + "contraindicated\n", + "contraindicates\n", + "contraindicating\n", + "contraption\n", + "contraptions\n", + "contraries\n", + "contrarily\n", + "contrariwise\n", + "contrary\n", + "contrast\n", + "contrasted\n", + "contrasting\n", + "contrasts\n", + "contravene\n", + "contravened\n", + "contravenes\n", + "contravening\n", + "contribute\n", + "contributed\n", + "contributes\n", + "contributing\n", + "contribution\n", + "contributions\n", + "contributor\n", + "contributors\n", + "contributory\n", + "contrite\n", + "contrition\n", + "contritions\n", + "contrivance\n", + "contrivances\n", + "contrive\n", + "contrived\n", + "contriver\n", + "contrivers\n", + "contrives\n", + "contriving\n", + "control\n", + "controllable\n", + "controlled\n", + "controller\n", + "controllers\n", + "controlling\n", + "controls\n", + "controversial\n", + "controversies\n", + "controversy\n", + "controvert\n", + "controverted\n", + "controvertible\n", + "controverting\n", + "controverts\n", + "contumaceous\n", + "contumacies\n", + "contumacy\n", + "contumelies\n", + "contumely\n", + "contuse\n", + "contused\n", + "contuses\n", + "contusing\n", + "contusion\n", + "contusions\n", + "conundrum\n", + "conundrums\n", + "conus\n", + "convalesce\n", + "convalesced\n", + "convalescence\n", + "convalescences\n", + "convalescent\n", + "convalesces\n", + "convalescing\n", + "convect\n", + "convected\n", + "convecting\n", + "convection\n", + "convectional\n", + "convections\n", + "convective\n", + "convects\n", + "convene\n", + "convened\n", + "convener\n", + "conveners\n", + "convenes\n", + "convenience\n", + "conveniences\n", + "convenient\n", + "conveniently\n", + "convening\n", + "convent\n", + "convented\n", + "conventing\n", + "convention\n", + "conventional\n", + "conventionally\n", + "conventions\n", + "convents\n", + "converge\n", + "converged\n", + "convergence\n", + "convergences\n", + "convergencies\n", + "convergency\n", + "convergent\n", + "converges\n", + "converging\n", + "conversant\n", + "conversation\n", + "conversational\n", + "conversations\n", + "converse\n", + "conversed\n", + "conversely\n", + "converses\n", + "conversing\n", + "conversion\n", + "conversions\n", + "convert\n", + "converted\n", + "converter\n", + "converters\n", + "convertible\n", + "convertibles\n", + "converting\n", + "convertor\n", + "convertors\n", + "converts\n", + "convex\n", + "convexes\n", + "convexities\n", + "convexity\n", + "convexly\n", + "convey\n", + "conveyance\n", + "conveyances\n", + "conveyed\n", + "conveyer\n", + "conveyers\n", + "conveying\n", + "conveyor\n", + "conveyors\n", + "conveys\n", + "convict\n", + "convicted\n", + "convicting\n", + "conviction\n", + "convictions\n", + "convicts\n", + "convince\n", + "convinced\n", + "convinces\n", + "convincing\n", + "convivial\n", + "convivialities\n", + "conviviality\n", + "convocation\n", + "convocations\n", + "convoke\n", + "convoked\n", + "convoker\n", + "convokers\n", + "convokes\n", + "convoking\n", + "convoluted\n", + "convolution\n", + "convolutions\n", + "convolve\n", + "convolved\n", + "convolves\n", + "convolving\n", + "convoy\n", + "convoyed\n", + "convoying\n", + "convoys\n", + "convulse\n", + "convulsed\n", + "convulses\n", + "convulsing\n", + "convulsion\n", + "convulsions\n", + "convulsive\n", + "cony\n", + "coo\n", + "cooch\n", + "cooches\n", + "cooed\n", + "cooee\n", + "cooeed\n", + "cooeeing\n", + "cooees\n", + "cooer\n", + "cooers\n", + "cooey\n", + "cooeyed\n", + "cooeying\n", + "cooeys\n", + "coof\n", + "coofs\n", + "cooing\n", + "cooingly\n", + "cook\n", + "cookable\n", + "cookbook\n", + "cookbooks\n", + "cooked\n", + "cooker\n", + "cookeries\n", + "cookers\n", + "cookery\n", + "cookey\n", + "cookeys\n", + "cookie\n", + "cookies\n", + "cooking\n", + "cookings\n", + "cookless\n", + "cookout\n", + "cookouts\n", + "cooks\n", + "cookshop\n", + "cookshops\n", + "cookware\n", + "cookwares\n", + "cooky\n", + "cool\n", + "coolant\n", + "coolants\n", + "cooled\n", + "cooler\n", + "coolers\n", + "coolest\n", + "coolie\n", + "coolies\n", + "cooling\n", + "coolish\n", + "coolly\n", + "coolness\n", + "coolnesses\n", + "cools\n", + "cooly\n", + "coomb\n", + "coombe\n", + "coombes\n", + "coombs\n", + "coon\n", + "cooncan\n", + "cooncans\n", + "coons\n", + "coonskin\n", + "coonskins\n", + "coontie\n", + "coonties\n", + "coop\n", + "cooped\n", + "cooper\n", + "cooperate\n", + "cooperated\n", + "cooperates\n", + "cooperating\n", + "cooperation\n", + "cooperative\n", + "cooperatives\n", + "coopered\n", + "cooperies\n", + "coopering\n", + "coopers\n", + "coopery\n", + "cooping\n", + "coops\n", + "coopt\n", + "coopted\n", + "coopting\n", + "cooption\n", + "cooptions\n", + "coopts\n", + "coordinate\n", + "coordinated\n", + "coordinates\n", + "coordinating\n", + "coordination\n", + "coordinations\n", + "coordinator\n", + "coordinators\n", + "coos\n", + "coot\n", + "cootie\n", + "cooties\n", + "coots\n", + "cop\n", + "copaiba\n", + "copaibas\n", + "copal\n", + "copalm\n", + "copalms\n", + "copals\n", + "coparent\n", + "coparents\n", + "copartner\n", + "copartners\n", + "copartnership\n", + "copartnerships\n", + "copastor\n", + "copastors\n", + "copatron\n", + "copatrons\n", + "cope\n", + "copeck\n", + "copecks\n", + "coped\n", + "copemate\n", + "copemates\n", + "copen\n", + "copens\n", + "copepod\n", + "copepods\n", + "coper\n", + "copers\n", + "copes\n", + "copied\n", + "copier\n", + "copiers\n", + "copies\n", + "copihue\n", + "copihues\n", + "copilot\n", + "copilots\n", + "coping\n", + "copings\n", + "copious\n", + "copiously\n", + "copiousness\n", + "copiousnesses\n", + "coplanar\n", + "coplot\n", + "coplots\n", + "coplotted\n", + "coplotting\n", + "copped\n", + "copper\n", + "copperah\n", + "copperahs\n", + "copperas\n", + "copperases\n", + "coppered\n", + "copperhead\n", + "copperheads\n", + "coppering\n", + "coppers\n", + "coppery\n", + "coppice\n", + "coppiced\n", + "coppices\n", + "copping\n", + "coppra\n", + "coppras\n", + "copra\n", + "coprah\n", + "coprahs\n", + "copras\n", + "copremia\n", + "copremias\n", + "copremic\n", + "copresident\n", + "copresidents\n", + "coprincipal\n", + "coprincipals\n", + "coprisoner\n", + "coprisoners\n", + "coproduce\n", + "coproduced\n", + "coproducer\n", + "coproducers\n", + "coproduces\n", + "coproducing\n", + "coproduction\n", + "coproductions\n", + "copromote\n", + "copromoted\n", + "copromoter\n", + "copromoters\n", + "copromotes\n", + "copromoting\n", + "coproprietor\n", + "coproprietors\n", + "coproprietorship\n", + "coproprietorships\n", + "cops\n", + "copse\n", + "copses\n", + "copter\n", + "copters\n", + "copublish\n", + "copublished\n", + "copublisher\n", + "copublishers\n", + "copublishes\n", + "copublishing\n", + "copula\n", + "copulae\n", + "copular\n", + "copulas\n", + "copulate\n", + "copulated\n", + "copulates\n", + "copulating\n", + "copulation\n", + "copulations\n", + "copulative\n", + "copulatives\n", + "copy\n", + "copybook\n", + "copybooks\n", + "copyboy\n", + "copyboys\n", + "copycat\n", + "copycats\n", + "copycatted\n", + "copycatting\n", + "copydesk\n", + "copydesks\n", + "copyhold\n", + "copyholds\n", + "copying\n", + "copyist\n", + "copyists\n", + "copyright\n", + "copyrighted\n", + "copyrighting\n", + "copyrights\n", + "coquet\n", + "coquetries\n", + "coquetry\n", + "coquets\n", + "coquette\n", + "coquetted\n", + "coquettes\n", + "coquetting\n", + "coquille\n", + "coquilles\n", + "coquina\n", + "coquinas\n", + "coquito\n", + "coquitos\n", + "coracle\n", + "coracles\n", + "coracoid\n", + "coracoids\n", + "coral\n", + "corals\n", + "coranto\n", + "corantoes\n", + "corantos\n", + "corban\n", + "corbans\n", + "corbeil\n", + "corbeils\n", + "corbel\n", + "corbeled\n", + "corbeling\n", + "corbelled\n", + "corbelling\n", + "corbels\n", + "corbie\n", + "corbies\n", + "corbina\n", + "corbinas\n", + "corby\n", + "cord\n", + "cordage\n", + "cordages\n", + "cordate\n", + "corded\n", + "corder\n", + "corders\n", + "cordial\n", + "cordialities\n", + "cordiality\n", + "cordially\n", + "cordials\n", + "cording\n", + "cordite\n", + "cordites\n", + "cordless\n", + "cordlike\n", + "cordoba\n", + "cordobas\n", + "cordon\n", + "cordoned\n", + "cordoning\n", + "cordons\n", + "cordovan\n", + "cordovans\n", + "cords\n", + "corduroy\n", + "corduroyed\n", + "corduroying\n", + "corduroys\n", + "cordwain\n", + "cordwains\n", + "cordwood\n", + "cordwoods\n", + "cordy\n", + "core\n", + "corecipient\n", + "corecipients\n", + "cored\n", + "coredeem\n", + "coredeemed\n", + "coredeeming\n", + "coredeems\n", + "coreign\n", + "coreigns\n", + "corelate\n", + "corelated\n", + "corelates\n", + "corelating\n", + "coreless\n", + "coremia\n", + "coremium\n", + "corer\n", + "corers\n", + "cores\n", + "coresident\n", + "coresidents\n", + "corf\n", + "corgi\n", + "corgis\n", + "coria\n", + "coring\n", + "corium\n", + "cork\n", + "corkage\n", + "corkages\n", + "corked\n", + "corker\n", + "corkers\n", + "corkier\n", + "corkiest\n", + "corking\n", + "corklike\n", + "corks\n", + "corkscrew\n", + "corkscrews\n", + "corkwood\n", + "corkwoods\n", + "corky\n", + "corm\n", + "cormel\n", + "cormels\n", + "cormlike\n", + "cormoid\n", + "cormorant\n", + "cormorants\n", + "cormous\n", + "corms\n", + "corn\n", + "cornball\n", + "cornballs\n", + "corncake\n", + "corncakes\n", + "corncob\n", + "corncobs\n", + "corncrib\n", + "corncribs\n", + "cornea\n", + "corneal\n", + "corneas\n", + "corned\n", + "cornel\n", + "cornels\n", + "corneous\n", + "corner\n", + "cornered\n", + "cornering\n", + "corners\n", + "cornerstone\n", + "cornerstones\n", + "cornet\n", + "cornetcies\n", + "cornetcy\n", + "cornets\n", + "cornfed\n", + "cornhusk\n", + "cornhusks\n", + "cornice\n", + "corniced\n", + "cornices\n", + "corniche\n", + "corniches\n", + "cornicing\n", + "cornicle\n", + "cornicles\n", + "cornier\n", + "corniest\n", + "cornily\n", + "corning\n", + "cornmeal\n", + "cornmeals\n", + "corns\n", + "cornstalk\n", + "cornstalks\n", + "cornstarch\n", + "cornstarches\n", + "cornu\n", + "cornua\n", + "cornual\n", + "cornucopia\n", + "cornucopias\n", + "cornus\n", + "cornuses\n", + "cornute\n", + "cornuted\n", + "cornuto\n", + "cornutos\n", + "corny\n", + "corodies\n", + "corody\n", + "corolla\n", + "corollaries\n", + "corollary\n", + "corollas\n", + "corona\n", + "coronach\n", + "coronachs\n", + "coronae\n", + "coronal\n", + "coronals\n", + "coronaries\n", + "coronary\n", + "coronas\n", + "coronation\n", + "coronations\n", + "coronel\n", + "coronels\n", + "coroner\n", + "coroners\n", + "coronet\n", + "coronets\n", + "corotate\n", + "corotated\n", + "corotates\n", + "corotating\n", + "corpora\n", + "corporal\n", + "corporals\n", + "corporate\n", + "corporation\n", + "corporations\n", + "corporeal\n", + "corporeally\n", + "corps\n", + "corpse\n", + "corpses\n", + "corpsman\n", + "corpsmen\n", + "corpulence\n", + "corpulences\n", + "corpulencies\n", + "corpulency\n", + "corpulent\n", + "corpus\n", + "corpuscle\n", + "corpuscles\n", + "corrade\n", + "corraded\n", + "corrades\n", + "corrading\n", + "corral\n", + "corralled\n", + "corralling\n", + "corrals\n", + "correct\n", + "corrected\n", + "correcter\n", + "correctest\n", + "correcting\n", + "correction\n", + "corrections\n", + "corrective\n", + "correctly\n", + "correctness\n", + "correctnesses\n", + "corrects\n", + "correlate\n", + "correlated\n", + "correlates\n", + "correlating\n", + "correlation\n", + "correlations\n", + "correlative\n", + "correlatives\n", + "correspond\n", + "corresponded\n", + "correspondence\n", + "correspondences\n", + "correspondent\n", + "correspondents\n", + "corresponding\n", + "corresponds\n", + "corrida\n", + "corridas\n", + "corridor\n", + "corridors\n", + "corrie\n", + "corries\n", + "corrival\n", + "corrivals\n", + "corroborate\n", + "corroborated\n", + "corroborates\n", + "corroborating\n", + "corroboration\n", + "corroborations\n", + "corrode\n", + "corroded\n", + "corrodes\n", + "corrodies\n", + "corroding\n", + "corrody\n", + "corrosion\n", + "corrosions\n", + "corrosive\n", + "corrugate\n", + "corrugated\n", + "corrugates\n", + "corrugating\n", + "corrugation\n", + "corrugations\n", + "corrupt\n", + "corrupted\n", + "corrupter\n", + "corruptest\n", + "corruptible\n", + "corrupting\n", + "corruption\n", + "corruptions\n", + "corrupts\n", + "corsac\n", + "corsacs\n", + "corsage\n", + "corsages\n", + "corsair\n", + "corsairs\n", + "corse\n", + "corselet\n", + "corselets\n", + "corses\n", + "corset\n", + "corseted\n", + "corseting\n", + "corsets\n", + "corslet\n", + "corslets\n", + "cortege\n", + "corteges\n", + "cortex\n", + "cortexes\n", + "cortical\n", + "cortices\n", + "cortin\n", + "cortins\n", + "cortisol\n", + "cortisols\n", + "cortisone\n", + "cortisones\n", + "corundum\n", + "corundums\n", + "corvee\n", + "corvees\n", + "corves\n", + "corvet\n", + "corvets\n", + "corvette\n", + "corvettes\n", + "corvina\n", + "corvinas\n", + "corvine\n", + "corymb\n", + "corymbed\n", + "corymbs\n", + "coryphee\n", + "coryphees\n", + "coryza\n", + "coryzal\n", + "coryzas\n", + "cos\n", + "cosec\n", + "cosecant\n", + "cosecants\n", + "cosecs\n", + "coses\n", + "coset\n", + "cosets\n", + "cosey\n", + "coseys\n", + "cosh\n", + "coshed\n", + "cosher\n", + "coshered\n", + "coshering\n", + "coshers\n", + "coshes\n", + "coshing\n", + "cosie\n", + "cosier\n", + "cosies\n", + "cosiest\n", + "cosign\n", + "cosignatories\n", + "cosignatory\n", + "cosigned\n", + "cosigner\n", + "cosigners\n", + "cosigning\n", + "cosigns\n", + "cosily\n", + "cosine\n", + "cosines\n", + "cosiness\n", + "cosinesses\n", + "cosmetic\n", + "cosmetics\n", + "cosmic\n", + "cosmical\n", + "cosmism\n", + "cosmisms\n", + "cosmist\n", + "cosmists\n", + "cosmonaut\n", + "cosmonauts\n", + "cosmopolitan\n", + "cosmopolitans\n", + "cosmos\n", + "cosmoses\n", + "cosponsor\n", + "cosponsors\n", + "coss\n", + "cossack\n", + "cossacks\n", + "cosset\n", + "cosseted\n", + "cosseting\n", + "cossets\n", + "cost\n", + "costa\n", + "costae\n", + "costal\n", + "costar\n", + "costard\n", + "costards\n", + "costarred\n", + "costarring\n", + "costars\n", + "costate\n", + "costed\n", + "coster\n", + "costers\n", + "costing\n", + "costive\n", + "costless\n", + "costlier\n", + "costliest\n", + "costliness\n", + "costlinesses\n", + "costly\n", + "costmaries\n", + "costmary\n", + "costrel\n", + "costrels\n", + "costs\n", + "costume\n", + "costumed\n", + "costumer\n", + "costumers\n", + "costumes\n", + "costumey\n", + "costuming\n", + "cosy\n", + "cot\n", + "cotan\n", + "cotans\n", + "cote\n", + "coteau\n", + "coteaux\n", + "coted\n", + "cotenant\n", + "cotenants\n", + "coterie\n", + "coteries\n", + "cotes\n", + "cothurn\n", + "cothurni\n", + "cothurns\n", + "cotidal\n", + "cotillion\n", + "cotillions\n", + "cotillon\n", + "cotillons\n", + "coting\n", + "cotquean\n", + "cotqueans\n", + "cots\n", + "cotta\n", + "cottae\n", + "cottage\n", + "cottager\n", + "cottagers\n", + "cottages\n", + "cottagey\n", + "cottar\n", + "cottars\n", + "cottas\n", + "cotter\n", + "cotters\n", + "cottier\n", + "cottiers\n", + "cotton\n", + "cottoned\n", + "cottoning\n", + "cottonmouth\n", + "cottonmouths\n", + "cottons\n", + "cottonseed\n", + "cottonseeds\n", + "cottony\n", + "cotyloid\n", + "cotype\n", + "cotypes\n", + "couch\n", + "couchant\n", + "couched\n", + "coucher\n", + "couchers\n", + "couches\n", + "couching\n", + "couchings\n", + "coude\n", + "cougar\n", + "cougars\n", + "cough\n", + "coughed\n", + "cougher\n", + "coughers\n", + "coughing\n", + "coughs\n", + "could\n", + "couldest\n", + "couldst\n", + "coulee\n", + "coulees\n", + "coulisse\n", + "coulisses\n", + "couloir\n", + "couloirs\n", + "coulomb\n", + "coulombs\n", + "coulter\n", + "coulters\n", + "coumaric\n", + "coumarin\n", + "coumarins\n", + "coumarou\n", + "coumarous\n", + "council\n", + "councillor\n", + "councillors\n", + "councilman\n", + "councilmen\n", + "councilor\n", + "councilors\n", + "councils\n", + "councilwoman\n", + "counsel\n", + "counseled\n", + "counseling\n", + "counselled\n", + "counselling\n", + "counsellor\n", + "counsellors\n", + "counselor\n", + "counselors\n", + "counsels\n", + "count\n", + "countable\n", + "counted\n", + "countenance\n", + "countenanced\n", + "countenances\n", + "countenancing\n", + "counter\n", + "counteraccusation\n", + "counteraccusations\n", + "counteract\n", + "counteracted\n", + "counteracting\n", + "counteracts\n", + "counteraggression\n", + "counteraggressions\n", + "counterargue\n", + "counterargued\n", + "counterargues\n", + "counterarguing\n", + "counterassault\n", + "counterassaults\n", + "counterattack\n", + "counterattacked\n", + "counterattacking\n", + "counterattacks\n", + "counterbalance\n", + "counterbalanced\n", + "counterbalances\n", + "counterbalancing\n", + "counterbid\n", + "counterbids\n", + "counterblockade\n", + "counterblockades\n", + "counterblow\n", + "counterblows\n", + "countercampaign\n", + "countercampaigns\n", + "counterchallenge\n", + "counterchallenges\n", + "countercharge\n", + "countercharges\n", + "counterclaim\n", + "counterclaims\n", + "counterclockwise\n", + "countercomplaint\n", + "countercomplaints\n", + "countercoup\n", + "countercoups\n", + "countercriticism\n", + "countercriticisms\n", + "counterdemand\n", + "counterdemands\n", + "counterdemonstration\n", + "counterdemonstrations\n", + "counterdemonstrator\n", + "counterdemonstrators\n", + "countered\n", + "countereffect\n", + "countereffects\n", + "countereffort\n", + "counterefforts\n", + "counterembargo\n", + "counterembargos\n", + "counterevidence\n", + "counterevidences\n", + "counterfeit\n", + "counterfeited\n", + "counterfeiter\n", + "counterfeiters\n", + "counterfeiting\n", + "counterfeits\n", + "counterguerrila\n", + "counterinflationary\n", + "counterinfluence\n", + "counterinfluences\n", + "countering\n", + "counterintrigue\n", + "counterintrigues\n", + "countermand\n", + "countermanded\n", + "countermanding\n", + "countermands\n", + "countermeasure\n", + "countermeasures\n", + "countermove\n", + "countermovement\n", + "countermovements\n", + "countermoves\n", + "counteroffer\n", + "counteroffers\n", + "counterpart\n", + "counterparts\n", + "counterpetition\n", + "counterpetitions\n", + "counterploy\n", + "counterploys\n", + "counterpoint\n", + "counterpoints\n", + "counterpower\n", + "counterpowers\n", + "counterpressure\n", + "counterpressures\n", + "counterpropagation\n", + "counterpropagations\n", + "counterproposal\n", + "counterproposals\n", + "counterprotest\n", + "counterprotests\n", + "counterquestion\n", + "counterquestions\n", + "counterraid\n", + "counterraids\n", + "counterrallies\n", + "counterrally\n", + "counterrebuttal\n", + "counterrebuttals\n", + "counterreform\n", + "counterreforms\n", + "counterresponse\n", + "counterresponses\n", + "counterretaliation\n", + "counterretaliations\n", + "counterrevolution\n", + "counterrevolutions\n", + "counters\n", + "countersign\n", + "countersigns\n", + "counterstrategies\n", + "counterstrategy\n", + "counterstyle\n", + "counterstyles\n", + "countersue\n", + "countersued\n", + "countersues\n", + "countersuggestion\n", + "countersuggestions\n", + "countersuing\n", + "countersuit\n", + "countersuits\n", + "countertendencies\n", + "countertendency\n", + "counterterror\n", + "counterterrorism\n", + "counterterrorisms\n", + "counterterrorist\n", + "counterterrorists\n", + "counterterrors\n", + "counterthreat\n", + "counterthreats\n", + "counterthrust\n", + "counterthrusts\n", + "countertrend\n", + "countertrends\n", + "countess\n", + "countesses\n", + "countian\n", + "countians\n", + "counties\n", + "counting\n", + "countless\n", + "countries\n", + "country\n", + "countryman\n", + "countrymen\n", + "countryside\n", + "countrysides\n", + "counts\n", + "county\n", + "coup\n", + "coupe\n", + "couped\n", + "coupes\n", + "couping\n", + "couple\n", + "coupled\n", + "coupler\n", + "couplers\n", + "couples\n", + "couplet\n", + "couplets\n", + "coupling\n", + "couplings\n", + "coupon\n", + "coupons\n", + "coups\n", + "courage\n", + "courageous\n", + "courages\n", + "courant\n", + "courante\n", + "courantes\n", + "couranto\n", + "courantoes\n", + "courantos\n", + "courants\n", + "courier\n", + "couriers\n", + "courlan\n", + "courlans\n", + "course\n", + "coursed\n", + "courser\n", + "coursers\n", + "courses\n", + "coursing\n", + "coursings\n", + "court\n", + "courted\n", + "courteous\n", + "courteously\n", + "courtesied\n", + "courtesies\n", + "courtesy\n", + "courtesying\n", + "courthouse\n", + "courthouses\n", + "courtier\n", + "courtiers\n", + "courting\n", + "courtlier\n", + "courtliest\n", + "courtly\n", + "courtroom\n", + "courtrooms\n", + "courts\n", + "courtship\n", + "courtships\n", + "courtyard\n", + "courtyards\n", + "couscous\n", + "couscouses\n", + "cousin\n", + "cousinly\n", + "cousinries\n", + "cousinry\n", + "cousins\n", + "couteau\n", + "couteaux\n", + "couter\n", + "couters\n", + "couth\n", + "couther\n", + "couthest\n", + "couthie\n", + "couthier\n", + "couthiest\n", + "couths\n", + "couture\n", + "coutures\n", + "couvade\n", + "couvades\n", + "covalent\n", + "cove\n", + "coved\n", + "coven\n", + "covenant\n", + "covenanted\n", + "covenanting\n", + "covenants\n", + "covens\n", + "cover\n", + "coverage\n", + "coverages\n", + "coverall\n", + "coveralls\n", + "covered\n", + "coverer\n", + "coverers\n", + "covering\n", + "coverings\n", + "coverlet\n", + "coverlets\n", + "coverlid\n", + "coverlids\n", + "covers\n", + "covert\n", + "covertly\n", + "coverts\n", + "coves\n", + "covet\n", + "coveted\n", + "coveter\n", + "coveters\n", + "coveting\n", + "covetous\n", + "covets\n", + "covey\n", + "coveys\n", + "coving\n", + "covings\n", + "cow\n", + "cowage\n", + "cowages\n", + "coward\n", + "cowardice\n", + "cowardices\n", + "cowardly\n", + "cowards\n", + "cowbane\n", + "cowbanes\n", + "cowbell\n", + "cowbells\n", + "cowberries\n", + "cowberry\n", + "cowbind\n", + "cowbinds\n", + "cowbird\n", + "cowbirds\n", + "cowboy\n", + "cowboys\n", + "cowed\n", + "cowedly\n", + "cower\n", + "cowered\n", + "cowering\n", + "cowers\n", + "cowfish\n", + "cowfishes\n", + "cowgirl\n", + "cowgirls\n", + "cowhage\n", + "cowhages\n", + "cowhand\n", + "cowhands\n", + "cowherb\n", + "cowherbs\n", + "cowherd\n", + "cowherds\n", + "cowhide\n", + "cowhided\n", + "cowhides\n", + "cowhiding\n", + "cowier\n", + "cowiest\n", + "cowing\n", + "cowinner\n", + "cowinners\n", + "cowl\n", + "cowled\n", + "cowlick\n", + "cowlicks\n", + "cowling\n", + "cowlings\n", + "cowls\n", + "cowman\n", + "cowmen\n", + "coworker\n", + "coworkers\n", + "cowpat\n", + "cowpats\n", + "cowpea\n", + "cowpeas\n", + "cowpoke\n", + "cowpokes\n", + "cowpox\n", + "cowpoxes\n", + "cowrie\n", + "cowries\n", + "cowry\n", + "cows\n", + "cowshed\n", + "cowsheds\n", + "cowskin\n", + "cowskins\n", + "cowslip\n", + "cowslips\n", + "cowy\n", + "cox\n", + "coxa\n", + "coxae\n", + "coxal\n", + "coxalgia\n", + "coxalgias\n", + "coxalgic\n", + "coxalgies\n", + "coxalgy\n", + "coxcomb\n", + "coxcombs\n", + "coxed\n", + "coxes\n", + "coxing\n", + "coxswain\n", + "coxswained\n", + "coxswaining\n", + "coxswains\n", + "coy\n", + "coyed\n", + "coyer\n", + "coyest\n", + "coying\n", + "coyish\n", + "coyly\n", + "coyness\n", + "coynesses\n", + "coyote\n", + "coyotes\n", + "coypou\n", + "coypous\n", + "coypu\n", + "coypus\n", + "coys\n", + "coz\n", + "cozen\n", + "cozenage\n", + "cozenages\n", + "cozened\n", + "cozener\n", + "cozeners\n", + "cozening\n", + "cozens\n", + "cozes\n", + "cozey\n", + "cozeys\n", + "cozie\n", + "cozier\n", + "cozies\n", + "coziest\n", + "cozily\n", + "coziness\n", + "cozinesses\n", + "cozy\n", + "cozzes\n", + "craal\n", + "craaled\n", + "craaling\n", + "craals\n", + "crab\n", + "crabbed\n", + "crabber\n", + "crabbers\n", + "crabbier\n", + "crabbiest\n", + "crabbing\n", + "crabby\n", + "crabs\n", + "crabwise\n", + "crack\n", + "crackdown\n", + "crackdowns\n", + "cracked\n", + "cracker\n", + "crackers\n", + "cracking\n", + "crackings\n", + "crackle\n", + "crackled\n", + "crackles\n", + "cracklier\n", + "crackliest\n", + "crackling\n", + "crackly\n", + "cracknel\n", + "cracknels\n", + "crackpot\n", + "crackpots\n", + "cracks\n", + "crackup\n", + "crackups\n", + "cracky\n", + "cradle\n", + "cradled\n", + "cradler\n", + "cradlers\n", + "cradles\n", + "cradling\n", + "craft\n", + "crafted\n", + "craftier\n", + "craftiest\n", + "craftily\n", + "craftiness\n", + "craftinesses\n", + "crafting\n", + "crafts\n", + "craftsman\n", + "craftsmanship\n", + "craftsmanships\n", + "craftsmen\n", + "craftsmenship\n", + "craftsmenships\n", + "crafty\n", + "crag\n", + "cragged\n", + "craggier\n", + "craggiest\n", + "craggily\n", + "craggy\n", + "crags\n", + "cragsman\n", + "cragsmen\n", + "crake\n", + "crakes\n", + "cram\n", + "crambe\n", + "crambes\n", + "crambo\n", + "cramboes\n", + "crambos\n", + "crammed\n", + "crammer\n", + "crammers\n", + "cramming\n", + "cramoisies\n", + "cramoisy\n", + "cramp\n", + "cramped\n", + "cramping\n", + "crampit\n", + "crampits\n", + "crampon\n", + "crampons\n", + "crampoon\n", + "crampoons\n", + "cramps\n", + "crams\n", + "cranberries\n", + "cranberry\n", + "cranch\n", + "cranched\n", + "cranches\n", + "cranching\n", + "crane\n", + "craned\n", + "cranes\n", + "crania\n", + "cranial\n", + "craniate\n", + "craniates\n", + "craning\n", + "cranium\n", + "craniums\n", + "crank\n", + "cranked\n", + "cranker\n", + "crankest\n", + "crankier\n", + "crankiest\n", + "crankily\n", + "cranking\n", + "crankle\n", + "crankled\n", + "crankles\n", + "crankling\n", + "crankly\n", + "crankous\n", + "crankpin\n", + "crankpins\n", + "cranks\n", + "cranky\n", + "crannied\n", + "crannies\n", + "crannog\n", + "crannoge\n", + "crannoges\n", + "crannogs\n", + "cranny\n", + "crap\n", + "crape\n", + "craped\n", + "crapes\n", + "craping\n", + "crapped\n", + "crapper\n", + "crappers\n", + "crappie\n", + "crappier\n", + "crappies\n", + "crappiest\n", + "crapping\n", + "crappy\n", + "craps\n", + "crapshooter\n", + "crapshooters\n", + "crases\n", + "crash\n", + "crashed\n", + "crasher\n", + "crashers\n", + "crashes\n", + "crashing\n", + "crasis\n", + "crass\n", + "crasser\n", + "crassest\n", + "crassly\n", + "cratch\n", + "cratches\n", + "crate\n", + "crated\n", + "crater\n", + "cratered\n", + "cratering\n", + "craters\n", + "crates\n", + "crating\n", + "craton\n", + "cratonic\n", + "cratons\n", + "craunch\n", + "craunched\n", + "craunches\n", + "craunching\n", + "cravat\n", + "cravats\n", + "crave\n", + "craved\n", + "craven\n", + "cravened\n", + "cravening\n", + "cravenly\n", + "cravens\n", + "craver\n", + "cravers\n", + "craves\n", + "craving\n", + "cravings\n", + "craw\n", + "crawdad\n", + "crawdads\n", + "crawfish\n", + "crawfished\n", + "crawfishes\n", + "crawfishing\n", + "crawl\n", + "crawled\n", + "crawler\n", + "crawlers\n", + "crawlier\n", + "crawliest\n", + "crawling\n", + "crawls\n", + "crawlway\n", + "crawlways\n", + "crawly\n", + "craws\n", + "crayfish\n", + "crayfishes\n", + "crayon\n", + "crayoned\n", + "crayoning\n", + "crayons\n", + "craze\n", + "crazed\n", + "crazes\n", + "crazier\n", + "craziest\n", + "crazily\n", + "craziness\n", + "crazinesses\n", + "crazing\n", + "crazy\n", + "creak\n", + "creaked\n", + "creakier\n", + "creakiest\n", + "creakily\n", + "creaking\n", + "creaks\n", + "creaky\n", + "cream\n", + "creamed\n", + "creamer\n", + "creameries\n", + "creamers\n", + "creamery\n", + "creamier\n", + "creamiest\n", + "creamily\n", + "creaming\n", + "creams\n", + "creamy\n", + "crease\n", + "creased\n", + "creaser\n", + "creasers\n", + "creases\n", + "creasier\n", + "creasiest\n", + "creasing\n", + "creasy\n", + "create\n", + "created\n", + "creates\n", + "creatin\n", + "creatine\n", + "creatines\n", + "creating\n", + "creatinine\n", + "creatins\n", + "creation\n", + "creations\n", + "creative\n", + "creativities\n", + "creativity\n", + "creator\n", + "creators\n", + "creature\n", + "creatures\n", + "creche\n", + "creches\n", + "credal\n", + "credence\n", + "credences\n", + "credenda\n", + "credent\n", + "credentials\n", + "credenza\n", + "credenzas\n", + "credibilities\n", + "credibility\n", + "credible\n", + "credibly\n", + "credit\n", + "creditable\n", + "creditably\n", + "credited\n", + "crediting\n", + "creditor\n", + "creditors\n", + "credits\n", + "credo\n", + "credos\n", + "credulities\n", + "credulity\n", + "credulous\n", + "creed\n", + "creedal\n", + "creeds\n", + "creek\n", + "creeks\n", + "creel\n", + "creels\n", + "creep\n", + "creepage\n", + "creepages\n", + "creeper\n", + "creepers\n", + "creepie\n", + "creepier\n", + "creepies\n", + "creepiest\n", + "creepily\n", + "creeping\n", + "creeps\n", + "creepy\n", + "creese\n", + "creeses\n", + "creesh\n", + "creeshed\n", + "creeshes\n", + "creeshing\n", + "cremains\n", + "cremate\n", + "cremated\n", + "cremates\n", + "cremating\n", + "cremation\n", + "cremations\n", + "cremator\n", + "cremators\n", + "crematory\n", + "creme\n", + "cremes\n", + "crenate\n", + "crenated\n", + "crenel\n", + "creneled\n", + "creneling\n", + "crenelle\n", + "crenelled\n", + "crenelles\n", + "crenelling\n", + "crenels\n", + "creodont\n", + "creodonts\n", + "creole\n", + "creoles\n", + "creosol\n", + "creosols\n", + "creosote\n", + "creosoted\n", + "creosotes\n", + "creosoting\n", + "crepe\n", + "creped\n", + "crepes\n", + "crepey\n", + "crepier\n", + "crepiest\n", + "creping\n", + "crept\n", + "crepy\n", + "crescendo\n", + "crescendos\n", + "crescent\n", + "crescents\n", + "cresive\n", + "cresol\n", + "cresols\n", + "cress\n", + "cresses\n", + "cresset\n", + "cressets\n", + "crest\n", + "crestal\n", + "crested\n", + "crestfallen\n", + "crestfallens\n", + "cresting\n", + "crestings\n", + "crests\n", + "cresyl\n", + "cresylic\n", + "cresyls\n", + "cretic\n", + "cretics\n", + "cretin\n", + "cretins\n", + "cretonne\n", + "cretonnes\n", + "crevalle\n", + "crevalles\n", + "crevasse\n", + "crevassed\n", + "crevasses\n", + "crevassing\n", + "crevice\n", + "creviced\n", + "crevices\n", + "crew\n", + "crewed\n", + "crewel\n", + "crewels\n", + "crewing\n", + "crewless\n", + "crewman\n", + "crewmen\n", + "crews\n", + "crib\n", + "cribbage\n", + "cribbages\n", + "cribbed\n", + "cribber\n", + "cribbers\n", + "cribbing\n", + "cribbings\n", + "cribbled\n", + "cribrous\n", + "cribs\n", + "cribwork\n", + "cribworks\n", + "cricetid\n", + "cricetids\n", + "crick\n", + "cricked\n", + "cricket\n", + "cricketed\n", + "cricketing\n", + "crickets\n", + "cricking\n", + "cricks\n", + "cricoid\n", + "cricoids\n", + "cried\n", + "crier\n", + "criers\n", + "cries\n", + "crime\n", + "crimes\n", + "criminal\n", + "criminals\n", + "crimmer\n", + "crimmers\n", + "crimp\n", + "crimped\n", + "crimper\n", + "crimpers\n", + "crimpier\n", + "crimpiest\n", + "crimping\n", + "crimple\n", + "crimpled\n", + "crimples\n", + "crimpling\n", + "crimps\n", + "crimpy\n", + "crimson\n", + "crimsoned\n", + "crimsoning\n", + "crimsons\n", + "cringe\n", + "cringed\n", + "cringer\n", + "cringers\n", + "cringes\n", + "cringing\n", + "cringle\n", + "cringles\n", + "crinite\n", + "crinites\n", + "crinkle\n", + "crinkled\n", + "crinkles\n", + "crinklier\n", + "crinkliest\n", + "crinkling\n", + "crinkly\n", + "crinoid\n", + "crinoids\n", + "crinoline\n", + "crinolines\n", + "crinum\n", + "crinums\n", + "criollo\n", + "criollos\n", + "cripple\n", + "crippled\n", + "crippler\n", + "cripplers\n", + "cripples\n", + "crippling\n", + "cris\n", + "crises\n", + "crisic\n", + "crisis\n", + "crisp\n", + "crispate\n", + "crisped\n", + "crispen\n", + "crispened\n", + "crispening\n", + "crispens\n", + "crisper\n", + "crispers\n", + "crispest\n", + "crispier\n", + "crispiest\n", + "crispily\n", + "crisping\n", + "crisply\n", + "crispness\n", + "crispnesses\n", + "crisps\n", + "crispy\n", + "crissa\n", + "crissal\n", + "crisscross\n", + "crisscrossed\n", + "crisscrosses\n", + "crisscrossing\n", + "crissum\n", + "crista\n", + "cristae\n", + "cristate\n", + "criteria\n", + "criterion\n", + "critic\n", + "critical\n", + "criticism\n", + "criticisms\n", + "criticize\n", + "criticized\n", + "criticizes\n", + "criticizing\n", + "critics\n", + "critique\n", + "critiqued\n", + "critiques\n", + "critiquing\n", + "critter\n", + "critters\n", + "crittur\n", + "critturs\n", + "croak\n", + "croaked\n", + "croaker\n", + "croakers\n", + "croakier\n", + "croakiest\n", + "croakily\n", + "croaking\n", + "croaks\n", + "croaky\n", + "crocein\n", + "croceine\n", + "croceines\n", + "croceins\n", + "crochet\n", + "crocheted\n", + "crocheting\n", + "crochets\n", + "croci\n", + "crocine\n", + "crock\n", + "crocked\n", + "crockeries\n", + "crockery\n", + "crocket\n", + "crockets\n", + "crocking\n", + "crocks\n", + "crocodile\n", + "crocodiles\n", + "crocoite\n", + "crocoites\n", + "crocus\n", + "crocuses\n", + "croft\n", + "crofter\n", + "crofters\n", + "crofts\n", + "crojik\n", + "crojiks\n", + "cromlech\n", + "cromlechs\n", + "crone\n", + "crones\n", + "cronies\n", + "crony\n", + "cronyism\n", + "cronyisms\n", + "crook\n", + "crooked\n", + "crookeder\n", + "crookedest\n", + "crookedness\n", + "crookednesses\n", + "crooking\n", + "crooks\n", + "croon\n", + "crooned\n", + "crooner\n", + "crooners\n", + "crooning\n", + "croons\n", + "crop\n", + "cropland\n", + "croplands\n", + "cropless\n", + "cropped\n", + "cropper\n", + "croppers\n", + "cropping\n", + "crops\n", + "croquet\n", + "croqueted\n", + "croqueting\n", + "croquets\n", + "croquette\n", + "croquettes\n", + "croquis\n", + "crore\n", + "crores\n", + "crosier\n", + "crosiers\n", + "cross\n", + "crossarm\n", + "crossarms\n", + "crossbar\n", + "crossbarred\n", + "crossbarring\n", + "crossbars\n", + "crossbow\n", + "crossbows\n", + "crossbreed\n", + "crossbreeded\n", + "crossbreeding\n", + "crossbreeds\n", + "crosscut\n", + "crosscuts\n", + "crosscutting\n", + "crosse\n", + "crossed\n", + "crosser\n", + "crossers\n", + "crosses\n", + "crossest\n", + "crossing\n", + "crossings\n", + "crosslet\n", + "crosslets\n", + "crossly\n", + "crossover\n", + "crossovers\n", + "crossroads\n", + "crosstie\n", + "crossties\n", + "crosswalk\n", + "crosswalks\n", + "crossway\n", + "crossways\n", + "crosswise\n", + "crotch\n", + "crotched\n", + "crotches\n", + "crotchet\n", + "crotchets\n", + "crotchety\n", + "croton\n", + "crotons\n", + "crouch\n", + "crouched\n", + "crouches\n", + "crouching\n", + "croup\n", + "croupe\n", + "croupes\n", + "croupier\n", + "croupiers\n", + "croupiest\n", + "croupily\n", + "croupous\n", + "croups\n", + "croupy\n", + "crouse\n", + "crousely\n", + "crouton\n", + "croutons\n", + "crow\n", + "crowbar\n", + "crowbars\n", + "crowd\n", + "crowded\n", + "crowder\n", + "crowders\n", + "crowdie\n", + "crowdies\n", + "crowding\n", + "crowds\n", + "crowdy\n", + "crowed\n", + "crower\n", + "crowers\n", + "crowfeet\n", + "crowfoot\n", + "crowfoots\n", + "crowing\n", + "crown\n", + "crowned\n", + "crowner\n", + "crowners\n", + "crownet\n", + "crownets\n", + "crowning\n", + "crowns\n", + "crows\n", + "crowstep\n", + "crowsteps\n", + "croze\n", + "crozer\n", + "crozers\n", + "crozes\n", + "crozier\n", + "croziers\n", + "cruces\n", + "crucial\n", + "crucian\n", + "crucians\n", + "cruciate\n", + "crucible\n", + "crucibles\n", + "crucifer\n", + "crucifers\n", + "crucified\n", + "crucifies\n", + "crucifix\n", + "crucifixes\n", + "crucifixion\n", + "crucify\n", + "crucifying\n", + "crud\n", + "crudded\n", + "crudding\n", + "cruddy\n", + "crude\n", + "crudely\n", + "cruder\n", + "crudes\n", + "crudest\n", + "crudities\n", + "crudity\n", + "cruds\n", + "cruel\n", + "crueler\n", + "cruelest\n", + "crueller\n", + "cruellest\n", + "cruelly\n", + "cruelties\n", + "cruelty\n", + "cruet\n", + "cruets\n", + "cruise\n", + "cruised\n", + "cruiser\n", + "cruisers\n", + "cruises\n", + "cruising\n", + "cruller\n", + "crullers\n", + "crumb\n", + "crumbed\n", + "crumber\n", + "crumbers\n", + "crumbier\n", + "crumbiest\n", + "crumbing\n", + "crumble\n", + "crumbled\n", + "crumbles\n", + "crumblier\n", + "crumbliest\n", + "crumbling\n", + "crumbly\n", + "crumbs\n", + "crumby\n", + "crummie\n", + "crummier\n", + "crummies\n", + "crummiest\n", + "crummy\n", + "crump\n", + "crumped\n", + "crumpet\n", + "crumpets\n", + "crumping\n", + "crumple\n", + "crumpled\n", + "crumples\n", + "crumpling\n", + "crumply\n", + "crumps\n", + "crunch\n", + "crunched\n", + "cruncher\n", + "crunchers\n", + "crunches\n", + "crunchier\n", + "crunchiest\n", + "crunching\n", + "crunchy\n", + "crunodal\n", + "crunode\n", + "crunodes\n", + "cruor\n", + "cruors\n", + "crupper\n", + "cruppers\n", + "crura\n", + "crural\n", + "crus\n", + "crusade\n", + "crusaded\n", + "crusader\n", + "crusaders\n", + "crusades\n", + "crusading\n", + "crusado\n", + "crusadoes\n", + "crusados\n", + "cruse\n", + "cruses\n", + "cruset\n", + "crusets\n", + "crush\n", + "crushed\n", + "crusher\n", + "crushers\n", + "crushes\n", + "crushing\n", + "crusily\n", + "crust\n", + "crustacean\n", + "crustaceans\n", + "crustal\n", + "crusted\n", + "crustier\n", + "crustiest\n", + "crustily\n", + "crusting\n", + "crustose\n", + "crusts\n", + "crusty\n", + "crutch\n", + "crutched\n", + "crutches\n", + "crutching\n", + "crux\n", + "cruxes\n", + "cruzado\n", + "cruzadoes\n", + "cruzados\n", + "cruzeiro\n", + "cruzeiros\n", + "crwth\n", + "crwths\n", + "cry\n", + "crybabies\n", + "crybaby\n", + "crying\n", + "cryingly\n", + "cryogen\n", + "cryogenies\n", + "cryogens\n", + "cryogeny\n", + "cryolite\n", + "cryolites\n", + "cryonic\n", + "cryonics\n", + "cryostat\n", + "cryostats\n", + "cryotron\n", + "cryotrons\n", + "crypt\n", + "cryptal\n", + "cryptic\n", + "crypto\n", + "cryptographic\n", + "cryptographies\n", + "cryptography\n", + "cryptos\n", + "crypts\n", + "crystal\n", + "crystallization\n", + "crystallizations\n", + "crystallize\n", + "crystallized\n", + "crystallizes\n", + "crystallizing\n", + "crystals\n", + "ctenidia\n", + "ctenoid\n", + "cub\n", + "cubage\n", + "cubages\n", + "cubature\n", + "cubatures\n", + "cubbies\n", + "cubbish\n", + "cubby\n", + "cubbyhole\n", + "cubbyholes\n", + "cube\n", + "cubeb\n", + "cubebs\n", + "cubed\n", + "cuber\n", + "cubers\n", + "cubes\n", + "cubic\n", + "cubical\n", + "cubicities\n", + "cubicity\n", + "cubicle\n", + "cubicles\n", + "cubicly\n", + "cubics\n", + "cubicula\n", + "cubiform\n", + "cubing\n", + "cubism\n", + "cubisms\n", + "cubist\n", + "cubistic\n", + "cubists\n", + "cubit\n", + "cubital\n", + "cubits\n", + "cuboid\n", + "cuboidal\n", + "cuboids\n", + "cubs\n", + "cuckold\n", + "cuckolded\n", + "cuckolding\n", + "cuckolds\n", + "cuckoo\n", + "cuckooed\n", + "cuckooing\n", + "cuckoos\n", + "cucumber\n", + "cucumbers\n", + "cucurbit\n", + "cucurbits\n", + "cud\n", + "cudbear\n", + "cudbears\n", + "cuddie\n", + "cuddies\n", + "cuddle\n", + "cuddled\n", + "cuddles\n", + "cuddlier\n", + "cuddliest\n", + "cuddling\n", + "cuddly\n", + "cuddy\n", + "cudgel\n", + "cudgeled\n", + "cudgeler\n", + "cudgelers\n", + "cudgeling\n", + "cudgelled\n", + "cudgelling\n", + "cudgels\n", + "cuds\n", + "cudweed\n", + "cudweeds\n", + "cue\n", + "cued\n", + "cueing\n", + "cues\n", + "cuesta\n", + "cuestas\n", + "cuff\n", + "cuffed\n", + "cuffing\n", + "cuffless\n", + "cuffs\n", + "cuif\n", + "cuifs\n", + "cuing\n", + "cuirass\n", + "cuirassed\n", + "cuirasses\n", + "cuirassing\n", + "cuish\n", + "cuishes\n", + "cuisine\n", + "cuisines\n", + "cuisse\n", + "cuisses\n", + "cuittle\n", + "cuittled\n", + "cuittles\n", + "cuittling\n", + "cuke\n", + "cukes\n", + "culch\n", + "culches\n", + "culet\n", + "culets\n", + "culex\n", + "culices\n", + "culicid\n", + "culicids\n", + "culicine\n", + "culicines\n", + "culinary\n", + "cull\n", + "cullay\n", + "cullays\n", + "culled\n", + "culler\n", + "cullers\n", + "cullet\n", + "cullets\n", + "cullied\n", + "cullies\n", + "culling\n", + "cullion\n", + "cullions\n", + "cullis\n", + "cullises\n", + "culls\n", + "cully\n", + "cullying\n", + "culm\n", + "culmed\n", + "culminatation\n", + "culminatations\n", + "culminate\n", + "culminated\n", + "culminates\n", + "culminating\n", + "culming\n", + "culms\n", + "culotte\n", + "culottes\n", + "culpa\n", + "culpable\n", + "culpably\n", + "culpae\n", + "culprit\n", + "culprits\n", + "cult\n", + "cultch\n", + "cultches\n", + "culti\n", + "cultic\n", + "cultigen\n", + "cultigens\n", + "cultism\n", + "cultisms\n", + "cultist\n", + "cultists\n", + "cultivar\n", + "cultivars\n", + "cultivatation\n", + "cultivatations\n", + "cultivate\n", + "cultivated\n", + "cultivates\n", + "cultivating\n", + "cultrate\n", + "cults\n", + "cultural\n", + "culture\n", + "cultured\n", + "cultures\n", + "culturing\n", + "cultus\n", + "cultuses\n", + "culver\n", + "culverin\n", + "culverins\n", + "culvers\n", + "culvert\n", + "culverts\n", + "cum\n", + "cumarin\n", + "cumarins\n", + "cumber\n", + "cumbered\n", + "cumberer\n", + "cumberers\n", + "cumbering\n", + "cumbers\n", + "cumbersome\n", + "cumbrous\n", + "cumin\n", + "cumins\n", + "cummer\n", + "cummers\n", + "cummin\n", + "cummins\n", + "cumquat\n", + "cumquats\n", + "cumshaw\n", + "cumshaws\n", + "cumulate\n", + "cumulated\n", + "cumulates\n", + "cumulating\n", + "cumulative\n", + "cumuli\n", + "cumulous\n", + "cumulus\n", + "cundum\n", + "cundums\n", + "cuneal\n", + "cuneate\n", + "cuneated\n", + "cuneatic\n", + "cuniform\n", + "cuniforms\n", + "cunner\n", + "cunners\n", + "cunning\n", + "cunninger\n", + "cunningest\n", + "cunningly\n", + "cunnings\n", + "cup\n", + "cupboard\n", + "cupboards\n", + "cupcake\n", + "cupcakes\n", + "cupel\n", + "cupeled\n", + "cupeler\n", + "cupelers\n", + "cupeling\n", + "cupelled\n", + "cupeller\n", + "cupellers\n", + "cupelling\n", + "cupels\n", + "cupful\n", + "cupfuls\n", + "cupid\n", + "cupidities\n", + "cupidity\n", + "cupids\n", + "cuplike\n", + "cupola\n", + "cupolaed\n", + "cupolaing\n", + "cupolas\n", + "cuppa\n", + "cuppas\n", + "cupped\n", + "cupper\n", + "cuppers\n", + "cuppier\n", + "cuppiest\n", + "cupping\n", + "cuppings\n", + "cuppy\n", + "cupreous\n", + "cupric\n", + "cuprite\n", + "cuprites\n", + "cuprous\n", + "cuprum\n", + "cuprums\n", + "cups\n", + "cupsful\n", + "cupula\n", + "cupulae\n", + "cupular\n", + "cupulate\n", + "cupule\n", + "cupules\n", + "cur\n", + "curable\n", + "curably\n", + "curacao\n", + "curacaos\n", + "curacies\n", + "curacoa\n", + "curacoas\n", + "curacy\n", + "curagh\n", + "curaghs\n", + "curara\n", + "curaras\n", + "curare\n", + "curares\n", + "curari\n", + "curarine\n", + "curarines\n", + "curaris\n", + "curarize\n", + "curarized\n", + "curarizes\n", + "curarizing\n", + "curassow\n", + "curassows\n", + "curate\n", + "curates\n", + "curative\n", + "curatives\n", + "curator\n", + "curators\n", + "curb\n", + "curbable\n", + "curbed\n", + "curber\n", + "curbers\n", + "curbing\n", + "curbings\n", + "curbs\n", + "curch\n", + "curches\n", + "curculio\n", + "curculios\n", + "curcuma\n", + "curcumas\n", + "curd\n", + "curded\n", + "curdier\n", + "curdiest\n", + "curding\n", + "curdle\n", + "curdled\n", + "curdler\n", + "curdlers\n", + "curdles\n", + "curdling\n", + "curds\n", + "curdy\n", + "cure\n", + "cured\n", + "cureless\n", + "curer\n", + "curers\n", + "cures\n", + "curet\n", + "curets\n", + "curette\n", + "curetted\n", + "curettes\n", + "curetting\n", + "curf\n", + "curfew\n", + "curfews\n", + "curfs\n", + "curia\n", + "curiae\n", + "curial\n", + "curie\n", + "curies\n", + "curing\n", + "curio\n", + "curios\n", + "curiosa\n", + "curiosities\n", + "curiosity\n", + "curious\n", + "curiouser\n", + "curiousest\n", + "curite\n", + "curites\n", + "curium\n", + "curiums\n", + "curl\n", + "curled\n", + "curler\n", + "curlers\n", + "curlew\n", + "curlews\n", + "curlicue\n", + "curlicued\n", + "curlicues\n", + "curlicuing\n", + "curlier\n", + "curliest\n", + "curlily\n", + "curling\n", + "curlings\n", + "curls\n", + "curly\n", + "curlycue\n", + "curlycues\n", + "curmudgeon\n", + "curmudgeons\n", + "curn\n", + "curns\n", + "curr\n", + "currach\n", + "currachs\n", + "curragh\n", + "curraghs\n", + "curran\n", + "currans\n", + "currant\n", + "currants\n", + "curred\n", + "currencies\n", + "currency\n", + "current\n", + "currently\n", + "currents\n", + "curricle\n", + "curricles\n", + "curriculum\n", + "currie\n", + "curried\n", + "currier\n", + "currieries\n", + "curriers\n", + "curriery\n", + "curries\n", + "curring\n", + "currish\n", + "currs\n", + "curry\n", + "currying\n", + "curs\n", + "curse\n", + "cursed\n", + "curseder\n", + "cursedest\n", + "cursedly\n", + "curser\n", + "cursers\n", + "curses\n", + "cursing\n", + "cursive\n", + "cursives\n", + "cursory\n", + "curst\n", + "curt\n", + "curtail\n", + "curtailed\n", + "curtailing\n", + "curtailment\n", + "curtailments\n", + "curtails\n", + "curtain\n", + "curtained\n", + "curtaining\n", + "curtains\n", + "curtal\n", + "curtalax\n", + "curtalaxes\n", + "curtals\n", + "curtate\n", + "curter\n", + "curtesies\n", + "curtest\n", + "curtesy\n", + "curtly\n", + "curtness\n", + "curtnesses\n", + "curtsey\n", + "curtseyed\n", + "curtseying\n", + "curtseys\n", + "curtsied\n", + "curtsies\n", + "curtsy\n", + "curtsying\n", + "curule\n", + "curve\n", + "curved\n", + "curves\n", + "curvet\n", + "curveted\n", + "curveting\n", + "curvets\n", + "curvetted\n", + "curvetting\n", + "curvey\n", + "curvier\n", + "curviest\n", + "curving\n", + "curvy\n", + "cuscus\n", + "cuscuses\n", + "cusec\n", + "cusecs\n", + "cushat\n", + "cushats\n", + "cushaw\n", + "cushaws\n", + "cushier\n", + "cushiest\n", + "cushily\n", + "cushion\n", + "cushioned\n", + "cushioning\n", + "cushions\n", + "cushiony\n", + "cushy\n", + "cusk\n", + "cusks\n", + "cusp\n", + "cuspate\n", + "cuspated\n", + "cusped\n", + "cuspid\n", + "cuspidal\n", + "cuspides\n", + "cuspidor\n", + "cuspidors\n", + "cuspids\n", + "cuspis\n", + "cusps\n", + "cuss\n", + "cussed\n", + "cussedly\n", + "cusser\n", + "cussers\n", + "cusses\n", + "cussing\n", + "cusso\n", + "cussos\n", + "cussword\n", + "cusswords\n", + "custard\n", + "custards\n", + "custodes\n", + "custodial\n", + "custodian\n", + "custodians\n", + "custodies\n", + "custody\n", + "custom\n", + "customarily\n", + "customary\n", + "customer\n", + "customers\n", + "customize\n", + "customized\n", + "customizes\n", + "customizing\n", + "customs\n", + "custos\n", + "custumal\n", + "custumals\n", + "cut\n", + "cutaneous\n", + "cutaway\n", + "cutaways\n", + "cutback\n", + "cutbacks\n", + "cutch\n", + "cutcheries\n", + "cutchery\n", + "cutches\n", + "cutdown\n", + "cutdowns\n", + "cute\n", + "cutely\n", + "cuteness\n", + "cutenesses\n", + "cuter\n", + "cutes\n", + "cutesier\n", + "cutesiest\n", + "cutest\n", + "cutesy\n", + "cutey\n", + "cuteys\n", + "cutgrass\n", + "cutgrasses\n", + "cuticle\n", + "cuticles\n", + "cuticula\n", + "cuticulae\n", + "cutie\n", + "cuties\n", + "cutin\n", + "cutinise\n", + "cutinised\n", + "cutinises\n", + "cutinising\n", + "cutinize\n", + "cutinized\n", + "cutinizes\n", + "cutinizing\n", + "cutins\n", + "cutis\n", + "cutises\n", + "cutlas\n", + "cutlases\n", + "cutlass\n", + "cutlasses\n", + "cutler\n", + "cutleries\n", + "cutlers\n", + "cutlery\n", + "cutlet\n", + "cutlets\n", + "cutline\n", + "cutlines\n", + "cutoff\n", + "cutoffs\n", + "cutout\n", + "cutouts\n", + "cutover\n", + "cutpurse\n", + "cutpurses\n", + "cuts\n", + "cuttable\n", + "cuttage\n", + "cuttages\n", + "cutter\n", + "cutters\n", + "cutthroat\n", + "cutthroats\n", + "cutties\n", + "cutting\n", + "cuttings\n", + "cuttle\n", + "cuttled\n", + "cuttles\n", + "cuttling\n", + "cutty\n", + "cutup\n", + "cutups\n", + "cutwater\n", + "cutwaters\n", + "cutwork\n", + "cutworks\n", + "cutworm\n", + "cutworms\n", + "cuvette\n", + "cuvettes\n", + "cwm\n", + "cwms\n", + "cyan\n", + "cyanamid\n", + "cyanamids\n", + "cyanate\n", + "cyanates\n", + "cyanic\n", + "cyanid\n", + "cyanide\n", + "cyanided\n", + "cyanides\n", + "cyaniding\n", + "cyanids\n", + "cyanin\n", + "cyanine\n", + "cyanines\n", + "cyanins\n", + "cyanite\n", + "cyanites\n", + "cyanitic\n", + "cyano\n", + "cyanogen\n", + "cyanogens\n", + "cyanosed\n", + "cyanoses\n", + "cyanosis\n", + "cyanotic\n", + "cyans\n", + "cyborg\n", + "cyborgs\n", + "cycad\n", + "cycads\n", + "cycas\n", + "cycases\n", + "cycasin\n", + "cycasins\n", + "cyclamen\n", + "cyclamens\n", + "cyclase\n", + "cyclases\n", + "cycle\n", + "cyclecar\n", + "cyclecars\n", + "cycled\n", + "cycler\n", + "cyclers\n", + "cycles\n", + "cyclic\n", + "cyclical\n", + "cyclicly\n", + "cycling\n", + "cyclings\n", + "cyclist\n", + "cyclists\n", + "cyclitol\n", + "cyclitols\n", + "cyclize\n", + "cyclized\n", + "cyclizes\n", + "cyclizing\n", + "cyclo\n", + "cycloid\n", + "cycloids\n", + "cyclonal\n", + "cyclone\n", + "cyclones\n", + "cyclonic\n", + "cyclopaedia\n", + "cyclopaedias\n", + "cyclopedia\n", + "cyclopedias\n", + "cyclophosphamide\n", + "cyclophosphamides\n", + "cyclops\n", + "cyclorama\n", + "cycloramas\n", + "cyclos\n", + "cycloses\n", + "cyclosis\n", + "cyder\n", + "cyders\n", + "cyeses\n", + "cyesis\n", + "cygnet\n", + "cygnets\n", + "cylices\n", + "cylinder\n", + "cylindered\n", + "cylindering\n", + "cylinders\n", + "cylix\n", + "cyma\n", + "cymae\n", + "cymar\n", + "cymars\n", + "cymas\n", + "cymatia\n", + "cymatium\n", + "cymbal\n", + "cymbaler\n", + "cymbalers\n", + "cymbals\n", + "cymbling\n", + "cymblings\n", + "cyme\n", + "cymene\n", + "cymenes\n", + "cymes\n", + "cymlin\n", + "cymling\n", + "cymlings\n", + "cymlins\n", + "cymogene\n", + "cymogenes\n", + "cymoid\n", + "cymol\n", + "cymols\n", + "cymose\n", + "cymosely\n", + "cymous\n", + "cynic\n", + "cynical\n", + "cynicism\n", + "cynicisms\n", + "cynics\n", + "cynosure\n", + "cynosures\n", + "cypher\n", + "cyphered\n", + "cyphering\n", + "cyphers\n", + "cypres\n", + "cypreses\n", + "cypress\n", + "cypresses\n", + "cyprian\n", + "cyprians\n", + "cyprinid\n", + "cyprinids\n", + "cyprus\n", + "cypruses\n", + "cypsela\n", + "cypselae\n", + "cyst\n", + "cystein\n", + "cysteine\n", + "cysteines\n", + "cysteins\n", + "cystic\n", + "cystine\n", + "cystines\n", + "cystitides\n", + "cystitis\n", + "cystoid\n", + "cystoids\n", + "cysts\n", + "cytaster\n", + "cytasters\n", + "cytidine\n", + "cytidines\n", + "cytogenies\n", + "cytogeny\n", + "cytologies\n", + "cytology\n", + "cyton\n", + "cytons\n", + "cytopathological\n", + "cytosine\n", + "cytosines\n", + "czar\n", + "czardas\n", + "czardom\n", + "czardoms\n", + "czarevna\n", + "czarevnas\n", + "czarina\n", + "czarinas\n", + "czarism\n", + "czarisms\n", + "czarist\n", + "czarists\n", + "czaritza\n", + "czaritzas\n", + "czars\n", + "da\n", + "dab\n", + "dabbed\n", + "dabber\n", + "dabbers\n", + "dabbing\n", + "dabble\n", + "dabbled\n", + "dabbler\n", + "dabblers\n", + "dabbles\n", + "dabbling\n", + "dabblings\n", + "dabchick\n", + "dabchicks\n", + "dabs\n", + "dabster\n", + "dabsters\n", + "dace\n", + "daces\n", + "dacha\n", + "dachas\n", + "dachshund\n", + "dachshunds\n", + "dacker\n", + "dackered\n", + "dackering\n", + "dackers\n", + "dacoit\n", + "dacoities\n", + "dacoits\n", + "dacoity\n", + "dactyl\n", + "dactyli\n", + "dactylic\n", + "dactylics\n", + "dactyls\n", + "dactylus\n", + "dad\n", + "dada\n", + "dadaism\n", + "dadaisms\n", + "dadaist\n", + "dadaists\n", + "dadas\n", + "daddies\n", + "daddle\n", + "daddled\n", + "daddles\n", + "daddling\n", + "daddy\n", + "dado\n", + "dadoed\n", + "dadoes\n", + "dadoing\n", + "dados\n", + "dads\n", + "daedal\n", + "daemon\n", + "daemonic\n", + "daemons\n", + "daff\n", + "daffed\n", + "daffier\n", + "daffiest\n", + "daffing\n", + "daffodil\n", + "daffodils\n", + "daffs\n", + "daffy\n", + "daft\n", + "dafter\n", + "daftest\n", + "daftly\n", + "daftness\n", + "daftnesses\n", + "dag\n", + "dagger\n", + "daggered\n", + "daggering\n", + "daggers\n", + "daggle\n", + "daggled\n", + "daggles\n", + "daggling\n", + "daglock\n", + "daglocks\n", + "dago\n", + "dagoba\n", + "dagobas\n", + "dagoes\n", + "dagos\n", + "dags\n", + "dah\n", + "dahabeah\n", + "dahabeahs\n", + "dahabiah\n", + "dahabiahs\n", + "dahabieh\n", + "dahabiehs\n", + "dahabiya\n", + "dahabiyas\n", + "dahlia\n", + "dahlias\n", + "dahoon\n", + "dahoons\n", + "dahs\n", + "daiker\n", + "daikered\n", + "daikering\n", + "daikers\n", + "dailies\n", + "daily\n", + "daimen\n", + "daimio\n", + "daimios\n", + "daimon\n", + "daimones\n", + "daimonic\n", + "daimons\n", + "daimyo\n", + "daimyos\n", + "daintier\n", + "dainties\n", + "daintiest\n", + "daintily\n", + "daintiness\n", + "daintinesses\n", + "dainty\n", + "daiquiri\n", + "daiquiris\n", + "dairies\n", + "dairy\n", + "dairying\n", + "dairyings\n", + "dairymaid\n", + "dairymaids\n", + "dairyman\n", + "dairymen\n", + "dais\n", + "daises\n", + "daishiki\n", + "daishikis\n", + "daisied\n", + "daisies\n", + "daisy\n", + "dak\n", + "dakerhen\n", + "dakerhens\n", + "dakoit\n", + "dakoities\n", + "dakoits\n", + "dakoity\n", + "daks\n", + "dalapon\n", + "dalapons\n", + "dalasi\n", + "dale\n", + "dales\n", + "dalesman\n", + "dalesmen\n", + "daleth\n", + "daleths\n", + "dalles\n", + "dalliance\n", + "dalliances\n", + "dallied\n", + "dallier\n", + "dalliers\n", + "dallies\n", + "dally\n", + "dallying\n", + "dalmatian\n", + "dalmatians\n", + "dalmatic\n", + "dalmatics\n", + "daltonic\n", + "dam\n", + "damage\n", + "damaged\n", + "damager\n", + "damagers\n", + "damages\n", + "damaging\n", + "daman\n", + "damans\n", + "damar\n", + "damars\n", + "damask\n", + "damasked\n", + "damasking\n", + "damasks\n", + "dame\n", + "dames\n", + "damewort\n", + "dameworts\n", + "dammar\n", + "dammars\n", + "dammed\n", + "dammer\n", + "dammers\n", + "damming\n", + "damn\n", + "damnable\n", + "damnably\n", + "damnation\n", + "damnations\n", + "damndest\n", + "damndests\n", + "damned\n", + "damneder\n", + "damnedest\n", + "damner\n", + "damners\n", + "damnified\n", + "damnifies\n", + "damnify\n", + "damnifying\n", + "damning\n", + "damns\n", + "damosel\n", + "damosels\n", + "damozel\n", + "damozels\n", + "damp\n", + "damped\n", + "dampen\n", + "dampened\n", + "dampener\n", + "dampeners\n", + "dampening\n", + "dampens\n", + "damper\n", + "dampers\n", + "dampest\n", + "damping\n", + "dampish\n", + "damply\n", + "dampness\n", + "dampnesses\n", + "damps\n", + "dams\n", + "damsel\n", + "damsels\n", + "damson\n", + "damsons\n", + "dance\n", + "danced\n", + "dancer\n", + "dancers\n", + "dances\n", + "dancing\n", + "dandelion\n", + "dandelions\n", + "dander\n", + "dandered\n", + "dandering\n", + "danders\n", + "dandier\n", + "dandies\n", + "dandiest\n", + "dandified\n", + "dandifies\n", + "dandify\n", + "dandifying\n", + "dandily\n", + "dandle\n", + "dandled\n", + "dandler\n", + "dandlers\n", + "dandles\n", + "dandling\n", + "dandriff\n", + "dandriffs\n", + "dandruff\n", + "dandruffs\n", + "dandy\n", + "dandyish\n", + "dandyism\n", + "dandyisms\n", + "danegeld\n", + "danegelds\n", + "daneweed\n", + "daneweeds\n", + "danewort\n", + "daneworts\n", + "dang\n", + "danged\n", + "danger\n", + "dangered\n", + "dangering\n", + "dangerous\n", + "dangerously\n", + "dangers\n", + "danging\n", + "dangle\n", + "dangled\n", + "dangler\n", + "danglers\n", + "dangles\n", + "dangling\n", + "dangs\n", + "danio\n", + "danios\n", + "dank\n", + "danker\n", + "dankest\n", + "dankly\n", + "dankness\n", + "danknesses\n", + "danseur\n", + "danseurs\n", + "danseuse\n", + "danseuses\n", + "dap\n", + "daphne\n", + "daphnes\n", + "daphnia\n", + "daphnias\n", + "dapped\n", + "dapper\n", + "dapperer\n", + "dapperest\n", + "dapperly\n", + "dapping\n", + "dapple\n", + "dappled\n", + "dapples\n", + "dappling\n", + "daps\n", + "darb\n", + "darbies\n", + "darbs\n", + "dare\n", + "dared\n", + "daredevil\n", + "daredevils\n", + "dareful\n", + "darer\n", + "darers\n", + "dares\n", + "daresay\n", + "daric\n", + "darics\n", + "daring\n", + "daringly\n", + "darings\n", + "dariole\n", + "darioles\n", + "dark\n", + "darked\n", + "darken\n", + "darkened\n", + "darkener\n", + "darkeners\n", + "darkening\n", + "darkens\n", + "darker\n", + "darkest\n", + "darkey\n", + "darkeys\n", + "darkie\n", + "darkies\n", + "darking\n", + "darkish\n", + "darkle\n", + "darkled\n", + "darkles\n", + "darklier\n", + "darkliest\n", + "darkling\n", + "darkly\n", + "darkness\n", + "darknesses\n", + "darkroom\n", + "darkrooms\n", + "darks\n", + "darksome\n", + "darky\n", + "darling\n", + "darlings\n", + "darn\n", + "darndest\n", + "darndests\n", + "darned\n", + "darneder\n", + "darnedest\n", + "darnel\n", + "darnels\n", + "darner\n", + "darners\n", + "darning\n", + "darnings\n", + "darns\n", + "dart\n", + "darted\n", + "darter\n", + "darters\n", + "darting\n", + "dartle\n", + "dartled\n", + "dartles\n", + "dartling\n", + "dartmouth\n", + "darts\n", + "dash\n", + "dashboard\n", + "dashboards\n", + "dashed\n", + "dasheen\n", + "dasheens\n", + "dasher\n", + "dashers\n", + "dashes\n", + "dashier\n", + "dashiest\n", + "dashiki\n", + "dashikis\n", + "dashing\n", + "dashpot\n", + "dashpots\n", + "dashy\n", + "dassie\n", + "dassies\n", + "dastard\n", + "dastardly\n", + "dastards\n", + "dasyure\n", + "dasyures\n", + "data\n", + "datable\n", + "datamedia\n", + "datapoint\n", + "dataries\n", + "datary\n", + "datcha\n", + "datchas\n", + "date\n", + "dateable\n", + "dated\n", + "datedly\n", + "dateless\n", + "dateline\n", + "datelined\n", + "datelines\n", + "datelining\n", + "dater\n", + "daters\n", + "dates\n", + "dating\n", + "datival\n", + "dative\n", + "datively\n", + "datives\n", + "dato\n", + "datos\n", + "datto\n", + "dattos\n", + "datum\n", + "datums\n", + "datura\n", + "daturas\n", + "daturic\n", + "daub\n", + "daube\n", + "daubed\n", + "dauber\n", + "dauberies\n", + "daubers\n", + "daubery\n", + "daubes\n", + "daubier\n", + "daubiest\n", + "daubing\n", + "daubries\n", + "daubry\n", + "daubs\n", + "dauby\n", + "daughter\n", + "daughterly\n", + "daughters\n", + "daunder\n", + "daundered\n", + "daundering\n", + "daunders\n", + "daunt\n", + "daunted\n", + "daunter\n", + "daunters\n", + "daunting\n", + "dauntless\n", + "daunts\n", + "dauphin\n", + "dauphine\n", + "dauphines\n", + "dauphins\n", + "daut\n", + "dauted\n", + "dautie\n", + "dauties\n", + "dauting\n", + "dauts\n", + "daven\n", + "davened\n", + "davening\n", + "davenport\n", + "davenports\n", + "davens\n", + "davies\n", + "davit\n", + "davits\n", + "davy\n", + "daw\n", + "dawdle\n", + "dawdled\n", + "dawdler\n", + "dawdlers\n", + "dawdles\n", + "dawdling\n", + "dawed\n", + "dawen\n", + "dawing\n", + "dawk\n", + "dawks\n", + "dawn\n", + "dawned\n", + "dawning\n", + "dawnlike\n", + "dawns\n", + "daws\n", + "dawt\n", + "dawted\n", + "dawtie\n", + "dawties\n", + "dawting\n", + "dawts\n", + "day\n", + "daybed\n", + "daybeds\n", + "daybook\n", + "daybooks\n", + "daybreak\n", + "daybreaks\n", + "daydream\n", + "daydreamed\n", + "daydreaming\n", + "daydreams\n", + "daydreamt\n", + "dayflies\n", + "dayfly\n", + "dayglow\n", + "dayglows\n", + "daylight\n", + "daylighted\n", + "daylighting\n", + "daylights\n", + "daylilies\n", + "daylily\n", + "daylit\n", + "daylong\n", + "daymare\n", + "daymares\n", + "dayroom\n", + "dayrooms\n", + "days\n", + "dayside\n", + "daysides\n", + "daysman\n", + "daysmen\n", + "daystar\n", + "daystars\n", + "daytime\n", + "daytimes\n", + "daze\n", + "dazed\n", + "dazedly\n", + "dazes\n", + "dazing\n", + "dazzle\n", + "dazzled\n", + "dazzler\n", + "dazzlers\n", + "dazzles\n", + "dazzling\n", + "de\n", + "deacon\n", + "deaconed\n", + "deaconess\n", + "deaconesses\n", + "deaconing\n", + "deaconries\n", + "deaconry\n", + "deacons\n", + "dead\n", + "deadbeat\n", + "deadbeats\n", + "deaden\n", + "deadened\n", + "deadener\n", + "deadeners\n", + "deadening\n", + "deadens\n", + "deader\n", + "deadest\n", + "deadeye\n", + "deadeyes\n", + "deadfall\n", + "deadfalls\n", + "deadhead\n", + "deadheaded\n", + "deadheading\n", + "deadheads\n", + "deadlier\n", + "deadliest\n", + "deadline\n", + "deadlines\n", + "deadliness\n", + "deadlinesses\n", + "deadlock\n", + "deadlocked\n", + "deadlocking\n", + "deadlocks\n", + "deadly\n", + "deadness\n", + "deadnesses\n", + "deadpan\n", + "deadpanned\n", + "deadpanning\n", + "deadpans\n", + "deads\n", + "deadwood\n", + "deadwoods\n", + "deaerate\n", + "deaerated\n", + "deaerates\n", + "deaerating\n", + "deaf\n", + "deafen\n", + "deafened\n", + "deafening\n", + "deafens\n", + "deafer\n", + "deafest\n", + "deafish\n", + "deafly\n", + "deafness\n", + "deafnesses\n", + "deair\n", + "deaired\n", + "deairing\n", + "deairs\n", + "deal\n", + "dealate\n", + "dealated\n", + "dealates\n", + "dealer\n", + "dealers\n", + "dealfish\n", + "dealfishes\n", + "dealing\n", + "dealings\n", + "deals\n", + "dealt\n", + "dean\n", + "deaned\n", + "deaneries\n", + "deanery\n", + "deaning\n", + "deans\n", + "deanship\n", + "deanships\n", + "dear\n", + "dearer\n", + "dearest\n", + "dearie\n", + "dearies\n", + "dearly\n", + "dearness\n", + "dearnesses\n", + "dears\n", + "dearth\n", + "dearths\n", + "deary\n", + "deash\n", + "deashed\n", + "deashes\n", + "deashing\n", + "deasil\n", + "death\n", + "deathbed\n", + "deathbeds\n", + "deathcup\n", + "deathcups\n", + "deathful\n", + "deathless\n", + "deathly\n", + "deaths\n", + "deathy\n", + "deave\n", + "deaved\n", + "deaves\n", + "deaving\n", + "deb\n", + "debacle\n", + "debacles\n", + "debar\n", + "debark\n", + "debarkation\n", + "debarkations\n", + "debarked\n", + "debarking\n", + "debarks\n", + "debarred\n", + "debarring\n", + "debars\n", + "debase\n", + "debased\n", + "debasement\n", + "debasements\n", + "debaser\n", + "debasers\n", + "debases\n", + "debasing\n", + "debatable\n", + "debate\n", + "debated\n", + "debater\n", + "debaters\n", + "debates\n", + "debating\n", + "debauch\n", + "debauched\n", + "debaucheries\n", + "debauchery\n", + "debauches\n", + "debauching\n", + "debilitate\n", + "debilitated\n", + "debilitates\n", + "debilitating\n", + "debilities\n", + "debility\n", + "debit\n", + "debited\n", + "debiting\n", + "debits\n", + "debonair\n", + "debone\n", + "deboned\n", + "deboner\n", + "deboners\n", + "debones\n", + "deboning\n", + "debouch\n", + "debouche\n", + "debouched\n", + "debouches\n", + "debouching\n", + "debrief\n", + "debriefed\n", + "debriefing\n", + "debriefs\n", + "debris\n", + "debruise\n", + "debruised\n", + "debruises\n", + "debruising\n", + "debs\n", + "debt\n", + "debtless\n", + "debtor\n", + "debtors\n", + "debts\n", + "debug\n", + "debugged\n", + "debugging\n", + "debugs\n", + "debunk\n", + "debunked\n", + "debunker\n", + "debunkers\n", + "debunking\n", + "debunks\n", + "debut\n", + "debutant\n", + "debutante\n", + "debutantes\n", + "debutants\n", + "debuted\n", + "debuting\n", + "debuts\n", + "debye\n", + "debyes\n", + "decadal\n", + "decade\n", + "decadence\n", + "decadent\n", + "decadents\n", + "decades\n", + "decagon\n", + "decagons\n", + "decagram\n", + "decagrams\n", + "decal\n", + "decals\n", + "decamp\n", + "decamped\n", + "decamping\n", + "decamps\n", + "decanal\n", + "decane\n", + "decanes\n", + "decant\n", + "decanted\n", + "decanter\n", + "decanters\n", + "decanting\n", + "decants\n", + "decapitatation\n", + "decapitatations\n", + "decapitate\n", + "decapitated\n", + "decapitates\n", + "decapitating\n", + "decapod\n", + "decapods\n", + "decare\n", + "decares\n", + "decay\n", + "decayed\n", + "decayer\n", + "decayers\n", + "decaying\n", + "decays\n", + "decease\n", + "deceased\n", + "deceases\n", + "deceasing\n", + "decedent\n", + "decedents\n", + "deceit\n", + "deceitful\n", + "deceitfully\n", + "deceitfulness\n", + "deceitfulnesses\n", + "deceits\n", + "deceive\n", + "deceived\n", + "deceiver\n", + "deceivers\n", + "deceives\n", + "deceiving\n", + "decelerate\n", + "decelerated\n", + "decelerates\n", + "decelerating\n", + "decemvir\n", + "decemviri\n", + "decemvirs\n", + "decenaries\n", + "decenary\n", + "decencies\n", + "decency\n", + "decennia\n", + "decent\n", + "decenter\n", + "decentered\n", + "decentering\n", + "decenters\n", + "decentest\n", + "decently\n", + "decentralization\n", + "decentre\n", + "decentred\n", + "decentres\n", + "decentring\n", + "deception\n", + "deceptions\n", + "deceptively\n", + "decern\n", + "decerned\n", + "decerning\n", + "decerns\n", + "deciare\n", + "deciares\n", + "decibel\n", + "decibels\n", + "decide\n", + "decided\n", + "decidedly\n", + "decider\n", + "deciders\n", + "decides\n", + "deciding\n", + "decidua\n", + "deciduae\n", + "decidual\n", + "deciduas\n", + "deciduous\n", + "decigram\n", + "decigrams\n", + "decile\n", + "deciles\n", + "decimal\n", + "decimally\n", + "decimals\n", + "decimate\n", + "decimated\n", + "decimates\n", + "decimating\n", + "decipher\n", + "decipherable\n", + "deciphered\n", + "deciphering\n", + "deciphers\n", + "decision\n", + "decisions\n", + "decisive\n", + "decisively\n", + "decisiveness\n", + "decisivenesses\n", + "deck\n", + "decked\n", + "deckel\n", + "deckels\n", + "decker\n", + "deckers\n", + "deckhand\n", + "deckhands\n", + "decking\n", + "deckings\n", + "deckle\n", + "deckles\n", + "decks\n", + "declaim\n", + "declaimed\n", + "declaiming\n", + "declaims\n", + "declamation\n", + "declamations\n", + "declaration\n", + "declarations\n", + "declarative\n", + "declaratory\n", + "declare\n", + "declared\n", + "declarer\n", + "declarers\n", + "declares\n", + "declaring\n", + "declass\n", + "declasse\n", + "declassed\n", + "declasses\n", + "declassing\n", + "declension\n", + "declensions\n", + "declination\n", + "declinations\n", + "decline\n", + "declined\n", + "decliner\n", + "decliners\n", + "declines\n", + "declining\n", + "decoct\n", + "decocted\n", + "decocting\n", + "decocts\n", + "decode\n", + "decoded\n", + "decoder\n", + "decoders\n", + "decodes\n", + "decoding\n", + "decolor\n", + "decolored\n", + "decoloring\n", + "decolors\n", + "decolour\n", + "decoloured\n", + "decolouring\n", + "decolours\n", + "decompose\n", + "decomposed\n", + "decomposes\n", + "decomposing\n", + "decomposition\n", + "decompositions\n", + "decongestant\n", + "decongestants\n", + "decor\n", + "decorate\n", + "decorated\n", + "decorates\n", + "decorating\n", + "decoration\n", + "decorations\n", + "decorative\n", + "decorator\n", + "decorators\n", + "decorous\n", + "decorously\n", + "decorousness\n", + "decorousnesses\n", + "decors\n", + "decorum\n", + "decorums\n", + "decoy\n", + "decoyed\n", + "decoyer\n", + "decoyers\n", + "decoying\n", + "decoys\n", + "decrease\n", + "decreased\n", + "decreases\n", + "decreasing\n", + "decree\n", + "decreed\n", + "decreeing\n", + "decreer\n", + "decreers\n", + "decrees\n", + "decrepit\n", + "decrescendo\n", + "decretal\n", + "decretals\n", + "decrial\n", + "decrials\n", + "decried\n", + "decrier\n", + "decriers\n", + "decries\n", + "decrown\n", + "decrowned\n", + "decrowning\n", + "decrowns\n", + "decry\n", + "decrying\n", + "decrypt\n", + "decrypted\n", + "decrypting\n", + "decrypts\n", + "decuman\n", + "decuple\n", + "decupled\n", + "decuples\n", + "decupling\n", + "decuries\n", + "decurion\n", + "decurions\n", + "decurve\n", + "decurved\n", + "decurves\n", + "decurving\n", + "decury\n", + "dedal\n", + "dedans\n", + "dedicate\n", + "dedicated\n", + "dedicates\n", + "dedicating\n", + "dedication\n", + "dedications\n", + "dedicatory\n", + "deduce\n", + "deduced\n", + "deduces\n", + "deducible\n", + "deducing\n", + "deduct\n", + "deducted\n", + "deductible\n", + "deducting\n", + "deduction\n", + "deductions\n", + "deductive\n", + "deducts\n", + "dee\n", + "deed\n", + "deeded\n", + "deedier\n", + "deediest\n", + "deeding\n", + "deedless\n", + "deeds\n", + "deedy\n", + "deejay\n", + "deejays\n", + "deem\n", + "deemed\n", + "deeming\n", + "deems\n", + "deemster\n", + "deemsters\n", + "deep\n", + "deepen\n", + "deepened\n", + "deepener\n", + "deepeners\n", + "deepening\n", + "deepens\n", + "deeper\n", + "deepest\n", + "deeply\n", + "deepness\n", + "deepnesses\n", + "deeps\n", + "deer\n", + "deerflies\n", + "deerfly\n", + "deers\n", + "deerskin\n", + "deerskins\n", + "deerweed\n", + "deerweeds\n", + "deeryard\n", + "deeryards\n", + "dees\n", + "deewan\n", + "deewans\n", + "deface\n", + "defaced\n", + "defacement\n", + "defacements\n", + "defacer\n", + "defacers\n", + "defaces\n", + "defacing\n", + "defamation\n", + "defamations\n", + "defamatory\n", + "defame\n", + "defamed\n", + "defamer\n", + "defamers\n", + "defames\n", + "defaming\n", + "defat\n", + "defats\n", + "defatted\n", + "defatting\n", + "default\n", + "defaulted\n", + "defaulting\n", + "defaults\n", + "defeat\n", + "defeated\n", + "defeater\n", + "defeaters\n", + "defeating\n", + "defeats\n", + "defecate\n", + "defecated\n", + "defecates\n", + "defecating\n", + "defecation\n", + "defecations\n", + "defect\n", + "defected\n", + "defecting\n", + "defection\n", + "defections\n", + "defective\n", + "defectives\n", + "defector\n", + "defectors\n", + "defects\n", + "defence\n", + "defences\n", + "defend\n", + "defendant\n", + "defendants\n", + "defended\n", + "defender\n", + "defenders\n", + "defending\n", + "defends\n", + "defense\n", + "defensed\n", + "defenseless\n", + "defenses\n", + "defensible\n", + "defensing\n", + "defensive\n", + "defer\n", + "deference\n", + "deferences\n", + "deferent\n", + "deferential\n", + "deferents\n", + "deferment\n", + "deferments\n", + "deferrable\n", + "deferral\n", + "deferrals\n", + "deferred\n", + "deferrer\n", + "deferrers\n", + "deferring\n", + "defers\n", + "defi\n", + "defiance\n", + "defiances\n", + "defiant\n", + "deficiencies\n", + "deficiency\n", + "deficient\n", + "deficit\n", + "deficits\n", + "defied\n", + "defier\n", + "defiers\n", + "defies\n", + "defilade\n", + "defiladed\n", + "defilades\n", + "defilading\n", + "defile\n", + "defiled\n", + "defilement\n", + "defilements\n", + "defiler\n", + "defilers\n", + "defiles\n", + "defiling\n", + "definable\n", + "definably\n", + "define\n", + "defined\n", + "definer\n", + "definers\n", + "defines\n", + "defining\n", + "definite\n", + "definitely\n", + "definition\n", + "definitions\n", + "definitive\n", + "defis\n", + "deflate\n", + "deflated\n", + "deflates\n", + "deflating\n", + "deflation\n", + "deflations\n", + "deflator\n", + "deflators\n", + "deflea\n", + "defleaed\n", + "defleaing\n", + "defleas\n", + "deflect\n", + "deflected\n", + "deflecting\n", + "deflection\n", + "deflections\n", + "deflects\n", + "deflexed\n", + "deflower\n", + "deflowered\n", + "deflowering\n", + "deflowers\n", + "defoam\n", + "defoamed\n", + "defoamer\n", + "defoamers\n", + "defoaming\n", + "defoams\n", + "defog\n", + "defogged\n", + "defogger\n", + "defoggers\n", + "defogging\n", + "defogs\n", + "defoliant\n", + "defoliants\n", + "defoliate\n", + "defoliated\n", + "defoliates\n", + "defoliating\n", + "defoliation\n", + "defoliations\n", + "deforce\n", + "deforced\n", + "deforces\n", + "deforcing\n", + "deforest\n", + "deforested\n", + "deforesting\n", + "deforests\n", + "deform\n", + "deformation\n", + "deformations\n", + "deformed\n", + "deformer\n", + "deformers\n", + "deforming\n", + "deformities\n", + "deformity\n", + "deforms\n", + "defraud\n", + "defrauded\n", + "defrauding\n", + "defrauds\n", + "defray\n", + "defrayal\n", + "defrayals\n", + "defrayed\n", + "defrayer\n", + "defrayers\n", + "defraying\n", + "defrays\n", + "defrock\n", + "defrocked\n", + "defrocking\n", + "defrocks\n", + "defrost\n", + "defrosted\n", + "defroster\n", + "defrosters\n", + "defrosting\n", + "defrosts\n", + "deft\n", + "defter\n", + "deftest\n", + "deftly\n", + "deftness\n", + "deftnesses\n", + "defunct\n", + "defuse\n", + "defused\n", + "defuses\n", + "defusing\n", + "defuze\n", + "defuzed\n", + "defuzes\n", + "defuzing\n", + "defy\n", + "defying\n", + "degage\n", + "degame\n", + "degames\n", + "degami\n", + "degamis\n", + "degas\n", + "degases\n", + "degassed\n", + "degasser\n", + "degassers\n", + "degasses\n", + "degassing\n", + "degauss\n", + "degaussed\n", + "degausses\n", + "degaussing\n", + "degeneracies\n", + "degeneracy\n", + "degenerate\n", + "degenerated\n", + "degenerates\n", + "degenerating\n", + "degeneration\n", + "degenerations\n", + "degenerative\n", + "degerm\n", + "degermed\n", + "degerming\n", + "degerms\n", + "deglaze\n", + "deglazed\n", + "deglazes\n", + "deglazing\n", + "degradable\n", + "degradation\n", + "degradations\n", + "degrade\n", + "degraded\n", + "degrader\n", + "degraders\n", + "degrades\n", + "degrading\n", + "degrease\n", + "degreased\n", + "degreases\n", + "degreasing\n", + "degree\n", + "degreed\n", + "degrees\n", + "degum\n", + "degummed\n", + "degumming\n", + "degums\n", + "degust\n", + "degusted\n", + "degusting\n", + "degusts\n", + "dehisce\n", + "dehisced\n", + "dehisces\n", + "dehiscing\n", + "dehorn\n", + "dehorned\n", + "dehorner\n", + "dehorners\n", + "dehorning\n", + "dehorns\n", + "dehort\n", + "dehorted\n", + "dehorting\n", + "dehorts\n", + "dehydrate\n", + "dehydrated\n", + "dehydrates\n", + "dehydrating\n", + "dehydration\n", + "dehydrations\n", + "dei\n", + "deice\n", + "deiced\n", + "deicer\n", + "deicers\n", + "deices\n", + "deicidal\n", + "deicide\n", + "deicides\n", + "deicing\n", + "deictic\n", + "deific\n", + "deifical\n", + "deification\n", + "deifications\n", + "deified\n", + "deifier\n", + "deifies\n", + "deiform\n", + "deify\n", + "deifying\n", + "deign\n", + "deigned\n", + "deigning\n", + "deigns\n", + "deil\n", + "deils\n", + "deionize\n", + "deionized\n", + "deionizes\n", + "deionizing\n", + "deism\n", + "deisms\n", + "deist\n", + "deistic\n", + "deists\n", + "deities\n", + "deity\n", + "deject\n", + "dejecta\n", + "dejected\n", + "dejecting\n", + "dejection\n", + "dejections\n", + "dejects\n", + "dejeuner\n", + "dejeuners\n", + "dekagram\n", + "dekagrams\n", + "dekare\n", + "dekares\n", + "deke\n", + "deked\n", + "dekes\n", + "deking\n", + "del\n", + "delaine\n", + "delaines\n", + "delate\n", + "delated\n", + "delates\n", + "delating\n", + "delation\n", + "delations\n", + "delator\n", + "delators\n", + "delay\n", + "delayed\n", + "delayer\n", + "delayers\n", + "delaying\n", + "delays\n", + "dele\n", + "delead\n", + "deleaded\n", + "deleading\n", + "deleads\n", + "deled\n", + "delegacies\n", + "delegacy\n", + "delegate\n", + "delegated\n", + "delegates\n", + "delegating\n", + "delegation\n", + "delegations\n", + "deleing\n", + "deles\n", + "delete\n", + "deleted\n", + "deleterious\n", + "deletes\n", + "deleting\n", + "deletion\n", + "deletions\n", + "delf\n", + "delfs\n", + "delft\n", + "delfts\n", + "deli\n", + "deliberate\n", + "deliberated\n", + "deliberately\n", + "deliberateness\n", + "deliberatenesses\n", + "deliberates\n", + "deliberating\n", + "deliberation\n", + "deliberations\n", + "deliberative\n", + "delicacies\n", + "delicacy\n", + "delicate\n", + "delicates\n", + "delicatessen\n", + "delicatessens\n", + "delicious\n", + "deliciously\n", + "delict\n", + "delicts\n", + "delight\n", + "delighted\n", + "delighting\n", + "delights\n", + "delime\n", + "delimed\n", + "delimes\n", + "deliming\n", + "delimit\n", + "delimited\n", + "delimiter\n", + "delimiters\n", + "delimiting\n", + "delimits\n", + "delineate\n", + "delineated\n", + "delineates\n", + "delineating\n", + "delineation\n", + "delineations\n", + "delinquencies\n", + "delinquency\n", + "delinquent\n", + "delinquents\n", + "deliria\n", + "delirious\n", + "delirium\n", + "deliriums\n", + "delis\n", + "delist\n", + "delisted\n", + "delisting\n", + "delists\n", + "deliver\n", + "deliverance\n", + "deliverances\n", + "delivered\n", + "deliverer\n", + "deliverers\n", + "deliveries\n", + "delivering\n", + "delivers\n", + "delivery\n", + "dell\n", + "dellies\n", + "dells\n", + "delly\n", + "delouse\n", + "deloused\n", + "delouses\n", + "delousing\n", + "dels\n", + "delta\n", + "deltaic\n", + "deltas\n", + "deltic\n", + "deltoid\n", + "deltoids\n", + "delude\n", + "deluded\n", + "deluder\n", + "deluders\n", + "deludes\n", + "deluding\n", + "deluge\n", + "deluged\n", + "deluges\n", + "deluging\n", + "delusion\n", + "delusions\n", + "delusive\n", + "delusory\n", + "deluster\n", + "delustered\n", + "delustering\n", + "delusters\n", + "deluxe\n", + "delve\n", + "delved\n", + "delver\n", + "delvers\n", + "delves\n", + "delving\n", + "demagog\n", + "demagogies\n", + "demagogs\n", + "demagogue\n", + "demagogueries\n", + "demagoguery\n", + "demagogues\n", + "demagogy\n", + "demand\n", + "demanded\n", + "demander\n", + "demanders\n", + "demanding\n", + "demands\n", + "demarcation\n", + "demarcations\n", + "demarche\n", + "demarches\n", + "demark\n", + "demarked\n", + "demarking\n", + "demarks\n", + "demast\n", + "demasted\n", + "demasting\n", + "demasts\n", + "deme\n", + "demean\n", + "demeaned\n", + "demeaning\n", + "demeanor\n", + "demeanors\n", + "demeans\n", + "dement\n", + "demented\n", + "dementia\n", + "dementias\n", + "dementing\n", + "dements\n", + "demerit\n", + "demerited\n", + "demeriting\n", + "demerits\n", + "demes\n", + "demesne\n", + "demesnes\n", + "demies\n", + "demigod\n", + "demigods\n", + "demijohn\n", + "demijohns\n", + "demilune\n", + "demilunes\n", + "demirep\n", + "demireps\n", + "demise\n", + "demised\n", + "demises\n", + "demising\n", + "demit\n", + "demitasse\n", + "demitasses\n", + "demits\n", + "demitted\n", + "demitting\n", + "demiurge\n", + "demiurges\n", + "demivolt\n", + "demivolts\n", + "demo\n", + "demob\n", + "demobbed\n", + "demobbing\n", + "demobilization\n", + "demobilizations\n", + "demobilize\n", + "demobilized\n", + "demobilizes\n", + "demobilizing\n", + "demobs\n", + "democracies\n", + "democracy\n", + "democrat\n", + "democratic\n", + "democratize\n", + "democratized\n", + "democratizes\n", + "democratizing\n", + "democrats\n", + "demode\n", + "demoded\n", + "demographic\n", + "demography\n", + "demolish\n", + "demolished\n", + "demolishes\n", + "demolishing\n", + "demolition\n", + "demolitions\n", + "demon\n", + "demoness\n", + "demonesses\n", + "demoniac\n", + "demoniacs\n", + "demonian\n", + "demonic\n", + "demonise\n", + "demonised\n", + "demonises\n", + "demonising\n", + "demonism\n", + "demonisms\n", + "demonist\n", + "demonists\n", + "demonize\n", + "demonized\n", + "demonizes\n", + "demonizing\n", + "demons\n", + "demonstrable\n", + "demonstrate\n", + "demonstrated\n", + "demonstrates\n", + "demonstrating\n", + "demonstration\n", + "demonstrations\n", + "demonstrative\n", + "demonstrator\n", + "demonstrators\n", + "demoralize\n", + "demoralized\n", + "demoralizes\n", + "demoralizing\n", + "demos\n", + "demoses\n", + "demote\n", + "demoted\n", + "demotes\n", + "demotic\n", + "demotics\n", + "demoting\n", + "demotion\n", + "demotions\n", + "demotist\n", + "demotists\n", + "demount\n", + "demounted\n", + "demounting\n", + "demounts\n", + "dempster\n", + "dempsters\n", + "demur\n", + "demure\n", + "demurely\n", + "demurer\n", + "demurest\n", + "demurral\n", + "demurrals\n", + "demurred\n", + "demurrer\n", + "demurrers\n", + "demurring\n", + "demurs\n", + "demy\n", + "den\n", + "denarii\n", + "denarius\n", + "denary\n", + "denature\n", + "denatured\n", + "denatures\n", + "denaturing\n", + "denazified\n", + "denazifies\n", + "denazify\n", + "denazifying\n", + "dendrite\n", + "dendrites\n", + "dendroid\n", + "dendron\n", + "dendrons\n", + "dene\n", + "denes\n", + "dengue\n", + "dengues\n", + "deniable\n", + "deniably\n", + "denial\n", + "denials\n", + "denied\n", + "denier\n", + "deniers\n", + "denies\n", + "denim\n", + "denims\n", + "denizen\n", + "denizened\n", + "denizening\n", + "denizens\n", + "denned\n", + "denning\n", + "denomination\n", + "denominational\n", + "denominations\n", + "denominator\n", + "denominators\n", + "denotation\n", + "denotations\n", + "denotative\n", + "denote\n", + "denoted\n", + "denotes\n", + "denoting\n", + "denotive\n", + "denouement\n", + "denouements\n", + "denounce\n", + "denounced\n", + "denounces\n", + "denouncing\n", + "dens\n", + "dense\n", + "densely\n", + "denseness\n", + "densenesses\n", + "denser\n", + "densest\n", + "densified\n", + "densifies\n", + "densify\n", + "densifying\n", + "densities\n", + "density\n", + "dent\n", + "dental\n", + "dentalia\n", + "dentally\n", + "dentals\n", + "dentate\n", + "dentated\n", + "dented\n", + "denticle\n", + "denticles\n", + "dentifrice\n", + "dentifrices\n", + "dentil\n", + "dentils\n", + "dentin\n", + "dentinal\n", + "dentine\n", + "dentines\n", + "denting\n", + "dentins\n", + "dentist\n", + "dentistries\n", + "dentistry\n", + "dentists\n", + "dentition\n", + "dentitions\n", + "dentoid\n", + "dents\n", + "dentural\n", + "denture\n", + "dentures\n", + "denudate\n", + "denudated\n", + "denudates\n", + "denudating\n", + "denude\n", + "denuded\n", + "denuder\n", + "denuders\n", + "denudes\n", + "denuding\n", + "denunciation\n", + "denunciations\n", + "deny\n", + "denying\n", + "deodand\n", + "deodands\n", + "deodar\n", + "deodara\n", + "deodaras\n", + "deodars\n", + "deodorant\n", + "deodorants\n", + "deodorize\n", + "deodorized\n", + "deodorizes\n", + "deodorizing\n", + "depaint\n", + "depainted\n", + "depainting\n", + "depaints\n", + "depart\n", + "departed\n", + "departing\n", + "department\n", + "departmental\n", + "departments\n", + "departs\n", + "departure\n", + "departures\n", + "depend\n", + "dependabilities\n", + "dependability\n", + "dependable\n", + "depended\n", + "dependence\n", + "dependences\n", + "dependencies\n", + "dependency\n", + "dependent\n", + "dependents\n", + "depending\n", + "depends\n", + "deperm\n", + "depermed\n", + "deperming\n", + "deperms\n", + "depict\n", + "depicted\n", + "depicter\n", + "depicters\n", + "depicting\n", + "depiction\n", + "depictions\n", + "depictor\n", + "depictors\n", + "depicts\n", + "depilate\n", + "depilated\n", + "depilates\n", + "depilating\n", + "deplane\n", + "deplaned\n", + "deplanes\n", + "deplaning\n", + "deplete\n", + "depleted\n", + "depletes\n", + "depleting\n", + "depletion\n", + "depletions\n", + "deplorable\n", + "deplore\n", + "deplored\n", + "deplorer\n", + "deplorers\n", + "deplores\n", + "deploring\n", + "deploy\n", + "deployed\n", + "deploying\n", + "deployment\n", + "deployments\n", + "deploys\n", + "deplume\n", + "deplumed\n", + "deplumes\n", + "depluming\n", + "depolish\n", + "depolished\n", + "depolishes\n", + "depolishing\n", + "depone\n", + "deponed\n", + "deponent\n", + "deponents\n", + "depones\n", + "deponing\n", + "deport\n", + "deportation\n", + "deportations\n", + "deported\n", + "deportee\n", + "deportees\n", + "deporting\n", + "deportment\n", + "deportments\n", + "deports\n", + "deposal\n", + "deposals\n", + "depose\n", + "deposed\n", + "deposer\n", + "deposers\n", + "deposes\n", + "deposing\n", + "deposit\n", + "deposited\n", + "depositing\n", + "deposition\n", + "depositions\n", + "depositor\n", + "depositories\n", + "depositors\n", + "depository\n", + "deposits\n", + "depot\n", + "depots\n", + "depravation\n", + "depravations\n", + "deprave\n", + "depraved\n", + "depraver\n", + "depravers\n", + "depraves\n", + "depraving\n", + "depravities\n", + "depravity\n", + "deprecate\n", + "deprecated\n", + "deprecates\n", + "deprecating\n", + "deprecation\n", + "deprecations\n", + "deprecatory\n", + "depreciate\n", + "depreciated\n", + "depreciates\n", + "depreciating\n", + "depreciation\n", + "depreciations\n", + "depredation\n", + "depredations\n", + "depress\n", + "depressant\n", + "depressants\n", + "depressed\n", + "depresses\n", + "depressing\n", + "depression\n", + "depressions\n", + "depressive\n", + "depressor\n", + "depressors\n", + "deprival\n", + "deprivals\n", + "deprive\n", + "deprived\n", + "depriver\n", + "deprivers\n", + "deprives\n", + "depriving\n", + "depside\n", + "depsides\n", + "depth\n", + "depths\n", + "depurate\n", + "depurated\n", + "depurates\n", + "depurating\n", + "deputation\n", + "deputations\n", + "depute\n", + "deputed\n", + "deputes\n", + "deputies\n", + "deputing\n", + "deputize\n", + "deputized\n", + "deputizes\n", + "deputizing\n", + "deputy\n", + "deraign\n", + "deraigned\n", + "deraigning\n", + "deraigns\n", + "derail\n", + "derailed\n", + "derailing\n", + "derails\n", + "derange\n", + "deranged\n", + "derangement\n", + "derangements\n", + "deranges\n", + "deranging\n", + "derat\n", + "derats\n", + "deratted\n", + "deratting\n", + "deray\n", + "derays\n", + "derbies\n", + "derby\n", + "dere\n", + "derelict\n", + "dereliction\n", + "derelictions\n", + "derelicts\n", + "deride\n", + "derided\n", + "derider\n", + "deriders\n", + "derides\n", + "deriding\n", + "deringer\n", + "deringers\n", + "derision\n", + "derisions\n", + "derisive\n", + "derisory\n", + "derivate\n", + "derivates\n", + "derivation\n", + "derivations\n", + "derivative\n", + "derivatives\n", + "derive\n", + "derived\n", + "deriver\n", + "derivers\n", + "derives\n", + "deriving\n", + "derm\n", + "derma\n", + "dermal\n", + "dermas\n", + "dermatitis\n", + "dermatologies\n", + "dermatologist\n", + "dermatologists\n", + "dermatology\n", + "dermic\n", + "dermis\n", + "dermises\n", + "dermoid\n", + "derms\n", + "dernier\n", + "derogate\n", + "derogated\n", + "derogates\n", + "derogating\n", + "derogatory\n", + "derrick\n", + "derricks\n", + "derriere\n", + "derrieres\n", + "derries\n", + "derris\n", + "derrises\n", + "derry\n", + "dervish\n", + "dervishes\n", + "des\n", + "desalt\n", + "desalted\n", + "desalter\n", + "desalters\n", + "desalting\n", + "desalts\n", + "desand\n", + "desanded\n", + "desanding\n", + "desands\n", + "descant\n", + "descanted\n", + "descanting\n", + "descants\n", + "descend\n", + "descendant\n", + "descendants\n", + "descended\n", + "descendent\n", + "descendents\n", + "descending\n", + "descends\n", + "descent\n", + "descents\n", + "describable\n", + "describably\n", + "describe\n", + "described\n", + "describes\n", + "describing\n", + "descried\n", + "descrier\n", + "descriers\n", + "descries\n", + "description\n", + "descriptions\n", + "descriptive\n", + "descriptor\n", + "descriptors\n", + "descry\n", + "descrying\n", + "desecrate\n", + "desecrated\n", + "desecrates\n", + "desecrating\n", + "desecration\n", + "desecrations\n", + "desegregate\n", + "desegregated\n", + "desegregates\n", + "desegregating\n", + "desegregation\n", + "desegregations\n", + "deselect\n", + "deselected\n", + "deselecting\n", + "deselects\n", + "desert\n", + "deserted\n", + "deserter\n", + "deserters\n", + "desertic\n", + "deserting\n", + "deserts\n", + "deserve\n", + "deserved\n", + "deserver\n", + "deservers\n", + "deserves\n", + "deserving\n", + "desex\n", + "desexed\n", + "desexes\n", + "desexing\n", + "desiccate\n", + "desiccated\n", + "desiccates\n", + "desiccating\n", + "desiccation\n", + "desiccations\n", + "design\n", + "designate\n", + "designated\n", + "designates\n", + "designating\n", + "designation\n", + "designations\n", + "designed\n", + "designee\n", + "designees\n", + "designer\n", + "designers\n", + "designing\n", + "designs\n", + "desilver\n", + "desilvered\n", + "desilvering\n", + "desilvers\n", + "desinent\n", + "desirabilities\n", + "desirability\n", + "desirable\n", + "desire\n", + "desired\n", + "desirer\n", + "desirers\n", + "desires\n", + "desiring\n", + "desirous\n", + "desist\n", + "desisted\n", + "desisting\n", + "desists\n", + "desk\n", + "deskman\n", + "deskmen\n", + "desks\n", + "desman\n", + "desmans\n", + "desmid\n", + "desmids\n", + "desmoid\n", + "desmoids\n", + "desolate\n", + "desolated\n", + "desolates\n", + "desolating\n", + "desolation\n", + "desolations\n", + "desorb\n", + "desorbed\n", + "desorbing\n", + "desorbs\n", + "despair\n", + "despaired\n", + "despairing\n", + "despairs\n", + "despatch\n", + "despatched\n", + "despatches\n", + "despatching\n", + "desperado\n", + "desperadoes\n", + "desperados\n", + "desperate\n", + "desperately\n", + "desperation\n", + "desperations\n", + "despicable\n", + "despise\n", + "despised\n", + "despiser\n", + "despisers\n", + "despises\n", + "despising\n", + "despite\n", + "despited\n", + "despites\n", + "despiting\n", + "despoil\n", + "despoiled\n", + "despoiling\n", + "despoils\n", + "despond\n", + "desponded\n", + "despondencies\n", + "despondency\n", + "despondent\n", + "desponding\n", + "desponds\n", + "despot\n", + "despotic\n", + "despotism\n", + "despotisms\n", + "despots\n", + "desquamation\n", + "desquamations\n", + "dessert\n", + "desserts\n", + "destain\n", + "destained\n", + "destaining\n", + "destains\n", + "destination\n", + "destinations\n", + "destine\n", + "destined\n", + "destines\n", + "destinies\n", + "destining\n", + "destiny\n", + "destitute\n", + "destitution\n", + "destitutions\n", + "destrier\n", + "destriers\n", + "destroy\n", + "destroyed\n", + "destroyer\n", + "destroyers\n", + "destroying\n", + "destroys\n", + "destruct\n", + "destructed\n", + "destructibilities\n", + "destructibility\n", + "destructible\n", + "destructing\n", + "destruction\n", + "destructions\n", + "destructive\n", + "destructs\n", + "desugar\n", + "desugared\n", + "desugaring\n", + "desugars\n", + "desulfur\n", + "desulfured\n", + "desulfuring\n", + "desulfurs\n", + "desultory\n", + "detach\n", + "detached\n", + "detacher\n", + "detachers\n", + "detaches\n", + "detaching\n", + "detachment\n", + "detachments\n", + "detail\n", + "detailed\n", + "detailer\n", + "detailers\n", + "detailing\n", + "details\n", + "detain\n", + "detained\n", + "detainee\n", + "detainees\n", + "detainer\n", + "detainers\n", + "detaining\n", + "detains\n", + "detect\n", + "detectable\n", + "detected\n", + "detecter\n", + "detecters\n", + "detecting\n", + "detection\n", + "detections\n", + "detective\n", + "detectives\n", + "detector\n", + "detectors\n", + "detects\n", + "detent\n", + "detente\n", + "detentes\n", + "detention\n", + "detentions\n", + "detents\n", + "deter\n", + "deterge\n", + "deterged\n", + "detergent\n", + "detergents\n", + "deterger\n", + "detergers\n", + "deterges\n", + "deterging\n", + "deteriorate\n", + "deteriorated\n", + "deteriorates\n", + "deteriorating\n", + "deterioration\n", + "deteriorations\n", + "determinant\n", + "determinants\n", + "determination\n", + "determinations\n", + "determine\n", + "determined\n", + "determines\n", + "determining\n", + "deterred\n", + "deterrence\n", + "deterrences\n", + "deterrent\n", + "deterrents\n", + "deterrer\n", + "deterrers\n", + "deterring\n", + "deters\n", + "detest\n", + "detestable\n", + "detestation\n", + "detestations\n", + "detested\n", + "detester\n", + "detesters\n", + "detesting\n", + "detests\n", + "dethrone\n", + "dethroned\n", + "dethrones\n", + "dethroning\n", + "detick\n", + "deticked\n", + "deticker\n", + "detickers\n", + "deticking\n", + "deticks\n", + "detinue\n", + "detinues\n", + "detonate\n", + "detonated\n", + "detonates\n", + "detonating\n", + "detonation\n", + "detonations\n", + "detonator\n", + "detonators\n", + "detour\n", + "detoured\n", + "detouring\n", + "detours\n", + "detoxified\n", + "detoxifies\n", + "detoxify\n", + "detoxifying\n", + "detract\n", + "detracted\n", + "detracting\n", + "detraction\n", + "detractions\n", + "detractor\n", + "detractors\n", + "detracts\n", + "detrain\n", + "detrained\n", + "detraining\n", + "detrains\n", + "detriment\n", + "detrimental\n", + "detrimentally\n", + "detriments\n", + "detrital\n", + "detritus\n", + "detrude\n", + "detruded\n", + "detrudes\n", + "detruding\n", + "deuce\n", + "deuced\n", + "deucedly\n", + "deuces\n", + "deucing\n", + "deuteric\n", + "deuteron\n", + "deuterons\n", + "deutzia\n", + "deutzias\n", + "dev\n", + "deva\n", + "devaluation\n", + "devaluations\n", + "devalue\n", + "devalued\n", + "devalues\n", + "devaluing\n", + "devas\n", + "devastate\n", + "devastated\n", + "devastates\n", + "devastating\n", + "devastation\n", + "devastations\n", + "devein\n", + "deveined\n", + "deveining\n", + "deveins\n", + "devel\n", + "develed\n", + "develing\n", + "develop\n", + "develope\n", + "developed\n", + "developer\n", + "developers\n", + "developes\n", + "developing\n", + "development\n", + "developmental\n", + "developments\n", + "develops\n", + "devels\n", + "devest\n", + "devested\n", + "devesting\n", + "devests\n", + "deviance\n", + "deviances\n", + "deviancies\n", + "deviancy\n", + "deviant\n", + "deviants\n", + "deviate\n", + "deviated\n", + "deviates\n", + "deviating\n", + "deviation\n", + "deviations\n", + "deviator\n", + "deviators\n", + "device\n", + "devices\n", + "devil\n", + "deviled\n", + "deviling\n", + "devilish\n", + "devilkin\n", + "devilkins\n", + "devilled\n", + "devilling\n", + "devilries\n", + "devilry\n", + "devils\n", + "deviltries\n", + "deviltry\n", + "devious\n", + "devisal\n", + "devisals\n", + "devise\n", + "devised\n", + "devisee\n", + "devisees\n", + "deviser\n", + "devisers\n", + "devises\n", + "devising\n", + "devisor\n", + "devisors\n", + "devoice\n", + "devoiced\n", + "devoices\n", + "devoicing\n", + "devoid\n", + "devoir\n", + "devoirs\n", + "devolve\n", + "devolved\n", + "devolves\n", + "devolving\n", + "devon\n", + "devons\n", + "devote\n", + "devoted\n", + "devotee\n", + "devotees\n", + "devotes\n", + "devoting\n", + "devotion\n", + "devotional\n", + "devotions\n", + "devour\n", + "devoured\n", + "devourer\n", + "devourers\n", + "devouring\n", + "devours\n", + "devout\n", + "devoutly\n", + "devoutness\n", + "devoutnesses\n", + "devs\n", + "dew\n", + "dewan\n", + "dewans\n", + "dewater\n", + "dewatered\n", + "dewatering\n", + "dewaters\n", + "dewax\n", + "dewaxed\n", + "dewaxes\n", + "dewaxing\n", + "dewberries\n", + "dewberry\n", + "dewclaw\n", + "dewclaws\n", + "dewdrop\n", + "dewdrops\n", + "dewed\n", + "dewfall\n", + "dewfalls\n", + "dewier\n", + "dewiest\n", + "dewily\n", + "dewiness\n", + "dewinesses\n", + "dewing\n", + "dewlap\n", + "dewlaps\n", + "dewless\n", + "dewool\n", + "dewooled\n", + "dewooling\n", + "dewools\n", + "deworm\n", + "dewormed\n", + "deworming\n", + "deworms\n", + "dews\n", + "dewy\n", + "dex\n", + "dexes\n", + "dexies\n", + "dexter\n", + "dexterous\n", + "dexterously\n", + "dextral\n", + "dextran\n", + "dextrans\n", + "dextrin\n", + "dextrine\n", + "dextrines\n", + "dextrins\n", + "dextro\n", + "dextrose\n", + "dextroses\n", + "dextrous\n", + "dey\n", + "deys\n", + "dezinc\n", + "dezinced\n", + "dezincing\n", + "dezincked\n", + "dezincking\n", + "dezincs\n", + "dhak\n", + "dhaks\n", + "dharma\n", + "dharmas\n", + "dharmic\n", + "dharna\n", + "dharnas\n", + "dhole\n", + "dholes\n", + "dhoolies\n", + "dhooly\n", + "dhoora\n", + "dhooras\n", + "dhooti\n", + "dhootie\n", + "dhooties\n", + "dhootis\n", + "dhoti\n", + "dhotis\n", + "dhourra\n", + "dhourras\n", + "dhow\n", + "dhows\n", + "dhurna\n", + "dhurnas\n", + "dhuti\n", + "dhutis\n", + "diabase\n", + "diabases\n", + "diabasic\n", + "diabetes\n", + "diabetic\n", + "diabetics\n", + "diableries\n", + "diablery\n", + "diabolic\n", + "diabolical\n", + "diabolo\n", + "diabolos\n", + "diacetyl\n", + "diacetyls\n", + "diacid\n", + "diacidic\n", + "diacids\n", + "diaconal\n", + "diadem\n", + "diademed\n", + "diademing\n", + "diadems\n", + "diagnose\n", + "diagnosed\n", + "diagnoses\n", + "diagnosing\n", + "diagnosis\n", + "diagnostic\n", + "diagnostics\n", + "diagonal\n", + "diagonally\n", + "diagonals\n", + "diagram\n", + "diagramed\n", + "diagraming\n", + "diagrammatic\n", + "diagrammed\n", + "diagramming\n", + "diagrams\n", + "diagraph\n", + "diagraphs\n", + "dial\n", + "dialect\n", + "dialectic\n", + "dialects\n", + "dialed\n", + "dialer\n", + "dialers\n", + "dialing\n", + "dialings\n", + "dialist\n", + "dialists\n", + "diallage\n", + "diallages\n", + "dialled\n", + "diallel\n", + "dialler\n", + "diallers\n", + "dialling\n", + "diallings\n", + "diallist\n", + "diallists\n", + "dialog\n", + "dialoger\n", + "dialogers\n", + "dialogged\n", + "dialogging\n", + "dialogic\n", + "dialogs\n", + "dialogue\n", + "dialogued\n", + "dialogues\n", + "dialoguing\n", + "dials\n", + "dialyse\n", + "dialysed\n", + "dialyser\n", + "dialysers\n", + "dialyses\n", + "dialysing\n", + "dialysis\n", + "dialytic\n", + "dialyze\n", + "dialyzed\n", + "dialyzer\n", + "dialyzers\n", + "dialyzes\n", + "dialyzing\n", + "diameter\n", + "diameters\n", + "diametric\n", + "diametrical\n", + "diametrically\n", + "diamide\n", + "diamides\n", + "diamin\n", + "diamine\n", + "diamines\n", + "diamins\n", + "diamond\n", + "diamonded\n", + "diamonding\n", + "diamonds\n", + "dianthus\n", + "dianthuses\n", + "diapason\n", + "diapasons\n", + "diapause\n", + "diapaused\n", + "diapauses\n", + "diapausing\n", + "diaper\n", + "diapered\n", + "diapering\n", + "diapers\n", + "diaphone\n", + "diaphones\n", + "diaphonies\n", + "diaphony\n", + "diaphragm\n", + "diaphragmatic\n", + "diaphragms\n", + "diapir\n", + "diapiric\n", + "diapirs\n", + "diapsid\n", + "diarchic\n", + "diarchies\n", + "diarchy\n", + "diaries\n", + "diarist\n", + "diarists\n", + "diarrhea\n", + "diarrheas\n", + "diarrhoea\n", + "diarrhoeas\n", + "diary\n", + "diaspora\n", + "diasporas\n", + "diaspore\n", + "diaspores\n", + "diastase\n", + "diastases\n", + "diastema\n", + "diastemata\n", + "diaster\n", + "diasters\n", + "diastole\n", + "diastoles\n", + "diastral\n", + "diatom\n", + "diatomic\n", + "diatoms\n", + "diatonic\n", + "diatribe\n", + "diatribes\n", + "diazepam\n", + "diazepams\n", + "diazin\n", + "diazine\n", + "diazines\n", + "diazins\n", + "diazo\n", + "diazole\n", + "diazoles\n", + "dib\n", + "dibasic\n", + "dibbed\n", + "dibber\n", + "dibbers\n", + "dibbing\n", + "dibble\n", + "dibbled\n", + "dibbler\n", + "dibblers\n", + "dibbles\n", + "dibbling\n", + "dibbuk\n", + "dibbukim\n", + "dibbuks\n", + "dibs\n", + "dicast\n", + "dicastic\n", + "dicasts\n", + "dice\n", + "diced\n", + "dicentra\n", + "dicentras\n", + "dicer\n", + "dicers\n", + "dices\n", + "dicey\n", + "dichasia\n", + "dichotic\n", + "dichroic\n", + "dicier\n", + "diciest\n", + "dicing\n", + "dick\n", + "dickens\n", + "dickenses\n", + "dicker\n", + "dickered\n", + "dickering\n", + "dickers\n", + "dickey\n", + "dickeys\n", + "dickie\n", + "dickies\n", + "dicks\n", + "dicky\n", + "diclinies\n", + "dicliny\n", + "dicot\n", + "dicots\n", + "dicotyl\n", + "dicotyls\n", + "dicrotal\n", + "dicrotic\n", + "dicta\n", + "dictate\n", + "dictated\n", + "dictates\n", + "dictating\n", + "dictation\n", + "dictations\n", + "dictator\n", + "dictatorial\n", + "dictators\n", + "dictatorship\n", + "dictatorships\n", + "diction\n", + "dictionaries\n", + "dictionary\n", + "dictions\n", + "dictum\n", + "dictums\n", + "dicyclic\n", + "dicyclies\n", + "dicycly\n", + "did\n", + "didact\n", + "didactic\n", + "didacts\n", + "didactyl\n", + "didapper\n", + "didappers\n", + "diddle\n", + "diddled\n", + "diddler\n", + "diddlers\n", + "diddles\n", + "diddling\n", + "didies\n", + "dido\n", + "didoes\n", + "didos\n", + "didst\n", + "didy\n", + "didymium\n", + "didymiums\n", + "didymous\n", + "didynamies\n", + "didynamy\n", + "die\n", + "dieback\n", + "diebacks\n", + "diecious\n", + "died\n", + "diehard\n", + "diehards\n", + "dieing\n", + "diel\n", + "dieldrin\n", + "dieldrins\n", + "diemaker\n", + "diemakers\n", + "diene\n", + "dienes\n", + "diereses\n", + "dieresis\n", + "dieretic\n", + "dies\n", + "diesel\n", + "diesels\n", + "dieses\n", + "diesis\n", + "diester\n", + "diesters\n", + "diestock\n", + "diestocks\n", + "diestrum\n", + "diestrums\n", + "diestrus\n", + "diestruses\n", + "diet\n", + "dietaries\n", + "dietary\n", + "dieted\n", + "dieter\n", + "dieters\n", + "dietetic\n", + "dietetics\n", + "dietician\n", + "dieticians\n", + "dieting\n", + "diets\n", + "differ\n", + "differed\n", + "difference\n", + "differences\n", + "different\n", + "differential\n", + "differentials\n", + "differentiate\n", + "differentiated\n", + "differentiates\n", + "differentiating\n", + "differentiation\n", + "differently\n", + "differing\n", + "differs\n", + "difficult\n", + "difficulties\n", + "difficulty\n", + "diffidence\n", + "diffidences\n", + "diffident\n", + "diffract\n", + "diffracted\n", + "diffracting\n", + "diffracts\n", + "diffuse\n", + "diffused\n", + "diffuser\n", + "diffusers\n", + "diffuses\n", + "diffusing\n", + "diffusion\n", + "diffusions\n", + "diffusor\n", + "diffusors\n", + "dig\n", + "digamies\n", + "digamist\n", + "digamists\n", + "digamma\n", + "digammas\n", + "digamous\n", + "digamy\n", + "digest\n", + "digested\n", + "digester\n", + "digesters\n", + "digesting\n", + "digestion\n", + "digestions\n", + "digestive\n", + "digestor\n", + "digestors\n", + "digests\n", + "digged\n", + "digger\n", + "diggers\n", + "digging\n", + "diggings\n", + "dight\n", + "dighted\n", + "dighting\n", + "dights\n", + "digit\n", + "digital\n", + "digitalis\n", + "digitally\n", + "digitals\n", + "digitate\n", + "digitize\n", + "digitized\n", + "digitizes\n", + "digitizing\n", + "digits\n", + "diglot\n", + "diglots\n", + "dignified\n", + "dignifies\n", + "dignify\n", + "dignifying\n", + "dignitaries\n", + "dignitary\n", + "dignities\n", + "dignity\n", + "digoxin\n", + "digoxins\n", + "digraph\n", + "digraphs\n", + "digress\n", + "digressed\n", + "digresses\n", + "digressing\n", + "digression\n", + "digressions\n", + "digs\n", + "dihedral\n", + "dihedrals\n", + "dihedron\n", + "dihedrons\n", + "dihybrid\n", + "dihybrids\n", + "dihydric\n", + "dikdik\n", + "dikdiks\n", + "dike\n", + "diked\n", + "diker\n", + "dikers\n", + "dikes\n", + "diking\n", + "diktat\n", + "diktats\n", + "dilapidated\n", + "dilapidation\n", + "dilapidations\n", + "dilatant\n", + "dilatants\n", + "dilatate\n", + "dilatation\n", + "dilatations\n", + "dilate\n", + "dilated\n", + "dilater\n", + "dilaters\n", + "dilates\n", + "dilating\n", + "dilation\n", + "dilations\n", + "dilative\n", + "dilator\n", + "dilators\n", + "dilatory\n", + "dildo\n", + "dildoe\n", + "dildoes\n", + "dildos\n", + "dilemma\n", + "dilemmas\n", + "dilemmic\n", + "dilettante\n", + "dilettantes\n", + "dilettanti\n", + "diligence\n", + "diligences\n", + "diligent\n", + "diligently\n", + "dill\n", + "dillies\n", + "dills\n", + "dilly\n", + "dillydallied\n", + "dillydallies\n", + "dillydally\n", + "dillydallying\n", + "diluent\n", + "diluents\n", + "dilute\n", + "diluted\n", + "diluter\n", + "diluters\n", + "dilutes\n", + "diluting\n", + "dilution\n", + "dilutions\n", + "dilutive\n", + "dilutor\n", + "dilutors\n", + "diluvia\n", + "diluvial\n", + "diluvian\n", + "diluvion\n", + "diluvions\n", + "diluvium\n", + "diluviums\n", + "dim\n", + "dime\n", + "dimension\n", + "dimensional\n", + "dimensions\n", + "dimer\n", + "dimeric\n", + "dimerism\n", + "dimerisms\n", + "dimerize\n", + "dimerized\n", + "dimerizes\n", + "dimerizing\n", + "dimerous\n", + "dimers\n", + "dimes\n", + "dimeter\n", + "dimeters\n", + "dimethyl\n", + "dimethyls\n", + "dimetric\n", + "diminish\n", + "diminished\n", + "diminishes\n", + "diminishing\n", + "diminutive\n", + "dimities\n", + "dimity\n", + "dimly\n", + "dimmable\n", + "dimmed\n", + "dimmer\n", + "dimmers\n", + "dimmest\n", + "dimming\n", + "dimness\n", + "dimnesses\n", + "dimorph\n", + "dimorphs\n", + "dimout\n", + "dimouts\n", + "dimple\n", + "dimpled\n", + "dimples\n", + "dimplier\n", + "dimpliest\n", + "dimpling\n", + "dimply\n", + "dims\n", + "dimwit\n", + "dimwits\n", + "din\n", + "dinar\n", + "dinars\n", + "dindle\n", + "dindled\n", + "dindles\n", + "dindling\n", + "dine\n", + "dined\n", + "diner\n", + "dineric\n", + "dinero\n", + "dineros\n", + "diners\n", + "dines\n", + "dinette\n", + "dinettes\n", + "ding\n", + "dingbat\n", + "dingbats\n", + "dingdong\n", + "dingdonged\n", + "dingdonging\n", + "dingdongs\n", + "dinged\n", + "dingey\n", + "dingeys\n", + "dinghies\n", + "dinghy\n", + "dingier\n", + "dingies\n", + "dingiest\n", + "dingily\n", + "dinginess\n", + "dinginesses\n", + "dinging\n", + "dingle\n", + "dingles\n", + "dingo\n", + "dingoes\n", + "dings\n", + "dingus\n", + "dinguses\n", + "dingy\n", + "dining\n", + "dink\n", + "dinked\n", + "dinkey\n", + "dinkeys\n", + "dinkier\n", + "dinkies\n", + "dinkiest\n", + "dinking\n", + "dinkly\n", + "dinks\n", + "dinkum\n", + "dinky\n", + "dinned\n", + "dinner\n", + "dinners\n", + "dinning\n", + "dinosaur\n", + "dinosaurs\n", + "dins\n", + "dint\n", + "dinted\n", + "dinting\n", + "dints\n", + "diobol\n", + "diobolon\n", + "diobolons\n", + "diobols\n", + "diocesan\n", + "diocesans\n", + "diocese\n", + "dioceses\n", + "diode\n", + "diodes\n", + "dioecism\n", + "dioecisms\n", + "dioicous\n", + "diol\n", + "diolefin\n", + "diolefins\n", + "diols\n", + "diopside\n", + "diopsides\n", + "dioptase\n", + "dioptases\n", + "diopter\n", + "diopters\n", + "dioptral\n", + "dioptre\n", + "dioptres\n", + "dioptric\n", + "diorama\n", + "dioramas\n", + "dioramic\n", + "diorite\n", + "diorites\n", + "dioritic\n", + "dioxane\n", + "dioxanes\n", + "dioxid\n", + "dioxide\n", + "dioxides\n", + "dioxids\n", + "dip\n", + "diphase\n", + "diphasic\n", + "diphenyl\n", + "diphenyls\n", + "diphtheria\n", + "diphtherias\n", + "diphthong\n", + "diphthongs\n", + "diplegia\n", + "diplegias\n", + "diplex\n", + "diploe\n", + "diploes\n", + "diploic\n", + "diploid\n", + "diploidies\n", + "diploids\n", + "diploidy\n", + "diploma\n", + "diplomacies\n", + "diplomacy\n", + "diplomaed\n", + "diplomaing\n", + "diplomas\n", + "diplomat\n", + "diplomata\n", + "diplomatic\n", + "diplomats\n", + "diplont\n", + "diplonts\n", + "diplopia\n", + "diplopias\n", + "diplopic\n", + "diplopod\n", + "diplopods\n", + "diploses\n", + "diplosis\n", + "dipnoan\n", + "dipnoans\n", + "dipodic\n", + "dipodies\n", + "dipody\n", + "dipolar\n", + "dipole\n", + "dipoles\n", + "dippable\n", + "dipped\n", + "dipper\n", + "dippers\n", + "dippier\n", + "dippiest\n", + "dipping\n", + "dippy\n", + "dips\n", + "dipsades\n", + "dipsas\n", + "dipstick\n", + "dipsticks\n", + "dipt\n", + "diptera\n", + "dipteral\n", + "dipteran\n", + "dipterans\n", + "dipteron\n", + "dipththeria\n", + "dipththerias\n", + "diptyca\n", + "diptycas\n", + "diptych\n", + "diptychs\n", + "diquat\n", + "diquats\n", + "dirdum\n", + "dirdums\n", + "dire\n", + "direct\n", + "directed\n", + "directer\n", + "directest\n", + "directing\n", + "direction\n", + "directional\n", + "directions\n", + "directive\n", + "directives\n", + "directly\n", + "directness\n", + "director\n", + "directories\n", + "directors\n", + "directory\n", + "directs\n", + "direful\n", + "direly\n", + "direness\n", + "direnesses\n", + "direr\n", + "direst\n", + "dirge\n", + "dirgeful\n", + "dirges\n", + "dirham\n", + "dirhams\n", + "dirigible\n", + "dirigibles\n", + "diriment\n", + "dirk\n", + "dirked\n", + "dirking\n", + "dirks\n", + "dirl\n", + "dirled\n", + "dirling\n", + "dirls\n", + "dirndl\n", + "dirndls\n", + "dirt\n", + "dirtied\n", + "dirtier\n", + "dirties\n", + "dirtiest\n", + "dirtily\n", + "dirtiness\n", + "dirtinesses\n", + "dirts\n", + "dirty\n", + "dirtying\n", + "disabilities\n", + "disability\n", + "disable\n", + "disabled\n", + "disables\n", + "disabling\n", + "disabuse\n", + "disabused\n", + "disabuses\n", + "disabusing\n", + "disadvantage\n", + "disadvantageous\n", + "disadvantages\n", + "disaffect\n", + "disaffected\n", + "disaffecting\n", + "disaffection\n", + "disaffections\n", + "disaffects\n", + "disagree\n", + "disagreeable\n", + "disagreeables\n", + "disagreed\n", + "disagreeing\n", + "disagreement\n", + "disagreements\n", + "disagrees\n", + "disallow\n", + "disallowed\n", + "disallowing\n", + "disallows\n", + "disannul\n", + "disannulled\n", + "disannulling\n", + "disannuls\n", + "disappear\n", + "disappearance\n", + "disappearances\n", + "disappeared\n", + "disappearing\n", + "disappears\n", + "disappoint\n", + "disappointed\n", + "disappointing\n", + "disappointment\n", + "disappointments\n", + "disappoints\n", + "disapproval\n", + "disapprovals\n", + "disapprove\n", + "disapproved\n", + "disapproves\n", + "disapproving\n", + "disarm\n", + "disarmament\n", + "disarmaments\n", + "disarmed\n", + "disarmer\n", + "disarmers\n", + "disarming\n", + "disarms\n", + "disarrange\n", + "disarranged\n", + "disarrangement\n", + "disarrangements\n", + "disarranges\n", + "disarranging\n", + "disarray\n", + "disarrayed\n", + "disarraying\n", + "disarrays\n", + "disaster\n", + "disasters\n", + "disastrous\n", + "disavow\n", + "disavowal\n", + "disavowals\n", + "disavowed\n", + "disavowing\n", + "disavows\n", + "disband\n", + "disbanded\n", + "disbanding\n", + "disbands\n", + "disbar\n", + "disbarment\n", + "disbarments\n", + "disbarred\n", + "disbarring\n", + "disbars\n", + "disbelief\n", + "disbeliefs\n", + "disbelieve\n", + "disbelieved\n", + "disbelieves\n", + "disbelieving\n", + "disbosom\n", + "disbosomed\n", + "disbosoming\n", + "disbosoms\n", + "disbound\n", + "disbowel\n", + "disboweled\n", + "disboweling\n", + "disbowelled\n", + "disbowelling\n", + "disbowels\n", + "disbud\n", + "disbudded\n", + "disbudding\n", + "disbuds\n", + "disburse\n", + "disbursed\n", + "disbursement\n", + "disbursements\n", + "disburses\n", + "disbursing\n", + "disc\n", + "discant\n", + "discanted\n", + "discanting\n", + "discants\n", + "discard\n", + "discarded\n", + "discarding\n", + "discards\n", + "discase\n", + "discased\n", + "discases\n", + "discasing\n", + "disced\n", + "discept\n", + "discepted\n", + "discepting\n", + "discepts\n", + "discern\n", + "discerned\n", + "discernible\n", + "discerning\n", + "discernment\n", + "discernments\n", + "discerns\n", + "discharge\n", + "discharged\n", + "discharges\n", + "discharging\n", + "disci\n", + "discing\n", + "disciple\n", + "discipled\n", + "disciples\n", + "disciplinarian\n", + "disciplinarians\n", + "disciplinary\n", + "discipline\n", + "disciplined\n", + "disciplines\n", + "discipling\n", + "disciplining\n", + "disclaim\n", + "disclaimed\n", + "disclaiming\n", + "disclaims\n", + "disclike\n", + "disclose\n", + "disclosed\n", + "discloses\n", + "disclosing\n", + "disclosure\n", + "disclosures\n", + "disco\n", + "discoid\n", + "discoids\n", + "discolor\n", + "discoloration\n", + "discolorations\n", + "discolored\n", + "discoloring\n", + "discolors\n", + "discomfit\n", + "discomfited\n", + "discomfiting\n", + "discomfits\n", + "discomfiture\n", + "discomfitures\n", + "discomfort\n", + "discomforts\n", + "disconcert\n", + "disconcerted\n", + "disconcerting\n", + "disconcerts\n", + "disconnect\n", + "disconnected\n", + "disconnecting\n", + "disconnects\n", + "disconsolate\n", + "discontent\n", + "discontented\n", + "discontents\n", + "discontinuance\n", + "discontinuances\n", + "discontinuation\n", + "discontinue\n", + "discontinued\n", + "discontinues\n", + "discontinuing\n", + "discord\n", + "discordant\n", + "discorded\n", + "discording\n", + "discords\n", + "discos\n", + "discount\n", + "discounted\n", + "discounting\n", + "discounts\n", + "discourage\n", + "discouraged\n", + "discouragement\n", + "discouragements\n", + "discourages\n", + "discouraging\n", + "discourteous\n", + "discourteously\n", + "discourtesies\n", + "discourtesy\n", + "discover\n", + "discovered\n", + "discoverer\n", + "discoverers\n", + "discoveries\n", + "discovering\n", + "discovers\n", + "discovery\n", + "discredit\n", + "discreditable\n", + "discredited\n", + "discrediting\n", + "discredits\n", + "discreet\n", + "discreeter\n", + "discreetest\n", + "discreetly\n", + "discrepancies\n", + "discrepancy\n", + "discrete\n", + "discretion\n", + "discretionary\n", + "discretions\n", + "discriminate\n", + "discriminated\n", + "discriminates\n", + "discriminating\n", + "discrimination\n", + "discriminations\n", + "discriminatory\n", + "discrown\n", + "discrowned\n", + "discrowning\n", + "discrowns\n", + "discs\n", + "discursive\n", + "discursiveness\n", + "discursivenesses\n", + "discus\n", + "discuses\n", + "discuss\n", + "discussed\n", + "discusses\n", + "discussing\n", + "discussion\n", + "discussions\n", + "disdain\n", + "disdained\n", + "disdainful\n", + "disdainfully\n", + "disdaining\n", + "disdains\n", + "disease\n", + "diseased\n", + "diseases\n", + "diseasing\n", + "disembark\n", + "disembarkation\n", + "disembarkations\n", + "disembarked\n", + "disembarking\n", + "disembarks\n", + "disembodied\n", + "disenchant\n", + "disenchanted\n", + "disenchanting\n", + "disenchantment\n", + "disenchantments\n", + "disenchants\n", + "disendow\n", + "disendowed\n", + "disendowing\n", + "disendows\n", + "disentangle\n", + "disentangled\n", + "disentangles\n", + "disentangling\n", + "diseuse\n", + "diseuses\n", + "disfavor\n", + "disfavored\n", + "disfavoring\n", + "disfavors\n", + "disfigure\n", + "disfigured\n", + "disfigurement\n", + "disfigurements\n", + "disfigures\n", + "disfiguring\n", + "disfranchise\n", + "disfranchised\n", + "disfranchisement\n", + "disfranchisements\n", + "disfranchises\n", + "disfranchising\n", + "disfrock\n", + "disfrocked\n", + "disfrocking\n", + "disfrocks\n", + "disgorge\n", + "disgorged\n", + "disgorges\n", + "disgorging\n", + "disgrace\n", + "disgraced\n", + "disgraceful\n", + "disgracefully\n", + "disgraces\n", + "disgracing\n", + "disguise\n", + "disguised\n", + "disguises\n", + "disguising\n", + "disgust\n", + "disgusted\n", + "disgustedly\n", + "disgusting\n", + "disgustingly\n", + "disgusts\n", + "dish\n", + "disharmonies\n", + "disharmonious\n", + "disharmony\n", + "dishcloth\n", + "dishcloths\n", + "dishearten\n", + "disheartened\n", + "disheartening\n", + "disheartens\n", + "dished\n", + "dishelm\n", + "dishelmed\n", + "dishelming\n", + "dishelms\n", + "disherit\n", + "disherited\n", + "disheriting\n", + "disherits\n", + "dishes\n", + "dishevel\n", + "disheveled\n", + "disheveling\n", + "dishevelled\n", + "dishevelling\n", + "dishevels\n", + "dishful\n", + "dishfuls\n", + "dishier\n", + "dishiest\n", + "dishing\n", + "dishlike\n", + "dishonest\n", + "dishonesties\n", + "dishonestly\n", + "dishonesty\n", + "dishonor\n", + "dishonorable\n", + "dishonorably\n", + "dishonored\n", + "dishonoring\n", + "dishonors\n", + "dishpan\n", + "dishpans\n", + "dishrag\n", + "dishrags\n", + "dishware\n", + "dishwares\n", + "dishwasher\n", + "dishwashers\n", + "dishwater\n", + "dishwaters\n", + "dishy\n", + "disillusion\n", + "disillusioned\n", + "disillusioning\n", + "disillusionment\n", + "disillusionments\n", + "disillusions\n", + "disinclination\n", + "disinclinations\n", + "disincline\n", + "disinclined\n", + "disinclines\n", + "disinclining\n", + "disinfect\n", + "disinfectant\n", + "disinfectants\n", + "disinfected\n", + "disinfecting\n", + "disinfection\n", + "disinfections\n", + "disinfects\n", + "disinherit\n", + "disinherited\n", + "disinheriting\n", + "disinherits\n", + "disintegrate\n", + "disintegrated\n", + "disintegrates\n", + "disintegrating\n", + "disintegration\n", + "disintegrations\n", + "disinter\n", + "disinterested\n", + "disinterestedness\n", + "disinterestednesses\n", + "disinterred\n", + "disinterring\n", + "disinters\n", + "disject\n", + "disjected\n", + "disjecting\n", + "disjects\n", + "disjoin\n", + "disjoined\n", + "disjoining\n", + "disjoins\n", + "disjoint\n", + "disjointed\n", + "disjointing\n", + "disjoints\n", + "disjunct\n", + "disjuncts\n", + "disk\n", + "disked\n", + "disking\n", + "disklike\n", + "disks\n", + "dislike\n", + "disliked\n", + "disliker\n", + "dislikers\n", + "dislikes\n", + "disliking\n", + "dislimn\n", + "dislimned\n", + "dislimning\n", + "dislimns\n", + "dislocate\n", + "dislocated\n", + "dislocates\n", + "dislocating\n", + "dislocation\n", + "dislocations\n", + "dislodge\n", + "dislodged\n", + "dislodges\n", + "dislodging\n", + "disloyal\n", + "disloyalties\n", + "disloyalty\n", + "dismal\n", + "dismaler\n", + "dismalest\n", + "dismally\n", + "dismals\n", + "dismantle\n", + "dismantled\n", + "dismantles\n", + "dismantling\n", + "dismast\n", + "dismasted\n", + "dismasting\n", + "dismasts\n", + "dismay\n", + "dismayed\n", + "dismaying\n", + "dismays\n", + "disme\n", + "dismember\n", + "dismembered\n", + "dismembering\n", + "dismemberment\n", + "dismemberments\n", + "dismembers\n", + "dismes\n", + "dismiss\n", + "dismissal\n", + "dismissals\n", + "dismissed\n", + "dismisses\n", + "dismissing\n", + "dismount\n", + "dismounted\n", + "dismounting\n", + "dismounts\n", + "disobedience\n", + "disobediences\n", + "disobedient\n", + "disobey\n", + "disobeyed\n", + "disobeying\n", + "disobeys\n", + "disomic\n", + "disorder\n", + "disordered\n", + "disordering\n", + "disorderliness\n", + "disorderlinesses\n", + "disorderly\n", + "disorders\n", + "disorganization\n", + "disorganizations\n", + "disorganize\n", + "disorganized\n", + "disorganizes\n", + "disorganizing\n", + "disown\n", + "disowned\n", + "disowning\n", + "disowns\n", + "disparage\n", + "disparaged\n", + "disparagement\n", + "disparagements\n", + "disparages\n", + "disparaging\n", + "disparate\n", + "disparities\n", + "disparity\n", + "dispart\n", + "disparted\n", + "disparting\n", + "disparts\n", + "dispassion\n", + "dispassionate\n", + "dispassions\n", + "dispatch\n", + "dispatched\n", + "dispatcher\n", + "dispatchers\n", + "dispatches\n", + "dispatching\n", + "dispel\n", + "dispelled\n", + "dispelling\n", + "dispels\n", + "dispend\n", + "dispended\n", + "dispending\n", + "dispends\n", + "dispensable\n", + "dispensaries\n", + "dispensary\n", + "dispensation\n", + "dispensations\n", + "dispense\n", + "dispensed\n", + "dispenser\n", + "dispensers\n", + "dispenses\n", + "dispensing\n", + "dispersal\n", + "dispersals\n", + "disperse\n", + "dispersed\n", + "disperses\n", + "dispersing\n", + "dispersion\n", + "dispersions\n", + "dispirit\n", + "dispirited\n", + "dispiriting\n", + "dispirits\n", + "displace\n", + "displaced\n", + "displacement\n", + "displacements\n", + "displaces\n", + "displacing\n", + "displant\n", + "displanted\n", + "displanting\n", + "displants\n", + "display\n", + "displayed\n", + "displaying\n", + "displays\n", + "displease\n", + "displeased\n", + "displeases\n", + "displeasing\n", + "displeasure\n", + "displeasures\n", + "displode\n", + "disploded\n", + "displodes\n", + "disploding\n", + "displume\n", + "displumed\n", + "displumes\n", + "displuming\n", + "disport\n", + "disported\n", + "disporting\n", + "disports\n", + "disposable\n", + "disposal\n", + "disposals\n", + "dispose\n", + "disposed\n", + "disposer\n", + "disposers\n", + "disposes\n", + "disposing\n", + "disposition\n", + "dispositions\n", + "dispossess\n", + "dispossessed\n", + "dispossesses\n", + "dispossessing\n", + "dispossession\n", + "dispossessions\n", + "dispread\n", + "dispreading\n", + "dispreads\n", + "disprize\n", + "disprized\n", + "disprizes\n", + "disprizing\n", + "disproof\n", + "disproofs\n", + "disproportion\n", + "disproportionate\n", + "disproportions\n", + "disprove\n", + "disproved\n", + "disproves\n", + "disproving\n", + "disputable\n", + "disputably\n", + "disputation\n", + "disputations\n", + "dispute\n", + "disputed\n", + "disputer\n", + "disputers\n", + "disputes\n", + "disputing\n", + "disqualification\n", + "disqualifications\n", + "disqualified\n", + "disqualifies\n", + "disqualify\n", + "disqualifying\n", + "disquiet\n", + "disquieted\n", + "disquieting\n", + "disquiets\n", + "disrate\n", + "disrated\n", + "disrates\n", + "disrating\n", + "disregard\n", + "disregarded\n", + "disregarding\n", + "disregards\n", + "disrepair\n", + "disrepairs\n", + "disreputable\n", + "disrepute\n", + "disreputes\n", + "disrespect\n", + "disrespectful\n", + "disrespects\n", + "disrobe\n", + "disrobed\n", + "disrober\n", + "disrobers\n", + "disrobes\n", + "disrobing\n", + "disroot\n", + "disrooted\n", + "disrooting\n", + "disroots\n", + "disrupt\n", + "disrupted\n", + "disrupting\n", + "disruption\n", + "disruptions\n", + "disruptive\n", + "disrupts\n", + "dissatisfaction\n", + "dissatisfactions\n", + "dissatisfies\n", + "dissatisfy\n", + "dissave\n", + "dissaved\n", + "dissaves\n", + "dissaving\n", + "disseat\n", + "disseated\n", + "disseating\n", + "disseats\n", + "dissect\n", + "dissected\n", + "dissecting\n", + "dissection\n", + "dissections\n", + "dissects\n", + "disseise\n", + "disseised\n", + "disseises\n", + "disseising\n", + "disseize\n", + "disseized\n", + "disseizes\n", + "disseizing\n", + "dissemble\n", + "dissembled\n", + "dissembler\n", + "dissemblers\n", + "dissembles\n", + "dissembling\n", + "disseminate\n", + "disseminated\n", + "disseminates\n", + "disseminating\n", + "dissemination\n", + "dissent\n", + "dissented\n", + "dissenter\n", + "dissenters\n", + "dissentient\n", + "dissentients\n", + "dissenting\n", + "dissention\n", + "dissentions\n", + "dissents\n", + "dissert\n", + "dissertation\n", + "dissertations\n", + "disserted\n", + "disserting\n", + "disserts\n", + "disserve\n", + "disserved\n", + "disserves\n", + "disservice\n", + "disserving\n", + "dissever\n", + "dissevered\n", + "dissevering\n", + "dissevers\n", + "dissidence\n", + "dissidences\n", + "dissident\n", + "dissidents\n", + "dissimilar\n", + "dissimilarities\n", + "dissimilarity\n", + "dissipate\n", + "dissipated\n", + "dissipates\n", + "dissipating\n", + "dissipation\n", + "dissipations\n", + "dissociate\n", + "dissociated\n", + "dissociates\n", + "dissociating\n", + "dissociation\n", + "dissociations\n", + "dissolute\n", + "dissolution\n", + "dissolutions\n", + "dissolve\n", + "dissolved\n", + "dissolves\n", + "dissolving\n", + "dissonance\n", + "dissonances\n", + "dissonant\n", + "dissuade\n", + "dissuaded\n", + "dissuades\n", + "dissuading\n", + "dissuasion\n", + "dissuasions\n", + "distaff\n", + "distaffs\n", + "distain\n", + "distained\n", + "distaining\n", + "distains\n", + "distal\n", + "distally\n", + "distance\n", + "distanced\n", + "distances\n", + "distancing\n", + "distant\n", + "distaste\n", + "distasted\n", + "distasteful\n", + "distastes\n", + "distasting\n", + "distaves\n", + "distemper\n", + "distempers\n", + "distend\n", + "distended\n", + "distending\n", + "distends\n", + "distension\n", + "distensions\n", + "distent\n", + "distention\n", + "distentions\n", + "distich\n", + "distichs\n", + "distil\n", + "distill\n", + "distillate\n", + "distillates\n", + "distillation\n", + "distillations\n", + "distilled\n", + "distiller\n", + "distilleries\n", + "distillers\n", + "distillery\n", + "distilling\n", + "distills\n", + "distils\n", + "distinct\n", + "distincter\n", + "distinctest\n", + "distinction\n", + "distinctions\n", + "distinctive\n", + "distinctively\n", + "distinctiveness\n", + "distinctivenesses\n", + "distinctly\n", + "distinctness\n", + "distinctnesses\n", + "distinguish\n", + "distinguishable\n", + "distinguished\n", + "distinguishes\n", + "distinguishing\n", + "distome\n", + "distomes\n", + "distort\n", + "distorted\n", + "distorting\n", + "distortion\n", + "distortions\n", + "distorts\n", + "distract\n", + "distracted\n", + "distracting\n", + "distraction\n", + "distractions\n", + "distracts\n", + "distrain\n", + "distrained\n", + "distraining\n", + "distrains\n", + "distrait\n", + "distraught\n", + "distress\n", + "distressed\n", + "distresses\n", + "distressful\n", + "distressing\n", + "distribute\n", + "distributed\n", + "distributes\n", + "distributing\n", + "distribution\n", + "distributions\n", + "distributive\n", + "distributor\n", + "distributors\n", + "district\n", + "districted\n", + "districting\n", + "districts\n", + "distrust\n", + "distrusted\n", + "distrustful\n", + "distrusting\n", + "distrusts\n", + "disturb\n", + "disturbance\n", + "disturbances\n", + "disturbed\n", + "disturber\n", + "disturbers\n", + "disturbing\n", + "disturbs\n", + "disulfid\n", + "disulfids\n", + "disunion\n", + "disunions\n", + "disunite\n", + "disunited\n", + "disunites\n", + "disunities\n", + "disuniting\n", + "disunity\n", + "disuse\n", + "disused\n", + "disuses\n", + "disusing\n", + "disvalue\n", + "disvalued\n", + "disvalues\n", + "disvaluing\n", + "disyoke\n", + "disyoked\n", + "disyokes\n", + "disyoking\n", + "dit\n", + "dita\n", + "ditas\n", + "ditch\n", + "ditched\n", + "ditcher\n", + "ditchers\n", + "ditches\n", + "ditching\n", + "dite\n", + "dites\n", + "ditheism\n", + "ditheisms\n", + "ditheist\n", + "ditheists\n", + "dither\n", + "dithered\n", + "dithering\n", + "dithers\n", + "dithery\n", + "dithiol\n", + "dits\n", + "dittanies\n", + "dittany\n", + "ditties\n", + "ditto\n", + "dittoed\n", + "dittoing\n", + "dittos\n", + "ditty\n", + "diureses\n", + "diuresis\n", + "diuretic\n", + "diuretics\n", + "diurnal\n", + "diurnals\n", + "diuron\n", + "diurons\n", + "diva\n", + "divagate\n", + "divagated\n", + "divagates\n", + "divagating\n", + "divalent\n", + "divan\n", + "divans\n", + "divas\n", + "dive\n", + "dived\n", + "diver\n", + "diverge\n", + "diverged\n", + "divergence\n", + "divergences\n", + "divergent\n", + "diverges\n", + "diverging\n", + "divers\n", + "diverse\n", + "diversification\n", + "diversifications\n", + "diversify\n", + "diversion\n", + "diversions\n", + "diversities\n", + "diversity\n", + "divert\n", + "diverted\n", + "diverter\n", + "diverters\n", + "diverting\n", + "diverts\n", + "dives\n", + "divest\n", + "divested\n", + "divesting\n", + "divests\n", + "divide\n", + "divided\n", + "dividend\n", + "dividends\n", + "divider\n", + "dividers\n", + "divides\n", + "dividing\n", + "dividual\n", + "divination\n", + "divinations\n", + "divine\n", + "divined\n", + "divinely\n", + "diviner\n", + "diviners\n", + "divines\n", + "divinest\n", + "diving\n", + "divining\n", + "divinise\n", + "divinised\n", + "divinises\n", + "divinising\n", + "divinities\n", + "divinity\n", + "divinize\n", + "divinized\n", + "divinizes\n", + "divinizing\n", + "divisibilities\n", + "divisibility\n", + "divisible\n", + "division\n", + "divisional\n", + "divisions\n", + "divisive\n", + "divisor\n", + "divisors\n", + "divorce\n", + "divorced\n", + "divorcee\n", + "divorcees\n", + "divorcer\n", + "divorcers\n", + "divorces\n", + "divorcing\n", + "divot\n", + "divots\n", + "divulge\n", + "divulged\n", + "divulger\n", + "divulgers\n", + "divulges\n", + "divulging\n", + "divvied\n", + "divvies\n", + "divvy\n", + "divvying\n", + "diwan\n", + "diwans\n", + "dixit\n", + "dixits\n", + "dizen\n", + "dizened\n", + "dizening\n", + "dizens\n", + "dizygous\n", + "dizzied\n", + "dizzier\n", + "dizzies\n", + "dizziest\n", + "dizzily\n", + "dizziness\n", + "dizzy\n", + "dizzying\n", + "djebel\n", + "djebels\n", + "djellaba\n", + "djellabas\n", + "djin\n", + "djinn\n", + "djinni\n", + "djinns\n", + "djinny\n", + "djins\n", + "do\n", + "doable\n", + "doat\n", + "doated\n", + "doating\n", + "doats\n", + "dobber\n", + "dobbers\n", + "dobbies\n", + "dobbin\n", + "dobbins\n", + "dobby\n", + "dobie\n", + "dobies\n", + "dobla\n", + "doblas\n", + "doblon\n", + "doblones\n", + "doblons\n", + "dobra\n", + "dobras\n", + "dobson\n", + "dobsons\n", + "doby\n", + "doc\n", + "docent\n", + "docents\n", + "docetic\n", + "docile\n", + "docilely\n", + "docilities\n", + "docility\n", + "dock\n", + "dockage\n", + "dockages\n", + "docked\n", + "docker\n", + "dockers\n", + "docket\n", + "docketed\n", + "docketing\n", + "dockets\n", + "dockhand\n", + "dockhands\n", + "docking\n", + "dockland\n", + "docklands\n", + "docks\n", + "dockside\n", + "docksides\n", + "dockworker\n", + "dockworkers\n", + "dockyard\n", + "dockyards\n", + "docs\n", + "doctor\n", + "doctoral\n", + "doctored\n", + "doctoring\n", + "doctors\n", + "doctrinal\n", + "doctrine\n", + "doctrines\n", + "document\n", + "documentaries\n", + "documentary\n", + "documentation\n", + "documentations\n", + "documented\n", + "documenter\n", + "documenters\n", + "documenting\n", + "documents\n", + "dodder\n", + "doddered\n", + "dodderer\n", + "dodderers\n", + "doddering\n", + "dodders\n", + "doddery\n", + "dodge\n", + "dodged\n", + "dodger\n", + "dodgeries\n", + "dodgers\n", + "dodgery\n", + "dodges\n", + "dodgier\n", + "dodgiest\n", + "dodging\n", + "dodgy\n", + "dodo\n", + "dodoes\n", + "dodoism\n", + "dodoisms\n", + "dodos\n", + "doe\n", + "doer\n", + "doers\n", + "does\n", + "doeskin\n", + "doeskins\n", + "doest\n", + "doeth\n", + "doff\n", + "doffed\n", + "doffer\n", + "doffers\n", + "doffing\n", + "doffs\n", + "dog\n", + "dogbane\n", + "dogbanes\n", + "dogberries\n", + "dogberry\n", + "dogcart\n", + "dogcarts\n", + "dogcatcher\n", + "dogcatchers\n", + "dogdom\n", + "dogdoms\n", + "doge\n", + "dogedom\n", + "dogedoms\n", + "doges\n", + "dogeship\n", + "dogeships\n", + "dogey\n", + "dogeys\n", + "dogface\n", + "dogfaces\n", + "dogfight\n", + "dogfighting\n", + "dogfights\n", + "dogfish\n", + "dogfishes\n", + "dogfought\n", + "dogged\n", + "doggedly\n", + "dogger\n", + "doggerel\n", + "doggerels\n", + "doggeries\n", + "doggers\n", + "doggery\n", + "doggie\n", + "doggier\n", + "doggies\n", + "doggiest\n", + "dogging\n", + "doggish\n", + "doggo\n", + "doggone\n", + "doggoned\n", + "doggoneder\n", + "doggonedest\n", + "doggoner\n", + "doggones\n", + "doggonest\n", + "doggoning\n", + "doggrel\n", + "doggrels\n", + "doggy\n", + "doghouse\n", + "doghouses\n", + "dogie\n", + "dogies\n", + "dogleg\n", + "doglegged\n", + "doglegging\n", + "doglegs\n", + "doglike\n", + "dogma\n", + "dogmas\n", + "dogmata\n", + "dogmatic\n", + "dogmatism\n", + "dogmatisms\n", + "dognap\n", + "dognaped\n", + "dognaper\n", + "dognapers\n", + "dognaping\n", + "dognapped\n", + "dognapping\n", + "dognaps\n", + "dogs\n", + "dogsbodies\n", + "dogsbody\n", + "dogsled\n", + "dogsleds\n", + "dogteeth\n", + "dogtooth\n", + "dogtrot\n", + "dogtrots\n", + "dogtrotted\n", + "dogtrotting\n", + "dogvane\n", + "dogvanes\n", + "dogwatch\n", + "dogwatches\n", + "dogwood\n", + "dogwoods\n", + "dogy\n", + "doiled\n", + "doilies\n", + "doily\n", + "doing\n", + "doings\n", + "doit\n", + "doited\n", + "doits\n", + "dojo\n", + "dojos\n", + "dol\n", + "dolce\n", + "dolci\n", + "doldrums\n", + "dole\n", + "doled\n", + "doleful\n", + "dolefuller\n", + "dolefullest\n", + "dolefully\n", + "dolerite\n", + "dolerites\n", + "doles\n", + "dolesome\n", + "doling\n", + "doll\n", + "dollar\n", + "dollars\n", + "dolled\n", + "dollied\n", + "dollies\n", + "dolling\n", + "dollish\n", + "dollop\n", + "dollops\n", + "dolls\n", + "dolly\n", + "dollying\n", + "dolman\n", + "dolmans\n", + "dolmen\n", + "dolmens\n", + "dolomite\n", + "dolomites\n", + "dolor\n", + "doloroso\n", + "dolorous\n", + "dolors\n", + "dolour\n", + "dolours\n", + "dolphin\n", + "dolphins\n", + "dols\n", + "dolt\n", + "doltish\n", + "dolts\n", + "dom\n", + "domain\n", + "domains\n", + "domal\n", + "dome\n", + "domed\n", + "domelike\n", + "domes\n", + "domesday\n", + "domesdays\n", + "domestic\n", + "domestically\n", + "domesticate\n", + "domesticated\n", + "domesticates\n", + "domesticating\n", + "domestication\n", + "domestications\n", + "domestics\n", + "domic\n", + "domical\n", + "domicil\n", + "domicile\n", + "domiciled\n", + "domiciles\n", + "domiciling\n", + "domicils\n", + "dominance\n", + "dominances\n", + "dominant\n", + "dominants\n", + "dominate\n", + "dominated\n", + "dominates\n", + "dominating\n", + "domination\n", + "dominations\n", + "domine\n", + "domineer\n", + "domineered\n", + "domineering\n", + "domineers\n", + "domines\n", + "doming\n", + "dominick\n", + "dominicks\n", + "dominie\n", + "dominies\n", + "dominion\n", + "dominions\n", + "dominium\n", + "dominiums\n", + "domino\n", + "dominoes\n", + "dominos\n", + "doms\n", + "don\n", + "dona\n", + "donas\n", + "donate\n", + "donated\n", + "donates\n", + "donating\n", + "donation\n", + "donations\n", + "donative\n", + "donatives\n", + "donator\n", + "donators\n", + "done\n", + "donee\n", + "donees\n", + "doneness\n", + "donenesses\n", + "dong\n", + "dongola\n", + "dongolas\n", + "dongs\n", + "donjon\n", + "donjons\n", + "donkey\n", + "donkeys\n", + "donna\n", + "donnas\n", + "donne\n", + "donned\n", + "donnee\n", + "donnees\n", + "donnerd\n", + "donnered\n", + "donnert\n", + "donning\n", + "donnish\n", + "donor\n", + "donors\n", + "dons\n", + "donsie\n", + "donsy\n", + "donut\n", + "donuts\n", + "donzel\n", + "donzels\n", + "doodad\n", + "doodads\n", + "doodle\n", + "doodled\n", + "doodler\n", + "doodlers\n", + "doodles\n", + "doodling\n", + "doolee\n", + "doolees\n", + "doolie\n", + "doolies\n", + "dooly\n", + "doom\n", + "doomed\n", + "doomful\n", + "dooming\n", + "dooms\n", + "doomsday\n", + "doomsdays\n", + "doomster\n", + "doomsters\n", + "door\n", + "doorbell\n", + "doorbells\n", + "doorjamb\n", + "doorjambs\n", + "doorknob\n", + "doorknobs\n", + "doorless\n", + "doorman\n", + "doormat\n", + "doormats\n", + "doormen\n", + "doornail\n", + "doornails\n", + "doorpost\n", + "doorposts\n", + "doors\n", + "doorsill\n", + "doorsills\n", + "doorstep\n", + "doorsteps\n", + "doorstop\n", + "doorstops\n", + "doorway\n", + "doorways\n", + "dooryard\n", + "dooryards\n", + "doozer\n", + "doozers\n", + "doozies\n", + "doozy\n", + "dopa\n", + "dopamine\n", + "dopamines\n", + "dopant\n", + "dopants\n", + "dopas\n", + "dope\n", + "doped\n", + "doper\n", + "dopers\n", + "dopes\n", + "dopester\n", + "dopesters\n", + "dopey\n", + "dopier\n", + "dopiest\n", + "dopiness\n", + "dopinesses\n", + "doping\n", + "dopy\n", + "dor\n", + "dorado\n", + "dorados\n", + "dorbug\n", + "dorbugs\n", + "dorhawk\n", + "dorhawks\n", + "dories\n", + "dorm\n", + "dormancies\n", + "dormancy\n", + "dormant\n", + "dormer\n", + "dormers\n", + "dormice\n", + "dormie\n", + "dormient\n", + "dormin\n", + "dormins\n", + "dormitories\n", + "dormitory\n", + "dormouse\n", + "dorms\n", + "dormy\n", + "dorneck\n", + "dornecks\n", + "dornick\n", + "dornicks\n", + "dornock\n", + "dornocks\n", + "dorp\n", + "dorper\n", + "dorpers\n", + "dorps\n", + "dorr\n", + "dorrs\n", + "dors\n", + "dorsa\n", + "dorsad\n", + "dorsal\n", + "dorsally\n", + "dorsals\n", + "dorser\n", + "dorsers\n", + "dorsum\n", + "dorty\n", + "dory\n", + "dos\n", + "dosage\n", + "dosages\n", + "dose\n", + "dosed\n", + "doser\n", + "dosers\n", + "doses\n", + "dosimetry\n", + "dosing\n", + "doss\n", + "dossal\n", + "dossals\n", + "dossed\n", + "dossel\n", + "dossels\n", + "dosser\n", + "dosseret\n", + "dosserets\n", + "dossers\n", + "dosses\n", + "dossier\n", + "dossiers\n", + "dossil\n", + "dossils\n", + "dossing\n", + "dost\n", + "dot\n", + "dotage\n", + "dotages\n", + "dotal\n", + "dotard\n", + "dotardly\n", + "dotards\n", + "dotation\n", + "dotations\n", + "dote\n", + "doted\n", + "doter\n", + "doters\n", + "dotes\n", + "doth\n", + "dotier\n", + "dotiest\n", + "doting\n", + "dotingly\n", + "dots\n", + "dotted\n", + "dottel\n", + "dottels\n", + "dotter\n", + "dotterel\n", + "dotterels\n", + "dotters\n", + "dottier\n", + "dottiest\n", + "dottily\n", + "dotting\n", + "dottle\n", + "dottles\n", + "dottrel\n", + "dottrels\n", + "dotty\n", + "doty\n", + "double\n", + "doublecross\n", + "doublecrossed\n", + "doublecrosses\n", + "doublecrossing\n", + "doubled\n", + "doubler\n", + "doublers\n", + "doubles\n", + "doublet\n", + "doublets\n", + "doubling\n", + "doubloon\n", + "doubloons\n", + "doublure\n", + "doublures\n", + "doubly\n", + "doubt\n", + "doubted\n", + "doubter\n", + "doubters\n", + "doubtful\n", + "doubtfully\n", + "doubting\n", + "doubtless\n", + "doubts\n", + "douce\n", + "doucely\n", + "douceur\n", + "douceurs\n", + "douche\n", + "douched\n", + "douches\n", + "douching\n", + "dough\n", + "doughboy\n", + "doughboys\n", + "doughier\n", + "doughiest\n", + "doughnut\n", + "doughnuts\n", + "doughs\n", + "dought\n", + "doughtier\n", + "doughtiest\n", + "doughty\n", + "doughy\n", + "douma\n", + "doumas\n", + "dour\n", + "doura\n", + "dourah\n", + "dourahs\n", + "douras\n", + "dourer\n", + "dourest\n", + "dourine\n", + "dourines\n", + "dourly\n", + "dourness\n", + "dournesses\n", + "douse\n", + "doused\n", + "douser\n", + "dousers\n", + "douses\n", + "dousing\n", + "douzeper\n", + "douzepers\n", + "dove\n", + "dovecot\n", + "dovecote\n", + "dovecotes\n", + "dovecots\n", + "dovekey\n", + "dovekeys\n", + "dovekie\n", + "dovekies\n", + "dovelike\n", + "doven\n", + "dovened\n", + "dovening\n", + "dovens\n", + "doves\n", + "dovetail\n", + "dovetailed\n", + "dovetailing\n", + "dovetails\n", + "dovish\n", + "dow\n", + "dowable\n", + "dowager\n", + "dowagers\n", + "dowdier\n", + "dowdies\n", + "dowdiest\n", + "dowdily\n", + "dowdy\n", + "dowdyish\n", + "dowed\n", + "dowel\n", + "doweled\n", + "doweling\n", + "dowelled\n", + "dowelling\n", + "dowels\n", + "dower\n", + "dowered\n", + "doweries\n", + "dowering\n", + "dowers\n", + "dowery\n", + "dowie\n", + "dowing\n", + "down\n", + "downbeat\n", + "downbeats\n", + "downcast\n", + "downcasts\n", + "downcome\n", + "downcomes\n", + "downed\n", + "downer\n", + "downers\n", + "downfall\n", + "downfallen\n", + "downfalls\n", + "downgrade\n", + "downgraded\n", + "downgrades\n", + "downgrading\n", + "downhaul\n", + "downhauls\n", + "downhearted\n", + "downhill\n", + "downhills\n", + "downier\n", + "downiest\n", + "downing\n", + "downplay\n", + "downplayed\n", + "downplaying\n", + "downplays\n", + "downpour\n", + "downpours\n", + "downright\n", + "downs\n", + "downstairs\n", + "downtime\n", + "downtimes\n", + "downtown\n", + "downtowns\n", + "downtrod\n", + "downtrodden\n", + "downturn\n", + "downturns\n", + "downward\n", + "downwards\n", + "downwind\n", + "downy\n", + "dowries\n", + "dowry\n", + "dows\n", + "dowsabel\n", + "dowsabels\n", + "dowse\n", + "dowsed\n", + "dowser\n", + "dowsers\n", + "dowses\n", + "dowsing\n", + "doxie\n", + "doxies\n", + "doxologies\n", + "doxology\n", + "doxorubicin\n", + "doxy\n", + "doyen\n", + "doyenne\n", + "doyennes\n", + "doyens\n", + "doyley\n", + "doyleys\n", + "doylies\n", + "doyly\n", + "doze\n", + "dozed\n", + "dozen\n", + "dozened\n", + "dozening\n", + "dozens\n", + "dozenth\n", + "dozenths\n", + "dozer\n", + "dozers\n", + "dozes\n", + "dozier\n", + "doziest\n", + "dozily\n", + "doziness\n", + "dozinesses\n", + "dozing\n", + "dozy\n", + "drab\n", + "drabbed\n", + "drabber\n", + "drabbest\n", + "drabbet\n", + "drabbets\n", + "drabbing\n", + "drabble\n", + "drabbled\n", + "drabbles\n", + "drabbling\n", + "drably\n", + "drabness\n", + "drabnesses\n", + "drabs\n", + "dracaena\n", + "dracaenas\n", + "drachm\n", + "drachma\n", + "drachmae\n", + "drachmai\n", + "drachmas\n", + "drachms\n", + "draconic\n", + "draff\n", + "draffier\n", + "draffiest\n", + "draffish\n", + "draffs\n", + "draffy\n", + "draft\n", + "drafted\n", + "draftee\n", + "draftees\n", + "drafter\n", + "drafters\n", + "draftier\n", + "draftiest\n", + "draftily\n", + "drafting\n", + "draftings\n", + "drafts\n", + "draftsman\n", + "draftsmen\n", + "drafty\n", + "drag\n", + "dragee\n", + "dragees\n", + "dragged\n", + "dragger\n", + "draggers\n", + "draggier\n", + "draggiest\n", + "dragging\n", + "draggle\n", + "draggled\n", + "draggles\n", + "draggling\n", + "draggy\n", + "dragline\n", + "draglines\n", + "dragnet\n", + "dragnets\n", + "dragoman\n", + "dragomans\n", + "dragomen\n", + "dragon\n", + "dragonet\n", + "dragonets\n", + "dragons\n", + "dragoon\n", + "dragooned\n", + "dragooning\n", + "dragoons\n", + "dragrope\n", + "dragropes\n", + "drags\n", + "dragster\n", + "dragsters\n", + "drail\n", + "drails\n", + "drain\n", + "drainage\n", + "drainages\n", + "drained\n", + "drainer\n", + "drainers\n", + "draining\n", + "drainpipe\n", + "drainpipes\n", + "drains\n", + "drake\n", + "drakes\n", + "dram\n", + "drama\n", + "dramas\n", + "dramatic\n", + "dramatically\n", + "dramatist\n", + "dramatists\n", + "dramatization\n", + "dramatizations\n", + "dramatize\n", + "drammed\n", + "dramming\n", + "drammock\n", + "drammocks\n", + "drams\n", + "dramshop\n", + "dramshops\n", + "drank\n", + "drapable\n", + "drape\n", + "draped\n", + "draper\n", + "draperies\n", + "drapers\n", + "drapery\n", + "drapes\n", + "draping\n", + "drastic\n", + "drastically\n", + "drat\n", + "drats\n", + "dratted\n", + "dratting\n", + "draught\n", + "draughted\n", + "draughtier\n", + "draughtiest\n", + "draughting\n", + "draughts\n", + "draughty\n", + "drave\n", + "draw\n", + "drawable\n", + "drawback\n", + "drawbacks\n", + "drawbar\n", + "drawbars\n", + "drawbore\n", + "drawbores\n", + "drawbridge\n", + "drawbridges\n", + "drawdown\n", + "drawdowns\n", + "drawee\n", + "drawees\n", + "drawer\n", + "drawers\n", + "drawing\n", + "drawings\n", + "drawl\n", + "drawled\n", + "drawler\n", + "drawlers\n", + "drawlier\n", + "drawliest\n", + "drawling\n", + "drawls\n", + "drawly\n", + "drawn\n", + "draws\n", + "drawtube\n", + "drawtubes\n", + "dray\n", + "drayage\n", + "drayages\n", + "drayed\n", + "draying\n", + "drayman\n", + "draymen\n", + "drays\n", + "dread\n", + "dreaded\n", + "dreadful\n", + "dreadfully\n", + "dreadfuls\n", + "dreading\n", + "dreads\n", + "dream\n", + "dreamed\n", + "dreamer\n", + "dreamers\n", + "dreamful\n", + "dreamier\n", + "dreamiest\n", + "dreamily\n", + "dreaming\n", + "dreamlike\n", + "dreams\n", + "dreamt\n", + "dreamy\n", + "drear\n", + "drearier\n", + "drearies\n", + "dreariest\n", + "drearily\n", + "dreary\n", + "dreck\n", + "drecks\n", + "dredge\n", + "dredged\n", + "dredger\n", + "dredgers\n", + "dredges\n", + "dredging\n", + "dredgings\n", + "dree\n", + "dreed\n", + "dreeing\n", + "drees\n", + "dreg\n", + "dreggier\n", + "dreggiest\n", + "dreggish\n", + "dreggy\n", + "dregs\n", + "dreich\n", + "dreidel\n", + "dreidels\n", + "dreidl\n", + "dreidls\n", + "dreigh\n", + "drek\n", + "dreks\n", + "drench\n", + "drenched\n", + "drencher\n", + "drenchers\n", + "drenches\n", + "drenching\n", + "dress\n", + "dressage\n", + "dressages\n", + "dressed\n", + "dresser\n", + "dressers\n", + "dresses\n", + "dressier\n", + "dressiest\n", + "dressily\n", + "dressing\n", + "dressings\n", + "dressmaker\n", + "dressmakers\n", + "dressmaking\n", + "dressmakings\n", + "dressy\n", + "drest\n", + "drew\n", + "drib\n", + "dribbed\n", + "dribbing\n", + "dribble\n", + "dribbled\n", + "dribbler\n", + "dribblers\n", + "dribbles\n", + "dribblet\n", + "dribblets\n", + "dribbling\n", + "driblet\n", + "driblets\n", + "dribs\n", + "dried\n", + "drier\n", + "driers\n", + "dries\n", + "driest\n", + "drift\n", + "driftage\n", + "driftages\n", + "drifted\n", + "drifter\n", + "drifters\n", + "driftier\n", + "driftiest\n", + "drifting\n", + "driftpin\n", + "driftpins\n", + "drifts\n", + "driftwood\n", + "driftwoods\n", + "drifty\n", + "drill\n", + "drilled\n", + "driller\n", + "drillers\n", + "drilling\n", + "drillings\n", + "drills\n", + "drily\n", + "drink\n", + "drinkable\n", + "drinker\n", + "drinkers\n", + "drinking\n", + "drinks\n", + "drip\n", + "dripless\n", + "dripped\n", + "dripper\n", + "drippers\n", + "drippier\n", + "drippiest\n", + "dripping\n", + "drippings\n", + "drippy\n", + "drips\n", + "dript\n", + "drivable\n", + "drive\n", + "drivel\n", + "driveled\n", + "driveler\n", + "drivelers\n", + "driveling\n", + "drivelled\n", + "drivelling\n", + "drivels\n", + "driven\n", + "driver\n", + "drivers\n", + "drives\n", + "driveway\n", + "driveways\n", + "driving\n", + "drizzle\n", + "drizzled\n", + "drizzles\n", + "drizzlier\n", + "drizzliest\n", + "drizzling\n", + "drizzly\n", + "drogue\n", + "drogues\n", + "droit\n", + "droits\n", + "droll\n", + "drolled\n", + "droller\n", + "drolleries\n", + "drollery\n", + "drollest\n", + "drolling\n", + "drolls\n", + "drolly\n", + "dromedaries\n", + "dromedary\n", + "dromon\n", + "dromond\n", + "dromonds\n", + "dromons\n", + "drone\n", + "droned\n", + "droner\n", + "droners\n", + "drones\n", + "drongo\n", + "drongos\n", + "droning\n", + "dronish\n", + "drool\n", + "drooled\n", + "drooling\n", + "drools\n", + "droop\n", + "drooped\n", + "droopier\n", + "droopiest\n", + "droopily\n", + "drooping\n", + "droops\n", + "droopy\n", + "drop\n", + "drophead\n", + "dropheads\n", + "dropkick\n", + "dropkicks\n", + "droplet\n", + "droplets\n", + "dropout\n", + "dropouts\n", + "dropped\n", + "dropper\n", + "droppers\n", + "dropping\n", + "droppings\n", + "drops\n", + "dropshot\n", + "dropshots\n", + "dropsied\n", + "dropsies\n", + "dropsy\n", + "dropt\n", + "dropwort\n", + "dropworts\n", + "drosera\n", + "droseras\n", + "droshkies\n", + "droshky\n", + "droskies\n", + "drosky\n", + "dross\n", + "drosses\n", + "drossier\n", + "drossiest\n", + "drossy\n", + "drought\n", + "droughtier\n", + "droughtiest\n", + "droughts\n", + "droughty\n", + "drouk\n", + "drouked\n", + "drouking\n", + "drouks\n", + "drouth\n", + "drouthier\n", + "drouthiest\n", + "drouths\n", + "drouthy\n", + "drove\n", + "droved\n", + "drover\n", + "drovers\n", + "droves\n", + "droving\n", + "drown\n", + "drownd\n", + "drownded\n", + "drownding\n", + "drownds\n", + "drowned\n", + "drowner\n", + "drowners\n", + "drowning\n", + "drowns\n", + "drowse\n", + "drowsed\n", + "drowses\n", + "drowsier\n", + "drowsiest\n", + "drowsily\n", + "drowsing\n", + "drowsy\n", + "drub\n", + "drubbed\n", + "drubber\n", + "drubbers\n", + "drubbing\n", + "drubbings\n", + "drubs\n", + "drudge\n", + "drudged\n", + "drudger\n", + "drudgeries\n", + "drudgers\n", + "drudgery\n", + "drudges\n", + "drudging\n", + "drug\n", + "drugged\n", + "drugget\n", + "druggets\n", + "drugging\n", + "druggist\n", + "druggists\n", + "drugs\n", + "drugstore\n", + "drugstores\n", + "druid\n", + "druidess\n", + "druidesses\n", + "druidic\n", + "druidism\n", + "druidisms\n", + "druids\n", + "drum\n", + "drumbeat\n", + "drumbeats\n", + "drumble\n", + "drumbled\n", + "drumbles\n", + "drumbling\n", + "drumfire\n", + "drumfires\n", + "drumfish\n", + "drumfishes\n", + "drumhead\n", + "drumheads\n", + "drumlier\n", + "drumliest\n", + "drumlike\n", + "drumlin\n", + "drumlins\n", + "drumly\n", + "drummed\n", + "drummer\n", + "drummers\n", + "drumming\n", + "drumroll\n", + "drumrolls\n", + "drums\n", + "drumstick\n", + "drumsticks\n", + "drunk\n", + "drunkard\n", + "drunkards\n", + "drunken\n", + "drunkenly\n", + "drunkenness\n", + "drunkennesses\n", + "drunker\n", + "drunkest\n", + "drunks\n", + "drupe\n", + "drupelet\n", + "drupelets\n", + "drupes\n", + "druse\n", + "druses\n", + "druthers\n", + "dry\n", + "dryable\n", + "dryad\n", + "dryades\n", + "dryadic\n", + "dryads\n", + "dryer\n", + "dryers\n", + "dryest\n", + "drying\n", + "drylot\n", + "drylots\n", + "dryly\n", + "dryness\n", + "drynesses\n", + "drypoint\n", + "drypoints\n", + "drys\n", + "duad\n", + "duads\n", + "dual\n", + "dualism\n", + "dualisms\n", + "dualist\n", + "dualists\n", + "dualities\n", + "duality\n", + "dualize\n", + "dualized\n", + "dualizes\n", + "dualizing\n", + "dually\n", + "duals\n", + "dub\n", + "dubbed\n", + "dubber\n", + "dubbers\n", + "dubbin\n", + "dubbing\n", + "dubbings\n", + "dubbins\n", + "dubieties\n", + "dubiety\n", + "dubious\n", + "dubiously\n", + "dubiousness\n", + "dubiousnesses\n", + "dubonnet\n", + "dubonnets\n", + "dubs\n", + "duc\n", + "ducal\n", + "ducally\n", + "ducat\n", + "ducats\n", + "duce\n", + "duces\n", + "duchess\n", + "duchesses\n", + "duchies\n", + "duchy\n", + "duci\n", + "duck\n", + "duckbill\n", + "duckbills\n", + "ducked\n", + "ducker\n", + "duckers\n", + "duckie\n", + "duckier\n", + "duckies\n", + "duckiest\n", + "ducking\n", + "duckling\n", + "ducklings\n", + "duckpin\n", + "duckpins\n", + "ducks\n", + "ducktail\n", + "ducktails\n", + "duckweed\n", + "duckweeds\n", + "ducky\n", + "ducs\n", + "duct\n", + "ducted\n", + "ductile\n", + "ductilities\n", + "ductility\n", + "ducting\n", + "ductings\n", + "ductless\n", + "ducts\n", + "ductule\n", + "ductules\n", + "dud\n", + "duddie\n", + "duddy\n", + "dude\n", + "dudeen\n", + "dudeens\n", + "dudes\n", + "dudgeon\n", + "dudgeons\n", + "dudish\n", + "dudishly\n", + "duds\n", + "due\n", + "duecento\n", + "duecentos\n", + "duel\n", + "dueled\n", + "dueler\n", + "duelers\n", + "dueling\n", + "duelist\n", + "duelists\n", + "duelled\n", + "dueller\n", + "duellers\n", + "duelli\n", + "duelling\n", + "duellist\n", + "duellists\n", + "duello\n", + "duellos\n", + "duels\n", + "duende\n", + "duendes\n", + "dueness\n", + "duenesses\n", + "duenna\n", + "duennas\n", + "dues\n", + "duet\n", + "duets\n", + "duetted\n", + "duetting\n", + "duettist\n", + "duettists\n", + "duff\n", + "duffel\n", + "duffels\n", + "duffer\n", + "duffers\n", + "duffle\n", + "duffles\n", + "duffs\n", + "dug\n", + "dugong\n", + "dugongs\n", + "dugout\n", + "dugouts\n", + "dugs\n", + "dui\n", + "duiker\n", + "duikers\n", + "duit\n", + "duits\n", + "duke\n", + "dukedom\n", + "dukedoms\n", + "dukes\n", + "dulcet\n", + "dulcetly\n", + "dulcets\n", + "dulciana\n", + "dulcianas\n", + "dulcified\n", + "dulcifies\n", + "dulcify\n", + "dulcifying\n", + "dulcimer\n", + "dulcimers\n", + "dulcinea\n", + "dulcineas\n", + "dulia\n", + "dulias\n", + "dull\n", + "dullard\n", + "dullards\n", + "dulled\n", + "duller\n", + "dullest\n", + "dulling\n", + "dullish\n", + "dullness\n", + "dullnesses\n", + "dulls\n", + "dully\n", + "dulness\n", + "dulnesses\n", + "dulse\n", + "dulses\n", + "duly\n", + "duma\n", + "dumas\n", + "dumb\n", + "dumbbell\n", + "dumbbells\n", + "dumbed\n", + "dumber\n", + "dumbest\n", + "dumbfound\n", + "dumbfounded\n", + "dumbfounding\n", + "dumbfounds\n", + "dumbing\n", + "dumbly\n", + "dumbness\n", + "dumbnesses\n", + "dumbs\n", + "dumdum\n", + "dumdums\n", + "dumfound\n", + "dumfounded\n", + "dumfounding\n", + "dumfounds\n", + "dumka\n", + "dumky\n", + "dummied\n", + "dummies\n", + "dummkopf\n", + "dummkopfs\n", + "dummy\n", + "dummying\n", + "dump\n", + "dumpcart\n", + "dumpcarts\n", + "dumped\n", + "dumper\n", + "dumpers\n", + "dumpier\n", + "dumpiest\n", + "dumpily\n", + "dumping\n", + "dumpings\n", + "dumpish\n", + "dumpling\n", + "dumplings\n", + "dumps\n", + "dumpy\n", + "dun\n", + "dunce\n", + "dunces\n", + "dunch\n", + "dunches\n", + "duncical\n", + "duncish\n", + "dune\n", + "duneland\n", + "dunelands\n", + "dunelike\n", + "dunes\n", + "dung\n", + "dungaree\n", + "dungarees\n", + "dunged\n", + "dungeon\n", + "dungeons\n", + "dunghill\n", + "dunghills\n", + "dungier\n", + "dungiest\n", + "dunging\n", + "dungs\n", + "dungy\n", + "dunite\n", + "dunites\n", + "dunitic\n", + "dunk\n", + "dunked\n", + "dunker\n", + "dunkers\n", + "dunking\n", + "dunks\n", + "dunlin\n", + "dunlins\n", + "dunnage\n", + "dunnages\n", + "dunned\n", + "dunner\n", + "dunness\n", + "dunnesses\n", + "dunnest\n", + "dunning\n", + "dunnite\n", + "dunnites\n", + "duns\n", + "dunt\n", + "dunted\n", + "dunting\n", + "dunts\n", + "duo\n", + "duodena\n", + "duodenal\n", + "duodenum\n", + "duodenums\n", + "duolog\n", + "duologs\n", + "duologue\n", + "duologues\n", + "duomi\n", + "duomo\n", + "duomos\n", + "duopolies\n", + "duopoly\n", + "duopsonies\n", + "duopsony\n", + "duos\n", + "duotone\n", + "duotones\n", + "dup\n", + "dupable\n", + "dupe\n", + "duped\n", + "duper\n", + "duperies\n", + "dupers\n", + "dupery\n", + "dupes\n", + "duping\n", + "duple\n", + "duplex\n", + "duplexed\n", + "duplexer\n", + "duplexers\n", + "duplexes\n", + "duplexing\n", + "duplicate\n", + "duplicated\n", + "duplicates\n", + "duplicating\n", + "duplication\n", + "duplications\n", + "duplicator\n", + "duplicators\n", + "duplicity\n", + "dupped\n", + "dupping\n", + "dups\n", + "dura\n", + "durabilities\n", + "durability\n", + "durable\n", + "durables\n", + "durably\n", + "dural\n", + "duramen\n", + "duramens\n", + "durance\n", + "durances\n", + "duras\n", + "duration\n", + "durations\n", + "durative\n", + "duratives\n", + "durbar\n", + "durbars\n", + "dure\n", + "dured\n", + "dures\n", + "duress\n", + "duresses\n", + "durian\n", + "durians\n", + "during\n", + "durion\n", + "durions\n", + "durmast\n", + "durmasts\n", + "durn\n", + "durndest\n", + "durned\n", + "durneder\n", + "durnedest\n", + "durning\n", + "durns\n", + "duro\n", + "duroc\n", + "durocs\n", + "duros\n", + "durr\n", + "durra\n", + "durras\n", + "durrs\n", + "durst\n", + "durum\n", + "durums\n", + "dusk\n", + "dusked\n", + "duskier\n", + "duskiest\n", + "duskily\n", + "dusking\n", + "duskish\n", + "dusks\n", + "dusky\n", + "dust\n", + "dustbin\n", + "dustbins\n", + "dusted\n", + "duster\n", + "dusters\n", + "dustheap\n", + "dustheaps\n", + "dustier\n", + "dustiest\n", + "dustily\n", + "dusting\n", + "dustless\n", + "dustlike\n", + "dustman\n", + "dustmen\n", + "dustpan\n", + "dustpans\n", + "dustrag\n", + "dustrags\n", + "dusts\n", + "dustup\n", + "dustups\n", + "dusty\n", + "dutch\n", + "dutchman\n", + "dutchmen\n", + "duteous\n", + "dutiable\n", + "duties\n", + "dutiful\n", + "duty\n", + "duumvir\n", + "duumviri\n", + "duumvirs\n", + "duvetine\n", + "duvetines\n", + "duvetyn\n", + "duvetyne\n", + "duvetynes\n", + "duvetyns\n", + "dwarf\n", + "dwarfed\n", + "dwarfer\n", + "dwarfest\n", + "dwarfing\n", + "dwarfish\n", + "dwarfism\n", + "dwarfisms\n", + "dwarfs\n", + "dwarves\n", + "dwell\n", + "dwelled\n", + "dweller\n", + "dwellers\n", + "dwelling\n", + "dwellings\n", + "dwells\n", + "dwelt\n", + "dwindle\n", + "dwindled\n", + "dwindles\n", + "dwindling\n", + "dwine\n", + "dwined\n", + "dwines\n", + "dwining\n", + "dyable\n", + "dyad\n", + "dyadic\n", + "dyadics\n", + "dyads\n", + "dyarchic\n", + "dyarchies\n", + "dyarchy\n", + "dybbuk\n", + "dybbukim\n", + "dybbuks\n", + "dye\n", + "dyeable\n", + "dyed\n", + "dyeing\n", + "dyeings\n", + "dyer\n", + "dyers\n", + "dyes\n", + "dyestuff\n", + "dyestuffs\n", + "dyeweed\n", + "dyeweeds\n", + "dyewood\n", + "dyewoods\n", + "dying\n", + "dyings\n", + "dyke\n", + "dyked\n", + "dyker\n", + "dykes\n", + "dyking\n", + "dynamic\n", + "dynamics\n", + "dynamism\n", + "dynamisms\n", + "dynamist\n", + "dynamists\n", + "dynamite\n", + "dynamited\n", + "dynamites\n", + "dynamiting\n", + "dynamo\n", + "dynamos\n", + "dynast\n", + "dynastic\n", + "dynasties\n", + "dynasts\n", + "dynasty\n", + "dynatron\n", + "dynatrons\n", + "dyne\n", + "dynes\n", + "dynode\n", + "dynodes\n", + "dysautonomia\n", + "dysenteries\n", + "dysentery\n", + "dysfunction\n", + "dysfunctions\n", + "dysgenic\n", + "dyslexia\n", + "dyslexias\n", + "dyslexic\n", + "dyspepsia\n", + "dyspepsias\n", + "dyspepsies\n", + "dyspepsy\n", + "dyspeptic\n", + "dysphagia\n", + "dyspnea\n", + "dyspneal\n", + "dyspneas\n", + "dyspneic\n", + "dyspnoea\n", + "dyspnoeas\n", + "dyspnoic\n", + "dystaxia\n", + "dystaxias\n", + "dystocia\n", + "dystocias\n", + "dystonia\n", + "dystonias\n", + "dystopia\n", + "dystopias\n", + "dystrophies\n", + "dystrophy\n", + "dysuria\n", + "dysurias\n", + "dysuric\n", + "dyvour\n", + "dyvours\n", + "each\n", + "eager\n", + "eagerer\n", + "eagerest\n", + "eagerly\n", + "eagerness\n", + "eagernesses\n", + "eagers\n", + "eagle\n", + "eagles\n", + "eaglet\n", + "eaglets\n", + "eagre\n", + "eagres\n", + "eanling\n", + "eanlings\n", + "ear\n", + "earache\n", + "earaches\n", + "eardrop\n", + "eardrops\n", + "eardrum\n", + "eardrums\n", + "eared\n", + "earflap\n", + "earflaps\n", + "earful\n", + "earfuls\n", + "earing\n", + "earings\n", + "earl\n", + "earlap\n", + "earlaps\n", + "earldom\n", + "earldoms\n", + "earless\n", + "earlier\n", + "earliest\n", + "earlobe\n", + "earlobes\n", + "earlock\n", + "earlocks\n", + "earls\n", + "earlship\n", + "earlships\n", + "early\n", + "earmark\n", + "earmarked\n", + "earmarking\n", + "earmarks\n", + "earmuff\n", + "earmuffs\n", + "earn\n", + "earned\n", + "earner\n", + "earners\n", + "earnest\n", + "earnestly\n", + "earnestness\n", + "earnestnesses\n", + "earnests\n", + "earning\n", + "earnings\n", + "earns\n", + "earphone\n", + "earphones\n", + "earpiece\n", + "earpieces\n", + "earplug\n", + "earplugs\n", + "earring\n", + "earrings\n", + "ears\n", + "earshot\n", + "earshots\n", + "earstone\n", + "earstones\n", + "earth\n", + "earthed\n", + "earthen\n", + "earthenware\n", + "earthenwares\n", + "earthier\n", + "earthiest\n", + "earthily\n", + "earthiness\n", + "earthinesses\n", + "earthing\n", + "earthlier\n", + "earthliest\n", + "earthliness\n", + "earthlinesses\n", + "earthly\n", + "earthman\n", + "earthmen\n", + "earthnut\n", + "earthnuts\n", + "earthpea\n", + "earthpeas\n", + "earthquake\n", + "earthquakes\n", + "earths\n", + "earthset\n", + "earthsets\n", + "earthward\n", + "earthwards\n", + "earthworm\n", + "earthworms\n", + "earthy\n", + "earwax\n", + "earwaxes\n", + "earwig\n", + "earwigged\n", + "earwigging\n", + "earwigs\n", + "earworm\n", + "earworms\n", + "ease\n", + "eased\n", + "easeful\n", + "easel\n", + "easels\n", + "easement\n", + "easements\n", + "eases\n", + "easier\n", + "easies\n", + "easiest\n", + "easily\n", + "easiness\n", + "easinesses\n", + "easing\n", + "east\n", + "easter\n", + "easterlies\n", + "easterly\n", + "eastern\n", + "easters\n", + "easting\n", + "eastings\n", + "easts\n", + "eastward\n", + "eastwards\n", + "easy\n", + "easygoing\n", + "eat\n", + "eatable\n", + "eatables\n", + "eaten\n", + "eater\n", + "eateries\n", + "eaters\n", + "eatery\n", + "eath\n", + "eating\n", + "eatings\n", + "eats\n", + "eau\n", + "eaux\n", + "eave\n", + "eaved\n", + "eaves\n", + "eavesdrop\n", + "eavesdropped\n", + "eavesdropper\n", + "eavesdroppers\n", + "eavesdropping\n", + "eavesdrops\n", + "ebb\n", + "ebbed\n", + "ebbet\n", + "ebbets\n", + "ebbing\n", + "ebbs\n", + "ebon\n", + "ebonies\n", + "ebonise\n", + "ebonised\n", + "ebonises\n", + "ebonising\n", + "ebonite\n", + "ebonites\n", + "ebonize\n", + "ebonized\n", + "ebonizes\n", + "ebonizing\n", + "ebons\n", + "ebony\n", + "ebullient\n", + "ecarte\n", + "ecartes\n", + "ecaudate\n", + "ecbolic\n", + "ecbolics\n", + "eccentric\n", + "eccentrically\n", + "eccentricities\n", + "eccentricity\n", + "eccentrics\n", + "ecclesia\n", + "ecclesiae\n", + "ecclesiastic\n", + "ecclesiastical\n", + "ecclesiastics\n", + "eccrine\n", + "ecdyses\n", + "ecdysial\n", + "ecdysis\n", + "ecdyson\n", + "ecdysone\n", + "ecdysones\n", + "ecdysons\n", + "ecesis\n", + "ecesises\n", + "echard\n", + "echards\n", + "eche\n", + "eched\n", + "echelon\n", + "echeloned\n", + "echeloning\n", + "echelons\n", + "eches\n", + "echidna\n", + "echidnae\n", + "echidnas\n", + "echinate\n", + "eching\n", + "echini\n", + "echinoid\n", + "echinoids\n", + "echinus\n", + "echo\n", + "echoed\n", + "echoer\n", + "echoers\n", + "echoes\n", + "echoey\n", + "echoic\n", + "echoing\n", + "echoism\n", + "echoisms\n", + "echoless\n", + "eclair\n", + "eclairs\n", + "eclat\n", + "eclats\n", + "eclectic\n", + "eclectics\n", + "eclipse\n", + "eclipsed\n", + "eclipses\n", + "eclipsing\n", + "eclipsis\n", + "eclipsises\n", + "ecliptic\n", + "ecliptics\n", + "eclogite\n", + "eclogites\n", + "eclogue\n", + "eclogues\n", + "eclosion\n", + "eclosions\n", + "ecole\n", + "ecoles\n", + "ecologic\n", + "ecological\n", + "ecologically\n", + "ecologies\n", + "ecologist\n", + "ecologists\n", + "ecology\n", + "economic\n", + "economical\n", + "economically\n", + "economics\n", + "economies\n", + "economist\n", + "economists\n", + "economize\n", + "economized\n", + "economizes\n", + "economizing\n", + "economy\n", + "ecotonal\n", + "ecotone\n", + "ecotones\n", + "ecotype\n", + "ecotypes\n", + "ecotypic\n", + "ecraseur\n", + "ecraseurs\n", + "ecru\n", + "ecrus\n", + "ecstasies\n", + "ecstasy\n", + "ecstatic\n", + "ecstatically\n", + "ecstatics\n", + "ectases\n", + "ectasis\n", + "ectatic\n", + "ecthyma\n", + "ecthymata\n", + "ectoderm\n", + "ectoderms\n", + "ectomere\n", + "ectomeres\n", + "ectopia\n", + "ectopias\n", + "ectopic\n", + "ectosarc\n", + "ectosarcs\n", + "ectozoa\n", + "ectozoan\n", + "ectozoans\n", + "ectozoon\n", + "ectypal\n", + "ectype\n", + "ectypes\n", + "ecu\n", + "ecumenic\n", + "ecus\n", + "eczema\n", + "eczemas\n", + "edacious\n", + "edacities\n", + "edacity\n", + "edaphic\n", + "eddied\n", + "eddies\n", + "eddo\n", + "eddoes\n", + "eddy\n", + "eddying\n", + "edelstein\n", + "edema\n", + "edemas\n", + "edemata\n", + "edentate\n", + "edentates\n", + "edge\n", + "edged\n", + "edgeless\n", + "edger\n", + "edgers\n", + "edges\n", + "edgeways\n", + "edgewise\n", + "edgier\n", + "edgiest\n", + "edgily\n", + "edginess\n", + "edginesses\n", + "edging\n", + "edgings\n", + "edgy\n", + "edh\n", + "edhs\n", + "edibilities\n", + "edibility\n", + "edible\n", + "edibles\n", + "edict\n", + "edictal\n", + "edicts\n", + "edification\n", + "edifications\n", + "edifice\n", + "edifices\n", + "edified\n", + "edifier\n", + "edifiers\n", + "edifies\n", + "edify\n", + "edifying\n", + "edile\n", + "ediles\n", + "edit\n", + "editable\n", + "edited\n", + "editing\n", + "edition\n", + "editions\n", + "editor\n", + "editorial\n", + "editorialize\n", + "editorialized\n", + "editorializes\n", + "editorializing\n", + "editorially\n", + "editorials\n", + "editors\n", + "editress\n", + "editresses\n", + "edits\n", + "educable\n", + "educables\n", + "educate\n", + "educated\n", + "educates\n", + "educating\n", + "education\n", + "educational\n", + "educations\n", + "educator\n", + "educators\n", + "educe\n", + "educed\n", + "educes\n", + "educing\n", + "educt\n", + "eduction\n", + "eductions\n", + "eductive\n", + "eductor\n", + "eductors\n", + "educts\n", + "eel\n", + "eelgrass\n", + "eelgrasses\n", + "eelier\n", + "eeliest\n", + "eellike\n", + "eelpout\n", + "eelpouts\n", + "eels\n", + "eelworm\n", + "eelworms\n", + "eely\n", + "eerie\n", + "eerier\n", + "eeriest\n", + "eerily\n", + "eeriness\n", + "eerinesses\n", + "eery\n", + "ef\n", + "eff\n", + "effable\n", + "efface\n", + "effaced\n", + "effacement\n", + "effacements\n", + "effacer\n", + "effacers\n", + "effaces\n", + "effacing\n", + "effect\n", + "effected\n", + "effecter\n", + "effecters\n", + "effecting\n", + "effective\n", + "effectively\n", + "effectiveness\n", + "effector\n", + "effectors\n", + "effects\n", + "effectual\n", + "effectually\n", + "effectualness\n", + "effectualnesses\n", + "effeminacies\n", + "effeminacy\n", + "effeminate\n", + "effendi\n", + "effendis\n", + "efferent\n", + "efferents\n", + "effervesce\n", + "effervesced\n", + "effervescence\n", + "effervescences\n", + "effervescent\n", + "effervescently\n", + "effervesces\n", + "effervescing\n", + "effete\n", + "effetely\n", + "efficacies\n", + "efficacious\n", + "efficacy\n", + "efficiencies\n", + "efficiency\n", + "efficient\n", + "efficiently\n", + "effigies\n", + "effigy\n", + "effluent\n", + "effluents\n", + "effluvia\n", + "efflux\n", + "effluxes\n", + "effort\n", + "effortless\n", + "effortlessly\n", + "efforts\n", + "effrontery\n", + "effs\n", + "effulge\n", + "effulged\n", + "effulges\n", + "effulging\n", + "effuse\n", + "effused\n", + "effuses\n", + "effusing\n", + "effusion\n", + "effusions\n", + "effusive\n", + "effusively\n", + "efs\n", + "eft\n", + "efts\n", + "eftsoon\n", + "eftsoons\n", + "egad\n", + "egads\n", + "egal\n", + "egalite\n", + "egalites\n", + "eger\n", + "egers\n", + "egest\n", + "egesta\n", + "egested\n", + "egesting\n", + "egestion\n", + "egestions\n", + "egestive\n", + "egests\n", + "egg\n", + "eggar\n", + "eggars\n", + "eggcup\n", + "eggcups\n", + "egged\n", + "egger\n", + "eggers\n", + "egghead\n", + "eggheads\n", + "egging\n", + "eggnog\n", + "eggnogs\n", + "eggplant\n", + "eggplants\n", + "eggs\n", + "eggshell\n", + "eggshells\n", + "egis\n", + "egises\n", + "eglatere\n", + "eglateres\n", + "ego\n", + "egoism\n", + "egoisms\n", + "egoist\n", + "egoistic\n", + "egoists\n", + "egomania\n", + "egomanias\n", + "egos\n", + "egotism\n", + "egotisms\n", + "egotist\n", + "egotistic\n", + "egotistical\n", + "egotistically\n", + "egotists\n", + "egregious\n", + "egregiously\n", + "egress\n", + "egressed\n", + "egresses\n", + "egressing\n", + "egret\n", + "egrets\n", + "eh\n", + "eide\n", + "eider\n", + "eiderdown\n", + "eiderdowns\n", + "eiders\n", + "eidetic\n", + "eidola\n", + "eidolon\n", + "eidolons\n", + "eidos\n", + "eight\n", + "eighteen\n", + "eighteens\n", + "eighteenth\n", + "eighteenths\n", + "eighth\n", + "eighthly\n", + "eighths\n", + "eighties\n", + "eightieth\n", + "eightieths\n", + "eights\n", + "eightvo\n", + "eightvos\n", + "eighty\n", + "eikon\n", + "eikones\n", + "eikons\n", + "einkorn\n", + "einkorns\n", + "eirenic\n", + "either\n", + "ejaculate\n", + "ejaculated\n", + "ejaculates\n", + "ejaculating\n", + "ejaculation\n", + "ejaculations\n", + "eject\n", + "ejecta\n", + "ejected\n", + "ejecting\n", + "ejection\n", + "ejections\n", + "ejective\n", + "ejectives\n", + "ejector\n", + "ejectors\n", + "ejects\n", + "eke\n", + "eked\n", + "ekes\n", + "eking\n", + "ekistic\n", + "ekistics\n", + "ektexine\n", + "ektexines\n", + "el\n", + "elaborate\n", + "elaborated\n", + "elaborately\n", + "elaborateness\n", + "elaboratenesses\n", + "elaborates\n", + "elaborating\n", + "elaboration\n", + "elaborations\n", + "elain\n", + "elains\n", + "elan\n", + "eland\n", + "elands\n", + "elans\n", + "elaphine\n", + "elapid\n", + "elapids\n", + "elapine\n", + "elapse\n", + "elapsed\n", + "elapses\n", + "elapsing\n", + "elastase\n", + "elastases\n", + "elastic\n", + "elasticities\n", + "elasticity\n", + "elastics\n", + "elastin\n", + "elastins\n", + "elate\n", + "elated\n", + "elatedly\n", + "elater\n", + "elaterid\n", + "elaterids\n", + "elaterin\n", + "elaterins\n", + "elaters\n", + "elates\n", + "elating\n", + "elation\n", + "elations\n", + "elative\n", + "elatives\n", + "elbow\n", + "elbowed\n", + "elbowing\n", + "elbows\n", + "eld\n", + "elder\n", + "elderberries\n", + "elderberry\n", + "elderly\n", + "elders\n", + "eldest\n", + "eldrich\n", + "eldritch\n", + "elds\n", + "elect\n", + "elected\n", + "electing\n", + "election\n", + "elections\n", + "elective\n", + "electives\n", + "elector\n", + "electoral\n", + "electorate\n", + "electorates\n", + "electors\n", + "electret\n", + "electrets\n", + "electric\n", + "electrical\n", + "electrically\n", + "electrician\n", + "electricians\n", + "electricities\n", + "electricity\n", + "electrics\n", + "electrification\n", + "electrifications\n", + "electro\n", + "electrocardiogram\n", + "electrocardiograms\n", + "electrocardiograph\n", + "electrocardiographs\n", + "electrocute\n", + "electrocuted\n", + "electrocutes\n", + "electrocuting\n", + "electrocution\n", + "electrocutions\n", + "electrode\n", + "electrodes\n", + "electroed\n", + "electroing\n", + "electrolysis\n", + "electrolysises\n", + "electrolyte\n", + "electrolytes\n", + "electrolytic\n", + "electromagnet\n", + "electromagnetally\n", + "electromagnetic\n", + "electromagnets\n", + "electron\n", + "electronic\n", + "electronics\n", + "electrons\n", + "electroplate\n", + "electroplated\n", + "electroplates\n", + "electroplating\n", + "electros\n", + "electrum\n", + "electrums\n", + "elects\n", + "elegance\n", + "elegances\n", + "elegancies\n", + "elegancy\n", + "elegant\n", + "elegantly\n", + "elegiac\n", + "elegiacs\n", + "elegies\n", + "elegise\n", + "elegised\n", + "elegises\n", + "elegising\n", + "elegist\n", + "elegists\n", + "elegit\n", + "elegits\n", + "elegize\n", + "elegized\n", + "elegizes\n", + "elegizing\n", + "elegy\n", + "element\n", + "elemental\n", + "elementary\n", + "elements\n", + "elemi\n", + "elemis\n", + "elenchi\n", + "elenchic\n", + "elenchus\n", + "elenctic\n", + "elephant\n", + "elephants\n", + "elevate\n", + "elevated\n", + "elevates\n", + "elevating\n", + "elevation\n", + "elevations\n", + "elevator\n", + "elevators\n", + "eleven\n", + "elevens\n", + "eleventh\n", + "elevenths\n", + "elevon\n", + "elevons\n", + "elf\n", + "elfin\n", + "elfins\n", + "elfish\n", + "elfishly\n", + "elflock\n", + "elflocks\n", + "elhi\n", + "elicit\n", + "elicited\n", + "eliciting\n", + "elicitor\n", + "elicitors\n", + "elicits\n", + "elide\n", + "elided\n", + "elides\n", + "elidible\n", + "eliding\n", + "eligibilities\n", + "eligibility\n", + "eligible\n", + "eligibles\n", + "eligibly\n", + "eliminate\n", + "eliminated\n", + "eliminates\n", + "eliminating\n", + "elimination\n", + "eliminations\n", + "elision\n", + "elisions\n", + "elite\n", + "elites\n", + "elitism\n", + "elitisms\n", + "elitist\n", + "elitists\n", + "elixir\n", + "elixirs\n", + "elk\n", + "elkhound\n", + "elkhounds\n", + "elks\n", + "ell\n", + "ellipse\n", + "ellipses\n", + "ellipsis\n", + "elliptic\n", + "elliptical\n", + "ells\n", + "elm\n", + "elmier\n", + "elmiest\n", + "elms\n", + "elmy\n", + "elocution\n", + "elocutions\n", + "elodea\n", + "elodeas\n", + "eloign\n", + "eloigned\n", + "eloigner\n", + "eloigners\n", + "eloigning\n", + "eloigns\n", + "eloin\n", + "eloined\n", + "eloiner\n", + "eloiners\n", + "eloining\n", + "eloins\n", + "elongate\n", + "elongated\n", + "elongates\n", + "elongating\n", + "elongation\n", + "elongations\n", + "elope\n", + "eloped\n", + "eloper\n", + "elopers\n", + "elopes\n", + "eloping\n", + "eloquent\n", + "eloquently\n", + "els\n", + "else\n", + "elsewhere\n", + "eluant\n", + "eluants\n", + "eluate\n", + "eluates\n", + "elucidate\n", + "elucidated\n", + "elucidates\n", + "elucidating\n", + "elucidation\n", + "elucidations\n", + "elude\n", + "eluded\n", + "eluder\n", + "eluders\n", + "eludes\n", + "eluding\n", + "eluent\n", + "eluents\n", + "elusion\n", + "elusions\n", + "elusive\n", + "elusively\n", + "elusiveness\n", + "elusivenesses\n", + "elusory\n", + "elute\n", + "eluted\n", + "elutes\n", + "eluting\n", + "elution\n", + "elutions\n", + "eluvia\n", + "eluvial\n", + "eluviate\n", + "eluviated\n", + "eluviates\n", + "eluviating\n", + "eluvium\n", + "eluviums\n", + "elver\n", + "elvers\n", + "elves\n", + "elvish\n", + "elvishly\n", + "elysian\n", + "elytra\n", + "elytroid\n", + "elytron\n", + "elytrous\n", + "elytrum\n", + "em\n", + "emaciate\n", + "emaciated\n", + "emaciates\n", + "emaciating\n", + "emaciation\n", + "emaciations\n", + "emanate\n", + "emanated\n", + "emanates\n", + "emanating\n", + "emanation\n", + "emanations\n", + "emanator\n", + "emanators\n", + "emancipatation\n", + "emancipatations\n", + "emancipate\n", + "emancipated\n", + "emancipates\n", + "emancipating\n", + "emancipation\n", + "emancipations\n", + "emasculatation\n", + "emasculatations\n", + "emasculate\n", + "emasculated\n", + "emasculates\n", + "emasculating\n", + "embalm\n", + "embalmed\n", + "embalmer\n", + "embalmers\n", + "embalming\n", + "embalms\n", + "embank\n", + "embanked\n", + "embanking\n", + "embankment\n", + "embankments\n", + "embanks\n", + "embar\n", + "embargo\n", + "embargoed\n", + "embargoing\n", + "embargos\n", + "embark\n", + "embarkation\n", + "embarkations\n", + "embarked\n", + "embarking\n", + "embarks\n", + "embarrass\n", + "embarrassed\n", + "embarrasses\n", + "embarrassing\n", + "embarrassment\n", + "embarrassments\n", + "embarred\n", + "embarring\n", + "embars\n", + "embassies\n", + "embassy\n", + "embattle\n", + "embattled\n", + "embattles\n", + "embattling\n", + "embay\n", + "embayed\n", + "embaying\n", + "embays\n", + "embed\n", + "embedded\n", + "embedding\n", + "embeds\n", + "embellish\n", + "embellished\n", + "embellishes\n", + "embellishing\n", + "embellishment\n", + "embellishments\n", + "ember\n", + "embers\n", + "embezzle\n", + "embezzled\n", + "embezzlement\n", + "embezzlements\n", + "embezzler\n", + "embezzlers\n", + "embezzles\n", + "embezzling\n", + "embitter\n", + "embittered\n", + "embittering\n", + "embitters\n", + "emblaze\n", + "emblazed\n", + "emblazer\n", + "emblazers\n", + "emblazes\n", + "emblazing\n", + "emblazon\n", + "emblazoned\n", + "emblazoning\n", + "emblazons\n", + "emblem\n", + "emblematic\n", + "emblemed\n", + "embleming\n", + "emblems\n", + "embodied\n", + "embodier\n", + "embodiers\n", + "embodies\n", + "embodiment\n", + "embodiments\n", + "embody\n", + "embodying\n", + "embolden\n", + "emboldened\n", + "emboldening\n", + "emboldens\n", + "emboli\n", + "embolic\n", + "embolies\n", + "embolism\n", + "embolisms\n", + "embolus\n", + "emboly\n", + "emborder\n", + "embordered\n", + "embordering\n", + "emborders\n", + "embosk\n", + "embosked\n", + "embosking\n", + "embosks\n", + "embosom\n", + "embosomed\n", + "embosoming\n", + "embosoms\n", + "emboss\n", + "embossed\n", + "embosser\n", + "embossers\n", + "embosses\n", + "embossing\n", + "embow\n", + "embowed\n", + "embowel\n", + "emboweled\n", + "emboweling\n", + "embowelled\n", + "embowelling\n", + "embowels\n", + "embower\n", + "embowered\n", + "embowering\n", + "embowers\n", + "embowing\n", + "embows\n", + "embrace\n", + "embraced\n", + "embracer\n", + "embracers\n", + "embraces\n", + "embracing\n", + "embroider\n", + "embroidered\n", + "embroidering\n", + "embroiders\n", + "embroil\n", + "embroiled\n", + "embroiling\n", + "embroils\n", + "embrown\n", + "embrowned\n", + "embrowning\n", + "embrowns\n", + "embrue\n", + "embrued\n", + "embrues\n", + "embruing\n", + "embrute\n", + "embruted\n", + "embrutes\n", + "embruting\n", + "embryo\n", + "embryoid\n", + "embryon\n", + "embryonic\n", + "embryons\n", + "embryos\n", + "emcee\n", + "emceed\n", + "emcees\n", + "emceing\n", + "eme\n", + "emeer\n", + "emeerate\n", + "emeerates\n", + "emeers\n", + "emend\n", + "emendate\n", + "emendated\n", + "emendates\n", + "emendating\n", + "emendation\n", + "emendations\n", + "emended\n", + "emender\n", + "emenders\n", + "emending\n", + "emends\n", + "emerald\n", + "emeralds\n", + "emerge\n", + "emerged\n", + "emergence\n", + "emergences\n", + "emergencies\n", + "emergency\n", + "emergent\n", + "emergents\n", + "emerges\n", + "emerging\n", + "emeries\n", + "emerita\n", + "emeriti\n", + "emeritus\n", + "emerod\n", + "emerods\n", + "emeroid\n", + "emeroids\n", + "emersed\n", + "emersion\n", + "emersions\n", + "emery\n", + "emes\n", + "emeses\n", + "emesis\n", + "emetic\n", + "emetics\n", + "emetin\n", + "emetine\n", + "emetines\n", + "emetins\n", + "emeu\n", + "emeus\n", + "emeute\n", + "emeutes\n", + "emigrant\n", + "emigrants\n", + "emigrate\n", + "emigrated\n", + "emigrates\n", + "emigrating\n", + "emigration\n", + "emigrations\n", + "emigre\n", + "emigres\n", + "eminence\n", + "eminences\n", + "eminencies\n", + "eminency\n", + "eminent\n", + "eminently\n", + "emir\n", + "emirate\n", + "emirates\n", + "emirs\n", + "emissaries\n", + "emissary\n", + "emission\n", + "emissions\n", + "emissive\n", + "emit\n", + "emits\n", + "emitted\n", + "emitter\n", + "emitters\n", + "emitting\n", + "emmer\n", + "emmers\n", + "emmet\n", + "emmets\n", + "emodin\n", + "emodins\n", + "emolument\n", + "emoluments\n", + "emote\n", + "emoted\n", + "emoter\n", + "emoters\n", + "emotes\n", + "emoting\n", + "emotion\n", + "emotional\n", + "emotionally\n", + "emotions\n", + "emotive\n", + "empale\n", + "empaled\n", + "empaler\n", + "empalers\n", + "empales\n", + "empaling\n", + "empanel\n", + "empaneled\n", + "empaneling\n", + "empanelled\n", + "empanelling\n", + "empanels\n", + "empathic\n", + "empathies\n", + "empathy\n", + "emperies\n", + "emperor\n", + "emperors\n", + "empery\n", + "emphases\n", + "emphasis\n", + "emphasize\n", + "emphasized\n", + "emphasizes\n", + "emphasizing\n", + "emphatic\n", + "emphatically\n", + "emphysema\n", + "emphysemas\n", + "empire\n", + "empires\n", + "empiric\n", + "empirical\n", + "empirically\n", + "empirics\n", + "emplace\n", + "emplaced\n", + "emplaces\n", + "emplacing\n", + "emplane\n", + "emplaned\n", + "emplanes\n", + "emplaning\n", + "employ\n", + "employe\n", + "employed\n", + "employee\n", + "employees\n", + "employer\n", + "employers\n", + "employes\n", + "employing\n", + "employment\n", + "employments\n", + "employs\n", + "empoison\n", + "empoisoned\n", + "empoisoning\n", + "empoisons\n", + "emporia\n", + "emporium\n", + "emporiums\n", + "empower\n", + "empowered\n", + "empowering\n", + "empowers\n", + "empress\n", + "empresses\n", + "emprise\n", + "emprises\n", + "emprize\n", + "emprizes\n", + "emptied\n", + "emptier\n", + "emptiers\n", + "empties\n", + "emptiest\n", + "emptily\n", + "emptiness\n", + "emptinesses\n", + "emptings\n", + "emptins\n", + "empty\n", + "emptying\n", + "empurple\n", + "empurpled\n", + "empurples\n", + "empurpling\n", + "empyema\n", + "empyemas\n", + "empyemata\n", + "empyemic\n", + "empyreal\n", + "empyrean\n", + "empyreans\n", + "ems\n", + "emu\n", + "emulate\n", + "emulated\n", + "emulates\n", + "emulating\n", + "emulation\n", + "emulations\n", + "emulator\n", + "emulators\n", + "emulous\n", + "emulsification\n", + "emulsifications\n", + "emulsified\n", + "emulsifier\n", + "emulsifiers\n", + "emulsifies\n", + "emulsify\n", + "emulsifying\n", + "emulsion\n", + "emulsions\n", + "emulsive\n", + "emulsoid\n", + "emulsoids\n", + "emus\n", + "emyd\n", + "emyde\n", + "emydes\n", + "emyds\n", + "en\n", + "enable\n", + "enabled\n", + "enabler\n", + "enablers\n", + "enables\n", + "enabling\n", + "enact\n", + "enacted\n", + "enacting\n", + "enactive\n", + "enactment\n", + "enactments\n", + "enactor\n", + "enactors\n", + "enactory\n", + "enacts\n", + "enamel\n", + "enameled\n", + "enameler\n", + "enamelers\n", + "enameling\n", + "enamelled\n", + "enamelling\n", + "enamels\n", + "enamine\n", + "enamines\n", + "enamor\n", + "enamored\n", + "enamoring\n", + "enamors\n", + "enamour\n", + "enamoured\n", + "enamouring\n", + "enamours\n", + "enate\n", + "enates\n", + "enatic\n", + "enation\n", + "enations\n", + "encaenia\n", + "encage\n", + "encaged\n", + "encages\n", + "encaging\n", + "encamp\n", + "encamped\n", + "encamping\n", + "encampment\n", + "encampments\n", + "encamps\n", + "encase\n", + "encased\n", + "encases\n", + "encash\n", + "encashed\n", + "encashes\n", + "encashing\n", + "encasing\n", + "enceinte\n", + "enceintes\n", + "encephalitides\n", + "encephalitis\n", + "enchain\n", + "enchained\n", + "enchaining\n", + "enchains\n", + "enchant\n", + "enchanted\n", + "enchanter\n", + "enchanters\n", + "enchanting\n", + "enchantment\n", + "enchantments\n", + "enchantress\n", + "enchantresses\n", + "enchants\n", + "enchase\n", + "enchased\n", + "enchaser\n", + "enchasers\n", + "enchases\n", + "enchasing\n", + "enchoric\n", + "encina\n", + "encinal\n", + "encinas\n", + "encipher\n", + "enciphered\n", + "enciphering\n", + "enciphers\n", + "encircle\n", + "encircled\n", + "encircles\n", + "encircling\n", + "enclasp\n", + "enclasped\n", + "enclasping\n", + "enclasps\n", + "enclave\n", + "enclaves\n", + "enclitic\n", + "enclitics\n", + "enclose\n", + "enclosed\n", + "encloser\n", + "enclosers\n", + "encloses\n", + "enclosing\n", + "enclosure\n", + "enclosures\n", + "encode\n", + "encoded\n", + "encoder\n", + "encoders\n", + "encodes\n", + "encoding\n", + "encomia\n", + "encomium\n", + "encomiums\n", + "encompass\n", + "encompassed\n", + "encompasses\n", + "encompassing\n", + "encore\n", + "encored\n", + "encores\n", + "encoring\n", + "encounter\n", + "encountered\n", + "encountering\n", + "encounters\n", + "encourage\n", + "encouraged\n", + "encouragement\n", + "encouragements\n", + "encourages\n", + "encouraging\n", + "encroach\n", + "encroached\n", + "encroaches\n", + "encroaching\n", + "encroachment\n", + "encroachments\n", + "encrust\n", + "encrusted\n", + "encrusting\n", + "encrusts\n", + "encrypt\n", + "encrypted\n", + "encrypting\n", + "encrypts\n", + "encumber\n", + "encumberance\n", + "encumberances\n", + "encumbered\n", + "encumbering\n", + "encumbers\n", + "encyclic\n", + "encyclical\n", + "encyclicals\n", + "encyclics\n", + "encyclopedia\n", + "encyclopedias\n", + "encyclopedic\n", + "encyst\n", + "encysted\n", + "encysting\n", + "encysts\n", + "end\n", + "endamage\n", + "endamaged\n", + "endamages\n", + "endamaging\n", + "endameba\n", + "endamebae\n", + "endamebas\n", + "endanger\n", + "endangered\n", + "endangering\n", + "endangers\n", + "endarch\n", + "endarchies\n", + "endarchy\n", + "endbrain\n", + "endbrains\n", + "endear\n", + "endeared\n", + "endearing\n", + "endearment\n", + "endearments\n", + "endears\n", + "endeavor\n", + "endeavored\n", + "endeavoring\n", + "endeavors\n", + "ended\n", + "endemial\n", + "endemic\n", + "endemics\n", + "endemism\n", + "endemisms\n", + "ender\n", + "endermic\n", + "enders\n", + "endexine\n", + "endexines\n", + "ending\n", + "endings\n", + "endite\n", + "endited\n", + "endites\n", + "enditing\n", + "endive\n", + "endives\n", + "endleaf\n", + "endleaves\n", + "endless\n", + "endlessly\n", + "endlong\n", + "endmost\n", + "endocarp\n", + "endocarps\n", + "endocrine\n", + "endoderm\n", + "endoderms\n", + "endogamies\n", + "endogamy\n", + "endogen\n", + "endogenies\n", + "endogens\n", + "endogeny\n", + "endopod\n", + "endopods\n", + "endorse\n", + "endorsed\n", + "endorsee\n", + "endorsees\n", + "endorsement\n", + "endorsements\n", + "endorser\n", + "endorsers\n", + "endorses\n", + "endorsing\n", + "endorsor\n", + "endorsors\n", + "endosarc\n", + "endosarcs\n", + "endosmos\n", + "endosmoses\n", + "endosome\n", + "endosomes\n", + "endostea\n", + "endow\n", + "endowed\n", + "endower\n", + "endowers\n", + "endowing\n", + "endowment\n", + "endowments\n", + "endows\n", + "endozoic\n", + "endpaper\n", + "endpapers\n", + "endplate\n", + "endplates\n", + "endrin\n", + "endrins\n", + "ends\n", + "endue\n", + "endued\n", + "endues\n", + "enduing\n", + "endurable\n", + "endurance\n", + "endurances\n", + "endure\n", + "endured\n", + "endures\n", + "enduring\n", + "enduro\n", + "enduros\n", + "endways\n", + "endwise\n", + "enema\n", + "enemas\n", + "enemata\n", + "enemies\n", + "enemy\n", + "energetic\n", + "energetically\n", + "energid\n", + "energids\n", + "energies\n", + "energise\n", + "energised\n", + "energises\n", + "energising\n", + "energize\n", + "energized\n", + "energizes\n", + "energizing\n", + "energy\n", + "enervate\n", + "enervated\n", + "enervates\n", + "enervating\n", + "enervation\n", + "enervations\n", + "enface\n", + "enfaced\n", + "enfaces\n", + "enfacing\n", + "enfeeble\n", + "enfeebled\n", + "enfeebles\n", + "enfeebling\n", + "enfeoff\n", + "enfeoffed\n", + "enfeoffing\n", + "enfeoffs\n", + "enfetter\n", + "enfettered\n", + "enfettering\n", + "enfetters\n", + "enfever\n", + "enfevered\n", + "enfevering\n", + "enfevers\n", + "enfilade\n", + "enfiladed\n", + "enfilades\n", + "enfilading\n", + "enfin\n", + "enflame\n", + "enflamed\n", + "enflames\n", + "enflaming\n", + "enfold\n", + "enfolded\n", + "enfolder\n", + "enfolders\n", + "enfolding\n", + "enfolds\n", + "enforce\n", + "enforceable\n", + "enforced\n", + "enforcement\n", + "enforcements\n", + "enforcer\n", + "enforcers\n", + "enforces\n", + "enforcing\n", + "enframe\n", + "enframed\n", + "enframes\n", + "enframing\n", + "enfranchise\n", + "enfranchised\n", + "enfranchisement\n", + "enfranchisements\n", + "enfranchises\n", + "enfranchising\n", + "eng\n", + "engage\n", + "engaged\n", + "engagement\n", + "engagements\n", + "engager\n", + "engagers\n", + "engages\n", + "engaging\n", + "engender\n", + "engendered\n", + "engendering\n", + "engenders\n", + "engild\n", + "engilded\n", + "engilding\n", + "engilds\n", + "engine\n", + "engined\n", + "engineer\n", + "engineered\n", + "engineering\n", + "engineerings\n", + "engineers\n", + "engineries\n", + "enginery\n", + "engines\n", + "engining\n", + "enginous\n", + "engird\n", + "engirded\n", + "engirding\n", + "engirdle\n", + "engirdled\n", + "engirdles\n", + "engirdling\n", + "engirds\n", + "engirt\n", + "english\n", + "englished\n", + "englishes\n", + "englishing\n", + "englut\n", + "engluts\n", + "englutted\n", + "englutting\n", + "engorge\n", + "engorged\n", + "engorges\n", + "engorging\n", + "engraft\n", + "engrafted\n", + "engrafting\n", + "engrafts\n", + "engrail\n", + "engrailed\n", + "engrailing\n", + "engrails\n", + "engrain\n", + "engrained\n", + "engraining\n", + "engrains\n", + "engram\n", + "engramme\n", + "engrammes\n", + "engrams\n", + "engrave\n", + "engraved\n", + "engraver\n", + "engravers\n", + "engraves\n", + "engraving\n", + "engravings\n", + "engross\n", + "engrossed\n", + "engrosses\n", + "engrossing\n", + "engs\n", + "engulf\n", + "engulfed\n", + "engulfing\n", + "engulfs\n", + "enhalo\n", + "enhaloed\n", + "enhaloes\n", + "enhaloing\n", + "enhance\n", + "enhanced\n", + "enhancement\n", + "enhancements\n", + "enhancer\n", + "enhancers\n", + "enhances\n", + "enhancing\n", + "eniac\n", + "enigma\n", + "enigmas\n", + "enigmata\n", + "enigmatic\n", + "enisle\n", + "enisled\n", + "enisles\n", + "enisling\n", + "enjambed\n", + "enjoin\n", + "enjoined\n", + "enjoiner\n", + "enjoiners\n", + "enjoining\n", + "enjoins\n", + "enjoy\n", + "enjoyable\n", + "enjoyed\n", + "enjoyer\n", + "enjoyers\n", + "enjoying\n", + "enjoyment\n", + "enjoyments\n", + "enjoys\n", + "enkindle\n", + "enkindled\n", + "enkindles\n", + "enkindling\n", + "enlace\n", + "enlaced\n", + "enlaces\n", + "enlacing\n", + "enlarge\n", + "enlarged\n", + "enlargement\n", + "enlargements\n", + "enlarger\n", + "enlargers\n", + "enlarges\n", + "enlarging\n", + "enlighten\n", + "enlightened\n", + "enlightening\n", + "enlightenment\n", + "enlightenments\n", + "enlightens\n", + "enlist\n", + "enlisted\n", + "enlistee\n", + "enlistees\n", + "enlister\n", + "enlisters\n", + "enlisting\n", + "enlistment\n", + "enlistments\n", + "enlists\n", + "enliven\n", + "enlivened\n", + "enlivening\n", + "enlivens\n", + "enmesh\n", + "enmeshed\n", + "enmeshes\n", + "enmeshing\n", + "enmities\n", + "enmity\n", + "ennead\n", + "enneadic\n", + "enneads\n", + "enneagon\n", + "enneagons\n", + "ennoble\n", + "ennobled\n", + "ennobler\n", + "ennoblers\n", + "ennobles\n", + "ennobling\n", + "ennui\n", + "ennuis\n", + "ennuye\n", + "ennuyee\n", + "enol\n", + "enolase\n", + "enolases\n", + "enolic\n", + "enologies\n", + "enology\n", + "enols\n", + "enorm\n", + "enormities\n", + "enormity\n", + "enormous\n", + "enormously\n", + "enormousness\n", + "enormousnesses\n", + "enosis\n", + "enosises\n", + "enough\n", + "enoughs\n", + "enounce\n", + "enounced\n", + "enounces\n", + "enouncing\n", + "enow\n", + "enows\n", + "enplane\n", + "enplaned\n", + "enplanes\n", + "enplaning\n", + "enquire\n", + "enquired\n", + "enquires\n", + "enquiries\n", + "enquiring\n", + "enquiry\n", + "enrage\n", + "enraged\n", + "enrages\n", + "enraging\n", + "enrapt\n", + "enravish\n", + "enravished\n", + "enravishes\n", + "enravishing\n", + "enrich\n", + "enriched\n", + "enricher\n", + "enrichers\n", + "enriches\n", + "enriching\n", + "enrichment\n", + "enrichments\n", + "enrobe\n", + "enrobed\n", + "enrober\n", + "enrobers\n", + "enrobes\n", + "enrobing\n", + "enrol\n", + "enroll\n", + "enrolled\n", + "enrollee\n", + "enrollees\n", + "enroller\n", + "enrollers\n", + "enrolling\n", + "enrollment\n", + "enrollments\n", + "enrolls\n", + "enrols\n", + "enroot\n", + "enrooted\n", + "enrooting\n", + "enroots\n", + "ens\n", + "ensample\n", + "ensamples\n", + "ensconce\n", + "ensconced\n", + "ensconces\n", + "ensconcing\n", + "enscroll\n", + "enscrolled\n", + "enscrolling\n", + "enscrolls\n", + "ensemble\n", + "ensembles\n", + "enserf\n", + "enserfed\n", + "enserfing\n", + "enserfs\n", + "ensheath\n", + "ensheathed\n", + "ensheathing\n", + "ensheaths\n", + "enshrine\n", + "enshrined\n", + "enshrines\n", + "enshrining\n", + "enshroud\n", + "enshrouded\n", + "enshrouding\n", + "enshrouds\n", + "ensiform\n", + "ensign\n", + "ensigncies\n", + "ensigncy\n", + "ensigns\n", + "ensilage\n", + "ensilaged\n", + "ensilages\n", + "ensilaging\n", + "ensile\n", + "ensiled\n", + "ensiles\n", + "ensiling\n", + "enskied\n", + "enskies\n", + "ensky\n", + "enskyed\n", + "enskying\n", + "enslave\n", + "enslaved\n", + "enslavement\n", + "enslavements\n", + "enslaver\n", + "enslavers\n", + "enslaves\n", + "enslaving\n", + "ensnare\n", + "ensnared\n", + "ensnarer\n", + "ensnarers\n", + "ensnares\n", + "ensnaring\n", + "ensnarl\n", + "ensnarled\n", + "ensnarling\n", + "ensnarls\n", + "ensorcel\n", + "ensorceled\n", + "ensorceling\n", + "ensorcels\n", + "ensoul\n", + "ensouled\n", + "ensouling\n", + "ensouls\n", + "ensphere\n", + "ensphered\n", + "enspheres\n", + "ensphering\n", + "ensue\n", + "ensued\n", + "ensues\n", + "ensuing\n", + "ensure\n", + "ensured\n", + "ensurer\n", + "ensurers\n", + "ensures\n", + "ensuring\n", + "enswathe\n", + "enswathed\n", + "enswathes\n", + "enswathing\n", + "entail\n", + "entailed\n", + "entailer\n", + "entailers\n", + "entailing\n", + "entails\n", + "entameba\n", + "entamebae\n", + "entamebas\n", + "entangle\n", + "entangled\n", + "entanglement\n", + "entanglements\n", + "entangles\n", + "entangling\n", + "entases\n", + "entasia\n", + "entasias\n", + "entasis\n", + "entastic\n", + "entellus\n", + "entelluses\n", + "entente\n", + "ententes\n", + "enter\n", + "entera\n", + "enteral\n", + "entered\n", + "enterer\n", + "enterers\n", + "enteric\n", + "entering\n", + "enteron\n", + "enterons\n", + "enterprise\n", + "enterprises\n", + "enters\n", + "entertain\n", + "entertained\n", + "entertainer\n", + "entertainers\n", + "entertaining\n", + "entertainment\n", + "entertainments\n", + "entertains\n", + "enthalpies\n", + "enthalpy\n", + "enthetic\n", + "enthral\n", + "enthrall\n", + "enthralled\n", + "enthralling\n", + "enthralls\n", + "enthrals\n", + "enthrone\n", + "enthroned\n", + "enthrones\n", + "enthroning\n", + "enthuse\n", + "enthused\n", + "enthuses\n", + "enthusiasm\n", + "enthusiast\n", + "enthusiastic\n", + "enthusiastically\n", + "enthusiasts\n", + "enthusing\n", + "entia\n", + "entice\n", + "enticed\n", + "enticement\n", + "enticements\n", + "enticer\n", + "enticers\n", + "entices\n", + "enticing\n", + "entire\n", + "entirely\n", + "entires\n", + "entireties\n", + "entirety\n", + "entities\n", + "entitle\n", + "entitled\n", + "entitles\n", + "entitling\n", + "entity\n", + "entoderm\n", + "entoderms\n", + "entoil\n", + "entoiled\n", + "entoiling\n", + "entoils\n", + "entomb\n", + "entombed\n", + "entombing\n", + "entombs\n", + "entomological\n", + "entomologies\n", + "entomologist\n", + "entomologists\n", + "entomology\n", + "entopic\n", + "entourage\n", + "entourages\n", + "entozoa\n", + "entozoal\n", + "entozoan\n", + "entozoans\n", + "entozoic\n", + "entozoon\n", + "entrails\n", + "entrain\n", + "entrained\n", + "entraining\n", + "entrains\n", + "entrance\n", + "entranced\n", + "entrances\n", + "entrancing\n", + "entrant\n", + "entrants\n", + "entrap\n", + "entrapment\n", + "entrapments\n", + "entrapped\n", + "entrapping\n", + "entraps\n", + "entreat\n", + "entreated\n", + "entreaties\n", + "entreating\n", + "entreats\n", + "entreaty\n", + "entree\n", + "entrees\n", + "entrench\n", + "entrenched\n", + "entrenches\n", + "entrenching\n", + "entrenchment\n", + "entrenchments\n", + "entrepot\n", + "entrepots\n", + "entrepreneur\n", + "entrepreneurs\n", + "entresol\n", + "entresols\n", + "entries\n", + "entropies\n", + "entropy\n", + "entrust\n", + "entrusted\n", + "entrusting\n", + "entrusts\n", + "entry\n", + "entryway\n", + "entryways\n", + "entwine\n", + "entwined\n", + "entwines\n", + "entwining\n", + "entwist\n", + "entwisted\n", + "entwisting\n", + "entwists\n", + "enumerate\n", + "enumerated\n", + "enumerates\n", + "enumerating\n", + "enumeration\n", + "enumerations\n", + "enunciate\n", + "enunciated\n", + "enunciates\n", + "enunciating\n", + "enunciation\n", + "enunciations\n", + "enure\n", + "enured\n", + "enures\n", + "enuresis\n", + "enuresises\n", + "enuretic\n", + "enuring\n", + "envelop\n", + "envelope\n", + "enveloped\n", + "envelopes\n", + "enveloping\n", + "envelopment\n", + "envelopments\n", + "envelops\n", + "envenom\n", + "envenomed\n", + "envenoming\n", + "envenoms\n", + "enviable\n", + "enviably\n", + "envied\n", + "envier\n", + "enviers\n", + "envies\n", + "envious\n", + "environ\n", + "environed\n", + "environing\n", + "environment\n", + "environmental\n", + "environmentalist\n", + "environmentalists\n", + "environments\n", + "environs\n", + "envisage\n", + "envisaged\n", + "envisages\n", + "envisaging\n", + "envision\n", + "envisioned\n", + "envisioning\n", + "envisions\n", + "envoi\n", + "envois\n", + "envoy\n", + "envoys\n", + "envy\n", + "envying\n", + "enwheel\n", + "enwheeled\n", + "enwheeling\n", + "enwheels\n", + "enwind\n", + "enwinding\n", + "enwinds\n", + "enwomb\n", + "enwombed\n", + "enwombing\n", + "enwombs\n", + "enwound\n", + "enwrap\n", + "enwrapped\n", + "enwrapping\n", + "enwraps\n", + "enzootic\n", + "enzootics\n", + "enzym\n", + "enzyme\n", + "enzymes\n", + "enzymic\n", + "enzyms\n", + "eobiont\n", + "eobionts\n", + "eohippus\n", + "eohippuses\n", + "eolian\n", + "eolipile\n", + "eolipiles\n", + "eolith\n", + "eolithic\n", + "eoliths\n", + "eolopile\n", + "eolopiles\n", + "eon\n", + "eonian\n", + "eonism\n", + "eonisms\n", + "eons\n", + "eosin\n", + "eosine\n", + "eosines\n", + "eosinic\n", + "eosins\n", + "epact\n", + "epacts\n", + "eparch\n", + "eparchies\n", + "eparchs\n", + "eparchy\n", + "epaulet\n", + "epaulets\n", + "epee\n", + "epeeist\n", + "epeeists\n", + "epees\n", + "epeiric\n", + "epergne\n", + "epergnes\n", + "epha\n", + "ephah\n", + "ephahs\n", + "ephas\n", + "ephebe\n", + "ephebes\n", + "ephebi\n", + "ephebic\n", + "epheboi\n", + "ephebos\n", + "ephebus\n", + "ephedra\n", + "ephedras\n", + "ephedrin\n", + "ephedrins\n", + "ephemera\n", + "ephemerae\n", + "ephemeras\n", + "ephod\n", + "ephods\n", + "ephor\n", + "ephoral\n", + "ephorate\n", + "ephorates\n", + "ephori\n", + "ephors\n", + "epiblast\n", + "epiblasts\n", + "epibolic\n", + "epibolies\n", + "epiboly\n", + "epic\n", + "epical\n", + "epically\n", + "epicalyces\n", + "epicalyx\n", + "epicalyxes\n", + "epicarp\n", + "epicarps\n", + "epicedia\n", + "epicene\n", + "epicenes\n", + "epiclike\n", + "epicotyl\n", + "epicotyls\n", + "epics\n", + "epicure\n", + "epicurean\n", + "epicureans\n", + "epicures\n", + "epicycle\n", + "epicycles\n", + "epidemic\n", + "epidemics\n", + "epidemiology\n", + "epiderm\n", + "epidermis\n", + "epidermises\n", + "epiderms\n", + "epidote\n", + "epidotes\n", + "epidotic\n", + "epidural\n", + "epifauna\n", + "epifaunae\n", + "epifaunas\n", + "epifocal\n", + "epigeal\n", + "epigean\n", + "epigene\n", + "epigenic\n", + "epigeous\n", + "epigon\n", + "epigone\n", + "epigones\n", + "epigoni\n", + "epigonic\n", + "epigons\n", + "epigonus\n", + "epigram\n", + "epigrammatic\n", + "epigrams\n", + "epigraph\n", + "epigraphs\n", + "epigynies\n", + "epigyny\n", + "epilepsies\n", + "epilepsy\n", + "epileptic\n", + "epileptics\n", + "epilog\n", + "epilogs\n", + "epilogue\n", + "epilogued\n", + "epilogues\n", + "epiloguing\n", + "epimer\n", + "epimere\n", + "epimeres\n", + "epimeric\n", + "epimers\n", + "epimysia\n", + "epinaoi\n", + "epinaos\n", + "epinasties\n", + "epinasty\n", + "epiphanies\n", + "epiphany\n", + "epiphyte\n", + "epiphytes\n", + "episcia\n", + "episcias\n", + "episcopal\n", + "episcope\n", + "episcopes\n", + "episode\n", + "episodes\n", + "episodic\n", + "episomal\n", + "episome\n", + "episomes\n", + "epistasies\n", + "epistasy\n", + "epistaxis\n", + "epistle\n", + "epistler\n", + "epistlers\n", + "epistles\n", + "epistyle\n", + "epistyles\n", + "epitaph\n", + "epitaphs\n", + "epitases\n", + "epitasis\n", + "epitaxies\n", + "epitaxy\n", + "epithet\n", + "epithets\n", + "epitome\n", + "epitomes\n", + "epitomic\n", + "epitomize\n", + "epitomized\n", + "epitomizes\n", + "epitomizing\n", + "epizoa\n", + "epizoic\n", + "epizoism\n", + "epizoisms\n", + "epizoite\n", + "epizoites\n", + "epizoon\n", + "epizooties\n", + "epizooty\n", + "epoch\n", + "epochal\n", + "epochs\n", + "epode\n", + "epodes\n", + "eponym\n", + "eponymic\n", + "eponymies\n", + "eponyms\n", + "eponymy\n", + "epopee\n", + "epopees\n", + "epopoeia\n", + "epopoeias\n", + "epos\n", + "eposes\n", + "epoxide\n", + "epoxides\n", + "epoxied\n", + "epoxies\n", + "epoxy\n", + "epoxyed\n", + "epoxying\n", + "epsilon\n", + "epsilons\n", + "equabilities\n", + "equability\n", + "equable\n", + "equably\n", + "equal\n", + "equaled\n", + "equaling\n", + "equalise\n", + "equalised\n", + "equalises\n", + "equalising\n", + "equalities\n", + "equality\n", + "equalize\n", + "equalized\n", + "equalizes\n", + "equalizing\n", + "equalled\n", + "equalling\n", + "equally\n", + "equals\n", + "equanimities\n", + "equanimity\n", + "equate\n", + "equated\n", + "equates\n", + "equating\n", + "equation\n", + "equations\n", + "equator\n", + "equatorial\n", + "equators\n", + "equerries\n", + "equerry\n", + "equestrian\n", + "equestrians\n", + "equilateral\n", + "equilibrium\n", + "equine\n", + "equinely\n", + "equines\n", + "equinities\n", + "equinity\n", + "equinox\n", + "equinoxes\n", + "equip\n", + "equipage\n", + "equipages\n", + "equipment\n", + "equipments\n", + "equipped\n", + "equipper\n", + "equippers\n", + "equipping\n", + "equips\n", + "equiseta\n", + "equitable\n", + "equitant\n", + "equites\n", + "equities\n", + "equity\n", + "equivalence\n", + "equivalences\n", + "equivalent\n", + "equivalents\n", + "equivocal\n", + "equivocate\n", + "equivocated\n", + "equivocates\n", + "equivocating\n", + "equivocation\n", + "equivocations\n", + "equivoke\n", + "equivokes\n", + "er\n", + "era\n", + "eradiate\n", + "eradiated\n", + "eradiates\n", + "eradiating\n", + "eradicable\n", + "eradicate\n", + "eradicated\n", + "eradicates\n", + "eradicating\n", + "eras\n", + "erase\n", + "erased\n", + "eraser\n", + "erasers\n", + "erases\n", + "erasing\n", + "erasion\n", + "erasions\n", + "erasure\n", + "erasures\n", + "erbium\n", + "erbiums\n", + "ere\n", + "erect\n", + "erected\n", + "erecter\n", + "erecters\n", + "erectile\n", + "erecting\n", + "erection\n", + "erections\n", + "erective\n", + "erectly\n", + "erector\n", + "erectors\n", + "erects\n", + "erelong\n", + "eremite\n", + "eremites\n", + "eremitic\n", + "eremuri\n", + "eremurus\n", + "erenow\n", + "erepsin\n", + "erepsins\n", + "erethic\n", + "erethism\n", + "erethisms\n", + "erewhile\n", + "erg\n", + "ergastic\n", + "ergate\n", + "ergates\n", + "ergo\n", + "ergodic\n", + "ergot\n", + "ergotic\n", + "ergotism\n", + "ergotisms\n", + "ergots\n", + "ergs\n", + "erica\n", + "ericas\n", + "ericoid\n", + "erigeron\n", + "erigerons\n", + "eringo\n", + "eringoes\n", + "eringos\n", + "eristic\n", + "eristics\n", + "erlking\n", + "erlkings\n", + "ermine\n", + "ermined\n", + "ermines\n", + "ern\n", + "erne\n", + "ernes\n", + "erns\n", + "erode\n", + "eroded\n", + "erodent\n", + "erodes\n", + "erodible\n", + "eroding\n", + "erogenic\n", + "eros\n", + "erose\n", + "erosely\n", + "eroses\n", + "erosible\n", + "erosion\n", + "erosions\n", + "erosive\n", + "erotic\n", + "erotica\n", + "erotical\n", + "erotically\n", + "erotics\n", + "erotism\n", + "erotisms\n", + "err\n", + "errancies\n", + "errancy\n", + "errand\n", + "errands\n", + "errant\n", + "errantly\n", + "errantries\n", + "errantry\n", + "errants\n", + "errata\n", + "erratas\n", + "erratic\n", + "erratically\n", + "erratum\n", + "erred\n", + "errhine\n", + "errhines\n", + "erring\n", + "erringly\n", + "erroneous\n", + "erroneously\n", + "error\n", + "errors\n", + "errs\n", + "ers\n", + "ersatz\n", + "ersatzes\n", + "erses\n", + "erst\n", + "erstwhile\n", + "eruct\n", + "eructate\n", + "eructated\n", + "eructates\n", + "eructating\n", + "eructed\n", + "eructing\n", + "eructs\n", + "erudite\n", + "erudition\n", + "eruditions\n", + "erugo\n", + "erugos\n", + "erumpent\n", + "erupt\n", + "erupted\n", + "erupting\n", + "eruption\n", + "eruptions\n", + "eruptive\n", + "eruptives\n", + "erupts\n", + "ervil\n", + "ervils\n", + "eryngo\n", + "eryngoes\n", + "eryngos\n", + "erythema\n", + "erythemas\n", + "erythematous\n", + "erythrocytosis\n", + "erythron\n", + "erythrons\n", + "es\n", + "escalade\n", + "escaladed\n", + "escalades\n", + "escalading\n", + "escalate\n", + "escalated\n", + "escalates\n", + "escalating\n", + "escalation\n", + "escalations\n", + "escalator\n", + "escalators\n", + "escallop\n", + "escalloped\n", + "escalloping\n", + "escallops\n", + "escalop\n", + "escaloped\n", + "escaloping\n", + "escalops\n", + "escapade\n", + "escapades\n", + "escape\n", + "escaped\n", + "escapee\n", + "escapees\n", + "escaper\n", + "escapers\n", + "escapes\n", + "escaping\n", + "escapism\n", + "escapisms\n", + "escapist\n", + "escapists\n", + "escar\n", + "escargot\n", + "escargots\n", + "escarole\n", + "escaroles\n", + "escarp\n", + "escarped\n", + "escarping\n", + "escarpment\n", + "escarpments\n", + "escarps\n", + "escars\n", + "eschalot\n", + "eschalots\n", + "eschar\n", + "eschars\n", + "escheat\n", + "escheated\n", + "escheating\n", + "escheats\n", + "eschew\n", + "eschewal\n", + "eschewals\n", + "eschewed\n", + "eschewing\n", + "eschews\n", + "escolar\n", + "escolars\n", + "escort\n", + "escorted\n", + "escorting\n", + "escorts\n", + "escot\n", + "escoted\n", + "escoting\n", + "escots\n", + "escrow\n", + "escrowed\n", + "escrowing\n", + "escrows\n", + "escuage\n", + "escuages\n", + "escudo\n", + "escudos\n", + "esculent\n", + "esculents\n", + "eserine\n", + "eserines\n", + "eses\n", + "eskar\n", + "eskars\n", + "esker\n", + "eskers\n", + "esophagi\n", + "esophagus\n", + "esoteric\n", + "espalier\n", + "espaliered\n", + "espaliering\n", + "espaliers\n", + "espanol\n", + "espanoles\n", + "esparto\n", + "espartos\n", + "especial\n", + "especially\n", + "espial\n", + "espials\n", + "espied\n", + "espiegle\n", + "espies\n", + "espionage\n", + "espionages\n", + "espousal\n", + "espousals\n", + "espouse\n", + "espoused\n", + "espouser\n", + "espousers\n", + "espouses\n", + "espousing\n", + "espresso\n", + "espressos\n", + "esprit\n", + "esprits\n", + "espy\n", + "espying\n", + "esquire\n", + "esquired\n", + "esquires\n", + "esquiring\n", + "ess\n", + "essay\n", + "essayed\n", + "essayer\n", + "essayers\n", + "essaying\n", + "essayist\n", + "essayists\n", + "essays\n", + "essence\n", + "essences\n", + "essential\n", + "essentially\n", + "esses\n", + "essoin\n", + "essoins\n", + "essonite\n", + "essonites\n", + "establish\n", + "established\n", + "establishes\n", + "establishing\n", + "establishment\n", + "establishments\n", + "estancia\n", + "estancias\n", + "estate\n", + "estated\n", + "estates\n", + "estating\n", + "esteem\n", + "esteemed\n", + "esteeming\n", + "esteems\n", + "ester\n", + "esterase\n", + "esterases\n", + "esterified\n", + "esterifies\n", + "esterify\n", + "esterifying\n", + "esters\n", + "estheses\n", + "esthesia\n", + "esthesias\n", + "esthesis\n", + "esthesises\n", + "esthete\n", + "esthetes\n", + "esthetic\n", + "estimable\n", + "estimate\n", + "estimated\n", + "estimates\n", + "estimating\n", + "estimation\n", + "estimations\n", + "estimator\n", + "estimators\n", + "estival\n", + "estivate\n", + "estivated\n", + "estivates\n", + "estivating\n", + "estop\n", + "estopped\n", + "estoppel\n", + "estoppels\n", + "estopping\n", + "estops\n", + "estovers\n", + "estragon\n", + "estragons\n", + "estral\n", + "estrange\n", + "estranged\n", + "estrangement\n", + "estrangements\n", + "estranges\n", + "estranging\n", + "estray\n", + "estrayed\n", + "estraying\n", + "estrays\n", + "estreat\n", + "estreated\n", + "estreating\n", + "estreats\n", + "estrin\n", + "estrins\n", + "estriol\n", + "estriols\n", + "estrogen\n", + "estrogens\n", + "estrone\n", + "estrones\n", + "estrous\n", + "estrual\n", + "estrum\n", + "estrums\n", + "estrus\n", + "estruses\n", + "estuaries\n", + "estuary\n", + "esurient\n", + "et\n", + "eta\n", + "etagere\n", + "etageres\n", + "etamin\n", + "etamine\n", + "etamines\n", + "etamins\n", + "etape\n", + "etapes\n", + "etas\n", + "etatism\n", + "etatisms\n", + "etatist\n", + "etatists\n", + "etcetera\n", + "etceteras\n", + "etch\n", + "etched\n", + "etcher\n", + "etchers\n", + "etches\n", + "etching\n", + "etchings\n", + "eternal\n", + "eternally\n", + "eternals\n", + "eterne\n", + "eternise\n", + "eternised\n", + "eternises\n", + "eternising\n", + "eternities\n", + "eternity\n", + "eternize\n", + "eternized\n", + "eternizes\n", + "eternizing\n", + "etesian\n", + "etesians\n", + "eth\n", + "ethane\n", + "ethanes\n", + "ethanol\n", + "ethanols\n", + "ethene\n", + "ethenes\n", + "ether\n", + "ethereal\n", + "etheric\n", + "etherified\n", + "etherifies\n", + "etherify\n", + "etherifying\n", + "etherish\n", + "etherize\n", + "etherized\n", + "etherizes\n", + "etherizing\n", + "ethers\n", + "ethic\n", + "ethical\n", + "ethically\n", + "ethicals\n", + "ethician\n", + "ethicians\n", + "ethicist\n", + "ethicists\n", + "ethicize\n", + "ethicized\n", + "ethicizes\n", + "ethicizing\n", + "ethics\n", + "ethinyl\n", + "ethinyls\n", + "ethion\n", + "ethions\n", + "ethmoid\n", + "ethmoids\n", + "ethnarch\n", + "ethnarchs\n", + "ethnic\n", + "ethnical\n", + "ethnicities\n", + "ethnicity\n", + "ethnics\n", + "ethnologic\n", + "ethnological\n", + "ethnologies\n", + "ethnology\n", + "ethnos\n", + "ethnoses\n", + "ethologies\n", + "ethology\n", + "ethos\n", + "ethoses\n", + "ethoxy\n", + "ethoxyl\n", + "ethoxyls\n", + "eths\n", + "ethyl\n", + "ethylate\n", + "ethylated\n", + "ethylates\n", + "ethylating\n", + "ethylene\n", + "ethylenes\n", + "ethylic\n", + "ethyls\n", + "ethyne\n", + "ethynes\n", + "ethynyl\n", + "ethynyls\n", + "etiolate\n", + "etiolated\n", + "etiolates\n", + "etiolating\n", + "etiologies\n", + "etiology\n", + "etna\n", + "etnas\n", + "etoile\n", + "etoiles\n", + "etude\n", + "etudes\n", + "etui\n", + "etuis\n", + "etwee\n", + "etwees\n", + "etyma\n", + "etymological\n", + "etymologist\n", + "etymologists\n", + "etymon\n", + "etymons\n", + "eucaine\n", + "eucaines\n", + "eucalypt\n", + "eucalypti\n", + "eucalypts\n", + "eucalyptus\n", + "eucalyptuses\n", + "eucharis\n", + "eucharises\n", + "eucharistic\n", + "euchre\n", + "euchred\n", + "euchres\n", + "euchring\n", + "euclase\n", + "euclases\n", + "eucrite\n", + "eucrites\n", + "eucritic\n", + "eudaemon\n", + "eudaemons\n", + "eudemon\n", + "eudemons\n", + "eugenic\n", + "eugenics\n", + "eugenist\n", + "eugenists\n", + "eugenol\n", + "eugenols\n", + "euglena\n", + "euglenas\n", + "eulachan\n", + "eulachans\n", + "eulachon\n", + "eulachons\n", + "eulogia\n", + "eulogiae\n", + "eulogias\n", + "eulogies\n", + "eulogise\n", + "eulogised\n", + "eulogises\n", + "eulogising\n", + "eulogist\n", + "eulogistic\n", + "eulogists\n", + "eulogium\n", + "eulogiums\n", + "eulogize\n", + "eulogized\n", + "eulogizes\n", + "eulogizing\n", + "eulogy\n", + "eunuch\n", + "eunuchs\n", + "euonymus\n", + "euonymuses\n", + "eupatrid\n", + "eupatridae\n", + "eupatrids\n", + "eupepsia\n", + "eupepsias\n", + "eupepsies\n", + "eupepsy\n", + "eupeptic\n", + "euphemism\n", + "euphemisms\n", + "euphemistic\n", + "euphenic\n", + "euphonic\n", + "euphonies\n", + "euphonious\n", + "euphony\n", + "euphoria\n", + "euphorias\n", + "euphoric\n", + "euphotic\n", + "euphrasies\n", + "euphrasy\n", + "euphroe\n", + "euphroes\n", + "euphuism\n", + "euphuisms\n", + "euphuist\n", + "euphuists\n", + "euploid\n", + "euploidies\n", + "euploids\n", + "euploidy\n", + "eupnea\n", + "eupneas\n", + "eupneic\n", + "eupnoea\n", + "eupnoeas\n", + "eupnoeic\n", + "eureka\n", + "euripi\n", + "euripus\n", + "euro\n", + "europium\n", + "europiums\n", + "euros\n", + "eurythmies\n", + "eurythmy\n", + "eustacies\n", + "eustacy\n", + "eustatic\n", + "eustele\n", + "eusteles\n", + "eutaxies\n", + "eutaxy\n", + "eutectic\n", + "eutectics\n", + "euthanasia\n", + "euthanasias\n", + "eutrophies\n", + "eutrophy\n", + "euxenite\n", + "euxenites\n", + "evacuant\n", + "evacuants\n", + "evacuate\n", + "evacuated\n", + "evacuates\n", + "evacuating\n", + "evacuation\n", + "evacuations\n", + "evacuee\n", + "evacuees\n", + "evadable\n", + "evade\n", + "evaded\n", + "evader\n", + "evaders\n", + "evades\n", + "evadible\n", + "evading\n", + "evaluable\n", + "evaluate\n", + "evaluated\n", + "evaluates\n", + "evaluating\n", + "evaluation\n", + "evaluations\n", + "evaluator\n", + "evaluators\n", + "evanesce\n", + "evanesced\n", + "evanesces\n", + "evanescing\n", + "evangel\n", + "evangelical\n", + "evangelism\n", + "evangelisms\n", + "evangelist\n", + "evangelistic\n", + "evangelists\n", + "evangels\n", + "evanish\n", + "evanished\n", + "evanishes\n", + "evanishing\n", + "evaporate\n", + "evaporated\n", + "evaporates\n", + "evaporating\n", + "evaporation\n", + "evaporations\n", + "evaporative\n", + "evaporator\n", + "evaporators\n", + "evasion\n", + "evasions\n", + "evasive\n", + "evasiveness\n", + "evasivenesses\n", + "eve\n", + "evection\n", + "evections\n", + "even\n", + "evened\n", + "evener\n", + "eveners\n", + "evenest\n", + "evenfall\n", + "evenfalls\n", + "evening\n", + "evenings\n", + "evenly\n", + "evenness\n", + "evennesses\n", + "evens\n", + "evensong\n", + "evensongs\n", + "event\n", + "eventful\n", + "eventide\n", + "eventides\n", + "events\n", + "eventual\n", + "eventualities\n", + "eventuality\n", + "eventually\n", + "ever\n", + "evergreen\n", + "evergreens\n", + "everlasting\n", + "evermore\n", + "eversion\n", + "eversions\n", + "evert\n", + "everted\n", + "everting\n", + "evertor\n", + "evertors\n", + "everts\n", + "every\n", + "everybody\n", + "everyday\n", + "everyman\n", + "everymen\n", + "everyone\n", + "everything\n", + "everyway\n", + "everywhere\n", + "eves\n", + "evict\n", + "evicted\n", + "evictee\n", + "evictees\n", + "evicting\n", + "eviction\n", + "evictions\n", + "evictor\n", + "evictors\n", + "evicts\n", + "evidence\n", + "evidenced\n", + "evidences\n", + "evidencing\n", + "evident\n", + "evidently\n", + "evil\n", + "evildoer\n", + "evildoers\n", + "eviler\n", + "evilest\n", + "eviller\n", + "evillest\n", + "evilly\n", + "evilness\n", + "evilnesses\n", + "evils\n", + "evince\n", + "evinced\n", + "evinces\n", + "evincing\n", + "evincive\n", + "eviscerate\n", + "eviscerated\n", + "eviscerates\n", + "eviscerating\n", + "evisceration\n", + "eviscerations\n", + "evitable\n", + "evite\n", + "evited\n", + "evites\n", + "eviting\n", + "evocable\n", + "evocation\n", + "evocations\n", + "evocative\n", + "evocator\n", + "evocators\n", + "evoke\n", + "evoked\n", + "evoker\n", + "evokers\n", + "evokes\n", + "evoking\n", + "evolute\n", + "evolutes\n", + "evolution\n", + "evolutionary\n", + "evolutions\n", + "evolve\n", + "evolved\n", + "evolver\n", + "evolvers\n", + "evolves\n", + "evolving\n", + "evonymus\n", + "evonymuses\n", + "evulsion\n", + "evulsions\n", + "evzone\n", + "evzones\n", + "ewe\n", + "ewer\n", + "ewers\n", + "ewes\n", + "ex\n", + "exacerbate\n", + "exacerbated\n", + "exacerbates\n", + "exacerbating\n", + "exact\n", + "exacta\n", + "exactas\n", + "exacted\n", + "exacter\n", + "exacters\n", + "exactest\n", + "exacting\n", + "exaction\n", + "exactions\n", + "exactitude\n", + "exactitudes\n", + "exactly\n", + "exactness\n", + "exactnesses\n", + "exactor\n", + "exactors\n", + "exacts\n", + "exaggerate\n", + "exaggerated\n", + "exaggeratedly\n", + "exaggerates\n", + "exaggerating\n", + "exaggeration\n", + "exaggerations\n", + "exaggerator\n", + "exaggerators\n", + "exalt\n", + "exaltation\n", + "exaltations\n", + "exalted\n", + "exalter\n", + "exalters\n", + "exalting\n", + "exalts\n", + "exam\n", + "examen\n", + "examens\n", + "examination\n", + "examinations\n", + "examine\n", + "examined\n", + "examinee\n", + "examinees\n", + "examiner\n", + "examiners\n", + "examines\n", + "examining\n", + "example\n", + "exampled\n", + "examples\n", + "exampling\n", + "exams\n", + "exanthem\n", + "exanthems\n", + "exarch\n", + "exarchal\n", + "exarchies\n", + "exarchs\n", + "exarchy\n", + "exasperate\n", + "exasperated\n", + "exasperates\n", + "exasperating\n", + "exasperation\n", + "exasperations\n", + "excavate\n", + "excavated\n", + "excavates\n", + "excavating\n", + "excavation\n", + "excavations\n", + "excavator\n", + "excavators\n", + "exceed\n", + "exceeded\n", + "exceeder\n", + "exceeders\n", + "exceeding\n", + "exceedingly\n", + "exceeds\n", + "excel\n", + "excelled\n", + "excellence\n", + "excellences\n", + "excellency\n", + "excellent\n", + "excellently\n", + "excelling\n", + "excels\n", + "except\n", + "excepted\n", + "excepting\n", + "exception\n", + "exceptional\n", + "exceptionalally\n", + "exceptions\n", + "excepts\n", + "excerpt\n", + "excerpted\n", + "excerpting\n", + "excerpts\n", + "excess\n", + "excesses\n", + "excessive\n", + "excessively\n", + "exchange\n", + "exchangeable\n", + "exchanged\n", + "exchanges\n", + "exchanging\n", + "excide\n", + "excided\n", + "excides\n", + "exciding\n", + "exciple\n", + "exciples\n", + "excise\n", + "excised\n", + "excises\n", + "excising\n", + "excision\n", + "excisions\n", + "excitabilities\n", + "excitability\n", + "excitant\n", + "excitants\n", + "excitation\n", + "excitations\n", + "excite\n", + "excited\n", + "excitedly\n", + "excitement\n", + "excitements\n", + "exciter\n", + "exciters\n", + "excites\n", + "exciting\n", + "exciton\n", + "excitons\n", + "excitor\n", + "excitors\n", + "exclaim\n", + "exclaimed\n", + "exclaiming\n", + "exclaims\n", + "exclamation\n", + "exclamations\n", + "exclamatory\n", + "exclave\n", + "exclaves\n", + "exclude\n", + "excluded\n", + "excluder\n", + "excluders\n", + "excludes\n", + "excluding\n", + "exclusion\n", + "exclusions\n", + "exclusive\n", + "exclusively\n", + "exclusiveness\n", + "exclusivenesses\n", + "excommunicate\n", + "excommunicated\n", + "excommunicates\n", + "excommunicating\n", + "excommunication\n", + "excommunications\n", + "excrement\n", + "excremental\n", + "excrements\n", + "excreta\n", + "excretal\n", + "excrete\n", + "excreted\n", + "excreter\n", + "excreters\n", + "excretes\n", + "excreting\n", + "excretion\n", + "excretions\n", + "excretory\n", + "excruciating\n", + "excruciatingly\n", + "exculpate\n", + "exculpated\n", + "exculpates\n", + "exculpating\n", + "excursion\n", + "excursions\n", + "excuse\n", + "excused\n", + "excuser\n", + "excusers\n", + "excuses\n", + "excusing\n", + "exeat\n", + "exec\n", + "execrate\n", + "execrated\n", + "execrates\n", + "execrating\n", + "execs\n", + "executable\n", + "execute\n", + "executed\n", + "executer\n", + "executers\n", + "executes\n", + "executing\n", + "execution\n", + "executioner\n", + "executioners\n", + "executions\n", + "executive\n", + "executives\n", + "executor\n", + "executors\n", + "executrix\n", + "executrixes\n", + "exedra\n", + "exedrae\n", + "exegeses\n", + "exegesis\n", + "exegete\n", + "exegetes\n", + "exegetic\n", + "exempla\n", + "exemplar\n", + "exemplars\n", + "exemplary\n", + "exemplification\n", + "exemplifications\n", + "exemplified\n", + "exemplifies\n", + "exemplify\n", + "exemplifying\n", + "exemplum\n", + "exempt\n", + "exempted\n", + "exempting\n", + "exemption\n", + "exemptions\n", + "exempts\n", + "exequial\n", + "exequies\n", + "exequy\n", + "exercise\n", + "exercised\n", + "exerciser\n", + "exercisers\n", + "exercises\n", + "exercising\n", + "exergual\n", + "exergue\n", + "exergues\n", + "exert\n", + "exerted\n", + "exerting\n", + "exertion\n", + "exertions\n", + "exertive\n", + "exerts\n", + "exes\n", + "exhalant\n", + "exhalants\n", + "exhalation\n", + "exhalations\n", + "exhale\n", + "exhaled\n", + "exhalent\n", + "exhalents\n", + "exhales\n", + "exhaling\n", + "exhaust\n", + "exhausted\n", + "exhausting\n", + "exhaustion\n", + "exhaustions\n", + "exhaustive\n", + "exhausts\n", + "exhibit\n", + "exhibited\n", + "exhibiting\n", + "exhibition\n", + "exhibitions\n", + "exhibitor\n", + "exhibitors\n", + "exhibits\n", + "exhilarate\n", + "exhilarated\n", + "exhilarates\n", + "exhilarating\n", + "exhilaration\n", + "exhilarations\n", + "exhort\n", + "exhortation\n", + "exhortations\n", + "exhorted\n", + "exhorter\n", + "exhorters\n", + "exhorting\n", + "exhorts\n", + "exhumation\n", + "exhumations\n", + "exhume\n", + "exhumed\n", + "exhumer\n", + "exhumers\n", + "exhumes\n", + "exhuming\n", + "exigence\n", + "exigences\n", + "exigencies\n", + "exigency\n", + "exigent\n", + "exigible\n", + "exiguities\n", + "exiguity\n", + "exiguous\n", + "exile\n", + "exiled\n", + "exiles\n", + "exilian\n", + "exilic\n", + "exiling\n", + "eximious\n", + "exine\n", + "exines\n", + "exist\n", + "existed\n", + "existence\n", + "existences\n", + "existent\n", + "existents\n", + "existing\n", + "exists\n", + "exit\n", + "exited\n", + "exiting\n", + "exits\n", + "exocarp\n", + "exocarps\n", + "exocrine\n", + "exocrines\n", + "exoderm\n", + "exoderms\n", + "exodoi\n", + "exodos\n", + "exodus\n", + "exoduses\n", + "exoergic\n", + "exogamic\n", + "exogamies\n", + "exogamy\n", + "exogen\n", + "exogens\n", + "exonerate\n", + "exonerated\n", + "exonerates\n", + "exonerating\n", + "exoneration\n", + "exonerations\n", + "exorable\n", + "exorbitant\n", + "exorcise\n", + "exorcised\n", + "exorcises\n", + "exorcising\n", + "exorcism\n", + "exorcisms\n", + "exorcist\n", + "exorcists\n", + "exorcize\n", + "exorcized\n", + "exorcizes\n", + "exorcizing\n", + "exordia\n", + "exordial\n", + "exordium\n", + "exordiums\n", + "exosmic\n", + "exosmose\n", + "exosmoses\n", + "exospore\n", + "exospores\n", + "exoteric\n", + "exotic\n", + "exotica\n", + "exotically\n", + "exoticism\n", + "exoticisms\n", + "exotics\n", + "exotism\n", + "exotisms\n", + "exotoxic\n", + "exotoxin\n", + "exotoxins\n", + "expand\n", + "expanded\n", + "expander\n", + "expanders\n", + "expanding\n", + "expands\n", + "expanse\n", + "expanses\n", + "expansion\n", + "expansions\n", + "expansive\n", + "expansively\n", + "expansiveness\n", + "expansivenesses\n", + "expatriate\n", + "expatriated\n", + "expatriates\n", + "expatriating\n", + "expect\n", + "expectancies\n", + "expectancy\n", + "expectant\n", + "expectantly\n", + "expectation\n", + "expectations\n", + "expected\n", + "expecting\n", + "expects\n", + "expedient\n", + "expedients\n", + "expedious\n", + "expedite\n", + "expedited\n", + "expediter\n", + "expediters\n", + "expedites\n", + "expediting\n", + "expedition\n", + "expeditions\n", + "expeditious\n", + "expel\n", + "expelled\n", + "expellee\n", + "expellees\n", + "expeller\n", + "expellers\n", + "expelling\n", + "expels\n", + "expend\n", + "expended\n", + "expender\n", + "expenders\n", + "expendible\n", + "expending\n", + "expenditure\n", + "expenditures\n", + "expends\n", + "expense\n", + "expensed\n", + "expenses\n", + "expensing\n", + "expensive\n", + "expensively\n", + "experience\n", + "experiences\n", + "experiment\n", + "experimental\n", + "experimentation\n", + "experimentations\n", + "experimented\n", + "experimenter\n", + "experimenters\n", + "experimenting\n", + "experiments\n", + "expert\n", + "experted\n", + "experting\n", + "expertise\n", + "expertises\n", + "expertly\n", + "expertness\n", + "expertnesses\n", + "experts\n", + "expiable\n", + "expiate\n", + "expiated\n", + "expiates\n", + "expiating\n", + "expiation\n", + "expiations\n", + "expiator\n", + "expiators\n", + "expiration\n", + "expirations\n", + "expire\n", + "expired\n", + "expirer\n", + "expirers\n", + "expires\n", + "expiries\n", + "expiring\n", + "expiry\n", + "explain\n", + "explainable\n", + "explained\n", + "explaining\n", + "explains\n", + "explanation\n", + "explanations\n", + "explanatory\n", + "explant\n", + "explanted\n", + "explanting\n", + "explants\n", + "expletive\n", + "expletives\n", + "explicable\n", + "explicably\n", + "explicit\n", + "explicitly\n", + "explicitness\n", + "explicitnesses\n", + "explicits\n", + "explode\n", + "exploded\n", + "exploder\n", + "exploders\n", + "explodes\n", + "exploding\n", + "exploit\n", + "exploitation\n", + "exploitations\n", + "exploited\n", + "exploiting\n", + "exploits\n", + "exploration\n", + "explorations\n", + "exploratory\n", + "explore\n", + "explored\n", + "explorer\n", + "explorers\n", + "explores\n", + "exploring\n", + "explosion\n", + "explosions\n", + "explosive\n", + "explosively\n", + "explosives\n", + "expo\n", + "exponent\n", + "exponential\n", + "exponentially\n", + "exponents\n", + "export\n", + "exportation\n", + "exportations\n", + "exported\n", + "exporter\n", + "exporters\n", + "exporting\n", + "exports\n", + "expos\n", + "exposal\n", + "exposals\n", + "expose\n", + "exposed\n", + "exposer\n", + "exposers\n", + "exposes\n", + "exposing\n", + "exposit\n", + "exposited\n", + "expositing\n", + "exposition\n", + "expositions\n", + "exposits\n", + "exposure\n", + "exposures\n", + "expound\n", + "expounded\n", + "expounding\n", + "expounds\n", + "express\n", + "expressed\n", + "expresses\n", + "expressible\n", + "expressibly\n", + "expressing\n", + "expression\n", + "expressionless\n", + "expressions\n", + "expressive\n", + "expressiveness\n", + "expressivenesses\n", + "expressly\n", + "expressway\n", + "expressways\n", + "expulse\n", + "expulsed\n", + "expulses\n", + "expulsing\n", + "expulsion\n", + "expulsions\n", + "expunge\n", + "expunged\n", + "expunger\n", + "expungers\n", + "expunges\n", + "expunging\n", + "expurgate\n", + "expurgated\n", + "expurgates\n", + "expurgating\n", + "expurgation\n", + "expurgations\n", + "exquisite\n", + "exscind\n", + "exscinded\n", + "exscinding\n", + "exscinds\n", + "exsecant\n", + "exsecants\n", + "exsect\n", + "exsected\n", + "exsecting\n", + "exsects\n", + "exsert\n", + "exserted\n", + "exserting\n", + "exserts\n", + "extant\n", + "extemporaneous\n", + "extemporaneously\n", + "extend\n", + "extendable\n", + "extended\n", + "extender\n", + "extenders\n", + "extendible\n", + "extending\n", + "extends\n", + "extension\n", + "extensions\n", + "extensive\n", + "extensively\n", + "extensor\n", + "extensors\n", + "extent\n", + "extents\n", + "extenuate\n", + "extenuated\n", + "extenuates\n", + "extenuating\n", + "extenuation\n", + "extenuations\n", + "exterior\n", + "exteriors\n", + "exterminate\n", + "exterminated\n", + "exterminates\n", + "exterminating\n", + "extermination\n", + "exterminations\n", + "exterminator\n", + "exterminators\n", + "extern\n", + "external\n", + "externally\n", + "externals\n", + "externe\n", + "externes\n", + "externs\n", + "extinct\n", + "extincted\n", + "extincting\n", + "extinction\n", + "extinctions\n", + "extincts\n", + "extinguish\n", + "extinguishable\n", + "extinguished\n", + "extinguisher\n", + "extinguishers\n", + "extinguishes\n", + "extinguishing\n", + "extirpate\n", + "extirpated\n", + "extirpates\n", + "extirpating\n", + "extol\n", + "extoll\n", + "extolled\n", + "extoller\n", + "extollers\n", + "extolling\n", + "extolls\n", + "extols\n", + "extort\n", + "extorted\n", + "extorter\n", + "extorters\n", + "extorting\n", + "extortion\n", + "extortioner\n", + "extortioners\n", + "extortionist\n", + "extortionists\n", + "extortions\n", + "extorts\n", + "extra\n", + "extracampus\n", + "extraclassroom\n", + "extracommunity\n", + "extraconstitutional\n", + "extracontinental\n", + "extract\n", + "extractable\n", + "extracted\n", + "extracting\n", + "extraction\n", + "extractions\n", + "extractor\n", + "extractors\n", + "extracts\n", + "extracurricular\n", + "extradepartmental\n", + "extradiocesan\n", + "extradite\n", + "extradited\n", + "extradites\n", + "extraditing\n", + "extradition\n", + "extraditions\n", + "extrados\n", + "extradoses\n", + "extrafamilial\n", + "extragalactic\n", + "extragovernmental\n", + "extrahuman\n", + "extralegal\n", + "extramarital\n", + "extranational\n", + "extraneous\n", + "extraneously\n", + "extraordinarily\n", + "extraordinary\n", + "extraplanetary\n", + "extrapyramidal\n", + "extras\n", + "extrascholastic\n", + "extrasensory\n", + "extraterrestrial\n", + "extravagance\n", + "extravagances\n", + "extravagant\n", + "extravagantly\n", + "extravaganza\n", + "extravaganzas\n", + "extravasate\n", + "extravasated\n", + "extravasates\n", + "extravasating\n", + "extravasation\n", + "extravasations\n", + "extravehicular\n", + "extraversion\n", + "extraversions\n", + "extravert\n", + "extraverted\n", + "extraverts\n", + "extrema\n", + "extreme\n", + "extremely\n", + "extremer\n", + "extremes\n", + "extremest\n", + "extremities\n", + "extremity\n", + "extremum\n", + "extricable\n", + "extricate\n", + "extricated\n", + "extricates\n", + "extricating\n", + "extrication\n", + "extrications\n", + "extrorse\n", + "extrovert\n", + "extroverts\n", + "extrude\n", + "extruded\n", + "extruder\n", + "extruders\n", + "extrudes\n", + "extruding\n", + "exuberance\n", + "exuberances\n", + "exuberant\n", + "exuberantly\n", + "exudate\n", + "exudates\n", + "exudation\n", + "exudations\n", + "exude\n", + "exuded\n", + "exudes\n", + "exuding\n", + "exult\n", + "exultant\n", + "exulted\n", + "exulting\n", + "exults\n", + "exurb\n", + "exurban\n", + "exurbia\n", + "exurbias\n", + "exurbs\n", + "exuvia\n", + "exuviae\n", + "exuvial\n", + "exuviate\n", + "exuviated\n", + "exuviates\n", + "exuviating\n", + "exuvium\n", + "eyas\n", + "eyases\n", + "eye\n", + "eyeable\n", + "eyeball\n", + "eyeballed\n", + "eyeballing\n", + "eyeballs\n", + "eyebeam\n", + "eyebeams\n", + "eyebolt\n", + "eyebolts\n", + "eyebrow\n", + "eyebrows\n", + "eyecup\n", + "eyecups\n", + "eyed\n", + "eyedness\n", + "eyednesses\n", + "eyedropper\n", + "eyedroppers\n", + "eyeful\n", + "eyefuls\n", + "eyeglass\n", + "eyeglasses\n", + "eyehole\n", + "eyeholes\n", + "eyehook\n", + "eyehooks\n", + "eyeing\n", + "eyelash\n", + "eyelashes\n", + "eyeless\n", + "eyelet\n", + "eyelets\n", + "eyeletted\n", + "eyeletting\n", + "eyelid\n", + "eyelids\n", + "eyelike\n", + "eyeliner\n", + "eyeliners\n", + "eyen\n", + "eyepiece\n", + "eyepieces\n", + "eyepoint\n", + "eyepoints\n", + "eyer\n", + "eyers\n", + "eyes\n", + "eyeshade\n", + "eyeshades\n", + "eyeshot\n", + "eyeshots\n", + "eyesight\n", + "eyesights\n", + "eyesome\n", + "eyesore\n", + "eyesores\n", + "eyespot\n", + "eyespots\n", + "eyestalk\n", + "eyestalks\n", + "eyestone\n", + "eyestones\n", + "eyestrain\n", + "eyestrains\n", + "eyeteeth\n", + "eyetooth\n", + "eyewash\n", + "eyewashes\n", + "eyewater\n", + "eyewaters\n", + "eyewink\n", + "eyewinks\n", + "eyewitness\n", + "eying\n", + "eyne\n", + "eyra\n", + "eyras\n", + "eyre\n", + "eyres\n", + "eyrie\n", + "eyries\n", + "eyrir\n", + "eyry\n", + "fa\n", + "fable\n", + "fabled\n", + "fabler\n", + "fablers\n", + "fables\n", + "fabliau\n", + "fabliaux\n", + "fabling\n", + "fabric\n", + "fabricate\n", + "fabricated\n", + "fabricates\n", + "fabricating\n", + "fabrication\n", + "fabrications\n", + "fabrics\n", + "fabular\n", + "fabulist\n", + "fabulists\n", + "fabulous\n", + "fabulously\n", + "facade\n", + "facades\n", + "face\n", + "faceable\n", + "faced\n", + "facedown\n", + "faceless\n", + "facelessness\n", + "facelessnesses\n", + "facer\n", + "facers\n", + "faces\n", + "facesheet\n", + "facesheets\n", + "facet\n", + "facete\n", + "faceted\n", + "facetely\n", + "facetiae\n", + "faceting\n", + "facetious\n", + "facetiously\n", + "facets\n", + "facetted\n", + "facetting\n", + "faceup\n", + "facia\n", + "facial\n", + "facially\n", + "facials\n", + "facias\n", + "faciend\n", + "faciends\n", + "facies\n", + "facile\n", + "facilely\n", + "facilitate\n", + "facilitated\n", + "facilitates\n", + "facilitating\n", + "facilitator\n", + "facilitators\n", + "facilities\n", + "facility\n", + "facing\n", + "facings\n", + "facsimile\n", + "facsimiles\n", + "fact\n", + "factful\n", + "faction\n", + "factional\n", + "factionalism\n", + "factionalisms\n", + "factions\n", + "factious\n", + "factitious\n", + "factor\n", + "factored\n", + "factories\n", + "factoring\n", + "factors\n", + "factory\n", + "factotum\n", + "factotums\n", + "facts\n", + "factual\n", + "factually\n", + "facture\n", + "factures\n", + "facula\n", + "faculae\n", + "facular\n", + "faculties\n", + "faculty\n", + "fad\n", + "fadable\n", + "faddier\n", + "faddiest\n", + "faddish\n", + "faddism\n", + "faddisms\n", + "faddist\n", + "faddists\n", + "faddy\n", + "fade\n", + "fadeaway\n", + "fadeaways\n", + "faded\n", + "fadedly\n", + "fadeless\n", + "fader\n", + "faders\n", + "fades\n", + "fadge\n", + "fadged\n", + "fadges\n", + "fadging\n", + "fading\n", + "fadings\n", + "fado\n", + "fados\n", + "fads\n", + "faecal\n", + "faeces\n", + "faena\n", + "faenas\n", + "faerie\n", + "faeries\n", + "faery\n", + "fag\n", + "fagged\n", + "fagging\n", + "fagin\n", + "fagins\n", + "fagot\n", + "fagoted\n", + "fagoter\n", + "fagoters\n", + "fagoting\n", + "fagotings\n", + "fagots\n", + "fags\n", + "fahlband\n", + "fahlbands\n", + "fahrenheit\n", + "faience\n", + "faiences\n", + "fail\n", + "failed\n", + "failing\n", + "failings\n", + "faille\n", + "failles\n", + "fails\n", + "failure\n", + "failures\n", + "fain\n", + "faineant\n", + "faineants\n", + "fainer\n", + "fainest\n", + "faint\n", + "fainted\n", + "fainter\n", + "fainters\n", + "faintest\n", + "fainthearted\n", + "fainting\n", + "faintish\n", + "faintly\n", + "faintness\n", + "faintnesses\n", + "faints\n", + "fair\n", + "faired\n", + "fairer\n", + "fairest\n", + "fairground\n", + "fairgrounds\n", + "fairies\n", + "fairing\n", + "fairings\n", + "fairish\n", + "fairlead\n", + "fairleads\n", + "fairly\n", + "fairness\n", + "fairnesses\n", + "fairs\n", + "fairway\n", + "fairways\n", + "fairy\n", + "fairyism\n", + "fairyisms\n", + "fairyland\n", + "fairylands\n", + "faith\n", + "faithed\n", + "faithful\n", + "faithfully\n", + "faithfulness\n", + "faithfulnesses\n", + "faithfuls\n", + "faithing\n", + "faithless\n", + "faithlessly\n", + "faithlessness\n", + "faithlessnesses\n", + "faiths\n", + "faitour\n", + "faitours\n", + "fake\n", + "faked\n", + "fakeer\n", + "fakeers\n", + "faker\n", + "fakeries\n", + "fakers\n", + "fakery\n", + "fakes\n", + "faking\n", + "fakir\n", + "fakirs\n", + "falbala\n", + "falbalas\n", + "falcate\n", + "falcated\n", + "falchion\n", + "falchions\n", + "falcon\n", + "falconer\n", + "falconers\n", + "falconet\n", + "falconets\n", + "falconries\n", + "falconry\n", + "falcons\n", + "falderal\n", + "falderals\n", + "falderol\n", + "falderols\n", + "fall\n", + "fallacies\n", + "fallacious\n", + "fallacy\n", + "fallal\n", + "fallals\n", + "fallback\n", + "fallbacks\n", + "fallen\n", + "faller\n", + "fallers\n", + "fallfish\n", + "fallfishes\n", + "fallible\n", + "fallibly\n", + "falling\n", + "falloff\n", + "falloffs\n", + "fallout\n", + "fallouts\n", + "fallow\n", + "fallowed\n", + "fallowing\n", + "fallows\n", + "falls\n", + "false\n", + "falsehood\n", + "falsehoods\n", + "falsely\n", + "falseness\n", + "falsenesses\n", + "falser\n", + "falsest\n", + "falsetto\n", + "falsettos\n", + "falsie\n", + "falsies\n", + "falsification\n", + "falsifications\n", + "falsified\n", + "falsifies\n", + "falsify\n", + "falsifying\n", + "falsities\n", + "falsity\n", + "faltboat\n", + "faltboats\n", + "falter\n", + "faltered\n", + "falterer\n", + "falterers\n", + "faltering\n", + "falters\n", + "fame\n", + "famed\n", + "fameless\n", + "fames\n", + "famiglietti\n", + "familial\n", + "familiar\n", + "familiarities\n", + "familiarity\n", + "familiarize\n", + "familiarized\n", + "familiarizes\n", + "familiarizing\n", + "familiarly\n", + "familiars\n", + "families\n", + "family\n", + "famine\n", + "famines\n", + "faming\n", + "famish\n", + "famished\n", + "famishes\n", + "famishing\n", + "famous\n", + "famously\n", + "famuli\n", + "famulus\n", + "fan\n", + "fanatic\n", + "fanatical\n", + "fanaticism\n", + "fanaticisms\n", + "fanatics\n", + "fancied\n", + "fancier\n", + "fanciers\n", + "fancies\n", + "fanciest\n", + "fanciful\n", + "fancifully\n", + "fancily\n", + "fancy\n", + "fancying\n", + "fandango\n", + "fandangos\n", + "fandom\n", + "fandoms\n", + "fane\n", + "fanega\n", + "fanegada\n", + "fanegadas\n", + "fanegas\n", + "fanes\n", + "fanfare\n", + "fanfares\n", + "fanfaron\n", + "fanfarons\n", + "fanfold\n", + "fanfolds\n", + "fang\n", + "fanga\n", + "fangas\n", + "fanged\n", + "fangless\n", + "fanglike\n", + "fangs\n", + "fanion\n", + "fanions\n", + "fanjet\n", + "fanjets\n", + "fanlight\n", + "fanlights\n", + "fanlike\n", + "fanned\n", + "fanner\n", + "fannies\n", + "fanning\n", + "fanny\n", + "fano\n", + "fanon\n", + "fanons\n", + "fanos\n", + "fans\n", + "fantail\n", + "fantails\n", + "fantasia\n", + "fantasias\n", + "fantasie\n", + "fantasied\n", + "fantasies\n", + "fantasize\n", + "fantasized\n", + "fantasizes\n", + "fantasizing\n", + "fantasm\n", + "fantasms\n", + "fantast\n", + "fantastic\n", + "fantastical\n", + "fantastically\n", + "fantasts\n", + "fantasy\n", + "fantasying\n", + "fantod\n", + "fantods\n", + "fantom\n", + "fantoms\n", + "fanum\n", + "fanums\n", + "fanwise\n", + "fanwort\n", + "fanworts\n", + "faqir\n", + "faqirs\n", + "faquir\n", + "faquirs\n", + "far\n", + "farad\n", + "faradaic\n", + "faraday\n", + "faradays\n", + "faradic\n", + "faradise\n", + "faradised\n", + "faradises\n", + "faradising\n", + "faradism\n", + "faradisms\n", + "faradize\n", + "faradized\n", + "faradizes\n", + "faradizing\n", + "farads\n", + "faraway\n", + "farce\n", + "farced\n", + "farcer\n", + "farcers\n", + "farces\n", + "farceur\n", + "farceurs\n", + "farci\n", + "farcical\n", + "farcie\n", + "farcies\n", + "farcing\n", + "farcy\n", + "fard\n", + "farded\n", + "fardel\n", + "fardels\n", + "farding\n", + "fards\n", + "fare\n", + "fared\n", + "farer\n", + "farers\n", + "fares\n", + "farewell\n", + "farewelled\n", + "farewelling\n", + "farewells\n", + "farfal\n", + "farfals\n", + "farfel\n", + "farfels\n", + "farfetched\n", + "farina\n", + "farinas\n", + "faring\n", + "farinha\n", + "farinhas\n", + "farinose\n", + "farl\n", + "farle\n", + "farles\n", + "farls\n", + "farm\n", + "farmable\n", + "farmed\n", + "farmer\n", + "farmers\n", + "farmhand\n", + "farmhands\n", + "farmhouse\n", + "farmhouses\n", + "farming\n", + "farmings\n", + "farmland\n", + "farmlands\n", + "farms\n", + "farmstead\n", + "farmsteads\n", + "farmyard\n", + "farmyards\n", + "farnesol\n", + "farnesols\n", + "farness\n", + "farnesses\n", + "faro\n", + "faros\n", + "farouche\n", + "farrago\n", + "farragoes\n", + "farrier\n", + "farrieries\n", + "farriers\n", + "farriery\n", + "farrow\n", + "farrowed\n", + "farrowing\n", + "farrows\n", + "farsighted\n", + "farsightedness\n", + "farsightednesses\n", + "fart\n", + "farted\n", + "farther\n", + "farthermost\n", + "farthest\n", + "farthing\n", + "farthings\n", + "farting\n", + "farts\n", + "fas\n", + "fasces\n", + "fascia\n", + "fasciae\n", + "fascial\n", + "fascias\n", + "fasciate\n", + "fascicle\n", + "fascicled\n", + "fascicles\n", + "fascinate\n", + "fascinated\n", + "fascinates\n", + "fascinating\n", + "fascination\n", + "fascinations\n", + "fascine\n", + "fascines\n", + "fascism\n", + "fascisms\n", + "fascist\n", + "fascistic\n", + "fascists\n", + "fash\n", + "fashed\n", + "fashes\n", + "fashing\n", + "fashion\n", + "fashionable\n", + "fashionably\n", + "fashioned\n", + "fashioning\n", + "fashions\n", + "fashious\n", + "fast\n", + "fastback\n", + "fastbacks\n", + "fastball\n", + "fastballs\n", + "fasted\n", + "fasten\n", + "fastened\n", + "fastener\n", + "fasteners\n", + "fastening\n", + "fastenings\n", + "fastens\n", + "faster\n", + "fastest\n", + "fastiduous\n", + "fastiduously\n", + "fastiduousness\n", + "fastiduousnesses\n", + "fasting\n", + "fastings\n", + "fastness\n", + "fastnesses\n", + "fasts\n", + "fastuous\n", + "fat\n", + "fatal\n", + "fatalism\n", + "fatalisms\n", + "fatalist\n", + "fatalistic\n", + "fatalists\n", + "fatalities\n", + "fatality\n", + "fatally\n", + "fatback\n", + "fatbacks\n", + "fatbird\n", + "fatbirds\n", + "fate\n", + "fated\n", + "fateful\n", + "fatefully\n", + "fates\n", + "fathead\n", + "fatheads\n", + "father\n", + "fathered\n", + "fatherhood\n", + "fatherhoods\n", + "fathering\n", + "fatherland\n", + "fatherlands\n", + "fatherless\n", + "fatherly\n", + "fathers\n", + "fathom\n", + "fathomable\n", + "fathomed\n", + "fathoming\n", + "fathomless\n", + "fathoms\n", + "fatidic\n", + "fatigue\n", + "fatigued\n", + "fatigues\n", + "fatiguing\n", + "fating\n", + "fatless\n", + "fatlike\n", + "fatling\n", + "fatlings\n", + "fatly\n", + "fatness\n", + "fatnesses\n", + "fats\n", + "fatso\n", + "fatsoes\n", + "fatsos\n", + "fatstock\n", + "fatstocks\n", + "fatted\n", + "fatten\n", + "fattened\n", + "fattener\n", + "fatteners\n", + "fattening\n", + "fattens\n", + "fatter\n", + "fattest\n", + "fattier\n", + "fatties\n", + "fattiest\n", + "fattily\n", + "fatting\n", + "fattish\n", + "fatty\n", + "fatuities\n", + "fatuity\n", + "fatuous\n", + "fatuously\n", + "fatuousness\n", + "fatuousnesses\n", + "faubourg\n", + "faubourgs\n", + "faucal\n", + "faucals\n", + "fauces\n", + "faucet\n", + "faucets\n", + "faucial\n", + "faugh\n", + "fauld\n", + "faulds\n", + "fault\n", + "faulted\n", + "faultfinder\n", + "faultfinders\n", + "faultfinding\n", + "faultfindings\n", + "faultier\n", + "faultiest\n", + "faultily\n", + "faulting\n", + "faultless\n", + "faultlessly\n", + "faults\n", + "faulty\n", + "faun\n", + "fauna\n", + "faunae\n", + "faunal\n", + "faunally\n", + "faunas\n", + "faunlike\n", + "fauns\n", + "fauteuil\n", + "fauteuils\n", + "fauve\n", + "fauves\n", + "fauvism\n", + "fauvisms\n", + "fauvist\n", + "fauvists\n", + "favela\n", + "favelas\n", + "favonian\n", + "favor\n", + "favorable\n", + "favorably\n", + "favored\n", + "favorer\n", + "favorers\n", + "favoring\n", + "favorite\n", + "favorites\n", + "favoritism\n", + "favoritisms\n", + "favors\n", + "favour\n", + "favoured\n", + "favourer\n", + "favourers\n", + "favouring\n", + "favours\n", + "favus\n", + "favuses\n", + "fawn\n", + "fawned\n", + "fawner\n", + "fawners\n", + "fawnier\n", + "fawniest\n", + "fawning\n", + "fawnlike\n", + "fawns\n", + "fawny\n", + "fax\n", + "faxed\n", + "faxes\n", + "faxing\n", + "fay\n", + "fayalite\n", + "fayalites\n", + "fayed\n", + "faying\n", + "fays\n", + "faze\n", + "fazed\n", + "fazenda\n", + "fazendas\n", + "fazes\n", + "fazing\n", + "feal\n", + "fealties\n", + "fealty\n", + "fear\n", + "feared\n", + "fearer\n", + "fearers\n", + "fearful\n", + "fearfuller\n", + "fearfullest\n", + "fearfully\n", + "fearing\n", + "fearless\n", + "fearlessly\n", + "fearlessness\n", + "fearlessnesses\n", + "fears\n", + "fearsome\n", + "feasance\n", + "feasances\n", + "fease\n", + "feased\n", + "feases\n", + "feasibilities\n", + "feasibility\n", + "feasible\n", + "feasibly\n", + "feasing\n", + "feast\n", + "feasted\n", + "feaster\n", + "feasters\n", + "feastful\n", + "feasting\n", + "feasts\n", + "feat\n", + "feater\n", + "featest\n", + "feather\n", + "feathered\n", + "featherier\n", + "featheriest\n", + "feathering\n", + "featherless\n", + "feathers\n", + "feathery\n", + "featlier\n", + "featliest\n", + "featly\n", + "feats\n", + "feature\n", + "featured\n", + "featureless\n", + "features\n", + "featuring\n", + "feaze\n", + "feazed\n", + "feazes\n", + "feazing\n", + "febrific\n", + "febrile\n", + "fecal\n", + "feces\n", + "fecial\n", + "fecials\n", + "feck\n", + "feckless\n", + "feckly\n", + "fecks\n", + "fecula\n", + "feculae\n", + "feculent\n", + "fecund\n", + "fecundities\n", + "fecundity\n", + "fed\n", + "fedayee\n", + "fedayeen\n", + "federacies\n", + "federacy\n", + "federal\n", + "federalism\n", + "federalisms\n", + "federalist\n", + "federalists\n", + "federally\n", + "federals\n", + "federate\n", + "federated\n", + "federates\n", + "federating\n", + "federation\n", + "federations\n", + "fedora\n", + "fedoras\n", + "feds\n", + "fee\n", + "feeble\n", + "feebleminded\n", + "feeblemindedness\n", + "feeblemindednesses\n", + "feebleness\n", + "feeblenesses\n", + "feebler\n", + "feeblest\n", + "feeblish\n", + "feebly\n", + "feed\n", + "feedable\n", + "feedback\n", + "feedbacks\n", + "feedbag\n", + "feedbags\n", + "feedbox\n", + "feedboxes\n", + "feeder\n", + "feeders\n", + "feeding\n", + "feedlot\n", + "feedlots\n", + "feeds\n", + "feeing\n", + "feel\n", + "feeler\n", + "feelers\n", + "feeless\n", + "feeling\n", + "feelings\n", + "feels\n", + "fees\n", + "feet\n", + "feetless\n", + "feeze\n", + "feezed\n", + "feezes\n", + "feezing\n", + "feign\n", + "feigned\n", + "feigner\n", + "feigners\n", + "feigning\n", + "feigns\n", + "feint\n", + "feinted\n", + "feinting\n", + "feints\n", + "feirie\n", + "feist\n", + "feistier\n", + "feistiest\n", + "feists\n", + "feisty\n", + "feldspar\n", + "feldspars\n", + "felicitate\n", + "felicitated\n", + "felicitates\n", + "felicitating\n", + "felicitation\n", + "felicitations\n", + "felicities\n", + "felicitous\n", + "felicitously\n", + "felicity\n", + "felid\n", + "felids\n", + "feline\n", + "felinely\n", + "felines\n", + "felinities\n", + "felinity\n", + "fell\n", + "fella\n", + "fellable\n", + "fellah\n", + "fellaheen\n", + "fellahin\n", + "fellahs\n", + "fellas\n", + "fellatio\n", + "fellatios\n", + "felled\n", + "feller\n", + "fellers\n", + "fellest\n", + "fellies\n", + "felling\n", + "fellness\n", + "fellnesses\n", + "felloe\n", + "felloes\n", + "fellow\n", + "fellowed\n", + "fellowing\n", + "fellowly\n", + "fellowman\n", + "fellowmen\n", + "fellows\n", + "fellowship\n", + "fellowships\n", + "fells\n", + "felly\n", + "felon\n", + "felonies\n", + "felonious\n", + "felonries\n", + "felonry\n", + "felons\n", + "felony\n", + "felsite\n", + "felsites\n", + "felsitic\n", + "felspar\n", + "felspars\n", + "felstone\n", + "felstones\n", + "felt\n", + "felted\n", + "felting\n", + "feltings\n", + "felts\n", + "felucca\n", + "feluccas\n", + "felwort\n", + "felworts\n", + "female\n", + "females\n", + "feme\n", + "femes\n", + "feminacies\n", + "feminacy\n", + "feminie\n", + "feminine\n", + "feminines\n", + "femininities\n", + "femininity\n", + "feminise\n", + "feminised\n", + "feminises\n", + "feminising\n", + "feminism\n", + "feminisms\n", + "feminist\n", + "feminists\n", + "feminities\n", + "feminity\n", + "feminization\n", + "feminizations\n", + "feminize\n", + "feminized\n", + "feminizes\n", + "feminizing\n", + "femme\n", + "femmes\n", + "femora\n", + "femoral\n", + "femur\n", + "femurs\n", + "fen\n", + "fenagle\n", + "fenagled\n", + "fenagles\n", + "fenagling\n", + "fence\n", + "fenced\n", + "fencer\n", + "fencers\n", + "fences\n", + "fencible\n", + "fencibles\n", + "fencing\n", + "fencings\n", + "fend\n", + "fended\n", + "fender\n", + "fendered\n", + "fenders\n", + "fending\n", + "fends\n", + "fenestra\n", + "fenestrae\n", + "fennec\n", + "fennecs\n", + "fennel\n", + "fennels\n", + "fenny\n", + "fens\n", + "feod\n", + "feodaries\n", + "feodary\n", + "feods\n", + "feoff\n", + "feoffed\n", + "feoffee\n", + "feoffees\n", + "feoffer\n", + "feoffers\n", + "feoffing\n", + "feoffor\n", + "feoffors\n", + "feoffs\n", + "fer\n", + "feracities\n", + "feracity\n", + "feral\n", + "ferbam\n", + "ferbams\n", + "fere\n", + "feres\n", + "feretories\n", + "feretory\n", + "feria\n", + "feriae\n", + "ferial\n", + "ferias\n", + "ferine\n", + "ferities\n", + "ferity\n", + "ferlie\n", + "ferlies\n", + "ferly\n", + "fermata\n", + "fermatas\n", + "fermate\n", + "ferment\n", + "fermentation\n", + "fermentations\n", + "fermented\n", + "fermenting\n", + "ferments\n", + "fermi\n", + "fermion\n", + "fermions\n", + "fermis\n", + "fermium\n", + "fermiums\n", + "fern\n", + "ferneries\n", + "fernery\n", + "fernier\n", + "ferniest\n", + "fernless\n", + "fernlike\n", + "ferns\n", + "ferny\n", + "ferocious\n", + "ferociously\n", + "ferociousness\n", + "ferociousnesses\n", + "ferocities\n", + "ferocity\n", + "ferrate\n", + "ferrates\n", + "ferrel\n", + "ferreled\n", + "ferreling\n", + "ferrelled\n", + "ferrelling\n", + "ferrels\n", + "ferreous\n", + "ferret\n", + "ferreted\n", + "ferreter\n", + "ferreters\n", + "ferreting\n", + "ferrets\n", + "ferrety\n", + "ferriage\n", + "ferriages\n", + "ferric\n", + "ferried\n", + "ferries\n", + "ferrite\n", + "ferrites\n", + "ferritic\n", + "ferritin\n", + "ferritins\n", + "ferrous\n", + "ferrule\n", + "ferruled\n", + "ferrules\n", + "ferruling\n", + "ferrum\n", + "ferrums\n", + "ferry\n", + "ferryboat\n", + "ferryboats\n", + "ferrying\n", + "ferryman\n", + "ferrymen\n", + "fertile\n", + "fertilities\n", + "fertility\n", + "fertilization\n", + "fertilizations\n", + "fertilize\n", + "fertilized\n", + "fertilizer\n", + "fertilizers\n", + "fertilizes\n", + "fertilizing\n", + "ferula\n", + "ferulae\n", + "ferulas\n", + "ferule\n", + "feruled\n", + "ferules\n", + "feruling\n", + "fervencies\n", + "fervency\n", + "fervent\n", + "fervently\n", + "fervid\n", + "fervidly\n", + "fervor\n", + "fervors\n", + "fervour\n", + "fervours\n", + "fescue\n", + "fescues\n", + "fess\n", + "fesse\n", + "fessed\n", + "fesses\n", + "fessing\n", + "fesswise\n", + "festal\n", + "festally\n", + "fester\n", + "festered\n", + "festering\n", + "festers\n", + "festival\n", + "festivals\n", + "festive\n", + "festively\n", + "festivities\n", + "festivity\n", + "festoon\n", + "festooned\n", + "festooning\n", + "festoons\n", + "fet\n", + "feta\n", + "fetal\n", + "fetas\n", + "fetation\n", + "fetations\n", + "fetch\n", + "fetched\n", + "fetcher\n", + "fetchers\n", + "fetches\n", + "fetching\n", + "fetchingly\n", + "fete\n", + "feted\n", + "feterita\n", + "feteritas\n", + "fetes\n", + "fetial\n", + "fetiales\n", + "fetialis\n", + "fetials\n", + "fetich\n", + "fetiches\n", + "feticide\n", + "feticides\n", + "fetid\n", + "fetidly\n", + "feting\n", + "fetish\n", + "fetishes\n", + "fetlock\n", + "fetlocks\n", + "fetologies\n", + "fetology\n", + "fetor\n", + "fetors\n", + "fets\n", + "fetted\n", + "fetter\n", + "fettered\n", + "fetterer\n", + "fetterers\n", + "fettering\n", + "fetters\n", + "fetting\n", + "fettle\n", + "fettled\n", + "fettles\n", + "fettling\n", + "fettlings\n", + "fetus\n", + "fetuses\n", + "feu\n", + "feuar\n", + "feuars\n", + "feud\n", + "feudal\n", + "feudalism\n", + "feudalistic\n", + "feudally\n", + "feudaries\n", + "feudary\n", + "feuded\n", + "feuding\n", + "feudist\n", + "feudists\n", + "feuds\n", + "feued\n", + "feuing\n", + "feus\n", + "fever\n", + "fevered\n", + "feverfew\n", + "feverfews\n", + "fevering\n", + "feverish\n", + "feverous\n", + "fevers\n", + "few\n", + "fewer\n", + "fewest\n", + "fewness\n", + "fewnesses\n", + "fewtrils\n", + "fey\n", + "feyer\n", + "feyest\n", + "feyness\n", + "feynesses\n", + "fez\n", + "fezes\n", + "fezzed\n", + "fezzes\n", + "fiacre\n", + "fiacres\n", + "fiance\n", + "fiancee\n", + "fiancees\n", + "fiances\n", + "fiar\n", + "fiars\n", + "fiaschi\n", + "fiasco\n", + "fiascoes\n", + "fiascos\n", + "fiat\n", + "fiats\n", + "fib\n", + "fibbed\n", + "fibber\n", + "fibbers\n", + "fibbing\n", + "fiber\n", + "fiberboard\n", + "fiberboards\n", + "fibered\n", + "fiberglass\n", + "fiberglasses\n", + "fiberize\n", + "fiberized\n", + "fiberizes\n", + "fiberizing\n", + "fibers\n", + "fibre\n", + "fibres\n", + "fibril\n", + "fibrilla\n", + "fibrillae\n", + "fibrillate\n", + "fibrillated\n", + "fibrillates\n", + "fibrillating\n", + "fibrillation\n", + "fibrillations\n", + "fibrils\n", + "fibrin\n", + "fibrins\n", + "fibrocystic\n", + "fibroid\n", + "fibroids\n", + "fibroin\n", + "fibroins\n", + "fibroma\n", + "fibromas\n", + "fibromata\n", + "fibroses\n", + "fibrosis\n", + "fibrotic\n", + "fibrous\n", + "fibs\n", + "fibula\n", + "fibulae\n", + "fibular\n", + "fibulas\n", + "fice\n", + "fices\n", + "fiche\n", + "fiches\n", + "fichu\n", + "fichus\n", + "ficin\n", + "ficins\n", + "fickle\n", + "fickleness\n", + "ficklenesses\n", + "fickler\n", + "ficklest\n", + "fico\n", + "ficoes\n", + "fictile\n", + "fiction\n", + "fictional\n", + "fictions\n", + "fictitious\n", + "fictive\n", + "fid\n", + "fiddle\n", + "fiddled\n", + "fiddler\n", + "fiddlers\n", + "fiddles\n", + "fiddlesticks\n", + "fiddling\n", + "fideism\n", + "fideisms\n", + "fideist\n", + "fideists\n", + "fidelities\n", + "fidelity\n", + "fidge\n", + "fidged\n", + "fidges\n", + "fidget\n", + "fidgeted\n", + "fidgeter\n", + "fidgeters\n", + "fidgeting\n", + "fidgets\n", + "fidgety\n", + "fidging\n", + "fido\n", + "fidos\n", + "fids\n", + "fiducial\n", + "fiduciaries\n", + "fiduciary\n", + "fie\n", + "fief\n", + "fiefdom\n", + "fiefdoms\n", + "fiefs\n", + "field\n", + "fielded\n", + "fielder\n", + "fielders\n", + "fielding\n", + "fields\n", + "fiend\n", + "fiendish\n", + "fiendishly\n", + "fiends\n", + "fierce\n", + "fiercely\n", + "fierceness\n", + "fiercenesses\n", + "fiercer\n", + "fiercest\n", + "fierier\n", + "fieriest\n", + "fierily\n", + "fieriness\n", + "fierinesses\n", + "fiery\n", + "fiesta\n", + "fiestas\n", + "fife\n", + "fifed\n", + "fifer\n", + "fifers\n", + "fifes\n", + "fifing\n", + "fifteen\n", + "fifteens\n", + "fifteenth\n", + "fifteenths\n", + "fifth\n", + "fifthly\n", + "fifths\n", + "fifties\n", + "fiftieth\n", + "fiftieths\n", + "fifty\n", + "fig\n", + "figeater\n", + "figeaters\n", + "figged\n", + "figging\n", + "fight\n", + "fighter\n", + "fighters\n", + "fighting\n", + "fightings\n", + "fights\n", + "figment\n", + "figments\n", + "figs\n", + "figuline\n", + "figulines\n", + "figural\n", + "figurant\n", + "figurants\n", + "figurate\n", + "figurative\n", + "figuratively\n", + "figure\n", + "figured\n", + "figurer\n", + "figurers\n", + "figures\n", + "figurine\n", + "figurines\n", + "figuring\n", + "figwort\n", + "figworts\n", + "fil\n", + "fila\n", + "filagree\n", + "filagreed\n", + "filagreeing\n", + "filagrees\n", + "filament\n", + "filamentous\n", + "filaments\n", + "filar\n", + "filaree\n", + "filarees\n", + "filaria\n", + "filariae\n", + "filarial\n", + "filarian\n", + "filariid\n", + "filariids\n", + "filature\n", + "filatures\n", + "filbert\n", + "filberts\n", + "filch\n", + "filched\n", + "filcher\n", + "filchers\n", + "filches\n", + "filching\n", + "file\n", + "filed\n", + "filefish\n", + "filefishes\n", + "filemot\n", + "filer\n", + "filers\n", + "files\n", + "filet\n", + "fileted\n", + "fileting\n", + "filets\n", + "filial\n", + "filially\n", + "filiate\n", + "filiated\n", + "filiates\n", + "filiating\n", + "filibeg\n", + "filibegs\n", + "filibuster\n", + "filibustered\n", + "filibusterer\n", + "filibusterers\n", + "filibustering\n", + "filibusters\n", + "filicide\n", + "filicides\n", + "filiform\n", + "filigree\n", + "filigreed\n", + "filigreeing\n", + "filigrees\n", + "filing\n", + "filings\n", + "filister\n", + "filisters\n", + "fill\n", + "fille\n", + "filled\n", + "filler\n", + "fillers\n", + "filles\n", + "fillet\n", + "filleted\n", + "filleting\n", + "fillets\n", + "fillies\n", + "filling\n", + "fillings\n", + "fillip\n", + "filliped\n", + "filliping\n", + "fillips\n", + "fills\n", + "filly\n", + "film\n", + "filmcard\n", + "filmcards\n", + "filmdom\n", + "filmdoms\n", + "filmed\n", + "filmgoer\n", + "filmgoers\n", + "filmic\n", + "filmier\n", + "filmiest\n", + "filmily\n", + "filming\n", + "filmland\n", + "filmlands\n", + "films\n", + "filmset\n", + "filmsets\n", + "filmsetting\n", + "filmstrip\n", + "filmstrips\n", + "filmy\n", + "filose\n", + "fils\n", + "filter\n", + "filterable\n", + "filtered\n", + "filterer\n", + "filterers\n", + "filtering\n", + "filters\n", + "filth\n", + "filthier\n", + "filthiest\n", + "filthily\n", + "filthiness\n", + "filthinesses\n", + "filths\n", + "filthy\n", + "filtrate\n", + "filtrated\n", + "filtrates\n", + "filtrating\n", + "filtration\n", + "filtrations\n", + "filum\n", + "fimble\n", + "fimbles\n", + "fimbria\n", + "fimbriae\n", + "fimbrial\n", + "fin\n", + "finable\n", + "finagle\n", + "finagled\n", + "finagler\n", + "finaglers\n", + "finagles\n", + "finagling\n", + "final\n", + "finale\n", + "finales\n", + "finalis\n", + "finalism\n", + "finalisms\n", + "finalist\n", + "finalists\n", + "finalities\n", + "finality\n", + "finalize\n", + "finalized\n", + "finalizes\n", + "finalizing\n", + "finally\n", + "finals\n", + "finance\n", + "financed\n", + "finances\n", + "financial\n", + "financially\n", + "financier\n", + "financiers\n", + "financing\n", + "finback\n", + "finbacks\n", + "finch\n", + "finches\n", + "find\n", + "finder\n", + "finders\n", + "finding\n", + "findings\n", + "finds\n", + "fine\n", + "fineable\n", + "fined\n", + "finely\n", + "fineness\n", + "finenesses\n", + "finer\n", + "fineries\n", + "finery\n", + "fines\n", + "finespun\n", + "finesse\n", + "finessed\n", + "finesses\n", + "finessing\n", + "finest\n", + "finfish\n", + "finfishes\n", + "finfoot\n", + "finfoots\n", + "finger\n", + "fingered\n", + "fingerer\n", + "fingerers\n", + "fingering\n", + "fingerling\n", + "fingerlings\n", + "fingernail\n", + "fingerprint\n", + "fingerprints\n", + "fingers\n", + "fingertip\n", + "fingertips\n", + "finial\n", + "finialed\n", + "finials\n", + "finical\n", + "finickier\n", + "finickiest\n", + "finickin\n", + "finicky\n", + "finikin\n", + "finiking\n", + "fining\n", + "finings\n", + "finis\n", + "finises\n", + "finish\n", + "finished\n", + "finisher\n", + "finishers\n", + "finishes\n", + "finishing\n", + "finite\n", + "finitely\n", + "finites\n", + "finitude\n", + "finitudes\n", + "fink\n", + "finked\n", + "finking\n", + "finks\n", + "finky\n", + "finless\n", + "finlike\n", + "finmark\n", + "finmarks\n", + "finned\n", + "finnickier\n", + "finnickiest\n", + "finnicky\n", + "finnier\n", + "finniest\n", + "finning\n", + "finnmark\n", + "finnmarks\n", + "finny\n", + "finochio\n", + "finochios\n", + "fins\n", + "fiord\n", + "fiords\n", + "fipple\n", + "fipples\n", + "fique\n", + "fiques\n", + "fir\n", + "fire\n", + "firearm\n", + "firearms\n", + "fireball\n", + "fireballs\n", + "firebird\n", + "firebirds\n", + "fireboat\n", + "fireboats\n", + "firebomb\n", + "firebombed\n", + "firebombing\n", + "firebombs\n", + "firebox\n", + "fireboxes\n", + "firebrat\n", + "firebrats\n", + "firebreak\n", + "firebreaks\n", + "firebug\n", + "firebugs\n", + "fireclay\n", + "fireclays\n", + "firecracker\n", + "firecrackers\n", + "fired\n", + "firedamp\n", + "firedamps\n", + "firedog\n", + "firedogs\n", + "firefang\n", + "firefanged\n", + "firefanging\n", + "firefangs\n", + "fireflies\n", + "firefly\n", + "firehall\n", + "firehalls\n", + "fireless\n", + "firelock\n", + "firelocks\n", + "fireman\n", + "firemen\n", + "firepan\n", + "firepans\n", + "firepink\n", + "firepinks\n", + "fireplace\n", + "fireplaces\n", + "fireplug\n", + "fireplugs\n", + "fireproof\n", + "fireproofed\n", + "fireproofing\n", + "fireproofs\n", + "firer\n", + "fireroom\n", + "firerooms\n", + "firers\n", + "fires\n", + "fireside\n", + "firesides\n", + "firetrap\n", + "firetraps\n", + "fireweed\n", + "fireweeds\n", + "firewood\n", + "firewoods\n", + "firework\n", + "fireworks\n", + "fireworm\n", + "fireworms\n", + "firing\n", + "firings\n", + "firkin\n", + "firkins\n", + "firm\n", + "firmament\n", + "firmaments\n", + "firman\n", + "firmans\n", + "firmed\n", + "firmer\n", + "firmers\n", + "firmest\n", + "firming\n", + "firmly\n", + "firmness\n", + "firmnesses\n", + "firms\n", + "firn\n", + "firns\n", + "firry\n", + "firs\n", + "first\n", + "firstly\n", + "firsts\n", + "firth\n", + "firths\n", + "fisc\n", + "fiscal\n", + "fiscally\n", + "fiscals\n", + "fiscs\n", + "fish\n", + "fishable\n", + "fishboat\n", + "fishboats\n", + "fishbone\n", + "fishbones\n", + "fishbowl\n", + "fishbowls\n", + "fished\n", + "fisher\n", + "fisheries\n", + "fisherman\n", + "fishermen\n", + "fishers\n", + "fishery\n", + "fishes\n", + "fisheye\n", + "fisheyes\n", + "fishgig\n", + "fishgigs\n", + "fishhook\n", + "fishhooks\n", + "fishier\n", + "fishiest\n", + "fishily\n", + "fishing\n", + "fishings\n", + "fishless\n", + "fishlike\n", + "fishline\n", + "fishlines\n", + "fishmeal\n", + "fishmeals\n", + "fishnet\n", + "fishnets\n", + "fishpole\n", + "fishpoles\n", + "fishpond\n", + "fishponds\n", + "fishtail\n", + "fishtailed\n", + "fishtailing\n", + "fishtails\n", + "fishway\n", + "fishways\n", + "fishwife\n", + "fishwives\n", + "fishy\n", + "fissate\n", + "fissile\n", + "fission\n", + "fissionable\n", + "fissional\n", + "fissioned\n", + "fissioning\n", + "fissions\n", + "fissiped\n", + "fissipeds\n", + "fissure\n", + "fissured\n", + "fissures\n", + "fissuring\n", + "fist\n", + "fisted\n", + "fistful\n", + "fistfuls\n", + "fistic\n", + "fisticuffs\n", + "fisting\n", + "fistnote\n", + "fistnotes\n", + "fists\n", + "fistula\n", + "fistulae\n", + "fistular\n", + "fistulas\n", + "fisty\n", + "fit\n", + "fitch\n", + "fitchee\n", + "fitches\n", + "fitchet\n", + "fitchets\n", + "fitchew\n", + "fitchews\n", + "fitchy\n", + "fitful\n", + "fitfully\n", + "fitly\n", + "fitment\n", + "fitments\n", + "fitness\n", + "fitnesses\n", + "fits\n", + "fittable\n", + "fitted\n", + "fitter\n", + "fitters\n", + "fittest\n", + "fitting\n", + "fittings\n", + "five\n", + "fivefold\n", + "fivepins\n", + "fiver\n", + "fivers\n", + "fives\n", + "fix\n", + "fixable\n", + "fixate\n", + "fixated\n", + "fixates\n", + "fixatif\n", + "fixatifs\n", + "fixating\n", + "fixation\n", + "fixations\n", + "fixative\n", + "fixatives\n", + "fixed\n", + "fixedly\n", + "fixedness\n", + "fixednesses\n", + "fixer\n", + "fixers\n", + "fixes\n", + "fixing\n", + "fixings\n", + "fixities\n", + "fixity\n", + "fixt\n", + "fixture\n", + "fixtures\n", + "fixure\n", + "fixures\n", + "fiz\n", + "fizgig\n", + "fizgigs\n", + "fizz\n", + "fizzed\n", + "fizzer\n", + "fizzers\n", + "fizzes\n", + "fizzier\n", + "fizziest\n", + "fizzing\n", + "fizzle\n", + "fizzled\n", + "fizzles\n", + "fizzling\n", + "fizzy\n", + "fjeld\n", + "fjelds\n", + "fjord\n", + "fjords\n", + "flab\n", + "flabbergast\n", + "flabbergasted\n", + "flabbergasting\n", + "flabbergasts\n", + "flabbier\n", + "flabbiest\n", + "flabbily\n", + "flabbiness\n", + "flabbinesses\n", + "flabby\n", + "flabella\n", + "flabs\n", + "flaccid\n", + "flack\n", + "flacks\n", + "flacon\n", + "flacons\n", + "flag\n", + "flagella\n", + "flagellate\n", + "flagellated\n", + "flagellates\n", + "flagellating\n", + "flagellation\n", + "flagellations\n", + "flagged\n", + "flagger\n", + "flaggers\n", + "flaggier\n", + "flaggiest\n", + "flagging\n", + "flaggings\n", + "flaggy\n", + "flagless\n", + "flagman\n", + "flagmen\n", + "flagon\n", + "flagons\n", + "flagpole\n", + "flagpoles\n", + "flagrant\n", + "flagrantly\n", + "flags\n", + "flagship\n", + "flagships\n", + "flagstaff\n", + "flagstaffs\n", + "flagstone\n", + "flagstones\n", + "flail\n", + "flailed\n", + "flailing\n", + "flails\n", + "flair\n", + "flairs\n", + "flak\n", + "flake\n", + "flaked\n", + "flaker\n", + "flakers\n", + "flakes\n", + "flakier\n", + "flakiest\n", + "flakily\n", + "flaking\n", + "flaky\n", + "flam\n", + "flambe\n", + "flambeau\n", + "flambeaus\n", + "flambeaux\n", + "flambee\n", + "flambeed\n", + "flambeing\n", + "flambes\n", + "flamboyance\n", + "flamboyances\n", + "flamboyant\n", + "flamboyantly\n", + "flame\n", + "flamed\n", + "flamen\n", + "flamenco\n", + "flamencos\n", + "flamens\n", + "flameout\n", + "flameouts\n", + "flamer\n", + "flamers\n", + "flames\n", + "flamier\n", + "flamiest\n", + "flamines\n", + "flaming\n", + "flamingo\n", + "flamingoes\n", + "flamingos\n", + "flammable\n", + "flammed\n", + "flamming\n", + "flams\n", + "flamy\n", + "flan\n", + "flancard\n", + "flancards\n", + "flanerie\n", + "flaneries\n", + "flanes\n", + "flaneur\n", + "flaneurs\n", + "flange\n", + "flanged\n", + "flanger\n", + "flangers\n", + "flanges\n", + "flanging\n", + "flank\n", + "flanked\n", + "flanker\n", + "flankers\n", + "flanking\n", + "flanks\n", + "flannel\n", + "flanneled\n", + "flanneling\n", + "flannelled\n", + "flannelling\n", + "flannels\n", + "flans\n", + "flap\n", + "flapjack\n", + "flapjacks\n", + "flapless\n", + "flapped\n", + "flapper\n", + "flappers\n", + "flappier\n", + "flappiest\n", + "flapping\n", + "flappy\n", + "flaps\n", + "flare\n", + "flared\n", + "flares\n", + "flaring\n", + "flash\n", + "flashed\n", + "flasher\n", + "flashers\n", + "flashes\n", + "flashgun\n", + "flashguns\n", + "flashier\n", + "flashiest\n", + "flashily\n", + "flashiness\n", + "flashinesses\n", + "flashing\n", + "flashings\n", + "flashlight\n", + "flashlights\n", + "flashy\n", + "flask\n", + "flasket\n", + "flaskets\n", + "flasks\n", + "flat\n", + "flatbed\n", + "flatbeds\n", + "flatboat\n", + "flatboats\n", + "flatcap\n", + "flatcaps\n", + "flatcar\n", + "flatcars\n", + "flatfeet\n", + "flatfish\n", + "flatfishes\n", + "flatfoot\n", + "flatfooted\n", + "flatfooting\n", + "flatfoots\n", + "flathead\n", + "flatheads\n", + "flatiron\n", + "flatirons\n", + "flatland\n", + "flatlands\n", + "flatlet\n", + "flatlets\n", + "flatling\n", + "flatly\n", + "flatness\n", + "flatnesses\n", + "flats\n", + "flatted\n", + "flatten\n", + "flattened\n", + "flattening\n", + "flattens\n", + "flatter\n", + "flattered\n", + "flatterer\n", + "flatteries\n", + "flattering\n", + "flatters\n", + "flattery\n", + "flattest\n", + "flatting\n", + "flattish\n", + "flattop\n", + "flattops\n", + "flatulence\n", + "flatulences\n", + "flatulent\n", + "flatus\n", + "flatuses\n", + "flatware\n", + "flatwares\n", + "flatwash\n", + "flatwashes\n", + "flatways\n", + "flatwise\n", + "flatwork\n", + "flatworks\n", + "flatworm\n", + "flatworms\n", + "flaunt\n", + "flaunted\n", + "flaunter\n", + "flaunters\n", + "flauntier\n", + "flauntiest\n", + "flaunting\n", + "flaunts\n", + "flaunty\n", + "flautist\n", + "flautists\n", + "flavin\n", + "flavine\n", + "flavines\n", + "flavins\n", + "flavone\n", + "flavones\n", + "flavonol\n", + "flavonols\n", + "flavor\n", + "flavored\n", + "flavorer\n", + "flavorers\n", + "flavorful\n", + "flavoring\n", + "flavorings\n", + "flavors\n", + "flavorsome\n", + "flavory\n", + "flavour\n", + "flavoured\n", + "flavouring\n", + "flavours\n", + "flavoury\n", + "flaw\n", + "flawed\n", + "flawier\n", + "flawiest\n", + "flawing\n", + "flawless\n", + "flaws\n", + "flawy\n", + "flax\n", + "flaxen\n", + "flaxes\n", + "flaxier\n", + "flaxiest\n", + "flaxseed\n", + "flaxseeds\n", + "flaxy\n", + "flay\n", + "flayed\n", + "flayer\n", + "flayers\n", + "flaying\n", + "flays\n", + "flea\n", + "fleabag\n", + "fleabags\n", + "fleabane\n", + "fleabanes\n", + "fleabite\n", + "fleabites\n", + "fleam\n", + "fleams\n", + "fleas\n", + "fleawort\n", + "fleaworts\n", + "fleche\n", + "fleches\n", + "fleck\n", + "flecked\n", + "flecking\n", + "flecks\n", + "flecky\n", + "flection\n", + "flections\n", + "fled\n", + "fledge\n", + "fledged\n", + "fledges\n", + "fledgier\n", + "fledgiest\n", + "fledging\n", + "fledgling\n", + "fledglings\n", + "fledgy\n", + "flee\n", + "fleece\n", + "fleeced\n", + "fleecer\n", + "fleecers\n", + "fleeces\n", + "fleech\n", + "fleeched\n", + "fleeches\n", + "fleeching\n", + "fleecier\n", + "fleeciest\n", + "fleecily\n", + "fleecing\n", + "fleecy\n", + "fleeing\n", + "fleer\n", + "fleered\n", + "fleering\n", + "fleers\n", + "flees\n", + "fleet\n", + "fleeted\n", + "fleeter\n", + "fleetest\n", + "fleeting\n", + "fleetness\n", + "fleetnesses\n", + "fleets\n", + "fleishig\n", + "flemish\n", + "flemished\n", + "flemishes\n", + "flemishing\n", + "flench\n", + "flenched\n", + "flenches\n", + "flenching\n", + "flense\n", + "flensed\n", + "flenser\n", + "flensers\n", + "flenses\n", + "flensing\n", + "flesh\n", + "fleshed\n", + "flesher\n", + "fleshers\n", + "fleshes\n", + "fleshier\n", + "fleshiest\n", + "fleshing\n", + "fleshings\n", + "fleshlier\n", + "fleshliest\n", + "fleshly\n", + "fleshpot\n", + "fleshpots\n", + "fleshy\n", + "fletch\n", + "fletched\n", + "fletcher\n", + "fletchers\n", + "fletches\n", + "fletching\n", + "fleury\n", + "flew\n", + "flews\n", + "flex\n", + "flexed\n", + "flexes\n", + "flexibilities\n", + "flexibility\n", + "flexible\n", + "flexibly\n", + "flexile\n", + "flexing\n", + "flexion\n", + "flexions\n", + "flexor\n", + "flexors\n", + "flexuose\n", + "flexuous\n", + "flexural\n", + "flexure\n", + "flexures\n", + "fley\n", + "fleyed\n", + "fleying\n", + "fleys\n", + "flic\n", + "flichter\n", + "flichtered\n", + "flichtering\n", + "flichters\n", + "flick\n", + "flicked\n", + "flicker\n", + "flickered\n", + "flickering\n", + "flickers\n", + "flickery\n", + "flicking\n", + "flicks\n", + "flics\n", + "flied\n", + "flier\n", + "fliers\n", + "flies\n", + "fliest\n", + "flight\n", + "flighted\n", + "flightier\n", + "flightiest\n", + "flighting\n", + "flightless\n", + "flights\n", + "flighty\n", + "flimflam\n", + "flimflammed\n", + "flimflamming\n", + "flimflams\n", + "flimsier\n", + "flimsies\n", + "flimsiest\n", + "flimsily\n", + "flimsiness\n", + "flimsinesses\n", + "flimsy\n", + "flinch\n", + "flinched\n", + "flincher\n", + "flinchers\n", + "flinches\n", + "flinching\n", + "flinder\n", + "flinders\n", + "fling\n", + "flinger\n", + "flingers\n", + "flinging\n", + "flings\n", + "flint\n", + "flinted\n", + "flintier\n", + "flintiest\n", + "flintily\n", + "flinting\n", + "flints\n", + "flinty\n", + "flip\n", + "flippancies\n", + "flippancy\n", + "flippant\n", + "flipped\n", + "flipper\n", + "flippers\n", + "flippest\n", + "flipping\n", + "flips\n", + "flirt\n", + "flirtation\n", + "flirtations\n", + "flirtatious\n", + "flirted\n", + "flirter\n", + "flirters\n", + "flirtier\n", + "flirtiest\n", + "flirting\n", + "flirts\n", + "flirty\n", + "flit\n", + "flitch\n", + "flitched\n", + "flitches\n", + "flitching\n", + "flite\n", + "flited\n", + "flites\n", + "fliting\n", + "flits\n", + "flitted\n", + "flitter\n", + "flittered\n", + "flittering\n", + "flitters\n", + "flitting\n", + "flivver\n", + "flivvers\n", + "float\n", + "floatage\n", + "floatages\n", + "floated\n", + "floater\n", + "floaters\n", + "floatier\n", + "floatiest\n", + "floating\n", + "floats\n", + "floaty\n", + "floc\n", + "flocced\n", + "flocci\n", + "floccing\n", + "floccose\n", + "floccule\n", + "floccules\n", + "flocculi\n", + "floccus\n", + "flock\n", + "flocked\n", + "flockier\n", + "flockiest\n", + "flocking\n", + "flockings\n", + "flocks\n", + "flocky\n", + "flocs\n", + "floe\n", + "floes\n", + "flog\n", + "flogged\n", + "flogger\n", + "floggers\n", + "flogging\n", + "floggings\n", + "flogs\n", + "flong\n", + "flongs\n", + "flood\n", + "flooded\n", + "flooder\n", + "flooders\n", + "flooding\n", + "floodlit\n", + "floods\n", + "floodwater\n", + "floodwaters\n", + "floodway\n", + "floodways\n", + "flooey\n", + "floor\n", + "floorage\n", + "floorages\n", + "floorboard\n", + "floorboards\n", + "floored\n", + "floorer\n", + "floorers\n", + "flooring\n", + "floorings\n", + "floors\n", + "floosies\n", + "floosy\n", + "floozie\n", + "floozies\n", + "floozy\n", + "flop\n", + "flopover\n", + "flopovers\n", + "flopped\n", + "flopper\n", + "floppers\n", + "floppier\n", + "floppiest\n", + "floppily\n", + "flopping\n", + "floppy\n", + "flops\n", + "flora\n", + "florae\n", + "floral\n", + "florally\n", + "floras\n", + "florence\n", + "florences\n", + "floret\n", + "florets\n", + "florid\n", + "floridly\n", + "florigen\n", + "florigens\n", + "florin\n", + "florins\n", + "florist\n", + "florists\n", + "floruit\n", + "floruits\n", + "floss\n", + "flosses\n", + "flossie\n", + "flossier\n", + "flossies\n", + "flossiest\n", + "flossy\n", + "flota\n", + "flotage\n", + "flotages\n", + "flotas\n", + "flotation\n", + "flotations\n", + "flotilla\n", + "flotillas\n", + "flotsam\n", + "flotsams\n", + "flounce\n", + "flounced\n", + "flounces\n", + "flouncier\n", + "flounciest\n", + "flouncing\n", + "flouncy\n", + "flounder\n", + "floundered\n", + "floundering\n", + "flounders\n", + "flour\n", + "floured\n", + "flouring\n", + "flourish\n", + "flourished\n", + "flourishes\n", + "flourishing\n", + "flours\n", + "floury\n", + "flout\n", + "flouted\n", + "flouter\n", + "flouters\n", + "flouting\n", + "flouts\n", + "flow\n", + "flowage\n", + "flowages\n", + "flowchart\n", + "flowcharts\n", + "flowed\n", + "flower\n", + "flowered\n", + "flowerer\n", + "flowerers\n", + "floweret\n", + "flowerets\n", + "flowerier\n", + "floweriest\n", + "floweriness\n", + "flowerinesses\n", + "flowering\n", + "flowerless\n", + "flowerpot\n", + "flowerpots\n", + "flowers\n", + "flowery\n", + "flowing\n", + "flown\n", + "flows\n", + "flowsheet\n", + "flowsheets\n", + "flu\n", + "flub\n", + "flubbed\n", + "flubbing\n", + "flubdub\n", + "flubdubs\n", + "flubs\n", + "fluctuate\n", + "fluctuated\n", + "fluctuates\n", + "fluctuating\n", + "fluctuation\n", + "fluctuations\n", + "flue\n", + "flued\n", + "fluencies\n", + "fluency\n", + "fluent\n", + "fluently\n", + "flueric\n", + "fluerics\n", + "flues\n", + "fluff\n", + "fluffed\n", + "fluffier\n", + "fluffiest\n", + "fluffily\n", + "fluffing\n", + "fluffs\n", + "fluffy\n", + "fluid\n", + "fluidal\n", + "fluidic\n", + "fluidics\n", + "fluidise\n", + "fluidised\n", + "fluidises\n", + "fluidising\n", + "fluidities\n", + "fluidity\n", + "fluidize\n", + "fluidized\n", + "fluidizes\n", + "fluidizing\n", + "fluidly\n", + "fluidounce\n", + "fluidounces\n", + "fluidram\n", + "fluidrams\n", + "fluids\n", + "fluke\n", + "fluked\n", + "flukes\n", + "flukey\n", + "flukier\n", + "flukiest\n", + "fluking\n", + "fluky\n", + "flume\n", + "flumed\n", + "flumes\n", + "fluming\n", + "flummeries\n", + "flummery\n", + "flummox\n", + "flummoxed\n", + "flummoxes\n", + "flummoxing\n", + "flump\n", + "flumped\n", + "flumping\n", + "flumps\n", + "flung\n", + "flunk\n", + "flunked\n", + "flunker\n", + "flunkers\n", + "flunkey\n", + "flunkeys\n", + "flunkies\n", + "flunking\n", + "flunks\n", + "flunky\n", + "fluor\n", + "fluorene\n", + "fluorenes\n", + "fluoresce\n", + "fluoresced\n", + "fluorescence\n", + "fluorescences\n", + "fluorescent\n", + "fluoresces\n", + "fluorescing\n", + "fluoric\n", + "fluorid\n", + "fluoridate\n", + "fluoridated\n", + "fluoridates\n", + "fluoridating\n", + "fluoridation\n", + "fluoridations\n", + "fluoride\n", + "fluorides\n", + "fluorids\n", + "fluorin\n", + "fluorine\n", + "fluorines\n", + "fluorins\n", + "fluorite\n", + "fluorites\n", + "fluorocarbon\n", + "fluorocarbons\n", + "fluoroscope\n", + "fluoroscopes\n", + "fluoroscopic\n", + "fluoroscopies\n", + "fluoroscopist\n", + "fluoroscopists\n", + "fluoroscopy\n", + "fluors\n", + "flurried\n", + "flurries\n", + "flurry\n", + "flurrying\n", + "flus\n", + "flush\n", + "flushed\n", + "flusher\n", + "flushers\n", + "flushes\n", + "flushest\n", + "flushing\n", + "fluster\n", + "flustered\n", + "flustering\n", + "flusters\n", + "flute\n", + "fluted\n", + "fluter\n", + "fluters\n", + "flutes\n", + "flutier\n", + "flutiest\n", + "fluting\n", + "flutings\n", + "flutist\n", + "flutists\n", + "flutter\n", + "fluttered\n", + "fluttering\n", + "flutters\n", + "fluttery\n", + "fluty\n", + "fluvial\n", + "flux\n", + "fluxed\n", + "fluxes\n", + "fluxing\n", + "fluxion\n", + "fluxions\n", + "fluyt\n", + "fluyts\n", + "fly\n", + "flyable\n", + "flyaway\n", + "flyaways\n", + "flybelt\n", + "flybelts\n", + "flyblew\n", + "flyblow\n", + "flyblowing\n", + "flyblown\n", + "flyblows\n", + "flyboat\n", + "flyboats\n", + "flyby\n", + "flybys\n", + "flyer\n", + "flyers\n", + "flying\n", + "flyings\n", + "flyleaf\n", + "flyleaves\n", + "flyman\n", + "flymen\n", + "flyover\n", + "flyovers\n", + "flypaper\n", + "flypapers\n", + "flypast\n", + "flypasts\n", + "flysch\n", + "flysches\n", + "flyspeck\n", + "flyspecked\n", + "flyspecking\n", + "flyspecks\n", + "flyte\n", + "flyted\n", + "flytes\n", + "flytier\n", + "flytiers\n", + "flyting\n", + "flytings\n", + "flytrap\n", + "flytraps\n", + "flyway\n", + "flyways\n", + "flywheel\n", + "flywheels\n", + "foal\n", + "foaled\n", + "foaling\n", + "foals\n", + "foam\n", + "foamed\n", + "foamer\n", + "foamers\n", + "foamier\n", + "foamiest\n", + "foamily\n", + "foaming\n", + "foamless\n", + "foamlike\n", + "foams\n", + "foamy\n", + "fob\n", + "fobbed\n", + "fobbing\n", + "fobs\n", + "focal\n", + "focalise\n", + "focalised\n", + "focalises\n", + "focalising\n", + "focalize\n", + "focalized\n", + "focalizes\n", + "focalizing\n", + "focally\n", + "foci\n", + "focus\n", + "focused\n", + "focuser\n", + "focusers\n", + "focuses\n", + "focusing\n", + "focussed\n", + "focusses\n", + "focussing\n", + "fodder\n", + "foddered\n", + "foddering\n", + "fodders\n", + "fodgel\n", + "foe\n", + "foehn\n", + "foehns\n", + "foeman\n", + "foemen\n", + "foes\n", + "foetal\n", + "foetid\n", + "foetor\n", + "foetors\n", + "foetus\n", + "foetuses\n", + "fog\n", + "fogbound\n", + "fogbow\n", + "fogbows\n", + "fogdog\n", + "fogdogs\n", + "fogey\n", + "fogeys\n", + "fogfruit\n", + "fogfruits\n", + "foggage\n", + "foggages\n", + "fogged\n", + "fogger\n", + "foggers\n", + "foggier\n", + "foggiest\n", + "foggily\n", + "fogging\n", + "foggy\n", + "foghorn\n", + "foghorns\n", + "fogie\n", + "fogies\n", + "fogless\n", + "fogs\n", + "fogy\n", + "fogyish\n", + "fogyism\n", + "fogyisms\n", + "foh\n", + "fohn\n", + "fohns\n", + "foible\n", + "foibles\n", + "foil\n", + "foilable\n", + "foiled\n", + "foiling\n", + "foils\n", + "foilsman\n", + "foilsmen\n", + "foin\n", + "foined\n", + "foining\n", + "foins\n", + "foison\n", + "foisons\n", + "foist\n", + "foisted\n", + "foisting\n", + "foists\n", + "folacin\n", + "folacins\n", + "folate\n", + "folates\n", + "fold\n", + "foldable\n", + "foldaway\n", + "foldboat\n", + "foldboats\n", + "folded\n", + "folder\n", + "folderol\n", + "folderols\n", + "folders\n", + "folding\n", + "foldout\n", + "foldouts\n", + "folds\n", + "folia\n", + "foliage\n", + "foliaged\n", + "foliages\n", + "foliar\n", + "foliate\n", + "foliated\n", + "foliates\n", + "foliating\n", + "folic\n", + "folio\n", + "folioed\n", + "folioing\n", + "folios\n", + "foliose\n", + "folious\n", + "folium\n", + "foliums\n", + "folk\n", + "folkish\n", + "folklike\n", + "folklore\n", + "folklores\n", + "folklorist\n", + "folklorists\n", + "folkmoot\n", + "folkmoots\n", + "folkmot\n", + "folkmote\n", + "folkmotes\n", + "folkmots\n", + "folks\n", + "folksier\n", + "folksiest\n", + "folksily\n", + "folksy\n", + "folktale\n", + "folktales\n", + "folkway\n", + "folkways\n", + "folles\n", + "follicle\n", + "follicles\n", + "follies\n", + "follis\n", + "follow\n", + "followed\n", + "follower\n", + "followers\n", + "following\n", + "followings\n", + "follows\n", + "folly\n", + "foment\n", + "fomentation\n", + "fomentations\n", + "fomented\n", + "fomenter\n", + "fomenters\n", + "fomenting\n", + "foments\n", + "fon\n", + "fond\n", + "fondant\n", + "fondants\n", + "fonded\n", + "fonder\n", + "fondest\n", + "fonding\n", + "fondle\n", + "fondled\n", + "fondler\n", + "fondlers\n", + "fondles\n", + "fondling\n", + "fondlings\n", + "fondly\n", + "fondness\n", + "fondnesses\n", + "fonds\n", + "fondu\n", + "fondue\n", + "fondues\n", + "fondus\n", + "fons\n", + "font\n", + "fontal\n", + "fontanel\n", + "fontanels\n", + "fontina\n", + "fontinas\n", + "fonts\n", + "food\n", + "foodless\n", + "foods\n", + "foofaraw\n", + "foofaraws\n", + "fool\n", + "fooled\n", + "fooleries\n", + "foolery\n", + "foolfish\n", + "foolfishes\n", + "foolhardiness\n", + "foolhardinesses\n", + "foolhardy\n", + "fooling\n", + "foolish\n", + "foolisher\n", + "foolishest\n", + "foolishness\n", + "foolishnesses\n", + "foolproof\n", + "fools\n", + "foolscap\n", + "foolscaps\n", + "foot\n", + "footage\n", + "footages\n", + "football\n", + "footballs\n", + "footbath\n", + "footbaths\n", + "footboy\n", + "footboys\n", + "footbridge\n", + "footbridges\n", + "footed\n", + "footer\n", + "footers\n", + "footfall\n", + "footfalls\n", + "footgear\n", + "footgears\n", + "foothill\n", + "foothills\n", + "foothold\n", + "footholds\n", + "footier\n", + "footiest\n", + "footing\n", + "footings\n", + "footle\n", + "footled\n", + "footler\n", + "footlers\n", + "footles\n", + "footless\n", + "footlight\n", + "footlights\n", + "footlike\n", + "footling\n", + "footlocker\n", + "footlockers\n", + "footloose\n", + "footman\n", + "footmark\n", + "footmarks\n", + "footmen\n", + "footnote\n", + "footnoted\n", + "footnotes\n", + "footnoting\n", + "footpace\n", + "footpaces\n", + "footpad\n", + "footpads\n", + "footpath\n", + "footpaths\n", + "footprint\n", + "footprints\n", + "footrace\n", + "footraces\n", + "footrest\n", + "footrests\n", + "footrope\n", + "footropes\n", + "foots\n", + "footsie\n", + "footsies\n", + "footslog\n", + "footslogged\n", + "footslogging\n", + "footslogs\n", + "footsore\n", + "footstep\n", + "footsteps\n", + "footstool\n", + "footstools\n", + "footwall\n", + "footwalls\n", + "footway\n", + "footways\n", + "footwear\n", + "footwears\n", + "footwork\n", + "footworks\n", + "footworn\n", + "footy\n", + "foozle\n", + "foozled\n", + "foozler\n", + "foozlers\n", + "foozles\n", + "foozling\n", + "fop\n", + "fopped\n", + "fopperies\n", + "foppery\n", + "fopping\n", + "foppish\n", + "fops\n", + "for\n", + "fora\n", + "forage\n", + "foraged\n", + "forager\n", + "foragers\n", + "forages\n", + "foraging\n", + "foram\n", + "foramen\n", + "foramens\n", + "foramina\n", + "forams\n", + "foray\n", + "forayed\n", + "forayer\n", + "forayers\n", + "foraying\n", + "forays\n", + "forb\n", + "forbad\n", + "forbade\n", + "forbear\n", + "forbearance\n", + "forbearances\n", + "forbearing\n", + "forbears\n", + "forbid\n", + "forbidal\n", + "forbidals\n", + "forbidden\n", + "forbidding\n", + "forbids\n", + "forbode\n", + "forboded\n", + "forbodes\n", + "forboding\n", + "forbore\n", + "forborne\n", + "forbs\n", + "forby\n", + "forbye\n", + "force\n", + "forced\n", + "forcedly\n", + "forceful\n", + "forcefully\n", + "forceps\n", + "forcer\n", + "forcers\n", + "forces\n", + "forcible\n", + "forcibly\n", + "forcing\n", + "forcipes\n", + "ford\n", + "fordable\n", + "forded\n", + "fordid\n", + "fording\n", + "fordless\n", + "fordo\n", + "fordoes\n", + "fordoing\n", + "fordone\n", + "fords\n", + "fore\n", + "forearm\n", + "forearmed\n", + "forearming\n", + "forearms\n", + "forebay\n", + "forebays\n", + "forebear\n", + "forebears\n", + "forebode\n", + "foreboded\n", + "forebodes\n", + "forebodies\n", + "foreboding\n", + "forebodings\n", + "forebody\n", + "foreboom\n", + "forebooms\n", + "foreby\n", + "forebye\n", + "forecast\n", + "forecasted\n", + "forecaster\n", + "forecasters\n", + "forecasting\n", + "forecastle\n", + "forecastles\n", + "forecasts\n", + "foreclose\n", + "foreclosed\n", + "forecloses\n", + "foreclosing\n", + "foreclosure\n", + "foreclosures\n", + "foredate\n", + "foredated\n", + "foredates\n", + "foredating\n", + "foredeck\n", + "foredecks\n", + "foredid\n", + "foredo\n", + "foredoes\n", + "foredoing\n", + "foredone\n", + "foredoom\n", + "foredoomed\n", + "foredooming\n", + "foredooms\n", + "foreface\n", + "forefaces\n", + "forefather\n", + "forefathers\n", + "forefeel\n", + "forefeeling\n", + "forefeels\n", + "forefeet\n", + "forefelt\n", + "forefend\n", + "forefended\n", + "forefending\n", + "forefends\n", + "forefinger\n", + "forefingers\n", + "forefoot\n", + "forefront\n", + "forefronts\n", + "foregather\n", + "foregathered\n", + "foregathering\n", + "foregathers\n", + "forego\n", + "foregoer\n", + "foregoers\n", + "foregoes\n", + "foregoing\n", + "foregone\n", + "foreground\n", + "foregrounds\n", + "foregut\n", + "foreguts\n", + "forehand\n", + "forehands\n", + "forehead\n", + "foreheads\n", + "forehoof\n", + "forehoofs\n", + "forehooves\n", + "foreign\n", + "foreigner\n", + "foreigners\n", + "foreknew\n", + "foreknow\n", + "foreknowing\n", + "foreknowledge\n", + "foreknowledges\n", + "foreknown\n", + "foreknows\n", + "foreladies\n", + "forelady\n", + "foreland\n", + "forelands\n", + "foreleg\n", + "forelegs\n", + "forelimb\n", + "forelimbs\n", + "forelock\n", + "forelocks\n", + "foreman\n", + "foremast\n", + "foremasts\n", + "foremen\n", + "foremilk\n", + "foremilks\n", + "foremost\n", + "forename\n", + "forenames\n", + "forenoon\n", + "forenoons\n", + "forensic\n", + "forensics\n", + "foreordain\n", + "foreordained\n", + "foreordaining\n", + "foreordains\n", + "forepart\n", + "foreparts\n", + "forepast\n", + "forepaw\n", + "forepaws\n", + "forepeak\n", + "forepeaks\n", + "foreplay\n", + "foreplays\n", + "forequarter\n", + "forequarters\n", + "foreran\n", + "forerank\n", + "foreranks\n", + "forerun\n", + "forerunner\n", + "forerunners\n", + "forerunning\n", + "foreruns\n", + "fores\n", + "foresaid\n", + "foresail\n", + "foresails\n", + "foresaw\n", + "foresee\n", + "foreseeable\n", + "foreseeing\n", + "foreseen\n", + "foreseer\n", + "foreseers\n", + "foresees\n", + "foreshadow\n", + "foreshadowed\n", + "foreshadowing\n", + "foreshadows\n", + "foreshow\n", + "foreshowed\n", + "foreshowing\n", + "foreshown\n", + "foreshows\n", + "foreside\n", + "foresides\n", + "foresight\n", + "foresighted\n", + "foresightedness\n", + "foresightednesses\n", + "foresights\n", + "foreskin\n", + "foreskins\n", + "forest\n", + "forestal\n", + "forestall\n", + "forestalled\n", + "forestalling\n", + "forestalls\n", + "forestay\n", + "forestays\n", + "forested\n", + "forester\n", + "foresters\n", + "foresting\n", + "forestland\n", + "forestlands\n", + "forestries\n", + "forestry\n", + "forests\n", + "foreswear\n", + "foresweared\n", + "foreswearing\n", + "foreswears\n", + "foretaste\n", + "foretasted\n", + "foretastes\n", + "foretasting\n", + "foretell\n", + "foretelling\n", + "foretells\n", + "forethought\n", + "forethoughts\n", + "foretime\n", + "foretimes\n", + "foretold\n", + "foretop\n", + "foretops\n", + "forever\n", + "forevermore\n", + "forevers\n", + "forewarn\n", + "forewarned\n", + "forewarning\n", + "forewarns\n", + "forewent\n", + "forewing\n", + "forewings\n", + "foreword\n", + "forewords\n", + "foreworn\n", + "foreyard\n", + "foreyards\n", + "forfeit\n", + "forfeited\n", + "forfeiting\n", + "forfeits\n", + "forfeiture\n", + "forfeitures\n", + "forfend\n", + "forfended\n", + "forfending\n", + "forfends\n", + "forgat\n", + "forgather\n", + "forgathered\n", + "forgathering\n", + "forgathers\n", + "forgave\n", + "forge\n", + "forged\n", + "forger\n", + "forgeries\n", + "forgers\n", + "forgery\n", + "forges\n", + "forget\n", + "forgetful\n", + "forgetfully\n", + "forgets\n", + "forgetting\n", + "forging\n", + "forgings\n", + "forgivable\n", + "forgive\n", + "forgiven\n", + "forgiveness\n", + "forgivenesses\n", + "forgiver\n", + "forgivers\n", + "forgives\n", + "forgiving\n", + "forgo\n", + "forgoer\n", + "forgoers\n", + "forgoes\n", + "forgoing\n", + "forgone\n", + "forgot\n", + "forgotten\n", + "forint\n", + "forints\n", + "forjudge\n", + "forjudged\n", + "forjudges\n", + "forjudging\n", + "fork\n", + "forked\n", + "forkedly\n", + "forker\n", + "forkers\n", + "forkful\n", + "forkfuls\n", + "forkier\n", + "forkiest\n", + "forking\n", + "forkless\n", + "forklift\n", + "forklifts\n", + "forklike\n", + "forks\n", + "forksful\n", + "forky\n", + "forlorn\n", + "forlorner\n", + "forlornest\n", + "form\n", + "formable\n", + "formal\n", + "formaldehyde\n", + "formaldehydes\n", + "formalin\n", + "formalins\n", + "formalities\n", + "formality\n", + "formalize\n", + "formalized\n", + "formalizes\n", + "formalizing\n", + "formally\n", + "formals\n", + "formant\n", + "formants\n", + "format\n", + "formate\n", + "formates\n", + "formation\n", + "formations\n", + "formative\n", + "formats\n", + "formatted\n", + "formatting\n", + "forme\n", + "formed\n", + "formee\n", + "former\n", + "formerly\n", + "formers\n", + "formes\n", + "formful\n", + "formic\n", + "formidable\n", + "formidably\n", + "forming\n", + "formless\n", + "formol\n", + "formols\n", + "forms\n", + "formula\n", + "formulae\n", + "formulas\n", + "formulate\n", + "formulated\n", + "formulates\n", + "formulating\n", + "formulation\n", + "formulations\n", + "formyl\n", + "formyls\n", + "fornical\n", + "fornicate\n", + "fornicated\n", + "fornicates\n", + "fornicating\n", + "fornication\n", + "fornicator\n", + "fornicators\n", + "fornices\n", + "fornix\n", + "forrader\n", + "forrit\n", + "forsake\n", + "forsaken\n", + "forsaker\n", + "forsakers\n", + "forsakes\n", + "forsaking\n", + "forsook\n", + "forsooth\n", + "forspent\n", + "forswear\n", + "forswearing\n", + "forswears\n", + "forswore\n", + "forsworn\n", + "forsythia\n", + "forsythias\n", + "fort\n", + "forte\n", + "fortes\n", + "forth\n", + "forthcoming\n", + "forthright\n", + "forthrightness\n", + "forthrightnesses\n", + "forthwith\n", + "forties\n", + "fortieth\n", + "fortieths\n", + "fortification\n", + "fortifications\n", + "fortified\n", + "fortifies\n", + "fortify\n", + "fortifying\n", + "fortis\n", + "fortitude\n", + "fortitudes\n", + "fortnight\n", + "fortnightly\n", + "fortnights\n", + "fortress\n", + "fortressed\n", + "fortresses\n", + "fortressing\n", + "forts\n", + "fortuities\n", + "fortuitous\n", + "fortuity\n", + "fortunate\n", + "fortunately\n", + "fortune\n", + "fortuned\n", + "fortunes\n", + "fortuning\n", + "forty\n", + "forum\n", + "forums\n", + "forward\n", + "forwarded\n", + "forwarder\n", + "forwardest\n", + "forwarding\n", + "forwardness\n", + "forwardnesses\n", + "forwards\n", + "forwent\n", + "forwhy\n", + "forworn\n", + "forzando\n", + "forzandos\n", + "foss\n", + "fossa\n", + "fossae\n", + "fossate\n", + "fosse\n", + "fosses\n", + "fossette\n", + "fossettes\n", + "fossick\n", + "fossicked\n", + "fossicking\n", + "fossicks\n", + "fossil\n", + "fossilize\n", + "fossilized\n", + "fossilizes\n", + "fossilizing\n", + "fossils\n", + "foster\n", + "fostered\n", + "fosterer\n", + "fosterers\n", + "fostering\n", + "fosters\n", + "fou\n", + "fought\n", + "foughten\n", + "foul\n", + "foulard\n", + "foulards\n", + "fouled\n", + "fouler\n", + "foulest\n", + "fouling\n", + "foulings\n", + "foully\n", + "foulmouthed\n", + "foulness\n", + "foulnesses\n", + "fouls\n", + "found\n", + "foundation\n", + "foundational\n", + "foundations\n", + "founded\n", + "founder\n", + "foundered\n", + "foundering\n", + "founders\n", + "founding\n", + "foundling\n", + "foundlings\n", + "foundries\n", + "foundry\n", + "founds\n", + "fount\n", + "fountain\n", + "fountained\n", + "fountaining\n", + "fountains\n", + "founts\n", + "four\n", + "fourchee\n", + "fourfold\n", + "fourgon\n", + "fourgons\n", + "fours\n", + "fourscore\n", + "foursome\n", + "foursomes\n", + "fourteen\n", + "fourteens\n", + "fourteenth\n", + "fourteenths\n", + "fourth\n", + "fourthly\n", + "fourths\n", + "fovea\n", + "foveae\n", + "foveal\n", + "foveate\n", + "foveated\n", + "foveola\n", + "foveolae\n", + "foveolar\n", + "foveolas\n", + "foveole\n", + "foveoles\n", + "foveolet\n", + "foveolets\n", + "fowl\n", + "fowled\n", + "fowler\n", + "fowlers\n", + "fowling\n", + "fowlings\n", + "fowlpox\n", + "fowlpoxes\n", + "fowls\n", + "fox\n", + "foxed\n", + "foxes\n", + "foxfire\n", + "foxfires\n", + "foxfish\n", + "foxfishes\n", + "foxglove\n", + "foxgloves\n", + "foxhole\n", + "foxholes\n", + "foxhound\n", + "foxhounds\n", + "foxier\n", + "foxiest\n", + "foxily\n", + "foxiness\n", + "foxinesses\n", + "foxing\n", + "foxings\n", + "foxlike\n", + "foxskin\n", + "foxskins\n", + "foxtail\n", + "foxtails\n", + "foxy\n", + "foy\n", + "foyer\n", + "foyers\n", + "foys\n", + "fozier\n", + "foziest\n", + "foziness\n", + "fozinesses\n", + "fozy\n", + "fracas\n", + "fracases\n", + "fracted\n", + "fraction\n", + "fractional\n", + "fractionally\n", + "fractionated\n", + "fractioned\n", + "fractioning\n", + "fractions\n", + "fractur\n", + "fracture\n", + "fractured\n", + "fractures\n", + "fracturing\n", + "fracturs\n", + "frae\n", + "fraena\n", + "fraenum\n", + "fraenums\n", + "frag\n", + "fragged\n", + "fragging\n", + "fraggings\n", + "fragile\n", + "fragilities\n", + "fragility\n", + "fragment\n", + "fragmentary\n", + "fragmentation\n", + "fragmentations\n", + "fragmented\n", + "fragmenting\n", + "fragments\n", + "fragrant\n", + "fragrantly\n", + "frags\n", + "frail\n", + "frailer\n", + "frailest\n", + "frailly\n", + "frails\n", + "frailties\n", + "frailty\n", + "fraise\n", + "fraises\n", + "fraktur\n", + "frakturs\n", + "framable\n", + "frame\n", + "framed\n", + "framer\n", + "framers\n", + "frames\n", + "framework\n", + "frameworks\n", + "framing\n", + "franc\n", + "franchise\n", + "franchisee\n", + "franchisees\n", + "franchises\n", + "francium\n", + "franciums\n", + "francs\n", + "frangibilities\n", + "frangibility\n", + "frangible\n", + "frank\n", + "franked\n", + "franker\n", + "frankers\n", + "frankest\n", + "frankfort\n", + "frankforter\n", + "frankforters\n", + "frankforts\n", + "frankfurt\n", + "frankfurter\n", + "frankfurters\n", + "frankfurts\n", + "frankincense\n", + "frankincenses\n", + "franking\n", + "franklin\n", + "franklins\n", + "frankly\n", + "frankness\n", + "franknesses\n", + "franks\n", + "frantic\n", + "frantically\n", + "franticly\n", + "frap\n", + "frappe\n", + "frapped\n", + "frappes\n", + "frapping\n", + "fraps\n", + "frat\n", + "frater\n", + "fraternal\n", + "fraternally\n", + "fraternities\n", + "fraternity\n", + "fraternization\n", + "fraternizations\n", + "fraternize\n", + "fraternized\n", + "fraternizes\n", + "fraternizing\n", + "fraters\n", + "fratricidal\n", + "fratricide\n", + "fratricides\n", + "frats\n", + "fraud\n", + "frauds\n", + "fraudulent\n", + "fraudulently\n", + "fraught\n", + "fraughted\n", + "fraughting\n", + "fraughts\n", + "fraulein\n", + "frauleins\n", + "fray\n", + "frayed\n", + "fraying\n", + "frayings\n", + "frays\n", + "frazzle\n", + "frazzled\n", + "frazzles\n", + "frazzling\n", + "freak\n", + "freaked\n", + "freakier\n", + "freakiest\n", + "freakily\n", + "freaking\n", + "freakish\n", + "freakout\n", + "freakouts\n", + "freaks\n", + "freaky\n", + "freckle\n", + "freckled\n", + "freckles\n", + "frecklier\n", + "freckliest\n", + "freckling\n", + "freckly\n", + "free\n", + "freebee\n", + "freebees\n", + "freebie\n", + "freebies\n", + "freeboot\n", + "freebooted\n", + "freebooter\n", + "freebooters\n", + "freebooting\n", + "freeboots\n", + "freeborn\n", + "freed\n", + "freedman\n", + "freedmen\n", + "freedom\n", + "freedoms\n", + "freeform\n", + "freehand\n", + "freehold\n", + "freeholds\n", + "freeing\n", + "freeload\n", + "freeloaded\n", + "freeloader\n", + "freeloaders\n", + "freeloading\n", + "freeloads\n", + "freely\n", + "freeman\n", + "freemen\n", + "freeness\n", + "freenesses\n", + "freer\n", + "freers\n", + "frees\n", + "freesia\n", + "freesias\n", + "freest\n", + "freestanding\n", + "freeway\n", + "freeways\n", + "freewill\n", + "freeze\n", + "freezer\n", + "freezers\n", + "freezes\n", + "freezing\n", + "freight\n", + "freighted\n", + "freighter\n", + "freighters\n", + "freighting\n", + "freights\n", + "fremd\n", + "fremitus\n", + "fremituses\n", + "frena\n", + "french\n", + "frenched\n", + "frenches\n", + "frenching\n", + "frenetic\n", + "frenetically\n", + "frenetics\n", + "frenula\n", + "frenulum\n", + "frenum\n", + "frenums\n", + "frenzied\n", + "frenzies\n", + "frenzily\n", + "frenzy\n", + "frenzying\n", + "frequencies\n", + "frequency\n", + "frequent\n", + "frequented\n", + "frequenter\n", + "frequenters\n", + "frequentest\n", + "frequenting\n", + "frequently\n", + "frequents\n", + "frere\n", + "freres\n", + "fresco\n", + "frescoed\n", + "frescoer\n", + "frescoers\n", + "frescoes\n", + "frescoing\n", + "frescos\n", + "fresh\n", + "freshed\n", + "freshen\n", + "freshened\n", + "freshening\n", + "freshens\n", + "fresher\n", + "freshes\n", + "freshest\n", + "freshet\n", + "freshets\n", + "freshing\n", + "freshly\n", + "freshman\n", + "freshmen\n", + "freshness\n", + "freshnesses\n", + "freshwater\n", + "fresnel\n", + "fresnels\n", + "fret\n", + "fretful\n", + "fretfully\n", + "fretfulness\n", + "fretfulnesses\n", + "fretless\n", + "frets\n", + "fretsaw\n", + "fretsaws\n", + "fretsome\n", + "fretted\n", + "frettier\n", + "frettiest\n", + "fretting\n", + "fretty\n", + "fretwork\n", + "fretworks\n", + "friable\n", + "friar\n", + "friaries\n", + "friarly\n", + "friars\n", + "friary\n", + "fribble\n", + "fribbled\n", + "fribbler\n", + "fribblers\n", + "fribbles\n", + "fribbling\n", + "fricando\n", + "fricandoes\n", + "fricassee\n", + "fricassees\n", + "friction\n", + "frictional\n", + "frictions\n", + "fridge\n", + "fridges\n", + "fried\n", + "friend\n", + "friended\n", + "friending\n", + "friendless\n", + "friendlier\n", + "friendlies\n", + "friendliest\n", + "friendliness\n", + "friendlinesses\n", + "friendly\n", + "friends\n", + "friendship\n", + "friendships\n", + "frier\n", + "friers\n", + "fries\n", + "frieze\n", + "friezes\n", + "frig\n", + "frigate\n", + "frigates\n", + "frigged\n", + "frigging\n", + "fright\n", + "frighted\n", + "frighten\n", + "frightened\n", + "frightening\n", + "frightens\n", + "frightful\n", + "frightfully\n", + "frightfulness\n", + "frightfulnesses\n", + "frighting\n", + "frights\n", + "frigid\n", + "frigidities\n", + "frigidity\n", + "frigidly\n", + "frigs\n", + "frijol\n", + "frijole\n", + "frijoles\n", + "frill\n", + "frilled\n", + "friller\n", + "frillers\n", + "frillier\n", + "frilliest\n", + "frilling\n", + "frillings\n", + "frills\n", + "frilly\n", + "fringe\n", + "fringed\n", + "fringes\n", + "fringier\n", + "fringiest\n", + "fringing\n", + "fringy\n", + "fripperies\n", + "frippery\n", + "frise\n", + "frises\n", + "frisette\n", + "frisettes\n", + "friseur\n", + "friseurs\n", + "frisk\n", + "frisked\n", + "frisker\n", + "friskers\n", + "frisket\n", + "friskets\n", + "friskier\n", + "friskiest\n", + "friskily\n", + "friskiness\n", + "friskinesses\n", + "frisking\n", + "frisks\n", + "frisky\n", + "frisson\n", + "frissons\n", + "frit\n", + "frith\n", + "friths\n", + "frits\n", + "fritt\n", + "fritted\n", + "fritter\n", + "frittered\n", + "frittering\n", + "fritters\n", + "fritting\n", + "fritts\n", + "frivol\n", + "frivoled\n", + "frivoler\n", + "frivolers\n", + "frivoling\n", + "frivolities\n", + "frivolity\n", + "frivolled\n", + "frivolling\n", + "frivolous\n", + "frivolously\n", + "frivols\n", + "friz\n", + "frized\n", + "frizer\n", + "frizers\n", + "frizes\n", + "frizette\n", + "frizettes\n", + "frizing\n", + "frizz\n", + "frizzed\n", + "frizzer\n", + "frizzers\n", + "frizzes\n", + "frizzier\n", + "frizziest\n", + "frizzily\n", + "frizzing\n", + "frizzle\n", + "frizzled\n", + "frizzler\n", + "frizzlers\n", + "frizzles\n", + "frizzlier\n", + "frizzliest\n", + "frizzling\n", + "frizzly\n", + "frizzy\n", + "fro\n", + "frock\n", + "frocked\n", + "frocking\n", + "frocks\n", + "froe\n", + "froes\n", + "frog\n", + "frogeye\n", + "frogeyed\n", + "frogeyes\n", + "frogfish\n", + "frogfishes\n", + "frogged\n", + "froggier\n", + "froggiest\n", + "frogging\n", + "froggy\n", + "froglike\n", + "frogman\n", + "frogmen\n", + "frogs\n", + "frolic\n", + "frolicked\n", + "frolicking\n", + "frolicky\n", + "frolics\n", + "frolicsome\n", + "from\n", + "fromage\n", + "fromages\n", + "fromenties\n", + "fromenty\n", + "frond\n", + "fronded\n", + "frondeur\n", + "frondeurs\n", + "frondose\n", + "fronds\n", + "frons\n", + "front\n", + "frontage\n", + "frontages\n", + "frontal\n", + "frontals\n", + "fronted\n", + "fronter\n", + "frontes\n", + "frontier\n", + "frontiers\n", + "frontiersman\n", + "frontiersmen\n", + "fronting\n", + "frontispiece\n", + "frontispieces\n", + "frontlet\n", + "frontlets\n", + "fronton\n", + "frontons\n", + "fronts\n", + "frore\n", + "frosh\n", + "frost\n", + "frostbit\n", + "frostbite\n", + "frostbites\n", + "frostbitten\n", + "frosted\n", + "frosteds\n", + "frostier\n", + "frostiest\n", + "frostily\n", + "frosting\n", + "frostings\n", + "frosts\n", + "frosty\n", + "froth\n", + "frothed\n", + "frothier\n", + "frothiest\n", + "frothily\n", + "frothing\n", + "froths\n", + "frothy\n", + "frottage\n", + "frottages\n", + "frotteur\n", + "frotteurs\n", + "froufrou\n", + "froufrous\n", + "frounce\n", + "frounced\n", + "frounces\n", + "frouncing\n", + "frouzier\n", + "frouziest\n", + "frouzy\n", + "frow\n", + "froward\n", + "frown\n", + "frowned\n", + "frowner\n", + "frowners\n", + "frowning\n", + "frowns\n", + "frows\n", + "frowsier\n", + "frowsiest\n", + "frowstier\n", + "frowstiest\n", + "frowsty\n", + "frowsy\n", + "frowzier\n", + "frowziest\n", + "frowzily\n", + "frowzy\n", + "froze\n", + "frozen\n", + "frozenly\n", + "fructified\n", + "fructifies\n", + "fructify\n", + "fructifying\n", + "fructose\n", + "fructoses\n", + "frug\n", + "frugal\n", + "frugalities\n", + "frugality\n", + "frugally\n", + "frugged\n", + "frugging\n", + "frugs\n", + "fruit\n", + "fruitage\n", + "fruitages\n", + "fruitcake\n", + "fruitcakes\n", + "fruited\n", + "fruiter\n", + "fruiters\n", + "fruitful\n", + "fruitfuller\n", + "fruitfullest\n", + "fruitfulness\n", + "fruitfulnesses\n", + "fruitier\n", + "fruitiest\n", + "fruiting\n", + "fruition\n", + "fruitions\n", + "fruitless\n", + "fruitlet\n", + "fruitlets\n", + "fruits\n", + "fruity\n", + "frumenties\n", + "frumenty\n", + "frump\n", + "frumpier\n", + "frumpiest\n", + "frumpily\n", + "frumpish\n", + "frumps\n", + "frumpy\n", + "frusta\n", + "frustrate\n", + "frustrated\n", + "frustrates\n", + "frustrating\n", + "frustratingly\n", + "frustration\n", + "frustrations\n", + "frustule\n", + "frustules\n", + "frustum\n", + "frustums\n", + "fry\n", + "fryer\n", + "fryers\n", + "frying\n", + "frypan\n", + "frypans\n", + "fub\n", + "fubbed\n", + "fubbing\n", + "fubs\n", + "fubsier\n", + "fubsiest\n", + "fubsy\n", + "fuchsia\n", + "fuchsias\n", + "fuchsin\n", + "fuchsine\n", + "fuchsines\n", + "fuchsins\n", + "fuci\n", + "fucoid\n", + "fucoidal\n", + "fucoids\n", + "fucose\n", + "fucoses\n", + "fucous\n", + "fucus\n", + "fucuses\n", + "fud\n", + "fuddle\n", + "fuddled\n", + "fuddles\n", + "fuddling\n", + "fudge\n", + "fudged\n", + "fudges\n", + "fudging\n", + "fuds\n", + "fuehrer\n", + "fuehrers\n", + "fuel\n", + "fueled\n", + "fueler\n", + "fuelers\n", + "fueling\n", + "fuelled\n", + "fueller\n", + "fuellers\n", + "fuelling\n", + "fuels\n", + "fug\n", + "fugacities\n", + "fugacity\n", + "fugal\n", + "fugally\n", + "fugato\n", + "fugatos\n", + "fugged\n", + "fuggier\n", + "fuggiest\n", + "fugging\n", + "fuggy\n", + "fugio\n", + "fugios\n", + "fugitive\n", + "fugitives\n", + "fugle\n", + "fugled\n", + "fugleman\n", + "fuglemen\n", + "fugles\n", + "fugling\n", + "fugs\n", + "fugue\n", + "fugued\n", + "fugues\n", + "fuguing\n", + "fuguist\n", + "fuguists\n", + "fuhrer\n", + "fuhrers\n", + "fuji\n", + "fujis\n", + "fulcra\n", + "fulcrum\n", + "fulcrums\n", + "fulfil\n", + "fulfill\n", + "fulfilled\n", + "fulfilling\n", + "fulfillment\n", + "fulfillments\n", + "fulfills\n", + "fulfils\n", + "fulgent\n", + "fulgid\n", + "fulham\n", + "fulhams\n", + "full\n", + "fullam\n", + "fullams\n", + "fullback\n", + "fullbacks\n", + "fulled\n", + "fuller\n", + "fullered\n", + "fulleries\n", + "fullering\n", + "fullers\n", + "fullery\n", + "fullest\n", + "fullface\n", + "fullfaces\n", + "fulling\n", + "fullness\n", + "fullnesses\n", + "fulls\n", + "fully\n", + "fulmar\n", + "fulmars\n", + "fulmine\n", + "fulmined\n", + "fulmines\n", + "fulminic\n", + "fulmining\n", + "fulness\n", + "fulnesses\n", + "fulsome\n", + "fulvous\n", + "fumarase\n", + "fumarases\n", + "fumarate\n", + "fumarates\n", + "fumaric\n", + "fumarole\n", + "fumaroles\n", + "fumatories\n", + "fumatory\n", + "fumble\n", + "fumbled\n", + "fumbler\n", + "fumblers\n", + "fumbles\n", + "fumbling\n", + "fume\n", + "fumed\n", + "fumeless\n", + "fumelike\n", + "fumer\n", + "fumers\n", + "fumes\n", + "fumet\n", + "fumets\n", + "fumette\n", + "fumettes\n", + "fumier\n", + "fumiest\n", + "fumigant\n", + "fumigants\n", + "fumigate\n", + "fumigated\n", + "fumigates\n", + "fumigating\n", + "fumigation\n", + "fumigations\n", + "fuming\n", + "fumitories\n", + "fumitory\n", + "fumuli\n", + "fumulus\n", + "fumy\n", + "fun\n", + "function\n", + "functional\n", + "functionally\n", + "functionaries\n", + "functionary\n", + "functioned\n", + "functioning\n", + "functionless\n", + "functions\n", + "functor\n", + "functors\n", + "fund\n", + "fundamental\n", + "fundamentally\n", + "fundamentals\n", + "funded\n", + "fundi\n", + "fundic\n", + "funding\n", + "funds\n", + "fundus\n", + "funeral\n", + "funerals\n", + "funerary\n", + "funereal\n", + "funest\n", + "funfair\n", + "funfairs\n", + "fungal\n", + "fungals\n", + "fungi\n", + "fungible\n", + "fungibles\n", + "fungic\n", + "fungicidal\n", + "fungicide\n", + "fungicides\n", + "fungo\n", + "fungoes\n", + "fungoid\n", + "fungoids\n", + "fungous\n", + "fungus\n", + "funguses\n", + "funicle\n", + "funicles\n", + "funiculi\n", + "funk\n", + "funked\n", + "funker\n", + "funkers\n", + "funkia\n", + "funkias\n", + "funkier\n", + "funkiest\n", + "funking\n", + "funks\n", + "funky\n", + "funned\n", + "funnel\n", + "funneled\n", + "funneling\n", + "funnelled\n", + "funnelling\n", + "funnels\n", + "funnier\n", + "funnies\n", + "funniest\n", + "funnily\n", + "funning\n", + "funny\n", + "funnyman\n", + "funnymen\n", + "funs\n", + "fur\n", + "furan\n", + "furane\n", + "furanes\n", + "furanose\n", + "furanoses\n", + "furans\n", + "furbelow\n", + "furbelowed\n", + "furbelowing\n", + "furbelows\n", + "furbish\n", + "furbished\n", + "furbishes\n", + "furbishing\n", + "furcate\n", + "furcated\n", + "furcates\n", + "furcating\n", + "furcraea\n", + "furcraeas\n", + "furcula\n", + "furculae\n", + "furcular\n", + "furculum\n", + "furfur\n", + "furfural\n", + "furfurals\n", + "furfuran\n", + "furfurans\n", + "furfures\n", + "furibund\n", + "furies\n", + "furioso\n", + "furious\n", + "furiously\n", + "furl\n", + "furlable\n", + "furled\n", + "furler\n", + "furlers\n", + "furless\n", + "furling\n", + "furlong\n", + "furlongs\n", + "furlough\n", + "furloughed\n", + "furloughing\n", + "furloughs\n", + "furls\n", + "furmenties\n", + "furmenty\n", + "furmeties\n", + "furmety\n", + "furmities\n", + "furmity\n", + "furnace\n", + "furnaced\n", + "furnaces\n", + "furnacing\n", + "furnish\n", + "furnished\n", + "furnishes\n", + "furnishing\n", + "furnishings\n", + "furniture\n", + "furnitures\n", + "furor\n", + "furore\n", + "furores\n", + "furors\n", + "furred\n", + "furrier\n", + "furrieries\n", + "furriers\n", + "furriery\n", + "furriest\n", + "furrily\n", + "furriner\n", + "furriners\n", + "furring\n", + "furrings\n", + "furrow\n", + "furrowed\n", + "furrower\n", + "furrowers\n", + "furrowing\n", + "furrows\n", + "furrowy\n", + "furry\n", + "furs\n", + "further\n", + "furthered\n", + "furthering\n", + "furthermore\n", + "furthermost\n", + "furthers\n", + "furthest\n", + "furtive\n", + "furtively\n", + "furtiveness\n", + "furtivenesses\n", + "furuncle\n", + "furuncles\n", + "fury\n", + "furze\n", + "furzes\n", + "furzier\n", + "furziest\n", + "furzy\n", + "fusain\n", + "fusains\n", + "fuscous\n", + "fuse\n", + "fused\n", + "fusee\n", + "fusees\n", + "fusel\n", + "fuselage\n", + "fuselages\n", + "fuseless\n", + "fusels\n", + "fuses\n", + "fusible\n", + "fusibly\n", + "fusiform\n", + "fusil\n", + "fusile\n", + "fusileer\n", + "fusileers\n", + "fusilier\n", + "fusiliers\n", + "fusillade\n", + "fusillades\n", + "fusils\n", + "fusing\n", + "fusion\n", + "fusions\n", + "fuss\n", + "fussbudget\n", + "fussbudgets\n", + "fussed\n", + "fusser\n", + "fussers\n", + "fusses\n", + "fussier\n", + "fussiest\n", + "fussily\n", + "fussiness\n", + "fussinesses\n", + "fussing\n", + "fusspot\n", + "fusspots\n", + "fussy\n", + "fustian\n", + "fustians\n", + "fustic\n", + "fustics\n", + "fustier\n", + "fustiest\n", + "fustily\n", + "fusty\n", + "futharc\n", + "futharcs\n", + "futhark\n", + "futharks\n", + "futhorc\n", + "futhorcs\n", + "futhork\n", + "futhorks\n", + "futile\n", + "futilely\n", + "futilities\n", + "futility\n", + "futtock\n", + "futtocks\n", + "futural\n", + "future\n", + "futures\n", + "futurism\n", + "futurisms\n", + "futurist\n", + "futuristic\n", + "futurists\n", + "futurities\n", + "futurity\n", + "fuze\n", + "fuzed\n", + "fuzee\n", + "fuzees\n", + "fuzes\n", + "fuzil\n", + "fuzils\n", + "fuzing\n", + "fuzz\n", + "fuzzed\n", + "fuzzes\n", + "fuzzier\n", + "fuzziest\n", + "fuzzily\n", + "fuzziness\n", + "fuzzinesses\n", + "fuzzing\n", + "fuzzy\n", + "fyce\n", + "fyces\n", + "fyke\n", + "fykes\n", + "fylfot\n", + "fylfots\n", + "fytte\n", + "fyttes\n", + "gab\n", + "gabardine\n", + "gabardines\n", + "gabbard\n", + "gabbards\n", + "gabbart\n", + "gabbarts\n", + "gabbed\n", + "gabber\n", + "gabbers\n", + "gabbier\n", + "gabbiest\n", + "gabbing\n", + "gabble\n", + "gabbled\n", + "gabbler\n", + "gabblers\n", + "gabbles\n", + "gabbling\n", + "gabbro\n", + "gabbroic\n", + "gabbroid\n", + "gabbros\n", + "gabby\n", + "gabelle\n", + "gabelled\n", + "gabelles\n", + "gabfest\n", + "gabfests\n", + "gabies\n", + "gabion\n", + "gabions\n", + "gable\n", + "gabled\n", + "gables\n", + "gabling\n", + "gaboon\n", + "gaboons\n", + "gabs\n", + "gaby\n", + "gad\n", + "gadabout\n", + "gadabouts\n", + "gadarene\n", + "gadded\n", + "gadder\n", + "gadders\n", + "gaddi\n", + "gadding\n", + "gaddis\n", + "gadflies\n", + "gadfly\n", + "gadget\n", + "gadgetries\n", + "gadgetry\n", + "gadgets\n", + "gadgety\n", + "gadi\n", + "gadid\n", + "gadids\n", + "gadis\n", + "gadoid\n", + "gadoids\n", + "gadroon\n", + "gadroons\n", + "gads\n", + "gadwall\n", + "gadwalls\n", + "gadzooks\n", + "gae\n", + "gaed\n", + "gaen\n", + "gaes\n", + "gaff\n", + "gaffe\n", + "gaffed\n", + "gaffer\n", + "gaffers\n", + "gaffes\n", + "gaffing\n", + "gaffs\n", + "gag\n", + "gaga\n", + "gage\n", + "gaged\n", + "gager\n", + "gagers\n", + "gages\n", + "gagged\n", + "gagger\n", + "gaggers\n", + "gagging\n", + "gaggle\n", + "gaggled\n", + "gaggles\n", + "gaggling\n", + "gaging\n", + "gagman\n", + "gagmen\n", + "gags\n", + "gagster\n", + "gagsters\n", + "gahnite\n", + "gahnites\n", + "gaieties\n", + "gaiety\n", + "gaily\n", + "gain\n", + "gainable\n", + "gained\n", + "gainer\n", + "gainers\n", + "gainful\n", + "gainfully\n", + "gaining\n", + "gainless\n", + "gainlier\n", + "gainliest\n", + "gainly\n", + "gains\n", + "gainsaid\n", + "gainsay\n", + "gainsayer\n", + "gainsayers\n", + "gainsaying\n", + "gainsays\n", + "gainst\n", + "gait\n", + "gaited\n", + "gaiter\n", + "gaiters\n", + "gaiting\n", + "gaits\n", + "gal\n", + "gala\n", + "galactic\n", + "galactorrhea\n", + "galago\n", + "galagos\n", + "galah\n", + "galahs\n", + "galangal\n", + "galangals\n", + "galas\n", + "galatea\n", + "galateas\n", + "galavant\n", + "galavanted\n", + "galavanting\n", + "galavants\n", + "galax\n", + "galaxes\n", + "galaxies\n", + "galaxy\n", + "galbanum\n", + "galbanums\n", + "gale\n", + "galea\n", + "galeae\n", + "galeas\n", + "galeate\n", + "galeated\n", + "galena\n", + "galenas\n", + "galenic\n", + "galenite\n", + "galenites\n", + "galere\n", + "galeres\n", + "gales\n", + "galilee\n", + "galilees\n", + "galiot\n", + "galiots\n", + "galipot\n", + "galipots\n", + "galivant\n", + "galivanted\n", + "galivanting\n", + "galivants\n", + "gall\n", + "gallant\n", + "gallanted\n", + "gallanting\n", + "gallantly\n", + "gallantries\n", + "gallantry\n", + "gallants\n", + "gallate\n", + "gallates\n", + "gallbladder\n", + "gallbladders\n", + "galleass\n", + "galleasses\n", + "galled\n", + "gallein\n", + "galleins\n", + "galleon\n", + "galleons\n", + "galleried\n", + "galleries\n", + "gallery\n", + "gallerying\n", + "galleta\n", + "galletas\n", + "galley\n", + "galleys\n", + "gallflies\n", + "gallfly\n", + "galliard\n", + "galliards\n", + "galliass\n", + "galliasses\n", + "gallic\n", + "gallican\n", + "gallied\n", + "gallies\n", + "galling\n", + "galliot\n", + "galliots\n", + "gallipot\n", + "gallipots\n", + "gallium\n", + "galliums\n", + "gallivant\n", + "gallivanted\n", + "gallivanting\n", + "gallivants\n", + "gallnut\n", + "gallnuts\n", + "gallon\n", + "gallons\n", + "galloon\n", + "galloons\n", + "galloot\n", + "galloots\n", + "gallop\n", + "galloped\n", + "galloper\n", + "gallopers\n", + "galloping\n", + "gallops\n", + "gallous\n", + "gallows\n", + "gallowses\n", + "galls\n", + "gallstone\n", + "gallstones\n", + "gallus\n", + "gallused\n", + "galluses\n", + "gally\n", + "gallying\n", + "galoot\n", + "galoots\n", + "galop\n", + "galopade\n", + "galopades\n", + "galops\n", + "galore\n", + "galores\n", + "galosh\n", + "galoshe\n", + "galoshed\n", + "galoshes\n", + "gals\n", + "galumph\n", + "galumphed\n", + "galumphing\n", + "galumphs\n", + "galvanic\n", + "galvanization\n", + "galvanizations\n", + "galvanize\n", + "galvanized\n", + "galvanizer\n", + "galvanizers\n", + "galvanizes\n", + "galvanizing\n", + "galyac\n", + "galyacs\n", + "galyak\n", + "galyaks\n", + "gam\n", + "gamashes\n", + "gamb\n", + "gamba\n", + "gambade\n", + "gambades\n", + "gambado\n", + "gambadoes\n", + "gambados\n", + "gambas\n", + "gambe\n", + "gambes\n", + "gambeson\n", + "gambesons\n", + "gambia\n", + "gambias\n", + "gambier\n", + "gambiers\n", + "gambir\n", + "gambirs\n", + "gambit\n", + "gambits\n", + "gamble\n", + "gambled\n", + "gambler\n", + "gamblers\n", + "gambles\n", + "gambling\n", + "gamboge\n", + "gamboges\n", + "gambol\n", + "gamboled\n", + "gamboling\n", + "gambolled\n", + "gambolling\n", + "gambols\n", + "gambrel\n", + "gambrels\n", + "gambs\n", + "gambusia\n", + "gambusias\n", + "game\n", + "gamecock\n", + "gamecocks\n", + "gamed\n", + "gamekeeper\n", + "gamekeepers\n", + "gamelan\n", + "gamelans\n", + "gamelike\n", + "gamely\n", + "gameness\n", + "gamenesses\n", + "gamer\n", + "games\n", + "gamesome\n", + "gamest\n", + "gamester\n", + "gamesters\n", + "gamete\n", + "gametes\n", + "gametic\n", + "gamey\n", + "gamic\n", + "gamier\n", + "gamiest\n", + "gamily\n", + "gamin\n", + "gamine\n", + "gamines\n", + "gaminess\n", + "gaminesses\n", + "gaming\n", + "gamings\n", + "gamins\n", + "gamma\n", + "gammadia\n", + "gammas\n", + "gammed\n", + "gammer\n", + "gammers\n", + "gamming\n", + "gammon\n", + "gammoned\n", + "gammoner\n", + "gammoners\n", + "gammoning\n", + "gammons\n", + "gamodeme\n", + "gamodemes\n", + "gamp\n", + "gamps\n", + "gams\n", + "gamut\n", + "gamuts\n", + "gamy\n", + "gan\n", + "gander\n", + "gandered\n", + "gandering\n", + "ganders\n", + "gane\n", + "ganef\n", + "ganefs\n", + "ganev\n", + "ganevs\n", + "gang\n", + "ganged\n", + "ganger\n", + "gangers\n", + "ganging\n", + "gangland\n", + "ganglands\n", + "ganglia\n", + "ganglial\n", + "gangliar\n", + "ganglier\n", + "gangliest\n", + "gangling\n", + "ganglion\n", + "ganglionic\n", + "ganglions\n", + "gangly\n", + "gangplank\n", + "gangplanks\n", + "gangplow\n", + "gangplows\n", + "gangrel\n", + "gangrels\n", + "gangrene\n", + "gangrened\n", + "gangrenes\n", + "gangrening\n", + "gangrenous\n", + "gangs\n", + "gangster\n", + "gangsters\n", + "gangue\n", + "gangues\n", + "gangway\n", + "gangways\n", + "ganister\n", + "ganisters\n", + "ganja\n", + "ganjas\n", + "gannet\n", + "gannets\n", + "ganof\n", + "ganofs\n", + "ganoid\n", + "ganoids\n", + "gantlet\n", + "gantleted\n", + "gantleting\n", + "gantlets\n", + "gantline\n", + "gantlines\n", + "gantlope\n", + "gantlopes\n", + "gantries\n", + "gantry\n", + "ganymede\n", + "ganymedes\n", + "gaol\n", + "gaoled\n", + "gaoler\n", + "gaolers\n", + "gaoling\n", + "gaols\n", + "gap\n", + "gape\n", + "gaped\n", + "gaper\n", + "gapers\n", + "gapes\n", + "gapeseed\n", + "gapeseeds\n", + "gapeworm\n", + "gapeworms\n", + "gaping\n", + "gapingly\n", + "gaposis\n", + "gaposises\n", + "gapped\n", + "gappier\n", + "gappiest\n", + "gapping\n", + "gappy\n", + "gaps\n", + "gapy\n", + "gar\n", + "garage\n", + "garaged\n", + "garages\n", + "garaging\n", + "garb\n", + "garbage\n", + "garbages\n", + "garbanzo\n", + "garbanzos\n", + "garbed\n", + "garbing\n", + "garble\n", + "garbled\n", + "garbler\n", + "garblers\n", + "garbles\n", + "garbless\n", + "garbling\n", + "garboard\n", + "garboards\n", + "garboil\n", + "garboils\n", + "garbs\n", + "garcon\n", + "garcons\n", + "gardant\n", + "garden\n", + "gardened\n", + "gardener\n", + "gardeners\n", + "gardenia\n", + "gardenias\n", + "gardening\n", + "gardens\n", + "gardyloo\n", + "garfish\n", + "garfishes\n", + "garganey\n", + "garganeys\n", + "gargantuan\n", + "garget\n", + "gargets\n", + "gargety\n", + "gargle\n", + "gargled\n", + "gargler\n", + "garglers\n", + "gargles\n", + "gargling\n", + "gargoyle\n", + "gargoyles\n", + "garish\n", + "garishly\n", + "garland\n", + "garlanded\n", + "garlanding\n", + "garlands\n", + "garlic\n", + "garlicky\n", + "garlics\n", + "garment\n", + "garmented\n", + "garmenting\n", + "garments\n", + "garner\n", + "garnered\n", + "garnering\n", + "garners\n", + "garnet\n", + "garnets\n", + "garnish\n", + "garnished\n", + "garnishee\n", + "garnisheed\n", + "garnishees\n", + "garnisheing\n", + "garnishes\n", + "garnishing\n", + "garnishment\n", + "garnishments\n", + "garote\n", + "garoted\n", + "garotes\n", + "garoting\n", + "garotte\n", + "garotted\n", + "garotter\n", + "garotters\n", + "garottes\n", + "garotting\n", + "garpike\n", + "garpikes\n", + "garred\n", + "garret\n", + "garrets\n", + "garring\n", + "garrison\n", + "garrisoned\n", + "garrisoning\n", + "garrisons\n", + "garron\n", + "garrons\n", + "garrote\n", + "garroted\n", + "garroter\n", + "garroters\n", + "garrotes\n", + "garroting\n", + "garrotte\n", + "garrotted\n", + "garrottes\n", + "garrotting\n", + "garrulities\n", + "garrulity\n", + "garrulous\n", + "garrulously\n", + "garrulousness\n", + "garrulousnesses\n", + "gars\n", + "garter\n", + "gartered\n", + "gartering\n", + "garters\n", + "garth\n", + "garths\n", + "garvey\n", + "garveys\n", + "gas\n", + "gasalier\n", + "gasaliers\n", + "gasbag\n", + "gasbags\n", + "gascon\n", + "gascons\n", + "gaselier\n", + "gaseliers\n", + "gaseous\n", + "gases\n", + "gash\n", + "gashed\n", + "gasher\n", + "gashes\n", + "gashest\n", + "gashing\n", + "gashouse\n", + "gashouses\n", + "gasified\n", + "gasifier\n", + "gasifiers\n", + "gasifies\n", + "gasiform\n", + "gasify\n", + "gasifying\n", + "gasket\n", + "gaskets\n", + "gaskin\n", + "gasking\n", + "gaskings\n", + "gaskins\n", + "gasless\n", + "gaslight\n", + "gaslights\n", + "gaslit\n", + "gasman\n", + "gasmen\n", + "gasogene\n", + "gasogenes\n", + "gasolene\n", + "gasolenes\n", + "gasolier\n", + "gasoliers\n", + "gasoline\n", + "gasolines\n", + "gasp\n", + "gasped\n", + "gasper\n", + "gaspers\n", + "gasping\n", + "gasps\n", + "gassed\n", + "gasser\n", + "gassers\n", + "gasses\n", + "gassier\n", + "gassiest\n", + "gassing\n", + "gassings\n", + "gassy\n", + "gast\n", + "gasted\n", + "gastight\n", + "gasting\n", + "gastness\n", + "gastnesses\n", + "gastraea\n", + "gastraeas\n", + "gastral\n", + "gastrea\n", + "gastreas\n", + "gastric\n", + "gastrin\n", + "gastrins\n", + "gastronomic\n", + "gastronomical\n", + "gastronomies\n", + "gastronomy\n", + "gastrula\n", + "gastrulae\n", + "gastrulas\n", + "gasts\n", + "gasworks\n", + "gat\n", + "gate\n", + "gated\n", + "gatefold\n", + "gatefolds\n", + "gatekeeper\n", + "gatekeepers\n", + "gateless\n", + "gatelike\n", + "gateman\n", + "gatemen\n", + "gatepost\n", + "gateposts\n", + "gates\n", + "gateway\n", + "gateways\n", + "gather\n", + "gathered\n", + "gatherer\n", + "gatherers\n", + "gathering\n", + "gatherings\n", + "gathers\n", + "gating\n", + "gats\n", + "gauche\n", + "gauchely\n", + "gaucher\n", + "gauchest\n", + "gaucho\n", + "gauchos\n", + "gaud\n", + "gauderies\n", + "gaudery\n", + "gaudier\n", + "gaudies\n", + "gaudiest\n", + "gaudily\n", + "gaudiness\n", + "gaudinesses\n", + "gauds\n", + "gaudy\n", + "gauffer\n", + "gauffered\n", + "gauffering\n", + "gauffers\n", + "gauge\n", + "gauged\n", + "gauger\n", + "gaugers\n", + "gauges\n", + "gauging\n", + "gault\n", + "gaults\n", + "gaum\n", + "gaumed\n", + "gauming\n", + "gaums\n", + "gaun\n", + "gaunt\n", + "gaunter\n", + "gauntest\n", + "gauntlet\n", + "gauntleted\n", + "gauntleting\n", + "gauntlets\n", + "gauntly\n", + "gauntness\n", + "gauntnesses\n", + "gauntries\n", + "gauntry\n", + "gaur\n", + "gaurs\n", + "gauss\n", + "gausses\n", + "gauze\n", + "gauzes\n", + "gauzier\n", + "gauziest\n", + "gauzy\n", + "gavage\n", + "gavages\n", + "gave\n", + "gavel\n", + "gaveled\n", + "gaveling\n", + "gavelled\n", + "gavelling\n", + "gavelock\n", + "gavelocks\n", + "gavels\n", + "gavial\n", + "gavials\n", + "gavot\n", + "gavots\n", + "gavotte\n", + "gavotted\n", + "gavottes\n", + "gavotting\n", + "gawk\n", + "gawked\n", + "gawker\n", + "gawkers\n", + "gawkier\n", + "gawkies\n", + "gawkiest\n", + "gawkily\n", + "gawking\n", + "gawkish\n", + "gawks\n", + "gawky\n", + "gawsie\n", + "gawsy\n", + "gay\n", + "gayal\n", + "gayals\n", + "gayer\n", + "gayest\n", + "gayeties\n", + "gayety\n", + "gayly\n", + "gayness\n", + "gaynesses\n", + "gays\n", + "gaywing\n", + "gaywings\n", + "gazabo\n", + "gazaboes\n", + "gazabos\n", + "gaze\n", + "gazebo\n", + "gazeboes\n", + "gazebos\n", + "gazed\n", + "gazelle\n", + "gazelles\n", + "gazer\n", + "gazers\n", + "gazes\n", + "gazette\n", + "gazetted\n", + "gazetteer\n", + "gazetteers\n", + "gazettes\n", + "gazetting\n", + "gazing\n", + "gazogene\n", + "gazogenes\n", + "gazpacho\n", + "gazpachos\n", + "gear\n", + "gearbox\n", + "gearboxes\n", + "gearcase\n", + "gearcases\n", + "geared\n", + "gearing\n", + "gearings\n", + "gearless\n", + "gears\n", + "gearshift\n", + "gearshifts\n", + "geck\n", + "gecked\n", + "gecking\n", + "gecko\n", + "geckoes\n", + "geckos\n", + "gecks\n", + "ged\n", + "geds\n", + "gee\n", + "geed\n", + "geegaw\n", + "geegaws\n", + "geeing\n", + "geek\n", + "geeks\n", + "geepound\n", + "geepounds\n", + "gees\n", + "geese\n", + "geest\n", + "geests\n", + "geezer\n", + "geezers\n", + "geisha\n", + "geishas\n", + "gel\n", + "gelable\n", + "gelada\n", + "geladas\n", + "gelant\n", + "gelants\n", + "gelate\n", + "gelated\n", + "gelates\n", + "gelatin\n", + "gelatine\n", + "gelatines\n", + "gelating\n", + "gelatinous\n", + "gelatins\n", + "gelation\n", + "gelations\n", + "geld\n", + "gelded\n", + "gelder\n", + "gelders\n", + "gelding\n", + "geldings\n", + "gelds\n", + "gelee\n", + "gelees\n", + "gelid\n", + "gelidities\n", + "gelidity\n", + "gelidly\n", + "gellant\n", + "gellants\n", + "gelled\n", + "gelling\n", + "gels\n", + "gelsemia\n", + "gelt\n", + "gelts\n", + "gem\n", + "geminal\n", + "geminate\n", + "geminated\n", + "geminates\n", + "geminating\n", + "gemlike\n", + "gemma\n", + "gemmae\n", + "gemmate\n", + "gemmated\n", + "gemmates\n", + "gemmating\n", + "gemmed\n", + "gemmier\n", + "gemmiest\n", + "gemmily\n", + "gemming\n", + "gemmule\n", + "gemmules\n", + "gemmy\n", + "gemologies\n", + "gemology\n", + "gemot\n", + "gemote\n", + "gemotes\n", + "gemots\n", + "gems\n", + "gemsbok\n", + "gemsboks\n", + "gemsbuck\n", + "gemsbucks\n", + "gemstone\n", + "gemstones\n", + "gendarme\n", + "gendarmes\n", + "gender\n", + "gendered\n", + "gendering\n", + "genders\n", + "gene\n", + "geneological\n", + "geneologically\n", + "geneologist\n", + "geneologists\n", + "geneology\n", + "genera\n", + "general\n", + "generalities\n", + "generality\n", + "generalizability\n", + "generalization\n", + "generalizations\n", + "generalize\n", + "generalized\n", + "generalizes\n", + "generalizing\n", + "generally\n", + "generals\n", + "generate\n", + "generated\n", + "generates\n", + "generating\n", + "generation\n", + "generations\n", + "generative\n", + "generator\n", + "generators\n", + "generic\n", + "generics\n", + "generosities\n", + "generosity\n", + "generous\n", + "generously\n", + "generousness\n", + "generousnesses\n", + "genes\n", + "geneses\n", + "genesis\n", + "genet\n", + "genetic\n", + "genetically\n", + "geneticist\n", + "geneticists\n", + "genetics\n", + "genets\n", + "genette\n", + "genettes\n", + "geneva\n", + "genevas\n", + "genial\n", + "genialities\n", + "geniality\n", + "genially\n", + "genic\n", + "genie\n", + "genies\n", + "genii\n", + "genip\n", + "genipap\n", + "genipaps\n", + "genips\n", + "genital\n", + "genitalia\n", + "genitally\n", + "genitals\n", + "genitive\n", + "genitives\n", + "genitor\n", + "genitors\n", + "genitourinary\n", + "geniture\n", + "genitures\n", + "genius\n", + "geniuses\n", + "genoa\n", + "genoas\n", + "genocide\n", + "genocides\n", + "genom\n", + "genome\n", + "genomes\n", + "genomic\n", + "genoms\n", + "genotype\n", + "genotypes\n", + "genre\n", + "genres\n", + "genro\n", + "genros\n", + "gens\n", + "genseng\n", + "gensengs\n", + "gent\n", + "genteel\n", + "genteeler\n", + "genteelest\n", + "gentes\n", + "gentian\n", + "gentians\n", + "gentil\n", + "gentile\n", + "gentiles\n", + "gentilities\n", + "gentility\n", + "gentle\n", + "gentled\n", + "gentlefolk\n", + "gentleman\n", + "gentlemen\n", + "gentleness\n", + "gentlenesses\n", + "gentler\n", + "gentles\n", + "gentlest\n", + "gentlewoman\n", + "gentlewomen\n", + "gentling\n", + "gently\n", + "gentrice\n", + "gentrices\n", + "gentries\n", + "gentry\n", + "gents\n", + "genu\n", + "genua\n", + "genuflect\n", + "genuflected\n", + "genuflecting\n", + "genuflection\n", + "genuflections\n", + "genuflects\n", + "genuine\n", + "genuinely\n", + "genuineness\n", + "genuinenesses\n", + "genus\n", + "genuses\n", + "geode\n", + "geodes\n", + "geodesic\n", + "geodesics\n", + "geodesies\n", + "geodesy\n", + "geodetic\n", + "geodic\n", + "geoduck\n", + "geoducks\n", + "geognosies\n", + "geognosy\n", + "geographer\n", + "geographers\n", + "geographic\n", + "geographical\n", + "geographically\n", + "geographies\n", + "geography\n", + "geoid\n", + "geoidal\n", + "geoids\n", + "geologer\n", + "geologers\n", + "geologic\n", + "geological\n", + "geologies\n", + "geologist\n", + "geologists\n", + "geology\n", + "geomancies\n", + "geomancy\n", + "geometer\n", + "geometers\n", + "geometric\n", + "geometrical\n", + "geometries\n", + "geometry\n", + "geophagies\n", + "geophagy\n", + "geophone\n", + "geophones\n", + "geophysical\n", + "geophysicist\n", + "geophysicists\n", + "geophysics\n", + "geophyte\n", + "geophytes\n", + "geoponic\n", + "georgic\n", + "georgics\n", + "geotaxes\n", + "geotaxis\n", + "geothermal\n", + "geothermic\n", + "gerah\n", + "gerahs\n", + "geranial\n", + "geranials\n", + "geraniol\n", + "geraniols\n", + "geranium\n", + "geraniums\n", + "gerardia\n", + "gerardias\n", + "gerbera\n", + "gerberas\n", + "gerbil\n", + "gerbille\n", + "gerbilles\n", + "gerbils\n", + "gerent\n", + "gerents\n", + "gerenuk\n", + "gerenuks\n", + "geriatric\n", + "geriatrics\n", + "germ\n", + "german\n", + "germane\n", + "germanic\n", + "germanium\n", + "germaniums\n", + "germans\n", + "germen\n", + "germens\n", + "germfree\n", + "germicidal\n", + "germicide\n", + "germicides\n", + "germier\n", + "germiest\n", + "germina\n", + "germinal\n", + "germinate\n", + "germinated\n", + "germinates\n", + "germinating\n", + "germination\n", + "germinations\n", + "germs\n", + "germy\n", + "gerontic\n", + "gerrymander\n", + "gerrymandered\n", + "gerrymandering\n", + "gerrymanders\n", + "gerund\n", + "gerunds\n", + "gesso\n", + "gessoes\n", + "gest\n", + "gestalt\n", + "gestalten\n", + "gestalts\n", + "gestapo\n", + "gestapos\n", + "gestate\n", + "gestated\n", + "gestates\n", + "gestating\n", + "geste\n", + "gestes\n", + "gestic\n", + "gestical\n", + "gests\n", + "gestural\n", + "gesture\n", + "gestured\n", + "gesturer\n", + "gesturers\n", + "gestures\n", + "gesturing\n", + "gesundheit\n", + "get\n", + "getable\n", + "getaway\n", + "getaways\n", + "gets\n", + "gettable\n", + "getter\n", + "gettered\n", + "gettering\n", + "getters\n", + "getting\n", + "getup\n", + "getups\n", + "geum\n", + "geums\n", + "gewgaw\n", + "gewgaws\n", + "gey\n", + "geyser\n", + "geysers\n", + "gharri\n", + "gharries\n", + "gharris\n", + "gharry\n", + "ghast\n", + "ghastful\n", + "ghastlier\n", + "ghastliest\n", + "ghastly\n", + "ghat\n", + "ghats\n", + "ghaut\n", + "ghauts\n", + "ghazi\n", + "ghazies\n", + "ghazis\n", + "ghee\n", + "ghees\n", + "gherao\n", + "gheraoed\n", + "gheraoes\n", + "gheraoing\n", + "gherkin\n", + "gherkins\n", + "ghetto\n", + "ghettoed\n", + "ghettoes\n", + "ghettoing\n", + "ghettos\n", + "ghi\n", + "ghibli\n", + "ghiblis\n", + "ghillie\n", + "ghillies\n", + "ghis\n", + "ghost\n", + "ghosted\n", + "ghostier\n", + "ghostiest\n", + "ghosting\n", + "ghostlier\n", + "ghostliest\n", + "ghostly\n", + "ghosts\n", + "ghostwrite\n", + "ghostwriter\n", + "ghostwriters\n", + "ghostwrites\n", + "ghostwritten\n", + "ghostwrote\n", + "ghosty\n", + "ghoul\n", + "ghoulish\n", + "ghouls\n", + "ghyll\n", + "ghylls\n", + "giant\n", + "giantess\n", + "giantesses\n", + "giantism\n", + "giantisms\n", + "giants\n", + "giaour\n", + "giaours\n", + "gib\n", + "gibbed\n", + "gibber\n", + "gibbered\n", + "gibbering\n", + "gibberish\n", + "gibberishes\n", + "gibbers\n", + "gibbet\n", + "gibbeted\n", + "gibbeting\n", + "gibbets\n", + "gibbetted\n", + "gibbetting\n", + "gibbing\n", + "gibbon\n", + "gibbons\n", + "gibbose\n", + "gibbous\n", + "gibbsite\n", + "gibbsites\n", + "gibe\n", + "gibed\n", + "giber\n", + "gibers\n", + "gibes\n", + "gibing\n", + "gibingly\n", + "giblet\n", + "giblets\n", + "gibs\n", + "gid\n", + "giddap\n", + "giddied\n", + "giddier\n", + "giddies\n", + "giddiest\n", + "giddily\n", + "giddiness\n", + "giddinesses\n", + "giddy\n", + "giddying\n", + "gids\n", + "gie\n", + "gied\n", + "gieing\n", + "gien\n", + "gies\n", + "gift\n", + "gifted\n", + "giftedly\n", + "gifting\n", + "giftless\n", + "gifts\n", + "gig\n", + "giga\n", + "gigabit\n", + "gigabits\n", + "gigantic\n", + "gigas\n", + "gigaton\n", + "gigatons\n", + "gigawatt\n", + "gigawatts\n", + "gigged\n", + "gigging\n", + "giggle\n", + "giggled\n", + "giggler\n", + "gigglers\n", + "giggles\n", + "gigglier\n", + "giggliest\n", + "giggling\n", + "giggly\n", + "gighe\n", + "giglet\n", + "giglets\n", + "giglot\n", + "giglots\n", + "gigolo\n", + "gigolos\n", + "gigot\n", + "gigots\n", + "gigs\n", + "gigue\n", + "gigues\n", + "gilbert\n", + "gilberts\n", + "gild\n", + "gilded\n", + "gilder\n", + "gilders\n", + "gildhall\n", + "gildhalls\n", + "gilding\n", + "gildings\n", + "gilds\n", + "gill\n", + "gilled\n", + "giller\n", + "gillers\n", + "gillie\n", + "gillied\n", + "gillies\n", + "gilling\n", + "gillnet\n", + "gillnets\n", + "gillnetted\n", + "gillnetting\n", + "gills\n", + "gilly\n", + "gillying\n", + "gilt\n", + "gilthead\n", + "giltheads\n", + "gilts\n", + "gimbal\n", + "gimbaled\n", + "gimbaling\n", + "gimballed\n", + "gimballing\n", + "gimbals\n", + "gimcrack\n", + "gimcracks\n", + "gimel\n", + "gimels\n", + "gimlet\n", + "gimleted\n", + "gimleting\n", + "gimlets\n", + "gimmal\n", + "gimmals\n", + "gimmick\n", + "gimmicked\n", + "gimmicking\n", + "gimmicks\n", + "gimmicky\n", + "gimp\n", + "gimped\n", + "gimpier\n", + "gimpiest\n", + "gimping\n", + "gimps\n", + "gimpy\n", + "gin\n", + "gingal\n", + "gingall\n", + "gingalls\n", + "gingals\n", + "gingeley\n", + "gingeleys\n", + "gingeli\n", + "gingelies\n", + "gingelis\n", + "gingellies\n", + "gingelly\n", + "gingely\n", + "ginger\n", + "gingerbread\n", + "gingerbreads\n", + "gingered\n", + "gingering\n", + "gingerly\n", + "gingers\n", + "gingery\n", + "gingham\n", + "ginghams\n", + "gingili\n", + "gingilis\n", + "gingiva\n", + "gingivae\n", + "gingival\n", + "gingivitis\n", + "gingivitises\n", + "gingko\n", + "gingkoes\n", + "gink\n", + "ginkgo\n", + "ginkgoes\n", + "ginks\n", + "ginned\n", + "ginner\n", + "ginners\n", + "ginnier\n", + "ginniest\n", + "ginning\n", + "ginnings\n", + "ginny\n", + "gins\n", + "ginseng\n", + "ginsengs\n", + "gip\n", + "gipon\n", + "gipons\n", + "gipped\n", + "gipper\n", + "gippers\n", + "gipping\n", + "gips\n", + "gipsied\n", + "gipsies\n", + "gipsy\n", + "gipsying\n", + "giraffe\n", + "giraffes\n", + "girasol\n", + "girasole\n", + "girasoles\n", + "girasols\n", + "gird\n", + "girded\n", + "girder\n", + "girders\n", + "girding\n", + "girdle\n", + "girdled\n", + "girdler\n", + "girdlers\n", + "girdles\n", + "girdling\n", + "girds\n", + "girl\n", + "girlhood\n", + "girlhoods\n", + "girlie\n", + "girlies\n", + "girlish\n", + "girls\n", + "girly\n", + "girn\n", + "girned\n", + "girning\n", + "girns\n", + "giro\n", + "giron\n", + "girons\n", + "giros\n", + "girosol\n", + "girosols\n", + "girsh\n", + "girshes\n", + "girt\n", + "girted\n", + "girth\n", + "girthed\n", + "girthing\n", + "girths\n", + "girting\n", + "girts\n", + "gisarme\n", + "gisarmes\n", + "gismo\n", + "gismos\n", + "gist\n", + "gists\n", + "git\n", + "gitano\n", + "gitanos\n", + "gittern\n", + "gitterns\n", + "give\n", + "giveable\n", + "giveaway\n", + "giveaways\n", + "given\n", + "givens\n", + "giver\n", + "givers\n", + "gives\n", + "giving\n", + "gizmo\n", + "gizmos\n", + "gizzard\n", + "gizzards\n", + "gjetost\n", + "gjetosts\n", + "glabella\n", + "glabellae\n", + "glabrate\n", + "glabrous\n", + "glace\n", + "glaceed\n", + "glaceing\n", + "glaces\n", + "glacial\n", + "glacially\n", + "glaciate\n", + "glaciated\n", + "glaciates\n", + "glaciating\n", + "glacier\n", + "glaciers\n", + "glacis\n", + "glacises\n", + "glad\n", + "gladded\n", + "gladden\n", + "gladdened\n", + "gladdening\n", + "gladdens\n", + "gladder\n", + "gladdest\n", + "gladding\n", + "glade\n", + "glades\n", + "gladiate\n", + "gladiator\n", + "gladiatorial\n", + "gladiators\n", + "gladier\n", + "gladiest\n", + "gladiola\n", + "gladiolas\n", + "gladioli\n", + "gladiolus\n", + "gladlier\n", + "gladliest\n", + "gladly\n", + "gladness\n", + "gladnesses\n", + "glads\n", + "gladsome\n", + "gladsomer\n", + "gladsomest\n", + "glady\n", + "glaiket\n", + "glaikit\n", + "glair\n", + "glaire\n", + "glaired\n", + "glaires\n", + "glairier\n", + "glairiest\n", + "glairing\n", + "glairs\n", + "glairy\n", + "glaive\n", + "glaived\n", + "glaives\n", + "glamor\n", + "glamorize\n", + "glamorized\n", + "glamorizes\n", + "glamorizing\n", + "glamorous\n", + "glamors\n", + "glamour\n", + "glamoured\n", + "glamouring\n", + "glamours\n", + "glance\n", + "glanced\n", + "glances\n", + "glancing\n", + "gland\n", + "glanders\n", + "glandes\n", + "glands\n", + "glandular\n", + "glandule\n", + "glandules\n", + "glans\n", + "glare\n", + "glared\n", + "glares\n", + "glarier\n", + "glariest\n", + "glaring\n", + "glaringly\n", + "glary\n", + "glass\n", + "glassblower\n", + "glassblowers\n", + "glassblowing\n", + "glassblowings\n", + "glassed\n", + "glasses\n", + "glassful\n", + "glassfuls\n", + "glassie\n", + "glassier\n", + "glassies\n", + "glassiest\n", + "glassily\n", + "glassine\n", + "glassines\n", + "glassing\n", + "glassman\n", + "glassmen\n", + "glassware\n", + "glasswares\n", + "glassy\n", + "glaucoma\n", + "glaucomas\n", + "glaucous\n", + "glaze\n", + "glazed\n", + "glazer\n", + "glazers\n", + "glazes\n", + "glazier\n", + "glazieries\n", + "glaziers\n", + "glaziery\n", + "glaziest\n", + "glazing\n", + "glazings\n", + "glazy\n", + "gleam\n", + "gleamed\n", + "gleamier\n", + "gleamiest\n", + "gleaming\n", + "gleams\n", + "gleamy\n", + "glean\n", + "gleanable\n", + "gleaned\n", + "gleaner\n", + "gleaners\n", + "gleaning\n", + "gleanings\n", + "gleans\n", + "gleba\n", + "glebae\n", + "glebe\n", + "glebes\n", + "gled\n", + "glede\n", + "gledes\n", + "gleds\n", + "glee\n", + "gleed\n", + "gleeds\n", + "gleeful\n", + "gleek\n", + "gleeked\n", + "gleeking\n", + "gleeks\n", + "gleeman\n", + "gleemen\n", + "glees\n", + "gleesome\n", + "gleet\n", + "gleeted\n", + "gleetier\n", + "gleetiest\n", + "gleeting\n", + "gleets\n", + "gleety\n", + "gleg\n", + "glegly\n", + "glegness\n", + "glegnesses\n", + "glen\n", + "glenlike\n", + "glenoid\n", + "glens\n", + "gley\n", + "gleys\n", + "gliadin\n", + "gliadine\n", + "gliadines\n", + "gliadins\n", + "glial\n", + "glib\n", + "glibber\n", + "glibbest\n", + "glibly\n", + "glibness\n", + "glibnesses\n", + "glide\n", + "glided\n", + "glider\n", + "gliders\n", + "glides\n", + "gliding\n", + "gliff\n", + "gliffs\n", + "glim\n", + "glime\n", + "glimed\n", + "glimes\n", + "gliming\n", + "glimmer\n", + "glimmered\n", + "glimmering\n", + "glimmers\n", + "glimpse\n", + "glimpsed\n", + "glimpser\n", + "glimpsers\n", + "glimpses\n", + "glimpsing\n", + "glims\n", + "glint\n", + "glinted\n", + "glinting\n", + "glints\n", + "glioma\n", + "gliomas\n", + "gliomata\n", + "glissade\n", + "glissaded\n", + "glissades\n", + "glissading\n", + "glisten\n", + "glistened\n", + "glistening\n", + "glistens\n", + "glister\n", + "glistered\n", + "glistering\n", + "glisters\n", + "glitch\n", + "glitches\n", + "glitter\n", + "glittered\n", + "glittering\n", + "glitters\n", + "glittery\n", + "gloam\n", + "gloaming\n", + "gloamings\n", + "gloams\n", + "gloat\n", + "gloated\n", + "gloater\n", + "gloaters\n", + "gloating\n", + "gloats\n", + "glob\n", + "global\n", + "globally\n", + "globate\n", + "globated\n", + "globe\n", + "globed\n", + "globes\n", + "globin\n", + "globing\n", + "globins\n", + "globoid\n", + "globoids\n", + "globose\n", + "globous\n", + "globs\n", + "globular\n", + "globule\n", + "globules\n", + "globulin\n", + "globulins\n", + "glochid\n", + "glochids\n", + "glockenspiel\n", + "glockenspiels\n", + "glogg\n", + "gloggs\n", + "glom\n", + "glomera\n", + "glommed\n", + "glomming\n", + "gloms\n", + "glomus\n", + "gloom\n", + "gloomed\n", + "gloomful\n", + "gloomier\n", + "gloomiest\n", + "gloomily\n", + "gloominess\n", + "gloominesses\n", + "glooming\n", + "gloomings\n", + "glooms\n", + "gloomy\n", + "glop\n", + "glops\n", + "gloria\n", + "glorias\n", + "gloried\n", + "glories\n", + "glorification\n", + "glorifications\n", + "glorified\n", + "glorifies\n", + "glorify\n", + "glorifying\n", + "gloriole\n", + "glorioles\n", + "glorious\n", + "gloriously\n", + "glory\n", + "glorying\n", + "gloss\n", + "glossa\n", + "glossae\n", + "glossal\n", + "glossarial\n", + "glossaries\n", + "glossary\n", + "glossas\n", + "glossed\n", + "glosseme\n", + "glossemes\n", + "glosser\n", + "glossers\n", + "glosses\n", + "glossier\n", + "glossies\n", + "glossiest\n", + "glossily\n", + "glossina\n", + "glossinas\n", + "glossiness\n", + "glossinesses\n", + "glossing\n", + "glossy\n", + "glost\n", + "glosts\n", + "glottal\n", + "glottic\n", + "glottides\n", + "glottis\n", + "glottises\n", + "glout\n", + "glouted\n", + "glouting\n", + "glouts\n", + "glove\n", + "gloved\n", + "glover\n", + "glovers\n", + "gloves\n", + "gloving\n", + "glow\n", + "glowed\n", + "glower\n", + "glowered\n", + "glowering\n", + "glowers\n", + "glowflies\n", + "glowfly\n", + "glowing\n", + "glows\n", + "glowworm\n", + "glowworms\n", + "gloxinia\n", + "gloxinias\n", + "gloze\n", + "glozed\n", + "glozes\n", + "glozing\n", + "glucagon\n", + "glucagons\n", + "glucinic\n", + "glucinum\n", + "glucinums\n", + "glucose\n", + "glucoses\n", + "glucosic\n", + "glue\n", + "glued\n", + "glueing\n", + "gluelike\n", + "gluer\n", + "gluers\n", + "glues\n", + "gluey\n", + "gluier\n", + "gluiest\n", + "gluily\n", + "gluing\n", + "glum\n", + "glume\n", + "glumes\n", + "glumly\n", + "glummer\n", + "glummest\n", + "glumness\n", + "glumnesses\n", + "glumpier\n", + "glumpiest\n", + "glumpily\n", + "glumpy\n", + "glunch\n", + "glunched\n", + "glunches\n", + "glunching\n", + "glut\n", + "gluteal\n", + "glutei\n", + "glutelin\n", + "glutelins\n", + "gluten\n", + "glutens\n", + "gluteus\n", + "glutinous\n", + "gluts\n", + "glutted\n", + "glutting\n", + "glutton\n", + "gluttonies\n", + "gluttonous\n", + "gluttons\n", + "gluttony\n", + "glycan\n", + "glycans\n", + "glyceric\n", + "glycerin\n", + "glycerine\n", + "glycerines\n", + "glycerins\n", + "glycerol\n", + "glycerols\n", + "glyceryl\n", + "glyceryls\n", + "glycin\n", + "glycine\n", + "glycines\n", + "glycins\n", + "glycogen\n", + "glycogens\n", + "glycol\n", + "glycolic\n", + "glycols\n", + "glyconic\n", + "glyconics\n", + "glycosyl\n", + "glycosyls\n", + "glycyl\n", + "glycyls\n", + "glyph\n", + "glyphic\n", + "glyphs\n", + "glyptic\n", + "glyptics\n", + "gnar\n", + "gnarl\n", + "gnarled\n", + "gnarlier\n", + "gnarliest\n", + "gnarling\n", + "gnarls\n", + "gnarly\n", + "gnarr\n", + "gnarred\n", + "gnarring\n", + "gnarrs\n", + "gnars\n", + "gnash\n", + "gnashed\n", + "gnashes\n", + "gnashing\n", + "gnat\n", + "gnathal\n", + "gnathic\n", + "gnathion\n", + "gnathions\n", + "gnathite\n", + "gnathites\n", + "gnatlike\n", + "gnats\n", + "gnattier\n", + "gnattiest\n", + "gnatty\n", + "gnaw\n", + "gnawable\n", + "gnawed\n", + "gnawer\n", + "gnawers\n", + "gnawing\n", + "gnawings\n", + "gnawn\n", + "gnaws\n", + "gneiss\n", + "gneisses\n", + "gneissic\n", + "gnocchi\n", + "gnome\n", + "gnomes\n", + "gnomic\n", + "gnomical\n", + "gnomish\n", + "gnomist\n", + "gnomists\n", + "gnomon\n", + "gnomonic\n", + "gnomons\n", + "gnoses\n", + "gnosis\n", + "gnostic\n", + "gnu\n", + "gnus\n", + "go\n", + "goa\n", + "goad\n", + "goaded\n", + "goading\n", + "goadlike\n", + "goads\n", + "goal\n", + "goaled\n", + "goalie\n", + "goalies\n", + "goaling\n", + "goalkeeper\n", + "goalkeepers\n", + "goalless\n", + "goalpost\n", + "goalposts\n", + "goals\n", + "goas\n", + "goat\n", + "goatee\n", + "goateed\n", + "goatees\n", + "goatfish\n", + "goatfishes\n", + "goatherd\n", + "goatherds\n", + "goatish\n", + "goatlike\n", + "goats\n", + "goatskin\n", + "goatskins\n", + "gob\n", + "goban\n", + "gobang\n", + "gobangs\n", + "gobans\n", + "gobbed\n", + "gobbet\n", + "gobbets\n", + "gobbing\n", + "gobble\n", + "gobbled\n", + "gobbledegook\n", + "gobbledegooks\n", + "gobbledygook\n", + "gobbledygooks\n", + "gobbler\n", + "gobblers\n", + "gobbles\n", + "gobbling\n", + "gobies\n", + "gobioid\n", + "gobioids\n", + "goblet\n", + "goblets\n", + "goblin\n", + "goblins\n", + "gobo\n", + "goboes\n", + "gobonee\n", + "gobony\n", + "gobos\n", + "gobs\n", + "goby\n", + "god\n", + "godchild\n", + "godchildren\n", + "goddam\n", + "goddammed\n", + "goddamming\n", + "goddamn\n", + "goddamned\n", + "goddamning\n", + "goddamns\n", + "goddams\n", + "goddaughter\n", + "goddaughters\n", + "godded\n", + "goddess\n", + "goddesses\n", + "godding\n", + "godfather\n", + "godfathers\n", + "godhead\n", + "godheads\n", + "godhood\n", + "godhoods\n", + "godless\n", + "godlessness\n", + "godlessnesses\n", + "godlier\n", + "godliest\n", + "godlike\n", + "godlily\n", + "godling\n", + "godlings\n", + "godly\n", + "godmother\n", + "godmothers\n", + "godown\n", + "godowns\n", + "godparent\n", + "godparents\n", + "godroon\n", + "godroons\n", + "gods\n", + "godsend\n", + "godsends\n", + "godship\n", + "godships\n", + "godson\n", + "godsons\n", + "godwit\n", + "godwits\n", + "goer\n", + "goers\n", + "goes\n", + "goethite\n", + "goethites\n", + "goffer\n", + "goffered\n", + "goffering\n", + "goffers\n", + "goggle\n", + "goggled\n", + "goggler\n", + "gogglers\n", + "goggles\n", + "gogglier\n", + "goggliest\n", + "goggling\n", + "goggly\n", + "goglet\n", + "goglets\n", + "gogo\n", + "gogos\n", + "going\n", + "goings\n", + "goiter\n", + "goiters\n", + "goitre\n", + "goitres\n", + "goitrous\n", + "golconda\n", + "golcondas\n", + "gold\n", + "goldarn\n", + "goldarns\n", + "goldbrick\n", + "goldbricked\n", + "goldbricking\n", + "goldbricks\n", + "goldbug\n", + "goldbugs\n", + "golden\n", + "goldener\n", + "goldenest\n", + "goldenly\n", + "goldenrod\n", + "golder\n", + "goldest\n", + "goldeye\n", + "goldeyes\n", + "goldfinch\n", + "goldfinches\n", + "goldfish\n", + "goldfishes\n", + "golds\n", + "goldsmith\n", + "goldstein\n", + "goldurn\n", + "goldurns\n", + "golem\n", + "golems\n", + "golf\n", + "golfed\n", + "golfer\n", + "golfers\n", + "golfing\n", + "golfings\n", + "golfs\n", + "golgotha\n", + "golgothas\n", + "goliard\n", + "goliards\n", + "golliwog\n", + "golliwogs\n", + "golly\n", + "golosh\n", + "goloshes\n", + "gombo\n", + "gombos\n", + "gombroon\n", + "gombroons\n", + "gomeral\n", + "gomerals\n", + "gomerel\n", + "gomerels\n", + "gomeril\n", + "gomerils\n", + "gomuti\n", + "gomutis\n", + "gonad\n", + "gonadal\n", + "gonadial\n", + "gonadic\n", + "gonads\n", + "gondola\n", + "gondolas\n", + "gondolier\n", + "gondoliers\n", + "gone\n", + "goneness\n", + "gonenesses\n", + "goner\n", + "goners\n", + "gonfalon\n", + "gonfalons\n", + "gonfanon\n", + "gonfanons\n", + "gong\n", + "gonged\n", + "gonging\n", + "gonglike\n", + "gongs\n", + "gonia\n", + "gonidia\n", + "gonidial\n", + "gonidic\n", + "gonidium\n", + "gonif\n", + "gonifs\n", + "gonion\n", + "gonium\n", + "gonocyte\n", + "gonocytes\n", + "gonof\n", + "gonofs\n", + "gonoph\n", + "gonophs\n", + "gonopore\n", + "gonopores\n", + "gonorrhea\n", + "gonorrheal\n", + "gonorrheas\n", + "goo\n", + "goober\n", + "goobers\n", + "good\n", + "goodby\n", + "goodbye\n", + "goodbyes\n", + "goodbys\n", + "goodies\n", + "goodish\n", + "goodlier\n", + "goodliest\n", + "goodly\n", + "goodman\n", + "goodmen\n", + "goodness\n", + "goodnesses\n", + "goods\n", + "goodwife\n", + "goodwill\n", + "goodwills\n", + "goodwives\n", + "goody\n", + "gooey\n", + "goof\n", + "goofball\n", + "goofballs\n", + "goofed\n", + "goofier\n", + "goofiest\n", + "goofily\n", + "goofiness\n", + "goofinesses\n", + "goofing\n", + "goofs\n", + "goofy\n", + "googlies\n", + "googly\n", + "googol\n", + "googolplex\n", + "googolplexes\n", + "googols\n", + "gooier\n", + "gooiest\n", + "gook\n", + "gooks\n", + "gooky\n", + "goon\n", + "gooney\n", + "gooneys\n", + "goonie\n", + "goonies\n", + "goons\n", + "goony\n", + "goop\n", + "goops\n", + "gooral\n", + "goorals\n", + "goos\n", + "goose\n", + "gooseberries\n", + "gooseberry\n", + "goosed\n", + "gooseflesh\n", + "goosefleshes\n", + "gooses\n", + "goosey\n", + "goosier\n", + "goosiest\n", + "goosing\n", + "goosy\n", + "gopher\n", + "gophers\n", + "gor\n", + "goral\n", + "gorals\n", + "gorbellies\n", + "gorbelly\n", + "gorblimy\n", + "gorcock\n", + "gorcocks\n", + "gore\n", + "gored\n", + "gores\n", + "gorge\n", + "gorged\n", + "gorgedly\n", + "gorgeous\n", + "gorger\n", + "gorgerin\n", + "gorgerins\n", + "gorgers\n", + "gorges\n", + "gorget\n", + "gorgeted\n", + "gorgets\n", + "gorging\n", + "gorgon\n", + "gorgons\n", + "gorhen\n", + "gorhens\n", + "gorier\n", + "goriest\n", + "gorilla\n", + "gorillas\n", + "gorily\n", + "goriness\n", + "gorinesses\n", + "goring\n", + "gormand\n", + "gormands\n", + "gorse\n", + "gorses\n", + "gorsier\n", + "gorsiest\n", + "gorsy\n", + "gory\n", + "gosh\n", + "goshawk\n", + "goshawks\n", + "gosling\n", + "goslings\n", + "gospel\n", + "gospeler\n", + "gospelers\n", + "gospels\n", + "gosport\n", + "gosports\n", + "gossamer\n", + "gossamers\n", + "gossan\n", + "gossans\n", + "gossip\n", + "gossiped\n", + "gossiper\n", + "gossipers\n", + "gossiping\n", + "gossipped\n", + "gossipping\n", + "gossipries\n", + "gossipry\n", + "gossips\n", + "gossipy\n", + "gossoon\n", + "gossoons\n", + "gossypol\n", + "gossypols\n", + "got\n", + "gothic\n", + "gothics\n", + "gothite\n", + "gothites\n", + "gotten\n", + "gouache\n", + "gouaches\n", + "gouge\n", + "gouged\n", + "gouger\n", + "gougers\n", + "gouges\n", + "gouging\n", + "goulash\n", + "goulashes\n", + "gourami\n", + "gouramis\n", + "gourd\n", + "gourde\n", + "gourdes\n", + "gourds\n", + "gourmand\n", + "gourmands\n", + "gourmet\n", + "gourmets\n", + "gout\n", + "goutier\n", + "goutiest\n", + "goutily\n", + "gouts\n", + "gouty\n", + "govern\n", + "governed\n", + "governess\n", + "governesses\n", + "governing\n", + "government\n", + "governmental\n", + "governments\n", + "governor\n", + "governors\n", + "governorship\n", + "governorships\n", + "governs\n", + "gowan\n", + "gowaned\n", + "gowans\n", + "gowany\n", + "gowd\n", + "gowds\n", + "gowk\n", + "gowks\n", + "gown\n", + "gowned\n", + "gowning\n", + "gowns\n", + "gownsman\n", + "gownsmen\n", + "gox\n", + "goxes\n", + "goy\n", + "goyim\n", + "goyish\n", + "goys\n", + "graal\n", + "graals\n", + "grab\n", + "grabbed\n", + "grabber\n", + "grabbers\n", + "grabbier\n", + "grabbiest\n", + "grabbing\n", + "grabble\n", + "grabbled\n", + "grabbler\n", + "grabblers\n", + "grabbles\n", + "grabbling\n", + "grabby\n", + "graben\n", + "grabens\n", + "grabs\n", + "grace\n", + "graced\n", + "graceful\n", + "gracefuller\n", + "gracefullest\n", + "gracefully\n", + "gracefulness\n", + "gracefulnesses\n", + "graceless\n", + "graces\n", + "gracile\n", + "graciles\n", + "gracilis\n", + "gracing\n", + "gracioso\n", + "graciosos\n", + "gracious\n", + "graciously\n", + "graciousness\n", + "graciousnesses\n", + "grackle\n", + "grackles\n", + "grad\n", + "gradable\n", + "gradate\n", + "gradated\n", + "gradates\n", + "gradating\n", + "grade\n", + "graded\n", + "grader\n", + "graders\n", + "grades\n", + "gradient\n", + "gradients\n", + "gradin\n", + "gradine\n", + "gradines\n", + "grading\n", + "gradins\n", + "grads\n", + "gradual\n", + "gradually\n", + "graduals\n", + "graduand\n", + "graduands\n", + "graduate\n", + "graduated\n", + "graduates\n", + "graduating\n", + "graduation\n", + "graduations\n", + "gradus\n", + "graduses\n", + "graecize\n", + "graecized\n", + "graecizes\n", + "graecizing\n", + "graffiti\n", + "graffito\n", + "graft\n", + "graftage\n", + "graftages\n", + "grafted\n", + "grafter\n", + "grafters\n", + "grafting\n", + "grafts\n", + "graham\n", + "grail\n", + "grails\n", + "grain\n", + "grained\n", + "grainer\n", + "grainers\n", + "grainfield\n", + "grainfields\n", + "grainier\n", + "grainiest\n", + "graining\n", + "grains\n", + "grainy\n", + "gram\n", + "grama\n", + "gramaries\n", + "gramary\n", + "gramarye\n", + "gramaryes\n", + "gramas\n", + "gramercies\n", + "gramercy\n", + "grammar\n", + "grammarian\n", + "grammarians\n", + "grammars\n", + "grammatical\n", + "grammatically\n", + "gramme\n", + "grammes\n", + "gramp\n", + "gramps\n", + "grampus\n", + "grampuses\n", + "grams\n", + "grana\n", + "granaries\n", + "granary\n", + "grand\n", + "grandad\n", + "grandads\n", + "grandam\n", + "grandame\n", + "grandames\n", + "grandams\n", + "grandchild\n", + "grandchildren\n", + "granddad\n", + "granddads\n", + "granddaughter\n", + "granddaughters\n", + "grandee\n", + "grandees\n", + "grander\n", + "grandest\n", + "grandeur\n", + "grandeurs\n", + "grandfather\n", + "grandfathers\n", + "grandiose\n", + "grandiosely\n", + "grandly\n", + "grandma\n", + "grandmas\n", + "grandmother\n", + "grandmothers\n", + "grandness\n", + "grandnesses\n", + "grandpa\n", + "grandparent\n", + "grandparents\n", + "grandpas\n", + "grands\n", + "grandsir\n", + "grandsirs\n", + "grandson\n", + "grandsons\n", + "grandstand\n", + "grandstands\n", + "grange\n", + "granger\n", + "grangers\n", + "granges\n", + "granite\n", + "granites\n", + "granitic\n", + "grannie\n", + "grannies\n", + "granny\n", + "grant\n", + "granted\n", + "grantee\n", + "grantees\n", + "granter\n", + "granters\n", + "granting\n", + "grantor\n", + "grantors\n", + "grants\n", + "granular\n", + "granularities\n", + "granularity\n", + "granulate\n", + "granulated\n", + "granulates\n", + "granulating\n", + "granulation\n", + "granulations\n", + "granule\n", + "granules\n", + "granum\n", + "grape\n", + "graperies\n", + "grapery\n", + "grapes\n", + "grapevine\n", + "grapevines\n", + "graph\n", + "graphed\n", + "grapheme\n", + "graphemes\n", + "graphic\n", + "graphically\n", + "graphics\n", + "graphing\n", + "graphite\n", + "graphites\n", + "graphs\n", + "grapier\n", + "grapiest\n", + "graplin\n", + "grapline\n", + "graplines\n", + "graplins\n", + "grapnel\n", + "grapnels\n", + "grappa\n", + "grappas\n", + "grapple\n", + "grappled\n", + "grappler\n", + "grapplers\n", + "grapples\n", + "grappling\n", + "grapy\n", + "grasp\n", + "grasped\n", + "grasper\n", + "graspers\n", + "grasping\n", + "grasps\n", + "grass\n", + "grassed\n", + "grasses\n", + "grasshopper\n", + "grasshoppers\n", + "grassier\n", + "grassiest\n", + "grassily\n", + "grassing\n", + "grassland\n", + "grasslands\n", + "grassy\n", + "grat\n", + "grate\n", + "grated\n", + "grateful\n", + "gratefuller\n", + "gratefullest\n", + "gratefullies\n", + "gratefully\n", + "gratefulness\n", + "gratefulnesses\n", + "grater\n", + "graters\n", + "grates\n", + "gratification\n", + "gratifications\n", + "gratified\n", + "gratifies\n", + "gratify\n", + "gratifying\n", + "gratin\n", + "grating\n", + "gratings\n", + "gratins\n", + "gratis\n", + "gratitude\n", + "gratuities\n", + "gratuitous\n", + "gratuity\n", + "graupel\n", + "graupels\n", + "gravamen\n", + "gravamens\n", + "gravamina\n", + "grave\n", + "graved\n", + "gravel\n", + "graveled\n", + "graveling\n", + "gravelled\n", + "gravelling\n", + "gravelly\n", + "gravels\n", + "gravely\n", + "graven\n", + "graveness\n", + "gravenesses\n", + "graver\n", + "gravers\n", + "graves\n", + "gravest\n", + "gravestone\n", + "gravestones\n", + "graveyard\n", + "graveyards\n", + "gravid\n", + "gravida\n", + "gravidae\n", + "gravidas\n", + "gravidly\n", + "gravies\n", + "graving\n", + "gravitate\n", + "gravitated\n", + "gravitates\n", + "gravitating\n", + "gravitation\n", + "gravitational\n", + "gravitationally\n", + "gravitations\n", + "gravitative\n", + "gravities\n", + "graviton\n", + "gravitons\n", + "gravity\n", + "gravure\n", + "gravures\n", + "gravy\n", + "gray\n", + "grayback\n", + "graybacks\n", + "grayed\n", + "grayer\n", + "grayest\n", + "grayfish\n", + "grayfishes\n", + "graying\n", + "grayish\n", + "graylag\n", + "graylags\n", + "grayling\n", + "graylings\n", + "grayly\n", + "grayness\n", + "graynesses\n", + "grayout\n", + "grayouts\n", + "grays\n", + "grazable\n", + "graze\n", + "grazed\n", + "grazer\n", + "grazers\n", + "grazes\n", + "grazier\n", + "graziers\n", + "grazing\n", + "grazings\n", + "grazioso\n", + "grease\n", + "greased\n", + "greaser\n", + "greasers\n", + "greases\n", + "greasier\n", + "greasiest\n", + "greasily\n", + "greasing\n", + "greasy\n", + "great\n", + "greaten\n", + "greatened\n", + "greatening\n", + "greatens\n", + "greater\n", + "greatest\n", + "greatly\n", + "greatness\n", + "greatnesses\n", + "greats\n", + "greave\n", + "greaved\n", + "greaves\n", + "grebe\n", + "grebes\n", + "grecize\n", + "grecized\n", + "grecizes\n", + "grecizing\n", + "gree\n", + "greed\n", + "greedier\n", + "greediest\n", + "greedily\n", + "greediness\n", + "greedinesses\n", + "greeds\n", + "greedy\n", + "greegree\n", + "greegrees\n", + "greeing\n", + "greek\n", + "green\n", + "greenbug\n", + "greenbugs\n", + "greened\n", + "greener\n", + "greeneries\n", + "greenery\n", + "greenest\n", + "greenflies\n", + "greenfly\n", + "greenhorn\n", + "greenhorns\n", + "greenhouse\n", + "greenhouses\n", + "greenier\n", + "greeniest\n", + "greening\n", + "greenings\n", + "greenish\n", + "greenlet\n", + "greenlets\n", + "greenly\n", + "greenness\n", + "greennesses\n", + "greens\n", + "greenth\n", + "greenths\n", + "greeny\n", + "grees\n", + "greet\n", + "greeted\n", + "greeter\n", + "greeters\n", + "greeting\n", + "greetings\n", + "greets\n", + "gregarious\n", + "gregariously\n", + "gregariousness\n", + "gregariousnesses\n", + "grego\n", + "gregos\n", + "greige\n", + "greiges\n", + "greisen\n", + "greisens\n", + "gremial\n", + "gremials\n", + "gremlin\n", + "gremlins\n", + "gremmie\n", + "gremmies\n", + "gremmy\n", + "grenade\n", + "grenades\n", + "grew\n", + "grewsome\n", + "grewsomer\n", + "grewsomest\n", + "grey\n", + "greyed\n", + "greyer\n", + "greyest\n", + "greyhen\n", + "greyhens\n", + "greyhound\n", + "greyhounds\n", + "greying\n", + "greyish\n", + "greylag\n", + "greylags\n", + "greyly\n", + "greyness\n", + "greynesses\n", + "greys\n", + "gribble\n", + "gribbles\n", + "grid\n", + "griddle\n", + "griddled\n", + "griddles\n", + "griddling\n", + "gride\n", + "grided\n", + "grides\n", + "griding\n", + "gridiron\n", + "gridirons\n", + "grids\n", + "grief\n", + "griefs\n", + "grievance\n", + "grievances\n", + "grievant\n", + "grievants\n", + "grieve\n", + "grieved\n", + "griever\n", + "grievers\n", + "grieves\n", + "grieving\n", + "grievous\n", + "grievously\n", + "griff\n", + "griffe\n", + "griffes\n", + "griffin\n", + "griffins\n", + "griffon\n", + "griffons\n", + "griffs\n", + "grift\n", + "grifted\n", + "grifter\n", + "grifters\n", + "grifting\n", + "grifts\n", + "grig\n", + "grigri\n", + "grigris\n", + "grigs\n", + "grill\n", + "grillade\n", + "grillades\n", + "grillage\n", + "grillages\n", + "grille\n", + "grilled\n", + "griller\n", + "grillers\n", + "grilles\n", + "grilling\n", + "grills\n", + "grillwork\n", + "grillworks\n", + "grilse\n", + "grilses\n", + "grim\n", + "grimace\n", + "grimaced\n", + "grimacer\n", + "grimacers\n", + "grimaces\n", + "grimacing\n", + "grime\n", + "grimed\n", + "grimes\n", + "grimier\n", + "grimiest\n", + "grimily\n", + "griming\n", + "grimly\n", + "grimmer\n", + "grimmest\n", + "grimness\n", + "grimnesses\n", + "grimy\n", + "grin\n", + "grind\n", + "grinded\n", + "grinder\n", + "grinderies\n", + "grinders\n", + "grindery\n", + "grinding\n", + "grinds\n", + "grindstone\n", + "grindstones\n", + "gringo\n", + "gringos\n", + "grinned\n", + "grinner\n", + "grinners\n", + "grinning\n", + "grins\n", + "grip\n", + "gripe\n", + "griped\n", + "griper\n", + "gripers\n", + "gripes\n", + "gripey\n", + "gripier\n", + "gripiest\n", + "griping\n", + "grippe\n", + "gripped\n", + "gripper\n", + "grippers\n", + "grippes\n", + "grippier\n", + "grippiest\n", + "gripping\n", + "gripple\n", + "grippy\n", + "grips\n", + "gripsack\n", + "gripsacks\n", + "gript\n", + "gripy\n", + "griseous\n", + "grisette\n", + "grisettes\n", + "griskin\n", + "griskins\n", + "grislier\n", + "grisliest\n", + "grisly\n", + "grison\n", + "grisons\n", + "grist\n", + "gristle\n", + "gristles\n", + "gristlier\n", + "gristliest\n", + "gristly\n", + "gristmill\n", + "gristmills\n", + "grists\n", + "grit\n", + "grith\n", + "griths\n", + "grits\n", + "gritted\n", + "grittier\n", + "grittiest\n", + "grittily\n", + "gritting\n", + "gritty\n", + "grivet\n", + "grivets\n", + "grizzle\n", + "grizzled\n", + "grizzler\n", + "grizzlers\n", + "grizzles\n", + "grizzlier\n", + "grizzlies\n", + "grizzliest\n", + "grizzling\n", + "grizzly\n", + "groan\n", + "groaned\n", + "groaner\n", + "groaners\n", + "groaning\n", + "groans\n", + "groat\n", + "groats\n", + "grocer\n", + "groceries\n", + "grocers\n", + "grocery\n", + "grog\n", + "groggeries\n", + "groggery\n", + "groggier\n", + "groggiest\n", + "groggily\n", + "grogginess\n", + "grogginesses\n", + "groggy\n", + "grogram\n", + "grograms\n", + "grogs\n", + "grogshop\n", + "grogshops\n", + "groin\n", + "groined\n", + "groining\n", + "groins\n", + "grommet\n", + "grommets\n", + "gromwell\n", + "gromwells\n", + "groom\n", + "groomed\n", + "groomer\n", + "groomers\n", + "grooming\n", + "grooms\n", + "groove\n", + "grooved\n", + "groover\n", + "groovers\n", + "grooves\n", + "groovier\n", + "grooviest\n", + "grooving\n", + "groovy\n", + "grope\n", + "groped\n", + "groper\n", + "gropers\n", + "gropes\n", + "groping\n", + "grosbeak\n", + "grosbeaks\n", + "groschen\n", + "gross\n", + "grossed\n", + "grosser\n", + "grossers\n", + "grosses\n", + "grossest\n", + "grossing\n", + "grossly\n", + "grossness\n", + "grossnesses\n", + "grosz\n", + "groszy\n", + "grot\n", + "grotesque\n", + "grotesquely\n", + "grots\n", + "grotto\n", + "grottoes\n", + "grottos\n", + "grouch\n", + "grouched\n", + "grouches\n", + "grouchier\n", + "grouchiest\n", + "grouching\n", + "grouchy\n", + "ground\n", + "grounded\n", + "grounder\n", + "grounders\n", + "groundhog\n", + "groundhogs\n", + "grounding\n", + "grounds\n", + "groundwater\n", + "groundwaters\n", + "groundwork\n", + "groundworks\n", + "group\n", + "grouped\n", + "grouper\n", + "groupers\n", + "groupie\n", + "groupies\n", + "grouping\n", + "groupings\n", + "groupoid\n", + "groupoids\n", + "groups\n", + "grouse\n", + "groused\n", + "grouser\n", + "grousers\n", + "grouses\n", + "grousing\n", + "grout\n", + "grouted\n", + "grouter\n", + "grouters\n", + "groutier\n", + "groutiest\n", + "grouting\n", + "grouts\n", + "grouty\n", + "grove\n", + "groved\n", + "grovel\n", + "groveled\n", + "groveler\n", + "grovelers\n", + "groveling\n", + "grovelled\n", + "grovelling\n", + "grovels\n", + "groves\n", + "grow\n", + "growable\n", + "grower\n", + "growers\n", + "growing\n", + "growl\n", + "growled\n", + "growler\n", + "growlers\n", + "growlier\n", + "growliest\n", + "growling\n", + "growls\n", + "growly\n", + "grown\n", + "grownup\n", + "grownups\n", + "grows\n", + "growth\n", + "growths\n", + "groyne\n", + "groynes\n", + "grub\n", + "grubbed\n", + "grubber\n", + "grubbers\n", + "grubbier\n", + "grubbiest\n", + "grubbily\n", + "grubbiness\n", + "grubbinesses\n", + "grubbing\n", + "grubby\n", + "grubs\n", + "grubstake\n", + "grubstakes\n", + "grubworm\n", + "grubworms\n", + "grudge\n", + "grudged\n", + "grudger\n", + "grudgers\n", + "grudges\n", + "grudging\n", + "gruel\n", + "grueled\n", + "grueler\n", + "gruelers\n", + "grueling\n", + "gruelings\n", + "gruelled\n", + "grueller\n", + "gruellers\n", + "gruelling\n", + "gruellings\n", + "gruels\n", + "gruesome\n", + "gruesomer\n", + "gruesomest\n", + "gruff\n", + "gruffed\n", + "gruffer\n", + "gruffest\n", + "gruffier\n", + "gruffiest\n", + "gruffily\n", + "gruffing\n", + "gruffish\n", + "gruffly\n", + "gruffs\n", + "gruffy\n", + "grugru\n", + "grugrus\n", + "grum\n", + "grumble\n", + "grumbled\n", + "grumbler\n", + "grumblers\n", + "grumbles\n", + "grumbling\n", + "grumbly\n", + "grume\n", + "grumes\n", + "grummer\n", + "grummest\n", + "grummet\n", + "grummets\n", + "grumose\n", + "grumous\n", + "grump\n", + "grumped\n", + "grumphie\n", + "grumphies\n", + "grumphy\n", + "grumpier\n", + "grumpiest\n", + "grumpily\n", + "grumping\n", + "grumpish\n", + "grumps\n", + "grumpy\n", + "grunion\n", + "grunions\n", + "grunt\n", + "grunted\n", + "grunter\n", + "grunters\n", + "grunting\n", + "gruntle\n", + "gruntled\n", + "gruntles\n", + "gruntling\n", + "grunts\n", + "grushie\n", + "grutch\n", + "grutched\n", + "grutches\n", + "grutching\n", + "grutten\n", + "gryphon\n", + "gryphons\n", + "guacharo\n", + "guacharoes\n", + "guacharos\n", + "guaco\n", + "guacos\n", + "guaiac\n", + "guaiacol\n", + "guaiacols\n", + "guaiacs\n", + "guaiacum\n", + "guaiacums\n", + "guaiocum\n", + "guaiocums\n", + "guan\n", + "guanaco\n", + "guanacos\n", + "guanase\n", + "guanases\n", + "guanidin\n", + "guanidins\n", + "guanin\n", + "guanine\n", + "guanines\n", + "guanins\n", + "guano\n", + "guanos\n", + "guans\n", + "guar\n", + "guarani\n", + "guaranies\n", + "guaranis\n", + "guarantee\n", + "guarantees\n", + "guarantied\n", + "guaranties\n", + "guarantor\n", + "guaranty\n", + "guarantying\n", + "guard\n", + "guardant\n", + "guardants\n", + "guarded\n", + "guarder\n", + "guarders\n", + "guardhouse\n", + "guardhouses\n", + "guardian\n", + "guardians\n", + "guardianship\n", + "guardianships\n", + "guarding\n", + "guardroom\n", + "guardrooms\n", + "guards\n", + "guars\n", + "guava\n", + "guavas\n", + "guayule\n", + "guayules\n", + "gubernatorial\n", + "guck\n", + "gucks\n", + "gude\n", + "gudes\n", + "gudgeon\n", + "gudgeoned\n", + "gudgeoning\n", + "gudgeons\n", + "guenon\n", + "guenons\n", + "guerdon\n", + "guerdoned\n", + "guerdoning\n", + "guerdons\n", + "guerilla\n", + "guerillas\n", + "guernsey\n", + "guernseys\n", + "guess\n", + "guessed\n", + "guesser\n", + "guessers\n", + "guesses\n", + "guessing\n", + "guest\n", + "guested\n", + "guesting\n", + "guests\n", + "guff\n", + "guffaw\n", + "guffawed\n", + "guffawing\n", + "guffaws\n", + "guffs\n", + "guggle\n", + "guggled\n", + "guggles\n", + "guggling\n", + "guglet\n", + "guglets\n", + "guid\n", + "guidable\n", + "guidance\n", + "guidances\n", + "guide\n", + "guidebook\n", + "guidebooks\n", + "guided\n", + "guideline\n", + "guidelines\n", + "guider\n", + "guiders\n", + "guides\n", + "guiding\n", + "guidon\n", + "guidons\n", + "guids\n", + "guild\n", + "guilder\n", + "guilders\n", + "guilds\n", + "guile\n", + "guiled\n", + "guileful\n", + "guileless\n", + "guilelessness\n", + "guilelessnesses\n", + "guiles\n", + "guiling\n", + "guillotine\n", + "guillotined\n", + "guillotines\n", + "guillotining\n", + "guilt\n", + "guiltier\n", + "guiltiest\n", + "guiltily\n", + "guiltiness\n", + "guiltinesses\n", + "guilts\n", + "guilty\n", + "guimpe\n", + "guimpes\n", + "guinea\n", + "guineas\n", + "guipure\n", + "guipures\n", + "guiro\n", + "guisard\n", + "guisards\n", + "guise\n", + "guised\n", + "guises\n", + "guising\n", + "guitar\n", + "guitars\n", + "gul\n", + "gular\n", + "gulch\n", + "gulches\n", + "gulden\n", + "guldens\n", + "gules\n", + "gulf\n", + "gulfed\n", + "gulfier\n", + "gulfiest\n", + "gulfing\n", + "gulflike\n", + "gulfs\n", + "gulfweed\n", + "gulfweeds\n", + "gulfy\n", + "gull\n", + "gullable\n", + "gullably\n", + "gulled\n", + "gullet\n", + "gullets\n", + "gulley\n", + "gulleys\n", + "gullible\n", + "gullibly\n", + "gullied\n", + "gullies\n", + "gulling\n", + "gulls\n", + "gully\n", + "gullying\n", + "gulosities\n", + "gulosity\n", + "gulp\n", + "gulped\n", + "gulper\n", + "gulpers\n", + "gulpier\n", + "gulpiest\n", + "gulping\n", + "gulps\n", + "gulpy\n", + "guls\n", + "gum\n", + "gumbo\n", + "gumboil\n", + "gumboils\n", + "gumbos\n", + "gumbotil\n", + "gumbotils\n", + "gumdrop\n", + "gumdrops\n", + "gumless\n", + "gumlike\n", + "gumma\n", + "gummas\n", + "gummata\n", + "gummed\n", + "gummer\n", + "gummers\n", + "gummier\n", + "gummiest\n", + "gumming\n", + "gummite\n", + "gummites\n", + "gummose\n", + "gummoses\n", + "gummosis\n", + "gummous\n", + "gummy\n", + "gumption\n", + "gumptions\n", + "gums\n", + "gumshoe\n", + "gumshoed\n", + "gumshoeing\n", + "gumshoes\n", + "gumtree\n", + "gumtrees\n", + "gumweed\n", + "gumweeds\n", + "gumwood\n", + "gumwoods\n", + "gun\n", + "gunboat\n", + "gunboats\n", + "gundog\n", + "gundogs\n", + "gunfight\n", + "gunfighter\n", + "gunfighters\n", + "gunfighting\n", + "gunfights\n", + "gunfire\n", + "gunfires\n", + "gunflint\n", + "gunflints\n", + "gunfought\n", + "gunk\n", + "gunks\n", + "gunless\n", + "gunlock\n", + "gunlocks\n", + "gunman\n", + "gunmen\n", + "gunmetal\n", + "gunmetals\n", + "gunned\n", + "gunnel\n", + "gunnels\n", + "gunnen\n", + "gunner\n", + "gunneries\n", + "gunners\n", + "gunnery\n", + "gunnies\n", + "gunning\n", + "gunnings\n", + "gunny\n", + "gunpaper\n", + "gunpapers\n", + "gunplay\n", + "gunplays\n", + "gunpoint\n", + "gunpoints\n", + "gunpowder\n", + "gunpowders\n", + "gunroom\n", + "gunrooms\n", + "guns\n", + "gunsel\n", + "gunsels\n", + "gunship\n", + "gunships\n", + "gunshot\n", + "gunshots\n", + "gunslinger\n", + "gunslingers\n", + "gunsmith\n", + "gunsmiths\n", + "gunstock\n", + "gunstocks\n", + "gunwale\n", + "gunwales\n", + "guppies\n", + "guppy\n", + "gurge\n", + "gurged\n", + "gurges\n", + "gurging\n", + "gurgle\n", + "gurgled\n", + "gurgles\n", + "gurglet\n", + "gurglets\n", + "gurgling\n", + "gurnard\n", + "gurnards\n", + "gurnet\n", + "gurnets\n", + "gurney\n", + "gurneys\n", + "gurries\n", + "gurry\n", + "gursh\n", + "gurshes\n", + "guru\n", + "gurus\n", + "guruship\n", + "guruships\n", + "gush\n", + "gushed\n", + "gusher\n", + "gushers\n", + "gushes\n", + "gushier\n", + "gushiest\n", + "gushily\n", + "gushing\n", + "gushy\n", + "gusset\n", + "gusseted\n", + "gusseting\n", + "gussets\n", + "gust\n", + "gustable\n", + "gustables\n", + "gustatory\n", + "gusted\n", + "gustier\n", + "gustiest\n", + "gustily\n", + "gusting\n", + "gustless\n", + "gusto\n", + "gustoes\n", + "gusts\n", + "gusty\n", + "gut\n", + "gutless\n", + "gutlike\n", + "guts\n", + "gutsier\n", + "gutsiest\n", + "gutsy\n", + "gutta\n", + "guttae\n", + "guttate\n", + "guttated\n", + "gutted\n", + "gutter\n", + "guttered\n", + "guttering\n", + "gutters\n", + "guttery\n", + "guttier\n", + "guttiest\n", + "gutting\n", + "guttle\n", + "guttled\n", + "guttler\n", + "guttlers\n", + "guttles\n", + "guttling\n", + "guttural\n", + "gutturals\n", + "gutty\n", + "guy\n", + "guyed\n", + "guyer\n", + "guying\n", + "guyot\n", + "guyots\n", + "guys\n", + "guzzle\n", + "guzzled\n", + "guzzler\n", + "guzzlers\n", + "guzzles\n", + "guzzling\n", + "gweduc\n", + "gweduck\n", + "gweducks\n", + "gweducs\n", + "gybe\n", + "gybed\n", + "gyber\n", + "gybes\n", + "gybing\n", + "gym\n", + "gymkhana\n", + "gymkhanas\n", + "gymnasia\n", + "gymnasium\n", + "gymnasiums\n", + "gymnast\n", + "gymnastic\n", + "gymnastics\n", + "gymnasts\n", + "gyms\n", + "gynaecea\n", + "gynaecia\n", + "gynandries\n", + "gynandry\n", + "gynarchies\n", + "gynarchy\n", + "gynecia\n", + "gynecic\n", + "gynecium\n", + "gynecoid\n", + "gynecologic\n", + "gynecological\n", + "gynecologies\n", + "gynecologist\n", + "gynecologists\n", + "gynecology\n", + "gynecomastia\n", + "gynecomasty\n", + "gyniatries\n", + "gyniatry\n", + "gynoecia\n", + "gyp\n", + "gypped\n", + "gypper\n", + "gyppers\n", + "gypping\n", + "gyps\n", + "gypseian\n", + "gypseous\n", + "gypsied\n", + "gypsies\n", + "gypsum\n", + "gypsums\n", + "gypsy\n", + "gypsydom\n", + "gypsydoms\n", + "gypsying\n", + "gypsyish\n", + "gypsyism\n", + "gypsyisms\n", + "gyral\n", + "gyrally\n", + "gyrate\n", + "gyrated\n", + "gyrates\n", + "gyrating\n", + "gyration\n", + "gyrations\n", + "gyrator\n", + "gyrators\n", + "gyratory\n", + "gyre\n", + "gyred\n", + "gyrene\n", + "gyrenes\n", + "gyres\n", + "gyri\n", + "gyring\n", + "gyro\n", + "gyrocompass\n", + "gyrocompasses\n", + "gyroidal\n", + "gyron\n", + "gyrons\n", + "gyros\n", + "gyroscope\n", + "gyroscopes\n", + "gyrose\n", + "gyrostat\n", + "gyrostats\n", + "gyrus\n", + "gyve\n", + "gyved\n", + "gyves\n", + "gyving\n", + "ha\n", + "haaf\n", + "haafs\n", + "haar\n", + "haars\n", + "habanera\n", + "habaneras\n", + "habdalah\n", + "habdalahs\n", + "haberdasher\n", + "haberdasheries\n", + "haberdashers\n", + "haberdashery\n", + "habile\n", + "habit\n", + "habitable\n", + "habitan\n", + "habitans\n", + "habitant\n", + "habitants\n", + "habitat\n", + "habitation\n", + "habitations\n", + "habitats\n", + "habited\n", + "habiting\n", + "habits\n", + "habitual\n", + "habitually\n", + "habitualness\n", + "habitualnesses\n", + "habituate\n", + "habituated\n", + "habituates\n", + "habituating\n", + "habitude\n", + "habitudes\n", + "habitue\n", + "habitues\n", + "habitus\n", + "habu\n", + "habus\n", + "hacek\n", + "haceks\n", + "hachure\n", + "hachured\n", + "hachures\n", + "hachuring\n", + "hacienda\n", + "haciendas\n", + "hack\n", + "hackbut\n", + "hackbuts\n", + "hacked\n", + "hackee\n", + "hackees\n", + "hacker\n", + "hackers\n", + "hackie\n", + "hackies\n", + "hacking\n", + "hackle\n", + "hackled\n", + "hackler\n", + "hacklers\n", + "hackles\n", + "hacklier\n", + "hackliest\n", + "hackling\n", + "hackly\n", + "hackman\n", + "hackmen\n", + "hackney\n", + "hackneyed\n", + "hackneying\n", + "hackneys\n", + "hacks\n", + "hacksaw\n", + "hacksaws\n", + "hackwork\n", + "hackworks\n", + "had\n", + "hadal\n", + "hadarim\n", + "haddest\n", + "haddock\n", + "haddocks\n", + "hade\n", + "haded\n", + "hades\n", + "hading\n", + "hadj\n", + "hadjee\n", + "hadjees\n", + "hadjes\n", + "hadji\n", + "hadjis\n", + "hadjs\n", + "hadron\n", + "hadronic\n", + "hadrons\n", + "hadst\n", + "hae\n", + "haed\n", + "haeing\n", + "haem\n", + "haemal\n", + "haematal\n", + "haematic\n", + "haematics\n", + "haematin\n", + "haematins\n", + "haemic\n", + "haemin\n", + "haemins\n", + "haemoid\n", + "haems\n", + "haen\n", + "haeredes\n", + "haeres\n", + "haes\n", + "haet\n", + "haets\n", + "haffet\n", + "haffets\n", + "haffit\n", + "haffits\n", + "hafis\n", + "hafiz\n", + "hafnium\n", + "hafniums\n", + "haft\n", + "haftarah\n", + "haftarahs\n", + "haftarot\n", + "haftaroth\n", + "hafted\n", + "hafter\n", + "hafters\n", + "hafting\n", + "haftorah\n", + "haftorahs\n", + "haftorot\n", + "haftoroth\n", + "hafts\n", + "hag\n", + "hagadic\n", + "hagadist\n", + "hagadists\n", + "hagberries\n", + "hagberry\n", + "hagborn\n", + "hagbush\n", + "hagbushes\n", + "hagbut\n", + "hagbuts\n", + "hagdon\n", + "hagdons\n", + "hagfish\n", + "hagfishes\n", + "haggadic\n", + "haggard\n", + "haggardly\n", + "haggards\n", + "hagged\n", + "hagging\n", + "haggis\n", + "haggises\n", + "haggish\n", + "haggle\n", + "haggled\n", + "haggler\n", + "hagglers\n", + "haggles\n", + "haggling\n", + "hagridden\n", + "hagride\n", + "hagrides\n", + "hagriding\n", + "hagrode\n", + "hags\n", + "hah\n", + "hahs\n", + "haik\n", + "haika\n", + "haiks\n", + "haiku\n", + "hail\n", + "hailed\n", + "hailer\n", + "hailers\n", + "hailing\n", + "hails\n", + "hailstone\n", + "hailstones\n", + "hailstorm\n", + "hailstorms\n", + "haily\n", + "hair\n", + "hairball\n", + "hairballs\n", + "hairband\n", + "hairbands\n", + "hairbreadth\n", + "hairbreadths\n", + "hairbrush\n", + "hairbrushes\n", + "haircap\n", + "haircaps\n", + "haircut\n", + "haircuts\n", + "hairdo\n", + "hairdos\n", + "hairdresser\n", + "hairdressers\n", + "haired\n", + "hairier\n", + "hairiest\n", + "hairiness\n", + "hairinesses\n", + "hairless\n", + "hairlike\n", + "hairline\n", + "hairlines\n", + "hairlock\n", + "hairlocks\n", + "hairpiece\n", + "hairpieces\n", + "hairpin\n", + "hairpins\n", + "hairs\n", + "hairsbreadth\n", + "hairsbreadths\n", + "hairstyle\n", + "hairstyles\n", + "hairstyling\n", + "hairstylings\n", + "hairstylist\n", + "hairstylists\n", + "hairwork\n", + "hairworks\n", + "hairworm\n", + "hairworms\n", + "hairy\n", + "haj\n", + "hajes\n", + "haji\n", + "hajis\n", + "hajj\n", + "hajjes\n", + "hajji\n", + "hajjis\n", + "hajjs\n", + "hake\n", + "hakeem\n", + "hakeems\n", + "hakes\n", + "hakim\n", + "hakims\n", + "halakah\n", + "halakahs\n", + "halakic\n", + "halakist\n", + "halakists\n", + "halakoth\n", + "halala\n", + "halalah\n", + "halalahs\n", + "halalas\n", + "halation\n", + "halations\n", + "halavah\n", + "halavahs\n", + "halazone\n", + "halazones\n", + "halberd\n", + "halberds\n", + "halbert\n", + "halberts\n", + "halcyon\n", + "halcyons\n", + "hale\n", + "haled\n", + "haleness\n", + "halenesses\n", + "haler\n", + "halers\n", + "haleru\n", + "hales\n", + "halest\n", + "half\n", + "halfback\n", + "halfbacks\n", + "halfbeak\n", + "halfbeaks\n", + "halfhearted\n", + "halfheartedly\n", + "halfheartedness\n", + "halfheartednesses\n", + "halflife\n", + "halflives\n", + "halfness\n", + "halfnesses\n", + "halftime\n", + "halftimes\n", + "halftone\n", + "halftones\n", + "halfway\n", + "halibut\n", + "halibuts\n", + "halid\n", + "halide\n", + "halides\n", + "halidom\n", + "halidome\n", + "halidomes\n", + "halidoms\n", + "halids\n", + "haling\n", + "halite\n", + "halites\n", + "halitosis\n", + "halitosises\n", + "halitus\n", + "halituses\n", + "hall\n", + "hallah\n", + "hallahs\n", + "hallel\n", + "hallels\n", + "halliard\n", + "halliards\n", + "hallmark\n", + "hallmarked\n", + "hallmarking\n", + "hallmarks\n", + "hallo\n", + "halloa\n", + "halloaed\n", + "halloaing\n", + "halloas\n", + "halloed\n", + "halloes\n", + "halloing\n", + "halloo\n", + "hallooed\n", + "hallooing\n", + "halloos\n", + "hallos\n", + "hallot\n", + "halloth\n", + "hallow\n", + "hallowed\n", + "hallower\n", + "hallowers\n", + "hallowing\n", + "hallows\n", + "halls\n", + "halluces\n", + "hallucinate\n", + "hallucinated\n", + "hallucinates\n", + "hallucinating\n", + "hallucination\n", + "hallucinations\n", + "hallucinative\n", + "hallucinatory\n", + "hallucinogen\n", + "hallucinogenic\n", + "hallucinogens\n", + "hallux\n", + "hallway\n", + "hallways\n", + "halm\n", + "halms\n", + "halo\n", + "haloed\n", + "halogen\n", + "halogens\n", + "haloid\n", + "haloids\n", + "haloing\n", + "halolike\n", + "halos\n", + "halt\n", + "halted\n", + "halter\n", + "haltere\n", + "haltered\n", + "halteres\n", + "haltering\n", + "halters\n", + "halting\n", + "haltingly\n", + "haltless\n", + "halts\n", + "halutz\n", + "halutzim\n", + "halva\n", + "halvah\n", + "halvahs\n", + "halvas\n", + "halve\n", + "halved\n", + "halvers\n", + "halves\n", + "halving\n", + "halyard\n", + "halyards\n", + "ham\n", + "hamal\n", + "hamals\n", + "hamartia\n", + "hamartias\n", + "hamate\n", + "hamates\n", + "hamaul\n", + "hamauls\n", + "hamburg\n", + "hamburger\n", + "hamburgers\n", + "hamburgs\n", + "hame\n", + "hames\n", + "hamlet\n", + "hamlets\n", + "hammal\n", + "hammals\n", + "hammed\n", + "hammer\n", + "hammered\n", + "hammerer\n", + "hammerers\n", + "hammerhead\n", + "hammerheads\n", + "hammering\n", + "hammers\n", + "hammier\n", + "hammiest\n", + "hammily\n", + "hamming\n", + "hammock\n", + "hammocks\n", + "hammy\n", + "hamper\n", + "hampered\n", + "hamperer\n", + "hamperers\n", + "hampering\n", + "hampers\n", + "hams\n", + "hamster\n", + "hamsters\n", + "hamstring\n", + "hamstringing\n", + "hamstrings\n", + "hamstrung\n", + "hamular\n", + "hamulate\n", + "hamuli\n", + "hamulose\n", + "hamulous\n", + "hamulus\n", + "hamza\n", + "hamzah\n", + "hamzahs\n", + "hamzas\n", + "hanaper\n", + "hanapers\n", + "hance\n", + "hances\n", + "hand\n", + "handbag\n", + "handbags\n", + "handball\n", + "handballs\n", + "handbill\n", + "handbills\n", + "handbook\n", + "handbooks\n", + "handcar\n", + "handcars\n", + "handcart\n", + "handcarts\n", + "handclasp\n", + "handclasps\n", + "handcraft\n", + "handcrafted\n", + "handcrafting\n", + "handcrafts\n", + "handcuff\n", + "handcuffed\n", + "handcuffing\n", + "handcuffs\n", + "handed\n", + "handfast\n", + "handfasted\n", + "handfasting\n", + "handfasts\n", + "handful\n", + "handfuls\n", + "handgrip\n", + "handgrips\n", + "handgun\n", + "handguns\n", + "handhold\n", + "handholds\n", + "handicap\n", + "handicapped\n", + "handicapper\n", + "handicappers\n", + "handicapping\n", + "handicaps\n", + "handicrafsman\n", + "handicrafsmen\n", + "handicraft\n", + "handicrafter\n", + "handicrafters\n", + "handicrafts\n", + "handier\n", + "handiest\n", + "handily\n", + "handiness\n", + "handinesses\n", + "handing\n", + "handiwork\n", + "handiworks\n", + "handkerchief\n", + "handkerchiefs\n", + "handle\n", + "handled\n", + "handler\n", + "handlers\n", + "handles\n", + "handless\n", + "handlike\n", + "handling\n", + "handlings\n", + "handlist\n", + "handlists\n", + "handloom\n", + "handlooms\n", + "handmade\n", + "handmaid\n", + "handmaiden\n", + "handmaidens\n", + "handmaids\n", + "handoff\n", + "handoffs\n", + "handout\n", + "handouts\n", + "handpick\n", + "handpicked\n", + "handpicking\n", + "handpicks\n", + "handrail\n", + "handrails\n", + "hands\n", + "handsaw\n", + "handsaws\n", + "handsel\n", + "handseled\n", + "handseling\n", + "handselled\n", + "handselling\n", + "handsels\n", + "handset\n", + "handsets\n", + "handsewn\n", + "handsful\n", + "handshake\n", + "handshakes\n", + "handsome\n", + "handsomely\n", + "handsomeness\n", + "handsomenesses\n", + "handsomer\n", + "handsomest\n", + "handspring\n", + "handsprings\n", + "handstand\n", + "handstands\n", + "handwork\n", + "handworks\n", + "handwoven\n", + "handwrit\n", + "handwriting\n", + "handwritings\n", + "handwritten\n", + "handy\n", + "handyman\n", + "handymen\n", + "hang\n", + "hangable\n", + "hangar\n", + "hangared\n", + "hangaring\n", + "hangars\n", + "hangbird\n", + "hangbirds\n", + "hangdog\n", + "hangdogs\n", + "hanged\n", + "hanger\n", + "hangers\n", + "hangfire\n", + "hangfires\n", + "hanging\n", + "hangings\n", + "hangman\n", + "hangmen\n", + "hangnail\n", + "hangnails\n", + "hangnest\n", + "hangnests\n", + "hangout\n", + "hangouts\n", + "hangover\n", + "hangovers\n", + "hangs\n", + "hangtag\n", + "hangtags\n", + "hangup\n", + "hangups\n", + "hank\n", + "hanked\n", + "hanker\n", + "hankered\n", + "hankerer\n", + "hankerers\n", + "hankering\n", + "hankers\n", + "hankie\n", + "hankies\n", + "hanking\n", + "hanks\n", + "hanky\n", + "hanse\n", + "hansel\n", + "hanseled\n", + "hanseling\n", + "hanselled\n", + "hanselling\n", + "hansels\n", + "hanses\n", + "hansom\n", + "hansoms\n", + "hant\n", + "hanted\n", + "hanting\n", + "hantle\n", + "hantles\n", + "hants\n", + "hanuman\n", + "hanumans\n", + "haole\n", + "haoles\n", + "hap\n", + "hapax\n", + "hapaxes\n", + "haphazard\n", + "haphazardly\n", + "hapless\n", + "haplessly\n", + "haplessness\n", + "haplessnesses\n", + "haplite\n", + "haplites\n", + "haploid\n", + "haploidies\n", + "haploids\n", + "haploidy\n", + "haplont\n", + "haplonts\n", + "haplopia\n", + "haplopias\n", + "haploses\n", + "haplosis\n", + "haply\n", + "happed\n", + "happen\n", + "happened\n", + "happening\n", + "happenings\n", + "happens\n", + "happier\n", + "happiest\n", + "happily\n", + "happiness\n", + "happing\n", + "happy\n", + "haps\n", + "hapten\n", + "haptene\n", + "haptenes\n", + "haptenic\n", + "haptens\n", + "haptic\n", + "haptical\n", + "harangue\n", + "harangued\n", + "haranguer\n", + "haranguers\n", + "harangues\n", + "haranguing\n", + "harass\n", + "harassed\n", + "harasser\n", + "harassers\n", + "harasses\n", + "harassing\n", + "harassness\n", + "harassnesses\n", + "harbinger\n", + "harbingers\n", + "harbor\n", + "harbored\n", + "harborer\n", + "harborers\n", + "harboring\n", + "harbors\n", + "harbour\n", + "harboured\n", + "harbouring\n", + "harbours\n", + "hard\n", + "hardback\n", + "hardbacks\n", + "hardball\n", + "hardballs\n", + "hardboot\n", + "hardboots\n", + "hardcase\n", + "hardcore\n", + "harden\n", + "hardened\n", + "hardener\n", + "hardeners\n", + "hardening\n", + "hardens\n", + "harder\n", + "hardest\n", + "hardhack\n", + "hardhacks\n", + "hardhat\n", + "hardhats\n", + "hardhead\n", + "hardheaded\n", + "hardheadedly\n", + "hardheadedness\n", + "hardheads\n", + "hardhearted\n", + "hardheartedly\n", + "hardheartedness\n", + "hardheartednesses\n", + "hardier\n", + "hardies\n", + "hardiest\n", + "hardily\n", + "hardiness\n", + "hardinesses\n", + "hardly\n", + "hardness\n", + "hardnesses\n", + "hardpan\n", + "hardpans\n", + "hards\n", + "hardset\n", + "hardship\n", + "hardships\n", + "hardtack\n", + "hardtacks\n", + "hardtop\n", + "hardtops\n", + "hardware\n", + "hardwares\n", + "hardwood\n", + "hardwoods\n", + "hardy\n", + "hare\n", + "harebell\n", + "harebells\n", + "hared\n", + "hareem\n", + "hareems\n", + "harelike\n", + "harelip\n", + "harelipped\n", + "harelips\n", + "harem\n", + "harems\n", + "hares\n", + "hariana\n", + "harianas\n", + "haricot\n", + "haricots\n", + "harijan\n", + "harijans\n", + "haring\n", + "hark\n", + "harked\n", + "harken\n", + "harkened\n", + "harkener\n", + "harkeners\n", + "harkening\n", + "harkens\n", + "harking\n", + "harks\n", + "harl\n", + "harlequin\n", + "harlequins\n", + "harlot\n", + "harlotries\n", + "harlotry\n", + "harlots\n", + "harls\n", + "harm\n", + "harmed\n", + "harmer\n", + "harmers\n", + "harmful\n", + "harmfully\n", + "harmfulness\n", + "harmfulnesses\n", + "harmin\n", + "harmine\n", + "harmines\n", + "harming\n", + "harmins\n", + "harmless\n", + "harmlessly\n", + "harmlessness\n", + "harmlessnesses\n", + "harmonic\n", + "harmonica\n", + "harmonically\n", + "harmonicas\n", + "harmonics\n", + "harmonies\n", + "harmonious\n", + "harmoniously\n", + "harmoniousness\n", + "harmoniousnesses\n", + "harmonization\n", + "harmonizations\n", + "harmonize\n", + "harmonized\n", + "harmonizes\n", + "harmonizing\n", + "harmony\n", + "harms\n", + "harness\n", + "harnessed\n", + "harnesses\n", + "harnessing\n", + "harp\n", + "harped\n", + "harper\n", + "harpers\n", + "harpies\n", + "harpin\n", + "harping\n", + "harpings\n", + "harpins\n", + "harpist\n", + "harpists\n", + "harpoon\n", + "harpooned\n", + "harpooner\n", + "harpooners\n", + "harpooning\n", + "harpoons\n", + "harps\n", + "harpsichord\n", + "harpsichords\n", + "harpy\n", + "harridan\n", + "harridans\n", + "harried\n", + "harrier\n", + "harriers\n", + "harries\n", + "harrow\n", + "harrowed\n", + "harrower\n", + "harrowers\n", + "harrowing\n", + "harrows\n", + "harrumph\n", + "harrumphed\n", + "harrumphing\n", + "harrumphs\n", + "harry\n", + "harrying\n", + "harsh\n", + "harshen\n", + "harshened\n", + "harshening\n", + "harshens\n", + "harsher\n", + "harshest\n", + "harshly\n", + "harshness\n", + "harshnesses\n", + "harslet\n", + "harslets\n", + "hart\n", + "hartal\n", + "hartals\n", + "harts\n", + "haruspex\n", + "haruspices\n", + "harvest\n", + "harvested\n", + "harvester\n", + "harvesters\n", + "harvesting\n", + "harvests\n", + "has\n", + "hash\n", + "hashed\n", + "hasheesh\n", + "hasheeshes\n", + "hashes\n", + "hashing\n", + "hashish\n", + "hashishes\n", + "haslet\n", + "haslets\n", + "hasp\n", + "hasped\n", + "hasping\n", + "hasps\n", + "hassel\n", + "hassels\n", + "hassle\n", + "hassled\n", + "hassles\n", + "hassling\n", + "hassock\n", + "hassocks\n", + "hast\n", + "hastate\n", + "haste\n", + "hasted\n", + "hasteful\n", + "hasten\n", + "hastened\n", + "hastener\n", + "hasteners\n", + "hastening\n", + "hastens\n", + "hastes\n", + "hastier\n", + "hastiest\n", + "hastily\n", + "hasting\n", + "hasty\n", + "hat\n", + "hatable\n", + "hatband\n", + "hatbands\n", + "hatbox\n", + "hatboxes\n", + "hatch\n", + "hatcheck\n", + "hatched\n", + "hatchel\n", + "hatcheled\n", + "hatcheling\n", + "hatchelled\n", + "hatchelling\n", + "hatchels\n", + "hatcher\n", + "hatcheries\n", + "hatchers\n", + "hatchery\n", + "hatches\n", + "hatchet\n", + "hatchets\n", + "hatching\n", + "hatchings\n", + "hatchway\n", + "hatchways\n", + "hate\n", + "hateable\n", + "hated\n", + "hateful\n", + "hatefullness\n", + "hatefullnesses\n", + "hater\n", + "haters\n", + "hates\n", + "hatful\n", + "hatfuls\n", + "hath\n", + "hating\n", + "hatless\n", + "hatlike\n", + "hatmaker\n", + "hatmakers\n", + "hatpin\n", + "hatpins\n", + "hatrack\n", + "hatracks\n", + "hatred\n", + "hatreds\n", + "hats\n", + "hatsful\n", + "hatted\n", + "hatter\n", + "hatteria\n", + "hatterias\n", + "hatters\n", + "hatting\n", + "hauberk\n", + "hauberks\n", + "haugh\n", + "haughs\n", + "haughtier\n", + "haughtiest\n", + "haughtily\n", + "haughtiness\n", + "haughtinesses\n", + "haughty\n", + "haul\n", + "haulage\n", + "haulages\n", + "hauled\n", + "hauler\n", + "haulers\n", + "haulier\n", + "hauliers\n", + "hauling\n", + "haulm\n", + "haulmier\n", + "haulmiest\n", + "haulms\n", + "haulmy\n", + "hauls\n", + "haulyard\n", + "haulyards\n", + "haunch\n", + "haunched\n", + "haunches\n", + "haunt\n", + "haunted\n", + "haunter\n", + "haunters\n", + "haunting\n", + "hauntingly\n", + "haunts\n", + "hausen\n", + "hausens\n", + "hausfrau\n", + "hausfrauen\n", + "hausfraus\n", + "hautbois\n", + "hautboy\n", + "hautboys\n", + "hauteur\n", + "hauteurs\n", + "havdalah\n", + "havdalahs\n", + "have\n", + "havelock\n", + "havelocks\n", + "haven\n", + "havened\n", + "havening\n", + "havens\n", + "haver\n", + "havered\n", + "haverel\n", + "haverels\n", + "havering\n", + "havers\n", + "haves\n", + "having\n", + "havior\n", + "haviors\n", + "haviour\n", + "haviours\n", + "havoc\n", + "havocked\n", + "havocker\n", + "havockers\n", + "havocking\n", + "havocs\n", + "haw\n", + "hawed\n", + "hawfinch\n", + "hawfinches\n", + "hawing\n", + "hawk\n", + "hawkbill\n", + "hawkbills\n", + "hawked\n", + "hawker\n", + "hawkers\n", + "hawkey\n", + "hawkeys\n", + "hawkie\n", + "hawkies\n", + "hawking\n", + "hawkings\n", + "hawkish\n", + "hawklike\n", + "hawkmoth\n", + "hawkmoths\n", + "hawknose\n", + "hawknoses\n", + "hawks\n", + "hawkshaw\n", + "hawkshaws\n", + "hawkweed\n", + "hawkweeds\n", + "haws\n", + "hawse\n", + "hawser\n", + "hawsers\n", + "hawses\n", + "hawthorn\n", + "hawthorns\n", + "hay\n", + "haycock\n", + "haycocks\n", + "hayed\n", + "hayer\n", + "hayers\n", + "hayfork\n", + "hayforks\n", + "haying\n", + "hayings\n", + "haylage\n", + "haylages\n", + "hayloft\n", + "haylofts\n", + "haymaker\n", + "haymakers\n", + "haymow\n", + "haymows\n", + "hayrack\n", + "hayracks\n", + "hayrick\n", + "hayricks\n", + "hayride\n", + "hayrides\n", + "hays\n", + "hayseed\n", + "hayseeds\n", + "haystack\n", + "haystacks\n", + "hayward\n", + "haywards\n", + "haywire\n", + "haywires\n", + "hazan\n", + "hazanim\n", + "hazans\n", + "hazard\n", + "hazarded\n", + "hazarding\n", + "hazardous\n", + "hazards\n", + "haze\n", + "hazed\n", + "hazel\n", + "hazelly\n", + "hazelnut\n", + "hazelnuts\n", + "hazels\n", + "hazer\n", + "hazers\n", + "hazes\n", + "hazier\n", + "haziest\n", + "hazily\n", + "haziness\n", + "hazinesses\n", + "hazing\n", + "hazings\n", + "hazy\n", + "hazzan\n", + "hazzanim\n", + "hazzans\n", + "he\n", + "head\n", + "headache\n", + "headaches\n", + "headachier\n", + "headachiest\n", + "headachy\n", + "headband\n", + "headbands\n", + "headdress\n", + "headdresses\n", + "headed\n", + "header\n", + "headers\n", + "headfirst\n", + "headgate\n", + "headgates\n", + "headgear\n", + "headgears\n", + "headhunt\n", + "headhunted\n", + "headhunting\n", + "headhunts\n", + "headier\n", + "headiest\n", + "headily\n", + "heading\n", + "headings\n", + "headlamp\n", + "headlamps\n", + "headland\n", + "headlands\n", + "headless\n", + "headlight\n", + "headlights\n", + "headline\n", + "headlined\n", + "headlines\n", + "headlining\n", + "headlock\n", + "headlocks\n", + "headlong\n", + "headman\n", + "headmaster\n", + "headmasters\n", + "headmen\n", + "headmistress\n", + "headmistresses\n", + "headmost\n", + "headnote\n", + "headnotes\n", + "headphone\n", + "headphones\n", + "headpin\n", + "headpins\n", + "headquarter\n", + "headquartered\n", + "headquartering\n", + "headquarters\n", + "headrace\n", + "headraces\n", + "headrest\n", + "headrests\n", + "headroom\n", + "headrooms\n", + "heads\n", + "headsail\n", + "headsails\n", + "headset\n", + "headsets\n", + "headship\n", + "headships\n", + "headsman\n", + "headsmen\n", + "headstay\n", + "headstays\n", + "headstone\n", + "headstones\n", + "headstrong\n", + "headwaiter\n", + "headwaiters\n", + "headwater\n", + "headwaters\n", + "headway\n", + "headways\n", + "headwind\n", + "headwinds\n", + "headword\n", + "headwords\n", + "headwork\n", + "headworks\n", + "heady\n", + "heal\n", + "healable\n", + "healed\n", + "healer\n", + "healers\n", + "healing\n", + "heals\n", + "health\n", + "healthful\n", + "healthfully\n", + "healthfulness\n", + "healthfulnesses\n", + "healthier\n", + "healthiest\n", + "healths\n", + "healthy\n", + "heap\n", + "heaped\n", + "heaping\n", + "heaps\n", + "hear\n", + "hearable\n", + "heard\n", + "hearer\n", + "hearers\n", + "hearing\n", + "hearings\n", + "hearken\n", + "hearkened\n", + "hearkening\n", + "hearkens\n", + "hears\n", + "hearsay\n", + "hearsays\n", + "hearse\n", + "hearsed\n", + "hearses\n", + "hearsing\n", + "heart\n", + "heartache\n", + "heartaches\n", + "heartbeat\n", + "heartbeats\n", + "heartbreak\n", + "heartbreaking\n", + "heartbreaks\n", + "heartbroken\n", + "heartburn\n", + "heartburns\n", + "hearted\n", + "hearten\n", + "heartened\n", + "heartening\n", + "heartens\n", + "hearth\n", + "hearths\n", + "hearthstone\n", + "hearthstones\n", + "heartier\n", + "hearties\n", + "heartiest\n", + "heartily\n", + "heartiness\n", + "heartinesses\n", + "hearting\n", + "heartless\n", + "heartrending\n", + "hearts\n", + "heartsick\n", + "heartsickness\n", + "heartsicknesses\n", + "heartstrings\n", + "heartthrob\n", + "heartthrobs\n", + "heartwarming\n", + "heartwood\n", + "heartwoods\n", + "hearty\n", + "heat\n", + "heatable\n", + "heated\n", + "heatedly\n", + "heater\n", + "heaters\n", + "heath\n", + "heathen\n", + "heathens\n", + "heather\n", + "heathers\n", + "heathery\n", + "heathier\n", + "heathiest\n", + "heaths\n", + "heathy\n", + "heating\n", + "heatless\n", + "heats\n", + "heatstroke\n", + "heatstrokes\n", + "heaume\n", + "heaumes\n", + "heave\n", + "heaved\n", + "heaven\n", + "heavenlier\n", + "heavenliest\n", + "heavenly\n", + "heavens\n", + "heavenward\n", + "heaver\n", + "heavers\n", + "heaves\n", + "heavier\n", + "heavies\n", + "heaviest\n", + "heavily\n", + "heaviness\n", + "heavinesses\n", + "heaving\n", + "heavy\n", + "heavyset\n", + "heavyweight\n", + "heavyweights\n", + "hebdomad\n", + "hebdomads\n", + "hebetate\n", + "hebetated\n", + "hebetates\n", + "hebetating\n", + "hebetic\n", + "hebetude\n", + "hebetudes\n", + "hebraize\n", + "hebraized\n", + "hebraizes\n", + "hebraizing\n", + "hecatomb\n", + "hecatombs\n", + "heck\n", + "heckle\n", + "heckled\n", + "heckler\n", + "hecklers\n", + "heckles\n", + "heckling\n", + "hecks\n", + "hectare\n", + "hectares\n", + "hectic\n", + "hectical\n", + "hectically\n", + "hecticly\n", + "hector\n", + "hectored\n", + "hectoring\n", + "hectors\n", + "heddle\n", + "heddles\n", + "heder\n", + "heders\n", + "hedge\n", + "hedged\n", + "hedgehog\n", + "hedgehogs\n", + "hedgehop\n", + "hedgehopped\n", + "hedgehopping\n", + "hedgehops\n", + "hedgepig\n", + "hedgepigs\n", + "hedger\n", + "hedgerow\n", + "hedgerows\n", + "hedgers\n", + "hedges\n", + "hedgier\n", + "hedgiest\n", + "hedging\n", + "hedgy\n", + "hedonic\n", + "hedonics\n", + "hedonism\n", + "hedonisms\n", + "hedonist\n", + "hedonistic\n", + "hedonists\n", + "heed\n", + "heeded\n", + "heeder\n", + "heeders\n", + "heedful\n", + "heedfully\n", + "heedfulness\n", + "heedfulnesses\n", + "heeding\n", + "heedless\n", + "heedlessly\n", + "heedlessness\n", + "heedlessnesses\n", + "heeds\n", + "heehaw\n", + "heehawed\n", + "heehawing\n", + "heehaws\n", + "heel\n", + "heelball\n", + "heelballs\n", + "heeled\n", + "heeler\n", + "heelers\n", + "heeling\n", + "heelings\n", + "heelless\n", + "heelpost\n", + "heelposts\n", + "heels\n", + "heeltap\n", + "heeltaps\n", + "heeze\n", + "heezed\n", + "heezes\n", + "heezing\n", + "heft\n", + "hefted\n", + "hefter\n", + "hefters\n", + "heftier\n", + "heftiest\n", + "heftily\n", + "hefting\n", + "hefts\n", + "hefty\n", + "hegari\n", + "hegaris\n", + "hegemonies\n", + "hegemony\n", + "hegira\n", + "hegiras\n", + "hegumen\n", + "hegumene\n", + "hegumenes\n", + "hegumenies\n", + "hegumens\n", + "hegumeny\n", + "heifer\n", + "heifers\n", + "heigh\n", + "height\n", + "heighten\n", + "heightened\n", + "heightening\n", + "heightens\n", + "heighth\n", + "heighths\n", + "heights\n", + "heil\n", + "heiled\n", + "heiling\n", + "heils\n", + "heinie\n", + "heinies\n", + "heinous\n", + "heinously\n", + "heinousness\n", + "heinousnesses\n", + "heir\n", + "heirdom\n", + "heirdoms\n", + "heired\n", + "heiress\n", + "heiresses\n", + "heiring\n", + "heirless\n", + "heirloom\n", + "heirlooms\n", + "heirs\n", + "heirship\n", + "heirships\n", + "heist\n", + "heisted\n", + "heister\n", + "heisters\n", + "heisting\n", + "heists\n", + "hejira\n", + "hejiras\n", + "hektare\n", + "hektares\n", + "held\n", + "heliac\n", + "heliacal\n", + "heliast\n", + "heliasts\n", + "helical\n", + "helices\n", + "helicities\n", + "helicity\n", + "helicoid\n", + "helicoids\n", + "helicon\n", + "helicons\n", + "helicopt\n", + "helicopted\n", + "helicopter\n", + "helicopters\n", + "helicopting\n", + "helicopts\n", + "helio\n", + "helios\n", + "heliotrope\n", + "helipad\n", + "helipads\n", + "heliport\n", + "heliports\n", + "helistop\n", + "helistops\n", + "helium\n", + "heliums\n", + "helix\n", + "helixes\n", + "hell\n", + "hellbent\n", + "hellbox\n", + "hellboxes\n", + "hellcat\n", + "hellcats\n", + "helled\n", + "heller\n", + "helleri\n", + "helleries\n", + "hellers\n", + "hellery\n", + "hellfire\n", + "hellfires\n", + "hellgrammite\n", + "hellgrammites\n", + "hellhole\n", + "hellholes\n", + "helling\n", + "hellion\n", + "hellions\n", + "hellish\n", + "hellkite\n", + "hellkites\n", + "hello\n", + "helloed\n", + "helloes\n", + "helloing\n", + "hellos\n", + "hells\n", + "helluva\n", + "helm\n", + "helmed\n", + "helmet\n", + "helmeted\n", + "helmeting\n", + "helmets\n", + "helming\n", + "helminth\n", + "helminths\n", + "helmless\n", + "helms\n", + "helmsman\n", + "helmsmen\n", + "helot\n", + "helotage\n", + "helotages\n", + "helotism\n", + "helotisms\n", + "helotries\n", + "helotry\n", + "helots\n", + "help\n", + "helpable\n", + "helped\n", + "helper\n", + "helpers\n", + "helpful\n", + "helpfully\n", + "helpfulness\n", + "helpfulnesses\n", + "helping\n", + "helpings\n", + "helpless\n", + "helplessly\n", + "helplessness\n", + "helplessnesses\n", + "helpmate\n", + "helpmates\n", + "helpmeet\n", + "helpmeets\n", + "helps\n", + "helve\n", + "helved\n", + "helves\n", + "helving\n", + "hem\n", + "hemagog\n", + "hemagogs\n", + "hemal\n", + "hematal\n", + "hematein\n", + "hemateins\n", + "hematic\n", + "hematics\n", + "hematin\n", + "hematine\n", + "hematines\n", + "hematins\n", + "hematite\n", + "hematites\n", + "hematocrit\n", + "hematoid\n", + "hematologic\n", + "hematological\n", + "hematologies\n", + "hematologist\n", + "hematologists\n", + "hematology\n", + "hematoma\n", + "hematomas\n", + "hematomata\n", + "hematopenia\n", + "hematuria\n", + "heme\n", + "hemes\n", + "hemic\n", + "hemin\n", + "hemins\n", + "hemiola\n", + "hemiolas\n", + "hemipter\n", + "hemipters\n", + "hemisphere\n", + "hemispheres\n", + "hemispheric\n", + "hemispherical\n", + "hemline\n", + "hemlines\n", + "hemlock\n", + "hemlocks\n", + "hemmed\n", + "hemmer\n", + "hemmers\n", + "hemming\n", + "hemocoel\n", + "hemocoels\n", + "hemocyte\n", + "hemocytes\n", + "hemoglobin\n", + "hemoid\n", + "hemolyze\n", + "hemolyzed\n", + "hemolyzes\n", + "hemolyzing\n", + "hemophilia\n", + "hemophiliac\n", + "hemophiliacs\n", + "hemoptysis\n", + "hemorrhage\n", + "hemorrhaged\n", + "hemorrhages\n", + "hemorrhagic\n", + "hemorrhaging\n", + "hemorrhoids\n", + "hemostat\n", + "hemostats\n", + "hemp\n", + "hempen\n", + "hempie\n", + "hempier\n", + "hempiest\n", + "hemplike\n", + "hemps\n", + "hempseed\n", + "hempseeds\n", + "hempweed\n", + "hempweeds\n", + "hempy\n", + "hems\n", + "hen\n", + "henbane\n", + "henbanes\n", + "henbit\n", + "henbits\n", + "hence\n", + "henceforth\n", + "henceforward\n", + "henchman\n", + "henchmen\n", + "hencoop\n", + "hencoops\n", + "henequen\n", + "henequens\n", + "henequin\n", + "henequins\n", + "henhouse\n", + "henhouses\n", + "heniquen\n", + "heniquens\n", + "henlike\n", + "henna\n", + "hennaed\n", + "hennaing\n", + "hennas\n", + "henneries\n", + "hennery\n", + "henpeck\n", + "henpecked\n", + "henpecking\n", + "henpecks\n", + "henries\n", + "henry\n", + "henrys\n", + "hens\n", + "hent\n", + "hented\n", + "henting\n", + "hents\n", + "hep\n", + "heparin\n", + "heparins\n", + "hepatic\n", + "hepatica\n", + "hepaticae\n", + "hepaticas\n", + "hepatics\n", + "hepatitis\n", + "hepatize\n", + "hepatized\n", + "hepatizes\n", + "hepatizing\n", + "hepatoma\n", + "hepatomas\n", + "hepatomata\n", + "hepatomegaly\n", + "hepcat\n", + "hepcats\n", + "heptad\n", + "heptads\n", + "heptagon\n", + "heptagons\n", + "heptane\n", + "heptanes\n", + "heptarch\n", + "heptarchs\n", + "heptose\n", + "heptoses\n", + "her\n", + "herald\n", + "heralded\n", + "heraldic\n", + "heralding\n", + "heraldries\n", + "heraldry\n", + "heralds\n", + "herb\n", + "herbaceous\n", + "herbage\n", + "herbages\n", + "herbal\n", + "herbals\n", + "herbaria\n", + "herbicidal\n", + "herbicide\n", + "herbicides\n", + "herbier\n", + "herbiest\n", + "herbivorous\n", + "herbivorously\n", + "herbless\n", + "herblike\n", + "herbs\n", + "herby\n", + "herculean\n", + "hercules\n", + "herculeses\n", + "herd\n", + "herded\n", + "herder\n", + "herders\n", + "herdic\n", + "herdics\n", + "herding\n", + "herdlike\n", + "herdman\n", + "herdmen\n", + "herds\n", + "herdsman\n", + "herdsmen\n", + "here\n", + "hereabout\n", + "hereabouts\n", + "hereafter\n", + "hereafters\n", + "hereat\n", + "hereaway\n", + "hereby\n", + "heredes\n", + "hereditary\n", + "heredities\n", + "heredity\n", + "herein\n", + "hereinto\n", + "hereof\n", + "hereon\n", + "heres\n", + "heresies\n", + "heresy\n", + "heretic\n", + "heretical\n", + "heretics\n", + "hereto\n", + "heretofore\n", + "heretrices\n", + "heretrix\n", + "heretrixes\n", + "hereunder\n", + "hereunto\n", + "hereupon\n", + "herewith\n", + "heriot\n", + "heriots\n", + "heritage\n", + "heritages\n", + "heritor\n", + "heritors\n", + "heritrices\n", + "heritrix\n", + "heritrixes\n", + "herl\n", + "herls\n", + "herm\n", + "herma\n", + "hermae\n", + "hermaean\n", + "hermai\n", + "hermaphrodite\n", + "hermaphrodites\n", + "hermaphroditic\n", + "hermetic\n", + "hermetically\n", + "hermit\n", + "hermitic\n", + "hermitries\n", + "hermitry\n", + "hermits\n", + "herms\n", + "hern\n", + "hernia\n", + "herniae\n", + "hernial\n", + "hernias\n", + "herniate\n", + "herniated\n", + "herniates\n", + "herniating\n", + "herniation\n", + "herniations\n", + "herns\n", + "hero\n", + "heroes\n", + "heroic\n", + "heroical\n", + "heroics\n", + "heroin\n", + "heroine\n", + "heroines\n", + "heroins\n", + "heroism\n", + "heroisms\n", + "heroize\n", + "heroized\n", + "heroizes\n", + "heroizing\n", + "heron\n", + "heronries\n", + "heronry\n", + "herons\n", + "heros\n", + "herpes\n", + "herpeses\n", + "herpetic\n", + "herpetologic\n", + "herpetological\n", + "herpetologies\n", + "herpetologist\n", + "herpetologists\n", + "herpetology\n", + "herried\n", + "herries\n", + "herring\n", + "herrings\n", + "herry\n", + "herrying\n", + "hers\n", + "herself\n", + "hertz\n", + "hertzes\n", + "hes\n", + "hesitancies\n", + "hesitancy\n", + "hesitant\n", + "hesitantly\n", + "hesitate\n", + "hesitated\n", + "hesitates\n", + "hesitating\n", + "hesitation\n", + "hesitations\n", + "hessian\n", + "hessians\n", + "hessite\n", + "hessites\n", + "hest\n", + "hests\n", + "het\n", + "hetaera\n", + "hetaerae\n", + "hetaeras\n", + "hetaeric\n", + "hetaira\n", + "hetairai\n", + "hetairas\n", + "hetero\n", + "heterogenous\n", + "heterogenously\n", + "heterogenousness\n", + "heterogenousnesses\n", + "heteros\n", + "heterosexual\n", + "heterosexuals\n", + "heth\n", + "heths\n", + "hetman\n", + "hetmans\n", + "heuch\n", + "heuchs\n", + "heugh\n", + "heughs\n", + "hew\n", + "hewable\n", + "hewed\n", + "hewer\n", + "hewers\n", + "hewing\n", + "hewn\n", + "hews\n", + "hex\n", + "hexad\n", + "hexade\n", + "hexades\n", + "hexadic\n", + "hexads\n", + "hexagon\n", + "hexagonal\n", + "hexagons\n", + "hexagram\n", + "hexagrams\n", + "hexamine\n", + "hexamines\n", + "hexane\n", + "hexanes\n", + "hexapla\n", + "hexaplar\n", + "hexaplas\n", + "hexapod\n", + "hexapodies\n", + "hexapods\n", + "hexapody\n", + "hexarchies\n", + "hexarchy\n", + "hexed\n", + "hexer\n", + "hexerei\n", + "hexereis\n", + "hexers\n", + "hexes\n", + "hexing\n", + "hexone\n", + "hexones\n", + "hexosan\n", + "hexosans\n", + "hexose\n", + "hexoses\n", + "hexyl\n", + "hexyls\n", + "hey\n", + "heyday\n", + "heydays\n", + "heydey\n", + "heydeys\n", + "hi\n", + "hiatal\n", + "hiatus\n", + "hiatuses\n", + "hibachi\n", + "hibachis\n", + "hibernal\n", + "hibernate\n", + "hibernated\n", + "hibernates\n", + "hibernating\n", + "hibernation\n", + "hibernations\n", + "hibernator\n", + "hibernators\n", + "hibiscus\n", + "hibiscuses\n", + "hic\n", + "hiccough\n", + "hiccoughed\n", + "hiccoughing\n", + "hiccoughs\n", + "hiccup\n", + "hiccuped\n", + "hiccuping\n", + "hiccupped\n", + "hiccupping\n", + "hiccups\n", + "hick\n", + "hickey\n", + "hickeys\n", + "hickories\n", + "hickory\n", + "hicks\n", + "hid\n", + "hidable\n", + "hidalgo\n", + "hidalgos\n", + "hidden\n", + "hiddenly\n", + "hide\n", + "hideaway\n", + "hideaways\n", + "hided\n", + "hideless\n", + "hideous\n", + "hideously\n", + "hideousness\n", + "hideousnesses\n", + "hideout\n", + "hideouts\n", + "hider\n", + "hiders\n", + "hides\n", + "hiding\n", + "hidings\n", + "hidroses\n", + "hidrosis\n", + "hidrotic\n", + "hie\n", + "hied\n", + "hieing\n", + "hiemal\n", + "hierarch\n", + "hierarchical\n", + "hierarchies\n", + "hierarchs\n", + "hierarchy\n", + "hieratic\n", + "hieroglyphic\n", + "hieroglyphics\n", + "hies\n", + "higgle\n", + "higgled\n", + "higgler\n", + "higglers\n", + "higgles\n", + "higgling\n", + "high\n", + "highball\n", + "highballed\n", + "highballing\n", + "highballs\n", + "highborn\n", + "highboy\n", + "highboys\n", + "highbred\n", + "highbrow\n", + "highbrows\n", + "highbush\n", + "highchair\n", + "highchairs\n", + "higher\n", + "highest\n", + "highjack\n", + "highjacked\n", + "highjacking\n", + "highjacks\n", + "highland\n", + "highlander\n", + "highlanders\n", + "highlands\n", + "highlight\n", + "highlighted\n", + "highlighting\n", + "highlights\n", + "highly\n", + "highness\n", + "highnesses\n", + "highroad\n", + "highroads\n", + "highs\n", + "hight\n", + "hightail\n", + "hightailed\n", + "hightailing\n", + "hightails\n", + "highted\n", + "highth\n", + "highths\n", + "highting\n", + "hights\n", + "highway\n", + "highwayman\n", + "highwaymen\n", + "highways\n", + "hijack\n", + "hijacked\n", + "hijacker\n", + "hijackers\n", + "hijacking\n", + "hijacks\n", + "hijinks\n", + "hike\n", + "hiked\n", + "hiker\n", + "hikers\n", + "hikes\n", + "hiking\n", + "hila\n", + "hilar\n", + "hilarious\n", + "hilariously\n", + "hilarities\n", + "hilarity\n", + "hilding\n", + "hildings\n", + "hili\n", + "hill\n", + "hillbillies\n", + "hillbilly\n", + "hilled\n", + "hiller\n", + "hillers\n", + "hillier\n", + "hilliest\n", + "hilling\n", + "hillo\n", + "hilloa\n", + "hilloaed\n", + "hilloaing\n", + "hilloas\n", + "hillock\n", + "hillocks\n", + "hillocky\n", + "hilloed\n", + "hilloing\n", + "hillos\n", + "hills\n", + "hillside\n", + "hillsides\n", + "hilltop\n", + "hilltops\n", + "hilly\n", + "hilt\n", + "hilted\n", + "hilting\n", + "hiltless\n", + "hilts\n", + "hilum\n", + "hilus\n", + "him\n", + "himatia\n", + "himation\n", + "himations\n", + "himself\n", + "hin\n", + "hind\n", + "hinder\n", + "hindered\n", + "hinderer\n", + "hinderers\n", + "hindering\n", + "hinders\n", + "hindgut\n", + "hindguts\n", + "hindmost\n", + "hindquarter\n", + "hindquarters\n", + "hinds\n", + "hindsight\n", + "hindsights\n", + "hinge\n", + "hinged\n", + "hinger\n", + "hingers\n", + "hinges\n", + "hinging\n", + "hinnied\n", + "hinnies\n", + "hinny\n", + "hinnying\n", + "hins\n", + "hint\n", + "hinted\n", + "hinter\n", + "hinterland\n", + "hinterlands\n", + "hinters\n", + "hinting\n", + "hints\n", + "hip\n", + "hipbone\n", + "hipbones\n", + "hipless\n", + "hiplike\n", + "hipness\n", + "hipnesses\n", + "hipparch\n", + "hipparchs\n", + "hipped\n", + "hipper\n", + "hippest\n", + "hippie\n", + "hippiedom\n", + "hippiedoms\n", + "hippiehood\n", + "hippiehoods\n", + "hippier\n", + "hippies\n", + "hippiest\n", + "hipping\n", + "hippish\n", + "hippo\n", + "hippopotami\n", + "hippopotamus\n", + "hippopotamuses\n", + "hippos\n", + "hippy\n", + "hips\n", + "hipshot\n", + "hipster\n", + "hipsters\n", + "hirable\n", + "hiragana\n", + "hiraganas\n", + "hircine\n", + "hire\n", + "hireable\n", + "hired\n", + "hireling\n", + "hirelings\n", + "hirer\n", + "hirers\n", + "hires\n", + "hiring\n", + "hirple\n", + "hirpled\n", + "hirples\n", + "hirpling\n", + "hirsel\n", + "hirseled\n", + "hirseling\n", + "hirselled\n", + "hirselling\n", + "hirsels\n", + "hirsle\n", + "hirsled\n", + "hirsles\n", + "hirsling\n", + "hirsute\n", + "hirsutism\n", + "hirudin\n", + "hirudins\n", + "his\n", + "hisn\n", + "hispid\n", + "hiss\n", + "hissed\n", + "hisself\n", + "hisser\n", + "hissers\n", + "hisses\n", + "hissing\n", + "hissings\n", + "hist\n", + "histamin\n", + "histamine\n", + "histamines\n", + "histamins\n", + "histed\n", + "histidin\n", + "histidins\n", + "histing\n", + "histogen\n", + "histogens\n", + "histogram\n", + "histograms\n", + "histoid\n", + "histologic\n", + "histone\n", + "histones\n", + "histopathologic\n", + "histopathological\n", + "historian\n", + "historians\n", + "historic\n", + "historical\n", + "historically\n", + "histories\n", + "history\n", + "hists\n", + "hit\n", + "hitch\n", + "hitched\n", + "hitcher\n", + "hitchers\n", + "hitches\n", + "hitchhike\n", + "hitchhiked\n", + "hitchhiker\n", + "hitchhikers\n", + "hitchhikes\n", + "hitchhiking\n", + "hitching\n", + "hither\n", + "hitherto\n", + "hitless\n", + "hits\n", + "hitter\n", + "hitters\n", + "hitting\n", + "hive\n", + "hived\n", + "hiveless\n", + "hiver\n", + "hives\n", + "hiving\n", + "ho\n", + "hoactzin\n", + "hoactzines\n", + "hoactzins\n", + "hoagie\n", + "hoagies\n", + "hoagy\n", + "hoar\n", + "hoard\n", + "hoarded\n", + "hoarder\n", + "hoarders\n", + "hoarding\n", + "hoardings\n", + "hoards\n", + "hoarfrost\n", + "hoarfrosts\n", + "hoarier\n", + "hoariest\n", + "hoarily\n", + "hoariness\n", + "hoarinesses\n", + "hoars\n", + "hoarse\n", + "hoarsely\n", + "hoarsen\n", + "hoarsened\n", + "hoarseness\n", + "hoarsenesses\n", + "hoarsening\n", + "hoarsens\n", + "hoarser\n", + "hoarsest\n", + "hoary\n", + "hoatzin\n", + "hoatzines\n", + "hoatzins\n", + "hoax\n", + "hoaxed\n", + "hoaxer\n", + "hoaxers\n", + "hoaxes\n", + "hoaxing\n", + "hob\n", + "hobbed\n", + "hobbies\n", + "hobbing\n", + "hobble\n", + "hobbled\n", + "hobbler\n", + "hobblers\n", + "hobbles\n", + "hobbling\n", + "hobby\n", + "hobbyist\n", + "hobbyists\n", + "hobgoblin\n", + "hobgoblins\n", + "hoblike\n", + "hobnail\n", + "hobnailed\n", + "hobnails\n", + "hobnob\n", + "hobnobbed\n", + "hobnobbing\n", + "hobnobs\n", + "hobo\n", + "hoboed\n", + "hoboes\n", + "hoboing\n", + "hoboism\n", + "hoboisms\n", + "hobos\n", + "hobs\n", + "hock\n", + "hocked\n", + "hocker\n", + "hockers\n", + "hockey\n", + "hockeys\n", + "hocking\n", + "hocks\n", + "hockshop\n", + "hockshops\n", + "hocus\n", + "hocused\n", + "hocuses\n", + "hocusing\n", + "hocussed\n", + "hocusses\n", + "hocussing\n", + "hod\n", + "hodad\n", + "hodaddies\n", + "hodaddy\n", + "hodads\n", + "hodden\n", + "hoddens\n", + "hoddin\n", + "hoddins\n", + "hodgepodge\n", + "hodgepodges\n", + "hods\n", + "hoe\n", + "hoecake\n", + "hoecakes\n", + "hoed\n", + "hoedown\n", + "hoedowns\n", + "hoeing\n", + "hoelike\n", + "hoer\n", + "hoers\n", + "hoes\n", + "hog\n", + "hogan\n", + "hogans\n", + "hogback\n", + "hogbacks\n", + "hogfish\n", + "hogfishes\n", + "hogg\n", + "hogged\n", + "hogger\n", + "hoggers\n", + "hogging\n", + "hoggish\n", + "hoggs\n", + "hoglike\n", + "hogmanay\n", + "hogmanays\n", + "hogmane\n", + "hogmanes\n", + "hogmenay\n", + "hogmenays\n", + "hognose\n", + "hognoses\n", + "hognut\n", + "hognuts\n", + "hogs\n", + "hogshead\n", + "hogsheads\n", + "hogtie\n", + "hogtied\n", + "hogtieing\n", + "hogties\n", + "hogtying\n", + "hogwash\n", + "hogwashes\n", + "hogweed\n", + "hogweeds\n", + "hoick\n", + "hoicked\n", + "hoicking\n", + "hoicks\n", + "hoiden\n", + "hoidened\n", + "hoidening\n", + "hoidens\n", + "hoise\n", + "hoised\n", + "hoises\n", + "hoising\n", + "hoist\n", + "hoisted\n", + "hoister\n", + "hoisters\n", + "hoisting\n", + "hoists\n", + "hoke\n", + "hoked\n", + "hokes\n", + "hokey\n", + "hoking\n", + "hokku\n", + "hokum\n", + "hokums\n", + "hokypokies\n", + "hokypoky\n", + "holard\n", + "holards\n", + "hold\n", + "holdable\n", + "holdall\n", + "holdalls\n", + "holdback\n", + "holdbacks\n", + "holden\n", + "holder\n", + "holders\n", + "holdfast\n", + "holdfasts\n", + "holding\n", + "holdings\n", + "holdout\n", + "holdouts\n", + "holdover\n", + "holdovers\n", + "holds\n", + "holdup\n", + "holdups\n", + "hole\n", + "holed\n", + "holeless\n", + "holer\n", + "holes\n", + "holey\n", + "holibut\n", + "holibuts\n", + "holiday\n", + "holidayed\n", + "holidaying\n", + "holidays\n", + "holier\n", + "holies\n", + "holiest\n", + "holily\n", + "holiness\n", + "holinesses\n", + "holing\n", + "holism\n", + "holisms\n", + "holist\n", + "holistic\n", + "holists\n", + "holk\n", + "holked\n", + "holking\n", + "holks\n", + "holla\n", + "hollaed\n", + "hollaing\n", + "holland\n", + "hollands\n", + "hollas\n", + "holler\n", + "hollered\n", + "hollering\n", + "hollers\n", + "hollies\n", + "hollo\n", + "holloa\n", + "holloaed\n", + "holloaing\n", + "holloas\n", + "holloed\n", + "holloes\n", + "holloing\n", + "holloo\n", + "hollooed\n", + "hollooing\n", + "holloos\n", + "hollos\n", + "hollow\n", + "hollowed\n", + "hollower\n", + "hollowest\n", + "hollowing\n", + "hollowly\n", + "hollowness\n", + "hollownesses\n", + "hollows\n", + "holly\n", + "hollyhock\n", + "hollyhocks\n", + "holm\n", + "holmic\n", + "holmium\n", + "holmiums\n", + "holms\n", + "holocaust\n", + "holocausts\n", + "hologram\n", + "holograms\n", + "hologynies\n", + "hologyny\n", + "holotype\n", + "holotypes\n", + "holozoic\n", + "holp\n", + "holpen\n", + "holstein\n", + "holsteins\n", + "holster\n", + "holsters\n", + "holt\n", + "holts\n", + "holy\n", + "holyday\n", + "holydays\n", + "holytide\n", + "holytides\n", + "homage\n", + "homaged\n", + "homager\n", + "homagers\n", + "homages\n", + "homaging\n", + "hombre\n", + "hombres\n", + "homburg\n", + "homburgs\n", + "home\n", + "homebodies\n", + "homebody\n", + "homebred\n", + "homebreds\n", + "homecoming\n", + "homecomings\n", + "homed\n", + "homeland\n", + "homelands\n", + "homeless\n", + "homelier\n", + "homeliest\n", + "homelike\n", + "homeliness\n", + "homelinesses\n", + "homely\n", + "homemade\n", + "homemaker\n", + "homemakers\n", + "homemaking\n", + "homemakings\n", + "homer\n", + "homered\n", + "homering\n", + "homeroom\n", + "homerooms\n", + "homers\n", + "homes\n", + "homesick\n", + "homesickness\n", + "homesicknesses\n", + "homesite\n", + "homesites\n", + "homespun\n", + "homespuns\n", + "homestead\n", + "homesteader\n", + "homesteaders\n", + "homesteads\n", + "homestretch\n", + "homestretches\n", + "hometown\n", + "hometowns\n", + "homeward\n", + "homewards\n", + "homework\n", + "homeworks\n", + "homey\n", + "homicidal\n", + "homicide\n", + "homicides\n", + "homier\n", + "homiest\n", + "homiletic\n", + "homilies\n", + "homilist\n", + "homilists\n", + "homily\n", + "hominess\n", + "hominesses\n", + "homing\n", + "hominian\n", + "hominians\n", + "hominid\n", + "hominids\n", + "hominies\n", + "hominine\n", + "hominoid\n", + "hominoids\n", + "hominy\n", + "hommock\n", + "hommocks\n", + "homo\n", + "homogamies\n", + "homogamy\n", + "homogeneities\n", + "homogeneity\n", + "homogeneous\n", + "homogeneously\n", + "homogeneousness\n", + "homogeneousnesses\n", + "homogenies\n", + "homogenize\n", + "homogenized\n", + "homogenizer\n", + "homogenizers\n", + "homogenizes\n", + "homogenizing\n", + "homogeny\n", + "homogonies\n", + "homogony\n", + "homograph\n", + "homographs\n", + "homolog\n", + "homologies\n", + "homologs\n", + "homology\n", + "homonym\n", + "homonymies\n", + "homonyms\n", + "homonymy\n", + "homophone\n", + "homophones\n", + "homos\n", + "homosexual\n", + "homosexuals\n", + "homy\n", + "honan\n", + "honans\n", + "honcho\n", + "honchos\n", + "honda\n", + "hondas\n", + "hondle\n", + "hondled\n", + "hondling\n", + "hone\n", + "honed\n", + "honer\n", + "honers\n", + "hones\n", + "honest\n", + "honester\n", + "honestest\n", + "honesties\n", + "honestly\n", + "honesty\n", + "honewort\n", + "honeworts\n", + "honey\n", + "honeybee\n", + "honeybees\n", + "honeybun\n", + "honeybuns\n", + "honeycomb\n", + "honeycombed\n", + "honeycombing\n", + "honeycombs\n", + "honeydew\n", + "honeydews\n", + "honeyed\n", + "honeyful\n", + "honeying\n", + "honeymoon\n", + "honeymooned\n", + "honeymooning\n", + "honeymoons\n", + "honeys\n", + "honeysuckle\n", + "honeysuckles\n", + "hong\n", + "hongs\n", + "honied\n", + "honing\n", + "honk\n", + "honked\n", + "honker\n", + "honkers\n", + "honkey\n", + "honkeys\n", + "honkie\n", + "honkies\n", + "honking\n", + "honks\n", + "honky\n", + "honor\n", + "honorable\n", + "honorably\n", + "honorand\n", + "honorands\n", + "honoraries\n", + "honorarily\n", + "honorary\n", + "honored\n", + "honoree\n", + "honorees\n", + "honorer\n", + "honorers\n", + "honoring\n", + "honors\n", + "honour\n", + "honoured\n", + "honourer\n", + "honourers\n", + "honouring\n", + "honours\n", + "hooch\n", + "hooches\n", + "hood\n", + "hooded\n", + "hoodie\n", + "hoodies\n", + "hooding\n", + "hoodless\n", + "hoodlike\n", + "hoodlum\n", + "hoodlums\n", + "hoodoo\n", + "hoodooed\n", + "hoodooing\n", + "hoodoos\n", + "hoods\n", + "hoodwink\n", + "hoodwinked\n", + "hoodwinking\n", + "hoodwinks\n", + "hooey\n", + "hooeys\n", + "hoof\n", + "hoofbeat\n", + "hoofbeats\n", + "hoofed\n", + "hoofer\n", + "hoofers\n", + "hoofing\n", + "hoofless\n", + "hooflike\n", + "hoofs\n", + "hook\n", + "hooka\n", + "hookah\n", + "hookahs\n", + "hookas\n", + "hooked\n", + "hooker\n", + "hookers\n", + "hookey\n", + "hookeys\n", + "hookier\n", + "hookies\n", + "hookiest\n", + "hooking\n", + "hookless\n", + "hooklet\n", + "hooklets\n", + "hooklike\n", + "hooknose\n", + "hooknoses\n", + "hooks\n", + "hookup\n", + "hookups\n", + "hookworm\n", + "hookworms\n", + "hooky\n", + "hoolie\n", + "hooligan\n", + "hooligans\n", + "hooly\n", + "hoop\n", + "hooped\n", + "hooper\n", + "hoopers\n", + "hooping\n", + "hoopla\n", + "hooplas\n", + "hoopless\n", + "hooplike\n", + "hoopoe\n", + "hoopoes\n", + "hoopoo\n", + "hoopoos\n", + "hoops\n", + "hoopster\n", + "hoopsters\n", + "hoorah\n", + "hoorahed\n", + "hoorahing\n", + "hoorahs\n", + "hooray\n", + "hoorayed\n", + "hooraying\n", + "hoorays\n", + "hoosegow\n", + "hoosegows\n", + "hoosgow\n", + "hoosgows\n", + "hoot\n", + "hootch\n", + "hootches\n", + "hooted\n", + "hooter\n", + "hooters\n", + "hootier\n", + "hootiest\n", + "hooting\n", + "hoots\n", + "hooty\n", + "hooves\n", + "hop\n", + "hope\n", + "hoped\n", + "hopeful\n", + "hopefully\n", + "hopefulness\n", + "hopefulnesses\n", + "hopefuls\n", + "hopeless\n", + "hopelessly\n", + "hopelessness\n", + "hopelessnesses\n", + "hoper\n", + "hopers\n", + "hopes\n", + "hophead\n", + "hopheads\n", + "hoping\n", + "hoplite\n", + "hoplites\n", + "hoplitic\n", + "hopped\n", + "hopper\n", + "hoppers\n", + "hopping\n", + "hopple\n", + "hoppled\n", + "hopples\n", + "hoppling\n", + "hops\n", + "hopsack\n", + "hopsacks\n", + "hoptoad\n", + "hoptoads\n", + "hora\n", + "horah\n", + "horahs\n", + "horal\n", + "horary\n", + "horas\n", + "horde\n", + "horded\n", + "hordein\n", + "hordeins\n", + "hordes\n", + "hording\n", + "horehound\n", + "horehounds\n", + "horizon\n", + "horizons\n", + "horizontal\n", + "horizontally\n", + "hormonal\n", + "hormone\n", + "hormones\n", + "hormonic\n", + "horn\n", + "hornbeam\n", + "hornbeams\n", + "hornbill\n", + "hornbills\n", + "hornbook\n", + "hornbooks\n", + "horned\n", + "hornet\n", + "hornets\n", + "hornfels\n", + "hornier\n", + "horniest\n", + "hornily\n", + "horning\n", + "hornito\n", + "hornitos\n", + "hornless\n", + "hornlike\n", + "hornpipe\n", + "hornpipes\n", + "hornpout\n", + "hornpouts\n", + "horns\n", + "horntail\n", + "horntails\n", + "hornworm\n", + "hornworms\n", + "hornwort\n", + "hornworts\n", + "horny\n", + "horologe\n", + "horologes\n", + "horological\n", + "horologies\n", + "horologist\n", + "horologists\n", + "horology\n", + "horoscope\n", + "horoscopes\n", + "horrendous\n", + "horrent\n", + "horrible\n", + "horribleness\n", + "horriblenesses\n", + "horribles\n", + "horribly\n", + "horrid\n", + "horridly\n", + "horrific\n", + "horrified\n", + "horrifies\n", + "horrify\n", + "horrifying\n", + "horror\n", + "horrors\n", + "horse\n", + "horseback\n", + "horsebacks\n", + "horsecar\n", + "horsecars\n", + "horsed\n", + "horseflies\n", + "horsefly\n", + "horsehair\n", + "horsehairs\n", + "horsehide\n", + "horsehides\n", + "horseless\n", + "horseman\n", + "horsemanship\n", + "horsemanships\n", + "horsemen\n", + "horseplay\n", + "horseplays\n", + "horsepower\n", + "horsepowers\n", + "horseradish\n", + "horseradishes\n", + "horses\n", + "horseshoe\n", + "horseshoes\n", + "horsewoman\n", + "horsewomen\n", + "horsey\n", + "horsier\n", + "horsiest\n", + "horsily\n", + "horsing\n", + "horst\n", + "horste\n", + "horstes\n", + "horsts\n", + "horsy\n", + "hortatory\n", + "horticultural\n", + "horticulture\n", + "horticultures\n", + "horticulturist\n", + "horticulturists\n", + "hosanna\n", + "hosannaed\n", + "hosannaing\n", + "hosannas\n", + "hose\n", + "hosed\n", + "hosel\n", + "hosels\n", + "hosen\n", + "hoses\n", + "hosier\n", + "hosieries\n", + "hosiers\n", + "hosiery\n", + "hosing\n", + "hospice\n", + "hospices\n", + "hospitable\n", + "hospitably\n", + "hospital\n", + "hospitalities\n", + "hospitality\n", + "hospitalization\n", + "hospitalizations\n", + "hospitalize\n", + "hospitalized\n", + "hospitalizes\n", + "hospitalizing\n", + "hospitals\n", + "hospitia\n", + "hospodar\n", + "hospodars\n", + "host\n", + "hostage\n", + "hostages\n", + "hosted\n", + "hostel\n", + "hosteled\n", + "hosteler\n", + "hostelers\n", + "hosteling\n", + "hostelries\n", + "hostelry\n", + "hostels\n", + "hostess\n", + "hostessed\n", + "hostesses\n", + "hostessing\n", + "hostile\n", + "hostilely\n", + "hostiles\n", + "hostilities\n", + "hostility\n", + "hosting\n", + "hostler\n", + "hostlers\n", + "hostly\n", + "hosts\n", + "hot\n", + "hotbed\n", + "hotbeds\n", + "hotblood\n", + "hotbloods\n", + "hotbox\n", + "hotboxes\n", + "hotcake\n", + "hotcakes\n", + "hotch\n", + "hotched\n", + "hotches\n", + "hotching\n", + "hotchpot\n", + "hotchpots\n", + "hotdog\n", + "hotdogged\n", + "hotdogging\n", + "hotdogs\n", + "hotel\n", + "hotelier\n", + "hoteliers\n", + "hotelman\n", + "hotelmen\n", + "hotels\n", + "hotfoot\n", + "hotfooted\n", + "hotfooting\n", + "hotfoots\n", + "hothead\n", + "hotheaded\n", + "hotheadedly\n", + "hotheadedness\n", + "hotheadednesses\n", + "hotheads\n", + "hothouse\n", + "hothouses\n", + "hotly\n", + "hotness\n", + "hotnesses\n", + "hotpress\n", + "hotpressed\n", + "hotpresses\n", + "hotpressing\n", + "hotrod\n", + "hotrods\n", + "hots\n", + "hotshot\n", + "hotshots\n", + "hotspur\n", + "hotspurs\n", + "hotted\n", + "hotter\n", + "hottest\n", + "hotting\n", + "hottish\n", + "houdah\n", + "houdahs\n", + "hound\n", + "hounded\n", + "hounder\n", + "hounders\n", + "hounding\n", + "hounds\n", + "hour\n", + "hourglass\n", + "hourglasses\n", + "houri\n", + "houris\n", + "hourly\n", + "hours\n", + "house\n", + "houseboat\n", + "houseboats\n", + "houseboy\n", + "houseboys\n", + "housebreak\n", + "housebreaks\n", + "housebroken\n", + "houseclean\n", + "housecleaned\n", + "housecleaning\n", + "housecleanings\n", + "housecleans\n", + "housed\n", + "houseflies\n", + "housefly\n", + "houseful\n", + "housefuls\n", + "household\n", + "householder\n", + "householders\n", + "households\n", + "housekeeper\n", + "housekeepers\n", + "housekeeping\n", + "housel\n", + "houseled\n", + "houseling\n", + "houselled\n", + "houselling\n", + "housels\n", + "housemaid\n", + "housemaids\n", + "houseman\n", + "housemate\n", + "housemates\n", + "housemen\n", + "houser\n", + "housers\n", + "houses\n", + "housetop\n", + "housetops\n", + "housewares\n", + "housewarming\n", + "housewarmings\n", + "housewife\n", + "housewifeliness\n", + "housewifelinesses\n", + "housewifely\n", + "housewiferies\n", + "housewifery\n", + "housewives\n", + "housework\n", + "houseworks\n", + "housing\n", + "housings\n", + "hove\n", + "hovel\n", + "hoveled\n", + "hoveling\n", + "hovelled\n", + "hovelling\n", + "hovels\n", + "hover\n", + "hovered\n", + "hoverer\n", + "hoverers\n", + "hovering\n", + "hovers\n", + "how\n", + "howbeit\n", + "howdah\n", + "howdahs\n", + "howdie\n", + "howdies\n", + "howdy\n", + "howe\n", + "howes\n", + "however\n", + "howf\n", + "howff\n", + "howffs\n", + "howfs\n", + "howitzer\n", + "howitzers\n", + "howk\n", + "howked\n", + "howking\n", + "howks\n", + "howl\n", + "howled\n", + "howler\n", + "howlers\n", + "howlet\n", + "howlets\n", + "howling\n", + "howls\n", + "hows\n", + "hoy\n", + "hoyden\n", + "hoydened\n", + "hoydening\n", + "hoydens\n", + "hoyle\n", + "hoyles\n", + "hoys\n", + "huarache\n", + "huaraches\n", + "huaracho\n", + "huarachos\n", + "hub\n", + "hubbies\n", + "hubbub\n", + "hubbubs\n", + "hubby\n", + "hubcap\n", + "hubcaps\n", + "hubris\n", + "hubrises\n", + "hubs\n", + "huck\n", + "huckle\n", + "huckleberries\n", + "huckleberry\n", + "huckles\n", + "hucks\n", + "huckster\n", + "huckstered\n", + "huckstering\n", + "hucksters\n", + "huddle\n", + "huddled\n", + "huddler\n", + "huddlers\n", + "huddles\n", + "huddling\n", + "hue\n", + "hued\n", + "hueless\n", + "hues\n", + "huff\n", + "huffed\n", + "huffier\n", + "huffiest\n", + "huffily\n", + "huffing\n", + "huffish\n", + "huffs\n", + "huffy\n", + "hug\n", + "huge\n", + "hugely\n", + "hugeness\n", + "hugenesses\n", + "hugeous\n", + "huger\n", + "hugest\n", + "huggable\n", + "hugged\n", + "hugger\n", + "huggers\n", + "hugging\n", + "hugs\n", + "huh\n", + "huic\n", + "hula\n", + "hulas\n", + "hulk\n", + "hulked\n", + "hulkier\n", + "hulkiest\n", + "hulking\n", + "hulks\n", + "hulky\n", + "hull\n", + "hullabaloo\n", + "hullabaloos\n", + "hulled\n", + "huller\n", + "hullers\n", + "hulling\n", + "hullo\n", + "hulloa\n", + "hulloaed\n", + "hulloaing\n", + "hulloas\n", + "hulloed\n", + "hulloes\n", + "hulloing\n", + "hullos\n", + "hulls\n", + "hum\n", + "human\n", + "humane\n", + "humanely\n", + "humaneness\n", + "humanenesses\n", + "humaner\n", + "humanest\n", + "humanise\n", + "humanised\n", + "humanises\n", + "humanising\n", + "humanism\n", + "humanisms\n", + "humanist\n", + "humanistic\n", + "humanists\n", + "humanitarian\n", + "humanitarianism\n", + "humanitarianisms\n", + "humanitarians\n", + "humanities\n", + "humanity\n", + "humanization\n", + "humanizations\n", + "humanize\n", + "humanized\n", + "humanizes\n", + "humanizing\n", + "humankind\n", + "humankinds\n", + "humanly\n", + "humanness\n", + "humannesses\n", + "humanoid\n", + "humanoids\n", + "humans\n", + "humate\n", + "humates\n", + "humble\n", + "humbled\n", + "humbleness\n", + "humblenesses\n", + "humbler\n", + "humblers\n", + "humbles\n", + "humblest\n", + "humbling\n", + "humbly\n", + "humbug\n", + "humbugged\n", + "humbugging\n", + "humbugs\n", + "humdrum\n", + "humdrums\n", + "humeral\n", + "humerals\n", + "humeri\n", + "humerus\n", + "humic\n", + "humid\n", + "humidification\n", + "humidifications\n", + "humidified\n", + "humidifier\n", + "humidifiers\n", + "humidifies\n", + "humidify\n", + "humidifying\n", + "humidities\n", + "humidity\n", + "humidly\n", + "humidor\n", + "humidors\n", + "humified\n", + "humiliate\n", + "humiliated\n", + "humiliates\n", + "humiliating\n", + "humiliatingly\n", + "humiliation\n", + "humiliations\n", + "humilities\n", + "humility\n", + "hummable\n", + "hummed\n", + "hummer\n", + "hummers\n", + "humming\n", + "hummingbird\n", + "hummingbirds\n", + "hummock\n", + "hummocks\n", + "hummocky\n", + "humor\n", + "humoral\n", + "humored\n", + "humorful\n", + "humoring\n", + "humorist\n", + "humorists\n", + "humorless\n", + "humorlessly\n", + "humorlessness\n", + "humorlessnesses\n", + "humorous\n", + "humorously\n", + "humorousness\n", + "humorousnesses\n", + "humors\n", + "humour\n", + "humoured\n", + "humouring\n", + "humours\n", + "hump\n", + "humpback\n", + "humpbacked\n", + "humpbacks\n", + "humped\n", + "humph\n", + "humphed\n", + "humphing\n", + "humphs\n", + "humpier\n", + "humpiest\n", + "humping\n", + "humpless\n", + "humps\n", + "humpy\n", + "hums\n", + "humus\n", + "humuses\n", + "hun\n", + "hunch\n", + "hunchback\n", + "hunchbacked\n", + "hunchbacks\n", + "hunched\n", + "hunches\n", + "hunching\n", + "hundred\n", + "hundreds\n", + "hundredth\n", + "hundredths\n", + "hung\n", + "hunger\n", + "hungered\n", + "hungering\n", + "hungers\n", + "hungrier\n", + "hungriest\n", + "hungrily\n", + "hungry\n", + "hunk\n", + "hunker\n", + "hunkered\n", + "hunkering\n", + "hunkers\n", + "hunkies\n", + "hunks\n", + "hunky\n", + "hunnish\n", + "huns\n", + "hunt\n", + "huntable\n", + "hunted\n", + "huntedly\n", + "hunter\n", + "hunters\n", + "hunting\n", + "huntings\n", + "huntington\n", + "huntress\n", + "huntresses\n", + "hunts\n", + "huntsman\n", + "huntsmen\n", + "hup\n", + "hurdies\n", + "hurdle\n", + "hurdled\n", + "hurdler\n", + "hurdlers\n", + "hurdles\n", + "hurdling\n", + "hurds\n", + "hurl\n", + "hurled\n", + "hurler\n", + "hurlers\n", + "hurley\n", + "hurleys\n", + "hurlies\n", + "hurling\n", + "hurlings\n", + "hurls\n", + "hurly\n", + "hurrah\n", + "hurrahed\n", + "hurrahing\n", + "hurrahs\n", + "hurray\n", + "hurrayed\n", + "hurraying\n", + "hurrays\n", + "hurricane\n", + "hurricanes\n", + "hurried\n", + "hurrier\n", + "hurriers\n", + "hurries\n", + "hurry\n", + "hurrying\n", + "hurt\n", + "hurter\n", + "hurters\n", + "hurtful\n", + "hurting\n", + "hurtle\n", + "hurtled\n", + "hurtles\n", + "hurtless\n", + "hurtling\n", + "hurts\n", + "husband\n", + "husbanded\n", + "husbanding\n", + "husbandries\n", + "husbandry\n", + "husbands\n", + "hush\n", + "hushaby\n", + "hushed\n", + "hushedly\n", + "hushes\n", + "hushful\n", + "hushing\n", + "husk\n", + "husked\n", + "husker\n", + "huskers\n", + "huskier\n", + "huskies\n", + "huskiest\n", + "huskily\n", + "huskiness\n", + "huskinesses\n", + "husking\n", + "huskings\n", + "husklike\n", + "husks\n", + "husky\n", + "hussar\n", + "hussars\n", + "hussies\n", + "hussy\n", + "hustings\n", + "hustle\n", + "hustled\n", + "hustler\n", + "hustlers\n", + "hustles\n", + "hustling\n", + "huswife\n", + "huswifes\n", + "huswives\n", + "hut\n", + "hutch\n", + "hutched\n", + "hutches\n", + "hutching\n", + "hutlike\n", + "hutment\n", + "hutments\n", + "huts\n", + "hutted\n", + "hutting\n", + "hutzpa\n", + "hutzpah\n", + "hutzpahs\n", + "hutzpas\n", + "huzza\n", + "huzzaed\n", + "huzzah\n", + "huzzahed\n", + "huzzahing\n", + "huzzahs\n", + "huzzaing\n", + "huzzas\n", + "hwan\n", + "hyacinth\n", + "hyacinths\n", + "hyaena\n", + "hyaenas\n", + "hyaenic\n", + "hyalin\n", + "hyaline\n", + "hyalines\n", + "hyalins\n", + "hyalite\n", + "hyalites\n", + "hyalogen\n", + "hyalogens\n", + "hyaloid\n", + "hyaloids\n", + "hybrid\n", + "hybridization\n", + "hybridizations\n", + "hybridize\n", + "hybridized\n", + "hybridizer\n", + "hybridizers\n", + "hybridizes\n", + "hybridizing\n", + "hybrids\n", + "hybris\n", + "hybrises\n", + "hydatid\n", + "hydatids\n", + "hydra\n", + "hydracid\n", + "hydracids\n", + "hydrae\n", + "hydragog\n", + "hydragogs\n", + "hydrant\n", + "hydranth\n", + "hydranths\n", + "hydrants\n", + "hydras\n", + "hydrase\n", + "hydrases\n", + "hydrate\n", + "hydrated\n", + "hydrates\n", + "hydrating\n", + "hydrator\n", + "hydrators\n", + "hydraulic\n", + "hydraulics\n", + "hydria\n", + "hydriae\n", + "hydric\n", + "hydrid\n", + "hydride\n", + "hydrides\n", + "hydrids\n", + "hydro\n", + "hydrocarbon\n", + "hydrocarbons\n", + "hydrochloride\n", + "hydroelectric\n", + "hydroelectrically\n", + "hydroelectricities\n", + "hydroelectricity\n", + "hydrogel\n", + "hydrogels\n", + "hydrogen\n", + "hydrogenous\n", + "hydrogens\n", + "hydroid\n", + "hydroids\n", + "hydromel\n", + "hydromels\n", + "hydronic\n", + "hydrophobia\n", + "hydrophobias\n", + "hydropic\n", + "hydroplane\n", + "hydroplanes\n", + "hydrops\n", + "hydropses\n", + "hydropsies\n", + "hydropsy\n", + "hydros\n", + "hydrosol\n", + "hydrosols\n", + "hydrous\n", + "hydroxy\n", + "hydroxyl\n", + "hydroxyls\n", + "hydroxyurea\n", + "hyena\n", + "hyenas\n", + "hyenic\n", + "hyenine\n", + "hyenoid\n", + "hyetal\n", + "hygeist\n", + "hygeists\n", + "hygieist\n", + "hygieists\n", + "hygiene\n", + "hygienes\n", + "hygienic\n", + "hygienically\n", + "hygrometer\n", + "hygrometers\n", + "hygrometries\n", + "hygrometry\n", + "hying\n", + "hyla\n", + "hylas\n", + "hylozoic\n", + "hymen\n", + "hymenal\n", + "hymeneal\n", + "hymeneals\n", + "hymenia\n", + "hymenial\n", + "hymenium\n", + "hymeniums\n", + "hymens\n", + "hymn\n", + "hymnal\n", + "hymnals\n", + "hymnaries\n", + "hymnary\n", + "hymnbook\n", + "hymnbooks\n", + "hymned\n", + "hymning\n", + "hymnist\n", + "hymnists\n", + "hymnless\n", + "hymnlike\n", + "hymnodies\n", + "hymnody\n", + "hymns\n", + "hyoid\n", + "hyoidal\n", + "hyoidean\n", + "hyoids\n", + "hyoscine\n", + "hyoscines\n", + "hyp\n", + "hype\n", + "hyperacid\n", + "hyperacidities\n", + "hyperacidity\n", + "hyperactive\n", + "hyperacute\n", + "hyperadrenalism\n", + "hyperaggressive\n", + "hyperaggressiveness\n", + "hyperaggressivenesses\n", + "hyperanxious\n", + "hyperbole\n", + "hyperboles\n", + "hypercalcemia\n", + "hypercalcemias\n", + "hypercautious\n", + "hyperclean\n", + "hyperconscientious\n", + "hypercorrect\n", + "hypercritical\n", + "hyperemotional\n", + "hyperenergetic\n", + "hyperexcitable\n", + "hyperfastidious\n", + "hypergol\n", + "hypergols\n", + "hyperintense\n", + "hypermasculine\n", + "hypermilitant\n", + "hypermoralistic\n", + "hypernationalistic\n", + "hyperon\n", + "hyperons\n", + "hyperope\n", + "hyperopes\n", + "hyperreactive\n", + "hyperrealistic\n", + "hyperromantic\n", + "hypersensitive\n", + "hypersensitiveness\n", + "hypersensitivenesses\n", + "hypersensitivities\n", + "hypersensitivity\n", + "hypersexual\n", + "hypersusceptible\n", + "hypersuspicious\n", + "hypertense\n", + "hypertension\n", + "hypertensions\n", + "hypertensive\n", + "hypertensives\n", + "hyperthermia\n", + "hyperthyroidism\n", + "hyperuricemia\n", + "hypervigilant\n", + "hypes\n", + "hypha\n", + "hyphae\n", + "hyphal\n", + "hyphemia\n", + "hyphemias\n", + "hyphen\n", + "hyphenate\n", + "hyphenated\n", + "hyphenates\n", + "hyphenating\n", + "hyphenation\n", + "hyphenations\n", + "hyphened\n", + "hyphening\n", + "hyphens\n", + "hypnic\n", + "hypnoid\n", + "hypnoses\n", + "hypnosis\n", + "hypnotic\n", + "hypnotically\n", + "hypnotics\n", + "hypnotism\n", + "hypnotisms\n", + "hypnotizable\n", + "hypnotize\n", + "hypnotized\n", + "hypnotizes\n", + "hypnotizing\n", + "hypo\n", + "hypoacid\n", + "hypocalcemia\n", + "hypochondria\n", + "hypochondriac\n", + "hypochondriacs\n", + "hypochondrias\n", + "hypocrisies\n", + "hypocrisy\n", + "hypocrite\n", + "hypocrites\n", + "hypocritical\n", + "hypocritically\n", + "hypoderm\n", + "hypodermic\n", + "hypodermics\n", + "hypoderms\n", + "hypoed\n", + "hypogea\n", + "hypogeal\n", + "hypogean\n", + "hypogene\n", + "hypogeum\n", + "hypogynies\n", + "hypogyny\n", + "hypoing\n", + "hypokalemia\n", + "hyponea\n", + "hyponeas\n", + "hyponoia\n", + "hyponoias\n", + "hypopnea\n", + "hypopneas\n", + "hypopyon\n", + "hypopyons\n", + "hypos\n", + "hypotension\n", + "hypotensions\n", + "hypotenuse\n", + "hypotenuses\n", + "hypothec\n", + "hypothecs\n", + "hypotheses\n", + "hypothesis\n", + "hypothetical\n", + "hypothetically\n", + "hypothyroidism\n", + "hypoxia\n", + "hypoxias\n", + "hypoxic\n", + "hyps\n", + "hyraces\n", + "hyracoid\n", + "hyracoids\n", + "hyrax\n", + "hyraxes\n", + "hyson\n", + "hysons\n", + "hyssop\n", + "hyssops\n", + "hysterectomies\n", + "hysterectomize\n", + "hysterectomized\n", + "hysterectomizes\n", + "hysterectomizing\n", + "hysterectomy\n", + "hysteria\n", + "hysterias\n", + "hysteric\n", + "hysterical\n", + "hysterically\n", + "hysterics\n", + "hyte\n", + "iamb\n", + "iambi\n", + "iambic\n", + "iambics\n", + "iambs\n", + "iambus\n", + "iambuses\n", + "iatric\n", + "iatrical\n", + "ibex\n", + "ibexes\n", + "ibices\n", + "ibidem\n", + "ibis\n", + "ibises\n", + "ice\n", + "iceberg\n", + "icebergs\n", + "iceblink\n", + "iceblinks\n", + "iceboat\n", + "iceboats\n", + "icebound\n", + "icebox\n", + "iceboxes\n", + "icebreaker\n", + "icebreakers\n", + "icecap\n", + "icecaps\n", + "iced\n", + "icefall\n", + "icefalls\n", + "icehouse\n", + "icehouses\n", + "icekhana\n", + "icekhanas\n", + "iceless\n", + "icelike\n", + "iceman\n", + "icemen\n", + "icers\n", + "ices\n", + "ich\n", + "ichnite\n", + "ichnites\n", + "ichor\n", + "ichorous\n", + "ichors\n", + "ichs\n", + "ichthyic\n", + "ichthyologies\n", + "ichthyologist\n", + "ichthyologists\n", + "ichthyology\n", + "icicle\n", + "icicled\n", + "icicles\n", + "icier\n", + "iciest\n", + "icily\n", + "iciness\n", + "icinesses\n", + "icing\n", + "icings\n", + "icker\n", + "ickers\n", + "ickier\n", + "ickiest\n", + "icky\n", + "icon\n", + "icones\n", + "iconic\n", + "iconical\n", + "iconoclasm\n", + "iconoclasms\n", + "iconoclast\n", + "iconoclasts\n", + "icons\n", + "icteric\n", + "icterics\n", + "icterus\n", + "icteruses\n", + "ictic\n", + "ictus\n", + "ictuses\n", + "icy\n", + "id\n", + "idea\n", + "ideal\n", + "idealess\n", + "idealise\n", + "idealised\n", + "idealises\n", + "idealising\n", + "idealism\n", + "idealisms\n", + "idealist\n", + "idealistic\n", + "idealists\n", + "idealities\n", + "ideality\n", + "idealization\n", + "idealizations\n", + "idealize\n", + "idealized\n", + "idealizes\n", + "idealizing\n", + "ideally\n", + "idealogies\n", + "idealogy\n", + "ideals\n", + "ideas\n", + "ideate\n", + "ideated\n", + "ideates\n", + "ideating\n", + "ideation\n", + "ideations\n", + "ideative\n", + "idem\n", + "idems\n", + "identic\n", + "identical\n", + "identifiable\n", + "identification\n", + "identifications\n", + "identified\n", + "identifier\n", + "identifiers\n", + "identifies\n", + "identify\n", + "identifying\n", + "identities\n", + "identity\n", + "ideogram\n", + "ideograms\n", + "ideological\n", + "ideologies\n", + "ideology\n", + "ides\n", + "idiocies\n", + "idiocy\n", + "idiolect\n", + "idiolects\n", + "idiom\n", + "idiomatic\n", + "idiomatically\n", + "idioms\n", + "idiosyncrasies\n", + "idiosyncrasy\n", + "idiosyncratic\n", + "idiot\n", + "idiotic\n", + "idiotically\n", + "idiotism\n", + "idiotisms\n", + "idiots\n", + "idle\n", + "idled\n", + "idleness\n", + "idlenesses\n", + "idler\n", + "idlers\n", + "idles\n", + "idlesse\n", + "idlesses\n", + "idlest\n", + "idling\n", + "idly\n", + "idocrase\n", + "idocrases\n", + "idol\n", + "idolater\n", + "idolaters\n", + "idolatries\n", + "idolatrous\n", + "idolatry\n", + "idolise\n", + "idolised\n", + "idoliser\n", + "idolisers\n", + "idolises\n", + "idolising\n", + "idolism\n", + "idolisms\n", + "idolize\n", + "idolized\n", + "idolizer\n", + "idolizers\n", + "idolizes\n", + "idolizing\n", + "idols\n", + "idoneities\n", + "idoneity\n", + "idoneous\n", + "ids\n", + "idyl\n", + "idylist\n", + "idylists\n", + "idyll\n", + "idyllic\n", + "idyllist\n", + "idyllists\n", + "idylls\n", + "idyls\n", + "if\n", + "iffier\n", + "iffiest\n", + "iffiness\n", + "iffinesses\n", + "iffy\n", + "ifs\n", + "igloo\n", + "igloos\n", + "iglu\n", + "iglus\n", + "ignatia\n", + "ignatias\n", + "igneous\n", + "ignified\n", + "ignifies\n", + "ignify\n", + "ignifying\n", + "ignite\n", + "ignited\n", + "igniter\n", + "igniters\n", + "ignites\n", + "igniting\n", + "ignition\n", + "ignitions\n", + "ignitor\n", + "ignitors\n", + "ignitron\n", + "ignitrons\n", + "ignoble\n", + "ignobly\n", + "ignominies\n", + "ignominious\n", + "ignominiously\n", + "ignominy\n", + "ignoramus\n", + "ignoramuses\n", + "ignorance\n", + "ignorances\n", + "ignorant\n", + "ignorantly\n", + "ignore\n", + "ignored\n", + "ignorer\n", + "ignorers\n", + "ignores\n", + "ignoring\n", + "iguana\n", + "iguanas\n", + "iguanian\n", + "iguanians\n", + "ihram\n", + "ihrams\n", + "ikebana\n", + "ikebanas\n", + "ikon\n", + "ikons\n", + "ilea\n", + "ileac\n", + "ileal\n", + "ileitides\n", + "ileitis\n", + "ileum\n", + "ileus\n", + "ileuses\n", + "ilex\n", + "ilexes\n", + "ilia\n", + "iliac\n", + "iliad\n", + "iliads\n", + "ilial\n", + "ilium\n", + "ilk\n", + "ilka\n", + "ilks\n", + "ill\n", + "illation\n", + "illations\n", + "illative\n", + "illatives\n", + "illegal\n", + "illegalities\n", + "illegality\n", + "illegally\n", + "illegibilities\n", + "illegibility\n", + "illegible\n", + "illegibly\n", + "illegitimacies\n", + "illegitimacy\n", + "illegitimate\n", + "illegitimately\n", + "illicit\n", + "illicitly\n", + "illimitable\n", + "illimitably\n", + "illinium\n", + "illiniums\n", + "illiquid\n", + "illite\n", + "illiteracies\n", + "illiteracy\n", + "illiterate\n", + "illiterates\n", + "illites\n", + "illitic\n", + "illnaturedly\n", + "illness\n", + "illnesses\n", + "illogic\n", + "illogical\n", + "illogically\n", + "illogics\n", + "ills\n", + "illume\n", + "illumed\n", + "illumes\n", + "illuminate\n", + "illuminated\n", + "illuminates\n", + "illuminating\n", + "illuminatingly\n", + "illumination\n", + "illuminations\n", + "illumine\n", + "illumined\n", + "illumines\n", + "illuming\n", + "illumining\n", + "illusion\n", + "illusions\n", + "illusive\n", + "illusory\n", + "illustrate\n", + "illustrated\n", + "illustrates\n", + "illustrating\n", + "illustration\n", + "illustrations\n", + "illustrative\n", + "illustratively\n", + "illustrator\n", + "illustrators\n", + "illustrious\n", + "illustriousness\n", + "illustriousnesses\n", + "illuvia\n", + "illuvial\n", + "illuvium\n", + "illuviums\n", + "illy\n", + "ilmenite\n", + "ilmenites\n", + "image\n", + "imaged\n", + "imageries\n", + "imagery\n", + "images\n", + "imaginable\n", + "imaginably\n", + "imaginal\n", + "imaginary\n", + "imagination\n", + "imaginations\n", + "imaginative\n", + "imaginatively\n", + "imagine\n", + "imagined\n", + "imaginer\n", + "imaginers\n", + "imagines\n", + "imaging\n", + "imagining\n", + "imagism\n", + "imagisms\n", + "imagist\n", + "imagists\n", + "imago\n", + "imagoes\n", + "imam\n", + "imamate\n", + "imamates\n", + "imams\n", + "imaret\n", + "imarets\n", + "imaum\n", + "imaums\n", + "imbalance\n", + "imbalances\n", + "imbalm\n", + "imbalmed\n", + "imbalmer\n", + "imbalmers\n", + "imbalming\n", + "imbalms\n", + "imbark\n", + "imbarked\n", + "imbarking\n", + "imbarks\n", + "imbecile\n", + "imbeciles\n", + "imbecilic\n", + "imbecilities\n", + "imbecility\n", + "imbed\n", + "imbedded\n", + "imbedding\n", + "imbeds\n", + "imbibe\n", + "imbibed\n", + "imbiber\n", + "imbibers\n", + "imbibes\n", + "imbibing\n", + "imbitter\n", + "imbittered\n", + "imbittering\n", + "imbitters\n", + "imblaze\n", + "imblazed\n", + "imblazes\n", + "imblazing\n", + "imbodied\n", + "imbodies\n", + "imbody\n", + "imbodying\n", + "imbolden\n", + "imboldened\n", + "imboldening\n", + "imboldens\n", + "imbosom\n", + "imbosomed\n", + "imbosoming\n", + "imbosoms\n", + "imbower\n", + "imbowered\n", + "imbowering\n", + "imbowers\n", + "imbroglio\n", + "imbroglios\n", + "imbrown\n", + "imbrowned\n", + "imbrowning\n", + "imbrowns\n", + "imbrue\n", + "imbrued\n", + "imbrues\n", + "imbruing\n", + "imbrute\n", + "imbruted\n", + "imbrutes\n", + "imbruting\n", + "imbue\n", + "imbued\n", + "imbues\n", + "imbuing\n", + "imid\n", + "imide\n", + "imides\n", + "imidic\n", + "imido\n", + "imids\n", + "imine\n", + "imines\n", + "imino\n", + "imitable\n", + "imitate\n", + "imitated\n", + "imitates\n", + "imitating\n", + "imitation\n", + "imitations\n", + "imitator\n", + "imitators\n", + "immaculate\n", + "immaculately\n", + "immane\n", + "immanent\n", + "immaterial\n", + "immaterialities\n", + "immateriality\n", + "immature\n", + "immatures\n", + "immaturities\n", + "immaturity\n", + "immeasurable\n", + "immeasurably\n", + "immediacies\n", + "immediacy\n", + "immediate\n", + "immediately\n", + "immemorial\n", + "immense\n", + "immensely\n", + "immenser\n", + "immensest\n", + "immensities\n", + "immensity\n", + "immerge\n", + "immerged\n", + "immerges\n", + "immerging\n", + "immerse\n", + "immersed\n", + "immerses\n", + "immersing\n", + "immersion\n", + "immersions\n", + "immesh\n", + "immeshed\n", + "immeshes\n", + "immeshing\n", + "immies\n", + "immigrant\n", + "immigrants\n", + "immigrate\n", + "immigrated\n", + "immigrates\n", + "immigrating\n", + "immigration\n", + "immigrations\n", + "imminence\n", + "imminences\n", + "imminent\n", + "imminently\n", + "immingle\n", + "immingled\n", + "immingles\n", + "immingling\n", + "immix\n", + "immixed\n", + "immixes\n", + "immixing\n", + "immobile\n", + "immobilities\n", + "immobility\n", + "immobilize\n", + "immobilized\n", + "immobilizes\n", + "immobilizing\n", + "immoderacies\n", + "immoderacy\n", + "immoderate\n", + "immoderately\n", + "immodest\n", + "immodesties\n", + "immodestly\n", + "immodesty\n", + "immolate\n", + "immolated\n", + "immolates\n", + "immolating\n", + "immolation\n", + "immolations\n", + "immoral\n", + "immoralities\n", + "immorality\n", + "immorally\n", + "immortal\n", + "immortalities\n", + "immortality\n", + "immortalize\n", + "immortalized\n", + "immortalizes\n", + "immortalizing\n", + "immortals\n", + "immotile\n", + "immovabilities\n", + "immovability\n", + "immovable\n", + "immovably\n", + "immune\n", + "immunes\n", + "immunise\n", + "immunised\n", + "immunises\n", + "immunising\n", + "immunities\n", + "immunity\n", + "immunization\n", + "immunizations\n", + "immunize\n", + "immunized\n", + "immunizes\n", + "immunizing\n", + "immunologic\n", + "immunological\n", + "immunologies\n", + "immunologist\n", + "immunologists\n", + "immunology\n", + "immure\n", + "immured\n", + "immures\n", + "immuring\n", + "immutabilities\n", + "immutability\n", + "immutable\n", + "immutably\n", + "immy\n", + "imp\n", + "impact\n", + "impacted\n", + "impacter\n", + "impacters\n", + "impacting\n", + "impactor\n", + "impactors\n", + "impacts\n", + "impaint\n", + "impainted\n", + "impainting\n", + "impaints\n", + "impair\n", + "impaired\n", + "impairer\n", + "impairers\n", + "impairing\n", + "impairment\n", + "impairments\n", + "impairs\n", + "impala\n", + "impalas\n", + "impale\n", + "impaled\n", + "impalement\n", + "impalements\n", + "impaler\n", + "impalers\n", + "impales\n", + "impaling\n", + "impalpable\n", + "impalpably\n", + "impanel\n", + "impaneled\n", + "impaneling\n", + "impanelled\n", + "impanelling\n", + "impanels\n", + "imparities\n", + "imparity\n", + "impark\n", + "imparked\n", + "imparking\n", + "imparks\n", + "impart\n", + "imparted\n", + "imparter\n", + "imparters\n", + "impartialities\n", + "impartiality\n", + "impartially\n", + "imparting\n", + "imparts\n", + "impassable\n", + "impasse\n", + "impasses\n", + "impassioned\n", + "impassive\n", + "impassively\n", + "impassivities\n", + "impassivity\n", + "impaste\n", + "impasted\n", + "impastes\n", + "impasting\n", + "impasto\n", + "impastos\n", + "impatience\n", + "impatiences\n", + "impatiens\n", + "impatient\n", + "impatiently\n", + "impavid\n", + "impawn\n", + "impawned\n", + "impawning\n", + "impawns\n", + "impeach\n", + "impeached\n", + "impeaches\n", + "impeaching\n", + "impeachment\n", + "impeachments\n", + "impearl\n", + "impearled\n", + "impearling\n", + "impearls\n", + "impeccable\n", + "impeccably\n", + "impecunious\n", + "impecuniousness\n", + "impecuniousnesses\n", + "imped\n", + "impedance\n", + "impedances\n", + "impede\n", + "impeded\n", + "impeder\n", + "impeders\n", + "impedes\n", + "impediment\n", + "impediments\n", + "impeding\n", + "impel\n", + "impelled\n", + "impeller\n", + "impellers\n", + "impelling\n", + "impellor\n", + "impellors\n", + "impels\n", + "impend\n", + "impended\n", + "impending\n", + "impends\n", + "impenetrabilities\n", + "impenetrability\n", + "impenetrable\n", + "impenetrably\n", + "impenitence\n", + "impenitences\n", + "impenitent\n", + "imperative\n", + "imperatively\n", + "imperatives\n", + "imperceptible\n", + "imperceptibly\n", + "imperfection\n", + "imperfections\n", + "imperfectly\n", + "imperia\n", + "imperial\n", + "imperialism\n", + "imperialist\n", + "imperialistic\n", + "imperials\n", + "imperil\n", + "imperiled\n", + "imperiling\n", + "imperilled\n", + "imperilling\n", + "imperils\n", + "imperious\n", + "imperiously\n", + "imperishable\n", + "imperium\n", + "imperiums\n", + "impermanent\n", + "impermanently\n", + "impermeable\n", + "impermissible\n", + "impersonal\n", + "impersonally\n", + "impersonate\n", + "impersonated\n", + "impersonates\n", + "impersonating\n", + "impersonation\n", + "impersonations\n", + "impersonator\n", + "impersonators\n", + "impertinence\n", + "impertinences\n", + "impertinent\n", + "impertinently\n", + "imperturbable\n", + "impervious\n", + "impetigo\n", + "impetigos\n", + "impetuous\n", + "impetuousities\n", + "impetuousity\n", + "impetuously\n", + "impetus\n", + "impetuses\n", + "imphee\n", + "imphees\n", + "impi\n", + "impieties\n", + "impiety\n", + "imping\n", + "impinge\n", + "impinged\n", + "impingement\n", + "impingements\n", + "impinger\n", + "impingers\n", + "impinges\n", + "impinging\n", + "impings\n", + "impious\n", + "impis\n", + "impish\n", + "impishly\n", + "impishness\n", + "impishnesses\n", + "implacabilities\n", + "implacability\n", + "implacable\n", + "implacably\n", + "implant\n", + "implanted\n", + "implanting\n", + "implants\n", + "implausibilities\n", + "implausibility\n", + "implausible\n", + "implead\n", + "impleaded\n", + "impleading\n", + "impleads\n", + "impledge\n", + "impledged\n", + "impledges\n", + "impledging\n", + "implement\n", + "implementation\n", + "implementations\n", + "implemented\n", + "implementing\n", + "implements\n", + "implicate\n", + "implicated\n", + "implicates\n", + "implicating\n", + "implication\n", + "implications\n", + "implicit\n", + "implicitly\n", + "implied\n", + "implies\n", + "implode\n", + "imploded\n", + "implodes\n", + "imploding\n", + "implore\n", + "implored\n", + "implorer\n", + "implorers\n", + "implores\n", + "imploring\n", + "implosion\n", + "implosions\n", + "implosive\n", + "imply\n", + "implying\n", + "impolicies\n", + "impolicy\n", + "impolite\n", + "impolitic\n", + "imponderable\n", + "imponderables\n", + "impone\n", + "imponed\n", + "impones\n", + "imponing\n", + "imporous\n", + "import\n", + "importance\n", + "important\n", + "importantly\n", + "importation\n", + "importations\n", + "imported\n", + "importer\n", + "importers\n", + "importing\n", + "imports\n", + "importunate\n", + "importune\n", + "importuned\n", + "importunes\n", + "importuning\n", + "importunities\n", + "importunity\n", + "impose\n", + "imposed\n", + "imposer\n", + "imposers\n", + "imposes\n", + "imposing\n", + "imposingly\n", + "imposition\n", + "impositions\n", + "impossibilities\n", + "impossibility\n", + "impossible\n", + "impossibly\n", + "impost\n", + "imposted\n", + "imposter\n", + "imposters\n", + "imposting\n", + "impostor\n", + "impostors\n", + "imposts\n", + "imposture\n", + "impostures\n", + "impotence\n", + "impotences\n", + "impotencies\n", + "impotency\n", + "impotent\n", + "impotently\n", + "impotents\n", + "impound\n", + "impounded\n", + "impounding\n", + "impoundment\n", + "impoundments\n", + "impounds\n", + "impoverish\n", + "impoverished\n", + "impoverishes\n", + "impoverishing\n", + "impoverishment\n", + "impoverishments\n", + "impower\n", + "impowered\n", + "impowering\n", + "impowers\n", + "impracticable\n", + "impractical\n", + "imprecise\n", + "imprecisely\n", + "impreciseness\n", + "imprecisenesses\n", + "imprecision\n", + "impregabilities\n", + "impregability\n", + "impregable\n", + "impregn\n", + "impregnate\n", + "impregnated\n", + "impregnates\n", + "impregnating\n", + "impregnation\n", + "impregnations\n", + "impregned\n", + "impregning\n", + "impregns\n", + "impresa\n", + "impresario\n", + "impresarios\n", + "impresas\n", + "imprese\n", + "impreses\n", + "impress\n", + "impressed\n", + "impresses\n", + "impressible\n", + "impressing\n", + "impression\n", + "impressionable\n", + "impressions\n", + "impressive\n", + "impressively\n", + "impressiveness\n", + "impressivenesses\n", + "impressment\n", + "impressments\n", + "imprest\n", + "imprests\n", + "imprimatur\n", + "imprimaturs\n", + "imprimis\n", + "imprint\n", + "imprinted\n", + "imprinting\n", + "imprints\n", + "imprison\n", + "imprisoned\n", + "imprisoning\n", + "imprisonment\n", + "imprisonments\n", + "imprisons\n", + "improbabilities\n", + "improbability\n", + "improbable\n", + "improbably\n", + "impromptu\n", + "impromptus\n", + "improper\n", + "improperly\n", + "improprieties\n", + "impropriety\n", + "improvable\n", + "improve\n", + "improved\n", + "improvement\n", + "improvements\n", + "improver\n", + "improvers\n", + "improves\n", + "improvidence\n", + "improvidences\n", + "improvident\n", + "improving\n", + "improvisation\n", + "improvisations\n", + "improviser\n", + "improvisers\n", + "improvisor\n", + "improvisors\n", + "imprudence\n", + "imprudences\n", + "imprudent\n", + "imps\n", + "impudence\n", + "impudences\n", + "impudent\n", + "impudently\n", + "impugn\n", + "impugned\n", + "impugner\n", + "impugners\n", + "impugning\n", + "impugns\n", + "impulse\n", + "impulsed\n", + "impulses\n", + "impulsing\n", + "impulsion\n", + "impulsions\n", + "impulsive\n", + "impulsively\n", + "impulsiveness\n", + "impulsivenesses\n", + "impunities\n", + "impunity\n", + "impure\n", + "impurely\n", + "impurities\n", + "impurity\n", + "imputation\n", + "imputations\n", + "impute\n", + "imputed\n", + "imputer\n", + "imputers\n", + "imputes\n", + "imputing\n", + "in\n", + "inabilities\n", + "inability\n", + "inaccessibilities\n", + "inaccessibility\n", + "inaccessible\n", + "inaccuracies\n", + "inaccuracy\n", + "inaccurate\n", + "inaction\n", + "inactions\n", + "inactivate\n", + "inactivated\n", + "inactivates\n", + "inactivating\n", + "inactive\n", + "inactivities\n", + "inactivity\n", + "inadequacies\n", + "inadequacy\n", + "inadequate\n", + "inadequately\n", + "inadmissibility\n", + "inadmissible\n", + "inadvertence\n", + "inadvertences\n", + "inadvertencies\n", + "inadvertency\n", + "inadvertent\n", + "inadvertently\n", + "inadvisabilities\n", + "inadvisability\n", + "inadvisable\n", + "inalienabilities\n", + "inalienability\n", + "inalienable\n", + "inalienably\n", + "inane\n", + "inanely\n", + "inaner\n", + "inanes\n", + "inanest\n", + "inanimate\n", + "inanimately\n", + "inanimateness\n", + "inanimatenesses\n", + "inanities\n", + "inanition\n", + "inanitions\n", + "inanity\n", + "inapparent\n", + "inapplicable\n", + "inapposite\n", + "inappositely\n", + "inappositeness\n", + "inappositenesses\n", + "inappreciable\n", + "inappreciably\n", + "inappreciative\n", + "inapproachable\n", + "inappropriate\n", + "inappropriately\n", + "inappropriateness\n", + "inappropriatenesses\n", + "inapt\n", + "inaptly\n", + "inarable\n", + "inarch\n", + "inarched\n", + "inarches\n", + "inarching\n", + "inarguable\n", + "inarm\n", + "inarmed\n", + "inarming\n", + "inarms\n", + "inarticulate\n", + "inarticulately\n", + "inartistic\n", + "inartistically\n", + "inattention\n", + "inattentions\n", + "inattentive\n", + "inattentively\n", + "inattentiveness\n", + "inattentivenesses\n", + "inaudible\n", + "inaudibly\n", + "inaugurate\n", + "inaugurated\n", + "inaugurates\n", + "inaugurating\n", + "inauguration\n", + "inaugurations\n", + "inauspicious\n", + "inauthentic\n", + "inbeing\n", + "inbeings\n", + "inboard\n", + "inboards\n", + "inborn\n", + "inbound\n", + "inbounds\n", + "inbred\n", + "inbreed\n", + "inbreeding\n", + "inbreedings\n", + "inbreeds\n", + "inbuilt\n", + "inburst\n", + "inbursts\n", + "inby\n", + "inbye\n", + "incage\n", + "incaged\n", + "incages\n", + "incaging\n", + "incalculable\n", + "incalculably\n", + "incandescence\n", + "incandescences\n", + "incandescent\n", + "incantation\n", + "incantations\n", + "incapabilities\n", + "incapability\n", + "incapable\n", + "incapacitate\n", + "incapacitated\n", + "incapacitates\n", + "incapacitating\n", + "incapacities\n", + "incapacity\n", + "incarcerate\n", + "incarcerated\n", + "incarcerates\n", + "incarcerating\n", + "incarceration\n", + "incarcerations\n", + "incarnation\n", + "incarnations\n", + "incase\n", + "incased\n", + "incases\n", + "incasing\n", + "incautious\n", + "incendiaries\n", + "incendiary\n", + "incense\n", + "incensed\n", + "incenses\n", + "incensing\n", + "incentive\n", + "incentives\n", + "incept\n", + "incepted\n", + "incepting\n", + "inception\n", + "inceptions\n", + "inceptor\n", + "inceptors\n", + "incepts\n", + "incessant\n", + "incessantly\n", + "incest\n", + "incests\n", + "incestuous\n", + "inch\n", + "inched\n", + "inches\n", + "inching\n", + "inchmeal\n", + "inchoate\n", + "inchworm\n", + "inchworms\n", + "incidence\n", + "incidences\n", + "incident\n", + "incidental\n", + "incidentally\n", + "incidentals\n", + "incidents\n", + "incinerate\n", + "incinerated\n", + "incinerates\n", + "incinerating\n", + "incinerator\n", + "incinerators\n", + "incipient\n", + "incipit\n", + "incipits\n", + "incise\n", + "incised\n", + "incises\n", + "incising\n", + "incision\n", + "incisions\n", + "incisive\n", + "incisively\n", + "incisor\n", + "incisors\n", + "incisory\n", + "incisure\n", + "incisures\n", + "incitant\n", + "incitants\n", + "incite\n", + "incited\n", + "incitement\n", + "incitements\n", + "inciter\n", + "inciters\n", + "incites\n", + "inciting\n", + "incivil\n", + "incivilities\n", + "incivility\n", + "inclasp\n", + "inclasped\n", + "inclasping\n", + "inclasps\n", + "inclemencies\n", + "inclemency\n", + "inclement\n", + "inclination\n", + "inclinations\n", + "incline\n", + "inclined\n", + "incliner\n", + "incliners\n", + "inclines\n", + "inclining\n", + "inclip\n", + "inclipped\n", + "inclipping\n", + "inclips\n", + "inclose\n", + "inclosed\n", + "incloser\n", + "inclosers\n", + "incloses\n", + "inclosing\n", + "inclosure\n", + "inclosures\n", + "include\n", + "included\n", + "includes\n", + "including\n", + "inclusion\n", + "inclusions\n", + "inclusive\n", + "incog\n", + "incognito\n", + "incogs\n", + "incoherence\n", + "incoherences\n", + "incoherent\n", + "incoherently\n", + "incohesive\n", + "incombustible\n", + "income\n", + "incomer\n", + "incomers\n", + "incomes\n", + "incoming\n", + "incomings\n", + "incommensurate\n", + "incommodious\n", + "incommunicable\n", + "incommunicado\n", + "incomparable\n", + "incompatibility\n", + "incompatible\n", + "incompetence\n", + "incompetences\n", + "incompetencies\n", + "incompetency\n", + "incompetent\n", + "incompetents\n", + "incomplete\n", + "incompletely\n", + "incompleteness\n", + "incompletenesses\n", + "incomprehensible\n", + "inconceivable\n", + "inconceivably\n", + "inconclusive\n", + "incongruent\n", + "incongruities\n", + "incongruity\n", + "incongruous\n", + "incongruously\n", + "inconnu\n", + "inconnus\n", + "inconsecutive\n", + "inconsequence\n", + "inconsequences\n", + "inconsequential\n", + "inconsequentially\n", + "inconsiderable\n", + "inconsiderate\n", + "inconsiderately\n", + "inconsiderateness\n", + "inconsideratenesses\n", + "inconsistencies\n", + "inconsistency\n", + "inconsistent\n", + "inconsistently\n", + "inconsolable\n", + "inconsolably\n", + "inconspicuous\n", + "inconspicuously\n", + "inconstancies\n", + "inconstancy\n", + "inconstant\n", + "inconstantly\n", + "inconsumable\n", + "incontestable\n", + "incontestably\n", + "incontinence\n", + "incontinences\n", + "inconvenience\n", + "inconvenienced\n", + "inconveniences\n", + "inconveniencing\n", + "inconvenient\n", + "inconveniently\n", + "incony\n", + "incorporate\n", + "incorporated\n", + "incorporates\n", + "incorporating\n", + "incorporation\n", + "incorporations\n", + "incorporeal\n", + "incorporeally\n", + "incorpse\n", + "incorpsed\n", + "incorpses\n", + "incorpsing\n", + "incorrect\n", + "incorrectly\n", + "incorrectness\n", + "incorrectnesses\n", + "incorrigibilities\n", + "incorrigibility\n", + "incorrigible\n", + "incorrigibly\n", + "incorruptible\n", + "increase\n", + "increased\n", + "increases\n", + "increasing\n", + "increasingly\n", + "increate\n", + "incredibilities\n", + "incredibility\n", + "incredible\n", + "incredibly\n", + "incredulities\n", + "incredulity\n", + "incredulous\n", + "incredulously\n", + "increment\n", + "incremental\n", + "incremented\n", + "incrementing\n", + "increments\n", + "incriminate\n", + "incriminated\n", + "incriminates\n", + "incriminating\n", + "incrimination\n", + "incriminations\n", + "incriminatory\n", + "incross\n", + "incrosses\n", + "incrust\n", + "incrusted\n", + "incrusting\n", + "incrusts\n", + "incubate\n", + "incubated\n", + "incubates\n", + "incubating\n", + "incubation\n", + "incubations\n", + "incubator\n", + "incubators\n", + "incubi\n", + "incubus\n", + "incubuses\n", + "incudal\n", + "incudate\n", + "incudes\n", + "inculcate\n", + "inculcated\n", + "inculcates\n", + "inculcating\n", + "inculcation\n", + "inculcations\n", + "inculpable\n", + "incult\n", + "incumbencies\n", + "incumbency\n", + "incumbent\n", + "incumbents\n", + "incumber\n", + "incumbered\n", + "incumbering\n", + "incumbers\n", + "incur\n", + "incurable\n", + "incurious\n", + "incurred\n", + "incurring\n", + "incurs\n", + "incursion\n", + "incursions\n", + "incurve\n", + "incurved\n", + "incurves\n", + "incurving\n", + "incus\n", + "incuse\n", + "incused\n", + "incuses\n", + "incusing\n", + "indaba\n", + "indabas\n", + "indagate\n", + "indagated\n", + "indagates\n", + "indagating\n", + "indamin\n", + "indamine\n", + "indamines\n", + "indamins\n", + "indebted\n", + "indebtedness\n", + "indebtednesses\n", + "indecencies\n", + "indecency\n", + "indecent\n", + "indecenter\n", + "indecentest\n", + "indecently\n", + "indecipherable\n", + "indecision\n", + "indecisions\n", + "indecisive\n", + "indecisively\n", + "indecisiveness\n", + "indecisivenesses\n", + "indecorous\n", + "indecorously\n", + "indecorousness\n", + "indecorousnesses\n", + "indeed\n", + "indefatigable\n", + "indefatigably\n", + "indefensible\n", + "indefinable\n", + "indefinably\n", + "indefinite\n", + "indefinitely\n", + "indelible\n", + "indelibly\n", + "indelicacies\n", + "indelicacy\n", + "indelicate\n", + "indemnification\n", + "indemnifications\n", + "indemnified\n", + "indemnifies\n", + "indemnify\n", + "indemnifying\n", + "indemnities\n", + "indemnity\n", + "indene\n", + "indenes\n", + "indent\n", + "indentation\n", + "indentations\n", + "indented\n", + "indenter\n", + "indenters\n", + "indenting\n", + "indentor\n", + "indentors\n", + "indents\n", + "indenture\n", + "indentured\n", + "indentures\n", + "indenturing\n", + "independence\n", + "independent\n", + "independently\n", + "indescribable\n", + "indescribably\n", + "indestrucibility\n", + "indestrucible\n", + "indeterminacies\n", + "indeterminacy\n", + "indeterminate\n", + "indeterminately\n", + "indevout\n", + "index\n", + "indexed\n", + "indexer\n", + "indexers\n", + "indexes\n", + "indexing\n", + "india\n", + "indican\n", + "indicans\n", + "indicant\n", + "indicants\n", + "indicate\n", + "indicated\n", + "indicates\n", + "indicating\n", + "indication\n", + "indications\n", + "indicative\n", + "indicator\n", + "indicators\n", + "indices\n", + "indicia\n", + "indicias\n", + "indicium\n", + "indiciums\n", + "indict\n", + "indictable\n", + "indicted\n", + "indictee\n", + "indictees\n", + "indicter\n", + "indicters\n", + "indicting\n", + "indictment\n", + "indictments\n", + "indictor\n", + "indictors\n", + "indicts\n", + "indifference\n", + "indifferences\n", + "indifferent\n", + "indifferently\n", + "indigen\n", + "indigence\n", + "indigences\n", + "indigene\n", + "indigenes\n", + "indigenous\n", + "indigens\n", + "indigent\n", + "indigents\n", + "indigestible\n", + "indigestion\n", + "indigestions\n", + "indign\n", + "indignant\n", + "indignantly\n", + "indignation\n", + "indignations\n", + "indignities\n", + "indignity\n", + "indignly\n", + "indigo\n", + "indigoes\n", + "indigoid\n", + "indigoids\n", + "indigos\n", + "indirect\n", + "indirection\n", + "indirections\n", + "indirectly\n", + "indirectness\n", + "indirectnesses\n", + "indiscernible\n", + "indiscreet\n", + "indiscretion\n", + "indiscretions\n", + "indiscriminate\n", + "indiscriminately\n", + "indispensabilities\n", + "indispensability\n", + "indispensable\n", + "indispensables\n", + "indispensably\n", + "indisposed\n", + "indisposition\n", + "indispositions\n", + "indisputable\n", + "indisputably\n", + "indissoluble\n", + "indistinct\n", + "indistinctly\n", + "indistinctness\n", + "indistinctnesses\n", + "indistinguishable\n", + "indite\n", + "indited\n", + "inditer\n", + "inditers\n", + "indites\n", + "inditing\n", + "indium\n", + "indiums\n", + "individual\n", + "individualities\n", + "individuality\n", + "individualize\n", + "individualized\n", + "individualizes\n", + "individualizing\n", + "individually\n", + "individuals\n", + "indivisibility\n", + "indivisible\n", + "indocile\n", + "indoctrinate\n", + "indoctrinated\n", + "indoctrinates\n", + "indoctrinating\n", + "indoctrination\n", + "indoctrinations\n", + "indol\n", + "indole\n", + "indolence\n", + "indolences\n", + "indolent\n", + "indoles\n", + "indols\n", + "indominitable\n", + "indominitably\n", + "indoor\n", + "indoors\n", + "indorse\n", + "indorsed\n", + "indorsee\n", + "indorsees\n", + "indorser\n", + "indorsers\n", + "indorses\n", + "indorsing\n", + "indorsor\n", + "indorsors\n", + "indow\n", + "indowed\n", + "indowing\n", + "indows\n", + "indoxyl\n", + "indoxyls\n", + "indraft\n", + "indrafts\n", + "indrawn\n", + "indri\n", + "indris\n", + "indubitable\n", + "indubitably\n", + "induce\n", + "induced\n", + "inducement\n", + "inducements\n", + "inducer\n", + "inducers\n", + "induces\n", + "inducing\n", + "induct\n", + "inducted\n", + "inductee\n", + "inductees\n", + "inducting\n", + "induction\n", + "inductions\n", + "inductive\n", + "inductor\n", + "inductors\n", + "inducts\n", + "indue\n", + "indued\n", + "indues\n", + "induing\n", + "indulge\n", + "indulged\n", + "indulgence\n", + "indulgent\n", + "indulgently\n", + "indulger\n", + "indulgers\n", + "indulges\n", + "indulging\n", + "indulin\n", + "induline\n", + "indulines\n", + "indulins\n", + "indult\n", + "indults\n", + "indurate\n", + "indurated\n", + "indurates\n", + "indurating\n", + "indusia\n", + "indusial\n", + "indusium\n", + "industrial\n", + "industrialist\n", + "industrialization\n", + "industrializations\n", + "industrialize\n", + "industrialized\n", + "industrializes\n", + "industrializing\n", + "industrially\n", + "industries\n", + "industrious\n", + "industriously\n", + "industriousness\n", + "industriousnesses\n", + "industry\n", + "indwell\n", + "indwelling\n", + "indwells\n", + "indwelt\n", + "inearth\n", + "inearthed\n", + "inearthing\n", + "inearths\n", + "inebriate\n", + "inebriated\n", + "inebriates\n", + "inebriating\n", + "inebriation\n", + "inebriations\n", + "inedible\n", + "inedita\n", + "inedited\n", + "ineducable\n", + "ineffable\n", + "ineffably\n", + "ineffective\n", + "ineffectively\n", + "ineffectiveness\n", + "ineffectivenesses\n", + "ineffectual\n", + "ineffectually\n", + "ineffectualness\n", + "ineffectualnesses\n", + "inefficiency\n", + "inefficient\n", + "inefficiently\n", + "inelastic\n", + "inelasticities\n", + "inelasticity\n", + "inelegance\n", + "inelegances\n", + "inelegant\n", + "ineligibility\n", + "ineligible\n", + "inept\n", + "ineptitude\n", + "ineptitudes\n", + "ineptly\n", + "ineptness\n", + "ineptnesses\n", + "inequalities\n", + "inequality\n", + "inequities\n", + "inequity\n", + "ineradicable\n", + "inerrant\n", + "inert\n", + "inertia\n", + "inertiae\n", + "inertial\n", + "inertias\n", + "inertly\n", + "inertness\n", + "inertnesses\n", + "inerts\n", + "inescapable\n", + "inescapably\n", + "inessential\n", + "inestimable\n", + "inestimably\n", + "inevitabilities\n", + "inevitability\n", + "inevitable\n", + "inevitably\n", + "inexact\n", + "inexcusable\n", + "inexcusably\n", + "inexhaustible\n", + "inexhaustibly\n", + "inexorable\n", + "inexorably\n", + "inexpedient\n", + "inexpensive\n", + "inexperience\n", + "inexperienced\n", + "inexperiences\n", + "inexpert\n", + "inexpertly\n", + "inexpertness\n", + "inexpertnesses\n", + "inexperts\n", + "inexplicable\n", + "inexplicably\n", + "inexplicit\n", + "inexpressible\n", + "inexpressibly\n", + "inextinguishable\n", + "inextricable\n", + "inextricably\n", + "infallibility\n", + "infallible\n", + "infallibly\n", + "infamies\n", + "infamous\n", + "infamously\n", + "infamy\n", + "infancies\n", + "infancy\n", + "infant\n", + "infanta\n", + "infantas\n", + "infante\n", + "infantes\n", + "infantile\n", + "infantries\n", + "infantry\n", + "infants\n", + "infarct\n", + "infarcts\n", + "infare\n", + "infares\n", + "infatuate\n", + "infatuated\n", + "infatuates\n", + "infatuating\n", + "infatuation\n", + "infatuations\n", + "infauna\n", + "infaunae\n", + "infaunal\n", + "infaunas\n", + "infeasibilities\n", + "infeasibility\n", + "infeasible\n", + "infect\n", + "infected\n", + "infecter\n", + "infecters\n", + "infecting\n", + "infection\n", + "infections\n", + "infectious\n", + "infective\n", + "infector\n", + "infectors\n", + "infects\n", + "infecund\n", + "infelicities\n", + "infelicitous\n", + "infelicity\n", + "infeoff\n", + "infeoffed\n", + "infeoffing\n", + "infeoffs\n", + "infer\n", + "inference\n", + "inferenced\n", + "inferences\n", + "inferencing\n", + "inferential\n", + "inferior\n", + "inferiority\n", + "inferiors\n", + "infernal\n", + "infernally\n", + "inferno\n", + "infernos\n", + "inferred\n", + "inferrer\n", + "inferrers\n", + "inferring\n", + "infers\n", + "infertile\n", + "infertilities\n", + "infertility\n", + "infest\n", + "infestation\n", + "infestations\n", + "infested\n", + "infester\n", + "infesters\n", + "infesting\n", + "infests\n", + "infidel\n", + "infidelities\n", + "infidelity\n", + "infidels\n", + "infield\n", + "infielder\n", + "infielders\n", + "infields\n", + "infiltrate\n", + "infiltrated\n", + "infiltrates\n", + "infiltrating\n", + "infiltration\n", + "infiltrations\n", + "infinite\n", + "infinitely\n", + "infinites\n", + "infinitesimal\n", + "infinitesimally\n", + "infinities\n", + "infinitive\n", + "infinitives\n", + "infinitude\n", + "infinitudes\n", + "infinity\n", + "infirm\n", + "infirmaries\n", + "infirmary\n", + "infirmed\n", + "infirming\n", + "infirmities\n", + "infirmity\n", + "infirmly\n", + "infirms\n", + "infix\n", + "infixed\n", + "infixes\n", + "infixing\n", + "infixion\n", + "infixions\n", + "inflame\n", + "inflamed\n", + "inflamer\n", + "inflamers\n", + "inflames\n", + "inflaming\n", + "inflammable\n", + "inflammation\n", + "inflammations\n", + "inflammatory\n", + "inflatable\n", + "inflate\n", + "inflated\n", + "inflater\n", + "inflaters\n", + "inflates\n", + "inflating\n", + "inflation\n", + "inflationary\n", + "inflator\n", + "inflators\n", + "inflect\n", + "inflected\n", + "inflecting\n", + "inflection\n", + "inflectional\n", + "inflections\n", + "inflects\n", + "inflexed\n", + "inflexibilities\n", + "inflexibility\n", + "inflexible\n", + "inflexibly\n", + "inflict\n", + "inflicted\n", + "inflicting\n", + "infliction\n", + "inflictions\n", + "inflicts\n", + "inflight\n", + "inflow\n", + "inflows\n", + "influence\n", + "influences\n", + "influent\n", + "influential\n", + "influents\n", + "influenza\n", + "influenzas\n", + "influx\n", + "influxes\n", + "info\n", + "infold\n", + "infolded\n", + "infolder\n", + "infolders\n", + "infolding\n", + "infolds\n", + "inform\n", + "informal\n", + "informalities\n", + "informality\n", + "informally\n", + "informant\n", + "informants\n", + "information\n", + "informational\n", + "informations\n", + "informative\n", + "informed\n", + "informer\n", + "informers\n", + "informing\n", + "informs\n", + "infos\n", + "infra\n", + "infract\n", + "infracted\n", + "infracting\n", + "infraction\n", + "infractions\n", + "infracts\n", + "infrared\n", + "infrareds\n", + "infrequent\n", + "infrequently\n", + "infringe\n", + "infringed\n", + "infringement\n", + "infringements\n", + "infringes\n", + "infringing\n", + "infrugal\n", + "infuriate\n", + "infuriated\n", + "infuriates\n", + "infuriating\n", + "infuriatingly\n", + "infuse\n", + "infused\n", + "infuser\n", + "infusers\n", + "infuses\n", + "infusing\n", + "infusion\n", + "infusions\n", + "infusive\n", + "ingate\n", + "ingates\n", + "ingather\n", + "ingathered\n", + "ingathering\n", + "ingathers\n", + "ingenious\n", + "ingeniously\n", + "ingeniousness\n", + "ingeniousnesses\n", + "ingenue\n", + "ingenues\n", + "ingenuities\n", + "ingenuity\n", + "ingenuous\n", + "ingenuously\n", + "ingenuousness\n", + "ingenuousnesses\n", + "ingest\n", + "ingesta\n", + "ingested\n", + "ingesting\n", + "ingests\n", + "ingle\n", + "inglenook\n", + "inglenooks\n", + "ingles\n", + "inglorious\n", + "ingloriously\n", + "ingoing\n", + "ingot\n", + "ingoted\n", + "ingoting\n", + "ingots\n", + "ingraft\n", + "ingrafted\n", + "ingrafting\n", + "ingrafts\n", + "ingrain\n", + "ingrained\n", + "ingraining\n", + "ingrains\n", + "ingrate\n", + "ingrates\n", + "ingratiate\n", + "ingratiated\n", + "ingratiates\n", + "ingratiating\n", + "ingratitude\n", + "ingratitudes\n", + "ingredient\n", + "ingredients\n", + "ingress\n", + "ingresses\n", + "ingroup\n", + "ingroups\n", + "ingrown\n", + "ingrowth\n", + "ingrowths\n", + "inguinal\n", + "ingulf\n", + "ingulfed\n", + "ingulfing\n", + "ingulfs\n", + "inhabit\n", + "inhabitable\n", + "inhabitant\n", + "inhabited\n", + "inhabiting\n", + "inhabits\n", + "inhalant\n", + "inhalants\n", + "inhalation\n", + "inhalations\n", + "inhale\n", + "inhaled\n", + "inhaler\n", + "inhalers\n", + "inhales\n", + "inhaling\n", + "inhaul\n", + "inhauler\n", + "inhaulers\n", + "inhauls\n", + "inhere\n", + "inhered\n", + "inherent\n", + "inherently\n", + "inheres\n", + "inhering\n", + "inherit\n", + "inheritance\n", + "inheritances\n", + "inherited\n", + "inheriting\n", + "inheritor\n", + "inheritors\n", + "inherits\n", + "inhesion\n", + "inhesions\n", + "inhibit\n", + "inhibited\n", + "inhibiting\n", + "inhibition\n", + "inhibitions\n", + "inhibits\n", + "inhuman\n", + "inhumane\n", + "inhumanely\n", + "inhumanities\n", + "inhumanity\n", + "inhumanly\n", + "inhume\n", + "inhumed\n", + "inhumer\n", + "inhumers\n", + "inhumes\n", + "inhuming\n", + "inia\n", + "inimical\n", + "inimically\n", + "inimitable\n", + "inion\n", + "iniquities\n", + "iniquitous\n", + "iniquity\n", + "initial\n", + "initialed\n", + "initialing\n", + "initialization\n", + "initializations\n", + "initialize\n", + "initialized\n", + "initializes\n", + "initializing\n", + "initialled\n", + "initialling\n", + "initially\n", + "initials\n", + "initiate\n", + "initiated\n", + "initiates\n", + "initiating\n", + "initiation\n", + "initiations\n", + "initiative\n", + "initiatory\n", + "inject\n", + "injected\n", + "injecting\n", + "injection\n", + "injections\n", + "injector\n", + "injectors\n", + "injects\n", + "injudicious\n", + "injudiciously\n", + "injudiciousness\n", + "injudiciousnesses\n", + "injunction\n", + "injunctions\n", + "injure\n", + "injured\n", + "injurer\n", + "injurers\n", + "injures\n", + "injuries\n", + "injuring\n", + "injurious\n", + "injury\n", + "ink\n", + "inkberries\n", + "inkberry\n", + "inkblot\n", + "inkblots\n", + "inked\n", + "inker\n", + "inkers\n", + "inkhorn\n", + "inkhorns\n", + "inkier\n", + "inkiest\n", + "inkiness\n", + "inkinesses\n", + "inking\n", + "inkle\n", + "inkles\n", + "inkless\n", + "inklike\n", + "inkling\n", + "inklings\n", + "inkpot\n", + "inkpots\n", + "inks\n", + "inkstand\n", + "inkstands\n", + "inkwell\n", + "inkwells\n", + "inkwood\n", + "inkwoods\n", + "inky\n", + "inlace\n", + "inlaced\n", + "inlaces\n", + "inlacing\n", + "inlaid\n", + "inland\n", + "inlander\n", + "inlanders\n", + "inlands\n", + "inlay\n", + "inlayer\n", + "inlayers\n", + "inlaying\n", + "inlays\n", + "inlet\n", + "inlets\n", + "inletting\n", + "inlier\n", + "inliers\n", + "inly\n", + "inmate\n", + "inmates\n", + "inmesh\n", + "inmeshed\n", + "inmeshes\n", + "inmeshing\n", + "inmost\n", + "inn\n", + "innards\n", + "innate\n", + "innately\n", + "inned\n", + "inner\n", + "innerly\n", + "innermost\n", + "inners\n", + "innersole\n", + "innersoles\n", + "innerve\n", + "innerved\n", + "innerves\n", + "innerving\n", + "inning\n", + "innings\n", + "innkeeper\n", + "innkeepers\n", + "innless\n", + "innocence\n", + "innocences\n", + "innocent\n", + "innocenter\n", + "innocentest\n", + "innocently\n", + "innocents\n", + "innocuous\n", + "innovate\n", + "innovated\n", + "innovates\n", + "innovating\n", + "innovation\n", + "innovations\n", + "innovative\n", + "innovator\n", + "innovators\n", + "inns\n", + "innuendo\n", + "innuendoed\n", + "innuendoes\n", + "innuendoing\n", + "innuendos\n", + "innumerable\n", + "inocula\n", + "inoculate\n", + "inoculated\n", + "inoculates\n", + "inoculating\n", + "inoculation\n", + "inoculations\n", + "inoculum\n", + "inoculums\n", + "inoffensive\n", + "inoperable\n", + "inoperative\n", + "inopportune\n", + "inopportunely\n", + "inordinate\n", + "inordinately\n", + "inorganic\n", + "inosite\n", + "inosites\n", + "inositol\n", + "inositols\n", + "inpatient\n", + "inpatients\n", + "inphase\n", + "inpour\n", + "inpoured\n", + "inpouring\n", + "inpours\n", + "input\n", + "inputs\n", + "inputted\n", + "inputting\n", + "inquest\n", + "inquests\n", + "inquiet\n", + "inquieted\n", + "inquieting\n", + "inquiets\n", + "inquire\n", + "inquired\n", + "inquirer\n", + "inquirers\n", + "inquires\n", + "inquiries\n", + "inquiring\n", + "inquiringly\n", + "inquiry\n", + "inquisition\n", + "inquisitions\n", + "inquisitive\n", + "inquisitively\n", + "inquisitiveness\n", + "inquisitivenesses\n", + "inquisitor\n", + "inquisitorial\n", + "inquisitors\n", + "inroad\n", + "inroads\n", + "inrush\n", + "inrushes\n", + "ins\n", + "insalubrious\n", + "insane\n", + "insanely\n", + "insaner\n", + "insanest\n", + "insanities\n", + "insanity\n", + "insatiable\n", + "insatiate\n", + "inscribe\n", + "inscribed\n", + "inscribes\n", + "inscribing\n", + "inscription\n", + "inscriptions\n", + "inscroll\n", + "inscrolled\n", + "inscrolling\n", + "inscrolls\n", + "inscrutable\n", + "inscrutably\n", + "insculp\n", + "insculped\n", + "insculping\n", + "insculps\n", + "inseam\n", + "inseams\n", + "insect\n", + "insectan\n", + "insecticidal\n", + "insecticide\n", + "insecticides\n", + "insects\n", + "insecuration\n", + "insecurations\n", + "insecure\n", + "insecurely\n", + "insecurities\n", + "insecurity\n", + "insensibilities\n", + "insensibility\n", + "insensible\n", + "insensibly\n", + "insensitive\n", + "insensitivities\n", + "insensitivity\n", + "insentience\n", + "insentiences\n", + "insentient\n", + "inseparable\n", + "insert\n", + "inserted\n", + "inserter\n", + "inserters\n", + "inserting\n", + "insertion\n", + "insertions\n", + "inserts\n", + "inset\n", + "insets\n", + "insetted\n", + "insetter\n", + "insetters\n", + "insetting\n", + "insheath\n", + "insheathed\n", + "insheathing\n", + "insheaths\n", + "inshore\n", + "inshrine\n", + "inshrined\n", + "inshrines\n", + "inshrining\n", + "inside\n", + "insider\n", + "insiders\n", + "insides\n", + "insidious\n", + "insidiously\n", + "insidiousness\n", + "insidiousnesses\n", + "insight\n", + "insightful\n", + "insights\n", + "insigne\n", + "insignia\n", + "insignias\n", + "insignificant\n", + "insincere\n", + "insincerely\n", + "insincerities\n", + "insincerity\n", + "insinuate\n", + "insinuated\n", + "insinuates\n", + "insinuating\n", + "insinuation\n", + "insinuations\n", + "insipid\n", + "insipidities\n", + "insipidity\n", + "insipidus\n", + "insist\n", + "insisted\n", + "insistence\n", + "insistences\n", + "insistent\n", + "insistently\n", + "insister\n", + "insisters\n", + "insisting\n", + "insists\n", + "insnare\n", + "insnared\n", + "insnarer\n", + "insnarers\n", + "insnares\n", + "insnaring\n", + "insofar\n", + "insolate\n", + "insolated\n", + "insolates\n", + "insolating\n", + "insole\n", + "insolence\n", + "insolences\n", + "insolent\n", + "insolents\n", + "insoles\n", + "insolubilities\n", + "insolubility\n", + "insoluble\n", + "insolvencies\n", + "insolvency\n", + "insolvent\n", + "insomnia\n", + "insomnias\n", + "insomuch\n", + "insouciance\n", + "insouciances\n", + "insouciant\n", + "insoul\n", + "insouled\n", + "insouling\n", + "insouls\n", + "inspan\n", + "inspanned\n", + "inspanning\n", + "inspans\n", + "inspect\n", + "inspected\n", + "inspecting\n", + "inspection\n", + "inspections\n", + "inspector\n", + "inspectors\n", + "inspects\n", + "insphere\n", + "insphered\n", + "inspheres\n", + "insphering\n", + "inspiration\n", + "inspirational\n", + "inspirations\n", + "inspire\n", + "inspired\n", + "inspirer\n", + "inspirers\n", + "inspires\n", + "inspiring\n", + "inspirit\n", + "inspirited\n", + "inspiriting\n", + "inspirits\n", + "instabilities\n", + "instability\n", + "instable\n", + "instal\n", + "install\n", + "installation\n", + "installations\n", + "installed\n", + "installing\n", + "installment\n", + "installments\n", + "installs\n", + "instals\n", + "instance\n", + "instanced\n", + "instances\n", + "instancies\n", + "instancing\n", + "instancy\n", + "instant\n", + "instantaneous\n", + "instantaneously\n", + "instantly\n", + "instants\n", + "instar\n", + "instarred\n", + "instarring\n", + "instars\n", + "instate\n", + "instated\n", + "instates\n", + "instating\n", + "instead\n", + "instep\n", + "insteps\n", + "instigate\n", + "instigated\n", + "instigates\n", + "instigating\n", + "instigation\n", + "instigations\n", + "instigator\n", + "instigators\n", + "instil\n", + "instill\n", + "instilled\n", + "instilling\n", + "instills\n", + "instils\n", + "instinct\n", + "instinctive\n", + "instinctively\n", + "instincts\n", + "institute\n", + "institutes\n", + "institution\n", + "institutional\n", + "institutionalize\n", + "institutionally\n", + "institutions\n", + "instransitive\n", + "instroke\n", + "instrokes\n", + "instruct\n", + "instructed\n", + "instructing\n", + "instruction\n", + "instructional\n", + "instructions\n", + "instructive\n", + "instructor\n", + "instructors\n", + "instructorship\n", + "instructorships\n", + "instructs\n", + "instrument\n", + "instrumental\n", + "instrumentalist\n", + "instrumentalists\n", + "instrumentalities\n", + "instrumentality\n", + "instrumentals\n", + "instrumentation\n", + "instrumentations\n", + "instruments\n", + "insubordinate\n", + "insubordination\n", + "insubordinations\n", + "insubstantial\n", + "insufferable\n", + "insufferably\n", + "insufficent\n", + "insufficiencies\n", + "insufficiency\n", + "insufficient\n", + "insufficiently\n", + "insulant\n", + "insulants\n", + "insular\n", + "insularities\n", + "insularity\n", + "insulars\n", + "insulate\n", + "insulated\n", + "insulates\n", + "insulating\n", + "insulation\n", + "insulations\n", + "insulator\n", + "insulators\n", + "insulin\n", + "insulins\n", + "insult\n", + "insulted\n", + "insulter\n", + "insulters\n", + "insulting\n", + "insultingly\n", + "insults\n", + "insuperable\n", + "insuperably\n", + "insupportable\n", + "insurable\n", + "insurance\n", + "insurances\n", + "insurant\n", + "insurants\n", + "insure\n", + "insured\n", + "insureds\n", + "insurer\n", + "insurers\n", + "insures\n", + "insurgence\n", + "insurgences\n", + "insurgencies\n", + "insurgency\n", + "insurgent\n", + "insurgents\n", + "insuring\n", + "insurmounable\n", + "insurmounably\n", + "insurrection\n", + "insurrectionist\n", + "insurrectionists\n", + "insurrections\n", + "inswathe\n", + "inswathed\n", + "inswathes\n", + "inswathing\n", + "inswept\n", + "intact\n", + "intagli\n", + "intaglio\n", + "intaglios\n", + "intake\n", + "intakes\n", + "intangibilities\n", + "intangibility\n", + "intangible\n", + "intangibly\n", + "intarsia\n", + "intarsias\n", + "integer\n", + "integers\n", + "integral\n", + "integrals\n", + "integrate\n", + "integrated\n", + "integrates\n", + "integrating\n", + "integration\n", + "integrities\n", + "integrity\n", + "intellect\n", + "intellects\n", + "intellectual\n", + "intellectualism\n", + "intellectualisms\n", + "intellectually\n", + "intellectuals\n", + "intelligence\n", + "intelligent\n", + "intelligently\n", + "intelligibilities\n", + "intelligibility\n", + "intelligible\n", + "intelligibly\n", + "intemperance\n", + "intemperances\n", + "intemperate\n", + "intemperateness\n", + "intemperatenesses\n", + "intend\n", + "intended\n", + "intendeds\n", + "intender\n", + "intenders\n", + "intending\n", + "intends\n", + "intense\n", + "intensely\n", + "intenser\n", + "intensest\n", + "intensification\n", + "intensifications\n", + "intensified\n", + "intensifies\n", + "intensify\n", + "intensifying\n", + "intensities\n", + "intensity\n", + "intensive\n", + "intensively\n", + "intent\n", + "intention\n", + "intentional\n", + "intentionally\n", + "intentions\n", + "intently\n", + "intentness\n", + "intentnesses\n", + "intents\n", + "inter\n", + "interact\n", + "interacted\n", + "interacting\n", + "interaction\n", + "interactions\n", + "interactive\n", + "interactively\n", + "interacts\n", + "interagency\n", + "interatomic\n", + "interbank\n", + "interborough\n", + "interbred\n", + "interbreed\n", + "interbreeding\n", + "interbreeds\n", + "interbusiness\n", + "intercalate\n", + "intercalated\n", + "intercalates\n", + "intercalating\n", + "intercalation\n", + "intercalations\n", + "intercampus\n", + "intercede\n", + "interceded\n", + "intercedes\n", + "interceding\n", + "intercept\n", + "intercepted\n", + "intercepting\n", + "interception\n", + "interceptions\n", + "interceptor\n", + "interceptors\n", + "intercepts\n", + "intercession\n", + "intercessions\n", + "intercessor\n", + "intercessors\n", + "intercessory\n", + "interchange\n", + "interchangeable\n", + "interchangeably\n", + "interchanged\n", + "interchanges\n", + "interchanging\n", + "interchurch\n", + "intercity\n", + "interclass\n", + "intercoastal\n", + "intercollegiate\n", + "intercolonial\n", + "intercom\n", + "intercommunal\n", + "intercommunity\n", + "intercompany\n", + "intercoms\n", + "intercontinental\n", + "interconversion\n", + "intercounty\n", + "intercourse\n", + "intercourses\n", + "intercultural\n", + "intercurrent\n", + "intercut\n", + "intercuts\n", + "intercutting\n", + "interdenominational\n", + "interdepartmental\n", + "interdependence\n", + "interdependences\n", + "interdependent\n", + "interdict\n", + "interdicted\n", + "interdicting\n", + "interdiction\n", + "interdictions\n", + "interdicts\n", + "interdivisional\n", + "interelectronic\n", + "interest\n", + "interested\n", + "interesting\n", + "interestingly\n", + "interests\n", + "interethnic\n", + "interface\n", + "interfaces\n", + "interfacial\n", + "interfaculty\n", + "interfamily\n", + "interfere\n", + "interfered\n", + "interference\n", + "interferences\n", + "interferes\n", + "interfering\n", + "interfiber\n", + "interfraternity\n", + "intergalactic\n", + "intergang\n", + "intergovernmental\n", + "intergroup\n", + "interhemispheric\n", + "interim\n", + "interims\n", + "interindustry\n", + "interinstitutional\n", + "interior\n", + "interiors\n", + "interisland\n", + "interject\n", + "interjected\n", + "interjecting\n", + "interjection\n", + "interjectionally\n", + "interjections\n", + "interjects\n", + "interlace\n", + "interlaced\n", + "interlaces\n", + "interlacing\n", + "interlaid\n", + "interlap\n", + "interlapped\n", + "interlapping\n", + "interlaps\n", + "interlard\n", + "interlards\n", + "interlay\n", + "interlaying\n", + "interlays\n", + "interleave\n", + "interleaved\n", + "interleaves\n", + "interleaving\n", + "interlibrary\n", + "interlinear\n", + "interlock\n", + "interlocked\n", + "interlocking\n", + "interlocks\n", + "interlope\n", + "interloped\n", + "interloper\n", + "interlopers\n", + "interlopes\n", + "interloping\n", + "interlude\n", + "interludes\n", + "intermarriage\n", + "intermarriages\n", + "intermarried\n", + "intermarries\n", + "intermarry\n", + "intermarrying\n", + "intermediaries\n", + "intermediary\n", + "intermediate\n", + "intermediates\n", + "interment\n", + "interments\n", + "interminable\n", + "interminably\n", + "intermingle\n", + "intermingled\n", + "intermingles\n", + "intermingling\n", + "intermission\n", + "intermissions\n", + "intermit\n", + "intermits\n", + "intermitted\n", + "intermittent\n", + "intermittently\n", + "intermitting\n", + "intermix\n", + "intermixed\n", + "intermixes\n", + "intermixing\n", + "intermixture\n", + "intermixtures\n", + "intermolecular\n", + "intermountain\n", + "intern\n", + "internal\n", + "internally\n", + "internals\n", + "international\n", + "internationalism\n", + "internationalisms\n", + "internationalize\n", + "internationalized\n", + "internationalizes\n", + "internationalizing\n", + "internationally\n", + "internationals\n", + "interne\n", + "interned\n", + "internee\n", + "internees\n", + "internes\n", + "interning\n", + "internist\n", + "internists\n", + "internment\n", + "internments\n", + "interns\n", + "internship\n", + "internships\n", + "interoceanic\n", + "interoffice\n", + "interparticle\n", + "interparty\n", + "interpersonal\n", + "interplanetary\n", + "interplay\n", + "interplays\n", + "interpolate\n", + "interpolated\n", + "interpolates\n", + "interpolating\n", + "interpolation\n", + "interpolations\n", + "interpopulation\n", + "interpose\n", + "interposed\n", + "interposes\n", + "interposing\n", + "interposition\n", + "interpositions\n", + "interpret\n", + "interpretation\n", + "interpretations\n", + "interpretative\n", + "interpreted\n", + "interpreter\n", + "interpreters\n", + "interpreting\n", + "interpretive\n", + "interprets\n", + "interprovincial\n", + "interpupil\n", + "interquartile\n", + "interracial\n", + "interred\n", + "interreges\n", + "interregional\n", + "interrelate\n", + "interrelated\n", + "interrelatedness\n", + "interrelatednesses\n", + "interrelates\n", + "interrelating\n", + "interrelation\n", + "interrelations\n", + "interrelationship\n", + "interreligious\n", + "interrex\n", + "interring\n", + "interrogate\n", + "interrogated\n", + "interrogates\n", + "interrogating\n", + "interrogation\n", + "interrogations\n", + "interrogative\n", + "interrogatives\n", + "interrogator\n", + "interrogators\n", + "interrogatory\n", + "interrupt\n", + "interrupted\n", + "interrupter\n", + "interrupters\n", + "interrupting\n", + "interruption\n", + "interruptions\n", + "interruptive\n", + "interrupts\n", + "inters\n", + "interscholastic\n", + "intersect\n", + "intersected\n", + "intersecting\n", + "intersection\n", + "intersectional\n", + "intersections\n", + "intersects\n", + "intersex\n", + "intersexes\n", + "intersperse\n", + "interspersed\n", + "intersperses\n", + "interspersing\n", + "interspersion\n", + "interspersions\n", + "interstate\n", + "interstellar\n", + "interstice\n", + "interstices\n", + "intersticial\n", + "interstitial\n", + "intersystem\n", + "interterm\n", + "interterminal\n", + "intertie\n", + "interties\n", + "intertribal\n", + "intertroop\n", + "intertropical\n", + "intertwine\n", + "intertwined\n", + "intertwines\n", + "intertwining\n", + "interuniversity\n", + "interurban\n", + "interval\n", + "intervalley\n", + "intervals\n", + "intervene\n", + "intervened\n", + "intervenes\n", + "intervening\n", + "intervention\n", + "interventions\n", + "interview\n", + "interviewed\n", + "interviewer\n", + "interviewers\n", + "interviewing\n", + "interviews\n", + "intervillage\n", + "interwar\n", + "interweave\n", + "interweaves\n", + "interweaving\n", + "interwoven\n", + "interzonal\n", + "interzone\n", + "intestate\n", + "intestinal\n", + "intestine\n", + "intestines\n", + "inthral\n", + "inthrall\n", + "inthralled\n", + "inthralling\n", + "inthralls\n", + "inthrals\n", + "inthrone\n", + "inthroned\n", + "inthrones\n", + "inthroning\n", + "intima\n", + "intimacies\n", + "intimacy\n", + "intimae\n", + "intimal\n", + "intimas\n", + "intimate\n", + "intimated\n", + "intimately\n", + "intimates\n", + "intimating\n", + "intimation\n", + "intimations\n", + "intime\n", + "intimidate\n", + "intimidated\n", + "intimidates\n", + "intimidating\n", + "intimidation\n", + "intimidations\n", + "intine\n", + "intines\n", + "intitle\n", + "intitled\n", + "intitles\n", + "intitling\n", + "intitule\n", + "intituled\n", + "intitules\n", + "intituling\n", + "into\n", + "intolerable\n", + "intolerably\n", + "intolerance\n", + "intolerances\n", + "intolerant\n", + "intomb\n", + "intombed\n", + "intombing\n", + "intombs\n", + "intonate\n", + "intonated\n", + "intonates\n", + "intonating\n", + "intonation\n", + "intonations\n", + "intone\n", + "intoned\n", + "intoner\n", + "intoners\n", + "intones\n", + "intoning\n", + "intort\n", + "intorted\n", + "intorting\n", + "intorts\n", + "intown\n", + "intoxicant\n", + "intoxicants\n", + "intoxicate\n", + "intoxicated\n", + "intoxicates\n", + "intoxicating\n", + "intoxication\n", + "intoxications\n", + "intractable\n", + "intrados\n", + "intradoses\n", + "intramural\n", + "intransigence\n", + "intransigences\n", + "intransigent\n", + "intransigents\n", + "intrant\n", + "intrants\n", + "intravenous\n", + "intravenously\n", + "intreat\n", + "intreated\n", + "intreating\n", + "intreats\n", + "intrench\n", + "intrenched\n", + "intrenches\n", + "intrenching\n", + "intrepid\n", + "intrepidities\n", + "intrepidity\n", + "intricacies\n", + "intricacy\n", + "intricate\n", + "intricately\n", + "intrigue\n", + "intrigued\n", + "intrigues\n", + "intriguing\n", + "intriguingly\n", + "intrinsic\n", + "intrinsically\n", + "intro\n", + "introduce\n", + "introduced\n", + "introduces\n", + "introducing\n", + "introduction\n", + "introductions\n", + "introductory\n", + "introfied\n", + "introfies\n", + "introfy\n", + "introfying\n", + "introit\n", + "introits\n", + "intromit\n", + "intromits\n", + "intromitted\n", + "intromitting\n", + "introrse\n", + "intros\n", + "introspect\n", + "introspected\n", + "introspecting\n", + "introspection\n", + "introspections\n", + "introspective\n", + "introspectively\n", + "introspects\n", + "introversion\n", + "introversions\n", + "introvert\n", + "introverted\n", + "introverts\n", + "intrude\n", + "intruded\n", + "intruder\n", + "intruders\n", + "intrudes\n", + "intruding\n", + "intrusion\n", + "intrusions\n", + "intrusive\n", + "intrusiveness\n", + "intrusivenesses\n", + "intrust\n", + "intrusted\n", + "intrusting\n", + "intrusts\n", + "intubate\n", + "intubated\n", + "intubates\n", + "intubating\n", + "intuit\n", + "intuited\n", + "intuiting\n", + "intuition\n", + "intuitions\n", + "intuitive\n", + "intuitively\n", + "intuits\n", + "inturn\n", + "inturned\n", + "inturns\n", + "intwine\n", + "intwined\n", + "intwines\n", + "intwining\n", + "intwist\n", + "intwisted\n", + "intwisting\n", + "intwists\n", + "inulase\n", + "inulases\n", + "inulin\n", + "inulins\n", + "inundant\n", + "inundate\n", + "inundated\n", + "inundates\n", + "inundating\n", + "inundation\n", + "inundations\n", + "inurbane\n", + "inure\n", + "inured\n", + "inures\n", + "inuring\n", + "inurn\n", + "inurned\n", + "inurning\n", + "inurns\n", + "inutile\n", + "invade\n", + "invaded\n", + "invader\n", + "invaders\n", + "invades\n", + "invading\n", + "invalid\n", + "invalidate\n", + "invalidated\n", + "invalidates\n", + "invalidating\n", + "invalided\n", + "invaliding\n", + "invalidism\n", + "invalidity\n", + "invalidly\n", + "invalids\n", + "invaluable\n", + "invar\n", + "invariable\n", + "invariably\n", + "invars\n", + "invasion\n", + "invasions\n", + "invasive\n", + "invected\n", + "invective\n", + "invectives\n", + "inveigh\n", + "inveighed\n", + "inveighing\n", + "inveighs\n", + "inveigle\n", + "inveigled\n", + "inveigles\n", + "inveigling\n", + "invent\n", + "invented\n", + "inventer\n", + "inventers\n", + "inventing\n", + "invention\n", + "inventions\n", + "inventive\n", + "inventiveness\n", + "inventivenesses\n", + "inventor\n", + "inventoried\n", + "inventories\n", + "inventors\n", + "inventory\n", + "inventorying\n", + "invents\n", + "inverities\n", + "inverity\n", + "inverse\n", + "inversely\n", + "inverses\n", + "inversion\n", + "inversions\n", + "invert\n", + "inverted\n", + "inverter\n", + "inverters\n", + "invertibrate\n", + "invertibrates\n", + "inverting\n", + "invertor\n", + "invertors\n", + "inverts\n", + "invest\n", + "invested\n", + "investigate\n", + "investigated\n", + "investigates\n", + "investigating\n", + "investigation\n", + "investigations\n", + "investigative\n", + "investigator\n", + "investigators\n", + "investing\n", + "investiture\n", + "investitures\n", + "investment\n", + "investments\n", + "investor\n", + "investors\n", + "invests\n", + "inveteracies\n", + "inveteracy\n", + "inveterate\n", + "inviable\n", + "inviably\n", + "invidious\n", + "invidiously\n", + "invigorate\n", + "invigorated\n", + "invigorates\n", + "invigorating\n", + "invigoration\n", + "invigorations\n", + "invincibilities\n", + "invincibility\n", + "invincible\n", + "invincibly\n", + "inviolabilities\n", + "inviolability\n", + "inviolable\n", + "inviolate\n", + "invirile\n", + "inviscid\n", + "invisibilities\n", + "invisibility\n", + "invisible\n", + "invisibly\n", + "invital\n", + "invitation\n", + "invitations\n", + "invite\n", + "invited\n", + "invitee\n", + "invitees\n", + "inviter\n", + "inviters\n", + "invites\n", + "inviting\n", + "invocate\n", + "invocated\n", + "invocates\n", + "invocating\n", + "invocation\n", + "invocations\n", + "invoice\n", + "invoiced\n", + "invoices\n", + "invoicing\n", + "invoke\n", + "invoked\n", + "invoker\n", + "invokers\n", + "invokes\n", + "invoking\n", + "involuntarily\n", + "involuntary\n", + "involute\n", + "involuted\n", + "involutes\n", + "involuting\n", + "involve\n", + "involved\n", + "involvement\n", + "involvements\n", + "involver\n", + "involvers\n", + "involves\n", + "involving\n", + "invulnerability\n", + "invulnerable\n", + "invulnerably\n", + "inwall\n", + "inwalled\n", + "inwalling\n", + "inwalls\n", + "inward\n", + "inwardly\n", + "inwards\n", + "inweave\n", + "inweaved\n", + "inweaves\n", + "inweaving\n", + "inwind\n", + "inwinding\n", + "inwinds\n", + "inwound\n", + "inwove\n", + "inwoven\n", + "inwrap\n", + "inwrapped\n", + "inwrapping\n", + "inwraps\n", + "iodate\n", + "iodated\n", + "iodates\n", + "iodating\n", + "iodation\n", + "iodations\n", + "iodic\n", + "iodid\n", + "iodide\n", + "iodides\n", + "iodids\n", + "iodin\n", + "iodinate\n", + "iodinated\n", + "iodinates\n", + "iodinating\n", + "iodine\n", + "iodines\n", + "iodins\n", + "iodism\n", + "iodisms\n", + "iodize\n", + "iodized\n", + "iodizer\n", + "iodizers\n", + "iodizes\n", + "iodizing\n", + "iodoform\n", + "iodoforms\n", + "iodol\n", + "iodols\n", + "iodophor\n", + "iodophors\n", + "iodopsin\n", + "iodopsins\n", + "iodous\n", + "iolite\n", + "iolites\n", + "ion\n", + "ionic\n", + "ionicities\n", + "ionicity\n", + "ionics\n", + "ionise\n", + "ionised\n", + "ionises\n", + "ionising\n", + "ionium\n", + "ioniums\n", + "ionizable\n", + "ionize\n", + "ionized\n", + "ionizer\n", + "ionizers\n", + "ionizes\n", + "ionizing\n", + "ionomer\n", + "ionomers\n", + "ionone\n", + "ionones\n", + "ionosphere\n", + "ionospheres\n", + "ionospheric\n", + "ions\n", + "iota\n", + "iotacism\n", + "iotacisms\n", + "iotas\n", + "ipecac\n", + "ipecacs\n", + "ipomoea\n", + "ipomoeas\n", + "iracund\n", + "irade\n", + "irades\n", + "irascibilities\n", + "irascibility\n", + "irascible\n", + "irate\n", + "irately\n", + "irater\n", + "iratest\n", + "ire\n", + "ired\n", + "ireful\n", + "irefully\n", + "ireless\n", + "irenic\n", + "irenical\n", + "irenics\n", + "ires\n", + "irides\n", + "iridescence\n", + "iridescences\n", + "iridescent\n", + "iridic\n", + "iridium\n", + "iridiums\n", + "irids\n", + "iring\n", + "iris\n", + "irised\n", + "irises\n", + "irising\n", + "iritic\n", + "iritis\n", + "iritises\n", + "irk\n", + "irked\n", + "irking\n", + "irks\n", + "irksome\n", + "irksomely\n", + "iron\n", + "ironbark\n", + "ironbarks\n", + "ironclad\n", + "ironclads\n", + "irone\n", + "ironed\n", + "ironer\n", + "ironers\n", + "irones\n", + "ironic\n", + "ironical\n", + "ironically\n", + "ironies\n", + "ironing\n", + "ironings\n", + "ironist\n", + "ironists\n", + "ironlike\n", + "ironness\n", + "ironnesses\n", + "irons\n", + "ironside\n", + "ironsides\n", + "ironware\n", + "ironwares\n", + "ironweed\n", + "ironweeds\n", + "ironwood\n", + "ironwoods\n", + "ironwork\n", + "ironworker\n", + "ironworkers\n", + "ironworks\n", + "irony\n", + "irradiate\n", + "irradiated\n", + "irradiates\n", + "irradiating\n", + "irradiation\n", + "irradiations\n", + "irrational\n", + "irrationalities\n", + "irrationality\n", + "irrationally\n", + "irrationals\n", + "irreal\n", + "irreconcilabilities\n", + "irreconcilability\n", + "irreconcilable\n", + "irrecoverable\n", + "irrecoverably\n", + "irredeemable\n", + "irreducible\n", + "irreducibly\n", + "irrefutable\n", + "irregular\n", + "irregularities\n", + "irregularity\n", + "irregularly\n", + "irregulars\n", + "irrelevance\n", + "irrelevances\n", + "irrelevant\n", + "irreligious\n", + "irreparable\n", + "irreplaceable\n", + "irrepressible\n", + "irreproachable\n", + "irresistible\n", + "irresolute\n", + "irresolutely\n", + "irresolution\n", + "irresolutions\n", + "irrespective\n", + "irresponsibilities\n", + "irresponsibility\n", + "irresponsible\n", + "irresponsibly\n", + "irretrievable\n", + "irreverence\n", + "irreverences\n", + "irreversible\n", + "irrevocable\n", + "irrigate\n", + "irrigated\n", + "irrigates\n", + "irrigating\n", + "irrigation\n", + "irrigations\n", + "irritabilities\n", + "irritability\n", + "irritable\n", + "irritably\n", + "irritant\n", + "irritants\n", + "irritate\n", + "irritated\n", + "irritates\n", + "irritating\n", + "irritatingly\n", + "irritation\n", + "irritations\n", + "irrupt\n", + "irrupted\n", + "irrupting\n", + "irrupts\n", + "is\n", + "isagoge\n", + "isagoges\n", + "isagogic\n", + "isagogics\n", + "isarithm\n", + "isarithms\n", + "isatin\n", + "isatine\n", + "isatines\n", + "isatinic\n", + "isatins\n", + "isba\n", + "isbas\n", + "ischemia\n", + "ischemias\n", + "ischemic\n", + "ischia\n", + "ischial\n", + "ischium\n", + "isinglass\n", + "island\n", + "islanded\n", + "islander\n", + "islanders\n", + "islanding\n", + "islands\n", + "isle\n", + "isled\n", + "isleless\n", + "isles\n", + "islet\n", + "islets\n", + "isling\n", + "ism\n", + "isms\n", + "isobar\n", + "isobare\n", + "isobares\n", + "isobaric\n", + "isobars\n", + "isobath\n", + "isobaths\n", + "isocheim\n", + "isocheims\n", + "isochime\n", + "isochimes\n", + "isochor\n", + "isochore\n", + "isochores\n", + "isochors\n", + "isochron\n", + "isochrons\n", + "isocline\n", + "isoclines\n", + "isocracies\n", + "isocracy\n", + "isodose\n", + "isogamies\n", + "isogamy\n", + "isogenic\n", + "isogenies\n", + "isogeny\n", + "isogloss\n", + "isoglosses\n", + "isogon\n", + "isogonal\n", + "isogonals\n", + "isogone\n", + "isogones\n", + "isogonic\n", + "isogonics\n", + "isogonies\n", + "isogons\n", + "isogony\n", + "isogram\n", + "isograms\n", + "isograph\n", + "isographs\n", + "isogriv\n", + "isogrivs\n", + "isohel\n", + "isohels\n", + "isohyet\n", + "isohyets\n", + "isolable\n", + "isolate\n", + "isolated\n", + "isolates\n", + "isolating\n", + "isolation\n", + "isolations\n", + "isolator\n", + "isolators\n", + "isolead\n", + "isoleads\n", + "isoline\n", + "isolines\n", + "isolog\n", + "isologs\n", + "isologue\n", + "isologues\n", + "isomer\n", + "isomeric\n", + "isomers\n", + "isometric\n", + "isometrics\n", + "isometries\n", + "isometry\n", + "isomorph\n", + "isomorphs\n", + "isonomic\n", + "isonomies\n", + "isonomy\n", + "isophote\n", + "isophotes\n", + "isopleth\n", + "isopleths\n", + "isopod\n", + "isopodan\n", + "isopodans\n", + "isopods\n", + "isoprene\n", + "isoprenes\n", + "isospin\n", + "isospins\n", + "isospories\n", + "isospory\n", + "isostasies\n", + "isostasy\n", + "isotach\n", + "isotachs\n", + "isothere\n", + "isotheres\n", + "isotherm\n", + "isotherms\n", + "isotone\n", + "isotones\n", + "isotonic\n", + "isotope\n", + "isotopes\n", + "isotopic\n", + "isotopically\n", + "isotopies\n", + "isotopy\n", + "isotropies\n", + "isotropy\n", + "isotype\n", + "isotypes\n", + "isotypic\n", + "isozyme\n", + "isozymes\n", + "isozymic\n", + "issei\n", + "isseis\n", + "issuable\n", + "issuably\n", + "issuance\n", + "issuances\n", + "issuant\n", + "issue\n", + "issued\n", + "issuer\n", + "issuers\n", + "issues\n", + "issuing\n", + "isthmi\n", + "isthmian\n", + "isthmians\n", + "isthmic\n", + "isthmoid\n", + "isthmus\n", + "isthmuses\n", + "istle\n", + "istles\n", + "it\n", + "italic\n", + "italicization\n", + "italicizations\n", + "italicize\n", + "italicized\n", + "italicizes\n", + "italicizing\n", + "italics\n", + "itch\n", + "itched\n", + "itches\n", + "itchier\n", + "itchiest\n", + "itching\n", + "itchings\n", + "itchy\n", + "item\n", + "itemed\n", + "iteming\n", + "itemization\n", + "itemizations\n", + "itemize\n", + "itemized\n", + "itemizer\n", + "itemizers\n", + "itemizes\n", + "itemizing\n", + "items\n", + "iterance\n", + "iterances\n", + "iterant\n", + "iterate\n", + "iterated\n", + "iterates\n", + "iterating\n", + "iteration\n", + "iterations\n", + "iterative\n", + "iterum\n", + "ither\n", + "itinerant\n", + "itinerants\n", + "itinerary\n", + "its\n", + "itself\n", + "ivied\n", + "ivies\n", + "ivories\n", + "ivory\n", + "ivy\n", + "ivylike\n", + "iwis\n", + "ixia\n", + "ixias\n", + "ixodid\n", + "ixodids\n", + "ixtle\n", + "ixtles\n", + "izar\n", + "izars\n", + "izzard\n", + "izzards\n", + "jab\n", + "jabbed\n", + "jabber\n", + "jabbered\n", + "jabberer\n", + "jabberers\n", + "jabbering\n", + "jabbers\n", + "jabbing\n", + "jabiru\n", + "jabirus\n", + "jabot\n", + "jabots\n", + "jabs\n", + "jacal\n", + "jacales\n", + "jacals\n", + "jacamar\n", + "jacamars\n", + "jacana\n", + "jacanas\n", + "jacinth\n", + "jacinthe\n", + "jacinthes\n", + "jacinths\n", + "jack\n", + "jackal\n", + "jackals\n", + "jackaroo\n", + "jackaroos\n", + "jackass\n", + "jackasses\n", + "jackboot\n", + "jackboots\n", + "jackdaw\n", + "jackdaws\n", + "jacked\n", + "jacker\n", + "jackeroo\n", + "jackeroos\n", + "jackers\n", + "jacket\n", + "jacketed\n", + "jacketing\n", + "jackets\n", + "jackfish\n", + "jackfishes\n", + "jackhammer\n", + "jackhammers\n", + "jackies\n", + "jacking\n", + "jackknife\n", + "jackknifed\n", + "jackknifes\n", + "jackknifing\n", + "jackknives\n", + "jackleg\n", + "jacklegs\n", + "jackpot\n", + "jackpots\n", + "jackrabbit\n", + "jackrabbits\n", + "jacks\n", + "jackstay\n", + "jackstays\n", + "jacky\n", + "jacobin\n", + "jacobins\n", + "jacobus\n", + "jacobuses\n", + "jaconet\n", + "jaconets\n", + "jacquard\n", + "jacquards\n", + "jacqueline\n", + "jaculate\n", + "jaculated\n", + "jaculates\n", + "jaculating\n", + "jade\n", + "jaded\n", + "jadedly\n", + "jadeite\n", + "jadeites\n", + "jades\n", + "jading\n", + "jadish\n", + "jadishly\n", + "jaditic\n", + "jaeger\n", + "jaegers\n", + "jag\n", + "jager\n", + "jagers\n", + "jagg\n", + "jaggaries\n", + "jaggary\n", + "jagged\n", + "jaggeder\n", + "jaggedest\n", + "jaggedly\n", + "jagger\n", + "jaggeries\n", + "jaggers\n", + "jaggery\n", + "jaggheries\n", + "jagghery\n", + "jaggier\n", + "jaggiest\n", + "jagging\n", + "jaggs\n", + "jaggy\n", + "jagless\n", + "jagra\n", + "jagras\n", + "jags\n", + "jaguar\n", + "jaguars\n", + "jail\n", + "jailbait\n", + "jailbird\n", + "jailbirds\n", + "jailbreak\n", + "jailbreaks\n", + "jailed\n", + "jailer\n", + "jailers\n", + "jailing\n", + "jailor\n", + "jailors\n", + "jails\n", + "jake\n", + "jakes\n", + "jalap\n", + "jalapic\n", + "jalapin\n", + "jalapins\n", + "jalaps\n", + "jalop\n", + "jalopies\n", + "jaloppies\n", + "jaloppy\n", + "jalops\n", + "jalopy\n", + "jalousie\n", + "jalousies\n", + "jam\n", + "jamb\n", + "jambe\n", + "jambeau\n", + "jambeaux\n", + "jambed\n", + "jambes\n", + "jambing\n", + "jamboree\n", + "jamborees\n", + "jambs\n", + "jammed\n", + "jammer\n", + "jammers\n", + "jamming\n", + "jams\n", + "jane\n", + "janes\n", + "jangle\n", + "jangled\n", + "jangler\n", + "janglers\n", + "jangles\n", + "jangling\n", + "janiform\n", + "janisaries\n", + "janisary\n", + "janitor\n", + "janitorial\n", + "janitors\n", + "janizaries\n", + "janizary\n", + "janty\n", + "japan\n", + "japanize\n", + "japanized\n", + "japanizes\n", + "japanizing\n", + "japanned\n", + "japanner\n", + "japanners\n", + "japanning\n", + "japans\n", + "jape\n", + "japed\n", + "japer\n", + "japeries\n", + "japers\n", + "japery\n", + "japes\n", + "japing\n", + "japingly\n", + "japonica\n", + "japonicas\n", + "jar\n", + "jarful\n", + "jarfuls\n", + "jargon\n", + "jargoned\n", + "jargonel\n", + "jargonels\n", + "jargoning\n", + "jargons\n", + "jargoon\n", + "jargoons\n", + "jarina\n", + "jarinas\n", + "jarl\n", + "jarldom\n", + "jarldoms\n", + "jarls\n", + "jarosite\n", + "jarosites\n", + "jarovize\n", + "jarovized\n", + "jarovizes\n", + "jarovizing\n", + "jarrah\n", + "jarrahs\n", + "jarred\n", + "jarring\n", + "jars\n", + "jarsful\n", + "jarvey\n", + "jarveys\n", + "jasey\n", + "jasmine\n", + "jasmines\n", + "jasper\n", + "jaspers\n", + "jaspery\n", + "jassid\n", + "jassids\n", + "jato\n", + "jatos\n", + "jauk\n", + "jauked\n", + "jauking\n", + "jauks\n", + "jaunce\n", + "jaunced\n", + "jaunces\n", + "jauncing\n", + "jaundice\n", + "jaundiced\n", + "jaundices\n", + "jaundicing\n", + "jaunt\n", + "jaunted\n", + "jauntier\n", + "jauntiest\n", + "jauntily\n", + "jauntiness\n", + "jauntinesses\n", + "jaunting\n", + "jaunts\n", + "jaunty\n", + "jaup\n", + "jauped\n", + "jauping\n", + "jaups\n", + "java\n", + "javas\n", + "javelin\n", + "javelina\n", + "javelinas\n", + "javelined\n", + "javelining\n", + "javelins\n", + "jaw\n", + "jawan\n", + "jawans\n", + "jawbone\n", + "jawboned\n", + "jawbones\n", + "jawboning\n", + "jawed\n", + "jawing\n", + "jawlike\n", + "jawline\n", + "jawlines\n", + "jaws\n", + "jay\n", + "jaybird\n", + "jaybirds\n", + "jaygee\n", + "jaygees\n", + "jays\n", + "jayvee\n", + "jayvees\n", + "jaywalk\n", + "jaywalked\n", + "jaywalker\n", + "jaywalkers\n", + "jaywalking\n", + "jaywalks\n", + "jazz\n", + "jazzed\n", + "jazzer\n", + "jazzers\n", + "jazzes\n", + "jazzier\n", + "jazziest\n", + "jazzily\n", + "jazzing\n", + "jazzman\n", + "jazzmen\n", + "jazzy\n", + "jealous\n", + "jealousies\n", + "jealously\n", + "jealousy\n", + "jean\n", + "jeans\n", + "jeapordize\n", + "jeapordized\n", + "jeapordizes\n", + "jeapordizing\n", + "jeapordous\n", + "jebel\n", + "jebels\n", + "jee\n", + "jeed\n", + "jeeing\n", + "jeep\n", + "jeepers\n", + "jeeps\n", + "jeer\n", + "jeered\n", + "jeerer\n", + "jeerers\n", + "jeering\n", + "jeers\n", + "jees\n", + "jeez\n", + "jefe\n", + "jefes\n", + "jehad\n", + "jehads\n", + "jehu\n", + "jehus\n", + "jejuna\n", + "jejunal\n", + "jejune\n", + "jejunely\n", + "jejunities\n", + "jejunity\n", + "jejunum\n", + "jell\n", + "jelled\n", + "jellied\n", + "jellies\n", + "jellified\n", + "jellifies\n", + "jellify\n", + "jellifying\n", + "jelling\n", + "jells\n", + "jelly\n", + "jellyfish\n", + "jellyfishes\n", + "jellying\n", + "jelutong\n", + "jelutongs\n", + "jemadar\n", + "jemadars\n", + "jemidar\n", + "jemidars\n", + "jemmied\n", + "jemmies\n", + "jemmy\n", + "jemmying\n", + "jennet\n", + "jennets\n", + "jennies\n", + "jenny\n", + "jeopard\n", + "jeoparded\n", + "jeopardies\n", + "jeoparding\n", + "jeopards\n", + "jeopardy\n", + "jeopordize\n", + "jeopordized\n", + "jeopordizes\n", + "jeopordizing\n", + "jerboa\n", + "jerboas\n", + "jereed\n", + "jereeds\n", + "jeremiad\n", + "jeremiads\n", + "jerid\n", + "jerids\n", + "jerk\n", + "jerked\n", + "jerker\n", + "jerkers\n", + "jerkier\n", + "jerkies\n", + "jerkiest\n", + "jerkily\n", + "jerkin\n", + "jerking\n", + "jerkins\n", + "jerks\n", + "jerky\n", + "jeroboam\n", + "jeroboams\n", + "jerreed\n", + "jerreeds\n", + "jerrican\n", + "jerricans\n", + "jerrid\n", + "jerrids\n", + "jerries\n", + "jerry\n", + "jerrycan\n", + "jerrycans\n", + "jersey\n", + "jerseyed\n", + "jerseys\n", + "jess\n", + "jessant\n", + "jesse\n", + "jessed\n", + "jesses\n", + "jessing\n", + "jest\n", + "jested\n", + "jester\n", + "jesters\n", + "jestful\n", + "jesting\n", + "jestings\n", + "jests\n", + "jesuit\n", + "jesuitic\n", + "jesuitries\n", + "jesuitry\n", + "jesuits\n", + "jet\n", + "jetbead\n", + "jetbeads\n", + "jete\n", + "jetes\n", + "jetliner\n", + "jetliners\n", + "jeton\n", + "jetons\n", + "jetport\n", + "jetports\n", + "jets\n", + "jetsam\n", + "jetsams\n", + "jetsom\n", + "jetsoms\n", + "jetted\n", + "jettied\n", + "jetties\n", + "jetting\n", + "jettison\n", + "jettisoned\n", + "jettisoning\n", + "jettisons\n", + "jetton\n", + "jettons\n", + "jetty\n", + "jettying\n", + "jeu\n", + "jeux\n", + "jew\n", + "jewed\n", + "jewel\n", + "jeweled\n", + "jeweler\n", + "jewelers\n", + "jeweling\n", + "jewelled\n", + "jeweller\n", + "jewellers\n", + "jewelling\n", + "jewelries\n", + "jewelry\n", + "jewels\n", + "jewfish\n", + "jewfishes\n", + "jewing\n", + "jews\n", + "jezail\n", + "jezails\n", + "jezebel\n", + "jezebels\n", + "jib\n", + "jibb\n", + "jibbed\n", + "jibber\n", + "jibbers\n", + "jibbing\n", + "jibboom\n", + "jibbooms\n", + "jibbs\n", + "jibe\n", + "jibed\n", + "jiber\n", + "jibers\n", + "jibes\n", + "jibing\n", + "jibingly\n", + "jibs\n", + "jiff\n", + "jiffies\n", + "jiffs\n", + "jiffy\n", + "jig\n", + "jigaboo\n", + "jigaboos\n", + "jigged\n", + "jigger\n", + "jiggered\n", + "jiggers\n", + "jigging\n", + "jiggle\n", + "jiggled\n", + "jiggles\n", + "jigglier\n", + "jiggliest\n", + "jiggling\n", + "jiggly\n", + "jigs\n", + "jigsaw\n", + "jigsawed\n", + "jigsawing\n", + "jigsawn\n", + "jigsaws\n", + "jihad\n", + "jihads\n", + "jill\n", + "jillion\n", + "jillions\n", + "jills\n", + "jilt\n", + "jilted\n", + "jilter\n", + "jilters\n", + "jilting\n", + "jilts\n", + "jiminy\n", + "jimjams\n", + "jimmied\n", + "jimmies\n", + "jimminy\n", + "jimmy\n", + "jimmying\n", + "jimp\n", + "jimper\n", + "jimpest\n", + "jimply\n", + "jimpy\n", + "jimsonweed\n", + "jimsonweeds\n", + "jin\n", + "jingal\n", + "jingall\n", + "jingalls\n", + "jingals\n", + "jingko\n", + "jingkoes\n", + "jingle\n", + "jingled\n", + "jingler\n", + "jinglers\n", + "jingles\n", + "jinglier\n", + "jingliest\n", + "jingling\n", + "jingly\n", + "jingo\n", + "jingoes\n", + "jingoish\n", + "jingoism\n", + "jingoisms\n", + "jingoist\n", + "jingoistic\n", + "jingoists\n", + "jink\n", + "jinked\n", + "jinker\n", + "jinkers\n", + "jinking\n", + "jinks\n", + "jinn\n", + "jinnee\n", + "jinni\n", + "jinns\n", + "jins\n", + "jinx\n", + "jinxed\n", + "jinxes\n", + "jinxing\n", + "jipijapa\n", + "jipijapas\n", + "jitney\n", + "jitneys\n", + "jitter\n", + "jittered\n", + "jittering\n", + "jitters\n", + "jittery\n", + "jiujitsu\n", + "jiujitsus\n", + "jiujutsu\n", + "jiujutsus\n", + "jive\n", + "jived\n", + "jives\n", + "jiving\n", + "jnana\n", + "jnanas\n", + "jo\n", + "joannes\n", + "job\n", + "jobbed\n", + "jobber\n", + "jobberies\n", + "jobbers\n", + "jobbery\n", + "jobbing\n", + "jobholder\n", + "jobholders\n", + "jobless\n", + "jobs\n", + "jock\n", + "jockey\n", + "jockeyed\n", + "jockeying\n", + "jockeys\n", + "jocko\n", + "jockos\n", + "jocks\n", + "jocose\n", + "jocosely\n", + "jocosities\n", + "jocosity\n", + "jocular\n", + "jocund\n", + "jocundly\n", + "jodhpur\n", + "jodhpurs\n", + "joe\n", + "joes\n", + "joey\n", + "joeys\n", + "jog\n", + "jogged\n", + "jogger\n", + "joggers\n", + "jogging\n", + "joggle\n", + "joggled\n", + "joggler\n", + "jogglers\n", + "joggles\n", + "joggling\n", + "jogs\n", + "johannes\n", + "john\n", + "johnboat\n", + "johnboats\n", + "johnnies\n", + "johnny\n", + "johns\n", + "join\n", + "joinable\n", + "joinder\n", + "joinders\n", + "joined\n", + "joiner\n", + "joineries\n", + "joiners\n", + "joinery\n", + "joining\n", + "joinings\n", + "joins\n", + "joint\n", + "jointed\n", + "jointer\n", + "jointers\n", + "jointing\n", + "jointly\n", + "joints\n", + "jointure\n", + "jointured\n", + "jointures\n", + "jointuring\n", + "joist\n", + "joisted\n", + "joisting\n", + "joists\n", + "jojoba\n", + "jojobas\n", + "joke\n", + "joked\n", + "joker\n", + "jokers\n", + "jokes\n", + "jokester\n", + "jokesters\n", + "joking\n", + "jokingly\n", + "jole\n", + "joles\n", + "jollied\n", + "jollier\n", + "jollies\n", + "jolliest\n", + "jollified\n", + "jollifies\n", + "jollify\n", + "jollifying\n", + "jollily\n", + "jollities\n", + "jollity\n", + "jolly\n", + "jollying\n", + "jolt\n", + "jolted\n", + "jolter\n", + "jolters\n", + "joltier\n", + "joltiest\n", + "joltily\n", + "jolting\n", + "jolts\n", + "jolty\n", + "jongleur\n", + "jongleurs\n", + "jonquil\n", + "jonquils\n", + "joram\n", + "jorams\n", + "jordan\n", + "jordans\n", + "jorum\n", + "jorums\n", + "joseph\n", + "josephs\n", + "josh\n", + "joshed\n", + "josher\n", + "joshers\n", + "joshes\n", + "joshing\n", + "joss\n", + "josses\n", + "jostle\n", + "jostled\n", + "jostler\n", + "jostlers\n", + "jostles\n", + "jostling\n", + "jot\n", + "jota\n", + "jotas\n", + "jots\n", + "jotted\n", + "jotting\n", + "jottings\n", + "jotty\n", + "jouk\n", + "jouked\n", + "jouking\n", + "jouks\n", + "joule\n", + "joules\n", + "jounce\n", + "jounced\n", + "jounces\n", + "jouncier\n", + "jounciest\n", + "jouncing\n", + "jouncy\n", + "journal\n", + "journalism\n", + "journalisms\n", + "journalist\n", + "journalistic\n", + "journalists\n", + "journals\n", + "journey\n", + "journeyed\n", + "journeying\n", + "journeyman\n", + "journeymen\n", + "journeys\n", + "joust\n", + "jousted\n", + "jouster\n", + "jousters\n", + "jousting\n", + "jousts\n", + "jovial\n", + "jovially\n", + "jow\n", + "jowed\n", + "jowing\n", + "jowl\n", + "jowled\n", + "jowlier\n", + "jowliest\n", + "jowls\n", + "jowly\n", + "jows\n", + "joy\n", + "joyance\n", + "joyances\n", + "joyed\n", + "joyful\n", + "joyfuller\n", + "joyfullest\n", + "joyfully\n", + "joying\n", + "joyless\n", + "joyous\n", + "joyously\n", + "joyousness\n", + "joyousnesses\n", + "joypop\n", + "joypopped\n", + "joypopping\n", + "joypops\n", + "joyride\n", + "joyrider\n", + "joyriders\n", + "joyrides\n", + "joyriding\n", + "joyridings\n", + "joys\n", + "joystick\n", + "joysticks\n", + "juba\n", + "jubas\n", + "jubbah\n", + "jubbahs\n", + "jube\n", + "jubes\n", + "jubhah\n", + "jubhahs\n", + "jubilant\n", + "jubilate\n", + "jubilated\n", + "jubilates\n", + "jubilating\n", + "jubile\n", + "jubilee\n", + "jubilees\n", + "jubiles\n", + "jublilantly\n", + "jublilation\n", + "jublilations\n", + "judas\n", + "judases\n", + "judder\n", + "juddered\n", + "juddering\n", + "judders\n", + "judge\n", + "judged\n", + "judgement\n", + "judgements\n", + "judger\n", + "judgers\n", + "judges\n", + "judgeship\n", + "judgeships\n", + "judging\n", + "judgment\n", + "judgments\n", + "judicature\n", + "judicatures\n", + "judicial\n", + "judicially\n", + "judiciaries\n", + "judiciary\n", + "judicious\n", + "judiciously\n", + "judiciousness\n", + "judiciousnesses\n", + "judo\n", + "judoist\n", + "judoists\n", + "judoka\n", + "judokas\n", + "judos\n", + "jug\n", + "juga\n", + "jugal\n", + "jugate\n", + "jugful\n", + "jugfuls\n", + "jugged\n", + "juggernaut\n", + "juggernauts\n", + "jugging\n", + "juggle\n", + "juggled\n", + "juggler\n", + "juggleries\n", + "jugglers\n", + "jugglery\n", + "juggles\n", + "juggling\n", + "jugglings\n", + "jughead\n", + "jugheads\n", + "jugs\n", + "jugsful\n", + "jugula\n", + "jugular\n", + "jugulars\n", + "jugulate\n", + "jugulated\n", + "jugulates\n", + "jugulating\n", + "jugulum\n", + "jugum\n", + "jugums\n", + "juice\n", + "juiced\n", + "juicer\n", + "juicers\n", + "juices\n", + "juicier\n", + "juiciest\n", + "juicily\n", + "juiciness\n", + "juicinesses\n", + "juicing\n", + "juicy\n", + "jujitsu\n", + "jujitsus\n", + "juju\n", + "jujube\n", + "jujubes\n", + "jujuism\n", + "jujuisms\n", + "jujuist\n", + "jujuists\n", + "jujus\n", + "jujutsu\n", + "jujutsus\n", + "juke\n", + "jukebox\n", + "jukeboxes\n", + "juked\n", + "jukes\n", + "juking\n", + "julep\n", + "juleps\n", + "julienne\n", + "juliennes\n", + "jumble\n", + "jumbled\n", + "jumbler\n", + "jumblers\n", + "jumbles\n", + "jumbling\n", + "jumbo\n", + "jumbos\n", + "jumbuck\n", + "jumbucks\n", + "jump\n", + "jumped\n", + "jumper\n", + "jumpers\n", + "jumpier\n", + "jumpiest\n", + "jumpily\n", + "jumping\n", + "jumpoff\n", + "jumpoffs\n", + "jumps\n", + "jumpy\n", + "jun\n", + "junco\n", + "juncoes\n", + "juncos\n", + "junction\n", + "junctions\n", + "juncture\n", + "junctures\n", + "jungle\n", + "jungles\n", + "junglier\n", + "jungliest\n", + "jungly\n", + "junior\n", + "juniors\n", + "juniper\n", + "junipers\n", + "junk\n", + "junked\n", + "junker\n", + "junkers\n", + "junket\n", + "junketed\n", + "junketer\n", + "junketers\n", + "junketing\n", + "junkets\n", + "junkie\n", + "junkier\n", + "junkies\n", + "junkiest\n", + "junking\n", + "junkman\n", + "junkmen\n", + "junks\n", + "junky\n", + "junkyard\n", + "junkyards\n", + "junta\n", + "juntas\n", + "junto\n", + "juntos\n", + "jupe\n", + "jupes\n", + "jupon\n", + "jupons\n", + "jura\n", + "jural\n", + "jurally\n", + "jurant\n", + "jurants\n", + "jurat\n", + "juratory\n", + "jurats\n", + "jurel\n", + "jurels\n", + "juridic\n", + "juries\n", + "jurisdiction\n", + "jurisdictional\n", + "jurisdictions\n", + "jurisprudence\n", + "jurisprudences\n", + "jurist\n", + "juristic\n", + "jurists\n", + "juror\n", + "jurors\n", + "jury\n", + "juryman\n", + "jurymen\n", + "jus\n", + "jussive\n", + "jussives\n", + "just\n", + "justed\n", + "juster\n", + "justers\n", + "justest\n", + "justice\n", + "justices\n", + "justifiable\n", + "justification\n", + "justifications\n", + "justified\n", + "justifies\n", + "justify\n", + "justifying\n", + "justing\n", + "justle\n", + "justled\n", + "justles\n", + "justling\n", + "justly\n", + "justness\n", + "justnesses\n", + "justs\n", + "jut\n", + "jute\n", + "jutes\n", + "juts\n", + "jutted\n", + "juttied\n", + "jutties\n", + "jutting\n", + "jutty\n", + "juttying\n", + "juvenal\n", + "juvenals\n", + "juvenile\n", + "juveniles\n", + "juxtapose\n", + "juxtaposed\n", + "juxtaposes\n", + "juxtaposing\n", + "juxtaposition\n", + "juxtapositions\n", + "ka\n", + "kaas\n", + "kab\n", + "kabab\n", + "kababs\n", + "kabaka\n", + "kabakas\n", + "kabala\n", + "kabalas\n", + "kabar\n", + "kabars\n", + "kabaya\n", + "kabayas\n", + "kabbala\n", + "kabbalah\n", + "kabbalahs\n", + "kabbalas\n", + "kabeljou\n", + "kabeljous\n", + "kabiki\n", + "kabikis\n", + "kabob\n", + "kabobs\n", + "kabs\n", + "kabuki\n", + "kabukis\n", + "kachina\n", + "kachinas\n", + "kaddish\n", + "kaddishim\n", + "kadi\n", + "kadis\n", + "kae\n", + "kaes\n", + "kaffir\n", + "kaffirs\n", + "kaffiyeh\n", + "kaffiyehs\n", + "kafir\n", + "kafirs\n", + "kaftan\n", + "kaftans\n", + "kagu\n", + "kagus\n", + "kahuna\n", + "kahunas\n", + "kaiak\n", + "kaiaks\n", + "kaif\n", + "kaifs\n", + "kail\n", + "kails\n", + "kailyard\n", + "kailyards\n", + "kain\n", + "kainit\n", + "kainite\n", + "kainites\n", + "kainits\n", + "kains\n", + "kaiser\n", + "kaiserin\n", + "kaiserins\n", + "kaisers\n", + "kajeput\n", + "kajeputs\n", + "kaka\n", + "kakapo\n", + "kakapos\n", + "kakas\n", + "kakemono\n", + "kakemonos\n", + "kaki\n", + "kakis\n", + "kalam\n", + "kalamazoo\n", + "kalams\n", + "kale\n", + "kaleidoscope\n", + "kaleidoscopes\n", + "kaleidoscopic\n", + "kaleidoscopical\n", + "kaleidoscopically\n", + "kalends\n", + "kales\n", + "kalewife\n", + "kalewives\n", + "kaleyard\n", + "kaleyards\n", + "kalian\n", + "kalians\n", + "kalif\n", + "kalifate\n", + "kalifates\n", + "kalifs\n", + "kalimba\n", + "kalimbas\n", + "kaliph\n", + "kaliphs\n", + "kalium\n", + "kaliums\n", + "kallidin\n", + "kallidins\n", + "kalmia\n", + "kalmias\n", + "kalong\n", + "kalongs\n", + "kalpa\n", + "kalpak\n", + "kalpaks\n", + "kalpas\n", + "kalyptra\n", + "kalyptras\n", + "kamaaina\n", + "kamaainas\n", + "kamacite\n", + "kamacites\n", + "kamala\n", + "kamalas\n", + "kame\n", + "kames\n", + "kami\n", + "kamik\n", + "kamikaze\n", + "kamikazes\n", + "kamiks\n", + "kampong\n", + "kampongs\n", + "kamseen\n", + "kamseens\n", + "kamsin\n", + "kamsins\n", + "kana\n", + "kanas\n", + "kane\n", + "kanes\n", + "kangaroo\n", + "kangaroos\n", + "kanji\n", + "kanjis\n", + "kantar\n", + "kantars\n", + "kantele\n", + "kanteles\n", + "kaoliang\n", + "kaoliangs\n", + "kaolin\n", + "kaoline\n", + "kaolines\n", + "kaolinic\n", + "kaolins\n", + "kaon\n", + "kaons\n", + "kapa\n", + "kapas\n", + "kaph\n", + "kaphs\n", + "kapok\n", + "kapoks\n", + "kappa\n", + "kappas\n", + "kaput\n", + "kaputt\n", + "karakul\n", + "karakuls\n", + "karat\n", + "karate\n", + "karates\n", + "karats\n", + "karma\n", + "karmas\n", + "karmic\n", + "karn\n", + "karnofsky\n", + "karns\n", + "karoo\n", + "karoos\n", + "kaross\n", + "karosses\n", + "karroo\n", + "karroos\n", + "karst\n", + "karstic\n", + "karsts\n", + "kart\n", + "karting\n", + "kartings\n", + "karts\n", + "karyotin\n", + "karyotins\n", + "kas\n", + "kasha\n", + "kashas\n", + "kasher\n", + "kashered\n", + "kashering\n", + "kashers\n", + "kashmir\n", + "kashmirs\n", + "kashrut\n", + "kashruth\n", + "kashruths\n", + "kashruts\n", + "kat\n", + "katakana\n", + "katakanas\n", + "kathodal\n", + "kathode\n", + "kathodes\n", + "kathodic\n", + "kation\n", + "kations\n", + "kats\n", + "katydid\n", + "katydids\n", + "kauri\n", + "kauries\n", + "kauris\n", + "kaury\n", + "kava\n", + "kavas\n", + "kavass\n", + "kavasses\n", + "kay\n", + "kayak\n", + "kayaker\n", + "kayakers\n", + "kayaks\n", + "kayles\n", + "kayo\n", + "kayoed\n", + "kayoes\n", + "kayoing\n", + "kayos\n", + "kays\n", + "kazoo\n", + "kazoos\n", + "kea\n", + "keas\n", + "kebab\n", + "kebabs\n", + "kebar\n", + "kebars\n", + "kebbie\n", + "kebbies\n", + "kebbock\n", + "kebbocks\n", + "kebbuck\n", + "kebbucks\n", + "keblah\n", + "keblahs\n", + "kebob\n", + "kebobs\n", + "keck\n", + "kecked\n", + "kecking\n", + "keckle\n", + "keckled\n", + "keckles\n", + "keckling\n", + "kecks\n", + "keddah\n", + "keddahs\n", + "kedge\n", + "kedged\n", + "kedgeree\n", + "kedgerees\n", + "kedges\n", + "kedging\n", + "keef\n", + "keefs\n", + "keek\n", + "keeked\n", + "keeking\n", + "keeks\n", + "keel\n", + "keelage\n", + "keelages\n", + "keelboat\n", + "keelboats\n", + "keeled\n", + "keelhale\n", + "keelhaled\n", + "keelhales\n", + "keelhaling\n", + "keelhaul\n", + "keelhauled\n", + "keelhauling\n", + "keelhauls\n", + "keeling\n", + "keelless\n", + "keels\n", + "keelson\n", + "keelsons\n", + "keen\n", + "keened\n", + "keener\n", + "keeners\n", + "keenest\n", + "keening\n", + "keenly\n", + "keenness\n", + "keennesses\n", + "keens\n", + "keep\n", + "keepable\n", + "keeper\n", + "keepers\n", + "keeping\n", + "keepings\n", + "keeps\n", + "keepsake\n", + "keepsakes\n", + "keeshond\n", + "keeshonden\n", + "keeshonds\n", + "keester\n", + "keesters\n", + "keet\n", + "keets\n", + "keeve\n", + "keeves\n", + "kef\n", + "kefir\n", + "kefirs\n", + "kefs\n", + "keg\n", + "kegeler\n", + "kegelers\n", + "kegler\n", + "keglers\n", + "kegling\n", + "keglings\n", + "kegs\n", + "keir\n", + "keirs\n", + "keister\n", + "keisters\n", + "keitloa\n", + "keitloas\n", + "keloid\n", + "keloidal\n", + "keloids\n", + "kelp\n", + "kelped\n", + "kelpie\n", + "kelpies\n", + "kelping\n", + "kelps\n", + "kelpy\n", + "kelson\n", + "kelsons\n", + "kelter\n", + "kelters\n", + "kelvin\n", + "kelvins\n", + "kemp\n", + "kemps\n", + "kempt\n", + "ken\n", + "kenaf\n", + "kenafs\n", + "kench\n", + "kenches\n", + "kendo\n", + "kendos\n", + "kenned\n", + "kennel\n", + "kenneled\n", + "kenneling\n", + "kennelled\n", + "kennelling\n", + "kennels\n", + "kenning\n", + "kennings\n", + "keno\n", + "kenos\n", + "kenosis\n", + "kenosises\n", + "kenotic\n", + "kenotron\n", + "kenotrons\n", + "kens\n", + "kent\n", + "kep\n", + "kephalin\n", + "kephalins\n", + "kepi\n", + "kepis\n", + "kepped\n", + "keppen\n", + "kepping\n", + "keps\n", + "kept\n", + "keramic\n", + "keramics\n", + "keratin\n", + "keratins\n", + "keratoid\n", + "keratoma\n", + "keratomas\n", + "keratomata\n", + "keratose\n", + "kerb\n", + "kerbed\n", + "kerbing\n", + "kerbs\n", + "kerchief\n", + "kerchiefs\n", + "kerchieves\n", + "kerchoo\n", + "kerf\n", + "kerfed\n", + "kerfing\n", + "kerfs\n", + "kermes\n", + "kermess\n", + "kermesses\n", + "kermis\n", + "kermises\n", + "kern\n", + "kerne\n", + "kerned\n", + "kernel\n", + "kerneled\n", + "kerneling\n", + "kernelled\n", + "kernelling\n", + "kernels\n", + "kernes\n", + "kerning\n", + "kernite\n", + "kernites\n", + "kerns\n", + "kerogen\n", + "kerogens\n", + "kerosene\n", + "kerosenes\n", + "kerosine\n", + "kerosines\n", + "kerplunk\n", + "kerria\n", + "kerrias\n", + "kerries\n", + "kerry\n", + "kersey\n", + "kerseys\n", + "kerygma\n", + "kerygmata\n", + "kestrel\n", + "kestrels\n", + "ketch\n", + "ketches\n", + "ketchup\n", + "ketchups\n", + "ketene\n", + "ketenes\n", + "keto\n", + "ketol\n", + "ketone\n", + "ketones\n", + "ketonic\n", + "ketose\n", + "ketoses\n", + "ketosis\n", + "ketotic\n", + "kettle\n", + "kettledrum\n", + "kettledrums\n", + "kettles\n", + "kevel\n", + "kevels\n", + "kevil\n", + "kevils\n", + "kex\n", + "kexes\n", + "key\n", + "keyboard\n", + "keyboarded\n", + "keyboarding\n", + "keyboards\n", + "keyed\n", + "keyer\n", + "keyhole\n", + "keyholes\n", + "keying\n", + "keyless\n", + "keynote\n", + "keynoted\n", + "keynoter\n", + "keynoters\n", + "keynotes\n", + "keynoting\n", + "keypunch\n", + "keypunched\n", + "keypuncher\n", + "keypunchers\n", + "keypunches\n", + "keypunching\n", + "keys\n", + "keyset\n", + "keysets\n", + "keyster\n", + "keysters\n", + "keystone\n", + "keystones\n", + "keyway\n", + "keyways\n", + "keyword\n", + "keywords\n", + "khaddar\n", + "khaddars\n", + "khadi\n", + "khadis\n", + "khaki\n", + "khakis\n", + "khalif\n", + "khalifa\n", + "khalifas\n", + "khalifs\n", + "khamseen\n", + "khamseens\n", + "khamsin\n", + "khamsins\n", + "khan\n", + "khanate\n", + "khanates\n", + "khans\n", + "khat\n", + "khats\n", + "khazen\n", + "khazenim\n", + "khazens\n", + "kheda\n", + "khedah\n", + "khedahs\n", + "khedas\n", + "khedival\n", + "khedive\n", + "khedives\n", + "khi\n", + "khirkah\n", + "khirkahs\n", + "khis\n", + "kiang\n", + "kiangs\n", + "kiaugh\n", + "kiaughs\n", + "kibble\n", + "kibbled\n", + "kibbles\n", + "kibbling\n", + "kibbutz\n", + "kibbutzim\n", + "kibe\n", + "kibes\n", + "kibitz\n", + "kibitzed\n", + "kibitzer\n", + "kibitzers\n", + "kibitzes\n", + "kibitzing\n", + "kibla\n", + "kiblah\n", + "kiblahs\n", + "kiblas\n", + "kibosh\n", + "kiboshed\n", + "kiboshes\n", + "kiboshing\n", + "kick\n", + "kickback\n", + "kickbacks\n", + "kicked\n", + "kicker\n", + "kickers\n", + "kicking\n", + "kickoff\n", + "kickoffs\n", + "kicks\n", + "kickshaw\n", + "kickshaws\n", + "kickup\n", + "kickups\n", + "kid\n", + "kidded\n", + "kidder\n", + "kidders\n", + "kiddie\n", + "kiddies\n", + "kidding\n", + "kiddingly\n", + "kiddish\n", + "kiddo\n", + "kiddoes\n", + "kiddos\n", + "kiddush\n", + "kiddushes\n", + "kiddy\n", + "kidlike\n", + "kidnap\n", + "kidnaped\n", + "kidnaper\n", + "kidnapers\n", + "kidnaping\n", + "kidnapped\n", + "kidnapper\n", + "kidnappers\n", + "kidnapping\n", + "kidnaps\n", + "kidney\n", + "kidneys\n", + "kids\n", + "kidskin\n", + "kidskins\n", + "kief\n", + "kiefs\n", + "kielbasa\n", + "kielbasas\n", + "kielbasy\n", + "kier\n", + "kiers\n", + "kiester\n", + "kiesters\n", + "kif\n", + "kifs\n", + "kike\n", + "kikes\n", + "kilim\n", + "kilims\n", + "kill\n", + "killdee\n", + "killdeer\n", + "killdeers\n", + "killdees\n", + "killed\n", + "killer\n", + "killers\n", + "killick\n", + "killicks\n", + "killing\n", + "killings\n", + "killjoy\n", + "killjoys\n", + "killock\n", + "killocks\n", + "kills\n", + "kiln\n", + "kilned\n", + "kilning\n", + "kilns\n", + "kilo\n", + "kilobar\n", + "kilobars\n", + "kilobit\n", + "kilobits\n", + "kilocycle\n", + "kilocycles\n", + "kilogram\n", + "kilograms\n", + "kilohertz\n", + "kilometer\n", + "kilometers\n", + "kilomole\n", + "kilomoles\n", + "kilorad\n", + "kilorads\n", + "kilos\n", + "kiloton\n", + "kilotons\n", + "kilovolt\n", + "kilovolts\n", + "kilowatt\n", + "kilowatts\n", + "kilt\n", + "kilted\n", + "kilter\n", + "kilters\n", + "kiltie\n", + "kilties\n", + "kilting\n", + "kiltings\n", + "kilts\n", + "kilty\n", + "kimono\n", + "kimonoed\n", + "kimonos\n", + "kin\n", + "kinase\n", + "kinases\n", + "kind\n", + "kinder\n", + "kindergarten\n", + "kindergartens\n", + "kindergartner\n", + "kindergartners\n", + "kindest\n", + "kindhearted\n", + "kindle\n", + "kindled\n", + "kindler\n", + "kindlers\n", + "kindles\n", + "kindless\n", + "kindlier\n", + "kindliest\n", + "kindliness\n", + "kindlinesses\n", + "kindling\n", + "kindlings\n", + "kindly\n", + "kindness\n", + "kindnesses\n", + "kindred\n", + "kindreds\n", + "kinds\n", + "kine\n", + "kinema\n", + "kinemas\n", + "kines\n", + "kineses\n", + "kinesics\n", + "kinesis\n", + "kinetic\n", + "kinetics\n", + "kinetin\n", + "kinetins\n", + "kinfolk\n", + "kinfolks\n", + "king\n", + "kingbird\n", + "kingbirds\n", + "kingbolt\n", + "kingbolts\n", + "kingcup\n", + "kingcups\n", + "kingdom\n", + "kingdoms\n", + "kinged\n", + "kingfish\n", + "kingfisher\n", + "kingfishers\n", + "kingfishes\n", + "kinghood\n", + "kinghoods\n", + "kinging\n", + "kingless\n", + "kinglet\n", + "kinglets\n", + "kinglier\n", + "kingliest\n", + "kinglike\n", + "kingly\n", + "kingpin\n", + "kingpins\n", + "kingpost\n", + "kingposts\n", + "kings\n", + "kingship\n", + "kingships\n", + "kingside\n", + "kingsides\n", + "kingwood\n", + "kingwoods\n", + "kinin\n", + "kinins\n", + "kink\n", + "kinkajou\n", + "kinkajous\n", + "kinked\n", + "kinkier\n", + "kinkiest\n", + "kinkily\n", + "kinking\n", + "kinks\n", + "kinky\n", + "kino\n", + "kinos\n", + "kins\n", + "kinsfolk\n", + "kinship\n", + "kinships\n", + "kinsman\n", + "kinsmen\n", + "kinswoman\n", + "kinswomen\n", + "kiosk\n", + "kiosks\n", + "kip\n", + "kipped\n", + "kippen\n", + "kipper\n", + "kippered\n", + "kippering\n", + "kippers\n", + "kipping\n", + "kips\n", + "kipskin\n", + "kipskins\n", + "kirigami\n", + "kirigamis\n", + "kirk\n", + "kirkman\n", + "kirkmen\n", + "kirks\n", + "kirmess\n", + "kirmesses\n", + "kirn\n", + "kirned\n", + "kirning\n", + "kirns\n", + "kirsch\n", + "kirsches\n", + "kirtle\n", + "kirtled\n", + "kirtles\n", + "kishka\n", + "kishkas\n", + "kishke\n", + "kishkes\n", + "kismat\n", + "kismats\n", + "kismet\n", + "kismetic\n", + "kismets\n", + "kiss\n", + "kissable\n", + "kissably\n", + "kissed\n", + "kisser\n", + "kissers\n", + "kisses\n", + "kissing\n", + "kist\n", + "kistful\n", + "kistfuls\n", + "kists\n", + "kit\n", + "kitchen\n", + "kitchens\n", + "kite\n", + "kited\n", + "kiter\n", + "kiters\n", + "kites\n", + "kith\n", + "kithara\n", + "kitharas\n", + "kithe\n", + "kithed\n", + "kithes\n", + "kithing\n", + "kiths\n", + "kiting\n", + "kitling\n", + "kitlings\n", + "kits\n", + "kitsch\n", + "kitsches\n", + "kitschy\n", + "kitted\n", + "kittel\n", + "kitten\n", + "kittened\n", + "kittening\n", + "kittenish\n", + "kittens\n", + "kitties\n", + "kitting\n", + "kittle\n", + "kittled\n", + "kittler\n", + "kittles\n", + "kittlest\n", + "kittling\n", + "kitty\n", + "kiva\n", + "kivas\n", + "kiwi\n", + "kiwis\n", + "klatch\n", + "klatches\n", + "klatsch\n", + "klatsches\n", + "klavern\n", + "klaverns\n", + "klaxon\n", + "klaxons\n", + "kleagle\n", + "kleagles\n", + "kleig\n", + "klepht\n", + "klephtic\n", + "klephts\n", + "kleptomania\n", + "kleptomaniac\n", + "kleptomaniacs\n", + "kleptomanias\n", + "klieg\n", + "klong\n", + "klongs\n", + "kloof\n", + "kloofs\n", + "kludge\n", + "kludges\n", + "klutz\n", + "klutzes\n", + "klutzier\n", + "klutziest\n", + "klutzy\n", + "klystron\n", + "klystrons\n", + "knack\n", + "knacked\n", + "knacker\n", + "knackeries\n", + "knackers\n", + "knackery\n", + "knacking\n", + "knacks\n", + "knap\n", + "knapped\n", + "knapper\n", + "knappers\n", + "knapping\n", + "knaps\n", + "knapsack\n", + "knapsacks\n", + "knapweed\n", + "knapweeds\n", + "knar\n", + "knarred\n", + "knarry\n", + "knars\n", + "knave\n", + "knaveries\n", + "knavery\n", + "knaves\n", + "knavish\n", + "knawel\n", + "knawels\n", + "knead\n", + "kneaded\n", + "kneader\n", + "kneaders\n", + "kneading\n", + "kneads\n", + "knee\n", + "kneecap\n", + "kneecaps\n", + "kneed\n", + "kneehole\n", + "kneeholes\n", + "kneeing\n", + "kneel\n", + "kneeled\n", + "kneeler\n", + "kneelers\n", + "kneeling\n", + "kneels\n", + "kneepad\n", + "kneepads\n", + "kneepan\n", + "kneepans\n", + "knees\n", + "knell\n", + "knelled\n", + "knelling\n", + "knells\n", + "knelt\n", + "knew\n", + "knickers\n", + "knickknack\n", + "knickknacks\n", + "knife\n", + "knifed\n", + "knifer\n", + "knifers\n", + "knifes\n", + "knifing\n", + "knight\n", + "knighted\n", + "knighthood\n", + "knighthoods\n", + "knighting\n", + "knightly\n", + "knights\n", + "knish\n", + "knishes\n", + "knit\n", + "knits\n", + "knitted\n", + "knitter\n", + "knitters\n", + "knitting\n", + "knittings\n", + "knitwear\n", + "knitwears\n", + "knives\n", + "knob\n", + "knobbed\n", + "knobbier\n", + "knobbiest\n", + "knobby\n", + "knoblike\n", + "knobs\n", + "knock\n", + "knocked\n", + "knocker\n", + "knockers\n", + "knocking\n", + "knockoff\n", + "knockoffs\n", + "knockout\n", + "knockouts\n", + "knocks\n", + "knockwurst\n", + "knockwursts\n", + "knoll\n", + "knolled\n", + "knoller\n", + "knollers\n", + "knolling\n", + "knolls\n", + "knolly\n", + "knop\n", + "knopped\n", + "knops\n", + "knosp\n", + "knosps\n", + "knot\n", + "knothole\n", + "knotholes\n", + "knotless\n", + "knotlike\n", + "knots\n", + "knotted\n", + "knotter\n", + "knotters\n", + "knottier\n", + "knottiest\n", + "knottily\n", + "knotting\n", + "knotty\n", + "knotweed\n", + "knotweeds\n", + "knout\n", + "knouted\n", + "knouting\n", + "knouts\n", + "know\n", + "knowable\n", + "knower\n", + "knowers\n", + "knowing\n", + "knowinger\n", + "knowingest\n", + "knowings\n", + "knowledge\n", + "knowledgeable\n", + "knowledges\n", + "known\n", + "knowns\n", + "knows\n", + "knuckle\n", + "knucklebone\n", + "knucklebones\n", + "knuckled\n", + "knuckler\n", + "knucklers\n", + "knuckles\n", + "knucklier\n", + "knuckliest\n", + "knuckling\n", + "knuckly\n", + "knur\n", + "knurl\n", + "knurled\n", + "knurlier\n", + "knurliest\n", + "knurling\n", + "knurls\n", + "knurly\n", + "knurs\n", + "koa\n", + "koala\n", + "koalas\n", + "koan\n", + "koans\n", + "koas\n", + "kobold\n", + "kobolds\n", + "koel\n", + "koels\n", + "kohl\n", + "kohlrabi\n", + "kohlrabies\n", + "kohls\n", + "koine\n", + "koines\n", + "kokanee\n", + "kokanees\n", + "kola\n", + "kolacky\n", + "kolas\n", + "kolhoz\n", + "kolhozes\n", + "kolhozy\n", + "kolinski\n", + "kolinskies\n", + "kolinsky\n", + "kolkhos\n", + "kolkhoses\n", + "kolkhosy\n", + "kolkhoz\n", + "kolkhozes\n", + "kolkhozy\n", + "kolkoz\n", + "kolkozes\n", + "kolkozy\n", + "kolo\n", + "kolos\n", + "komatik\n", + "komatiks\n", + "komondor\n", + "komondorock\n", + "komondorok\n", + "komondors\n", + "koodoo\n", + "koodoos\n", + "kook\n", + "kookie\n", + "kookier\n", + "kookiest\n", + "kooks\n", + "kooky\n", + "kop\n", + "kopeck\n", + "kopecks\n", + "kopek\n", + "kopeks\n", + "koph\n", + "kophs\n", + "kopje\n", + "kopjes\n", + "koppa\n", + "koppas\n", + "koppie\n", + "koppies\n", + "kops\n", + "kor\n", + "kors\n", + "korun\n", + "koruna\n", + "korunas\n", + "koruny\n", + "kos\n", + "kosher\n", + "koshered\n", + "koshering\n", + "koshers\n", + "koss\n", + "koto\n", + "kotos\n", + "kotow\n", + "kotowed\n", + "kotower\n", + "kotowers\n", + "kotowing\n", + "kotows\n", + "koumis\n", + "koumises\n", + "koumiss\n", + "koumisses\n", + "koumys\n", + "koumyses\n", + "koumyss\n", + "koumysses\n", + "kousso\n", + "koussos\n", + "kowtow\n", + "kowtowed\n", + "kowtower\n", + "kowtowers\n", + "kowtowing\n", + "kowtows\n", + "kraal\n", + "kraaled\n", + "kraaling\n", + "kraals\n", + "kraft\n", + "krafts\n", + "krait\n", + "kraits\n", + "kraken\n", + "krakens\n", + "krater\n", + "kraters\n", + "kraut\n", + "krauts\n", + "kremlin\n", + "kremlins\n", + "kreutzer\n", + "kreutzers\n", + "kreuzer\n", + "kreuzers\n", + "krikorian\n", + "krill\n", + "krills\n", + "krimmer\n", + "krimmers\n", + "kris\n", + "krises\n", + "krona\n", + "krone\n", + "kronen\n", + "kroner\n", + "kronor\n", + "kronur\n", + "kroon\n", + "krooni\n", + "kroons\n", + "krubi\n", + "krubis\n", + "krubut\n", + "krubuts\n", + "kruller\n", + "krullers\n", + "kryolite\n", + "kryolites\n", + "kryolith\n", + "kryoliths\n", + "krypton\n", + "kryptons\n", + "kuchen\n", + "kudo\n", + "kudos\n", + "kudu\n", + "kudus\n", + "kudzu\n", + "kudzus\n", + "kue\n", + "kues\n", + "kulak\n", + "kulaki\n", + "kulaks\n", + "kultur\n", + "kulturs\n", + "kumiss\n", + "kumisses\n", + "kummel\n", + "kummels\n", + "kumquat\n", + "kumquats\n", + "kumys\n", + "kumyses\n", + "kunzite\n", + "kunzites\n", + "kurbash\n", + "kurbashed\n", + "kurbashes\n", + "kurbashing\n", + "kurgan\n", + "kurgans\n", + "kurta\n", + "kurtas\n", + "kurtosis\n", + "kurtosises\n", + "kuru\n", + "kurus\n", + "kusso\n", + "kussos\n", + "kvas\n", + "kvases\n", + "kvass\n", + "kvasses\n", + "kvetch\n", + "kvetched\n", + "kvetches\n", + "kvetching\n", + "kwacha\n", + "kyack\n", + "kyacks\n", + "kyanise\n", + "kyanised\n", + "kyanises\n", + "kyanising\n", + "kyanite\n", + "kyanites\n", + "kyanize\n", + "kyanized\n", + "kyanizes\n", + "kyanizing\n", + "kyar\n", + "kyars\n", + "kyat\n", + "kyats\n", + "kylikes\n", + "kylix\n", + "kymogram\n", + "kymograms\n", + "kyphoses\n", + "kyphosis\n", + "kyphotic\n", + "kyrie\n", + "kyries\n", + "kyte\n", + "kytes\n", + "kythe\n", + "kythed\n", + "kythes\n", + "kything\n", + "la\n", + "laager\n", + "laagered\n", + "laagering\n", + "laagers\n", + "lab\n", + "labara\n", + "labarum\n", + "labarums\n", + "labdanum\n", + "labdanums\n", + "label\n", + "labeled\n", + "labeler\n", + "labelers\n", + "labeling\n", + "labella\n", + "labelled\n", + "labeller\n", + "labellers\n", + "labelling\n", + "labellum\n", + "labels\n", + "labia\n", + "labial\n", + "labially\n", + "labials\n", + "labiate\n", + "labiated\n", + "labiates\n", + "labile\n", + "labilities\n", + "lability\n", + "labium\n", + "labor\n", + "laboratories\n", + "laboratory\n", + "labored\n", + "laborer\n", + "laborers\n", + "laboring\n", + "laborious\n", + "laboriously\n", + "laborite\n", + "laborites\n", + "labors\n", + "labour\n", + "laboured\n", + "labourer\n", + "labourers\n", + "labouring\n", + "labours\n", + "labra\n", + "labret\n", + "labrets\n", + "labroid\n", + "labroids\n", + "labrum\n", + "labrums\n", + "labs\n", + "laburnum\n", + "laburnums\n", + "labyrinth\n", + "labyrinthine\n", + "labyrinths\n", + "lac\n", + "lace\n", + "laced\n", + "laceless\n", + "lacelike\n", + "lacer\n", + "lacerate\n", + "lacerated\n", + "lacerates\n", + "lacerating\n", + "laceration\n", + "lacerations\n", + "lacers\n", + "lacertid\n", + "lacertids\n", + "laces\n", + "lacewing\n", + "lacewings\n", + "lacewood\n", + "lacewoods\n", + "lacework\n", + "laceworks\n", + "lacey\n", + "laches\n", + "lachrymose\n", + "lacier\n", + "laciest\n", + "lacily\n", + "laciness\n", + "lacinesses\n", + "lacing\n", + "lacings\n", + "lack\n", + "lackadaisical\n", + "lackadaisically\n", + "lackaday\n", + "lacked\n", + "lacker\n", + "lackered\n", + "lackering\n", + "lackers\n", + "lackey\n", + "lackeyed\n", + "lackeying\n", + "lackeys\n", + "lacking\n", + "lackluster\n", + "lacks\n", + "laconic\n", + "laconically\n", + "laconism\n", + "laconisms\n", + "lacquer\n", + "lacquered\n", + "lacquering\n", + "lacquers\n", + "lacquey\n", + "lacqueyed\n", + "lacqueying\n", + "lacqueys\n", + "lacrimal\n", + "lacrimals\n", + "lacrosse\n", + "lacrosses\n", + "lacs\n", + "lactam\n", + "lactams\n", + "lactary\n", + "lactase\n", + "lactases\n", + "lactate\n", + "lactated\n", + "lactates\n", + "lactating\n", + "lactation\n", + "lactations\n", + "lacteal\n", + "lacteals\n", + "lactean\n", + "lacteous\n", + "lactic\n", + "lactone\n", + "lactones\n", + "lactonic\n", + "lactose\n", + "lactoses\n", + "lacuna\n", + "lacunae\n", + "lacunal\n", + "lacunar\n", + "lacunaria\n", + "lacunars\n", + "lacunary\n", + "lacunas\n", + "lacunate\n", + "lacune\n", + "lacunes\n", + "lacunose\n", + "lacy\n", + "lad\n", + "ladanum\n", + "ladanums\n", + "ladder\n", + "laddered\n", + "laddering\n", + "ladders\n", + "laddie\n", + "laddies\n", + "lade\n", + "laded\n", + "laden\n", + "ladened\n", + "ladening\n", + "ladens\n", + "lader\n", + "laders\n", + "lades\n", + "ladies\n", + "lading\n", + "ladings\n", + "ladino\n", + "ladinos\n", + "ladle\n", + "ladled\n", + "ladleful\n", + "ladlefuls\n", + "ladler\n", + "ladlers\n", + "ladles\n", + "ladling\n", + "ladron\n", + "ladrone\n", + "ladrones\n", + "ladrons\n", + "lads\n", + "lady\n", + "ladybird\n", + "ladybirds\n", + "ladybug\n", + "ladybugs\n", + "ladyfish\n", + "ladyfishes\n", + "ladyhood\n", + "ladyhoods\n", + "ladyish\n", + "ladykin\n", + "ladykins\n", + "ladylike\n", + "ladylove\n", + "ladyloves\n", + "ladypalm\n", + "ladypalms\n", + "ladyship\n", + "ladyships\n", + "laevo\n", + "lag\n", + "lagan\n", + "lagans\n", + "lagend\n", + "lagends\n", + "lager\n", + "lagered\n", + "lagering\n", + "lagers\n", + "laggard\n", + "laggardly\n", + "laggardness\n", + "laggardnesses\n", + "laggards\n", + "lagged\n", + "lagger\n", + "laggers\n", + "lagging\n", + "laggings\n", + "lagnappe\n", + "lagnappes\n", + "lagniappe\n", + "lagniappes\n", + "lagoon\n", + "lagoonal\n", + "lagoons\n", + "lags\n", + "laguna\n", + "lagunas\n", + "lagune\n", + "lagunes\n", + "laic\n", + "laical\n", + "laically\n", + "laich\n", + "laichs\n", + "laicise\n", + "laicised\n", + "laicises\n", + "laicising\n", + "laicism\n", + "laicisms\n", + "laicize\n", + "laicized\n", + "laicizes\n", + "laicizing\n", + "laics\n", + "laid\n", + "laigh\n", + "laighs\n", + "lain\n", + "lair\n", + "laird\n", + "lairdly\n", + "lairds\n", + "laired\n", + "lairing\n", + "lairs\n", + "laitance\n", + "laitances\n", + "laith\n", + "laithly\n", + "laities\n", + "laity\n", + "lake\n", + "laked\n", + "lakeport\n", + "lakeports\n", + "laker\n", + "lakers\n", + "lakes\n", + "lakeside\n", + "lakesides\n", + "lakh\n", + "lakhs\n", + "lakier\n", + "lakiest\n", + "laking\n", + "lakings\n", + "laky\n", + "lall\n", + "lallan\n", + "lalland\n", + "lallands\n", + "lallans\n", + "lalled\n", + "lalling\n", + "lalls\n", + "lallygag\n", + "lallygagged\n", + "lallygagging\n", + "lallygags\n", + "lam\n", + "lama\n", + "lamas\n", + "lamaseries\n", + "lamasery\n", + "lamb\n", + "lambast\n", + "lambaste\n", + "lambasted\n", + "lambastes\n", + "lambasting\n", + "lambasts\n", + "lambda\n", + "lambdas\n", + "lambdoid\n", + "lambed\n", + "lambencies\n", + "lambency\n", + "lambent\n", + "lambently\n", + "lamber\n", + "lambers\n", + "lambert\n", + "lamberts\n", + "lambie\n", + "lambies\n", + "lambing\n", + "lambkill\n", + "lambkills\n", + "lambkin\n", + "lambkins\n", + "lamblike\n", + "lambs\n", + "lambskin\n", + "lambskins\n", + "lame\n", + "lamebrain\n", + "lamebrains\n", + "lamed\n", + "lamedh\n", + "lamedhs\n", + "lameds\n", + "lamella\n", + "lamellae\n", + "lamellar\n", + "lamellas\n", + "lamely\n", + "lameness\n", + "lamenesses\n", + "lament\n", + "lamentable\n", + "lamentably\n", + "lamentation\n", + "lamentations\n", + "lamented\n", + "lamenter\n", + "lamenters\n", + "lamenting\n", + "laments\n", + "lamer\n", + "lames\n", + "lamest\n", + "lamia\n", + "lamiae\n", + "lamias\n", + "lamina\n", + "laminae\n", + "laminal\n", + "laminar\n", + "laminary\n", + "laminas\n", + "laminate\n", + "laminated\n", + "laminates\n", + "laminating\n", + "lamination\n", + "laminations\n", + "laming\n", + "laminose\n", + "laminous\n", + "lamister\n", + "lamisters\n", + "lammed\n", + "lamming\n", + "lamp\n", + "lampad\n", + "lampads\n", + "lampas\n", + "lampases\n", + "lamped\n", + "lampers\n", + "lamperses\n", + "lamping\n", + "lampion\n", + "lampions\n", + "lampoon\n", + "lampooned\n", + "lampooning\n", + "lampoons\n", + "lamppost\n", + "lampposts\n", + "lamprey\n", + "lampreys\n", + "lamps\n", + "lampyrid\n", + "lampyrids\n", + "lams\n", + "lamster\n", + "lamsters\n", + "lanai\n", + "lanais\n", + "lanate\n", + "lanated\n", + "lance\n", + "lanced\n", + "lancelet\n", + "lancelets\n", + "lancer\n", + "lancers\n", + "lances\n", + "lancet\n", + "lanceted\n", + "lancets\n", + "lanciers\n", + "lancing\n", + "land\n", + "landau\n", + "landaus\n", + "landed\n", + "lander\n", + "landers\n", + "landfall\n", + "landfalls\n", + "landfill\n", + "landfills\n", + "landform\n", + "landforms\n", + "landholder\n", + "landholders\n", + "landholding\n", + "landholdings\n", + "landing\n", + "landings\n", + "landladies\n", + "landlady\n", + "landler\n", + "landlers\n", + "landless\n", + "landlocked\n", + "landlord\n", + "landlords\n", + "landlubber\n", + "landlubbers\n", + "landman\n", + "landmark\n", + "landmarks\n", + "landmass\n", + "landmasses\n", + "landmen\n", + "lands\n", + "landscape\n", + "landscaped\n", + "landscapes\n", + "landscaping\n", + "landside\n", + "landsides\n", + "landskip\n", + "landskips\n", + "landsleit\n", + "landslid\n", + "landslide\n", + "landslides\n", + "landslip\n", + "landslips\n", + "landsman\n", + "landsmen\n", + "landward\n", + "lane\n", + "lanely\n", + "lanes\n", + "lang\n", + "langlauf\n", + "langlaufs\n", + "langley\n", + "langleys\n", + "langourous\n", + "langourously\n", + "langrage\n", + "langrages\n", + "langrel\n", + "langrels\n", + "langshan\n", + "langshans\n", + "langsyne\n", + "langsynes\n", + "language\n", + "languages\n", + "langue\n", + "langues\n", + "languet\n", + "languets\n", + "languid\n", + "languidly\n", + "languidness\n", + "languidnesses\n", + "languish\n", + "languished\n", + "languishes\n", + "languishing\n", + "languor\n", + "languors\n", + "langur\n", + "langurs\n", + "laniard\n", + "laniards\n", + "laniaries\n", + "laniary\n", + "lanital\n", + "lanitals\n", + "lank\n", + "lanker\n", + "lankest\n", + "lankier\n", + "lankiest\n", + "lankily\n", + "lankly\n", + "lankness\n", + "lanknesses\n", + "lanky\n", + "lanner\n", + "lanneret\n", + "lannerets\n", + "lanners\n", + "lanolin\n", + "lanoline\n", + "lanolines\n", + "lanolins\n", + "lanose\n", + "lanosities\n", + "lanosity\n", + "lantana\n", + "lantanas\n", + "lantern\n", + "lanterns\n", + "lanthorn\n", + "lanthorns\n", + "lanugo\n", + "lanugos\n", + "lanyard\n", + "lanyards\n", + "lap\n", + "lapboard\n", + "lapboards\n", + "lapdog\n", + "lapdogs\n", + "lapel\n", + "lapelled\n", + "lapels\n", + "lapful\n", + "lapfuls\n", + "lapidaries\n", + "lapidary\n", + "lapidate\n", + "lapidated\n", + "lapidates\n", + "lapidating\n", + "lapides\n", + "lapidified\n", + "lapidifies\n", + "lapidify\n", + "lapidifying\n", + "lapidist\n", + "lapidists\n", + "lapilli\n", + "lapillus\n", + "lapin\n", + "lapins\n", + "lapis\n", + "lapises\n", + "lapped\n", + "lapper\n", + "lappered\n", + "lappering\n", + "lappers\n", + "lappet\n", + "lappeted\n", + "lappets\n", + "lapping\n", + "laps\n", + "lapsable\n", + "lapse\n", + "lapsed\n", + "lapser\n", + "lapsers\n", + "lapses\n", + "lapsible\n", + "lapsing\n", + "lapsus\n", + "lapwing\n", + "lapwings\n", + "lar\n", + "larboard\n", + "larboards\n", + "larcener\n", + "larceners\n", + "larcenies\n", + "larcenous\n", + "larceny\n", + "larch\n", + "larches\n", + "lard\n", + "larded\n", + "larder\n", + "larders\n", + "lardier\n", + "lardiest\n", + "larding\n", + "lardlike\n", + "lardon\n", + "lardons\n", + "lardoon\n", + "lardoons\n", + "lards\n", + "lardy\n", + "lares\n", + "large\n", + "largely\n", + "largeness\n", + "largenesses\n", + "larger\n", + "larges\n", + "largess\n", + "largesse\n", + "largesses\n", + "largest\n", + "largish\n", + "largo\n", + "largos\n", + "lariat\n", + "lariated\n", + "lariating\n", + "lariats\n", + "larine\n", + "lark\n", + "larked\n", + "larker\n", + "larkers\n", + "larkier\n", + "larkiest\n", + "larking\n", + "larks\n", + "larksome\n", + "larkspur\n", + "larkspurs\n", + "larky\n", + "larrigan\n", + "larrigans\n", + "larrikin\n", + "larrikins\n", + "larrup\n", + "larruped\n", + "larruper\n", + "larrupers\n", + "larruping\n", + "larrups\n", + "lars\n", + "larum\n", + "larums\n", + "larva\n", + "larvae\n", + "larval\n", + "larvas\n", + "laryngal\n", + "laryngeal\n", + "larynges\n", + "laryngitis\n", + "laryngitises\n", + "laryngoscopy\n", + "larynx\n", + "larynxes\n", + "las\n", + "lasagna\n", + "lasagnas\n", + "lasagne\n", + "lasagnes\n", + "lascar\n", + "lascars\n", + "lascivious\n", + "lasciviousness\n", + "lasciviousnesses\n", + "lase\n", + "lased\n", + "laser\n", + "lasers\n", + "lases\n", + "lash\n", + "lashed\n", + "lasher\n", + "lashers\n", + "lashes\n", + "lashing\n", + "lashings\n", + "lashins\n", + "lashkar\n", + "lashkars\n", + "lasing\n", + "lass\n", + "lasses\n", + "lassie\n", + "lassies\n", + "lassitude\n", + "lassitudes\n", + "lasso\n", + "lassoed\n", + "lassoer\n", + "lassoers\n", + "lassoes\n", + "lassoing\n", + "lassos\n", + "last\n", + "lasted\n", + "laster\n", + "lasters\n", + "lasting\n", + "lastings\n", + "lastly\n", + "lasts\n", + "lat\n", + "latakia\n", + "latakias\n", + "latch\n", + "latched\n", + "latches\n", + "latchet\n", + "latchets\n", + "latching\n", + "latchkey\n", + "latchkeys\n", + "late\n", + "latecomer\n", + "latecomers\n", + "lated\n", + "lateen\n", + "lateener\n", + "lateeners\n", + "lateens\n", + "lately\n", + "laten\n", + "latencies\n", + "latency\n", + "latened\n", + "lateness\n", + "latenesses\n", + "latening\n", + "latens\n", + "latent\n", + "latently\n", + "latents\n", + "later\n", + "laterad\n", + "lateral\n", + "lateraled\n", + "lateraling\n", + "laterally\n", + "laterals\n", + "laterite\n", + "laterites\n", + "latest\n", + "latests\n", + "latewood\n", + "latewoods\n", + "latex\n", + "latexes\n", + "lath\n", + "lathe\n", + "lathed\n", + "lather\n", + "lathered\n", + "latherer\n", + "latherers\n", + "lathering\n", + "lathers\n", + "lathery\n", + "lathes\n", + "lathier\n", + "lathiest\n", + "lathing\n", + "lathings\n", + "laths\n", + "lathwork\n", + "lathworks\n", + "lathy\n", + "lati\n", + "latices\n", + "latigo\n", + "latigoes\n", + "latigos\n", + "latinities\n", + "latinity\n", + "latinize\n", + "latinized\n", + "latinizes\n", + "latinizing\n", + "latish\n", + "latitude\n", + "latitudes\n", + "latosol\n", + "latosols\n", + "latria\n", + "latrias\n", + "latrine\n", + "latrines\n", + "lats\n", + "latten\n", + "lattens\n", + "latter\n", + "latterly\n", + "lattice\n", + "latticed\n", + "lattices\n", + "latticing\n", + "lattin\n", + "lattins\n", + "lauan\n", + "lauans\n", + "laud\n", + "laudable\n", + "laudably\n", + "laudanum\n", + "laudanums\n", + "laudator\n", + "laudators\n", + "lauded\n", + "lauder\n", + "lauders\n", + "lauding\n", + "lauds\n", + "laugh\n", + "laughable\n", + "laughed\n", + "laugher\n", + "laughers\n", + "laughing\n", + "laughingly\n", + "laughings\n", + "laughingstock\n", + "laughingstocks\n", + "laughs\n", + "laughter\n", + "laughters\n", + "launce\n", + "launces\n", + "launch\n", + "launched\n", + "launcher\n", + "launchers\n", + "launches\n", + "launching\n", + "launder\n", + "laundered\n", + "launderer\n", + "launderers\n", + "launderess\n", + "launderesses\n", + "laundering\n", + "launders\n", + "laundries\n", + "laundry\n", + "laura\n", + "laurae\n", + "lauras\n", + "laureate\n", + "laureated\n", + "laureates\n", + "laureateship\n", + "laureateships\n", + "laureating\n", + "laurel\n", + "laureled\n", + "laureling\n", + "laurelled\n", + "laurelling\n", + "laurels\n", + "lauwine\n", + "lauwines\n", + "lava\n", + "lavabo\n", + "lavaboes\n", + "lavabos\n", + "lavage\n", + "lavages\n", + "lavalava\n", + "lavalavas\n", + "lavalier\n", + "lavaliers\n", + "lavalike\n", + "lavas\n", + "lavation\n", + "lavations\n", + "lavatories\n", + "lavatory\n", + "lave\n", + "laved\n", + "laveer\n", + "laveered\n", + "laveering\n", + "laveers\n", + "lavender\n", + "lavendered\n", + "lavendering\n", + "lavenders\n", + "laver\n", + "laverock\n", + "laverocks\n", + "lavers\n", + "laves\n", + "laving\n", + "lavish\n", + "lavished\n", + "lavisher\n", + "lavishers\n", + "lavishes\n", + "lavishest\n", + "lavishing\n", + "lavishly\n", + "lavrock\n", + "lavrocks\n", + "law\n", + "lawbreaker\n", + "lawbreakers\n", + "lawed\n", + "lawful\n", + "lawfully\n", + "lawgiver\n", + "lawgivers\n", + "lawine\n", + "lawines\n", + "lawing\n", + "lawings\n", + "lawless\n", + "lawlike\n", + "lawmaker\n", + "lawmakers\n", + "lawman\n", + "lawmen\n", + "lawn\n", + "lawns\n", + "lawny\n", + "laws\n", + "lawsuit\n", + "lawsuits\n", + "lawyer\n", + "lawyerly\n", + "lawyers\n", + "lax\n", + "laxation\n", + "laxations\n", + "laxative\n", + "laxatives\n", + "laxer\n", + "laxest\n", + "laxities\n", + "laxity\n", + "laxly\n", + "laxness\n", + "laxnesses\n", + "lay\n", + "layabout\n", + "layabouts\n", + "layaway\n", + "layaways\n", + "layed\n", + "layer\n", + "layerage\n", + "layerages\n", + "layered\n", + "layering\n", + "layerings\n", + "layers\n", + "layette\n", + "layettes\n", + "laying\n", + "layman\n", + "laymen\n", + "layoff\n", + "layoffs\n", + "layout\n", + "layouts\n", + "layover\n", + "layovers\n", + "lays\n", + "laywoman\n", + "laywomen\n", + "lazar\n", + "lazaret\n", + "lazarets\n", + "lazars\n", + "laze\n", + "lazed\n", + "lazes\n", + "lazied\n", + "lazier\n", + "lazies\n", + "laziest\n", + "lazily\n", + "laziness\n", + "lazinesses\n", + "lazing\n", + "lazuli\n", + "lazulis\n", + "lazulite\n", + "lazulites\n", + "lazurite\n", + "lazurites\n", + "lazy\n", + "lazying\n", + "lazyish\n", + "lazys\n", + "lea\n", + "leach\n", + "leachate\n", + "leachates\n", + "leached\n", + "leacher\n", + "leachers\n", + "leaches\n", + "leachier\n", + "leachiest\n", + "leaching\n", + "leachy\n", + "lead\n", + "leaded\n", + "leaden\n", + "leadenly\n", + "leader\n", + "leaderless\n", + "leaders\n", + "leadership\n", + "leaderships\n", + "leadier\n", + "leadiest\n", + "leading\n", + "leadings\n", + "leadless\n", + "leadoff\n", + "leadoffs\n", + "leads\n", + "leadsman\n", + "leadsmen\n", + "leadwork\n", + "leadworks\n", + "leadwort\n", + "leadworts\n", + "leady\n", + "leaf\n", + "leafage\n", + "leafages\n", + "leafed\n", + "leafier\n", + "leafiest\n", + "leafing\n", + "leafless\n", + "leaflet\n", + "leaflets\n", + "leaflike\n", + "leafs\n", + "leafworm\n", + "leafworms\n", + "leafy\n", + "league\n", + "leagued\n", + "leaguer\n", + "leaguered\n", + "leaguering\n", + "leaguers\n", + "leagues\n", + "leaguing\n", + "leak\n", + "leakage\n", + "leakages\n", + "leaked\n", + "leaker\n", + "leakers\n", + "leakier\n", + "leakiest\n", + "leakily\n", + "leaking\n", + "leakless\n", + "leaks\n", + "leaky\n", + "leal\n", + "leally\n", + "lealties\n", + "lealty\n", + "lean\n", + "leaned\n", + "leaner\n", + "leanest\n", + "leaning\n", + "leanings\n", + "leanly\n", + "leanness\n", + "leannesses\n", + "leans\n", + "leant\n", + "leap\n", + "leaped\n", + "leaper\n", + "leapers\n", + "leapfrog\n", + "leapfrogged\n", + "leapfrogging\n", + "leapfrogs\n", + "leaping\n", + "leaps\n", + "leapt\n", + "lear\n", + "learier\n", + "leariest\n", + "learn\n", + "learned\n", + "learner\n", + "learners\n", + "learning\n", + "learnings\n", + "learns\n", + "learnt\n", + "lears\n", + "leary\n", + "leas\n", + "leasable\n", + "lease\n", + "leased\n", + "leaser\n", + "leasers\n", + "leases\n", + "leash\n", + "leashed\n", + "leashes\n", + "leashing\n", + "leasing\n", + "leasings\n", + "least\n", + "leasts\n", + "leather\n", + "leathered\n", + "leathering\n", + "leathern\n", + "leathers\n", + "leathery\n", + "leave\n", + "leaved\n", + "leaven\n", + "leavened\n", + "leavening\n", + "leavens\n", + "leaver\n", + "leavers\n", + "leaves\n", + "leavier\n", + "leaviest\n", + "leaving\n", + "leavings\n", + "leavy\n", + "leben\n", + "lebens\n", + "lech\n", + "lechayim\n", + "lechayims\n", + "lecher\n", + "lechered\n", + "lecheries\n", + "lechering\n", + "lecherous\n", + "lecherousness\n", + "lecherousnesses\n", + "lechers\n", + "lechery\n", + "leches\n", + "lecithin\n", + "lecithins\n", + "lectern\n", + "lecterns\n", + "lection\n", + "lections\n", + "lector\n", + "lectors\n", + "lecture\n", + "lectured\n", + "lecturer\n", + "lecturers\n", + "lectures\n", + "lectureship\n", + "lectureships\n", + "lecturing\n", + "lecythi\n", + "lecythus\n", + "led\n", + "ledge\n", + "ledger\n", + "ledgers\n", + "ledges\n", + "ledgier\n", + "ledgiest\n", + "ledgy\n", + "lee\n", + "leeboard\n", + "leeboards\n", + "leech\n", + "leeched\n", + "leeches\n", + "leeching\n", + "leek\n", + "leeks\n", + "leer\n", + "leered\n", + "leerier\n", + "leeriest\n", + "leerily\n", + "leering\n", + "leers\n", + "leery\n", + "lees\n", + "leet\n", + "leets\n", + "leeward\n", + "leewards\n", + "leeway\n", + "leeways\n", + "left\n", + "lefter\n", + "leftest\n", + "lefties\n", + "leftism\n", + "leftisms\n", + "leftist\n", + "leftists\n", + "leftover\n", + "leftovers\n", + "lefts\n", + "leftward\n", + "leftwing\n", + "lefty\n", + "leg\n", + "legacies\n", + "legacy\n", + "legal\n", + "legalese\n", + "legaleses\n", + "legalise\n", + "legalised\n", + "legalises\n", + "legalising\n", + "legalism\n", + "legalisms\n", + "legalist\n", + "legalistic\n", + "legalists\n", + "legalities\n", + "legality\n", + "legalize\n", + "legalized\n", + "legalizes\n", + "legalizing\n", + "legally\n", + "legals\n", + "legate\n", + "legated\n", + "legatee\n", + "legatees\n", + "legates\n", + "legatine\n", + "legating\n", + "legation\n", + "legations\n", + "legato\n", + "legator\n", + "legators\n", + "legatos\n", + "legend\n", + "legendary\n", + "legendries\n", + "legendry\n", + "legends\n", + "leger\n", + "legerdemain\n", + "legerdemains\n", + "legerities\n", + "legerity\n", + "legers\n", + "leges\n", + "legged\n", + "leggier\n", + "leggiest\n", + "leggin\n", + "legging\n", + "leggings\n", + "leggins\n", + "leggy\n", + "leghorn\n", + "leghorns\n", + "legibilities\n", + "legibility\n", + "legible\n", + "legibly\n", + "legion\n", + "legionaries\n", + "legionary\n", + "legionnaire\n", + "legionnaires\n", + "legions\n", + "legislate\n", + "legislated\n", + "legislates\n", + "legislating\n", + "legislation\n", + "legislations\n", + "legislative\n", + "legislator\n", + "legislators\n", + "legislature\n", + "legislatures\n", + "legist\n", + "legists\n", + "legit\n", + "legitimacy\n", + "legitimate\n", + "legitimately\n", + "legits\n", + "legless\n", + "leglike\n", + "legman\n", + "legmen\n", + "legroom\n", + "legrooms\n", + "legs\n", + "legume\n", + "legumes\n", + "legumin\n", + "leguminous\n", + "legumins\n", + "legwork\n", + "legworks\n", + "lehayim\n", + "lehayims\n", + "lehr\n", + "lehrs\n", + "lehua\n", + "lehuas\n", + "lei\n", + "leis\n", + "leister\n", + "leistered\n", + "leistering\n", + "leisters\n", + "leisure\n", + "leisured\n", + "leisurely\n", + "leisures\n", + "lek\n", + "leks\n", + "lekythi\n", + "lekythoi\n", + "lekythos\n", + "lekythus\n", + "leman\n", + "lemans\n", + "lemma\n", + "lemmas\n", + "lemmata\n", + "lemming\n", + "lemmings\n", + "lemnisci\n", + "lemon\n", + "lemonade\n", + "lemonades\n", + "lemonish\n", + "lemons\n", + "lemony\n", + "lempira\n", + "lempiras\n", + "lemur\n", + "lemures\n", + "lemuroid\n", + "lemuroids\n", + "lemurs\n", + "lend\n", + "lender\n", + "lenders\n", + "lending\n", + "lends\n", + "lenes\n", + "length\n", + "lengthen\n", + "lengthened\n", + "lengthening\n", + "lengthens\n", + "lengthier\n", + "lengthiest\n", + "lengths\n", + "lengthwise\n", + "lengthy\n", + "lenience\n", + "leniences\n", + "leniencies\n", + "leniency\n", + "lenient\n", + "leniently\n", + "lenis\n", + "lenities\n", + "lenitive\n", + "lenitives\n", + "lenity\n", + "leno\n", + "lenos\n", + "lens\n", + "lense\n", + "lensed\n", + "lenses\n", + "lensless\n", + "lent\n", + "lentando\n", + "lenten\n", + "lentic\n", + "lenticel\n", + "lenticels\n", + "lentigines\n", + "lentigo\n", + "lentil\n", + "lentils\n", + "lentisk\n", + "lentisks\n", + "lento\n", + "lentoid\n", + "lentos\n", + "leone\n", + "leones\n", + "leonine\n", + "leopard\n", + "leopards\n", + "leotard\n", + "leotards\n", + "leper\n", + "lepers\n", + "lepidote\n", + "leporid\n", + "leporids\n", + "leporine\n", + "leprechaun\n", + "leprechauns\n", + "leprose\n", + "leprosies\n", + "leprosy\n", + "leprotic\n", + "leprous\n", + "lepta\n", + "lepton\n", + "leptonic\n", + "leptons\n", + "lesbian\n", + "lesbianism\n", + "lesbianisms\n", + "lesbians\n", + "lesion\n", + "lesions\n", + "less\n", + "lessee\n", + "lessees\n", + "lessen\n", + "lessened\n", + "lessening\n", + "lessens\n", + "lesser\n", + "lesson\n", + "lessoned\n", + "lessoning\n", + "lessons\n", + "lessor\n", + "lessors\n", + "lest\n", + "let\n", + "letch\n", + "letches\n", + "letdown\n", + "letdowns\n", + "lethal\n", + "lethally\n", + "lethals\n", + "lethargic\n", + "lethargies\n", + "lethargy\n", + "lethe\n", + "lethean\n", + "lethes\n", + "lets\n", + "letted\n", + "letter\n", + "lettered\n", + "letterer\n", + "letterers\n", + "letterhead\n", + "lettering\n", + "letters\n", + "letting\n", + "lettuce\n", + "lettuces\n", + "letup\n", + "letups\n", + "leu\n", + "leucemia\n", + "leucemias\n", + "leucemic\n", + "leucin\n", + "leucine\n", + "leucines\n", + "leucins\n", + "leucite\n", + "leucites\n", + "leucitic\n", + "leucoma\n", + "leucomas\n", + "leud\n", + "leudes\n", + "leuds\n", + "leukemia\n", + "leukemias\n", + "leukemic\n", + "leukemics\n", + "leukocytosis\n", + "leukoma\n", + "leukomas\n", + "leukon\n", + "leukons\n", + "leukopenia\n", + "leukophoresis\n", + "leukoses\n", + "leukosis\n", + "leukotic\n", + "lev\n", + "leva\n", + "levant\n", + "levanted\n", + "levanter\n", + "levanters\n", + "levanting\n", + "levants\n", + "levator\n", + "levatores\n", + "levators\n", + "levee\n", + "leveed\n", + "leveeing\n", + "levees\n", + "level\n", + "leveled\n", + "leveler\n", + "levelers\n", + "leveling\n", + "levelled\n", + "leveller\n", + "levellers\n", + "levelling\n", + "levelly\n", + "levelness\n", + "levelnesses\n", + "levels\n", + "lever\n", + "leverage\n", + "leveraged\n", + "leverages\n", + "leveraging\n", + "levered\n", + "leveret\n", + "leverets\n", + "levering\n", + "levers\n", + "leviable\n", + "leviathan\n", + "leviathans\n", + "levied\n", + "levier\n", + "leviers\n", + "levies\n", + "levigate\n", + "levigated\n", + "levigates\n", + "levigating\n", + "levin\n", + "levins\n", + "levirate\n", + "levirates\n", + "levitate\n", + "levitated\n", + "levitates\n", + "levitating\n", + "levities\n", + "levity\n", + "levo\n", + "levogyre\n", + "levulin\n", + "levulins\n", + "levulose\n", + "levuloses\n", + "levy\n", + "levying\n", + "lewd\n", + "lewder\n", + "lewdest\n", + "lewdly\n", + "lewdness\n", + "lewdnesses\n", + "lewis\n", + "lewises\n", + "lewisite\n", + "lewisites\n", + "lewisson\n", + "lewissons\n", + "lex\n", + "lexica\n", + "lexical\n", + "lexicographer\n", + "lexicographers\n", + "lexicographic\n", + "lexicographical\n", + "lexicographies\n", + "lexicography\n", + "lexicon\n", + "lexicons\n", + "ley\n", + "leys\n", + "li\n", + "liabilities\n", + "liability\n", + "liable\n", + "liaise\n", + "liaised\n", + "liaises\n", + "liaising\n", + "liaison\n", + "liaisons\n", + "liana\n", + "lianas\n", + "liane\n", + "lianes\n", + "liang\n", + "liangs\n", + "lianoid\n", + "liar\n", + "liard\n", + "liards\n", + "liars\n", + "lib\n", + "libation\n", + "libations\n", + "libber\n", + "libbers\n", + "libeccio\n", + "libeccios\n", + "libel\n", + "libelant\n", + "libelants\n", + "libeled\n", + "libelee\n", + "libelees\n", + "libeler\n", + "libelers\n", + "libeling\n", + "libelist\n", + "libelists\n", + "libelled\n", + "libellee\n", + "libellees\n", + "libeller\n", + "libellers\n", + "libelling\n", + "libellous\n", + "libelous\n", + "libels\n", + "liber\n", + "liberal\n", + "liberalism\n", + "liberalisms\n", + "liberalities\n", + "liberality\n", + "liberalize\n", + "liberalized\n", + "liberalizes\n", + "liberalizing\n", + "liberally\n", + "liberals\n", + "liberate\n", + "liberated\n", + "liberates\n", + "liberating\n", + "liberation\n", + "liberations\n", + "liberator\n", + "liberators\n", + "libers\n", + "liberties\n", + "libertine\n", + "libertines\n", + "liberty\n", + "libidinal\n", + "libidinous\n", + "libido\n", + "libidos\n", + "libra\n", + "librae\n", + "librarian\n", + "librarians\n", + "libraries\n", + "library\n", + "libras\n", + "librate\n", + "librated\n", + "librates\n", + "librating\n", + "libretti\n", + "librettist\n", + "librettists\n", + "libretto\n", + "librettos\n", + "libri\n", + "libs\n", + "lice\n", + "licence\n", + "licenced\n", + "licencee\n", + "licencees\n", + "licencer\n", + "licencers\n", + "licences\n", + "licencing\n", + "license\n", + "licensed\n", + "licensee\n", + "licensees\n", + "licenser\n", + "licensers\n", + "licenses\n", + "licensing\n", + "licensor\n", + "licensors\n", + "licentious\n", + "licentiously\n", + "licentiousness\n", + "licentiousnesses\n", + "lichee\n", + "lichees\n", + "lichen\n", + "lichened\n", + "lichenin\n", + "lichening\n", + "lichenins\n", + "lichenous\n", + "lichens\n", + "lichi\n", + "lichis\n", + "licht\n", + "lichted\n", + "lichting\n", + "lichtly\n", + "lichts\n", + "licit\n", + "licitly\n", + "lick\n", + "licked\n", + "licker\n", + "lickers\n", + "licking\n", + "lickings\n", + "licks\n", + "lickspit\n", + "lickspits\n", + "licorice\n", + "licorices\n", + "lictor\n", + "lictors\n", + "lid\n", + "lidar\n", + "lidars\n", + "lidded\n", + "lidding\n", + "lidless\n", + "lido\n", + "lidos\n", + "lids\n", + "lie\n", + "lied\n", + "lieder\n", + "lief\n", + "liefer\n", + "liefest\n", + "liefly\n", + "liege\n", + "liegeman\n", + "liegemen\n", + "lieges\n", + "lien\n", + "lienable\n", + "lienal\n", + "liens\n", + "lienteries\n", + "lientery\n", + "lier\n", + "lierne\n", + "liernes\n", + "liers\n", + "lies\n", + "lieu\n", + "lieus\n", + "lieutenancies\n", + "lieutenancy\n", + "lieutenant\n", + "lieutenants\n", + "lieve\n", + "liever\n", + "lievest\n", + "life\n", + "lifeblood\n", + "lifebloods\n", + "lifeboat\n", + "lifeboats\n", + "lifeful\n", + "lifeguard\n", + "lifeguards\n", + "lifeless\n", + "lifelike\n", + "lifeline\n", + "lifelines\n", + "lifelong\n", + "lifer\n", + "lifers\n", + "lifesaver\n", + "lifesavers\n", + "lifesaving\n", + "lifesavings\n", + "lifetime\n", + "lifetimes\n", + "lifeway\n", + "lifeways\n", + "lifework\n", + "lifeworks\n", + "lift\n", + "liftable\n", + "lifted\n", + "lifter\n", + "lifters\n", + "lifting\n", + "liftman\n", + "liftmen\n", + "liftoff\n", + "liftoffs\n", + "lifts\n", + "ligament\n", + "ligaments\n", + "ligan\n", + "ligand\n", + "ligands\n", + "ligans\n", + "ligase\n", + "ligases\n", + "ligate\n", + "ligated\n", + "ligates\n", + "ligating\n", + "ligation\n", + "ligations\n", + "ligative\n", + "ligature\n", + "ligatured\n", + "ligatures\n", + "ligaturing\n", + "light\n", + "lightbulb\n", + "lightbulbs\n", + "lighted\n", + "lighten\n", + "lightened\n", + "lightening\n", + "lightens\n", + "lighter\n", + "lightered\n", + "lightering\n", + "lighters\n", + "lightest\n", + "lightful\n", + "lighthearted\n", + "lightheartedly\n", + "lightheartedness\n", + "lightheartednesses\n", + "lighthouse\n", + "lighthouses\n", + "lighting\n", + "lightings\n", + "lightish\n", + "lightly\n", + "lightness\n", + "lightnesses\n", + "lightning\n", + "lightnings\n", + "lightproof\n", + "lights\n", + "ligneous\n", + "lignified\n", + "lignifies\n", + "lignify\n", + "lignifying\n", + "lignin\n", + "lignins\n", + "lignite\n", + "lignites\n", + "lignitic\n", + "ligroin\n", + "ligroine\n", + "ligroines\n", + "ligroins\n", + "ligula\n", + "ligulae\n", + "ligular\n", + "ligulas\n", + "ligulate\n", + "ligule\n", + "ligules\n", + "liguloid\n", + "ligure\n", + "ligures\n", + "likable\n", + "like\n", + "likeable\n", + "liked\n", + "likelier\n", + "likeliest\n", + "likelihood\n", + "likelihoods\n", + "likely\n", + "liken\n", + "likened\n", + "likeness\n", + "likenesses\n", + "likening\n", + "likens\n", + "liker\n", + "likers\n", + "likes\n", + "likest\n", + "likewise\n", + "liking\n", + "likings\n", + "likuta\n", + "lilac\n", + "lilacs\n", + "lilied\n", + "lilies\n", + "lilliput\n", + "lilliputs\n", + "lilt\n", + "lilted\n", + "lilting\n", + "lilts\n", + "lilty\n", + "lily\n", + "lilylike\n", + "lima\n", + "limacine\n", + "limacon\n", + "limacons\n", + "liman\n", + "limans\n", + "limas\n", + "limb\n", + "limba\n", + "limbas\n", + "limbate\n", + "limbeck\n", + "limbecks\n", + "limbed\n", + "limber\n", + "limbered\n", + "limberer\n", + "limberest\n", + "limbering\n", + "limberly\n", + "limbers\n", + "limbi\n", + "limbic\n", + "limbier\n", + "limbiest\n", + "limbing\n", + "limbless\n", + "limbo\n", + "limbos\n", + "limbs\n", + "limbus\n", + "limbuses\n", + "limby\n", + "lime\n", + "limeade\n", + "limeades\n", + "limed\n", + "limekiln\n", + "limekilns\n", + "limeless\n", + "limelight\n", + "limelights\n", + "limen\n", + "limens\n", + "limerick\n", + "limericks\n", + "limes\n", + "limestone\n", + "limestones\n", + "limey\n", + "limeys\n", + "limier\n", + "limiest\n", + "limina\n", + "liminal\n", + "liminess\n", + "liminesses\n", + "liming\n", + "limit\n", + "limitary\n", + "limitation\n", + "limitations\n", + "limited\n", + "limiteds\n", + "limiter\n", + "limiters\n", + "limites\n", + "limiting\n", + "limitless\n", + "limits\n", + "limmer\n", + "limmers\n", + "limn\n", + "limned\n", + "limner\n", + "limners\n", + "limnetic\n", + "limnic\n", + "limning\n", + "limns\n", + "limo\n", + "limonene\n", + "limonenes\n", + "limonite\n", + "limonites\n", + "limos\n", + "limousine\n", + "limousines\n", + "limp\n", + "limped\n", + "limper\n", + "limpers\n", + "limpest\n", + "limpet\n", + "limpets\n", + "limpid\n", + "limpidly\n", + "limping\n", + "limpkin\n", + "limpkins\n", + "limply\n", + "limpness\n", + "limpnesses\n", + "limps\n", + "limpsy\n", + "limuli\n", + "limuloid\n", + "limuloids\n", + "limulus\n", + "limy\n", + "lin\n", + "linable\n", + "linac\n", + "linacs\n", + "linage\n", + "linages\n", + "linalol\n", + "linalols\n", + "linalool\n", + "linalools\n", + "linchpin\n", + "linchpins\n", + "lindane\n", + "lindanes\n", + "linden\n", + "lindens\n", + "lindies\n", + "lindy\n", + "line\n", + "lineable\n", + "lineage\n", + "lineages\n", + "lineal\n", + "lineally\n", + "lineaments\n", + "linear\n", + "linearly\n", + "lineate\n", + "lineated\n", + "linebred\n", + "linecut\n", + "linecuts\n", + "lined\n", + "lineless\n", + "linelike\n", + "lineman\n", + "linemen\n", + "linen\n", + "linens\n", + "lineny\n", + "liner\n", + "liners\n", + "lines\n", + "linesman\n", + "linesmen\n", + "lineup\n", + "lineups\n", + "liney\n", + "ling\n", + "linga\n", + "lingam\n", + "lingams\n", + "lingas\n", + "lingcod\n", + "lingcods\n", + "linger\n", + "lingered\n", + "lingerer\n", + "lingerers\n", + "lingerie\n", + "lingeries\n", + "lingering\n", + "lingers\n", + "lingier\n", + "lingiest\n", + "lingo\n", + "lingoes\n", + "lings\n", + "lingua\n", + "linguae\n", + "lingual\n", + "linguals\n", + "linguine\n", + "linguines\n", + "linguini\n", + "linguinis\n", + "linguist\n", + "linguistic\n", + "linguistics\n", + "linguists\n", + "lingy\n", + "linier\n", + "liniest\n", + "liniment\n", + "liniments\n", + "linin\n", + "lining\n", + "linings\n", + "linins\n", + "link\n", + "linkable\n", + "linkage\n", + "linkages\n", + "linkboy\n", + "linkboys\n", + "linked\n", + "linker\n", + "linkers\n", + "linking\n", + "linkman\n", + "linkmen\n", + "links\n", + "linksman\n", + "linksmen\n", + "linkup\n", + "linkups\n", + "linkwork\n", + "linkworks\n", + "linky\n", + "linn\n", + "linnet\n", + "linnets\n", + "linns\n", + "lino\n", + "linocut\n", + "linocuts\n", + "linoleum\n", + "linoleums\n", + "linos\n", + "lins\n", + "linsang\n", + "linsangs\n", + "linseed\n", + "linseeds\n", + "linsey\n", + "linseys\n", + "linstock\n", + "linstocks\n", + "lint\n", + "lintel\n", + "lintels\n", + "linter\n", + "linters\n", + "lintier\n", + "lintiest\n", + "lintless\n", + "lintol\n", + "lintols\n", + "lints\n", + "linty\n", + "linum\n", + "linums\n", + "liny\n", + "lion\n", + "lioness\n", + "lionesses\n", + "lionfish\n", + "lionfishes\n", + "lionise\n", + "lionised\n", + "lioniser\n", + "lionisers\n", + "lionises\n", + "lionising\n", + "lionization\n", + "lionizations\n", + "lionize\n", + "lionized\n", + "lionizer\n", + "lionizers\n", + "lionizes\n", + "lionizing\n", + "lionlike\n", + "lions\n", + "lip\n", + "lipase\n", + "lipases\n", + "lipid\n", + "lipide\n", + "lipides\n", + "lipidic\n", + "lipids\n", + "lipin\n", + "lipins\n", + "lipless\n", + "liplike\n", + "lipocyte\n", + "lipocytes\n", + "lipoid\n", + "lipoidal\n", + "lipoids\n", + "lipoma\n", + "lipomas\n", + "lipomata\n", + "lipped\n", + "lippen\n", + "lippened\n", + "lippening\n", + "lippens\n", + "lipper\n", + "lippered\n", + "lippering\n", + "lippers\n", + "lippier\n", + "lippiest\n", + "lipping\n", + "lippings\n", + "lippy\n", + "lipreading\n", + "lipreadings\n", + "lips\n", + "lipstick\n", + "lipsticks\n", + "liquate\n", + "liquated\n", + "liquates\n", + "liquating\n", + "liquefaction\n", + "liquefactions\n", + "liquefiable\n", + "liquefied\n", + "liquefier\n", + "liquefiers\n", + "liquefies\n", + "liquefy\n", + "liquefying\n", + "liqueur\n", + "liqueurs\n", + "liquid\n", + "liquidate\n", + "liquidated\n", + "liquidates\n", + "liquidating\n", + "liquidation\n", + "liquidations\n", + "liquidities\n", + "liquidity\n", + "liquidly\n", + "liquids\n", + "liquified\n", + "liquifies\n", + "liquify\n", + "liquifying\n", + "liquor\n", + "liquored\n", + "liquoring\n", + "liquors\n", + "lira\n", + "liras\n", + "lire\n", + "liripipe\n", + "liripipes\n", + "lirot\n", + "liroth\n", + "lis\n", + "lisle\n", + "lisles\n", + "lisp\n", + "lisped\n", + "lisper\n", + "lispers\n", + "lisping\n", + "lisps\n", + "lissom\n", + "lissome\n", + "lissomly\n", + "list\n", + "listable\n", + "listed\n", + "listel\n", + "listels\n", + "listen\n", + "listened\n", + "listener\n", + "listeners\n", + "listening\n", + "listens\n", + "lister\n", + "listers\n", + "listing\n", + "listings\n", + "listless\n", + "listlessly\n", + "listlessness\n", + "listlessnesses\n", + "lists\n", + "lit\n", + "litai\n", + "litanies\n", + "litany\n", + "litas\n", + "litchi\n", + "litchis\n", + "liter\n", + "literacies\n", + "literacy\n", + "literal\n", + "literally\n", + "literals\n", + "literary\n", + "literate\n", + "literates\n", + "literati\n", + "literature\n", + "literatures\n", + "liters\n", + "litharge\n", + "litharges\n", + "lithe\n", + "lithely\n", + "lithemia\n", + "lithemias\n", + "lithemic\n", + "lither\n", + "lithesome\n", + "lithest\n", + "lithia\n", + "lithias\n", + "lithic\n", + "lithium\n", + "lithiums\n", + "litho\n", + "lithograph\n", + "lithographer\n", + "lithographers\n", + "lithographic\n", + "lithographies\n", + "lithographs\n", + "lithography\n", + "lithoid\n", + "lithos\n", + "lithosol\n", + "lithosols\n", + "litigant\n", + "litigants\n", + "litigate\n", + "litigated\n", + "litigates\n", + "litigating\n", + "litigation\n", + "litigations\n", + "litigious\n", + "litigiousness\n", + "litigiousnesses\n", + "litmus\n", + "litmuses\n", + "litoral\n", + "litotes\n", + "litre\n", + "litres\n", + "lits\n", + "litten\n", + "litter\n", + "littered\n", + "litterer\n", + "litterers\n", + "littering\n", + "litters\n", + "littery\n", + "little\n", + "littleness\n", + "littlenesses\n", + "littler\n", + "littles\n", + "littlest\n", + "littlish\n", + "littoral\n", + "littorals\n", + "litu\n", + "liturgic\n", + "liturgical\n", + "liturgically\n", + "liturgies\n", + "liturgy\n", + "livabilities\n", + "livability\n", + "livable\n", + "live\n", + "liveable\n", + "lived\n", + "livelier\n", + "liveliest\n", + "livelihood\n", + "livelihoods\n", + "livelily\n", + "liveliness\n", + "livelinesses\n", + "livelong\n", + "lively\n", + "liven\n", + "livened\n", + "livener\n", + "liveners\n", + "liveness\n", + "livenesses\n", + "livening\n", + "livens\n", + "liver\n", + "liveried\n", + "liveries\n", + "liverish\n", + "livers\n", + "livery\n", + "liveryman\n", + "liverymen\n", + "lives\n", + "livest\n", + "livestock\n", + "livestocks\n", + "livetrap\n", + "livetrapped\n", + "livetrapping\n", + "livetraps\n", + "livid\n", + "lividities\n", + "lividity\n", + "lividly\n", + "livier\n", + "liviers\n", + "living\n", + "livingly\n", + "livings\n", + "livre\n", + "livres\n", + "livyer\n", + "livyers\n", + "lixivia\n", + "lixivial\n", + "lixivium\n", + "lixiviums\n", + "lizard\n", + "lizards\n", + "llama\n", + "llamas\n", + "llano\n", + "llanos\n", + "lo\n", + "loach\n", + "loaches\n", + "load\n", + "loaded\n", + "loader\n", + "loaders\n", + "loading\n", + "loadings\n", + "loads\n", + "loadstar\n", + "loadstars\n", + "loaf\n", + "loafed\n", + "loafer\n", + "loafers\n", + "loafing\n", + "loafs\n", + "loam\n", + "loamed\n", + "loamier\n", + "loamiest\n", + "loaming\n", + "loamless\n", + "loams\n", + "loamy\n", + "loan\n", + "loanable\n", + "loaned\n", + "loaner\n", + "loaners\n", + "loaning\n", + "loanings\n", + "loans\n", + "loanword\n", + "loanwords\n", + "loath\n", + "loathe\n", + "loathed\n", + "loather\n", + "loathers\n", + "loathes\n", + "loathful\n", + "loathing\n", + "loathings\n", + "loathly\n", + "loathsome\n", + "loaves\n", + "lob\n", + "lobar\n", + "lobate\n", + "lobated\n", + "lobately\n", + "lobation\n", + "lobations\n", + "lobbed\n", + "lobbied\n", + "lobbies\n", + "lobbing\n", + "lobby\n", + "lobbyer\n", + "lobbyers\n", + "lobbygow\n", + "lobbygows\n", + "lobbying\n", + "lobbyism\n", + "lobbyisms\n", + "lobbyist\n", + "lobbyists\n", + "lobe\n", + "lobed\n", + "lobefin\n", + "lobefins\n", + "lobelia\n", + "lobelias\n", + "lobeline\n", + "lobelines\n", + "lobes\n", + "loblollies\n", + "loblolly\n", + "lobo\n", + "lobos\n", + "lobotomies\n", + "lobotomy\n", + "lobs\n", + "lobster\n", + "lobsters\n", + "lobstick\n", + "lobsticks\n", + "lobular\n", + "lobulate\n", + "lobule\n", + "lobules\n", + "lobulose\n", + "lobworm\n", + "lobworms\n", + "loca\n", + "local\n", + "locale\n", + "locales\n", + "localise\n", + "localised\n", + "localises\n", + "localising\n", + "localism\n", + "localisms\n", + "localist\n", + "localists\n", + "localite\n", + "localites\n", + "localities\n", + "locality\n", + "localization\n", + "localizations\n", + "localize\n", + "localized\n", + "localizes\n", + "localizing\n", + "locally\n", + "locals\n", + "locate\n", + "located\n", + "locater\n", + "locaters\n", + "locates\n", + "locating\n", + "location\n", + "locations\n", + "locative\n", + "locatives\n", + "locator\n", + "locators\n", + "loch\n", + "lochia\n", + "lochial\n", + "lochs\n", + "loci\n", + "lock\n", + "lockable\n", + "lockage\n", + "lockages\n", + "lockbox\n", + "lockboxes\n", + "locked\n", + "locker\n", + "lockers\n", + "locket\n", + "lockets\n", + "locking\n", + "lockjaw\n", + "lockjaws\n", + "locknut\n", + "locknuts\n", + "lockout\n", + "lockouts\n", + "lockram\n", + "lockrams\n", + "locks\n", + "locksmith\n", + "locksmiths\n", + "lockstep\n", + "locksteps\n", + "lockup\n", + "lockups\n", + "loco\n", + "locoed\n", + "locoes\n", + "locofoco\n", + "locofocos\n", + "locoing\n", + "locoism\n", + "locoisms\n", + "locomote\n", + "locomoted\n", + "locomotes\n", + "locomoting\n", + "locomotion\n", + "locomotions\n", + "locomotive\n", + "locomotives\n", + "locos\n", + "locoweed\n", + "locoweeds\n", + "locular\n", + "loculate\n", + "locule\n", + "loculed\n", + "locules\n", + "loculi\n", + "loculus\n", + "locum\n", + "locums\n", + "locus\n", + "locust\n", + "locusta\n", + "locustae\n", + "locustal\n", + "locusts\n", + "locution\n", + "locutions\n", + "locutories\n", + "locutory\n", + "lode\n", + "loden\n", + "lodens\n", + "lodes\n", + "lodestar\n", + "lodestars\n", + "lodge\n", + "lodged\n", + "lodgement\n", + "lodgements\n", + "lodger\n", + "lodgers\n", + "lodges\n", + "lodging\n", + "lodgings\n", + "lodgment\n", + "lodgments\n", + "lodicule\n", + "lodicules\n", + "loess\n", + "loessal\n", + "loesses\n", + "loessial\n", + "loft\n", + "lofted\n", + "lofter\n", + "lofters\n", + "loftier\n", + "loftiest\n", + "loftily\n", + "loftiness\n", + "loftinesses\n", + "lofting\n", + "loftless\n", + "lofts\n", + "lofty\n", + "log\n", + "logan\n", + "logans\n", + "logarithm\n", + "logarithmic\n", + "logarithms\n", + "logbook\n", + "logbooks\n", + "loge\n", + "loges\n", + "loggats\n", + "logged\n", + "logger\n", + "loggerhead\n", + "loggerheads\n", + "loggers\n", + "loggets\n", + "loggia\n", + "loggias\n", + "loggie\n", + "loggier\n", + "loggiest\n", + "logging\n", + "loggings\n", + "loggy\n", + "logia\n", + "logic\n", + "logical\n", + "logically\n", + "logician\n", + "logicians\n", + "logicise\n", + "logicised\n", + "logicises\n", + "logicising\n", + "logicize\n", + "logicized\n", + "logicizes\n", + "logicizing\n", + "logics\n", + "logier\n", + "logiest\n", + "logily\n", + "loginess\n", + "loginesses\n", + "logion\n", + "logions\n", + "logistic\n", + "logistical\n", + "logistics\n", + "logjam\n", + "logjams\n", + "logo\n", + "logogram\n", + "logograms\n", + "logoi\n", + "logomach\n", + "logomachs\n", + "logos\n", + "logotype\n", + "logotypes\n", + "logotypies\n", + "logotypy\n", + "logroll\n", + "logrolled\n", + "logrolling\n", + "logrolls\n", + "logs\n", + "logway\n", + "logways\n", + "logwood\n", + "logwoods\n", + "logy\n", + "loin\n", + "loins\n", + "loiter\n", + "loitered\n", + "loiterer\n", + "loiterers\n", + "loitering\n", + "loiters\n", + "loll\n", + "lolled\n", + "loller\n", + "lollers\n", + "lollies\n", + "lolling\n", + "lollipop\n", + "lollipops\n", + "lollop\n", + "lolloped\n", + "lolloping\n", + "lollops\n", + "lolls\n", + "lolly\n", + "lollygag\n", + "lollygagged\n", + "lollygagging\n", + "lollygags\n", + "lollypop\n", + "lollypops\n", + "loment\n", + "lomenta\n", + "loments\n", + "lomentum\n", + "lomentums\n", + "lone\n", + "lonelier\n", + "loneliest\n", + "lonelily\n", + "loneliness\n", + "lonelinesses\n", + "lonely\n", + "loneness\n", + "lonenesses\n", + "loner\n", + "loners\n", + "lonesome\n", + "lonesomely\n", + "lonesomeness\n", + "lonesomenesses\n", + "lonesomes\n", + "long\n", + "longan\n", + "longans\n", + "longboat\n", + "longboats\n", + "longbow\n", + "longbows\n", + "longe\n", + "longed\n", + "longeing\n", + "longer\n", + "longeron\n", + "longerons\n", + "longers\n", + "longes\n", + "longest\n", + "longevities\n", + "longevity\n", + "longhair\n", + "longhairs\n", + "longhand\n", + "longhands\n", + "longhead\n", + "longheads\n", + "longhorn\n", + "longhorns\n", + "longing\n", + "longingly\n", + "longings\n", + "longish\n", + "longitude\n", + "longitudes\n", + "longitudinal\n", + "longitudinally\n", + "longleaf\n", + "longleaves\n", + "longline\n", + "longlines\n", + "longly\n", + "longness\n", + "longnesses\n", + "longs\n", + "longship\n", + "longships\n", + "longshoreman\n", + "longshoremen\n", + "longsome\n", + "longspur\n", + "longspurs\n", + "longtime\n", + "longueur\n", + "longueurs\n", + "longways\n", + "longwise\n", + "loo\n", + "loobies\n", + "looby\n", + "looed\n", + "looey\n", + "looeys\n", + "loof\n", + "loofa\n", + "loofah\n", + "loofahs\n", + "loofas\n", + "loofs\n", + "looie\n", + "looies\n", + "looing\n", + "look\n", + "lookdown\n", + "lookdowns\n", + "looked\n", + "looker\n", + "lookers\n", + "looking\n", + "lookout\n", + "lookouts\n", + "looks\n", + "lookup\n", + "lookups\n", + "loom\n", + "loomed\n", + "looming\n", + "looms\n", + "loon\n", + "looney\n", + "loonier\n", + "loonies\n", + "looniest\n", + "loons\n", + "loony\n", + "loop\n", + "looped\n", + "looper\n", + "loopers\n", + "loophole\n", + "loopholed\n", + "loopholes\n", + "loopholing\n", + "loopier\n", + "loopiest\n", + "looping\n", + "loops\n", + "loopy\n", + "loos\n", + "loose\n", + "loosed\n", + "looseleaf\n", + "looseleafs\n", + "loosely\n", + "loosen\n", + "loosened\n", + "loosener\n", + "looseners\n", + "looseness\n", + "loosenesses\n", + "loosening\n", + "loosens\n", + "looser\n", + "looses\n", + "loosest\n", + "loosing\n", + "loot\n", + "looted\n", + "looter\n", + "looters\n", + "looting\n", + "loots\n", + "lop\n", + "lope\n", + "loped\n", + "loper\n", + "lopers\n", + "lopes\n", + "loping\n", + "lopped\n", + "lopper\n", + "loppered\n", + "loppering\n", + "loppers\n", + "loppier\n", + "loppiest\n", + "lopping\n", + "loppy\n", + "lops\n", + "lopsided\n", + "lopsidedly\n", + "lopsidedness\n", + "lopsidednesses\n", + "lopstick\n", + "lopsticks\n", + "loquacious\n", + "loquacities\n", + "loquacity\n", + "loquat\n", + "loquats\n", + "loral\n", + "loran\n", + "lorans\n", + "lord\n", + "lorded\n", + "lording\n", + "lordings\n", + "lordless\n", + "lordlier\n", + "lordliest\n", + "lordlike\n", + "lordling\n", + "lordlings\n", + "lordly\n", + "lordoma\n", + "lordomas\n", + "lordoses\n", + "lordosis\n", + "lordotic\n", + "lords\n", + "lordship\n", + "lordships\n", + "lordy\n", + "lore\n", + "loreal\n", + "lores\n", + "lorgnon\n", + "lorgnons\n", + "lorica\n", + "loricae\n", + "loricate\n", + "loricates\n", + "lories\n", + "lorikeet\n", + "lorikeets\n", + "lorimer\n", + "lorimers\n", + "loriner\n", + "loriners\n", + "loris\n", + "lorises\n", + "lorn\n", + "lornness\n", + "lornnesses\n", + "lorries\n", + "lorry\n", + "lory\n", + "losable\n", + "lose\n", + "losel\n", + "losels\n", + "loser\n", + "losers\n", + "loses\n", + "losing\n", + "losingly\n", + "losings\n", + "loss\n", + "losses\n", + "lossy\n", + "lost\n", + "lostness\n", + "lostnesses\n", + "lot\n", + "lota\n", + "lotah\n", + "lotahs\n", + "lotas\n", + "loth\n", + "lothario\n", + "lotharios\n", + "lothsome\n", + "lotic\n", + "lotion\n", + "lotions\n", + "lotos\n", + "lotoses\n", + "lots\n", + "lotted\n", + "lotteries\n", + "lottery\n", + "lotting\n", + "lotto\n", + "lottos\n", + "lotus\n", + "lotuses\n", + "loud\n", + "louden\n", + "loudened\n", + "loudening\n", + "loudens\n", + "louder\n", + "loudest\n", + "loudish\n", + "loudlier\n", + "loudliest\n", + "loudly\n", + "loudness\n", + "loudnesses\n", + "loudspeaker\n", + "loudspeakers\n", + "lough\n", + "loughs\n", + "louie\n", + "louies\n", + "louis\n", + "lounge\n", + "lounged\n", + "lounger\n", + "loungers\n", + "lounges\n", + "lounging\n", + "loungy\n", + "loup\n", + "loupe\n", + "louped\n", + "loupen\n", + "loupes\n", + "louping\n", + "loups\n", + "lour\n", + "loured\n", + "louring\n", + "lours\n", + "loury\n", + "louse\n", + "loused\n", + "louses\n", + "lousier\n", + "lousiest\n", + "lousily\n", + "lousiness\n", + "lousinesses\n", + "lousing\n", + "lousy\n", + "lout\n", + "louted\n", + "louting\n", + "loutish\n", + "loutishly\n", + "louts\n", + "louver\n", + "louvered\n", + "louvers\n", + "louvre\n", + "louvres\n", + "lovable\n", + "lovably\n", + "lovage\n", + "lovages\n", + "love\n", + "loveable\n", + "loveably\n", + "lovebird\n", + "lovebirds\n", + "loved\n", + "loveless\n", + "lovelier\n", + "lovelies\n", + "loveliest\n", + "lovelily\n", + "loveliness\n", + "lovelinesses\n", + "lovelock\n", + "lovelocks\n", + "lovelorn\n", + "lovely\n", + "lover\n", + "loverly\n", + "lovers\n", + "loves\n", + "lovesick\n", + "lovesome\n", + "lovevine\n", + "lovevines\n", + "loving\n", + "lovingly\n", + "low\n", + "lowborn\n", + "lowboy\n", + "lowboys\n", + "lowbred\n", + "lowbrow\n", + "lowbrows\n", + "lowdown\n", + "lowdowns\n", + "lowe\n", + "lowed\n", + "lower\n", + "lowercase\n", + "lowered\n", + "lowering\n", + "lowers\n", + "lowery\n", + "lowes\n", + "lowest\n", + "lowing\n", + "lowings\n", + "lowish\n", + "lowland\n", + "lowlands\n", + "lowlier\n", + "lowliest\n", + "lowlife\n", + "lowlifes\n", + "lowliness\n", + "lowlinesses\n", + "lowly\n", + "lown\n", + "lowness\n", + "lownesses\n", + "lows\n", + "lowse\n", + "lox\n", + "loxed\n", + "loxes\n", + "loxing\n", + "loyal\n", + "loyaler\n", + "loyalest\n", + "loyalism\n", + "loyalisms\n", + "loyalist\n", + "loyalists\n", + "loyally\n", + "loyalties\n", + "loyalty\n", + "lozenge\n", + "lozenges\n", + "luau\n", + "luaus\n", + "lubber\n", + "lubberly\n", + "lubbers\n", + "lube\n", + "lubes\n", + "lubric\n", + "lubricant\n", + "lubricants\n", + "lubricate\n", + "lubricated\n", + "lubricates\n", + "lubricating\n", + "lubrication\n", + "lubrications\n", + "lubricator\n", + "lubricators\n", + "lucarne\n", + "lucarnes\n", + "luce\n", + "lucence\n", + "lucences\n", + "lucencies\n", + "lucency\n", + "lucent\n", + "lucently\n", + "lucern\n", + "lucerne\n", + "lucernes\n", + "lucerns\n", + "luces\n", + "lucid\n", + "lucidities\n", + "lucidity\n", + "lucidly\n", + "lucidness\n", + "lucidnesses\n", + "lucifer\n", + "lucifers\n", + "luck\n", + "lucked\n", + "luckie\n", + "luckier\n", + "luckies\n", + "luckiest\n", + "luckily\n", + "luckiness\n", + "luckinesses\n", + "lucking\n", + "luckless\n", + "lucks\n", + "lucky\n", + "lucrative\n", + "lucratively\n", + "lucrativeness\n", + "lucrativenesses\n", + "lucre\n", + "lucres\n", + "luculent\n", + "ludicrous\n", + "ludicrously\n", + "ludicrousness\n", + "ludicrousnesses\n", + "lues\n", + "luetic\n", + "luetics\n", + "luff\n", + "luffa\n", + "luffas\n", + "luffed\n", + "luffing\n", + "luffs\n", + "lug\n", + "luge\n", + "luges\n", + "luggage\n", + "luggages\n", + "lugged\n", + "lugger\n", + "luggers\n", + "luggie\n", + "luggies\n", + "lugging\n", + "lugs\n", + "lugsail\n", + "lugsails\n", + "lugubrious\n", + "lugubriously\n", + "lugubriousness\n", + "lugubriousnesses\n", + "lugworm\n", + "lugworms\n", + "lukewarm\n", + "lull\n", + "lullabied\n", + "lullabies\n", + "lullaby\n", + "lullabying\n", + "lulled\n", + "lulling\n", + "lulls\n", + "lulu\n", + "lulus\n", + "lum\n", + "lumbago\n", + "lumbagos\n", + "lumbar\n", + "lumbars\n", + "lumber\n", + "lumbered\n", + "lumberer\n", + "lumberers\n", + "lumbering\n", + "lumberjack\n", + "lumberjacks\n", + "lumberman\n", + "lumbermen\n", + "lumbers\n", + "lumberyard\n", + "lumberyards\n", + "lumen\n", + "lumenal\n", + "lumens\n", + "lumina\n", + "luminal\n", + "luminance\n", + "luminances\n", + "luminaries\n", + "luminary\n", + "luminescence\n", + "luminescences\n", + "luminescent\n", + "luminist\n", + "luminists\n", + "luminosities\n", + "luminosity\n", + "luminous\n", + "luminously\n", + "lummox\n", + "lummoxes\n", + "lump\n", + "lumped\n", + "lumpen\n", + "lumpens\n", + "lumper\n", + "lumpers\n", + "lumpfish\n", + "lumpfishes\n", + "lumpier\n", + "lumpiest\n", + "lumpily\n", + "lumping\n", + "lumpish\n", + "lumps\n", + "lumpy\n", + "lums\n", + "luna\n", + "lunacies\n", + "lunacy\n", + "lunar\n", + "lunarian\n", + "lunarians\n", + "lunars\n", + "lunas\n", + "lunate\n", + "lunated\n", + "lunately\n", + "lunatic\n", + "lunatics\n", + "lunation\n", + "lunations\n", + "lunch\n", + "lunched\n", + "luncheon\n", + "luncheons\n", + "luncher\n", + "lunchers\n", + "lunches\n", + "lunching\n", + "lune\n", + "lunes\n", + "lunet\n", + "lunets\n", + "lunette\n", + "lunettes\n", + "lung\n", + "lungan\n", + "lungans\n", + "lunge\n", + "lunged\n", + "lungee\n", + "lungees\n", + "lunger\n", + "lungers\n", + "lunges\n", + "lungfish\n", + "lungfishes\n", + "lungi\n", + "lunging\n", + "lungis\n", + "lungs\n", + "lungworm\n", + "lungworms\n", + "lungwort\n", + "lungworts\n", + "lungyi\n", + "lungyis\n", + "lunier\n", + "lunies\n", + "luniest\n", + "lunk\n", + "lunker\n", + "lunkers\n", + "lunkhead\n", + "lunkheads\n", + "lunks\n", + "lunt\n", + "lunted\n", + "lunting\n", + "lunts\n", + "lunula\n", + "lunulae\n", + "lunular\n", + "lunulate\n", + "lunule\n", + "lunules\n", + "luny\n", + "lupanar\n", + "lupanars\n", + "lupin\n", + "lupine\n", + "lupines\n", + "lupins\n", + "lupous\n", + "lupulin\n", + "lupulins\n", + "lupus\n", + "lupuses\n", + "lurch\n", + "lurched\n", + "lurcher\n", + "lurchers\n", + "lurches\n", + "lurching\n", + "lurdan\n", + "lurdane\n", + "lurdanes\n", + "lurdans\n", + "lure\n", + "lured\n", + "lurer\n", + "lurers\n", + "lures\n", + "lurid\n", + "luridly\n", + "luring\n", + "lurk\n", + "lurked\n", + "lurker\n", + "lurkers\n", + "lurking\n", + "lurks\n", + "luscious\n", + "lusciously\n", + "lusciousness\n", + "lusciousnesses\n", + "lush\n", + "lushed\n", + "lusher\n", + "lushes\n", + "lushest\n", + "lushing\n", + "lushly\n", + "lushness\n", + "lushnesses\n", + "lust\n", + "lusted\n", + "luster\n", + "lustered\n", + "lustering\n", + "lusterless\n", + "lusters\n", + "lustful\n", + "lustier\n", + "lustiest\n", + "lustily\n", + "lustiness\n", + "lustinesses\n", + "lusting\n", + "lustra\n", + "lustral\n", + "lustrate\n", + "lustrated\n", + "lustrates\n", + "lustrating\n", + "lustre\n", + "lustred\n", + "lustres\n", + "lustring\n", + "lustrings\n", + "lustrous\n", + "lustrum\n", + "lustrums\n", + "lusts\n", + "lusty\n", + "lusus\n", + "lususes\n", + "lutanist\n", + "lutanists\n", + "lute\n", + "lutea\n", + "luteal\n", + "lutecium\n", + "luteciums\n", + "luted\n", + "lutein\n", + "luteins\n", + "lutenist\n", + "lutenists\n", + "luteolin\n", + "luteolins\n", + "luteous\n", + "lutes\n", + "lutetium\n", + "lutetiums\n", + "luteum\n", + "luthern\n", + "lutherns\n", + "luting\n", + "lutings\n", + "lutist\n", + "lutists\n", + "lux\n", + "luxate\n", + "luxated\n", + "luxates\n", + "luxating\n", + "luxation\n", + "luxations\n", + "luxe\n", + "luxes\n", + "luxuriance\n", + "luxuriances\n", + "luxuriant\n", + "luxuriantly\n", + "luxuriate\n", + "luxuriated\n", + "luxuriates\n", + "luxuriating\n", + "luxuries\n", + "luxurious\n", + "luxuriously\n", + "luxury\n", + "lyard\n", + "lyart\n", + "lyase\n", + "lyases\n", + "lycanthropies\n", + "lycanthropy\n", + "lycea\n", + "lycee\n", + "lycees\n", + "lyceum\n", + "lyceums\n", + "lychee\n", + "lychees\n", + "lychnis\n", + "lychnises\n", + "lycopene\n", + "lycopenes\n", + "lycopod\n", + "lycopods\n", + "lyddite\n", + "lyddites\n", + "lye\n", + "lyes\n", + "lying\n", + "lyingly\n", + "lyings\n", + "lymph\n", + "lymphatic\n", + "lymphocytopenia\n", + "lymphocytosis\n", + "lymphoid\n", + "lymphoma\n", + "lymphomas\n", + "lymphomata\n", + "lymphs\n", + "lyncean\n", + "lynch\n", + "lynched\n", + "lyncher\n", + "lynchers\n", + "lynches\n", + "lynching\n", + "lynchings\n", + "lynx\n", + "lynxes\n", + "lyophile\n", + "lyrate\n", + "lyrated\n", + "lyrately\n", + "lyre\n", + "lyrebird\n", + "lyrebirds\n", + "lyres\n", + "lyric\n", + "lyrical\n", + "lyricise\n", + "lyricised\n", + "lyricises\n", + "lyricising\n", + "lyricism\n", + "lyricisms\n", + "lyricist\n", + "lyricists\n", + "lyricize\n", + "lyricized\n", + "lyricizes\n", + "lyricizing\n", + "lyrics\n", + "lyriform\n", + "lyrism\n", + "lyrisms\n", + "lyrist\n", + "lyrists\n", + "lysate\n", + "lysates\n", + "lyse\n", + "lysed\n", + "lyses\n", + "lysin\n", + "lysine\n", + "lysines\n", + "lysing\n", + "lysins\n", + "lysis\n", + "lysogen\n", + "lysogenies\n", + "lysogens\n", + "lysogeny\n", + "lysosome\n", + "lysosomes\n", + "lysozyme\n", + "lysozymes\n", + "lyssa\n", + "lyssas\n", + "lytic\n", + "lytta\n", + "lyttae\n", + "lyttas\n", + "ma\n", + "maar\n", + "maars\n", + "mac\n", + "macaber\n", + "macabre\n", + "macaco\n", + "macacos\n", + "macadam\n", + "macadamize\n", + "macadamized\n", + "macadamizes\n", + "macadamizing\n", + "macadams\n", + "macaque\n", + "macaques\n", + "macaroni\n", + "macaronies\n", + "macaronis\n", + "macaroon\n", + "macaroons\n", + "macaw\n", + "macaws\n", + "maccabaw\n", + "maccabaws\n", + "maccaboy\n", + "maccaboys\n", + "macchia\n", + "macchie\n", + "maccoboy\n", + "maccoboys\n", + "mace\n", + "maced\n", + "macer\n", + "macerate\n", + "macerated\n", + "macerates\n", + "macerating\n", + "macers\n", + "maces\n", + "mach\n", + "machete\n", + "machetes\n", + "machinate\n", + "machinated\n", + "machinates\n", + "machinating\n", + "machination\n", + "machinations\n", + "machine\n", + "machineable\n", + "machined\n", + "machineries\n", + "machinery\n", + "machines\n", + "machining\n", + "machinist\n", + "machinists\n", + "machismo\n", + "machismos\n", + "macho\n", + "machos\n", + "machree\n", + "machrees\n", + "machs\n", + "machzor\n", + "machzorim\n", + "machzors\n", + "macing\n", + "mack\n", + "mackerel\n", + "mackerels\n", + "mackinaw\n", + "mackinaws\n", + "mackle\n", + "mackled\n", + "mackles\n", + "mackling\n", + "macks\n", + "macle\n", + "macled\n", + "macles\n", + "macrame\n", + "macrames\n", + "macro\n", + "macrocosm\n", + "macrocosms\n", + "macron\n", + "macrons\n", + "macros\n", + "macrural\n", + "macruran\n", + "macrurans\n", + "macs\n", + "macula\n", + "maculae\n", + "macular\n", + "maculas\n", + "maculate\n", + "maculated\n", + "maculates\n", + "maculating\n", + "macule\n", + "maculed\n", + "macules\n", + "maculing\n", + "mad\n", + "madam\n", + "madame\n", + "madames\n", + "madams\n", + "madcap\n", + "madcaps\n", + "madded\n", + "madden\n", + "maddened\n", + "maddening\n", + "maddens\n", + "madder\n", + "madders\n", + "maddest\n", + "madding\n", + "maddish\n", + "made\n", + "madeira\n", + "madeiras\n", + "mademoiselle\n", + "mademoiselles\n", + "madhouse\n", + "madhouses\n", + "madly\n", + "madman\n", + "madmen\n", + "madness\n", + "madnesses\n", + "madonna\n", + "madonnas\n", + "madras\n", + "madrases\n", + "madre\n", + "madres\n", + "madrigal\n", + "madrigals\n", + "madrona\n", + "madronas\n", + "madrone\n", + "madrones\n", + "madrono\n", + "madronos\n", + "mads\n", + "maduro\n", + "maduros\n", + "madwoman\n", + "madwomen\n", + "madwort\n", + "madworts\n", + "madzoon\n", + "madzoons\n", + "mae\n", + "maelstrom\n", + "maelstroms\n", + "maenad\n", + "maenades\n", + "maenadic\n", + "maenads\n", + "maes\n", + "maestoso\n", + "maestosos\n", + "maestri\n", + "maestro\n", + "maestros\n", + "maffia\n", + "maffias\n", + "maffick\n", + "mafficked\n", + "mafficking\n", + "mafficks\n", + "mafia\n", + "mafias\n", + "mafic\n", + "mafiosi\n", + "mafioso\n", + "maftir\n", + "maftirs\n", + "mag\n", + "magazine\n", + "magazines\n", + "magdalen\n", + "magdalens\n", + "mage\n", + "magenta\n", + "magentas\n", + "mages\n", + "magestical\n", + "magestically\n", + "maggot\n", + "maggots\n", + "maggoty\n", + "magi\n", + "magic\n", + "magical\n", + "magically\n", + "magician\n", + "magicians\n", + "magicked\n", + "magicking\n", + "magics\n", + "magilp\n", + "magilps\n", + "magister\n", + "magisterial\n", + "magisters\n", + "magistracies\n", + "magistracy\n", + "magistrate\n", + "magistrates\n", + "magma\n", + "magmas\n", + "magmata\n", + "magmatic\n", + "magnanimities\n", + "magnanimity\n", + "magnanimous\n", + "magnanimously\n", + "magnanimousness\n", + "magnanimousnesses\n", + "magnate\n", + "magnates\n", + "magnesia\n", + "magnesias\n", + "magnesic\n", + "magnesium\n", + "magnesiums\n", + "magnet\n", + "magnetic\n", + "magnetically\n", + "magnetics\n", + "magnetism\n", + "magnetisms\n", + "magnetite\n", + "magnetites\n", + "magnetizable\n", + "magnetization\n", + "magnetizations\n", + "magnetize\n", + "magnetized\n", + "magnetizer\n", + "magnetizers\n", + "magnetizes\n", + "magnetizing\n", + "magneto\n", + "magneton\n", + "magnetons\n", + "magnetos\n", + "magnets\n", + "magnific\n", + "magnification\n", + "magnifications\n", + "magnificence\n", + "magnificences\n", + "magnificent\n", + "magnificently\n", + "magnified\n", + "magnifier\n", + "magnifiers\n", + "magnifies\n", + "magnify\n", + "magnifying\n", + "magnitude\n", + "magnitudes\n", + "magnolia\n", + "magnolias\n", + "magnum\n", + "magnums\n", + "magot\n", + "magots\n", + "magpie\n", + "magpies\n", + "mags\n", + "maguey\n", + "magueys\n", + "magus\n", + "maharaja\n", + "maharajas\n", + "maharani\n", + "maharanis\n", + "mahatma\n", + "mahatmas\n", + "mahjong\n", + "mahjongg\n", + "mahjonggs\n", + "mahjongs\n", + "mahoe\n", + "mahoes\n", + "mahogonies\n", + "mahogony\n", + "mahonia\n", + "mahonias\n", + "mahout\n", + "mahouts\n", + "mahuang\n", + "mahuangs\n", + "mahzor\n", + "mahzorim\n", + "mahzors\n", + "maid\n", + "maiden\n", + "maidenhair\n", + "maidenhairs\n", + "maidenhood\n", + "maidenhoods\n", + "maidenly\n", + "maidens\n", + "maidhood\n", + "maidhoods\n", + "maidish\n", + "maids\n", + "maieutic\n", + "maigre\n", + "maihem\n", + "maihems\n", + "mail\n", + "mailable\n", + "mailbag\n", + "mailbags\n", + "mailbox\n", + "mailboxes\n", + "maile\n", + "mailed\n", + "mailer\n", + "mailers\n", + "mailes\n", + "mailing\n", + "mailings\n", + "maill\n", + "mailless\n", + "maillot\n", + "maillots\n", + "maills\n", + "mailman\n", + "mailmen\n", + "mailperson\n", + "mailpersons\n", + "mails\n", + "mailwoman\n", + "maim\n", + "maimed\n", + "maimer\n", + "maimers\n", + "maiming\n", + "maims\n", + "main\n", + "mainland\n", + "mainlands\n", + "mainline\n", + "mainlined\n", + "mainlines\n", + "mainlining\n", + "mainly\n", + "mainmast\n", + "mainmasts\n", + "mains\n", + "mainsail\n", + "mainsails\n", + "mainstay\n", + "mainstays\n", + "mainstream\n", + "mainstreams\n", + "maintain\n", + "maintainabilities\n", + "maintainability\n", + "maintainable\n", + "maintainance\n", + "maintainances\n", + "maintained\n", + "maintaining\n", + "maintains\n", + "maintenance\n", + "maintenances\n", + "maintop\n", + "maintops\n", + "maiolica\n", + "maiolicas\n", + "mair\n", + "mairs\n", + "maist\n", + "maists\n", + "maize\n", + "maizes\n", + "majagua\n", + "majaguas\n", + "majestic\n", + "majesties\n", + "majesty\n", + "majolica\n", + "majolicas\n", + "major\n", + "majordomo\n", + "majordomos\n", + "majored\n", + "majoring\n", + "majorities\n", + "majority\n", + "majors\n", + "makable\n", + "makar\n", + "makars\n", + "make\n", + "makeable\n", + "makebate\n", + "makebates\n", + "makefast\n", + "makefasts\n", + "maker\n", + "makers\n", + "makes\n", + "makeshift\n", + "makeshifts\n", + "makeup\n", + "makeups\n", + "makimono\n", + "makimonos\n", + "making\n", + "makings\n", + "mako\n", + "makos\n", + "makuta\n", + "maladies\n", + "maladjusted\n", + "maladjustment\n", + "maladjustments\n", + "maladroit\n", + "malady\n", + "malaise\n", + "malaises\n", + "malamute\n", + "malamutes\n", + "malapert\n", + "malaperts\n", + "malaprop\n", + "malapropism\n", + "malapropisms\n", + "malaprops\n", + "malar\n", + "malaria\n", + "malarial\n", + "malarian\n", + "malarias\n", + "malarkey\n", + "malarkeys\n", + "malarkies\n", + "malarky\n", + "malaroma\n", + "malaromas\n", + "malars\n", + "malate\n", + "malates\n", + "malcontent\n", + "malcontents\n", + "male\n", + "maleate\n", + "maleates\n", + "maledict\n", + "maledicted\n", + "maledicting\n", + "malediction\n", + "maledictions\n", + "maledicts\n", + "malefactor\n", + "malefactors\n", + "malefic\n", + "maleficence\n", + "maleficences\n", + "maleficent\n", + "malemiut\n", + "malemiuts\n", + "malemute\n", + "malemutes\n", + "maleness\n", + "malenesses\n", + "males\n", + "malevolence\n", + "malevolences\n", + "malevolent\n", + "malfeasance\n", + "malfeasances\n", + "malfed\n", + "malformation\n", + "malformations\n", + "malformed\n", + "malfunction\n", + "malfunctioned\n", + "malfunctioning\n", + "malfunctions\n", + "malgre\n", + "malic\n", + "malice\n", + "malices\n", + "malicious\n", + "maliciously\n", + "malign\n", + "malignancies\n", + "malignancy\n", + "malignant\n", + "malignantly\n", + "maligned\n", + "maligner\n", + "maligners\n", + "maligning\n", + "malignities\n", + "malignity\n", + "malignly\n", + "maligns\n", + "malihini\n", + "malihinis\n", + "maline\n", + "malines\n", + "malinger\n", + "malingered\n", + "malingerer\n", + "malingerers\n", + "malingering\n", + "malingers\n", + "malison\n", + "malisons\n", + "malkin\n", + "malkins\n", + "mall\n", + "mallard\n", + "mallards\n", + "malleabilities\n", + "malleability\n", + "malleable\n", + "malled\n", + "mallee\n", + "mallees\n", + "mallei\n", + "malleoli\n", + "mallet\n", + "mallets\n", + "malleus\n", + "malling\n", + "mallow\n", + "mallows\n", + "malls\n", + "malm\n", + "malmier\n", + "malmiest\n", + "malms\n", + "malmsey\n", + "malmseys\n", + "malmy\n", + "malnourished\n", + "malnutrition\n", + "malnutritions\n", + "malodor\n", + "malodorous\n", + "malodorously\n", + "malodorousness\n", + "malodorousnesses\n", + "malodors\n", + "malposed\n", + "malpractice\n", + "malpractices\n", + "malt\n", + "maltase\n", + "maltases\n", + "malted\n", + "maltha\n", + "malthas\n", + "maltier\n", + "maltiest\n", + "malting\n", + "maltol\n", + "maltols\n", + "maltose\n", + "maltoses\n", + "maltreat\n", + "maltreated\n", + "maltreating\n", + "maltreatment\n", + "maltreatments\n", + "maltreats\n", + "malts\n", + "maltster\n", + "maltsters\n", + "malty\n", + "malvasia\n", + "malvasias\n", + "mama\n", + "mamas\n", + "mamba\n", + "mambas\n", + "mambo\n", + "mamboed\n", + "mamboes\n", + "mamboing\n", + "mambos\n", + "mameluke\n", + "mamelukes\n", + "mamey\n", + "mameyes\n", + "mameys\n", + "mamie\n", + "mamies\n", + "mamluk\n", + "mamluks\n", + "mamma\n", + "mammae\n", + "mammal\n", + "mammalian\n", + "mammals\n", + "mammary\n", + "mammas\n", + "mammate\n", + "mammati\n", + "mammatus\n", + "mammee\n", + "mammees\n", + "mammer\n", + "mammered\n", + "mammering\n", + "mammers\n", + "mammet\n", + "mammets\n", + "mammey\n", + "mammeys\n", + "mammie\n", + "mammies\n", + "mammilla\n", + "mammillae\n", + "mammitides\n", + "mammitis\n", + "mammock\n", + "mammocked\n", + "mammocking\n", + "mammocks\n", + "mammon\n", + "mammons\n", + "mammoth\n", + "mammoths\n", + "mammy\n", + "man\n", + "mana\n", + "manacle\n", + "manacled\n", + "manacles\n", + "manacling\n", + "manage\n", + "manageabilities\n", + "manageability\n", + "manageable\n", + "manageableness\n", + "manageablenesses\n", + "manageably\n", + "managed\n", + "management\n", + "managemental\n", + "managements\n", + "manager\n", + "managerial\n", + "managers\n", + "manages\n", + "managing\n", + "manakin\n", + "manakins\n", + "manana\n", + "mananas\n", + "manas\n", + "manatee\n", + "manatees\n", + "manatoid\n", + "manche\n", + "manches\n", + "manchet\n", + "manchets\n", + "manciple\n", + "manciples\n", + "mandala\n", + "mandalas\n", + "mandalic\n", + "mandamus\n", + "mandamused\n", + "mandamuses\n", + "mandamusing\n", + "mandarin\n", + "mandarins\n", + "mandate\n", + "mandated\n", + "mandates\n", + "mandating\n", + "mandator\n", + "mandators\n", + "mandatory\n", + "mandible\n", + "mandibles\n", + "mandibular\n", + "mandioca\n", + "mandiocas\n", + "mandola\n", + "mandolas\n", + "mandolin\n", + "mandolins\n", + "mandrake\n", + "mandrakes\n", + "mandrel\n", + "mandrels\n", + "mandril\n", + "mandrill\n", + "mandrills\n", + "mandrils\n", + "mane\n", + "maned\n", + "manege\n", + "maneges\n", + "maneless\n", + "manes\n", + "maneuver\n", + "maneuverabilities\n", + "maneuverability\n", + "maneuvered\n", + "maneuvering\n", + "maneuvers\n", + "manful\n", + "manfully\n", + "mangabey\n", + "mangabeys\n", + "mangabies\n", + "mangaby\n", + "manganese\n", + "manganeses\n", + "manganesian\n", + "manganic\n", + "mange\n", + "mangel\n", + "mangels\n", + "manger\n", + "mangers\n", + "manges\n", + "mangey\n", + "mangier\n", + "mangiest\n", + "mangily\n", + "mangle\n", + "mangled\n", + "mangler\n", + "manglers\n", + "mangles\n", + "mangling\n", + "mango\n", + "mangoes\n", + "mangold\n", + "mangolds\n", + "mangonel\n", + "mangonels\n", + "mangos\n", + "mangrove\n", + "mangroves\n", + "mangy\n", + "manhandle\n", + "manhandled\n", + "manhandles\n", + "manhandling\n", + "manhole\n", + "manholes\n", + "manhood\n", + "manhoods\n", + "manhunt\n", + "manhunts\n", + "mania\n", + "maniac\n", + "maniacal\n", + "maniacs\n", + "manias\n", + "manic\n", + "manics\n", + "manicure\n", + "manicured\n", + "manicures\n", + "manicuring\n", + "manicurist\n", + "manicurists\n", + "manifest\n", + "manifestation\n", + "manifestations\n", + "manifested\n", + "manifesting\n", + "manifestly\n", + "manifesto\n", + "manifestos\n", + "manifests\n", + "manifold\n", + "manifolded\n", + "manifolding\n", + "manifolds\n", + "manihot\n", + "manihots\n", + "manikin\n", + "manikins\n", + "manila\n", + "manilas\n", + "manilla\n", + "manillas\n", + "manille\n", + "manilles\n", + "manioc\n", + "manioca\n", + "maniocas\n", + "maniocs\n", + "maniple\n", + "maniples\n", + "manipulate\n", + "manipulated\n", + "manipulates\n", + "manipulating\n", + "manipulation\n", + "manipulations\n", + "manipulative\n", + "manipulator\n", + "manipulators\n", + "manito\n", + "manitos\n", + "manitou\n", + "manitous\n", + "manitu\n", + "manitus\n", + "mankind\n", + "manless\n", + "manlier\n", + "manliest\n", + "manlike\n", + "manlily\n", + "manly\n", + "manmade\n", + "manna\n", + "mannan\n", + "mannans\n", + "mannas\n", + "manned\n", + "mannequin\n", + "mannequins\n", + "manner\n", + "mannered\n", + "mannerism\n", + "mannerisms\n", + "mannerliness\n", + "mannerlinesses\n", + "mannerly\n", + "manners\n", + "mannikin\n", + "mannikins\n", + "manning\n", + "mannish\n", + "mannishly\n", + "mannishness\n", + "mannishnesses\n", + "mannite\n", + "mannites\n", + "mannitic\n", + "mannitol\n", + "mannitols\n", + "mannose\n", + "mannoses\n", + "mano\n", + "manor\n", + "manorial\n", + "manorialism\n", + "manorialisms\n", + "manors\n", + "manos\n", + "manpack\n", + "manpower\n", + "manpowers\n", + "manque\n", + "manrope\n", + "manropes\n", + "mans\n", + "mansard\n", + "mansards\n", + "manse\n", + "manservant\n", + "manses\n", + "mansion\n", + "mansions\n", + "manslaughter\n", + "manslaughters\n", + "manta\n", + "mantas\n", + "manteau\n", + "manteaus\n", + "manteaux\n", + "mantel\n", + "mantelet\n", + "mantelets\n", + "mantels\n", + "mantes\n", + "mantic\n", + "mantid\n", + "mantids\n", + "mantilla\n", + "mantillas\n", + "mantis\n", + "mantises\n", + "mantissa\n", + "mantissas\n", + "mantle\n", + "mantled\n", + "mantles\n", + "mantlet\n", + "mantlets\n", + "mantling\n", + "mantlings\n", + "mantra\n", + "mantrap\n", + "mantraps\n", + "mantras\n", + "mantua\n", + "mantuas\n", + "manual\n", + "manually\n", + "manuals\n", + "manuary\n", + "manubria\n", + "manufacture\n", + "manufactured\n", + "manufacturer\n", + "manufacturers\n", + "manufactures\n", + "manufacturing\n", + "manumit\n", + "manumits\n", + "manumitted\n", + "manumitting\n", + "manure\n", + "manured\n", + "manurer\n", + "manurers\n", + "manures\n", + "manurial\n", + "manuring\n", + "manus\n", + "manuscript\n", + "manuscripts\n", + "manward\n", + "manwards\n", + "manwise\n", + "many\n", + "manyfold\n", + "map\n", + "maple\n", + "maples\n", + "mapmaker\n", + "mapmakers\n", + "mappable\n", + "mapped\n", + "mapper\n", + "mappers\n", + "mapping\n", + "mappings\n", + "maps\n", + "maquette\n", + "maquettes\n", + "maqui\n", + "maquis\n", + "mar\n", + "marabou\n", + "marabous\n", + "marabout\n", + "marabouts\n", + "maraca\n", + "maracas\n", + "maranta\n", + "marantas\n", + "marasca\n", + "marascas\n", + "maraschino\n", + "maraschinos\n", + "marasmic\n", + "marasmus\n", + "marasmuses\n", + "marathon\n", + "marathons\n", + "maraud\n", + "marauded\n", + "marauder\n", + "marauders\n", + "marauding\n", + "marauds\n", + "maravedi\n", + "maravedis\n", + "marble\n", + "marbled\n", + "marbler\n", + "marblers\n", + "marbles\n", + "marblier\n", + "marbliest\n", + "marbling\n", + "marblings\n", + "marbly\n", + "marc\n", + "marcel\n", + "marcelled\n", + "marcelling\n", + "marcels\n", + "march\n", + "marched\n", + "marchen\n", + "marcher\n", + "marchers\n", + "marches\n", + "marchesa\n", + "marchese\n", + "marchesi\n", + "marching\n", + "marchioness\n", + "marchionesses\n", + "marcs\n", + "mare\n", + "maremma\n", + "maremme\n", + "mares\n", + "margaric\n", + "margarin\n", + "margarine\n", + "margarines\n", + "margarins\n", + "margay\n", + "margays\n", + "marge\n", + "margent\n", + "margented\n", + "margenting\n", + "margents\n", + "marges\n", + "margin\n", + "marginal\n", + "marginally\n", + "margined\n", + "margining\n", + "margins\n", + "margrave\n", + "margraves\n", + "maria\n", + "mariachi\n", + "mariachis\n", + "marigold\n", + "marigolds\n", + "marihuana\n", + "marihuanas\n", + "marijuana\n", + "marijuanas\n", + "marimba\n", + "marimbas\n", + "marina\n", + "marinade\n", + "marinaded\n", + "marinades\n", + "marinading\n", + "marinara\n", + "marinaras\n", + "marinas\n", + "marinate\n", + "marinated\n", + "marinates\n", + "marinating\n", + "marine\n", + "mariner\n", + "mariners\n", + "marines\n", + "marionette\n", + "marionettes\n", + "mariposa\n", + "mariposas\n", + "marish\n", + "marishes\n", + "marital\n", + "maritime\n", + "marjoram\n", + "marjorams\n", + "mark\n", + "markdown\n", + "markdowns\n", + "marked\n", + "markedly\n", + "marker\n", + "markers\n", + "market\n", + "marketable\n", + "marketech\n", + "marketed\n", + "marketer\n", + "marketers\n", + "marketing\n", + "marketplace\n", + "marketplaces\n", + "markets\n", + "markhoor\n", + "markhoors\n", + "markhor\n", + "markhors\n", + "marking\n", + "markings\n", + "markka\n", + "markkaa\n", + "markkas\n", + "marks\n", + "marksman\n", + "marksmanship\n", + "marksmanships\n", + "marksmen\n", + "markup\n", + "markups\n", + "marl\n", + "marled\n", + "marlier\n", + "marliest\n", + "marlin\n", + "marline\n", + "marlines\n", + "marling\n", + "marlings\n", + "marlins\n", + "marlite\n", + "marlites\n", + "marlitic\n", + "marls\n", + "marly\n", + "marmalade\n", + "marmalades\n", + "marmite\n", + "marmites\n", + "marmoset\n", + "marmosets\n", + "marmot\n", + "marmots\n", + "maroon\n", + "marooned\n", + "marooning\n", + "maroons\n", + "marplot\n", + "marplots\n", + "marque\n", + "marquee\n", + "marquees\n", + "marques\n", + "marquess\n", + "marquesses\n", + "marquis\n", + "marquise\n", + "marquises\n", + "marram\n", + "marrams\n", + "marred\n", + "marrer\n", + "marrers\n", + "marriage\n", + "marriageable\n", + "marriages\n", + "married\n", + "marrieds\n", + "marrier\n", + "marriers\n", + "marries\n", + "marring\n", + "marron\n", + "marrons\n", + "marrow\n", + "marrowed\n", + "marrowing\n", + "marrows\n", + "marrowy\n", + "marry\n", + "marrying\n", + "mars\n", + "marse\n", + "marses\n", + "marsh\n", + "marshal\n", + "marshaled\n", + "marshaling\n", + "marshall\n", + "marshalled\n", + "marshalling\n", + "marshalls\n", + "marshals\n", + "marshes\n", + "marshier\n", + "marshiest\n", + "marshmallow\n", + "marshmallows\n", + "marshy\n", + "marsupia\n", + "marsupial\n", + "marsupials\n", + "mart\n", + "martagon\n", + "martagons\n", + "marted\n", + "martello\n", + "martellos\n", + "marten\n", + "martens\n", + "martial\n", + "martian\n", + "martians\n", + "martin\n", + "martinet\n", + "martinets\n", + "marting\n", + "martini\n", + "martinis\n", + "martins\n", + "martlet\n", + "martlets\n", + "marts\n", + "martyr\n", + "martyrdom\n", + "martyrdoms\n", + "martyred\n", + "martyries\n", + "martyring\n", + "martyrly\n", + "martyrs\n", + "martyry\n", + "marvel\n", + "marveled\n", + "marveling\n", + "marvelled\n", + "marvelling\n", + "marvellous\n", + "marvelous\n", + "marvelously\n", + "marvelousness\n", + "marvelousnesses\n", + "marvels\n", + "marzipan\n", + "marzipans\n", + "mas\n", + "mascara\n", + "mascaras\n", + "mascon\n", + "mascons\n", + "mascot\n", + "mascots\n", + "masculine\n", + "masculinities\n", + "masculinity\n", + "masculinization\n", + "masculinizations\n", + "maser\n", + "masers\n", + "mash\n", + "mashed\n", + "masher\n", + "mashers\n", + "mashes\n", + "mashie\n", + "mashies\n", + "mashing\n", + "mashy\n", + "masjid\n", + "masjids\n", + "mask\n", + "maskable\n", + "masked\n", + "maskeg\n", + "maskegs\n", + "masker\n", + "maskers\n", + "masking\n", + "maskings\n", + "masklike\n", + "masks\n", + "masochism\n", + "masochisms\n", + "masochist\n", + "masochistic\n", + "masochists\n", + "mason\n", + "masoned\n", + "masonic\n", + "masoning\n", + "masonries\n", + "masonry\n", + "masons\n", + "masque\n", + "masquer\n", + "masquerade\n", + "masqueraded\n", + "masquerader\n", + "masqueraders\n", + "masquerades\n", + "masquerading\n", + "masquers\n", + "masques\n", + "mass\n", + "massa\n", + "massachusetts\n", + "massacre\n", + "massacred\n", + "massacres\n", + "massacring\n", + "massage\n", + "massaged\n", + "massager\n", + "massagers\n", + "massages\n", + "massaging\n", + "massas\n", + "masse\n", + "massed\n", + "massedly\n", + "masses\n", + "masseter\n", + "masseters\n", + "masseur\n", + "masseurs\n", + "masseuse\n", + "masseuses\n", + "massicot\n", + "massicots\n", + "massier\n", + "massiest\n", + "massif\n", + "massifs\n", + "massing\n", + "massive\n", + "massiveness\n", + "massivenesses\n", + "massless\n", + "masslessness\n", + "masslessnesses\n", + "massy\n", + "mast\n", + "mastaba\n", + "mastabah\n", + "mastabahs\n", + "mastabas\n", + "mastectomies\n", + "mastectomy\n", + "masted\n", + "master\n", + "mastered\n", + "masterful\n", + "masterfully\n", + "masteries\n", + "mastering\n", + "masterly\n", + "mastermind\n", + "masterminds\n", + "masters\n", + "mastership\n", + "masterships\n", + "masterwork\n", + "masterworks\n", + "mastery\n", + "masthead\n", + "mastheaded\n", + "mastheading\n", + "mastheads\n", + "mastic\n", + "masticate\n", + "masticated\n", + "masticates\n", + "masticating\n", + "mastication\n", + "mastications\n", + "mastiche\n", + "mastiches\n", + "mastics\n", + "mastiff\n", + "mastiffs\n", + "masting\n", + "mastitic\n", + "mastitides\n", + "mastitis\n", + "mastix\n", + "mastixes\n", + "mastless\n", + "mastlike\n", + "mastodon\n", + "mastodons\n", + "mastoid\n", + "mastoids\n", + "masts\n", + "masturbate\n", + "masturbated\n", + "masturbates\n", + "masturbating\n", + "masturbation\n", + "masturbations\n", + "masurium\n", + "masuriums\n", + "mat\n", + "matador\n", + "matadors\n", + "match\n", + "matchbox\n", + "matchboxes\n", + "matched\n", + "matcher\n", + "matchers\n", + "matches\n", + "matching\n", + "matchless\n", + "matchmaker\n", + "matchmakers\n", + "mate\n", + "mated\n", + "mateless\n", + "matelote\n", + "matelotes\n", + "mater\n", + "material\n", + "materialism\n", + "materialisms\n", + "materialist\n", + "materialistic\n", + "materialists\n", + "materialization\n", + "materializations\n", + "materialize\n", + "materialized\n", + "materializes\n", + "materializing\n", + "materially\n", + "materials\n", + "materiel\n", + "materiels\n", + "maternal\n", + "maternally\n", + "maternities\n", + "maternity\n", + "maters\n", + "mates\n", + "mateship\n", + "mateships\n", + "matey\n", + "mateys\n", + "math\n", + "mathematical\n", + "mathematically\n", + "mathematician\n", + "mathematicians\n", + "mathematics\n", + "maths\n", + "matilda\n", + "matildas\n", + "matin\n", + "matinal\n", + "matinee\n", + "matinees\n", + "matiness\n", + "matinesses\n", + "mating\n", + "matings\n", + "matins\n", + "matless\n", + "matrass\n", + "matrasses\n", + "matres\n", + "matriarch\n", + "matriarchal\n", + "matriarches\n", + "matriarchies\n", + "matriarchy\n", + "matrices\n", + "matricidal\n", + "matricide\n", + "matricides\n", + "matriculate\n", + "matriculated\n", + "matriculates\n", + "matriculating\n", + "matriculation\n", + "matriculations\n", + "matrimonial\n", + "matrimonially\n", + "matrimonies\n", + "matrimony\n", + "matrix\n", + "matrixes\n", + "matron\n", + "matronal\n", + "matronly\n", + "matrons\n", + "mats\n", + "matt\n", + "matte\n", + "matted\n", + "mattedly\n", + "matter\n", + "mattered\n", + "mattering\n", + "matters\n", + "mattery\n", + "mattes\n", + "mattin\n", + "matting\n", + "mattings\n", + "mattins\n", + "mattock\n", + "mattocks\n", + "mattoid\n", + "mattoids\n", + "mattrass\n", + "mattrasses\n", + "mattress\n", + "mattresses\n", + "matts\n", + "maturate\n", + "maturated\n", + "maturates\n", + "maturating\n", + "maturation\n", + "maturational\n", + "maturations\n", + "maturative\n", + "mature\n", + "matured\n", + "maturely\n", + "maturer\n", + "matures\n", + "maturest\n", + "maturing\n", + "maturities\n", + "maturity\n", + "matza\n", + "matzah\n", + "matzahs\n", + "matzas\n", + "matzo\n", + "matzoh\n", + "matzohs\n", + "matzoon\n", + "matzoons\n", + "matzos\n", + "matzot\n", + "matzoth\n", + "maudlin\n", + "mauger\n", + "maugre\n", + "maul\n", + "mauled\n", + "mauler\n", + "maulers\n", + "mauling\n", + "mauls\n", + "maumet\n", + "maumetries\n", + "maumetry\n", + "maumets\n", + "maun\n", + "maund\n", + "maunder\n", + "maundered\n", + "maundering\n", + "maunders\n", + "maundies\n", + "maunds\n", + "maundy\n", + "mausolea\n", + "mausoleum\n", + "mausoleums\n", + "maut\n", + "mauts\n", + "mauve\n", + "mauves\n", + "maven\n", + "mavens\n", + "maverick\n", + "mavericks\n", + "mavie\n", + "mavies\n", + "mavin\n", + "mavins\n", + "mavis\n", + "mavises\n", + "maw\n", + "mawed\n", + "mawing\n", + "mawkish\n", + "mawkishly\n", + "mawkishness\n", + "mawkishnesses\n", + "mawn\n", + "maws\n", + "maxi\n", + "maxicoat\n", + "maxicoats\n", + "maxilla\n", + "maxillae\n", + "maxillas\n", + "maxim\n", + "maxima\n", + "maximal\n", + "maximals\n", + "maximin\n", + "maximins\n", + "maximise\n", + "maximised\n", + "maximises\n", + "maximising\n", + "maximite\n", + "maximites\n", + "maximize\n", + "maximized\n", + "maximizes\n", + "maximizing\n", + "maxims\n", + "maximum\n", + "maximums\n", + "maxis\n", + "maxixe\n", + "maxixes\n", + "maxwell\n", + "maxwells\n", + "may\n", + "maya\n", + "mayan\n", + "mayapple\n", + "mayapples\n", + "mayas\n", + "maybe\n", + "maybush\n", + "maybushes\n", + "mayday\n", + "maydays\n", + "mayed\n", + "mayest\n", + "mayflies\n", + "mayflower\n", + "mayflowers\n", + "mayfly\n", + "mayhap\n", + "mayhem\n", + "mayhems\n", + "maying\n", + "mayings\n", + "mayonnaise\n", + "mayonnaises\n", + "mayor\n", + "mayoral\n", + "mayoralties\n", + "mayoralty\n", + "mayoress\n", + "mayoresses\n", + "mayors\n", + "maypole\n", + "maypoles\n", + "maypop\n", + "maypops\n", + "mays\n", + "mayst\n", + "mayvin\n", + "mayvins\n", + "mayweed\n", + "mayweeds\n", + "mazaedia\n", + "mazard\n", + "mazards\n", + "maze\n", + "mazed\n", + "mazedly\n", + "mazelike\n", + "mazer\n", + "mazers\n", + "mazes\n", + "mazier\n", + "maziest\n", + "mazily\n", + "maziness\n", + "mazinesses\n", + "mazing\n", + "mazourka\n", + "mazourkas\n", + "mazuma\n", + "mazumas\n", + "mazurka\n", + "mazurkas\n", + "mazy\n", + "mazzard\n", + "mazzards\n", + "mbira\n", + "mbiras\n", + "mccaffrey\n", + "me\n", + "mead\n", + "meadow\n", + "meadowland\n", + "meadowlands\n", + "meadowlark\n", + "meadowlarks\n", + "meadows\n", + "meadowy\n", + "meads\n", + "meager\n", + "meagerly\n", + "meagerness\n", + "meagernesses\n", + "meagre\n", + "meagrely\n", + "meal\n", + "mealie\n", + "mealier\n", + "mealies\n", + "mealiest\n", + "mealless\n", + "meals\n", + "mealtime\n", + "mealtimes\n", + "mealworm\n", + "mealworms\n", + "mealy\n", + "mealybug\n", + "mealybugs\n", + "mean\n", + "meander\n", + "meandered\n", + "meandering\n", + "meanders\n", + "meaner\n", + "meaners\n", + "meanest\n", + "meanie\n", + "meanies\n", + "meaning\n", + "meaningful\n", + "meaningfully\n", + "meaningless\n", + "meanings\n", + "meanly\n", + "meanness\n", + "meannesses\n", + "means\n", + "meant\n", + "meantime\n", + "meantimes\n", + "meanwhile\n", + "meanwhiles\n", + "meany\n", + "measle\n", + "measled\n", + "measles\n", + "measlier\n", + "measliest\n", + "measly\n", + "measurable\n", + "measurably\n", + "measure\n", + "measured\n", + "measureless\n", + "measurement\n", + "measurements\n", + "measurer\n", + "measurers\n", + "measures\n", + "measuring\n", + "meat\n", + "meatal\n", + "meatball\n", + "meatballs\n", + "meathead\n", + "meatheads\n", + "meatier\n", + "meatiest\n", + "meatily\n", + "meatless\n", + "meatman\n", + "meatmen\n", + "meats\n", + "meatus\n", + "meatuses\n", + "meaty\n", + "mecca\n", + "meccas\n", + "mechanic\n", + "mechanical\n", + "mechanically\n", + "mechanics\n", + "mechanism\n", + "mechanisms\n", + "mechanistic\n", + "mechanistically\n", + "mechanization\n", + "mechanizations\n", + "mechanize\n", + "mechanized\n", + "mechanizer\n", + "mechanizers\n", + "mechanizes\n", + "mechanizing\n", + "meconium\n", + "meconiums\n", + "medaka\n", + "medakas\n", + "medal\n", + "medaled\n", + "medaling\n", + "medalist\n", + "medalists\n", + "medalled\n", + "medallic\n", + "medalling\n", + "medallion\n", + "medallions\n", + "medals\n", + "meddle\n", + "meddled\n", + "meddler\n", + "meddlers\n", + "meddles\n", + "meddlesome\n", + "meddling\n", + "media\n", + "mediacies\n", + "mediacy\n", + "mediad\n", + "mediae\n", + "mediaeval\n", + "medial\n", + "medially\n", + "medials\n", + "median\n", + "medianly\n", + "medians\n", + "mediant\n", + "mediants\n", + "medias\n", + "mediastinum\n", + "mediate\n", + "mediated\n", + "mediates\n", + "mediating\n", + "mediation\n", + "mediations\n", + "mediator\n", + "mediators\n", + "medic\n", + "medicable\n", + "medicably\n", + "medicaid\n", + "medicaids\n", + "medical\n", + "medically\n", + "medicals\n", + "medicare\n", + "medicares\n", + "medicate\n", + "medicated\n", + "medicates\n", + "medicating\n", + "medication\n", + "medications\n", + "medicinal\n", + "medicinally\n", + "medicine\n", + "medicined\n", + "medicines\n", + "medicining\n", + "medick\n", + "medicks\n", + "medico\n", + "medicos\n", + "medics\n", + "medieval\n", + "medievalism\n", + "medievalisms\n", + "medievalist\n", + "medievalists\n", + "medievals\n", + "medii\n", + "mediocre\n", + "mediocrities\n", + "mediocrity\n", + "meditate\n", + "meditated\n", + "meditates\n", + "meditating\n", + "meditation\n", + "meditations\n", + "meditative\n", + "meditatively\n", + "medium\n", + "mediums\n", + "medius\n", + "medlar\n", + "medlars\n", + "medley\n", + "medleys\n", + "medulla\n", + "medullae\n", + "medullar\n", + "medullas\n", + "medusa\n", + "medusae\n", + "medusan\n", + "medusans\n", + "medusas\n", + "medusoid\n", + "medusoids\n", + "meed\n", + "meeds\n", + "meek\n", + "meeker\n", + "meekest\n", + "meekly\n", + "meekness\n", + "meeknesses\n", + "meerschaum\n", + "meerschaums\n", + "meet\n", + "meeter\n", + "meeters\n", + "meeting\n", + "meetinghouse\n", + "meetinghouses\n", + "meetings\n", + "meetly\n", + "meetness\n", + "meetnesses\n", + "meets\n", + "megabar\n", + "megabars\n", + "megabit\n", + "megabits\n", + "megabuck\n", + "megabucks\n", + "megacycle\n", + "megacycles\n", + "megadyne\n", + "megadynes\n", + "megahertz\n", + "megalith\n", + "megaliths\n", + "megaphone\n", + "megaphones\n", + "megapod\n", + "megapode\n", + "megapodes\n", + "megass\n", + "megasse\n", + "megasses\n", + "megaton\n", + "megatons\n", + "megavolt\n", + "megavolts\n", + "megawatt\n", + "megawatts\n", + "megillah\n", + "megillahs\n", + "megilp\n", + "megilph\n", + "megilphs\n", + "megilps\n", + "megohm\n", + "megohms\n", + "megrim\n", + "megrims\n", + "meikle\n", + "meinie\n", + "meinies\n", + "meiny\n", + "meioses\n", + "meiosis\n", + "meiotic\n", + "mel\n", + "melamine\n", + "melamines\n", + "melancholia\n", + "melancholic\n", + "melancholies\n", + "melancholy\n", + "melange\n", + "melanges\n", + "melanian\n", + "melanic\n", + "melanics\n", + "melanin\n", + "melanins\n", + "melanism\n", + "melanisms\n", + "melanist\n", + "melanists\n", + "melanite\n", + "melanites\n", + "melanize\n", + "melanized\n", + "melanizes\n", + "melanizing\n", + "melanoid\n", + "melanoids\n", + "melanoma\n", + "melanomas\n", + "melanomata\n", + "melanous\n", + "melatonin\n", + "melba\n", + "meld\n", + "melded\n", + "melder\n", + "melders\n", + "melding\n", + "melds\n", + "melee\n", + "melees\n", + "melic\n", + "melilite\n", + "melilites\n", + "melilot\n", + "melilots\n", + "melinite\n", + "melinites\n", + "meliorate\n", + "meliorated\n", + "meliorates\n", + "meliorating\n", + "melioration\n", + "meliorations\n", + "meliorative\n", + "melisma\n", + "melismas\n", + "melismata\n", + "mell\n", + "melled\n", + "mellific\n", + "mellifluous\n", + "mellifluously\n", + "mellifluousness\n", + "mellifluousnesses\n", + "melling\n", + "mellow\n", + "mellowed\n", + "mellower\n", + "mellowest\n", + "mellowing\n", + "mellowly\n", + "mellowness\n", + "mellownesses\n", + "mellows\n", + "mells\n", + "melodeon\n", + "melodeons\n", + "melodia\n", + "melodias\n", + "melodic\n", + "melodically\n", + "melodies\n", + "melodious\n", + "melodiously\n", + "melodiousness\n", + "melodiousnesses\n", + "melodise\n", + "melodised\n", + "melodises\n", + "melodising\n", + "melodist\n", + "melodists\n", + "melodize\n", + "melodized\n", + "melodizes\n", + "melodizing\n", + "melodrama\n", + "melodramas\n", + "melodramatic\n", + "melodramatist\n", + "melodramatists\n", + "melody\n", + "meloid\n", + "meloids\n", + "melon\n", + "melons\n", + "mels\n", + "melt\n", + "meltable\n", + "meltage\n", + "meltages\n", + "melted\n", + "melter\n", + "melters\n", + "melting\n", + "melton\n", + "meltons\n", + "melts\n", + "mem\n", + "member\n", + "membered\n", + "members\n", + "membership\n", + "memberships\n", + "membrane\n", + "membranes\n", + "membranous\n", + "memento\n", + "mementoes\n", + "mementos\n", + "memo\n", + "memoir\n", + "memoirs\n", + "memorabilia\n", + "memorabilities\n", + "memorability\n", + "memorable\n", + "memorableness\n", + "memorablenesses\n", + "memorably\n", + "memoranda\n", + "memorandum\n", + "memorandums\n", + "memorial\n", + "memorialize\n", + "memorialized\n", + "memorializes\n", + "memorializing\n", + "memorials\n", + "memories\n", + "memorization\n", + "memorizations\n", + "memorize\n", + "memorized\n", + "memorizes\n", + "memorizing\n", + "memory\n", + "memos\n", + "mems\n", + "memsahib\n", + "memsahibs\n", + "men\n", + "menace\n", + "menaced\n", + "menacer\n", + "menacers\n", + "menaces\n", + "menacing\n", + "menacingly\n", + "menad\n", + "menads\n", + "menage\n", + "menagerie\n", + "menageries\n", + "menages\n", + "menarche\n", + "menarches\n", + "mend\n", + "mendable\n", + "mendacious\n", + "mendaciously\n", + "mendacities\n", + "mendacity\n", + "mended\n", + "mendelson\n", + "mender\n", + "menders\n", + "mendicancies\n", + "mendicancy\n", + "mendicant\n", + "mendicants\n", + "mendigo\n", + "mendigos\n", + "mending\n", + "mendings\n", + "mends\n", + "menfolk\n", + "menfolks\n", + "menhaden\n", + "menhadens\n", + "menhir\n", + "menhirs\n", + "menial\n", + "menially\n", + "menials\n", + "meninges\n", + "meningitides\n", + "meningitis\n", + "meninx\n", + "meniscal\n", + "menisci\n", + "meniscus\n", + "meniscuses\n", + "meno\n", + "menologies\n", + "menology\n", + "menopausal\n", + "menopause\n", + "menopauses\n", + "menorah\n", + "menorahs\n", + "mensa\n", + "mensae\n", + "mensal\n", + "mensas\n", + "mensch\n", + "menschen\n", + "mensches\n", + "mense\n", + "mensed\n", + "menseful\n", + "menservants\n", + "menses\n", + "mensing\n", + "menstrua\n", + "menstrual\n", + "menstruate\n", + "menstruated\n", + "menstruates\n", + "menstruating\n", + "menstruation\n", + "menstruations\n", + "mensural\n", + "menswear\n", + "menswears\n", + "menta\n", + "mental\n", + "mentalities\n", + "mentality\n", + "mentally\n", + "menthene\n", + "menthenes\n", + "menthol\n", + "mentholated\n", + "menthols\n", + "mention\n", + "mentioned\n", + "mentioning\n", + "mentions\n", + "mentor\n", + "mentors\n", + "mentum\n", + "menu\n", + "menus\n", + "meow\n", + "meowed\n", + "meowing\n", + "meows\n", + "mephitic\n", + "mephitis\n", + "mephitises\n", + "mercantile\n", + "mercapto\n", + "mercenaries\n", + "mercenarily\n", + "mercenariness\n", + "mercenarinesses\n", + "mercenary\n", + "mercer\n", + "merceries\n", + "mercers\n", + "mercery\n", + "merchandise\n", + "merchandised\n", + "merchandiser\n", + "merchandisers\n", + "merchandises\n", + "merchandising\n", + "merchant\n", + "merchanted\n", + "merchanting\n", + "merchants\n", + "mercies\n", + "merciful\n", + "mercifully\n", + "merciless\n", + "mercilessly\n", + "mercurial\n", + "mercurially\n", + "mercurialness\n", + "mercurialnesses\n", + "mercuric\n", + "mercuries\n", + "mercurous\n", + "mercury\n", + "mercy\n", + "mere\n", + "merely\n", + "merengue\n", + "merengues\n", + "merer\n", + "meres\n", + "merest\n", + "merge\n", + "merged\n", + "mergence\n", + "mergences\n", + "merger\n", + "mergers\n", + "merges\n", + "merging\n", + "meridian\n", + "meridians\n", + "meringue\n", + "meringues\n", + "merino\n", + "merinos\n", + "merises\n", + "merisis\n", + "meristem\n", + "meristems\n", + "meristic\n", + "merit\n", + "merited\n", + "meriting\n", + "meritorious\n", + "meritoriously\n", + "meritoriousness\n", + "meritoriousnesses\n", + "merits\n", + "merk\n", + "merks\n", + "merl\n", + "merle\n", + "merles\n", + "merlin\n", + "merlins\n", + "merlon\n", + "merlons\n", + "merls\n", + "mermaid\n", + "mermaids\n", + "merman\n", + "mermen\n", + "meropia\n", + "meropias\n", + "meropic\n", + "merrier\n", + "merriest\n", + "merrily\n", + "merriment\n", + "merriments\n", + "merry\n", + "merrymaker\n", + "merrymakers\n", + "merrymaking\n", + "merrymakings\n", + "mesa\n", + "mesally\n", + "mesarch\n", + "mesas\n", + "mescal\n", + "mescals\n", + "mesdames\n", + "mesdemoiselles\n", + "meseemed\n", + "meseems\n", + "mesh\n", + "meshed\n", + "meshes\n", + "meshier\n", + "meshiest\n", + "meshing\n", + "meshwork\n", + "meshworks\n", + "meshy\n", + "mesial\n", + "mesially\n", + "mesian\n", + "mesic\n", + "mesmeric\n", + "mesmerism\n", + "mesmerisms\n", + "mesmerize\n", + "mesmerized\n", + "mesmerizes\n", + "mesmerizing\n", + "mesnalties\n", + "mesnalty\n", + "mesne\n", + "mesocarp\n", + "mesocarps\n", + "mesoderm\n", + "mesoderms\n", + "mesoglea\n", + "mesogleas\n", + "mesomere\n", + "mesomeres\n", + "meson\n", + "mesonic\n", + "mesons\n", + "mesophyl\n", + "mesophyls\n", + "mesosome\n", + "mesosomes\n", + "mesotron\n", + "mesotrons\n", + "mesquit\n", + "mesquite\n", + "mesquites\n", + "mesquits\n", + "mess\n", + "message\n", + "messages\n", + "messan\n", + "messans\n", + "messed\n", + "messenger\n", + "messengers\n", + "messes\n", + "messiah\n", + "messiahs\n", + "messier\n", + "messiest\n", + "messieurs\n", + "messily\n", + "messing\n", + "messman\n", + "messmate\n", + "messmates\n", + "messmen\n", + "messuage\n", + "messuages\n", + "messy\n", + "mestee\n", + "mestees\n", + "mesteso\n", + "mestesoes\n", + "mestesos\n", + "mestino\n", + "mestinoes\n", + "mestinos\n", + "mestiza\n", + "mestizas\n", + "mestizo\n", + "mestizoes\n", + "mestizos\n", + "met\n", + "meta\n", + "metabolic\n", + "metabolism\n", + "metabolisms\n", + "metabolize\n", + "metabolized\n", + "metabolizes\n", + "metabolizing\n", + "metage\n", + "metages\n", + "metal\n", + "metaled\n", + "metaling\n", + "metalise\n", + "metalised\n", + "metalises\n", + "metalising\n", + "metalist\n", + "metalists\n", + "metalize\n", + "metalized\n", + "metalizes\n", + "metalizing\n", + "metalled\n", + "metallic\n", + "metalling\n", + "metallurgical\n", + "metallurgically\n", + "metallurgies\n", + "metallurgist\n", + "metallurgists\n", + "metallurgy\n", + "metals\n", + "metalware\n", + "metalwares\n", + "metalwork\n", + "metalworker\n", + "metalworkers\n", + "metalworking\n", + "metalworkings\n", + "metalworks\n", + "metamer\n", + "metamere\n", + "metameres\n", + "metamers\n", + "metamorphose\n", + "metamorphosed\n", + "metamorphoses\n", + "metamorphosing\n", + "metamorphosis\n", + "metaphor\n", + "metaphorical\n", + "metaphors\n", + "metaphysical\n", + "metaphysician\n", + "metaphysicians\n", + "metaphysics\n", + "metastases\n", + "metastatic\n", + "metate\n", + "metates\n", + "metazoa\n", + "metazoal\n", + "metazoan\n", + "metazoans\n", + "metazoic\n", + "metazoon\n", + "mete\n", + "meted\n", + "meteor\n", + "meteoric\n", + "meteorically\n", + "meteorite\n", + "meteorites\n", + "meteoritic\n", + "meteorological\n", + "meteorologies\n", + "meteorologist\n", + "meteorologists\n", + "meteorology\n", + "meteors\n", + "metepa\n", + "metepas\n", + "meter\n", + "meterage\n", + "meterages\n", + "metered\n", + "metering\n", + "meters\n", + "metes\n", + "methadon\n", + "methadone\n", + "methadones\n", + "methadons\n", + "methane\n", + "methanes\n", + "methanol\n", + "methanols\n", + "methinks\n", + "method\n", + "methodic\n", + "methodical\n", + "methodically\n", + "methodicalness\n", + "methodicalnesses\n", + "methodological\n", + "methodologies\n", + "methodology\n", + "methods\n", + "methotrexate\n", + "methought\n", + "methoxy\n", + "methoxyl\n", + "methyl\n", + "methylal\n", + "methylals\n", + "methylic\n", + "methyls\n", + "meticulous\n", + "meticulously\n", + "meticulousness\n", + "meticulousnesses\n", + "metier\n", + "metiers\n", + "meting\n", + "metis\n", + "metisse\n", + "metisses\n", + "metonym\n", + "metonymies\n", + "metonyms\n", + "metonymy\n", + "metopae\n", + "metope\n", + "metopes\n", + "metopic\n", + "metopon\n", + "metopons\n", + "metre\n", + "metred\n", + "metres\n", + "metric\n", + "metrical\n", + "metrically\n", + "metrication\n", + "metrications\n", + "metrics\n", + "metrified\n", + "metrifies\n", + "metrify\n", + "metrifying\n", + "metring\n", + "metrist\n", + "metrists\n", + "metritis\n", + "metritises\n", + "metro\n", + "metronome\n", + "metronomes\n", + "metropolis\n", + "metropolises\n", + "metropolitan\n", + "metros\n", + "mettle\n", + "mettled\n", + "mettles\n", + "mettlesome\n", + "metump\n", + "metumps\n", + "meuniere\n", + "mew\n", + "mewed\n", + "mewing\n", + "mewl\n", + "mewled\n", + "mewler\n", + "mewlers\n", + "mewling\n", + "mewls\n", + "mews\n", + "mezcal\n", + "mezcals\n", + "mezereon\n", + "mezereons\n", + "mezereum\n", + "mezereums\n", + "mezquit\n", + "mezquite\n", + "mezquites\n", + "mezquits\n", + "mezuza\n", + "mezuzah\n", + "mezuzahs\n", + "mezuzas\n", + "mezuzot\n", + "mezuzoth\n", + "mezzanine\n", + "mezzanines\n", + "mezzo\n", + "mezzos\n", + "mho\n", + "mhos\n", + "mi\n", + "miaou\n", + "miaoued\n", + "miaouing\n", + "miaous\n", + "miaow\n", + "miaowed\n", + "miaowing\n", + "miaows\n", + "miasm\n", + "miasma\n", + "miasmal\n", + "miasmas\n", + "miasmata\n", + "miasmic\n", + "miasms\n", + "miaul\n", + "miauled\n", + "miauling\n", + "miauls\n", + "mib\n", + "mibs\n", + "mica\n", + "micas\n", + "micawber\n", + "micawbers\n", + "mice\n", + "micell\n", + "micella\n", + "micellae\n", + "micellar\n", + "micelle\n", + "micelles\n", + "micells\n", + "mick\n", + "mickey\n", + "mickeys\n", + "mickle\n", + "mickler\n", + "mickles\n", + "micklest\n", + "micks\n", + "micra\n", + "micrified\n", + "micrifies\n", + "micrify\n", + "micrifying\n", + "micro\n", + "microbar\n", + "microbars\n", + "microbe\n", + "microbes\n", + "microbial\n", + "microbic\n", + "microbiological\n", + "microbiologies\n", + "microbiologist\n", + "microbiologists\n", + "microbiology\n", + "microbus\n", + "microbuses\n", + "microbusses\n", + "microcomputer\n", + "microcomputers\n", + "microcosm\n", + "microfilm\n", + "microfilmed\n", + "microfilming\n", + "microfilms\n", + "microhm\n", + "microhms\n", + "microluces\n", + "microlux\n", + "microluxes\n", + "micrometer\n", + "micrometers\n", + "micromho\n", + "micromhos\n", + "microminiature\n", + "microminiatures\n", + "microminiaturization\n", + "microminiaturizations\n", + "microminiaturized\n", + "micron\n", + "microns\n", + "microorganism\n", + "microorganisms\n", + "microphone\n", + "microphones\n", + "microscope\n", + "microscopes\n", + "microscopic\n", + "microscopical\n", + "microscopically\n", + "microscopies\n", + "microscopy\n", + "microwave\n", + "microwaves\n", + "micrurgies\n", + "micrurgy\n", + "mid\n", + "midair\n", + "midairs\n", + "midbrain\n", + "midbrains\n", + "midday\n", + "middays\n", + "midden\n", + "middens\n", + "middies\n", + "middle\n", + "middled\n", + "middleman\n", + "middlemen\n", + "middler\n", + "middlers\n", + "middles\n", + "middlesex\n", + "middling\n", + "middlings\n", + "middy\n", + "midfield\n", + "midfields\n", + "midge\n", + "midges\n", + "midget\n", + "midgets\n", + "midgut\n", + "midguts\n", + "midi\n", + "midiron\n", + "midirons\n", + "midis\n", + "midland\n", + "midlands\n", + "midleg\n", + "midlegs\n", + "midline\n", + "midlines\n", + "midmonth\n", + "midmonths\n", + "midmost\n", + "midmosts\n", + "midnight\n", + "midnights\n", + "midnoon\n", + "midnoons\n", + "midpoint\n", + "midpoints\n", + "midrange\n", + "midranges\n", + "midrash\n", + "midrashim\n", + "midrib\n", + "midribs\n", + "midriff\n", + "midriffs\n", + "mids\n", + "midship\n", + "midshipman\n", + "midshipmen\n", + "midships\n", + "midspace\n", + "midspaces\n", + "midst\n", + "midstories\n", + "midstory\n", + "midstream\n", + "midstreams\n", + "midsts\n", + "midsummer\n", + "midsummers\n", + "midterm\n", + "midterms\n", + "midtown\n", + "midtowns\n", + "midwatch\n", + "midwatches\n", + "midway\n", + "midways\n", + "midweek\n", + "midweeks\n", + "midwife\n", + "midwifed\n", + "midwiferies\n", + "midwifery\n", + "midwifes\n", + "midwifing\n", + "midwinter\n", + "midwinters\n", + "midwived\n", + "midwives\n", + "midwiving\n", + "midyear\n", + "midyears\n", + "mien\n", + "miens\n", + "miff\n", + "miffed\n", + "miffier\n", + "miffiest\n", + "miffing\n", + "miffs\n", + "miffy\n", + "mig\n", + "migg\n", + "miggle\n", + "miggles\n", + "miggs\n", + "might\n", + "mightier\n", + "mightiest\n", + "mightily\n", + "mights\n", + "mighty\n", + "mignon\n", + "mignonne\n", + "mignons\n", + "migraine\n", + "migraines\n", + "migrant\n", + "migrants\n", + "migratation\n", + "migratational\n", + "migratations\n", + "migrate\n", + "migrated\n", + "migrates\n", + "migrating\n", + "migrator\n", + "migrators\n", + "migratory\n", + "migs\n", + "mijnheer\n", + "mijnheers\n", + "mikado\n", + "mikados\n", + "mike\n", + "mikes\n", + "mikra\n", + "mikron\n", + "mikrons\n", + "mikvah\n", + "mikvahs\n", + "mikveh\n", + "mikvehs\n", + "mikvoth\n", + "mil\n", + "miladi\n", + "miladies\n", + "miladis\n", + "milady\n", + "milage\n", + "milages\n", + "milch\n", + "milchig\n", + "mild\n", + "milden\n", + "mildened\n", + "mildening\n", + "mildens\n", + "milder\n", + "mildest\n", + "mildew\n", + "mildewed\n", + "mildewing\n", + "mildews\n", + "mildewy\n", + "mildly\n", + "mildness\n", + "mildnesses\n", + "mile\n", + "mileage\n", + "mileages\n", + "milepost\n", + "mileposts\n", + "miler\n", + "milers\n", + "miles\n", + "milesimo\n", + "milesimos\n", + "milestone\n", + "milestones\n", + "milfoil\n", + "milfoils\n", + "milia\n", + "miliaria\n", + "miliarias\n", + "miliary\n", + "milieu\n", + "milieus\n", + "milieux\n", + "militancies\n", + "militancy\n", + "militant\n", + "militantly\n", + "militants\n", + "militaries\n", + "militarily\n", + "militarism\n", + "militarisms\n", + "militarist\n", + "militaristic\n", + "militarists\n", + "military\n", + "militate\n", + "militated\n", + "militates\n", + "militating\n", + "militia\n", + "militiaman\n", + "militiamen\n", + "militias\n", + "milium\n", + "milk\n", + "milked\n", + "milker\n", + "milkers\n", + "milkfish\n", + "milkfishes\n", + "milkier\n", + "milkiest\n", + "milkily\n", + "milkiness\n", + "milkinesses\n", + "milking\n", + "milkmaid\n", + "milkmaids\n", + "milkman\n", + "milkmen\n", + "milks\n", + "milksop\n", + "milksops\n", + "milkweed\n", + "milkweeds\n", + "milkwood\n", + "milkwoods\n", + "milkwort\n", + "milkworts\n", + "milky\n", + "mill\n", + "millable\n", + "millage\n", + "millages\n", + "milldam\n", + "milldams\n", + "mille\n", + "milled\n", + "millennia\n", + "millennium\n", + "millenniums\n", + "milleped\n", + "millepeds\n", + "miller\n", + "millers\n", + "milles\n", + "millet\n", + "millets\n", + "milliard\n", + "milliards\n", + "milliare\n", + "milliares\n", + "milliary\n", + "millibar\n", + "millibars\n", + "millieme\n", + "milliemes\n", + "millier\n", + "milliers\n", + "milligal\n", + "milligals\n", + "milligram\n", + "milligrams\n", + "milliliter\n", + "milliliters\n", + "milliluces\n", + "millilux\n", + "milliluxes\n", + "millime\n", + "millimes\n", + "millimeter\n", + "millimeters\n", + "millimho\n", + "millimhos\n", + "milline\n", + "milliner\n", + "milliners\n", + "millines\n", + "milling\n", + "millings\n", + "milliohm\n", + "milliohms\n", + "million\n", + "millionaire\n", + "millionaires\n", + "millions\n", + "millionth\n", + "millionths\n", + "milliped\n", + "millipede\n", + "millipedes\n", + "millipeds\n", + "millirem\n", + "millirems\n", + "millpond\n", + "millponds\n", + "millrace\n", + "millraces\n", + "millrun\n", + "millruns\n", + "mills\n", + "millstone\n", + "millstones\n", + "millwork\n", + "millworks\n", + "milo\n", + "milord\n", + "milords\n", + "milos\n", + "milpa\n", + "milpas\n", + "milreis\n", + "mils\n", + "milt\n", + "milted\n", + "milter\n", + "milters\n", + "miltier\n", + "miltiest\n", + "milting\n", + "milts\n", + "milty\n", + "mim\n", + "mimbar\n", + "mimbars\n", + "mime\n", + "mimed\n", + "mimeograph\n", + "mimeographed\n", + "mimeographing\n", + "mimeographs\n", + "mimer\n", + "mimers\n", + "mimes\n", + "mimesis\n", + "mimesises\n", + "mimetic\n", + "mimetite\n", + "mimetites\n", + "mimic\n", + "mimical\n", + "mimicked\n", + "mimicker\n", + "mimickers\n", + "mimicking\n", + "mimicries\n", + "mimicry\n", + "mimics\n", + "miming\n", + "mimosa\n", + "mimosas\n", + "mina\n", + "minable\n", + "minacities\n", + "minacity\n", + "minae\n", + "minaret\n", + "minarets\n", + "minas\n", + "minatory\n", + "mince\n", + "minced\n", + "mincer\n", + "mincers\n", + "minces\n", + "mincier\n", + "minciest\n", + "mincing\n", + "mincy\n", + "mind\n", + "minded\n", + "minder\n", + "minders\n", + "mindful\n", + "minding\n", + "mindless\n", + "mindlessly\n", + "mindlessness\n", + "mindlessnesses\n", + "minds\n", + "mine\n", + "mineable\n", + "mined\n", + "miner\n", + "mineral\n", + "mineralize\n", + "mineralized\n", + "mineralizes\n", + "mineralizing\n", + "minerals\n", + "minerological\n", + "minerologies\n", + "minerologist\n", + "minerologists\n", + "minerology\n", + "miners\n", + "mines\n", + "mingier\n", + "mingiest\n", + "mingle\n", + "mingled\n", + "mingler\n", + "minglers\n", + "mingles\n", + "mingling\n", + "mingy\n", + "mini\n", + "miniature\n", + "miniatures\n", + "miniaturist\n", + "miniaturists\n", + "miniaturize\n", + "miniaturized\n", + "miniaturizes\n", + "miniaturizing\n", + "minibike\n", + "minibikes\n", + "minibrain\n", + "minibrains\n", + "minibudget\n", + "minibudgets\n", + "minibus\n", + "minibuses\n", + "minibusses\n", + "minicab\n", + "minicabs\n", + "minicalculator\n", + "minicalculators\n", + "minicamera\n", + "minicameras\n", + "minicar\n", + "minicars\n", + "miniclock\n", + "miniclocks\n", + "minicomponent\n", + "minicomponents\n", + "minicomputer\n", + "minicomputers\n", + "miniconvention\n", + "miniconventions\n", + "minicourse\n", + "minicourses\n", + "minicrisis\n", + "minicrisises\n", + "minidrama\n", + "minidramas\n", + "minidress\n", + "minidresses\n", + "minifestival\n", + "minifestivals\n", + "minified\n", + "minifies\n", + "minify\n", + "minifying\n", + "minigarden\n", + "minigardens\n", + "minigrant\n", + "minigrants\n", + "minigroup\n", + "minigroups\n", + "miniguide\n", + "miniguides\n", + "minihospital\n", + "minihospitals\n", + "minikin\n", + "minikins\n", + "minileague\n", + "minileagues\n", + "minilecture\n", + "minilectures\n", + "minim\n", + "minima\n", + "minimal\n", + "minimally\n", + "minimals\n", + "minimarket\n", + "minimarkets\n", + "minimax\n", + "minimaxes\n", + "minimiracle\n", + "minimiracles\n", + "minimise\n", + "minimised\n", + "minimises\n", + "minimising\n", + "minimization\n", + "minimize\n", + "minimized\n", + "minimizes\n", + "minimizing\n", + "minims\n", + "minimum\n", + "minimums\n", + "minimuseum\n", + "minimuseums\n", + "minination\n", + "mininations\n", + "mininetwork\n", + "mininetworks\n", + "mining\n", + "minings\n", + "mininovel\n", + "mininovels\n", + "minion\n", + "minions\n", + "minipanic\n", + "minipanics\n", + "miniprice\n", + "miniprices\n", + "miniproblem\n", + "miniproblems\n", + "minirebellion\n", + "minirebellions\n", + "minirecession\n", + "minirecessions\n", + "minirobot\n", + "minirobots\n", + "minis\n", + "miniscandal\n", + "miniscandals\n", + "minischool\n", + "minischools\n", + "miniscule\n", + "minisedan\n", + "minisedans\n", + "miniseries\n", + "miniserieses\n", + "minish\n", + "minished\n", + "minishes\n", + "minishing\n", + "miniskirt\n", + "miniskirts\n", + "minislump\n", + "minislumps\n", + "minisocieties\n", + "minisociety\n", + "ministate\n", + "ministates\n", + "minister\n", + "ministered\n", + "ministerial\n", + "ministering\n", + "ministers\n", + "ministration\n", + "ministrations\n", + "ministries\n", + "ministrike\n", + "ministrikes\n", + "ministry\n", + "minisubmarine\n", + "minisubmarines\n", + "minisurvey\n", + "minisurveys\n", + "minisystem\n", + "minisystems\n", + "miniterritories\n", + "miniterritory\n", + "minitheater\n", + "minitheaters\n", + "minitrain\n", + "minitrains\n", + "minium\n", + "miniums\n", + "minivacation\n", + "minivacations\n", + "miniver\n", + "minivers\n", + "miniversion\n", + "miniversions\n", + "mink\n", + "minks\n", + "minnies\n", + "minnow\n", + "minnows\n", + "minny\n", + "minor\n", + "minorca\n", + "minorcas\n", + "minored\n", + "minoring\n", + "minorities\n", + "minority\n", + "minors\n", + "minster\n", + "minsters\n", + "minstrel\n", + "minstrels\n", + "minstrelsies\n", + "minstrelsy\n", + "mint\n", + "mintage\n", + "mintages\n", + "minted\n", + "minter\n", + "minters\n", + "mintier\n", + "mintiest\n", + "minting\n", + "mints\n", + "minty\n", + "minuend\n", + "minuends\n", + "minuet\n", + "minuets\n", + "minus\n", + "minuscule\n", + "minuses\n", + "minute\n", + "minuted\n", + "minutely\n", + "minuteness\n", + "minutenesses\n", + "minuter\n", + "minutes\n", + "minutest\n", + "minutia\n", + "minutiae\n", + "minutial\n", + "minuting\n", + "minx\n", + "minxes\n", + "minxish\n", + "minyan\n", + "minyanim\n", + "minyans\n", + "mioses\n", + "miosis\n", + "miotic\n", + "miotics\n", + "miquelet\n", + "miquelets\n", + "mir\n", + "miracle\n", + "miracles\n", + "miraculous\n", + "miraculously\n", + "mirador\n", + "miradors\n", + "mirage\n", + "mirages\n", + "mire\n", + "mired\n", + "mires\n", + "mirex\n", + "mirexes\n", + "miri\n", + "mirier\n", + "miriest\n", + "miriness\n", + "mirinesses\n", + "miring\n", + "mirk\n", + "mirker\n", + "mirkest\n", + "mirkier\n", + "mirkiest\n", + "mirkily\n", + "mirks\n", + "mirky\n", + "mirror\n", + "mirrored\n", + "mirroring\n", + "mirrors\n", + "mirs\n", + "mirth\n", + "mirthful\n", + "mirthfully\n", + "mirthfulness\n", + "mirthfulnesses\n", + "mirthless\n", + "mirths\n", + "miry\n", + "mirza\n", + "mirzas\n", + "mis\n", + "misact\n", + "misacted\n", + "misacting\n", + "misacts\n", + "misadapt\n", + "misadapted\n", + "misadapting\n", + "misadapts\n", + "misadd\n", + "misadded\n", + "misadding\n", + "misadds\n", + "misagent\n", + "misagents\n", + "misaim\n", + "misaimed\n", + "misaiming\n", + "misaims\n", + "misallied\n", + "misallies\n", + "misally\n", + "misallying\n", + "misalter\n", + "misaltered\n", + "misaltering\n", + "misalters\n", + "misanthrope\n", + "misanthropes\n", + "misanthropic\n", + "misanthropies\n", + "misanthropy\n", + "misapplied\n", + "misapplies\n", + "misapply\n", + "misapplying\n", + "misapprehend\n", + "misapprehended\n", + "misapprehending\n", + "misapprehends\n", + "misapprehension\n", + "misapprehensions\n", + "misappropriate\n", + "misappropriated\n", + "misappropriates\n", + "misappropriating\n", + "misappropriation\n", + "misappropriations\n", + "misassay\n", + "misassayed\n", + "misassaying\n", + "misassays\n", + "misate\n", + "misatone\n", + "misatoned\n", + "misatones\n", + "misatoning\n", + "misaver\n", + "misaverred\n", + "misaverring\n", + "misavers\n", + "misaward\n", + "misawarded\n", + "misawarding\n", + "misawards\n", + "misbegan\n", + "misbegin\n", + "misbeginning\n", + "misbegins\n", + "misbegot\n", + "misbegun\n", + "misbehave\n", + "misbehaved\n", + "misbehaver\n", + "misbehavers\n", + "misbehaves\n", + "misbehaving\n", + "misbehavior\n", + "misbehaviors\n", + "misbias\n", + "misbiased\n", + "misbiases\n", + "misbiasing\n", + "misbiassed\n", + "misbiasses\n", + "misbiassing\n", + "misbill\n", + "misbilled\n", + "misbilling\n", + "misbills\n", + "misbind\n", + "misbinding\n", + "misbinds\n", + "misbound\n", + "misbrand\n", + "misbranded\n", + "misbranding\n", + "misbrands\n", + "misbuild\n", + "misbuilding\n", + "misbuilds\n", + "misbuilt\n", + "miscalculate\n", + "miscalculated\n", + "miscalculates\n", + "miscalculating\n", + "miscalculation\n", + "miscalculations\n", + "miscall\n", + "miscalled\n", + "miscalling\n", + "miscalls\n", + "miscarriage\n", + "miscarriages\n", + "miscarried\n", + "miscarries\n", + "miscarry\n", + "miscarrying\n", + "miscast\n", + "miscasting\n", + "miscasts\n", + "miscegenation\n", + "miscegenations\n", + "miscellaneous\n", + "miscellaneously\n", + "miscellaneousness\n", + "miscellaneousnesses\n", + "miscellanies\n", + "miscellany\n", + "mischance\n", + "mischances\n", + "mischief\n", + "mischiefs\n", + "mischievous\n", + "mischievously\n", + "mischievousness\n", + "mischievousnesses\n", + "miscible\n", + "miscite\n", + "miscited\n", + "miscites\n", + "misciting\n", + "misclaim\n", + "misclaimed\n", + "misclaiming\n", + "misclaims\n", + "misclass\n", + "misclassed\n", + "misclasses\n", + "misclassing\n", + "miscoin\n", + "miscoined\n", + "miscoining\n", + "miscoins\n", + "miscolor\n", + "miscolored\n", + "miscoloring\n", + "miscolors\n", + "misconceive\n", + "misconceived\n", + "misconceives\n", + "misconceiving\n", + "misconception\n", + "misconceptions\n", + "misconduct\n", + "misconducts\n", + "misconstruction\n", + "misconstructions\n", + "misconstrue\n", + "misconstrued\n", + "misconstrues\n", + "misconstruing\n", + "miscook\n", + "miscooked\n", + "miscooking\n", + "miscooks\n", + "miscopied\n", + "miscopies\n", + "miscopy\n", + "miscopying\n", + "miscount\n", + "miscounted\n", + "miscounting\n", + "miscounts\n", + "miscreant\n", + "miscreants\n", + "miscue\n", + "miscued\n", + "miscues\n", + "miscuing\n", + "miscut\n", + "miscuts\n", + "miscutting\n", + "misdate\n", + "misdated\n", + "misdates\n", + "misdating\n", + "misdeal\n", + "misdealing\n", + "misdeals\n", + "misdealt\n", + "misdeed\n", + "misdeeds\n", + "misdeem\n", + "misdeemed\n", + "misdeeming\n", + "misdeems\n", + "misdemeanor\n", + "misdemeanors\n", + "misdid\n", + "misdo\n", + "misdoer\n", + "misdoers\n", + "misdoes\n", + "misdoing\n", + "misdoings\n", + "misdone\n", + "misdoubt\n", + "misdoubted\n", + "misdoubting\n", + "misdoubts\n", + "misdraw\n", + "misdrawing\n", + "misdrawn\n", + "misdraws\n", + "misdrew\n", + "misdrive\n", + "misdriven\n", + "misdrives\n", + "misdriving\n", + "misdrove\n", + "mise\n", + "misease\n", + "miseases\n", + "miseat\n", + "miseating\n", + "miseats\n", + "misedit\n", + "misedited\n", + "misediting\n", + "misedits\n", + "misenrol\n", + "misenrolled\n", + "misenrolling\n", + "misenrols\n", + "misenter\n", + "misentered\n", + "misentering\n", + "misenters\n", + "misentries\n", + "misentry\n", + "miser\n", + "miserable\n", + "miserableness\n", + "miserablenesses\n", + "miserably\n", + "miserere\n", + "misereres\n", + "miseries\n", + "miserliness\n", + "miserlinesses\n", + "miserly\n", + "misers\n", + "misery\n", + "mises\n", + "misevent\n", + "misevents\n", + "misfaith\n", + "misfaiths\n", + "misfield\n", + "misfielded\n", + "misfielding\n", + "misfields\n", + "misfile\n", + "misfiled\n", + "misfiles\n", + "misfiling\n", + "misfire\n", + "misfired\n", + "misfires\n", + "misfiring\n", + "misfit\n", + "misfits\n", + "misfitted\n", + "misfitting\n", + "misform\n", + "misformed\n", + "misforming\n", + "misforms\n", + "misfortune\n", + "misfortunes\n", + "misframe\n", + "misframed\n", + "misframes\n", + "misframing\n", + "misgauge\n", + "misgauged\n", + "misgauges\n", + "misgauging\n", + "misgave\n", + "misgive\n", + "misgiven\n", + "misgives\n", + "misgiving\n", + "misgivings\n", + "misgraft\n", + "misgrafted\n", + "misgrafting\n", + "misgrafts\n", + "misgrew\n", + "misgrow\n", + "misgrowing\n", + "misgrown\n", + "misgrows\n", + "misguess\n", + "misguessed\n", + "misguesses\n", + "misguessing\n", + "misguide\n", + "misguided\n", + "misguides\n", + "misguiding\n", + "mishap\n", + "mishaps\n", + "mishear\n", + "misheard\n", + "mishearing\n", + "mishears\n", + "mishit\n", + "mishits\n", + "mishitting\n", + "mishmash\n", + "mishmashes\n", + "mishmosh\n", + "mishmoshes\n", + "misinfer\n", + "misinferred\n", + "misinferring\n", + "misinfers\n", + "misinform\n", + "misinformation\n", + "misinformations\n", + "misinforms\n", + "misinter\n", + "misinterpret\n", + "misinterpretation\n", + "misinterpretations\n", + "misinterpreted\n", + "misinterpreting\n", + "misinterprets\n", + "misinterred\n", + "misinterring\n", + "misinters\n", + "misjoin\n", + "misjoined\n", + "misjoining\n", + "misjoins\n", + "misjudge\n", + "misjudged\n", + "misjudges\n", + "misjudging\n", + "misjudgment\n", + "misjudgments\n", + "miskal\n", + "miskals\n", + "miskeep\n", + "miskeeping\n", + "miskeeps\n", + "miskept\n", + "misknew\n", + "misknow\n", + "misknowing\n", + "misknown\n", + "misknows\n", + "mislabel\n", + "mislabeled\n", + "mislabeling\n", + "mislabelled\n", + "mislabelling\n", + "mislabels\n", + "mislabor\n", + "mislabored\n", + "mislaboring\n", + "mislabors\n", + "mislaid\n", + "mislain\n", + "mislay\n", + "mislayer\n", + "mislayers\n", + "mislaying\n", + "mislays\n", + "mislead\n", + "misleading\n", + "misleadingly\n", + "misleads\n", + "mislearn\n", + "mislearned\n", + "mislearning\n", + "mislearns\n", + "mislearnt\n", + "misled\n", + "mislie\n", + "mislies\n", + "mislight\n", + "mislighted\n", + "mislighting\n", + "mislights\n", + "mislike\n", + "misliked\n", + "misliker\n", + "mislikers\n", + "mislikes\n", + "misliking\n", + "mislit\n", + "mislive\n", + "mislived\n", + "mislives\n", + "misliving\n", + "mislodge\n", + "mislodged\n", + "mislodges\n", + "mislodging\n", + "mislying\n", + "mismanage\n", + "mismanaged\n", + "mismanagement\n", + "mismanagements\n", + "mismanages\n", + "mismanaging\n", + "mismark\n", + "mismarked\n", + "mismarking\n", + "mismarks\n", + "mismatch\n", + "mismatched\n", + "mismatches\n", + "mismatching\n", + "mismate\n", + "mismated\n", + "mismates\n", + "mismating\n", + "mismeet\n", + "mismeeting\n", + "mismeets\n", + "mismet\n", + "mismove\n", + "mismoved\n", + "mismoves\n", + "mismoving\n", + "misname\n", + "misnamed\n", + "misnames\n", + "misnaming\n", + "misnomer\n", + "misnomers\n", + "miso\n", + "misogamies\n", + "misogamy\n", + "misogynies\n", + "misogynist\n", + "misogynists\n", + "misogyny\n", + "misologies\n", + "misology\n", + "misos\n", + "mispage\n", + "mispaged\n", + "mispages\n", + "mispaging\n", + "mispaint\n", + "mispainted\n", + "mispainting\n", + "mispaints\n", + "misparse\n", + "misparsed\n", + "misparses\n", + "misparsing\n", + "mispart\n", + "misparted\n", + "misparting\n", + "misparts\n", + "mispatch\n", + "mispatched\n", + "mispatches\n", + "mispatching\n", + "mispen\n", + "mispenned\n", + "mispenning\n", + "mispens\n", + "misplace\n", + "misplaced\n", + "misplaces\n", + "misplacing\n", + "misplant\n", + "misplanted\n", + "misplanting\n", + "misplants\n", + "misplay\n", + "misplayed\n", + "misplaying\n", + "misplays\n", + "misplead\n", + "mispleaded\n", + "mispleading\n", + "mispleads\n", + "mispled\n", + "mispoint\n", + "mispointed\n", + "mispointing\n", + "mispoints\n", + "mispoise\n", + "mispoised\n", + "mispoises\n", + "mispoising\n", + "misprint\n", + "misprinted\n", + "misprinting\n", + "misprints\n", + "misprize\n", + "misprized\n", + "misprizes\n", + "misprizing\n", + "mispronounce\n", + "mispronounced\n", + "mispronounces\n", + "mispronouncing\n", + "mispronunciation\n", + "mispronunciations\n", + "misquotation\n", + "misquotations\n", + "misquote\n", + "misquoted\n", + "misquotes\n", + "misquoting\n", + "misraise\n", + "misraised\n", + "misraises\n", + "misraising\n", + "misrate\n", + "misrated\n", + "misrates\n", + "misrating\n", + "misread\n", + "misreading\n", + "misreads\n", + "misrefer\n", + "misreferred\n", + "misreferring\n", + "misrefers\n", + "misrelied\n", + "misrelies\n", + "misrely\n", + "misrelying\n", + "misrepresent\n", + "misrepresentation\n", + "misrepresentations\n", + "misrepresented\n", + "misrepresenting\n", + "misrepresents\n", + "misrule\n", + "misruled\n", + "misrules\n", + "misruling\n", + "miss\n", + "missaid\n", + "missal\n", + "missals\n", + "missay\n", + "missaying\n", + "missays\n", + "misseat\n", + "misseated\n", + "misseating\n", + "misseats\n", + "missed\n", + "missel\n", + "missels\n", + "missend\n", + "missending\n", + "missends\n", + "missense\n", + "missenses\n", + "missent\n", + "misses\n", + "misshape\n", + "misshaped\n", + "misshapen\n", + "misshapes\n", + "misshaping\n", + "misshod\n", + "missies\n", + "missile\n", + "missiles\n", + "missilries\n", + "missilry\n", + "missing\n", + "mission\n", + "missionaries\n", + "missionary\n", + "missioned\n", + "missioning\n", + "missions\n", + "missis\n", + "missises\n", + "missive\n", + "missives\n", + "missort\n", + "missorted\n", + "missorting\n", + "missorts\n", + "missound\n", + "missounded\n", + "missounding\n", + "missounds\n", + "missout\n", + "missouts\n", + "misspace\n", + "misspaced\n", + "misspaces\n", + "misspacing\n", + "misspeak\n", + "misspeaking\n", + "misspeaks\n", + "misspell\n", + "misspelled\n", + "misspelling\n", + "misspellings\n", + "misspells\n", + "misspelt\n", + "misspend\n", + "misspending\n", + "misspends\n", + "misspent\n", + "misspoke\n", + "misspoken\n", + "misstart\n", + "misstarted\n", + "misstarting\n", + "misstarts\n", + "misstate\n", + "misstated\n", + "misstatement\n", + "misstatements\n", + "misstates\n", + "misstating\n", + "missteer\n", + "missteered\n", + "missteering\n", + "missteers\n", + "misstep\n", + "missteps\n", + "misstop\n", + "misstopped\n", + "misstopping\n", + "misstops\n", + "misstyle\n", + "misstyled\n", + "misstyles\n", + "misstyling\n", + "missuit\n", + "missuited\n", + "missuiting\n", + "missuits\n", + "missus\n", + "missuses\n", + "missy\n", + "mist\n", + "mistake\n", + "mistaken\n", + "mistakenly\n", + "mistaker\n", + "mistakers\n", + "mistakes\n", + "mistaking\n", + "mistaught\n", + "mistbow\n", + "mistbows\n", + "misteach\n", + "misteaches\n", + "misteaching\n", + "misted\n", + "mistend\n", + "mistended\n", + "mistending\n", + "mistends\n", + "mister\n", + "misterm\n", + "mistermed\n", + "misterming\n", + "misterms\n", + "misters\n", + "misteuk\n", + "misthink\n", + "misthinking\n", + "misthinks\n", + "misthought\n", + "misthrew\n", + "misthrow\n", + "misthrowing\n", + "misthrown\n", + "misthrows\n", + "mistier\n", + "mistiest\n", + "mistily\n", + "mistime\n", + "mistimed\n", + "mistimes\n", + "mistiming\n", + "misting\n", + "mistitle\n", + "mistitled\n", + "mistitles\n", + "mistitling\n", + "mistletoe\n", + "mistook\n", + "mistouch\n", + "mistouched\n", + "mistouches\n", + "mistouching\n", + "mistrace\n", + "mistraced\n", + "mistraces\n", + "mistracing\n", + "mistral\n", + "mistrals\n", + "mistreat\n", + "mistreated\n", + "mistreating\n", + "mistreatment\n", + "mistreatments\n", + "mistreats\n", + "mistress\n", + "mistresses\n", + "mistrial\n", + "mistrials\n", + "mistrust\n", + "mistrusted\n", + "mistrustful\n", + "mistrustfully\n", + "mistrustfulness\n", + "mistrustfulnesses\n", + "mistrusting\n", + "mistrusts\n", + "mistryst\n", + "mistrysted\n", + "mistrysting\n", + "mistrysts\n", + "mists\n", + "mistune\n", + "mistuned\n", + "mistunes\n", + "mistuning\n", + "mistutor\n", + "mistutored\n", + "mistutoring\n", + "mistutors\n", + "misty\n", + "mistype\n", + "mistyped\n", + "mistypes\n", + "mistyping\n", + "misunderstand\n", + "misunderstanded\n", + "misunderstanding\n", + "misunderstandings\n", + "misunderstands\n", + "misunion\n", + "misunions\n", + "misusage\n", + "misusages\n", + "misuse\n", + "misused\n", + "misuser\n", + "misusers\n", + "misuses\n", + "misusing\n", + "misvalue\n", + "misvalued\n", + "misvalues\n", + "misvaluing\n", + "misword\n", + "misworded\n", + "miswording\n", + "miswords\n", + "miswrit\n", + "miswrite\n", + "miswrites\n", + "miswriting\n", + "miswritten\n", + "miswrote\n", + "misyoke\n", + "misyoked\n", + "misyokes\n", + "misyoking\n", + "mite\n", + "miter\n", + "mitered\n", + "miterer\n", + "miterers\n", + "mitering\n", + "miters\n", + "mites\n", + "mither\n", + "mithers\n", + "miticide\n", + "miticides\n", + "mitier\n", + "mitiest\n", + "mitigate\n", + "mitigated\n", + "mitigates\n", + "mitigating\n", + "mitigation\n", + "mitigations\n", + "mitigative\n", + "mitigator\n", + "mitigators\n", + "mitigatory\n", + "mitis\n", + "mitises\n", + "mitogen\n", + "mitogens\n", + "mitoses\n", + "mitosis\n", + "mitotic\n", + "mitral\n", + "mitre\n", + "mitred\n", + "mitres\n", + "mitring\n", + "mitsvah\n", + "mitsvahs\n", + "mitsvoth\n", + "mitt\n", + "mitten\n", + "mittens\n", + "mittimus\n", + "mittimuses\n", + "mitts\n", + "mity\n", + "mitzvah\n", + "mitzvahs\n", + "mitzvoth\n", + "mix\n", + "mixable\n", + "mixed\n", + "mixer\n", + "mixers\n", + "mixes\n", + "mixible\n", + "mixing\n", + "mixologies\n", + "mixology\n", + "mixt\n", + "mixture\n", + "mixtures\n", + "mixup\n", + "mixups\n", + "mizen\n", + "mizens\n", + "mizzen\n", + "mizzens\n", + "mizzle\n", + "mizzled\n", + "mizzles\n", + "mizzling\n", + "mizzly\n", + "mnemonic\n", + "mnemonics\n", + "moa\n", + "moan\n", + "moaned\n", + "moanful\n", + "moaning\n", + "moans\n", + "moas\n", + "moat\n", + "moated\n", + "moating\n", + "moatlike\n", + "moats\n", + "mob\n", + "mobbed\n", + "mobber\n", + "mobbers\n", + "mobbing\n", + "mobbish\n", + "mobcap\n", + "mobcaps\n", + "mobile\n", + "mobiles\n", + "mobilise\n", + "mobilised\n", + "mobilises\n", + "mobilising\n", + "mobilities\n", + "mobility\n", + "mobilization\n", + "mobilizations\n", + "mobilize\n", + "mobilized\n", + "mobilizer\n", + "mobilizers\n", + "mobilizes\n", + "mobilizing\n", + "mobocrat\n", + "mobocrats\n", + "mobs\n", + "mobster\n", + "mobsters\n", + "moccasin\n", + "moccasins\n", + "mocha\n", + "mochas\n", + "mochila\n", + "mochilas\n", + "mock\n", + "mockable\n", + "mocked\n", + "mocker\n", + "mockeries\n", + "mockers\n", + "mockery\n", + "mocking\n", + "mockingbird\n", + "mockingbirds\n", + "mockingly\n", + "mocks\n", + "mockup\n", + "mockups\n", + "mod\n", + "modal\n", + "modalities\n", + "modality\n", + "modally\n", + "mode\n", + "model\n", + "modeled\n", + "modeler\n", + "modelers\n", + "modeling\n", + "modelings\n", + "modelled\n", + "modeller\n", + "modellers\n", + "modelling\n", + "models\n", + "moderate\n", + "moderated\n", + "moderately\n", + "moderateness\n", + "moderatenesses\n", + "moderates\n", + "moderating\n", + "moderation\n", + "moderations\n", + "moderato\n", + "moderator\n", + "moderators\n", + "moderatos\n", + "modern\n", + "moderner\n", + "modernest\n", + "modernities\n", + "modernity\n", + "modernization\n", + "modernizations\n", + "modernize\n", + "modernized\n", + "modernizer\n", + "modernizers\n", + "modernizes\n", + "modernizing\n", + "modernly\n", + "modernness\n", + "modernnesses\n", + "moderns\n", + "modes\n", + "modest\n", + "modester\n", + "modestest\n", + "modesties\n", + "modestly\n", + "modesty\n", + "modi\n", + "modica\n", + "modicum\n", + "modicums\n", + "modification\n", + "modifications\n", + "modified\n", + "modifier\n", + "modifiers\n", + "modifies\n", + "modify\n", + "modifying\n", + "modioli\n", + "modiolus\n", + "modish\n", + "modishly\n", + "modiste\n", + "modistes\n", + "mods\n", + "modular\n", + "modularities\n", + "modularity\n", + "modularized\n", + "modulate\n", + "modulated\n", + "modulates\n", + "modulating\n", + "modulation\n", + "modulations\n", + "modulator\n", + "modulators\n", + "modulatory\n", + "module\n", + "modules\n", + "moduli\n", + "modulo\n", + "modulus\n", + "modus\n", + "mofette\n", + "mofettes\n", + "moffette\n", + "moffettes\n", + "mog\n", + "mogged\n", + "mogging\n", + "mogs\n", + "mogul\n", + "moguls\n", + "mohair\n", + "mohairs\n", + "mohalim\n", + "mohel\n", + "mohels\n", + "mohur\n", + "mohurs\n", + "moidore\n", + "moidores\n", + "moieties\n", + "moiety\n", + "moil\n", + "moiled\n", + "moiler\n", + "moilers\n", + "moiling\n", + "moils\n", + "moira\n", + "moirai\n", + "moire\n", + "moires\n", + "moist\n", + "moisten\n", + "moistened\n", + "moistener\n", + "moisteners\n", + "moistening\n", + "moistens\n", + "moister\n", + "moistest\n", + "moistful\n", + "moistly\n", + "moistness\n", + "moistnesses\n", + "moisture\n", + "moistures\n", + "mojarra\n", + "mojarras\n", + "moke\n", + "mokes\n", + "mol\n", + "mola\n", + "molal\n", + "molalities\n", + "molality\n", + "molar\n", + "molarities\n", + "molarity\n", + "molars\n", + "molas\n", + "molasses\n", + "molasseses\n", + "mold\n", + "moldable\n", + "molded\n", + "molder\n", + "moldered\n", + "moldering\n", + "molders\n", + "moldier\n", + "moldiest\n", + "moldiness\n", + "moldinesses\n", + "molding\n", + "moldings\n", + "molds\n", + "moldwarp\n", + "moldwarps\n", + "moldy\n", + "mole\n", + "molecular\n", + "molecule\n", + "molecules\n", + "molehill\n", + "molehills\n", + "moles\n", + "moleskin\n", + "moleskins\n", + "molest\n", + "molestation\n", + "molestations\n", + "molested\n", + "molester\n", + "molesters\n", + "molesting\n", + "molests\n", + "molies\n", + "moline\n", + "moll\n", + "mollah\n", + "mollahs\n", + "mollie\n", + "mollies\n", + "mollification\n", + "mollifications\n", + "mollified\n", + "mollifies\n", + "mollify\n", + "mollifying\n", + "molls\n", + "mollusc\n", + "molluscan\n", + "molluscs\n", + "mollusk\n", + "mollusks\n", + "molly\n", + "mollycoddle\n", + "mollycoddled\n", + "mollycoddles\n", + "mollycoddling\n", + "moloch\n", + "molochs\n", + "mols\n", + "molt\n", + "molted\n", + "molten\n", + "moltenly\n", + "molter\n", + "molters\n", + "molting\n", + "molto\n", + "molts\n", + "moly\n", + "molybdic\n", + "molys\n", + "mom\n", + "mome\n", + "moment\n", + "momenta\n", + "momentarily\n", + "momentary\n", + "momently\n", + "momento\n", + "momentoes\n", + "momentos\n", + "momentous\n", + "momentously\n", + "momentousment\n", + "momentousments\n", + "momentousness\n", + "momentousnesses\n", + "moments\n", + "momentum\n", + "momentums\n", + "momes\n", + "momi\n", + "momism\n", + "momisms\n", + "momma\n", + "mommas\n", + "mommies\n", + "mommy\n", + "moms\n", + "momus\n", + "momuses\n", + "mon\n", + "monachal\n", + "monacid\n", + "monacids\n", + "monad\n", + "monadal\n", + "monades\n", + "monadic\n", + "monadism\n", + "monadisms\n", + "monads\n", + "monandries\n", + "monandry\n", + "monarch\n", + "monarchic\n", + "monarchical\n", + "monarchies\n", + "monarchs\n", + "monarchy\n", + "monarda\n", + "monardas\n", + "monas\n", + "monasterial\n", + "monasteries\n", + "monastery\n", + "monastic\n", + "monastically\n", + "monasticism\n", + "monasticisms\n", + "monastics\n", + "monaural\n", + "monaxial\n", + "monazite\n", + "monazites\n", + "monde\n", + "mondes\n", + "mondo\n", + "mondos\n", + "monecian\n", + "monetary\n", + "monetise\n", + "monetised\n", + "monetises\n", + "monetising\n", + "monetize\n", + "monetized\n", + "monetizes\n", + "monetizing\n", + "money\n", + "moneybag\n", + "moneybags\n", + "moneyed\n", + "moneyer\n", + "moneyers\n", + "moneylender\n", + "moneylenders\n", + "moneys\n", + "mongeese\n", + "monger\n", + "mongered\n", + "mongering\n", + "mongers\n", + "mongo\n", + "mongoe\n", + "mongoes\n", + "mongol\n", + "mongolism\n", + "mongolisms\n", + "mongols\n", + "mongoose\n", + "mongooses\n", + "mongos\n", + "mongrel\n", + "mongrels\n", + "mongst\n", + "monicker\n", + "monickers\n", + "monie\n", + "monied\n", + "monies\n", + "moniker\n", + "monikers\n", + "monish\n", + "monished\n", + "monishes\n", + "monishing\n", + "monism\n", + "monisms\n", + "monist\n", + "monistic\n", + "monists\n", + "monition\n", + "monitions\n", + "monitive\n", + "monitor\n", + "monitored\n", + "monitories\n", + "monitoring\n", + "monitors\n", + "monitory\n", + "monk\n", + "monkeries\n", + "monkery\n", + "monkey\n", + "monkeyed\n", + "monkeying\n", + "monkeys\n", + "monkeyshines\n", + "monkfish\n", + "monkfishes\n", + "monkhood\n", + "monkhoods\n", + "monkish\n", + "monkishly\n", + "monkishness\n", + "monkishnesses\n", + "monks\n", + "monkshood\n", + "monkshoods\n", + "mono\n", + "monoacid\n", + "monoacids\n", + "monocarp\n", + "monocarps\n", + "monocle\n", + "monocled\n", + "monocles\n", + "monocot\n", + "monocots\n", + "monocrat\n", + "monocrats\n", + "monocyte\n", + "monocytes\n", + "monodic\n", + "monodies\n", + "monodist\n", + "monodists\n", + "monody\n", + "monoecies\n", + "monoecy\n", + "monofil\n", + "monofils\n", + "monofuel\n", + "monofuels\n", + "monogamic\n", + "monogamies\n", + "monogamist\n", + "monogamists\n", + "monogamous\n", + "monogamy\n", + "monogenies\n", + "monogeny\n", + "monogerm\n", + "monogram\n", + "monogramed\n", + "monograming\n", + "monogrammed\n", + "monogramming\n", + "monograms\n", + "monograph\n", + "monographs\n", + "monogynies\n", + "monogyny\n", + "monolingual\n", + "monolith\n", + "monolithic\n", + "monoliths\n", + "monolog\n", + "monologies\n", + "monologist\n", + "monologists\n", + "monologs\n", + "monologue\n", + "monologues\n", + "monologuist\n", + "monologuists\n", + "monology\n", + "monomer\n", + "monomers\n", + "monomial\n", + "monomials\n", + "mononucleosis\n", + "mononucleosises\n", + "monopode\n", + "monopodes\n", + "monopodies\n", + "monopody\n", + "monopole\n", + "monopoles\n", + "monopolies\n", + "monopolist\n", + "monopolistic\n", + "monopolists\n", + "monopolization\n", + "monopolizations\n", + "monopolize\n", + "monopolized\n", + "monopolizes\n", + "monopolizing\n", + "monopoly\n", + "monorail\n", + "monorails\n", + "monos\n", + "monosome\n", + "monosomes\n", + "monosyllable\n", + "monosyllables\n", + "monosyllablic\n", + "monotheism\n", + "monotheisms\n", + "monotheist\n", + "monotheists\n", + "monotint\n", + "monotints\n", + "monotone\n", + "monotones\n", + "monotonies\n", + "monotonous\n", + "monotonously\n", + "monotonousness\n", + "monotonousnesses\n", + "monotony\n", + "monotype\n", + "monotypes\n", + "monoxide\n", + "monoxides\n", + "mons\n", + "monsieur\n", + "monsignor\n", + "monsignori\n", + "monsignors\n", + "monsoon\n", + "monsoonal\n", + "monsoons\n", + "monster\n", + "monsters\n", + "monstrosities\n", + "monstrosity\n", + "monstrously\n", + "montage\n", + "montaged\n", + "montages\n", + "montaging\n", + "montane\n", + "montanes\n", + "monte\n", + "monteith\n", + "monteiths\n", + "montero\n", + "monteros\n", + "montes\n", + "month\n", + "monthlies\n", + "monthly\n", + "months\n", + "monument\n", + "monumental\n", + "monumentally\n", + "monuments\n", + "monuron\n", + "monurons\n", + "mony\n", + "moo\n", + "mooch\n", + "mooched\n", + "moocher\n", + "moochers\n", + "mooches\n", + "mooching\n", + "mood\n", + "moodier\n", + "moodiest\n", + "moodily\n", + "moodiness\n", + "moodinesses\n", + "moods\n", + "moody\n", + "mooed\n", + "mooing\n", + "mool\n", + "moola\n", + "moolah\n", + "moolahs\n", + "moolas\n", + "mooley\n", + "mooleys\n", + "mools\n", + "moon\n", + "moonbeam\n", + "moonbeams\n", + "moonbow\n", + "moonbows\n", + "mooncalf\n", + "mooncalves\n", + "mooned\n", + "mooneye\n", + "mooneyes\n", + "moonfish\n", + "moonfishes\n", + "moonier\n", + "mooniest\n", + "moonily\n", + "mooning\n", + "moonish\n", + "moonless\n", + "moonlet\n", + "moonlets\n", + "moonlight\n", + "moonlighted\n", + "moonlighter\n", + "moonlighters\n", + "moonlighting\n", + "moonlights\n", + "moonlike\n", + "moonlit\n", + "moonrise\n", + "moonrises\n", + "moons\n", + "moonsail\n", + "moonsails\n", + "moonseed\n", + "moonseeds\n", + "moonset\n", + "moonsets\n", + "moonshine\n", + "moonshines\n", + "moonshot\n", + "moonshots\n", + "moonward\n", + "moonwort\n", + "moonworts\n", + "moony\n", + "moor\n", + "moorage\n", + "moorages\n", + "moored\n", + "moorfowl\n", + "moorfowls\n", + "moorhen\n", + "moorhens\n", + "moorier\n", + "mooriest\n", + "mooring\n", + "moorings\n", + "moorish\n", + "moorland\n", + "moorlands\n", + "moors\n", + "moorwort\n", + "moorworts\n", + "moory\n", + "moos\n", + "moose\n", + "moot\n", + "mooted\n", + "mooter\n", + "mooters\n", + "mooting\n", + "moots\n", + "mop\n", + "mopboard\n", + "mopboards\n", + "mope\n", + "moped\n", + "mopeds\n", + "moper\n", + "mopers\n", + "mopes\n", + "moping\n", + "mopingly\n", + "mopish\n", + "mopishly\n", + "mopoke\n", + "mopokes\n", + "mopped\n", + "mopper\n", + "moppers\n", + "moppet\n", + "moppets\n", + "mopping\n", + "mops\n", + "moquette\n", + "moquettes\n", + "mor\n", + "mora\n", + "morae\n", + "morainal\n", + "moraine\n", + "moraines\n", + "morainic\n", + "moral\n", + "morale\n", + "morales\n", + "moralise\n", + "moralised\n", + "moralises\n", + "moralising\n", + "moralism\n", + "moralisms\n", + "moralist\n", + "moralistic\n", + "moralists\n", + "moralities\n", + "morality\n", + "moralize\n", + "moralized\n", + "moralizes\n", + "moralizing\n", + "morally\n", + "morals\n", + "moras\n", + "morass\n", + "morasses\n", + "morassy\n", + "moratoria\n", + "moratorium\n", + "moratoriums\n", + "moratory\n", + "moray\n", + "morays\n", + "morbid\n", + "morbidities\n", + "morbidity\n", + "morbidly\n", + "morbidness\n", + "morbidnesses\n", + "morbific\n", + "morbilli\n", + "morceau\n", + "morceaux\n", + "mordancies\n", + "mordancy\n", + "mordant\n", + "mordanted\n", + "mordanting\n", + "mordantly\n", + "mordants\n", + "mordent\n", + "mordents\n", + "more\n", + "moreen\n", + "moreens\n", + "morel\n", + "morelle\n", + "morelles\n", + "morello\n", + "morellos\n", + "morels\n", + "moreover\n", + "mores\n", + "moresque\n", + "moresques\n", + "morgen\n", + "morgens\n", + "morgue\n", + "morgues\n", + "moribund\n", + "moribundities\n", + "moribundity\n", + "morion\n", + "morions\n", + "morn\n", + "morning\n", + "mornings\n", + "morns\n", + "morocco\n", + "moroccos\n", + "moron\n", + "moronic\n", + "moronically\n", + "moronism\n", + "moronisms\n", + "moronities\n", + "moronity\n", + "morons\n", + "morose\n", + "morosely\n", + "moroseness\n", + "morosenesses\n", + "morosities\n", + "morosity\n", + "morph\n", + "morpheme\n", + "morphemes\n", + "morphia\n", + "morphias\n", + "morphic\n", + "morphin\n", + "morphine\n", + "morphines\n", + "morphins\n", + "morpho\n", + "morphologic\n", + "morphologically\n", + "morphologies\n", + "morphology\n", + "morphos\n", + "morphs\n", + "morrion\n", + "morrions\n", + "morris\n", + "morrises\n", + "morro\n", + "morros\n", + "morrow\n", + "morrows\n", + "mors\n", + "morsel\n", + "morseled\n", + "morseling\n", + "morselled\n", + "morselling\n", + "morsels\n", + "mort\n", + "mortal\n", + "mortalities\n", + "mortality\n", + "mortally\n", + "mortals\n", + "mortar\n", + "mortared\n", + "mortaring\n", + "mortars\n", + "mortary\n", + "mortgage\n", + "mortgaged\n", + "mortgagee\n", + "mortgagees\n", + "mortgages\n", + "mortgaging\n", + "mortgagor\n", + "mortgagors\n", + "mortice\n", + "morticed\n", + "mortices\n", + "morticing\n", + "mortification\n", + "mortifications\n", + "mortified\n", + "mortifies\n", + "mortify\n", + "mortifying\n", + "mortise\n", + "mortised\n", + "mortiser\n", + "mortisers\n", + "mortises\n", + "mortising\n", + "mortmain\n", + "mortmains\n", + "morts\n", + "mortuaries\n", + "mortuary\n", + "morula\n", + "morulae\n", + "morular\n", + "morulas\n", + "mosaic\n", + "mosaicked\n", + "mosaicking\n", + "mosaics\n", + "moschate\n", + "mosey\n", + "moseyed\n", + "moseying\n", + "moseys\n", + "moshav\n", + "moshavim\n", + "mosk\n", + "mosks\n", + "mosque\n", + "mosques\n", + "mosquito\n", + "mosquitoes\n", + "mosquitos\n", + "moss\n", + "mossback\n", + "mossbacks\n", + "mossed\n", + "mosser\n", + "mossers\n", + "mosses\n", + "mossier\n", + "mossiest\n", + "mossing\n", + "mosslike\n", + "mosso\n", + "mossy\n", + "most\n", + "moste\n", + "mostly\n", + "mosts\n", + "mot\n", + "mote\n", + "motel\n", + "motels\n", + "motes\n", + "motet\n", + "motets\n", + "motey\n", + "moth\n", + "mothball\n", + "mothballed\n", + "mothballing\n", + "mothballs\n", + "mother\n", + "mothered\n", + "motherhood\n", + "motherhoods\n", + "mothering\n", + "motherland\n", + "motherlands\n", + "motherless\n", + "motherly\n", + "mothers\n", + "mothery\n", + "mothier\n", + "mothiest\n", + "moths\n", + "mothy\n", + "motif\n", + "motifs\n", + "motile\n", + "motiles\n", + "motilities\n", + "motility\n", + "motion\n", + "motional\n", + "motioned\n", + "motioner\n", + "motioners\n", + "motioning\n", + "motionless\n", + "motionlessly\n", + "motionlessness\n", + "motionlessnesses\n", + "motions\n", + "motivate\n", + "motivated\n", + "motivates\n", + "motivating\n", + "motivation\n", + "motivations\n", + "motive\n", + "motived\n", + "motiveless\n", + "motives\n", + "motivic\n", + "motiving\n", + "motivities\n", + "motivity\n", + "motley\n", + "motleyer\n", + "motleyest\n", + "motleys\n", + "motlier\n", + "motliest\n", + "motmot\n", + "motmots\n", + "motor\n", + "motorbike\n", + "motorbikes\n", + "motorboat\n", + "motorboats\n", + "motorbus\n", + "motorbuses\n", + "motorbusses\n", + "motorcar\n", + "motorcars\n", + "motorcycle\n", + "motorcycles\n", + "motorcyclist\n", + "motorcyclists\n", + "motored\n", + "motoric\n", + "motoring\n", + "motorings\n", + "motorise\n", + "motorised\n", + "motorises\n", + "motorising\n", + "motorist\n", + "motorists\n", + "motorize\n", + "motorized\n", + "motorizes\n", + "motorizing\n", + "motorman\n", + "motormen\n", + "motors\n", + "motortruck\n", + "motortrucks\n", + "motorway\n", + "motorways\n", + "mots\n", + "mott\n", + "motte\n", + "mottes\n", + "mottle\n", + "mottled\n", + "mottler\n", + "mottlers\n", + "mottles\n", + "mottling\n", + "motto\n", + "mottoes\n", + "mottos\n", + "motts\n", + "mouch\n", + "mouched\n", + "mouches\n", + "mouching\n", + "mouchoir\n", + "mouchoirs\n", + "moue\n", + "moues\n", + "moufflon\n", + "moufflons\n", + "mouflon\n", + "mouflons\n", + "mouille\n", + "moujik\n", + "moujiks\n", + "moulage\n", + "moulages\n", + "mould\n", + "moulded\n", + "moulder\n", + "mouldered\n", + "mouldering\n", + "moulders\n", + "mouldier\n", + "mouldiest\n", + "moulding\n", + "mouldings\n", + "moulds\n", + "mouldy\n", + "moulin\n", + "moulins\n", + "moult\n", + "moulted\n", + "moulter\n", + "moulters\n", + "moulting\n", + "moults\n", + "mound\n", + "mounded\n", + "mounding\n", + "mounds\n", + "mount\n", + "mountable\n", + "mountain\n", + "mountaineer\n", + "mountaineered\n", + "mountaineering\n", + "mountaineers\n", + "mountainous\n", + "mountains\n", + "mountaintop\n", + "mountaintops\n", + "mountebank\n", + "mountebanks\n", + "mounted\n", + "mounter\n", + "mounters\n", + "mounting\n", + "mountings\n", + "mounts\n", + "mourn\n", + "mourned\n", + "mourner\n", + "mourners\n", + "mournful\n", + "mournfuller\n", + "mournfullest\n", + "mournfully\n", + "mournfulness\n", + "mournfulnesses\n", + "mourning\n", + "mournings\n", + "mourns\n", + "mouse\n", + "moused\n", + "mouser\n", + "mousers\n", + "mouses\n", + "mousetrap\n", + "mousetraps\n", + "mousey\n", + "mousier\n", + "mousiest\n", + "mousily\n", + "mousing\n", + "mousings\n", + "moussaka\n", + "moussakas\n", + "mousse\n", + "mousses\n", + "moustache\n", + "moustaches\n", + "mousy\n", + "mouth\n", + "mouthed\n", + "mouther\n", + "mouthers\n", + "mouthful\n", + "mouthfuls\n", + "mouthier\n", + "mouthiest\n", + "mouthily\n", + "mouthing\n", + "mouthpiece\n", + "mouthpieces\n", + "mouths\n", + "mouthy\n", + "mouton\n", + "moutons\n", + "movable\n", + "movables\n", + "movably\n", + "move\n", + "moveable\n", + "moveables\n", + "moveably\n", + "moved\n", + "moveless\n", + "movement\n", + "movements\n", + "mover\n", + "movers\n", + "moves\n", + "movie\n", + "moviedom\n", + "moviedoms\n", + "movies\n", + "moving\n", + "movingly\n", + "mow\n", + "mowed\n", + "mower\n", + "mowers\n", + "mowing\n", + "mown\n", + "mows\n", + "moxa\n", + "moxas\n", + "moxie\n", + "moxies\n", + "mozetta\n", + "mozettas\n", + "mozette\n", + "mozo\n", + "mozos\n", + "mozzetta\n", + "mozzettas\n", + "mozzette\n", + "mridanga\n", + "mridangas\n", + "mu\n", + "much\n", + "muches\n", + "muchness\n", + "muchnesses\n", + "mucic\n", + "mucid\n", + "mucidities\n", + "mucidity\n", + "mucilage\n", + "mucilages\n", + "mucilaginous\n", + "mucin\n", + "mucinoid\n", + "mucinous\n", + "mucins\n", + "muck\n", + "mucked\n", + "mucker\n", + "muckers\n", + "muckier\n", + "muckiest\n", + "muckily\n", + "mucking\n", + "muckle\n", + "muckles\n", + "muckluck\n", + "mucklucks\n", + "muckrake\n", + "muckraked\n", + "muckrakes\n", + "muckraking\n", + "mucks\n", + "muckworm\n", + "muckworms\n", + "mucky\n", + "mucluc\n", + "muclucs\n", + "mucoid\n", + "mucoidal\n", + "mucoids\n", + "mucor\n", + "mucors\n", + "mucosa\n", + "mucosae\n", + "mucosal\n", + "mucosas\n", + "mucose\n", + "mucosities\n", + "mucositis\n", + "mucosity\n", + "mucous\n", + "mucro\n", + "mucrones\n", + "mucus\n", + "mucuses\n", + "mud\n", + "mudcap\n", + "mudcapped\n", + "mudcapping\n", + "mudcaps\n", + "mudded\n", + "mudder\n", + "mudders\n", + "muddied\n", + "muddier\n", + "muddies\n", + "muddiest\n", + "muddily\n", + "muddiness\n", + "muddinesses\n", + "mudding\n", + "muddle\n", + "muddled\n", + "muddler\n", + "muddlers\n", + "muddles\n", + "muddling\n", + "muddy\n", + "muddying\n", + "mudfish\n", + "mudfishes\n", + "mudguard\n", + "mudguards\n", + "mudlark\n", + "mudlarks\n", + "mudpuppies\n", + "mudpuppy\n", + "mudra\n", + "mudras\n", + "mudrock\n", + "mudrocks\n", + "mudroom\n", + "mudrooms\n", + "muds\n", + "mudsill\n", + "mudsills\n", + "mudstone\n", + "mudstones\n", + "mueddin\n", + "mueddins\n", + "muenster\n", + "muensters\n", + "muezzin\n", + "muezzins\n", + "muff\n", + "muffed\n", + "muffin\n", + "muffing\n", + "muffins\n", + "muffle\n", + "muffled\n", + "muffler\n", + "mufflers\n", + "muffles\n", + "muffling\n", + "muffs\n", + "mufti\n", + "muftis\n", + "mug\n", + "mugg\n", + "muggar\n", + "muggars\n", + "mugged\n", + "mugger\n", + "muggers\n", + "muggier\n", + "muggiest\n", + "muggily\n", + "mugginess\n", + "mugginesses\n", + "mugging\n", + "muggings\n", + "muggins\n", + "muggs\n", + "muggur\n", + "muggurs\n", + "muggy\n", + "mugho\n", + "mugs\n", + "mugwort\n", + "mugworts\n", + "mugwump\n", + "mugwumps\n", + "muhlies\n", + "muhly\n", + "mujik\n", + "mujiks\n", + "mukluk\n", + "mukluks\n", + "mulatto\n", + "mulattoes\n", + "mulattos\n", + "mulberries\n", + "mulberry\n", + "mulch\n", + "mulched\n", + "mulches\n", + "mulching\n", + "mulct\n", + "mulcted\n", + "mulcting\n", + "mulcts\n", + "mule\n", + "muled\n", + "mules\n", + "muleta\n", + "muletas\n", + "muleteer\n", + "muleteers\n", + "muley\n", + "muleys\n", + "muling\n", + "mulish\n", + "mulishly\n", + "mulishness\n", + "mulishnesses\n", + "mull\n", + "mulla\n", + "mullah\n", + "mullahs\n", + "mullas\n", + "mulled\n", + "mullein\n", + "mulleins\n", + "mullen\n", + "mullens\n", + "muller\n", + "mullers\n", + "mullet\n", + "mullets\n", + "mulley\n", + "mulleys\n", + "mulligan\n", + "mulligans\n", + "mulling\n", + "mullion\n", + "mullioned\n", + "mullioning\n", + "mullions\n", + "mullite\n", + "mullites\n", + "mullock\n", + "mullocks\n", + "mullocky\n", + "mulls\n", + "multiarmed\n", + "multibarreled\n", + "multibillion\n", + "multibranched\n", + "multibuilding\n", + "multicenter\n", + "multichambered\n", + "multichannel\n", + "multicolored\n", + "multicounty\n", + "multicultural\n", + "multidenominational\n", + "multidimensional\n", + "multidirectional\n", + "multidisciplinary\n", + "multidiscipline\n", + "multidivisional\n", + "multidwelling\n", + "multifaceted\n", + "multifamily\n", + "multifarous\n", + "multifarously\n", + "multifid\n", + "multifilament\n", + "multifunction\n", + "multifunctional\n", + "multigrade\n", + "multiheaded\n", + "multihospital\n", + "multihued\n", + "multijet\n", + "multilane\n", + "multilateral\n", + "multilevel\n", + "multilingual\n", + "multilingualism\n", + "multilingualisms\n", + "multimedia\n", + "multimember\n", + "multimillion\n", + "multimillionaire\n", + "multimodalities\n", + "multimodality\n", + "multipart\n", + "multipartite\n", + "multiparty\n", + "multiped\n", + "multipeds\n", + "multiplant\n", + "multiple\n", + "multiples\n", + "multiplexor\n", + "multiplexors\n", + "multiplication\n", + "multiplications\n", + "multiplicities\n", + "multiplicity\n", + "multiplied\n", + "multiplier\n", + "multipliers\n", + "multiplies\n", + "multiply\n", + "multiplying\n", + "multipolar\n", + "multiproblem\n", + "multiproduct\n", + "multipurpose\n", + "multiracial\n", + "multiroomed\n", + "multisense\n", + "multiservice\n", + "multisided\n", + "multispeed\n", + "multistage\n", + "multistep\n", + "multistory\n", + "multisyllabic\n", + "multitalented\n", + "multitrack\n", + "multitude\n", + "multitudes\n", + "multitudinous\n", + "multiunion\n", + "multiunit\n", + "multivariate\n", + "multiwarhead\n", + "multiyear\n", + "multure\n", + "multures\n", + "mum\n", + "mumble\n", + "mumbled\n", + "mumbler\n", + "mumblers\n", + "mumbles\n", + "mumbling\n", + "mumbo\n", + "mumm\n", + "mummed\n", + "mummer\n", + "mummeries\n", + "mummers\n", + "mummery\n", + "mummied\n", + "mummies\n", + "mummification\n", + "mummifications\n", + "mummified\n", + "mummifies\n", + "mummify\n", + "mummifying\n", + "mumming\n", + "mumms\n", + "mummy\n", + "mummying\n", + "mump\n", + "mumped\n", + "mumper\n", + "mumpers\n", + "mumping\n", + "mumps\n", + "mums\n", + "mun\n", + "munch\n", + "munched\n", + "muncher\n", + "munchers\n", + "munches\n", + "munching\n", + "mundane\n", + "mundanely\n", + "mundungo\n", + "mundungos\n", + "munge\n", + "mungo\n", + "mungoose\n", + "mungooses\n", + "mungos\n", + "mungs\n", + "municipal\n", + "municipalities\n", + "municipality\n", + "municipally\n", + "munificence\n", + "munificences\n", + "munificent\n", + "muniment\n", + "muniments\n", + "munition\n", + "munitioned\n", + "munitioning\n", + "munitions\n", + "munnion\n", + "munnions\n", + "muns\n", + "munster\n", + "munsters\n", + "muntin\n", + "munting\n", + "muntings\n", + "muntins\n", + "muntjac\n", + "muntjacs\n", + "muntjak\n", + "muntjaks\n", + "muon\n", + "muonic\n", + "muons\n", + "mura\n", + "muraenid\n", + "muraenids\n", + "mural\n", + "muralist\n", + "muralists\n", + "murals\n", + "muras\n", + "murder\n", + "murdered\n", + "murderee\n", + "murderees\n", + "murderer\n", + "murderers\n", + "murderess\n", + "murderesses\n", + "murdering\n", + "murderous\n", + "murderously\n", + "murders\n", + "mure\n", + "mured\n", + "murein\n", + "mureins\n", + "mures\n", + "murex\n", + "murexes\n", + "muriate\n", + "muriated\n", + "muriates\n", + "muricate\n", + "murices\n", + "murid\n", + "murids\n", + "murine\n", + "murines\n", + "muring\n", + "murk\n", + "murker\n", + "murkest\n", + "murkier\n", + "murkiest\n", + "murkily\n", + "murkiness\n", + "murkinesses\n", + "murkly\n", + "murks\n", + "murky\n", + "murmur\n", + "murmured\n", + "murmurer\n", + "murmurers\n", + "murmuring\n", + "murmurous\n", + "murmurs\n", + "murphies\n", + "murphy\n", + "murr\n", + "murra\n", + "murrain\n", + "murrains\n", + "murras\n", + "murre\n", + "murrelet\n", + "murrelets\n", + "murres\n", + "murrey\n", + "murreys\n", + "murrha\n", + "murrhas\n", + "murrhine\n", + "murries\n", + "murrine\n", + "murrs\n", + "murry\n", + "murther\n", + "murthered\n", + "murthering\n", + "murthers\n", + "mus\n", + "musca\n", + "muscadel\n", + "muscadels\n", + "muscae\n", + "muscat\n", + "muscatel\n", + "muscatels\n", + "muscats\n", + "muscid\n", + "muscids\n", + "muscle\n", + "muscled\n", + "muscles\n", + "muscling\n", + "muscly\n", + "muscular\n", + "muscularities\n", + "muscularity\n", + "musculature\n", + "musculatures\n", + "muse\n", + "mused\n", + "museful\n", + "muser\n", + "musers\n", + "muses\n", + "musette\n", + "musettes\n", + "museum\n", + "museums\n", + "mush\n", + "mushed\n", + "musher\n", + "mushers\n", + "mushes\n", + "mushier\n", + "mushiest\n", + "mushily\n", + "mushing\n", + "mushroom\n", + "mushroomed\n", + "mushrooming\n", + "mushrooms\n", + "mushy\n", + "music\n", + "musical\n", + "musicale\n", + "musicales\n", + "musically\n", + "musicals\n", + "musician\n", + "musicianly\n", + "musicians\n", + "musicianship\n", + "musicianships\n", + "musics\n", + "musing\n", + "musingly\n", + "musings\n", + "musjid\n", + "musjids\n", + "musk\n", + "muskeg\n", + "muskegs\n", + "muskellunge\n", + "musket\n", + "musketries\n", + "musketry\n", + "muskets\n", + "muskie\n", + "muskier\n", + "muskies\n", + "muskiest\n", + "muskily\n", + "muskiness\n", + "muskinesses\n", + "muskit\n", + "muskits\n", + "muskmelon\n", + "muskmelons\n", + "muskrat\n", + "muskrats\n", + "musks\n", + "musky\n", + "muslin\n", + "muslins\n", + "muspike\n", + "muspikes\n", + "musquash\n", + "musquashes\n", + "muss\n", + "mussed\n", + "mussel\n", + "mussels\n", + "musses\n", + "mussier\n", + "mussiest\n", + "mussily\n", + "mussiness\n", + "mussinesses\n", + "mussing\n", + "mussy\n", + "must\n", + "mustache\n", + "mustaches\n", + "mustang\n", + "mustangs\n", + "mustard\n", + "mustards\n", + "musted\n", + "mustee\n", + "mustees\n", + "muster\n", + "mustered\n", + "mustering\n", + "musters\n", + "musth\n", + "musths\n", + "mustier\n", + "mustiest\n", + "mustily\n", + "mustiness\n", + "mustinesses\n", + "musting\n", + "musts\n", + "musty\n", + "mut\n", + "mutabilities\n", + "mutability\n", + "mutable\n", + "mutably\n", + "mutagen\n", + "mutagens\n", + "mutant\n", + "mutants\n", + "mutase\n", + "mutases\n", + "mutate\n", + "mutated\n", + "mutates\n", + "mutating\n", + "mutation\n", + "mutational\n", + "mutations\n", + "mutative\n", + "mutch\n", + "mutches\n", + "mutchkin\n", + "mutchkins\n", + "mute\n", + "muted\n", + "mutedly\n", + "mutely\n", + "muteness\n", + "mutenesses\n", + "muter\n", + "mutes\n", + "mutest\n", + "muticous\n", + "mutilate\n", + "mutilated\n", + "mutilates\n", + "mutilating\n", + "mutilation\n", + "mutilations\n", + "mutilator\n", + "mutilators\n", + "mutine\n", + "mutined\n", + "mutineer\n", + "mutineered\n", + "mutineering\n", + "mutineers\n", + "mutines\n", + "muting\n", + "mutinied\n", + "mutinies\n", + "mutining\n", + "mutinous\n", + "mutinously\n", + "mutiny\n", + "mutinying\n", + "mutism\n", + "mutisms\n", + "muts\n", + "mutt\n", + "mutter\n", + "muttered\n", + "mutterer\n", + "mutterers\n", + "muttering\n", + "mutters\n", + "mutton\n", + "muttons\n", + "muttony\n", + "mutts\n", + "mutual\n", + "mutually\n", + "mutuel\n", + "mutuels\n", + "mutular\n", + "mutule\n", + "mutules\n", + "muumuu\n", + "muumuus\n", + "muzhik\n", + "muzhiks\n", + "muzjik\n", + "muzjiks\n", + "muzzier\n", + "muzziest\n", + "muzzily\n", + "muzzle\n", + "muzzled\n", + "muzzler\n", + "muzzlers\n", + "muzzles\n", + "muzzling\n", + "muzzy\n", + "my\n", + "myalgia\n", + "myalgias\n", + "myalgic\n", + "myases\n", + "myasis\n", + "mycele\n", + "myceles\n", + "mycelia\n", + "mycelial\n", + "mycelian\n", + "mycelium\n", + "myceloid\n", + "mycetoma\n", + "mycetomas\n", + "mycetomata\n", + "mycologies\n", + "mycology\n", + "mycoses\n", + "mycosis\n", + "mycotic\n", + "myelin\n", + "myeline\n", + "myelines\n", + "myelinic\n", + "myelins\n", + "myelitides\n", + "myelitis\n", + "myeloid\n", + "myeloma\n", + "myelomas\n", + "myelomata\n", + "myelosuppression\n", + "myelosuppressions\n", + "myiases\n", + "myiasis\n", + "mylonite\n", + "mylonites\n", + "myna\n", + "mynah\n", + "mynahs\n", + "mynas\n", + "mynheer\n", + "mynheers\n", + "myoblast\n", + "myoblasts\n", + "myogenic\n", + "myograph\n", + "myographs\n", + "myoid\n", + "myologic\n", + "myologies\n", + "myology\n", + "myoma\n", + "myomas\n", + "myomata\n", + "myopathies\n", + "myopathy\n", + "myope\n", + "myopes\n", + "myopia\n", + "myopias\n", + "myopic\n", + "myopically\n", + "myopies\n", + "myopy\n", + "myoscope\n", + "myoscopes\n", + "myoses\n", + "myosin\n", + "myosins\n", + "myosis\n", + "myosote\n", + "myosotes\n", + "myosotis\n", + "myosotises\n", + "myotic\n", + "myotics\n", + "myotome\n", + "myotomes\n", + "myotonia\n", + "myotonias\n", + "myotonic\n", + "myriad\n", + "myriads\n", + "myriapod\n", + "myriapods\n", + "myrica\n", + "myricas\n", + "myriopod\n", + "myriopods\n", + "myrmidon\n", + "myrmidons\n", + "myrrh\n", + "myrrhic\n", + "myrrhs\n", + "myrtle\n", + "myrtles\n", + "myself\n", + "mysost\n", + "mysosts\n", + "mystagog\n", + "mystagogs\n", + "mysteries\n", + "mysterious\n", + "mysteriously\n", + "mysteriousness\n", + "mysteriousnesses\n", + "mystery\n", + "mystic\n", + "mystical\n", + "mysticly\n", + "mystics\n", + "mystification\n", + "mystifications\n", + "mystified\n", + "mystifies\n", + "mystify\n", + "mystifying\n", + "mystique\n", + "mystiques\n", + "myth\n", + "mythic\n", + "mythical\n", + "mythoi\n", + "mythological\n", + "mythologies\n", + "mythologist\n", + "mythologists\n", + "mythology\n", + "mythos\n", + "myths\n", + "myxedema\n", + "myxedemas\n", + "myxocyte\n", + "myxocytes\n", + "myxoid\n", + "myxoma\n", + "myxomas\n", + "myxomata\n", + "na\n", + "nab\n", + "nabbed\n", + "nabbing\n", + "nabis\n", + "nabob\n", + "naboberies\n", + "nabobery\n", + "nabobess\n", + "nabobesses\n", + "nabobism\n", + "nabobisms\n", + "nabobs\n", + "nabs\n", + "nacelle\n", + "nacelles\n", + "nacre\n", + "nacred\n", + "nacreous\n", + "nacres\n", + "nadir\n", + "nadiral\n", + "nadirs\n", + "nae\n", + "naething\n", + "naethings\n", + "naevi\n", + "naevoid\n", + "naevus\n", + "nag\n", + "nagana\n", + "naganas\n", + "nagged\n", + "nagger\n", + "naggers\n", + "nagging\n", + "nags\n", + "naiad\n", + "naiades\n", + "naiads\n", + "naif\n", + "naifs\n", + "nail\n", + "nailed\n", + "nailer\n", + "nailers\n", + "nailfold\n", + "nailfolds\n", + "nailhead\n", + "nailheads\n", + "nailing\n", + "nails\n", + "nailset\n", + "nailsets\n", + "nainsook\n", + "nainsooks\n", + "naive\n", + "naively\n", + "naiveness\n", + "naivenesses\n", + "naiver\n", + "naives\n", + "naivest\n", + "naivete\n", + "naivetes\n", + "naiveties\n", + "naivety\n", + "naked\n", + "nakeder\n", + "nakedest\n", + "nakedly\n", + "nakedness\n", + "nakednesses\n", + "naled\n", + "naleds\n", + "naloxone\n", + "naloxones\n", + "namable\n", + "name\n", + "nameable\n", + "named\n", + "nameless\n", + "namelessly\n", + "namely\n", + "namer\n", + "namers\n", + "names\n", + "namesake\n", + "namesakes\n", + "naming\n", + "nana\n", + "nanas\n", + "nance\n", + "nances\n", + "nandin\n", + "nandins\n", + "nanism\n", + "nanisms\n", + "nankeen\n", + "nankeens\n", + "nankin\n", + "nankins\n", + "nannie\n", + "nannies\n", + "nanny\n", + "nanogram\n", + "nanograms\n", + "nanowatt\n", + "nanowatts\n", + "naoi\n", + "naos\n", + "nap\n", + "napalm\n", + "napalmed\n", + "napalming\n", + "napalms\n", + "nape\n", + "naperies\n", + "napery\n", + "napes\n", + "naphtha\n", + "naphthas\n", + "naphthol\n", + "naphthols\n", + "naphthyl\n", + "napiform\n", + "napkin\n", + "napkins\n", + "napless\n", + "napoleon\n", + "napoleons\n", + "nappe\n", + "napped\n", + "napper\n", + "nappers\n", + "nappes\n", + "nappie\n", + "nappier\n", + "nappies\n", + "nappiest\n", + "napping\n", + "nappy\n", + "naps\n", + "narc\n", + "narcein\n", + "narceine\n", + "narceines\n", + "narceins\n", + "narcism\n", + "narcisms\n", + "narcissi\n", + "narcissism\n", + "narcissisms\n", + "narcissist\n", + "narcissists\n", + "narcissus\n", + "narcissuses\n", + "narcist\n", + "narcists\n", + "narco\n", + "narcos\n", + "narcose\n", + "narcoses\n", + "narcosis\n", + "narcotic\n", + "narcotics\n", + "narcs\n", + "nard\n", + "nardine\n", + "nards\n", + "nares\n", + "narghile\n", + "narghiles\n", + "nargile\n", + "nargileh\n", + "nargilehs\n", + "nargiles\n", + "narial\n", + "naric\n", + "narine\n", + "naris\n", + "nark\n", + "narked\n", + "narking\n", + "narks\n", + "narrate\n", + "narrated\n", + "narrater\n", + "narraters\n", + "narrates\n", + "narrating\n", + "narration\n", + "narrations\n", + "narrative\n", + "narratives\n", + "narrator\n", + "narrators\n", + "narrow\n", + "narrowed\n", + "narrower\n", + "narrowest\n", + "narrowing\n", + "narrowly\n", + "narrowness\n", + "narrownesses\n", + "narrows\n", + "narthex\n", + "narthexes\n", + "narwal\n", + "narwals\n", + "narwhal\n", + "narwhale\n", + "narwhales\n", + "narwhals\n", + "nary\n", + "nasal\n", + "nasalise\n", + "nasalised\n", + "nasalises\n", + "nasalising\n", + "nasalities\n", + "nasality\n", + "nasalize\n", + "nasalized\n", + "nasalizes\n", + "nasalizing\n", + "nasally\n", + "nasals\n", + "nascence\n", + "nascences\n", + "nascencies\n", + "nascency\n", + "nascent\n", + "nasial\n", + "nasion\n", + "nasions\n", + "nastic\n", + "nastier\n", + "nastiest\n", + "nastily\n", + "nastiness\n", + "nastinesses\n", + "nasturtium\n", + "nasturtiums\n", + "nasty\n", + "natal\n", + "natalities\n", + "natality\n", + "natant\n", + "natantly\n", + "natation\n", + "natations\n", + "natatory\n", + "nates\n", + "nathless\n", + "nation\n", + "national\n", + "nationalism\n", + "nationalisms\n", + "nationalist\n", + "nationalistic\n", + "nationalists\n", + "nationalities\n", + "nationality\n", + "nationalization\n", + "nationalizations\n", + "nationalize\n", + "nationalized\n", + "nationalizes\n", + "nationalizing\n", + "nationally\n", + "nationals\n", + "nationhood\n", + "nationhoods\n", + "nations\n", + "native\n", + "natively\n", + "natives\n", + "nativism\n", + "nativisms\n", + "nativist\n", + "nativists\n", + "nativities\n", + "nativity\n", + "natrium\n", + "natriums\n", + "natron\n", + "natrons\n", + "natter\n", + "nattered\n", + "nattering\n", + "natters\n", + "nattier\n", + "nattiest\n", + "nattily\n", + "nattiness\n", + "nattinesses\n", + "natty\n", + "natural\n", + "naturalism\n", + "naturalisms\n", + "naturalist\n", + "naturalistic\n", + "naturalists\n", + "naturalization\n", + "naturalizations\n", + "naturalize\n", + "naturalized\n", + "naturalizes\n", + "naturalizing\n", + "naturally\n", + "naturalness\n", + "naturalnesses\n", + "naturals\n", + "nature\n", + "natured\n", + "natures\n", + "naught\n", + "naughtier\n", + "naughtiest\n", + "naughtily\n", + "naughtiness\n", + "naughtinesses\n", + "naughts\n", + "naughty\n", + "naumachies\n", + "naumachy\n", + "nauplial\n", + "nauplii\n", + "nauplius\n", + "nausea\n", + "nauseant\n", + "nauseants\n", + "nauseas\n", + "nauseate\n", + "nauseated\n", + "nauseates\n", + "nauseating\n", + "nauseatingly\n", + "nauseous\n", + "nautch\n", + "nautches\n", + "nautical\n", + "nautically\n", + "nautili\n", + "nautilus\n", + "nautiluses\n", + "navaid\n", + "navaids\n", + "naval\n", + "navally\n", + "navar\n", + "navars\n", + "nave\n", + "navel\n", + "navels\n", + "naves\n", + "navette\n", + "navettes\n", + "navicert\n", + "navicerts\n", + "navies\n", + "navigabilities\n", + "navigability\n", + "navigable\n", + "navigably\n", + "navigate\n", + "navigated\n", + "navigates\n", + "navigating\n", + "navigation\n", + "navigations\n", + "navigator\n", + "navigators\n", + "navvies\n", + "navvy\n", + "navy\n", + "nawab\n", + "nawabs\n", + "nay\n", + "nays\n", + "nazi\n", + "nazified\n", + "nazifies\n", + "nazify\n", + "nazifying\n", + "nazis\n", + "neap\n", + "neaps\n", + "near\n", + "nearby\n", + "neared\n", + "nearer\n", + "nearest\n", + "nearing\n", + "nearlier\n", + "nearliest\n", + "nearly\n", + "nearness\n", + "nearnesses\n", + "nears\n", + "nearsighted\n", + "nearsightedly\n", + "nearsightedness\n", + "nearsightednesses\n", + "neat\n", + "neaten\n", + "neatened\n", + "neatening\n", + "neatens\n", + "neater\n", + "neatest\n", + "neath\n", + "neatherd\n", + "neatherds\n", + "neatly\n", + "neatness\n", + "neatnesses\n", + "neats\n", + "neb\n", + "nebbish\n", + "nebbishes\n", + "nebs\n", + "nebula\n", + "nebulae\n", + "nebular\n", + "nebulas\n", + "nebule\n", + "nebulise\n", + "nebulised\n", + "nebulises\n", + "nebulising\n", + "nebulize\n", + "nebulized\n", + "nebulizes\n", + "nebulizing\n", + "nebulose\n", + "nebulous\n", + "nebuly\n", + "necessaries\n", + "necessarily\n", + "necessary\n", + "necessitate\n", + "necessitated\n", + "necessitates\n", + "necessitating\n", + "necessities\n", + "necessity\n", + "neck\n", + "neckband\n", + "neckbands\n", + "necked\n", + "neckerchief\n", + "neckerchiefs\n", + "necking\n", + "neckings\n", + "necklace\n", + "necklaces\n", + "neckless\n", + "necklike\n", + "neckline\n", + "necklines\n", + "necks\n", + "necktie\n", + "neckties\n", + "neckwear\n", + "neckwears\n", + "necrologies\n", + "necrology\n", + "necromancer\n", + "necromancers\n", + "necromancies\n", + "necromancy\n", + "necropsied\n", + "necropsies\n", + "necropsy\n", + "necropsying\n", + "necrose\n", + "necrosed\n", + "necroses\n", + "necrosing\n", + "necrosis\n", + "necrotic\n", + "nectar\n", + "nectaries\n", + "nectarine\n", + "nectarines\n", + "nectars\n", + "nectary\n", + "nee\n", + "need\n", + "needed\n", + "needer\n", + "needers\n", + "needful\n", + "needfuls\n", + "needier\n", + "neediest\n", + "needily\n", + "needing\n", + "needle\n", + "needled\n", + "needlepoint\n", + "needlepoints\n", + "needler\n", + "needlers\n", + "needles\n", + "needless\n", + "needlessly\n", + "needlework\n", + "needleworks\n", + "needling\n", + "needlings\n", + "needs\n", + "needy\n", + "neem\n", + "neems\n", + "neep\n", + "neeps\n", + "nefarious\n", + "nefariouses\n", + "nefariously\n", + "negate\n", + "negated\n", + "negater\n", + "negaters\n", + "negates\n", + "negating\n", + "negation\n", + "negations\n", + "negative\n", + "negatived\n", + "negatively\n", + "negatives\n", + "negativing\n", + "negaton\n", + "negatons\n", + "negator\n", + "negators\n", + "negatron\n", + "negatrons\n", + "neglect\n", + "neglected\n", + "neglectful\n", + "neglecting\n", + "neglects\n", + "neglige\n", + "negligee\n", + "negligees\n", + "negligence\n", + "negligences\n", + "negligent\n", + "negligently\n", + "negliges\n", + "negligible\n", + "negotiable\n", + "negotiate\n", + "negotiated\n", + "negotiates\n", + "negotiating\n", + "negotiation\n", + "negotiations\n", + "negotiator\n", + "negotiators\n", + "negro\n", + "negroes\n", + "negroid\n", + "negroids\n", + "negus\n", + "neguses\n", + "neif\n", + "neifs\n", + "neigh\n", + "neighbor\n", + "neighbored\n", + "neighborhood\n", + "neighborhoods\n", + "neighboring\n", + "neighborliness\n", + "neighborlinesses\n", + "neighborly\n", + "neighbors\n", + "neighed\n", + "neighing\n", + "neighs\n", + "neist\n", + "neither\n", + "nekton\n", + "nektonic\n", + "nektons\n", + "nelson\n", + "nelsons\n", + "nelumbo\n", + "nelumbos\n", + "nema\n", + "nemas\n", + "nematic\n", + "nematode\n", + "nematodes\n", + "nemeses\n", + "nemesis\n", + "nene\n", + "neolith\n", + "neoliths\n", + "neologic\n", + "neologies\n", + "neologism\n", + "neologisms\n", + "neology\n", + "neomorph\n", + "neomorphs\n", + "neomycin\n", + "neomycins\n", + "neon\n", + "neonatal\n", + "neonate\n", + "neonates\n", + "neoned\n", + "neons\n", + "neophyte\n", + "neophytes\n", + "neoplasm\n", + "neoplasms\n", + "neoprene\n", + "neoprenes\n", + "neotenic\n", + "neotenies\n", + "neoteny\n", + "neoteric\n", + "neoterics\n", + "neotype\n", + "neotypes\n", + "nepenthe\n", + "nepenthes\n", + "nephew\n", + "nephews\n", + "nephric\n", + "nephrism\n", + "nephrisms\n", + "nephrite\n", + "nephrites\n", + "nephron\n", + "nephrons\n", + "nepotic\n", + "nepotism\n", + "nepotisms\n", + "nepotist\n", + "nepotists\n", + "nereid\n", + "nereides\n", + "nereids\n", + "nereis\n", + "neritic\n", + "nerol\n", + "neroli\n", + "nerolis\n", + "nerols\n", + "nerts\n", + "nertz\n", + "nervate\n", + "nerve\n", + "nerved\n", + "nerveless\n", + "nerves\n", + "nervier\n", + "nerviest\n", + "nervily\n", + "nervine\n", + "nervines\n", + "nerving\n", + "nervings\n", + "nervous\n", + "nervously\n", + "nervousness\n", + "nervousnesses\n", + "nervule\n", + "nervules\n", + "nervure\n", + "nervures\n", + "nervy\n", + "nescient\n", + "nescients\n", + "ness\n", + "nesses\n", + "nest\n", + "nested\n", + "nester\n", + "nesters\n", + "nesting\n", + "nestle\n", + "nestled\n", + "nestler\n", + "nestlers\n", + "nestles\n", + "nestlike\n", + "nestling\n", + "nestlings\n", + "nestor\n", + "nestors\n", + "nests\n", + "net\n", + "nether\n", + "netless\n", + "netlike\n", + "netop\n", + "netops\n", + "nets\n", + "netsuke\n", + "netsukes\n", + "nett\n", + "nettable\n", + "netted\n", + "netter\n", + "netters\n", + "nettier\n", + "nettiest\n", + "netting\n", + "nettings\n", + "nettle\n", + "nettled\n", + "nettler\n", + "nettlers\n", + "nettles\n", + "nettlesome\n", + "nettlier\n", + "nettliest\n", + "nettling\n", + "nettly\n", + "netts\n", + "netty\n", + "network\n", + "networked\n", + "networking\n", + "networks\n", + "neum\n", + "neumatic\n", + "neume\n", + "neumes\n", + "neumic\n", + "neums\n", + "neural\n", + "neuralgia\n", + "neuralgias\n", + "neuralgic\n", + "neurally\n", + "neuraxon\n", + "neuraxons\n", + "neuritic\n", + "neuritics\n", + "neuritides\n", + "neuritis\n", + "neuritises\n", + "neuroid\n", + "neurologic\n", + "neurological\n", + "neurologically\n", + "neurologies\n", + "neurologist\n", + "neurologists\n", + "neurology\n", + "neuroma\n", + "neuromas\n", + "neuromata\n", + "neuron\n", + "neuronal\n", + "neurone\n", + "neurones\n", + "neuronic\n", + "neurons\n", + "neuropathies\n", + "neuropathy\n", + "neuropsych\n", + "neurosal\n", + "neuroses\n", + "neurosis\n", + "neurosurgeon\n", + "neurosurgeons\n", + "neurotic\n", + "neurotically\n", + "neurotics\n", + "neurotoxicities\n", + "neurotoxicity\n", + "neuston\n", + "neustons\n", + "neuter\n", + "neutered\n", + "neutering\n", + "neuters\n", + "neutral\n", + "neutralities\n", + "neutrality\n", + "neutralization\n", + "neutralizations\n", + "neutralize\n", + "neutralized\n", + "neutralizes\n", + "neutralizing\n", + "neutrals\n", + "neutrino\n", + "neutrinos\n", + "neutron\n", + "neutrons\n", + "neve\n", + "never\n", + "nevermore\n", + "nevertheless\n", + "neves\n", + "nevi\n", + "nevoid\n", + "nevus\n", + "new\n", + "newborn\n", + "newborns\n", + "newcomer\n", + "newcomers\n", + "newel\n", + "newels\n", + "newer\n", + "newest\n", + "newfound\n", + "newish\n", + "newly\n", + "newlywed\n", + "newlyweds\n", + "newmown\n", + "newness\n", + "newnesses\n", + "news\n", + "newsboy\n", + "newsboys\n", + "newscast\n", + "newscaster\n", + "newscasters\n", + "newscasts\n", + "newsier\n", + "newsies\n", + "newsiest\n", + "newsless\n", + "newsletter\n", + "newsmagazine\n", + "newsmagazines\n", + "newsman\n", + "newsmen\n", + "newspaper\n", + "newspaperman\n", + "newspapermen\n", + "newspapers\n", + "newspeak\n", + "newspeaks\n", + "newsprint\n", + "newsprints\n", + "newsreel\n", + "newsreels\n", + "newsroom\n", + "newsrooms\n", + "newsstand\n", + "newsstands\n", + "newsworthy\n", + "newsy\n", + "newt\n", + "newton\n", + "newtons\n", + "newts\n", + "next\n", + "nextdoor\n", + "nexus\n", + "nexuses\n", + "ngwee\n", + "niacin\n", + "niacins\n", + "nib\n", + "nibbed\n", + "nibbing\n", + "nibble\n", + "nibbled\n", + "nibbler\n", + "nibblers\n", + "nibbles\n", + "nibbling\n", + "niblick\n", + "niblicks\n", + "niblike\n", + "nibs\n", + "nice\n", + "nicely\n", + "niceness\n", + "nicenesses\n", + "nicer\n", + "nicest\n", + "niceties\n", + "nicety\n", + "niche\n", + "niched\n", + "niches\n", + "niching\n", + "nick\n", + "nicked\n", + "nickel\n", + "nickeled\n", + "nickelic\n", + "nickeling\n", + "nickelled\n", + "nickelling\n", + "nickels\n", + "nicker\n", + "nickered\n", + "nickering\n", + "nickers\n", + "nicking\n", + "nickle\n", + "nickles\n", + "nicknack\n", + "nicknacks\n", + "nickname\n", + "nicknamed\n", + "nicknames\n", + "nicknaming\n", + "nicks\n", + "nicol\n", + "nicols\n", + "nicotin\n", + "nicotine\n", + "nicotines\n", + "nicotins\n", + "nictate\n", + "nictated\n", + "nictates\n", + "nictating\n", + "nidal\n", + "nide\n", + "nided\n", + "nidering\n", + "niderings\n", + "nides\n", + "nidget\n", + "nidgets\n", + "nidi\n", + "nidified\n", + "nidifies\n", + "nidify\n", + "nidifying\n", + "niding\n", + "nidus\n", + "niduses\n", + "niece\n", + "nieces\n", + "nielli\n", + "niellist\n", + "niellists\n", + "niello\n", + "nielloed\n", + "nielloing\n", + "niellos\n", + "nieve\n", + "nieves\n", + "niffer\n", + "niffered\n", + "niffering\n", + "niffers\n", + "niftier\n", + "niftiest\n", + "nifty\n", + "niggard\n", + "niggarded\n", + "niggarding\n", + "niggardliness\n", + "niggardlinesses\n", + "niggardly\n", + "niggards\n", + "niggle\n", + "niggled\n", + "niggler\n", + "nigglers\n", + "niggles\n", + "niggling\n", + "nigglings\n", + "nigh\n", + "nighed\n", + "nigher\n", + "nighest\n", + "nighing\n", + "nighness\n", + "nighnesses\n", + "nighs\n", + "night\n", + "nightcap\n", + "nightcaps\n", + "nightclothes\n", + "nightclub\n", + "nightclubs\n", + "nightfall\n", + "nightfalls\n", + "nightgown\n", + "nightgowns\n", + "nightie\n", + "nighties\n", + "nightingale\n", + "nightingales\n", + "nightjar\n", + "nightjars\n", + "nightly\n", + "nightmare\n", + "nightmares\n", + "nightmarish\n", + "nights\n", + "nightshade\n", + "nightshades\n", + "nighttime\n", + "nighttimes\n", + "nighty\n", + "nigrified\n", + "nigrifies\n", + "nigrify\n", + "nigrifying\n", + "nigrosin\n", + "nigrosins\n", + "nihil\n", + "nihilism\n", + "nihilisms\n", + "nihilist\n", + "nihilists\n", + "nihilities\n", + "nihility\n", + "nihils\n", + "nil\n", + "nilgai\n", + "nilgais\n", + "nilgau\n", + "nilgaus\n", + "nilghai\n", + "nilghais\n", + "nilghau\n", + "nilghaus\n", + "nill\n", + "nilled\n", + "nilling\n", + "nills\n", + "nils\n", + "nim\n", + "nimbi\n", + "nimble\n", + "nimbleness\n", + "nimblenesses\n", + "nimbler\n", + "nimblest\n", + "nimbly\n", + "nimbus\n", + "nimbused\n", + "nimbuses\n", + "nimieties\n", + "nimiety\n", + "nimious\n", + "nimmed\n", + "nimming\n", + "nimrod\n", + "nimrods\n", + "nims\n", + "nincompoop\n", + "nincompoops\n", + "nine\n", + "ninebark\n", + "ninebarks\n", + "ninefold\n", + "ninepin\n", + "ninepins\n", + "nines\n", + "nineteen\n", + "nineteens\n", + "nineteenth\n", + "nineteenths\n", + "nineties\n", + "ninetieth\n", + "ninetieths\n", + "ninety\n", + "ninnies\n", + "ninny\n", + "ninnyish\n", + "ninon\n", + "ninons\n", + "ninth\n", + "ninthly\n", + "ninths\n", + "niobic\n", + "niobium\n", + "niobiums\n", + "niobous\n", + "nip\n", + "nipa\n", + "nipas\n", + "nipped\n", + "nipper\n", + "nippers\n", + "nippier\n", + "nippiest\n", + "nippily\n", + "nipping\n", + "nipple\n", + "nipples\n", + "nippy\n", + "nips\n", + "nirvana\n", + "nirvanas\n", + "nirvanic\n", + "nisei\n", + "niseis\n", + "nisi\n", + "nisus\n", + "nit\n", + "nitchie\n", + "nitchies\n", + "niter\n", + "niters\n", + "nitid\n", + "niton\n", + "nitons\n", + "nitpick\n", + "nitpicked\n", + "nitpicking\n", + "nitpicks\n", + "nitrate\n", + "nitrated\n", + "nitrates\n", + "nitrating\n", + "nitrator\n", + "nitrators\n", + "nitre\n", + "nitres\n", + "nitric\n", + "nitrid\n", + "nitride\n", + "nitrides\n", + "nitrids\n", + "nitrified\n", + "nitrifies\n", + "nitrify\n", + "nitrifying\n", + "nitril\n", + "nitrile\n", + "nitriles\n", + "nitrils\n", + "nitrite\n", + "nitrites\n", + "nitro\n", + "nitrogen\n", + "nitrogenous\n", + "nitrogens\n", + "nitroglycerin\n", + "nitroglycerine\n", + "nitroglycerines\n", + "nitroglycerins\n", + "nitrolic\n", + "nitros\n", + "nitroso\n", + "nitrosurea\n", + "nitrosyl\n", + "nitrosyls\n", + "nitrous\n", + "nits\n", + "nittier\n", + "nittiest\n", + "nitty\n", + "nitwit\n", + "nitwits\n", + "nival\n", + "niveous\n", + "nix\n", + "nixed\n", + "nixes\n", + "nixie\n", + "nixies\n", + "nixing\n", + "nixy\n", + "nizam\n", + "nizamate\n", + "nizamates\n", + "nizams\n", + "no\n", + "nob\n", + "nobbier\n", + "nobbiest\n", + "nobbily\n", + "nobble\n", + "nobbled\n", + "nobbler\n", + "nobblers\n", + "nobbles\n", + "nobbling\n", + "nobby\n", + "nobelium\n", + "nobeliums\n", + "nobilities\n", + "nobility\n", + "noble\n", + "nobleman\n", + "noblemen\n", + "nobleness\n", + "noblenesses\n", + "nobler\n", + "nobles\n", + "noblesse\n", + "noblesses\n", + "noblest\n", + "nobly\n", + "nobodies\n", + "nobody\n", + "nobs\n", + "nocent\n", + "nock\n", + "nocked\n", + "nocking\n", + "nocks\n", + "noctuid\n", + "noctuids\n", + "noctule\n", + "noctules\n", + "noctuoid\n", + "nocturn\n", + "nocturnal\n", + "nocturne\n", + "nocturnes\n", + "nocturns\n", + "nocuous\n", + "nod\n", + "nodal\n", + "nodalities\n", + "nodality\n", + "nodally\n", + "nodded\n", + "nodder\n", + "nodders\n", + "noddies\n", + "nodding\n", + "noddle\n", + "noddled\n", + "noddles\n", + "noddling\n", + "noddy\n", + "node\n", + "nodes\n", + "nodi\n", + "nodical\n", + "nodose\n", + "nodosities\n", + "nodosity\n", + "nodous\n", + "nods\n", + "nodular\n", + "nodule\n", + "nodules\n", + "nodulose\n", + "nodulous\n", + "nodus\n", + "noel\n", + "noels\n", + "noes\n", + "noesis\n", + "noesises\n", + "noetic\n", + "nog\n", + "nogg\n", + "noggin\n", + "nogging\n", + "noggings\n", + "noggins\n", + "noggs\n", + "nogs\n", + "noh\n", + "nohes\n", + "nohow\n", + "noil\n", + "noils\n", + "noily\n", + "noir\n", + "noise\n", + "noised\n", + "noisemaker\n", + "noisemakers\n", + "noises\n", + "noisier\n", + "noisiest\n", + "noisily\n", + "noisiness\n", + "noisinesses\n", + "noising\n", + "noisome\n", + "noisy\n", + "nolo\n", + "nolos\n", + "nom\n", + "noma\n", + "nomad\n", + "nomadic\n", + "nomadism\n", + "nomadisms\n", + "nomads\n", + "nomarch\n", + "nomarchies\n", + "nomarchs\n", + "nomarchy\n", + "nomas\n", + "nombles\n", + "nombril\n", + "nombrils\n", + "nome\n", + "nomen\n", + "nomenclature\n", + "nomenclatures\n", + "nomes\n", + "nomina\n", + "nominal\n", + "nominally\n", + "nominals\n", + "nominate\n", + "nominated\n", + "nominates\n", + "nominating\n", + "nomination\n", + "nominations\n", + "nominative\n", + "nominatives\n", + "nominee\n", + "nominees\n", + "nomism\n", + "nomisms\n", + "nomistic\n", + "nomogram\n", + "nomograms\n", + "nomoi\n", + "nomologies\n", + "nomology\n", + "nomos\n", + "noms\n", + "nona\n", + "nonabrasive\n", + "nonabsorbent\n", + "nonacademic\n", + "nonaccredited\n", + "nonacid\n", + "nonacids\n", + "nonaddictive\n", + "nonadherence\n", + "nonadherences\n", + "nonadhesive\n", + "nonadjacent\n", + "nonadjustable\n", + "nonadult\n", + "nonadults\n", + "nonaffiliated\n", + "nonage\n", + "nonages\n", + "nonaggression\n", + "nonaggressions\n", + "nonagon\n", + "nonagons\n", + "nonalcoholic\n", + "nonaligned\n", + "nonappearance\n", + "nonappearances\n", + "nonas\n", + "nonautomatic\n", + "nonbank\n", + "nonbasic\n", + "nonbeing\n", + "nonbeings\n", + "nonbeliever\n", + "nonbelievers\n", + "nonbook\n", + "nonbooks\n", + "nonbreakable\n", + "noncancerous\n", + "noncandidate\n", + "noncandidates\n", + "noncarbonated\n", + "noncash\n", + "nonce\n", + "nonces\n", + "nonchalance\n", + "nonchalances\n", + "nonchalant\n", + "nonchalantly\n", + "nonchargeable\n", + "nonchurchgoer\n", + "nonchurchgoers\n", + "noncitizen\n", + "noncitizens\n", + "nonclassical\n", + "nonclassified\n", + "noncom\n", + "noncombat\n", + "noncombatant\n", + "noncombatants\n", + "noncombustible\n", + "noncommercial\n", + "noncommittal\n", + "noncommunicable\n", + "noncompliance\n", + "noncompliances\n", + "noncoms\n", + "nonconclusive\n", + "nonconductor\n", + "nonconductors\n", + "nonconflicting\n", + "nonconforming\n", + "nonconformist\n", + "nonconformists\n", + "nonconsecutive\n", + "nonconstructive\n", + "nonconsumable\n", + "noncontagious\n", + "noncontributing\n", + "noncontrollable\n", + "noncontroversial\n", + "noncorrosive\n", + "noncriminal\n", + "noncritical\n", + "noncumulative\n", + "noncurrent\n", + "nondairy\n", + "nondeductible\n", + "nondefense\n", + "nondeferrable\n", + "nondegradable\n", + "nondeliveries\n", + "nondelivery\n", + "nondemocratic\n", + "nondenominational\n", + "nondescript\n", + "nondestructive\n", + "nondiscrimination\n", + "nondiscriminations\n", + "nondiscriminatory\n", + "none\n", + "noneducational\n", + "nonego\n", + "nonegos\n", + "nonelastic\n", + "nonelect\n", + "nonelected\n", + "nonelective\n", + "nonelectric\n", + "nonelectronic\n", + "nonemotional\n", + "nonempty\n", + "nonenforceable\n", + "nonenforcement\n", + "nonenforcements\n", + "nonentities\n", + "nonentity\n", + "nonentries\n", + "nonentry\n", + "nonequal\n", + "nonequals\n", + "nones\n", + "nonessential\n", + "nonesuch\n", + "nonesuches\n", + "nonetheless\n", + "nonevent\n", + "nonevents\n", + "nonexchangeable\n", + "nonexistence\n", + "nonexistences\n", + "nonexistent\n", + "nonexplosive\n", + "nonfarm\n", + "nonfat\n", + "nonfatal\n", + "nonfattening\n", + "nonfictional\n", + "nonflammable\n", + "nonflowering\n", + "nonfluid\n", + "nonfluids\n", + "nonfocal\n", + "nonfood\n", + "nonfunctional\n", + "nongame\n", + "nongovernmental\n", + "nongraded\n", + "nongreen\n", + "nonguilt\n", + "nonguilts\n", + "nonhardy\n", + "nonhazardous\n", + "nonhereditary\n", + "nonhero\n", + "nonheroes\n", + "nonhuman\n", + "nonideal\n", + "nonindustrial\n", + "nonindustrialized\n", + "noninfectious\n", + "noninflationary\n", + "nonintegrated\n", + "nonintellectual\n", + "noninterference\n", + "nonintoxicating\n", + "noninvolvement\n", + "noninvolvements\n", + "nonionic\n", + "nonjuror\n", + "nonjurors\n", + "nonlegal\n", + "nonlethal\n", + "nonlife\n", + "nonliterary\n", + "nonlives\n", + "nonliving\n", + "nonlocal\n", + "nonlocals\n", + "nonmagnetic\n", + "nonmalignant\n", + "nonman\n", + "nonmedical\n", + "nonmember\n", + "nonmembers\n", + "nonmen\n", + "nonmetal\n", + "nonmetallic\n", + "nonmetals\n", + "nonmilitary\n", + "nonmodal\n", + "nonmoney\n", + "nonmoral\n", + "nonmusical\n", + "nonnarcotic\n", + "nonnative\n", + "nonnaval\n", + "nonnegotiable\n", + "nonobese\n", + "nonobjective\n", + "nonobservance\n", + "nonobservances\n", + "nonorthodox\n", + "nonowner\n", + "nonowners\n", + "nonpagan\n", + "nonpagans\n", + "nonpapal\n", + "nonpar\n", + "nonparallel\n", + "nonparametric\n", + "nonpareil\n", + "nonpareils\n", + "nonparticipant\n", + "nonparticipants\n", + "nonparticipating\n", + "nonpartisan\n", + "nonpartisans\n", + "nonparty\n", + "nonpaying\n", + "nonpayment\n", + "nonpayments\n", + "nonperformance\n", + "nonperformances\n", + "nonperishable\n", + "nonpermanent\n", + "nonperson\n", + "nonpersons\n", + "nonphysical\n", + "nonplus\n", + "nonplused\n", + "nonpluses\n", + "nonplusing\n", + "nonplussed\n", + "nonplusses\n", + "nonplussing\n", + "nonpoisonous\n", + "nonpolar\n", + "nonpolitical\n", + "nonpolluting\n", + "nonporous\n", + "nonpregnant\n", + "nonproductive\n", + "nonprofessional\n", + "nonprofit\n", + "nonproliferation\n", + "nonproliferations\n", + "nonpros\n", + "nonprossed\n", + "nonprosses\n", + "nonprossing\n", + "nonquota\n", + "nonracial\n", + "nonradioactive\n", + "nonrated\n", + "nonrealistic\n", + "nonrecoverable\n", + "nonrecurring\n", + "nonrefillable\n", + "nonrefundable\n", + "nonregistered\n", + "nonreligious\n", + "nonrenewable\n", + "nonrepresentative\n", + "nonresident\n", + "nonresidents\n", + "nonresponsive\n", + "nonrestricted\n", + "nonreusable\n", + "nonreversible\n", + "nonrigid\n", + "nonrival\n", + "nonrivals\n", + "nonroyal\n", + "nonrural\n", + "nonscheduled\n", + "nonscientific\n", + "nonscientist\n", + "nonscientists\n", + "nonsegregated\n", + "nonsense\n", + "nonsenses\n", + "nonsensical\n", + "nonsensically\n", + "nonsexist\n", + "nonsexual\n", + "nonsignificant\n", + "nonsked\n", + "nonskeds\n", + "nonskid\n", + "nonskier\n", + "nonskiers\n", + "nonslip\n", + "nonsmoker\n", + "nonsmokers\n", + "nonsmoking\n", + "nonsolar\n", + "nonsolid\n", + "nonsolids\n", + "nonspeaking\n", + "nonspecialist\n", + "nonspecialists\n", + "nonspecific\n", + "nonstaining\n", + "nonstandard\n", + "nonstick\n", + "nonstop\n", + "nonstrategic\n", + "nonstriker\n", + "nonstrikers\n", + "nonstriking\n", + "nonstudent\n", + "nonstudents\n", + "nonsubscriber\n", + "nonsuch\n", + "nonsuches\n", + "nonsugar\n", + "nonsugars\n", + "nonsuit\n", + "nonsuited\n", + "nonsuiting\n", + "nonsuits\n", + "nonsupport\n", + "nonsupports\n", + "nonsurgical\n", + "nonswimmer\n", + "nontax\n", + "nontaxable\n", + "nontaxes\n", + "nonteaching\n", + "nontechnical\n", + "nontidal\n", + "nontitle\n", + "nontoxic\n", + "nontraditional\n", + "nontransferable\n", + "nontropical\n", + "nontrump\n", + "nontruth\n", + "nontruths\n", + "nontypical\n", + "nonunion\n", + "nonunions\n", + "nonuple\n", + "nonuples\n", + "nonurban\n", + "nonuse\n", + "nonuser\n", + "nonusers\n", + "nonuses\n", + "nonusing\n", + "nonvenomous\n", + "nonverbal\n", + "nonviolence\n", + "nonviolences\n", + "nonviolent\n", + "nonviral\n", + "nonvocal\n", + "nonvoter\n", + "nonvoters\n", + "nonwhite\n", + "nonwhites\n", + "nonwoody\n", + "nonworker\n", + "nonworkers\n", + "nonwoven\n", + "nonzero\n", + "noo\n", + "noodle\n", + "noodled\n", + "noodles\n", + "noodling\n", + "nook\n", + "nookies\n", + "nooklike\n", + "nooks\n", + "nooky\n", + "noon\n", + "noonday\n", + "noondays\n", + "nooning\n", + "noonings\n", + "noons\n", + "noontide\n", + "noontides\n", + "noontime\n", + "noontimes\n", + "noose\n", + "noosed\n", + "nooser\n", + "noosers\n", + "nooses\n", + "noosing\n", + "nopal\n", + "nopals\n", + "nope\n", + "nor\n", + "noria\n", + "norias\n", + "norite\n", + "norites\n", + "noritic\n", + "norland\n", + "norlands\n", + "norm\n", + "normal\n", + "normalcies\n", + "normalcy\n", + "normalities\n", + "normality\n", + "normalization\n", + "normalizations\n", + "normalize\n", + "normalized\n", + "normalizes\n", + "normalizing\n", + "normally\n", + "normals\n", + "normed\n", + "normless\n", + "norms\n", + "north\n", + "northeast\n", + "northeasterly\n", + "northeastern\n", + "northeasts\n", + "norther\n", + "northerly\n", + "northern\n", + "northernmost\n", + "northerns\n", + "northers\n", + "northing\n", + "northings\n", + "norths\n", + "northward\n", + "northwards\n", + "northwest\n", + "northwesterly\n", + "northwestern\n", + "northwests\n", + "nos\n", + "nose\n", + "nosebag\n", + "nosebags\n", + "noseband\n", + "nosebands\n", + "nosebleed\n", + "nosebleeds\n", + "nosed\n", + "nosegay\n", + "nosegays\n", + "noseless\n", + "noselike\n", + "noses\n", + "nosey\n", + "nosh\n", + "noshed\n", + "nosher\n", + "noshers\n", + "noshes\n", + "noshing\n", + "nosier\n", + "nosiest\n", + "nosily\n", + "nosiness\n", + "nosinesses\n", + "nosing\n", + "nosings\n", + "nosologies\n", + "nosology\n", + "nostalgia\n", + "nostalgias\n", + "nostalgic\n", + "nostoc\n", + "nostocs\n", + "nostril\n", + "nostrils\n", + "nostrum\n", + "nostrums\n", + "nosy\n", + "not\n", + "nota\n", + "notabilities\n", + "notability\n", + "notable\n", + "notables\n", + "notably\n", + "notal\n", + "notarial\n", + "notaries\n", + "notarize\n", + "notarized\n", + "notarizes\n", + "notarizing\n", + "notary\n", + "notate\n", + "notated\n", + "notates\n", + "notating\n", + "notation\n", + "notations\n", + "notch\n", + "notched\n", + "notcher\n", + "notchers\n", + "notches\n", + "notching\n", + "note\n", + "notebook\n", + "notebooks\n", + "notecase\n", + "notecases\n", + "noted\n", + "notedly\n", + "noteless\n", + "noter\n", + "noters\n", + "notes\n", + "noteworthy\n", + "nothing\n", + "nothingness\n", + "nothingnesses\n", + "nothings\n", + "notice\n", + "noticeable\n", + "noticeably\n", + "noticed\n", + "notices\n", + "noticing\n", + "notification\n", + "notifications\n", + "notified\n", + "notifier\n", + "notifiers\n", + "notifies\n", + "notify\n", + "notifying\n", + "noting\n", + "notion\n", + "notional\n", + "notions\n", + "notorieties\n", + "notoriety\n", + "notorious\n", + "notoriously\n", + "notornis\n", + "notturni\n", + "notturno\n", + "notum\n", + "notwithstanding\n", + "nougat\n", + "nougats\n", + "nought\n", + "noughts\n", + "noumena\n", + "noumenal\n", + "noumenon\n", + "noun\n", + "nounal\n", + "nounally\n", + "nounless\n", + "nouns\n", + "nourish\n", + "nourished\n", + "nourishes\n", + "nourishing\n", + "nourishment\n", + "nourishments\n", + "nous\n", + "nouses\n", + "nova\n", + "novae\n", + "novalike\n", + "novas\n", + "novation\n", + "novations\n", + "novel\n", + "novelise\n", + "novelised\n", + "novelises\n", + "novelising\n", + "novelist\n", + "novelists\n", + "novelize\n", + "novelized\n", + "novelizes\n", + "novelizing\n", + "novella\n", + "novellas\n", + "novelle\n", + "novelly\n", + "novels\n", + "novelties\n", + "novelty\n", + "novena\n", + "novenae\n", + "novenas\n", + "novercal\n", + "novice\n", + "novices\n", + "now\n", + "nowadays\n", + "noway\n", + "noways\n", + "nowhere\n", + "nowheres\n", + "nowise\n", + "nows\n", + "nowt\n", + "nowts\n", + "noxious\n", + "noyade\n", + "noyades\n", + "nozzle\n", + "nozzles\n", + "nth\n", + "nu\n", + "nuance\n", + "nuanced\n", + "nuances\n", + "nub\n", + "nubbier\n", + "nubbiest\n", + "nubbin\n", + "nubbins\n", + "nubble\n", + "nubbles\n", + "nubblier\n", + "nubbliest\n", + "nubbly\n", + "nubby\n", + "nubia\n", + "nubias\n", + "nubile\n", + "nubilities\n", + "nubility\n", + "nubilose\n", + "nubilous\n", + "nubs\n", + "nucellar\n", + "nucelli\n", + "nucellus\n", + "nucha\n", + "nuchae\n", + "nuchal\n", + "nuchals\n", + "nucleal\n", + "nuclear\n", + "nuclease\n", + "nucleases\n", + "nucleate\n", + "nucleated\n", + "nucleates\n", + "nucleating\n", + "nuclei\n", + "nuclein\n", + "nucleins\n", + "nucleole\n", + "nucleoles\n", + "nucleoli\n", + "nucleon\n", + "nucleons\n", + "nucleus\n", + "nucleuses\n", + "nuclide\n", + "nuclides\n", + "nuclidic\n", + "nude\n", + "nudely\n", + "nudeness\n", + "nudenesses\n", + "nuder\n", + "nudes\n", + "nudest\n", + "nudge\n", + "nudged\n", + "nudger\n", + "nudgers\n", + "nudges\n", + "nudging\n", + "nudicaul\n", + "nudie\n", + "nudies\n", + "nudism\n", + "nudisms\n", + "nudist\n", + "nudists\n", + "nudities\n", + "nudity\n", + "nudnick\n", + "nudnicks\n", + "nudnik\n", + "nudniks\n", + "nugatory\n", + "nugget\n", + "nuggets\n", + "nuggety\n", + "nuisance\n", + "nuisances\n", + "nuke\n", + "nukes\n", + "null\n", + "nullah\n", + "nullahs\n", + "nulled\n", + "nullification\n", + "nullifications\n", + "nullified\n", + "nullifies\n", + "nullify\n", + "nullifying\n", + "nulling\n", + "nullities\n", + "nullity\n", + "nulls\n", + "numb\n", + "numbed\n", + "number\n", + "numbered\n", + "numberer\n", + "numberers\n", + "numbering\n", + "numberless\n", + "numbers\n", + "numbest\n", + "numbfish\n", + "numbfishes\n", + "numbing\n", + "numbles\n", + "numbly\n", + "numbness\n", + "numbnesses\n", + "numbs\n", + "numen\n", + "numeral\n", + "numerals\n", + "numerary\n", + "numerate\n", + "numerated\n", + "numerates\n", + "numerating\n", + "numerator\n", + "numerators\n", + "numeric\n", + "numerical\n", + "numerically\n", + "numerics\n", + "numerologies\n", + "numerologist\n", + "numerologists\n", + "numerology\n", + "numerous\n", + "numina\n", + "numinous\n", + "numinouses\n", + "numismatic\n", + "numismatics\n", + "numismatist\n", + "numismatists\n", + "nummary\n", + "nummular\n", + "numskull\n", + "numskulls\n", + "nun\n", + "nuncio\n", + "nuncios\n", + "nuncle\n", + "nuncles\n", + "nunlike\n", + "nunneries\n", + "nunnery\n", + "nunnish\n", + "nuns\n", + "nuptial\n", + "nuptials\n", + "nurl\n", + "nurled\n", + "nurling\n", + "nurls\n", + "nurse\n", + "nursed\n", + "nurseries\n", + "nursery\n", + "nurses\n", + "nursing\n", + "nursings\n", + "nursling\n", + "nurslings\n", + "nurture\n", + "nurtured\n", + "nurturer\n", + "nurturers\n", + "nurtures\n", + "nurturing\n", + "nus\n", + "nut\n", + "nutant\n", + "nutate\n", + "nutated\n", + "nutates\n", + "nutating\n", + "nutation\n", + "nutations\n", + "nutbrown\n", + "nutcracker\n", + "nutcrackers\n", + "nutgall\n", + "nutgalls\n", + "nutgrass\n", + "nutgrasses\n", + "nuthatch\n", + "nuthatches\n", + "nuthouse\n", + "nuthouses\n", + "nutlet\n", + "nutlets\n", + "nutlike\n", + "nutmeat\n", + "nutmeats\n", + "nutmeg\n", + "nutmegs\n", + "nutpick\n", + "nutpicks\n", + "nutria\n", + "nutrias\n", + "nutrient\n", + "nutrients\n", + "nutriment\n", + "nutriments\n", + "nutrition\n", + "nutritional\n", + "nutritions\n", + "nutritious\n", + "nutritive\n", + "nuts\n", + "nutsedge\n", + "nutsedges\n", + "nutshell\n", + "nutshells\n", + "nutted\n", + "nutter\n", + "nutters\n", + "nuttier\n", + "nuttiest\n", + "nuttily\n", + "nutting\n", + "nutty\n", + "nutwood\n", + "nutwoods\n", + "nuzzle\n", + "nuzzled\n", + "nuzzles\n", + "nuzzling\n", + "nyala\n", + "nyalas\n", + "nylghai\n", + "nylghais\n", + "nylghau\n", + "nylghaus\n", + "nylon\n", + "nylons\n", + "nymph\n", + "nympha\n", + "nymphae\n", + "nymphal\n", + "nymphean\n", + "nymphet\n", + "nymphets\n", + "nympho\n", + "nymphomania\n", + "nymphomaniac\n", + "nymphomanias\n", + "nymphos\n", + "nymphs\n", + "oaf\n", + "oafish\n", + "oafishly\n", + "oafs\n", + "oak\n", + "oaken\n", + "oaklike\n", + "oakmoss\n", + "oakmosses\n", + "oaks\n", + "oakum\n", + "oakums\n", + "oar\n", + "oared\n", + "oarfish\n", + "oarfishes\n", + "oaring\n", + "oarless\n", + "oarlike\n", + "oarlock\n", + "oarlocks\n", + "oars\n", + "oarsman\n", + "oarsmen\n", + "oases\n", + "oasis\n", + "oast\n", + "oasts\n", + "oat\n", + "oatcake\n", + "oatcakes\n", + "oaten\n", + "oater\n", + "oaters\n", + "oath\n", + "oaths\n", + "oatlike\n", + "oatmeal\n", + "oatmeals\n", + "oats\n", + "oaves\n", + "obduracies\n", + "obduracy\n", + "obdurate\n", + "obe\n", + "obeah\n", + "obeahism\n", + "obeahisms\n", + "obeahs\n", + "obedience\n", + "obediences\n", + "obedient\n", + "obediently\n", + "obeisance\n", + "obeisant\n", + "obeli\n", + "obelia\n", + "obelias\n", + "obelise\n", + "obelised\n", + "obelises\n", + "obelising\n", + "obelisk\n", + "obelisks\n", + "obelism\n", + "obelisms\n", + "obelize\n", + "obelized\n", + "obelizes\n", + "obelizing\n", + "obelus\n", + "obes\n", + "obese\n", + "obesely\n", + "obesities\n", + "obesity\n", + "obey\n", + "obeyable\n", + "obeyed\n", + "obeyer\n", + "obeyers\n", + "obeying\n", + "obeys\n", + "obfuscate\n", + "obfuscated\n", + "obfuscates\n", + "obfuscating\n", + "obfuscation\n", + "obfuscations\n", + "obi\n", + "obia\n", + "obias\n", + "obiism\n", + "obiisms\n", + "obis\n", + "obit\n", + "obits\n", + "obituaries\n", + "obituary\n", + "object\n", + "objected\n", + "objecting\n", + "objection\n", + "objectionable\n", + "objections\n", + "objective\n", + "objectively\n", + "objectiveness\n", + "objectivenesses\n", + "objectives\n", + "objectivities\n", + "objectivity\n", + "objector\n", + "objectors\n", + "objects\n", + "oblast\n", + "oblasti\n", + "oblasts\n", + "oblate\n", + "oblately\n", + "oblates\n", + "oblation\n", + "oblations\n", + "oblatory\n", + "obligate\n", + "obligated\n", + "obligates\n", + "obligati\n", + "obligating\n", + "obligation\n", + "obligations\n", + "obligato\n", + "obligatory\n", + "obligatos\n", + "oblige\n", + "obliged\n", + "obligee\n", + "obligees\n", + "obliger\n", + "obligers\n", + "obliges\n", + "obliging\n", + "obligingly\n", + "obligor\n", + "obligors\n", + "oblique\n", + "obliqued\n", + "obliquely\n", + "obliqueness\n", + "obliquenesses\n", + "obliques\n", + "obliquing\n", + "obliquities\n", + "obliquity\n", + "obliterate\n", + "obliterated\n", + "obliterates\n", + "obliterating\n", + "obliteration\n", + "obliterations\n", + "oblivion\n", + "oblivions\n", + "oblivious\n", + "obliviously\n", + "obliviousness\n", + "obliviousnesses\n", + "oblong\n", + "oblongly\n", + "oblongs\n", + "obloquies\n", + "obloquy\n", + "obnoxious\n", + "obnoxiously\n", + "obnoxiousness\n", + "obnoxiousnesses\n", + "oboe\n", + "oboes\n", + "oboist\n", + "oboists\n", + "obol\n", + "obole\n", + "oboles\n", + "oboli\n", + "obols\n", + "obolus\n", + "obovate\n", + "obovoid\n", + "obscene\n", + "obscenely\n", + "obscener\n", + "obscenest\n", + "obscenities\n", + "obscenity\n", + "obscure\n", + "obscured\n", + "obscurely\n", + "obscurer\n", + "obscures\n", + "obscurest\n", + "obscuring\n", + "obscurities\n", + "obscurity\n", + "obsequies\n", + "obsequious\n", + "obsequiously\n", + "obsequiousness\n", + "obsequiousnesses\n", + "obsequy\n", + "observance\n", + "observances\n", + "observant\n", + "observation\n", + "observations\n", + "observatories\n", + "observatory\n", + "observe\n", + "observed\n", + "observer\n", + "observers\n", + "observes\n", + "observing\n", + "obsess\n", + "obsessed\n", + "obsesses\n", + "obsessing\n", + "obsession\n", + "obsessions\n", + "obsessive\n", + "obsessively\n", + "obsessor\n", + "obsessors\n", + "obsidian\n", + "obsidians\n", + "obsolescence\n", + "obsolescences\n", + "obsolescent\n", + "obsolete\n", + "obsoleted\n", + "obsoletes\n", + "obsoleting\n", + "obstacle\n", + "obstacles\n", + "obstetrical\n", + "obstetrician\n", + "obstetricians\n", + "obstetrics\n", + "obstinacies\n", + "obstinacy\n", + "obstinate\n", + "obstinately\n", + "obstreperous\n", + "obstreperousness\n", + "obstreperousnesses\n", + "obstruct\n", + "obstructed\n", + "obstructing\n", + "obstruction\n", + "obstructions\n", + "obstructive\n", + "obstructor\n", + "obstructors\n", + "obstructs\n", + "obtain\n", + "obtainable\n", + "obtained\n", + "obtainer\n", + "obtainers\n", + "obtaining\n", + "obtains\n", + "obtect\n", + "obtected\n", + "obtest\n", + "obtested\n", + "obtesting\n", + "obtests\n", + "obtrude\n", + "obtruded\n", + "obtruder\n", + "obtruders\n", + "obtrudes\n", + "obtruding\n", + "obtrusion\n", + "obtrusions\n", + "obtrusive\n", + "obtrusively\n", + "obtrusiveness\n", + "obtrusivenesses\n", + "obtund\n", + "obtunded\n", + "obtunding\n", + "obtunds\n", + "obturate\n", + "obturated\n", + "obturates\n", + "obturating\n", + "obtuse\n", + "obtusely\n", + "obtuser\n", + "obtusest\n", + "obverse\n", + "obverses\n", + "obvert\n", + "obverted\n", + "obverting\n", + "obverts\n", + "obviable\n", + "obviate\n", + "obviated\n", + "obviates\n", + "obviating\n", + "obviation\n", + "obviations\n", + "obviator\n", + "obviators\n", + "obvious\n", + "obviously\n", + "obviousness\n", + "obviousnesses\n", + "obvolute\n", + "oca\n", + "ocarina\n", + "ocarinas\n", + "ocas\n", + "occasion\n", + "occasional\n", + "occasionally\n", + "occasioned\n", + "occasioning\n", + "occasions\n", + "occident\n", + "occidental\n", + "occidents\n", + "occipita\n", + "occiput\n", + "occiputs\n", + "occlude\n", + "occluded\n", + "occludes\n", + "occluding\n", + "occlusal\n", + "occult\n", + "occulted\n", + "occulter\n", + "occulters\n", + "occulting\n", + "occultly\n", + "occults\n", + "occupancies\n", + "occupancy\n", + "occupant\n", + "occupants\n", + "occupation\n", + "occupational\n", + "occupationally\n", + "occupations\n", + "occupied\n", + "occupier\n", + "occupiers\n", + "occupies\n", + "occupy\n", + "occupying\n", + "occur\n", + "occurence\n", + "occurences\n", + "occurred\n", + "occurrence\n", + "occurrences\n", + "occurring\n", + "occurs\n", + "ocean\n", + "oceanfront\n", + "oceanfronts\n", + "oceangoing\n", + "oceanic\n", + "oceanographer\n", + "oceanographers\n", + "oceanographic\n", + "oceanographies\n", + "oceanography\n", + "oceans\n", + "ocellar\n", + "ocellate\n", + "ocelli\n", + "ocellus\n", + "oceloid\n", + "ocelot\n", + "ocelots\n", + "ocher\n", + "ochered\n", + "ochering\n", + "ocherous\n", + "ochers\n", + "ochery\n", + "ochone\n", + "ochre\n", + "ochrea\n", + "ochreae\n", + "ochred\n", + "ochreous\n", + "ochres\n", + "ochring\n", + "ochroid\n", + "ochrous\n", + "ochry\n", + "ocotillo\n", + "ocotillos\n", + "ocrea\n", + "ocreae\n", + "ocreate\n", + "octad\n", + "octadic\n", + "octads\n", + "octagon\n", + "octagonal\n", + "octagons\n", + "octal\n", + "octane\n", + "octanes\n", + "octangle\n", + "octangles\n", + "octant\n", + "octantal\n", + "octants\n", + "octarchies\n", + "octarchy\n", + "octaval\n", + "octave\n", + "octaves\n", + "octavo\n", + "octavos\n", + "octet\n", + "octets\n", + "octette\n", + "octettes\n", + "octonaries\n", + "octonary\n", + "octopi\n", + "octopod\n", + "octopodes\n", + "octopods\n", + "octopus\n", + "octopuses\n", + "octoroon\n", + "octoroons\n", + "octroi\n", + "octrois\n", + "octuple\n", + "octupled\n", + "octuples\n", + "octuplet\n", + "octuplets\n", + "octuplex\n", + "octupling\n", + "octuply\n", + "octyl\n", + "octyls\n", + "ocular\n", + "ocularly\n", + "oculars\n", + "oculist\n", + "oculists\n", + "od\n", + "odalisk\n", + "odalisks\n", + "odd\n", + "oddball\n", + "oddballs\n", + "odder\n", + "oddest\n", + "oddish\n", + "oddities\n", + "oddity\n", + "oddly\n", + "oddment\n", + "oddments\n", + "oddness\n", + "oddnesses\n", + "odds\n", + "ode\n", + "odea\n", + "odeon\n", + "odeons\n", + "odes\n", + "odeum\n", + "odic\n", + "odious\n", + "odiously\n", + "odiousness\n", + "odiousnesses\n", + "odium\n", + "odiums\n", + "odograph\n", + "odographs\n", + "odometer\n", + "odometers\n", + "odometries\n", + "odometry\n", + "odonate\n", + "odonates\n", + "odontoid\n", + "odontoids\n", + "odor\n", + "odorant\n", + "odorants\n", + "odored\n", + "odorful\n", + "odorize\n", + "odorized\n", + "odorizes\n", + "odorizing\n", + "odorless\n", + "odorous\n", + "odors\n", + "odour\n", + "odourful\n", + "odours\n", + "ods\n", + "odyl\n", + "odyle\n", + "odyles\n", + "odyls\n", + "odyssey\n", + "odysseys\n", + "oe\n", + "oecologies\n", + "oecology\n", + "oedema\n", + "oedemas\n", + "oedemata\n", + "oedipal\n", + "oedipean\n", + "oeillade\n", + "oeillades\n", + "oenologies\n", + "oenology\n", + "oenomel\n", + "oenomels\n", + "oersted\n", + "oersteds\n", + "oes\n", + "oestrin\n", + "oestrins\n", + "oestriol\n", + "oestriols\n", + "oestrone\n", + "oestrones\n", + "oestrous\n", + "oestrum\n", + "oestrums\n", + "oestrus\n", + "oestruses\n", + "oeuvre\n", + "oeuvres\n", + "of\n", + "ofay\n", + "ofays\n", + "off\n", + "offal\n", + "offals\n", + "offbeat\n", + "offbeats\n", + "offcast\n", + "offcasts\n", + "offed\n", + "offence\n", + "offences\n", + "offend\n", + "offended\n", + "offender\n", + "offenders\n", + "offending\n", + "offends\n", + "offense\n", + "offenses\n", + "offensive\n", + "offensively\n", + "offensiveness\n", + "offensivenesses\n", + "offensives\n", + "offer\n", + "offered\n", + "offerer\n", + "offerers\n", + "offering\n", + "offerings\n", + "offeror\n", + "offerors\n", + "offers\n", + "offertories\n", + "offertory\n", + "offhand\n", + "office\n", + "officeholder\n", + "officeholders\n", + "officer\n", + "officered\n", + "officering\n", + "officers\n", + "offices\n", + "official\n", + "officialdom\n", + "officialdoms\n", + "officially\n", + "officials\n", + "officiate\n", + "officiated\n", + "officiates\n", + "officiating\n", + "officious\n", + "officiously\n", + "officiousness\n", + "officiousnesses\n", + "offing\n", + "offings\n", + "offish\n", + "offishly\n", + "offload\n", + "offloaded\n", + "offloading\n", + "offloads\n", + "offprint\n", + "offprinted\n", + "offprinting\n", + "offprints\n", + "offs\n", + "offset\n", + "offsets\n", + "offsetting\n", + "offshoot\n", + "offshoots\n", + "offshore\n", + "offside\n", + "offspring\n", + "offstage\n", + "oft\n", + "often\n", + "oftener\n", + "oftenest\n", + "oftentimes\n", + "ofter\n", + "oftest\n", + "ofttimes\n", + "ogam\n", + "ogams\n", + "ogdoad\n", + "ogdoads\n", + "ogee\n", + "ogees\n", + "ogham\n", + "oghamic\n", + "oghamist\n", + "oghamists\n", + "oghams\n", + "ogival\n", + "ogive\n", + "ogives\n", + "ogle\n", + "ogled\n", + "ogler\n", + "oglers\n", + "ogles\n", + "ogling\n", + "ogre\n", + "ogreish\n", + "ogreism\n", + "ogreisms\n", + "ogres\n", + "ogress\n", + "ogresses\n", + "ogrish\n", + "ogrishly\n", + "ogrism\n", + "ogrisms\n", + "oh\n", + "ohed\n", + "ohia\n", + "ohias\n", + "ohing\n", + "ohm\n", + "ohmage\n", + "ohmages\n", + "ohmic\n", + "ohmmeter\n", + "ohmmeters\n", + "ohms\n", + "oho\n", + "ohs\n", + "oidia\n", + "oidium\n", + "oil\n", + "oilbird\n", + "oilbirds\n", + "oilcamp\n", + "oilcamps\n", + "oilcan\n", + "oilcans\n", + "oilcloth\n", + "oilcloths\n", + "oilcup\n", + "oilcups\n", + "oiled\n", + "oiler\n", + "oilers\n", + "oilhole\n", + "oilholes\n", + "oilier\n", + "oiliest\n", + "oilily\n", + "oiliness\n", + "oilinesses\n", + "oiling\n", + "oilman\n", + "oilmen\n", + "oilpaper\n", + "oilpapers\n", + "oilproof\n", + "oils\n", + "oilseed\n", + "oilseeds\n", + "oilskin\n", + "oilskins\n", + "oilstone\n", + "oilstones\n", + "oiltight\n", + "oilway\n", + "oilways\n", + "oily\n", + "oink\n", + "oinked\n", + "oinking\n", + "oinks\n", + "oinologies\n", + "oinology\n", + "oinomel\n", + "oinomels\n", + "ointment\n", + "ointments\n", + "oiticica\n", + "oiticicas\n", + "oka\n", + "okapi\n", + "okapis\n", + "okas\n", + "okay\n", + "okayed\n", + "okaying\n", + "okays\n", + "oke\n", + "okeh\n", + "okehs\n", + "okes\n", + "okeydoke\n", + "okra\n", + "okras\n", + "old\n", + "olden\n", + "older\n", + "oldest\n", + "oldie\n", + "oldies\n", + "oldish\n", + "oldness\n", + "oldnesses\n", + "olds\n", + "oldster\n", + "oldsters\n", + "oldstyle\n", + "oldstyles\n", + "oldwife\n", + "oldwives\n", + "ole\n", + "olea\n", + "oleander\n", + "oleanders\n", + "oleaster\n", + "oleasters\n", + "oleate\n", + "oleates\n", + "olefin\n", + "olefine\n", + "olefines\n", + "olefinic\n", + "olefins\n", + "oleic\n", + "olein\n", + "oleine\n", + "oleines\n", + "oleins\n", + "oleo\n", + "oleomargarine\n", + "oleomargarines\n", + "oleos\n", + "oles\n", + "oleum\n", + "oleums\n", + "olfactory\n", + "olibanum\n", + "olibanums\n", + "oligarch\n", + "oligarchic\n", + "oligarchical\n", + "oligarchies\n", + "oligarchs\n", + "oligarchy\n", + "oligomer\n", + "oligomers\n", + "olio\n", + "olios\n", + "olivary\n", + "olive\n", + "olives\n", + "olivine\n", + "olivines\n", + "olivinic\n", + "olla\n", + "ollas\n", + "ologies\n", + "ologist\n", + "ologists\n", + "ology\n", + "olympiad\n", + "olympiads\n", + "om\n", + "omasa\n", + "omasum\n", + "omber\n", + "ombers\n", + "ombre\n", + "ombres\n", + "ombudsman\n", + "ombudsmen\n", + "omega\n", + "omegas\n", + "omelet\n", + "omelets\n", + "omelette\n", + "omelettes\n", + "omen\n", + "omened\n", + "omening\n", + "omens\n", + "omenta\n", + "omental\n", + "omentum\n", + "omentums\n", + "omer\n", + "omers\n", + "omicron\n", + "omicrons\n", + "omikron\n", + "omikrons\n", + "ominous\n", + "ominously\n", + "ominousness\n", + "ominousnesses\n", + "omission\n", + "omissions\n", + "omissive\n", + "omit\n", + "omits\n", + "omitted\n", + "omitting\n", + "omniarch\n", + "omniarchs\n", + "omnibus\n", + "omnibuses\n", + "omnific\n", + "omniform\n", + "omnimode\n", + "omnipotence\n", + "omnipotences\n", + "omnipotent\n", + "omnipotently\n", + "omnipresence\n", + "omnipresences\n", + "omnipresent\n", + "omniscience\n", + "omnisciences\n", + "omniscient\n", + "omnisciently\n", + "omnivora\n", + "omnivore\n", + "omnivores\n", + "omnivorous\n", + "omnivorously\n", + "omnivorousness\n", + "omnivorousnesses\n", + "omophagies\n", + "omophagy\n", + "omphali\n", + "omphalos\n", + "oms\n", + "on\n", + "onager\n", + "onagers\n", + "onagri\n", + "onanism\n", + "onanisms\n", + "onanist\n", + "onanists\n", + "once\n", + "onces\n", + "oncidium\n", + "oncidiums\n", + "oncologic\n", + "oncologies\n", + "oncologist\n", + "oncologists\n", + "oncology\n", + "oncoming\n", + "oncomings\n", + "ondogram\n", + "ondograms\n", + "one\n", + "onefold\n", + "oneiric\n", + "oneness\n", + "onenesses\n", + "onerier\n", + "oneriest\n", + "onerous\n", + "onery\n", + "ones\n", + "oneself\n", + "onetime\n", + "ongoing\n", + "onion\n", + "onions\n", + "onium\n", + "onlooker\n", + "onlookers\n", + "only\n", + "onomatopoeia\n", + "onrush\n", + "onrushes\n", + "ons\n", + "onset\n", + "onsets\n", + "onshore\n", + "onside\n", + "onslaught\n", + "onslaughts\n", + "onstage\n", + "ontic\n", + "onto\n", + "ontogenies\n", + "ontogeny\n", + "ontologies\n", + "ontology\n", + "onus\n", + "onuses\n", + "onward\n", + "onwards\n", + "onyx\n", + "onyxes\n", + "oocyst\n", + "oocysts\n", + "oocyte\n", + "oocytes\n", + "oodles\n", + "oodlins\n", + "oogamete\n", + "oogametes\n", + "oogamies\n", + "oogamous\n", + "oogamy\n", + "oogenies\n", + "oogeny\n", + "oogonia\n", + "oogonial\n", + "oogonium\n", + "oogoniums\n", + "ooh\n", + "oohed\n", + "oohing\n", + "oohs\n", + "oolachan\n", + "oolachans\n", + "oolite\n", + "oolites\n", + "oolith\n", + "ooliths\n", + "oolitic\n", + "oologic\n", + "oologies\n", + "oologist\n", + "oologists\n", + "oology\n", + "oolong\n", + "oolongs\n", + "oomiac\n", + "oomiack\n", + "oomiacks\n", + "oomiacs\n", + "oomiak\n", + "oomiaks\n", + "oomph\n", + "oomphs\n", + "oophorectomy\n", + "oophyte\n", + "oophytes\n", + "oophytic\n", + "oops\n", + "oorali\n", + "ooralis\n", + "oorie\n", + "oosperm\n", + "oosperms\n", + "oosphere\n", + "oospheres\n", + "oospore\n", + "oospores\n", + "oosporic\n", + "oot\n", + "ootheca\n", + "oothecae\n", + "oothecal\n", + "ootid\n", + "ootids\n", + "oots\n", + "ooze\n", + "oozed\n", + "oozes\n", + "oozier\n", + "ooziest\n", + "oozily\n", + "ooziness\n", + "oozinesses\n", + "oozing\n", + "oozy\n", + "op\n", + "opacified\n", + "opacifies\n", + "opacify\n", + "opacifying\n", + "opacities\n", + "opacity\n", + "opah\n", + "opahs\n", + "opal\n", + "opalesce\n", + "opalesced\n", + "opalesces\n", + "opalescing\n", + "opaline\n", + "opalines\n", + "opals\n", + "opaque\n", + "opaqued\n", + "opaquely\n", + "opaqueness\n", + "opaquenesses\n", + "opaquer\n", + "opaques\n", + "opaquest\n", + "opaquing\n", + "ope\n", + "oped\n", + "open\n", + "openable\n", + "opened\n", + "opener\n", + "openers\n", + "openest\n", + "openhanded\n", + "opening\n", + "openings\n", + "openly\n", + "openness\n", + "opennesses\n", + "opens\n", + "openwork\n", + "openworks\n", + "opera\n", + "operable\n", + "operably\n", + "operand\n", + "operands\n", + "operant\n", + "operants\n", + "operas\n", + "operate\n", + "operated\n", + "operates\n", + "operatic\n", + "operatics\n", + "operating\n", + "operation\n", + "operational\n", + "operationally\n", + "operations\n", + "operative\n", + "operator\n", + "operators\n", + "opercele\n", + "operceles\n", + "opercula\n", + "opercule\n", + "opercules\n", + "operetta\n", + "operettas\n", + "operon\n", + "operons\n", + "operose\n", + "opes\n", + "ophidian\n", + "ophidians\n", + "ophite\n", + "ophites\n", + "ophitic\n", + "ophthalmologies\n", + "ophthalmologist\n", + "ophthalmologists\n", + "ophthalmology\n", + "opiate\n", + "opiated\n", + "opiates\n", + "opiating\n", + "opine\n", + "opined\n", + "opines\n", + "oping\n", + "opining\n", + "opinion\n", + "opinionated\n", + "opinions\n", + "opium\n", + "opiumism\n", + "opiumisms\n", + "opiums\n", + "opossum\n", + "opossums\n", + "oppidan\n", + "oppidans\n", + "oppilant\n", + "oppilate\n", + "oppilated\n", + "oppilates\n", + "oppilating\n", + "opponent\n", + "opponents\n", + "opportune\n", + "opportunely\n", + "opportunism\n", + "opportunisms\n", + "opportunist\n", + "opportunistic\n", + "opportunists\n", + "opportunities\n", + "opportunity\n", + "oppose\n", + "opposed\n", + "opposer\n", + "opposers\n", + "opposes\n", + "opposing\n", + "opposite\n", + "oppositely\n", + "oppositeness\n", + "oppositenesses\n", + "opposites\n", + "opposition\n", + "oppositions\n", + "oppress\n", + "oppressed\n", + "oppresses\n", + "oppressing\n", + "oppression\n", + "oppressions\n", + "oppressive\n", + "oppressively\n", + "oppressor\n", + "oppressors\n", + "opprobrious\n", + "opprobriously\n", + "opprobrium\n", + "opprobriums\n", + "oppugn\n", + "oppugned\n", + "oppugner\n", + "oppugners\n", + "oppugning\n", + "oppugns\n", + "ops\n", + "opsin\n", + "opsins\n", + "opsonic\n", + "opsonified\n", + "opsonifies\n", + "opsonify\n", + "opsonifying\n", + "opsonin\n", + "opsonins\n", + "opsonize\n", + "opsonized\n", + "opsonizes\n", + "opsonizing\n", + "opt\n", + "optative\n", + "optatives\n", + "opted\n", + "optic\n", + "optical\n", + "optician\n", + "opticians\n", + "opticist\n", + "opticists\n", + "optics\n", + "optima\n", + "optimal\n", + "optimally\n", + "optime\n", + "optimes\n", + "optimise\n", + "optimised\n", + "optimises\n", + "optimising\n", + "optimism\n", + "optimisms\n", + "optimist\n", + "optimistic\n", + "optimistically\n", + "optimists\n", + "optimize\n", + "optimized\n", + "optimizes\n", + "optimizing\n", + "optimum\n", + "optimums\n", + "opting\n", + "option\n", + "optional\n", + "optionally\n", + "optionals\n", + "optioned\n", + "optionee\n", + "optionees\n", + "optioning\n", + "options\n", + "optometries\n", + "optometrist\n", + "optometry\n", + "opts\n", + "opulence\n", + "opulences\n", + "opulencies\n", + "opulency\n", + "opulent\n", + "opuntia\n", + "opuntias\n", + "opus\n", + "opuscula\n", + "opuscule\n", + "opuscules\n", + "opuses\n", + "oquassa\n", + "oquassas\n", + "or\n", + "ora\n", + "orach\n", + "orache\n", + "oraches\n", + "oracle\n", + "oracles\n", + "oracular\n", + "oral\n", + "oralities\n", + "orality\n", + "orally\n", + "orals\n", + "orang\n", + "orange\n", + "orangeade\n", + "orangeades\n", + "orangeries\n", + "orangery\n", + "oranges\n", + "orangey\n", + "orangier\n", + "orangiest\n", + "orangish\n", + "orangoutan\n", + "orangoutans\n", + "orangs\n", + "orangutan\n", + "orangutang\n", + "orangutangs\n", + "orangutans\n", + "orangy\n", + "orate\n", + "orated\n", + "orates\n", + "orating\n", + "oration\n", + "orations\n", + "orator\n", + "oratorical\n", + "oratories\n", + "oratorio\n", + "oratorios\n", + "orators\n", + "oratory\n", + "oratress\n", + "oratresses\n", + "oratrices\n", + "oratrix\n", + "orb\n", + "orbed\n", + "orbicular\n", + "orbing\n", + "orbit\n", + "orbital\n", + "orbitals\n", + "orbited\n", + "orbiter\n", + "orbiters\n", + "orbiting\n", + "orbits\n", + "orbs\n", + "orc\n", + "orca\n", + "orcas\n", + "orcein\n", + "orceins\n", + "orchard\n", + "orchardist\n", + "orchardists\n", + "orchards\n", + "orchestra\n", + "orchestral\n", + "orchestras\n", + "orchestrate\n", + "orchestrated\n", + "orchestrates\n", + "orchestrating\n", + "orchestration\n", + "orchestrations\n", + "orchid\n", + "orchids\n", + "orchiectomy\n", + "orchil\n", + "orchils\n", + "orchis\n", + "orchises\n", + "orchitic\n", + "orchitis\n", + "orchitises\n", + "orcin\n", + "orcinol\n", + "orcinols\n", + "orcins\n", + "orcs\n", + "ordain\n", + "ordained\n", + "ordainer\n", + "ordainers\n", + "ordaining\n", + "ordains\n", + "ordeal\n", + "ordeals\n", + "order\n", + "ordered\n", + "orderer\n", + "orderers\n", + "ordering\n", + "orderlies\n", + "orderliness\n", + "orderlinesses\n", + "orderly\n", + "orders\n", + "ordinal\n", + "ordinals\n", + "ordinance\n", + "ordinances\n", + "ordinand\n", + "ordinands\n", + "ordinarier\n", + "ordinaries\n", + "ordinariest\n", + "ordinarily\n", + "ordinary\n", + "ordinate\n", + "ordinates\n", + "ordination\n", + "ordinations\n", + "ordines\n", + "ordnance\n", + "ordnances\n", + "ordo\n", + "ordos\n", + "ordure\n", + "ordures\n", + "ore\n", + "oread\n", + "oreads\n", + "orectic\n", + "orective\n", + "oregano\n", + "oreganos\n", + "oreide\n", + "oreides\n", + "ores\n", + "orfray\n", + "orfrays\n", + "organ\n", + "organa\n", + "organdie\n", + "organdies\n", + "organdy\n", + "organic\n", + "organically\n", + "organics\n", + "organise\n", + "organised\n", + "organises\n", + "organising\n", + "organism\n", + "organisms\n", + "organist\n", + "organists\n", + "organization\n", + "organizational\n", + "organizationally\n", + "organizations\n", + "organize\n", + "organized\n", + "organizer\n", + "organizers\n", + "organizes\n", + "organizing\n", + "organon\n", + "organons\n", + "organs\n", + "organum\n", + "organums\n", + "organza\n", + "organzas\n", + "orgasm\n", + "orgasmic\n", + "orgasms\n", + "orgastic\n", + "orgeat\n", + "orgeats\n", + "orgiac\n", + "orgic\n", + "orgies\n", + "orgulous\n", + "orgy\n", + "oribatid\n", + "oribatids\n", + "oribi\n", + "oribis\n", + "oriel\n", + "oriels\n", + "orient\n", + "oriental\n", + "orientals\n", + "orientation\n", + "orientations\n", + "oriented\n", + "orienting\n", + "orients\n", + "orifice\n", + "orifices\n", + "origami\n", + "origamis\n", + "origan\n", + "origans\n", + "origanum\n", + "origanums\n", + "origin\n", + "original\n", + "originalities\n", + "originality\n", + "originally\n", + "originals\n", + "originate\n", + "originated\n", + "originates\n", + "originating\n", + "originator\n", + "originators\n", + "origins\n", + "orinasal\n", + "orinasals\n", + "oriole\n", + "orioles\n", + "orison\n", + "orisons\n", + "orle\n", + "orles\n", + "orlop\n", + "orlops\n", + "ormer\n", + "ormers\n", + "ormolu\n", + "ormolus\n", + "ornament\n", + "ornamental\n", + "ornamentation\n", + "ornamentations\n", + "ornamented\n", + "ornamenting\n", + "ornaments\n", + "ornate\n", + "ornately\n", + "ornateness\n", + "ornatenesses\n", + "ornerier\n", + "orneriest\n", + "ornery\n", + "ornis\n", + "ornithes\n", + "ornithic\n", + "ornithological\n", + "ornithologist\n", + "ornithologists\n", + "ornithology\n", + "orogenic\n", + "orogenies\n", + "orogeny\n", + "oroide\n", + "oroides\n", + "orologies\n", + "orology\n", + "orometer\n", + "orometers\n", + "orotund\n", + "orphan\n", + "orphanage\n", + "orphanages\n", + "orphaned\n", + "orphaning\n", + "orphans\n", + "orphic\n", + "orphical\n", + "orphrey\n", + "orphreys\n", + "orpiment\n", + "orpiments\n", + "orpin\n", + "orpine\n", + "orpines\n", + "orpins\n", + "orra\n", + "orreries\n", + "orrery\n", + "orrice\n", + "orrices\n", + "orris\n", + "orrises\n", + "ors\n", + "ort\n", + "orthicon\n", + "orthicons\n", + "ortho\n", + "orthodontia\n", + "orthodontics\n", + "orthodontist\n", + "orthodontists\n", + "orthodox\n", + "orthodoxes\n", + "orthodoxies\n", + "orthodoxy\n", + "orthoepies\n", + "orthoepy\n", + "orthogonal\n", + "orthographic\n", + "orthographies\n", + "orthography\n", + "orthopedic\n", + "orthopedics\n", + "orthopedist\n", + "orthopedists\n", + "orthotic\n", + "ortolan\n", + "ortolans\n", + "orts\n", + "oryx\n", + "oryxes\n", + "os\n", + "osar\n", + "oscillate\n", + "oscillated\n", + "oscillates\n", + "oscillating\n", + "oscillation\n", + "oscillations\n", + "oscine\n", + "oscines\n", + "oscinine\n", + "oscitant\n", + "oscula\n", + "osculant\n", + "oscular\n", + "osculate\n", + "osculated\n", + "osculates\n", + "osculating\n", + "oscule\n", + "oscules\n", + "osculum\n", + "ose\n", + "oses\n", + "osier\n", + "osiers\n", + "osmatic\n", + "osmic\n", + "osmious\n", + "osmium\n", + "osmiums\n", + "osmol\n", + "osmolal\n", + "osmolar\n", + "osmols\n", + "osmose\n", + "osmosed\n", + "osmoses\n", + "osmosing\n", + "osmosis\n", + "osmotic\n", + "osmous\n", + "osmund\n", + "osmunda\n", + "osmundas\n", + "osmunds\n", + "osnaburg\n", + "osnaburgs\n", + "osprey\n", + "ospreys\n", + "ossa\n", + "ossein\n", + "osseins\n", + "osseous\n", + "ossia\n", + "ossicle\n", + "ossicles\n", + "ossific\n", + "ossified\n", + "ossifier\n", + "ossifiers\n", + "ossifies\n", + "ossify\n", + "ossifying\n", + "ossuaries\n", + "ossuary\n", + "osteal\n", + "osteitic\n", + "osteitides\n", + "osteitis\n", + "ostensible\n", + "ostensibly\n", + "ostentation\n", + "ostentations\n", + "ostentatious\n", + "ostentatiously\n", + "osteoblast\n", + "osteoblasts\n", + "osteoid\n", + "osteoids\n", + "osteoma\n", + "osteomas\n", + "osteomata\n", + "osteopath\n", + "osteopathic\n", + "osteopathies\n", + "osteopaths\n", + "osteopathy\n", + "osteopenia\n", + "ostia\n", + "ostiaries\n", + "ostiary\n", + "ostinato\n", + "ostinatos\n", + "ostiolar\n", + "ostiole\n", + "ostioles\n", + "ostium\n", + "ostler\n", + "ostlers\n", + "ostmark\n", + "ostmarks\n", + "ostomies\n", + "ostomy\n", + "ostoses\n", + "ostosis\n", + "ostosises\n", + "ostracism\n", + "ostracisms\n", + "ostracize\n", + "ostracized\n", + "ostracizes\n", + "ostracizing\n", + "ostracod\n", + "ostracods\n", + "ostrich\n", + "ostriches\n", + "ostsis\n", + "ostsises\n", + "otalgia\n", + "otalgias\n", + "otalgic\n", + "otalgies\n", + "otalgy\n", + "other\n", + "others\n", + "otherwise\n", + "otic\n", + "otiose\n", + "otiosely\n", + "otiosities\n", + "otiosity\n", + "otitic\n", + "otitides\n", + "otitis\n", + "otocyst\n", + "otocysts\n", + "otolith\n", + "otoliths\n", + "otologies\n", + "otology\n", + "otoscope\n", + "otoscopes\n", + "otoscopies\n", + "otoscopy\n", + "ototoxicities\n", + "ototoxicity\n", + "ottar\n", + "ottars\n", + "ottava\n", + "ottavas\n", + "otter\n", + "otters\n", + "otto\n", + "ottoman\n", + "ottomans\n", + "ottos\n", + "ouabain\n", + "ouabains\n", + "ouch\n", + "ouches\n", + "oud\n", + "ouds\n", + "ought\n", + "oughted\n", + "oughting\n", + "oughts\n", + "ouistiti\n", + "ouistitis\n", + "ounce\n", + "ounces\n", + "ouph\n", + "ouphe\n", + "ouphes\n", + "ouphs\n", + "our\n", + "ourang\n", + "ourangs\n", + "ourari\n", + "ouraris\n", + "ourebi\n", + "ourebis\n", + "ourie\n", + "ours\n", + "ourself\n", + "ourselves\n", + "ousel\n", + "ousels\n", + "oust\n", + "ousted\n", + "ouster\n", + "ousters\n", + "ousting\n", + "ousts\n", + "out\n", + "outact\n", + "outacted\n", + "outacting\n", + "outacts\n", + "outadd\n", + "outadded\n", + "outadding\n", + "outadds\n", + "outage\n", + "outages\n", + "outargue\n", + "outargued\n", + "outargues\n", + "outarguing\n", + "outask\n", + "outasked\n", + "outasking\n", + "outasks\n", + "outate\n", + "outback\n", + "outbacks\n", + "outbake\n", + "outbaked\n", + "outbakes\n", + "outbaking\n", + "outbark\n", + "outbarked\n", + "outbarking\n", + "outbarks\n", + "outbawl\n", + "outbawled\n", + "outbawling\n", + "outbawls\n", + "outbeam\n", + "outbeamed\n", + "outbeaming\n", + "outbeams\n", + "outbeg\n", + "outbegged\n", + "outbegging\n", + "outbegs\n", + "outbid\n", + "outbidden\n", + "outbidding\n", + "outbids\n", + "outblaze\n", + "outblazed\n", + "outblazes\n", + "outblazing\n", + "outbleat\n", + "outbleated\n", + "outbleating\n", + "outbleats\n", + "outbless\n", + "outblessed\n", + "outblesses\n", + "outblessing\n", + "outbloom\n", + "outbloomed\n", + "outblooming\n", + "outblooms\n", + "outbluff\n", + "outbluffed\n", + "outbluffing\n", + "outbluffs\n", + "outblush\n", + "outblushed\n", + "outblushes\n", + "outblushing\n", + "outboard\n", + "outboards\n", + "outboast\n", + "outboasted\n", + "outboasting\n", + "outboasts\n", + "outbound\n", + "outbox\n", + "outboxed\n", + "outboxes\n", + "outboxing\n", + "outbrag\n", + "outbragged\n", + "outbragging\n", + "outbrags\n", + "outbrave\n", + "outbraved\n", + "outbraves\n", + "outbraving\n", + "outbreak\n", + "outbreaks\n", + "outbred\n", + "outbreed\n", + "outbreeding\n", + "outbreeds\n", + "outbribe\n", + "outbribed\n", + "outbribes\n", + "outbribing\n", + "outbuild\n", + "outbuilding\n", + "outbuildings\n", + "outbuilds\n", + "outbuilt\n", + "outbullied\n", + "outbullies\n", + "outbully\n", + "outbullying\n", + "outburn\n", + "outburned\n", + "outburning\n", + "outburns\n", + "outburnt\n", + "outburst\n", + "outbursts\n", + "outby\n", + "outbye\n", + "outcaper\n", + "outcapered\n", + "outcapering\n", + "outcapers\n", + "outcast\n", + "outcaste\n", + "outcastes\n", + "outcasts\n", + "outcatch\n", + "outcatches\n", + "outcatching\n", + "outcaught\n", + "outcavil\n", + "outcaviled\n", + "outcaviling\n", + "outcavilled\n", + "outcavilling\n", + "outcavils\n", + "outcharm\n", + "outcharmed\n", + "outcharming\n", + "outcharms\n", + "outcheat\n", + "outcheated\n", + "outcheating\n", + "outcheats\n", + "outchid\n", + "outchidden\n", + "outchide\n", + "outchided\n", + "outchides\n", + "outchiding\n", + "outclass\n", + "outclassed\n", + "outclasses\n", + "outclassing\n", + "outclimb\n", + "outclimbed\n", + "outclimbing\n", + "outclimbs\n", + "outclomb\n", + "outcome\n", + "outcomes\n", + "outcook\n", + "outcooked\n", + "outcooking\n", + "outcooks\n", + "outcrawl\n", + "outcrawled\n", + "outcrawling\n", + "outcrawls\n", + "outcried\n", + "outcries\n", + "outcrop\n", + "outcropped\n", + "outcropping\n", + "outcrops\n", + "outcross\n", + "outcrossed\n", + "outcrosses\n", + "outcrossing\n", + "outcrow\n", + "outcrowed\n", + "outcrowing\n", + "outcrows\n", + "outcry\n", + "outcrying\n", + "outcurse\n", + "outcursed\n", + "outcurses\n", + "outcursing\n", + "outcurve\n", + "outcurves\n", + "outdance\n", + "outdanced\n", + "outdances\n", + "outdancing\n", + "outdare\n", + "outdared\n", + "outdares\n", + "outdaring\n", + "outdate\n", + "outdated\n", + "outdates\n", + "outdating\n", + "outdid\n", + "outdistance\n", + "outdistanced\n", + "outdistances\n", + "outdistancing\n", + "outdo\n", + "outdodge\n", + "outdodged\n", + "outdodges\n", + "outdodging\n", + "outdoer\n", + "outdoers\n", + "outdoes\n", + "outdoing\n", + "outdone\n", + "outdoor\n", + "outdoors\n", + "outdrank\n", + "outdraw\n", + "outdrawing\n", + "outdrawn\n", + "outdraws\n", + "outdream\n", + "outdreamed\n", + "outdreaming\n", + "outdreams\n", + "outdreamt\n", + "outdress\n", + "outdressed\n", + "outdresses\n", + "outdressing\n", + "outdrew\n", + "outdrink\n", + "outdrinking\n", + "outdrinks\n", + "outdrive\n", + "outdriven\n", + "outdrives\n", + "outdriving\n", + "outdrop\n", + "outdropped\n", + "outdropping\n", + "outdrops\n", + "outdrove\n", + "outdrunk\n", + "outeat\n", + "outeaten\n", + "outeating\n", + "outeats\n", + "outecho\n", + "outechoed\n", + "outechoes\n", + "outechoing\n", + "outed\n", + "outer\n", + "outermost\n", + "outers\n", + "outfable\n", + "outfabled\n", + "outfables\n", + "outfabling\n", + "outface\n", + "outfaced\n", + "outfaces\n", + "outfacing\n", + "outfall\n", + "outfalls\n", + "outfast\n", + "outfasted\n", + "outfasting\n", + "outfasts\n", + "outfawn\n", + "outfawned\n", + "outfawning\n", + "outfawns\n", + "outfeast\n", + "outfeasted\n", + "outfeasting\n", + "outfeasts\n", + "outfeel\n", + "outfeeling\n", + "outfeels\n", + "outfelt\n", + "outfield\n", + "outfielder\n", + "outfielders\n", + "outfields\n", + "outfight\n", + "outfighting\n", + "outfights\n", + "outfind\n", + "outfinding\n", + "outfinds\n", + "outfire\n", + "outfired\n", + "outfires\n", + "outfiring\n", + "outfit\n", + "outfits\n", + "outfitted\n", + "outfitter\n", + "outfitters\n", + "outfitting\n", + "outflank\n", + "outflanked\n", + "outflanking\n", + "outflanks\n", + "outflew\n", + "outflies\n", + "outflow\n", + "outflowed\n", + "outflowing\n", + "outflown\n", + "outflows\n", + "outfly\n", + "outflying\n", + "outfool\n", + "outfooled\n", + "outfooling\n", + "outfools\n", + "outfoot\n", + "outfooted\n", + "outfooting\n", + "outfoots\n", + "outfought\n", + "outfound\n", + "outfox\n", + "outfoxed\n", + "outfoxes\n", + "outfoxing\n", + "outfrown\n", + "outfrowned\n", + "outfrowning\n", + "outfrowns\n", + "outgain\n", + "outgained\n", + "outgaining\n", + "outgains\n", + "outgas\n", + "outgassed\n", + "outgasses\n", + "outgassing\n", + "outgave\n", + "outgive\n", + "outgiven\n", + "outgives\n", + "outgiving\n", + "outglare\n", + "outglared\n", + "outglares\n", + "outglaring\n", + "outglow\n", + "outglowed\n", + "outglowing\n", + "outglows\n", + "outgnaw\n", + "outgnawed\n", + "outgnawing\n", + "outgnawn\n", + "outgnaws\n", + "outgo\n", + "outgoes\n", + "outgoing\n", + "outgoings\n", + "outgone\n", + "outgrew\n", + "outgrin\n", + "outgrinned\n", + "outgrinning\n", + "outgrins\n", + "outgroup\n", + "outgroups\n", + "outgrow\n", + "outgrowing\n", + "outgrown\n", + "outgrows\n", + "outgrowth\n", + "outgrowths\n", + "outguess\n", + "outguessed\n", + "outguesses\n", + "outguessing\n", + "outguide\n", + "outguided\n", + "outguides\n", + "outguiding\n", + "outgun\n", + "outgunned\n", + "outgunning\n", + "outguns\n", + "outgush\n", + "outgushes\n", + "outhaul\n", + "outhauls\n", + "outhear\n", + "outheard\n", + "outhearing\n", + "outhears\n", + "outhit\n", + "outhits\n", + "outhitting\n", + "outhouse\n", + "outhouses\n", + "outhowl\n", + "outhowled\n", + "outhowling\n", + "outhowls\n", + "outhumor\n", + "outhumored\n", + "outhumoring\n", + "outhumors\n", + "outing\n", + "outings\n", + "outjinx\n", + "outjinxed\n", + "outjinxes\n", + "outjinxing\n", + "outjump\n", + "outjumped\n", + "outjumping\n", + "outjumps\n", + "outjut\n", + "outjuts\n", + "outjutted\n", + "outjutting\n", + "outkeep\n", + "outkeeping\n", + "outkeeps\n", + "outkept\n", + "outkick\n", + "outkicked\n", + "outkicking\n", + "outkicks\n", + "outkiss\n", + "outkissed\n", + "outkisses\n", + "outkissing\n", + "outlaid\n", + "outlain\n", + "outland\n", + "outlandish\n", + "outlandishly\n", + "outlands\n", + "outlast\n", + "outlasted\n", + "outlasting\n", + "outlasts\n", + "outlaugh\n", + "outlaughed\n", + "outlaughing\n", + "outlaughs\n", + "outlaw\n", + "outlawed\n", + "outlawing\n", + "outlawries\n", + "outlawry\n", + "outlaws\n", + "outlay\n", + "outlaying\n", + "outlays\n", + "outleap\n", + "outleaped\n", + "outleaping\n", + "outleaps\n", + "outleapt\n", + "outlearn\n", + "outlearned\n", + "outlearning\n", + "outlearns\n", + "outlearnt\n", + "outlet\n", + "outlets\n", + "outlie\n", + "outlier\n", + "outliers\n", + "outlies\n", + "outline\n", + "outlined\n", + "outlines\n", + "outlining\n", + "outlive\n", + "outlived\n", + "outliver\n", + "outlivers\n", + "outlives\n", + "outliving\n", + "outlook\n", + "outlooks\n", + "outlove\n", + "outloved\n", + "outloves\n", + "outloving\n", + "outlying\n", + "outman\n", + "outmanned\n", + "outmanning\n", + "outmans\n", + "outmarch\n", + "outmarched\n", + "outmarches\n", + "outmarching\n", + "outmatch\n", + "outmatched\n", + "outmatches\n", + "outmatching\n", + "outmode\n", + "outmoded\n", + "outmodes\n", + "outmoding\n", + "outmost\n", + "outmove\n", + "outmoved\n", + "outmoves\n", + "outmoving\n", + "outnumber\n", + "outnumbered\n", + "outnumbering\n", + "outnumbers\n", + "outpace\n", + "outpaced\n", + "outpaces\n", + "outpacing\n", + "outpaint\n", + "outpainted\n", + "outpainting\n", + "outpaints\n", + "outpass\n", + "outpassed\n", + "outpasses\n", + "outpassing\n", + "outpatient\n", + "outpatients\n", + "outpitied\n", + "outpities\n", + "outpity\n", + "outpitying\n", + "outplan\n", + "outplanned\n", + "outplanning\n", + "outplans\n", + "outplay\n", + "outplayed\n", + "outplaying\n", + "outplays\n", + "outplod\n", + "outplodded\n", + "outplodding\n", + "outplods\n", + "outpoint\n", + "outpointed\n", + "outpointing\n", + "outpoints\n", + "outpoll\n", + "outpolled\n", + "outpolling\n", + "outpolls\n", + "outport\n", + "outports\n", + "outpost\n", + "outposts\n", + "outpour\n", + "outpoured\n", + "outpouring\n", + "outpours\n", + "outpray\n", + "outprayed\n", + "outpraying\n", + "outprays\n", + "outpreen\n", + "outpreened\n", + "outpreening\n", + "outpreens\n", + "outpress\n", + "outpressed\n", + "outpresses\n", + "outpressing\n", + "outprice\n", + "outpriced\n", + "outprices\n", + "outpricing\n", + "outpull\n", + "outpulled\n", + "outpulling\n", + "outpulls\n", + "outpush\n", + "outpushed\n", + "outpushes\n", + "outpushing\n", + "output\n", + "outputs\n", + "outputted\n", + "outputting\n", + "outquote\n", + "outquoted\n", + "outquotes\n", + "outquoting\n", + "outrace\n", + "outraced\n", + "outraces\n", + "outracing\n", + "outrage\n", + "outraged\n", + "outrages\n", + "outraging\n", + "outraise\n", + "outraised\n", + "outraises\n", + "outraising\n", + "outran\n", + "outrance\n", + "outrances\n", + "outrang\n", + "outrange\n", + "outranged\n", + "outranges\n", + "outranging\n", + "outrank\n", + "outranked\n", + "outranking\n", + "outranks\n", + "outrave\n", + "outraved\n", + "outraves\n", + "outraving\n", + "outre\n", + "outreach\n", + "outreached\n", + "outreaches\n", + "outreaching\n", + "outread\n", + "outreading\n", + "outreads\n", + "outregeous\n", + "outregeously\n", + "outridden\n", + "outride\n", + "outrider\n", + "outriders\n", + "outrides\n", + "outriding\n", + "outright\n", + "outring\n", + "outringing\n", + "outrings\n", + "outrival\n", + "outrivaled\n", + "outrivaling\n", + "outrivalled\n", + "outrivalling\n", + "outrivals\n", + "outroar\n", + "outroared\n", + "outroaring\n", + "outroars\n", + "outrock\n", + "outrocked\n", + "outrocking\n", + "outrocks\n", + "outrode\n", + "outroll\n", + "outrolled\n", + "outrolling\n", + "outrolls\n", + "outroot\n", + "outrooted\n", + "outrooting\n", + "outroots\n", + "outrun\n", + "outrung\n", + "outrunning\n", + "outruns\n", + "outrush\n", + "outrushes\n", + "outs\n", + "outsail\n", + "outsailed\n", + "outsailing\n", + "outsails\n", + "outsang\n", + "outsat\n", + "outsavor\n", + "outsavored\n", + "outsavoring\n", + "outsavors\n", + "outsaw\n", + "outscold\n", + "outscolded\n", + "outscolding\n", + "outscolds\n", + "outscore\n", + "outscored\n", + "outscores\n", + "outscoring\n", + "outscorn\n", + "outscorned\n", + "outscorning\n", + "outscorns\n", + "outsee\n", + "outseeing\n", + "outseen\n", + "outsees\n", + "outsell\n", + "outselling\n", + "outsells\n", + "outsert\n", + "outserts\n", + "outserve\n", + "outserved\n", + "outserves\n", + "outserving\n", + "outset\n", + "outsets\n", + "outshame\n", + "outshamed\n", + "outshames\n", + "outshaming\n", + "outshine\n", + "outshined\n", + "outshines\n", + "outshining\n", + "outshone\n", + "outshoot\n", + "outshooting\n", + "outshoots\n", + "outshot\n", + "outshout\n", + "outshouted\n", + "outshouting\n", + "outshouts\n", + "outside\n", + "outsider\n", + "outsiders\n", + "outsides\n", + "outsight\n", + "outsights\n", + "outsin\n", + "outsing\n", + "outsinging\n", + "outsings\n", + "outsinned\n", + "outsinning\n", + "outsins\n", + "outsit\n", + "outsits\n", + "outsitting\n", + "outsize\n", + "outsized\n", + "outsizes\n", + "outskirt\n", + "outskirts\n", + "outsleep\n", + "outsleeping\n", + "outsleeps\n", + "outslept\n", + "outsmart\n", + "outsmarted\n", + "outsmarting\n", + "outsmarts\n", + "outsmile\n", + "outsmiled\n", + "outsmiles\n", + "outsmiling\n", + "outsmoke\n", + "outsmoked\n", + "outsmokes\n", + "outsmoking\n", + "outsnore\n", + "outsnored\n", + "outsnores\n", + "outsnoring\n", + "outsoar\n", + "outsoared\n", + "outsoaring\n", + "outsoars\n", + "outsold\n", + "outsole\n", + "outsoles\n", + "outspan\n", + "outspanned\n", + "outspanning\n", + "outspans\n", + "outspeak\n", + "outspeaking\n", + "outspeaks\n", + "outspell\n", + "outspelled\n", + "outspelling\n", + "outspells\n", + "outspelt\n", + "outspend\n", + "outspending\n", + "outspends\n", + "outspent\n", + "outspoke\n", + "outspoken\n", + "outspokenness\n", + "outspokennesses\n", + "outstand\n", + "outstanding\n", + "outstandingly\n", + "outstands\n", + "outstare\n", + "outstared\n", + "outstares\n", + "outstaring\n", + "outstart\n", + "outstarted\n", + "outstarting\n", + "outstarts\n", + "outstate\n", + "outstated\n", + "outstates\n", + "outstating\n", + "outstay\n", + "outstayed\n", + "outstaying\n", + "outstays\n", + "outsteer\n", + "outsteered\n", + "outsteering\n", + "outsteers\n", + "outstood\n", + "outstrip\n", + "outstripped\n", + "outstripping\n", + "outstrips\n", + "outstudied\n", + "outstudies\n", + "outstudy\n", + "outstudying\n", + "outstunt\n", + "outstunted\n", + "outstunting\n", + "outstunts\n", + "outsulk\n", + "outsulked\n", + "outsulking\n", + "outsulks\n", + "outsung\n", + "outswam\n", + "outsware\n", + "outswear\n", + "outswearing\n", + "outswears\n", + "outswim\n", + "outswimming\n", + "outswims\n", + "outswore\n", + "outsworn\n", + "outswum\n", + "outtake\n", + "outtakes\n", + "outtalk\n", + "outtalked\n", + "outtalking\n", + "outtalks\n", + "outtask\n", + "outtasked\n", + "outtasking\n", + "outtasks\n", + "outtell\n", + "outtelling\n", + "outtells\n", + "outthank\n", + "outthanked\n", + "outthanking\n", + "outthanks\n", + "outthink\n", + "outthinking\n", + "outthinks\n", + "outthought\n", + "outthrew\n", + "outthrob\n", + "outthrobbed\n", + "outthrobbing\n", + "outthrobs\n", + "outthrow\n", + "outthrowing\n", + "outthrown\n", + "outthrows\n", + "outtold\n", + "outtower\n", + "outtowered\n", + "outtowering\n", + "outtowers\n", + "outtrade\n", + "outtraded\n", + "outtrades\n", + "outtrading\n", + "outtrick\n", + "outtricked\n", + "outtricking\n", + "outtricks\n", + "outtrot\n", + "outtrots\n", + "outtrotted\n", + "outtrotting\n", + "outtrump\n", + "outtrumped\n", + "outtrumping\n", + "outtrumps\n", + "outturn\n", + "outturns\n", + "outvalue\n", + "outvalued\n", + "outvalues\n", + "outvaluing\n", + "outvaunt\n", + "outvaunted\n", + "outvaunting\n", + "outvaunts\n", + "outvoice\n", + "outvoiced\n", + "outvoices\n", + "outvoicing\n", + "outvote\n", + "outvoted\n", + "outvotes\n", + "outvoting\n", + "outwait\n", + "outwaited\n", + "outwaiting\n", + "outwaits\n", + "outwalk\n", + "outwalked\n", + "outwalking\n", + "outwalks\n", + "outwar\n", + "outward\n", + "outwards\n", + "outwarred\n", + "outwarring\n", + "outwars\n", + "outwash\n", + "outwashes\n", + "outwaste\n", + "outwasted\n", + "outwastes\n", + "outwasting\n", + "outwatch\n", + "outwatched\n", + "outwatches\n", + "outwatching\n", + "outwear\n", + "outwearied\n", + "outwearies\n", + "outwearing\n", + "outwears\n", + "outweary\n", + "outwearying\n", + "outweep\n", + "outweeping\n", + "outweeps\n", + "outweigh\n", + "outweighed\n", + "outweighing\n", + "outweighs\n", + "outwent\n", + "outwept\n", + "outwhirl\n", + "outwhirled\n", + "outwhirling\n", + "outwhirls\n", + "outwile\n", + "outwiled\n", + "outwiles\n", + "outwiling\n", + "outwill\n", + "outwilled\n", + "outwilling\n", + "outwills\n", + "outwind\n", + "outwinded\n", + "outwinding\n", + "outwinds\n", + "outwish\n", + "outwished\n", + "outwishes\n", + "outwishing\n", + "outwit\n", + "outwits\n", + "outwitted\n", + "outwitting\n", + "outwore\n", + "outwork\n", + "outworked\n", + "outworking\n", + "outworks\n", + "outworn\n", + "outwrit\n", + "outwrite\n", + "outwrites\n", + "outwriting\n", + "outwritten\n", + "outwrote\n", + "outwrought\n", + "outyell\n", + "outyelled\n", + "outyelling\n", + "outyells\n", + "outyelp\n", + "outyelped\n", + "outyelping\n", + "outyelps\n", + "outyield\n", + "outyielded\n", + "outyielding\n", + "outyields\n", + "ouzel\n", + "ouzels\n", + "ouzo\n", + "ouzos\n", + "ova\n", + "oval\n", + "ovalities\n", + "ovality\n", + "ovally\n", + "ovalness\n", + "ovalnesses\n", + "ovals\n", + "ovarial\n", + "ovarian\n", + "ovaries\n", + "ovariole\n", + "ovarioles\n", + "ovaritides\n", + "ovaritis\n", + "ovary\n", + "ovate\n", + "ovately\n", + "ovation\n", + "ovations\n", + "oven\n", + "ovenbird\n", + "ovenbirds\n", + "ovenlike\n", + "ovens\n", + "ovenware\n", + "ovenwares\n", + "over\n", + "overable\n", + "overabundance\n", + "overabundances\n", + "overabundant\n", + "overacceptance\n", + "overacceptances\n", + "overachiever\n", + "overachievers\n", + "overact\n", + "overacted\n", + "overacting\n", + "overactive\n", + "overacts\n", + "overage\n", + "overages\n", + "overaggresive\n", + "overall\n", + "overalls\n", + "overambitious\n", + "overamplified\n", + "overamplifies\n", + "overamplify\n", + "overamplifying\n", + "overanalyze\n", + "overanalyzed\n", + "overanalyzes\n", + "overanalyzing\n", + "overanxieties\n", + "overanxiety\n", + "overanxious\n", + "overapologetic\n", + "overapt\n", + "overarch\n", + "overarched\n", + "overarches\n", + "overarching\n", + "overarm\n", + "overarousal\n", + "overarouse\n", + "overaroused\n", + "overarouses\n", + "overarousing\n", + "overassertive\n", + "overate\n", + "overawe\n", + "overawed\n", + "overawes\n", + "overawing\n", + "overbake\n", + "overbaked\n", + "overbakes\n", + "overbaking\n", + "overbear\n", + "overbearing\n", + "overbears\n", + "overbet\n", + "overbets\n", + "overbetted\n", + "overbetting\n", + "overbid\n", + "overbidden\n", + "overbidding\n", + "overbids\n", + "overbig\n", + "overbite\n", + "overbites\n", + "overblew\n", + "overblow\n", + "overblowing\n", + "overblown\n", + "overblows\n", + "overboard\n", + "overbold\n", + "overbook\n", + "overbooked\n", + "overbooking\n", + "overbooks\n", + "overbore\n", + "overborn\n", + "overborne\n", + "overborrow\n", + "overborrowed\n", + "overborrowing\n", + "overborrows\n", + "overbought\n", + "overbred\n", + "overbright\n", + "overbroad\n", + "overbuild\n", + "overbuilded\n", + "overbuilding\n", + "overbuilds\n", + "overburden\n", + "overburdened\n", + "overburdening\n", + "overburdens\n", + "overbusy\n", + "overbuy\n", + "overbuying\n", + "overbuys\n", + "overcall\n", + "overcalled\n", + "overcalling\n", + "overcalls\n", + "overcame\n", + "overcapacities\n", + "overcapacity\n", + "overcapitalize\n", + "overcapitalized\n", + "overcapitalizes\n", + "overcapitalizing\n", + "overcareful\n", + "overcast\n", + "overcasting\n", + "overcasts\n", + "overcautious\n", + "overcharge\n", + "overcharged\n", + "overcharges\n", + "overcharging\n", + "overcivilized\n", + "overclean\n", + "overcoat\n", + "overcoats\n", + "overcold\n", + "overcome\n", + "overcomes\n", + "overcoming\n", + "overcommit\n", + "overcommited\n", + "overcommiting\n", + "overcommits\n", + "overcompensate\n", + "overcompensated\n", + "overcompensates\n", + "overcompensating\n", + "overcomplicate\n", + "overcomplicated\n", + "overcomplicates\n", + "overcomplicating\n", + "overconcern\n", + "overconcerned\n", + "overconcerning\n", + "overconcerns\n", + "overconfidence\n", + "overconfidences\n", + "overconfident\n", + "overconscientious\n", + "overconsume\n", + "overconsumed\n", + "overconsumes\n", + "overconsuming\n", + "overconsumption\n", + "overconsumptions\n", + "overcontrol\n", + "overcontroled\n", + "overcontroling\n", + "overcontrols\n", + "overcook\n", + "overcooked\n", + "overcooking\n", + "overcooks\n", + "overcool\n", + "overcooled\n", + "overcooling\n", + "overcools\n", + "overcorrect\n", + "overcorrected\n", + "overcorrecting\n", + "overcorrects\n", + "overcoy\n", + "overcram\n", + "overcrammed\n", + "overcramming\n", + "overcrams\n", + "overcritical\n", + "overcrop\n", + "overcropped\n", + "overcropping\n", + "overcrops\n", + "overcrowd\n", + "overcrowded\n", + "overcrowding\n", + "overcrowds\n", + "overdare\n", + "overdared\n", + "overdares\n", + "overdaring\n", + "overdear\n", + "overdeck\n", + "overdecked\n", + "overdecking\n", + "overdecks\n", + "overdecorate\n", + "overdecorated\n", + "overdecorates\n", + "overdecorating\n", + "overdepend\n", + "overdepended\n", + "overdependent\n", + "overdepending\n", + "overdepends\n", + "overdevelop\n", + "overdeveloped\n", + "overdeveloping\n", + "overdevelops\n", + "overdid\n", + "overdo\n", + "overdoer\n", + "overdoers\n", + "overdoes\n", + "overdoing\n", + "overdone\n", + "overdose\n", + "overdosed\n", + "overdoses\n", + "overdosing\n", + "overdraft\n", + "overdrafts\n", + "overdramatic\n", + "overdramatize\n", + "overdramatized\n", + "overdramatizes\n", + "overdramatizing\n", + "overdraw\n", + "overdrawing\n", + "overdrawn\n", + "overdraws\n", + "overdress\n", + "overdressed\n", + "overdresses\n", + "overdressing\n", + "overdrew\n", + "overdrink\n", + "overdrinks\n", + "overdry\n", + "overdue\n", + "overdye\n", + "overdyed\n", + "overdyeing\n", + "overdyes\n", + "overeager\n", + "overeasy\n", + "overeat\n", + "overeaten\n", + "overeater\n", + "overeaters\n", + "overeating\n", + "overeats\n", + "overed\n", + "overeducate\n", + "overeducated\n", + "overeducates\n", + "overeducating\n", + "overelaborate\n", + "overemotional\n", + "overemphases\n", + "overemphasis\n", + "overemphasize\n", + "overemphasized\n", + "overemphasizes\n", + "overemphasizing\n", + "overenergetic\n", + "overenthusiastic\n", + "overestimate\n", + "overestimated\n", + "overestimates\n", + "overestimating\n", + "overexaggerate\n", + "overexaggerated\n", + "overexaggerates\n", + "overexaggerating\n", + "overexaggeration\n", + "overexaggerations\n", + "overexcite\n", + "overexcited\n", + "overexcitement\n", + "overexcitements\n", + "overexcites\n", + "overexciting\n", + "overexercise\n", + "overexert\n", + "overexertion\n", + "overexertions\n", + "overexhaust\n", + "overexhausted\n", + "overexhausting\n", + "overexhausts\n", + "overexpand\n", + "overexpanded\n", + "overexpanding\n", + "overexpands\n", + "overexpansion\n", + "overexpansions\n", + "overexplain\n", + "overexplained\n", + "overexplaining\n", + "overexplains\n", + "overexploit\n", + "overexploited\n", + "overexploiting\n", + "overexploits\n", + "overexpose\n", + "overexposed\n", + "overexposes\n", + "overexposing\n", + "overextend\n", + "overextended\n", + "overextending\n", + "overextends\n", + "overextension\n", + "overextensions\n", + "overexuberant\n", + "overfamiliar\n", + "overfar\n", + "overfast\n", + "overfat\n", + "overfatigue\n", + "overfatigued\n", + "overfatigues\n", + "overfatiguing\n", + "overfear\n", + "overfeared\n", + "overfearing\n", + "overfears\n", + "overfed\n", + "overfeed\n", + "overfeeding\n", + "overfeeds\n", + "overfertilize\n", + "overfertilized\n", + "overfertilizes\n", + "overfertilizing\n", + "overfill\n", + "overfilled\n", + "overfilling\n", + "overfills\n", + "overfish\n", + "overfished\n", + "overfishes\n", + "overfishing\n", + "overflew\n", + "overflies\n", + "overflow\n", + "overflowed\n", + "overflowing\n", + "overflown\n", + "overflows\n", + "overfly\n", + "overflying\n", + "overfond\n", + "overfoul\n", + "overfree\n", + "overfull\n", + "overgenerous\n", + "overgild\n", + "overgilded\n", + "overgilding\n", + "overgilds\n", + "overgilt\n", + "overgird\n", + "overgirded\n", + "overgirding\n", + "overgirds\n", + "overgirt\n", + "overglad\n", + "overglamorize\n", + "overglamorized\n", + "overglamorizes\n", + "overglamorizing\n", + "overgoad\n", + "overgoaded\n", + "overgoading\n", + "overgoads\n", + "overgraze\n", + "overgrazed\n", + "overgrazes\n", + "overgrazing\n", + "overgrew\n", + "overgrow\n", + "overgrowing\n", + "overgrown\n", + "overgrows\n", + "overhand\n", + "overhanded\n", + "overhanding\n", + "overhands\n", + "overhang\n", + "overhanging\n", + "overhangs\n", + "overhard\n", + "overharvest\n", + "overharvested\n", + "overharvesting\n", + "overharvests\n", + "overhasty\n", + "overhate\n", + "overhated\n", + "overhates\n", + "overhating\n", + "overhaul\n", + "overhauled\n", + "overhauling\n", + "overhauls\n", + "overhead\n", + "overheads\n", + "overheap\n", + "overheaped\n", + "overheaping\n", + "overheaps\n", + "overhear\n", + "overheard\n", + "overhearing\n", + "overhears\n", + "overheat\n", + "overheated\n", + "overheating\n", + "overheats\n", + "overheld\n", + "overhigh\n", + "overhold\n", + "overholding\n", + "overholds\n", + "overholy\n", + "overhope\n", + "overhoped\n", + "overhopes\n", + "overhoping\n", + "overhot\n", + "overhung\n", + "overhunt\n", + "overhunted\n", + "overhunting\n", + "overhunts\n", + "overidealize\n", + "overidealized\n", + "overidealizes\n", + "overidealizing\n", + "overidle\n", + "overimaginative\n", + "overimbibe\n", + "overimbibed\n", + "overimbibes\n", + "overimbibing\n", + "overimpressed\n", + "overindebted\n", + "overindulge\n", + "overindulged\n", + "overindulgent\n", + "overindulges\n", + "overindulging\n", + "overinflate\n", + "overinflated\n", + "overinflates\n", + "overinflating\n", + "overinfluence\n", + "overinfluenced\n", + "overinfluences\n", + "overinfluencing\n", + "overing\n", + "overinsistent\n", + "overintense\n", + "overintensities\n", + "overintensity\n", + "overinvest\n", + "overinvested\n", + "overinvesting\n", + "overinvests\n", + "overinvolve\n", + "overinvolved\n", + "overinvolves\n", + "overinvolving\n", + "overjoy\n", + "overjoyed\n", + "overjoying\n", + "overjoys\n", + "overjust\n", + "overkeen\n", + "overkill\n", + "overkilled\n", + "overkilling\n", + "overkills\n", + "overkind\n", + "overlade\n", + "overladed\n", + "overladen\n", + "overlades\n", + "overlading\n", + "overlaid\n", + "overlain\n", + "overland\n", + "overlands\n", + "overlap\n", + "overlapped\n", + "overlapping\n", + "overlaps\n", + "overlarge\n", + "overlate\n", + "overlax\n", + "overlay\n", + "overlaying\n", + "overlays\n", + "overleaf\n", + "overleap\n", + "overleaped\n", + "overleaping\n", + "overleaps\n", + "overleapt\n", + "overlet\n", + "overlets\n", + "overletting\n", + "overlewd\n", + "overliberal\n", + "overlie\n", + "overlies\n", + "overlive\n", + "overlived\n", + "overlives\n", + "overliving\n", + "overload\n", + "overloaded\n", + "overloading\n", + "overloads\n", + "overlong\n", + "overlook\n", + "overlooked\n", + "overlooking\n", + "overlooks\n", + "overlord\n", + "overlorded\n", + "overlording\n", + "overlords\n", + "overloud\n", + "overlove\n", + "overloved\n", + "overloves\n", + "overloving\n", + "overly\n", + "overlying\n", + "overman\n", + "overmanned\n", + "overmanning\n", + "overmans\n", + "overmany\n", + "overmedicate\n", + "overmedicated\n", + "overmedicates\n", + "overmedicating\n", + "overmeek\n", + "overmelt\n", + "overmelted\n", + "overmelting\n", + "overmelts\n", + "overmen\n", + "overmild\n", + "overmix\n", + "overmixed\n", + "overmixes\n", + "overmixing\n", + "overmodest\n", + "overmuch\n", + "overmuches\n", + "overnear\n", + "overneat\n", + "overnew\n", + "overnice\n", + "overnight\n", + "overobvious\n", + "overoptimistic\n", + "overorganize\n", + "overorganized\n", + "overorganizes\n", + "overorganizing\n", + "overpaid\n", + "overparticular\n", + "overpass\n", + "overpassed\n", + "overpasses\n", + "overpassing\n", + "overpast\n", + "overpatriotic\n", + "overpay\n", + "overpaying\n", + "overpayment\n", + "overpayments\n", + "overpays\n", + "overpermissive\n", + "overpert\n", + "overplay\n", + "overplayed\n", + "overplaying\n", + "overplays\n", + "overplied\n", + "overplies\n", + "overplus\n", + "overpluses\n", + "overply\n", + "overplying\n", + "overpopulated\n", + "overpossessive\n", + "overpower\n", + "overpowered\n", + "overpowering\n", + "overpowers\n", + "overprase\n", + "overprased\n", + "overprases\n", + "overprasing\n", + "overprescribe\n", + "overprescribed\n", + "overprescribes\n", + "overprescribing\n", + "overpressure\n", + "overpressures\n", + "overprice\n", + "overpriced\n", + "overprices\n", + "overpricing\n", + "overprint\n", + "overprinted\n", + "overprinting\n", + "overprints\n", + "overprivileged\n", + "overproduce\n", + "overproduced\n", + "overproduces\n", + "overproducing\n", + "overproduction\n", + "overproductions\n", + "overpromise\n", + "overprotect\n", + "overprotected\n", + "overprotecting\n", + "overprotective\n", + "overprotects\n", + "overpublicize\n", + "overpublicized\n", + "overpublicizes\n", + "overpublicizing\n", + "overqualified\n", + "overran\n", + "overrank\n", + "overrash\n", + "overrate\n", + "overrated\n", + "overrates\n", + "overrating\n", + "overreach\n", + "overreached\n", + "overreaches\n", + "overreaching\n", + "overreact\n", + "overreacted\n", + "overreacting\n", + "overreaction\n", + "overreactions\n", + "overreacts\n", + "overrefine\n", + "overregulate\n", + "overregulated\n", + "overregulates\n", + "overregulating\n", + "overregulation\n", + "overregulations\n", + "overreliance\n", + "overreliances\n", + "overrepresent\n", + "overrepresented\n", + "overrepresenting\n", + "overrepresents\n", + "overrespond\n", + "overresponded\n", + "overresponding\n", + "overresponds\n", + "overrich\n", + "overridden\n", + "override\n", + "overrides\n", + "overriding\n", + "overrife\n", + "overripe\n", + "overrode\n", + "overrude\n", + "overruff\n", + "overruffed\n", + "overruffing\n", + "overruffs\n", + "overrule\n", + "overruled\n", + "overrules\n", + "overruling\n", + "overrun\n", + "overrunning\n", + "overruns\n", + "overs\n", + "oversad\n", + "oversale\n", + "oversales\n", + "oversalt\n", + "oversalted\n", + "oversalting\n", + "oversalts\n", + "oversaturate\n", + "oversaturated\n", + "oversaturates\n", + "oversaturating\n", + "oversave\n", + "oversaved\n", + "oversaves\n", + "oversaving\n", + "oversaw\n", + "oversea\n", + "overseas\n", + "oversee\n", + "overseed\n", + "overseeded\n", + "overseeding\n", + "overseeds\n", + "overseeing\n", + "overseen\n", + "overseer\n", + "overseers\n", + "oversees\n", + "oversell\n", + "overselling\n", + "oversells\n", + "oversensitive\n", + "overserious\n", + "overset\n", + "oversets\n", + "oversetting\n", + "oversew\n", + "oversewed\n", + "oversewing\n", + "oversewn\n", + "oversews\n", + "oversexed\n", + "overshadow\n", + "overshadowed\n", + "overshadowing\n", + "overshadows\n", + "overshoe\n", + "overshoes\n", + "overshoot\n", + "overshooting\n", + "overshoots\n", + "overshot\n", + "overshots\n", + "oversick\n", + "overside\n", + "oversides\n", + "oversight\n", + "oversights\n", + "oversimple\n", + "oversimplified\n", + "oversimplifies\n", + "oversimplify\n", + "oversimplifying\n", + "oversize\n", + "oversizes\n", + "oversleep\n", + "oversleeping\n", + "oversleeps\n", + "overslept\n", + "overslip\n", + "overslipped\n", + "overslipping\n", + "overslips\n", + "overslipt\n", + "overslow\n", + "oversoak\n", + "oversoaked\n", + "oversoaking\n", + "oversoaks\n", + "oversoft\n", + "oversold\n", + "oversolicitous\n", + "oversoon\n", + "oversoul\n", + "oversouls\n", + "overspecialize\n", + "overspecialized\n", + "overspecializes\n", + "overspecializing\n", + "overspend\n", + "overspended\n", + "overspending\n", + "overspends\n", + "overspin\n", + "overspins\n", + "overspread\n", + "overspreading\n", + "overspreads\n", + "overstaff\n", + "overstaffed\n", + "overstaffing\n", + "overstaffs\n", + "overstate\n", + "overstated\n", + "overstatement\n", + "overstatements\n", + "overstates\n", + "overstating\n", + "overstay\n", + "overstayed\n", + "overstaying\n", + "overstays\n", + "overstep\n", + "overstepped\n", + "overstepping\n", + "oversteps\n", + "overstimulate\n", + "overstimulated\n", + "overstimulates\n", + "overstimulating\n", + "overstir\n", + "overstirred\n", + "overstirring\n", + "overstirs\n", + "overstock\n", + "overstocked\n", + "overstocking\n", + "overstocks\n", + "overstrain\n", + "overstrained\n", + "overstraining\n", + "overstrains\n", + "overstress\n", + "overstressed\n", + "overstresses\n", + "overstressing\n", + "overstretch\n", + "overstretched\n", + "overstretches\n", + "overstretching\n", + "overstrict\n", + "oversubtle\n", + "oversup\n", + "oversupped\n", + "oversupping\n", + "oversupplied\n", + "oversupplies\n", + "oversupply\n", + "oversupplying\n", + "oversups\n", + "oversure\n", + "oversuspicious\n", + "oversweeten\n", + "oversweetened\n", + "oversweetening\n", + "oversweetens\n", + "overt\n", + "overtake\n", + "overtaken\n", + "overtakes\n", + "overtaking\n", + "overtame\n", + "overtart\n", + "overtask\n", + "overtasked\n", + "overtasking\n", + "overtasks\n", + "overtax\n", + "overtaxed\n", + "overtaxes\n", + "overtaxing\n", + "overthin\n", + "overthrew\n", + "overthrow\n", + "overthrown\n", + "overthrows\n", + "overtighten\n", + "overtightened\n", + "overtightening\n", + "overtightens\n", + "overtime\n", + "overtimed\n", + "overtimes\n", + "overtiming\n", + "overtire\n", + "overtired\n", + "overtires\n", + "overtiring\n", + "overtly\n", + "overtoil\n", + "overtoiled\n", + "overtoiling\n", + "overtoils\n", + "overtone\n", + "overtones\n", + "overtook\n", + "overtop\n", + "overtopped\n", + "overtopping\n", + "overtops\n", + "overtrain\n", + "overtrained\n", + "overtraining\n", + "overtrains\n", + "overtreat\n", + "overtreated\n", + "overtreating\n", + "overtreats\n", + "overtrim\n", + "overtrimmed\n", + "overtrimming\n", + "overtrims\n", + "overture\n", + "overtured\n", + "overtures\n", + "overturing\n", + "overturn\n", + "overturned\n", + "overturning\n", + "overturns\n", + "overurge\n", + "overurged\n", + "overurges\n", + "overurging\n", + "overuse\n", + "overused\n", + "overuses\n", + "overusing\n", + "overutilize\n", + "overutilized\n", + "overutilizes\n", + "overutilizing\n", + "overvalue\n", + "overvalued\n", + "overvalues\n", + "overvaluing\n", + "overview\n", + "overviews\n", + "overvote\n", + "overvoted\n", + "overvotes\n", + "overvoting\n", + "overwarm\n", + "overwarmed\n", + "overwarming\n", + "overwarms\n", + "overwary\n", + "overweak\n", + "overwear\n", + "overwearing\n", + "overwears\n", + "overween\n", + "overweened\n", + "overweening\n", + "overweens\n", + "overweight\n", + "overwet\n", + "overwets\n", + "overwetted\n", + "overwetting\n", + "overwhelm\n", + "overwhelmed\n", + "overwhelming\n", + "overwhelmingly\n", + "overwhelms\n", + "overwide\n", + "overwily\n", + "overwind\n", + "overwinding\n", + "overwinds\n", + "overwise\n", + "overword\n", + "overwords\n", + "overwore\n", + "overwork\n", + "overworked\n", + "overworking\n", + "overworks\n", + "overworn\n", + "overwound\n", + "overwrite\n", + "overwrited\n", + "overwrites\n", + "overwriting\n", + "overwrought\n", + "overzeal\n", + "overzealous\n", + "overzeals\n", + "ovibos\n", + "ovicidal\n", + "ovicide\n", + "ovicides\n", + "oviducal\n", + "oviduct\n", + "oviducts\n", + "oviform\n", + "ovine\n", + "ovines\n", + "ovipara\n", + "oviposit\n", + "oviposited\n", + "ovipositing\n", + "oviposits\n", + "ovisac\n", + "ovisacs\n", + "ovoid\n", + "ovoidal\n", + "ovoids\n", + "ovoli\n", + "ovolo\n", + "ovolos\n", + "ovonic\n", + "ovular\n", + "ovulary\n", + "ovulate\n", + "ovulated\n", + "ovulates\n", + "ovulating\n", + "ovulation\n", + "ovulations\n", + "ovule\n", + "ovules\n", + "ovum\n", + "ow\n", + "owe\n", + "owed\n", + "owes\n", + "owing\n", + "owl\n", + "owlet\n", + "owlets\n", + "owlish\n", + "owlishly\n", + "owllike\n", + "owls\n", + "own\n", + "ownable\n", + "owned\n", + "owner\n", + "owners\n", + "ownership\n", + "ownerships\n", + "owning\n", + "owns\n", + "owse\n", + "owsen\n", + "ox\n", + "oxalate\n", + "oxalated\n", + "oxalates\n", + "oxalating\n", + "oxalic\n", + "oxalis\n", + "oxalises\n", + "oxazine\n", + "oxazines\n", + "oxblood\n", + "oxbloods\n", + "oxbow\n", + "oxbows\n", + "oxcart\n", + "oxcarts\n", + "oxen\n", + "oxes\n", + "oxeye\n", + "oxeyes\n", + "oxford\n", + "oxfords\n", + "oxheart\n", + "oxhearts\n", + "oxid\n", + "oxidable\n", + "oxidant\n", + "oxidants\n", + "oxidase\n", + "oxidases\n", + "oxidasic\n", + "oxidate\n", + "oxidated\n", + "oxidates\n", + "oxidating\n", + "oxidation\n", + "oxidations\n", + "oxide\n", + "oxides\n", + "oxidic\n", + "oxidise\n", + "oxidised\n", + "oxidiser\n", + "oxidisers\n", + "oxidises\n", + "oxidising\n", + "oxidizable\n", + "oxidize\n", + "oxidized\n", + "oxidizer\n", + "oxidizers\n", + "oxidizes\n", + "oxidizing\n", + "oxids\n", + "oxim\n", + "oxime\n", + "oximes\n", + "oxims\n", + "oxlip\n", + "oxlips\n", + "oxpecker\n", + "oxpeckers\n", + "oxtail\n", + "oxtails\n", + "oxter\n", + "oxters\n", + "oxtongue\n", + "oxtongues\n", + "oxy\n", + "oxyacid\n", + "oxyacids\n", + "oxygen\n", + "oxygenic\n", + "oxygens\n", + "oxymora\n", + "oxymoron\n", + "oxyphil\n", + "oxyphile\n", + "oxyphiles\n", + "oxyphils\n", + "oxysalt\n", + "oxysalts\n", + "oxysome\n", + "oxysomes\n", + "oxytocic\n", + "oxytocics\n", + "oxytocin\n", + "oxytocins\n", + "oxytone\n", + "oxytones\n", + "oy\n", + "oyer\n", + "oyers\n", + "oyes\n", + "oyesses\n", + "oyez\n", + "oyster\n", + "oystered\n", + "oysterer\n", + "oysterers\n", + "oystering\n", + "oysterings\n", + "oysterman\n", + "oystermen\n", + "oysters\n", + "ozone\n", + "ozones\n", + "ozonic\n", + "ozonide\n", + "ozonides\n", + "ozonise\n", + "ozonised\n", + "ozonises\n", + "ozonising\n", + "ozonize\n", + "ozonized\n", + "ozonizer\n", + "ozonizers\n", + "ozonizes\n", + "ozonizing\n", + "ozonous\n", + "pa\n", + "pabular\n", + "pabulum\n", + "pabulums\n", + "pac\n", + "paca\n", + "pacas\n", + "pace\n", + "paced\n", + "pacemaker\n", + "pacemakers\n", + "pacer\n", + "pacers\n", + "paces\n", + "pacha\n", + "pachadom\n", + "pachadoms\n", + "pachalic\n", + "pachalics\n", + "pachas\n", + "pachisi\n", + "pachisis\n", + "pachouli\n", + "pachoulis\n", + "pachuco\n", + "pachucos\n", + "pachyderm\n", + "pachyderms\n", + "pacific\n", + "pacification\n", + "pacifications\n", + "pacified\n", + "pacifier\n", + "pacifiers\n", + "pacifies\n", + "pacifism\n", + "pacifisms\n", + "pacifist\n", + "pacifistic\n", + "pacifists\n", + "pacify\n", + "pacifying\n", + "pacing\n", + "pack\n", + "packable\n", + "package\n", + "packaged\n", + "packager\n", + "packagers\n", + "packages\n", + "packaging\n", + "packed\n", + "packer\n", + "packers\n", + "packet\n", + "packeted\n", + "packeting\n", + "packets\n", + "packing\n", + "packings\n", + "packly\n", + "packman\n", + "packmen\n", + "packness\n", + "packnesses\n", + "packs\n", + "packsack\n", + "packsacks\n", + "packwax\n", + "packwaxes\n", + "pacs\n", + "pact\n", + "paction\n", + "pactions\n", + "pacts\n", + "pad\n", + "padauk\n", + "padauks\n", + "padded\n", + "paddies\n", + "padding\n", + "paddings\n", + "paddle\n", + "paddled\n", + "paddler\n", + "paddlers\n", + "paddles\n", + "paddling\n", + "paddlings\n", + "paddock\n", + "paddocked\n", + "paddocking\n", + "paddocks\n", + "paddy\n", + "padishah\n", + "padishahs\n", + "padle\n", + "padles\n", + "padlock\n", + "padlocked\n", + "padlocking\n", + "padlocks\n", + "padnag\n", + "padnags\n", + "padouk\n", + "padouks\n", + "padre\n", + "padres\n", + "padri\n", + "padrone\n", + "padrones\n", + "padroni\n", + "pads\n", + "padshah\n", + "padshahs\n", + "paduasoy\n", + "paduasoys\n", + "paean\n", + "paeanism\n", + "paeanisms\n", + "paeans\n", + "paella\n", + "paellas\n", + "paeon\n", + "paeons\n", + "pagan\n", + "pagandom\n", + "pagandoms\n", + "paganise\n", + "paganised\n", + "paganises\n", + "paganish\n", + "paganising\n", + "paganism\n", + "paganisms\n", + "paganist\n", + "paganists\n", + "paganize\n", + "paganized\n", + "paganizes\n", + "paganizing\n", + "pagans\n", + "page\n", + "pageant\n", + "pageantries\n", + "pageantry\n", + "pageants\n", + "pageboy\n", + "pageboys\n", + "paged\n", + "pages\n", + "paginal\n", + "paginate\n", + "paginated\n", + "paginates\n", + "paginating\n", + "paging\n", + "pagod\n", + "pagoda\n", + "pagodas\n", + "pagods\n", + "pagurian\n", + "pagurians\n", + "pagurid\n", + "pagurids\n", + "pah\n", + "pahlavi\n", + "pahlavis\n", + "paid\n", + "paik\n", + "paiked\n", + "paiking\n", + "paiks\n", + "pail\n", + "pailful\n", + "pailfuls\n", + "pails\n", + "pailsful\n", + "pain\n", + "painch\n", + "painches\n", + "pained\n", + "painful\n", + "painfuller\n", + "painfullest\n", + "painfully\n", + "paining\n", + "painkiller\n", + "painkillers\n", + "painkilling\n", + "painless\n", + "painlessly\n", + "pains\n", + "painstaking\n", + "painstakingly\n", + "paint\n", + "paintbrush\n", + "paintbrushes\n", + "painted\n", + "painter\n", + "painters\n", + "paintier\n", + "paintiest\n", + "painting\n", + "paintings\n", + "paints\n", + "painty\n", + "pair\n", + "paired\n", + "pairing\n", + "pairs\n", + "paisa\n", + "paisan\n", + "paisano\n", + "paisanos\n", + "paisans\n", + "paisas\n", + "paise\n", + "paisley\n", + "paisleys\n", + "pajama\n", + "pajamas\n", + "pal\n", + "palabra\n", + "palabras\n", + "palace\n", + "palaced\n", + "palaces\n", + "paladin\n", + "paladins\n", + "palais\n", + "palatable\n", + "palatal\n", + "palatals\n", + "palate\n", + "palates\n", + "palatial\n", + "palatine\n", + "palatines\n", + "palaver\n", + "palavered\n", + "palavering\n", + "palavers\n", + "palazzi\n", + "palazzo\n", + "pale\n", + "palea\n", + "paleae\n", + "paleal\n", + "paled\n", + "paleface\n", + "palefaces\n", + "palely\n", + "paleness\n", + "palenesses\n", + "paleoclimatologic\n", + "paler\n", + "pales\n", + "palest\n", + "palestra\n", + "palestrae\n", + "palestras\n", + "palet\n", + "paletot\n", + "paletots\n", + "palets\n", + "palette\n", + "palettes\n", + "paleways\n", + "palewise\n", + "palfrey\n", + "palfreys\n", + "palier\n", + "paliest\n", + "palikar\n", + "palikars\n", + "paling\n", + "palings\n", + "palinode\n", + "palinodes\n", + "palisade\n", + "palisaded\n", + "palisades\n", + "palisading\n", + "palish\n", + "pall\n", + "palladia\n", + "palladic\n", + "pallbearer\n", + "pallbearers\n", + "palled\n", + "pallet\n", + "pallets\n", + "pallette\n", + "pallettes\n", + "pallia\n", + "pallial\n", + "palliate\n", + "palliated\n", + "palliates\n", + "palliating\n", + "palliation\n", + "palliations\n", + "palliative\n", + "pallid\n", + "pallidly\n", + "pallier\n", + "palliest\n", + "palling\n", + "pallium\n", + "palliums\n", + "pallor\n", + "pallors\n", + "palls\n", + "pally\n", + "palm\n", + "palmar\n", + "palmary\n", + "palmate\n", + "palmated\n", + "palmed\n", + "palmer\n", + "palmers\n", + "palmette\n", + "palmettes\n", + "palmetto\n", + "palmettoes\n", + "palmettos\n", + "palmier\n", + "palmiest\n", + "palming\n", + "palmist\n", + "palmistries\n", + "palmistry\n", + "palmists\n", + "palmitin\n", + "palmitins\n", + "palmlike\n", + "palms\n", + "palmy\n", + "palmyra\n", + "palmyras\n", + "palomino\n", + "palominos\n", + "palooka\n", + "palookas\n", + "palp\n", + "palpable\n", + "palpably\n", + "palpal\n", + "palpate\n", + "palpated\n", + "palpates\n", + "palpating\n", + "palpation\n", + "palpations\n", + "palpator\n", + "palpators\n", + "palpebra\n", + "palpebrae\n", + "palpi\n", + "palpitate\n", + "palpitation\n", + "palpitations\n", + "palps\n", + "palpus\n", + "pals\n", + "palsied\n", + "palsies\n", + "palsy\n", + "palsying\n", + "palter\n", + "paltered\n", + "palterer\n", + "palterers\n", + "paltering\n", + "palters\n", + "paltrier\n", + "paltriest\n", + "paltrily\n", + "paltry\n", + "paludal\n", + "paludism\n", + "paludisms\n", + "paly\n", + "pam\n", + "pampa\n", + "pampas\n", + "pampean\n", + "pampeans\n", + "pamper\n", + "pampered\n", + "pamperer\n", + "pamperers\n", + "pampering\n", + "pampero\n", + "pamperos\n", + "pampers\n", + "pamphlet\n", + "pamphleteer\n", + "pamphleteers\n", + "pamphlets\n", + "pams\n", + "pan\n", + "panacea\n", + "panacean\n", + "panaceas\n", + "panache\n", + "panaches\n", + "panada\n", + "panadas\n", + "panama\n", + "panamas\n", + "panatela\n", + "panatelas\n", + "pancake\n", + "pancaked\n", + "pancakes\n", + "pancaking\n", + "panchax\n", + "panchaxes\n", + "pancreas\n", + "pancreases\n", + "pancreatic\n", + "pancreatitis\n", + "panda\n", + "pandani\n", + "pandanus\n", + "pandanuses\n", + "pandas\n", + "pandect\n", + "pandects\n", + "pandemic\n", + "pandemics\n", + "pandemonium\n", + "pandemoniums\n", + "pander\n", + "pandered\n", + "panderer\n", + "panderers\n", + "pandering\n", + "panders\n", + "pandied\n", + "pandies\n", + "pandit\n", + "pandits\n", + "pandoor\n", + "pandoors\n", + "pandora\n", + "pandoras\n", + "pandore\n", + "pandores\n", + "pandour\n", + "pandours\n", + "pandowdies\n", + "pandowdy\n", + "pandura\n", + "panduras\n", + "pandy\n", + "pandying\n", + "pane\n", + "paned\n", + "panegyric\n", + "panegyrics\n", + "panegyrist\n", + "panegyrists\n", + "panel\n", + "paneled\n", + "paneling\n", + "panelings\n", + "panelist\n", + "panelists\n", + "panelled\n", + "panelling\n", + "panels\n", + "panes\n", + "panetela\n", + "panetelas\n", + "panfish\n", + "panfishes\n", + "panful\n", + "panfuls\n", + "pang\n", + "panga\n", + "pangas\n", + "panged\n", + "pangen\n", + "pangens\n", + "panging\n", + "pangolin\n", + "pangolins\n", + "pangs\n", + "panhandle\n", + "panhandled\n", + "panhandler\n", + "panhandlers\n", + "panhandles\n", + "panhandling\n", + "panhuman\n", + "panic\n", + "panicked\n", + "panickier\n", + "panickiest\n", + "panicking\n", + "panicky\n", + "panicle\n", + "panicled\n", + "panicles\n", + "panics\n", + "panicum\n", + "panicums\n", + "panier\n", + "paniers\n", + "panmixia\n", + "panmixias\n", + "panne\n", + "panned\n", + "pannes\n", + "pannier\n", + "panniers\n", + "pannikin\n", + "pannikins\n", + "panning\n", + "panocha\n", + "panochas\n", + "panoche\n", + "panoches\n", + "panoplies\n", + "panoply\n", + "panoptic\n", + "panorama\n", + "panoramas\n", + "panoramic\n", + "panpipe\n", + "panpipes\n", + "pans\n", + "pansies\n", + "pansophies\n", + "pansophy\n", + "pansy\n", + "pant\n", + "pantaloons\n", + "panted\n", + "pantheon\n", + "pantheons\n", + "panther\n", + "panthers\n", + "pantie\n", + "panties\n", + "pantile\n", + "pantiled\n", + "pantiles\n", + "panting\n", + "pantofle\n", + "pantofles\n", + "pantomime\n", + "pantomimed\n", + "pantomimes\n", + "pantomiming\n", + "pantoum\n", + "pantoums\n", + "pantries\n", + "pantry\n", + "pants\n", + "pantsuit\n", + "pantsuits\n", + "panty\n", + "panzer\n", + "panzers\n", + "pap\n", + "papa\n", + "papacies\n", + "papacy\n", + "papain\n", + "papains\n", + "papal\n", + "papally\n", + "papas\n", + "papaw\n", + "papaws\n", + "papaya\n", + "papayan\n", + "papayas\n", + "paper\n", + "paperboard\n", + "paperboards\n", + "paperboy\n", + "paperboys\n", + "papered\n", + "paperer\n", + "paperers\n", + "paperhanger\n", + "paperhangers\n", + "paperhanging\n", + "paperhangings\n", + "papering\n", + "papers\n", + "paperweight\n", + "paperweights\n", + "paperwork\n", + "papery\n", + "paphian\n", + "paphians\n", + "papilla\n", + "papillae\n", + "papillar\n", + "papillon\n", + "papillons\n", + "papist\n", + "papistic\n", + "papistries\n", + "papistry\n", + "papists\n", + "papoose\n", + "papooses\n", + "pappi\n", + "pappier\n", + "pappies\n", + "pappiest\n", + "pappoose\n", + "pappooses\n", + "pappose\n", + "pappous\n", + "pappus\n", + "pappy\n", + "paprica\n", + "papricas\n", + "paprika\n", + "paprikas\n", + "paps\n", + "papula\n", + "papulae\n", + "papulan\n", + "papular\n", + "papule\n", + "papules\n", + "papulose\n", + "papyral\n", + "papyri\n", + "papyrian\n", + "papyrine\n", + "papyrus\n", + "papyruses\n", + "par\n", + "para\n", + "parable\n", + "parables\n", + "parabola\n", + "parabolas\n", + "parachor\n", + "parachors\n", + "parachute\n", + "parachuted\n", + "parachutes\n", + "parachuting\n", + "parachutist\n", + "parachutists\n", + "parade\n", + "paraded\n", + "parader\n", + "paraders\n", + "parades\n", + "paradigm\n", + "paradigms\n", + "parading\n", + "paradise\n", + "paradises\n", + "parados\n", + "paradoses\n", + "paradox\n", + "paradoxes\n", + "paradoxical\n", + "paradoxically\n", + "paradrop\n", + "paradropped\n", + "paradropping\n", + "paradrops\n", + "paraffin\n", + "paraffined\n", + "paraffinic\n", + "paraffining\n", + "paraffins\n", + "paraform\n", + "paraforms\n", + "paragoge\n", + "paragoges\n", + "paragon\n", + "paragoned\n", + "paragoning\n", + "paragons\n", + "paragraph\n", + "paragraphs\n", + "parakeet\n", + "parakeets\n", + "parallax\n", + "parallaxes\n", + "parallel\n", + "paralleled\n", + "paralleling\n", + "parallelism\n", + "parallelisms\n", + "parallelled\n", + "parallelling\n", + "parallelogram\n", + "parallelograms\n", + "parallels\n", + "paralyse\n", + "paralysed\n", + "paralyses\n", + "paralysing\n", + "paralysis\n", + "paralytic\n", + "paralyze\n", + "paralyzed\n", + "paralyzes\n", + "paralyzing\n", + "paralyzingly\n", + "parament\n", + "paramenta\n", + "paraments\n", + "parameter\n", + "parameters\n", + "parametric\n", + "paramo\n", + "paramos\n", + "paramount\n", + "paramour\n", + "paramours\n", + "parang\n", + "parangs\n", + "paranoea\n", + "paranoeas\n", + "paranoia\n", + "paranoias\n", + "paranoid\n", + "paranoids\n", + "parapet\n", + "parapets\n", + "paraph\n", + "paraphernalia\n", + "paraphrase\n", + "paraphrased\n", + "paraphrases\n", + "paraphrasing\n", + "paraphs\n", + "paraplegia\n", + "paraplegias\n", + "paraplegic\n", + "paraplegics\n", + "paraquat\n", + "paraquats\n", + "paraquet\n", + "paraquets\n", + "paras\n", + "parasang\n", + "parasangs\n", + "parashah\n", + "parashioth\n", + "parashoth\n", + "parasite\n", + "parasites\n", + "parasitic\n", + "parasitism\n", + "parasitisms\n", + "parasol\n", + "parasols\n", + "parasternal\n", + "paratrooper\n", + "paratroopers\n", + "paratroops\n", + "paravane\n", + "paravanes\n", + "parboil\n", + "parboiled\n", + "parboiling\n", + "parboils\n", + "parcel\n", + "parceled\n", + "parceling\n", + "parcelled\n", + "parcelling\n", + "parcels\n", + "parcener\n", + "parceners\n", + "parch\n", + "parched\n", + "parches\n", + "parching\n", + "parchment\n", + "parchments\n", + "pard\n", + "pardah\n", + "pardahs\n", + "pardee\n", + "pardi\n", + "pardie\n", + "pardine\n", + "pardner\n", + "pardners\n", + "pardon\n", + "pardonable\n", + "pardoned\n", + "pardoner\n", + "pardoners\n", + "pardoning\n", + "pardons\n", + "pards\n", + "pardy\n", + "pare\n", + "parecism\n", + "parecisms\n", + "pared\n", + "paregoric\n", + "paregorics\n", + "pareira\n", + "pareiras\n", + "parent\n", + "parentage\n", + "parentages\n", + "parental\n", + "parented\n", + "parentheses\n", + "parenthesis\n", + "parenthetic\n", + "parenthetical\n", + "parenthetically\n", + "parenthood\n", + "parenthoods\n", + "parenting\n", + "parents\n", + "parer\n", + "parers\n", + "pares\n", + "pareses\n", + "paresis\n", + "paresthesia\n", + "paretic\n", + "paretics\n", + "pareu\n", + "pareus\n", + "pareve\n", + "parfait\n", + "parfaits\n", + "parflesh\n", + "parfleshes\n", + "parfocal\n", + "parge\n", + "parged\n", + "parges\n", + "parget\n", + "pargeted\n", + "pargeting\n", + "pargets\n", + "pargetted\n", + "pargetting\n", + "parging\n", + "pargo\n", + "pargos\n", + "parhelia\n", + "parhelic\n", + "pariah\n", + "pariahs\n", + "parian\n", + "parians\n", + "paries\n", + "parietal\n", + "parietals\n", + "parietes\n", + "paring\n", + "parings\n", + "paris\n", + "parises\n", + "parish\n", + "parishes\n", + "parishioner\n", + "parishioners\n", + "parities\n", + "parity\n", + "park\n", + "parka\n", + "parkas\n", + "parked\n", + "parker\n", + "parkers\n", + "parking\n", + "parkings\n", + "parkland\n", + "parklands\n", + "parklike\n", + "parks\n", + "parkway\n", + "parkways\n", + "parlance\n", + "parlances\n", + "parlando\n", + "parlante\n", + "parlay\n", + "parlayed\n", + "parlaying\n", + "parlays\n", + "parle\n", + "parled\n", + "parles\n", + "parley\n", + "parleyed\n", + "parleyer\n", + "parleyers\n", + "parleying\n", + "parleys\n", + "parliament\n", + "parliamentarian\n", + "parliamentarians\n", + "parliamentary\n", + "parliaments\n", + "parling\n", + "parlor\n", + "parlors\n", + "parlour\n", + "parlours\n", + "parlous\n", + "parochial\n", + "parochialism\n", + "parochialisms\n", + "parodic\n", + "parodied\n", + "parodies\n", + "parodist\n", + "parodists\n", + "parodoi\n", + "parodos\n", + "parody\n", + "parodying\n", + "parol\n", + "parole\n", + "paroled\n", + "parolee\n", + "parolees\n", + "paroles\n", + "paroling\n", + "parols\n", + "paronym\n", + "paronyms\n", + "paroquet\n", + "paroquets\n", + "parotic\n", + "parotid\n", + "parotids\n", + "parotoid\n", + "parotoids\n", + "parous\n", + "paroxysm\n", + "paroxysmal\n", + "paroxysms\n", + "parquet\n", + "parqueted\n", + "parqueting\n", + "parquetries\n", + "parquetry\n", + "parquets\n", + "parr\n", + "parrakeet\n", + "parrakeets\n", + "parral\n", + "parrals\n", + "parred\n", + "parrel\n", + "parrels\n", + "parridge\n", + "parridges\n", + "parried\n", + "parries\n", + "parring\n", + "parritch\n", + "parritches\n", + "parroket\n", + "parrokets\n", + "parrot\n", + "parroted\n", + "parroter\n", + "parroters\n", + "parroting\n", + "parrots\n", + "parroty\n", + "parrs\n", + "parry\n", + "parrying\n", + "pars\n", + "parsable\n", + "parse\n", + "parsec\n", + "parsecs\n", + "parsed\n", + "parser\n", + "parsers\n", + "parses\n", + "parsimonies\n", + "parsimonious\n", + "parsimoniously\n", + "parsimony\n", + "parsing\n", + "parsley\n", + "parsleys\n", + "parsnip\n", + "parsnips\n", + "parson\n", + "parsonage\n", + "parsonages\n", + "parsonic\n", + "parsons\n", + "part\n", + "partake\n", + "partaken\n", + "partaker\n", + "partakers\n", + "partakes\n", + "partaking\n", + "partan\n", + "partans\n", + "parted\n", + "parterre\n", + "parterres\n", + "partial\n", + "partialities\n", + "partiality\n", + "partially\n", + "partials\n", + "partible\n", + "participant\n", + "participants\n", + "participate\n", + "participated\n", + "participates\n", + "participating\n", + "participation\n", + "participations\n", + "participatory\n", + "participial\n", + "participle\n", + "participles\n", + "particle\n", + "particles\n", + "particular\n", + "particularly\n", + "particulars\n", + "partied\n", + "parties\n", + "parting\n", + "partings\n", + "partisan\n", + "partisans\n", + "partisanship\n", + "partisanships\n", + "partita\n", + "partitas\n", + "partite\n", + "partition\n", + "partitions\n", + "partizan\n", + "partizans\n", + "partlet\n", + "partlets\n", + "partly\n", + "partner\n", + "partnered\n", + "partnering\n", + "partners\n", + "partnership\n", + "partnerships\n", + "parton\n", + "partons\n", + "partook\n", + "partridge\n", + "partridges\n", + "parts\n", + "parturition\n", + "parturitions\n", + "partway\n", + "party\n", + "partying\n", + "parura\n", + "paruras\n", + "parure\n", + "parures\n", + "parve\n", + "parvenu\n", + "parvenue\n", + "parvenus\n", + "parvis\n", + "parvise\n", + "parvises\n", + "parvolin\n", + "parvolins\n", + "pas\n", + "paschal\n", + "paschals\n", + "pase\n", + "paseo\n", + "paseos\n", + "pases\n", + "pash\n", + "pasha\n", + "pashadom\n", + "pashadoms\n", + "pashalic\n", + "pashalics\n", + "pashalik\n", + "pashaliks\n", + "pashas\n", + "pashed\n", + "pashes\n", + "pashing\n", + "pasquil\n", + "pasquils\n", + "pass\n", + "passable\n", + "passably\n", + "passade\n", + "passades\n", + "passado\n", + "passadoes\n", + "passados\n", + "passage\n", + "passaged\n", + "passages\n", + "passageway\n", + "passageways\n", + "passaging\n", + "passant\n", + "passband\n", + "passbands\n", + "passbook\n", + "passbooks\n", + "passe\n", + "passed\n", + "passee\n", + "passel\n", + "passels\n", + "passenger\n", + "passengers\n", + "passer\n", + "passerby\n", + "passers\n", + "passersby\n", + "passes\n", + "passible\n", + "passim\n", + "passing\n", + "passings\n", + "passion\n", + "passionate\n", + "passionateless\n", + "passionately\n", + "passions\n", + "passive\n", + "passively\n", + "passives\n", + "passivities\n", + "passivity\n", + "passkey\n", + "passkeys\n", + "passless\n", + "passover\n", + "passovers\n", + "passport\n", + "passports\n", + "passus\n", + "passuses\n", + "password\n", + "passwords\n", + "past\n", + "pasta\n", + "pastas\n", + "paste\n", + "pasteboard\n", + "pasteboards\n", + "pasted\n", + "pastel\n", + "pastels\n", + "paster\n", + "pastern\n", + "pasterns\n", + "pasters\n", + "pastes\n", + "pasteurization\n", + "pasteurizations\n", + "pasteurize\n", + "pasteurized\n", + "pasteurizer\n", + "pasteurizers\n", + "pasteurizes\n", + "pasteurizing\n", + "pasticci\n", + "pastiche\n", + "pastiches\n", + "pastier\n", + "pasties\n", + "pastiest\n", + "pastil\n", + "pastille\n", + "pastilles\n", + "pastils\n", + "pastime\n", + "pastimes\n", + "pastina\n", + "pastinas\n", + "pasting\n", + "pastness\n", + "pastnesses\n", + "pastor\n", + "pastoral\n", + "pastorals\n", + "pastorate\n", + "pastorates\n", + "pastored\n", + "pastoring\n", + "pastors\n", + "pastrami\n", + "pastramis\n", + "pastries\n", + "pastromi\n", + "pastromis\n", + "pastry\n", + "pasts\n", + "pastural\n", + "pasture\n", + "pastured\n", + "pasturer\n", + "pasturers\n", + "pastures\n", + "pasturing\n", + "pasty\n", + "pat\n", + "pataca\n", + "patacas\n", + "patagia\n", + "patagium\n", + "patamar\n", + "patamars\n", + "patch\n", + "patched\n", + "patcher\n", + "patchers\n", + "patches\n", + "patchier\n", + "patchiest\n", + "patchily\n", + "patching\n", + "patchwork\n", + "patchworks\n", + "patchy\n", + "pate\n", + "pated\n", + "patella\n", + "patellae\n", + "patellar\n", + "patellas\n", + "paten\n", + "patencies\n", + "patency\n", + "patens\n", + "patent\n", + "patented\n", + "patentee\n", + "patentees\n", + "patenting\n", + "patently\n", + "patentor\n", + "patentors\n", + "patents\n", + "pater\n", + "paternal\n", + "paternally\n", + "paternities\n", + "paternity\n", + "paters\n", + "pates\n", + "path\n", + "pathetic\n", + "pathetically\n", + "pathfinder\n", + "pathfinders\n", + "pathless\n", + "pathogen\n", + "pathogens\n", + "pathologic\n", + "pathological\n", + "pathologies\n", + "pathologist\n", + "pathologists\n", + "pathology\n", + "pathos\n", + "pathoses\n", + "paths\n", + "pathway\n", + "pathways\n", + "patience\n", + "patiences\n", + "patient\n", + "patienter\n", + "patientest\n", + "patiently\n", + "patients\n", + "patin\n", + "patina\n", + "patinae\n", + "patinas\n", + "patine\n", + "patined\n", + "patines\n", + "patining\n", + "patins\n", + "patio\n", + "patios\n", + "patly\n", + "patness\n", + "patnesses\n", + "patois\n", + "patriarch\n", + "patriarchal\n", + "patriarchies\n", + "patriarchs\n", + "patriarchy\n", + "patrician\n", + "patricians\n", + "patricide\n", + "patricides\n", + "patrimonial\n", + "patrimonies\n", + "patrimony\n", + "patriot\n", + "patriotic\n", + "patriotically\n", + "patriotism\n", + "patriotisms\n", + "patriots\n", + "patrol\n", + "patrolled\n", + "patrolling\n", + "patrolman\n", + "patrolmen\n", + "patrols\n", + "patron\n", + "patronage\n", + "patronages\n", + "patronal\n", + "patronize\n", + "patronized\n", + "patronizes\n", + "patronizing\n", + "patronly\n", + "patrons\n", + "patroon\n", + "patroons\n", + "pats\n", + "patsies\n", + "patsy\n", + "pattamar\n", + "pattamars\n", + "patted\n", + "pattee\n", + "patten\n", + "pattens\n", + "patter\n", + "pattered\n", + "patterer\n", + "patterers\n", + "pattering\n", + "pattern\n", + "patterned\n", + "patterning\n", + "patterns\n", + "patters\n", + "pattie\n", + "patties\n", + "patting\n", + "patty\n", + "pattypan\n", + "pattypans\n", + "patulent\n", + "patulous\n", + "paty\n", + "paucities\n", + "paucity\n", + "paughty\n", + "pauldron\n", + "pauldrons\n", + "paulin\n", + "paulins\n", + "paunch\n", + "paunched\n", + "paunches\n", + "paunchier\n", + "paunchiest\n", + "paunchy\n", + "pauper\n", + "paupered\n", + "paupering\n", + "pauperism\n", + "pauperisms\n", + "pauperize\n", + "pauperized\n", + "pauperizes\n", + "pauperizing\n", + "paupers\n", + "pausal\n", + "pause\n", + "paused\n", + "pauser\n", + "pausers\n", + "pauses\n", + "pausing\n", + "pavan\n", + "pavane\n", + "pavanes\n", + "pavans\n", + "pave\n", + "paved\n", + "pavement\n", + "pavements\n", + "paver\n", + "pavers\n", + "paves\n", + "pavid\n", + "pavilion\n", + "pavilioned\n", + "pavilioning\n", + "pavilions\n", + "pavin\n", + "paving\n", + "pavings\n", + "pavins\n", + "pavior\n", + "paviors\n", + "paviour\n", + "paviours\n", + "pavis\n", + "pavise\n", + "paviser\n", + "pavisers\n", + "pavises\n", + "pavonine\n", + "paw\n", + "pawed\n", + "pawer\n", + "pawers\n", + "pawing\n", + "pawkier\n", + "pawkiest\n", + "pawkily\n", + "pawky\n", + "pawl\n", + "pawls\n", + "pawn\n", + "pawnable\n", + "pawnage\n", + "pawnages\n", + "pawnbroker\n", + "pawnbrokers\n", + "pawned\n", + "pawnee\n", + "pawnees\n", + "pawner\n", + "pawners\n", + "pawning\n", + "pawnor\n", + "pawnors\n", + "pawns\n", + "pawnshop\n", + "pawnshops\n", + "pawpaw\n", + "pawpaws\n", + "paws\n", + "pax\n", + "paxes\n", + "paxwax\n", + "paxwaxes\n", + "pay\n", + "payable\n", + "payably\n", + "paycheck\n", + "paychecks\n", + "payday\n", + "paydays\n", + "payed\n", + "payee\n", + "payees\n", + "payer\n", + "payers\n", + "paying\n", + "payload\n", + "payloads\n", + "payment\n", + "payments\n", + "paynim\n", + "paynims\n", + "payoff\n", + "payoffs\n", + "payola\n", + "payolas\n", + "payor\n", + "payors\n", + "payroll\n", + "payrolls\n", + "pays\n", + "pe\n", + "pea\n", + "peace\n", + "peaceable\n", + "peaceably\n", + "peaced\n", + "peaceful\n", + "peacefuller\n", + "peacefullest\n", + "peacefully\n", + "peacekeeper\n", + "peacekeepers\n", + "peacekeeping\n", + "peacekeepings\n", + "peacemaker\n", + "peacemakers\n", + "peaces\n", + "peacetime\n", + "peacetimes\n", + "peach\n", + "peached\n", + "peacher\n", + "peachers\n", + "peaches\n", + "peachier\n", + "peachiest\n", + "peaching\n", + "peachy\n", + "peacing\n", + "peacoat\n", + "peacoats\n", + "peacock\n", + "peacocked\n", + "peacockier\n", + "peacockiest\n", + "peacocking\n", + "peacocks\n", + "peacocky\n", + "peafowl\n", + "peafowls\n", + "peag\n", + "peage\n", + "peages\n", + "peags\n", + "peahen\n", + "peahens\n", + "peak\n", + "peaked\n", + "peakier\n", + "peakiest\n", + "peaking\n", + "peakish\n", + "peakless\n", + "peaklike\n", + "peaks\n", + "peaky\n", + "peal\n", + "pealed\n", + "pealike\n", + "pealing\n", + "peals\n", + "pean\n", + "peans\n", + "peanut\n", + "peanuts\n", + "pear\n", + "pearl\n", + "pearlash\n", + "pearlashes\n", + "pearled\n", + "pearler\n", + "pearlers\n", + "pearlier\n", + "pearliest\n", + "pearling\n", + "pearlite\n", + "pearlites\n", + "pearls\n", + "pearly\n", + "pearmain\n", + "pearmains\n", + "pears\n", + "peart\n", + "pearter\n", + "peartest\n", + "peartly\n", + "peas\n", + "peasant\n", + "peasantries\n", + "peasantry\n", + "peasants\n", + "peascod\n", + "peascods\n", + "pease\n", + "peasecod\n", + "peasecods\n", + "peasen\n", + "peases\n", + "peat\n", + "peatier\n", + "peatiest\n", + "peats\n", + "peaty\n", + "peavey\n", + "peaveys\n", + "peavies\n", + "peavy\n", + "pebble\n", + "pebbled\n", + "pebbles\n", + "pebblier\n", + "pebbliest\n", + "pebbling\n", + "pebbly\n", + "pecan\n", + "pecans\n", + "peccable\n", + "peccadillo\n", + "peccadilloes\n", + "peccadillos\n", + "peccancies\n", + "peccancy\n", + "peccant\n", + "peccaries\n", + "peccary\n", + "peccavi\n", + "peccavis\n", + "pech\n", + "pechan\n", + "pechans\n", + "peched\n", + "peching\n", + "pechs\n", + "peck\n", + "pecked\n", + "pecker\n", + "peckers\n", + "peckier\n", + "peckiest\n", + "pecking\n", + "pecks\n", + "pecky\n", + "pectase\n", + "pectases\n", + "pectate\n", + "pectates\n", + "pecten\n", + "pectens\n", + "pectic\n", + "pectin\n", + "pectines\n", + "pectins\n", + "pectize\n", + "pectized\n", + "pectizes\n", + "pectizing\n", + "pectoral\n", + "pectorals\n", + "peculatation\n", + "peculatations\n", + "peculate\n", + "peculated\n", + "peculates\n", + "peculating\n", + "peculia\n", + "peculiar\n", + "peculiarities\n", + "peculiarity\n", + "peculiarly\n", + "peculiars\n", + "peculium\n", + "pecuniary\n", + "ped\n", + "pedagog\n", + "pedagogic\n", + "pedagogical\n", + "pedagogies\n", + "pedagogs\n", + "pedagogue\n", + "pedagogues\n", + "pedagogy\n", + "pedal\n", + "pedaled\n", + "pedalfer\n", + "pedalfers\n", + "pedalier\n", + "pedaliers\n", + "pedaling\n", + "pedalled\n", + "pedalling\n", + "pedals\n", + "pedant\n", + "pedantic\n", + "pedantries\n", + "pedantry\n", + "pedants\n", + "pedate\n", + "pedately\n", + "peddle\n", + "peddled\n", + "peddler\n", + "peddleries\n", + "peddlers\n", + "peddlery\n", + "peddles\n", + "peddling\n", + "pederast\n", + "pederasts\n", + "pederasty\n", + "pedes\n", + "pedestal\n", + "pedestaled\n", + "pedestaling\n", + "pedestalled\n", + "pedestalling\n", + "pedestals\n", + "pedestrian\n", + "pedestrians\n", + "pediatric\n", + "pediatrician\n", + "pediatricians\n", + "pediatrics\n", + "pedicab\n", + "pedicabs\n", + "pedicel\n", + "pedicels\n", + "pedicle\n", + "pedicled\n", + "pedicles\n", + "pedicure\n", + "pedicured\n", + "pedicures\n", + "pedicuring\n", + "pediform\n", + "pedigree\n", + "pedigrees\n", + "pediment\n", + "pediments\n", + "pedipalp\n", + "pedipalps\n", + "pedlar\n", + "pedlaries\n", + "pedlars\n", + "pedlary\n", + "pedler\n", + "pedlers\n", + "pedocal\n", + "pedocals\n", + "pedologies\n", + "pedology\n", + "pedro\n", + "pedros\n", + "peds\n", + "peduncle\n", + "peduncles\n", + "pee\n", + "peebeen\n", + "peebeens\n", + "peed\n", + "peeing\n", + "peek\n", + "peekaboo\n", + "peekaboos\n", + "peeked\n", + "peeking\n", + "peeks\n", + "peel\n", + "peelable\n", + "peeled\n", + "peeler\n", + "peelers\n", + "peeling\n", + "peelings\n", + "peels\n", + "peen\n", + "peened\n", + "peening\n", + "peens\n", + "peep\n", + "peeped\n", + "peeper\n", + "peepers\n", + "peephole\n", + "peepholes\n", + "peeping\n", + "peeps\n", + "peepshow\n", + "peepshows\n", + "peepul\n", + "peepuls\n", + "peer\n", + "peerage\n", + "peerages\n", + "peered\n", + "peeress\n", + "peeresses\n", + "peerie\n", + "peeries\n", + "peering\n", + "peerless\n", + "peers\n", + "peery\n", + "pees\n", + "peesweep\n", + "peesweeps\n", + "peetweet\n", + "peetweets\n", + "peeve\n", + "peeved\n", + "peeves\n", + "peeving\n", + "peevish\n", + "peevishly\n", + "peevishness\n", + "peevishnesses\n", + "peewee\n", + "peewees\n", + "peewit\n", + "peewits\n", + "peg\n", + "pegboard\n", + "pegboards\n", + "pegbox\n", + "pegboxes\n", + "pegged\n", + "pegging\n", + "pegless\n", + "peglike\n", + "pegs\n", + "peignoir\n", + "peignoirs\n", + "pein\n", + "peined\n", + "peining\n", + "peins\n", + "peise\n", + "peised\n", + "peises\n", + "peising\n", + "pekan\n", + "pekans\n", + "peke\n", + "pekes\n", + "pekin\n", + "pekins\n", + "pekoe\n", + "pekoes\n", + "pelage\n", + "pelages\n", + "pelagial\n", + "pelagic\n", + "pele\n", + "pelerine\n", + "pelerines\n", + "peles\n", + "pelf\n", + "pelfs\n", + "pelican\n", + "pelicans\n", + "pelisse\n", + "pelisses\n", + "pelite\n", + "pelites\n", + "pelitic\n", + "pellagra\n", + "pellagras\n", + "pellet\n", + "pelletal\n", + "pelleted\n", + "pelleting\n", + "pelletize\n", + "pelletized\n", + "pelletizes\n", + "pelletizing\n", + "pellets\n", + "pellicle\n", + "pellicles\n", + "pellmell\n", + "pellmells\n", + "pellucid\n", + "pelon\n", + "peloria\n", + "pelorian\n", + "pelorias\n", + "peloric\n", + "pelorus\n", + "peloruses\n", + "pelota\n", + "pelotas\n", + "pelt\n", + "peltast\n", + "peltasts\n", + "peltate\n", + "pelted\n", + "pelter\n", + "pelters\n", + "pelting\n", + "peltries\n", + "peltry\n", + "pelts\n", + "pelves\n", + "pelvic\n", + "pelvics\n", + "pelvis\n", + "pelvises\n", + "pembina\n", + "pembinas\n", + "pemican\n", + "pemicans\n", + "pemmican\n", + "pemmicans\n", + "pemoline\n", + "pemolines\n", + "pemphix\n", + "pemphixes\n", + "pen\n", + "penal\n", + "penalise\n", + "penalised\n", + "penalises\n", + "penalising\n", + "penalities\n", + "penality\n", + "penalize\n", + "penalized\n", + "penalizes\n", + "penalizing\n", + "penally\n", + "penalties\n", + "penalty\n", + "penance\n", + "penanced\n", + "penances\n", + "penancing\n", + "penang\n", + "penangs\n", + "penates\n", + "pence\n", + "pencel\n", + "pencels\n", + "penchant\n", + "penchants\n", + "pencil\n", + "penciled\n", + "penciler\n", + "pencilers\n", + "penciling\n", + "pencilled\n", + "pencilling\n", + "pencils\n", + "pend\n", + "pendaflex\n", + "pendant\n", + "pendants\n", + "pended\n", + "pendencies\n", + "pendency\n", + "pendent\n", + "pendents\n", + "pending\n", + "pends\n", + "pendular\n", + "pendulous\n", + "pendulum\n", + "pendulums\n", + "penes\n", + "penetrable\n", + "penetration\n", + "penetrations\n", + "penetrative\n", + "pengo\n", + "pengos\n", + "penguin\n", + "penguins\n", + "penial\n", + "penicil\n", + "penicillin\n", + "penicillins\n", + "penicils\n", + "penile\n", + "peninsula\n", + "peninsular\n", + "peninsulas\n", + "penis\n", + "penises\n", + "penitence\n", + "penitences\n", + "penitent\n", + "penitential\n", + "penitentiaries\n", + "penitentiary\n", + "penitents\n", + "penknife\n", + "penknives\n", + "penlight\n", + "penlights\n", + "penlite\n", + "penlites\n", + "penman\n", + "penmanship\n", + "penmanships\n", + "penmen\n", + "penna\n", + "pennae\n", + "penname\n", + "pennames\n", + "pennant\n", + "pennants\n", + "pennate\n", + "pennated\n", + "penned\n", + "penner\n", + "penners\n", + "penni\n", + "pennia\n", + "pennies\n", + "penniless\n", + "pennine\n", + "pennines\n", + "penning\n", + "pennis\n", + "pennon\n", + "pennoned\n", + "pennons\n", + "pennsylvania\n", + "penny\n", + "penoche\n", + "penoches\n", + "penologies\n", + "penology\n", + "penoncel\n", + "penoncels\n", + "penpoint\n", + "penpoints\n", + "pens\n", + "pensee\n", + "pensees\n", + "pensil\n", + "pensile\n", + "pensils\n", + "pension\n", + "pensione\n", + "pensioned\n", + "pensioner\n", + "pensioners\n", + "pensiones\n", + "pensioning\n", + "pensions\n", + "pensive\n", + "pensively\n", + "penster\n", + "pensters\n", + "penstock\n", + "penstocks\n", + "pent\n", + "pentacle\n", + "pentacles\n", + "pentad\n", + "pentads\n", + "pentagon\n", + "pentagonal\n", + "pentagons\n", + "pentagram\n", + "pentagrams\n", + "pentameter\n", + "pentameters\n", + "pentane\n", + "pentanes\n", + "pentarch\n", + "pentarchs\n", + "penthouse\n", + "penthouses\n", + "pentomic\n", + "pentosan\n", + "pentosans\n", + "pentose\n", + "pentoses\n", + "pentyl\n", + "pentyls\n", + "penuche\n", + "penuches\n", + "penuchi\n", + "penuchis\n", + "penuchle\n", + "penuchles\n", + "penuckle\n", + "penuckles\n", + "penult\n", + "penults\n", + "penumbra\n", + "penumbrae\n", + "penumbras\n", + "penuries\n", + "penurious\n", + "penury\n", + "peon\n", + "peonage\n", + "peonages\n", + "peones\n", + "peonies\n", + "peonism\n", + "peonisms\n", + "peons\n", + "peony\n", + "people\n", + "peopled\n", + "peopler\n", + "peoplers\n", + "peoples\n", + "peopling\n", + "pep\n", + "peperoni\n", + "peperonis\n", + "pepla\n", + "peplos\n", + "peploses\n", + "peplum\n", + "peplumed\n", + "peplums\n", + "peplus\n", + "pepluses\n", + "pepo\n", + "peponida\n", + "peponidas\n", + "peponium\n", + "peponiums\n", + "pepos\n", + "pepped\n", + "pepper\n", + "peppercorn\n", + "peppercorns\n", + "peppered\n", + "pepperer\n", + "pepperers\n", + "peppering\n", + "peppermint\n", + "peppermints\n", + "peppers\n", + "peppery\n", + "peppier\n", + "peppiest\n", + "peppily\n", + "pepping\n", + "peppy\n", + "peps\n", + "pepsin\n", + "pepsine\n", + "pepsines\n", + "pepsins\n", + "peptic\n", + "peptics\n", + "peptid\n", + "peptide\n", + "peptides\n", + "peptidic\n", + "peptids\n", + "peptize\n", + "peptized\n", + "peptizer\n", + "peptizers\n", + "peptizes\n", + "peptizing\n", + "peptone\n", + "peptones\n", + "peptonic\n", + "per\n", + "peracid\n", + "peracids\n", + "perambulate\n", + "perambulated\n", + "perambulates\n", + "perambulating\n", + "perambulation\n", + "perambulations\n", + "percale\n", + "percales\n", + "perceivable\n", + "perceive\n", + "perceived\n", + "perceives\n", + "perceiving\n", + "percent\n", + "percentage\n", + "percentages\n", + "percentile\n", + "percentiles\n", + "percents\n", + "percept\n", + "perceptible\n", + "perceptibly\n", + "perception\n", + "perceptions\n", + "perceptive\n", + "perceptively\n", + "percepts\n", + "perch\n", + "perched\n", + "percher\n", + "perchers\n", + "perches\n", + "perching\n", + "percoid\n", + "percoids\n", + "percolate\n", + "percolated\n", + "percolates\n", + "percolating\n", + "percolator\n", + "percolators\n", + "percuss\n", + "percussed\n", + "percusses\n", + "percussing\n", + "percussion\n", + "percussions\n", + "perdu\n", + "perdue\n", + "perdues\n", + "perdus\n", + "perdy\n", + "pere\n", + "peregrin\n", + "peregrins\n", + "peremptorily\n", + "peremptory\n", + "perennial\n", + "perennially\n", + "perennials\n", + "peres\n", + "perfect\n", + "perfecta\n", + "perfectas\n", + "perfected\n", + "perfecter\n", + "perfectest\n", + "perfectibilities\n", + "perfectibility\n", + "perfectible\n", + "perfecting\n", + "perfection\n", + "perfectionist\n", + "perfectionists\n", + "perfections\n", + "perfectly\n", + "perfectness\n", + "perfectnesses\n", + "perfecto\n", + "perfectos\n", + "perfects\n", + "perfidies\n", + "perfidious\n", + "perfidiously\n", + "perfidy\n", + "perforate\n", + "perforated\n", + "perforates\n", + "perforating\n", + "perforation\n", + "perforations\n", + "perforce\n", + "perform\n", + "performance\n", + "performances\n", + "performed\n", + "performer\n", + "performers\n", + "performing\n", + "performs\n", + "perfume\n", + "perfumed\n", + "perfumer\n", + "perfumers\n", + "perfumes\n", + "perfuming\n", + "perfunctory\n", + "perfuse\n", + "perfused\n", + "perfuses\n", + "perfusing\n", + "pergola\n", + "pergolas\n", + "perhaps\n", + "perhapses\n", + "peri\n", + "perianth\n", + "perianths\n", + "periapt\n", + "periapts\n", + "periblem\n", + "periblems\n", + "pericarp\n", + "pericarps\n", + "pericopae\n", + "pericope\n", + "pericopes\n", + "periderm\n", + "periderms\n", + "peridia\n", + "peridial\n", + "peridium\n", + "peridot\n", + "peridots\n", + "perigeal\n", + "perigean\n", + "perigee\n", + "perigees\n", + "perigon\n", + "perigons\n", + "perigynies\n", + "perigyny\n", + "peril\n", + "periled\n", + "periling\n", + "perilla\n", + "perillas\n", + "perilled\n", + "perilling\n", + "perilous\n", + "perilously\n", + "perils\n", + "perilune\n", + "perilunes\n", + "perimeter\n", + "perimeters\n", + "perinea\n", + "perineal\n", + "perineum\n", + "period\n", + "periodic\n", + "periodical\n", + "periodically\n", + "periodicals\n", + "periodid\n", + "periodids\n", + "periods\n", + "periotic\n", + "peripatetic\n", + "peripeties\n", + "peripety\n", + "peripheral\n", + "peripheries\n", + "periphery\n", + "peripter\n", + "peripters\n", + "perique\n", + "periques\n", + "peris\n", + "perisarc\n", + "perisarcs\n", + "periscope\n", + "periscopes\n", + "perish\n", + "perishable\n", + "perishables\n", + "perished\n", + "perishes\n", + "perishing\n", + "periwig\n", + "periwigs\n", + "perjure\n", + "perjured\n", + "perjurer\n", + "perjurers\n", + "perjures\n", + "perjuries\n", + "perjuring\n", + "perjury\n", + "perk\n", + "perked\n", + "perkier\n", + "perkiest\n", + "perkily\n", + "perking\n", + "perkish\n", + "perks\n", + "perky\n", + "perlite\n", + "perlites\n", + "perlitic\n", + "perm\n", + "permanence\n", + "permanences\n", + "permanencies\n", + "permanency\n", + "permanent\n", + "permanently\n", + "permanents\n", + "permeability\n", + "permeable\n", + "permease\n", + "permeases\n", + "permeate\n", + "permeated\n", + "permeates\n", + "permeating\n", + "permeation\n", + "permeations\n", + "permissible\n", + "permission\n", + "permissions\n", + "permissive\n", + "permissiveness\n", + "permissivenesses\n", + "permit\n", + "permits\n", + "permitted\n", + "permitting\n", + "perms\n", + "permute\n", + "permuted\n", + "permutes\n", + "permuting\n", + "pernicious\n", + "perniciously\n", + "peroneal\n", + "peroral\n", + "perorate\n", + "perorated\n", + "perorates\n", + "perorating\n", + "peroxid\n", + "peroxide\n", + "peroxided\n", + "peroxides\n", + "peroxiding\n", + "peroxids\n", + "perpend\n", + "perpended\n", + "perpendicular\n", + "perpendicularities\n", + "perpendicularity\n", + "perpendicularly\n", + "perpendiculars\n", + "perpending\n", + "perpends\n", + "perpent\n", + "perpents\n", + "perpetrate\n", + "perpetrated\n", + "perpetrates\n", + "perpetrating\n", + "perpetration\n", + "perpetrations\n", + "perpetrator\n", + "perpetrators\n", + "perpetual\n", + "perpetually\n", + "perpetuate\n", + "perpetuated\n", + "perpetuates\n", + "perpetuating\n", + "perpetuation\n", + "perpetuations\n", + "perpetuities\n", + "perpetuity\n", + "perplex\n", + "perplexed\n", + "perplexes\n", + "perplexing\n", + "perplexities\n", + "perplexity\n", + "perquisite\n", + "perquisites\n", + "perries\n", + "perron\n", + "perrons\n", + "perry\n", + "persalt\n", + "persalts\n", + "perse\n", + "persecute\n", + "persecuted\n", + "persecutes\n", + "persecuting\n", + "persecution\n", + "persecutions\n", + "persecutor\n", + "persecutors\n", + "perses\n", + "perseverance\n", + "perseverances\n", + "persevere\n", + "persevered\n", + "perseveres\n", + "persevering\n", + "persist\n", + "persisted\n", + "persistence\n", + "persistences\n", + "persistencies\n", + "persistency\n", + "persistent\n", + "persistently\n", + "persisting\n", + "persists\n", + "person\n", + "persona\n", + "personable\n", + "personae\n", + "personage\n", + "personages\n", + "personal\n", + "personalities\n", + "personality\n", + "personalize\n", + "personalized\n", + "personalizes\n", + "personalizing\n", + "personally\n", + "personals\n", + "personas\n", + "personification\n", + "personifications\n", + "personifies\n", + "personify\n", + "personnel\n", + "persons\n", + "perspective\n", + "perspectives\n", + "perspicacious\n", + "perspicacities\n", + "perspicacity\n", + "perspiration\n", + "perspirations\n", + "perspire\n", + "perspired\n", + "perspires\n", + "perspiring\n", + "perspiry\n", + "persuade\n", + "persuaded\n", + "persuades\n", + "persuading\n", + "persuasion\n", + "persuasions\n", + "persuasive\n", + "persuasively\n", + "persuasiveness\n", + "persuasivenesses\n", + "pert\n", + "pertain\n", + "pertained\n", + "pertaining\n", + "pertains\n", + "perter\n", + "pertest\n", + "pertinacious\n", + "pertinacities\n", + "pertinacity\n", + "pertinence\n", + "pertinences\n", + "pertinent\n", + "pertly\n", + "pertness\n", + "pertnesses\n", + "perturb\n", + "perturbation\n", + "perturbations\n", + "perturbed\n", + "perturbing\n", + "perturbs\n", + "peruke\n", + "perukes\n", + "perusal\n", + "perusals\n", + "peruse\n", + "perused\n", + "peruser\n", + "perusers\n", + "peruses\n", + "perusing\n", + "pervade\n", + "pervaded\n", + "pervader\n", + "pervaders\n", + "pervades\n", + "pervading\n", + "pervasive\n", + "perverse\n", + "perversely\n", + "perverseness\n", + "perversenesses\n", + "perversion\n", + "perversions\n", + "perversities\n", + "perversity\n", + "pervert\n", + "perverted\n", + "perverting\n", + "perverts\n", + "pervious\n", + "pes\n", + "pesade\n", + "pesades\n", + "peseta\n", + "pesetas\n", + "pesewa\n", + "pesewas\n", + "peskier\n", + "peskiest\n", + "peskily\n", + "pesky\n", + "peso\n", + "pesos\n", + "pessaries\n", + "pessary\n", + "pessimism\n", + "pessimisms\n", + "pessimist\n", + "pessimistic\n", + "pessimists\n", + "pest\n", + "pester\n", + "pestered\n", + "pesterer\n", + "pesterers\n", + "pestering\n", + "pesters\n", + "pesthole\n", + "pestholes\n", + "pestilence\n", + "pestilences\n", + "pestilent\n", + "pestle\n", + "pestled\n", + "pestles\n", + "pestling\n", + "pests\n", + "pet\n", + "petal\n", + "petaled\n", + "petaline\n", + "petalled\n", + "petalodies\n", + "petalody\n", + "petaloid\n", + "petalous\n", + "petals\n", + "petard\n", + "petards\n", + "petasos\n", + "petasoses\n", + "petasus\n", + "petasuses\n", + "petcock\n", + "petcocks\n", + "petechia\n", + "petechiae\n", + "peter\n", + "petered\n", + "petering\n", + "peters\n", + "petiolar\n", + "petiole\n", + "petioled\n", + "petioles\n", + "petit\n", + "petite\n", + "petites\n", + "petition\n", + "petitioned\n", + "petitioner\n", + "petitioners\n", + "petitioning\n", + "petitions\n", + "petrel\n", + "petrels\n", + "petri\n", + "petrifaction\n", + "petrifactions\n", + "petrified\n", + "petrifies\n", + "petrify\n", + "petrifying\n", + "petrol\n", + "petroleum\n", + "petroleums\n", + "petrolic\n", + "petrols\n", + "petronel\n", + "petronels\n", + "petrosal\n", + "petrous\n", + "pets\n", + "petted\n", + "pettedly\n", + "petter\n", + "petters\n", + "petti\n", + "petticoat\n", + "petticoats\n", + "pettier\n", + "pettiest\n", + "pettifog\n", + "pettifogged\n", + "pettifogging\n", + "pettifogs\n", + "pettily\n", + "pettiness\n", + "pettinesses\n", + "petting\n", + "pettish\n", + "pettle\n", + "pettled\n", + "pettles\n", + "pettling\n", + "petto\n", + "petty\n", + "petulance\n", + "petulances\n", + "petulant\n", + "petulantly\n", + "petunia\n", + "petunias\n", + "petuntse\n", + "petuntses\n", + "petuntze\n", + "petuntzes\n", + "pew\n", + "pewee\n", + "pewees\n", + "pewit\n", + "pewits\n", + "pews\n", + "pewter\n", + "pewterer\n", + "pewterers\n", + "pewters\n", + "peyote\n", + "peyotes\n", + "peyotl\n", + "peyotls\n", + "peytral\n", + "peytrals\n", + "peytrel\n", + "peytrels\n", + "pfennig\n", + "pfennige\n", + "pfennigs\n", + "phaeton\n", + "phaetons\n", + "phage\n", + "phages\n", + "phalange\n", + "phalanges\n", + "phalanx\n", + "phalanxes\n", + "phalli\n", + "phallic\n", + "phallics\n", + "phallism\n", + "phallisms\n", + "phallist\n", + "phallists\n", + "phallus\n", + "phalluses\n", + "phantasied\n", + "phantasies\n", + "phantasm\n", + "phantasms\n", + "phantast\n", + "phantasts\n", + "phantasy\n", + "phantasying\n", + "phantom\n", + "phantoms\n", + "pharaoh\n", + "pharaohs\n", + "pharisaic\n", + "pharisee\n", + "pharisees\n", + "pharmaceutical\n", + "pharmaceuticals\n", + "pharmacies\n", + "pharmacist\n", + "pharmacologic\n", + "pharmacological\n", + "pharmacologist\n", + "pharmacologists\n", + "pharmacology\n", + "pharmacy\n", + "pharos\n", + "pharoses\n", + "pharyngeal\n", + "pharynges\n", + "pharynx\n", + "pharynxes\n", + "phase\n", + "phaseal\n", + "phased\n", + "phaseout\n", + "phaseouts\n", + "phases\n", + "phasic\n", + "phasing\n", + "phasis\n", + "phasmid\n", + "phasmids\n", + "phat\n", + "phatic\n", + "pheasant\n", + "pheasants\n", + "phellem\n", + "phellems\n", + "phelonia\n", + "phenazin\n", + "phenazins\n", + "phenetic\n", + "phenetol\n", + "phenetols\n", + "phenix\n", + "phenixes\n", + "phenol\n", + "phenolic\n", + "phenolics\n", + "phenols\n", + "phenom\n", + "phenomena\n", + "phenomenal\n", + "phenomenon\n", + "phenomenons\n", + "phenoms\n", + "phenyl\n", + "phenylic\n", + "phenyls\n", + "phew\n", + "phi\n", + "phial\n", + "phials\n", + "philabeg\n", + "philabegs\n", + "philadelphia\n", + "philander\n", + "philandered\n", + "philanderer\n", + "philanderers\n", + "philandering\n", + "philanders\n", + "philanthropic\n", + "philanthropies\n", + "philanthropist\n", + "philanthropists\n", + "philanthropy\n", + "philatelies\n", + "philatelist\n", + "philatelists\n", + "philately\n", + "philharmonic\n", + "philibeg\n", + "philibegs\n", + "philistine\n", + "philistines\n", + "philodendron\n", + "philodendrons\n", + "philomel\n", + "philomels\n", + "philosopher\n", + "philosophers\n", + "philosophic\n", + "philosophical\n", + "philosophically\n", + "philosophies\n", + "philosophize\n", + "philosophized\n", + "philosophizes\n", + "philosophizing\n", + "philosophy\n", + "philter\n", + "philtered\n", + "philtering\n", + "philters\n", + "philtre\n", + "philtred\n", + "philtres\n", + "philtring\n", + "phimoses\n", + "phimosis\n", + "phimotic\n", + "phis\n", + "phiz\n", + "phizes\n", + "phlebitis\n", + "phlegm\n", + "phlegmatic\n", + "phlegmier\n", + "phlegmiest\n", + "phlegms\n", + "phlegmy\n", + "phloem\n", + "phloems\n", + "phlox\n", + "phloxes\n", + "phobia\n", + "phobias\n", + "phobic\n", + "phocine\n", + "phoebe\n", + "phoebes\n", + "phoenix\n", + "phoenixes\n", + "phon\n", + "phonal\n", + "phonate\n", + "phonated\n", + "phonates\n", + "phonating\n", + "phone\n", + "phoned\n", + "phoneme\n", + "phonemes\n", + "phonemic\n", + "phones\n", + "phonetic\n", + "phonetician\n", + "phoneticians\n", + "phonetics\n", + "phoney\n", + "phoneys\n", + "phonic\n", + "phonics\n", + "phonier\n", + "phonies\n", + "phoniest\n", + "phonily\n", + "phoning\n", + "phono\n", + "phonograph\n", + "phonographally\n", + "phonographic\n", + "phonographs\n", + "phonon\n", + "phonons\n", + "phonos\n", + "phons\n", + "phony\n", + "phooey\n", + "phorate\n", + "phorates\n", + "phosgene\n", + "phosgenes\n", + "phosphatase\n", + "phosphate\n", + "phosphates\n", + "phosphatic\n", + "phosphid\n", + "phosphids\n", + "phosphin\n", + "phosphins\n", + "phosphor\n", + "phosphorescence\n", + "phosphorescences\n", + "phosphorescent\n", + "phosphorescently\n", + "phosphoric\n", + "phosphorous\n", + "phosphors\n", + "phosphorus\n", + "phot\n", + "photic\n", + "photics\n", + "photo\n", + "photoed\n", + "photoelectric\n", + "photoelectrically\n", + "photog\n", + "photogenic\n", + "photograph\n", + "photographally\n", + "photographed\n", + "photographer\n", + "photographers\n", + "photographic\n", + "photographies\n", + "photographing\n", + "photographs\n", + "photography\n", + "photogs\n", + "photoing\n", + "photomap\n", + "photomapped\n", + "photomapping\n", + "photomaps\n", + "photon\n", + "photonic\n", + "photons\n", + "photopia\n", + "photopias\n", + "photopic\n", + "photos\n", + "photoset\n", + "photosets\n", + "photosetting\n", + "photosynthesis\n", + "photosynthesises\n", + "photosynthesize\n", + "photosynthesized\n", + "photosynthesizes\n", + "photosynthesizing\n", + "photosynthetic\n", + "phots\n", + "phpht\n", + "phrasal\n", + "phrase\n", + "phrased\n", + "phraseologies\n", + "phraseology\n", + "phrases\n", + "phrasing\n", + "phrasings\n", + "phratral\n", + "phratric\n", + "phratries\n", + "phratry\n", + "phreatic\n", + "phrenic\n", + "phrensied\n", + "phrensies\n", + "phrensy\n", + "phrensying\n", + "pht\n", + "phthalic\n", + "phthalin\n", + "phthalins\n", + "phthises\n", + "phthisic\n", + "phthisics\n", + "phthisis\n", + "phyla\n", + "phylae\n", + "phylar\n", + "phylaxis\n", + "phylaxises\n", + "phyle\n", + "phyleses\n", + "phylesis\n", + "phylesises\n", + "phyletic\n", + "phylic\n", + "phyllaries\n", + "phyllary\n", + "phyllite\n", + "phyllites\n", + "phyllode\n", + "phyllodes\n", + "phylloid\n", + "phylloids\n", + "phyllome\n", + "phyllomes\n", + "phylon\n", + "phylum\n", + "physes\n", + "physic\n", + "physical\n", + "physically\n", + "physicals\n", + "physician\n", + "physicians\n", + "physicist\n", + "physicists\n", + "physicked\n", + "physicking\n", + "physics\n", + "physiognomies\n", + "physiognomy\n", + "physiologic\n", + "physiological\n", + "physiologies\n", + "physiologist\n", + "physiologists\n", + "physiology\n", + "physiotherapies\n", + "physiotherapy\n", + "physique\n", + "physiques\n", + "physis\n", + "phytane\n", + "phytanes\n", + "phytin\n", + "phytins\n", + "phytoid\n", + "phyton\n", + "phytonic\n", + "phytons\n", + "pi\n", + "pia\n", + "piacular\n", + "piaffe\n", + "piaffed\n", + "piaffer\n", + "piaffers\n", + "piaffes\n", + "piaffing\n", + "pial\n", + "pian\n", + "pianic\n", + "pianism\n", + "pianisms\n", + "pianist\n", + "pianists\n", + "piano\n", + "pianos\n", + "pians\n", + "pias\n", + "piasaba\n", + "piasabas\n", + "piasava\n", + "piasavas\n", + "piassaba\n", + "piassabas\n", + "piassava\n", + "piassavas\n", + "piaster\n", + "piasters\n", + "piastre\n", + "piastres\n", + "piazza\n", + "piazzas\n", + "piazze\n", + "pibroch\n", + "pibrochs\n", + "pic\n", + "pica\n", + "picacho\n", + "picachos\n", + "picador\n", + "picadores\n", + "picadors\n", + "pical\n", + "picara\n", + "picaras\n", + "picaro\n", + "picaroon\n", + "picarooned\n", + "picarooning\n", + "picaroons\n", + "picaros\n", + "picas\n", + "picayune\n", + "picayunes\n", + "piccolo\n", + "piccolos\n", + "pice\n", + "piceous\n", + "pick\n", + "pickadil\n", + "pickadils\n", + "pickax\n", + "pickaxe\n", + "pickaxed\n", + "pickaxes\n", + "pickaxing\n", + "picked\n", + "pickeer\n", + "pickeered\n", + "pickeering\n", + "pickeers\n", + "picker\n", + "pickerel\n", + "pickerels\n", + "pickers\n", + "picket\n", + "picketed\n", + "picketer\n", + "picketers\n", + "picketing\n", + "pickets\n", + "pickier\n", + "pickiest\n", + "picking\n", + "pickings\n", + "pickle\n", + "pickled\n", + "pickles\n", + "pickling\n", + "picklock\n", + "picklocks\n", + "pickoff\n", + "pickoffs\n", + "pickpocket\n", + "pickpockets\n", + "picks\n", + "pickup\n", + "pickups\n", + "pickwick\n", + "pickwicks\n", + "picky\n", + "picloram\n", + "piclorams\n", + "picnic\n", + "picnicked\n", + "picnicking\n", + "picnicky\n", + "picnics\n", + "picogram\n", + "picograms\n", + "picolin\n", + "picoline\n", + "picolines\n", + "picolins\n", + "picot\n", + "picoted\n", + "picotee\n", + "picotees\n", + "picoting\n", + "picots\n", + "picquet\n", + "picquets\n", + "picrate\n", + "picrated\n", + "picrates\n", + "picric\n", + "picrite\n", + "picrites\n", + "pics\n", + "pictorial\n", + "picture\n", + "pictured\n", + "pictures\n", + "picturesque\n", + "picturesqueness\n", + "picturesquenesses\n", + "picturing\n", + "picul\n", + "piculs\n", + "piddle\n", + "piddled\n", + "piddler\n", + "piddlers\n", + "piddles\n", + "piddling\n", + "piddock\n", + "piddocks\n", + "pidgin\n", + "pidgins\n", + "pie\n", + "piebald\n", + "piebalds\n", + "piece\n", + "pieced\n", + "piecemeal\n", + "piecer\n", + "piecers\n", + "pieces\n", + "piecing\n", + "piecings\n", + "piecrust\n", + "piecrusts\n", + "pied\n", + "piedfort\n", + "piedforts\n", + "piedmont\n", + "piedmonts\n", + "piefort\n", + "pieforts\n", + "pieing\n", + "pieplant\n", + "pieplants\n", + "pier\n", + "pierce\n", + "pierced\n", + "piercer\n", + "piercers\n", + "pierces\n", + "piercing\n", + "pierrot\n", + "pierrots\n", + "piers\n", + "pies\n", + "pieta\n", + "pietas\n", + "pieties\n", + "pietism\n", + "pietisms\n", + "pietist\n", + "pietists\n", + "piety\n", + "piffle\n", + "piffled\n", + "piffles\n", + "piffling\n", + "pig\n", + "pigboat\n", + "pigboats\n", + "pigeon\n", + "pigeonhole\n", + "pigeonholed\n", + "pigeonholes\n", + "pigeonholing\n", + "pigeons\n", + "pigfish\n", + "pigfishes\n", + "pigged\n", + "piggeries\n", + "piggery\n", + "piggie\n", + "piggies\n", + "piggin\n", + "pigging\n", + "piggins\n", + "piggish\n", + "piggy\n", + "piggyback\n", + "pigheaded\n", + "piglet\n", + "piglets\n", + "pigment\n", + "pigmentation\n", + "pigmentations\n", + "pigmented\n", + "pigmenting\n", + "pigments\n", + "pigmies\n", + "pigmy\n", + "pignora\n", + "pignus\n", + "pignut\n", + "pignuts\n", + "pigpen\n", + "pigpens\n", + "pigs\n", + "pigskin\n", + "pigskins\n", + "pigsney\n", + "pigsneys\n", + "pigstick\n", + "pigsticked\n", + "pigsticking\n", + "pigsticks\n", + "pigsties\n", + "pigsty\n", + "pigtail\n", + "pigtails\n", + "pigweed\n", + "pigweeds\n", + "piing\n", + "pika\n", + "pikake\n", + "pikakes\n", + "pikas\n", + "pike\n", + "piked\n", + "pikeman\n", + "pikemen\n", + "piker\n", + "pikers\n", + "pikes\n", + "pikestaff\n", + "pikestaves\n", + "piking\n", + "pilaf\n", + "pilaff\n", + "pilaffs\n", + "pilafs\n", + "pilar\n", + "pilaster\n", + "pilasters\n", + "pilau\n", + "pilaus\n", + "pilaw\n", + "pilaws\n", + "pilchard\n", + "pilchards\n", + "pile\n", + "pilea\n", + "pileate\n", + "pileated\n", + "piled\n", + "pilei\n", + "pileous\n", + "piles\n", + "pileum\n", + "pileup\n", + "pileups\n", + "pileus\n", + "pilewort\n", + "pileworts\n", + "pilfer\n", + "pilfered\n", + "pilferer\n", + "pilferers\n", + "pilfering\n", + "pilfers\n", + "pilgrim\n", + "pilgrimage\n", + "pilgrimages\n", + "pilgrims\n", + "pili\n", + "piliform\n", + "piling\n", + "pilings\n", + "pilis\n", + "pill\n", + "pillage\n", + "pillaged\n", + "pillager\n", + "pillagers\n", + "pillages\n", + "pillaging\n", + "pillar\n", + "pillared\n", + "pillaring\n", + "pillars\n", + "pillbox\n", + "pillboxes\n", + "pilled\n", + "pilling\n", + "pillion\n", + "pillions\n", + "pilloried\n", + "pillories\n", + "pillory\n", + "pillorying\n", + "pillow\n", + "pillowcase\n", + "pillowcases\n", + "pillowed\n", + "pillowing\n", + "pillows\n", + "pillowy\n", + "pills\n", + "pilose\n", + "pilosities\n", + "pilosity\n", + "pilot\n", + "pilotage\n", + "pilotages\n", + "piloted\n", + "piloting\n", + "pilotings\n", + "pilotless\n", + "pilots\n", + "pilous\n", + "pilsener\n", + "pilseners\n", + "pilsner\n", + "pilsners\n", + "pilular\n", + "pilule\n", + "pilules\n", + "pilus\n", + "pily\n", + "pima\n", + "pimas\n", + "pimento\n", + "pimentos\n", + "pimiento\n", + "pimientos\n", + "pimp\n", + "pimped\n", + "pimping\n", + "pimple\n", + "pimpled\n", + "pimples\n", + "pimplier\n", + "pimpliest\n", + "pimply\n", + "pimps\n", + "pin\n", + "pina\n", + "pinafore\n", + "pinafores\n", + "pinang\n", + "pinangs\n", + "pinas\n", + "pinaster\n", + "pinasters\n", + "pinata\n", + "pinatas\n", + "pinball\n", + "pinballs\n", + "pinbone\n", + "pinbones\n", + "pincer\n", + "pincers\n", + "pinch\n", + "pinchbug\n", + "pinchbugs\n", + "pincheck\n", + "pinchecks\n", + "pinched\n", + "pincher\n", + "pinchers\n", + "pinches\n", + "pinchhitter\n", + "pinchhitters\n", + "pinching\n", + "pincushion\n", + "pincushions\n", + "pinder\n", + "pinders\n", + "pindling\n", + "pine\n", + "pineal\n", + "pineapple\n", + "pineapples\n", + "pinecone\n", + "pinecones\n", + "pined\n", + "pinelike\n", + "pinene\n", + "pinenes\n", + "pineries\n", + "pinery\n", + "pines\n", + "pinesap\n", + "pinesaps\n", + "pineta\n", + "pinetum\n", + "pinewood\n", + "pinewoods\n", + "piney\n", + "pinfeather\n", + "pinfeathers\n", + "pinfish\n", + "pinfishes\n", + "pinfold\n", + "pinfolded\n", + "pinfolding\n", + "pinfolds\n", + "ping\n", + "pinged\n", + "pinger\n", + "pingers\n", + "pinging\n", + "pingo\n", + "pingos\n", + "pingrass\n", + "pingrasses\n", + "pings\n", + "pinguid\n", + "pinhead\n", + "pinheads\n", + "pinhole\n", + "pinholes\n", + "pinier\n", + "piniest\n", + "pining\n", + "pinion\n", + "pinioned\n", + "pinioning\n", + "pinions\n", + "pinite\n", + "pinites\n", + "pink\n", + "pinked\n", + "pinker\n", + "pinkest\n", + "pinkeye\n", + "pinkeyes\n", + "pinkie\n", + "pinkies\n", + "pinking\n", + "pinkings\n", + "pinkish\n", + "pinkly\n", + "pinkness\n", + "pinknesses\n", + "pinko\n", + "pinkoes\n", + "pinkos\n", + "pinkroot\n", + "pinkroots\n", + "pinks\n", + "pinky\n", + "pinna\n", + "pinnace\n", + "pinnaces\n", + "pinnacle\n", + "pinnacled\n", + "pinnacles\n", + "pinnacling\n", + "pinnae\n", + "pinnal\n", + "pinnas\n", + "pinnate\n", + "pinnated\n", + "pinned\n", + "pinner\n", + "pinners\n", + "pinning\n", + "pinniped\n", + "pinnipeds\n", + "pinnula\n", + "pinnulae\n", + "pinnular\n", + "pinnule\n", + "pinnules\n", + "pinochle\n", + "pinochles\n", + "pinocle\n", + "pinocles\n", + "pinole\n", + "pinoles\n", + "pinon\n", + "pinones\n", + "pinons\n", + "pinpoint\n", + "pinpointed\n", + "pinpointing\n", + "pinpoints\n", + "pinprick\n", + "pinpricked\n", + "pinpricking\n", + "pinpricks\n", + "pins\n", + "pinscher\n", + "pinschers\n", + "pint\n", + "pinta\n", + "pintada\n", + "pintadas\n", + "pintado\n", + "pintadoes\n", + "pintados\n", + "pintail\n", + "pintails\n", + "pintano\n", + "pintanos\n", + "pintas\n", + "pintle\n", + "pintles\n", + "pinto\n", + "pintoes\n", + "pintos\n", + "pints\n", + "pintsize\n", + "pinup\n", + "pinups\n", + "pinwale\n", + "pinwales\n", + "pinweed\n", + "pinweeds\n", + "pinwheel\n", + "pinwheels\n", + "pinwork\n", + "pinworks\n", + "pinworm\n", + "pinworms\n", + "piny\n", + "pinyon\n", + "pinyons\n", + "piolet\n", + "piolets\n", + "pion\n", + "pioneer\n", + "pioneered\n", + "pioneering\n", + "pioneers\n", + "pionic\n", + "pions\n", + "piosities\n", + "piosity\n", + "pious\n", + "piously\n", + "pip\n", + "pipage\n", + "pipages\n", + "pipal\n", + "pipals\n", + "pipe\n", + "pipeage\n", + "pipeages\n", + "piped\n", + "pipefish\n", + "pipefishes\n", + "pipeful\n", + "pipefuls\n", + "pipeless\n", + "pipelike\n", + "pipeline\n", + "pipelined\n", + "pipelines\n", + "pipelining\n", + "piper\n", + "piperine\n", + "piperines\n", + "pipers\n", + "pipes\n", + "pipestem\n", + "pipestems\n", + "pipet\n", + "pipets\n", + "pipette\n", + "pipetted\n", + "pipettes\n", + "pipetting\n", + "pipier\n", + "pipiest\n", + "piping\n", + "pipingly\n", + "pipings\n", + "pipit\n", + "pipits\n", + "pipkin\n", + "pipkins\n", + "pipped\n", + "pippin\n", + "pipping\n", + "pippins\n", + "pips\n", + "pipy\n", + "piquancies\n", + "piquancy\n", + "piquant\n", + "pique\n", + "piqued\n", + "piques\n", + "piquet\n", + "piquets\n", + "piquing\n", + "piracies\n", + "piracy\n", + "piragua\n", + "piraguas\n", + "pirana\n", + "piranas\n", + "piranha\n", + "piranhas\n", + "pirarucu\n", + "pirarucus\n", + "pirate\n", + "pirated\n", + "pirates\n", + "piratic\n", + "piratical\n", + "pirating\n", + "piraya\n", + "pirayas\n", + "pirn\n", + "pirns\n", + "pirog\n", + "pirogen\n", + "piroghi\n", + "pirogi\n", + "pirogue\n", + "pirogues\n", + "pirojki\n", + "piroque\n", + "piroques\n", + "piroshki\n", + "pirouette\n", + "pirouetted\n", + "pirouettes\n", + "pirouetting\n", + "pirozhki\n", + "pirozhok\n", + "pis\n", + "piscaries\n", + "piscary\n", + "piscator\n", + "piscators\n", + "piscina\n", + "piscinae\n", + "piscinal\n", + "piscinas\n", + "piscine\n", + "pish\n", + "pished\n", + "pishes\n", + "pishing\n", + "pisiform\n", + "pisiforms\n", + "pismire\n", + "pismires\n", + "pismo\n", + "pisolite\n", + "pisolites\n", + "piss\n", + "pissant\n", + "pissants\n", + "pissed\n", + "pisses\n", + "pissing\n", + "pissoir\n", + "pissoirs\n", + "pistache\n", + "pistaches\n", + "pistachio\n", + "pistil\n", + "pistillate\n", + "pistils\n", + "pistol\n", + "pistole\n", + "pistoled\n", + "pistoles\n", + "pistoling\n", + "pistolled\n", + "pistolling\n", + "pistols\n", + "piston\n", + "pistons\n", + "pit\n", + "pita\n", + "pitapat\n", + "pitapats\n", + "pitapatted\n", + "pitapatting\n", + "pitas\n", + "pitch\n", + "pitchblende\n", + "pitchblendes\n", + "pitched\n", + "pitcher\n", + "pitchers\n", + "pitches\n", + "pitchfork\n", + "pitchforks\n", + "pitchier\n", + "pitchiest\n", + "pitchily\n", + "pitching\n", + "pitchman\n", + "pitchmen\n", + "pitchout\n", + "pitchouts\n", + "pitchy\n", + "piteous\n", + "piteously\n", + "pitfall\n", + "pitfalls\n", + "pith\n", + "pithead\n", + "pitheads\n", + "pithed\n", + "pithier\n", + "pithiest\n", + "pithily\n", + "pithing\n", + "pithless\n", + "piths\n", + "pithy\n", + "pitiable\n", + "pitiably\n", + "pitied\n", + "pitier\n", + "pitiers\n", + "pities\n", + "pitiful\n", + "pitifuller\n", + "pitifullest\n", + "pitifully\n", + "pitiless\n", + "pitilessly\n", + "pitman\n", + "pitmans\n", + "pitmen\n", + "piton\n", + "pitons\n", + "pits\n", + "pitsaw\n", + "pitsaws\n", + "pittance\n", + "pittances\n", + "pitted\n", + "pitting\n", + "pittings\n", + "pittsburgh\n", + "pituitary\n", + "pity\n", + "pitying\n", + "piu\n", + "pivot\n", + "pivotal\n", + "pivoted\n", + "pivoting\n", + "pivots\n", + "pix\n", + "pixes\n", + "pixie\n", + "pixieish\n", + "pixies\n", + "pixiness\n", + "pixinesses\n", + "pixy\n", + "pixyish\n", + "pixys\n", + "pizazz\n", + "pizazzes\n", + "pizza\n", + "pizzas\n", + "pizzeria\n", + "pizzerias\n", + "pizzle\n", + "pizzles\n", + "placable\n", + "placably\n", + "placard\n", + "placarded\n", + "placarding\n", + "placards\n", + "placate\n", + "placated\n", + "placater\n", + "placaters\n", + "placates\n", + "placating\n", + "place\n", + "placebo\n", + "placeboes\n", + "placebos\n", + "placed\n", + "placeman\n", + "placemen\n", + "placement\n", + "placements\n", + "placenta\n", + "placentae\n", + "placental\n", + "placentas\n", + "placer\n", + "placers\n", + "places\n", + "placet\n", + "placets\n", + "placid\n", + "placidly\n", + "placing\n", + "plack\n", + "placket\n", + "plackets\n", + "placks\n", + "placoid\n", + "placoids\n", + "plafond\n", + "plafonds\n", + "plagal\n", + "plage\n", + "plages\n", + "plagiaries\n", + "plagiarism\n", + "plagiarisms\n", + "plagiarist\n", + "plagiarists\n", + "plagiarize\n", + "plagiarized\n", + "plagiarizes\n", + "plagiarizing\n", + "plagiary\n", + "plague\n", + "plagued\n", + "plaguer\n", + "plaguers\n", + "plagues\n", + "plaguey\n", + "plaguily\n", + "plaguing\n", + "plaguy\n", + "plaice\n", + "plaices\n", + "plaid\n", + "plaided\n", + "plaids\n", + "plain\n", + "plained\n", + "plainer\n", + "plainest\n", + "plaining\n", + "plainly\n", + "plainness\n", + "plainnesses\n", + "plains\n", + "plaint\n", + "plaintiff\n", + "plaintiffs\n", + "plaintive\n", + "plaintively\n", + "plaints\n", + "plaister\n", + "plaistered\n", + "plaistering\n", + "plaisters\n", + "plait\n", + "plaited\n", + "plaiter\n", + "plaiters\n", + "plaiting\n", + "plaitings\n", + "plaits\n", + "plan\n", + "planar\n", + "planaria\n", + "planarias\n", + "planate\n", + "planch\n", + "planche\n", + "planches\n", + "planchet\n", + "planchets\n", + "plane\n", + "planed\n", + "planer\n", + "planers\n", + "planes\n", + "planet\n", + "planetaria\n", + "planetarium\n", + "planetariums\n", + "planetary\n", + "planets\n", + "planform\n", + "planforms\n", + "plangent\n", + "planing\n", + "planish\n", + "planished\n", + "planishes\n", + "planishing\n", + "plank\n", + "planked\n", + "planking\n", + "plankings\n", + "planks\n", + "plankter\n", + "plankters\n", + "plankton\n", + "planktonic\n", + "planktons\n", + "planless\n", + "planned\n", + "planner\n", + "planners\n", + "planning\n", + "plannings\n", + "planosol\n", + "planosols\n", + "plans\n", + "plant\n", + "plantain\n", + "plantains\n", + "plantar\n", + "plantation\n", + "plantations\n", + "planted\n", + "planter\n", + "planters\n", + "planting\n", + "plantings\n", + "plants\n", + "planula\n", + "planulae\n", + "planular\n", + "plaque\n", + "plaques\n", + "plash\n", + "plashed\n", + "plasher\n", + "plashers\n", + "plashes\n", + "plashier\n", + "plashiest\n", + "plashing\n", + "plashy\n", + "plasm\n", + "plasma\n", + "plasmas\n", + "plasmatic\n", + "plasmic\n", + "plasmid\n", + "plasmids\n", + "plasmin\n", + "plasmins\n", + "plasmoid\n", + "plasmoids\n", + "plasmon\n", + "plasmons\n", + "plasms\n", + "plaster\n", + "plastered\n", + "plasterer\n", + "plasterers\n", + "plastering\n", + "plasters\n", + "plastery\n", + "plastic\n", + "plasticities\n", + "plasticity\n", + "plastics\n", + "plastid\n", + "plastids\n", + "plastral\n", + "plastron\n", + "plastrons\n", + "plastrum\n", + "plastrums\n", + "plat\n", + "platan\n", + "platane\n", + "platanes\n", + "platans\n", + "plate\n", + "plateau\n", + "plateaued\n", + "plateauing\n", + "plateaus\n", + "plateaux\n", + "plated\n", + "plateful\n", + "platefuls\n", + "platelet\n", + "platelets\n", + "platen\n", + "platens\n", + "plater\n", + "platers\n", + "plates\n", + "platesful\n", + "platform\n", + "platforms\n", + "platier\n", + "platies\n", + "platiest\n", + "platina\n", + "platinas\n", + "plating\n", + "platings\n", + "platinic\n", + "platinum\n", + "platinums\n", + "platitude\n", + "platitudes\n", + "platitudinous\n", + "platonic\n", + "platoon\n", + "platooned\n", + "platooning\n", + "platoons\n", + "plats\n", + "platted\n", + "platter\n", + "platters\n", + "platting\n", + "platy\n", + "platypi\n", + "platypus\n", + "platypuses\n", + "platys\n", + "plaudit\n", + "plaudits\n", + "plausibilities\n", + "plausibility\n", + "plausible\n", + "plausibly\n", + "plausive\n", + "play\n", + "playa\n", + "playable\n", + "playact\n", + "playacted\n", + "playacting\n", + "playactings\n", + "playacts\n", + "playas\n", + "playback\n", + "playbacks\n", + "playbill\n", + "playbills\n", + "playbook\n", + "playbooks\n", + "playboy\n", + "playboys\n", + "playday\n", + "playdays\n", + "playdown\n", + "playdowns\n", + "played\n", + "player\n", + "players\n", + "playful\n", + "playfully\n", + "playfulness\n", + "playfulnesses\n", + "playgirl\n", + "playgirls\n", + "playgoer\n", + "playgoers\n", + "playground\n", + "playgrounds\n", + "playhouse\n", + "playhouses\n", + "playing\n", + "playland\n", + "playlands\n", + "playless\n", + "playlet\n", + "playlets\n", + "playlike\n", + "playmate\n", + "playmates\n", + "playoff\n", + "playoffs\n", + "playpen\n", + "playpens\n", + "playroom\n", + "playrooms\n", + "plays\n", + "playsuit\n", + "playsuits\n", + "plaything\n", + "playthings\n", + "playtime\n", + "playtimes\n", + "playwear\n", + "playwears\n", + "playwright\n", + "playwrights\n", + "plaza\n", + "plazas\n", + "plea\n", + "pleach\n", + "pleached\n", + "pleaches\n", + "pleaching\n", + "plead\n", + "pleaded\n", + "pleader\n", + "pleaders\n", + "pleading\n", + "pleadings\n", + "pleads\n", + "pleas\n", + "pleasant\n", + "pleasanter\n", + "pleasantest\n", + "pleasantly\n", + "pleasantness\n", + "pleasantnesses\n", + "pleasantries\n", + "please\n", + "pleased\n", + "pleaser\n", + "pleasers\n", + "pleases\n", + "pleasing\n", + "pleasingly\n", + "pleasurable\n", + "pleasurably\n", + "pleasure\n", + "pleasured\n", + "pleasures\n", + "pleasuring\n", + "pleat\n", + "pleated\n", + "pleater\n", + "pleaters\n", + "pleating\n", + "pleats\n", + "pleb\n", + "plebe\n", + "plebeian\n", + "plebeians\n", + "plebes\n", + "plebiscite\n", + "plebiscites\n", + "plebs\n", + "plectra\n", + "plectron\n", + "plectrons\n", + "plectrum\n", + "plectrums\n", + "pled\n", + "pledge\n", + "pledged\n", + "pledgee\n", + "pledgees\n", + "pledgeor\n", + "pledgeors\n", + "pledger\n", + "pledgers\n", + "pledges\n", + "pledget\n", + "pledgets\n", + "pledging\n", + "pledgor\n", + "pledgors\n", + "pleiad\n", + "pleiades\n", + "pleiads\n", + "plena\n", + "plenary\n", + "plenipotentiaries\n", + "plenipotentiary\n", + "plenish\n", + "plenished\n", + "plenishes\n", + "plenishing\n", + "plenism\n", + "plenisms\n", + "plenist\n", + "plenists\n", + "plenitude\n", + "plenitudes\n", + "plenteous\n", + "plenties\n", + "plentiful\n", + "plentifully\n", + "plenty\n", + "plenum\n", + "plenums\n", + "pleonasm\n", + "pleonasms\n", + "pleopod\n", + "pleopods\n", + "plessor\n", + "plessors\n", + "plethora\n", + "plethoras\n", + "pleura\n", + "pleurae\n", + "pleural\n", + "pleuras\n", + "pleurisies\n", + "pleurisy\n", + "pleuron\n", + "pleuston\n", + "pleustons\n", + "plexor\n", + "plexors\n", + "plexus\n", + "plexuses\n", + "pliable\n", + "pliably\n", + "pliancies\n", + "pliancy\n", + "pliant\n", + "pliantly\n", + "plica\n", + "plicae\n", + "plical\n", + "plicate\n", + "plicated\n", + "plie\n", + "plied\n", + "plier\n", + "pliers\n", + "plies\n", + "plight\n", + "plighted\n", + "plighter\n", + "plighters\n", + "plighting\n", + "plights\n", + "plimsol\n", + "plimsole\n", + "plimsoles\n", + "plimsoll\n", + "plimsolls\n", + "plimsols\n", + "plink\n", + "plinked\n", + "plinker\n", + "plinkers\n", + "plinking\n", + "plinks\n", + "plinth\n", + "plinths\n", + "pliskie\n", + "pliskies\n", + "plisky\n", + "plisse\n", + "plisses\n", + "plod\n", + "plodded\n", + "plodder\n", + "plodders\n", + "plodding\n", + "ploddingly\n", + "plods\n", + "ploidies\n", + "ploidy\n", + "plonk\n", + "plonked\n", + "plonking\n", + "plonks\n", + "plop\n", + "plopped\n", + "plopping\n", + "plops\n", + "plosion\n", + "plosions\n", + "plosive\n", + "plosives\n", + "plot\n", + "plotless\n", + "plots\n", + "plottage\n", + "plottages\n", + "plotted\n", + "plotter\n", + "plotters\n", + "plottier\n", + "plotties\n", + "plottiest\n", + "plotting\n", + "plotty\n", + "plough\n", + "ploughed\n", + "plougher\n", + "ploughers\n", + "ploughing\n", + "ploughs\n", + "plover\n", + "plovers\n", + "plow\n", + "plowable\n", + "plowback\n", + "plowbacks\n", + "plowboy\n", + "plowboys\n", + "plowed\n", + "plower\n", + "plowers\n", + "plowhead\n", + "plowheads\n", + "plowing\n", + "plowland\n", + "plowlands\n", + "plowman\n", + "plowmen\n", + "plows\n", + "plowshare\n", + "plowshares\n", + "ploy\n", + "ployed\n", + "ploying\n", + "ploys\n", + "pluck\n", + "plucked\n", + "plucker\n", + "pluckers\n", + "pluckier\n", + "pluckiest\n", + "pluckily\n", + "plucking\n", + "plucks\n", + "plucky\n", + "plug\n", + "plugged\n", + "plugger\n", + "pluggers\n", + "plugging\n", + "plugless\n", + "plugs\n", + "pluguglies\n", + "plugugly\n", + "plum\n", + "plumage\n", + "plumaged\n", + "plumages\n", + "plumate\n", + "plumb\n", + "plumbago\n", + "plumbagos\n", + "plumbed\n", + "plumber\n", + "plumberies\n", + "plumbers\n", + "plumbery\n", + "plumbic\n", + "plumbing\n", + "plumbings\n", + "plumbism\n", + "plumbisms\n", + "plumbous\n", + "plumbs\n", + "plumbum\n", + "plumbums\n", + "plume\n", + "plumed\n", + "plumelet\n", + "plumelets\n", + "plumes\n", + "plumier\n", + "plumiest\n", + "pluming\n", + "plumiped\n", + "plumipeds\n", + "plumlike\n", + "plummet\n", + "plummeted\n", + "plummeting\n", + "plummets\n", + "plummier\n", + "plummiest\n", + "plummy\n", + "plumose\n", + "plump\n", + "plumped\n", + "plumpen\n", + "plumpened\n", + "plumpening\n", + "plumpens\n", + "plumper\n", + "plumpers\n", + "plumpest\n", + "plumping\n", + "plumpish\n", + "plumply\n", + "plumpness\n", + "plumpnesses\n", + "plumps\n", + "plums\n", + "plumular\n", + "plumule\n", + "plumules\n", + "plumy\n", + "plunder\n", + "plundered\n", + "plundering\n", + "plunders\n", + "plunge\n", + "plunged\n", + "plunger\n", + "plungers\n", + "plunges\n", + "plunging\n", + "plunk\n", + "plunked\n", + "plunker\n", + "plunkers\n", + "plunking\n", + "plunks\n", + "plural\n", + "pluralism\n", + "pluralities\n", + "plurality\n", + "pluralization\n", + "pluralizations\n", + "pluralize\n", + "pluralized\n", + "pluralizes\n", + "pluralizing\n", + "plurally\n", + "plurals\n", + "plus\n", + "pluses\n", + "plush\n", + "plusher\n", + "plushes\n", + "plushest\n", + "plushier\n", + "plushiest\n", + "plushily\n", + "plushly\n", + "plushy\n", + "plussage\n", + "plussages\n", + "plusses\n", + "plutocracies\n", + "plutocracy\n", + "plutocrat\n", + "plutocratic\n", + "plutocrats\n", + "pluton\n", + "plutonic\n", + "plutonium\n", + "plutoniums\n", + "plutons\n", + "pluvial\n", + "pluvials\n", + "pluviose\n", + "pluvious\n", + "ply\n", + "plyer\n", + "plyers\n", + "plying\n", + "plyingly\n", + "plywood\n", + "plywoods\n", + "pneuma\n", + "pneumas\n", + "pneumatic\n", + "pneumatically\n", + "pneumonia\n", + "poaceous\n", + "poach\n", + "poached\n", + "poacher\n", + "poachers\n", + "poaches\n", + "poachier\n", + "poachiest\n", + "poaching\n", + "poachy\n", + "pochard\n", + "pochards\n", + "pock\n", + "pocked\n", + "pocket\n", + "pocketbook\n", + "pocketbooks\n", + "pocketed\n", + "pocketer\n", + "pocketers\n", + "pocketful\n", + "pocketfuls\n", + "pocketing\n", + "pocketknife\n", + "pocketknives\n", + "pockets\n", + "pockier\n", + "pockiest\n", + "pockily\n", + "pocking\n", + "pockmark\n", + "pockmarked\n", + "pockmarking\n", + "pockmarks\n", + "pocks\n", + "pocky\n", + "poco\n", + "pocosin\n", + "pocosins\n", + "pod\n", + "podagra\n", + "podagral\n", + "podagras\n", + "podagric\n", + "podded\n", + "podding\n", + "podesta\n", + "podestas\n", + "podgier\n", + "podgiest\n", + "podgily\n", + "podgy\n", + "podia\n", + "podiatries\n", + "podiatrist\n", + "podiatry\n", + "podite\n", + "podites\n", + "poditic\n", + "podium\n", + "podiums\n", + "podomere\n", + "podomeres\n", + "pods\n", + "podsol\n", + "podsolic\n", + "podsols\n", + "podzol\n", + "podzolic\n", + "podzols\n", + "poechore\n", + "poechores\n", + "poem\n", + "poems\n", + "poesies\n", + "poesy\n", + "poet\n", + "poetess\n", + "poetesses\n", + "poetic\n", + "poetical\n", + "poetics\n", + "poetise\n", + "poetised\n", + "poetiser\n", + "poetisers\n", + "poetises\n", + "poetising\n", + "poetize\n", + "poetized\n", + "poetizer\n", + "poetizers\n", + "poetizes\n", + "poetizing\n", + "poetless\n", + "poetlike\n", + "poetries\n", + "poetry\n", + "poets\n", + "pogey\n", + "pogeys\n", + "pogies\n", + "pogonia\n", + "pogonias\n", + "pogonip\n", + "pogonips\n", + "pogrom\n", + "pogromed\n", + "pogroming\n", + "pogroms\n", + "pogy\n", + "poh\n", + "poi\n", + "poignancies\n", + "poignancy\n", + "poignant\n", + "poilu\n", + "poilus\n", + "poind\n", + "poinded\n", + "poinding\n", + "poinds\n", + "poinsettia\n", + "point\n", + "pointe\n", + "pointed\n", + "pointer\n", + "pointers\n", + "pointes\n", + "pointier\n", + "pointiest\n", + "pointing\n", + "pointless\n", + "pointman\n", + "pointmen\n", + "points\n", + "pointy\n", + "pois\n", + "poise\n", + "poised\n", + "poiser\n", + "poisers\n", + "poises\n", + "poising\n", + "poison\n", + "poisoned\n", + "poisoner\n", + "poisoners\n", + "poisoning\n", + "poisonous\n", + "poisons\n", + "poitrel\n", + "poitrels\n", + "poke\n", + "poked\n", + "poker\n", + "pokeroot\n", + "pokeroots\n", + "pokers\n", + "pokes\n", + "pokeweed\n", + "pokeweeds\n", + "pokey\n", + "pokeys\n", + "pokier\n", + "pokies\n", + "pokiest\n", + "pokily\n", + "pokiness\n", + "pokinesses\n", + "poking\n", + "poky\n", + "pol\n", + "polar\n", + "polarise\n", + "polarised\n", + "polarises\n", + "polarising\n", + "polarities\n", + "polarity\n", + "polarization\n", + "polarizations\n", + "polarize\n", + "polarized\n", + "polarizes\n", + "polarizing\n", + "polaron\n", + "polarons\n", + "polars\n", + "polder\n", + "polders\n", + "pole\n", + "poleax\n", + "poleaxe\n", + "poleaxed\n", + "poleaxes\n", + "poleaxing\n", + "polecat\n", + "polecats\n", + "poled\n", + "poleis\n", + "poleless\n", + "polemic\n", + "polemical\n", + "polemicist\n", + "polemicists\n", + "polemics\n", + "polemist\n", + "polemists\n", + "polemize\n", + "polemized\n", + "polemizes\n", + "polemizing\n", + "polenta\n", + "polentas\n", + "poler\n", + "polers\n", + "poles\n", + "polestar\n", + "polestars\n", + "poleward\n", + "poleyn\n", + "poleyns\n", + "police\n", + "policed\n", + "policeman\n", + "policemen\n", + "polices\n", + "policewoman\n", + "policewomen\n", + "policies\n", + "policing\n", + "policy\n", + "policyholder\n", + "poling\n", + "polio\n", + "poliomyelitis\n", + "poliomyelitises\n", + "polios\n", + "polis\n", + "polish\n", + "polished\n", + "polisher\n", + "polishers\n", + "polishes\n", + "polishing\n", + "polite\n", + "politely\n", + "politeness\n", + "politenesses\n", + "politer\n", + "politest\n", + "politic\n", + "political\n", + "politician\n", + "politicians\n", + "politick\n", + "politicked\n", + "politicking\n", + "politicks\n", + "politico\n", + "politicoes\n", + "politicos\n", + "politics\n", + "polities\n", + "polity\n", + "polka\n", + "polkaed\n", + "polkaing\n", + "polkas\n", + "poll\n", + "pollack\n", + "pollacks\n", + "pollard\n", + "pollarded\n", + "pollarding\n", + "pollards\n", + "polled\n", + "pollee\n", + "pollees\n", + "pollen\n", + "pollened\n", + "pollening\n", + "pollens\n", + "poller\n", + "pollers\n", + "pollex\n", + "pollical\n", + "pollices\n", + "pollinate\n", + "pollinated\n", + "pollinates\n", + "pollinating\n", + "pollination\n", + "pollinations\n", + "pollinator\n", + "pollinators\n", + "polling\n", + "pollinia\n", + "pollinic\n", + "pollist\n", + "pollists\n", + "polliwog\n", + "polliwogs\n", + "pollock\n", + "pollocks\n", + "polls\n", + "pollster\n", + "pollsters\n", + "pollutant\n", + "pollute\n", + "polluted\n", + "polluter\n", + "polluters\n", + "pollutes\n", + "polluting\n", + "pollution\n", + "pollutions\n", + "polly\n", + "pollywog\n", + "pollywogs\n", + "polo\n", + "poloist\n", + "poloists\n", + "polonium\n", + "poloniums\n", + "polos\n", + "pols\n", + "poltroon\n", + "poltroons\n", + "poly\n", + "polybrid\n", + "polybrids\n", + "polycot\n", + "polycots\n", + "polyene\n", + "polyenes\n", + "polyenic\n", + "polyester\n", + "polyesters\n", + "polygala\n", + "polygalas\n", + "polygamies\n", + "polygamist\n", + "polygamists\n", + "polygamous\n", + "polygamy\n", + "polygene\n", + "polygenes\n", + "polyglot\n", + "polyglots\n", + "polygon\n", + "polygonies\n", + "polygons\n", + "polygony\n", + "polygynies\n", + "polygyny\n", + "polymath\n", + "polymaths\n", + "polymer\n", + "polymers\n", + "polynya\n", + "polynyas\n", + "polyp\n", + "polyparies\n", + "polypary\n", + "polypi\n", + "polypide\n", + "polypides\n", + "polypnea\n", + "polypneas\n", + "polypod\n", + "polypodies\n", + "polypods\n", + "polypody\n", + "polypoid\n", + "polypore\n", + "polypores\n", + "polypous\n", + "polyps\n", + "polypus\n", + "polypuses\n", + "polys\n", + "polysemies\n", + "polysemy\n", + "polysome\n", + "polysomes\n", + "polysyllabic\n", + "polysyllable\n", + "polysyllables\n", + "polytechnic\n", + "polytene\n", + "polytenies\n", + "polyteny\n", + "polytheism\n", + "polytheisms\n", + "polytheist\n", + "polytheists\n", + "polytype\n", + "polytypes\n", + "polyuria\n", + "polyurias\n", + "polyuric\n", + "polyzoan\n", + "polyzoans\n", + "polyzoic\n", + "pomace\n", + "pomaces\n", + "pomade\n", + "pomaded\n", + "pomades\n", + "pomading\n", + "pomander\n", + "pomanders\n", + "pomatum\n", + "pomatums\n", + "pome\n", + "pomegranate\n", + "pomegranates\n", + "pomelo\n", + "pomelos\n", + "pomes\n", + "pommee\n", + "pommel\n", + "pommeled\n", + "pommeling\n", + "pommelled\n", + "pommelling\n", + "pommels\n", + "pomologies\n", + "pomology\n", + "pomp\n", + "pompano\n", + "pompanos\n", + "pompom\n", + "pompoms\n", + "pompon\n", + "pompons\n", + "pomposities\n", + "pomposity\n", + "pompous\n", + "pompously\n", + "pomps\n", + "ponce\n", + "ponces\n", + "poncho\n", + "ponchos\n", + "pond\n", + "ponder\n", + "pondered\n", + "ponderer\n", + "ponderers\n", + "pondering\n", + "ponderous\n", + "ponders\n", + "ponds\n", + "pondville\n", + "pondweed\n", + "pondweeds\n", + "pone\n", + "ponent\n", + "pones\n", + "pongee\n", + "pongees\n", + "pongid\n", + "pongids\n", + "poniard\n", + "poniarded\n", + "poniarding\n", + "poniards\n", + "ponied\n", + "ponies\n", + "pons\n", + "pontes\n", + "pontifex\n", + "pontiff\n", + "pontiffs\n", + "pontific\n", + "pontifical\n", + "pontificate\n", + "pontificated\n", + "pontificates\n", + "pontificating\n", + "pontifices\n", + "pontil\n", + "pontils\n", + "pontine\n", + "ponton\n", + "pontons\n", + "pontoon\n", + "pontoons\n", + "pony\n", + "ponying\n", + "ponytail\n", + "ponytails\n", + "pooch\n", + "pooches\n", + "pood\n", + "poodle\n", + "poodles\n", + "poods\n", + "pooh\n", + "poohed\n", + "poohing\n", + "poohs\n", + "pool\n", + "pooled\n", + "poolhall\n", + "poolhalls\n", + "pooling\n", + "poolroom\n", + "poolrooms\n", + "pools\n", + "poon\n", + "poons\n", + "poop\n", + "pooped\n", + "pooping\n", + "poops\n", + "poor\n", + "poorer\n", + "poorest\n", + "poori\n", + "pooris\n", + "poorish\n", + "poorly\n", + "poorness\n", + "poornesses\n", + "poortith\n", + "poortiths\n", + "pop\n", + "popcorn\n", + "popcorns\n", + "pope\n", + "popedom\n", + "popedoms\n", + "popeless\n", + "popelike\n", + "poperies\n", + "popery\n", + "popes\n", + "popeyed\n", + "popgun\n", + "popguns\n", + "popinjay\n", + "popinjays\n", + "popish\n", + "popishly\n", + "poplar\n", + "poplars\n", + "poplin\n", + "poplins\n", + "poplitic\n", + "popover\n", + "popovers\n", + "poppa\n", + "poppas\n", + "popped\n", + "popper\n", + "poppers\n", + "poppet\n", + "poppets\n", + "poppied\n", + "poppies\n", + "popping\n", + "popple\n", + "poppled\n", + "popples\n", + "poppling\n", + "poppy\n", + "pops\n", + "populace\n", + "populaces\n", + "popular\n", + "popularities\n", + "popularity\n", + "popularize\n", + "popularized\n", + "popularizes\n", + "popularizing\n", + "popularly\n", + "populate\n", + "populated\n", + "populates\n", + "populating\n", + "population\n", + "populations\n", + "populism\n", + "populisms\n", + "populist\n", + "populists\n", + "populous\n", + "populousness\n", + "populousnesses\n", + "porcelain\n", + "porcelains\n", + "porch\n", + "porches\n", + "porcine\n", + "porcupine\n", + "porcupines\n", + "pore\n", + "pored\n", + "pores\n", + "porgies\n", + "porgy\n", + "poring\n", + "porism\n", + "porisms\n", + "pork\n", + "porker\n", + "porkers\n", + "porkier\n", + "porkies\n", + "porkiest\n", + "porkpie\n", + "porkpies\n", + "porks\n", + "porkwood\n", + "porkwoods\n", + "porky\n", + "porn\n", + "porno\n", + "pornographic\n", + "pornography\n", + "pornos\n", + "porns\n", + "porose\n", + "porosities\n", + "porosity\n", + "porous\n", + "porously\n", + "porphyries\n", + "porphyry\n", + "porpoise\n", + "porpoises\n", + "porrect\n", + "porridge\n", + "porridges\n", + "porringer\n", + "porringers\n", + "port\n", + "portability\n", + "portable\n", + "portables\n", + "portably\n", + "portage\n", + "portaged\n", + "portages\n", + "portaging\n", + "portal\n", + "portaled\n", + "portals\n", + "portance\n", + "portances\n", + "porte\n", + "ported\n", + "portend\n", + "portended\n", + "portending\n", + "portends\n", + "portent\n", + "portentious\n", + "portents\n", + "porter\n", + "porterhouse\n", + "porterhouses\n", + "porters\n", + "portfolio\n", + "portfolios\n", + "porthole\n", + "portholes\n", + "portico\n", + "porticoes\n", + "porticos\n", + "portiere\n", + "portieres\n", + "porting\n", + "portion\n", + "portioned\n", + "portioning\n", + "portions\n", + "portless\n", + "portlier\n", + "portliest\n", + "portly\n", + "portrait\n", + "portraitist\n", + "portraitists\n", + "portraits\n", + "portraiture\n", + "portraitures\n", + "portray\n", + "portrayal\n", + "portrayals\n", + "portrayed\n", + "portraying\n", + "portrays\n", + "portress\n", + "portresses\n", + "ports\n", + "posada\n", + "posadas\n", + "pose\n", + "posed\n", + "poser\n", + "posers\n", + "poses\n", + "poseur\n", + "poseurs\n", + "posh\n", + "posher\n", + "poshest\n", + "posies\n", + "posing\n", + "posingly\n", + "posit\n", + "posited\n", + "positing\n", + "position\n", + "positioned\n", + "positioning\n", + "positions\n", + "positive\n", + "positively\n", + "positiveness\n", + "positivenesses\n", + "positiver\n", + "positives\n", + "positivest\n", + "positivity\n", + "positron\n", + "positrons\n", + "posits\n", + "posologies\n", + "posology\n", + "posse\n", + "posses\n", + "possess\n", + "possessed\n", + "possesses\n", + "possessing\n", + "possession\n", + "possessions\n", + "possessive\n", + "possessiveness\n", + "possessivenesses\n", + "possessives\n", + "possessor\n", + "possessors\n", + "posset\n", + "possets\n", + "possibilities\n", + "possibility\n", + "possible\n", + "possibler\n", + "possiblest\n", + "possibly\n", + "possum\n", + "possums\n", + "post\n", + "postadolescence\n", + "postadolescences\n", + "postadolescent\n", + "postage\n", + "postages\n", + "postal\n", + "postally\n", + "postals\n", + "postanal\n", + "postattack\n", + "postbaccalaureate\n", + "postbag\n", + "postbags\n", + "postbiblical\n", + "postbox\n", + "postboxes\n", + "postboy\n", + "postboys\n", + "postcard\n", + "postcards\n", + "postcava\n", + "postcavae\n", + "postcollege\n", + "postcolonial\n", + "postdate\n", + "postdated\n", + "postdates\n", + "postdating\n", + "posted\n", + "posteen\n", + "posteens\n", + "postelection\n", + "poster\n", + "posterior\n", + "posteriors\n", + "posterities\n", + "posterity\n", + "postern\n", + "posterns\n", + "posters\n", + "postexercise\n", + "postface\n", + "postfaces\n", + "postfertilization\n", + "postfertilizations\n", + "postfix\n", + "postfixed\n", + "postfixes\n", + "postfixing\n", + "postflight\n", + "postform\n", + "postformed\n", + "postforming\n", + "postforms\n", + "postgraduate\n", + "postgraduates\n", + "postgraduation\n", + "postharvest\n", + "posthaste\n", + "posthole\n", + "postholes\n", + "posthospital\n", + "posthumous\n", + "postiche\n", + "postiches\n", + "postimperial\n", + "postin\n", + "postinaugural\n", + "postindustrial\n", + "posting\n", + "postings\n", + "postinjection\n", + "postinoculation\n", + "postins\n", + "postique\n", + "postiques\n", + "postlude\n", + "postludes\n", + "postman\n", + "postmarital\n", + "postmark\n", + "postmarked\n", + "postmarking\n", + "postmarks\n", + "postmaster\n", + "postmasters\n", + "postmen\n", + "postmenopausal\n", + "postmortem\n", + "postmortems\n", + "postnatal\n", + "postnuptial\n", + "postoperative\n", + "postoral\n", + "postpaid\n", + "postpartum\n", + "postpone\n", + "postponed\n", + "postponement\n", + "postponements\n", + "postpones\n", + "postponing\n", + "postproduction\n", + "postpubertal\n", + "postpuberty\n", + "postradiation\n", + "postrecession\n", + "postretirement\n", + "postrevolutionary\n", + "posts\n", + "postscript\n", + "postscripts\n", + "postseason\n", + "postsecondary\n", + "postsurgical\n", + "posttreatment\n", + "posttrial\n", + "postulant\n", + "postulants\n", + "postulate\n", + "postulated\n", + "postulates\n", + "postulating\n", + "postural\n", + "posture\n", + "postured\n", + "posturer\n", + "posturers\n", + "postures\n", + "posturing\n", + "postvaccination\n", + "postwar\n", + "posy\n", + "pot\n", + "potable\n", + "potables\n", + "potage\n", + "potages\n", + "potamic\n", + "potash\n", + "potashes\n", + "potassic\n", + "potassium\n", + "potassiums\n", + "potation\n", + "potations\n", + "potato\n", + "potatoes\n", + "potatory\n", + "potbellied\n", + "potbellies\n", + "potbelly\n", + "potboil\n", + "potboiled\n", + "potboiling\n", + "potboils\n", + "potboy\n", + "potboys\n", + "poteen\n", + "poteens\n", + "potence\n", + "potences\n", + "potencies\n", + "potency\n", + "potent\n", + "potentate\n", + "potentates\n", + "potential\n", + "potentialities\n", + "potentiality\n", + "potentially\n", + "potentials\n", + "potently\n", + "potful\n", + "potfuls\n", + "pothead\n", + "potheads\n", + "potheen\n", + "potheens\n", + "pother\n", + "potherb\n", + "potherbs\n", + "pothered\n", + "pothering\n", + "pothers\n", + "pothole\n", + "potholed\n", + "potholes\n", + "pothook\n", + "pothooks\n", + "pothouse\n", + "pothouses\n", + "potiche\n", + "potiches\n", + "potion\n", + "potions\n", + "potlach\n", + "potlache\n", + "potlaches\n", + "potlatch\n", + "potlatched\n", + "potlatches\n", + "potlatching\n", + "potlike\n", + "potluck\n", + "potlucks\n", + "potman\n", + "potmen\n", + "potpie\n", + "potpies\n", + "potpourri\n", + "potpourris\n", + "pots\n", + "potshard\n", + "potshards\n", + "potsherd\n", + "potsherds\n", + "potshot\n", + "potshots\n", + "potshotting\n", + "potsie\n", + "potsies\n", + "potstone\n", + "potstones\n", + "potsy\n", + "pottage\n", + "pottages\n", + "potted\n", + "potteen\n", + "potteens\n", + "potter\n", + "pottered\n", + "potterer\n", + "potterers\n", + "potteries\n", + "pottering\n", + "potters\n", + "pottery\n", + "pottier\n", + "potties\n", + "pottiest\n", + "potting\n", + "pottle\n", + "pottles\n", + "potto\n", + "pottos\n", + "potty\n", + "pouch\n", + "pouched\n", + "pouches\n", + "pouchier\n", + "pouchiest\n", + "pouching\n", + "pouchy\n", + "pouf\n", + "poufed\n", + "pouff\n", + "pouffe\n", + "pouffed\n", + "pouffes\n", + "pouffs\n", + "poufs\n", + "poulard\n", + "poularde\n", + "poulardes\n", + "poulards\n", + "poult\n", + "poultice\n", + "poulticed\n", + "poultices\n", + "poulticing\n", + "poultries\n", + "poultry\n", + "poults\n", + "pounce\n", + "pounced\n", + "pouncer\n", + "pouncers\n", + "pounces\n", + "pouncing\n", + "pound\n", + "poundage\n", + "poundages\n", + "poundal\n", + "poundals\n", + "pounded\n", + "pounder\n", + "pounders\n", + "pounding\n", + "pounds\n", + "pour\n", + "pourable\n", + "poured\n", + "pourer\n", + "pourers\n", + "pouring\n", + "pours\n", + "poussie\n", + "poussies\n", + "pout\n", + "pouted\n", + "pouter\n", + "pouters\n", + "poutful\n", + "poutier\n", + "poutiest\n", + "pouting\n", + "pouts\n", + "pouty\n", + "poverties\n", + "poverty\n", + "pow\n", + "powder\n", + "powdered\n", + "powderer\n", + "powderers\n", + "powdering\n", + "powders\n", + "powdery\n", + "power\n", + "powered\n", + "powerful\n", + "powerfully\n", + "powering\n", + "powerless\n", + "powerlessness\n", + "powers\n", + "pows\n", + "powter\n", + "powters\n", + "powwow\n", + "powwowed\n", + "powwowing\n", + "powwows\n", + "pox\n", + "poxed\n", + "poxes\n", + "poxing\n", + "poxvirus\n", + "poxviruses\n", + "poyou\n", + "poyous\n", + "pozzolan\n", + "pozzolans\n", + "praam\n", + "praams\n", + "practic\n", + "practicabilities\n", + "practicability\n", + "practicable\n", + "practical\n", + "practicalities\n", + "practicality\n", + "practically\n", + "practice\n", + "practiced\n", + "practices\n", + "practicing\n", + "practise\n", + "practised\n", + "practises\n", + "practising\n", + "practitioner\n", + "practitioners\n", + "praecipe\n", + "praecipes\n", + "praedial\n", + "praefect\n", + "praefects\n", + "praelect\n", + "praelected\n", + "praelecting\n", + "praelects\n", + "praetor\n", + "praetors\n", + "pragmatic\n", + "pragmatism\n", + "pragmatisms\n", + "prahu\n", + "prahus\n", + "prairie\n", + "prairies\n", + "praise\n", + "praised\n", + "praiser\n", + "praisers\n", + "praises\n", + "praiseworthy\n", + "praising\n", + "praline\n", + "pralines\n", + "pram\n", + "prams\n", + "prance\n", + "pranced\n", + "prancer\n", + "prancers\n", + "prances\n", + "prancing\n", + "prandial\n", + "prang\n", + "pranged\n", + "pranging\n", + "prangs\n", + "prank\n", + "pranked\n", + "pranking\n", + "prankish\n", + "pranks\n", + "prankster\n", + "pranksters\n", + "prao\n", + "praos\n", + "prase\n", + "prases\n", + "prat\n", + "prate\n", + "prated\n", + "prater\n", + "praters\n", + "prates\n", + "pratfall\n", + "pratfalls\n", + "prating\n", + "pratique\n", + "pratiques\n", + "prats\n", + "prattle\n", + "prattled\n", + "prattler\n", + "prattlers\n", + "prattles\n", + "prattling\n", + "prau\n", + "praus\n", + "prawn\n", + "prawned\n", + "prawner\n", + "prawners\n", + "prawning\n", + "prawns\n", + "praxes\n", + "praxis\n", + "praxises\n", + "pray\n", + "prayed\n", + "prayer\n", + "prayers\n", + "praying\n", + "prays\n", + "preach\n", + "preached\n", + "preacher\n", + "preachers\n", + "preaches\n", + "preachier\n", + "preachiest\n", + "preaching\n", + "preachment\n", + "preachments\n", + "preachy\n", + "preact\n", + "preacted\n", + "preacting\n", + "preacts\n", + "preadapt\n", + "preadapted\n", + "preadapting\n", + "preadapts\n", + "preaddress\n", + "preadmission\n", + "preadmit\n", + "preadmits\n", + "preadmitted\n", + "preadmitting\n", + "preadolescence\n", + "preadolescences\n", + "preadolescent\n", + "preadopt\n", + "preadopted\n", + "preadopting\n", + "preadopts\n", + "preadult\n", + "preaged\n", + "preallocate\n", + "preallocated\n", + "preallocates\n", + "preallocating\n", + "preallot\n", + "preallots\n", + "preallotted\n", + "preallotting\n", + "preamble\n", + "preambles\n", + "preamp\n", + "preamps\n", + "preanal\n", + "preanesthetic\n", + "preanesthetics\n", + "prearm\n", + "prearmed\n", + "prearming\n", + "prearms\n", + "prearraignment\n", + "prearrange\n", + "prearranged\n", + "prearrangement\n", + "prearrangements\n", + "prearranges\n", + "prearranging\n", + "preassemble\n", + "preassembled\n", + "preassembles\n", + "preassembling\n", + "preassign\n", + "preassigned\n", + "preassigning\n", + "preassigns\n", + "preauthorize\n", + "preauthorized\n", + "preauthorizes\n", + "preauthorizing\n", + "preaver\n", + "preaverred\n", + "preaverring\n", + "preavers\n", + "preaxial\n", + "prebasal\n", + "prebattle\n", + "prebend\n", + "prebends\n", + "prebiblical\n", + "prebill\n", + "prebilled\n", + "prebilling\n", + "prebills\n", + "prebind\n", + "prebinding\n", + "prebinds\n", + "prebless\n", + "preblessed\n", + "preblesses\n", + "preblessing\n", + "preboil\n", + "preboiled\n", + "preboiling\n", + "preboils\n", + "prebound\n", + "prebreakfast\n", + "precalculate\n", + "precalculated\n", + "precalculates\n", + "precalculating\n", + "precalculus\n", + "precalculuses\n", + "precampaign\n", + "precancel\n", + "precanceled\n", + "precanceling\n", + "precancellation\n", + "precancellations\n", + "precancels\n", + "precarious\n", + "precariously\n", + "precariousness\n", + "precariousnesses\n", + "precast\n", + "precasting\n", + "precasts\n", + "precaution\n", + "precautionary\n", + "precautions\n", + "precava\n", + "precavae\n", + "precaval\n", + "precede\n", + "preceded\n", + "precedence\n", + "precedences\n", + "precedent\n", + "precedents\n", + "precedes\n", + "preceding\n", + "precent\n", + "precented\n", + "precenting\n", + "precents\n", + "precept\n", + "preceptor\n", + "preceptors\n", + "precepts\n", + "precess\n", + "precessed\n", + "precesses\n", + "precessing\n", + "precheck\n", + "prechecked\n", + "prechecking\n", + "prechecks\n", + "prechill\n", + "prechilled\n", + "prechilling\n", + "prechills\n", + "precieux\n", + "precinct\n", + "precincts\n", + "precious\n", + "preciouses\n", + "precipe\n", + "precipes\n", + "precipice\n", + "precipices\n", + "precipitate\n", + "precipitated\n", + "precipitately\n", + "precipitateness\n", + "precipitatenesses\n", + "precipitates\n", + "precipitating\n", + "precipitation\n", + "precipitations\n", + "precipitous\n", + "precipitously\n", + "precis\n", + "precise\n", + "precised\n", + "precisely\n", + "preciseness\n", + "precisenesses\n", + "preciser\n", + "precises\n", + "precisest\n", + "precising\n", + "precision\n", + "precisions\n", + "precited\n", + "precivilization\n", + "preclean\n", + "precleaned\n", + "precleaning\n", + "precleans\n", + "preclearance\n", + "preclearances\n", + "preclude\n", + "precluded\n", + "precludes\n", + "precluding\n", + "precocious\n", + "precocities\n", + "precocity\n", + "precollege\n", + "precolonial\n", + "precombustion\n", + "precompute\n", + "precomputed\n", + "precomputes\n", + "precomputing\n", + "preconceive\n", + "preconceived\n", + "preconceives\n", + "preconceiving\n", + "preconception\n", + "preconceptions\n", + "preconcerted\n", + "precondition\n", + "preconditions\n", + "preconference\n", + "preconstruct\n", + "preconvention\n", + "precook\n", + "precooked\n", + "precooking\n", + "precooks\n", + "precool\n", + "precooled\n", + "precooling\n", + "precools\n", + "precure\n", + "precured\n", + "precures\n", + "precuring\n", + "precursor\n", + "precursors\n", + "predate\n", + "predated\n", + "predates\n", + "predating\n", + "predator\n", + "predators\n", + "predatory\n", + "predawn\n", + "predawns\n", + "predecessor\n", + "predecessors\n", + "predefine\n", + "predefined\n", + "predefines\n", + "predefining\n", + "predelinquent\n", + "predeparture\n", + "predesignate\n", + "predesignated\n", + "predesignates\n", + "predesignating\n", + "predesignation\n", + "predesignations\n", + "predestine\n", + "predestined\n", + "predestines\n", + "predestining\n", + "predetermine\n", + "predetermined\n", + "predetermines\n", + "predetermining\n", + "predial\n", + "predicament\n", + "predicaments\n", + "predicate\n", + "predicated\n", + "predicates\n", + "predicating\n", + "predication\n", + "predications\n", + "predict\n", + "predictable\n", + "predictably\n", + "predicted\n", + "predicting\n", + "prediction\n", + "predictions\n", + "predictive\n", + "predicts\n", + "predilection\n", + "predilections\n", + "predischarge\n", + "predispose\n", + "predisposed\n", + "predisposes\n", + "predisposing\n", + "predisposition\n", + "predispositions\n", + "prednisone\n", + "prednisones\n", + "predominance\n", + "predominances\n", + "predominant\n", + "predominantly\n", + "predominate\n", + "predominated\n", + "predominates\n", + "predominating\n", + "predusk\n", + "predusks\n", + "pree\n", + "preed\n", + "preeing\n", + "preelect\n", + "preelected\n", + "preelecting\n", + "preelection\n", + "preelectric\n", + "preelectronic\n", + "preelects\n", + "preemie\n", + "preemies\n", + "preeminence\n", + "preeminences\n", + "preeminent\n", + "preeminently\n", + "preemployment\n", + "preempt\n", + "preempted\n", + "preempting\n", + "preemption\n", + "preemptions\n", + "preempts\n", + "preen\n", + "preenact\n", + "preenacted\n", + "preenacting\n", + "preenacts\n", + "preened\n", + "preener\n", + "preeners\n", + "preening\n", + "preens\n", + "prees\n", + "preestablish\n", + "preestablished\n", + "preestablishes\n", + "preestablishing\n", + "preexist\n", + "preexisted\n", + "preexistence\n", + "preexistences\n", + "preexistent\n", + "preexisting\n", + "preexists\n", + "prefab\n", + "prefabbed\n", + "prefabbing\n", + "prefabricated\n", + "prefabrication\n", + "prefabrications\n", + "prefabs\n", + "preface\n", + "prefaced\n", + "prefacer\n", + "prefacers\n", + "prefaces\n", + "prefacing\n", + "prefect\n", + "prefects\n", + "prefecture\n", + "prefectures\n", + "prefer\n", + "preferable\n", + "preferably\n", + "preference\n", + "preferences\n", + "preferential\n", + "preferment\n", + "preferments\n", + "preferred\n", + "preferring\n", + "prefers\n", + "prefigure\n", + "prefigured\n", + "prefigures\n", + "prefiguring\n", + "prefilter\n", + "prefilters\n", + "prefix\n", + "prefixal\n", + "prefixed\n", + "prefixes\n", + "prefixing\n", + "prefocus\n", + "prefocused\n", + "prefocuses\n", + "prefocusing\n", + "prefocussed\n", + "prefocusses\n", + "prefocussing\n", + "preform\n", + "preformed\n", + "preforming\n", + "preforms\n", + "prefrank\n", + "prefranked\n", + "prefranking\n", + "prefranks\n", + "pregame\n", + "pregnancies\n", + "pregnancy\n", + "pregnant\n", + "preheat\n", + "preheated\n", + "preheating\n", + "preheats\n", + "prehensile\n", + "prehistoric\n", + "prehistorical\n", + "prehuman\n", + "prehumans\n", + "preimmunization\n", + "preimmunizations\n", + "preimmunize\n", + "preimmunized\n", + "preimmunizes\n", + "preimmunizing\n", + "preinaugural\n", + "preindustrial\n", + "preinoculate\n", + "preinoculated\n", + "preinoculates\n", + "preinoculating\n", + "preinoculation\n", + "preinterview\n", + "prejudge\n", + "prejudged\n", + "prejudges\n", + "prejudging\n", + "prejudice\n", + "prejudiced\n", + "prejudices\n", + "prejudicial\n", + "prejudicing\n", + "prekindergarten\n", + "prekindergartens\n", + "prelacies\n", + "prelacy\n", + "prelate\n", + "prelates\n", + "prelatic\n", + "prelaunch\n", + "prelect\n", + "prelected\n", + "prelecting\n", + "prelects\n", + "prelegal\n", + "prelim\n", + "preliminaries\n", + "preliminary\n", + "prelimit\n", + "prelimited\n", + "prelimiting\n", + "prelimits\n", + "prelims\n", + "prelude\n", + "preluded\n", + "preluder\n", + "preluders\n", + "preludes\n", + "preluding\n", + "preman\n", + "premarital\n", + "premature\n", + "prematurely\n", + "premed\n", + "premedic\n", + "premedics\n", + "premeditate\n", + "premeditated\n", + "premeditates\n", + "premeditating\n", + "premeditation\n", + "premeditations\n", + "premeds\n", + "premen\n", + "premenopausal\n", + "premenstrual\n", + "premie\n", + "premier\n", + "premiere\n", + "premiered\n", + "premieres\n", + "premiering\n", + "premiers\n", + "premiership\n", + "premierships\n", + "premies\n", + "premise\n", + "premised\n", + "premises\n", + "premising\n", + "premiss\n", + "premisses\n", + "premium\n", + "premiums\n", + "premix\n", + "premixed\n", + "premixes\n", + "premixing\n", + "premodern\n", + "premodified\n", + "premodifies\n", + "premodify\n", + "premodifying\n", + "premoisten\n", + "premoistened\n", + "premoistening\n", + "premoistens\n", + "premolar\n", + "premolars\n", + "premonition\n", + "premonitions\n", + "premonitory\n", + "premorse\n", + "premune\n", + "prename\n", + "prenames\n", + "prenatal\n", + "prenomen\n", + "prenomens\n", + "prenomina\n", + "prenotification\n", + "prenotifications\n", + "prenotified\n", + "prenotifies\n", + "prenotify\n", + "prenotifying\n", + "prentice\n", + "prenticed\n", + "prentices\n", + "prenticing\n", + "prenuptial\n", + "preoccupation\n", + "preoccupations\n", + "preoccupied\n", + "preoccupies\n", + "preoccupy\n", + "preoccupying\n", + "preopening\n", + "preoperational\n", + "preordain\n", + "preordained\n", + "preordaining\n", + "preordains\n", + "prep\n", + "prepack\n", + "prepackage\n", + "prepackaged\n", + "prepackages\n", + "prepackaging\n", + "prepacked\n", + "prepacking\n", + "prepacks\n", + "prepaid\n", + "preparation\n", + "preparations\n", + "preparatory\n", + "prepare\n", + "prepared\n", + "preparedness\n", + "preparednesses\n", + "preparer\n", + "preparers\n", + "prepares\n", + "preparing\n", + "prepay\n", + "prepaying\n", + "prepays\n", + "prepense\n", + "preplace\n", + "preplaced\n", + "preplaces\n", + "preplacing\n", + "preplan\n", + "preplanned\n", + "preplanning\n", + "preplans\n", + "preplant\n", + "preponderance\n", + "preponderances\n", + "preponderant\n", + "preponderantly\n", + "preponderate\n", + "preponderated\n", + "preponderates\n", + "preponderating\n", + "preposition\n", + "prepositional\n", + "prepositions\n", + "prepossessing\n", + "preposterous\n", + "prepped\n", + "preppie\n", + "preppies\n", + "prepping\n", + "preprint\n", + "preprinted\n", + "preprinting\n", + "preprints\n", + "preprocess\n", + "preprocessed\n", + "preprocesses\n", + "preprocessing\n", + "preproduction\n", + "preprofessional\n", + "preprogram\n", + "preps\n", + "prepubertal\n", + "prepublication\n", + "prepuce\n", + "prepuces\n", + "prepunch\n", + "prepunched\n", + "prepunches\n", + "prepunching\n", + "prepurchase\n", + "prepurchased\n", + "prepurchases\n", + "prepurchasing\n", + "prerecord\n", + "prerecorded\n", + "prerecording\n", + "prerecords\n", + "preregister\n", + "preregistered\n", + "preregistering\n", + "preregisters\n", + "preregistration\n", + "preregistrations\n", + "prerehearsal\n", + "prerelease\n", + "prerenal\n", + "prerequisite\n", + "prerequisites\n", + "preretirement\n", + "prerevolutionary\n", + "prerogative\n", + "prerogatives\n", + "presa\n", + "presage\n", + "presaged\n", + "presager\n", + "presagers\n", + "presages\n", + "presaging\n", + "presbyter\n", + "presbyters\n", + "prescience\n", + "presciences\n", + "prescient\n", + "prescind\n", + "prescinded\n", + "prescinding\n", + "prescinds\n", + "prescore\n", + "prescored\n", + "prescores\n", + "prescoring\n", + "prescribe\n", + "prescribed\n", + "prescribes\n", + "prescribing\n", + "prescription\n", + "prescriptions\n", + "prese\n", + "preseason\n", + "preselect\n", + "preselected\n", + "preselecting\n", + "preselects\n", + "presell\n", + "preselling\n", + "presells\n", + "presence\n", + "presences\n", + "present\n", + "presentable\n", + "presentation\n", + "presentations\n", + "presented\n", + "presentiment\n", + "presentiments\n", + "presenting\n", + "presently\n", + "presentment\n", + "presentments\n", + "presents\n", + "preservation\n", + "preservations\n", + "preservative\n", + "preservatives\n", + "preserve\n", + "preserved\n", + "preserver\n", + "preservers\n", + "preserves\n", + "preserving\n", + "preset\n", + "presets\n", + "presetting\n", + "preshape\n", + "preshaped\n", + "preshapes\n", + "preshaping\n", + "preshow\n", + "preshowed\n", + "preshowing\n", + "preshown\n", + "preshows\n", + "preshrink\n", + "preshrinked\n", + "preshrinking\n", + "preshrinks\n", + "preside\n", + "presided\n", + "presidencies\n", + "presidency\n", + "president\n", + "presidential\n", + "presidents\n", + "presider\n", + "presiders\n", + "presides\n", + "presidia\n", + "presiding\n", + "presidio\n", + "presidios\n", + "presift\n", + "presifted\n", + "presifting\n", + "presifts\n", + "presoak\n", + "presoaked\n", + "presoaking\n", + "presoaks\n", + "presold\n", + "press\n", + "pressed\n", + "presser\n", + "pressers\n", + "presses\n", + "pressing\n", + "pressman\n", + "pressmen\n", + "pressor\n", + "pressrun\n", + "pressruns\n", + "pressure\n", + "pressured\n", + "pressures\n", + "pressuring\n", + "pressurization\n", + "pressurizations\n", + "pressurize\n", + "pressurized\n", + "pressurizes\n", + "pressurizing\n", + "prest\n", + "prestamp\n", + "prestamped\n", + "prestamping\n", + "prestamps\n", + "prester\n", + "presterilize\n", + "presterilized\n", + "presterilizes\n", + "presterilizing\n", + "presters\n", + "prestidigitation\n", + "prestidigitations\n", + "prestige\n", + "prestiges\n", + "prestigious\n", + "presto\n", + "prestos\n", + "prestrike\n", + "prests\n", + "presumable\n", + "presumably\n", + "presume\n", + "presumed\n", + "presumer\n", + "presumers\n", + "presumes\n", + "presuming\n", + "presumption\n", + "presumptions\n", + "presumptive\n", + "presumptuous\n", + "presuppose\n", + "presupposed\n", + "presupposes\n", + "presupposing\n", + "presupposition\n", + "presuppositions\n", + "presurgical\n", + "presweeten\n", + "presweetened\n", + "presweetening\n", + "presweetens\n", + "pretaste\n", + "pretasted\n", + "pretastes\n", + "pretasting\n", + "pretax\n", + "preteen\n", + "preteens\n", + "pretelevision\n", + "pretence\n", + "pretences\n", + "pretend\n", + "pretended\n", + "pretender\n", + "pretenders\n", + "pretending\n", + "pretends\n", + "pretense\n", + "pretenses\n", + "pretension\n", + "pretensions\n", + "pretentious\n", + "pretentiously\n", + "pretentiousness\n", + "pretentiousnesses\n", + "preterit\n", + "preterits\n", + "preternatural\n", + "preternaturally\n", + "pretest\n", + "pretested\n", + "pretesting\n", + "pretests\n", + "pretext\n", + "pretexted\n", + "pretexting\n", + "pretexts\n", + "pretor\n", + "pretors\n", + "pretournament\n", + "pretreat\n", + "pretreated\n", + "pretreating\n", + "pretreatment\n", + "pretreats\n", + "prettied\n", + "prettier\n", + "pretties\n", + "prettiest\n", + "prettified\n", + "prettifies\n", + "prettify\n", + "prettifying\n", + "prettily\n", + "prettiness\n", + "prettinesses\n", + "pretty\n", + "prettying\n", + "pretzel\n", + "pretzels\n", + "preunion\n", + "preunions\n", + "preunite\n", + "preunited\n", + "preunites\n", + "preuniting\n", + "prevail\n", + "prevailed\n", + "prevailing\n", + "prevailingly\n", + "prevails\n", + "prevalence\n", + "prevalences\n", + "prevalent\n", + "prevaricate\n", + "prevaricated\n", + "prevaricates\n", + "prevaricating\n", + "prevarication\n", + "prevarications\n", + "prevaricator\n", + "prevaricators\n", + "prevent\n", + "preventable\n", + "preventative\n", + "prevented\n", + "preventing\n", + "prevention\n", + "preventions\n", + "preventive\n", + "prevents\n", + "preview\n", + "previewed\n", + "previewing\n", + "previews\n", + "previous\n", + "previously\n", + "previse\n", + "prevised\n", + "previses\n", + "prevising\n", + "previsor\n", + "previsors\n", + "prevue\n", + "prevued\n", + "prevues\n", + "prevuing\n", + "prewar\n", + "prewarm\n", + "prewarmed\n", + "prewarming\n", + "prewarms\n", + "prewarn\n", + "prewarned\n", + "prewarning\n", + "prewarns\n", + "prewash\n", + "prewashed\n", + "prewashes\n", + "prewashing\n", + "prewrap\n", + "prewrapped\n", + "prewrapping\n", + "prewraps\n", + "prex\n", + "prexes\n", + "prexies\n", + "prexy\n", + "prey\n", + "preyed\n", + "preyer\n", + "preyers\n", + "preying\n", + "preys\n", + "priapean\n", + "priapi\n", + "priapic\n", + "priapism\n", + "priapisms\n", + "priapus\n", + "priapuses\n", + "price\n", + "priced\n", + "priceless\n", + "pricer\n", + "pricers\n", + "prices\n", + "pricey\n", + "pricier\n", + "priciest\n", + "pricing\n", + "prick\n", + "pricked\n", + "pricker\n", + "prickers\n", + "pricket\n", + "prickets\n", + "prickier\n", + "prickiest\n", + "pricking\n", + "prickle\n", + "prickled\n", + "prickles\n", + "pricklier\n", + "prickliest\n", + "prickling\n", + "prickly\n", + "pricks\n", + "pricky\n", + "pricy\n", + "pride\n", + "prided\n", + "prideful\n", + "prides\n", + "priding\n", + "pried\n", + "priedieu\n", + "priedieus\n", + "priedieux\n", + "prier\n", + "priers\n", + "pries\n", + "priest\n", + "priested\n", + "priestess\n", + "priestesses\n", + "priesthood\n", + "priesthoods\n", + "priesting\n", + "priestlier\n", + "priestliest\n", + "priestliness\n", + "priestlinesses\n", + "priestly\n", + "priests\n", + "prig\n", + "prigged\n", + "priggeries\n", + "priggery\n", + "prigging\n", + "priggish\n", + "priggishly\n", + "priggism\n", + "priggisms\n", + "prigs\n", + "prill\n", + "prilled\n", + "prilling\n", + "prills\n", + "prim\n", + "prima\n", + "primacies\n", + "primacy\n", + "primage\n", + "primages\n", + "primal\n", + "primaries\n", + "primarily\n", + "primary\n", + "primas\n", + "primatal\n", + "primate\n", + "primates\n", + "prime\n", + "primed\n", + "primely\n", + "primer\n", + "primero\n", + "primeros\n", + "primers\n", + "primes\n", + "primeval\n", + "primi\n", + "primine\n", + "primines\n", + "priming\n", + "primings\n", + "primitive\n", + "primitively\n", + "primitiveness\n", + "primitivenesses\n", + "primitives\n", + "primitivities\n", + "primitivity\n", + "primly\n", + "primmed\n", + "primmer\n", + "primmest\n", + "primming\n", + "primness\n", + "primnesses\n", + "primo\n", + "primordial\n", + "primos\n", + "primp\n", + "primped\n", + "primping\n", + "primps\n", + "primrose\n", + "primroses\n", + "prims\n", + "primsie\n", + "primula\n", + "primulas\n", + "primus\n", + "primuses\n", + "prince\n", + "princelier\n", + "princeliest\n", + "princely\n", + "princes\n", + "princess\n", + "princesses\n", + "principal\n", + "principalities\n", + "principality\n", + "principally\n", + "principals\n", + "principe\n", + "principi\n", + "principle\n", + "principles\n", + "princock\n", + "princocks\n", + "princox\n", + "princoxes\n", + "prink\n", + "prinked\n", + "prinker\n", + "prinkers\n", + "prinking\n", + "prinks\n", + "print\n", + "printable\n", + "printed\n", + "printer\n", + "printeries\n", + "printers\n", + "printery\n", + "printing\n", + "printings\n", + "printout\n", + "printouts\n", + "prints\n", + "prior\n", + "priorate\n", + "priorates\n", + "prioress\n", + "prioresses\n", + "priories\n", + "priorities\n", + "prioritize\n", + "prioritized\n", + "prioritizes\n", + "prioritizing\n", + "priority\n", + "priorly\n", + "priors\n", + "priory\n", + "prise\n", + "prised\n", + "prisere\n", + "priseres\n", + "prises\n", + "prising\n", + "prism\n", + "prismatic\n", + "prismoid\n", + "prismoids\n", + "prisms\n", + "prison\n", + "prisoned\n", + "prisoner\n", + "prisoners\n", + "prisoning\n", + "prisons\n", + "priss\n", + "prisses\n", + "prissier\n", + "prissies\n", + "prissiest\n", + "prissily\n", + "prissiness\n", + "prissinesses\n", + "prissy\n", + "pristane\n", + "pristanes\n", + "pristine\n", + "prithee\n", + "privacies\n", + "privacy\n", + "private\n", + "privateer\n", + "privateers\n", + "privater\n", + "privates\n", + "privatest\n", + "privation\n", + "privations\n", + "privet\n", + "privets\n", + "privier\n", + "privies\n", + "priviest\n", + "privilege\n", + "privileged\n", + "privileges\n", + "privily\n", + "privities\n", + "privity\n", + "privy\n", + "prize\n", + "prized\n", + "prizefight\n", + "prizefighter\n", + "prizefighters\n", + "prizefighting\n", + "prizefightings\n", + "prizefights\n", + "prizer\n", + "prizers\n", + "prizes\n", + "prizewinner\n", + "prizewinners\n", + "prizing\n", + "pro\n", + "proa\n", + "proas\n", + "probabilities\n", + "probability\n", + "probable\n", + "probably\n", + "proband\n", + "probands\n", + "probang\n", + "probangs\n", + "probate\n", + "probated\n", + "probates\n", + "probating\n", + "probation\n", + "probationary\n", + "probationer\n", + "probationers\n", + "probations\n", + "probe\n", + "probed\n", + "prober\n", + "probers\n", + "probes\n", + "probing\n", + "probit\n", + "probities\n", + "probits\n", + "probity\n", + "problem\n", + "problematic\n", + "problematical\n", + "problems\n", + "proboscides\n", + "proboscis\n", + "procaine\n", + "procaines\n", + "procarp\n", + "procarps\n", + "procedure\n", + "procedures\n", + "proceed\n", + "proceeded\n", + "proceeding\n", + "proceedings\n", + "proceeds\n", + "process\n", + "processed\n", + "processes\n", + "processing\n", + "procession\n", + "processional\n", + "processionals\n", + "processions\n", + "processor\n", + "processors\n", + "prochain\n", + "prochein\n", + "proclaim\n", + "proclaimed\n", + "proclaiming\n", + "proclaims\n", + "proclamation\n", + "proclamations\n", + "proclivities\n", + "proclivity\n", + "procrastinate\n", + "procrastinated\n", + "procrastinates\n", + "procrastinating\n", + "procrastination\n", + "procrastinations\n", + "procrastinator\n", + "procrastinators\n", + "procreate\n", + "procreated\n", + "procreates\n", + "procreating\n", + "procreation\n", + "procreations\n", + "procreative\n", + "procreator\n", + "procreators\n", + "proctor\n", + "proctored\n", + "proctorial\n", + "proctoring\n", + "proctors\n", + "procurable\n", + "procural\n", + "procurals\n", + "procure\n", + "procured\n", + "procurement\n", + "procurements\n", + "procurer\n", + "procurers\n", + "procures\n", + "procuring\n", + "prod\n", + "prodded\n", + "prodder\n", + "prodders\n", + "prodding\n", + "prodigal\n", + "prodigalities\n", + "prodigality\n", + "prodigals\n", + "prodigies\n", + "prodigious\n", + "prodigiously\n", + "prodigy\n", + "prodromal\n", + "prodromata\n", + "prodrome\n", + "prodromes\n", + "prods\n", + "produce\n", + "produced\n", + "producer\n", + "producers\n", + "produces\n", + "producing\n", + "product\n", + "production\n", + "productions\n", + "productive\n", + "productiveness\n", + "productivenesses\n", + "productivities\n", + "productivity\n", + "products\n", + "proem\n", + "proemial\n", + "proems\n", + "proette\n", + "proettes\n", + "prof\n", + "profane\n", + "profaned\n", + "profanely\n", + "profaneness\n", + "profanenesses\n", + "profaner\n", + "profaners\n", + "profanes\n", + "profaning\n", + "profess\n", + "professed\n", + "professedly\n", + "professes\n", + "professing\n", + "profession\n", + "professional\n", + "professionalism\n", + "professionalize\n", + "professionalized\n", + "professionalizes\n", + "professionalizing\n", + "professionally\n", + "professions\n", + "professor\n", + "professorial\n", + "professors\n", + "professorship\n", + "professorships\n", + "proffer\n", + "proffered\n", + "proffering\n", + "proffers\n", + "proficiencies\n", + "proficiency\n", + "proficient\n", + "proficiently\n", + "profile\n", + "profiled\n", + "profiler\n", + "profilers\n", + "profiles\n", + "profiling\n", + "profit\n", + "profitability\n", + "profitable\n", + "profitably\n", + "profited\n", + "profiteer\n", + "profiteered\n", + "profiteering\n", + "profiteers\n", + "profiter\n", + "profiters\n", + "profiting\n", + "profitless\n", + "profits\n", + "profligacies\n", + "profligacy\n", + "profligate\n", + "profligately\n", + "profligates\n", + "profound\n", + "profounder\n", + "profoundest\n", + "profoundly\n", + "profounds\n", + "profs\n", + "profundities\n", + "profundity\n", + "profuse\n", + "profusely\n", + "profusion\n", + "profusions\n", + "prog\n", + "progenies\n", + "progenitor\n", + "progenitors\n", + "progeny\n", + "progged\n", + "progger\n", + "proggers\n", + "progging\n", + "prognose\n", + "prognosed\n", + "prognoses\n", + "prognosing\n", + "prognosis\n", + "prognosticate\n", + "prognosticated\n", + "prognosticates\n", + "prognosticating\n", + "prognostication\n", + "prognostications\n", + "prognosticator\n", + "prognosticators\n", + "prograde\n", + "program\n", + "programed\n", + "programing\n", + "programmabilities\n", + "programmability\n", + "programmable\n", + "programme\n", + "programmed\n", + "programmer\n", + "programmers\n", + "programmes\n", + "programming\n", + "programs\n", + "progress\n", + "progressed\n", + "progresses\n", + "progressing\n", + "progression\n", + "progressions\n", + "progressive\n", + "progressively\n", + "progs\n", + "prohibit\n", + "prohibited\n", + "prohibiting\n", + "prohibition\n", + "prohibitionist\n", + "prohibitionists\n", + "prohibitions\n", + "prohibitive\n", + "prohibitively\n", + "prohibitory\n", + "prohibits\n", + "project\n", + "projected\n", + "projectile\n", + "projectiles\n", + "projecting\n", + "projection\n", + "projections\n", + "projector\n", + "projectors\n", + "projects\n", + "projet\n", + "projets\n", + "prolabor\n", + "prolamin\n", + "prolamins\n", + "prolan\n", + "prolans\n", + "prolapse\n", + "prolapsed\n", + "prolapses\n", + "prolapsing\n", + "prolate\n", + "prole\n", + "proleg\n", + "prolegs\n", + "proles\n", + "proletarian\n", + "proletariat\n", + "proliferate\n", + "proliferated\n", + "proliferates\n", + "proliferating\n", + "proliferation\n", + "prolific\n", + "prolifically\n", + "proline\n", + "prolines\n", + "prolix\n", + "prolixly\n", + "prolog\n", + "prologed\n", + "prologing\n", + "prologs\n", + "prologue\n", + "prologued\n", + "prologues\n", + "prologuing\n", + "prolong\n", + "prolongation\n", + "prolongations\n", + "prolonge\n", + "prolonged\n", + "prolonges\n", + "prolonging\n", + "prolongs\n", + "prom\n", + "promenade\n", + "promenaded\n", + "promenades\n", + "promenading\n", + "prominence\n", + "prominences\n", + "prominent\n", + "prominently\n", + "promiscuities\n", + "promiscuity\n", + "promiscuous\n", + "promiscuously\n", + "promiscuousness\n", + "promiscuousnesses\n", + "promise\n", + "promised\n", + "promisee\n", + "promisees\n", + "promiser\n", + "promisers\n", + "promises\n", + "promising\n", + "promisingly\n", + "promisor\n", + "promisors\n", + "promissory\n", + "promontories\n", + "promontory\n", + "promote\n", + "promoted\n", + "promoter\n", + "promoters\n", + "promotes\n", + "promoting\n", + "promotion\n", + "promotional\n", + "promotions\n", + "prompt\n", + "prompted\n", + "prompter\n", + "prompters\n", + "promptest\n", + "prompting\n", + "promptly\n", + "promptness\n", + "prompts\n", + "proms\n", + "promulge\n", + "promulged\n", + "promulges\n", + "promulging\n", + "pronate\n", + "pronated\n", + "pronates\n", + "pronating\n", + "pronator\n", + "pronatores\n", + "pronators\n", + "prone\n", + "pronely\n", + "proneness\n", + "pronenesses\n", + "prong\n", + "pronged\n", + "pronging\n", + "prongs\n", + "pronota\n", + "pronotum\n", + "pronoun\n", + "pronounce\n", + "pronounceable\n", + "pronounced\n", + "pronouncement\n", + "pronouncements\n", + "pronounces\n", + "pronouncing\n", + "pronouns\n", + "pronto\n", + "pronunciation\n", + "pronunciations\n", + "proof\n", + "proofed\n", + "proofer\n", + "proofers\n", + "proofing\n", + "proofread\n", + "proofreaded\n", + "proofreader\n", + "proofreaders\n", + "proofreading\n", + "proofreads\n", + "proofs\n", + "prop\n", + "propaganda\n", + "propagandas\n", + "propagandist\n", + "propagandists\n", + "propagandize\n", + "propagandized\n", + "propagandizes\n", + "propagandizing\n", + "propagate\n", + "propagated\n", + "propagates\n", + "propagating\n", + "propagation\n", + "propagations\n", + "propane\n", + "propanes\n", + "propel\n", + "propellant\n", + "propellants\n", + "propelled\n", + "propellent\n", + "propellents\n", + "propeller\n", + "propellers\n", + "propelling\n", + "propels\n", + "propend\n", + "propended\n", + "propending\n", + "propends\n", + "propene\n", + "propenes\n", + "propenol\n", + "propenols\n", + "propense\n", + "propensities\n", + "propensity\n", + "propenyl\n", + "proper\n", + "properer\n", + "properest\n", + "properly\n", + "propers\n", + "properties\n", + "property\n", + "prophage\n", + "prophages\n", + "prophase\n", + "prophases\n", + "prophecies\n", + "prophecy\n", + "prophesied\n", + "prophesier\n", + "prophesiers\n", + "prophesies\n", + "prophesy\n", + "prophesying\n", + "prophet\n", + "prophetess\n", + "prophetesses\n", + "prophetic\n", + "prophetical\n", + "prophetically\n", + "prophets\n", + "prophylactic\n", + "prophylactics\n", + "prophylaxis\n", + "propine\n", + "propined\n", + "propines\n", + "propining\n", + "propinquities\n", + "propinquity\n", + "propitiate\n", + "propitiated\n", + "propitiates\n", + "propitiating\n", + "propitiation\n", + "propitiations\n", + "propitiatory\n", + "propitious\n", + "propjet\n", + "propjets\n", + "propman\n", + "propmen\n", + "propolis\n", + "propolises\n", + "propone\n", + "proponed\n", + "proponent\n", + "proponents\n", + "propones\n", + "proponing\n", + "proportion\n", + "proportional\n", + "proportionally\n", + "proportionate\n", + "proportionately\n", + "proportions\n", + "proposal\n", + "proposals\n", + "propose\n", + "proposed\n", + "proposer\n", + "proposers\n", + "proposes\n", + "proposing\n", + "proposition\n", + "propositions\n", + "propound\n", + "propounded\n", + "propounding\n", + "propounds\n", + "propped\n", + "propping\n", + "proprietary\n", + "proprieties\n", + "proprietor\n", + "proprietors\n", + "proprietorship\n", + "proprietorships\n", + "proprietress\n", + "proprietresses\n", + "propriety\n", + "props\n", + "propulsion\n", + "propulsions\n", + "propulsive\n", + "propyl\n", + "propyla\n", + "propylic\n", + "propylon\n", + "propyls\n", + "prorate\n", + "prorated\n", + "prorates\n", + "prorating\n", + "prorogue\n", + "prorogued\n", + "prorogues\n", + "proroguing\n", + "pros\n", + "prosaic\n", + "prosaism\n", + "prosaisms\n", + "prosaist\n", + "prosaists\n", + "proscribe\n", + "proscribed\n", + "proscribes\n", + "proscribing\n", + "proscription\n", + "proscriptions\n", + "prose\n", + "prosect\n", + "prosected\n", + "prosecting\n", + "prosects\n", + "prosecute\n", + "prosecuted\n", + "prosecutes\n", + "prosecuting\n", + "prosecution\n", + "prosecutions\n", + "prosecutor\n", + "prosecutors\n", + "prosed\n", + "proselyte\n", + "proselytes\n", + "proselytize\n", + "proselytized\n", + "proselytizes\n", + "proselytizing\n", + "proser\n", + "prosers\n", + "proses\n", + "prosier\n", + "prosiest\n", + "prosily\n", + "prosing\n", + "prosit\n", + "proso\n", + "prosodic\n", + "prosodies\n", + "prosody\n", + "prosoma\n", + "prosomal\n", + "prosomas\n", + "prosos\n", + "prospect\n", + "prospected\n", + "prospecting\n", + "prospective\n", + "prospectively\n", + "prospector\n", + "prospectors\n", + "prospects\n", + "prospectus\n", + "prospectuses\n", + "prosper\n", + "prospered\n", + "prospering\n", + "prosperities\n", + "prosperity\n", + "prosperous\n", + "prospers\n", + "prost\n", + "prostate\n", + "prostates\n", + "prostatic\n", + "prostheses\n", + "prosthesis\n", + "prosthetic\n", + "prostitute\n", + "prostituted\n", + "prostitutes\n", + "prostituting\n", + "prostitution\n", + "prostitutions\n", + "prostrate\n", + "prostrated\n", + "prostrates\n", + "prostrating\n", + "prostration\n", + "prostrations\n", + "prostyle\n", + "prostyles\n", + "prosy\n", + "protamin\n", + "protamins\n", + "protases\n", + "protasis\n", + "protatic\n", + "protea\n", + "protean\n", + "proteas\n", + "protease\n", + "proteases\n", + "protect\n", + "protected\n", + "protecting\n", + "protection\n", + "protections\n", + "protective\n", + "protector\n", + "protectorate\n", + "protectorates\n", + "protectors\n", + "protects\n", + "protege\n", + "protegee\n", + "protegees\n", + "proteges\n", + "protei\n", + "proteid\n", + "proteide\n", + "proteides\n", + "proteids\n", + "protein\n", + "proteins\n", + "proteinuria\n", + "protend\n", + "protended\n", + "protending\n", + "protends\n", + "proteose\n", + "proteoses\n", + "protest\n", + "protestation\n", + "protestations\n", + "protested\n", + "protesting\n", + "protests\n", + "proteus\n", + "prothrombin\n", + "protist\n", + "protists\n", + "protium\n", + "protiums\n", + "protocol\n", + "protocoled\n", + "protocoling\n", + "protocolled\n", + "protocolling\n", + "protocols\n", + "proton\n", + "protonic\n", + "protons\n", + "protoplasm\n", + "protoplasmic\n", + "protoplasms\n", + "protopod\n", + "protopods\n", + "prototype\n", + "prototypes\n", + "protoxid\n", + "protoxids\n", + "protozoa\n", + "protozoan\n", + "protozoans\n", + "protract\n", + "protracted\n", + "protracting\n", + "protractor\n", + "protractors\n", + "protracts\n", + "protrude\n", + "protruded\n", + "protrudes\n", + "protruding\n", + "protrusion\n", + "protrusions\n", + "protrusive\n", + "protuberance\n", + "protuberances\n", + "protuberant\n", + "protyl\n", + "protyle\n", + "protyles\n", + "protyls\n", + "proud\n", + "prouder\n", + "proudest\n", + "proudful\n", + "proudly\n", + "prounion\n", + "provable\n", + "provably\n", + "prove\n", + "proved\n", + "proven\n", + "provender\n", + "provenders\n", + "provenly\n", + "prover\n", + "proverb\n", + "proverbed\n", + "proverbial\n", + "proverbing\n", + "proverbs\n", + "provers\n", + "proves\n", + "provide\n", + "provided\n", + "providence\n", + "providences\n", + "provident\n", + "providential\n", + "providently\n", + "provider\n", + "providers\n", + "provides\n", + "providing\n", + "province\n", + "provinces\n", + "provincial\n", + "provincialism\n", + "provincialisms\n", + "proving\n", + "proviral\n", + "provirus\n", + "proviruses\n", + "provision\n", + "provisional\n", + "provisions\n", + "proviso\n", + "provisoes\n", + "provisos\n", + "provocation\n", + "provocations\n", + "provocative\n", + "provoke\n", + "provoked\n", + "provoker\n", + "provokers\n", + "provokes\n", + "provoking\n", + "provost\n", + "provosts\n", + "prow\n", + "prowar\n", + "prower\n", + "prowess\n", + "prowesses\n", + "prowest\n", + "prowl\n", + "prowled\n", + "prowler\n", + "prowlers\n", + "prowling\n", + "prowls\n", + "prows\n", + "proxemic\n", + "proxies\n", + "proximal\n", + "proximo\n", + "proxy\n", + "prude\n", + "prudence\n", + "prudences\n", + "prudent\n", + "prudential\n", + "prudently\n", + "pruderies\n", + "prudery\n", + "prudes\n", + "prudish\n", + "pruinose\n", + "prunable\n", + "prune\n", + "pruned\n", + "prunella\n", + "prunellas\n", + "prunelle\n", + "prunelles\n", + "prunello\n", + "prunellos\n", + "pruner\n", + "pruners\n", + "prunes\n", + "pruning\n", + "prurient\n", + "prurigo\n", + "prurigos\n", + "pruritic\n", + "pruritus\n", + "prurituses\n", + "prussic\n", + "pruta\n", + "prutah\n", + "prutot\n", + "prutoth\n", + "pry\n", + "pryer\n", + "pryers\n", + "prying\n", + "pryingly\n", + "prythee\n", + "psalm\n", + "psalmed\n", + "psalmic\n", + "psalming\n", + "psalmist\n", + "psalmists\n", + "psalmodies\n", + "psalmody\n", + "psalms\n", + "psalter\n", + "psalteries\n", + "psalters\n", + "psaltery\n", + "psaltries\n", + "psaltry\n", + "psammite\n", + "psammites\n", + "pschent\n", + "pschents\n", + "psephite\n", + "psephites\n", + "pseudo\n", + "pseudonym\n", + "pseudonymous\n", + "pshaw\n", + "pshawed\n", + "pshawing\n", + "pshaws\n", + "psi\n", + "psiloses\n", + "psilosis\n", + "psilotic\n", + "psis\n", + "psoae\n", + "psoai\n", + "psoas\n", + "psocid\n", + "psocids\n", + "psoralea\n", + "psoraleas\n", + "psoriasis\n", + "psoriasises\n", + "psst\n", + "psych\n", + "psyche\n", + "psyched\n", + "psyches\n", + "psychiatric\n", + "psychiatries\n", + "psychiatrist\n", + "psychiatrists\n", + "psychiatry\n", + "psychic\n", + "psychically\n", + "psychics\n", + "psyching\n", + "psycho\n", + "psychoanalyses\n", + "psychoanalysis\n", + "psychoanalyst\n", + "psychoanalysts\n", + "psychoanalytic\n", + "psychoanalyze\n", + "psychoanalyzed\n", + "psychoanalyzes\n", + "psychoanalyzing\n", + "psychological\n", + "psychologically\n", + "psychologies\n", + "psychologist\n", + "psychologists\n", + "psychology\n", + "psychopath\n", + "psychopathic\n", + "psychopaths\n", + "psychos\n", + "psychoses\n", + "psychosis\n", + "psychosocial\n", + "psychosomatic\n", + "psychotherapies\n", + "psychotherapist\n", + "psychotherapists\n", + "psychotherapy\n", + "psychotic\n", + "psychs\n", + "psylla\n", + "psyllas\n", + "psyllid\n", + "psyllids\n", + "pterin\n", + "pterins\n", + "pteropod\n", + "pteropods\n", + "pteryla\n", + "pterylae\n", + "ptisan\n", + "ptisans\n", + "ptomain\n", + "ptomaine\n", + "ptomaines\n", + "ptomains\n", + "ptoses\n", + "ptosis\n", + "ptotic\n", + "ptyalin\n", + "ptyalins\n", + "ptyalism\n", + "ptyalisms\n", + "pub\n", + "puberal\n", + "pubertal\n", + "puberties\n", + "puberty\n", + "pubes\n", + "pubic\n", + "pubis\n", + "public\n", + "publican\n", + "publicans\n", + "publication\n", + "publications\n", + "publicist\n", + "publicists\n", + "publicities\n", + "publicity\n", + "publicize\n", + "publicized\n", + "publicizes\n", + "publicizing\n", + "publicly\n", + "publics\n", + "publish\n", + "published\n", + "publisher\n", + "publishers\n", + "publishes\n", + "publishing\n", + "pubs\n", + "puccoon\n", + "puccoons\n", + "puce\n", + "puces\n", + "puck\n", + "pucka\n", + "pucker\n", + "puckered\n", + "puckerer\n", + "puckerers\n", + "puckerier\n", + "puckeriest\n", + "puckering\n", + "puckers\n", + "puckery\n", + "puckish\n", + "pucks\n", + "pud\n", + "pudding\n", + "puddings\n", + "puddle\n", + "puddled\n", + "puddler\n", + "puddlers\n", + "puddles\n", + "puddlier\n", + "puddliest\n", + "puddling\n", + "puddlings\n", + "puddly\n", + "pudencies\n", + "pudency\n", + "pudenda\n", + "pudendal\n", + "pudendum\n", + "pudgier\n", + "pudgiest\n", + "pudgily\n", + "pudgy\n", + "pudic\n", + "puds\n", + "pueblo\n", + "pueblos\n", + "puerile\n", + "puerilities\n", + "puerility\n", + "puff\n", + "puffball\n", + "puffballs\n", + "puffed\n", + "puffer\n", + "pufferies\n", + "puffers\n", + "puffery\n", + "puffier\n", + "puffiest\n", + "puffily\n", + "puffin\n", + "puffing\n", + "puffins\n", + "puffs\n", + "puffy\n", + "pug\n", + "pugaree\n", + "pugarees\n", + "puggaree\n", + "puggarees\n", + "pugged\n", + "puggier\n", + "puggiest\n", + "pugging\n", + "puggish\n", + "puggree\n", + "puggrees\n", + "puggries\n", + "puggry\n", + "puggy\n", + "pugh\n", + "pugilism\n", + "pugilisms\n", + "pugilist\n", + "pugilistic\n", + "pugilists\n", + "pugmark\n", + "pugmarks\n", + "pugnacious\n", + "pugree\n", + "pugrees\n", + "pugs\n", + "puisne\n", + "puisnes\n", + "puissant\n", + "puke\n", + "puked\n", + "pukes\n", + "puking\n", + "pukka\n", + "pul\n", + "pulchritude\n", + "pulchritudes\n", + "pulchritudinous\n", + "pule\n", + "puled\n", + "puler\n", + "pulers\n", + "pules\n", + "puli\n", + "pulicene\n", + "pulicide\n", + "pulicides\n", + "pulik\n", + "puling\n", + "pulingly\n", + "pulings\n", + "pulis\n", + "pull\n", + "pullback\n", + "pullbacks\n", + "pulled\n", + "puller\n", + "pullers\n", + "pullet\n", + "pullets\n", + "pulley\n", + "pulleys\n", + "pulling\n", + "pullman\n", + "pullmans\n", + "pullout\n", + "pullouts\n", + "pullover\n", + "pullovers\n", + "pulls\n", + "pulmonary\n", + "pulmonic\n", + "pulmotor\n", + "pulmotors\n", + "pulp\n", + "pulpal\n", + "pulpally\n", + "pulped\n", + "pulper\n", + "pulpier\n", + "pulpiest\n", + "pulpily\n", + "pulping\n", + "pulpit\n", + "pulpital\n", + "pulpits\n", + "pulpless\n", + "pulpous\n", + "pulps\n", + "pulpwood\n", + "pulpwoods\n", + "pulpy\n", + "pulque\n", + "pulques\n", + "puls\n", + "pulsant\n", + "pulsar\n", + "pulsars\n", + "pulsate\n", + "pulsated\n", + "pulsates\n", + "pulsating\n", + "pulsation\n", + "pulsations\n", + "pulsator\n", + "pulsators\n", + "pulse\n", + "pulsed\n", + "pulsejet\n", + "pulsejets\n", + "pulser\n", + "pulsers\n", + "pulses\n", + "pulsing\n", + "pulsion\n", + "pulsions\n", + "pulsojet\n", + "pulsojets\n", + "pulverize\n", + "pulverized\n", + "pulverizes\n", + "pulverizing\n", + "pulvilli\n", + "pulvinar\n", + "pulvini\n", + "pulvinus\n", + "puma\n", + "pumas\n", + "pumelo\n", + "pumelos\n", + "pumice\n", + "pumiced\n", + "pumicer\n", + "pumicers\n", + "pumices\n", + "pumicing\n", + "pumicite\n", + "pumicites\n", + "pummel\n", + "pummeled\n", + "pummeling\n", + "pummelled\n", + "pummelling\n", + "pummels\n", + "pump\n", + "pumped\n", + "pumper\n", + "pumpernickel\n", + "pumpernickels\n", + "pumpers\n", + "pumping\n", + "pumpkin\n", + "pumpkins\n", + "pumpless\n", + "pumplike\n", + "pumps\n", + "pun\n", + "puna\n", + "punas\n", + "punch\n", + "punched\n", + "puncheon\n", + "puncheons\n", + "puncher\n", + "punchers\n", + "punches\n", + "punchier\n", + "punchiest\n", + "punching\n", + "punchy\n", + "punctate\n", + "punctilious\n", + "punctual\n", + "punctualities\n", + "punctuality\n", + "punctually\n", + "punctuate\n", + "punctuated\n", + "punctuates\n", + "punctuating\n", + "punctuation\n", + "puncture\n", + "punctured\n", + "punctures\n", + "puncturing\n", + "pundit\n", + "punditic\n", + "punditries\n", + "punditry\n", + "pundits\n", + "pung\n", + "pungencies\n", + "pungency\n", + "pungent\n", + "pungently\n", + "pungs\n", + "punier\n", + "puniest\n", + "punily\n", + "puniness\n", + "puninesses\n", + "punish\n", + "punishable\n", + "punished\n", + "punisher\n", + "punishers\n", + "punishes\n", + "punishing\n", + "punishment\n", + "punishments\n", + "punition\n", + "punitions\n", + "punitive\n", + "punitory\n", + "punk\n", + "punka\n", + "punkah\n", + "punkahs\n", + "punkas\n", + "punker\n", + "punkest\n", + "punkey\n", + "punkeys\n", + "punkie\n", + "punkier\n", + "punkies\n", + "punkiest\n", + "punkin\n", + "punkins\n", + "punks\n", + "punky\n", + "punned\n", + "punner\n", + "punners\n", + "punnier\n", + "punniest\n", + "punning\n", + "punny\n", + "puns\n", + "punster\n", + "punsters\n", + "punt\n", + "punted\n", + "punter\n", + "punters\n", + "punties\n", + "punting\n", + "punto\n", + "puntos\n", + "punts\n", + "punty\n", + "puny\n", + "pup\n", + "pupa\n", + "pupae\n", + "pupal\n", + "puparia\n", + "puparial\n", + "puparium\n", + "pupas\n", + "pupate\n", + "pupated\n", + "pupates\n", + "pupating\n", + "pupation\n", + "pupations\n", + "pupfish\n", + "pupfishes\n", + "pupil\n", + "pupilage\n", + "pupilages\n", + "pupilar\n", + "pupilary\n", + "pupils\n", + "pupped\n", + "puppet\n", + "puppeteer\n", + "puppeteers\n", + "puppetries\n", + "puppetry\n", + "puppets\n", + "puppies\n", + "pupping\n", + "puppy\n", + "puppydom\n", + "puppydoms\n", + "puppyish\n", + "pups\n", + "pur\n", + "purana\n", + "puranas\n", + "puranic\n", + "purblind\n", + "purchase\n", + "purchased\n", + "purchaser\n", + "purchasers\n", + "purchases\n", + "purchasing\n", + "purda\n", + "purdah\n", + "purdahs\n", + "purdas\n", + "pure\n", + "purebred\n", + "purebreds\n", + "puree\n", + "pureed\n", + "pureeing\n", + "purees\n", + "purely\n", + "pureness\n", + "purenesses\n", + "purer\n", + "purest\n", + "purfle\n", + "purfled\n", + "purfles\n", + "purfling\n", + "purflings\n", + "purgative\n", + "purgatorial\n", + "purgatories\n", + "purgatory\n", + "purge\n", + "purged\n", + "purger\n", + "purgers\n", + "purges\n", + "purging\n", + "purgings\n", + "puri\n", + "purification\n", + "purifications\n", + "purified\n", + "purifier\n", + "purifiers\n", + "purifies\n", + "purify\n", + "purifying\n", + "purin\n", + "purine\n", + "purines\n", + "purins\n", + "puris\n", + "purism\n", + "purisms\n", + "purist\n", + "puristic\n", + "purists\n", + "puritan\n", + "puritanical\n", + "puritans\n", + "purities\n", + "purity\n", + "purl\n", + "purled\n", + "purlieu\n", + "purlieus\n", + "purlin\n", + "purline\n", + "purlines\n", + "purling\n", + "purlins\n", + "purloin\n", + "purloined\n", + "purloining\n", + "purloins\n", + "purls\n", + "purple\n", + "purpled\n", + "purpler\n", + "purples\n", + "purplest\n", + "purpling\n", + "purplish\n", + "purply\n", + "purport\n", + "purported\n", + "purportedly\n", + "purporting\n", + "purports\n", + "purpose\n", + "purposed\n", + "purposeful\n", + "purposefully\n", + "purposeless\n", + "purposely\n", + "purposes\n", + "purposing\n", + "purpura\n", + "purpuras\n", + "purpure\n", + "purpures\n", + "purpuric\n", + "purpurin\n", + "purpurins\n", + "purr\n", + "purred\n", + "purring\n", + "purrs\n", + "purs\n", + "purse\n", + "pursed\n", + "purser\n", + "pursers\n", + "purses\n", + "pursier\n", + "pursiest\n", + "pursily\n", + "pursing\n", + "purslane\n", + "purslanes\n", + "pursuance\n", + "pursuances\n", + "pursuant\n", + "pursue\n", + "pursued\n", + "pursuer\n", + "pursuers\n", + "pursues\n", + "pursuing\n", + "pursuit\n", + "pursuits\n", + "pursy\n", + "purulent\n", + "purvey\n", + "purveyance\n", + "purveyances\n", + "purveyed\n", + "purveying\n", + "purveyor\n", + "purveyors\n", + "purveys\n", + "purview\n", + "purviews\n", + "pus\n", + "puses\n", + "push\n", + "pushball\n", + "pushballs\n", + "pushcart\n", + "pushcarts\n", + "pushdown\n", + "pushdowns\n", + "pushed\n", + "pusher\n", + "pushers\n", + "pushes\n", + "pushful\n", + "pushier\n", + "pushiest\n", + "pushily\n", + "pushing\n", + "pushover\n", + "pushovers\n", + "pushpin\n", + "pushpins\n", + "pushup\n", + "pushups\n", + "pushy\n", + "pusillanimous\n", + "pusley\n", + "pusleys\n", + "puslike\n", + "puss\n", + "pusses\n", + "pussier\n", + "pussies\n", + "pussiest\n", + "pussley\n", + "pussleys\n", + "pusslies\n", + "pusslike\n", + "pussly\n", + "pussy\n", + "pussycat\n", + "pussycats\n", + "pustular\n", + "pustule\n", + "pustuled\n", + "pustules\n", + "put\n", + "putamen\n", + "putamina\n", + "putative\n", + "putlog\n", + "putlogs\n", + "putoff\n", + "putoffs\n", + "puton\n", + "putons\n", + "putout\n", + "putouts\n", + "putrefaction\n", + "putrefactions\n", + "putrefactive\n", + "putrefied\n", + "putrefies\n", + "putrefy\n", + "putrefying\n", + "putrid\n", + "putridly\n", + "puts\n", + "putsch\n", + "putsches\n", + "putt\n", + "putted\n", + "puttee\n", + "puttees\n", + "putter\n", + "puttered\n", + "putterer\n", + "putterers\n", + "puttering\n", + "putters\n", + "puttied\n", + "puttier\n", + "puttiers\n", + "putties\n", + "putting\n", + "putts\n", + "putty\n", + "puttying\n", + "puzzle\n", + "puzzled\n", + "puzzlement\n", + "puzzlements\n", + "puzzler\n", + "puzzlers\n", + "puzzles\n", + "puzzling\n", + "pya\n", + "pyaemia\n", + "pyaemias\n", + "pyaemic\n", + "pyas\n", + "pycnidia\n", + "pye\n", + "pyelitic\n", + "pyelitis\n", + "pyelitises\n", + "pyemia\n", + "pyemias\n", + "pyemic\n", + "pyes\n", + "pygidia\n", + "pygidial\n", + "pygidium\n", + "pygmaean\n", + "pygmean\n", + "pygmies\n", + "pygmoid\n", + "pygmy\n", + "pygmyish\n", + "pygmyism\n", + "pygmyisms\n", + "pyic\n", + "pyin\n", + "pyins\n", + "pyjamas\n", + "pyknic\n", + "pyknics\n", + "pylon\n", + "pylons\n", + "pylori\n", + "pyloric\n", + "pylorus\n", + "pyloruses\n", + "pyoderma\n", + "pyodermas\n", + "pyogenic\n", + "pyoid\n", + "pyorrhea\n", + "pyorrheas\n", + "pyoses\n", + "pyosis\n", + "pyralid\n", + "pyralids\n", + "pyramid\n", + "pyramidal\n", + "pyramided\n", + "pyramiding\n", + "pyramids\n", + "pyran\n", + "pyranoid\n", + "pyranose\n", + "pyranoses\n", + "pyrans\n", + "pyre\n", + "pyrene\n", + "pyrenes\n", + "pyrenoid\n", + "pyrenoids\n", + "pyres\n", + "pyretic\n", + "pyrexia\n", + "pyrexial\n", + "pyrexias\n", + "pyrexic\n", + "pyric\n", + "pyridic\n", + "pyridine\n", + "pyridines\n", + "pyriform\n", + "pyrite\n", + "pyrites\n", + "pyritic\n", + "pyritous\n", + "pyrogen\n", + "pyrogens\n", + "pyrola\n", + "pyrolas\n", + "pyrologies\n", + "pyrology\n", + "pyrolyze\n", + "pyrolyzed\n", + "pyrolyzes\n", + "pyrolyzing\n", + "pyromania\n", + "pyromaniac\n", + "pyromaniacs\n", + "pyromanias\n", + "pyrone\n", + "pyrones\n", + "pyronine\n", + "pyronines\n", + "pyrope\n", + "pyropes\n", + "pyrosis\n", + "pyrosises\n", + "pyrostat\n", + "pyrostats\n", + "pyrotechnic\n", + "pyrotechnics\n", + "pyroxene\n", + "pyroxenes\n", + "pyrrhic\n", + "pyrrhics\n", + "pyrrol\n", + "pyrrole\n", + "pyrroles\n", + "pyrrolic\n", + "pyrrols\n", + "pyruvate\n", + "pyruvates\n", + "python\n", + "pythonic\n", + "pythons\n", + "pyuria\n", + "pyurias\n", + "pyx\n", + "pyxes\n", + "pyxides\n", + "pyxidia\n", + "pyxidium\n", + "pyxie\n", + "pyxies\n", + "pyxis\n", + "qaid\n", + "qaids\n", + "qindar\n", + "qindars\n", + "qintar\n", + "qintars\n", + "qiviut\n", + "qiviuts\n", + "qoph\n", + "qophs\n", + "qua\n", + "quack\n", + "quacked\n", + "quackeries\n", + "quackery\n", + "quacking\n", + "quackish\n", + "quackism\n", + "quackisms\n", + "quacks\n", + "quad\n", + "quadded\n", + "quadding\n", + "quadrangle\n", + "quadrangles\n", + "quadrangular\n", + "quadrans\n", + "quadrant\n", + "quadrantes\n", + "quadrants\n", + "quadrat\n", + "quadrate\n", + "quadrated\n", + "quadrates\n", + "quadrating\n", + "quadrats\n", + "quadric\n", + "quadrics\n", + "quadriga\n", + "quadrigae\n", + "quadrilateral\n", + "quadrilaterals\n", + "quadrille\n", + "quadrilles\n", + "quadroon\n", + "quadroons\n", + "quadruped\n", + "quadrupedal\n", + "quadrupeds\n", + "quadruple\n", + "quadrupled\n", + "quadruples\n", + "quadruplet\n", + "quadruplets\n", + "quadrupling\n", + "quads\n", + "quaere\n", + "quaeres\n", + "quaestor\n", + "quaestors\n", + "quaff\n", + "quaffed\n", + "quaffer\n", + "quaffers\n", + "quaffing\n", + "quaffs\n", + "quag\n", + "quagga\n", + "quaggas\n", + "quaggier\n", + "quaggiest\n", + "quaggy\n", + "quagmire\n", + "quagmires\n", + "quagmirier\n", + "quagmiriest\n", + "quagmiry\n", + "quags\n", + "quahaug\n", + "quahaugs\n", + "quahog\n", + "quahogs\n", + "quai\n", + "quaich\n", + "quaiches\n", + "quaichs\n", + "quaigh\n", + "quaighs\n", + "quail\n", + "quailed\n", + "quailing\n", + "quails\n", + "quaint\n", + "quainter\n", + "quaintest\n", + "quaintly\n", + "quaintness\n", + "quaintnesses\n", + "quais\n", + "quake\n", + "quaked\n", + "quaker\n", + "quakers\n", + "quakes\n", + "quakier\n", + "quakiest\n", + "quakily\n", + "quaking\n", + "quaky\n", + "quale\n", + "qualia\n", + "qualification\n", + "qualifications\n", + "qualified\n", + "qualifier\n", + "qualifiers\n", + "qualifies\n", + "qualify\n", + "qualifying\n", + "qualitative\n", + "qualities\n", + "quality\n", + "qualm\n", + "qualmier\n", + "qualmiest\n", + "qualmish\n", + "qualms\n", + "qualmy\n", + "quamash\n", + "quamashes\n", + "quandang\n", + "quandangs\n", + "quandaries\n", + "quandary\n", + "quandong\n", + "quandongs\n", + "quant\n", + "quanta\n", + "quantal\n", + "quanted\n", + "quantic\n", + "quantics\n", + "quantified\n", + "quantifies\n", + "quantify\n", + "quantifying\n", + "quanting\n", + "quantitative\n", + "quantities\n", + "quantity\n", + "quantize\n", + "quantized\n", + "quantizes\n", + "quantizing\n", + "quantong\n", + "quantongs\n", + "quants\n", + "quantum\n", + "quarantine\n", + "quarantined\n", + "quarantines\n", + "quarantining\n", + "quare\n", + "quark\n", + "quarks\n", + "quarrel\n", + "quarreled\n", + "quarreling\n", + "quarrelled\n", + "quarrelling\n", + "quarrels\n", + "quarrelsome\n", + "quarried\n", + "quarrier\n", + "quarriers\n", + "quarries\n", + "quarry\n", + "quarrying\n", + "quart\n", + "quartan\n", + "quartans\n", + "quarte\n", + "quarter\n", + "quarterback\n", + "quarterbacked\n", + "quarterbacking\n", + "quarterbacks\n", + "quartered\n", + "quartering\n", + "quarterlies\n", + "quarterly\n", + "quartermaster\n", + "quartermasters\n", + "quartern\n", + "quarterns\n", + "quarters\n", + "quartes\n", + "quartet\n", + "quartets\n", + "quartic\n", + "quartics\n", + "quartile\n", + "quartiles\n", + "quarto\n", + "quartos\n", + "quarts\n", + "quartz\n", + "quartzes\n", + "quasar\n", + "quasars\n", + "quash\n", + "quashed\n", + "quashes\n", + "quashing\n", + "quasi\n", + "quass\n", + "quasses\n", + "quassia\n", + "quassias\n", + "quassin\n", + "quassins\n", + "quate\n", + "quatorze\n", + "quatorzes\n", + "quatrain\n", + "quatrains\n", + "quatre\n", + "quatres\n", + "quaver\n", + "quavered\n", + "quaverer\n", + "quaverers\n", + "quavering\n", + "quavers\n", + "quavery\n", + "quay\n", + "quayage\n", + "quayages\n", + "quaylike\n", + "quays\n", + "quayside\n", + "quaysides\n", + "quean\n", + "queans\n", + "queasier\n", + "queasiest\n", + "queasily\n", + "queasiness\n", + "queasinesses\n", + "queasy\n", + "queazier\n", + "queaziest\n", + "queazy\n", + "queen\n", + "queened\n", + "queening\n", + "queenlier\n", + "queenliest\n", + "queenly\n", + "queens\n", + "queer\n", + "queered\n", + "queerer\n", + "queerest\n", + "queering\n", + "queerish\n", + "queerly\n", + "queerness\n", + "queernesses\n", + "queers\n", + "quell\n", + "quelled\n", + "queller\n", + "quellers\n", + "quelling\n", + "quells\n", + "quench\n", + "quenchable\n", + "quenched\n", + "quencher\n", + "quenchers\n", + "quenches\n", + "quenching\n", + "quenchless\n", + "quenelle\n", + "quenelles\n", + "quercine\n", + "querida\n", + "queridas\n", + "queried\n", + "querier\n", + "queriers\n", + "queries\n", + "querist\n", + "querists\n", + "quern\n", + "querns\n", + "querulous\n", + "querulously\n", + "querulousness\n", + "querulousnesses\n", + "query\n", + "querying\n", + "quest\n", + "quested\n", + "quester\n", + "questers\n", + "questing\n", + "question\n", + "questionable\n", + "questioned\n", + "questioner\n", + "questioners\n", + "questioning\n", + "questionnaire\n", + "questionnaires\n", + "questionniare\n", + "questionniares\n", + "questions\n", + "questor\n", + "questors\n", + "quests\n", + "quetzal\n", + "quetzales\n", + "quetzals\n", + "queue\n", + "queued\n", + "queueing\n", + "queuer\n", + "queuers\n", + "queues\n", + "queuing\n", + "quey\n", + "queys\n", + "quezal\n", + "quezales\n", + "quezals\n", + "quibble\n", + "quibbled\n", + "quibbler\n", + "quibblers\n", + "quibbles\n", + "quibbling\n", + "quiche\n", + "quiches\n", + "quick\n", + "quicken\n", + "quickened\n", + "quickening\n", + "quickens\n", + "quicker\n", + "quickest\n", + "quickie\n", + "quickies\n", + "quickly\n", + "quickness\n", + "quicknesses\n", + "quicks\n", + "quicksand\n", + "quicksands\n", + "quickset\n", + "quicksets\n", + "quicksilver\n", + "quicksilvers\n", + "quid\n", + "quiddities\n", + "quiddity\n", + "quidnunc\n", + "quidnuncs\n", + "quids\n", + "quiescence\n", + "quiescences\n", + "quiescent\n", + "quiet\n", + "quieted\n", + "quieten\n", + "quietened\n", + "quietening\n", + "quietens\n", + "quieter\n", + "quieters\n", + "quietest\n", + "quieting\n", + "quietism\n", + "quietisms\n", + "quietist\n", + "quietists\n", + "quietly\n", + "quietness\n", + "quietnesses\n", + "quiets\n", + "quietude\n", + "quietudes\n", + "quietus\n", + "quietuses\n", + "quiff\n", + "quiffs\n", + "quill\n", + "quillai\n", + "quillais\n", + "quilled\n", + "quillet\n", + "quillets\n", + "quilling\n", + "quills\n", + "quilt\n", + "quilted\n", + "quilter\n", + "quilters\n", + "quilting\n", + "quiltings\n", + "quilts\n", + "quinaries\n", + "quinary\n", + "quinate\n", + "quince\n", + "quinces\n", + "quincunx\n", + "quincunxes\n", + "quinella\n", + "quinellas\n", + "quinic\n", + "quiniela\n", + "quinielas\n", + "quinin\n", + "quinina\n", + "quininas\n", + "quinine\n", + "quinines\n", + "quinins\n", + "quinnat\n", + "quinnats\n", + "quinoa\n", + "quinoas\n", + "quinoid\n", + "quinoids\n", + "quinol\n", + "quinolin\n", + "quinolins\n", + "quinols\n", + "quinone\n", + "quinones\n", + "quinsies\n", + "quinsy\n", + "quint\n", + "quintain\n", + "quintains\n", + "quintal\n", + "quintals\n", + "quintan\n", + "quintans\n", + "quintar\n", + "quintars\n", + "quintessence\n", + "quintessences\n", + "quintessential\n", + "quintet\n", + "quintets\n", + "quintic\n", + "quintics\n", + "quintile\n", + "quintiles\n", + "quintin\n", + "quintins\n", + "quints\n", + "quintuple\n", + "quintupled\n", + "quintuples\n", + "quintuplet\n", + "quintuplets\n", + "quintupling\n", + "quip\n", + "quipped\n", + "quipping\n", + "quippish\n", + "quippu\n", + "quippus\n", + "quips\n", + "quipster\n", + "quipsters\n", + "quipu\n", + "quipus\n", + "quire\n", + "quired\n", + "quires\n", + "quiring\n", + "quirk\n", + "quirked\n", + "quirkier\n", + "quirkiest\n", + "quirkily\n", + "quirking\n", + "quirks\n", + "quirky\n", + "quirt\n", + "quirted\n", + "quirting\n", + "quirts\n", + "quisling\n", + "quislings\n", + "quit\n", + "quitch\n", + "quitches\n", + "quite\n", + "quitrent\n", + "quitrents\n", + "quits\n", + "quitted\n", + "quitter\n", + "quitters\n", + "quitting\n", + "quittor\n", + "quittors\n", + "quiver\n", + "quivered\n", + "quiverer\n", + "quiverers\n", + "quivering\n", + "quivers\n", + "quivery\n", + "quixote\n", + "quixotes\n", + "quixotic\n", + "quixotries\n", + "quixotry\n", + "quiz\n", + "quizmaster\n", + "quizmasters\n", + "quizzed\n", + "quizzer\n", + "quizzers\n", + "quizzes\n", + "quizzing\n", + "quod\n", + "quods\n", + "quoin\n", + "quoined\n", + "quoining\n", + "quoins\n", + "quoit\n", + "quoited\n", + "quoiting\n", + "quoits\n", + "quomodo\n", + "quomodos\n", + "quondam\n", + "quorum\n", + "quorums\n", + "quota\n", + "quotable\n", + "quotably\n", + "quotas\n", + "quotation\n", + "quotations\n", + "quote\n", + "quoted\n", + "quoter\n", + "quoters\n", + "quotes\n", + "quoth\n", + "quotha\n", + "quotient\n", + "quotients\n", + "quoting\n", + "qursh\n", + "qurshes\n", + "qurush\n", + "qurushes\n", + "rabato\n", + "rabatos\n", + "rabbet\n", + "rabbeted\n", + "rabbeting\n", + "rabbets\n", + "rabbi\n", + "rabbies\n", + "rabbin\n", + "rabbinate\n", + "rabbinates\n", + "rabbinic\n", + "rabbinical\n", + "rabbins\n", + "rabbis\n", + "rabbit\n", + "rabbited\n", + "rabbiter\n", + "rabbiters\n", + "rabbiting\n", + "rabbitries\n", + "rabbitry\n", + "rabbits\n", + "rabble\n", + "rabbled\n", + "rabbler\n", + "rabblers\n", + "rabbles\n", + "rabbling\n", + "rabboni\n", + "rabbonis\n", + "rabic\n", + "rabid\n", + "rabidities\n", + "rabidity\n", + "rabidly\n", + "rabies\n", + "rabietic\n", + "raccoon\n", + "raccoons\n", + "race\n", + "racecourse\n", + "racecourses\n", + "raced\n", + "racehorse\n", + "racehorses\n", + "racemate\n", + "racemates\n", + "raceme\n", + "racemed\n", + "racemes\n", + "racemic\n", + "racemism\n", + "racemisms\n", + "racemize\n", + "racemized\n", + "racemizes\n", + "racemizing\n", + "racemoid\n", + "racemose\n", + "racemous\n", + "racer\n", + "racers\n", + "races\n", + "racetrack\n", + "racetracks\n", + "raceway\n", + "raceways\n", + "rachet\n", + "rachets\n", + "rachial\n", + "rachides\n", + "rachis\n", + "rachises\n", + "rachitic\n", + "rachitides\n", + "rachitis\n", + "racial\n", + "racially\n", + "racier\n", + "raciest\n", + "racily\n", + "raciness\n", + "racinesses\n", + "racing\n", + "racings\n", + "racism\n", + "racisms\n", + "racist\n", + "racists\n", + "rack\n", + "racked\n", + "racker\n", + "rackers\n", + "racket\n", + "racketed\n", + "racketeer\n", + "racketeering\n", + "racketeerings\n", + "racketeers\n", + "racketier\n", + "racketiest\n", + "racketing\n", + "rackets\n", + "rackety\n", + "racking\n", + "rackle\n", + "racks\n", + "rackwork\n", + "rackworks\n", + "raclette\n", + "raclettes\n", + "racon\n", + "racons\n", + "raconteur\n", + "raconteurs\n", + "racoon\n", + "racoons\n", + "racquet\n", + "racquets\n", + "racy\n", + "rad\n", + "radar\n", + "radars\n", + "radded\n", + "radding\n", + "raddle\n", + "raddled\n", + "raddles\n", + "raddling\n", + "radiable\n", + "radial\n", + "radiale\n", + "radialia\n", + "radially\n", + "radials\n", + "radian\n", + "radiance\n", + "radiances\n", + "radiancies\n", + "radiancy\n", + "radians\n", + "radiant\n", + "radiantly\n", + "radiants\n", + "radiate\n", + "radiated\n", + "radiates\n", + "radiating\n", + "radiation\n", + "radiations\n", + "radiator\n", + "radiators\n", + "radical\n", + "radicalism\n", + "radicalisms\n", + "radically\n", + "radicals\n", + "radicand\n", + "radicands\n", + "radicate\n", + "radicated\n", + "radicates\n", + "radicating\n", + "radicel\n", + "radicels\n", + "radices\n", + "radicle\n", + "radicles\n", + "radii\n", + "radio\n", + "radioactive\n", + "radioactivities\n", + "radioactivity\n", + "radioed\n", + "radioing\n", + "radiologies\n", + "radiologist\n", + "radiologists\n", + "radiology\n", + "radioman\n", + "radiomen\n", + "radionuclide\n", + "radionuclides\n", + "radios\n", + "radiotherapies\n", + "radiotherapy\n", + "radish\n", + "radishes\n", + "radium\n", + "radiums\n", + "radius\n", + "radiuses\n", + "radix\n", + "radixes\n", + "radome\n", + "radomes\n", + "radon\n", + "radons\n", + "rads\n", + "radula\n", + "radulae\n", + "radular\n", + "radulas\n", + "raff\n", + "raffia\n", + "raffias\n", + "raffish\n", + "raffishly\n", + "raffishness\n", + "raffishnesses\n", + "raffle\n", + "raffled\n", + "raffler\n", + "rafflers\n", + "raffles\n", + "raffling\n", + "raffs\n", + "raft\n", + "rafted\n", + "rafter\n", + "rafters\n", + "rafting\n", + "rafts\n", + "raftsman\n", + "raftsmen\n", + "rag\n", + "raga\n", + "ragamuffin\n", + "ragamuffins\n", + "ragas\n", + "ragbag\n", + "ragbags\n", + "rage\n", + "raged\n", + "ragee\n", + "ragees\n", + "rages\n", + "ragged\n", + "raggeder\n", + "raggedest\n", + "raggedly\n", + "raggedness\n", + "raggednesses\n", + "raggedy\n", + "raggies\n", + "ragging\n", + "raggle\n", + "raggles\n", + "raggy\n", + "ragi\n", + "raging\n", + "ragingly\n", + "ragis\n", + "raglan\n", + "raglans\n", + "ragman\n", + "ragmen\n", + "ragout\n", + "ragouted\n", + "ragouting\n", + "ragouts\n", + "rags\n", + "ragtag\n", + "ragtags\n", + "ragtime\n", + "ragtimes\n", + "ragweed\n", + "ragweeds\n", + "ragwort\n", + "ragworts\n", + "rah\n", + "raia\n", + "raias\n", + "raid\n", + "raided\n", + "raider\n", + "raiders\n", + "raiding\n", + "raids\n", + "rail\n", + "railbird\n", + "railbirds\n", + "railed\n", + "railer\n", + "railers\n", + "railhead\n", + "railheads\n", + "railing\n", + "railings\n", + "railleries\n", + "raillery\n", + "railroad\n", + "railroaded\n", + "railroader\n", + "railroaders\n", + "railroading\n", + "railroadings\n", + "railroads\n", + "rails\n", + "railway\n", + "railways\n", + "raiment\n", + "raiments\n", + "rain\n", + "rainband\n", + "rainbands\n", + "rainbird\n", + "rainbirds\n", + "rainbow\n", + "rainbows\n", + "raincoat\n", + "raincoats\n", + "raindrop\n", + "raindrops\n", + "rained\n", + "rainfall\n", + "rainfalls\n", + "rainier\n", + "rainiest\n", + "rainily\n", + "raining\n", + "rainless\n", + "rainmaker\n", + "rainmakers\n", + "rainmaking\n", + "rainmakings\n", + "rainout\n", + "rainouts\n", + "rains\n", + "rainstorm\n", + "rainstorms\n", + "rainwash\n", + "rainwashes\n", + "rainwater\n", + "rainwaters\n", + "rainwear\n", + "rainwears\n", + "rainy\n", + "raisable\n", + "raise\n", + "raised\n", + "raiser\n", + "raisers\n", + "raises\n", + "raisin\n", + "raising\n", + "raisings\n", + "raisins\n", + "raisiny\n", + "raisonne\n", + "raj\n", + "raja\n", + "rajah\n", + "rajahs\n", + "rajas\n", + "rajes\n", + "rake\n", + "raked\n", + "rakee\n", + "rakees\n", + "rakehell\n", + "rakehells\n", + "rakeoff\n", + "rakeoffs\n", + "raker\n", + "rakers\n", + "rakes\n", + "raki\n", + "raking\n", + "rakis\n", + "rakish\n", + "rakishly\n", + "rakishness\n", + "rakishnesses\n", + "rale\n", + "rales\n", + "rallied\n", + "rallier\n", + "ralliers\n", + "rallies\n", + "ralline\n", + "rally\n", + "rallye\n", + "rallyes\n", + "rallying\n", + "rallyings\n", + "rallyist\n", + "rallyists\n", + "ram\n", + "ramate\n", + "ramble\n", + "rambled\n", + "rambler\n", + "ramblers\n", + "rambles\n", + "rambling\n", + "rambunctious\n", + "rambutan\n", + "rambutans\n", + "ramee\n", + "ramees\n", + "ramekin\n", + "ramekins\n", + "ramenta\n", + "ramentum\n", + "ramequin\n", + "ramequins\n", + "ramet\n", + "ramets\n", + "rami\n", + "ramie\n", + "ramies\n", + "ramification\n", + "ramifications\n", + "ramified\n", + "ramifies\n", + "ramiform\n", + "ramify\n", + "ramifying\n", + "ramilie\n", + "ramilies\n", + "ramillie\n", + "ramillies\n", + "ramjet\n", + "ramjets\n", + "rammed\n", + "rammer\n", + "rammers\n", + "rammier\n", + "rammiest\n", + "ramming\n", + "rammish\n", + "rammy\n", + "ramose\n", + "ramosely\n", + "ramosities\n", + "ramosity\n", + "ramous\n", + "ramp\n", + "rampage\n", + "rampaged\n", + "rampager\n", + "rampagers\n", + "rampages\n", + "rampaging\n", + "rampancies\n", + "rampancy\n", + "rampant\n", + "rampantly\n", + "rampart\n", + "ramparted\n", + "ramparting\n", + "ramparts\n", + "ramped\n", + "rampike\n", + "rampikes\n", + "ramping\n", + "rampion\n", + "rampions\n", + "rampole\n", + "rampoles\n", + "ramps\n", + "ramrod\n", + "ramrods\n", + "rams\n", + "ramshackle\n", + "ramshorn\n", + "ramshorns\n", + "ramson\n", + "ramsons\n", + "ramtil\n", + "ramtils\n", + "ramulose\n", + "ramulous\n", + "ramus\n", + "ran\n", + "rance\n", + "rances\n", + "ranch\n", + "ranched\n", + "rancher\n", + "ranchero\n", + "rancheros\n", + "ranchers\n", + "ranches\n", + "ranching\n", + "ranchland\n", + "ranchlands\n", + "ranchman\n", + "ranchmen\n", + "rancho\n", + "ranchos\n", + "rancid\n", + "rancidities\n", + "rancidity\n", + "rancidness\n", + "rancidnesses\n", + "rancor\n", + "rancored\n", + "rancorous\n", + "rancors\n", + "rancour\n", + "rancours\n", + "rand\n", + "randan\n", + "randans\n", + "randies\n", + "random\n", + "randomization\n", + "randomizations\n", + "randomize\n", + "randomized\n", + "randomizes\n", + "randomizing\n", + "randomly\n", + "randomness\n", + "randomnesses\n", + "randoms\n", + "rands\n", + "randy\n", + "ranee\n", + "ranees\n", + "rang\n", + "range\n", + "ranged\n", + "rangeland\n", + "rangelands\n", + "ranger\n", + "rangers\n", + "ranges\n", + "rangier\n", + "rangiest\n", + "ranginess\n", + "ranginesses\n", + "ranging\n", + "rangy\n", + "rani\n", + "ranid\n", + "ranids\n", + "ranis\n", + "rank\n", + "ranked\n", + "ranker\n", + "rankers\n", + "rankest\n", + "ranking\n", + "rankish\n", + "rankle\n", + "rankled\n", + "rankles\n", + "rankling\n", + "rankly\n", + "rankness\n", + "ranknesses\n", + "ranks\n", + "ranpike\n", + "ranpikes\n", + "ransack\n", + "ransacked\n", + "ransacking\n", + "ransacks\n", + "ransom\n", + "ransomed\n", + "ransomer\n", + "ransomers\n", + "ransoming\n", + "ransoms\n", + "rant\n", + "ranted\n", + "ranter\n", + "ranters\n", + "ranting\n", + "rantingly\n", + "rants\n", + "ranula\n", + "ranulas\n", + "rap\n", + "rapacious\n", + "rapaciously\n", + "rapaciousness\n", + "rapaciousnesses\n", + "rapacities\n", + "rapacity\n", + "rape\n", + "raped\n", + "raper\n", + "rapers\n", + "rapes\n", + "rapeseed\n", + "rapeseeds\n", + "raphae\n", + "raphe\n", + "raphes\n", + "raphia\n", + "raphias\n", + "raphide\n", + "raphides\n", + "raphis\n", + "rapid\n", + "rapider\n", + "rapidest\n", + "rapidities\n", + "rapidity\n", + "rapidly\n", + "rapids\n", + "rapier\n", + "rapiered\n", + "rapiers\n", + "rapine\n", + "rapines\n", + "raping\n", + "rapist\n", + "rapists\n", + "rapparee\n", + "rapparees\n", + "rapped\n", + "rappee\n", + "rappees\n", + "rappel\n", + "rappelled\n", + "rappelling\n", + "rappels\n", + "rappen\n", + "rapper\n", + "rappers\n", + "rapping\n", + "rappini\n", + "rapport\n", + "rapports\n", + "raps\n", + "rapt\n", + "raptly\n", + "raptness\n", + "raptnesses\n", + "raptor\n", + "raptors\n", + "rapture\n", + "raptured\n", + "raptures\n", + "rapturing\n", + "rapturous\n", + "rare\n", + "rarebit\n", + "rarebits\n", + "rarefaction\n", + "rarefactions\n", + "rarefied\n", + "rarefier\n", + "rarefiers\n", + "rarefies\n", + "rarefy\n", + "rarefying\n", + "rarely\n", + "rareness\n", + "rarenesses\n", + "rarer\n", + "rareripe\n", + "rareripes\n", + "rarest\n", + "rarified\n", + "rarifies\n", + "rarify\n", + "rarifying\n", + "raring\n", + "rarities\n", + "rarity\n", + "ras\n", + "rasbora\n", + "rasboras\n", + "rascal\n", + "rascalities\n", + "rascality\n", + "rascally\n", + "rascals\n", + "rase\n", + "rased\n", + "raser\n", + "rasers\n", + "rases\n", + "rash\n", + "rasher\n", + "rashers\n", + "rashes\n", + "rashest\n", + "rashlike\n", + "rashly\n", + "rashness\n", + "rashnesses\n", + "rasing\n", + "rasorial\n", + "rasp\n", + "raspberries\n", + "raspberry\n", + "rasped\n", + "rasper\n", + "raspers\n", + "raspier\n", + "raspiest\n", + "rasping\n", + "raspish\n", + "rasps\n", + "raspy\n", + "rassle\n", + "rassled\n", + "rassles\n", + "rassling\n", + "raster\n", + "rasters\n", + "rasure\n", + "rasures\n", + "rat\n", + "ratable\n", + "ratably\n", + "ratafee\n", + "ratafees\n", + "ratafia\n", + "ratafias\n", + "ratal\n", + "ratals\n", + "ratan\n", + "ratanies\n", + "ratans\n", + "ratany\n", + "rataplan\n", + "rataplanned\n", + "rataplanning\n", + "rataplans\n", + "ratatat\n", + "ratatats\n", + "ratch\n", + "ratches\n", + "ratchet\n", + "ratchets\n", + "rate\n", + "rateable\n", + "rateably\n", + "rated\n", + "ratel\n", + "ratels\n", + "rater\n", + "raters\n", + "rates\n", + "ratfink\n", + "ratfinks\n", + "ratfish\n", + "ratfishes\n", + "rath\n", + "rathe\n", + "rather\n", + "rathole\n", + "ratholes\n", + "raticide\n", + "raticides\n", + "ratification\n", + "ratifications\n", + "ratified\n", + "ratifier\n", + "ratifiers\n", + "ratifies\n", + "ratify\n", + "ratifying\n", + "ratine\n", + "ratines\n", + "rating\n", + "ratings\n", + "ratio\n", + "ration\n", + "rational\n", + "rationale\n", + "rationales\n", + "rationalization\n", + "rationalizations\n", + "rationalize\n", + "rationalized\n", + "rationalizes\n", + "rationalizing\n", + "rationally\n", + "rationals\n", + "rationed\n", + "rationing\n", + "rations\n", + "ratios\n", + "ratite\n", + "ratites\n", + "ratlike\n", + "ratlin\n", + "ratline\n", + "ratlines\n", + "ratlins\n", + "rato\n", + "ratoon\n", + "ratooned\n", + "ratooner\n", + "ratooners\n", + "ratooning\n", + "ratoons\n", + "ratos\n", + "rats\n", + "ratsbane\n", + "ratsbanes\n", + "rattail\n", + "rattails\n", + "rattan\n", + "rattans\n", + "ratted\n", + "ratteen\n", + "ratteens\n", + "ratten\n", + "rattened\n", + "rattener\n", + "ratteners\n", + "rattening\n", + "rattens\n", + "ratter\n", + "ratters\n", + "rattier\n", + "rattiest\n", + "ratting\n", + "rattish\n", + "rattle\n", + "rattled\n", + "rattler\n", + "rattlers\n", + "rattles\n", + "rattlesnake\n", + "rattlesnakes\n", + "rattling\n", + "rattlings\n", + "rattly\n", + "ratton\n", + "rattons\n", + "rattoon\n", + "rattooned\n", + "rattooning\n", + "rattoons\n", + "rattrap\n", + "rattraps\n", + "ratty\n", + "raucities\n", + "raucity\n", + "raucous\n", + "raucously\n", + "raucousness\n", + "raucousnesses\n", + "raunchier\n", + "raunchiest\n", + "raunchy\n", + "ravage\n", + "ravaged\n", + "ravager\n", + "ravagers\n", + "ravages\n", + "ravaging\n", + "rave\n", + "raved\n", + "ravel\n", + "raveled\n", + "raveler\n", + "ravelers\n", + "ravelin\n", + "raveling\n", + "ravelings\n", + "ravelins\n", + "ravelled\n", + "raveller\n", + "ravellers\n", + "ravelling\n", + "ravellings\n", + "ravelly\n", + "ravels\n", + "raven\n", + "ravened\n", + "ravener\n", + "raveners\n", + "ravening\n", + "ravenings\n", + "ravenous\n", + "ravenously\n", + "ravenousness\n", + "ravenousnesses\n", + "ravens\n", + "raver\n", + "ravers\n", + "raves\n", + "ravigote\n", + "ravigotes\n", + "ravin\n", + "ravine\n", + "ravined\n", + "ravines\n", + "raving\n", + "ravingly\n", + "ravings\n", + "ravining\n", + "ravins\n", + "ravioli\n", + "raviolis\n", + "ravish\n", + "ravished\n", + "ravisher\n", + "ravishers\n", + "ravishes\n", + "ravishing\n", + "ravishment\n", + "ravishments\n", + "raw\n", + "rawboned\n", + "rawer\n", + "rawest\n", + "rawhide\n", + "rawhided\n", + "rawhides\n", + "rawhiding\n", + "rawish\n", + "rawly\n", + "rawness\n", + "rawnesses\n", + "raws\n", + "rax\n", + "raxed\n", + "raxes\n", + "raxing\n", + "ray\n", + "raya\n", + "rayah\n", + "rayahs\n", + "rayas\n", + "rayed\n", + "raygrass\n", + "raygrasses\n", + "raying\n", + "rayless\n", + "rayon\n", + "rayons\n", + "rays\n", + "raze\n", + "razed\n", + "razee\n", + "razeed\n", + "razeeing\n", + "razees\n", + "razer\n", + "razers\n", + "razes\n", + "razing\n", + "razor\n", + "razored\n", + "razoring\n", + "razors\n", + "razz\n", + "razzed\n", + "razzes\n", + "razzing\n", + "re\n", + "reabsorb\n", + "reabsorbed\n", + "reabsorbing\n", + "reabsorbs\n", + "reabstract\n", + "reabstracted\n", + "reabstracting\n", + "reabstracts\n", + "reaccede\n", + "reacceded\n", + "reaccedes\n", + "reacceding\n", + "reaccelerate\n", + "reaccelerated\n", + "reaccelerates\n", + "reaccelerating\n", + "reaccent\n", + "reaccented\n", + "reaccenting\n", + "reaccents\n", + "reaccept\n", + "reaccepted\n", + "reaccepting\n", + "reaccepts\n", + "reacclimatize\n", + "reacclimatized\n", + "reacclimatizes\n", + "reacclimatizing\n", + "reaccredit\n", + "reaccredited\n", + "reaccrediting\n", + "reaccredits\n", + "reaccumulate\n", + "reaccumulated\n", + "reaccumulates\n", + "reaccumulating\n", + "reaccuse\n", + "reaccused\n", + "reaccuses\n", + "reaccusing\n", + "reach\n", + "reachable\n", + "reached\n", + "reacher\n", + "reachers\n", + "reaches\n", + "reachieve\n", + "reachieved\n", + "reachieves\n", + "reachieving\n", + "reaching\n", + "reacquaint\n", + "reacquainted\n", + "reacquainting\n", + "reacquaints\n", + "reacquire\n", + "reacquired\n", + "reacquires\n", + "reacquiring\n", + "react\n", + "reactant\n", + "reactants\n", + "reacted\n", + "reacting\n", + "reaction\n", + "reactionaries\n", + "reactionary\n", + "reactions\n", + "reactivate\n", + "reactivated\n", + "reactivates\n", + "reactivating\n", + "reactivation\n", + "reactivations\n", + "reactive\n", + "reactor\n", + "reactors\n", + "reacts\n", + "read\n", + "readabilities\n", + "readability\n", + "readable\n", + "readably\n", + "readapt\n", + "readapted\n", + "readapting\n", + "readapts\n", + "readd\n", + "readded\n", + "readdict\n", + "readdicted\n", + "readdicting\n", + "readdicts\n", + "readding\n", + "readdress\n", + "readdressed\n", + "readdresses\n", + "readdressing\n", + "readds\n", + "reader\n", + "readers\n", + "readership\n", + "readerships\n", + "readied\n", + "readier\n", + "readies\n", + "readiest\n", + "readily\n", + "readiness\n", + "readinesses\n", + "reading\n", + "readings\n", + "readjust\n", + "readjustable\n", + "readjusted\n", + "readjusting\n", + "readjustment\n", + "readjustments\n", + "readjusts\n", + "readmit\n", + "readmits\n", + "readmitted\n", + "readmitting\n", + "readopt\n", + "readopted\n", + "readopting\n", + "readopts\n", + "readorn\n", + "readorned\n", + "readorning\n", + "readorns\n", + "readout\n", + "readouts\n", + "reads\n", + "ready\n", + "readying\n", + "reaffirm\n", + "reaffirmed\n", + "reaffirming\n", + "reaffirms\n", + "reaffix\n", + "reaffixed\n", + "reaffixes\n", + "reaffixing\n", + "reagent\n", + "reagents\n", + "reagin\n", + "reaginic\n", + "reagins\n", + "real\n", + "realer\n", + "reales\n", + "realest\n", + "realgar\n", + "realgars\n", + "realia\n", + "realign\n", + "realigned\n", + "realigning\n", + "realignment\n", + "realignments\n", + "realigns\n", + "realise\n", + "realised\n", + "realiser\n", + "realisers\n", + "realises\n", + "realising\n", + "realism\n", + "realisms\n", + "realist\n", + "realistic\n", + "realistically\n", + "realists\n", + "realities\n", + "reality\n", + "realizable\n", + "realization\n", + "realizations\n", + "realize\n", + "realized\n", + "realizer\n", + "realizers\n", + "realizes\n", + "realizing\n", + "reallocate\n", + "reallocated\n", + "reallocates\n", + "reallocating\n", + "reallot\n", + "reallots\n", + "reallotted\n", + "reallotting\n", + "really\n", + "realm\n", + "realms\n", + "realness\n", + "realnesses\n", + "reals\n", + "realter\n", + "realtered\n", + "realtering\n", + "realters\n", + "realties\n", + "realty\n", + "ream\n", + "reamed\n", + "reamer\n", + "reamers\n", + "reaming\n", + "reams\n", + "reanalyses\n", + "reanalysis\n", + "reanalyze\n", + "reanalyzed\n", + "reanalyzes\n", + "reanalyzing\n", + "reanesthetize\n", + "reanesthetized\n", + "reanesthetizes\n", + "reanesthetizing\n", + "reannex\n", + "reannexed\n", + "reannexes\n", + "reannexing\n", + "reanoint\n", + "reanointed\n", + "reanointing\n", + "reanoints\n", + "reap\n", + "reapable\n", + "reaped\n", + "reaper\n", + "reapers\n", + "reaphook\n", + "reaphooks\n", + "reaping\n", + "reappear\n", + "reappearance\n", + "reappearances\n", + "reappeared\n", + "reappearing\n", + "reappears\n", + "reapplied\n", + "reapplies\n", + "reapply\n", + "reapplying\n", + "reappoint\n", + "reappointed\n", + "reappointing\n", + "reappoints\n", + "reapportion\n", + "reapportioned\n", + "reapportioning\n", + "reapportions\n", + "reappraisal\n", + "reappraisals\n", + "reappraise\n", + "reappraised\n", + "reappraises\n", + "reappraising\n", + "reapprove\n", + "reapproved\n", + "reapproves\n", + "reapproving\n", + "reaps\n", + "rear\n", + "reared\n", + "rearer\n", + "rearers\n", + "reargue\n", + "reargued\n", + "reargues\n", + "rearguing\n", + "rearing\n", + "rearm\n", + "rearmed\n", + "rearmice\n", + "rearming\n", + "rearmost\n", + "rearms\n", + "rearouse\n", + "rearoused\n", + "rearouses\n", + "rearousing\n", + "rearrange\n", + "rearranged\n", + "rearranges\n", + "rearranging\n", + "rearrest\n", + "rearrested\n", + "rearresting\n", + "rearrests\n", + "rears\n", + "rearward\n", + "rearwards\n", + "reascend\n", + "reascended\n", + "reascending\n", + "reascends\n", + "reascent\n", + "reascents\n", + "reason\n", + "reasonable\n", + "reasonableness\n", + "reasonablenesses\n", + "reasonably\n", + "reasoned\n", + "reasoner\n", + "reasoners\n", + "reasoning\n", + "reasonings\n", + "reasons\n", + "reassail\n", + "reassailed\n", + "reassailing\n", + "reassails\n", + "reassemble\n", + "reassembled\n", + "reassembles\n", + "reassembling\n", + "reassert\n", + "reasserted\n", + "reasserting\n", + "reasserts\n", + "reassess\n", + "reassessed\n", + "reassesses\n", + "reassessing\n", + "reassessment\n", + "reassessments\n", + "reassign\n", + "reassigned\n", + "reassigning\n", + "reassignment\n", + "reassignments\n", + "reassigns\n", + "reassociate\n", + "reassociated\n", + "reassociates\n", + "reassociating\n", + "reassort\n", + "reassorted\n", + "reassorting\n", + "reassorts\n", + "reassume\n", + "reassumed\n", + "reassumes\n", + "reassuming\n", + "reassurance\n", + "reassurances\n", + "reassure\n", + "reassured\n", + "reassures\n", + "reassuring\n", + "reassuringly\n", + "reata\n", + "reatas\n", + "reattach\n", + "reattached\n", + "reattaches\n", + "reattaching\n", + "reattack\n", + "reattacked\n", + "reattacking\n", + "reattacks\n", + "reattain\n", + "reattained\n", + "reattaining\n", + "reattains\n", + "reave\n", + "reaved\n", + "reaver\n", + "reavers\n", + "reaves\n", + "reaving\n", + "reavow\n", + "reavowed\n", + "reavowing\n", + "reavows\n", + "reawake\n", + "reawaked\n", + "reawaken\n", + "reawakened\n", + "reawakening\n", + "reawakens\n", + "reawakes\n", + "reawaking\n", + "reawoke\n", + "reawoken\n", + "reb\n", + "rebait\n", + "rebaited\n", + "rebaiting\n", + "rebaits\n", + "rebalance\n", + "rebalanced\n", + "rebalances\n", + "rebalancing\n", + "rebaptize\n", + "rebaptized\n", + "rebaptizes\n", + "rebaptizing\n", + "rebate\n", + "rebated\n", + "rebater\n", + "rebaters\n", + "rebates\n", + "rebating\n", + "rebato\n", + "rebatos\n", + "rebbe\n", + "rebbes\n", + "rebec\n", + "rebeck\n", + "rebecks\n", + "rebecs\n", + "rebel\n", + "rebeldom\n", + "rebeldoms\n", + "rebelled\n", + "rebelling\n", + "rebellion\n", + "rebellions\n", + "rebellious\n", + "rebelliously\n", + "rebelliousness\n", + "rebelliousnesses\n", + "rebels\n", + "rebid\n", + "rebidden\n", + "rebidding\n", + "rebids\n", + "rebill\n", + "rebilled\n", + "rebilling\n", + "rebills\n", + "rebind\n", + "rebinding\n", + "rebinds\n", + "rebirth\n", + "rebirths\n", + "rebloom\n", + "rebloomed\n", + "reblooming\n", + "reblooms\n", + "reboant\n", + "reboard\n", + "reboarded\n", + "reboarding\n", + "reboards\n", + "reboil\n", + "reboiled\n", + "reboiling\n", + "reboils\n", + "rebop\n", + "rebops\n", + "reborn\n", + "rebound\n", + "rebounded\n", + "rebounding\n", + "rebounds\n", + "rebozo\n", + "rebozos\n", + "rebranch\n", + "rebranched\n", + "rebranches\n", + "rebranching\n", + "rebroadcast\n", + "rebroadcasted\n", + "rebroadcasting\n", + "rebroadcasts\n", + "rebs\n", + "rebuff\n", + "rebuffed\n", + "rebuffing\n", + "rebuffs\n", + "rebuild\n", + "rebuilded\n", + "rebuilding\n", + "rebuilds\n", + "rebuilt\n", + "rebuke\n", + "rebuked\n", + "rebuker\n", + "rebukers\n", + "rebukes\n", + "rebuking\n", + "reburial\n", + "reburials\n", + "reburied\n", + "reburies\n", + "rebury\n", + "reburying\n", + "rebus\n", + "rebuses\n", + "rebut\n", + "rebuts\n", + "rebuttal\n", + "rebuttals\n", + "rebutted\n", + "rebutter\n", + "rebutters\n", + "rebutting\n", + "rebutton\n", + "rebuttoned\n", + "rebuttoning\n", + "rebuttons\n", + "rec\n", + "recalcitrance\n", + "recalcitrances\n", + "recalcitrant\n", + "recalculate\n", + "recalculated\n", + "recalculates\n", + "recalculating\n", + "recall\n", + "recalled\n", + "recaller\n", + "recallers\n", + "recalling\n", + "recalls\n", + "recane\n", + "recaned\n", + "recanes\n", + "recaning\n", + "recant\n", + "recanted\n", + "recanter\n", + "recanters\n", + "recanting\n", + "recants\n", + "recap\n", + "recapitulate\n", + "recapitulated\n", + "recapitulates\n", + "recapitulating\n", + "recapitulation\n", + "recapitulations\n", + "recapped\n", + "recapping\n", + "recaps\n", + "recapture\n", + "recaptured\n", + "recaptures\n", + "recapturing\n", + "recarried\n", + "recarries\n", + "recarry\n", + "recarrying\n", + "recast\n", + "recasting\n", + "recasts\n", + "recede\n", + "receded\n", + "recedes\n", + "receding\n", + "receipt\n", + "receipted\n", + "receipting\n", + "receipts\n", + "receivable\n", + "receivables\n", + "receive\n", + "received\n", + "receiver\n", + "receivers\n", + "receivership\n", + "receiverships\n", + "receives\n", + "receiving\n", + "recencies\n", + "recency\n", + "recent\n", + "recenter\n", + "recentest\n", + "recently\n", + "recentness\n", + "recentnesses\n", + "recept\n", + "receptacle\n", + "receptacles\n", + "reception\n", + "receptionist\n", + "receptionists\n", + "receptions\n", + "receptive\n", + "receptively\n", + "receptiveness\n", + "receptivenesses\n", + "receptivities\n", + "receptivity\n", + "receptor\n", + "receptors\n", + "recepts\n", + "recertification\n", + "recertifications\n", + "recertified\n", + "recertifies\n", + "recertify\n", + "recertifying\n", + "recess\n", + "recessed\n", + "recesses\n", + "recessing\n", + "recession\n", + "recessions\n", + "rechange\n", + "rechanged\n", + "rechanges\n", + "rechanging\n", + "rechannel\n", + "rechanneled\n", + "rechanneling\n", + "rechannels\n", + "recharge\n", + "recharged\n", + "recharges\n", + "recharging\n", + "rechart\n", + "recharted\n", + "recharting\n", + "recharts\n", + "recheat\n", + "recheats\n", + "recheck\n", + "rechecked\n", + "rechecking\n", + "rechecks\n", + "rechoose\n", + "rechooses\n", + "rechoosing\n", + "rechose\n", + "rechosen\n", + "rechristen\n", + "rechristened\n", + "rechristening\n", + "rechristens\n", + "recipe\n", + "recipes\n", + "recipient\n", + "recipients\n", + "reciprocal\n", + "reciprocally\n", + "reciprocals\n", + "reciprocate\n", + "reciprocated\n", + "reciprocates\n", + "reciprocating\n", + "reciprocation\n", + "reciprocations\n", + "reciprocities\n", + "reciprocity\n", + "recircle\n", + "recircled\n", + "recircles\n", + "recircling\n", + "recirculate\n", + "recirculated\n", + "recirculates\n", + "recirculating\n", + "recirculation\n", + "recirculations\n", + "recision\n", + "recisions\n", + "recital\n", + "recitals\n", + "recitation\n", + "recitations\n", + "recite\n", + "recited\n", + "reciter\n", + "reciters\n", + "recites\n", + "reciting\n", + "reck\n", + "recked\n", + "recking\n", + "reckless\n", + "recklessly\n", + "recklessness\n", + "recklessnesses\n", + "reckon\n", + "reckoned\n", + "reckoner\n", + "reckoners\n", + "reckoning\n", + "reckonings\n", + "reckons\n", + "recks\n", + "reclad\n", + "reclaim\n", + "reclaimable\n", + "reclaimed\n", + "reclaiming\n", + "reclaims\n", + "reclamation\n", + "reclamations\n", + "reclame\n", + "reclames\n", + "reclasp\n", + "reclasped\n", + "reclasping\n", + "reclasps\n", + "reclassification\n", + "reclassifications\n", + "reclassified\n", + "reclassifies\n", + "reclassify\n", + "reclassifying\n", + "reclean\n", + "recleaned\n", + "recleaning\n", + "recleans\n", + "recline\n", + "reclined\n", + "recliner\n", + "recliners\n", + "reclines\n", + "reclining\n", + "reclothe\n", + "reclothed\n", + "reclothes\n", + "reclothing\n", + "recluse\n", + "recluses\n", + "recoal\n", + "recoaled\n", + "recoaling\n", + "recoals\n", + "recock\n", + "recocked\n", + "recocking\n", + "recocks\n", + "recodified\n", + "recodifies\n", + "recodify\n", + "recodifying\n", + "recognition\n", + "recognitions\n", + "recognizable\n", + "recognizably\n", + "recognizance\n", + "recognizances\n", + "recognize\n", + "recognized\n", + "recognizes\n", + "recognizing\n", + "recoil\n", + "recoiled\n", + "recoiler\n", + "recoilers\n", + "recoiling\n", + "recoils\n", + "recoin\n", + "recoined\n", + "recoining\n", + "recoins\n", + "recollection\n", + "recollections\n", + "recolonize\n", + "recolonized\n", + "recolonizes\n", + "recolonizing\n", + "recolor\n", + "recolored\n", + "recoloring\n", + "recolors\n", + "recomb\n", + "recombed\n", + "recombine\n", + "recombined\n", + "recombines\n", + "recombing\n", + "recombining\n", + "recombs\n", + "recommend\n", + "recommendable\n", + "recommendation\n", + "recommendations\n", + "recommendatory\n", + "recommended\n", + "recommender\n", + "recommenders\n", + "recommending\n", + "recommends\n", + "recommit\n", + "recommits\n", + "recommitted\n", + "recommitting\n", + "recompense\n", + "recompensed\n", + "recompenses\n", + "recompensing\n", + "recompile\n", + "recompiled\n", + "recompiles\n", + "recompiling\n", + "recompute\n", + "recomputed\n", + "recomputes\n", + "recomputing\n", + "recon\n", + "reconceive\n", + "reconceived\n", + "reconceives\n", + "reconceiving\n", + "reconcilable\n", + "reconcile\n", + "reconciled\n", + "reconcilement\n", + "reconcilements\n", + "reconciler\n", + "reconcilers\n", + "reconciles\n", + "reconciliation\n", + "reconciliations\n", + "reconciling\n", + "recondite\n", + "reconfigure\n", + "reconfigured\n", + "reconfigures\n", + "reconfiguring\n", + "reconnaissance\n", + "reconnaissances\n", + "reconnect\n", + "reconnected\n", + "reconnecting\n", + "reconnects\n", + "reconnoiter\n", + "reconnoitered\n", + "reconnoitering\n", + "reconnoiters\n", + "reconquer\n", + "reconquered\n", + "reconquering\n", + "reconquers\n", + "reconquest\n", + "reconquests\n", + "recons\n", + "reconsider\n", + "reconsideration\n", + "reconsiderations\n", + "reconsidered\n", + "reconsidering\n", + "reconsiders\n", + "reconsolidate\n", + "reconsolidated\n", + "reconsolidates\n", + "reconsolidating\n", + "reconstruct\n", + "reconstructed\n", + "reconstructing\n", + "reconstructs\n", + "recontaminate\n", + "recontaminated\n", + "recontaminates\n", + "recontaminating\n", + "reconvene\n", + "reconvened\n", + "reconvenes\n", + "reconvening\n", + "reconvey\n", + "reconveyed\n", + "reconveying\n", + "reconveys\n", + "reconvict\n", + "reconvicted\n", + "reconvicting\n", + "reconvicts\n", + "recook\n", + "recooked\n", + "recooking\n", + "recooks\n", + "recopied\n", + "recopies\n", + "recopy\n", + "recopying\n", + "record\n", + "recordable\n", + "recorded\n", + "recorder\n", + "recorders\n", + "recording\n", + "records\n", + "recount\n", + "recounted\n", + "recounting\n", + "recounts\n", + "recoup\n", + "recoupe\n", + "recouped\n", + "recouping\n", + "recouple\n", + "recoupled\n", + "recouples\n", + "recoupling\n", + "recoups\n", + "recourse\n", + "recourses\n", + "recover\n", + "recoverable\n", + "recovered\n", + "recoveries\n", + "recovering\n", + "recovers\n", + "recovery\n", + "recrate\n", + "recrated\n", + "recrates\n", + "recrating\n", + "recreant\n", + "recreants\n", + "recreate\n", + "recreated\n", + "recreates\n", + "recreating\n", + "recreation\n", + "recreational\n", + "recreations\n", + "recreative\n", + "recriminate\n", + "recriminated\n", + "recriminates\n", + "recriminating\n", + "recrimination\n", + "recriminations\n", + "recriminatory\n", + "recross\n", + "recrossed\n", + "recrosses\n", + "recrossing\n", + "recrown\n", + "recrowned\n", + "recrowning\n", + "recrowns\n", + "recruit\n", + "recruited\n", + "recruiting\n", + "recruitment\n", + "recruitments\n", + "recruits\n", + "recs\n", + "recta\n", + "rectal\n", + "rectally\n", + "rectangle\n", + "rectangles\n", + "recti\n", + "rectification\n", + "rectifications\n", + "rectified\n", + "rectifier\n", + "rectifiers\n", + "rectifies\n", + "rectify\n", + "rectifying\n", + "rectitude\n", + "rectitudes\n", + "recto\n", + "rector\n", + "rectorate\n", + "rectorates\n", + "rectorial\n", + "rectories\n", + "rectors\n", + "rectory\n", + "rectos\n", + "rectrices\n", + "rectrix\n", + "rectum\n", + "rectums\n", + "rectus\n", + "recumbent\n", + "recuperate\n", + "recuperated\n", + "recuperates\n", + "recuperating\n", + "recuperation\n", + "recuperations\n", + "recuperative\n", + "recur\n", + "recurred\n", + "recurrence\n", + "recurrences\n", + "recurrent\n", + "recurring\n", + "recurs\n", + "recurve\n", + "recurved\n", + "recurves\n", + "recurving\n", + "recusant\n", + "recusants\n", + "recuse\n", + "recused\n", + "recuses\n", + "recusing\n", + "recut\n", + "recuts\n", + "recutting\n", + "recycle\n", + "recycled\n", + "recycles\n", + "recycling\n", + "red\n", + "redact\n", + "redacted\n", + "redacting\n", + "redactor\n", + "redactors\n", + "redacts\n", + "redan\n", + "redans\n", + "redargue\n", + "redargued\n", + "redargues\n", + "redarguing\n", + "redate\n", + "redated\n", + "redates\n", + "redating\n", + "redbait\n", + "redbaited\n", + "redbaiting\n", + "redbaits\n", + "redbay\n", + "redbays\n", + "redbird\n", + "redbirds\n", + "redbone\n", + "redbones\n", + "redbrick\n", + "redbud\n", + "redbuds\n", + "redbug\n", + "redbugs\n", + "redcap\n", + "redcaps\n", + "redcoat\n", + "redcoats\n", + "redd\n", + "redded\n", + "redden\n", + "reddened\n", + "reddening\n", + "reddens\n", + "redder\n", + "redders\n", + "reddest\n", + "redding\n", + "reddish\n", + "reddle\n", + "reddled\n", + "reddles\n", + "reddling\n", + "redds\n", + "rede\n", + "redear\n", + "redears\n", + "redecorate\n", + "redecorated\n", + "redecorates\n", + "redecorating\n", + "reded\n", + "rededicate\n", + "rededicated\n", + "rededicates\n", + "rededicating\n", + "rededication\n", + "rededications\n", + "redeem\n", + "redeemable\n", + "redeemed\n", + "redeemer\n", + "redeemers\n", + "redeeming\n", + "redeems\n", + "redefeat\n", + "redefeated\n", + "redefeating\n", + "redefeats\n", + "redefied\n", + "redefies\n", + "redefine\n", + "redefined\n", + "redefines\n", + "redefining\n", + "redefy\n", + "redefying\n", + "redemand\n", + "redemanded\n", + "redemanding\n", + "redemands\n", + "redemption\n", + "redemptions\n", + "redemptive\n", + "redemptory\n", + "redenied\n", + "redenies\n", + "redeny\n", + "redenying\n", + "redeploy\n", + "redeployed\n", + "redeploying\n", + "redeploys\n", + "redeposit\n", + "redeposited\n", + "redepositing\n", + "redeposits\n", + "redes\n", + "redesign\n", + "redesignate\n", + "redesignated\n", + "redesignates\n", + "redesignating\n", + "redesigned\n", + "redesigning\n", + "redesigns\n", + "redevelop\n", + "redeveloped\n", + "redeveloping\n", + "redevelops\n", + "redeye\n", + "redeyes\n", + "redfin\n", + "redfins\n", + "redfish\n", + "redfishes\n", + "redhead\n", + "redheaded\n", + "redheads\n", + "redhorse\n", + "redhorses\n", + "redia\n", + "rediae\n", + "redial\n", + "redias\n", + "redid\n", + "redigest\n", + "redigested\n", + "redigesting\n", + "redigests\n", + "reding\n", + "redip\n", + "redipped\n", + "redipping\n", + "redips\n", + "redipt\n", + "redirect\n", + "redirected\n", + "redirecting\n", + "redirects\n", + "rediscover\n", + "rediscovered\n", + "rediscoveries\n", + "rediscovering\n", + "rediscovers\n", + "rediscovery\n", + "redissolve\n", + "redissolved\n", + "redissolves\n", + "redissolving\n", + "redistribute\n", + "redistributed\n", + "redistributes\n", + "redistributing\n", + "redivide\n", + "redivided\n", + "redivides\n", + "redividing\n", + "redleg\n", + "redlegs\n", + "redly\n", + "redneck\n", + "rednecks\n", + "redness\n", + "rednesses\n", + "redo\n", + "redock\n", + "redocked\n", + "redocking\n", + "redocks\n", + "redoes\n", + "redoing\n", + "redolence\n", + "redolences\n", + "redolent\n", + "redolently\n", + "redone\n", + "redos\n", + "redouble\n", + "redoubled\n", + "redoubles\n", + "redoubling\n", + "redoubt\n", + "redoubtable\n", + "redoubts\n", + "redound\n", + "redounded\n", + "redounding\n", + "redounds\n", + "redout\n", + "redouts\n", + "redowa\n", + "redowas\n", + "redox\n", + "redoxes\n", + "redpoll\n", + "redpolls\n", + "redraft\n", + "redrafted\n", + "redrafting\n", + "redrafts\n", + "redraw\n", + "redrawer\n", + "redrawers\n", + "redrawing\n", + "redrawn\n", + "redraws\n", + "redress\n", + "redressed\n", + "redresses\n", + "redressing\n", + "redrew\n", + "redried\n", + "redries\n", + "redrill\n", + "redrilled\n", + "redrilling\n", + "redrills\n", + "redrive\n", + "redriven\n", + "redrives\n", + "redriving\n", + "redroot\n", + "redroots\n", + "redrove\n", + "redry\n", + "redrying\n", + "reds\n", + "redshank\n", + "redshanks\n", + "redshirt\n", + "redshirted\n", + "redshirting\n", + "redshirts\n", + "redskin\n", + "redskins\n", + "redstart\n", + "redstarts\n", + "redtop\n", + "redtops\n", + "reduce\n", + "reduced\n", + "reducer\n", + "reducers\n", + "reduces\n", + "reducible\n", + "reducing\n", + "reduction\n", + "reductions\n", + "redundancies\n", + "redundancy\n", + "redundant\n", + "redundantly\n", + "reduviid\n", + "reduviids\n", + "redware\n", + "redwares\n", + "redwing\n", + "redwings\n", + "redwood\n", + "redwoods\n", + "redye\n", + "redyed\n", + "redyeing\n", + "redyes\n", + "ree\n", + "reearn\n", + "reearned\n", + "reearning\n", + "reearns\n", + "reecho\n", + "reechoed\n", + "reechoes\n", + "reechoing\n", + "reed\n", + "reedbird\n", + "reedbirds\n", + "reedbuck\n", + "reedbucks\n", + "reeded\n", + "reedier\n", + "reediest\n", + "reedified\n", + "reedifies\n", + "reedify\n", + "reedifying\n", + "reeding\n", + "reedings\n", + "reedit\n", + "reedited\n", + "reediting\n", + "reedits\n", + "reedling\n", + "reedlings\n", + "reeds\n", + "reedy\n", + "reef\n", + "reefed\n", + "reefer\n", + "reefers\n", + "reefier\n", + "reefiest\n", + "reefing\n", + "reefs\n", + "reefy\n", + "reeject\n", + "reejected\n", + "reejecting\n", + "reejects\n", + "reek\n", + "reeked\n", + "reeker\n", + "reekers\n", + "reekier\n", + "reekiest\n", + "reeking\n", + "reeks\n", + "reeky\n", + "reel\n", + "reelable\n", + "reelect\n", + "reelected\n", + "reelecting\n", + "reelects\n", + "reeled\n", + "reeler\n", + "reelers\n", + "reeling\n", + "reels\n", + "reembark\n", + "reembarked\n", + "reembarking\n", + "reembarks\n", + "reembodied\n", + "reembodies\n", + "reembody\n", + "reembodying\n", + "reemerge\n", + "reemerged\n", + "reemergence\n", + "reemergences\n", + "reemerges\n", + "reemerging\n", + "reemit\n", + "reemits\n", + "reemitted\n", + "reemitting\n", + "reemphasize\n", + "reemphasized\n", + "reemphasizes\n", + "reemphasizing\n", + "reemploy\n", + "reemployed\n", + "reemploying\n", + "reemploys\n", + "reenact\n", + "reenacted\n", + "reenacting\n", + "reenacts\n", + "reendow\n", + "reendowed\n", + "reendowing\n", + "reendows\n", + "reenergize\n", + "reenergized\n", + "reenergizes\n", + "reenergizing\n", + "reengage\n", + "reengaged\n", + "reengages\n", + "reengaging\n", + "reenjoy\n", + "reenjoyed\n", + "reenjoying\n", + "reenjoys\n", + "reenlist\n", + "reenlisted\n", + "reenlisting\n", + "reenlistness\n", + "reenlistnesses\n", + "reenlists\n", + "reenter\n", + "reentered\n", + "reentering\n", + "reenters\n", + "reentries\n", + "reentry\n", + "reequip\n", + "reequipped\n", + "reequipping\n", + "reequips\n", + "reerect\n", + "reerected\n", + "reerecting\n", + "reerects\n", + "rees\n", + "reest\n", + "reestablish\n", + "reestablished\n", + "reestablishes\n", + "reestablishing\n", + "reestablishment\n", + "reestablishments\n", + "reested\n", + "reestimate\n", + "reestimated\n", + "reestimates\n", + "reestimating\n", + "reesting\n", + "reests\n", + "reevaluate\n", + "reevaluated\n", + "reevaluates\n", + "reevaluating\n", + "reevaluation\n", + "reevaluations\n", + "reeve\n", + "reeved\n", + "reeves\n", + "reeving\n", + "reevoke\n", + "reevoked\n", + "reevokes\n", + "reevoking\n", + "reexamination\n", + "reexaminations\n", + "reexamine\n", + "reexamined\n", + "reexamines\n", + "reexamining\n", + "reexpel\n", + "reexpelled\n", + "reexpelling\n", + "reexpels\n", + "reexport\n", + "reexported\n", + "reexporting\n", + "reexports\n", + "ref\n", + "reface\n", + "refaced\n", + "refaces\n", + "refacing\n", + "refall\n", + "refallen\n", + "refalling\n", + "refalls\n", + "refasten\n", + "refastened\n", + "refastening\n", + "refastens\n", + "refect\n", + "refected\n", + "refecting\n", + "refects\n", + "refed\n", + "refeed\n", + "refeeding\n", + "refeeds\n", + "refel\n", + "refell\n", + "refelled\n", + "refelling\n", + "refels\n", + "refer\n", + "referable\n", + "referee\n", + "refereed\n", + "refereeing\n", + "referees\n", + "reference\n", + "references\n", + "referenda\n", + "referendum\n", + "referendums\n", + "referent\n", + "referents\n", + "referral\n", + "referrals\n", + "referred\n", + "referrer\n", + "referrers\n", + "referring\n", + "refers\n", + "reffed\n", + "reffing\n", + "refight\n", + "refighting\n", + "refights\n", + "refigure\n", + "refigured\n", + "refigures\n", + "refiguring\n", + "refile\n", + "refiled\n", + "refiles\n", + "refiling\n", + "refill\n", + "refillable\n", + "refilled\n", + "refilling\n", + "refills\n", + "refilm\n", + "refilmed\n", + "refilming\n", + "refilms\n", + "refilter\n", + "refiltered\n", + "refiltering\n", + "refilters\n", + "refinance\n", + "refinanced\n", + "refinances\n", + "refinancing\n", + "refind\n", + "refinding\n", + "refinds\n", + "refine\n", + "refined\n", + "refinement\n", + "refinements\n", + "refiner\n", + "refineries\n", + "refiners\n", + "refinery\n", + "refines\n", + "refining\n", + "refinish\n", + "refinished\n", + "refinishes\n", + "refinishing\n", + "refire\n", + "refired\n", + "refires\n", + "refiring\n", + "refit\n", + "refits\n", + "refitted\n", + "refitting\n", + "refix\n", + "refixed\n", + "refixes\n", + "refixing\n", + "reflate\n", + "reflated\n", + "reflates\n", + "reflating\n", + "reflect\n", + "reflected\n", + "reflecting\n", + "reflection\n", + "reflections\n", + "reflective\n", + "reflector\n", + "reflectors\n", + "reflects\n", + "reflet\n", + "reflets\n", + "reflew\n", + "reflex\n", + "reflexed\n", + "reflexes\n", + "reflexing\n", + "reflexive\n", + "reflexively\n", + "reflexiveness\n", + "reflexivenesses\n", + "reflexly\n", + "reflies\n", + "refloat\n", + "refloated\n", + "refloating\n", + "refloats\n", + "reflood\n", + "reflooded\n", + "reflooding\n", + "refloods\n", + "reflow\n", + "reflowed\n", + "reflower\n", + "reflowered\n", + "reflowering\n", + "reflowers\n", + "reflowing\n", + "reflown\n", + "reflows\n", + "refluent\n", + "reflux\n", + "refluxed\n", + "refluxes\n", + "refluxing\n", + "refly\n", + "reflying\n", + "refocus\n", + "refocused\n", + "refocuses\n", + "refocusing\n", + "refocussed\n", + "refocusses\n", + "refocussing\n", + "refold\n", + "refolded\n", + "refolding\n", + "refolds\n", + "reforest\n", + "reforested\n", + "reforesting\n", + "reforests\n", + "reforge\n", + "reforged\n", + "reforges\n", + "reforging\n", + "reform\n", + "reformat\n", + "reformatories\n", + "reformatory\n", + "reformats\n", + "reformatted\n", + "reformatting\n", + "reformed\n", + "reformer\n", + "reformers\n", + "reforming\n", + "reforms\n", + "reformulate\n", + "reformulated\n", + "reformulates\n", + "reformulating\n", + "refought\n", + "refound\n", + "refounded\n", + "refounding\n", + "refounds\n", + "refract\n", + "refracted\n", + "refracting\n", + "refraction\n", + "refractions\n", + "refractive\n", + "refractory\n", + "refracts\n", + "refrain\n", + "refrained\n", + "refraining\n", + "refrainment\n", + "refrainments\n", + "refrains\n", + "reframe\n", + "reframed\n", + "reframes\n", + "reframing\n", + "refreeze\n", + "refreezes\n", + "refreezing\n", + "refresh\n", + "refreshed\n", + "refresher\n", + "refreshers\n", + "refreshes\n", + "refreshing\n", + "refreshingly\n", + "refreshment\n", + "refreshments\n", + "refried\n", + "refries\n", + "refrigerant\n", + "refrigerants\n", + "refrigerate\n", + "refrigerated\n", + "refrigerates\n", + "refrigerating\n", + "refrigeration\n", + "refrigerations\n", + "refrigerator\n", + "refrigerators\n", + "refront\n", + "refronted\n", + "refronting\n", + "refronts\n", + "refroze\n", + "refrozen\n", + "refry\n", + "refrying\n", + "refs\n", + "reft\n", + "refuel\n", + "refueled\n", + "refueling\n", + "refuelled\n", + "refuelling\n", + "refuels\n", + "refuge\n", + "refuged\n", + "refugee\n", + "refugees\n", + "refuges\n", + "refugia\n", + "refuging\n", + "refugium\n", + "refund\n", + "refundable\n", + "refunded\n", + "refunder\n", + "refunders\n", + "refunding\n", + "refunds\n", + "refurbish\n", + "refurbished\n", + "refurbishes\n", + "refurbishing\n", + "refusal\n", + "refusals\n", + "refuse\n", + "refused\n", + "refuser\n", + "refusers\n", + "refuses\n", + "refusing\n", + "refutal\n", + "refutals\n", + "refutation\n", + "refutations\n", + "refute\n", + "refuted\n", + "refuter\n", + "refuters\n", + "refutes\n", + "refuting\n", + "regain\n", + "regained\n", + "regainer\n", + "regainers\n", + "regaining\n", + "regains\n", + "regal\n", + "regale\n", + "regaled\n", + "regalement\n", + "regalements\n", + "regales\n", + "regalia\n", + "regaling\n", + "regalities\n", + "regality\n", + "regally\n", + "regard\n", + "regarded\n", + "regardful\n", + "regarding\n", + "regardless\n", + "regards\n", + "regather\n", + "regathered\n", + "regathering\n", + "regathers\n", + "regatta\n", + "regattas\n", + "regauge\n", + "regauged\n", + "regauges\n", + "regauging\n", + "regave\n", + "regear\n", + "regeared\n", + "regearing\n", + "regears\n", + "regelate\n", + "regelated\n", + "regelates\n", + "regelating\n", + "regencies\n", + "regency\n", + "regenerate\n", + "regenerated\n", + "regenerates\n", + "regenerating\n", + "regeneration\n", + "regenerations\n", + "regenerative\n", + "regenerator\n", + "regenerators\n", + "regent\n", + "regental\n", + "regents\n", + "reges\n", + "regicide\n", + "regicides\n", + "regild\n", + "regilded\n", + "regilding\n", + "regilds\n", + "regilt\n", + "regime\n", + "regimen\n", + "regimens\n", + "regiment\n", + "regimental\n", + "regimentation\n", + "regimentations\n", + "regimented\n", + "regimenting\n", + "regiments\n", + "regimes\n", + "regina\n", + "reginae\n", + "reginal\n", + "reginas\n", + "region\n", + "regional\n", + "regionally\n", + "regionals\n", + "regions\n", + "register\n", + "registered\n", + "registering\n", + "registers\n", + "registrar\n", + "registrars\n", + "registration\n", + "registrations\n", + "registries\n", + "registry\n", + "regius\n", + "regive\n", + "regiven\n", + "regives\n", + "regiving\n", + "reglaze\n", + "reglazed\n", + "reglazes\n", + "reglazing\n", + "reglet\n", + "reglets\n", + "regloss\n", + "reglossed\n", + "reglosses\n", + "reglossing\n", + "reglow\n", + "reglowed\n", + "reglowing\n", + "reglows\n", + "reglue\n", + "reglued\n", + "reglues\n", + "regluing\n", + "regma\n", + "regmata\n", + "regna\n", + "regnal\n", + "regnancies\n", + "regnancy\n", + "regnant\n", + "regnum\n", + "regolith\n", + "regoliths\n", + "regorge\n", + "regorged\n", + "regorges\n", + "regorging\n", + "regosol\n", + "regosols\n", + "regrade\n", + "regraded\n", + "regrades\n", + "regrading\n", + "regraft\n", + "regrafted\n", + "regrafting\n", + "regrafts\n", + "regrant\n", + "regranted\n", + "regranting\n", + "regrants\n", + "regrate\n", + "regrated\n", + "regrates\n", + "regrating\n", + "regreet\n", + "regreeted\n", + "regreeting\n", + "regreets\n", + "regress\n", + "regressed\n", + "regresses\n", + "regressing\n", + "regression\n", + "regressions\n", + "regressive\n", + "regressor\n", + "regressors\n", + "regret\n", + "regretfully\n", + "regrets\n", + "regrettable\n", + "regrettably\n", + "regretted\n", + "regretter\n", + "regretters\n", + "regretting\n", + "regrew\n", + "regrind\n", + "regrinding\n", + "regrinds\n", + "regroove\n", + "regrooved\n", + "regrooves\n", + "regrooving\n", + "reground\n", + "regroup\n", + "regrouped\n", + "regrouping\n", + "regroups\n", + "regrow\n", + "regrowing\n", + "regrown\n", + "regrows\n", + "regrowth\n", + "regrowths\n", + "regular\n", + "regularities\n", + "regularity\n", + "regularize\n", + "regularized\n", + "regularizes\n", + "regularizing\n", + "regularly\n", + "regulars\n", + "regulate\n", + "regulated\n", + "regulates\n", + "regulating\n", + "regulation\n", + "regulations\n", + "regulative\n", + "regulator\n", + "regulators\n", + "regulatory\n", + "reguli\n", + "reguline\n", + "regulus\n", + "reguluses\n", + "regurgitate\n", + "regurgitated\n", + "regurgitates\n", + "regurgitating\n", + "regurgitation\n", + "regurgitations\n", + "rehabilitate\n", + "rehabilitated\n", + "rehabilitates\n", + "rehabilitating\n", + "rehabilitation\n", + "rehabilitations\n", + "rehabilitative\n", + "rehammer\n", + "rehammered\n", + "rehammering\n", + "rehammers\n", + "rehandle\n", + "rehandled\n", + "rehandles\n", + "rehandling\n", + "rehang\n", + "rehanged\n", + "rehanging\n", + "rehangs\n", + "reharden\n", + "rehardened\n", + "rehardening\n", + "rehardens\n", + "rehash\n", + "rehashed\n", + "rehashes\n", + "rehashing\n", + "rehear\n", + "reheard\n", + "rehearing\n", + "rehears\n", + "rehearsal\n", + "rehearsals\n", + "rehearse\n", + "rehearsed\n", + "rehearser\n", + "rehearsers\n", + "rehearses\n", + "rehearsing\n", + "reheat\n", + "reheated\n", + "reheater\n", + "reheaters\n", + "reheating\n", + "reheats\n", + "reheel\n", + "reheeled\n", + "reheeling\n", + "reheels\n", + "rehem\n", + "rehemmed\n", + "rehemming\n", + "rehems\n", + "rehinge\n", + "rehinged\n", + "rehinges\n", + "rehinging\n", + "rehire\n", + "rehired\n", + "rehires\n", + "rehiring\n", + "rehospitalization\n", + "rehospitalizations\n", + "rehospitalize\n", + "rehospitalized\n", + "rehospitalizes\n", + "rehospitalizing\n", + "rehouse\n", + "rehoused\n", + "rehouses\n", + "rehousing\n", + "rehung\n", + "rei\n", + "reidentified\n", + "reidentifies\n", + "reidentify\n", + "reidentifying\n", + "reif\n", + "reified\n", + "reifier\n", + "reifiers\n", + "reifies\n", + "reifs\n", + "reify\n", + "reifying\n", + "reign\n", + "reigned\n", + "reigning\n", + "reignite\n", + "reignited\n", + "reignites\n", + "reigniting\n", + "reigns\n", + "reimage\n", + "reimaged\n", + "reimages\n", + "reimaging\n", + "reimbursable\n", + "reimburse\n", + "reimbursed\n", + "reimbursement\n", + "reimbursements\n", + "reimburses\n", + "reimbursing\n", + "reimplant\n", + "reimplanted\n", + "reimplanting\n", + "reimplants\n", + "reimport\n", + "reimported\n", + "reimporting\n", + "reimports\n", + "reimpose\n", + "reimposed\n", + "reimposes\n", + "reimposing\n", + "rein\n", + "reincarnate\n", + "reincarnated\n", + "reincarnates\n", + "reincarnating\n", + "reincarnation\n", + "reincarnations\n", + "reincite\n", + "reincited\n", + "reincites\n", + "reinciting\n", + "reincorporate\n", + "reincorporated\n", + "reincorporates\n", + "reincorporating\n", + "reincur\n", + "reincurred\n", + "reincurring\n", + "reincurs\n", + "reindeer\n", + "reindeers\n", + "reindex\n", + "reindexed\n", + "reindexes\n", + "reindexing\n", + "reinduce\n", + "reinduced\n", + "reinduces\n", + "reinducing\n", + "reinduct\n", + "reinducted\n", + "reinducting\n", + "reinducts\n", + "reined\n", + "reinfect\n", + "reinfected\n", + "reinfecting\n", + "reinfection\n", + "reinfections\n", + "reinfects\n", + "reinforcement\n", + "reinforcements\n", + "reinforcer\n", + "reinforcers\n", + "reinform\n", + "reinformed\n", + "reinforming\n", + "reinforms\n", + "reinfuse\n", + "reinfused\n", + "reinfuses\n", + "reinfusing\n", + "reining\n", + "reinjection\n", + "reinjections\n", + "reinjure\n", + "reinjured\n", + "reinjures\n", + "reinjuring\n", + "reinless\n", + "reinoculate\n", + "reinoculated\n", + "reinoculates\n", + "reinoculating\n", + "reins\n", + "reinsert\n", + "reinserted\n", + "reinserting\n", + "reinsertion\n", + "reinsertions\n", + "reinserts\n", + "reinsman\n", + "reinsmen\n", + "reinspect\n", + "reinspected\n", + "reinspecting\n", + "reinspects\n", + "reinstall\n", + "reinstalled\n", + "reinstalling\n", + "reinstalls\n", + "reinstate\n", + "reinstated\n", + "reinstates\n", + "reinstating\n", + "reinstitute\n", + "reinstituted\n", + "reinstitutes\n", + "reinstituting\n", + "reinsure\n", + "reinsured\n", + "reinsures\n", + "reinsuring\n", + "reintegrate\n", + "reintegrated\n", + "reintegrates\n", + "reintegrating\n", + "reintegration\n", + "reintegrations\n", + "reinter\n", + "reinterred\n", + "reinterring\n", + "reinters\n", + "reintroduce\n", + "reintroduced\n", + "reintroduces\n", + "reintroducing\n", + "reinvent\n", + "reinvented\n", + "reinventing\n", + "reinvents\n", + "reinvest\n", + "reinvested\n", + "reinvestigate\n", + "reinvestigated\n", + "reinvestigates\n", + "reinvestigating\n", + "reinvestigation\n", + "reinvestigations\n", + "reinvesting\n", + "reinvests\n", + "reinvigorate\n", + "reinvigorated\n", + "reinvigorates\n", + "reinvigorating\n", + "reinvite\n", + "reinvited\n", + "reinvites\n", + "reinviting\n", + "reinvoke\n", + "reinvoked\n", + "reinvokes\n", + "reinvoking\n", + "reis\n", + "reissue\n", + "reissued\n", + "reissuer\n", + "reissuers\n", + "reissues\n", + "reissuing\n", + "reitbok\n", + "reitboks\n", + "reiterate\n", + "reiterated\n", + "reiterates\n", + "reiterating\n", + "reiteration\n", + "reiterations\n", + "reive\n", + "reived\n", + "reiver\n", + "reivers\n", + "reives\n", + "reiving\n", + "reject\n", + "rejected\n", + "rejectee\n", + "rejectees\n", + "rejecter\n", + "rejecters\n", + "rejecting\n", + "rejection\n", + "rejections\n", + "rejector\n", + "rejectors\n", + "rejects\n", + "rejigger\n", + "rejiggered\n", + "rejiggering\n", + "rejiggers\n", + "rejoice\n", + "rejoiced\n", + "rejoicer\n", + "rejoicers\n", + "rejoices\n", + "rejoicing\n", + "rejoicings\n", + "rejoin\n", + "rejoinder\n", + "rejoinders\n", + "rejoined\n", + "rejoining\n", + "rejoins\n", + "rejudge\n", + "rejudged\n", + "rejudges\n", + "rejudging\n", + "rejuvenate\n", + "rejuvenated\n", + "rejuvenates\n", + "rejuvenating\n", + "rejuvenation\n", + "rejuvenations\n", + "rekey\n", + "rekeyed\n", + "rekeying\n", + "rekeys\n", + "rekindle\n", + "rekindled\n", + "rekindles\n", + "rekindling\n", + "reknit\n", + "reknits\n", + "reknitted\n", + "reknitting\n", + "relabel\n", + "relabeled\n", + "relabeling\n", + "relabelled\n", + "relabelling\n", + "relabels\n", + "relace\n", + "relaced\n", + "relaces\n", + "relacing\n", + "relaid\n", + "relandscape\n", + "relandscaped\n", + "relandscapes\n", + "relandscaping\n", + "relapse\n", + "relapsed\n", + "relapser\n", + "relapsers\n", + "relapses\n", + "relapsing\n", + "relatable\n", + "relate\n", + "related\n", + "relater\n", + "relaters\n", + "relates\n", + "relating\n", + "relation\n", + "relations\n", + "relationship\n", + "relationships\n", + "relative\n", + "relatively\n", + "relativeness\n", + "relativenesses\n", + "relatives\n", + "relator\n", + "relators\n", + "relaunch\n", + "relaunched\n", + "relaunches\n", + "relaunching\n", + "relax\n", + "relaxant\n", + "relaxants\n", + "relaxation\n", + "relaxations\n", + "relaxed\n", + "relaxer\n", + "relaxers\n", + "relaxes\n", + "relaxin\n", + "relaxing\n", + "relaxins\n", + "relay\n", + "relayed\n", + "relaying\n", + "relays\n", + "relearn\n", + "relearned\n", + "relearning\n", + "relearns\n", + "relearnt\n", + "release\n", + "released\n", + "releaser\n", + "releasers\n", + "releases\n", + "releasing\n", + "relegate\n", + "relegated\n", + "relegates\n", + "relegating\n", + "relegation\n", + "relegations\n", + "relend\n", + "relending\n", + "relends\n", + "relent\n", + "relented\n", + "relenting\n", + "relentless\n", + "relentlessly\n", + "relentlessness\n", + "relentlessnesses\n", + "relents\n", + "relet\n", + "relets\n", + "reletter\n", + "relettered\n", + "relettering\n", + "reletters\n", + "reletting\n", + "relevance\n", + "relevances\n", + "relevant\n", + "relevantly\n", + "reliabilities\n", + "reliability\n", + "reliable\n", + "reliableness\n", + "reliablenesses\n", + "reliably\n", + "reliance\n", + "reliances\n", + "reliant\n", + "relic\n", + "relics\n", + "relict\n", + "relicts\n", + "relied\n", + "relief\n", + "reliefs\n", + "relier\n", + "reliers\n", + "relies\n", + "relieve\n", + "relieved\n", + "reliever\n", + "relievers\n", + "relieves\n", + "relieving\n", + "relievo\n", + "relievos\n", + "relight\n", + "relighted\n", + "relighting\n", + "relights\n", + "religion\n", + "religionist\n", + "religionists\n", + "religions\n", + "religious\n", + "religiously\n", + "reline\n", + "relined\n", + "relines\n", + "relining\n", + "relinquish\n", + "relinquished\n", + "relinquishes\n", + "relinquishing\n", + "relinquishment\n", + "relinquishments\n", + "relique\n", + "reliques\n", + "relish\n", + "relishable\n", + "relished\n", + "relishes\n", + "relishing\n", + "relist\n", + "relisted\n", + "relisting\n", + "relists\n", + "relit\n", + "relive\n", + "relived\n", + "relives\n", + "reliving\n", + "reload\n", + "reloaded\n", + "reloader\n", + "reloaders\n", + "reloading\n", + "reloads\n", + "reloan\n", + "reloaned\n", + "reloaning\n", + "reloans\n", + "relocate\n", + "relocated\n", + "relocates\n", + "relocating\n", + "relocation\n", + "relocations\n", + "relucent\n", + "reluct\n", + "reluctance\n", + "reluctant\n", + "reluctantly\n", + "relucted\n", + "relucting\n", + "relucts\n", + "relume\n", + "relumed\n", + "relumes\n", + "relumine\n", + "relumined\n", + "relumines\n", + "reluming\n", + "relumining\n", + "rely\n", + "relying\n", + "rem\n", + "remade\n", + "remail\n", + "remailed\n", + "remailing\n", + "remails\n", + "remain\n", + "remainder\n", + "remainders\n", + "remained\n", + "remaining\n", + "remains\n", + "remake\n", + "remakes\n", + "remaking\n", + "reman\n", + "remand\n", + "remanded\n", + "remanding\n", + "remands\n", + "remanent\n", + "remanned\n", + "remanning\n", + "remans\n", + "remap\n", + "remapped\n", + "remapping\n", + "remaps\n", + "remark\n", + "remarkable\n", + "remarkableness\n", + "remarkablenesses\n", + "remarkably\n", + "remarked\n", + "remarker\n", + "remarkers\n", + "remarking\n", + "remarks\n", + "remarque\n", + "remarques\n", + "remarriage\n", + "remarriages\n", + "remarried\n", + "remarries\n", + "remarry\n", + "remarrying\n", + "rematch\n", + "rematched\n", + "rematches\n", + "rematching\n", + "remeasure\n", + "remeasured\n", + "remeasures\n", + "remeasuring\n", + "remedial\n", + "remedially\n", + "remedied\n", + "remedies\n", + "remedy\n", + "remedying\n", + "remeet\n", + "remeeting\n", + "remeets\n", + "remelt\n", + "remelted\n", + "remelting\n", + "remelts\n", + "remember\n", + "remembered\n", + "remembering\n", + "remembers\n", + "remend\n", + "remended\n", + "remending\n", + "remends\n", + "remerge\n", + "remerged\n", + "remerges\n", + "remerging\n", + "remet\n", + "remex\n", + "remiges\n", + "remigial\n", + "remind\n", + "reminded\n", + "reminder\n", + "reminders\n", + "reminding\n", + "reminds\n", + "reminisce\n", + "reminisced\n", + "reminiscence\n", + "reminiscences\n", + "reminiscent\n", + "reminiscently\n", + "reminisces\n", + "reminiscing\n", + "remint\n", + "reminted\n", + "reminting\n", + "remints\n", + "remise\n", + "remised\n", + "remises\n", + "remising\n", + "remiss\n", + "remission\n", + "remissions\n", + "remissly\n", + "remissness\n", + "remissnesses\n", + "remit\n", + "remits\n", + "remittal\n", + "remittals\n", + "remittance\n", + "remittances\n", + "remitted\n", + "remitter\n", + "remitters\n", + "remitting\n", + "remittor\n", + "remittors\n", + "remix\n", + "remixed\n", + "remixes\n", + "remixing\n", + "remixt\n", + "remnant\n", + "remnants\n", + "remobilize\n", + "remobilized\n", + "remobilizes\n", + "remobilizing\n", + "remodel\n", + "remodeled\n", + "remodeling\n", + "remodelled\n", + "remodelling\n", + "remodels\n", + "remodified\n", + "remodifies\n", + "remodify\n", + "remodifying\n", + "remoisten\n", + "remoistened\n", + "remoistening\n", + "remoistens\n", + "remolade\n", + "remolades\n", + "remold\n", + "remolded\n", + "remolding\n", + "remolds\n", + "remonstrance\n", + "remonstrances\n", + "remonstrate\n", + "remonstrated\n", + "remonstrates\n", + "remonstrating\n", + "remonstration\n", + "remonstrations\n", + "remora\n", + "remoras\n", + "remorid\n", + "remorse\n", + "remorseful\n", + "remorseless\n", + "remorses\n", + "remote\n", + "remotely\n", + "remoteness\n", + "remotenesses\n", + "remoter\n", + "remotest\n", + "remotion\n", + "remotions\n", + "remotivate\n", + "remotivated\n", + "remotivates\n", + "remotivating\n", + "remount\n", + "remounted\n", + "remounting\n", + "remounts\n", + "removable\n", + "removal\n", + "removals\n", + "remove\n", + "removed\n", + "remover\n", + "removers\n", + "removes\n", + "removing\n", + "rems\n", + "remuda\n", + "remudas\n", + "remunerate\n", + "remunerated\n", + "remunerates\n", + "remunerating\n", + "remuneration\n", + "remunerations\n", + "remunerative\n", + "remuneratively\n", + "remunerativeness\n", + "remunerativenesses\n", + "remunerator\n", + "remunerators\n", + "remuneratory\n", + "renaissance\n", + "renaissances\n", + "renal\n", + "rename\n", + "renamed\n", + "renames\n", + "renaming\n", + "renature\n", + "renatured\n", + "renatures\n", + "renaturing\n", + "rend\n", + "rended\n", + "render\n", + "rendered\n", + "renderer\n", + "renderers\n", + "rendering\n", + "renders\n", + "rendezvous\n", + "rendezvoused\n", + "rendezvousing\n", + "rendible\n", + "rending\n", + "rendition\n", + "renditions\n", + "rends\n", + "rendzina\n", + "rendzinas\n", + "renegade\n", + "renegaded\n", + "renegades\n", + "renegading\n", + "renegado\n", + "renegadoes\n", + "renegados\n", + "renege\n", + "reneged\n", + "reneger\n", + "renegers\n", + "reneges\n", + "reneging\n", + "renegotiate\n", + "renegotiated\n", + "renegotiates\n", + "renegotiating\n", + "renew\n", + "renewable\n", + "renewal\n", + "renewals\n", + "renewed\n", + "renewer\n", + "renewers\n", + "renewing\n", + "renews\n", + "reniform\n", + "renig\n", + "renigged\n", + "renigging\n", + "renigs\n", + "renin\n", + "renins\n", + "renitent\n", + "rennase\n", + "rennases\n", + "rennet\n", + "rennets\n", + "rennin\n", + "rennins\n", + "renogram\n", + "renograms\n", + "renotified\n", + "renotifies\n", + "renotify\n", + "renotifying\n", + "renounce\n", + "renounced\n", + "renouncement\n", + "renouncements\n", + "renounces\n", + "renouncing\n", + "renovate\n", + "renovated\n", + "renovates\n", + "renovating\n", + "renovation\n", + "renovations\n", + "renovator\n", + "renovators\n", + "renown\n", + "renowned\n", + "renowning\n", + "renowns\n", + "rent\n", + "rentable\n", + "rental\n", + "rentals\n", + "rente\n", + "rented\n", + "renter\n", + "renters\n", + "rentes\n", + "rentier\n", + "rentiers\n", + "renting\n", + "rents\n", + "renumber\n", + "renumbered\n", + "renumbering\n", + "renumbers\n", + "renunciation\n", + "renunciations\n", + "renvoi\n", + "renvois\n", + "reobject\n", + "reobjected\n", + "reobjecting\n", + "reobjects\n", + "reobtain\n", + "reobtained\n", + "reobtaining\n", + "reobtains\n", + "reoccupied\n", + "reoccupies\n", + "reoccupy\n", + "reoccupying\n", + "reoccur\n", + "reoccurred\n", + "reoccurrence\n", + "reoccurrences\n", + "reoccurring\n", + "reoccurs\n", + "reoffer\n", + "reoffered\n", + "reoffering\n", + "reoffers\n", + "reoil\n", + "reoiled\n", + "reoiling\n", + "reoils\n", + "reopen\n", + "reopened\n", + "reopening\n", + "reopens\n", + "reoperate\n", + "reoperated\n", + "reoperates\n", + "reoperating\n", + "reoppose\n", + "reopposed\n", + "reopposes\n", + "reopposing\n", + "reorchestrate\n", + "reorchestrated\n", + "reorchestrates\n", + "reorchestrating\n", + "reordain\n", + "reordained\n", + "reordaining\n", + "reordains\n", + "reorder\n", + "reordered\n", + "reordering\n", + "reorders\n", + "reorganization\n", + "reorganizations\n", + "reorganize\n", + "reorganized\n", + "reorganizes\n", + "reorganizing\n", + "reorient\n", + "reoriented\n", + "reorienting\n", + "reorients\n", + "reovirus\n", + "reoviruses\n", + "rep\n", + "repacified\n", + "repacifies\n", + "repacify\n", + "repacifying\n", + "repack\n", + "repacked\n", + "repacking\n", + "repacks\n", + "repaid\n", + "repaint\n", + "repainted\n", + "repainting\n", + "repaints\n", + "repair\n", + "repaired\n", + "repairer\n", + "repairers\n", + "repairing\n", + "repairman\n", + "repairmen\n", + "repairs\n", + "repand\n", + "repandly\n", + "repaper\n", + "repapered\n", + "repapering\n", + "repapers\n", + "reparation\n", + "reparations\n", + "repartee\n", + "repartees\n", + "repass\n", + "repassed\n", + "repasses\n", + "repassing\n", + "repast\n", + "repasted\n", + "repasting\n", + "repasts\n", + "repatriate\n", + "repatriated\n", + "repatriates\n", + "repatriating\n", + "repatriation\n", + "repatriations\n", + "repave\n", + "repaved\n", + "repaves\n", + "repaving\n", + "repay\n", + "repayable\n", + "repaying\n", + "repayment\n", + "repayments\n", + "repays\n", + "repeal\n", + "repealed\n", + "repealer\n", + "repealers\n", + "repealing\n", + "repeals\n", + "repeat\n", + "repeatable\n", + "repeated\n", + "repeatedly\n", + "repeater\n", + "repeaters\n", + "repeating\n", + "repeats\n", + "repel\n", + "repelled\n", + "repellent\n", + "repellents\n", + "repeller\n", + "repellers\n", + "repelling\n", + "repels\n", + "repent\n", + "repentance\n", + "repentances\n", + "repentant\n", + "repented\n", + "repenter\n", + "repenters\n", + "repenting\n", + "repents\n", + "repeople\n", + "repeopled\n", + "repeoples\n", + "repeopling\n", + "repercussion\n", + "repercussions\n", + "reperk\n", + "reperked\n", + "reperking\n", + "reperks\n", + "repertoire\n", + "repertoires\n", + "repertories\n", + "repertory\n", + "repetend\n", + "repetends\n", + "repetition\n", + "repetitions\n", + "repetitious\n", + "repetitiously\n", + "repetitiousness\n", + "repetitiousnesses\n", + "repetitive\n", + "repetitively\n", + "repetitiveness\n", + "repetitivenesses\n", + "rephotograph\n", + "rephotographed\n", + "rephotographing\n", + "rephotographs\n", + "rephrase\n", + "rephrased\n", + "rephrases\n", + "rephrasing\n", + "repin\n", + "repine\n", + "repined\n", + "repiner\n", + "repiners\n", + "repines\n", + "repining\n", + "repinned\n", + "repinning\n", + "repins\n", + "replace\n", + "replaceable\n", + "replaced\n", + "replacement\n", + "replacements\n", + "replacer\n", + "replacers\n", + "replaces\n", + "replacing\n", + "replan\n", + "replanned\n", + "replanning\n", + "replans\n", + "replant\n", + "replanted\n", + "replanting\n", + "replants\n", + "replate\n", + "replated\n", + "replates\n", + "replating\n", + "replay\n", + "replayed\n", + "replaying\n", + "replays\n", + "repledge\n", + "repledged\n", + "repledges\n", + "repledging\n", + "replenish\n", + "replenished\n", + "replenishes\n", + "replenishing\n", + "replenishment\n", + "replenishments\n", + "replete\n", + "repleteness\n", + "repletenesses\n", + "repletion\n", + "repletions\n", + "replevied\n", + "replevies\n", + "replevin\n", + "replevined\n", + "replevining\n", + "replevins\n", + "replevy\n", + "replevying\n", + "replica\n", + "replicas\n", + "replicate\n", + "replicated\n", + "replicates\n", + "replicating\n", + "replied\n", + "replier\n", + "repliers\n", + "replies\n", + "replunge\n", + "replunged\n", + "replunges\n", + "replunging\n", + "reply\n", + "replying\n", + "repolish\n", + "repolished\n", + "repolishes\n", + "repolishing\n", + "repopulate\n", + "repopulated\n", + "repopulates\n", + "repopulating\n", + "report\n", + "reportage\n", + "reportages\n", + "reported\n", + "reportedly\n", + "reporter\n", + "reporters\n", + "reporting\n", + "reportorial\n", + "reports\n", + "reposal\n", + "reposals\n", + "repose\n", + "reposed\n", + "reposeful\n", + "reposer\n", + "reposers\n", + "reposes\n", + "reposing\n", + "reposit\n", + "reposited\n", + "repositing\n", + "repository\n", + "reposits\n", + "repossess\n", + "repossession\n", + "repossessions\n", + "repour\n", + "repoured\n", + "repouring\n", + "repours\n", + "repousse\n", + "repousses\n", + "repower\n", + "repowered\n", + "repowering\n", + "repowers\n", + "repp\n", + "repped\n", + "repps\n", + "reprehend\n", + "reprehends\n", + "reprehensible\n", + "reprehensibly\n", + "reprehension\n", + "reprehensions\n", + "represent\n", + "representation\n", + "representations\n", + "representative\n", + "representatively\n", + "representativeness\n", + "representativenesses\n", + "representatives\n", + "represented\n", + "representing\n", + "represents\n", + "repress\n", + "repressed\n", + "represses\n", + "repressing\n", + "repression\n", + "repressions\n", + "repressive\n", + "repressurize\n", + "repressurized\n", + "repressurizes\n", + "repressurizing\n", + "reprice\n", + "repriced\n", + "reprices\n", + "repricing\n", + "reprieve\n", + "reprieved\n", + "reprieves\n", + "reprieving\n", + "reprimand\n", + "reprimanded\n", + "reprimanding\n", + "reprimands\n", + "reprint\n", + "reprinted\n", + "reprinting\n", + "reprints\n", + "reprisal\n", + "reprisals\n", + "reprise\n", + "reprised\n", + "reprises\n", + "reprising\n", + "repro\n", + "reproach\n", + "reproached\n", + "reproaches\n", + "reproachful\n", + "reproachfully\n", + "reproachfulness\n", + "reproachfulnesses\n", + "reproaching\n", + "reprobate\n", + "reprobates\n", + "reprobation\n", + "reprobations\n", + "reprobe\n", + "reprobed\n", + "reprobes\n", + "reprobing\n", + "reprocess\n", + "reprocessed\n", + "reprocesses\n", + "reprocessing\n", + "reproduce\n", + "reproduced\n", + "reproduces\n", + "reproducible\n", + "reproducing\n", + "reproduction\n", + "reproductions\n", + "reproductive\n", + "reprogram\n", + "reprogramed\n", + "reprograming\n", + "reprograms\n", + "reproof\n", + "reproofs\n", + "repropose\n", + "reproposed\n", + "reproposes\n", + "reproposing\n", + "repros\n", + "reproval\n", + "reprovals\n", + "reprove\n", + "reproved\n", + "reprover\n", + "reprovers\n", + "reproves\n", + "reproving\n", + "reps\n", + "reptant\n", + "reptile\n", + "reptiles\n", + "republic\n", + "republican\n", + "republicanism\n", + "republicanisms\n", + "republicans\n", + "republics\n", + "repudiate\n", + "repudiated\n", + "repudiates\n", + "repudiating\n", + "repudiation\n", + "repudiations\n", + "repudiator\n", + "repudiators\n", + "repugn\n", + "repugnance\n", + "repugnances\n", + "repugnant\n", + "repugnantly\n", + "repugned\n", + "repugning\n", + "repugns\n", + "repulse\n", + "repulsed\n", + "repulser\n", + "repulsers\n", + "repulses\n", + "repulsing\n", + "repulsion\n", + "repulsions\n", + "repulsive\n", + "repulsively\n", + "repulsiveness\n", + "repulsivenesses\n", + "repurified\n", + "repurifies\n", + "repurify\n", + "repurifying\n", + "repursue\n", + "repursued\n", + "repursues\n", + "repursuing\n", + "reputable\n", + "reputabley\n", + "reputation\n", + "reputations\n", + "repute\n", + "reputed\n", + "reputedly\n", + "reputes\n", + "reputing\n", + "request\n", + "requested\n", + "requesting\n", + "requests\n", + "requiem\n", + "requiems\n", + "requin\n", + "requins\n", + "require\n", + "required\n", + "requirement\n", + "requirements\n", + "requirer\n", + "requirers\n", + "requires\n", + "requiring\n", + "requisite\n", + "requisites\n", + "requisition\n", + "requisitioned\n", + "requisitioning\n", + "requisitions\n", + "requital\n", + "requitals\n", + "requite\n", + "requited\n", + "requiter\n", + "requiters\n", + "requites\n", + "requiting\n", + "reran\n", + "reread\n", + "rereading\n", + "rereads\n", + "rerecord\n", + "rerecorded\n", + "rerecording\n", + "rerecords\n", + "reredos\n", + "reredoses\n", + "reregister\n", + "reregistered\n", + "reregistering\n", + "reregisters\n", + "reremice\n", + "reremouse\n", + "rereward\n", + "rerewards\n", + "rerise\n", + "rerisen\n", + "rerises\n", + "rerising\n", + "reroll\n", + "rerolled\n", + "reroller\n", + "rerollers\n", + "rerolling\n", + "rerolls\n", + "rerose\n", + "reroute\n", + "rerouted\n", + "reroutes\n", + "rerouting\n", + "rerun\n", + "rerunning\n", + "reruns\n", + "res\n", + "resaddle\n", + "resaddled\n", + "resaddles\n", + "resaddling\n", + "resaid\n", + "resail\n", + "resailed\n", + "resailing\n", + "resails\n", + "resalable\n", + "resale\n", + "resales\n", + "resalute\n", + "resaluted\n", + "resalutes\n", + "resaluting\n", + "resample\n", + "resampled\n", + "resamples\n", + "resampling\n", + "resaw\n", + "resawed\n", + "resawing\n", + "resawn\n", + "resaws\n", + "resay\n", + "resaying\n", + "resays\n", + "rescale\n", + "rescaled\n", + "rescales\n", + "rescaling\n", + "reschedule\n", + "rescheduled\n", + "reschedules\n", + "rescheduling\n", + "rescind\n", + "rescinded\n", + "rescinder\n", + "rescinders\n", + "rescinding\n", + "rescinds\n", + "rescission\n", + "rescissions\n", + "rescore\n", + "rescored\n", + "rescores\n", + "rescoring\n", + "rescreen\n", + "rescreened\n", + "rescreening\n", + "rescreens\n", + "rescript\n", + "rescripts\n", + "rescue\n", + "rescued\n", + "rescuer\n", + "rescuers\n", + "rescues\n", + "rescuing\n", + "reseal\n", + "resealed\n", + "resealing\n", + "reseals\n", + "research\n", + "researched\n", + "researcher\n", + "researchers\n", + "researches\n", + "researching\n", + "reseat\n", + "reseated\n", + "reseating\n", + "reseats\n", + "reseau\n", + "reseaus\n", + "reseaux\n", + "resect\n", + "resected\n", + "resecting\n", + "resects\n", + "reseda\n", + "resedas\n", + "resee\n", + "reseed\n", + "reseeded\n", + "reseeding\n", + "reseeds\n", + "reseeing\n", + "reseek\n", + "reseeking\n", + "reseeks\n", + "reseen\n", + "resees\n", + "resegregate\n", + "resegregated\n", + "resegregates\n", + "resegregating\n", + "reseize\n", + "reseized\n", + "reseizes\n", + "reseizing\n", + "resell\n", + "reseller\n", + "resellers\n", + "reselling\n", + "resells\n", + "resemblance\n", + "resemblances\n", + "resemble\n", + "resembled\n", + "resembles\n", + "resembling\n", + "resend\n", + "resending\n", + "resends\n", + "resent\n", + "resented\n", + "resentence\n", + "resentenced\n", + "resentences\n", + "resentencing\n", + "resentful\n", + "resentfully\n", + "resenting\n", + "resentment\n", + "resentments\n", + "resents\n", + "reservation\n", + "reservations\n", + "reserve\n", + "reserved\n", + "reserver\n", + "reservers\n", + "reserves\n", + "reserving\n", + "reset\n", + "resets\n", + "resetter\n", + "resetters\n", + "resetting\n", + "resettle\n", + "resettled\n", + "resettles\n", + "resettling\n", + "resew\n", + "resewed\n", + "resewing\n", + "resewn\n", + "resews\n", + "resh\n", + "reshape\n", + "reshaped\n", + "reshaper\n", + "reshapers\n", + "reshapes\n", + "reshaping\n", + "reshes\n", + "reship\n", + "reshipped\n", + "reshipping\n", + "reships\n", + "reshod\n", + "reshoe\n", + "reshoeing\n", + "reshoes\n", + "reshoot\n", + "reshooting\n", + "reshoots\n", + "reshot\n", + "reshow\n", + "reshowed\n", + "reshowing\n", + "reshown\n", + "reshows\n", + "resid\n", + "reside\n", + "resided\n", + "residence\n", + "residences\n", + "resident\n", + "residential\n", + "residents\n", + "resider\n", + "residers\n", + "resides\n", + "residing\n", + "resids\n", + "residua\n", + "residual\n", + "residuals\n", + "residue\n", + "residues\n", + "residuum\n", + "residuums\n", + "resift\n", + "resifted\n", + "resifting\n", + "resifts\n", + "resign\n", + "resignation\n", + "resignations\n", + "resigned\n", + "resignedly\n", + "resigner\n", + "resigners\n", + "resigning\n", + "resigns\n", + "resile\n", + "resiled\n", + "resiles\n", + "resilience\n", + "resiliences\n", + "resiliencies\n", + "resiliency\n", + "resilient\n", + "resiling\n", + "resilver\n", + "resilvered\n", + "resilvering\n", + "resilvers\n", + "resin\n", + "resinate\n", + "resinated\n", + "resinates\n", + "resinating\n", + "resined\n", + "resinified\n", + "resinifies\n", + "resinify\n", + "resinifying\n", + "resining\n", + "resinoid\n", + "resinoids\n", + "resinous\n", + "resins\n", + "resiny\n", + "resist\n", + "resistable\n", + "resistance\n", + "resistances\n", + "resistant\n", + "resisted\n", + "resister\n", + "resisters\n", + "resistible\n", + "resisting\n", + "resistless\n", + "resistor\n", + "resistors\n", + "resists\n", + "resize\n", + "resized\n", + "resizes\n", + "resizing\n", + "resmelt\n", + "resmelted\n", + "resmelting\n", + "resmelts\n", + "resmooth\n", + "resmoothed\n", + "resmoothing\n", + "resmooths\n", + "resojet\n", + "resojets\n", + "resold\n", + "resolder\n", + "resoldered\n", + "resoldering\n", + "resolders\n", + "resole\n", + "resoled\n", + "resoles\n", + "resolidified\n", + "resolidifies\n", + "resolidify\n", + "resolidifying\n", + "resoling\n", + "resolute\n", + "resolutely\n", + "resoluteness\n", + "resolutenesses\n", + "resoluter\n", + "resolutes\n", + "resolutest\n", + "resolution\n", + "resolutions\n", + "resolvable\n", + "resolve\n", + "resolved\n", + "resolver\n", + "resolvers\n", + "resolves\n", + "resolving\n", + "resonance\n", + "resonances\n", + "resonant\n", + "resonantly\n", + "resonants\n", + "resonate\n", + "resonated\n", + "resonates\n", + "resonating\n", + "resorb\n", + "resorbed\n", + "resorbing\n", + "resorbs\n", + "resorcin\n", + "resorcins\n", + "resort\n", + "resorted\n", + "resorter\n", + "resorters\n", + "resorting\n", + "resorts\n", + "resought\n", + "resound\n", + "resounded\n", + "resounding\n", + "resoundingly\n", + "resounds\n", + "resource\n", + "resourceful\n", + "resourcefulness\n", + "resourcefulnesses\n", + "resources\n", + "resow\n", + "resowed\n", + "resowing\n", + "resown\n", + "resows\n", + "respect\n", + "respectabilities\n", + "respectability\n", + "respectable\n", + "respectably\n", + "respected\n", + "respecter\n", + "respecters\n", + "respectful\n", + "respectfully\n", + "respectfulness\n", + "respectfulnesses\n", + "respecting\n", + "respective\n", + "respectively\n", + "respects\n", + "respell\n", + "respelled\n", + "respelling\n", + "respells\n", + "respelt\n", + "respiration\n", + "respirations\n", + "respirator\n", + "respiratories\n", + "respirators\n", + "respiratory\n", + "respire\n", + "respired\n", + "respires\n", + "respiring\n", + "respite\n", + "respited\n", + "respites\n", + "respiting\n", + "resplendence\n", + "resplendences\n", + "resplendent\n", + "resplendently\n", + "respond\n", + "responded\n", + "respondent\n", + "respondents\n", + "responder\n", + "responders\n", + "responding\n", + "responds\n", + "responsa\n", + "response\n", + "responses\n", + "responsibilities\n", + "responsibility\n", + "responsible\n", + "responsibleness\n", + "responsiblenesses\n", + "responsiblities\n", + "responsiblity\n", + "responsibly\n", + "responsive\n", + "responsiveness\n", + "responsivenesses\n", + "resprang\n", + "respread\n", + "respreading\n", + "respreads\n", + "respring\n", + "respringing\n", + "resprings\n", + "resprung\n", + "rest\n", + "restack\n", + "restacked\n", + "restacking\n", + "restacks\n", + "restaff\n", + "restaffed\n", + "restaffing\n", + "restaffs\n", + "restage\n", + "restaged\n", + "restages\n", + "restaging\n", + "restamp\n", + "restamped\n", + "restamping\n", + "restamps\n", + "restart\n", + "restartable\n", + "restarted\n", + "restarting\n", + "restarts\n", + "restate\n", + "restated\n", + "restatement\n", + "restatements\n", + "restates\n", + "restating\n", + "restaurant\n", + "restaurants\n", + "rested\n", + "rester\n", + "resters\n", + "restful\n", + "restfuller\n", + "restfullest\n", + "restfully\n", + "restimulate\n", + "restimulated\n", + "restimulates\n", + "restimulating\n", + "resting\n", + "restitution\n", + "restitutions\n", + "restive\n", + "restively\n", + "restiveness\n", + "restivenesses\n", + "restless\n", + "restlessness\n", + "restlessnesses\n", + "restock\n", + "restocked\n", + "restocking\n", + "restocks\n", + "restorable\n", + "restoral\n", + "restorals\n", + "restoration\n", + "restorations\n", + "restorative\n", + "restoratives\n", + "restore\n", + "restored\n", + "restorer\n", + "restorers\n", + "restores\n", + "restoring\n", + "restrain\n", + "restrainable\n", + "restrained\n", + "restrainedly\n", + "restrainer\n", + "restrainers\n", + "restraining\n", + "restrains\n", + "restraint\n", + "restraints\n", + "restricken\n", + "restrict\n", + "restricted\n", + "restricting\n", + "restriction\n", + "restrictions\n", + "restrictive\n", + "restrictively\n", + "restricts\n", + "restrike\n", + "restrikes\n", + "restriking\n", + "restring\n", + "restringing\n", + "restrings\n", + "restrive\n", + "restriven\n", + "restrives\n", + "restriving\n", + "restrove\n", + "restruck\n", + "restructure\n", + "restructured\n", + "restructures\n", + "restructuring\n", + "restrung\n", + "rests\n", + "restudied\n", + "restudies\n", + "restudy\n", + "restudying\n", + "restuff\n", + "restuffed\n", + "restuffing\n", + "restuffs\n", + "restyle\n", + "restyled\n", + "restyles\n", + "restyling\n", + "resubmit\n", + "resubmits\n", + "resubmitted\n", + "resubmitting\n", + "result\n", + "resultant\n", + "resulted\n", + "resulting\n", + "results\n", + "resume\n", + "resumed\n", + "resumer\n", + "resumers\n", + "resumes\n", + "resuming\n", + "resummon\n", + "resummoned\n", + "resummoning\n", + "resummons\n", + "resumption\n", + "resumptions\n", + "resupine\n", + "resupplied\n", + "resupplies\n", + "resupply\n", + "resupplying\n", + "resurface\n", + "resurfaced\n", + "resurfaces\n", + "resurfacing\n", + "resurge\n", + "resurged\n", + "resurgence\n", + "resurgences\n", + "resurgent\n", + "resurges\n", + "resurging\n", + "resurrect\n", + "resurrected\n", + "resurrecting\n", + "resurrection\n", + "resurrections\n", + "resurrects\n", + "resurvey\n", + "resurveyed\n", + "resurveying\n", + "resurveys\n", + "resuscitate\n", + "resuscitated\n", + "resuscitates\n", + "resuscitating\n", + "resuscitation\n", + "resuscitations\n", + "resuscitator\n", + "resuscitators\n", + "resyntheses\n", + "resynthesis\n", + "resynthesize\n", + "resynthesized\n", + "resynthesizes\n", + "resynthesizing\n", + "ret\n", + "retable\n", + "retables\n", + "retail\n", + "retailed\n", + "retailer\n", + "retailers\n", + "retailing\n", + "retailor\n", + "retailored\n", + "retailoring\n", + "retailors\n", + "retails\n", + "retain\n", + "retained\n", + "retainer\n", + "retainers\n", + "retaining\n", + "retains\n", + "retake\n", + "retaken\n", + "retaker\n", + "retakers\n", + "retakes\n", + "retaking\n", + "retaliate\n", + "retaliated\n", + "retaliates\n", + "retaliating\n", + "retaliation\n", + "retaliations\n", + "retaliatory\n", + "retard\n", + "retardation\n", + "retardations\n", + "retarded\n", + "retarder\n", + "retarders\n", + "retarding\n", + "retards\n", + "retaste\n", + "retasted\n", + "retastes\n", + "retasting\n", + "retaught\n", + "retch\n", + "retched\n", + "retches\n", + "retching\n", + "rete\n", + "reteach\n", + "reteaches\n", + "reteaching\n", + "retell\n", + "retelling\n", + "retells\n", + "retem\n", + "retems\n", + "retene\n", + "retenes\n", + "retention\n", + "retentions\n", + "retentive\n", + "retest\n", + "retested\n", + "retesting\n", + "retests\n", + "rethink\n", + "rethinking\n", + "rethinks\n", + "rethought\n", + "rethread\n", + "rethreaded\n", + "rethreading\n", + "rethreads\n", + "retia\n", + "retial\n", + "retiarii\n", + "retiary\n", + "reticence\n", + "reticences\n", + "reticent\n", + "reticently\n", + "reticle\n", + "reticles\n", + "reticula\n", + "reticule\n", + "reticules\n", + "retie\n", + "retied\n", + "reties\n", + "retiform\n", + "retighten\n", + "retightened\n", + "retightening\n", + "retightens\n", + "retime\n", + "retimed\n", + "retimes\n", + "retiming\n", + "retina\n", + "retinae\n", + "retinal\n", + "retinals\n", + "retinas\n", + "retinene\n", + "retinenes\n", + "retinite\n", + "retinites\n", + "retinol\n", + "retinols\n", + "retint\n", + "retinted\n", + "retinting\n", + "retints\n", + "retinue\n", + "retinued\n", + "retinues\n", + "retinula\n", + "retinulae\n", + "retinulas\n", + "retirant\n", + "retirants\n", + "retire\n", + "retired\n", + "retiree\n", + "retirees\n", + "retirement\n", + "retirements\n", + "retirer\n", + "retirers\n", + "retires\n", + "retiring\n", + "retitle\n", + "retitled\n", + "retitles\n", + "retitling\n", + "retold\n", + "retook\n", + "retool\n", + "retooled\n", + "retooling\n", + "retools\n", + "retort\n", + "retorted\n", + "retorter\n", + "retorters\n", + "retorting\n", + "retorts\n", + "retouch\n", + "retouched\n", + "retouches\n", + "retouching\n", + "retrace\n", + "retraced\n", + "retraces\n", + "retracing\n", + "retrack\n", + "retracked\n", + "retracking\n", + "retracks\n", + "retract\n", + "retractable\n", + "retracted\n", + "retracting\n", + "retraction\n", + "retractions\n", + "retracts\n", + "retrain\n", + "retrained\n", + "retraining\n", + "retrains\n", + "retral\n", + "retrally\n", + "retranslate\n", + "retranslated\n", + "retranslates\n", + "retranslating\n", + "retransmit\n", + "retransmited\n", + "retransmiting\n", + "retransmits\n", + "retransplant\n", + "retransplanted\n", + "retransplanting\n", + "retransplants\n", + "retread\n", + "retreaded\n", + "retreading\n", + "retreads\n", + "retreat\n", + "retreated\n", + "retreating\n", + "retreatment\n", + "retreats\n", + "retrench\n", + "retrenched\n", + "retrenches\n", + "retrenching\n", + "retrenchment\n", + "retrenchments\n", + "retrial\n", + "retrials\n", + "retribution\n", + "retributions\n", + "retributive\n", + "retributory\n", + "retried\n", + "retries\n", + "retrievabilities\n", + "retrievability\n", + "retrievable\n", + "retrieval\n", + "retrievals\n", + "retrieve\n", + "retrieved\n", + "retriever\n", + "retrievers\n", + "retrieves\n", + "retrieving\n", + "retrim\n", + "retrimmed\n", + "retrimming\n", + "retrims\n", + "retroact\n", + "retroacted\n", + "retroacting\n", + "retroactive\n", + "retroactively\n", + "retroacts\n", + "retrofit\n", + "retrofits\n", + "retrofitted\n", + "retrofitting\n", + "retrograde\n", + "retrogress\n", + "retrogressed\n", + "retrogresses\n", + "retrogressing\n", + "retrogression\n", + "retrogressions\n", + "retrorse\n", + "retrospect\n", + "retrospection\n", + "retrospections\n", + "retrospective\n", + "retrospectively\n", + "retrospectives\n", + "retry\n", + "retrying\n", + "rets\n", + "retsina\n", + "retsinas\n", + "retted\n", + "retting\n", + "retune\n", + "retuned\n", + "retunes\n", + "retuning\n", + "return\n", + "returnable\n", + "returned\n", + "returnee\n", + "returnees\n", + "returner\n", + "returners\n", + "returning\n", + "returns\n", + "retuse\n", + "retwist\n", + "retwisted\n", + "retwisting\n", + "retwists\n", + "retying\n", + "retype\n", + "retyped\n", + "retypes\n", + "retyping\n", + "reunified\n", + "reunifies\n", + "reunify\n", + "reunifying\n", + "reunion\n", + "reunions\n", + "reunite\n", + "reunited\n", + "reuniter\n", + "reuniters\n", + "reunites\n", + "reuniting\n", + "reupholster\n", + "reupholstered\n", + "reupholstering\n", + "reupholsters\n", + "reusable\n", + "reuse\n", + "reused\n", + "reuses\n", + "reusing\n", + "reutter\n", + "reuttered\n", + "reuttering\n", + "reutters\n", + "rev\n", + "revaccinate\n", + "revaccinated\n", + "revaccinates\n", + "revaccinating\n", + "revaccination\n", + "revaccinations\n", + "revalue\n", + "revalued\n", + "revalues\n", + "revaluing\n", + "revamp\n", + "revamped\n", + "revamper\n", + "revampers\n", + "revamping\n", + "revamps\n", + "revanche\n", + "revanches\n", + "reveal\n", + "revealed\n", + "revealer\n", + "revealers\n", + "revealing\n", + "reveals\n", + "revehent\n", + "reveille\n", + "reveilles\n", + "revel\n", + "revelation\n", + "revelations\n", + "reveled\n", + "reveler\n", + "revelers\n", + "reveling\n", + "revelled\n", + "reveller\n", + "revellers\n", + "revelling\n", + "revelries\n", + "revelry\n", + "revels\n", + "revenant\n", + "revenants\n", + "revenge\n", + "revenged\n", + "revengeful\n", + "revenger\n", + "revengers\n", + "revenges\n", + "revenging\n", + "revenual\n", + "revenue\n", + "revenued\n", + "revenuer\n", + "revenuers\n", + "revenues\n", + "reverb\n", + "reverberate\n", + "reverberated\n", + "reverberates\n", + "reverberating\n", + "reverberation\n", + "reverberations\n", + "reverbs\n", + "revere\n", + "revered\n", + "reverence\n", + "reverences\n", + "reverend\n", + "reverends\n", + "reverent\n", + "reverer\n", + "reverers\n", + "reveres\n", + "reverie\n", + "reveries\n", + "reverified\n", + "reverifies\n", + "reverify\n", + "reverifying\n", + "revering\n", + "revers\n", + "reversal\n", + "reversals\n", + "reverse\n", + "reversed\n", + "reversely\n", + "reverser\n", + "reversers\n", + "reverses\n", + "reversible\n", + "reversing\n", + "reversion\n", + "reverso\n", + "reversos\n", + "revert\n", + "reverted\n", + "reverter\n", + "reverters\n", + "reverting\n", + "reverts\n", + "revery\n", + "revest\n", + "revested\n", + "revesting\n", + "revests\n", + "revet\n", + "revets\n", + "revetted\n", + "revetting\n", + "review\n", + "reviewal\n", + "reviewals\n", + "reviewed\n", + "reviewer\n", + "reviewers\n", + "reviewing\n", + "reviews\n", + "revile\n", + "reviled\n", + "revilement\n", + "revilements\n", + "reviler\n", + "revilers\n", + "reviles\n", + "reviling\n", + "revisable\n", + "revisal\n", + "revisals\n", + "revise\n", + "revised\n", + "reviser\n", + "revisers\n", + "revises\n", + "revising\n", + "revision\n", + "revisions\n", + "revisit\n", + "revisited\n", + "revisiting\n", + "revisits\n", + "revisor\n", + "revisors\n", + "revisory\n", + "revival\n", + "revivals\n", + "revive\n", + "revived\n", + "reviver\n", + "revivers\n", + "revives\n", + "revivified\n", + "revivifies\n", + "revivify\n", + "revivifying\n", + "reviving\n", + "revocation\n", + "revocations\n", + "revoice\n", + "revoiced\n", + "revoices\n", + "revoicing\n", + "revoke\n", + "revoked\n", + "revoker\n", + "revokers\n", + "revokes\n", + "revoking\n", + "revolt\n", + "revolted\n", + "revolter\n", + "revolters\n", + "revolting\n", + "revolts\n", + "revolute\n", + "revolution\n", + "revolutionaries\n", + "revolutionary\n", + "revolutionize\n", + "revolutionized\n", + "revolutionizer\n", + "revolutionizers\n", + "revolutionizes\n", + "revolutionizing\n", + "revolutions\n", + "revolvable\n", + "revolve\n", + "revolved\n", + "revolver\n", + "revolvers\n", + "revolves\n", + "revolving\n", + "revs\n", + "revue\n", + "revues\n", + "revuist\n", + "revuists\n", + "revulsed\n", + "revulsion\n", + "revulsions\n", + "revved\n", + "revving\n", + "rewake\n", + "rewaked\n", + "rewaken\n", + "rewakened\n", + "rewakening\n", + "rewakens\n", + "rewakes\n", + "rewaking\n", + "rewan\n", + "reward\n", + "rewarded\n", + "rewarder\n", + "rewarders\n", + "rewarding\n", + "rewards\n", + "rewarm\n", + "rewarmed\n", + "rewarming\n", + "rewarms\n", + "rewash\n", + "rewashed\n", + "rewashes\n", + "rewashing\n", + "rewax\n", + "rewaxed\n", + "rewaxes\n", + "rewaxing\n", + "reweave\n", + "reweaved\n", + "reweaves\n", + "reweaving\n", + "rewed\n", + "reweigh\n", + "reweighed\n", + "reweighing\n", + "reweighs\n", + "reweld\n", + "rewelded\n", + "rewelding\n", + "rewelds\n", + "rewiden\n", + "rewidened\n", + "rewidening\n", + "rewidens\n", + "rewin\n", + "rewind\n", + "rewinded\n", + "rewinder\n", + "rewinders\n", + "rewinding\n", + "rewinds\n", + "rewinning\n", + "rewins\n", + "rewire\n", + "rewired\n", + "rewires\n", + "rewiring\n", + "rewoke\n", + "rewoken\n", + "rewon\n", + "reword\n", + "reworded\n", + "rewording\n", + "rewords\n", + "rework\n", + "reworked\n", + "reworking\n", + "reworks\n", + "rewound\n", + "rewove\n", + "rewoven\n", + "rewrap\n", + "rewrapped\n", + "rewrapping\n", + "rewraps\n", + "rewrapt\n", + "rewrite\n", + "rewriter\n", + "rewriters\n", + "rewrites\n", + "rewriting\n", + "rewritten\n", + "rewrote\n", + "rewrought\n", + "rex\n", + "rexes\n", + "reynard\n", + "reynards\n", + "rezone\n", + "rezoned\n", + "rezones\n", + "rezoning\n", + "rhabdom\n", + "rhabdome\n", + "rhabdomes\n", + "rhabdoms\n", + "rhachides\n", + "rhachis\n", + "rhachises\n", + "rhamnose\n", + "rhamnoses\n", + "rhamnus\n", + "rhamnuses\n", + "rhaphae\n", + "rhaphe\n", + "rhaphes\n", + "rhapsode\n", + "rhapsodes\n", + "rhapsodic\n", + "rhapsodically\n", + "rhapsodies\n", + "rhapsodize\n", + "rhapsodized\n", + "rhapsodizes\n", + "rhapsodizing\n", + "rhapsody\n", + "rhatanies\n", + "rhatany\n", + "rhea\n", + "rheas\n", + "rhebok\n", + "rheboks\n", + "rhematic\n", + "rhenium\n", + "rheniums\n", + "rheobase\n", + "rheobases\n", + "rheologies\n", + "rheology\n", + "rheophil\n", + "rheostat\n", + "rheostats\n", + "rhesus\n", + "rhesuses\n", + "rhetor\n", + "rhetoric\n", + "rhetorical\n", + "rhetorician\n", + "rhetoricians\n", + "rhetorics\n", + "rhetors\n", + "rheum\n", + "rheumatic\n", + "rheumatism\n", + "rheumatisms\n", + "rheumic\n", + "rheumier\n", + "rheumiest\n", + "rheums\n", + "rheumy\n", + "rhinal\n", + "rhinestone\n", + "rhinestones\n", + "rhinitides\n", + "rhinitis\n", + "rhino\n", + "rhinoceri\n", + "rhinoceros\n", + "rhinoceroses\n", + "rhinos\n", + "rhizobia\n", + "rhizoid\n", + "rhizoids\n", + "rhizoma\n", + "rhizomata\n", + "rhizome\n", + "rhizomes\n", + "rhizomic\n", + "rhizopi\n", + "rhizopod\n", + "rhizopods\n", + "rhizopus\n", + "rhizopuses\n", + "rho\n", + "rhodamin\n", + "rhodamins\n", + "rhodic\n", + "rhodium\n", + "rhodiums\n", + "rhododendron\n", + "rhododendrons\n", + "rhodora\n", + "rhodoras\n", + "rhomb\n", + "rhombi\n", + "rhombic\n", + "rhomboid\n", + "rhomboids\n", + "rhombs\n", + "rhombus\n", + "rhombuses\n", + "rhonchal\n", + "rhonchi\n", + "rhonchus\n", + "rhos\n", + "rhubarb\n", + "rhubarbs\n", + "rhumb\n", + "rhumba\n", + "rhumbaed\n", + "rhumbaing\n", + "rhumbas\n", + "rhumbs\n", + "rhus\n", + "rhuses\n", + "rhyme\n", + "rhymed\n", + "rhymer\n", + "rhymers\n", + "rhymes\n", + "rhyming\n", + "rhyolite\n", + "rhyolites\n", + "rhyta\n", + "rhythm\n", + "rhythmic\n", + "rhythmical\n", + "rhythmically\n", + "rhythmics\n", + "rhythms\n", + "rhyton\n", + "rial\n", + "rials\n", + "rialto\n", + "rialtos\n", + "riant\n", + "riantly\n", + "riata\n", + "riatas\n", + "rib\n", + "ribald\n", + "ribaldly\n", + "ribaldries\n", + "ribaldry\n", + "ribalds\n", + "riband\n", + "ribands\n", + "ribband\n", + "ribbands\n", + "ribbed\n", + "ribber\n", + "ribbers\n", + "ribbier\n", + "ribbiest\n", + "ribbing\n", + "ribbings\n", + "ribbon\n", + "ribboned\n", + "ribboning\n", + "ribbons\n", + "ribbony\n", + "ribby\n", + "ribes\n", + "ribgrass\n", + "ribgrasses\n", + "ribless\n", + "riblet\n", + "riblets\n", + "riblike\n", + "riboflavin\n", + "riboflavins\n", + "ribose\n", + "riboses\n", + "ribosome\n", + "ribosomes\n", + "ribs\n", + "ribwort\n", + "ribworts\n", + "rice\n", + "ricebird\n", + "ricebirds\n", + "riced\n", + "ricer\n", + "ricercar\n", + "ricercars\n", + "ricers\n", + "rices\n", + "rich\n", + "richen\n", + "richened\n", + "richening\n", + "richens\n", + "richer\n", + "riches\n", + "richest\n", + "richly\n", + "richness\n", + "richnesses\n", + "richweed\n", + "richweeds\n", + "ricin\n", + "ricing\n", + "ricins\n", + "ricinus\n", + "ricinuses\n", + "rick\n", + "ricked\n", + "ricketier\n", + "ricketiest\n", + "rickets\n", + "rickety\n", + "rickey\n", + "rickeys\n", + "ricking\n", + "rickrack\n", + "rickracks\n", + "ricks\n", + "ricksha\n", + "rickshas\n", + "rickshaw\n", + "rickshaws\n", + "ricochet\n", + "ricocheted\n", + "ricocheting\n", + "ricochets\n", + "ricochetted\n", + "ricochetting\n", + "ricotta\n", + "ricottas\n", + "ricrac\n", + "ricracs\n", + "rictal\n", + "rictus\n", + "rictuses\n", + "rid\n", + "ridable\n", + "riddance\n", + "riddances\n", + "ridded\n", + "ridden\n", + "ridder\n", + "ridders\n", + "ridding\n", + "riddle\n", + "riddled\n", + "riddler\n", + "riddlers\n", + "riddles\n", + "riddling\n", + "ride\n", + "rideable\n", + "rident\n", + "rider\n", + "riderless\n", + "riders\n", + "rides\n", + "ridge\n", + "ridged\n", + "ridgel\n", + "ridgels\n", + "ridges\n", + "ridgier\n", + "ridgiest\n", + "ridgil\n", + "ridgils\n", + "ridging\n", + "ridgling\n", + "ridglings\n", + "ridgy\n", + "ridicule\n", + "ridiculed\n", + "ridicules\n", + "ridiculing\n", + "ridiculous\n", + "ridiculously\n", + "ridiculousness\n", + "ridiculousnesses\n", + "riding\n", + "ridings\n", + "ridley\n", + "ridleys\n", + "ridotto\n", + "ridottos\n", + "rids\n", + "riel\n", + "riels\n", + "riever\n", + "rievers\n", + "rife\n", + "rifely\n", + "rifeness\n", + "rifenesses\n", + "rifer\n", + "rifest\n", + "riff\n", + "riffed\n", + "riffing\n", + "riffle\n", + "riffled\n", + "riffler\n", + "rifflers\n", + "riffles\n", + "riffling\n", + "riffraff\n", + "riffraffs\n", + "riffs\n", + "rifle\n", + "rifled\n", + "rifleman\n", + "riflemen\n", + "rifler\n", + "rifleries\n", + "riflers\n", + "riflery\n", + "rifles\n", + "rifling\n", + "riflings\n", + "rift\n", + "rifted\n", + "rifting\n", + "riftless\n", + "rifts\n", + "rig\n", + "rigadoon\n", + "rigadoons\n", + "rigatoni\n", + "rigatonis\n", + "rigaudon\n", + "rigaudons\n", + "rigged\n", + "rigger\n", + "riggers\n", + "rigging\n", + "riggings\n", + "right\n", + "righted\n", + "righteous\n", + "righteously\n", + "righteousness\n", + "righteousnesses\n", + "righter\n", + "righters\n", + "rightest\n", + "rightful\n", + "rightfully\n", + "rightfulness\n", + "rightfulnesses\n", + "righties\n", + "righting\n", + "rightism\n", + "rightisms\n", + "rightist\n", + "rightists\n", + "rightly\n", + "rightness\n", + "rightnesses\n", + "righto\n", + "rights\n", + "rightward\n", + "righty\n", + "rigid\n", + "rigidified\n", + "rigidifies\n", + "rigidify\n", + "rigidifying\n", + "rigidities\n", + "rigidity\n", + "rigidly\n", + "rigmarole\n", + "rigmaroles\n", + "rigor\n", + "rigorism\n", + "rigorisms\n", + "rigorist\n", + "rigorists\n", + "rigorous\n", + "rigorously\n", + "rigors\n", + "rigour\n", + "rigours\n", + "rigs\n", + "rikisha\n", + "rikishas\n", + "rikshaw\n", + "rikshaws\n", + "rile\n", + "riled\n", + "riles\n", + "riley\n", + "rilievi\n", + "rilievo\n", + "riling\n", + "rill\n", + "rille\n", + "rilled\n", + "rilles\n", + "rillet\n", + "rillets\n", + "rilling\n", + "rills\n", + "rilly\n", + "rim\n", + "rime\n", + "rimed\n", + "rimer\n", + "rimers\n", + "rimes\n", + "rimester\n", + "rimesters\n", + "rimfire\n", + "rimier\n", + "rimiest\n", + "riming\n", + "rimland\n", + "rimlands\n", + "rimless\n", + "rimmed\n", + "rimmer\n", + "rimmers\n", + "rimming\n", + "rimose\n", + "rimosely\n", + "rimosities\n", + "rimosity\n", + "rimous\n", + "rimple\n", + "rimpled\n", + "rimples\n", + "rimpling\n", + "rimrock\n", + "rimrocks\n", + "rims\n", + "rimy\n", + "rin\n", + "rind\n", + "rinded\n", + "rinds\n", + "ring\n", + "ringbark\n", + "ringbarked\n", + "ringbarking\n", + "ringbarks\n", + "ringbolt\n", + "ringbolts\n", + "ringbone\n", + "ringbones\n", + "ringdove\n", + "ringdoves\n", + "ringed\n", + "ringent\n", + "ringer\n", + "ringers\n", + "ringhals\n", + "ringhalses\n", + "ringing\n", + "ringleader\n", + "ringlet\n", + "ringlets\n", + "ringlike\n", + "ringneck\n", + "ringnecks\n", + "rings\n", + "ringside\n", + "ringsides\n", + "ringtail\n", + "ringtails\n", + "ringtaw\n", + "ringtaws\n", + "ringtoss\n", + "ringtosses\n", + "ringworm\n", + "ringworms\n", + "rink\n", + "rinks\n", + "rinning\n", + "rins\n", + "rinsable\n", + "rinse\n", + "rinsed\n", + "rinser\n", + "rinsers\n", + "rinses\n", + "rinsible\n", + "rinsing\n", + "rinsings\n", + "riot\n", + "rioted\n", + "rioter\n", + "rioters\n", + "rioting\n", + "riotous\n", + "riots\n", + "rip\n", + "riparian\n", + "ripcord\n", + "ripcords\n", + "ripe\n", + "riped\n", + "ripely\n", + "ripen\n", + "ripened\n", + "ripener\n", + "ripeners\n", + "ripeness\n", + "ripenesses\n", + "ripening\n", + "ripens\n", + "riper\n", + "ripes\n", + "ripest\n", + "ripieni\n", + "ripieno\n", + "ripienos\n", + "riping\n", + "ripost\n", + "riposte\n", + "riposted\n", + "ripostes\n", + "riposting\n", + "riposts\n", + "rippable\n", + "ripped\n", + "ripper\n", + "rippers\n", + "ripping\n", + "ripple\n", + "rippled\n", + "rippler\n", + "ripplers\n", + "ripples\n", + "ripplet\n", + "ripplets\n", + "ripplier\n", + "rippliest\n", + "rippling\n", + "ripply\n", + "riprap\n", + "riprapped\n", + "riprapping\n", + "ripraps\n", + "rips\n", + "ripsaw\n", + "ripsaws\n", + "riptide\n", + "riptides\n", + "rise\n", + "risen\n", + "riser\n", + "risers\n", + "rises\n", + "rishi\n", + "rishis\n", + "risibilities\n", + "risibility\n", + "risible\n", + "risibles\n", + "risibly\n", + "rising\n", + "risings\n", + "risk\n", + "risked\n", + "risker\n", + "riskers\n", + "riskier\n", + "riskiest\n", + "riskily\n", + "riskiness\n", + "riskinesses\n", + "risking\n", + "risks\n", + "risky\n", + "risotto\n", + "risottos\n", + "risque\n", + "rissole\n", + "rissoles\n", + "risus\n", + "risuses\n", + "ritard\n", + "ritards\n", + "rite\n", + "rites\n", + "ritter\n", + "ritters\n", + "ritual\n", + "ritualism\n", + "ritualisms\n", + "ritualistic\n", + "ritualistically\n", + "ritually\n", + "rituals\n", + "ritz\n", + "ritzes\n", + "ritzier\n", + "ritziest\n", + "ritzily\n", + "ritzy\n", + "rivage\n", + "rivages\n", + "rival\n", + "rivaled\n", + "rivaling\n", + "rivalled\n", + "rivalling\n", + "rivalries\n", + "rivalry\n", + "rivals\n", + "rive\n", + "rived\n", + "riven\n", + "river\n", + "riverbank\n", + "riverbanks\n", + "riverbed\n", + "riverbeds\n", + "riverboat\n", + "riverboats\n", + "riverine\n", + "rivers\n", + "riverside\n", + "riversides\n", + "rives\n", + "rivet\n", + "riveted\n", + "riveter\n", + "riveters\n", + "riveting\n", + "rivets\n", + "rivetted\n", + "rivetting\n", + "riviera\n", + "rivieras\n", + "riviere\n", + "rivieres\n", + "riving\n", + "rivulet\n", + "rivulets\n", + "riyal\n", + "riyals\n", + "roach\n", + "roached\n", + "roaches\n", + "roaching\n", + "road\n", + "roadbed\n", + "roadbeds\n", + "roadblock\n", + "roadblocks\n", + "roadless\n", + "roadrunner\n", + "roadrunners\n", + "roads\n", + "roadside\n", + "roadsides\n", + "roadster\n", + "roadsters\n", + "roadway\n", + "roadways\n", + "roadwork\n", + "roadworks\n", + "roam\n", + "roamed\n", + "roamer\n", + "roamers\n", + "roaming\n", + "roams\n", + "roan\n", + "roans\n", + "roar\n", + "roared\n", + "roarer\n", + "roarers\n", + "roaring\n", + "roarings\n", + "roars\n", + "roast\n", + "roasted\n", + "roaster\n", + "roasters\n", + "roasting\n", + "roasts\n", + "rob\n", + "robalo\n", + "robalos\n", + "roband\n", + "robands\n", + "robbed\n", + "robber\n", + "robberies\n", + "robbers\n", + "robbery\n", + "robbin\n", + "robbing\n", + "robbins\n", + "robe\n", + "robed\n", + "robes\n", + "robin\n", + "robing\n", + "robins\n", + "roble\n", + "robles\n", + "roborant\n", + "roborants\n", + "robot\n", + "robotics\n", + "robotism\n", + "robotisms\n", + "robotize\n", + "robotized\n", + "robotizes\n", + "robotizing\n", + "robotries\n", + "robotry\n", + "robots\n", + "robs\n", + "robust\n", + "robuster\n", + "robustest\n", + "robustly\n", + "robustness\n", + "robustnesses\n", + "roc\n", + "rochet\n", + "rochets\n", + "rock\n", + "rockabies\n", + "rockaby\n", + "rockabye\n", + "rockabyes\n", + "rockaway\n", + "rockaways\n", + "rocked\n", + "rocker\n", + "rockeries\n", + "rockers\n", + "rockery\n", + "rocket\n", + "rocketed\n", + "rocketer\n", + "rocketers\n", + "rocketing\n", + "rocketries\n", + "rocketry\n", + "rockets\n", + "rockfall\n", + "rockfalls\n", + "rockfish\n", + "rockfishes\n", + "rockier\n", + "rockiest\n", + "rocking\n", + "rockless\n", + "rocklike\n", + "rockling\n", + "rocklings\n", + "rockoon\n", + "rockoons\n", + "rockrose\n", + "rockroses\n", + "rocks\n", + "rockweed\n", + "rockweeds\n", + "rockwork\n", + "rockworks\n", + "rocky\n", + "rococo\n", + "rococos\n", + "rocs\n", + "rod\n", + "rodded\n", + "rodding\n", + "rode\n", + "rodent\n", + "rodents\n", + "rodeo\n", + "rodeos\n", + "rodless\n", + "rodlike\n", + "rodman\n", + "rodmen\n", + "rods\n", + "rodsman\n", + "rodsmen\n", + "roe\n", + "roebuck\n", + "roebucks\n", + "roentgen\n", + "roentgens\n", + "roes\n", + "rogation\n", + "rogations\n", + "rogatory\n", + "roger\n", + "rogers\n", + "rogue\n", + "rogued\n", + "rogueing\n", + "rogueries\n", + "roguery\n", + "rogues\n", + "roguing\n", + "roguish\n", + "roguishly\n", + "roguishness\n", + "roguishnesses\n", + "roil\n", + "roiled\n", + "roilier\n", + "roiliest\n", + "roiling\n", + "roils\n", + "roily\n", + "roister\n", + "roistered\n", + "roistering\n", + "roisters\n", + "rolamite\n", + "rolamites\n", + "role\n", + "roles\n", + "roll\n", + "rollaway\n", + "rollback\n", + "rollbacks\n", + "rolled\n", + "roller\n", + "rollers\n", + "rollick\n", + "rollicked\n", + "rollicking\n", + "rollicks\n", + "rollicky\n", + "rolling\n", + "rollings\n", + "rollmop\n", + "rollmops\n", + "rollout\n", + "rollouts\n", + "rollover\n", + "rollovers\n", + "rolls\n", + "rolltop\n", + "rollway\n", + "rollways\n", + "romaine\n", + "romaines\n", + "roman\n", + "romance\n", + "romanced\n", + "romancer\n", + "romancers\n", + "romances\n", + "romancing\n", + "romanize\n", + "romanized\n", + "romanizes\n", + "romanizing\n", + "romano\n", + "romanos\n", + "romans\n", + "romantic\n", + "romantically\n", + "romantics\n", + "romaunt\n", + "romaunts\n", + "romp\n", + "romped\n", + "romper\n", + "rompers\n", + "romping\n", + "rompish\n", + "romps\n", + "rondeau\n", + "rondeaux\n", + "rondel\n", + "rondelet\n", + "rondelets\n", + "rondelle\n", + "rondelles\n", + "rondels\n", + "rondo\n", + "rondos\n", + "rondure\n", + "rondures\n", + "ronion\n", + "ronions\n", + "ronnel\n", + "ronnels\n", + "rontgen\n", + "rontgens\n", + "ronyon\n", + "ronyons\n", + "rood\n", + "roods\n", + "roof\n", + "roofed\n", + "roofer\n", + "roofers\n", + "roofing\n", + "roofings\n", + "roofless\n", + "rooflike\n", + "roofline\n", + "rooflines\n", + "roofs\n", + "rooftop\n", + "rooftops\n", + "rooftree\n", + "rooftrees\n", + "rook\n", + "rooked\n", + "rookeries\n", + "rookery\n", + "rookie\n", + "rookier\n", + "rookies\n", + "rookiest\n", + "rooking\n", + "rooks\n", + "rooky\n", + "room\n", + "roomed\n", + "roomer\n", + "roomers\n", + "roomette\n", + "roomettes\n", + "roomful\n", + "roomfuls\n", + "roomier\n", + "roomiest\n", + "roomily\n", + "rooming\n", + "roommate\n", + "roommates\n", + "rooms\n", + "roomy\n", + "roorback\n", + "roorbacks\n", + "roose\n", + "roosed\n", + "rooser\n", + "roosers\n", + "rooses\n", + "roosing\n", + "roost\n", + "roosted\n", + "rooster\n", + "roosters\n", + "roosting\n", + "roosts\n", + "root\n", + "rootage\n", + "rootages\n", + "rooted\n", + "rooter\n", + "rooters\n", + "roothold\n", + "rootholds\n", + "rootier\n", + "rootiest\n", + "rooting\n", + "rootless\n", + "rootlet\n", + "rootlets\n", + "rootlike\n", + "roots\n", + "rooty\n", + "ropable\n", + "rope\n", + "roped\n", + "roper\n", + "roperies\n", + "ropers\n", + "ropery\n", + "ropes\n", + "ropewalk\n", + "ropewalks\n", + "ropeway\n", + "ropeways\n", + "ropier\n", + "ropiest\n", + "ropily\n", + "ropiness\n", + "ropinesses\n", + "roping\n", + "ropy\n", + "roque\n", + "roques\n", + "roquet\n", + "roqueted\n", + "roqueting\n", + "roquets\n", + "rorqual\n", + "rorquals\n", + "rosaria\n", + "rosarian\n", + "rosarians\n", + "rosaries\n", + "rosarium\n", + "rosariums\n", + "rosary\n", + "roscoe\n", + "roscoes\n", + "rose\n", + "roseate\n", + "rosebay\n", + "rosebays\n", + "rosebud\n", + "rosebuds\n", + "rosebush\n", + "rosebushes\n", + "rosed\n", + "rosefish\n", + "rosefishes\n", + "roselike\n", + "roselle\n", + "roselles\n", + "rosemaries\n", + "rosemary\n", + "roseola\n", + "roseolar\n", + "roseolas\n", + "roser\n", + "roseries\n", + "roseroot\n", + "roseroots\n", + "rosery\n", + "roses\n", + "roset\n", + "rosets\n", + "rosette\n", + "rosettes\n", + "rosewater\n", + "rosewood\n", + "rosewoods\n", + "rosier\n", + "rosiest\n", + "rosily\n", + "rosin\n", + "rosined\n", + "rosiness\n", + "rosinesses\n", + "rosing\n", + "rosining\n", + "rosinous\n", + "rosins\n", + "rosiny\n", + "roslindale\n", + "rosolio\n", + "rosolios\n", + "rostella\n", + "roster\n", + "rosters\n", + "rostra\n", + "rostral\n", + "rostrate\n", + "rostrum\n", + "rostrums\n", + "rosulate\n", + "rosy\n", + "rot\n", + "rota\n", + "rotaries\n", + "rotary\n", + "rotas\n", + "rotate\n", + "rotated\n", + "rotates\n", + "rotating\n", + "rotation\n", + "rotations\n", + "rotative\n", + "rotator\n", + "rotatores\n", + "rotators\n", + "rotatory\n", + "rotch\n", + "rotche\n", + "rotches\n", + "rote\n", + "rotenone\n", + "rotenones\n", + "rotes\n", + "rotgut\n", + "rotguts\n", + "rotifer\n", + "rotifers\n", + "rotiform\n", + "rotl\n", + "rotls\n", + "roto\n", + "rotor\n", + "rotors\n", + "rotos\n", + "rototill\n", + "rototilled\n", + "rototilling\n", + "rototills\n", + "rots\n", + "rotted\n", + "rotten\n", + "rottener\n", + "rottenest\n", + "rottenly\n", + "rottenness\n", + "rottennesses\n", + "rotter\n", + "rotters\n", + "rotting\n", + "rotund\n", + "rotunda\n", + "rotundas\n", + "rotundly\n", + "roturier\n", + "roturiers\n", + "rouble\n", + "roubles\n", + "rouche\n", + "rouches\n", + "roue\n", + "rouen\n", + "rouens\n", + "roues\n", + "rouge\n", + "rouged\n", + "rouges\n", + "rough\n", + "roughage\n", + "roughages\n", + "roughdried\n", + "roughdries\n", + "roughdry\n", + "roughdrying\n", + "roughed\n", + "roughen\n", + "roughened\n", + "roughening\n", + "roughens\n", + "rougher\n", + "roughers\n", + "roughest\n", + "roughhew\n", + "roughhewed\n", + "roughhewing\n", + "roughhewn\n", + "roughhews\n", + "roughing\n", + "roughish\n", + "roughleg\n", + "roughlegs\n", + "roughly\n", + "roughneck\n", + "roughnecks\n", + "roughness\n", + "roughnesses\n", + "roughs\n", + "rouging\n", + "roulade\n", + "roulades\n", + "rouleau\n", + "rouleaus\n", + "rouleaux\n", + "roulette\n", + "rouletted\n", + "roulettes\n", + "rouletting\n", + "round\n", + "roundabout\n", + "rounded\n", + "roundel\n", + "roundels\n", + "rounder\n", + "rounders\n", + "roundest\n", + "rounding\n", + "roundish\n", + "roundlet\n", + "roundlets\n", + "roundly\n", + "roundness\n", + "roundnesses\n", + "rounds\n", + "roundup\n", + "roundups\n", + "roup\n", + "rouped\n", + "roupet\n", + "roupier\n", + "roupiest\n", + "roupily\n", + "rouping\n", + "roups\n", + "roupy\n", + "rouse\n", + "roused\n", + "rouser\n", + "rousers\n", + "rouses\n", + "rousing\n", + "rousseau\n", + "rousseaus\n", + "roust\n", + "rousted\n", + "rouster\n", + "rousters\n", + "rousting\n", + "rousts\n", + "rout\n", + "route\n", + "routed\n", + "routeman\n", + "routemen\n", + "router\n", + "routers\n", + "routes\n", + "routeway\n", + "routeways\n", + "routh\n", + "rouths\n", + "routine\n", + "routinely\n", + "routines\n", + "routing\n", + "routs\n", + "roux\n", + "rove\n", + "roved\n", + "roven\n", + "rover\n", + "rovers\n", + "roves\n", + "roving\n", + "rovingly\n", + "rovings\n", + "row\n", + "rowable\n", + "rowan\n", + "rowans\n", + "rowboat\n", + "rowboats\n", + "rowdier\n", + "rowdies\n", + "rowdiest\n", + "rowdily\n", + "rowdiness\n", + "rowdinesses\n", + "rowdy\n", + "rowdyish\n", + "rowdyism\n", + "rowdyisms\n", + "rowed\n", + "rowel\n", + "roweled\n", + "roweling\n", + "rowelled\n", + "rowelling\n", + "rowels\n", + "rowen\n", + "rowens\n", + "rower\n", + "rowers\n", + "rowing\n", + "rowings\n", + "rowlock\n", + "rowlocks\n", + "rows\n", + "rowth\n", + "rowths\n", + "royal\n", + "royalism\n", + "royalisms\n", + "royalist\n", + "royalists\n", + "royally\n", + "royals\n", + "royalties\n", + "royalty\n", + "royster\n", + "roystered\n", + "roystering\n", + "roysters\n", + "rozzer\n", + "rozzers\n", + "rub\n", + "rubaboo\n", + "rubaboos\n", + "rubace\n", + "rubaces\n", + "rubaiyat\n", + "rubasse\n", + "rubasses\n", + "rubato\n", + "rubatos\n", + "rubbaboo\n", + "rubbaboos\n", + "rubbed\n", + "rubber\n", + "rubberize\n", + "rubberized\n", + "rubberizes\n", + "rubberizing\n", + "rubbers\n", + "rubbery\n", + "rubbing\n", + "rubbings\n", + "rubbish\n", + "rubbishes\n", + "rubbishy\n", + "rubble\n", + "rubbled\n", + "rubbles\n", + "rubblier\n", + "rubbliest\n", + "rubbling\n", + "rubbly\n", + "rubdown\n", + "rubdowns\n", + "rube\n", + "rubella\n", + "rubellas\n", + "rubeola\n", + "rubeolar\n", + "rubeolas\n", + "rubes\n", + "rubicund\n", + "rubidic\n", + "rubidium\n", + "rubidiums\n", + "rubied\n", + "rubier\n", + "rubies\n", + "rubiest\n", + "rubigo\n", + "rubigos\n", + "ruble\n", + "rubles\n", + "rubric\n", + "rubrical\n", + "rubrics\n", + "rubs\n", + "rubus\n", + "ruby\n", + "rubying\n", + "rubylike\n", + "ruche\n", + "ruches\n", + "ruching\n", + "ruchings\n", + "ruck\n", + "rucked\n", + "rucking\n", + "rucks\n", + "rucksack\n", + "rucksacks\n", + "ruckus\n", + "ruckuses\n", + "ruction\n", + "ructions\n", + "ructious\n", + "rudd\n", + "rudder\n", + "rudders\n", + "ruddier\n", + "ruddiest\n", + "ruddily\n", + "ruddiness\n", + "ruddinesses\n", + "ruddle\n", + "ruddled\n", + "ruddles\n", + "ruddling\n", + "ruddock\n", + "ruddocks\n", + "rudds\n", + "ruddy\n", + "rude\n", + "rudely\n", + "rudeness\n", + "rudenesses\n", + "ruder\n", + "ruderal\n", + "ruderals\n", + "rudesbies\n", + "rudesby\n", + "rudest\n", + "rudiment\n", + "rudimentary\n", + "rudiments\n", + "rue\n", + "rued\n", + "rueful\n", + "ruefully\n", + "ruefulness\n", + "ruefulnesses\n", + "ruer\n", + "ruers\n", + "rues\n", + "ruff\n", + "ruffe\n", + "ruffed\n", + "ruffes\n", + "ruffian\n", + "ruffians\n", + "ruffing\n", + "ruffle\n", + "ruffled\n", + "ruffler\n", + "rufflers\n", + "ruffles\n", + "rufflike\n", + "ruffling\n", + "ruffly\n", + "ruffs\n", + "rufous\n", + "rug\n", + "ruga\n", + "rugae\n", + "rugal\n", + "rugate\n", + "rugbies\n", + "rugby\n", + "rugged\n", + "ruggeder\n", + "ruggedest\n", + "ruggedly\n", + "ruggedness\n", + "ruggednesses\n", + "rugger\n", + "ruggers\n", + "rugging\n", + "ruglike\n", + "rugose\n", + "rugosely\n", + "rugosities\n", + "rugosity\n", + "rugous\n", + "rugs\n", + "rugulose\n", + "ruin\n", + "ruinable\n", + "ruinate\n", + "ruinated\n", + "ruinates\n", + "ruinating\n", + "ruined\n", + "ruiner\n", + "ruiners\n", + "ruing\n", + "ruining\n", + "ruinous\n", + "ruinously\n", + "ruins\n", + "rulable\n", + "rule\n", + "ruled\n", + "ruleless\n", + "ruler\n", + "rulers\n", + "rules\n", + "ruling\n", + "rulings\n", + "rum\n", + "rumba\n", + "rumbaed\n", + "rumbaing\n", + "rumbas\n", + "rumble\n", + "rumbled\n", + "rumbler\n", + "rumblers\n", + "rumbles\n", + "rumbling\n", + "rumblings\n", + "rumbly\n", + "rumen\n", + "rumens\n", + "rumina\n", + "ruminal\n", + "ruminant\n", + "ruminants\n", + "ruminate\n", + "ruminated\n", + "ruminates\n", + "ruminating\n", + "rummage\n", + "rummaged\n", + "rummager\n", + "rummagers\n", + "rummages\n", + "rummaging\n", + "rummer\n", + "rummers\n", + "rummest\n", + "rummier\n", + "rummies\n", + "rummiest\n", + "rummy\n", + "rumor\n", + "rumored\n", + "rumoring\n", + "rumors\n", + "rumour\n", + "rumoured\n", + "rumouring\n", + "rumours\n", + "rump\n", + "rumple\n", + "rumpled\n", + "rumples\n", + "rumpless\n", + "rumplier\n", + "rumpliest\n", + "rumpling\n", + "rumply\n", + "rumps\n", + "rumpus\n", + "rumpuses\n", + "rums\n", + "run\n", + "runabout\n", + "runabouts\n", + "runagate\n", + "runagates\n", + "runaround\n", + "runarounds\n", + "runaway\n", + "runaways\n", + "runback\n", + "runbacks\n", + "rundle\n", + "rundles\n", + "rundlet\n", + "rundlets\n", + "rundown\n", + "rundowns\n", + "rune\n", + "runelike\n", + "runes\n", + "rung\n", + "rungless\n", + "rungs\n", + "runic\n", + "runkle\n", + "runkled\n", + "runkles\n", + "runkling\n", + "runless\n", + "runlet\n", + "runlets\n", + "runnel\n", + "runnels\n", + "runner\n", + "runners\n", + "runnier\n", + "runniest\n", + "running\n", + "runnings\n", + "runny\n", + "runoff\n", + "runoffs\n", + "runout\n", + "runouts\n", + "runover\n", + "runovers\n", + "runround\n", + "runrounds\n", + "runs\n", + "runt\n", + "runtier\n", + "runtiest\n", + "runtish\n", + "runts\n", + "runty\n", + "runway\n", + "runways\n", + "rupee\n", + "rupees\n", + "rupiah\n", + "rupiahs\n", + "rupture\n", + "ruptured\n", + "ruptures\n", + "rupturing\n", + "rural\n", + "ruralise\n", + "ruralised\n", + "ruralises\n", + "ruralising\n", + "ruralism\n", + "ruralisms\n", + "ruralist\n", + "ruralists\n", + "ruralite\n", + "ruralites\n", + "ruralities\n", + "rurality\n", + "ruralize\n", + "ruralized\n", + "ruralizes\n", + "ruralizing\n", + "rurally\n", + "rurban\n", + "ruse\n", + "ruses\n", + "rush\n", + "rushed\n", + "rushee\n", + "rushees\n", + "rusher\n", + "rushers\n", + "rushes\n", + "rushier\n", + "rushiest\n", + "rushing\n", + "rushings\n", + "rushlike\n", + "rushy\n", + "rusine\n", + "rusk\n", + "rusks\n", + "russet\n", + "russets\n", + "russety\n", + "russified\n", + "russifies\n", + "russify\n", + "russifying\n", + "rust\n", + "rustable\n", + "rusted\n", + "rustic\n", + "rustical\n", + "rustically\n", + "rusticities\n", + "rusticity\n", + "rusticly\n", + "rustics\n", + "rustier\n", + "rustiest\n", + "rustily\n", + "rusting\n", + "rustle\n", + "rustled\n", + "rustler\n", + "rustlers\n", + "rustles\n", + "rustless\n", + "rustling\n", + "rusts\n", + "rusty\n", + "rut\n", + "rutabaga\n", + "rutabagas\n", + "ruth\n", + "ruthenic\n", + "ruthful\n", + "ruthless\n", + "ruthlessly\n", + "ruthlessness\n", + "ruthlessnesses\n", + "ruths\n", + "rutilant\n", + "rutile\n", + "rutiles\n", + "ruts\n", + "rutted\n", + "ruttier\n", + "ruttiest\n", + "ruttily\n", + "rutting\n", + "ruttish\n", + "rutty\n", + "rya\n", + "ryas\n", + "rye\n", + "ryegrass\n", + "ryegrasses\n", + "ryes\n", + "ryke\n", + "ryked\n", + "rykes\n", + "ryking\n", + "rynd\n", + "rynds\n", + "ryot\n", + "ryots\n", + "sab\n", + "sabaton\n", + "sabatons\n", + "sabbat\n", + "sabbath\n", + "sabbaths\n", + "sabbatic\n", + "sabbats\n", + "sabbed\n", + "sabbing\n", + "sabe\n", + "sabed\n", + "sabeing\n", + "saber\n", + "sabered\n", + "sabering\n", + "sabers\n", + "sabes\n", + "sabin\n", + "sabine\n", + "sabines\n", + "sabins\n", + "sabir\n", + "sabirs\n", + "sable\n", + "sables\n", + "sabot\n", + "sabotage\n", + "sabotaged\n", + "sabotages\n", + "sabotaging\n", + "saboteur\n", + "saboteurs\n", + "sabots\n", + "sabra\n", + "sabras\n", + "sabre\n", + "sabred\n", + "sabres\n", + "sabring\n", + "sabs\n", + "sabulose\n", + "sabulous\n", + "sac\n", + "sacaton\n", + "sacatons\n", + "sacbut\n", + "sacbuts\n", + "saccade\n", + "saccades\n", + "saccadic\n", + "saccate\n", + "saccharin\n", + "saccharine\n", + "saccharins\n", + "saccular\n", + "saccule\n", + "saccules\n", + "sacculi\n", + "sacculus\n", + "sachem\n", + "sachemic\n", + "sachems\n", + "sachet\n", + "sacheted\n", + "sachets\n", + "sack\n", + "sackbut\n", + "sackbuts\n", + "sackcloth\n", + "sackcloths\n", + "sacked\n", + "sacker\n", + "sackers\n", + "sackful\n", + "sackfuls\n", + "sacking\n", + "sackings\n", + "sacklike\n", + "sacks\n", + "sacksful\n", + "saclike\n", + "sacque\n", + "sacques\n", + "sacra\n", + "sacral\n", + "sacrals\n", + "sacrament\n", + "sacramental\n", + "sacraments\n", + "sacraria\n", + "sacred\n", + "sacredly\n", + "sacrifice\n", + "sacrificed\n", + "sacrifices\n", + "sacrificial\n", + "sacrificially\n", + "sacrificing\n", + "sacrilege\n", + "sacrileges\n", + "sacrilegious\n", + "sacrilegiously\n", + "sacrist\n", + "sacristies\n", + "sacrists\n", + "sacristy\n", + "sacrosanct\n", + "sacrum\n", + "sacs\n", + "sad\n", + "sadden\n", + "saddened\n", + "saddening\n", + "saddens\n", + "sadder\n", + "saddest\n", + "saddhu\n", + "saddhus\n", + "saddle\n", + "saddled\n", + "saddler\n", + "saddleries\n", + "saddlers\n", + "saddlery\n", + "saddles\n", + "saddling\n", + "sade\n", + "sades\n", + "sadhe\n", + "sadhes\n", + "sadhu\n", + "sadhus\n", + "sadi\n", + "sadiron\n", + "sadirons\n", + "sadis\n", + "sadism\n", + "sadisms\n", + "sadist\n", + "sadistic\n", + "sadistically\n", + "sadists\n", + "sadly\n", + "sadness\n", + "sadnesses\n", + "sae\n", + "safari\n", + "safaried\n", + "safariing\n", + "safaris\n", + "safe\n", + "safeguard\n", + "safeguarded\n", + "safeguarding\n", + "safeguards\n", + "safekeeping\n", + "safekeepings\n", + "safely\n", + "safeness\n", + "safenesses\n", + "safer\n", + "safes\n", + "safest\n", + "safetied\n", + "safeties\n", + "safety\n", + "safetying\n", + "safflower\n", + "safflowers\n", + "saffron\n", + "saffrons\n", + "safranin\n", + "safranins\n", + "safrol\n", + "safrole\n", + "safroles\n", + "safrols\n", + "sag\n", + "saga\n", + "sagacious\n", + "sagacities\n", + "sagacity\n", + "sagaman\n", + "sagamen\n", + "sagamore\n", + "sagamores\n", + "saganash\n", + "saganashes\n", + "sagas\n", + "sagbut\n", + "sagbuts\n", + "sage\n", + "sagebrush\n", + "sagebrushes\n", + "sagely\n", + "sageness\n", + "sagenesses\n", + "sager\n", + "sages\n", + "sagest\n", + "saggar\n", + "saggard\n", + "saggards\n", + "saggared\n", + "saggaring\n", + "saggars\n", + "sagged\n", + "sagger\n", + "saggered\n", + "saggering\n", + "saggers\n", + "sagging\n", + "sagier\n", + "sagiest\n", + "sagittal\n", + "sago\n", + "sagos\n", + "sags\n", + "saguaro\n", + "saguaros\n", + "sagum\n", + "sagy\n", + "sahib\n", + "sahibs\n", + "sahiwal\n", + "sahiwals\n", + "sahuaro\n", + "sahuaros\n", + "saice\n", + "saices\n", + "said\n", + "saids\n", + "saiga\n", + "saigas\n", + "sail\n", + "sailable\n", + "sailboat\n", + "sailboats\n", + "sailed\n", + "sailer\n", + "sailers\n", + "sailfish\n", + "sailfishes\n", + "sailing\n", + "sailings\n", + "sailor\n", + "sailorly\n", + "sailors\n", + "sails\n", + "sain\n", + "sained\n", + "sainfoin\n", + "sainfoins\n", + "saining\n", + "sains\n", + "saint\n", + "saintdom\n", + "saintdoms\n", + "sainted\n", + "sainthood\n", + "sainthoods\n", + "sainting\n", + "saintlier\n", + "saintliest\n", + "saintliness\n", + "saintlinesses\n", + "saintly\n", + "saints\n", + "saith\n", + "saithe\n", + "saiyid\n", + "saiyids\n", + "sajou\n", + "sajous\n", + "sake\n", + "saker\n", + "sakers\n", + "sakes\n", + "saki\n", + "sakis\n", + "sal\n", + "salaam\n", + "salaamed\n", + "salaaming\n", + "salaams\n", + "salable\n", + "salably\n", + "salacious\n", + "salacities\n", + "salacity\n", + "salad\n", + "saladang\n", + "saladangs\n", + "salads\n", + "salamander\n", + "salamanders\n", + "salami\n", + "salamis\n", + "salariat\n", + "salariats\n", + "salaried\n", + "salaries\n", + "salary\n", + "salarying\n", + "sale\n", + "saleable\n", + "saleably\n", + "salep\n", + "saleps\n", + "saleroom\n", + "salerooms\n", + "sales\n", + "salesman\n", + "salesmen\n", + "saleswoman\n", + "saleswomen\n", + "salic\n", + "salicin\n", + "salicine\n", + "salicines\n", + "salicins\n", + "salience\n", + "saliences\n", + "saliencies\n", + "saliency\n", + "salient\n", + "salients\n", + "salified\n", + "salifies\n", + "salify\n", + "salifying\n", + "salina\n", + "salinas\n", + "saline\n", + "salines\n", + "salinities\n", + "salinity\n", + "salinize\n", + "salinized\n", + "salinizes\n", + "salinizing\n", + "saliva\n", + "salivary\n", + "salivas\n", + "salivate\n", + "salivated\n", + "salivates\n", + "salivating\n", + "salivation\n", + "salivations\n", + "sall\n", + "sallet\n", + "sallets\n", + "sallied\n", + "sallier\n", + "salliers\n", + "sallies\n", + "sallow\n", + "sallowed\n", + "sallower\n", + "sallowest\n", + "sallowing\n", + "sallowly\n", + "sallows\n", + "sallowy\n", + "sally\n", + "sallying\n", + "salmi\n", + "salmis\n", + "salmon\n", + "salmonid\n", + "salmonids\n", + "salmons\n", + "salol\n", + "salols\n", + "salon\n", + "salons\n", + "saloon\n", + "saloons\n", + "saloop\n", + "saloops\n", + "salp\n", + "salpa\n", + "salpae\n", + "salpas\n", + "salpian\n", + "salpians\n", + "salpid\n", + "salpids\n", + "salpinges\n", + "salpinx\n", + "salps\n", + "sals\n", + "salsifies\n", + "salsify\n", + "salsilla\n", + "salsillas\n", + "salt\n", + "saltant\n", + "saltbox\n", + "saltboxes\n", + "saltbush\n", + "saltbushes\n", + "salted\n", + "salter\n", + "saltern\n", + "salterns\n", + "salters\n", + "saltest\n", + "saltie\n", + "saltier\n", + "saltiers\n", + "salties\n", + "saltiest\n", + "saltily\n", + "saltine\n", + "saltines\n", + "saltiness\n", + "saltinesses\n", + "salting\n", + "saltire\n", + "saltires\n", + "saltish\n", + "saltless\n", + "saltlike\n", + "saltness\n", + "saltnesses\n", + "saltpan\n", + "saltpans\n", + "salts\n", + "saltwater\n", + "saltwaters\n", + "saltwork\n", + "saltworks\n", + "saltwort\n", + "saltworts\n", + "salty\n", + "salubrious\n", + "saluki\n", + "salukis\n", + "salutary\n", + "salutation\n", + "salutations\n", + "salute\n", + "saluted\n", + "saluter\n", + "saluters\n", + "salutes\n", + "saluting\n", + "salvable\n", + "salvably\n", + "salvage\n", + "salvaged\n", + "salvagee\n", + "salvagees\n", + "salvager\n", + "salvagers\n", + "salvages\n", + "salvaging\n", + "salvation\n", + "salvations\n", + "salve\n", + "salved\n", + "salver\n", + "salvers\n", + "salves\n", + "salvia\n", + "salvias\n", + "salvific\n", + "salving\n", + "salvo\n", + "salvoed\n", + "salvoes\n", + "salvoing\n", + "salvor\n", + "salvors\n", + "salvos\n", + "samara\n", + "samaras\n", + "samarium\n", + "samariums\n", + "samba\n", + "sambaed\n", + "sambaing\n", + "sambar\n", + "sambars\n", + "sambas\n", + "sambhar\n", + "sambhars\n", + "sambhur\n", + "sambhurs\n", + "sambo\n", + "sambos\n", + "sambuca\n", + "sambucas\n", + "sambuke\n", + "sambukes\n", + "sambur\n", + "samburs\n", + "same\n", + "samech\n", + "samechs\n", + "samek\n", + "samekh\n", + "samekhs\n", + "sameks\n", + "sameness\n", + "samenesses\n", + "samiel\n", + "samiels\n", + "samisen\n", + "samisens\n", + "samite\n", + "samites\n", + "samlet\n", + "samlets\n", + "samovar\n", + "samovars\n", + "samp\n", + "sampan\n", + "sampans\n", + "samphire\n", + "samphires\n", + "sample\n", + "sampled\n", + "sampler\n", + "samplers\n", + "samples\n", + "sampling\n", + "samplings\n", + "samps\n", + "samsara\n", + "samsaras\n", + "samshu\n", + "samshus\n", + "samurai\n", + "samurais\n", + "sanative\n", + "sanatoria\n", + "sanatorium\n", + "sanatoriums\n", + "sancta\n", + "sanctification\n", + "sanctifications\n", + "sanctified\n", + "sanctifies\n", + "sanctify\n", + "sanctifying\n", + "sanctimonious\n", + "sanction\n", + "sanctioned\n", + "sanctioning\n", + "sanctions\n", + "sanctities\n", + "sanctity\n", + "sanctuaries\n", + "sanctuary\n", + "sanctum\n", + "sanctums\n", + "sand\n", + "sandal\n", + "sandaled\n", + "sandaling\n", + "sandalled\n", + "sandalling\n", + "sandals\n", + "sandarac\n", + "sandaracs\n", + "sandbag\n", + "sandbagged\n", + "sandbagging\n", + "sandbags\n", + "sandbank\n", + "sandbanks\n", + "sandbar\n", + "sandbars\n", + "sandbox\n", + "sandboxes\n", + "sandbur\n", + "sandburr\n", + "sandburrs\n", + "sandburs\n", + "sanded\n", + "sander\n", + "sanders\n", + "sandfish\n", + "sandfishes\n", + "sandflies\n", + "sandfly\n", + "sandhi\n", + "sandhis\n", + "sandhog\n", + "sandhogs\n", + "sandier\n", + "sandiest\n", + "sanding\n", + "sandlike\n", + "sandling\n", + "sandlings\n", + "sandlot\n", + "sandlots\n", + "sandman\n", + "sandmen\n", + "sandpaper\n", + "sandpapered\n", + "sandpapering\n", + "sandpapers\n", + "sandpeep\n", + "sandpeeps\n", + "sandpile\n", + "sandpiles\n", + "sandpiper\n", + "sandpipers\n", + "sandpit\n", + "sandpits\n", + "sands\n", + "sandsoap\n", + "sandsoaps\n", + "sandstone\n", + "sandstones\n", + "sandstorm\n", + "sandstorms\n", + "sandwich\n", + "sandwiched\n", + "sandwiches\n", + "sandwiching\n", + "sandworm\n", + "sandworms\n", + "sandwort\n", + "sandworts\n", + "sandy\n", + "sane\n", + "saned\n", + "sanely\n", + "saneness\n", + "sanenesses\n", + "saner\n", + "sanes\n", + "sanest\n", + "sang\n", + "sanga\n", + "sangar\n", + "sangaree\n", + "sangarees\n", + "sangars\n", + "sangas\n", + "sanger\n", + "sangers\n", + "sangh\n", + "sanghs\n", + "sangria\n", + "sangrias\n", + "sanguinary\n", + "sanguine\n", + "sanguines\n", + "sanicle\n", + "sanicles\n", + "sanies\n", + "saning\n", + "sanious\n", + "sanitaria\n", + "sanitaries\n", + "sanitarium\n", + "sanitariums\n", + "sanitary\n", + "sanitate\n", + "sanitated\n", + "sanitates\n", + "sanitating\n", + "sanitation\n", + "sanitations\n", + "sanities\n", + "sanitise\n", + "sanitised\n", + "sanitises\n", + "sanitising\n", + "sanitize\n", + "sanitized\n", + "sanitizes\n", + "sanitizing\n", + "sanity\n", + "sanjak\n", + "sanjaks\n", + "sank\n", + "sannop\n", + "sannops\n", + "sannup\n", + "sannups\n", + "sannyasi\n", + "sannyasis\n", + "sans\n", + "sansar\n", + "sansars\n", + "sansei\n", + "sanseis\n", + "sanserif\n", + "sanserifs\n", + "santalic\n", + "santimi\n", + "santims\n", + "santir\n", + "santirs\n", + "santol\n", + "santols\n", + "santonin\n", + "santonins\n", + "santour\n", + "santours\n", + "sap\n", + "sapajou\n", + "sapajous\n", + "saphead\n", + "sapheads\n", + "saphena\n", + "saphenae\n", + "sapid\n", + "sapidities\n", + "sapidity\n", + "sapience\n", + "sapiences\n", + "sapiencies\n", + "sapiency\n", + "sapiens\n", + "sapient\n", + "sapless\n", + "sapling\n", + "saplings\n", + "saponified\n", + "saponifies\n", + "saponify\n", + "saponifying\n", + "saponin\n", + "saponine\n", + "saponines\n", + "saponins\n", + "saponite\n", + "saponites\n", + "sapor\n", + "saporous\n", + "sapors\n", + "sapota\n", + "sapotas\n", + "sapour\n", + "sapours\n", + "sapped\n", + "sapper\n", + "sappers\n", + "sapphic\n", + "sapphics\n", + "sapphire\n", + "sapphires\n", + "sapphism\n", + "sapphisms\n", + "sapphist\n", + "sapphists\n", + "sappier\n", + "sappiest\n", + "sappily\n", + "sapping\n", + "sappy\n", + "sapremia\n", + "sapremias\n", + "sapremic\n", + "saprobe\n", + "saprobes\n", + "saprobic\n", + "sapropel\n", + "sapropels\n", + "saps\n", + "sapsago\n", + "sapsagos\n", + "sapsucker\n", + "sapsuckers\n", + "sapwood\n", + "sapwoods\n", + "saraband\n", + "sarabands\n", + "saran\n", + "sarape\n", + "sarapes\n", + "sarcasm\n", + "sarcasms\n", + "sarcastic\n", + "sarcastically\n", + "sarcenet\n", + "sarcenets\n", + "sarcoid\n", + "sarcoids\n", + "sarcoma\n", + "sarcomas\n", + "sarcomata\n", + "sarcophagi\n", + "sarcophagus\n", + "sarcous\n", + "sard\n", + "sardar\n", + "sardars\n", + "sardine\n", + "sardines\n", + "sardius\n", + "sardiuses\n", + "sardonic\n", + "sardonically\n", + "sardonyx\n", + "sardonyxes\n", + "sards\n", + "saree\n", + "sarees\n", + "sargasso\n", + "sargassos\n", + "sarge\n", + "sarges\n", + "sari\n", + "sarin\n", + "sarins\n", + "saris\n", + "sark\n", + "sarks\n", + "sarment\n", + "sarmenta\n", + "sarments\n", + "sarod\n", + "sarode\n", + "sarodes\n", + "sarodist\n", + "sarodists\n", + "sarods\n", + "sarong\n", + "sarongs\n", + "sarsaparilla\n", + "sarsaparillas\n", + "sarsar\n", + "sarsars\n", + "sarsen\n", + "sarsenet\n", + "sarsenets\n", + "sarsens\n", + "sartor\n", + "sartorii\n", + "sartors\n", + "sash\n", + "sashay\n", + "sashayed\n", + "sashaying\n", + "sashays\n", + "sashed\n", + "sashes\n", + "sashimi\n", + "sashimis\n", + "sashing\n", + "sasin\n", + "sasins\n", + "sass\n", + "sassabies\n", + "sassaby\n", + "sassafras\n", + "sassafrases\n", + "sassed\n", + "sasses\n", + "sassier\n", + "sassies\n", + "sassiest\n", + "sassily\n", + "sassing\n", + "sasswood\n", + "sasswoods\n", + "sassy\n", + "sastruga\n", + "sastrugi\n", + "sat\n", + "satang\n", + "satangs\n", + "satanic\n", + "satanism\n", + "satanisms\n", + "satanist\n", + "satanists\n", + "satara\n", + "sataras\n", + "satchel\n", + "satchels\n", + "sate\n", + "sated\n", + "sateen\n", + "sateens\n", + "satellite\n", + "satellites\n", + "satem\n", + "sates\n", + "sati\n", + "satiable\n", + "satiably\n", + "satiate\n", + "satiated\n", + "satiates\n", + "satiating\n", + "satieties\n", + "satiety\n", + "satin\n", + "satinet\n", + "satinets\n", + "sating\n", + "satinpod\n", + "satinpods\n", + "satins\n", + "satiny\n", + "satire\n", + "satires\n", + "satiric\n", + "satirical\n", + "satirically\n", + "satirise\n", + "satirised\n", + "satirises\n", + "satirising\n", + "satirist\n", + "satirists\n", + "satirize\n", + "satirized\n", + "satirizes\n", + "satirizing\n", + "satis\n", + "satisfaction\n", + "satisfactions\n", + "satisfactorily\n", + "satisfactory\n", + "satisfied\n", + "satisfies\n", + "satisfy\n", + "satisfying\n", + "satisfyingly\n", + "satori\n", + "satoris\n", + "satrap\n", + "satrapies\n", + "satraps\n", + "satrapy\n", + "saturant\n", + "saturants\n", + "saturate\n", + "saturated\n", + "saturates\n", + "saturating\n", + "saturation\n", + "saturations\n", + "saturnine\n", + "satyr\n", + "satyric\n", + "satyrid\n", + "satyrids\n", + "satyrs\n", + "sau\n", + "sauce\n", + "saucebox\n", + "sauceboxes\n", + "sauced\n", + "saucepan\n", + "saucepans\n", + "saucer\n", + "saucers\n", + "sauces\n", + "sauch\n", + "sauchs\n", + "saucier\n", + "sauciest\n", + "saucily\n", + "saucing\n", + "saucy\n", + "sauerkraut\n", + "sauerkrauts\n", + "sauger\n", + "saugers\n", + "saugh\n", + "saughs\n", + "saughy\n", + "saul\n", + "sauls\n", + "sault\n", + "saults\n", + "sauna\n", + "saunas\n", + "saunter\n", + "sauntered\n", + "sauntering\n", + "saunters\n", + "saurel\n", + "saurels\n", + "saurian\n", + "saurians\n", + "sauries\n", + "sauropod\n", + "sauropods\n", + "saury\n", + "sausage\n", + "sausages\n", + "saute\n", + "sauted\n", + "sauteed\n", + "sauteing\n", + "sauterne\n", + "sauternes\n", + "sautes\n", + "sautoir\n", + "sautoire\n", + "sautoires\n", + "sautoirs\n", + "savable\n", + "savage\n", + "savaged\n", + "savagely\n", + "savageness\n", + "savagenesses\n", + "savager\n", + "savageries\n", + "savagery\n", + "savages\n", + "savagest\n", + "savaging\n", + "savagism\n", + "savagisms\n", + "savanna\n", + "savannah\n", + "savannahs\n", + "savannas\n", + "savant\n", + "savants\n", + "savate\n", + "savates\n", + "save\n", + "saveable\n", + "saved\n", + "saveloy\n", + "saveloys\n", + "saver\n", + "savers\n", + "saves\n", + "savin\n", + "savine\n", + "savines\n", + "saving\n", + "savingly\n", + "savings\n", + "savins\n", + "savior\n", + "saviors\n", + "saviour\n", + "saviours\n", + "savor\n", + "savored\n", + "savorer\n", + "savorers\n", + "savorier\n", + "savories\n", + "savoriest\n", + "savorily\n", + "savoring\n", + "savorous\n", + "savors\n", + "savory\n", + "savour\n", + "savoured\n", + "savourer\n", + "savourers\n", + "savourier\n", + "savouries\n", + "savouriest\n", + "savouring\n", + "savours\n", + "savoury\n", + "savoy\n", + "savoys\n", + "savvied\n", + "savvies\n", + "savvy\n", + "savvying\n", + "saw\n", + "sawbill\n", + "sawbills\n", + "sawbones\n", + "sawboneses\n", + "sawbuck\n", + "sawbucks\n", + "sawdust\n", + "sawdusts\n", + "sawed\n", + "sawer\n", + "sawers\n", + "sawfish\n", + "sawfishes\n", + "sawflies\n", + "sawfly\n", + "sawhorse\n", + "sawhorses\n", + "sawing\n", + "sawlike\n", + "sawlog\n", + "sawlogs\n", + "sawmill\n", + "sawmills\n", + "sawn\n", + "sawney\n", + "sawneys\n", + "saws\n", + "sawteeth\n", + "sawtooth\n", + "sawyer\n", + "sawyers\n", + "sax\n", + "saxatile\n", + "saxes\n", + "saxhorn\n", + "saxhorns\n", + "saxonies\n", + "saxony\n", + "saxophone\n", + "saxophones\n", + "saxtuba\n", + "saxtubas\n", + "say\n", + "sayable\n", + "sayer\n", + "sayers\n", + "sayest\n", + "sayid\n", + "sayids\n", + "saying\n", + "sayings\n", + "sayonara\n", + "sayonaras\n", + "says\n", + "sayst\n", + "sayyid\n", + "sayyids\n", + "scab\n", + "scabbard\n", + "scabbarded\n", + "scabbarding\n", + "scabbards\n", + "scabbed\n", + "scabbier\n", + "scabbiest\n", + "scabbily\n", + "scabbing\n", + "scabble\n", + "scabbled\n", + "scabbles\n", + "scabbling\n", + "scabby\n", + "scabies\n", + "scabiosa\n", + "scabiosas\n", + "scabious\n", + "scabiouses\n", + "scablike\n", + "scabrous\n", + "scabs\n", + "scad\n", + "scads\n", + "scaffold\n", + "scaffolded\n", + "scaffolding\n", + "scaffolds\n", + "scag\n", + "scags\n", + "scalable\n", + "scalably\n", + "scalade\n", + "scalades\n", + "scalado\n", + "scalados\n", + "scalage\n", + "scalages\n", + "scalar\n", + "scalare\n", + "scalares\n", + "scalars\n", + "scalawag\n", + "scalawags\n", + "scald\n", + "scalded\n", + "scaldic\n", + "scalding\n", + "scalds\n", + "scale\n", + "scaled\n", + "scaleless\n", + "scalene\n", + "scaleni\n", + "scalenus\n", + "scalepan\n", + "scalepans\n", + "scaler\n", + "scalers\n", + "scales\n", + "scalier\n", + "scaliest\n", + "scaling\n", + "scall\n", + "scallion\n", + "scallions\n", + "scallop\n", + "scalloped\n", + "scalloping\n", + "scallops\n", + "scalls\n", + "scalp\n", + "scalped\n", + "scalpel\n", + "scalpels\n", + "scalper\n", + "scalpers\n", + "scalping\n", + "scalps\n", + "scaly\n", + "scam\n", + "scammonies\n", + "scammony\n", + "scamp\n", + "scamped\n", + "scamper\n", + "scampered\n", + "scampering\n", + "scampers\n", + "scampi\n", + "scamping\n", + "scampish\n", + "scamps\n", + "scams\n", + "scan\n", + "scandal\n", + "scandaled\n", + "scandaling\n", + "scandalize\n", + "scandalized\n", + "scandalizes\n", + "scandalizing\n", + "scandalled\n", + "scandalling\n", + "scandalous\n", + "scandals\n", + "scandent\n", + "scandia\n", + "scandias\n", + "scandic\n", + "scandium\n", + "scandiums\n", + "scanned\n", + "scanner\n", + "scanners\n", + "scanning\n", + "scannings\n", + "scans\n", + "scansion\n", + "scansions\n", + "scant\n", + "scanted\n", + "scanter\n", + "scantest\n", + "scantier\n", + "scanties\n", + "scantiest\n", + "scantily\n", + "scanting\n", + "scantly\n", + "scants\n", + "scanty\n", + "scape\n", + "scaped\n", + "scapegoat\n", + "scapegoats\n", + "scapes\n", + "scaphoid\n", + "scaphoids\n", + "scaping\n", + "scapose\n", + "scapula\n", + "scapulae\n", + "scapular\n", + "scapulars\n", + "scapulas\n", + "scar\n", + "scarab\n", + "scarabs\n", + "scarce\n", + "scarcely\n", + "scarcer\n", + "scarcest\n", + "scarcities\n", + "scarcity\n", + "scare\n", + "scarecrow\n", + "scarecrows\n", + "scared\n", + "scarer\n", + "scarers\n", + "scares\n", + "scarey\n", + "scarf\n", + "scarfed\n", + "scarfing\n", + "scarfpin\n", + "scarfpins\n", + "scarfs\n", + "scarier\n", + "scariest\n", + "scarified\n", + "scarifies\n", + "scarify\n", + "scarifying\n", + "scaring\n", + "scariose\n", + "scarious\n", + "scarless\n", + "scarlet\n", + "scarlets\n", + "scarp\n", + "scarped\n", + "scarper\n", + "scarpered\n", + "scarpering\n", + "scarpers\n", + "scarph\n", + "scarphed\n", + "scarphing\n", + "scarphs\n", + "scarping\n", + "scarps\n", + "scarred\n", + "scarrier\n", + "scarriest\n", + "scarring\n", + "scarry\n", + "scars\n", + "scart\n", + "scarted\n", + "scarting\n", + "scarts\n", + "scarves\n", + "scary\n", + "scat\n", + "scatback\n", + "scatbacks\n", + "scathe\n", + "scathed\n", + "scathes\n", + "scathing\n", + "scats\n", + "scatt\n", + "scatted\n", + "scatter\n", + "scattered\n", + "scattergram\n", + "scattergrams\n", + "scattering\n", + "scatters\n", + "scattier\n", + "scattiest\n", + "scatting\n", + "scatts\n", + "scatty\n", + "scaup\n", + "scauper\n", + "scaupers\n", + "scaups\n", + "scaur\n", + "scaurs\n", + "scavenge\n", + "scavenged\n", + "scavenger\n", + "scavengers\n", + "scavenges\n", + "scavenging\n", + "scena\n", + "scenario\n", + "scenarios\n", + "scenas\n", + "scend\n", + "scended\n", + "scending\n", + "scends\n", + "scene\n", + "sceneries\n", + "scenery\n", + "scenes\n", + "scenic\n", + "scenical\n", + "scent\n", + "scented\n", + "scenting\n", + "scents\n", + "scepter\n", + "sceptered\n", + "sceptering\n", + "scepters\n", + "sceptic\n", + "sceptics\n", + "sceptral\n", + "sceptre\n", + "sceptred\n", + "sceptres\n", + "sceptring\n", + "schappe\n", + "schappes\n", + "schav\n", + "schavs\n", + "schedule\n", + "scheduled\n", + "schedules\n", + "scheduling\n", + "schema\n", + "schemata\n", + "schematic\n", + "scheme\n", + "schemed\n", + "schemer\n", + "schemers\n", + "schemes\n", + "scheming\n", + "scherzi\n", + "scherzo\n", + "scherzos\n", + "schiller\n", + "schillers\n", + "schism\n", + "schisms\n", + "schist\n", + "schists\n", + "schizo\n", + "schizoid\n", + "schizoids\n", + "schizont\n", + "schizonts\n", + "schizophrenia\n", + "schizophrenias\n", + "schizophrenic\n", + "schizophrenics\n", + "schizos\n", + "schlep\n", + "schlepp\n", + "schlepped\n", + "schlepping\n", + "schlepps\n", + "schleps\n", + "schlock\n", + "schlocks\n", + "schmaltz\n", + "schmaltzes\n", + "schmalz\n", + "schmalzes\n", + "schmalzier\n", + "schmalziest\n", + "schmalzy\n", + "schmeer\n", + "schmeered\n", + "schmeering\n", + "schmeers\n", + "schmelze\n", + "schmelzes\n", + "schmo\n", + "schmoe\n", + "schmoes\n", + "schmoos\n", + "schmoose\n", + "schmoosed\n", + "schmooses\n", + "schmoosing\n", + "schmooze\n", + "schmoozed\n", + "schmoozes\n", + "schmoozing\n", + "schmuck\n", + "schmucks\n", + "schnapps\n", + "schnaps\n", + "schnecke\n", + "schnecken\n", + "schnook\n", + "schnooks\n", + "scholar\n", + "scholars\n", + "scholarship\n", + "scholarships\n", + "scholastic\n", + "scholia\n", + "scholium\n", + "scholiums\n", + "school\n", + "schoolboy\n", + "schoolboys\n", + "schooled\n", + "schoolgirl\n", + "schoolgirls\n", + "schoolhouse\n", + "schoolhouses\n", + "schooling\n", + "schoolmate\n", + "schoolmates\n", + "schoolroom\n", + "schoolrooms\n", + "schools\n", + "schoolteacher\n", + "schoolteachers\n", + "schooner\n", + "schooners\n", + "schorl\n", + "schorls\n", + "schrik\n", + "schriks\n", + "schtick\n", + "schticks\n", + "schuit\n", + "schuits\n", + "schul\n", + "schuln\n", + "schuss\n", + "schussed\n", + "schusses\n", + "schussing\n", + "schwa\n", + "schwas\n", + "sciaenid\n", + "sciaenids\n", + "sciatic\n", + "sciatica\n", + "sciaticas\n", + "sciatics\n", + "science\n", + "sciences\n", + "scientific\n", + "scientifically\n", + "scientist\n", + "scientists\n", + "scilicet\n", + "scilla\n", + "scillas\n", + "scimetar\n", + "scimetars\n", + "scimitar\n", + "scimitars\n", + "scimiter\n", + "scimiters\n", + "scincoid\n", + "scincoids\n", + "scintillate\n", + "scintillated\n", + "scintillates\n", + "scintillating\n", + "scintillation\n", + "scintillations\n", + "sciolism\n", + "sciolisms\n", + "sciolist\n", + "sciolists\n", + "scion\n", + "scions\n", + "scirocco\n", + "sciroccos\n", + "scirrhi\n", + "scirrhus\n", + "scirrhuses\n", + "scissile\n", + "scission\n", + "scissions\n", + "scissor\n", + "scissored\n", + "scissoring\n", + "scissors\n", + "scissure\n", + "scissures\n", + "sciurine\n", + "sciurines\n", + "sciuroid\n", + "sclaff\n", + "sclaffed\n", + "sclaffer\n", + "sclaffers\n", + "sclaffing\n", + "sclaffs\n", + "sclera\n", + "sclerae\n", + "scleral\n", + "scleras\n", + "sclereid\n", + "sclereids\n", + "sclerite\n", + "sclerites\n", + "scleroid\n", + "scleroma\n", + "scleromata\n", + "sclerose\n", + "sclerosed\n", + "scleroses\n", + "sclerosing\n", + "sclerosis\n", + "sclerosises\n", + "sclerotic\n", + "sclerous\n", + "scoff\n", + "scoffed\n", + "scoffer\n", + "scoffers\n", + "scoffing\n", + "scofflaw\n", + "scofflaws\n", + "scoffs\n", + "scold\n", + "scolded\n", + "scolder\n", + "scolders\n", + "scolding\n", + "scoldings\n", + "scolds\n", + "scoleces\n", + "scolex\n", + "scolices\n", + "scolioma\n", + "scoliomas\n", + "scollop\n", + "scolloped\n", + "scolloping\n", + "scollops\n", + "sconce\n", + "sconced\n", + "sconces\n", + "sconcing\n", + "scone\n", + "scones\n", + "scoop\n", + "scooped\n", + "scooper\n", + "scoopers\n", + "scoopful\n", + "scoopfuls\n", + "scooping\n", + "scoops\n", + "scoopsful\n", + "scoot\n", + "scooted\n", + "scooter\n", + "scooters\n", + "scooting\n", + "scoots\n", + "scop\n", + "scope\n", + "scopes\n", + "scops\n", + "scopula\n", + "scopulae\n", + "scopulas\n", + "scorch\n", + "scorched\n", + "scorcher\n", + "scorchers\n", + "scorches\n", + "scorching\n", + "score\n", + "scored\n", + "scoreless\n", + "scorepad\n", + "scorepads\n", + "scorer\n", + "scorers\n", + "scores\n", + "scoria\n", + "scoriae\n", + "scorified\n", + "scorifies\n", + "scorify\n", + "scorifying\n", + "scoring\n", + "scorn\n", + "scorned\n", + "scorner\n", + "scorners\n", + "scornful\n", + "scornfully\n", + "scorning\n", + "scorns\n", + "scorpion\n", + "scorpions\n", + "scot\n", + "scotch\n", + "scotched\n", + "scotches\n", + "scotching\n", + "scoter\n", + "scoters\n", + "scotia\n", + "scotias\n", + "scotoma\n", + "scotomas\n", + "scotomata\n", + "scotopia\n", + "scotopias\n", + "scotopic\n", + "scots\n", + "scottie\n", + "scotties\n", + "scoundrel\n", + "scoundrels\n", + "scour\n", + "scoured\n", + "scourer\n", + "scourers\n", + "scourge\n", + "scourged\n", + "scourger\n", + "scourgers\n", + "scourges\n", + "scourging\n", + "scouring\n", + "scourings\n", + "scours\n", + "scouse\n", + "scouses\n", + "scout\n", + "scouted\n", + "scouter\n", + "scouters\n", + "scouth\n", + "scouther\n", + "scouthered\n", + "scouthering\n", + "scouthers\n", + "scouths\n", + "scouting\n", + "scoutings\n", + "scouts\n", + "scow\n", + "scowder\n", + "scowdered\n", + "scowdering\n", + "scowders\n", + "scowed\n", + "scowing\n", + "scowl\n", + "scowled\n", + "scowler\n", + "scowlers\n", + "scowling\n", + "scowls\n", + "scows\n", + "scrabble\n", + "scrabbled\n", + "scrabbles\n", + "scrabbling\n", + "scrabbly\n", + "scrag\n", + "scragged\n", + "scraggier\n", + "scraggiest\n", + "scragging\n", + "scragglier\n", + "scraggliest\n", + "scraggly\n", + "scraggy\n", + "scrags\n", + "scraich\n", + "scraiched\n", + "scraiching\n", + "scraichs\n", + "scraigh\n", + "scraighed\n", + "scraighing\n", + "scraighs\n", + "scram\n", + "scramble\n", + "scrambled\n", + "scrambles\n", + "scrambling\n", + "scrammed\n", + "scramming\n", + "scrams\n", + "scrannel\n", + "scrannels\n", + "scrap\n", + "scrapbook\n", + "scrapbooks\n", + "scrape\n", + "scraped\n", + "scraper\n", + "scrapers\n", + "scrapes\n", + "scrapie\n", + "scrapies\n", + "scraping\n", + "scrapings\n", + "scrapped\n", + "scrapper\n", + "scrappers\n", + "scrappier\n", + "scrappiest\n", + "scrapping\n", + "scrapple\n", + "scrapples\n", + "scrappy\n", + "scraps\n", + "scratch\n", + "scratched\n", + "scratches\n", + "scratchier\n", + "scratchiest\n", + "scratching\n", + "scratchy\n", + "scrawl\n", + "scrawled\n", + "scrawler\n", + "scrawlers\n", + "scrawlier\n", + "scrawliest\n", + "scrawling\n", + "scrawls\n", + "scrawly\n", + "scrawnier\n", + "scrawniest\n", + "scrawny\n", + "screak\n", + "screaked\n", + "screaking\n", + "screaks\n", + "screaky\n", + "scream\n", + "screamed\n", + "screamer\n", + "screamers\n", + "screaming\n", + "screams\n", + "scree\n", + "screech\n", + "screeched\n", + "screeches\n", + "screechier\n", + "screechiest\n", + "screeching\n", + "screechy\n", + "screed\n", + "screeded\n", + "screeding\n", + "screeds\n", + "screen\n", + "screened\n", + "screener\n", + "screeners\n", + "screening\n", + "screens\n", + "screes\n", + "screw\n", + "screwball\n", + "screwballs\n", + "screwdriver\n", + "screwdrivers\n", + "screwed\n", + "screwer\n", + "screwers\n", + "screwier\n", + "screwiest\n", + "screwing\n", + "screws\n", + "screwy\n", + "scribal\n", + "scribble\n", + "scribbled\n", + "scribbles\n", + "scribbling\n", + "scribe\n", + "scribed\n", + "scriber\n", + "scribers\n", + "scribes\n", + "scribing\n", + "scrieve\n", + "scrieved\n", + "scrieves\n", + "scrieving\n", + "scrim\n", + "scrimp\n", + "scrimped\n", + "scrimpier\n", + "scrimpiest\n", + "scrimping\n", + "scrimpit\n", + "scrimps\n", + "scrimpy\n", + "scrims\n", + "scrip\n", + "scrips\n", + "script\n", + "scripted\n", + "scripting\n", + "scripts\n", + "scriptural\n", + "scripture\n", + "scriptures\n", + "scrive\n", + "scrived\n", + "scrives\n", + "scriving\n", + "scrod\n", + "scrods\n", + "scrofula\n", + "scrofulas\n", + "scroggier\n", + "scroggiest\n", + "scroggy\n", + "scroll\n", + "scrolls\n", + "scrooge\n", + "scrooges\n", + "scroop\n", + "scrooped\n", + "scrooping\n", + "scroops\n", + "scrota\n", + "scrotal\n", + "scrotum\n", + "scrotums\n", + "scrouge\n", + "scrouged\n", + "scrouges\n", + "scrouging\n", + "scrounge\n", + "scrounged\n", + "scrounges\n", + "scroungier\n", + "scroungiest\n", + "scrounging\n", + "scroungy\n", + "scrub\n", + "scrubbed\n", + "scrubber\n", + "scrubbers\n", + "scrubbier\n", + "scrubbiest\n", + "scrubbing\n", + "scrubby\n", + "scrubs\n", + "scruff\n", + "scruffier\n", + "scruffiest\n", + "scruffs\n", + "scruffy\n", + "scrum\n", + "scrums\n", + "scrunch\n", + "scrunched\n", + "scrunches\n", + "scrunching\n", + "scruple\n", + "scrupled\n", + "scruples\n", + "scrupling\n", + "scrupulous\n", + "scrupulously\n", + "scrutinies\n", + "scrutinize\n", + "scrutinized\n", + "scrutinizes\n", + "scrutinizing\n", + "scrutiny\n", + "scuba\n", + "scubas\n", + "scud\n", + "scudded\n", + "scudding\n", + "scudi\n", + "scudo\n", + "scuds\n", + "scuff\n", + "scuffed\n", + "scuffing\n", + "scuffle\n", + "scuffled\n", + "scuffler\n", + "scufflers\n", + "scuffles\n", + "scuffling\n", + "scuffs\n", + "sculk\n", + "sculked\n", + "sculker\n", + "sculkers\n", + "sculking\n", + "sculks\n", + "scull\n", + "sculled\n", + "sculler\n", + "sculleries\n", + "scullers\n", + "scullery\n", + "sculling\n", + "scullion\n", + "scullions\n", + "sculls\n", + "sculp\n", + "sculped\n", + "sculpin\n", + "sculping\n", + "sculpins\n", + "sculps\n", + "sculpt\n", + "sculpted\n", + "sculpting\n", + "sculptor\n", + "sculptors\n", + "sculpts\n", + "sculptural\n", + "sculpture\n", + "sculptured\n", + "sculptures\n", + "sculpturing\n", + "scum\n", + "scumble\n", + "scumbled\n", + "scumbles\n", + "scumbling\n", + "scumlike\n", + "scummed\n", + "scummer\n", + "scummers\n", + "scummier\n", + "scummiest\n", + "scumming\n", + "scummy\n", + "scums\n", + "scunner\n", + "scunnered\n", + "scunnering\n", + "scunners\n", + "scup\n", + "scuppaug\n", + "scuppaugs\n", + "scupper\n", + "scuppered\n", + "scuppering\n", + "scuppers\n", + "scups\n", + "scurf\n", + "scurfier\n", + "scurfiest\n", + "scurfs\n", + "scurfy\n", + "scurried\n", + "scurries\n", + "scurril\n", + "scurrile\n", + "scurrilous\n", + "scurry\n", + "scurrying\n", + "scurvier\n", + "scurvies\n", + "scurviest\n", + "scurvily\n", + "scurvy\n", + "scut\n", + "scuta\n", + "scutage\n", + "scutages\n", + "scutate\n", + "scutch\n", + "scutched\n", + "scutcher\n", + "scutchers\n", + "scutches\n", + "scutching\n", + "scute\n", + "scutella\n", + "scutes\n", + "scuts\n", + "scutter\n", + "scuttered\n", + "scuttering\n", + "scutters\n", + "scuttle\n", + "scuttled\n", + "scuttles\n", + "scuttling\n", + "scutum\n", + "scyphate\n", + "scythe\n", + "scythed\n", + "scythes\n", + "scything\n", + "sea\n", + "seabag\n", + "seabags\n", + "seabeach\n", + "seabeaches\n", + "seabed\n", + "seabeds\n", + "seabird\n", + "seabirds\n", + "seaboard\n", + "seaboards\n", + "seaboot\n", + "seaboots\n", + "seaborne\n", + "seacoast\n", + "seacoasts\n", + "seacock\n", + "seacocks\n", + "seacraft\n", + "seacrafts\n", + "seadog\n", + "seadogs\n", + "seadrome\n", + "seadromes\n", + "seafarer\n", + "seafarers\n", + "seafaring\n", + "seafarings\n", + "seafloor\n", + "seafloors\n", + "seafood\n", + "seafoods\n", + "seafowl\n", + "seafowls\n", + "seafront\n", + "seafronts\n", + "seagirt\n", + "seagoing\n", + "seal\n", + "sealable\n", + "sealant\n", + "sealants\n", + "sealed\n", + "sealer\n", + "sealeries\n", + "sealers\n", + "sealery\n", + "sealing\n", + "seallike\n", + "seals\n", + "sealskin\n", + "sealskins\n", + "seam\n", + "seaman\n", + "seamanly\n", + "seamanship\n", + "seamanships\n", + "seamark\n", + "seamarks\n", + "seamed\n", + "seamen\n", + "seamer\n", + "seamers\n", + "seamier\n", + "seamiest\n", + "seaming\n", + "seamless\n", + "seamlike\n", + "seamount\n", + "seamounts\n", + "seams\n", + "seamster\n", + "seamsters\n", + "seamstress\n", + "seamstresses\n", + "seamy\n", + "seance\n", + "seances\n", + "seapiece\n", + "seapieces\n", + "seaplane\n", + "seaplanes\n", + "seaport\n", + "seaports\n", + "seaquake\n", + "seaquakes\n", + "sear\n", + "search\n", + "searched\n", + "searcher\n", + "searchers\n", + "searches\n", + "searching\n", + "searchlight\n", + "searchlights\n", + "seared\n", + "searer\n", + "searest\n", + "searing\n", + "sears\n", + "seas\n", + "seascape\n", + "seascapes\n", + "seascout\n", + "seascouts\n", + "seashell\n", + "seashells\n", + "seashore\n", + "seashores\n", + "seasick\n", + "seasickness\n", + "seasicknesses\n", + "seaside\n", + "seasides\n", + "season\n", + "seasonable\n", + "seasonably\n", + "seasonal\n", + "seasonally\n", + "seasoned\n", + "seasoner\n", + "seasoners\n", + "seasoning\n", + "seasons\n", + "seat\n", + "seated\n", + "seater\n", + "seaters\n", + "seating\n", + "seatings\n", + "seatless\n", + "seatmate\n", + "seatmates\n", + "seatrain\n", + "seatrains\n", + "seats\n", + "seatwork\n", + "seatworks\n", + "seawall\n", + "seawalls\n", + "seawan\n", + "seawans\n", + "seawant\n", + "seawants\n", + "seaward\n", + "seawards\n", + "seaware\n", + "seawares\n", + "seawater\n", + "seawaters\n", + "seaway\n", + "seaways\n", + "seaweed\n", + "seaweeds\n", + "seaworthy\n", + "sebacic\n", + "sebasic\n", + "sebum\n", + "sebums\n", + "sec\n", + "secant\n", + "secantly\n", + "secants\n", + "secateur\n", + "secateurs\n", + "secco\n", + "seccos\n", + "secede\n", + "seceded\n", + "seceder\n", + "seceders\n", + "secedes\n", + "seceding\n", + "secern\n", + "secerned\n", + "secerning\n", + "secerns\n", + "seclude\n", + "secluded\n", + "secludes\n", + "secluding\n", + "seclusion\n", + "seclusions\n", + "second\n", + "secondary\n", + "seconde\n", + "seconded\n", + "seconder\n", + "seconders\n", + "secondes\n", + "secondhand\n", + "secondi\n", + "seconding\n", + "secondly\n", + "secondo\n", + "seconds\n", + "secpar\n", + "secpars\n", + "secrecies\n", + "secrecy\n", + "secret\n", + "secretarial\n", + "secretariat\n", + "secretariats\n", + "secretaries\n", + "secretary\n", + "secrete\n", + "secreted\n", + "secreter\n", + "secretes\n", + "secretest\n", + "secretin\n", + "secreting\n", + "secretins\n", + "secretion\n", + "secretions\n", + "secretive\n", + "secretly\n", + "secretor\n", + "secretors\n", + "secrets\n", + "secs\n", + "sect\n", + "sectarian\n", + "sectarians\n", + "sectaries\n", + "sectary\n", + "sectile\n", + "section\n", + "sectional\n", + "sectioned\n", + "sectioning\n", + "sections\n", + "sector\n", + "sectoral\n", + "sectored\n", + "sectoring\n", + "sectors\n", + "sects\n", + "secular\n", + "seculars\n", + "secund\n", + "secundly\n", + "secundum\n", + "secure\n", + "secured\n", + "securely\n", + "securer\n", + "securers\n", + "secures\n", + "securest\n", + "securing\n", + "securities\n", + "security\n", + "sedan\n", + "sedans\n", + "sedarim\n", + "sedate\n", + "sedated\n", + "sedately\n", + "sedater\n", + "sedates\n", + "sedatest\n", + "sedating\n", + "sedation\n", + "sedations\n", + "sedative\n", + "sedatives\n", + "sedentary\n", + "seder\n", + "seders\n", + "sederunt\n", + "sederunts\n", + "sedge\n", + "sedges\n", + "sedgier\n", + "sedgiest\n", + "sedgy\n", + "sedile\n", + "sedilia\n", + "sedilium\n", + "sediment\n", + "sedimentary\n", + "sedimentation\n", + "sedimentations\n", + "sedimented\n", + "sedimenting\n", + "sediments\n", + "sedition\n", + "seditions\n", + "seditious\n", + "seduce\n", + "seduced\n", + "seducer\n", + "seducers\n", + "seduces\n", + "seducing\n", + "seducive\n", + "seduction\n", + "seductions\n", + "seductive\n", + "sedulities\n", + "sedulity\n", + "sedulous\n", + "sedum\n", + "sedums\n", + "see\n", + "seeable\n", + "seecatch\n", + "seecatchie\n", + "seed\n", + "seedbed\n", + "seedbeds\n", + "seedcake\n", + "seedcakes\n", + "seedcase\n", + "seedcases\n", + "seeded\n", + "seeder\n", + "seeders\n", + "seedier\n", + "seediest\n", + "seedily\n", + "seeding\n", + "seedless\n", + "seedlike\n", + "seedling\n", + "seedlings\n", + "seedman\n", + "seedmen\n", + "seedpod\n", + "seedpods\n", + "seeds\n", + "seedsman\n", + "seedsmen\n", + "seedtime\n", + "seedtimes\n", + "seedy\n", + "seeing\n", + "seeings\n", + "seek\n", + "seeker\n", + "seekers\n", + "seeking\n", + "seeks\n", + "seel\n", + "seeled\n", + "seeling\n", + "seels\n", + "seely\n", + "seem\n", + "seemed\n", + "seemer\n", + "seemers\n", + "seeming\n", + "seemingly\n", + "seemings\n", + "seemlier\n", + "seemliest\n", + "seemly\n", + "seems\n", + "seen\n", + "seep\n", + "seepage\n", + "seepages\n", + "seeped\n", + "seepier\n", + "seepiest\n", + "seeping\n", + "seeps\n", + "seepy\n", + "seer\n", + "seeress\n", + "seeresses\n", + "seers\n", + "seersucker\n", + "seersuckers\n", + "sees\n", + "seesaw\n", + "seesawed\n", + "seesawing\n", + "seesaws\n", + "seethe\n", + "seethed\n", + "seethes\n", + "seething\n", + "segetal\n", + "seggar\n", + "seggars\n", + "segment\n", + "segmented\n", + "segmenting\n", + "segments\n", + "segni\n", + "segno\n", + "segnos\n", + "sego\n", + "segos\n", + "segregate\n", + "segregated\n", + "segregates\n", + "segregating\n", + "segregation\n", + "segregations\n", + "segue\n", + "segued\n", + "segueing\n", + "segues\n", + "sei\n", + "seicento\n", + "seicentos\n", + "seiche\n", + "seiches\n", + "seidel\n", + "seidels\n", + "seigneur\n", + "seigneurs\n", + "seignior\n", + "seigniors\n", + "seignories\n", + "seignory\n", + "seine\n", + "seined\n", + "seiner\n", + "seiners\n", + "seines\n", + "seining\n", + "seis\n", + "seisable\n", + "seise\n", + "seised\n", + "seiser\n", + "seisers\n", + "seises\n", + "seisin\n", + "seising\n", + "seisings\n", + "seisins\n", + "seism\n", + "seismal\n", + "seismic\n", + "seismism\n", + "seismisms\n", + "seismograph\n", + "seismographs\n", + "seisms\n", + "seisor\n", + "seisors\n", + "seisure\n", + "seisures\n", + "seizable\n", + "seize\n", + "seized\n", + "seizer\n", + "seizers\n", + "seizes\n", + "seizin\n", + "seizing\n", + "seizings\n", + "seizins\n", + "seizor\n", + "seizors\n", + "seizure\n", + "seizures\n", + "sejant\n", + "sejeant\n", + "sel\n", + "seladang\n", + "seladangs\n", + "selah\n", + "selahs\n", + "selamlik\n", + "selamliks\n", + "selcouth\n", + "seldom\n", + "seldomly\n", + "select\n", + "selected\n", + "selectee\n", + "selectees\n", + "selecting\n", + "selection\n", + "selections\n", + "selective\n", + "selectly\n", + "selectman\n", + "selectmen\n", + "selector\n", + "selectors\n", + "selects\n", + "selenate\n", + "selenates\n", + "selenic\n", + "selenide\n", + "selenides\n", + "selenite\n", + "selenites\n", + "selenium\n", + "seleniums\n", + "selenous\n", + "self\n", + "selfdom\n", + "selfdoms\n", + "selfed\n", + "selfheal\n", + "selfheals\n", + "selfhood\n", + "selfhoods\n", + "selfing\n", + "selfish\n", + "selfishly\n", + "selfishness\n", + "selfishnesses\n", + "selfless\n", + "selflessness\n", + "selflessnesses\n", + "selfness\n", + "selfnesses\n", + "selfs\n", + "selfsame\n", + "selfward\n", + "sell\n", + "sellable\n", + "selle\n", + "seller\n", + "sellers\n", + "selles\n", + "selling\n", + "sellout\n", + "sellouts\n", + "sells\n", + "sels\n", + "selsyn\n", + "selsyns\n", + "seltzer\n", + "seltzers\n", + "selvage\n", + "selvaged\n", + "selvages\n", + "selvedge\n", + "selvedges\n", + "selves\n", + "semantic\n", + "semantics\n", + "semaphore\n", + "semaphores\n", + "sematic\n", + "semblance\n", + "semblances\n", + "seme\n", + "sememe\n", + "sememes\n", + "semen\n", + "semens\n", + "semes\n", + "semester\n", + "semesters\n", + "semi\n", + "semiarid\n", + "semibald\n", + "semicolon\n", + "semicolons\n", + "semicoma\n", + "semicomas\n", + "semiconductor\n", + "semiconductors\n", + "semideaf\n", + "semidome\n", + "semidomes\n", + "semidry\n", + "semifinal\n", + "semifinalist\n", + "semifinalists\n", + "semifinals\n", + "semifit\n", + "semiformal\n", + "semigala\n", + "semihard\n", + "semihigh\n", + "semihobo\n", + "semihoboes\n", + "semihobos\n", + "semilog\n", + "semimat\n", + "semimatt\n", + "semimute\n", + "semina\n", + "seminal\n", + "seminar\n", + "seminarian\n", + "seminarians\n", + "seminaries\n", + "seminars\n", + "seminary\n", + "seminude\n", + "semioses\n", + "semiosis\n", + "semiotic\n", + "semiotics\n", + "semipro\n", + "semipros\n", + "semiraw\n", + "semis\n", + "semises\n", + "semisoft\n", + "semitist\n", + "semitists\n", + "semitone\n", + "semitones\n", + "semiwild\n", + "semolina\n", + "semolinas\n", + "semple\n", + "semplice\n", + "sempre\n", + "sen\n", + "senarii\n", + "senarius\n", + "senary\n", + "senate\n", + "senates\n", + "senator\n", + "senatorial\n", + "senators\n", + "send\n", + "sendable\n", + "sendal\n", + "sendals\n", + "sender\n", + "senders\n", + "sending\n", + "sendoff\n", + "sendoffs\n", + "sends\n", + "seneca\n", + "senecas\n", + "senecio\n", + "senecios\n", + "senega\n", + "senegas\n", + "sengi\n", + "senhor\n", + "senhora\n", + "senhoras\n", + "senhores\n", + "senhors\n", + "senile\n", + "senilely\n", + "seniles\n", + "senilities\n", + "senility\n", + "senior\n", + "seniorities\n", + "seniority\n", + "seniors\n", + "seniti\n", + "senna\n", + "sennas\n", + "sennet\n", + "sennets\n", + "sennight\n", + "sennights\n", + "sennit\n", + "sennits\n", + "senopia\n", + "senopias\n", + "senor\n", + "senora\n", + "senoras\n", + "senores\n", + "senorita\n", + "senoritas\n", + "senors\n", + "sensa\n", + "sensate\n", + "sensated\n", + "sensates\n", + "sensating\n", + "sensation\n", + "sensational\n", + "sensations\n", + "sense\n", + "sensed\n", + "senseful\n", + "senseless\n", + "senselessly\n", + "senses\n", + "sensibilities\n", + "sensibility\n", + "sensible\n", + "sensibler\n", + "sensibles\n", + "sensiblest\n", + "sensibly\n", + "sensilla\n", + "sensing\n", + "sensitive\n", + "sensitiveness\n", + "sensitivenesses\n", + "sensitivities\n", + "sensitivity\n", + "sensitize\n", + "sensitized\n", + "sensitizes\n", + "sensitizing\n", + "sensor\n", + "sensoria\n", + "sensors\n", + "sensory\n", + "sensual\n", + "sensualist\n", + "sensualists\n", + "sensualities\n", + "sensuality\n", + "sensually\n", + "sensum\n", + "sensuous\n", + "sensuously\n", + "sensuousness\n", + "sensuousnesses\n", + "sent\n", + "sentence\n", + "sentenced\n", + "sentences\n", + "sentencing\n", + "sententious\n", + "senti\n", + "sentient\n", + "sentients\n", + "sentiment\n", + "sentimental\n", + "sentimentalism\n", + "sentimentalisms\n", + "sentimentalist\n", + "sentimentalists\n", + "sentimentalize\n", + "sentimentalized\n", + "sentimentalizes\n", + "sentimentalizing\n", + "sentimentally\n", + "sentiments\n", + "sentinel\n", + "sentineled\n", + "sentineling\n", + "sentinelled\n", + "sentinelling\n", + "sentinels\n", + "sentries\n", + "sentry\n", + "sepal\n", + "sepaled\n", + "sepaline\n", + "sepalled\n", + "sepaloid\n", + "sepalous\n", + "sepals\n", + "separable\n", + "separate\n", + "separated\n", + "separately\n", + "separates\n", + "separating\n", + "separation\n", + "separations\n", + "separator\n", + "separators\n", + "sepia\n", + "sepias\n", + "sepic\n", + "sepoy\n", + "sepoys\n", + "seppuku\n", + "seppukus\n", + "sepses\n", + "sepsis\n", + "sept\n", + "septa\n", + "septal\n", + "septaria\n", + "septate\n", + "september\n", + "septet\n", + "septets\n", + "septette\n", + "septettes\n", + "septic\n", + "septical\n", + "septics\n", + "septime\n", + "septimes\n", + "septs\n", + "septum\n", + "septuple\n", + "septupled\n", + "septuples\n", + "septupling\n", + "sepulcher\n", + "sepulchers\n", + "sepulchral\n", + "sepulchre\n", + "sepulchres\n", + "sequel\n", + "sequela\n", + "sequelae\n", + "sequels\n", + "sequence\n", + "sequenced\n", + "sequences\n", + "sequencies\n", + "sequencing\n", + "sequency\n", + "sequent\n", + "sequential\n", + "sequentially\n", + "sequents\n", + "sequester\n", + "sequestered\n", + "sequestering\n", + "sequesters\n", + "sequin\n", + "sequined\n", + "sequins\n", + "sequitur\n", + "sequiturs\n", + "sequoia\n", + "sequoias\n", + "ser\n", + "sera\n", + "serac\n", + "seracs\n", + "seraglio\n", + "seraglios\n", + "serai\n", + "serail\n", + "serails\n", + "serais\n", + "seral\n", + "serape\n", + "serapes\n", + "seraph\n", + "seraphic\n", + "seraphim\n", + "seraphims\n", + "seraphin\n", + "seraphs\n", + "serdab\n", + "serdabs\n", + "sere\n", + "sered\n", + "serein\n", + "sereins\n", + "serenade\n", + "serenaded\n", + "serenades\n", + "serenading\n", + "serenata\n", + "serenatas\n", + "serenate\n", + "serendipitous\n", + "serendipity\n", + "serene\n", + "serenely\n", + "serener\n", + "serenes\n", + "serenest\n", + "serenities\n", + "serenity\n", + "serer\n", + "seres\n", + "serest\n", + "serf\n", + "serfage\n", + "serfages\n", + "serfdom\n", + "serfdoms\n", + "serfhood\n", + "serfhoods\n", + "serfish\n", + "serflike\n", + "serfs\n", + "serge\n", + "sergeant\n", + "sergeants\n", + "serges\n", + "serging\n", + "sergings\n", + "serial\n", + "serially\n", + "serials\n", + "seriate\n", + "seriated\n", + "seriates\n", + "seriatim\n", + "seriating\n", + "sericin\n", + "sericins\n", + "seriema\n", + "seriemas\n", + "series\n", + "serif\n", + "serifs\n", + "serin\n", + "serine\n", + "serines\n", + "sering\n", + "seringa\n", + "seringas\n", + "serins\n", + "serious\n", + "seriously\n", + "seriousness\n", + "seriousnesses\n", + "serjeant\n", + "serjeants\n", + "sermon\n", + "sermonic\n", + "sermons\n", + "serologies\n", + "serology\n", + "serosa\n", + "serosae\n", + "serosal\n", + "serosas\n", + "serosities\n", + "serosity\n", + "serotine\n", + "serotines\n", + "serotype\n", + "serotypes\n", + "serous\n", + "serow\n", + "serows\n", + "serpent\n", + "serpentine\n", + "serpents\n", + "serpigines\n", + "serpigo\n", + "serpigoes\n", + "serranid\n", + "serranids\n", + "serrate\n", + "serrated\n", + "serrates\n", + "serrating\n", + "serried\n", + "serries\n", + "serry\n", + "serrying\n", + "sers\n", + "serum\n", + "serumal\n", + "serums\n", + "servable\n", + "serval\n", + "servals\n", + "servant\n", + "servants\n", + "serve\n", + "served\n", + "server\n", + "servers\n", + "serves\n", + "service\n", + "serviceable\n", + "serviced\n", + "serviceman\n", + "servicemen\n", + "servicer\n", + "servicers\n", + "services\n", + "servicing\n", + "servile\n", + "servilities\n", + "servility\n", + "serving\n", + "servings\n", + "servitor\n", + "servitors\n", + "servitude\n", + "servitudes\n", + "servo\n", + "servos\n", + "sesame\n", + "sesames\n", + "sesamoid\n", + "sesamoids\n", + "sessile\n", + "session\n", + "sessions\n", + "sesspool\n", + "sesspools\n", + "sesterce\n", + "sesterces\n", + "sestet\n", + "sestets\n", + "sestina\n", + "sestinas\n", + "sestine\n", + "sestines\n", + "set\n", + "seta\n", + "setae\n", + "setal\n", + "setback\n", + "setbacks\n", + "setiform\n", + "setline\n", + "setlines\n", + "setoff\n", + "setoffs\n", + "seton\n", + "setons\n", + "setose\n", + "setous\n", + "setout\n", + "setouts\n", + "sets\n", + "setscrew\n", + "setscrews\n", + "settee\n", + "settees\n", + "setter\n", + "setters\n", + "setting\n", + "settings\n", + "settle\n", + "settled\n", + "settlement\n", + "settlements\n", + "settler\n", + "settlers\n", + "settles\n", + "settling\n", + "settlings\n", + "settlor\n", + "settlors\n", + "setulose\n", + "setulous\n", + "setup\n", + "setups\n", + "seven\n", + "sevens\n", + "seventeen\n", + "seventeens\n", + "seventeenth\n", + "seventeenths\n", + "seventh\n", + "sevenths\n", + "seventies\n", + "seventieth\n", + "seventieths\n", + "seventy\n", + "sever\n", + "several\n", + "severals\n", + "severance\n", + "severances\n", + "severe\n", + "severed\n", + "severely\n", + "severer\n", + "severest\n", + "severing\n", + "severities\n", + "severity\n", + "severs\n", + "sew\n", + "sewage\n", + "sewages\n", + "sewan\n", + "sewans\n", + "sewar\n", + "sewars\n", + "sewed\n", + "sewer\n", + "sewerage\n", + "sewerages\n", + "sewers\n", + "sewing\n", + "sewings\n", + "sewn\n", + "sews\n", + "sex\n", + "sexed\n", + "sexes\n", + "sexier\n", + "sexiest\n", + "sexily\n", + "sexiness\n", + "sexinesses\n", + "sexing\n", + "sexism\n", + "sexisms\n", + "sexist\n", + "sexists\n", + "sexless\n", + "sexologies\n", + "sexology\n", + "sexpot\n", + "sexpots\n", + "sext\n", + "sextain\n", + "sextains\n", + "sextan\n", + "sextans\n", + "sextant\n", + "sextants\n", + "sextarii\n", + "sextet\n", + "sextets\n", + "sextette\n", + "sextettes\n", + "sextile\n", + "sextiles\n", + "sexto\n", + "sexton\n", + "sextons\n", + "sextos\n", + "sexts\n", + "sextuple\n", + "sextupled\n", + "sextuples\n", + "sextupling\n", + "sextuply\n", + "sexual\n", + "sexualities\n", + "sexuality\n", + "sexually\n", + "sexy\n", + "sferics\n", + "sforzato\n", + "sforzatos\n", + "sfumato\n", + "sfumatos\n", + "sh\n", + "shabbier\n", + "shabbiest\n", + "shabbily\n", + "shabbiness\n", + "shabbinesses\n", + "shabby\n", + "shack\n", + "shackle\n", + "shackled\n", + "shackler\n", + "shacklers\n", + "shackles\n", + "shackling\n", + "shacko\n", + "shackoes\n", + "shackos\n", + "shacks\n", + "shad\n", + "shadblow\n", + "shadblows\n", + "shadbush\n", + "shadbushes\n", + "shadchan\n", + "shadchanim\n", + "shadchans\n", + "shaddock\n", + "shaddocks\n", + "shade\n", + "shaded\n", + "shader\n", + "shaders\n", + "shades\n", + "shadflies\n", + "shadfly\n", + "shadier\n", + "shadiest\n", + "shadily\n", + "shading\n", + "shadings\n", + "shadoof\n", + "shadoofs\n", + "shadow\n", + "shadowed\n", + "shadower\n", + "shadowers\n", + "shadowier\n", + "shadowiest\n", + "shadowing\n", + "shadows\n", + "shadowy\n", + "shadrach\n", + "shadrachs\n", + "shads\n", + "shaduf\n", + "shadufs\n", + "shady\n", + "shaft\n", + "shafted\n", + "shafting\n", + "shaftings\n", + "shafts\n", + "shag\n", + "shagbark\n", + "shagbarks\n", + "shagged\n", + "shaggier\n", + "shaggiest\n", + "shaggily\n", + "shagging\n", + "shaggy\n", + "shagreen\n", + "shagreens\n", + "shags\n", + "shah\n", + "shahdom\n", + "shahdoms\n", + "shahs\n", + "shaird\n", + "shairds\n", + "shairn\n", + "shairns\n", + "shaitan\n", + "shaitans\n", + "shakable\n", + "shake\n", + "shaken\n", + "shakeout\n", + "shakeouts\n", + "shaker\n", + "shakers\n", + "shakes\n", + "shakeup\n", + "shakeups\n", + "shakier\n", + "shakiest\n", + "shakily\n", + "shakiness\n", + "shakinesses\n", + "shaking\n", + "shako\n", + "shakoes\n", + "shakos\n", + "shaky\n", + "shale\n", + "shaled\n", + "shales\n", + "shalier\n", + "shaliest\n", + "shall\n", + "shalloon\n", + "shalloons\n", + "shallop\n", + "shallops\n", + "shallot\n", + "shallots\n", + "shallow\n", + "shallowed\n", + "shallower\n", + "shallowest\n", + "shallowing\n", + "shallows\n", + "shalom\n", + "shalt\n", + "shaly\n", + "sham\n", + "shamable\n", + "shaman\n", + "shamanic\n", + "shamans\n", + "shamble\n", + "shambled\n", + "shambles\n", + "shambling\n", + "shame\n", + "shamed\n", + "shamefaced\n", + "shameful\n", + "shamefully\n", + "shameless\n", + "shamelessly\n", + "shames\n", + "shaming\n", + "shammas\n", + "shammash\n", + "shammashim\n", + "shammasim\n", + "shammed\n", + "shammer\n", + "shammers\n", + "shammes\n", + "shammied\n", + "shammies\n", + "shamming\n", + "shammos\n", + "shammosim\n", + "shammy\n", + "shammying\n", + "shamois\n", + "shamosim\n", + "shamoy\n", + "shamoyed\n", + "shamoying\n", + "shamoys\n", + "shampoo\n", + "shampooed\n", + "shampooing\n", + "shampoos\n", + "shamrock\n", + "shamrocks\n", + "shams\n", + "shamus\n", + "shamuses\n", + "shandies\n", + "shandy\n", + "shanghai\n", + "shanghaied\n", + "shanghaiing\n", + "shanghais\n", + "shank\n", + "shanked\n", + "shanking\n", + "shanks\n", + "shantey\n", + "shanteys\n", + "shanti\n", + "shanties\n", + "shantih\n", + "shantihs\n", + "shantis\n", + "shantung\n", + "shantungs\n", + "shanty\n", + "shapable\n", + "shape\n", + "shaped\n", + "shapeless\n", + "shapelier\n", + "shapeliest\n", + "shapely\n", + "shapen\n", + "shaper\n", + "shapers\n", + "shapes\n", + "shapeup\n", + "shapeups\n", + "shaping\n", + "sharable\n", + "shard\n", + "shards\n", + "share\n", + "sharecrop\n", + "sharecroped\n", + "sharecroping\n", + "sharecropper\n", + "sharecroppers\n", + "sharecrops\n", + "shared\n", + "shareholder\n", + "shareholders\n", + "sharer\n", + "sharers\n", + "shares\n", + "sharif\n", + "sharifs\n", + "sharing\n", + "shark\n", + "sharked\n", + "sharker\n", + "sharkers\n", + "sharking\n", + "sharks\n", + "sharn\n", + "sharns\n", + "sharny\n", + "sharp\n", + "sharped\n", + "sharpen\n", + "sharpened\n", + "sharpener\n", + "sharpeners\n", + "sharpening\n", + "sharpens\n", + "sharper\n", + "sharpers\n", + "sharpest\n", + "sharpie\n", + "sharpies\n", + "sharping\n", + "sharply\n", + "sharpness\n", + "sharpnesses\n", + "sharps\n", + "sharpshooter\n", + "sharpshooters\n", + "sharpshooting\n", + "sharpshootings\n", + "sharpy\n", + "shashlik\n", + "shashliks\n", + "shaslik\n", + "shasliks\n", + "shat\n", + "shatter\n", + "shattered\n", + "shattering\n", + "shatters\n", + "shaugh\n", + "shaughs\n", + "shaul\n", + "shauled\n", + "shauling\n", + "shauls\n", + "shavable\n", + "shave\n", + "shaved\n", + "shaven\n", + "shaver\n", + "shavers\n", + "shaves\n", + "shavie\n", + "shavies\n", + "shaving\n", + "shavings\n", + "shaw\n", + "shawed\n", + "shawing\n", + "shawl\n", + "shawled\n", + "shawling\n", + "shawls\n", + "shawm\n", + "shawms\n", + "shawn\n", + "shaws\n", + "shay\n", + "shays\n", + "she\n", + "shea\n", + "sheaf\n", + "sheafed\n", + "sheafing\n", + "sheafs\n", + "sheal\n", + "shealing\n", + "shealings\n", + "sheals\n", + "shear\n", + "sheared\n", + "shearer\n", + "shearers\n", + "shearing\n", + "shears\n", + "sheas\n", + "sheath\n", + "sheathe\n", + "sheathed\n", + "sheather\n", + "sheathers\n", + "sheathes\n", + "sheathing\n", + "sheaths\n", + "sheave\n", + "sheaved\n", + "sheaves\n", + "sheaving\n", + "shebang\n", + "shebangs\n", + "shebean\n", + "shebeans\n", + "shebeen\n", + "shebeens\n", + "shed\n", + "shedable\n", + "shedded\n", + "shedder\n", + "shedders\n", + "shedding\n", + "sheds\n", + "sheen\n", + "sheened\n", + "sheeney\n", + "sheeneys\n", + "sheenful\n", + "sheenie\n", + "sheenier\n", + "sheenies\n", + "sheeniest\n", + "sheening\n", + "sheens\n", + "sheeny\n", + "sheep\n", + "sheepdog\n", + "sheepdogs\n", + "sheepish\n", + "sheepman\n", + "sheepmen\n", + "sheepskin\n", + "sheepskins\n", + "sheer\n", + "sheered\n", + "sheerer\n", + "sheerest\n", + "sheering\n", + "sheerly\n", + "sheers\n", + "sheet\n", + "sheeted\n", + "sheeter\n", + "sheeters\n", + "sheetfed\n", + "sheeting\n", + "sheetings\n", + "sheets\n", + "sheeve\n", + "sheeves\n", + "shegetz\n", + "sheik\n", + "sheikdom\n", + "sheikdoms\n", + "sheikh\n", + "sheikhdom\n", + "sheikhdoms\n", + "sheikhs\n", + "sheiks\n", + "sheitan\n", + "sheitans\n", + "shekel\n", + "shekels\n", + "shelduck\n", + "shelducks\n", + "shelf\n", + "shelfful\n", + "shelffuls\n", + "shell\n", + "shellac\n", + "shellack\n", + "shellacked\n", + "shellacking\n", + "shellackings\n", + "shellacks\n", + "shellacs\n", + "shelled\n", + "sheller\n", + "shellers\n", + "shellfish\n", + "shellfishes\n", + "shellier\n", + "shelliest\n", + "shelling\n", + "shells\n", + "shelly\n", + "shelter\n", + "sheltered\n", + "sheltering\n", + "shelters\n", + "sheltie\n", + "shelties\n", + "shelty\n", + "shelve\n", + "shelved\n", + "shelver\n", + "shelvers\n", + "shelves\n", + "shelvier\n", + "shelviest\n", + "shelving\n", + "shelvings\n", + "shelvy\n", + "shenanigans\n", + "shend\n", + "shending\n", + "shends\n", + "shent\n", + "sheol\n", + "sheols\n", + "shepherd\n", + "shepherded\n", + "shepherdess\n", + "shepherdesses\n", + "shepherding\n", + "shepherds\n", + "sherbert\n", + "sherberts\n", + "sherbet\n", + "sherbets\n", + "sherd\n", + "sherds\n", + "shereef\n", + "shereefs\n", + "sherif\n", + "sheriff\n", + "sheriffs\n", + "sherifs\n", + "sherlock\n", + "sherlocks\n", + "sheroot\n", + "sheroots\n", + "sherries\n", + "sherris\n", + "sherrises\n", + "sherry\n", + "shes\n", + "shetland\n", + "shetlands\n", + "sheuch\n", + "sheuchs\n", + "sheugh\n", + "sheughs\n", + "shew\n", + "shewed\n", + "shewer\n", + "shewers\n", + "shewing\n", + "shewn\n", + "shews\n", + "shh\n", + "shibah\n", + "shibahs\n", + "shicksa\n", + "shicksas\n", + "shied\n", + "shiel\n", + "shield\n", + "shielded\n", + "shielder\n", + "shielders\n", + "shielding\n", + "shields\n", + "shieling\n", + "shielings\n", + "shiels\n", + "shier\n", + "shiers\n", + "shies\n", + "shiest\n", + "shift\n", + "shifted\n", + "shifter\n", + "shifters\n", + "shiftier\n", + "shiftiest\n", + "shiftily\n", + "shifting\n", + "shiftless\n", + "shiftlessness\n", + "shiftlessnesses\n", + "shifts\n", + "shifty\n", + "shigella\n", + "shigellae\n", + "shigellas\n", + "shikar\n", + "shikaree\n", + "shikarees\n", + "shikari\n", + "shikaris\n", + "shikarred\n", + "shikarring\n", + "shikars\n", + "shiksa\n", + "shiksas\n", + "shikse\n", + "shikses\n", + "shilingi\n", + "shill\n", + "shillala\n", + "shillalas\n", + "shilled\n", + "shillelagh\n", + "shillelaghs\n", + "shilling\n", + "shillings\n", + "shills\n", + "shilpit\n", + "shily\n", + "shim\n", + "shimmed\n", + "shimmer\n", + "shimmered\n", + "shimmering\n", + "shimmers\n", + "shimmery\n", + "shimmied\n", + "shimmies\n", + "shimming\n", + "shimmy\n", + "shimmying\n", + "shims\n", + "shin\n", + "shinbone\n", + "shinbones\n", + "shindies\n", + "shindig\n", + "shindigs\n", + "shindy\n", + "shindys\n", + "shine\n", + "shined\n", + "shiner\n", + "shiners\n", + "shines\n", + "shingle\n", + "shingled\n", + "shingler\n", + "shinglers\n", + "shingles\n", + "shingling\n", + "shingly\n", + "shinier\n", + "shiniest\n", + "shinily\n", + "shining\n", + "shinleaf\n", + "shinleafs\n", + "shinleaves\n", + "shinned\n", + "shinneries\n", + "shinnery\n", + "shinney\n", + "shinneys\n", + "shinnied\n", + "shinnies\n", + "shinning\n", + "shinny\n", + "shinnying\n", + "shins\n", + "shiny\n", + "ship\n", + "shipboard\n", + "shipboards\n", + "shipbuilder\n", + "shipbuilders\n", + "shiplap\n", + "shiplaps\n", + "shipload\n", + "shiploads\n", + "shipman\n", + "shipmate\n", + "shipmates\n", + "shipmen\n", + "shipment\n", + "shipments\n", + "shipped\n", + "shippen\n", + "shippens\n", + "shipper\n", + "shippers\n", + "shipping\n", + "shippings\n", + "shippon\n", + "shippons\n", + "ships\n", + "shipshape\n", + "shipside\n", + "shipsides\n", + "shipway\n", + "shipways\n", + "shipworm\n", + "shipworms\n", + "shipwreck\n", + "shipwrecked\n", + "shipwrecking\n", + "shipwrecks\n", + "shipyard\n", + "shipyards\n", + "shire\n", + "shires\n", + "shirk\n", + "shirked\n", + "shirker\n", + "shirkers\n", + "shirking\n", + "shirks\n", + "shirr\n", + "shirred\n", + "shirring\n", + "shirrings\n", + "shirrs\n", + "shirt\n", + "shirtier\n", + "shirtiest\n", + "shirting\n", + "shirtings\n", + "shirtless\n", + "shirts\n", + "shirty\n", + "shist\n", + "shists\n", + "shiv\n", + "shiva\n", + "shivah\n", + "shivahs\n", + "shivaree\n", + "shivareed\n", + "shivareeing\n", + "shivarees\n", + "shivas\n", + "shive\n", + "shiver\n", + "shivered\n", + "shiverer\n", + "shiverers\n", + "shivering\n", + "shivers\n", + "shivery\n", + "shives\n", + "shivs\n", + "shkotzim\n", + "shlemiel\n", + "shlemiels\n", + "shlock\n", + "shlocks\n", + "shmo\n", + "shmoes\n", + "shnaps\n", + "shoal\n", + "shoaled\n", + "shoaler\n", + "shoalest\n", + "shoalier\n", + "shoaliest\n", + "shoaling\n", + "shoals\n", + "shoaly\n", + "shoat\n", + "shoats\n", + "shock\n", + "shocked\n", + "shocker\n", + "shockers\n", + "shocking\n", + "shockproof\n", + "shocks\n", + "shod\n", + "shodden\n", + "shoddier\n", + "shoddies\n", + "shoddiest\n", + "shoddily\n", + "shoddiness\n", + "shoddinesses\n", + "shoddy\n", + "shoe\n", + "shoebill\n", + "shoebills\n", + "shoed\n", + "shoehorn\n", + "shoehorned\n", + "shoehorning\n", + "shoehorns\n", + "shoeing\n", + "shoelace\n", + "shoelaces\n", + "shoemaker\n", + "shoemakers\n", + "shoepac\n", + "shoepack\n", + "shoepacks\n", + "shoepacs\n", + "shoer\n", + "shoers\n", + "shoes\n", + "shoetree\n", + "shoetrees\n", + "shofar\n", + "shofars\n", + "shofroth\n", + "shog\n", + "shogged\n", + "shogging\n", + "shogs\n", + "shogun\n", + "shogunal\n", + "shoguns\n", + "shoji\n", + "shojis\n", + "sholom\n", + "shone\n", + "shoo\n", + "shooed\n", + "shooflies\n", + "shoofly\n", + "shooing\n", + "shook\n", + "shooks\n", + "shool\n", + "shooled\n", + "shooling\n", + "shools\n", + "shoon\n", + "shoos\n", + "shoot\n", + "shooter\n", + "shooters\n", + "shooting\n", + "shootings\n", + "shoots\n", + "shop\n", + "shopboy\n", + "shopboys\n", + "shopgirl\n", + "shopgirls\n", + "shophar\n", + "shophars\n", + "shophroth\n", + "shopkeeper\n", + "shopkeepers\n", + "shoplift\n", + "shoplifted\n", + "shoplifter\n", + "shoplifters\n", + "shoplifting\n", + "shoplifts\n", + "shopman\n", + "shopmen\n", + "shoppe\n", + "shopped\n", + "shopper\n", + "shoppers\n", + "shoppes\n", + "shopping\n", + "shoppings\n", + "shops\n", + "shoptalk\n", + "shoptalks\n", + "shopworn\n", + "shoran\n", + "shorans\n", + "shore\n", + "shorebird\n", + "shorebirds\n", + "shored\n", + "shoreless\n", + "shores\n", + "shoring\n", + "shorings\n", + "shorl\n", + "shorls\n", + "shorn\n", + "short\n", + "shortage\n", + "shortages\n", + "shortcake\n", + "shortcakes\n", + "shortchange\n", + "shortchanged\n", + "shortchanges\n", + "shortchanging\n", + "shortcoming\n", + "shortcomings\n", + "shortcut\n", + "shortcuts\n", + "shorted\n", + "shorten\n", + "shortened\n", + "shortening\n", + "shortens\n", + "shorter\n", + "shortest\n", + "shorthand\n", + "shorthands\n", + "shortia\n", + "shortias\n", + "shortie\n", + "shorties\n", + "shorting\n", + "shortish\n", + "shortliffe\n", + "shortly\n", + "shortness\n", + "shortnesses\n", + "shorts\n", + "shortsighted\n", + "shorty\n", + "shot\n", + "shote\n", + "shotes\n", + "shotgun\n", + "shotgunned\n", + "shotgunning\n", + "shotguns\n", + "shots\n", + "shott\n", + "shotted\n", + "shotten\n", + "shotting\n", + "shotts\n", + "should\n", + "shoulder\n", + "shouldered\n", + "shouldering\n", + "shoulders\n", + "shouldest\n", + "shouldst\n", + "shout\n", + "shouted\n", + "shouter\n", + "shouters\n", + "shouting\n", + "shouts\n", + "shove\n", + "shoved\n", + "shovel\n", + "shoveled\n", + "shoveler\n", + "shovelers\n", + "shoveling\n", + "shovelled\n", + "shovelling\n", + "shovels\n", + "shover\n", + "shovers\n", + "shoves\n", + "shoving\n", + "show\n", + "showboat\n", + "showboats\n", + "showcase\n", + "showcased\n", + "showcases\n", + "showcasing\n", + "showdown\n", + "showdowns\n", + "showed\n", + "shower\n", + "showered\n", + "showering\n", + "showers\n", + "showery\n", + "showgirl\n", + "showgirls\n", + "showier\n", + "showiest\n", + "showily\n", + "showiness\n", + "showinesses\n", + "showing\n", + "showings\n", + "showman\n", + "showmen\n", + "shown\n", + "showoff\n", + "showoffs\n", + "showroom\n", + "showrooms\n", + "shows\n", + "showy\n", + "shrank\n", + "shrapnel\n", + "shred\n", + "shredded\n", + "shredder\n", + "shredders\n", + "shredding\n", + "shreds\n", + "shrew\n", + "shrewd\n", + "shrewder\n", + "shrewdest\n", + "shrewdly\n", + "shrewdness\n", + "shrewdnesses\n", + "shrewed\n", + "shrewing\n", + "shrewish\n", + "shrews\n", + "shri\n", + "shriek\n", + "shrieked\n", + "shrieker\n", + "shriekers\n", + "shriekier\n", + "shriekiest\n", + "shrieking\n", + "shrieks\n", + "shrieky\n", + "shrieval\n", + "shrieve\n", + "shrieved\n", + "shrieves\n", + "shrieving\n", + "shrift\n", + "shrifts\n", + "shrike\n", + "shrikes\n", + "shrill\n", + "shrilled\n", + "shriller\n", + "shrillest\n", + "shrilling\n", + "shrills\n", + "shrilly\n", + "shrimp\n", + "shrimped\n", + "shrimper\n", + "shrimpers\n", + "shrimpier\n", + "shrimpiest\n", + "shrimping\n", + "shrimps\n", + "shrimpy\n", + "shrine\n", + "shrined\n", + "shrines\n", + "shrining\n", + "shrink\n", + "shrinkable\n", + "shrinkage\n", + "shrinkages\n", + "shrinker\n", + "shrinkers\n", + "shrinking\n", + "shrinks\n", + "shris\n", + "shrive\n", + "shrived\n", + "shrivel\n", + "shriveled\n", + "shriveling\n", + "shrivelled\n", + "shrivelling\n", + "shrivels\n", + "shriven\n", + "shriver\n", + "shrivers\n", + "shrives\n", + "shriving\n", + "shroff\n", + "shroffed\n", + "shroffing\n", + "shroffs\n", + "shroud\n", + "shrouded\n", + "shrouding\n", + "shrouds\n", + "shrove\n", + "shrub\n", + "shrubberies\n", + "shrubbery\n", + "shrubbier\n", + "shrubbiest\n", + "shrubby\n", + "shrubs\n", + "shrug\n", + "shrugged\n", + "shrugging\n", + "shrugs\n", + "shrunk\n", + "shrunken\n", + "shtetel\n", + "shtetl\n", + "shtetlach\n", + "shtick\n", + "shticks\n", + "shuck\n", + "shucked\n", + "shucker\n", + "shuckers\n", + "shucking\n", + "shuckings\n", + "shucks\n", + "shudder\n", + "shuddered\n", + "shuddering\n", + "shudders\n", + "shuddery\n", + "shuffle\n", + "shuffleboard\n", + "shuffleboards\n", + "shuffled\n", + "shuffler\n", + "shufflers\n", + "shuffles\n", + "shuffling\n", + "shul\n", + "shuln\n", + "shuls\n", + "shun\n", + "shunned\n", + "shunner\n", + "shunners\n", + "shunning\n", + "shunpike\n", + "shunpikes\n", + "shuns\n", + "shunt\n", + "shunted\n", + "shunter\n", + "shunters\n", + "shunting\n", + "shunts\n", + "shush\n", + "shushed\n", + "shushes\n", + "shushing\n", + "shut\n", + "shutdown\n", + "shutdowns\n", + "shute\n", + "shuted\n", + "shutes\n", + "shuteye\n", + "shuteyes\n", + "shuting\n", + "shutoff\n", + "shutoffs\n", + "shutout\n", + "shutouts\n", + "shuts\n", + "shutter\n", + "shuttered\n", + "shuttering\n", + "shutters\n", + "shutting\n", + "shuttle\n", + "shuttlecock\n", + "shuttlecocks\n", + "shuttled\n", + "shuttles\n", + "shuttling\n", + "shwanpan\n", + "shwanpans\n", + "shy\n", + "shyer\n", + "shyers\n", + "shyest\n", + "shying\n", + "shylock\n", + "shylocked\n", + "shylocking\n", + "shylocks\n", + "shyly\n", + "shyness\n", + "shynesses\n", + "shyster\n", + "shysters\n", + "si\n", + "sial\n", + "sialic\n", + "sialoid\n", + "sials\n", + "siamang\n", + "siamangs\n", + "siamese\n", + "siameses\n", + "sib\n", + "sibb\n", + "sibbs\n", + "sibilant\n", + "sibilants\n", + "sibilate\n", + "sibilated\n", + "sibilates\n", + "sibilating\n", + "sibling\n", + "siblings\n", + "sibs\n", + "sibyl\n", + "sibylic\n", + "sibyllic\n", + "sibyls\n", + "sic\n", + "siccan\n", + "sicced\n", + "siccing\n", + "sice\n", + "sices\n", + "sick\n", + "sickbay\n", + "sickbays\n", + "sickbed\n", + "sickbeds\n", + "sicked\n", + "sicken\n", + "sickened\n", + "sickener\n", + "sickeners\n", + "sickening\n", + "sickens\n", + "sicker\n", + "sickerly\n", + "sickest\n", + "sicking\n", + "sickish\n", + "sickle\n", + "sickled\n", + "sickles\n", + "sicklied\n", + "sicklier\n", + "sicklies\n", + "sickliest\n", + "sicklily\n", + "sickling\n", + "sickly\n", + "sicklying\n", + "sickness\n", + "sicknesses\n", + "sickroom\n", + "sickrooms\n", + "sicks\n", + "sics\n", + "siddur\n", + "siddurim\n", + "siddurs\n", + "side\n", + "sidearm\n", + "sideband\n", + "sidebands\n", + "sideboard\n", + "sideboards\n", + "sideburns\n", + "sidecar\n", + "sidecars\n", + "sided\n", + "sidehill\n", + "sidehills\n", + "sidekick\n", + "sidekicks\n", + "sideline\n", + "sidelined\n", + "sidelines\n", + "sideling\n", + "sidelining\n", + "sidelong\n", + "sideman\n", + "sidemen\n", + "sidereal\n", + "siderite\n", + "siderites\n", + "sides\n", + "sideshow\n", + "sideshows\n", + "sideslip\n", + "sideslipped\n", + "sideslipping\n", + "sideslips\n", + "sidespin\n", + "sidespins\n", + "sidestep\n", + "sidestepped\n", + "sidestepping\n", + "sidesteps\n", + "sideswipe\n", + "sideswiped\n", + "sideswipes\n", + "sideswiping\n", + "sidetrack\n", + "sidetracked\n", + "sidetracking\n", + "sidetracks\n", + "sidewalk\n", + "sidewalks\n", + "sidewall\n", + "sidewalls\n", + "sideward\n", + "sideway\n", + "sideways\n", + "sidewise\n", + "siding\n", + "sidings\n", + "sidle\n", + "sidled\n", + "sidler\n", + "sidlers\n", + "sidles\n", + "sidling\n", + "siege\n", + "sieged\n", + "sieges\n", + "sieging\n", + "siemens\n", + "sienite\n", + "sienites\n", + "sienna\n", + "siennas\n", + "sierozem\n", + "sierozems\n", + "sierra\n", + "sierran\n", + "sierras\n", + "siesta\n", + "siestas\n", + "sieur\n", + "sieurs\n", + "sieva\n", + "sieve\n", + "sieved\n", + "sieves\n", + "sieving\n", + "siffleur\n", + "siffleurs\n", + "sift\n", + "sifted\n", + "sifter\n", + "sifters\n", + "sifting\n", + "siftings\n", + "sifts\n", + "siganid\n", + "siganids\n", + "sigh\n", + "sighed\n", + "sigher\n", + "sighers\n", + "sighing\n", + "sighless\n", + "sighlike\n", + "sighs\n", + "sight\n", + "sighted\n", + "sighter\n", + "sighters\n", + "sighting\n", + "sightless\n", + "sightlier\n", + "sightliest\n", + "sightly\n", + "sights\n", + "sightsaw\n", + "sightsee\n", + "sightseeing\n", + "sightseen\n", + "sightseer\n", + "sightseers\n", + "sightsees\n", + "sigil\n", + "sigils\n", + "sigloi\n", + "siglos\n", + "sigma\n", + "sigmas\n", + "sigmate\n", + "sigmoid\n", + "sigmoids\n", + "sign\n", + "signal\n", + "signaled\n", + "signaler\n", + "signalers\n", + "signaling\n", + "signalled\n", + "signalling\n", + "signally\n", + "signals\n", + "signatories\n", + "signatory\n", + "signature\n", + "signatures\n", + "signed\n", + "signer\n", + "signers\n", + "signet\n", + "signeted\n", + "signeting\n", + "signets\n", + "signficance\n", + "signficances\n", + "signficant\n", + "signficantly\n", + "significance\n", + "significances\n", + "significant\n", + "significantly\n", + "signification\n", + "significations\n", + "signified\n", + "signifies\n", + "signify\n", + "signifying\n", + "signing\n", + "signior\n", + "signiori\n", + "signiories\n", + "signiors\n", + "signiory\n", + "signor\n", + "signora\n", + "signoras\n", + "signore\n", + "signori\n", + "signories\n", + "signors\n", + "signory\n", + "signpost\n", + "signposted\n", + "signposting\n", + "signposts\n", + "signs\n", + "sike\n", + "siker\n", + "sikes\n", + "silage\n", + "silages\n", + "silane\n", + "silanes\n", + "sild\n", + "silds\n", + "silence\n", + "silenced\n", + "silencer\n", + "silencers\n", + "silences\n", + "silencing\n", + "sileni\n", + "silent\n", + "silenter\n", + "silentest\n", + "silently\n", + "silents\n", + "silenus\n", + "silesia\n", + "silesias\n", + "silex\n", + "silexes\n", + "silhouette\n", + "silhouetted\n", + "silhouettes\n", + "silhouetting\n", + "silica\n", + "silicas\n", + "silicate\n", + "silicates\n", + "silicic\n", + "silicide\n", + "silicides\n", + "silicified\n", + "silicifies\n", + "silicify\n", + "silicifying\n", + "silicium\n", + "siliciums\n", + "silicle\n", + "silicles\n", + "silicon\n", + "silicone\n", + "silicones\n", + "silicons\n", + "siliqua\n", + "siliquae\n", + "silique\n", + "siliques\n", + "silk\n", + "silked\n", + "silken\n", + "silkier\n", + "silkiest\n", + "silkily\n", + "silking\n", + "silklike\n", + "silks\n", + "silkweed\n", + "silkweeds\n", + "silkworm\n", + "silkworms\n", + "silky\n", + "sill\n", + "sillabub\n", + "sillabubs\n", + "siller\n", + "sillers\n", + "sillibib\n", + "sillibibs\n", + "sillier\n", + "sillies\n", + "silliest\n", + "sillily\n", + "silliness\n", + "sillinesses\n", + "sills\n", + "silly\n", + "silo\n", + "siloed\n", + "siloing\n", + "silos\n", + "siloxane\n", + "siloxanes\n", + "silt\n", + "silted\n", + "siltier\n", + "siltiest\n", + "silting\n", + "silts\n", + "silty\n", + "silurid\n", + "silurids\n", + "siluroid\n", + "siluroids\n", + "silva\n", + "silvae\n", + "silvan\n", + "silvans\n", + "silvas\n", + "silver\n", + "silvered\n", + "silverer\n", + "silverers\n", + "silvering\n", + "silverly\n", + "silvern\n", + "silvers\n", + "silverware\n", + "silverwares\n", + "silvery\n", + "silvical\n", + "silvics\n", + "sim\n", + "sima\n", + "simar\n", + "simars\n", + "simaruba\n", + "simarubas\n", + "simas\n", + "simazine\n", + "simazines\n", + "simian\n", + "simians\n", + "similar\n", + "similarities\n", + "similarity\n", + "similarly\n", + "simile\n", + "similes\n", + "similitude\n", + "similitudes\n", + "simioid\n", + "simious\n", + "simitar\n", + "simitars\n", + "simlin\n", + "simlins\n", + "simmer\n", + "simmered\n", + "simmering\n", + "simmers\n", + "simnel\n", + "simnels\n", + "simoleon\n", + "simoleons\n", + "simoniac\n", + "simoniacs\n", + "simonies\n", + "simonist\n", + "simonists\n", + "simonize\n", + "simonized\n", + "simonizes\n", + "simonizing\n", + "simony\n", + "simoom\n", + "simooms\n", + "simoon\n", + "simoons\n", + "simp\n", + "simper\n", + "simpered\n", + "simperer\n", + "simperers\n", + "simpering\n", + "simpers\n", + "simple\n", + "simpleness\n", + "simplenesses\n", + "simpler\n", + "simples\n", + "simplest\n", + "simpleton\n", + "simpletons\n", + "simplex\n", + "simplexes\n", + "simplices\n", + "simplicia\n", + "simplicities\n", + "simplicity\n", + "simplification\n", + "simplifications\n", + "simplified\n", + "simplifies\n", + "simplify\n", + "simplifying\n", + "simplism\n", + "simplisms\n", + "simply\n", + "simps\n", + "sims\n", + "simulant\n", + "simulants\n", + "simular\n", + "simulars\n", + "simulate\n", + "simulated\n", + "simulates\n", + "simulating\n", + "simulation\n", + "simulations\n", + "simultaneous\n", + "simultaneously\n", + "simultaneousness\n", + "simultaneousnesses\n", + "sin\n", + "sinapism\n", + "sinapisms\n", + "since\n", + "sincere\n", + "sincerely\n", + "sincerer\n", + "sincerest\n", + "sincerities\n", + "sincerity\n", + "sincipita\n", + "sinciput\n", + "sinciputs\n", + "sine\n", + "sinecure\n", + "sinecures\n", + "sines\n", + "sinew\n", + "sinewed\n", + "sinewing\n", + "sinews\n", + "sinewy\n", + "sinfonia\n", + "sinfonie\n", + "sinful\n", + "sinfully\n", + "sing\n", + "singable\n", + "singe\n", + "singed\n", + "singeing\n", + "singer\n", + "singers\n", + "singes\n", + "singing\n", + "single\n", + "singled\n", + "singleness\n", + "singlenesses\n", + "singles\n", + "singlet\n", + "singlets\n", + "singling\n", + "singly\n", + "sings\n", + "singsong\n", + "singsongs\n", + "singular\n", + "singularities\n", + "singularity\n", + "singularly\n", + "singulars\n", + "sinh\n", + "sinhs\n", + "sinicize\n", + "sinicized\n", + "sinicizes\n", + "sinicizing\n", + "sinister\n", + "sink\n", + "sinkable\n", + "sinkage\n", + "sinkages\n", + "sinker\n", + "sinkers\n", + "sinkhole\n", + "sinkholes\n", + "sinking\n", + "sinks\n", + "sinless\n", + "sinned\n", + "sinner\n", + "sinners\n", + "sinning\n", + "sinologies\n", + "sinology\n", + "sinopia\n", + "sinopias\n", + "sinopie\n", + "sins\n", + "sinsyne\n", + "sinter\n", + "sintered\n", + "sintering\n", + "sinters\n", + "sinuate\n", + "sinuated\n", + "sinuates\n", + "sinuating\n", + "sinuous\n", + "sinuousities\n", + "sinuousity\n", + "sinuously\n", + "sinus\n", + "sinuses\n", + "sinusoid\n", + "sinusoids\n", + "sip\n", + "sipe\n", + "siped\n", + "sipes\n", + "siphon\n", + "siphonal\n", + "siphoned\n", + "siphonic\n", + "siphoning\n", + "siphons\n", + "siping\n", + "sipped\n", + "sipper\n", + "sippers\n", + "sippet\n", + "sippets\n", + "sipping\n", + "sips\n", + "sir\n", + "sirdar\n", + "sirdars\n", + "sire\n", + "sired\n", + "siree\n", + "sirees\n", + "siren\n", + "sirenian\n", + "sirenians\n", + "sirens\n", + "sires\n", + "siring\n", + "sirloin\n", + "sirloins\n", + "sirocco\n", + "siroccos\n", + "sirra\n", + "sirrah\n", + "sirrahs\n", + "sirras\n", + "sirree\n", + "sirrees\n", + "sirs\n", + "sirup\n", + "sirups\n", + "sirupy\n", + "sirvente\n", + "sirventes\n", + "sis\n", + "sisal\n", + "sisals\n", + "sises\n", + "siskin\n", + "siskins\n", + "sissier\n", + "sissies\n", + "sissiest\n", + "sissy\n", + "sissyish\n", + "sister\n", + "sistered\n", + "sisterhood\n", + "sisterhoods\n", + "sistering\n", + "sisterly\n", + "sisters\n", + "sistra\n", + "sistroid\n", + "sistrum\n", + "sistrums\n", + "sit\n", + "sitar\n", + "sitarist\n", + "sitarists\n", + "sitars\n", + "site\n", + "sited\n", + "sites\n", + "sith\n", + "sithence\n", + "sithens\n", + "siti\n", + "siting\n", + "sitologies\n", + "sitology\n", + "sits\n", + "sitten\n", + "sitter\n", + "sitters\n", + "sitting\n", + "sittings\n", + "situate\n", + "situated\n", + "situates\n", + "situating\n", + "situation\n", + "situations\n", + "situs\n", + "situses\n", + "sitzmark\n", + "sitzmarks\n", + "siver\n", + "sivers\n", + "six\n", + "sixes\n", + "sixfold\n", + "sixmo\n", + "sixmos\n", + "sixpence\n", + "sixpences\n", + "sixpenny\n", + "sixte\n", + "sixteen\n", + "sixteens\n", + "sixteenth\n", + "sixteenths\n", + "sixtes\n", + "sixth\n", + "sixthly\n", + "sixths\n", + "sixties\n", + "sixtieth\n", + "sixtieths\n", + "sixty\n", + "sizable\n", + "sizably\n", + "sizar\n", + "sizars\n", + "size\n", + "sizeable\n", + "sizeably\n", + "sized\n", + "sizer\n", + "sizers\n", + "sizes\n", + "sizier\n", + "siziest\n", + "siziness\n", + "sizinesses\n", + "sizing\n", + "sizings\n", + "sizy\n", + "sizzle\n", + "sizzled\n", + "sizzler\n", + "sizzlers\n", + "sizzles\n", + "sizzling\n", + "skag\n", + "skags\n", + "skald\n", + "skaldic\n", + "skalds\n", + "skat\n", + "skate\n", + "skated\n", + "skater\n", + "skaters\n", + "skates\n", + "skating\n", + "skatings\n", + "skatol\n", + "skatole\n", + "skatoles\n", + "skatols\n", + "skats\n", + "skean\n", + "skeane\n", + "skeanes\n", + "skeans\n", + "skee\n", + "skeed\n", + "skeeing\n", + "skeen\n", + "skeens\n", + "skees\n", + "skeet\n", + "skeeter\n", + "skeeters\n", + "skeets\n", + "skeg\n", + "skegs\n", + "skeigh\n", + "skein\n", + "skeined\n", + "skeining\n", + "skeins\n", + "skeletal\n", + "skeleton\n", + "skeletons\n", + "skellum\n", + "skellums\n", + "skelp\n", + "skelped\n", + "skelping\n", + "skelpit\n", + "skelps\n", + "skelter\n", + "skeltered\n", + "skeltering\n", + "skelters\n", + "skene\n", + "skenes\n", + "skep\n", + "skeps\n", + "skepsis\n", + "skepsises\n", + "skeptic\n", + "skeptical\n", + "skepticism\n", + "skepticisms\n", + "skeptics\n", + "skerries\n", + "skerry\n", + "sketch\n", + "sketched\n", + "sketcher\n", + "sketchers\n", + "sketches\n", + "sketchier\n", + "sketchiest\n", + "sketching\n", + "sketchy\n", + "skew\n", + "skewback\n", + "skewbacks\n", + "skewbald\n", + "skewbalds\n", + "skewed\n", + "skewer\n", + "skewered\n", + "skewering\n", + "skewers\n", + "skewing\n", + "skewness\n", + "skewnesses\n", + "skews\n", + "ski\n", + "skiable\n", + "skiagram\n", + "skiagrams\n", + "skibob\n", + "skibobs\n", + "skid\n", + "skidded\n", + "skidder\n", + "skidders\n", + "skiddier\n", + "skiddiest\n", + "skidding\n", + "skiddoo\n", + "skiddooed\n", + "skiddooing\n", + "skiddoos\n", + "skiddy\n", + "skidoo\n", + "skidooed\n", + "skidooing\n", + "skidoos\n", + "skids\n", + "skidway\n", + "skidways\n", + "skied\n", + "skier\n", + "skiers\n", + "skies\n", + "skiey\n", + "skiff\n", + "skiffle\n", + "skiffled\n", + "skiffles\n", + "skiffling\n", + "skiffs\n", + "skiing\n", + "skiings\n", + "skiis\n", + "skijorer\n", + "skijorers\n", + "skilful\n", + "skill\n", + "skilled\n", + "skilless\n", + "skillet\n", + "skillets\n", + "skillful\n", + "skillfully\n", + "skillfulness\n", + "skillfulnesses\n", + "skilling\n", + "skillings\n", + "skills\n", + "skim\n", + "skimmed\n", + "skimmer\n", + "skimmers\n", + "skimming\n", + "skimmings\n", + "skimo\n", + "skimos\n", + "skimp\n", + "skimped\n", + "skimpier\n", + "skimpiest\n", + "skimpily\n", + "skimping\n", + "skimps\n", + "skimpy\n", + "skims\n", + "skin\n", + "skinflint\n", + "skinflints\n", + "skinful\n", + "skinfuls\n", + "skinhead\n", + "skinheads\n", + "skink\n", + "skinked\n", + "skinker\n", + "skinkers\n", + "skinking\n", + "skinks\n", + "skinless\n", + "skinlike\n", + "skinned\n", + "skinner\n", + "skinners\n", + "skinnier\n", + "skinniest\n", + "skinning\n", + "skinny\n", + "skins\n", + "skint\n", + "skintight\n", + "skioring\n", + "skiorings\n", + "skip\n", + "skipjack\n", + "skipjacks\n", + "skiplane\n", + "skiplanes\n", + "skipped\n", + "skipper\n", + "skippered\n", + "skippering\n", + "skippers\n", + "skippet\n", + "skippets\n", + "skipping\n", + "skips\n", + "skirl\n", + "skirled\n", + "skirling\n", + "skirls\n", + "skirmish\n", + "skirmished\n", + "skirmishes\n", + "skirmishing\n", + "skirr\n", + "skirred\n", + "skirret\n", + "skirrets\n", + "skirring\n", + "skirrs\n", + "skirt\n", + "skirted\n", + "skirter\n", + "skirters\n", + "skirting\n", + "skirtings\n", + "skirts\n", + "skis\n", + "skit\n", + "skite\n", + "skited\n", + "skites\n", + "skiting\n", + "skits\n", + "skitter\n", + "skittered\n", + "skitterier\n", + "skitteriest\n", + "skittering\n", + "skitters\n", + "skittery\n", + "skittish\n", + "skittle\n", + "skittles\n", + "skive\n", + "skived\n", + "skiver\n", + "skivers\n", + "skives\n", + "skiving\n", + "skivvies\n", + "skivvy\n", + "skiwear\n", + "skiwears\n", + "sklent\n", + "sklented\n", + "sklenting\n", + "sklents\n", + "skoal\n", + "skoaled\n", + "skoaling\n", + "skoals\n", + "skookum\n", + "skreegh\n", + "skreeghed\n", + "skreeghing\n", + "skreeghs\n", + "skreigh\n", + "skreighed\n", + "skreighing\n", + "skreighs\n", + "skua\n", + "skuas\n", + "skulk\n", + "skulked\n", + "skulker\n", + "skulkers\n", + "skulking\n", + "skulks\n", + "skull\n", + "skullcap\n", + "skullcaps\n", + "skulled\n", + "skulls\n", + "skunk\n", + "skunked\n", + "skunking\n", + "skunks\n", + "sky\n", + "skyborne\n", + "skycap\n", + "skycaps\n", + "skydive\n", + "skydived\n", + "skydiver\n", + "skydivers\n", + "skydives\n", + "skydiving\n", + "skydove\n", + "skyed\n", + "skyey\n", + "skyhook\n", + "skyhooks\n", + "skying\n", + "skyjack\n", + "skyjacked\n", + "skyjacking\n", + "skyjacks\n", + "skylark\n", + "skylarked\n", + "skylarking\n", + "skylarks\n", + "skylight\n", + "skylights\n", + "skyline\n", + "skylines\n", + "skyman\n", + "skymen\n", + "skyphoi\n", + "skyphos\n", + "skyrocket\n", + "skyrocketed\n", + "skyrocketing\n", + "skyrockets\n", + "skysail\n", + "skysails\n", + "skyscraper\n", + "skyscrapers\n", + "skyward\n", + "skywards\n", + "skyway\n", + "skyways\n", + "skywrite\n", + "skywrites\n", + "skywriting\n", + "skywritten\n", + "skywrote\n", + "slab\n", + "slabbed\n", + "slabber\n", + "slabbered\n", + "slabbering\n", + "slabbers\n", + "slabbery\n", + "slabbing\n", + "slabs\n", + "slack\n", + "slacked\n", + "slacken\n", + "slackened\n", + "slackening\n", + "slackens\n", + "slacker\n", + "slackers\n", + "slackest\n", + "slacking\n", + "slackly\n", + "slackness\n", + "slacknesses\n", + "slacks\n", + "slag\n", + "slagged\n", + "slaggier\n", + "slaggiest\n", + "slagging\n", + "slaggy\n", + "slags\n", + "slain\n", + "slakable\n", + "slake\n", + "slaked\n", + "slaker\n", + "slakers\n", + "slakes\n", + "slaking\n", + "slalom\n", + "slalomed\n", + "slaloming\n", + "slaloms\n", + "slam\n", + "slammed\n", + "slamming\n", + "slams\n", + "slander\n", + "slandered\n", + "slanderer\n", + "slanderers\n", + "slandering\n", + "slanderous\n", + "slanders\n", + "slang\n", + "slanged\n", + "slangier\n", + "slangiest\n", + "slangily\n", + "slanging\n", + "slangs\n", + "slangy\n", + "slank\n", + "slant\n", + "slanted\n", + "slanting\n", + "slants\n", + "slap\n", + "slapdash\n", + "slapdashes\n", + "slapjack\n", + "slapjacks\n", + "slapped\n", + "slapper\n", + "slappers\n", + "slapping\n", + "slaps\n", + "slash\n", + "slashed\n", + "slasher\n", + "slashers\n", + "slashes\n", + "slashing\n", + "slashings\n", + "slat\n", + "slatch\n", + "slatches\n", + "slate\n", + "slated\n", + "slater\n", + "slaters\n", + "slates\n", + "slather\n", + "slathered\n", + "slathering\n", + "slathers\n", + "slatier\n", + "slatiest\n", + "slating\n", + "slatings\n", + "slats\n", + "slatted\n", + "slattern\n", + "slatterns\n", + "slatting\n", + "slaty\n", + "slaughter\n", + "slaughtered\n", + "slaughterhouse\n", + "slaughterhouses\n", + "slaughtering\n", + "slaughters\n", + "slave\n", + "slaved\n", + "slaver\n", + "slavered\n", + "slaverer\n", + "slaverers\n", + "slaveries\n", + "slavering\n", + "slavers\n", + "slavery\n", + "slaves\n", + "slavey\n", + "slaveys\n", + "slaving\n", + "slavish\n", + "slaw\n", + "slaws\n", + "slay\n", + "slayer\n", + "slayers\n", + "slaying\n", + "slays\n", + "sleave\n", + "sleaved\n", + "sleaves\n", + "sleaving\n", + "sleazier\n", + "sleaziest\n", + "sleazily\n", + "sleazy\n", + "sled\n", + "sledded\n", + "sledder\n", + "sledders\n", + "sledding\n", + "sleddings\n", + "sledge\n", + "sledged\n", + "sledgehammer\n", + "sledgehammered\n", + "sledgehammering\n", + "sledgehammers\n", + "sledges\n", + "sledging\n", + "sleds\n", + "sleek\n", + "sleeked\n", + "sleeken\n", + "sleekened\n", + "sleekening\n", + "sleekens\n", + "sleeker\n", + "sleekest\n", + "sleekier\n", + "sleekiest\n", + "sleeking\n", + "sleekit\n", + "sleekly\n", + "sleeks\n", + "sleeky\n", + "sleep\n", + "sleeper\n", + "sleepers\n", + "sleepier\n", + "sleepiest\n", + "sleepily\n", + "sleepiness\n", + "sleeping\n", + "sleepings\n", + "sleepless\n", + "sleeplessness\n", + "sleeps\n", + "sleepwalk\n", + "sleepwalked\n", + "sleepwalker\n", + "sleepwalkers\n", + "sleepwalking\n", + "sleepwalks\n", + "sleepy\n", + "sleet\n", + "sleeted\n", + "sleetier\n", + "sleetiest\n", + "sleeting\n", + "sleets\n", + "sleety\n", + "sleeve\n", + "sleeved\n", + "sleeveless\n", + "sleeves\n", + "sleeving\n", + "sleigh\n", + "sleighed\n", + "sleigher\n", + "sleighers\n", + "sleighing\n", + "sleighs\n", + "sleight\n", + "sleights\n", + "slender\n", + "slenderer\n", + "slenderest\n", + "slept\n", + "sleuth\n", + "sleuthed\n", + "sleuthing\n", + "sleuths\n", + "slew\n", + "slewed\n", + "slewing\n", + "slews\n", + "slice\n", + "sliced\n", + "slicer\n", + "slicers\n", + "slices\n", + "slicing\n", + "slick\n", + "slicked\n", + "slicker\n", + "slickers\n", + "slickest\n", + "slicking\n", + "slickly\n", + "slicks\n", + "slid\n", + "slidable\n", + "slidden\n", + "slide\n", + "slider\n", + "sliders\n", + "slides\n", + "slideway\n", + "slideways\n", + "sliding\n", + "slier\n", + "sliest\n", + "slight\n", + "slighted\n", + "slighter\n", + "slightest\n", + "slighting\n", + "slightly\n", + "slights\n", + "slily\n", + "slim\n", + "slime\n", + "slimed\n", + "slimes\n", + "slimier\n", + "slimiest\n", + "slimily\n", + "sliming\n", + "slimly\n", + "slimmed\n", + "slimmer\n", + "slimmest\n", + "slimming\n", + "slimness\n", + "slimnesses\n", + "slimpsier\n", + "slimpsiest\n", + "slimpsy\n", + "slims\n", + "slimsier\n", + "slimsiest\n", + "slimsy\n", + "slimy\n", + "sling\n", + "slinger\n", + "slingers\n", + "slinging\n", + "slings\n", + "slingshot\n", + "slingshots\n", + "slink\n", + "slinkier\n", + "slinkiest\n", + "slinkily\n", + "slinking\n", + "slinks\n", + "slinky\n", + "slip\n", + "slipcase\n", + "slipcases\n", + "slipe\n", + "sliped\n", + "slipes\n", + "slipform\n", + "slipformed\n", + "slipforming\n", + "slipforms\n", + "sliping\n", + "slipknot\n", + "slipknots\n", + "slipless\n", + "slipout\n", + "slipouts\n", + "slipover\n", + "slipovers\n", + "slippage\n", + "slippages\n", + "slipped\n", + "slipper\n", + "slipperier\n", + "slipperiest\n", + "slipperiness\n", + "slipperinesses\n", + "slippers\n", + "slippery\n", + "slippier\n", + "slippiest\n", + "slipping\n", + "slippy\n", + "slips\n", + "slipshod\n", + "slipslop\n", + "slipslops\n", + "slipsole\n", + "slipsoles\n", + "slipt\n", + "slipup\n", + "slipups\n", + "slipware\n", + "slipwares\n", + "slipway\n", + "slipways\n", + "slit\n", + "slither\n", + "slithered\n", + "slithering\n", + "slithers\n", + "slithery\n", + "slitless\n", + "slits\n", + "slitted\n", + "slitter\n", + "slitters\n", + "slitting\n", + "sliver\n", + "slivered\n", + "sliverer\n", + "sliverers\n", + "slivering\n", + "slivers\n", + "slivovic\n", + "slivovics\n", + "slob\n", + "slobber\n", + "slobbered\n", + "slobbering\n", + "slobbers\n", + "slobbery\n", + "slobbish\n", + "slobs\n", + "sloe\n", + "sloes\n", + "slog\n", + "slogan\n", + "slogans\n", + "slogged\n", + "slogger\n", + "sloggers\n", + "slogging\n", + "slogs\n", + "sloid\n", + "sloids\n", + "slojd\n", + "slojds\n", + "sloop\n", + "sloops\n", + "slop\n", + "slope\n", + "sloped\n", + "sloper\n", + "slopers\n", + "slopes\n", + "sloping\n", + "slopped\n", + "sloppier\n", + "sloppiest\n", + "sloppily\n", + "slopping\n", + "sloppy\n", + "slops\n", + "slopwork\n", + "slopworks\n", + "slosh\n", + "sloshed\n", + "sloshes\n", + "sloshier\n", + "sloshiest\n", + "sloshing\n", + "sloshy\n", + "slot\n", + "slotback\n", + "slotbacks\n", + "sloth\n", + "slothful\n", + "sloths\n", + "slots\n", + "slotted\n", + "slotting\n", + "slouch\n", + "slouched\n", + "sloucher\n", + "slouchers\n", + "slouches\n", + "slouchier\n", + "slouchiest\n", + "slouching\n", + "slouchy\n", + "slough\n", + "sloughed\n", + "sloughier\n", + "sloughiest\n", + "sloughing\n", + "sloughs\n", + "sloughy\n", + "sloven\n", + "slovenlier\n", + "slovenliest\n", + "slovenly\n", + "slovens\n", + "slow\n", + "slowdown\n", + "slowdowns\n", + "slowed\n", + "slower\n", + "slowest\n", + "slowing\n", + "slowish\n", + "slowly\n", + "slowness\n", + "slownesses\n", + "slowpoke\n", + "slowpokes\n", + "slows\n", + "slowworm\n", + "slowworms\n", + "sloyd\n", + "sloyds\n", + "slub\n", + "slubbed\n", + "slubber\n", + "slubbered\n", + "slubbering\n", + "slubbers\n", + "slubbing\n", + "slubbings\n", + "slubs\n", + "sludge\n", + "sludges\n", + "sludgier\n", + "sludgiest\n", + "sludgy\n", + "slue\n", + "slued\n", + "slues\n", + "sluff\n", + "sluffed\n", + "sluffing\n", + "sluffs\n", + "slug\n", + "slugabed\n", + "slugabeds\n", + "slugfest\n", + "slugfests\n", + "sluggard\n", + "sluggards\n", + "slugged\n", + "slugger\n", + "sluggers\n", + "slugging\n", + "sluggish\n", + "sluggishly\n", + "sluggishness\n", + "sluggishnesses\n", + "slugs\n", + "sluice\n", + "sluiced\n", + "sluices\n", + "sluicing\n", + "sluicy\n", + "sluing\n", + "slum\n", + "slumber\n", + "slumbered\n", + "slumbering\n", + "slumbers\n", + "slumbery\n", + "slumgum\n", + "slumgums\n", + "slumlord\n", + "slumlords\n", + "slummed\n", + "slummer\n", + "slummers\n", + "slummier\n", + "slummiest\n", + "slumming\n", + "slummy\n", + "slump\n", + "slumped\n", + "slumping\n", + "slumps\n", + "slums\n", + "slung\n", + "slunk\n", + "slur\n", + "slurb\n", + "slurban\n", + "slurbs\n", + "slurp\n", + "slurped\n", + "slurping\n", + "slurps\n", + "slurred\n", + "slurried\n", + "slurries\n", + "slurring\n", + "slurry\n", + "slurrying\n", + "slurs\n", + "slush\n", + "slushed\n", + "slushes\n", + "slushier\n", + "slushiest\n", + "slushily\n", + "slushing\n", + "slushy\n", + "slut\n", + "sluts\n", + "sluttish\n", + "sly\n", + "slyboots\n", + "slyer\n", + "slyest\n", + "slyly\n", + "slyness\n", + "slynesses\n", + "slype\n", + "slypes\n", + "smack\n", + "smacked\n", + "smacker\n", + "smackers\n", + "smacking\n", + "smacks\n", + "small\n", + "smallage\n", + "smallages\n", + "smaller\n", + "smallest\n", + "smallish\n", + "smallness\n", + "smallnesses\n", + "smallpox\n", + "smallpoxes\n", + "smalls\n", + "smalt\n", + "smalti\n", + "smaltine\n", + "smaltines\n", + "smaltite\n", + "smaltites\n", + "smalto\n", + "smaltos\n", + "smalts\n", + "smaragd\n", + "smaragde\n", + "smaragdes\n", + "smaragds\n", + "smarm\n", + "smarmier\n", + "smarmiest\n", + "smarms\n", + "smarmy\n", + "smart\n", + "smarted\n", + "smarten\n", + "smartened\n", + "smartening\n", + "smartens\n", + "smarter\n", + "smartest\n", + "smartie\n", + "smarties\n", + "smarting\n", + "smartly\n", + "smartness\n", + "smartnesses\n", + "smarts\n", + "smarty\n", + "smash\n", + "smashed\n", + "smasher\n", + "smashers\n", + "smashes\n", + "smashing\n", + "smashup\n", + "smashups\n", + "smatter\n", + "smattered\n", + "smattering\n", + "smatterings\n", + "smatters\n", + "smaze\n", + "smazes\n", + "smear\n", + "smeared\n", + "smearer\n", + "smearers\n", + "smearier\n", + "smeariest\n", + "smearing\n", + "smears\n", + "smeary\n", + "smectic\n", + "smeddum\n", + "smeddums\n", + "smeek\n", + "smeeked\n", + "smeeking\n", + "smeeks\n", + "smegma\n", + "smegmas\n", + "smell\n", + "smelled\n", + "smeller\n", + "smellers\n", + "smellier\n", + "smelliest\n", + "smelling\n", + "smells\n", + "smelly\n", + "smelt\n", + "smelted\n", + "smelter\n", + "smelteries\n", + "smelters\n", + "smeltery\n", + "smelting\n", + "smelts\n", + "smerk\n", + "smerked\n", + "smerking\n", + "smerks\n", + "smew\n", + "smews\n", + "smidgen\n", + "smidgens\n", + "smidgeon\n", + "smidgeons\n", + "smidgin\n", + "smidgins\n", + "smilax\n", + "smilaxes\n", + "smile\n", + "smiled\n", + "smiler\n", + "smilers\n", + "smiles\n", + "smiling\n", + "smirch\n", + "smirched\n", + "smirches\n", + "smirching\n", + "smirk\n", + "smirked\n", + "smirker\n", + "smirkers\n", + "smirkier\n", + "smirkiest\n", + "smirking\n", + "smirks\n", + "smirky\n", + "smit\n", + "smite\n", + "smiter\n", + "smiters\n", + "smites\n", + "smith\n", + "smitheries\n", + "smithery\n", + "smithies\n", + "smiths\n", + "smithy\n", + "smiting\n", + "smitten\n", + "smock\n", + "smocked\n", + "smocking\n", + "smockings\n", + "smocks\n", + "smog\n", + "smoggier\n", + "smoggiest\n", + "smoggy\n", + "smogless\n", + "smogs\n", + "smokable\n", + "smoke\n", + "smoked\n", + "smokeless\n", + "smokepot\n", + "smokepots\n", + "smoker\n", + "smokers\n", + "smokes\n", + "smokestack\n", + "smokestacks\n", + "smokey\n", + "smokier\n", + "smokiest\n", + "smokily\n", + "smoking\n", + "smoky\n", + "smolder\n", + "smoldered\n", + "smoldering\n", + "smolders\n", + "smolt\n", + "smolts\n", + "smooch\n", + "smooched\n", + "smooches\n", + "smooching\n", + "smoochy\n", + "smooth\n", + "smoothed\n", + "smoothen\n", + "smoothened\n", + "smoothening\n", + "smoothens\n", + "smoother\n", + "smoothers\n", + "smoothest\n", + "smoothie\n", + "smoothies\n", + "smoothing\n", + "smoothly\n", + "smoothness\n", + "smoothnesses\n", + "smooths\n", + "smoothy\n", + "smorgasbord\n", + "smorgasbords\n", + "smote\n", + "smother\n", + "smothered\n", + "smothering\n", + "smothers\n", + "smothery\n", + "smoulder\n", + "smouldered\n", + "smouldering\n", + "smoulders\n", + "smudge\n", + "smudged\n", + "smudges\n", + "smudgier\n", + "smudgiest\n", + "smudgily\n", + "smudging\n", + "smudgy\n", + "smug\n", + "smugger\n", + "smuggest\n", + "smuggle\n", + "smuggled\n", + "smuggler\n", + "smugglers\n", + "smuggles\n", + "smuggling\n", + "smugly\n", + "smugness\n", + "smugnesses\n", + "smut\n", + "smutch\n", + "smutched\n", + "smutches\n", + "smutchier\n", + "smutchiest\n", + "smutching\n", + "smutchy\n", + "smuts\n", + "smutted\n", + "smuttier\n", + "smuttiest\n", + "smuttily\n", + "smutting\n", + "smutty\n", + "snack\n", + "snacked\n", + "snacking\n", + "snacks\n", + "snaffle\n", + "snaffled\n", + "snaffles\n", + "snaffling\n", + "snafu\n", + "snafued\n", + "snafuing\n", + "snafus\n", + "snag\n", + "snagged\n", + "snaggier\n", + "snaggiest\n", + "snagging\n", + "snaggy\n", + "snaglike\n", + "snags\n", + "snail\n", + "snailed\n", + "snailing\n", + "snails\n", + "snake\n", + "snaked\n", + "snakes\n", + "snakier\n", + "snakiest\n", + "snakily\n", + "snaking\n", + "snaky\n", + "snap\n", + "snapback\n", + "snapbacks\n", + "snapdragon\n", + "snapdragons\n", + "snapless\n", + "snapped\n", + "snapper\n", + "snappers\n", + "snappier\n", + "snappiest\n", + "snappily\n", + "snapping\n", + "snappish\n", + "snappy\n", + "snaps\n", + "snapshot\n", + "snapshots\n", + "snapshotted\n", + "snapshotting\n", + "snapweed\n", + "snapweeds\n", + "snare\n", + "snared\n", + "snarer\n", + "snarers\n", + "snares\n", + "snaring\n", + "snark\n", + "snarks\n", + "snarl\n", + "snarled\n", + "snarler\n", + "snarlers\n", + "snarlier\n", + "snarliest\n", + "snarling\n", + "snarls\n", + "snarly\n", + "snash\n", + "snashes\n", + "snatch\n", + "snatched\n", + "snatcher\n", + "snatchers\n", + "snatches\n", + "snatchier\n", + "snatchiest\n", + "snatching\n", + "snatchy\n", + "snath\n", + "snathe\n", + "snathes\n", + "snaths\n", + "snaw\n", + "snawed\n", + "snawing\n", + "snaws\n", + "snazzier\n", + "snazziest\n", + "snazzy\n", + "sneak\n", + "sneaked\n", + "sneaker\n", + "sneakers\n", + "sneakier\n", + "sneakiest\n", + "sneakily\n", + "sneaking\n", + "sneakingly\n", + "sneaks\n", + "sneaky\n", + "sneap\n", + "sneaped\n", + "sneaping\n", + "sneaps\n", + "sneck\n", + "snecks\n", + "sned\n", + "snedded\n", + "snedding\n", + "sneds\n", + "sneer\n", + "sneered\n", + "sneerer\n", + "sneerers\n", + "sneerful\n", + "sneering\n", + "sneers\n", + "sneesh\n", + "sneeshes\n", + "sneeze\n", + "sneezed\n", + "sneezer\n", + "sneezers\n", + "sneezes\n", + "sneezier\n", + "sneeziest\n", + "sneezing\n", + "sneezy\n", + "snell\n", + "sneller\n", + "snellest\n", + "snells\n", + "snib\n", + "snibbed\n", + "snibbing\n", + "snibs\n", + "snick\n", + "snicked\n", + "snicker\n", + "snickered\n", + "snickering\n", + "snickers\n", + "snickery\n", + "snicking\n", + "snicks\n", + "snide\n", + "snidely\n", + "snider\n", + "snidest\n", + "sniff\n", + "sniffed\n", + "sniffer\n", + "sniffers\n", + "sniffier\n", + "sniffiest\n", + "sniffily\n", + "sniffing\n", + "sniffish\n", + "sniffle\n", + "sniffled\n", + "sniffler\n", + "snifflers\n", + "sniffles\n", + "sniffling\n", + "sniffs\n", + "sniffy\n", + "snifter\n", + "snifters\n", + "snigger\n", + "sniggered\n", + "sniggering\n", + "sniggers\n", + "sniggle\n", + "sniggled\n", + "sniggler\n", + "snigglers\n", + "sniggles\n", + "sniggling\n", + "snip\n", + "snipe\n", + "sniped\n", + "sniper\n", + "snipers\n", + "snipes\n", + "sniping\n", + "snipped\n", + "snipper\n", + "snippers\n", + "snippet\n", + "snippetier\n", + "snippetiest\n", + "snippets\n", + "snippety\n", + "snippier\n", + "snippiest\n", + "snippily\n", + "snipping\n", + "snippy\n", + "snips\n", + "snit\n", + "snitch\n", + "snitched\n", + "snitcher\n", + "snitchers\n", + "snitches\n", + "snitching\n", + "snits\n", + "snivel\n", + "sniveled\n", + "sniveler\n", + "snivelers\n", + "sniveling\n", + "snivelled\n", + "snivelling\n", + "snivels\n", + "snob\n", + "snobberies\n", + "snobbery\n", + "snobbier\n", + "snobbiest\n", + "snobbily\n", + "snobbish\n", + "snobbishly\n", + "snobbishness\n", + "snobbishnesses\n", + "snobbism\n", + "snobbisms\n", + "snobby\n", + "snobs\n", + "snood\n", + "snooded\n", + "snooding\n", + "snoods\n", + "snook\n", + "snooked\n", + "snooker\n", + "snookers\n", + "snooking\n", + "snooks\n", + "snool\n", + "snooled\n", + "snooling\n", + "snools\n", + "snoop\n", + "snooped\n", + "snooper\n", + "snoopers\n", + "snoopier\n", + "snoopiest\n", + "snoopily\n", + "snooping\n", + "snoops\n", + "snoopy\n", + "snoot\n", + "snooted\n", + "snootier\n", + "snootiest\n", + "snootily\n", + "snooting\n", + "snoots\n", + "snooty\n", + "snooze\n", + "snoozed\n", + "snoozer\n", + "snoozers\n", + "snoozes\n", + "snoozier\n", + "snooziest\n", + "snoozing\n", + "snoozle\n", + "snoozled\n", + "snoozles\n", + "snoozling\n", + "snoozy\n", + "snore\n", + "snored\n", + "snorer\n", + "snorers\n", + "snores\n", + "snoring\n", + "snorkel\n", + "snorkeled\n", + "snorkeling\n", + "snorkels\n", + "snort\n", + "snorted\n", + "snorter\n", + "snorters\n", + "snorting\n", + "snorts\n", + "snot\n", + "snots\n", + "snottier\n", + "snottiest\n", + "snottily\n", + "snotty\n", + "snout\n", + "snouted\n", + "snoutier\n", + "snoutiest\n", + "snouting\n", + "snoutish\n", + "snouts\n", + "snouty\n", + "snow\n", + "snowball\n", + "snowballed\n", + "snowballing\n", + "snowballs\n", + "snowbank\n", + "snowbanks\n", + "snowbell\n", + "snowbells\n", + "snowbird\n", + "snowbirds\n", + "snowbush\n", + "snowbushes\n", + "snowcap\n", + "snowcaps\n", + "snowdrift\n", + "snowdrifts\n", + "snowdrop\n", + "snowdrops\n", + "snowed\n", + "snowfall\n", + "snowfalls\n", + "snowflake\n", + "snowflakes\n", + "snowier\n", + "snowiest\n", + "snowily\n", + "snowing\n", + "snowland\n", + "snowlands\n", + "snowless\n", + "snowlike\n", + "snowman\n", + "snowmelt\n", + "snowmelts\n", + "snowmen\n", + "snowpack\n", + "snowpacks\n", + "snowplow\n", + "snowplowed\n", + "snowplowing\n", + "snowplows\n", + "snows\n", + "snowshed\n", + "snowsheds\n", + "snowshoe\n", + "snowshoed\n", + "snowshoeing\n", + "snowshoes\n", + "snowstorm\n", + "snowstorms\n", + "snowsuit\n", + "snowsuits\n", + "snowy\n", + "snub\n", + "snubbed\n", + "snubber\n", + "snubbers\n", + "snubbier\n", + "snubbiest\n", + "snubbing\n", + "snubby\n", + "snubness\n", + "snubnesses\n", + "snubs\n", + "snuck\n", + "snuff\n", + "snuffbox\n", + "snuffboxes\n", + "snuffed\n", + "snuffer\n", + "snuffers\n", + "snuffier\n", + "snuffiest\n", + "snuffily\n", + "snuffing\n", + "snuffle\n", + "snuffled\n", + "snuffler\n", + "snufflers\n", + "snuffles\n", + "snufflier\n", + "snuffliest\n", + "snuffling\n", + "snuffly\n", + "snuffs\n", + "snuffy\n", + "snug\n", + "snugged\n", + "snugger\n", + "snuggeries\n", + "snuggery\n", + "snuggest\n", + "snugging\n", + "snuggle\n", + "snuggled\n", + "snuggles\n", + "snuggling\n", + "snugly\n", + "snugness\n", + "snugnesses\n", + "snugs\n", + "snye\n", + "snyes\n", + "so\n", + "soak\n", + "soakage\n", + "soakages\n", + "soaked\n", + "soaker\n", + "soakers\n", + "soaking\n", + "soaks\n", + "soap\n", + "soapbark\n", + "soapbarks\n", + "soapbox\n", + "soapboxes\n", + "soaped\n", + "soapier\n", + "soapiest\n", + "soapily\n", + "soaping\n", + "soapless\n", + "soaplike\n", + "soaps\n", + "soapsuds\n", + "soapwort\n", + "soapworts\n", + "soapy\n", + "soar\n", + "soared\n", + "soarer\n", + "soarers\n", + "soaring\n", + "soarings\n", + "soars\n", + "soave\n", + "soaves\n", + "sob\n", + "sobbed\n", + "sobber\n", + "sobbers\n", + "sobbing\n", + "sobeit\n", + "sober\n", + "sobered\n", + "soberer\n", + "soberest\n", + "sobering\n", + "soberize\n", + "soberized\n", + "soberizes\n", + "soberizing\n", + "soberly\n", + "sobers\n", + "sobful\n", + "sobrieties\n", + "sobriety\n", + "sobs\n", + "socage\n", + "socager\n", + "socagers\n", + "socages\n", + "soccage\n", + "soccages\n", + "soccer\n", + "soccers\n", + "sociabilities\n", + "sociability\n", + "sociable\n", + "sociables\n", + "sociably\n", + "social\n", + "socialism\n", + "socialist\n", + "socialistic\n", + "socialists\n", + "socialization\n", + "socializations\n", + "socialize\n", + "socialized\n", + "socializes\n", + "socializing\n", + "socially\n", + "socials\n", + "societal\n", + "societies\n", + "society\n", + "sociological\n", + "sociologies\n", + "sociologist\n", + "sociologists\n", + "sociology\n", + "sock\n", + "socked\n", + "socket\n", + "socketed\n", + "socketing\n", + "sockets\n", + "sockeye\n", + "sockeyes\n", + "socking\n", + "sockman\n", + "sockmen\n", + "socks\n", + "socle\n", + "socles\n", + "socman\n", + "socmen\n", + "sod\n", + "soda\n", + "sodaless\n", + "sodalist\n", + "sodalists\n", + "sodalite\n", + "sodalites\n", + "sodalities\n", + "sodality\n", + "sodamide\n", + "sodamides\n", + "sodas\n", + "sodded\n", + "sodden\n", + "soddened\n", + "soddening\n", + "soddenly\n", + "soddens\n", + "soddies\n", + "sodding\n", + "soddy\n", + "sodic\n", + "sodium\n", + "sodiums\n", + "sodomies\n", + "sodomite\n", + "sodomites\n", + "sodomy\n", + "sods\n", + "soever\n", + "sofa\n", + "sofar\n", + "sofars\n", + "sofas\n", + "soffit\n", + "soffits\n", + "soft\n", + "softa\n", + "softas\n", + "softback\n", + "softbacks\n", + "softball\n", + "softballs\n", + "soften\n", + "softened\n", + "softener\n", + "softeners\n", + "softening\n", + "softens\n", + "softer\n", + "softest\n", + "softhead\n", + "softheads\n", + "softie\n", + "softies\n", + "softly\n", + "softness\n", + "softnesses\n", + "softs\n", + "software\n", + "softwares\n", + "softwood\n", + "softwoods\n", + "softy\n", + "sogged\n", + "soggier\n", + "soggiest\n", + "soggily\n", + "sogginess\n", + "sogginesses\n", + "soggy\n", + "soigne\n", + "soignee\n", + "soil\n", + "soilage\n", + "soilages\n", + "soiled\n", + "soiling\n", + "soilless\n", + "soils\n", + "soilure\n", + "soilures\n", + "soiree\n", + "soirees\n", + "soja\n", + "sojas\n", + "sojourn\n", + "sojourned\n", + "sojourning\n", + "sojourns\n", + "soke\n", + "sokeman\n", + "sokemen\n", + "sokes\n", + "sol\n", + "sola\n", + "solace\n", + "solaced\n", + "solacer\n", + "solacers\n", + "solaces\n", + "solacing\n", + "solan\n", + "soland\n", + "solander\n", + "solanders\n", + "solands\n", + "solanin\n", + "solanine\n", + "solanines\n", + "solanins\n", + "solano\n", + "solanos\n", + "solans\n", + "solanum\n", + "solanums\n", + "solar\n", + "solaria\n", + "solarise\n", + "solarised\n", + "solarises\n", + "solarising\n", + "solarism\n", + "solarisms\n", + "solarium\n", + "solariums\n", + "solarize\n", + "solarized\n", + "solarizes\n", + "solarizing\n", + "solate\n", + "solated\n", + "solates\n", + "solatia\n", + "solating\n", + "solation\n", + "solations\n", + "solatium\n", + "sold\n", + "soldan\n", + "soldans\n", + "solder\n", + "soldered\n", + "solderer\n", + "solderers\n", + "soldering\n", + "solders\n", + "soldi\n", + "soldier\n", + "soldiered\n", + "soldieries\n", + "soldiering\n", + "soldierly\n", + "soldiers\n", + "soldiery\n", + "soldo\n", + "sole\n", + "solecise\n", + "solecised\n", + "solecises\n", + "solecising\n", + "solecism\n", + "solecisms\n", + "solecist\n", + "solecists\n", + "solecize\n", + "solecized\n", + "solecizes\n", + "solecizing\n", + "soled\n", + "soleless\n", + "solely\n", + "solemn\n", + "solemner\n", + "solemnest\n", + "solemnly\n", + "solemnness\n", + "solemnnesses\n", + "soleness\n", + "solenesses\n", + "solenoid\n", + "solenoids\n", + "soleret\n", + "solerets\n", + "soles\n", + "solfege\n", + "solfeges\n", + "solfeggi\n", + "solgel\n", + "soli\n", + "solicit\n", + "solicitation\n", + "solicited\n", + "soliciting\n", + "solicitor\n", + "solicitors\n", + "solicitous\n", + "solicits\n", + "solicitude\n", + "solicitudes\n", + "solid\n", + "solidago\n", + "solidagos\n", + "solidarities\n", + "solidarity\n", + "solidary\n", + "solider\n", + "solidest\n", + "solidi\n", + "solidification\n", + "solidifications\n", + "solidified\n", + "solidifies\n", + "solidify\n", + "solidifying\n", + "solidities\n", + "solidity\n", + "solidly\n", + "solidness\n", + "solidnesses\n", + "solids\n", + "solidus\n", + "soliloquize\n", + "soliloquized\n", + "soliloquizes\n", + "soliloquizing\n", + "soliloquy\n", + "soliloquys\n", + "soling\n", + "solion\n", + "solions\n", + "soliquid\n", + "soliquids\n", + "solitaire\n", + "solitaires\n", + "solitaries\n", + "solitary\n", + "solitude\n", + "solitudes\n", + "solleret\n", + "sollerets\n", + "solo\n", + "soloed\n", + "soloing\n", + "soloist\n", + "soloists\n", + "solon\n", + "solonets\n", + "solonetses\n", + "solonetz\n", + "solonetzes\n", + "solons\n", + "solos\n", + "sols\n", + "solstice\n", + "solstices\n", + "solubilities\n", + "solubility\n", + "soluble\n", + "solubles\n", + "solubly\n", + "solum\n", + "solums\n", + "solus\n", + "solute\n", + "solutes\n", + "solution\n", + "solutions\n", + "solvable\n", + "solvate\n", + "solvated\n", + "solvates\n", + "solvating\n", + "solve\n", + "solved\n", + "solvencies\n", + "solvency\n", + "solvent\n", + "solvents\n", + "solver\n", + "solvers\n", + "solves\n", + "solving\n", + "soma\n", + "somas\n", + "somata\n", + "somatic\n", + "somber\n", + "somberly\n", + "sombre\n", + "sombrely\n", + "sombrero\n", + "sombreros\n", + "sombrous\n", + "some\n", + "somebodies\n", + "somebody\n", + "someday\n", + "somedeal\n", + "somehow\n", + "someone\n", + "someones\n", + "someplace\n", + "somersault\n", + "somersaulted\n", + "somersaulting\n", + "somersaults\n", + "somerset\n", + "somerseted\n", + "somerseting\n", + "somersets\n", + "somersetted\n", + "somersetting\n", + "somerville\n", + "something\n", + "sometime\n", + "sometimes\n", + "someway\n", + "someways\n", + "somewhat\n", + "somewhats\n", + "somewhen\n", + "somewhere\n", + "somewise\n", + "somital\n", + "somite\n", + "somites\n", + "somitic\n", + "somnambulism\n", + "somnambulist\n", + "somnambulists\n", + "somnolence\n", + "somnolences\n", + "somnolent\n", + "son\n", + "sonance\n", + "sonances\n", + "sonant\n", + "sonantal\n", + "sonantic\n", + "sonants\n", + "sonar\n", + "sonarman\n", + "sonarmen\n", + "sonars\n", + "sonata\n", + "sonatas\n", + "sonatina\n", + "sonatinas\n", + "sonatine\n", + "sonde\n", + "sonder\n", + "sonders\n", + "sondes\n", + "sone\n", + "sones\n", + "song\n", + "songbird\n", + "songbirds\n", + "songbook\n", + "songbooks\n", + "songfest\n", + "songfests\n", + "songful\n", + "songless\n", + "songlike\n", + "songs\n", + "songster\n", + "songsters\n", + "sonic\n", + "sonicate\n", + "sonicated\n", + "sonicates\n", + "sonicating\n", + "sonics\n", + "sonless\n", + "sonlike\n", + "sonly\n", + "sonnet\n", + "sonneted\n", + "sonneting\n", + "sonnets\n", + "sonnetted\n", + "sonnetting\n", + "sonnies\n", + "sonny\n", + "sonorant\n", + "sonorants\n", + "sonorities\n", + "sonority\n", + "sonorous\n", + "sonovox\n", + "sonovoxes\n", + "sons\n", + "sonship\n", + "sonships\n", + "sonsie\n", + "sonsier\n", + "sonsiest\n", + "sonsy\n", + "soochong\n", + "soochongs\n", + "sooey\n", + "soon\n", + "sooner\n", + "sooners\n", + "soonest\n", + "soot\n", + "sooted\n", + "sooth\n", + "soothe\n", + "soothed\n", + "soother\n", + "soothers\n", + "soothes\n", + "soothest\n", + "soothing\n", + "soothly\n", + "sooths\n", + "soothsaid\n", + "soothsay\n", + "soothsayer\n", + "soothsayers\n", + "soothsaying\n", + "soothsayings\n", + "soothsays\n", + "sootier\n", + "sootiest\n", + "sootily\n", + "sooting\n", + "soots\n", + "sooty\n", + "sop\n", + "soph\n", + "sophies\n", + "sophism\n", + "sophisms\n", + "sophist\n", + "sophistic\n", + "sophistical\n", + "sophisticate\n", + "sophisticated\n", + "sophisticates\n", + "sophistication\n", + "sophistications\n", + "sophistries\n", + "sophistry\n", + "sophists\n", + "sophomore\n", + "sophomores\n", + "sophs\n", + "sophy\n", + "sopite\n", + "sopited\n", + "sopites\n", + "sopiting\n", + "sopor\n", + "soporific\n", + "sopors\n", + "sopped\n", + "soppier\n", + "soppiest\n", + "sopping\n", + "soppy\n", + "soprani\n", + "soprano\n", + "sopranos\n", + "sops\n", + "sora\n", + "soras\n", + "sorb\n", + "sorbable\n", + "sorbate\n", + "sorbates\n", + "sorbed\n", + "sorbent\n", + "sorbents\n", + "sorbet\n", + "sorbets\n", + "sorbic\n", + "sorbing\n", + "sorbitol\n", + "sorbitols\n", + "sorbose\n", + "sorboses\n", + "sorbs\n", + "sorcerer\n", + "sorcerers\n", + "sorceress\n", + "sorceresses\n", + "sorceries\n", + "sorcery\n", + "sord\n", + "sordid\n", + "sordidly\n", + "sordidness\n", + "sordidnesses\n", + "sordine\n", + "sordines\n", + "sordini\n", + "sordino\n", + "sords\n", + "sore\n", + "sorehead\n", + "soreheads\n", + "sorel\n", + "sorels\n", + "sorely\n", + "soreness\n", + "sorenesses\n", + "sorer\n", + "sores\n", + "sorest\n", + "sorgho\n", + "sorghos\n", + "sorghum\n", + "sorghums\n", + "sorgo\n", + "sorgos\n", + "sori\n", + "soricine\n", + "sorites\n", + "soritic\n", + "sorn\n", + "sorned\n", + "sorner\n", + "sorners\n", + "sorning\n", + "sorns\n", + "soroche\n", + "soroches\n", + "sororal\n", + "sororate\n", + "sororates\n", + "sororities\n", + "sorority\n", + "soroses\n", + "sorosis\n", + "sorosises\n", + "sorption\n", + "sorptions\n", + "sorptive\n", + "sorrel\n", + "sorrels\n", + "sorrier\n", + "sorriest\n", + "sorrily\n", + "sorrow\n", + "sorrowed\n", + "sorrower\n", + "sorrowers\n", + "sorrowful\n", + "sorrowfully\n", + "sorrowing\n", + "sorrows\n", + "sorry\n", + "sort\n", + "sortable\n", + "sortably\n", + "sorted\n", + "sorter\n", + "sorters\n", + "sortie\n", + "sortied\n", + "sortieing\n", + "sorties\n", + "sorting\n", + "sorts\n", + "sorus\n", + "sos\n", + "sot\n", + "soth\n", + "soths\n", + "sotol\n", + "sotols\n", + "sots\n", + "sottish\n", + "sou\n", + "souari\n", + "souaris\n", + "soubise\n", + "soubises\n", + "soucar\n", + "soucars\n", + "souchong\n", + "souchongs\n", + "soudan\n", + "soudans\n", + "souffle\n", + "souffles\n", + "sough\n", + "soughed\n", + "soughing\n", + "soughs\n", + "sought\n", + "soul\n", + "souled\n", + "soulful\n", + "soulfully\n", + "soulless\n", + "soullike\n", + "souls\n", + "sound\n", + "soundbox\n", + "soundboxes\n", + "sounded\n", + "sounder\n", + "sounders\n", + "soundest\n", + "sounding\n", + "soundings\n", + "soundly\n", + "soundness\n", + "soundnesses\n", + "soundproof\n", + "soundproofed\n", + "soundproofing\n", + "soundproofs\n", + "sounds\n", + "soup\n", + "soupcon\n", + "soupcons\n", + "souped\n", + "soupier\n", + "soupiest\n", + "souping\n", + "soups\n", + "soupy\n", + "sour\n", + "sourball\n", + "sourballs\n", + "source\n", + "sources\n", + "sourdine\n", + "sourdines\n", + "soured\n", + "sourer\n", + "sourest\n", + "souring\n", + "sourish\n", + "sourly\n", + "sourness\n", + "sournesses\n", + "sourpuss\n", + "sourpusses\n", + "sours\n", + "soursop\n", + "soursops\n", + "sourwood\n", + "sourwoods\n", + "sous\n", + "souse\n", + "soused\n", + "souses\n", + "sousing\n", + "soutache\n", + "soutaches\n", + "soutane\n", + "soutanes\n", + "souter\n", + "souters\n", + "south\n", + "southeast\n", + "southeastern\n", + "southeasts\n", + "southed\n", + "souther\n", + "southerly\n", + "southern\n", + "southernmost\n", + "southerns\n", + "southernward\n", + "southernwards\n", + "southers\n", + "southing\n", + "southings\n", + "southpaw\n", + "southpaws\n", + "southron\n", + "southrons\n", + "souths\n", + "southwest\n", + "southwesterly\n", + "southwestern\n", + "southwests\n", + "souvenir\n", + "souvenirs\n", + "sovereign\n", + "sovereigns\n", + "sovereignties\n", + "sovereignty\n", + "soviet\n", + "soviets\n", + "sovkhoz\n", + "sovkhozes\n", + "sovkhozy\n", + "sovran\n", + "sovranly\n", + "sovrans\n", + "sovranties\n", + "sovranty\n", + "sow\n", + "sowable\n", + "sowans\n", + "sowar\n", + "sowars\n", + "sowbellies\n", + "sowbelly\n", + "sowbread\n", + "sowbreads\n", + "sowcar\n", + "sowcars\n", + "sowed\n", + "sowens\n", + "sower\n", + "sowers\n", + "sowing\n", + "sown\n", + "sows\n", + "sox\n", + "soy\n", + "soya\n", + "soyas\n", + "soybean\n", + "soybeans\n", + "soys\n", + "sozin\n", + "sozine\n", + "sozines\n", + "sozins\n", + "spa\n", + "space\n", + "spacecraft\n", + "spacecrafts\n", + "spaced\n", + "spaceflight\n", + "spaceflights\n", + "spaceman\n", + "spacemen\n", + "spacer\n", + "spacers\n", + "spaces\n", + "spaceship\n", + "spaceships\n", + "spacial\n", + "spacing\n", + "spacings\n", + "spacious\n", + "spaciously\n", + "spaciousness\n", + "spaciousnesses\n", + "spade\n", + "spaded\n", + "spadeful\n", + "spadefuls\n", + "spader\n", + "spaders\n", + "spades\n", + "spadices\n", + "spadille\n", + "spadilles\n", + "spading\n", + "spadix\n", + "spado\n", + "spadones\n", + "spae\n", + "spaed\n", + "spaeing\n", + "spaeings\n", + "spaes\n", + "spaghetti\n", + "spaghettis\n", + "spagyric\n", + "spagyrics\n", + "spahee\n", + "spahees\n", + "spahi\n", + "spahis\n", + "spail\n", + "spails\n", + "spait\n", + "spaits\n", + "spake\n", + "spale\n", + "spales\n", + "spall\n", + "spalled\n", + "spaller\n", + "spallers\n", + "spalling\n", + "spalls\n", + "spalpeen\n", + "spalpeens\n", + "span\n", + "spancel\n", + "spanceled\n", + "spanceling\n", + "spancelled\n", + "spancelling\n", + "spancels\n", + "spandrel\n", + "spandrels\n", + "spandril\n", + "spandrils\n", + "spang\n", + "spangle\n", + "spangled\n", + "spangles\n", + "spanglier\n", + "spangliest\n", + "spangling\n", + "spangly\n", + "spaniel\n", + "spaniels\n", + "spank\n", + "spanked\n", + "spanker\n", + "spankers\n", + "spanking\n", + "spankings\n", + "spanks\n", + "spanless\n", + "spanned\n", + "spanner\n", + "spanners\n", + "spanning\n", + "spans\n", + "spanworm\n", + "spanworms\n", + "spar\n", + "sparable\n", + "sparables\n", + "spare\n", + "spared\n", + "sparely\n", + "sparer\n", + "sparerib\n", + "spareribs\n", + "sparers\n", + "spares\n", + "sparest\n", + "sparge\n", + "sparged\n", + "sparger\n", + "spargers\n", + "sparges\n", + "sparging\n", + "sparid\n", + "sparids\n", + "sparing\n", + "sparingly\n", + "spark\n", + "sparked\n", + "sparker\n", + "sparkers\n", + "sparkier\n", + "sparkiest\n", + "sparkily\n", + "sparking\n", + "sparkish\n", + "sparkle\n", + "sparkled\n", + "sparkler\n", + "sparklers\n", + "sparkles\n", + "sparkling\n", + "sparks\n", + "sparky\n", + "sparlike\n", + "sparling\n", + "sparlings\n", + "sparoid\n", + "sparoids\n", + "sparred\n", + "sparrier\n", + "sparriest\n", + "sparring\n", + "sparrow\n", + "sparrows\n", + "sparry\n", + "spars\n", + "sparse\n", + "sparsely\n", + "sparser\n", + "sparsest\n", + "sparsities\n", + "sparsity\n", + "spas\n", + "spasm\n", + "spasmodic\n", + "spasms\n", + "spastic\n", + "spastics\n", + "spat\n", + "spate\n", + "spates\n", + "spathal\n", + "spathe\n", + "spathed\n", + "spathes\n", + "spathic\n", + "spathose\n", + "spatial\n", + "spatially\n", + "spats\n", + "spatted\n", + "spatter\n", + "spattered\n", + "spattering\n", + "spatters\n", + "spatting\n", + "spatula\n", + "spatular\n", + "spatulas\n", + "spavie\n", + "spavies\n", + "spaviet\n", + "spavin\n", + "spavined\n", + "spavins\n", + "spawn\n", + "spawned\n", + "spawner\n", + "spawners\n", + "spawning\n", + "spawns\n", + "spay\n", + "spayed\n", + "spaying\n", + "spays\n", + "speak\n", + "speaker\n", + "speakers\n", + "speaking\n", + "speakings\n", + "speaks\n", + "spean\n", + "speaned\n", + "speaning\n", + "speans\n", + "spear\n", + "speared\n", + "spearer\n", + "spearers\n", + "spearhead\n", + "spearheaded\n", + "spearheading\n", + "spearheads\n", + "spearing\n", + "spearman\n", + "spearmen\n", + "spearmint\n", + "spears\n", + "special\n", + "specialer\n", + "specialest\n", + "specialist\n", + "specialists\n", + "specialization\n", + "specializations\n", + "specialize\n", + "specialized\n", + "specializes\n", + "specializing\n", + "specially\n", + "specials\n", + "specialties\n", + "specialty\n", + "speciate\n", + "speciated\n", + "speciates\n", + "speciating\n", + "specie\n", + "species\n", + "specific\n", + "specifically\n", + "specification\n", + "specifications\n", + "specificities\n", + "specificity\n", + "specifics\n", + "specified\n", + "specifies\n", + "specify\n", + "specifying\n", + "specimen\n", + "specimens\n", + "specious\n", + "speck\n", + "specked\n", + "specking\n", + "speckle\n", + "speckled\n", + "speckles\n", + "speckling\n", + "specks\n", + "specs\n", + "spectacle\n", + "spectacles\n", + "spectacular\n", + "spectate\n", + "spectated\n", + "spectates\n", + "spectating\n", + "spectator\n", + "spectators\n", + "specter\n", + "specters\n", + "spectra\n", + "spectral\n", + "spectre\n", + "spectres\n", + "spectrum\n", + "spectrums\n", + "specula\n", + "specular\n", + "speculate\n", + "speculated\n", + "speculates\n", + "speculating\n", + "speculation\n", + "speculations\n", + "speculative\n", + "speculator\n", + "speculators\n", + "speculum\n", + "speculums\n", + "sped\n", + "speech\n", + "speeches\n", + "speechless\n", + "speed\n", + "speedboat\n", + "speedboats\n", + "speeded\n", + "speeder\n", + "speeders\n", + "speedier\n", + "speediest\n", + "speedily\n", + "speeding\n", + "speedings\n", + "speedometer\n", + "speedometers\n", + "speeds\n", + "speedup\n", + "speedups\n", + "speedway\n", + "speedways\n", + "speedy\n", + "speel\n", + "speeled\n", + "speeling\n", + "speels\n", + "speer\n", + "speered\n", + "speering\n", + "speerings\n", + "speers\n", + "speil\n", + "speiled\n", + "speiling\n", + "speils\n", + "speir\n", + "speired\n", + "speiring\n", + "speirs\n", + "speise\n", + "speises\n", + "speiss\n", + "speisses\n", + "spelaean\n", + "spelean\n", + "spell\n", + "spellbound\n", + "spelled\n", + "speller\n", + "spellers\n", + "spelling\n", + "spellings\n", + "spells\n", + "spelt\n", + "spelter\n", + "spelters\n", + "spelts\n", + "speltz\n", + "speltzes\n", + "spelunk\n", + "spelunked\n", + "spelunking\n", + "spelunks\n", + "spence\n", + "spencer\n", + "spencers\n", + "spences\n", + "spend\n", + "spender\n", + "spenders\n", + "spending\n", + "spends\n", + "spendthrift\n", + "spendthrifts\n", + "spent\n", + "sperm\n", + "spermaries\n", + "spermary\n", + "spermic\n", + "spermine\n", + "spermines\n", + "spermous\n", + "sperms\n", + "spew\n", + "spewed\n", + "spewer\n", + "spewers\n", + "spewing\n", + "spews\n", + "sphagnum\n", + "sphagnums\n", + "sphene\n", + "sphenes\n", + "sphenic\n", + "sphenoid\n", + "sphenoids\n", + "spheral\n", + "sphere\n", + "sphered\n", + "spheres\n", + "spheric\n", + "spherical\n", + "spherics\n", + "spherier\n", + "spheriest\n", + "sphering\n", + "spheroid\n", + "spheroids\n", + "spherule\n", + "spherules\n", + "sphery\n", + "sphinges\n", + "sphingid\n", + "sphingids\n", + "sphinx\n", + "sphinxes\n", + "sphygmic\n", + "sphygmus\n", + "sphygmuses\n", + "spic\n", + "spica\n", + "spicae\n", + "spicas\n", + "spicate\n", + "spicated\n", + "spiccato\n", + "spiccatos\n", + "spice\n", + "spiced\n", + "spicer\n", + "spiceries\n", + "spicers\n", + "spicery\n", + "spices\n", + "spicey\n", + "spicier\n", + "spiciest\n", + "spicily\n", + "spicing\n", + "spick\n", + "spicks\n", + "spics\n", + "spicula\n", + "spiculae\n", + "spicular\n", + "spicule\n", + "spicules\n", + "spiculum\n", + "spicy\n", + "spider\n", + "spiderier\n", + "spideriest\n", + "spiders\n", + "spidery\n", + "spied\n", + "spiegel\n", + "spiegels\n", + "spiel\n", + "spieled\n", + "spieler\n", + "spielers\n", + "spieling\n", + "spiels\n", + "spier\n", + "spiered\n", + "spiering\n", + "spiers\n", + "spies\n", + "spiffier\n", + "spiffiest\n", + "spiffily\n", + "spiffing\n", + "spiffy\n", + "spigot\n", + "spigots\n", + "spik\n", + "spike\n", + "spiked\n", + "spikelet\n", + "spikelets\n", + "spiker\n", + "spikers\n", + "spikes\n", + "spikier\n", + "spikiest\n", + "spikily\n", + "spiking\n", + "spiks\n", + "spiky\n", + "spile\n", + "spiled\n", + "spiles\n", + "spilikin\n", + "spilikins\n", + "spiling\n", + "spilings\n", + "spill\n", + "spillable\n", + "spillage\n", + "spillages\n", + "spilled\n", + "spiller\n", + "spillers\n", + "spilling\n", + "spills\n", + "spillway\n", + "spillways\n", + "spilt\n", + "spilth\n", + "spilths\n", + "spin\n", + "spinach\n", + "spinaches\n", + "spinage\n", + "spinages\n", + "spinal\n", + "spinally\n", + "spinals\n", + "spinate\n", + "spindle\n", + "spindled\n", + "spindler\n", + "spindlers\n", + "spindles\n", + "spindlier\n", + "spindliest\n", + "spindling\n", + "spindly\n", + "spine\n", + "spined\n", + "spinel\n", + "spineless\n", + "spinelle\n", + "spinelles\n", + "spinels\n", + "spines\n", + "spinet\n", + "spinets\n", + "spinier\n", + "spiniest\n", + "spinifex\n", + "spinifexes\n", + "spinless\n", + "spinner\n", + "spinneries\n", + "spinners\n", + "spinnery\n", + "spinney\n", + "spinneys\n", + "spinnies\n", + "spinning\n", + "spinnings\n", + "spinny\n", + "spinoff\n", + "spinoffs\n", + "spinor\n", + "spinors\n", + "spinose\n", + "spinous\n", + "spinout\n", + "spinouts\n", + "spins\n", + "spinster\n", + "spinsters\n", + "spinula\n", + "spinulae\n", + "spinule\n", + "spinules\n", + "spinwriter\n", + "spiny\n", + "spiracle\n", + "spiracles\n", + "spiraea\n", + "spiraeas\n", + "spiral\n", + "spiraled\n", + "spiraling\n", + "spiralled\n", + "spiralling\n", + "spirally\n", + "spirals\n", + "spirant\n", + "spirants\n", + "spire\n", + "spirea\n", + "spireas\n", + "spired\n", + "spirem\n", + "spireme\n", + "spiremes\n", + "spirems\n", + "spires\n", + "spirilla\n", + "spiring\n", + "spirit\n", + "spirited\n", + "spiriting\n", + "spiritless\n", + "spirits\n", + "spiritual\n", + "spiritualism\n", + "spiritualisms\n", + "spiritualist\n", + "spiritualistic\n", + "spiritualists\n", + "spiritualities\n", + "spirituality\n", + "spiritually\n", + "spirituals\n", + "spiroid\n", + "spirt\n", + "spirted\n", + "spirting\n", + "spirts\n", + "spirula\n", + "spirulae\n", + "spirulas\n", + "spiry\n", + "spit\n", + "spital\n", + "spitals\n", + "spitball\n", + "spitballs\n", + "spite\n", + "spited\n", + "spiteful\n", + "spitefuller\n", + "spitefullest\n", + "spitefully\n", + "spites\n", + "spitfire\n", + "spitfires\n", + "spiting\n", + "spits\n", + "spitted\n", + "spitter\n", + "spitters\n", + "spitting\n", + "spittle\n", + "spittles\n", + "spittoon\n", + "spittoons\n", + "spitz\n", + "spitzes\n", + "spiv\n", + "spivs\n", + "splake\n", + "splakes\n", + "splash\n", + "splashed\n", + "splasher\n", + "splashers\n", + "splashes\n", + "splashier\n", + "splashiest\n", + "splashing\n", + "splashy\n", + "splat\n", + "splats\n", + "splatter\n", + "splattered\n", + "splattering\n", + "splatters\n", + "splay\n", + "splayed\n", + "splaying\n", + "splays\n", + "spleen\n", + "spleenier\n", + "spleeniest\n", + "spleens\n", + "spleeny\n", + "splendid\n", + "splendider\n", + "splendidest\n", + "splendidly\n", + "splendor\n", + "splendors\n", + "splenia\n", + "splenial\n", + "splenic\n", + "splenii\n", + "splenium\n", + "splenius\n", + "splent\n", + "splents\n", + "splice\n", + "spliced\n", + "splicer\n", + "splicers\n", + "splices\n", + "splicing\n", + "spline\n", + "splined\n", + "splines\n", + "splining\n", + "splint\n", + "splinted\n", + "splinter\n", + "splintered\n", + "splintering\n", + "splinters\n", + "splinting\n", + "splints\n", + "split\n", + "splits\n", + "splitter\n", + "splitters\n", + "splitting\n", + "splore\n", + "splores\n", + "splosh\n", + "sploshed\n", + "sploshes\n", + "sploshing\n", + "splotch\n", + "splotched\n", + "splotches\n", + "splotchier\n", + "splotchiest\n", + "splotching\n", + "splotchy\n", + "splurge\n", + "splurged\n", + "splurges\n", + "splurgier\n", + "splurgiest\n", + "splurging\n", + "splurgy\n", + "splutter\n", + "spluttered\n", + "spluttering\n", + "splutters\n", + "spode\n", + "spodes\n", + "spoil\n", + "spoilage\n", + "spoilages\n", + "spoiled\n", + "spoiler\n", + "spoilers\n", + "spoiling\n", + "spoils\n", + "spoilt\n", + "spoke\n", + "spoked\n", + "spoken\n", + "spokes\n", + "spokesman\n", + "spokesmen\n", + "spokeswoman\n", + "spokeswomen\n", + "spoking\n", + "spoliate\n", + "spoliated\n", + "spoliates\n", + "spoliating\n", + "spondaic\n", + "spondaics\n", + "spondee\n", + "spondees\n", + "sponge\n", + "sponged\n", + "sponger\n", + "spongers\n", + "sponges\n", + "spongier\n", + "spongiest\n", + "spongily\n", + "spongin\n", + "sponging\n", + "spongins\n", + "spongy\n", + "sponsal\n", + "sponsion\n", + "sponsions\n", + "sponson\n", + "sponsons\n", + "sponsor\n", + "sponsored\n", + "sponsoring\n", + "sponsors\n", + "sponsorship\n", + "sponsorships\n", + "spontaneities\n", + "spontaneity\n", + "spontaneous\n", + "spontaneously\n", + "spontoon\n", + "spontoons\n", + "spoof\n", + "spoofed\n", + "spoofing\n", + "spoofs\n", + "spook\n", + "spooked\n", + "spookier\n", + "spookiest\n", + "spookily\n", + "spooking\n", + "spookish\n", + "spooks\n", + "spooky\n", + "spool\n", + "spooled\n", + "spooling\n", + "spools\n", + "spoon\n", + "spooned\n", + "spooney\n", + "spooneys\n", + "spoonful\n", + "spoonfuls\n", + "spoonier\n", + "spoonies\n", + "spooniest\n", + "spoonily\n", + "spooning\n", + "spoons\n", + "spoonsful\n", + "spoony\n", + "spoor\n", + "spoored\n", + "spooring\n", + "spoors\n", + "sporadic\n", + "sporadically\n", + "sporal\n", + "spore\n", + "spored\n", + "spores\n", + "sporing\n", + "sporoid\n", + "sporran\n", + "sporrans\n", + "sport\n", + "sported\n", + "sporter\n", + "sporters\n", + "sportful\n", + "sportier\n", + "sportiest\n", + "sportily\n", + "sporting\n", + "sportive\n", + "sports\n", + "sportscast\n", + "sportscaster\n", + "sportscasters\n", + "sportscasts\n", + "sportsman\n", + "sportsmanship\n", + "sportsmanships\n", + "sportsmen\n", + "sporty\n", + "sporular\n", + "sporule\n", + "sporules\n", + "spot\n", + "spotless\n", + "spotlessly\n", + "spotlight\n", + "spotlighted\n", + "spotlighting\n", + "spotlights\n", + "spots\n", + "spotted\n", + "spotter\n", + "spotters\n", + "spottier\n", + "spottiest\n", + "spottily\n", + "spotting\n", + "spotty\n", + "spousal\n", + "spousals\n", + "spouse\n", + "spoused\n", + "spouses\n", + "spousing\n", + "spout\n", + "spouted\n", + "spouter\n", + "spouters\n", + "spouting\n", + "spouts\n", + "spraddle\n", + "spraddled\n", + "spraddles\n", + "spraddling\n", + "sprag\n", + "sprags\n", + "sprain\n", + "sprained\n", + "spraining\n", + "sprains\n", + "sprang\n", + "sprat\n", + "sprats\n", + "sprattle\n", + "sprattled\n", + "sprattles\n", + "sprattling\n", + "sprawl\n", + "sprawled\n", + "sprawler\n", + "sprawlers\n", + "sprawlier\n", + "sprawliest\n", + "sprawling\n", + "sprawls\n", + "sprawly\n", + "spray\n", + "sprayed\n", + "sprayer\n", + "sprayers\n", + "spraying\n", + "sprays\n", + "spread\n", + "spreader\n", + "spreaders\n", + "spreading\n", + "spreads\n", + "spree\n", + "sprees\n", + "sprent\n", + "sprier\n", + "spriest\n", + "sprig\n", + "sprigged\n", + "sprigger\n", + "spriggers\n", + "spriggier\n", + "spriggiest\n", + "sprigging\n", + "spriggy\n", + "spright\n", + "sprightliness\n", + "sprightlinesses\n", + "sprightly\n", + "sprights\n", + "sprigs\n", + "spring\n", + "springal\n", + "springals\n", + "springe\n", + "springed\n", + "springeing\n", + "springer\n", + "springers\n", + "springes\n", + "springier\n", + "springiest\n", + "springing\n", + "springs\n", + "springy\n", + "sprinkle\n", + "sprinkled\n", + "sprinkler\n", + "sprinklers\n", + "sprinkles\n", + "sprinkling\n", + "sprint\n", + "sprinted\n", + "sprinter\n", + "sprinters\n", + "sprinting\n", + "sprints\n", + "sprit\n", + "sprite\n", + "sprites\n", + "sprits\n", + "sprocket\n", + "sprockets\n", + "sprout\n", + "sprouted\n", + "sprouting\n", + "sprouts\n", + "spruce\n", + "spruced\n", + "sprucely\n", + "sprucer\n", + "spruces\n", + "sprucest\n", + "sprucier\n", + "spruciest\n", + "sprucing\n", + "sprucy\n", + "sprue\n", + "sprues\n", + "sprug\n", + "sprugs\n", + "sprung\n", + "spry\n", + "spryer\n", + "spryest\n", + "spryly\n", + "spryness\n", + "sprynesses\n", + "spud\n", + "spudded\n", + "spudder\n", + "spudders\n", + "spudding\n", + "spuds\n", + "spue\n", + "spued\n", + "spues\n", + "spuing\n", + "spume\n", + "spumed\n", + "spumes\n", + "spumier\n", + "spumiest\n", + "spuming\n", + "spumone\n", + "spumones\n", + "spumoni\n", + "spumonis\n", + "spumous\n", + "spumy\n", + "spun\n", + "spunk\n", + "spunked\n", + "spunkie\n", + "spunkier\n", + "spunkies\n", + "spunkiest\n", + "spunkily\n", + "spunking\n", + "spunks\n", + "spunky\n", + "spur\n", + "spurgall\n", + "spurgalled\n", + "spurgalling\n", + "spurgalls\n", + "spurge\n", + "spurges\n", + "spurious\n", + "spurn\n", + "spurned\n", + "spurner\n", + "spurners\n", + "spurning\n", + "spurns\n", + "spurred\n", + "spurrer\n", + "spurrers\n", + "spurrey\n", + "spurreys\n", + "spurrier\n", + "spurriers\n", + "spurries\n", + "spurring\n", + "spurry\n", + "spurs\n", + "spurt\n", + "spurted\n", + "spurting\n", + "spurtle\n", + "spurtles\n", + "spurts\n", + "sputa\n", + "sputnik\n", + "sputniks\n", + "sputter\n", + "sputtered\n", + "sputtering\n", + "sputters\n", + "sputum\n", + "spy\n", + "spyglass\n", + "spyglasses\n", + "spying\n", + "squab\n", + "squabbier\n", + "squabbiest\n", + "squabble\n", + "squabbled\n", + "squabbles\n", + "squabbling\n", + "squabby\n", + "squabs\n", + "squad\n", + "squadded\n", + "squadding\n", + "squadron\n", + "squadroned\n", + "squadroning\n", + "squadrons\n", + "squads\n", + "squalene\n", + "squalenes\n", + "squalid\n", + "squalider\n", + "squalidest\n", + "squall\n", + "squalled\n", + "squaller\n", + "squallers\n", + "squallier\n", + "squalliest\n", + "squalling\n", + "squalls\n", + "squally\n", + "squalor\n", + "squalors\n", + "squama\n", + "squamae\n", + "squamate\n", + "squamose\n", + "squamous\n", + "squander\n", + "squandered\n", + "squandering\n", + "squanders\n", + "square\n", + "squared\n", + "squarely\n", + "squarer\n", + "squarers\n", + "squares\n", + "squarest\n", + "squaring\n", + "squarish\n", + "squash\n", + "squashed\n", + "squasher\n", + "squashers\n", + "squashes\n", + "squashier\n", + "squashiest\n", + "squashing\n", + "squashy\n", + "squat\n", + "squatly\n", + "squats\n", + "squatted\n", + "squatter\n", + "squattered\n", + "squattering\n", + "squatters\n", + "squattest\n", + "squattier\n", + "squattiest\n", + "squatting\n", + "squatty\n", + "squaw\n", + "squawk\n", + "squawked\n", + "squawker\n", + "squawkers\n", + "squawking\n", + "squawks\n", + "squaws\n", + "squeak\n", + "squeaked\n", + "squeaker\n", + "squeakers\n", + "squeakier\n", + "squeakiest\n", + "squeaking\n", + "squeaks\n", + "squeaky\n", + "squeal\n", + "squealed\n", + "squealer\n", + "squealers\n", + "squealing\n", + "squeals\n", + "squeamish\n", + "squeegee\n", + "squeegeed\n", + "squeegeeing\n", + "squeegees\n", + "squeeze\n", + "squeezed\n", + "squeezer\n", + "squeezers\n", + "squeezes\n", + "squeezing\n", + "squeg\n", + "squegged\n", + "squegging\n", + "squegs\n", + "squelch\n", + "squelched\n", + "squelches\n", + "squelchier\n", + "squelchiest\n", + "squelching\n", + "squelchy\n", + "squib\n", + "squibbed\n", + "squibbing\n", + "squibs\n", + "squid\n", + "squidded\n", + "squidding\n", + "squids\n", + "squiffed\n", + "squiffy\n", + "squiggle\n", + "squiggled\n", + "squiggles\n", + "squigglier\n", + "squiggliest\n", + "squiggling\n", + "squiggly\n", + "squilgee\n", + "squilgeed\n", + "squilgeeing\n", + "squilgees\n", + "squill\n", + "squilla\n", + "squillae\n", + "squillas\n", + "squills\n", + "squinch\n", + "squinched\n", + "squinches\n", + "squinching\n", + "squinnied\n", + "squinnier\n", + "squinnies\n", + "squinniest\n", + "squinny\n", + "squinnying\n", + "squint\n", + "squinted\n", + "squinter\n", + "squinters\n", + "squintest\n", + "squintier\n", + "squintiest\n", + "squinting\n", + "squints\n", + "squinty\n", + "squire\n", + "squired\n", + "squireen\n", + "squireens\n", + "squires\n", + "squiring\n", + "squirish\n", + "squirm\n", + "squirmed\n", + "squirmer\n", + "squirmers\n", + "squirmier\n", + "squirmiest\n", + "squirming\n", + "squirms\n", + "squirmy\n", + "squirrel\n", + "squirreled\n", + "squirreling\n", + "squirrelled\n", + "squirrelling\n", + "squirrels\n", + "squirt\n", + "squirted\n", + "squirter\n", + "squirters\n", + "squirting\n", + "squirts\n", + "squish\n", + "squished\n", + "squishes\n", + "squishier\n", + "squishiest\n", + "squishing\n", + "squishy\n", + "squoosh\n", + "squooshed\n", + "squooshes\n", + "squooshing\n", + "squush\n", + "squushed\n", + "squushes\n", + "squushing\n", + "sraddha\n", + "sraddhas\n", + "sradha\n", + "sradhas\n", + "sri\n", + "sris\n", + "stab\n", + "stabbed\n", + "stabber\n", + "stabbers\n", + "stabbing\n", + "stabile\n", + "stabiles\n", + "stabilities\n", + "stability\n", + "stabilization\n", + "stabilize\n", + "stabilized\n", + "stabilizer\n", + "stabilizers\n", + "stabilizes\n", + "stabilizing\n", + "stable\n", + "stabled\n", + "stabler\n", + "stablers\n", + "stables\n", + "stablest\n", + "stabling\n", + "stablings\n", + "stablish\n", + "stablished\n", + "stablishes\n", + "stablishing\n", + "stably\n", + "stabs\n", + "staccati\n", + "staccato\n", + "staccatos\n", + "stack\n", + "stacked\n", + "stacker\n", + "stackers\n", + "stacking\n", + "stacks\n", + "stacte\n", + "stactes\n", + "staddle\n", + "staddles\n", + "stade\n", + "stades\n", + "stadia\n", + "stadias\n", + "stadium\n", + "stadiums\n", + "staff\n", + "staffed\n", + "staffer\n", + "staffers\n", + "staffing\n", + "staffs\n", + "stag\n", + "stage\n", + "stagecoach\n", + "stagecoaches\n", + "staged\n", + "stager\n", + "stagers\n", + "stages\n", + "stagey\n", + "staggard\n", + "staggards\n", + "staggart\n", + "staggarts\n", + "stagged\n", + "stagger\n", + "staggered\n", + "staggering\n", + "staggeringly\n", + "staggers\n", + "staggery\n", + "staggie\n", + "staggier\n", + "staggies\n", + "staggiest\n", + "stagging\n", + "staggy\n", + "stagier\n", + "stagiest\n", + "stagily\n", + "staging\n", + "stagings\n", + "stagnant\n", + "stagnate\n", + "stagnated\n", + "stagnates\n", + "stagnating\n", + "stagnation\n", + "stagnations\n", + "stags\n", + "stagy\n", + "staid\n", + "staider\n", + "staidest\n", + "staidly\n", + "staig\n", + "staigs\n", + "stain\n", + "stained\n", + "stainer\n", + "stainers\n", + "staining\n", + "stainless\n", + "stains\n", + "stair\n", + "staircase\n", + "staircases\n", + "stairs\n", + "stairway\n", + "stairways\n", + "stairwell\n", + "stairwells\n", + "stake\n", + "staked\n", + "stakeout\n", + "stakeouts\n", + "stakes\n", + "staking\n", + "stalactite\n", + "stalactites\n", + "stalag\n", + "stalagmite\n", + "stalagmites\n", + "stalags\n", + "stale\n", + "staled\n", + "stalely\n", + "stalemate\n", + "stalemated\n", + "stalemates\n", + "stalemating\n", + "staler\n", + "stales\n", + "stalest\n", + "staling\n", + "stalinism\n", + "stalk\n", + "stalked\n", + "stalker\n", + "stalkers\n", + "stalkier\n", + "stalkiest\n", + "stalkily\n", + "stalking\n", + "stalks\n", + "stalky\n", + "stall\n", + "stalled\n", + "stalling\n", + "stallion\n", + "stallions\n", + "stalls\n", + "stalwart\n", + "stalwarts\n", + "stamen\n", + "stamens\n", + "stamina\n", + "staminal\n", + "staminas\n", + "stammel\n", + "stammels\n", + "stammer\n", + "stammered\n", + "stammering\n", + "stammers\n", + "stamp\n", + "stamped\n", + "stampede\n", + "stampeded\n", + "stampedes\n", + "stampeding\n", + "stamper\n", + "stampers\n", + "stamping\n", + "stamps\n", + "stance\n", + "stances\n", + "stanch\n", + "stanched\n", + "stancher\n", + "stanchers\n", + "stanches\n", + "stanchest\n", + "stanching\n", + "stanchion\n", + "stanchions\n", + "stanchly\n", + "stand\n", + "standard\n", + "standardization\n", + "standardizations\n", + "standardize\n", + "standardized\n", + "standardizes\n", + "standardizing\n", + "standards\n", + "standby\n", + "standbys\n", + "standee\n", + "standees\n", + "stander\n", + "standers\n", + "standing\n", + "standings\n", + "standish\n", + "standishes\n", + "standoff\n", + "standoffs\n", + "standout\n", + "standouts\n", + "standpat\n", + "standpoint\n", + "standpoints\n", + "stands\n", + "standstill\n", + "standup\n", + "stane\n", + "staned\n", + "stanes\n", + "stang\n", + "stanged\n", + "stanging\n", + "stangs\n", + "stanhope\n", + "stanhopes\n", + "staning\n", + "stank\n", + "stanks\n", + "stannaries\n", + "stannary\n", + "stannic\n", + "stannite\n", + "stannites\n", + "stannous\n", + "stannum\n", + "stannums\n", + "stanza\n", + "stanzaed\n", + "stanzaic\n", + "stanzas\n", + "stapedes\n", + "stapelia\n", + "stapelias\n", + "stapes\n", + "staph\n", + "staphs\n", + "staple\n", + "stapled\n", + "stapler\n", + "staplers\n", + "staples\n", + "stapling\n", + "star\n", + "starboard\n", + "starboards\n", + "starch\n", + "starched\n", + "starches\n", + "starchier\n", + "starchiest\n", + "starching\n", + "starchy\n", + "stardom\n", + "stardoms\n", + "stardust\n", + "stardusts\n", + "stare\n", + "stared\n", + "starer\n", + "starers\n", + "stares\n", + "starets\n", + "starfish\n", + "starfishes\n", + "stargaze\n", + "stargazed\n", + "stargazes\n", + "stargazing\n", + "staring\n", + "stark\n", + "starker\n", + "starkest\n", + "starkly\n", + "starless\n", + "starlet\n", + "starlets\n", + "starlight\n", + "starlights\n", + "starlike\n", + "starling\n", + "starlings\n", + "starlit\n", + "starnose\n", + "starnoses\n", + "starred\n", + "starrier\n", + "starriest\n", + "starring\n", + "starry\n", + "stars\n", + "start\n", + "started\n", + "starter\n", + "starters\n", + "starting\n", + "startle\n", + "startled\n", + "startler\n", + "startlers\n", + "startles\n", + "startling\n", + "starts\n", + "startsy\n", + "starvation\n", + "starvations\n", + "starve\n", + "starved\n", + "starver\n", + "starvers\n", + "starves\n", + "starving\n", + "starwort\n", + "starworts\n", + "stases\n", + "stash\n", + "stashed\n", + "stashes\n", + "stashing\n", + "stasima\n", + "stasimon\n", + "stasis\n", + "statable\n", + "statal\n", + "statant\n", + "state\n", + "stated\n", + "statedly\n", + "statehood\n", + "statehoods\n", + "statelier\n", + "stateliest\n", + "stateliness\n", + "statelinesses\n", + "stately\n", + "statement\n", + "statements\n", + "stater\n", + "stateroom\n", + "staterooms\n", + "staters\n", + "states\n", + "statesman\n", + "statesmanlike\n", + "statesmanship\n", + "statesmanships\n", + "statesmen\n", + "static\n", + "statical\n", + "statice\n", + "statices\n", + "statics\n", + "stating\n", + "station\n", + "stationary\n", + "stationed\n", + "stationer\n", + "stationeries\n", + "stationers\n", + "stationery\n", + "stationing\n", + "stations\n", + "statism\n", + "statisms\n", + "statist\n", + "statistic\n", + "statistical\n", + "statistically\n", + "statistician\n", + "statisticians\n", + "statistics\n", + "statists\n", + "stative\n", + "statives\n", + "stator\n", + "stators\n", + "statuaries\n", + "statuary\n", + "statue\n", + "statued\n", + "statues\n", + "statuesque\n", + "statuette\n", + "statuettes\n", + "stature\n", + "statures\n", + "status\n", + "statuses\n", + "statute\n", + "statutes\n", + "statutory\n", + "staumrel\n", + "staumrels\n", + "staunch\n", + "staunched\n", + "stauncher\n", + "staunches\n", + "staunchest\n", + "staunching\n", + "staunchly\n", + "stave\n", + "staved\n", + "staves\n", + "staving\n", + "staw\n", + "stay\n", + "stayed\n", + "stayer\n", + "stayers\n", + "staying\n", + "stays\n", + "staysail\n", + "staysails\n", + "stead\n", + "steaded\n", + "steadfast\n", + "steadfastly\n", + "steadfastness\n", + "steadfastnesses\n", + "steadied\n", + "steadier\n", + "steadiers\n", + "steadies\n", + "steadiest\n", + "steadily\n", + "steadiness\n", + "steadinesses\n", + "steading\n", + "steadings\n", + "steads\n", + "steady\n", + "steadying\n", + "steak\n", + "steaks\n", + "steal\n", + "stealage\n", + "stealages\n", + "stealer\n", + "stealers\n", + "stealing\n", + "stealings\n", + "steals\n", + "stealth\n", + "stealthier\n", + "stealthiest\n", + "stealthily\n", + "stealths\n", + "stealthy\n", + "steam\n", + "steamboat\n", + "steamboats\n", + "steamed\n", + "steamer\n", + "steamered\n", + "steamering\n", + "steamers\n", + "steamier\n", + "steamiest\n", + "steamily\n", + "steaming\n", + "steams\n", + "steamship\n", + "steamships\n", + "steamy\n", + "steapsin\n", + "steapsins\n", + "stearate\n", + "stearates\n", + "stearic\n", + "stearin\n", + "stearine\n", + "stearines\n", + "stearins\n", + "steatite\n", + "steatites\n", + "stedfast\n", + "steed\n", + "steeds\n", + "steek\n", + "steeked\n", + "steeking\n", + "steeks\n", + "steel\n", + "steeled\n", + "steelie\n", + "steelier\n", + "steelies\n", + "steeliest\n", + "steeling\n", + "steels\n", + "steely\n", + "steenbok\n", + "steenboks\n", + "steep\n", + "steeped\n", + "steepen\n", + "steepened\n", + "steepening\n", + "steepens\n", + "steeper\n", + "steepers\n", + "steepest\n", + "steeping\n", + "steeple\n", + "steeplechase\n", + "steeplechases\n", + "steepled\n", + "steeples\n", + "steeply\n", + "steepness\n", + "steepnesses\n", + "steeps\n", + "steer\n", + "steerage\n", + "steerages\n", + "steered\n", + "steerer\n", + "steerers\n", + "steering\n", + "steers\n", + "steeve\n", + "steeved\n", + "steeves\n", + "steeving\n", + "steevings\n", + "stegodon\n", + "stegodons\n", + "stein\n", + "steinbok\n", + "steinboks\n", + "steins\n", + "stela\n", + "stelae\n", + "stelai\n", + "stelar\n", + "stele\n", + "stelene\n", + "steles\n", + "stelic\n", + "stella\n", + "stellar\n", + "stellas\n", + "stellate\n", + "stellified\n", + "stellifies\n", + "stellify\n", + "stellifying\n", + "stem\n", + "stemless\n", + "stemlike\n", + "stemma\n", + "stemmas\n", + "stemmata\n", + "stemmed\n", + "stemmer\n", + "stemmeries\n", + "stemmers\n", + "stemmery\n", + "stemmier\n", + "stemmiest\n", + "stemming\n", + "stemmy\n", + "stems\n", + "stemson\n", + "stemsons\n", + "stemware\n", + "stemwares\n", + "stench\n", + "stenches\n", + "stenchier\n", + "stenchiest\n", + "stenchy\n", + "stencil\n", + "stenciled\n", + "stenciling\n", + "stencilled\n", + "stencilling\n", + "stencils\n", + "stengah\n", + "stengahs\n", + "steno\n", + "stenographer\n", + "stenographers\n", + "stenographic\n", + "stenography\n", + "stenos\n", + "stenosed\n", + "stenoses\n", + "stenosis\n", + "stenotic\n", + "stentor\n", + "stentorian\n", + "stentors\n", + "step\n", + "stepdame\n", + "stepdames\n", + "stepladder\n", + "stepladders\n", + "steplike\n", + "steppe\n", + "stepped\n", + "stepper\n", + "steppers\n", + "steppes\n", + "stepping\n", + "steps\n", + "stepson\n", + "stepsons\n", + "stepwise\n", + "stere\n", + "stereo\n", + "stereoed\n", + "stereoing\n", + "stereophonic\n", + "stereos\n", + "stereotype\n", + "stereotyped\n", + "stereotypes\n", + "stereotyping\n", + "steres\n", + "steric\n", + "sterical\n", + "sterigma\n", + "sterigmas\n", + "sterigmata\n", + "sterile\n", + "sterilities\n", + "sterility\n", + "sterilization\n", + "sterilizations\n", + "sterilize\n", + "sterilized\n", + "sterilizer\n", + "sterilizers\n", + "sterilizes\n", + "sterilizing\n", + "sterlet\n", + "sterlets\n", + "sterling\n", + "sterlings\n", + "stern\n", + "sterna\n", + "sternal\n", + "sterner\n", + "sternest\n", + "sternite\n", + "sternites\n", + "sternly\n", + "sternness\n", + "sternnesses\n", + "sterns\n", + "sternson\n", + "sternsons\n", + "sternum\n", + "sternums\n", + "sternway\n", + "sternways\n", + "steroid\n", + "steroids\n", + "sterol\n", + "sterols\n", + "stertor\n", + "stertors\n", + "stet\n", + "stethoscope\n", + "stethoscopes\n", + "stets\n", + "stetson\n", + "stetsons\n", + "stetted\n", + "stetting\n", + "stevedore\n", + "stevedores\n", + "stew\n", + "steward\n", + "stewarded\n", + "stewardess\n", + "stewardesses\n", + "stewarding\n", + "stewards\n", + "stewardship\n", + "stewardships\n", + "stewbum\n", + "stewbums\n", + "stewed\n", + "stewing\n", + "stewpan\n", + "stewpans\n", + "stews\n", + "stey\n", + "sthenia\n", + "sthenias\n", + "sthenic\n", + "stibial\n", + "stibine\n", + "stibines\n", + "stibium\n", + "stibiums\n", + "stibnite\n", + "stibnites\n", + "stich\n", + "stichic\n", + "stichs\n", + "stick\n", + "sticked\n", + "sticker\n", + "stickers\n", + "stickful\n", + "stickfuls\n", + "stickier\n", + "stickiest\n", + "stickily\n", + "sticking\n", + "stickit\n", + "stickle\n", + "stickled\n", + "stickler\n", + "sticklers\n", + "stickles\n", + "stickling\n", + "stickman\n", + "stickmen\n", + "stickout\n", + "stickouts\n", + "stickpin\n", + "stickpins\n", + "sticks\n", + "stickum\n", + "stickums\n", + "stickup\n", + "stickups\n", + "sticky\n", + "stied\n", + "sties\n", + "stiff\n", + "stiffen\n", + "stiffened\n", + "stiffening\n", + "stiffens\n", + "stiffer\n", + "stiffest\n", + "stiffish\n", + "stiffly\n", + "stiffness\n", + "stiffnesses\n", + "stiffs\n", + "stifle\n", + "stifled\n", + "stifler\n", + "stiflers\n", + "stifles\n", + "stifling\n", + "stigma\n", + "stigmal\n", + "stigmas\n", + "stigmata\n", + "stigmatize\n", + "stigmatized\n", + "stigmatizes\n", + "stigmatizing\n", + "stilbene\n", + "stilbenes\n", + "stilbite\n", + "stilbites\n", + "stile\n", + "stiles\n", + "stiletto\n", + "stilettoed\n", + "stilettoes\n", + "stilettoing\n", + "stilettos\n", + "still\n", + "stillbirth\n", + "stillbirths\n", + "stillborn\n", + "stilled\n", + "stiller\n", + "stillest\n", + "stillier\n", + "stilliest\n", + "stilling\n", + "stillman\n", + "stillmen\n", + "stillness\n", + "stillnesses\n", + "stills\n", + "stilly\n", + "stilt\n", + "stilted\n", + "stilting\n", + "stilts\n", + "stime\n", + "stimes\n", + "stimied\n", + "stimies\n", + "stimulant\n", + "stimulants\n", + "stimulate\n", + "stimulated\n", + "stimulates\n", + "stimulating\n", + "stimulation\n", + "stimulations\n", + "stimuli\n", + "stimulus\n", + "stimy\n", + "stimying\n", + "sting\n", + "stinger\n", + "stingers\n", + "stingier\n", + "stingiest\n", + "stingily\n", + "stinginess\n", + "stinginesses\n", + "stinging\n", + "stingo\n", + "stingos\n", + "stingray\n", + "stingrays\n", + "stings\n", + "stingy\n", + "stink\n", + "stinkard\n", + "stinkards\n", + "stinkbug\n", + "stinkbugs\n", + "stinker\n", + "stinkers\n", + "stinkier\n", + "stinkiest\n", + "stinking\n", + "stinko\n", + "stinkpot\n", + "stinkpots\n", + "stinks\n", + "stinky\n", + "stint\n", + "stinted\n", + "stinter\n", + "stinters\n", + "stinting\n", + "stints\n", + "stipe\n", + "stiped\n", + "stipel\n", + "stipels\n", + "stipend\n", + "stipends\n", + "stipes\n", + "stipites\n", + "stipple\n", + "stippled\n", + "stippler\n", + "stipplers\n", + "stipples\n", + "stippling\n", + "stipular\n", + "stipulate\n", + "stipulated\n", + "stipulates\n", + "stipulating\n", + "stipulation\n", + "stipulations\n", + "stipule\n", + "stipuled\n", + "stipules\n", + "stir\n", + "stirk\n", + "stirks\n", + "stirp\n", + "stirpes\n", + "stirps\n", + "stirred\n", + "stirrer\n", + "stirrers\n", + "stirring\n", + "stirrup\n", + "stirrups\n", + "stirs\n", + "stitch\n", + "stitched\n", + "stitcher\n", + "stitchers\n", + "stitches\n", + "stitching\n", + "stithied\n", + "stithies\n", + "stithy\n", + "stithying\n", + "stiver\n", + "stivers\n", + "stoa\n", + "stoae\n", + "stoai\n", + "stoas\n", + "stoat\n", + "stoats\n", + "stob\n", + "stobbed\n", + "stobbing\n", + "stobs\n", + "stoccado\n", + "stoccados\n", + "stoccata\n", + "stoccatas\n", + "stock\n", + "stockade\n", + "stockaded\n", + "stockades\n", + "stockading\n", + "stockcar\n", + "stockcars\n", + "stocked\n", + "stocker\n", + "stockers\n", + "stockier\n", + "stockiest\n", + "stockily\n", + "stocking\n", + "stockings\n", + "stockish\n", + "stockist\n", + "stockists\n", + "stockman\n", + "stockmen\n", + "stockpile\n", + "stockpiled\n", + "stockpiles\n", + "stockpiling\n", + "stockpot\n", + "stockpots\n", + "stocks\n", + "stocky\n", + "stockyard\n", + "stockyards\n", + "stodge\n", + "stodged\n", + "stodges\n", + "stodgier\n", + "stodgiest\n", + "stodgily\n", + "stodging\n", + "stodgy\n", + "stogey\n", + "stogeys\n", + "stogie\n", + "stogies\n", + "stogy\n", + "stoic\n", + "stoical\n", + "stoically\n", + "stoicism\n", + "stoicisms\n", + "stoics\n", + "stoke\n", + "stoked\n", + "stoker\n", + "stokers\n", + "stokes\n", + "stokesia\n", + "stokesias\n", + "stoking\n", + "stole\n", + "stoled\n", + "stolen\n", + "stoles\n", + "stolid\n", + "stolider\n", + "stolidest\n", + "stolidities\n", + "stolidity\n", + "stolidly\n", + "stollen\n", + "stollens\n", + "stolon\n", + "stolonic\n", + "stolons\n", + "stoma\n", + "stomach\n", + "stomachache\n", + "stomachaches\n", + "stomached\n", + "stomaching\n", + "stomachs\n", + "stomachy\n", + "stomal\n", + "stomas\n", + "stomata\n", + "stomatal\n", + "stomate\n", + "stomates\n", + "stomatic\n", + "stomatitis\n", + "stomodea\n", + "stomp\n", + "stomped\n", + "stomper\n", + "stompers\n", + "stomping\n", + "stomps\n", + "stonable\n", + "stone\n", + "stoned\n", + "stoneflies\n", + "stonefly\n", + "stoner\n", + "stoners\n", + "stones\n", + "stoney\n", + "stonier\n", + "stoniest\n", + "stonily\n", + "stoning\n", + "stonish\n", + "stonished\n", + "stonishes\n", + "stonishing\n", + "stony\n", + "stood\n", + "stooge\n", + "stooged\n", + "stooges\n", + "stooging\n", + "stook\n", + "stooked\n", + "stooker\n", + "stookers\n", + "stooking\n", + "stooks\n", + "stool\n", + "stooled\n", + "stoolie\n", + "stoolies\n", + "stooling\n", + "stools\n", + "stoop\n", + "stooped\n", + "stooper\n", + "stoopers\n", + "stooping\n", + "stoops\n", + "stop\n", + "stopcock\n", + "stopcocks\n", + "stope\n", + "stoped\n", + "stoper\n", + "stopers\n", + "stopes\n", + "stopgap\n", + "stopgaps\n", + "stoping\n", + "stoplight\n", + "stoplights\n", + "stopover\n", + "stopovers\n", + "stoppage\n", + "stoppages\n", + "stopped\n", + "stopper\n", + "stoppered\n", + "stoppering\n", + "stoppers\n", + "stopping\n", + "stopple\n", + "stoppled\n", + "stopples\n", + "stoppling\n", + "stops\n", + "stopt\n", + "stopwatch\n", + "stopwatches\n", + "storable\n", + "storables\n", + "storage\n", + "storages\n", + "storax\n", + "storaxes\n", + "store\n", + "stored\n", + "storehouse\n", + "storehouses\n", + "storekeeper\n", + "storekeepers\n", + "storeroom\n", + "storerooms\n", + "stores\n", + "storey\n", + "storeyed\n", + "storeys\n", + "storied\n", + "stories\n", + "storing\n", + "stork\n", + "storks\n", + "storm\n", + "stormed\n", + "stormier\n", + "stormiest\n", + "stormily\n", + "storming\n", + "storms\n", + "stormy\n", + "story\n", + "storying\n", + "storyteller\n", + "storytellers\n", + "storytelling\n", + "storytellings\n", + "stoss\n", + "stotinka\n", + "stotinki\n", + "stound\n", + "stounded\n", + "stounding\n", + "stounds\n", + "stoup\n", + "stoups\n", + "stour\n", + "stoure\n", + "stoures\n", + "stourie\n", + "stours\n", + "stoury\n", + "stout\n", + "stouten\n", + "stoutened\n", + "stoutening\n", + "stoutens\n", + "stouter\n", + "stoutest\n", + "stoutish\n", + "stoutly\n", + "stoutness\n", + "stoutnesses\n", + "stouts\n", + "stove\n", + "stover\n", + "stovers\n", + "stoves\n", + "stow\n", + "stowable\n", + "stowage\n", + "stowages\n", + "stowaway\n", + "stowaways\n", + "stowed\n", + "stowing\n", + "stowp\n", + "stowps\n", + "stows\n", + "straddle\n", + "straddled\n", + "straddles\n", + "straddling\n", + "strafe\n", + "strafed\n", + "strafer\n", + "strafers\n", + "strafes\n", + "strafing\n", + "straggle\n", + "straggled\n", + "straggler\n", + "stragglers\n", + "straggles\n", + "stragglier\n", + "straggliest\n", + "straggling\n", + "straggly\n", + "straight\n", + "straighted\n", + "straighten\n", + "straightened\n", + "straightening\n", + "straightens\n", + "straighter\n", + "straightest\n", + "straightforward\n", + "straightforwarder\n", + "straightforwardest\n", + "straighting\n", + "straights\n", + "straightway\n", + "strain\n", + "strained\n", + "strainer\n", + "strainers\n", + "straining\n", + "strains\n", + "strait\n", + "straiten\n", + "straitened\n", + "straitening\n", + "straitens\n", + "straiter\n", + "straitest\n", + "straitly\n", + "straits\n", + "strake\n", + "straked\n", + "strakes\n", + "stramash\n", + "stramashes\n", + "stramonies\n", + "stramony\n", + "strand\n", + "stranded\n", + "strander\n", + "stranders\n", + "stranding\n", + "strands\n", + "strang\n", + "strange\n", + "strangely\n", + "strangeness\n", + "strangenesses\n", + "stranger\n", + "strangered\n", + "strangering\n", + "strangers\n", + "strangest\n", + "strangle\n", + "strangled\n", + "strangler\n", + "stranglers\n", + "strangles\n", + "strangling\n", + "strangulation\n", + "strangulations\n", + "strap\n", + "strapness\n", + "strapnesses\n", + "strapped\n", + "strapper\n", + "strappers\n", + "strapping\n", + "straps\n", + "strass\n", + "strasses\n", + "strata\n", + "stratagem\n", + "stratagems\n", + "stratal\n", + "stratas\n", + "strategic\n", + "strategies\n", + "strategist\n", + "strategists\n", + "strategy\n", + "strath\n", + "straths\n", + "strati\n", + "stratification\n", + "stratifications\n", + "stratified\n", + "stratifies\n", + "stratify\n", + "stratifying\n", + "stratosphere\n", + "stratospheres\n", + "stratous\n", + "stratum\n", + "stratums\n", + "stratus\n", + "stravage\n", + "stravaged\n", + "stravages\n", + "stravaging\n", + "stravaig\n", + "stravaiged\n", + "stravaiging\n", + "stravaigs\n", + "straw\n", + "strawberries\n", + "strawberry\n", + "strawed\n", + "strawhat\n", + "strawier\n", + "strawiest\n", + "strawing\n", + "straws\n", + "strawy\n", + "stray\n", + "strayed\n", + "strayer\n", + "strayers\n", + "straying\n", + "strays\n", + "streak\n", + "streaked\n", + "streaker\n", + "streakers\n", + "streakier\n", + "streakiest\n", + "streaking\n", + "streaks\n", + "streaky\n", + "stream\n", + "streamed\n", + "streamer\n", + "streamers\n", + "streamier\n", + "streamiest\n", + "streaming\n", + "streamline\n", + "streamlines\n", + "streams\n", + "streamy\n", + "streek\n", + "streeked\n", + "streeker\n", + "streekers\n", + "streeking\n", + "streeks\n", + "street\n", + "streetcar\n", + "streetcars\n", + "streets\n", + "strength\n", + "strengthen\n", + "strengthened\n", + "strengthener\n", + "strengtheners\n", + "strengthening\n", + "strengthens\n", + "strengths\n", + "strenuous\n", + "strenuously\n", + "strep\n", + "streps\n", + "stress\n", + "stressed\n", + "stresses\n", + "stressing\n", + "stressor\n", + "stressors\n", + "stretch\n", + "stretched\n", + "stretcher\n", + "stretchers\n", + "stretches\n", + "stretchier\n", + "stretchiest\n", + "stretching\n", + "stretchy\n", + "stretta\n", + "strettas\n", + "strette\n", + "stretti\n", + "stretto\n", + "strettos\n", + "streusel\n", + "streusels\n", + "strew\n", + "strewed\n", + "strewer\n", + "strewers\n", + "strewing\n", + "strewn\n", + "strews\n", + "stria\n", + "striae\n", + "striate\n", + "striated\n", + "striates\n", + "striating\n", + "strick\n", + "stricken\n", + "strickle\n", + "strickled\n", + "strickles\n", + "strickling\n", + "stricks\n", + "strict\n", + "stricter\n", + "strictest\n", + "strictly\n", + "strictness\n", + "strictnesses\n", + "stricture\n", + "strictures\n", + "strid\n", + "stridden\n", + "stride\n", + "strident\n", + "strider\n", + "striders\n", + "strides\n", + "striding\n", + "stridor\n", + "stridors\n", + "strife\n", + "strifes\n", + "strigil\n", + "strigils\n", + "strigose\n", + "strike\n", + "striker\n", + "strikers\n", + "strikes\n", + "striking\n", + "strikingly\n", + "string\n", + "stringed\n", + "stringent\n", + "stringer\n", + "stringers\n", + "stringier\n", + "stringiest\n", + "stringing\n", + "strings\n", + "stringy\n", + "strip\n", + "stripe\n", + "striped\n", + "striper\n", + "stripers\n", + "stripes\n", + "stripier\n", + "stripiest\n", + "striping\n", + "stripings\n", + "stripped\n", + "stripper\n", + "strippers\n", + "stripping\n", + "strips\n", + "stript\n", + "stripy\n", + "strive\n", + "strived\n", + "striven\n", + "striver\n", + "strivers\n", + "strives\n", + "striving\n", + "strobe\n", + "strobes\n", + "strobic\n", + "strobil\n", + "strobila\n", + "strobilae\n", + "strobile\n", + "strobiles\n", + "strobili\n", + "strobils\n", + "strode\n", + "stroke\n", + "stroked\n", + "stroker\n", + "strokers\n", + "strokes\n", + "stroking\n", + "stroll\n", + "strolled\n", + "stroller\n", + "strollers\n", + "strolling\n", + "strolls\n", + "stroma\n", + "stromal\n", + "stromata\n", + "strong\n", + "stronger\n", + "strongest\n", + "stronghold\n", + "strongholds\n", + "strongly\n", + "strongyl\n", + "strongyls\n", + "strontia\n", + "strontias\n", + "strontic\n", + "strontium\n", + "strontiums\n", + "strook\n", + "strop\n", + "strophe\n", + "strophes\n", + "strophic\n", + "stropped\n", + "stropping\n", + "strops\n", + "stroud\n", + "strouds\n", + "strove\n", + "strow\n", + "strowed\n", + "strowing\n", + "strown\n", + "strows\n", + "stroy\n", + "stroyed\n", + "stroyer\n", + "stroyers\n", + "stroying\n", + "stroys\n", + "struck\n", + "strucken\n", + "structural\n", + "structure\n", + "structures\n", + "strudel\n", + "strudels\n", + "struggle\n", + "struggled\n", + "struggles\n", + "struggling\n", + "strum\n", + "struma\n", + "strumae\n", + "strumas\n", + "strummed\n", + "strummer\n", + "strummers\n", + "strumming\n", + "strumose\n", + "strumous\n", + "strumpet\n", + "strumpets\n", + "strums\n", + "strung\n", + "strunt\n", + "strunted\n", + "strunting\n", + "strunts\n", + "strut\n", + "struts\n", + "strutted\n", + "strutter\n", + "strutters\n", + "strutting\n", + "strychnine\n", + "strychnines\n", + "stub\n", + "stubbed\n", + "stubbier\n", + "stubbiest\n", + "stubbily\n", + "stubbing\n", + "stubble\n", + "stubbled\n", + "stubbles\n", + "stubblier\n", + "stubbliest\n", + "stubbly\n", + "stubborn\n", + "stubbornly\n", + "stubbornness\n", + "stubbornnesses\n", + "stubby\n", + "stubiest\n", + "stubs\n", + "stucco\n", + "stuccoed\n", + "stuccoer\n", + "stuccoers\n", + "stuccoes\n", + "stuccoing\n", + "stuccos\n", + "stuck\n", + "stud\n", + "studbook\n", + "studbooks\n", + "studded\n", + "studdie\n", + "studdies\n", + "studding\n", + "studdings\n", + "student\n", + "students\n", + "studfish\n", + "studfishes\n", + "studied\n", + "studier\n", + "studiers\n", + "studies\n", + "studio\n", + "studios\n", + "studious\n", + "studiously\n", + "studs\n", + "studwork\n", + "studworks\n", + "study\n", + "studying\n", + "stuff\n", + "stuffed\n", + "stuffer\n", + "stuffers\n", + "stuffier\n", + "stuffiest\n", + "stuffily\n", + "stuffing\n", + "stuffings\n", + "stuffs\n", + "stuffy\n", + "stuiver\n", + "stuivers\n", + "stull\n", + "stulls\n", + "stultification\n", + "stultifications\n", + "stultified\n", + "stultifies\n", + "stultify\n", + "stultifying\n", + "stum\n", + "stumble\n", + "stumbled\n", + "stumbler\n", + "stumblers\n", + "stumbles\n", + "stumbling\n", + "stummed\n", + "stumming\n", + "stump\n", + "stumpage\n", + "stumpages\n", + "stumped\n", + "stumper\n", + "stumpers\n", + "stumpier\n", + "stumpiest\n", + "stumping\n", + "stumps\n", + "stumpy\n", + "stums\n", + "stun\n", + "stung\n", + "stunk\n", + "stunned\n", + "stunner\n", + "stunners\n", + "stunning\n", + "stunningly\n", + "stuns\n", + "stunsail\n", + "stunsails\n", + "stunt\n", + "stunted\n", + "stunting\n", + "stunts\n", + "stupa\n", + "stupas\n", + "stupe\n", + "stupefaction\n", + "stupefactions\n", + "stupefied\n", + "stupefies\n", + "stupefy\n", + "stupefying\n", + "stupendous\n", + "stupendously\n", + "stupes\n", + "stupid\n", + "stupider\n", + "stupidest\n", + "stupidity\n", + "stupidly\n", + "stupids\n", + "stupor\n", + "stuporous\n", + "stupors\n", + "sturdied\n", + "sturdier\n", + "sturdies\n", + "sturdiest\n", + "sturdily\n", + "sturdiness\n", + "sturdinesses\n", + "sturdy\n", + "sturgeon\n", + "sturgeons\n", + "sturt\n", + "sturts\n", + "stutter\n", + "stuttered\n", + "stuttering\n", + "stutters\n", + "sty\n", + "stye\n", + "styed\n", + "styes\n", + "stygian\n", + "stying\n", + "stylar\n", + "stylate\n", + "style\n", + "styled\n", + "styler\n", + "stylers\n", + "styles\n", + "stylet\n", + "stylets\n", + "styli\n", + "styling\n", + "stylings\n", + "stylise\n", + "stylised\n", + "styliser\n", + "stylisers\n", + "stylises\n", + "stylish\n", + "stylishly\n", + "stylishness\n", + "stylishnesses\n", + "stylising\n", + "stylist\n", + "stylists\n", + "stylite\n", + "stylites\n", + "stylitic\n", + "stylize\n", + "stylized\n", + "stylizer\n", + "stylizers\n", + "stylizes\n", + "stylizing\n", + "styloid\n", + "stylus\n", + "styluses\n", + "stymie\n", + "stymied\n", + "stymieing\n", + "stymies\n", + "stymy\n", + "stymying\n", + "stypsis\n", + "stypsises\n", + "styptic\n", + "styptics\n", + "styrax\n", + "styraxes\n", + "styrene\n", + "styrenes\n", + "suable\n", + "suably\n", + "suasion\n", + "suasions\n", + "suasive\n", + "suasory\n", + "suave\n", + "suavely\n", + "suaver\n", + "suavest\n", + "suavities\n", + "suavity\n", + "sub\n", + "suba\n", + "subabbot\n", + "subabbots\n", + "subacid\n", + "subacrid\n", + "subacute\n", + "subadar\n", + "subadars\n", + "subadult\n", + "subadults\n", + "subagencies\n", + "subagency\n", + "subagent\n", + "subagents\n", + "subah\n", + "subahdar\n", + "subahdars\n", + "subahs\n", + "subalar\n", + "subarctic\n", + "subarea\n", + "subareas\n", + "subarid\n", + "subas\n", + "subatmospheric\n", + "subatom\n", + "subatoms\n", + "subaverage\n", + "subaxial\n", + "subbase\n", + "subbasement\n", + "subbasements\n", + "subbases\n", + "subbass\n", + "subbasses\n", + "subbed\n", + "subbing\n", + "subbings\n", + "subbranch\n", + "subbranches\n", + "subbreed\n", + "subbreeds\n", + "subcabinet\n", + "subcabinets\n", + "subcategories\n", + "subcategory\n", + "subcause\n", + "subcauses\n", + "subcell\n", + "subcells\n", + "subchief\n", + "subchiefs\n", + "subclan\n", + "subclans\n", + "subclass\n", + "subclassed\n", + "subclasses\n", + "subclassification\n", + "subclassifications\n", + "subclassified\n", + "subclassifies\n", + "subclassify\n", + "subclassifying\n", + "subclassing\n", + "subclerk\n", + "subclerks\n", + "subcommand\n", + "subcommands\n", + "subcommission\n", + "subcommissions\n", + "subcommunities\n", + "subcommunity\n", + "subcomponent\n", + "subcomponents\n", + "subconcept\n", + "subconcepts\n", + "subconscious\n", + "subconsciouses\n", + "subconsciously\n", + "subconsciousness\n", + "subconsciousnesses\n", + "subcontract\n", + "subcontracted\n", + "subcontracting\n", + "subcontractor\n", + "subcontractors\n", + "subcontracts\n", + "subcool\n", + "subcooled\n", + "subcooling\n", + "subcools\n", + "subculture\n", + "subcultures\n", + "subcutaneous\n", + "subcutes\n", + "subcutis\n", + "subcutises\n", + "subdean\n", + "subdeans\n", + "subdeb\n", + "subdebs\n", + "subdepartment\n", + "subdepartments\n", + "subdepot\n", + "subdepots\n", + "subdistrict\n", + "subdistricts\n", + "subdivide\n", + "subdivided\n", + "subdivides\n", + "subdividing\n", + "subdivision\n", + "subdivisions\n", + "subdual\n", + "subduals\n", + "subduce\n", + "subduced\n", + "subduces\n", + "subducing\n", + "subduct\n", + "subducted\n", + "subducting\n", + "subducts\n", + "subdue\n", + "subdued\n", + "subduer\n", + "subduers\n", + "subdues\n", + "subduing\n", + "subecho\n", + "subechoes\n", + "subedit\n", + "subedited\n", + "subediting\n", + "subedits\n", + "subentries\n", + "subentry\n", + "subepoch\n", + "subepochs\n", + "subequatorial\n", + "suber\n", + "suberect\n", + "suberic\n", + "suberin\n", + "suberins\n", + "suberise\n", + "suberised\n", + "suberises\n", + "suberising\n", + "suberize\n", + "suberized\n", + "suberizes\n", + "suberizing\n", + "suberose\n", + "suberous\n", + "subers\n", + "subfamilies\n", + "subfamily\n", + "subfield\n", + "subfields\n", + "subfix\n", + "subfixes\n", + "subfloor\n", + "subfloors\n", + "subfluid\n", + "subfreezing\n", + "subfusc\n", + "subgenera\n", + "subgenus\n", + "subgenuses\n", + "subgrade\n", + "subgrades\n", + "subgroup\n", + "subgroups\n", + "subgum\n", + "subhead\n", + "subheading\n", + "subheadings\n", + "subheads\n", + "subhuman\n", + "subhumans\n", + "subhumid\n", + "subidea\n", + "subideas\n", + "subindex\n", + "subindexes\n", + "subindices\n", + "subindustries\n", + "subindustry\n", + "subitem\n", + "subitems\n", + "subito\n", + "subject\n", + "subjected\n", + "subjecting\n", + "subjection\n", + "subjections\n", + "subjective\n", + "subjectively\n", + "subjectivities\n", + "subjectivity\n", + "subjects\n", + "subjoin\n", + "subjoined\n", + "subjoining\n", + "subjoins\n", + "subjugate\n", + "subjugated\n", + "subjugates\n", + "subjugating\n", + "subjugation\n", + "subjugations\n", + "subjunctive\n", + "subjunctives\n", + "sublate\n", + "sublated\n", + "sublates\n", + "sublating\n", + "sublease\n", + "subleased\n", + "subleases\n", + "subleasing\n", + "sublet\n", + "sublethal\n", + "sublets\n", + "subletting\n", + "sublevel\n", + "sublevels\n", + "sublime\n", + "sublimed\n", + "sublimer\n", + "sublimers\n", + "sublimes\n", + "sublimest\n", + "subliming\n", + "sublimities\n", + "sublimity\n", + "subliterate\n", + "submarine\n", + "submarines\n", + "submerge\n", + "submerged\n", + "submergence\n", + "submergences\n", + "submerges\n", + "submerging\n", + "submerse\n", + "submersed\n", + "submerses\n", + "submersible\n", + "submersing\n", + "submersion\n", + "submersions\n", + "submiss\n", + "submission\n", + "submissions\n", + "submissive\n", + "submit\n", + "submits\n", + "submitted\n", + "submitting\n", + "subnasal\n", + "subnetwork\n", + "subnetworks\n", + "subnodal\n", + "subnormal\n", + "suboceanic\n", + "suboptic\n", + "suboral\n", + "suborder\n", + "suborders\n", + "subordinate\n", + "subordinated\n", + "subordinates\n", + "subordinating\n", + "subordination\n", + "subordinations\n", + "suborn\n", + "suborned\n", + "suborner\n", + "suborners\n", + "suborning\n", + "suborns\n", + "suboval\n", + "subovate\n", + "suboxide\n", + "suboxides\n", + "subpar\n", + "subpart\n", + "subparts\n", + "subpena\n", + "subpenaed\n", + "subpenaing\n", + "subpenas\n", + "subphyla\n", + "subplot\n", + "subplots\n", + "subpoena\n", + "subpoenaed\n", + "subpoenaing\n", + "subpoenas\n", + "subpolar\n", + "subprincipal\n", + "subprincipals\n", + "subprocess\n", + "subprocesses\n", + "subprogram\n", + "subprograms\n", + "subproject\n", + "subprojects\n", + "subpubic\n", + "subrace\n", + "subraces\n", + "subregion\n", + "subregions\n", + "subrent\n", + "subrents\n", + "subring\n", + "subrings\n", + "subroutine\n", + "subroutines\n", + "subrule\n", + "subrules\n", + "subs\n", + "subsale\n", + "subsales\n", + "subscribe\n", + "subscribed\n", + "subscriber\n", + "subscribers\n", + "subscribes\n", + "subscribing\n", + "subscript\n", + "subscription\n", + "subscriptions\n", + "subscripts\n", + "subsect\n", + "subsection\n", + "subsections\n", + "subsects\n", + "subsequent\n", + "subsequently\n", + "subsere\n", + "subseres\n", + "subserve\n", + "subserved\n", + "subserves\n", + "subserving\n", + "subset\n", + "subsets\n", + "subshaft\n", + "subshafts\n", + "subshrub\n", + "subshrubs\n", + "subside\n", + "subsided\n", + "subsider\n", + "subsiders\n", + "subsides\n", + "subsidiaries\n", + "subsidiary\n", + "subsidies\n", + "subsiding\n", + "subsidize\n", + "subsidized\n", + "subsidizes\n", + "subsidizing\n", + "subsidy\n", + "subsist\n", + "subsisted\n", + "subsistence\n", + "subsistences\n", + "subsisting\n", + "subsists\n", + "subsoil\n", + "subsoiled\n", + "subsoiling\n", + "subsoils\n", + "subsolar\n", + "subsonic\n", + "subspace\n", + "subspaces\n", + "subspecialties\n", + "subspecialty\n", + "subspecies\n", + "substage\n", + "substages\n", + "substandard\n", + "substantial\n", + "substantially\n", + "substantiate\n", + "substantiated\n", + "substantiates\n", + "substantiating\n", + "substantiation\n", + "substantiations\n", + "substitute\n", + "substituted\n", + "substitutes\n", + "substituting\n", + "substitution\n", + "substitutions\n", + "substructure\n", + "substructures\n", + "subsume\n", + "subsumed\n", + "subsumes\n", + "subsuming\n", + "subsurface\n", + "subsystem\n", + "subsystems\n", + "subteen\n", + "subteens\n", + "subtemperate\n", + "subtend\n", + "subtended\n", + "subtending\n", + "subtends\n", + "subterfuge\n", + "subterfuges\n", + "subterranean\n", + "subterraneous\n", + "subtext\n", + "subtexts\n", + "subtile\n", + "subtiler\n", + "subtilest\n", + "subtilties\n", + "subtilty\n", + "subtitle\n", + "subtitled\n", + "subtitles\n", + "subtitling\n", + "subtle\n", + "subtler\n", + "subtlest\n", + "subtleties\n", + "subtlety\n", + "subtly\n", + "subtone\n", + "subtones\n", + "subtonic\n", + "subtonics\n", + "subtopic\n", + "subtopics\n", + "subtotal\n", + "subtotaled\n", + "subtotaling\n", + "subtotalled\n", + "subtotalling\n", + "subtotals\n", + "subtract\n", + "subtracted\n", + "subtracting\n", + "subtraction\n", + "subtractions\n", + "subtracts\n", + "subtreasuries\n", + "subtreasury\n", + "subtribe\n", + "subtribes\n", + "subtunic\n", + "subtunics\n", + "subtype\n", + "subtypes\n", + "subulate\n", + "subunit\n", + "subunits\n", + "suburb\n", + "suburban\n", + "suburbans\n", + "suburbed\n", + "suburbia\n", + "suburbias\n", + "suburbs\n", + "subvene\n", + "subvened\n", + "subvenes\n", + "subvening\n", + "subvert\n", + "subverted\n", + "subverting\n", + "subverts\n", + "subvicar\n", + "subvicars\n", + "subviral\n", + "subvocal\n", + "subway\n", + "subways\n", + "subzone\n", + "subzones\n", + "succah\n", + "succahs\n", + "succeed\n", + "succeeded\n", + "succeeding\n", + "succeeds\n", + "success\n", + "successes\n", + "successful\n", + "successfully\n", + "succession\n", + "successions\n", + "successive\n", + "successively\n", + "successor\n", + "successors\n", + "succinct\n", + "succincter\n", + "succinctest\n", + "succinctly\n", + "succinctness\n", + "succinctnesses\n", + "succinic\n", + "succinyl\n", + "succinyls\n", + "succor\n", + "succored\n", + "succorer\n", + "succorers\n", + "succories\n", + "succoring\n", + "succors\n", + "succory\n", + "succotash\n", + "succotashes\n", + "succoth\n", + "succour\n", + "succoured\n", + "succouring\n", + "succours\n", + "succuba\n", + "succubae\n", + "succubi\n", + "succubus\n", + "succubuses\n", + "succulence\n", + "succulences\n", + "succulent\n", + "succulents\n", + "succumb\n", + "succumbed\n", + "succumbing\n", + "succumbs\n", + "succuss\n", + "succussed\n", + "succusses\n", + "succussing\n", + "such\n", + "suchlike\n", + "suchness\n", + "suchnesses\n", + "suck\n", + "sucked\n", + "sucker\n", + "suckered\n", + "suckering\n", + "suckers\n", + "suckfish\n", + "suckfishes\n", + "sucking\n", + "suckle\n", + "suckled\n", + "suckler\n", + "sucklers\n", + "suckles\n", + "suckless\n", + "suckling\n", + "sucklings\n", + "sucks\n", + "sucrase\n", + "sucrases\n", + "sucre\n", + "sucres\n", + "sucrose\n", + "sucroses\n", + "suction\n", + "suctions\n", + "sudaria\n", + "sudaries\n", + "sudarium\n", + "sudary\n", + "sudation\n", + "sudations\n", + "sudatories\n", + "sudatory\n", + "sudd\n", + "sudden\n", + "suddenly\n", + "suddenness\n", + "suddennesses\n", + "suddens\n", + "sudds\n", + "sudor\n", + "sudoral\n", + "sudors\n", + "suds\n", + "sudsed\n", + "sudser\n", + "sudsers\n", + "sudses\n", + "sudsier\n", + "sudsiest\n", + "sudsing\n", + "sudsless\n", + "sudsy\n", + "sue\n", + "sued\n", + "suede\n", + "sueded\n", + "suedes\n", + "sueding\n", + "suer\n", + "suers\n", + "sues\n", + "suet\n", + "suets\n", + "suety\n", + "suffari\n", + "suffaris\n", + "suffer\n", + "suffered\n", + "sufferer\n", + "sufferers\n", + "suffering\n", + "sufferings\n", + "suffers\n", + "suffice\n", + "sufficed\n", + "sufficer\n", + "sufficers\n", + "suffices\n", + "sufficiencies\n", + "sufficiency\n", + "sufficient\n", + "sufficiently\n", + "sufficing\n", + "suffix\n", + "suffixal\n", + "suffixation\n", + "suffixations\n", + "suffixed\n", + "suffixes\n", + "suffixing\n", + "sufflate\n", + "sufflated\n", + "sufflates\n", + "sufflating\n", + "suffocate\n", + "suffocated\n", + "suffocates\n", + "suffocating\n", + "suffocatingly\n", + "suffocation\n", + "suffocations\n", + "suffrage\n", + "suffrages\n", + "suffuse\n", + "suffused\n", + "suffuses\n", + "suffusing\n", + "sugar\n", + "sugarcane\n", + "sugarcanes\n", + "sugared\n", + "sugarier\n", + "sugariest\n", + "sugaring\n", + "sugars\n", + "sugary\n", + "suggest\n", + "suggested\n", + "suggestible\n", + "suggesting\n", + "suggestion\n", + "suggestions\n", + "suggestive\n", + "suggestively\n", + "suggestiveness\n", + "suggestivenesses\n", + "suggests\n", + "sugh\n", + "sughed\n", + "sughing\n", + "sughs\n", + "suicidal\n", + "suicide\n", + "suicided\n", + "suicides\n", + "suiciding\n", + "suing\n", + "suint\n", + "suints\n", + "suit\n", + "suitabilities\n", + "suitability\n", + "suitable\n", + "suitably\n", + "suitcase\n", + "suitcases\n", + "suite\n", + "suited\n", + "suites\n", + "suiting\n", + "suitings\n", + "suitlike\n", + "suitor\n", + "suitors\n", + "suits\n", + "sukiyaki\n", + "sukiyakis\n", + "sukkah\n", + "sukkahs\n", + "sukkoth\n", + "sulcate\n", + "sulcated\n", + "sulci\n", + "sulcus\n", + "suldan\n", + "suldans\n", + "sulfa\n", + "sulfas\n", + "sulfate\n", + "sulfated\n", + "sulfates\n", + "sulfating\n", + "sulfid\n", + "sulfide\n", + "sulfides\n", + "sulfids\n", + "sulfinyl\n", + "sulfinyls\n", + "sulfite\n", + "sulfites\n", + "sulfitic\n", + "sulfo\n", + "sulfonal\n", + "sulfonals\n", + "sulfone\n", + "sulfones\n", + "sulfonic\n", + "sulfonyl\n", + "sulfonyls\n", + "sulfur\n", + "sulfured\n", + "sulfureous\n", + "sulfuret\n", + "sulfureted\n", + "sulfureting\n", + "sulfurets\n", + "sulfuretted\n", + "sulfuretting\n", + "sulfuric\n", + "sulfuring\n", + "sulfurous\n", + "sulfurs\n", + "sulfury\n", + "sulfuryl\n", + "sulfuryls\n", + "sulk\n", + "sulked\n", + "sulker\n", + "sulkers\n", + "sulkier\n", + "sulkies\n", + "sulkiest\n", + "sulkily\n", + "sulkiness\n", + "sulkinesses\n", + "sulking\n", + "sulks\n", + "sulky\n", + "sullage\n", + "sullages\n", + "sullen\n", + "sullener\n", + "sullenest\n", + "sullenly\n", + "sullenness\n", + "sullennesses\n", + "sullied\n", + "sullies\n", + "sully\n", + "sullying\n", + "sulpha\n", + "sulphas\n", + "sulphate\n", + "sulphated\n", + "sulphates\n", + "sulphating\n", + "sulphid\n", + "sulphide\n", + "sulphides\n", + "sulphids\n", + "sulphite\n", + "sulphites\n", + "sulphone\n", + "sulphones\n", + "sulphur\n", + "sulphured\n", + "sulphuring\n", + "sulphurs\n", + "sulphury\n", + "sultan\n", + "sultana\n", + "sultanas\n", + "sultanate\n", + "sultanated\n", + "sultanates\n", + "sultanating\n", + "sultanic\n", + "sultans\n", + "sultrier\n", + "sultriest\n", + "sultrily\n", + "sultry\n", + "sum\n", + "sumac\n", + "sumach\n", + "sumachs\n", + "sumacs\n", + "sumless\n", + "summa\n", + "summable\n", + "summae\n", + "summand\n", + "summands\n", + "summaries\n", + "summarily\n", + "summarization\n", + "summarizations\n", + "summarize\n", + "summarized\n", + "summarizes\n", + "summarizing\n", + "summary\n", + "summas\n", + "summate\n", + "summated\n", + "summates\n", + "summating\n", + "summation\n", + "summations\n", + "summed\n", + "summer\n", + "summered\n", + "summerier\n", + "summeriest\n", + "summering\n", + "summerly\n", + "summers\n", + "summery\n", + "summing\n", + "summit\n", + "summital\n", + "summitries\n", + "summitry\n", + "summits\n", + "summon\n", + "summoned\n", + "summoner\n", + "summoners\n", + "summoning\n", + "summons\n", + "summonsed\n", + "summonses\n", + "summonsing\n", + "sumo\n", + "sumos\n", + "sump\n", + "sumps\n", + "sumpter\n", + "sumpters\n", + "sumptuous\n", + "sumpweed\n", + "sumpweeds\n", + "sums\n", + "sun\n", + "sunback\n", + "sunbaked\n", + "sunbath\n", + "sunbathe\n", + "sunbathed\n", + "sunbathes\n", + "sunbathing\n", + "sunbaths\n", + "sunbeam\n", + "sunbeams\n", + "sunbird\n", + "sunbirds\n", + "sunbow\n", + "sunbows\n", + "sunburn\n", + "sunburned\n", + "sunburning\n", + "sunburns\n", + "sunburnt\n", + "sunburst\n", + "sunbursts\n", + "sundae\n", + "sundaes\n", + "sunder\n", + "sundered\n", + "sunderer\n", + "sunderers\n", + "sundering\n", + "sunders\n", + "sundew\n", + "sundews\n", + "sundial\n", + "sundials\n", + "sundog\n", + "sundogs\n", + "sundown\n", + "sundowns\n", + "sundries\n", + "sundrops\n", + "sundry\n", + "sunfast\n", + "sunfish\n", + "sunfishes\n", + "sunflower\n", + "sunflowers\n", + "sung\n", + "sunglass\n", + "sunglasses\n", + "sunglow\n", + "sunglows\n", + "sunk\n", + "sunken\n", + "sunket\n", + "sunkets\n", + "sunlamp\n", + "sunlamps\n", + "sunland\n", + "sunlands\n", + "sunless\n", + "sunlight\n", + "sunlights\n", + "sunlike\n", + "sunlit\n", + "sunn\n", + "sunna\n", + "sunnas\n", + "sunned\n", + "sunnier\n", + "sunniest\n", + "sunnily\n", + "sunning\n", + "sunns\n", + "sunny\n", + "sunrise\n", + "sunrises\n", + "sunroof\n", + "sunroofs\n", + "sunroom\n", + "sunrooms\n", + "suns\n", + "sunscald\n", + "sunscalds\n", + "sunset\n", + "sunsets\n", + "sunshade\n", + "sunshades\n", + "sunshine\n", + "sunshines\n", + "sunshiny\n", + "sunspot\n", + "sunspots\n", + "sunstone\n", + "sunstones\n", + "sunstroke\n", + "sunsuit\n", + "sunsuits\n", + "suntan\n", + "suntans\n", + "sunup\n", + "sunups\n", + "sunward\n", + "sunwards\n", + "sunwise\n", + "sup\n", + "supe\n", + "super\n", + "superabundance\n", + "superabundances\n", + "superabundant\n", + "superadd\n", + "superadded\n", + "superadding\n", + "superadds\n", + "superambitious\n", + "superathlete\n", + "superathletes\n", + "superb\n", + "superber\n", + "superbest\n", + "superbly\n", + "superbomb\n", + "superbombs\n", + "supercilious\n", + "superclean\n", + "supercold\n", + "supercolossal\n", + "superconvenient\n", + "superdense\n", + "supered\n", + "supereffective\n", + "superefficiencies\n", + "superefficiency\n", + "superefficient\n", + "superego\n", + "superegos\n", + "superenthusiasm\n", + "superenthusiasms\n", + "superenthusiastic\n", + "superfast\n", + "superficial\n", + "superficialities\n", + "superficiality\n", + "superficially\n", + "superfix\n", + "superfixes\n", + "superfluity\n", + "superfluous\n", + "supergood\n", + "supergovernment\n", + "supergovernments\n", + "supergroup\n", + "supergroups\n", + "superhard\n", + "superhero\n", + "superheroine\n", + "superheroines\n", + "superheros\n", + "superhuman\n", + "superhumans\n", + "superimpose\n", + "superimposed\n", + "superimposes\n", + "superimposing\n", + "supering\n", + "superintellectual\n", + "superintellectuals\n", + "superintelligence\n", + "superintelligences\n", + "superintelligent\n", + "superintend\n", + "superintended\n", + "superintendence\n", + "superintendences\n", + "superintendencies\n", + "superintendency\n", + "superintendent\n", + "superintendents\n", + "superintending\n", + "superintends\n", + "superior\n", + "superiorities\n", + "superiority\n", + "superiors\n", + "superjet\n", + "superjets\n", + "superlain\n", + "superlative\n", + "superlatively\n", + "superlay\n", + "superlie\n", + "superlies\n", + "superlying\n", + "superman\n", + "supermarket\n", + "supermarkets\n", + "supermen\n", + "supermodern\n", + "supernal\n", + "supernatural\n", + "supernaturally\n", + "superpatriot\n", + "superpatriotic\n", + "superpatriotism\n", + "superpatriotisms\n", + "superpatriots\n", + "superplane\n", + "superplanes\n", + "superpolite\n", + "superport\n", + "superports\n", + "superpowerful\n", + "superrefined\n", + "superrich\n", + "supers\n", + "supersalesman\n", + "supersalesmen\n", + "superscout\n", + "superscouts\n", + "superscript\n", + "superscripts\n", + "supersecrecies\n", + "supersecrecy\n", + "supersecret\n", + "supersede\n", + "superseded\n", + "supersedes\n", + "superseding\n", + "supersensitive\n", + "supersex\n", + "supersexes\n", + "supership\n", + "superships\n", + "supersize\n", + "supersized\n", + "superslick\n", + "supersmooth\n", + "supersoft\n", + "supersonic\n", + "superspecial\n", + "superspecialist\n", + "superspecialists\n", + "superstar\n", + "superstars\n", + "superstate\n", + "superstates\n", + "superstition\n", + "superstitions\n", + "superstitious\n", + "superstrength\n", + "superstrengths\n", + "superstrong\n", + "superstructure\n", + "superstructures\n", + "supersuccessful\n", + "supersystem\n", + "supersystems\n", + "supertanker\n", + "supertankers\n", + "supertax\n", + "supertaxes\n", + "superthick\n", + "superthin\n", + "supertight\n", + "supertough\n", + "supervene\n", + "supervened\n", + "supervenes\n", + "supervenient\n", + "supervening\n", + "supervise\n", + "supervised\n", + "supervises\n", + "supervising\n", + "supervision\n", + "supervisions\n", + "supervisor\n", + "supervisors\n", + "supervisory\n", + "superweak\n", + "superweapon\n", + "superweapons\n", + "superwoman\n", + "superwomen\n", + "supes\n", + "supinate\n", + "supinated\n", + "supinates\n", + "supinating\n", + "supine\n", + "supinely\n", + "supines\n", + "supped\n", + "supper\n", + "suppers\n", + "supping\n", + "supplant\n", + "supplanted\n", + "supplanting\n", + "supplants\n", + "supple\n", + "suppled\n", + "supplely\n", + "supplement\n", + "supplemental\n", + "supplementary\n", + "supplements\n", + "suppler\n", + "supples\n", + "supplest\n", + "suppliant\n", + "suppliants\n", + "supplicant\n", + "supplicants\n", + "supplicate\n", + "supplicated\n", + "supplicates\n", + "supplicating\n", + "supplication\n", + "supplications\n", + "supplied\n", + "supplier\n", + "suppliers\n", + "supplies\n", + "suppling\n", + "supply\n", + "supplying\n", + "support\n", + "supportable\n", + "supported\n", + "supporter\n", + "supporters\n", + "supporting\n", + "supportive\n", + "supports\n", + "supposal\n", + "supposals\n", + "suppose\n", + "supposed\n", + "supposer\n", + "supposers\n", + "supposes\n", + "supposing\n", + "supposition\n", + "suppositions\n", + "suppositories\n", + "suppository\n", + "suppress\n", + "suppressed\n", + "suppresses\n", + "suppressing\n", + "suppression\n", + "suppressions\n", + "suppurate\n", + "suppurated\n", + "suppurates\n", + "suppurating\n", + "suppuration\n", + "suppurations\n", + "supra\n", + "supraclavicular\n", + "supremacies\n", + "supremacy\n", + "supreme\n", + "supremely\n", + "supremer\n", + "supremest\n", + "sups\n", + "sura\n", + "surah\n", + "surahs\n", + "sural\n", + "suras\n", + "surbase\n", + "surbased\n", + "surbases\n", + "surcease\n", + "surceased\n", + "surceases\n", + "surceasing\n", + "surcharge\n", + "surcharges\n", + "surcoat\n", + "surcoats\n", + "surd\n", + "surds\n", + "sure\n", + "surefire\n", + "surely\n", + "sureness\n", + "surenesses\n", + "surer\n", + "surest\n", + "sureties\n", + "surety\n", + "surf\n", + "surfable\n", + "surface\n", + "surfaced\n", + "surfacer\n", + "surfacers\n", + "surfaces\n", + "surfacing\n", + "surfbird\n", + "surfbirds\n", + "surfboat\n", + "surfboats\n", + "surfed\n", + "surfeit\n", + "surfeited\n", + "surfeiting\n", + "surfeits\n", + "surfer\n", + "surfers\n", + "surffish\n", + "surffishes\n", + "surfier\n", + "surfiest\n", + "surfing\n", + "surfings\n", + "surflike\n", + "surfs\n", + "surfy\n", + "surge\n", + "surged\n", + "surgeon\n", + "surgeons\n", + "surger\n", + "surgeries\n", + "surgers\n", + "surgery\n", + "surges\n", + "surgical\n", + "surgically\n", + "surging\n", + "surgy\n", + "suricate\n", + "suricates\n", + "surlier\n", + "surliest\n", + "surlily\n", + "surly\n", + "surmise\n", + "surmised\n", + "surmiser\n", + "surmisers\n", + "surmises\n", + "surmising\n", + "surmount\n", + "surmounted\n", + "surmounting\n", + "surmounts\n", + "surname\n", + "surnamed\n", + "surnamer\n", + "surnamers\n", + "surnames\n", + "surnaming\n", + "surpass\n", + "surpassed\n", + "surpasses\n", + "surpassing\n", + "surpassingly\n", + "surplice\n", + "surplices\n", + "surplus\n", + "surpluses\n", + "surprint\n", + "surprinted\n", + "surprinting\n", + "surprints\n", + "surprise\n", + "surprised\n", + "surprises\n", + "surprising\n", + "surprisingly\n", + "surprize\n", + "surprized\n", + "surprizes\n", + "surprizing\n", + "surra\n", + "surras\n", + "surreal\n", + "surrealism\n", + "surrender\n", + "surrendered\n", + "surrendering\n", + "surrenders\n", + "surreptitious\n", + "surreptitiously\n", + "surrey\n", + "surreys\n", + "surround\n", + "surrounded\n", + "surrounding\n", + "surroundings\n", + "surrounds\n", + "surroyal\n", + "surroyals\n", + "surtax\n", + "surtaxed\n", + "surtaxes\n", + "surtaxing\n", + "surtout\n", + "surtouts\n", + "surveil\n", + "surveiled\n", + "surveiling\n", + "surveillance\n", + "surveillances\n", + "surveils\n", + "survey\n", + "surveyed\n", + "surveying\n", + "surveyor\n", + "surveyors\n", + "surveys\n", + "survival\n", + "survivals\n", + "survive\n", + "survived\n", + "surviver\n", + "survivers\n", + "survives\n", + "surviving\n", + "survivor\n", + "survivors\n", + "survivorship\n", + "survivorships\n", + "susceptibilities\n", + "susceptibility\n", + "susceptible\n", + "suslik\n", + "susliks\n", + "suspect\n", + "suspected\n", + "suspecting\n", + "suspects\n", + "suspend\n", + "suspended\n", + "suspender\n", + "suspenders\n", + "suspending\n", + "suspends\n", + "suspense\n", + "suspenseful\n", + "suspenses\n", + "suspension\n", + "suspensions\n", + "suspicion\n", + "suspicions\n", + "suspicious\n", + "suspiciously\n", + "suspire\n", + "suspired\n", + "suspires\n", + "suspiring\n", + "sustain\n", + "sustained\n", + "sustaining\n", + "sustains\n", + "sustenance\n", + "sustenances\n", + "susurrus\n", + "susurruses\n", + "sutler\n", + "sutlers\n", + "sutra\n", + "sutras\n", + "sutta\n", + "suttas\n", + "suttee\n", + "suttees\n", + "sutural\n", + "suture\n", + "sutured\n", + "sutures\n", + "suturing\n", + "suzerain\n", + "suzerains\n", + "svaraj\n", + "svarajes\n", + "svedberg\n", + "svedbergs\n", + "svelte\n", + "sveltely\n", + "svelter\n", + "sveltest\n", + "swab\n", + "swabbed\n", + "swabber\n", + "swabbers\n", + "swabbie\n", + "swabbies\n", + "swabbing\n", + "swabby\n", + "swabs\n", + "swaddle\n", + "swaddled\n", + "swaddles\n", + "swaddling\n", + "swag\n", + "swage\n", + "swaged\n", + "swager\n", + "swagers\n", + "swages\n", + "swagged\n", + "swagger\n", + "swaggered\n", + "swaggering\n", + "swaggers\n", + "swagging\n", + "swaging\n", + "swagman\n", + "swagmen\n", + "swags\n", + "swail\n", + "swails\n", + "swain\n", + "swainish\n", + "swains\n", + "swale\n", + "swales\n", + "swallow\n", + "swallowed\n", + "swallowing\n", + "swallows\n", + "swam\n", + "swami\n", + "swamies\n", + "swamis\n", + "swamp\n", + "swamped\n", + "swamper\n", + "swampers\n", + "swampier\n", + "swampiest\n", + "swamping\n", + "swampish\n", + "swamps\n", + "swampy\n", + "swamy\n", + "swan\n", + "swang\n", + "swanherd\n", + "swanherds\n", + "swank\n", + "swanked\n", + "swanker\n", + "swankest\n", + "swankier\n", + "swankiest\n", + "swankily\n", + "swanking\n", + "swanks\n", + "swanky\n", + "swanlike\n", + "swanned\n", + "swanneries\n", + "swannery\n", + "swanning\n", + "swanpan\n", + "swanpans\n", + "swans\n", + "swanskin\n", + "swanskins\n", + "swap\n", + "swapped\n", + "swapper\n", + "swappers\n", + "swapping\n", + "swaps\n", + "swaraj\n", + "swarajes\n", + "sward\n", + "swarded\n", + "swarding\n", + "swards\n", + "sware\n", + "swarf\n", + "swarfs\n", + "swarm\n", + "swarmed\n", + "swarmer\n", + "swarmers\n", + "swarming\n", + "swarms\n", + "swart\n", + "swarth\n", + "swarthier\n", + "swarthiest\n", + "swarths\n", + "swarthy\n", + "swarty\n", + "swash\n", + "swashbuckler\n", + "swashbucklers\n", + "swashbuckling\n", + "swashbucklings\n", + "swashed\n", + "swasher\n", + "swashers\n", + "swashes\n", + "swashing\n", + "swastica\n", + "swasticas\n", + "swastika\n", + "swastikas\n", + "swat\n", + "swatch\n", + "swatches\n", + "swath\n", + "swathe\n", + "swathed\n", + "swather\n", + "swathers\n", + "swathes\n", + "swathing\n", + "swaths\n", + "swats\n", + "swatted\n", + "swatter\n", + "swatters\n", + "swatting\n", + "sway\n", + "swayable\n", + "swayback\n", + "swaybacks\n", + "swayed\n", + "swayer\n", + "swayers\n", + "swayful\n", + "swaying\n", + "sways\n", + "swear\n", + "swearer\n", + "swearers\n", + "swearing\n", + "swears\n", + "sweat\n", + "sweatbox\n", + "sweatboxes\n", + "sweated\n", + "sweater\n", + "sweaters\n", + "sweatier\n", + "sweatiest\n", + "sweatily\n", + "sweating\n", + "sweats\n", + "sweaty\n", + "swede\n", + "swedes\n", + "sweenies\n", + "sweeny\n", + "sweep\n", + "sweeper\n", + "sweepers\n", + "sweepier\n", + "sweepiest\n", + "sweeping\n", + "sweepings\n", + "sweeps\n", + "sweepstakes\n", + "sweepy\n", + "sweer\n", + "sweet\n", + "sweeten\n", + "sweetened\n", + "sweetener\n", + "sweeteners\n", + "sweetening\n", + "sweetens\n", + "sweeter\n", + "sweetest\n", + "sweetheart\n", + "sweethearts\n", + "sweetie\n", + "sweeties\n", + "sweeting\n", + "sweetings\n", + "sweetish\n", + "sweetly\n", + "sweetness\n", + "sweetnesses\n", + "sweets\n", + "sweetsop\n", + "sweetsops\n", + "swell\n", + "swelled\n", + "sweller\n", + "swellest\n", + "swelling\n", + "swellings\n", + "swells\n", + "swelter\n", + "sweltered\n", + "sweltering\n", + "swelters\n", + "sweltrier\n", + "sweltriest\n", + "sweltry\n", + "swept\n", + "swerve\n", + "swerved\n", + "swerver\n", + "swervers\n", + "swerves\n", + "swerving\n", + "sweven\n", + "swevens\n", + "swift\n", + "swifter\n", + "swifters\n", + "swiftest\n", + "swiftly\n", + "swiftness\n", + "swiftnesses\n", + "swifts\n", + "swig\n", + "swigged\n", + "swigger\n", + "swiggers\n", + "swigging\n", + "swigs\n", + "swill\n", + "swilled\n", + "swiller\n", + "swillers\n", + "swilling\n", + "swills\n", + "swim\n", + "swimmer\n", + "swimmers\n", + "swimmier\n", + "swimmiest\n", + "swimmily\n", + "swimming\n", + "swimmings\n", + "swimmy\n", + "swims\n", + "swimsuit\n", + "swimsuits\n", + "swindle\n", + "swindled\n", + "swindler\n", + "swindlers\n", + "swindles\n", + "swindling\n", + "swine\n", + "swinepox\n", + "swinepoxes\n", + "swing\n", + "swinge\n", + "swinged\n", + "swingeing\n", + "swinger\n", + "swingers\n", + "swinges\n", + "swingier\n", + "swingiest\n", + "swinging\n", + "swingle\n", + "swingled\n", + "swingles\n", + "swingling\n", + "swings\n", + "swingy\n", + "swinish\n", + "swink\n", + "swinked\n", + "swinking\n", + "swinks\n", + "swinney\n", + "swinneys\n", + "swipe\n", + "swiped\n", + "swipes\n", + "swiping\n", + "swiple\n", + "swiples\n", + "swipple\n", + "swipples\n", + "swirl\n", + "swirled\n", + "swirlier\n", + "swirliest\n", + "swirling\n", + "swirls\n", + "swirly\n", + "swish\n", + "swished\n", + "swisher\n", + "swishers\n", + "swishes\n", + "swishier\n", + "swishiest\n", + "swishing\n", + "swishy\n", + "swiss\n", + "swisses\n", + "switch\n", + "switchboard\n", + "switchboards\n", + "switched\n", + "switcher\n", + "switchers\n", + "switches\n", + "switching\n", + "swith\n", + "swithe\n", + "swither\n", + "swithered\n", + "swithering\n", + "swithers\n", + "swithly\n", + "swive\n", + "swived\n", + "swivel\n", + "swiveled\n", + "swiveling\n", + "swivelled\n", + "swivelling\n", + "swivels\n", + "swives\n", + "swivet\n", + "swivets\n", + "swiving\n", + "swizzle\n", + "swizzled\n", + "swizzler\n", + "swizzlers\n", + "swizzles\n", + "swizzling\n", + "swob\n", + "swobbed\n", + "swobber\n", + "swobbers\n", + "swobbing\n", + "swobs\n", + "swollen\n", + "swoon\n", + "swooned\n", + "swooner\n", + "swooners\n", + "swooning\n", + "swoons\n", + "swoop\n", + "swooped\n", + "swooper\n", + "swoopers\n", + "swooping\n", + "swoops\n", + "swoosh\n", + "swooshed\n", + "swooshes\n", + "swooshing\n", + "swop\n", + "swopped\n", + "swopping\n", + "swops\n", + "sword\n", + "swordfish\n", + "swordfishes\n", + "swordman\n", + "swordmen\n", + "swords\n", + "swore\n", + "sworn\n", + "swot\n", + "swots\n", + "swotted\n", + "swotter\n", + "swotters\n", + "swotting\n", + "swoun\n", + "swound\n", + "swounded\n", + "swounding\n", + "swounds\n", + "swouned\n", + "swouning\n", + "swouns\n", + "swum\n", + "swung\n", + "sybarite\n", + "sybarites\n", + "sybo\n", + "syboes\n", + "sycamine\n", + "sycamines\n", + "sycamore\n", + "sycamores\n", + "syce\n", + "sycee\n", + "sycees\n", + "syces\n", + "sycomore\n", + "sycomores\n", + "syconia\n", + "syconium\n", + "sycophant\n", + "sycophantic\n", + "sycophants\n", + "sycoses\n", + "sycosis\n", + "syenite\n", + "syenites\n", + "syenitic\n", + "syke\n", + "sykes\n", + "syllabi\n", + "syllabic\n", + "syllabics\n", + "syllable\n", + "syllabled\n", + "syllables\n", + "syllabling\n", + "syllabub\n", + "syllabubs\n", + "syllabus\n", + "syllabuses\n", + "sylph\n", + "sylphic\n", + "sylphid\n", + "sylphids\n", + "sylphish\n", + "sylphs\n", + "sylphy\n", + "sylva\n", + "sylvae\n", + "sylvan\n", + "sylvans\n", + "sylvas\n", + "sylvatic\n", + "sylvin\n", + "sylvine\n", + "sylvines\n", + "sylvins\n", + "sylvite\n", + "sylvites\n", + "symbion\n", + "symbions\n", + "symbiont\n", + "symbionts\n", + "symbiot\n", + "symbiote\n", + "symbiotes\n", + "symbiots\n", + "symbol\n", + "symboled\n", + "symbolic\n", + "symbolical\n", + "symbolically\n", + "symboling\n", + "symbolism\n", + "symbolisms\n", + "symbolization\n", + "symbolizations\n", + "symbolize\n", + "symbolized\n", + "symbolizes\n", + "symbolizing\n", + "symbolled\n", + "symbolling\n", + "symbols\n", + "symmetric\n", + "symmetrical\n", + "symmetrically\n", + "symmetries\n", + "symmetry\n", + "sympathetic\n", + "sympathetically\n", + "sympathies\n", + "sympathize\n", + "sympathized\n", + "sympathizes\n", + "sympathizing\n", + "sympathy\n", + "sympatries\n", + "sympatry\n", + "symphonic\n", + "symphonies\n", + "symphony\n", + "sympodia\n", + "symposia\n", + "symposium\n", + "symptom\n", + "symptomatically\n", + "symptomatology\n", + "symptoms\n", + "syn\n", + "synagog\n", + "synagogs\n", + "synagogue\n", + "synagogues\n", + "synapse\n", + "synapsed\n", + "synapses\n", + "synapsing\n", + "synapsis\n", + "synaptic\n", + "sync\n", + "syncarp\n", + "syncarpies\n", + "syncarps\n", + "syncarpy\n", + "synced\n", + "synch\n", + "synched\n", + "synching\n", + "synchro\n", + "synchronization\n", + "synchronizations\n", + "synchronize\n", + "synchronized\n", + "synchronizes\n", + "synchronizing\n", + "synchros\n", + "synchs\n", + "syncing\n", + "syncline\n", + "synclines\n", + "syncom\n", + "syncoms\n", + "syncopal\n", + "syncopate\n", + "syncopated\n", + "syncopates\n", + "syncopating\n", + "syncopation\n", + "syncopations\n", + "syncope\n", + "syncopes\n", + "syncopic\n", + "syncs\n", + "syncytia\n", + "syndeses\n", + "syndesis\n", + "syndesises\n", + "syndet\n", + "syndetic\n", + "syndets\n", + "syndic\n", + "syndical\n", + "syndicate\n", + "syndicated\n", + "syndicates\n", + "syndicating\n", + "syndication\n", + "syndics\n", + "syndrome\n", + "syndromes\n", + "syne\n", + "synectic\n", + "synergia\n", + "synergias\n", + "synergic\n", + "synergid\n", + "synergids\n", + "synergies\n", + "synergy\n", + "synesis\n", + "synesises\n", + "syngamic\n", + "syngamies\n", + "syngamy\n", + "synod\n", + "synodal\n", + "synodic\n", + "synods\n", + "synonym\n", + "synonyme\n", + "synonymes\n", + "synonymies\n", + "synonymous\n", + "synonyms\n", + "synonymy\n", + "synopses\n", + "synopsis\n", + "synoptic\n", + "synovia\n", + "synovial\n", + "synovias\n", + "syntactic\n", + "syntactical\n", + "syntax\n", + "syntaxes\n", + "syntheses\n", + "synthesis\n", + "synthesize\n", + "synthesized\n", + "synthesizer\n", + "synthesizers\n", + "synthesizes\n", + "synthesizing\n", + "synthetic\n", + "synthetically\n", + "synthetics\n", + "syntonic\n", + "syntonies\n", + "syntony\n", + "synura\n", + "synurae\n", + "sypher\n", + "syphered\n", + "syphering\n", + "syphers\n", + "syphilis\n", + "syphilises\n", + "syphilitic\n", + "syphon\n", + "syphoned\n", + "syphoning\n", + "syphons\n", + "syren\n", + "syrens\n", + "syringa\n", + "syringas\n", + "syringe\n", + "syringed\n", + "syringes\n", + "syringing\n", + "syrinx\n", + "syrinxes\n", + "syrphian\n", + "syrphians\n", + "syrphid\n", + "syrphids\n", + "syrup\n", + "syrups\n", + "syrupy\n", + "system\n", + "systematic\n", + "systematical\n", + "systematically\n", + "systematize\n", + "systematized\n", + "systematizes\n", + "systematizing\n", + "systemic\n", + "systemics\n", + "systems\n", + "systole\n", + "systoles\n", + "systolic\n", + "syzygal\n", + "syzygial\n", + "syzygies\n", + "syzygy\n", + "ta\n", + "tab\n", + "tabanid\n", + "tabanids\n", + "tabard\n", + "tabarded\n", + "tabards\n", + "tabaret\n", + "tabarets\n", + "tabbed\n", + "tabbied\n", + "tabbies\n", + "tabbing\n", + "tabbis\n", + "tabbises\n", + "tabby\n", + "tabbying\n", + "taber\n", + "tabered\n", + "tabering\n", + "tabernacle\n", + "tabernacles\n", + "tabers\n", + "tabes\n", + "tabetic\n", + "tabetics\n", + "tabid\n", + "tabla\n", + "tablas\n", + "table\n", + "tableau\n", + "tableaus\n", + "tableaux\n", + "tablecloth\n", + "tablecloths\n", + "tabled\n", + "tableful\n", + "tablefuls\n", + "tables\n", + "tablesful\n", + "tablespoon\n", + "tablespoonful\n", + "tablespoonfuls\n", + "tablespoons\n", + "tablet\n", + "tableted\n", + "tableting\n", + "tabletop\n", + "tabletops\n", + "tablets\n", + "tabletted\n", + "tabletting\n", + "tableware\n", + "tablewares\n", + "tabling\n", + "tabloid\n", + "tabloids\n", + "taboo\n", + "tabooed\n", + "tabooing\n", + "taboos\n", + "tabor\n", + "tabored\n", + "taborer\n", + "taborers\n", + "taboret\n", + "taborets\n", + "taborin\n", + "taborine\n", + "taborines\n", + "taboring\n", + "taborins\n", + "tabors\n", + "tabour\n", + "taboured\n", + "tabourer\n", + "tabourers\n", + "tabouret\n", + "tabourets\n", + "tabouring\n", + "tabours\n", + "tabs\n", + "tabu\n", + "tabued\n", + "tabuing\n", + "tabular\n", + "tabulate\n", + "tabulated\n", + "tabulates\n", + "tabulating\n", + "tabulation\n", + "tabulations\n", + "tabulator\n", + "tabulators\n", + "tabus\n", + "tace\n", + "taces\n", + "tacet\n", + "tach\n", + "tache\n", + "taches\n", + "tachinid\n", + "tachinids\n", + "tachism\n", + "tachisms\n", + "tachist\n", + "tachiste\n", + "tachistes\n", + "tachists\n", + "tachs\n", + "tacit\n", + "tacitly\n", + "tacitness\n", + "tacitnesses\n", + "taciturn\n", + "taciturnities\n", + "taciturnity\n", + "tack\n", + "tacked\n", + "tacker\n", + "tackers\n", + "tacket\n", + "tackets\n", + "tackey\n", + "tackier\n", + "tackiest\n", + "tackified\n", + "tackifies\n", + "tackify\n", + "tackifying\n", + "tackily\n", + "tacking\n", + "tackle\n", + "tackled\n", + "tackler\n", + "tacklers\n", + "tackles\n", + "tackless\n", + "tackling\n", + "tacklings\n", + "tacks\n", + "tacky\n", + "tacnode\n", + "tacnodes\n", + "taco\n", + "taconite\n", + "taconites\n", + "tacos\n", + "tact\n", + "tactful\n", + "tactfully\n", + "tactic\n", + "tactical\n", + "tactician\n", + "tacticians\n", + "tactics\n", + "tactile\n", + "taction\n", + "tactions\n", + "tactless\n", + "tactlessly\n", + "tacts\n", + "tactual\n", + "tad\n", + "tadpole\n", + "tadpoles\n", + "tads\n", + "tae\n", + "tael\n", + "taels\n", + "taenia\n", + "taeniae\n", + "taenias\n", + "taffarel\n", + "taffarels\n", + "tafferel\n", + "tafferels\n", + "taffeta\n", + "taffetas\n", + "taffia\n", + "taffias\n", + "taffies\n", + "taffrail\n", + "taffrails\n", + "taffy\n", + "tafia\n", + "tafias\n", + "tag\n", + "tagalong\n", + "tagalongs\n", + "tagboard\n", + "tagboards\n", + "tagged\n", + "tagger\n", + "taggers\n", + "tagging\n", + "taglike\n", + "tagmeme\n", + "tagmemes\n", + "tagrag\n", + "tagrags\n", + "tags\n", + "tahr\n", + "tahrs\n", + "tahsil\n", + "tahsils\n", + "taiga\n", + "taigas\n", + "taiglach\n", + "tail\n", + "tailback\n", + "tailbacks\n", + "tailbone\n", + "tailbones\n", + "tailcoat\n", + "tailcoats\n", + "tailed\n", + "tailer\n", + "tailers\n", + "tailgate\n", + "tailgated\n", + "tailgates\n", + "tailgating\n", + "tailing\n", + "tailings\n", + "taille\n", + "tailles\n", + "tailless\n", + "taillight\n", + "taillights\n", + "taillike\n", + "tailor\n", + "tailored\n", + "tailoring\n", + "tailors\n", + "tailpipe\n", + "tailpipes\n", + "tailrace\n", + "tailraces\n", + "tails\n", + "tailskid\n", + "tailskids\n", + "tailspin\n", + "tailspins\n", + "tailwind\n", + "tailwinds\n", + "tain\n", + "tains\n", + "taint\n", + "tainted\n", + "tainting\n", + "taints\n", + "taipan\n", + "taipans\n", + "taj\n", + "tajes\n", + "takable\n", + "takahe\n", + "takahes\n", + "take\n", + "takeable\n", + "takedown\n", + "takedowns\n", + "taken\n", + "takeoff\n", + "takeoffs\n", + "takeout\n", + "takeouts\n", + "takeover\n", + "takeovers\n", + "taker\n", + "takers\n", + "takes\n", + "takin\n", + "taking\n", + "takingly\n", + "takings\n", + "takins\n", + "tala\n", + "talapoin\n", + "talapoins\n", + "talar\n", + "talaria\n", + "talars\n", + "talas\n", + "talc\n", + "talced\n", + "talcing\n", + "talcked\n", + "talcking\n", + "talcky\n", + "talcose\n", + "talcous\n", + "talcs\n", + "talcum\n", + "talcums\n", + "tale\n", + "talent\n", + "talented\n", + "talents\n", + "taler\n", + "talers\n", + "tales\n", + "talesman\n", + "talesmen\n", + "taleysim\n", + "tali\n", + "talion\n", + "talions\n", + "taliped\n", + "talipeds\n", + "talipes\n", + "talipot\n", + "talipots\n", + "talisman\n", + "talismans\n", + "talk\n", + "talkable\n", + "talkative\n", + "talked\n", + "talker\n", + "talkers\n", + "talkie\n", + "talkier\n", + "talkies\n", + "talkiest\n", + "talking\n", + "talkings\n", + "talks\n", + "talky\n", + "tall\n", + "tallage\n", + "tallaged\n", + "tallages\n", + "tallaging\n", + "tallaism\n", + "tallboy\n", + "tallboys\n", + "taller\n", + "tallest\n", + "tallied\n", + "tallier\n", + "tallies\n", + "tallish\n", + "tallith\n", + "tallithes\n", + "tallithim\n", + "tallitoth\n", + "tallness\n", + "tallnesses\n", + "tallol\n", + "tallols\n", + "tallow\n", + "tallowed\n", + "tallowing\n", + "tallows\n", + "tallowy\n", + "tally\n", + "tallyho\n", + "tallyhoed\n", + "tallyhoing\n", + "tallyhos\n", + "tallying\n", + "tallyman\n", + "tallymen\n", + "talmudic\n", + "talon\n", + "taloned\n", + "talons\n", + "talooka\n", + "talookas\n", + "taluk\n", + "taluka\n", + "talukas\n", + "taluks\n", + "talus\n", + "taluses\n", + "tam\n", + "tamable\n", + "tamal\n", + "tamale\n", + "tamales\n", + "tamals\n", + "tamandu\n", + "tamandua\n", + "tamanduas\n", + "tamandus\n", + "tamarack\n", + "tamaracks\n", + "tamarao\n", + "tamaraos\n", + "tamarau\n", + "tamaraus\n", + "tamarin\n", + "tamarind\n", + "tamarinds\n", + "tamarins\n", + "tamarisk\n", + "tamarisks\n", + "tamasha\n", + "tamashas\n", + "tambac\n", + "tambacs\n", + "tambala\n", + "tambalas\n", + "tambour\n", + "tamboura\n", + "tambouras\n", + "tamboured\n", + "tambourine\n", + "tambourines\n", + "tambouring\n", + "tambours\n", + "tambur\n", + "tambura\n", + "tamburas\n", + "tamburs\n", + "tame\n", + "tameable\n", + "tamed\n", + "tamein\n", + "tameins\n", + "tameless\n", + "tamely\n", + "tameness\n", + "tamenesses\n", + "tamer\n", + "tamers\n", + "tames\n", + "tamest\n", + "taming\n", + "tamis\n", + "tamises\n", + "tammie\n", + "tammies\n", + "tammy\n", + "tamp\n", + "tampala\n", + "tampalas\n", + "tampan\n", + "tampans\n", + "tamped\n", + "tamper\n", + "tampered\n", + "tamperer\n", + "tamperers\n", + "tampering\n", + "tampers\n", + "tamping\n", + "tampion\n", + "tampions\n", + "tampon\n", + "tamponed\n", + "tamponing\n", + "tampons\n", + "tamps\n", + "tams\n", + "tan\n", + "tanager\n", + "tanagers\n", + "tanbark\n", + "tanbarks\n", + "tandem\n", + "tandems\n", + "tang\n", + "tanged\n", + "tangelo\n", + "tangelos\n", + "tangence\n", + "tangences\n", + "tangencies\n", + "tangency\n", + "tangent\n", + "tangential\n", + "tangents\n", + "tangerine\n", + "tangerines\n", + "tangibilities\n", + "tangibility\n", + "tangible\n", + "tangibles\n", + "tangibly\n", + "tangier\n", + "tangiest\n", + "tanging\n", + "tangle\n", + "tangled\n", + "tangler\n", + "tanglers\n", + "tangles\n", + "tanglier\n", + "tangliest\n", + "tangling\n", + "tangly\n", + "tango\n", + "tangoed\n", + "tangoing\n", + "tangos\n", + "tangram\n", + "tangrams\n", + "tangs\n", + "tangy\n", + "tanist\n", + "tanistries\n", + "tanistry\n", + "tanists\n", + "tank\n", + "tanka\n", + "tankage\n", + "tankages\n", + "tankard\n", + "tankards\n", + "tankas\n", + "tanked\n", + "tanker\n", + "tankers\n", + "tankful\n", + "tankfuls\n", + "tanking\n", + "tanks\n", + "tankship\n", + "tankships\n", + "tannable\n", + "tannage\n", + "tannages\n", + "tannate\n", + "tannates\n", + "tanned\n", + "tanner\n", + "tanneries\n", + "tanners\n", + "tannery\n", + "tannest\n", + "tannic\n", + "tannin\n", + "tanning\n", + "tannings\n", + "tannins\n", + "tannish\n", + "tanrec\n", + "tanrecs\n", + "tans\n", + "tansies\n", + "tansy\n", + "tantalic\n", + "tantalize\n", + "tantalized\n", + "tantalizer\n", + "tantalizers\n", + "tantalizes\n", + "tantalizing\n", + "tantalizingly\n", + "tantalum\n", + "tantalums\n", + "tantalus\n", + "tantaluses\n", + "tantamount\n", + "tantara\n", + "tantaras\n", + "tantivies\n", + "tantivy\n", + "tanto\n", + "tantra\n", + "tantras\n", + "tantric\n", + "tantrum\n", + "tantrums\n", + "tanyard\n", + "tanyards\n", + "tao\n", + "taos\n", + "tap\n", + "tapa\n", + "tapadera\n", + "tapaderas\n", + "tapadero\n", + "tapaderos\n", + "tapalo\n", + "tapalos\n", + "tapas\n", + "tape\n", + "taped\n", + "tapeless\n", + "tapelike\n", + "tapeline\n", + "tapelines\n", + "taper\n", + "tapered\n", + "taperer\n", + "taperers\n", + "tapering\n", + "tapers\n", + "tapes\n", + "tapestried\n", + "tapestries\n", + "tapestry\n", + "tapestrying\n", + "tapeta\n", + "tapetal\n", + "tapetum\n", + "tapeworm\n", + "tapeworms\n", + "taphole\n", + "tapholes\n", + "taphouse\n", + "taphouses\n", + "taping\n", + "tapioca\n", + "tapiocas\n", + "tapir\n", + "tapirs\n", + "tapis\n", + "tapises\n", + "tapped\n", + "tapper\n", + "tappers\n", + "tappet\n", + "tappets\n", + "tapping\n", + "tappings\n", + "taproom\n", + "taprooms\n", + "taproot\n", + "taproots\n", + "taps\n", + "tapster\n", + "tapsters\n", + "tar\n", + "tarantas\n", + "tarantases\n", + "tarantula\n", + "tarantulas\n", + "tarboosh\n", + "tarbooshes\n", + "tarbush\n", + "tarbushes\n", + "tardier\n", + "tardies\n", + "tardiest\n", + "tardily\n", + "tardo\n", + "tardy\n", + "tare\n", + "tared\n", + "tares\n", + "targe\n", + "targes\n", + "target\n", + "targeted\n", + "targeting\n", + "targets\n", + "tariff\n", + "tariffed\n", + "tariffing\n", + "tariffs\n", + "taring\n", + "tarlatan\n", + "tarlatans\n", + "tarletan\n", + "tarletans\n", + "tarmac\n", + "tarmacs\n", + "tarn\n", + "tarnal\n", + "tarnally\n", + "tarnish\n", + "tarnished\n", + "tarnishes\n", + "tarnishing\n", + "tarns\n", + "taro\n", + "taroc\n", + "tarocs\n", + "tarok\n", + "taroks\n", + "taros\n", + "tarot\n", + "tarots\n", + "tarp\n", + "tarpan\n", + "tarpans\n", + "tarpaper\n", + "tarpapers\n", + "tarpaulin\n", + "tarpaulins\n", + "tarpon\n", + "tarpons\n", + "tarps\n", + "tarragon\n", + "tarragons\n", + "tarre\n", + "tarred\n", + "tarres\n", + "tarried\n", + "tarrier\n", + "tarriers\n", + "tarries\n", + "tarriest\n", + "tarring\n", + "tarry\n", + "tarrying\n", + "tars\n", + "tarsal\n", + "tarsals\n", + "tarsi\n", + "tarsia\n", + "tarsias\n", + "tarsier\n", + "tarsiers\n", + "tarsus\n", + "tart\n", + "tartan\n", + "tartana\n", + "tartanas\n", + "tartans\n", + "tartar\n", + "tartaric\n", + "tartars\n", + "tarted\n", + "tarter\n", + "tartest\n", + "tarting\n", + "tartish\n", + "tartlet\n", + "tartlets\n", + "tartly\n", + "tartness\n", + "tartnesses\n", + "tartrate\n", + "tartrates\n", + "tarts\n", + "tartufe\n", + "tartufes\n", + "tartuffe\n", + "tartuffes\n", + "tarweed\n", + "tarweeds\n", + "tarzan\n", + "tarzans\n", + "tas\n", + "task\n", + "tasked\n", + "tasking\n", + "taskmaster\n", + "taskmasters\n", + "tasks\n", + "taskwork\n", + "taskworks\n", + "tass\n", + "tasse\n", + "tassel\n", + "tasseled\n", + "tasseling\n", + "tasselled\n", + "tasselling\n", + "tassels\n", + "tasses\n", + "tasset\n", + "tassets\n", + "tassie\n", + "tassies\n", + "tastable\n", + "taste\n", + "tasted\n", + "tasteful\n", + "tastefully\n", + "tasteless\n", + "tastelessly\n", + "taster\n", + "tasters\n", + "tastes\n", + "tastier\n", + "tastiest\n", + "tastily\n", + "tasting\n", + "tasty\n", + "tat\n", + "tatami\n", + "tatamis\n", + "tate\n", + "tater\n", + "taters\n", + "tates\n", + "tatouay\n", + "tatouays\n", + "tats\n", + "tatted\n", + "tatter\n", + "tattered\n", + "tattering\n", + "tatters\n", + "tattier\n", + "tattiest\n", + "tatting\n", + "tattings\n", + "tattle\n", + "tattled\n", + "tattler\n", + "tattlers\n", + "tattles\n", + "tattletale\n", + "tattletales\n", + "tattling\n", + "tattoo\n", + "tattooed\n", + "tattooer\n", + "tattooers\n", + "tattooing\n", + "tattoos\n", + "tatty\n", + "tau\n", + "taught\n", + "taunt\n", + "taunted\n", + "taunter\n", + "taunters\n", + "taunting\n", + "taunts\n", + "taupe\n", + "taupes\n", + "taurine\n", + "taurines\n", + "taus\n", + "taut\n", + "tautaug\n", + "tautaugs\n", + "tauted\n", + "tauten\n", + "tautened\n", + "tautening\n", + "tautens\n", + "tauter\n", + "tautest\n", + "tauting\n", + "tautly\n", + "tautness\n", + "tautnesses\n", + "tautog\n", + "tautogs\n", + "tautomer\n", + "tautomers\n", + "tautonym\n", + "tautonyms\n", + "tauts\n", + "tav\n", + "tavern\n", + "taverner\n", + "taverners\n", + "taverns\n", + "tavs\n", + "taw\n", + "tawdrier\n", + "tawdries\n", + "tawdriest\n", + "tawdry\n", + "tawed\n", + "tawer\n", + "tawers\n", + "tawie\n", + "tawing\n", + "tawney\n", + "tawneys\n", + "tawnier\n", + "tawnies\n", + "tawniest\n", + "tawnily\n", + "tawny\n", + "tawpie\n", + "tawpies\n", + "taws\n", + "tawse\n", + "tawsed\n", + "tawses\n", + "tawsing\n", + "tawsy\n", + "tax\n", + "taxa\n", + "taxable\n", + "taxables\n", + "taxably\n", + "taxation\n", + "taxations\n", + "taxed\n", + "taxeme\n", + "taxemes\n", + "taxemic\n", + "taxer\n", + "taxers\n", + "taxes\n", + "taxi\n", + "taxicab\n", + "taxicabs\n", + "taxidermies\n", + "taxidermist\n", + "taxidermists\n", + "taxidermy\n", + "taxied\n", + "taxies\n", + "taxiing\n", + "taximan\n", + "taximen\n", + "taxing\n", + "taxingly\n", + "taxis\n", + "taxite\n", + "taxites\n", + "taxitic\n", + "taxiway\n", + "taxiways\n", + "taxless\n", + "taxman\n", + "taxmen\n", + "taxon\n", + "taxonomies\n", + "taxonomy\n", + "taxons\n", + "taxpaid\n", + "taxpayer\n", + "taxpayers\n", + "taxpaying\n", + "taxus\n", + "taxwise\n", + "taxying\n", + "tazza\n", + "tazzas\n", + "tazze\n", + "tea\n", + "teaberries\n", + "teaberry\n", + "teaboard\n", + "teaboards\n", + "teabowl\n", + "teabowls\n", + "teabox\n", + "teaboxes\n", + "teacake\n", + "teacakes\n", + "teacart\n", + "teacarts\n", + "teach\n", + "teachable\n", + "teacher\n", + "teachers\n", + "teaches\n", + "teaching\n", + "teachings\n", + "teacup\n", + "teacups\n", + "teahouse\n", + "teahouses\n", + "teak\n", + "teakettle\n", + "teakettles\n", + "teaks\n", + "teakwood\n", + "teakwoods\n", + "teal\n", + "teals\n", + "team\n", + "teamaker\n", + "teamakers\n", + "teamed\n", + "teaming\n", + "teammate\n", + "teammates\n", + "teams\n", + "teamster\n", + "teamsters\n", + "teamwork\n", + "teamworks\n", + "teapot\n", + "teapots\n", + "teapoy\n", + "teapoys\n", + "tear\n", + "tearable\n", + "teardown\n", + "teardowns\n", + "teardrop\n", + "teardrops\n", + "teared\n", + "tearer\n", + "tearers\n", + "tearful\n", + "teargas\n", + "teargases\n", + "teargassed\n", + "teargasses\n", + "teargassing\n", + "tearier\n", + "teariest\n", + "tearily\n", + "tearing\n", + "tearless\n", + "tearoom\n", + "tearooms\n", + "tears\n", + "teary\n", + "teas\n", + "tease\n", + "teased\n", + "teasel\n", + "teaseled\n", + "teaseler\n", + "teaselers\n", + "teaseling\n", + "teaselled\n", + "teaselling\n", + "teasels\n", + "teaser\n", + "teasers\n", + "teases\n", + "teashop\n", + "teashops\n", + "teasing\n", + "teaspoon\n", + "teaspoonful\n", + "teaspoonfuls\n", + "teaspoons\n", + "teat\n", + "teated\n", + "teatime\n", + "teatimes\n", + "teats\n", + "teaware\n", + "teawares\n", + "teazel\n", + "teazeled\n", + "teazeling\n", + "teazelled\n", + "teazelling\n", + "teazels\n", + "teazle\n", + "teazled\n", + "teazles\n", + "teazling\n", + "teched\n", + "techier\n", + "techiest\n", + "techily\n", + "technic\n", + "technical\n", + "technicalities\n", + "technicality\n", + "technically\n", + "technician\n", + "technicians\n", + "technics\n", + "technique\n", + "techniques\n", + "technological\n", + "technologies\n", + "technology\n", + "techy\n", + "tecta\n", + "tectal\n", + "tectonic\n", + "tectrices\n", + "tectrix\n", + "tectum\n", + "ted\n", + "tedded\n", + "tedder\n", + "tedders\n", + "teddies\n", + "tedding\n", + "teddy\n", + "tedious\n", + "tediously\n", + "tediousness\n", + "tediousnesses\n", + "tedium\n", + "tediums\n", + "teds\n", + "tee\n", + "teed\n", + "teeing\n", + "teem\n", + "teemed\n", + "teemer\n", + "teemers\n", + "teeming\n", + "teems\n", + "teen\n", + "teenage\n", + "teenaged\n", + "teenager\n", + "teenagers\n", + "teener\n", + "teeners\n", + "teenful\n", + "teenier\n", + "teeniest\n", + "teens\n", + "teensier\n", + "teensiest\n", + "teensy\n", + "teentsier\n", + "teentsiest\n", + "teentsy\n", + "teeny\n", + "teepee\n", + "teepees\n", + "tees\n", + "teeter\n", + "teetered\n", + "teetering\n", + "teeters\n", + "teeth\n", + "teethe\n", + "teethed\n", + "teether\n", + "teethers\n", + "teethes\n", + "teething\n", + "teethings\n", + "teetotal\n", + "teetotaled\n", + "teetotaling\n", + "teetotalled\n", + "teetotalling\n", + "teetotals\n", + "teetotum\n", + "teetotums\n", + "teff\n", + "teffs\n", + "teg\n", + "tegmen\n", + "tegmenta\n", + "tegmina\n", + "tegminal\n", + "tegs\n", + "tegua\n", + "teguas\n", + "tegular\n", + "tegumen\n", + "tegument\n", + "teguments\n", + "tegumina\n", + "teiglach\n", + "teiid\n", + "teiids\n", + "teind\n", + "teinds\n", + "tektite\n", + "tektites\n", + "tektitic\n", + "tektronix\n", + "tela\n", + "telae\n", + "telamon\n", + "telamones\n", + "tele\n", + "telecast\n", + "telecasted\n", + "telecasting\n", + "telecasts\n", + "teledu\n", + "teledus\n", + "telefilm\n", + "telefilms\n", + "telega\n", + "telegas\n", + "telegonies\n", + "telegony\n", + "telegram\n", + "telegrammed\n", + "telegramming\n", + "telegrams\n", + "telegraph\n", + "telegraphed\n", + "telegrapher\n", + "telegraphers\n", + "telegraphing\n", + "telegraphist\n", + "telegraphists\n", + "telegraphs\n", + "teleman\n", + "telemark\n", + "telemarks\n", + "telemen\n", + "teleost\n", + "teleosts\n", + "telepathic\n", + "telepathically\n", + "telepathies\n", + "telepathy\n", + "telephone\n", + "telephoned\n", + "telephoner\n", + "telephoners\n", + "telephones\n", + "telephoning\n", + "telephoto\n", + "teleplay\n", + "teleplays\n", + "teleport\n", + "teleported\n", + "teleporting\n", + "teleports\n", + "teleran\n", + "telerans\n", + "teles\n", + "telescope\n", + "telescoped\n", + "telescopes\n", + "telescopic\n", + "telescoping\n", + "teleses\n", + "telesis\n", + "telethon\n", + "telethons\n", + "teleview\n", + "televiewed\n", + "televiewing\n", + "televiews\n", + "televise\n", + "televised\n", + "televises\n", + "televising\n", + "television\n", + "televisions\n", + "telex\n", + "telexed\n", + "telexes\n", + "telexing\n", + "telfer\n", + "telfered\n", + "telfering\n", + "telfers\n", + "telford\n", + "telfords\n", + "telia\n", + "telial\n", + "telic\n", + "telium\n", + "tell\n", + "tellable\n", + "teller\n", + "tellers\n", + "tellies\n", + "telling\n", + "tells\n", + "telltale\n", + "telltales\n", + "telluric\n", + "telly\n", + "teloi\n", + "telome\n", + "telomes\n", + "telomic\n", + "telos\n", + "telpher\n", + "telphered\n", + "telphering\n", + "telphers\n", + "telson\n", + "telsonic\n", + "telsons\n", + "temblor\n", + "temblores\n", + "temblors\n", + "temerities\n", + "temerity\n", + "tempeh\n", + "tempehs\n", + "temper\n", + "tempera\n", + "temperament\n", + "temperamental\n", + "temperaments\n", + "temperance\n", + "temperances\n", + "temperas\n", + "temperate\n", + "temperature\n", + "temperatures\n", + "tempered\n", + "temperer\n", + "temperers\n", + "tempering\n", + "tempers\n", + "tempest\n", + "tempested\n", + "tempesting\n", + "tempests\n", + "tempestuous\n", + "tempi\n", + "templar\n", + "templars\n", + "template\n", + "templates\n", + "temple\n", + "templed\n", + "temples\n", + "templet\n", + "templets\n", + "tempo\n", + "temporal\n", + "temporals\n", + "temporaries\n", + "temporarily\n", + "temporary\n", + "tempos\n", + "tempt\n", + "temptation\n", + "temptations\n", + "tempted\n", + "tempter\n", + "tempters\n", + "tempting\n", + "temptingly\n", + "temptress\n", + "tempts\n", + "tempura\n", + "tempuras\n", + "ten\n", + "tenabilities\n", + "tenability\n", + "tenable\n", + "tenably\n", + "tenace\n", + "tenaces\n", + "tenacious\n", + "tenaciously\n", + "tenacities\n", + "tenacity\n", + "tenacula\n", + "tenail\n", + "tenaille\n", + "tenailles\n", + "tenails\n", + "tenancies\n", + "tenancy\n", + "tenant\n", + "tenanted\n", + "tenanting\n", + "tenantries\n", + "tenantry\n", + "tenants\n", + "tench\n", + "tenches\n", + "tend\n", + "tendance\n", + "tendances\n", + "tended\n", + "tendence\n", + "tendences\n", + "tendencies\n", + "tendency\n", + "tender\n", + "tendered\n", + "tenderer\n", + "tenderers\n", + "tenderest\n", + "tendering\n", + "tenderize\n", + "tenderized\n", + "tenderizer\n", + "tenderizers\n", + "tenderizes\n", + "tenderizing\n", + "tenderloin\n", + "tenderloins\n", + "tenderly\n", + "tenderness\n", + "tendernesses\n", + "tenders\n", + "tending\n", + "tendon\n", + "tendons\n", + "tendril\n", + "tendrils\n", + "tends\n", + "tenebrae\n", + "tenement\n", + "tenements\n", + "tenesmus\n", + "tenesmuses\n", + "tenet\n", + "tenets\n", + "tenfold\n", + "tenfolds\n", + "tenia\n", + "teniae\n", + "tenias\n", + "teniasis\n", + "teniasises\n", + "tenner\n", + "tenners\n", + "tennis\n", + "tennises\n", + "tennist\n", + "tennists\n", + "tenon\n", + "tenoned\n", + "tenoner\n", + "tenoners\n", + "tenoning\n", + "tenons\n", + "tenor\n", + "tenorite\n", + "tenorites\n", + "tenors\n", + "tenotomies\n", + "tenotomy\n", + "tenour\n", + "tenours\n", + "tenpence\n", + "tenpences\n", + "tenpenny\n", + "tenpin\n", + "tenpins\n", + "tenrec\n", + "tenrecs\n", + "tens\n", + "tense\n", + "tensed\n", + "tensely\n", + "tenser\n", + "tenses\n", + "tensest\n", + "tensible\n", + "tensibly\n", + "tensile\n", + "tensing\n", + "tension\n", + "tensioned\n", + "tensioning\n", + "tensions\n", + "tensities\n", + "tensity\n", + "tensive\n", + "tensor\n", + "tensors\n", + "tent\n", + "tentacle\n", + "tentacles\n", + "tentacular\n", + "tentage\n", + "tentages\n", + "tentative\n", + "tentatively\n", + "tented\n", + "tenter\n", + "tentered\n", + "tenterhooks\n", + "tentering\n", + "tenters\n", + "tenth\n", + "tenthly\n", + "tenths\n", + "tentie\n", + "tentier\n", + "tentiest\n", + "tenting\n", + "tentless\n", + "tentlike\n", + "tents\n", + "tenty\n", + "tenues\n", + "tenuis\n", + "tenuities\n", + "tenuity\n", + "tenuous\n", + "tenuously\n", + "tenuousness\n", + "tenuousnesses\n", + "tenure\n", + "tenured\n", + "tenures\n", + "tenurial\n", + "tenuti\n", + "tenuto\n", + "tenutos\n", + "teocalli\n", + "teocallis\n", + "teopan\n", + "teopans\n", + "teosinte\n", + "teosintes\n", + "tepa\n", + "tepas\n", + "tepee\n", + "tepees\n", + "tepefied\n", + "tepefies\n", + "tepefy\n", + "tepefying\n", + "tephra\n", + "tephras\n", + "tephrite\n", + "tephrites\n", + "tepid\n", + "tepidities\n", + "tepidity\n", + "tepidly\n", + "tequila\n", + "tequilas\n", + "terai\n", + "terais\n", + "teraohm\n", + "teraohms\n", + "teraph\n", + "teraphim\n", + "teratism\n", + "teratisms\n", + "teratoid\n", + "teratoma\n", + "teratomas\n", + "teratomata\n", + "terbia\n", + "terbias\n", + "terbic\n", + "terbium\n", + "terbiums\n", + "terce\n", + "tercel\n", + "tercelet\n", + "tercelets\n", + "tercels\n", + "terces\n", + "tercet\n", + "tercets\n", + "terebene\n", + "terebenes\n", + "terebic\n", + "teredines\n", + "teredo\n", + "teredos\n", + "terefah\n", + "terete\n", + "terga\n", + "tergal\n", + "tergite\n", + "tergites\n", + "tergum\n", + "teriyaki\n", + "teriyakis\n", + "term\n", + "termed\n", + "termer\n", + "termers\n", + "terminable\n", + "terminal\n", + "terminals\n", + "terminate\n", + "terminated\n", + "terminates\n", + "terminating\n", + "termination\n", + "terming\n", + "termini\n", + "terminologies\n", + "terminology\n", + "terminus\n", + "terminuses\n", + "termite\n", + "termites\n", + "termitic\n", + "termless\n", + "termly\n", + "termor\n", + "termors\n", + "terms\n", + "termtime\n", + "termtimes\n", + "tern\n", + "ternaries\n", + "ternary\n", + "ternate\n", + "terne\n", + "ternes\n", + "ternion\n", + "ternions\n", + "terns\n", + "terpene\n", + "terpenes\n", + "terpenic\n", + "terpinol\n", + "terpinols\n", + "terra\n", + "terrace\n", + "terraced\n", + "terraces\n", + "terracing\n", + "terrae\n", + "terrain\n", + "terrains\n", + "terrane\n", + "terranes\n", + "terrapin\n", + "terrapins\n", + "terraria\n", + "terrarium\n", + "terras\n", + "terrases\n", + "terrazzo\n", + "terrazzos\n", + "terreen\n", + "terreens\n", + "terrella\n", + "terrellas\n", + "terrene\n", + "terrenes\n", + "terrestrial\n", + "terret\n", + "terrets\n", + "terrible\n", + "terribly\n", + "terrier\n", + "terriers\n", + "terries\n", + "terrific\n", + "terrified\n", + "terrifies\n", + "terrify\n", + "terrifying\n", + "terrifyingly\n", + "terrine\n", + "terrines\n", + "territ\n", + "territorial\n", + "territories\n", + "territory\n", + "territs\n", + "terror\n", + "terrorism\n", + "terrorisms\n", + "terrorize\n", + "terrorized\n", + "terrorizes\n", + "terrorizing\n", + "terrors\n", + "terry\n", + "terse\n", + "tersely\n", + "terseness\n", + "tersenesses\n", + "terser\n", + "tersest\n", + "tertial\n", + "tertials\n", + "tertian\n", + "tertians\n", + "tertiaries\n", + "tertiary\n", + "tesla\n", + "teslas\n", + "tessera\n", + "tesserae\n", + "test\n", + "testa\n", + "testable\n", + "testacies\n", + "testacy\n", + "testae\n", + "testament\n", + "testamentary\n", + "testaments\n", + "testate\n", + "testator\n", + "testators\n", + "tested\n", + "testee\n", + "testees\n", + "tester\n", + "testers\n", + "testes\n", + "testicle\n", + "testicles\n", + "testicular\n", + "testier\n", + "testiest\n", + "testified\n", + "testifies\n", + "testify\n", + "testifying\n", + "testily\n", + "testimonial\n", + "testimonials\n", + "testimonies\n", + "testimony\n", + "testing\n", + "testis\n", + "teston\n", + "testons\n", + "testoon\n", + "testoons\n", + "testosterone\n", + "testpatient\n", + "tests\n", + "testudines\n", + "testudo\n", + "testudos\n", + "testy\n", + "tetanal\n", + "tetanic\n", + "tetanics\n", + "tetanies\n", + "tetanise\n", + "tetanised\n", + "tetanises\n", + "tetanising\n", + "tetanize\n", + "tetanized\n", + "tetanizes\n", + "tetanizing\n", + "tetanoid\n", + "tetanus\n", + "tetanuses\n", + "tetany\n", + "tetched\n", + "tetchier\n", + "tetchiest\n", + "tetchily\n", + "tetchy\n", + "teth\n", + "tether\n", + "tethered\n", + "tethering\n", + "tethers\n", + "teths\n", + "tetotum\n", + "tetotums\n", + "tetra\n", + "tetracid\n", + "tetracids\n", + "tetrad\n", + "tetradic\n", + "tetrads\n", + "tetragon\n", + "tetragons\n", + "tetramer\n", + "tetramers\n", + "tetrapod\n", + "tetrapods\n", + "tetrarch\n", + "tetrarchs\n", + "tetras\n", + "tetrode\n", + "tetrodes\n", + "tetroxid\n", + "tetroxids\n", + "tetryl\n", + "tetryls\n", + "tetter\n", + "tetters\n", + "teuch\n", + "teugh\n", + "teughly\n", + "tew\n", + "tewed\n", + "tewing\n", + "tews\n", + "texas\n", + "texases\n", + "text\n", + "textbook\n", + "textbooks\n", + "textile\n", + "textiles\n", + "textless\n", + "texts\n", + "textual\n", + "textuaries\n", + "textuary\n", + "textural\n", + "texture\n", + "textured\n", + "textures\n", + "texturing\n", + "thack\n", + "thacked\n", + "thacking\n", + "thacks\n", + "thae\n", + "thairm\n", + "thairms\n", + "thalami\n", + "thalamic\n", + "thalamus\n", + "thaler\n", + "thalers\n", + "thalli\n", + "thallic\n", + "thallium\n", + "thalliums\n", + "thalloid\n", + "thallous\n", + "thallus\n", + "thalluses\n", + "than\n", + "thanage\n", + "thanages\n", + "thanatos\n", + "thanatoses\n", + "thane\n", + "thanes\n", + "thank\n", + "thanked\n", + "thanker\n", + "thankful\n", + "thankfuller\n", + "thankfullest\n", + "thankfully\n", + "thankfulness\n", + "thankfulnesses\n", + "thanking\n", + "thanks\n", + "thanksgiving\n", + "tharm\n", + "tharms\n", + "that\n", + "thataway\n", + "thatch\n", + "thatched\n", + "thatcher\n", + "thatchers\n", + "thatches\n", + "thatching\n", + "thatchy\n", + "thaw\n", + "thawed\n", + "thawer\n", + "thawers\n", + "thawing\n", + "thawless\n", + "thaws\n", + "the\n", + "thearchies\n", + "thearchy\n", + "theater\n", + "theaters\n", + "theatre\n", + "theatres\n", + "theatric\n", + "theatrical\n", + "thebaine\n", + "thebaines\n", + "theca\n", + "thecae\n", + "thecal\n", + "thecate\n", + "thee\n", + "theelin\n", + "theelins\n", + "theelol\n", + "theelols\n", + "theft\n", + "thefts\n", + "thegn\n", + "thegnly\n", + "thegns\n", + "thein\n", + "theine\n", + "theines\n", + "theins\n", + "their\n", + "theirs\n", + "theism\n", + "theisms\n", + "theist\n", + "theistic\n", + "theists\n", + "thelitis\n", + "thelitises\n", + "them\n", + "thematic\n", + "theme\n", + "themes\n", + "themselves\n", + "then\n", + "thenage\n", + "thenages\n", + "thenal\n", + "thenar\n", + "thenars\n", + "thence\n", + "thens\n", + "theocracy\n", + "theocrat\n", + "theocratic\n", + "theocrats\n", + "theodicies\n", + "theodicy\n", + "theogonies\n", + "theogony\n", + "theolog\n", + "theologian\n", + "theologians\n", + "theological\n", + "theologies\n", + "theologs\n", + "theology\n", + "theonomies\n", + "theonomy\n", + "theorbo\n", + "theorbos\n", + "theorem\n", + "theorems\n", + "theoretical\n", + "theoretically\n", + "theories\n", + "theorise\n", + "theorised\n", + "theorises\n", + "theorising\n", + "theorist\n", + "theorists\n", + "theorize\n", + "theorized\n", + "theorizes\n", + "theorizing\n", + "theory\n", + "therapeutic\n", + "therapeutically\n", + "therapies\n", + "therapist\n", + "therapists\n", + "therapy\n", + "there\n", + "thereabout\n", + "thereabouts\n", + "thereafter\n", + "thereat\n", + "thereby\n", + "therefor\n", + "therefore\n", + "therein\n", + "theremin\n", + "theremins\n", + "thereof\n", + "thereon\n", + "theres\n", + "thereto\n", + "thereupon\n", + "therewith\n", + "theriac\n", + "theriaca\n", + "theriacas\n", + "theriacs\n", + "therm\n", + "thermae\n", + "thermal\n", + "thermals\n", + "therme\n", + "thermel\n", + "thermels\n", + "thermes\n", + "thermic\n", + "thermion\n", + "thermions\n", + "thermit\n", + "thermite\n", + "thermites\n", + "thermits\n", + "thermodynamics\n", + "thermometer\n", + "thermometers\n", + "thermometric\n", + "thermometrically\n", + "thermos\n", + "thermoses\n", + "thermostat\n", + "thermostatic\n", + "thermostatically\n", + "thermostats\n", + "therms\n", + "theroid\n", + "theropod\n", + "theropods\n", + "thesauri\n", + "thesaurus\n", + "these\n", + "theses\n", + "thesis\n", + "thespian\n", + "thespians\n", + "theta\n", + "thetas\n", + "thetic\n", + "thetical\n", + "theurgic\n", + "theurgies\n", + "theurgy\n", + "thew\n", + "thewless\n", + "thews\n", + "thewy\n", + "they\n", + "thiamin\n", + "thiamine\n", + "thiamines\n", + "thiamins\n", + "thiazide\n", + "thiazides\n", + "thiazin\n", + "thiazine\n", + "thiazines\n", + "thiazins\n", + "thiazol\n", + "thiazole\n", + "thiazoles\n", + "thiazols\n", + "thick\n", + "thicken\n", + "thickened\n", + "thickener\n", + "thickeners\n", + "thickening\n", + "thickens\n", + "thicker\n", + "thickest\n", + "thicket\n", + "thickets\n", + "thickety\n", + "thickish\n", + "thickly\n", + "thickness\n", + "thicknesses\n", + "thicks\n", + "thickset\n", + "thicksets\n", + "thief\n", + "thieve\n", + "thieved\n", + "thieveries\n", + "thievery\n", + "thieves\n", + "thieving\n", + "thievish\n", + "thigh\n", + "thighbone\n", + "thighbones\n", + "thighed\n", + "thighs\n", + "thill\n", + "thills\n", + "thimble\n", + "thimbleful\n", + "thimblefuls\n", + "thimbles\n", + "thin\n", + "thinclad\n", + "thinclads\n", + "thindown\n", + "thindowns\n", + "thine\n", + "thing\n", + "things\n", + "think\n", + "thinker\n", + "thinkers\n", + "thinking\n", + "thinkings\n", + "thinks\n", + "thinly\n", + "thinned\n", + "thinner\n", + "thinness\n", + "thinnesses\n", + "thinnest\n", + "thinning\n", + "thinnish\n", + "thins\n", + "thio\n", + "thiol\n", + "thiolic\n", + "thiols\n", + "thionate\n", + "thionates\n", + "thionic\n", + "thionin\n", + "thionine\n", + "thionines\n", + "thionins\n", + "thionyl\n", + "thionyls\n", + "thiophen\n", + "thiophens\n", + "thiotepa\n", + "thiotepas\n", + "thiourea\n", + "thioureas\n", + "thir\n", + "thiram\n", + "thirams\n", + "third\n", + "thirdly\n", + "thirds\n", + "thirl\n", + "thirlage\n", + "thirlages\n", + "thirled\n", + "thirling\n", + "thirls\n", + "thirst\n", + "thirsted\n", + "thirster\n", + "thirsters\n", + "thirstier\n", + "thirstiest\n", + "thirsting\n", + "thirsts\n", + "thirsty\n", + "thirteen\n", + "thirteens\n", + "thirteenth\n", + "thirteenths\n", + "thirties\n", + "thirtieth\n", + "thirtieths\n", + "thirty\n", + "this\n", + "thistle\n", + "thistles\n", + "thistly\n", + "thither\n", + "tho\n", + "thole\n", + "tholed\n", + "tholepin\n", + "tholepins\n", + "tholes\n", + "tholing\n", + "tholoi\n", + "tholos\n", + "thong\n", + "thonged\n", + "thongs\n", + "thoracal\n", + "thoraces\n", + "thoracic\n", + "thorax\n", + "thoraxes\n", + "thoria\n", + "thorias\n", + "thoric\n", + "thorite\n", + "thorites\n", + "thorium\n", + "thoriums\n", + "thorn\n", + "thorned\n", + "thornier\n", + "thorniest\n", + "thornily\n", + "thorning\n", + "thorns\n", + "thorny\n", + "thoro\n", + "thoron\n", + "thorons\n", + "thorough\n", + "thoroughbred\n", + "thoroughbreds\n", + "thorougher\n", + "thoroughest\n", + "thoroughfare\n", + "thoroughfares\n", + "thoroughly\n", + "thoroughness\n", + "thoroughnesses\n", + "thorp\n", + "thorpe\n", + "thorpes\n", + "thorps\n", + "those\n", + "thou\n", + "thoued\n", + "though\n", + "thought\n", + "thoughtful\n", + "thoughtfully\n", + "thoughtfulness\n", + "thoughtfulnesses\n", + "thoughtless\n", + "thoughtlessly\n", + "thoughtlessness\n", + "thoughtlessnesses\n", + "thoughts\n", + "thouing\n", + "thous\n", + "thousand\n", + "thousands\n", + "thousandth\n", + "thousandths\n", + "thowless\n", + "thraldom\n", + "thraldoms\n", + "thrall\n", + "thralled\n", + "thralling\n", + "thralls\n", + "thrash\n", + "thrashed\n", + "thrasher\n", + "thrashers\n", + "thrashes\n", + "thrashing\n", + "thrave\n", + "thraves\n", + "thraw\n", + "thrawart\n", + "thrawed\n", + "thrawing\n", + "thrawn\n", + "thrawnly\n", + "thraws\n", + "thread\n", + "threadbare\n", + "threaded\n", + "threader\n", + "threaders\n", + "threadier\n", + "threadiest\n", + "threading\n", + "threads\n", + "thready\n", + "threap\n", + "threaped\n", + "threaper\n", + "threapers\n", + "threaping\n", + "threaps\n", + "threat\n", + "threated\n", + "threaten\n", + "threatened\n", + "threatening\n", + "threateningly\n", + "threatens\n", + "threating\n", + "threats\n", + "three\n", + "threefold\n", + "threep\n", + "threeped\n", + "threeping\n", + "threeps\n", + "threes\n", + "threescore\n", + "threnode\n", + "threnodes\n", + "threnodies\n", + "threnody\n", + "thresh\n", + "threshed\n", + "thresher\n", + "threshers\n", + "threshes\n", + "threshing\n", + "threshold\n", + "thresholds\n", + "threw\n", + "thrice\n", + "thrift\n", + "thriftier\n", + "thriftiest\n", + "thriftily\n", + "thriftless\n", + "thrifts\n", + "thrifty\n", + "thrill\n", + "thrilled\n", + "thriller\n", + "thrillers\n", + "thrilling\n", + "thrillingly\n", + "thrills\n", + "thrip\n", + "thrips\n", + "thrive\n", + "thrived\n", + "thriven\n", + "thriver\n", + "thrivers\n", + "thrives\n", + "thriving\n", + "thro\n", + "throat\n", + "throated\n", + "throatier\n", + "throatiest\n", + "throating\n", + "throats\n", + "throaty\n", + "throb\n", + "throbbed\n", + "throbber\n", + "throbbers\n", + "throbbing\n", + "throbs\n", + "throe\n", + "throes\n", + "thrombi\n", + "thrombin\n", + "thrombins\n", + "thrombocyte\n", + "thrombocytes\n", + "thrombocytopenia\n", + "thrombocytosis\n", + "thrombophlebitis\n", + "thromboplastin\n", + "thrombus\n", + "throne\n", + "throned\n", + "thrones\n", + "throng\n", + "thronged\n", + "thronging\n", + "throngs\n", + "throning\n", + "throstle\n", + "throstles\n", + "throttle\n", + "throttled\n", + "throttles\n", + "throttling\n", + "through\n", + "throughout\n", + "throve\n", + "throw\n", + "thrower\n", + "throwers\n", + "throwing\n", + "thrown\n", + "throws\n", + "thru\n", + "thrum\n", + "thrummed\n", + "thrummer\n", + "thrummers\n", + "thrummier\n", + "thrummiest\n", + "thrumming\n", + "thrummy\n", + "thrums\n", + "thruput\n", + "thruputs\n", + "thrush\n", + "thrushes\n", + "thrust\n", + "thrusted\n", + "thruster\n", + "thrusters\n", + "thrusting\n", + "thrustor\n", + "thrustors\n", + "thrusts\n", + "thruway\n", + "thruways\n", + "thud\n", + "thudded\n", + "thudding\n", + "thuds\n", + "thug\n", + "thuggee\n", + "thuggees\n", + "thuggeries\n", + "thuggery\n", + "thuggish\n", + "thugs\n", + "thuja\n", + "thujas\n", + "thulia\n", + "thulias\n", + "thulium\n", + "thuliums\n", + "thumb\n", + "thumbed\n", + "thumbing\n", + "thumbkin\n", + "thumbkins\n", + "thumbnail\n", + "thumbnails\n", + "thumbnut\n", + "thumbnuts\n", + "thumbs\n", + "thumbtack\n", + "thumbtacks\n", + "thump\n", + "thumped\n", + "thumper\n", + "thumpers\n", + "thumping\n", + "thumps\n", + "thunder\n", + "thunderbolt\n", + "thunderbolts\n", + "thunderclap\n", + "thunderclaps\n", + "thundered\n", + "thundering\n", + "thunderous\n", + "thunderously\n", + "thunders\n", + "thundershower\n", + "thundershowers\n", + "thunderstorm\n", + "thunderstorms\n", + "thundery\n", + "thurible\n", + "thuribles\n", + "thurifer\n", + "thurifers\n", + "thurl\n", + "thurls\n", + "thus\n", + "thusly\n", + "thuya\n", + "thuyas\n", + "thwack\n", + "thwacked\n", + "thwacker\n", + "thwackers\n", + "thwacking\n", + "thwacks\n", + "thwart\n", + "thwarted\n", + "thwarter\n", + "thwarters\n", + "thwarting\n", + "thwartly\n", + "thwarts\n", + "thy\n", + "thyme\n", + "thymes\n", + "thymey\n", + "thymi\n", + "thymic\n", + "thymier\n", + "thymiest\n", + "thymine\n", + "thymines\n", + "thymol\n", + "thymols\n", + "thymus\n", + "thymuses\n", + "thymy\n", + "thyreoid\n", + "thyroid\n", + "thyroidal\n", + "thyroids\n", + "thyroxin\n", + "thyroxins\n", + "thyrse\n", + "thyrses\n", + "thyrsi\n", + "thyrsoid\n", + "thyrsus\n", + "thyself\n", + "ti\n", + "tiara\n", + "tiaraed\n", + "tiaras\n", + "tibia\n", + "tibiae\n", + "tibial\n", + "tibias\n", + "tic\n", + "tical\n", + "ticals\n", + "tick\n", + "ticked\n", + "ticker\n", + "tickers\n", + "ticket\n", + "ticketed\n", + "ticketing\n", + "tickets\n", + "ticking\n", + "tickings\n", + "tickle\n", + "tickled\n", + "tickler\n", + "ticklers\n", + "tickles\n", + "tickling\n", + "ticklish\n", + "ticklishly\n", + "ticklishness\n", + "ticklishnesses\n", + "ticks\n", + "tickseed\n", + "tickseeds\n", + "ticktack\n", + "ticktacked\n", + "ticktacking\n", + "ticktacks\n", + "ticktock\n", + "ticktocked\n", + "ticktocking\n", + "ticktocks\n", + "tics\n", + "tictac\n", + "tictacked\n", + "tictacking\n", + "tictacs\n", + "tictoc\n", + "tictocked\n", + "tictocking\n", + "tictocs\n", + "tidal\n", + "tidally\n", + "tidbit\n", + "tidbits\n", + "tiddly\n", + "tide\n", + "tided\n", + "tideland\n", + "tidelands\n", + "tideless\n", + "tidelike\n", + "tidemark\n", + "tidemarks\n", + "tiderip\n", + "tiderips\n", + "tides\n", + "tidewater\n", + "tidewaters\n", + "tideway\n", + "tideways\n", + "tidied\n", + "tidier\n", + "tidies\n", + "tidiest\n", + "tidily\n", + "tidiness\n", + "tidinesses\n", + "tiding\n", + "tidings\n", + "tidy\n", + "tidying\n", + "tidytips\n", + "tie\n", + "tieback\n", + "tiebacks\n", + "tieclasp\n", + "tieclasps\n", + "tied\n", + "tieing\n", + "tiepin\n", + "tiepins\n", + "tier\n", + "tierce\n", + "tierced\n", + "tiercel\n", + "tiercels\n", + "tierces\n", + "tiered\n", + "tiering\n", + "tiers\n", + "ties\n", + "tiff\n", + "tiffanies\n", + "tiffany\n", + "tiffed\n", + "tiffin\n", + "tiffined\n", + "tiffing\n", + "tiffining\n", + "tiffins\n", + "tiffs\n", + "tiger\n", + "tigereye\n", + "tigereyes\n", + "tigerish\n", + "tigers\n", + "tight\n", + "tighten\n", + "tightened\n", + "tightening\n", + "tightens\n", + "tighter\n", + "tightest\n", + "tightly\n", + "tightness\n", + "tightnesses\n", + "tights\n", + "tightwad\n", + "tightwads\n", + "tiglon\n", + "tiglons\n", + "tigon\n", + "tigons\n", + "tigress\n", + "tigresses\n", + "tigrish\n", + "tike\n", + "tikes\n", + "tiki\n", + "tikis\n", + "til\n", + "tilapia\n", + "tilapias\n", + "tilburies\n", + "tilbury\n", + "tilde\n", + "tildes\n", + "tile\n", + "tiled\n", + "tilefish\n", + "tilefishes\n", + "tilelike\n", + "tiler\n", + "tilers\n", + "tiles\n", + "tiling\n", + "till\n", + "tillable\n", + "tillage\n", + "tillages\n", + "tilled\n", + "tiller\n", + "tillered\n", + "tillering\n", + "tillers\n", + "tilling\n", + "tills\n", + "tils\n", + "tilt\n", + "tiltable\n", + "tilted\n", + "tilter\n", + "tilters\n", + "tilth\n", + "tilths\n", + "tilting\n", + "tilts\n", + "tiltyard\n", + "tiltyards\n", + "timarau\n", + "timaraus\n", + "timbal\n", + "timbale\n", + "timbales\n", + "timbals\n", + "timber\n", + "timbered\n", + "timbering\n", + "timberland\n", + "timberlands\n", + "timbers\n", + "timbre\n", + "timbrel\n", + "timbrels\n", + "timbres\n", + "time\n", + "timecard\n", + "timecards\n", + "timed\n", + "timekeeper\n", + "timekeepers\n", + "timeless\n", + "timelessness\n", + "timelessnesses\n", + "timelier\n", + "timeliest\n", + "timeliness\n", + "timelinesses\n", + "timely\n", + "timeous\n", + "timeout\n", + "timeouts\n", + "timepiece\n", + "timepieces\n", + "timer\n", + "timers\n", + "times\n", + "timetable\n", + "timetables\n", + "timework\n", + "timeworks\n", + "timeworn\n", + "timid\n", + "timider\n", + "timidest\n", + "timidities\n", + "timidity\n", + "timidly\n", + "timing\n", + "timings\n", + "timorous\n", + "timorously\n", + "timorousness\n", + "timorousnesses\n", + "timothies\n", + "timothy\n", + "timpana\n", + "timpani\n", + "timpanist\n", + "timpanists\n", + "timpano\n", + "timpanum\n", + "timpanums\n", + "tin\n", + "tinamou\n", + "tinamous\n", + "tincal\n", + "tincals\n", + "tinct\n", + "tincted\n", + "tincting\n", + "tincts\n", + "tincture\n", + "tinctured\n", + "tinctures\n", + "tincturing\n", + "tinder\n", + "tinders\n", + "tindery\n", + "tine\n", + "tinea\n", + "tineal\n", + "tineas\n", + "tined\n", + "tineid\n", + "tineids\n", + "tines\n", + "tinfoil\n", + "tinfoils\n", + "tinful\n", + "tinfuls\n", + "ting\n", + "tinge\n", + "tinged\n", + "tingeing\n", + "tinges\n", + "tinging\n", + "tingle\n", + "tingled\n", + "tingler\n", + "tinglers\n", + "tingles\n", + "tinglier\n", + "tingliest\n", + "tingling\n", + "tingly\n", + "tings\n", + "tinhorn\n", + "tinhorns\n", + "tinier\n", + "tiniest\n", + "tinily\n", + "tininess\n", + "tininesses\n", + "tining\n", + "tinker\n", + "tinkered\n", + "tinkerer\n", + "tinkerers\n", + "tinkering\n", + "tinkers\n", + "tinkle\n", + "tinkled\n", + "tinkles\n", + "tinklier\n", + "tinkliest\n", + "tinkling\n", + "tinklings\n", + "tinkly\n", + "tinlike\n", + "tinman\n", + "tinmen\n", + "tinned\n", + "tinner\n", + "tinners\n", + "tinnier\n", + "tinniest\n", + "tinnily\n", + "tinning\n", + "tinnitus\n", + "tinnituses\n", + "tinny\n", + "tinplate\n", + "tinplates\n", + "tins\n", + "tinsel\n", + "tinseled\n", + "tinseling\n", + "tinselled\n", + "tinselling\n", + "tinselly\n", + "tinsels\n", + "tinsmith\n", + "tinsmiths\n", + "tinstone\n", + "tinstones\n", + "tint\n", + "tinted\n", + "tinter\n", + "tinters\n", + "tinting\n", + "tintings\n", + "tintless\n", + "tints\n", + "tintype\n", + "tintypes\n", + "tinware\n", + "tinwares\n", + "tinwork\n", + "tinworks\n", + "tiny\n", + "tip\n", + "tipcart\n", + "tipcarts\n", + "tipcat\n", + "tipcats\n", + "tipi\n", + "tipis\n", + "tipless\n", + "tipoff\n", + "tipoffs\n", + "tippable\n", + "tipped\n", + "tipper\n", + "tippers\n", + "tippet\n", + "tippets\n", + "tippier\n", + "tippiest\n", + "tipping\n", + "tipple\n", + "tippled\n", + "tippler\n", + "tipplers\n", + "tipples\n", + "tippling\n", + "tippy\n", + "tips\n", + "tipsier\n", + "tipsiest\n", + "tipsily\n", + "tipstaff\n", + "tipstaffs\n", + "tipstaves\n", + "tipster\n", + "tipsters\n", + "tipstock\n", + "tipstocks\n", + "tipsy\n", + "tiptoe\n", + "tiptoed\n", + "tiptoes\n", + "tiptoing\n", + "tiptop\n", + "tiptops\n", + "tirade\n", + "tirades\n", + "tire\n", + "tired\n", + "tireder\n", + "tiredest\n", + "tiredly\n", + "tireless\n", + "tirelessly\n", + "tirelessness\n", + "tires\n", + "tiresome\n", + "tiresomely\n", + "tiresomeness\n", + "tiresomenesses\n", + "tiring\n", + "tirl\n", + "tirled\n", + "tirling\n", + "tirls\n", + "tiro\n", + "tiros\n", + "tirrivee\n", + "tirrivees\n", + "tis\n", + "tisane\n", + "tisanes\n", + "tissual\n", + "tissue\n", + "tissued\n", + "tissues\n", + "tissuey\n", + "tissuing\n", + "tit\n", + "titan\n", + "titanate\n", + "titanates\n", + "titaness\n", + "titanesses\n", + "titania\n", + "titanias\n", + "titanic\n", + "titanism\n", + "titanisms\n", + "titanite\n", + "titanites\n", + "titanium\n", + "titaniums\n", + "titanous\n", + "titans\n", + "titbit\n", + "titbits\n", + "titer\n", + "titers\n", + "tithable\n", + "tithe\n", + "tithed\n", + "tither\n", + "tithers\n", + "tithes\n", + "tithing\n", + "tithings\n", + "tithonia\n", + "tithonias\n", + "titi\n", + "titian\n", + "titians\n", + "titillate\n", + "titillated\n", + "titillates\n", + "titillating\n", + "titillation\n", + "titillations\n", + "titis\n", + "titivate\n", + "titivated\n", + "titivates\n", + "titivating\n", + "titlark\n", + "titlarks\n", + "title\n", + "titled\n", + "titles\n", + "titling\n", + "titlist\n", + "titlists\n", + "titman\n", + "titmen\n", + "titmice\n", + "titmouse\n", + "titrable\n", + "titrant\n", + "titrants\n", + "titrate\n", + "titrated\n", + "titrates\n", + "titrating\n", + "titrator\n", + "titrators\n", + "titre\n", + "titres\n", + "tits\n", + "titter\n", + "tittered\n", + "titterer\n", + "titterers\n", + "tittering\n", + "titters\n", + "tittie\n", + "titties\n", + "tittle\n", + "tittles\n", + "tittup\n", + "tittuped\n", + "tittuping\n", + "tittupped\n", + "tittupping\n", + "tittuppy\n", + "tittups\n", + "titty\n", + "titular\n", + "titularies\n", + "titulars\n", + "titulary\n", + "tivy\n", + "tizzies\n", + "tizzy\n", + "tmeses\n", + "tmesis\n", + "to\n", + "toad\n", + "toadfish\n", + "toadfishes\n", + "toadflax\n", + "toadflaxes\n", + "toadied\n", + "toadies\n", + "toadish\n", + "toadless\n", + "toadlike\n", + "toads\n", + "toadstool\n", + "toadstools\n", + "toady\n", + "toadying\n", + "toadyish\n", + "toadyism\n", + "toadyisms\n", + "toast\n", + "toasted\n", + "toaster\n", + "toasters\n", + "toastier\n", + "toastiest\n", + "toasting\n", + "toasts\n", + "toasty\n", + "tobacco\n", + "tobaccoes\n", + "tobaccos\n", + "tobies\n", + "toboggan\n", + "tobogganed\n", + "tobogganing\n", + "toboggans\n", + "toby\n", + "tobys\n", + "toccata\n", + "toccatas\n", + "toccate\n", + "tocher\n", + "tochered\n", + "tochering\n", + "tochers\n", + "tocologies\n", + "tocology\n", + "tocsin\n", + "tocsins\n", + "tod\n", + "today\n", + "todays\n", + "toddies\n", + "toddle\n", + "toddled\n", + "toddler\n", + "toddlers\n", + "toddles\n", + "toddling\n", + "toddy\n", + "todies\n", + "tods\n", + "tody\n", + "toe\n", + "toecap\n", + "toecaps\n", + "toed\n", + "toehold\n", + "toeholds\n", + "toeing\n", + "toeless\n", + "toelike\n", + "toenail\n", + "toenailed\n", + "toenailing\n", + "toenails\n", + "toepiece\n", + "toepieces\n", + "toeplate\n", + "toeplates\n", + "toes\n", + "toeshoe\n", + "toeshoes\n", + "toff\n", + "toffee\n", + "toffees\n", + "toffies\n", + "toffs\n", + "toffy\n", + "toft\n", + "tofts\n", + "tofu\n", + "tofus\n", + "tog\n", + "toga\n", + "togae\n", + "togaed\n", + "togas\n", + "togate\n", + "togated\n", + "together\n", + "togetherness\n", + "togethernesses\n", + "togged\n", + "toggeries\n", + "toggery\n", + "togging\n", + "toggle\n", + "toggled\n", + "toggler\n", + "togglers\n", + "toggles\n", + "toggling\n", + "togs\n", + "togue\n", + "togues\n", + "toil\n", + "toile\n", + "toiled\n", + "toiler\n", + "toilers\n", + "toiles\n", + "toilet\n", + "toileted\n", + "toileting\n", + "toiletries\n", + "toiletry\n", + "toilets\n", + "toilette\n", + "toilettes\n", + "toilful\n", + "toiling\n", + "toils\n", + "toilsome\n", + "toilworn\n", + "toit\n", + "toited\n", + "toiting\n", + "toits\n", + "tokay\n", + "tokays\n", + "toke\n", + "token\n", + "tokened\n", + "tokening\n", + "tokenism\n", + "tokenisms\n", + "tokens\n", + "tokes\n", + "tokologies\n", + "tokology\n", + "tokonoma\n", + "tokonomas\n", + "tola\n", + "tolan\n", + "tolane\n", + "tolanes\n", + "tolans\n", + "tolas\n", + "tolbooth\n", + "tolbooths\n", + "told\n", + "tole\n", + "toled\n", + "toledo\n", + "toledos\n", + "tolerable\n", + "tolerably\n", + "tolerance\n", + "tolerances\n", + "tolerant\n", + "tolerate\n", + "tolerated\n", + "tolerates\n", + "tolerating\n", + "toleration\n", + "tolerations\n", + "toles\n", + "tolidin\n", + "tolidine\n", + "tolidines\n", + "tolidins\n", + "toling\n", + "toll\n", + "tollage\n", + "tollages\n", + "tollbar\n", + "tollbars\n", + "tollbooth\n", + "tollbooths\n", + "tolled\n", + "toller\n", + "tollers\n", + "tollgate\n", + "tollgates\n", + "tolling\n", + "tollman\n", + "tollmen\n", + "tolls\n", + "tollway\n", + "tollways\n", + "tolu\n", + "toluate\n", + "toluates\n", + "toluene\n", + "toluenes\n", + "toluic\n", + "toluid\n", + "toluide\n", + "toluides\n", + "toluidin\n", + "toluidins\n", + "toluids\n", + "toluol\n", + "toluole\n", + "toluoles\n", + "toluols\n", + "tolus\n", + "toluyl\n", + "toluyls\n", + "tolyl\n", + "tolyls\n", + "tom\n", + "tomahawk\n", + "tomahawked\n", + "tomahawking\n", + "tomahawks\n", + "tomalley\n", + "tomalleys\n", + "toman\n", + "tomans\n", + "tomato\n", + "tomatoes\n", + "tomb\n", + "tombac\n", + "tomback\n", + "tombacks\n", + "tombacs\n", + "tombak\n", + "tombaks\n", + "tombal\n", + "tombed\n", + "tombing\n", + "tombless\n", + "tomblike\n", + "tombolo\n", + "tombolos\n", + "tomboy\n", + "tomboys\n", + "tombs\n", + "tombstone\n", + "tombstones\n", + "tomcat\n", + "tomcats\n", + "tomcod\n", + "tomcods\n", + "tome\n", + "tomenta\n", + "tomentum\n", + "tomes\n", + "tomfool\n", + "tomfools\n", + "tommies\n", + "tommy\n", + "tommyrot\n", + "tommyrots\n", + "tomogram\n", + "tomograms\n", + "tomorrow\n", + "tomorrows\n", + "tompion\n", + "tompions\n", + "toms\n", + "tomtit\n", + "tomtits\n", + "ton\n", + "tonal\n", + "tonalities\n", + "tonality\n", + "tonally\n", + "tondi\n", + "tondo\n", + "tone\n", + "toned\n", + "toneless\n", + "toneme\n", + "tonemes\n", + "tonemic\n", + "toner\n", + "toners\n", + "tones\n", + "tonetic\n", + "tonetics\n", + "tonette\n", + "tonettes\n", + "tong\n", + "tonga\n", + "tongas\n", + "tonged\n", + "tonger\n", + "tongers\n", + "tonging\n", + "tongman\n", + "tongmen\n", + "tongs\n", + "tongue\n", + "tongued\n", + "tongueless\n", + "tongues\n", + "tonguing\n", + "tonguings\n", + "tonic\n", + "tonicities\n", + "tonicity\n", + "tonics\n", + "tonier\n", + "toniest\n", + "tonight\n", + "tonights\n", + "toning\n", + "tonish\n", + "tonishly\n", + "tonka\n", + "tonlet\n", + "tonlets\n", + "tonnage\n", + "tonnages\n", + "tonne\n", + "tonneau\n", + "tonneaus\n", + "tonneaux\n", + "tonner\n", + "tonners\n", + "tonnes\n", + "tonnish\n", + "tons\n", + "tonsil\n", + "tonsilar\n", + "tonsillectomies\n", + "tonsillectomy\n", + "tonsillitis\n", + "tonsillitises\n", + "tonsils\n", + "tonsure\n", + "tonsured\n", + "tonsures\n", + "tonsuring\n", + "tontine\n", + "tontines\n", + "tonus\n", + "tonuses\n", + "tony\n", + "too\n", + "took\n", + "tool\n", + "toolbox\n", + "toolboxes\n", + "tooled\n", + "tooler\n", + "toolers\n", + "toolhead\n", + "toolheads\n", + "tooling\n", + "toolings\n", + "toolless\n", + "toolroom\n", + "toolrooms\n", + "tools\n", + "toolshed\n", + "toolsheds\n", + "toom\n", + "toon\n", + "toons\n", + "toot\n", + "tooted\n", + "tooter\n", + "tooters\n", + "tooth\n", + "toothache\n", + "toothaches\n", + "toothbrush\n", + "toothbrushes\n", + "toothed\n", + "toothier\n", + "toothiest\n", + "toothily\n", + "toothing\n", + "toothless\n", + "toothpaste\n", + "toothpastes\n", + "toothpick\n", + "toothpicks\n", + "tooths\n", + "toothsome\n", + "toothy\n", + "tooting\n", + "tootle\n", + "tootled\n", + "tootler\n", + "tootlers\n", + "tootles\n", + "tootling\n", + "toots\n", + "tootses\n", + "tootsie\n", + "tootsies\n", + "tootsy\n", + "top\n", + "topaz\n", + "topazes\n", + "topazine\n", + "topcoat\n", + "topcoats\n", + "topcross\n", + "topcrosses\n", + "tope\n", + "toped\n", + "topee\n", + "topees\n", + "toper\n", + "topers\n", + "topes\n", + "topful\n", + "topfull\n", + "toph\n", + "tophe\n", + "tophes\n", + "tophi\n", + "tophs\n", + "tophus\n", + "topi\n", + "topiaries\n", + "topiary\n", + "topic\n", + "topical\n", + "topically\n", + "topics\n", + "toping\n", + "topis\n", + "topkick\n", + "topkicks\n", + "topknot\n", + "topknots\n", + "topless\n", + "toploftier\n", + "toploftiest\n", + "toplofty\n", + "topmast\n", + "topmasts\n", + "topmost\n", + "topnotch\n", + "topographer\n", + "topographers\n", + "topographic\n", + "topographical\n", + "topographies\n", + "topography\n", + "topoi\n", + "topologic\n", + "topologies\n", + "topology\n", + "toponym\n", + "toponymies\n", + "toponyms\n", + "toponymy\n", + "topos\n", + "topotype\n", + "topotypes\n", + "topped\n", + "topper\n", + "toppers\n", + "topping\n", + "toppings\n", + "topple\n", + "toppled\n", + "topples\n", + "toppling\n", + "tops\n", + "topsail\n", + "topsails\n", + "topside\n", + "topsides\n", + "topsoil\n", + "topsoiled\n", + "topsoiling\n", + "topsoils\n", + "topstone\n", + "topstones\n", + "topwork\n", + "topworked\n", + "topworking\n", + "topworks\n", + "toque\n", + "toques\n", + "toquet\n", + "toquets\n", + "tor\n", + "tora\n", + "torah\n", + "torahs\n", + "toras\n", + "torc\n", + "torch\n", + "torchbearer\n", + "torchbearers\n", + "torched\n", + "torchere\n", + "torcheres\n", + "torches\n", + "torchier\n", + "torchiers\n", + "torching\n", + "torchlight\n", + "torchlights\n", + "torchon\n", + "torchons\n", + "torcs\n", + "tore\n", + "toreador\n", + "toreadors\n", + "torero\n", + "toreros\n", + "tores\n", + "toreutic\n", + "tori\n", + "toric\n", + "tories\n", + "torii\n", + "torment\n", + "tormented\n", + "tormenting\n", + "tormentor\n", + "tormentors\n", + "torments\n", + "torn\n", + "tornadic\n", + "tornado\n", + "tornadoes\n", + "tornados\n", + "tornillo\n", + "tornillos\n", + "toro\n", + "toroid\n", + "toroidal\n", + "toroids\n", + "toros\n", + "torose\n", + "torosities\n", + "torosity\n", + "torous\n", + "torpedo\n", + "torpedoed\n", + "torpedoes\n", + "torpedoing\n", + "torpedos\n", + "torpid\n", + "torpidities\n", + "torpidity\n", + "torpidly\n", + "torpids\n", + "torpor\n", + "torpors\n", + "torquate\n", + "torque\n", + "torqued\n", + "torquer\n", + "torquers\n", + "torques\n", + "torqueses\n", + "torquing\n", + "torr\n", + "torrefied\n", + "torrefies\n", + "torrefy\n", + "torrefying\n", + "torrent\n", + "torrential\n", + "torrents\n", + "torrid\n", + "torrider\n", + "torridest\n", + "torridly\n", + "torrified\n", + "torrifies\n", + "torrify\n", + "torrifying\n", + "tors\n", + "torsade\n", + "torsades\n", + "torse\n", + "torses\n", + "torsi\n", + "torsion\n", + "torsional\n", + "torsionally\n", + "torsions\n", + "torsk\n", + "torsks\n", + "torso\n", + "torsos\n", + "tort\n", + "torte\n", + "torten\n", + "tortes\n", + "tortile\n", + "tortilla\n", + "tortillas\n", + "tortious\n", + "tortoise\n", + "tortoises\n", + "tortoni\n", + "tortonis\n", + "tortrix\n", + "tortrixes\n", + "torts\n", + "tortuous\n", + "torture\n", + "tortured\n", + "torturer\n", + "torturers\n", + "tortures\n", + "torturing\n", + "torula\n", + "torulae\n", + "torulas\n", + "torus\n", + "tory\n", + "tosh\n", + "toshes\n", + "toss\n", + "tossed\n", + "tosser\n", + "tossers\n", + "tosses\n", + "tossing\n", + "tosspot\n", + "tosspots\n", + "tossup\n", + "tossups\n", + "tost\n", + "tot\n", + "totable\n", + "total\n", + "totaled\n", + "totaling\n", + "totalise\n", + "totalised\n", + "totalises\n", + "totalising\n", + "totalism\n", + "totalisms\n", + "totalitarian\n", + "totalitarianism\n", + "totalitarianisms\n", + "totalitarians\n", + "totalities\n", + "totality\n", + "totalize\n", + "totalized\n", + "totalizes\n", + "totalizing\n", + "totalled\n", + "totalling\n", + "totally\n", + "totals\n", + "tote\n", + "toted\n", + "totem\n", + "totemic\n", + "totemism\n", + "totemisms\n", + "totemist\n", + "totemists\n", + "totemite\n", + "totemites\n", + "totems\n", + "toter\n", + "toters\n", + "totes\n", + "tother\n", + "toting\n", + "tots\n", + "totted\n", + "totter\n", + "tottered\n", + "totterer\n", + "totterers\n", + "tottering\n", + "totters\n", + "tottery\n", + "totting\n", + "totty\n", + "toucan\n", + "toucans\n", + "touch\n", + "touchback\n", + "touchbacks\n", + "touchdown\n", + "touchdowns\n", + "touche\n", + "touched\n", + "toucher\n", + "touchers\n", + "touches\n", + "touchier\n", + "touchiest\n", + "touchily\n", + "touching\n", + "touchstone\n", + "touchstones\n", + "touchup\n", + "touchups\n", + "touchy\n", + "tough\n", + "toughen\n", + "toughened\n", + "toughening\n", + "toughens\n", + "tougher\n", + "toughest\n", + "toughie\n", + "toughies\n", + "toughish\n", + "toughly\n", + "toughness\n", + "toughnesses\n", + "toughs\n", + "toughy\n", + "toupee\n", + "toupees\n", + "tour\n", + "touraco\n", + "touracos\n", + "toured\n", + "tourer\n", + "tourers\n", + "touring\n", + "tourings\n", + "tourism\n", + "tourisms\n", + "tourist\n", + "tourists\n", + "touristy\n", + "tournament\n", + "tournaments\n", + "tourney\n", + "tourneyed\n", + "tourneying\n", + "tourneys\n", + "tourniquet\n", + "tourniquets\n", + "tours\n", + "touse\n", + "toused\n", + "touses\n", + "tousing\n", + "tousle\n", + "tousled\n", + "tousles\n", + "tousling\n", + "tout\n", + "touted\n", + "touter\n", + "touters\n", + "touting\n", + "touts\n", + "touzle\n", + "touzled\n", + "touzles\n", + "touzling\n", + "tovarich\n", + "tovariches\n", + "tovarish\n", + "tovarishes\n", + "tow\n", + "towage\n", + "towages\n", + "toward\n", + "towardly\n", + "towards\n", + "towaway\n", + "towaways\n", + "towboat\n", + "towboats\n", + "towed\n", + "towel\n", + "toweled\n", + "toweling\n", + "towelings\n", + "towelled\n", + "towelling\n", + "towels\n", + "tower\n", + "towered\n", + "towerier\n", + "toweriest\n", + "towering\n", + "towers\n", + "towery\n", + "towhead\n", + "towheaded\n", + "towheads\n", + "towhee\n", + "towhees\n", + "towie\n", + "towies\n", + "towing\n", + "towline\n", + "towlines\n", + "towmond\n", + "towmonds\n", + "towmont\n", + "towmonts\n", + "town\n", + "townee\n", + "townees\n", + "townfolk\n", + "townie\n", + "townies\n", + "townish\n", + "townless\n", + "townlet\n", + "townlets\n", + "towns\n", + "township\n", + "townships\n", + "townsman\n", + "townsmen\n", + "townspeople\n", + "townwear\n", + "townwears\n", + "towny\n", + "towpath\n", + "towpaths\n", + "towrope\n", + "towropes\n", + "tows\n", + "towy\n", + "toxaemia\n", + "toxaemias\n", + "toxaemic\n", + "toxemia\n", + "toxemias\n", + "toxemic\n", + "toxic\n", + "toxical\n", + "toxicant\n", + "toxicants\n", + "toxicities\n", + "toxicity\n", + "toxin\n", + "toxine\n", + "toxines\n", + "toxins\n", + "toxoid\n", + "toxoids\n", + "toy\n", + "toyed\n", + "toyer\n", + "toyers\n", + "toying\n", + "toyish\n", + "toyless\n", + "toylike\n", + "toyo\n", + "toyon\n", + "toyons\n", + "toyos\n", + "toys\n", + "trabeate\n", + "trace\n", + "traceable\n", + "traced\n", + "tracer\n", + "traceries\n", + "tracers\n", + "tracery\n", + "traces\n", + "trachea\n", + "tracheae\n", + "tracheal\n", + "tracheas\n", + "tracheid\n", + "tracheids\n", + "tracherous\n", + "tracherously\n", + "trachle\n", + "trachled\n", + "trachles\n", + "trachling\n", + "trachoma\n", + "trachomas\n", + "trachyte\n", + "trachytes\n", + "tracing\n", + "tracings\n", + "track\n", + "trackage\n", + "trackages\n", + "tracked\n", + "tracker\n", + "trackers\n", + "tracking\n", + "trackings\n", + "trackman\n", + "trackmen\n", + "tracks\n", + "tract\n", + "tractable\n", + "tractate\n", + "tractates\n", + "tractile\n", + "traction\n", + "tractional\n", + "tractions\n", + "tractive\n", + "tractor\n", + "tractors\n", + "tracts\n", + "trad\n", + "tradable\n", + "trade\n", + "traded\n", + "trademark\n", + "trademarked\n", + "trademarking\n", + "trademarks\n", + "trader\n", + "traders\n", + "trades\n", + "tradesman\n", + "tradesmen\n", + "tradespeople\n", + "trading\n", + "tradition\n", + "traditional\n", + "traditionally\n", + "traditions\n", + "traditor\n", + "traditores\n", + "traduce\n", + "traduced\n", + "traducer\n", + "traducers\n", + "traduces\n", + "traducing\n", + "traffic\n", + "trafficked\n", + "trafficker\n", + "traffickers\n", + "trafficking\n", + "traffics\n", + "tragedies\n", + "tragedy\n", + "tragi\n", + "tragic\n", + "tragical\n", + "tragically\n", + "tragopan\n", + "tragopans\n", + "tragus\n", + "traik\n", + "traiked\n", + "traiking\n", + "traiks\n", + "trail\n", + "trailed\n", + "trailer\n", + "trailered\n", + "trailering\n", + "trailers\n", + "trailing\n", + "trails\n", + "train\n", + "trained\n", + "trainee\n", + "trainees\n", + "trainer\n", + "trainers\n", + "trainful\n", + "trainfuls\n", + "training\n", + "trainings\n", + "trainload\n", + "trainloads\n", + "trainman\n", + "trainmen\n", + "trains\n", + "trainway\n", + "trainways\n", + "traipse\n", + "traipsed\n", + "traipses\n", + "traipsing\n", + "trait\n", + "traitor\n", + "traitors\n", + "traits\n", + "traject\n", + "trajected\n", + "trajecting\n", + "trajects\n", + "tram\n", + "tramcar\n", + "tramcars\n", + "tramel\n", + "trameled\n", + "trameling\n", + "tramell\n", + "tramelled\n", + "tramelling\n", + "tramells\n", + "tramels\n", + "tramless\n", + "tramline\n", + "trammed\n", + "trammel\n", + "trammeled\n", + "trammeling\n", + "trammelled\n", + "trammelling\n", + "trammels\n", + "tramming\n", + "tramp\n", + "tramped\n", + "tramper\n", + "trampers\n", + "tramping\n", + "trampish\n", + "trample\n", + "trampled\n", + "trampler\n", + "tramplers\n", + "tramples\n", + "trampling\n", + "trampoline\n", + "trampoliner\n", + "trampoliners\n", + "trampolines\n", + "trampolinist\n", + "trampolinists\n", + "tramps\n", + "tramroad\n", + "tramroads\n", + "trams\n", + "tramway\n", + "tramways\n", + "trance\n", + "tranced\n", + "trances\n", + "trancing\n", + "trangam\n", + "trangams\n", + "tranquil\n", + "tranquiler\n", + "tranquilest\n", + "tranquilities\n", + "tranquility\n", + "tranquilize\n", + "tranquilized\n", + "tranquilizer\n", + "tranquilizers\n", + "tranquilizes\n", + "tranquilizing\n", + "tranquiller\n", + "tranquillest\n", + "tranquillities\n", + "tranquillity\n", + "tranquillize\n", + "tranquillized\n", + "tranquillizer\n", + "tranquillizers\n", + "tranquillizes\n", + "tranquillizing\n", + "tranquilly\n", + "trans\n", + "transact\n", + "transacted\n", + "transacting\n", + "transaction\n", + "transactions\n", + "transacts\n", + "transcend\n", + "transcended\n", + "transcendent\n", + "transcendental\n", + "transcending\n", + "transcends\n", + "transcribe\n", + "transcribes\n", + "transcript\n", + "transcription\n", + "transcriptions\n", + "transcripts\n", + "transect\n", + "transected\n", + "transecting\n", + "transects\n", + "transept\n", + "transepts\n", + "transfer\n", + "transferability\n", + "transferable\n", + "transferal\n", + "transferals\n", + "transference\n", + "transferences\n", + "transferred\n", + "transferring\n", + "transfers\n", + "transfiguration\n", + "transfigurations\n", + "transfigure\n", + "transfigured\n", + "transfigures\n", + "transfiguring\n", + "transfix\n", + "transfixed\n", + "transfixes\n", + "transfixing\n", + "transfixt\n", + "transform\n", + "transformation\n", + "transformations\n", + "transformed\n", + "transformer\n", + "transformers\n", + "transforming\n", + "transforms\n", + "transfuse\n", + "transfused\n", + "transfuses\n", + "transfusing\n", + "transfusion\n", + "transfusions\n", + "transgress\n", + "transgressed\n", + "transgresses\n", + "transgressing\n", + "transgression\n", + "transgressions\n", + "transgressor\n", + "transgressors\n", + "tranship\n", + "transhipped\n", + "transhipping\n", + "tranships\n", + "transistor\n", + "transistorize\n", + "transistorized\n", + "transistorizes\n", + "transistorizing\n", + "transistors\n", + "transit\n", + "transited\n", + "transiting\n", + "transition\n", + "transitional\n", + "transitions\n", + "transitory\n", + "transits\n", + "translatable\n", + "translate\n", + "translated\n", + "translates\n", + "translating\n", + "translation\n", + "translations\n", + "translator\n", + "translators\n", + "translucence\n", + "translucences\n", + "translucencies\n", + "translucency\n", + "translucent\n", + "translucently\n", + "transmissible\n", + "transmission\n", + "transmissions\n", + "transmit\n", + "transmits\n", + "transmittable\n", + "transmittal\n", + "transmittals\n", + "transmitted\n", + "transmitter\n", + "transmitters\n", + "transmitting\n", + "transom\n", + "transoms\n", + "transparencies\n", + "transparency\n", + "transparent\n", + "transparently\n", + "transpiration\n", + "transpirations\n", + "transpire\n", + "transpired\n", + "transpires\n", + "transpiring\n", + "transplant\n", + "transplantation\n", + "transplantations\n", + "transplanted\n", + "transplanting\n", + "transplants\n", + "transport\n", + "transportation\n", + "transported\n", + "transporter\n", + "transporters\n", + "transporting\n", + "transports\n", + "transpose\n", + "transposed\n", + "transposes\n", + "transposing\n", + "transposition\n", + "transpositions\n", + "transship\n", + "transshiped\n", + "transshiping\n", + "transshipment\n", + "transshipments\n", + "transships\n", + "transude\n", + "transuded\n", + "transudes\n", + "transuding\n", + "transverse\n", + "transversely\n", + "transverses\n", + "trap\n", + "trapan\n", + "trapanned\n", + "trapanning\n", + "trapans\n", + "trapball\n", + "trapballs\n", + "trapdoor\n", + "trapdoors\n", + "trapes\n", + "trapesed\n", + "trapeses\n", + "trapesing\n", + "trapeze\n", + "trapezes\n", + "trapezia\n", + "trapezoid\n", + "trapezoidal\n", + "trapezoids\n", + "traplike\n", + "trapnest\n", + "trapnested\n", + "trapnesting\n", + "trapnests\n", + "trappean\n", + "trapped\n", + "trapper\n", + "trappers\n", + "trapping\n", + "trappings\n", + "trappose\n", + "trappous\n", + "traprock\n", + "traprocks\n", + "traps\n", + "trapt\n", + "trapunto\n", + "trapuntos\n", + "trash\n", + "trashed\n", + "trashes\n", + "trashier\n", + "trashiest\n", + "trashily\n", + "trashing\n", + "trashman\n", + "trashmen\n", + "trashy\n", + "trass\n", + "trasses\n", + "trauchle\n", + "trauchled\n", + "trauchles\n", + "trauchling\n", + "trauma\n", + "traumas\n", + "traumata\n", + "traumatic\n", + "travail\n", + "travailed\n", + "travailing\n", + "travails\n", + "trave\n", + "travel\n", + "traveled\n", + "traveler\n", + "travelers\n", + "traveling\n", + "travelled\n", + "traveller\n", + "travellers\n", + "travelling\n", + "travelog\n", + "travelogs\n", + "travels\n", + "traverse\n", + "traversed\n", + "traverses\n", + "traversing\n", + "traves\n", + "travestied\n", + "travesties\n", + "travesty\n", + "travestying\n", + "travois\n", + "travoise\n", + "travoises\n", + "trawl\n", + "trawled\n", + "trawler\n", + "trawlers\n", + "trawley\n", + "trawleys\n", + "trawling\n", + "trawls\n", + "tray\n", + "trayful\n", + "trayfuls\n", + "trays\n", + "treacle\n", + "treacles\n", + "treacly\n", + "tread\n", + "treaded\n", + "treader\n", + "treaders\n", + "treading\n", + "treadle\n", + "treadled\n", + "treadler\n", + "treadlers\n", + "treadles\n", + "treadling\n", + "treadmill\n", + "treadmills\n", + "treads\n", + "treason\n", + "treasonable\n", + "treasonous\n", + "treasons\n", + "treasure\n", + "treasured\n", + "treasurer\n", + "treasurers\n", + "treasures\n", + "treasuries\n", + "treasuring\n", + "treasury\n", + "treat\n", + "treated\n", + "treater\n", + "treaters\n", + "treaties\n", + "treating\n", + "treatise\n", + "treatises\n", + "treatment\n", + "treatments\n", + "treats\n", + "treaty\n", + "treble\n", + "trebled\n", + "trebles\n", + "trebling\n", + "trebly\n", + "trecento\n", + "trecentos\n", + "treddle\n", + "treddled\n", + "treddles\n", + "treddling\n", + "tree\n", + "treed\n", + "treeing\n", + "treeless\n", + "treelike\n", + "treenail\n", + "treenails\n", + "trees\n", + "treetop\n", + "treetops\n", + "tref\n", + "trefah\n", + "trefoil\n", + "trefoils\n", + "trehala\n", + "trehalas\n", + "trek\n", + "trekked\n", + "trekker\n", + "trekkers\n", + "trekking\n", + "treks\n", + "trellis\n", + "trellised\n", + "trellises\n", + "trellising\n", + "tremble\n", + "trembled\n", + "trembler\n", + "tremblers\n", + "trembles\n", + "tremblier\n", + "trembliest\n", + "trembling\n", + "trembly\n", + "tremendous\n", + "tremendously\n", + "tremolo\n", + "tremolos\n", + "tremor\n", + "tremors\n", + "tremulous\n", + "tremulously\n", + "trenail\n", + "trenails\n", + "trench\n", + "trenchant\n", + "trenched\n", + "trencher\n", + "trenchers\n", + "trenches\n", + "trenching\n", + "trend\n", + "trended\n", + "trendier\n", + "trendiest\n", + "trendily\n", + "trending\n", + "trends\n", + "trendy\n", + "trepan\n", + "trepang\n", + "trepangs\n", + "trepanned\n", + "trepanning\n", + "trepans\n", + "trephine\n", + "trephined\n", + "trephines\n", + "trephining\n", + "trepid\n", + "trepidation\n", + "trepidations\n", + "trespass\n", + "trespassed\n", + "trespasser\n", + "trespassers\n", + "trespasses\n", + "trespassing\n", + "tress\n", + "tressed\n", + "tressel\n", + "tressels\n", + "tresses\n", + "tressier\n", + "tressiest\n", + "tressour\n", + "tressours\n", + "tressure\n", + "tressures\n", + "tressy\n", + "trestle\n", + "trestles\n", + "tret\n", + "trets\n", + "trevet\n", + "trevets\n", + "trews\n", + "trey\n", + "treys\n", + "triable\n", + "triacid\n", + "triacids\n", + "triad\n", + "triadic\n", + "triadics\n", + "triadism\n", + "triadisms\n", + "triads\n", + "triage\n", + "triages\n", + "trial\n", + "trials\n", + "triangle\n", + "triangles\n", + "triangular\n", + "triangularly\n", + "triarchies\n", + "triarchy\n", + "triaxial\n", + "triazin\n", + "triazine\n", + "triazines\n", + "triazins\n", + "triazole\n", + "triazoles\n", + "tribade\n", + "tribades\n", + "tribadic\n", + "tribal\n", + "tribally\n", + "tribasic\n", + "tribe\n", + "tribes\n", + "tribesman\n", + "tribesmen\n", + "tribrach\n", + "tribrachs\n", + "tribulation\n", + "tribulations\n", + "tribunal\n", + "tribunals\n", + "tribune\n", + "tribunes\n", + "tributaries\n", + "tributary\n", + "tribute\n", + "tributes\n", + "trice\n", + "triced\n", + "triceps\n", + "tricepses\n", + "trices\n", + "trichina\n", + "trichinae\n", + "trichinas\n", + "trichite\n", + "trichites\n", + "trichoid\n", + "trichome\n", + "trichomes\n", + "tricing\n", + "trick\n", + "tricked\n", + "tricker\n", + "trickeries\n", + "trickers\n", + "trickery\n", + "trickie\n", + "trickier\n", + "trickiest\n", + "trickily\n", + "tricking\n", + "trickish\n", + "trickle\n", + "trickled\n", + "trickles\n", + "tricklier\n", + "trickliest\n", + "trickling\n", + "trickly\n", + "tricks\n", + "tricksier\n", + "tricksiest\n", + "trickster\n", + "tricksters\n", + "tricksy\n", + "tricky\n", + "triclad\n", + "triclads\n", + "tricolor\n", + "tricolors\n", + "tricorn\n", + "tricorne\n", + "tricornes\n", + "tricorns\n", + "tricot\n", + "tricots\n", + "trictrac\n", + "trictracs\n", + "tricycle\n", + "tricycles\n", + "trident\n", + "tridents\n", + "triduum\n", + "triduums\n", + "tried\n", + "triene\n", + "trienes\n", + "triennia\n", + "triennial\n", + "triennials\n", + "triens\n", + "trientes\n", + "trier\n", + "triers\n", + "tries\n", + "triethyl\n", + "trifid\n", + "trifle\n", + "trifled\n", + "trifler\n", + "triflers\n", + "trifles\n", + "trifling\n", + "triflings\n", + "trifocal\n", + "trifocals\n", + "trifold\n", + "triforia\n", + "triform\n", + "trig\n", + "trigged\n", + "trigger\n", + "triggered\n", + "triggering\n", + "triggers\n", + "triggest\n", + "trigging\n", + "trigly\n", + "triglyph\n", + "triglyphs\n", + "trigness\n", + "trignesses\n", + "trigo\n", + "trigon\n", + "trigonal\n", + "trigonometric\n", + "trigonometrical\n", + "trigonometries\n", + "trigonometry\n", + "trigons\n", + "trigos\n", + "trigraph\n", + "trigraphs\n", + "trigs\n", + "trihedra\n", + "trijet\n", + "trijets\n", + "trilbies\n", + "trilby\n", + "trill\n", + "trilled\n", + "triller\n", + "trillers\n", + "trilling\n", + "trillion\n", + "trillions\n", + "trillionth\n", + "trillionths\n", + "trillium\n", + "trilliums\n", + "trills\n", + "trilobal\n", + "trilobed\n", + "trilogies\n", + "trilogy\n", + "trim\n", + "trimaran\n", + "trimarans\n", + "trimer\n", + "trimers\n", + "trimester\n", + "trimeter\n", + "trimeters\n", + "trimly\n", + "trimmed\n", + "trimmer\n", + "trimmers\n", + "trimmest\n", + "trimming\n", + "trimmings\n", + "trimness\n", + "trimnesses\n", + "trimorph\n", + "trimorphs\n", + "trimotor\n", + "trimotors\n", + "trims\n", + "trinal\n", + "trinary\n", + "trindle\n", + "trindled\n", + "trindles\n", + "trindling\n", + "trine\n", + "trined\n", + "trines\n", + "trining\n", + "trinities\n", + "trinity\n", + "trinket\n", + "trinketed\n", + "trinketing\n", + "trinkets\n", + "trinkums\n", + "trinodal\n", + "trio\n", + "triode\n", + "triodes\n", + "triol\n", + "triolet\n", + "triolets\n", + "triols\n", + "trios\n", + "triose\n", + "trioses\n", + "trioxid\n", + "trioxide\n", + "trioxides\n", + "trioxids\n", + "trip\n", + "tripack\n", + "tripacks\n", + "tripart\n", + "tripartite\n", + "tripe\n", + "tripedal\n", + "tripes\n", + "triphase\n", + "triplane\n", + "triplanes\n", + "triple\n", + "tripled\n", + "triples\n", + "triplet\n", + "triplets\n", + "triplex\n", + "triplexes\n", + "triplicate\n", + "triplicates\n", + "tripling\n", + "triplite\n", + "triplites\n", + "triploid\n", + "triploids\n", + "triply\n", + "tripod\n", + "tripodal\n", + "tripodic\n", + "tripodies\n", + "tripody\n", + "tripoli\n", + "tripolis\n", + "tripos\n", + "triposes\n", + "tripped\n", + "tripper\n", + "trippers\n", + "trippet\n", + "trippets\n", + "tripping\n", + "trippings\n", + "trips\n", + "triptane\n", + "triptanes\n", + "triptyca\n", + "triptycas\n", + "triptych\n", + "triptychs\n", + "trireme\n", + "triremes\n", + "triscele\n", + "trisceles\n", + "trisect\n", + "trisected\n", + "trisecting\n", + "trisection\n", + "trisections\n", + "trisects\n", + "triseme\n", + "trisemes\n", + "trisemic\n", + "triskele\n", + "triskeles\n", + "trismic\n", + "trismus\n", + "trismuses\n", + "trisome\n", + "trisomes\n", + "trisomic\n", + "trisomics\n", + "trisomies\n", + "trisomy\n", + "tristate\n", + "triste\n", + "tristeza\n", + "tristezas\n", + "tristful\n", + "tristich\n", + "tristichs\n", + "trite\n", + "tritely\n", + "triter\n", + "tritest\n", + "trithing\n", + "trithings\n", + "triticum\n", + "triticums\n", + "tritium\n", + "tritiums\n", + "tritoma\n", + "tritomas\n", + "triton\n", + "tritone\n", + "tritones\n", + "tritons\n", + "triumph\n", + "triumphal\n", + "triumphant\n", + "triumphantly\n", + "triumphed\n", + "triumphing\n", + "triumphs\n", + "triumvir\n", + "triumvirate\n", + "triumvirates\n", + "triumviri\n", + "triumvirs\n", + "triune\n", + "triunes\n", + "triunities\n", + "triunity\n", + "trivalve\n", + "trivalves\n", + "trivet\n", + "trivets\n", + "trivia\n", + "trivial\n", + "trivialities\n", + "triviality\n", + "trivium\n", + "troak\n", + "troaked\n", + "troaking\n", + "troaks\n", + "trocar\n", + "trocars\n", + "trochaic\n", + "trochaics\n", + "trochal\n", + "trochar\n", + "trochars\n", + "troche\n", + "trochee\n", + "trochees\n", + "troches\n", + "trochil\n", + "trochili\n", + "trochils\n", + "trochlea\n", + "trochleae\n", + "trochleas\n", + "trochoid\n", + "trochoids\n", + "trock\n", + "trocked\n", + "trocking\n", + "trocks\n", + "trod\n", + "trodden\n", + "trode\n", + "troffer\n", + "troffers\n", + "trogon\n", + "trogons\n", + "troika\n", + "troikas\n", + "troilite\n", + "troilites\n", + "troilus\n", + "troiluses\n", + "trois\n", + "troke\n", + "troked\n", + "trokes\n", + "troking\n", + "troland\n", + "trolands\n", + "troll\n", + "trolled\n", + "troller\n", + "trollers\n", + "trolley\n", + "trolleyed\n", + "trolleying\n", + "trolleys\n", + "trollied\n", + "trollies\n", + "trolling\n", + "trollings\n", + "trollop\n", + "trollops\n", + "trollopy\n", + "trolls\n", + "trolly\n", + "trollying\n", + "trombone\n", + "trombones\n", + "trombonist\n", + "trombonists\n", + "trommel\n", + "trommels\n", + "tromp\n", + "trompe\n", + "tromped\n", + "trompes\n", + "tromping\n", + "tromps\n", + "trona\n", + "tronas\n", + "trone\n", + "trones\n", + "troop\n", + "trooped\n", + "trooper\n", + "troopers\n", + "troopial\n", + "troopials\n", + "trooping\n", + "troops\n", + "trooz\n", + "trop\n", + "trope\n", + "tropes\n", + "trophic\n", + "trophied\n", + "trophies\n", + "trophy\n", + "trophying\n", + "tropic\n", + "tropical\n", + "tropics\n", + "tropin\n", + "tropine\n", + "tropines\n", + "tropins\n", + "tropism\n", + "tropisms\n", + "trot\n", + "troth\n", + "trothed\n", + "trothing\n", + "troths\n", + "trotline\n", + "trotlines\n", + "trots\n", + "trotted\n", + "trotter\n", + "trotters\n", + "trotting\n", + "trotyl\n", + "trotyls\n", + "troubadour\n", + "troubadours\n", + "trouble\n", + "troubled\n", + "troublemaker\n", + "troublemakers\n", + "troubler\n", + "troublers\n", + "troubles\n", + "troubleshoot\n", + "troubleshooted\n", + "troubleshooting\n", + "troubleshoots\n", + "troublesome\n", + "troublesomely\n", + "troubling\n", + "trough\n", + "troughs\n", + "trounce\n", + "trounced\n", + "trounces\n", + "trouncing\n", + "troupe\n", + "trouped\n", + "trouper\n", + "troupers\n", + "troupes\n", + "troupial\n", + "troupials\n", + "trouping\n", + "trouser\n", + "trousers\n", + "trousseau\n", + "trousseaus\n", + "trousseaux\n", + "trout\n", + "troutier\n", + "troutiest\n", + "trouts\n", + "trouty\n", + "trouvere\n", + "trouveres\n", + "trouveur\n", + "trouveurs\n", + "trove\n", + "trover\n", + "trovers\n", + "troves\n", + "trow\n", + "trowed\n", + "trowel\n", + "troweled\n", + "troweler\n", + "trowelers\n", + "troweling\n", + "trowelled\n", + "trowelling\n", + "trowels\n", + "trowing\n", + "trows\n", + "trowsers\n", + "trowth\n", + "trowths\n", + "troy\n", + "troys\n", + "truancies\n", + "truancy\n", + "truant\n", + "truanted\n", + "truanting\n", + "truantries\n", + "truantry\n", + "truants\n", + "truce\n", + "truced\n", + "truces\n", + "trucing\n", + "truck\n", + "truckage\n", + "truckages\n", + "trucked\n", + "trucker\n", + "truckers\n", + "trucking\n", + "truckings\n", + "truckle\n", + "truckled\n", + "truckler\n", + "trucklers\n", + "truckles\n", + "truckling\n", + "truckload\n", + "truckloads\n", + "truckman\n", + "truckmen\n", + "trucks\n", + "truculencies\n", + "truculency\n", + "truculent\n", + "truculently\n", + "trudge\n", + "trudged\n", + "trudgen\n", + "trudgens\n", + "trudgeon\n", + "trudgeons\n", + "trudger\n", + "trudgers\n", + "trudges\n", + "trudging\n", + "true\n", + "trueblue\n", + "trueblues\n", + "trueborn\n", + "trued\n", + "trueing\n", + "truelove\n", + "trueloves\n", + "trueness\n", + "truenesses\n", + "truer\n", + "trues\n", + "truest\n", + "truffe\n", + "truffes\n", + "truffle\n", + "truffled\n", + "truffles\n", + "truing\n", + "truism\n", + "truisms\n", + "truistic\n", + "trull\n", + "trulls\n", + "truly\n", + "trumeau\n", + "trumeaux\n", + "trump\n", + "trumped\n", + "trumperies\n", + "trumpery\n", + "trumpet\n", + "trumpeted\n", + "trumpeter\n", + "trumpeters\n", + "trumpeting\n", + "trumpets\n", + "trumping\n", + "trumps\n", + "truncate\n", + "truncated\n", + "truncates\n", + "truncating\n", + "truncation\n", + "truncations\n", + "trundle\n", + "trundled\n", + "trundler\n", + "trundlers\n", + "trundles\n", + "trundling\n", + "trunk\n", + "trunked\n", + "trunks\n", + "trunnel\n", + "trunnels\n", + "trunnion\n", + "trunnions\n", + "truss\n", + "trussed\n", + "trusser\n", + "trussers\n", + "trusses\n", + "trussing\n", + "trussings\n", + "trust\n", + "trusted\n", + "trustee\n", + "trusteed\n", + "trusteeing\n", + "trustees\n", + "trusteeship\n", + "trusteeships\n", + "truster\n", + "trusters\n", + "trustful\n", + "trustfully\n", + "trustier\n", + "trusties\n", + "trustiest\n", + "trustily\n", + "trusting\n", + "trusts\n", + "trustworthiness\n", + "trustworthinesses\n", + "trustworthy\n", + "trusty\n", + "truth\n", + "truthful\n", + "truthfully\n", + "truthfulness\n", + "truthfulnesses\n", + "truths\n", + "try\n", + "trying\n", + "tryingly\n", + "tryma\n", + "trymata\n", + "tryout\n", + "tryouts\n", + "trypsin\n", + "trypsins\n", + "tryptic\n", + "trysail\n", + "trysails\n", + "tryst\n", + "tryste\n", + "trysted\n", + "tryster\n", + "trysters\n", + "trystes\n", + "trysting\n", + "trysts\n", + "tryworks\n", + "tsade\n", + "tsades\n", + "tsadi\n", + "tsadis\n", + "tsar\n", + "tsardom\n", + "tsardoms\n", + "tsarevna\n", + "tsarevnas\n", + "tsarina\n", + "tsarinas\n", + "tsarism\n", + "tsarisms\n", + "tsarist\n", + "tsarists\n", + "tsaritza\n", + "tsaritzas\n", + "tsars\n", + "tsetse\n", + "tsetses\n", + "tsimmes\n", + "tsk\n", + "tsked\n", + "tsking\n", + "tsks\n", + "tsktsk\n", + "tsktsked\n", + "tsktsking\n", + "tsktsks\n", + "tsuba\n", + "tsunami\n", + "tsunamic\n", + "tsunamis\n", + "tsuris\n", + "tuatara\n", + "tuataras\n", + "tuatera\n", + "tuateras\n", + "tub\n", + "tuba\n", + "tubae\n", + "tubal\n", + "tubas\n", + "tubate\n", + "tubbable\n", + "tubbed\n", + "tubber\n", + "tubbers\n", + "tubbier\n", + "tubbiest\n", + "tubbing\n", + "tubby\n", + "tube\n", + "tubed\n", + "tubeless\n", + "tubelike\n", + "tuber\n", + "tubercle\n", + "tubercles\n", + "tubercular\n", + "tuberculoses\n", + "tuberculosis\n", + "tuberculous\n", + "tuberoid\n", + "tuberose\n", + "tuberoses\n", + "tuberous\n", + "tubers\n", + "tubes\n", + "tubework\n", + "tubeworks\n", + "tubful\n", + "tubfuls\n", + "tubifex\n", + "tubifexes\n", + "tubiform\n", + "tubing\n", + "tubings\n", + "tublike\n", + "tubs\n", + "tubular\n", + "tubulate\n", + "tubulated\n", + "tubulates\n", + "tubulating\n", + "tubule\n", + "tubules\n", + "tubulose\n", + "tubulous\n", + "tubulure\n", + "tubulures\n", + "tuchun\n", + "tuchuns\n", + "tuck\n", + "tuckahoe\n", + "tuckahoes\n", + "tucked\n", + "tucker\n", + "tuckered\n", + "tuckering\n", + "tuckers\n", + "tucket\n", + "tuckets\n", + "tucking\n", + "tucks\n", + "tufa\n", + "tufas\n", + "tuff\n", + "tuffet\n", + "tuffets\n", + "tuffs\n", + "tuft\n", + "tufted\n", + "tufter\n", + "tufters\n", + "tuftier\n", + "tuftiest\n", + "tuftily\n", + "tufting\n", + "tufts\n", + "tufty\n", + "tug\n", + "tugboat\n", + "tugboats\n", + "tugged\n", + "tugger\n", + "tuggers\n", + "tugging\n", + "tugless\n", + "tugrik\n", + "tugriks\n", + "tugs\n", + "tui\n", + "tuille\n", + "tuilles\n", + "tuis\n", + "tuition\n", + "tuitions\n", + "tuladi\n", + "tuladis\n", + "tule\n", + "tules\n", + "tulip\n", + "tulips\n", + "tulle\n", + "tulles\n", + "tullibee\n", + "tullibees\n", + "tumble\n", + "tumbled\n", + "tumbler\n", + "tumblers\n", + "tumbles\n", + "tumbling\n", + "tumblings\n", + "tumbrel\n", + "tumbrels\n", + "tumbril\n", + "tumbrils\n", + "tumefied\n", + "tumefies\n", + "tumefy\n", + "tumefying\n", + "tumid\n", + "tumidily\n", + "tumidities\n", + "tumidity\n", + "tummies\n", + "tummy\n", + "tumor\n", + "tumoral\n", + "tumorous\n", + "tumors\n", + "tumour\n", + "tumours\n", + "tump\n", + "tumpline\n", + "tumplines\n", + "tumps\n", + "tumular\n", + "tumuli\n", + "tumulose\n", + "tumulous\n", + "tumult\n", + "tumults\n", + "tumultuous\n", + "tumulus\n", + "tumuluses\n", + "tun\n", + "tuna\n", + "tunable\n", + "tunably\n", + "tunas\n", + "tundish\n", + "tundishes\n", + "tundra\n", + "tundras\n", + "tune\n", + "tuneable\n", + "tuneably\n", + "tuned\n", + "tuneful\n", + "tuneless\n", + "tuner\n", + "tuners\n", + "tunes\n", + "tung\n", + "tungs\n", + "tungsten\n", + "tungstens\n", + "tungstic\n", + "tunic\n", + "tunica\n", + "tunicae\n", + "tunicate\n", + "tunicates\n", + "tunicle\n", + "tunicles\n", + "tunics\n", + "tuning\n", + "tunnage\n", + "tunnages\n", + "tunned\n", + "tunnel\n", + "tunneled\n", + "tunneler\n", + "tunnelers\n", + "tunneling\n", + "tunnelled\n", + "tunnelling\n", + "tunnels\n", + "tunnies\n", + "tunning\n", + "tunny\n", + "tuns\n", + "tup\n", + "tupelo\n", + "tupelos\n", + "tupik\n", + "tupiks\n", + "tupped\n", + "tuppence\n", + "tuppences\n", + "tuppeny\n", + "tupping\n", + "tups\n", + "tuque\n", + "tuques\n", + "turaco\n", + "turacos\n", + "turacou\n", + "turacous\n", + "turban\n", + "turbaned\n", + "turbans\n", + "turbaries\n", + "turbary\n", + "turbeth\n", + "turbeths\n", + "turbid\n", + "turbidities\n", + "turbidity\n", + "turbidly\n", + "turbidness\n", + "turbidnesses\n", + "turbinal\n", + "turbinals\n", + "turbine\n", + "turbines\n", + "turbit\n", + "turbith\n", + "turbiths\n", + "turbits\n", + "turbo\n", + "turbocar\n", + "turbocars\n", + "turbofan\n", + "turbofans\n", + "turbojet\n", + "turbojets\n", + "turboprop\n", + "turboprops\n", + "turbos\n", + "turbot\n", + "turbots\n", + "turbulence\n", + "turbulences\n", + "turbulently\n", + "turd\n", + "turdine\n", + "turds\n", + "tureen\n", + "tureens\n", + "turf\n", + "turfed\n", + "turfier\n", + "turfiest\n", + "turfing\n", + "turfless\n", + "turflike\n", + "turfman\n", + "turfmen\n", + "turfs\n", + "turfski\n", + "turfskis\n", + "turfy\n", + "turgencies\n", + "turgency\n", + "turgent\n", + "turgid\n", + "turgidities\n", + "turgidity\n", + "turgidly\n", + "turgite\n", + "turgites\n", + "turgor\n", + "turgors\n", + "turkey\n", + "turkeys\n", + "turkois\n", + "turkoises\n", + "turmeric\n", + "turmerics\n", + "turmoil\n", + "turmoiled\n", + "turmoiling\n", + "turmoils\n", + "turn\n", + "turnable\n", + "turnaround\n", + "turncoat\n", + "turncoats\n", + "turndown\n", + "turndowns\n", + "turned\n", + "turner\n", + "turneries\n", + "turners\n", + "turnery\n", + "turnhall\n", + "turnhalls\n", + "turning\n", + "turnings\n", + "turnip\n", + "turnips\n", + "turnkey\n", + "turnkeys\n", + "turnoff\n", + "turnoffs\n", + "turnout\n", + "turnouts\n", + "turnover\n", + "turnovers\n", + "turnpike\n", + "turnpikes\n", + "turns\n", + "turnsole\n", + "turnsoles\n", + "turnspit\n", + "turnspits\n", + "turnstile\n", + "turnstiles\n", + "turntable\n", + "turntables\n", + "turnup\n", + "turnups\n", + "turpentine\n", + "turpentines\n", + "turpeth\n", + "turpeths\n", + "turpitude\n", + "turpitudes\n", + "turps\n", + "turquois\n", + "turquoise\n", + "turquoises\n", + "turret\n", + "turreted\n", + "turrets\n", + "turrical\n", + "turtle\n", + "turtled\n", + "turtledove\n", + "turtledoves\n", + "turtleneck\n", + "turtlenecks\n", + "turtler\n", + "turtlers\n", + "turtles\n", + "turtling\n", + "turtlings\n", + "turves\n", + "tusche\n", + "tusches\n", + "tush\n", + "tushed\n", + "tushes\n", + "tushing\n", + "tusk\n", + "tusked\n", + "tusker\n", + "tuskers\n", + "tusking\n", + "tuskless\n", + "tusklike\n", + "tusks\n", + "tussah\n", + "tussahs\n", + "tussal\n", + "tussar\n", + "tussars\n", + "tusseh\n", + "tussehs\n", + "tusser\n", + "tussers\n", + "tussis\n", + "tussises\n", + "tussive\n", + "tussle\n", + "tussled\n", + "tussles\n", + "tussling\n", + "tussock\n", + "tussocks\n", + "tussocky\n", + "tussor\n", + "tussore\n", + "tussores\n", + "tussors\n", + "tussuck\n", + "tussucks\n", + "tussur\n", + "tussurs\n", + "tut\n", + "tutee\n", + "tutees\n", + "tutelage\n", + "tutelages\n", + "tutelar\n", + "tutelaries\n", + "tutelars\n", + "tutelary\n", + "tutor\n", + "tutorage\n", + "tutorages\n", + "tutored\n", + "tutoress\n", + "tutoresses\n", + "tutorial\n", + "tutorials\n", + "tutoring\n", + "tutors\n", + "tutoyed\n", + "tutoyer\n", + "tutoyered\n", + "tutoyering\n", + "tutoyers\n", + "tuts\n", + "tutted\n", + "tutti\n", + "tutties\n", + "tutting\n", + "tuttis\n", + "tutty\n", + "tutu\n", + "tutus\n", + "tux\n", + "tuxedo\n", + "tuxedoes\n", + "tuxedos\n", + "tuxes\n", + "tuyer\n", + "tuyere\n", + "tuyeres\n", + "tuyers\n", + "twa\n", + "twaddle\n", + "twaddled\n", + "twaddler\n", + "twaddlers\n", + "twaddles\n", + "twaddling\n", + "twae\n", + "twaes\n", + "twain\n", + "twains\n", + "twang\n", + "twanged\n", + "twangier\n", + "twangiest\n", + "twanging\n", + "twangle\n", + "twangled\n", + "twangler\n", + "twanglers\n", + "twangles\n", + "twangling\n", + "twangs\n", + "twangy\n", + "twankies\n", + "twanky\n", + "twas\n", + "twasome\n", + "twasomes\n", + "twattle\n", + "twattled\n", + "twattles\n", + "twattling\n", + "tweak\n", + "tweaked\n", + "tweakier\n", + "tweakiest\n", + "tweaking\n", + "tweaks\n", + "tweaky\n", + "tweed\n", + "tweedier\n", + "tweediest\n", + "tweedle\n", + "tweedled\n", + "tweedles\n", + "tweedling\n", + "tweeds\n", + "tweedy\n", + "tween\n", + "tweet\n", + "tweeted\n", + "tweeter\n", + "tweeters\n", + "tweeting\n", + "tweets\n", + "tweeze\n", + "tweezed\n", + "tweezer\n", + "tweezers\n", + "tweezes\n", + "tweezing\n", + "twelfth\n", + "twelfths\n", + "twelve\n", + "twelvemo\n", + "twelvemos\n", + "twelves\n", + "twenties\n", + "twentieth\n", + "twentieths\n", + "twenty\n", + "twerp\n", + "twerps\n", + "twibil\n", + "twibill\n", + "twibills\n", + "twibils\n", + "twice\n", + "twiddle\n", + "twiddled\n", + "twiddler\n", + "twiddlers\n", + "twiddles\n", + "twiddling\n", + "twier\n", + "twiers\n", + "twig\n", + "twigged\n", + "twiggen\n", + "twiggier\n", + "twiggiest\n", + "twigging\n", + "twiggy\n", + "twigless\n", + "twiglike\n", + "twigs\n", + "twilight\n", + "twilights\n", + "twilit\n", + "twill\n", + "twilled\n", + "twilling\n", + "twillings\n", + "twills\n", + "twin\n", + "twinborn\n", + "twine\n", + "twined\n", + "twiner\n", + "twiners\n", + "twines\n", + "twinge\n", + "twinged\n", + "twinges\n", + "twinging\n", + "twinier\n", + "twiniest\n", + "twinight\n", + "twining\n", + "twinkle\n", + "twinkled\n", + "twinkler\n", + "twinklers\n", + "twinkles\n", + "twinkling\n", + "twinkly\n", + "twinned\n", + "twinning\n", + "twinnings\n", + "twins\n", + "twinship\n", + "twinships\n", + "twiny\n", + "twirl\n", + "twirled\n", + "twirler\n", + "twirlers\n", + "twirlier\n", + "twirliest\n", + "twirling\n", + "twirls\n", + "twirly\n", + "twirp\n", + "twirps\n", + "twist\n", + "twisted\n", + "twister\n", + "twisters\n", + "twisting\n", + "twistings\n", + "twists\n", + "twit\n", + "twitch\n", + "twitched\n", + "twitcher\n", + "twitchers\n", + "twitches\n", + "twitchier\n", + "twitchiest\n", + "twitching\n", + "twitchy\n", + "twits\n", + "twitted\n", + "twitter\n", + "twittered\n", + "twittering\n", + "twitters\n", + "twittery\n", + "twitting\n", + "twixt\n", + "two\n", + "twofer\n", + "twofers\n", + "twofold\n", + "twofolds\n", + "twopence\n", + "twopences\n", + "twopenny\n", + "twos\n", + "twosome\n", + "twosomes\n", + "twyer\n", + "twyers\n", + "tycoon\n", + "tycoons\n", + "tye\n", + "tyee\n", + "tyees\n", + "tyes\n", + "tying\n", + "tyke\n", + "tykes\n", + "tymbal\n", + "tymbals\n", + "tympan\n", + "tympana\n", + "tympanal\n", + "tympani\n", + "tympanic\n", + "tympanies\n", + "tympans\n", + "tympanum\n", + "tympanums\n", + "tympany\n", + "tyne\n", + "tyned\n", + "tynes\n", + "tyning\n", + "typal\n", + "type\n", + "typeable\n", + "typebar\n", + "typebars\n", + "typecase\n", + "typecases\n", + "typecast\n", + "typecasting\n", + "typecasts\n", + "typed\n", + "typeface\n", + "typefaces\n", + "types\n", + "typeset\n", + "typeseting\n", + "typesets\n", + "typewrite\n", + "typewrited\n", + "typewriter\n", + "typewriters\n", + "typewrites\n", + "typewriting\n", + "typey\n", + "typhoid\n", + "typhoids\n", + "typhon\n", + "typhonic\n", + "typhons\n", + "typhoon\n", + "typhoons\n", + "typhose\n", + "typhous\n", + "typhus\n", + "typhuses\n", + "typic\n", + "typical\n", + "typically\n", + "typicalness\n", + "typicalnesses\n", + "typier\n", + "typiest\n", + "typified\n", + "typifier\n", + "typifiers\n", + "typifies\n", + "typify\n", + "typifying\n", + "typing\n", + "typist\n", + "typists\n", + "typo\n", + "typographic\n", + "typographical\n", + "typographically\n", + "typographies\n", + "typography\n", + "typologies\n", + "typology\n", + "typos\n", + "typp\n", + "typps\n", + "typy\n", + "tyramine\n", + "tyramines\n", + "tyrannic\n", + "tyrannies\n", + "tyranny\n", + "tyrant\n", + "tyrants\n", + "tyre\n", + "tyred\n", + "tyres\n", + "tyring\n", + "tyro\n", + "tyronic\n", + "tyros\n", + "tyrosine\n", + "tyrosines\n", + "tythe\n", + "tythed\n", + "tythes\n", + "tything\n", + "tzaddik\n", + "tzaddikim\n", + "tzar\n", + "tzardom\n", + "tzardoms\n", + "tzarevna\n", + "tzarevnas\n", + "tzarina\n", + "tzarinas\n", + "tzarism\n", + "tzarisms\n", + "tzarist\n", + "tzarists\n", + "tzaritza\n", + "tzaritzas\n", + "tzars\n", + "tzetze\n", + "tzetzes\n", + "tzigane\n", + "tziganes\n", + "tzimmes\n", + "tzitzis\n", + "tzitzith\n", + "tzuris\n", + "ubieties\n", + "ubiety\n", + "ubique\n", + "ubiquities\n", + "ubiquitities\n", + "ubiquitity\n", + "ubiquitous\n", + "ubiquitously\n", + "ubiquity\n", + "udder\n", + "udders\n", + "udo\n", + "udometer\n", + "udometers\n", + "udometries\n", + "udometry\n", + "udos\n", + "ugh\n", + "ughs\n", + "uglier\n", + "ugliest\n", + "uglified\n", + "uglifier\n", + "uglifiers\n", + "uglifies\n", + "uglify\n", + "uglifying\n", + "uglily\n", + "ugliness\n", + "uglinesses\n", + "ugly\n", + "ugsome\n", + "uhlan\n", + "uhlans\n", + "uintaite\n", + "uintaites\n", + "uit\n", + "ukase\n", + "ukases\n", + "uke\n", + "ukelele\n", + "ukeleles\n", + "ukes\n", + "ukulele\n", + "ukuleles\n", + "ulama\n", + "ulamas\n", + "ulan\n", + "ulans\n", + "ulcer\n", + "ulcerate\n", + "ulcerated\n", + "ulcerates\n", + "ulcerating\n", + "ulceration\n", + "ulcerations\n", + "ulcerative\n", + "ulcered\n", + "ulcering\n", + "ulcerous\n", + "ulcers\n", + "ulema\n", + "ulemas\n", + "ulexite\n", + "ulexites\n", + "ullage\n", + "ullaged\n", + "ullages\n", + "ulna\n", + "ulnad\n", + "ulnae\n", + "ulnar\n", + "ulnas\n", + "ulster\n", + "ulsters\n", + "ulterior\n", + "ultima\n", + "ultimacies\n", + "ultimacy\n", + "ultimas\n", + "ultimata\n", + "ultimate\n", + "ultimately\n", + "ultimates\n", + "ultimatum\n", + "ultimo\n", + "ultra\n", + "ultraism\n", + "ultraisms\n", + "ultraist\n", + "ultraists\n", + "ultrared\n", + "ultrareds\n", + "ultras\n", + "ultraviolet\n", + "ululant\n", + "ululate\n", + "ululated\n", + "ululates\n", + "ululating\n", + "ulva\n", + "ulvas\n", + "umbel\n", + "umbeled\n", + "umbellar\n", + "umbelled\n", + "umbellet\n", + "umbellets\n", + "umbels\n", + "umber\n", + "umbered\n", + "umbering\n", + "umbers\n", + "umbilical\n", + "umbilici\n", + "umbilicus\n", + "umbles\n", + "umbo\n", + "umbonal\n", + "umbonate\n", + "umbones\n", + "umbonic\n", + "umbos\n", + "umbra\n", + "umbrae\n", + "umbrage\n", + "umbrages\n", + "umbral\n", + "umbras\n", + "umbrella\n", + "umbrellaed\n", + "umbrellaing\n", + "umbrellas\n", + "umbrette\n", + "umbrettes\n", + "umiac\n", + "umiack\n", + "umiacks\n", + "umiacs\n", + "umiak\n", + "umiaks\n", + "umlaut\n", + "umlauted\n", + "umlauting\n", + "umlauts\n", + "ump\n", + "umped\n", + "umping\n", + "umpirage\n", + "umpirages\n", + "umpire\n", + "umpired\n", + "umpires\n", + "umpiring\n", + "umps\n", + "umpteen\n", + "umpteenth\n", + "umteenth\n", + "un\n", + "unabated\n", + "unable\n", + "unabridged\n", + "unabused\n", + "unacceptable\n", + "unaccompanied\n", + "unaccounted\n", + "unaccustomed\n", + "unacted\n", + "unaddressed\n", + "unadorned\n", + "unadulterated\n", + "unaffected\n", + "unaffectedly\n", + "unafraid\n", + "unaged\n", + "unageing\n", + "unagile\n", + "unaging\n", + "unai\n", + "unaided\n", + "unaimed\n", + "unaired\n", + "unais\n", + "unalike\n", + "unallied\n", + "unambiguous\n", + "unambiguously\n", + "unambitious\n", + "unamused\n", + "unanchor\n", + "unanchored\n", + "unanchoring\n", + "unanchors\n", + "unaneled\n", + "unanimities\n", + "unanimity\n", + "unanimous\n", + "unanimously\n", + "unannounced\n", + "unanswerable\n", + "unanswered\n", + "unanticipated\n", + "unappetizing\n", + "unappreciated\n", + "unapproved\n", + "unapt\n", + "unaptly\n", + "unare\n", + "unargued\n", + "unarm\n", + "unarmed\n", + "unarming\n", + "unarms\n", + "unartful\n", + "unary\n", + "unasked\n", + "unassisted\n", + "unassuming\n", + "unatoned\n", + "unattached\n", + "unattended\n", + "unattractive\n", + "unau\n", + "unaus\n", + "unauthorized\n", + "unavailable\n", + "unavoidable\n", + "unavowed\n", + "unawaked\n", + "unaware\n", + "unawares\n", + "unawed\n", + "unbacked\n", + "unbaked\n", + "unbalanced\n", + "unbar\n", + "unbarbed\n", + "unbarred\n", + "unbarring\n", + "unbars\n", + "unbased\n", + "unbated\n", + "unbe\n", + "unbear\n", + "unbearable\n", + "unbeared\n", + "unbearing\n", + "unbears\n", + "unbeaten\n", + "unbecoming\n", + "unbecomingly\n", + "unbed\n", + "unbelief\n", + "unbeliefs\n", + "unbelievable\n", + "unbelievably\n", + "unbelt\n", + "unbelted\n", + "unbelting\n", + "unbelts\n", + "unbend\n", + "unbended\n", + "unbending\n", + "unbends\n", + "unbenign\n", + "unbent\n", + "unbiased\n", + "unbid\n", + "unbidden\n", + "unbind\n", + "unbinding\n", + "unbinds\n", + "unbitted\n", + "unblamed\n", + "unblest\n", + "unblock\n", + "unblocked\n", + "unblocking\n", + "unblocks\n", + "unbloody\n", + "unbodied\n", + "unbolt\n", + "unbolted\n", + "unbolting\n", + "unbolts\n", + "unboned\n", + "unbonnet\n", + "unbonneted\n", + "unbonneting\n", + "unbonnets\n", + "unborn\n", + "unbosom\n", + "unbosomed\n", + "unbosoming\n", + "unbosoms\n", + "unbought\n", + "unbound\n", + "unbowed\n", + "unbox\n", + "unboxed\n", + "unboxes\n", + "unboxing\n", + "unbrace\n", + "unbraced\n", + "unbraces\n", + "unbracing\n", + "unbraid\n", + "unbraided\n", + "unbraiding\n", + "unbraids\n", + "unbranded\n", + "unbreakable\n", + "unbred\n", + "unbreech\n", + "unbreeched\n", + "unbreeches\n", + "unbreeching\n", + "unbridle\n", + "unbridled\n", + "unbridles\n", + "unbridling\n", + "unbroke\n", + "unbroken\n", + "unbuckle\n", + "unbuckled\n", + "unbuckles\n", + "unbuckling\n", + "unbuild\n", + "unbuilding\n", + "unbuilds\n", + "unbuilt\n", + "unbundle\n", + "unbundled\n", + "unbundles\n", + "unbundling\n", + "unburden\n", + "unburdened\n", + "unburdening\n", + "unburdens\n", + "unburied\n", + "unburned\n", + "unburnt\n", + "unbutton\n", + "unbuttoned\n", + "unbuttoning\n", + "unbuttons\n", + "uncage\n", + "uncaged\n", + "uncages\n", + "uncaging\n", + "uncake\n", + "uncaked\n", + "uncakes\n", + "uncaking\n", + "uncalled\n", + "uncandid\n", + "uncannier\n", + "uncanniest\n", + "uncannily\n", + "uncanny\n", + "uncap\n", + "uncapped\n", + "uncapping\n", + "uncaps\n", + "uncaring\n", + "uncase\n", + "uncased\n", + "uncases\n", + "uncashed\n", + "uncasing\n", + "uncaught\n", + "uncaused\n", + "unceasing\n", + "unceasingly\n", + "uncensored\n", + "unceremonious\n", + "unceremoniously\n", + "uncertain\n", + "uncertainly\n", + "uncertainties\n", + "uncertainty\n", + "unchain\n", + "unchained\n", + "unchaining\n", + "unchains\n", + "unchallenged\n", + "unchancy\n", + "unchanged\n", + "unchanging\n", + "uncharacteristic\n", + "uncharge\n", + "uncharged\n", + "uncharges\n", + "uncharging\n", + "unchary\n", + "unchaste\n", + "unchecked\n", + "unchewed\n", + "unchic\n", + "unchoke\n", + "unchoked\n", + "unchokes\n", + "unchoking\n", + "unchosen\n", + "unchristian\n", + "unchurch\n", + "unchurched\n", + "unchurches\n", + "unchurching\n", + "unci\n", + "uncia\n", + "unciae\n", + "uncial\n", + "uncially\n", + "uncials\n", + "unciform\n", + "unciforms\n", + "uncinal\n", + "uncinate\n", + "uncini\n", + "uncinus\n", + "uncivil\n", + "uncivilized\n", + "unclad\n", + "unclaimed\n", + "unclamp\n", + "unclamped\n", + "unclamping\n", + "unclamps\n", + "unclasp\n", + "unclasped\n", + "unclasping\n", + "unclasps\n", + "uncle\n", + "unclean\n", + "uncleaner\n", + "uncleanest\n", + "uncleanness\n", + "uncleannesses\n", + "unclear\n", + "uncleared\n", + "unclearer\n", + "unclearest\n", + "unclench\n", + "unclenched\n", + "unclenches\n", + "unclenching\n", + "uncles\n", + "unclinch\n", + "unclinched\n", + "unclinches\n", + "unclinching\n", + "uncloak\n", + "uncloaked\n", + "uncloaking\n", + "uncloaks\n", + "unclog\n", + "unclogged\n", + "unclogging\n", + "unclogs\n", + "unclose\n", + "unclosed\n", + "uncloses\n", + "unclosing\n", + "unclothe\n", + "unclothed\n", + "unclothes\n", + "unclothing\n", + "uncloud\n", + "unclouded\n", + "unclouding\n", + "unclouds\n", + "uncloyed\n", + "uncluttered\n", + "unco\n", + "uncoated\n", + "uncock\n", + "uncocked\n", + "uncocking\n", + "uncocks\n", + "uncoffin\n", + "uncoffined\n", + "uncoffining\n", + "uncoffins\n", + "uncoil\n", + "uncoiled\n", + "uncoiling\n", + "uncoils\n", + "uncoined\n", + "uncombed\n", + "uncomely\n", + "uncomfortable\n", + "uncomfortably\n", + "uncomic\n", + "uncommitted\n", + "uncommon\n", + "uncommoner\n", + "uncommonest\n", + "uncommonly\n", + "uncomplimentary\n", + "uncompromising\n", + "unconcerned\n", + "unconcernedlies\n", + "unconcernedly\n", + "unconditional\n", + "unconditionally\n", + "unconfirmed\n", + "unconscionable\n", + "unconscionably\n", + "unconscious\n", + "unconsciously\n", + "unconsciousness\n", + "unconsciousnesses\n", + "unconstitutional\n", + "uncontested\n", + "uncontrollable\n", + "uncontrollably\n", + "uncontrolled\n", + "unconventional\n", + "unconventionally\n", + "unconverted\n", + "uncooked\n", + "uncool\n", + "uncooperative\n", + "uncoordinated\n", + "uncork\n", + "uncorked\n", + "uncorking\n", + "uncorks\n", + "uncos\n", + "uncounted\n", + "uncouple\n", + "uncoupled\n", + "uncouples\n", + "uncoupling\n", + "uncouth\n", + "uncover\n", + "uncovered\n", + "uncovering\n", + "uncovers\n", + "uncrate\n", + "uncrated\n", + "uncrates\n", + "uncrating\n", + "uncreate\n", + "uncreated\n", + "uncreates\n", + "uncreating\n", + "uncross\n", + "uncrossed\n", + "uncrosses\n", + "uncrossing\n", + "uncrown\n", + "uncrowned\n", + "uncrowning\n", + "uncrowns\n", + "unction\n", + "unctions\n", + "unctuous\n", + "unctuously\n", + "uncultivated\n", + "uncurb\n", + "uncurbed\n", + "uncurbing\n", + "uncurbs\n", + "uncured\n", + "uncurl\n", + "uncurled\n", + "uncurling\n", + "uncurls\n", + "uncursed\n", + "uncus\n", + "uncut\n", + "undamaged\n", + "undamped\n", + "undaring\n", + "undated\n", + "undaunted\n", + "undauntedly\n", + "unde\n", + "undecided\n", + "undecked\n", + "undeclared\n", + "undee\n", + "undefeated\n", + "undefined\n", + "undemocratic\n", + "undeniable\n", + "undeniably\n", + "undenied\n", + "undependable\n", + "under\n", + "underact\n", + "underacted\n", + "underacting\n", + "underacts\n", + "underage\n", + "underages\n", + "underarm\n", + "underarms\n", + "underate\n", + "underbid\n", + "underbidding\n", + "underbids\n", + "underbought\n", + "underbrush\n", + "underbrushes\n", + "underbud\n", + "underbudded\n", + "underbudding\n", + "underbuds\n", + "underbuy\n", + "underbuying\n", + "underbuys\n", + "underclothes\n", + "underclothing\n", + "underclothings\n", + "undercover\n", + "undercurrent\n", + "undercurrents\n", + "undercut\n", + "undercuts\n", + "undercutting\n", + "underdeveloped\n", + "underdid\n", + "underdo\n", + "underdoes\n", + "underdog\n", + "underdogs\n", + "underdoing\n", + "underdone\n", + "undereat\n", + "undereaten\n", + "undereating\n", + "undereats\n", + "underestimate\n", + "underestimated\n", + "underestimates\n", + "underestimating\n", + "underexpose\n", + "underexposed\n", + "underexposes\n", + "underexposing\n", + "underexposure\n", + "underexposures\n", + "underfed\n", + "underfeed\n", + "underfeeding\n", + "underfeeds\n", + "underfoot\n", + "underfur\n", + "underfurs\n", + "undergarment\n", + "undergarments\n", + "undergo\n", + "undergod\n", + "undergods\n", + "undergoes\n", + "undergoing\n", + "undergone\n", + "undergraduate\n", + "undergraduates\n", + "underground\n", + "undergrounds\n", + "undergrowth\n", + "undergrowths\n", + "underhand\n", + "underhanded\n", + "underhandedly\n", + "underhandedness\n", + "underhandednesses\n", + "underjaw\n", + "underjaws\n", + "underlaid\n", + "underlain\n", + "underlap\n", + "underlapped\n", + "underlapping\n", + "underlaps\n", + "underlay\n", + "underlaying\n", + "underlays\n", + "underlet\n", + "underlets\n", + "underletting\n", + "underlie\n", + "underlies\n", + "underline\n", + "underlined\n", + "underlines\n", + "underling\n", + "underlings\n", + "underlining\n", + "underlip\n", + "underlips\n", + "underlit\n", + "underlying\n", + "undermine\n", + "undermined\n", + "undermines\n", + "undermining\n", + "underneath\n", + "undernourished\n", + "undernourishment\n", + "undernourishments\n", + "underpaid\n", + "underpants\n", + "underpass\n", + "underpasses\n", + "underpay\n", + "underpaying\n", + "underpays\n", + "underpin\n", + "underpinned\n", + "underpinning\n", + "underpinnings\n", + "underpins\n", + "underprivileged\n", + "underran\n", + "underrate\n", + "underrated\n", + "underrates\n", + "underrating\n", + "underrun\n", + "underrunning\n", + "underruns\n", + "underscore\n", + "underscored\n", + "underscores\n", + "underscoring\n", + "undersea\n", + "underseas\n", + "undersecretaries\n", + "undersecretary\n", + "undersell\n", + "underselling\n", + "undersells\n", + "underset\n", + "undersets\n", + "undershirt\n", + "undershirts\n", + "undershorts\n", + "underside\n", + "undersides\n", + "undersized\n", + "undersold\n", + "understand\n", + "understandable\n", + "understandably\n", + "understanded\n", + "understanding\n", + "understandings\n", + "understands\n", + "understate\n", + "understated\n", + "understatement\n", + "understatements\n", + "understates\n", + "understating\n", + "understood\n", + "understudied\n", + "understudies\n", + "understudy\n", + "understudying\n", + "undertake\n", + "undertaken\n", + "undertaker\n", + "undertakes\n", + "undertaking\n", + "undertakings\n", + "undertax\n", + "undertaxed\n", + "undertaxes\n", + "undertaxing\n", + "undertone\n", + "undertones\n", + "undertook\n", + "undertow\n", + "undertows\n", + "undervalue\n", + "undervalued\n", + "undervalues\n", + "undervaluing\n", + "underwater\n", + "underway\n", + "underwear\n", + "underwears\n", + "underwent\n", + "underworld\n", + "underworlds\n", + "underwrite\n", + "underwriter\n", + "underwriters\n", + "underwrites\n", + "underwriting\n", + "underwrote\n", + "undeserving\n", + "undesirable\n", + "undesired\n", + "undetailed\n", + "undetected\n", + "undetermined\n", + "undeveloped\n", + "undeviating\n", + "undevout\n", + "undid\n", + "undies\n", + "undignified\n", + "undimmed\n", + "undine\n", + "undines\n", + "undivided\n", + "undo\n", + "undock\n", + "undocked\n", + "undocking\n", + "undocks\n", + "undoer\n", + "undoers\n", + "undoes\n", + "undoing\n", + "undoings\n", + "undomesticated\n", + "undone\n", + "undouble\n", + "undoubled\n", + "undoubles\n", + "undoubling\n", + "undoubted\n", + "undoubtedly\n", + "undrape\n", + "undraped\n", + "undrapes\n", + "undraping\n", + "undraw\n", + "undrawing\n", + "undrawn\n", + "undraws\n", + "undreamt\n", + "undress\n", + "undressed\n", + "undresses\n", + "undressing\n", + "undrest\n", + "undrew\n", + "undried\n", + "undrinkable\n", + "undrunk\n", + "undue\n", + "undulant\n", + "undulate\n", + "undulated\n", + "undulates\n", + "undulating\n", + "undulled\n", + "unduly\n", + "undy\n", + "undyed\n", + "undying\n", + "uneager\n", + "unearned\n", + "unearth\n", + "unearthed\n", + "unearthing\n", + "unearthly\n", + "unearths\n", + "unease\n", + "uneases\n", + "uneasier\n", + "uneasiest\n", + "uneasily\n", + "uneasiness\n", + "uneasinesses\n", + "uneasy\n", + "uneaten\n", + "unedible\n", + "unedited\n", + "uneducated\n", + "unemotional\n", + "unemployed\n", + "unemployment\n", + "unemployments\n", + "unended\n", + "unending\n", + "unendurable\n", + "unenforceable\n", + "unenlightened\n", + "unenvied\n", + "unequal\n", + "unequaled\n", + "unequally\n", + "unequals\n", + "unequivocal\n", + "unequivocally\n", + "unerased\n", + "unerring\n", + "unerringly\n", + "unethical\n", + "unevaded\n", + "uneven\n", + "unevener\n", + "unevenest\n", + "unevenly\n", + "unevenness\n", + "unevennesses\n", + "uneventful\n", + "unexcitable\n", + "unexciting\n", + "unexotic\n", + "unexpected\n", + "unexpectedly\n", + "unexpert\n", + "unexplainable\n", + "unexplained\n", + "unexplored\n", + "unfaded\n", + "unfading\n", + "unfailing\n", + "unfailingly\n", + "unfair\n", + "unfairer\n", + "unfairest\n", + "unfairly\n", + "unfairness\n", + "unfairnesses\n", + "unfaith\n", + "unfaithful\n", + "unfaithfully\n", + "unfaithfulness\n", + "unfaithfulnesses\n", + "unfaiths\n", + "unfallen\n", + "unfamiliar\n", + "unfamiliarities\n", + "unfamiliarity\n", + "unfancy\n", + "unfasten\n", + "unfastened\n", + "unfastening\n", + "unfastens\n", + "unfavorable\n", + "unfavorably\n", + "unfazed\n", + "unfeared\n", + "unfed\n", + "unfeeling\n", + "unfeelingly\n", + "unfeigned\n", + "unfelt\n", + "unfence\n", + "unfenced\n", + "unfences\n", + "unfencing\n", + "unfetter\n", + "unfettered\n", + "unfettering\n", + "unfetters\n", + "unfilial\n", + "unfilled\n", + "unfilmed\n", + "unfinalized\n", + "unfinished\n", + "unfired\n", + "unfished\n", + "unfit\n", + "unfitly\n", + "unfitness\n", + "unfitnesses\n", + "unfits\n", + "unfitted\n", + "unfitting\n", + "unfix\n", + "unfixed\n", + "unfixes\n", + "unfixing\n", + "unfixt\n", + "unflappable\n", + "unflattering\n", + "unflexed\n", + "unfoiled\n", + "unfold\n", + "unfolded\n", + "unfolder\n", + "unfolders\n", + "unfolding\n", + "unfolds\n", + "unfond\n", + "unforced\n", + "unforeseeable\n", + "unforeseen\n", + "unforged\n", + "unforgettable\n", + "unforgettably\n", + "unforgivable\n", + "unforgiving\n", + "unforgot\n", + "unforked\n", + "unformed\n", + "unfortunate\n", + "unfortunately\n", + "unfortunates\n", + "unfought\n", + "unfound\n", + "unfounded\n", + "unframed\n", + "unfree\n", + "unfreed\n", + "unfreeing\n", + "unfrees\n", + "unfreeze\n", + "unfreezes\n", + "unfreezing\n", + "unfriendly\n", + "unfrock\n", + "unfrocked\n", + "unfrocking\n", + "unfrocks\n", + "unfroze\n", + "unfrozen\n", + "unfulfilled\n", + "unfunded\n", + "unfunny\n", + "unfurl\n", + "unfurled\n", + "unfurling\n", + "unfurls\n", + "unfurnished\n", + "unfused\n", + "unfussy\n", + "ungainlier\n", + "ungainliest\n", + "ungainliness\n", + "ungainlinesses\n", + "ungainly\n", + "ungalled\n", + "ungenerous\n", + "ungenial\n", + "ungentle\n", + "ungentlemanly\n", + "ungently\n", + "ungifted\n", + "ungird\n", + "ungirded\n", + "ungirding\n", + "ungirds\n", + "ungirt\n", + "unglazed\n", + "unglove\n", + "ungloved\n", + "ungloves\n", + "ungloving\n", + "unglue\n", + "unglued\n", + "unglues\n", + "ungluing\n", + "ungodlier\n", + "ungodliest\n", + "ungodliness\n", + "ungodlinesses\n", + "ungodly\n", + "ungot\n", + "ungotten\n", + "ungowned\n", + "ungraced\n", + "ungraceful\n", + "ungraded\n", + "ungrammatical\n", + "ungrateful\n", + "ungratefully\n", + "ungratefulness\n", + "ungratefulnesses\n", + "ungreedy\n", + "ungual\n", + "unguard\n", + "unguarded\n", + "unguarding\n", + "unguards\n", + "unguent\n", + "unguents\n", + "ungues\n", + "unguided\n", + "unguis\n", + "ungula\n", + "ungulae\n", + "ungular\n", + "ungulate\n", + "ungulates\n", + "unhailed\n", + "unhair\n", + "unhaired\n", + "unhairing\n", + "unhairs\n", + "unhallow\n", + "unhallowed\n", + "unhallowing\n", + "unhallows\n", + "unhalved\n", + "unhand\n", + "unhanded\n", + "unhandier\n", + "unhandiest\n", + "unhanding\n", + "unhands\n", + "unhandy\n", + "unhang\n", + "unhanged\n", + "unhanging\n", + "unhangs\n", + "unhappier\n", + "unhappiest\n", + "unhappily\n", + "unhappiness\n", + "unhappinesses\n", + "unhappy\n", + "unharmed\n", + "unhasty\n", + "unhat\n", + "unhats\n", + "unhatted\n", + "unhatting\n", + "unhealed\n", + "unhealthful\n", + "unhealthy\n", + "unheard\n", + "unheated\n", + "unheeded\n", + "unhelm\n", + "unhelmed\n", + "unhelming\n", + "unhelms\n", + "unhelped\n", + "unheroic\n", + "unhewn\n", + "unhinge\n", + "unhinged\n", + "unhinges\n", + "unhinging\n", + "unhip\n", + "unhired\n", + "unhitch\n", + "unhitched\n", + "unhitches\n", + "unhitching\n", + "unholier\n", + "unholiest\n", + "unholily\n", + "unholiness\n", + "unholinesses\n", + "unholy\n", + "unhood\n", + "unhooded\n", + "unhooding\n", + "unhoods\n", + "unhook\n", + "unhooked\n", + "unhooking\n", + "unhooks\n", + "unhoped\n", + "unhorse\n", + "unhorsed\n", + "unhorses\n", + "unhorsing\n", + "unhouse\n", + "unhoused\n", + "unhouses\n", + "unhousing\n", + "unhuman\n", + "unhung\n", + "unhurt\n", + "unhusk\n", + "unhusked\n", + "unhusking\n", + "unhusks\n", + "unialgal\n", + "uniaxial\n", + "unicellular\n", + "unicolor\n", + "unicorn\n", + "unicorns\n", + "unicycle\n", + "unicycles\n", + "unideaed\n", + "unideal\n", + "unidentified\n", + "unidirectional\n", + "uniface\n", + "unifaces\n", + "unific\n", + "unification\n", + "unifications\n", + "unified\n", + "unifier\n", + "unifiers\n", + "unifies\n", + "unifilar\n", + "uniform\n", + "uniformed\n", + "uniformer\n", + "uniformest\n", + "uniforming\n", + "uniformity\n", + "uniformly\n", + "uniforms\n", + "unify\n", + "unifying\n", + "unilateral\n", + "unilaterally\n", + "unilobed\n", + "unimaginable\n", + "unimaginative\n", + "unimbued\n", + "unimpeachable\n", + "unimportant\n", + "unimpressed\n", + "uninformed\n", + "uninhabited\n", + "uninhibited\n", + "uninhibitedly\n", + "uninjured\n", + "uninsured\n", + "unintelligent\n", + "unintelligible\n", + "unintelligibly\n", + "unintended\n", + "unintentional\n", + "unintentionally\n", + "uninterested\n", + "uninteresting\n", + "uninterrupted\n", + "uninvited\n", + "union\n", + "unionise\n", + "unionised\n", + "unionises\n", + "unionising\n", + "unionism\n", + "unionisms\n", + "unionist\n", + "unionists\n", + "unionization\n", + "unionizations\n", + "unionize\n", + "unionized\n", + "unionizes\n", + "unionizing\n", + "unions\n", + "unipod\n", + "unipods\n", + "unipolar\n", + "unique\n", + "uniquely\n", + "uniqueness\n", + "uniquer\n", + "uniques\n", + "uniquest\n", + "unironed\n", + "unisex\n", + "unisexes\n", + "unison\n", + "unisonal\n", + "unisons\n", + "unissued\n", + "unit\n", + "unitage\n", + "unitages\n", + "unitary\n", + "unite\n", + "united\n", + "unitedly\n", + "uniter\n", + "uniters\n", + "unites\n", + "unities\n", + "uniting\n", + "unitive\n", + "unitize\n", + "unitized\n", + "unitizes\n", + "unitizing\n", + "units\n", + "unity\n", + "univalve\n", + "univalves\n", + "universal\n", + "universally\n", + "universe\n", + "universes\n", + "universities\n", + "university\n", + "univocal\n", + "univocals\n", + "unjaded\n", + "unjoined\n", + "unjoyful\n", + "unjudged\n", + "unjust\n", + "unjustifiable\n", + "unjustified\n", + "unjustly\n", + "unkempt\n", + "unkend\n", + "unkenned\n", + "unkennel\n", + "unkenneled\n", + "unkenneling\n", + "unkennelled\n", + "unkennelling\n", + "unkennels\n", + "unkent\n", + "unkept\n", + "unkind\n", + "unkinder\n", + "unkindest\n", + "unkindlier\n", + "unkindliest\n", + "unkindly\n", + "unkindness\n", + "unkindnesses\n", + "unkingly\n", + "unkissed\n", + "unknit\n", + "unknits\n", + "unknitted\n", + "unknitting\n", + "unknot\n", + "unknots\n", + "unknotted\n", + "unknotting\n", + "unknowing\n", + "unknowingly\n", + "unknown\n", + "unknowns\n", + "unkosher\n", + "unlabeled\n", + "unlabelled\n", + "unlace\n", + "unlaced\n", + "unlaces\n", + "unlacing\n", + "unlade\n", + "unladed\n", + "unladen\n", + "unlades\n", + "unlading\n", + "unlaid\n", + "unlash\n", + "unlashed\n", + "unlashes\n", + "unlashing\n", + "unlatch\n", + "unlatched\n", + "unlatches\n", + "unlatching\n", + "unlawful\n", + "unlawfully\n", + "unlay\n", + "unlaying\n", + "unlays\n", + "unlead\n", + "unleaded\n", + "unleading\n", + "unleads\n", + "unlearn\n", + "unlearned\n", + "unlearning\n", + "unlearns\n", + "unlearnt\n", + "unleased\n", + "unleash\n", + "unleashed\n", + "unleashes\n", + "unleashing\n", + "unleavened\n", + "unled\n", + "unless\n", + "unlet\n", + "unlethal\n", + "unletted\n", + "unlevel\n", + "unleveled\n", + "unleveling\n", + "unlevelled\n", + "unlevelling\n", + "unlevels\n", + "unlevied\n", + "unlicensed\n", + "unlicked\n", + "unlikable\n", + "unlike\n", + "unlikelier\n", + "unlikeliest\n", + "unlikelihood\n", + "unlikely\n", + "unlikeness\n", + "unlikenesses\n", + "unlimber\n", + "unlimbered\n", + "unlimbering\n", + "unlimbers\n", + "unlimited\n", + "unlined\n", + "unlink\n", + "unlinked\n", + "unlinking\n", + "unlinks\n", + "unlisted\n", + "unlit\n", + "unlive\n", + "unlived\n", + "unlively\n", + "unlives\n", + "unliving\n", + "unload\n", + "unloaded\n", + "unloader\n", + "unloaders\n", + "unloading\n", + "unloads\n", + "unlobed\n", + "unlock\n", + "unlocked\n", + "unlocking\n", + "unlocks\n", + "unloose\n", + "unloosed\n", + "unloosen\n", + "unloosened\n", + "unloosening\n", + "unloosens\n", + "unlooses\n", + "unloosing\n", + "unlovable\n", + "unloved\n", + "unlovelier\n", + "unloveliest\n", + "unlovely\n", + "unloving\n", + "unluckier\n", + "unluckiest\n", + "unluckily\n", + "unlucky\n", + "unmade\n", + "unmake\n", + "unmaker\n", + "unmakers\n", + "unmakes\n", + "unmaking\n", + "unman\n", + "unmanageable\n", + "unmanful\n", + "unmanly\n", + "unmanned\n", + "unmanning\n", + "unmans\n", + "unmapped\n", + "unmarked\n", + "unmarred\n", + "unmarried\n", + "unmask\n", + "unmasked\n", + "unmasker\n", + "unmaskers\n", + "unmasking\n", + "unmasks\n", + "unmated\n", + "unmatted\n", + "unmeant\n", + "unmeet\n", + "unmeetly\n", + "unmellow\n", + "unmelted\n", + "unmended\n", + "unmerciful\n", + "unmercifully\n", + "unmerited\n", + "unmet\n", + "unmew\n", + "unmewed\n", + "unmewing\n", + "unmews\n", + "unmilled\n", + "unmingle\n", + "unmingled\n", + "unmingles\n", + "unmingling\n", + "unmistakable\n", + "unmistakably\n", + "unmiter\n", + "unmitered\n", + "unmitering\n", + "unmiters\n", + "unmitre\n", + "unmitred\n", + "unmitres\n", + "unmitring\n", + "unmixed\n", + "unmixt\n", + "unmodish\n", + "unmold\n", + "unmolded\n", + "unmolding\n", + "unmolds\n", + "unmolested\n", + "unmolten\n", + "unmoor\n", + "unmoored\n", + "unmooring\n", + "unmoors\n", + "unmoral\n", + "unmotivated\n", + "unmoved\n", + "unmoving\n", + "unmown\n", + "unmuffle\n", + "unmuffled\n", + "unmuffles\n", + "unmuffling\n", + "unmuzzle\n", + "unmuzzled\n", + "unmuzzles\n", + "unmuzzling\n", + "unnail\n", + "unnailed\n", + "unnailing\n", + "unnails\n", + "unnamed\n", + "unnatural\n", + "unnaturally\n", + "unnaturalness\n", + "unnaturalnesses\n", + "unnavigable\n", + "unnecessarily\n", + "unnecessary\n", + "unneeded\n", + "unneighborly\n", + "unnerve\n", + "unnerved\n", + "unnerves\n", + "unnerving\n", + "unnoisy\n", + "unnojectionable\n", + "unnoted\n", + "unnoticeable\n", + "unnoticed\n", + "unobservable\n", + "unobservant\n", + "unobtainable\n", + "unobtrusive\n", + "unobtrusively\n", + "unoccupied\n", + "unofficial\n", + "unoiled\n", + "unopen\n", + "unopened\n", + "unopposed\n", + "unorganized\n", + "unoriginal\n", + "unornate\n", + "unorthodox\n", + "unowned\n", + "unpack\n", + "unpacked\n", + "unpacker\n", + "unpackers\n", + "unpacking\n", + "unpacks\n", + "unpaged\n", + "unpaid\n", + "unpaired\n", + "unparalleled\n", + "unpardonable\n", + "unparted\n", + "unpatriotic\n", + "unpaved\n", + "unpaying\n", + "unpeg\n", + "unpegged\n", + "unpegging\n", + "unpegs\n", + "unpen\n", + "unpenned\n", + "unpenning\n", + "unpens\n", + "unpent\n", + "unpeople\n", + "unpeopled\n", + "unpeoples\n", + "unpeopling\n", + "unperson\n", + "unpersons\n", + "unpick\n", + "unpicked\n", + "unpicking\n", + "unpicks\n", + "unpile\n", + "unpiled\n", + "unpiles\n", + "unpiling\n", + "unpin\n", + "unpinned\n", + "unpinning\n", + "unpins\n", + "unpitied\n", + "unplaced\n", + "unplait\n", + "unplaited\n", + "unplaiting\n", + "unplaits\n", + "unplayed\n", + "unpleasant\n", + "unpleasantly\n", + "unpleasantness\n", + "unpleasantnesses\n", + "unpliant\n", + "unplowed\n", + "unplug\n", + "unplugged\n", + "unplugging\n", + "unplugs\n", + "unpoetic\n", + "unpoised\n", + "unpolite\n", + "unpolled\n", + "unpopular\n", + "unpopularities\n", + "unpopularity\n", + "unposed\n", + "unposted\n", + "unprecedented\n", + "unpredictable\n", + "unpredictably\n", + "unprejudiced\n", + "unprepared\n", + "unpretentious\n", + "unpretty\n", + "unpriced\n", + "unprimed\n", + "unprincipled\n", + "unprinted\n", + "unprized\n", + "unprobed\n", + "unproductive\n", + "unprofessional\n", + "unprofitable\n", + "unprotected\n", + "unproved\n", + "unproven\n", + "unprovoked\n", + "unpruned\n", + "unpucker\n", + "unpuckered\n", + "unpuckering\n", + "unpuckers\n", + "unpunished\n", + "unpure\n", + "unpurged\n", + "unpuzzle\n", + "unpuzzled\n", + "unpuzzles\n", + "unpuzzling\n", + "unqualified\n", + "unquantifiable\n", + "unquenchable\n", + "unquestionable\n", + "unquestionably\n", + "unquestioning\n", + "unquiet\n", + "unquieter\n", + "unquietest\n", + "unquiets\n", + "unquote\n", + "unquoted\n", + "unquotes\n", + "unquoting\n", + "unraised\n", + "unraked\n", + "unranked\n", + "unrated\n", + "unravel\n", + "unraveled\n", + "unraveling\n", + "unravelled\n", + "unravelling\n", + "unravels\n", + "unrazed\n", + "unreachable\n", + "unread\n", + "unreadable\n", + "unreadier\n", + "unreadiest\n", + "unready\n", + "unreal\n", + "unrealistic\n", + "unrealities\n", + "unreality\n", + "unreally\n", + "unreason\n", + "unreasonable\n", + "unreasonably\n", + "unreasoned\n", + "unreasoning\n", + "unreasons\n", + "unreel\n", + "unreeled\n", + "unreeler\n", + "unreelers\n", + "unreeling\n", + "unreels\n", + "unreeve\n", + "unreeved\n", + "unreeves\n", + "unreeving\n", + "unrefined\n", + "unrelated\n", + "unrelenting\n", + "unrelentingly\n", + "unreliable\n", + "unremembered\n", + "unrent\n", + "unrented\n", + "unrepaid\n", + "unrepair\n", + "unrepairs\n", + "unrepentant\n", + "unrequited\n", + "unresolved\n", + "unresponsive\n", + "unrest\n", + "unrested\n", + "unrestrained\n", + "unrestricted\n", + "unrests\n", + "unrewarding\n", + "unrhymed\n", + "unriddle\n", + "unriddled\n", + "unriddles\n", + "unriddling\n", + "unrifled\n", + "unrig\n", + "unrigged\n", + "unrigging\n", + "unrigs\n", + "unrimed\n", + "unrinsed\n", + "unrip\n", + "unripe\n", + "unripely\n", + "unriper\n", + "unripest\n", + "unripped\n", + "unripping\n", + "unrips\n", + "unrisen\n", + "unrivaled\n", + "unrivalled\n", + "unrobe\n", + "unrobed\n", + "unrobes\n", + "unrobing\n", + "unroll\n", + "unrolled\n", + "unrolling\n", + "unrolls\n", + "unroof\n", + "unroofed\n", + "unroofing\n", + "unroofs\n", + "unroot\n", + "unrooted\n", + "unrooting\n", + "unroots\n", + "unrough\n", + "unround\n", + "unrounded\n", + "unrounding\n", + "unrounds\n", + "unrove\n", + "unroven\n", + "unruffled\n", + "unruled\n", + "unrulier\n", + "unruliest\n", + "unruliness\n", + "unrulinesses\n", + "unruly\n", + "unrushed\n", + "uns\n", + "unsaddle\n", + "unsaddled\n", + "unsaddles\n", + "unsaddling\n", + "unsafe\n", + "unsafely\n", + "unsafeties\n", + "unsafety\n", + "unsaid\n", + "unsalted\n", + "unsanitary\n", + "unsated\n", + "unsatisfactory\n", + "unsatisfied\n", + "unsatisfying\n", + "unsaved\n", + "unsavory\n", + "unsawed\n", + "unsawn\n", + "unsay\n", + "unsaying\n", + "unsays\n", + "unscaled\n", + "unscathed\n", + "unscented\n", + "unscheduled\n", + "unscientific\n", + "unscramble\n", + "unscrambled\n", + "unscrambles\n", + "unscrambling\n", + "unscrew\n", + "unscrewed\n", + "unscrewing\n", + "unscrews\n", + "unscrupulous\n", + "unscrupulously\n", + "unscrupulousness\n", + "unscrupulousnesses\n", + "unseal\n", + "unsealed\n", + "unsealing\n", + "unseals\n", + "unseam\n", + "unseamed\n", + "unseaming\n", + "unseams\n", + "unseared\n", + "unseasonable\n", + "unseasonably\n", + "unseasoned\n", + "unseat\n", + "unseated\n", + "unseating\n", + "unseats\n", + "unseeded\n", + "unseeing\n", + "unseemlier\n", + "unseemliest\n", + "unseemly\n", + "unseen\n", + "unseized\n", + "unselfish\n", + "unselfishly\n", + "unselfishness\n", + "unselfishnesses\n", + "unsent\n", + "unserved\n", + "unset\n", + "unsets\n", + "unsetting\n", + "unsettle\n", + "unsettled\n", + "unsettles\n", + "unsettling\n", + "unsew\n", + "unsewed\n", + "unsewing\n", + "unsewn\n", + "unsews\n", + "unsex\n", + "unsexed\n", + "unsexes\n", + "unsexing\n", + "unsexual\n", + "unshaded\n", + "unshaken\n", + "unshamed\n", + "unshaped\n", + "unshapen\n", + "unshared\n", + "unsharp\n", + "unshaved\n", + "unshaven\n", + "unshed\n", + "unshell\n", + "unshelled\n", + "unshelling\n", + "unshells\n", + "unshift\n", + "unshifted\n", + "unshifting\n", + "unshifts\n", + "unship\n", + "unshipped\n", + "unshipping\n", + "unships\n", + "unshod\n", + "unshorn\n", + "unshrunk\n", + "unshut\n", + "unsicker\n", + "unsifted\n", + "unsight\n", + "unsighted\n", + "unsighting\n", + "unsights\n", + "unsigned\n", + "unsilent\n", + "unsinful\n", + "unsized\n", + "unskilled\n", + "unskillful\n", + "unskillfully\n", + "unslaked\n", + "unsling\n", + "unslinging\n", + "unslings\n", + "unslung\n", + "unsmoked\n", + "unsnap\n", + "unsnapped\n", + "unsnapping\n", + "unsnaps\n", + "unsnarl\n", + "unsnarled\n", + "unsnarling\n", + "unsnarls\n", + "unsoaked\n", + "unsober\n", + "unsocial\n", + "unsoiled\n", + "unsold\n", + "unsolder\n", + "unsoldered\n", + "unsoldering\n", + "unsolders\n", + "unsolicited\n", + "unsolid\n", + "unsolved\n", + "unsoncy\n", + "unsonsie\n", + "unsonsy\n", + "unsophisticated\n", + "unsorted\n", + "unsought\n", + "unsound\n", + "unsounder\n", + "unsoundest\n", + "unsoundly\n", + "unsoundness\n", + "unsoundnesses\n", + "unsoured\n", + "unsowed\n", + "unsown\n", + "unspeak\n", + "unspeakable\n", + "unspeakably\n", + "unspeaking\n", + "unspeaks\n", + "unspecified\n", + "unspent\n", + "unsphere\n", + "unsphered\n", + "unspheres\n", + "unsphering\n", + "unspilt\n", + "unsplit\n", + "unspoiled\n", + "unspoilt\n", + "unspoke\n", + "unspoken\n", + "unsprung\n", + "unspun\n", + "unstable\n", + "unstabler\n", + "unstablest\n", + "unstably\n", + "unstack\n", + "unstacked\n", + "unstacking\n", + "unstacks\n", + "unstate\n", + "unstated\n", + "unstates\n", + "unstating\n", + "unsteadied\n", + "unsteadier\n", + "unsteadies\n", + "unsteadiest\n", + "unsteadily\n", + "unsteadiness\n", + "unsteadinesses\n", + "unsteady\n", + "unsteadying\n", + "unsteel\n", + "unsteeled\n", + "unsteeling\n", + "unsteels\n", + "unstep\n", + "unstepped\n", + "unstepping\n", + "unsteps\n", + "unstick\n", + "unsticked\n", + "unsticking\n", + "unsticks\n", + "unstop\n", + "unstopped\n", + "unstopping\n", + "unstops\n", + "unstrap\n", + "unstrapped\n", + "unstrapping\n", + "unstraps\n", + "unstress\n", + "unstresses\n", + "unstring\n", + "unstringing\n", + "unstrings\n", + "unstructured\n", + "unstrung\n", + "unstung\n", + "unsubstantiated\n", + "unsubtle\n", + "unsuccessful\n", + "unsuited\n", + "unsung\n", + "unsunk\n", + "unsure\n", + "unsurely\n", + "unswathe\n", + "unswathed\n", + "unswathes\n", + "unswathing\n", + "unswayed\n", + "unswear\n", + "unswearing\n", + "unswears\n", + "unswept\n", + "unswore\n", + "unsworn\n", + "untack\n", + "untacked\n", + "untacking\n", + "untacks\n", + "untagged\n", + "untaken\n", + "untame\n", + "untamed\n", + "untangle\n", + "untangled\n", + "untangles\n", + "untangling\n", + "untanned\n", + "untapped\n", + "untasted\n", + "untaught\n", + "untaxed\n", + "unteach\n", + "unteaches\n", + "unteaching\n", + "untended\n", + "untested\n", + "untether\n", + "untethered\n", + "untethering\n", + "untethers\n", + "unthawed\n", + "unthink\n", + "unthinkable\n", + "unthinking\n", + "unthinkingly\n", + "unthinks\n", + "unthought\n", + "unthread\n", + "unthreaded\n", + "unthreading\n", + "unthreads\n", + "unthrone\n", + "unthroned\n", + "unthrones\n", + "unthroning\n", + "untidied\n", + "untidier\n", + "untidies\n", + "untidiest\n", + "untidily\n", + "untidy\n", + "untidying\n", + "untie\n", + "untied\n", + "unties\n", + "until\n", + "untilled\n", + "untilted\n", + "untimelier\n", + "untimeliest\n", + "untimely\n", + "untinged\n", + "untired\n", + "untiring\n", + "untitled\n", + "unto\n", + "untold\n", + "untoward\n", + "untraced\n", + "untrained\n", + "untread\n", + "untreading\n", + "untreads\n", + "untreated\n", + "untried\n", + "untrim\n", + "untrimmed\n", + "untrimming\n", + "untrims\n", + "untrod\n", + "untrodden\n", + "untrue\n", + "untruer\n", + "untruest\n", + "untruly\n", + "untruss\n", + "untrussed\n", + "untrusses\n", + "untrussing\n", + "untrustworthy\n", + "untrusty\n", + "untruth\n", + "untruthful\n", + "untruths\n", + "untuck\n", + "untucked\n", + "untucking\n", + "untucks\n", + "untufted\n", + "untune\n", + "untuned\n", + "untunes\n", + "untuning\n", + "unturned\n", + "untwine\n", + "untwined\n", + "untwines\n", + "untwining\n", + "untwist\n", + "untwisted\n", + "untwisting\n", + "untwists\n", + "untying\n", + "ununited\n", + "unurged\n", + "unusable\n", + "unused\n", + "unusual\n", + "unvalued\n", + "unvaried\n", + "unvarying\n", + "unveil\n", + "unveiled\n", + "unveiling\n", + "unveils\n", + "unveined\n", + "unverified\n", + "unversed\n", + "unvexed\n", + "unvext\n", + "unviable\n", + "unvocal\n", + "unvoice\n", + "unvoiced\n", + "unvoices\n", + "unvoicing\n", + "unwalled\n", + "unwanted\n", + "unwarier\n", + "unwariest\n", + "unwarily\n", + "unwarmed\n", + "unwarned\n", + "unwarped\n", + "unwarranted\n", + "unwary\n", + "unwas\n", + "unwashed\n", + "unwasheds\n", + "unwasted\n", + "unwavering\n", + "unwaxed\n", + "unweaned\n", + "unweary\n", + "unweave\n", + "unweaves\n", + "unweaving\n", + "unwed\n", + "unwedded\n", + "unweeded\n", + "unweeping\n", + "unweight\n", + "unweighted\n", + "unweighting\n", + "unweights\n", + "unwelcome\n", + "unwelded\n", + "unwell\n", + "unwept\n", + "unwetted\n", + "unwholesome\n", + "unwieldier\n", + "unwieldiest\n", + "unwieldy\n", + "unwifely\n", + "unwilled\n", + "unwilling\n", + "unwillingly\n", + "unwillingness\n", + "unwillingnesses\n", + "unwind\n", + "unwinder\n", + "unwinders\n", + "unwinding\n", + "unwinds\n", + "unwisdom\n", + "unwisdoms\n", + "unwise\n", + "unwisely\n", + "unwiser\n", + "unwisest\n", + "unwish\n", + "unwished\n", + "unwishes\n", + "unwishing\n", + "unwit\n", + "unwits\n", + "unwitted\n", + "unwitting\n", + "unwittingly\n", + "unwon\n", + "unwonted\n", + "unwooded\n", + "unwooed\n", + "unworkable\n", + "unworked\n", + "unworn\n", + "unworthier\n", + "unworthies\n", + "unworthiest\n", + "unworthily\n", + "unworthiness\n", + "unworthinesses\n", + "unworthy\n", + "unwound\n", + "unwove\n", + "unwoven\n", + "unwrap\n", + "unwrapped\n", + "unwrapping\n", + "unwraps\n", + "unwritten\n", + "unwrung\n", + "unyeaned\n", + "unyielding\n", + "unyoke\n", + "unyoked\n", + "unyokes\n", + "unyoking\n", + "unzip\n", + "unzipped\n", + "unzipping\n", + "unzips\n", + "unzoned\n", + "up\n", + "upas\n", + "upases\n", + "upbear\n", + "upbearer\n", + "upbearers\n", + "upbearing\n", + "upbears\n", + "upbeat\n", + "upbeats\n", + "upbind\n", + "upbinding\n", + "upbinds\n", + "upboil\n", + "upboiled\n", + "upboiling\n", + "upboils\n", + "upbore\n", + "upborne\n", + "upbound\n", + "upbraid\n", + "upbraided\n", + "upbraiding\n", + "upbraids\n", + "upbringing\n", + "upbringings\n", + "upbuild\n", + "upbuilding\n", + "upbuilds\n", + "upbuilt\n", + "upby\n", + "upbye\n", + "upcast\n", + "upcasting\n", + "upcasts\n", + "upchuck\n", + "upchucked\n", + "upchucking\n", + "upchucks\n", + "upclimb\n", + "upclimbed\n", + "upclimbing\n", + "upclimbs\n", + "upcoil\n", + "upcoiled\n", + "upcoiling\n", + "upcoils\n", + "upcoming\n", + "upcurl\n", + "upcurled\n", + "upcurling\n", + "upcurls\n", + "upcurve\n", + "upcurved\n", + "upcurves\n", + "upcurving\n", + "updart\n", + "updarted\n", + "updarting\n", + "updarts\n", + "update\n", + "updated\n", + "updater\n", + "updaters\n", + "updates\n", + "updating\n", + "updive\n", + "updived\n", + "updives\n", + "updiving\n", + "updo\n", + "updos\n", + "updove\n", + "updraft\n", + "updrafts\n", + "updried\n", + "updries\n", + "updry\n", + "updrying\n", + "upend\n", + "upended\n", + "upending\n", + "upends\n", + "upfield\n", + "upfling\n", + "upflinging\n", + "upflings\n", + "upflow\n", + "upflowed\n", + "upflowing\n", + "upflows\n", + "upflung\n", + "upfold\n", + "upfolded\n", + "upfolding\n", + "upfolds\n", + "upgather\n", + "upgathered\n", + "upgathering\n", + "upgathers\n", + "upgaze\n", + "upgazed\n", + "upgazes\n", + "upgazing\n", + "upgird\n", + "upgirded\n", + "upgirding\n", + "upgirds\n", + "upgirt\n", + "upgoing\n", + "upgrade\n", + "upgraded\n", + "upgrades\n", + "upgrading\n", + "upgrew\n", + "upgrow\n", + "upgrowing\n", + "upgrown\n", + "upgrows\n", + "upgrowth\n", + "upgrowths\n", + "upheap\n", + "upheaped\n", + "upheaping\n", + "upheaps\n", + "upheaval\n", + "upheavals\n", + "upheave\n", + "upheaved\n", + "upheaver\n", + "upheavers\n", + "upheaves\n", + "upheaving\n", + "upheld\n", + "uphill\n", + "uphills\n", + "uphoard\n", + "uphoarded\n", + "uphoarding\n", + "uphoards\n", + "uphold\n", + "upholder\n", + "upholders\n", + "upholding\n", + "upholds\n", + "upholster\n", + "upholstered\n", + "upholsterer\n", + "upholsterers\n", + "upholsteries\n", + "upholstering\n", + "upholsters\n", + "upholstery\n", + "uphove\n", + "uphroe\n", + "uphroes\n", + "upkeep\n", + "upkeeps\n", + "upland\n", + "uplander\n", + "uplanders\n", + "uplands\n", + "upleap\n", + "upleaped\n", + "upleaping\n", + "upleaps\n", + "upleapt\n", + "uplift\n", + "uplifted\n", + "uplifter\n", + "uplifters\n", + "uplifting\n", + "uplifts\n", + "uplight\n", + "uplighted\n", + "uplighting\n", + "uplights\n", + "uplit\n", + "upmost\n", + "upo\n", + "upon\n", + "upped\n", + "upper\n", + "uppercase\n", + "uppercut\n", + "uppercuts\n", + "uppercutting\n", + "uppermost\n", + "uppers\n", + "uppile\n", + "uppiled\n", + "uppiles\n", + "uppiling\n", + "upping\n", + "uppings\n", + "uppish\n", + "uppishly\n", + "uppity\n", + "upprop\n", + "uppropped\n", + "uppropping\n", + "upprops\n", + "upraise\n", + "upraised\n", + "upraiser\n", + "upraisers\n", + "upraises\n", + "upraising\n", + "upreach\n", + "upreached\n", + "upreaches\n", + "upreaching\n", + "uprear\n", + "upreared\n", + "uprearing\n", + "uprears\n", + "upright\n", + "uprighted\n", + "uprighting\n", + "uprightness\n", + "uprightnesses\n", + "uprights\n", + "uprise\n", + "uprisen\n", + "upriser\n", + "uprisers\n", + "uprises\n", + "uprising\n", + "uprisings\n", + "upriver\n", + "uprivers\n", + "uproar\n", + "uproarious\n", + "uproariously\n", + "uproars\n", + "uproot\n", + "uprootal\n", + "uprootals\n", + "uprooted\n", + "uprooter\n", + "uprooters\n", + "uprooting\n", + "uproots\n", + "uprose\n", + "uprouse\n", + "uproused\n", + "uprouses\n", + "uprousing\n", + "uprush\n", + "uprushed\n", + "uprushes\n", + "uprushing\n", + "ups\n", + "upsend\n", + "upsending\n", + "upsends\n", + "upsent\n", + "upset\n", + "upsets\n", + "upsetter\n", + "upsetters\n", + "upsetting\n", + "upshift\n", + "upshifted\n", + "upshifting\n", + "upshifts\n", + "upshoot\n", + "upshooting\n", + "upshoots\n", + "upshot\n", + "upshots\n", + "upside\n", + "upsidedown\n", + "upsides\n", + "upsilon\n", + "upsilons\n", + "upsoar\n", + "upsoared\n", + "upsoaring\n", + "upsoars\n", + "upsprang\n", + "upspring\n", + "upspringing\n", + "upsprings\n", + "upsprung\n", + "upstage\n", + "upstaged\n", + "upstages\n", + "upstaging\n", + "upstair\n", + "upstairs\n", + "upstand\n", + "upstanding\n", + "upstands\n", + "upstare\n", + "upstared\n", + "upstares\n", + "upstaring\n", + "upstart\n", + "upstarted\n", + "upstarting\n", + "upstarts\n", + "upstate\n", + "upstater\n", + "upstaters\n", + "upstates\n", + "upstep\n", + "upstepped\n", + "upstepping\n", + "upsteps\n", + "upstir\n", + "upstirred\n", + "upstirring\n", + "upstirs\n", + "upstood\n", + "upstream\n", + "upstroke\n", + "upstrokes\n", + "upsurge\n", + "upsurged\n", + "upsurges\n", + "upsurging\n", + "upsweep\n", + "upsweeping\n", + "upsweeps\n", + "upswell\n", + "upswelled\n", + "upswelling\n", + "upswells\n", + "upswept\n", + "upswing\n", + "upswinging\n", + "upswings\n", + "upswollen\n", + "upswung\n", + "uptake\n", + "uptakes\n", + "uptear\n", + "uptearing\n", + "uptears\n", + "upthrew\n", + "upthrow\n", + "upthrowing\n", + "upthrown\n", + "upthrows\n", + "upthrust\n", + "upthrusting\n", + "upthrusts\n", + "uptight\n", + "uptilt\n", + "uptilted\n", + "uptilting\n", + "uptilts\n", + "uptime\n", + "uptimes\n", + "uptore\n", + "uptorn\n", + "uptoss\n", + "uptossed\n", + "uptosses\n", + "uptossing\n", + "uptown\n", + "uptowner\n", + "uptowners\n", + "uptowns\n", + "uptrend\n", + "uptrends\n", + "upturn\n", + "upturned\n", + "upturning\n", + "upturns\n", + "upwaft\n", + "upwafted\n", + "upwafting\n", + "upwafts\n", + "upward\n", + "upwardly\n", + "upwards\n", + "upwell\n", + "upwelled\n", + "upwelling\n", + "upwells\n", + "upwind\n", + "upwinds\n", + "uracil\n", + "uracils\n", + "uraei\n", + "uraemia\n", + "uraemias\n", + "uraemic\n", + "uraeus\n", + "uraeuses\n", + "uralite\n", + "uralites\n", + "uralitic\n", + "uranic\n", + "uranide\n", + "uranides\n", + "uranism\n", + "uranisms\n", + "uranite\n", + "uranites\n", + "uranitic\n", + "uranium\n", + "uraniums\n", + "uranous\n", + "uranyl\n", + "uranylic\n", + "uranyls\n", + "urare\n", + "urares\n", + "urari\n", + "uraris\n", + "urase\n", + "urases\n", + "urate\n", + "urates\n", + "uratic\n", + "urban\n", + "urbane\n", + "urbanely\n", + "urbaner\n", + "urbanest\n", + "urbanise\n", + "urbanised\n", + "urbanises\n", + "urbanising\n", + "urbanism\n", + "urbanisms\n", + "urbanist\n", + "urbanists\n", + "urbanite\n", + "urbanites\n", + "urbanities\n", + "urbanity\n", + "urbanize\n", + "urbanized\n", + "urbanizes\n", + "urbanizing\n", + "urchin\n", + "urchins\n", + "urd\n", + "urds\n", + "urea\n", + "ureal\n", + "ureas\n", + "urease\n", + "ureases\n", + "uredia\n", + "uredial\n", + "uredinia\n", + "uredium\n", + "uredo\n", + "uredos\n", + "ureic\n", + "ureide\n", + "ureides\n", + "uremia\n", + "uremias\n", + "uremic\n", + "ureter\n", + "ureteral\n", + "ureteric\n", + "ureters\n", + "urethan\n", + "urethane\n", + "urethanes\n", + "urethans\n", + "urethra\n", + "urethrae\n", + "urethral\n", + "urethras\n", + "uretic\n", + "urge\n", + "urged\n", + "urgencies\n", + "urgency\n", + "urgent\n", + "urgently\n", + "urger\n", + "urgers\n", + "urges\n", + "urging\n", + "urgingly\n", + "uric\n", + "uridine\n", + "uridines\n", + "urinal\n", + "urinals\n", + "urinalysis\n", + "urinaries\n", + "urinary\n", + "urinate\n", + "urinated\n", + "urinates\n", + "urinating\n", + "urination\n", + "urinations\n", + "urine\n", + "urinemia\n", + "urinemias\n", + "urinemic\n", + "urines\n", + "urinose\n", + "urinous\n", + "urn\n", + "urnlike\n", + "urns\n", + "urochord\n", + "urochords\n", + "urodele\n", + "urodeles\n", + "urolagnia\n", + "urolagnias\n", + "urolith\n", + "uroliths\n", + "urologic\n", + "urologies\n", + "urology\n", + "uropod\n", + "uropodal\n", + "uropods\n", + "uroscopies\n", + "uroscopy\n", + "urostyle\n", + "urostyles\n", + "ursa\n", + "ursae\n", + "ursiform\n", + "ursine\n", + "urticant\n", + "urticants\n", + "urticate\n", + "urticated\n", + "urticates\n", + "urticating\n", + "urus\n", + "uruses\n", + "urushiol\n", + "urushiols\n", + "us\n", + "usability\n", + "usable\n", + "usably\n", + "usage\n", + "usages\n", + "usance\n", + "usances\n", + "usaunce\n", + "usaunces\n", + "use\n", + "useable\n", + "useably\n", + "used\n", + "useful\n", + "usefully\n", + "usefulness\n", + "useless\n", + "uselessly\n", + "uselessness\n", + "uselessnesses\n", + "user\n", + "users\n", + "uses\n", + "usher\n", + "ushered\n", + "usherette\n", + "usherettes\n", + "ushering\n", + "ushers\n", + "using\n", + "usnea\n", + "usneas\n", + "usquabae\n", + "usquabaes\n", + "usque\n", + "usquebae\n", + "usquebaes\n", + "usques\n", + "ustulate\n", + "usual\n", + "usually\n", + "usuals\n", + "usufruct\n", + "usufructs\n", + "usurer\n", + "usurers\n", + "usuries\n", + "usurious\n", + "usurp\n", + "usurped\n", + "usurper\n", + "usurpers\n", + "usurping\n", + "usurps\n", + "usury\n", + "ut\n", + "uta\n", + "utas\n", + "utensil\n", + "utensils\n", + "uteri\n", + "uterine\n", + "uterus\n", + "uteruses\n", + "utile\n", + "utilidor\n", + "utilidors\n", + "utilise\n", + "utilised\n", + "utiliser\n", + "utilisers\n", + "utilises\n", + "utilising\n", + "utilitarian\n", + "utilities\n", + "utility\n", + "utilization\n", + "utilize\n", + "utilized\n", + "utilizer\n", + "utilizers\n", + "utilizes\n", + "utilizing\n", + "utmost\n", + "utmosts\n", + "utopia\n", + "utopian\n", + "utopians\n", + "utopias\n", + "utopism\n", + "utopisms\n", + "utopist\n", + "utopists\n", + "utricle\n", + "utricles\n", + "utriculi\n", + "uts\n", + "utter\n", + "utterance\n", + "utterances\n", + "uttered\n", + "utterer\n", + "utterers\n", + "uttering\n", + "utterly\n", + "utters\n", + "uvea\n", + "uveal\n", + "uveas\n", + "uveitic\n", + "uveitis\n", + "uveitises\n", + "uveous\n", + "uvula\n", + "uvulae\n", + "uvular\n", + "uvularly\n", + "uvulars\n", + "uvulas\n", + "uvulitis\n", + "uvulitises\n", + "uxorial\n", + "uxorious\n", + "vacancies\n", + "vacancy\n", + "vacant\n", + "vacantly\n", + "vacate\n", + "vacated\n", + "vacates\n", + "vacating\n", + "vacation\n", + "vacationed\n", + "vacationer\n", + "vacationers\n", + "vacationing\n", + "vacations\n", + "vaccina\n", + "vaccinal\n", + "vaccinas\n", + "vaccinate\n", + "vaccinated\n", + "vaccinates\n", + "vaccinating\n", + "vaccination\n", + "vaccinations\n", + "vaccine\n", + "vaccines\n", + "vaccinia\n", + "vaccinias\n", + "vacillate\n", + "vacillated\n", + "vacillates\n", + "vacillating\n", + "vacillation\n", + "vacillations\n", + "vacua\n", + "vacuities\n", + "vacuity\n", + "vacuolar\n", + "vacuole\n", + "vacuoles\n", + "vacuous\n", + "vacuously\n", + "vacuousness\n", + "vacuousnesses\n", + "vacuum\n", + "vacuumed\n", + "vacuuming\n", + "vacuums\n", + "vadose\n", + "vagabond\n", + "vagabonded\n", + "vagabonding\n", + "vagabonds\n", + "vagal\n", + "vagally\n", + "vagaries\n", + "vagary\n", + "vagi\n", + "vagile\n", + "vagilities\n", + "vagility\n", + "vagina\n", + "vaginae\n", + "vaginal\n", + "vaginas\n", + "vaginate\n", + "vagotomies\n", + "vagotomy\n", + "vagrancies\n", + "vagrancy\n", + "vagrant\n", + "vagrants\n", + "vagrom\n", + "vague\n", + "vaguely\n", + "vagueness\n", + "vaguenesses\n", + "vaguer\n", + "vaguest\n", + "vagus\n", + "vahine\n", + "vahines\n", + "vail\n", + "vailed\n", + "vailing\n", + "vails\n", + "vain\n", + "vainer\n", + "vainest\n", + "vainly\n", + "vainness\n", + "vainnesses\n", + "vair\n", + "vairs\n", + "vakeel\n", + "vakeels\n", + "vakil\n", + "vakils\n", + "valance\n", + "valanced\n", + "valances\n", + "valancing\n", + "vale\n", + "valedictorian\n", + "valedictorians\n", + "valedictories\n", + "valedictory\n", + "valence\n", + "valences\n", + "valencia\n", + "valencias\n", + "valencies\n", + "valency\n", + "valentine\n", + "valentines\n", + "valerate\n", + "valerates\n", + "valerian\n", + "valerians\n", + "valeric\n", + "vales\n", + "valet\n", + "valeted\n", + "valeting\n", + "valets\n", + "valgoid\n", + "valgus\n", + "valguses\n", + "valiance\n", + "valiances\n", + "valiancies\n", + "valiancy\n", + "valiant\n", + "valiantly\n", + "valiants\n", + "valid\n", + "validate\n", + "validated\n", + "validates\n", + "validating\n", + "validation\n", + "validations\n", + "validities\n", + "validity\n", + "validly\n", + "validness\n", + "validnesses\n", + "valine\n", + "valines\n", + "valise\n", + "valises\n", + "valkyr\n", + "valkyrie\n", + "valkyries\n", + "valkyrs\n", + "vallate\n", + "valley\n", + "valleys\n", + "valonia\n", + "valonias\n", + "valor\n", + "valorise\n", + "valorised\n", + "valorises\n", + "valorising\n", + "valorize\n", + "valorized\n", + "valorizes\n", + "valorizing\n", + "valorous\n", + "valors\n", + "valour\n", + "valours\n", + "valse\n", + "valses\n", + "valuable\n", + "valuables\n", + "valuably\n", + "valuate\n", + "valuated\n", + "valuates\n", + "valuating\n", + "valuation\n", + "valuations\n", + "valuator\n", + "valuators\n", + "value\n", + "valued\n", + "valueless\n", + "valuer\n", + "valuers\n", + "values\n", + "valuing\n", + "valuta\n", + "valutas\n", + "valval\n", + "valvar\n", + "valvate\n", + "valve\n", + "valved\n", + "valveless\n", + "valvelet\n", + "valvelets\n", + "valves\n", + "valving\n", + "valvula\n", + "valvulae\n", + "valvular\n", + "valvule\n", + "valvules\n", + "vambrace\n", + "vambraces\n", + "vamoose\n", + "vamoosed\n", + "vamooses\n", + "vamoosing\n", + "vamose\n", + "vamosed\n", + "vamoses\n", + "vamosing\n", + "vamp\n", + "vamped\n", + "vamper\n", + "vampers\n", + "vamping\n", + "vampire\n", + "vampires\n", + "vampiric\n", + "vampish\n", + "vamps\n", + "van\n", + "vanadate\n", + "vanadates\n", + "vanadic\n", + "vanadium\n", + "vanadiums\n", + "vanadous\n", + "vanda\n", + "vandal\n", + "vandalic\n", + "vandalism\n", + "vandalisms\n", + "vandalize\n", + "vandalized\n", + "vandalizes\n", + "vandalizing\n", + "vandals\n", + "vandas\n", + "vandyke\n", + "vandyked\n", + "vandykes\n", + "vane\n", + "vaned\n", + "vanes\n", + "vang\n", + "vangs\n", + "vanguard\n", + "vanguards\n", + "vanilla\n", + "vanillas\n", + "vanillic\n", + "vanillin\n", + "vanillins\n", + "vanish\n", + "vanished\n", + "vanisher\n", + "vanishers\n", + "vanishes\n", + "vanishing\n", + "vanitied\n", + "vanities\n", + "vanity\n", + "vanman\n", + "vanmen\n", + "vanquish\n", + "vanquished\n", + "vanquishes\n", + "vanquishing\n", + "vans\n", + "vantage\n", + "vantages\n", + "vanward\n", + "vapid\n", + "vapidities\n", + "vapidity\n", + "vapidly\n", + "vapidness\n", + "vapidnesses\n", + "vapor\n", + "vapored\n", + "vaporer\n", + "vaporers\n", + "vaporing\n", + "vaporings\n", + "vaporise\n", + "vaporised\n", + "vaporises\n", + "vaporish\n", + "vaporising\n", + "vaporization\n", + "vaporizations\n", + "vaporize\n", + "vaporized\n", + "vaporizes\n", + "vaporizing\n", + "vaporous\n", + "vapors\n", + "vapory\n", + "vapour\n", + "vapoured\n", + "vapourer\n", + "vapourers\n", + "vapouring\n", + "vapours\n", + "vapoury\n", + "vaquero\n", + "vaqueros\n", + "vara\n", + "varas\n", + "varia\n", + "variabilities\n", + "variability\n", + "variable\n", + "variableness\n", + "variablenesses\n", + "variables\n", + "variably\n", + "variance\n", + "variances\n", + "variant\n", + "variants\n", + "variate\n", + "variated\n", + "variates\n", + "variating\n", + "variation\n", + "variations\n", + "varices\n", + "varicose\n", + "varied\n", + "variedly\n", + "variegate\n", + "variegated\n", + "variegates\n", + "variegating\n", + "variegation\n", + "variegations\n", + "varier\n", + "variers\n", + "varies\n", + "varietal\n", + "varieties\n", + "variety\n", + "variform\n", + "variola\n", + "variolar\n", + "variolas\n", + "variole\n", + "varioles\n", + "variorum\n", + "variorums\n", + "various\n", + "variously\n", + "varistor\n", + "varistors\n", + "varix\n", + "varlet\n", + "varletries\n", + "varletry\n", + "varlets\n", + "varment\n", + "varments\n", + "varmint\n", + "varmints\n", + "varna\n", + "varnas\n", + "varnish\n", + "varnished\n", + "varnishes\n", + "varnishing\n", + "varnishy\n", + "varsities\n", + "varsity\n", + "varus\n", + "varuses\n", + "varve\n", + "varved\n", + "varves\n", + "vary\n", + "varying\n", + "vas\n", + "vasa\n", + "vasal\n", + "vascula\n", + "vascular\n", + "vasculum\n", + "vasculums\n", + "vase\n", + "vaselike\n", + "vases\n", + "vasiform\n", + "vassal\n", + "vassalage\n", + "vassalages\n", + "vassals\n", + "vast\n", + "vaster\n", + "vastest\n", + "vastier\n", + "vastiest\n", + "vastities\n", + "vastity\n", + "vastly\n", + "vastness\n", + "vastnesses\n", + "vasts\n", + "vasty\n", + "vat\n", + "vatful\n", + "vatfuls\n", + "vatic\n", + "vatical\n", + "vaticide\n", + "vaticides\n", + "vats\n", + "vatted\n", + "vatting\n", + "vau\n", + "vaudeville\n", + "vaudevilles\n", + "vault\n", + "vaulted\n", + "vaulter\n", + "vaulters\n", + "vaultier\n", + "vaultiest\n", + "vaulting\n", + "vaultings\n", + "vaults\n", + "vaulty\n", + "vaunt\n", + "vaunted\n", + "vaunter\n", + "vaunters\n", + "vauntful\n", + "vauntie\n", + "vaunting\n", + "vaunts\n", + "vaunty\n", + "vaus\n", + "vav\n", + "vavasor\n", + "vavasors\n", + "vavasour\n", + "vavasours\n", + "vavassor\n", + "vavassors\n", + "vavs\n", + "vaw\n", + "vaward\n", + "vawards\n", + "vawntie\n", + "vaws\n", + "veal\n", + "vealed\n", + "vealer\n", + "vealers\n", + "vealier\n", + "vealiest\n", + "vealing\n", + "veals\n", + "vealy\n", + "vector\n", + "vectored\n", + "vectoring\n", + "vectors\n", + "vedalia\n", + "vedalias\n", + "vedette\n", + "vedettes\n", + "vee\n", + "veena\n", + "veenas\n", + "veep\n", + "veepee\n", + "veepees\n", + "veeps\n", + "veer\n", + "veered\n", + "veeries\n", + "veering\n", + "veers\n", + "veery\n", + "vees\n", + "veg\n", + "vegan\n", + "veganism\n", + "veganisms\n", + "vegans\n", + "vegetable\n", + "vegetables\n", + "vegetal\n", + "vegetant\n", + "vegetarian\n", + "vegetarianism\n", + "vegetarianisms\n", + "vegetarians\n", + "vegetate\n", + "vegetated\n", + "vegetates\n", + "vegetating\n", + "vegetation\n", + "vegetational\n", + "vegetations\n", + "vegete\n", + "vegetist\n", + "vegetists\n", + "vegetive\n", + "vehemence\n", + "vehemences\n", + "vehement\n", + "vehemently\n", + "vehicle\n", + "vehicles\n", + "vehicular\n", + "veil\n", + "veiled\n", + "veiledly\n", + "veiler\n", + "veilers\n", + "veiling\n", + "veilings\n", + "veillike\n", + "veils\n", + "vein\n", + "veinal\n", + "veined\n", + "veiner\n", + "veiners\n", + "veinier\n", + "veiniest\n", + "veining\n", + "veinings\n", + "veinless\n", + "veinlet\n", + "veinlets\n", + "veinlike\n", + "veins\n", + "veinule\n", + "veinules\n", + "veinulet\n", + "veinulets\n", + "veiny\n", + "vela\n", + "velamen\n", + "velamina\n", + "velar\n", + "velaria\n", + "velarium\n", + "velarize\n", + "velarized\n", + "velarizes\n", + "velarizing\n", + "velars\n", + "velate\n", + "veld\n", + "velds\n", + "veldt\n", + "veldts\n", + "veliger\n", + "veligers\n", + "velites\n", + "velleities\n", + "velleity\n", + "vellum\n", + "vellums\n", + "veloce\n", + "velocities\n", + "velocity\n", + "velour\n", + "velours\n", + "veloute\n", + "veloutes\n", + "velum\n", + "velure\n", + "velured\n", + "velures\n", + "veluring\n", + "velveret\n", + "velverets\n", + "velvet\n", + "velveted\n", + "velvets\n", + "velvety\n", + "vena\n", + "venae\n", + "venal\n", + "venalities\n", + "venality\n", + "venally\n", + "venatic\n", + "venation\n", + "venations\n", + "vend\n", + "vendable\n", + "vendace\n", + "vendaces\n", + "vended\n", + "vendee\n", + "vendees\n", + "vender\n", + "venders\n", + "vendetta\n", + "vendettas\n", + "vendible\n", + "vendibles\n", + "vendibly\n", + "vending\n", + "vendor\n", + "vendors\n", + "vends\n", + "vendue\n", + "vendues\n", + "veneer\n", + "veneered\n", + "veneerer\n", + "veneerers\n", + "veneering\n", + "veneers\n", + "venenate\n", + "venenated\n", + "venenates\n", + "venenating\n", + "venenose\n", + "venerable\n", + "venerate\n", + "venerated\n", + "venerates\n", + "venerating\n", + "veneration\n", + "venerations\n", + "venereal\n", + "veneries\n", + "venery\n", + "venetian\n", + "venetians\n", + "venge\n", + "vengeance\n", + "vengeances\n", + "venged\n", + "vengeful\n", + "vengefully\n", + "venges\n", + "venging\n", + "venial\n", + "venially\n", + "venin\n", + "venine\n", + "venines\n", + "venins\n", + "venire\n", + "venires\n", + "venison\n", + "venisons\n", + "venom\n", + "venomed\n", + "venomer\n", + "venomers\n", + "venoming\n", + "venomous\n", + "venoms\n", + "venose\n", + "venosities\n", + "venosity\n", + "venous\n", + "venously\n", + "vent\n", + "ventage\n", + "ventages\n", + "ventail\n", + "ventails\n", + "vented\n", + "venter\n", + "venters\n", + "ventilate\n", + "ventilated\n", + "ventilates\n", + "ventilating\n", + "ventilation\n", + "ventilations\n", + "ventilator\n", + "ventilators\n", + "venting\n", + "ventless\n", + "ventral\n", + "ventrals\n", + "ventricle\n", + "ventricles\n", + "ventriloquism\n", + "ventriloquisms\n", + "ventriloquist\n", + "ventriloquists\n", + "ventriloquy\n", + "ventriloquys\n", + "vents\n", + "venture\n", + "ventured\n", + "venturer\n", + "venturers\n", + "ventures\n", + "venturesome\n", + "venturesomely\n", + "venturesomeness\n", + "venturesomenesses\n", + "venturi\n", + "venturing\n", + "venturis\n", + "venue\n", + "venues\n", + "venular\n", + "venule\n", + "venules\n", + "venulose\n", + "venulous\n", + "vera\n", + "veracious\n", + "veracities\n", + "veracity\n", + "veranda\n", + "verandah\n", + "verandahs\n", + "verandas\n", + "veratria\n", + "veratrias\n", + "veratrin\n", + "veratrins\n", + "veratrum\n", + "veratrums\n", + "verb\n", + "verbal\n", + "verbalization\n", + "verbalizations\n", + "verbalize\n", + "verbalized\n", + "verbalizes\n", + "verbalizing\n", + "verbally\n", + "verbals\n", + "verbatim\n", + "verbena\n", + "verbenas\n", + "verbiage\n", + "verbiages\n", + "verbid\n", + "verbids\n", + "verbified\n", + "verbifies\n", + "verbify\n", + "verbifying\n", + "verbile\n", + "verbiles\n", + "verbless\n", + "verbose\n", + "verbosities\n", + "verbosity\n", + "verboten\n", + "verbs\n", + "verdancies\n", + "verdancy\n", + "verdant\n", + "verderer\n", + "verderers\n", + "verderor\n", + "verderors\n", + "verdict\n", + "verdicts\n", + "verdin\n", + "verdins\n", + "verditer\n", + "verditers\n", + "verdure\n", + "verdured\n", + "verdures\n", + "verecund\n", + "verge\n", + "verged\n", + "vergence\n", + "vergences\n", + "verger\n", + "vergers\n", + "verges\n", + "verging\n", + "verglas\n", + "verglases\n", + "veridic\n", + "verier\n", + "veriest\n", + "verifiable\n", + "verification\n", + "verifications\n", + "verified\n", + "verifier\n", + "verifiers\n", + "verifies\n", + "verify\n", + "verifying\n", + "verily\n", + "verism\n", + "verismo\n", + "verismos\n", + "verisms\n", + "verist\n", + "veristic\n", + "verists\n", + "veritable\n", + "veritably\n", + "veritas\n", + "veritates\n", + "verities\n", + "verity\n", + "verjuice\n", + "verjuices\n", + "vermeil\n", + "vermeils\n", + "vermes\n", + "vermian\n", + "vermicelli\n", + "vermicellis\n", + "vermin\n", + "vermis\n", + "vermoulu\n", + "vermouth\n", + "vermouths\n", + "vermuth\n", + "vermuths\n", + "vernacle\n", + "vernacles\n", + "vernacular\n", + "vernaculars\n", + "vernal\n", + "vernally\n", + "vernicle\n", + "vernicles\n", + "vernier\n", + "verniers\n", + "vernix\n", + "vernixes\n", + "veronica\n", + "veronicas\n", + "verruca\n", + "verrucae\n", + "versal\n", + "versant\n", + "versants\n", + "versatile\n", + "versatilities\n", + "versatility\n", + "verse\n", + "versed\n", + "verseman\n", + "versemen\n", + "verser\n", + "versers\n", + "verses\n", + "verset\n", + "versets\n", + "versicle\n", + "versicles\n", + "versified\n", + "versifies\n", + "versify\n", + "versifying\n", + "versine\n", + "versines\n", + "versing\n", + "version\n", + "versions\n", + "verso\n", + "versos\n", + "verst\n", + "verste\n", + "verstes\n", + "versts\n", + "versus\n", + "vert\n", + "vertebra\n", + "vertebrae\n", + "vertebral\n", + "vertebras\n", + "vertebrate\n", + "vertebrates\n", + "vertex\n", + "vertexes\n", + "vertical\n", + "vertically\n", + "verticalness\n", + "verticalnesses\n", + "verticals\n", + "vertices\n", + "verticil\n", + "verticils\n", + "vertigines\n", + "vertigo\n", + "vertigoes\n", + "vertigos\n", + "verts\n", + "vertu\n", + "vertus\n", + "vervain\n", + "vervains\n", + "verve\n", + "verves\n", + "vervet\n", + "vervets\n", + "very\n", + "vesica\n", + "vesicae\n", + "vesical\n", + "vesicant\n", + "vesicants\n", + "vesicate\n", + "vesicated\n", + "vesicates\n", + "vesicating\n", + "vesicle\n", + "vesicles\n", + "vesicula\n", + "vesiculae\n", + "vesicular\n", + "vesigia\n", + "vesper\n", + "vesperal\n", + "vesperals\n", + "vespers\n", + "vespiaries\n", + "vespiary\n", + "vespid\n", + "vespids\n", + "vespine\n", + "vessel\n", + "vesseled\n", + "vessels\n", + "vest\n", + "vesta\n", + "vestal\n", + "vestally\n", + "vestals\n", + "vestas\n", + "vested\n", + "vestee\n", + "vestees\n", + "vestiaries\n", + "vestiary\n", + "vestibular\n", + "vestibule\n", + "vestibules\n", + "vestige\n", + "vestiges\n", + "vestigial\n", + "vestigially\n", + "vesting\n", + "vestings\n", + "vestless\n", + "vestlike\n", + "vestment\n", + "vestments\n", + "vestral\n", + "vestries\n", + "vestry\n", + "vests\n", + "vestural\n", + "vesture\n", + "vestured\n", + "vestures\n", + "vesturing\n", + "vesuvian\n", + "vesuvians\n", + "vet\n", + "vetch\n", + "vetches\n", + "veteran\n", + "veterans\n", + "veterinarian\n", + "veterinarians\n", + "veterinary\n", + "vetiver\n", + "vetivers\n", + "veto\n", + "vetoed\n", + "vetoer\n", + "vetoers\n", + "vetoes\n", + "vetoing\n", + "vets\n", + "vetted\n", + "vetting\n", + "vex\n", + "vexation\n", + "vexations\n", + "vexatious\n", + "vexed\n", + "vexedly\n", + "vexer\n", + "vexers\n", + "vexes\n", + "vexil\n", + "vexilla\n", + "vexillar\n", + "vexillum\n", + "vexils\n", + "vexing\n", + "vexingly\n", + "vext\n", + "via\n", + "viabilities\n", + "viability\n", + "viable\n", + "viably\n", + "viaduct\n", + "viaducts\n", + "vial\n", + "vialed\n", + "vialing\n", + "vialled\n", + "vialling\n", + "vials\n", + "viand\n", + "viands\n", + "viatic\n", + "viatica\n", + "viatical\n", + "viaticum\n", + "viaticums\n", + "viator\n", + "viatores\n", + "viators\n", + "vibes\n", + "vibioid\n", + "vibist\n", + "vibists\n", + "vibrance\n", + "vibrances\n", + "vibrancies\n", + "vibrancy\n", + "vibrant\n", + "vibrants\n", + "vibrate\n", + "vibrated\n", + "vibrates\n", + "vibrating\n", + "vibration\n", + "vibrations\n", + "vibrato\n", + "vibrator\n", + "vibrators\n", + "vibratory\n", + "vibratos\n", + "vibrio\n", + "vibrion\n", + "vibrions\n", + "vibrios\n", + "vibrissa\n", + "vibrissae\n", + "viburnum\n", + "viburnums\n", + "vicar\n", + "vicarage\n", + "vicarages\n", + "vicarate\n", + "vicarates\n", + "vicarial\n", + "vicariate\n", + "vicariates\n", + "vicarious\n", + "vicariously\n", + "vicariousness\n", + "vicariousnesses\n", + "vicarly\n", + "vicars\n", + "vice\n", + "viced\n", + "viceless\n", + "vicenary\n", + "viceroy\n", + "viceroys\n", + "vices\n", + "vichies\n", + "vichy\n", + "vicinage\n", + "vicinages\n", + "vicinal\n", + "vicing\n", + "vicinities\n", + "vicinity\n", + "vicious\n", + "viciously\n", + "viciousness\n", + "viciousnesses\n", + "vicissitude\n", + "vicissitudes\n", + "vicomte\n", + "vicomtes\n", + "victim\n", + "victimization\n", + "victimizations\n", + "victimize\n", + "victimized\n", + "victimizer\n", + "victimizers\n", + "victimizes\n", + "victimizing\n", + "victims\n", + "victor\n", + "victoria\n", + "victorias\n", + "victories\n", + "victorious\n", + "victoriously\n", + "victors\n", + "victory\n", + "victress\n", + "victresses\n", + "victual\n", + "victualed\n", + "victualing\n", + "victualled\n", + "victualling\n", + "victuals\n", + "vicugna\n", + "vicugnas\n", + "vicuna\n", + "vicunas\n", + "vide\n", + "video\n", + "videos\n", + "videotape\n", + "videotaped\n", + "videotapes\n", + "videotaping\n", + "vidette\n", + "videttes\n", + "vidicon\n", + "vidicons\n", + "viduities\n", + "viduity\n", + "vie\n", + "vied\n", + "vier\n", + "viers\n", + "vies\n", + "view\n", + "viewable\n", + "viewed\n", + "viewer\n", + "viewers\n", + "viewier\n", + "viewiest\n", + "viewing\n", + "viewings\n", + "viewless\n", + "viewpoint\n", + "viewpoints\n", + "views\n", + "viewy\n", + "vigil\n", + "vigilance\n", + "vigilances\n", + "vigilant\n", + "vigilante\n", + "vigilantes\n", + "vigilantly\n", + "vigils\n", + "vignette\n", + "vignetted\n", + "vignettes\n", + "vignetting\n", + "vigor\n", + "vigorish\n", + "vigorishes\n", + "vigoroso\n", + "vigorous\n", + "vigorously\n", + "vigorousness\n", + "vigorousnesses\n", + "vigors\n", + "vigour\n", + "vigours\n", + "viking\n", + "vikings\n", + "vilayet\n", + "vilayets\n", + "vile\n", + "vilely\n", + "vileness\n", + "vilenesses\n", + "viler\n", + "vilest\n", + "vilification\n", + "vilifications\n", + "vilified\n", + "vilifier\n", + "vilifiers\n", + "vilifies\n", + "vilify\n", + "vilifying\n", + "vilipend\n", + "vilipended\n", + "vilipending\n", + "vilipends\n", + "vill\n", + "villa\n", + "villadom\n", + "villadoms\n", + "villae\n", + "village\n", + "villager\n", + "villagers\n", + "villages\n", + "villain\n", + "villainies\n", + "villains\n", + "villainy\n", + "villas\n", + "villatic\n", + "villein\n", + "villeins\n", + "villi\n", + "villianess\n", + "villianesses\n", + "villianous\n", + "villianously\n", + "villianousness\n", + "villianousnesses\n", + "villose\n", + "villous\n", + "vills\n", + "villus\n", + "vim\n", + "vimen\n", + "vimina\n", + "viminal\n", + "vimpa\n", + "vims\n", + "vin\n", + "vina\n", + "vinal\n", + "vinals\n", + "vinas\n", + "vinasse\n", + "vinasses\n", + "vinca\n", + "vincas\n", + "vincible\n", + "vincristine\n", + "vincristines\n", + "vincula\n", + "vinculum\n", + "vinculums\n", + "vindesine\n", + "vindicate\n", + "vindicated\n", + "vindicates\n", + "vindicating\n", + "vindication\n", + "vindications\n", + "vindicator\n", + "vindicators\n", + "vindictive\n", + "vindictively\n", + "vindictiveness\n", + "vindictivenesses\n", + "vine\n", + "vineal\n", + "vined\n", + "vinegar\n", + "vinegars\n", + "vinegary\n", + "vineries\n", + "vinery\n", + "vines\n", + "vineyard\n", + "vineyards\n", + "vinic\n", + "vinier\n", + "viniest\n", + "vinifera\n", + "viniferas\n", + "vining\n", + "vino\n", + "vinos\n", + "vinosities\n", + "vinosity\n", + "vinous\n", + "vinously\n", + "vins\n", + "vintage\n", + "vintager\n", + "vintagers\n", + "vintages\n", + "vintner\n", + "vintners\n", + "viny\n", + "vinyl\n", + "vinylic\n", + "vinyls\n", + "viol\n", + "viola\n", + "violable\n", + "violably\n", + "violas\n", + "violate\n", + "violated\n", + "violater\n", + "violaters\n", + "violates\n", + "violating\n", + "violation\n", + "violations\n", + "violator\n", + "violators\n", + "violence\n", + "violences\n", + "violent\n", + "violently\n", + "violet\n", + "violets\n", + "violin\n", + "violinist\n", + "violinists\n", + "violins\n", + "violist\n", + "violists\n", + "violone\n", + "violones\n", + "viols\n", + "viomycin\n", + "viomycins\n", + "viper\n", + "viperine\n", + "viperish\n", + "viperous\n", + "vipers\n", + "virago\n", + "viragoes\n", + "viragos\n", + "viral\n", + "virally\n", + "virelai\n", + "virelais\n", + "virelay\n", + "virelays\n", + "viremia\n", + "viremias\n", + "viremic\n", + "vireo\n", + "vireos\n", + "vires\n", + "virga\n", + "virgas\n", + "virgate\n", + "virgates\n", + "virgin\n", + "virginal\n", + "virginally\n", + "virginals\n", + "virgins\n", + "virgule\n", + "virgules\n", + "viricide\n", + "viricides\n", + "virid\n", + "viridian\n", + "viridians\n", + "viridities\n", + "viridity\n", + "virile\n", + "virilism\n", + "virilisms\n", + "virilities\n", + "virility\n", + "virion\n", + "virions\n", + "virl\n", + "virls\n", + "virologies\n", + "virology\n", + "viroses\n", + "virosis\n", + "virtu\n", + "virtual\n", + "virtually\n", + "virtue\n", + "virtues\n", + "virtuosa\n", + "virtuosas\n", + "virtuose\n", + "virtuosi\n", + "virtuosities\n", + "virtuosity\n", + "virtuoso\n", + "virtuosos\n", + "virtuous\n", + "virtuously\n", + "virtus\n", + "virucide\n", + "virucides\n", + "virulence\n", + "virulences\n", + "virulencies\n", + "virulency\n", + "virulent\n", + "virulently\n", + "virus\n", + "viruses\n", + "vis\n", + "visa\n", + "visaed\n", + "visage\n", + "visaged\n", + "visages\n", + "visaing\n", + "visard\n", + "visards\n", + "visas\n", + "viscacha\n", + "viscachas\n", + "viscera\n", + "visceral\n", + "viscerally\n", + "viscid\n", + "viscidities\n", + "viscidity\n", + "viscidly\n", + "viscoid\n", + "viscose\n", + "viscoses\n", + "viscount\n", + "viscountess\n", + "viscountesses\n", + "viscounts\n", + "viscous\n", + "viscus\n", + "vise\n", + "vised\n", + "viseed\n", + "viseing\n", + "viselike\n", + "vises\n", + "visibilities\n", + "visibility\n", + "visible\n", + "visibly\n", + "vising\n", + "vision\n", + "visional\n", + "visionaries\n", + "visionary\n", + "visioned\n", + "visioning\n", + "visions\n", + "visit\n", + "visitable\n", + "visitant\n", + "visitants\n", + "visitation\n", + "visitations\n", + "visited\n", + "visiter\n", + "visiters\n", + "visiting\n", + "visitor\n", + "visitors\n", + "visits\n", + "visive\n", + "visor\n", + "visored\n", + "visoring\n", + "visors\n", + "vista\n", + "vistaed\n", + "vistas\n", + "visual\n", + "visualization\n", + "visualizations\n", + "visualize\n", + "visualized\n", + "visualizer\n", + "visualizers\n", + "visualizes\n", + "visualizing\n", + "visually\n", + "vita\n", + "vitae\n", + "vital\n", + "vitalise\n", + "vitalised\n", + "vitalises\n", + "vitalising\n", + "vitalism\n", + "vitalisms\n", + "vitalist\n", + "vitalists\n", + "vitalities\n", + "vitality\n", + "vitalize\n", + "vitalized\n", + "vitalizes\n", + "vitalizing\n", + "vitally\n", + "vitals\n", + "vitamer\n", + "vitamers\n", + "vitamin\n", + "vitamine\n", + "vitamines\n", + "vitamins\n", + "vitellin\n", + "vitellins\n", + "vitellus\n", + "vitelluses\n", + "vitesse\n", + "vitesses\n", + "vitiable\n", + "vitiate\n", + "vitiated\n", + "vitiates\n", + "vitiating\n", + "vitiation\n", + "vitiations\n", + "vitiator\n", + "vitiators\n", + "vitiligo\n", + "vitiligos\n", + "vitreous\n", + "vitric\n", + "vitrification\n", + "vitrifications\n", + "vitrified\n", + "vitrifies\n", + "vitrify\n", + "vitrifying\n", + "vitrine\n", + "vitrines\n", + "vitriol\n", + "vitrioled\n", + "vitriolic\n", + "vitrioling\n", + "vitriolled\n", + "vitriolling\n", + "vitriols\n", + "vitta\n", + "vittae\n", + "vittate\n", + "vittle\n", + "vittled\n", + "vittles\n", + "vittling\n", + "vituline\n", + "vituperate\n", + "vituperated\n", + "vituperates\n", + "vituperating\n", + "vituperation\n", + "vituperations\n", + "vituperative\n", + "vituperatively\n", + "viva\n", + "vivace\n", + "vivacious\n", + "vivaciously\n", + "vivaciousness\n", + "vivaciousnesses\n", + "vivacities\n", + "vivacity\n", + "vivaria\n", + "vivaries\n", + "vivarium\n", + "vivariums\n", + "vivary\n", + "vivas\n", + "vive\n", + "viverrid\n", + "viverrids\n", + "vivers\n", + "vivid\n", + "vivider\n", + "vividest\n", + "vividly\n", + "vividness\n", + "vividnesses\n", + "vivific\n", + "vivified\n", + "vivifier\n", + "vivifiers\n", + "vivifies\n", + "vivify\n", + "vivifying\n", + "vivipara\n", + "vivisect\n", + "vivisected\n", + "vivisecting\n", + "vivisection\n", + "vivisections\n", + "vivisects\n", + "vixen\n", + "vixenish\n", + "vixenly\n", + "vixens\n", + "vizard\n", + "vizarded\n", + "vizards\n", + "vizcacha\n", + "vizcachas\n", + "vizier\n", + "viziers\n", + "vizir\n", + "vizirate\n", + "vizirates\n", + "vizirial\n", + "vizirs\n", + "vizor\n", + "vizored\n", + "vizoring\n", + "vizors\n", + "vizsla\n", + "vizslas\n", + "vocable\n", + "vocables\n", + "vocably\n", + "vocabularies\n", + "vocabulary\n", + "vocal\n", + "vocalic\n", + "vocalics\n", + "vocalise\n", + "vocalised\n", + "vocalises\n", + "vocalising\n", + "vocalism\n", + "vocalisms\n", + "vocalist\n", + "vocalists\n", + "vocalities\n", + "vocality\n", + "vocalize\n", + "vocalized\n", + "vocalizes\n", + "vocalizing\n", + "vocally\n", + "vocals\n", + "vocation\n", + "vocational\n", + "vocations\n", + "vocative\n", + "vocatives\n", + "voces\n", + "vociferous\n", + "vociferously\n", + "vocoder\n", + "vocoders\n", + "voder\n", + "vodka\n", + "vodkas\n", + "vodum\n", + "vodums\n", + "vodun\n", + "voe\n", + "voes\n", + "vogie\n", + "vogue\n", + "vogues\n", + "voguish\n", + "voice\n", + "voiced\n", + "voiceful\n", + "voicer\n", + "voicers\n", + "voices\n", + "voicing\n", + "void\n", + "voidable\n", + "voidance\n", + "voidances\n", + "voided\n", + "voider\n", + "voiders\n", + "voiding\n", + "voidness\n", + "voidnesses\n", + "voids\n", + "voile\n", + "voiles\n", + "volant\n", + "volante\n", + "volar\n", + "volatile\n", + "volatiles\n", + "volatilities\n", + "volatility\n", + "volatilize\n", + "volatilized\n", + "volatilizes\n", + "volatilizing\n", + "volcanic\n", + "volcanics\n", + "volcano\n", + "volcanoes\n", + "volcanos\n", + "vole\n", + "voled\n", + "voleries\n", + "volery\n", + "voles\n", + "voling\n", + "volitant\n", + "volition\n", + "volitional\n", + "volitions\n", + "volitive\n", + "volley\n", + "volleyball\n", + "volleyballs\n", + "volleyed\n", + "volleyer\n", + "volleyers\n", + "volleying\n", + "volleys\n", + "volost\n", + "volosts\n", + "volplane\n", + "volplaned\n", + "volplanes\n", + "volplaning\n", + "volt\n", + "volta\n", + "voltage\n", + "voltages\n", + "voltaic\n", + "voltaism\n", + "voltaisms\n", + "volte\n", + "voltes\n", + "volti\n", + "volts\n", + "volubilities\n", + "volubility\n", + "voluble\n", + "volubly\n", + "volume\n", + "volumed\n", + "volumes\n", + "voluming\n", + "voluminous\n", + "voluntarily\n", + "voluntary\n", + "volunteer\n", + "volunteered\n", + "volunteering\n", + "volunteers\n", + "voluptuous\n", + "voluptuously\n", + "voluptuousness\n", + "voluptuousnesses\n", + "volute\n", + "voluted\n", + "volutes\n", + "volutin\n", + "volutins\n", + "volution\n", + "volutions\n", + "volva\n", + "volvas\n", + "volvate\n", + "volvox\n", + "volvoxes\n", + "volvuli\n", + "volvulus\n", + "volvuluses\n", + "vomer\n", + "vomerine\n", + "vomers\n", + "vomica\n", + "vomicae\n", + "vomit\n", + "vomited\n", + "vomiter\n", + "vomiters\n", + "vomiting\n", + "vomitive\n", + "vomitives\n", + "vomito\n", + "vomitories\n", + "vomitory\n", + "vomitos\n", + "vomitous\n", + "vomits\n", + "vomitus\n", + "vomituses\n", + "von\n", + "voodoo\n", + "voodooed\n", + "voodooing\n", + "voodooism\n", + "voodooisms\n", + "voodoos\n", + "voracious\n", + "voraciously\n", + "voraciousness\n", + "voraciousnesses\n", + "voracities\n", + "voracity\n", + "vorlage\n", + "vorlages\n", + "vortex\n", + "vortexes\n", + "vortical\n", + "vortices\n", + "votable\n", + "votaress\n", + "votaresses\n", + "votaries\n", + "votarist\n", + "votarists\n", + "votary\n", + "vote\n", + "voteable\n", + "voted\n", + "voteless\n", + "voter\n", + "voters\n", + "votes\n", + "voting\n", + "votive\n", + "votively\n", + "votress\n", + "votresses\n", + "vouch\n", + "vouched\n", + "vouchee\n", + "vouchees\n", + "voucher\n", + "vouchered\n", + "vouchering\n", + "vouchers\n", + "vouches\n", + "vouching\n", + "vouchsafe\n", + "vouchsafed\n", + "vouchsafes\n", + "vouchsafing\n", + "voussoir\n", + "voussoirs\n", + "vow\n", + "vowed\n", + "vowel\n", + "vowelize\n", + "vowelized\n", + "vowelizes\n", + "vowelizing\n", + "vowels\n", + "vower\n", + "vowers\n", + "vowing\n", + "vowless\n", + "vows\n", + "vox\n", + "voyage\n", + "voyaged\n", + "voyager\n", + "voyagers\n", + "voyages\n", + "voyageur\n", + "voyageurs\n", + "voyaging\n", + "voyeur\n", + "voyeurs\n", + "vroom\n", + "vroomed\n", + "vrooming\n", + "vrooms\n", + "vrouw\n", + "vrouws\n", + "vrow\n", + "vrows\n", + "vug\n", + "vugg\n", + "vuggs\n", + "vuggy\n", + "vugh\n", + "vughs\n", + "vugs\n", + "vulcanic\n", + "vulcanization\n", + "vulcanizations\n", + "vulcanize\n", + "vulcanized\n", + "vulcanizes\n", + "vulcanizing\n", + "vulgar\n", + "vulgarer\n", + "vulgarest\n", + "vulgarism\n", + "vulgarisms\n", + "vulgarities\n", + "vulgarity\n", + "vulgarize\n", + "vulgarized\n", + "vulgarizes\n", + "vulgarizing\n", + "vulgarly\n", + "vulgars\n", + "vulgate\n", + "vulgates\n", + "vulgo\n", + "vulgus\n", + "vulguses\n", + "vulnerabilities\n", + "vulnerability\n", + "vulnerable\n", + "vulnerably\n", + "vulpine\n", + "vulture\n", + "vultures\n", + "vulva\n", + "vulvae\n", + "vulval\n", + "vulvar\n", + "vulvas\n", + "vulvate\n", + "vulvitis\n", + "vulvitises\n", + "vying\n", + "vyingly\n", + "wab\n", + "wabble\n", + "wabbled\n", + "wabbler\n", + "wabblers\n", + "wabbles\n", + "wabblier\n", + "wabbliest\n", + "wabbling\n", + "wabbly\n", + "wabs\n", + "wack\n", + "wacke\n", + "wackes\n", + "wackier\n", + "wackiest\n", + "wackily\n", + "wacks\n", + "wacky\n", + "wad\n", + "wadable\n", + "wadded\n", + "wadder\n", + "wadders\n", + "waddie\n", + "waddied\n", + "waddies\n", + "wadding\n", + "waddings\n", + "waddle\n", + "waddled\n", + "waddler\n", + "waddlers\n", + "waddles\n", + "waddling\n", + "waddly\n", + "waddy\n", + "waddying\n", + "wade\n", + "wadeable\n", + "waded\n", + "wader\n", + "waders\n", + "wades\n", + "wadi\n", + "wadies\n", + "wading\n", + "wadis\n", + "wadmaal\n", + "wadmaals\n", + "wadmal\n", + "wadmals\n", + "wadmel\n", + "wadmels\n", + "wadmol\n", + "wadmoll\n", + "wadmolls\n", + "wadmols\n", + "wads\n", + "wadset\n", + "wadsets\n", + "wadsetted\n", + "wadsetting\n", + "wady\n", + "wae\n", + "waefu\n", + "waeful\n", + "waeness\n", + "waenesses\n", + "waes\n", + "waesuck\n", + "waesucks\n", + "wafer\n", + "wafered\n", + "wafering\n", + "wafers\n", + "wafery\n", + "waff\n", + "waffed\n", + "waffie\n", + "waffies\n", + "waffing\n", + "waffle\n", + "waffled\n", + "waffles\n", + "waffling\n", + "waffs\n", + "waft\n", + "waftage\n", + "waftages\n", + "wafted\n", + "wafter\n", + "wafters\n", + "wafting\n", + "wafts\n", + "wafture\n", + "waftures\n", + "wag\n", + "wage\n", + "waged\n", + "wageless\n", + "wager\n", + "wagered\n", + "wagerer\n", + "wagerers\n", + "wagering\n", + "wagers\n", + "wages\n", + "wagged\n", + "wagger\n", + "waggeries\n", + "waggers\n", + "waggery\n", + "wagging\n", + "waggish\n", + "waggle\n", + "waggled\n", + "waggles\n", + "waggling\n", + "waggly\n", + "waggon\n", + "waggoned\n", + "waggoner\n", + "waggoners\n", + "waggoning\n", + "waggons\n", + "waging\n", + "wagon\n", + "wagonage\n", + "wagonages\n", + "wagoned\n", + "wagoner\n", + "wagoners\n", + "wagoning\n", + "wagons\n", + "wags\n", + "wagsome\n", + "wagtail\n", + "wagtails\n", + "wahconda\n", + "wahcondas\n", + "wahine\n", + "wahines\n", + "wahoo\n", + "wahoos\n", + "waif\n", + "waifed\n", + "waifing\n", + "waifs\n", + "wail\n", + "wailed\n", + "wailer\n", + "wailers\n", + "wailful\n", + "wailing\n", + "wails\n", + "wailsome\n", + "wain\n", + "wains\n", + "wainscot\n", + "wainscoted\n", + "wainscoting\n", + "wainscots\n", + "wainscotted\n", + "wainscotting\n", + "wair\n", + "waired\n", + "wairing\n", + "wairs\n", + "waist\n", + "waisted\n", + "waister\n", + "waisters\n", + "waisting\n", + "waistings\n", + "waistline\n", + "waistlines\n", + "waists\n", + "wait\n", + "waited\n", + "waiter\n", + "waiters\n", + "waiting\n", + "waitings\n", + "waitress\n", + "waitresses\n", + "waits\n", + "waive\n", + "waived\n", + "waiver\n", + "waivers\n", + "waives\n", + "waiving\n", + "wakanda\n", + "wakandas\n", + "wake\n", + "waked\n", + "wakeful\n", + "wakefulness\n", + "wakefulnesses\n", + "wakeless\n", + "waken\n", + "wakened\n", + "wakener\n", + "wakeners\n", + "wakening\n", + "wakenings\n", + "wakens\n", + "waker\n", + "wakerife\n", + "wakers\n", + "wakes\n", + "wakiki\n", + "wakikis\n", + "waking\n", + "wale\n", + "waled\n", + "waler\n", + "walers\n", + "wales\n", + "walies\n", + "waling\n", + "walk\n", + "walkable\n", + "walkaway\n", + "walkaways\n", + "walked\n", + "walker\n", + "walkers\n", + "walking\n", + "walkings\n", + "walkout\n", + "walkouts\n", + "walkover\n", + "walkovers\n", + "walks\n", + "walkup\n", + "walkups\n", + "walkway\n", + "walkways\n", + "walkyrie\n", + "walkyries\n", + "wall\n", + "walla\n", + "wallabies\n", + "wallaby\n", + "wallah\n", + "wallahs\n", + "wallaroo\n", + "wallaroos\n", + "wallas\n", + "walled\n", + "wallet\n", + "wallets\n", + "walleye\n", + "walleyed\n", + "walleyes\n", + "wallflower\n", + "wallflowers\n", + "wallie\n", + "wallies\n", + "walling\n", + "wallop\n", + "walloped\n", + "walloper\n", + "wallopers\n", + "walloping\n", + "wallops\n", + "wallow\n", + "wallowed\n", + "wallower\n", + "wallowers\n", + "wallowing\n", + "wallows\n", + "wallpaper\n", + "wallpapered\n", + "wallpapering\n", + "wallpapers\n", + "walls\n", + "wally\n", + "walnut\n", + "walnuts\n", + "walrus\n", + "walruses\n", + "waltz\n", + "waltzed\n", + "waltzer\n", + "waltzers\n", + "waltzes\n", + "waltzing\n", + "waly\n", + "wamble\n", + "wambled\n", + "wambles\n", + "wamblier\n", + "wambliest\n", + "wambling\n", + "wambly\n", + "wame\n", + "wamefou\n", + "wamefous\n", + "wameful\n", + "wamefuls\n", + "wames\n", + "wammus\n", + "wammuses\n", + "wampish\n", + "wampished\n", + "wampishes\n", + "wampishing\n", + "wampum\n", + "wampums\n", + "wampus\n", + "wampuses\n", + "wamus\n", + "wamuses\n", + "wan\n", + "wand\n", + "wander\n", + "wandered\n", + "wanderer\n", + "wanderers\n", + "wandering\n", + "wanderlust\n", + "wanderlusts\n", + "wanderoo\n", + "wanderoos\n", + "wanders\n", + "wandle\n", + "wands\n", + "wane\n", + "waned\n", + "waner\n", + "wanes\n", + "waney\n", + "wangan\n", + "wangans\n", + "wangle\n", + "wangled\n", + "wangler\n", + "wanglers\n", + "wangles\n", + "wangling\n", + "wangun\n", + "wanguns\n", + "wanier\n", + "waniest\n", + "wanigan\n", + "wanigans\n", + "waning\n", + "wanion\n", + "wanions\n", + "wanly\n", + "wanned\n", + "wanner\n", + "wanness\n", + "wannesses\n", + "wannest\n", + "wannigan\n", + "wannigans\n", + "wanning\n", + "wans\n", + "want\n", + "wantage\n", + "wantages\n", + "wanted\n", + "wanter\n", + "wanters\n", + "wanting\n", + "wanton\n", + "wantoned\n", + "wantoner\n", + "wantoners\n", + "wantoning\n", + "wantonly\n", + "wantonness\n", + "wantonnesses\n", + "wantons\n", + "wants\n", + "wany\n", + "wap\n", + "wapiti\n", + "wapitis\n", + "wapped\n", + "wapping\n", + "waps\n", + "war\n", + "warble\n", + "warbled\n", + "warbler\n", + "warblers\n", + "warbles\n", + "warbling\n", + "warcraft\n", + "warcrafts\n", + "ward\n", + "warded\n", + "warden\n", + "wardenries\n", + "wardenry\n", + "wardens\n", + "warder\n", + "warders\n", + "warding\n", + "wardress\n", + "wardresses\n", + "wardrobe\n", + "wardrobes\n", + "wardroom\n", + "wardrooms\n", + "wards\n", + "wardship\n", + "wardships\n", + "ware\n", + "wared\n", + "warehouse\n", + "warehoused\n", + "warehouseman\n", + "warehousemen\n", + "warehouser\n", + "warehousers\n", + "warehouses\n", + "warehousing\n", + "warer\n", + "wareroom\n", + "warerooms\n", + "wares\n", + "warfare\n", + "warfares\n", + "warfarin\n", + "warfarins\n", + "warhead\n", + "warheads\n", + "warier\n", + "wariest\n", + "warily\n", + "wariness\n", + "warinesses\n", + "waring\n", + "warison\n", + "warisons\n", + "wark\n", + "warked\n", + "warking\n", + "warks\n", + "warless\n", + "warlike\n", + "warlock\n", + "warlocks\n", + "warlord\n", + "warlords\n", + "warm\n", + "warmaker\n", + "warmakers\n", + "warmed\n", + "warmer\n", + "warmers\n", + "warmest\n", + "warming\n", + "warmish\n", + "warmly\n", + "warmness\n", + "warmnesses\n", + "warmonger\n", + "warmongers\n", + "warmouth\n", + "warmouths\n", + "warms\n", + "warmth\n", + "warmths\n", + "warmup\n", + "warmups\n", + "warn\n", + "warned\n", + "warner\n", + "warners\n", + "warning\n", + "warnings\n", + "warns\n", + "warp\n", + "warpage\n", + "warpages\n", + "warpath\n", + "warpaths\n", + "warped\n", + "warper\n", + "warpers\n", + "warping\n", + "warplane\n", + "warplanes\n", + "warpower\n", + "warpowers\n", + "warps\n", + "warpwise\n", + "warragal\n", + "warragals\n", + "warrant\n", + "warranted\n", + "warranties\n", + "warranting\n", + "warrants\n", + "warranty\n", + "warred\n", + "warren\n", + "warrener\n", + "warreners\n", + "warrens\n", + "warrigal\n", + "warrigals\n", + "warring\n", + "warrior\n", + "warriors\n", + "wars\n", + "warsaw\n", + "warsaws\n", + "warship\n", + "warships\n", + "warsle\n", + "warsled\n", + "warsler\n", + "warslers\n", + "warsles\n", + "warsling\n", + "warstle\n", + "warstled\n", + "warstler\n", + "warstlers\n", + "warstles\n", + "warstling\n", + "wart\n", + "warted\n", + "warthog\n", + "warthogs\n", + "wartier\n", + "wartiest\n", + "wartime\n", + "wartimes\n", + "wartlike\n", + "warts\n", + "warty\n", + "warwork\n", + "warworks\n", + "warworn\n", + "wary\n", + "was\n", + "wash\n", + "washable\n", + "washboard\n", + "washboards\n", + "washbowl\n", + "washbowls\n", + "washcloth\n", + "washcloths\n", + "washday\n", + "washdays\n", + "washed\n", + "washer\n", + "washers\n", + "washes\n", + "washier\n", + "washiest\n", + "washing\n", + "washings\n", + "washington\n", + "washout\n", + "washouts\n", + "washrag\n", + "washrags\n", + "washroom\n", + "washrooms\n", + "washtub\n", + "washtubs\n", + "washy\n", + "wasp\n", + "waspier\n", + "waspiest\n", + "waspily\n", + "waspish\n", + "wasplike\n", + "wasps\n", + "waspy\n", + "wassail\n", + "wassailed\n", + "wassailing\n", + "wassails\n", + "wast\n", + "wastable\n", + "wastage\n", + "wastages\n", + "waste\n", + "wastebasket\n", + "wastebaskets\n", + "wasted\n", + "wasteful\n", + "wastefully\n", + "wastefulness\n", + "wastefulnesses\n", + "wasteland\n", + "wastelands\n", + "wastelot\n", + "wastelots\n", + "waster\n", + "wasterie\n", + "wasteries\n", + "wasters\n", + "wastery\n", + "wastes\n", + "wasteway\n", + "wasteways\n", + "wasting\n", + "wastrel\n", + "wastrels\n", + "wastrie\n", + "wastries\n", + "wastry\n", + "wasts\n", + "wat\n", + "watap\n", + "watape\n", + "watapes\n", + "wataps\n", + "watch\n", + "watchcries\n", + "watchcry\n", + "watchdog\n", + "watchdogged\n", + "watchdogging\n", + "watchdogs\n", + "watched\n", + "watcher\n", + "watchers\n", + "watches\n", + "watcheye\n", + "watcheyes\n", + "watchful\n", + "watchfully\n", + "watchfulness\n", + "watchfulnesses\n", + "watching\n", + "watchman\n", + "watchmen\n", + "watchout\n", + "watchouts\n", + "water\n", + "waterage\n", + "waterages\n", + "waterbed\n", + "waterbeds\n", + "watercolor\n", + "watercolors\n", + "watercourse\n", + "watercourses\n", + "watercress\n", + "watercresses\n", + "waterdog\n", + "waterdogs\n", + "watered\n", + "waterer\n", + "waterers\n", + "waterfall\n", + "waterfalls\n", + "waterfowl\n", + "waterfowls\n", + "waterier\n", + "wateriest\n", + "waterily\n", + "watering\n", + "waterings\n", + "waterish\n", + "waterlog\n", + "waterlogged\n", + "waterlogging\n", + "waterlogs\n", + "waterloo\n", + "waterloos\n", + "waterman\n", + "watermark\n", + "watermarked\n", + "watermarking\n", + "watermarks\n", + "watermelon\n", + "watermelons\n", + "watermen\n", + "waterpower\n", + "waterpowers\n", + "waterproof\n", + "waterproofed\n", + "waterproofing\n", + "waterproofings\n", + "waterproofs\n", + "waters\n", + "waterspout\n", + "waterspouts\n", + "watertight\n", + "waterway\n", + "waterways\n", + "waterworks\n", + "watery\n", + "wats\n", + "watt\n", + "wattage\n", + "wattages\n", + "wattape\n", + "wattapes\n", + "watter\n", + "wattest\n", + "watthour\n", + "watthours\n", + "wattle\n", + "wattled\n", + "wattles\n", + "wattless\n", + "wattling\n", + "watts\n", + "waucht\n", + "wauchted\n", + "wauchting\n", + "wauchts\n", + "waugh\n", + "waught\n", + "waughted\n", + "waughting\n", + "waughts\n", + "wauk\n", + "wauked\n", + "wauking\n", + "wauks\n", + "waul\n", + "wauled\n", + "wauling\n", + "wauls\n", + "waur\n", + "wave\n", + "waveband\n", + "wavebands\n", + "waved\n", + "waveform\n", + "waveforms\n", + "wavelength\n", + "wavelengths\n", + "waveless\n", + "wavelet\n", + "wavelets\n", + "wavelike\n", + "waveoff\n", + "waveoffs\n", + "waver\n", + "wavered\n", + "waverer\n", + "waverers\n", + "wavering\n", + "waveringly\n", + "wavers\n", + "wavery\n", + "waves\n", + "wavey\n", + "waveys\n", + "wavier\n", + "wavies\n", + "waviest\n", + "wavily\n", + "waviness\n", + "wavinesses\n", + "waving\n", + "wavy\n", + "waw\n", + "wawl\n", + "wawled\n", + "wawling\n", + "wawls\n", + "waws\n", + "wax\n", + "waxberries\n", + "waxberry\n", + "waxbill\n", + "waxbills\n", + "waxed\n", + "waxen\n", + "waxer\n", + "waxers\n", + "waxes\n", + "waxier\n", + "waxiest\n", + "waxily\n", + "waxiness\n", + "waxinesses\n", + "waxing\n", + "waxings\n", + "waxlike\n", + "waxplant\n", + "waxplants\n", + "waxweed\n", + "waxweeds\n", + "waxwing\n", + "waxwings\n", + "waxwork\n", + "waxworks\n", + "waxworm\n", + "waxworms\n", + "waxy\n", + "way\n", + "waybill\n", + "waybills\n", + "wayfarer\n", + "wayfarers\n", + "wayfaring\n", + "waygoing\n", + "waygoings\n", + "waylaid\n", + "waylay\n", + "waylayer\n", + "waylayers\n", + "waylaying\n", + "waylays\n", + "wayless\n", + "ways\n", + "wayside\n", + "waysides\n", + "wayward\n", + "wayworn\n", + "we\n", + "weak\n", + "weaken\n", + "weakened\n", + "weakener\n", + "weakeners\n", + "weakening\n", + "weakens\n", + "weaker\n", + "weakest\n", + "weakfish\n", + "weakfishes\n", + "weakish\n", + "weaklier\n", + "weakliest\n", + "weakling\n", + "weaklings\n", + "weakly\n", + "weakness\n", + "weaknesses\n", + "weal\n", + "weald\n", + "wealds\n", + "weals\n", + "wealth\n", + "wealthier\n", + "wealthiest\n", + "wealths\n", + "wealthy\n", + "wean\n", + "weaned\n", + "weaner\n", + "weaners\n", + "weaning\n", + "weanling\n", + "weanlings\n", + "weans\n", + "weapon\n", + "weaponed\n", + "weaponing\n", + "weaponries\n", + "weaponry\n", + "weapons\n", + "wear\n", + "wearable\n", + "wearables\n", + "wearer\n", + "wearers\n", + "wearied\n", + "wearier\n", + "wearies\n", + "weariest\n", + "weariful\n", + "wearily\n", + "weariness\n", + "wearinesses\n", + "wearing\n", + "wearish\n", + "wearisome\n", + "wears\n", + "weary\n", + "wearying\n", + "weasand\n", + "weasands\n", + "weasel\n", + "weaseled\n", + "weaseling\n", + "weasels\n", + "weason\n", + "weasons\n", + "weather\n", + "weathered\n", + "weathering\n", + "weatherman\n", + "weathermen\n", + "weatherproof\n", + "weatherproofed\n", + "weatherproofing\n", + "weatherproofs\n", + "weathers\n", + "weave\n", + "weaved\n", + "weaver\n", + "weavers\n", + "weaves\n", + "weaving\n", + "weazand\n", + "weazands\n", + "web\n", + "webbed\n", + "webbier\n", + "webbiest\n", + "webbing\n", + "webbings\n", + "webby\n", + "weber\n", + "webers\n", + "webfed\n", + "webfeet\n", + "webfoot\n", + "webless\n", + "weblike\n", + "webs\n", + "webster\n", + "websters\n", + "webworm\n", + "webworms\n", + "wecht\n", + "wechts\n", + "wed\n", + "wedded\n", + "wedder\n", + "wedders\n", + "wedding\n", + "weddings\n", + "wedel\n", + "wedeled\n", + "wedeling\n", + "wedeln\n", + "wedelns\n", + "wedels\n", + "wedge\n", + "wedged\n", + "wedges\n", + "wedgie\n", + "wedgier\n", + "wedgies\n", + "wedgiest\n", + "wedging\n", + "wedgy\n", + "wedlock\n", + "wedlocks\n", + "wednesday\n", + "weds\n", + "wee\n", + "weed\n", + "weeded\n", + "weeder\n", + "weeders\n", + "weedier\n", + "weediest\n", + "weedily\n", + "weeding\n", + "weedless\n", + "weedlike\n", + "weeds\n", + "weedy\n", + "week\n", + "weekday\n", + "weekdays\n", + "weekend\n", + "weekended\n", + "weekending\n", + "weekends\n", + "weeklies\n", + "weeklong\n", + "weekly\n", + "weeks\n", + "weel\n", + "ween\n", + "weened\n", + "weenie\n", + "weenier\n", + "weenies\n", + "weeniest\n", + "weening\n", + "weens\n", + "weensier\n", + "weensiest\n", + "weensy\n", + "weeny\n", + "weep\n", + "weeper\n", + "weepers\n", + "weepier\n", + "weepiest\n", + "weeping\n", + "weeps\n", + "weepy\n", + "weer\n", + "wees\n", + "weest\n", + "weet\n", + "weeted\n", + "weeting\n", + "weets\n", + "weever\n", + "weevers\n", + "weevil\n", + "weeviled\n", + "weevilly\n", + "weevils\n", + "weevily\n", + "weewee\n", + "weeweed\n", + "weeweeing\n", + "weewees\n", + "weft\n", + "wefts\n", + "weftwise\n", + "weigela\n", + "weigelas\n", + "weigelia\n", + "weigelias\n", + "weigh\n", + "weighed\n", + "weigher\n", + "weighers\n", + "weighing\n", + "weighman\n", + "weighmen\n", + "weighs\n", + "weight\n", + "weighted\n", + "weighter\n", + "weighters\n", + "weightier\n", + "weightiest\n", + "weighting\n", + "weightless\n", + "weightlessness\n", + "weightlessnesses\n", + "weights\n", + "weighty\n", + "weiner\n", + "weiners\n", + "weir\n", + "weird\n", + "weirder\n", + "weirdest\n", + "weirdie\n", + "weirdies\n", + "weirdly\n", + "weirdness\n", + "weirdnesses\n", + "weirdo\n", + "weirdoes\n", + "weirdos\n", + "weirds\n", + "weirdy\n", + "weirs\n", + "weka\n", + "wekas\n", + "welch\n", + "welched\n", + "welcher\n", + "welchers\n", + "welches\n", + "welching\n", + "welcome\n", + "welcomed\n", + "welcomer\n", + "welcomers\n", + "welcomes\n", + "welcoming\n", + "weld\n", + "weldable\n", + "welded\n", + "welder\n", + "welders\n", + "welding\n", + "weldless\n", + "weldment\n", + "weldments\n", + "weldor\n", + "weldors\n", + "welds\n", + "welfare\n", + "welfares\n", + "welkin\n", + "welkins\n", + "well\n", + "welladay\n", + "welladays\n", + "wellaway\n", + "wellaways\n", + "wellborn\n", + "wellcurb\n", + "wellcurbs\n", + "welldoer\n", + "welldoers\n", + "welled\n", + "wellesley\n", + "wellhead\n", + "wellheads\n", + "wellhole\n", + "wellholes\n", + "welling\n", + "wellness\n", + "wellnesses\n", + "wells\n", + "wellsite\n", + "wellsites\n", + "wellspring\n", + "wellsprings\n", + "welsh\n", + "welshed\n", + "welsher\n", + "welshers\n", + "welshes\n", + "welshing\n", + "welt\n", + "welted\n", + "welter\n", + "weltered\n", + "weltering\n", + "welters\n", + "welting\n", + "welts\n", + "wen\n", + "wench\n", + "wenched\n", + "wencher\n", + "wenchers\n", + "wenches\n", + "wenching\n", + "wend\n", + "wended\n", + "wendigo\n", + "wendigos\n", + "wending\n", + "wends\n", + "wennier\n", + "wenniest\n", + "wennish\n", + "wenny\n", + "wens\n", + "went\n", + "wept\n", + "were\n", + "weregild\n", + "weregilds\n", + "werewolf\n", + "werewolves\n", + "wergeld\n", + "wergelds\n", + "wergelt\n", + "wergelts\n", + "wergild\n", + "wergilds\n", + "wert\n", + "werwolf\n", + "werwolves\n", + "weskit\n", + "weskits\n", + "wessand\n", + "wessands\n", + "west\n", + "wester\n", + "westered\n", + "westering\n", + "westerlies\n", + "westerly\n", + "western\n", + "westerns\n", + "westers\n", + "westing\n", + "westings\n", + "westmost\n", + "wests\n", + "westward\n", + "westwards\n", + "wet\n", + "wetback\n", + "wetbacks\n", + "wether\n", + "wethers\n", + "wetland\n", + "wetlands\n", + "wetly\n", + "wetness\n", + "wetnesses\n", + "wetproof\n", + "wets\n", + "wettable\n", + "wetted\n", + "wetter\n", + "wetters\n", + "wettest\n", + "wetting\n", + "wettings\n", + "wettish\n", + "wha\n", + "whack\n", + "whacked\n", + "whacker\n", + "whackers\n", + "whackier\n", + "whackiest\n", + "whacking\n", + "whacks\n", + "whacky\n", + "whale\n", + "whalebone\n", + "whalebones\n", + "whaled\n", + "whaleman\n", + "whalemen\n", + "whaler\n", + "whalers\n", + "whales\n", + "whaling\n", + "whalings\n", + "wham\n", + "whammed\n", + "whammies\n", + "whamming\n", + "whammy\n", + "whams\n", + "whang\n", + "whanged\n", + "whangee\n", + "whangees\n", + "whanging\n", + "whangs\n", + "whap\n", + "whapped\n", + "whapper\n", + "whappers\n", + "whapping\n", + "whaps\n", + "wharf\n", + "wharfage\n", + "wharfages\n", + "wharfed\n", + "wharfing\n", + "wharfs\n", + "wharve\n", + "wharves\n", + "what\n", + "whatever\n", + "whatnot\n", + "whatnots\n", + "whats\n", + "whatsoever\n", + "whaup\n", + "whaups\n", + "wheal\n", + "wheals\n", + "wheat\n", + "wheatear\n", + "wheatears\n", + "wheaten\n", + "wheats\n", + "whee\n", + "wheedle\n", + "wheedled\n", + "wheedler\n", + "wheedlers\n", + "wheedles\n", + "wheedling\n", + "wheel\n", + "wheelbarrow\n", + "wheelbarrows\n", + "wheelbase\n", + "wheelbases\n", + "wheelchair\n", + "wheelchairs\n", + "wheeled\n", + "wheeler\n", + "wheelers\n", + "wheelie\n", + "wheelies\n", + "wheeling\n", + "wheelings\n", + "wheelless\n", + "wheelman\n", + "wheelmen\n", + "wheels\n", + "wheen\n", + "wheens\n", + "wheep\n", + "wheeped\n", + "wheeping\n", + "wheeple\n", + "wheepled\n", + "wheeples\n", + "wheepling\n", + "wheeps\n", + "whees\n", + "wheeze\n", + "wheezed\n", + "wheezer\n", + "wheezers\n", + "wheezes\n", + "wheezier\n", + "wheeziest\n", + "wheezily\n", + "wheezing\n", + "wheezy\n", + "whelk\n", + "whelkier\n", + "whelkiest\n", + "whelks\n", + "whelky\n", + "whelm\n", + "whelmed\n", + "whelming\n", + "whelms\n", + "whelp\n", + "whelped\n", + "whelping\n", + "whelps\n", + "when\n", + "whenas\n", + "whence\n", + "whenever\n", + "whens\n", + "where\n", + "whereabouts\n", + "whereas\n", + "whereases\n", + "whereat\n", + "whereby\n", + "wherefore\n", + "wherein\n", + "whereof\n", + "whereon\n", + "wheres\n", + "whereto\n", + "whereupon\n", + "wherever\n", + "wherewithal\n", + "wherried\n", + "wherries\n", + "wherry\n", + "wherrying\n", + "wherve\n", + "wherves\n", + "whet\n", + "whether\n", + "whets\n", + "whetstone\n", + "whetstones\n", + "whetted\n", + "whetter\n", + "whetters\n", + "whetting\n", + "whew\n", + "whews\n", + "whey\n", + "wheyey\n", + "wheyface\n", + "wheyfaces\n", + "wheyish\n", + "wheys\n", + "which\n", + "whichever\n", + "whicker\n", + "whickered\n", + "whickering\n", + "whickers\n", + "whid\n", + "whidah\n", + "whidahs\n", + "whidded\n", + "whidding\n", + "whids\n", + "whiff\n", + "whiffed\n", + "whiffer\n", + "whiffers\n", + "whiffet\n", + "whiffets\n", + "whiffing\n", + "whiffle\n", + "whiffled\n", + "whiffler\n", + "whifflers\n", + "whiffles\n", + "whiffling\n", + "whiffs\n", + "while\n", + "whiled\n", + "whiles\n", + "whiling\n", + "whilom\n", + "whilst\n", + "whim\n", + "whimbrel\n", + "whimbrels\n", + "whimper\n", + "whimpered\n", + "whimpering\n", + "whimpers\n", + "whims\n", + "whimsey\n", + "whimseys\n", + "whimsical\n", + "whimsicalities\n", + "whimsicality\n", + "whimsically\n", + "whimsied\n", + "whimsies\n", + "whimsy\n", + "whin\n", + "whinchat\n", + "whinchats\n", + "whine\n", + "whined\n", + "whiner\n", + "whiners\n", + "whines\n", + "whiney\n", + "whinier\n", + "whiniest\n", + "whining\n", + "whinnied\n", + "whinnier\n", + "whinnies\n", + "whinniest\n", + "whinny\n", + "whinnying\n", + "whins\n", + "whiny\n", + "whip\n", + "whipcord\n", + "whipcords\n", + "whiplash\n", + "whiplashes\n", + "whiplike\n", + "whipped\n", + "whipper\n", + "whippers\n", + "whippersnapper\n", + "whippersnappers\n", + "whippet\n", + "whippets\n", + "whippier\n", + "whippiest\n", + "whipping\n", + "whippings\n", + "whippoorwill\n", + "whippoorwills\n", + "whippy\n", + "whipray\n", + "whiprays\n", + "whips\n", + "whipsaw\n", + "whipsawed\n", + "whipsawing\n", + "whipsawn\n", + "whipsaws\n", + "whipt\n", + "whiptail\n", + "whiptails\n", + "whipworm\n", + "whipworms\n", + "whir\n", + "whirl\n", + "whirled\n", + "whirler\n", + "whirlers\n", + "whirlier\n", + "whirlies\n", + "whirliest\n", + "whirling\n", + "whirlpool\n", + "whirlpools\n", + "whirls\n", + "whirlwind\n", + "whirlwinds\n", + "whirly\n", + "whirr\n", + "whirred\n", + "whirried\n", + "whirries\n", + "whirring\n", + "whirrs\n", + "whirry\n", + "whirrying\n", + "whirs\n", + "whish\n", + "whished\n", + "whishes\n", + "whishing\n", + "whisht\n", + "whishted\n", + "whishting\n", + "whishts\n", + "whisk\n", + "whisked\n", + "whisker\n", + "whiskered\n", + "whiskers\n", + "whiskery\n", + "whiskey\n", + "whiskeys\n", + "whiskies\n", + "whisking\n", + "whisks\n", + "whisky\n", + "whisper\n", + "whispered\n", + "whispering\n", + "whispers\n", + "whispery\n", + "whist\n", + "whisted\n", + "whisting\n", + "whistle\n", + "whistled\n", + "whistler\n", + "whistlers\n", + "whistles\n", + "whistling\n", + "whists\n", + "whit\n", + "white\n", + "whitebait\n", + "whitebaits\n", + "whitecap\n", + "whitecaps\n", + "whited\n", + "whitefish\n", + "whitefishes\n", + "whiteflies\n", + "whitefly\n", + "whitely\n", + "whiten\n", + "whitened\n", + "whitener\n", + "whiteners\n", + "whiteness\n", + "whitenesses\n", + "whitening\n", + "whitens\n", + "whiteout\n", + "whiteouts\n", + "whiter\n", + "whites\n", + "whitest\n", + "whitetail\n", + "whitetails\n", + "whitewash\n", + "whitewashed\n", + "whitewashes\n", + "whitewashing\n", + "whitey\n", + "whiteys\n", + "whither\n", + "whities\n", + "whiting\n", + "whitings\n", + "whitish\n", + "whitlow\n", + "whitlows\n", + "whitrack\n", + "whitracks\n", + "whits\n", + "whitter\n", + "whitters\n", + "whittle\n", + "whittled\n", + "whittler\n", + "whittlers\n", + "whittles\n", + "whittling\n", + "whittret\n", + "whittrets\n", + "whity\n", + "whiz\n", + "whizbang\n", + "whizbangs\n", + "whizz\n", + "whizzed\n", + "whizzer\n", + "whizzers\n", + "whizzes\n", + "whizzing\n", + "who\n", + "whoa\n", + "whoas\n", + "whodunit\n", + "whodunits\n", + "whoever\n", + "whole\n", + "wholehearted\n", + "wholeness\n", + "wholenesses\n", + "wholes\n", + "wholesale\n", + "wholesaled\n", + "wholesaler\n", + "wholesalers\n", + "wholesales\n", + "wholesaling\n", + "wholesome\n", + "wholesomeness\n", + "wholesomenesses\n", + "wholism\n", + "wholisms\n", + "wholly\n", + "whom\n", + "whomever\n", + "whomp\n", + "whomped\n", + "whomping\n", + "whomps\n", + "whomso\n", + "whoop\n", + "whooped\n", + "whoopee\n", + "whoopees\n", + "whooper\n", + "whoopers\n", + "whooping\n", + "whoopla\n", + "whooplas\n", + "whoops\n", + "whoosh\n", + "whooshed\n", + "whooshes\n", + "whooshing\n", + "whoosis\n", + "whoosises\n", + "whop\n", + "whopped\n", + "whopper\n", + "whoppers\n", + "whopping\n", + "whops\n", + "whore\n", + "whored\n", + "whoredom\n", + "whoredoms\n", + "whores\n", + "whoreson\n", + "whoresons\n", + "whoring\n", + "whorish\n", + "whorl\n", + "whorled\n", + "whorls\n", + "whort\n", + "whortle\n", + "whortles\n", + "whorts\n", + "whose\n", + "whosever\n", + "whosis\n", + "whosises\n", + "whoso\n", + "whosoever\n", + "whump\n", + "whumped\n", + "whumping\n", + "whumps\n", + "why\n", + "whydah\n", + "whydahs\n", + "whys\n", + "wich\n", + "wiches\n", + "wick\n", + "wickape\n", + "wickapes\n", + "wicked\n", + "wickeder\n", + "wickedest\n", + "wickedly\n", + "wickedness\n", + "wickednesses\n", + "wicker\n", + "wickers\n", + "wickerwork\n", + "wickerworks\n", + "wicket\n", + "wickets\n", + "wicking\n", + "wickings\n", + "wickiup\n", + "wickiups\n", + "wicks\n", + "wickyup\n", + "wickyups\n", + "wicopies\n", + "wicopy\n", + "widder\n", + "widders\n", + "widdie\n", + "widdies\n", + "widdle\n", + "widdled\n", + "widdles\n", + "widdling\n", + "widdy\n", + "wide\n", + "widely\n", + "widen\n", + "widened\n", + "widener\n", + "wideners\n", + "wideness\n", + "widenesses\n", + "widening\n", + "widens\n", + "wider\n", + "wides\n", + "widespread\n", + "widest\n", + "widgeon\n", + "widgeons\n", + "widget\n", + "widgets\n", + "widish\n", + "widow\n", + "widowed\n", + "widower\n", + "widowers\n", + "widowhood\n", + "widowhoods\n", + "widowing\n", + "widows\n", + "width\n", + "widths\n", + "widthway\n", + "wield\n", + "wielded\n", + "wielder\n", + "wielders\n", + "wieldier\n", + "wieldiest\n", + "wielding\n", + "wields\n", + "wieldy\n", + "wiener\n", + "wieners\n", + "wienie\n", + "wienies\n", + "wife\n", + "wifed\n", + "wifedom\n", + "wifedoms\n", + "wifehood\n", + "wifehoods\n", + "wifeless\n", + "wifelier\n", + "wifeliest\n", + "wifelike\n", + "wifely\n", + "wifes\n", + "wifing\n", + "wig\n", + "wigan\n", + "wigans\n", + "wigeon\n", + "wigeons\n", + "wigged\n", + "wiggeries\n", + "wiggery\n", + "wigging\n", + "wiggings\n", + "wiggle\n", + "wiggled\n", + "wiggler\n", + "wigglers\n", + "wiggles\n", + "wigglier\n", + "wiggliest\n", + "wiggling\n", + "wiggly\n", + "wight\n", + "wights\n", + "wigless\n", + "wiglet\n", + "wiglets\n", + "wiglike\n", + "wigmaker\n", + "wigmakers\n", + "wigs\n", + "wigwag\n", + "wigwagged\n", + "wigwagging\n", + "wigwags\n", + "wigwam\n", + "wigwams\n", + "wikiup\n", + "wikiups\n", + "wilco\n", + "wild\n", + "wildcat\n", + "wildcats\n", + "wildcatted\n", + "wildcatting\n", + "wilder\n", + "wildered\n", + "wildering\n", + "wilderness\n", + "wildernesses\n", + "wilders\n", + "wildest\n", + "wildfire\n", + "wildfires\n", + "wildfowl\n", + "wildfowls\n", + "wilding\n", + "wildings\n", + "wildish\n", + "wildlife\n", + "wildling\n", + "wildlings\n", + "wildly\n", + "wildness\n", + "wildnesses\n", + "wilds\n", + "wildwood\n", + "wildwoods\n", + "wile\n", + "wiled\n", + "wiles\n", + "wilful\n", + "wilfully\n", + "wilier\n", + "wiliest\n", + "wilily\n", + "wiliness\n", + "wilinesses\n", + "wiling\n", + "will\n", + "willable\n", + "willed\n", + "willer\n", + "willers\n", + "willet\n", + "willets\n", + "willful\n", + "willfully\n", + "willied\n", + "willies\n", + "willing\n", + "willinger\n", + "willingest\n", + "willingly\n", + "willingness\n", + "williwau\n", + "williwaus\n", + "williwaw\n", + "williwaws\n", + "willow\n", + "willowed\n", + "willower\n", + "willowers\n", + "willowier\n", + "willowiest\n", + "willowing\n", + "willows\n", + "willowy\n", + "willpower\n", + "willpowers\n", + "wills\n", + "willy\n", + "willyard\n", + "willyart\n", + "willying\n", + "willywaw\n", + "willywaws\n", + "wilt\n", + "wilted\n", + "wilting\n", + "wilts\n", + "wily\n", + "wimble\n", + "wimbled\n", + "wimbles\n", + "wimbling\n", + "wimple\n", + "wimpled\n", + "wimples\n", + "wimpling\n", + "win\n", + "wince\n", + "winced\n", + "wincer\n", + "wincers\n", + "winces\n", + "wincey\n", + "winceys\n", + "winch\n", + "winched\n", + "wincher\n", + "winchers\n", + "winches\n", + "winching\n", + "wincing\n", + "wind\n", + "windable\n", + "windage\n", + "windages\n", + "windbag\n", + "windbags\n", + "windbreak\n", + "windbreaks\n", + "windburn\n", + "windburned\n", + "windburning\n", + "windburns\n", + "windburnt\n", + "winded\n", + "winder\n", + "winders\n", + "windfall\n", + "windfalls\n", + "windflaw\n", + "windflaws\n", + "windgall\n", + "windgalls\n", + "windier\n", + "windiest\n", + "windigo\n", + "windigos\n", + "windily\n", + "winding\n", + "windings\n", + "windlass\n", + "windlassed\n", + "windlasses\n", + "windlassing\n", + "windle\n", + "windled\n", + "windles\n", + "windless\n", + "windling\n", + "windlings\n", + "windmill\n", + "windmilled\n", + "windmilling\n", + "windmills\n", + "window\n", + "windowed\n", + "windowing\n", + "windowless\n", + "windows\n", + "windpipe\n", + "windpipes\n", + "windrow\n", + "windrowed\n", + "windrowing\n", + "windrows\n", + "winds\n", + "windshield\n", + "windshields\n", + "windsock\n", + "windsocks\n", + "windup\n", + "windups\n", + "windward\n", + "windwards\n", + "windway\n", + "windways\n", + "windy\n", + "wine\n", + "wined\n", + "wineless\n", + "wineries\n", + "winery\n", + "wines\n", + "wineshop\n", + "wineshops\n", + "wineskin\n", + "wineskins\n", + "winesop\n", + "winesops\n", + "winey\n", + "wing\n", + "wingback\n", + "wingbacks\n", + "wingbow\n", + "wingbows\n", + "wingding\n", + "wingdings\n", + "winged\n", + "wingedly\n", + "winger\n", + "wingers\n", + "wingier\n", + "wingiest\n", + "winging\n", + "wingless\n", + "winglet\n", + "winglets\n", + "winglike\n", + "wingman\n", + "wingmen\n", + "wingover\n", + "wingovers\n", + "wings\n", + "wingspan\n", + "wingspans\n", + "wingy\n", + "winier\n", + "winiest\n", + "wining\n", + "winish\n", + "wink\n", + "winked\n", + "winker\n", + "winkers\n", + "winking\n", + "winkle\n", + "winkled\n", + "winkles\n", + "winkling\n", + "winks\n", + "winnable\n", + "winned\n", + "winner\n", + "winners\n", + "winning\n", + "winnings\n", + "winnock\n", + "winnocks\n", + "winnow\n", + "winnowed\n", + "winnower\n", + "winnowers\n", + "winnowing\n", + "winnows\n", + "wino\n", + "winoes\n", + "winos\n", + "wins\n", + "winsome\n", + "winsomely\n", + "winsomeness\n", + "winsomenesses\n", + "winsomer\n", + "winsomest\n", + "winter\n", + "wintered\n", + "winterer\n", + "winterers\n", + "wintergreen\n", + "wintergreens\n", + "winterier\n", + "winteriest\n", + "wintering\n", + "winterly\n", + "winters\n", + "wintertime\n", + "wintertimes\n", + "wintery\n", + "wintle\n", + "wintled\n", + "wintles\n", + "wintling\n", + "wintrier\n", + "wintriest\n", + "wintrily\n", + "wintry\n", + "winy\n", + "winze\n", + "winzes\n", + "wipe\n", + "wiped\n", + "wipeout\n", + "wipeouts\n", + "wiper\n", + "wipers\n", + "wipes\n", + "wiping\n", + "wirable\n", + "wire\n", + "wired\n", + "wiredraw\n", + "wiredrawing\n", + "wiredrawn\n", + "wiredraws\n", + "wiredrew\n", + "wirehair\n", + "wirehairs\n", + "wireless\n", + "wirelessed\n", + "wirelesses\n", + "wirelessing\n", + "wirelike\n", + "wireman\n", + "wiremen\n", + "wirer\n", + "wirers\n", + "wires\n", + "wiretap\n", + "wiretapped\n", + "wiretapper\n", + "wiretappers\n", + "wiretapping\n", + "wiretaps\n", + "wireway\n", + "wireways\n", + "wirework\n", + "wireworks\n", + "wireworm\n", + "wireworms\n", + "wirier\n", + "wiriest\n", + "wirily\n", + "wiriness\n", + "wirinesses\n", + "wiring\n", + "wirings\n", + "wirra\n", + "wiry\n", + "wis\n", + "wisdom\n", + "wisdoms\n", + "wise\n", + "wiseacre\n", + "wiseacres\n", + "wisecrack\n", + "wisecracked\n", + "wisecracking\n", + "wisecracks\n", + "wised\n", + "wiselier\n", + "wiseliest\n", + "wisely\n", + "wiseness\n", + "wisenesses\n", + "wisent\n", + "wisents\n", + "wiser\n", + "wises\n", + "wisest\n", + "wish\n", + "wisha\n", + "wishbone\n", + "wishbones\n", + "wished\n", + "wisher\n", + "wishers\n", + "wishes\n", + "wishful\n", + "wishing\n", + "wishless\n", + "wising\n", + "wisp\n", + "wisped\n", + "wispier\n", + "wispiest\n", + "wispily\n", + "wisping\n", + "wispish\n", + "wisplike\n", + "wisps\n", + "wispy\n", + "wiss\n", + "wissed\n", + "wisses\n", + "wissing\n", + "wist\n", + "wistaria\n", + "wistarias\n", + "wisted\n", + "wisteria\n", + "wisterias\n", + "wistful\n", + "wistfully\n", + "wistfulness\n", + "wistfulnesses\n", + "wisting\n", + "wists\n", + "wit\n", + "witan\n", + "witch\n", + "witchcraft\n", + "witchcrafts\n", + "witched\n", + "witcheries\n", + "witchery\n", + "witches\n", + "witchier\n", + "witchiest\n", + "witching\n", + "witchings\n", + "witchy\n", + "wite\n", + "wited\n", + "witen\n", + "wites\n", + "with\n", + "withal\n", + "withdraw\n", + "withdrawal\n", + "withdrawals\n", + "withdrawing\n", + "withdrawn\n", + "withdraws\n", + "withdrew\n", + "withe\n", + "withed\n", + "wither\n", + "withered\n", + "witherer\n", + "witherers\n", + "withering\n", + "withers\n", + "withes\n", + "withheld\n", + "withhold\n", + "withholding\n", + "withholds\n", + "withier\n", + "withies\n", + "withiest\n", + "within\n", + "withing\n", + "withins\n", + "without\n", + "withouts\n", + "withstand\n", + "withstanding\n", + "withstands\n", + "withstood\n", + "withy\n", + "witing\n", + "witless\n", + "witlessly\n", + "witlessness\n", + "witlessnesses\n", + "witling\n", + "witlings\n", + "witloof\n", + "witloofs\n", + "witness\n", + "witnessed\n", + "witnesses\n", + "witnessing\n", + "witney\n", + "witneys\n", + "wits\n", + "witted\n", + "witticism\n", + "witticisms\n", + "wittier\n", + "wittiest\n", + "wittily\n", + "wittiness\n", + "wittinesses\n", + "witting\n", + "wittingly\n", + "wittings\n", + "wittol\n", + "wittols\n", + "witty\n", + "wive\n", + "wived\n", + "wiver\n", + "wivern\n", + "wiverns\n", + "wivers\n", + "wives\n", + "wiving\n", + "wiz\n", + "wizard\n", + "wizardly\n", + "wizardries\n", + "wizardry\n", + "wizards\n", + "wizen\n", + "wizened\n", + "wizening\n", + "wizens\n", + "wizes\n", + "wizzen\n", + "wizzens\n", + "wo\n", + "woad\n", + "woaded\n", + "woads\n", + "woadwax\n", + "woadwaxes\n", + "woald\n", + "woalds\n", + "wobble\n", + "wobbled\n", + "wobbler\n", + "wobblers\n", + "wobbles\n", + "wobblier\n", + "wobblies\n", + "wobbliest\n", + "wobbling\n", + "wobbly\n", + "wobegone\n", + "woe\n", + "woebegone\n", + "woeful\n", + "woefuller\n", + "woefullest\n", + "woefully\n", + "woeness\n", + "woenesses\n", + "woes\n", + "woesome\n", + "woful\n", + "wofully\n", + "wok\n", + "woke\n", + "woken\n", + "woks\n", + "wold\n", + "wolds\n", + "wolf\n", + "wolfed\n", + "wolfer\n", + "wolfers\n", + "wolffish\n", + "wolffishes\n", + "wolfing\n", + "wolfish\n", + "wolflike\n", + "wolfram\n", + "wolframs\n", + "wolfs\n", + "wolver\n", + "wolverine\n", + "wolverines\n", + "wolvers\n", + "wolves\n", + "woman\n", + "womaned\n", + "womanhood\n", + "womanhoods\n", + "womaning\n", + "womanise\n", + "womanised\n", + "womanises\n", + "womanish\n", + "womanising\n", + "womanize\n", + "womanized\n", + "womanizes\n", + "womanizing\n", + "womankind\n", + "womankinds\n", + "womanlier\n", + "womanliest\n", + "womanliness\n", + "womanlinesses\n", + "womanly\n", + "womans\n", + "womb\n", + "wombat\n", + "wombats\n", + "wombed\n", + "wombier\n", + "wombiest\n", + "wombs\n", + "womby\n", + "women\n", + "womera\n", + "womeras\n", + "wommera\n", + "wommeras\n", + "womps\n", + "won\n", + "wonder\n", + "wondered\n", + "wonderer\n", + "wonderers\n", + "wonderful\n", + "wonderfully\n", + "wonderfulness\n", + "wonderfulnesses\n", + "wondering\n", + "wonderland\n", + "wonderlands\n", + "wonderment\n", + "wonderments\n", + "wonders\n", + "wonderwoman\n", + "wondrous\n", + "wondrously\n", + "wondrousness\n", + "wondrousnesses\n", + "wonkier\n", + "wonkiest\n", + "wonky\n", + "wonned\n", + "wonner\n", + "wonners\n", + "wonning\n", + "wons\n", + "wont\n", + "wonted\n", + "wontedly\n", + "wonting\n", + "wonton\n", + "wontons\n", + "wonts\n", + "woo\n", + "wood\n", + "woodbin\n", + "woodbind\n", + "woodbinds\n", + "woodbine\n", + "woodbines\n", + "woodbins\n", + "woodbox\n", + "woodboxes\n", + "woodchat\n", + "woodchats\n", + "woodchopper\n", + "woodchoppers\n", + "woodchuck\n", + "woodchucks\n", + "woodcock\n", + "woodcocks\n", + "woodcraft\n", + "woodcrafts\n", + "woodcut\n", + "woodcuts\n", + "wooded\n", + "wooden\n", + "woodener\n", + "woodenest\n", + "woodenly\n", + "woodenness\n", + "woodennesses\n", + "woodhen\n", + "woodhens\n", + "woodier\n", + "woodiest\n", + "woodiness\n", + "woodinesses\n", + "wooding\n", + "woodland\n", + "woodlands\n", + "woodlark\n", + "woodlarks\n", + "woodless\n", + "woodlore\n", + "woodlores\n", + "woodlot\n", + "woodlots\n", + "woodman\n", + "woodmen\n", + "woodnote\n", + "woodnotes\n", + "woodpecker\n", + "woodpeckers\n", + "woodpile\n", + "woodpiles\n", + "woodruff\n", + "woodruffs\n", + "woods\n", + "woodshed\n", + "woodshedded\n", + "woodshedding\n", + "woodsheds\n", + "woodsia\n", + "woodsias\n", + "woodsier\n", + "woodsiest\n", + "woodsman\n", + "woodsmen\n", + "woodsy\n", + "woodwax\n", + "woodwaxes\n", + "woodwind\n", + "woodwinds\n", + "woodwork\n", + "woodworks\n", + "woodworm\n", + "woodworms\n", + "woody\n", + "wooed\n", + "wooer\n", + "wooers\n", + "woof\n", + "woofed\n", + "woofer\n", + "woofers\n", + "woofing\n", + "woofs\n", + "wooing\n", + "wooingly\n", + "wool\n", + "wooled\n", + "woolen\n", + "woolens\n", + "wooler\n", + "woolers\n", + "woolfell\n", + "woolfells\n", + "woolgathering\n", + "woolgatherings\n", + "woolie\n", + "woolier\n", + "woolies\n", + "wooliest\n", + "woollen\n", + "woollens\n", + "woollier\n", + "woollies\n", + "woolliest\n", + "woollike\n", + "woolly\n", + "woolman\n", + "woolmen\n", + "woolpack\n", + "woolpacks\n", + "wools\n", + "woolsack\n", + "woolsacks\n", + "woolshed\n", + "woolsheds\n", + "woolskin\n", + "woolskins\n", + "wooly\n", + "woomera\n", + "woomeras\n", + "woops\n", + "woorali\n", + "wooralis\n", + "woorari\n", + "wooraris\n", + "woos\n", + "woosh\n", + "wooshed\n", + "wooshes\n", + "wooshing\n", + "woozier\n", + "wooziest\n", + "woozily\n", + "wooziness\n", + "woozinesses\n", + "woozy\n", + "wop\n", + "wops\n", + "worcester\n", + "word\n", + "wordage\n", + "wordages\n", + "wordbook\n", + "wordbooks\n", + "worded\n", + "wordier\n", + "wordiest\n", + "wordily\n", + "wordiness\n", + "wordinesses\n", + "wording\n", + "wordings\n", + "wordless\n", + "wordplay\n", + "wordplays\n", + "words\n", + "wordy\n", + "wore\n", + "work\n", + "workability\n", + "workable\n", + "workableness\n", + "workablenesses\n", + "workaday\n", + "workbag\n", + "workbags\n", + "workbasket\n", + "workbaskets\n", + "workbench\n", + "workbenches\n", + "workboat\n", + "workboats\n", + "workbook\n", + "workbooks\n", + "workbox\n", + "workboxes\n", + "workday\n", + "workdays\n", + "worked\n", + "worker\n", + "workers\n", + "workfolk\n", + "workhorse\n", + "workhorses\n", + "workhouse\n", + "workhouses\n", + "working\n", + "workingman\n", + "workingmen\n", + "workings\n", + "workless\n", + "workload\n", + "workloads\n", + "workman\n", + "workmanlike\n", + "workmanship\n", + "workmanships\n", + "workmen\n", + "workout\n", + "workouts\n", + "workroom\n", + "workrooms\n", + "works\n", + "worksheet\n", + "worksheets\n", + "workshop\n", + "workshops\n", + "workup\n", + "workups\n", + "workweek\n", + "workweeks\n", + "world\n", + "worldlier\n", + "worldliest\n", + "worldliness\n", + "worldlinesses\n", + "worldly\n", + "worlds\n", + "worldwide\n", + "worm\n", + "wormed\n", + "wormer\n", + "wormers\n", + "wormhole\n", + "wormholes\n", + "wormier\n", + "wormiest\n", + "wormil\n", + "wormils\n", + "worming\n", + "wormish\n", + "wormlike\n", + "wormroot\n", + "wormroots\n", + "worms\n", + "wormseed\n", + "wormseeds\n", + "wormwood\n", + "wormwoods\n", + "wormy\n", + "worn\n", + "wornness\n", + "wornnesses\n", + "worried\n", + "worrier\n", + "worriers\n", + "worries\n", + "worrisome\n", + "worrit\n", + "worrited\n", + "worriting\n", + "worrits\n", + "worry\n", + "worrying\n", + "worse\n", + "worsen\n", + "worsened\n", + "worsening\n", + "worsens\n", + "worser\n", + "worses\n", + "worset\n", + "worsets\n", + "worship\n", + "worshiped\n", + "worshiper\n", + "worshipers\n", + "worshiping\n", + "worshipped\n", + "worshipper\n", + "worshippers\n", + "worshipping\n", + "worships\n", + "worst\n", + "worsted\n", + "worsteds\n", + "worsting\n", + "worsts\n", + "wort\n", + "worth\n", + "worthed\n", + "worthful\n", + "worthier\n", + "worthies\n", + "worthiest\n", + "worthily\n", + "worthiness\n", + "worthinesses\n", + "worthing\n", + "worthless\n", + "worthlessness\n", + "worthlessnesses\n", + "worths\n", + "worthwhile\n", + "worthy\n", + "worts\n", + "wos\n", + "wost\n", + "wostteth\n", + "wot\n", + "wots\n", + "wotted\n", + "wotteth\n", + "wotting\n", + "would\n", + "wouldest\n", + "wouldst\n", + "wound\n", + "wounded\n", + "wounding\n", + "wounds\n", + "wove\n", + "woven\n", + "wow\n", + "wowed\n", + "wowing\n", + "wows\n", + "wowser\n", + "wowsers\n", + "wrack\n", + "wracked\n", + "wrackful\n", + "wracking\n", + "wracks\n", + "wraith\n", + "wraiths\n", + "wrang\n", + "wrangle\n", + "wrangled\n", + "wrangler\n", + "wranglers\n", + "wrangles\n", + "wrangling\n", + "wrangs\n", + "wrap\n", + "wrapped\n", + "wrapper\n", + "wrappers\n", + "wrapping\n", + "wrappings\n", + "wraps\n", + "wrapt\n", + "wrasse\n", + "wrasses\n", + "wrastle\n", + "wrastled\n", + "wrastles\n", + "wrastling\n", + "wrath\n", + "wrathed\n", + "wrathful\n", + "wrathier\n", + "wrathiest\n", + "wrathily\n", + "wrathing\n", + "wraths\n", + "wrathy\n", + "wreak\n", + "wreaked\n", + "wreaker\n", + "wreakers\n", + "wreaking\n", + "wreaks\n", + "wreath\n", + "wreathe\n", + "wreathed\n", + "wreathen\n", + "wreathes\n", + "wreathing\n", + "wreaths\n", + "wreathy\n", + "wreck\n", + "wreckage\n", + "wreckages\n", + "wrecked\n", + "wrecker\n", + "wreckers\n", + "wreckful\n", + "wrecking\n", + "wreckings\n", + "wrecks\n", + "wren\n", + "wrench\n", + "wrenched\n", + "wrenches\n", + "wrenching\n", + "wrens\n", + "wrest\n", + "wrested\n", + "wrester\n", + "wresters\n", + "wresting\n", + "wrestle\n", + "wrestled\n", + "wrestler\n", + "wrestlers\n", + "wrestles\n", + "wrestling\n", + "wrests\n", + "wretch\n", + "wretched\n", + "wretcheder\n", + "wretchedest\n", + "wretchedness\n", + "wretchednesses\n", + "wretches\n", + "wried\n", + "wrier\n", + "wries\n", + "wriest\n", + "wriggle\n", + "wriggled\n", + "wriggler\n", + "wrigglers\n", + "wriggles\n", + "wrigglier\n", + "wriggliest\n", + "wriggling\n", + "wriggly\n", + "wright\n", + "wrights\n", + "wring\n", + "wringed\n", + "wringer\n", + "wringers\n", + "wringing\n", + "wrings\n", + "wrinkle\n", + "wrinkled\n", + "wrinkles\n", + "wrinklier\n", + "wrinkliest\n", + "wrinkling\n", + "wrinkly\n", + "wrist\n", + "wristier\n", + "wristiest\n", + "wristlet\n", + "wristlets\n", + "wrists\n", + "wristy\n", + "writ\n", + "writable\n", + "write\n", + "writer\n", + "writers\n", + "writes\n", + "writhe\n", + "writhed\n", + "writhen\n", + "writher\n", + "writhers\n", + "writhes\n", + "writhing\n", + "writing\n", + "writings\n", + "writs\n", + "written\n", + "wrong\n", + "wrongdoer\n", + "wrongdoers\n", + "wrongdoing\n", + "wrongdoings\n", + "wronged\n", + "wronger\n", + "wrongers\n", + "wrongest\n", + "wrongful\n", + "wrongfully\n", + "wrongfulness\n", + "wrongfulnesses\n", + "wrongheaded\n", + "wrongheadedly\n", + "wrongheadedness\n", + "wrongheadednesses\n", + "wronging\n", + "wrongly\n", + "wrongs\n", + "wrote\n", + "wroth\n", + "wrothful\n", + "wrought\n", + "wrung\n", + "wry\n", + "wryer\n", + "wryest\n", + "wrying\n", + "wryly\n", + "wryneck\n", + "wrynecks\n", + "wryness\n", + "wrynesses\n", + "wud\n", + "wurst\n", + "wursts\n", + "wurzel\n", + "wurzels\n", + "wych\n", + "wyches\n", + "wye\n", + "wyes\n", + "wyle\n", + "wyled\n", + "wyles\n", + "wyling\n", + "wynd\n", + "wynds\n", + "wynn\n", + "wynns\n", + "wyte\n", + "wyted\n", + "wytes\n", + "wyting\n", + "wyvern\n", + "wyverns\n", + "xanthate\n", + "xanthates\n", + "xanthein\n", + "xantheins\n", + "xanthene\n", + "xanthenes\n", + "xanthic\n", + "xanthin\n", + "xanthine\n", + "xanthines\n", + "xanthins\n", + "xanthoma\n", + "xanthomas\n", + "xanthomata\n", + "xanthone\n", + "xanthones\n", + "xanthous\n", + "xebec\n", + "xebecs\n", + "xenia\n", + "xenial\n", + "xenias\n", + "xenic\n", + "xenogamies\n", + "xenogamy\n", + "xenogenies\n", + "xenogeny\n", + "xenolith\n", + "xenoliths\n", + "xenon\n", + "xenons\n", + "xenophobe\n", + "xenophobes\n", + "xenophobia\n", + "xerarch\n", + "xeric\n", + "xerosere\n", + "xeroseres\n", + "xeroses\n", + "xerosis\n", + "xerotic\n", + "xerus\n", + "xeruses\n", + "xi\n", + "xiphoid\n", + "xiphoids\n", + "xis\n", + "xu\n", + "xylan\n", + "xylans\n", + "xylem\n", + "xylems\n", + "xylene\n", + "xylenes\n", + "xylic\n", + "xylidin\n", + "xylidine\n", + "xylidines\n", + "xylidins\n", + "xylocarp\n", + "xylocarps\n", + "xyloid\n", + "xylol\n", + "xylols\n", + "xylophone\n", + "xylophones\n", + "xylophonist\n", + "xylophonists\n", + "xylose\n", + "xyloses\n", + "xylotomies\n", + "xylotomy\n", + "xylyl\n", + "xylyls\n", + "xyst\n", + "xyster\n", + "xysters\n", + "xysti\n", + "xystoi\n", + "xystos\n", + "xysts\n", + "xystus\n", + "ya\n", + "yabber\n", + "yabbered\n", + "yabbering\n", + "yabbers\n", + "yacht\n", + "yachted\n", + "yachter\n", + "yachters\n", + "yachting\n", + "yachtings\n", + "yachtman\n", + "yachtmen\n", + "yachts\n", + "yack\n", + "yacked\n", + "yacking\n", + "yacks\n", + "yaff\n", + "yaffed\n", + "yaffing\n", + "yaffs\n", + "yager\n", + "yagers\n", + "yagi\n", + "yagis\n", + "yah\n", + "yahoo\n", + "yahooism\n", + "yahooisms\n", + "yahoos\n", + "yaird\n", + "yairds\n", + "yak\n", + "yakked\n", + "yakking\n", + "yaks\n", + "yald\n", + "yam\n", + "yamen\n", + "yamens\n", + "yammer\n", + "yammered\n", + "yammerer\n", + "yammerers\n", + "yammering\n", + "yammers\n", + "yams\n", + "yamun\n", + "yamuns\n", + "yang\n", + "yangs\n", + "yank\n", + "yanked\n", + "yanking\n", + "yanks\n", + "yanqui\n", + "yanquis\n", + "yap\n", + "yapock\n", + "yapocks\n", + "yapok\n", + "yapoks\n", + "yapon\n", + "yapons\n", + "yapped\n", + "yapper\n", + "yappers\n", + "yapping\n", + "yappy\n", + "yaps\n", + "yar\n", + "yard\n", + "yardage\n", + "yardages\n", + "yardarm\n", + "yardarms\n", + "yardbird\n", + "yardbirds\n", + "yarded\n", + "yarding\n", + "yardman\n", + "yardmen\n", + "yards\n", + "yardstick\n", + "yardsticks\n", + "yardwand\n", + "yardwands\n", + "yare\n", + "yarely\n", + "yarer\n", + "yarest\n", + "yarmelke\n", + "yarmelkes\n", + "yarmulke\n", + "yarmulkes\n", + "yarn\n", + "yarned\n", + "yarning\n", + "yarns\n", + "yarrow\n", + "yarrows\n", + "yashmac\n", + "yashmacs\n", + "yashmak\n", + "yashmaks\n", + "yasmak\n", + "yasmaks\n", + "yatagan\n", + "yatagans\n", + "yataghan\n", + "yataghans\n", + "yaud\n", + "yauds\n", + "yauld\n", + "yaup\n", + "yauped\n", + "yauper\n", + "yaupers\n", + "yauping\n", + "yaupon\n", + "yaupons\n", + "yaups\n", + "yaw\n", + "yawed\n", + "yawing\n", + "yawl\n", + "yawled\n", + "yawling\n", + "yawls\n", + "yawmeter\n", + "yawmeters\n", + "yawn\n", + "yawned\n", + "yawner\n", + "yawners\n", + "yawning\n", + "yawns\n", + "yawp\n", + "yawped\n", + "yawper\n", + "yawpers\n", + "yawping\n", + "yawpings\n", + "yawps\n", + "yaws\n", + "yay\n", + "ycleped\n", + "yclept\n", + "ye\n", + "yea\n", + "yeah\n", + "yealing\n", + "yealings\n", + "yean\n", + "yeaned\n", + "yeaning\n", + "yeanling\n", + "yeanlings\n", + "yeans\n", + "year\n", + "yearbook\n", + "yearbooks\n", + "yearlies\n", + "yearling\n", + "yearlings\n", + "yearlong\n", + "yearly\n", + "yearn\n", + "yearned\n", + "yearner\n", + "yearners\n", + "yearning\n", + "yearnings\n", + "yearns\n", + "years\n", + "yeas\n", + "yeast\n", + "yeasted\n", + "yeastier\n", + "yeastiest\n", + "yeastily\n", + "yeasting\n", + "yeasts\n", + "yeasty\n", + "yeelin\n", + "yeelins\n", + "yegg\n", + "yeggman\n", + "yeggmen\n", + "yeggs\n", + "yeh\n", + "yeld\n", + "yelk\n", + "yelks\n", + "yell\n", + "yelled\n", + "yeller\n", + "yellers\n", + "yelling\n", + "yellow\n", + "yellowed\n", + "yellower\n", + "yellowest\n", + "yellowing\n", + "yellowly\n", + "yellows\n", + "yellowy\n", + "yells\n", + "yelp\n", + "yelped\n", + "yelper\n", + "yelpers\n", + "yelping\n", + "yelps\n", + "yen\n", + "yenned\n", + "yenning\n", + "yens\n", + "yenta\n", + "yentas\n", + "yeoman\n", + "yeomanly\n", + "yeomanries\n", + "yeomanry\n", + "yeomen\n", + "yep\n", + "yerba\n", + "yerbas\n", + "yerk\n", + "yerked\n", + "yerking\n", + "yerks\n", + "yes\n", + "yeses\n", + "yeshiva\n", + "yeshivah\n", + "yeshivahs\n", + "yeshivas\n", + "yeshivoth\n", + "yessed\n", + "yesses\n", + "yessing\n", + "yester\n", + "yesterday\n", + "yesterdays\n", + "yestern\n", + "yestreen\n", + "yestreens\n", + "yet\n", + "yeti\n", + "yetis\n", + "yett\n", + "yetts\n", + "yeuk\n", + "yeuked\n", + "yeuking\n", + "yeuks\n", + "yeuky\n", + "yew\n", + "yews\n", + "yid\n", + "yids\n", + "yield\n", + "yielded\n", + "yielder\n", + "yielders\n", + "yielding\n", + "yields\n", + "yill\n", + "yills\n", + "yin\n", + "yince\n", + "yins\n", + "yip\n", + "yipe\n", + "yipes\n", + "yipped\n", + "yippee\n", + "yippie\n", + "yippies\n", + "yipping\n", + "yips\n", + "yird\n", + "yirds\n", + "yirr\n", + "yirred\n", + "yirring\n", + "yirrs\n", + "yirth\n", + "yirths\n", + "yod\n", + "yodel\n", + "yodeled\n", + "yodeler\n", + "yodelers\n", + "yodeling\n", + "yodelled\n", + "yodeller\n", + "yodellers\n", + "yodelling\n", + "yodels\n", + "yodh\n", + "yodhs\n", + "yodle\n", + "yodled\n", + "yodler\n", + "yodlers\n", + "yodles\n", + "yodling\n", + "yods\n", + "yoga\n", + "yogas\n", + "yogee\n", + "yogees\n", + "yogh\n", + "yoghourt\n", + "yoghourts\n", + "yoghs\n", + "yoghurt\n", + "yoghurts\n", + "yogi\n", + "yogic\n", + "yogin\n", + "yogini\n", + "yoginis\n", + "yogins\n", + "yogis\n", + "yogurt\n", + "yogurts\n", + "yoicks\n", + "yoke\n", + "yoked\n", + "yokel\n", + "yokeless\n", + "yokelish\n", + "yokels\n", + "yokemate\n", + "yokemates\n", + "yokes\n", + "yoking\n", + "yolk\n", + "yolked\n", + "yolkier\n", + "yolkiest\n", + "yolks\n", + "yolky\n", + "yom\n", + "yomim\n", + "yon\n", + "yond\n", + "yonder\n", + "yoni\n", + "yonis\n", + "yonker\n", + "yonkers\n", + "yore\n", + "yores\n", + "you\n", + "young\n", + "younger\n", + "youngers\n", + "youngest\n", + "youngish\n", + "youngs\n", + "youngster\n", + "youngsters\n", + "younker\n", + "younkers\n", + "youpon\n", + "youpons\n", + "your\n", + "yourn\n", + "yours\n", + "yourself\n", + "yourselves\n", + "youse\n", + "youth\n", + "youthen\n", + "youthened\n", + "youthening\n", + "youthens\n", + "youthful\n", + "youthfully\n", + "youthfulness\n", + "youthfulnesses\n", + "youths\n", + "yow\n", + "yowe\n", + "yowed\n", + "yowes\n", + "yowie\n", + "yowies\n", + "yowing\n", + "yowl\n", + "yowled\n", + "yowler\n", + "yowlers\n", + "yowling\n", + "yowls\n", + "yows\n", + "yperite\n", + "yperites\n", + "ytterbia\n", + "ytterbias\n", + "ytterbic\n", + "yttria\n", + "yttrias\n", + "yttric\n", + "yttrium\n", + "yttriums\n", + "yuan\n", + "yuans\n", + "yucca\n", + "yuccas\n", + "yuga\n", + "yugas\n", + "yuk\n", + "yukked\n", + "yukking\n", + "yuks\n", + "yulan\n", + "yulans\n", + "yule\n", + "yules\n", + "yuletide\n", + "yuletides\n", + "yummier\n", + "yummies\n", + "yummiest\n", + "yummy\n", + "yup\n", + "yupon\n", + "yupons\n", + "yurt\n", + "yurta\n", + "yurts\n", + "ywis\n", + "zabaione\n", + "zabaiones\n", + "zabajone\n", + "zabajones\n", + "zacaton\n", + "zacatons\n", + "zaddik\n", + "zaddikim\n", + "zaffar\n", + "zaffars\n", + "zaffer\n", + "zaffers\n", + "zaffir\n", + "zaffirs\n", + "zaffre\n", + "zaffres\n", + "zaftig\n", + "zag\n", + "zagged\n", + "zagging\n", + "zags\n", + "zaibatsu\n", + "zaire\n", + "zaires\n", + "zamarra\n", + "zamarras\n", + "zamarro\n", + "zamarros\n", + "zamia\n", + "zamias\n", + "zamindar\n", + "zamindars\n", + "zanana\n", + "zananas\n", + "zander\n", + "zanders\n", + "zanier\n", + "zanies\n", + "zaniest\n", + "zanily\n", + "zaniness\n", + "zaninesses\n", + "zany\n", + "zanyish\n", + "zanza\n", + "zanzas\n", + "zap\n", + "zapateo\n", + "zapateos\n", + "zapped\n", + "zapping\n", + "zaps\n", + "zaptiah\n", + "zaptiahs\n", + "zaptieh\n", + "zaptiehs\n", + "zaratite\n", + "zaratites\n", + "zareba\n", + "zarebas\n", + "zareeba\n", + "zareebas\n", + "zarf\n", + "zarfs\n", + "zariba\n", + "zaribas\n", + "zarzuela\n", + "zarzuelas\n", + "zastruga\n", + "zastrugi\n", + "zax\n", + "zaxes\n", + "zayin\n", + "zayins\n", + "zeal\n", + "zealot\n", + "zealotries\n", + "zealotry\n", + "zealots\n", + "zealous\n", + "zealously\n", + "zealousness\n", + "zealousnesses\n", + "zeals\n", + "zeatin\n", + "zeatins\n", + "zebec\n", + "zebeck\n", + "zebecks\n", + "zebecs\n", + "zebra\n", + "zebraic\n", + "zebras\n", + "zebrass\n", + "zebrasses\n", + "zebrine\n", + "zebroid\n", + "zebu\n", + "zebus\n", + "zecchin\n", + "zecchini\n", + "zecchino\n", + "zecchinos\n", + "zecchins\n", + "zechin\n", + "zechins\n", + "zed\n", + "zedoaries\n", + "zedoary\n", + "zeds\n", + "zee\n", + "zees\n", + "zein\n", + "zeins\n", + "zeitgeist\n", + "zeitgeists\n", + "zelkova\n", + "zelkovas\n", + "zemindar\n", + "zemindars\n", + "zemstvo\n", + "zemstvos\n", + "zenana\n", + "zenanas\n", + "zenith\n", + "zenithal\n", + "zeniths\n", + "zeolite\n", + "zeolites\n", + "zeolitic\n", + "zephyr\n", + "zephyrs\n", + "zeppelin\n", + "zeppelins\n", + "zero\n", + "zeroed\n", + "zeroes\n", + "zeroing\n", + "zeros\n", + "zest\n", + "zested\n", + "zestful\n", + "zestfully\n", + "zestfulness\n", + "zestfulnesses\n", + "zestier\n", + "zestiest\n", + "zesting\n", + "zests\n", + "zesty\n", + "zeta\n", + "zetas\n", + "zeugma\n", + "zeugmas\n", + "zibeline\n", + "zibelines\n", + "zibet\n", + "zibeth\n", + "zibeths\n", + "zibets\n", + "zig\n", + "zigged\n", + "zigging\n", + "ziggurat\n", + "ziggurats\n", + "zigs\n", + "zigzag\n", + "zigzagged\n", + "zigzagging\n", + "zigzags\n", + "zikkurat\n", + "zikkurats\n", + "zikurat\n", + "zikurats\n", + "zilch\n", + "zilches\n", + "zillah\n", + "zillahs\n", + "zillion\n", + "zillions\n", + "zinc\n", + "zincate\n", + "zincates\n", + "zinced\n", + "zincic\n", + "zincified\n", + "zincifies\n", + "zincify\n", + "zincifying\n", + "zincing\n", + "zincite\n", + "zincites\n", + "zincked\n", + "zincking\n", + "zincky\n", + "zincoid\n", + "zincous\n", + "zincs\n", + "zincy\n", + "zing\n", + "zingani\n", + "zingano\n", + "zingara\n", + "zingare\n", + "zingari\n", + "zingaro\n", + "zinged\n", + "zingier\n", + "zingiest\n", + "zinging\n", + "zings\n", + "zingy\n", + "zinkified\n", + "zinkifies\n", + "zinkify\n", + "zinkifying\n", + "zinky\n", + "zinnia\n", + "zinnias\n", + "zip\n", + "zipped\n", + "zipper\n", + "zippered\n", + "zippering\n", + "zippers\n", + "zippier\n", + "zippiest\n", + "zipping\n", + "zippy\n", + "zips\n", + "ziram\n", + "zirams\n", + "zircon\n", + "zirconia\n", + "zirconias\n", + "zirconic\n", + "zirconium\n", + "zirconiums\n", + "zircons\n", + "zither\n", + "zithern\n", + "zitherns\n", + "zithers\n", + "ziti\n", + "zitis\n", + "zizith\n", + "zizzle\n", + "zizzled\n", + "zizzles\n", + "zizzling\n", + "zloty\n", + "zlotys\n", + "zoa\n", + "zoaria\n", + "zoarial\n", + "zoarium\n", + "zodiac\n", + "zodiacal\n", + "zodiacs\n", + "zoea\n", + "zoeae\n", + "zoeal\n", + "zoeas\n", + "zoftig\n", + "zoic\n", + "zoisite\n", + "zoisites\n", + "zombi\n", + "zombie\n", + "zombies\n", + "zombiism\n", + "zombiisms\n", + "zombis\n", + "zonal\n", + "zonally\n", + "zonary\n", + "zonate\n", + "zonated\n", + "zonation\n", + "zonations\n", + "zone\n", + "zoned\n", + "zoneless\n", + "zoner\n", + "zoners\n", + "zones\n", + "zonetime\n", + "zonetimes\n", + "zoning\n", + "zonked\n", + "zonula\n", + "zonulae\n", + "zonular\n", + "zonulas\n", + "zonule\n", + "zonules\n", + "zoo\n", + "zoochore\n", + "zoochores\n", + "zoogenic\n", + "zooglea\n", + "zoogleae\n", + "zoogleal\n", + "zoogleas\n", + "zoogloea\n", + "zoogloeae\n", + "zoogloeas\n", + "zooid\n", + "zooidal\n", + "zooids\n", + "zooks\n", + "zoolater\n", + "zoolaters\n", + "zoolatries\n", + "zoolatry\n", + "zoologic\n", + "zoological\n", + "zoologies\n", + "zoologist\n", + "zoologists\n", + "zoology\n", + "zoom\n", + "zoomania\n", + "zoomanias\n", + "zoomed\n", + "zoometries\n", + "zoometry\n", + "zooming\n", + "zoomorph\n", + "zoomorphs\n", + "zooms\n", + "zoon\n", + "zoonal\n", + "zoonoses\n", + "zoonosis\n", + "zoonotic\n", + "zoons\n", + "zoophile\n", + "zoophiles\n", + "zoophyte\n", + "zoophytes\n", + "zoos\n", + "zoosperm\n", + "zoosperms\n", + "zoospore\n", + "zoospores\n", + "zootomic\n", + "zootomies\n", + "zootomy\n", + "zori\n", + "zoril\n", + "zorilla\n", + "zorillas\n", + "zorille\n", + "zorilles\n", + "zorillo\n", + "zorillos\n", + "zorils\n", + "zoster\n", + "zosters\n", + "zouave\n", + "zouaves\n", + "zounds\n", + "zowie\n", + "zoysia\n", + "zoysias\n", + "zucchini\n", + "zucchinis\n", + "zwieback\n", + "zwiebacks\n", + "zygoma\n", + "zygomas\n", + "zygomata\n", + "zygose\n", + "zygoses\n", + "zygosis\n", + "zygosities\n", + "zygosity\n", + "zygote\n", + "zygotene\n", + "zygotenes\n", + "zygotes\n", + "zygotic\n", + "zymase\n", + "zymases\n", + "zyme\n", + "zymes\n", + "zymogen\n", + "zymogene\n", + "zymogenes\n", + "zymogens\n", + "zymologies\n", + "zymology\n", + "zymoses\n", + "zymosis\n", + "zymotic\n", + "zymurgies\n", + "zymurgy\n" + ] + } + ], "source": [ "for line in open('words.txt'):\n", " word = line.strip()\n", @@ -377,10 +114264,21 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 18, "id": "6bf8a104", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "5" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "x = 5\n", "x" @@ -396,10 +114294,21 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 19, "id": "0fe7ae60", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "7" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "x = 7\n", "x" @@ -415,7 +114324,7 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 20, "id": "8a09bc24", "metadata": { "tags": [] @@ -429,12 +114338,23 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 21, "id": "36a45674-7f41-4850-98f1-2548574ce958", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAEoAAABRCAYAAAB1wTApAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjYsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvq6yFwwAAAAlwSFlzAAAPYQAAD2EBqD+naQAABPxJREFUeJztmlkotF8YwB/7VlMo2bIkW8ggQsgFhbImLpQmyrVy68IFueFOLmSyXNCglLUsWbKmpEzKPtbMyL4vM+frOTX6/t+Xzxn9x7xvc341NDnvvKef5zzznOe8FoQQApwvsfx6CIeLMgAuihEuihEuihEuihEuihEuihEuihEuihEuihEuihEuihEuihEuihEuihEuihEuihEuihEuihGzEuXn5wfBwcEglUrpS6FQMF9rDWaGQqGgkowaUZubm+Dt7Q17e3v0fUNDA2RkZIBOpwNTsLu7C62traBUKo1/M2IgXV1dJCYmhkxNTRE/Pz+i0WiIqbi7uyPd3d2ktraWvLy80LlotdpPx/v6+pKIiAgSHh5OysrKDJq7Bf4wVG5FRQV0dHTA5OQkJCUl/fX3ubk5ODo6An9/f4iKioKRkRF4eXmhY/F28/PzYGdnB1lZWbC6ugoqlQp8fHwgLi4OhoeH4enpCRITE8HGxgZmZ2fB1tYWMjMzaeTs7OyAp6cn/ayhoSF4fHyE2NhYOqatre1jfh4eHn/N6/DwkN7n7e0NqqurYX19nc7NKDnq/f2dTtjFxQVOTk5ACFxdXcHZ2RmVoNFoPh2Hf0fwH1BZWQlBQUHsNzE03KuqqohMJiPb29vE29ub/v6djY0N0tLSQtRqNfkJVCoVqampIU1NTeTp6enTcff39+Tq6urjfWNjI0lOTma+j0GiBgcHSVhYGHl4eKDve3p6SFRU1H8meHNzQ5qbm0ldXR1RKpXE2GBu2t3d/WduQnCMVCr9yFE5OTlkf3/fuDnqK15fX2FwcJAu0YSEBEhLSwNLS3GXbEYRheDHLi8vw9jYGPj6+kJhYSE4OTmBWDGaKD34jdbX1wdWVlZQVFQEXl5eIEaMLgq5vb2Fnp4e+s2EJUF0dDSIjR8RpS8rRkdHad2EorAusrYWzw7qx0TpQVFY5Lm7u9OlKJFIQAz8uCgEC1VcilqtliZ53NULHZOIQh4eHmiSPzg4gPT0dIiPjwcLCwsQKiYThWDXYWJiAhYXFyE8PByys7Ppnk2ImFSUHixMBwYGwNnZGYqLi+k+UmgIQhSCm1lsqmE3ID8/37ANqzmJQp6fn6G/vx+2trYgNTUVUlJSBJO3BCUKwelgD2p6eppGFUaXvb09mBrBidKDUYXR5ejoSPOWm5sbmBLBikIuLy9p3sLGXG5uLoSFhYGpELQoIbVsBC8KwSkuLS3B+Pi4yVo2ohD1e8umt7eXbqZ/umUjKlGmbNmIrj8rkUhAJpNBZGQkzV14ZIUtHKzBOjs74ebmxij3FZ0oBJce7gvxtba2Bu3t7bSiV6vV9MzQGIhu6f2rZRMYGEi/HfHM7v9O9qKMqD87ENgtdXV1pdGlP9T4k4uLi4+nWPCFVT9GJtZqLIinF/sJWDLg8T3i4OBAj+Nx+WF/C6t6PXqRevABk5mZGeZOheiXnk6ng/Pzczg9PaXLEJ+0ub6+hpKSEggICPj0utDQUKivr4e8vDzzEPUdFhYWoKCgAI6Pj5kPOESfo76DXC6H0tJSg06BzC6i7u/v6SNBKysrEBISwnyd2UWUQqGgxaohksxSlFwuh/LycoOvM7ul913MLqK+CxfFCBfFCBfFCBfFCBfFCBfFCBfFCBfFCBfFCBfFCBfFCBfFCBfFCBfFCBfFCBfFCBfFCBfFCBfFCBcFbPwCKN0nqPIijUAAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "from diagram import diagram, adjust\n", "\n", @@ -458,7 +114378,7 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 22, "id": "ba2ab90b", "metadata": { "tags": [] @@ -470,10 +114390,21 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 23, "id": "88496dc4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "8" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "x = x + 1\n", "x" @@ -491,12 +114422,21 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 24, "id": "4a0c46b9", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'z' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[31mNameError\u001b[39m\u001b[31m:\u001b[39m name 'z' is not defined\n" + ] + } + ], "source": [ "%%expect NameError\n", "\n", @@ -514,10 +114454,21 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 25, "id": "2220d826", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "1" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "z = 0\n", "z = z + 1\n", @@ -536,10 +114487,21 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 26, "id": "d8e1ac5a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "3" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "z += 2\n", "z" @@ -565,7 +114527,7 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 27, "id": "0afd8f88", "metadata": {}, "outputs": [], @@ -589,10 +114551,21 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 28, "id": "8686b2eb-c610-4d29-a942-2ef8f53e5e36", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "113783" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "total" ] @@ -609,7 +114582,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 29, "id": "89a05280", "metadata": {}, "outputs": [], @@ -634,10 +114607,21 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 30, "id": "9d29b5e9", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "76162" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "count" ] @@ -652,10 +114636,21 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 31, "id": "304dfd86", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "66.93618554617122" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "count / total * 100" ] @@ -681,10 +114676,21 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 32, "id": "fe6431b7", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "word = 'Gadsby'\n", "'e' in word" @@ -700,7 +114706,7 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 33, "id": "85d3fba6", "metadata": {}, "outputs": [], @@ -722,7 +114728,7 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 34, "id": "2d653847", "metadata": {}, "outputs": [], @@ -742,10 +114748,21 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 35, "id": "a92a81bc", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'gadsby'" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "word.lower()" ] @@ -760,10 +114777,21 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 36, "id": "d15f83a4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'Gadsby'" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "word" ] @@ -778,7 +114806,7 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 37, "id": "e7958af4", "metadata": {}, "outputs": [], @@ -789,20 +114817,42 @@ }, { "cell_type": "code", - "execution_count": 36, + "execution_count": 38, "id": "020a57a7", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "has_e('Gadsby')" ] }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 39, "id": "0b979b20", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "has_e('Emma')" ] @@ -820,7 +114870,7 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 40, "id": "bd29ff63", "metadata": {}, "outputs": [], @@ -842,12 +114892,23 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 42, "id": "9369fb05", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "uses_any('banana', 'aeiou')" + "uses_any('banana', 'eiou')" ] }, { @@ -860,10 +114921,21 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 43, "id": "eb32713a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "uses_any('apple', 'xyz')" ] @@ -878,10 +114950,21 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 44, "id": "7e65a9fb", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "uses_any('Banana', 'AEIOU')" ] @@ -914,7 +114997,7 @@ }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 45, "id": "3982e7d3", "metadata": {}, "outputs": [], @@ -951,7 +115034,7 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 46, "id": "40ef00d3", "metadata": {}, "outputs": [], @@ -973,7 +115056,7 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 47, "id": "f37cfd36", "metadata": {}, "outputs": [], @@ -996,7 +115079,7 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 48, "id": "58c916cc", "metadata": {}, "outputs": [], @@ -1026,10 +115109,25 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 49, "id": "7a325745", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "**********************************************************************\n", + "File \"__main__\", line 4, in uses_any_incorrect\n", + "Failed example:\n", + " uses_any_incorrect('banana', 'aeiou')\n", + "Expected:\n", + " True\n", + "Got:\n", + " False\n" + ] + } + ], "source": [ "run_doctests(uses_any_incorrect)" ] @@ -1095,12 +115193,20 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 50, "id": "bc58db59", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Verbose\n" + ] + } + ], "source": [ "# This cell tells Jupyter to provide detailed debugging information\n", "# when a runtime error occurs. Run it before working on the exercises.\n", @@ -1120,7 +115226,7 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": 51, "id": "6b3cdf6a-0e90-4a98-b0f1-ab95dd195ca7", "metadata": {}, "outputs": [], @@ -1142,7 +115248,7 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 52, "id": "7cbb72b1", "metadata": {}, "outputs": [], @@ -1178,7 +115284,7 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": null, "id": "6c825b80", "metadata": {}, "outputs": [], @@ -1190,18 +115296,27 @@ " True\n", " >>> uses_none('apple', 'efg')\n", " False\n", + " >>> uses_none('peach', 'wtso')\n", + " True\n", + " >>> uses_none('Kiwi', 'weed')\n", + " Flase\n", " \"\"\"\n", - " return None" + " for letter in word.lower():\n", + " if letter in forbidden.lower():\n", + " return False\n", + " \n", + " return True" ] }, { "cell_type": "code", - "execution_count": 51, + "execution_count": null, "id": "86a6c2c8", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "run_doctests(uses_none)" ] }, { @@ -1658,7 +115773,7 @@ "metadata": { "celltoolbar": "Tags", "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "thinkpy", "language": "python", "name": "python3" }, @@ -1672,7 +115787,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.13.5" } }, "nbformat": 4, diff --git a/chapters/words.txt b/chapters/words.txt new file mode 100644 index 00000000..b91f6fc6 --- /dev/null +++ b/chapters/words.txt @@ -0,0 +1,113783 @@ +aa +aah +aahed +aahing +aahs +aal +aalii +aaliis +aals +aardvark +aardvarks +aardwolf +aardwolves +aas +aasvogel +aasvogels +aba +abaca +abacas +abaci +aback +abacus +abacuses +abaft +abaka +abakas +abalone +abalones +abamp +abampere +abamperes +abamps +abandon +abandoned +abandoning +abandonment +abandonments +abandons +abas +abase +abased +abasedly +abasement +abasements +abaser +abasers +abases +abash +abashed +abashes +abashing +abasing +abatable +abate +abated +abatement +abatements +abater +abaters +abates +abating +abatis +abatises +abator +abators +abattis +abattises +abattoir +abattoirs +abaxial +abaxile +abbacies +abbacy +abbatial +abbe +abbes +abbess +abbesses +abbey +abbeys +abbot +abbotcies +abbotcy +abbots +abbreviate +abbreviated +abbreviates +abbreviating +abbreviation +abbreviations +abdicate +abdicated +abdicates +abdicating +abdication +abdications +abdomen +abdomens +abdomina +abdominal +abdominally +abduce +abduced +abducens +abducent +abducentes +abduces +abducing +abduct +abducted +abducting +abductor +abductores +abductors +abducts +abeam +abed +abele +abeles +abelmosk +abelmosks +aberrant +aberrants +aberration +aberrations +abet +abetment +abetments +abets +abettal +abettals +abetted +abetter +abetters +abetting +abettor +abettors +abeyance +abeyances +abeyancies +abeyancy +abeyant +abfarad +abfarads +abhenries +abhenry +abhenrys +abhor +abhorred +abhorrence +abhorrences +abhorrent +abhorrer +abhorrers +abhorring +abhors +abidance +abidances +abide +abided +abider +abiders +abides +abiding +abied +abies +abigail +abigails +abilities +ability +abioses +abiosis +abiotic +abject +abjectly +abjectness +abjectnesses +abjuration +abjurations +abjure +abjured +abjurer +abjurers +abjures +abjuring +ablate +ablated +ablates +ablating +ablation +ablations +ablative +ablatives +ablaut +ablauts +ablaze +able +ablegate +ablegates +abler +ables +ablest +ablings +ablins +abloom +abluent +abluents +ablush +abluted +ablution +ablutions +ably +abmho +abmhos +abnegate +abnegated +abnegates +abnegating +abnegation +abnegations +abnormal +abnormalities +abnormality +abnormally +abnormals +abo +aboard +abode +aboded +abodes +aboding +abohm +abohms +aboideau +aboideaus +aboideaux +aboil +aboiteau +aboiteaus +aboiteaux +abolish +abolished +abolishes +abolishing +abolition +abolitions +abolla +abollae +aboma +abomas +abomasa +abomasal +abomasi +abomasum +abomasus +abominable +abominate +abominated +abominates +abominating +abomination +abominations +aboon +aboral +aborally +aboriginal +aborigine +aborigines +aborning +abort +aborted +aborter +aborters +aborting +abortion +abortions +abortive +aborts +abos +abought +aboulia +aboulias +aboulic +abound +abounded +abounding +abounds +about +above +aboveboard +aboves +abracadabra +abradant +abradants +abrade +abraded +abrader +abraders +abrades +abrading +abrasion +abrasions +abrasive +abrasively +abrasiveness +abrasivenesses +abrasives +abreact +abreacted +abreacting +abreacts +abreast +abri +abridge +abridged +abridgement +abridgements +abridger +abridgers +abridges +abridging +abridgment +abridgments +abris +abroach +abroad +abrogate +abrogated +abrogates +abrogating +abrupt +abrupter +abruptest +abruptly +abscess +abscessed +abscesses +abscessing +abscise +abscised +abscises +abscisin +abscising +abscisins +abscissa +abscissae +abscissas +abscond +absconded +absconding +absconds +absence +absences +absent +absented +absentee +absentees +absenter +absenters +absenting +absently +absentminded +absentmindedly +absentmindedness +absentmindednesses +absents +absinth +absinthe +absinthes +absinths +absolute +absolutely +absoluter +absolutes +absolutest +absolution +absolutions +absolve +absolved +absolver +absolvers +absolves +absolving +absonant +absorb +absorbed +absorbencies +absorbency +absorbent +absorber +absorbers +absorbing +absorbingly +absorbs +absorption +absorptions +absorptive +abstain +abstained +abstainer +abstainers +abstaining +abstains +abstemious +abstemiously +abstention +abstentions +absterge +absterged +absterges +absterging +abstinence +abstinences +abstract +abstracted +abstracter +abstractest +abstracting +abstraction +abstractions +abstractly +abstractness +abstractnesses +abstracts +abstrict +abstricted +abstricting +abstricts +abstruse +abstrusely +abstruseness +abstrusenesses +abstruser +abstrusest +absurd +absurder +absurdest +absurdities +absurdity +absurdly +absurds +abubble +abulia +abulias +abulic +abundance +abundances +abundant +abundantly +abusable +abuse +abused +abuser +abusers +abuses +abusing +abusive +abusively +abusiveness +abusivenesses +abut +abutilon +abutilons +abutment +abutments +abuts +abuttal +abuttals +abutted +abutter +abutters +abutting +abuzz +abvolt +abvolts +abwatt +abwatts +aby +abye +abyed +abyes +abying +abys +abysm +abysmal +abysmally +abysms +abyss +abyssal +abysses +acacia +acacias +academe +academes +academia +academias +academic +academically +academics +academies +academy +acajou +acajous +acaleph +acalephae +acalephe +acalephes +acalephs +acanthi +acanthus +acanthuses +acari +acarid +acaridan +acaridans +acarids +acarine +acarines +acaroid +acarpous +acarus +acaudal +acaudate +acauline +acaulose +acaulous +accede +acceded +acceder +acceders +accedes +acceding +accelerate +accelerated +accelerates +accelerating +acceleration +accelerations +accelerator +accelerators +accent +accented +accenting +accentor +accentors +accents +accentual +accentuate +accentuated +accentuates +accentuating +accentuation +accentuations +accept +acceptabilities +acceptability +acceptable +acceptance +acceptances +accepted +acceptee +acceptees +accepter +accepters +accepting +acceptor +acceptors +accepts +access +accessed +accesses +accessibilities +accessibility +accessible +accessing +accession +accessions +accessories +accessory +accident +accidental +accidentally +accidentals +accidents +accidie +accidies +acclaim +acclaimed +acclaiming +acclaims +acclamation +acclamations +acclimate +acclimated +acclimates +acclimating +acclimation +acclimations +acclimatization +acclimatizations +acclimatize +acclimatizes +accolade +accolades +accommodate +accommodated +accommodates +accommodating +accommodation +accommodations +accompanied +accompanies +accompaniment +accompaniments +accompanist +accompany +accompanying +accomplice +accomplices +accomplish +accomplished +accomplisher +accomplishers +accomplishes +accomplishing +accomplishment +accomplishments +accord +accordance +accordant +accorded +accorder +accorders +according +accordingly +accordion +accordions +accords +accost +accosted +accosting +accosts +account +accountabilities +accountability +accountable +accountancies +accountancy +accountant +accountants +accounted +accounting +accountings +accounts +accouter +accoutered +accoutering +accouters +accoutre +accoutred +accoutrement +accoutrements +accoutres +accoutring +accredit +accredited +accrediting +accredits +accrete +accreted +accretes +accreting +accrual +accruals +accrue +accrued +accrues +accruing +accumulate +accumulated +accumulates +accumulating +accumulation +accumulations +accumulator +accumulators +accuracies +accuracy +accurate +accurately +accurateness +accuratenesses +accursed +accurst +accusal +accusals +accusant +accusants +accusation +accusations +accuse +accused +accuser +accusers +accuses +accusing +accustom +accustomed +accustoming +accustoms +ace +aced +acedia +acedias +aceldama +aceldamas +acentric +acequia +acequias +acerate +acerated +acerb +acerbate +acerbated +acerbates +acerbating +acerber +acerbest +acerbic +acerbities +acerbity +acerola +acerolas +acerose +acerous +acers +acervate +acervuli +aces +acescent +acescents +aceta +acetal +acetals +acetamid +acetamids +acetate +acetated +acetates +acetic +acetified +acetifies +acetify +acetifying +acetone +acetones +acetonic +acetose +acetous +acetoxyl +acetoxyls +acetum +acetyl +acetylene +acetylenes +acetylic +acetyls +ache +ached +achene +achenes +achenial +aches +achier +achiest +achievable +achieve +achieved +achievement +achievements +achiever +achievers +achieves +achieving +achiness +achinesses +aching +achingly +achiote +achiotes +achoo +achromat +achromats +achromic +achy +acicula +aciculae +acicular +aciculas +acid +acidhead +acidheads +acidic +acidified +acidifies +acidify +acidifying +acidities +acidity +acidly +acidness +acidnesses +acidoses +acidosis +acidotic +acids +acidy +acierate +acierated +acierates +acierating +aciform +acinar +acing +acini +acinic +acinose +acinous +acinus +acknowledge +acknowledged +acknowledgement +acknowledgements +acknowledges +acknowledging +acknowledgment +acknowledgments +aclinic +acmatic +acme +acmes +acmic +acne +acned +acnes +acnode +acnodes +acock +acold +acolyte +acolytes +aconite +aconites +aconitic +aconitum +aconitums +acorn +acorns +acoustic +acoustical +acoustically +acoustics +acquaint +acquaintance +acquaintances +acquaintanceship +acquaintanceships +acquainted +acquainting +acquaints +acquest +acquests +acquiesce +acquiesced +acquiescence +acquiescences +acquiescent +acquiescently +acquiesces +acquiescing +acquire +acquired +acquirer +acquirers +acquires +acquiring +acquisition +acquisitions +acquisitive +acquit +acquits +acquitted +acquitting +acrasin +acrasins +acre +acreage +acreages +acred +acres +acrid +acrider +acridest +acridine +acridines +acridities +acridity +acridly +acridness +acridnesses +acrimonies +acrimonious +acrimony +acrobat +acrobatic +acrobats +acrodont +acrodonts +acrogen +acrogens +acrolein +acroleins +acrolith +acroliths +acromia +acromial +acromion +acronic +acronym +acronyms +across +acrostic +acrostics +acrotic +acrotism +acrotisms +acrylate +acrylates +acrylic +acrylics +act +acta +actable +acted +actin +actinal +acting +actings +actinia +actiniae +actinian +actinians +actinias +actinic +actinide +actinides +actinism +actinisms +actinium +actiniums +actinoid +actinoids +actinon +actinons +actins +action +actions +activate +activated +activates +activating +activation +activations +active +actively +actives +activism +activisms +activist +activists +activities +activity +actor +actorish +actors +actress +actresses +acts +actual +actualities +actuality +actualization +actualizations +actualize +actualized +actualizes +actualizing +actually +actuarial +actuaries +actuary +actuate +actuated +actuates +actuating +actuator +actuators +acuate +acuities +acuity +aculeate +acumen +acumens +acupuncture +acupunctures +acupuncturist +acupuncturists +acutance +acutances +acute +acutely +acuteness +acutenesses +acuter +acutes +acutest +acyclic +acyl +acylate +acylated +acylates +acylating +acyls +ad +adage +adages +adagial +adagio +adagios +adamance +adamances +adamancies +adamancy +adamant +adamantlies +adamantly +adamants +adamsite +adamsites +adapt +adaptabilities +adaptability +adaptable +adaptation +adaptations +adapted +adapter +adapters +adapting +adaption +adaptions +adaptive +adaptor +adaptors +adapts +adaxial +add +addable +addax +addaxes +added +addedly +addend +addenda +addends +addendum +adder +adders +addible +addict +addicted +addicting +addiction +addictions +addictive +addicts +adding +addition +additional +additionally +additions +additive +additives +addle +addled +addles +addling +address +addressable +addressed +addresses +addressing +addrest +adds +adduce +adduced +adducent +adducer +adducers +adduces +adducing +adduct +adducted +adducting +adductor +adductors +adducts +adeem +adeemed +adeeming +adeems +adenine +adenines +adenitis +adenitises +adenoid +adenoidal +adenoids +adenoma +adenomas +adenomata +adenopathy +adenyl +adenyls +adept +adepter +adeptest +adeptly +adeptness +adeptnesses +adepts +adequacies +adequacy +adequate +adequately +adhere +adhered +adherence +adherences +adherend +adherends +adherent +adherents +adherer +adherers +adheres +adhering +adhesion +adhesions +adhesive +adhesives +adhibit +adhibited +adhibiting +adhibits +adieu +adieus +adieux +adios +adipic +adipose +adiposes +adiposis +adipous +adit +adits +adjacent +adjectival +adjectivally +adjective +adjectives +adjoin +adjoined +adjoining +adjoins +adjoint +adjoints +adjourn +adjourned +adjourning +adjournment +adjournments +adjourns +adjudge +adjudged +adjudges +adjudging +adjudicate +adjudicated +adjudicates +adjudicating +adjudication +adjudications +adjunct +adjuncts +adjure +adjured +adjurer +adjurers +adjures +adjuring +adjuror +adjurors +adjust +adjustable +adjusted +adjuster +adjusters +adjusting +adjustment +adjustments +adjustor +adjustors +adjusts +adjutant +adjutants +adjuvant +adjuvants +adman +admass +admen +administer +administers +administrable +administrant +administrants +administration +administrations +administrative +administratively +administrator +administrators +adminstration +adminstrations +admiral +admirals +admiration +admirations +admire +admired +admirer +admirers +admires +admiring +admiringly +admissibilities +admissibility +admissible +admissibly +admission +admissions +admit +admits +admittance +admittances +admitted +admittedly +admitter +admitters +admitting +admix +admixed +admixes +admixing +admixt +admixture +admixtures +admonish +admonished +admonishes +admonishing +adnate +adnation +adnations +adnexa +adnexal +adnoun +adnouns +ado +adobe +adobes +adolescence +adolescences +adolescent +adolescents +adopt +adopted +adoptee +adoptees +adopter +adopters +adopting +adoption +adoptions +adoptive +adopts +adorable +adorably +adoration +adorations +adore +adored +adorer +adorers +adores +adoring +adorn +adorned +adorner +adorners +adorning +adorns +ados +adown +adoze +adrenal +adrenals +adriamycin +adrift +adroit +adroiter +adroitest +adroitly +adroitness +adroitnesses +ads +adscript +adscripts +adsorb +adsorbed +adsorbing +adsorbs +adularia +adularias +adulate +adulated +adulates +adulating +adulator +adulators +adult +adulterate +adulterated +adulterates +adulterating +adulteration +adulterations +adulterer +adulterers +adulteress +adulteresses +adulteries +adulterous +adultery +adulthood +adulthoods +adultly +adults +adumbral +adunc +aduncate +aduncous +adust +advance +advanced +advancement +advancements +advancer +advancers +advances +advancing +advantage +advantageous +advantageously +advantages +advent +adventitious +adventitiously +adventitiousness +adventitiousnesses +advents +adventure +adventurer +adventurers +adventures +adventuresome +adventurous +adverb +adverbially +adverbs +adversaries +adversary +adverse +adversity +advert +adverted +adverting +advertise +advertised +advertisement +advertisements +advertiser +advertisers +advertises +advertising +advertisings +adverts +advice +advices +advisabilities +advisability +advisable +advise +advised +advisee +advisees +advisement +advisements +adviser +advisers +advises +advising +advisor +advisories +advisors +advisory +advocacies +advocacy +advocate +advocated +advocates +advocating +advowson +advowsons +adynamia +adynamias +adynamic +adyta +adytum +adz +adze +adzes +ae +aecia +aecial +aecidia +aecidium +aecium +aedes +aedile +aediles +aedine +aegis +aegises +aeneous +aeneus +aeolian +aeon +aeonian +aeonic +aeons +aerate +aerated +aerates +aerating +aeration +aerations +aerator +aerators +aerial +aerially +aerials +aerie +aerier +aeries +aeriest +aerified +aerifies +aeriform +aerify +aerifying +aerily +aero +aerobe +aerobes +aerobia +aerobic +aerobium +aeroduct +aeroducts +aerodynamic +aerodynamical +aerodynamically +aerodynamics +aerodyne +aerodynes +aerofoil +aerofoils +aerogel +aerogels +aerogram +aerograms +aerolite +aerolites +aerolith +aeroliths +aerologies +aerology +aeronaut +aeronautic +aeronautical +aeronautically +aeronautics +aeronauts +aeronomies +aeronomy +aerosol +aerosols +aerospace +aerostat +aerostats +aerugo +aerugos +aery +aesthete +aesthetes +aesthetic +aesthetically +aesthetics +aestival +aether +aetheric +aethers +afar +afars +afeard +afeared +aff +affabilities +affability +affable +affably +affair +affaire +affaires +affairs +affect +affectation +affectations +affected +affectedly +affecter +affecters +affecting +affectingly +affection +affectionate +affectionately +affections +affects +afferent +affiance +affianced +affiances +affiancing +affiant +affiants +affiche +affiches +affidavit +affidavits +affiliate +affiliated +affiliates +affiliating +affiliation +affiliations +affine +affined +affinely +affines +affinities +affinity +affirm +affirmation +affirmations +affirmative +affirmatively +affirmatives +affirmed +affirmer +affirmers +affirming +affirms +affix +affixal +affixed +affixer +affixers +affixes +affixial +affixing +afflatus +afflatuses +afflict +afflicted +afflicting +affliction +afflictions +afflicts +affluence +affluences +affluent +affluents +afflux +affluxes +afford +afforded +affording +affords +afforest +afforested +afforesting +afforests +affray +affrayed +affrayer +affrayers +affraying +affrays +affright +affrighted +affrighting +affrights +affront +affronted +affronting +affronts +affusion +affusions +afghan +afghani +afghanis +afghans +afield +afire +aflame +afloat +aflutter +afoot +afore +afoul +afraid +afreet +afreets +afresh +afrit +afrits +aft +after +afterlife +afterlifes +aftermath +aftermaths +afternoon +afternoons +afters +aftertax +afterthought +afterthoughts +afterward +afterwards +aftmost +aftosa +aftosas +aga +again +against +agalloch +agallochs +agalwood +agalwoods +agama +agamas +agamete +agametes +agamic +agamous +agapae +agapai +agape +agapeic +agar +agaric +agarics +agars +agas +agate +agates +agatize +agatized +agatizes +agatizing +agatoid +agave +agaves +agaze +age +aged +agedly +agedness +agednesses +agee +ageing +ageings +ageless +agelong +agencies +agency +agenda +agendas +agendum +agendums +agene +agenes +ageneses +agenesia +agenesias +agenesis +agenetic +agenize +agenized +agenizes +agenizing +agent +agential +agentries +agentry +agents +ager +ageratum +ageratums +agers +ages +agger +aggers +aggie +aggies +aggrade +aggraded +aggrades +aggrading +aggrandize +aggrandized +aggrandizement +aggrandizements +aggrandizes +aggrandizing +aggravate +aggravates +aggravation +aggravations +aggregate +aggregated +aggregates +aggregating +aggress +aggressed +aggresses +aggressing +aggression +aggressions +aggressive +aggressively +aggressiveness +aggressivenesses +aggrieve +aggrieved +aggrieves +aggrieving +agha +aghas +aghast +agile +agilely +agilities +agility +agin +aging +agings +aginner +aginners +agio +agios +agiotage +agiotages +agist +agisted +agisting +agists +agitable +agitate +agitated +agitates +agitating +agitation +agitations +agitato +agitator +agitators +agitprop +agitprops +aglare +agleam +aglee +aglet +aglets +agley +aglimmer +aglitter +aglow +agly +aglycon +aglycone +aglycones +aglycons +agma +agmas +agminate +agnail +agnails +agnate +agnates +agnatic +agnation +agnations +agnize +agnized +agnizes +agnizing +agnomen +agnomens +agnomina +agnostic +agnostics +ago +agog +agon +agonal +agone +agones +agonic +agonies +agonise +agonised +agonises +agonising +agonist +agonists +agonize +agonized +agonizes +agonizing +agonizingly +agons +agony +agora +agorae +agoras +agorot +agoroth +agouti +agouties +agoutis +agouty +agrafe +agrafes +agraffe +agraffes +agrapha +agraphia +agraphias +agraphic +agrarian +agrarianism +agrarianisms +agrarians +agree +agreeable +agreeableness +agreeablenesses +agreed +agreeing +agreement +agreements +agrees +agrestal +agrestic +agricultural +agriculturalist +agriculturalists +agriculture +agricultures +agriculturist +agriculturists +agrimonies +agrimony +agrologies +agrology +agronomies +agronomy +aground +ague +aguelike +agues +agueweed +agueweeds +aguish +aguishly +ah +aha +ahchoo +ahead +ahem +ahimsa +ahimsas +ahold +aholds +ahorse +ahoy +ahoys +ahull +ai +aiblins +aid +aide +aided +aider +aiders +aides +aidful +aiding +aidless +aidman +aidmen +aids +aiglet +aiglets +aigret +aigrets +aigrette +aigrettes +aiguille +aiguilles +aikido +aikidos +ail +ailed +aileron +ailerons +ailing +ailment +ailments +ails +aim +aimed +aimer +aimers +aimful +aimfully +aiming +aimless +aimlessly +aimlessness +aimlessnesses +aims +ain +aine +ainee +ains +ainsell +ainsells +air +airboat +airboats +airborne +airbound +airbrush +airbrushed +airbrushes +airbrushing +airburst +airbursts +airbus +airbuses +airbusses +aircoach +aircoaches +aircondition +airconditioned +airconditioning +airconditions +aircraft +aircrew +aircrews +airdrome +airdromes +airdrop +airdropped +airdropping +airdrops +aired +airer +airest +airfield +airfields +airflow +airflows +airfoil +airfoils +airframe +airframes +airglow +airglows +airhead +airheads +airier +airiest +airily +airiness +airinesses +airing +airings +airless +airlift +airlifted +airlifting +airlifts +airlike +airline +airliner +airliners +airlines +airmail +airmailed +airmailing +airmails +airman +airmen +airn +airns +airpark +airparks +airplane +airplanes +airport +airports +airpost +airposts +airproof +airproofed +airproofing +airproofs +airs +airscrew +airscrews +airship +airships +airsick +airspace +airspaces +airspeed +airspeeds +airstrip +airstrips +airt +airted +airth +airthed +airthing +airths +airtight +airting +airts +airward +airwave +airwaves +airway +airways +airwise +airwoman +airwomen +airy +ais +aisle +aisled +aisles +ait +aitch +aitches +aits +aiver +aivers +ajar +ajee +ajiva +ajivas +ajowan +ajowans +akee +akees +akela +akelas +akene +akenes +akimbo +akin +akvavit +akvavits +ala +alabaster +alabasters +alack +alacrities +alacrity +alae +alameda +alamedas +alamo +alamode +alamodes +alamos +alan +aland +alands +alane +alang +alanin +alanine +alanines +alanins +alans +alant +alants +alanyl +alanyls +alar +alarm +alarmed +alarming +alarmism +alarmisms +alarmist +alarmists +alarms +alarum +alarumed +alaruming +alarums +alary +alas +alaska +alaskas +alastor +alastors +alate +alated +alation +alations +alb +alba +albacore +albacores +albas +albata +albatas +albatross +albatrosses +albedo +albedos +albeit +albicore +albicores +albinal +albinic +albinism +albinisms +albino +albinos +albite +albites +albitic +albs +album +albumen +albumens +albumin +albumins +albumose +albumoses +albums +alburnum +alburnums +alcade +alcades +alcahest +alcahests +alcaic +alcaics +alcaide +alcaides +alcalde +alcaldes +alcayde +alcaydes +alcazar +alcazars +alchemic +alchemical +alchemies +alchemist +alchemists +alchemy +alchymies +alchymy +alcidine +alcohol +alcoholic +alcoholics +alcoholism +alcoholisms +alcohols +alcove +alcoved +alcoves +aldehyde +aldehydes +alder +alderman +aldermen +alders +aldol +aldolase +aldolases +aldols +aldose +aldoses +aldovandi +aldrin +aldrins +ale +aleatory +alec +alecs +alee +alef +alefs +alegar +alegars +alehouse +alehouses +alembic +alembics +aleph +alephs +alert +alerted +alerter +alertest +alerting +alertly +alertness +alertnesses +alerts +ales +aleuron +aleurone +aleurones +aleurons +alevin +alevins +alewife +alewives +alexia +alexias +alexin +alexine +alexines +alexins +alfa +alfaki +alfakis +alfalfa +alfalfas +alfaqui +alfaquin +alfaquins +alfaquis +alfas +alforja +alforjas +alfresco +alga +algae +algal +algaroba +algarobas +algas +algebra +algebraic +algebraically +algebras +algerine +algerines +algicide +algicides +algid +algidities +algidity +algin +alginate +alginates +algins +algoid +algologies +algology +algor +algorism +algorisms +algorithm +algorithms +algors +algum +algums +alias +aliases +alibi +alibied +alibies +alibiing +alibis +alible +alidad +alidade +alidades +alidads +alien +alienage +alienages +alienate +alienated +alienates +alienating +alienation +alienations +aliened +alienee +alienees +aliener +alieners +aliening +alienism +alienisms +alienist +alienists +alienly +alienor +alienors +aliens +alif +aliform +alifs +alight +alighted +alighting +alights +align +aligned +aligner +aligners +aligning +alignment +alignments +aligns +alike +aliment +alimentary +alimentation +alimented +alimenting +aliments +alimonies +alimony +aline +alined +aliner +aliners +alines +alining +aliped +alipeds +aliquant +aliquot +aliquots +alist +alit +aliunde +alive +aliyah +aliyahs +alizarin +alizarins +alkahest +alkahests +alkali +alkalic +alkalies +alkalified +alkalifies +alkalify +alkalifying +alkalin +alkaline +alkalinities +alkalinity +alkalis +alkalise +alkalised +alkalises +alkalising +alkalize +alkalized +alkalizes +alkalizing +alkaloid +alkaloids +alkane +alkanes +alkanet +alkanets +alkene +alkenes +alkine +alkines +alkoxy +alkyd +alkyds +alkyl +alkylate +alkylated +alkylates +alkylating +alkylic +alkyls +alkyne +alkynes +all +allanite +allanites +allay +allayed +allayer +allayers +allaying +allays +allegation +allegations +allege +alleged +allegedly +alleger +allegers +alleges +allegiance +allegiances +alleging +allegorical +allegories +allegory +allegro +allegros +allele +alleles +allelic +allelism +allelisms +alleluia +alleluias +allergen +allergenic +allergens +allergic +allergies +allergin +allergins +allergist +allergists +allergy +alleviate +alleviated +alleviates +alleviating +alleviation +alleviations +alley +alleys +alleyway +alleyways +allheal +allheals +alliable +alliance +alliances +allied +allies +alligator +alligators +alliteration +alliterations +alliterative +allium +alliums +allobar +allobars +allocate +allocated +allocates +allocating +allocation +allocations +allod +allodia +allodial +allodium +allods +allogamies +allogamy +allonge +allonges +allonym +allonyms +allopath +allopaths +allopurinol +allot +allotment +allotments +allots +allotted +allottee +allottees +allotter +allotters +allotting +allotype +allotypes +allotypies +allotypy +allover +allovers +allow +allowable +allowance +allowances +allowed +allowing +allows +alloxan +alloxans +alloy +alloyed +alloying +alloys +alls +allseed +allseeds +allspice +allspices +allude +alluded +alludes +alluding +allure +allured +allurement +allurements +allurer +allurers +allures +alluring +allusion +allusions +allusive +allusively +allusiveness +allusivenesses +alluvia +alluvial +alluvials +alluvion +alluvions +alluvium +alluviums +ally +allying +allyl +allylic +allyls +alma +almagest +almagests +almah +almahs +almanac +almanacs +almas +alme +almeh +almehs +almemar +almemars +almes +almighty +almner +almners +almond +almonds +almoner +almoners +almonries +almonry +almost +alms +almsman +almsmen +almuce +almuces +almud +almude +almudes +almuds +almug +almugs +alnico +alnicoes +alodia +alodial +alodium +aloe +aloes +aloetic +aloft +alogical +aloha +alohas +aloin +aloins +alone +along +alongside +aloof +aloofly +alopecia +alopecias +alopecic +aloud +alow +alp +alpaca +alpacas +alpha +alphabet +alphabeted +alphabetic +alphabetical +alphabetically +alphabeting +alphabetize +alphabetized +alphabetizer +alphabetizers +alphabetizes +alphabetizing +alphabets +alphanumeric +alphanumerics +alphas +alphorn +alphorns +alphosis +alphosises +alphyl +alphyls +alpine +alpinely +alpines +alpinism +alpinisms +alpinist +alpinists +alps +already +alright +alsike +alsikes +also +alt +altar +altars +alter +alterant +alterants +alteration +alterations +altercation +altercations +altered +alterer +alterers +altering +alternate +alternated +alternates +alternating +alternation +alternations +alternative +alternatively +alternatives +alternator +alternators +alters +althaea +althaeas +althea +altheas +altho +althorn +althorns +although +altimeter +altimeters +altitude +altitudes +alto +altogether +altos +altruism +altruisms +altruist +altruistic +altruistically +altruists +alts +aludel +aludels +alula +alulae +alular +alum +alumin +alumina +aluminas +alumine +alumines +aluminic +alumins +aluminum +aluminums +alumna +alumnae +alumni +alumnus +alumroot +alumroots +alums +alunite +alunites +alveolar +alveolars +alveoli +alveolus +alvine +alway +always +alyssum +alyssums +am +ama +amadavat +amadavats +amadou +amadous +amah +amahs +amain +amalgam +amalgamate +amalgamated +amalgamates +amalgamating +amalgamation +amalgamations +amalgams +amandine +amanita +amanitas +amanuensis +amaranth +amaranths +amarelle +amarelles +amarna +amaryllis +amaryllises +amas +amass +amassed +amasser +amassers +amasses +amassing +amateur +amateurish +amateurism +amateurisms +amateurs +amative +amatol +amatols +amatory +amaze +amazed +amazedly +amazement +amazements +amazes +amazing +amazingly +amazon +amazonian +amazons +ambage +ambages +ambari +ambaries +ambaris +ambary +ambassador +ambassadorial +ambassadors +ambassadorship +ambassadorships +ambeer +ambeers +amber +ambergris +ambergrises +amberies +amberoid +amberoids +ambers +ambery +ambiance +ambiances +ambidextrous +ambidextrously +ambience +ambiences +ambient +ambients +ambiguities +ambiguity +ambiguous +ambit +ambition +ambitioned +ambitioning +ambitions +ambitious +ambitiously +ambits +ambivalence +ambivalences +ambivalent +ambivert +ambiverts +amble +ambled +ambler +amblers +ambles +ambling +ambo +amboina +amboinas +ambones +ambos +amboyna +amboynas +ambries +ambroid +ambroids +ambrosia +ambrosias +ambry +ambsace +ambsaces +ambulance +ambulances +ambulant +ambulate +ambulated +ambulates +ambulating +ambulation +ambulatory +ambush +ambushed +ambusher +ambushers +ambushes +ambushing +ameba +amebae +ameban +amebas +amebean +amebic +ameboid +ameer +ameerate +ameerates +ameers +amelcorn +amelcorns +ameliorate +ameliorated +ameliorates +ameliorating +amelioration +ameliorations +amen +amenable +amenably +amend +amended +amender +amenders +amending +amendment +amendments +amends +amenities +amenity +amens +ament +amentia +amentias +aments +amerce +amerced +amercer +amercers +amerces +amercing +amesace +amesaces +amethyst +amethysts +ami +amia +amiabilities +amiability +amiable +amiably +amiantus +amiantuses +amias +amicable +amicably +amice +amices +amid +amidase +amidases +amide +amides +amidic +amidin +amidins +amido +amidogen +amidogens +amidol +amidols +amids +amidship +amidst +amie +amies +amiga +amigas +amigo +amigos +amin +amine +amines +aminic +aminities +aminity +amino +amins +amir +amirate +amirates +amirs +amis +amiss +amities +amitoses +amitosis +amitotic +amitrole +amitroles +amity +ammeter +ammeters +ammine +ammines +ammino +ammo +ammocete +ammocetes +ammonal +ammonals +ammonia +ammoniac +ammoniacs +ammonias +ammonic +ammonified +ammonifies +ammonify +ammonifying +ammonite +ammonites +ammonium +ammoniums +ammonoid +ammonoids +ammos +ammunition +ammunitions +amnesia +amnesiac +amnesiacs +amnesias +amnesic +amnesics +amnestic +amnestied +amnesties +amnesty +amnestying +amnia +amnic +amnion +amnionic +amnions +amniote +amniotes +amniotic +amoeba +amoebae +amoeban +amoebas +amoebean +amoebic +amoeboid +amok +amoks +amole +amoles +among +amongst +amoral +amorally +amoretti +amoretto +amorettos +amorini +amorino +amorist +amorists +amoroso +amorous +amorously +amorousness +amorousnesses +amorphous +amort +amortise +amortised +amortises +amortising +amortization +amortizations +amortize +amortized +amortizes +amortizing +amotion +amotions +amount +amounted +amounting +amounts +amour +amours +amp +amperage +amperages +ampere +amperes +ampersand +ampersands +amphibia +amphibian +amphibians +amphibious +amphioxi +amphipod +amphipods +amphitheater +amphitheaters +amphora +amphorae +amphoral +amphoras +ample +ampler +amplest +amplification +amplifications +amplified +amplifier +amplifiers +amplifies +amplify +amplifying +amplitude +amplitudes +amply +ampoule +ampoules +amps +ampul +ampule +ampules +ampulla +ampullae +ampullar +ampuls +amputate +amputated +amputates +amputating +amputation +amputations +amputee +amputees +amreeta +amreetas +amrita +amritas +amtrac +amtrack +amtracks +amtracs +amu +amuck +amucks +amulet +amulets +amus +amusable +amuse +amused +amusedly +amusement +amusements +amuser +amusers +amuses +amusing +amusive +amygdala +amygdalae +amygdale +amygdales +amygdule +amygdules +amyl +amylase +amylases +amylene +amylenes +amylic +amyloid +amyloids +amylose +amyloses +amyls +amylum +amylums +an +ana +anabaena +anabaenas +anabas +anabases +anabasis +anabatic +anableps +anablepses +anabolic +anachronism +anachronisms +anachronistic +anaconda +anacondas +anadem +anadems +anaemia +anaemias +anaemic +anaerobe +anaerobes +anaesthesiology +anaesthetic +anaesthetics +anaglyph +anaglyphs +anagoge +anagoges +anagogic +anagogies +anagogy +anagram +anagrammed +anagramming +anagrams +anal +analcime +analcimes +analcite +analcites +analecta +analects +analemma +analemmas +analemmata +analgesic +analgesics +analgia +analgias +analities +anality +anally +analog +analogic +analogical +analogically +analogies +analogously +analogs +analogue +analogues +analogy +analyse +analysed +analyser +analysers +analyses +analysing +analysis +analyst +analysts +analytic +analytical +analyzable +analyze +analyzed +analyzer +analyzers +analyzes +analyzing +ananke +anankes +anapaest +anapaests +anapest +anapests +anaphase +anaphases +anaphora +anaphoras +anaphylactic +anarch +anarchic +anarchies +anarchism +anarchisms +anarchist +anarchistic +anarchists +anarchs +anarchy +anarthria +anas +anasarca +anasarcas +anatase +anatases +anathema +anathemas +anathemata +anatomic +anatomical +anatomically +anatomies +anatomist +anatomists +anatomy +anatoxin +anatoxins +anatto +anattos +ancestor +ancestors +ancestral +ancestress +ancestresses +ancestries +ancestry +anchor +anchorage +anchorages +anchored +anchoret +anchorets +anchoring +anchorman +anchormen +anchors +anchovies +anchovy +anchusa +anchusas +anchusin +anchusins +ancient +ancienter +ancientest +ancients +ancilla +ancillae +ancillary +ancillas +ancon +anconal +ancone +anconeal +ancones +anconoid +ancress +ancresses +and +andante +andantes +anded +andesite +andesites +andesyte +andesytes +andiron +andirons +androgen +androgens +androgynous +android +androids +ands +ane +anear +aneared +anearing +anears +anecdota +anecdotal +anecdote +anecdotes +anechoic +anele +aneled +aneles +aneling +anemia +anemias +anemic +anemone +anemones +anenst +anent +anergia +anergias +anergic +anergies +anergy +aneroid +aneroids +anes +anesthesia +anesthesias +anesthetic +anesthetics +anesthetist +anesthetists +anesthetize +anesthetized +anesthetizes +anesthetizing +anestri +anestrus +anethol +anethole +anetholes +anethols +aneurism +aneurisms +aneurysm +aneurysms +anew +anga +angaria +angarias +angaries +angary +angas +angel +angelic +angelica +angelical +angelically +angelicas +angels +angelus +angeluses +anger +angered +angering +angerly +angers +angina +anginal +anginas +anginose +anginous +angioma +angiomas +angiomata +angle +angled +anglepod +anglepods +angler +anglers +angles +angleworm +angleworms +anglice +angling +anglings +angora +angoras +angrier +angriest +angrily +angry +angst +angstrom +angstroms +angsts +anguine +anguish +anguished +anguishes +anguishing +angular +angularities +angularity +angulate +angulated +angulates +angulating +angulose +angulous +anhinga +anhingas +ani +anil +anile +anilin +aniline +anilines +anilins +anilities +anility +anils +anima +animal +animally +animals +animas +animate +animated +animater +animaters +animates +animating +animation +animations +animato +animator +animators +anime +animes +animi +animis +animism +animisms +animist +animists +animosities +animosity +animus +animuses +anion +anionic +anions +anis +anise +aniseed +aniseeds +anises +anisette +anisettes +anisic +anisole +anisoles +ankerite +ankerites +ankh +ankhs +ankle +anklebone +anklebones +ankles +anklet +anklets +ankus +ankuses +ankush +ankushes +ankylose +ankylosed +ankyloses +ankylosing +anlace +anlaces +anlage +anlagen +anlages +anlas +anlases +anna +annal +annalist +annalists +annals +annas +annates +annatto +annattos +anneal +annealed +annealer +annealers +annealing +anneals +annelid +annelids +annex +annexation +annexations +annexe +annexed +annexes +annexing +annihilate +annihilated +annihilates +annihilating +annihilation +annihilations +anniversaries +anniversary +annotate +annotated +annotates +annotating +annotation +annotations +annotator +annotators +announce +announced +announcement +announcements +announcer +announcers +announces +announcing +annoy +annoyance +annoyances +annoyed +annoyer +annoyers +annoying +annoyingly +annoys +annual +annually +annuals +annuities +annuity +annul +annular +annulate +annulet +annulets +annuli +annulled +annulling +annulment +annulments +annulose +annuls +annulus +annuluses +anoa +anoas +anodal +anodally +anode +anodes +anodic +anodically +anodize +anodized +anodizes +anodizing +anodyne +anodynes +anodynic +anoint +anointed +anointer +anointers +anointing +anointment +anointments +anoints +anole +anoles +anolyte +anolytes +anomalies +anomalous +anomaly +anomic +anomie +anomies +anomy +anon +anonym +anonymities +anonymity +anonymous +anonymously +anonyms +anoopsia +anoopsias +anopia +anopias +anopsia +anopsias +anorak +anoraks +anoretic +anorexia +anorexias +anorexies +anorexy +anorthic +anosmia +anosmias +anosmic +another +anoxemia +anoxemias +anoxemic +anoxia +anoxias +anoxic +ansa +ansae +ansate +ansated +anserine +anserines +anserous +answer +answerable +answered +answerer +answerers +answering +answers +ant +anta +antacid +antacids +antae +antagonism +antagonisms +antagonist +antagonistic +antagonists +antagonize +antagonized +antagonizes +antagonizing +antalgic +antalgics +antarctic +antas +ante +anteater +anteaters +antebellum +antecede +anteceded +antecedent +antecedents +antecedes +anteceding +anted +antedate +antedated +antedates +antedating +anteed +antefix +antefixa +antefixes +anteing +antelope +antelopes +antenna +antennae +antennal +antennas +antepast +antepasts +anterior +anteroom +anterooms +antes +antetype +antetypes +antevert +anteverted +anteverting +anteverts +anthelia +anthelices +anthelix +anthem +anthemed +anthemia +antheming +anthems +anther +antheral +antherid +antherids +anthers +antheses +anthesis +anthill +anthills +anthodia +anthoid +anthologies +anthology +anthraces +anthracite +anthracites +anthrax +anthropoid +anthropological +anthropologist +anthropologists +anthropology +anti +antiabortion +antiacademic +antiadministration +antiaggression +antiaggressive +antiaircraft +antialien +antianarchic +antianarchist +antiannexation +antiapartheid +antiar +antiarin +antiarins +antiaristocrat +antiaristocratic +antiars +antiatheism +antiatheist +antiauthoritarian +antibacterial +antibiotic +antibiotics +antiblack +antibodies +antibody +antibourgeois +antiboxing +antiboycott +antibureaucratic +antiburglar +antiburglary +antibusiness +antic +anticancer +anticapitalism +anticapitalist +anticapitalistic +anticensorship +antichurch +anticigarette +anticipate +anticipated +anticipates +anticipating +anticipation +anticipations +anticipatory +antick +anticked +anticking +anticks +anticlerical +anticlimactic +anticlimax +anticlimaxes +anticly +anticollision +anticolonial +anticommunism +anticommunist +anticonservation +anticonservationist +anticonsumer +anticonventional +anticorrosive +anticorruption +anticrime +anticruelty +antics +anticultural +antidandruff +antidemocratic +antidiscrimination +antidote +antidotes +antidumping +antieavesdropping +antiemetic +antiemetics +antiestablishment +antievolution +antievolutionary +antifanatic +antifascism +antifascist +antifat +antifatigue +antifemale +antifeminine +antifeminism +antifeminist +antifertility +antiforeign +antiforeigner +antifraud +antifreeze +antifreezes +antifungus +antigambling +antigen +antigene +antigenes +antigens +antiglare +antigonorrheal +antigovernment +antigraft +antiguerilla +antihero +antiheroes +antihijack +antihistamine +antihistamines +antihomosexual +antihuman +antihumanism +antihumanistic +antihumanity +antihunting +antijamming +antiking +antikings +antilabor +antiliberal +antiliberalism +antilitter +antilittering +antilog +antilogies +antilogs +antilogy +antilynching +antimanagement +antimask +antimasks +antimaterialism +antimaterialist +antimaterialistic +antimere +antimeres +antimicrobial +antimilitarism +antimilitarist +antimilitaristic +antimilitary +antimiscegenation +antimonies +antimonopolist +antimonopoly +antimony +antimosquito +anting +antings +antinode +antinodes +antinoise +antinomies +antinomy +antiobesity +antipapal +antipathies +antipathy +antipersonnel +antiphon +antiphons +antipode +antipodes +antipole +antipoles +antipolice +antipollution +antipope +antipopes +antipornographic +antipornography +antipoverty +antiprofiteering +antiprogressive +antiprostitution +antipyic +antipyics +antipyretic +antiquarian +antiquarianism +antiquarians +antiquaries +antiquary +antiquated +antique +antiqued +antiquer +antiquers +antiques +antiquing +antiquities +antiquity +antirabies +antiracing +antiracketeering +antiradical +antirealism +antirealistic +antirecession +antireform +antireligious +antirepublican +antirevolutionary +antirobbery +antiromantic +antirust +antirusts +antis +antisegregation +antiseptic +antiseptically +antiseptics +antisera +antisexist +antisexual +antishoplifting +antiskid +antislavery +antismog +antismoking +antismuggling +antispending +antistrike +antistudent +antisubmarine +antisubversion +antisubversive +antisuicide +antisyphillis +antitank +antitax +antitechnological +antitechnology +antiterrorism +antiterrorist +antitheft +antitheses +antithesis +antitobacco +antitotalitarian +antitoxin +antitraditional +antitrust +antituberculosis +antitumor +antitype +antitypes +antityphoid +antiulcer +antiunemployment +antiunion +antiuniversity +antiurban +antivandalism +antiviolence +antiviral +antivivisection +antiwar +antiwhite +antiwiretapping +antiwoman +antler +antlered +antlers +antlike +antlion +antlions +antonym +antonymies +antonyms +antonymy +antra +antral +antre +antres +antrorse +antrum +ants +anuran +anurans +anureses +anuresis +anuretic +anuria +anurias +anuric +anurous +anus +anuses +anvil +anviled +anviling +anvilled +anvilling +anvils +anviltop +anviltops +anxieties +anxiety +anxious +anxiously +any +anybodies +anybody +anyhow +anymore +anyone +anyplace +anything +anythings +anytime +anyway +anyways +anywhere +anywheres +anywise +aorist +aoristic +aorists +aorta +aortae +aortal +aortas +aortic +aoudad +aoudads +apace +apache +apaches +apagoge +apagoges +apagogic +apanage +apanages +aparejo +aparejos +apart +apartheid +apartheids +apatetic +apathetic +apathetically +apathies +apathy +apatite +apatites +ape +apeak +aped +apeek +apelike +aper +apercu +apercus +aperient +aperients +aperies +aperitif +aperitifs +apers +aperture +apertures +apery +apes +apetalies +apetaly +apex +apexes +aphagia +aphagias +aphanite +aphanites +aphasia +aphasiac +aphasiacs +aphasias +aphasic +aphasics +aphelia +aphelian +aphelion +apheses +aphesis +aphetic +aphid +aphides +aphidian +aphidians +aphids +aphis +apholate +apholates +aphonia +aphonias +aphonic +aphonics +aphorise +aphorised +aphorises +aphorising +aphorism +aphorisms +aphorist +aphoristic +aphorists +aphorize +aphorized +aphorizes +aphorizing +aphotic +aphrodisiac +aphtha +aphthae +aphthous +aphyllies +aphylly +apian +apiarian +apiarians +apiaries +apiarist +apiarists +apiary +apical +apically +apices +apiculi +apiculus +apiece +apimania +apimanias +aping +apiologies +apiology +apish +apishly +aplasia +aplasias +aplastic +aplenty +aplite +aplites +aplitic +aplomb +aplombs +apnea +apneal +apneas +apneic +apnoea +apnoeal +apnoeas +apnoeic +apocalypse +apocalypses +apocalyptic +apocalyptical +apocarp +apocarpies +apocarps +apocarpy +apocope +apocopes +apocopic +apocrine +apocrypha +apocryphal +apodal +apodoses +apodosis +apodous +apogamic +apogamies +apogamy +apogeal +apogean +apogee +apogees +apogeic +apollo +apollos +apolog +apologal +apologetic +apologetically +apologia +apologiae +apologias +apologies +apologist +apologize +apologized +apologizes +apologizing +apologs +apologue +apologues +apology +apolune +apolunes +apomict +apomicts +apomixes +apomixis +apophyge +apophyges +apoplectic +apoplexies +apoplexy +aport +apostacies +apostacy +apostasies +apostasy +apostate +apostates +apostil +apostils +apostle +apostles +apostleship +apostolic +apostrophe +apostrophes +apothecaries +apothecary +apothece +apotheces +apothegm +apothegms +apothem +apothems +appal +appall +appalled +appalling +appalls +appals +appanage +appanages +apparat +apparats +apparatus +apparatuses +apparel +appareled +appareling +apparelled +apparelling +apparels +apparent +apparently +apparition +apparitions +appeal +appealed +appealer +appealers +appealing +appeals +appear +appearance +appearances +appeared +appearing +appears +appease +appeased +appeasement +appeasements +appeaser +appeasers +appeases +appeasing +appel +appellee +appellees +appellor +appellors +appels +append +appendage +appendages +appendectomies +appendectomy +appended +appendices +appendicitis +appending +appendix +appendixes +appends +appestat +appestats +appetent +appetite +appetites +appetizer +appetizers +appetizing +appetizingly +applaud +applauded +applauding +applauds +applause +applauses +apple +applejack +applejacks +apples +applesauce +appliance +applicabilities +applicability +applicable +applicancies +applicancy +applicant +applicants +application +applications +applicator +applicators +applied +applier +appliers +applies +applique +appliqued +appliqueing +appliques +apply +applying +appoint +appointed +appointing +appointment +appointments +appoints +apportion +apportioned +apportioning +apportionment +apportionments +apportions +appose +apposed +apposer +apposers +apposes +apposing +apposite +appositely +appraisal +appraisals +appraise +appraised +appraiser +appraisers +appraises +appraising +appreciable +appreciably +appreciate +appreciated +appreciates +appreciating +appreciation +appreciations +appreciative +apprehend +apprehended +apprehending +apprehends +apprehension +apprehensions +apprehensive +apprehensively +apprehensiveness +apprehensivenesses +apprentice +apprenticed +apprentices +apprenticeship +apprenticeships +apprenticing +apprise +apprised +appriser +apprisers +apprises +apprising +apprize +apprized +apprizer +apprizers +apprizes +apprizing +approach +approachable +approached +approaches +approaching +approbation +appropriate +appropriated +appropriately +appropriateness +appropriates +appropriating +appropriation +appropriations +approval +approvals +approve +approved +approver +approvers +approves +approving +approximate +approximated +approximately +approximates +approximating +approximation +approximations +appulse +appulses +appurtenance +appurtenances +appurtenant +apractic +apraxia +apraxias +apraxic +apricot +apricots +apron +aproned +aproning +aprons +apropos +apse +apses +apsidal +apsides +apsis +apt +apter +apteral +apterous +apteryx +apteryxes +aptest +aptitude +aptitudes +aptly +aptness +aptnesses +apyrase +apyrases +apyretic +aqua +aquacade +aquacades +aquae +aquamarine +aquamarines +aquanaut +aquanauts +aquaria +aquarial +aquarian +aquarians +aquarist +aquarists +aquarium +aquariums +aquas +aquatic +aquatics +aquatint +aquatinted +aquatinting +aquatints +aquatone +aquatones +aquavit +aquavits +aqueduct +aqueducts +aqueous +aquifer +aquifers +aquiline +aquiver +ar +arabesk +arabesks +arabesque +arabesques +arabize +arabized +arabizes +arabizing +arable +arables +araceous +arachnid +arachnids +arak +araks +araneid +araneids +arapaima +arapaimas +araroba +ararobas +arbalest +arbalests +arbalist +arbalists +arbiter +arbiters +arbitral +arbitrarily +arbitrariness +arbitrarinesses +arbitrary +arbitrate +arbitrated +arbitrates +arbitrating +arbitration +arbitrations +arbitrator +arbitrators +arbor +arboreal +arbored +arbores +arboreta +arborist +arborists +arborize +arborized +arborizes +arborizing +arborous +arbors +arbour +arboured +arbours +arbuscle +arbuscles +arbute +arbutean +arbutes +arbutus +arbutuses +arc +arcade +arcaded +arcades +arcadia +arcadian +arcadians +arcadias +arcading +arcadings +arcana +arcane +arcanum +arcature +arcatures +arced +arch +archaeological +archaeologies +archaeologist +archaeologists +archaeology +archaic +archaically +archaise +archaised +archaises +archaising +archaism +archaisms +archaist +archaists +archaize +archaized +archaizes +archaizing +archangel +archangels +archbishop +archbishopric +archbishoprics +archbishops +archdiocese +archdioceses +archduke +archdukes +arched +archeologies +archeology +archer +archeries +archers +archery +arches +archetype +archetypes +archil +archils +archine +archines +arching +archings +archipelago +archipelagos +architect +architects +architectural +architecture +architectures +archival +archive +archived +archives +archiving +archly +archness +archnesses +archon +archons +archway +archways +arciform +arcing +arcked +arcking +arco +arcs +arctic +arctics +arcuate +arcuated +arcus +arcuses +ardeb +ardebs +ardencies +ardency +ardent +ardently +ardor +ardors +ardour +ardours +arduous +arduously +arduousness +arduousnesses +are +area +areae +areal +areally +areas +areaway +areaways +areca +arecas +areic +arena +arenas +arenose +arenous +areola +areolae +areolar +areolas +areolate +areole +areoles +areologies +areology +ares +arete +aretes +arethusa +arethusas +arf +argal +argali +argalis +argals +argent +argental +argentic +argents +argentum +argentums +argil +argils +arginase +arginases +arginine +arginines +argle +argled +argles +argling +argol +argols +argon +argonaut +argonauts +argons +argosies +argosy +argot +argotic +argots +arguable +arguably +argue +argued +arguer +arguers +argues +argufied +argufier +argufiers +argufies +argufy +argufying +arguing +argument +argumentative +arguments +argus +arguses +argyle +argyles +argyll +argylls +arhat +arhats +aria +arias +arid +arider +aridest +aridities +aridity +aridly +aridness +aridnesses +ariel +ariels +arietta +ariettas +ariette +ariettes +aright +aril +ariled +arillate +arillode +arillodes +arilloid +arils +ariose +ariosi +arioso +ariosos +arise +arisen +arises +arising +arista +aristae +aristas +aristate +aristocracies +aristocracy +aristocrat +aristocratic +aristocrats +arithmetic +arithmetical +ark +arks +arles +arm +armada +armadas +armadillo +armadillos +armament +armaments +armature +armatured +armatures +armaturing +armband +armbands +armchair +armchairs +armed +armer +armers +armet +armets +armful +armfuls +armhole +armholes +armies +armiger +armigero +armigeros +armigers +armilla +armillae +armillas +arming +armings +armless +armlet +armlets +armlike +armload +armloads +armoire +armoires +armonica +armonicas +armor +armored +armorer +armorers +armorial +armorials +armories +armoring +armors +armory +armour +armoured +armourer +armourers +armouries +armouring +armours +armoury +armpit +armpits +armrest +armrests +arms +armsful +armure +armures +army +armyworm +armyworms +arnatto +arnattos +arnica +arnicas +arnotto +arnottos +aroid +aroids +aroint +arointed +arointing +aroints +aroma +aromas +aromatic +aromatics +arose +around +arousal +arousals +arouse +aroused +arouser +arousers +arouses +arousing +aroynt +aroynted +aroynting +aroynts +arpeggio +arpeggios +arpen +arpens +arpent +arpents +arquebus +arquebuses +arrack +arracks +arraign +arraigned +arraigning +arraigns +arrange +arranged +arrangement +arrangements +arranger +arrangers +arranges +arranging +arrant +arrantly +arras +arrased +array +arrayal +arrayals +arrayed +arrayer +arrayers +arraying +arrays +arrear +arrears +arrest +arrested +arrestee +arrestees +arrester +arresters +arresting +arrestor +arrestors +arrests +arrhizal +arrhythmia +arris +arrises +arrival +arrivals +arrive +arrived +arriver +arrivers +arrives +arriving +arroba +arrobas +arrogance +arrogances +arrogant +arrogantly +arrogate +arrogated +arrogates +arrogating +arrow +arrowed +arrowhead +arrowheads +arrowing +arrows +arrowy +arroyo +arroyos +ars +arse +arsenal +arsenals +arsenate +arsenates +arsenic +arsenical +arsenics +arsenide +arsenides +arsenious +arsenite +arsenites +arseno +arsenous +arses +arshin +arshins +arsine +arsines +arsino +arsis +arson +arsonist +arsonists +arsonous +arsons +art +artal +artefact +artefacts +artel +artels +arterial +arterials +arteries +arteriosclerosis +arteriosclerotic +artery +artful +artfully +artfulness +artfulnesses +arthralgia +arthritic +arthritides +arthritis +arthropod +arthropods +artichoke +artichokes +article +articled +articles +articling +articulate +articulated +articulately +articulateness +articulatenesses +articulates +articulating +artier +artiest +artifact +artifacts +artifice +artifices +artificial +artificialities +artificiality +artificially +artificialness +artificialnesses +artilleries +artillery +artily +artiness +artinesses +artisan +artisans +artist +artiste +artistes +artistic +artistical +artistically +artistries +artistry +artists +artless +artlessly +artlessness +artlessnesses +arts +artwork +artworks +arty +arum +arums +aruspex +aruspices +arval +arvo +arvos +aryl +aryls +arythmia +arythmias +arythmic +as +asarum +asarums +asbestic +asbestos +asbestoses +asbestus +asbestuses +ascarid +ascarides +ascarids +ascaris +ascend +ascendancies +ascendancy +ascendant +ascended +ascender +ascenders +ascending +ascends +ascension +ascensions +ascent +ascents +ascertain +ascertainable +ascertained +ascertaining +ascertains +asceses +ascesis +ascetic +asceticism +asceticisms +ascetics +asci +ascidia +ascidian +ascidians +ascidium +ascites +ascitic +ascocarp +ascocarps +ascorbic +ascot +ascots +ascribable +ascribe +ascribed +ascribes +ascribing +ascription +ascriptions +ascus +asdic +asdics +asea +asepses +asepsis +aseptic +asexual +ash +ashamed +ashcan +ashcans +ashed +ashen +ashes +ashier +ashiest +ashing +ashlar +ashlared +ashlaring +ashlars +ashler +ashlered +ashlering +ashlers +ashless +ashman +ashmen +ashore +ashplant +ashplants +ashram +ashrams +ashtray +ashtrays +ashy +aside +asides +asinine +ask +askance +askant +asked +asker +askers +askeses +askesis +askew +asking +askings +asks +aslant +asleep +aslope +asocial +asp +aspect +aspects +aspen +aspens +asper +asperate +asperated +asperates +asperating +asperges +asperities +asperity +aspers +asperse +aspersed +asperser +aspersers +asperses +aspersing +aspersion +aspersions +aspersor +aspersors +asphalt +asphalted +asphaltic +asphalting +asphalts +asphaltum +asphaltums +aspheric +asphodel +asphodels +asphyxia +asphyxias +asphyxiate +asphyxiated +asphyxiates +asphyxiating +asphyxiation +asphyxiations +asphyxies +asphyxy +aspic +aspics +aspirant +aspirants +aspirata +aspiratae +aspirate +aspirated +aspirates +aspirating +aspiration +aspirations +aspire +aspired +aspirer +aspirers +aspires +aspirin +aspiring +aspirins +aspis +aspises +aspish +asps +asquint +asrama +asramas +ass +assagai +assagaied +assagaiing +assagais +assai +assail +assailable +assailant +assailants +assailed +assailer +assailers +assailing +assails +assais +assassin +assassinate +assassinated +assassinates +assassinating +assassination +assassinations +assassins +assault +assaulted +assaulting +assaults +assay +assayed +assayer +assayers +assaying +assays +assegai +assegaied +assegaiing +assegais +assemble +assembled +assembles +assemblies +assembling +assembly +assemblyman +assemblymen +assemblywoman +assemblywomen +assent +assented +assenter +assenters +assenting +assentor +assentors +assents +assert +asserted +asserter +asserters +asserting +assertion +assertions +assertive +assertiveness +assertivenesses +assertor +assertors +asserts +asses +assess +assessed +assesses +assessing +assessment +assessments +assessor +assessors +asset +assets +assiduities +assiduity +assiduous +assiduously +assiduousness +assiduousnesses +assign +assignable +assignat +assignats +assigned +assignee +assignees +assigner +assigners +assigning +assignment +assignments +assignor +assignors +assigns +assimilate +assimilated +assimilates +assimilating +assimilation +assimilations +assist +assistance +assistances +assistant +assistants +assisted +assister +assisters +assisting +assistor +assistors +assists +assize +assizes +asslike +associate +associated +associates +associating +association +associations +assoil +assoiled +assoiling +assoils +assonant +assonants +assort +assorted +assorter +assorters +assorting +assortment +assortments +assorts +assuage +assuaged +assuages +assuaging +assume +assumed +assumer +assumers +assumes +assuming +assumption +assumptions +assurance +assurances +assure +assured +assureds +assurer +assurers +assures +assuring +assuror +assurors +asswage +asswaged +asswages +asswaging +astasia +astasias +astatic +astatine +astatines +aster +asteria +asterias +asterisk +asterisked +asterisking +asterisks +asterism +asterisms +astern +asternal +asteroid +asteroidal +asteroids +asters +asthenia +asthenias +asthenic +asthenics +asthenies +astheny +asthma +asthmas +astigmatic +astigmatism +astigmatisms +astir +astomous +astonied +astonies +astonish +astonished +astonishes +astonishing +astonishingly +astonishment +astonishments +astony +astonying +astound +astounded +astounding +astoundingly +astounds +astraddle +astragal +astragals +astral +astrally +astrals +astray +astrict +astricted +astricting +astricts +astride +astringe +astringed +astringencies +astringency +astringent +astringents +astringes +astringing +astrolabe +astrolabes +astrologer +astrologers +astrological +astrologies +astrology +astronaut +astronautic +astronautical +astronautically +astronautics +astronauts +astronomer +astronomers +astronomic +astronomical +astute +astutely +astuteness +astylar +asunder +aswarm +aswirl +aswoon +asyla +asylum +asylums +asymmetric +asymmetrical +asymmetries +asymmetry +asyndeta +at +atabal +atabals +ataghan +ataghans +atalaya +atalayas +ataman +atamans +atamasco +atamascos +ataraxia +ataraxias +ataraxic +ataraxics +ataraxies +ataraxy +atavic +atavism +atavisms +atavist +atavists +ataxia +ataxias +ataxic +ataxics +ataxies +ataxy +ate +atechnic +atelic +atelier +ateliers +ates +athanasies +athanasy +atheism +atheisms +atheist +atheistic +atheists +atheling +athelings +atheneum +atheneums +atheroma +atheromas +atheromata +atherosclerosis +atherosclerotic +athirst +athlete +athletes +athletic +athletics +athodyd +athodyds +athwart +atilt +atingle +atlantes +atlas +atlases +atlatl +atlatls +atma +atman +atmans +atmas +atmosphere +atmospheres +atmospheric +atmospherically +atoll +atolls +atom +atomic +atomical +atomics +atomies +atomise +atomised +atomises +atomising +atomism +atomisms +atomist +atomists +atomize +atomized +atomizer +atomizers +atomizes +atomizing +atoms +atomy +atonable +atonal +atonally +atone +atoned +atonement +atonements +atoner +atoners +atones +atonic +atonicity +atonics +atonies +atoning +atony +atop +atopic +atopies +atopy +atrazine +atrazines +atremble +atresia +atresias +atria +atrial +atrip +atrium +atriums +atrocious +atrociously +atrociousness +atrociousnesses +atrocities +atrocity +atrophia +atrophias +atrophic +atrophied +atrophies +atrophy +atrophying +atropin +atropine +atropines +atropins +atropism +atropisms +attach +attache +attached +attacher +attachers +attaches +attaching +attachment +attachments +attack +attacked +attacker +attackers +attacking +attacks +attain +attainabilities +attainability +attainable +attained +attainer +attainers +attaining +attainment +attainments +attains +attaint +attainted +attainting +attaints +attar +attars +attemper +attempered +attempering +attempers +attempt +attempted +attempting +attempts +attend +attendance +attendances +attendant +attendants +attended +attendee +attendees +attender +attenders +attending +attendings +attends +attent +attention +attentions +attentive +attentively +attentiveness +attentivenesses +attenuate +attenuated +attenuates +attenuating +attenuation +attenuations +attest +attestation +attestations +attested +attester +attesters +attesting +attestor +attestors +attests +attic +atticism +atticisms +atticist +atticists +attics +attire +attired +attires +attiring +attitude +attitudes +attorn +attorned +attorney +attorneys +attorning +attorns +attract +attracted +attracting +attraction +attractions +attractive +attractively +attractiveness +attractivenesses +attracts +attributable +attribute +attributed +attributes +attributing +attribution +attributions +attrite +attrited +attune +attuned +attunes +attuning +atwain +atween +atwitter +atypic +atypical +aubade +aubades +auberge +auberges +auburn +auburns +auction +auctioned +auctioneer +auctioneers +auctioning +auctions +audacious +audacities +audacity +audad +audads +audible +audibles +audibly +audience +audiences +audient +audients +audile +audiles +auding +audings +audio +audiogram +audiograms +audios +audit +audited +auditing +audition +auditioned +auditioning +auditions +auditive +auditives +auditor +auditories +auditorium +auditoriums +auditors +auditory +audits +augend +augends +auger +augers +aught +aughts +augite +augites +augitic +augment +augmentation +augmentations +augmented +augmenting +augments +augur +augural +augured +augurer +augurers +auguries +auguring +augurs +augury +august +auguster +augustest +augustly +auk +auklet +auklets +auks +auld +aulder +auldest +aulic +aunt +aunthood +aunthoods +auntie +aunties +auntlier +auntliest +auntlike +auntly +aunts +aunty +aura +aurae +aural +aurally +aurar +auras +aurate +aurated +aureate +aurei +aureola +aureolae +aureolas +aureole +aureoled +aureoles +aureoling +aures +aureus +auric +auricle +auricled +auricles +auricula +auriculae +auriculas +auriform +auris +aurist +aurists +aurochs +aurochses +aurora +aurorae +auroral +auroras +aurorean +aurous +aurum +aurums +auscultation +auscultations +auspex +auspice +auspices +auspicious +austere +austerer +austerest +austerities +austerity +austral +autacoid +autacoids +autarchies +autarchy +autarkic +autarkies +autarkik +autarky +autecism +autecisms +authentic +authentically +authenticate +authenticated +authenticates +authenticating +authentication +authentications +authenticities +authenticity +author +authored +authoress +authoresses +authoring +authoritarian +authoritative +authoritatively +authorities +authority +authorization +authorizations +authorize +authorized +authorizes +authorizing +authors +authorship +authorships +autism +autisms +autistic +auto +autobahn +autobahnen +autobahns +autobiographer +autobiographers +autobiographical +autobiographies +autobiography +autobus +autobuses +autobusses +autocade +autocades +autocoid +autocoids +autocracies +autocracy +autocrat +autocratic +autocratically +autocrats +autodyne +autodynes +autoed +autogamies +autogamy +autogenies +autogeny +autogiro +autogiros +autograph +autographed +autographing +autographs +autogyro +autogyros +autoing +autolyze +autolyzed +autolyzes +autolyzing +automata +automate +automateable +automated +automates +automatic +automatically +automating +automation +automations +automaton +automatons +automobile +automobiles +automotive +autonomies +autonomous +autonomously +autonomy +autopsic +autopsied +autopsies +autopsy +autopsying +autos +autosome +autosomes +autotomies +autotomy +autotype +autotypes +autotypies +autotypy +autumn +autumnal +autumns +autunite +autunites +auxeses +auxesis +auxetic +auxetics +auxiliaries +auxiliary +auxin +auxinic +auxins +ava +avail +availabilities +availability +available +availed +availing +avails +avalanche +avalanches +avarice +avarices +avast +avatar +avatars +avaunt +ave +avellan +avellane +avenge +avenged +avenger +avengers +avenges +avenging +avens +avenses +aventail +aventails +avenue +avenues +aver +average +averaged +averages +averaging +averment +averments +averred +averring +avers +averse +aversely +aversion +aversions +aversive +avert +averted +averting +averts +aves +avgas +avgases +avgasses +avian +avianize +avianized +avianizes +avianizing +avians +aviaries +aviarist +aviarists +aviary +aviate +aviated +aviates +aviating +aviation +aviations +aviator +aviators +aviatrices +aviatrix +aviatrixes +avicular +avid +avidin +avidins +avidities +avidity +avidly +avidness +avidnesses +avifauna +avifaunae +avifaunas +avigator +avigators +avion +avionic +avionics +avions +aviso +avisos +avo +avocado +avocadoes +avocados +avocation +avocations +avocet +avocets +avodire +avodires +avoid +avoidable +avoidance +avoidances +avoided +avoider +avoiders +avoiding +avoids +avoidupois +avoidupoises +avos +avoset +avosets +avouch +avouched +avoucher +avouchers +avouches +avouching +avow +avowable +avowably +avowal +avowals +avowed +avowedly +avower +avowers +avowing +avows +avulse +avulsed +avulses +avulsing +avulsion +avulsions +aw +awa +await +awaited +awaiter +awaiters +awaiting +awaits +awake +awaked +awaken +awakened +awakener +awakeners +awakening +awakens +awakes +awaking +award +awarded +awardee +awardees +awarder +awarders +awarding +awards +aware +awash +away +awayness +awaynesses +awe +aweary +aweather +awed +awee +aweigh +aweing +aweless +awes +awesome +awesomely +awful +awfuller +awfullest +awfully +awhile +awhirl +awing +awkward +awkwarder +awkwardest +awkwardly +awkwardness +awkwardnesses +awl +awless +awls +awlwort +awlworts +awmous +awn +awned +awning +awninged +awnings +awnless +awns +awny +awoke +awoken +awol +awols +awry +axal +axe +axed +axel +axels +axeman +axemen +axenic +axes +axial +axialities +axiality +axially +axil +axile +axilla +axillae +axillar +axillaries +axillars +axillary +axillas +axils +axing +axiologies +axiology +axiom +axiomatic +axioms +axis +axised +axises +axite +axites +axle +axled +axles +axletree +axletrees +axlike +axman +axmen +axolotl +axolotls +axon +axonal +axone +axones +axonic +axons +axoplasm +axoplasms +axseed +axseeds +ay +ayah +ayahs +aye +ayes +ayin +ayins +ays +azalea +azaleas +azan +azans +azide +azides +azido +azimuth +azimuthal +azimuths +azine +azines +azo +azoic +azole +azoles +azon +azonal +azonic +azons +azote +azoted +azotemia +azotemias +azotemic +azotes +azoth +azoths +azotic +azotise +azotised +azotises +azotising +azotize +azotized +azotizes +azotizing +azoturia +azoturias +azure +azures +azurite +azurites +azygos +azygoses +azygous +ba +baa +baaed +baaing +baal +baalim +baalism +baalisms +baals +baas +baba +babas +babassu +babassus +babbitt +babbitted +babbitting +babbitts +babble +babbled +babbler +babblers +babbles +babbling +babblings +babbool +babbools +babe +babel +babels +babes +babesia +babesias +babiche +babiches +babied +babies +babirusa +babirusas +babka +babkas +baboo +babool +babools +baboon +baboons +baboos +babu +babul +babuls +babus +babushka +babushkas +baby +babyhood +babyhoods +babying +babyish +bacca +baccae +baccalaureate +baccalaureates +baccara +baccaras +baccarat +baccarats +baccate +baccated +bacchant +bacchantes +bacchants +bacchic +bacchii +bacchius +bach +bached +bachelor +bachelorhood +bachelorhoods +bachelors +baches +baching +bacillar +bacillary +bacilli +bacillus +back +backache +backaches +backarrow +backarrows +backbend +backbends +backbit +backbite +backbiter +backbiters +backbites +backbiting +backbitten +backbone +backbones +backdoor +backdrop +backdrops +backed +backer +backers +backfill +backfilled +backfilling +backfills +backfire +backfired +backfires +backfiring +backgammon +backgammons +background +backgrounds +backhand +backhanded +backhanding +backhands +backhoe +backhoes +backing +backings +backlash +backlashed +backlasher +backlashers +backlashes +backlashing +backless +backlist +backlists +backlit +backlog +backlogged +backlogging +backlogs +backmost +backout +backouts +backpack +backpacked +backpacker +backpacking +backpacks +backrest +backrests +backs +backsaw +backsaws +backseat +backseats +backset +backsets +backside +backsides +backslap +backslapped +backslapping +backslaps +backslash +backslashes +backslid +backslide +backslided +backslider +backsliders +backslides +backsliding +backspace +backspaced +backspaces +backspacing +backspin +backspins +backstay +backstays +backstop +backstopped +backstopping +backstops +backup +backups +backward +backwardness +backwardnesses +backwards +backwash +backwashed +backwashes +backwashing +backwood +backwoods +backyard +backyards +bacon +bacons +bacteria +bacterial +bacterin +bacterins +bacteriologic +bacteriological +bacteriologies +bacteriologist +bacteriologists +bacteriology +bacterium +baculine +bad +baddie +baddies +baddy +bade +badge +badged +badger +badgered +badgering +badgerly +badgers +badges +badging +badinage +badinaged +badinages +badinaging +badland +badlands +badly +badman +badmen +badminton +badmintons +badmouth +badmouthed +badmouthing +badmouths +badness +badnesses +bads +baff +baffed +baffies +baffing +baffle +baffled +baffler +bafflers +baffles +baffling +baffs +baffy +bag +bagass +bagasse +bagasses +bagatelle +bagatelles +bagel +bagels +bagful +bagfuls +baggage +baggages +bagged +baggie +baggier +baggies +baggiest +baggily +bagging +baggings +baggy +bagman +bagmen +bagnio +bagnios +bagpipe +bagpiper +bagpipers +bagpipes +bags +bagsful +baguet +baguets +baguette +baguettes +bagwig +bagwigs +bagworm +bagworms +bah +bahadur +bahadurs +baht +bahts +baidarka +baidarkas +bail +bailable +bailed +bailee +bailees +bailer +bailers +bailey +baileys +bailie +bailies +bailiff +bailiffs +bailing +bailiwick +bailiwicks +bailment +bailments +bailor +bailors +bailout +bailouts +bails +bailsman +bailsmen +bairn +bairnish +bairnlier +bairnliest +bairnly +bairns +bait +baited +baiter +baiters +baith +baiting +baits +baiza +baizas +baize +baizes +bake +baked +bakemeat +bakemeats +baker +bakeries +bakers +bakery +bakes +bakeshop +bakeshops +baking +bakings +baklava +baklavas +baklawa +baklawas +bakshish +bakshished +bakshishes +bakshishing +bal +balance +balanced +balancer +balancers +balances +balancing +balas +balases +balata +balatas +balboa +balboas +balconies +balcony +bald +balded +balder +balderdash +balderdashes +baldest +baldhead +baldheads +balding +baldish +baldly +baldness +baldnesses +baldpate +baldpates +baldric +baldrick +baldricks +baldrics +balds +bale +baled +baleen +baleens +balefire +balefires +baleful +baler +balers +bales +baling +balisaur +balisaurs +balk +balked +balker +balkers +balkier +balkiest +balkily +balking +balkline +balklines +balks +balky +ball +ballad +ballade +ballades +balladic +balladries +balladry +ballads +ballast +ballasted +ballasting +ballasts +balled +baller +ballerina +ballerinas +ballers +ballet +balletic +ballets +balling +ballista +ballistae +ballistic +ballistics +ballon +ballonet +ballonets +ballonne +ballonnes +ballons +balloon +ballooned +ballooning +balloonist +balloonists +balloons +ballot +balloted +balloter +balloters +balloting +ballots +ballroom +ballrooms +balls +bally +ballyhoo +ballyhooed +ballyhooing +ballyhoos +ballyrag +ballyragged +ballyragging +ballyrags +balm +balmier +balmiest +balmily +balminess +balminesses +balmlike +balmoral +balmorals +balms +balmy +balneal +baloney +baloneys +bals +balsa +balsam +balsamed +balsamic +balsaming +balsams +balsas +baltimore +baluster +balusters +balustrade +balustrades +bambini +bambino +bambinos +bamboo +bamboos +bamboozle +bamboozled +bamboozles +bamboozling +ban +banal +banalities +banality +banally +banana +bananas +banausic +banco +bancos +band +bandage +bandaged +bandager +bandagers +bandages +bandaging +bandana +bandanas +bandanna +bandannas +bandbox +bandboxes +bandeau +bandeaus +bandeaux +banded +bander +banderol +banderols +banders +bandied +bandies +banding +bandit +banditries +banditry +bandits +banditti +bandog +bandogs +bandora +bandoras +bandore +bandores +bands +bandsman +bandsmen +bandstand +bandstands +bandwagon +bandwagons +bandwidth +bandwidths +bandy +bandying +bane +baned +baneful +banes +bang +banged +banger +bangers +banging +bangkok +bangkoks +bangle +bangles +bangs +bangtail +bangtails +bani +banian +banians +baning +banish +banished +banisher +banishers +banishes +banishing +banishment +banishments +banister +banisters +banjo +banjoes +banjoist +banjoists +banjos +bank +bankable +bankbook +bankbooks +banked +banker +bankers +banking +bankings +banknote +banknotes +bankroll +bankrolled +bankrolling +bankrolls +bankrupt +bankruptcies +bankruptcy +bankrupted +bankrupting +bankrupts +banks +banksia +banksias +bankside +banksides +banned +banner +banneret +bannerets +bannerol +bannerols +banners +bannet +bannets +banning +bannock +bannocks +banns +banquet +banqueted +banqueting +banquets +bans +banshee +banshees +banshie +banshies +bantam +bantams +banter +bantered +banterer +banterers +bantering +banters +bantling +bantlings +banyan +banyans +banzai +banzais +baobab +baobabs +baptise +baptised +baptises +baptisia +baptisias +baptising +baptism +baptismal +baptisms +baptist +baptists +baptize +baptized +baptizer +baptizers +baptizes +baptizing +bar +barathea +baratheas +barb +barbal +barbarian +barbarians +barbaric +barbarity +barbarous +barbarously +barbasco +barbascos +barbate +barbe +barbecue +barbecued +barbecues +barbecuing +barbed +barbel +barbell +barbells +barbels +barber +barbered +barbering +barberries +barberry +barbers +barbes +barbet +barbets +barbette +barbettes +barbican +barbicans +barbicel +barbicels +barbing +barbital +barbitals +barbiturate +barbiturates +barbless +barbs +barbule +barbules +barbut +barbuts +barbwire +barbwires +bard +barde +barded +bardes +bardic +barding +bards +bare +bareback +barebacked +bared +barefaced +barefit +barefoot +barefooted +barege +bareges +barehead +bareheaded +barely +bareness +barenesses +barer +bares +baresark +baresarks +barest +barf +barfed +barfing +barflies +barfly +barfs +bargain +bargained +bargaining +bargains +barge +barged +bargee +bargees +bargeman +bargemen +barges +barghest +barghests +barging +barguest +barguests +barhop +barhopped +barhopping +barhops +baric +barilla +barillas +baring +barite +barites +baritone +baritones +barium +bariums +bark +barked +barkeep +barkeeps +barker +barkers +barkier +barkiest +barking +barkless +barks +barky +barleduc +barleducs +barless +barley +barleys +barlow +barlows +barm +barmaid +barmaids +barman +barmen +barmie +barmier +barmiest +barms +barmy +barn +barnacle +barnacles +barnier +barniest +barns +barnstorm +barnstorms +barny +barnyard +barnyards +barogram +barograms +barometer +barometers +barometric +barometrical +baron +baronage +baronages +baroness +baronesses +baronet +baronetcies +baronetcy +baronets +barong +barongs +baronial +baronies +baronne +baronnes +barons +barony +baroque +baroques +barouche +barouches +barque +barques +barrable +barrack +barracked +barracking +barracks +barracuda +barracudas +barrage +barraged +barrages +barraging +barranca +barrancas +barranco +barrancos +barrater +barraters +barrator +barrators +barratries +barratry +barre +barred +barrel +barreled +barreling +barrelled +barrelling +barrels +barren +barrener +barrenest +barrenly +barrenness +barrennesses +barrens +barres +barret +barretor +barretors +barretries +barretry +barrets +barrette +barrettes +barricade +barricades +barrier +barriers +barring +barrio +barrios +barrister +barristers +barroom +barrooms +barrow +barrows +bars +barstool +barstools +bartend +bartended +bartender +bartenders +bartending +bartends +barter +bartered +barterer +barterers +bartering +barters +bartholomew +bartisan +bartisans +bartizan +bartizans +barware +barwares +barye +baryes +baryon +baryonic +baryons +baryta +barytas +baryte +barytes +barytic +barytone +barytones +bas +basal +basally +basalt +basaltes +basaltic +basalts +bascule +bascules +base +baseball +baseballs +baseborn +based +baseless +baseline +baselines +basely +baseman +basemen +basement +basements +baseness +basenesses +basenji +basenjis +baser +bases +basest +bash +bashaw +bashaws +bashed +basher +bashers +bashes +bashful +bashfulness +bashfulnesses +bashing +bashlyk +bashlyks +basic +basically +basicities +basicity +basics +basidia +basidial +basidium +basified +basifier +basifiers +basifies +basify +basifying +basil +basilar +basilary +basilic +basilica +basilicae +basilicas +basilisk +basilisks +basils +basin +basinal +basined +basinet +basinets +basing +basins +basion +basions +basis +bask +basked +basket +basketball +basketballs +basketful +basketfuls +basketries +basketry +baskets +basking +basks +basophil +basophils +basque +basques +bass +basses +basset +basseted +basseting +bassets +bassetted +bassetting +bassi +bassinet +bassinets +bassist +bassists +bassly +bassness +bassnesses +basso +bassoon +bassoons +bassos +basswood +basswoods +bassy +bast +bastard +bastardies +bastardize +bastardized +bastardizes +bastardizing +bastards +bastardy +baste +basted +baster +basters +bastes +bastile +bastiles +bastille +bastilles +basting +bastings +bastion +bastioned +bastions +basts +bat +batboy +batboys +batch +batched +batcher +batchers +batches +batching +bate +bateau +bateaux +bated +bates +batfish +batfishes +batfowl +batfowled +batfowling +batfowls +bath +bathe +bathed +bather +bathers +bathes +bathetic +bathing +bathless +bathos +bathoses +bathrobe +bathrobes +bathroom +bathrooms +baths +bathtub +bathtubs +bathyal +batik +batiks +bating +batiste +batistes +batlike +batman +batmen +baton +batons +bats +batsman +batsmen +batt +battalia +battalias +battalion +battalions +batteau +batteaux +batted +batten +battened +battener +batteners +battening +battens +batter +battered +batterie +batteries +battering +batters +battery +battier +battiest +battik +battiks +batting +battings +battle +battled +battlefield +battlefields +battlement +battlements +battler +battlers +battles +battleship +battleships +battling +batts +battu +battue +battues +batty +batwing +baubee +baubees +bauble +baubles +baud +baudekin +baudekins +baudrons +baudronses +bauds +baulk +baulked +baulkier +baulkiest +baulking +baulks +baulky +bausond +bauxite +bauxites +bauxitic +bawbee +bawbees +bawcock +bawcocks +bawd +bawdier +bawdies +bawdiest +bawdily +bawdiness +bawdinesses +bawdric +bawdrics +bawdries +bawdry +bawds +bawdy +bawl +bawled +bawler +bawlers +bawling +bawls +bawsunt +bawtie +bawties +bawty +bay +bayadeer +bayadeers +bayadere +bayaderes +bayamo +bayamos +bayard +bayards +bayberries +bayberry +bayed +baying +bayonet +bayoneted +bayoneting +bayonets +bayonetted +bayonetting +bayou +bayous +bays +baywood +baywoods +bazaar +bazaars +bazar +bazars +bazooka +bazookas +bdellium +bdelliums +be +beach +beachboy +beachboys +beachcomber +beachcombers +beached +beaches +beachhead +beachheads +beachier +beachiest +beaching +beachy +beacon +beaconed +beaconing +beacons +bead +beaded +beadier +beadiest +beadily +beading +beadings +beadle +beadles +beadlike +beadman +beadmen +beadroll +beadrolls +beads +beadsman +beadsmen +beadwork +beadworks +beady +beagle +beagles +beak +beaked +beaker +beakers +beakier +beakiest +beakless +beaklike +beaks +beaky +beam +beamed +beamier +beamiest +beamily +beaming +beamish +beamless +beamlike +beams +beamy +bean +beanbag +beanbags +beanball +beanballs +beaned +beaneries +beanery +beanie +beanies +beaning +beanlike +beano +beanos +beanpole +beanpoles +beans +bear +bearable +bearably +bearcat +bearcats +beard +bearded +bearding +beardless +beards +bearer +bearers +bearing +bearings +bearish +bearlike +bears +bearskin +bearskins +beast +beastie +beasties +beastlier +beastliest +beastliness +beastlinesses +beastly +beasts +beat +beatable +beaten +beater +beaters +beatific +beatification +beatifications +beatified +beatifies +beatify +beatifying +beating +beatings +beatless +beatnik +beatniks +beats +beau +beauish +beaus +beaut +beauteously +beauties +beautification +beautifications +beautified +beautifies +beautiful +beautifully +beautify +beautifying +beauts +beauty +beaux +beaver +beavered +beavering +beavers +bebeeru +bebeerus +beblood +beblooded +beblooding +bebloods +bebop +bebopper +beboppers +bebops +becalm +becalmed +becalming +becalms +became +becap +becapped +becapping +becaps +becarpet +becarpeted +becarpeting +becarpets +because +bechalk +bechalked +bechalking +bechalks +bechamel +bechamels +bechance +bechanced +bechances +bechancing +becharm +becharmed +becharming +becharms +beck +becked +becket +beckets +becking +beckon +beckoned +beckoner +beckoners +beckoning +beckons +becks +beclamor +beclamored +beclamoring +beclamors +beclasp +beclasped +beclasping +beclasps +becloak +becloaked +becloaking +becloaks +beclog +beclogged +beclogging +beclogs +beclothe +beclothed +beclothes +beclothing +becloud +beclouded +beclouding +beclouds +beclown +beclowned +beclowning +beclowns +become +becomes +becoming +becomingly +becomings +becoward +becowarded +becowarding +becowards +becrawl +becrawled +becrawling +becrawls +becrime +becrimed +becrimes +becriming +becrowd +becrowded +becrowding +becrowds +becrust +becrusted +becrusting +becrusts +becudgel +becudgeled +becudgeling +becudgelled +becudgelling +becudgels +becurse +becursed +becurses +becursing +becurst +bed +bedabble +bedabbled +bedabbles +bedabbling +bedamn +bedamned +bedamning +bedamns +bedarken +bedarkened +bedarkening +bedarkens +bedaub +bedaubed +bedaubing +bedaubs +bedazzle +bedazzled +bedazzles +bedazzling +bedbug +bedbugs +bedchair +bedchairs +bedclothes +bedcover +bedcovers +bedded +bedder +bedders +bedding +beddings +bedeafen +bedeafened +bedeafening +bedeafens +bedeck +bedecked +bedecking +bedecks +bedel +bedell +bedells +bedels +bedeman +bedemen +bedesman +bedesmen +bedevil +bedeviled +bedeviling +bedevilled +bedevilling +bedevils +bedew +bedewed +bedewing +bedews +bedfast +bedframe +bedframes +bedgown +bedgowns +bediaper +bediapered +bediapering +bediapers +bedight +bedighted +bedighting +bedights +bedim +bedimmed +bedimming +bedimple +bedimpled +bedimples +bedimpling +bedims +bedirtied +bedirties +bedirty +bedirtying +bedizen +bedizened +bedizening +bedizens +bedlam +bedlamp +bedlamps +bedlams +bedless +bedlike +bedmaker +bedmakers +bedmate +bedmates +bedotted +bedouin +bedouins +bedpan +bedpans +bedplate +bedplates +bedpost +bedposts +bedquilt +bedquilts +bedraggled +bedrail +bedrails +bedrape +bedraped +bedrapes +bedraping +bedrench +bedrenched +bedrenches +bedrenching +bedrid +bedridden +bedrivel +bedriveled +bedriveling +bedrivelled +bedrivelling +bedrivels +bedrock +bedrocks +bedroll +bedrolls +bedroom +bedrooms +bedrug +bedrugged +bedrugging +bedrugs +beds +bedside +bedsides +bedsonia +bedsonias +bedsore +bedsores +bedspread +bedspreads +bedstand +bedstands +bedstead +bedsteads +bedstraw +bedstraws +bedtick +bedticks +bedtime +bedtimes +beduin +beduins +bedumb +bedumbed +bedumbing +bedumbs +bedunce +bedunced +bedunces +beduncing +bedward +bedwards +bedwarf +bedwarfed +bedwarfing +bedwarfs +bee +beebee +beebees +beebread +beebreads +beech +beechen +beeches +beechier +beechiest +beechnut +beechnuts +beechy +beef +beefcake +beefcakes +beefed +beefier +beefiest +beefily +beefing +beefless +beefs +beefsteak +beefsteaks +beefwood +beefwoods +beefy +beehive +beehives +beelike +beeline +beelines +beelzebub +been +beep +beeped +beeper +beepers +beeping +beeps +beer +beerier +beeriest +beers +beery +bees +beeswax +beeswaxes +beeswing +beeswings +beet +beetle +beetled +beetles +beetling +beetroot +beetroots +beets +beeves +befall +befallen +befalling +befalls +befell +befinger +befingered +befingering +befingers +befit +befits +befitted +befitting +beflag +beflagged +beflagging +beflags +beflea +befleaed +befleaing +befleas +befleck +beflecked +beflecking +beflecks +beflower +beflowered +beflowering +beflowers +befog +befogged +befogging +befogs +befool +befooled +befooling +befools +before +beforehand +befoul +befouled +befouler +befoulers +befouling +befouls +befret +befrets +befretted +befretting +befriend +befriended +befriending +befriends +befringe +befringed +befringes +befringing +befuddle +befuddled +befuddles +befuddling +beg +begall +begalled +begalling +begalls +began +begat +begaze +begazed +begazes +begazing +beget +begets +begetter +begetters +begetting +beggar +beggared +beggaries +beggaring +beggarly +beggars +beggary +begged +begging +begin +beginner +beginners +beginning +beginnings +begins +begird +begirded +begirding +begirdle +begirdled +begirdles +begirdling +begirds +begirt +beglad +begladded +begladding +beglads +begloom +begloomed +beglooming +beglooms +begone +begonia +begonias +begorah +begorra +begorrah +begot +begotten +begrim +begrime +begrimed +begrimes +begriming +begrimmed +begrimming +begrims +begroan +begroaned +begroaning +begroans +begrudge +begrudged +begrudges +begrudging +begs +beguile +beguiled +beguiler +beguilers +beguiles +beguiling +beguine +beguines +begulf +begulfed +begulfing +begulfs +begum +begums +begun +behalf +behalves +behave +behaved +behaver +behavers +behaves +behaving +behavior +behavioral +behaviors +behead +beheaded +beheading +beheads +beheld +behemoth +behemoths +behest +behests +behind +behinds +behold +beholden +beholder +beholders +beholding +beholds +behoof +behoove +behooved +behooves +behooving +behove +behoved +behoves +behoving +behowl +behowled +behowling +behowls +beige +beiges +beigy +being +beings +bejewel +bejeweled +bejeweling +bejewelled +bejewelling +bejewels +bejumble +bejumbled +bejumbles +bejumbling +bekiss +bekissed +bekisses +bekissing +beknight +beknighted +beknighting +beknights +beknot +beknots +beknotted +beknotting +bel +belabor +belabored +belaboring +belabors +belabour +belaboured +belabouring +belabours +belaced +beladied +beladies +belady +beladying +belated +belaud +belauded +belauding +belauds +belay +belayed +belaying +belays +belch +belched +belcher +belchers +belches +belching +beldam +beldame +beldames +beldams +beleaguer +beleaguered +beleaguering +beleaguers +beleap +beleaped +beleaping +beleaps +beleapt +belfried +belfries +belfry +belga +belgas +belie +belied +belief +beliefs +belier +beliers +belies +believable +believably +believe +believed +believer +believers +believes +believing +belike +beliquor +beliquored +beliquoring +beliquors +belittle +belittled +belittles +belittling +belive +bell +belladonna +belladonnas +bellbird +bellbirds +bellboy +bellboys +belle +belled +belleek +belleeks +belles +bellhop +bellhops +bellicose +bellicosities +bellicosity +bellied +bellies +belligerence +belligerences +belligerencies +belligerency +belligerent +belligerents +belling +bellman +bellmen +bellow +bellowed +bellower +bellowers +bellowing +bellows +bellpull +bellpulls +bells +bellwether +bellwethers +bellwort +bellworts +belly +bellyache +bellyached +bellyaches +bellyaching +bellyful +bellyfuls +bellying +belong +belonged +belonging +belongings +belongs +beloved +beloveds +below +belows +bels +belt +belted +belting +beltings +beltless +beltline +beltlines +belts +beltway +beltways +beluga +belugas +belying +bema +bemadam +bemadamed +bemadaming +bemadams +bemadden +bemaddened +bemaddening +bemaddens +bemas +bemata +bemean +bemeaned +bemeaning +bemeans +bemingle +bemingled +bemingles +bemingling +bemire +bemired +bemires +bemiring +bemist +bemisted +bemisting +bemists +bemix +bemixed +bemixes +bemixing +bemixt +bemoan +bemoaned +bemoaning +bemoans +bemock +bemocked +bemocking +bemocks +bemuddle +bemuddled +bemuddles +bemuddling +bemurmur +bemurmured +bemurmuring +bemurmurs +bemuse +bemused +bemuses +bemusing +bemuzzle +bemuzzled +bemuzzles +bemuzzling +ben +bename +benamed +benames +benaming +bench +benched +bencher +benchers +benches +benching +bend +bendable +benday +bendayed +bendaying +bendays +bended +bendee +bendees +bender +benders +bending +bends +bendways +bendwise +bendy +bendys +bene +beneath +benedick +benedicks +benedict +benediction +benedictions +benedicts +benefaction +benefactions +benefactor +benefactors +benefactress +benefactresses +benefic +benefice +beneficed +beneficence +beneficences +beneficent +benefices +beneficial +beneficially +beneficiaries +beneficiary +beneficing +benefit +benefited +benefiting +benefits +benefitted +benefitting +benempt +benempted +benes +benevolence +benevolences +benevolent +benign +benignities +benignity +benignly +benison +benisons +benjamin +benjamins +benne +bennes +bennet +bennets +benni +bennies +bennis +benny +bens +bent +benthal +benthic +benthos +benthoses +bents +bentwood +bentwoods +benumb +benumbed +benumbing +benumbs +benzal +benzene +benzenes +benzidin +benzidins +benzin +benzine +benzines +benzins +benzoate +benzoates +benzoic +benzoin +benzoins +benzol +benzole +benzoles +benzols +benzoyl +benzoyls +benzyl +benzylic +benzyls +bepaint +bepainted +bepainting +bepaints +bepimple +bepimpled +bepimples +bepimpling +bequeath +bequeathed +bequeathing +bequeaths +bequest +bequests +berake +beraked +berakes +beraking +berascal +berascaled +berascaling +berascals +berate +berated +berates +berating +berberin +berberins +berceuse +berceuses +bereave +bereaved +bereavement +bereavements +bereaver +bereavers +bereaves +bereaving +bereft +beret +berets +beretta +berettas +berg +bergamot +bergamots +bergs +berhyme +berhymed +berhymes +berhyming +beriber +beribers +berime +berimed +berimes +beriming +beringed +berlin +berline +berlines +berlins +berm +berme +bermes +berms +bernicle +bernicles +bernstein +berobed +berouged +berretta +berrettas +berried +berries +berry +berrying +berseem +berseems +berserk +berserks +berth +bertha +berthas +berthed +berthing +berths +beryl +beryline +beryls +bescorch +bescorched +bescorches +bescorching +bescour +bescoured +bescouring +bescours +bescreen +bescreened +bescreening +bescreens +beseech +beseeched +beseeches +beseeching +beseem +beseemed +beseeming +beseems +beset +besets +besetter +besetters +besetting +beshadow +beshadowed +beshadowing +beshadows +beshame +beshamed +beshames +beshaming +beshiver +beshivered +beshivering +beshivers +beshout +beshouted +beshouting +beshouts +beshrew +beshrewed +beshrewing +beshrews +beshroud +beshrouded +beshrouding +beshrouds +beside +besides +besiege +besieged +besieger +besiegers +besieges +besieging +beslaved +beslime +beslimed +beslimes +besliming +besmear +besmeared +besmearing +besmears +besmile +besmiled +besmiles +besmiling +besmirch +besmirched +besmirches +besmirching +besmoke +besmoked +besmokes +besmoking +besmooth +besmoothed +besmoothing +besmooths +besmudge +besmudged +besmudges +besmudging +besmut +besmuts +besmutted +besmutting +besnow +besnowed +besnowing +besnows +besom +besoms +besoothe +besoothed +besoothes +besoothing +besot +besots +besotted +besotting +besought +bespake +bespeak +bespeaking +bespeaks +bespoke +bespoken +bespouse +bespoused +bespouses +bespousing +bespread +bespreading +bespreads +besprent +best +bestead +besteaded +besteading +besteads +bested +bestial +bestialities +bestiality +bestiaries +bestiary +besting +bestir +bestirred +bestirring +bestirs +bestow +bestowal +bestowals +bestowed +bestowing +bestows +bestrew +bestrewed +bestrewing +bestrewn +bestrews +bestrid +bestridden +bestride +bestrides +bestriding +bestrode +bestrow +bestrowed +bestrowing +bestrown +bestrows +bests +bestud +bestudded +bestudding +bestuds +beswarm +beswarmed +beswarming +beswarms +bet +beta +betaine +betaines +betake +betaken +betakes +betaking +betas +betatron +betatrons +betatter +betattered +betattering +betatters +betaxed +betel +betelnut +betelnuts +betels +beth +bethank +bethanked +bethanking +bethanks +bethel +bethels +bethink +bethinking +bethinks +bethorn +bethorned +bethorning +bethorns +bethought +beths +bethump +bethumped +bethumping +bethumps +betide +betided +betides +betiding +betime +betimes +betise +betises +betoken +betokened +betokening +betokens +beton +betonies +betons +betony +betook +betray +betrayal +betrayals +betrayed +betrayer +betrayers +betraying +betrays +betroth +betrothal +betrothals +betrothed +betrotheds +betrothing +betroths +bets +betta +bettas +betted +better +bettered +bettering +betterment +betterments +betters +betting +bettor +bettors +between +betwixt +beuncled +bevatron +bevatrons +bevel +beveled +beveler +bevelers +beveling +bevelled +beveller +bevellers +bevelling +bevels +beverage +beverages +bevies +bevomit +bevomited +bevomiting +bevomits +bevor +bevors +bevy +bewail +bewailed +bewailer +bewailers +bewailing +bewails +beware +bewared +bewares +bewaring +bewearied +bewearies +beweary +bewearying +beweep +beweeping +beweeps +bewept +bewig +bewigged +bewigging +bewigs +bewilder +bewildered +bewildering +bewilderment +bewilderments +bewilders +bewinged +bewitch +bewitched +bewitches +bewitching +beworm +bewormed +beworming +beworms +beworried +beworries +beworry +beworrying +bewrap +bewrapped +bewrapping +bewraps +bewrapt +bewray +bewrayed +bewrayer +bewrayers +bewraying +bewrays +bey +beylic +beylics +beylik +beyliks +beyond +beyonds +beys +bezant +bezants +bezel +bezels +bezil +bezils +bezique +beziques +bezoar +bezoars +bezzant +bezzants +bhakta +bhaktas +bhakti +bhaktis +bhang +bhangs +bheestie +bheesties +bheesty +bhistie +bhisties +bhoot +bhoots +bhut +bhuts +bi +biacetyl +biacetyls +bialy +bialys +biannual +biannually +bias +biased +biasedly +biases +biasing +biasness +biasnesses +biassed +biasses +biassing +biathlon +biathlons +biaxal +biaxial +bib +bibasic +bibasilar +bibb +bibbed +bibber +bibberies +bibbers +bibbery +bibbing +bibbs +bibcock +bibcocks +bibelot +bibelots +bible +bibles +bibless +biblical +biblike +bibliographer +bibliographers +bibliographic +bibliographical +bibliographies +bibliography +bibs +bibulous +bicameral +bicarb +bicarbonate +bicarbonates +bicarbs +bice +bicentennial +bicentennials +biceps +bicepses +bices +bichrome +bicker +bickered +bickerer +bickerers +bickering +bickers +bicolor +bicolored +bicolors +bicolour +bicolours +biconcave +biconcavities +biconcavity +biconvex +biconvexities +biconvexity +bicorn +bicorne +bicornes +bicron +bicrons +bicultural +bicuspid +bicuspids +bicycle +bicycled +bicycler +bicyclers +bicycles +bicyclic +bicycling +bid +bidarka +bidarkas +bidarkee +bidarkees +biddable +biddably +bidden +bidder +bidders +biddies +bidding +biddings +biddy +bide +bided +bidental +bider +biders +bides +bidet +bidets +biding +bidirectional +bids +bield +bielded +bielding +bields +biennia +biennial +biennially +biennials +biennium +bienniums +bier +biers +bifacial +biff +biffed +biffies +biffin +biffing +biffins +biffs +biffy +bifid +bifidities +bifidity +bifidly +bifilar +biflex +bifocal +bifocals +bifold +biforate +biforked +biform +biformed +bifunctional +big +bigamies +bigamist +bigamists +bigamous +bigamy +bigaroon +bigaroons +bigeminies +bigeminy +bigeye +bigeyes +bigger +biggest +biggety +biggie +biggies +biggin +bigging +biggings +biggins +biggish +biggity +bighead +bigheads +bighorn +bighorns +bight +bighted +bighting +bights +bigly +bigmouth +bigmouths +bigness +bignesses +bignonia +bignonias +bigot +bigoted +bigotries +bigotry +bigots +bigwig +bigwigs +bihourly +bijou +bijous +bijoux +bijugate +bijugous +bike +biked +biker +bikers +bikes +bikeway +bikeways +biking +bikini +bikinied +bikinis +bilabial +bilabials +bilander +bilanders +bilateral +bilaterally +bilberries +bilberry +bilbo +bilboa +bilboas +bilboes +bilbos +bile +biles +bilge +bilged +bilges +bilgier +bilgiest +bilging +bilgy +biliary +bilinear +bilingual +bilious +biliousness +biliousnesses +bilirubin +bilk +bilked +bilker +bilkers +bilking +bilks +bill +billable +billboard +billboards +billbug +billbugs +billed +biller +billers +billet +billeted +billeter +billeters +billeting +billets +billfish +billfishes +billfold +billfolds +billhead +billheads +billhook +billhooks +billiard +billiards +billie +billies +billing +billings +billion +billions +billionth +billionths +billon +billons +billow +billowed +billowier +billowiest +billowing +billows +billowy +bills +billy +billycan +billycans +bilobate +bilobed +bilsted +bilsteds +biltong +biltongs +bima +bimah +bimahs +bimanous +bimanual +bimas +bimensal +bimester +bimesters +bimetal +bimetallic +bimetals +bimethyl +bimethyls +bimodal +bin +binal +binaries +binary +binate +binately +binational +binationalism +binationalisms +binaural +bind +bindable +binder +binderies +binders +bindery +binding +bindings +bindle +bindles +binds +bindweed +bindweeds +bine +bines +binge +binges +bingo +bingos +binit +binits +binnacle +binnacles +binned +binning +binocle +binocles +binocular +binocularly +binoculars +binomial +binomials +bins +bint +bints +bio +bioassay +bioassayed +bioassaying +bioassays +biochemical +biochemicals +biochemist +biochemistries +biochemistry +biochemists +biocidal +biocide +biocides +bioclean +biocycle +biocycles +biodegradabilities +biodegradability +biodegradable +biodegradation +biodegradations +biodegrade +biodegraded +biodegrades +biodegrading +biogen +biogenic +biogenies +biogens +biogeny +biographer +biographers +biographic +biographical +biographies +biography +bioherm +bioherms +biologic +biological +biologics +biologies +biologist +biologists +biology +biolyses +biolysis +biolytic +biomass +biomasses +biome +biomedical +biomes +biometries +biometry +bionic +bionics +bionomic +bionomies +bionomy +biont +biontic +bionts +biophysical +biophysicist +biophysicists +biophysics +bioplasm +bioplasms +biopsic +biopsies +biopsy +bioptic +bios +bioscope +bioscopes +bioscopies +bioscopy +biota +biotas +biotic +biotical +biotics +biotin +biotins +biotite +biotites +biotitic +biotope +biotopes +biotron +biotrons +biotype +biotypes +biotypic +biovular +bipack +bipacks +biparental +biparous +biparted +bipartisan +biparty +biped +bipedal +bipeds +biphenyl +biphenyls +biplane +biplanes +bipod +bipods +bipolar +biracial +biracially +biradial +biramose +biramous +birch +birched +birchen +birches +birching +bird +birdbath +birdbaths +birdbrained +birdcage +birdcages +birdcall +birdcalls +birded +birder +birders +birdfarm +birdfarms +birdhouse +birdhouses +birdie +birdied +birdieing +birdies +birding +birdlike +birdlime +birdlimed +birdlimes +birdliming +birdman +birdmen +birds +birdseed +birdseeds +birdseye +birdseyes +bireme +biremes +biretta +birettas +birk +birkie +birkies +birks +birl +birle +birled +birler +birlers +birles +birling +birlings +birls +birr +birred +birretta +birrettas +birring +birrs +birse +birses +birth +birthdate +birthdates +birthday +birthdays +birthed +birthing +birthplace +birthplaces +birthrate +birthrates +births +bis +biscuit +biscuits +bise +bisect +bisected +bisecting +bisection +bisections +bisector +bisectors +bisects +bises +bisexual +bisexuals +bishop +bishoped +bishoping +bishops +bisk +bisks +bismuth +bismuths +bisnaga +bisnagas +bison +bisons +bisque +bisques +bistate +bister +bistered +bisters +bistort +bistorts +bistouries +bistoury +bistre +bistred +bistres +bistro +bistroic +bistros +bit +bitable +bitch +bitched +bitcheries +bitchery +bitches +bitchier +bitchiest +bitchily +bitching +bitchy +bite +biteable +biter +biters +bites +bitewing +bitewings +biting +bitingly +bits +bitstock +bitstocks +bitsy +bitt +bitted +bitten +bitter +bittered +bitterer +bitterest +bittering +bitterly +bittern +bitterness +bitternesses +bitterns +bitters +bittier +bittiest +bitting +bittings +bittock +bittocks +bitts +bitty +bitumen +bitumens +bituminous +bivalent +bivalents +bivalve +bivalved +bivalves +bivinyl +bivinyls +bivouac +bivouacked +bivouacking +bivouacks +bivouacs +biweeklies +biweekly +biyearly +bizarre +bizarrely +bizarres +bize +bizes +biznaga +biznagas +bizonal +bizone +bizones +blab +blabbed +blabber +blabbered +blabbering +blabbers +blabbing +blabby +blabs +black +blackball +blackballs +blackberries +blackberry +blackbird +blackbirds +blackboard +blackboards +blackboy +blackboys +blackcap +blackcaps +blacked +blacken +blackened +blackening +blackens +blacker +blackest +blackfin +blackfins +blackflies +blackfly +blackguard +blackguards +blackgum +blackgums +blackhead +blackheads +blacking +blackings +blackish +blackjack +blackjacks +blackleg +blacklegs +blacklist +blacklisted +blacklisting +blacklists +blackly +blackmail +blackmailed +blackmailer +blackmailers +blackmailing +blackmails +blackness +blacknesses +blackout +blackouts +blacks +blacksmith +blacksmiths +blacktop +blacktopped +blacktopping +blacktops +bladder +bladders +bladdery +blade +bladed +blades +blae +blah +blahs +blain +blains +blamable +blamably +blame +blamed +blameful +blameless +blamelessly +blamer +blamers +blames +blameworthiness +blameworthinesses +blameworthy +blaming +blanch +blanched +blancher +blanchers +blanches +blanching +bland +blander +blandest +blandish +blandished +blandishes +blandishing +blandishment +blandishments +blandly +blandness +blandnesses +blank +blanked +blanker +blankest +blanket +blanketed +blanketing +blankets +blanking +blankly +blankness +blanknesses +blanks +blare +blared +blares +blaring +blarney +blarneyed +blarneying +blarneys +blase +blaspheme +blasphemed +blasphemes +blasphemies +blaspheming +blasphemous +blasphemy +blast +blasted +blastema +blastemas +blastemata +blaster +blasters +blastie +blastier +blasties +blastiest +blasting +blastings +blastoff +blastoffs +blastoma +blastomas +blastomata +blasts +blastula +blastulae +blastulas +blasty +blat +blatancies +blatancy +blatant +blate +blather +blathered +blathering +blathers +blats +blatted +blatter +blattered +blattering +blatters +blatting +blaubok +blauboks +blaw +blawed +blawing +blawn +blaws +blaze +blazed +blazer +blazers +blazes +blazing +blazon +blazoned +blazoner +blazoners +blazoning +blazonries +blazonry +blazons +bleach +bleached +bleacher +bleachers +bleaches +bleaching +bleak +bleaker +bleakest +bleakish +bleakly +bleakness +bleaknesses +bleaks +blear +bleared +blearier +bleariest +blearily +blearing +blears +bleary +bleat +bleated +bleater +bleaters +bleating +bleats +bleb +blebby +blebs +bled +bleed +bleeder +bleeders +bleeding +bleedings +bleeds +blellum +blellums +blemish +blemished +blemishes +blemishing +blench +blenched +blencher +blenchers +blenches +blenching +blend +blende +blended +blender +blenders +blendes +blending +blends +blennies +blenny +blent +bleomycin +blesbok +blesboks +blesbuck +blesbucks +bless +blessed +blesseder +blessedest +blessedness +blessednesses +blesser +blessers +blesses +blessing +blessings +blest +blet +blether +blethered +blethering +blethers +blets +blew +blight +blighted +blighter +blighters +blighties +blighting +blights +blighty +blimey +blimp +blimpish +blimps +blimy +blin +blind +blindage +blindages +blinded +blinder +blinders +blindest +blindfold +blindfolded +blindfolding +blindfolds +blinding +blindly +blindness +blindnesses +blinds +blini +blinis +blink +blinkard +blinkards +blinked +blinker +blinkered +blinkering +blinkers +blinking +blinks +blintz +blintze +blintzes +blip +blipped +blipping +blips +bliss +blisses +blissful +blissfully +blister +blistered +blistering +blisters +blistery +blite +blites +blithe +blithely +blither +blithered +blithering +blithers +blithesome +blithest +blitz +blitzed +blitzes +blitzing +blizzard +blizzards +bloat +bloated +bloater +bloaters +bloating +bloats +blob +blobbed +blobbing +blobs +bloc +block +blockade +blockaded +blockades +blockading +blockage +blockages +blocked +blocker +blockers +blockier +blockiest +blocking +blockish +blocks +blocky +blocs +bloke +blokes +blond +blonde +blonder +blondes +blondest +blondish +blonds +blood +bloodcurdling +blooded +bloodfin +bloodfins +bloodhound +bloodhounds +bloodied +bloodier +bloodies +bloodiest +bloodily +blooding +bloodings +bloodless +bloodmobile +bloodmobiles +bloodred +bloods +bloodshed +bloodsheds +bloodstain +bloodstained +bloodstains +bloodsucker +bloodsuckers +bloodsucking +bloodsuckings +bloodthirstily +bloodthirstiness +bloodthirstinesses +bloodthirsty +bloody +bloodying +bloom +bloomed +bloomer +bloomeries +bloomers +bloomery +bloomier +bloomiest +blooming +blooms +bloomy +bloop +blooped +blooper +bloopers +blooping +bloops +blossom +blossomed +blossoming +blossoms +blossomy +blot +blotch +blotched +blotches +blotchier +blotchiest +blotching +blotchy +blotless +blots +blotted +blotter +blotters +blottier +blottiest +blotting +blotto +blotty +blouse +bloused +blouses +blousier +blousiest +blousily +blousing +blouson +blousons +blousy +blow +blowback +blowbacks +blowby +blowbys +blower +blowers +blowfish +blowfishes +blowflies +blowfly +blowgun +blowguns +blowhard +blowhards +blowhole +blowholes +blowier +blowiest +blowing +blown +blowoff +blowoffs +blowout +blowouts +blowpipe +blowpipes +blows +blowsed +blowsier +blowsiest +blowsily +blowsy +blowtorch +blowtorches +blowtube +blowtubes +blowup +blowups +blowy +blowzed +blowzier +blowziest +blowzily +blowzy +blubber +blubbered +blubbering +blubbers +blubbery +blucher +bluchers +bludgeon +bludgeoned +bludgeoning +bludgeons +blue +blueball +blueballs +bluebell +bluebells +blueberries +blueberry +bluebill +bluebills +bluebird +bluebirds +bluebook +bluebooks +bluecap +bluecaps +bluecoat +bluecoats +blued +bluefin +bluefins +bluefish +bluefishes +bluegill +bluegills +bluegum +bluegums +bluehead +blueheads +blueing +blueings +blueish +bluejack +bluejacks +bluejay +bluejays +blueline +bluelines +bluely +blueness +bluenesses +bluenose +bluenoses +blueprint +blueprinted +blueprinting +blueprints +bluer +blues +bluesman +bluesmen +bluest +bluestem +bluestems +bluesy +bluet +bluets +blueweed +blueweeds +bluewood +bluewoods +bluey +blueys +bluff +bluffed +bluffer +bluffers +bluffest +bluffing +bluffly +bluffs +bluing +bluings +bluish +blume +blumed +blumes +bluming +blunder +blunderbuss +blunderbusses +blundered +blundering +blunders +blunge +blunged +blunger +blungers +blunges +blunging +blunt +blunted +blunter +bluntest +blunting +bluntly +bluntness +bluntnesses +blunts +blur +blurb +blurbs +blurred +blurrier +blurriest +blurrily +blurring +blurry +blurs +blurt +blurted +blurter +blurters +blurting +blurts +blush +blushed +blusher +blushers +blushes +blushful +blushing +bluster +blustered +blustering +blusters +blustery +blype +blypes +bo +boa +boar +board +boarded +boarder +boarders +boarding +boardings +boardman +boardmen +boards +boardwalk +boardwalks +boarfish +boarfishes +boarish +boars +boart +boarts +boas +boast +boasted +boaster +boasters +boastful +boastfully +boasting +boasts +boat +boatable +boatbill +boatbills +boated +boatel +boatels +boater +boaters +boating +boatings +boatload +boatloads +boatman +boatmen +boats +boatsman +boatsmen +boatswain +boatswains +boatyard +boatyards +bob +bobbed +bobber +bobberies +bobbers +bobbery +bobbies +bobbin +bobbinet +bobbinets +bobbing +bobbins +bobble +bobbled +bobbles +bobbling +bobby +bobcat +bobcats +bobeche +bobeches +bobolink +bobolinks +bobs +bobsled +bobsleded +bobsleding +bobsleds +bobstay +bobstays +bobtail +bobtailed +bobtailing +bobtails +bobwhite +bobwhites +bocaccio +bocaccios +bocce +bocces +bocci +boccia +boccias +boccie +boccies +boccis +boche +boches +bock +bocks +bod +bode +boded +bodega +bodegas +bodement +bodements +bodes +bodice +bodices +bodied +bodies +bodiless +bodily +boding +bodingly +bodings +bodkin +bodkins +bods +body +bodying +bodysurf +bodysurfed +bodysurfing +bodysurfs +bodywork +bodyworks +boehmite +boehmites +boff +boffin +boffins +boffo +boffola +boffolas +boffos +boffs +bog +bogan +bogans +bogbean +bogbeans +bogey +bogeyed +bogeying +bogeyman +bogeymen +bogeys +bogged +boggier +boggiest +bogging +boggish +boggle +boggled +boggler +bogglers +boggles +boggling +boggy +bogie +bogies +bogle +bogles +bogs +bogus +bogwood +bogwoods +bogy +bogyism +bogyisms +bogyman +bogymen +bogys +bohea +boheas +bohemia +bohemian +bohemians +bohemias +bohunk +bohunks +boil +boilable +boiled +boiler +boilers +boiling +boils +boisterous +boisterously +boite +boites +bola +bolar +bolas +bolases +bold +bolder +boldest +boldface +boldfaced +boldfaces +boldfacing +boldly +boldness +boldnesses +bole +bolero +boleros +boles +bolete +boletes +boleti +boletus +boletuses +bolide +bolides +bolivar +bolivares +bolivars +bolivia +bolivias +boll +bollard +bollards +bolled +bolling +bollix +bollixed +bollixes +bollixing +bollox +bolloxed +bolloxes +bolloxing +bolls +bollworm +bollworms +bolo +bologna +bolognas +boloney +boloneys +bolos +bolshevik +bolson +bolsons +bolster +bolstered +bolstering +bolsters +bolt +bolted +bolter +bolters +bolthead +boltheads +bolting +boltonia +boltonias +boltrope +boltropes +bolts +bolus +boluses +bomb +bombard +bombarded +bombardier +bombardiers +bombarding +bombardment +bombardments +bombards +bombast +bombastic +bombasts +bombe +bombed +bomber +bombers +bombes +bombing +bombload +bombloads +bombproof +bombs +bombshell +bombshells +bombycid +bombycids +bombyx +bombyxes +bonaci +bonacis +bonanza +bonanzas +bonbon +bonbons +bond +bondable +bondage +bondages +bonded +bonder +bonders +bondholder +bondholders +bonding +bondmaid +bondmaids +bondman +bondmen +bonds +bondsman +bondsmen +bonduc +bonducs +bondwoman +bondwomen +bone +boned +bonefish +bonefishes +bonehead +boneheads +boneless +boner +boners +bones +boneset +bonesets +boney +boneyard +boneyards +bonfire +bonfires +bong +bonged +bonging +bongo +bongoes +bongoist +bongoists +bongos +bongs +bonhomie +bonhomies +bonier +boniest +boniface +bonifaces +boniness +boninesses +boning +bonita +bonitas +bonito +bonitoes +bonitos +bonkers +bonne +bonnes +bonnet +bonneted +bonneting +bonnets +bonnie +bonnier +bonniest +bonnily +bonnock +bonnocks +bonny +bonsai +bonspell +bonspells +bonspiel +bonspiels +bontebok +bonteboks +bonus +bonuses +bony +bonze +bonzer +bonzes +boo +boob +boobies +booboo +booboos +boobs +booby +boodle +boodled +boodler +boodlers +boodles +boodling +booed +booger +boogers +boogie +boogies +boogyman +boogymen +boohoo +boohooed +boohooing +boohoos +booing +book +bookcase +bookcases +booked +bookend +bookends +booker +bookers +bookie +bookies +booking +bookings +bookish +bookkeeper +bookkeepers +bookkeeping +bookkeepings +booklet +booklets +booklore +booklores +bookmaker +bookmakers +bookmaking +bookmakings +bookman +bookmark +bookmarks +bookmen +bookrack +bookracks +bookrest +bookrests +books +bookseller +booksellers +bookshelf +bookshelfs +bookshop +bookshops +bookstore +bookstores +bookworm +bookworms +boom +boomed +boomer +boomerang +boomerangs +boomers +boomier +boomiest +booming +boomkin +boomkins +boomlet +boomlets +booms +boomtown +boomtowns +boomy +boon +boondocks +boonies +boons +boor +boorish +boors +boos +boost +boosted +booster +boosters +boosting +boosts +boot +booted +bootee +bootees +booteries +bootery +booth +booths +bootie +booties +booting +bootjack +bootjacks +bootlace +bootlaces +bootleg +bootlegged +bootlegger +bootleggers +bootlegging +bootlegs +bootless +bootlick +bootlicked +bootlicking +bootlicks +boots +booty +booze +boozed +boozer +boozers +boozes +boozier +booziest +boozily +boozing +boozy +bop +bopped +bopper +boppers +bopping +bops +bora +boraces +boracic +boracite +boracites +borage +borages +borane +boranes +boras +borate +borated +borates +borax +boraxes +borazon +borazons +bordel +bordello +bordellos +bordels +border +bordered +borderer +borderers +bordering +borderline +borders +bordure +bordures +bore +boreal +borecole +borecoles +bored +boredom +boredoms +borer +borers +bores +boric +boride +borides +boring +boringly +borings +born +borne +borneol +borneols +bornite +bornites +boron +boronic +borons +borough +boroughs +borrow +borrowed +borrower +borrowers +borrowing +borrows +borsch +borsches +borscht +borschts +borstal +borstals +bort +borts +borty +bortz +bortzes +borzoi +borzois +bos +boscage +boscages +boschbok +boschboks +bosh +boshbok +boshboks +boshes +boshvark +boshvarks +bosk +boskage +boskages +bosker +bosket +boskets +boskier +boskiest +bosks +bosky +bosom +bosomed +bosoming +bosoms +bosomy +boson +bosons +bosque +bosques +bosquet +bosquets +boss +bossdom +bossdoms +bossed +bosses +bossier +bossies +bossiest +bossily +bossing +bossism +bossisms +bossy +boston +bostons +bosun +bosuns +bot +botanic +botanical +botanies +botanise +botanised +botanises +botanising +botanist +botanists +botanize +botanized +botanizes +botanizing +botany +botch +botched +botcher +botcheries +botchers +botchery +botches +botchier +botchiest +botchily +botching +botchy +botel +botels +botflies +botfly +both +bother +bothered +bothering +bothers +bothersome +botonee +botonnee +botryoid +botryose +bots +bott +bottle +bottled +bottleneck +bottlenecks +bottler +bottlers +bottles +bottling +bottom +bottomed +bottomer +bottomers +bottoming +bottomless +bottomries +bottomry +bottoms +botts +botulin +botulins +botulism +botulisms +boucle +boucles +boudoir +boudoirs +bouffant +bouffants +bouffe +bouffes +bough +boughed +boughpot +boughpots +boughs +bought +boughten +bougie +bougies +bouillon +bouillons +boulder +boulders +bouldery +boule +boules +boulle +boulles +bounce +bounced +bouncer +bouncers +bounces +bouncier +bounciest +bouncily +bouncing +bouncy +bound +boundaries +boundary +bounded +bounden +bounder +bounders +bounding +boundless +boundlessness +boundlessnesses +bounds +bounteous +bounteously +bountied +bounties +bountiful +bountifully +bounty +bouquet +bouquets +bourbon +bourbons +bourdon +bourdons +bourg +bourgeois +bourgeoisie +bourgeoisies +bourgeon +bourgeoned +bourgeoning +bourgeons +bourgs +bourn +bourne +bournes +bourns +bourree +bourrees +bourse +bourses +bourtree +bourtrees +bouse +boused +bouses +bousing +bousouki +bousoukia +bousoukis +bousy +bout +boutique +boutiques +bouts +bouzouki +bouzoukia +bouzoukis +bovid +bovids +bovine +bovinely +bovines +bovinities +bovinity +bow +bowed +bowel +boweled +boweling +bowelled +bowelling +bowels +bower +bowered +boweries +bowering +bowers +bowery +bowfin +bowfins +bowfront +bowhead +bowheads +bowing +bowingly +bowings +bowknot +bowknots +bowl +bowlder +bowlders +bowled +bowleg +bowlegs +bowler +bowlers +bowless +bowlful +bowlfuls +bowlike +bowline +bowlines +bowling +bowlings +bowllike +bowls +bowman +bowmen +bowpot +bowpots +bows +bowse +bowsed +bowses +bowshot +bowshots +bowsing +bowsprit +bowsprits +bowwow +bowwows +bowyer +bowyers +box +boxberries +boxberry +boxcar +boxcars +boxed +boxer +boxers +boxes +boxfish +boxfishes +boxful +boxfuls +boxhaul +boxhauled +boxhauling +boxhauls +boxier +boxiest +boxiness +boxinesses +boxing +boxings +boxlike +boxthorn +boxthorns +boxwood +boxwoods +boxy +boy +boyar +boyard +boyards +boyarism +boyarisms +boyars +boycott +boycotted +boycotting +boycotts +boyhood +boyhoods +boyish +boyishly +boyishness +boyishnesses +boyla +boylas +boyo +boyos +boys +bozo +bozos +bra +brabble +brabbled +brabbler +brabblers +brabbles +brabbling +brace +braced +bracelet +bracelets +bracer +bracero +braceros +bracers +braces +brach +braches +brachet +brachets +brachia +brachial +brachials +brachium +bracing +bracings +bracken +brackens +bracket +bracketed +bracketing +brackets +brackish +bract +bracteal +bracted +bractlet +bractlets +bracts +brad +bradawl +bradawls +bradded +bradding +bradoon +bradoons +brads +brae +braes +brag +braggart +braggarts +bragged +bragger +braggers +braggest +braggier +braggiest +bragging +braggy +brags +brahma +brahmas +braid +braided +braider +braiders +braiding +braidings +braids +brail +brailed +brailing +braille +brailled +brailles +brailling +brails +brain +brained +brainier +brainiest +brainily +braining +brainish +brainless +brainpan +brainpans +brains +brainstorm +brainstorms +brainy +braise +braised +braises +braising +braize +braizes +brake +brakeage +brakeages +braked +brakeman +brakemen +brakes +brakier +brakiest +braking +braky +bramble +brambled +brambles +bramblier +brambliest +brambling +brambly +bran +branch +branched +branches +branchia +branchiae +branchier +branchiest +branching +branchy +brand +branded +brander +branders +brandied +brandies +branding +brandish +brandished +brandishes +brandishing +brands +brandy +brandying +brank +branks +branned +branner +branners +brannier +branniest +branning +branny +brans +brant +brantail +brantails +brants +bras +brash +brasher +brashes +brashest +brashier +brashiest +brashly +brashy +brasier +brasiers +brasil +brasilin +brasilins +brasils +brass +brassage +brassages +brassard +brassards +brassart +brassarts +brasses +brassica +brassicas +brassie +brassier +brassiere +brassieres +brassies +brassiest +brassily +brassish +brassy +brat +brats +brattice +bratticed +brattices +bratticing +brattier +brattiest +brattish +brattle +brattled +brattles +brattling +bratty +braunite +braunites +brava +bravado +bravadoes +bravados +bravas +brave +braved +bravely +braver +braveries +bravers +bravery +braves +bravest +braving +bravo +bravoed +bravoes +bravoing +bravos +bravura +bravuras +bravure +braw +brawer +brawest +brawl +brawled +brawler +brawlers +brawlie +brawlier +brawliest +brawling +brawls +brawly +brawn +brawnier +brawniest +brawnily +brawns +brawny +braws +braxies +braxy +bray +brayed +brayer +brayers +braying +brays +braza +brazas +braze +brazed +brazen +brazened +brazening +brazenly +brazenness +brazennesses +brazens +brazer +brazers +brazes +brazier +braziers +brazil +brazilin +brazilins +brazils +brazing +breach +breached +breacher +breachers +breaches +breaching +bread +breaded +breading +breadnut +breadnuts +breads +breadth +breadths +breadwinner +breadwinners +break +breakable +breakage +breakages +breakdown +breakdowns +breaker +breakers +breakfast +breakfasted +breakfasting +breakfasts +breaking +breakings +breakout +breakouts +breaks +breakthrough +breakthroughs +breakup +breakups +bream +breamed +breaming +breams +breast +breastbone +breastbones +breasted +breasting +breasts +breath +breathe +breathed +breather +breathers +breathes +breathier +breathiest +breathing +breathless +breathlessly +breaths +breathtaking +breathy +breccia +breccial +breccias +brecham +brechams +brechan +brechans +bred +brede +bredes +bree +breech +breeched +breeches +breeching +breed +breeder +breeders +breeding +breedings +breeds +breeks +brees +breeze +breezed +breezes +breezier +breeziest +breezily +breezing +breezy +bregma +bregmata +bregmate +brent +brents +brethren +breve +breves +brevet +brevetcies +brevetcy +breveted +breveting +brevets +brevetted +brevetting +breviaries +breviary +brevier +breviers +brevities +brevity +brew +brewage +brewages +brewed +brewer +breweries +brewers +brewery +brewing +brewings +brewis +brewises +brews +briar +briard +briards +briars +briary +bribable +bribe +bribed +briber +briberies +bribers +bribery +bribes +bribing +brick +brickbat +brickbats +bricked +brickier +brickiest +bricking +bricklayer +bricklayers +bricklaying +bricklayings +brickle +bricks +bricky +bricole +bricoles +bridal +bridally +bridals +bride +bridegroom +bridegrooms +brides +bridesmaid +bridesmaids +bridge +bridgeable +bridgeables +bridged +bridges +bridging +bridgings +bridle +bridled +bridler +bridlers +bridles +bridling +bridoon +bridoons +brie +brief +briefcase +briefcases +briefed +briefer +briefers +briefest +briefing +briefings +briefly +briefness +briefnesses +briefs +brier +briers +briery +bries +brig +brigade +brigaded +brigades +brigadier +brigadiers +brigading +brigand +brigands +bright +brighten +brightened +brightener +brighteners +brightening +brightens +brighter +brightest +brightly +brightness +brightnesses +brights +brigs +brill +brilliance +brilliances +brilliancies +brilliancy +brilliant +brilliantly +brills +brim +brimful +brimfull +brimless +brimmed +brimmer +brimmers +brimming +brims +brimstone +brimstones +brin +brinded +brindle +brindled +brindles +brine +brined +briner +briners +brines +bring +bringer +bringers +bringing +brings +brinier +brinies +briniest +brininess +brininesses +brining +brinish +brink +brinks +brins +briny +brio +brioche +brioches +brionies +briony +brios +briquet +briquets +briquetted +briquetting +brisance +brisances +brisant +brisk +brisked +brisker +briskest +brisket +briskets +brisking +briskly +briskness +brisknesses +brisks +brisling +brislings +bristle +bristled +bristles +bristlier +bristliest +bristling +bristly +bristol +bristols +brit +britches +brits +britska +britskas +britt +brittle +brittled +brittler +brittles +brittlest +brittling +britts +britzka +britzkas +britzska +britzskas +broach +broached +broacher +broachers +broaches +broaching +broad +broadax +broadaxe +broadaxes +broadcast +broadcasted +broadcaster +broadcasters +broadcasting +broadcasts +broadcloth +broadcloths +broaden +broadened +broadening +broadens +broader +broadest +broadish +broadloom +broadlooms +broadly +broadness +broadnesses +broads +broadside +broadsides +brocade +brocaded +brocades +brocading +brocatel +brocatels +broccoli +broccolis +broche +brochure +brochures +brock +brockage +brockages +brocket +brockets +brocks +brocoli +brocolis +brogan +brogans +brogue +brogueries +broguery +brogues +broguish +broider +broidered +broideries +broidering +broiders +broidery +broil +broiled +broiler +broilers +broiling +broils +brokage +brokages +broke +broken +brokenhearted +brokenly +broker +brokerage +brokerages +brokers +brollies +brolly +bromal +bromals +bromate +bromated +bromates +bromating +brome +bromelin +bromelins +bromes +bromic +bromid +bromide +bromides +bromidic +bromids +bromin +bromine +bromines +bromins +bromism +bromisms +bromo +bromos +bronc +bronchi +bronchia +bronchial +bronchitis +broncho +bronchos +bronchospasm +bronchus +bronco +broncos +broncs +bronze +bronzed +bronzer +bronzers +bronzes +bronzier +bronziest +bronzing +bronzings +bronzy +broo +brooch +brooches +brood +brooded +brooder +brooders +broodier +broodiest +brooding +broods +broody +brook +brooked +brooking +brookite +brookites +brooklet +brooklets +brookline +brooks +broom +broomed +broomier +broomiest +brooming +brooms +broomstick +broomsticks +broomy +broos +brose +broses +brosy +broth +brothel +brothels +brother +brothered +brotherhood +brotherhoods +brothering +brotherliness +brotherlinesses +brotherly +brothers +broths +brothy +brougham +broughams +brought +brouhaha +brouhahas +brow +browbeat +browbeaten +browbeating +browbeats +browless +brown +browned +browner +brownest +brownie +brownier +brownies +browniest +browning +brownish +brownout +brownouts +browns +browny +brows +browse +browsed +browser +browsers +browses +browsing +brucella +brucellae +brucellas +brucin +brucine +brucines +brucins +brugh +brughs +bruin +bruins +bruise +bruised +bruiser +bruisers +bruises +bruising +bruit +bruited +bruiter +bruiters +bruiting +bruits +brulot +brulots +brulyie +brulyies +brulzie +brulzies +brumal +brumbies +brumby +brume +brumes +brumous +brunch +brunched +brunches +brunching +brunet +brunets +brunette +brunettes +brunizem +brunizems +brunt +brunts +brush +brushed +brusher +brushers +brushes +brushier +brushiest +brushing +brushoff +brushoffs +brushup +brushups +brushy +brusk +brusker +bruskest +brusque +brusquely +brusquer +brusquest +brut +brutal +brutalities +brutality +brutalize +brutalized +brutalizes +brutalizing +brutally +brute +bruted +brutely +brutes +brutified +brutifies +brutify +brutifying +bruting +brutish +brutism +brutisms +bruxism +bruxisms +bryologies +bryology +bryonies +bryony +bryozoan +bryozoans +bub +bubal +bubale +bubales +bubaline +bubalis +bubalises +bubals +bubbies +bubble +bubbled +bubbler +bubblers +bubbles +bubblier +bubblies +bubbliest +bubbling +bubbly +bubby +bubinga +bubingas +bubo +buboed +buboes +bubonic +bubs +buccal +buccally +buck +buckaroo +buckaroos +buckayro +buckayros +buckbean +buckbeans +bucked +buckeen +buckeens +bucker +buckeroo +buckeroos +buckers +bucket +bucketed +bucketful +bucketfuls +bucketing +buckets +buckeye +buckeyes +bucking +buckish +buckle +buckled +buckler +bucklered +bucklering +bucklers +buckles +buckling +bucko +buckoes +buckra +buckram +buckramed +buckraming +buckrams +buckras +bucks +bucksaw +bucksaws +buckshee +buckshees +buckshot +buckshots +buckskin +buckskins +bucktail +bucktails +bucktooth +bucktooths +buckwheat +buckwheats +bucolic +bucolics +bud +budded +budder +budders +buddies +budding +buddle +buddleia +buddleias +buddles +buddy +budge +budged +budger +budgers +budges +budget +budgetary +budgeted +budgeter +budgeters +budgeting +budgets +budgie +budgies +budging +budless +budlike +buds +buff +buffable +buffalo +buffaloed +buffaloes +buffaloing +buffalos +buffed +buffer +buffered +buffering +buffers +buffet +buffeted +buffeter +buffeters +buffeting +buffets +buffi +buffier +buffiest +buffing +buffo +buffoon +buffoons +buffos +buffs +buffy +bug +bugaboo +bugaboos +bugbane +bugbanes +bugbear +bugbears +bugeye +bugeyes +bugged +bugger +buggered +buggeries +buggering +buggers +buggery +buggier +buggies +buggiest +bugging +buggy +bughouse +bughouses +bugle +bugled +bugler +buglers +bugles +bugling +bugloss +buglosses +bugs +bugseed +bugseeds +bugsha +bugshas +buhl +buhls +buhlwork +buhlworks +buhr +buhrs +build +builded +builder +builders +building +buildings +builds +buildup +buildups +built +buirdly +bulb +bulbar +bulbed +bulbel +bulbels +bulbil +bulbils +bulbous +bulbs +bulbul +bulbuls +bulge +bulged +bulger +bulgers +bulges +bulgier +bulgiest +bulging +bulgur +bulgurs +bulgy +bulimia +bulimiac +bulimias +bulimic +bulk +bulkage +bulkages +bulked +bulkhead +bulkheads +bulkier +bulkiest +bulkily +bulking +bulks +bulky +bull +bulla +bullace +bullaces +bullae +bullate +bullbat +bullbats +bulldog +bulldogged +bulldogging +bulldogs +bulldoze +bulldozed +bulldozer +bulldozers +bulldozes +bulldozing +bulled +bullet +bulleted +bulletin +bulletined +bulleting +bulletining +bulletins +bulletproof +bulletproofs +bullets +bullfight +bullfighter +bullfighters +bullfights +bullfinch +bullfinches +bullfrog +bullfrogs +bullhead +bullheaded +bullheads +bullhorn +bullhorns +bullied +bullier +bullies +bulliest +bulling +bullion +bullions +bullish +bullneck +bullnecks +bullnose +bullnoses +bullock +bullocks +bullocky +bullous +bullpen +bullpens +bullpout +bullpouts +bullring +bullrings +bullrush +bullrushes +bulls +bullweed +bullweeds +bullwhip +bullwhipped +bullwhipping +bullwhips +bully +bullyboy +bullyboys +bullying +bullyrag +bullyragged +bullyragging +bullyrags +bulrush +bulrushes +bulwark +bulwarked +bulwarking +bulwarks +bum +bumble +bumblebee +bumblebees +bumbled +bumbler +bumblers +bumbles +bumbling +bumblings +bumboat +bumboats +bumf +bumfs +bumkin +bumkins +bummed +bummer +bummers +bumming +bump +bumped +bumper +bumpered +bumpering +bumpers +bumpier +bumpiest +bumpily +bumping +bumpkin +bumpkins +bumps +bumpy +bums +bun +bunch +bunched +bunches +bunchier +bunchiest +bunchily +bunching +bunchy +bunco +buncoed +buncoing +buncombe +buncombes +buncos +bund +bundist +bundists +bundle +bundled +bundler +bundlers +bundles +bundling +bundlings +bunds +bung +bungalow +bungalows +bunged +bunghole +bungholes +bunging +bungle +bungled +bungler +bunglers +bungles +bungling +bunglings +bungs +bunion +bunions +bunk +bunked +bunker +bunkered +bunkering +bunkers +bunking +bunkmate +bunkmates +bunko +bunkoed +bunkoing +bunkos +bunks +bunkum +bunkums +bunky +bunn +bunnies +bunns +bunny +buns +bunt +bunted +bunter +bunters +bunting +buntings +buntline +buntlines +bunts +bunya +bunyas +buoy +buoyage +buoyages +buoyance +buoyances +buoyancies +buoyancy +buoyant +buoyed +buoying +buoys +buqsha +buqshas +bur +bura +buran +burans +buras +burble +burbled +burbler +burblers +burbles +burblier +burbliest +burbling +burbly +burbot +burbots +burd +burden +burdened +burdener +burdeners +burdening +burdens +burdensome +burdie +burdies +burdock +burdocks +burds +bureau +bureaucracies +bureaucracy +bureaucrat +bureaucratic +bureaucrats +bureaus +bureaux +buret +burets +burette +burettes +burg +burgage +burgages +burgee +burgees +burgeon +burgeoned +burgeoning +burgeons +burger +burgers +burgess +burgesses +burgh +burghal +burgher +burghers +burghs +burglar +burglaries +burglarize +burglarized +burglarizes +burglarizing +burglars +burglary +burgle +burgled +burgles +burgling +burgonet +burgonets +burgoo +burgoos +burgout +burgouts +burgrave +burgraves +burgs +burgundies +burgundy +burial +burials +buried +burier +buriers +buries +burin +burins +burke +burked +burker +burkers +burkes +burking +burkite +burkites +burl +burlap +burlaps +burled +burler +burlers +burlesk +burlesks +burlesque +burlesqued +burlesques +burlesquing +burley +burleys +burlier +burliest +burlily +burling +burls +burly +burn +burnable +burned +burner +burners +burnet +burnets +burnie +burnies +burning +burnings +burnish +burnished +burnishes +burnishing +burnoose +burnooses +burnous +burnouses +burnout +burnouts +burns +burnt +burp +burped +burping +burps +burr +burred +burrer +burrers +burrier +burriest +burring +burro +burros +burrow +burrowed +burrower +burrowers +burrowing +burrows +burrs +burry +burs +bursa +bursae +bursal +bursar +bursaries +bursars +bursary +bursas +bursate +burse +burseed +burseeds +burses +bursitis +bursitises +burst +bursted +burster +bursters +bursting +burstone +burstones +bursts +burthen +burthened +burthening +burthens +burton +burtons +burweed +burweeds +bury +burying +bus +busbies +busboy +busboys +busby +bused +buses +bush +bushbuck +bushbucks +bushed +bushel +busheled +busheler +bushelers +busheling +bushelled +bushelling +bushels +busher +bushers +bushes +bushfire +bushfires +bushgoat +bushgoats +bushido +bushidos +bushier +bushiest +bushily +bushing +bushings +bushland +bushlands +bushless +bushlike +bushman +bushmen +bushtit +bushtits +bushy +busied +busier +busies +busiest +busily +business +businesses +businessman +businessmen +businesswoman +businesswomen +busing +busings +busk +busked +busker +buskers +buskin +buskined +busking +buskins +busks +busman +busmen +buss +bussed +busses +bussing +bussings +bust +bustard +bustards +busted +buster +busters +bustic +bustics +bustier +bustiest +busting +bustle +bustled +bustles +bustling +busts +busty +busulfan +busulfans +busy +busybodies +busybody +busying +busyness +busynesses +busywork +busyworks +but +butane +butanes +butanol +butanols +butanone +butanones +butch +butcher +butchered +butcheries +butchering +butchers +butchery +butches +butene +butenes +buteo +buteos +butler +butleries +butlers +butlery +buts +butt +buttals +butte +butted +butter +buttercup +buttercups +buttered +butterfat +butterfats +butterflies +butterfly +butterier +butteries +butteriest +buttering +buttermilk +butternut +butternuts +butters +butterscotch +butterscotches +buttery +buttes +butties +butting +buttock +buttocks +button +buttoned +buttoner +buttoners +buttonhole +buttonholes +buttoning +buttons +buttony +buttress +buttressed +buttresses +buttressing +butts +butty +butut +bututs +butyl +butylate +butylated +butylates +butylating +butylene +butylenes +butyls +butyral +butyrals +butyrate +butyrates +butyric +butyrin +butyrins +butyrous +butyryl +butyryls +buxom +buxomer +buxomest +buxomly +buy +buyable +buyer +buyers +buying +buys +buzz +buzzard +buzzards +buzzed +buzzer +buzzers +buzzes +buzzing +buzzwig +buzzwigs +buzzword +buzzwords +buzzy +bwana +bwanas +by +bye +byelaw +byelaws +byes +bygone +bygones +bylaw +bylaws +byline +bylined +byliner +byliners +bylines +bylining +byname +bynames +bypass +bypassed +bypasses +bypassing +bypast +bypath +bypaths +byplay +byplays +byre +byres +byrl +byrled +byrling +byrls +byrnie +byrnies +byroad +byroads +bys +byssi +byssus +byssuses +bystander +bystanders +bystreet +bystreets +bytalk +bytalks +byte +bytes +byway +byways +byword +bywords +bywork +byworks +byzant +byzants +cab +cabal +cabala +cabalas +cabalism +cabalisms +cabalist +cabalists +caballed +caballing +cabals +cabana +cabanas +cabaret +cabarets +cabbage +cabbaged +cabbages +cabbaging +cabbala +cabbalah +cabbalahs +cabbalas +cabbie +cabbies +cabby +caber +cabers +cabestro +cabestros +cabezon +cabezone +cabezones +cabezons +cabildo +cabildos +cabin +cabined +cabinet +cabinetmaker +cabinetmakers +cabinetmaking +cabinetmakings +cabinets +cabinetwork +cabinetworks +cabining +cabins +cable +cabled +cablegram +cablegrams +cables +cablet +cablets +cableway +cableways +cabling +cabman +cabmen +cabob +cabobs +caboched +cabochon +cabochons +caboodle +caboodles +caboose +cabooses +caboshed +cabotage +cabotages +cabresta +cabrestas +cabresto +cabrestos +cabretta +cabrettas +cabrilla +cabrillas +cabriole +cabrioles +cabs +cabstand +cabstands +cacao +cacaos +cachalot +cachalots +cache +cached +cachepot +cachepots +caches +cachet +cachets +cachexia +cachexias +cachexic +cachexies +cachexy +caching +cachou +cachous +cachucha +cachuchas +cacique +caciques +cackle +cackled +cackler +cacklers +cackles +cackling +cacodyl +cacodyls +cacomixl +cacomixls +cacophonies +cacophonous +cacophony +cacti +cactoid +cactus +cactuses +cad +cadaster +cadasters +cadastre +cadastres +cadaver +cadavers +caddice +caddices +caddie +caddied +caddies +caddis +caddises +caddish +caddishly +caddishness +caddishnesses +caddy +caddying +cade +cadelle +cadelles +cadence +cadenced +cadences +cadencies +cadencing +cadency +cadent +cadenza +cadenzas +cades +cadet +cadets +cadge +cadged +cadger +cadgers +cadges +cadging +cadgy +cadi +cadis +cadmic +cadmium +cadmiums +cadre +cadres +cads +caducean +caducei +caduceus +caducities +caducity +caducous +caeca +caecal +caecally +caecum +caeoma +caeomas +caesium +caesiums +caestus +caestuses +caesura +caesurae +caesural +caesuras +caesuric +cafe +cafes +cafeteria +cafeterias +caffein +caffeine +caffeines +caffeins +caftan +caftans +cage +caged +cageling +cagelings +cager +cages +cagey +cagier +cagiest +cagily +caginess +caginesses +caging +cagy +cahier +cahiers +cahoot +cahoots +cahow +cahows +caid +caids +caiman +caimans +cain +cains +caique +caiques +caird +cairds +cairn +cairned +cairns +cairny +caisson +caissons +caitiff +caitiffs +cajaput +cajaputs +cajeput +cajeputs +cajole +cajoled +cajoler +cajoleries +cajolers +cajolery +cajoles +cajoling +cajon +cajones +cajuput +cajuputs +cake +caked +cakes +cakewalk +cakewalked +cakewalking +cakewalks +caking +calabash +calabashes +caladium +caladiums +calamar +calamaries +calamars +calamary +calami +calamine +calamined +calamines +calamining +calamint +calamints +calamite +calamites +calamities +calamitous +calamitously +calamitousness +calamitousnesses +calamity +calamus +calando +calash +calashes +calathi +calathos +calathus +calcanea +calcanei +calcar +calcaria +calcars +calceate +calces +calcic +calcific +calcification +calcifications +calcified +calcifies +calcify +calcifying +calcine +calcined +calcines +calcining +calcite +calcites +calcitic +calcium +calciums +calcspar +calcspars +calctufa +calctufas +calctuff +calctuffs +calculable +calculably +calculate +calculated +calculates +calculating +calculation +calculations +calculator +calculators +calculi +calculus +calculuses +caldera +calderas +caldron +caldrons +caleche +caleches +calendal +calendar +calendared +calendaring +calendars +calender +calendered +calendering +calenders +calends +calesa +calesas +calf +calflike +calfs +calfskin +calfskins +caliber +calibers +calibrate +calibrated +calibrates +calibrating +calibration +calibrations +calibrator +calibrators +calibre +calibred +calibres +calices +caliche +caliches +calicle +calicles +calico +calicoes +calicos +calif +califate +califates +california +califs +calipash +calipashes +calipee +calipees +caliper +calipered +calipering +calipers +caliph +caliphal +caliphate +caliphates +caliphs +calisaya +calisayas +calisthenic +calisthenics +calix +calk +calked +calker +calkers +calkin +calking +calkins +calks +call +calla +callable +callan +callans +callant +callants +callas +callback +callbacks +callboy +callboys +called +caller +callers +callet +callets +calli +calling +callings +calliope +calliopes +callipee +callipees +calliper +callipered +callipering +callipers +callose +calloses +callosities +callosity +callous +calloused +callouses +callousing +callously +callousness +callousnesses +callow +callower +callowest +callowness +callownesses +calls +callus +callused +calluses +callusing +calm +calmed +calmer +calmest +calming +calmly +calmness +calmnesses +calms +calomel +calomels +caloric +calorics +calorie +calories +calory +calotte +calottes +caloyer +caloyers +calpac +calpack +calpacks +calpacs +calque +calqued +calques +calquing +calthrop +calthrops +caltrap +caltraps +caltrop +caltrops +calumet +calumets +calumniate +calumniated +calumniates +calumniating +calumniation +calumniations +calumnies +calumnious +calumny +calutron +calutrons +calvados +calvadoses +calvaria +calvarias +calvaries +calvary +calve +calved +calves +calving +calx +calxes +calycate +calyceal +calyces +calycine +calycle +calycles +calyculi +calypso +calypsoes +calypsos +calypter +calypters +calyptra +calyptras +calyx +calyxes +cam +camail +camailed +camails +camaraderie +camaraderies +camas +camases +camass +camasses +camber +cambered +cambering +cambers +cambia +cambial +cambism +cambisms +cambist +cambists +cambium +cambiums +cambogia +cambogias +cambric +cambrics +cambridge +came +camel +cameleer +cameleers +camelia +camelias +camellia +camellias +camels +cameo +cameoed +cameoing +cameos +camera +camerae +cameral +cameraman +cameramen +cameras +cames +camion +camions +camisa +camisade +camisades +camisado +camisadoes +camisados +camisas +camise +camises +camisia +camisias +camisole +camisoles +camlet +camlets +camomile +camomiles +camorra +camorras +camouflage +camouflaged +camouflages +camouflaging +camp +campagna +campagne +campaign +campaigned +campaigner +campaigners +campaigning +campaigns +campanile +campaniles +campanili +camped +camper +campers +campfire +campfires +campground +campgrounds +camphene +camphenes +camphine +camphines +camphol +camphols +camphor +camphors +campi +campier +campiest +campily +camping +campings +campion +campions +campo +campong +campongs +camporee +camporees +campos +camps +campsite +campsites +campus +campuses +campy +cams +camshaft +camshafts +can +canaille +canailles +canakin +canakins +canal +canaled +canaling +canalise +canalised +canalises +canalising +canalize +canalized +canalizes +canalizing +canalled +canaller +canallers +canalling +canals +canape +canapes +canard +canards +canaries +canary +canasta +canastas +cancan +cancans +cancel +canceled +canceler +cancelers +canceling +cancellation +cancellations +cancelled +cancelling +cancels +cancer +cancerlog +cancerous +cancerously +cancers +cancha +canchas +cancroid +cancroids +candela +candelabra +candelabras +candelabrum +candelas +candent +candid +candida +candidacies +candidacy +candidas +candidate +candidates +candider +candidest +candidly +candidness +candidnesses +candids +candied +candies +candle +candled +candlelight +candlelights +candler +candlers +candles +candlestick +candlesticks +candling +candor +candors +candour +candours +candy +candying +cane +caned +canella +canellas +caner +caners +canes +caneware +canewares +canfield +canfields +canful +canfuls +cangue +cangues +canikin +canikins +canine +canines +caning +caninities +caninity +canister +canisters +canities +canker +cankered +cankering +cankerous +cankers +canna +cannabic +cannabin +cannabins +cannabis +cannabises +cannas +canned +cannel +cannelon +cannelons +cannels +canner +canneries +canners +cannery +cannibal +cannibalism +cannibalisms +cannibalistic +cannibalize +cannibalized +cannibalizes +cannibalizing +cannibals +cannie +cannier +canniest +cannikin +cannikins +cannily +canniness +canninesses +canning +cannings +cannon +cannonade +cannonaded +cannonades +cannonading +cannonball +cannonballs +cannoned +cannoneer +cannoneers +cannoning +cannonries +cannonry +cannons +cannot +cannula +cannulae +cannular +cannulas +canny +canoe +canoed +canoeing +canoeist +canoeists +canoes +canon +canoness +canonesses +canonic +canonical +canonically +canonise +canonised +canonises +canonising +canonist +canonists +canonization +canonizations +canonize +canonized +canonizes +canonizing +canonries +canonry +canons +canopied +canopies +canopy +canopying +canorous +cans +cansful +canso +cansos +canst +cant +cantala +cantalas +cantaloupe +cantaloupes +cantankerous +cantankerously +cantankerousness +cantankerousnesses +cantata +cantatas +cantdog +cantdogs +canted +canteen +canteens +canter +cantered +cantering +canters +canthal +canthi +canthus +cantic +canticle +canticles +cantilever +cantilevers +cantina +cantinas +canting +cantle +cantles +canto +canton +cantonal +cantoned +cantoning +cantons +cantor +cantors +cantos +cantraip +cantraips +cantrap +cantraps +cantrip +cantrips +cants +cantus +canty +canula +canulae +canulas +canulate +canulated +canulates +canulating +canvas +canvased +canvaser +canvasers +canvases +canvasing +canvass +canvassed +canvasser +canvassers +canvasses +canvassing +canyon +canyons +canzona +canzonas +canzone +canzones +canzonet +canzonets +canzoni +cap +capabilities +capability +capable +capabler +capablest +capably +capacious +capacitance +capacitances +capacities +capacitor +capacitors +capacity +cape +caped +capelan +capelans +capelet +capelets +capelin +capelins +caper +capered +caperer +caperers +capering +capers +capes +capeskin +capeskins +capework +capeworks +capful +capfuls +caph +caphs +capias +capiases +capillaries +capillary +capita +capital +capitalism +capitalist +capitalistic +capitalistically +capitalists +capitalization +capitalizations +capitalize +capitalized +capitalizes +capitalizing +capitals +capitate +capitol +capitols +capitula +capitulate +capitulated +capitulates +capitulating +capitulation +capitulations +capless +caplin +caplins +capmaker +capmakers +capo +capon +caponier +caponiers +caponize +caponized +caponizes +caponizing +capons +caporal +caporals +capos +capote +capotes +capouch +capouches +capped +capper +cappers +capping +cappings +capric +capricci +caprice +caprices +capricious +caprifig +caprifigs +caprine +capriole +caprioled +caprioles +caprioling +caps +capsicin +capsicins +capsicum +capsicums +capsid +capsidal +capsids +capsize +capsized +capsizes +capsizing +capstan +capstans +capstone +capstones +capsular +capsulate +capsulated +capsule +capsuled +capsules +capsuling +captain +captaincies +captaincy +captained +captaining +captains +captainship +captainships +captan +captans +caption +captioned +captioning +captions +captious +captiously +captivate +captivated +captivates +captivating +captivation +captivations +captivator +captivators +captive +captives +captivities +captivity +captor +captors +capture +captured +capturer +capturers +captures +capturing +capuche +capuched +capuches +capuchin +capuchins +caput +capybara +capybaras +car +carabao +carabaos +carabid +carabids +carabin +carabine +carabines +carabins +caracal +caracals +caracara +caracaras +carack +caracks +caracol +caracole +caracoled +caracoles +caracoling +caracolled +caracolling +caracols +caracul +caraculs +carafe +carafes +caragana +caraganas +carageen +carageens +caramel +caramels +carangid +carangids +carapace +carapaces +carapax +carapaxes +carassow +carassows +carat +carate +carates +carats +caravan +caravaned +caravaning +caravanned +caravanning +caravans +caravel +caravels +caraway +caraways +carbamic +carbamyl +carbamyls +carbarn +carbarns +carbaryl +carbaryls +carbide +carbides +carbine +carbines +carbinol +carbinols +carbohydrate +carbohydrates +carbon +carbonate +carbonated +carbonates +carbonating +carbonation +carbonations +carbonic +carbons +carbonyl +carbonyls +carbora +carboras +carboxyl +carboxyls +carboy +carboyed +carboys +carbuncle +carbuncles +carburet +carbureted +carbureting +carburetor +carburetors +carburets +carburetted +carburetting +carcajou +carcajous +carcanet +carcanets +carcase +carcases +carcass +carcasses +carcel +carcels +carcinogen +carcinogenic +carcinogenics +carcinogens +carcinoma +carcinomas +carcinomata +carcinomatous +card +cardamom +cardamoms +cardamon +cardamons +cardamum +cardamums +cardboard +cardboards +cardcase +cardcases +carded +carder +carders +cardia +cardiac +cardiacs +cardiae +cardias +cardigan +cardigans +cardinal +cardinals +carding +cardings +cardiogram +cardiograms +cardiograph +cardiographic +cardiographies +cardiographs +cardiography +cardioid +cardioids +cardiologies +cardiologist +cardiologists +cardiology +cardiotoxicities +cardiotoxicity +cardiovascular +carditic +carditis +carditises +cardoon +cardoons +cards +care +cared +careen +careened +careener +careeners +careening +careens +career +careered +careerer +careerers +careering +careers +carefree +careful +carefuller +carefullest +carefully +carefulness +carefulnesses +careless +carelessly +carelessness +carelessnesses +carer +carers +cares +caress +caressed +caresser +caressers +caresses +caressing +caret +caretaker +caretakers +carets +careworn +carex +carfare +carfares +carful +carfuls +cargo +cargoes +cargos +carhop +carhops +caribe +caribes +caribou +caribous +caricature +caricatured +caricatures +caricaturing +caricaturist +caricaturists +carices +caried +caries +carillon +carillonned +carillonning +carillons +carina +carinae +carinal +carinas +carinate +caring +carioca +cariocas +cariole +carioles +carious +cark +carked +carking +carks +carl +carle +carles +carless +carlin +carline +carlines +carling +carlings +carlins +carlish +carload +carloads +carls +carmaker +carmakers +carman +carmen +carmine +carmines +carn +carnage +carnages +carnal +carnalities +carnality +carnally +carnation +carnations +carnauba +carnaubas +carney +carneys +carnie +carnies +carnified +carnifies +carnify +carnifying +carnival +carnivals +carnivore +carnivores +carnivorous +carnivorously +carnivorousness +carnivorousnesses +carns +carny +caroach +caroaches +carob +carobs +caroch +caroche +caroches +carol +caroled +caroler +carolers +caroli +caroling +carolled +caroller +carollers +carolling +carols +carolus +caroluses +carom +caromed +caroming +caroms +carotene +carotenes +carotid +carotids +carotin +carotins +carousal +carousals +carouse +caroused +carousel +carousels +carouser +carousers +carouses +carousing +carp +carpal +carpale +carpalia +carpals +carped +carpel +carpels +carpenter +carpentered +carpentering +carpenters +carpentries +carpentry +carper +carpers +carpet +carpeted +carpeting +carpets +carpi +carping +carpings +carport +carports +carps +carpus +carrack +carracks +carrel +carrell +carrells +carrels +carriage +carriages +carried +carrier +carriers +carries +carriole +carrioles +carrion +carrions +carritch +carritches +carroch +carroches +carrom +carromed +carroming +carroms +carrot +carrotier +carrotiest +carrotin +carrotins +carrots +carroty +carrousel +carrousels +carry +carryall +carryalls +carrying +carryon +carryons +carryout +carryouts +cars +carse +carses +carsick +cart +cartable +cartage +cartages +carte +carted +cartel +cartels +carter +carters +cartes +cartilage +cartilages +cartilaginous +carting +cartload +cartloads +cartographer +cartographers +cartographies +cartography +carton +cartoned +cartoning +cartons +cartoon +cartooned +cartooning +cartoonist +cartoonists +cartoons +cartop +cartouch +cartouches +cartridge +cartridges +carts +caruncle +caruncles +carve +carved +carvel +carvels +carven +carver +carvers +carves +carving +carvings +caryatid +caryatides +caryatids +caryotin +caryotins +casa +casaba +casabas +casas +casava +casavas +cascabel +cascabels +cascable +cascables +cascade +cascaded +cascades +cascading +cascara +cascaras +case +casease +caseases +caseate +caseated +caseates +caseating +casebook +casebooks +cased +casefied +casefies +casefy +casefying +caseic +casein +caseins +casemate +casemates +casement +casements +caseose +caseoses +caseous +casern +caserne +casernes +caserns +cases +casette +casettes +casework +caseworks +caseworm +caseworms +cash +cashable +cashaw +cashaws +cashbook +cashbooks +cashbox +cashboxes +cashed +cashes +cashew +cashews +cashier +cashiered +cashiering +cashiers +cashing +cashless +cashmere +cashmeres +cashoo +cashoos +casimere +casimeres +casimire +casimires +casing +casings +casino +casinos +cask +casked +casket +casketed +casketing +caskets +casking +casks +casky +casque +casqued +casques +cassaba +cassabas +cassava +cassavas +casserole +casseroles +cassette +cassettes +cassia +cassias +cassino +cassinos +cassis +cassises +cassock +cassocks +cast +castanet +castanets +castaway +castaways +caste +casteism +casteisms +caster +casters +castes +castigate +castigated +castigates +castigating +castigation +castigations +castigator +castigators +casting +castings +castle +castled +castles +castling +castoff +castoffs +castor +castors +castrate +castrated +castrates +castrati +castrating +castration +castrations +castrato +casts +casual +casually +casualness +casualnesses +casuals +casualties +casualty +casuist +casuistries +casuistry +casuists +casus +cat +cataclysm +cataclysms +catacomb +catacombs +catacylsmic +catalase +catalases +catalo +cataloes +catalog +cataloged +cataloger +catalogers +cataloging +catalogs +cataloguer +cataloguers +catalos +catalpa +catalpas +catalyses +catalysis +catalyst +catalysts +catalytic +catalyze +catalyzed +catalyzes +catalyzing +catamaran +catamarans +catamite +catamites +catamount +catamounts +catapult +catapulted +catapulting +catapults +cataract +cataracts +catarrh +catarrhs +catastrophe +catastrophes +catastrophic +catastrophically +catbird +catbirds +catboat +catboats +catbrier +catbriers +catcall +catcalled +catcalling +catcalls +catch +catchall +catchalls +catcher +catchers +catches +catchflies +catchfly +catchier +catchiest +catching +catchup +catchups +catchword +catchwords +catchy +cate +catechin +catechins +catechism +catechisms +catechist +catechists +catechize +catechized +catechizes +catechizing +catechol +catechols +catechu +catechus +categorical +categorically +categories +categorization +categorizations +categorize +categorized +categorizes +categorizing +category +catena +catenae +catenaries +catenary +catenas +catenate +catenated +catenates +catenating +catenoid +catenoids +cater +cateran +caterans +catercorner +catered +caterer +caterers +cateress +cateresses +catering +caterpillar +caterpillars +caters +caterwaul +caterwauled +caterwauling +caterwauls +cates +catface +catfaces +catfall +catfalls +catfish +catfishes +catgut +catguts +catharses +catharsis +cathartic +cathead +catheads +cathect +cathected +cathecting +cathects +cathedra +cathedrae +cathedral +cathedrals +cathedras +catheter +catheterization +catheters +cathexes +cathexis +cathode +cathodes +cathodic +catholic +cathouse +cathouses +cation +cationic +cations +catkin +catkins +catlike +catlin +catling +catlings +catlins +catmint +catmints +catnap +catnaper +catnapers +catnapped +catnapping +catnaps +catnip +catnips +cats +catspaw +catspaws +catsup +catsups +cattail +cattails +cattalo +cattaloes +cattalos +catted +cattie +cattier +catties +cattiest +cattily +cattiness +cattinesses +catting +cattish +cattle +cattleman +cattlemen +cattleya +cattleyas +catty +catwalk +catwalks +caucus +caucused +caucuses +caucusing +caucussed +caucusses +caucussing +caudad +caudal +caudally +caudate +caudated +caudex +caudexes +caudices +caudillo +caudillos +caudle +caudles +caught +caul +cauld +cauldron +cauldrons +caulds +caules +caulicle +caulicles +cauliflower +cauliflowers +cauline +caulis +caulk +caulked +caulker +caulkers +caulking +caulkings +caulks +cauls +causable +causal +causaless +causality +causally +causals +causation +causations +causative +cause +caused +causer +causerie +causeries +causers +causes +causeway +causewayed +causewaying +causeways +causey +causeys +causing +caustic +caustics +cauteries +cauterization +cauterizations +cauterize +cauterized +cauterizes +cauterizing +cautery +caution +cautionary +cautioned +cautioning +cautions +cautious +cautiously +cautiousness +cautiousnesses +cavalcade +cavalcades +cavalero +cavaleros +cavalier +cavaliered +cavaliering +cavalierly +cavalierness +cavaliernesses +cavaliers +cavalla +cavallas +cavallies +cavally +cavalries +cavalry +cavalryman +cavalrymen +cavatina +cavatinas +cavatine +cave +caveat +caveator +caveators +caveats +caved +cavefish +cavefishes +cavelike +caveman +cavemen +caver +cavern +caverned +caverning +cavernous +cavernously +caverns +cavers +caves +cavetti +cavetto +cavettos +caviar +caviare +caviares +caviars +cavicorn +cavie +cavies +cavil +caviled +caviler +cavilers +caviling +cavilled +caviller +cavillers +cavilling +cavils +caving +cavitary +cavitate +cavitated +cavitates +cavitating +cavitied +cavities +cavity +cavort +cavorted +cavorter +cavorters +cavorting +cavorts +cavy +caw +cawed +cawing +caws +cay +cayenne +cayenned +cayennes +cayman +caymans +cays +cayuse +cayuses +cazique +caziques +cease +ceased +ceases +ceasing +cebid +cebids +ceboid +ceboids +ceca +cecal +cecally +cecum +cedar +cedarn +cedars +cede +ceded +ceder +ceders +cedes +cedi +cedilla +cedillas +ceding +cedis +cedula +cedulas +cee +cees +ceiba +ceibas +ceil +ceiled +ceiler +ceilers +ceiling +ceilings +ceils +ceinture +ceintures +celadon +celadons +celeb +celebrant +celebrants +celebrate +celebrated +celebrates +celebrating +celebration +celebrations +celebrator +celebrators +celebrities +celebrity +celebs +celeriac +celeriacs +celeries +celerities +celerity +celery +celesta +celestas +celeste +celestes +celestial +celiac +celibacies +celibacy +celibate +celibates +cell +cella +cellae +cellar +cellared +cellarer +cellarers +cellaret +cellarets +cellaring +cellars +celled +celli +celling +cellist +cellists +cello +cellophane +cellophanes +cellos +cells +cellular +cellule +cellules +cellulose +celluloses +celom +celomata +celoms +celt +celts +cembali +cembalo +cembalos +cement +cementa +cementation +cementations +cemented +cementer +cementers +cementing +cements +cementum +cemeteries +cemetery +cenacle +cenacles +cenobite +cenobites +cenotaph +cenotaphs +cenote +cenotes +cense +censed +censer +censers +censes +censing +censor +censored +censorial +censoring +censorious +censoriously +censoriousness +censoriousnesses +censors +censorship +censorships +censual +censure +censured +censurer +censurers +censures +censuring +census +censused +censuses +censusing +cent +cental +centals +centare +centares +centaur +centauries +centaurs +centaury +centavo +centavos +centennial +centennials +center +centered +centering +centerpiece +centerpieces +centers +centeses +centesis +centiare +centiares +centigrade +centile +centiles +centime +centimes +centimeter +centimeters +centimo +centimos +centipede +centipedes +centner +centners +cento +centones +centos +centra +central +centraler +centralest +centralization +centralizations +centralize +centralized +centralizer +centralizers +centralizes +centralizing +centrally +centrals +centre +centred +centres +centric +centrifugal +centrifugally +centrifuge +centrifuges +centring +centrings +centripetal +centripetally +centrism +centrisms +centrist +centrists +centroid +centroids +centrum +centrums +cents +centum +centums +centuple +centupled +centuples +centupling +centuries +centurion +centurions +century +ceorl +ceorlish +ceorls +cephalad +cephalic +cephalin +cephalins +ceramal +ceramals +ceramic +ceramics +ceramist +ceramists +cerastes +cerate +cerated +cerates +ceratin +ceratins +ceratoid +cercaria +cercariae +cercarias +cerci +cercis +cercises +cercus +cere +cereal +cereals +cerebella +cerebellar +cerebellum +cerebellums +cerebra +cerebral +cerebrals +cerebrate +cerebrated +cerebrates +cerebrating +cerebration +cerebrations +cerebric +cerebrospinal +cerebrum +cerebrums +cered +cerement +cerements +ceremonial +ceremonies +ceremonious +ceremony +ceres +cereus +cereuses +ceria +cerias +ceric +cering +ceriph +ceriphs +cerise +cerises +cerite +cerites +cerium +ceriums +cermet +cermets +cernuous +cero +ceros +cerotic +cerotype +cerotypes +cerous +certain +certainer +certainest +certainly +certainties +certainty +certes +certifiable +certifiably +certificate +certificates +certification +certifications +certified +certifier +certifiers +certifies +certify +certifying +certitude +certitudes +cerulean +ceruleans +cerumen +cerumens +ceruse +ceruses +cerusite +cerusites +cervelat +cervelats +cervical +cervices +cervine +cervix +cervixes +cesarean +cesareans +cesarian +cesarians +cesium +cesiums +cess +cessation +cessations +cessed +cesses +cessing +cession +cessions +cesspit +cesspits +cesspool +cesspools +cesta +cestas +cesti +cestode +cestodes +cestoi +cestoid +cestoids +cestos +cestus +cestuses +cesura +cesurae +cesuras +cetacean +cetaceans +cetane +cetanes +cete +cetes +cetologies +cetology +chabouk +chabouks +chabuk +chabuks +chacma +chacmas +chaconne +chaconnes +chad +chadarim +chadless +chads +chaeta +chaetae +chaetal +chafe +chafed +chafer +chafers +chafes +chaff +chaffed +chaffer +chaffered +chaffering +chaffers +chaffier +chaffiest +chaffing +chaffs +chaffy +chafing +chagrin +chagrined +chagrining +chagrinned +chagrinning +chagrins +chain +chaine +chained +chaines +chaining +chainman +chainmen +chains +chair +chaired +chairing +chairman +chairmaned +chairmaning +chairmanned +chairmanning +chairmans +chairmanship +chairmanships +chairmen +chairs +chairwoman +chairwomen +chaise +chaises +chalah +chalahs +chalaza +chalazae +chalazal +chalazas +chalcid +chalcids +chaldron +chaldrons +chaleh +chalehs +chalet +chalets +chalice +chaliced +chalices +chalk +chalkboard +chalkboards +chalked +chalkier +chalkiest +chalking +chalks +chalky +challah +challahs +challenge +challenged +challenger +challengers +challenges +challenging +challie +challies +challis +challises +challot +challoth +chally +chalone +chalones +chalot +chaloth +chalutz +chalutzim +cham +chamade +chamades +chamber +chambered +chambering +chambermaid +chambermaids +chambers +chambray +chambrays +chameleon +chameleons +chamfer +chamfered +chamfering +chamfers +chamfron +chamfrons +chamise +chamises +chamiso +chamisos +chammied +chammies +chammy +chammying +chamois +chamoised +chamoises +chamoising +chamoix +champ +champac +champacs +champagne +champagnes +champak +champaks +champed +champer +champers +champing +champion +championed +championing +champions +championship +championships +champs +champy +chams +chance +chanced +chancel +chancelleries +chancellery +chancellor +chancellories +chancellors +chancellorship +chancellorships +chancellory +chancels +chanceries +chancery +chances +chancier +chanciest +chancily +chancing +chancre +chancres +chancy +chandelier +chandeliers +chandler +chandlers +chanfron +chanfrons +chang +change +changeable +changed +changeless +changer +changers +changes +changing +changs +channel +channeled +channeling +channelled +channelling +channels +chanson +chansons +chant +chantage +chantages +chanted +chanter +chanters +chantey +chanteys +chanties +chanting +chantor +chantors +chantries +chantry +chants +chanty +chaos +chaoses +chaotic +chaotically +chap +chapbook +chapbooks +chape +chapeau +chapeaus +chapeaux +chapel +chapels +chaperon +chaperonage +chaperonages +chaperone +chaperoned +chaperones +chaperoning +chaperons +chapes +chapiter +chapiters +chaplain +chaplaincies +chaplaincy +chaplains +chaplet +chaplets +chapman +chapmen +chapped +chapping +chaps +chapt +chapter +chaptered +chaptering +chapters +chaqueta +chaquetas +char +characid +characids +characin +characins +character +characteristic +characteristically +characteristics +characterization +characterizations +characterize +characterized +characterizes +characterizing +characters +charade +charades +charas +charases +charcoal +charcoaled +charcoaling +charcoals +chard +chards +chare +chared +chares +charge +chargeable +charged +charger +chargers +charges +charging +charier +chariest +charily +charing +chariot +charioted +charioting +chariots +charism +charisma +charismata +charismatic +charisms +charities +charity +chark +charka +charkas +charked +charkha +charkhas +charking +charks +charladies +charlady +charlatan +charlatans +charleston +charlock +charlocks +charm +charmed +charmer +charmers +charming +charminger +charmingest +charmingly +charms +charnel +charnels +charpai +charpais +charpoy +charpoys +charqui +charquid +charquis +charr +charred +charrier +charriest +charring +charro +charros +charrs +charry +chars +chart +charted +charter +chartered +chartering +charters +charting +chartist +chartists +chartreuse +chartreuses +charts +charwoman +charwomen +chary +chase +chased +chaser +chasers +chases +chasing +chasings +chasm +chasmal +chasmed +chasmic +chasms +chasmy +chasse +chassed +chasseing +chasses +chasseur +chasseurs +chassis +chaste +chastely +chasten +chastened +chasteness +chastenesses +chastening +chastens +chaster +chastest +chastise +chastised +chastisement +chastisements +chastises +chastising +chastities +chastity +chasuble +chasubles +chat +chateau +chateaus +chateaux +chats +chatted +chattel +chattels +chatter +chatterbox +chatterboxes +chattered +chatterer +chatterers +chattering +chatters +chattery +chattier +chattiest +chattily +chatting +chatty +chaufer +chaufers +chauffer +chauffers +chauffeur +chauffeured +chauffeuring +chauffeurs +chaunt +chaunted +chaunter +chaunters +chaunting +chaunts +chausses +chauvinism +chauvinisms +chauvinist +chauvinistic +chauvinists +chaw +chawed +chawer +chawers +chawing +chaws +chayote +chayotes +chazan +chazanim +chazans +chazzen +chazzenim +chazzens +cheap +cheapen +cheapened +cheapening +cheapens +cheaper +cheapest +cheapie +cheapies +cheapish +cheaply +cheapness +cheapnesses +cheaps +cheapskate +cheapskates +cheat +cheated +cheater +cheaters +cheating +cheats +chebec +chebecs +chechako +chechakos +check +checked +checker +checkerboard +checkerboards +checkered +checkering +checkers +checking +checklist +checklists +checkmate +checkmated +checkmates +checkmating +checkoff +checkoffs +checkout +checkouts +checkpoint +checkpoints +checkrow +checkrowed +checkrowing +checkrows +checks +checkup +checkups +cheddar +cheddars +cheddite +cheddites +cheder +cheders +chedite +chedites +cheek +cheeked +cheekful +cheekfuls +cheekier +cheekiest +cheekily +cheeking +cheeks +cheeky +cheep +cheeped +cheeper +cheepers +cheeping +cheeps +cheer +cheered +cheerer +cheerers +cheerful +cheerfuller +cheerfullest +cheerfully +cheerfulness +cheerfulnesses +cheerier +cheeriest +cheerily +cheeriness +cheerinesses +cheering +cheerio +cheerios +cheerleader +cheerleaders +cheerless +cheerlessly +cheerlessness +cheerlessnesses +cheero +cheeros +cheers +cheery +cheese +cheesecloth +cheesecloths +cheesed +cheeses +cheesier +cheesiest +cheesily +cheesing +cheesy +cheetah +cheetahs +chef +chefdom +chefdoms +chefs +chegoe +chegoes +chela +chelae +chelas +chelate +chelated +chelates +chelating +chelator +chelators +cheloid +cheloids +chemic +chemical +chemically +chemicals +chemics +chemise +chemises +chemism +chemisms +chemist +chemistries +chemistry +chemists +chemotherapeutic +chemotherapeutical +chemotherapies +chemotherapy +chemurgies +chemurgy +chenille +chenilles +chenopod +chenopods +cheque +chequer +chequered +chequering +chequers +cheques +cherish +cherished +cherishes +cherishing +cheroot +cheroots +cherries +cherry +chert +chertier +chertiest +cherts +cherty +cherub +cherubic +cherubim +cherubs +chervil +chervils +chess +chessboard +chessboards +chesses +chessman +chessmen +chessplayer +chessplayers +chest +chested +chestful +chestfuls +chestier +chestiest +chestnut +chestnuts +chests +chesty +chetah +chetahs +cheth +cheths +chevalet +chevalets +cheveron +cheverons +chevied +chevies +cheviot +cheviots +chevron +chevrons +chevy +chevying +chew +chewable +chewed +chewer +chewers +chewier +chewiest +chewing +chewink +chewinks +chews +chewy +chez +chi +chia +chiao +chias +chiasm +chiasma +chiasmal +chiasmas +chiasmata +chiasmi +chiasmic +chiasms +chiasmus +chiastic +chiaus +chiauses +chibouk +chibouks +chic +chicane +chicaned +chicaner +chicaneries +chicaners +chicanery +chicanes +chicaning +chiccories +chiccory +chichi +chichis +chick +chickadee +chickadees +chicken +chickened +chickening +chickens +chickpea +chickpeas +chicks +chicle +chicles +chicly +chicness +chicnesses +chico +chicories +chicory +chicos +chics +chid +chidden +chide +chided +chider +chiders +chides +chiding +chief +chiefdom +chiefdoms +chiefer +chiefest +chiefly +chiefs +chieftain +chieftaincies +chieftaincy +chieftains +chiel +chield +chields +chiels +chiffon +chiffons +chigetai +chigetais +chigger +chiggers +chignon +chignons +chigoe +chigoes +chilblain +chilblains +child +childbearing +childbed +childbeds +childbirth +childbirths +childe +childes +childhood +childhoods +childing +childish +childishly +childishness +childishnesses +childless +childlessness +childlessnesses +childlier +childliest +childlike +childly +children +chile +chiles +chili +chiliad +chiliads +chiliasm +chiliasms +chiliast +chiliasts +chilies +chill +chilled +chiller +chillers +chillest +chilli +chillier +chillies +chilliest +chillily +chilliness +chillinesses +chilling +chills +chillum +chillums +chilly +chilopod +chilopods +chimaera +chimaeras +chimar +chimars +chimb +chimbley +chimbleys +chimblies +chimbly +chimbs +chime +chimed +chimer +chimera +chimeras +chimere +chimeres +chimeric +chimerical +chimers +chimes +chiming +chimla +chimlas +chimley +chimleys +chimney +chimneys +chimp +chimpanzee +chimpanzees +chimps +chin +china +chinas +chinbone +chinbones +chinch +chinches +chinchier +chinchiest +chinchilla +chinchillas +chinchy +chine +chined +chines +chining +chink +chinked +chinkier +chinkiest +chinking +chinks +chinky +chinless +chinned +chinning +chino +chinone +chinones +chinook +chinooks +chinos +chins +chints +chintses +chintz +chintzes +chintzier +chintziest +chintzy +chip +chipmuck +chipmucks +chipmunk +chipmunks +chipped +chipper +chippered +chippering +chippers +chippie +chippies +chipping +chippy +chips +chirk +chirked +chirker +chirkest +chirking +chirks +chirm +chirmed +chirming +chirms +chiro +chiropodies +chiropodist +chiropodists +chiropody +chiropractic +chiropractics +chiropractor +chiropractors +chiros +chirp +chirped +chirper +chirpers +chirpier +chirpiest +chirpily +chirping +chirps +chirpy +chirr +chirre +chirred +chirres +chirring +chirrs +chirrup +chirruped +chirruping +chirrups +chirrupy +chis +chisel +chiseled +chiseler +chiselers +chiseling +chiselled +chiselling +chisels +chit +chital +chitchat +chitchats +chitchatted +chitchatting +chitin +chitins +chitlin +chitling +chitlings +chitlins +chiton +chitons +chits +chitter +chittered +chittering +chitters +chitties +chitty +chivalric +chivalries +chivalrous +chivalrously +chivalrousness +chivalrousnesses +chivalry +chivaree +chivareed +chivareeing +chivarees +chivari +chivaried +chivariing +chivaris +chive +chives +chivied +chivies +chivvied +chivvies +chivvy +chivvying +chivy +chivying +chlamydes +chlamys +chlamyses +chloral +chlorals +chlorambucil +chlorate +chlorates +chlordan +chlordans +chloric +chlorid +chloride +chlorides +chlorids +chlorin +chlorinate +chlorinated +chlorinates +chlorinating +chlorination +chlorinations +chlorinator +chlorinators +chlorine +chlorines +chlorins +chlorite +chlorites +chloroform +chloroformed +chloroforming +chloroforms +chlorophyll +chlorophylls +chlorous +chock +chocked +chockfull +chocking +chocks +chocolate +chocolates +choice +choicely +choicer +choices +choicest +choir +choirboy +choirboys +choired +choiring +choirmaster +choirmasters +choirs +choke +choked +choker +chokers +chokes +chokey +chokier +chokiest +choking +choky +cholate +cholates +choler +cholera +choleras +choleric +cholers +cholesterol +cholesterols +choline +cholines +cholla +chollas +chomp +chomped +chomping +chomps +chon +choose +chooser +choosers +chooses +choosey +choosier +choosiest +choosing +choosy +chop +chopin +chopine +chopines +chopins +chopped +chopper +choppers +choppier +choppiest +choppily +choppiness +choppinesses +chopping +choppy +chops +chopsticks +choragi +choragic +choragus +choraguses +choral +chorale +chorales +chorally +chorals +chord +chordal +chordate +chordates +chorded +chording +chords +chore +chorea +choreal +choreas +chored +choregi +choregus +choreguses +choreic +choreman +choremen +choreograph +choreographed +choreographer +choreographers +choreographic +choreographies +choreographing +choreographs +choreography +choreoid +chores +chorial +choriamb +choriambs +choric +chorine +chorines +choring +chorioid +chorioids +chorion +chorions +chorister +choristers +chorizo +chorizos +choroid +choroids +chortle +chortled +chortler +chortlers +chortles +chortling +chorus +chorused +choruses +chorusing +chorussed +chorusses +chorussing +chose +chosen +choses +chott +chotts +chough +choughs +chouse +choused +chouser +chousers +chouses +choush +choushes +chousing +chow +chowchow +chowchows +chowder +chowdered +chowdering +chowders +chowed +chowing +chows +chowse +chowsed +chowses +chowsing +chowtime +chowtimes +chresard +chresards +chrism +chrisma +chrismal +chrismon +chrismons +chrisms +chrisom +chrisoms +christen +christened +christening +christenings +christens +christie +christies +christy +chroma +chromas +chromate +chromates +chromatic +chrome +chromed +chromes +chromic +chromide +chromides +chroming +chromite +chromites +chromium +chromiums +chromize +chromized +chromizes +chromizing +chromo +chromos +chromosomal +chromosome +chromosomes +chromous +chromyl +chronaxies +chronaxy +chronic +chronicle +chronicled +chronicler +chroniclers +chronicles +chronicling +chronics +chronologic +chronological +chronologically +chronologies +chronology +chronometer +chronometers +chronon +chronons +chrysalides +chrysalis +chrysalises +chrysanthemum +chrysanthemums +chthonic +chub +chubasco +chubascos +chubbier +chubbiest +chubbily +chubbiness +chubbinesses +chubby +chubs +chuck +chucked +chuckies +chucking +chuckle +chuckled +chuckler +chucklers +chuckles +chuckling +chucks +chucky +chuddah +chuddahs +chuddar +chuddars +chudder +chudders +chufa +chufas +chuff +chuffed +chuffer +chuffest +chuffier +chuffiest +chuffing +chuffs +chuffy +chug +chugged +chugger +chuggers +chugging +chugs +chukar +chukars +chukka +chukkar +chukkars +chukkas +chukker +chukkers +chum +chummed +chummier +chummiest +chummily +chumming +chummy +chump +chumped +chumping +chumps +chums +chumship +chumships +chunk +chunked +chunkier +chunkiest +chunkily +chunking +chunks +chunky +chunter +chuntered +chuntering +chunters +church +churched +churches +churchgoer +churchgoers +churchgoing +churchgoings +churchier +churchiest +churching +churchlier +churchliest +churchly +churchy +churchyard +churchyards +churl +churlish +churls +churn +churned +churner +churners +churning +churnings +churns +churr +churred +churring +churrs +chute +chuted +chutes +chuting +chutist +chutists +chutnee +chutnees +chutney +chutneys +chutzpa +chutzpah +chutzpahs +chutzpas +chyle +chyles +chylous +chyme +chymes +chymic +chymics +chymist +chymists +chymosin +chymosins +chymous +ciao +cibol +cibols +ciboria +ciborium +ciboule +ciboules +cicada +cicadae +cicadas +cicala +cicalas +cicale +cicatrices +cicatrix +cicelies +cicely +cicero +cicerone +cicerones +ciceroni +ciceros +cichlid +cichlidae +cichlids +cicisbei +cicisbeo +cicoree +cicorees +cider +ciders +cigar +cigaret +cigarets +cigarette +cigarettes +cigars +cilantro +cilantros +cilia +ciliary +ciliate +ciliated +ciliates +cilice +cilices +cilium +cimex +cimices +cinch +cinched +cinches +cinching +cinchona +cinchonas +cincture +cinctured +cinctures +cincturing +cinder +cindered +cindering +cinders +cindery +cine +cineast +cineaste +cineastes +cineasts +cinema +cinemas +cinematic +cineol +cineole +cineoles +cineols +cinerary +cinerin +cinerins +cines +cingula +cingulum +cinnabar +cinnabars +cinnamic +cinnamon +cinnamons +cinnamyl +cinnamyls +cinquain +cinquains +cinque +cinques +cion +cions +cipher +ciphered +ciphering +ciphers +ciphonies +ciphony +cipolin +cipolins +circa +circle +circled +circler +circlers +circles +circlet +circlets +circling +circuit +circuited +circuities +circuiting +circuitous +circuitries +circuitry +circuits +circuity +circular +circularities +circularity +circularly +circulars +circulate +circulated +circulates +circulating +circulation +circulations +circulatory +circumcise +circumcised +circumcises +circumcising +circumcision +circumcisions +circumference +circumferences +circumflex +circumflexes +circumlocution +circumlocutions +circumnavigate +circumnavigated +circumnavigates +circumnavigating +circumnavigation +circumnavigations +circumscribe +circumscribed +circumscribes +circumscribing +circumspect +circumspection +circumspections +circumstance +circumstances +circumstantial +circumvent +circumvented +circumventing +circumvents +circus +circuses +circusy +cirque +cirques +cirrate +cirrhoses +cirrhosis +cirrhotic +cirri +cirriped +cirripeds +cirrose +cirrous +cirrus +cirsoid +cisco +ciscoes +ciscos +cislunar +cissoid +cissoids +cist +cistern +cisterna +cisternae +cisterns +cistron +cistrons +cists +citable +citadel +citadels +citation +citations +citatory +cite +citeable +cited +citer +citers +cites +cithara +citharas +cither +cithern +citherns +cithers +cithren +cithrens +citied +cities +citified +citifies +citify +citifying +citing +citizen +citizenries +citizenry +citizens +citizenship +citizenships +citola +citolas +citole +citoles +citral +citrals +citrate +citrated +citrates +citreous +citric +citrin +citrine +citrines +citrins +citron +citrons +citrous +citrus +citruses +cittern +citterns +city +cityfied +cityward +civet +civets +civic +civicism +civicisms +civics +civie +civies +civil +civilian +civilians +civilise +civilised +civilises +civilising +civilities +civility +civilization +civilizations +civilize +civilized +civilizes +civilizing +civilly +civism +civisms +civvies +civvy +clabber +clabbered +clabbering +clabbers +clach +clachan +clachans +clachs +clack +clacked +clacker +clackers +clacking +clacks +clad +cladding +claddings +cladode +cladodes +clads +clag +clagged +clagging +clags +claim +claimant +claimants +claimed +claimer +claimers +claiming +claims +clairvoyance +clairvoyances +clairvoyant +clairvoyants +clam +clamant +clambake +clambakes +clamber +clambered +clambering +clambers +clammed +clammier +clammiest +clammily +clamminess +clamminesses +clamming +clammy +clamor +clamored +clamorer +clamorers +clamoring +clamorous +clamors +clamour +clamoured +clamouring +clamours +clamp +clamped +clamper +clampers +clamping +clamps +clams +clamworm +clamworms +clan +clandestine +clang +clanged +clanging +clangor +clangored +clangoring +clangors +clangour +clangoured +clangouring +clangours +clangs +clank +clanked +clanking +clanks +clannish +clannishness +clannishnesses +clans +clansman +clansmen +clap +clapboard +clapboards +clapped +clapper +clappers +clapping +claps +clapt +claptrap +claptraps +claque +claquer +claquers +claques +claqueur +claqueurs +clarence +clarences +claret +clarets +claries +clarification +clarifications +clarified +clarifies +clarify +clarifying +clarinet +clarinetist +clarinetists +clarinets +clarinettist +clarinettists +clarion +clarioned +clarioning +clarions +clarities +clarity +clarkia +clarkias +claro +claroes +claros +clary +clash +clashed +clasher +clashers +clashes +clashing +clasp +clasped +clasper +claspers +clasping +clasps +claspt +class +classed +classer +classers +classes +classic +classical +classically +classicism +classicisms +classicist +classicists +classics +classier +classiest +classification +classifications +classified +classifies +classify +classifying +classily +classing +classis +classless +classmate +classmates +classroom +classrooms +classy +clast +clastic +clastics +clasts +clatter +clattered +clattering +clatters +clattery +claucht +claught +claughted +claughting +claughts +clausal +clause +clauses +claustrophobia +claustrophobias +clavate +clave +claver +clavered +clavering +clavers +clavichord +clavichords +clavicle +clavicles +clavier +claviers +claw +clawed +clawer +clawers +clawing +clawless +claws +claxon +claxons +clay +claybank +claybanks +clayed +clayey +clayier +clayiest +claying +clayish +claylike +claymore +claymores +claypan +claypans +clays +clayware +claywares +clean +cleaned +cleaner +cleaners +cleanest +cleaning +cleanlier +cleanliest +cleanliness +cleanlinesses +cleanly +cleanness +cleannesses +cleans +cleanse +cleansed +cleanser +cleansers +cleanses +cleansing +cleanup +cleanups +clear +clearance +clearances +cleared +clearer +clearers +clearest +clearing +clearings +clearly +clearness +clearnesses +clears +cleat +cleated +cleating +cleats +cleavage +cleavages +cleave +cleaved +cleaver +cleavers +cleaves +cleaving +cleek +cleeked +cleeking +cleeks +clef +clefs +cleft +clefts +clematis +clematises +clemencies +clemency +clement +clench +clenched +clenches +clenching +cleome +cleomes +clepe +cleped +clepes +cleping +clept +clergies +clergy +clergyman +clergymen +cleric +clerical +clericals +clerics +clerid +clerids +clerihew +clerihews +clerisies +clerisy +clerk +clerkdom +clerkdoms +clerked +clerking +clerkish +clerklier +clerkliest +clerkly +clerks +clerkship +clerkships +cleveite +cleveites +clever +cleverer +cleverest +cleverly +cleverness +clevernesses +clevis +clevises +clew +clewed +clewing +clews +cliche +cliched +cliches +click +clicked +clicker +clickers +clicking +clicks +client +cliental +clients +cliff +cliffier +cliffiest +cliffs +cliffy +clift +clifts +climactic +climatal +climate +climates +climatic +climax +climaxed +climaxes +climaxing +climb +climbed +climber +climbers +climbing +climbs +clime +climes +clinal +clinally +clinch +clinched +clincher +clinchers +clinches +clinching +cline +clines +cling +clinged +clinger +clingers +clingier +clingiest +clinging +clings +clingy +clinic +clinical +clinically +clinician +clinicians +clinics +clink +clinked +clinker +clinkered +clinkering +clinkers +clinking +clinks +clip +clipboard +clipboards +clipped +clipper +clippers +clipping +clippings +clips +clipt +clique +cliqued +cliqueier +cliqueiest +cliques +cliquey +cliquier +cliquiest +cliquing +cliquish +cliquy +clitella +clitoral +clitoric +clitoris +clitorises +clivers +cloaca +cloacae +cloacal +cloak +cloaked +cloaking +cloaks +clobber +clobbered +clobbering +clobbers +cloche +cloches +clock +clocked +clocker +clockers +clocking +clocks +clockwise +clockwork +clod +cloddier +cloddiest +cloddish +cloddy +clodpate +clodpates +clodpole +clodpoles +clodpoll +clodpolls +clods +clog +clogged +cloggier +cloggiest +clogging +cloggy +clogs +cloister +cloistered +cloistering +cloisters +clomb +clomp +clomped +clomping +clomps +clon +clonal +clonally +clone +cloned +clones +clonic +cloning +clonism +clonisms +clonk +clonked +clonking +clonks +clons +clonus +clonuses +cloot +cloots +clop +clopped +clopping +clops +closable +close +closed +closely +closeness +closenesses +closeout +closeouts +closer +closers +closes +closest +closet +closeted +closeting +closets +closing +closings +closure +closured +closures +closuring +clot +cloth +clothe +clothed +clothes +clothier +clothiers +clothing +clothings +cloths +clots +clotted +clotting +clotty +cloture +clotured +clotures +cloturing +cloud +cloudburst +cloudbursts +clouded +cloudier +cloudiest +cloudily +cloudiness +cloudinesses +clouding +cloudless +cloudlet +cloudlets +clouds +cloudy +clough +cloughs +clour +cloured +clouring +clours +clout +clouted +clouter +clouters +clouting +clouts +clove +cloven +clover +clovers +cloves +clowder +clowders +clown +clowned +clowneries +clownery +clowning +clownish +clownishly +clownishness +clownishnesses +clowns +cloy +cloyed +cloying +cloys +cloze +club +clubable +clubbed +clubber +clubbers +clubbier +clubbiest +clubbing +clubby +clubfeet +clubfoot +clubfooted +clubhand +clubhands +clubhaul +clubhauled +clubhauling +clubhauls +clubman +clubmen +clubroot +clubroots +clubs +cluck +clucked +clucking +clucks +clue +clued +clueing +clues +cluing +clumber +clumbers +clump +clumped +clumpier +clumpiest +clumping +clumpish +clumps +clumpy +clumsier +clumsiest +clumsily +clumsiness +clumsinesses +clumsy +clung +clunk +clunked +clunker +clunkers +clunking +clunks +clupeid +clupeids +clupeoid +clupeoids +cluster +clustered +clustering +clusters +clustery +clutch +clutched +clutches +clutching +clutchy +clutter +cluttered +cluttering +clutters +clypeal +clypeate +clypei +clypeus +clyster +clysters +coach +coached +coacher +coachers +coaches +coaching +coachman +coachmen +coact +coacted +coacting +coaction +coactions +coactive +coacts +coadmire +coadmired +coadmires +coadmiring +coadmit +coadmits +coadmitted +coadmitting +coaeval +coaevals +coagencies +coagency +coagent +coagents +coagula +coagulant +coagulants +coagulate +coagulated +coagulates +coagulating +coagulation +coagulations +coagulum +coagulums +coal +coala +coalas +coalbin +coalbins +coalbox +coalboxes +coaled +coaler +coalers +coalesce +coalesced +coalescent +coalesces +coalescing +coalfield +coalfields +coalfish +coalfishes +coalhole +coalholes +coalified +coalifies +coalify +coalifying +coaling +coalition +coalitions +coalless +coalpit +coalpits +coals +coalsack +coalsacks +coalshed +coalsheds +coalyard +coalyards +coaming +coamings +coannex +coannexed +coannexes +coannexing +coappear +coappeared +coappearing +coappears +coapt +coapted +coapting +coapts +coarse +coarsely +coarsen +coarsened +coarseness +coarsenesses +coarsening +coarsens +coarser +coarsest +coassist +coassisted +coassisting +coassists +coassume +coassumed +coassumes +coassuming +coast +coastal +coasted +coaster +coasters +coasting +coastings +coastline +coastlines +coasts +coat +coated +coatee +coatees +coater +coaters +coati +coating +coatings +coatis +coatless +coatrack +coatracks +coatroom +coatrooms +coats +coattail +coattails +coattend +coattended +coattending +coattends +coattest +coattested +coattesting +coattests +coauthor +coauthored +coauthoring +coauthors +coauthorship +coauthorships +coax +coaxal +coaxed +coaxer +coaxers +coaxes +coaxial +coaxing +cob +cobalt +cobaltic +cobalts +cobb +cobber +cobbers +cobbier +cobbiest +cobble +cobbled +cobbler +cobblers +cobbles +cobblestone +cobblestones +cobbling +cobbs +cobby +cobia +cobias +coble +cobles +cobnut +cobnuts +cobra +cobras +cobs +cobweb +cobwebbed +cobwebbier +cobwebbiest +cobwebbing +cobwebby +cobwebs +coca +cocain +cocaine +cocaines +cocains +cocaptain +cocaptains +cocas +coccal +cocci +coccic +coccid +coccidia +coccids +coccoid +coccoids +coccous +coccus +coccyges +coccyx +coccyxes +cochair +cochaired +cochairing +cochairman +cochairmen +cochairs +cochampion +cochampions +cochin +cochins +cochlea +cochleae +cochlear +cochleas +cocinera +cocineras +cock +cockade +cockaded +cockades +cockatoo +cockatoos +cockbill +cockbilled +cockbilling +cockbills +cockboat +cockboats +cockcrow +cockcrows +cocked +cocker +cockered +cockerel +cockerels +cockering +cockers +cockeye +cockeyed +cockeyes +cockfight +cockfights +cockier +cockiest +cockily +cockiness +cockinesses +cocking +cockish +cockle +cockled +cockles +cocklike +cockling +cockloft +cocklofts +cockney +cockneys +cockpit +cockpits +cockroach +cockroaches +cocks +cockshies +cockshut +cockshuts +cockshy +cockspur +cockspurs +cocksure +cocktail +cocktailed +cocktailing +cocktails +cockup +cockups +cocky +coco +cocoa +cocoanut +cocoanuts +cocoas +cocobola +cocobolas +cocobolo +cocobolos +cocomat +cocomats +cocomposer +cocomposers +coconspirator +coconspirators +coconut +coconuts +cocoon +cocooned +cocooning +cocoons +cocos +cocotte +cocottes +cocreate +cocreated +cocreates +cocreating +cocreator +cocreators +cod +coda +codable +codas +codder +codders +coddle +coddled +coddler +coddlers +coddles +coddling +code +codebtor +codebtors +coded +codefendant +codefendants +codeia +codeias +codein +codeina +codeinas +codeine +codeines +codeins +codeless +coden +codens +coder +coderive +coderived +coderives +coderiving +coders +codes +codesigner +codesigners +codevelop +codeveloped +codeveloper +codevelopers +codeveloping +codevelops +codex +codfish +codfishes +codger +codgers +codices +codicil +codicils +codification +codifications +codified +codifier +codifiers +codifies +codify +codifying +coding +codirector +codirectors +codiscoverer +codiscoverers +codlin +codling +codlings +codlins +codon +codons +codpiece +codpieces +cods +coed +coeditor +coeditors +coeds +coeducation +coeducational +coeducations +coeffect +coeffects +coefficient +coefficients +coeliac +coelom +coelomata +coelome +coelomes +coelomic +coeloms +coembodied +coembodies +coembody +coembodying +coemploy +coemployed +coemploying +coemploys +coempt +coempted +coempting +coempts +coenact +coenacted +coenacting +coenacts +coenamor +coenamored +coenamoring +coenamors +coendure +coendured +coendures +coenduring +coenure +coenures +coenuri +coenurus +coenzyme +coenzymes +coequal +coequals +coequate +coequated +coequates +coequating +coerce +coerced +coercer +coercers +coerces +coercing +coercion +coercions +coercive +coerect +coerected +coerecting +coerects +coeval +coevally +coevals +coexecutor +coexecutors +coexert +coexerted +coexerting +coexerts +coexist +coexisted +coexistence +coexistences +coexistent +coexisting +coexists +coextend +coextended +coextending +coextends +cofactor +cofactors +cofeature +cofeatures +coff +coffee +coffeehouse +coffeehouses +coffeepot +coffeepots +coffees +coffer +coffered +coffering +coffers +coffin +coffined +coffing +coffining +coffins +coffle +coffled +coffles +coffling +coffret +coffrets +coffs +cofinance +cofinanced +cofinances +cofinancing +cofounder +cofounders +coft +cog +cogencies +cogency +cogent +cogently +cogged +cogging +cogitate +cogitated +cogitates +cogitating +cogitation +cogitations +cogitative +cogito +cogitos +cognac +cognacs +cognate +cognates +cognise +cognised +cognises +cognising +cognition +cognitions +cognitive +cognizable +cognizance +cognizances +cognizant +cognize +cognized +cognizer +cognizers +cognizes +cognizing +cognomen +cognomens +cognomina +cognovit +cognovits +cogon +cogons +cogs +cogway +cogways +cogweel +cogweels +cohabit +cohabitation +cohabitations +cohabited +cohabiting +cohabits +coheir +coheiress +coheiresses +coheirs +cohere +cohered +coherence +coherences +coherent +coherently +coherer +coherers +coheres +cohering +cohesion +cohesions +cohesive +coho +cohobate +cohobated +cohobates +cohobating +cohog +cohogs +cohort +cohorts +cohos +cohosh +cohoshes +cohostess +cohostesses +cohune +cohunes +coif +coifed +coiffe +coiffed +coiffes +coiffeur +coiffeurs +coiffing +coiffure +coiffured +coiffures +coiffuring +coifing +coifs +coign +coigne +coigned +coignes +coigning +coigns +coil +coiled +coiler +coilers +coiling +coils +coin +coinable +coinage +coinages +coincide +coincided +coincidence +coincidences +coincident +coincidental +coincides +coinciding +coined +coiner +coiners +coinfer +coinferred +coinferring +coinfers +coinhere +coinhered +coinheres +coinhering +coining +coinmate +coinmates +coins +coinsure +coinsured +coinsures +coinsuring +cointer +cointerred +cointerring +cointers +coinventor +coinventors +coinvestigator +coinvestigators +coir +coirs +coistrel +coistrels +coistril +coistrils +coital +coitally +coition +coitions +coitus +coituses +coke +coked +cokes +coking +col +cola +colander +colanders +colas +cold +colder +coldest +coldish +coldly +coldness +coldnesses +colds +cole +coles +coleseed +coleseeds +coleslaw +coleslaws +colessee +colessees +colessor +colessors +coleus +coleuses +colewort +coleworts +colic +colicin +colicine +colicines +colicins +colicky +colics +colies +coliform +coliforms +colin +colinear +colins +coliseum +coliseums +colistin +colistins +colitic +colitis +colitises +collaborate +collaborated +collaborates +collaborating +collaboration +collaborations +collaborative +collaborator +collaborators +collage +collagen +collagens +collages +collapse +collapsed +collapses +collapsible +collapsing +collar +collarbone +collarbones +collard +collards +collared +collaret +collarets +collaring +collarless +collars +collate +collated +collateral +collaterals +collates +collating +collator +collators +colleague +colleagues +collect +collectable +collected +collectible +collecting +collection +collections +collectivism +collector +collectors +collects +colleen +colleens +college +colleger +collegers +colleges +collegia +collegian +collegians +collegiate +collet +colleted +colleting +collets +collide +collided +collides +colliding +collie +collied +collier +collieries +colliers +colliery +collies +collins +collinses +collision +collisions +collogue +collogued +collogues +colloguing +colloid +colloidal +colloids +collop +collops +colloquial +colloquialism +colloquialisms +colloquies +colloquy +collude +colluded +colluder +colluders +colludes +colluding +collusion +collusions +colluvia +colly +collying +collyria +colocate +colocated +colocates +colocating +colog +cologne +cologned +colognes +cologs +colon +colonel +colonels +colones +coloni +colonial +colonials +colonic +colonies +colonise +colonised +colonises +colonising +colonist +colonists +colonize +colonized +colonizes +colonizing +colonnade +colonnades +colons +colonus +colony +colophon +colophons +color +colorado +colorant +colorants +colored +coloreds +colorer +colorers +colorfast +colorful +coloring +colorings +colorism +colorisms +colorist +colorists +colorless +colors +colossal +colossi +colossus +colossuses +colotomies +colotomy +colour +coloured +colourer +colourers +colouring +colours +colpitis +colpitises +cols +colt +colter +colters +coltish +colts +colubrid +colubrids +colugo +colugos +columbic +columel +columels +column +columnal +columnar +columned +columnist +columnists +columns +colure +colures +coly +colza +colzas +coma +comae +comaker +comakers +comal +comanagement +comanagements +comanager +comanagers +comas +comate +comates +comatic +comatik +comatiks +comatose +comatula +comatulae +comb +combat +combatant +combatants +combated +combater +combaters +combating +combative +combats +combatted +combatting +combe +combed +comber +combers +combes +combination +combinations +combine +combined +combiner +combiners +combines +combing +combings +combining +comblike +combo +combos +combs +combust +combusted +combustibilities +combustibility +combustible +combusting +combustion +combustions +combustive +combusts +comby +come +comeback +comebacks +comedian +comedians +comedic +comedienne +comediennes +comedies +comedo +comedones +comedos +comedown +comedowns +comedy +comelier +comeliest +comelily +comely +comer +comers +comes +comet +cometary +cometh +comether +comethers +cometic +comets +comfier +comfiest +comfit +comfits +comfort +comfortable +comfortably +comforted +comforter +comforters +comforting +comfortless +comforts +comfrey +comfreys +comfy +comic +comical +comics +coming +comings +comitia +comitial +comities +comity +comma +command +commandant +commandants +commanded +commandeer +commandeered +commandeering +commandeers +commander +commanders +commanding +commandment +commandments +commando +commandoes +commandos +commands +commas +commata +commemorate +commemorated +commemorates +commemorating +commemoration +commemorations +commemorative +commence +commenced +commencement +commencements +commences +commencing +commend +commendable +commendation +commendations +commended +commending +commends +comment +commentaries +commentary +commentator +commentators +commented +commenting +comments +commerce +commerced +commerces +commercial +commercialize +commercialized +commercializes +commercializing +commercially +commercials +commercing +commie +commies +commiserate +commiserated +commiserates +commiserating +commiseration +commiserations +commissaries +commissary +commission +commissioned +commissioner +commissioners +commissioning +commissions +commit +commitment +commitments +commits +committal +committals +committed +committee +committees +committing +commix +commixed +commixes +commixing +commixt +commode +commodes +commodious +commodities +commodity +commodore +commodores +common +commoner +commoners +commonest +commonly +commonplace +commonplaces +commons +commonweal +commonweals +commonwealth +commonwealths +commotion +commotions +commove +commoved +commoves +commoving +communal +commune +communed +communes +communicable +communicate +communicated +communicates +communicating +communication +communications +communicative +communing +communion +communions +communique +communiques +communism +communist +communistic +communists +communities +community +commutation +commutations +commute +commuted +commuter +commuters +commutes +commuting +commy +comose +comous +comp +compact +compacted +compacter +compactest +compacting +compactly +compactness +compactnesses +compacts +compadre +compadres +companied +companies +companion +companions +companionship +companionships +company +companying +comparable +comparative +comparatively +compare +compared +comparer +comparers +compares +comparing +comparison +comparisons +compart +comparted +comparting +compartment +compartments +comparts +compass +compassed +compasses +compassing +compassion +compassionate +compassions +compatability +compatable +compatibilities +compatibility +compatible +compatriot +compatriots +comped +compeer +compeered +compeering +compeers +compel +compelled +compelling +compels +compend +compendia +compendium +compends +compensate +compensated +compensates +compensating +compensation +compensations +compensatory +compere +compered +comperes +compering +compete +competed +competence +competences +competencies +competency +competent +competently +competes +competing +competition +competitions +competitive +competitor +competitors +compilation +compilations +compile +compiled +compiler +compilers +compiles +compiling +comping +complacence +complacences +complacencies +complacency +complacent +complain +complainant +complainants +complained +complainer +complainers +complaining +complains +complaint +complaints +compleat +complect +complected +complecting +complects +complement +complementary +complemented +complementing +complements +complete +completed +completely +completeness +completenesses +completer +completes +completest +completing +completion +completions +complex +complexed +complexer +complexes +complexest +complexing +complexion +complexioned +complexions +complexity +compliance +compliances +compliant +complicate +complicated +complicates +complicating +complication +complications +complice +complices +complicities +complicity +complied +complier +compliers +complies +compliment +complimentary +compliments +complin +compline +complines +complins +complot +complots +complotted +complotting +comply +complying +compo +compone +component +components +compony +comport +comported +comporting +comportment +comportments +comports +compos +compose +composed +composer +composers +composes +composing +composite +composites +composition +compositions +compost +composted +composting +composts +composure +compote +compotes +compound +compounded +compounding +compounds +comprehend +comprehended +comprehending +comprehends +comprehensible +comprehension +comprehensions +comprehensive +comprehensiveness +comprehensivenesses +compress +compressed +compresses +compressing +compression +compressions +compressor +compressors +comprise +comprised +comprises +comprising +comprize +comprized +comprizes +comprizing +compromise +compromised +compromises +compromising +comps +compt +compted +compting +comptroller +comptrollers +compts +compulsion +compulsions +compulsive +compulsory +compunction +compunctions +computation +computations +compute +computed +computer +computerize +computerized +computerizes +computerizing +computers +computes +computing +comrade +comrades +comradeship +comradeships +comte +comtemplate +comtemplated +comtemplates +comtemplating +comtes +con +conation +conations +conative +conatus +concannon +concatenate +concatenated +concatenates +concatenating +concave +concaved +concaves +concaving +concavities +concavity +conceal +concealed +concealing +concealment +concealments +conceals +concede +conceded +conceder +conceders +concedes +conceding +conceit +conceited +conceiting +conceits +conceivable +conceivably +conceive +conceived +conceives +conceiving +concent +concentrate +concentrated +concentrates +concentrating +concentration +concentrations +concentric +concents +concept +conception +conceptions +concepts +conceptual +conceptualize +conceptualized +conceptualizes +conceptualizing +conceptually +concern +concerned +concerning +concerns +concert +concerted +concerti +concertina +concerting +concerto +concertos +concerts +concession +concessions +conch +concha +conchae +conchal +conches +conchies +conchoid +conchoids +conchs +conchy +conciliate +conciliated +conciliates +conciliating +conciliation +conciliations +conciliatory +concise +concisely +conciseness +concisenesses +conciser +concisest +conclave +conclaves +conclude +concluded +concludes +concluding +conclusion +conclusions +conclusive +conclusively +concoct +concocted +concocting +concoction +concoctions +concocts +concomitant +concomitantly +concomitants +concord +concordance +concordances +concordant +concords +concrete +concreted +concretes +concreting +concretion +concretions +concubine +concubines +concur +concurred +concurrence +concurrences +concurrent +concurrently +concurring +concurs +concuss +concussed +concusses +concussing +concussion +concussions +condemn +condemnation +condemnations +condemned +condemning +condemns +condensation +condensations +condense +condensed +condenses +condensing +condescend +condescended +condescending +condescends +condescension +condescensions +condign +condiment +condiments +condition +conditional +conditionally +conditioned +conditioner +conditioners +conditioning +conditions +condole +condoled +condolence +condolences +condoler +condolers +condoles +condoling +condom +condominium +condominiums +condoms +condone +condoned +condoner +condoners +condones +condoning +condor +condores +condors +conduce +conduced +conducer +conducers +conduces +conducing +conduct +conducted +conducting +conduction +conductions +conductive +conductor +conductors +conducts +conduit +conduits +condylar +condyle +condyles +cone +coned +conelrad +conelrads +conenose +conenoses +conepate +conepates +conepatl +conepatls +cones +coney +coneys +confab +confabbed +confabbing +confabs +confect +confected +confecting +confects +confederacies +confederacy +confer +conferee +conferees +conference +conferences +conferred +conferring +confers +conferva +confervae +confervas +confess +confessed +confesses +confessing +confession +confessional +confessionals +confessions +confessor +confessors +confetti +confetto +confidant +confidants +confide +confided +confidence +confidences +confident +confidential +confidentiality +confider +confiders +confides +confiding +configuration +configurations +configure +configured +configures +configuring +confine +confined +confinement +confinements +confiner +confiners +confines +confining +confirm +confirmation +confirmations +confirmed +confirming +confirms +confiscate +confiscated +confiscates +confiscating +confiscation +confiscations +conflagration +conflagrations +conflate +conflated +conflates +conflating +conflict +conflicted +conflicting +conflicts +conflux +confluxes +confocal +conform +conformed +conforming +conformities +conformity +conforms +confound +confounded +confounding +confounds +confrere +confreres +confront +confrontation +confrontations +confronted +confronting +confronts +confuse +confused +confuses +confusing +confusion +confusions +confute +confuted +confuter +confuters +confutes +confuting +conga +congaed +congaing +congas +conge +congeal +congealed +congealing +congeals +congee +congeed +congeeing +congees +congener +congeners +congenial +congenialities +congeniality +congenital +conger +congers +conges +congest +congested +congesting +congestion +congestions +congestive +congests +congii +congius +conglobe +conglobed +conglobes +conglobing +conglomerate +conglomerated +conglomerates +conglomerating +conglomeration +conglomerations +congo +congoes +congos +congou +congous +congratulate +congratulated +congratulates +congratulating +congratulation +congratulations +congratulatory +congregate +congregated +congregates +congregating +congregation +congregational +congregations +congresional +congress +congressed +congresses +congressing +congressman +congressmen +congresswoman +congresswomen +congruence +congruences +congruent +congruities +congruity +congruous +coni +conic +conical +conicities +conicity +conics +conidia +conidial +conidian +conidium +conies +conifer +coniferous +conifers +coniine +coniines +conin +conine +conines +coning +conins +conium +coniums +conjectural +conjecture +conjectured +conjectures +conjecturing +conjoin +conjoined +conjoining +conjoins +conjoint +conjugal +conjugate +conjugated +conjugates +conjugating +conjugation +conjugations +conjunct +conjunction +conjunctions +conjunctive +conjunctivitis +conjuncts +conjure +conjured +conjurer +conjurers +conjures +conjuring +conjuror +conjurors +conk +conked +conker +conkers +conking +conks +conky +conn +connate +connect +connected +connecting +connection +connections +connective +connector +connectors +connects +conned +conner +conners +conning +connivance +connivances +connive +connived +conniver +connivers +connives +conniving +connoisseur +connoisseurs +connotation +connotations +connote +connoted +connotes +connoting +conns +connubial +conodont +conodonts +conoid +conoidal +conoids +conquer +conquered +conquering +conqueror +conquerors +conquers +conquest +conquests +conquian +conquians +cons +conscience +consciences +conscientious +conscientiously +conscious +consciously +consciousness +consciousnesses +conscript +conscripted +conscripting +conscription +conscriptions +conscripts +consecrate +consecrated +consecrates +consecrating +consecration +consecrations +consecutive +consecutively +consensus +consensuses +consent +consented +consenting +consents +consequence +consequences +consequent +consequential +consequently +consequents +conservation +conservationist +conservationists +conservations +conservatism +conservatisms +conservative +conservatives +conservatories +conservatory +conserve +conserved +conserves +conserving +consider +considerable +considerably +considerate +considerately +considerateness +consideratenesses +consideration +considerations +considered +considering +considers +consign +consigned +consignee +consignees +consigning +consignment +consignments +consignor +consignors +consigns +consist +consisted +consistencies +consistency +consistent +consistently +consisting +consists +consol +consolation +console +consoled +consoler +consolers +consoles +consolidate +consolidated +consolidates +consolidating +consolidation +consolidations +consoling +consols +consomme +consommes +consonance +consonances +consonant +consonantal +consonants +consort +consorted +consorting +consortium +consortiums +consorts +conspicuous +conspicuously +conspiracies +conspiracy +conspirator +conspirators +conspire +conspired +conspires +conspiring +constable +constables +constabularies +constabulary +constancies +constancy +constant +constantly +constants +constellation +constellations +consternation +consternations +constipate +constipated +constipates +constipating +constipation +constipations +constituent +constituents +constitute +constituted +constitutes +constituting +constitution +constitutional +constitutionality +constrain +constrained +constraining +constrains +constraint +constraints +constriction +constrictions +constrictive +construct +constructed +constructing +construction +constructions +constructive +constructs +construe +construed +construes +construing +consul +consular +consulate +consulates +consuls +consult +consultant +consultants +consultation +consultations +consulted +consulting +consults +consumable +consume +consumed +consumer +consumers +consumes +consuming +consummate +consummated +consummates +consummating +consummation +consummations +consumption +consumptions +consumptive +contact +contacted +contacting +contacts +contagia +contagion +contagions +contagious +contain +contained +container +containers +containing +containment +containments +contains +contaminate +contaminated +contaminates +contaminating +contamination +contaminations +conte +contemn +contemned +contemning +contemns +contemplate +contemplated +contemplates +contemplating +contemplation +contemplations +contemplative +contemporaneous +contemporaries +contemporary +contempt +contemptible +contempts +contemptuous +contemptuously +contend +contended +contender +contenders +contending +contends +content +contented +contentedly +contentedness +contentednesses +contenting +contention +contentions +contentious +contentment +contentments +contents +contes +contest +contestable +contestably +contestant +contestants +contested +contesting +contests +context +contexts +contiguities +contiguity +contiguous +continence +continences +continent +continental +continents +contingencies +contingency +contingent +contingents +continua +continual +continually +continuance +continuances +continuation +continuations +continue +continued +continues +continuing +continuities +continuity +continuo +continuos +continuous +continuousities +continuousity +conto +contort +contorted +contorting +contortion +contortions +contorts +contos +contour +contoured +contouring +contours +contra +contraband +contrabands +contraception +contraceptions +contraceptive +contraceptives +contract +contracted +contracting +contraction +contractions +contractor +contractors +contracts +contractual +contradict +contradicted +contradicting +contradiction +contradictions +contradictory +contradicts +contrail +contrails +contraindicate +contraindicated +contraindicates +contraindicating +contraption +contraptions +contraries +contrarily +contrariwise +contrary +contrast +contrasted +contrasting +contrasts +contravene +contravened +contravenes +contravening +contribute +contributed +contributes +contributing +contribution +contributions +contributor +contributors +contributory +contrite +contrition +contritions +contrivance +contrivances +contrive +contrived +contriver +contrivers +contrives +contriving +control +controllable +controlled +controller +controllers +controlling +controls +controversial +controversies +controversy +controvert +controverted +controvertible +controverting +controverts +contumaceous +contumacies +contumacy +contumelies +contumely +contuse +contused +contuses +contusing +contusion +contusions +conundrum +conundrums +conus +convalesce +convalesced +convalescence +convalescences +convalescent +convalesces +convalescing +convect +convected +convecting +convection +convectional +convections +convective +convects +convene +convened +convener +conveners +convenes +convenience +conveniences +convenient +conveniently +convening +convent +convented +conventing +convention +conventional +conventionally +conventions +convents +converge +converged +convergence +convergences +convergencies +convergency +convergent +converges +converging +conversant +conversation +conversational +conversations +converse +conversed +conversely +converses +conversing +conversion +conversions +convert +converted +converter +converters +convertible +convertibles +converting +convertor +convertors +converts +convex +convexes +convexities +convexity +convexly +convey +conveyance +conveyances +conveyed +conveyer +conveyers +conveying +conveyor +conveyors +conveys +convict +convicted +convicting +conviction +convictions +convicts +convince +convinced +convinces +convincing +convivial +convivialities +conviviality +convocation +convocations +convoke +convoked +convoker +convokers +convokes +convoking +convoluted +convolution +convolutions +convolve +convolved +convolves +convolving +convoy +convoyed +convoying +convoys +convulse +convulsed +convulses +convulsing +convulsion +convulsions +convulsive +cony +coo +cooch +cooches +cooed +cooee +cooeed +cooeeing +cooees +cooer +cooers +cooey +cooeyed +cooeying +cooeys +coof +coofs +cooing +cooingly +cook +cookable +cookbook +cookbooks +cooked +cooker +cookeries +cookers +cookery +cookey +cookeys +cookie +cookies +cooking +cookings +cookless +cookout +cookouts +cooks +cookshop +cookshops +cookware +cookwares +cooky +cool +coolant +coolants +cooled +cooler +coolers +coolest +coolie +coolies +cooling +coolish +coolly +coolness +coolnesses +cools +cooly +coomb +coombe +coombes +coombs +coon +cooncan +cooncans +coons +coonskin +coonskins +coontie +coonties +coop +cooped +cooper +cooperate +cooperated +cooperates +cooperating +cooperation +cooperative +cooperatives +coopered +cooperies +coopering +coopers +coopery +cooping +coops +coopt +coopted +coopting +cooption +cooptions +coopts +coordinate +coordinated +coordinates +coordinating +coordination +coordinations +coordinator +coordinators +coos +coot +cootie +cooties +coots +cop +copaiba +copaibas +copal +copalm +copalms +copals +coparent +coparents +copartner +copartners +copartnership +copartnerships +copastor +copastors +copatron +copatrons +cope +copeck +copecks +coped +copemate +copemates +copen +copens +copepod +copepods +coper +copers +copes +copied +copier +copiers +copies +copihue +copihues +copilot +copilots +coping +copings +copious +copiously +copiousness +copiousnesses +coplanar +coplot +coplots +coplotted +coplotting +copped +copper +copperah +copperahs +copperas +copperases +coppered +copperhead +copperheads +coppering +coppers +coppery +coppice +coppiced +coppices +copping +coppra +coppras +copra +coprah +coprahs +copras +copremia +copremias +copremic +copresident +copresidents +coprincipal +coprincipals +coprisoner +coprisoners +coproduce +coproduced +coproducer +coproducers +coproduces +coproducing +coproduction +coproductions +copromote +copromoted +copromoter +copromoters +copromotes +copromoting +coproprietor +coproprietors +coproprietorship +coproprietorships +cops +copse +copses +copter +copters +copublish +copublished +copublisher +copublishers +copublishes +copublishing +copula +copulae +copular +copulas +copulate +copulated +copulates +copulating +copulation +copulations +copulative +copulatives +copy +copybook +copybooks +copyboy +copyboys +copycat +copycats +copycatted +copycatting +copydesk +copydesks +copyhold +copyholds +copying +copyist +copyists +copyright +copyrighted +copyrighting +copyrights +coquet +coquetries +coquetry +coquets +coquette +coquetted +coquettes +coquetting +coquille +coquilles +coquina +coquinas +coquito +coquitos +coracle +coracles +coracoid +coracoids +coral +corals +coranto +corantoes +corantos +corban +corbans +corbeil +corbeils +corbel +corbeled +corbeling +corbelled +corbelling +corbels +corbie +corbies +corbina +corbinas +corby +cord +cordage +cordages +cordate +corded +corder +corders +cordial +cordialities +cordiality +cordially +cordials +cording +cordite +cordites +cordless +cordlike +cordoba +cordobas +cordon +cordoned +cordoning +cordons +cordovan +cordovans +cords +corduroy +corduroyed +corduroying +corduroys +cordwain +cordwains +cordwood +cordwoods +cordy +core +corecipient +corecipients +cored +coredeem +coredeemed +coredeeming +coredeems +coreign +coreigns +corelate +corelated +corelates +corelating +coreless +coremia +coremium +corer +corers +cores +coresident +coresidents +corf +corgi +corgis +coria +coring +corium +cork +corkage +corkages +corked +corker +corkers +corkier +corkiest +corking +corklike +corks +corkscrew +corkscrews +corkwood +corkwoods +corky +corm +cormel +cormels +cormlike +cormoid +cormorant +cormorants +cormous +corms +corn +cornball +cornballs +corncake +corncakes +corncob +corncobs +corncrib +corncribs +cornea +corneal +corneas +corned +cornel +cornels +corneous +corner +cornered +cornering +corners +cornerstone +cornerstones +cornet +cornetcies +cornetcy +cornets +cornfed +cornhusk +cornhusks +cornice +corniced +cornices +corniche +corniches +cornicing +cornicle +cornicles +cornier +corniest +cornily +corning +cornmeal +cornmeals +corns +cornstalk +cornstalks +cornstarch +cornstarches +cornu +cornua +cornual +cornucopia +cornucopias +cornus +cornuses +cornute +cornuted +cornuto +cornutos +corny +corodies +corody +corolla +corollaries +corollary +corollas +corona +coronach +coronachs +coronae +coronal +coronals +coronaries +coronary +coronas +coronation +coronations +coronel +coronels +coroner +coroners +coronet +coronets +corotate +corotated +corotates +corotating +corpora +corporal +corporals +corporate +corporation +corporations +corporeal +corporeally +corps +corpse +corpses +corpsman +corpsmen +corpulence +corpulences +corpulencies +corpulency +corpulent +corpus +corpuscle +corpuscles +corrade +corraded +corrades +corrading +corral +corralled +corralling +corrals +correct +corrected +correcter +correctest +correcting +correction +corrections +corrective +correctly +correctness +correctnesses +corrects +correlate +correlated +correlates +correlating +correlation +correlations +correlative +correlatives +correspond +corresponded +correspondence +correspondences +correspondent +correspondents +corresponding +corresponds +corrida +corridas +corridor +corridors +corrie +corries +corrival +corrivals +corroborate +corroborated +corroborates +corroborating +corroboration +corroborations +corrode +corroded +corrodes +corrodies +corroding +corrody +corrosion +corrosions +corrosive +corrugate +corrugated +corrugates +corrugating +corrugation +corrugations +corrupt +corrupted +corrupter +corruptest +corruptible +corrupting +corruption +corruptions +corrupts +corsac +corsacs +corsage +corsages +corsair +corsairs +corse +corselet +corselets +corses +corset +corseted +corseting +corsets +corslet +corslets +cortege +corteges +cortex +cortexes +cortical +cortices +cortin +cortins +cortisol +cortisols +cortisone +cortisones +corundum +corundums +corvee +corvees +corves +corvet +corvets +corvette +corvettes +corvina +corvinas +corvine +corymb +corymbed +corymbs +coryphee +coryphees +coryza +coryzal +coryzas +cos +cosec +cosecant +cosecants +cosecs +coses +coset +cosets +cosey +coseys +cosh +coshed +cosher +coshered +coshering +coshers +coshes +coshing +cosie +cosier +cosies +cosiest +cosign +cosignatories +cosignatory +cosigned +cosigner +cosigners +cosigning +cosigns +cosily +cosine +cosines +cosiness +cosinesses +cosmetic +cosmetics +cosmic +cosmical +cosmism +cosmisms +cosmist +cosmists +cosmonaut +cosmonauts +cosmopolitan +cosmopolitans +cosmos +cosmoses +cosponsor +cosponsors +coss +cossack +cossacks +cosset +cosseted +cosseting +cossets +cost +costa +costae +costal +costar +costard +costards +costarred +costarring +costars +costate +costed +coster +costers +costing +costive +costless +costlier +costliest +costliness +costlinesses +costly +costmaries +costmary +costrel +costrels +costs +costume +costumed +costumer +costumers +costumes +costumey +costuming +cosy +cot +cotan +cotans +cote +coteau +coteaux +coted +cotenant +cotenants +coterie +coteries +cotes +cothurn +cothurni +cothurns +cotidal +cotillion +cotillions +cotillon +cotillons +coting +cotquean +cotqueans +cots +cotta +cottae +cottage +cottager +cottagers +cottages +cottagey +cottar +cottars +cottas +cotter +cotters +cottier +cottiers +cotton +cottoned +cottoning +cottonmouth +cottonmouths +cottons +cottonseed +cottonseeds +cottony +cotyloid +cotype +cotypes +couch +couchant +couched +coucher +couchers +couches +couching +couchings +coude +cougar +cougars +cough +coughed +cougher +coughers +coughing +coughs +could +couldest +couldst +coulee +coulees +coulisse +coulisses +couloir +couloirs +coulomb +coulombs +coulter +coulters +coumaric +coumarin +coumarins +coumarou +coumarous +council +councillor +councillors +councilman +councilmen +councilor +councilors +councils +councilwoman +counsel +counseled +counseling +counselled +counselling +counsellor +counsellors +counselor +counselors +counsels +count +countable +counted +countenance +countenanced +countenances +countenancing +counter +counteraccusation +counteraccusations +counteract +counteracted +counteracting +counteracts +counteraggression +counteraggressions +counterargue +counterargued +counterargues +counterarguing +counterassault +counterassaults +counterattack +counterattacked +counterattacking +counterattacks +counterbalance +counterbalanced +counterbalances +counterbalancing +counterbid +counterbids +counterblockade +counterblockades +counterblow +counterblows +countercampaign +countercampaigns +counterchallenge +counterchallenges +countercharge +countercharges +counterclaim +counterclaims +counterclockwise +countercomplaint +countercomplaints +countercoup +countercoups +countercriticism +countercriticisms +counterdemand +counterdemands +counterdemonstration +counterdemonstrations +counterdemonstrator +counterdemonstrators +countered +countereffect +countereffects +countereffort +counterefforts +counterembargo +counterembargos +counterevidence +counterevidences +counterfeit +counterfeited +counterfeiter +counterfeiters +counterfeiting +counterfeits +counterguerrila +counterinflationary +counterinfluence +counterinfluences +countering +counterintrigue +counterintrigues +countermand +countermanded +countermanding +countermands +countermeasure +countermeasures +countermove +countermovement +countermovements +countermoves +counteroffer +counteroffers +counterpart +counterparts +counterpetition +counterpetitions +counterploy +counterploys +counterpoint +counterpoints +counterpower +counterpowers +counterpressure +counterpressures +counterpropagation +counterpropagations +counterproposal +counterproposals +counterprotest +counterprotests +counterquestion +counterquestions +counterraid +counterraids +counterrallies +counterrally +counterrebuttal +counterrebuttals +counterreform +counterreforms +counterresponse +counterresponses +counterretaliation +counterretaliations +counterrevolution +counterrevolutions +counters +countersign +countersigns +counterstrategies +counterstrategy +counterstyle +counterstyles +countersue +countersued +countersues +countersuggestion +countersuggestions +countersuing +countersuit +countersuits +countertendencies +countertendency +counterterror +counterterrorism +counterterrorisms +counterterrorist +counterterrorists +counterterrors +counterthreat +counterthreats +counterthrust +counterthrusts +countertrend +countertrends +countess +countesses +countian +countians +counties +counting +countless +countries +country +countryman +countrymen +countryside +countrysides +counts +county +coup +coupe +couped +coupes +couping +couple +coupled +coupler +couplers +couples +couplet +couplets +coupling +couplings +coupon +coupons +coups +courage +courageous +courages +courant +courante +courantes +couranto +courantoes +courantos +courants +courier +couriers +courlan +courlans +course +coursed +courser +coursers +courses +coursing +coursings +court +courted +courteous +courteously +courtesied +courtesies +courtesy +courtesying +courthouse +courthouses +courtier +courtiers +courting +courtlier +courtliest +courtly +courtroom +courtrooms +courts +courtship +courtships +courtyard +courtyards +couscous +couscouses +cousin +cousinly +cousinries +cousinry +cousins +couteau +couteaux +couter +couters +couth +couther +couthest +couthie +couthier +couthiest +couths +couture +coutures +couvade +couvades +covalent +cove +coved +coven +covenant +covenanted +covenanting +covenants +covens +cover +coverage +coverages +coverall +coveralls +covered +coverer +coverers +covering +coverings +coverlet +coverlets +coverlid +coverlids +covers +covert +covertly +coverts +coves +covet +coveted +coveter +coveters +coveting +covetous +covets +covey +coveys +coving +covings +cow +cowage +cowages +coward +cowardice +cowardices +cowardly +cowards +cowbane +cowbanes +cowbell +cowbells +cowberries +cowberry +cowbind +cowbinds +cowbird +cowbirds +cowboy +cowboys +cowed +cowedly +cower +cowered +cowering +cowers +cowfish +cowfishes +cowgirl +cowgirls +cowhage +cowhages +cowhand +cowhands +cowherb +cowherbs +cowherd +cowherds +cowhide +cowhided +cowhides +cowhiding +cowier +cowiest +cowing +cowinner +cowinners +cowl +cowled +cowlick +cowlicks +cowling +cowlings +cowls +cowman +cowmen +coworker +coworkers +cowpat +cowpats +cowpea +cowpeas +cowpoke +cowpokes +cowpox +cowpoxes +cowrie +cowries +cowry +cows +cowshed +cowsheds +cowskin +cowskins +cowslip +cowslips +cowy +cox +coxa +coxae +coxal +coxalgia +coxalgias +coxalgic +coxalgies +coxalgy +coxcomb +coxcombs +coxed +coxes +coxing +coxswain +coxswained +coxswaining +coxswains +coy +coyed +coyer +coyest +coying +coyish +coyly +coyness +coynesses +coyote +coyotes +coypou +coypous +coypu +coypus +coys +coz +cozen +cozenage +cozenages +cozened +cozener +cozeners +cozening +cozens +cozes +cozey +cozeys +cozie +cozier +cozies +coziest +cozily +coziness +cozinesses +cozy +cozzes +craal +craaled +craaling +craals +crab +crabbed +crabber +crabbers +crabbier +crabbiest +crabbing +crabby +crabs +crabwise +crack +crackdown +crackdowns +cracked +cracker +crackers +cracking +crackings +crackle +crackled +crackles +cracklier +crackliest +crackling +crackly +cracknel +cracknels +crackpot +crackpots +cracks +crackup +crackups +cracky +cradle +cradled +cradler +cradlers +cradles +cradling +craft +crafted +craftier +craftiest +craftily +craftiness +craftinesses +crafting +crafts +craftsman +craftsmanship +craftsmanships +craftsmen +craftsmenship +craftsmenships +crafty +crag +cragged +craggier +craggiest +craggily +craggy +crags +cragsman +cragsmen +crake +crakes +cram +crambe +crambes +crambo +cramboes +crambos +crammed +crammer +crammers +cramming +cramoisies +cramoisy +cramp +cramped +cramping +crampit +crampits +crampon +crampons +crampoon +crampoons +cramps +crams +cranberries +cranberry +cranch +cranched +cranches +cranching +crane +craned +cranes +crania +cranial +craniate +craniates +craning +cranium +craniums +crank +cranked +cranker +crankest +crankier +crankiest +crankily +cranking +crankle +crankled +crankles +crankling +crankly +crankous +crankpin +crankpins +cranks +cranky +crannied +crannies +crannog +crannoge +crannoges +crannogs +cranny +crap +crape +craped +crapes +craping +crapped +crapper +crappers +crappie +crappier +crappies +crappiest +crapping +crappy +craps +crapshooter +crapshooters +crases +crash +crashed +crasher +crashers +crashes +crashing +crasis +crass +crasser +crassest +crassly +cratch +cratches +crate +crated +crater +cratered +cratering +craters +crates +crating +craton +cratonic +cratons +craunch +craunched +craunches +craunching +cravat +cravats +crave +craved +craven +cravened +cravening +cravenly +cravens +craver +cravers +craves +craving +cravings +craw +crawdad +crawdads +crawfish +crawfished +crawfishes +crawfishing +crawl +crawled +crawler +crawlers +crawlier +crawliest +crawling +crawls +crawlway +crawlways +crawly +craws +crayfish +crayfishes +crayon +crayoned +crayoning +crayons +craze +crazed +crazes +crazier +craziest +crazily +craziness +crazinesses +crazing +crazy +creak +creaked +creakier +creakiest +creakily +creaking +creaks +creaky +cream +creamed +creamer +creameries +creamers +creamery +creamier +creamiest +creamily +creaming +creams +creamy +crease +creased +creaser +creasers +creases +creasier +creasiest +creasing +creasy +create +created +creates +creatin +creatine +creatines +creating +creatinine +creatins +creation +creations +creative +creativities +creativity +creator +creators +creature +creatures +creche +creches +credal +credence +credences +credenda +credent +credentials +credenza +credenzas +credibilities +credibility +credible +credibly +credit +creditable +creditably +credited +crediting +creditor +creditors +credits +credo +credos +credulities +credulity +credulous +creed +creedal +creeds +creek +creeks +creel +creels +creep +creepage +creepages +creeper +creepers +creepie +creepier +creepies +creepiest +creepily +creeping +creeps +creepy +creese +creeses +creesh +creeshed +creeshes +creeshing +cremains +cremate +cremated +cremates +cremating +cremation +cremations +cremator +cremators +crematory +creme +cremes +crenate +crenated +crenel +creneled +creneling +crenelle +crenelled +crenelles +crenelling +crenels +creodont +creodonts +creole +creoles +creosol +creosols +creosote +creosoted +creosotes +creosoting +crepe +creped +crepes +crepey +crepier +crepiest +creping +crept +crepy +crescendo +crescendos +crescent +crescents +cresive +cresol +cresols +cress +cresses +cresset +cressets +crest +crestal +crested +crestfallen +crestfallens +cresting +crestings +crests +cresyl +cresylic +cresyls +cretic +cretics +cretin +cretins +cretonne +cretonnes +crevalle +crevalles +crevasse +crevassed +crevasses +crevassing +crevice +creviced +crevices +crew +crewed +crewel +crewels +crewing +crewless +crewman +crewmen +crews +crib +cribbage +cribbages +cribbed +cribber +cribbers +cribbing +cribbings +cribbled +cribrous +cribs +cribwork +cribworks +cricetid +cricetids +crick +cricked +cricket +cricketed +cricketing +crickets +cricking +cricks +cricoid +cricoids +cried +crier +criers +cries +crime +crimes +criminal +criminals +crimmer +crimmers +crimp +crimped +crimper +crimpers +crimpier +crimpiest +crimping +crimple +crimpled +crimples +crimpling +crimps +crimpy +crimson +crimsoned +crimsoning +crimsons +cringe +cringed +cringer +cringers +cringes +cringing +cringle +cringles +crinite +crinites +crinkle +crinkled +crinkles +crinklier +crinkliest +crinkling +crinkly +crinoid +crinoids +crinoline +crinolines +crinum +crinums +criollo +criollos +cripple +crippled +crippler +cripplers +cripples +crippling +cris +crises +crisic +crisis +crisp +crispate +crisped +crispen +crispened +crispening +crispens +crisper +crispers +crispest +crispier +crispiest +crispily +crisping +crisply +crispness +crispnesses +crisps +crispy +crissa +crissal +crisscross +crisscrossed +crisscrosses +crisscrossing +crissum +crista +cristae +cristate +criteria +criterion +critic +critical +criticism +criticisms +criticize +criticized +criticizes +criticizing +critics +critique +critiqued +critiques +critiquing +critter +critters +crittur +critturs +croak +croaked +croaker +croakers +croakier +croakiest +croakily +croaking +croaks +croaky +crocein +croceine +croceines +croceins +crochet +crocheted +crocheting +crochets +croci +crocine +crock +crocked +crockeries +crockery +crocket +crockets +crocking +crocks +crocodile +crocodiles +crocoite +crocoites +crocus +crocuses +croft +crofter +crofters +crofts +crojik +crojiks +cromlech +cromlechs +crone +crones +cronies +crony +cronyism +cronyisms +crook +crooked +crookeder +crookedest +crookedness +crookednesses +crooking +crooks +croon +crooned +crooner +crooners +crooning +croons +crop +cropland +croplands +cropless +cropped +cropper +croppers +cropping +crops +croquet +croqueted +croqueting +croquets +croquette +croquettes +croquis +crore +crores +crosier +crosiers +cross +crossarm +crossarms +crossbar +crossbarred +crossbarring +crossbars +crossbow +crossbows +crossbreed +crossbreeded +crossbreeding +crossbreeds +crosscut +crosscuts +crosscutting +crosse +crossed +crosser +crossers +crosses +crossest +crossing +crossings +crosslet +crosslets +crossly +crossover +crossovers +crossroads +crosstie +crossties +crosswalk +crosswalks +crossway +crossways +crosswise +crotch +crotched +crotches +crotchet +crotchets +crotchety +croton +crotons +crouch +crouched +crouches +crouching +croup +croupe +croupes +croupier +croupiers +croupiest +croupily +croupous +croups +croupy +crouse +crousely +crouton +croutons +crow +crowbar +crowbars +crowd +crowded +crowder +crowders +crowdie +crowdies +crowding +crowds +crowdy +crowed +crower +crowers +crowfeet +crowfoot +crowfoots +crowing +crown +crowned +crowner +crowners +crownet +crownets +crowning +crowns +crows +crowstep +crowsteps +croze +crozer +crozers +crozes +crozier +croziers +cruces +crucial +crucian +crucians +cruciate +crucible +crucibles +crucifer +crucifers +crucified +crucifies +crucifix +crucifixes +crucifixion +crucify +crucifying +crud +crudded +crudding +cruddy +crude +crudely +cruder +crudes +crudest +crudities +crudity +cruds +cruel +crueler +cruelest +crueller +cruellest +cruelly +cruelties +cruelty +cruet +cruets +cruise +cruised +cruiser +cruisers +cruises +cruising +cruller +crullers +crumb +crumbed +crumber +crumbers +crumbier +crumbiest +crumbing +crumble +crumbled +crumbles +crumblier +crumbliest +crumbling +crumbly +crumbs +crumby +crummie +crummier +crummies +crummiest +crummy +crump +crumped +crumpet +crumpets +crumping +crumple +crumpled +crumples +crumpling +crumply +crumps +crunch +crunched +cruncher +crunchers +crunches +crunchier +crunchiest +crunching +crunchy +crunodal +crunode +crunodes +cruor +cruors +crupper +cruppers +crura +crural +crus +crusade +crusaded +crusader +crusaders +crusades +crusading +crusado +crusadoes +crusados +cruse +cruses +cruset +crusets +crush +crushed +crusher +crushers +crushes +crushing +crusily +crust +crustacean +crustaceans +crustal +crusted +crustier +crustiest +crustily +crusting +crustose +crusts +crusty +crutch +crutched +crutches +crutching +crux +cruxes +cruzado +cruzadoes +cruzados +cruzeiro +cruzeiros +crwth +crwths +cry +crybabies +crybaby +crying +cryingly +cryogen +cryogenies +cryogens +cryogeny +cryolite +cryolites +cryonic +cryonics +cryostat +cryostats +cryotron +cryotrons +crypt +cryptal +cryptic +crypto +cryptographic +cryptographies +cryptography +cryptos +crypts +crystal +crystallization +crystallizations +crystallize +crystallized +crystallizes +crystallizing +crystals +ctenidia +ctenoid +cub +cubage +cubages +cubature +cubatures +cubbies +cubbish +cubby +cubbyhole +cubbyholes +cube +cubeb +cubebs +cubed +cuber +cubers +cubes +cubic +cubical +cubicities +cubicity +cubicle +cubicles +cubicly +cubics +cubicula +cubiform +cubing +cubism +cubisms +cubist +cubistic +cubists +cubit +cubital +cubits +cuboid +cuboidal +cuboids +cubs +cuckold +cuckolded +cuckolding +cuckolds +cuckoo +cuckooed +cuckooing +cuckoos +cucumber +cucumbers +cucurbit +cucurbits +cud +cudbear +cudbears +cuddie +cuddies +cuddle +cuddled +cuddles +cuddlier +cuddliest +cuddling +cuddly +cuddy +cudgel +cudgeled +cudgeler +cudgelers +cudgeling +cudgelled +cudgelling +cudgels +cuds +cudweed +cudweeds +cue +cued +cueing +cues +cuesta +cuestas +cuff +cuffed +cuffing +cuffless +cuffs +cuif +cuifs +cuing +cuirass +cuirassed +cuirasses +cuirassing +cuish +cuishes +cuisine +cuisines +cuisse +cuisses +cuittle +cuittled +cuittles +cuittling +cuke +cukes +culch +culches +culet +culets +culex +culices +culicid +culicids +culicine +culicines +culinary +cull +cullay +cullays +culled +culler +cullers +cullet +cullets +cullied +cullies +culling +cullion +cullions +cullis +cullises +culls +cully +cullying +culm +culmed +culminatation +culminatations +culminate +culminated +culminates +culminating +culming +culms +culotte +culottes +culpa +culpable +culpably +culpae +culprit +culprits +cult +cultch +cultches +culti +cultic +cultigen +cultigens +cultism +cultisms +cultist +cultists +cultivar +cultivars +cultivatation +cultivatations +cultivate +cultivated +cultivates +cultivating +cultrate +cults +cultural +culture +cultured +cultures +culturing +cultus +cultuses +culver +culverin +culverins +culvers +culvert +culverts +cum +cumarin +cumarins +cumber +cumbered +cumberer +cumberers +cumbering +cumbers +cumbersome +cumbrous +cumin +cumins +cummer +cummers +cummin +cummins +cumquat +cumquats +cumshaw +cumshaws +cumulate +cumulated +cumulates +cumulating +cumulative +cumuli +cumulous +cumulus +cundum +cundums +cuneal +cuneate +cuneated +cuneatic +cuniform +cuniforms +cunner +cunners +cunning +cunninger +cunningest +cunningly +cunnings +cup +cupboard +cupboards +cupcake +cupcakes +cupel +cupeled +cupeler +cupelers +cupeling +cupelled +cupeller +cupellers +cupelling +cupels +cupful +cupfuls +cupid +cupidities +cupidity +cupids +cuplike +cupola +cupolaed +cupolaing +cupolas +cuppa +cuppas +cupped +cupper +cuppers +cuppier +cuppiest +cupping +cuppings +cuppy +cupreous +cupric +cuprite +cuprites +cuprous +cuprum +cuprums +cups +cupsful +cupula +cupulae +cupular +cupulate +cupule +cupules +cur +curable +curably +curacao +curacaos +curacies +curacoa +curacoas +curacy +curagh +curaghs +curara +curaras +curare +curares +curari +curarine +curarines +curaris +curarize +curarized +curarizes +curarizing +curassow +curassows +curate +curates +curative +curatives +curator +curators +curb +curbable +curbed +curber +curbers +curbing +curbings +curbs +curch +curches +curculio +curculios +curcuma +curcumas +curd +curded +curdier +curdiest +curding +curdle +curdled +curdler +curdlers +curdles +curdling +curds +curdy +cure +cured +cureless +curer +curers +cures +curet +curets +curette +curetted +curettes +curetting +curf +curfew +curfews +curfs +curia +curiae +curial +curie +curies +curing +curio +curios +curiosa +curiosities +curiosity +curious +curiouser +curiousest +curite +curites +curium +curiums +curl +curled +curler +curlers +curlew +curlews +curlicue +curlicued +curlicues +curlicuing +curlier +curliest +curlily +curling +curlings +curls +curly +curlycue +curlycues +curmudgeon +curmudgeons +curn +curns +curr +currach +currachs +curragh +curraghs +curran +currans +currant +currants +curred +currencies +currency +current +currently +currents +curricle +curricles +curriculum +currie +curried +currier +currieries +curriers +curriery +curries +curring +currish +currs +curry +currying +curs +curse +cursed +curseder +cursedest +cursedly +curser +cursers +curses +cursing +cursive +cursives +cursory +curst +curt +curtail +curtailed +curtailing +curtailment +curtailments +curtails +curtain +curtained +curtaining +curtains +curtal +curtalax +curtalaxes +curtals +curtate +curter +curtesies +curtest +curtesy +curtly +curtness +curtnesses +curtsey +curtseyed +curtseying +curtseys +curtsied +curtsies +curtsy +curtsying +curule +curve +curved +curves +curvet +curveted +curveting +curvets +curvetted +curvetting +curvey +curvier +curviest +curving +curvy +cuscus +cuscuses +cusec +cusecs +cushat +cushats +cushaw +cushaws +cushier +cushiest +cushily +cushion +cushioned +cushioning +cushions +cushiony +cushy +cusk +cusks +cusp +cuspate +cuspated +cusped +cuspid +cuspidal +cuspides +cuspidor +cuspidors +cuspids +cuspis +cusps +cuss +cussed +cussedly +cusser +cussers +cusses +cussing +cusso +cussos +cussword +cusswords +custard +custards +custodes +custodial +custodian +custodians +custodies +custody +custom +customarily +customary +customer +customers +customize +customized +customizes +customizing +customs +custos +custumal +custumals +cut +cutaneous +cutaway +cutaways +cutback +cutbacks +cutch +cutcheries +cutchery +cutches +cutdown +cutdowns +cute +cutely +cuteness +cutenesses +cuter +cutes +cutesier +cutesiest +cutest +cutesy +cutey +cuteys +cutgrass +cutgrasses +cuticle +cuticles +cuticula +cuticulae +cutie +cuties +cutin +cutinise +cutinised +cutinises +cutinising +cutinize +cutinized +cutinizes +cutinizing +cutins +cutis +cutises +cutlas +cutlases +cutlass +cutlasses +cutler +cutleries +cutlers +cutlery +cutlet +cutlets +cutline +cutlines +cutoff +cutoffs +cutout +cutouts +cutover +cutpurse +cutpurses +cuts +cuttable +cuttage +cuttages +cutter +cutters +cutthroat +cutthroats +cutties +cutting +cuttings +cuttle +cuttled +cuttles +cuttling +cutty +cutup +cutups +cutwater +cutwaters +cutwork +cutworks +cutworm +cutworms +cuvette +cuvettes +cwm +cwms +cyan +cyanamid +cyanamids +cyanate +cyanates +cyanic +cyanid +cyanide +cyanided +cyanides +cyaniding +cyanids +cyanin +cyanine +cyanines +cyanins +cyanite +cyanites +cyanitic +cyano +cyanogen +cyanogens +cyanosed +cyanoses +cyanosis +cyanotic +cyans +cyborg +cyborgs +cycad +cycads +cycas +cycases +cycasin +cycasins +cyclamen +cyclamens +cyclase +cyclases +cycle +cyclecar +cyclecars +cycled +cycler +cyclers +cycles +cyclic +cyclical +cyclicly +cycling +cyclings +cyclist +cyclists +cyclitol +cyclitols +cyclize +cyclized +cyclizes +cyclizing +cyclo +cycloid +cycloids +cyclonal +cyclone +cyclones +cyclonic +cyclopaedia +cyclopaedias +cyclopedia +cyclopedias +cyclophosphamide +cyclophosphamides +cyclops +cyclorama +cycloramas +cyclos +cycloses +cyclosis +cyder +cyders +cyeses +cyesis +cygnet +cygnets +cylices +cylinder +cylindered +cylindering +cylinders +cylix +cyma +cymae +cymar +cymars +cymas +cymatia +cymatium +cymbal +cymbaler +cymbalers +cymbals +cymbling +cymblings +cyme +cymene +cymenes +cymes +cymlin +cymling +cymlings +cymlins +cymogene +cymogenes +cymoid +cymol +cymols +cymose +cymosely +cymous +cynic +cynical +cynicism +cynicisms +cynics +cynosure +cynosures +cypher +cyphered +cyphering +cyphers +cypres +cypreses +cypress +cypresses +cyprian +cyprians +cyprinid +cyprinids +cyprus +cypruses +cypsela +cypselae +cyst +cystein +cysteine +cysteines +cysteins +cystic +cystine +cystines +cystitides +cystitis +cystoid +cystoids +cysts +cytaster +cytasters +cytidine +cytidines +cytogenies +cytogeny +cytologies +cytology +cyton +cytons +cytopathological +cytosine +cytosines +czar +czardas +czardom +czardoms +czarevna +czarevnas +czarina +czarinas +czarism +czarisms +czarist +czarists +czaritza +czaritzas +czars +da +dab +dabbed +dabber +dabbers +dabbing +dabble +dabbled +dabbler +dabblers +dabbles +dabbling +dabblings +dabchick +dabchicks +dabs +dabster +dabsters +dace +daces +dacha +dachas +dachshund +dachshunds +dacker +dackered +dackering +dackers +dacoit +dacoities +dacoits +dacoity +dactyl +dactyli +dactylic +dactylics +dactyls +dactylus +dad +dada +dadaism +dadaisms +dadaist +dadaists +dadas +daddies +daddle +daddled +daddles +daddling +daddy +dado +dadoed +dadoes +dadoing +dados +dads +daedal +daemon +daemonic +daemons +daff +daffed +daffier +daffiest +daffing +daffodil +daffodils +daffs +daffy +daft +dafter +daftest +daftly +daftness +daftnesses +dag +dagger +daggered +daggering +daggers +daggle +daggled +daggles +daggling +daglock +daglocks +dago +dagoba +dagobas +dagoes +dagos +dags +dah +dahabeah +dahabeahs +dahabiah +dahabiahs +dahabieh +dahabiehs +dahabiya +dahabiyas +dahlia +dahlias +dahoon +dahoons +dahs +daiker +daikered +daikering +daikers +dailies +daily +daimen +daimio +daimios +daimon +daimones +daimonic +daimons +daimyo +daimyos +daintier +dainties +daintiest +daintily +daintiness +daintinesses +dainty +daiquiri +daiquiris +dairies +dairy +dairying +dairyings +dairymaid +dairymaids +dairyman +dairymen +dais +daises +daishiki +daishikis +daisied +daisies +daisy +dak +dakerhen +dakerhens +dakoit +dakoities +dakoits +dakoity +daks +dalapon +dalapons +dalasi +dale +dales +dalesman +dalesmen +daleth +daleths +dalles +dalliance +dalliances +dallied +dallier +dalliers +dallies +dally +dallying +dalmatian +dalmatians +dalmatic +dalmatics +daltonic +dam +damage +damaged +damager +damagers +damages +damaging +daman +damans +damar +damars +damask +damasked +damasking +damasks +dame +dames +damewort +dameworts +dammar +dammars +dammed +dammer +dammers +damming +damn +damnable +damnably +damnation +damnations +damndest +damndests +damned +damneder +damnedest +damner +damners +damnified +damnifies +damnify +damnifying +damning +damns +damosel +damosels +damozel +damozels +damp +damped +dampen +dampened +dampener +dampeners +dampening +dampens +damper +dampers +dampest +damping +dampish +damply +dampness +dampnesses +damps +dams +damsel +damsels +damson +damsons +dance +danced +dancer +dancers +dances +dancing +dandelion +dandelions +dander +dandered +dandering +danders +dandier +dandies +dandiest +dandified +dandifies +dandify +dandifying +dandily +dandle +dandled +dandler +dandlers +dandles +dandling +dandriff +dandriffs +dandruff +dandruffs +dandy +dandyish +dandyism +dandyisms +danegeld +danegelds +daneweed +daneweeds +danewort +daneworts +dang +danged +danger +dangered +dangering +dangerous +dangerously +dangers +danging +dangle +dangled +dangler +danglers +dangles +dangling +dangs +danio +danios +dank +danker +dankest +dankly +dankness +danknesses +danseur +danseurs +danseuse +danseuses +dap +daphne +daphnes +daphnia +daphnias +dapped +dapper +dapperer +dapperest +dapperly +dapping +dapple +dappled +dapples +dappling +daps +darb +darbies +darbs +dare +dared +daredevil +daredevils +dareful +darer +darers +dares +daresay +daric +darics +daring +daringly +darings +dariole +darioles +dark +darked +darken +darkened +darkener +darkeners +darkening +darkens +darker +darkest +darkey +darkeys +darkie +darkies +darking +darkish +darkle +darkled +darkles +darklier +darkliest +darkling +darkly +darkness +darknesses +darkroom +darkrooms +darks +darksome +darky +darling +darlings +darn +darndest +darndests +darned +darneder +darnedest +darnel +darnels +darner +darners +darning +darnings +darns +dart +darted +darter +darters +darting +dartle +dartled +dartles +dartling +dartmouth +darts +dash +dashboard +dashboards +dashed +dasheen +dasheens +dasher +dashers +dashes +dashier +dashiest +dashiki +dashikis +dashing +dashpot +dashpots +dashy +dassie +dassies +dastard +dastardly +dastards +dasyure +dasyures +data +datable +datamedia +datapoint +dataries +datary +datcha +datchas +date +dateable +dated +datedly +dateless +dateline +datelined +datelines +datelining +dater +daters +dates +dating +datival +dative +datively +datives +dato +datos +datto +dattos +datum +datums +datura +daturas +daturic +daub +daube +daubed +dauber +dauberies +daubers +daubery +daubes +daubier +daubiest +daubing +daubries +daubry +daubs +dauby +daughter +daughterly +daughters +daunder +daundered +daundering +daunders +daunt +daunted +daunter +daunters +daunting +dauntless +daunts +dauphin +dauphine +dauphines +dauphins +daut +dauted +dautie +dauties +dauting +dauts +daven +davened +davening +davenport +davenports +davens +davies +davit +davits +davy +daw +dawdle +dawdled +dawdler +dawdlers +dawdles +dawdling +dawed +dawen +dawing +dawk +dawks +dawn +dawned +dawning +dawnlike +dawns +daws +dawt +dawted +dawtie +dawties +dawting +dawts +day +daybed +daybeds +daybook +daybooks +daybreak +daybreaks +daydream +daydreamed +daydreaming +daydreams +daydreamt +dayflies +dayfly +dayglow +dayglows +daylight +daylighted +daylighting +daylights +daylilies +daylily +daylit +daylong +daymare +daymares +dayroom +dayrooms +days +dayside +daysides +daysman +daysmen +daystar +daystars +daytime +daytimes +daze +dazed +dazedly +dazes +dazing +dazzle +dazzled +dazzler +dazzlers +dazzles +dazzling +de +deacon +deaconed +deaconess +deaconesses +deaconing +deaconries +deaconry +deacons +dead +deadbeat +deadbeats +deaden +deadened +deadener +deadeners +deadening +deadens +deader +deadest +deadeye +deadeyes +deadfall +deadfalls +deadhead +deadheaded +deadheading +deadheads +deadlier +deadliest +deadline +deadlines +deadliness +deadlinesses +deadlock +deadlocked +deadlocking +deadlocks +deadly +deadness +deadnesses +deadpan +deadpanned +deadpanning +deadpans +deads +deadwood +deadwoods +deaerate +deaerated +deaerates +deaerating +deaf +deafen +deafened +deafening +deafens +deafer +deafest +deafish +deafly +deafness +deafnesses +deair +deaired +deairing +deairs +deal +dealate +dealated +dealates +dealer +dealers +dealfish +dealfishes +dealing +dealings +deals +dealt +dean +deaned +deaneries +deanery +deaning +deans +deanship +deanships +dear +dearer +dearest +dearie +dearies +dearly +dearness +dearnesses +dears +dearth +dearths +deary +deash +deashed +deashes +deashing +deasil +death +deathbed +deathbeds +deathcup +deathcups +deathful +deathless +deathly +deaths +deathy +deave +deaved +deaves +deaving +deb +debacle +debacles +debar +debark +debarkation +debarkations +debarked +debarking +debarks +debarred +debarring +debars +debase +debased +debasement +debasements +debaser +debasers +debases +debasing +debatable +debate +debated +debater +debaters +debates +debating +debauch +debauched +debaucheries +debauchery +debauches +debauching +debilitate +debilitated +debilitates +debilitating +debilities +debility +debit +debited +debiting +debits +debonair +debone +deboned +deboner +deboners +debones +deboning +debouch +debouche +debouched +debouches +debouching +debrief +debriefed +debriefing +debriefs +debris +debruise +debruised +debruises +debruising +debs +debt +debtless +debtor +debtors +debts +debug +debugged +debugging +debugs +debunk +debunked +debunker +debunkers +debunking +debunks +debut +debutant +debutante +debutantes +debutants +debuted +debuting +debuts +debye +debyes +decadal +decade +decadence +decadent +decadents +decades +decagon +decagons +decagram +decagrams +decal +decals +decamp +decamped +decamping +decamps +decanal +decane +decanes +decant +decanted +decanter +decanters +decanting +decants +decapitatation +decapitatations +decapitate +decapitated +decapitates +decapitating +decapod +decapods +decare +decares +decay +decayed +decayer +decayers +decaying +decays +decease +deceased +deceases +deceasing +decedent +decedents +deceit +deceitful +deceitfully +deceitfulness +deceitfulnesses +deceits +deceive +deceived +deceiver +deceivers +deceives +deceiving +decelerate +decelerated +decelerates +decelerating +decemvir +decemviri +decemvirs +decenaries +decenary +decencies +decency +decennia +decent +decenter +decentered +decentering +decenters +decentest +decently +decentralization +decentre +decentred +decentres +decentring +deception +deceptions +deceptively +decern +decerned +decerning +decerns +deciare +deciares +decibel +decibels +decide +decided +decidedly +decider +deciders +decides +deciding +decidua +deciduae +decidual +deciduas +deciduous +decigram +decigrams +decile +deciles +decimal +decimally +decimals +decimate +decimated +decimates +decimating +decipher +decipherable +deciphered +deciphering +deciphers +decision +decisions +decisive +decisively +decisiveness +decisivenesses +deck +decked +deckel +deckels +decker +deckers +deckhand +deckhands +decking +deckings +deckle +deckles +decks +declaim +declaimed +declaiming +declaims +declamation +declamations +declaration +declarations +declarative +declaratory +declare +declared +declarer +declarers +declares +declaring +declass +declasse +declassed +declasses +declassing +declension +declensions +declination +declinations +decline +declined +decliner +decliners +declines +declining +decoct +decocted +decocting +decocts +decode +decoded +decoder +decoders +decodes +decoding +decolor +decolored +decoloring +decolors +decolour +decoloured +decolouring +decolours +decompose +decomposed +decomposes +decomposing +decomposition +decompositions +decongestant +decongestants +decor +decorate +decorated +decorates +decorating +decoration +decorations +decorative +decorator +decorators +decorous +decorously +decorousness +decorousnesses +decors +decorum +decorums +decoy +decoyed +decoyer +decoyers +decoying +decoys +decrease +decreased +decreases +decreasing +decree +decreed +decreeing +decreer +decreers +decrees +decrepit +decrescendo +decretal +decretals +decrial +decrials +decried +decrier +decriers +decries +decrown +decrowned +decrowning +decrowns +decry +decrying +decrypt +decrypted +decrypting +decrypts +decuman +decuple +decupled +decuples +decupling +decuries +decurion +decurions +decurve +decurved +decurves +decurving +decury +dedal +dedans +dedicate +dedicated +dedicates +dedicating +dedication +dedications +dedicatory +deduce +deduced +deduces +deducible +deducing +deduct +deducted +deductible +deducting +deduction +deductions +deductive +deducts +dee +deed +deeded +deedier +deediest +deeding +deedless +deeds +deedy +deejay +deejays +deem +deemed +deeming +deems +deemster +deemsters +deep +deepen +deepened +deepener +deepeners +deepening +deepens +deeper +deepest +deeply +deepness +deepnesses +deeps +deer +deerflies +deerfly +deers +deerskin +deerskins +deerweed +deerweeds +deeryard +deeryards +dees +deewan +deewans +deface +defaced +defacement +defacements +defacer +defacers +defaces +defacing +defamation +defamations +defamatory +defame +defamed +defamer +defamers +defames +defaming +defat +defats +defatted +defatting +default +defaulted +defaulting +defaults +defeat +defeated +defeater +defeaters +defeating +defeats +defecate +defecated +defecates +defecating +defecation +defecations +defect +defected +defecting +defection +defections +defective +defectives +defector +defectors +defects +defence +defences +defend +defendant +defendants +defended +defender +defenders +defending +defends +defense +defensed +defenseless +defenses +defensible +defensing +defensive +defer +deference +deferences +deferent +deferential +deferents +deferment +deferments +deferrable +deferral +deferrals +deferred +deferrer +deferrers +deferring +defers +defi +defiance +defiances +defiant +deficiencies +deficiency +deficient +deficit +deficits +defied +defier +defiers +defies +defilade +defiladed +defilades +defilading +defile +defiled +defilement +defilements +defiler +defilers +defiles +defiling +definable +definably +define +defined +definer +definers +defines +defining +definite +definitely +definition +definitions +definitive +defis +deflate +deflated +deflates +deflating +deflation +deflations +deflator +deflators +deflea +defleaed +defleaing +defleas +deflect +deflected +deflecting +deflection +deflections +deflects +deflexed +deflower +deflowered +deflowering +deflowers +defoam +defoamed +defoamer +defoamers +defoaming +defoams +defog +defogged +defogger +defoggers +defogging +defogs +defoliant +defoliants +defoliate +defoliated +defoliates +defoliating +defoliation +defoliations +deforce +deforced +deforces +deforcing +deforest +deforested +deforesting +deforests +deform +deformation +deformations +deformed +deformer +deformers +deforming +deformities +deformity +deforms +defraud +defrauded +defrauding +defrauds +defray +defrayal +defrayals +defrayed +defrayer +defrayers +defraying +defrays +defrock +defrocked +defrocking +defrocks +defrost +defrosted +defroster +defrosters +defrosting +defrosts +deft +defter +deftest +deftly +deftness +deftnesses +defunct +defuse +defused +defuses +defusing +defuze +defuzed +defuzes +defuzing +defy +defying +degage +degame +degames +degami +degamis +degas +degases +degassed +degasser +degassers +degasses +degassing +degauss +degaussed +degausses +degaussing +degeneracies +degeneracy +degenerate +degenerated +degenerates +degenerating +degeneration +degenerations +degenerative +degerm +degermed +degerming +degerms +deglaze +deglazed +deglazes +deglazing +degradable +degradation +degradations +degrade +degraded +degrader +degraders +degrades +degrading +degrease +degreased +degreases +degreasing +degree +degreed +degrees +degum +degummed +degumming +degums +degust +degusted +degusting +degusts +dehisce +dehisced +dehisces +dehiscing +dehorn +dehorned +dehorner +dehorners +dehorning +dehorns +dehort +dehorted +dehorting +dehorts +dehydrate +dehydrated +dehydrates +dehydrating +dehydration +dehydrations +dei +deice +deiced +deicer +deicers +deices +deicidal +deicide +deicides +deicing +deictic +deific +deifical +deification +deifications +deified +deifier +deifies +deiform +deify +deifying +deign +deigned +deigning +deigns +deil +deils +deionize +deionized +deionizes +deionizing +deism +deisms +deist +deistic +deists +deities +deity +deject +dejecta +dejected +dejecting +dejection +dejections +dejects +dejeuner +dejeuners +dekagram +dekagrams +dekare +dekares +deke +deked +dekes +deking +del +delaine +delaines +delate +delated +delates +delating +delation +delations +delator +delators +delay +delayed +delayer +delayers +delaying +delays +dele +delead +deleaded +deleading +deleads +deled +delegacies +delegacy +delegate +delegated +delegates +delegating +delegation +delegations +deleing +deles +delete +deleted +deleterious +deletes +deleting +deletion +deletions +delf +delfs +delft +delfts +deli +deliberate +deliberated +deliberately +deliberateness +deliberatenesses +deliberates +deliberating +deliberation +deliberations +deliberative +delicacies +delicacy +delicate +delicates +delicatessen +delicatessens +delicious +deliciously +delict +delicts +delight +delighted +delighting +delights +delime +delimed +delimes +deliming +delimit +delimited +delimiter +delimiters +delimiting +delimits +delineate +delineated +delineates +delineating +delineation +delineations +delinquencies +delinquency +delinquent +delinquents +deliria +delirious +delirium +deliriums +delis +delist +delisted +delisting +delists +deliver +deliverance +deliverances +delivered +deliverer +deliverers +deliveries +delivering +delivers +delivery +dell +dellies +dells +delly +delouse +deloused +delouses +delousing +dels +delta +deltaic +deltas +deltic +deltoid +deltoids +delude +deluded +deluder +deluders +deludes +deluding +deluge +deluged +deluges +deluging +delusion +delusions +delusive +delusory +deluster +delustered +delustering +delusters +deluxe +delve +delved +delver +delvers +delves +delving +demagog +demagogies +demagogs +demagogue +demagogueries +demagoguery +demagogues +demagogy +demand +demanded +demander +demanders +demanding +demands +demarcation +demarcations +demarche +demarches +demark +demarked +demarking +demarks +demast +demasted +demasting +demasts +deme +demean +demeaned +demeaning +demeanor +demeanors +demeans +dement +demented +dementia +dementias +dementing +dements +demerit +demerited +demeriting +demerits +demes +demesne +demesnes +demies +demigod +demigods +demijohn +demijohns +demilune +demilunes +demirep +demireps +demise +demised +demises +demising +demit +demitasse +demitasses +demits +demitted +demitting +demiurge +demiurges +demivolt +demivolts +demo +demob +demobbed +demobbing +demobilization +demobilizations +demobilize +demobilized +demobilizes +demobilizing +demobs +democracies +democracy +democrat +democratic +democratize +democratized +democratizes +democratizing +democrats +demode +demoded +demographic +demography +demolish +demolished +demolishes +demolishing +demolition +demolitions +demon +demoness +demonesses +demoniac +demoniacs +demonian +demonic +demonise +demonised +demonises +demonising +demonism +demonisms +demonist +demonists +demonize +demonized +demonizes +demonizing +demons +demonstrable +demonstrate +demonstrated +demonstrates +demonstrating +demonstration +demonstrations +demonstrative +demonstrator +demonstrators +demoralize +demoralized +demoralizes +demoralizing +demos +demoses +demote +demoted +demotes +demotic +demotics +demoting +demotion +demotions +demotist +demotists +demount +demounted +demounting +demounts +dempster +dempsters +demur +demure +demurely +demurer +demurest +demurral +demurrals +demurred +demurrer +demurrers +demurring +demurs +demy +den +denarii +denarius +denary +denature +denatured +denatures +denaturing +denazified +denazifies +denazify +denazifying +dendrite +dendrites +dendroid +dendron +dendrons +dene +denes +dengue +dengues +deniable +deniably +denial +denials +denied +denier +deniers +denies +denim +denims +denizen +denizened +denizening +denizens +denned +denning +denomination +denominational +denominations +denominator +denominators +denotation +denotations +denotative +denote +denoted +denotes +denoting +denotive +denouement +denouements +denounce +denounced +denounces +denouncing +dens +dense +densely +denseness +densenesses +denser +densest +densified +densifies +densify +densifying +densities +density +dent +dental +dentalia +dentally +dentals +dentate +dentated +dented +denticle +denticles +dentifrice +dentifrices +dentil +dentils +dentin +dentinal +dentine +dentines +denting +dentins +dentist +dentistries +dentistry +dentists +dentition +dentitions +dentoid +dents +dentural +denture +dentures +denudate +denudated +denudates +denudating +denude +denuded +denuder +denuders +denudes +denuding +denunciation +denunciations +deny +denying +deodand +deodands +deodar +deodara +deodaras +deodars +deodorant +deodorants +deodorize +deodorized +deodorizes +deodorizing +depaint +depainted +depainting +depaints +depart +departed +departing +department +departmental +departments +departs +departure +departures +depend +dependabilities +dependability +dependable +depended +dependence +dependences +dependencies +dependency +dependent +dependents +depending +depends +deperm +depermed +deperming +deperms +depict +depicted +depicter +depicters +depicting +depiction +depictions +depictor +depictors +depicts +depilate +depilated +depilates +depilating +deplane +deplaned +deplanes +deplaning +deplete +depleted +depletes +depleting +depletion +depletions +deplorable +deplore +deplored +deplorer +deplorers +deplores +deploring +deploy +deployed +deploying +deployment +deployments +deploys +deplume +deplumed +deplumes +depluming +depolish +depolished +depolishes +depolishing +depone +deponed +deponent +deponents +depones +deponing +deport +deportation +deportations +deported +deportee +deportees +deporting +deportment +deportments +deports +deposal +deposals +depose +deposed +deposer +deposers +deposes +deposing +deposit +deposited +depositing +deposition +depositions +depositor +depositories +depositors +depository +deposits +depot +depots +depravation +depravations +deprave +depraved +depraver +depravers +depraves +depraving +depravities +depravity +deprecate +deprecated +deprecates +deprecating +deprecation +deprecations +deprecatory +depreciate +depreciated +depreciates +depreciating +depreciation +depreciations +depredation +depredations +depress +depressant +depressants +depressed +depresses +depressing +depression +depressions +depressive +depressor +depressors +deprival +deprivals +deprive +deprived +depriver +deprivers +deprives +depriving +depside +depsides +depth +depths +depurate +depurated +depurates +depurating +deputation +deputations +depute +deputed +deputes +deputies +deputing +deputize +deputized +deputizes +deputizing +deputy +deraign +deraigned +deraigning +deraigns +derail +derailed +derailing +derails +derange +deranged +derangement +derangements +deranges +deranging +derat +derats +deratted +deratting +deray +derays +derbies +derby +dere +derelict +dereliction +derelictions +derelicts +deride +derided +derider +deriders +derides +deriding +deringer +deringers +derision +derisions +derisive +derisory +derivate +derivates +derivation +derivations +derivative +derivatives +derive +derived +deriver +derivers +derives +deriving +derm +derma +dermal +dermas +dermatitis +dermatologies +dermatologist +dermatologists +dermatology +dermic +dermis +dermises +dermoid +derms +dernier +derogate +derogated +derogates +derogating +derogatory +derrick +derricks +derriere +derrieres +derries +derris +derrises +derry +dervish +dervishes +des +desalt +desalted +desalter +desalters +desalting +desalts +desand +desanded +desanding +desands +descant +descanted +descanting +descants +descend +descendant +descendants +descended +descendent +descendents +descending +descends +descent +descents +describable +describably +describe +described +describes +describing +descried +descrier +descriers +descries +description +descriptions +descriptive +descriptor +descriptors +descry +descrying +desecrate +desecrated +desecrates +desecrating +desecration +desecrations +desegregate +desegregated +desegregates +desegregating +desegregation +desegregations +deselect +deselected +deselecting +deselects +desert +deserted +deserter +deserters +desertic +deserting +deserts +deserve +deserved +deserver +deservers +deserves +deserving +desex +desexed +desexes +desexing +desiccate +desiccated +desiccates +desiccating +desiccation +desiccations +design +designate +designated +designates +designating +designation +designations +designed +designee +designees +designer +designers +designing +designs +desilver +desilvered +desilvering +desilvers +desinent +desirabilities +desirability +desirable +desire +desired +desirer +desirers +desires +desiring +desirous +desist +desisted +desisting +desists +desk +deskman +deskmen +desks +desman +desmans +desmid +desmids +desmoid +desmoids +desolate +desolated +desolates +desolating +desolation +desolations +desorb +desorbed +desorbing +desorbs +despair +despaired +despairing +despairs +despatch +despatched +despatches +despatching +desperado +desperadoes +desperados +desperate +desperately +desperation +desperations +despicable +despise +despised +despiser +despisers +despises +despising +despite +despited +despites +despiting +despoil +despoiled +despoiling +despoils +despond +desponded +despondencies +despondency +despondent +desponding +desponds +despot +despotic +despotism +despotisms +despots +desquamation +desquamations +dessert +desserts +destain +destained +destaining +destains +destination +destinations +destine +destined +destines +destinies +destining +destiny +destitute +destitution +destitutions +destrier +destriers +destroy +destroyed +destroyer +destroyers +destroying +destroys +destruct +destructed +destructibilities +destructibility +destructible +destructing +destruction +destructions +destructive +destructs +desugar +desugared +desugaring +desugars +desulfur +desulfured +desulfuring +desulfurs +desultory +detach +detached +detacher +detachers +detaches +detaching +detachment +detachments +detail +detailed +detailer +detailers +detailing +details +detain +detained +detainee +detainees +detainer +detainers +detaining +detains +detect +detectable +detected +detecter +detecters +detecting +detection +detections +detective +detectives +detector +detectors +detects +detent +detente +detentes +detention +detentions +detents +deter +deterge +deterged +detergent +detergents +deterger +detergers +deterges +deterging +deteriorate +deteriorated +deteriorates +deteriorating +deterioration +deteriorations +determinant +determinants +determination +determinations +determine +determined +determines +determining +deterred +deterrence +deterrences +deterrent +deterrents +deterrer +deterrers +deterring +deters +detest +detestable +detestation +detestations +detested +detester +detesters +detesting +detests +dethrone +dethroned +dethrones +dethroning +detick +deticked +deticker +detickers +deticking +deticks +detinue +detinues +detonate +detonated +detonates +detonating +detonation +detonations +detonator +detonators +detour +detoured +detouring +detours +detoxified +detoxifies +detoxify +detoxifying +detract +detracted +detracting +detraction +detractions +detractor +detractors +detracts +detrain +detrained +detraining +detrains +detriment +detrimental +detrimentally +detriments +detrital +detritus +detrude +detruded +detrudes +detruding +deuce +deuced +deucedly +deuces +deucing +deuteric +deuteron +deuterons +deutzia +deutzias +dev +deva +devaluation +devaluations +devalue +devalued +devalues +devaluing +devas +devastate +devastated +devastates +devastating +devastation +devastations +devein +deveined +deveining +deveins +devel +develed +develing +develop +develope +developed +developer +developers +developes +developing +development +developmental +developments +develops +devels +devest +devested +devesting +devests +deviance +deviances +deviancies +deviancy +deviant +deviants +deviate +deviated +deviates +deviating +deviation +deviations +deviator +deviators +device +devices +devil +deviled +deviling +devilish +devilkin +devilkins +devilled +devilling +devilries +devilry +devils +deviltries +deviltry +devious +devisal +devisals +devise +devised +devisee +devisees +deviser +devisers +devises +devising +devisor +devisors +devoice +devoiced +devoices +devoicing +devoid +devoir +devoirs +devolve +devolved +devolves +devolving +devon +devons +devote +devoted +devotee +devotees +devotes +devoting +devotion +devotional +devotions +devour +devoured +devourer +devourers +devouring +devours +devout +devoutly +devoutness +devoutnesses +devs +dew +dewan +dewans +dewater +dewatered +dewatering +dewaters +dewax +dewaxed +dewaxes +dewaxing +dewberries +dewberry +dewclaw +dewclaws +dewdrop +dewdrops +dewed +dewfall +dewfalls +dewier +dewiest +dewily +dewiness +dewinesses +dewing +dewlap +dewlaps +dewless +dewool +dewooled +dewooling +dewools +deworm +dewormed +deworming +deworms +dews +dewy +dex +dexes +dexies +dexter +dexterous +dexterously +dextral +dextran +dextrans +dextrin +dextrine +dextrines +dextrins +dextro +dextrose +dextroses +dextrous +dey +deys +dezinc +dezinced +dezincing +dezincked +dezincking +dezincs +dhak +dhaks +dharma +dharmas +dharmic +dharna +dharnas +dhole +dholes +dhoolies +dhooly +dhoora +dhooras +dhooti +dhootie +dhooties +dhootis +dhoti +dhotis +dhourra +dhourras +dhow +dhows +dhurna +dhurnas +dhuti +dhutis +diabase +diabases +diabasic +diabetes +diabetic +diabetics +diableries +diablery +diabolic +diabolical +diabolo +diabolos +diacetyl +diacetyls +diacid +diacidic +diacids +diaconal +diadem +diademed +diademing +diadems +diagnose +diagnosed +diagnoses +diagnosing +diagnosis +diagnostic +diagnostics +diagonal +diagonally +diagonals +diagram +diagramed +diagraming +diagrammatic +diagrammed +diagramming +diagrams +diagraph +diagraphs +dial +dialect +dialectic +dialects +dialed +dialer +dialers +dialing +dialings +dialist +dialists +diallage +diallages +dialled +diallel +dialler +diallers +dialling +diallings +diallist +diallists +dialog +dialoger +dialogers +dialogged +dialogging +dialogic +dialogs +dialogue +dialogued +dialogues +dialoguing +dials +dialyse +dialysed +dialyser +dialysers +dialyses +dialysing +dialysis +dialytic +dialyze +dialyzed +dialyzer +dialyzers +dialyzes +dialyzing +diameter +diameters +diametric +diametrical +diametrically +diamide +diamides +diamin +diamine +diamines +diamins +diamond +diamonded +diamonding +diamonds +dianthus +dianthuses +diapason +diapasons +diapause +diapaused +diapauses +diapausing +diaper +diapered +diapering +diapers +diaphone +diaphones +diaphonies +diaphony +diaphragm +diaphragmatic +diaphragms +diapir +diapiric +diapirs +diapsid +diarchic +diarchies +diarchy +diaries +diarist +diarists +diarrhea +diarrheas +diarrhoea +diarrhoeas +diary +diaspora +diasporas +diaspore +diaspores +diastase +diastases +diastema +diastemata +diaster +diasters +diastole +diastoles +diastral +diatom +diatomic +diatoms +diatonic +diatribe +diatribes +diazepam +diazepams +diazin +diazine +diazines +diazins +diazo +diazole +diazoles +dib +dibasic +dibbed +dibber +dibbers +dibbing +dibble +dibbled +dibbler +dibblers +dibbles +dibbling +dibbuk +dibbukim +dibbuks +dibs +dicast +dicastic +dicasts +dice +diced +dicentra +dicentras +dicer +dicers +dices +dicey +dichasia +dichotic +dichroic +dicier +diciest +dicing +dick +dickens +dickenses +dicker +dickered +dickering +dickers +dickey +dickeys +dickie +dickies +dicks +dicky +diclinies +dicliny +dicot +dicots +dicotyl +dicotyls +dicrotal +dicrotic +dicta +dictate +dictated +dictates +dictating +dictation +dictations +dictator +dictatorial +dictators +dictatorship +dictatorships +diction +dictionaries +dictionary +dictions +dictum +dictums +dicyclic +dicyclies +dicycly +did +didact +didactic +didacts +didactyl +didapper +didappers +diddle +diddled +diddler +diddlers +diddles +diddling +didies +dido +didoes +didos +didst +didy +didymium +didymiums +didymous +didynamies +didynamy +die +dieback +diebacks +diecious +died +diehard +diehards +dieing +diel +dieldrin +dieldrins +diemaker +diemakers +diene +dienes +diereses +dieresis +dieretic +dies +diesel +diesels +dieses +diesis +diester +diesters +diestock +diestocks +diestrum +diestrums +diestrus +diestruses +diet +dietaries +dietary +dieted +dieter +dieters +dietetic +dietetics +dietician +dieticians +dieting +diets +differ +differed +difference +differences +different +differential +differentials +differentiate +differentiated +differentiates +differentiating +differentiation +differently +differing +differs +difficult +difficulties +difficulty +diffidence +diffidences +diffident +diffract +diffracted +diffracting +diffracts +diffuse +diffused +diffuser +diffusers +diffuses +diffusing +diffusion +diffusions +diffusor +diffusors +dig +digamies +digamist +digamists +digamma +digammas +digamous +digamy +digest +digested +digester +digesters +digesting +digestion +digestions +digestive +digestor +digestors +digests +digged +digger +diggers +digging +diggings +dight +dighted +dighting +dights +digit +digital +digitalis +digitally +digitals +digitate +digitize +digitized +digitizes +digitizing +digits +diglot +diglots +dignified +dignifies +dignify +dignifying +dignitaries +dignitary +dignities +dignity +digoxin +digoxins +digraph +digraphs +digress +digressed +digresses +digressing +digression +digressions +digs +dihedral +dihedrals +dihedron +dihedrons +dihybrid +dihybrids +dihydric +dikdik +dikdiks +dike +diked +diker +dikers +dikes +diking +diktat +diktats +dilapidated +dilapidation +dilapidations +dilatant +dilatants +dilatate +dilatation +dilatations +dilate +dilated +dilater +dilaters +dilates +dilating +dilation +dilations +dilative +dilator +dilators +dilatory +dildo +dildoe +dildoes +dildos +dilemma +dilemmas +dilemmic +dilettante +dilettantes +dilettanti +diligence +diligences +diligent +diligently +dill +dillies +dills +dilly +dillydallied +dillydallies +dillydally +dillydallying +diluent +diluents +dilute +diluted +diluter +diluters +dilutes +diluting +dilution +dilutions +dilutive +dilutor +dilutors +diluvia +diluvial +diluvian +diluvion +diluvions +diluvium +diluviums +dim +dime +dimension +dimensional +dimensions +dimer +dimeric +dimerism +dimerisms +dimerize +dimerized +dimerizes +dimerizing +dimerous +dimers +dimes +dimeter +dimeters +dimethyl +dimethyls +dimetric +diminish +diminished +diminishes +diminishing +diminutive +dimities +dimity +dimly +dimmable +dimmed +dimmer +dimmers +dimmest +dimming +dimness +dimnesses +dimorph +dimorphs +dimout +dimouts +dimple +dimpled +dimples +dimplier +dimpliest +dimpling +dimply +dims +dimwit +dimwits +din +dinar +dinars +dindle +dindled +dindles +dindling +dine +dined +diner +dineric +dinero +dineros +diners +dines +dinette +dinettes +ding +dingbat +dingbats +dingdong +dingdonged +dingdonging +dingdongs +dinged +dingey +dingeys +dinghies +dinghy +dingier +dingies +dingiest +dingily +dinginess +dinginesses +dinging +dingle +dingles +dingo +dingoes +dings +dingus +dinguses +dingy +dining +dink +dinked +dinkey +dinkeys +dinkier +dinkies +dinkiest +dinking +dinkly +dinks +dinkum +dinky +dinned +dinner +dinners +dinning +dinosaur +dinosaurs +dins +dint +dinted +dinting +dints +diobol +diobolon +diobolons +diobols +diocesan +diocesans +diocese +dioceses +diode +diodes +dioecism +dioecisms +dioicous +diol +diolefin +diolefins +diols +diopside +diopsides +dioptase +dioptases +diopter +diopters +dioptral +dioptre +dioptres +dioptric +diorama +dioramas +dioramic +diorite +diorites +dioritic +dioxane +dioxanes +dioxid +dioxide +dioxides +dioxids +dip +diphase +diphasic +diphenyl +diphenyls +diphtheria +diphtherias +diphthong +diphthongs +diplegia +diplegias +diplex +diploe +diploes +diploic +diploid +diploidies +diploids +diploidy +diploma +diplomacies +diplomacy +diplomaed +diplomaing +diplomas +diplomat +diplomata +diplomatic +diplomats +diplont +diplonts +diplopia +diplopias +diplopic +diplopod +diplopods +diploses +diplosis +dipnoan +dipnoans +dipodic +dipodies +dipody +dipolar +dipole +dipoles +dippable +dipped +dipper +dippers +dippier +dippiest +dipping +dippy +dips +dipsades +dipsas +dipstick +dipsticks +dipt +diptera +dipteral +dipteran +dipterans +dipteron +dipththeria +dipththerias +diptyca +diptycas +diptych +diptychs +diquat +diquats +dirdum +dirdums +dire +direct +directed +directer +directest +directing +direction +directional +directions +directive +directives +directly +directness +director +directories +directors +directory +directs +direful +direly +direness +direnesses +direr +direst +dirge +dirgeful +dirges +dirham +dirhams +dirigible +dirigibles +diriment +dirk +dirked +dirking +dirks +dirl +dirled +dirling +dirls +dirndl +dirndls +dirt +dirtied +dirtier +dirties +dirtiest +dirtily +dirtiness +dirtinesses +dirts +dirty +dirtying +disabilities +disability +disable +disabled +disables +disabling +disabuse +disabused +disabuses +disabusing +disadvantage +disadvantageous +disadvantages +disaffect +disaffected +disaffecting +disaffection +disaffections +disaffects +disagree +disagreeable +disagreeables +disagreed +disagreeing +disagreement +disagreements +disagrees +disallow +disallowed +disallowing +disallows +disannul +disannulled +disannulling +disannuls +disappear +disappearance +disappearances +disappeared +disappearing +disappears +disappoint +disappointed +disappointing +disappointment +disappointments +disappoints +disapproval +disapprovals +disapprove +disapproved +disapproves +disapproving +disarm +disarmament +disarmaments +disarmed +disarmer +disarmers +disarming +disarms +disarrange +disarranged +disarrangement +disarrangements +disarranges +disarranging +disarray +disarrayed +disarraying +disarrays +disaster +disasters +disastrous +disavow +disavowal +disavowals +disavowed +disavowing +disavows +disband +disbanded +disbanding +disbands +disbar +disbarment +disbarments +disbarred +disbarring +disbars +disbelief +disbeliefs +disbelieve +disbelieved +disbelieves +disbelieving +disbosom +disbosomed +disbosoming +disbosoms +disbound +disbowel +disboweled +disboweling +disbowelled +disbowelling +disbowels +disbud +disbudded +disbudding +disbuds +disburse +disbursed +disbursement +disbursements +disburses +disbursing +disc +discant +discanted +discanting +discants +discard +discarded +discarding +discards +discase +discased +discases +discasing +disced +discept +discepted +discepting +discepts +discern +discerned +discernible +discerning +discernment +discernments +discerns +discharge +discharged +discharges +discharging +disci +discing +disciple +discipled +disciples +disciplinarian +disciplinarians +disciplinary +discipline +disciplined +disciplines +discipling +disciplining +disclaim +disclaimed +disclaiming +disclaims +disclike +disclose +disclosed +discloses +disclosing +disclosure +disclosures +disco +discoid +discoids +discolor +discoloration +discolorations +discolored +discoloring +discolors +discomfit +discomfited +discomfiting +discomfits +discomfiture +discomfitures +discomfort +discomforts +disconcert +disconcerted +disconcerting +disconcerts +disconnect +disconnected +disconnecting +disconnects +disconsolate +discontent +discontented +discontents +discontinuance +discontinuances +discontinuation +discontinue +discontinued +discontinues +discontinuing +discord +discordant +discorded +discording +discords +discos +discount +discounted +discounting +discounts +discourage +discouraged +discouragement +discouragements +discourages +discouraging +discourteous +discourteously +discourtesies +discourtesy +discover +discovered +discoverer +discoverers +discoveries +discovering +discovers +discovery +discredit +discreditable +discredited +discrediting +discredits +discreet +discreeter +discreetest +discreetly +discrepancies +discrepancy +discrete +discretion +discretionary +discretions +discriminate +discriminated +discriminates +discriminating +discrimination +discriminations +discriminatory +discrown +discrowned +discrowning +discrowns +discs +discursive +discursiveness +discursivenesses +discus +discuses +discuss +discussed +discusses +discussing +discussion +discussions +disdain +disdained +disdainful +disdainfully +disdaining +disdains +disease +diseased +diseases +diseasing +disembark +disembarkation +disembarkations +disembarked +disembarking +disembarks +disembodied +disenchant +disenchanted +disenchanting +disenchantment +disenchantments +disenchants +disendow +disendowed +disendowing +disendows +disentangle +disentangled +disentangles +disentangling +diseuse +diseuses +disfavor +disfavored +disfavoring +disfavors +disfigure +disfigured +disfigurement +disfigurements +disfigures +disfiguring +disfranchise +disfranchised +disfranchisement +disfranchisements +disfranchises +disfranchising +disfrock +disfrocked +disfrocking +disfrocks +disgorge +disgorged +disgorges +disgorging +disgrace +disgraced +disgraceful +disgracefully +disgraces +disgracing +disguise +disguised +disguises +disguising +disgust +disgusted +disgustedly +disgusting +disgustingly +disgusts +dish +disharmonies +disharmonious +disharmony +dishcloth +dishcloths +dishearten +disheartened +disheartening +disheartens +dished +dishelm +dishelmed +dishelming +dishelms +disherit +disherited +disheriting +disherits +dishes +dishevel +disheveled +disheveling +dishevelled +dishevelling +dishevels +dishful +dishfuls +dishier +dishiest +dishing +dishlike +dishonest +dishonesties +dishonestly +dishonesty +dishonor +dishonorable +dishonorably +dishonored +dishonoring +dishonors +dishpan +dishpans +dishrag +dishrags +dishware +dishwares +dishwasher +dishwashers +dishwater +dishwaters +dishy +disillusion +disillusioned +disillusioning +disillusionment +disillusionments +disillusions +disinclination +disinclinations +disincline +disinclined +disinclines +disinclining +disinfect +disinfectant +disinfectants +disinfected +disinfecting +disinfection +disinfections +disinfects +disinherit +disinherited +disinheriting +disinherits +disintegrate +disintegrated +disintegrates +disintegrating +disintegration +disintegrations +disinter +disinterested +disinterestedness +disinterestednesses +disinterred +disinterring +disinters +disject +disjected +disjecting +disjects +disjoin +disjoined +disjoining +disjoins +disjoint +disjointed +disjointing +disjoints +disjunct +disjuncts +disk +disked +disking +disklike +disks +dislike +disliked +disliker +dislikers +dislikes +disliking +dislimn +dislimned +dislimning +dislimns +dislocate +dislocated +dislocates +dislocating +dislocation +dislocations +dislodge +dislodged +dislodges +dislodging +disloyal +disloyalties +disloyalty +dismal +dismaler +dismalest +dismally +dismals +dismantle +dismantled +dismantles +dismantling +dismast +dismasted +dismasting +dismasts +dismay +dismayed +dismaying +dismays +disme +dismember +dismembered +dismembering +dismemberment +dismemberments +dismembers +dismes +dismiss +dismissal +dismissals +dismissed +dismisses +dismissing +dismount +dismounted +dismounting +dismounts +disobedience +disobediences +disobedient +disobey +disobeyed +disobeying +disobeys +disomic +disorder +disordered +disordering +disorderliness +disorderlinesses +disorderly +disorders +disorganization +disorganizations +disorganize +disorganized +disorganizes +disorganizing +disown +disowned +disowning +disowns +disparage +disparaged +disparagement +disparagements +disparages +disparaging +disparate +disparities +disparity +dispart +disparted +disparting +disparts +dispassion +dispassionate +dispassions +dispatch +dispatched +dispatcher +dispatchers +dispatches +dispatching +dispel +dispelled +dispelling +dispels +dispend +dispended +dispending +dispends +dispensable +dispensaries +dispensary +dispensation +dispensations +dispense +dispensed +dispenser +dispensers +dispenses +dispensing +dispersal +dispersals +disperse +dispersed +disperses +dispersing +dispersion +dispersions +dispirit +dispirited +dispiriting +dispirits +displace +displaced +displacement +displacements +displaces +displacing +displant +displanted +displanting +displants +display +displayed +displaying +displays +displease +displeased +displeases +displeasing +displeasure +displeasures +displode +disploded +displodes +disploding +displume +displumed +displumes +displuming +disport +disported +disporting +disports +disposable +disposal +disposals +dispose +disposed +disposer +disposers +disposes +disposing +disposition +dispositions +dispossess +dispossessed +dispossesses +dispossessing +dispossession +dispossessions +dispread +dispreading +dispreads +disprize +disprized +disprizes +disprizing +disproof +disproofs +disproportion +disproportionate +disproportions +disprove +disproved +disproves +disproving +disputable +disputably +disputation +disputations +dispute +disputed +disputer +disputers +disputes +disputing +disqualification +disqualifications +disqualified +disqualifies +disqualify +disqualifying +disquiet +disquieted +disquieting +disquiets +disrate +disrated +disrates +disrating +disregard +disregarded +disregarding +disregards +disrepair +disrepairs +disreputable +disrepute +disreputes +disrespect +disrespectful +disrespects +disrobe +disrobed +disrober +disrobers +disrobes +disrobing +disroot +disrooted +disrooting +disroots +disrupt +disrupted +disrupting +disruption +disruptions +disruptive +disrupts +dissatisfaction +dissatisfactions +dissatisfies +dissatisfy +dissave +dissaved +dissaves +dissaving +disseat +disseated +disseating +disseats +dissect +dissected +dissecting +dissection +dissections +dissects +disseise +disseised +disseises +disseising +disseize +disseized +disseizes +disseizing +dissemble +dissembled +dissembler +dissemblers +dissembles +dissembling +disseminate +disseminated +disseminates +disseminating +dissemination +dissent +dissented +dissenter +dissenters +dissentient +dissentients +dissenting +dissention +dissentions +dissents +dissert +dissertation +dissertations +disserted +disserting +disserts +disserve +disserved +disserves +disservice +disserving +dissever +dissevered +dissevering +dissevers +dissidence +dissidences +dissident +dissidents +dissimilar +dissimilarities +dissimilarity +dissipate +dissipated +dissipates +dissipating +dissipation +dissipations +dissociate +dissociated +dissociates +dissociating +dissociation +dissociations +dissolute +dissolution +dissolutions +dissolve +dissolved +dissolves +dissolving +dissonance +dissonances +dissonant +dissuade +dissuaded +dissuades +dissuading +dissuasion +dissuasions +distaff +distaffs +distain +distained +distaining +distains +distal +distally +distance +distanced +distances +distancing +distant +distaste +distasted +distasteful +distastes +distasting +distaves +distemper +distempers +distend +distended +distending +distends +distension +distensions +distent +distention +distentions +distich +distichs +distil +distill +distillate +distillates +distillation +distillations +distilled +distiller +distilleries +distillers +distillery +distilling +distills +distils +distinct +distincter +distinctest +distinction +distinctions +distinctive +distinctively +distinctiveness +distinctivenesses +distinctly +distinctness +distinctnesses +distinguish +distinguishable +distinguished +distinguishes +distinguishing +distome +distomes +distort +distorted +distorting +distortion +distortions +distorts +distract +distracted +distracting +distraction +distractions +distracts +distrain +distrained +distraining +distrains +distrait +distraught +distress +distressed +distresses +distressful +distressing +distribute +distributed +distributes +distributing +distribution +distributions +distributive +distributor +distributors +district +districted +districting +districts +distrust +distrusted +distrustful +distrusting +distrusts +disturb +disturbance +disturbances +disturbed +disturber +disturbers +disturbing +disturbs +disulfid +disulfids +disunion +disunions +disunite +disunited +disunites +disunities +disuniting +disunity +disuse +disused +disuses +disusing +disvalue +disvalued +disvalues +disvaluing +disyoke +disyoked +disyokes +disyoking +dit +dita +ditas +ditch +ditched +ditcher +ditchers +ditches +ditching +dite +dites +ditheism +ditheisms +ditheist +ditheists +dither +dithered +dithering +dithers +dithery +dithiol +dits +dittanies +dittany +ditties +ditto +dittoed +dittoing +dittos +ditty +diureses +diuresis +diuretic +diuretics +diurnal +diurnals +diuron +diurons +diva +divagate +divagated +divagates +divagating +divalent +divan +divans +divas +dive +dived +diver +diverge +diverged +divergence +divergences +divergent +diverges +diverging +divers +diverse +diversification +diversifications +diversify +diversion +diversions +diversities +diversity +divert +diverted +diverter +diverters +diverting +diverts +dives +divest +divested +divesting +divests +divide +divided +dividend +dividends +divider +dividers +divides +dividing +dividual +divination +divinations +divine +divined +divinely +diviner +diviners +divines +divinest +diving +divining +divinise +divinised +divinises +divinising +divinities +divinity +divinize +divinized +divinizes +divinizing +divisibilities +divisibility +divisible +division +divisional +divisions +divisive +divisor +divisors +divorce +divorced +divorcee +divorcees +divorcer +divorcers +divorces +divorcing +divot +divots +divulge +divulged +divulger +divulgers +divulges +divulging +divvied +divvies +divvy +divvying +diwan +diwans +dixit +dixits +dizen +dizened +dizening +dizens +dizygous +dizzied +dizzier +dizzies +dizziest +dizzily +dizziness +dizzy +dizzying +djebel +djebels +djellaba +djellabas +djin +djinn +djinni +djinns +djinny +djins +do +doable +doat +doated +doating +doats +dobber +dobbers +dobbies +dobbin +dobbins +dobby +dobie +dobies +dobla +doblas +doblon +doblones +doblons +dobra +dobras +dobson +dobsons +doby +doc +docent +docents +docetic +docile +docilely +docilities +docility +dock +dockage +dockages +docked +docker +dockers +docket +docketed +docketing +dockets +dockhand +dockhands +docking +dockland +docklands +docks +dockside +docksides +dockworker +dockworkers +dockyard +dockyards +docs +doctor +doctoral +doctored +doctoring +doctors +doctrinal +doctrine +doctrines +document +documentaries +documentary +documentation +documentations +documented +documenter +documenters +documenting +documents +dodder +doddered +dodderer +dodderers +doddering +dodders +doddery +dodge +dodged +dodger +dodgeries +dodgers +dodgery +dodges +dodgier +dodgiest +dodging +dodgy +dodo +dodoes +dodoism +dodoisms +dodos +doe +doer +doers +does +doeskin +doeskins +doest +doeth +doff +doffed +doffer +doffers +doffing +doffs +dog +dogbane +dogbanes +dogberries +dogberry +dogcart +dogcarts +dogcatcher +dogcatchers +dogdom +dogdoms +doge +dogedom +dogedoms +doges +dogeship +dogeships +dogey +dogeys +dogface +dogfaces +dogfight +dogfighting +dogfights +dogfish +dogfishes +dogfought +dogged +doggedly +dogger +doggerel +doggerels +doggeries +doggers +doggery +doggie +doggier +doggies +doggiest +dogging +doggish +doggo +doggone +doggoned +doggoneder +doggonedest +doggoner +doggones +doggonest +doggoning +doggrel +doggrels +doggy +doghouse +doghouses +dogie +dogies +dogleg +doglegged +doglegging +doglegs +doglike +dogma +dogmas +dogmata +dogmatic +dogmatism +dogmatisms +dognap +dognaped +dognaper +dognapers +dognaping +dognapped +dognapping +dognaps +dogs +dogsbodies +dogsbody +dogsled +dogsleds +dogteeth +dogtooth +dogtrot +dogtrots +dogtrotted +dogtrotting +dogvane +dogvanes +dogwatch +dogwatches +dogwood +dogwoods +dogy +doiled +doilies +doily +doing +doings +doit +doited +doits +dojo +dojos +dol +dolce +dolci +doldrums +dole +doled +doleful +dolefuller +dolefullest +dolefully +dolerite +dolerites +doles +dolesome +doling +doll +dollar +dollars +dolled +dollied +dollies +dolling +dollish +dollop +dollops +dolls +dolly +dollying +dolman +dolmans +dolmen +dolmens +dolomite +dolomites +dolor +doloroso +dolorous +dolors +dolour +dolours +dolphin +dolphins +dols +dolt +doltish +dolts +dom +domain +domains +domal +dome +domed +domelike +domes +domesday +domesdays +domestic +domestically +domesticate +domesticated +domesticates +domesticating +domestication +domestications +domestics +domic +domical +domicil +domicile +domiciled +domiciles +domiciling +domicils +dominance +dominances +dominant +dominants +dominate +dominated +dominates +dominating +domination +dominations +domine +domineer +domineered +domineering +domineers +domines +doming +dominick +dominicks +dominie +dominies +dominion +dominions +dominium +dominiums +domino +dominoes +dominos +doms +don +dona +donas +donate +donated +donates +donating +donation +donations +donative +donatives +donator +donators +done +donee +donees +doneness +donenesses +dong +dongola +dongolas +dongs +donjon +donjons +donkey +donkeys +donna +donnas +donne +donned +donnee +donnees +donnerd +donnered +donnert +donning +donnish +donor +donors +dons +donsie +donsy +donut +donuts +donzel +donzels +doodad +doodads +doodle +doodled +doodler +doodlers +doodles +doodling +doolee +doolees +doolie +doolies +dooly +doom +doomed +doomful +dooming +dooms +doomsday +doomsdays +doomster +doomsters +door +doorbell +doorbells +doorjamb +doorjambs +doorknob +doorknobs +doorless +doorman +doormat +doormats +doormen +doornail +doornails +doorpost +doorposts +doors +doorsill +doorsills +doorstep +doorsteps +doorstop +doorstops +doorway +doorways +dooryard +dooryards +doozer +doozers +doozies +doozy +dopa +dopamine +dopamines +dopant +dopants +dopas +dope +doped +doper +dopers +dopes +dopester +dopesters +dopey +dopier +dopiest +dopiness +dopinesses +doping +dopy +dor +dorado +dorados +dorbug +dorbugs +dorhawk +dorhawks +dories +dorm +dormancies +dormancy +dormant +dormer +dormers +dormice +dormie +dormient +dormin +dormins +dormitories +dormitory +dormouse +dorms +dormy +dorneck +dornecks +dornick +dornicks +dornock +dornocks +dorp +dorper +dorpers +dorps +dorr +dorrs +dors +dorsa +dorsad +dorsal +dorsally +dorsals +dorser +dorsers +dorsum +dorty +dory +dos +dosage +dosages +dose +dosed +doser +dosers +doses +dosimetry +dosing +doss +dossal +dossals +dossed +dossel +dossels +dosser +dosseret +dosserets +dossers +dosses +dossier +dossiers +dossil +dossils +dossing +dost +dot +dotage +dotages +dotal +dotard +dotardly +dotards +dotation +dotations +dote +doted +doter +doters +dotes +doth +dotier +dotiest +doting +dotingly +dots +dotted +dottel +dottels +dotter +dotterel +dotterels +dotters +dottier +dottiest +dottily +dotting +dottle +dottles +dottrel +dottrels +dotty +doty +double +doublecross +doublecrossed +doublecrosses +doublecrossing +doubled +doubler +doublers +doubles +doublet +doublets +doubling +doubloon +doubloons +doublure +doublures +doubly +doubt +doubted +doubter +doubters +doubtful +doubtfully +doubting +doubtless +doubts +douce +doucely +douceur +douceurs +douche +douched +douches +douching +dough +doughboy +doughboys +doughier +doughiest +doughnut +doughnuts +doughs +dought +doughtier +doughtiest +doughty +doughy +douma +doumas +dour +doura +dourah +dourahs +douras +dourer +dourest +dourine +dourines +dourly +dourness +dournesses +douse +doused +douser +dousers +douses +dousing +douzeper +douzepers +dove +dovecot +dovecote +dovecotes +dovecots +dovekey +dovekeys +dovekie +dovekies +dovelike +doven +dovened +dovening +dovens +doves +dovetail +dovetailed +dovetailing +dovetails +dovish +dow +dowable +dowager +dowagers +dowdier +dowdies +dowdiest +dowdily +dowdy +dowdyish +dowed +dowel +doweled +doweling +dowelled +dowelling +dowels +dower +dowered +doweries +dowering +dowers +dowery +dowie +dowing +down +downbeat +downbeats +downcast +downcasts +downcome +downcomes +downed +downer +downers +downfall +downfallen +downfalls +downgrade +downgraded +downgrades +downgrading +downhaul +downhauls +downhearted +downhill +downhills +downier +downiest +downing +downplay +downplayed +downplaying +downplays +downpour +downpours +downright +downs +downstairs +downtime +downtimes +downtown +downtowns +downtrod +downtrodden +downturn +downturns +downward +downwards +downwind +downy +dowries +dowry +dows +dowsabel +dowsabels +dowse +dowsed +dowser +dowsers +dowses +dowsing +doxie +doxies +doxologies +doxology +doxorubicin +doxy +doyen +doyenne +doyennes +doyens +doyley +doyleys +doylies +doyly +doze +dozed +dozen +dozened +dozening +dozens +dozenth +dozenths +dozer +dozers +dozes +dozier +doziest +dozily +doziness +dozinesses +dozing +dozy +drab +drabbed +drabber +drabbest +drabbet +drabbets +drabbing +drabble +drabbled +drabbles +drabbling +drably +drabness +drabnesses +drabs +dracaena +dracaenas +drachm +drachma +drachmae +drachmai +drachmas +drachms +draconic +draff +draffier +draffiest +draffish +draffs +draffy +draft +drafted +draftee +draftees +drafter +drafters +draftier +draftiest +draftily +drafting +draftings +drafts +draftsman +draftsmen +drafty +drag +dragee +dragees +dragged +dragger +draggers +draggier +draggiest +dragging +draggle +draggled +draggles +draggling +draggy +dragline +draglines +dragnet +dragnets +dragoman +dragomans +dragomen +dragon +dragonet +dragonets +dragons +dragoon +dragooned +dragooning +dragoons +dragrope +dragropes +drags +dragster +dragsters +drail +drails +drain +drainage +drainages +drained +drainer +drainers +draining +drainpipe +drainpipes +drains +drake +drakes +dram +drama +dramas +dramatic +dramatically +dramatist +dramatists +dramatization +dramatizations +dramatize +drammed +dramming +drammock +drammocks +drams +dramshop +dramshops +drank +drapable +drape +draped +draper +draperies +drapers +drapery +drapes +draping +drastic +drastically +drat +drats +dratted +dratting +draught +draughted +draughtier +draughtiest +draughting +draughts +draughty +drave +draw +drawable +drawback +drawbacks +drawbar +drawbars +drawbore +drawbores +drawbridge +drawbridges +drawdown +drawdowns +drawee +drawees +drawer +drawers +drawing +drawings +drawl +drawled +drawler +drawlers +drawlier +drawliest +drawling +drawls +drawly +drawn +draws +drawtube +drawtubes +dray +drayage +drayages +drayed +draying +drayman +draymen +drays +dread +dreaded +dreadful +dreadfully +dreadfuls +dreading +dreads +dream +dreamed +dreamer +dreamers +dreamful +dreamier +dreamiest +dreamily +dreaming +dreamlike +dreams +dreamt +dreamy +drear +drearier +drearies +dreariest +drearily +dreary +dreck +drecks +dredge +dredged +dredger +dredgers +dredges +dredging +dredgings +dree +dreed +dreeing +drees +dreg +dreggier +dreggiest +dreggish +dreggy +dregs +dreich +dreidel +dreidels +dreidl +dreidls +dreigh +drek +dreks +drench +drenched +drencher +drenchers +drenches +drenching +dress +dressage +dressages +dressed +dresser +dressers +dresses +dressier +dressiest +dressily +dressing +dressings +dressmaker +dressmakers +dressmaking +dressmakings +dressy +drest +drew +drib +dribbed +dribbing +dribble +dribbled +dribbler +dribblers +dribbles +dribblet +dribblets +dribbling +driblet +driblets +dribs +dried +drier +driers +dries +driest +drift +driftage +driftages +drifted +drifter +drifters +driftier +driftiest +drifting +driftpin +driftpins +drifts +driftwood +driftwoods +drifty +drill +drilled +driller +drillers +drilling +drillings +drills +drily +drink +drinkable +drinker +drinkers +drinking +drinks +drip +dripless +dripped +dripper +drippers +drippier +drippiest +dripping +drippings +drippy +drips +dript +drivable +drive +drivel +driveled +driveler +drivelers +driveling +drivelled +drivelling +drivels +driven +driver +drivers +drives +driveway +driveways +driving +drizzle +drizzled +drizzles +drizzlier +drizzliest +drizzling +drizzly +drogue +drogues +droit +droits +droll +drolled +droller +drolleries +drollery +drollest +drolling +drolls +drolly +dromedaries +dromedary +dromon +dromond +dromonds +dromons +drone +droned +droner +droners +drones +drongo +drongos +droning +dronish +drool +drooled +drooling +drools +droop +drooped +droopier +droopiest +droopily +drooping +droops +droopy +drop +drophead +dropheads +dropkick +dropkicks +droplet +droplets +dropout +dropouts +dropped +dropper +droppers +dropping +droppings +drops +dropshot +dropshots +dropsied +dropsies +dropsy +dropt +dropwort +dropworts +drosera +droseras +droshkies +droshky +droskies +drosky +dross +drosses +drossier +drossiest +drossy +drought +droughtier +droughtiest +droughts +droughty +drouk +drouked +drouking +drouks +drouth +drouthier +drouthiest +drouths +drouthy +drove +droved +drover +drovers +droves +droving +drown +drownd +drownded +drownding +drownds +drowned +drowner +drowners +drowning +drowns +drowse +drowsed +drowses +drowsier +drowsiest +drowsily +drowsing +drowsy +drub +drubbed +drubber +drubbers +drubbing +drubbings +drubs +drudge +drudged +drudger +drudgeries +drudgers +drudgery +drudges +drudging +drug +drugged +drugget +druggets +drugging +druggist +druggists +drugs +drugstore +drugstores +druid +druidess +druidesses +druidic +druidism +druidisms +druids +drum +drumbeat +drumbeats +drumble +drumbled +drumbles +drumbling +drumfire +drumfires +drumfish +drumfishes +drumhead +drumheads +drumlier +drumliest +drumlike +drumlin +drumlins +drumly +drummed +drummer +drummers +drumming +drumroll +drumrolls +drums +drumstick +drumsticks +drunk +drunkard +drunkards +drunken +drunkenly +drunkenness +drunkennesses +drunker +drunkest +drunks +drupe +drupelet +drupelets +drupes +druse +druses +druthers +dry +dryable +dryad +dryades +dryadic +dryads +dryer +dryers +dryest +drying +drylot +drylots +dryly +dryness +drynesses +drypoint +drypoints +drys +duad +duads +dual +dualism +dualisms +dualist +dualists +dualities +duality +dualize +dualized +dualizes +dualizing +dually +duals +dub +dubbed +dubber +dubbers +dubbin +dubbing +dubbings +dubbins +dubieties +dubiety +dubious +dubiously +dubiousness +dubiousnesses +dubonnet +dubonnets +dubs +duc +ducal +ducally +ducat +ducats +duce +duces +duchess +duchesses +duchies +duchy +duci +duck +duckbill +duckbills +ducked +ducker +duckers +duckie +duckier +duckies +duckiest +ducking +duckling +ducklings +duckpin +duckpins +ducks +ducktail +ducktails +duckweed +duckweeds +ducky +ducs +duct +ducted +ductile +ductilities +ductility +ducting +ductings +ductless +ducts +ductule +ductules +dud +duddie +duddy +dude +dudeen +dudeens +dudes +dudgeon +dudgeons +dudish +dudishly +duds +due +duecento +duecentos +duel +dueled +dueler +duelers +dueling +duelist +duelists +duelled +dueller +duellers +duelli +duelling +duellist +duellists +duello +duellos +duels +duende +duendes +dueness +duenesses +duenna +duennas +dues +duet +duets +duetted +duetting +duettist +duettists +duff +duffel +duffels +duffer +duffers +duffle +duffles +duffs +dug +dugong +dugongs +dugout +dugouts +dugs +dui +duiker +duikers +duit +duits +duke +dukedom +dukedoms +dukes +dulcet +dulcetly +dulcets +dulciana +dulcianas +dulcified +dulcifies +dulcify +dulcifying +dulcimer +dulcimers +dulcinea +dulcineas +dulia +dulias +dull +dullard +dullards +dulled +duller +dullest +dulling +dullish +dullness +dullnesses +dulls +dully +dulness +dulnesses +dulse +dulses +duly +duma +dumas +dumb +dumbbell +dumbbells +dumbed +dumber +dumbest +dumbfound +dumbfounded +dumbfounding +dumbfounds +dumbing +dumbly +dumbness +dumbnesses +dumbs +dumdum +dumdums +dumfound +dumfounded +dumfounding +dumfounds +dumka +dumky +dummied +dummies +dummkopf +dummkopfs +dummy +dummying +dump +dumpcart +dumpcarts +dumped +dumper +dumpers +dumpier +dumpiest +dumpily +dumping +dumpings +dumpish +dumpling +dumplings +dumps +dumpy +dun +dunce +dunces +dunch +dunches +duncical +duncish +dune +duneland +dunelands +dunelike +dunes +dung +dungaree +dungarees +dunged +dungeon +dungeons +dunghill +dunghills +dungier +dungiest +dunging +dungs +dungy +dunite +dunites +dunitic +dunk +dunked +dunker +dunkers +dunking +dunks +dunlin +dunlins +dunnage +dunnages +dunned +dunner +dunness +dunnesses +dunnest +dunning +dunnite +dunnites +duns +dunt +dunted +dunting +dunts +duo +duodena +duodenal +duodenum +duodenums +duolog +duologs +duologue +duologues +duomi +duomo +duomos +duopolies +duopoly +duopsonies +duopsony +duos +duotone +duotones +dup +dupable +dupe +duped +duper +duperies +dupers +dupery +dupes +duping +duple +duplex +duplexed +duplexer +duplexers +duplexes +duplexing +duplicate +duplicated +duplicates +duplicating +duplication +duplications +duplicator +duplicators +duplicity +dupped +dupping +dups +dura +durabilities +durability +durable +durables +durably +dural +duramen +duramens +durance +durances +duras +duration +durations +durative +duratives +durbar +durbars +dure +dured +dures +duress +duresses +durian +durians +during +durion +durions +durmast +durmasts +durn +durndest +durned +durneder +durnedest +durning +durns +duro +duroc +durocs +duros +durr +durra +durras +durrs +durst +durum +durums +dusk +dusked +duskier +duskiest +duskily +dusking +duskish +dusks +dusky +dust +dustbin +dustbins +dusted +duster +dusters +dustheap +dustheaps +dustier +dustiest +dustily +dusting +dustless +dustlike +dustman +dustmen +dustpan +dustpans +dustrag +dustrags +dusts +dustup +dustups +dusty +dutch +dutchman +dutchmen +duteous +dutiable +duties +dutiful +duty +duumvir +duumviri +duumvirs +duvetine +duvetines +duvetyn +duvetyne +duvetynes +duvetyns +dwarf +dwarfed +dwarfer +dwarfest +dwarfing +dwarfish +dwarfism +dwarfisms +dwarfs +dwarves +dwell +dwelled +dweller +dwellers +dwelling +dwellings +dwells +dwelt +dwindle +dwindled +dwindles +dwindling +dwine +dwined +dwines +dwining +dyable +dyad +dyadic +dyadics +dyads +dyarchic +dyarchies +dyarchy +dybbuk +dybbukim +dybbuks +dye +dyeable +dyed +dyeing +dyeings +dyer +dyers +dyes +dyestuff +dyestuffs +dyeweed +dyeweeds +dyewood +dyewoods +dying +dyings +dyke +dyked +dyker +dykes +dyking +dynamic +dynamics +dynamism +dynamisms +dynamist +dynamists +dynamite +dynamited +dynamites +dynamiting +dynamo +dynamos +dynast +dynastic +dynasties +dynasts +dynasty +dynatron +dynatrons +dyne +dynes +dynode +dynodes +dysautonomia +dysenteries +dysentery +dysfunction +dysfunctions +dysgenic +dyslexia +dyslexias +dyslexic +dyspepsia +dyspepsias +dyspepsies +dyspepsy +dyspeptic +dysphagia +dyspnea +dyspneal +dyspneas +dyspneic +dyspnoea +dyspnoeas +dyspnoic +dystaxia +dystaxias +dystocia +dystocias +dystonia +dystonias +dystopia +dystopias +dystrophies +dystrophy +dysuria +dysurias +dysuric +dyvour +dyvours +each +eager +eagerer +eagerest +eagerly +eagerness +eagernesses +eagers +eagle +eagles +eaglet +eaglets +eagre +eagres +eanling +eanlings +ear +earache +earaches +eardrop +eardrops +eardrum +eardrums +eared +earflap +earflaps +earful +earfuls +earing +earings +earl +earlap +earlaps +earldom +earldoms +earless +earlier +earliest +earlobe +earlobes +earlock +earlocks +earls +earlship +earlships +early +earmark +earmarked +earmarking +earmarks +earmuff +earmuffs +earn +earned +earner +earners +earnest +earnestly +earnestness +earnestnesses +earnests +earning +earnings +earns +earphone +earphones +earpiece +earpieces +earplug +earplugs +earring +earrings +ears +earshot +earshots +earstone +earstones +earth +earthed +earthen +earthenware +earthenwares +earthier +earthiest +earthily +earthiness +earthinesses +earthing +earthlier +earthliest +earthliness +earthlinesses +earthly +earthman +earthmen +earthnut +earthnuts +earthpea +earthpeas +earthquake +earthquakes +earths +earthset +earthsets +earthward +earthwards +earthworm +earthworms +earthy +earwax +earwaxes +earwig +earwigged +earwigging +earwigs +earworm +earworms +ease +eased +easeful +easel +easels +easement +easements +eases +easier +easies +easiest +easily +easiness +easinesses +easing +east +easter +easterlies +easterly +eastern +easters +easting +eastings +easts +eastward +eastwards +easy +easygoing +eat +eatable +eatables +eaten +eater +eateries +eaters +eatery +eath +eating +eatings +eats +eau +eaux +eave +eaved +eaves +eavesdrop +eavesdropped +eavesdropper +eavesdroppers +eavesdropping +eavesdrops +ebb +ebbed +ebbet +ebbets +ebbing +ebbs +ebon +ebonies +ebonise +ebonised +ebonises +ebonising +ebonite +ebonites +ebonize +ebonized +ebonizes +ebonizing +ebons +ebony +ebullient +ecarte +ecartes +ecaudate +ecbolic +ecbolics +eccentric +eccentrically +eccentricities +eccentricity +eccentrics +ecclesia +ecclesiae +ecclesiastic +ecclesiastical +ecclesiastics +eccrine +ecdyses +ecdysial +ecdysis +ecdyson +ecdysone +ecdysones +ecdysons +ecesis +ecesises +echard +echards +eche +eched +echelon +echeloned +echeloning +echelons +eches +echidna +echidnae +echidnas +echinate +eching +echini +echinoid +echinoids +echinus +echo +echoed +echoer +echoers +echoes +echoey +echoic +echoing +echoism +echoisms +echoless +eclair +eclairs +eclat +eclats +eclectic +eclectics +eclipse +eclipsed +eclipses +eclipsing +eclipsis +eclipsises +ecliptic +ecliptics +eclogite +eclogites +eclogue +eclogues +eclosion +eclosions +ecole +ecoles +ecologic +ecological +ecologically +ecologies +ecologist +ecologists +ecology +economic +economical +economically +economics +economies +economist +economists +economize +economized +economizes +economizing +economy +ecotonal +ecotone +ecotones +ecotype +ecotypes +ecotypic +ecraseur +ecraseurs +ecru +ecrus +ecstasies +ecstasy +ecstatic +ecstatically +ecstatics +ectases +ectasis +ectatic +ecthyma +ecthymata +ectoderm +ectoderms +ectomere +ectomeres +ectopia +ectopias +ectopic +ectosarc +ectosarcs +ectozoa +ectozoan +ectozoans +ectozoon +ectypal +ectype +ectypes +ecu +ecumenic +ecus +eczema +eczemas +edacious +edacities +edacity +edaphic +eddied +eddies +eddo +eddoes +eddy +eddying +edelstein +edema +edemas +edemata +edentate +edentates +edge +edged +edgeless +edger +edgers +edges +edgeways +edgewise +edgier +edgiest +edgily +edginess +edginesses +edging +edgings +edgy +edh +edhs +edibilities +edibility +edible +edibles +edict +edictal +edicts +edification +edifications +edifice +edifices +edified +edifier +edifiers +edifies +edify +edifying +edile +ediles +edit +editable +edited +editing +edition +editions +editor +editorial +editorialize +editorialized +editorializes +editorializing +editorially +editorials +editors +editress +editresses +edits +educable +educables +educate +educated +educates +educating +education +educational +educations +educator +educators +educe +educed +educes +educing +educt +eduction +eductions +eductive +eductor +eductors +educts +eel +eelgrass +eelgrasses +eelier +eeliest +eellike +eelpout +eelpouts +eels +eelworm +eelworms +eely +eerie +eerier +eeriest +eerily +eeriness +eerinesses +eery +ef +eff +effable +efface +effaced +effacement +effacements +effacer +effacers +effaces +effacing +effect +effected +effecter +effecters +effecting +effective +effectively +effectiveness +effector +effectors +effects +effectual +effectually +effectualness +effectualnesses +effeminacies +effeminacy +effeminate +effendi +effendis +efferent +efferents +effervesce +effervesced +effervescence +effervescences +effervescent +effervescently +effervesces +effervescing +effete +effetely +efficacies +efficacious +efficacy +efficiencies +efficiency +efficient +efficiently +effigies +effigy +effluent +effluents +effluvia +efflux +effluxes +effort +effortless +effortlessly +efforts +effrontery +effs +effulge +effulged +effulges +effulging +effuse +effused +effuses +effusing +effusion +effusions +effusive +effusively +efs +eft +efts +eftsoon +eftsoons +egad +egads +egal +egalite +egalites +eger +egers +egest +egesta +egested +egesting +egestion +egestions +egestive +egests +egg +eggar +eggars +eggcup +eggcups +egged +egger +eggers +egghead +eggheads +egging +eggnog +eggnogs +eggplant +eggplants +eggs +eggshell +eggshells +egis +egises +eglatere +eglateres +ego +egoism +egoisms +egoist +egoistic +egoists +egomania +egomanias +egos +egotism +egotisms +egotist +egotistic +egotistical +egotistically +egotists +egregious +egregiously +egress +egressed +egresses +egressing +egret +egrets +eh +eide +eider +eiderdown +eiderdowns +eiders +eidetic +eidola +eidolon +eidolons +eidos +eight +eighteen +eighteens +eighteenth +eighteenths +eighth +eighthly +eighths +eighties +eightieth +eightieths +eights +eightvo +eightvos +eighty +eikon +eikones +eikons +einkorn +einkorns +eirenic +either +ejaculate +ejaculated +ejaculates +ejaculating +ejaculation +ejaculations +eject +ejecta +ejected +ejecting +ejection +ejections +ejective +ejectives +ejector +ejectors +ejects +eke +eked +ekes +eking +ekistic +ekistics +ektexine +ektexines +el +elaborate +elaborated +elaborately +elaborateness +elaboratenesses +elaborates +elaborating +elaboration +elaborations +elain +elains +elan +eland +elands +elans +elaphine +elapid +elapids +elapine +elapse +elapsed +elapses +elapsing +elastase +elastases +elastic +elasticities +elasticity +elastics +elastin +elastins +elate +elated +elatedly +elater +elaterid +elaterids +elaterin +elaterins +elaters +elates +elating +elation +elations +elative +elatives +elbow +elbowed +elbowing +elbows +eld +elder +elderberries +elderberry +elderly +elders +eldest +eldrich +eldritch +elds +elect +elected +electing +election +elections +elective +electives +elector +electoral +electorate +electorates +electors +electret +electrets +electric +electrical +electrically +electrician +electricians +electricities +electricity +electrics +electrification +electrifications +electro +electrocardiogram +electrocardiograms +electrocardiograph +electrocardiographs +electrocute +electrocuted +electrocutes +electrocuting +electrocution +electrocutions +electrode +electrodes +electroed +electroing +electrolysis +electrolysises +electrolyte +electrolytes +electrolytic +electromagnet +electromagnetally +electromagnetic +electromagnets +electron +electronic +electronics +electrons +electroplate +electroplated +electroplates +electroplating +electros +electrum +electrums +elects +elegance +elegances +elegancies +elegancy +elegant +elegantly +elegiac +elegiacs +elegies +elegise +elegised +elegises +elegising +elegist +elegists +elegit +elegits +elegize +elegized +elegizes +elegizing +elegy +element +elemental +elementary +elements +elemi +elemis +elenchi +elenchic +elenchus +elenctic +elephant +elephants +elevate +elevated +elevates +elevating +elevation +elevations +elevator +elevators +eleven +elevens +eleventh +elevenths +elevon +elevons +elf +elfin +elfins +elfish +elfishly +elflock +elflocks +elhi +elicit +elicited +eliciting +elicitor +elicitors +elicits +elide +elided +elides +elidible +eliding +eligibilities +eligibility +eligible +eligibles +eligibly +eliminate +eliminated +eliminates +eliminating +elimination +eliminations +elision +elisions +elite +elites +elitism +elitisms +elitist +elitists +elixir +elixirs +elk +elkhound +elkhounds +elks +ell +ellipse +ellipses +ellipsis +elliptic +elliptical +ells +elm +elmier +elmiest +elms +elmy +elocution +elocutions +elodea +elodeas +eloign +eloigned +eloigner +eloigners +eloigning +eloigns +eloin +eloined +eloiner +eloiners +eloining +eloins +elongate +elongated +elongates +elongating +elongation +elongations +elope +eloped +eloper +elopers +elopes +eloping +eloquent +eloquently +els +else +elsewhere +eluant +eluants +eluate +eluates +elucidate +elucidated +elucidates +elucidating +elucidation +elucidations +elude +eluded +eluder +eluders +eludes +eluding +eluent +eluents +elusion +elusions +elusive +elusively +elusiveness +elusivenesses +elusory +elute +eluted +elutes +eluting +elution +elutions +eluvia +eluvial +eluviate +eluviated +eluviates +eluviating +eluvium +eluviums +elver +elvers +elves +elvish +elvishly +elysian +elytra +elytroid +elytron +elytrous +elytrum +em +emaciate +emaciated +emaciates +emaciating +emaciation +emaciations +emanate +emanated +emanates +emanating +emanation +emanations +emanator +emanators +emancipatation +emancipatations +emancipate +emancipated +emancipates +emancipating +emancipation +emancipations +emasculatation +emasculatations +emasculate +emasculated +emasculates +emasculating +embalm +embalmed +embalmer +embalmers +embalming +embalms +embank +embanked +embanking +embankment +embankments +embanks +embar +embargo +embargoed +embargoing +embargos +embark +embarkation +embarkations +embarked +embarking +embarks +embarrass +embarrassed +embarrasses +embarrassing +embarrassment +embarrassments +embarred +embarring +embars +embassies +embassy +embattle +embattled +embattles +embattling +embay +embayed +embaying +embays +embed +embedded +embedding +embeds +embellish +embellished +embellishes +embellishing +embellishment +embellishments +ember +embers +embezzle +embezzled +embezzlement +embezzlements +embezzler +embezzlers +embezzles +embezzling +embitter +embittered +embittering +embitters +emblaze +emblazed +emblazer +emblazers +emblazes +emblazing +emblazon +emblazoned +emblazoning +emblazons +emblem +emblematic +emblemed +embleming +emblems +embodied +embodier +embodiers +embodies +embodiment +embodiments +embody +embodying +embolden +emboldened +emboldening +emboldens +emboli +embolic +embolies +embolism +embolisms +embolus +emboly +emborder +embordered +embordering +emborders +embosk +embosked +embosking +embosks +embosom +embosomed +embosoming +embosoms +emboss +embossed +embosser +embossers +embosses +embossing +embow +embowed +embowel +emboweled +emboweling +embowelled +embowelling +embowels +embower +embowered +embowering +embowers +embowing +embows +embrace +embraced +embracer +embracers +embraces +embracing +embroider +embroidered +embroidering +embroiders +embroil +embroiled +embroiling +embroils +embrown +embrowned +embrowning +embrowns +embrue +embrued +embrues +embruing +embrute +embruted +embrutes +embruting +embryo +embryoid +embryon +embryonic +embryons +embryos +emcee +emceed +emcees +emceing +eme +emeer +emeerate +emeerates +emeers +emend +emendate +emendated +emendates +emendating +emendation +emendations +emended +emender +emenders +emending +emends +emerald +emeralds +emerge +emerged +emergence +emergences +emergencies +emergency +emergent +emergents +emerges +emerging +emeries +emerita +emeriti +emeritus +emerod +emerods +emeroid +emeroids +emersed +emersion +emersions +emery +emes +emeses +emesis +emetic +emetics +emetin +emetine +emetines +emetins +emeu +emeus +emeute +emeutes +emigrant +emigrants +emigrate +emigrated +emigrates +emigrating +emigration +emigrations +emigre +emigres +eminence +eminences +eminencies +eminency +eminent +eminently +emir +emirate +emirates +emirs +emissaries +emissary +emission +emissions +emissive +emit +emits +emitted +emitter +emitters +emitting +emmer +emmers +emmet +emmets +emodin +emodins +emolument +emoluments +emote +emoted +emoter +emoters +emotes +emoting +emotion +emotional +emotionally +emotions +emotive +empale +empaled +empaler +empalers +empales +empaling +empanel +empaneled +empaneling +empanelled +empanelling +empanels +empathic +empathies +empathy +emperies +emperor +emperors +empery +emphases +emphasis +emphasize +emphasized +emphasizes +emphasizing +emphatic +emphatically +emphysema +emphysemas +empire +empires +empiric +empirical +empirically +empirics +emplace +emplaced +emplaces +emplacing +emplane +emplaned +emplanes +emplaning +employ +employe +employed +employee +employees +employer +employers +employes +employing +employment +employments +employs +empoison +empoisoned +empoisoning +empoisons +emporia +emporium +emporiums +empower +empowered +empowering +empowers +empress +empresses +emprise +emprises +emprize +emprizes +emptied +emptier +emptiers +empties +emptiest +emptily +emptiness +emptinesses +emptings +emptins +empty +emptying +empurple +empurpled +empurples +empurpling +empyema +empyemas +empyemata +empyemic +empyreal +empyrean +empyreans +ems +emu +emulate +emulated +emulates +emulating +emulation +emulations +emulator +emulators +emulous +emulsification +emulsifications +emulsified +emulsifier +emulsifiers +emulsifies +emulsify +emulsifying +emulsion +emulsions +emulsive +emulsoid +emulsoids +emus +emyd +emyde +emydes +emyds +en +enable +enabled +enabler +enablers +enables +enabling +enact +enacted +enacting +enactive +enactment +enactments +enactor +enactors +enactory +enacts +enamel +enameled +enameler +enamelers +enameling +enamelled +enamelling +enamels +enamine +enamines +enamor +enamored +enamoring +enamors +enamour +enamoured +enamouring +enamours +enate +enates +enatic +enation +enations +encaenia +encage +encaged +encages +encaging +encamp +encamped +encamping +encampment +encampments +encamps +encase +encased +encases +encash +encashed +encashes +encashing +encasing +enceinte +enceintes +encephalitides +encephalitis +enchain +enchained +enchaining +enchains +enchant +enchanted +enchanter +enchanters +enchanting +enchantment +enchantments +enchantress +enchantresses +enchants +enchase +enchased +enchaser +enchasers +enchases +enchasing +enchoric +encina +encinal +encinas +encipher +enciphered +enciphering +enciphers +encircle +encircled +encircles +encircling +enclasp +enclasped +enclasping +enclasps +enclave +enclaves +enclitic +enclitics +enclose +enclosed +encloser +enclosers +encloses +enclosing +enclosure +enclosures +encode +encoded +encoder +encoders +encodes +encoding +encomia +encomium +encomiums +encompass +encompassed +encompasses +encompassing +encore +encored +encores +encoring +encounter +encountered +encountering +encounters +encourage +encouraged +encouragement +encouragements +encourages +encouraging +encroach +encroached +encroaches +encroaching +encroachment +encroachments +encrust +encrusted +encrusting +encrusts +encrypt +encrypted +encrypting +encrypts +encumber +encumberance +encumberances +encumbered +encumbering +encumbers +encyclic +encyclical +encyclicals +encyclics +encyclopedia +encyclopedias +encyclopedic +encyst +encysted +encysting +encysts +end +endamage +endamaged +endamages +endamaging +endameba +endamebae +endamebas +endanger +endangered +endangering +endangers +endarch +endarchies +endarchy +endbrain +endbrains +endear +endeared +endearing +endearment +endearments +endears +endeavor +endeavored +endeavoring +endeavors +ended +endemial +endemic +endemics +endemism +endemisms +ender +endermic +enders +endexine +endexines +ending +endings +endite +endited +endites +enditing +endive +endives +endleaf +endleaves +endless +endlessly +endlong +endmost +endocarp +endocarps +endocrine +endoderm +endoderms +endogamies +endogamy +endogen +endogenies +endogens +endogeny +endopod +endopods +endorse +endorsed +endorsee +endorsees +endorsement +endorsements +endorser +endorsers +endorses +endorsing +endorsor +endorsors +endosarc +endosarcs +endosmos +endosmoses +endosome +endosomes +endostea +endow +endowed +endower +endowers +endowing +endowment +endowments +endows +endozoic +endpaper +endpapers +endplate +endplates +endrin +endrins +ends +endue +endued +endues +enduing +endurable +endurance +endurances +endure +endured +endures +enduring +enduro +enduros +endways +endwise +enema +enemas +enemata +enemies +enemy +energetic +energetically +energid +energids +energies +energise +energised +energises +energising +energize +energized +energizes +energizing +energy +enervate +enervated +enervates +enervating +enervation +enervations +enface +enfaced +enfaces +enfacing +enfeeble +enfeebled +enfeebles +enfeebling +enfeoff +enfeoffed +enfeoffing +enfeoffs +enfetter +enfettered +enfettering +enfetters +enfever +enfevered +enfevering +enfevers +enfilade +enfiladed +enfilades +enfilading +enfin +enflame +enflamed +enflames +enflaming +enfold +enfolded +enfolder +enfolders +enfolding +enfolds +enforce +enforceable +enforced +enforcement +enforcements +enforcer +enforcers +enforces +enforcing +enframe +enframed +enframes +enframing +enfranchise +enfranchised +enfranchisement +enfranchisements +enfranchises +enfranchising +eng +engage +engaged +engagement +engagements +engager +engagers +engages +engaging +engender +engendered +engendering +engenders +engild +engilded +engilding +engilds +engine +engined +engineer +engineered +engineering +engineerings +engineers +engineries +enginery +engines +engining +enginous +engird +engirded +engirding +engirdle +engirdled +engirdles +engirdling +engirds +engirt +english +englished +englishes +englishing +englut +engluts +englutted +englutting +engorge +engorged +engorges +engorging +engraft +engrafted +engrafting +engrafts +engrail +engrailed +engrailing +engrails +engrain +engrained +engraining +engrains +engram +engramme +engrammes +engrams +engrave +engraved +engraver +engravers +engraves +engraving +engravings +engross +engrossed +engrosses +engrossing +engs +engulf +engulfed +engulfing +engulfs +enhalo +enhaloed +enhaloes +enhaloing +enhance +enhanced +enhancement +enhancements +enhancer +enhancers +enhances +enhancing +eniac +enigma +enigmas +enigmata +enigmatic +enisle +enisled +enisles +enisling +enjambed +enjoin +enjoined +enjoiner +enjoiners +enjoining +enjoins +enjoy +enjoyable +enjoyed +enjoyer +enjoyers +enjoying +enjoyment +enjoyments +enjoys +enkindle +enkindled +enkindles +enkindling +enlace +enlaced +enlaces +enlacing +enlarge +enlarged +enlargement +enlargements +enlarger +enlargers +enlarges +enlarging +enlighten +enlightened +enlightening +enlightenment +enlightenments +enlightens +enlist +enlisted +enlistee +enlistees +enlister +enlisters +enlisting +enlistment +enlistments +enlists +enliven +enlivened +enlivening +enlivens +enmesh +enmeshed +enmeshes +enmeshing +enmities +enmity +ennead +enneadic +enneads +enneagon +enneagons +ennoble +ennobled +ennobler +ennoblers +ennobles +ennobling +ennui +ennuis +ennuye +ennuyee +enol +enolase +enolases +enolic +enologies +enology +enols +enorm +enormities +enormity +enormous +enormously +enormousness +enormousnesses +enosis +enosises +enough +enoughs +enounce +enounced +enounces +enouncing +enow +enows +enplane +enplaned +enplanes +enplaning +enquire +enquired +enquires +enquiries +enquiring +enquiry +enrage +enraged +enrages +enraging +enrapt +enravish +enravished +enravishes +enravishing +enrich +enriched +enricher +enrichers +enriches +enriching +enrichment +enrichments +enrobe +enrobed +enrober +enrobers +enrobes +enrobing +enrol +enroll +enrolled +enrollee +enrollees +enroller +enrollers +enrolling +enrollment +enrollments +enrolls +enrols +enroot +enrooted +enrooting +enroots +ens +ensample +ensamples +ensconce +ensconced +ensconces +ensconcing +enscroll +enscrolled +enscrolling +enscrolls +ensemble +ensembles +enserf +enserfed +enserfing +enserfs +ensheath +ensheathed +ensheathing +ensheaths +enshrine +enshrined +enshrines +enshrining +enshroud +enshrouded +enshrouding +enshrouds +ensiform +ensign +ensigncies +ensigncy +ensigns +ensilage +ensilaged +ensilages +ensilaging +ensile +ensiled +ensiles +ensiling +enskied +enskies +ensky +enskyed +enskying +enslave +enslaved +enslavement +enslavements +enslaver +enslavers +enslaves +enslaving +ensnare +ensnared +ensnarer +ensnarers +ensnares +ensnaring +ensnarl +ensnarled +ensnarling +ensnarls +ensorcel +ensorceled +ensorceling +ensorcels +ensoul +ensouled +ensouling +ensouls +ensphere +ensphered +enspheres +ensphering +ensue +ensued +ensues +ensuing +ensure +ensured +ensurer +ensurers +ensures +ensuring +enswathe +enswathed +enswathes +enswathing +entail +entailed +entailer +entailers +entailing +entails +entameba +entamebae +entamebas +entangle +entangled +entanglement +entanglements +entangles +entangling +entases +entasia +entasias +entasis +entastic +entellus +entelluses +entente +ententes +enter +entera +enteral +entered +enterer +enterers +enteric +entering +enteron +enterons +enterprise +enterprises +enters +entertain +entertained +entertainer +entertainers +entertaining +entertainment +entertainments +entertains +enthalpies +enthalpy +enthetic +enthral +enthrall +enthralled +enthralling +enthralls +enthrals +enthrone +enthroned +enthrones +enthroning +enthuse +enthused +enthuses +enthusiasm +enthusiast +enthusiastic +enthusiastically +enthusiasts +enthusing +entia +entice +enticed +enticement +enticements +enticer +enticers +entices +enticing +entire +entirely +entires +entireties +entirety +entities +entitle +entitled +entitles +entitling +entity +entoderm +entoderms +entoil +entoiled +entoiling +entoils +entomb +entombed +entombing +entombs +entomological +entomologies +entomologist +entomologists +entomology +entopic +entourage +entourages +entozoa +entozoal +entozoan +entozoans +entozoic +entozoon +entrails +entrain +entrained +entraining +entrains +entrance +entranced +entrances +entrancing +entrant +entrants +entrap +entrapment +entrapments +entrapped +entrapping +entraps +entreat +entreated +entreaties +entreating +entreats +entreaty +entree +entrees +entrench +entrenched +entrenches +entrenching +entrenchment +entrenchments +entrepot +entrepots +entrepreneur +entrepreneurs +entresol +entresols +entries +entropies +entropy +entrust +entrusted +entrusting +entrusts +entry +entryway +entryways +entwine +entwined +entwines +entwining +entwist +entwisted +entwisting +entwists +enumerate +enumerated +enumerates +enumerating +enumeration +enumerations +enunciate +enunciated +enunciates +enunciating +enunciation +enunciations +enure +enured +enures +enuresis +enuresises +enuretic +enuring +envelop +envelope +enveloped +envelopes +enveloping +envelopment +envelopments +envelops +envenom +envenomed +envenoming +envenoms +enviable +enviably +envied +envier +enviers +envies +envious +environ +environed +environing +environment +environmental +environmentalist +environmentalists +environments +environs +envisage +envisaged +envisages +envisaging +envision +envisioned +envisioning +envisions +envoi +envois +envoy +envoys +envy +envying +enwheel +enwheeled +enwheeling +enwheels +enwind +enwinding +enwinds +enwomb +enwombed +enwombing +enwombs +enwound +enwrap +enwrapped +enwrapping +enwraps +enzootic +enzootics +enzym +enzyme +enzymes +enzymic +enzyms +eobiont +eobionts +eohippus +eohippuses +eolian +eolipile +eolipiles +eolith +eolithic +eoliths +eolopile +eolopiles +eon +eonian +eonism +eonisms +eons +eosin +eosine +eosines +eosinic +eosins +epact +epacts +eparch +eparchies +eparchs +eparchy +epaulet +epaulets +epee +epeeist +epeeists +epees +epeiric +epergne +epergnes +epha +ephah +ephahs +ephas +ephebe +ephebes +ephebi +ephebic +epheboi +ephebos +ephebus +ephedra +ephedras +ephedrin +ephedrins +ephemera +ephemerae +ephemeras +ephod +ephods +ephor +ephoral +ephorate +ephorates +ephori +ephors +epiblast +epiblasts +epibolic +epibolies +epiboly +epic +epical +epically +epicalyces +epicalyx +epicalyxes +epicarp +epicarps +epicedia +epicene +epicenes +epiclike +epicotyl +epicotyls +epics +epicure +epicurean +epicureans +epicures +epicycle +epicycles +epidemic +epidemics +epidemiology +epiderm +epidermis +epidermises +epiderms +epidote +epidotes +epidotic +epidural +epifauna +epifaunae +epifaunas +epifocal +epigeal +epigean +epigene +epigenic +epigeous +epigon +epigone +epigones +epigoni +epigonic +epigons +epigonus +epigram +epigrammatic +epigrams +epigraph +epigraphs +epigynies +epigyny +epilepsies +epilepsy +epileptic +epileptics +epilog +epilogs +epilogue +epilogued +epilogues +epiloguing +epimer +epimere +epimeres +epimeric +epimers +epimysia +epinaoi +epinaos +epinasties +epinasty +epiphanies +epiphany +epiphyte +epiphytes +episcia +episcias +episcopal +episcope +episcopes +episode +episodes +episodic +episomal +episome +episomes +epistasies +epistasy +epistaxis +epistle +epistler +epistlers +epistles +epistyle +epistyles +epitaph +epitaphs +epitases +epitasis +epitaxies +epitaxy +epithet +epithets +epitome +epitomes +epitomic +epitomize +epitomized +epitomizes +epitomizing +epizoa +epizoic +epizoism +epizoisms +epizoite +epizoites +epizoon +epizooties +epizooty +epoch +epochal +epochs +epode +epodes +eponym +eponymic +eponymies +eponyms +eponymy +epopee +epopees +epopoeia +epopoeias +epos +eposes +epoxide +epoxides +epoxied +epoxies +epoxy +epoxyed +epoxying +epsilon +epsilons +equabilities +equability +equable +equably +equal +equaled +equaling +equalise +equalised +equalises +equalising +equalities +equality +equalize +equalized +equalizes +equalizing +equalled +equalling +equally +equals +equanimities +equanimity +equate +equated +equates +equating +equation +equations +equator +equatorial +equators +equerries +equerry +equestrian +equestrians +equilateral +equilibrium +equine +equinely +equines +equinities +equinity +equinox +equinoxes +equip +equipage +equipages +equipment +equipments +equipped +equipper +equippers +equipping +equips +equiseta +equitable +equitant +equites +equities +equity +equivalence +equivalences +equivalent +equivalents +equivocal +equivocate +equivocated +equivocates +equivocating +equivocation +equivocations +equivoke +equivokes +er +era +eradiate +eradiated +eradiates +eradiating +eradicable +eradicate +eradicated +eradicates +eradicating +eras +erase +erased +eraser +erasers +erases +erasing +erasion +erasions +erasure +erasures +erbium +erbiums +ere +erect +erected +erecter +erecters +erectile +erecting +erection +erections +erective +erectly +erector +erectors +erects +erelong +eremite +eremites +eremitic +eremuri +eremurus +erenow +erepsin +erepsins +erethic +erethism +erethisms +erewhile +erg +ergastic +ergate +ergates +ergo +ergodic +ergot +ergotic +ergotism +ergotisms +ergots +ergs +erica +ericas +ericoid +erigeron +erigerons +eringo +eringoes +eringos +eristic +eristics +erlking +erlkings +ermine +ermined +ermines +ern +erne +ernes +erns +erode +eroded +erodent +erodes +erodible +eroding +erogenic +eros +erose +erosely +eroses +erosible +erosion +erosions +erosive +erotic +erotica +erotical +erotically +erotics +erotism +erotisms +err +errancies +errancy +errand +errands +errant +errantly +errantries +errantry +errants +errata +erratas +erratic +erratically +erratum +erred +errhine +errhines +erring +erringly +erroneous +erroneously +error +errors +errs +ers +ersatz +ersatzes +erses +erst +erstwhile +eruct +eructate +eructated +eructates +eructating +eructed +eructing +eructs +erudite +erudition +eruditions +erugo +erugos +erumpent +erupt +erupted +erupting +eruption +eruptions +eruptive +eruptives +erupts +ervil +ervils +eryngo +eryngoes +eryngos +erythema +erythemas +erythematous +erythrocytosis +erythron +erythrons +es +escalade +escaladed +escalades +escalading +escalate +escalated +escalates +escalating +escalation +escalations +escalator +escalators +escallop +escalloped +escalloping +escallops +escalop +escaloped +escaloping +escalops +escapade +escapades +escape +escaped +escapee +escapees +escaper +escapers +escapes +escaping +escapism +escapisms +escapist +escapists +escar +escargot +escargots +escarole +escaroles +escarp +escarped +escarping +escarpment +escarpments +escarps +escars +eschalot +eschalots +eschar +eschars +escheat +escheated +escheating +escheats +eschew +eschewal +eschewals +eschewed +eschewing +eschews +escolar +escolars +escort +escorted +escorting +escorts +escot +escoted +escoting +escots +escrow +escrowed +escrowing +escrows +escuage +escuages +escudo +escudos +esculent +esculents +eserine +eserines +eses +eskar +eskars +esker +eskers +esophagi +esophagus +esoteric +espalier +espaliered +espaliering +espaliers +espanol +espanoles +esparto +espartos +especial +especially +espial +espials +espied +espiegle +espies +espionage +espionages +espousal +espousals +espouse +espoused +espouser +espousers +espouses +espousing +espresso +espressos +esprit +esprits +espy +espying +esquire +esquired +esquires +esquiring +ess +essay +essayed +essayer +essayers +essaying +essayist +essayists +essays +essence +essences +essential +essentially +esses +essoin +essoins +essonite +essonites +establish +established +establishes +establishing +establishment +establishments +estancia +estancias +estate +estated +estates +estating +esteem +esteemed +esteeming +esteems +ester +esterase +esterases +esterified +esterifies +esterify +esterifying +esters +estheses +esthesia +esthesias +esthesis +esthesises +esthete +esthetes +esthetic +estimable +estimate +estimated +estimates +estimating +estimation +estimations +estimator +estimators +estival +estivate +estivated +estivates +estivating +estop +estopped +estoppel +estoppels +estopping +estops +estovers +estragon +estragons +estral +estrange +estranged +estrangement +estrangements +estranges +estranging +estray +estrayed +estraying +estrays +estreat +estreated +estreating +estreats +estrin +estrins +estriol +estriols +estrogen +estrogens +estrone +estrones +estrous +estrual +estrum +estrums +estrus +estruses +estuaries +estuary +esurient +et +eta +etagere +etageres +etamin +etamine +etamines +etamins +etape +etapes +etas +etatism +etatisms +etatist +etatists +etcetera +etceteras +etch +etched +etcher +etchers +etches +etching +etchings +eternal +eternally +eternals +eterne +eternise +eternised +eternises +eternising +eternities +eternity +eternize +eternized +eternizes +eternizing +etesian +etesians +eth +ethane +ethanes +ethanol +ethanols +ethene +ethenes +ether +ethereal +etheric +etherified +etherifies +etherify +etherifying +etherish +etherize +etherized +etherizes +etherizing +ethers +ethic +ethical +ethically +ethicals +ethician +ethicians +ethicist +ethicists +ethicize +ethicized +ethicizes +ethicizing +ethics +ethinyl +ethinyls +ethion +ethions +ethmoid +ethmoids +ethnarch +ethnarchs +ethnic +ethnical +ethnicities +ethnicity +ethnics +ethnologic +ethnological +ethnologies +ethnology +ethnos +ethnoses +ethologies +ethology +ethos +ethoses +ethoxy +ethoxyl +ethoxyls +eths +ethyl +ethylate +ethylated +ethylates +ethylating +ethylene +ethylenes +ethylic +ethyls +ethyne +ethynes +ethynyl +ethynyls +etiolate +etiolated +etiolates +etiolating +etiologies +etiology +etna +etnas +etoile +etoiles +etude +etudes +etui +etuis +etwee +etwees +etyma +etymological +etymologist +etymologists +etymon +etymons +eucaine +eucaines +eucalypt +eucalypti +eucalypts +eucalyptus +eucalyptuses +eucharis +eucharises +eucharistic +euchre +euchred +euchres +euchring +euclase +euclases +eucrite +eucrites +eucritic +eudaemon +eudaemons +eudemon +eudemons +eugenic +eugenics +eugenist +eugenists +eugenol +eugenols +euglena +euglenas +eulachan +eulachans +eulachon +eulachons +eulogia +eulogiae +eulogias +eulogies +eulogise +eulogised +eulogises +eulogising +eulogist +eulogistic +eulogists +eulogium +eulogiums +eulogize +eulogized +eulogizes +eulogizing +eulogy +eunuch +eunuchs +euonymus +euonymuses +eupatrid +eupatridae +eupatrids +eupepsia +eupepsias +eupepsies +eupepsy +eupeptic +euphemism +euphemisms +euphemistic +euphenic +euphonic +euphonies +euphonious +euphony +euphoria +euphorias +euphoric +euphotic +euphrasies +euphrasy +euphroe +euphroes +euphuism +euphuisms +euphuist +euphuists +euploid +euploidies +euploids +euploidy +eupnea +eupneas +eupneic +eupnoea +eupnoeas +eupnoeic +eureka +euripi +euripus +euro +europium +europiums +euros +eurythmies +eurythmy +eustacies +eustacy +eustatic +eustele +eusteles +eutaxies +eutaxy +eutectic +eutectics +euthanasia +euthanasias +eutrophies +eutrophy +euxenite +euxenites +evacuant +evacuants +evacuate +evacuated +evacuates +evacuating +evacuation +evacuations +evacuee +evacuees +evadable +evade +evaded +evader +evaders +evades +evadible +evading +evaluable +evaluate +evaluated +evaluates +evaluating +evaluation +evaluations +evaluator +evaluators +evanesce +evanesced +evanesces +evanescing +evangel +evangelical +evangelism +evangelisms +evangelist +evangelistic +evangelists +evangels +evanish +evanished +evanishes +evanishing +evaporate +evaporated +evaporates +evaporating +evaporation +evaporations +evaporative +evaporator +evaporators +evasion +evasions +evasive +evasiveness +evasivenesses +eve +evection +evections +even +evened +evener +eveners +evenest +evenfall +evenfalls +evening +evenings +evenly +evenness +evennesses +evens +evensong +evensongs +event +eventful +eventide +eventides +events +eventual +eventualities +eventuality +eventually +ever +evergreen +evergreens +everlasting +evermore +eversion +eversions +evert +everted +everting +evertor +evertors +everts +every +everybody +everyday +everyman +everymen +everyone +everything +everyway +everywhere +eves +evict +evicted +evictee +evictees +evicting +eviction +evictions +evictor +evictors +evicts +evidence +evidenced +evidences +evidencing +evident +evidently +evil +evildoer +evildoers +eviler +evilest +eviller +evillest +evilly +evilness +evilnesses +evils +evince +evinced +evinces +evincing +evincive +eviscerate +eviscerated +eviscerates +eviscerating +evisceration +eviscerations +evitable +evite +evited +evites +eviting +evocable +evocation +evocations +evocative +evocator +evocators +evoke +evoked +evoker +evokers +evokes +evoking +evolute +evolutes +evolution +evolutionary +evolutions +evolve +evolved +evolver +evolvers +evolves +evolving +evonymus +evonymuses +evulsion +evulsions +evzone +evzones +ewe +ewer +ewers +ewes +ex +exacerbate +exacerbated +exacerbates +exacerbating +exact +exacta +exactas +exacted +exacter +exacters +exactest +exacting +exaction +exactions +exactitude +exactitudes +exactly +exactness +exactnesses +exactor +exactors +exacts +exaggerate +exaggerated +exaggeratedly +exaggerates +exaggerating +exaggeration +exaggerations +exaggerator +exaggerators +exalt +exaltation +exaltations +exalted +exalter +exalters +exalting +exalts +exam +examen +examens +examination +examinations +examine +examined +examinee +examinees +examiner +examiners +examines +examining +example +exampled +examples +exampling +exams +exanthem +exanthems +exarch +exarchal +exarchies +exarchs +exarchy +exasperate +exasperated +exasperates +exasperating +exasperation +exasperations +excavate +excavated +excavates +excavating +excavation +excavations +excavator +excavators +exceed +exceeded +exceeder +exceeders +exceeding +exceedingly +exceeds +excel +excelled +excellence +excellences +excellency +excellent +excellently +excelling +excels +except +excepted +excepting +exception +exceptional +exceptionalally +exceptions +excepts +excerpt +excerpted +excerpting +excerpts +excess +excesses +excessive +excessively +exchange +exchangeable +exchanged +exchanges +exchanging +excide +excided +excides +exciding +exciple +exciples +excise +excised +excises +excising +excision +excisions +excitabilities +excitability +excitant +excitants +excitation +excitations +excite +excited +excitedly +excitement +excitements +exciter +exciters +excites +exciting +exciton +excitons +excitor +excitors +exclaim +exclaimed +exclaiming +exclaims +exclamation +exclamations +exclamatory +exclave +exclaves +exclude +excluded +excluder +excluders +excludes +excluding +exclusion +exclusions +exclusive +exclusively +exclusiveness +exclusivenesses +excommunicate +excommunicated +excommunicates +excommunicating +excommunication +excommunications +excrement +excremental +excrements +excreta +excretal +excrete +excreted +excreter +excreters +excretes +excreting +excretion +excretions +excretory +excruciating +excruciatingly +exculpate +exculpated +exculpates +exculpating +excursion +excursions +excuse +excused +excuser +excusers +excuses +excusing +exeat +exec +execrate +execrated +execrates +execrating +execs +executable +execute +executed +executer +executers +executes +executing +execution +executioner +executioners +executions +executive +executives +executor +executors +executrix +executrixes +exedra +exedrae +exegeses +exegesis +exegete +exegetes +exegetic +exempla +exemplar +exemplars +exemplary +exemplification +exemplifications +exemplified +exemplifies +exemplify +exemplifying +exemplum +exempt +exempted +exempting +exemption +exemptions +exempts +exequial +exequies +exequy +exercise +exercised +exerciser +exercisers +exercises +exercising +exergual +exergue +exergues +exert +exerted +exerting +exertion +exertions +exertive +exerts +exes +exhalant +exhalants +exhalation +exhalations +exhale +exhaled +exhalent +exhalents +exhales +exhaling +exhaust +exhausted +exhausting +exhaustion +exhaustions +exhaustive +exhausts +exhibit +exhibited +exhibiting +exhibition +exhibitions +exhibitor +exhibitors +exhibits +exhilarate +exhilarated +exhilarates +exhilarating +exhilaration +exhilarations +exhort +exhortation +exhortations +exhorted +exhorter +exhorters +exhorting +exhorts +exhumation +exhumations +exhume +exhumed +exhumer +exhumers +exhumes +exhuming +exigence +exigences +exigencies +exigency +exigent +exigible +exiguities +exiguity +exiguous +exile +exiled +exiles +exilian +exilic +exiling +eximious +exine +exines +exist +existed +existence +existences +existent +existents +existing +exists +exit +exited +exiting +exits +exocarp +exocarps +exocrine +exocrines +exoderm +exoderms +exodoi +exodos +exodus +exoduses +exoergic +exogamic +exogamies +exogamy +exogen +exogens +exonerate +exonerated +exonerates +exonerating +exoneration +exonerations +exorable +exorbitant +exorcise +exorcised +exorcises +exorcising +exorcism +exorcisms +exorcist +exorcists +exorcize +exorcized +exorcizes +exorcizing +exordia +exordial +exordium +exordiums +exosmic +exosmose +exosmoses +exospore +exospores +exoteric +exotic +exotica +exotically +exoticism +exoticisms +exotics +exotism +exotisms +exotoxic +exotoxin +exotoxins +expand +expanded +expander +expanders +expanding +expands +expanse +expanses +expansion +expansions +expansive +expansively +expansiveness +expansivenesses +expatriate +expatriated +expatriates +expatriating +expect +expectancies +expectancy +expectant +expectantly +expectation +expectations +expected +expecting +expects +expedient +expedients +expedious +expedite +expedited +expediter +expediters +expedites +expediting +expedition +expeditions +expeditious +expel +expelled +expellee +expellees +expeller +expellers +expelling +expels +expend +expended +expender +expenders +expendible +expending +expenditure +expenditures +expends +expense +expensed +expenses +expensing +expensive +expensively +experience +experiences +experiment +experimental +experimentation +experimentations +experimented +experimenter +experimenters +experimenting +experiments +expert +experted +experting +expertise +expertises +expertly +expertness +expertnesses +experts +expiable +expiate +expiated +expiates +expiating +expiation +expiations +expiator +expiators +expiration +expirations +expire +expired +expirer +expirers +expires +expiries +expiring +expiry +explain +explainable +explained +explaining +explains +explanation +explanations +explanatory +explant +explanted +explanting +explants +expletive +expletives +explicable +explicably +explicit +explicitly +explicitness +explicitnesses +explicits +explode +exploded +exploder +exploders +explodes +exploding +exploit +exploitation +exploitations +exploited +exploiting +exploits +exploration +explorations +exploratory +explore +explored +explorer +explorers +explores +exploring +explosion +explosions +explosive +explosively +explosives +expo +exponent +exponential +exponentially +exponents +export +exportation +exportations +exported +exporter +exporters +exporting +exports +expos +exposal +exposals +expose +exposed +exposer +exposers +exposes +exposing +exposit +exposited +expositing +exposition +expositions +exposits +exposure +exposures +expound +expounded +expounding +expounds +express +expressed +expresses +expressible +expressibly +expressing +expression +expressionless +expressions +expressive +expressiveness +expressivenesses +expressly +expressway +expressways +expulse +expulsed +expulses +expulsing +expulsion +expulsions +expunge +expunged +expunger +expungers +expunges +expunging +expurgate +expurgated +expurgates +expurgating +expurgation +expurgations +exquisite +exscind +exscinded +exscinding +exscinds +exsecant +exsecants +exsect +exsected +exsecting +exsects +exsert +exserted +exserting +exserts +extant +extemporaneous +extemporaneously +extend +extendable +extended +extender +extenders +extendible +extending +extends +extension +extensions +extensive +extensively +extensor +extensors +extent +extents +extenuate +extenuated +extenuates +extenuating +extenuation +extenuations +exterior +exteriors +exterminate +exterminated +exterminates +exterminating +extermination +exterminations +exterminator +exterminators +extern +external +externally +externals +externe +externes +externs +extinct +extincted +extincting +extinction +extinctions +extincts +extinguish +extinguishable +extinguished +extinguisher +extinguishers +extinguishes +extinguishing +extirpate +extirpated +extirpates +extirpating +extol +extoll +extolled +extoller +extollers +extolling +extolls +extols +extort +extorted +extorter +extorters +extorting +extortion +extortioner +extortioners +extortionist +extortionists +extortions +extorts +extra +extracampus +extraclassroom +extracommunity +extraconstitutional +extracontinental +extract +extractable +extracted +extracting +extraction +extractions +extractor +extractors +extracts +extracurricular +extradepartmental +extradiocesan +extradite +extradited +extradites +extraditing +extradition +extraditions +extrados +extradoses +extrafamilial +extragalactic +extragovernmental +extrahuman +extralegal +extramarital +extranational +extraneous +extraneously +extraordinarily +extraordinary +extraplanetary +extrapyramidal +extras +extrascholastic +extrasensory +extraterrestrial +extravagance +extravagances +extravagant +extravagantly +extravaganza +extravaganzas +extravasate +extravasated +extravasates +extravasating +extravasation +extravasations +extravehicular +extraversion +extraversions +extravert +extraverted +extraverts +extrema +extreme +extremely +extremer +extremes +extremest +extremities +extremity +extremum +extricable +extricate +extricated +extricates +extricating +extrication +extrications +extrorse +extrovert +extroverts +extrude +extruded +extruder +extruders +extrudes +extruding +exuberance +exuberances +exuberant +exuberantly +exudate +exudates +exudation +exudations +exude +exuded +exudes +exuding +exult +exultant +exulted +exulting +exults +exurb +exurban +exurbia +exurbias +exurbs +exuvia +exuviae +exuvial +exuviate +exuviated +exuviates +exuviating +exuvium +eyas +eyases +eye +eyeable +eyeball +eyeballed +eyeballing +eyeballs +eyebeam +eyebeams +eyebolt +eyebolts +eyebrow +eyebrows +eyecup +eyecups +eyed +eyedness +eyednesses +eyedropper +eyedroppers +eyeful +eyefuls +eyeglass +eyeglasses +eyehole +eyeholes +eyehook +eyehooks +eyeing +eyelash +eyelashes +eyeless +eyelet +eyelets +eyeletted +eyeletting +eyelid +eyelids +eyelike +eyeliner +eyeliners +eyen +eyepiece +eyepieces +eyepoint +eyepoints +eyer +eyers +eyes +eyeshade +eyeshades +eyeshot +eyeshots +eyesight +eyesights +eyesome +eyesore +eyesores +eyespot +eyespots +eyestalk +eyestalks +eyestone +eyestones +eyestrain +eyestrains +eyeteeth +eyetooth +eyewash +eyewashes +eyewater +eyewaters +eyewink +eyewinks +eyewitness +eying +eyne +eyra +eyras +eyre +eyres +eyrie +eyries +eyrir +eyry +fa +fable +fabled +fabler +fablers +fables +fabliau +fabliaux +fabling +fabric +fabricate +fabricated +fabricates +fabricating +fabrication +fabrications +fabrics +fabular +fabulist +fabulists +fabulous +fabulously +facade +facades +face +faceable +faced +facedown +faceless +facelessness +facelessnesses +facer +facers +faces +facesheet +facesheets +facet +facete +faceted +facetely +facetiae +faceting +facetious +facetiously +facets +facetted +facetting +faceup +facia +facial +facially +facials +facias +faciend +faciends +facies +facile +facilely +facilitate +facilitated +facilitates +facilitating +facilitator +facilitators +facilities +facility +facing +facings +facsimile +facsimiles +fact +factful +faction +factional +factionalism +factionalisms +factions +factious +factitious +factor +factored +factories +factoring +factors +factory +factotum +factotums +facts +factual +factually +facture +factures +facula +faculae +facular +faculties +faculty +fad +fadable +faddier +faddiest +faddish +faddism +faddisms +faddist +faddists +faddy +fade +fadeaway +fadeaways +faded +fadedly +fadeless +fader +faders +fades +fadge +fadged +fadges +fadging +fading +fadings +fado +fados +fads +faecal +faeces +faena +faenas +faerie +faeries +faery +fag +fagged +fagging +fagin +fagins +fagot +fagoted +fagoter +fagoters +fagoting +fagotings +fagots +fags +fahlband +fahlbands +fahrenheit +faience +faiences +fail +failed +failing +failings +faille +failles +fails +failure +failures +fain +faineant +faineants +fainer +fainest +faint +fainted +fainter +fainters +faintest +fainthearted +fainting +faintish +faintly +faintness +faintnesses +faints +fair +faired +fairer +fairest +fairground +fairgrounds +fairies +fairing +fairings +fairish +fairlead +fairleads +fairly +fairness +fairnesses +fairs +fairway +fairways +fairy +fairyism +fairyisms +fairyland +fairylands +faith +faithed +faithful +faithfully +faithfulness +faithfulnesses +faithfuls +faithing +faithless +faithlessly +faithlessness +faithlessnesses +faiths +faitour +faitours +fake +faked +fakeer +fakeers +faker +fakeries +fakers +fakery +fakes +faking +fakir +fakirs +falbala +falbalas +falcate +falcated +falchion +falchions +falcon +falconer +falconers +falconet +falconets +falconries +falconry +falcons +falderal +falderals +falderol +falderols +fall +fallacies +fallacious +fallacy +fallal +fallals +fallback +fallbacks +fallen +faller +fallers +fallfish +fallfishes +fallible +fallibly +falling +falloff +falloffs +fallout +fallouts +fallow +fallowed +fallowing +fallows +falls +false +falsehood +falsehoods +falsely +falseness +falsenesses +falser +falsest +falsetto +falsettos +falsie +falsies +falsification +falsifications +falsified +falsifies +falsify +falsifying +falsities +falsity +faltboat +faltboats +falter +faltered +falterer +falterers +faltering +falters +fame +famed +fameless +fames +famiglietti +familial +familiar +familiarities +familiarity +familiarize +familiarized +familiarizes +familiarizing +familiarly +familiars +families +family +famine +famines +faming +famish +famished +famishes +famishing +famous +famously +famuli +famulus +fan +fanatic +fanatical +fanaticism +fanaticisms +fanatics +fancied +fancier +fanciers +fancies +fanciest +fanciful +fancifully +fancily +fancy +fancying +fandango +fandangos +fandom +fandoms +fane +fanega +fanegada +fanegadas +fanegas +fanes +fanfare +fanfares +fanfaron +fanfarons +fanfold +fanfolds +fang +fanga +fangas +fanged +fangless +fanglike +fangs +fanion +fanions +fanjet +fanjets +fanlight +fanlights +fanlike +fanned +fanner +fannies +fanning +fanny +fano +fanon +fanons +fanos +fans +fantail +fantails +fantasia +fantasias +fantasie +fantasied +fantasies +fantasize +fantasized +fantasizes +fantasizing +fantasm +fantasms +fantast +fantastic +fantastical +fantastically +fantasts +fantasy +fantasying +fantod +fantods +fantom +fantoms +fanum +fanums +fanwise +fanwort +fanworts +faqir +faqirs +faquir +faquirs +far +farad +faradaic +faraday +faradays +faradic +faradise +faradised +faradises +faradising +faradism +faradisms +faradize +faradized +faradizes +faradizing +farads +faraway +farce +farced +farcer +farcers +farces +farceur +farceurs +farci +farcical +farcie +farcies +farcing +farcy +fard +farded +fardel +fardels +farding +fards +fare +fared +farer +farers +fares +farewell +farewelled +farewelling +farewells +farfal +farfals +farfel +farfels +farfetched +farina +farinas +faring +farinha +farinhas +farinose +farl +farle +farles +farls +farm +farmable +farmed +farmer +farmers +farmhand +farmhands +farmhouse +farmhouses +farming +farmings +farmland +farmlands +farms +farmstead +farmsteads +farmyard +farmyards +farnesol +farnesols +farness +farnesses +faro +faros +farouche +farrago +farragoes +farrier +farrieries +farriers +farriery +farrow +farrowed +farrowing +farrows +farsighted +farsightedness +farsightednesses +fart +farted +farther +farthermost +farthest +farthing +farthings +farting +farts +fas +fasces +fascia +fasciae +fascial +fascias +fasciate +fascicle +fascicled +fascicles +fascinate +fascinated +fascinates +fascinating +fascination +fascinations +fascine +fascines +fascism +fascisms +fascist +fascistic +fascists +fash +fashed +fashes +fashing +fashion +fashionable +fashionably +fashioned +fashioning +fashions +fashious +fast +fastback +fastbacks +fastball +fastballs +fasted +fasten +fastened +fastener +fasteners +fastening +fastenings +fastens +faster +fastest +fastiduous +fastiduously +fastiduousness +fastiduousnesses +fasting +fastings +fastness +fastnesses +fasts +fastuous +fat +fatal +fatalism +fatalisms +fatalist +fatalistic +fatalists +fatalities +fatality +fatally +fatback +fatbacks +fatbird +fatbirds +fate +fated +fateful +fatefully +fates +fathead +fatheads +father +fathered +fatherhood +fatherhoods +fathering +fatherland +fatherlands +fatherless +fatherly +fathers +fathom +fathomable +fathomed +fathoming +fathomless +fathoms +fatidic +fatigue +fatigued +fatigues +fatiguing +fating +fatless +fatlike +fatling +fatlings +fatly +fatness +fatnesses +fats +fatso +fatsoes +fatsos +fatstock +fatstocks +fatted +fatten +fattened +fattener +fatteners +fattening +fattens +fatter +fattest +fattier +fatties +fattiest +fattily +fatting +fattish +fatty +fatuities +fatuity +fatuous +fatuously +fatuousness +fatuousnesses +faubourg +faubourgs +faucal +faucals +fauces +faucet +faucets +faucial +faugh +fauld +faulds +fault +faulted +faultfinder +faultfinders +faultfinding +faultfindings +faultier +faultiest +faultily +faulting +faultless +faultlessly +faults +faulty +faun +fauna +faunae +faunal +faunally +faunas +faunlike +fauns +fauteuil +fauteuils +fauve +fauves +fauvism +fauvisms +fauvist +fauvists +favela +favelas +favonian +favor +favorable +favorably +favored +favorer +favorers +favoring +favorite +favorites +favoritism +favoritisms +favors +favour +favoured +favourer +favourers +favouring +favours +favus +favuses +fawn +fawned +fawner +fawners +fawnier +fawniest +fawning +fawnlike +fawns +fawny +fax +faxed +faxes +faxing +fay +fayalite +fayalites +fayed +faying +fays +faze +fazed +fazenda +fazendas +fazes +fazing +feal +fealties +fealty +fear +feared +fearer +fearers +fearful +fearfuller +fearfullest +fearfully +fearing +fearless +fearlessly +fearlessness +fearlessnesses +fears +fearsome +feasance +feasances +fease +feased +feases +feasibilities +feasibility +feasible +feasibly +feasing +feast +feasted +feaster +feasters +feastful +feasting +feasts +feat +feater +featest +feather +feathered +featherier +featheriest +feathering +featherless +feathers +feathery +featlier +featliest +featly +feats +feature +featured +featureless +features +featuring +feaze +feazed +feazes +feazing +febrific +febrile +fecal +feces +fecial +fecials +feck +feckless +feckly +fecks +fecula +feculae +feculent +fecund +fecundities +fecundity +fed +fedayee +fedayeen +federacies +federacy +federal +federalism +federalisms +federalist +federalists +federally +federals +federate +federated +federates +federating +federation +federations +fedora +fedoras +feds +fee +feeble +feebleminded +feeblemindedness +feeblemindednesses +feebleness +feeblenesses +feebler +feeblest +feeblish +feebly +feed +feedable +feedback +feedbacks +feedbag +feedbags +feedbox +feedboxes +feeder +feeders +feeding +feedlot +feedlots +feeds +feeing +feel +feeler +feelers +feeless +feeling +feelings +feels +fees +feet +feetless +feeze +feezed +feezes +feezing +feign +feigned +feigner +feigners +feigning +feigns +feint +feinted +feinting +feints +feirie +feist +feistier +feistiest +feists +feisty +feldspar +feldspars +felicitate +felicitated +felicitates +felicitating +felicitation +felicitations +felicities +felicitous +felicitously +felicity +felid +felids +feline +felinely +felines +felinities +felinity +fell +fella +fellable +fellah +fellaheen +fellahin +fellahs +fellas +fellatio +fellatios +felled +feller +fellers +fellest +fellies +felling +fellness +fellnesses +felloe +felloes +fellow +fellowed +fellowing +fellowly +fellowman +fellowmen +fellows +fellowship +fellowships +fells +felly +felon +felonies +felonious +felonries +felonry +felons +felony +felsite +felsites +felsitic +felspar +felspars +felstone +felstones +felt +felted +felting +feltings +felts +felucca +feluccas +felwort +felworts +female +females +feme +femes +feminacies +feminacy +feminie +feminine +feminines +femininities +femininity +feminise +feminised +feminises +feminising +feminism +feminisms +feminist +feminists +feminities +feminity +feminization +feminizations +feminize +feminized +feminizes +feminizing +femme +femmes +femora +femoral +femur +femurs +fen +fenagle +fenagled +fenagles +fenagling +fence +fenced +fencer +fencers +fences +fencible +fencibles +fencing +fencings +fend +fended +fender +fendered +fenders +fending +fends +fenestra +fenestrae +fennec +fennecs +fennel +fennels +fenny +fens +feod +feodaries +feodary +feods +feoff +feoffed +feoffee +feoffees +feoffer +feoffers +feoffing +feoffor +feoffors +feoffs +fer +feracities +feracity +feral +ferbam +ferbams +fere +feres +feretories +feretory +feria +feriae +ferial +ferias +ferine +ferities +ferity +ferlie +ferlies +ferly +fermata +fermatas +fermate +ferment +fermentation +fermentations +fermented +fermenting +ferments +fermi +fermion +fermions +fermis +fermium +fermiums +fern +ferneries +fernery +fernier +ferniest +fernless +fernlike +ferns +ferny +ferocious +ferociously +ferociousness +ferociousnesses +ferocities +ferocity +ferrate +ferrates +ferrel +ferreled +ferreling +ferrelled +ferrelling +ferrels +ferreous +ferret +ferreted +ferreter +ferreters +ferreting +ferrets +ferrety +ferriage +ferriages +ferric +ferried +ferries +ferrite +ferrites +ferritic +ferritin +ferritins +ferrous +ferrule +ferruled +ferrules +ferruling +ferrum +ferrums +ferry +ferryboat +ferryboats +ferrying +ferryman +ferrymen +fertile +fertilities +fertility +fertilization +fertilizations +fertilize +fertilized +fertilizer +fertilizers +fertilizes +fertilizing +ferula +ferulae +ferulas +ferule +feruled +ferules +feruling +fervencies +fervency +fervent +fervently +fervid +fervidly +fervor +fervors +fervour +fervours +fescue +fescues +fess +fesse +fessed +fesses +fessing +fesswise +festal +festally +fester +festered +festering +festers +festival +festivals +festive +festively +festivities +festivity +festoon +festooned +festooning +festoons +fet +feta +fetal +fetas +fetation +fetations +fetch +fetched +fetcher +fetchers +fetches +fetching +fetchingly +fete +feted +feterita +feteritas +fetes +fetial +fetiales +fetialis +fetials +fetich +fetiches +feticide +feticides +fetid +fetidly +feting +fetish +fetishes +fetlock +fetlocks +fetologies +fetology +fetor +fetors +fets +fetted +fetter +fettered +fetterer +fetterers +fettering +fetters +fetting +fettle +fettled +fettles +fettling +fettlings +fetus +fetuses +feu +feuar +feuars +feud +feudal +feudalism +feudalistic +feudally +feudaries +feudary +feuded +feuding +feudist +feudists +feuds +feued +feuing +feus +fever +fevered +feverfew +feverfews +fevering +feverish +feverous +fevers +few +fewer +fewest +fewness +fewnesses +fewtrils +fey +feyer +feyest +feyness +feynesses +fez +fezes +fezzed +fezzes +fiacre +fiacres +fiance +fiancee +fiancees +fiances +fiar +fiars +fiaschi +fiasco +fiascoes +fiascos +fiat +fiats +fib +fibbed +fibber +fibbers +fibbing +fiber +fiberboard +fiberboards +fibered +fiberglass +fiberglasses +fiberize +fiberized +fiberizes +fiberizing +fibers +fibre +fibres +fibril +fibrilla +fibrillae +fibrillate +fibrillated +fibrillates +fibrillating +fibrillation +fibrillations +fibrils +fibrin +fibrins +fibrocystic +fibroid +fibroids +fibroin +fibroins +fibroma +fibromas +fibromata +fibroses +fibrosis +fibrotic +fibrous +fibs +fibula +fibulae +fibular +fibulas +fice +fices +fiche +fiches +fichu +fichus +ficin +ficins +fickle +fickleness +ficklenesses +fickler +ficklest +fico +ficoes +fictile +fiction +fictional +fictions +fictitious +fictive +fid +fiddle +fiddled +fiddler +fiddlers +fiddles +fiddlesticks +fiddling +fideism +fideisms +fideist +fideists +fidelities +fidelity +fidge +fidged +fidges +fidget +fidgeted +fidgeter +fidgeters +fidgeting +fidgets +fidgety +fidging +fido +fidos +fids +fiducial +fiduciaries +fiduciary +fie +fief +fiefdom +fiefdoms +fiefs +field +fielded +fielder +fielders +fielding +fields +fiend +fiendish +fiendishly +fiends +fierce +fiercely +fierceness +fiercenesses +fiercer +fiercest +fierier +fieriest +fierily +fieriness +fierinesses +fiery +fiesta +fiestas +fife +fifed +fifer +fifers +fifes +fifing +fifteen +fifteens +fifteenth +fifteenths +fifth +fifthly +fifths +fifties +fiftieth +fiftieths +fifty +fig +figeater +figeaters +figged +figging +fight +fighter +fighters +fighting +fightings +fights +figment +figments +figs +figuline +figulines +figural +figurant +figurants +figurate +figurative +figuratively +figure +figured +figurer +figurers +figures +figurine +figurines +figuring +figwort +figworts +fil +fila +filagree +filagreed +filagreeing +filagrees +filament +filamentous +filaments +filar +filaree +filarees +filaria +filariae +filarial +filarian +filariid +filariids +filature +filatures +filbert +filberts +filch +filched +filcher +filchers +filches +filching +file +filed +filefish +filefishes +filemot +filer +filers +files +filet +fileted +fileting +filets +filial +filially +filiate +filiated +filiates +filiating +filibeg +filibegs +filibuster +filibustered +filibusterer +filibusterers +filibustering +filibusters +filicide +filicides +filiform +filigree +filigreed +filigreeing +filigrees +filing +filings +filister +filisters +fill +fille +filled +filler +fillers +filles +fillet +filleted +filleting +fillets +fillies +filling +fillings +fillip +filliped +filliping +fillips +fills +filly +film +filmcard +filmcards +filmdom +filmdoms +filmed +filmgoer +filmgoers +filmic +filmier +filmiest +filmily +filming +filmland +filmlands +films +filmset +filmsets +filmsetting +filmstrip +filmstrips +filmy +filose +fils +filter +filterable +filtered +filterer +filterers +filtering +filters +filth +filthier +filthiest +filthily +filthiness +filthinesses +filths +filthy +filtrate +filtrated +filtrates +filtrating +filtration +filtrations +filum +fimble +fimbles +fimbria +fimbriae +fimbrial +fin +finable +finagle +finagled +finagler +finaglers +finagles +finagling +final +finale +finales +finalis +finalism +finalisms +finalist +finalists +finalities +finality +finalize +finalized +finalizes +finalizing +finally +finals +finance +financed +finances +financial +financially +financier +financiers +financing +finback +finbacks +finch +finches +find +finder +finders +finding +findings +finds +fine +fineable +fined +finely +fineness +finenesses +finer +fineries +finery +fines +finespun +finesse +finessed +finesses +finessing +finest +finfish +finfishes +finfoot +finfoots +finger +fingered +fingerer +fingerers +fingering +fingerling +fingerlings +fingernail +fingerprint +fingerprints +fingers +fingertip +fingertips +finial +finialed +finials +finical +finickier +finickiest +finickin +finicky +finikin +finiking +fining +finings +finis +finises +finish +finished +finisher +finishers +finishes +finishing +finite +finitely +finites +finitude +finitudes +fink +finked +finking +finks +finky +finless +finlike +finmark +finmarks +finned +finnickier +finnickiest +finnicky +finnier +finniest +finning +finnmark +finnmarks +finny +finochio +finochios +fins +fiord +fiords +fipple +fipples +fique +fiques +fir +fire +firearm +firearms +fireball +fireballs +firebird +firebirds +fireboat +fireboats +firebomb +firebombed +firebombing +firebombs +firebox +fireboxes +firebrat +firebrats +firebreak +firebreaks +firebug +firebugs +fireclay +fireclays +firecracker +firecrackers +fired +firedamp +firedamps +firedog +firedogs +firefang +firefanged +firefanging +firefangs +fireflies +firefly +firehall +firehalls +fireless +firelock +firelocks +fireman +firemen +firepan +firepans +firepink +firepinks +fireplace +fireplaces +fireplug +fireplugs +fireproof +fireproofed +fireproofing +fireproofs +firer +fireroom +firerooms +firers +fires +fireside +firesides +firetrap +firetraps +fireweed +fireweeds +firewood +firewoods +firework +fireworks +fireworm +fireworms +firing +firings +firkin +firkins +firm +firmament +firmaments +firman +firmans +firmed +firmer +firmers +firmest +firming +firmly +firmness +firmnesses +firms +firn +firns +firry +firs +first +firstly +firsts +firth +firths +fisc +fiscal +fiscally +fiscals +fiscs +fish +fishable +fishboat +fishboats +fishbone +fishbones +fishbowl +fishbowls +fished +fisher +fisheries +fisherman +fishermen +fishers +fishery +fishes +fisheye +fisheyes +fishgig +fishgigs +fishhook +fishhooks +fishier +fishiest +fishily +fishing +fishings +fishless +fishlike +fishline +fishlines +fishmeal +fishmeals +fishnet +fishnets +fishpole +fishpoles +fishpond +fishponds +fishtail +fishtailed +fishtailing +fishtails +fishway +fishways +fishwife +fishwives +fishy +fissate +fissile +fission +fissionable +fissional +fissioned +fissioning +fissions +fissiped +fissipeds +fissure +fissured +fissures +fissuring +fist +fisted +fistful +fistfuls +fistic +fisticuffs +fisting +fistnote +fistnotes +fists +fistula +fistulae +fistular +fistulas +fisty +fit +fitch +fitchee +fitches +fitchet +fitchets +fitchew +fitchews +fitchy +fitful +fitfully +fitly +fitment +fitments +fitness +fitnesses +fits +fittable +fitted +fitter +fitters +fittest +fitting +fittings +five +fivefold +fivepins +fiver +fivers +fives +fix +fixable +fixate +fixated +fixates +fixatif +fixatifs +fixating +fixation +fixations +fixative +fixatives +fixed +fixedly +fixedness +fixednesses +fixer +fixers +fixes +fixing +fixings +fixities +fixity +fixt +fixture +fixtures +fixure +fixures +fiz +fizgig +fizgigs +fizz +fizzed +fizzer +fizzers +fizzes +fizzier +fizziest +fizzing +fizzle +fizzled +fizzles +fizzling +fizzy +fjeld +fjelds +fjord +fjords +flab +flabbergast +flabbergasted +flabbergasting +flabbergasts +flabbier +flabbiest +flabbily +flabbiness +flabbinesses +flabby +flabella +flabs +flaccid +flack +flacks +flacon +flacons +flag +flagella +flagellate +flagellated +flagellates +flagellating +flagellation +flagellations +flagged +flagger +flaggers +flaggier +flaggiest +flagging +flaggings +flaggy +flagless +flagman +flagmen +flagon +flagons +flagpole +flagpoles +flagrant +flagrantly +flags +flagship +flagships +flagstaff +flagstaffs +flagstone +flagstones +flail +flailed +flailing +flails +flair +flairs +flak +flake +flaked +flaker +flakers +flakes +flakier +flakiest +flakily +flaking +flaky +flam +flambe +flambeau +flambeaus +flambeaux +flambee +flambeed +flambeing +flambes +flamboyance +flamboyances +flamboyant +flamboyantly +flame +flamed +flamen +flamenco +flamencos +flamens +flameout +flameouts +flamer +flamers +flames +flamier +flamiest +flamines +flaming +flamingo +flamingoes +flamingos +flammable +flammed +flamming +flams +flamy +flan +flancard +flancards +flanerie +flaneries +flanes +flaneur +flaneurs +flange +flanged +flanger +flangers +flanges +flanging +flank +flanked +flanker +flankers +flanking +flanks +flannel +flanneled +flanneling +flannelled +flannelling +flannels +flans +flap +flapjack +flapjacks +flapless +flapped +flapper +flappers +flappier +flappiest +flapping +flappy +flaps +flare +flared +flares +flaring +flash +flashed +flasher +flashers +flashes +flashgun +flashguns +flashier +flashiest +flashily +flashiness +flashinesses +flashing +flashings +flashlight +flashlights +flashy +flask +flasket +flaskets +flasks +flat +flatbed +flatbeds +flatboat +flatboats +flatcap +flatcaps +flatcar +flatcars +flatfeet +flatfish +flatfishes +flatfoot +flatfooted +flatfooting +flatfoots +flathead +flatheads +flatiron +flatirons +flatland +flatlands +flatlet +flatlets +flatling +flatly +flatness +flatnesses +flats +flatted +flatten +flattened +flattening +flattens +flatter +flattered +flatterer +flatteries +flattering +flatters +flattery +flattest +flatting +flattish +flattop +flattops +flatulence +flatulences +flatulent +flatus +flatuses +flatware +flatwares +flatwash +flatwashes +flatways +flatwise +flatwork +flatworks +flatworm +flatworms +flaunt +flaunted +flaunter +flaunters +flauntier +flauntiest +flaunting +flaunts +flaunty +flautist +flautists +flavin +flavine +flavines +flavins +flavone +flavones +flavonol +flavonols +flavor +flavored +flavorer +flavorers +flavorful +flavoring +flavorings +flavors +flavorsome +flavory +flavour +flavoured +flavouring +flavours +flavoury +flaw +flawed +flawier +flawiest +flawing +flawless +flaws +flawy +flax +flaxen +flaxes +flaxier +flaxiest +flaxseed +flaxseeds +flaxy +flay +flayed +flayer +flayers +flaying +flays +flea +fleabag +fleabags +fleabane +fleabanes +fleabite +fleabites +fleam +fleams +fleas +fleawort +fleaworts +fleche +fleches +fleck +flecked +flecking +flecks +flecky +flection +flections +fled +fledge +fledged +fledges +fledgier +fledgiest +fledging +fledgling +fledglings +fledgy +flee +fleece +fleeced +fleecer +fleecers +fleeces +fleech +fleeched +fleeches +fleeching +fleecier +fleeciest +fleecily +fleecing +fleecy +fleeing +fleer +fleered +fleering +fleers +flees +fleet +fleeted +fleeter +fleetest +fleeting +fleetness +fleetnesses +fleets +fleishig +flemish +flemished +flemishes +flemishing +flench +flenched +flenches +flenching +flense +flensed +flenser +flensers +flenses +flensing +flesh +fleshed +flesher +fleshers +fleshes +fleshier +fleshiest +fleshing +fleshings +fleshlier +fleshliest +fleshly +fleshpot +fleshpots +fleshy +fletch +fletched +fletcher +fletchers +fletches +fletching +fleury +flew +flews +flex +flexed +flexes +flexibilities +flexibility +flexible +flexibly +flexile +flexing +flexion +flexions +flexor +flexors +flexuose +flexuous +flexural +flexure +flexures +fley +fleyed +fleying +fleys +flic +flichter +flichtered +flichtering +flichters +flick +flicked +flicker +flickered +flickering +flickers +flickery +flicking +flicks +flics +flied +flier +fliers +flies +fliest +flight +flighted +flightier +flightiest +flighting +flightless +flights +flighty +flimflam +flimflammed +flimflamming +flimflams +flimsier +flimsies +flimsiest +flimsily +flimsiness +flimsinesses +flimsy +flinch +flinched +flincher +flinchers +flinches +flinching +flinder +flinders +fling +flinger +flingers +flinging +flings +flint +flinted +flintier +flintiest +flintily +flinting +flints +flinty +flip +flippancies +flippancy +flippant +flipped +flipper +flippers +flippest +flipping +flips +flirt +flirtation +flirtations +flirtatious +flirted +flirter +flirters +flirtier +flirtiest +flirting +flirts +flirty +flit +flitch +flitched +flitches +flitching +flite +flited +flites +fliting +flits +flitted +flitter +flittered +flittering +flitters +flitting +flivver +flivvers +float +floatage +floatages +floated +floater +floaters +floatier +floatiest +floating +floats +floaty +floc +flocced +flocci +floccing +floccose +floccule +floccules +flocculi +floccus +flock +flocked +flockier +flockiest +flocking +flockings +flocks +flocky +flocs +floe +floes +flog +flogged +flogger +floggers +flogging +floggings +flogs +flong +flongs +flood +flooded +flooder +flooders +flooding +floodlit +floods +floodwater +floodwaters +floodway +floodways +flooey +floor +floorage +floorages +floorboard +floorboards +floored +floorer +floorers +flooring +floorings +floors +floosies +floosy +floozie +floozies +floozy +flop +flopover +flopovers +flopped +flopper +floppers +floppier +floppiest +floppily +flopping +floppy +flops +flora +florae +floral +florally +floras +florence +florences +floret +florets +florid +floridly +florigen +florigens +florin +florins +florist +florists +floruit +floruits +floss +flosses +flossie +flossier +flossies +flossiest +flossy +flota +flotage +flotages +flotas +flotation +flotations +flotilla +flotillas +flotsam +flotsams +flounce +flounced +flounces +flouncier +flounciest +flouncing +flouncy +flounder +floundered +floundering +flounders +flour +floured +flouring +flourish +flourished +flourishes +flourishing +flours +floury +flout +flouted +flouter +flouters +flouting +flouts +flow +flowage +flowages +flowchart +flowcharts +flowed +flower +flowered +flowerer +flowerers +floweret +flowerets +flowerier +floweriest +floweriness +flowerinesses +flowering +flowerless +flowerpot +flowerpots +flowers +flowery +flowing +flown +flows +flowsheet +flowsheets +flu +flub +flubbed +flubbing +flubdub +flubdubs +flubs +fluctuate +fluctuated +fluctuates +fluctuating +fluctuation +fluctuations +flue +flued +fluencies +fluency +fluent +fluently +flueric +fluerics +flues +fluff +fluffed +fluffier +fluffiest +fluffily +fluffing +fluffs +fluffy +fluid +fluidal +fluidic +fluidics +fluidise +fluidised +fluidises +fluidising +fluidities +fluidity +fluidize +fluidized +fluidizes +fluidizing +fluidly +fluidounce +fluidounces +fluidram +fluidrams +fluids +fluke +fluked +flukes +flukey +flukier +flukiest +fluking +fluky +flume +flumed +flumes +fluming +flummeries +flummery +flummox +flummoxed +flummoxes +flummoxing +flump +flumped +flumping +flumps +flung +flunk +flunked +flunker +flunkers +flunkey +flunkeys +flunkies +flunking +flunks +flunky +fluor +fluorene +fluorenes +fluoresce +fluoresced +fluorescence +fluorescences +fluorescent +fluoresces +fluorescing +fluoric +fluorid +fluoridate +fluoridated +fluoridates +fluoridating +fluoridation +fluoridations +fluoride +fluorides +fluorids +fluorin +fluorine +fluorines +fluorins +fluorite +fluorites +fluorocarbon +fluorocarbons +fluoroscope +fluoroscopes +fluoroscopic +fluoroscopies +fluoroscopist +fluoroscopists +fluoroscopy +fluors +flurried +flurries +flurry +flurrying +flus +flush +flushed +flusher +flushers +flushes +flushest +flushing +fluster +flustered +flustering +flusters +flute +fluted +fluter +fluters +flutes +flutier +flutiest +fluting +flutings +flutist +flutists +flutter +fluttered +fluttering +flutters +fluttery +fluty +fluvial +flux +fluxed +fluxes +fluxing +fluxion +fluxions +fluyt +fluyts +fly +flyable +flyaway +flyaways +flybelt +flybelts +flyblew +flyblow +flyblowing +flyblown +flyblows +flyboat +flyboats +flyby +flybys +flyer +flyers +flying +flyings +flyleaf +flyleaves +flyman +flymen +flyover +flyovers +flypaper +flypapers +flypast +flypasts +flysch +flysches +flyspeck +flyspecked +flyspecking +flyspecks +flyte +flyted +flytes +flytier +flytiers +flyting +flytings +flytrap +flytraps +flyway +flyways +flywheel +flywheels +foal +foaled +foaling +foals +foam +foamed +foamer +foamers +foamier +foamiest +foamily +foaming +foamless +foamlike +foams +foamy +fob +fobbed +fobbing +fobs +focal +focalise +focalised +focalises +focalising +focalize +focalized +focalizes +focalizing +focally +foci +focus +focused +focuser +focusers +focuses +focusing +focussed +focusses +focussing +fodder +foddered +foddering +fodders +fodgel +foe +foehn +foehns +foeman +foemen +foes +foetal +foetid +foetor +foetors +foetus +foetuses +fog +fogbound +fogbow +fogbows +fogdog +fogdogs +fogey +fogeys +fogfruit +fogfruits +foggage +foggages +fogged +fogger +foggers +foggier +foggiest +foggily +fogging +foggy +foghorn +foghorns +fogie +fogies +fogless +fogs +fogy +fogyish +fogyism +fogyisms +foh +fohn +fohns +foible +foibles +foil +foilable +foiled +foiling +foils +foilsman +foilsmen +foin +foined +foining +foins +foison +foisons +foist +foisted +foisting +foists +folacin +folacins +folate +folates +fold +foldable +foldaway +foldboat +foldboats +folded +folder +folderol +folderols +folders +folding +foldout +foldouts +folds +folia +foliage +foliaged +foliages +foliar +foliate +foliated +foliates +foliating +folic +folio +folioed +folioing +folios +foliose +folious +folium +foliums +folk +folkish +folklike +folklore +folklores +folklorist +folklorists +folkmoot +folkmoots +folkmot +folkmote +folkmotes +folkmots +folks +folksier +folksiest +folksily +folksy +folktale +folktales +folkway +folkways +folles +follicle +follicles +follies +follis +follow +followed +follower +followers +following +followings +follows +folly +foment +fomentation +fomentations +fomented +fomenter +fomenters +fomenting +foments +fon +fond +fondant +fondants +fonded +fonder +fondest +fonding +fondle +fondled +fondler +fondlers +fondles +fondling +fondlings +fondly +fondness +fondnesses +fonds +fondu +fondue +fondues +fondus +fons +font +fontal +fontanel +fontanels +fontina +fontinas +fonts +food +foodless +foods +foofaraw +foofaraws +fool +fooled +fooleries +foolery +foolfish +foolfishes +foolhardiness +foolhardinesses +foolhardy +fooling +foolish +foolisher +foolishest +foolishness +foolishnesses +foolproof +fools +foolscap +foolscaps +foot +footage +footages +football +footballs +footbath +footbaths +footboy +footboys +footbridge +footbridges +footed +footer +footers +footfall +footfalls +footgear +footgears +foothill +foothills +foothold +footholds +footier +footiest +footing +footings +footle +footled +footler +footlers +footles +footless +footlight +footlights +footlike +footling +footlocker +footlockers +footloose +footman +footmark +footmarks +footmen +footnote +footnoted +footnotes +footnoting +footpace +footpaces +footpad +footpads +footpath +footpaths +footprint +footprints +footrace +footraces +footrest +footrests +footrope +footropes +foots +footsie +footsies +footslog +footslogged +footslogging +footslogs +footsore +footstep +footsteps +footstool +footstools +footwall +footwalls +footway +footways +footwear +footwears +footwork +footworks +footworn +footy +foozle +foozled +foozler +foozlers +foozles +foozling +fop +fopped +fopperies +foppery +fopping +foppish +fops +for +fora +forage +foraged +forager +foragers +forages +foraging +foram +foramen +foramens +foramina +forams +foray +forayed +forayer +forayers +foraying +forays +forb +forbad +forbade +forbear +forbearance +forbearances +forbearing +forbears +forbid +forbidal +forbidals +forbidden +forbidding +forbids +forbode +forboded +forbodes +forboding +forbore +forborne +forbs +forby +forbye +force +forced +forcedly +forceful +forcefully +forceps +forcer +forcers +forces +forcible +forcibly +forcing +forcipes +ford +fordable +forded +fordid +fording +fordless +fordo +fordoes +fordoing +fordone +fords +fore +forearm +forearmed +forearming +forearms +forebay +forebays +forebear +forebears +forebode +foreboded +forebodes +forebodies +foreboding +forebodings +forebody +foreboom +forebooms +foreby +forebye +forecast +forecasted +forecaster +forecasters +forecasting +forecastle +forecastles +forecasts +foreclose +foreclosed +forecloses +foreclosing +foreclosure +foreclosures +foredate +foredated +foredates +foredating +foredeck +foredecks +foredid +foredo +foredoes +foredoing +foredone +foredoom +foredoomed +foredooming +foredooms +foreface +forefaces +forefather +forefathers +forefeel +forefeeling +forefeels +forefeet +forefelt +forefend +forefended +forefending +forefends +forefinger +forefingers +forefoot +forefront +forefronts +foregather +foregathered +foregathering +foregathers +forego +foregoer +foregoers +foregoes +foregoing +foregone +foreground +foregrounds +foregut +foreguts +forehand +forehands +forehead +foreheads +forehoof +forehoofs +forehooves +foreign +foreigner +foreigners +foreknew +foreknow +foreknowing +foreknowledge +foreknowledges +foreknown +foreknows +foreladies +forelady +foreland +forelands +foreleg +forelegs +forelimb +forelimbs +forelock +forelocks +foreman +foremast +foremasts +foremen +foremilk +foremilks +foremost +forename +forenames +forenoon +forenoons +forensic +forensics +foreordain +foreordained +foreordaining +foreordains +forepart +foreparts +forepast +forepaw +forepaws +forepeak +forepeaks +foreplay +foreplays +forequarter +forequarters +foreran +forerank +foreranks +forerun +forerunner +forerunners +forerunning +foreruns +fores +foresaid +foresail +foresails +foresaw +foresee +foreseeable +foreseeing +foreseen +foreseer +foreseers +foresees +foreshadow +foreshadowed +foreshadowing +foreshadows +foreshow +foreshowed +foreshowing +foreshown +foreshows +foreside +foresides +foresight +foresighted +foresightedness +foresightednesses +foresights +foreskin +foreskins +forest +forestal +forestall +forestalled +forestalling +forestalls +forestay +forestays +forested +forester +foresters +foresting +forestland +forestlands +forestries +forestry +forests +foreswear +foresweared +foreswearing +foreswears +foretaste +foretasted +foretastes +foretasting +foretell +foretelling +foretells +forethought +forethoughts +foretime +foretimes +foretold +foretop +foretops +forever +forevermore +forevers +forewarn +forewarned +forewarning +forewarns +forewent +forewing +forewings +foreword +forewords +foreworn +foreyard +foreyards +forfeit +forfeited +forfeiting +forfeits +forfeiture +forfeitures +forfend +forfended +forfending +forfends +forgat +forgather +forgathered +forgathering +forgathers +forgave +forge +forged +forger +forgeries +forgers +forgery +forges +forget +forgetful +forgetfully +forgets +forgetting +forging +forgings +forgivable +forgive +forgiven +forgiveness +forgivenesses +forgiver +forgivers +forgives +forgiving +forgo +forgoer +forgoers +forgoes +forgoing +forgone +forgot +forgotten +forint +forints +forjudge +forjudged +forjudges +forjudging +fork +forked +forkedly +forker +forkers +forkful +forkfuls +forkier +forkiest +forking +forkless +forklift +forklifts +forklike +forks +forksful +forky +forlorn +forlorner +forlornest +form +formable +formal +formaldehyde +formaldehydes +formalin +formalins +formalities +formality +formalize +formalized +formalizes +formalizing +formally +formals +formant +formants +format +formate +formates +formation +formations +formative +formats +formatted +formatting +forme +formed +formee +former +formerly +formers +formes +formful +formic +formidable +formidably +forming +formless +formol +formols +forms +formula +formulae +formulas +formulate +formulated +formulates +formulating +formulation +formulations +formyl +formyls +fornical +fornicate +fornicated +fornicates +fornicating +fornication +fornicator +fornicators +fornices +fornix +forrader +forrit +forsake +forsaken +forsaker +forsakers +forsakes +forsaking +forsook +forsooth +forspent +forswear +forswearing +forswears +forswore +forsworn +forsythia +forsythias +fort +forte +fortes +forth +forthcoming +forthright +forthrightness +forthrightnesses +forthwith +forties +fortieth +fortieths +fortification +fortifications +fortified +fortifies +fortify +fortifying +fortis +fortitude +fortitudes +fortnight +fortnightly +fortnights +fortress +fortressed +fortresses +fortressing +forts +fortuities +fortuitous +fortuity +fortunate +fortunately +fortune +fortuned +fortunes +fortuning +forty +forum +forums +forward +forwarded +forwarder +forwardest +forwarding +forwardness +forwardnesses +forwards +forwent +forwhy +forworn +forzando +forzandos +foss +fossa +fossae +fossate +fosse +fosses +fossette +fossettes +fossick +fossicked +fossicking +fossicks +fossil +fossilize +fossilized +fossilizes +fossilizing +fossils +foster +fostered +fosterer +fosterers +fostering +fosters +fou +fought +foughten +foul +foulard +foulards +fouled +fouler +foulest +fouling +foulings +foully +foulmouthed +foulness +foulnesses +fouls +found +foundation +foundational +foundations +founded +founder +foundered +foundering +founders +founding +foundling +foundlings +foundries +foundry +founds +fount +fountain +fountained +fountaining +fountains +founts +four +fourchee +fourfold +fourgon +fourgons +fours +fourscore +foursome +foursomes +fourteen +fourteens +fourteenth +fourteenths +fourth +fourthly +fourths +fovea +foveae +foveal +foveate +foveated +foveola +foveolae +foveolar +foveolas +foveole +foveoles +foveolet +foveolets +fowl +fowled +fowler +fowlers +fowling +fowlings +fowlpox +fowlpoxes +fowls +fox +foxed +foxes +foxfire +foxfires +foxfish +foxfishes +foxglove +foxgloves +foxhole +foxholes +foxhound +foxhounds +foxier +foxiest +foxily +foxiness +foxinesses +foxing +foxings +foxlike +foxskin +foxskins +foxtail +foxtails +foxy +foy +foyer +foyers +foys +fozier +foziest +foziness +fozinesses +fozy +fracas +fracases +fracted +fraction +fractional +fractionally +fractionated +fractioned +fractioning +fractions +fractur +fracture +fractured +fractures +fracturing +fracturs +frae +fraena +fraenum +fraenums +frag +fragged +fragging +fraggings +fragile +fragilities +fragility +fragment +fragmentary +fragmentation +fragmentations +fragmented +fragmenting +fragments +fragrant +fragrantly +frags +frail +frailer +frailest +frailly +frails +frailties +frailty +fraise +fraises +fraktur +frakturs +framable +frame +framed +framer +framers +frames +framework +frameworks +framing +franc +franchise +franchisee +franchisees +franchises +francium +franciums +francs +frangibilities +frangibility +frangible +frank +franked +franker +frankers +frankest +frankfort +frankforter +frankforters +frankforts +frankfurt +frankfurter +frankfurters +frankfurts +frankincense +frankincenses +franking +franklin +franklins +frankly +frankness +franknesses +franks +frantic +frantically +franticly +frap +frappe +frapped +frappes +frapping +fraps +frat +frater +fraternal +fraternally +fraternities +fraternity +fraternization +fraternizations +fraternize +fraternized +fraternizes +fraternizing +fraters +fratricidal +fratricide +fratricides +frats +fraud +frauds +fraudulent +fraudulently +fraught +fraughted +fraughting +fraughts +fraulein +frauleins +fray +frayed +fraying +frayings +frays +frazzle +frazzled +frazzles +frazzling +freak +freaked +freakier +freakiest +freakily +freaking +freakish +freakout +freakouts +freaks +freaky +freckle +freckled +freckles +frecklier +freckliest +freckling +freckly +free +freebee +freebees +freebie +freebies +freeboot +freebooted +freebooter +freebooters +freebooting +freeboots +freeborn +freed +freedman +freedmen +freedom +freedoms +freeform +freehand +freehold +freeholds +freeing +freeload +freeloaded +freeloader +freeloaders +freeloading +freeloads +freely +freeman +freemen +freeness +freenesses +freer +freers +frees +freesia +freesias +freest +freestanding +freeway +freeways +freewill +freeze +freezer +freezers +freezes +freezing +freight +freighted +freighter +freighters +freighting +freights +fremd +fremitus +fremituses +frena +french +frenched +frenches +frenching +frenetic +frenetically +frenetics +frenula +frenulum +frenum +frenums +frenzied +frenzies +frenzily +frenzy +frenzying +frequencies +frequency +frequent +frequented +frequenter +frequenters +frequentest +frequenting +frequently +frequents +frere +freres +fresco +frescoed +frescoer +frescoers +frescoes +frescoing +frescos +fresh +freshed +freshen +freshened +freshening +freshens +fresher +freshes +freshest +freshet +freshets +freshing +freshly +freshman +freshmen +freshness +freshnesses +freshwater +fresnel +fresnels +fret +fretful +fretfully +fretfulness +fretfulnesses +fretless +frets +fretsaw +fretsaws +fretsome +fretted +frettier +frettiest +fretting +fretty +fretwork +fretworks +friable +friar +friaries +friarly +friars +friary +fribble +fribbled +fribbler +fribblers +fribbles +fribbling +fricando +fricandoes +fricassee +fricassees +friction +frictional +frictions +fridge +fridges +fried +friend +friended +friending +friendless +friendlier +friendlies +friendliest +friendliness +friendlinesses +friendly +friends +friendship +friendships +frier +friers +fries +frieze +friezes +frig +frigate +frigates +frigged +frigging +fright +frighted +frighten +frightened +frightening +frightens +frightful +frightfully +frightfulness +frightfulnesses +frighting +frights +frigid +frigidities +frigidity +frigidly +frigs +frijol +frijole +frijoles +frill +frilled +friller +frillers +frillier +frilliest +frilling +frillings +frills +frilly +fringe +fringed +fringes +fringier +fringiest +fringing +fringy +fripperies +frippery +frise +frises +frisette +frisettes +friseur +friseurs +frisk +frisked +frisker +friskers +frisket +friskets +friskier +friskiest +friskily +friskiness +friskinesses +frisking +frisks +frisky +frisson +frissons +frit +frith +friths +frits +fritt +fritted +fritter +frittered +frittering +fritters +fritting +fritts +frivol +frivoled +frivoler +frivolers +frivoling +frivolities +frivolity +frivolled +frivolling +frivolous +frivolously +frivols +friz +frized +frizer +frizers +frizes +frizette +frizettes +frizing +frizz +frizzed +frizzer +frizzers +frizzes +frizzier +frizziest +frizzily +frizzing +frizzle +frizzled +frizzler +frizzlers +frizzles +frizzlier +frizzliest +frizzling +frizzly +frizzy +fro +frock +frocked +frocking +frocks +froe +froes +frog +frogeye +frogeyed +frogeyes +frogfish +frogfishes +frogged +froggier +froggiest +frogging +froggy +froglike +frogman +frogmen +frogs +frolic +frolicked +frolicking +frolicky +frolics +frolicsome +from +fromage +fromages +fromenties +fromenty +frond +fronded +frondeur +frondeurs +frondose +fronds +frons +front +frontage +frontages +frontal +frontals +fronted +fronter +frontes +frontier +frontiers +frontiersman +frontiersmen +fronting +frontispiece +frontispieces +frontlet +frontlets +fronton +frontons +fronts +frore +frosh +frost +frostbit +frostbite +frostbites +frostbitten +frosted +frosteds +frostier +frostiest +frostily +frosting +frostings +frosts +frosty +froth +frothed +frothier +frothiest +frothily +frothing +froths +frothy +frottage +frottages +frotteur +frotteurs +froufrou +froufrous +frounce +frounced +frounces +frouncing +frouzier +frouziest +frouzy +frow +froward +frown +frowned +frowner +frowners +frowning +frowns +frows +frowsier +frowsiest +frowstier +frowstiest +frowsty +frowsy +frowzier +frowziest +frowzily +frowzy +froze +frozen +frozenly +fructified +fructifies +fructify +fructifying +fructose +fructoses +frug +frugal +frugalities +frugality +frugally +frugged +frugging +frugs +fruit +fruitage +fruitages +fruitcake +fruitcakes +fruited +fruiter +fruiters +fruitful +fruitfuller +fruitfullest +fruitfulness +fruitfulnesses +fruitier +fruitiest +fruiting +fruition +fruitions +fruitless +fruitlet +fruitlets +fruits +fruity +frumenties +frumenty +frump +frumpier +frumpiest +frumpily +frumpish +frumps +frumpy +frusta +frustrate +frustrated +frustrates +frustrating +frustratingly +frustration +frustrations +frustule +frustules +frustum +frustums +fry +fryer +fryers +frying +frypan +frypans +fub +fubbed +fubbing +fubs +fubsier +fubsiest +fubsy +fuchsia +fuchsias +fuchsin +fuchsine +fuchsines +fuchsins +fuci +fucoid +fucoidal +fucoids +fucose +fucoses +fucous +fucus +fucuses +fud +fuddle +fuddled +fuddles +fuddling +fudge +fudged +fudges +fudging +fuds +fuehrer +fuehrers +fuel +fueled +fueler +fuelers +fueling +fuelled +fueller +fuellers +fuelling +fuels +fug +fugacities +fugacity +fugal +fugally +fugato +fugatos +fugged +fuggier +fuggiest +fugging +fuggy +fugio +fugios +fugitive +fugitives +fugle +fugled +fugleman +fuglemen +fugles +fugling +fugs +fugue +fugued +fugues +fuguing +fuguist +fuguists +fuhrer +fuhrers +fuji +fujis +fulcra +fulcrum +fulcrums +fulfil +fulfill +fulfilled +fulfilling +fulfillment +fulfillments +fulfills +fulfils +fulgent +fulgid +fulham +fulhams +full +fullam +fullams +fullback +fullbacks +fulled +fuller +fullered +fulleries +fullering +fullers +fullery +fullest +fullface +fullfaces +fulling +fullness +fullnesses +fulls +fully +fulmar +fulmars +fulmine +fulmined +fulmines +fulminic +fulmining +fulness +fulnesses +fulsome +fulvous +fumarase +fumarases +fumarate +fumarates +fumaric +fumarole +fumaroles +fumatories +fumatory +fumble +fumbled +fumbler +fumblers +fumbles +fumbling +fume +fumed +fumeless +fumelike +fumer +fumers +fumes +fumet +fumets +fumette +fumettes +fumier +fumiest +fumigant +fumigants +fumigate +fumigated +fumigates +fumigating +fumigation +fumigations +fuming +fumitories +fumitory +fumuli +fumulus +fumy +fun +function +functional +functionally +functionaries +functionary +functioned +functioning +functionless +functions +functor +functors +fund +fundamental +fundamentally +fundamentals +funded +fundi +fundic +funding +funds +fundus +funeral +funerals +funerary +funereal +funest +funfair +funfairs +fungal +fungals +fungi +fungible +fungibles +fungic +fungicidal +fungicide +fungicides +fungo +fungoes +fungoid +fungoids +fungous +fungus +funguses +funicle +funicles +funiculi +funk +funked +funker +funkers +funkia +funkias +funkier +funkiest +funking +funks +funky +funned +funnel +funneled +funneling +funnelled +funnelling +funnels +funnier +funnies +funniest +funnily +funning +funny +funnyman +funnymen +funs +fur +furan +furane +furanes +furanose +furanoses +furans +furbelow +furbelowed +furbelowing +furbelows +furbish +furbished +furbishes +furbishing +furcate +furcated +furcates +furcating +furcraea +furcraeas +furcula +furculae +furcular +furculum +furfur +furfural +furfurals +furfuran +furfurans +furfures +furibund +furies +furioso +furious +furiously +furl +furlable +furled +furler +furlers +furless +furling +furlong +furlongs +furlough +furloughed +furloughing +furloughs +furls +furmenties +furmenty +furmeties +furmety +furmities +furmity +furnace +furnaced +furnaces +furnacing +furnish +furnished +furnishes +furnishing +furnishings +furniture +furnitures +furor +furore +furores +furors +furred +furrier +furrieries +furriers +furriery +furriest +furrily +furriner +furriners +furring +furrings +furrow +furrowed +furrower +furrowers +furrowing +furrows +furrowy +furry +furs +further +furthered +furthering +furthermore +furthermost +furthers +furthest +furtive +furtively +furtiveness +furtivenesses +furuncle +furuncles +fury +furze +furzes +furzier +furziest +furzy +fusain +fusains +fuscous +fuse +fused +fusee +fusees +fusel +fuselage +fuselages +fuseless +fusels +fuses +fusible +fusibly +fusiform +fusil +fusile +fusileer +fusileers +fusilier +fusiliers +fusillade +fusillades +fusils +fusing +fusion +fusions +fuss +fussbudget +fussbudgets +fussed +fusser +fussers +fusses +fussier +fussiest +fussily +fussiness +fussinesses +fussing +fusspot +fusspots +fussy +fustian +fustians +fustic +fustics +fustier +fustiest +fustily +fusty +futharc +futharcs +futhark +futharks +futhorc +futhorcs +futhork +futhorks +futile +futilely +futilities +futility +futtock +futtocks +futural +future +futures +futurism +futurisms +futurist +futuristic +futurists +futurities +futurity +fuze +fuzed +fuzee +fuzees +fuzes +fuzil +fuzils +fuzing +fuzz +fuzzed +fuzzes +fuzzier +fuzziest +fuzzily +fuzziness +fuzzinesses +fuzzing +fuzzy +fyce +fyces +fyke +fykes +fylfot +fylfots +fytte +fyttes +gab +gabardine +gabardines +gabbard +gabbards +gabbart +gabbarts +gabbed +gabber +gabbers +gabbier +gabbiest +gabbing +gabble +gabbled +gabbler +gabblers +gabbles +gabbling +gabbro +gabbroic +gabbroid +gabbros +gabby +gabelle +gabelled +gabelles +gabfest +gabfests +gabies +gabion +gabions +gable +gabled +gables +gabling +gaboon +gaboons +gabs +gaby +gad +gadabout +gadabouts +gadarene +gadded +gadder +gadders +gaddi +gadding +gaddis +gadflies +gadfly +gadget +gadgetries +gadgetry +gadgets +gadgety +gadi +gadid +gadids +gadis +gadoid +gadoids +gadroon +gadroons +gads +gadwall +gadwalls +gadzooks +gae +gaed +gaen +gaes +gaff +gaffe +gaffed +gaffer +gaffers +gaffes +gaffing +gaffs +gag +gaga +gage +gaged +gager +gagers +gages +gagged +gagger +gaggers +gagging +gaggle +gaggled +gaggles +gaggling +gaging +gagman +gagmen +gags +gagster +gagsters +gahnite +gahnites +gaieties +gaiety +gaily +gain +gainable +gained +gainer +gainers +gainful +gainfully +gaining +gainless +gainlier +gainliest +gainly +gains +gainsaid +gainsay +gainsayer +gainsayers +gainsaying +gainsays +gainst +gait +gaited +gaiter +gaiters +gaiting +gaits +gal +gala +galactic +galactorrhea +galago +galagos +galah +galahs +galangal +galangals +galas +galatea +galateas +galavant +galavanted +galavanting +galavants +galax +galaxes +galaxies +galaxy +galbanum +galbanums +gale +galea +galeae +galeas +galeate +galeated +galena +galenas +galenic +galenite +galenites +galere +galeres +gales +galilee +galilees +galiot +galiots +galipot +galipots +galivant +galivanted +galivanting +galivants +gall +gallant +gallanted +gallanting +gallantly +gallantries +gallantry +gallants +gallate +gallates +gallbladder +gallbladders +galleass +galleasses +galled +gallein +galleins +galleon +galleons +galleried +galleries +gallery +gallerying +galleta +galletas +galley +galleys +gallflies +gallfly +galliard +galliards +galliass +galliasses +gallic +gallican +gallied +gallies +galling +galliot +galliots +gallipot +gallipots +gallium +galliums +gallivant +gallivanted +gallivanting +gallivants +gallnut +gallnuts +gallon +gallons +galloon +galloons +galloot +galloots +gallop +galloped +galloper +gallopers +galloping +gallops +gallous +gallows +gallowses +galls +gallstone +gallstones +gallus +gallused +galluses +gally +gallying +galoot +galoots +galop +galopade +galopades +galops +galore +galores +galosh +galoshe +galoshed +galoshes +gals +galumph +galumphed +galumphing +galumphs +galvanic +galvanization +galvanizations +galvanize +galvanized +galvanizer +galvanizers +galvanizes +galvanizing +galyac +galyacs +galyak +galyaks +gam +gamashes +gamb +gamba +gambade +gambades +gambado +gambadoes +gambados +gambas +gambe +gambes +gambeson +gambesons +gambia +gambias +gambier +gambiers +gambir +gambirs +gambit +gambits +gamble +gambled +gambler +gamblers +gambles +gambling +gamboge +gamboges +gambol +gamboled +gamboling +gambolled +gambolling +gambols +gambrel +gambrels +gambs +gambusia +gambusias +game +gamecock +gamecocks +gamed +gamekeeper +gamekeepers +gamelan +gamelans +gamelike +gamely +gameness +gamenesses +gamer +games +gamesome +gamest +gamester +gamesters +gamete +gametes +gametic +gamey +gamic +gamier +gamiest +gamily +gamin +gamine +gamines +gaminess +gaminesses +gaming +gamings +gamins +gamma +gammadia +gammas +gammed +gammer +gammers +gamming +gammon +gammoned +gammoner +gammoners +gammoning +gammons +gamodeme +gamodemes +gamp +gamps +gams +gamut +gamuts +gamy +gan +gander +gandered +gandering +ganders +gane +ganef +ganefs +ganev +ganevs +gang +ganged +ganger +gangers +ganging +gangland +ganglands +ganglia +ganglial +gangliar +ganglier +gangliest +gangling +ganglion +ganglionic +ganglions +gangly +gangplank +gangplanks +gangplow +gangplows +gangrel +gangrels +gangrene +gangrened +gangrenes +gangrening +gangrenous +gangs +gangster +gangsters +gangue +gangues +gangway +gangways +ganister +ganisters +ganja +ganjas +gannet +gannets +ganof +ganofs +ganoid +ganoids +gantlet +gantleted +gantleting +gantlets +gantline +gantlines +gantlope +gantlopes +gantries +gantry +ganymede +ganymedes +gaol +gaoled +gaoler +gaolers +gaoling +gaols +gap +gape +gaped +gaper +gapers +gapes +gapeseed +gapeseeds +gapeworm +gapeworms +gaping +gapingly +gaposis +gaposises +gapped +gappier +gappiest +gapping +gappy +gaps +gapy +gar +garage +garaged +garages +garaging +garb +garbage +garbages +garbanzo +garbanzos +garbed +garbing +garble +garbled +garbler +garblers +garbles +garbless +garbling +garboard +garboards +garboil +garboils +garbs +garcon +garcons +gardant +garden +gardened +gardener +gardeners +gardenia +gardenias +gardening +gardens +gardyloo +garfish +garfishes +garganey +garganeys +gargantuan +garget +gargets +gargety +gargle +gargled +gargler +garglers +gargles +gargling +gargoyle +gargoyles +garish +garishly +garland +garlanded +garlanding +garlands +garlic +garlicky +garlics +garment +garmented +garmenting +garments +garner +garnered +garnering +garners +garnet +garnets +garnish +garnished +garnishee +garnisheed +garnishees +garnisheing +garnishes +garnishing +garnishment +garnishments +garote +garoted +garotes +garoting +garotte +garotted +garotter +garotters +garottes +garotting +garpike +garpikes +garred +garret +garrets +garring +garrison +garrisoned +garrisoning +garrisons +garron +garrons +garrote +garroted +garroter +garroters +garrotes +garroting +garrotte +garrotted +garrottes +garrotting +garrulities +garrulity +garrulous +garrulously +garrulousness +garrulousnesses +gars +garter +gartered +gartering +garters +garth +garths +garvey +garveys +gas +gasalier +gasaliers +gasbag +gasbags +gascon +gascons +gaselier +gaseliers +gaseous +gases +gash +gashed +gasher +gashes +gashest +gashing +gashouse +gashouses +gasified +gasifier +gasifiers +gasifies +gasiform +gasify +gasifying +gasket +gaskets +gaskin +gasking +gaskings +gaskins +gasless +gaslight +gaslights +gaslit +gasman +gasmen +gasogene +gasogenes +gasolene +gasolenes +gasolier +gasoliers +gasoline +gasolines +gasp +gasped +gasper +gaspers +gasping +gasps +gassed +gasser +gassers +gasses +gassier +gassiest +gassing +gassings +gassy +gast +gasted +gastight +gasting +gastness +gastnesses +gastraea +gastraeas +gastral +gastrea +gastreas +gastric +gastrin +gastrins +gastronomic +gastronomical +gastronomies +gastronomy +gastrula +gastrulae +gastrulas +gasts +gasworks +gat +gate +gated +gatefold +gatefolds +gatekeeper +gatekeepers +gateless +gatelike +gateman +gatemen +gatepost +gateposts +gates +gateway +gateways +gather +gathered +gatherer +gatherers +gathering +gatherings +gathers +gating +gats +gauche +gauchely +gaucher +gauchest +gaucho +gauchos +gaud +gauderies +gaudery +gaudier +gaudies +gaudiest +gaudily +gaudiness +gaudinesses +gauds +gaudy +gauffer +gauffered +gauffering +gauffers +gauge +gauged +gauger +gaugers +gauges +gauging +gault +gaults +gaum +gaumed +gauming +gaums +gaun +gaunt +gaunter +gauntest +gauntlet +gauntleted +gauntleting +gauntlets +gauntly +gauntness +gauntnesses +gauntries +gauntry +gaur +gaurs +gauss +gausses +gauze +gauzes +gauzier +gauziest +gauzy +gavage +gavages +gave +gavel +gaveled +gaveling +gavelled +gavelling +gavelock +gavelocks +gavels +gavial +gavials +gavot +gavots +gavotte +gavotted +gavottes +gavotting +gawk +gawked +gawker +gawkers +gawkier +gawkies +gawkiest +gawkily +gawking +gawkish +gawks +gawky +gawsie +gawsy +gay +gayal +gayals +gayer +gayest +gayeties +gayety +gayly +gayness +gaynesses +gays +gaywing +gaywings +gazabo +gazaboes +gazabos +gaze +gazebo +gazeboes +gazebos +gazed +gazelle +gazelles +gazer +gazers +gazes +gazette +gazetted +gazetteer +gazetteers +gazettes +gazetting +gazing +gazogene +gazogenes +gazpacho +gazpachos +gear +gearbox +gearboxes +gearcase +gearcases +geared +gearing +gearings +gearless +gears +gearshift +gearshifts +geck +gecked +gecking +gecko +geckoes +geckos +gecks +ged +geds +gee +geed +geegaw +geegaws +geeing +geek +geeks +geepound +geepounds +gees +geese +geest +geests +geezer +geezers +geisha +geishas +gel +gelable +gelada +geladas +gelant +gelants +gelate +gelated +gelates +gelatin +gelatine +gelatines +gelating +gelatinous +gelatins +gelation +gelations +geld +gelded +gelder +gelders +gelding +geldings +gelds +gelee +gelees +gelid +gelidities +gelidity +gelidly +gellant +gellants +gelled +gelling +gels +gelsemia +gelt +gelts +gem +geminal +geminate +geminated +geminates +geminating +gemlike +gemma +gemmae +gemmate +gemmated +gemmates +gemmating +gemmed +gemmier +gemmiest +gemmily +gemming +gemmule +gemmules +gemmy +gemologies +gemology +gemot +gemote +gemotes +gemots +gems +gemsbok +gemsboks +gemsbuck +gemsbucks +gemstone +gemstones +gendarme +gendarmes +gender +gendered +gendering +genders +gene +geneological +geneologically +geneologist +geneologists +geneology +genera +general +generalities +generality +generalizability +generalization +generalizations +generalize +generalized +generalizes +generalizing +generally +generals +generate +generated +generates +generating +generation +generations +generative +generator +generators +generic +generics +generosities +generosity +generous +generously +generousness +generousnesses +genes +geneses +genesis +genet +genetic +genetically +geneticist +geneticists +genetics +genets +genette +genettes +geneva +genevas +genial +genialities +geniality +genially +genic +genie +genies +genii +genip +genipap +genipaps +genips +genital +genitalia +genitally +genitals +genitive +genitives +genitor +genitors +genitourinary +geniture +genitures +genius +geniuses +genoa +genoas +genocide +genocides +genom +genome +genomes +genomic +genoms +genotype +genotypes +genre +genres +genro +genros +gens +genseng +gensengs +gent +genteel +genteeler +genteelest +gentes +gentian +gentians +gentil +gentile +gentiles +gentilities +gentility +gentle +gentled +gentlefolk +gentleman +gentlemen +gentleness +gentlenesses +gentler +gentles +gentlest +gentlewoman +gentlewomen +gentling +gently +gentrice +gentrices +gentries +gentry +gents +genu +genua +genuflect +genuflected +genuflecting +genuflection +genuflections +genuflects +genuine +genuinely +genuineness +genuinenesses +genus +genuses +geode +geodes +geodesic +geodesics +geodesies +geodesy +geodetic +geodic +geoduck +geoducks +geognosies +geognosy +geographer +geographers +geographic +geographical +geographically +geographies +geography +geoid +geoidal +geoids +geologer +geologers +geologic +geological +geologies +geologist +geologists +geology +geomancies +geomancy +geometer +geometers +geometric +geometrical +geometries +geometry +geophagies +geophagy +geophone +geophones +geophysical +geophysicist +geophysicists +geophysics +geophyte +geophytes +geoponic +georgic +georgics +geotaxes +geotaxis +geothermal +geothermic +gerah +gerahs +geranial +geranials +geraniol +geraniols +geranium +geraniums +gerardia +gerardias +gerbera +gerberas +gerbil +gerbille +gerbilles +gerbils +gerent +gerents +gerenuk +gerenuks +geriatric +geriatrics +germ +german +germane +germanic +germanium +germaniums +germans +germen +germens +germfree +germicidal +germicide +germicides +germier +germiest +germina +germinal +germinate +germinated +germinates +germinating +germination +germinations +germs +germy +gerontic +gerrymander +gerrymandered +gerrymandering +gerrymanders +gerund +gerunds +gesso +gessoes +gest +gestalt +gestalten +gestalts +gestapo +gestapos +gestate +gestated +gestates +gestating +geste +gestes +gestic +gestical +gests +gestural +gesture +gestured +gesturer +gesturers +gestures +gesturing +gesundheit +get +getable +getaway +getaways +gets +gettable +getter +gettered +gettering +getters +getting +getup +getups +geum +geums +gewgaw +gewgaws +gey +geyser +geysers +gharri +gharries +gharris +gharry +ghast +ghastful +ghastlier +ghastliest +ghastly +ghat +ghats +ghaut +ghauts +ghazi +ghazies +ghazis +ghee +ghees +gherao +gheraoed +gheraoes +gheraoing +gherkin +gherkins +ghetto +ghettoed +ghettoes +ghettoing +ghettos +ghi +ghibli +ghiblis +ghillie +ghillies +ghis +ghost +ghosted +ghostier +ghostiest +ghosting +ghostlier +ghostliest +ghostly +ghosts +ghostwrite +ghostwriter +ghostwriters +ghostwrites +ghostwritten +ghostwrote +ghosty +ghoul +ghoulish +ghouls +ghyll +ghylls +giant +giantess +giantesses +giantism +giantisms +giants +giaour +giaours +gib +gibbed +gibber +gibbered +gibbering +gibberish +gibberishes +gibbers +gibbet +gibbeted +gibbeting +gibbets +gibbetted +gibbetting +gibbing +gibbon +gibbons +gibbose +gibbous +gibbsite +gibbsites +gibe +gibed +giber +gibers +gibes +gibing +gibingly +giblet +giblets +gibs +gid +giddap +giddied +giddier +giddies +giddiest +giddily +giddiness +giddinesses +giddy +giddying +gids +gie +gied +gieing +gien +gies +gift +gifted +giftedly +gifting +giftless +gifts +gig +giga +gigabit +gigabits +gigantic +gigas +gigaton +gigatons +gigawatt +gigawatts +gigged +gigging +giggle +giggled +giggler +gigglers +giggles +gigglier +giggliest +giggling +giggly +gighe +giglet +giglets +giglot +giglots +gigolo +gigolos +gigot +gigots +gigs +gigue +gigues +gilbert +gilberts +gild +gilded +gilder +gilders +gildhall +gildhalls +gilding +gildings +gilds +gill +gilled +giller +gillers +gillie +gillied +gillies +gilling +gillnet +gillnets +gillnetted +gillnetting +gills +gilly +gillying +gilt +gilthead +giltheads +gilts +gimbal +gimbaled +gimbaling +gimballed +gimballing +gimbals +gimcrack +gimcracks +gimel +gimels +gimlet +gimleted +gimleting +gimlets +gimmal +gimmals +gimmick +gimmicked +gimmicking +gimmicks +gimmicky +gimp +gimped +gimpier +gimpiest +gimping +gimps +gimpy +gin +gingal +gingall +gingalls +gingals +gingeley +gingeleys +gingeli +gingelies +gingelis +gingellies +gingelly +gingely +ginger +gingerbread +gingerbreads +gingered +gingering +gingerly +gingers +gingery +gingham +ginghams +gingili +gingilis +gingiva +gingivae +gingival +gingivitis +gingivitises +gingko +gingkoes +gink +ginkgo +ginkgoes +ginks +ginned +ginner +ginners +ginnier +ginniest +ginning +ginnings +ginny +gins +ginseng +ginsengs +gip +gipon +gipons +gipped +gipper +gippers +gipping +gips +gipsied +gipsies +gipsy +gipsying +giraffe +giraffes +girasol +girasole +girasoles +girasols +gird +girded +girder +girders +girding +girdle +girdled +girdler +girdlers +girdles +girdling +girds +girl +girlhood +girlhoods +girlie +girlies +girlish +girls +girly +girn +girned +girning +girns +giro +giron +girons +giros +girosol +girosols +girsh +girshes +girt +girted +girth +girthed +girthing +girths +girting +girts +gisarme +gisarmes +gismo +gismos +gist +gists +git +gitano +gitanos +gittern +gitterns +give +giveable +giveaway +giveaways +given +givens +giver +givers +gives +giving +gizmo +gizmos +gizzard +gizzards +gjetost +gjetosts +glabella +glabellae +glabrate +glabrous +glace +glaceed +glaceing +glaces +glacial +glacially +glaciate +glaciated +glaciates +glaciating +glacier +glaciers +glacis +glacises +glad +gladded +gladden +gladdened +gladdening +gladdens +gladder +gladdest +gladding +glade +glades +gladiate +gladiator +gladiatorial +gladiators +gladier +gladiest +gladiola +gladiolas +gladioli +gladiolus +gladlier +gladliest +gladly +gladness +gladnesses +glads +gladsome +gladsomer +gladsomest +glady +glaiket +glaikit +glair +glaire +glaired +glaires +glairier +glairiest +glairing +glairs +glairy +glaive +glaived +glaives +glamor +glamorize +glamorized +glamorizes +glamorizing +glamorous +glamors +glamour +glamoured +glamouring +glamours +glance +glanced +glances +glancing +gland +glanders +glandes +glands +glandular +glandule +glandules +glans +glare +glared +glares +glarier +glariest +glaring +glaringly +glary +glass +glassblower +glassblowers +glassblowing +glassblowings +glassed +glasses +glassful +glassfuls +glassie +glassier +glassies +glassiest +glassily +glassine +glassines +glassing +glassman +glassmen +glassware +glasswares +glassy +glaucoma +glaucomas +glaucous +glaze +glazed +glazer +glazers +glazes +glazier +glazieries +glaziers +glaziery +glaziest +glazing +glazings +glazy +gleam +gleamed +gleamier +gleamiest +gleaming +gleams +gleamy +glean +gleanable +gleaned +gleaner +gleaners +gleaning +gleanings +gleans +gleba +glebae +glebe +glebes +gled +glede +gledes +gleds +glee +gleed +gleeds +gleeful +gleek +gleeked +gleeking +gleeks +gleeman +gleemen +glees +gleesome +gleet +gleeted +gleetier +gleetiest +gleeting +gleets +gleety +gleg +glegly +glegness +glegnesses +glen +glenlike +glenoid +glens +gley +gleys +gliadin +gliadine +gliadines +gliadins +glial +glib +glibber +glibbest +glibly +glibness +glibnesses +glide +glided +glider +gliders +glides +gliding +gliff +gliffs +glim +glime +glimed +glimes +gliming +glimmer +glimmered +glimmering +glimmers +glimpse +glimpsed +glimpser +glimpsers +glimpses +glimpsing +glims +glint +glinted +glinting +glints +glioma +gliomas +gliomata +glissade +glissaded +glissades +glissading +glisten +glistened +glistening +glistens +glister +glistered +glistering +glisters +glitch +glitches +glitter +glittered +glittering +glitters +glittery +gloam +gloaming +gloamings +gloams +gloat +gloated +gloater +gloaters +gloating +gloats +glob +global +globally +globate +globated +globe +globed +globes +globin +globing +globins +globoid +globoids +globose +globous +globs +globular +globule +globules +globulin +globulins +glochid +glochids +glockenspiel +glockenspiels +glogg +gloggs +glom +glomera +glommed +glomming +gloms +glomus +gloom +gloomed +gloomful +gloomier +gloomiest +gloomily +gloominess +gloominesses +glooming +gloomings +glooms +gloomy +glop +glops +gloria +glorias +gloried +glories +glorification +glorifications +glorified +glorifies +glorify +glorifying +gloriole +glorioles +glorious +gloriously +glory +glorying +gloss +glossa +glossae +glossal +glossarial +glossaries +glossary +glossas +glossed +glosseme +glossemes +glosser +glossers +glosses +glossier +glossies +glossiest +glossily +glossina +glossinas +glossiness +glossinesses +glossing +glossy +glost +glosts +glottal +glottic +glottides +glottis +glottises +glout +glouted +glouting +glouts +glove +gloved +glover +glovers +gloves +gloving +glow +glowed +glower +glowered +glowering +glowers +glowflies +glowfly +glowing +glows +glowworm +glowworms +gloxinia +gloxinias +gloze +glozed +glozes +glozing +glucagon +glucagons +glucinic +glucinum +glucinums +glucose +glucoses +glucosic +glue +glued +glueing +gluelike +gluer +gluers +glues +gluey +gluier +gluiest +gluily +gluing +glum +glume +glumes +glumly +glummer +glummest +glumness +glumnesses +glumpier +glumpiest +glumpily +glumpy +glunch +glunched +glunches +glunching +glut +gluteal +glutei +glutelin +glutelins +gluten +glutens +gluteus +glutinous +gluts +glutted +glutting +glutton +gluttonies +gluttonous +gluttons +gluttony +glycan +glycans +glyceric +glycerin +glycerine +glycerines +glycerins +glycerol +glycerols +glyceryl +glyceryls +glycin +glycine +glycines +glycins +glycogen +glycogens +glycol +glycolic +glycols +glyconic +glyconics +glycosyl +glycosyls +glycyl +glycyls +glyph +glyphic +glyphs +glyptic +glyptics +gnar +gnarl +gnarled +gnarlier +gnarliest +gnarling +gnarls +gnarly +gnarr +gnarred +gnarring +gnarrs +gnars +gnash +gnashed +gnashes +gnashing +gnat +gnathal +gnathic +gnathion +gnathions +gnathite +gnathites +gnatlike +gnats +gnattier +gnattiest +gnatty +gnaw +gnawable +gnawed +gnawer +gnawers +gnawing +gnawings +gnawn +gnaws +gneiss +gneisses +gneissic +gnocchi +gnome +gnomes +gnomic +gnomical +gnomish +gnomist +gnomists +gnomon +gnomonic +gnomons +gnoses +gnosis +gnostic +gnu +gnus +go +goa +goad +goaded +goading +goadlike +goads +goal +goaled +goalie +goalies +goaling +goalkeeper +goalkeepers +goalless +goalpost +goalposts +goals +goas +goat +goatee +goateed +goatees +goatfish +goatfishes +goatherd +goatherds +goatish +goatlike +goats +goatskin +goatskins +gob +goban +gobang +gobangs +gobans +gobbed +gobbet +gobbets +gobbing +gobble +gobbled +gobbledegook +gobbledegooks +gobbledygook +gobbledygooks +gobbler +gobblers +gobbles +gobbling +gobies +gobioid +gobioids +goblet +goblets +goblin +goblins +gobo +goboes +gobonee +gobony +gobos +gobs +goby +god +godchild +godchildren +goddam +goddammed +goddamming +goddamn +goddamned +goddamning +goddamns +goddams +goddaughter +goddaughters +godded +goddess +goddesses +godding +godfather +godfathers +godhead +godheads +godhood +godhoods +godless +godlessness +godlessnesses +godlier +godliest +godlike +godlily +godling +godlings +godly +godmother +godmothers +godown +godowns +godparent +godparents +godroon +godroons +gods +godsend +godsends +godship +godships +godson +godsons +godwit +godwits +goer +goers +goes +goethite +goethites +goffer +goffered +goffering +goffers +goggle +goggled +goggler +gogglers +goggles +gogglier +goggliest +goggling +goggly +goglet +goglets +gogo +gogos +going +goings +goiter +goiters +goitre +goitres +goitrous +golconda +golcondas +gold +goldarn +goldarns +goldbrick +goldbricked +goldbricking +goldbricks +goldbug +goldbugs +golden +goldener +goldenest +goldenly +goldenrod +golder +goldest +goldeye +goldeyes +goldfinch +goldfinches +goldfish +goldfishes +golds +goldsmith +goldstein +goldurn +goldurns +golem +golems +golf +golfed +golfer +golfers +golfing +golfings +golfs +golgotha +golgothas +goliard +goliards +golliwog +golliwogs +golly +golosh +goloshes +gombo +gombos +gombroon +gombroons +gomeral +gomerals +gomerel +gomerels +gomeril +gomerils +gomuti +gomutis +gonad +gonadal +gonadial +gonadic +gonads +gondola +gondolas +gondolier +gondoliers +gone +goneness +gonenesses +goner +goners +gonfalon +gonfalons +gonfanon +gonfanons +gong +gonged +gonging +gonglike +gongs +gonia +gonidia +gonidial +gonidic +gonidium +gonif +gonifs +gonion +gonium +gonocyte +gonocytes +gonof +gonofs +gonoph +gonophs +gonopore +gonopores +gonorrhea +gonorrheal +gonorrheas +goo +goober +goobers +good +goodby +goodbye +goodbyes +goodbys +goodies +goodish +goodlier +goodliest +goodly +goodman +goodmen +goodness +goodnesses +goods +goodwife +goodwill +goodwills +goodwives +goody +gooey +goof +goofball +goofballs +goofed +goofier +goofiest +goofily +goofiness +goofinesses +goofing +goofs +goofy +googlies +googly +googol +googolplex +googolplexes +googols +gooier +gooiest +gook +gooks +gooky +goon +gooney +gooneys +goonie +goonies +goons +goony +goop +goops +gooral +goorals +goos +goose +gooseberries +gooseberry +goosed +gooseflesh +goosefleshes +gooses +goosey +goosier +goosiest +goosing +goosy +gopher +gophers +gor +goral +gorals +gorbellies +gorbelly +gorblimy +gorcock +gorcocks +gore +gored +gores +gorge +gorged +gorgedly +gorgeous +gorger +gorgerin +gorgerins +gorgers +gorges +gorget +gorgeted +gorgets +gorging +gorgon +gorgons +gorhen +gorhens +gorier +goriest +gorilla +gorillas +gorily +goriness +gorinesses +goring +gormand +gormands +gorse +gorses +gorsier +gorsiest +gorsy +gory +gosh +goshawk +goshawks +gosling +goslings +gospel +gospeler +gospelers +gospels +gosport +gosports +gossamer +gossamers +gossan +gossans +gossip +gossiped +gossiper +gossipers +gossiping +gossipped +gossipping +gossipries +gossipry +gossips +gossipy +gossoon +gossoons +gossypol +gossypols +got +gothic +gothics +gothite +gothites +gotten +gouache +gouaches +gouge +gouged +gouger +gougers +gouges +gouging +goulash +goulashes +gourami +gouramis +gourd +gourde +gourdes +gourds +gourmand +gourmands +gourmet +gourmets +gout +goutier +goutiest +goutily +gouts +gouty +govern +governed +governess +governesses +governing +government +governmental +governments +governor +governors +governorship +governorships +governs +gowan +gowaned +gowans +gowany +gowd +gowds +gowk +gowks +gown +gowned +gowning +gowns +gownsman +gownsmen +gox +goxes +goy +goyim +goyish +goys +graal +graals +grab +grabbed +grabber +grabbers +grabbier +grabbiest +grabbing +grabble +grabbled +grabbler +grabblers +grabbles +grabbling +grabby +graben +grabens +grabs +grace +graced +graceful +gracefuller +gracefullest +gracefully +gracefulness +gracefulnesses +graceless +graces +gracile +graciles +gracilis +gracing +gracioso +graciosos +gracious +graciously +graciousness +graciousnesses +grackle +grackles +grad +gradable +gradate +gradated +gradates +gradating +grade +graded +grader +graders +grades +gradient +gradients +gradin +gradine +gradines +grading +gradins +grads +gradual +gradually +graduals +graduand +graduands +graduate +graduated +graduates +graduating +graduation +graduations +gradus +graduses +graecize +graecized +graecizes +graecizing +graffiti +graffito +graft +graftage +graftages +grafted +grafter +grafters +grafting +grafts +graham +grail +grails +grain +grained +grainer +grainers +grainfield +grainfields +grainier +grainiest +graining +grains +grainy +gram +grama +gramaries +gramary +gramarye +gramaryes +gramas +gramercies +gramercy +grammar +grammarian +grammarians +grammars +grammatical +grammatically +gramme +grammes +gramp +gramps +grampus +grampuses +grams +grana +granaries +granary +grand +grandad +grandads +grandam +grandame +grandames +grandams +grandchild +grandchildren +granddad +granddads +granddaughter +granddaughters +grandee +grandees +grander +grandest +grandeur +grandeurs +grandfather +grandfathers +grandiose +grandiosely +grandly +grandma +grandmas +grandmother +grandmothers +grandness +grandnesses +grandpa +grandparent +grandparents +grandpas +grands +grandsir +grandsirs +grandson +grandsons +grandstand +grandstands +grange +granger +grangers +granges +granite +granites +granitic +grannie +grannies +granny +grant +granted +grantee +grantees +granter +granters +granting +grantor +grantors +grants +granular +granularities +granularity +granulate +granulated +granulates +granulating +granulation +granulations +granule +granules +granum +grape +graperies +grapery +grapes +grapevine +grapevines +graph +graphed +grapheme +graphemes +graphic +graphically +graphics +graphing +graphite +graphites +graphs +grapier +grapiest +graplin +grapline +graplines +graplins +grapnel +grapnels +grappa +grappas +grapple +grappled +grappler +grapplers +grapples +grappling +grapy +grasp +grasped +grasper +graspers +grasping +grasps +grass +grassed +grasses +grasshopper +grasshoppers +grassier +grassiest +grassily +grassing +grassland +grasslands +grassy +grat +grate +grated +grateful +gratefuller +gratefullest +gratefullies +gratefully +gratefulness +gratefulnesses +grater +graters +grates +gratification +gratifications +gratified +gratifies +gratify +gratifying +gratin +grating +gratings +gratins +gratis +gratitude +gratuities +gratuitous +gratuity +graupel +graupels +gravamen +gravamens +gravamina +grave +graved +gravel +graveled +graveling +gravelled +gravelling +gravelly +gravels +gravely +graven +graveness +gravenesses +graver +gravers +graves +gravest +gravestone +gravestones +graveyard +graveyards +gravid +gravida +gravidae +gravidas +gravidly +gravies +graving +gravitate +gravitated +gravitates +gravitating +gravitation +gravitational +gravitationally +gravitations +gravitative +gravities +graviton +gravitons +gravity +gravure +gravures +gravy +gray +grayback +graybacks +grayed +grayer +grayest +grayfish +grayfishes +graying +grayish +graylag +graylags +grayling +graylings +grayly +grayness +graynesses +grayout +grayouts +grays +grazable +graze +grazed +grazer +grazers +grazes +grazier +graziers +grazing +grazings +grazioso +grease +greased +greaser +greasers +greases +greasier +greasiest +greasily +greasing +greasy +great +greaten +greatened +greatening +greatens +greater +greatest +greatly +greatness +greatnesses +greats +greave +greaved +greaves +grebe +grebes +grecize +grecized +grecizes +grecizing +gree +greed +greedier +greediest +greedily +greediness +greedinesses +greeds +greedy +greegree +greegrees +greeing +greek +green +greenbug +greenbugs +greened +greener +greeneries +greenery +greenest +greenflies +greenfly +greenhorn +greenhorns +greenhouse +greenhouses +greenier +greeniest +greening +greenings +greenish +greenlet +greenlets +greenly +greenness +greennesses +greens +greenth +greenths +greeny +grees +greet +greeted +greeter +greeters +greeting +greetings +greets +gregarious +gregariously +gregariousness +gregariousnesses +grego +gregos +greige +greiges +greisen +greisens +gremial +gremials +gremlin +gremlins +gremmie +gremmies +gremmy +grenade +grenades +grew +grewsome +grewsomer +grewsomest +grey +greyed +greyer +greyest +greyhen +greyhens +greyhound +greyhounds +greying +greyish +greylag +greylags +greyly +greyness +greynesses +greys +gribble +gribbles +grid +griddle +griddled +griddles +griddling +gride +grided +grides +griding +gridiron +gridirons +grids +grief +griefs +grievance +grievances +grievant +grievants +grieve +grieved +griever +grievers +grieves +grieving +grievous +grievously +griff +griffe +griffes +griffin +griffins +griffon +griffons +griffs +grift +grifted +grifter +grifters +grifting +grifts +grig +grigri +grigris +grigs +grill +grillade +grillades +grillage +grillages +grille +grilled +griller +grillers +grilles +grilling +grills +grillwork +grillworks +grilse +grilses +grim +grimace +grimaced +grimacer +grimacers +grimaces +grimacing +grime +grimed +grimes +grimier +grimiest +grimily +griming +grimly +grimmer +grimmest +grimness +grimnesses +grimy +grin +grind +grinded +grinder +grinderies +grinders +grindery +grinding +grinds +grindstone +grindstones +gringo +gringos +grinned +grinner +grinners +grinning +grins +grip +gripe +griped +griper +gripers +gripes +gripey +gripier +gripiest +griping +grippe +gripped +gripper +grippers +grippes +grippier +grippiest +gripping +gripple +grippy +grips +gripsack +gripsacks +gript +gripy +griseous +grisette +grisettes +griskin +griskins +grislier +grisliest +grisly +grison +grisons +grist +gristle +gristles +gristlier +gristliest +gristly +gristmill +gristmills +grists +grit +grith +griths +grits +gritted +grittier +grittiest +grittily +gritting +gritty +grivet +grivets +grizzle +grizzled +grizzler +grizzlers +grizzles +grizzlier +grizzlies +grizzliest +grizzling +grizzly +groan +groaned +groaner +groaners +groaning +groans +groat +groats +grocer +groceries +grocers +grocery +grog +groggeries +groggery +groggier +groggiest +groggily +grogginess +grogginesses +groggy +grogram +grograms +grogs +grogshop +grogshops +groin +groined +groining +groins +grommet +grommets +gromwell +gromwells +groom +groomed +groomer +groomers +grooming +grooms +groove +grooved +groover +groovers +grooves +groovier +grooviest +grooving +groovy +grope +groped +groper +gropers +gropes +groping +grosbeak +grosbeaks +groschen +gross +grossed +grosser +grossers +grosses +grossest +grossing +grossly +grossness +grossnesses +grosz +groszy +grot +grotesque +grotesquely +grots +grotto +grottoes +grottos +grouch +grouched +grouches +grouchier +grouchiest +grouching +grouchy +ground +grounded +grounder +grounders +groundhog +groundhogs +grounding +grounds +groundwater +groundwaters +groundwork +groundworks +group +grouped +grouper +groupers +groupie +groupies +grouping +groupings +groupoid +groupoids +groups +grouse +groused +grouser +grousers +grouses +grousing +grout +grouted +grouter +grouters +groutier +groutiest +grouting +grouts +grouty +grove +groved +grovel +groveled +groveler +grovelers +groveling +grovelled +grovelling +grovels +groves +grow +growable +grower +growers +growing +growl +growled +growler +growlers +growlier +growliest +growling +growls +growly +grown +grownup +grownups +grows +growth +growths +groyne +groynes +grub +grubbed +grubber +grubbers +grubbier +grubbiest +grubbily +grubbiness +grubbinesses +grubbing +grubby +grubs +grubstake +grubstakes +grubworm +grubworms +grudge +grudged +grudger +grudgers +grudges +grudging +gruel +grueled +grueler +gruelers +grueling +gruelings +gruelled +grueller +gruellers +gruelling +gruellings +gruels +gruesome +gruesomer +gruesomest +gruff +gruffed +gruffer +gruffest +gruffier +gruffiest +gruffily +gruffing +gruffish +gruffly +gruffs +gruffy +grugru +grugrus +grum +grumble +grumbled +grumbler +grumblers +grumbles +grumbling +grumbly +grume +grumes +grummer +grummest +grummet +grummets +grumose +grumous +grump +grumped +grumphie +grumphies +grumphy +grumpier +grumpiest +grumpily +grumping +grumpish +grumps +grumpy +grunion +grunions +grunt +grunted +grunter +grunters +grunting +gruntle +gruntled +gruntles +gruntling +grunts +grushie +grutch +grutched +grutches +grutching +grutten +gryphon +gryphons +guacharo +guacharoes +guacharos +guaco +guacos +guaiac +guaiacol +guaiacols +guaiacs +guaiacum +guaiacums +guaiocum +guaiocums +guan +guanaco +guanacos +guanase +guanases +guanidin +guanidins +guanin +guanine +guanines +guanins +guano +guanos +guans +guar +guarani +guaranies +guaranis +guarantee +guarantees +guarantied +guaranties +guarantor +guaranty +guarantying +guard +guardant +guardants +guarded +guarder +guarders +guardhouse +guardhouses +guardian +guardians +guardianship +guardianships +guarding +guardroom +guardrooms +guards +guars +guava +guavas +guayule +guayules +gubernatorial +guck +gucks +gude +gudes +gudgeon +gudgeoned +gudgeoning +gudgeons +guenon +guenons +guerdon +guerdoned +guerdoning +guerdons +guerilla +guerillas +guernsey +guernseys +guess +guessed +guesser +guessers +guesses +guessing +guest +guested +guesting +guests +guff +guffaw +guffawed +guffawing +guffaws +guffs +guggle +guggled +guggles +guggling +guglet +guglets +guid +guidable +guidance +guidances +guide +guidebook +guidebooks +guided +guideline +guidelines +guider +guiders +guides +guiding +guidon +guidons +guids +guild +guilder +guilders +guilds +guile +guiled +guileful +guileless +guilelessness +guilelessnesses +guiles +guiling +guillotine +guillotined +guillotines +guillotining +guilt +guiltier +guiltiest +guiltily +guiltiness +guiltinesses +guilts +guilty +guimpe +guimpes +guinea +guineas +guipure +guipures +guiro +guisard +guisards +guise +guised +guises +guising +guitar +guitars +gul +gular +gulch +gulches +gulden +guldens +gules +gulf +gulfed +gulfier +gulfiest +gulfing +gulflike +gulfs +gulfweed +gulfweeds +gulfy +gull +gullable +gullably +gulled +gullet +gullets +gulley +gulleys +gullible +gullibly +gullied +gullies +gulling +gulls +gully +gullying +gulosities +gulosity +gulp +gulped +gulper +gulpers +gulpier +gulpiest +gulping +gulps +gulpy +guls +gum +gumbo +gumboil +gumboils +gumbos +gumbotil +gumbotils +gumdrop +gumdrops +gumless +gumlike +gumma +gummas +gummata +gummed +gummer +gummers +gummier +gummiest +gumming +gummite +gummites +gummose +gummoses +gummosis +gummous +gummy +gumption +gumptions +gums +gumshoe +gumshoed +gumshoeing +gumshoes +gumtree +gumtrees +gumweed +gumweeds +gumwood +gumwoods +gun +gunboat +gunboats +gundog +gundogs +gunfight +gunfighter +gunfighters +gunfighting +gunfights +gunfire +gunfires +gunflint +gunflints +gunfought +gunk +gunks +gunless +gunlock +gunlocks +gunman +gunmen +gunmetal +gunmetals +gunned +gunnel +gunnels +gunnen +gunner +gunneries +gunners +gunnery +gunnies +gunning +gunnings +gunny +gunpaper +gunpapers +gunplay +gunplays +gunpoint +gunpoints +gunpowder +gunpowders +gunroom +gunrooms +guns +gunsel +gunsels +gunship +gunships +gunshot +gunshots +gunslinger +gunslingers +gunsmith +gunsmiths +gunstock +gunstocks +gunwale +gunwales +guppies +guppy +gurge +gurged +gurges +gurging +gurgle +gurgled +gurgles +gurglet +gurglets +gurgling +gurnard +gurnards +gurnet +gurnets +gurney +gurneys +gurries +gurry +gursh +gurshes +guru +gurus +guruship +guruships +gush +gushed +gusher +gushers +gushes +gushier +gushiest +gushily +gushing +gushy +gusset +gusseted +gusseting +gussets +gust +gustable +gustables +gustatory +gusted +gustier +gustiest +gustily +gusting +gustless +gusto +gustoes +gusts +gusty +gut +gutless +gutlike +guts +gutsier +gutsiest +gutsy +gutta +guttae +guttate +guttated +gutted +gutter +guttered +guttering +gutters +guttery +guttier +guttiest +gutting +guttle +guttled +guttler +guttlers +guttles +guttling +guttural +gutturals +gutty +guy +guyed +guyer +guying +guyot +guyots +guys +guzzle +guzzled +guzzler +guzzlers +guzzles +guzzling +gweduc +gweduck +gweducks +gweducs +gybe +gybed +gyber +gybes +gybing +gym +gymkhana +gymkhanas +gymnasia +gymnasium +gymnasiums +gymnast +gymnastic +gymnastics +gymnasts +gyms +gynaecea +gynaecia +gynandries +gynandry +gynarchies +gynarchy +gynecia +gynecic +gynecium +gynecoid +gynecologic +gynecological +gynecologies +gynecologist +gynecologists +gynecology +gynecomastia +gynecomasty +gyniatries +gyniatry +gynoecia +gyp +gypped +gypper +gyppers +gypping +gyps +gypseian +gypseous +gypsied +gypsies +gypsum +gypsums +gypsy +gypsydom +gypsydoms +gypsying +gypsyish +gypsyism +gypsyisms +gyral +gyrally +gyrate +gyrated +gyrates +gyrating +gyration +gyrations +gyrator +gyrators +gyratory +gyre +gyred +gyrene +gyrenes +gyres +gyri +gyring +gyro +gyrocompass +gyrocompasses +gyroidal +gyron +gyrons +gyros +gyroscope +gyroscopes +gyrose +gyrostat +gyrostats +gyrus +gyve +gyved +gyves +gyving +ha +haaf +haafs +haar +haars +habanera +habaneras +habdalah +habdalahs +haberdasher +haberdasheries +haberdashers +haberdashery +habile +habit +habitable +habitan +habitans +habitant +habitants +habitat +habitation +habitations +habitats +habited +habiting +habits +habitual +habitually +habitualness +habitualnesses +habituate +habituated +habituates +habituating +habitude +habitudes +habitue +habitues +habitus +habu +habus +hacek +haceks +hachure +hachured +hachures +hachuring +hacienda +haciendas +hack +hackbut +hackbuts +hacked +hackee +hackees +hacker +hackers +hackie +hackies +hacking +hackle +hackled +hackler +hacklers +hackles +hacklier +hackliest +hackling +hackly +hackman +hackmen +hackney +hackneyed +hackneying +hackneys +hacks +hacksaw +hacksaws +hackwork +hackworks +had +hadal +hadarim +haddest +haddock +haddocks +hade +haded +hades +hading +hadj +hadjee +hadjees +hadjes +hadji +hadjis +hadjs +hadron +hadronic +hadrons +hadst +hae +haed +haeing +haem +haemal +haematal +haematic +haematics +haematin +haematins +haemic +haemin +haemins +haemoid +haems +haen +haeredes +haeres +haes +haet +haets +haffet +haffets +haffit +haffits +hafis +hafiz +hafnium +hafniums +haft +haftarah +haftarahs +haftarot +haftaroth +hafted +hafter +hafters +hafting +haftorah +haftorahs +haftorot +haftoroth +hafts +hag +hagadic +hagadist +hagadists +hagberries +hagberry +hagborn +hagbush +hagbushes +hagbut +hagbuts +hagdon +hagdons +hagfish +hagfishes +haggadic +haggard +haggardly +haggards +hagged +hagging +haggis +haggises +haggish +haggle +haggled +haggler +hagglers +haggles +haggling +hagridden +hagride +hagrides +hagriding +hagrode +hags +hah +hahs +haik +haika +haiks +haiku +hail +hailed +hailer +hailers +hailing +hails +hailstone +hailstones +hailstorm +hailstorms +haily +hair +hairball +hairballs +hairband +hairbands +hairbreadth +hairbreadths +hairbrush +hairbrushes +haircap +haircaps +haircut +haircuts +hairdo +hairdos +hairdresser +hairdressers +haired +hairier +hairiest +hairiness +hairinesses +hairless +hairlike +hairline +hairlines +hairlock +hairlocks +hairpiece +hairpieces +hairpin +hairpins +hairs +hairsbreadth +hairsbreadths +hairstyle +hairstyles +hairstyling +hairstylings +hairstylist +hairstylists +hairwork +hairworks +hairworm +hairworms +hairy +haj +hajes +haji +hajis +hajj +hajjes +hajji +hajjis +hajjs +hake +hakeem +hakeems +hakes +hakim +hakims +halakah +halakahs +halakic +halakist +halakists +halakoth +halala +halalah +halalahs +halalas +halation +halations +halavah +halavahs +halazone +halazones +halberd +halberds +halbert +halberts +halcyon +halcyons +hale +haled +haleness +halenesses +haler +halers +haleru +hales +halest +half +halfback +halfbacks +halfbeak +halfbeaks +halfhearted +halfheartedly +halfheartedness +halfheartednesses +halflife +halflives +halfness +halfnesses +halftime +halftimes +halftone +halftones +halfway +halibut +halibuts +halid +halide +halides +halidom +halidome +halidomes +halidoms +halids +haling +halite +halites +halitosis +halitosises +halitus +halituses +hall +hallah +hallahs +hallel +hallels +halliard +halliards +hallmark +hallmarked +hallmarking +hallmarks +hallo +halloa +halloaed +halloaing +halloas +halloed +halloes +halloing +halloo +hallooed +hallooing +halloos +hallos +hallot +halloth +hallow +hallowed +hallower +hallowers +hallowing +hallows +halls +halluces +hallucinate +hallucinated +hallucinates +hallucinating +hallucination +hallucinations +hallucinative +hallucinatory +hallucinogen +hallucinogenic +hallucinogens +hallux +hallway +hallways +halm +halms +halo +haloed +halogen +halogens +haloid +haloids +haloing +halolike +halos +halt +halted +halter +haltere +haltered +halteres +haltering +halters +halting +haltingly +haltless +halts +halutz +halutzim +halva +halvah +halvahs +halvas +halve +halved +halvers +halves +halving +halyard +halyards +ham +hamal +hamals +hamartia +hamartias +hamate +hamates +hamaul +hamauls +hamburg +hamburger +hamburgers +hamburgs +hame +hames +hamlet +hamlets +hammal +hammals +hammed +hammer +hammered +hammerer +hammerers +hammerhead +hammerheads +hammering +hammers +hammier +hammiest +hammily +hamming +hammock +hammocks +hammy +hamper +hampered +hamperer +hamperers +hampering +hampers +hams +hamster +hamsters +hamstring +hamstringing +hamstrings +hamstrung +hamular +hamulate +hamuli +hamulose +hamulous +hamulus +hamza +hamzah +hamzahs +hamzas +hanaper +hanapers +hance +hances +hand +handbag +handbags +handball +handballs +handbill +handbills +handbook +handbooks +handcar +handcars +handcart +handcarts +handclasp +handclasps +handcraft +handcrafted +handcrafting +handcrafts +handcuff +handcuffed +handcuffing +handcuffs +handed +handfast +handfasted +handfasting +handfasts +handful +handfuls +handgrip +handgrips +handgun +handguns +handhold +handholds +handicap +handicapped +handicapper +handicappers +handicapping +handicaps +handicrafsman +handicrafsmen +handicraft +handicrafter +handicrafters +handicrafts +handier +handiest +handily +handiness +handinesses +handing +handiwork +handiworks +handkerchief +handkerchiefs +handle +handled +handler +handlers +handles +handless +handlike +handling +handlings +handlist +handlists +handloom +handlooms +handmade +handmaid +handmaiden +handmaidens +handmaids +handoff +handoffs +handout +handouts +handpick +handpicked +handpicking +handpicks +handrail +handrails +hands +handsaw +handsaws +handsel +handseled +handseling +handselled +handselling +handsels +handset +handsets +handsewn +handsful +handshake +handshakes +handsome +handsomely +handsomeness +handsomenesses +handsomer +handsomest +handspring +handsprings +handstand +handstands +handwork +handworks +handwoven +handwrit +handwriting +handwritings +handwritten +handy +handyman +handymen +hang +hangable +hangar +hangared +hangaring +hangars +hangbird +hangbirds +hangdog +hangdogs +hanged +hanger +hangers +hangfire +hangfires +hanging +hangings +hangman +hangmen +hangnail +hangnails +hangnest +hangnests +hangout +hangouts +hangover +hangovers +hangs +hangtag +hangtags +hangup +hangups +hank +hanked +hanker +hankered +hankerer +hankerers +hankering +hankers +hankie +hankies +hanking +hanks +hanky +hanse +hansel +hanseled +hanseling +hanselled +hanselling +hansels +hanses +hansom +hansoms +hant +hanted +hanting +hantle +hantles +hants +hanuman +hanumans +haole +haoles +hap +hapax +hapaxes +haphazard +haphazardly +hapless +haplessly +haplessness +haplessnesses +haplite +haplites +haploid +haploidies +haploids +haploidy +haplont +haplonts +haplopia +haplopias +haploses +haplosis +haply +happed +happen +happened +happening +happenings +happens +happier +happiest +happily +happiness +happing +happy +haps +hapten +haptene +haptenes +haptenic +haptens +haptic +haptical +harangue +harangued +haranguer +haranguers +harangues +haranguing +harass +harassed +harasser +harassers +harasses +harassing +harassness +harassnesses +harbinger +harbingers +harbor +harbored +harborer +harborers +harboring +harbors +harbour +harboured +harbouring +harbours +hard +hardback +hardbacks +hardball +hardballs +hardboot +hardboots +hardcase +hardcore +harden +hardened +hardener +hardeners +hardening +hardens +harder +hardest +hardhack +hardhacks +hardhat +hardhats +hardhead +hardheaded +hardheadedly +hardheadedness +hardheads +hardhearted +hardheartedly +hardheartedness +hardheartednesses +hardier +hardies +hardiest +hardily +hardiness +hardinesses +hardly +hardness +hardnesses +hardpan +hardpans +hards +hardset +hardship +hardships +hardtack +hardtacks +hardtop +hardtops +hardware +hardwares +hardwood +hardwoods +hardy +hare +harebell +harebells +hared +hareem +hareems +harelike +harelip +harelipped +harelips +harem +harems +hares +hariana +harianas +haricot +haricots +harijan +harijans +haring +hark +harked +harken +harkened +harkener +harkeners +harkening +harkens +harking +harks +harl +harlequin +harlequins +harlot +harlotries +harlotry +harlots +harls +harm +harmed +harmer +harmers +harmful +harmfully +harmfulness +harmfulnesses +harmin +harmine +harmines +harming +harmins +harmless +harmlessly +harmlessness +harmlessnesses +harmonic +harmonica +harmonically +harmonicas +harmonics +harmonies +harmonious +harmoniously +harmoniousness +harmoniousnesses +harmonization +harmonizations +harmonize +harmonized +harmonizes +harmonizing +harmony +harms +harness +harnessed +harnesses +harnessing +harp +harped +harper +harpers +harpies +harpin +harping +harpings +harpins +harpist +harpists +harpoon +harpooned +harpooner +harpooners +harpooning +harpoons +harps +harpsichord +harpsichords +harpy +harridan +harridans +harried +harrier +harriers +harries +harrow +harrowed +harrower +harrowers +harrowing +harrows +harrumph +harrumphed +harrumphing +harrumphs +harry +harrying +harsh +harshen +harshened +harshening +harshens +harsher +harshest +harshly +harshness +harshnesses +harslet +harslets +hart +hartal +hartals +harts +haruspex +haruspices +harvest +harvested +harvester +harvesters +harvesting +harvests +has +hash +hashed +hasheesh +hasheeshes +hashes +hashing +hashish +hashishes +haslet +haslets +hasp +hasped +hasping +hasps +hassel +hassels +hassle +hassled +hassles +hassling +hassock +hassocks +hast +hastate +haste +hasted +hasteful +hasten +hastened +hastener +hasteners +hastening +hastens +hastes +hastier +hastiest +hastily +hasting +hasty +hat +hatable +hatband +hatbands +hatbox +hatboxes +hatch +hatcheck +hatched +hatchel +hatcheled +hatcheling +hatchelled +hatchelling +hatchels +hatcher +hatcheries +hatchers +hatchery +hatches +hatchet +hatchets +hatching +hatchings +hatchway +hatchways +hate +hateable +hated +hateful +hatefullness +hatefullnesses +hater +haters +hates +hatful +hatfuls +hath +hating +hatless +hatlike +hatmaker +hatmakers +hatpin +hatpins +hatrack +hatracks +hatred +hatreds +hats +hatsful +hatted +hatter +hatteria +hatterias +hatters +hatting +hauberk +hauberks +haugh +haughs +haughtier +haughtiest +haughtily +haughtiness +haughtinesses +haughty +haul +haulage +haulages +hauled +hauler +haulers +haulier +hauliers +hauling +haulm +haulmier +haulmiest +haulms +haulmy +hauls +haulyard +haulyards +haunch +haunched +haunches +haunt +haunted +haunter +haunters +haunting +hauntingly +haunts +hausen +hausens +hausfrau +hausfrauen +hausfraus +hautbois +hautboy +hautboys +hauteur +hauteurs +havdalah +havdalahs +have +havelock +havelocks +haven +havened +havening +havens +haver +havered +haverel +haverels +havering +havers +haves +having +havior +haviors +haviour +haviours +havoc +havocked +havocker +havockers +havocking +havocs +haw +hawed +hawfinch +hawfinches +hawing +hawk +hawkbill +hawkbills +hawked +hawker +hawkers +hawkey +hawkeys +hawkie +hawkies +hawking +hawkings +hawkish +hawklike +hawkmoth +hawkmoths +hawknose +hawknoses +hawks +hawkshaw +hawkshaws +hawkweed +hawkweeds +haws +hawse +hawser +hawsers +hawses +hawthorn +hawthorns +hay +haycock +haycocks +hayed +hayer +hayers +hayfork +hayforks +haying +hayings +haylage +haylages +hayloft +haylofts +haymaker +haymakers +haymow +haymows +hayrack +hayracks +hayrick +hayricks +hayride +hayrides +hays +hayseed +hayseeds +haystack +haystacks +hayward +haywards +haywire +haywires +hazan +hazanim +hazans +hazard +hazarded +hazarding +hazardous +hazards +haze +hazed +hazel +hazelly +hazelnut +hazelnuts +hazels +hazer +hazers +hazes +hazier +haziest +hazily +haziness +hazinesses +hazing +hazings +hazy +hazzan +hazzanim +hazzans +he +head +headache +headaches +headachier +headachiest +headachy +headband +headbands +headdress +headdresses +headed +header +headers +headfirst +headgate +headgates +headgear +headgears +headhunt +headhunted +headhunting +headhunts +headier +headiest +headily +heading +headings +headlamp +headlamps +headland +headlands +headless +headlight +headlights +headline +headlined +headlines +headlining +headlock +headlocks +headlong +headman +headmaster +headmasters +headmen +headmistress +headmistresses +headmost +headnote +headnotes +headphone +headphones +headpin +headpins +headquarter +headquartered +headquartering +headquarters +headrace +headraces +headrest +headrests +headroom +headrooms +heads +headsail +headsails +headset +headsets +headship +headships +headsman +headsmen +headstay +headstays +headstone +headstones +headstrong +headwaiter +headwaiters +headwater +headwaters +headway +headways +headwind +headwinds +headword +headwords +headwork +headworks +heady +heal +healable +healed +healer +healers +healing +heals +health +healthful +healthfully +healthfulness +healthfulnesses +healthier +healthiest +healths +healthy +heap +heaped +heaping +heaps +hear +hearable +heard +hearer +hearers +hearing +hearings +hearken +hearkened +hearkening +hearkens +hears +hearsay +hearsays +hearse +hearsed +hearses +hearsing +heart +heartache +heartaches +heartbeat +heartbeats +heartbreak +heartbreaking +heartbreaks +heartbroken +heartburn +heartburns +hearted +hearten +heartened +heartening +heartens +hearth +hearths +hearthstone +hearthstones +heartier +hearties +heartiest +heartily +heartiness +heartinesses +hearting +heartless +heartrending +hearts +heartsick +heartsickness +heartsicknesses +heartstrings +heartthrob +heartthrobs +heartwarming +heartwood +heartwoods +hearty +heat +heatable +heated +heatedly +heater +heaters +heath +heathen +heathens +heather +heathers +heathery +heathier +heathiest +heaths +heathy +heating +heatless +heats +heatstroke +heatstrokes +heaume +heaumes +heave +heaved +heaven +heavenlier +heavenliest +heavenly +heavens +heavenward +heaver +heavers +heaves +heavier +heavies +heaviest +heavily +heaviness +heavinesses +heaving +heavy +heavyset +heavyweight +heavyweights +hebdomad +hebdomads +hebetate +hebetated +hebetates +hebetating +hebetic +hebetude +hebetudes +hebraize +hebraized +hebraizes +hebraizing +hecatomb +hecatombs +heck +heckle +heckled +heckler +hecklers +heckles +heckling +hecks +hectare +hectares +hectic +hectical +hectically +hecticly +hector +hectored +hectoring +hectors +heddle +heddles +heder +heders +hedge +hedged +hedgehog +hedgehogs +hedgehop +hedgehopped +hedgehopping +hedgehops +hedgepig +hedgepigs +hedger +hedgerow +hedgerows +hedgers +hedges +hedgier +hedgiest +hedging +hedgy +hedonic +hedonics +hedonism +hedonisms +hedonist +hedonistic +hedonists +heed +heeded +heeder +heeders +heedful +heedfully +heedfulness +heedfulnesses +heeding +heedless +heedlessly +heedlessness +heedlessnesses +heeds +heehaw +heehawed +heehawing +heehaws +heel +heelball +heelballs +heeled +heeler +heelers +heeling +heelings +heelless +heelpost +heelposts +heels +heeltap +heeltaps +heeze +heezed +heezes +heezing +heft +hefted +hefter +hefters +heftier +heftiest +heftily +hefting +hefts +hefty +hegari +hegaris +hegemonies +hegemony +hegira +hegiras +hegumen +hegumene +hegumenes +hegumenies +hegumens +hegumeny +heifer +heifers +heigh +height +heighten +heightened +heightening +heightens +heighth +heighths +heights +heil +heiled +heiling +heils +heinie +heinies +heinous +heinously +heinousness +heinousnesses +heir +heirdom +heirdoms +heired +heiress +heiresses +heiring +heirless +heirloom +heirlooms +heirs +heirship +heirships +heist +heisted +heister +heisters +heisting +heists +hejira +hejiras +hektare +hektares +held +heliac +heliacal +heliast +heliasts +helical +helices +helicities +helicity +helicoid +helicoids +helicon +helicons +helicopt +helicopted +helicopter +helicopters +helicopting +helicopts +helio +helios +heliotrope +helipad +helipads +heliport +heliports +helistop +helistops +helium +heliums +helix +helixes +hell +hellbent +hellbox +hellboxes +hellcat +hellcats +helled +heller +helleri +helleries +hellers +hellery +hellfire +hellfires +hellgrammite +hellgrammites +hellhole +hellholes +helling +hellion +hellions +hellish +hellkite +hellkites +hello +helloed +helloes +helloing +hellos +hells +helluva +helm +helmed +helmet +helmeted +helmeting +helmets +helming +helminth +helminths +helmless +helms +helmsman +helmsmen +helot +helotage +helotages +helotism +helotisms +helotries +helotry +helots +help +helpable +helped +helper +helpers +helpful +helpfully +helpfulness +helpfulnesses +helping +helpings +helpless +helplessly +helplessness +helplessnesses +helpmate +helpmates +helpmeet +helpmeets +helps +helve +helved +helves +helving +hem +hemagog +hemagogs +hemal +hematal +hematein +hemateins +hematic +hematics +hematin +hematine +hematines +hematins +hematite +hematites +hematocrit +hematoid +hematologic +hematological +hematologies +hematologist +hematologists +hematology +hematoma +hematomas +hematomata +hematopenia +hematuria +heme +hemes +hemic +hemin +hemins +hemiola +hemiolas +hemipter +hemipters +hemisphere +hemispheres +hemispheric +hemispherical +hemline +hemlines +hemlock +hemlocks +hemmed +hemmer +hemmers +hemming +hemocoel +hemocoels +hemocyte +hemocytes +hemoglobin +hemoid +hemolyze +hemolyzed +hemolyzes +hemolyzing +hemophilia +hemophiliac +hemophiliacs +hemoptysis +hemorrhage +hemorrhaged +hemorrhages +hemorrhagic +hemorrhaging +hemorrhoids +hemostat +hemostats +hemp +hempen +hempie +hempier +hempiest +hemplike +hemps +hempseed +hempseeds +hempweed +hempweeds +hempy +hems +hen +henbane +henbanes +henbit +henbits +hence +henceforth +henceforward +henchman +henchmen +hencoop +hencoops +henequen +henequens +henequin +henequins +henhouse +henhouses +heniquen +heniquens +henlike +henna +hennaed +hennaing +hennas +henneries +hennery +henpeck +henpecked +henpecking +henpecks +henries +henry +henrys +hens +hent +hented +henting +hents +hep +heparin +heparins +hepatic +hepatica +hepaticae +hepaticas +hepatics +hepatitis +hepatize +hepatized +hepatizes +hepatizing +hepatoma +hepatomas +hepatomata +hepatomegaly +hepcat +hepcats +heptad +heptads +heptagon +heptagons +heptane +heptanes +heptarch +heptarchs +heptose +heptoses +her +herald +heralded +heraldic +heralding +heraldries +heraldry +heralds +herb +herbaceous +herbage +herbages +herbal +herbals +herbaria +herbicidal +herbicide +herbicides +herbier +herbiest +herbivorous +herbivorously +herbless +herblike +herbs +herby +herculean +hercules +herculeses +herd +herded +herder +herders +herdic +herdics +herding +herdlike +herdman +herdmen +herds +herdsman +herdsmen +here +hereabout +hereabouts +hereafter +hereafters +hereat +hereaway +hereby +heredes +hereditary +heredities +heredity +herein +hereinto +hereof +hereon +heres +heresies +heresy +heretic +heretical +heretics +hereto +heretofore +heretrices +heretrix +heretrixes +hereunder +hereunto +hereupon +herewith +heriot +heriots +heritage +heritages +heritor +heritors +heritrices +heritrix +heritrixes +herl +herls +herm +herma +hermae +hermaean +hermai +hermaphrodite +hermaphrodites +hermaphroditic +hermetic +hermetically +hermit +hermitic +hermitries +hermitry +hermits +herms +hern +hernia +herniae +hernial +hernias +herniate +herniated +herniates +herniating +herniation +herniations +herns +hero +heroes +heroic +heroical +heroics +heroin +heroine +heroines +heroins +heroism +heroisms +heroize +heroized +heroizes +heroizing +heron +heronries +heronry +herons +heros +herpes +herpeses +herpetic +herpetologic +herpetological +herpetologies +herpetologist +herpetologists +herpetology +herried +herries +herring +herrings +herry +herrying +hers +herself +hertz +hertzes +hes +hesitancies +hesitancy +hesitant +hesitantly +hesitate +hesitated +hesitates +hesitating +hesitation +hesitations +hessian +hessians +hessite +hessites +hest +hests +het +hetaera +hetaerae +hetaeras +hetaeric +hetaira +hetairai +hetairas +hetero +heterogenous +heterogenously +heterogenousness +heterogenousnesses +heteros +heterosexual +heterosexuals +heth +heths +hetman +hetmans +heuch +heuchs +heugh +heughs +hew +hewable +hewed +hewer +hewers +hewing +hewn +hews +hex +hexad +hexade +hexades +hexadic +hexads +hexagon +hexagonal +hexagons +hexagram +hexagrams +hexamine +hexamines +hexane +hexanes +hexapla +hexaplar +hexaplas +hexapod +hexapodies +hexapods +hexapody +hexarchies +hexarchy +hexed +hexer +hexerei +hexereis +hexers +hexes +hexing +hexone +hexones +hexosan +hexosans +hexose +hexoses +hexyl +hexyls +hey +heyday +heydays +heydey +heydeys +hi +hiatal +hiatus +hiatuses +hibachi +hibachis +hibernal +hibernate +hibernated +hibernates +hibernating +hibernation +hibernations +hibernator +hibernators +hibiscus +hibiscuses +hic +hiccough +hiccoughed +hiccoughing +hiccoughs +hiccup +hiccuped +hiccuping +hiccupped +hiccupping +hiccups +hick +hickey +hickeys +hickories +hickory +hicks +hid +hidable +hidalgo +hidalgos +hidden +hiddenly +hide +hideaway +hideaways +hided +hideless +hideous +hideously +hideousness +hideousnesses +hideout +hideouts +hider +hiders +hides +hiding +hidings +hidroses +hidrosis +hidrotic +hie +hied +hieing +hiemal +hierarch +hierarchical +hierarchies +hierarchs +hierarchy +hieratic +hieroglyphic +hieroglyphics +hies +higgle +higgled +higgler +higglers +higgles +higgling +high +highball +highballed +highballing +highballs +highborn +highboy +highboys +highbred +highbrow +highbrows +highbush +highchair +highchairs +higher +highest +highjack +highjacked +highjacking +highjacks +highland +highlander +highlanders +highlands +highlight +highlighted +highlighting +highlights +highly +highness +highnesses +highroad +highroads +highs +hight +hightail +hightailed +hightailing +hightails +highted +highth +highths +highting +hights +highway +highwayman +highwaymen +highways +hijack +hijacked +hijacker +hijackers +hijacking +hijacks +hijinks +hike +hiked +hiker +hikers +hikes +hiking +hila +hilar +hilarious +hilariously +hilarities +hilarity +hilding +hildings +hili +hill +hillbillies +hillbilly +hilled +hiller +hillers +hillier +hilliest +hilling +hillo +hilloa +hilloaed +hilloaing +hilloas +hillock +hillocks +hillocky +hilloed +hilloing +hillos +hills +hillside +hillsides +hilltop +hilltops +hilly +hilt +hilted +hilting +hiltless +hilts +hilum +hilus +him +himatia +himation +himations +himself +hin +hind +hinder +hindered +hinderer +hinderers +hindering +hinders +hindgut +hindguts +hindmost +hindquarter +hindquarters +hinds +hindsight +hindsights +hinge +hinged +hinger +hingers +hinges +hinging +hinnied +hinnies +hinny +hinnying +hins +hint +hinted +hinter +hinterland +hinterlands +hinters +hinting +hints +hip +hipbone +hipbones +hipless +hiplike +hipness +hipnesses +hipparch +hipparchs +hipped +hipper +hippest +hippie +hippiedom +hippiedoms +hippiehood +hippiehoods +hippier +hippies +hippiest +hipping +hippish +hippo +hippopotami +hippopotamus +hippopotamuses +hippos +hippy +hips +hipshot +hipster +hipsters +hirable +hiragana +hiraganas +hircine +hire +hireable +hired +hireling +hirelings +hirer +hirers +hires +hiring +hirple +hirpled +hirples +hirpling +hirsel +hirseled +hirseling +hirselled +hirselling +hirsels +hirsle +hirsled +hirsles +hirsling +hirsute +hirsutism +hirudin +hirudins +his +hisn +hispid +hiss +hissed +hisself +hisser +hissers +hisses +hissing +hissings +hist +histamin +histamine +histamines +histamins +histed +histidin +histidins +histing +histogen +histogens +histogram +histograms +histoid +histologic +histone +histones +histopathologic +histopathological +historian +historians +historic +historical +historically +histories +history +hists +hit +hitch +hitched +hitcher +hitchers +hitches +hitchhike +hitchhiked +hitchhiker +hitchhikers +hitchhikes +hitchhiking +hitching +hither +hitherto +hitless +hits +hitter +hitters +hitting +hive +hived +hiveless +hiver +hives +hiving +ho +hoactzin +hoactzines +hoactzins +hoagie +hoagies +hoagy +hoar +hoard +hoarded +hoarder +hoarders +hoarding +hoardings +hoards +hoarfrost +hoarfrosts +hoarier +hoariest +hoarily +hoariness +hoarinesses +hoars +hoarse +hoarsely +hoarsen +hoarsened +hoarseness +hoarsenesses +hoarsening +hoarsens +hoarser +hoarsest +hoary +hoatzin +hoatzines +hoatzins +hoax +hoaxed +hoaxer +hoaxers +hoaxes +hoaxing +hob +hobbed +hobbies +hobbing +hobble +hobbled +hobbler +hobblers +hobbles +hobbling +hobby +hobbyist +hobbyists +hobgoblin +hobgoblins +hoblike +hobnail +hobnailed +hobnails +hobnob +hobnobbed +hobnobbing +hobnobs +hobo +hoboed +hoboes +hoboing +hoboism +hoboisms +hobos +hobs +hock +hocked +hocker +hockers +hockey +hockeys +hocking +hocks +hockshop +hockshops +hocus +hocused +hocuses +hocusing +hocussed +hocusses +hocussing +hod +hodad +hodaddies +hodaddy +hodads +hodden +hoddens +hoddin +hoddins +hodgepodge +hodgepodges +hods +hoe +hoecake +hoecakes +hoed +hoedown +hoedowns +hoeing +hoelike +hoer +hoers +hoes +hog +hogan +hogans +hogback +hogbacks +hogfish +hogfishes +hogg +hogged +hogger +hoggers +hogging +hoggish +hoggs +hoglike +hogmanay +hogmanays +hogmane +hogmanes +hogmenay +hogmenays +hognose +hognoses +hognut +hognuts +hogs +hogshead +hogsheads +hogtie +hogtied +hogtieing +hogties +hogtying +hogwash +hogwashes +hogweed +hogweeds +hoick +hoicked +hoicking +hoicks +hoiden +hoidened +hoidening +hoidens +hoise +hoised +hoises +hoising +hoist +hoisted +hoister +hoisters +hoisting +hoists +hoke +hoked +hokes +hokey +hoking +hokku +hokum +hokums +hokypokies +hokypoky +holard +holards +hold +holdable +holdall +holdalls +holdback +holdbacks +holden +holder +holders +holdfast +holdfasts +holding +holdings +holdout +holdouts +holdover +holdovers +holds +holdup +holdups +hole +holed +holeless +holer +holes +holey +holibut +holibuts +holiday +holidayed +holidaying +holidays +holier +holies +holiest +holily +holiness +holinesses +holing +holism +holisms +holist +holistic +holists +holk +holked +holking +holks +holla +hollaed +hollaing +holland +hollands +hollas +holler +hollered +hollering +hollers +hollies +hollo +holloa +holloaed +holloaing +holloas +holloed +holloes +holloing +holloo +hollooed +hollooing +holloos +hollos +hollow +hollowed +hollower +hollowest +hollowing +hollowly +hollowness +hollownesses +hollows +holly +hollyhock +hollyhocks +holm +holmic +holmium +holmiums +holms +holocaust +holocausts +hologram +holograms +hologynies +hologyny +holotype +holotypes +holozoic +holp +holpen +holstein +holsteins +holster +holsters +holt +holts +holy +holyday +holydays +holytide +holytides +homage +homaged +homager +homagers +homages +homaging +hombre +hombres +homburg +homburgs +home +homebodies +homebody +homebred +homebreds +homecoming +homecomings +homed +homeland +homelands +homeless +homelier +homeliest +homelike +homeliness +homelinesses +homely +homemade +homemaker +homemakers +homemaking +homemakings +homer +homered +homering +homeroom +homerooms +homers +homes +homesick +homesickness +homesicknesses +homesite +homesites +homespun +homespuns +homestead +homesteader +homesteaders +homesteads +homestretch +homestretches +hometown +hometowns +homeward +homewards +homework +homeworks +homey +homicidal +homicide +homicides +homier +homiest +homiletic +homilies +homilist +homilists +homily +hominess +hominesses +homing +hominian +hominians +hominid +hominids +hominies +hominine +hominoid +hominoids +hominy +hommock +hommocks +homo +homogamies +homogamy +homogeneities +homogeneity +homogeneous +homogeneously +homogeneousness +homogeneousnesses +homogenies +homogenize +homogenized +homogenizer +homogenizers +homogenizes +homogenizing +homogeny +homogonies +homogony +homograph +homographs +homolog +homologies +homologs +homology +homonym +homonymies +homonyms +homonymy +homophone +homophones +homos +homosexual +homosexuals +homy +honan +honans +honcho +honchos +honda +hondas +hondle +hondled +hondling +hone +honed +honer +honers +hones +honest +honester +honestest +honesties +honestly +honesty +honewort +honeworts +honey +honeybee +honeybees +honeybun +honeybuns +honeycomb +honeycombed +honeycombing +honeycombs +honeydew +honeydews +honeyed +honeyful +honeying +honeymoon +honeymooned +honeymooning +honeymoons +honeys +honeysuckle +honeysuckles +hong +hongs +honied +honing +honk +honked +honker +honkers +honkey +honkeys +honkie +honkies +honking +honks +honky +honor +honorable +honorably +honorand +honorands +honoraries +honorarily +honorary +honored +honoree +honorees +honorer +honorers +honoring +honors +honour +honoured +honourer +honourers +honouring +honours +hooch +hooches +hood +hooded +hoodie +hoodies +hooding +hoodless +hoodlike +hoodlum +hoodlums +hoodoo +hoodooed +hoodooing +hoodoos +hoods +hoodwink +hoodwinked +hoodwinking +hoodwinks +hooey +hooeys +hoof +hoofbeat +hoofbeats +hoofed +hoofer +hoofers +hoofing +hoofless +hooflike +hoofs +hook +hooka +hookah +hookahs +hookas +hooked +hooker +hookers +hookey +hookeys +hookier +hookies +hookiest +hooking +hookless +hooklet +hooklets +hooklike +hooknose +hooknoses +hooks +hookup +hookups +hookworm +hookworms +hooky +hoolie +hooligan +hooligans +hooly +hoop +hooped +hooper +hoopers +hooping +hoopla +hooplas +hoopless +hooplike +hoopoe +hoopoes +hoopoo +hoopoos +hoops +hoopster +hoopsters +hoorah +hoorahed +hoorahing +hoorahs +hooray +hoorayed +hooraying +hoorays +hoosegow +hoosegows +hoosgow +hoosgows +hoot +hootch +hootches +hooted +hooter +hooters +hootier +hootiest +hooting +hoots +hooty +hooves +hop +hope +hoped +hopeful +hopefully +hopefulness +hopefulnesses +hopefuls +hopeless +hopelessly +hopelessness +hopelessnesses +hoper +hopers +hopes +hophead +hopheads +hoping +hoplite +hoplites +hoplitic +hopped +hopper +hoppers +hopping +hopple +hoppled +hopples +hoppling +hops +hopsack +hopsacks +hoptoad +hoptoads +hora +horah +horahs +horal +horary +horas +horde +horded +hordein +hordeins +hordes +hording +horehound +horehounds +horizon +horizons +horizontal +horizontally +hormonal +hormone +hormones +hormonic +horn +hornbeam +hornbeams +hornbill +hornbills +hornbook +hornbooks +horned +hornet +hornets +hornfels +hornier +horniest +hornily +horning +hornito +hornitos +hornless +hornlike +hornpipe +hornpipes +hornpout +hornpouts +horns +horntail +horntails +hornworm +hornworms +hornwort +hornworts +horny +horologe +horologes +horological +horologies +horologist +horologists +horology +horoscope +horoscopes +horrendous +horrent +horrible +horribleness +horriblenesses +horribles +horribly +horrid +horridly +horrific +horrified +horrifies +horrify +horrifying +horror +horrors +horse +horseback +horsebacks +horsecar +horsecars +horsed +horseflies +horsefly +horsehair +horsehairs +horsehide +horsehides +horseless +horseman +horsemanship +horsemanships +horsemen +horseplay +horseplays +horsepower +horsepowers +horseradish +horseradishes +horses +horseshoe +horseshoes +horsewoman +horsewomen +horsey +horsier +horsiest +horsily +horsing +horst +horste +horstes +horsts +horsy +hortatory +horticultural +horticulture +horticultures +horticulturist +horticulturists +hosanna +hosannaed +hosannaing +hosannas +hose +hosed +hosel +hosels +hosen +hoses +hosier +hosieries +hosiers +hosiery +hosing +hospice +hospices +hospitable +hospitably +hospital +hospitalities +hospitality +hospitalization +hospitalizations +hospitalize +hospitalized +hospitalizes +hospitalizing +hospitals +hospitia +hospodar +hospodars +host +hostage +hostages +hosted +hostel +hosteled +hosteler +hostelers +hosteling +hostelries +hostelry +hostels +hostess +hostessed +hostesses +hostessing +hostile +hostilely +hostiles +hostilities +hostility +hosting +hostler +hostlers +hostly +hosts +hot +hotbed +hotbeds +hotblood +hotbloods +hotbox +hotboxes +hotcake +hotcakes +hotch +hotched +hotches +hotching +hotchpot +hotchpots +hotdog +hotdogged +hotdogging +hotdogs +hotel +hotelier +hoteliers +hotelman +hotelmen +hotels +hotfoot +hotfooted +hotfooting +hotfoots +hothead +hotheaded +hotheadedly +hotheadedness +hotheadednesses +hotheads +hothouse +hothouses +hotly +hotness +hotnesses +hotpress +hotpressed +hotpresses +hotpressing +hotrod +hotrods +hots +hotshot +hotshots +hotspur +hotspurs +hotted +hotter +hottest +hotting +hottish +houdah +houdahs +hound +hounded +hounder +hounders +hounding +hounds +hour +hourglass +hourglasses +houri +houris +hourly +hours +house +houseboat +houseboats +houseboy +houseboys +housebreak +housebreaks +housebroken +houseclean +housecleaned +housecleaning +housecleanings +housecleans +housed +houseflies +housefly +houseful +housefuls +household +householder +householders +households +housekeeper +housekeepers +housekeeping +housel +houseled +houseling +houselled +houselling +housels +housemaid +housemaids +houseman +housemate +housemates +housemen +houser +housers +houses +housetop +housetops +housewares +housewarming +housewarmings +housewife +housewifeliness +housewifelinesses +housewifely +housewiferies +housewifery +housewives +housework +houseworks +housing +housings +hove +hovel +hoveled +hoveling +hovelled +hovelling +hovels +hover +hovered +hoverer +hoverers +hovering +hovers +how +howbeit +howdah +howdahs +howdie +howdies +howdy +howe +howes +however +howf +howff +howffs +howfs +howitzer +howitzers +howk +howked +howking +howks +howl +howled +howler +howlers +howlet +howlets +howling +howls +hows +hoy +hoyden +hoydened +hoydening +hoydens +hoyle +hoyles +hoys +huarache +huaraches +huaracho +huarachos +hub +hubbies +hubbub +hubbubs +hubby +hubcap +hubcaps +hubris +hubrises +hubs +huck +huckle +huckleberries +huckleberry +huckles +hucks +huckster +huckstered +huckstering +hucksters +huddle +huddled +huddler +huddlers +huddles +huddling +hue +hued +hueless +hues +huff +huffed +huffier +huffiest +huffily +huffing +huffish +huffs +huffy +hug +huge +hugely +hugeness +hugenesses +hugeous +huger +hugest +huggable +hugged +hugger +huggers +hugging +hugs +huh +huic +hula +hulas +hulk +hulked +hulkier +hulkiest +hulking +hulks +hulky +hull +hullabaloo +hullabaloos +hulled +huller +hullers +hulling +hullo +hulloa +hulloaed +hulloaing +hulloas +hulloed +hulloes +hulloing +hullos +hulls +hum +human +humane +humanely +humaneness +humanenesses +humaner +humanest +humanise +humanised +humanises +humanising +humanism +humanisms +humanist +humanistic +humanists +humanitarian +humanitarianism +humanitarianisms +humanitarians +humanities +humanity +humanization +humanizations +humanize +humanized +humanizes +humanizing +humankind +humankinds +humanly +humanness +humannesses +humanoid +humanoids +humans +humate +humates +humble +humbled +humbleness +humblenesses +humbler +humblers +humbles +humblest +humbling +humbly +humbug +humbugged +humbugging +humbugs +humdrum +humdrums +humeral +humerals +humeri +humerus +humic +humid +humidification +humidifications +humidified +humidifier +humidifiers +humidifies +humidify +humidifying +humidities +humidity +humidly +humidor +humidors +humified +humiliate +humiliated +humiliates +humiliating +humiliatingly +humiliation +humiliations +humilities +humility +hummable +hummed +hummer +hummers +humming +hummingbird +hummingbirds +hummock +hummocks +hummocky +humor +humoral +humored +humorful +humoring +humorist +humorists +humorless +humorlessly +humorlessness +humorlessnesses +humorous +humorously +humorousness +humorousnesses +humors +humour +humoured +humouring +humours +hump +humpback +humpbacked +humpbacks +humped +humph +humphed +humphing +humphs +humpier +humpiest +humping +humpless +humps +humpy +hums +humus +humuses +hun +hunch +hunchback +hunchbacked +hunchbacks +hunched +hunches +hunching +hundred +hundreds +hundredth +hundredths +hung +hunger +hungered +hungering +hungers +hungrier +hungriest +hungrily +hungry +hunk +hunker +hunkered +hunkering +hunkers +hunkies +hunks +hunky +hunnish +huns +hunt +huntable +hunted +huntedly +hunter +hunters +hunting +huntings +huntington +huntress +huntresses +hunts +huntsman +huntsmen +hup +hurdies +hurdle +hurdled +hurdler +hurdlers +hurdles +hurdling +hurds +hurl +hurled +hurler +hurlers +hurley +hurleys +hurlies +hurling +hurlings +hurls +hurly +hurrah +hurrahed +hurrahing +hurrahs +hurray +hurrayed +hurraying +hurrays +hurricane +hurricanes +hurried +hurrier +hurriers +hurries +hurry +hurrying +hurt +hurter +hurters +hurtful +hurting +hurtle +hurtled +hurtles +hurtless +hurtling +hurts +husband +husbanded +husbanding +husbandries +husbandry +husbands +hush +hushaby +hushed +hushedly +hushes +hushful +hushing +husk +husked +husker +huskers +huskier +huskies +huskiest +huskily +huskiness +huskinesses +husking +huskings +husklike +husks +husky +hussar +hussars +hussies +hussy +hustings +hustle +hustled +hustler +hustlers +hustles +hustling +huswife +huswifes +huswives +hut +hutch +hutched +hutches +hutching +hutlike +hutment +hutments +huts +hutted +hutting +hutzpa +hutzpah +hutzpahs +hutzpas +huzza +huzzaed +huzzah +huzzahed +huzzahing +huzzahs +huzzaing +huzzas +hwan +hyacinth +hyacinths +hyaena +hyaenas +hyaenic +hyalin +hyaline +hyalines +hyalins +hyalite +hyalites +hyalogen +hyalogens +hyaloid +hyaloids +hybrid +hybridization +hybridizations +hybridize +hybridized +hybridizer +hybridizers +hybridizes +hybridizing +hybrids +hybris +hybrises +hydatid +hydatids +hydra +hydracid +hydracids +hydrae +hydragog +hydragogs +hydrant +hydranth +hydranths +hydrants +hydras +hydrase +hydrases +hydrate +hydrated +hydrates +hydrating +hydrator +hydrators +hydraulic +hydraulics +hydria +hydriae +hydric +hydrid +hydride +hydrides +hydrids +hydro +hydrocarbon +hydrocarbons +hydrochloride +hydroelectric +hydroelectrically +hydroelectricities +hydroelectricity +hydrogel +hydrogels +hydrogen +hydrogenous +hydrogens +hydroid +hydroids +hydromel +hydromels +hydronic +hydrophobia +hydrophobias +hydropic +hydroplane +hydroplanes +hydrops +hydropses +hydropsies +hydropsy +hydros +hydrosol +hydrosols +hydrous +hydroxy +hydroxyl +hydroxyls +hydroxyurea +hyena +hyenas +hyenic +hyenine +hyenoid +hyetal +hygeist +hygeists +hygieist +hygieists +hygiene +hygienes +hygienic +hygienically +hygrometer +hygrometers +hygrometries +hygrometry +hying +hyla +hylas +hylozoic +hymen +hymenal +hymeneal +hymeneals +hymenia +hymenial +hymenium +hymeniums +hymens +hymn +hymnal +hymnals +hymnaries +hymnary +hymnbook +hymnbooks +hymned +hymning +hymnist +hymnists +hymnless +hymnlike +hymnodies +hymnody +hymns +hyoid +hyoidal +hyoidean +hyoids +hyoscine +hyoscines +hyp +hype +hyperacid +hyperacidities +hyperacidity +hyperactive +hyperacute +hyperadrenalism +hyperaggressive +hyperaggressiveness +hyperaggressivenesses +hyperanxious +hyperbole +hyperboles +hypercalcemia +hypercalcemias +hypercautious +hyperclean +hyperconscientious +hypercorrect +hypercritical +hyperemotional +hyperenergetic +hyperexcitable +hyperfastidious +hypergol +hypergols +hyperintense +hypermasculine +hypermilitant +hypermoralistic +hypernationalistic +hyperon +hyperons +hyperope +hyperopes +hyperreactive +hyperrealistic +hyperromantic +hypersensitive +hypersensitiveness +hypersensitivenesses +hypersensitivities +hypersensitivity +hypersexual +hypersusceptible +hypersuspicious +hypertense +hypertension +hypertensions +hypertensive +hypertensives +hyperthermia +hyperthyroidism +hyperuricemia +hypervigilant +hypes +hypha +hyphae +hyphal +hyphemia +hyphemias +hyphen +hyphenate +hyphenated +hyphenates +hyphenating +hyphenation +hyphenations +hyphened +hyphening +hyphens +hypnic +hypnoid +hypnoses +hypnosis +hypnotic +hypnotically +hypnotics +hypnotism +hypnotisms +hypnotizable +hypnotize +hypnotized +hypnotizes +hypnotizing +hypo +hypoacid +hypocalcemia +hypochondria +hypochondriac +hypochondriacs +hypochondrias +hypocrisies +hypocrisy +hypocrite +hypocrites +hypocritical +hypocritically +hypoderm +hypodermic +hypodermics +hypoderms +hypoed +hypogea +hypogeal +hypogean +hypogene +hypogeum +hypogynies +hypogyny +hypoing +hypokalemia +hyponea +hyponeas +hyponoia +hyponoias +hypopnea +hypopneas +hypopyon +hypopyons +hypos +hypotension +hypotensions +hypotenuse +hypotenuses +hypothec +hypothecs +hypotheses +hypothesis +hypothetical +hypothetically +hypothyroidism +hypoxia +hypoxias +hypoxic +hyps +hyraces +hyracoid +hyracoids +hyrax +hyraxes +hyson +hysons +hyssop +hyssops +hysterectomies +hysterectomize +hysterectomized +hysterectomizes +hysterectomizing +hysterectomy +hysteria +hysterias +hysteric +hysterical +hysterically +hysterics +hyte +iamb +iambi +iambic +iambics +iambs +iambus +iambuses +iatric +iatrical +ibex +ibexes +ibices +ibidem +ibis +ibises +ice +iceberg +icebergs +iceblink +iceblinks +iceboat +iceboats +icebound +icebox +iceboxes +icebreaker +icebreakers +icecap +icecaps +iced +icefall +icefalls +icehouse +icehouses +icekhana +icekhanas +iceless +icelike +iceman +icemen +icers +ices +ich +ichnite +ichnites +ichor +ichorous +ichors +ichs +ichthyic +ichthyologies +ichthyologist +ichthyologists +ichthyology +icicle +icicled +icicles +icier +iciest +icily +iciness +icinesses +icing +icings +icker +ickers +ickier +ickiest +icky +icon +icones +iconic +iconical +iconoclasm +iconoclasms +iconoclast +iconoclasts +icons +icteric +icterics +icterus +icteruses +ictic +ictus +ictuses +icy +id +idea +ideal +idealess +idealise +idealised +idealises +idealising +idealism +idealisms +idealist +idealistic +idealists +idealities +ideality +idealization +idealizations +idealize +idealized +idealizes +idealizing +ideally +idealogies +idealogy +ideals +ideas +ideate +ideated +ideates +ideating +ideation +ideations +ideative +idem +idems +identic +identical +identifiable +identification +identifications +identified +identifier +identifiers +identifies +identify +identifying +identities +identity +ideogram +ideograms +ideological +ideologies +ideology +ides +idiocies +idiocy +idiolect +idiolects +idiom +idiomatic +idiomatically +idioms +idiosyncrasies +idiosyncrasy +idiosyncratic +idiot +idiotic +idiotically +idiotism +idiotisms +idiots +idle +idled +idleness +idlenesses +idler +idlers +idles +idlesse +idlesses +idlest +idling +idly +idocrase +idocrases +idol +idolater +idolaters +idolatries +idolatrous +idolatry +idolise +idolised +idoliser +idolisers +idolises +idolising +idolism +idolisms +idolize +idolized +idolizer +idolizers +idolizes +idolizing +idols +idoneities +idoneity +idoneous +ids +idyl +idylist +idylists +idyll +idyllic +idyllist +idyllists +idylls +idyls +if +iffier +iffiest +iffiness +iffinesses +iffy +ifs +igloo +igloos +iglu +iglus +ignatia +ignatias +igneous +ignified +ignifies +ignify +ignifying +ignite +ignited +igniter +igniters +ignites +igniting +ignition +ignitions +ignitor +ignitors +ignitron +ignitrons +ignoble +ignobly +ignominies +ignominious +ignominiously +ignominy +ignoramus +ignoramuses +ignorance +ignorances +ignorant +ignorantly +ignore +ignored +ignorer +ignorers +ignores +ignoring +iguana +iguanas +iguanian +iguanians +ihram +ihrams +ikebana +ikebanas +ikon +ikons +ilea +ileac +ileal +ileitides +ileitis +ileum +ileus +ileuses +ilex +ilexes +ilia +iliac +iliad +iliads +ilial +ilium +ilk +ilka +ilks +ill +illation +illations +illative +illatives +illegal +illegalities +illegality +illegally +illegibilities +illegibility +illegible +illegibly +illegitimacies +illegitimacy +illegitimate +illegitimately +illicit +illicitly +illimitable +illimitably +illinium +illiniums +illiquid +illite +illiteracies +illiteracy +illiterate +illiterates +illites +illitic +illnaturedly +illness +illnesses +illogic +illogical +illogically +illogics +ills +illume +illumed +illumes +illuminate +illuminated +illuminates +illuminating +illuminatingly +illumination +illuminations +illumine +illumined +illumines +illuming +illumining +illusion +illusions +illusive +illusory +illustrate +illustrated +illustrates +illustrating +illustration +illustrations +illustrative +illustratively +illustrator +illustrators +illustrious +illustriousness +illustriousnesses +illuvia +illuvial +illuvium +illuviums +illy +ilmenite +ilmenites +image +imaged +imageries +imagery +images +imaginable +imaginably +imaginal +imaginary +imagination +imaginations +imaginative +imaginatively +imagine +imagined +imaginer +imaginers +imagines +imaging +imagining +imagism +imagisms +imagist +imagists +imago +imagoes +imam +imamate +imamates +imams +imaret +imarets +imaum +imaums +imbalance +imbalances +imbalm +imbalmed +imbalmer +imbalmers +imbalming +imbalms +imbark +imbarked +imbarking +imbarks +imbecile +imbeciles +imbecilic +imbecilities +imbecility +imbed +imbedded +imbedding +imbeds +imbibe +imbibed +imbiber +imbibers +imbibes +imbibing +imbitter +imbittered +imbittering +imbitters +imblaze +imblazed +imblazes +imblazing +imbodied +imbodies +imbody +imbodying +imbolden +imboldened +imboldening +imboldens +imbosom +imbosomed +imbosoming +imbosoms +imbower +imbowered +imbowering +imbowers +imbroglio +imbroglios +imbrown +imbrowned +imbrowning +imbrowns +imbrue +imbrued +imbrues +imbruing +imbrute +imbruted +imbrutes +imbruting +imbue +imbued +imbues +imbuing +imid +imide +imides +imidic +imido +imids +imine +imines +imino +imitable +imitate +imitated +imitates +imitating +imitation +imitations +imitator +imitators +immaculate +immaculately +immane +immanent +immaterial +immaterialities +immateriality +immature +immatures +immaturities +immaturity +immeasurable +immeasurably +immediacies +immediacy +immediate +immediately +immemorial +immense +immensely +immenser +immensest +immensities +immensity +immerge +immerged +immerges +immerging +immerse +immersed +immerses +immersing +immersion +immersions +immesh +immeshed +immeshes +immeshing +immies +immigrant +immigrants +immigrate +immigrated +immigrates +immigrating +immigration +immigrations +imminence +imminences +imminent +imminently +immingle +immingled +immingles +immingling +immix +immixed +immixes +immixing +immobile +immobilities +immobility +immobilize +immobilized +immobilizes +immobilizing +immoderacies +immoderacy +immoderate +immoderately +immodest +immodesties +immodestly +immodesty +immolate +immolated +immolates +immolating +immolation +immolations +immoral +immoralities +immorality +immorally +immortal +immortalities +immortality +immortalize +immortalized +immortalizes +immortalizing +immortals +immotile +immovabilities +immovability +immovable +immovably +immune +immunes +immunise +immunised +immunises +immunising +immunities +immunity +immunization +immunizations +immunize +immunized +immunizes +immunizing +immunologic +immunological +immunologies +immunologist +immunologists +immunology +immure +immured +immures +immuring +immutabilities +immutability +immutable +immutably +immy +imp +impact +impacted +impacter +impacters +impacting +impactor +impactors +impacts +impaint +impainted +impainting +impaints +impair +impaired +impairer +impairers +impairing +impairment +impairments +impairs +impala +impalas +impale +impaled +impalement +impalements +impaler +impalers +impales +impaling +impalpable +impalpably +impanel +impaneled +impaneling +impanelled +impanelling +impanels +imparities +imparity +impark +imparked +imparking +imparks +impart +imparted +imparter +imparters +impartialities +impartiality +impartially +imparting +imparts +impassable +impasse +impasses +impassioned +impassive +impassively +impassivities +impassivity +impaste +impasted +impastes +impasting +impasto +impastos +impatience +impatiences +impatiens +impatient +impatiently +impavid +impawn +impawned +impawning +impawns +impeach +impeached +impeaches +impeaching +impeachment +impeachments +impearl +impearled +impearling +impearls +impeccable +impeccably +impecunious +impecuniousness +impecuniousnesses +imped +impedance +impedances +impede +impeded +impeder +impeders +impedes +impediment +impediments +impeding +impel +impelled +impeller +impellers +impelling +impellor +impellors +impels +impend +impended +impending +impends +impenetrabilities +impenetrability +impenetrable +impenetrably +impenitence +impenitences +impenitent +imperative +imperatively +imperatives +imperceptible +imperceptibly +imperfection +imperfections +imperfectly +imperia +imperial +imperialism +imperialist +imperialistic +imperials +imperil +imperiled +imperiling +imperilled +imperilling +imperils +imperious +imperiously +imperishable +imperium +imperiums +impermanent +impermanently +impermeable +impermissible +impersonal +impersonally +impersonate +impersonated +impersonates +impersonating +impersonation +impersonations +impersonator +impersonators +impertinence +impertinences +impertinent +impertinently +imperturbable +impervious +impetigo +impetigos +impetuous +impetuousities +impetuousity +impetuously +impetus +impetuses +imphee +imphees +impi +impieties +impiety +imping +impinge +impinged +impingement +impingements +impinger +impingers +impinges +impinging +impings +impious +impis +impish +impishly +impishness +impishnesses +implacabilities +implacability +implacable +implacably +implant +implanted +implanting +implants +implausibilities +implausibility +implausible +implead +impleaded +impleading +impleads +impledge +impledged +impledges +impledging +implement +implementation +implementations +implemented +implementing +implements +implicate +implicated +implicates +implicating +implication +implications +implicit +implicitly +implied +implies +implode +imploded +implodes +imploding +implore +implored +implorer +implorers +implores +imploring +implosion +implosions +implosive +imply +implying +impolicies +impolicy +impolite +impolitic +imponderable +imponderables +impone +imponed +impones +imponing +imporous +import +importance +important +importantly +importation +importations +imported +importer +importers +importing +imports +importunate +importune +importuned +importunes +importuning +importunities +importunity +impose +imposed +imposer +imposers +imposes +imposing +imposingly +imposition +impositions +impossibilities +impossibility +impossible +impossibly +impost +imposted +imposter +imposters +imposting +impostor +impostors +imposts +imposture +impostures +impotence +impotences +impotencies +impotency +impotent +impotently +impotents +impound +impounded +impounding +impoundment +impoundments +impounds +impoverish +impoverished +impoverishes +impoverishing +impoverishment +impoverishments +impower +impowered +impowering +impowers +impracticable +impractical +imprecise +imprecisely +impreciseness +imprecisenesses +imprecision +impregabilities +impregability +impregable +impregn +impregnate +impregnated +impregnates +impregnating +impregnation +impregnations +impregned +impregning +impregns +impresa +impresario +impresarios +impresas +imprese +impreses +impress +impressed +impresses +impressible +impressing +impression +impressionable +impressions +impressive +impressively +impressiveness +impressivenesses +impressment +impressments +imprest +imprests +imprimatur +imprimaturs +imprimis +imprint +imprinted +imprinting +imprints +imprison +imprisoned +imprisoning +imprisonment +imprisonments +imprisons +improbabilities +improbability +improbable +improbably +impromptu +impromptus +improper +improperly +improprieties +impropriety +improvable +improve +improved +improvement +improvements +improver +improvers +improves +improvidence +improvidences +improvident +improving +improvisation +improvisations +improviser +improvisers +improvisor +improvisors +imprudence +imprudences +imprudent +imps +impudence +impudences +impudent +impudently +impugn +impugned +impugner +impugners +impugning +impugns +impulse +impulsed +impulses +impulsing +impulsion +impulsions +impulsive +impulsively +impulsiveness +impulsivenesses +impunities +impunity +impure +impurely +impurities +impurity +imputation +imputations +impute +imputed +imputer +imputers +imputes +imputing +in +inabilities +inability +inaccessibilities +inaccessibility +inaccessible +inaccuracies +inaccuracy +inaccurate +inaction +inactions +inactivate +inactivated +inactivates +inactivating +inactive +inactivities +inactivity +inadequacies +inadequacy +inadequate +inadequately +inadmissibility +inadmissible +inadvertence +inadvertences +inadvertencies +inadvertency +inadvertent +inadvertently +inadvisabilities +inadvisability +inadvisable +inalienabilities +inalienability +inalienable +inalienably +inane +inanely +inaner +inanes +inanest +inanimate +inanimately +inanimateness +inanimatenesses +inanities +inanition +inanitions +inanity +inapparent +inapplicable +inapposite +inappositely +inappositeness +inappositenesses +inappreciable +inappreciably +inappreciative +inapproachable +inappropriate +inappropriately +inappropriateness +inappropriatenesses +inapt +inaptly +inarable +inarch +inarched +inarches +inarching +inarguable +inarm +inarmed +inarming +inarms +inarticulate +inarticulately +inartistic +inartistically +inattention +inattentions +inattentive +inattentively +inattentiveness +inattentivenesses +inaudible +inaudibly +inaugurate +inaugurated +inaugurates +inaugurating +inauguration +inaugurations +inauspicious +inauthentic +inbeing +inbeings +inboard +inboards +inborn +inbound +inbounds +inbred +inbreed +inbreeding +inbreedings +inbreeds +inbuilt +inburst +inbursts +inby +inbye +incage +incaged +incages +incaging +incalculable +incalculably +incandescence +incandescences +incandescent +incantation +incantations +incapabilities +incapability +incapable +incapacitate +incapacitated +incapacitates +incapacitating +incapacities +incapacity +incarcerate +incarcerated +incarcerates +incarcerating +incarceration +incarcerations +incarnation +incarnations +incase +incased +incases +incasing +incautious +incendiaries +incendiary +incense +incensed +incenses +incensing +incentive +incentives +incept +incepted +incepting +inception +inceptions +inceptor +inceptors +incepts +incessant +incessantly +incest +incests +incestuous +inch +inched +inches +inching +inchmeal +inchoate +inchworm +inchworms +incidence +incidences +incident +incidental +incidentally +incidentals +incidents +incinerate +incinerated +incinerates +incinerating +incinerator +incinerators +incipient +incipit +incipits +incise +incised +incises +incising +incision +incisions +incisive +incisively +incisor +incisors +incisory +incisure +incisures +incitant +incitants +incite +incited +incitement +incitements +inciter +inciters +incites +inciting +incivil +incivilities +incivility +inclasp +inclasped +inclasping +inclasps +inclemencies +inclemency +inclement +inclination +inclinations +incline +inclined +incliner +incliners +inclines +inclining +inclip +inclipped +inclipping +inclips +inclose +inclosed +incloser +inclosers +incloses +inclosing +inclosure +inclosures +include +included +includes +including +inclusion +inclusions +inclusive +incog +incognito +incogs +incoherence +incoherences +incoherent +incoherently +incohesive +incombustible +income +incomer +incomers +incomes +incoming +incomings +incommensurate +incommodious +incommunicable +incommunicado +incomparable +incompatibility +incompatible +incompetence +incompetences +incompetencies +incompetency +incompetent +incompetents +incomplete +incompletely +incompleteness +incompletenesses +incomprehensible +inconceivable +inconceivably +inconclusive +incongruent +incongruities +incongruity +incongruous +incongruously +inconnu +inconnus +inconsecutive +inconsequence +inconsequences +inconsequential +inconsequentially +inconsiderable +inconsiderate +inconsiderately +inconsiderateness +inconsideratenesses +inconsistencies +inconsistency +inconsistent +inconsistently +inconsolable +inconsolably +inconspicuous +inconspicuously +inconstancies +inconstancy +inconstant +inconstantly +inconsumable +incontestable +incontestably +incontinence +incontinences +inconvenience +inconvenienced +inconveniences +inconveniencing +inconvenient +inconveniently +incony +incorporate +incorporated +incorporates +incorporating +incorporation +incorporations +incorporeal +incorporeally +incorpse +incorpsed +incorpses +incorpsing +incorrect +incorrectly +incorrectness +incorrectnesses +incorrigibilities +incorrigibility +incorrigible +incorrigibly +incorruptible +increase +increased +increases +increasing +increasingly +increate +incredibilities +incredibility +incredible +incredibly +incredulities +incredulity +incredulous +incredulously +increment +incremental +incremented +incrementing +increments +incriminate +incriminated +incriminates +incriminating +incrimination +incriminations +incriminatory +incross +incrosses +incrust +incrusted +incrusting +incrusts +incubate +incubated +incubates +incubating +incubation +incubations +incubator +incubators +incubi +incubus +incubuses +incudal +incudate +incudes +inculcate +inculcated +inculcates +inculcating +inculcation +inculcations +inculpable +incult +incumbencies +incumbency +incumbent +incumbents +incumber +incumbered +incumbering +incumbers +incur +incurable +incurious +incurred +incurring +incurs +incursion +incursions +incurve +incurved +incurves +incurving +incus +incuse +incused +incuses +incusing +indaba +indabas +indagate +indagated +indagates +indagating +indamin +indamine +indamines +indamins +indebted +indebtedness +indebtednesses +indecencies +indecency +indecent +indecenter +indecentest +indecently +indecipherable +indecision +indecisions +indecisive +indecisively +indecisiveness +indecisivenesses +indecorous +indecorously +indecorousness +indecorousnesses +indeed +indefatigable +indefatigably +indefensible +indefinable +indefinably +indefinite +indefinitely +indelible +indelibly +indelicacies +indelicacy +indelicate +indemnification +indemnifications +indemnified +indemnifies +indemnify +indemnifying +indemnities +indemnity +indene +indenes +indent +indentation +indentations +indented +indenter +indenters +indenting +indentor +indentors +indents +indenture +indentured +indentures +indenturing +independence +independent +independently +indescribable +indescribably +indestrucibility +indestrucible +indeterminacies +indeterminacy +indeterminate +indeterminately +indevout +index +indexed +indexer +indexers +indexes +indexing +india +indican +indicans +indicant +indicants +indicate +indicated +indicates +indicating +indication +indications +indicative +indicator +indicators +indices +indicia +indicias +indicium +indiciums +indict +indictable +indicted +indictee +indictees +indicter +indicters +indicting +indictment +indictments +indictor +indictors +indicts +indifference +indifferences +indifferent +indifferently +indigen +indigence +indigences +indigene +indigenes +indigenous +indigens +indigent +indigents +indigestible +indigestion +indigestions +indign +indignant +indignantly +indignation +indignations +indignities +indignity +indignly +indigo +indigoes +indigoid +indigoids +indigos +indirect +indirection +indirections +indirectly +indirectness +indirectnesses +indiscernible +indiscreet +indiscretion +indiscretions +indiscriminate +indiscriminately +indispensabilities +indispensability +indispensable +indispensables +indispensably +indisposed +indisposition +indispositions +indisputable +indisputably +indissoluble +indistinct +indistinctly +indistinctness +indistinctnesses +indistinguishable +indite +indited +inditer +inditers +indites +inditing +indium +indiums +individual +individualities +individuality +individualize +individualized +individualizes +individualizing +individually +individuals +indivisibility +indivisible +indocile +indoctrinate +indoctrinated +indoctrinates +indoctrinating +indoctrination +indoctrinations +indol +indole +indolence +indolences +indolent +indoles +indols +indominitable +indominitably +indoor +indoors +indorse +indorsed +indorsee +indorsees +indorser +indorsers +indorses +indorsing +indorsor +indorsors +indow +indowed +indowing +indows +indoxyl +indoxyls +indraft +indrafts +indrawn +indri +indris +indubitable +indubitably +induce +induced +inducement +inducements +inducer +inducers +induces +inducing +induct +inducted +inductee +inductees +inducting +induction +inductions +inductive +inductor +inductors +inducts +indue +indued +indues +induing +indulge +indulged +indulgence +indulgent +indulgently +indulger +indulgers +indulges +indulging +indulin +induline +indulines +indulins +indult +indults +indurate +indurated +indurates +indurating +indusia +indusial +indusium +industrial +industrialist +industrialization +industrializations +industrialize +industrialized +industrializes +industrializing +industrially +industries +industrious +industriously +industriousness +industriousnesses +industry +indwell +indwelling +indwells +indwelt +inearth +inearthed +inearthing +inearths +inebriate +inebriated +inebriates +inebriating +inebriation +inebriations +inedible +inedita +inedited +ineducable +ineffable +ineffably +ineffective +ineffectively +ineffectiveness +ineffectivenesses +ineffectual +ineffectually +ineffectualness +ineffectualnesses +inefficiency +inefficient +inefficiently +inelastic +inelasticities +inelasticity +inelegance +inelegances +inelegant +ineligibility +ineligible +inept +ineptitude +ineptitudes +ineptly +ineptness +ineptnesses +inequalities +inequality +inequities +inequity +ineradicable +inerrant +inert +inertia +inertiae +inertial +inertias +inertly +inertness +inertnesses +inerts +inescapable +inescapably +inessential +inestimable +inestimably +inevitabilities +inevitability +inevitable +inevitably +inexact +inexcusable +inexcusably +inexhaustible +inexhaustibly +inexorable +inexorably +inexpedient +inexpensive +inexperience +inexperienced +inexperiences +inexpert +inexpertly +inexpertness +inexpertnesses +inexperts +inexplicable +inexplicably +inexplicit +inexpressible +inexpressibly +inextinguishable +inextricable +inextricably +infallibility +infallible +infallibly +infamies +infamous +infamously +infamy +infancies +infancy +infant +infanta +infantas +infante +infantes +infantile +infantries +infantry +infants +infarct +infarcts +infare +infares +infatuate +infatuated +infatuates +infatuating +infatuation +infatuations +infauna +infaunae +infaunal +infaunas +infeasibilities +infeasibility +infeasible +infect +infected +infecter +infecters +infecting +infection +infections +infectious +infective +infector +infectors +infects +infecund +infelicities +infelicitous +infelicity +infeoff +infeoffed +infeoffing +infeoffs +infer +inference +inferenced +inferences +inferencing +inferential +inferior +inferiority +inferiors +infernal +infernally +inferno +infernos +inferred +inferrer +inferrers +inferring +infers +infertile +infertilities +infertility +infest +infestation +infestations +infested +infester +infesters +infesting +infests +infidel +infidelities +infidelity +infidels +infield +infielder +infielders +infields +infiltrate +infiltrated +infiltrates +infiltrating +infiltration +infiltrations +infinite +infinitely +infinites +infinitesimal +infinitesimally +infinities +infinitive +infinitives +infinitude +infinitudes +infinity +infirm +infirmaries +infirmary +infirmed +infirming +infirmities +infirmity +infirmly +infirms +infix +infixed +infixes +infixing +infixion +infixions +inflame +inflamed +inflamer +inflamers +inflames +inflaming +inflammable +inflammation +inflammations +inflammatory +inflatable +inflate +inflated +inflater +inflaters +inflates +inflating +inflation +inflationary +inflator +inflators +inflect +inflected +inflecting +inflection +inflectional +inflections +inflects +inflexed +inflexibilities +inflexibility +inflexible +inflexibly +inflict +inflicted +inflicting +infliction +inflictions +inflicts +inflight +inflow +inflows +influence +influences +influent +influential +influents +influenza +influenzas +influx +influxes +info +infold +infolded +infolder +infolders +infolding +infolds +inform +informal +informalities +informality +informally +informant +informants +information +informational +informations +informative +informed +informer +informers +informing +informs +infos +infra +infract +infracted +infracting +infraction +infractions +infracts +infrared +infrareds +infrequent +infrequently +infringe +infringed +infringement +infringements +infringes +infringing +infrugal +infuriate +infuriated +infuriates +infuriating +infuriatingly +infuse +infused +infuser +infusers +infuses +infusing +infusion +infusions +infusive +ingate +ingates +ingather +ingathered +ingathering +ingathers +ingenious +ingeniously +ingeniousness +ingeniousnesses +ingenue +ingenues +ingenuities +ingenuity +ingenuous +ingenuously +ingenuousness +ingenuousnesses +ingest +ingesta +ingested +ingesting +ingests +ingle +inglenook +inglenooks +ingles +inglorious +ingloriously +ingoing +ingot +ingoted +ingoting +ingots +ingraft +ingrafted +ingrafting +ingrafts +ingrain +ingrained +ingraining +ingrains +ingrate +ingrates +ingratiate +ingratiated +ingratiates +ingratiating +ingratitude +ingratitudes +ingredient +ingredients +ingress +ingresses +ingroup +ingroups +ingrown +ingrowth +ingrowths +inguinal +ingulf +ingulfed +ingulfing +ingulfs +inhabit +inhabitable +inhabitant +inhabited +inhabiting +inhabits +inhalant +inhalants +inhalation +inhalations +inhale +inhaled +inhaler +inhalers +inhales +inhaling +inhaul +inhauler +inhaulers +inhauls +inhere +inhered +inherent +inherently +inheres +inhering +inherit +inheritance +inheritances +inherited +inheriting +inheritor +inheritors +inherits +inhesion +inhesions +inhibit +inhibited +inhibiting +inhibition +inhibitions +inhibits +inhuman +inhumane +inhumanely +inhumanities +inhumanity +inhumanly +inhume +inhumed +inhumer +inhumers +inhumes +inhuming +inia +inimical +inimically +inimitable +inion +iniquities +iniquitous +iniquity +initial +initialed +initialing +initialization +initializations +initialize +initialized +initializes +initializing +initialled +initialling +initially +initials +initiate +initiated +initiates +initiating +initiation +initiations +initiative +initiatory +inject +injected +injecting +injection +injections +injector +injectors +injects +injudicious +injudiciously +injudiciousness +injudiciousnesses +injunction +injunctions +injure +injured +injurer +injurers +injures +injuries +injuring +injurious +injury +ink +inkberries +inkberry +inkblot +inkblots +inked +inker +inkers +inkhorn +inkhorns +inkier +inkiest +inkiness +inkinesses +inking +inkle +inkles +inkless +inklike +inkling +inklings +inkpot +inkpots +inks +inkstand +inkstands +inkwell +inkwells +inkwood +inkwoods +inky +inlace +inlaced +inlaces +inlacing +inlaid +inland +inlander +inlanders +inlands +inlay +inlayer +inlayers +inlaying +inlays +inlet +inlets +inletting +inlier +inliers +inly +inmate +inmates +inmesh +inmeshed +inmeshes +inmeshing +inmost +inn +innards +innate +innately +inned +inner +innerly +innermost +inners +innersole +innersoles +innerve +innerved +innerves +innerving +inning +innings +innkeeper +innkeepers +innless +innocence +innocences +innocent +innocenter +innocentest +innocently +innocents +innocuous +innovate +innovated +innovates +innovating +innovation +innovations +innovative +innovator +innovators +inns +innuendo +innuendoed +innuendoes +innuendoing +innuendos +innumerable +inocula +inoculate +inoculated +inoculates +inoculating +inoculation +inoculations +inoculum +inoculums +inoffensive +inoperable +inoperative +inopportune +inopportunely +inordinate +inordinately +inorganic +inosite +inosites +inositol +inositols +inpatient +inpatients +inphase +inpour +inpoured +inpouring +inpours +input +inputs +inputted +inputting +inquest +inquests +inquiet +inquieted +inquieting +inquiets +inquire +inquired +inquirer +inquirers +inquires +inquiries +inquiring +inquiringly +inquiry +inquisition +inquisitions +inquisitive +inquisitively +inquisitiveness +inquisitivenesses +inquisitor +inquisitorial +inquisitors +inroad +inroads +inrush +inrushes +ins +insalubrious +insane +insanely +insaner +insanest +insanities +insanity +insatiable +insatiate +inscribe +inscribed +inscribes +inscribing +inscription +inscriptions +inscroll +inscrolled +inscrolling +inscrolls +inscrutable +inscrutably +insculp +insculped +insculping +insculps +inseam +inseams +insect +insectan +insecticidal +insecticide +insecticides +insects +insecuration +insecurations +insecure +insecurely +insecurities +insecurity +insensibilities +insensibility +insensible +insensibly +insensitive +insensitivities +insensitivity +insentience +insentiences +insentient +inseparable +insert +inserted +inserter +inserters +inserting +insertion +insertions +inserts +inset +insets +insetted +insetter +insetters +insetting +insheath +insheathed +insheathing +insheaths +inshore +inshrine +inshrined +inshrines +inshrining +inside +insider +insiders +insides +insidious +insidiously +insidiousness +insidiousnesses +insight +insightful +insights +insigne +insignia +insignias +insignificant +insincere +insincerely +insincerities +insincerity +insinuate +insinuated +insinuates +insinuating +insinuation +insinuations +insipid +insipidities +insipidity +insipidus +insist +insisted +insistence +insistences +insistent +insistently +insister +insisters +insisting +insists +insnare +insnared +insnarer +insnarers +insnares +insnaring +insofar +insolate +insolated +insolates +insolating +insole +insolence +insolences +insolent +insolents +insoles +insolubilities +insolubility +insoluble +insolvencies +insolvency +insolvent +insomnia +insomnias +insomuch +insouciance +insouciances +insouciant +insoul +insouled +insouling +insouls +inspan +inspanned +inspanning +inspans +inspect +inspected +inspecting +inspection +inspections +inspector +inspectors +inspects +insphere +insphered +inspheres +insphering +inspiration +inspirational +inspirations +inspire +inspired +inspirer +inspirers +inspires +inspiring +inspirit +inspirited +inspiriting +inspirits +instabilities +instability +instable +instal +install +installation +installations +installed +installing +installment +installments +installs +instals +instance +instanced +instances +instancies +instancing +instancy +instant +instantaneous +instantaneously +instantly +instants +instar +instarred +instarring +instars +instate +instated +instates +instating +instead +instep +insteps +instigate +instigated +instigates +instigating +instigation +instigations +instigator +instigators +instil +instill +instilled +instilling +instills +instils +instinct +instinctive +instinctively +instincts +institute +institutes +institution +institutional +institutionalize +institutionally +institutions +instransitive +instroke +instrokes +instruct +instructed +instructing +instruction +instructional +instructions +instructive +instructor +instructors +instructorship +instructorships +instructs +instrument +instrumental +instrumentalist +instrumentalists +instrumentalities +instrumentality +instrumentals +instrumentation +instrumentations +instruments +insubordinate +insubordination +insubordinations +insubstantial +insufferable +insufferably +insufficent +insufficiencies +insufficiency +insufficient +insufficiently +insulant +insulants +insular +insularities +insularity +insulars +insulate +insulated +insulates +insulating +insulation +insulations +insulator +insulators +insulin +insulins +insult +insulted +insulter +insulters +insulting +insultingly +insults +insuperable +insuperably +insupportable +insurable +insurance +insurances +insurant +insurants +insure +insured +insureds +insurer +insurers +insures +insurgence +insurgences +insurgencies +insurgency +insurgent +insurgents +insuring +insurmounable +insurmounably +insurrection +insurrectionist +insurrectionists +insurrections +inswathe +inswathed +inswathes +inswathing +inswept +intact +intagli +intaglio +intaglios +intake +intakes +intangibilities +intangibility +intangible +intangibly +intarsia +intarsias +integer +integers +integral +integrals +integrate +integrated +integrates +integrating +integration +integrities +integrity +intellect +intellects +intellectual +intellectualism +intellectualisms +intellectually +intellectuals +intelligence +intelligent +intelligently +intelligibilities +intelligibility +intelligible +intelligibly +intemperance +intemperances +intemperate +intemperateness +intemperatenesses +intend +intended +intendeds +intender +intenders +intending +intends +intense +intensely +intenser +intensest +intensification +intensifications +intensified +intensifies +intensify +intensifying +intensities +intensity +intensive +intensively +intent +intention +intentional +intentionally +intentions +intently +intentness +intentnesses +intents +inter +interact +interacted +interacting +interaction +interactions +interactive +interactively +interacts +interagency +interatomic +interbank +interborough +interbred +interbreed +interbreeding +interbreeds +interbusiness +intercalate +intercalated +intercalates +intercalating +intercalation +intercalations +intercampus +intercede +interceded +intercedes +interceding +intercept +intercepted +intercepting +interception +interceptions +interceptor +interceptors +intercepts +intercession +intercessions +intercessor +intercessors +intercessory +interchange +interchangeable +interchangeably +interchanged +interchanges +interchanging +interchurch +intercity +interclass +intercoastal +intercollegiate +intercolonial +intercom +intercommunal +intercommunity +intercompany +intercoms +intercontinental +interconversion +intercounty +intercourse +intercourses +intercultural +intercurrent +intercut +intercuts +intercutting +interdenominational +interdepartmental +interdependence +interdependences +interdependent +interdict +interdicted +interdicting +interdiction +interdictions +interdicts +interdivisional +interelectronic +interest +interested +interesting +interestingly +interests +interethnic +interface +interfaces +interfacial +interfaculty +interfamily +interfere +interfered +interference +interferences +interferes +interfering +interfiber +interfraternity +intergalactic +intergang +intergovernmental +intergroup +interhemispheric +interim +interims +interindustry +interinstitutional +interior +interiors +interisland +interject +interjected +interjecting +interjection +interjectionally +interjections +interjects +interlace +interlaced +interlaces +interlacing +interlaid +interlap +interlapped +interlapping +interlaps +interlard +interlards +interlay +interlaying +interlays +interleave +interleaved +interleaves +interleaving +interlibrary +interlinear +interlock +interlocked +interlocking +interlocks +interlope +interloped +interloper +interlopers +interlopes +interloping +interlude +interludes +intermarriage +intermarriages +intermarried +intermarries +intermarry +intermarrying +intermediaries +intermediary +intermediate +intermediates +interment +interments +interminable +interminably +intermingle +intermingled +intermingles +intermingling +intermission +intermissions +intermit +intermits +intermitted +intermittent +intermittently +intermitting +intermix +intermixed +intermixes +intermixing +intermixture +intermixtures +intermolecular +intermountain +intern +internal +internally +internals +international +internationalism +internationalisms +internationalize +internationalized +internationalizes +internationalizing +internationally +internationals +interne +interned +internee +internees +internes +interning +internist +internists +internment +internments +interns +internship +internships +interoceanic +interoffice +interparticle +interparty +interpersonal +interplanetary +interplay +interplays +interpolate +interpolated +interpolates +interpolating +interpolation +interpolations +interpopulation +interpose +interposed +interposes +interposing +interposition +interpositions +interpret +interpretation +interpretations +interpretative +interpreted +interpreter +interpreters +interpreting +interpretive +interprets +interprovincial +interpupil +interquartile +interracial +interred +interreges +interregional +interrelate +interrelated +interrelatedness +interrelatednesses +interrelates +interrelating +interrelation +interrelations +interrelationship +interreligious +interrex +interring +interrogate +interrogated +interrogates +interrogating +interrogation +interrogations +interrogative +interrogatives +interrogator +interrogators +interrogatory +interrupt +interrupted +interrupter +interrupters +interrupting +interruption +interruptions +interruptive +interrupts +inters +interscholastic +intersect +intersected +intersecting +intersection +intersectional +intersections +intersects +intersex +intersexes +intersperse +interspersed +intersperses +interspersing +interspersion +interspersions +interstate +interstellar +interstice +interstices +intersticial +interstitial +intersystem +interterm +interterminal +intertie +interties +intertribal +intertroop +intertropical +intertwine +intertwined +intertwines +intertwining +interuniversity +interurban +interval +intervalley +intervals +intervene +intervened +intervenes +intervening +intervention +interventions +interview +interviewed +interviewer +interviewers +interviewing +interviews +intervillage +interwar +interweave +interweaves +interweaving +interwoven +interzonal +interzone +intestate +intestinal +intestine +intestines +inthral +inthrall +inthralled +inthralling +inthralls +inthrals +inthrone +inthroned +inthrones +inthroning +intima +intimacies +intimacy +intimae +intimal +intimas +intimate +intimated +intimately +intimates +intimating +intimation +intimations +intime +intimidate +intimidated +intimidates +intimidating +intimidation +intimidations +intine +intines +intitle +intitled +intitles +intitling +intitule +intituled +intitules +intituling +into +intolerable +intolerably +intolerance +intolerances +intolerant +intomb +intombed +intombing +intombs +intonate +intonated +intonates +intonating +intonation +intonations +intone +intoned +intoner +intoners +intones +intoning +intort +intorted +intorting +intorts +intown +intoxicant +intoxicants +intoxicate +intoxicated +intoxicates +intoxicating +intoxication +intoxications +intractable +intrados +intradoses +intramural +intransigence +intransigences +intransigent +intransigents +intrant +intrants +intravenous +intravenously +intreat +intreated +intreating +intreats +intrench +intrenched +intrenches +intrenching +intrepid +intrepidities +intrepidity +intricacies +intricacy +intricate +intricately +intrigue +intrigued +intrigues +intriguing +intriguingly +intrinsic +intrinsically +intro +introduce +introduced +introduces +introducing +introduction +introductions +introductory +introfied +introfies +introfy +introfying +introit +introits +intromit +intromits +intromitted +intromitting +introrse +intros +introspect +introspected +introspecting +introspection +introspections +introspective +introspectively +introspects +introversion +introversions +introvert +introverted +introverts +intrude +intruded +intruder +intruders +intrudes +intruding +intrusion +intrusions +intrusive +intrusiveness +intrusivenesses +intrust +intrusted +intrusting +intrusts +intubate +intubated +intubates +intubating +intuit +intuited +intuiting +intuition +intuitions +intuitive +intuitively +intuits +inturn +inturned +inturns +intwine +intwined +intwines +intwining +intwist +intwisted +intwisting +intwists +inulase +inulases +inulin +inulins +inundant +inundate +inundated +inundates +inundating +inundation +inundations +inurbane +inure +inured +inures +inuring +inurn +inurned +inurning +inurns +inutile +invade +invaded +invader +invaders +invades +invading +invalid +invalidate +invalidated +invalidates +invalidating +invalided +invaliding +invalidism +invalidity +invalidly +invalids +invaluable +invar +invariable +invariably +invars +invasion +invasions +invasive +invected +invective +invectives +inveigh +inveighed +inveighing +inveighs +inveigle +inveigled +inveigles +inveigling +invent +invented +inventer +inventers +inventing +invention +inventions +inventive +inventiveness +inventivenesses +inventor +inventoried +inventories +inventors +inventory +inventorying +invents +inverities +inverity +inverse +inversely +inverses +inversion +inversions +invert +inverted +inverter +inverters +invertibrate +invertibrates +inverting +invertor +invertors +inverts +invest +invested +investigate +investigated +investigates +investigating +investigation +investigations +investigative +investigator +investigators +investing +investiture +investitures +investment +investments +investor +investors +invests +inveteracies +inveteracy +inveterate +inviable +inviably +invidious +invidiously +invigorate +invigorated +invigorates +invigorating +invigoration +invigorations +invincibilities +invincibility +invincible +invincibly +inviolabilities +inviolability +inviolable +inviolate +invirile +inviscid +invisibilities +invisibility +invisible +invisibly +invital +invitation +invitations +invite +invited +invitee +invitees +inviter +inviters +invites +inviting +invocate +invocated +invocates +invocating +invocation +invocations +invoice +invoiced +invoices +invoicing +invoke +invoked +invoker +invokers +invokes +invoking +involuntarily +involuntary +involute +involuted +involutes +involuting +involve +involved +involvement +involvements +involver +involvers +involves +involving +invulnerability +invulnerable +invulnerably +inwall +inwalled +inwalling +inwalls +inward +inwardly +inwards +inweave +inweaved +inweaves +inweaving +inwind +inwinding +inwinds +inwound +inwove +inwoven +inwrap +inwrapped +inwrapping +inwraps +iodate +iodated +iodates +iodating +iodation +iodations +iodic +iodid +iodide +iodides +iodids +iodin +iodinate +iodinated +iodinates +iodinating +iodine +iodines +iodins +iodism +iodisms +iodize +iodized +iodizer +iodizers +iodizes +iodizing +iodoform +iodoforms +iodol +iodols +iodophor +iodophors +iodopsin +iodopsins +iodous +iolite +iolites +ion +ionic +ionicities +ionicity +ionics +ionise +ionised +ionises +ionising +ionium +ioniums +ionizable +ionize +ionized +ionizer +ionizers +ionizes +ionizing +ionomer +ionomers +ionone +ionones +ionosphere +ionospheres +ionospheric +ions +iota +iotacism +iotacisms +iotas +ipecac +ipecacs +ipomoea +ipomoeas +iracund +irade +irades +irascibilities +irascibility +irascible +irate +irately +irater +iratest +ire +ired +ireful +irefully +ireless +irenic +irenical +irenics +ires +irides +iridescence +iridescences +iridescent +iridic +iridium +iridiums +irids +iring +iris +irised +irises +irising +iritic +iritis +iritises +irk +irked +irking +irks +irksome +irksomely +iron +ironbark +ironbarks +ironclad +ironclads +irone +ironed +ironer +ironers +irones +ironic +ironical +ironically +ironies +ironing +ironings +ironist +ironists +ironlike +ironness +ironnesses +irons +ironside +ironsides +ironware +ironwares +ironweed +ironweeds +ironwood +ironwoods +ironwork +ironworker +ironworkers +ironworks +irony +irradiate +irradiated +irradiates +irradiating +irradiation +irradiations +irrational +irrationalities +irrationality +irrationally +irrationals +irreal +irreconcilabilities +irreconcilability +irreconcilable +irrecoverable +irrecoverably +irredeemable +irreducible +irreducibly +irrefutable +irregular +irregularities +irregularity +irregularly +irregulars +irrelevance +irrelevances +irrelevant +irreligious +irreparable +irreplaceable +irrepressible +irreproachable +irresistible +irresolute +irresolutely +irresolution +irresolutions +irrespective +irresponsibilities +irresponsibility +irresponsible +irresponsibly +irretrievable +irreverence +irreverences +irreversible +irrevocable +irrigate +irrigated +irrigates +irrigating +irrigation +irrigations +irritabilities +irritability +irritable +irritably +irritant +irritants +irritate +irritated +irritates +irritating +irritatingly +irritation +irritations +irrupt +irrupted +irrupting +irrupts +is +isagoge +isagoges +isagogic +isagogics +isarithm +isarithms +isatin +isatine +isatines +isatinic +isatins +isba +isbas +ischemia +ischemias +ischemic +ischia +ischial +ischium +isinglass +island +islanded +islander +islanders +islanding +islands +isle +isled +isleless +isles +islet +islets +isling +ism +isms +isobar +isobare +isobares +isobaric +isobars +isobath +isobaths +isocheim +isocheims +isochime +isochimes +isochor +isochore +isochores +isochors +isochron +isochrons +isocline +isoclines +isocracies +isocracy +isodose +isogamies +isogamy +isogenic +isogenies +isogeny +isogloss +isoglosses +isogon +isogonal +isogonals +isogone +isogones +isogonic +isogonics +isogonies +isogons +isogony +isogram +isograms +isograph +isographs +isogriv +isogrivs +isohel +isohels +isohyet +isohyets +isolable +isolate +isolated +isolates +isolating +isolation +isolations +isolator +isolators +isolead +isoleads +isoline +isolines +isolog +isologs +isologue +isologues +isomer +isomeric +isomers +isometric +isometrics +isometries +isometry +isomorph +isomorphs +isonomic +isonomies +isonomy +isophote +isophotes +isopleth +isopleths +isopod +isopodan +isopodans +isopods +isoprene +isoprenes +isospin +isospins +isospories +isospory +isostasies +isostasy +isotach +isotachs +isothere +isotheres +isotherm +isotherms +isotone +isotones +isotonic +isotope +isotopes +isotopic +isotopically +isotopies +isotopy +isotropies +isotropy +isotype +isotypes +isotypic +isozyme +isozymes +isozymic +issei +isseis +issuable +issuably +issuance +issuances +issuant +issue +issued +issuer +issuers +issues +issuing +isthmi +isthmian +isthmians +isthmic +isthmoid +isthmus +isthmuses +istle +istles +it +italic +italicization +italicizations +italicize +italicized +italicizes +italicizing +italics +itch +itched +itches +itchier +itchiest +itching +itchings +itchy +item +itemed +iteming +itemization +itemizations +itemize +itemized +itemizer +itemizers +itemizes +itemizing +items +iterance +iterances +iterant +iterate +iterated +iterates +iterating +iteration +iterations +iterative +iterum +ither +itinerant +itinerants +itinerary +its +itself +ivied +ivies +ivories +ivory +ivy +ivylike +iwis +ixia +ixias +ixodid +ixodids +ixtle +ixtles +izar +izars +izzard +izzards +jab +jabbed +jabber +jabbered +jabberer +jabberers +jabbering +jabbers +jabbing +jabiru +jabirus +jabot +jabots +jabs +jacal +jacales +jacals +jacamar +jacamars +jacana +jacanas +jacinth +jacinthe +jacinthes +jacinths +jack +jackal +jackals +jackaroo +jackaroos +jackass +jackasses +jackboot +jackboots +jackdaw +jackdaws +jacked +jacker +jackeroo +jackeroos +jackers +jacket +jacketed +jacketing +jackets +jackfish +jackfishes +jackhammer +jackhammers +jackies +jacking +jackknife +jackknifed +jackknifes +jackknifing +jackknives +jackleg +jacklegs +jackpot +jackpots +jackrabbit +jackrabbits +jacks +jackstay +jackstays +jacky +jacobin +jacobins +jacobus +jacobuses +jaconet +jaconets +jacquard +jacquards +jacqueline +jaculate +jaculated +jaculates +jaculating +jade +jaded +jadedly +jadeite +jadeites +jades +jading +jadish +jadishly +jaditic +jaeger +jaegers +jag +jager +jagers +jagg +jaggaries +jaggary +jagged +jaggeder +jaggedest +jaggedly +jagger +jaggeries +jaggers +jaggery +jaggheries +jagghery +jaggier +jaggiest +jagging +jaggs +jaggy +jagless +jagra +jagras +jags +jaguar +jaguars +jail +jailbait +jailbird +jailbirds +jailbreak +jailbreaks +jailed +jailer +jailers +jailing +jailor +jailors +jails +jake +jakes +jalap +jalapic +jalapin +jalapins +jalaps +jalop +jalopies +jaloppies +jaloppy +jalops +jalopy +jalousie +jalousies +jam +jamb +jambe +jambeau +jambeaux +jambed +jambes +jambing +jamboree +jamborees +jambs +jammed +jammer +jammers +jamming +jams +jane +janes +jangle +jangled +jangler +janglers +jangles +jangling +janiform +janisaries +janisary +janitor +janitorial +janitors +janizaries +janizary +janty +japan +japanize +japanized +japanizes +japanizing +japanned +japanner +japanners +japanning +japans +jape +japed +japer +japeries +japers +japery +japes +japing +japingly +japonica +japonicas +jar +jarful +jarfuls +jargon +jargoned +jargonel +jargonels +jargoning +jargons +jargoon +jargoons +jarina +jarinas +jarl +jarldom +jarldoms +jarls +jarosite +jarosites +jarovize +jarovized +jarovizes +jarovizing +jarrah +jarrahs +jarred +jarring +jars +jarsful +jarvey +jarveys +jasey +jasmine +jasmines +jasper +jaspers +jaspery +jassid +jassids +jato +jatos +jauk +jauked +jauking +jauks +jaunce +jaunced +jaunces +jauncing +jaundice +jaundiced +jaundices +jaundicing +jaunt +jaunted +jauntier +jauntiest +jauntily +jauntiness +jauntinesses +jaunting +jaunts +jaunty +jaup +jauped +jauping +jaups +java +javas +javelin +javelina +javelinas +javelined +javelining +javelins +jaw +jawan +jawans +jawbone +jawboned +jawbones +jawboning +jawed +jawing +jawlike +jawline +jawlines +jaws +jay +jaybird +jaybirds +jaygee +jaygees +jays +jayvee +jayvees +jaywalk +jaywalked +jaywalker +jaywalkers +jaywalking +jaywalks +jazz +jazzed +jazzer +jazzers +jazzes +jazzier +jazziest +jazzily +jazzing +jazzman +jazzmen +jazzy +jealous +jealousies +jealously +jealousy +jean +jeans +jeapordize +jeapordized +jeapordizes +jeapordizing +jeapordous +jebel +jebels +jee +jeed +jeeing +jeep +jeepers +jeeps +jeer +jeered +jeerer +jeerers +jeering +jeers +jees +jeez +jefe +jefes +jehad +jehads +jehu +jehus +jejuna +jejunal +jejune +jejunely +jejunities +jejunity +jejunum +jell +jelled +jellied +jellies +jellified +jellifies +jellify +jellifying +jelling +jells +jelly +jellyfish +jellyfishes +jellying +jelutong +jelutongs +jemadar +jemadars +jemidar +jemidars +jemmied +jemmies +jemmy +jemmying +jennet +jennets +jennies +jenny +jeopard +jeoparded +jeopardies +jeoparding +jeopards +jeopardy +jeopordize +jeopordized +jeopordizes +jeopordizing +jerboa +jerboas +jereed +jereeds +jeremiad +jeremiads +jerid +jerids +jerk +jerked +jerker +jerkers +jerkier +jerkies +jerkiest +jerkily +jerkin +jerking +jerkins +jerks +jerky +jeroboam +jeroboams +jerreed +jerreeds +jerrican +jerricans +jerrid +jerrids +jerries +jerry +jerrycan +jerrycans +jersey +jerseyed +jerseys +jess +jessant +jesse +jessed +jesses +jessing +jest +jested +jester +jesters +jestful +jesting +jestings +jests +jesuit +jesuitic +jesuitries +jesuitry +jesuits +jet +jetbead +jetbeads +jete +jetes +jetliner +jetliners +jeton +jetons +jetport +jetports +jets +jetsam +jetsams +jetsom +jetsoms +jetted +jettied +jetties +jetting +jettison +jettisoned +jettisoning +jettisons +jetton +jettons +jetty +jettying +jeu +jeux +jew +jewed +jewel +jeweled +jeweler +jewelers +jeweling +jewelled +jeweller +jewellers +jewelling +jewelries +jewelry +jewels +jewfish +jewfishes +jewing +jews +jezail +jezails +jezebel +jezebels +jib +jibb +jibbed +jibber +jibbers +jibbing +jibboom +jibbooms +jibbs +jibe +jibed +jiber +jibers +jibes +jibing +jibingly +jibs +jiff +jiffies +jiffs +jiffy +jig +jigaboo +jigaboos +jigged +jigger +jiggered +jiggers +jigging +jiggle +jiggled +jiggles +jigglier +jiggliest +jiggling +jiggly +jigs +jigsaw +jigsawed +jigsawing +jigsawn +jigsaws +jihad +jihads +jill +jillion +jillions +jills +jilt +jilted +jilter +jilters +jilting +jilts +jiminy +jimjams +jimmied +jimmies +jimminy +jimmy +jimmying +jimp +jimper +jimpest +jimply +jimpy +jimsonweed +jimsonweeds +jin +jingal +jingall +jingalls +jingals +jingko +jingkoes +jingle +jingled +jingler +jinglers +jingles +jinglier +jingliest +jingling +jingly +jingo +jingoes +jingoish +jingoism +jingoisms +jingoist +jingoistic +jingoists +jink +jinked +jinker +jinkers +jinking +jinks +jinn +jinnee +jinni +jinns +jins +jinx +jinxed +jinxes +jinxing +jipijapa +jipijapas +jitney +jitneys +jitter +jittered +jittering +jitters +jittery +jiujitsu +jiujitsus +jiujutsu +jiujutsus +jive +jived +jives +jiving +jnana +jnanas +jo +joannes +job +jobbed +jobber +jobberies +jobbers +jobbery +jobbing +jobholder +jobholders +jobless +jobs +jock +jockey +jockeyed +jockeying +jockeys +jocko +jockos +jocks +jocose +jocosely +jocosities +jocosity +jocular +jocund +jocundly +jodhpur +jodhpurs +joe +joes +joey +joeys +jog +jogged +jogger +joggers +jogging +joggle +joggled +joggler +jogglers +joggles +joggling +jogs +johannes +john +johnboat +johnboats +johnnies +johnny +johns +join +joinable +joinder +joinders +joined +joiner +joineries +joiners +joinery +joining +joinings +joins +joint +jointed +jointer +jointers +jointing +jointly +joints +jointure +jointured +jointures +jointuring +joist +joisted +joisting +joists +jojoba +jojobas +joke +joked +joker +jokers +jokes +jokester +jokesters +joking +jokingly +jole +joles +jollied +jollier +jollies +jolliest +jollified +jollifies +jollify +jollifying +jollily +jollities +jollity +jolly +jollying +jolt +jolted +jolter +jolters +joltier +joltiest +joltily +jolting +jolts +jolty +jongleur +jongleurs +jonquil +jonquils +joram +jorams +jordan +jordans +jorum +jorums +joseph +josephs +josh +joshed +josher +joshers +joshes +joshing +joss +josses +jostle +jostled +jostler +jostlers +jostles +jostling +jot +jota +jotas +jots +jotted +jotting +jottings +jotty +jouk +jouked +jouking +jouks +joule +joules +jounce +jounced +jounces +jouncier +jounciest +jouncing +jouncy +journal +journalism +journalisms +journalist +journalistic +journalists +journals +journey +journeyed +journeying +journeyman +journeymen +journeys +joust +jousted +jouster +jousters +jousting +jousts +jovial +jovially +jow +jowed +jowing +jowl +jowled +jowlier +jowliest +jowls +jowly +jows +joy +joyance +joyances +joyed +joyful +joyfuller +joyfullest +joyfully +joying +joyless +joyous +joyously +joyousness +joyousnesses +joypop +joypopped +joypopping +joypops +joyride +joyrider +joyriders +joyrides +joyriding +joyridings +joys +joystick +joysticks +juba +jubas +jubbah +jubbahs +jube +jubes +jubhah +jubhahs +jubilant +jubilate +jubilated +jubilates +jubilating +jubile +jubilee +jubilees +jubiles +jublilantly +jublilation +jublilations +judas +judases +judder +juddered +juddering +judders +judge +judged +judgement +judgements +judger +judgers +judges +judgeship +judgeships +judging +judgment +judgments +judicature +judicatures +judicial +judicially +judiciaries +judiciary +judicious +judiciously +judiciousness +judiciousnesses +judo +judoist +judoists +judoka +judokas +judos +jug +juga +jugal +jugate +jugful +jugfuls +jugged +juggernaut +juggernauts +jugging +juggle +juggled +juggler +juggleries +jugglers +jugglery +juggles +juggling +jugglings +jughead +jugheads +jugs +jugsful +jugula +jugular +jugulars +jugulate +jugulated +jugulates +jugulating +jugulum +jugum +jugums +juice +juiced +juicer +juicers +juices +juicier +juiciest +juicily +juiciness +juicinesses +juicing +juicy +jujitsu +jujitsus +juju +jujube +jujubes +jujuism +jujuisms +jujuist +jujuists +jujus +jujutsu +jujutsus +juke +jukebox +jukeboxes +juked +jukes +juking +julep +juleps +julienne +juliennes +jumble +jumbled +jumbler +jumblers +jumbles +jumbling +jumbo +jumbos +jumbuck +jumbucks +jump +jumped +jumper +jumpers +jumpier +jumpiest +jumpily +jumping +jumpoff +jumpoffs +jumps +jumpy +jun +junco +juncoes +juncos +junction +junctions +juncture +junctures +jungle +jungles +junglier +jungliest +jungly +junior +juniors +juniper +junipers +junk +junked +junker +junkers +junket +junketed +junketer +junketers +junketing +junkets +junkie +junkier +junkies +junkiest +junking +junkman +junkmen +junks +junky +junkyard +junkyards +junta +juntas +junto +juntos +jupe +jupes +jupon +jupons +jura +jural +jurally +jurant +jurants +jurat +juratory +jurats +jurel +jurels +juridic +juries +jurisdiction +jurisdictional +jurisdictions +jurisprudence +jurisprudences +jurist +juristic +jurists +juror +jurors +jury +juryman +jurymen +jus +jussive +jussives +just +justed +juster +justers +justest +justice +justices +justifiable +justification +justifications +justified +justifies +justify +justifying +justing +justle +justled +justles +justling +justly +justness +justnesses +justs +jut +jute +jutes +juts +jutted +juttied +jutties +jutting +jutty +juttying +juvenal +juvenals +juvenile +juveniles +juxtapose +juxtaposed +juxtaposes +juxtaposing +juxtaposition +juxtapositions +ka +kaas +kab +kabab +kababs +kabaka +kabakas +kabala +kabalas +kabar +kabars +kabaya +kabayas +kabbala +kabbalah +kabbalahs +kabbalas +kabeljou +kabeljous +kabiki +kabikis +kabob +kabobs +kabs +kabuki +kabukis +kachina +kachinas +kaddish +kaddishim +kadi +kadis +kae +kaes +kaffir +kaffirs +kaffiyeh +kaffiyehs +kafir +kafirs +kaftan +kaftans +kagu +kagus +kahuna +kahunas +kaiak +kaiaks +kaif +kaifs +kail +kails +kailyard +kailyards +kain +kainit +kainite +kainites +kainits +kains +kaiser +kaiserin +kaiserins +kaisers +kajeput +kajeputs +kaka +kakapo +kakapos +kakas +kakemono +kakemonos +kaki +kakis +kalam +kalamazoo +kalams +kale +kaleidoscope +kaleidoscopes +kaleidoscopic +kaleidoscopical +kaleidoscopically +kalends +kales +kalewife +kalewives +kaleyard +kaleyards +kalian +kalians +kalif +kalifate +kalifates +kalifs +kalimba +kalimbas +kaliph +kaliphs +kalium +kaliums +kallidin +kallidins +kalmia +kalmias +kalong +kalongs +kalpa +kalpak +kalpaks +kalpas +kalyptra +kalyptras +kamaaina +kamaainas +kamacite +kamacites +kamala +kamalas +kame +kames +kami +kamik +kamikaze +kamikazes +kamiks +kampong +kampongs +kamseen +kamseens +kamsin +kamsins +kana +kanas +kane +kanes +kangaroo +kangaroos +kanji +kanjis +kantar +kantars +kantele +kanteles +kaoliang +kaoliangs +kaolin +kaoline +kaolines +kaolinic +kaolins +kaon +kaons +kapa +kapas +kaph +kaphs +kapok +kapoks +kappa +kappas +kaput +kaputt +karakul +karakuls +karat +karate +karates +karats +karma +karmas +karmic +karn +karnofsky +karns +karoo +karoos +kaross +karosses +karroo +karroos +karst +karstic +karsts +kart +karting +kartings +karts +karyotin +karyotins +kas +kasha +kashas +kasher +kashered +kashering +kashers +kashmir +kashmirs +kashrut +kashruth +kashruths +kashruts +kat +katakana +katakanas +kathodal +kathode +kathodes +kathodic +kation +kations +kats +katydid +katydids +kauri +kauries +kauris +kaury +kava +kavas +kavass +kavasses +kay +kayak +kayaker +kayakers +kayaks +kayles +kayo +kayoed +kayoes +kayoing +kayos +kays +kazoo +kazoos +kea +keas +kebab +kebabs +kebar +kebars +kebbie +kebbies +kebbock +kebbocks +kebbuck +kebbucks +keblah +keblahs +kebob +kebobs +keck +kecked +kecking +keckle +keckled +keckles +keckling +kecks +keddah +keddahs +kedge +kedged +kedgeree +kedgerees +kedges +kedging +keef +keefs +keek +keeked +keeking +keeks +keel +keelage +keelages +keelboat +keelboats +keeled +keelhale +keelhaled +keelhales +keelhaling +keelhaul +keelhauled +keelhauling +keelhauls +keeling +keelless +keels +keelson +keelsons +keen +keened +keener +keeners +keenest +keening +keenly +keenness +keennesses +keens +keep +keepable +keeper +keepers +keeping +keepings +keeps +keepsake +keepsakes +keeshond +keeshonden +keeshonds +keester +keesters +keet +keets +keeve +keeves +kef +kefir +kefirs +kefs +keg +kegeler +kegelers +kegler +keglers +kegling +keglings +kegs +keir +keirs +keister +keisters +keitloa +keitloas +keloid +keloidal +keloids +kelp +kelped +kelpie +kelpies +kelping +kelps +kelpy +kelson +kelsons +kelter +kelters +kelvin +kelvins +kemp +kemps +kempt +ken +kenaf +kenafs +kench +kenches +kendo +kendos +kenned +kennel +kenneled +kenneling +kennelled +kennelling +kennels +kenning +kennings +keno +kenos +kenosis +kenosises +kenotic +kenotron +kenotrons +kens +kent +kep +kephalin +kephalins +kepi +kepis +kepped +keppen +kepping +keps +kept +keramic +keramics +keratin +keratins +keratoid +keratoma +keratomas +keratomata +keratose +kerb +kerbed +kerbing +kerbs +kerchief +kerchiefs +kerchieves +kerchoo +kerf +kerfed +kerfing +kerfs +kermes +kermess +kermesses +kermis +kermises +kern +kerne +kerned +kernel +kerneled +kerneling +kernelled +kernelling +kernels +kernes +kerning +kernite +kernites +kerns +kerogen +kerogens +kerosene +kerosenes +kerosine +kerosines +kerplunk +kerria +kerrias +kerries +kerry +kersey +kerseys +kerygma +kerygmata +kestrel +kestrels +ketch +ketches +ketchup +ketchups +ketene +ketenes +keto +ketol +ketone +ketones +ketonic +ketose +ketoses +ketosis +ketotic +kettle +kettledrum +kettledrums +kettles +kevel +kevels +kevil +kevils +kex +kexes +key +keyboard +keyboarded +keyboarding +keyboards +keyed +keyer +keyhole +keyholes +keying +keyless +keynote +keynoted +keynoter +keynoters +keynotes +keynoting +keypunch +keypunched +keypuncher +keypunchers +keypunches +keypunching +keys +keyset +keysets +keyster +keysters +keystone +keystones +keyway +keyways +keyword +keywords +khaddar +khaddars +khadi +khadis +khaki +khakis +khalif +khalifa +khalifas +khalifs +khamseen +khamseens +khamsin +khamsins +khan +khanate +khanates +khans +khat +khats +khazen +khazenim +khazens +kheda +khedah +khedahs +khedas +khedival +khedive +khedives +khi +khirkah +khirkahs +khis +kiang +kiangs +kiaugh +kiaughs +kibble +kibbled +kibbles +kibbling +kibbutz +kibbutzim +kibe +kibes +kibitz +kibitzed +kibitzer +kibitzers +kibitzes +kibitzing +kibla +kiblah +kiblahs +kiblas +kibosh +kiboshed +kiboshes +kiboshing +kick +kickback +kickbacks +kicked +kicker +kickers +kicking +kickoff +kickoffs +kicks +kickshaw +kickshaws +kickup +kickups +kid +kidded +kidder +kidders +kiddie +kiddies +kidding +kiddingly +kiddish +kiddo +kiddoes +kiddos +kiddush +kiddushes +kiddy +kidlike +kidnap +kidnaped +kidnaper +kidnapers +kidnaping +kidnapped +kidnapper +kidnappers +kidnapping +kidnaps +kidney +kidneys +kids +kidskin +kidskins +kief +kiefs +kielbasa +kielbasas +kielbasy +kier +kiers +kiester +kiesters +kif +kifs +kike +kikes +kilim +kilims +kill +killdee +killdeer +killdeers +killdees +killed +killer +killers +killick +killicks +killing +killings +killjoy +killjoys +killock +killocks +kills +kiln +kilned +kilning +kilns +kilo +kilobar +kilobars +kilobit +kilobits +kilocycle +kilocycles +kilogram +kilograms +kilohertz +kilometer +kilometers +kilomole +kilomoles +kilorad +kilorads +kilos +kiloton +kilotons +kilovolt +kilovolts +kilowatt +kilowatts +kilt +kilted +kilter +kilters +kiltie +kilties +kilting +kiltings +kilts +kilty +kimono +kimonoed +kimonos +kin +kinase +kinases +kind +kinder +kindergarten +kindergartens +kindergartner +kindergartners +kindest +kindhearted +kindle +kindled +kindler +kindlers +kindles +kindless +kindlier +kindliest +kindliness +kindlinesses +kindling +kindlings +kindly +kindness +kindnesses +kindred +kindreds +kinds +kine +kinema +kinemas +kines +kineses +kinesics +kinesis +kinetic +kinetics +kinetin +kinetins +kinfolk +kinfolks +king +kingbird +kingbirds +kingbolt +kingbolts +kingcup +kingcups +kingdom +kingdoms +kinged +kingfish +kingfisher +kingfishers +kingfishes +kinghood +kinghoods +kinging +kingless +kinglet +kinglets +kinglier +kingliest +kinglike +kingly +kingpin +kingpins +kingpost +kingposts +kings +kingship +kingships +kingside +kingsides +kingwood +kingwoods +kinin +kinins +kink +kinkajou +kinkajous +kinked +kinkier +kinkiest +kinkily +kinking +kinks +kinky +kino +kinos +kins +kinsfolk +kinship +kinships +kinsman +kinsmen +kinswoman +kinswomen +kiosk +kiosks +kip +kipped +kippen +kipper +kippered +kippering +kippers +kipping +kips +kipskin +kipskins +kirigami +kirigamis +kirk +kirkman +kirkmen +kirks +kirmess +kirmesses +kirn +kirned +kirning +kirns +kirsch +kirsches +kirtle +kirtled +kirtles +kishka +kishkas +kishke +kishkes +kismat +kismats +kismet +kismetic +kismets +kiss +kissable +kissably +kissed +kisser +kissers +kisses +kissing +kist +kistful +kistfuls +kists +kit +kitchen +kitchens +kite +kited +kiter +kiters +kites +kith +kithara +kitharas +kithe +kithed +kithes +kithing +kiths +kiting +kitling +kitlings +kits +kitsch +kitsches +kitschy +kitted +kittel +kitten +kittened +kittening +kittenish +kittens +kitties +kitting +kittle +kittled +kittler +kittles +kittlest +kittling +kitty +kiva +kivas +kiwi +kiwis +klatch +klatches +klatsch +klatsches +klavern +klaverns +klaxon +klaxons +kleagle +kleagles +kleig +klepht +klephtic +klephts +kleptomania +kleptomaniac +kleptomaniacs +kleptomanias +klieg +klong +klongs +kloof +kloofs +kludge +kludges +klutz +klutzes +klutzier +klutziest +klutzy +klystron +klystrons +knack +knacked +knacker +knackeries +knackers +knackery +knacking +knacks +knap +knapped +knapper +knappers +knapping +knaps +knapsack +knapsacks +knapweed +knapweeds +knar +knarred +knarry +knars +knave +knaveries +knavery +knaves +knavish +knawel +knawels +knead +kneaded +kneader +kneaders +kneading +kneads +knee +kneecap +kneecaps +kneed +kneehole +kneeholes +kneeing +kneel +kneeled +kneeler +kneelers +kneeling +kneels +kneepad +kneepads +kneepan +kneepans +knees +knell +knelled +knelling +knells +knelt +knew +knickers +knickknack +knickknacks +knife +knifed +knifer +knifers +knifes +knifing +knight +knighted +knighthood +knighthoods +knighting +knightly +knights +knish +knishes +knit +knits +knitted +knitter +knitters +knitting +knittings +knitwear +knitwears +knives +knob +knobbed +knobbier +knobbiest +knobby +knoblike +knobs +knock +knocked +knocker +knockers +knocking +knockoff +knockoffs +knockout +knockouts +knocks +knockwurst +knockwursts +knoll +knolled +knoller +knollers +knolling +knolls +knolly +knop +knopped +knops +knosp +knosps +knot +knothole +knotholes +knotless +knotlike +knots +knotted +knotter +knotters +knottier +knottiest +knottily +knotting +knotty +knotweed +knotweeds +knout +knouted +knouting +knouts +know +knowable +knower +knowers +knowing +knowinger +knowingest +knowings +knowledge +knowledgeable +knowledges +known +knowns +knows +knuckle +knucklebone +knucklebones +knuckled +knuckler +knucklers +knuckles +knucklier +knuckliest +knuckling +knuckly +knur +knurl +knurled +knurlier +knurliest +knurling +knurls +knurly +knurs +koa +koala +koalas +koan +koans +koas +kobold +kobolds +koel +koels +kohl +kohlrabi +kohlrabies +kohls +koine +koines +kokanee +kokanees +kola +kolacky +kolas +kolhoz +kolhozes +kolhozy +kolinski +kolinskies +kolinsky +kolkhos +kolkhoses +kolkhosy +kolkhoz +kolkhozes +kolkhozy +kolkoz +kolkozes +kolkozy +kolo +kolos +komatik +komatiks +komondor +komondorock +komondorok +komondors +koodoo +koodoos +kook +kookie +kookier +kookiest +kooks +kooky +kop +kopeck +kopecks +kopek +kopeks +koph +kophs +kopje +kopjes +koppa +koppas +koppie +koppies +kops +kor +kors +korun +koruna +korunas +koruny +kos +kosher +koshered +koshering +koshers +koss +koto +kotos +kotow +kotowed +kotower +kotowers +kotowing +kotows +koumis +koumises +koumiss +koumisses +koumys +koumyses +koumyss +koumysses +kousso +koussos +kowtow +kowtowed +kowtower +kowtowers +kowtowing +kowtows +kraal +kraaled +kraaling +kraals +kraft +krafts +krait +kraits +kraken +krakens +krater +kraters +kraut +krauts +kremlin +kremlins +kreutzer +kreutzers +kreuzer +kreuzers +krikorian +krill +krills +krimmer +krimmers +kris +krises +krona +krone +kronen +kroner +kronor +kronur +kroon +krooni +kroons +krubi +krubis +krubut +krubuts +kruller +krullers +kryolite +kryolites +kryolith +kryoliths +krypton +kryptons +kuchen +kudo +kudos +kudu +kudus +kudzu +kudzus +kue +kues +kulak +kulaki +kulaks +kultur +kulturs +kumiss +kumisses +kummel +kummels +kumquat +kumquats +kumys +kumyses +kunzite +kunzites +kurbash +kurbashed +kurbashes +kurbashing +kurgan +kurgans +kurta +kurtas +kurtosis +kurtosises +kuru +kurus +kusso +kussos +kvas +kvases +kvass +kvasses +kvetch +kvetched +kvetches +kvetching +kwacha +kyack +kyacks +kyanise +kyanised +kyanises +kyanising +kyanite +kyanites +kyanize +kyanized +kyanizes +kyanizing +kyar +kyars +kyat +kyats +kylikes +kylix +kymogram +kymograms +kyphoses +kyphosis +kyphotic +kyrie +kyries +kyte +kytes +kythe +kythed +kythes +kything +la +laager +laagered +laagering +laagers +lab +labara +labarum +labarums +labdanum +labdanums +label +labeled +labeler +labelers +labeling +labella +labelled +labeller +labellers +labelling +labellum +labels +labia +labial +labially +labials +labiate +labiated +labiates +labile +labilities +lability +labium +labor +laboratories +laboratory +labored +laborer +laborers +laboring +laborious +laboriously +laborite +laborites +labors +labour +laboured +labourer +labourers +labouring +labours +labra +labret +labrets +labroid +labroids +labrum +labrums +labs +laburnum +laburnums +labyrinth +labyrinthine +labyrinths +lac +lace +laced +laceless +lacelike +lacer +lacerate +lacerated +lacerates +lacerating +laceration +lacerations +lacers +lacertid +lacertids +laces +lacewing +lacewings +lacewood +lacewoods +lacework +laceworks +lacey +laches +lachrymose +lacier +laciest +lacily +laciness +lacinesses +lacing +lacings +lack +lackadaisical +lackadaisically +lackaday +lacked +lacker +lackered +lackering +lackers +lackey +lackeyed +lackeying +lackeys +lacking +lackluster +lacks +laconic +laconically +laconism +laconisms +lacquer +lacquered +lacquering +lacquers +lacquey +lacqueyed +lacqueying +lacqueys +lacrimal +lacrimals +lacrosse +lacrosses +lacs +lactam +lactams +lactary +lactase +lactases +lactate +lactated +lactates +lactating +lactation +lactations +lacteal +lacteals +lactean +lacteous +lactic +lactone +lactones +lactonic +lactose +lactoses +lacuna +lacunae +lacunal +lacunar +lacunaria +lacunars +lacunary +lacunas +lacunate +lacune +lacunes +lacunose +lacy +lad +ladanum +ladanums +ladder +laddered +laddering +ladders +laddie +laddies +lade +laded +laden +ladened +ladening +ladens +lader +laders +lades +ladies +lading +ladings +ladino +ladinos +ladle +ladled +ladleful +ladlefuls +ladler +ladlers +ladles +ladling +ladron +ladrone +ladrones +ladrons +lads +lady +ladybird +ladybirds +ladybug +ladybugs +ladyfish +ladyfishes +ladyhood +ladyhoods +ladyish +ladykin +ladykins +ladylike +ladylove +ladyloves +ladypalm +ladypalms +ladyship +ladyships +laevo +lag +lagan +lagans +lagend +lagends +lager +lagered +lagering +lagers +laggard +laggardly +laggardness +laggardnesses +laggards +lagged +lagger +laggers +lagging +laggings +lagnappe +lagnappes +lagniappe +lagniappes +lagoon +lagoonal +lagoons +lags +laguna +lagunas +lagune +lagunes +laic +laical +laically +laich +laichs +laicise +laicised +laicises +laicising +laicism +laicisms +laicize +laicized +laicizes +laicizing +laics +laid +laigh +laighs +lain +lair +laird +lairdly +lairds +laired +lairing +lairs +laitance +laitances +laith +laithly +laities +laity +lake +laked +lakeport +lakeports +laker +lakers +lakes +lakeside +lakesides +lakh +lakhs +lakier +lakiest +laking +lakings +laky +lall +lallan +lalland +lallands +lallans +lalled +lalling +lalls +lallygag +lallygagged +lallygagging +lallygags +lam +lama +lamas +lamaseries +lamasery +lamb +lambast +lambaste +lambasted +lambastes +lambasting +lambasts +lambda +lambdas +lambdoid +lambed +lambencies +lambency +lambent +lambently +lamber +lambers +lambert +lamberts +lambie +lambies +lambing +lambkill +lambkills +lambkin +lambkins +lamblike +lambs +lambskin +lambskins +lame +lamebrain +lamebrains +lamed +lamedh +lamedhs +lameds +lamella +lamellae +lamellar +lamellas +lamely +lameness +lamenesses +lament +lamentable +lamentably +lamentation +lamentations +lamented +lamenter +lamenters +lamenting +laments +lamer +lames +lamest +lamia +lamiae +lamias +lamina +laminae +laminal +laminar +laminary +laminas +laminate +laminated +laminates +laminating +lamination +laminations +laming +laminose +laminous +lamister +lamisters +lammed +lamming +lamp +lampad +lampads +lampas +lampases +lamped +lampers +lamperses +lamping +lampion +lampions +lampoon +lampooned +lampooning +lampoons +lamppost +lampposts +lamprey +lampreys +lamps +lampyrid +lampyrids +lams +lamster +lamsters +lanai +lanais +lanate +lanated +lance +lanced +lancelet +lancelets +lancer +lancers +lances +lancet +lanceted +lancets +lanciers +lancing +land +landau +landaus +landed +lander +landers +landfall +landfalls +landfill +landfills +landform +landforms +landholder +landholders +landholding +landholdings +landing +landings +landladies +landlady +landler +landlers +landless +landlocked +landlord +landlords +landlubber +landlubbers +landman +landmark +landmarks +landmass +landmasses +landmen +lands +landscape +landscaped +landscapes +landscaping +landside +landsides +landskip +landskips +landsleit +landslid +landslide +landslides +landslip +landslips +landsman +landsmen +landward +lane +lanely +lanes +lang +langlauf +langlaufs +langley +langleys +langourous +langourously +langrage +langrages +langrel +langrels +langshan +langshans +langsyne +langsynes +language +languages +langue +langues +languet +languets +languid +languidly +languidness +languidnesses +languish +languished +languishes +languishing +languor +languors +langur +langurs +laniard +laniards +laniaries +laniary +lanital +lanitals +lank +lanker +lankest +lankier +lankiest +lankily +lankly +lankness +lanknesses +lanky +lanner +lanneret +lannerets +lanners +lanolin +lanoline +lanolines +lanolins +lanose +lanosities +lanosity +lantana +lantanas +lantern +lanterns +lanthorn +lanthorns +lanugo +lanugos +lanyard +lanyards +lap +lapboard +lapboards +lapdog +lapdogs +lapel +lapelled +lapels +lapful +lapfuls +lapidaries +lapidary +lapidate +lapidated +lapidates +lapidating +lapides +lapidified +lapidifies +lapidify +lapidifying +lapidist +lapidists +lapilli +lapillus +lapin +lapins +lapis +lapises +lapped +lapper +lappered +lappering +lappers +lappet +lappeted +lappets +lapping +laps +lapsable +lapse +lapsed +lapser +lapsers +lapses +lapsible +lapsing +lapsus +lapwing +lapwings +lar +larboard +larboards +larcener +larceners +larcenies +larcenous +larceny +larch +larches +lard +larded +larder +larders +lardier +lardiest +larding +lardlike +lardon +lardons +lardoon +lardoons +lards +lardy +lares +large +largely +largeness +largenesses +larger +larges +largess +largesse +largesses +largest +largish +largo +largos +lariat +lariated +lariating +lariats +larine +lark +larked +larker +larkers +larkier +larkiest +larking +larks +larksome +larkspur +larkspurs +larky +larrigan +larrigans +larrikin +larrikins +larrup +larruped +larruper +larrupers +larruping +larrups +lars +larum +larums +larva +larvae +larval +larvas +laryngal +laryngeal +larynges +laryngitis +laryngitises +laryngoscopy +larynx +larynxes +las +lasagna +lasagnas +lasagne +lasagnes +lascar +lascars +lascivious +lasciviousness +lasciviousnesses +lase +lased +laser +lasers +lases +lash +lashed +lasher +lashers +lashes +lashing +lashings +lashins +lashkar +lashkars +lasing +lass +lasses +lassie +lassies +lassitude +lassitudes +lasso +lassoed +lassoer +lassoers +lassoes +lassoing +lassos +last +lasted +laster +lasters +lasting +lastings +lastly +lasts +lat +latakia +latakias +latch +latched +latches +latchet +latchets +latching +latchkey +latchkeys +late +latecomer +latecomers +lated +lateen +lateener +lateeners +lateens +lately +laten +latencies +latency +latened +lateness +latenesses +latening +latens +latent +latently +latents +later +laterad +lateral +lateraled +lateraling +laterally +laterals +laterite +laterites +latest +latests +latewood +latewoods +latex +latexes +lath +lathe +lathed +lather +lathered +latherer +latherers +lathering +lathers +lathery +lathes +lathier +lathiest +lathing +lathings +laths +lathwork +lathworks +lathy +lati +latices +latigo +latigoes +latigos +latinities +latinity +latinize +latinized +latinizes +latinizing +latish +latitude +latitudes +latosol +latosols +latria +latrias +latrine +latrines +lats +latten +lattens +latter +latterly +lattice +latticed +lattices +latticing +lattin +lattins +lauan +lauans +laud +laudable +laudably +laudanum +laudanums +laudator +laudators +lauded +lauder +lauders +lauding +lauds +laugh +laughable +laughed +laugher +laughers +laughing +laughingly +laughings +laughingstock +laughingstocks +laughs +laughter +laughters +launce +launces +launch +launched +launcher +launchers +launches +launching +launder +laundered +launderer +launderers +launderess +launderesses +laundering +launders +laundries +laundry +laura +laurae +lauras +laureate +laureated +laureates +laureateship +laureateships +laureating +laurel +laureled +laureling +laurelled +laurelling +laurels +lauwine +lauwines +lava +lavabo +lavaboes +lavabos +lavage +lavages +lavalava +lavalavas +lavalier +lavaliers +lavalike +lavas +lavation +lavations +lavatories +lavatory +lave +laved +laveer +laveered +laveering +laveers +lavender +lavendered +lavendering +lavenders +laver +laverock +laverocks +lavers +laves +laving +lavish +lavished +lavisher +lavishers +lavishes +lavishest +lavishing +lavishly +lavrock +lavrocks +law +lawbreaker +lawbreakers +lawed +lawful +lawfully +lawgiver +lawgivers +lawine +lawines +lawing +lawings +lawless +lawlike +lawmaker +lawmakers +lawman +lawmen +lawn +lawns +lawny +laws +lawsuit +lawsuits +lawyer +lawyerly +lawyers +lax +laxation +laxations +laxative +laxatives +laxer +laxest +laxities +laxity +laxly +laxness +laxnesses +lay +layabout +layabouts +layaway +layaways +layed +layer +layerage +layerages +layered +layering +layerings +layers +layette +layettes +laying +layman +laymen +layoff +layoffs +layout +layouts +layover +layovers +lays +laywoman +laywomen +lazar +lazaret +lazarets +lazars +laze +lazed +lazes +lazied +lazier +lazies +laziest +lazily +laziness +lazinesses +lazing +lazuli +lazulis +lazulite +lazulites +lazurite +lazurites +lazy +lazying +lazyish +lazys +lea +leach +leachate +leachates +leached +leacher +leachers +leaches +leachier +leachiest +leaching +leachy +lead +leaded +leaden +leadenly +leader +leaderless +leaders +leadership +leaderships +leadier +leadiest +leading +leadings +leadless +leadoff +leadoffs +leads +leadsman +leadsmen +leadwork +leadworks +leadwort +leadworts +leady +leaf +leafage +leafages +leafed +leafier +leafiest +leafing +leafless +leaflet +leaflets +leaflike +leafs +leafworm +leafworms +leafy +league +leagued +leaguer +leaguered +leaguering +leaguers +leagues +leaguing +leak +leakage +leakages +leaked +leaker +leakers +leakier +leakiest +leakily +leaking +leakless +leaks +leaky +leal +leally +lealties +lealty +lean +leaned +leaner +leanest +leaning +leanings +leanly +leanness +leannesses +leans +leant +leap +leaped +leaper +leapers +leapfrog +leapfrogged +leapfrogging +leapfrogs +leaping +leaps +leapt +lear +learier +leariest +learn +learned +learner +learners +learning +learnings +learns +learnt +lears +leary +leas +leasable +lease +leased +leaser +leasers +leases +leash +leashed +leashes +leashing +leasing +leasings +least +leasts +leather +leathered +leathering +leathern +leathers +leathery +leave +leaved +leaven +leavened +leavening +leavens +leaver +leavers +leaves +leavier +leaviest +leaving +leavings +leavy +leben +lebens +lech +lechayim +lechayims +lecher +lechered +lecheries +lechering +lecherous +lecherousness +lecherousnesses +lechers +lechery +leches +lecithin +lecithins +lectern +lecterns +lection +lections +lector +lectors +lecture +lectured +lecturer +lecturers +lectures +lectureship +lectureships +lecturing +lecythi +lecythus +led +ledge +ledger +ledgers +ledges +ledgier +ledgiest +ledgy +lee +leeboard +leeboards +leech +leeched +leeches +leeching +leek +leeks +leer +leered +leerier +leeriest +leerily +leering +leers +leery +lees +leet +leets +leeward +leewards +leeway +leeways +left +lefter +leftest +lefties +leftism +leftisms +leftist +leftists +leftover +leftovers +lefts +leftward +leftwing +lefty +leg +legacies +legacy +legal +legalese +legaleses +legalise +legalised +legalises +legalising +legalism +legalisms +legalist +legalistic +legalists +legalities +legality +legalize +legalized +legalizes +legalizing +legally +legals +legate +legated +legatee +legatees +legates +legatine +legating +legation +legations +legato +legator +legators +legatos +legend +legendary +legendries +legendry +legends +leger +legerdemain +legerdemains +legerities +legerity +legers +leges +legged +leggier +leggiest +leggin +legging +leggings +leggins +leggy +leghorn +leghorns +legibilities +legibility +legible +legibly +legion +legionaries +legionary +legionnaire +legionnaires +legions +legislate +legislated +legislates +legislating +legislation +legislations +legislative +legislator +legislators +legislature +legislatures +legist +legists +legit +legitimacy +legitimate +legitimately +legits +legless +leglike +legman +legmen +legroom +legrooms +legs +legume +legumes +legumin +leguminous +legumins +legwork +legworks +lehayim +lehayims +lehr +lehrs +lehua +lehuas +lei +leis +leister +leistered +leistering +leisters +leisure +leisured +leisurely +leisures +lek +leks +lekythi +lekythoi +lekythos +lekythus +leman +lemans +lemma +lemmas +lemmata +lemming +lemmings +lemnisci +lemon +lemonade +lemonades +lemonish +lemons +lemony +lempira +lempiras +lemur +lemures +lemuroid +lemuroids +lemurs +lend +lender +lenders +lending +lends +lenes +length +lengthen +lengthened +lengthening +lengthens +lengthier +lengthiest +lengths +lengthwise +lengthy +lenience +leniences +leniencies +leniency +lenient +leniently +lenis +lenities +lenitive +lenitives +lenity +leno +lenos +lens +lense +lensed +lenses +lensless +lent +lentando +lenten +lentic +lenticel +lenticels +lentigines +lentigo +lentil +lentils +lentisk +lentisks +lento +lentoid +lentos +leone +leones +leonine +leopard +leopards +leotard +leotards +leper +lepers +lepidote +leporid +leporids +leporine +leprechaun +leprechauns +leprose +leprosies +leprosy +leprotic +leprous +lepta +lepton +leptonic +leptons +lesbian +lesbianism +lesbianisms +lesbians +lesion +lesions +less +lessee +lessees +lessen +lessened +lessening +lessens +lesser +lesson +lessoned +lessoning +lessons +lessor +lessors +lest +let +letch +letches +letdown +letdowns +lethal +lethally +lethals +lethargic +lethargies +lethargy +lethe +lethean +lethes +lets +letted +letter +lettered +letterer +letterers +letterhead +lettering +letters +letting +lettuce +lettuces +letup +letups +leu +leucemia +leucemias +leucemic +leucin +leucine +leucines +leucins +leucite +leucites +leucitic +leucoma +leucomas +leud +leudes +leuds +leukemia +leukemias +leukemic +leukemics +leukocytosis +leukoma +leukomas +leukon +leukons +leukopenia +leukophoresis +leukoses +leukosis +leukotic +lev +leva +levant +levanted +levanter +levanters +levanting +levants +levator +levatores +levators +levee +leveed +leveeing +levees +level +leveled +leveler +levelers +leveling +levelled +leveller +levellers +levelling +levelly +levelness +levelnesses +levels +lever +leverage +leveraged +leverages +leveraging +levered +leveret +leverets +levering +levers +leviable +leviathan +leviathans +levied +levier +leviers +levies +levigate +levigated +levigates +levigating +levin +levins +levirate +levirates +levitate +levitated +levitates +levitating +levities +levity +levo +levogyre +levulin +levulins +levulose +levuloses +levy +levying +lewd +lewder +lewdest +lewdly +lewdness +lewdnesses +lewis +lewises +lewisite +lewisites +lewisson +lewissons +lex +lexica +lexical +lexicographer +lexicographers +lexicographic +lexicographical +lexicographies +lexicography +lexicon +lexicons +ley +leys +li +liabilities +liability +liable +liaise +liaised +liaises +liaising +liaison +liaisons +liana +lianas +liane +lianes +liang +liangs +lianoid +liar +liard +liards +liars +lib +libation +libations +libber +libbers +libeccio +libeccios +libel +libelant +libelants +libeled +libelee +libelees +libeler +libelers +libeling +libelist +libelists +libelled +libellee +libellees +libeller +libellers +libelling +libellous +libelous +libels +liber +liberal +liberalism +liberalisms +liberalities +liberality +liberalize +liberalized +liberalizes +liberalizing +liberally +liberals +liberate +liberated +liberates +liberating +liberation +liberations +liberator +liberators +libers +liberties +libertine +libertines +liberty +libidinal +libidinous +libido +libidos +libra +librae +librarian +librarians +libraries +library +libras +librate +librated +librates +librating +libretti +librettist +librettists +libretto +librettos +libri +libs +lice +licence +licenced +licencee +licencees +licencer +licencers +licences +licencing +license +licensed +licensee +licensees +licenser +licensers +licenses +licensing +licensor +licensors +licentious +licentiously +licentiousness +licentiousnesses +lichee +lichees +lichen +lichened +lichenin +lichening +lichenins +lichenous +lichens +lichi +lichis +licht +lichted +lichting +lichtly +lichts +licit +licitly +lick +licked +licker +lickers +licking +lickings +licks +lickspit +lickspits +licorice +licorices +lictor +lictors +lid +lidar +lidars +lidded +lidding +lidless +lido +lidos +lids +lie +lied +lieder +lief +liefer +liefest +liefly +liege +liegeman +liegemen +lieges +lien +lienable +lienal +liens +lienteries +lientery +lier +lierne +liernes +liers +lies +lieu +lieus +lieutenancies +lieutenancy +lieutenant +lieutenants +lieve +liever +lievest +life +lifeblood +lifebloods +lifeboat +lifeboats +lifeful +lifeguard +lifeguards +lifeless +lifelike +lifeline +lifelines +lifelong +lifer +lifers +lifesaver +lifesavers +lifesaving +lifesavings +lifetime +lifetimes +lifeway +lifeways +lifework +lifeworks +lift +liftable +lifted +lifter +lifters +lifting +liftman +liftmen +liftoff +liftoffs +lifts +ligament +ligaments +ligan +ligand +ligands +ligans +ligase +ligases +ligate +ligated +ligates +ligating +ligation +ligations +ligative +ligature +ligatured +ligatures +ligaturing +light +lightbulb +lightbulbs +lighted +lighten +lightened +lightening +lightens +lighter +lightered +lightering +lighters +lightest +lightful +lighthearted +lightheartedly +lightheartedness +lightheartednesses +lighthouse +lighthouses +lighting +lightings +lightish +lightly +lightness +lightnesses +lightning +lightnings +lightproof +lights +ligneous +lignified +lignifies +lignify +lignifying +lignin +lignins +lignite +lignites +lignitic +ligroin +ligroine +ligroines +ligroins +ligula +ligulae +ligular +ligulas +ligulate +ligule +ligules +liguloid +ligure +ligures +likable +like +likeable +liked +likelier +likeliest +likelihood +likelihoods +likely +liken +likened +likeness +likenesses +likening +likens +liker +likers +likes +likest +likewise +liking +likings +likuta +lilac +lilacs +lilied +lilies +lilliput +lilliputs +lilt +lilted +lilting +lilts +lilty +lily +lilylike +lima +limacine +limacon +limacons +liman +limans +limas +limb +limba +limbas +limbate +limbeck +limbecks +limbed +limber +limbered +limberer +limberest +limbering +limberly +limbers +limbi +limbic +limbier +limbiest +limbing +limbless +limbo +limbos +limbs +limbus +limbuses +limby +lime +limeade +limeades +limed +limekiln +limekilns +limeless +limelight +limelights +limen +limens +limerick +limericks +limes +limestone +limestones +limey +limeys +limier +limiest +limina +liminal +liminess +liminesses +liming +limit +limitary +limitation +limitations +limited +limiteds +limiter +limiters +limites +limiting +limitless +limits +limmer +limmers +limn +limned +limner +limners +limnetic +limnic +limning +limns +limo +limonene +limonenes +limonite +limonites +limos +limousine +limousines +limp +limped +limper +limpers +limpest +limpet +limpets +limpid +limpidly +limping +limpkin +limpkins +limply +limpness +limpnesses +limps +limpsy +limuli +limuloid +limuloids +limulus +limy +lin +linable +linac +linacs +linage +linages +linalol +linalols +linalool +linalools +linchpin +linchpins +lindane +lindanes +linden +lindens +lindies +lindy +line +lineable +lineage +lineages +lineal +lineally +lineaments +linear +linearly +lineate +lineated +linebred +linecut +linecuts +lined +lineless +linelike +lineman +linemen +linen +linens +lineny +liner +liners +lines +linesman +linesmen +lineup +lineups +liney +ling +linga +lingam +lingams +lingas +lingcod +lingcods +linger +lingered +lingerer +lingerers +lingerie +lingeries +lingering +lingers +lingier +lingiest +lingo +lingoes +lings +lingua +linguae +lingual +linguals +linguine +linguines +linguini +linguinis +linguist +linguistic +linguistics +linguists +lingy +linier +liniest +liniment +liniments +linin +lining +linings +linins +link +linkable +linkage +linkages +linkboy +linkboys +linked +linker +linkers +linking +linkman +linkmen +links +linksman +linksmen +linkup +linkups +linkwork +linkworks +linky +linn +linnet +linnets +linns +lino +linocut +linocuts +linoleum +linoleums +linos +lins +linsang +linsangs +linseed +linseeds +linsey +linseys +linstock +linstocks +lint +lintel +lintels +linter +linters +lintier +lintiest +lintless +lintol +lintols +lints +linty +linum +linums +liny +lion +lioness +lionesses +lionfish +lionfishes +lionise +lionised +lioniser +lionisers +lionises +lionising +lionization +lionizations +lionize +lionized +lionizer +lionizers +lionizes +lionizing +lionlike +lions +lip +lipase +lipases +lipid +lipide +lipides +lipidic +lipids +lipin +lipins +lipless +liplike +lipocyte +lipocytes +lipoid +lipoidal +lipoids +lipoma +lipomas +lipomata +lipped +lippen +lippened +lippening +lippens +lipper +lippered +lippering +lippers +lippier +lippiest +lipping +lippings +lippy +lipreading +lipreadings +lips +lipstick +lipsticks +liquate +liquated +liquates +liquating +liquefaction +liquefactions +liquefiable +liquefied +liquefier +liquefiers +liquefies +liquefy +liquefying +liqueur +liqueurs +liquid +liquidate +liquidated +liquidates +liquidating +liquidation +liquidations +liquidities +liquidity +liquidly +liquids +liquified +liquifies +liquify +liquifying +liquor +liquored +liquoring +liquors +lira +liras +lire +liripipe +liripipes +lirot +liroth +lis +lisle +lisles +lisp +lisped +lisper +lispers +lisping +lisps +lissom +lissome +lissomly +list +listable +listed +listel +listels +listen +listened +listener +listeners +listening +listens +lister +listers +listing +listings +listless +listlessly +listlessness +listlessnesses +lists +lit +litai +litanies +litany +litas +litchi +litchis +liter +literacies +literacy +literal +literally +literals +literary +literate +literates +literati +literature +literatures +liters +litharge +litharges +lithe +lithely +lithemia +lithemias +lithemic +lither +lithesome +lithest +lithia +lithias +lithic +lithium +lithiums +litho +lithograph +lithographer +lithographers +lithographic +lithographies +lithographs +lithography +lithoid +lithos +lithosol +lithosols +litigant +litigants +litigate +litigated +litigates +litigating +litigation +litigations +litigious +litigiousness +litigiousnesses +litmus +litmuses +litoral +litotes +litre +litres +lits +litten +litter +littered +litterer +litterers +littering +litters +littery +little +littleness +littlenesses +littler +littles +littlest +littlish +littoral +littorals +litu +liturgic +liturgical +liturgically +liturgies +liturgy +livabilities +livability +livable +live +liveable +lived +livelier +liveliest +livelihood +livelihoods +livelily +liveliness +livelinesses +livelong +lively +liven +livened +livener +liveners +liveness +livenesses +livening +livens +liver +liveried +liveries +liverish +livers +livery +liveryman +liverymen +lives +livest +livestock +livestocks +livetrap +livetrapped +livetrapping +livetraps +livid +lividities +lividity +lividly +livier +liviers +living +livingly +livings +livre +livres +livyer +livyers +lixivia +lixivial +lixivium +lixiviums +lizard +lizards +llama +llamas +llano +llanos +lo +loach +loaches +load +loaded +loader +loaders +loading +loadings +loads +loadstar +loadstars +loaf +loafed +loafer +loafers +loafing +loafs +loam +loamed +loamier +loamiest +loaming +loamless +loams +loamy +loan +loanable +loaned +loaner +loaners +loaning +loanings +loans +loanword +loanwords +loath +loathe +loathed +loather +loathers +loathes +loathful +loathing +loathings +loathly +loathsome +loaves +lob +lobar +lobate +lobated +lobately +lobation +lobations +lobbed +lobbied +lobbies +lobbing +lobby +lobbyer +lobbyers +lobbygow +lobbygows +lobbying +lobbyism +lobbyisms +lobbyist +lobbyists +lobe +lobed +lobefin +lobefins +lobelia +lobelias +lobeline +lobelines +lobes +loblollies +loblolly +lobo +lobos +lobotomies +lobotomy +lobs +lobster +lobsters +lobstick +lobsticks +lobular +lobulate +lobule +lobules +lobulose +lobworm +lobworms +loca +local +locale +locales +localise +localised +localises +localising +localism +localisms +localist +localists +localite +localites +localities +locality +localization +localizations +localize +localized +localizes +localizing +locally +locals +locate +located +locater +locaters +locates +locating +location +locations +locative +locatives +locator +locators +loch +lochia +lochial +lochs +loci +lock +lockable +lockage +lockages +lockbox +lockboxes +locked +locker +lockers +locket +lockets +locking +lockjaw +lockjaws +locknut +locknuts +lockout +lockouts +lockram +lockrams +locks +locksmith +locksmiths +lockstep +locksteps +lockup +lockups +loco +locoed +locoes +locofoco +locofocos +locoing +locoism +locoisms +locomote +locomoted +locomotes +locomoting +locomotion +locomotions +locomotive +locomotives +locos +locoweed +locoweeds +locular +loculate +locule +loculed +locules +loculi +loculus +locum +locums +locus +locust +locusta +locustae +locustal +locusts +locution +locutions +locutories +locutory +lode +loden +lodens +lodes +lodestar +lodestars +lodge +lodged +lodgement +lodgements +lodger +lodgers +lodges +lodging +lodgings +lodgment +lodgments +lodicule +lodicules +loess +loessal +loesses +loessial +loft +lofted +lofter +lofters +loftier +loftiest +loftily +loftiness +loftinesses +lofting +loftless +lofts +lofty +log +logan +logans +logarithm +logarithmic +logarithms +logbook +logbooks +loge +loges +loggats +logged +logger +loggerhead +loggerheads +loggers +loggets +loggia +loggias +loggie +loggier +loggiest +logging +loggings +loggy +logia +logic +logical +logically +logician +logicians +logicise +logicised +logicises +logicising +logicize +logicized +logicizes +logicizing +logics +logier +logiest +logily +loginess +loginesses +logion +logions +logistic +logistical +logistics +logjam +logjams +logo +logogram +logograms +logoi +logomach +logomachs +logos +logotype +logotypes +logotypies +logotypy +logroll +logrolled +logrolling +logrolls +logs +logway +logways +logwood +logwoods +logy +loin +loins +loiter +loitered +loiterer +loiterers +loitering +loiters +loll +lolled +loller +lollers +lollies +lolling +lollipop +lollipops +lollop +lolloped +lolloping +lollops +lolls +lolly +lollygag +lollygagged +lollygagging +lollygags +lollypop +lollypops +loment +lomenta +loments +lomentum +lomentums +lone +lonelier +loneliest +lonelily +loneliness +lonelinesses +lonely +loneness +lonenesses +loner +loners +lonesome +lonesomely +lonesomeness +lonesomenesses +lonesomes +long +longan +longans +longboat +longboats +longbow +longbows +longe +longed +longeing +longer +longeron +longerons +longers +longes +longest +longevities +longevity +longhair +longhairs +longhand +longhands +longhead +longheads +longhorn +longhorns +longing +longingly +longings +longish +longitude +longitudes +longitudinal +longitudinally +longleaf +longleaves +longline +longlines +longly +longness +longnesses +longs +longship +longships +longshoreman +longshoremen +longsome +longspur +longspurs +longtime +longueur +longueurs +longways +longwise +loo +loobies +looby +looed +looey +looeys +loof +loofa +loofah +loofahs +loofas +loofs +looie +looies +looing +look +lookdown +lookdowns +looked +looker +lookers +looking +lookout +lookouts +looks +lookup +lookups +loom +loomed +looming +looms +loon +looney +loonier +loonies +looniest +loons +loony +loop +looped +looper +loopers +loophole +loopholed +loopholes +loopholing +loopier +loopiest +looping +loops +loopy +loos +loose +loosed +looseleaf +looseleafs +loosely +loosen +loosened +loosener +looseners +looseness +loosenesses +loosening +loosens +looser +looses +loosest +loosing +loot +looted +looter +looters +looting +loots +lop +lope +loped +loper +lopers +lopes +loping +lopped +lopper +loppered +loppering +loppers +loppier +loppiest +lopping +loppy +lops +lopsided +lopsidedly +lopsidedness +lopsidednesses +lopstick +lopsticks +loquacious +loquacities +loquacity +loquat +loquats +loral +loran +lorans +lord +lorded +lording +lordings +lordless +lordlier +lordliest +lordlike +lordling +lordlings +lordly +lordoma +lordomas +lordoses +lordosis +lordotic +lords +lordship +lordships +lordy +lore +loreal +lores +lorgnon +lorgnons +lorica +loricae +loricate +loricates +lories +lorikeet +lorikeets +lorimer +lorimers +loriner +loriners +loris +lorises +lorn +lornness +lornnesses +lorries +lorry +lory +losable +lose +losel +losels +loser +losers +loses +losing +losingly +losings +loss +losses +lossy +lost +lostness +lostnesses +lot +lota +lotah +lotahs +lotas +loth +lothario +lotharios +lothsome +lotic +lotion +lotions +lotos +lotoses +lots +lotted +lotteries +lottery +lotting +lotto +lottos +lotus +lotuses +loud +louden +loudened +loudening +loudens +louder +loudest +loudish +loudlier +loudliest +loudly +loudness +loudnesses +loudspeaker +loudspeakers +lough +loughs +louie +louies +louis +lounge +lounged +lounger +loungers +lounges +lounging +loungy +loup +loupe +louped +loupen +loupes +louping +loups +lour +loured +louring +lours +loury +louse +loused +louses +lousier +lousiest +lousily +lousiness +lousinesses +lousing +lousy +lout +louted +louting +loutish +loutishly +louts +louver +louvered +louvers +louvre +louvres +lovable +lovably +lovage +lovages +love +loveable +loveably +lovebird +lovebirds +loved +loveless +lovelier +lovelies +loveliest +lovelily +loveliness +lovelinesses +lovelock +lovelocks +lovelorn +lovely +lover +loverly +lovers +loves +lovesick +lovesome +lovevine +lovevines +loving +lovingly +low +lowborn +lowboy +lowboys +lowbred +lowbrow +lowbrows +lowdown +lowdowns +lowe +lowed +lower +lowercase +lowered +lowering +lowers +lowery +lowes +lowest +lowing +lowings +lowish +lowland +lowlands +lowlier +lowliest +lowlife +lowlifes +lowliness +lowlinesses +lowly +lown +lowness +lownesses +lows +lowse +lox +loxed +loxes +loxing +loyal +loyaler +loyalest +loyalism +loyalisms +loyalist +loyalists +loyally +loyalties +loyalty +lozenge +lozenges +luau +luaus +lubber +lubberly +lubbers +lube +lubes +lubric +lubricant +lubricants +lubricate +lubricated +lubricates +lubricating +lubrication +lubrications +lubricator +lubricators +lucarne +lucarnes +luce +lucence +lucences +lucencies +lucency +lucent +lucently +lucern +lucerne +lucernes +lucerns +luces +lucid +lucidities +lucidity +lucidly +lucidness +lucidnesses +lucifer +lucifers +luck +lucked +luckie +luckier +luckies +luckiest +luckily +luckiness +luckinesses +lucking +luckless +lucks +lucky +lucrative +lucratively +lucrativeness +lucrativenesses +lucre +lucres +luculent +ludicrous +ludicrously +ludicrousness +ludicrousnesses +lues +luetic +luetics +luff +luffa +luffas +luffed +luffing +luffs +lug +luge +luges +luggage +luggages +lugged +lugger +luggers +luggie +luggies +lugging +lugs +lugsail +lugsails +lugubrious +lugubriously +lugubriousness +lugubriousnesses +lugworm +lugworms +lukewarm +lull +lullabied +lullabies +lullaby +lullabying +lulled +lulling +lulls +lulu +lulus +lum +lumbago +lumbagos +lumbar +lumbars +lumber +lumbered +lumberer +lumberers +lumbering +lumberjack +lumberjacks +lumberman +lumbermen +lumbers +lumberyard +lumberyards +lumen +lumenal +lumens +lumina +luminal +luminance +luminances +luminaries +luminary +luminescence +luminescences +luminescent +luminist +luminists +luminosities +luminosity +luminous +luminously +lummox +lummoxes +lump +lumped +lumpen +lumpens +lumper +lumpers +lumpfish +lumpfishes +lumpier +lumpiest +lumpily +lumping +lumpish +lumps +lumpy +lums +luna +lunacies +lunacy +lunar +lunarian +lunarians +lunars +lunas +lunate +lunated +lunately +lunatic +lunatics +lunation +lunations +lunch +lunched +luncheon +luncheons +luncher +lunchers +lunches +lunching +lune +lunes +lunet +lunets +lunette +lunettes +lung +lungan +lungans +lunge +lunged +lungee +lungees +lunger +lungers +lunges +lungfish +lungfishes +lungi +lunging +lungis +lungs +lungworm +lungworms +lungwort +lungworts +lungyi +lungyis +lunier +lunies +luniest +lunk +lunker +lunkers +lunkhead +lunkheads +lunks +lunt +lunted +lunting +lunts +lunula +lunulae +lunular +lunulate +lunule +lunules +luny +lupanar +lupanars +lupin +lupine +lupines +lupins +lupous +lupulin +lupulins +lupus +lupuses +lurch +lurched +lurcher +lurchers +lurches +lurching +lurdan +lurdane +lurdanes +lurdans +lure +lured +lurer +lurers +lures +lurid +luridly +luring +lurk +lurked +lurker +lurkers +lurking +lurks +luscious +lusciously +lusciousness +lusciousnesses +lush +lushed +lusher +lushes +lushest +lushing +lushly +lushness +lushnesses +lust +lusted +luster +lustered +lustering +lusterless +lusters +lustful +lustier +lustiest +lustily +lustiness +lustinesses +lusting +lustra +lustral +lustrate +lustrated +lustrates +lustrating +lustre +lustred +lustres +lustring +lustrings +lustrous +lustrum +lustrums +lusts +lusty +lusus +lususes +lutanist +lutanists +lute +lutea +luteal +lutecium +luteciums +luted +lutein +luteins +lutenist +lutenists +luteolin +luteolins +luteous +lutes +lutetium +lutetiums +luteum +luthern +lutherns +luting +lutings +lutist +lutists +lux +luxate +luxated +luxates +luxating +luxation +luxations +luxe +luxes +luxuriance +luxuriances +luxuriant +luxuriantly +luxuriate +luxuriated +luxuriates +luxuriating +luxuries +luxurious +luxuriously +luxury +lyard +lyart +lyase +lyases +lycanthropies +lycanthropy +lycea +lycee +lycees +lyceum +lyceums +lychee +lychees +lychnis +lychnises +lycopene +lycopenes +lycopod +lycopods +lyddite +lyddites +lye +lyes +lying +lyingly +lyings +lymph +lymphatic +lymphocytopenia +lymphocytosis +lymphoid +lymphoma +lymphomas +lymphomata +lymphs +lyncean +lynch +lynched +lyncher +lynchers +lynches +lynching +lynchings +lynx +lynxes +lyophile +lyrate +lyrated +lyrately +lyre +lyrebird +lyrebirds +lyres +lyric +lyrical +lyricise +lyricised +lyricises +lyricising +lyricism +lyricisms +lyricist +lyricists +lyricize +lyricized +lyricizes +lyricizing +lyrics +lyriform +lyrism +lyrisms +lyrist +lyrists +lysate +lysates +lyse +lysed +lyses +lysin +lysine +lysines +lysing +lysins +lysis +lysogen +lysogenies +lysogens +lysogeny +lysosome +lysosomes +lysozyme +lysozymes +lyssa +lyssas +lytic +lytta +lyttae +lyttas +ma +maar +maars +mac +macaber +macabre +macaco +macacos +macadam +macadamize +macadamized +macadamizes +macadamizing +macadams +macaque +macaques +macaroni +macaronies +macaronis +macaroon +macaroons +macaw +macaws +maccabaw +maccabaws +maccaboy +maccaboys +macchia +macchie +maccoboy +maccoboys +mace +maced +macer +macerate +macerated +macerates +macerating +macers +maces +mach +machete +machetes +machinate +machinated +machinates +machinating +machination +machinations +machine +machineable +machined +machineries +machinery +machines +machining +machinist +machinists +machismo +machismos +macho +machos +machree +machrees +machs +machzor +machzorim +machzors +macing +mack +mackerel +mackerels +mackinaw +mackinaws +mackle +mackled +mackles +mackling +macks +macle +macled +macles +macrame +macrames +macro +macrocosm +macrocosms +macron +macrons +macros +macrural +macruran +macrurans +macs +macula +maculae +macular +maculas +maculate +maculated +maculates +maculating +macule +maculed +macules +maculing +mad +madam +madame +madames +madams +madcap +madcaps +madded +madden +maddened +maddening +maddens +madder +madders +maddest +madding +maddish +made +madeira +madeiras +mademoiselle +mademoiselles +madhouse +madhouses +madly +madman +madmen +madness +madnesses +madonna +madonnas +madras +madrases +madre +madres +madrigal +madrigals +madrona +madronas +madrone +madrones +madrono +madronos +mads +maduro +maduros +madwoman +madwomen +madwort +madworts +madzoon +madzoons +mae +maelstrom +maelstroms +maenad +maenades +maenadic +maenads +maes +maestoso +maestosos +maestri +maestro +maestros +maffia +maffias +maffick +mafficked +mafficking +mafficks +mafia +mafias +mafic +mafiosi +mafioso +maftir +maftirs +mag +magazine +magazines +magdalen +magdalens +mage +magenta +magentas +mages +magestical +magestically +maggot +maggots +maggoty +magi +magic +magical +magically +magician +magicians +magicked +magicking +magics +magilp +magilps +magister +magisterial +magisters +magistracies +magistracy +magistrate +magistrates +magma +magmas +magmata +magmatic +magnanimities +magnanimity +magnanimous +magnanimously +magnanimousness +magnanimousnesses +magnate +magnates +magnesia +magnesias +magnesic +magnesium +magnesiums +magnet +magnetic +magnetically +magnetics +magnetism +magnetisms +magnetite +magnetites +magnetizable +magnetization +magnetizations +magnetize +magnetized +magnetizer +magnetizers +magnetizes +magnetizing +magneto +magneton +magnetons +magnetos +magnets +magnific +magnification +magnifications +magnificence +magnificences +magnificent +magnificently +magnified +magnifier +magnifiers +magnifies +magnify +magnifying +magnitude +magnitudes +magnolia +magnolias +magnum +magnums +magot +magots +magpie +magpies +mags +maguey +magueys +magus +maharaja +maharajas +maharani +maharanis +mahatma +mahatmas +mahjong +mahjongg +mahjonggs +mahjongs +mahoe +mahoes +mahogonies +mahogony +mahonia +mahonias +mahout +mahouts +mahuang +mahuangs +mahzor +mahzorim +mahzors +maid +maiden +maidenhair +maidenhairs +maidenhood +maidenhoods +maidenly +maidens +maidhood +maidhoods +maidish +maids +maieutic +maigre +maihem +maihems +mail +mailable +mailbag +mailbags +mailbox +mailboxes +maile +mailed +mailer +mailers +mailes +mailing +mailings +maill +mailless +maillot +maillots +maills +mailman +mailmen +mailperson +mailpersons +mails +mailwoman +maim +maimed +maimer +maimers +maiming +maims +main +mainland +mainlands +mainline +mainlined +mainlines +mainlining +mainly +mainmast +mainmasts +mains +mainsail +mainsails +mainstay +mainstays +mainstream +mainstreams +maintain +maintainabilities +maintainability +maintainable +maintainance +maintainances +maintained +maintaining +maintains +maintenance +maintenances +maintop +maintops +maiolica +maiolicas +mair +mairs +maist +maists +maize +maizes +majagua +majaguas +majestic +majesties +majesty +majolica +majolicas +major +majordomo +majordomos +majored +majoring +majorities +majority +majors +makable +makar +makars +make +makeable +makebate +makebates +makefast +makefasts +maker +makers +makes +makeshift +makeshifts +makeup +makeups +makimono +makimonos +making +makings +mako +makos +makuta +maladies +maladjusted +maladjustment +maladjustments +maladroit +malady +malaise +malaises +malamute +malamutes +malapert +malaperts +malaprop +malapropism +malapropisms +malaprops +malar +malaria +malarial +malarian +malarias +malarkey +malarkeys +malarkies +malarky +malaroma +malaromas +malars +malate +malates +malcontent +malcontents +male +maleate +maleates +maledict +maledicted +maledicting +malediction +maledictions +maledicts +malefactor +malefactors +malefic +maleficence +maleficences +maleficent +malemiut +malemiuts +malemute +malemutes +maleness +malenesses +males +malevolence +malevolences +malevolent +malfeasance +malfeasances +malfed +malformation +malformations +malformed +malfunction +malfunctioned +malfunctioning +malfunctions +malgre +malic +malice +malices +malicious +maliciously +malign +malignancies +malignancy +malignant +malignantly +maligned +maligner +maligners +maligning +malignities +malignity +malignly +maligns +malihini +malihinis +maline +malines +malinger +malingered +malingerer +malingerers +malingering +malingers +malison +malisons +malkin +malkins +mall +mallard +mallards +malleabilities +malleability +malleable +malled +mallee +mallees +mallei +malleoli +mallet +mallets +malleus +malling +mallow +mallows +malls +malm +malmier +malmiest +malms +malmsey +malmseys +malmy +malnourished +malnutrition +malnutritions +malodor +malodorous +malodorously +malodorousness +malodorousnesses +malodors +malposed +malpractice +malpractices +malt +maltase +maltases +malted +maltha +malthas +maltier +maltiest +malting +maltol +maltols +maltose +maltoses +maltreat +maltreated +maltreating +maltreatment +maltreatments +maltreats +malts +maltster +maltsters +malty +malvasia +malvasias +mama +mamas +mamba +mambas +mambo +mamboed +mamboes +mamboing +mambos +mameluke +mamelukes +mamey +mameyes +mameys +mamie +mamies +mamluk +mamluks +mamma +mammae +mammal +mammalian +mammals +mammary +mammas +mammate +mammati +mammatus +mammee +mammees +mammer +mammered +mammering +mammers +mammet +mammets +mammey +mammeys +mammie +mammies +mammilla +mammillae +mammitides +mammitis +mammock +mammocked +mammocking +mammocks +mammon +mammons +mammoth +mammoths +mammy +man +mana +manacle +manacled +manacles +manacling +manage +manageabilities +manageability +manageable +manageableness +manageablenesses +manageably +managed +management +managemental +managements +manager +managerial +managers +manages +managing +manakin +manakins +manana +mananas +manas +manatee +manatees +manatoid +manche +manches +manchet +manchets +manciple +manciples +mandala +mandalas +mandalic +mandamus +mandamused +mandamuses +mandamusing +mandarin +mandarins +mandate +mandated +mandates +mandating +mandator +mandators +mandatory +mandible +mandibles +mandibular +mandioca +mandiocas +mandola +mandolas +mandolin +mandolins +mandrake +mandrakes +mandrel +mandrels +mandril +mandrill +mandrills +mandrils +mane +maned +manege +maneges +maneless +manes +maneuver +maneuverabilities +maneuverability +maneuvered +maneuvering +maneuvers +manful +manfully +mangabey +mangabeys +mangabies +mangaby +manganese +manganeses +manganesian +manganic +mange +mangel +mangels +manger +mangers +manges +mangey +mangier +mangiest +mangily +mangle +mangled +mangler +manglers +mangles +mangling +mango +mangoes +mangold +mangolds +mangonel +mangonels +mangos +mangrove +mangroves +mangy +manhandle +manhandled +manhandles +manhandling +manhole +manholes +manhood +manhoods +manhunt +manhunts +mania +maniac +maniacal +maniacs +manias +manic +manics +manicure +manicured +manicures +manicuring +manicurist +manicurists +manifest +manifestation +manifestations +manifested +manifesting +manifestly +manifesto +manifestos +manifests +manifold +manifolded +manifolding +manifolds +manihot +manihots +manikin +manikins +manila +manilas +manilla +manillas +manille +manilles +manioc +manioca +maniocas +maniocs +maniple +maniples +manipulate +manipulated +manipulates +manipulating +manipulation +manipulations +manipulative +manipulator +manipulators +manito +manitos +manitou +manitous +manitu +manitus +mankind +manless +manlier +manliest +manlike +manlily +manly +manmade +manna +mannan +mannans +mannas +manned +mannequin +mannequins +manner +mannered +mannerism +mannerisms +mannerliness +mannerlinesses +mannerly +manners +mannikin +mannikins +manning +mannish +mannishly +mannishness +mannishnesses +mannite +mannites +mannitic +mannitol +mannitols +mannose +mannoses +mano +manor +manorial +manorialism +manorialisms +manors +manos +manpack +manpower +manpowers +manque +manrope +manropes +mans +mansard +mansards +manse +manservant +manses +mansion +mansions +manslaughter +manslaughters +manta +mantas +manteau +manteaus +manteaux +mantel +mantelet +mantelets +mantels +mantes +mantic +mantid +mantids +mantilla +mantillas +mantis +mantises +mantissa +mantissas +mantle +mantled +mantles +mantlet +mantlets +mantling +mantlings +mantra +mantrap +mantraps +mantras +mantua +mantuas +manual +manually +manuals +manuary +manubria +manufacture +manufactured +manufacturer +manufacturers +manufactures +manufacturing +manumit +manumits +manumitted +manumitting +manure +manured +manurer +manurers +manures +manurial +manuring +manus +manuscript +manuscripts +manward +manwards +manwise +many +manyfold +map +maple +maples +mapmaker +mapmakers +mappable +mapped +mapper +mappers +mapping +mappings +maps +maquette +maquettes +maqui +maquis +mar +marabou +marabous +marabout +marabouts +maraca +maracas +maranta +marantas +marasca +marascas +maraschino +maraschinos +marasmic +marasmus +marasmuses +marathon +marathons +maraud +marauded +marauder +marauders +marauding +marauds +maravedi +maravedis +marble +marbled +marbler +marblers +marbles +marblier +marbliest +marbling +marblings +marbly +marc +marcel +marcelled +marcelling +marcels +march +marched +marchen +marcher +marchers +marches +marchesa +marchese +marchesi +marching +marchioness +marchionesses +marcs +mare +maremma +maremme +mares +margaric +margarin +margarine +margarines +margarins +margay +margays +marge +margent +margented +margenting +margents +marges +margin +marginal +marginally +margined +margining +margins +margrave +margraves +maria +mariachi +mariachis +marigold +marigolds +marihuana +marihuanas +marijuana +marijuanas +marimba +marimbas +marina +marinade +marinaded +marinades +marinading +marinara +marinaras +marinas +marinate +marinated +marinates +marinating +marine +mariner +mariners +marines +marionette +marionettes +mariposa +mariposas +marish +marishes +marital +maritime +marjoram +marjorams +mark +markdown +markdowns +marked +markedly +marker +markers +market +marketable +marketech +marketed +marketer +marketers +marketing +marketplace +marketplaces +markets +markhoor +markhoors +markhor +markhors +marking +markings +markka +markkaa +markkas +marks +marksman +marksmanship +marksmanships +marksmen +markup +markups +marl +marled +marlier +marliest +marlin +marline +marlines +marling +marlings +marlins +marlite +marlites +marlitic +marls +marly +marmalade +marmalades +marmite +marmites +marmoset +marmosets +marmot +marmots +maroon +marooned +marooning +maroons +marplot +marplots +marque +marquee +marquees +marques +marquess +marquesses +marquis +marquise +marquises +marram +marrams +marred +marrer +marrers +marriage +marriageable +marriages +married +marrieds +marrier +marriers +marries +marring +marron +marrons +marrow +marrowed +marrowing +marrows +marrowy +marry +marrying +mars +marse +marses +marsh +marshal +marshaled +marshaling +marshall +marshalled +marshalling +marshalls +marshals +marshes +marshier +marshiest +marshmallow +marshmallows +marshy +marsupia +marsupial +marsupials +mart +martagon +martagons +marted +martello +martellos +marten +martens +martial +martian +martians +martin +martinet +martinets +marting +martini +martinis +martins +martlet +martlets +marts +martyr +martyrdom +martyrdoms +martyred +martyries +martyring +martyrly +martyrs +martyry +marvel +marveled +marveling +marvelled +marvelling +marvellous +marvelous +marvelously +marvelousness +marvelousnesses +marvels +marzipan +marzipans +mas +mascara +mascaras +mascon +mascons +mascot +mascots +masculine +masculinities +masculinity +masculinization +masculinizations +maser +masers +mash +mashed +masher +mashers +mashes +mashie +mashies +mashing +mashy +masjid +masjids +mask +maskable +masked +maskeg +maskegs +masker +maskers +masking +maskings +masklike +masks +masochism +masochisms +masochist +masochistic +masochists +mason +masoned +masonic +masoning +masonries +masonry +masons +masque +masquer +masquerade +masqueraded +masquerader +masqueraders +masquerades +masquerading +masquers +masques +mass +massa +massachusetts +massacre +massacred +massacres +massacring +massage +massaged +massager +massagers +massages +massaging +massas +masse +massed +massedly +masses +masseter +masseters +masseur +masseurs +masseuse +masseuses +massicot +massicots +massier +massiest +massif +massifs +massing +massive +massiveness +massivenesses +massless +masslessness +masslessnesses +massy +mast +mastaba +mastabah +mastabahs +mastabas +mastectomies +mastectomy +masted +master +mastered +masterful +masterfully +masteries +mastering +masterly +mastermind +masterminds +masters +mastership +masterships +masterwork +masterworks +mastery +masthead +mastheaded +mastheading +mastheads +mastic +masticate +masticated +masticates +masticating +mastication +mastications +mastiche +mastiches +mastics +mastiff +mastiffs +masting +mastitic +mastitides +mastitis +mastix +mastixes +mastless +mastlike +mastodon +mastodons +mastoid +mastoids +masts +masturbate +masturbated +masturbates +masturbating +masturbation +masturbations +masurium +masuriums +mat +matador +matadors +match +matchbox +matchboxes +matched +matcher +matchers +matches +matching +matchless +matchmaker +matchmakers +mate +mated +mateless +matelote +matelotes +mater +material +materialism +materialisms +materialist +materialistic +materialists +materialization +materializations +materialize +materialized +materializes +materializing +materially +materials +materiel +materiels +maternal +maternally +maternities +maternity +maters +mates +mateship +mateships +matey +mateys +math +mathematical +mathematically +mathematician +mathematicians +mathematics +maths +matilda +matildas +matin +matinal +matinee +matinees +matiness +matinesses +mating +matings +matins +matless +matrass +matrasses +matres +matriarch +matriarchal +matriarches +matriarchies +matriarchy +matrices +matricidal +matricide +matricides +matriculate +matriculated +matriculates +matriculating +matriculation +matriculations +matrimonial +matrimonially +matrimonies +matrimony +matrix +matrixes +matron +matronal +matronly +matrons +mats +matt +matte +matted +mattedly +matter +mattered +mattering +matters +mattery +mattes +mattin +matting +mattings +mattins +mattock +mattocks +mattoid +mattoids +mattrass +mattrasses +mattress +mattresses +matts +maturate +maturated +maturates +maturating +maturation +maturational +maturations +maturative +mature +matured +maturely +maturer +matures +maturest +maturing +maturities +maturity +matza +matzah +matzahs +matzas +matzo +matzoh +matzohs +matzoon +matzoons +matzos +matzot +matzoth +maudlin +mauger +maugre +maul +mauled +mauler +maulers +mauling +mauls +maumet +maumetries +maumetry +maumets +maun +maund +maunder +maundered +maundering +maunders +maundies +maunds +maundy +mausolea +mausoleum +mausoleums +maut +mauts +mauve +mauves +maven +mavens +maverick +mavericks +mavie +mavies +mavin +mavins +mavis +mavises +maw +mawed +mawing +mawkish +mawkishly +mawkishness +mawkishnesses +mawn +maws +maxi +maxicoat +maxicoats +maxilla +maxillae +maxillas +maxim +maxima +maximal +maximals +maximin +maximins +maximise +maximised +maximises +maximising +maximite +maximites +maximize +maximized +maximizes +maximizing +maxims +maximum +maximums +maxis +maxixe +maxixes +maxwell +maxwells +may +maya +mayan +mayapple +mayapples +mayas +maybe +maybush +maybushes +mayday +maydays +mayed +mayest +mayflies +mayflower +mayflowers +mayfly +mayhap +mayhem +mayhems +maying +mayings +mayonnaise +mayonnaises +mayor +mayoral +mayoralties +mayoralty +mayoress +mayoresses +mayors +maypole +maypoles +maypop +maypops +mays +mayst +mayvin +mayvins +mayweed +mayweeds +mazaedia +mazard +mazards +maze +mazed +mazedly +mazelike +mazer +mazers +mazes +mazier +maziest +mazily +maziness +mazinesses +mazing +mazourka +mazourkas +mazuma +mazumas +mazurka +mazurkas +mazy +mazzard +mazzards +mbira +mbiras +mccaffrey +me +mead +meadow +meadowland +meadowlands +meadowlark +meadowlarks +meadows +meadowy +meads +meager +meagerly +meagerness +meagernesses +meagre +meagrely +meal +mealie +mealier +mealies +mealiest +mealless +meals +mealtime +mealtimes +mealworm +mealworms +mealy +mealybug +mealybugs +mean +meander +meandered +meandering +meanders +meaner +meaners +meanest +meanie +meanies +meaning +meaningful +meaningfully +meaningless +meanings +meanly +meanness +meannesses +means +meant +meantime +meantimes +meanwhile +meanwhiles +meany +measle +measled +measles +measlier +measliest +measly +measurable +measurably +measure +measured +measureless +measurement +measurements +measurer +measurers +measures +measuring +meat +meatal +meatball +meatballs +meathead +meatheads +meatier +meatiest +meatily +meatless +meatman +meatmen +meats +meatus +meatuses +meaty +mecca +meccas +mechanic +mechanical +mechanically +mechanics +mechanism +mechanisms +mechanistic +mechanistically +mechanization +mechanizations +mechanize +mechanized +mechanizer +mechanizers +mechanizes +mechanizing +meconium +meconiums +medaka +medakas +medal +medaled +medaling +medalist +medalists +medalled +medallic +medalling +medallion +medallions +medals +meddle +meddled +meddler +meddlers +meddles +meddlesome +meddling +media +mediacies +mediacy +mediad +mediae +mediaeval +medial +medially +medials +median +medianly +medians +mediant +mediants +medias +mediastinum +mediate +mediated +mediates +mediating +mediation +mediations +mediator +mediators +medic +medicable +medicably +medicaid +medicaids +medical +medically +medicals +medicare +medicares +medicate +medicated +medicates +medicating +medication +medications +medicinal +medicinally +medicine +medicined +medicines +medicining +medick +medicks +medico +medicos +medics +medieval +medievalism +medievalisms +medievalist +medievalists +medievals +medii +mediocre +mediocrities +mediocrity +meditate +meditated +meditates +meditating +meditation +meditations +meditative +meditatively +medium +mediums +medius +medlar +medlars +medley +medleys +medulla +medullae +medullar +medullas +medusa +medusae +medusan +medusans +medusas +medusoid +medusoids +meed +meeds +meek +meeker +meekest +meekly +meekness +meeknesses +meerschaum +meerschaums +meet +meeter +meeters +meeting +meetinghouse +meetinghouses +meetings +meetly +meetness +meetnesses +meets +megabar +megabars +megabit +megabits +megabuck +megabucks +megacycle +megacycles +megadyne +megadynes +megahertz +megalith +megaliths +megaphone +megaphones +megapod +megapode +megapodes +megass +megasse +megasses +megaton +megatons +megavolt +megavolts +megawatt +megawatts +megillah +megillahs +megilp +megilph +megilphs +megilps +megohm +megohms +megrim +megrims +meikle +meinie +meinies +meiny +meioses +meiosis +meiotic +mel +melamine +melamines +melancholia +melancholic +melancholies +melancholy +melange +melanges +melanian +melanic +melanics +melanin +melanins +melanism +melanisms +melanist +melanists +melanite +melanites +melanize +melanized +melanizes +melanizing +melanoid +melanoids +melanoma +melanomas +melanomata +melanous +melatonin +melba +meld +melded +melder +melders +melding +melds +melee +melees +melic +melilite +melilites +melilot +melilots +melinite +melinites +meliorate +meliorated +meliorates +meliorating +melioration +meliorations +meliorative +melisma +melismas +melismata +mell +melled +mellific +mellifluous +mellifluously +mellifluousness +mellifluousnesses +melling +mellow +mellowed +mellower +mellowest +mellowing +mellowly +mellowness +mellownesses +mellows +mells +melodeon +melodeons +melodia +melodias +melodic +melodically +melodies +melodious +melodiously +melodiousness +melodiousnesses +melodise +melodised +melodises +melodising +melodist +melodists +melodize +melodized +melodizes +melodizing +melodrama +melodramas +melodramatic +melodramatist +melodramatists +melody +meloid +meloids +melon +melons +mels +melt +meltable +meltage +meltages +melted +melter +melters +melting +melton +meltons +melts +mem +member +membered +members +membership +memberships +membrane +membranes +membranous +memento +mementoes +mementos +memo +memoir +memoirs +memorabilia +memorabilities +memorability +memorable +memorableness +memorablenesses +memorably +memoranda +memorandum +memorandums +memorial +memorialize +memorialized +memorializes +memorializing +memorials +memories +memorization +memorizations +memorize +memorized +memorizes +memorizing +memory +memos +mems +memsahib +memsahibs +men +menace +menaced +menacer +menacers +menaces +menacing +menacingly +menad +menads +menage +menagerie +menageries +menages +menarche +menarches +mend +mendable +mendacious +mendaciously +mendacities +mendacity +mended +mendelson +mender +menders +mendicancies +mendicancy +mendicant +mendicants +mendigo +mendigos +mending +mendings +mends +menfolk +menfolks +menhaden +menhadens +menhir +menhirs +menial +menially +menials +meninges +meningitides +meningitis +meninx +meniscal +menisci +meniscus +meniscuses +meno +menologies +menology +menopausal +menopause +menopauses +menorah +menorahs +mensa +mensae +mensal +mensas +mensch +menschen +mensches +mense +mensed +menseful +menservants +menses +mensing +menstrua +menstrual +menstruate +menstruated +menstruates +menstruating +menstruation +menstruations +mensural +menswear +menswears +menta +mental +mentalities +mentality +mentally +menthene +menthenes +menthol +mentholated +menthols +mention +mentioned +mentioning +mentions +mentor +mentors +mentum +menu +menus +meow +meowed +meowing +meows +mephitic +mephitis +mephitises +mercantile +mercapto +mercenaries +mercenarily +mercenariness +mercenarinesses +mercenary +mercer +merceries +mercers +mercery +merchandise +merchandised +merchandiser +merchandisers +merchandises +merchandising +merchant +merchanted +merchanting +merchants +mercies +merciful +mercifully +merciless +mercilessly +mercurial +mercurially +mercurialness +mercurialnesses +mercuric +mercuries +mercurous +mercury +mercy +mere +merely +merengue +merengues +merer +meres +merest +merge +merged +mergence +mergences +merger +mergers +merges +merging +meridian +meridians +meringue +meringues +merino +merinos +merises +merisis +meristem +meristems +meristic +merit +merited +meriting +meritorious +meritoriously +meritoriousness +meritoriousnesses +merits +merk +merks +merl +merle +merles +merlin +merlins +merlon +merlons +merls +mermaid +mermaids +merman +mermen +meropia +meropias +meropic +merrier +merriest +merrily +merriment +merriments +merry +merrymaker +merrymakers +merrymaking +merrymakings +mesa +mesally +mesarch +mesas +mescal +mescals +mesdames +mesdemoiselles +meseemed +meseems +mesh +meshed +meshes +meshier +meshiest +meshing +meshwork +meshworks +meshy +mesial +mesially +mesian +mesic +mesmeric +mesmerism +mesmerisms +mesmerize +mesmerized +mesmerizes +mesmerizing +mesnalties +mesnalty +mesne +mesocarp +mesocarps +mesoderm +mesoderms +mesoglea +mesogleas +mesomere +mesomeres +meson +mesonic +mesons +mesophyl +mesophyls +mesosome +mesosomes +mesotron +mesotrons +mesquit +mesquite +mesquites +mesquits +mess +message +messages +messan +messans +messed +messenger +messengers +messes +messiah +messiahs +messier +messiest +messieurs +messily +messing +messman +messmate +messmates +messmen +messuage +messuages +messy +mestee +mestees +mesteso +mestesoes +mestesos +mestino +mestinoes +mestinos +mestiza +mestizas +mestizo +mestizoes +mestizos +met +meta +metabolic +metabolism +metabolisms +metabolize +metabolized +metabolizes +metabolizing +metage +metages +metal +metaled +metaling +metalise +metalised +metalises +metalising +metalist +metalists +metalize +metalized +metalizes +metalizing +metalled +metallic +metalling +metallurgical +metallurgically +metallurgies +metallurgist +metallurgists +metallurgy +metals +metalware +metalwares +metalwork +metalworker +metalworkers +metalworking +metalworkings +metalworks +metamer +metamere +metameres +metamers +metamorphose +metamorphosed +metamorphoses +metamorphosing +metamorphosis +metaphor +metaphorical +metaphors +metaphysical +metaphysician +metaphysicians +metaphysics +metastases +metastatic +metate +metates +metazoa +metazoal +metazoan +metazoans +metazoic +metazoon +mete +meted +meteor +meteoric +meteorically +meteorite +meteorites +meteoritic +meteorological +meteorologies +meteorologist +meteorologists +meteorology +meteors +metepa +metepas +meter +meterage +meterages +metered +metering +meters +metes +methadon +methadone +methadones +methadons +methane +methanes +methanol +methanols +methinks +method +methodic +methodical +methodically +methodicalness +methodicalnesses +methodological +methodologies +methodology +methods +methotrexate +methought +methoxy +methoxyl +methyl +methylal +methylals +methylic +methyls +meticulous +meticulously +meticulousness +meticulousnesses +metier +metiers +meting +metis +metisse +metisses +metonym +metonymies +metonyms +metonymy +metopae +metope +metopes +metopic +metopon +metopons +metre +metred +metres +metric +metrical +metrically +metrication +metrications +metrics +metrified +metrifies +metrify +metrifying +metring +metrist +metrists +metritis +metritises +metro +metronome +metronomes +metropolis +metropolises +metropolitan +metros +mettle +mettled +mettles +mettlesome +metump +metumps +meuniere +mew +mewed +mewing +mewl +mewled +mewler +mewlers +mewling +mewls +mews +mezcal +mezcals +mezereon +mezereons +mezereum +mezereums +mezquit +mezquite +mezquites +mezquits +mezuza +mezuzah +mezuzahs +mezuzas +mezuzot +mezuzoth +mezzanine +mezzanines +mezzo +mezzos +mho +mhos +mi +miaou +miaoued +miaouing +miaous +miaow +miaowed +miaowing +miaows +miasm +miasma +miasmal +miasmas +miasmata +miasmic +miasms +miaul +miauled +miauling +miauls +mib +mibs +mica +micas +micawber +micawbers +mice +micell +micella +micellae +micellar +micelle +micelles +micells +mick +mickey +mickeys +mickle +mickler +mickles +micklest +micks +micra +micrified +micrifies +micrify +micrifying +micro +microbar +microbars +microbe +microbes +microbial +microbic +microbiological +microbiologies +microbiologist +microbiologists +microbiology +microbus +microbuses +microbusses +microcomputer +microcomputers +microcosm +microfilm +microfilmed +microfilming +microfilms +microhm +microhms +microluces +microlux +microluxes +micrometer +micrometers +micromho +micromhos +microminiature +microminiatures +microminiaturization +microminiaturizations +microminiaturized +micron +microns +microorganism +microorganisms +microphone +microphones +microscope +microscopes +microscopic +microscopical +microscopically +microscopies +microscopy +microwave +microwaves +micrurgies +micrurgy +mid +midair +midairs +midbrain +midbrains +midday +middays +midden +middens +middies +middle +middled +middleman +middlemen +middler +middlers +middles +middlesex +middling +middlings +middy +midfield +midfields +midge +midges +midget +midgets +midgut +midguts +midi +midiron +midirons +midis +midland +midlands +midleg +midlegs +midline +midlines +midmonth +midmonths +midmost +midmosts +midnight +midnights +midnoon +midnoons +midpoint +midpoints +midrange +midranges +midrash +midrashim +midrib +midribs +midriff +midriffs +mids +midship +midshipman +midshipmen +midships +midspace +midspaces +midst +midstories +midstory +midstream +midstreams +midsts +midsummer +midsummers +midterm +midterms +midtown +midtowns +midwatch +midwatches +midway +midways +midweek +midweeks +midwife +midwifed +midwiferies +midwifery +midwifes +midwifing +midwinter +midwinters +midwived +midwives +midwiving +midyear +midyears +mien +miens +miff +miffed +miffier +miffiest +miffing +miffs +miffy +mig +migg +miggle +miggles +miggs +might +mightier +mightiest +mightily +mights +mighty +mignon +mignonne +mignons +migraine +migraines +migrant +migrants +migratation +migratational +migratations +migrate +migrated +migrates +migrating +migrator +migrators +migratory +migs +mijnheer +mijnheers +mikado +mikados +mike +mikes +mikra +mikron +mikrons +mikvah +mikvahs +mikveh +mikvehs +mikvoth +mil +miladi +miladies +miladis +milady +milage +milages +milch +milchig +mild +milden +mildened +mildening +mildens +milder +mildest +mildew +mildewed +mildewing +mildews +mildewy +mildly +mildness +mildnesses +mile +mileage +mileages +milepost +mileposts +miler +milers +miles +milesimo +milesimos +milestone +milestones +milfoil +milfoils +milia +miliaria +miliarias +miliary +milieu +milieus +milieux +militancies +militancy +militant +militantly +militants +militaries +militarily +militarism +militarisms +militarist +militaristic +militarists +military +militate +militated +militates +militating +militia +militiaman +militiamen +militias +milium +milk +milked +milker +milkers +milkfish +milkfishes +milkier +milkiest +milkily +milkiness +milkinesses +milking +milkmaid +milkmaids +milkman +milkmen +milks +milksop +milksops +milkweed +milkweeds +milkwood +milkwoods +milkwort +milkworts +milky +mill +millable +millage +millages +milldam +milldams +mille +milled +millennia +millennium +millenniums +milleped +millepeds +miller +millers +milles +millet +millets +milliard +milliards +milliare +milliares +milliary +millibar +millibars +millieme +milliemes +millier +milliers +milligal +milligals +milligram +milligrams +milliliter +milliliters +milliluces +millilux +milliluxes +millime +millimes +millimeter +millimeters +millimho +millimhos +milline +milliner +milliners +millines +milling +millings +milliohm +milliohms +million +millionaire +millionaires +millions +millionth +millionths +milliped +millipede +millipedes +millipeds +millirem +millirems +millpond +millponds +millrace +millraces +millrun +millruns +mills +millstone +millstones +millwork +millworks +milo +milord +milords +milos +milpa +milpas +milreis +mils +milt +milted +milter +milters +miltier +miltiest +milting +milts +milty +mim +mimbar +mimbars +mime +mimed +mimeograph +mimeographed +mimeographing +mimeographs +mimer +mimers +mimes +mimesis +mimesises +mimetic +mimetite +mimetites +mimic +mimical +mimicked +mimicker +mimickers +mimicking +mimicries +mimicry +mimics +miming +mimosa +mimosas +mina +minable +minacities +minacity +minae +minaret +minarets +minas +minatory +mince +minced +mincer +mincers +minces +mincier +minciest +mincing +mincy +mind +minded +minder +minders +mindful +minding +mindless +mindlessly +mindlessness +mindlessnesses +minds +mine +mineable +mined +miner +mineral +mineralize +mineralized +mineralizes +mineralizing +minerals +minerological +minerologies +minerologist +minerologists +minerology +miners +mines +mingier +mingiest +mingle +mingled +mingler +minglers +mingles +mingling +mingy +mini +miniature +miniatures +miniaturist +miniaturists +miniaturize +miniaturized +miniaturizes +miniaturizing +minibike +minibikes +minibrain +minibrains +minibudget +minibudgets +minibus +minibuses +minibusses +minicab +minicabs +minicalculator +minicalculators +minicamera +minicameras +minicar +minicars +miniclock +miniclocks +minicomponent +minicomponents +minicomputer +minicomputers +miniconvention +miniconventions +minicourse +minicourses +minicrisis +minicrisises +minidrama +minidramas +minidress +minidresses +minifestival +minifestivals +minified +minifies +minify +minifying +minigarden +minigardens +minigrant +minigrants +minigroup +minigroups +miniguide +miniguides +minihospital +minihospitals +minikin +minikins +minileague +minileagues +minilecture +minilectures +minim +minima +minimal +minimally +minimals +minimarket +minimarkets +minimax +minimaxes +minimiracle +minimiracles +minimise +minimised +minimises +minimising +minimization +minimize +minimized +minimizes +minimizing +minims +minimum +minimums +minimuseum +minimuseums +minination +mininations +mininetwork +mininetworks +mining +minings +mininovel +mininovels +minion +minions +minipanic +minipanics +miniprice +miniprices +miniproblem +miniproblems +minirebellion +minirebellions +minirecession +minirecessions +minirobot +minirobots +minis +miniscandal +miniscandals +minischool +minischools +miniscule +minisedan +minisedans +miniseries +miniserieses +minish +minished +minishes +minishing +miniskirt +miniskirts +minislump +minislumps +minisocieties +minisociety +ministate +ministates +minister +ministered +ministerial +ministering +ministers +ministration +ministrations +ministries +ministrike +ministrikes +ministry +minisubmarine +minisubmarines +minisurvey +minisurveys +minisystem +minisystems +miniterritories +miniterritory +minitheater +minitheaters +minitrain +minitrains +minium +miniums +minivacation +minivacations +miniver +minivers +miniversion +miniversions +mink +minks +minnies +minnow +minnows +minny +minor +minorca +minorcas +minored +minoring +minorities +minority +minors +minster +minsters +minstrel +minstrels +minstrelsies +minstrelsy +mint +mintage +mintages +minted +minter +minters +mintier +mintiest +minting +mints +minty +minuend +minuends +minuet +minuets +minus +minuscule +minuses +minute +minuted +minutely +minuteness +minutenesses +minuter +minutes +minutest +minutia +minutiae +minutial +minuting +minx +minxes +minxish +minyan +minyanim +minyans +mioses +miosis +miotic +miotics +miquelet +miquelets +mir +miracle +miracles +miraculous +miraculously +mirador +miradors +mirage +mirages +mire +mired +mires +mirex +mirexes +miri +mirier +miriest +miriness +mirinesses +miring +mirk +mirker +mirkest +mirkier +mirkiest +mirkily +mirks +mirky +mirror +mirrored +mirroring +mirrors +mirs +mirth +mirthful +mirthfully +mirthfulness +mirthfulnesses +mirthless +mirths +miry +mirza +mirzas +mis +misact +misacted +misacting +misacts +misadapt +misadapted +misadapting +misadapts +misadd +misadded +misadding +misadds +misagent +misagents +misaim +misaimed +misaiming +misaims +misallied +misallies +misally +misallying +misalter +misaltered +misaltering +misalters +misanthrope +misanthropes +misanthropic +misanthropies +misanthropy +misapplied +misapplies +misapply +misapplying +misapprehend +misapprehended +misapprehending +misapprehends +misapprehension +misapprehensions +misappropriate +misappropriated +misappropriates +misappropriating +misappropriation +misappropriations +misassay +misassayed +misassaying +misassays +misate +misatone +misatoned +misatones +misatoning +misaver +misaverred +misaverring +misavers +misaward +misawarded +misawarding +misawards +misbegan +misbegin +misbeginning +misbegins +misbegot +misbegun +misbehave +misbehaved +misbehaver +misbehavers +misbehaves +misbehaving +misbehavior +misbehaviors +misbias +misbiased +misbiases +misbiasing +misbiassed +misbiasses +misbiassing +misbill +misbilled +misbilling +misbills +misbind +misbinding +misbinds +misbound +misbrand +misbranded +misbranding +misbrands +misbuild +misbuilding +misbuilds +misbuilt +miscalculate +miscalculated +miscalculates +miscalculating +miscalculation +miscalculations +miscall +miscalled +miscalling +miscalls +miscarriage +miscarriages +miscarried +miscarries +miscarry +miscarrying +miscast +miscasting +miscasts +miscegenation +miscegenations +miscellaneous +miscellaneously +miscellaneousness +miscellaneousnesses +miscellanies +miscellany +mischance +mischances +mischief +mischiefs +mischievous +mischievously +mischievousness +mischievousnesses +miscible +miscite +miscited +miscites +misciting +misclaim +misclaimed +misclaiming +misclaims +misclass +misclassed +misclasses +misclassing +miscoin +miscoined +miscoining +miscoins +miscolor +miscolored +miscoloring +miscolors +misconceive +misconceived +misconceives +misconceiving +misconception +misconceptions +misconduct +misconducts +misconstruction +misconstructions +misconstrue +misconstrued +misconstrues +misconstruing +miscook +miscooked +miscooking +miscooks +miscopied +miscopies +miscopy +miscopying +miscount +miscounted +miscounting +miscounts +miscreant +miscreants +miscue +miscued +miscues +miscuing +miscut +miscuts +miscutting +misdate +misdated +misdates +misdating +misdeal +misdealing +misdeals +misdealt +misdeed +misdeeds +misdeem +misdeemed +misdeeming +misdeems +misdemeanor +misdemeanors +misdid +misdo +misdoer +misdoers +misdoes +misdoing +misdoings +misdone +misdoubt +misdoubted +misdoubting +misdoubts +misdraw +misdrawing +misdrawn +misdraws +misdrew +misdrive +misdriven +misdrives +misdriving +misdrove +mise +misease +miseases +miseat +miseating +miseats +misedit +misedited +misediting +misedits +misenrol +misenrolled +misenrolling +misenrols +misenter +misentered +misentering +misenters +misentries +misentry +miser +miserable +miserableness +miserablenesses +miserably +miserere +misereres +miseries +miserliness +miserlinesses +miserly +misers +misery +mises +misevent +misevents +misfaith +misfaiths +misfield +misfielded +misfielding +misfields +misfile +misfiled +misfiles +misfiling +misfire +misfired +misfires +misfiring +misfit +misfits +misfitted +misfitting +misform +misformed +misforming +misforms +misfortune +misfortunes +misframe +misframed +misframes +misframing +misgauge +misgauged +misgauges +misgauging +misgave +misgive +misgiven +misgives +misgiving +misgivings +misgraft +misgrafted +misgrafting +misgrafts +misgrew +misgrow +misgrowing +misgrown +misgrows +misguess +misguessed +misguesses +misguessing +misguide +misguided +misguides +misguiding +mishap +mishaps +mishear +misheard +mishearing +mishears +mishit +mishits +mishitting +mishmash +mishmashes +mishmosh +mishmoshes +misinfer +misinferred +misinferring +misinfers +misinform +misinformation +misinformations +misinforms +misinter +misinterpret +misinterpretation +misinterpretations +misinterpreted +misinterpreting +misinterprets +misinterred +misinterring +misinters +misjoin +misjoined +misjoining +misjoins +misjudge +misjudged +misjudges +misjudging +misjudgment +misjudgments +miskal +miskals +miskeep +miskeeping +miskeeps +miskept +misknew +misknow +misknowing +misknown +misknows +mislabel +mislabeled +mislabeling +mislabelled +mislabelling +mislabels +mislabor +mislabored +mislaboring +mislabors +mislaid +mislain +mislay +mislayer +mislayers +mislaying +mislays +mislead +misleading +misleadingly +misleads +mislearn +mislearned +mislearning +mislearns +mislearnt +misled +mislie +mislies +mislight +mislighted +mislighting +mislights +mislike +misliked +misliker +mislikers +mislikes +misliking +mislit +mislive +mislived +mislives +misliving +mislodge +mislodged +mislodges +mislodging +mislying +mismanage +mismanaged +mismanagement +mismanagements +mismanages +mismanaging +mismark +mismarked +mismarking +mismarks +mismatch +mismatched +mismatches +mismatching +mismate +mismated +mismates +mismating +mismeet +mismeeting +mismeets +mismet +mismove +mismoved +mismoves +mismoving +misname +misnamed +misnames +misnaming +misnomer +misnomers +miso +misogamies +misogamy +misogynies +misogynist +misogynists +misogyny +misologies +misology +misos +mispage +mispaged +mispages +mispaging +mispaint +mispainted +mispainting +mispaints +misparse +misparsed +misparses +misparsing +mispart +misparted +misparting +misparts +mispatch +mispatched +mispatches +mispatching +mispen +mispenned +mispenning +mispens +misplace +misplaced +misplaces +misplacing +misplant +misplanted +misplanting +misplants +misplay +misplayed +misplaying +misplays +misplead +mispleaded +mispleading +mispleads +mispled +mispoint +mispointed +mispointing +mispoints +mispoise +mispoised +mispoises +mispoising +misprint +misprinted +misprinting +misprints +misprize +misprized +misprizes +misprizing +mispronounce +mispronounced +mispronounces +mispronouncing +mispronunciation +mispronunciations +misquotation +misquotations +misquote +misquoted +misquotes +misquoting +misraise +misraised +misraises +misraising +misrate +misrated +misrates +misrating +misread +misreading +misreads +misrefer +misreferred +misreferring +misrefers +misrelied +misrelies +misrely +misrelying +misrepresent +misrepresentation +misrepresentations +misrepresented +misrepresenting +misrepresents +misrule +misruled +misrules +misruling +miss +missaid +missal +missals +missay +missaying +missays +misseat +misseated +misseating +misseats +missed +missel +missels +missend +missending +missends +missense +missenses +missent +misses +misshape +misshaped +misshapen +misshapes +misshaping +misshod +missies +missile +missiles +missilries +missilry +missing +mission +missionaries +missionary +missioned +missioning +missions +missis +missises +missive +missives +missort +missorted +missorting +missorts +missound +missounded +missounding +missounds +missout +missouts +misspace +misspaced +misspaces +misspacing +misspeak +misspeaking +misspeaks +misspell +misspelled +misspelling +misspellings +misspells +misspelt +misspend +misspending +misspends +misspent +misspoke +misspoken +misstart +misstarted +misstarting +misstarts +misstate +misstated +misstatement +misstatements +misstates +misstating +missteer +missteered +missteering +missteers +misstep +missteps +misstop +misstopped +misstopping +misstops +misstyle +misstyled +misstyles +misstyling +missuit +missuited +missuiting +missuits +missus +missuses +missy +mist +mistake +mistaken +mistakenly +mistaker +mistakers +mistakes +mistaking +mistaught +mistbow +mistbows +misteach +misteaches +misteaching +misted +mistend +mistended +mistending +mistends +mister +misterm +mistermed +misterming +misterms +misters +misteuk +misthink +misthinking +misthinks +misthought +misthrew +misthrow +misthrowing +misthrown +misthrows +mistier +mistiest +mistily +mistime +mistimed +mistimes +mistiming +misting +mistitle +mistitled +mistitles +mistitling +mistletoe +mistook +mistouch +mistouched +mistouches +mistouching +mistrace +mistraced +mistraces +mistracing +mistral +mistrals +mistreat +mistreated +mistreating +mistreatment +mistreatments +mistreats +mistress +mistresses +mistrial +mistrials +mistrust +mistrusted +mistrustful +mistrustfully +mistrustfulness +mistrustfulnesses +mistrusting +mistrusts +mistryst +mistrysted +mistrysting +mistrysts +mists +mistune +mistuned +mistunes +mistuning +mistutor +mistutored +mistutoring +mistutors +misty +mistype +mistyped +mistypes +mistyping +misunderstand +misunderstanded +misunderstanding +misunderstandings +misunderstands +misunion +misunions +misusage +misusages +misuse +misused +misuser +misusers +misuses +misusing +misvalue +misvalued +misvalues +misvaluing +misword +misworded +miswording +miswords +miswrit +miswrite +miswrites +miswriting +miswritten +miswrote +misyoke +misyoked +misyokes +misyoking +mite +miter +mitered +miterer +miterers +mitering +miters +mites +mither +mithers +miticide +miticides +mitier +mitiest +mitigate +mitigated +mitigates +mitigating +mitigation +mitigations +mitigative +mitigator +mitigators +mitigatory +mitis +mitises +mitogen +mitogens +mitoses +mitosis +mitotic +mitral +mitre +mitred +mitres +mitring +mitsvah +mitsvahs +mitsvoth +mitt +mitten +mittens +mittimus +mittimuses +mitts +mity +mitzvah +mitzvahs +mitzvoth +mix +mixable +mixed +mixer +mixers +mixes +mixible +mixing +mixologies +mixology +mixt +mixture +mixtures +mixup +mixups +mizen +mizens +mizzen +mizzens +mizzle +mizzled +mizzles +mizzling +mizzly +mnemonic +mnemonics +moa +moan +moaned +moanful +moaning +moans +moas +moat +moated +moating +moatlike +moats +mob +mobbed +mobber +mobbers +mobbing +mobbish +mobcap +mobcaps +mobile +mobiles +mobilise +mobilised +mobilises +mobilising +mobilities +mobility +mobilization +mobilizations +mobilize +mobilized +mobilizer +mobilizers +mobilizes +mobilizing +mobocrat +mobocrats +mobs +mobster +mobsters +moccasin +moccasins +mocha +mochas +mochila +mochilas +mock +mockable +mocked +mocker +mockeries +mockers +mockery +mocking +mockingbird +mockingbirds +mockingly +mocks +mockup +mockups +mod +modal +modalities +modality +modally +mode +model +modeled +modeler +modelers +modeling +modelings +modelled +modeller +modellers +modelling +models +moderate +moderated +moderately +moderateness +moderatenesses +moderates +moderating +moderation +moderations +moderato +moderator +moderators +moderatos +modern +moderner +modernest +modernities +modernity +modernization +modernizations +modernize +modernized +modernizer +modernizers +modernizes +modernizing +modernly +modernness +modernnesses +moderns +modes +modest +modester +modestest +modesties +modestly +modesty +modi +modica +modicum +modicums +modification +modifications +modified +modifier +modifiers +modifies +modify +modifying +modioli +modiolus +modish +modishly +modiste +modistes +mods +modular +modularities +modularity +modularized +modulate +modulated +modulates +modulating +modulation +modulations +modulator +modulators +modulatory +module +modules +moduli +modulo +modulus +modus +mofette +mofettes +moffette +moffettes +mog +mogged +mogging +mogs +mogul +moguls +mohair +mohairs +mohalim +mohel +mohels +mohur +mohurs +moidore +moidores +moieties +moiety +moil +moiled +moiler +moilers +moiling +moils +moira +moirai +moire +moires +moist +moisten +moistened +moistener +moisteners +moistening +moistens +moister +moistest +moistful +moistly +moistness +moistnesses +moisture +moistures +mojarra +mojarras +moke +mokes +mol +mola +molal +molalities +molality +molar +molarities +molarity +molars +molas +molasses +molasseses +mold +moldable +molded +molder +moldered +moldering +molders +moldier +moldiest +moldiness +moldinesses +molding +moldings +molds +moldwarp +moldwarps +moldy +mole +molecular +molecule +molecules +molehill +molehills +moles +moleskin +moleskins +molest +molestation +molestations +molested +molester +molesters +molesting +molests +molies +moline +moll +mollah +mollahs +mollie +mollies +mollification +mollifications +mollified +mollifies +mollify +mollifying +molls +mollusc +molluscan +molluscs +mollusk +mollusks +molly +mollycoddle +mollycoddled +mollycoddles +mollycoddling +moloch +molochs +mols +molt +molted +molten +moltenly +molter +molters +molting +molto +molts +moly +molybdic +molys +mom +mome +moment +momenta +momentarily +momentary +momently +momento +momentoes +momentos +momentous +momentously +momentousment +momentousments +momentousness +momentousnesses +moments +momentum +momentums +momes +momi +momism +momisms +momma +mommas +mommies +mommy +moms +momus +momuses +mon +monachal +monacid +monacids +monad +monadal +monades +monadic +monadism +monadisms +monads +monandries +monandry +monarch +monarchic +monarchical +monarchies +monarchs +monarchy +monarda +monardas +monas +monasterial +monasteries +monastery +monastic +monastically +monasticism +monasticisms +monastics +monaural +monaxial +monazite +monazites +monde +mondes +mondo +mondos +monecian +monetary +monetise +monetised +monetises +monetising +monetize +monetized +monetizes +monetizing +money +moneybag +moneybags +moneyed +moneyer +moneyers +moneylender +moneylenders +moneys +mongeese +monger +mongered +mongering +mongers +mongo +mongoe +mongoes +mongol +mongolism +mongolisms +mongols +mongoose +mongooses +mongos +mongrel +mongrels +mongst +monicker +monickers +monie +monied +monies +moniker +monikers +monish +monished +monishes +monishing +monism +monisms +monist +monistic +monists +monition +monitions +monitive +monitor +monitored +monitories +monitoring +monitors +monitory +monk +monkeries +monkery +monkey +monkeyed +monkeying +monkeys +monkeyshines +monkfish +monkfishes +monkhood +monkhoods +monkish +monkishly +monkishness +monkishnesses +monks +monkshood +monkshoods +mono +monoacid +monoacids +monocarp +monocarps +monocle +monocled +monocles +monocot +monocots +monocrat +monocrats +monocyte +monocytes +monodic +monodies +monodist +monodists +monody +monoecies +monoecy +monofil +monofils +monofuel +monofuels +monogamic +monogamies +monogamist +monogamists +monogamous +monogamy +monogenies +monogeny +monogerm +monogram +monogramed +monograming +monogrammed +monogramming +monograms +monograph +monographs +monogynies +monogyny +monolingual +monolith +monolithic +monoliths +monolog +monologies +monologist +monologists +monologs +monologue +monologues +monologuist +monologuists +monology +monomer +monomers +monomial +monomials +mononucleosis +mononucleosises +monopode +monopodes +monopodies +monopody +monopole +monopoles +monopolies +monopolist +monopolistic +monopolists +monopolization +monopolizations +monopolize +monopolized +monopolizes +monopolizing +monopoly +monorail +monorails +monos +monosome +monosomes +monosyllable +monosyllables +monosyllablic +monotheism +monotheisms +monotheist +monotheists +monotint +monotints +monotone +monotones +monotonies +monotonous +monotonously +monotonousness +monotonousnesses +monotony +monotype +monotypes +monoxide +monoxides +mons +monsieur +monsignor +monsignori +monsignors +monsoon +monsoonal +monsoons +monster +monsters +monstrosities +monstrosity +monstrously +montage +montaged +montages +montaging +montane +montanes +monte +monteith +monteiths +montero +monteros +montes +month +monthlies +monthly +months +monument +monumental +monumentally +monuments +monuron +monurons +mony +moo +mooch +mooched +moocher +moochers +mooches +mooching +mood +moodier +moodiest +moodily +moodiness +moodinesses +moods +moody +mooed +mooing +mool +moola +moolah +moolahs +moolas +mooley +mooleys +mools +moon +moonbeam +moonbeams +moonbow +moonbows +mooncalf +mooncalves +mooned +mooneye +mooneyes +moonfish +moonfishes +moonier +mooniest +moonily +mooning +moonish +moonless +moonlet +moonlets +moonlight +moonlighted +moonlighter +moonlighters +moonlighting +moonlights +moonlike +moonlit +moonrise +moonrises +moons +moonsail +moonsails +moonseed +moonseeds +moonset +moonsets +moonshine +moonshines +moonshot +moonshots +moonward +moonwort +moonworts +moony +moor +moorage +moorages +moored +moorfowl +moorfowls +moorhen +moorhens +moorier +mooriest +mooring +moorings +moorish +moorland +moorlands +moors +moorwort +moorworts +moory +moos +moose +moot +mooted +mooter +mooters +mooting +moots +mop +mopboard +mopboards +mope +moped +mopeds +moper +mopers +mopes +moping +mopingly +mopish +mopishly +mopoke +mopokes +mopped +mopper +moppers +moppet +moppets +mopping +mops +moquette +moquettes +mor +mora +morae +morainal +moraine +moraines +morainic +moral +morale +morales +moralise +moralised +moralises +moralising +moralism +moralisms +moralist +moralistic +moralists +moralities +morality +moralize +moralized +moralizes +moralizing +morally +morals +moras +morass +morasses +morassy +moratoria +moratorium +moratoriums +moratory +moray +morays +morbid +morbidities +morbidity +morbidly +morbidness +morbidnesses +morbific +morbilli +morceau +morceaux +mordancies +mordancy +mordant +mordanted +mordanting +mordantly +mordants +mordent +mordents +more +moreen +moreens +morel +morelle +morelles +morello +morellos +morels +moreover +mores +moresque +moresques +morgen +morgens +morgue +morgues +moribund +moribundities +moribundity +morion +morions +morn +morning +mornings +morns +morocco +moroccos +moron +moronic +moronically +moronism +moronisms +moronities +moronity +morons +morose +morosely +moroseness +morosenesses +morosities +morosity +morph +morpheme +morphemes +morphia +morphias +morphic +morphin +morphine +morphines +morphins +morpho +morphologic +morphologically +morphologies +morphology +morphos +morphs +morrion +morrions +morris +morrises +morro +morros +morrow +morrows +mors +morsel +morseled +morseling +morselled +morselling +morsels +mort +mortal +mortalities +mortality +mortally +mortals +mortar +mortared +mortaring +mortars +mortary +mortgage +mortgaged +mortgagee +mortgagees +mortgages +mortgaging +mortgagor +mortgagors +mortice +morticed +mortices +morticing +mortification +mortifications +mortified +mortifies +mortify +mortifying +mortise +mortised +mortiser +mortisers +mortises +mortising +mortmain +mortmains +morts +mortuaries +mortuary +morula +morulae +morular +morulas +mosaic +mosaicked +mosaicking +mosaics +moschate +mosey +moseyed +moseying +moseys +moshav +moshavim +mosk +mosks +mosque +mosques +mosquito +mosquitoes +mosquitos +moss +mossback +mossbacks +mossed +mosser +mossers +mosses +mossier +mossiest +mossing +mosslike +mosso +mossy +most +moste +mostly +mosts +mot +mote +motel +motels +motes +motet +motets +motey +moth +mothball +mothballed +mothballing +mothballs +mother +mothered +motherhood +motherhoods +mothering +motherland +motherlands +motherless +motherly +mothers +mothery +mothier +mothiest +moths +mothy +motif +motifs +motile +motiles +motilities +motility +motion +motional +motioned +motioner +motioners +motioning +motionless +motionlessly +motionlessness +motionlessnesses +motions +motivate +motivated +motivates +motivating +motivation +motivations +motive +motived +motiveless +motives +motivic +motiving +motivities +motivity +motley +motleyer +motleyest +motleys +motlier +motliest +motmot +motmots +motor +motorbike +motorbikes +motorboat +motorboats +motorbus +motorbuses +motorbusses +motorcar +motorcars +motorcycle +motorcycles +motorcyclist +motorcyclists +motored +motoric +motoring +motorings +motorise +motorised +motorises +motorising +motorist +motorists +motorize +motorized +motorizes +motorizing +motorman +motormen +motors +motortruck +motortrucks +motorway +motorways +mots +mott +motte +mottes +mottle +mottled +mottler +mottlers +mottles +mottling +motto +mottoes +mottos +motts +mouch +mouched +mouches +mouching +mouchoir +mouchoirs +moue +moues +moufflon +moufflons +mouflon +mouflons +mouille +moujik +moujiks +moulage +moulages +mould +moulded +moulder +mouldered +mouldering +moulders +mouldier +mouldiest +moulding +mouldings +moulds +mouldy +moulin +moulins +moult +moulted +moulter +moulters +moulting +moults +mound +mounded +mounding +mounds +mount +mountable +mountain +mountaineer +mountaineered +mountaineering +mountaineers +mountainous +mountains +mountaintop +mountaintops +mountebank +mountebanks +mounted +mounter +mounters +mounting +mountings +mounts +mourn +mourned +mourner +mourners +mournful +mournfuller +mournfullest +mournfully +mournfulness +mournfulnesses +mourning +mournings +mourns +mouse +moused +mouser +mousers +mouses +mousetrap +mousetraps +mousey +mousier +mousiest +mousily +mousing +mousings +moussaka +moussakas +mousse +mousses +moustache +moustaches +mousy +mouth +mouthed +mouther +mouthers +mouthful +mouthfuls +mouthier +mouthiest +mouthily +mouthing +mouthpiece +mouthpieces +mouths +mouthy +mouton +moutons +movable +movables +movably +move +moveable +moveables +moveably +moved +moveless +movement +movements +mover +movers +moves +movie +moviedom +moviedoms +movies +moving +movingly +mow +mowed +mower +mowers +mowing +mown +mows +moxa +moxas +moxie +moxies +mozetta +mozettas +mozette +mozo +mozos +mozzetta +mozzettas +mozzette +mridanga +mridangas +mu +much +muches +muchness +muchnesses +mucic +mucid +mucidities +mucidity +mucilage +mucilages +mucilaginous +mucin +mucinoid +mucinous +mucins +muck +mucked +mucker +muckers +muckier +muckiest +muckily +mucking +muckle +muckles +muckluck +mucklucks +muckrake +muckraked +muckrakes +muckraking +mucks +muckworm +muckworms +mucky +mucluc +muclucs +mucoid +mucoidal +mucoids +mucor +mucors +mucosa +mucosae +mucosal +mucosas +mucose +mucosities +mucositis +mucosity +mucous +mucro +mucrones +mucus +mucuses +mud +mudcap +mudcapped +mudcapping +mudcaps +mudded +mudder +mudders +muddied +muddier +muddies +muddiest +muddily +muddiness +muddinesses +mudding +muddle +muddled +muddler +muddlers +muddles +muddling +muddy +muddying +mudfish +mudfishes +mudguard +mudguards +mudlark +mudlarks +mudpuppies +mudpuppy +mudra +mudras +mudrock +mudrocks +mudroom +mudrooms +muds +mudsill +mudsills +mudstone +mudstones +mueddin +mueddins +muenster +muensters +muezzin +muezzins +muff +muffed +muffin +muffing +muffins +muffle +muffled +muffler +mufflers +muffles +muffling +muffs +mufti +muftis +mug +mugg +muggar +muggars +mugged +mugger +muggers +muggier +muggiest +muggily +mugginess +mugginesses +mugging +muggings +muggins +muggs +muggur +muggurs +muggy +mugho +mugs +mugwort +mugworts +mugwump +mugwumps +muhlies +muhly +mujik +mujiks +mukluk +mukluks +mulatto +mulattoes +mulattos +mulberries +mulberry +mulch +mulched +mulches +mulching +mulct +mulcted +mulcting +mulcts +mule +muled +mules +muleta +muletas +muleteer +muleteers +muley +muleys +muling +mulish +mulishly +mulishness +mulishnesses +mull +mulla +mullah +mullahs +mullas +mulled +mullein +mulleins +mullen +mullens +muller +mullers +mullet +mullets +mulley +mulleys +mulligan +mulligans +mulling +mullion +mullioned +mullioning +mullions +mullite +mullites +mullock +mullocks +mullocky +mulls +multiarmed +multibarreled +multibillion +multibranched +multibuilding +multicenter +multichambered +multichannel +multicolored +multicounty +multicultural +multidenominational +multidimensional +multidirectional +multidisciplinary +multidiscipline +multidivisional +multidwelling +multifaceted +multifamily +multifarous +multifarously +multifid +multifilament +multifunction +multifunctional +multigrade +multiheaded +multihospital +multihued +multijet +multilane +multilateral +multilevel +multilingual +multilingualism +multilingualisms +multimedia +multimember +multimillion +multimillionaire +multimodalities +multimodality +multipart +multipartite +multiparty +multiped +multipeds +multiplant +multiple +multiples +multiplexor +multiplexors +multiplication +multiplications +multiplicities +multiplicity +multiplied +multiplier +multipliers +multiplies +multiply +multiplying +multipolar +multiproblem +multiproduct +multipurpose +multiracial +multiroomed +multisense +multiservice +multisided +multispeed +multistage +multistep +multistory +multisyllabic +multitalented +multitrack +multitude +multitudes +multitudinous +multiunion +multiunit +multivariate +multiwarhead +multiyear +multure +multures +mum +mumble +mumbled +mumbler +mumblers +mumbles +mumbling +mumbo +mumm +mummed +mummer +mummeries +mummers +mummery +mummied +mummies +mummification +mummifications +mummified +mummifies +mummify +mummifying +mumming +mumms +mummy +mummying +mump +mumped +mumper +mumpers +mumping +mumps +mums +mun +munch +munched +muncher +munchers +munches +munching +mundane +mundanely +mundungo +mundungos +munge +mungo +mungoose +mungooses +mungos +mungs +municipal +municipalities +municipality +municipally +munificence +munificences +munificent +muniment +muniments +munition +munitioned +munitioning +munitions +munnion +munnions +muns +munster +munsters +muntin +munting +muntings +muntins +muntjac +muntjacs +muntjak +muntjaks +muon +muonic +muons +mura +muraenid +muraenids +mural +muralist +muralists +murals +muras +murder +murdered +murderee +murderees +murderer +murderers +murderess +murderesses +murdering +murderous +murderously +murders +mure +mured +murein +mureins +mures +murex +murexes +muriate +muriated +muriates +muricate +murices +murid +murids +murine +murines +muring +murk +murker +murkest +murkier +murkiest +murkily +murkiness +murkinesses +murkly +murks +murky +murmur +murmured +murmurer +murmurers +murmuring +murmurous +murmurs +murphies +murphy +murr +murra +murrain +murrains +murras +murre +murrelet +murrelets +murres +murrey +murreys +murrha +murrhas +murrhine +murries +murrine +murrs +murry +murther +murthered +murthering +murthers +mus +musca +muscadel +muscadels +muscae +muscat +muscatel +muscatels +muscats +muscid +muscids +muscle +muscled +muscles +muscling +muscly +muscular +muscularities +muscularity +musculature +musculatures +muse +mused +museful +muser +musers +muses +musette +musettes +museum +museums +mush +mushed +musher +mushers +mushes +mushier +mushiest +mushily +mushing +mushroom +mushroomed +mushrooming +mushrooms +mushy +music +musical +musicale +musicales +musically +musicals +musician +musicianly +musicians +musicianship +musicianships +musics +musing +musingly +musings +musjid +musjids +musk +muskeg +muskegs +muskellunge +musket +musketries +musketry +muskets +muskie +muskier +muskies +muskiest +muskily +muskiness +muskinesses +muskit +muskits +muskmelon +muskmelons +muskrat +muskrats +musks +musky +muslin +muslins +muspike +muspikes +musquash +musquashes +muss +mussed +mussel +mussels +musses +mussier +mussiest +mussily +mussiness +mussinesses +mussing +mussy +must +mustache +mustaches +mustang +mustangs +mustard +mustards +musted +mustee +mustees +muster +mustered +mustering +musters +musth +musths +mustier +mustiest +mustily +mustiness +mustinesses +musting +musts +musty +mut +mutabilities +mutability +mutable +mutably +mutagen +mutagens +mutant +mutants +mutase +mutases +mutate +mutated +mutates +mutating +mutation +mutational +mutations +mutative +mutch +mutches +mutchkin +mutchkins +mute +muted +mutedly +mutely +muteness +mutenesses +muter +mutes +mutest +muticous +mutilate +mutilated +mutilates +mutilating +mutilation +mutilations +mutilator +mutilators +mutine +mutined +mutineer +mutineered +mutineering +mutineers +mutines +muting +mutinied +mutinies +mutining +mutinous +mutinously +mutiny +mutinying +mutism +mutisms +muts +mutt +mutter +muttered +mutterer +mutterers +muttering +mutters +mutton +muttons +muttony +mutts +mutual +mutually +mutuel +mutuels +mutular +mutule +mutules +muumuu +muumuus +muzhik +muzhiks +muzjik +muzjiks +muzzier +muzziest +muzzily +muzzle +muzzled +muzzler +muzzlers +muzzles +muzzling +muzzy +my +myalgia +myalgias +myalgic +myases +myasis +mycele +myceles +mycelia +mycelial +mycelian +mycelium +myceloid +mycetoma +mycetomas +mycetomata +mycologies +mycology +mycoses +mycosis +mycotic +myelin +myeline +myelines +myelinic +myelins +myelitides +myelitis +myeloid +myeloma +myelomas +myelomata +myelosuppression +myelosuppressions +myiases +myiasis +mylonite +mylonites +myna +mynah +mynahs +mynas +mynheer +mynheers +myoblast +myoblasts +myogenic +myograph +myographs +myoid +myologic +myologies +myology +myoma +myomas +myomata +myopathies +myopathy +myope +myopes +myopia +myopias +myopic +myopically +myopies +myopy +myoscope +myoscopes +myoses +myosin +myosins +myosis +myosote +myosotes +myosotis +myosotises +myotic +myotics +myotome +myotomes +myotonia +myotonias +myotonic +myriad +myriads +myriapod +myriapods +myrica +myricas +myriopod +myriopods +myrmidon +myrmidons +myrrh +myrrhic +myrrhs +myrtle +myrtles +myself +mysost +mysosts +mystagog +mystagogs +mysteries +mysterious +mysteriously +mysteriousness +mysteriousnesses +mystery +mystic +mystical +mysticly +mystics +mystification +mystifications +mystified +mystifies +mystify +mystifying +mystique +mystiques +myth +mythic +mythical +mythoi +mythological +mythologies +mythologist +mythologists +mythology +mythos +myths +myxedema +myxedemas +myxocyte +myxocytes +myxoid +myxoma +myxomas +myxomata +na +nab +nabbed +nabbing +nabis +nabob +naboberies +nabobery +nabobess +nabobesses +nabobism +nabobisms +nabobs +nabs +nacelle +nacelles +nacre +nacred +nacreous +nacres +nadir +nadiral +nadirs +nae +naething +naethings +naevi +naevoid +naevus +nag +nagana +naganas +nagged +nagger +naggers +nagging +nags +naiad +naiades +naiads +naif +naifs +nail +nailed +nailer +nailers +nailfold +nailfolds +nailhead +nailheads +nailing +nails +nailset +nailsets +nainsook +nainsooks +naive +naively +naiveness +naivenesses +naiver +naives +naivest +naivete +naivetes +naiveties +naivety +naked +nakeder +nakedest +nakedly +nakedness +nakednesses +naled +naleds +naloxone +naloxones +namable +name +nameable +named +nameless +namelessly +namely +namer +namers +names +namesake +namesakes +naming +nana +nanas +nance +nances +nandin +nandins +nanism +nanisms +nankeen +nankeens +nankin +nankins +nannie +nannies +nanny +nanogram +nanograms +nanowatt +nanowatts +naoi +naos +nap +napalm +napalmed +napalming +napalms +nape +naperies +napery +napes +naphtha +naphthas +naphthol +naphthols +naphthyl +napiform +napkin +napkins +napless +napoleon +napoleons +nappe +napped +napper +nappers +nappes +nappie +nappier +nappies +nappiest +napping +nappy +naps +narc +narcein +narceine +narceines +narceins +narcism +narcisms +narcissi +narcissism +narcissisms +narcissist +narcissists +narcissus +narcissuses +narcist +narcists +narco +narcos +narcose +narcoses +narcosis +narcotic +narcotics +narcs +nard +nardine +nards +nares +narghile +narghiles +nargile +nargileh +nargilehs +nargiles +narial +naric +narine +naris +nark +narked +narking +narks +narrate +narrated +narrater +narraters +narrates +narrating +narration +narrations +narrative +narratives +narrator +narrators +narrow +narrowed +narrower +narrowest +narrowing +narrowly +narrowness +narrownesses +narrows +narthex +narthexes +narwal +narwals +narwhal +narwhale +narwhales +narwhals +nary +nasal +nasalise +nasalised +nasalises +nasalising +nasalities +nasality +nasalize +nasalized +nasalizes +nasalizing +nasally +nasals +nascence +nascences +nascencies +nascency +nascent +nasial +nasion +nasions +nastic +nastier +nastiest +nastily +nastiness +nastinesses +nasturtium +nasturtiums +nasty +natal +natalities +natality +natant +natantly +natation +natations +natatory +nates +nathless +nation +national +nationalism +nationalisms +nationalist +nationalistic +nationalists +nationalities +nationality +nationalization +nationalizations +nationalize +nationalized +nationalizes +nationalizing +nationally +nationals +nationhood +nationhoods +nations +native +natively +natives +nativism +nativisms +nativist +nativists +nativities +nativity +natrium +natriums +natron +natrons +natter +nattered +nattering +natters +nattier +nattiest +nattily +nattiness +nattinesses +natty +natural +naturalism +naturalisms +naturalist +naturalistic +naturalists +naturalization +naturalizations +naturalize +naturalized +naturalizes +naturalizing +naturally +naturalness +naturalnesses +naturals +nature +natured +natures +naught +naughtier +naughtiest +naughtily +naughtiness +naughtinesses +naughts +naughty +naumachies +naumachy +nauplial +nauplii +nauplius +nausea +nauseant +nauseants +nauseas +nauseate +nauseated +nauseates +nauseating +nauseatingly +nauseous +nautch +nautches +nautical +nautically +nautili +nautilus +nautiluses +navaid +navaids +naval +navally +navar +navars +nave +navel +navels +naves +navette +navettes +navicert +navicerts +navies +navigabilities +navigability +navigable +navigably +navigate +navigated +navigates +navigating +navigation +navigations +navigator +navigators +navvies +navvy +navy +nawab +nawabs +nay +nays +nazi +nazified +nazifies +nazify +nazifying +nazis +neap +neaps +near +nearby +neared +nearer +nearest +nearing +nearlier +nearliest +nearly +nearness +nearnesses +nears +nearsighted +nearsightedly +nearsightedness +nearsightednesses +neat +neaten +neatened +neatening +neatens +neater +neatest +neath +neatherd +neatherds +neatly +neatness +neatnesses +neats +neb +nebbish +nebbishes +nebs +nebula +nebulae +nebular +nebulas +nebule +nebulise +nebulised +nebulises +nebulising +nebulize +nebulized +nebulizes +nebulizing +nebulose +nebulous +nebuly +necessaries +necessarily +necessary +necessitate +necessitated +necessitates +necessitating +necessities +necessity +neck +neckband +neckbands +necked +neckerchief +neckerchiefs +necking +neckings +necklace +necklaces +neckless +necklike +neckline +necklines +necks +necktie +neckties +neckwear +neckwears +necrologies +necrology +necromancer +necromancers +necromancies +necromancy +necropsied +necropsies +necropsy +necropsying +necrose +necrosed +necroses +necrosing +necrosis +necrotic +nectar +nectaries +nectarine +nectarines +nectars +nectary +nee +need +needed +needer +needers +needful +needfuls +needier +neediest +needily +needing +needle +needled +needlepoint +needlepoints +needler +needlers +needles +needless +needlessly +needlework +needleworks +needling +needlings +needs +needy +neem +neems +neep +neeps +nefarious +nefariouses +nefariously +negate +negated +negater +negaters +negates +negating +negation +negations +negative +negatived +negatively +negatives +negativing +negaton +negatons +negator +negators +negatron +negatrons +neglect +neglected +neglectful +neglecting +neglects +neglige +negligee +negligees +negligence +negligences +negligent +negligently +negliges +negligible +negotiable +negotiate +negotiated +negotiates +negotiating +negotiation +negotiations +negotiator +negotiators +negro +negroes +negroid +negroids +negus +neguses +neif +neifs +neigh +neighbor +neighbored +neighborhood +neighborhoods +neighboring +neighborliness +neighborlinesses +neighborly +neighbors +neighed +neighing +neighs +neist +neither +nekton +nektonic +nektons +nelson +nelsons +nelumbo +nelumbos +nema +nemas +nematic +nematode +nematodes +nemeses +nemesis +nene +neolith +neoliths +neologic +neologies +neologism +neologisms +neology +neomorph +neomorphs +neomycin +neomycins +neon +neonatal +neonate +neonates +neoned +neons +neophyte +neophytes +neoplasm +neoplasms +neoprene +neoprenes +neotenic +neotenies +neoteny +neoteric +neoterics +neotype +neotypes +nepenthe +nepenthes +nephew +nephews +nephric +nephrism +nephrisms +nephrite +nephrites +nephron +nephrons +nepotic +nepotism +nepotisms +nepotist +nepotists +nereid +nereides +nereids +nereis +neritic +nerol +neroli +nerolis +nerols +nerts +nertz +nervate +nerve +nerved +nerveless +nerves +nervier +nerviest +nervily +nervine +nervines +nerving +nervings +nervous +nervously +nervousness +nervousnesses +nervule +nervules +nervure +nervures +nervy +nescient +nescients +ness +nesses +nest +nested +nester +nesters +nesting +nestle +nestled +nestler +nestlers +nestles +nestlike +nestling +nestlings +nestor +nestors +nests +net +nether +netless +netlike +netop +netops +nets +netsuke +netsukes +nett +nettable +netted +netter +netters +nettier +nettiest +netting +nettings +nettle +nettled +nettler +nettlers +nettles +nettlesome +nettlier +nettliest +nettling +nettly +netts +netty +network +networked +networking +networks +neum +neumatic +neume +neumes +neumic +neums +neural +neuralgia +neuralgias +neuralgic +neurally +neuraxon +neuraxons +neuritic +neuritics +neuritides +neuritis +neuritises +neuroid +neurologic +neurological +neurologically +neurologies +neurologist +neurologists +neurology +neuroma +neuromas +neuromata +neuron +neuronal +neurone +neurones +neuronic +neurons +neuropathies +neuropathy +neuropsych +neurosal +neuroses +neurosis +neurosurgeon +neurosurgeons +neurotic +neurotically +neurotics +neurotoxicities +neurotoxicity +neuston +neustons +neuter +neutered +neutering +neuters +neutral +neutralities +neutrality +neutralization +neutralizations +neutralize +neutralized +neutralizes +neutralizing +neutrals +neutrino +neutrinos +neutron +neutrons +neve +never +nevermore +nevertheless +neves +nevi +nevoid +nevus +new +newborn +newborns +newcomer +newcomers +newel +newels +newer +newest +newfound +newish +newly +newlywed +newlyweds +newmown +newness +newnesses +news +newsboy +newsboys +newscast +newscaster +newscasters +newscasts +newsier +newsies +newsiest +newsless +newsletter +newsmagazine +newsmagazines +newsman +newsmen +newspaper +newspaperman +newspapermen +newspapers +newspeak +newspeaks +newsprint +newsprints +newsreel +newsreels +newsroom +newsrooms +newsstand +newsstands +newsworthy +newsy +newt +newton +newtons +newts +next +nextdoor +nexus +nexuses +ngwee +niacin +niacins +nib +nibbed +nibbing +nibble +nibbled +nibbler +nibblers +nibbles +nibbling +niblick +niblicks +niblike +nibs +nice +nicely +niceness +nicenesses +nicer +nicest +niceties +nicety +niche +niched +niches +niching +nick +nicked +nickel +nickeled +nickelic +nickeling +nickelled +nickelling +nickels +nicker +nickered +nickering +nickers +nicking +nickle +nickles +nicknack +nicknacks +nickname +nicknamed +nicknames +nicknaming +nicks +nicol +nicols +nicotin +nicotine +nicotines +nicotins +nictate +nictated +nictates +nictating +nidal +nide +nided +nidering +niderings +nides +nidget +nidgets +nidi +nidified +nidifies +nidify +nidifying +niding +nidus +niduses +niece +nieces +nielli +niellist +niellists +niello +nielloed +nielloing +niellos +nieve +nieves +niffer +niffered +niffering +niffers +niftier +niftiest +nifty +niggard +niggarded +niggarding +niggardliness +niggardlinesses +niggardly +niggards +niggle +niggled +niggler +nigglers +niggles +niggling +nigglings +nigh +nighed +nigher +nighest +nighing +nighness +nighnesses +nighs +night +nightcap +nightcaps +nightclothes +nightclub +nightclubs +nightfall +nightfalls +nightgown +nightgowns +nightie +nighties +nightingale +nightingales +nightjar +nightjars +nightly +nightmare +nightmares +nightmarish +nights +nightshade +nightshades +nighttime +nighttimes +nighty +nigrified +nigrifies +nigrify +nigrifying +nigrosin +nigrosins +nihil +nihilism +nihilisms +nihilist +nihilists +nihilities +nihility +nihils +nil +nilgai +nilgais +nilgau +nilgaus +nilghai +nilghais +nilghau +nilghaus +nill +nilled +nilling +nills +nils +nim +nimbi +nimble +nimbleness +nimblenesses +nimbler +nimblest +nimbly +nimbus +nimbused +nimbuses +nimieties +nimiety +nimious +nimmed +nimming +nimrod +nimrods +nims +nincompoop +nincompoops +nine +ninebark +ninebarks +ninefold +ninepin +ninepins +nines +nineteen +nineteens +nineteenth +nineteenths +nineties +ninetieth +ninetieths +ninety +ninnies +ninny +ninnyish +ninon +ninons +ninth +ninthly +ninths +niobic +niobium +niobiums +niobous +nip +nipa +nipas +nipped +nipper +nippers +nippier +nippiest +nippily +nipping +nipple +nipples +nippy +nips +nirvana +nirvanas +nirvanic +nisei +niseis +nisi +nisus +nit +nitchie +nitchies +niter +niters +nitid +niton +nitons +nitpick +nitpicked +nitpicking +nitpicks +nitrate +nitrated +nitrates +nitrating +nitrator +nitrators +nitre +nitres +nitric +nitrid +nitride +nitrides +nitrids +nitrified +nitrifies +nitrify +nitrifying +nitril +nitrile +nitriles +nitrils +nitrite +nitrites +nitro +nitrogen +nitrogenous +nitrogens +nitroglycerin +nitroglycerine +nitroglycerines +nitroglycerins +nitrolic +nitros +nitroso +nitrosurea +nitrosyl +nitrosyls +nitrous +nits +nittier +nittiest +nitty +nitwit +nitwits +nival +niveous +nix +nixed +nixes +nixie +nixies +nixing +nixy +nizam +nizamate +nizamates +nizams +no +nob +nobbier +nobbiest +nobbily +nobble +nobbled +nobbler +nobblers +nobbles +nobbling +nobby +nobelium +nobeliums +nobilities +nobility +noble +nobleman +noblemen +nobleness +noblenesses +nobler +nobles +noblesse +noblesses +noblest +nobly +nobodies +nobody +nobs +nocent +nock +nocked +nocking +nocks +noctuid +noctuids +noctule +noctules +noctuoid +nocturn +nocturnal +nocturne +nocturnes +nocturns +nocuous +nod +nodal +nodalities +nodality +nodally +nodded +nodder +nodders +noddies +nodding +noddle +noddled +noddles +noddling +noddy +node +nodes +nodi +nodical +nodose +nodosities +nodosity +nodous +nods +nodular +nodule +nodules +nodulose +nodulous +nodus +noel +noels +noes +noesis +noesises +noetic +nog +nogg +noggin +nogging +noggings +noggins +noggs +nogs +noh +nohes +nohow +noil +noils +noily +noir +noise +noised +noisemaker +noisemakers +noises +noisier +noisiest +noisily +noisiness +noisinesses +noising +noisome +noisy +nolo +nolos +nom +noma +nomad +nomadic +nomadism +nomadisms +nomads +nomarch +nomarchies +nomarchs +nomarchy +nomas +nombles +nombril +nombrils +nome +nomen +nomenclature +nomenclatures +nomes +nomina +nominal +nominally +nominals +nominate +nominated +nominates +nominating +nomination +nominations +nominative +nominatives +nominee +nominees +nomism +nomisms +nomistic +nomogram +nomograms +nomoi +nomologies +nomology +nomos +noms +nona +nonabrasive +nonabsorbent +nonacademic +nonaccredited +nonacid +nonacids +nonaddictive +nonadherence +nonadherences +nonadhesive +nonadjacent +nonadjustable +nonadult +nonadults +nonaffiliated +nonage +nonages +nonaggression +nonaggressions +nonagon +nonagons +nonalcoholic +nonaligned +nonappearance +nonappearances +nonas +nonautomatic +nonbank +nonbasic +nonbeing +nonbeings +nonbeliever +nonbelievers +nonbook +nonbooks +nonbreakable +noncancerous +noncandidate +noncandidates +noncarbonated +noncash +nonce +nonces +nonchalance +nonchalances +nonchalant +nonchalantly +nonchargeable +nonchurchgoer +nonchurchgoers +noncitizen +noncitizens +nonclassical +nonclassified +noncom +noncombat +noncombatant +noncombatants +noncombustible +noncommercial +noncommittal +noncommunicable +noncompliance +noncompliances +noncoms +nonconclusive +nonconductor +nonconductors +nonconflicting +nonconforming +nonconformist +nonconformists +nonconsecutive +nonconstructive +nonconsumable +noncontagious +noncontributing +noncontrollable +noncontroversial +noncorrosive +noncriminal +noncritical +noncumulative +noncurrent +nondairy +nondeductible +nondefense +nondeferrable +nondegradable +nondeliveries +nondelivery +nondemocratic +nondenominational +nondescript +nondestructive +nondiscrimination +nondiscriminations +nondiscriminatory +none +noneducational +nonego +nonegos +nonelastic +nonelect +nonelected +nonelective +nonelectric +nonelectronic +nonemotional +nonempty +nonenforceable +nonenforcement +nonenforcements +nonentities +nonentity +nonentries +nonentry +nonequal +nonequals +nones +nonessential +nonesuch +nonesuches +nonetheless +nonevent +nonevents +nonexchangeable +nonexistence +nonexistences +nonexistent +nonexplosive +nonfarm +nonfat +nonfatal +nonfattening +nonfictional +nonflammable +nonflowering +nonfluid +nonfluids +nonfocal +nonfood +nonfunctional +nongame +nongovernmental +nongraded +nongreen +nonguilt +nonguilts +nonhardy +nonhazardous +nonhereditary +nonhero +nonheroes +nonhuman +nonideal +nonindustrial +nonindustrialized +noninfectious +noninflationary +nonintegrated +nonintellectual +noninterference +nonintoxicating +noninvolvement +noninvolvements +nonionic +nonjuror +nonjurors +nonlegal +nonlethal +nonlife +nonliterary +nonlives +nonliving +nonlocal +nonlocals +nonmagnetic +nonmalignant +nonman +nonmedical +nonmember +nonmembers +nonmen +nonmetal +nonmetallic +nonmetals +nonmilitary +nonmodal +nonmoney +nonmoral +nonmusical +nonnarcotic +nonnative +nonnaval +nonnegotiable +nonobese +nonobjective +nonobservance +nonobservances +nonorthodox +nonowner +nonowners +nonpagan +nonpagans +nonpapal +nonpar +nonparallel +nonparametric +nonpareil +nonpareils +nonparticipant +nonparticipants +nonparticipating +nonpartisan +nonpartisans +nonparty +nonpaying +nonpayment +nonpayments +nonperformance +nonperformances +nonperishable +nonpermanent +nonperson +nonpersons +nonphysical +nonplus +nonplused +nonpluses +nonplusing +nonplussed +nonplusses +nonplussing +nonpoisonous +nonpolar +nonpolitical +nonpolluting +nonporous +nonpregnant +nonproductive +nonprofessional +nonprofit +nonproliferation +nonproliferations +nonpros +nonprossed +nonprosses +nonprossing +nonquota +nonracial +nonradioactive +nonrated +nonrealistic +nonrecoverable +nonrecurring +nonrefillable +nonrefundable +nonregistered +nonreligious +nonrenewable +nonrepresentative +nonresident +nonresidents +nonresponsive +nonrestricted +nonreusable +nonreversible +nonrigid +nonrival +nonrivals +nonroyal +nonrural +nonscheduled +nonscientific +nonscientist +nonscientists +nonsegregated +nonsense +nonsenses +nonsensical +nonsensically +nonsexist +nonsexual +nonsignificant +nonsked +nonskeds +nonskid +nonskier +nonskiers +nonslip +nonsmoker +nonsmokers +nonsmoking +nonsolar +nonsolid +nonsolids +nonspeaking +nonspecialist +nonspecialists +nonspecific +nonstaining +nonstandard +nonstick +nonstop +nonstrategic +nonstriker +nonstrikers +nonstriking +nonstudent +nonstudents +nonsubscriber +nonsuch +nonsuches +nonsugar +nonsugars +nonsuit +nonsuited +nonsuiting +nonsuits +nonsupport +nonsupports +nonsurgical +nonswimmer +nontax +nontaxable +nontaxes +nonteaching +nontechnical +nontidal +nontitle +nontoxic +nontraditional +nontransferable +nontropical +nontrump +nontruth +nontruths +nontypical +nonunion +nonunions +nonuple +nonuples +nonurban +nonuse +nonuser +nonusers +nonuses +nonusing +nonvenomous +nonverbal +nonviolence +nonviolences +nonviolent +nonviral +nonvocal +nonvoter +nonvoters +nonwhite +nonwhites +nonwoody +nonworker +nonworkers +nonwoven +nonzero +noo +noodle +noodled +noodles +noodling +nook +nookies +nooklike +nooks +nooky +noon +noonday +noondays +nooning +noonings +noons +noontide +noontides +noontime +noontimes +noose +noosed +nooser +noosers +nooses +noosing +nopal +nopals +nope +nor +noria +norias +norite +norites +noritic +norland +norlands +norm +normal +normalcies +normalcy +normalities +normality +normalization +normalizations +normalize +normalized +normalizes +normalizing +normally +normals +normed +normless +norms +north +northeast +northeasterly +northeastern +northeasts +norther +northerly +northern +northernmost +northerns +northers +northing +northings +norths +northward +northwards +northwest +northwesterly +northwestern +northwests +nos +nose +nosebag +nosebags +noseband +nosebands +nosebleed +nosebleeds +nosed +nosegay +nosegays +noseless +noselike +noses +nosey +nosh +noshed +nosher +noshers +noshes +noshing +nosier +nosiest +nosily +nosiness +nosinesses +nosing +nosings +nosologies +nosology +nostalgia +nostalgias +nostalgic +nostoc +nostocs +nostril +nostrils +nostrum +nostrums +nosy +not +nota +notabilities +notability +notable +notables +notably +notal +notarial +notaries +notarize +notarized +notarizes +notarizing +notary +notate +notated +notates +notating +notation +notations +notch +notched +notcher +notchers +notches +notching +note +notebook +notebooks +notecase +notecases +noted +notedly +noteless +noter +noters +notes +noteworthy +nothing +nothingness +nothingnesses +nothings +notice +noticeable +noticeably +noticed +notices +noticing +notification +notifications +notified +notifier +notifiers +notifies +notify +notifying +noting +notion +notional +notions +notorieties +notoriety +notorious +notoriously +notornis +notturni +notturno +notum +notwithstanding +nougat +nougats +nought +noughts +noumena +noumenal +noumenon +noun +nounal +nounally +nounless +nouns +nourish +nourished +nourishes +nourishing +nourishment +nourishments +nous +nouses +nova +novae +novalike +novas +novation +novations +novel +novelise +novelised +novelises +novelising +novelist +novelists +novelize +novelized +novelizes +novelizing +novella +novellas +novelle +novelly +novels +novelties +novelty +novena +novenae +novenas +novercal +novice +novices +now +nowadays +noway +noways +nowhere +nowheres +nowise +nows +nowt +nowts +noxious +noyade +noyades +nozzle +nozzles +nth +nu +nuance +nuanced +nuances +nub +nubbier +nubbiest +nubbin +nubbins +nubble +nubbles +nubblier +nubbliest +nubbly +nubby +nubia +nubias +nubile +nubilities +nubility +nubilose +nubilous +nubs +nucellar +nucelli +nucellus +nucha +nuchae +nuchal +nuchals +nucleal +nuclear +nuclease +nucleases +nucleate +nucleated +nucleates +nucleating +nuclei +nuclein +nucleins +nucleole +nucleoles +nucleoli +nucleon +nucleons +nucleus +nucleuses +nuclide +nuclides +nuclidic +nude +nudely +nudeness +nudenesses +nuder +nudes +nudest +nudge +nudged +nudger +nudgers +nudges +nudging +nudicaul +nudie +nudies +nudism +nudisms +nudist +nudists +nudities +nudity +nudnick +nudnicks +nudnik +nudniks +nugatory +nugget +nuggets +nuggety +nuisance +nuisances +nuke +nukes +null +nullah +nullahs +nulled +nullification +nullifications +nullified +nullifies +nullify +nullifying +nulling +nullities +nullity +nulls +numb +numbed +number +numbered +numberer +numberers +numbering +numberless +numbers +numbest +numbfish +numbfishes +numbing +numbles +numbly +numbness +numbnesses +numbs +numen +numeral +numerals +numerary +numerate +numerated +numerates +numerating +numerator +numerators +numeric +numerical +numerically +numerics +numerologies +numerologist +numerologists +numerology +numerous +numina +numinous +numinouses +numismatic +numismatics +numismatist +numismatists +nummary +nummular +numskull +numskulls +nun +nuncio +nuncios +nuncle +nuncles +nunlike +nunneries +nunnery +nunnish +nuns +nuptial +nuptials +nurl +nurled +nurling +nurls +nurse +nursed +nurseries +nursery +nurses +nursing +nursings +nursling +nurslings +nurture +nurtured +nurturer +nurturers +nurtures +nurturing +nus +nut +nutant +nutate +nutated +nutates +nutating +nutation +nutations +nutbrown +nutcracker +nutcrackers +nutgall +nutgalls +nutgrass +nutgrasses +nuthatch +nuthatches +nuthouse +nuthouses +nutlet +nutlets +nutlike +nutmeat +nutmeats +nutmeg +nutmegs +nutpick +nutpicks +nutria +nutrias +nutrient +nutrients +nutriment +nutriments +nutrition +nutritional +nutritions +nutritious +nutritive +nuts +nutsedge +nutsedges +nutshell +nutshells +nutted +nutter +nutters +nuttier +nuttiest +nuttily +nutting +nutty +nutwood +nutwoods +nuzzle +nuzzled +nuzzles +nuzzling +nyala +nyalas +nylghai +nylghais +nylghau +nylghaus +nylon +nylons +nymph +nympha +nymphae +nymphal +nymphean +nymphet +nymphets +nympho +nymphomania +nymphomaniac +nymphomanias +nymphos +nymphs +oaf +oafish +oafishly +oafs +oak +oaken +oaklike +oakmoss +oakmosses +oaks +oakum +oakums +oar +oared +oarfish +oarfishes +oaring +oarless +oarlike +oarlock +oarlocks +oars +oarsman +oarsmen +oases +oasis +oast +oasts +oat +oatcake +oatcakes +oaten +oater +oaters +oath +oaths +oatlike +oatmeal +oatmeals +oats +oaves +obduracies +obduracy +obdurate +obe +obeah +obeahism +obeahisms +obeahs +obedience +obediences +obedient +obediently +obeisance +obeisant +obeli +obelia +obelias +obelise +obelised +obelises +obelising +obelisk +obelisks +obelism +obelisms +obelize +obelized +obelizes +obelizing +obelus +obes +obese +obesely +obesities +obesity +obey +obeyable +obeyed +obeyer +obeyers +obeying +obeys +obfuscate +obfuscated +obfuscates +obfuscating +obfuscation +obfuscations +obi +obia +obias +obiism +obiisms +obis +obit +obits +obituaries +obituary +object +objected +objecting +objection +objectionable +objections +objective +objectively +objectiveness +objectivenesses +objectives +objectivities +objectivity +objector +objectors +objects +oblast +oblasti +oblasts +oblate +oblately +oblates +oblation +oblations +oblatory +obligate +obligated +obligates +obligati +obligating +obligation +obligations +obligato +obligatory +obligatos +oblige +obliged +obligee +obligees +obliger +obligers +obliges +obliging +obligingly +obligor +obligors +oblique +obliqued +obliquely +obliqueness +obliquenesses +obliques +obliquing +obliquities +obliquity +obliterate +obliterated +obliterates +obliterating +obliteration +obliterations +oblivion +oblivions +oblivious +obliviously +obliviousness +obliviousnesses +oblong +oblongly +oblongs +obloquies +obloquy +obnoxious +obnoxiously +obnoxiousness +obnoxiousnesses +oboe +oboes +oboist +oboists +obol +obole +oboles +oboli +obols +obolus +obovate +obovoid +obscene +obscenely +obscener +obscenest +obscenities +obscenity +obscure +obscured +obscurely +obscurer +obscures +obscurest +obscuring +obscurities +obscurity +obsequies +obsequious +obsequiously +obsequiousness +obsequiousnesses +obsequy +observance +observances +observant +observation +observations +observatories +observatory +observe +observed +observer +observers +observes +observing +obsess +obsessed +obsesses +obsessing +obsession +obsessions +obsessive +obsessively +obsessor +obsessors +obsidian +obsidians +obsolescence +obsolescences +obsolescent +obsolete +obsoleted +obsoletes +obsoleting +obstacle +obstacles +obstetrical +obstetrician +obstetricians +obstetrics +obstinacies +obstinacy +obstinate +obstinately +obstreperous +obstreperousness +obstreperousnesses +obstruct +obstructed +obstructing +obstruction +obstructions +obstructive +obstructor +obstructors +obstructs +obtain +obtainable +obtained +obtainer +obtainers +obtaining +obtains +obtect +obtected +obtest +obtested +obtesting +obtests +obtrude +obtruded +obtruder +obtruders +obtrudes +obtruding +obtrusion +obtrusions +obtrusive +obtrusively +obtrusiveness +obtrusivenesses +obtund +obtunded +obtunding +obtunds +obturate +obturated +obturates +obturating +obtuse +obtusely +obtuser +obtusest +obverse +obverses +obvert +obverted +obverting +obverts +obviable +obviate +obviated +obviates +obviating +obviation +obviations +obviator +obviators +obvious +obviously +obviousness +obviousnesses +obvolute +oca +ocarina +ocarinas +ocas +occasion +occasional +occasionally +occasioned +occasioning +occasions +occident +occidental +occidents +occipita +occiput +occiputs +occlude +occluded +occludes +occluding +occlusal +occult +occulted +occulter +occulters +occulting +occultly +occults +occupancies +occupancy +occupant +occupants +occupation +occupational +occupationally +occupations +occupied +occupier +occupiers +occupies +occupy +occupying +occur +occurence +occurences +occurred +occurrence +occurrences +occurring +occurs +ocean +oceanfront +oceanfronts +oceangoing +oceanic +oceanographer +oceanographers +oceanographic +oceanographies +oceanography +oceans +ocellar +ocellate +ocelli +ocellus +oceloid +ocelot +ocelots +ocher +ochered +ochering +ocherous +ochers +ochery +ochone +ochre +ochrea +ochreae +ochred +ochreous +ochres +ochring +ochroid +ochrous +ochry +ocotillo +ocotillos +ocrea +ocreae +ocreate +octad +octadic +octads +octagon +octagonal +octagons +octal +octane +octanes +octangle +octangles +octant +octantal +octants +octarchies +octarchy +octaval +octave +octaves +octavo +octavos +octet +octets +octette +octettes +octonaries +octonary +octopi +octopod +octopodes +octopods +octopus +octopuses +octoroon +octoroons +octroi +octrois +octuple +octupled +octuples +octuplet +octuplets +octuplex +octupling +octuply +octyl +octyls +ocular +ocularly +oculars +oculist +oculists +od +odalisk +odalisks +odd +oddball +oddballs +odder +oddest +oddish +oddities +oddity +oddly +oddment +oddments +oddness +oddnesses +odds +ode +odea +odeon +odeons +odes +odeum +odic +odious +odiously +odiousness +odiousnesses +odium +odiums +odograph +odographs +odometer +odometers +odometries +odometry +odonate +odonates +odontoid +odontoids +odor +odorant +odorants +odored +odorful +odorize +odorized +odorizes +odorizing +odorless +odorous +odors +odour +odourful +odours +ods +odyl +odyle +odyles +odyls +odyssey +odysseys +oe +oecologies +oecology +oedema +oedemas +oedemata +oedipal +oedipean +oeillade +oeillades +oenologies +oenology +oenomel +oenomels +oersted +oersteds +oes +oestrin +oestrins +oestriol +oestriols +oestrone +oestrones +oestrous +oestrum +oestrums +oestrus +oestruses +oeuvre +oeuvres +of +ofay +ofays +off +offal +offals +offbeat +offbeats +offcast +offcasts +offed +offence +offences +offend +offended +offender +offenders +offending +offends +offense +offenses +offensive +offensively +offensiveness +offensivenesses +offensives +offer +offered +offerer +offerers +offering +offerings +offeror +offerors +offers +offertories +offertory +offhand +office +officeholder +officeholders +officer +officered +officering +officers +offices +official +officialdom +officialdoms +officially +officials +officiate +officiated +officiates +officiating +officious +officiously +officiousness +officiousnesses +offing +offings +offish +offishly +offload +offloaded +offloading +offloads +offprint +offprinted +offprinting +offprints +offs +offset +offsets +offsetting +offshoot +offshoots +offshore +offside +offspring +offstage +oft +often +oftener +oftenest +oftentimes +ofter +oftest +ofttimes +ogam +ogams +ogdoad +ogdoads +ogee +ogees +ogham +oghamic +oghamist +oghamists +oghams +ogival +ogive +ogives +ogle +ogled +ogler +oglers +ogles +ogling +ogre +ogreish +ogreism +ogreisms +ogres +ogress +ogresses +ogrish +ogrishly +ogrism +ogrisms +oh +ohed +ohia +ohias +ohing +ohm +ohmage +ohmages +ohmic +ohmmeter +ohmmeters +ohms +oho +ohs +oidia +oidium +oil +oilbird +oilbirds +oilcamp +oilcamps +oilcan +oilcans +oilcloth +oilcloths +oilcup +oilcups +oiled +oiler +oilers +oilhole +oilholes +oilier +oiliest +oilily +oiliness +oilinesses +oiling +oilman +oilmen +oilpaper +oilpapers +oilproof +oils +oilseed +oilseeds +oilskin +oilskins +oilstone +oilstones +oiltight +oilway +oilways +oily +oink +oinked +oinking +oinks +oinologies +oinology +oinomel +oinomels +ointment +ointments +oiticica +oiticicas +oka +okapi +okapis +okas +okay +okayed +okaying +okays +oke +okeh +okehs +okes +okeydoke +okra +okras +old +olden +older +oldest +oldie +oldies +oldish +oldness +oldnesses +olds +oldster +oldsters +oldstyle +oldstyles +oldwife +oldwives +ole +olea +oleander +oleanders +oleaster +oleasters +oleate +oleates +olefin +olefine +olefines +olefinic +olefins +oleic +olein +oleine +oleines +oleins +oleo +oleomargarine +oleomargarines +oleos +oles +oleum +oleums +olfactory +olibanum +olibanums +oligarch +oligarchic +oligarchical +oligarchies +oligarchs +oligarchy +oligomer +oligomers +olio +olios +olivary +olive +olives +olivine +olivines +olivinic +olla +ollas +ologies +ologist +ologists +ology +olympiad +olympiads +om +omasa +omasum +omber +ombers +ombre +ombres +ombudsman +ombudsmen +omega +omegas +omelet +omelets +omelette +omelettes +omen +omened +omening +omens +omenta +omental +omentum +omentums +omer +omers +omicron +omicrons +omikron +omikrons +ominous +ominously +ominousness +ominousnesses +omission +omissions +omissive +omit +omits +omitted +omitting +omniarch +omniarchs +omnibus +omnibuses +omnific +omniform +omnimode +omnipotence +omnipotences +omnipotent +omnipotently +omnipresence +omnipresences +omnipresent +omniscience +omnisciences +omniscient +omnisciently +omnivora +omnivore +omnivores +omnivorous +omnivorously +omnivorousness +omnivorousnesses +omophagies +omophagy +omphali +omphalos +oms +on +onager +onagers +onagri +onanism +onanisms +onanist +onanists +once +onces +oncidium +oncidiums +oncologic +oncologies +oncologist +oncologists +oncology +oncoming +oncomings +ondogram +ondograms +one +onefold +oneiric +oneness +onenesses +onerier +oneriest +onerous +onery +ones +oneself +onetime +ongoing +onion +onions +onium +onlooker +onlookers +only +onomatopoeia +onrush +onrushes +ons +onset +onsets +onshore +onside +onslaught +onslaughts +onstage +ontic +onto +ontogenies +ontogeny +ontologies +ontology +onus +onuses +onward +onwards +onyx +onyxes +oocyst +oocysts +oocyte +oocytes +oodles +oodlins +oogamete +oogametes +oogamies +oogamous +oogamy +oogenies +oogeny +oogonia +oogonial +oogonium +oogoniums +ooh +oohed +oohing +oohs +oolachan +oolachans +oolite +oolites +oolith +ooliths +oolitic +oologic +oologies +oologist +oologists +oology +oolong +oolongs +oomiac +oomiack +oomiacks +oomiacs +oomiak +oomiaks +oomph +oomphs +oophorectomy +oophyte +oophytes +oophytic +oops +oorali +ooralis +oorie +oosperm +oosperms +oosphere +oospheres +oospore +oospores +oosporic +oot +ootheca +oothecae +oothecal +ootid +ootids +oots +ooze +oozed +oozes +oozier +ooziest +oozily +ooziness +oozinesses +oozing +oozy +op +opacified +opacifies +opacify +opacifying +opacities +opacity +opah +opahs +opal +opalesce +opalesced +opalesces +opalescing +opaline +opalines +opals +opaque +opaqued +opaquely +opaqueness +opaquenesses +opaquer +opaques +opaquest +opaquing +ope +oped +open +openable +opened +opener +openers +openest +openhanded +opening +openings +openly +openness +opennesses +opens +openwork +openworks +opera +operable +operably +operand +operands +operant +operants +operas +operate +operated +operates +operatic +operatics +operating +operation +operational +operationally +operations +operative +operator +operators +opercele +operceles +opercula +opercule +opercules +operetta +operettas +operon +operons +operose +opes +ophidian +ophidians +ophite +ophites +ophitic +ophthalmologies +ophthalmologist +ophthalmologists +ophthalmology +opiate +opiated +opiates +opiating +opine +opined +opines +oping +opining +opinion +opinionated +opinions +opium +opiumism +opiumisms +opiums +opossum +opossums +oppidan +oppidans +oppilant +oppilate +oppilated +oppilates +oppilating +opponent +opponents +opportune +opportunely +opportunism +opportunisms +opportunist +opportunistic +opportunists +opportunities +opportunity +oppose +opposed +opposer +opposers +opposes +opposing +opposite +oppositely +oppositeness +oppositenesses +opposites +opposition +oppositions +oppress +oppressed +oppresses +oppressing +oppression +oppressions +oppressive +oppressively +oppressor +oppressors +opprobrious +opprobriously +opprobrium +opprobriums +oppugn +oppugned +oppugner +oppugners +oppugning +oppugns +ops +opsin +opsins +opsonic +opsonified +opsonifies +opsonify +opsonifying +opsonin +opsonins +opsonize +opsonized +opsonizes +opsonizing +opt +optative +optatives +opted +optic +optical +optician +opticians +opticist +opticists +optics +optima +optimal +optimally +optime +optimes +optimise +optimised +optimises +optimising +optimism +optimisms +optimist +optimistic +optimistically +optimists +optimize +optimized +optimizes +optimizing +optimum +optimums +opting +option +optional +optionally +optionals +optioned +optionee +optionees +optioning +options +optometries +optometrist +optometry +opts +opulence +opulences +opulencies +opulency +opulent +opuntia +opuntias +opus +opuscula +opuscule +opuscules +opuses +oquassa +oquassas +or +ora +orach +orache +oraches +oracle +oracles +oracular +oral +oralities +orality +orally +orals +orang +orange +orangeade +orangeades +orangeries +orangery +oranges +orangey +orangier +orangiest +orangish +orangoutan +orangoutans +orangs +orangutan +orangutang +orangutangs +orangutans +orangy +orate +orated +orates +orating +oration +orations +orator +oratorical +oratories +oratorio +oratorios +orators +oratory +oratress +oratresses +oratrices +oratrix +orb +orbed +orbicular +orbing +orbit +orbital +orbitals +orbited +orbiter +orbiters +orbiting +orbits +orbs +orc +orca +orcas +orcein +orceins +orchard +orchardist +orchardists +orchards +orchestra +orchestral +orchestras +orchestrate +orchestrated +orchestrates +orchestrating +orchestration +orchestrations +orchid +orchids +orchiectomy +orchil +orchils +orchis +orchises +orchitic +orchitis +orchitises +orcin +orcinol +orcinols +orcins +orcs +ordain +ordained +ordainer +ordainers +ordaining +ordains +ordeal +ordeals +order +ordered +orderer +orderers +ordering +orderlies +orderliness +orderlinesses +orderly +orders +ordinal +ordinals +ordinance +ordinances +ordinand +ordinands +ordinarier +ordinaries +ordinariest +ordinarily +ordinary +ordinate +ordinates +ordination +ordinations +ordines +ordnance +ordnances +ordo +ordos +ordure +ordures +ore +oread +oreads +orectic +orective +oregano +oreganos +oreide +oreides +ores +orfray +orfrays +organ +organa +organdie +organdies +organdy +organic +organically +organics +organise +organised +organises +organising +organism +organisms +organist +organists +organization +organizational +organizationally +organizations +organize +organized +organizer +organizers +organizes +organizing +organon +organons +organs +organum +organums +organza +organzas +orgasm +orgasmic +orgasms +orgastic +orgeat +orgeats +orgiac +orgic +orgies +orgulous +orgy +oribatid +oribatids +oribi +oribis +oriel +oriels +orient +oriental +orientals +orientation +orientations +oriented +orienting +orients +orifice +orifices +origami +origamis +origan +origans +origanum +origanums +origin +original +originalities +originality +originally +originals +originate +originated +originates +originating +originator +originators +origins +orinasal +orinasals +oriole +orioles +orison +orisons +orle +orles +orlop +orlops +ormer +ormers +ormolu +ormolus +ornament +ornamental +ornamentation +ornamentations +ornamented +ornamenting +ornaments +ornate +ornately +ornateness +ornatenesses +ornerier +orneriest +ornery +ornis +ornithes +ornithic +ornithological +ornithologist +ornithologists +ornithology +orogenic +orogenies +orogeny +oroide +oroides +orologies +orology +orometer +orometers +orotund +orphan +orphanage +orphanages +orphaned +orphaning +orphans +orphic +orphical +orphrey +orphreys +orpiment +orpiments +orpin +orpine +orpines +orpins +orra +orreries +orrery +orrice +orrices +orris +orrises +ors +ort +orthicon +orthicons +ortho +orthodontia +orthodontics +orthodontist +orthodontists +orthodox +orthodoxes +orthodoxies +orthodoxy +orthoepies +orthoepy +orthogonal +orthographic +orthographies +orthography +orthopedic +orthopedics +orthopedist +orthopedists +orthotic +ortolan +ortolans +orts +oryx +oryxes +os +osar +oscillate +oscillated +oscillates +oscillating +oscillation +oscillations +oscine +oscines +oscinine +oscitant +oscula +osculant +oscular +osculate +osculated +osculates +osculating +oscule +oscules +osculum +ose +oses +osier +osiers +osmatic +osmic +osmious +osmium +osmiums +osmol +osmolal +osmolar +osmols +osmose +osmosed +osmoses +osmosing +osmosis +osmotic +osmous +osmund +osmunda +osmundas +osmunds +osnaburg +osnaburgs +osprey +ospreys +ossa +ossein +osseins +osseous +ossia +ossicle +ossicles +ossific +ossified +ossifier +ossifiers +ossifies +ossify +ossifying +ossuaries +ossuary +osteal +osteitic +osteitides +osteitis +ostensible +ostensibly +ostentation +ostentations +ostentatious +ostentatiously +osteoblast +osteoblasts +osteoid +osteoids +osteoma +osteomas +osteomata +osteopath +osteopathic +osteopathies +osteopaths +osteopathy +osteopenia +ostia +ostiaries +ostiary +ostinato +ostinatos +ostiolar +ostiole +ostioles +ostium +ostler +ostlers +ostmark +ostmarks +ostomies +ostomy +ostoses +ostosis +ostosises +ostracism +ostracisms +ostracize +ostracized +ostracizes +ostracizing +ostracod +ostracods +ostrich +ostriches +ostsis +ostsises +otalgia +otalgias +otalgic +otalgies +otalgy +other +others +otherwise +otic +otiose +otiosely +otiosities +otiosity +otitic +otitides +otitis +otocyst +otocysts +otolith +otoliths +otologies +otology +otoscope +otoscopes +otoscopies +otoscopy +ototoxicities +ototoxicity +ottar +ottars +ottava +ottavas +otter +otters +otto +ottoman +ottomans +ottos +ouabain +ouabains +ouch +ouches +oud +ouds +ought +oughted +oughting +oughts +ouistiti +ouistitis +ounce +ounces +ouph +ouphe +ouphes +ouphs +our +ourang +ourangs +ourari +ouraris +ourebi +ourebis +ourie +ours +ourself +ourselves +ousel +ousels +oust +ousted +ouster +ousters +ousting +ousts +out +outact +outacted +outacting +outacts +outadd +outadded +outadding +outadds +outage +outages +outargue +outargued +outargues +outarguing +outask +outasked +outasking +outasks +outate +outback +outbacks +outbake +outbaked +outbakes +outbaking +outbark +outbarked +outbarking +outbarks +outbawl +outbawled +outbawling +outbawls +outbeam +outbeamed +outbeaming +outbeams +outbeg +outbegged +outbegging +outbegs +outbid +outbidden +outbidding +outbids +outblaze +outblazed +outblazes +outblazing +outbleat +outbleated +outbleating +outbleats +outbless +outblessed +outblesses +outblessing +outbloom +outbloomed +outblooming +outblooms +outbluff +outbluffed +outbluffing +outbluffs +outblush +outblushed +outblushes +outblushing +outboard +outboards +outboast +outboasted +outboasting +outboasts +outbound +outbox +outboxed +outboxes +outboxing +outbrag +outbragged +outbragging +outbrags +outbrave +outbraved +outbraves +outbraving +outbreak +outbreaks +outbred +outbreed +outbreeding +outbreeds +outbribe +outbribed +outbribes +outbribing +outbuild +outbuilding +outbuildings +outbuilds +outbuilt +outbullied +outbullies +outbully +outbullying +outburn +outburned +outburning +outburns +outburnt +outburst +outbursts +outby +outbye +outcaper +outcapered +outcapering +outcapers +outcast +outcaste +outcastes +outcasts +outcatch +outcatches +outcatching +outcaught +outcavil +outcaviled +outcaviling +outcavilled +outcavilling +outcavils +outcharm +outcharmed +outcharming +outcharms +outcheat +outcheated +outcheating +outcheats +outchid +outchidden +outchide +outchided +outchides +outchiding +outclass +outclassed +outclasses +outclassing +outclimb +outclimbed +outclimbing +outclimbs +outclomb +outcome +outcomes +outcook +outcooked +outcooking +outcooks +outcrawl +outcrawled +outcrawling +outcrawls +outcried +outcries +outcrop +outcropped +outcropping +outcrops +outcross +outcrossed +outcrosses +outcrossing +outcrow +outcrowed +outcrowing +outcrows +outcry +outcrying +outcurse +outcursed +outcurses +outcursing +outcurve +outcurves +outdance +outdanced +outdances +outdancing +outdare +outdared +outdares +outdaring +outdate +outdated +outdates +outdating +outdid +outdistance +outdistanced +outdistances +outdistancing +outdo +outdodge +outdodged +outdodges +outdodging +outdoer +outdoers +outdoes +outdoing +outdone +outdoor +outdoors +outdrank +outdraw +outdrawing +outdrawn +outdraws +outdream +outdreamed +outdreaming +outdreams +outdreamt +outdress +outdressed +outdresses +outdressing +outdrew +outdrink +outdrinking +outdrinks +outdrive +outdriven +outdrives +outdriving +outdrop +outdropped +outdropping +outdrops +outdrove +outdrunk +outeat +outeaten +outeating +outeats +outecho +outechoed +outechoes +outechoing +outed +outer +outermost +outers +outfable +outfabled +outfables +outfabling +outface +outfaced +outfaces +outfacing +outfall +outfalls +outfast +outfasted +outfasting +outfasts +outfawn +outfawned +outfawning +outfawns +outfeast +outfeasted +outfeasting +outfeasts +outfeel +outfeeling +outfeels +outfelt +outfield +outfielder +outfielders +outfields +outfight +outfighting +outfights +outfind +outfinding +outfinds +outfire +outfired +outfires +outfiring +outfit +outfits +outfitted +outfitter +outfitters +outfitting +outflank +outflanked +outflanking +outflanks +outflew +outflies +outflow +outflowed +outflowing +outflown +outflows +outfly +outflying +outfool +outfooled +outfooling +outfools +outfoot +outfooted +outfooting +outfoots +outfought +outfound +outfox +outfoxed +outfoxes +outfoxing +outfrown +outfrowned +outfrowning +outfrowns +outgain +outgained +outgaining +outgains +outgas +outgassed +outgasses +outgassing +outgave +outgive +outgiven +outgives +outgiving +outglare +outglared +outglares +outglaring +outglow +outglowed +outglowing +outglows +outgnaw +outgnawed +outgnawing +outgnawn +outgnaws +outgo +outgoes +outgoing +outgoings +outgone +outgrew +outgrin +outgrinned +outgrinning +outgrins +outgroup +outgroups +outgrow +outgrowing +outgrown +outgrows +outgrowth +outgrowths +outguess +outguessed +outguesses +outguessing +outguide +outguided +outguides +outguiding +outgun +outgunned +outgunning +outguns +outgush +outgushes +outhaul +outhauls +outhear +outheard +outhearing +outhears +outhit +outhits +outhitting +outhouse +outhouses +outhowl +outhowled +outhowling +outhowls +outhumor +outhumored +outhumoring +outhumors +outing +outings +outjinx +outjinxed +outjinxes +outjinxing +outjump +outjumped +outjumping +outjumps +outjut +outjuts +outjutted +outjutting +outkeep +outkeeping +outkeeps +outkept +outkick +outkicked +outkicking +outkicks +outkiss +outkissed +outkisses +outkissing +outlaid +outlain +outland +outlandish +outlandishly +outlands +outlast +outlasted +outlasting +outlasts +outlaugh +outlaughed +outlaughing +outlaughs +outlaw +outlawed +outlawing +outlawries +outlawry +outlaws +outlay +outlaying +outlays +outleap +outleaped +outleaping +outleaps +outleapt +outlearn +outlearned +outlearning +outlearns +outlearnt +outlet +outlets +outlie +outlier +outliers +outlies +outline +outlined +outlines +outlining +outlive +outlived +outliver +outlivers +outlives +outliving +outlook +outlooks +outlove +outloved +outloves +outloving +outlying +outman +outmanned +outmanning +outmans +outmarch +outmarched +outmarches +outmarching +outmatch +outmatched +outmatches +outmatching +outmode +outmoded +outmodes +outmoding +outmost +outmove +outmoved +outmoves +outmoving +outnumber +outnumbered +outnumbering +outnumbers +outpace +outpaced +outpaces +outpacing +outpaint +outpainted +outpainting +outpaints +outpass +outpassed +outpasses +outpassing +outpatient +outpatients +outpitied +outpities +outpity +outpitying +outplan +outplanned +outplanning +outplans +outplay +outplayed +outplaying +outplays +outplod +outplodded +outplodding +outplods +outpoint +outpointed +outpointing +outpoints +outpoll +outpolled +outpolling +outpolls +outport +outports +outpost +outposts +outpour +outpoured +outpouring +outpours +outpray +outprayed +outpraying +outprays +outpreen +outpreened +outpreening +outpreens +outpress +outpressed +outpresses +outpressing +outprice +outpriced +outprices +outpricing +outpull +outpulled +outpulling +outpulls +outpush +outpushed +outpushes +outpushing +output +outputs +outputted +outputting +outquote +outquoted +outquotes +outquoting +outrace +outraced +outraces +outracing +outrage +outraged +outrages +outraging +outraise +outraised +outraises +outraising +outran +outrance +outrances +outrang +outrange +outranged +outranges +outranging +outrank +outranked +outranking +outranks +outrave +outraved +outraves +outraving +outre +outreach +outreached +outreaches +outreaching +outread +outreading +outreads +outregeous +outregeously +outridden +outride +outrider +outriders +outrides +outriding +outright +outring +outringing +outrings +outrival +outrivaled +outrivaling +outrivalled +outrivalling +outrivals +outroar +outroared +outroaring +outroars +outrock +outrocked +outrocking +outrocks +outrode +outroll +outrolled +outrolling +outrolls +outroot +outrooted +outrooting +outroots +outrun +outrung +outrunning +outruns +outrush +outrushes +outs +outsail +outsailed +outsailing +outsails +outsang +outsat +outsavor +outsavored +outsavoring +outsavors +outsaw +outscold +outscolded +outscolding +outscolds +outscore +outscored +outscores +outscoring +outscorn +outscorned +outscorning +outscorns +outsee +outseeing +outseen +outsees +outsell +outselling +outsells +outsert +outserts +outserve +outserved +outserves +outserving +outset +outsets +outshame +outshamed +outshames +outshaming +outshine +outshined +outshines +outshining +outshone +outshoot +outshooting +outshoots +outshot +outshout +outshouted +outshouting +outshouts +outside +outsider +outsiders +outsides +outsight +outsights +outsin +outsing +outsinging +outsings +outsinned +outsinning +outsins +outsit +outsits +outsitting +outsize +outsized +outsizes +outskirt +outskirts +outsleep +outsleeping +outsleeps +outslept +outsmart +outsmarted +outsmarting +outsmarts +outsmile +outsmiled +outsmiles +outsmiling +outsmoke +outsmoked +outsmokes +outsmoking +outsnore +outsnored +outsnores +outsnoring +outsoar +outsoared +outsoaring +outsoars +outsold +outsole +outsoles +outspan +outspanned +outspanning +outspans +outspeak +outspeaking +outspeaks +outspell +outspelled +outspelling +outspells +outspelt +outspend +outspending +outspends +outspent +outspoke +outspoken +outspokenness +outspokennesses +outstand +outstanding +outstandingly +outstands +outstare +outstared +outstares +outstaring +outstart +outstarted +outstarting +outstarts +outstate +outstated +outstates +outstating +outstay +outstayed +outstaying +outstays +outsteer +outsteered +outsteering +outsteers +outstood +outstrip +outstripped +outstripping +outstrips +outstudied +outstudies +outstudy +outstudying +outstunt +outstunted +outstunting +outstunts +outsulk +outsulked +outsulking +outsulks +outsung +outswam +outsware +outswear +outswearing +outswears +outswim +outswimming +outswims +outswore +outsworn +outswum +outtake +outtakes +outtalk +outtalked +outtalking +outtalks +outtask +outtasked +outtasking +outtasks +outtell +outtelling +outtells +outthank +outthanked +outthanking +outthanks +outthink +outthinking +outthinks +outthought +outthrew +outthrob +outthrobbed +outthrobbing +outthrobs +outthrow +outthrowing +outthrown +outthrows +outtold +outtower +outtowered +outtowering +outtowers +outtrade +outtraded +outtrades +outtrading +outtrick +outtricked +outtricking +outtricks +outtrot +outtrots +outtrotted +outtrotting +outtrump +outtrumped +outtrumping +outtrumps +outturn +outturns +outvalue +outvalued +outvalues +outvaluing +outvaunt +outvaunted +outvaunting +outvaunts +outvoice +outvoiced +outvoices +outvoicing +outvote +outvoted +outvotes +outvoting +outwait +outwaited +outwaiting +outwaits +outwalk +outwalked +outwalking +outwalks +outwar +outward +outwards +outwarred +outwarring +outwars +outwash +outwashes +outwaste +outwasted +outwastes +outwasting +outwatch +outwatched +outwatches +outwatching +outwear +outwearied +outwearies +outwearing +outwears +outweary +outwearying +outweep +outweeping +outweeps +outweigh +outweighed +outweighing +outweighs +outwent +outwept +outwhirl +outwhirled +outwhirling +outwhirls +outwile +outwiled +outwiles +outwiling +outwill +outwilled +outwilling +outwills +outwind +outwinded +outwinding +outwinds +outwish +outwished +outwishes +outwishing +outwit +outwits +outwitted +outwitting +outwore +outwork +outworked +outworking +outworks +outworn +outwrit +outwrite +outwrites +outwriting +outwritten +outwrote +outwrought +outyell +outyelled +outyelling +outyells +outyelp +outyelped +outyelping +outyelps +outyield +outyielded +outyielding +outyields +ouzel +ouzels +ouzo +ouzos +ova +oval +ovalities +ovality +ovally +ovalness +ovalnesses +ovals +ovarial +ovarian +ovaries +ovariole +ovarioles +ovaritides +ovaritis +ovary +ovate +ovately +ovation +ovations +oven +ovenbird +ovenbirds +ovenlike +ovens +ovenware +ovenwares +over +overable +overabundance +overabundances +overabundant +overacceptance +overacceptances +overachiever +overachievers +overact +overacted +overacting +overactive +overacts +overage +overages +overaggresive +overall +overalls +overambitious +overamplified +overamplifies +overamplify +overamplifying +overanalyze +overanalyzed +overanalyzes +overanalyzing +overanxieties +overanxiety +overanxious +overapologetic +overapt +overarch +overarched +overarches +overarching +overarm +overarousal +overarouse +overaroused +overarouses +overarousing +overassertive +overate +overawe +overawed +overawes +overawing +overbake +overbaked +overbakes +overbaking +overbear +overbearing +overbears +overbet +overbets +overbetted +overbetting +overbid +overbidden +overbidding +overbids +overbig +overbite +overbites +overblew +overblow +overblowing +overblown +overblows +overboard +overbold +overbook +overbooked +overbooking +overbooks +overbore +overborn +overborne +overborrow +overborrowed +overborrowing +overborrows +overbought +overbred +overbright +overbroad +overbuild +overbuilded +overbuilding +overbuilds +overburden +overburdened +overburdening +overburdens +overbusy +overbuy +overbuying +overbuys +overcall +overcalled +overcalling +overcalls +overcame +overcapacities +overcapacity +overcapitalize +overcapitalized +overcapitalizes +overcapitalizing +overcareful +overcast +overcasting +overcasts +overcautious +overcharge +overcharged +overcharges +overcharging +overcivilized +overclean +overcoat +overcoats +overcold +overcome +overcomes +overcoming +overcommit +overcommited +overcommiting +overcommits +overcompensate +overcompensated +overcompensates +overcompensating +overcomplicate +overcomplicated +overcomplicates +overcomplicating +overconcern +overconcerned +overconcerning +overconcerns +overconfidence +overconfidences +overconfident +overconscientious +overconsume +overconsumed +overconsumes +overconsuming +overconsumption +overconsumptions +overcontrol +overcontroled +overcontroling +overcontrols +overcook +overcooked +overcooking +overcooks +overcool +overcooled +overcooling +overcools +overcorrect +overcorrected +overcorrecting +overcorrects +overcoy +overcram +overcrammed +overcramming +overcrams +overcritical +overcrop +overcropped +overcropping +overcrops +overcrowd +overcrowded +overcrowding +overcrowds +overdare +overdared +overdares +overdaring +overdear +overdeck +overdecked +overdecking +overdecks +overdecorate +overdecorated +overdecorates +overdecorating +overdepend +overdepended +overdependent +overdepending +overdepends +overdevelop +overdeveloped +overdeveloping +overdevelops +overdid +overdo +overdoer +overdoers +overdoes +overdoing +overdone +overdose +overdosed +overdoses +overdosing +overdraft +overdrafts +overdramatic +overdramatize +overdramatized +overdramatizes +overdramatizing +overdraw +overdrawing +overdrawn +overdraws +overdress +overdressed +overdresses +overdressing +overdrew +overdrink +overdrinks +overdry +overdue +overdye +overdyed +overdyeing +overdyes +overeager +overeasy +overeat +overeaten +overeater +overeaters +overeating +overeats +overed +overeducate +overeducated +overeducates +overeducating +overelaborate +overemotional +overemphases +overemphasis +overemphasize +overemphasized +overemphasizes +overemphasizing +overenergetic +overenthusiastic +overestimate +overestimated +overestimates +overestimating +overexaggerate +overexaggerated +overexaggerates +overexaggerating +overexaggeration +overexaggerations +overexcite +overexcited +overexcitement +overexcitements +overexcites +overexciting +overexercise +overexert +overexertion +overexertions +overexhaust +overexhausted +overexhausting +overexhausts +overexpand +overexpanded +overexpanding +overexpands +overexpansion +overexpansions +overexplain +overexplained +overexplaining +overexplains +overexploit +overexploited +overexploiting +overexploits +overexpose +overexposed +overexposes +overexposing +overextend +overextended +overextending +overextends +overextension +overextensions +overexuberant +overfamiliar +overfar +overfast +overfat +overfatigue +overfatigued +overfatigues +overfatiguing +overfear +overfeared +overfearing +overfears +overfed +overfeed +overfeeding +overfeeds +overfertilize +overfertilized +overfertilizes +overfertilizing +overfill +overfilled +overfilling +overfills +overfish +overfished +overfishes +overfishing +overflew +overflies +overflow +overflowed +overflowing +overflown +overflows +overfly +overflying +overfond +overfoul +overfree +overfull +overgenerous +overgild +overgilded +overgilding +overgilds +overgilt +overgird +overgirded +overgirding +overgirds +overgirt +overglad +overglamorize +overglamorized +overglamorizes +overglamorizing +overgoad +overgoaded +overgoading +overgoads +overgraze +overgrazed +overgrazes +overgrazing +overgrew +overgrow +overgrowing +overgrown +overgrows +overhand +overhanded +overhanding +overhands +overhang +overhanging +overhangs +overhard +overharvest +overharvested +overharvesting +overharvests +overhasty +overhate +overhated +overhates +overhating +overhaul +overhauled +overhauling +overhauls +overhead +overheads +overheap +overheaped +overheaping +overheaps +overhear +overheard +overhearing +overhears +overheat +overheated +overheating +overheats +overheld +overhigh +overhold +overholding +overholds +overholy +overhope +overhoped +overhopes +overhoping +overhot +overhung +overhunt +overhunted +overhunting +overhunts +overidealize +overidealized +overidealizes +overidealizing +overidle +overimaginative +overimbibe +overimbibed +overimbibes +overimbibing +overimpressed +overindebted +overindulge +overindulged +overindulgent +overindulges +overindulging +overinflate +overinflated +overinflates +overinflating +overinfluence +overinfluenced +overinfluences +overinfluencing +overing +overinsistent +overintense +overintensities +overintensity +overinvest +overinvested +overinvesting +overinvests +overinvolve +overinvolved +overinvolves +overinvolving +overjoy +overjoyed +overjoying +overjoys +overjust +overkeen +overkill +overkilled +overkilling +overkills +overkind +overlade +overladed +overladen +overlades +overlading +overlaid +overlain +overland +overlands +overlap +overlapped +overlapping +overlaps +overlarge +overlate +overlax +overlay +overlaying +overlays +overleaf +overleap +overleaped +overleaping +overleaps +overleapt +overlet +overlets +overletting +overlewd +overliberal +overlie +overlies +overlive +overlived +overlives +overliving +overload +overloaded +overloading +overloads +overlong +overlook +overlooked +overlooking +overlooks +overlord +overlorded +overlording +overlords +overloud +overlove +overloved +overloves +overloving +overly +overlying +overman +overmanned +overmanning +overmans +overmany +overmedicate +overmedicated +overmedicates +overmedicating +overmeek +overmelt +overmelted +overmelting +overmelts +overmen +overmild +overmix +overmixed +overmixes +overmixing +overmodest +overmuch +overmuches +overnear +overneat +overnew +overnice +overnight +overobvious +overoptimistic +overorganize +overorganized +overorganizes +overorganizing +overpaid +overparticular +overpass +overpassed +overpasses +overpassing +overpast +overpatriotic +overpay +overpaying +overpayment +overpayments +overpays +overpermissive +overpert +overplay +overplayed +overplaying +overplays +overplied +overplies +overplus +overpluses +overply +overplying +overpopulated +overpossessive +overpower +overpowered +overpowering +overpowers +overprase +overprased +overprases +overprasing +overprescribe +overprescribed +overprescribes +overprescribing +overpressure +overpressures +overprice +overpriced +overprices +overpricing +overprint +overprinted +overprinting +overprints +overprivileged +overproduce +overproduced +overproduces +overproducing +overproduction +overproductions +overpromise +overprotect +overprotected +overprotecting +overprotective +overprotects +overpublicize +overpublicized +overpublicizes +overpublicizing +overqualified +overran +overrank +overrash +overrate +overrated +overrates +overrating +overreach +overreached +overreaches +overreaching +overreact +overreacted +overreacting +overreaction +overreactions +overreacts +overrefine +overregulate +overregulated +overregulates +overregulating +overregulation +overregulations +overreliance +overreliances +overrepresent +overrepresented +overrepresenting +overrepresents +overrespond +overresponded +overresponding +overresponds +overrich +overridden +override +overrides +overriding +overrife +overripe +overrode +overrude +overruff +overruffed +overruffing +overruffs +overrule +overruled +overrules +overruling +overrun +overrunning +overruns +overs +oversad +oversale +oversales +oversalt +oversalted +oversalting +oversalts +oversaturate +oversaturated +oversaturates +oversaturating +oversave +oversaved +oversaves +oversaving +oversaw +oversea +overseas +oversee +overseed +overseeded +overseeding +overseeds +overseeing +overseen +overseer +overseers +oversees +oversell +overselling +oversells +oversensitive +overserious +overset +oversets +oversetting +oversew +oversewed +oversewing +oversewn +oversews +oversexed +overshadow +overshadowed +overshadowing +overshadows +overshoe +overshoes +overshoot +overshooting +overshoots +overshot +overshots +oversick +overside +oversides +oversight +oversights +oversimple +oversimplified +oversimplifies +oversimplify +oversimplifying +oversize +oversizes +oversleep +oversleeping +oversleeps +overslept +overslip +overslipped +overslipping +overslips +overslipt +overslow +oversoak +oversoaked +oversoaking +oversoaks +oversoft +oversold +oversolicitous +oversoon +oversoul +oversouls +overspecialize +overspecialized +overspecializes +overspecializing +overspend +overspended +overspending +overspends +overspin +overspins +overspread +overspreading +overspreads +overstaff +overstaffed +overstaffing +overstaffs +overstate +overstated +overstatement +overstatements +overstates +overstating +overstay +overstayed +overstaying +overstays +overstep +overstepped +overstepping +oversteps +overstimulate +overstimulated +overstimulates +overstimulating +overstir +overstirred +overstirring +overstirs +overstock +overstocked +overstocking +overstocks +overstrain +overstrained +overstraining +overstrains +overstress +overstressed +overstresses +overstressing +overstretch +overstretched +overstretches +overstretching +overstrict +oversubtle +oversup +oversupped +oversupping +oversupplied +oversupplies +oversupply +oversupplying +oversups +oversure +oversuspicious +oversweeten +oversweetened +oversweetening +oversweetens +overt +overtake +overtaken +overtakes +overtaking +overtame +overtart +overtask +overtasked +overtasking +overtasks +overtax +overtaxed +overtaxes +overtaxing +overthin +overthrew +overthrow +overthrown +overthrows +overtighten +overtightened +overtightening +overtightens +overtime +overtimed +overtimes +overtiming +overtire +overtired +overtires +overtiring +overtly +overtoil +overtoiled +overtoiling +overtoils +overtone +overtones +overtook +overtop +overtopped +overtopping +overtops +overtrain +overtrained +overtraining +overtrains +overtreat +overtreated +overtreating +overtreats +overtrim +overtrimmed +overtrimming +overtrims +overture +overtured +overtures +overturing +overturn +overturned +overturning +overturns +overurge +overurged +overurges +overurging +overuse +overused +overuses +overusing +overutilize +overutilized +overutilizes +overutilizing +overvalue +overvalued +overvalues +overvaluing +overview +overviews +overvote +overvoted +overvotes +overvoting +overwarm +overwarmed +overwarming +overwarms +overwary +overweak +overwear +overwearing +overwears +overween +overweened +overweening +overweens +overweight +overwet +overwets +overwetted +overwetting +overwhelm +overwhelmed +overwhelming +overwhelmingly +overwhelms +overwide +overwily +overwind +overwinding +overwinds +overwise +overword +overwords +overwore +overwork +overworked +overworking +overworks +overworn +overwound +overwrite +overwrited +overwrites +overwriting +overwrought +overzeal +overzealous +overzeals +ovibos +ovicidal +ovicide +ovicides +oviducal +oviduct +oviducts +oviform +ovine +ovines +ovipara +oviposit +oviposited +ovipositing +oviposits +ovisac +ovisacs +ovoid +ovoidal +ovoids +ovoli +ovolo +ovolos +ovonic +ovular +ovulary +ovulate +ovulated +ovulates +ovulating +ovulation +ovulations +ovule +ovules +ovum +ow +owe +owed +owes +owing +owl +owlet +owlets +owlish +owlishly +owllike +owls +own +ownable +owned +owner +owners +ownership +ownerships +owning +owns +owse +owsen +ox +oxalate +oxalated +oxalates +oxalating +oxalic +oxalis +oxalises +oxazine +oxazines +oxblood +oxbloods +oxbow +oxbows +oxcart +oxcarts +oxen +oxes +oxeye +oxeyes +oxford +oxfords +oxheart +oxhearts +oxid +oxidable +oxidant +oxidants +oxidase +oxidases +oxidasic +oxidate +oxidated +oxidates +oxidating +oxidation +oxidations +oxide +oxides +oxidic +oxidise +oxidised +oxidiser +oxidisers +oxidises +oxidising +oxidizable +oxidize +oxidized +oxidizer +oxidizers +oxidizes +oxidizing +oxids +oxim +oxime +oximes +oxims +oxlip +oxlips +oxpecker +oxpeckers +oxtail +oxtails +oxter +oxters +oxtongue +oxtongues +oxy +oxyacid +oxyacids +oxygen +oxygenic +oxygens +oxymora +oxymoron +oxyphil +oxyphile +oxyphiles +oxyphils +oxysalt +oxysalts +oxysome +oxysomes +oxytocic +oxytocics +oxytocin +oxytocins +oxytone +oxytones +oy +oyer +oyers +oyes +oyesses +oyez +oyster +oystered +oysterer +oysterers +oystering +oysterings +oysterman +oystermen +oysters +ozone +ozones +ozonic +ozonide +ozonides +ozonise +ozonised +ozonises +ozonising +ozonize +ozonized +ozonizer +ozonizers +ozonizes +ozonizing +ozonous +pa +pabular +pabulum +pabulums +pac +paca +pacas +pace +paced +pacemaker +pacemakers +pacer +pacers +paces +pacha +pachadom +pachadoms +pachalic +pachalics +pachas +pachisi +pachisis +pachouli +pachoulis +pachuco +pachucos +pachyderm +pachyderms +pacific +pacification +pacifications +pacified +pacifier +pacifiers +pacifies +pacifism +pacifisms +pacifist +pacifistic +pacifists +pacify +pacifying +pacing +pack +packable +package +packaged +packager +packagers +packages +packaging +packed +packer +packers +packet +packeted +packeting +packets +packing +packings +packly +packman +packmen +packness +packnesses +packs +packsack +packsacks +packwax +packwaxes +pacs +pact +paction +pactions +pacts +pad +padauk +padauks +padded +paddies +padding +paddings +paddle +paddled +paddler +paddlers +paddles +paddling +paddlings +paddock +paddocked +paddocking +paddocks +paddy +padishah +padishahs +padle +padles +padlock +padlocked +padlocking +padlocks +padnag +padnags +padouk +padouks +padre +padres +padri +padrone +padrones +padroni +pads +padshah +padshahs +paduasoy +paduasoys +paean +paeanism +paeanisms +paeans +paella +paellas +paeon +paeons +pagan +pagandom +pagandoms +paganise +paganised +paganises +paganish +paganising +paganism +paganisms +paganist +paganists +paganize +paganized +paganizes +paganizing +pagans +page +pageant +pageantries +pageantry +pageants +pageboy +pageboys +paged +pages +paginal +paginate +paginated +paginates +paginating +paging +pagod +pagoda +pagodas +pagods +pagurian +pagurians +pagurid +pagurids +pah +pahlavi +pahlavis +paid +paik +paiked +paiking +paiks +pail +pailful +pailfuls +pails +pailsful +pain +painch +painches +pained +painful +painfuller +painfullest +painfully +paining +painkiller +painkillers +painkilling +painless +painlessly +pains +painstaking +painstakingly +paint +paintbrush +paintbrushes +painted +painter +painters +paintier +paintiest +painting +paintings +paints +painty +pair +paired +pairing +pairs +paisa +paisan +paisano +paisanos +paisans +paisas +paise +paisley +paisleys +pajama +pajamas +pal +palabra +palabras +palace +palaced +palaces +paladin +paladins +palais +palatable +palatal +palatals +palate +palates +palatial +palatine +palatines +palaver +palavered +palavering +palavers +palazzi +palazzo +pale +palea +paleae +paleal +paled +paleface +palefaces +palely +paleness +palenesses +paleoclimatologic +paler +pales +palest +palestra +palestrae +palestras +palet +paletot +paletots +palets +palette +palettes +paleways +palewise +palfrey +palfreys +palier +paliest +palikar +palikars +paling +palings +palinode +palinodes +palisade +palisaded +palisades +palisading +palish +pall +palladia +palladic +pallbearer +pallbearers +palled +pallet +pallets +pallette +pallettes +pallia +pallial +palliate +palliated +palliates +palliating +palliation +palliations +palliative +pallid +pallidly +pallier +palliest +palling +pallium +palliums +pallor +pallors +palls +pally +palm +palmar +palmary +palmate +palmated +palmed +palmer +palmers +palmette +palmettes +palmetto +palmettoes +palmettos +palmier +palmiest +palming +palmist +palmistries +palmistry +palmists +palmitin +palmitins +palmlike +palms +palmy +palmyra +palmyras +palomino +palominos +palooka +palookas +palp +palpable +palpably +palpal +palpate +palpated +palpates +palpating +palpation +palpations +palpator +palpators +palpebra +palpebrae +palpi +palpitate +palpitation +palpitations +palps +palpus +pals +palsied +palsies +palsy +palsying +palter +paltered +palterer +palterers +paltering +palters +paltrier +paltriest +paltrily +paltry +paludal +paludism +paludisms +paly +pam +pampa +pampas +pampean +pampeans +pamper +pampered +pamperer +pamperers +pampering +pampero +pamperos +pampers +pamphlet +pamphleteer +pamphleteers +pamphlets +pams +pan +panacea +panacean +panaceas +panache +panaches +panada +panadas +panama +panamas +panatela +panatelas +pancake +pancaked +pancakes +pancaking +panchax +panchaxes +pancreas +pancreases +pancreatic +pancreatitis +panda +pandani +pandanus +pandanuses +pandas +pandect +pandects +pandemic +pandemics +pandemonium +pandemoniums +pander +pandered +panderer +panderers +pandering +panders +pandied +pandies +pandit +pandits +pandoor +pandoors +pandora +pandoras +pandore +pandores +pandour +pandours +pandowdies +pandowdy +pandura +panduras +pandy +pandying +pane +paned +panegyric +panegyrics +panegyrist +panegyrists +panel +paneled +paneling +panelings +panelist +panelists +panelled +panelling +panels +panes +panetela +panetelas +panfish +panfishes +panful +panfuls +pang +panga +pangas +panged +pangen +pangens +panging +pangolin +pangolins +pangs +panhandle +panhandled +panhandler +panhandlers +panhandles +panhandling +panhuman +panic +panicked +panickier +panickiest +panicking +panicky +panicle +panicled +panicles +panics +panicum +panicums +panier +paniers +panmixia +panmixias +panne +panned +pannes +pannier +panniers +pannikin +pannikins +panning +panocha +panochas +panoche +panoches +panoplies +panoply +panoptic +panorama +panoramas +panoramic +panpipe +panpipes +pans +pansies +pansophies +pansophy +pansy +pant +pantaloons +panted +pantheon +pantheons +panther +panthers +pantie +panties +pantile +pantiled +pantiles +panting +pantofle +pantofles +pantomime +pantomimed +pantomimes +pantomiming +pantoum +pantoums +pantries +pantry +pants +pantsuit +pantsuits +panty +panzer +panzers +pap +papa +papacies +papacy +papain +papains +papal +papally +papas +papaw +papaws +papaya +papayan +papayas +paper +paperboard +paperboards +paperboy +paperboys +papered +paperer +paperers +paperhanger +paperhangers +paperhanging +paperhangings +papering +papers +paperweight +paperweights +paperwork +papery +paphian +paphians +papilla +papillae +papillar +papillon +papillons +papist +papistic +papistries +papistry +papists +papoose +papooses +pappi +pappier +pappies +pappiest +pappoose +pappooses +pappose +pappous +pappus +pappy +paprica +papricas +paprika +paprikas +paps +papula +papulae +papulan +papular +papule +papules +papulose +papyral +papyri +papyrian +papyrine +papyrus +papyruses +par +para +parable +parables +parabola +parabolas +parachor +parachors +parachute +parachuted +parachutes +parachuting +parachutist +parachutists +parade +paraded +parader +paraders +parades +paradigm +paradigms +parading +paradise +paradises +parados +paradoses +paradox +paradoxes +paradoxical +paradoxically +paradrop +paradropped +paradropping +paradrops +paraffin +paraffined +paraffinic +paraffining +paraffins +paraform +paraforms +paragoge +paragoges +paragon +paragoned +paragoning +paragons +paragraph +paragraphs +parakeet +parakeets +parallax +parallaxes +parallel +paralleled +paralleling +parallelism +parallelisms +parallelled +parallelling +parallelogram +parallelograms +parallels +paralyse +paralysed +paralyses +paralysing +paralysis +paralytic +paralyze +paralyzed +paralyzes +paralyzing +paralyzingly +parament +paramenta +paraments +parameter +parameters +parametric +paramo +paramos +paramount +paramour +paramours +parang +parangs +paranoea +paranoeas +paranoia +paranoias +paranoid +paranoids +parapet +parapets +paraph +paraphernalia +paraphrase +paraphrased +paraphrases +paraphrasing +paraphs +paraplegia +paraplegias +paraplegic +paraplegics +paraquat +paraquats +paraquet +paraquets +paras +parasang +parasangs +parashah +parashioth +parashoth +parasite +parasites +parasitic +parasitism +parasitisms +parasol +parasols +parasternal +paratrooper +paratroopers +paratroops +paravane +paravanes +parboil +parboiled +parboiling +parboils +parcel +parceled +parceling +parcelled +parcelling +parcels +parcener +parceners +parch +parched +parches +parching +parchment +parchments +pard +pardah +pardahs +pardee +pardi +pardie +pardine +pardner +pardners +pardon +pardonable +pardoned +pardoner +pardoners +pardoning +pardons +pards +pardy +pare +parecism +parecisms +pared +paregoric +paregorics +pareira +pareiras +parent +parentage +parentages +parental +parented +parentheses +parenthesis +parenthetic +parenthetical +parenthetically +parenthood +parenthoods +parenting +parents +parer +parers +pares +pareses +paresis +paresthesia +paretic +paretics +pareu +pareus +pareve +parfait +parfaits +parflesh +parfleshes +parfocal +parge +parged +parges +parget +pargeted +pargeting +pargets +pargetted +pargetting +parging +pargo +pargos +parhelia +parhelic +pariah +pariahs +parian +parians +paries +parietal +parietals +parietes +paring +parings +paris +parises +parish +parishes +parishioner +parishioners +parities +parity +park +parka +parkas +parked +parker +parkers +parking +parkings +parkland +parklands +parklike +parks +parkway +parkways +parlance +parlances +parlando +parlante +parlay +parlayed +parlaying +parlays +parle +parled +parles +parley +parleyed +parleyer +parleyers +parleying +parleys +parliament +parliamentarian +parliamentarians +parliamentary +parliaments +parling +parlor +parlors +parlour +parlours +parlous +parochial +parochialism +parochialisms +parodic +parodied +parodies +parodist +parodists +parodoi +parodos +parody +parodying +parol +parole +paroled +parolee +parolees +paroles +paroling +parols +paronym +paronyms +paroquet +paroquets +parotic +parotid +parotids +parotoid +parotoids +parous +paroxysm +paroxysmal +paroxysms +parquet +parqueted +parqueting +parquetries +parquetry +parquets +parr +parrakeet +parrakeets +parral +parrals +parred +parrel +parrels +parridge +parridges +parried +parries +parring +parritch +parritches +parroket +parrokets +parrot +parroted +parroter +parroters +parroting +parrots +parroty +parrs +parry +parrying +pars +parsable +parse +parsec +parsecs +parsed +parser +parsers +parses +parsimonies +parsimonious +parsimoniously +parsimony +parsing +parsley +parsleys +parsnip +parsnips +parson +parsonage +parsonages +parsonic +parsons +part +partake +partaken +partaker +partakers +partakes +partaking +partan +partans +parted +parterre +parterres +partial +partialities +partiality +partially +partials +partible +participant +participants +participate +participated +participates +participating +participation +participations +participatory +participial +participle +participles +particle +particles +particular +particularly +particulars +partied +parties +parting +partings +partisan +partisans +partisanship +partisanships +partita +partitas +partite +partition +partitions +partizan +partizans +partlet +partlets +partly +partner +partnered +partnering +partners +partnership +partnerships +parton +partons +partook +partridge +partridges +parts +parturition +parturitions +partway +party +partying +parura +paruras +parure +parures +parve +parvenu +parvenue +parvenus +parvis +parvise +parvises +parvolin +parvolins +pas +paschal +paschals +pase +paseo +paseos +pases +pash +pasha +pashadom +pashadoms +pashalic +pashalics +pashalik +pashaliks +pashas +pashed +pashes +pashing +pasquil +pasquils +pass +passable +passably +passade +passades +passado +passadoes +passados +passage +passaged +passages +passageway +passageways +passaging +passant +passband +passbands +passbook +passbooks +passe +passed +passee +passel +passels +passenger +passengers +passer +passerby +passers +passersby +passes +passible +passim +passing +passings +passion +passionate +passionateless +passionately +passions +passive +passively +passives +passivities +passivity +passkey +passkeys +passless +passover +passovers +passport +passports +passus +passuses +password +passwords +past +pasta +pastas +paste +pasteboard +pasteboards +pasted +pastel +pastels +paster +pastern +pasterns +pasters +pastes +pasteurization +pasteurizations +pasteurize +pasteurized +pasteurizer +pasteurizers +pasteurizes +pasteurizing +pasticci +pastiche +pastiches +pastier +pasties +pastiest +pastil +pastille +pastilles +pastils +pastime +pastimes +pastina +pastinas +pasting +pastness +pastnesses +pastor +pastoral +pastorals +pastorate +pastorates +pastored +pastoring +pastors +pastrami +pastramis +pastries +pastromi +pastromis +pastry +pasts +pastural +pasture +pastured +pasturer +pasturers +pastures +pasturing +pasty +pat +pataca +patacas +patagia +patagium +patamar +patamars +patch +patched +patcher +patchers +patches +patchier +patchiest +patchily +patching +patchwork +patchworks +patchy +pate +pated +patella +patellae +patellar +patellas +paten +patencies +patency +patens +patent +patented +patentee +patentees +patenting +patently +patentor +patentors +patents +pater +paternal +paternally +paternities +paternity +paters +pates +path +pathetic +pathetically +pathfinder +pathfinders +pathless +pathogen +pathogens +pathologic +pathological +pathologies +pathologist +pathologists +pathology +pathos +pathoses +paths +pathway +pathways +patience +patiences +patient +patienter +patientest +patiently +patients +patin +patina +patinae +patinas +patine +patined +patines +patining +patins +patio +patios +patly +patness +patnesses +patois +patriarch +patriarchal +patriarchies +patriarchs +patriarchy +patrician +patricians +patricide +patricides +patrimonial +patrimonies +patrimony +patriot +patriotic +patriotically +patriotism +patriotisms +patriots +patrol +patrolled +patrolling +patrolman +patrolmen +patrols +patron +patronage +patronages +patronal +patronize +patronized +patronizes +patronizing +patronly +patrons +patroon +patroons +pats +patsies +patsy +pattamar +pattamars +patted +pattee +patten +pattens +patter +pattered +patterer +patterers +pattering +pattern +patterned +patterning +patterns +patters +pattie +patties +patting +patty +pattypan +pattypans +patulent +patulous +paty +paucities +paucity +paughty +pauldron +pauldrons +paulin +paulins +paunch +paunched +paunches +paunchier +paunchiest +paunchy +pauper +paupered +paupering +pauperism +pauperisms +pauperize +pauperized +pauperizes +pauperizing +paupers +pausal +pause +paused +pauser +pausers +pauses +pausing +pavan +pavane +pavanes +pavans +pave +paved +pavement +pavements +paver +pavers +paves +pavid +pavilion +pavilioned +pavilioning +pavilions +pavin +paving +pavings +pavins +pavior +paviors +paviour +paviours +pavis +pavise +paviser +pavisers +pavises +pavonine +paw +pawed +pawer +pawers +pawing +pawkier +pawkiest +pawkily +pawky +pawl +pawls +pawn +pawnable +pawnage +pawnages +pawnbroker +pawnbrokers +pawned +pawnee +pawnees +pawner +pawners +pawning +pawnor +pawnors +pawns +pawnshop +pawnshops +pawpaw +pawpaws +paws +pax +paxes +paxwax +paxwaxes +pay +payable +payably +paycheck +paychecks +payday +paydays +payed +payee +payees +payer +payers +paying +payload +payloads +payment +payments +paynim +paynims +payoff +payoffs +payola +payolas +payor +payors +payroll +payrolls +pays +pe +pea +peace +peaceable +peaceably +peaced +peaceful +peacefuller +peacefullest +peacefully +peacekeeper +peacekeepers +peacekeeping +peacekeepings +peacemaker +peacemakers +peaces +peacetime +peacetimes +peach +peached +peacher +peachers +peaches +peachier +peachiest +peaching +peachy +peacing +peacoat +peacoats +peacock +peacocked +peacockier +peacockiest +peacocking +peacocks +peacocky +peafowl +peafowls +peag +peage +peages +peags +peahen +peahens +peak +peaked +peakier +peakiest +peaking +peakish +peakless +peaklike +peaks +peaky +peal +pealed +pealike +pealing +peals +pean +peans +peanut +peanuts +pear +pearl +pearlash +pearlashes +pearled +pearler +pearlers +pearlier +pearliest +pearling +pearlite +pearlites +pearls +pearly +pearmain +pearmains +pears +peart +pearter +peartest +peartly +peas +peasant +peasantries +peasantry +peasants +peascod +peascods +pease +peasecod +peasecods +peasen +peases +peat +peatier +peatiest +peats +peaty +peavey +peaveys +peavies +peavy +pebble +pebbled +pebbles +pebblier +pebbliest +pebbling +pebbly +pecan +pecans +peccable +peccadillo +peccadilloes +peccadillos +peccancies +peccancy +peccant +peccaries +peccary +peccavi +peccavis +pech +pechan +pechans +peched +peching +pechs +peck +pecked +pecker +peckers +peckier +peckiest +pecking +pecks +pecky +pectase +pectases +pectate +pectates +pecten +pectens +pectic +pectin +pectines +pectins +pectize +pectized +pectizes +pectizing +pectoral +pectorals +peculatation +peculatations +peculate +peculated +peculates +peculating +peculia +peculiar +peculiarities +peculiarity +peculiarly +peculiars +peculium +pecuniary +ped +pedagog +pedagogic +pedagogical +pedagogies +pedagogs +pedagogue +pedagogues +pedagogy +pedal +pedaled +pedalfer +pedalfers +pedalier +pedaliers +pedaling +pedalled +pedalling +pedals +pedant +pedantic +pedantries +pedantry +pedants +pedate +pedately +peddle +peddled +peddler +peddleries +peddlers +peddlery +peddles +peddling +pederast +pederasts +pederasty +pedes +pedestal +pedestaled +pedestaling +pedestalled +pedestalling +pedestals +pedestrian +pedestrians +pediatric +pediatrician +pediatricians +pediatrics +pedicab +pedicabs +pedicel +pedicels +pedicle +pedicled +pedicles +pedicure +pedicured +pedicures +pedicuring +pediform +pedigree +pedigrees +pediment +pediments +pedipalp +pedipalps +pedlar +pedlaries +pedlars +pedlary +pedler +pedlers +pedocal +pedocals +pedologies +pedology +pedro +pedros +peds +peduncle +peduncles +pee +peebeen +peebeens +peed +peeing +peek +peekaboo +peekaboos +peeked +peeking +peeks +peel +peelable +peeled +peeler +peelers +peeling +peelings +peels +peen +peened +peening +peens +peep +peeped +peeper +peepers +peephole +peepholes +peeping +peeps +peepshow +peepshows +peepul +peepuls +peer +peerage +peerages +peered +peeress +peeresses +peerie +peeries +peering +peerless +peers +peery +pees +peesweep +peesweeps +peetweet +peetweets +peeve +peeved +peeves +peeving +peevish +peevishly +peevishness +peevishnesses +peewee +peewees +peewit +peewits +peg +pegboard +pegboards +pegbox +pegboxes +pegged +pegging +pegless +peglike +pegs +peignoir +peignoirs +pein +peined +peining +peins +peise +peised +peises +peising +pekan +pekans +peke +pekes +pekin +pekins +pekoe +pekoes +pelage +pelages +pelagial +pelagic +pele +pelerine +pelerines +peles +pelf +pelfs +pelican +pelicans +pelisse +pelisses +pelite +pelites +pelitic +pellagra +pellagras +pellet +pelletal +pelleted +pelleting +pelletize +pelletized +pelletizes +pelletizing +pellets +pellicle +pellicles +pellmell +pellmells +pellucid +pelon +peloria +pelorian +pelorias +peloric +pelorus +peloruses +pelota +pelotas +pelt +peltast +peltasts +peltate +pelted +pelter +pelters +pelting +peltries +peltry +pelts +pelves +pelvic +pelvics +pelvis +pelvises +pembina +pembinas +pemican +pemicans +pemmican +pemmicans +pemoline +pemolines +pemphix +pemphixes +pen +penal +penalise +penalised +penalises +penalising +penalities +penality +penalize +penalized +penalizes +penalizing +penally +penalties +penalty +penance +penanced +penances +penancing +penang +penangs +penates +pence +pencel +pencels +penchant +penchants +pencil +penciled +penciler +pencilers +penciling +pencilled +pencilling +pencils +pend +pendaflex +pendant +pendants +pended +pendencies +pendency +pendent +pendents +pending +pends +pendular +pendulous +pendulum +pendulums +penes +penetrable +penetration +penetrations +penetrative +pengo +pengos +penguin +penguins +penial +penicil +penicillin +penicillins +penicils +penile +peninsula +peninsular +peninsulas +penis +penises +penitence +penitences +penitent +penitential +penitentiaries +penitentiary +penitents +penknife +penknives +penlight +penlights +penlite +penlites +penman +penmanship +penmanships +penmen +penna +pennae +penname +pennames +pennant +pennants +pennate +pennated +penned +penner +penners +penni +pennia +pennies +penniless +pennine +pennines +penning +pennis +pennon +pennoned +pennons +pennsylvania +penny +penoche +penoches +penologies +penology +penoncel +penoncels +penpoint +penpoints +pens +pensee +pensees +pensil +pensile +pensils +pension +pensione +pensioned +pensioner +pensioners +pensiones +pensioning +pensions +pensive +pensively +penster +pensters +penstock +penstocks +pent +pentacle +pentacles +pentad +pentads +pentagon +pentagonal +pentagons +pentagram +pentagrams +pentameter +pentameters +pentane +pentanes +pentarch +pentarchs +penthouse +penthouses +pentomic +pentosan +pentosans +pentose +pentoses +pentyl +pentyls +penuche +penuches +penuchi +penuchis +penuchle +penuchles +penuckle +penuckles +penult +penults +penumbra +penumbrae +penumbras +penuries +penurious +penury +peon +peonage +peonages +peones +peonies +peonism +peonisms +peons +peony +people +peopled +peopler +peoplers +peoples +peopling +pep +peperoni +peperonis +pepla +peplos +peploses +peplum +peplumed +peplums +peplus +pepluses +pepo +peponida +peponidas +peponium +peponiums +pepos +pepped +pepper +peppercorn +peppercorns +peppered +pepperer +pepperers +peppering +peppermint +peppermints +peppers +peppery +peppier +peppiest +peppily +pepping +peppy +peps +pepsin +pepsine +pepsines +pepsins +peptic +peptics +peptid +peptide +peptides +peptidic +peptids +peptize +peptized +peptizer +peptizers +peptizes +peptizing +peptone +peptones +peptonic +per +peracid +peracids +perambulate +perambulated +perambulates +perambulating +perambulation +perambulations +percale +percales +perceivable +perceive +perceived +perceives +perceiving +percent +percentage +percentages +percentile +percentiles +percents +percept +perceptible +perceptibly +perception +perceptions +perceptive +perceptively +percepts +perch +perched +percher +perchers +perches +perching +percoid +percoids +percolate +percolated +percolates +percolating +percolator +percolators +percuss +percussed +percusses +percussing +percussion +percussions +perdu +perdue +perdues +perdus +perdy +pere +peregrin +peregrins +peremptorily +peremptory +perennial +perennially +perennials +peres +perfect +perfecta +perfectas +perfected +perfecter +perfectest +perfectibilities +perfectibility +perfectible +perfecting +perfection +perfectionist +perfectionists +perfections +perfectly +perfectness +perfectnesses +perfecto +perfectos +perfects +perfidies +perfidious +perfidiously +perfidy +perforate +perforated +perforates +perforating +perforation +perforations +perforce +perform +performance +performances +performed +performer +performers +performing +performs +perfume +perfumed +perfumer +perfumers +perfumes +perfuming +perfunctory +perfuse +perfused +perfuses +perfusing +pergola +pergolas +perhaps +perhapses +peri +perianth +perianths +periapt +periapts +periblem +periblems +pericarp +pericarps +pericopae +pericope +pericopes +periderm +periderms +peridia +peridial +peridium +peridot +peridots +perigeal +perigean +perigee +perigees +perigon +perigons +perigynies +perigyny +peril +periled +periling +perilla +perillas +perilled +perilling +perilous +perilously +perils +perilune +perilunes +perimeter +perimeters +perinea +perineal +perineum +period +periodic +periodical +periodically +periodicals +periodid +periodids +periods +periotic +peripatetic +peripeties +peripety +peripheral +peripheries +periphery +peripter +peripters +perique +periques +peris +perisarc +perisarcs +periscope +periscopes +perish +perishable +perishables +perished +perishes +perishing +periwig +periwigs +perjure +perjured +perjurer +perjurers +perjures +perjuries +perjuring +perjury +perk +perked +perkier +perkiest +perkily +perking +perkish +perks +perky +perlite +perlites +perlitic +perm +permanence +permanences +permanencies +permanency +permanent +permanently +permanents +permeability +permeable +permease +permeases +permeate +permeated +permeates +permeating +permeation +permeations +permissible +permission +permissions +permissive +permissiveness +permissivenesses +permit +permits +permitted +permitting +perms +permute +permuted +permutes +permuting +pernicious +perniciously +peroneal +peroral +perorate +perorated +perorates +perorating +peroxid +peroxide +peroxided +peroxides +peroxiding +peroxids +perpend +perpended +perpendicular +perpendicularities +perpendicularity +perpendicularly +perpendiculars +perpending +perpends +perpent +perpents +perpetrate +perpetrated +perpetrates +perpetrating +perpetration +perpetrations +perpetrator +perpetrators +perpetual +perpetually +perpetuate +perpetuated +perpetuates +perpetuating +perpetuation +perpetuations +perpetuities +perpetuity +perplex +perplexed +perplexes +perplexing +perplexities +perplexity +perquisite +perquisites +perries +perron +perrons +perry +persalt +persalts +perse +persecute +persecuted +persecutes +persecuting +persecution +persecutions +persecutor +persecutors +perses +perseverance +perseverances +persevere +persevered +perseveres +persevering +persist +persisted +persistence +persistences +persistencies +persistency +persistent +persistently +persisting +persists +person +persona +personable +personae +personage +personages +personal +personalities +personality +personalize +personalized +personalizes +personalizing +personally +personals +personas +personification +personifications +personifies +personify +personnel +persons +perspective +perspectives +perspicacious +perspicacities +perspicacity +perspiration +perspirations +perspire +perspired +perspires +perspiring +perspiry +persuade +persuaded +persuades +persuading +persuasion +persuasions +persuasive +persuasively +persuasiveness +persuasivenesses +pert +pertain +pertained +pertaining +pertains +perter +pertest +pertinacious +pertinacities +pertinacity +pertinence +pertinences +pertinent +pertly +pertness +pertnesses +perturb +perturbation +perturbations +perturbed +perturbing +perturbs +peruke +perukes +perusal +perusals +peruse +perused +peruser +perusers +peruses +perusing +pervade +pervaded +pervader +pervaders +pervades +pervading +pervasive +perverse +perversely +perverseness +perversenesses +perversion +perversions +perversities +perversity +pervert +perverted +perverting +perverts +pervious +pes +pesade +pesades +peseta +pesetas +pesewa +pesewas +peskier +peskiest +peskily +pesky +peso +pesos +pessaries +pessary +pessimism +pessimisms +pessimist +pessimistic +pessimists +pest +pester +pestered +pesterer +pesterers +pestering +pesters +pesthole +pestholes +pestilence +pestilences +pestilent +pestle +pestled +pestles +pestling +pests +pet +petal +petaled +petaline +petalled +petalodies +petalody +petaloid +petalous +petals +petard +petards +petasos +petasoses +petasus +petasuses +petcock +petcocks +petechia +petechiae +peter +petered +petering +peters +petiolar +petiole +petioled +petioles +petit +petite +petites +petition +petitioned +petitioner +petitioners +petitioning +petitions +petrel +petrels +petri +petrifaction +petrifactions +petrified +petrifies +petrify +petrifying +petrol +petroleum +petroleums +petrolic +petrols +petronel +petronels +petrosal +petrous +pets +petted +pettedly +petter +petters +petti +petticoat +petticoats +pettier +pettiest +pettifog +pettifogged +pettifogging +pettifogs +pettily +pettiness +pettinesses +petting +pettish +pettle +pettled +pettles +pettling +petto +petty +petulance +petulances +petulant +petulantly +petunia +petunias +petuntse +petuntses +petuntze +petuntzes +pew +pewee +pewees +pewit +pewits +pews +pewter +pewterer +pewterers +pewters +peyote +peyotes +peyotl +peyotls +peytral +peytrals +peytrel +peytrels +pfennig +pfennige +pfennigs +phaeton +phaetons +phage +phages +phalange +phalanges +phalanx +phalanxes +phalli +phallic +phallics +phallism +phallisms +phallist +phallists +phallus +phalluses +phantasied +phantasies +phantasm +phantasms +phantast +phantasts +phantasy +phantasying +phantom +phantoms +pharaoh +pharaohs +pharisaic +pharisee +pharisees +pharmaceutical +pharmaceuticals +pharmacies +pharmacist +pharmacologic +pharmacological +pharmacologist +pharmacologists +pharmacology +pharmacy +pharos +pharoses +pharyngeal +pharynges +pharynx +pharynxes +phase +phaseal +phased +phaseout +phaseouts +phases +phasic +phasing +phasis +phasmid +phasmids +phat +phatic +pheasant +pheasants +phellem +phellems +phelonia +phenazin +phenazins +phenetic +phenetol +phenetols +phenix +phenixes +phenol +phenolic +phenolics +phenols +phenom +phenomena +phenomenal +phenomenon +phenomenons +phenoms +phenyl +phenylic +phenyls +phew +phi +phial +phials +philabeg +philabegs +philadelphia +philander +philandered +philanderer +philanderers +philandering +philanders +philanthropic +philanthropies +philanthropist +philanthropists +philanthropy +philatelies +philatelist +philatelists +philately +philharmonic +philibeg +philibegs +philistine +philistines +philodendron +philodendrons +philomel +philomels +philosopher +philosophers +philosophic +philosophical +philosophically +philosophies +philosophize +philosophized +philosophizes +philosophizing +philosophy +philter +philtered +philtering +philters +philtre +philtred +philtres +philtring +phimoses +phimosis +phimotic +phis +phiz +phizes +phlebitis +phlegm +phlegmatic +phlegmier +phlegmiest +phlegms +phlegmy +phloem +phloems +phlox +phloxes +phobia +phobias +phobic +phocine +phoebe +phoebes +phoenix +phoenixes +phon +phonal +phonate +phonated +phonates +phonating +phone +phoned +phoneme +phonemes +phonemic +phones +phonetic +phonetician +phoneticians +phonetics +phoney +phoneys +phonic +phonics +phonier +phonies +phoniest +phonily +phoning +phono +phonograph +phonographally +phonographic +phonographs +phonon +phonons +phonos +phons +phony +phooey +phorate +phorates +phosgene +phosgenes +phosphatase +phosphate +phosphates +phosphatic +phosphid +phosphids +phosphin +phosphins +phosphor +phosphorescence +phosphorescences +phosphorescent +phosphorescently +phosphoric +phosphorous +phosphors +phosphorus +phot +photic +photics +photo +photoed +photoelectric +photoelectrically +photog +photogenic +photograph +photographally +photographed +photographer +photographers +photographic +photographies +photographing +photographs +photography +photogs +photoing +photomap +photomapped +photomapping +photomaps +photon +photonic +photons +photopia +photopias +photopic +photos +photoset +photosets +photosetting +photosynthesis +photosynthesises +photosynthesize +photosynthesized +photosynthesizes +photosynthesizing +photosynthetic +phots +phpht +phrasal +phrase +phrased +phraseologies +phraseology +phrases +phrasing +phrasings +phratral +phratric +phratries +phratry +phreatic +phrenic +phrensied +phrensies +phrensy +phrensying +pht +phthalic +phthalin +phthalins +phthises +phthisic +phthisics +phthisis +phyla +phylae +phylar +phylaxis +phylaxises +phyle +phyleses +phylesis +phylesises +phyletic +phylic +phyllaries +phyllary +phyllite +phyllites +phyllode +phyllodes +phylloid +phylloids +phyllome +phyllomes +phylon +phylum +physes +physic +physical +physically +physicals +physician +physicians +physicist +physicists +physicked +physicking +physics +physiognomies +physiognomy +physiologic +physiological +physiologies +physiologist +physiologists +physiology +physiotherapies +physiotherapy +physique +physiques +physis +phytane +phytanes +phytin +phytins +phytoid +phyton +phytonic +phytons +pi +pia +piacular +piaffe +piaffed +piaffer +piaffers +piaffes +piaffing +pial +pian +pianic +pianism +pianisms +pianist +pianists +piano +pianos +pians +pias +piasaba +piasabas +piasava +piasavas +piassaba +piassabas +piassava +piassavas +piaster +piasters +piastre +piastres +piazza +piazzas +piazze +pibroch +pibrochs +pic +pica +picacho +picachos +picador +picadores +picadors +pical +picara +picaras +picaro +picaroon +picarooned +picarooning +picaroons +picaros +picas +picayune +picayunes +piccolo +piccolos +pice +piceous +pick +pickadil +pickadils +pickax +pickaxe +pickaxed +pickaxes +pickaxing +picked +pickeer +pickeered +pickeering +pickeers +picker +pickerel +pickerels +pickers +picket +picketed +picketer +picketers +picketing +pickets +pickier +pickiest +picking +pickings +pickle +pickled +pickles +pickling +picklock +picklocks +pickoff +pickoffs +pickpocket +pickpockets +picks +pickup +pickups +pickwick +pickwicks +picky +picloram +piclorams +picnic +picnicked +picnicking +picnicky +picnics +picogram +picograms +picolin +picoline +picolines +picolins +picot +picoted +picotee +picotees +picoting +picots +picquet +picquets +picrate +picrated +picrates +picric +picrite +picrites +pics +pictorial +picture +pictured +pictures +picturesque +picturesqueness +picturesquenesses +picturing +picul +piculs +piddle +piddled +piddler +piddlers +piddles +piddling +piddock +piddocks +pidgin +pidgins +pie +piebald +piebalds +piece +pieced +piecemeal +piecer +piecers +pieces +piecing +piecings +piecrust +piecrusts +pied +piedfort +piedforts +piedmont +piedmonts +piefort +pieforts +pieing +pieplant +pieplants +pier +pierce +pierced +piercer +piercers +pierces +piercing +pierrot +pierrots +piers +pies +pieta +pietas +pieties +pietism +pietisms +pietist +pietists +piety +piffle +piffled +piffles +piffling +pig +pigboat +pigboats +pigeon +pigeonhole +pigeonholed +pigeonholes +pigeonholing +pigeons +pigfish +pigfishes +pigged +piggeries +piggery +piggie +piggies +piggin +pigging +piggins +piggish +piggy +piggyback +pigheaded +piglet +piglets +pigment +pigmentation +pigmentations +pigmented +pigmenting +pigments +pigmies +pigmy +pignora +pignus +pignut +pignuts +pigpen +pigpens +pigs +pigskin +pigskins +pigsney +pigsneys +pigstick +pigsticked +pigsticking +pigsticks +pigsties +pigsty +pigtail +pigtails +pigweed +pigweeds +piing +pika +pikake +pikakes +pikas +pike +piked +pikeman +pikemen +piker +pikers +pikes +pikestaff +pikestaves +piking +pilaf +pilaff +pilaffs +pilafs +pilar +pilaster +pilasters +pilau +pilaus +pilaw +pilaws +pilchard +pilchards +pile +pilea +pileate +pileated +piled +pilei +pileous +piles +pileum +pileup +pileups +pileus +pilewort +pileworts +pilfer +pilfered +pilferer +pilferers +pilfering +pilfers +pilgrim +pilgrimage +pilgrimages +pilgrims +pili +piliform +piling +pilings +pilis +pill +pillage +pillaged +pillager +pillagers +pillages +pillaging +pillar +pillared +pillaring +pillars +pillbox +pillboxes +pilled +pilling +pillion +pillions +pilloried +pillories +pillory +pillorying +pillow +pillowcase +pillowcases +pillowed +pillowing +pillows +pillowy +pills +pilose +pilosities +pilosity +pilot +pilotage +pilotages +piloted +piloting +pilotings +pilotless +pilots +pilous +pilsener +pilseners +pilsner +pilsners +pilular +pilule +pilules +pilus +pily +pima +pimas +pimento +pimentos +pimiento +pimientos +pimp +pimped +pimping +pimple +pimpled +pimples +pimplier +pimpliest +pimply +pimps +pin +pina +pinafore +pinafores +pinang +pinangs +pinas +pinaster +pinasters +pinata +pinatas +pinball +pinballs +pinbone +pinbones +pincer +pincers +pinch +pinchbug +pinchbugs +pincheck +pinchecks +pinched +pincher +pinchers +pinches +pinchhitter +pinchhitters +pinching +pincushion +pincushions +pinder +pinders +pindling +pine +pineal +pineapple +pineapples +pinecone +pinecones +pined +pinelike +pinene +pinenes +pineries +pinery +pines +pinesap +pinesaps +pineta +pinetum +pinewood +pinewoods +piney +pinfeather +pinfeathers +pinfish +pinfishes +pinfold +pinfolded +pinfolding +pinfolds +ping +pinged +pinger +pingers +pinging +pingo +pingos +pingrass +pingrasses +pings +pinguid +pinhead +pinheads +pinhole +pinholes +pinier +piniest +pining +pinion +pinioned +pinioning +pinions +pinite +pinites +pink +pinked +pinker +pinkest +pinkeye +pinkeyes +pinkie +pinkies +pinking +pinkings +pinkish +pinkly +pinkness +pinknesses +pinko +pinkoes +pinkos +pinkroot +pinkroots +pinks +pinky +pinna +pinnace +pinnaces +pinnacle +pinnacled +pinnacles +pinnacling +pinnae +pinnal +pinnas +pinnate +pinnated +pinned +pinner +pinners +pinning +pinniped +pinnipeds +pinnula +pinnulae +pinnular +pinnule +pinnules +pinochle +pinochles +pinocle +pinocles +pinole +pinoles +pinon +pinones +pinons +pinpoint +pinpointed +pinpointing +pinpoints +pinprick +pinpricked +pinpricking +pinpricks +pins +pinscher +pinschers +pint +pinta +pintada +pintadas +pintado +pintadoes +pintados +pintail +pintails +pintano +pintanos +pintas +pintle +pintles +pinto +pintoes +pintos +pints +pintsize +pinup +pinups +pinwale +pinwales +pinweed +pinweeds +pinwheel +pinwheels +pinwork +pinworks +pinworm +pinworms +piny +pinyon +pinyons +piolet +piolets +pion +pioneer +pioneered +pioneering +pioneers +pionic +pions +piosities +piosity +pious +piously +pip +pipage +pipages +pipal +pipals +pipe +pipeage +pipeages +piped +pipefish +pipefishes +pipeful +pipefuls +pipeless +pipelike +pipeline +pipelined +pipelines +pipelining +piper +piperine +piperines +pipers +pipes +pipestem +pipestems +pipet +pipets +pipette +pipetted +pipettes +pipetting +pipier +pipiest +piping +pipingly +pipings +pipit +pipits +pipkin +pipkins +pipped +pippin +pipping +pippins +pips +pipy +piquancies +piquancy +piquant +pique +piqued +piques +piquet +piquets +piquing +piracies +piracy +piragua +piraguas +pirana +piranas +piranha +piranhas +pirarucu +pirarucus +pirate +pirated +pirates +piratic +piratical +pirating +piraya +pirayas +pirn +pirns +pirog +pirogen +piroghi +pirogi +pirogue +pirogues +pirojki +piroque +piroques +piroshki +pirouette +pirouetted +pirouettes +pirouetting +pirozhki +pirozhok +pis +piscaries +piscary +piscator +piscators +piscina +piscinae +piscinal +piscinas +piscine +pish +pished +pishes +pishing +pisiform +pisiforms +pismire +pismires +pismo +pisolite +pisolites +piss +pissant +pissants +pissed +pisses +pissing +pissoir +pissoirs +pistache +pistaches +pistachio +pistil +pistillate +pistils +pistol +pistole +pistoled +pistoles +pistoling +pistolled +pistolling +pistols +piston +pistons +pit +pita +pitapat +pitapats +pitapatted +pitapatting +pitas +pitch +pitchblende +pitchblendes +pitched +pitcher +pitchers +pitches +pitchfork +pitchforks +pitchier +pitchiest +pitchily +pitching +pitchman +pitchmen +pitchout +pitchouts +pitchy +piteous +piteously +pitfall +pitfalls +pith +pithead +pitheads +pithed +pithier +pithiest +pithily +pithing +pithless +piths +pithy +pitiable +pitiably +pitied +pitier +pitiers +pities +pitiful +pitifuller +pitifullest +pitifully +pitiless +pitilessly +pitman +pitmans +pitmen +piton +pitons +pits +pitsaw +pitsaws +pittance +pittances +pitted +pitting +pittings +pittsburgh +pituitary +pity +pitying +piu +pivot +pivotal +pivoted +pivoting +pivots +pix +pixes +pixie +pixieish +pixies +pixiness +pixinesses +pixy +pixyish +pixys +pizazz +pizazzes +pizza +pizzas +pizzeria +pizzerias +pizzle +pizzles +placable +placably +placard +placarded +placarding +placards +placate +placated +placater +placaters +placates +placating +place +placebo +placeboes +placebos +placed +placeman +placemen +placement +placements +placenta +placentae +placental +placentas +placer +placers +places +placet +placets +placid +placidly +placing +plack +placket +plackets +placks +placoid +placoids +plafond +plafonds +plagal +plage +plages +plagiaries +plagiarism +plagiarisms +plagiarist +plagiarists +plagiarize +plagiarized +plagiarizes +plagiarizing +plagiary +plague +plagued +plaguer +plaguers +plagues +plaguey +plaguily +plaguing +plaguy +plaice +plaices +plaid +plaided +plaids +plain +plained +plainer +plainest +plaining +plainly +plainness +plainnesses +plains +plaint +plaintiff +plaintiffs +plaintive +plaintively +plaints +plaister +plaistered +plaistering +plaisters +plait +plaited +plaiter +plaiters +plaiting +plaitings +plaits +plan +planar +planaria +planarias +planate +planch +planche +planches +planchet +planchets +plane +planed +planer +planers +planes +planet +planetaria +planetarium +planetariums +planetary +planets +planform +planforms +plangent +planing +planish +planished +planishes +planishing +plank +planked +planking +plankings +planks +plankter +plankters +plankton +planktonic +planktons +planless +planned +planner +planners +planning +plannings +planosol +planosols +plans +plant +plantain +plantains +plantar +plantation +plantations +planted +planter +planters +planting +plantings +plants +planula +planulae +planular +plaque +plaques +plash +plashed +plasher +plashers +plashes +plashier +plashiest +plashing +plashy +plasm +plasma +plasmas +plasmatic +plasmic +plasmid +plasmids +plasmin +plasmins +plasmoid +plasmoids +plasmon +plasmons +plasms +plaster +plastered +plasterer +plasterers +plastering +plasters +plastery +plastic +plasticities +plasticity +plastics +plastid +plastids +plastral +plastron +plastrons +plastrum +plastrums +plat +platan +platane +platanes +platans +plate +plateau +plateaued +plateauing +plateaus +plateaux +plated +plateful +platefuls +platelet +platelets +platen +platens +plater +platers +plates +platesful +platform +platforms +platier +platies +platiest +platina +platinas +plating +platings +platinic +platinum +platinums +platitude +platitudes +platitudinous +platonic +platoon +platooned +platooning +platoons +plats +platted +platter +platters +platting +platy +platypi +platypus +platypuses +platys +plaudit +plaudits +plausibilities +plausibility +plausible +plausibly +plausive +play +playa +playable +playact +playacted +playacting +playactings +playacts +playas +playback +playbacks +playbill +playbills +playbook +playbooks +playboy +playboys +playday +playdays +playdown +playdowns +played +player +players +playful +playfully +playfulness +playfulnesses +playgirl +playgirls +playgoer +playgoers +playground +playgrounds +playhouse +playhouses +playing +playland +playlands +playless +playlet +playlets +playlike +playmate +playmates +playoff +playoffs +playpen +playpens +playroom +playrooms +plays +playsuit +playsuits +plaything +playthings +playtime +playtimes +playwear +playwears +playwright +playwrights +plaza +plazas +plea +pleach +pleached +pleaches +pleaching +plead +pleaded +pleader +pleaders +pleading +pleadings +pleads +pleas +pleasant +pleasanter +pleasantest +pleasantly +pleasantness +pleasantnesses +pleasantries +please +pleased +pleaser +pleasers +pleases +pleasing +pleasingly +pleasurable +pleasurably +pleasure +pleasured +pleasures +pleasuring +pleat +pleated +pleater +pleaters +pleating +pleats +pleb +plebe +plebeian +plebeians +plebes +plebiscite +plebiscites +plebs +plectra +plectron +plectrons +plectrum +plectrums +pled +pledge +pledged +pledgee +pledgees +pledgeor +pledgeors +pledger +pledgers +pledges +pledget +pledgets +pledging +pledgor +pledgors +pleiad +pleiades +pleiads +plena +plenary +plenipotentiaries +plenipotentiary +plenish +plenished +plenishes +plenishing +plenism +plenisms +plenist +plenists +plenitude +plenitudes +plenteous +plenties +plentiful +plentifully +plenty +plenum +plenums +pleonasm +pleonasms +pleopod +pleopods +plessor +plessors +plethora +plethoras +pleura +pleurae +pleural +pleuras +pleurisies +pleurisy +pleuron +pleuston +pleustons +plexor +plexors +plexus +plexuses +pliable +pliably +pliancies +pliancy +pliant +pliantly +plica +plicae +plical +plicate +plicated +plie +plied +plier +pliers +plies +plight +plighted +plighter +plighters +plighting +plights +plimsol +plimsole +plimsoles +plimsoll +plimsolls +plimsols +plink +plinked +plinker +plinkers +plinking +plinks +plinth +plinths +pliskie +pliskies +plisky +plisse +plisses +plod +plodded +plodder +plodders +plodding +ploddingly +plods +ploidies +ploidy +plonk +plonked +plonking +plonks +plop +plopped +plopping +plops +plosion +plosions +plosive +plosives +plot +plotless +plots +plottage +plottages +plotted +plotter +plotters +plottier +plotties +plottiest +plotting +plotty +plough +ploughed +plougher +ploughers +ploughing +ploughs +plover +plovers +plow +plowable +plowback +plowbacks +plowboy +plowboys +plowed +plower +plowers +plowhead +plowheads +plowing +plowland +plowlands +plowman +plowmen +plows +plowshare +plowshares +ploy +ployed +ploying +ploys +pluck +plucked +plucker +pluckers +pluckier +pluckiest +pluckily +plucking +plucks +plucky +plug +plugged +plugger +pluggers +plugging +plugless +plugs +pluguglies +plugugly +plum +plumage +plumaged +plumages +plumate +plumb +plumbago +plumbagos +plumbed +plumber +plumberies +plumbers +plumbery +plumbic +plumbing +plumbings +plumbism +plumbisms +plumbous +plumbs +plumbum +plumbums +plume +plumed +plumelet +plumelets +plumes +plumier +plumiest +pluming +plumiped +plumipeds +plumlike +plummet +plummeted +plummeting +plummets +plummier +plummiest +plummy +plumose +plump +plumped +plumpen +plumpened +plumpening +plumpens +plumper +plumpers +plumpest +plumping +plumpish +plumply +plumpness +plumpnesses +plumps +plums +plumular +plumule +plumules +plumy +plunder +plundered +plundering +plunders +plunge +plunged +plunger +plungers +plunges +plunging +plunk +plunked +plunker +plunkers +plunking +plunks +plural +pluralism +pluralities +plurality +pluralization +pluralizations +pluralize +pluralized +pluralizes +pluralizing +plurally +plurals +plus +pluses +plush +plusher +plushes +plushest +plushier +plushiest +plushily +plushly +plushy +plussage +plussages +plusses +plutocracies +plutocracy +plutocrat +plutocratic +plutocrats +pluton +plutonic +plutonium +plutoniums +plutons +pluvial +pluvials +pluviose +pluvious +ply +plyer +plyers +plying +plyingly +plywood +plywoods +pneuma +pneumas +pneumatic +pneumatically +pneumonia +poaceous +poach +poached +poacher +poachers +poaches +poachier +poachiest +poaching +poachy +pochard +pochards +pock +pocked +pocket +pocketbook +pocketbooks +pocketed +pocketer +pocketers +pocketful +pocketfuls +pocketing +pocketknife +pocketknives +pockets +pockier +pockiest +pockily +pocking +pockmark +pockmarked +pockmarking +pockmarks +pocks +pocky +poco +pocosin +pocosins +pod +podagra +podagral +podagras +podagric +podded +podding +podesta +podestas +podgier +podgiest +podgily +podgy +podia +podiatries +podiatrist +podiatry +podite +podites +poditic +podium +podiums +podomere +podomeres +pods +podsol +podsolic +podsols +podzol +podzolic +podzols +poechore +poechores +poem +poems +poesies +poesy +poet +poetess +poetesses +poetic +poetical +poetics +poetise +poetised +poetiser +poetisers +poetises +poetising +poetize +poetized +poetizer +poetizers +poetizes +poetizing +poetless +poetlike +poetries +poetry +poets +pogey +pogeys +pogies +pogonia +pogonias +pogonip +pogonips +pogrom +pogromed +pogroming +pogroms +pogy +poh +poi +poignancies +poignancy +poignant +poilu +poilus +poind +poinded +poinding +poinds +poinsettia +point +pointe +pointed +pointer +pointers +pointes +pointier +pointiest +pointing +pointless +pointman +pointmen +points +pointy +pois +poise +poised +poiser +poisers +poises +poising +poison +poisoned +poisoner +poisoners +poisoning +poisonous +poisons +poitrel +poitrels +poke +poked +poker +pokeroot +pokeroots +pokers +pokes +pokeweed +pokeweeds +pokey +pokeys +pokier +pokies +pokiest +pokily +pokiness +pokinesses +poking +poky +pol +polar +polarise +polarised +polarises +polarising +polarities +polarity +polarization +polarizations +polarize +polarized +polarizes +polarizing +polaron +polarons +polars +polder +polders +pole +poleax +poleaxe +poleaxed +poleaxes +poleaxing +polecat +polecats +poled +poleis +poleless +polemic +polemical +polemicist +polemicists +polemics +polemist +polemists +polemize +polemized +polemizes +polemizing +polenta +polentas +poler +polers +poles +polestar +polestars +poleward +poleyn +poleyns +police +policed +policeman +policemen +polices +policewoman +policewomen +policies +policing +policy +policyholder +poling +polio +poliomyelitis +poliomyelitises +polios +polis +polish +polished +polisher +polishers +polishes +polishing +polite +politely +politeness +politenesses +politer +politest +politic +political +politician +politicians +politick +politicked +politicking +politicks +politico +politicoes +politicos +politics +polities +polity +polka +polkaed +polkaing +polkas +poll +pollack +pollacks +pollard +pollarded +pollarding +pollards +polled +pollee +pollees +pollen +pollened +pollening +pollens +poller +pollers +pollex +pollical +pollices +pollinate +pollinated +pollinates +pollinating +pollination +pollinations +pollinator +pollinators +polling +pollinia +pollinic +pollist +pollists +polliwog +polliwogs +pollock +pollocks +polls +pollster +pollsters +pollutant +pollute +polluted +polluter +polluters +pollutes +polluting +pollution +pollutions +polly +pollywog +pollywogs +polo +poloist +poloists +polonium +poloniums +polos +pols +poltroon +poltroons +poly +polybrid +polybrids +polycot +polycots +polyene +polyenes +polyenic +polyester +polyesters +polygala +polygalas +polygamies +polygamist +polygamists +polygamous +polygamy +polygene +polygenes +polyglot +polyglots +polygon +polygonies +polygons +polygony +polygynies +polygyny +polymath +polymaths +polymer +polymers +polynya +polynyas +polyp +polyparies +polypary +polypi +polypide +polypides +polypnea +polypneas +polypod +polypodies +polypods +polypody +polypoid +polypore +polypores +polypous +polyps +polypus +polypuses +polys +polysemies +polysemy +polysome +polysomes +polysyllabic +polysyllable +polysyllables +polytechnic +polytene +polytenies +polyteny +polytheism +polytheisms +polytheist +polytheists +polytype +polytypes +polyuria +polyurias +polyuric +polyzoan +polyzoans +polyzoic +pomace +pomaces +pomade +pomaded +pomades +pomading +pomander +pomanders +pomatum +pomatums +pome +pomegranate +pomegranates +pomelo +pomelos +pomes +pommee +pommel +pommeled +pommeling +pommelled +pommelling +pommels +pomologies +pomology +pomp +pompano +pompanos +pompom +pompoms +pompon +pompons +pomposities +pomposity +pompous +pompously +pomps +ponce +ponces +poncho +ponchos +pond +ponder +pondered +ponderer +ponderers +pondering +ponderous +ponders +ponds +pondville +pondweed +pondweeds +pone +ponent +pones +pongee +pongees +pongid +pongids +poniard +poniarded +poniarding +poniards +ponied +ponies +pons +pontes +pontifex +pontiff +pontiffs +pontific +pontifical +pontificate +pontificated +pontificates +pontificating +pontifices +pontil +pontils +pontine +ponton +pontons +pontoon +pontoons +pony +ponying +ponytail +ponytails +pooch +pooches +pood +poodle +poodles +poods +pooh +poohed +poohing +poohs +pool +pooled +poolhall +poolhalls +pooling +poolroom +poolrooms +pools +poon +poons +poop +pooped +pooping +poops +poor +poorer +poorest +poori +pooris +poorish +poorly +poorness +poornesses +poortith +poortiths +pop +popcorn +popcorns +pope +popedom +popedoms +popeless +popelike +poperies +popery +popes +popeyed +popgun +popguns +popinjay +popinjays +popish +popishly +poplar +poplars +poplin +poplins +poplitic +popover +popovers +poppa +poppas +popped +popper +poppers +poppet +poppets +poppied +poppies +popping +popple +poppled +popples +poppling +poppy +pops +populace +populaces +popular +popularities +popularity +popularize +popularized +popularizes +popularizing +popularly +populate +populated +populates +populating +population +populations +populism +populisms +populist +populists +populous +populousness +populousnesses +porcelain +porcelains +porch +porches +porcine +porcupine +porcupines +pore +pored +pores +porgies +porgy +poring +porism +porisms +pork +porker +porkers +porkier +porkies +porkiest +porkpie +porkpies +porks +porkwood +porkwoods +porky +porn +porno +pornographic +pornography +pornos +porns +porose +porosities +porosity +porous +porously +porphyries +porphyry +porpoise +porpoises +porrect +porridge +porridges +porringer +porringers +port +portability +portable +portables +portably +portage +portaged +portages +portaging +portal +portaled +portals +portance +portances +porte +ported +portend +portended +portending +portends +portent +portentious +portents +porter +porterhouse +porterhouses +porters +portfolio +portfolios +porthole +portholes +portico +porticoes +porticos +portiere +portieres +porting +portion +portioned +portioning +portions +portless +portlier +portliest +portly +portrait +portraitist +portraitists +portraits +portraiture +portraitures +portray +portrayal +portrayals +portrayed +portraying +portrays +portress +portresses +ports +posada +posadas +pose +posed +poser +posers +poses +poseur +poseurs +posh +posher +poshest +posies +posing +posingly +posit +posited +positing +position +positioned +positioning +positions +positive +positively +positiveness +positivenesses +positiver +positives +positivest +positivity +positron +positrons +posits +posologies +posology +posse +posses +possess +possessed +possesses +possessing +possession +possessions +possessive +possessiveness +possessivenesses +possessives +possessor +possessors +posset +possets +possibilities +possibility +possible +possibler +possiblest +possibly +possum +possums +post +postadolescence +postadolescences +postadolescent +postage +postages +postal +postally +postals +postanal +postattack +postbaccalaureate +postbag +postbags +postbiblical +postbox +postboxes +postboy +postboys +postcard +postcards +postcava +postcavae +postcollege +postcolonial +postdate +postdated +postdates +postdating +posted +posteen +posteens +postelection +poster +posterior +posteriors +posterities +posterity +postern +posterns +posters +postexercise +postface +postfaces +postfertilization +postfertilizations +postfix +postfixed +postfixes +postfixing +postflight +postform +postformed +postforming +postforms +postgraduate +postgraduates +postgraduation +postharvest +posthaste +posthole +postholes +posthospital +posthumous +postiche +postiches +postimperial +postin +postinaugural +postindustrial +posting +postings +postinjection +postinoculation +postins +postique +postiques +postlude +postludes +postman +postmarital +postmark +postmarked +postmarking +postmarks +postmaster +postmasters +postmen +postmenopausal +postmortem +postmortems +postnatal +postnuptial +postoperative +postoral +postpaid +postpartum +postpone +postponed +postponement +postponements +postpones +postponing +postproduction +postpubertal +postpuberty +postradiation +postrecession +postretirement +postrevolutionary +posts +postscript +postscripts +postseason +postsecondary +postsurgical +posttreatment +posttrial +postulant +postulants +postulate +postulated +postulates +postulating +postural +posture +postured +posturer +posturers +postures +posturing +postvaccination +postwar +posy +pot +potable +potables +potage +potages +potamic +potash +potashes +potassic +potassium +potassiums +potation +potations +potato +potatoes +potatory +potbellied +potbellies +potbelly +potboil +potboiled +potboiling +potboils +potboy +potboys +poteen +poteens +potence +potences +potencies +potency +potent +potentate +potentates +potential +potentialities +potentiality +potentially +potentials +potently +potful +potfuls +pothead +potheads +potheen +potheens +pother +potherb +potherbs +pothered +pothering +pothers +pothole +potholed +potholes +pothook +pothooks +pothouse +pothouses +potiche +potiches +potion +potions +potlach +potlache +potlaches +potlatch +potlatched +potlatches +potlatching +potlike +potluck +potlucks +potman +potmen +potpie +potpies +potpourri +potpourris +pots +potshard +potshards +potsherd +potsherds +potshot +potshots +potshotting +potsie +potsies +potstone +potstones +potsy +pottage +pottages +potted +potteen +potteens +potter +pottered +potterer +potterers +potteries +pottering +potters +pottery +pottier +potties +pottiest +potting +pottle +pottles +potto +pottos +potty +pouch +pouched +pouches +pouchier +pouchiest +pouching +pouchy +pouf +poufed +pouff +pouffe +pouffed +pouffes +pouffs +poufs +poulard +poularde +poulardes +poulards +poult +poultice +poulticed +poultices +poulticing +poultries +poultry +poults +pounce +pounced +pouncer +pouncers +pounces +pouncing +pound +poundage +poundages +poundal +poundals +pounded +pounder +pounders +pounding +pounds +pour +pourable +poured +pourer +pourers +pouring +pours +poussie +poussies +pout +pouted +pouter +pouters +poutful +poutier +poutiest +pouting +pouts +pouty +poverties +poverty +pow +powder +powdered +powderer +powderers +powdering +powders +powdery +power +powered +powerful +powerfully +powering +powerless +powerlessness +powers +pows +powter +powters +powwow +powwowed +powwowing +powwows +pox +poxed +poxes +poxing +poxvirus +poxviruses +poyou +poyous +pozzolan +pozzolans +praam +praams +practic +practicabilities +practicability +practicable +practical +practicalities +practicality +practically +practice +practiced +practices +practicing +practise +practised +practises +practising +practitioner +practitioners +praecipe +praecipes +praedial +praefect +praefects +praelect +praelected +praelecting +praelects +praetor +praetors +pragmatic +pragmatism +pragmatisms +prahu +prahus +prairie +prairies +praise +praised +praiser +praisers +praises +praiseworthy +praising +praline +pralines +pram +prams +prance +pranced +prancer +prancers +prances +prancing +prandial +prang +pranged +pranging +prangs +prank +pranked +pranking +prankish +pranks +prankster +pranksters +prao +praos +prase +prases +prat +prate +prated +prater +praters +prates +pratfall +pratfalls +prating +pratique +pratiques +prats +prattle +prattled +prattler +prattlers +prattles +prattling +prau +praus +prawn +prawned +prawner +prawners +prawning +prawns +praxes +praxis +praxises +pray +prayed +prayer +prayers +praying +prays +preach +preached +preacher +preachers +preaches +preachier +preachiest +preaching +preachment +preachments +preachy +preact +preacted +preacting +preacts +preadapt +preadapted +preadapting +preadapts +preaddress +preadmission +preadmit +preadmits +preadmitted +preadmitting +preadolescence +preadolescences +preadolescent +preadopt +preadopted +preadopting +preadopts +preadult +preaged +preallocate +preallocated +preallocates +preallocating +preallot +preallots +preallotted +preallotting +preamble +preambles +preamp +preamps +preanal +preanesthetic +preanesthetics +prearm +prearmed +prearming +prearms +prearraignment +prearrange +prearranged +prearrangement +prearrangements +prearranges +prearranging +preassemble +preassembled +preassembles +preassembling +preassign +preassigned +preassigning +preassigns +preauthorize +preauthorized +preauthorizes +preauthorizing +preaver +preaverred +preaverring +preavers +preaxial +prebasal +prebattle +prebend +prebends +prebiblical +prebill +prebilled +prebilling +prebills +prebind +prebinding +prebinds +prebless +preblessed +preblesses +preblessing +preboil +preboiled +preboiling +preboils +prebound +prebreakfast +precalculate +precalculated +precalculates +precalculating +precalculus +precalculuses +precampaign +precancel +precanceled +precanceling +precancellation +precancellations +precancels +precarious +precariously +precariousness +precariousnesses +precast +precasting +precasts +precaution +precautionary +precautions +precava +precavae +precaval +precede +preceded +precedence +precedences +precedent +precedents +precedes +preceding +precent +precented +precenting +precents +precept +preceptor +preceptors +precepts +precess +precessed +precesses +precessing +precheck +prechecked +prechecking +prechecks +prechill +prechilled +prechilling +prechills +precieux +precinct +precincts +precious +preciouses +precipe +precipes +precipice +precipices +precipitate +precipitated +precipitately +precipitateness +precipitatenesses +precipitates +precipitating +precipitation +precipitations +precipitous +precipitously +precis +precise +precised +precisely +preciseness +precisenesses +preciser +precises +precisest +precising +precision +precisions +precited +precivilization +preclean +precleaned +precleaning +precleans +preclearance +preclearances +preclude +precluded +precludes +precluding +precocious +precocities +precocity +precollege +precolonial +precombustion +precompute +precomputed +precomputes +precomputing +preconceive +preconceived +preconceives +preconceiving +preconception +preconceptions +preconcerted +precondition +preconditions +preconference +preconstruct +preconvention +precook +precooked +precooking +precooks +precool +precooled +precooling +precools +precure +precured +precures +precuring +precursor +precursors +predate +predated +predates +predating +predator +predators +predatory +predawn +predawns +predecessor +predecessors +predefine +predefined +predefines +predefining +predelinquent +predeparture +predesignate +predesignated +predesignates +predesignating +predesignation +predesignations +predestine +predestined +predestines +predestining +predetermine +predetermined +predetermines +predetermining +predial +predicament +predicaments +predicate +predicated +predicates +predicating +predication +predications +predict +predictable +predictably +predicted +predicting +prediction +predictions +predictive +predicts +predilection +predilections +predischarge +predispose +predisposed +predisposes +predisposing +predisposition +predispositions +prednisone +prednisones +predominance +predominances +predominant +predominantly +predominate +predominated +predominates +predominating +predusk +predusks +pree +preed +preeing +preelect +preelected +preelecting +preelection +preelectric +preelectronic +preelects +preemie +preemies +preeminence +preeminences +preeminent +preeminently +preemployment +preempt +preempted +preempting +preemption +preemptions +preempts +preen +preenact +preenacted +preenacting +preenacts +preened +preener +preeners +preening +preens +prees +preestablish +preestablished +preestablishes +preestablishing +preexist +preexisted +preexistence +preexistences +preexistent +preexisting +preexists +prefab +prefabbed +prefabbing +prefabricated +prefabrication +prefabrications +prefabs +preface +prefaced +prefacer +prefacers +prefaces +prefacing +prefect +prefects +prefecture +prefectures +prefer +preferable +preferably +preference +preferences +preferential +preferment +preferments +preferred +preferring +prefers +prefigure +prefigured +prefigures +prefiguring +prefilter +prefilters +prefix +prefixal +prefixed +prefixes +prefixing +prefocus +prefocused +prefocuses +prefocusing +prefocussed +prefocusses +prefocussing +preform +preformed +preforming +preforms +prefrank +prefranked +prefranking +prefranks +pregame +pregnancies +pregnancy +pregnant +preheat +preheated +preheating +preheats +prehensile +prehistoric +prehistorical +prehuman +prehumans +preimmunization +preimmunizations +preimmunize +preimmunized +preimmunizes +preimmunizing +preinaugural +preindustrial +preinoculate +preinoculated +preinoculates +preinoculating +preinoculation +preinterview +prejudge +prejudged +prejudges +prejudging +prejudice +prejudiced +prejudices +prejudicial +prejudicing +prekindergarten +prekindergartens +prelacies +prelacy +prelate +prelates +prelatic +prelaunch +prelect +prelected +prelecting +prelects +prelegal +prelim +preliminaries +preliminary +prelimit +prelimited +prelimiting +prelimits +prelims +prelude +preluded +preluder +preluders +preludes +preluding +preman +premarital +premature +prematurely +premed +premedic +premedics +premeditate +premeditated +premeditates +premeditating +premeditation +premeditations +premeds +premen +premenopausal +premenstrual +premie +premier +premiere +premiered +premieres +premiering +premiers +premiership +premierships +premies +premise +premised +premises +premising +premiss +premisses +premium +premiums +premix +premixed +premixes +premixing +premodern +premodified +premodifies +premodify +premodifying +premoisten +premoistened +premoistening +premoistens +premolar +premolars +premonition +premonitions +premonitory +premorse +premune +prename +prenames +prenatal +prenomen +prenomens +prenomina +prenotification +prenotifications +prenotified +prenotifies +prenotify +prenotifying +prentice +prenticed +prentices +prenticing +prenuptial +preoccupation +preoccupations +preoccupied +preoccupies +preoccupy +preoccupying +preopening +preoperational +preordain +preordained +preordaining +preordains +prep +prepack +prepackage +prepackaged +prepackages +prepackaging +prepacked +prepacking +prepacks +prepaid +preparation +preparations +preparatory +prepare +prepared +preparedness +preparednesses +preparer +preparers +prepares +preparing +prepay +prepaying +prepays +prepense +preplace +preplaced +preplaces +preplacing +preplan +preplanned +preplanning +preplans +preplant +preponderance +preponderances +preponderant +preponderantly +preponderate +preponderated +preponderates +preponderating +preposition +prepositional +prepositions +prepossessing +preposterous +prepped +preppie +preppies +prepping +preprint +preprinted +preprinting +preprints +preprocess +preprocessed +preprocesses +preprocessing +preproduction +preprofessional +preprogram +preps +prepubertal +prepublication +prepuce +prepuces +prepunch +prepunched +prepunches +prepunching +prepurchase +prepurchased +prepurchases +prepurchasing +prerecord +prerecorded +prerecording +prerecords +preregister +preregistered +preregistering +preregisters +preregistration +preregistrations +prerehearsal +prerelease +prerenal +prerequisite +prerequisites +preretirement +prerevolutionary +prerogative +prerogatives +presa +presage +presaged +presager +presagers +presages +presaging +presbyter +presbyters +prescience +presciences +prescient +prescind +prescinded +prescinding +prescinds +prescore +prescored +prescores +prescoring +prescribe +prescribed +prescribes +prescribing +prescription +prescriptions +prese +preseason +preselect +preselected +preselecting +preselects +presell +preselling +presells +presence +presences +present +presentable +presentation +presentations +presented +presentiment +presentiments +presenting +presently +presentment +presentments +presents +preservation +preservations +preservative +preservatives +preserve +preserved +preserver +preservers +preserves +preserving +preset +presets +presetting +preshape +preshaped +preshapes +preshaping +preshow +preshowed +preshowing +preshown +preshows +preshrink +preshrinked +preshrinking +preshrinks +preside +presided +presidencies +presidency +president +presidential +presidents +presider +presiders +presides +presidia +presiding +presidio +presidios +presift +presifted +presifting +presifts +presoak +presoaked +presoaking +presoaks +presold +press +pressed +presser +pressers +presses +pressing +pressman +pressmen +pressor +pressrun +pressruns +pressure +pressured +pressures +pressuring +pressurization +pressurizations +pressurize +pressurized +pressurizes +pressurizing +prest +prestamp +prestamped +prestamping +prestamps +prester +presterilize +presterilized +presterilizes +presterilizing +presters +prestidigitation +prestidigitations +prestige +prestiges +prestigious +presto +prestos +prestrike +prests +presumable +presumably +presume +presumed +presumer +presumers +presumes +presuming +presumption +presumptions +presumptive +presumptuous +presuppose +presupposed +presupposes +presupposing +presupposition +presuppositions +presurgical +presweeten +presweetened +presweetening +presweetens +pretaste +pretasted +pretastes +pretasting +pretax +preteen +preteens +pretelevision +pretence +pretences +pretend +pretended +pretender +pretenders +pretending +pretends +pretense +pretenses +pretension +pretensions +pretentious +pretentiously +pretentiousness +pretentiousnesses +preterit +preterits +preternatural +preternaturally +pretest +pretested +pretesting +pretests +pretext +pretexted +pretexting +pretexts +pretor +pretors +pretournament +pretreat +pretreated +pretreating +pretreatment +pretreats +prettied +prettier +pretties +prettiest +prettified +prettifies +prettify +prettifying +prettily +prettiness +prettinesses +pretty +prettying +pretzel +pretzels +preunion +preunions +preunite +preunited +preunites +preuniting +prevail +prevailed +prevailing +prevailingly +prevails +prevalence +prevalences +prevalent +prevaricate +prevaricated +prevaricates +prevaricating +prevarication +prevarications +prevaricator +prevaricators +prevent +preventable +preventative +prevented +preventing +prevention +preventions +preventive +prevents +preview +previewed +previewing +previews +previous +previously +previse +prevised +previses +prevising +previsor +previsors +prevue +prevued +prevues +prevuing +prewar +prewarm +prewarmed +prewarming +prewarms +prewarn +prewarned +prewarning +prewarns +prewash +prewashed +prewashes +prewashing +prewrap +prewrapped +prewrapping +prewraps +prex +prexes +prexies +prexy +prey +preyed +preyer +preyers +preying +preys +priapean +priapi +priapic +priapism +priapisms +priapus +priapuses +price +priced +priceless +pricer +pricers +prices +pricey +pricier +priciest +pricing +prick +pricked +pricker +prickers +pricket +prickets +prickier +prickiest +pricking +prickle +prickled +prickles +pricklier +prickliest +prickling +prickly +pricks +pricky +pricy +pride +prided +prideful +prides +priding +pried +priedieu +priedieus +priedieux +prier +priers +pries +priest +priested +priestess +priestesses +priesthood +priesthoods +priesting +priestlier +priestliest +priestliness +priestlinesses +priestly +priests +prig +prigged +priggeries +priggery +prigging +priggish +priggishly +priggism +priggisms +prigs +prill +prilled +prilling +prills +prim +prima +primacies +primacy +primage +primages +primal +primaries +primarily +primary +primas +primatal +primate +primates +prime +primed +primely +primer +primero +primeros +primers +primes +primeval +primi +primine +primines +priming +primings +primitive +primitively +primitiveness +primitivenesses +primitives +primitivities +primitivity +primly +primmed +primmer +primmest +primming +primness +primnesses +primo +primordial +primos +primp +primped +primping +primps +primrose +primroses +prims +primsie +primula +primulas +primus +primuses +prince +princelier +princeliest +princely +princes +princess +princesses +principal +principalities +principality +principally +principals +principe +principi +principle +principles +princock +princocks +princox +princoxes +prink +prinked +prinker +prinkers +prinking +prinks +print +printable +printed +printer +printeries +printers +printery +printing +printings +printout +printouts +prints +prior +priorate +priorates +prioress +prioresses +priories +priorities +prioritize +prioritized +prioritizes +prioritizing +priority +priorly +priors +priory +prise +prised +prisere +priseres +prises +prising +prism +prismatic +prismoid +prismoids +prisms +prison +prisoned +prisoner +prisoners +prisoning +prisons +priss +prisses +prissier +prissies +prissiest +prissily +prissiness +prissinesses +prissy +pristane +pristanes +pristine +prithee +privacies +privacy +private +privateer +privateers +privater +privates +privatest +privation +privations +privet +privets +privier +privies +priviest +privilege +privileged +privileges +privily +privities +privity +privy +prize +prized +prizefight +prizefighter +prizefighters +prizefighting +prizefightings +prizefights +prizer +prizers +prizes +prizewinner +prizewinners +prizing +pro +proa +proas +probabilities +probability +probable +probably +proband +probands +probang +probangs +probate +probated +probates +probating +probation +probationary +probationer +probationers +probations +probe +probed +prober +probers +probes +probing +probit +probities +probits +probity +problem +problematic +problematical +problems +proboscides +proboscis +procaine +procaines +procarp +procarps +procedure +procedures +proceed +proceeded +proceeding +proceedings +proceeds +process +processed +processes +processing +procession +processional +processionals +processions +processor +processors +prochain +prochein +proclaim +proclaimed +proclaiming +proclaims +proclamation +proclamations +proclivities +proclivity +procrastinate +procrastinated +procrastinates +procrastinating +procrastination +procrastinations +procrastinator +procrastinators +procreate +procreated +procreates +procreating +procreation +procreations +procreative +procreator +procreators +proctor +proctored +proctorial +proctoring +proctors +procurable +procural +procurals +procure +procured +procurement +procurements +procurer +procurers +procures +procuring +prod +prodded +prodder +prodders +prodding +prodigal +prodigalities +prodigality +prodigals +prodigies +prodigious +prodigiously +prodigy +prodromal +prodromata +prodrome +prodromes +prods +produce +produced +producer +producers +produces +producing +product +production +productions +productive +productiveness +productivenesses +productivities +productivity +products +proem +proemial +proems +proette +proettes +prof +profane +profaned +profanely +profaneness +profanenesses +profaner +profaners +profanes +profaning +profess +professed +professedly +professes +professing +profession +professional +professionalism +professionalize +professionalized +professionalizes +professionalizing +professionally +professions +professor +professorial +professors +professorship +professorships +proffer +proffered +proffering +proffers +proficiencies +proficiency +proficient +proficiently +profile +profiled +profiler +profilers +profiles +profiling +profit +profitability +profitable +profitably +profited +profiteer +profiteered +profiteering +profiteers +profiter +profiters +profiting +profitless +profits +profligacies +profligacy +profligate +profligately +profligates +profound +profounder +profoundest +profoundly +profounds +profs +profundities +profundity +profuse +profusely +profusion +profusions +prog +progenies +progenitor +progenitors +progeny +progged +progger +proggers +progging +prognose +prognosed +prognoses +prognosing +prognosis +prognosticate +prognosticated +prognosticates +prognosticating +prognostication +prognostications +prognosticator +prognosticators +prograde +program +programed +programing +programmabilities +programmability +programmable +programme +programmed +programmer +programmers +programmes +programming +programs +progress +progressed +progresses +progressing +progression +progressions +progressive +progressively +progs +prohibit +prohibited +prohibiting +prohibition +prohibitionist +prohibitionists +prohibitions +prohibitive +prohibitively +prohibitory +prohibits +project +projected +projectile +projectiles +projecting +projection +projections +projector +projectors +projects +projet +projets +prolabor +prolamin +prolamins +prolan +prolans +prolapse +prolapsed +prolapses +prolapsing +prolate +prole +proleg +prolegs +proles +proletarian +proletariat +proliferate +proliferated +proliferates +proliferating +proliferation +prolific +prolifically +proline +prolines +prolix +prolixly +prolog +prologed +prologing +prologs +prologue +prologued +prologues +prologuing +prolong +prolongation +prolongations +prolonge +prolonged +prolonges +prolonging +prolongs +prom +promenade +promenaded +promenades +promenading +prominence +prominences +prominent +prominently +promiscuities +promiscuity +promiscuous +promiscuously +promiscuousness +promiscuousnesses +promise +promised +promisee +promisees +promiser +promisers +promises +promising +promisingly +promisor +promisors +promissory +promontories +promontory +promote +promoted +promoter +promoters +promotes +promoting +promotion +promotional +promotions +prompt +prompted +prompter +prompters +promptest +prompting +promptly +promptness +prompts +proms +promulge +promulged +promulges +promulging +pronate +pronated +pronates +pronating +pronator +pronatores +pronators +prone +pronely +proneness +pronenesses +prong +pronged +pronging +prongs +pronota +pronotum +pronoun +pronounce +pronounceable +pronounced +pronouncement +pronouncements +pronounces +pronouncing +pronouns +pronto +pronunciation +pronunciations +proof +proofed +proofer +proofers +proofing +proofread +proofreaded +proofreader +proofreaders +proofreading +proofreads +proofs +prop +propaganda +propagandas +propagandist +propagandists +propagandize +propagandized +propagandizes +propagandizing +propagate +propagated +propagates +propagating +propagation +propagations +propane +propanes +propel +propellant +propellants +propelled +propellent +propellents +propeller +propellers +propelling +propels +propend +propended +propending +propends +propene +propenes +propenol +propenols +propense +propensities +propensity +propenyl +proper +properer +properest +properly +propers +properties +property +prophage +prophages +prophase +prophases +prophecies +prophecy +prophesied +prophesier +prophesiers +prophesies +prophesy +prophesying +prophet +prophetess +prophetesses +prophetic +prophetical +prophetically +prophets +prophylactic +prophylactics +prophylaxis +propine +propined +propines +propining +propinquities +propinquity +propitiate +propitiated +propitiates +propitiating +propitiation +propitiations +propitiatory +propitious +propjet +propjets +propman +propmen +propolis +propolises +propone +proponed +proponent +proponents +propones +proponing +proportion +proportional +proportionally +proportionate +proportionately +proportions +proposal +proposals +propose +proposed +proposer +proposers +proposes +proposing +proposition +propositions +propound +propounded +propounding +propounds +propped +propping +proprietary +proprieties +proprietor +proprietors +proprietorship +proprietorships +proprietress +proprietresses +propriety +props +propulsion +propulsions +propulsive +propyl +propyla +propylic +propylon +propyls +prorate +prorated +prorates +prorating +prorogue +prorogued +prorogues +proroguing +pros +prosaic +prosaism +prosaisms +prosaist +prosaists +proscribe +proscribed +proscribes +proscribing +proscription +proscriptions +prose +prosect +prosected +prosecting +prosects +prosecute +prosecuted +prosecutes +prosecuting +prosecution +prosecutions +prosecutor +prosecutors +prosed +proselyte +proselytes +proselytize +proselytized +proselytizes +proselytizing +proser +prosers +proses +prosier +prosiest +prosily +prosing +prosit +proso +prosodic +prosodies +prosody +prosoma +prosomal +prosomas +prosos +prospect +prospected +prospecting +prospective +prospectively +prospector +prospectors +prospects +prospectus +prospectuses +prosper +prospered +prospering +prosperities +prosperity +prosperous +prospers +prost +prostate +prostates +prostatic +prostheses +prosthesis +prosthetic +prostitute +prostituted +prostitutes +prostituting +prostitution +prostitutions +prostrate +prostrated +prostrates +prostrating +prostration +prostrations +prostyle +prostyles +prosy +protamin +protamins +protases +protasis +protatic +protea +protean +proteas +protease +proteases +protect +protected +protecting +protection +protections +protective +protector +protectorate +protectorates +protectors +protects +protege +protegee +protegees +proteges +protei +proteid +proteide +proteides +proteids +protein +proteins +proteinuria +protend +protended +protending +protends +proteose +proteoses +protest +protestation +protestations +protested +protesting +protests +proteus +prothrombin +protist +protists +protium +protiums +protocol +protocoled +protocoling +protocolled +protocolling +protocols +proton +protonic +protons +protoplasm +protoplasmic +protoplasms +protopod +protopods +prototype +prototypes +protoxid +protoxids +protozoa +protozoan +protozoans +protract +protracted +protracting +protractor +protractors +protracts +protrude +protruded +protrudes +protruding +protrusion +protrusions +protrusive +protuberance +protuberances +protuberant +protyl +protyle +protyles +protyls +proud +prouder +proudest +proudful +proudly +prounion +provable +provably +prove +proved +proven +provender +provenders +provenly +prover +proverb +proverbed +proverbial +proverbing +proverbs +provers +proves +provide +provided +providence +providences +provident +providential +providently +provider +providers +provides +providing +province +provinces +provincial +provincialism +provincialisms +proving +proviral +provirus +proviruses +provision +provisional +provisions +proviso +provisoes +provisos +provocation +provocations +provocative +provoke +provoked +provoker +provokers +provokes +provoking +provost +provosts +prow +prowar +prower +prowess +prowesses +prowest +prowl +prowled +prowler +prowlers +prowling +prowls +prows +proxemic +proxies +proximal +proximo +proxy +prude +prudence +prudences +prudent +prudential +prudently +pruderies +prudery +prudes +prudish +pruinose +prunable +prune +pruned +prunella +prunellas +prunelle +prunelles +prunello +prunellos +pruner +pruners +prunes +pruning +prurient +prurigo +prurigos +pruritic +pruritus +prurituses +prussic +pruta +prutah +prutot +prutoth +pry +pryer +pryers +prying +pryingly +prythee +psalm +psalmed +psalmic +psalming +psalmist +psalmists +psalmodies +psalmody +psalms +psalter +psalteries +psalters +psaltery +psaltries +psaltry +psammite +psammites +pschent +pschents +psephite +psephites +pseudo +pseudonym +pseudonymous +pshaw +pshawed +pshawing +pshaws +psi +psiloses +psilosis +psilotic +psis +psoae +psoai +psoas +psocid +psocids +psoralea +psoraleas +psoriasis +psoriasises +psst +psych +psyche +psyched +psyches +psychiatric +psychiatries +psychiatrist +psychiatrists +psychiatry +psychic +psychically +psychics +psyching +psycho +psychoanalyses +psychoanalysis +psychoanalyst +psychoanalysts +psychoanalytic +psychoanalyze +psychoanalyzed +psychoanalyzes +psychoanalyzing +psychological +psychologically +psychologies +psychologist +psychologists +psychology +psychopath +psychopathic +psychopaths +psychos +psychoses +psychosis +psychosocial +psychosomatic +psychotherapies +psychotherapist +psychotherapists +psychotherapy +psychotic +psychs +psylla +psyllas +psyllid +psyllids +pterin +pterins +pteropod +pteropods +pteryla +pterylae +ptisan +ptisans +ptomain +ptomaine +ptomaines +ptomains +ptoses +ptosis +ptotic +ptyalin +ptyalins +ptyalism +ptyalisms +pub +puberal +pubertal +puberties +puberty +pubes +pubic +pubis +public +publican +publicans +publication +publications +publicist +publicists +publicities +publicity +publicize +publicized +publicizes +publicizing +publicly +publics +publish +published +publisher +publishers +publishes +publishing +pubs +puccoon +puccoons +puce +puces +puck +pucka +pucker +puckered +puckerer +puckerers +puckerier +puckeriest +puckering +puckers +puckery +puckish +pucks +pud +pudding +puddings +puddle +puddled +puddler +puddlers +puddles +puddlier +puddliest +puddling +puddlings +puddly +pudencies +pudency +pudenda +pudendal +pudendum +pudgier +pudgiest +pudgily +pudgy +pudic +puds +pueblo +pueblos +puerile +puerilities +puerility +puff +puffball +puffballs +puffed +puffer +pufferies +puffers +puffery +puffier +puffiest +puffily +puffin +puffing +puffins +puffs +puffy +pug +pugaree +pugarees +puggaree +puggarees +pugged +puggier +puggiest +pugging +puggish +puggree +puggrees +puggries +puggry +puggy +pugh +pugilism +pugilisms +pugilist +pugilistic +pugilists +pugmark +pugmarks +pugnacious +pugree +pugrees +pugs +puisne +puisnes +puissant +puke +puked +pukes +puking +pukka +pul +pulchritude +pulchritudes +pulchritudinous +pule +puled +puler +pulers +pules +puli +pulicene +pulicide +pulicides +pulik +puling +pulingly +pulings +pulis +pull +pullback +pullbacks +pulled +puller +pullers +pullet +pullets +pulley +pulleys +pulling +pullman +pullmans +pullout +pullouts +pullover +pullovers +pulls +pulmonary +pulmonic +pulmotor +pulmotors +pulp +pulpal +pulpally +pulped +pulper +pulpier +pulpiest +pulpily +pulping +pulpit +pulpital +pulpits +pulpless +pulpous +pulps +pulpwood +pulpwoods +pulpy +pulque +pulques +puls +pulsant +pulsar +pulsars +pulsate +pulsated +pulsates +pulsating +pulsation +pulsations +pulsator +pulsators +pulse +pulsed +pulsejet +pulsejets +pulser +pulsers +pulses +pulsing +pulsion +pulsions +pulsojet +pulsojets +pulverize +pulverized +pulverizes +pulverizing +pulvilli +pulvinar +pulvini +pulvinus +puma +pumas +pumelo +pumelos +pumice +pumiced +pumicer +pumicers +pumices +pumicing +pumicite +pumicites +pummel +pummeled +pummeling +pummelled +pummelling +pummels +pump +pumped +pumper +pumpernickel +pumpernickels +pumpers +pumping +pumpkin +pumpkins +pumpless +pumplike +pumps +pun +puna +punas +punch +punched +puncheon +puncheons +puncher +punchers +punches +punchier +punchiest +punching +punchy +punctate +punctilious +punctual +punctualities +punctuality +punctually +punctuate +punctuated +punctuates +punctuating +punctuation +puncture +punctured +punctures +puncturing +pundit +punditic +punditries +punditry +pundits +pung +pungencies +pungency +pungent +pungently +pungs +punier +puniest +punily +puniness +puninesses +punish +punishable +punished +punisher +punishers +punishes +punishing +punishment +punishments +punition +punitions +punitive +punitory +punk +punka +punkah +punkahs +punkas +punker +punkest +punkey +punkeys +punkie +punkier +punkies +punkiest +punkin +punkins +punks +punky +punned +punner +punners +punnier +punniest +punning +punny +puns +punster +punsters +punt +punted +punter +punters +punties +punting +punto +puntos +punts +punty +puny +pup +pupa +pupae +pupal +puparia +puparial +puparium +pupas +pupate +pupated +pupates +pupating +pupation +pupations +pupfish +pupfishes +pupil +pupilage +pupilages +pupilar +pupilary +pupils +pupped +puppet +puppeteer +puppeteers +puppetries +puppetry +puppets +puppies +pupping +puppy +puppydom +puppydoms +puppyish +pups +pur +purana +puranas +puranic +purblind +purchase +purchased +purchaser +purchasers +purchases +purchasing +purda +purdah +purdahs +purdas +pure +purebred +purebreds +puree +pureed +pureeing +purees +purely +pureness +purenesses +purer +purest +purfle +purfled +purfles +purfling +purflings +purgative +purgatorial +purgatories +purgatory +purge +purged +purger +purgers +purges +purging +purgings +puri +purification +purifications +purified +purifier +purifiers +purifies +purify +purifying +purin +purine +purines +purins +puris +purism +purisms +purist +puristic +purists +puritan +puritanical +puritans +purities +purity +purl +purled +purlieu +purlieus +purlin +purline +purlines +purling +purlins +purloin +purloined +purloining +purloins +purls +purple +purpled +purpler +purples +purplest +purpling +purplish +purply +purport +purported +purportedly +purporting +purports +purpose +purposed +purposeful +purposefully +purposeless +purposely +purposes +purposing +purpura +purpuras +purpure +purpures +purpuric +purpurin +purpurins +purr +purred +purring +purrs +purs +purse +pursed +purser +pursers +purses +pursier +pursiest +pursily +pursing +purslane +purslanes +pursuance +pursuances +pursuant +pursue +pursued +pursuer +pursuers +pursues +pursuing +pursuit +pursuits +pursy +purulent +purvey +purveyance +purveyances +purveyed +purveying +purveyor +purveyors +purveys +purview +purviews +pus +puses +push +pushball +pushballs +pushcart +pushcarts +pushdown +pushdowns +pushed +pusher +pushers +pushes +pushful +pushier +pushiest +pushily +pushing +pushover +pushovers +pushpin +pushpins +pushup +pushups +pushy +pusillanimous +pusley +pusleys +puslike +puss +pusses +pussier +pussies +pussiest +pussley +pussleys +pusslies +pusslike +pussly +pussy +pussycat +pussycats +pustular +pustule +pustuled +pustules +put +putamen +putamina +putative +putlog +putlogs +putoff +putoffs +puton +putons +putout +putouts +putrefaction +putrefactions +putrefactive +putrefied +putrefies +putrefy +putrefying +putrid +putridly +puts +putsch +putsches +putt +putted +puttee +puttees +putter +puttered +putterer +putterers +puttering +putters +puttied +puttier +puttiers +putties +putting +putts +putty +puttying +puzzle +puzzled +puzzlement +puzzlements +puzzler +puzzlers +puzzles +puzzling +pya +pyaemia +pyaemias +pyaemic +pyas +pycnidia +pye +pyelitic +pyelitis +pyelitises +pyemia +pyemias +pyemic +pyes +pygidia +pygidial +pygidium +pygmaean +pygmean +pygmies +pygmoid +pygmy +pygmyish +pygmyism +pygmyisms +pyic +pyin +pyins +pyjamas +pyknic +pyknics +pylon +pylons +pylori +pyloric +pylorus +pyloruses +pyoderma +pyodermas +pyogenic +pyoid +pyorrhea +pyorrheas +pyoses +pyosis +pyralid +pyralids +pyramid +pyramidal +pyramided +pyramiding +pyramids +pyran +pyranoid +pyranose +pyranoses +pyrans +pyre +pyrene +pyrenes +pyrenoid +pyrenoids +pyres +pyretic +pyrexia +pyrexial +pyrexias +pyrexic +pyric +pyridic +pyridine +pyridines +pyriform +pyrite +pyrites +pyritic +pyritous +pyrogen +pyrogens +pyrola +pyrolas +pyrologies +pyrology +pyrolyze +pyrolyzed +pyrolyzes +pyrolyzing +pyromania +pyromaniac +pyromaniacs +pyromanias +pyrone +pyrones +pyronine +pyronines +pyrope +pyropes +pyrosis +pyrosises +pyrostat +pyrostats +pyrotechnic +pyrotechnics +pyroxene +pyroxenes +pyrrhic +pyrrhics +pyrrol +pyrrole +pyrroles +pyrrolic +pyrrols +pyruvate +pyruvates +python +pythonic +pythons +pyuria +pyurias +pyx +pyxes +pyxides +pyxidia +pyxidium +pyxie +pyxies +pyxis +qaid +qaids +qindar +qindars +qintar +qintars +qiviut +qiviuts +qoph +qophs +qua +quack +quacked +quackeries +quackery +quacking +quackish +quackism +quackisms +quacks +quad +quadded +quadding +quadrangle +quadrangles +quadrangular +quadrans +quadrant +quadrantes +quadrants +quadrat +quadrate +quadrated +quadrates +quadrating +quadrats +quadric +quadrics +quadriga +quadrigae +quadrilateral +quadrilaterals +quadrille +quadrilles +quadroon +quadroons +quadruped +quadrupedal +quadrupeds +quadruple +quadrupled +quadruples +quadruplet +quadruplets +quadrupling +quads +quaere +quaeres +quaestor +quaestors +quaff +quaffed +quaffer +quaffers +quaffing +quaffs +quag +quagga +quaggas +quaggier +quaggiest +quaggy +quagmire +quagmires +quagmirier +quagmiriest +quagmiry +quags +quahaug +quahaugs +quahog +quahogs +quai +quaich +quaiches +quaichs +quaigh +quaighs +quail +quailed +quailing +quails +quaint +quainter +quaintest +quaintly +quaintness +quaintnesses +quais +quake +quaked +quaker +quakers +quakes +quakier +quakiest +quakily +quaking +quaky +quale +qualia +qualification +qualifications +qualified +qualifier +qualifiers +qualifies +qualify +qualifying +qualitative +qualities +quality +qualm +qualmier +qualmiest +qualmish +qualms +qualmy +quamash +quamashes +quandang +quandangs +quandaries +quandary +quandong +quandongs +quant +quanta +quantal +quanted +quantic +quantics +quantified +quantifies +quantify +quantifying +quanting +quantitative +quantities +quantity +quantize +quantized +quantizes +quantizing +quantong +quantongs +quants +quantum +quarantine +quarantined +quarantines +quarantining +quare +quark +quarks +quarrel +quarreled +quarreling +quarrelled +quarrelling +quarrels +quarrelsome +quarried +quarrier +quarriers +quarries +quarry +quarrying +quart +quartan +quartans +quarte +quarter +quarterback +quarterbacked +quarterbacking +quarterbacks +quartered +quartering +quarterlies +quarterly +quartermaster +quartermasters +quartern +quarterns +quarters +quartes +quartet +quartets +quartic +quartics +quartile +quartiles +quarto +quartos +quarts +quartz +quartzes +quasar +quasars +quash +quashed +quashes +quashing +quasi +quass +quasses +quassia +quassias +quassin +quassins +quate +quatorze +quatorzes +quatrain +quatrains +quatre +quatres +quaver +quavered +quaverer +quaverers +quavering +quavers +quavery +quay +quayage +quayages +quaylike +quays +quayside +quaysides +quean +queans +queasier +queasiest +queasily +queasiness +queasinesses +queasy +queazier +queaziest +queazy +queen +queened +queening +queenlier +queenliest +queenly +queens +queer +queered +queerer +queerest +queering +queerish +queerly +queerness +queernesses +queers +quell +quelled +queller +quellers +quelling +quells +quench +quenchable +quenched +quencher +quenchers +quenches +quenching +quenchless +quenelle +quenelles +quercine +querida +queridas +queried +querier +queriers +queries +querist +querists +quern +querns +querulous +querulously +querulousness +querulousnesses +query +querying +quest +quested +quester +questers +questing +question +questionable +questioned +questioner +questioners +questioning +questionnaire +questionnaires +questionniare +questionniares +questions +questor +questors +quests +quetzal +quetzales +quetzals +queue +queued +queueing +queuer +queuers +queues +queuing +quey +queys +quezal +quezales +quezals +quibble +quibbled +quibbler +quibblers +quibbles +quibbling +quiche +quiches +quick +quicken +quickened +quickening +quickens +quicker +quickest +quickie +quickies +quickly +quickness +quicknesses +quicks +quicksand +quicksands +quickset +quicksets +quicksilver +quicksilvers +quid +quiddities +quiddity +quidnunc +quidnuncs +quids +quiescence +quiescences +quiescent +quiet +quieted +quieten +quietened +quietening +quietens +quieter +quieters +quietest +quieting +quietism +quietisms +quietist +quietists +quietly +quietness +quietnesses +quiets +quietude +quietudes +quietus +quietuses +quiff +quiffs +quill +quillai +quillais +quilled +quillet +quillets +quilling +quills +quilt +quilted +quilter +quilters +quilting +quiltings +quilts +quinaries +quinary +quinate +quince +quinces +quincunx +quincunxes +quinella +quinellas +quinic +quiniela +quinielas +quinin +quinina +quininas +quinine +quinines +quinins +quinnat +quinnats +quinoa +quinoas +quinoid +quinoids +quinol +quinolin +quinolins +quinols +quinone +quinones +quinsies +quinsy +quint +quintain +quintains +quintal +quintals +quintan +quintans +quintar +quintars +quintessence +quintessences +quintessential +quintet +quintets +quintic +quintics +quintile +quintiles +quintin +quintins +quints +quintuple +quintupled +quintuples +quintuplet +quintuplets +quintupling +quip +quipped +quipping +quippish +quippu +quippus +quips +quipster +quipsters +quipu +quipus +quire +quired +quires +quiring +quirk +quirked +quirkier +quirkiest +quirkily +quirking +quirks +quirky +quirt +quirted +quirting +quirts +quisling +quislings +quit +quitch +quitches +quite +quitrent +quitrents +quits +quitted +quitter +quitters +quitting +quittor +quittors +quiver +quivered +quiverer +quiverers +quivering +quivers +quivery +quixote +quixotes +quixotic +quixotries +quixotry +quiz +quizmaster +quizmasters +quizzed +quizzer +quizzers +quizzes +quizzing +quod +quods +quoin +quoined +quoining +quoins +quoit +quoited +quoiting +quoits +quomodo +quomodos +quondam +quorum +quorums +quota +quotable +quotably +quotas +quotation +quotations +quote +quoted +quoter +quoters +quotes +quoth +quotha +quotient +quotients +quoting +qursh +qurshes +qurush +qurushes +rabato +rabatos +rabbet +rabbeted +rabbeting +rabbets +rabbi +rabbies +rabbin +rabbinate +rabbinates +rabbinic +rabbinical +rabbins +rabbis +rabbit +rabbited +rabbiter +rabbiters +rabbiting +rabbitries +rabbitry +rabbits +rabble +rabbled +rabbler +rabblers +rabbles +rabbling +rabboni +rabbonis +rabic +rabid +rabidities +rabidity +rabidly +rabies +rabietic +raccoon +raccoons +race +racecourse +racecourses +raced +racehorse +racehorses +racemate +racemates +raceme +racemed +racemes +racemic +racemism +racemisms +racemize +racemized +racemizes +racemizing +racemoid +racemose +racemous +racer +racers +races +racetrack +racetracks +raceway +raceways +rachet +rachets +rachial +rachides +rachis +rachises +rachitic +rachitides +rachitis +racial +racially +racier +raciest +racily +raciness +racinesses +racing +racings +racism +racisms +racist +racists +rack +racked +racker +rackers +racket +racketed +racketeer +racketeering +racketeerings +racketeers +racketier +racketiest +racketing +rackets +rackety +racking +rackle +racks +rackwork +rackworks +raclette +raclettes +racon +racons +raconteur +raconteurs +racoon +racoons +racquet +racquets +racy +rad +radar +radars +radded +radding +raddle +raddled +raddles +raddling +radiable +radial +radiale +radialia +radially +radials +radian +radiance +radiances +radiancies +radiancy +radians +radiant +radiantly +radiants +radiate +radiated +radiates +radiating +radiation +radiations +radiator +radiators +radical +radicalism +radicalisms +radically +radicals +radicand +radicands +radicate +radicated +radicates +radicating +radicel +radicels +radices +radicle +radicles +radii +radio +radioactive +radioactivities +radioactivity +radioed +radioing +radiologies +radiologist +radiologists +radiology +radioman +radiomen +radionuclide +radionuclides +radios +radiotherapies +radiotherapy +radish +radishes +radium +radiums +radius +radiuses +radix +radixes +radome +radomes +radon +radons +rads +radula +radulae +radular +radulas +raff +raffia +raffias +raffish +raffishly +raffishness +raffishnesses +raffle +raffled +raffler +rafflers +raffles +raffling +raffs +raft +rafted +rafter +rafters +rafting +rafts +raftsman +raftsmen +rag +raga +ragamuffin +ragamuffins +ragas +ragbag +ragbags +rage +raged +ragee +ragees +rages +ragged +raggeder +raggedest +raggedly +raggedness +raggednesses +raggedy +raggies +ragging +raggle +raggles +raggy +ragi +raging +ragingly +ragis +raglan +raglans +ragman +ragmen +ragout +ragouted +ragouting +ragouts +rags +ragtag +ragtags +ragtime +ragtimes +ragweed +ragweeds +ragwort +ragworts +rah +raia +raias +raid +raided +raider +raiders +raiding +raids +rail +railbird +railbirds +railed +railer +railers +railhead +railheads +railing +railings +railleries +raillery +railroad +railroaded +railroader +railroaders +railroading +railroadings +railroads +rails +railway +railways +raiment +raiments +rain +rainband +rainbands +rainbird +rainbirds +rainbow +rainbows +raincoat +raincoats +raindrop +raindrops +rained +rainfall +rainfalls +rainier +rainiest +rainily +raining +rainless +rainmaker +rainmakers +rainmaking +rainmakings +rainout +rainouts +rains +rainstorm +rainstorms +rainwash +rainwashes +rainwater +rainwaters +rainwear +rainwears +rainy +raisable +raise +raised +raiser +raisers +raises +raisin +raising +raisings +raisins +raisiny +raisonne +raj +raja +rajah +rajahs +rajas +rajes +rake +raked +rakee +rakees +rakehell +rakehells +rakeoff +rakeoffs +raker +rakers +rakes +raki +raking +rakis +rakish +rakishly +rakishness +rakishnesses +rale +rales +rallied +rallier +ralliers +rallies +ralline +rally +rallye +rallyes +rallying +rallyings +rallyist +rallyists +ram +ramate +ramble +rambled +rambler +ramblers +rambles +rambling +rambunctious +rambutan +rambutans +ramee +ramees +ramekin +ramekins +ramenta +ramentum +ramequin +ramequins +ramet +ramets +rami +ramie +ramies +ramification +ramifications +ramified +ramifies +ramiform +ramify +ramifying +ramilie +ramilies +ramillie +ramillies +ramjet +ramjets +rammed +rammer +rammers +rammier +rammiest +ramming +rammish +rammy +ramose +ramosely +ramosities +ramosity +ramous +ramp +rampage +rampaged +rampager +rampagers +rampages +rampaging +rampancies +rampancy +rampant +rampantly +rampart +ramparted +ramparting +ramparts +ramped +rampike +rampikes +ramping +rampion +rampions +rampole +rampoles +ramps +ramrod +ramrods +rams +ramshackle +ramshorn +ramshorns +ramson +ramsons +ramtil +ramtils +ramulose +ramulous +ramus +ran +rance +rances +ranch +ranched +rancher +ranchero +rancheros +ranchers +ranches +ranching +ranchland +ranchlands +ranchman +ranchmen +rancho +ranchos +rancid +rancidities +rancidity +rancidness +rancidnesses +rancor +rancored +rancorous +rancors +rancour +rancours +rand +randan +randans +randies +random +randomization +randomizations +randomize +randomized +randomizes +randomizing +randomly +randomness +randomnesses +randoms +rands +randy +ranee +ranees +rang +range +ranged +rangeland +rangelands +ranger +rangers +ranges +rangier +rangiest +ranginess +ranginesses +ranging +rangy +rani +ranid +ranids +ranis +rank +ranked +ranker +rankers +rankest +ranking +rankish +rankle +rankled +rankles +rankling +rankly +rankness +ranknesses +ranks +ranpike +ranpikes +ransack +ransacked +ransacking +ransacks +ransom +ransomed +ransomer +ransomers +ransoming +ransoms +rant +ranted +ranter +ranters +ranting +rantingly +rants +ranula +ranulas +rap +rapacious +rapaciously +rapaciousness +rapaciousnesses +rapacities +rapacity +rape +raped +raper +rapers +rapes +rapeseed +rapeseeds +raphae +raphe +raphes +raphia +raphias +raphide +raphides +raphis +rapid +rapider +rapidest +rapidities +rapidity +rapidly +rapids +rapier +rapiered +rapiers +rapine +rapines +raping +rapist +rapists +rapparee +rapparees +rapped +rappee +rappees +rappel +rappelled +rappelling +rappels +rappen +rapper +rappers +rapping +rappini +rapport +rapports +raps +rapt +raptly +raptness +raptnesses +raptor +raptors +rapture +raptured +raptures +rapturing +rapturous +rare +rarebit +rarebits +rarefaction +rarefactions +rarefied +rarefier +rarefiers +rarefies +rarefy +rarefying +rarely +rareness +rarenesses +rarer +rareripe +rareripes +rarest +rarified +rarifies +rarify +rarifying +raring +rarities +rarity +ras +rasbora +rasboras +rascal +rascalities +rascality +rascally +rascals +rase +rased +raser +rasers +rases +rash +rasher +rashers +rashes +rashest +rashlike +rashly +rashness +rashnesses +rasing +rasorial +rasp +raspberries +raspberry +rasped +rasper +raspers +raspier +raspiest +rasping +raspish +rasps +raspy +rassle +rassled +rassles +rassling +raster +rasters +rasure +rasures +rat +ratable +ratably +ratafee +ratafees +ratafia +ratafias +ratal +ratals +ratan +ratanies +ratans +ratany +rataplan +rataplanned +rataplanning +rataplans +ratatat +ratatats +ratch +ratches +ratchet +ratchets +rate +rateable +rateably +rated +ratel +ratels +rater +raters +rates +ratfink +ratfinks +ratfish +ratfishes +rath +rathe +rather +rathole +ratholes +raticide +raticides +ratification +ratifications +ratified +ratifier +ratifiers +ratifies +ratify +ratifying +ratine +ratines +rating +ratings +ratio +ration +rational +rationale +rationales +rationalization +rationalizations +rationalize +rationalized +rationalizes +rationalizing +rationally +rationals +rationed +rationing +rations +ratios +ratite +ratites +ratlike +ratlin +ratline +ratlines +ratlins +rato +ratoon +ratooned +ratooner +ratooners +ratooning +ratoons +ratos +rats +ratsbane +ratsbanes +rattail +rattails +rattan +rattans +ratted +ratteen +ratteens +ratten +rattened +rattener +ratteners +rattening +rattens +ratter +ratters +rattier +rattiest +ratting +rattish +rattle +rattled +rattler +rattlers +rattles +rattlesnake +rattlesnakes +rattling +rattlings +rattly +ratton +rattons +rattoon +rattooned +rattooning +rattoons +rattrap +rattraps +ratty +raucities +raucity +raucous +raucously +raucousness +raucousnesses +raunchier +raunchiest +raunchy +ravage +ravaged +ravager +ravagers +ravages +ravaging +rave +raved +ravel +raveled +raveler +ravelers +ravelin +raveling +ravelings +ravelins +ravelled +raveller +ravellers +ravelling +ravellings +ravelly +ravels +raven +ravened +ravener +raveners +ravening +ravenings +ravenous +ravenously +ravenousness +ravenousnesses +ravens +raver +ravers +raves +ravigote +ravigotes +ravin +ravine +ravined +ravines +raving +ravingly +ravings +ravining +ravins +ravioli +raviolis +ravish +ravished +ravisher +ravishers +ravishes +ravishing +ravishment +ravishments +raw +rawboned +rawer +rawest +rawhide +rawhided +rawhides +rawhiding +rawish +rawly +rawness +rawnesses +raws +rax +raxed +raxes +raxing +ray +raya +rayah +rayahs +rayas +rayed +raygrass +raygrasses +raying +rayless +rayon +rayons +rays +raze +razed +razee +razeed +razeeing +razees +razer +razers +razes +razing +razor +razored +razoring +razors +razz +razzed +razzes +razzing +re +reabsorb +reabsorbed +reabsorbing +reabsorbs +reabstract +reabstracted +reabstracting +reabstracts +reaccede +reacceded +reaccedes +reacceding +reaccelerate +reaccelerated +reaccelerates +reaccelerating +reaccent +reaccented +reaccenting +reaccents +reaccept +reaccepted +reaccepting +reaccepts +reacclimatize +reacclimatized +reacclimatizes +reacclimatizing +reaccredit +reaccredited +reaccrediting +reaccredits +reaccumulate +reaccumulated +reaccumulates +reaccumulating +reaccuse +reaccused +reaccuses +reaccusing +reach +reachable +reached +reacher +reachers +reaches +reachieve +reachieved +reachieves +reachieving +reaching +reacquaint +reacquainted +reacquainting +reacquaints +reacquire +reacquired +reacquires +reacquiring +react +reactant +reactants +reacted +reacting +reaction +reactionaries +reactionary +reactions +reactivate +reactivated +reactivates +reactivating +reactivation +reactivations +reactive +reactor +reactors +reacts +read +readabilities +readability +readable +readably +readapt +readapted +readapting +readapts +readd +readded +readdict +readdicted +readdicting +readdicts +readding +readdress +readdressed +readdresses +readdressing +readds +reader +readers +readership +readerships +readied +readier +readies +readiest +readily +readiness +readinesses +reading +readings +readjust +readjustable +readjusted +readjusting +readjustment +readjustments +readjusts +readmit +readmits +readmitted +readmitting +readopt +readopted +readopting +readopts +readorn +readorned +readorning +readorns +readout +readouts +reads +ready +readying +reaffirm +reaffirmed +reaffirming +reaffirms +reaffix +reaffixed +reaffixes +reaffixing +reagent +reagents +reagin +reaginic +reagins +real +realer +reales +realest +realgar +realgars +realia +realign +realigned +realigning +realignment +realignments +realigns +realise +realised +realiser +realisers +realises +realising +realism +realisms +realist +realistic +realistically +realists +realities +reality +realizable +realization +realizations +realize +realized +realizer +realizers +realizes +realizing +reallocate +reallocated +reallocates +reallocating +reallot +reallots +reallotted +reallotting +really +realm +realms +realness +realnesses +reals +realter +realtered +realtering +realters +realties +realty +ream +reamed +reamer +reamers +reaming +reams +reanalyses +reanalysis +reanalyze +reanalyzed +reanalyzes +reanalyzing +reanesthetize +reanesthetized +reanesthetizes +reanesthetizing +reannex +reannexed +reannexes +reannexing +reanoint +reanointed +reanointing +reanoints +reap +reapable +reaped +reaper +reapers +reaphook +reaphooks +reaping +reappear +reappearance +reappearances +reappeared +reappearing +reappears +reapplied +reapplies +reapply +reapplying +reappoint +reappointed +reappointing +reappoints +reapportion +reapportioned +reapportioning +reapportions +reappraisal +reappraisals +reappraise +reappraised +reappraises +reappraising +reapprove +reapproved +reapproves +reapproving +reaps +rear +reared +rearer +rearers +reargue +reargued +reargues +rearguing +rearing +rearm +rearmed +rearmice +rearming +rearmost +rearms +rearouse +rearoused +rearouses +rearousing +rearrange +rearranged +rearranges +rearranging +rearrest +rearrested +rearresting +rearrests +rears +rearward +rearwards +reascend +reascended +reascending +reascends +reascent +reascents +reason +reasonable +reasonableness +reasonablenesses +reasonably +reasoned +reasoner +reasoners +reasoning +reasonings +reasons +reassail +reassailed +reassailing +reassails +reassemble +reassembled +reassembles +reassembling +reassert +reasserted +reasserting +reasserts +reassess +reassessed +reassesses +reassessing +reassessment +reassessments +reassign +reassigned +reassigning +reassignment +reassignments +reassigns +reassociate +reassociated +reassociates +reassociating +reassort +reassorted +reassorting +reassorts +reassume +reassumed +reassumes +reassuming +reassurance +reassurances +reassure +reassured +reassures +reassuring +reassuringly +reata +reatas +reattach +reattached +reattaches +reattaching +reattack +reattacked +reattacking +reattacks +reattain +reattained +reattaining +reattains +reave +reaved +reaver +reavers +reaves +reaving +reavow +reavowed +reavowing +reavows +reawake +reawaked +reawaken +reawakened +reawakening +reawakens +reawakes +reawaking +reawoke +reawoken +reb +rebait +rebaited +rebaiting +rebaits +rebalance +rebalanced +rebalances +rebalancing +rebaptize +rebaptized +rebaptizes +rebaptizing +rebate +rebated +rebater +rebaters +rebates +rebating +rebato +rebatos +rebbe +rebbes +rebec +rebeck +rebecks +rebecs +rebel +rebeldom +rebeldoms +rebelled +rebelling +rebellion +rebellions +rebellious +rebelliously +rebelliousness +rebelliousnesses +rebels +rebid +rebidden +rebidding +rebids +rebill +rebilled +rebilling +rebills +rebind +rebinding +rebinds +rebirth +rebirths +rebloom +rebloomed +reblooming +reblooms +reboant +reboard +reboarded +reboarding +reboards +reboil +reboiled +reboiling +reboils +rebop +rebops +reborn +rebound +rebounded +rebounding +rebounds +rebozo +rebozos +rebranch +rebranched +rebranches +rebranching +rebroadcast +rebroadcasted +rebroadcasting +rebroadcasts +rebs +rebuff +rebuffed +rebuffing +rebuffs +rebuild +rebuilded +rebuilding +rebuilds +rebuilt +rebuke +rebuked +rebuker +rebukers +rebukes +rebuking +reburial +reburials +reburied +reburies +rebury +reburying +rebus +rebuses +rebut +rebuts +rebuttal +rebuttals +rebutted +rebutter +rebutters +rebutting +rebutton +rebuttoned +rebuttoning +rebuttons +rec +recalcitrance +recalcitrances +recalcitrant +recalculate +recalculated +recalculates +recalculating +recall +recalled +recaller +recallers +recalling +recalls +recane +recaned +recanes +recaning +recant +recanted +recanter +recanters +recanting +recants +recap +recapitulate +recapitulated +recapitulates +recapitulating +recapitulation +recapitulations +recapped +recapping +recaps +recapture +recaptured +recaptures +recapturing +recarried +recarries +recarry +recarrying +recast +recasting +recasts +recede +receded +recedes +receding +receipt +receipted +receipting +receipts +receivable +receivables +receive +received +receiver +receivers +receivership +receiverships +receives +receiving +recencies +recency +recent +recenter +recentest +recently +recentness +recentnesses +recept +receptacle +receptacles +reception +receptionist +receptionists +receptions +receptive +receptively +receptiveness +receptivenesses +receptivities +receptivity +receptor +receptors +recepts +recertification +recertifications +recertified +recertifies +recertify +recertifying +recess +recessed +recesses +recessing +recession +recessions +rechange +rechanged +rechanges +rechanging +rechannel +rechanneled +rechanneling +rechannels +recharge +recharged +recharges +recharging +rechart +recharted +recharting +recharts +recheat +recheats +recheck +rechecked +rechecking +rechecks +rechoose +rechooses +rechoosing +rechose +rechosen +rechristen +rechristened +rechristening +rechristens +recipe +recipes +recipient +recipients +reciprocal +reciprocally +reciprocals +reciprocate +reciprocated +reciprocates +reciprocating +reciprocation +reciprocations +reciprocities +reciprocity +recircle +recircled +recircles +recircling +recirculate +recirculated +recirculates +recirculating +recirculation +recirculations +recision +recisions +recital +recitals +recitation +recitations +recite +recited +reciter +reciters +recites +reciting +reck +recked +recking +reckless +recklessly +recklessness +recklessnesses +reckon +reckoned +reckoner +reckoners +reckoning +reckonings +reckons +recks +reclad +reclaim +reclaimable +reclaimed +reclaiming +reclaims +reclamation +reclamations +reclame +reclames +reclasp +reclasped +reclasping +reclasps +reclassification +reclassifications +reclassified +reclassifies +reclassify +reclassifying +reclean +recleaned +recleaning +recleans +recline +reclined +recliner +recliners +reclines +reclining +reclothe +reclothed +reclothes +reclothing +recluse +recluses +recoal +recoaled +recoaling +recoals +recock +recocked +recocking +recocks +recodified +recodifies +recodify +recodifying +recognition +recognitions +recognizable +recognizably +recognizance +recognizances +recognize +recognized +recognizes +recognizing +recoil +recoiled +recoiler +recoilers +recoiling +recoils +recoin +recoined +recoining +recoins +recollection +recollections +recolonize +recolonized +recolonizes +recolonizing +recolor +recolored +recoloring +recolors +recomb +recombed +recombine +recombined +recombines +recombing +recombining +recombs +recommend +recommendable +recommendation +recommendations +recommendatory +recommended +recommender +recommenders +recommending +recommends +recommit +recommits +recommitted +recommitting +recompense +recompensed +recompenses +recompensing +recompile +recompiled +recompiles +recompiling +recompute +recomputed +recomputes +recomputing +recon +reconceive +reconceived +reconceives +reconceiving +reconcilable +reconcile +reconciled +reconcilement +reconcilements +reconciler +reconcilers +reconciles +reconciliation +reconciliations +reconciling +recondite +reconfigure +reconfigured +reconfigures +reconfiguring +reconnaissance +reconnaissances +reconnect +reconnected +reconnecting +reconnects +reconnoiter +reconnoitered +reconnoitering +reconnoiters +reconquer +reconquered +reconquering +reconquers +reconquest +reconquests +recons +reconsider +reconsideration +reconsiderations +reconsidered +reconsidering +reconsiders +reconsolidate +reconsolidated +reconsolidates +reconsolidating +reconstruct +reconstructed +reconstructing +reconstructs +recontaminate +recontaminated +recontaminates +recontaminating +reconvene +reconvened +reconvenes +reconvening +reconvey +reconveyed +reconveying +reconveys +reconvict +reconvicted +reconvicting +reconvicts +recook +recooked +recooking +recooks +recopied +recopies +recopy +recopying +record +recordable +recorded +recorder +recorders +recording +records +recount +recounted +recounting +recounts +recoup +recoupe +recouped +recouping +recouple +recoupled +recouples +recoupling +recoups +recourse +recourses +recover +recoverable +recovered +recoveries +recovering +recovers +recovery +recrate +recrated +recrates +recrating +recreant +recreants +recreate +recreated +recreates +recreating +recreation +recreational +recreations +recreative +recriminate +recriminated +recriminates +recriminating +recrimination +recriminations +recriminatory +recross +recrossed +recrosses +recrossing +recrown +recrowned +recrowning +recrowns +recruit +recruited +recruiting +recruitment +recruitments +recruits +recs +recta +rectal +rectally +rectangle +rectangles +recti +rectification +rectifications +rectified +rectifier +rectifiers +rectifies +rectify +rectifying +rectitude +rectitudes +recto +rector +rectorate +rectorates +rectorial +rectories +rectors +rectory +rectos +rectrices +rectrix +rectum +rectums +rectus +recumbent +recuperate +recuperated +recuperates +recuperating +recuperation +recuperations +recuperative +recur +recurred +recurrence +recurrences +recurrent +recurring +recurs +recurve +recurved +recurves +recurving +recusant +recusants +recuse +recused +recuses +recusing +recut +recuts +recutting +recycle +recycled +recycles +recycling +red +redact +redacted +redacting +redactor +redactors +redacts +redan +redans +redargue +redargued +redargues +redarguing +redate +redated +redates +redating +redbait +redbaited +redbaiting +redbaits +redbay +redbays +redbird +redbirds +redbone +redbones +redbrick +redbud +redbuds +redbug +redbugs +redcap +redcaps +redcoat +redcoats +redd +redded +redden +reddened +reddening +reddens +redder +redders +reddest +redding +reddish +reddle +reddled +reddles +reddling +redds +rede +redear +redears +redecorate +redecorated +redecorates +redecorating +reded +rededicate +rededicated +rededicates +rededicating +rededication +rededications +redeem +redeemable +redeemed +redeemer +redeemers +redeeming +redeems +redefeat +redefeated +redefeating +redefeats +redefied +redefies +redefine +redefined +redefines +redefining +redefy +redefying +redemand +redemanded +redemanding +redemands +redemption +redemptions +redemptive +redemptory +redenied +redenies +redeny +redenying +redeploy +redeployed +redeploying +redeploys +redeposit +redeposited +redepositing +redeposits +redes +redesign +redesignate +redesignated +redesignates +redesignating +redesigned +redesigning +redesigns +redevelop +redeveloped +redeveloping +redevelops +redeye +redeyes +redfin +redfins +redfish +redfishes +redhead +redheaded +redheads +redhorse +redhorses +redia +rediae +redial +redias +redid +redigest +redigested +redigesting +redigests +reding +redip +redipped +redipping +redips +redipt +redirect +redirected +redirecting +redirects +rediscover +rediscovered +rediscoveries +rediscovering +rediscovers +rediscovery +redissolve +redissolved +redissolves +redissolving +redistribute +redistributed +redistributes +redistributing +redivide +redivided +redivides +redividing +redleg +redlegs +redly +redneck +rednecks +redness +rednesses +redo +redock +redocked +redocking +redocks +redoes +redoing +redolence +redolences +redolent +redolently +redone +redos +redouble +redoubled +redoubles +redoubling +redoubt +redoubtable +redoubts +redound +redounded +redounding +redounds +redout +redouts +redowa +redowas +redox +redoxes +redpoll +redpolls +redraft +redrafted +redrafting +redrafts +redraw +redrawer +redrawers +redrawing +redrawn +redraws +redress +redressed +redresses +redressing +redrew +redried +redries +redrill +redrilled +redrilling +redrills +redrive +redriven +redrives +redriving +redroot +redroots +redrove +redry +redrying +reds +redshank +redshanks +redshirt +redshirted +redshirting +redshirts +redskin +redskins +redstart +redstarts +redtop +redtops +reduce +reduced +reducer +reducers +reduces +reducible +reducing +reduction +reductions +redundancies +redundancy +redundant +redundantly +reduviid +reduviids +redware +redwares +redwing +redwings +redwood +redwoods +redye +redyed +redyeing +redyes +ree +reearn +reearned +reearning +reearns +reecho +reechoed +reechoes +reechoing +reed +reedbird +reedbirds +reedbuck +reedbucks +reeded +reedier +reediest +reedified +reedifies +reedify +reedifying +reeding +reedings +reedit +reedited +reediting +reedits +reedling +reedlings +reeds +reedy +reef +reefed +reefer +reefers +reefier +reefiest +reefing +reefs +reefy +reeject +reejected +reejecting +reejects +reek +reeked +reeker +reekers +reekier +reekiest +reeking +reeks +reeky +reel +reelable +reelect +reelected +reelecting +reelects +reeled +reeler +reelers +reeling +reels +reembark +reembarked +reembarking +reembarks +reembodied +reembodies +reembody +reembodying +reemerge +reemerged +reemergence +reemergences +reemerges +reemerging +reemit +reemits +reemitted +reemitting +reemphasize +reemphasized +reemphasizes +reemphasizing +reemploy +reemployed +reemploying +reemploys +reenact +reenacted +reenacting +reenacts +reendow +reendowed +reendowing +reendows +reenergize +reenergized +reenergizes +reenergizing +reengage +reengaged +reengages +reengaging +reenjoy +reenjoyed +reenjoying +reenjoys +reenlist +reenlisted +reenlisting +reenlistness +reenlistnesses +reenlists +reenter +reentered +reentering +reenters +reentries +reentry +reequip +reequipped +reequipping +reequips +reerect +reerected +reerecting +reerects +rees +reest +reestablish +reestablished +reestablishes +reestablishing +reestablishment +reestablishments +reested +reestimate +reestimated +reestimates +reestimating +reesting +reests +reevaluate +reevaluated +reevaluates +reevaluating +reevaluation +reevaluations +reeve +reeved +reeves +reeving +reevoke +reevoked +reevokes +reevoking +reexamination +reexaminations +reexamine +reexamined +reexamines +reexamining +reexpel +reexpelled +reexpelling +reexpels +reexport +reexported +reexporting +reexports +ref +reface +refaced +refaces +refacing +refall +refallen +refalling +refalls +refasten +refastened +refastening +refastens +refect +refected +refecting +refects +refed +refeed +refeeding +refeeds +refel +refell +refelled +refelling +refels +refer +referable +referee +refereed +refereeing +referees +reference +references +referenda +referendum +referendums +referent +referents +referral +referrals +referred +referrer +referrers +referring +refers +reffed +reffing +refight +refighting +refights +refigure +refigured +refigures +refiguring +refile +refiled +refiles +refiling +refill +refillable +refilled +refilling +refills +refilm +refilmed +refilming +refilms +refilter +refiltered +refiltering +refilters +refinance +refinanced +refinances +refinancing +refind +refinding +refinds +refine +refined +refinement +refinements +refiner +refineries +refiners +refinery +refines +refining +refinish +refinished +refinishes +refinishing +refire +refired +refires +refiring +refit +refits +refitted +refitting +refix +refixed +refixes +refixing +reflate +reflated +reflates +reflating +reflect +reflected +reflecting +reflection +reflections +reflective +reflector +reflectors +reflects +reflet +reflets +reflew +reflex +reflexed +reflexes +reflexing +reflexive +reflexively +reflexiveness +reflexivenesses +reflexly +reflies +refloat +refloated +refloating +refloats +reflood +reflooded +reflooding +refloods +reflow +reflowed +reflower +reflowered +reflowering +reflowers +reflowing +reflown +reflows +refluent +reflux +refluxed +refluxes +refluxing +refly +reflying +refocus +refocused +refocuses +refocusing +refocussed +refocusses +refocussing +refold +refolded +refolding +refolds +reforest +reforested +reforesting +reforests +reforge +reforged +reforges +reforging +reform +reformat +reformatories +reformatory +reformats +reformatted +reformatting +reformed +reformer +reformers +reforming +reforms +reformulate +reformulated +reformulates +reformulating +refought +refound +refounded +refounding +refounds +refract +refracted +refracting +refraction +refractions +refractive +refractory +refracts +refrain +refrained +refraining +refrainment +refrainments +refrains +reframe +reframed +reframes +reframing +refreeze +refreezes +refreezing +refresh +refreshed +refresher +refreshers +refreshes +refreshing +refreshingly +refreshment +refreshments +refried +refries +refrigerant +refrigerants +refrigerate +refrigerated +refrigerates +refrigerating +refrigeration +refrigerations +refrigerator +refrigerators +refront +refronted +refronting +refronts +refroze +refrozen +refry +refrying +refs +reft +refuel +refueled +refueling +refuelled +refuelling +refuels +refuge +refuged +refugee +refugees +refuges +refugia +refuging +refugium +refund +refundable +refunded +refunder +refunders +refunding +refunds +refurbish +refurbished +refurbishes +refurbishing +refusal +refusals +refuse +refused +refuser +refusers +refuses +refusing +refutal +refutals +refutation +refutations +refute +refuted +refuter +refuters +refutes +refuting +regain +regained +regainer +regainers +regaining +regains +regal +regale +regaled +regalement +regalements +regales +regalia +regaling +regalities +regality +regally +regard +regarded +regardful +regarding +regardless +regards +regather +regathered +regathering +regathers +regatta +regattas +regauge +regauged +regauges +regauging +regave +regear +regeared +regearing +regears +regelate +regelated +regelates +regelating +regencies +regency +regenerate +regenerated +regenerates +regenerating +regeneration +regenerations +regenerative +regenerator +regenerators +regent +regental +regents +reges +regicide +regicides +regild +regilded +regilding +regilds +regilt +regime +regimen +regimens +regiment +regimental +regimentation +regimentations +regimented +regimenting +regiments +regimes +regina +reginae +reginal +reginas +region +regional +regionally +regionals +regions +register +registered +registering +registers +registrar +registrars +registration +registrations +registries +registry +regius +regive +regiven +regives +regiving +reglaze +reglazed +reglazes +reglazing +reglet +reglets +regloss +reglossed +reglosses +reglossing +reglow +reglowed +reglowing +reglows +reglue +reglued +reglues +regluing +regma +regmata +regna +regnal +regnancies +regnancy +regnant +regnum +regolith +regoliths +regorge +regorged +regorges +regorging +regosol +regosols +regrade +regraded +regrades +regrading +regraft +regrafted +regrafting +regrafts +regrant +regranted +regranting +regrants +regrate +regrated +regrates +regrating +regreet +regreeted +regreeting +regreets +regress +regressed +regresses +regressing +regression +regressions +regressive +regressor +regressors +regret +regretfully +regrets +regrettable +regrettably +regretted +regretter +regretters +regretting +regrew +regrind +regrinding +regrinds +regroove +regrooved +regrooves +regrooving +reground +regroup +regrouped +regrouping +regroups +regrow +regrowing +regrown +regrows +regrowth +regrowths +regular +regularities +regularity +regularize +regularized +regularizes +regularizing +regularly +regulars +regulate +regulated +regulates +regulating +regulation +regulations +regulative +regulator +regulators +regulatory +reguli +reguline +regulus +reguluses +regurgitate +regurgitated +regurgitates +regurgitating +regurgitation +regurgitations +rehabilitate +rehabilitated +rehabilitates +rehabilitating +rehabilitation +rehabilitations +rehabilitative +rehammer +rehammered +rehammering +rehammers +rehandle +rehandled +rehandles +rehandling +rehang +rehanged +rehanging +rehangs +reharden +rehardened +rehardening +rehardens +rehash +rehashed +rehashes +rehashing +rehear +reheard +rehearing +rehears +rehearsal +rehearsals +rehearse +rehearsed +rehearser +rehearsers +rehearses +rehearsing +reheat +reheated +reheater +reheaters +reheating +reheats +reheel +reheeled +reheeling +reheels +rehem +rehemmed +rehemming +rehems +rehinge +rehinged +rehinges +rehinging +rehire +rehired +rehires +rehiring +rehospitalization +rehospitalizations +rehospitalize +rehospitalized +rehospitalizes +rehospitalizing +rehouse +rehoused +rehouses +rehousing +rehung +rei +reidentified +reidentifies +reidentify +reidentifying +reif +reified +reifier +reifiers +reifies +reifs +reify +reifying +reign +reigned +reigning +reignite +reignited +reignites +reigniting +reigns +reimage +reimaged +reimages +reimaging +reimbursable +reimburse +reimbursed +reimbursement +reimbursements +reimburses +reimbursing +reimplant +reimplanted +reimplanting +reimplants +reimport +reimported +reimporting +reimports +reimpose +reimposed +reimposes +reimposing +rein +reincarnate +reincarnated +reincarnates +reincarnating +reincarnation +reincarnations +reincite +reincited +reincites +reinciting +reincorporate +reincorporated +reincorporates +reincorporating +reincur +reincurred +reincurring +reincurs +reindeer +reindeers +reindex +reindexed +reindexes +reindexing +reinduce +reinduced +reinduces +reinducing +reinduct +reinducted +reinducting +reinducts +reined +reinfect +reinfected +reinfecting +reinfection +reinfections +reinfects +reinforcement +reinforcements +reinforcer +reinforcers +reinform +reinformed +reinforming +reinforms +reinfuse +reinfused +reinfuses +reinfusing +reining +reinjection +reinjections +reinjure +reinjured +reinjures +reinjuring +reinless +reinoculate +reinoculated +reinoculates +reinoculating +reins +reinsert +reinserted +reinserting +reinsertion +reinsertions +reinserts +reinsman +reinsmen +reinspect +reinspected +reinspecting +reinspects +reinstall +reinstalled +reinstalling +reinstalls +reinstate +reinstated +reinstates +reinstating +reinstitute +reinstituted +reinstitutes +reinstituting +reinsure +reinsured +reinsures +reinsuring +reintegrate +reintegrated +reintegrates +reintegrating +reintegration +reintegrations +reinter +reinterred +reinterring +reinters +reintroduce +reintroduced +reintroduces +reintroducing +reinvent +reinvented +reinventing +reinvents +reinvest +reinvested +reinvestigate +reinvestigated +reinvestigates +reinvestigating +reinvestigation +reinvestigations +reinvesting +reinvests +reinvigorate +reinvigorated +reinvigorates +reinvigorating +reinvite +reinvited +reinvites +reinviting +reinvoke +reinvoked +reinvokes +reinvoking +reis +reissue +reissued +reissuer +reissuers +reissues +reissuing +reitbok +reitboks +reiterate +reiterated +reiterates +reiterating +reiteration +reiterations +reive +reived +reiver +reivers +reives +reiving +reject +rejected +rejectee +rejectees +rejecter +rejecters +rejecting +rejection +rejections +rejector +rejectors +rejects +rejigger +rejiggered +rejiggering +rejiggers +rejoice +rejoiced +rejoicer +rejoicers +rejoices +rejoicing +rejoicings +rejoin +rejoinder +rejoinders +rejoined +rejoining +rejoins +rejudge +rejudged +rejudges +rejudging +rejuvenate +rejuvenated +rejuvenates +rejuvenating +rejuvenation +rejuvenations +rekey +rekeyed +rekeying +rekeys +rekindle +rekindled +rekindles +rekindling +reknit +reknits +reknitted +reknitting +relabel +relabeled +relabeling +relabelled +relabelling +relabels +relace +relaced +relaces +relacing +relaid +relandscape +relandscaped +relandscapes +relandscaping +relapse +relapsed +relapser +relapsers +relapses +relapsing +relatable +relate +related +relater +relaters +relates +relating +relation +relations +relationship +relationships +relative +relatively +relativeness +relativenesses +relatives +relator +relators +relaunch +relaunched +relaunches +relaunching +relax +relaxant +relaxants +relaxation +relaxations +relaxed +relaxer +relaxers +relaxes +relaxin +relaxing +relaxins +relay +relayed +relaying +relays +relearn +relearned +relearning +relearns +relearnt +release +released +releaser +releasers +releases +releasing +relegate +relegated +relegates +relegating +relegation +relegations +relend +relending +relends +relent +relented +relenting +relentless +relentlessly +relentlessness +relentlessnesses +relents +relet +relets +reletter +relettered +relettering +reletters +reletting +relevance +relevances +relevant +relevantly +reliabilities +reliability +reliable +reliableness +reliablenesses +reliably +reliance +reliances +reliant +relic +relics +relict +relicts +relied +relief +reliefs +relier +reliers +relies +relieve +relieved +reliever +relievers +relieves +relieving +relievo +relievos +relight +relighted +relighting +relights +religion +religionist +religionists +religions +religious +religiously +reline +relined +relines +relining +relinquish +relinquished +relinquishes +relinquishing +relinquishment +relinquishments +relique +reliques +relish +relishable +relished +relishes +relishing +relist +relisted +relisting +relists +relit +relive +relived +relives +reliving +reload +reloaded +reloader +reloaders +reloading +reloads +reloan +reloaned +reloaning +reloans +relocate +relocated +relocates +relocating +relocation +relocations +relucent +reluct +reluctance +reluctant +reluctantly +relucted +relucting +relucts +relume +relumed +relumes +relumine +relumined +relumines +reluming +relumining +rely +relying +rem +remade +remail +remailed +remailing +remails +remain +remainder +remainders +remained +remaining +remains +remake +remakes +remaking +reman +remand +remanded +remanding +remands +remanent +remanned +remanning +remans +remap +remapped +remapping +remaps +remark +remarkable +remarkableness +remarkablenesses +remarkably +remarked +remarker +remarkers +remarking +remarks +remarque +remarques +remarriage +remarriages +remarried +remarries +remarry +remarrying +rematch +rematched +rematches +rematching +remeasure +remeasured +remeasures +remeasuring +remedial +remedially +remedied +remedies +remedy +remedying +remeet +remeeting +remeets +remelt +remelted +remelting +remelts +remember +remembered +remembering +remembers +remend +remended +remending +remends +remerge +remerged +remerges +remerging +remet +remex +remiges +remigial +remind +reminded +reminder +reminders +reminding +reminds +reminisce +reminisced +reminiscence +reminiscences +reminiscent +reminiscently +reminisces +reminiscing +remint +reminted +reminting +remints +remise +remised +remises +remising +remiss +remission +remissions +remissly +remissness +remissnesses +remit +remits +remittal +remittals +remittance +remittances +remitted +remitter +remitters +remitting +remittor +remittors +remix +remixed +remixes +remixing +remixt +remnant +remnants +remobilize +remobilized +remobilizes +remobilizing +remodel +remodeled +remodeling +remodelled +remodelling +remodels +remodified +remodifies +remodify +remodifying +remoisten +remoistened +remoistening +remoistens +remolade +remolades +remold +remolded +remolding +remolds +remonstrance +remonstrances +remonstrate +remonstrated +remonstrates +remonstrating +remonstration +remonstrations +remora +remoras +remorid +remorse +remorseful +remorseless +remorses +remote +remotely +remoteness +remotenesses +remoter +remotest +remotion +remotions +remotivate +remotivated +remotivates +remotivating +remount +remounted +remounting +remounts +removable +removal +removals +remove +removed +remover +removers +removes +removing +rems +remuda +remudas +remunerate +remunerated +remunerates +remunerating +remuneration +remunerations +remunerative +remuneratively +remunerativeness +remunerativenesses +remunerator +remunerators +remuneratory +renaissance +renaissances +renal +rename +renamed +renames +renaming +renature +renatured +renatures +renaturing +rend +rended +render +rendered +renderer +renderers +rendering +renders +rendezvous +rendezvoused +rendezvousing +rendible +rending +rendition +renditions +rends +rendzina +rendzinas +renegade +renegaded +renegades +renegading +renegado +renegadoes +renegados +renege +reneged +reneger +renegers +reneges +reneging +renegotiate +renegotiated +renegotiates +renegotiating +renew +renewable +renewal +renewals +renewed +renewer +renewers +renewing +renews +reniform +renig +renigged +renigging +renigs +renin +renins +renitent +rennase +rennases +rennet +rennets +rennin +rennins +renogram +renograms +renotified +renotifies +renotify +renotifying +renounce +renounced +renouncement +renouncements +renounces +renouncing +renovate +renovated +renovates +renovating +renovation +renovations +renovator +renovators +renown +renowned +renowning +renowns +rent +rentable +rental +rentals +rente +rented +renter +renters +rentes +rentier +rentiers +renting +rents +renumber +renumbered +renumbering +renumbers +renunciation +renunciations +renvoi +renvois +reobject +reobjected +reobjecting +reobjects +reobtain +reobtained +reobtaining +reobtains +reoccupied +reoccupies +reoccupy +reoccupying +reoccur +reoccurred +reoccurrence +reoccurrences +reoccurring +reoccurs +reoffer +reoffered +reoffering +reoffers +reoil +reoiled +reoiling +reoils +reopen +reopened +reopening +reopens +reoperate +reoperated +reoperates +reoperating +reoppose +reopposed +reopposes +reopposing +reorchestrate +reorchestrated +reorchestrates +reorchestrating +reordain +reordained +reordaining +reordains +reorder +reordered +reordering +reorders +reorganization +reorganizations +reorganize +reorganized +reorganizes +reorganizing +reorient +reoriented +reorienting +reorients +reovirus +reoviruses +rep +repacified +repacifies +repacify +repacifying +repack +repacked +repacking +repacks +repaid +repaint +repainted +repainting +repaints +repair +repaired +repairer +repairers +repairing +repairman +repairmen +repairs +repand +repandly +repaper +repapered +repapering +repapers +reparation +reparations +repartee +repartees +repass +repassed +repasses +repassing +repast +repasted +repasting +repasts +repatriate +repatriated +repatriates +repatriating +repatriation +repatriations +repave +repaved +repaves +repaving +repay +repayable +repaying +repayment +repayments +repays +repeal +repealed +repealer +repealers +repealing +repeals +repeat +repeatable +repeated +repeatedly +repeater +repeaters +repeating +repeats +repel +repelled +repellent +repellents +repeller +repellers +repelling +repels +repent +repentance +repentances +repentant +repented +repenter +repenters +repenting +repents +repeople +repeopled +repeoples +repeopling +repercussion +repercussions +reperk +reperked +reperking +reperks +repertoire +repertoires +repertories +repertory +repetend +repetends +repetition +repetitions +repetitious +repetitiously +repetitiousness +repetitiousnesses +repetitive +repetitively +repetitiveness +repetitivenesses +rephotograph +rephotographed +rephotographing +rephotographs +rephrase +rephrased +rephrases +rephrasing +repin +repine +repined +repiner +repiners +repines +repining +repinned +repinning +repins +replace +replaceable +replaced +replacement +replacements +replacer +replacers +replaces +replacing +replan +replanned +replanning +replans +replant +replanted +replanting +replants +replate +replated +replates +replating +replay +replayed +replaying +replays +repledge +repledged +repledges +repledging +replenish +replenished +replenishes +replenishing +replenishment +replenishments +replete +repleteness +repletenesses +repletion +repletions +replevied +replevies +replevin +replevined +replevining +replevins +replevy +replevying +replica +replicas +replicate +replicated +replicates +replicating +replied +replier +repliers +replies +replunge +replunged +replunges +replunging +reply +replying +repolish +repolished +repolishes +repolishing +repopulate +repopulated +repopulates +repopulating +report +reportage +reportages +reported +reportedly +reporter +reporters +reporting +reportorial +reports +reposal +reposals +repose +reposed +reposeful +reposer +reposers +reposes +reposing +reposit +reposited +repositing +repository +reposits +repossess +repossession +repossessions +repour +repoured +repouring +repours +repousse +repousses +repower +repowered +repowering +repowers +repp +repped +repps +reprehend +reprehends +reprehensible +reprehensibly +reprehension +reprehensions +represent +representation +representations +representative +representatively +representativeness +representativenesses +representatives +represented +representing +represents +repress +repressed +represses +repressing +repression +repressions +repressive +repressurize +repressurized +repressurizes +repressurizing +reprice +repriced +reprices +repricing +reprieve +reprieved +reprieves +reprieving +reprimand +reprimanded +reprimanding +reprimands +reprint +reprinted +reprinting +reprints +reprisal +reprisals +reprise +reprised +reprises +reprising +repro +reproach +reproached +reproaches +reproachful +reproachfully +reproachfulness +reproachfulnesses +reproaching +reprobate +reprobates +reprobation +reprobations +reprobe +reprobed +reprobes +reprobing +reprocess +reprocessed +reprocesses +reprocessing +reproduce +reproduced +reproduces +reproducible +reproducing +reproduction +reproductions +reproductive +reprogram +reprogramed +reprograming +reprograms +reproof +reproofs +repropose +reproposed +reproposes +reproposing +repros +reproval +reprovals +reprove +reproved +reprover +reprovers +reproves +reproving +reps +reptant +reptile +reptiles +republic +republican +republicanism +republicanisms +republicans +republics +repudiate +repudiated +repudiates +repudiating +repudiation +repudiations +repudiator +repudiators +repugn +repugnance +repugnances +repugnant +repugnantly +repugned +repugning +repugns +repulse +repulsed +repulser +repulsers +repulses +repulsing +repulsion +repulsions +repulsive +repulsively +repulsiveness +repulsivenesses +repurified +repurifies +repurify +repurifying +repursue +repursued +repursues +repursuing +reputable +reputabley +reputation +reputations +repute +reputed +reputedly +reputes +reputing +request +requested +requesting +requests +requiem +requiems +requin +requins +require +required +requirement +requirements +requirer +requirers +requires +requiring +requisite +requisites +requisition +requisitioned +requisitioning +requisitions +requital +requitals +requite +requited +requiter +requiters +requites +requiting +reran +reread +rereading +rereads +rerecord +rerecorded +rerecording +rerecords +reredos +reredoses +reregister +reregistered +reregistering +reregisters +reremice +reremouse +rereward +rerewards +rerise +rerisen +rerises +rerising +reroll +rerolled +reroller +rerollers +rerolling +rerolls +rerose +reroute +rerouted +reroutes +rerouting +rerun +rerunning +reruns +res +resaddle +resaddled +resaddles +resaddling +resaid +resail +resailed +resailing +resails +resalable +resale +resales +resalute +resaluted +resalutes +resaluting +resample +resampled +resamples +resampling +resaw +resawed +resawing +resawn +resaws +resay +resaying +resays +rescale +rescaled +rescales +rescaling +reschedule +rescheduled +reschedules +rescheduling +rescind +rescinded +rescinder +rescinders +rescinding +rescinds +rescission +rescissions +rescore +rescored +rescores +rescoring +rescreen +rescreened +rescreening +rescreens +rescript +rescripts +rescue +rescued +rescuer +rescuers +rescues +rescuing +reseal +resealed +resealing +reseals +research +researched +researcher +researchers +researches +researching +reseat +reseated +reseating +reseats +reseau +reseaus +reseaux +resect +resected +resecting +resects +reseda +resedas +resee +reseed +reseeded +reseeding +reseeds +reseeing +reseek +reseeking +reseeks +reseen +resees +resegregate +resegregated +resegregates +resegregating +reseize +reseized +reseizes +reseizing +resell +reseller +resellers +reselling +resells +resemblance +resemblances +resemble +resembled +resembles +resembling +resend +resending +resends +resent +resented +resentence +resentenced +resentences +resentencing +resentful +resentfully +resenting +resentment +resentments +resents +reservation +reservations +reserve +reserved +reserver +reservers +reserves +reserving +reset +resets +resetter +resetters +resetting +resettle +resettled +resettles +resettling +resew +resewed +resewing +resewn +resews +resh +reshape +reshaped +reshaper +reshapers +reshapes +reshaping +reshes +reship +reshipped +reshipping +reships +reshod +reshoe +reshoeing +reshoes +reshoot +reshooting +reshoots +reshot +reshow +reshowed +reshowing +reshown +reshows +resid +reside +resided +residence +residences +resident +residential +residents +resider +residers +resides +residing +resids +residua +residual +residuals +residue +residues +residuum +residuums +resift +resifted +resifting +resifts +resign +resignation +resignations +resigned +resignedly +resigner +resigners +resigning +resigns +resile +resiled +resiles +resilience +resiliences +resiliencies +resiliency +resilient +resiling +resilver +resilvered +resilvering +resilvers +resin +resinate +resinated +resinates +resinating +resined +resinified +resinifies +resinify +resinifying +resining +resinoid +resinoids +resinous +resins +resiny +resist +resistable +resistance +resistances +resistant +resisted +resister +resisters +resistible +resisting +resistless +resistor +resistors +resists +resize +resized +resizes +resizing +resmelt +resmelted +resmelting +resmelts +resmooth +resmoothed +resmoothing +resmooths +resojet +resojets +resold +resolder +resoldered +resoldering +resolders +resole +resoled +resoles +resolidified +resolidifies +resolidify +resolidifying +resoling +resolute +resolutely +resoluteness +resolutenesses +resoluter +resolutes +resolutest +resolution +resolutions +resolvable +resolve +resolved +resolver +resolvers +resolves +resolving +resonance +resonances +resonant +resonantly +resonants +resonate +resonated +resonates +resonating +resorb +resorbed +resorbing +resorbs +resorcin +resorcins +resort +resorted +resorter +resorters +resorting +resorts +resought +resound +resounded +resounding +resoundingly +resounds +resource +resourceful +resourcefulness +resourcefulnesses +resources +resow +resowed +resowing +resown +resows +respect +respectabilities +respectability +respectable +respectably +respected +respecter +respecters +respectful +respectfully +respectfulness +respectfulnesses +respecting +respective +respectively +respects +respell +respelled +respelling +respells +respelt +respiration +respirations +respirator +respiratories +respirators +respiratory +respire +respired +respires +respiring +respite +respited +respites +respiting +resplendence +resplendences +resplendent +resplendently +respond +responded +respondent +respondents +responder +responders +responding +responds +responsa +response +responses +responsibilities +responsibility +responsible +responsibleness +responsiblenesses +responsiblities +responsiblity +responsibly +responsive +responsiveness +responsivenesses +resprang +respread +respreading +respreads +respring +respringing +resprings +resprung +rest +restack +restacked +restacking +restacks +restaff +restaffed +restaffing +restaffs +restage +restaged +restages +restaging +restamp +restamped +restamping +restamps +restart +restartable +restarted +restarting +restarts +restate +restated +restatement +restatements +restates +restating +restaurant +restaurants +rested +rester +resters +restful +restfuller +restfullest +restfully +restimulate +restimulated +restimulates +restimulating +resting +restitution +restitutions +restive +restively +restiveness +restivenesses +restless +restlessness +restlessnesses +restock +restocked +restocking +restocks +restorable +restoral +restorals +restoration +restorations +restorative +restoratives +restore +restored +restorer +restorers +restores +restoring +restrain +restrainable +restrained +restrainedly +restrainer +restrainers +restraining +restrains +restraint +restraints +restricken +restrict +restricted +restricting +restriction +restrictions +restrictive +restrictively +restricts +restrike +restrikes +restriking +restring +restringing +restrings +restrive +restriven +restrives +restriving +restrove +restruck +restructure +restructured +restructures +restructuring +restrung +rests +restudied +restudies +restudy +restudying +restuff +restuffed +restuffing +restuffs +restyle +restyled +restyles +restyling +resubmit +resubmits +resubmitted +resubmitting +result +resultant +resulted +resulting +results +resume +resumed +resumer +resumers +resumes +resuming +resummon +resummoned +resummoning +resummons +resumption +resumptions +resupine +resupplied +resupplies +resupply +resupplying +resurface +resurfaced +resurfaces +resurfacing +resurge +resurged +resurgence +resurgences +resurgent +resurges +resurging +resurrect +resurrected +resurrecting +resurrection +resurrections +resurrects +resurvey +resurveyed +resurveying +resurveys +resuscitate +resuscitated +resuscitates +resuscitating +resuscitation +resuscitations +resuscitator +resuscitators +resyntheses +resynthesis +resynthesize +resynthesized +resynthesizes +resynthesizing +ret +retable +retables +retail +retailed +retailer +retailers +retailing +retailor +retailored +retailoring +retailors +retails +retain +retained +retainer +retainers +retaining +retains +retake +retaken +retaker +retakers +retakes +retaking +retaliate +retaliated +retaliates +retaliating +retaliation +retaliations +retaliatory +retard +retardation +retardations +retarded +retarder +retarders +retarding +retards +retaste +retasted +retastes +retasting +retaught +retch +retched +retches +retching +rete +reteach +reteaches +reteaching +retell +retelling +retells +retem +retems +retene +retenes +retention +retentions +retentive +retest +retested +retesting +retests +rethink +rethinking +rethinks +rethought +rethread +rethreaded +rethreading +rethreads +retia +retial +retiarii +retiary +reticence +reticences +reticent +reticently +reticle +reticles +reticula +reticule +reticules +retie +retied +reties +retiform +retighten +retightened +retightening +retightens +retime +retimed +retimes +retiming +retina +retinae +retinal +retinals +retinas +retinene +retinenes +retinite +retinites +retinol +retinols +retint +retinted +retinting +retints +retinue +retinued +retinues +retinula +retinulae +retinulas +retirant +retirants +retire +retired +retiree +retirees +retirement +retirements +retirer +retirers +retires +retiring +retitle +retitled +retitles +retitling +retold +retook +retool +retooled +retooling +retools +retort +retorted +retorter +retorters +retorting +retorts +retouch +retouched +retouches +retouching +retrace +retraced +retraces +retracing +retrack +retracked +retracking +retracks +retract +retractable +retracted +retracting +retraction +retractions +retracts +retrain +retrained +retraining +retrains +retral +retrally +retranslate +retranslated +retranslates +retranslating +retransmit +retransmited +retransmiting +retransmits +retransplant +retransplanted +retransplanting +retransplants +retread +retreaded +retreading +retreads +retreat +retreated +retreating +retreatment +retreats +retrench +retrenched +retrenches +retrenching +retrenchment +retrenchments +retrial +retrials +retribution +retributions +retributive +retributory +retried +retries +retrievabilities +retrievability +retrievable +retrieval +retrievals +retrieve +retrieved +retriever +retrievers +retrieves +retrieving +retrim +retrimmed +retrimming +retrims +retroact +retroacted +retroacting +retroactive +retroactively +retroacts +retrofit +retrofits +retrofitted +retrofitting +retrograde +retrogress +retrogressed +retrogresses +retrogressing +retrogression +retrogressions +retrorse +retrospect +retrospection +retrospections +retrospective +retrospectively +retrospectives +retry +retrying +rets +retsina +retsinas +retted +retting +retune +retuned +retunes +retuning +return +returnable +returned +returnee +returnees +returner +returners +returning +returns +retuse +retwist +retwisted +retwisting +retwists +retying +retype +retyped +retypes +retyping +reunified +reunifies +reunify +reunifying +reunion +reunions +reunite +reunited +reuniter +reuniters +reunites +reuniting +reupholster +reupholstered +reupholstering +reupholsters +reusable +reuse +reused +reuses +reusing +reutter +reuttered +reuttering +reutters +rev +revaccinate +revaccinated +revaccinates +revaccinating +revaccination +revaccinations +revalue +revalued +revalues +revaluing +revamp +revamped +revamper +revampers +revamping +revamps +revanche +revanches +reveal +revealed +revealer +revealers +revealing +reveals +revehent +reveille +reveilles +revel +revelation +revelations +reveled +reveler +revelers +reveling +revelled +reveller +revellers +revelling +revelries +revelry +revels +revenant +revenants +revenge +revenged +revengeful +revenger +revengers +revenges +revenging +revenual +revenue +revenued +revenuer +revenuers +revenues +reverb +reverberate +reverberated +reverberates +reverberating +reverberation +reverberations +reverbs +revere +revered +reverence +reverences +reverend +reverends +reverent +reverer +reverers +reveres +reverie +reveries +reverified +reverifies +reverify +reverifying +revering +revers +reversal +reversals +reverse +reversed +reversely +reverser +reversers +reverses +reversible +reversing +reversion +reverso +reversos +revert +reverted +reverter +reverters +reverting +reverts +revery +revest +revested +revesting +revests +revet +revets +revetted +revetting +review +reviewal +reviewals +reviewed +reviewer +reviewers +reviewing +reviews +revile +reviled +revilement +revilements +reviler +revilers +reviles +reviling +revisable +revisal +revisals +revise +revised +reviser +revisers +revises +revising +revision +revisions +revisit +revisited +revisiting +revisits +revisor +revisors +revisory +revival +revivals +revive +revived +reviver +revivers +revives +revivified +revivifies +revivify +revivifying +reviving +revocation +revocations +revoice +revoiced +revoices +revoicing +revoke +revoked +revoker +revokers +revokes +revoking +revolt +revolted +revolter +revolters +revolting +revolts +revolute +revolution +revolutionaries +revolutionary +revolutionize +revolutionized +revolutionizer +revolutionizers +revolutionizes +revolutionizing +revolutions +revolvable +revolve +revolved +revolver +revolvers +revolves +revolving +revs +revue +revues +revuist +revuists +revulsed +revulsion +revulsions +revved +revving +rewake +rewaked +rewaken +rewakened +rewakening +rewakens +rewakes +rewaking +rewan +reward +rewarded +rewarder +rewarders +rewarding +rewards +rewarm +rewarmed +rewarming +rewarms +rewash +rewashed +rewashes +rewashing +rewax +rewaxed +rewaxes +rewaxing +reweave +reweaved +reweaves +reweaving +rewed +reweigh +reweighed +reweighing +reweighs +reweld +rewelded +rewelding +rewelds +rewiden +rewidened +rewidening +rewidens +rewin +rewind +rewinded +rewinder +rewinders +rewinding +rewinds +rewinning +rewins +rewire +rewired +rewires +rewiring +rewoke +rewoken +rewon +reword +reworded +rewording +rewords +rework +reworked +reworking +reworks +rewound +rewove +rewoven +rewrap +rewrapped +rewrapping +rewraps +rewrapt +rewrite +rewriter +rewriters +rewrites +rewriting +rewritten +rewrote +rewrought +rex +rexes +reynard +reynards +rezone +rezoned +rezones +rezoning +rhabdom +rhabdome +rhabdomes +rhabdoms +rhachides +rhachis +rhachises +rhamnose +rhamnoses +rhamnus +rhamnuses +rhaphae +rhaphe +rhaphes +rhapsode +rhapsodes +rhapsodic +rhapsodically +rhapsodies +rhapsodize +rhapsodized +rhapsodizes +rhapsodizing +rhapsody +rhatanies +rhatany +rhea +rheas +rhebok +rheboks +rhematic +rhenium +rheniums +rheobase +rheobases +rheologies +rheology +rheophil +rheostat +rheostats +rhesus +rhesuses +rhetor +rhetoric +rhetorical +rhetorician +rhetoricians +rhetorics +rhetors +rheum +rheumatic +rheumatism +rheumatisms +rheumic +rheumier +rheumiest +rheums +rheumy +rhinal +rhinestone +rhinestones +rhinitides +rhinitis +rhino +rhinoceri +rhinoceros +rhinoceroses +rhinos +rhizobia +rhizoid +rhizoids +rhizoma +rhizomata +rhizome +rhizomes +rhizomic +rhizopi +rhizopod +rhizopods +rhizopus +rhizopuses +rho +rhodamin +rhodamins +rhodic +rhodium +rhodiums +rhododendron +rhododendrons +rhodora +rhodoras +rhomb +rhombi +rhombic +rhomboid +rhomboids +rhombs +rhombus +rhombuses +rhonchal +rhonchi +rhonchus +rhos +rhubarb +rhubarbs +rhumb +rhumba +rhumbaed +rhumbaing +rhumbas +rhumbs +rhus +rhuses +rhyme +rhymed +rhymer +rhymers +rhymes +rhyming +rhyolite +rhyolites +rhyta +rhythm +rhythmic +rhythmical +rhythmically +rhythmics +rhythms +rhyton +rial +rials +rialto +rialtos +riant +riantly +riata +riatas +rib +ribald +ribaldly +ribaldries +ribaldry +ribalds +riband +ribands +ribband +ribbands +ribbed +ribber +ribbers +ribbier +ribbiest +ribbing +ribbings +ribbon +ribboned +ribboning +ribbons +ribbony +ribby +ribes +ribgrass +ribgrasses +ribless +riblet +riblets +riblike +riboflavin +riboflavins +ribose +riboses +ribosome +ribosomes +ribs +ribwort +ribworts +rice +ricebird +ricebirds +riced +ricer +ricercar +ricercars +ricers +rices +rich +richen +richened +richening +richens +richer +riches +richest +richly +richness +richnesses +richweed +richweeds +ricin +ricing +ricins +ricinus +ricinuses +rick +ricked +ricketier +ricketiest +rickets +rickety +rickey +rickeys +ricking +rickrack +rickracks +ricks +ricksha +rickshas +rickshaw +rickshaws +ricochet +ricocheted +ricocheting +ricochets +ricochetted +ricochetting +ricotta +ricottas +ricrac +ricracs +rictal +rictus +rictuses +rid +ridable +riddance +riddances +ridded +ridden +ridder +ridders +ridding +riddle +riddled +riddler +riddlers +riddles +riddling +ride +rideable +rident +rider +riderless +riders +rides +ridge +ridged +ridgel +ridgels +ridges +ridgier +ridgiest +ridgil +ridgils +ridging +ridgling +ridglings +ridgy +ridicule +ridiculed +ridicules +ridiculing +ridiculous +ridiculously +ridiculousness +ridiculousnesses +riding +ridings +ridley +ridleys +ridotto +ridottos +rids +riel +riels +riever +rievers +rife +rifely +rifeness +rifenesses +rifer +rifest +riff +riffed +riffing +riffle +riffled +riffler +rifflers +riffles +riffling +riffraff +riffraffs +riffs +rifle +rifled +rifleman +riflemen +rifler +rifleries +riflers +riflery +rifles +rifling +riflings +rift +rifted +rifting +riftless +rifts +rig +rigadoon +rigadoons +rigatoni +rigatonis +rigaudon +rigaudons +rigged +rigger +riggers +rigging +riggings +right +righted +righteous +righteously +righteousness +righteousnesses +righter +righters +rightest +rightful +rightfully +rightfulness +rightfulnesses +righties +righting +rightism +rightisms +rightist +rightists +rightly +rightness +rightnesses +righto +rights +rightward +righty +rigid +rigidified +rigidifies +rigidify +rigidifying +rigidities +rigidity +rigidly +rigmarole +rigmaroles +rigor +rigorism +rigorisms +rigorist +rigorists +rigorous +rigorously +rigors +rigour +rigours +rigs +rikisha +rikishas +rikshaw +rikshaws +rile +riled +riles +riley +rilievi +rilievo +riling +rill +rille +rilled +rilles +rillet +rillets +rilling +rills +rilly +rim +rime +rimed +rimer +rimers +rimes +rimester +rimesters +rimfire +rimier +rimiest +riming +rimland +rimlands +rimless +rimmed +rimmer +rimmers +rimming +rimose +rimosely +rimosities +rimosity +rimous +rimple +rimpled +rimples +rimpling +rimrock +rimrocks +rims +rimy +rin +rind +rinded +rinds +ring +ringbark +ringbarked +ringbarking +ringbarks +ringbolt +ringbolts +ringbone +ringbones +ringdove +ringdoves +ringed +ringent +ringer +ringers +ringhals +ringhalses +ringing +ringleader +ringlet +ringlets +ringlike +ringneck +ringnecks +rings +ringside +ringsides +ringtail +ringtails +ringtaw +ringtaws +ringtoss +ringtosses +ringworm +ringworms +rink +rinks +rinning +rins +rinsable +rinse +rinsed +rinser +rinsers +rinses +rinsible +rinsing +rinsings +riot +rioted +rioter +rioters +rioting +riotous +riots +rip +riparian +ripcord +ripcords +ripe +riped +ripely +ripen +ripened +ripener +ripeners +ripeness +ripenesses +ripening +ripens +riper +ripes +ripest +ripieni +ripieno +ripienos +riping +ripost +riposte +riposted +ripostes +riposting +riposts +rippable +ripped +ripper +rippers +ripping +ripple +rippled +rippler +ripplers +ripples +ripplet +ripplets +ripplier +rippliest +rippling +ripply +riprap +riprapped +riprapping +ripraps +rips +ripsaw +ripsaws +riptide +riptides +rise +risen +riser +risers +rises +rishi +rishis +risibilities +risibility +risible +risibles +risibly +rising +risings +risk +risked +risker +riskers +riskier +riskiest +riskily +riskiness +riskinesses +risking +risks +risky +risotto +risottos +risque +rissole +rissoles +risus +risuses +ritard +ritards +rite +rites +ritter +ritters +ritual +ritualism +ritualisms +ritualistic +ritualistically +ritually +rituals +ritz +ritzes +ritzier +ritziest +ritzily +ritzy +rivage +rivages +rival +rivaled +rivaling +rivalled +rivalling +rivalries +rivalry +rivals +rive +rived +riven +river +riverbank +riverbanks +riverbed +riverbeds +riverboat +riverboats +riverine +rivers +riverside +riversides +rives +rivet +riveted +riveter +riveters +riveting +rivets +rivetted +rivetting +riviera +rivieras +riviere +rivieres +riving +rivulet +rivulets +riyal +riyals +roach +roached +roaches +roaching +road +roadbed +roadbeds +roadblock +roadblocks +roadless +roadrunner +roadrunners +roads +roadside +roadsides +roadster +roadsters +roadway +roadways +roadwork +roadworks +roam +roamed +roamer +roamers +roaming +roams +roan +roans +roar +roared +roarer +roarers +roaring +roarings +roars +roast +roasted +roaster +roasters +roasting +roasts +rob +robalo +robalos +roband +robands +robbed +robber +robberies +robbers +robbery +robbin +robbing +robbins +robe +robed +robes +robin +robing +robins +roble +robles +roborant +roborants +robot +robotics +robotism +robotisms +robotize +robotized +robotizes +robotizing +robotries +robotry +robots +robs +robust +robuster +robustest +robustly +robustness +robustnesses +roc +rochet +rochets +rock +rockabies +rockaby +rockabye +rockabyes +rockaway +rockaways +rocked +rocker +rockeries +rockers +rockery +rocket +rocketed +rocketer +rocketers +rocketing +rocketries +rocketry +rockets +rockfall +rockfalls +rockfish +rockfishes +rockier +rockiest +rocking +rockless +rocklike +rockling +rocklings +rockoon +rockoons +rockrose +rockroses +rocks +rockweed +rockweeds +rockwork +rockworks +rocky +rococo +rococos +rocs +rod +rodded +rodding +rode +rodent +rodents +rodeo +rodeos +rodless +rodlike +rodman +rodmen +rods +rodsman +rodsmen +roe +roebuck +roebucks +roentgen +roentgens +roes +rogation +rogations +rogatory +roger +rogers +rogue +rogued +rogueing +rogueries +roguery +rogues +roguing +roguish +roguishly +roguishness +roguishnesses +roil +roiled +roilier +roiliest +roiling +roils +roily +roister +roistered +roistering +roisters +rolamite +rolamites +role +roles +roll +rollaway +rollback +rollbacks +rolled +roller +rollers +rollick +rollicked +rollicking +rollicks +rollicky +rolling +rollings +rollmop +rollmops +rollout +rollouts +rollover +rollovers +rolls +rolltop +rollway +rollways +romaine +romaines +roman +romance +romanced +romancer +romancers +romances +romancing +romanize +romanized +romanizes +romanizing +romano +romanos +romans +romantic +romantically +romantics +romaunt +romaunts +romp +romped +romper +rompers +romping +rompish +romps +rondeau +rondeaux +rondel +rondelet +rondelets +rondelle +rondelles +rondels +rondo +rondos +rondure +rondures +ronion +ronions +ronnel +ronnels +rontgen +rontgens +ronyon +ronyons +rood +roods +roof +roofed +roofer +roofers +roofing +roofings +roofless +rooflike +roofline +rooflines +roofs +rooftop +rooftops +rooftree +rooftrees +rook +rooked +rookeries +rookery +rookie +rookier +rookies +rookiest +rooking +rooks +rooky +room +roomed +roomer +roomers +roomette +roomettes +roomful +roomfuls +roomier +roomiest +roomily +rooming +roommate +roommates +rooms +roomy +roorback +roorbacks +roose +roosed +rooser +roosers +rooses +roosing +roost +roosted +rooster +roosters +roosting +roosts +root +rootage +rootages +rooted +rooter +rooters +roothold +rootholds +rootier +rootiest +rooting +rootless +rootlet +rootlets +rootlike +roots +rooty +ropable +rope +roped +roper +roperies +ropers +ropery +ropes +ropewalk +ropewalks +ropeway +ropeways +ropier +ropiest +ropily +ropiness +ropinesses +roping +ropy +roque +roques +roquet +roqueted +roqueting +roquets +rorqual +rorquals +rosaria +rosarian +rosarians +rosaries +rosarium +rosariums +rosary +roscoe +roscoes +rose +roseate +rosebay +rosebays +rosebud +rosebuds +rosebush +rosebushes +rosed +rosefish +rosefishes +roselike +roselle +roselles +rosemaries +rosemary +roseola +roseolar +roseolas +roser +roseries +roseroot +roseroots +rosery +roses +roset +rosets +rosette +rosettes +rosewater +rosewood +rosewoods +rosier +rosiest +rosily +rosin +rosined +rosiness +rosinesses +rosing +rosining +rosinous +rosins +rosiny +roslindale +rosolio +rosolios +rostella +roster +rosters +rostra +rostral +rostrate +rostrum +rostrums +rosulate +rosy +rot +rota +rotaries +rotary +rotas +rotate +rotated +rotates +rotating +rotation +rotations +rotative +rotator +rotatores +rotators +rotatory +rotch +rotche +rotches +rote +rotenone +rotenones +rotes +rotgut +rotguts +rotifer +rotifers +rotiform +rotl +rotls +roto +rotor +rotors +rotos +rototill +rototilled +rototilling +rototills +rots +rotted +rotten +rottener +rottenest +rottenly +rottenness +rottennesses +rotter +rotters +rotting +rotund +rotunda +rotundas +rotundly +roturier +roturiers +rouble +roubles +rouche +rouches +roue +rouen +rouens +roues +rouge +rouged +rouges +rough +roughage +roughages +roughdried +roughdries +roughdry +roughdrying +roughed +roughen +roughened +roughening +roughens +rougher +roughers +roughest +roughhew +roughhewed +roughhewing +roughhewn +roughhews +roughing +roughish +roughleg +roughlegs +roughly +roughneck +roughnecks +roughness +roughnesses +roughs +rouging +roulade +roulades +rouleau +rouleaus +rouleaux +roulette +rouletted +roulettes +rouletting +round +roundabout +rounded +roundel +roundels +rounder +rounders +roundest +rounding +roundish +roundlet +roundlets +roundly +roundness +roundnesses +rounds +roundup +roundups +roup +rouped +roupet +roupier +roupiest +roupily +rouping +roups +roupy +rouse +roused +rouser +rousers +rouses +rousing +rousseau +rousseaus +roust +rousted +rouster +rousters +rousting +rousts +rout +route +routed +routeman +routemen +router +routers +routes +routeway +routeways +routh +rouths +routine +routinely +routines +routing +routs +roux +rove +roved +roven +rover +rovers +roves +roving +rovingly +rovings +row +rowable +rowan +rowans +rowboat +rowboats +rowdier +rowdies +rowdiest +rowdily +rowdiness +rowdinesses +rowdy +rowdyish +rowdyism +rowdyisms +rowed +rowel +roweled +roweling +rowelled +rowelling +rowels +rowen +rowens +rower +rowers +rowing +rowings +rowlock +rowlocks +rows +rowth +rowths +royal +royalism +royalisms +royalist +royalists +royally +royals +royalties +royalty +royster +roystered +roystering +roysters +rozzer +rozzers +rub +rubaboo +rubaboos +rubace +rubaces +rubaiyat +rubasse +rubasses +rubato +rubatos +rubbaboo +rubbaboos +rubbed +rubber +rubberize +rubberized +rubberizes +rubberizing +rubbers +rubbery +rubbing +rubbings +rubbish +rubbishes +rubbishy +rubble +rubbled +rubbles +rubblier +rubbliest +rubbling +rubbly +rubdown +rubdowns +rube +rubella +rubellas +rubeola +rubeolar +rubeolas +rubes +rubicund +rubidic +rubidium +rubidiums +rubied +rubier +rubies +rubiest +rubigo +rubigos +ruble +rubles +rubric +rubrical +rubrics +rubs +rubus +ruby +rubying +rubylike +ruche +ruches +ruching +ruchings +ruck +rucked +rucking +rucks +rucksack +rucksacks +ruckus +ruckuses +ruction +ructions +ructious +rudd +rudder +rudders +ruddier +ruddiest +ruddily +ruddiness +ruddinesses +ruddle +ruddled +ruddles +ruddling +ruddock +ruddocks +rudds +ruddy +rude +rudely +rudeness +rudenesses +ruder +ruderal +ruderals +rudesbies +rudesby +rudest +rudiment +rudimentary +rudiments +rue +rued +rueful +ruefully +ruefulness +ruefulnesses +ruer +ruers +rues +ruff +ruffe +ruffed +ruffes +ruffian +ruffians +ruffing +ruffle +ruffled +ruffler +rufflers +ruffles +rufflike +ruffling +ruffly +ruffs +rufous +rug +ruga +rugae +rugal +rugate +rugbies +rugby +rugged +ruggeder +ruggedest +ruggedly +ruggedness +ruggednesses +rugger +ruggers +rugging +ruglike +rugose +rugosely +rugosities +rugosity +rugous +rugs +rugulose +ruin +ruinable +ruinate +ruinated +ruinates +ruinating +ruined +ruiner +ruiners +ruing +ruining +ruinous +ruinously +ruins +rulable +rule +ruled +ruleless +ruler +rulers +rules +ruling +rulings +rum +rumba +rumbaed +rumbaing +rumbas +rumble +rumbled +rumbler +rumblers +rumbles +rumbling +rumblings +rumbly +rumen +rumens +rumina +ruminal +ruminant +ruminants +ruminate +ruminated +ruminates +ruminating +rummage +rummaged +rummager +rummagers +rummages +rummaging +rummer +rummers +rummest +rummier +rummies +rummiest +rummy +rumor +rumored +rumoring +rumors +rumour +rumoured +rumouring +rumours +rump +rumple +rumpled +rumples +rumpless +rumplier +rumpliest +rumpling +rumply +rumps +rumpus +rumpuses +rums +run +runabout +runabouts +runagate +runagates +runaround +runarounds +runaway +runaways +runback +runbacks +rundle +rundles +rundlet +rundlets +rundown +rundowns +rune +runelike +runes +rung +rungless +rungs +runic +runkle +runkled +runkles +runkling +runless +runlet +runlets +runnel +runnels +runner +runners +runnier +runniest +running +runnings +runny +runoff +runoffs +runout +runouts +runover +runovers +runround +runrounds +runs +runt +runtier +runtiest +runtish +runts +runty +runway +runways +rupee +rupees +rupiah +rupiahs +rupture +ruptured +ruptures +rupturing +rural +ruralise +ruralised +ruralises +ruralising +ruralism +ruralisms +ruralist +ruralists +ruralite +ruralites +ruralities +rurality +ruralize +ruralized +ruralizes +ruralizing +rurally +rurban +ruse +ruses +rush +rushed +rushee +rushees +rusher +rushers +rushes +rushier +rushiest +rushing +rushings +rushlike +rushy +rusine +rusk +rusks +russet +russets +russety +russified +russifies +russify +russifying +rust +rustable +rusted +rustic +rustical +rustically +rusticities +rusticity +rusticly +rustics +rustier +rustiest +rustily +rusting +rustle +rustled +rustler +rustlers +rustles +rustless +rustling +rusts +rusty +rut +rutabaga +rutabagas +ruth +ruthenic +ruthful +ruthless +ruthlessly +ruthlessness +ruthlessnesses +ruths +rutilant +rutile +rutiles +ruts +rutted +ruttier +ruttiest +ruttily +rutting +ruttish +rutty +rya +ryas +rye +ryegrass +ryegrasses +ryes +ryke +ryked +rykes +ryking +rynd +rynds +ryot +ryots +sab +sabaton +sabatons +sabbat +sabbath +sabbaths +sabbatic +sabbats +sabbed +sabbing +sabe +sabed +sabeing +saber +sabered +sabering +sabers +sabes +sabin +sabine +sabines +sabins +sabir +sabirs +sable +sables +sabot +sabotage +sabotaged +sabotages +sabotaging +saboteur +saboteurs +sabots +sabra +sabras +sabre +sabred +sabres +sabring +sabs +sabulose +sabulous +sac +sacaton +sacatons +sacbut +sacbuts +saccade +saccades +saccadic +saccate +saccharin +saccharine +saccharins +saccular +saccule +saccules +sacculi +sacculus +sachem +sachemic +sachems +sachet +sacheted +sachets +sack +sackbut +sackbuts +sackcloth +sackcloths +sacked +sacker +sackers +sackful +sackfuls +sacking +sackings +sacklike +sacks +sacksful +saclike +sacque +sacques +sacra +sacral +sacrals +sacrament +sacramental +sacraments +sacraria +sacred +sacredly +sacrifice +sacrificed +sacrifices +sacrificial +sacrificially +sacrificing +sacrilege +sacrileges +sacrilegious +sacrilegiously +sacrist +sacristies +sacrists +sacristy +sacrosanct +sacrum +sacs +sad +sadden +saddened +saddening +saddens +sadder +saddest +saddhu +saddhus +saddle +saddled +saddler +saddleries +saddlers +saddlery +saddles +saddling +sade +sades +sadhe +sadhes +sadhu +sadhus +sadi +sadiron +sadirons +sadis +sadism +sadisms +sadist +sadistic +sadistically +sadists +sadly +sadness +sadnesses +sae +safari +safaried +safariing +safaris +safe +safeguard +safeguarded +safeguarding +safeguards +safekeeping +safekeepings +safely +safeness +safenesses +safer +safes +safest +safetied +safeties +safety +safetying +safflower +safflowers +saffron +saffrons +safranin +safranins +safrol +safrole +safroles +safrols +sag +saga +sagacious +sagacities +sagacity +sagaman +sagamen +sagamore +sagamores +saganash +saganashes +sagas +sagbut +sagbuts +sage +sagebrush +sagebrushes +sagely +sageness +sagenesses +sager +sages +sagest +saggar +saggard +saggards +saggared +saggaring +saggars +sagged +sagger +saggered +saggering +saggers +sagging +sagier +sagiest +sagittal +sago +sagos +sags +saguaro +saguaros +sagum +sagy +sahib +sahibs +sahiwal +sahiwals +sahuaro +sahuaros +saice +saices +said +saids +saiga +saigas +sail +sailable +sailboat +sailboats +sailed +sailer +sailers +sailfish +sailfishes +sailing +sailings +sailor +sailorly +sailors +sails +sain +sained +sainfoin +sainfoins +saining +sains +saint +saintdom +saintdoms +sainted +sainthood +sainthoods +sainting +saintlier +saintliest +saintliness +saintlinesses +saintly +saints +saith +saithe +saiyid +saiyids +sajou +sajous +sake +saker +sakers +sakes +saki +sakis +sal +salaam +salaamed +salaaming +salaams +salable +salably +salacious +salacities +salacity +salad +saladang +saladangs +salads +salamander +salamanders +salami +salamis +salariat +salariats +salaried +salaries +salary +salarying +sale +saleable +saleably +salep +saleps +saleroom +salerooms +sales +salesman +salesmen +saleswoman +saleswomen +salic +salicin +salicine +salicines +salicins +salience +saliences +saliencies +saliency +salient +salients +salified +salifies +salify +salifying +salina +salinas +saline +salines +salinities +salinity +salinize +salinized +salinizes +salinizing +saliva +salivary +salivas +salivate +salivated +salivates +salivating +salivation +salivations +sall +sallet +sallets +sallied +sallier +salliers +sallies +sallow +sallowed +sallower +sallowest +sallowing +sallowly +sallows +sallowy +sally +sallying +salmi +salmis +salmon +salmonid +salmonids +salmons +salol +salols +salon +salons +saloon +saloons +saloop +saloops +salp +salpa +salpae +salpas +salpian +salpians +salpid +salpids +salpinges +salpinx +salps +sals +salsifies +salsify +salsilla +salsillas +salt +saltant +saltbox +saltboxes +saltbush +saltbushes +salted +salter +saltern +salterns +salters +saltest +saltie +saltier +saltiers +salties +saltiest +saltily +saltine +saltines +saltiness +saltinesses +salting +saltire +saltires +saltish +saltless +saltlike +saltness +saltnesses +saltpan +saltpans +salts +saltwater +saltwaters +saltwork +saltworks +saltwort +saltworts +salty +salubrious +saluki +salukis +salutary +salutation +salutations +salute +saluted +saluter +saluters +salutes +saluting +salvable +salvably +salvage +salvaged +salvagee +salvagees +salvager +salvagers +salvages +salvaging +salvation +salvations +salve +salved +salver +salvers +salves +salvia +salvias +salvific +salving +salvo +salvoed +salvoes +salvoing +salvor +salvors +salvos +samara +samaras +samarium +samariums +samba +sambaed +sambaing +sambar +sambars +sambas +sambhar +sambhars +sambhur +sambhurs +sambo +sambos +sambuca +sambucas +sambuke +sambukes +sambur +samburs +same +samech +samechs +samek +samekh +samekhs +sameks +sameness +samenesses +samiel +samiels +samisen +samisens +samite +samites +samlet +samlets +samovar +samovars +samp +sampan +sampans +samphire +samphires +sample +sampled +sampler +samplers +samples +sampling +samplings +samps +samsara +samsaras +samshu +samshus +samurai +samurais +sanative +sanatoria +sanatorium +sanatoriums +sancta +sanctification +sanctifications +sanctified +sanctifies +sanctify +sanctifying +sanctimonious +sanction +sanctioned +sanctioning +sanctions +sanctities +sanctity +sanctuaries +sanctuary +sanctum +sanctums +sand +sandal +sandaled +sandaling +sandalled +sandalling +sandals +sandarac +sandaracs +sandbag +sandbagged +sandbagging +sandbags +sandbank +sandbanks +sandbar +sandbars +sandbox +sandboxes +sandbur +sandburr +sandburrs +sandburs +sanded +sander +sanders +sandfish +sandfishes +sandflies +sandfly +sandhi +sandhis +sandhog +sandhogs +sandier +sandiest +sanding +sandlike +sandling +sandlings +sandlot +sandlots +sandman +sandmen +sandpaper +sandpapered +sandpapering +sandpapers +sandpeep +sandpeeps +sandpile +sandpiles +sandpiper +sandpipers +sandpit +sandpits +sands +sandsoap +sandsoaps +sandstone +sandstones +sandstorm +sandstorms +sandwich +sandwiched +sandwiches +sandwiching +sandworm +sandworms +sandwort +sandworts +sandy +sane +saned +sanely +saneness +sanenesses +saner +sanes +sanest +sang +sanga +sangar +sangaree +sangarees +sangars +sangas +sanger +sangers +sangh +sanghs +sangria +sangrias +sanguinary +sanguine +sanguines +sanicle +sanicles +sanies +saning +sanious +sanitaria +sanitaries +sanitarium +sanitariums +sanitary +sanitate +sanitated +sanitates +sanitating +sanitation +sanitations +sanities +sanitise +sanitised +sanitises +sanitising +sanitize +sanitized +sanitizes +sanitizing +sanity +sanjak +sanjaks +sank +sannop +sannops +sannup +sannups +sannyasi +sannyasis +sans +sansar +sansars +sansei +sanseis +sanserif +sanserifs +santalic +santimi +santims +santir +santirs +santol +santols +santonin +santonins +santour +santours +sap +sapajou +sapajous +saphead +sapheads +saphena +saphenae +sapid +sapidities +sapidity +sapience +sapiences +sapiencies +sapiency +sapiens +sapient +sapless +sapling +saplings +saponified +saponifies +saponify +saponifying +saponin +saponine +saponines +saponins +saponite +saponites +sapor +saporous +sapors +sapota +sapotas +sapour +sapours +sapped +sapper +sappers +sapphic +sapphics +sapphire +sapphires +sapphism +sapphisms +sapphist +sapphists +sappier +sappiest +sappily +sapping +sappy +sapremia +sapremias +sapremic +saprobe +saprobes +saprobic +sapropel +sapropels +saps +sapsago +sapsagos +sapsucker +sapsuckers +sapwood +sapwoods +saraband +sarabands +saran +sarape +sarapes +sarcasm +sarcasms +sarcastic +sarcastically +sarcenet +sarcenets +sarcoid +sarcoids +sarcoma +sarcomas +sarcomata +sarcophagi +sarcophagus +sarcous +sard +sardar +sardars +sardine +sardines +sardius +sardiuses +sardonic +sardonically +sardonyx +sardonyxes +sards +saree +sarees +sargasso +sargassos +sarge +sarges +sari +sarin +sarins +saris +sark +sarks +sarment +sarmenta +sarments +sarod +sarode +sarodes +sarodist +sarodists +sarods +sarong +sarongs +sarsaparilla +sarsaparillas +sarsar +sarsars +sarsen +sarsenet +sarsenets +sarsens +sartor +sartorii +sartors +sash +sashay +sashayed +sashaying +sashays +sashed +sashes +sashimi +sashimis +sashing +sasin +sasins +sass +sassabies +sassaby +sassafras +sassafrases +sassed +sasses +sassier +sassies +sassiest +sassily +sassing +sasswood +sasswoods +sassy +sastruga +sastrugi +sat +satang +satangs +satanic +satanism +satanisms +satanist +satanists +satara +sataras +satchel +satchels +sate +sated +sateen +sateens +satellite +satellites +satem +sates +sati +satiable +satiably +satiate +satiated +satiates +satiating +satieties +satiety +satin +satinet +satinets +sating +satinpod +satinpods +satins +satiny +satire +satires +satiric +satirical +satirically +satirise +satirised +satirises +satirising +satirist +satirists +satirize +satirized +satirizes +satirizing +satis +satisfaction +satisfactions +satisfactorily +satisfactory +satisfied +satisfies +satisfy +satisfying +satisfyingly +satori +satoris +satrap +satrapies +satraps +satrapy +saturant +saturants +saturate +saturated +saturates +saturating +saturation +saturations +saturnine +satyr +satyric +satyrid +satyrids +satyrs +sau +sauce +saucebox +sauceboxes +sauced +saucepan +saucepans +saucer +saucers +sauces +sauch +sauchs +saucier +sauciest +saucily +saucing +saucy +sauerkraut +sauerkrauts +sauger +saugers +saugh +saughs +saughy +saul +sauls +sault +saults +sauna +saunas +saunter +sauntered +sauntering +saunters +saurel +saurels +saurian +saurians +sauries +sauropod +sauropods +saury +sausage +sausages +saute +sauted +sauteed +sauteing +sauterne +sauternes +sautes +sautoir +sautoire +sautoires +sautoirs +savable +savage +savaged +savagely +savageness +savagenesses +savager +savageries +savagery +savages +savagest +savaging +savagism +savagisms +savanna +savannah +savannahs +savannas +savant +savants +savate +savates +save +saveable +saved +saveloy +saveloys +saver +savers +saves +savin +savine +savines +saving +savingly +savings +savins +savior +saviors +saviour +saviours +savor +savored +savorer +savorers +savorier +savories +savoriest +savorily +savoring +savorous +savors +savory +savour +savoured +savourer +savourers +savourier +savouries +savouriest +savouring +savours +savoury +savoy +savoys +savvied +savvies +savvy +savvying +saw +sawbill +sawbills +sawbones +sawboneses +sawbuck +sawbucks +sawdust +sawdusts +sawed +sawer +sawers +sawfish +sawfishes +sawflies +sawfly +sawhorse +sawhorses +sawing +sawlike +sawlog +sawlogs +sawmill +sawmills +sawn +sawney +sawneys +saws +sawteeth +sawtooth +sawyer +sawyers +sax +saxatile +saxes +saxhorn +saxhorns +saxonies +saxony +saxophone +saxophones +saxtuba +saxtubas +say +sayable +sayer +sayers +sayest +sayid +sayids +saying +sayings +sayonara +sayonaras +says +sayst +sayyid +sayyids +scab +scabbard +scabbarded +scabbarding +scabbards +scabbed +scabbier +scabbiest +scabbily +scabbing +scabble +scabbled +scabbles +scabbling +scabby +scabies +scabiosa +scabiosas +scabious +scabiouses +scablike +scabrous +scabs +scad +scads +scaffold +scaffolded +scaffolding +scaffolds +scag +scags +scalable +scalably +scalade +scalades +scalado +scalados +scalage +scalages +scalar +scalare +scalares +scalars +scalawag +scalawags +scald +scalded +scaldic +scalding +scalds +scale +scaled +scaleless +scalene +scaleni +scalenus +scalepan +scalepans +scaler +scalers +scales +scalier +scaliest +scaling +scall +scallion +scallions +scallop +scalloped +scalloping +scallops +scalls +scalp +scalped +scalpel +scalpels +scalper +scalpers +scalping +scalps +scaly +scam +scammonies +scammony +scamp +scamped +scamper +scampered +scampering +scampers +scampi +scamping +scampish +scamps +scams +scan +scandal +scandaled +scandaling +scandalize +scandalized +scandalizes +scandalizing +scandalled +scandalling +scandalous +scandals +scandent +scandia +scandias +scandic +scandium +scandiums +scanned +scanner +scanners +scanning +scannings +scans +scansion +scansions +scant +scanted +scanter +scantest +scantier +scanties +scantiest +scantily +scanting +scantly +scants +scanty +scape +scaped +scapegoat +scapegoats +scapes +scaphoid +scaphoids +scaping +scapose +scapula +scapulae +scapular +scapulars +scapulas +scar +scarab +scarabs +scarce +scarcely +scarcer +scarcest +scarcities +scarcity +scare +scarecrow +scarecrows +scared +scarer +scarers +scares +scarey +scarf +scarfed +scarfing +scarfpin +scarfpins +scarfs +scarier +scariest +scarified +scarifies +scarify +scarifying +scaring +scariose +scarious +scarless +scarlet +scarlets +scarp +scarped +scarper +scarpered +scarpering +scarpers +scarph +scarphed +scarphing +scarphs +scarping +scarps +scarred +scarrier +scarriest +scarring +scarry +scars +scart +scarted +scarting +scarts +scarves +scary +scat +scatback +scatbacks +scathe +scathed +scathes +scathing +scats +scatt +scatted +scatter +scattered +scattergram +scattergrams +scattering +scatters +scattier +scattiest +scatting +scatts +scatty +scaup +scauper +scaupers +scaups +scaur +scaurs +scavenge +scavenged +scavenger +scavengers +scavenges +scavenging +scena +scenario +scenarios +scenas +scend +scended +scending +scends +scene +sceneries +scenery +scenes +scenic +scenical +scent +scented +scenting +scents +scepter +sceptered +sceptering +scepters +sceptic +sceptics +sceptral +sceptre +sceptred +sceptres +sceptring +schappe +schappes +schav +schavs +schedule +scheduled +schedules +scheduling +schema +schemata +schematic +scheme +schemed +schemer +schemers +schemes +scheming +scherzi +scherzo +scherzos +schiller +schillers +schism +schisms +schist +schists +schizo +schizoid +schizoids +schizont +schizonts +schizophrenia +schizophrenias +schizophrenic +schizophrenics +schizos +schlep +schlepp +schlepped +schlepping +schlepps +schleps +schlock +schlocks +schmaltz +schmaltzes +schmalz +schmalzes +schmalzier +schmalziest +schmalzy +schmeer +schmeered +schmeering +schmeers +schmelze +schmelzes +schmo +schmoe +schmoes +schmoos +schmoose +schmoosed +schmooses +schmoosing +schmooze +schmoozed +schmoozes +schmoozing +schmuck +schmucks +schnapps +schnaps +schnecke +schnecken +schnook +schnooks +scholar +scholars +scholarship +scholarships +scholastic +scholia +scholium +scholiums +school +schoolboy +schoolboys +schooled +schoolgirl +schoolgirls +schoolhouse +schoolhouses +schooling +schoolmate +schoolmates +schoolroom +schoolrooms +schools +schoolteacher +schoolteachers +schooner +schooners +schorl +schorls +schrik +schriks +schtick +schticks +schuit +schuits +schul +schuln +schuss +schussed +schusses +schussing +schwa +schwas +sciaenid +sciaenids +sciatic +sciatica +sciaticas +sciatics +science +sciences +scientific +scientifically +scientist +scientists +scilicet +scilla +scillas +scimetar +scimetars +scimitar +scimitars +scimiter +scimiters +scincoid +scincoids +scintillate +scintillated +scintillates +scintillating +scintillation +scintillations +sciolism +sciolisms +sciolist +sciolists +scion +scions +scirocco +sciroccos +scirrhi +scirrhus +scirrhuses +scissile +scission +scissions +scissor +scissored +scissoring +scissors +scissure +scissures +sciurine +sciurines +sciuroid +sclaff +sclaffed +sclaffer +sclaffers +sclaffing +sclaffs +sclera +sclerae +scleral +scleras +sclereid +sclereids +sclerite +sclerites +scleroid +scleroma +scleromata +sclerose +sclerosed +scleroses +sclerosing +sclerosis +sclerosises +sclerotic +sclerous +scoff +scoffed +scoffer +scoffers +scoffing +scofflaw +scofflaws +scoffs +scold +scolded +scolder +scolders +scolding +scoldings +scolds +scoleces +scolex +scolices +scolioma +scoliomas +scollop +scolloped +scolloping +scollops +sconce +sconced +sconces +sconcing +scone +scones +scoop +scooped +scooper +scoopers +scoopful +scoopfuls +scooping +scoops +scoopsful +scoot +scooted +scooter +scooters +scooting +scoots +scop +scope +scopes +scops +scopula +scopulae +scopulas +scorch +scorched +scorcher +scorchers +scorches +scorching +score +scored +scoreless +scorepad +scorepads +scorer +scorers +scores +scoria +scoriae +scorified +scorifies +scorify +scorifying +scoring +scorn +scorned +scorner +scorners +scornful +scornfully +scorning +scorns +scorpion +scorpions +scot +scotch +scotched +scotches +scotching +scoter +scoters +scotia +scotias +scotoma +scotomas +scotomata +scotopia +scotopias +scotopic +scots +scottie +scotties +scoundrel +scoundrels +scour +scoured +scourer +scourers +scourge +scourged +scourger +scourgers +scourges +scourging +scouring +scourings +scours +scouse +scouses +scout +scouted +scouter +scouters +scouth +scouther +scouthered +scouthering +scouthers +scouths +scouting +scoutings +scouts +scow +scowder +scowdered +scowdering +scowders +scowed +scowing +scowl +scowled +scowler +scowlers +scowling +scowls +scows +scrabble +scrabbled +scrabbles +scrabbling +scrabbly +scrag +scragged +scraggier +scraggiest +scragging +scragglier +scraggliest +scraggly +scraggy +scrags +scraich +scraiched +scraiching +scraichs +scraigh +scraighed +scraighing +scraighs +scram +scramble +scrambled +scrambles +scrambling +scrammed +scramming +scrams +scrannel +scrannels +scrap +scrapbook +scrapbooks +scrape +scraped +scraper +scrapers +scrapes +scrapie +scrapies +scraping +scrapings +scrapped +scrapper +scrappers +scrappier +scrappiest +scrapping +scrapple +scrapples +scrappy +scraps +scratch +scratched +scratches +scratchier +scratchiest +scratching +scratchy +scrawl +scrawled +scrawler +scrawlers +scrawlier +scrawliest +scrawling +scrawls +scrawly +scrawnier +scrawniest +scrawny +screak +screaked +screaking +screaks +screaky +scream +screamed +screamer +screamers +screaming +screams +scree +screech +screeched +screeches +screechier +screechiest +screeching +screechy +screed +screeded +screeding +screeds +screen +screened +screener +screeners +screening +screens +screes +screw +screwball +screwballs +screwdriver +screwdrivers +screwed +screwer +screwers +screwier +screwiest +screwing +screws +screwy +scribal +scribble +scribbled +scribbles +scribbling +scribe +scribed +scriber +scribers +scribes +scribing +scrieve +scrieved +scrieves +scrieving +scrim +scrimp +scrimped +scrimpier +scrimpiest +scrimping +scrimpit +scrimps +scrimpy +scrims +scrip +scrips +script +scripted +scripting +scripts +scriptural +scripture +scriptures +scrive +scrived +scrives +scriving +scrod +scrods +scrofula +scrofulas +scroggier +scroggiest +scroggy +scroll +scrolls +scrooge +scrooges +scroop +scrooped +scrooping +scroops +scrota +scrotal +scrotum +scrotums +scrouge +scrouged +scrouges +scrouging +scrounge +scrounged +scrounges +scroungier +scroungiest +scrounging +scroungy +scrub +scrubbed +scrubber +scrubbers +scrubbier +scrubbiest +scrubbing +scrubby +scrubs +scruff +scruffier +scruffiest +scruffs +scruffy +scrum +scrums +scrunch +scrunched +scrunches +scrunching +scruple +scrupled +scruples +scrupling +scrupulous +scrupulously +scrutinies +scrutinize +scrutinized +scrutinizes +scrutinizing +scrutiny +scuba +scubas +scud +scudded +scudding +scudi +scudo +scuds +scuff +scuffed +scuffing +scuffle +scuffled +scuffler +scufflers +scuffles +scuffling +scuffs +sculk +sculked +sculker +sculkers +sculking +sculks +scull +sculled +sculler +sculleries +scullers +scullery +sculling +scullion +scullions +sculls +sculp +sculped +sculpin +sculping +sculpins +sculps +sculpt +sculpted +sculpting +sculptor +sculptors +sculpts +sculptural +sculpture +sculptured +sculptures +sculpturing +scum +scumble +scumbled +scumbles +scumbling +scumlike +scummed +scummer +scummers +scummier +scummiest +scumming +scummy +scums +scunner +scunnered +scunnering +scunners +scup +scuppaug +scuppaugs +scupper +scuppered +scuppering +scuppers +scups +scurf +scurfier +scurfiest +scurfs +scurfy +scurried +scurries +scurril +scurrile +scurrilous +scurry +scurrying +scurvier +scurvies +scurviest +scurvily +scurvy +scut +scuta +scutage +scutages +scutate +scutch +scutched +scutcher +scutchers +scutches +scutching +scute +scutella +scutes +scuts +scutter +scuttered +scuttering +scutters +scuttle +scuttled +scuttles +scuttling +scutum +scyphate +scythe +scythed +scythes +scything +sea +seabag +seabags +seabeach +seabeaches +seabed +seabeds +seabird +seabirds +seaboard +seaboards +seaboot +seaboots +seaborne +seacoast +seacoasts +seacock +seacocks +seacraft +seacrafts +seadog +seadogs +seadrome +seadromes +seafarer +seafarers +seafaring +seafarings +seafloor +seafloors +seafood +seafoods +seafowl +seafowls +seafront +seafronts +seagirt +seagoing +seal +sealable +sealant +sealants +sealed +sealer +sealeries +sealers +sealery +sealing +seallike +seals +sealskin +sealskins +seam +seaman +seamanly +seamanship +seamanships +seamark +seamarks +seamed +seamen +seamer +seamers +seamier +seamiest +seaming +seamless +seamlike +seamount +seamounts +seams +seamster +seamsters +seamstress +seamstresses +seamy +seance +seances +seapiece +seapieces +seaplane +seaplanes +seaport +seaports +seaquake +seaquakes +sear +search +searched +searcher +searchers +searches +searching +searchlight +searchlights +seared +searer +searest +searing +sears +seas +seascape +seascapes +seascout +seascouts +seashell +seashells +seashore +seashores +seasick +seasickness +seasicknesses +seaside +seasides +season +seasonable +seasonably +seasonal +seasonally +seasoned +seasoner +seasoners +seasoning +seasons +seat +seated +seater +seaters +seating +seatings +seatless +seatmate +seatmates +seatrain +seatrains +seats +seatwork +seatworks +seawall +seawalls +seawan +seawans +seawant +seawants +seaward +seawards +seaware +seawares +seawater +seawaters +seaway +seaways +seaweed +seaweeds +seaworthy +sebacic +sebasic +sebum +sebums +sec +secant +secantly +secants +secateur +secateurs +secco +seccos +secede +seceded +seceder +seceders +secedes +seceding +secern +secerned +secerning +secerns +seclude +secluded +secludes +secluding +seclusion +seclusions +second +secondary +seconde +seconded +seconder +seconders +secondes +secondhand +secondi +seconding +secondly +secondo +seconds +secpar +secpars +secrecies +secrecy +secret +secretarial +secretariat +secretariats +secretaries +secretary +secrete +secreted +secreter +secretes +secretest +secretin +secreting +secretins +secretion +secretions +secretive +secretly +secretor +secretors +secrets +secs +sect +sectarian +sectarians +sectaries +sectary +sectile +section +sectional +sectioned +sectioning +sections +sector +sectoral +sectored +sectoring +sectors +sects +secular +seculars +secund +secundly +secundum +secure +secured +securely +securer +securers +secures +securest +securing +securities +security +sedan +sedans +sedarim +sedate +sedated +sedately +sedater +sedates +sedatest +sedating +sedation +sedations +sedative +sedatives +sedentary +seder +seders +sederunt +sederunts +sedge +sedges +sedgier +sedgiest +sedgy +sedile +sedilia +sedilium +sediment +sedimentary +sedimentation +sedimentations +sedimented +sedimenting +sediments +sedition +seditions +seditious +seduce +seduced +seducer +seducers +seduces +seducing +seducive +seduction +seductions +seductive +sedulities +sedulity +sedulous +sedum +sedums +see +seeable +seecatch +seecatchie +seed +seedbed +seedbeds +seedcake +seedcakes +seedcase +seedcases +seeded +seeder +seeders +seedier +seediest +seedily +seeding +seedless +seedlike +seedling +seedlings +seedman +seedmen +seedpod +seedpods +seeds +seedsman +seedsmen +seedtime +seedtimes +seedy +seeing +seeings +seek +seeker +seekers +seeking +seeks +seel +seeled +seeling +seels +seely +seem +seemed +seemer +seemers +seeming +seemingly +seemings +seemlier +seemliest +seemly +seems +seen +seep +seepage +seepages +seeped +seepier +seepiest +seeping +seeps +seepy +seer +seeress +seeresses +seers +seersucker +seersuckers +sees +seesaw +seesawed +seesawing +seesaws +seethe +seethed +seethes +seething +segetal +seggar +seggars +segment +segmented +segmenting +segments +segni +segno +segnos +sego +segos +segregate +segregated +segregates +segregating +segregation +segregations +segue +segued +segueing +segues +sei +seicento +seicentos +seiche +seiches +seidel +seidels +seigneur +seigneurs +seignior +seigniors +seignories +seignory +seine +seined +seiner +seiners +seines +seining +seis +seisable +seise +seised +seiser +seisers +seises +seisin +seising +seisings +seisins +seism +seismal +seismic +seismism +seismisms +seismograph +seismographs +seisms +seisor +seisors +seisure +seisures +seizable +seize +seized +seizer +seizers +seizes +seizin +seizing +seizings +seizins +seizor +seizors +seizure +seizures +sejant +sejeant +sel +seladang +seladangs +selah +selahs +selamlik +selamliks +selcouth +seldom +seldomly +select +selected +selectee +selectees +selecting +selection +selections +selective +selectly +selectman +selectmen +selector +selectors +selects +selenate +selenates +selenic +selenide +selenides +selenite +selenites +selenium +seleniums +selenous +self +selfdom +selfdoms +selfed +selfheal +selfheals +selfhood +selfhoods +selfing +selfish +selfishly +selfishness +selfishnesses +selfless +selflessness +selflessnesses +selfness +selfnesses +selfs +selfsame +selfward +sell +sellable +selle +seller +sellers +selles +selling +sellout +sellouts +sells +sels +selsyn +selsyns +seltzer +seltzers +selvage +selvaged +selvages +selvedge +selvedges +selves +semantic +semantics +semaphore +semaphores +sematic +semblance +semblances +seme +sememe +sememes +semen +semens +semes +semester +semesters +semi +semiarid +semibald +semicolon +semicolons +semicoma +semicomas +semiconductor +semiconductors +semideaf +semidome +semidomes +semidry +semifinal +semifinalist +semifinalists +semifinals +semifit +semiformal +semigala +semihard +semihigh +semihobo +semihoboes +semihobos +semilog +semimat +semimatt +semimute +semina +seminal +seminar +seminarian +seminarians +seminaries +seminars +seminary +seminude +semioses +semiosis +semiotic +semiotics +semipro +semipros +semiraw +semis +semises +semisoft +semitist +semitists +semitone +semitones +semiwild +semolina +semolinas +semple +semplice +sempre +sen +senarii +senarius +senary +senate +senates +senator +senatorial +senators +send +sendable +sendal +sendals +sender +senders +sending +sendoff +sendoffs +sends +seneca +senecas +senecio +senecios +senega +senegas +sengi +senhor +senhora +senhoras +senhores +senhors +senile +senilely +seniles +senilities +senility +senior +seniorities +seniority +seniors +seniti +senna +sennas +sennet +sennets +sennight +sennights +sennit +sennits +senopia +senopias +senor +senora +senoras +senores +senorita +senoritas +senors +sensa +sensate +sensated +sensates +sensating +sensation +sensational +sensations +sense +sensed +senseful +senseless +senselessly +senses +sensibilities +sensibility +sensible +sensibler +sensibles +sensiblest +sensibly +sensilla +sensing +sensitive +sensitiveness +sensitivenesses +sensitivities +sensitivity +sensitize +sensitized +sensitizes +sensitizing +sensor +sensoria +sensors +sensory +sensual +sensualist +sensualists +sensualities +sensuality +sensually +sensum +sensuous +sensuously +sensuousness +sensuousnesses +sent +sentence +sentenced +sentences +sentencing +sententious +senti +sentient +sentients +sentiment +sentimental +sentimentalism +sentimentalisms +sentimentalist +sentimentalists +sentimentalize +sentimentalized +sentimentalizes +sentimentalizing +sentimentally +sentiments +sentinel +sentineled +sentineling +sentinelled +sentinelling +sentinels +sentries +sentry +sepal +sepaled +sepaline +sepalled +sepaloid +sepalous +sepals +separable +separate +separated +separately +separates +separating +separation +separations +separator +separators +sepia +sepias +sepic +sepoy +sepoys +seppuku +seppukus +sepses +sepsis +sept +septa +septal +septaria +septate +september +septet +septets +septette +septettes +septic +septical +septics +septime +septimes +septs +septum +septuple +septupled +septuples +septupling +sepulcher +sepulchers +sepulchral +sepulchre +sepulchres +sequel +sequela +sequelae +sequels +sequence +sequenced +sequences +sequencies +sequencing +sequency +sequent +sequential +sequentially +sequents +sequester +sequestered +sequestering +sequesters +sequin +sequined +sequins +sequitur +sequiturs +sequoia +sequoias +ser +sera +serac +seracs +seraglio +seraglios +serai +serail +serails +serais +seral +serape +serapes +seraph +seraphic +seraphim +seraphims +seraphin +seraphs +serdab +serdabs +sere +sered +serein +sereins +serenade +serenaded +serenades +serenading +serenata +serenatas +serenate +serendipitous +serendipity +serene +serenely +serener +serenes +serenest +serenities +serenity +serer +seres +serest +serf +serfage +serfages +serfdom +serfdoms +serfhood +serfhoods +serfish +serflike +serfs +serge +sergeant +sergeants +serges +serging +sergings +serial +serially +serials +seriate +seriated +seriates +seriatim +seriating +sericin +sericins +seriema +seriemas +series +serif +serifs +serin +serine +serines +sering +seringa +seringas +serins +serious +seriously +seriousness +seriousnesses +serjeant +serjeants +sermon +sermonic +sermons +serologies +serology +serosa +serosae +serosal +serosas +serosities +serosity +serotine +serotines +serotype +serotypes +serous +serow +serows +serpent +serpentine +serpents +serpigines +serpigo +serpigoes +serranid +serranids +serrate +serrated +serrates +serrating +serried +serries +serry +serrying +sers +serum +serumal +serums +servable +serval +servals +servant +servants +serve +served +server +servers +serves +service +serviceable +serviced +serviceman +servicemen +servicer +servicers +services +servicing +servile +servilities +servility +serving +servings +servitor +servitors +servitude +servitudes +servo +servos +sesame +sesames +sesamoid +sesamoids +sessile +session +sessions +sesspool +sesspools +sesterce +sesterces +sestet +sestets +sestina +sestinas +sestine +sestines +set +seta +setae +setal +setback +setbacks +setiform +setline +setlines +setoff +setoffs +seton +setons +setose +setous +setout +setouts +sets +setscrew +setscrews +settee +settees +setter +setters +setting +settings +settle +settled +settlement +settlements +settler +settlers +settles +settling +settlings +settlor +settlors +setulose +setulous +setup +setups +seven +sevens +seventeen +seventeens +seventeenth +seventeenths +seventh +sevenths +seventies +seventieth +seventieths +seventy +sever +several +severals +severance +severances +severe +severed +severely +severer +severest +severing +severities +severity +severs +sew +sewage +sewages +sewan +sewans +sewar +sewars +sewed +sewer +sewerage +sewerages +sewers +sewing +sewings +sewn +sews +sex +sexed +sexes +sexier +sexiest +sexily +sexiness +sexinesses +sexing +sexism +sexisms +sexist +sexists +sexless +sexologies +sexology +sexpot +sexpots +sext +sextain +sextains +sextan +sextans +sextant +sextants +sextarii +sextet +sextets +sextette +sextettes +sextile +sextiles +sexto +sexton +sextons +sextos +sexts +sextuple +sextupled +sextuples +sextupling +sextuply +sexual +sexualities +sexuality +sexually +sexy +sferics +sforzato +sforzatos +sfumato +sfumatos +sh +shabbier +shabbiest +shabbily +shabbiness +shabbinesses +shabby +shack +shackle +shackled +shackler +shacklers +shackles +shackling +shacko +shackoes +shackos +shacks +shad +shadblow +shadblows +shadbush +shadbushes +shadchan +shadchanim +shadchans +shaddock +shaddocks +shade +shaded +shader +shaders +shades +shadflies +shadfly +shadier +shadiest +shadily +shading +shadings +shadoof +shadoofs +shadow +shadowed +shadower +shadowers +shadowier +shadowiest +shadowing +shadows +shadowy +shadrach +shadrachs +shads +shaduf +shadufs +shady +shaft +shafted +shafting +shaftings +shafts +shag +shagbark +shagbarks +shagged +shaggier +shaggiest +shaggily +shagging +shaggy +shagreen +shagreens +shags +shah +shahdom +shahdoms +shahs +shaird +shairds +shairn +shairns +shaitan +shaitans +shakable +shake +shaken +shakeout +shakeouts +shaker +shakers +shakes +shakeup +shakeups +shakier +shakiest +shakily +shakiness +shakinesses +shaking +shako +shakoes +shakos +shaky +shale +shaled +shales +shalier +shaliest +shall +shalloon +shalloons +shallop +shallops +shallot +shallots +shallow +shallowed +shallower +shallowest +shallowing +shallows +shalom +shalt +shaly +sham +shamable +shaman +shamanic +shamans +shamble +shambled +shambles +shambling +shame +shamed +shamefaced +shameful +shamefully +shameless +shamelessly +shames +shaming +shammas +shammash +shammashim +shammasim +shammed +shammer +shammers +shammes +shammied +shammies +shamming +shammos +shammosim +shammy +shammying +shamois +shamosim +shamoy +shamoyed +shamoying +shamoys +shampoo +shampooed +shampooing +shampoos +shamrock +shamrocks +shams +shamus +shamuses +shandies +shandy +shanghai +shanghaied +shanghaiing +shanghais +shank +shanked +shanking +shanks +shantey +shanteys +shanti +shanties +shantih +shantihs +shantis +shantung +shantungs +shanty +shapable +shape +shaped +shapeless +shapelier +shapeliest +shapely +shapen +shaper +shapers +shapes +shapeup +shapeups +shaping +sharable +shard +shards +share +sharecrop +sharecroped +sharecroping +sharecropper +sharecroppers +sharecrops +shared +shareholder +shareholders +sharer +sharers +shares +sharif +sharifs +sharing +shark +sharked +sharker +sharkers +sharking +sharks +sharn +sharns +sharny +sharp +sharped +sharpen +sharpened +sharpener +sharpeners +sharpening +sharpens +sharper +sharpers +sharpest +sharpie +sharpies +sharping +sharply +sharpness +sharpnesses +sharps +sharpshooter +sharpshooters +sharpshooting +sharpshootings +sharpy +shashlik +shashliks +shaslik +shasliks +shat +shatter +shattered +shattering +shatters +shaugh +shaughs +shaul +shauled +shauling +shauls +shavable +shave +shaved +shaven +shaver +shavers +shaves +shavie +shavies +shaving +shavings +shaw +shawed +shawing +shawl +shawled +shawling +shawls +shawm +shawms +shawn +shaws +shay +shays +she +shea +sheaf +sheafed +sheafing +sheafs +sheal +shealing +shealings +sheals +shear +sheared +shearer +shearers +shearing +shears +sheas +sheath +sheathe +sheathed +sheather +sheathers +sheathes +sheathing +sheaths +sheave +sheaved +sheaves +sheaving +shebang +shebangs +shebean +shebeans +shebeen +shebeens +shed +shedable +shedded +shedder +shedders +shedding +sheds +sheen +sheened +sheeney +sheeneys +sheenful +sheenie +sheenier +sheenies +sheeniest +sheening +sheens +sheeny +sheep +sheepdog +sheepdogs +sheepish +sheepman +sheepmen +sheepskin +sheepskins +sheer +sheered +sheerer +sheerest +sheering +sheerly +sheers +sheet +sheeted +sheeter +sheeters +sheetfed +sheeting +sheetings +sheets +sheeve +sheeves +shegetz +sheik +sheikdom +sheikdoms +sheikh +sheikhdom +sheikhdoms +sheikhs +sheiks +sheitan +sheitans +shekel +shekels +shelduck +shelducks +shelf +shelfful +shelffuls +shell +shellac +shellack +shellacked +shellacking +shellackings +shellacks +shellacs +shelled +sheller +shellers +shellfish +shellfishes +shellier +shelliest +shelling +shells +shelly +shelter +sheltered +sheltering +shelters +sheltie +shelties +shelty +shelve +shelved +shelver +shelvers +shelves +shelvier +shelviest +shelving +shelvings +shelvy +shenanigans +shend +shending +shends +shent +sheol +sheols +shepherd +shepherded +shepherdess +shepherdesses +shepherding +shepherds +sherbert +sherberts +sherbet +sherbets +sherd +sherds +shereef +shereefs +sherif +sheriff +sheriffs +sherifs +sherlock +sherlocks +sheroot +sheroots +sherries +sherris +sherrises +sherry +shes +shetland +shetlands +sheuch +sheuchs +sheugh +sheughs +shew +shewed +shewer +shewers +shewing +shewn +shews +shh +shibah +shibahs +shicksa +shicksas +shied +shiel +shield +shielded +shielder +shielders +shielding +shields +shieling +shielings +shiels +shier +shiers +shies +shiest +shift +shifted +shifter +shifters +shiftier +shiftiest +shiftily +shifting +shiftless +shiftlessness +shiftlessnesses +shifts +shifty +shigella +shigellae +shigellas +shikar +shikaree +shikarees +shikari +shikaris +shikarred +shikarring +shikars +shiksa +shiksas +shikse +shikses +shilingi +shill +shillala +shillalas +shilled +shillelagh +shillelaghs +shilling +shillings +shills +shilpit +shily +shim +shimmed +shimmer +shimmered +shimmering +shimmers +shimmery +shimmied +shimmies +shimming +shimmy +shimmying +shims +shin +shinbone +shinbones +shindies +shindig +shindigs +shindy +shindys +shine +shined +shiner +shiners +shines +shingle +shingled +shingler +shinglers +shingles +shingling +shingly +shinier +shiniest +shinily +shining +shinleaf +shinleafs +shinleaves +shinned +shinneries +shinnery +shinney +shinneys +shinnied +shinnies +shinning +shinny +shinnying +shins +shiny +ship +shipboard +shipboards +shipbuilder +shipbuilders +shiplap +shiplaps +shipload +shiploads +shipman +shipmate +shipmates +shipmen +shipment +shipments +shipped +shippen +shippens +shipper +shippers +shipping +shippings +shippon +shippons +ships +shipshape +shipside +shipsides +shipway +shipways +shipworm +shipworms +shipwreck +shipwrecked +shipwrecking +shipwrecks +shipyard +shipyards +shire +shires +shirk +shirked +shirker +shirkers +shirking +shirks +shirr +shirred +shirring +shirrings +shirrs +shirt +shirtier +shirtiest +shirting +shirtings +shirtless +shirts +shirty +shist +shists +shiv +shiva +shivah +shivahs +shivaree +shivareed +shivareeing +shivarees +shivas +shive +shiver +shivered +shiverer +shiverers +shivering +shivers +shivery +shives +shivs +shkotzim +shlemiel +shlemiels +shlock +shlocks +shmo +shmoes +shnaps +shoal +shoaled +shoaler +shoalest +shoalier +shoaliest +shoaling +shoals +shoaly +shoat +shoats +shock +shocked +shocker +shockers +shocking +shockproof +shocks +shod +shodden +shoddier +shoddies +shoddiest +shoddily +shoddiness +shoddinesses +shoddy +shoe +shoebill +shoebills +shoed +shoehorn +shoehorned +shoehorning +shoehorns +shoeing +shoelace +shoelaces +shoemaker +shoemakers +shoepac +shoepack +shoepacks +shoepacs +shoer +shoers +shoes +shoetree +shoetrees +shofar +shofars +shofroth +shog +shogged +shogging +shogs +shogun +shogunal +shoguns +shoji +shojis +sholom +shone +shoo +shooed +shooflies +shoofly +shooing +shook +shooks +shool +shooled +shooling +shools +shoon +shoos +shoot +shooter +shooters +shooting +shootings +shoots +shop +shopboy +shopboys +shopgirl +shopgirls +shophar +shophars +shophroth +shopkeeper +shopkeepers +shoplift +shoplifted +shoplifter +shoplifters +shoplifting +shoplifts +shopman +shopmen +shoppe +shopped +shopper +shoppers +shoppes +shopping +shoppings +shops +shoptalk +shoptalks +shopworn +shoran +shorans +shore +shorebird +shorebirds +shored +shoreless +shores +shoring +shorings +shorl +shorls +shorn +short +shortage +shortages +shortcake +shortcakes +shortchange +shortchanged +shortchanges +shortchanging +shortcoming +shortcomings +shortcut +shortcuts +shorted +shorten +shortened +shortening +shortens +shorter +shortest +shorthand +shorthands +shortia +shortias +shortie +shorties +shorting +shortish +shortliffe +shortly +shortness +shortnesses +shorts +shortsighted +shorty +shot +shote +shotes +shotgun +shotgunned +shotgunning +shotguns +shots +shott +shotted +shotten +shotting +shotts +should +shoulder +shouldered +shouldering +shoulders +shouldest +shouldst +shout +shouted +shouter +shouters +shouting +shouts +shove +shoved +shovel +shoveled +shoveler +shovelers +shoveling +shovelled +shovelling +shovels +shover +shovers +shoves +shoving +show +showboat +showboats +showcase +showcased +showcases +showcasing +showdown +showdowns +showed +shower +showered +showering +showers +showery +showgirl +showgirls +showier +showiest +showily +showiness +showinesses +showing +showings +showman +showmen +shown +showoff +showoffs +showroom +showrooms +shows +showy +shrank +shrapnel +shred +shredded +shredder +shredders +shredding +shreds +shrew +shrewd +shrewder +shrewdest +shrewdly +shrewdness +shrewdnesses +shrewed +shrewing +shrewish +shrews +shri +shriek +shrieked +shrieker +shriekers +shriekier +shriekiest +shrieking +shrieks +shrieky +shrieval +shrieve +shrieved +shrieves +shrieving +shrift +shrifts +shrike +shrikes +shrill +shrilled +shriller +shrillest +shrilling +shrills +shrilly +shrimp +shrimped +shrimper +shrimpers +shrimpier +shrimpiest +shrimping +shrimps +shrimpy +shrine +shrined +shrines +shrining +shrink +shrinkable +shrinkage +shrinkages +shrinker +shrinkers +shrinking +shrinks +shris +shrive +shrived +shrivel +shriveled +shriveling +shrivelled +shrivelling +shrivels +shriven +shriver +shrivers +shrives +shriving +shroff +shroffed +shroffing +shroffs +shroud +shrouded +shrouding +shrouds +shrove +shrub +shrubberies +shrubbery +shrubbier +shrubbiest +shrubby +shrubs +shrug +shrugged +shrugging +shrugs +shrunk +shrunken +shtetel +shtetl +shtetlach +shtick +shticks +shuck +shucked +shucker +shuckers +shucking +shuckings +shucks +shudder +shuddered +shuddering +shudders +shuddery +shuffle +shuffleboard +shuffleboards +shuffled +shuffler +shufflers +shuffles +shuffling +shul +shuln +shuls +shun +shunned +shunner +shunners +shunning +shunpike +shunpikes +shuns +shunt +shunted +shunter +shunters +shunting +shunts +shush +shushed +shushes +shushing +shut +shutdown +shutdowns +shute +shuted +shutes +shuteye +shuteyes +shuting +shutoff +shutoffs +shutout +shutouts +shuts +shutter +shuttered +shuttering +shutters +shutting +shuttle +shuttlecock +shuttlecocks +shuttled +shuttles +shuttling +shwanpan +shwanpans +shy +shyer +shyers +shyest +shying +shylock +shylocked +shylocking +shylocks +shyly +shyness +shynesses +shyster +shysters +si +sial +sialic +sialoid +sials +siamang +siamangs +siamese +siameses +sib +sibb +sibbs +sibilant +sibilants +sibilate +sibilated +sibilates +sibilating +sibling +siblings +sibs +sibyl +sibylic +sibyllic +sibyls +sic +siccan +sicced +siccing +sice +sices +sick +sickbay +sickbays +sickbed +sickbeds +sicked +sicken +sickened +sickener +sickeners +sickening +sickens +sicker +sickerly +sickest +sicking +sickish +sickle +sickled +sickles +sicklied +sicklier +sicklies +sickliest +sicklily +sickling +sickly +sicklying +sickness +sicknesses +sickroom +sickrooms +sicks +sics +siddur +siddurim +siddurs +side +sidearm +sideband +sidebands +sideboard +sideboards +sideburns +sidecar +sidecars +sided +sidehill +sidehills +sidekick +sidekicks +sideline +sidelined +sidelines +sideling +sidelining +sidelong +sideman +sidemen +sidereal +siderite +siderites +sides +sideshow +sideshows +sideslip +sideslipped +sideslipping +sideslips +sidespin +sidespins +sidestep +sidestepped +sidestepping +sidesteps +sideswipe +sideswiped +sideswipes +sideswiping +sidetrack +sidetracked +sidetracking +sidetracks +sidewalk +sidewalks +sidewall +sidewalls +sideward +sideway +sideways +sidewise +siding +sidings +sidle +sidled +sidler +sidlers +sidles +sidling +siege +sieged +sieges +sieging +siemens +sienite +sienites +sienna +siennas +sierozem +sierozems +sierra +sierran +sierras +siesta +siestas +sieur +sieurs +sieva +sieve +sieved +sieves +sieving +siffleur +siffleurs +sift +sifted +sifter +sifters +sifting +siftings +sifts +siganid +siganids +sigh +sighed +sigher +sighers +sighing +sighless +sighlike +sighs +sight +sighted +sighter +sighters +sighting +sightless +sightlier +sightliest +sightly +sights +sightsaw +sightsee +sightseeing +sightseen +sightseer +sightseers +sightsees +sigil +sigils +sigloi +siglos +sigma +sigmas +sigmate +sigmoid +sigmoids +sign +signal +signaled +signaler +signalers +signaling +signalled +signalling +signally +signals +signatories +signatory +signature +signatures +signed +signer +signers +signet +signeted +signeting +signets +signficance +signficances +signficant +signficantly +significance +significances +significant +significantly +signification +significations +signified +signifies +signify +signifying +signing +signior +signiori +signiories +signiors +signiory +signor +signora +signoras +signore +signori +signories +signors +signory +signpost +signposted +signposting +signposts +signs +sike +siker +sikes +silage +silages +silane +silanes +sild +silds +silence +silenced +silencer +silencers +silences +silencing +sileni +silent +silenter +silentest +silently +silents +silenus +silesia +silesias +silex +silexes +silhouette +silhouetted +silhouettes +silhouetting +silica +silicas +silicate +silicates +silicic +silicide +silicides +silicified +silicifies +silicify +silicifying +silicium +siliciums +silicle +silicles +silicon +silicone +silicones +silicons +siliqua +siliquae +silique +siliques +silk +silked +silken +silkier +silkiest +silkily +silking +silklike +silks +silkweed +silkweeds +silkworm +silkworms +silky +sill +sillabub +sillabubs +siller +sillers +sillibib +sillibibs +sillier +sillies +silliest +sillily +silliness +sillinesses +sills +silly +silo +siloed +siloing +silos +siloxane +siloxanes +silt +silted +siltier +siltiest +silting +silts +silty +silurid +silurids +siluroid +siluroids +silva +silvae +silvan +silvans +silvas +silver +silvered +silverer +silverers +silvering +silverly +silvern +silvers +silverware +silverwares +silvery +silvical +silvics +sim +sima +simar +simars +simaruba +simarubas +simas +simazine +simazines +simian +simians +similar +similarities +similarity +similarly +simile +similes +similitude +similitudes +simioid +simious +simitar +simitars +simlin +simlins +simmer +simmered +simmering +simmers +simnel +simnels +simoleon +simoleons +simoniac +simoniacs +simonies +simonist +simonists +simonize +simonized +simonizes +simonizing +simony +simoom +simooms +simoon +simoons +simp +simper +simpered +simperer +simperers +simpering +simpers +simple +simpleness +simplenesses +simpler +simples +simplest +simpleton +simpletons +simplex +simplexes +simplices +simplicia +simplicities +simplicity +simplification +simplifications +simplified +simplifies +simplify +simplifying +simplism +simplisms +simply +simps +sims +simulant +simulants +simular +simulars +simulate +simulated +simulates +simulating +simulation +simulations +simultaneous +simultaneously +simultaneousness +simultaneousnesses +sin +sinapism +sinapisms +since +sincere +sincerely +sincerer +sincerest +sincerities +sincerity +sincipita +sinciput +sinciputs +sine +sinecure +sinecures +sines +sinew +sinewed +sinewing +sinews +sinewy +sinfonia +sinfonie +sinful +sinfully +sing +singable +singe +singed +singeing +singer +singers +singes +singing +single +singled +singleness +singlenesses +singles +singlet +singlets +singling +singly +sings +singsong +singsongs +singular +singularities +singularity +singularly +singulars +sinh +sinhs +sinicize +sinicized +sinicizes +sinicizing +sinister +sink +sinkable +sinkage +sinkages +sinker +sinkers +sinkhole +sinkholes +sinking +sinks +sinless +sinned +sinner +sinners +sinning +sinologies +sinology +sinopia +sinopias +sinopie +sins +sinsyne +sinter +sintered +sintering +sinters +sinuate +sinuated +sinuates +sinuating +sinuous +sinuousities +sinuousity +sinuously +sinus +sinuses +sinusoid +sinusoids +sip +sipe +siped +sipes +siphon +siphonal +siphoned +siphonic +siphoning +siphons +siping +sipped +sipper +sippers +sippet +sippets +sipping +sips +sir +sirdar +sirdars +sire +sired +siree +sirees +siren +sirenian +sirenians +sirens +sires +siring +sirloin +sirloins +sirocco +siroccos +sirra +sirrah +sirrahs +sirras +sirree +sirrees +sirs +sirup +sirups +sirupy +sirvente +sirventes +sis +sisal +sisals +sises +siskin +siskins +sissier +sissies +sissiest +sissy +sissyish +sister +sistered +sisterhood +sisterhoods +sistering +sisterly +sisters +sistra +sistroid +sistrum +sistrums +sit +sitar +sitarist +sitarists +sitars +site +sited +sites +sith +sithence +sithens +siti +siting +sitologies +sitology +sits +sitten +sitter +sitters +sitting +sittings +situate +situated +situates +situating +situation +situations +situs +situses +sitzmark +sitzmarks +siver +sivers +six +sixes +sixfold +sixmo +sixmos +sixpence +sixpences +sixpenny +sixte +sixteen +sixteens +sixteenth +sixteenths +sixtes +sixth +sixthly +sixths +sixties +sixtieth +sixtieths +sixty +sizable +sizably +sizar +sizars +size +sizeable +sizeably +sized +sizer +sizers +sizes +sizier +siziest +siziness +sizinesses +sizing +sizings +sizy +sizzle +sizzled +sizzler +sizzlers +sizzles +sizzling +skag +skags +skald +skaldic +skalds +skat +skate +skated +skater +skaters +skates +skating +skatings +skatol +skatole +skatoles +skatols +skats +skean +skeane +skeanes +skeans +skee +skeed +skeeing +skeen +skeens +skees +skeet +skeeter +skeeters +skeets +skeg +skegs +skeigh +skein +skeined +skeining +skeins +skeletal +skeleton +skeletons +skellum +skellums +skelp +skelped +skelping +skelpit +skelps +skelter +skeltered +skeltering +skelters +skene +skenes +skep +skeps +skepsis +skepsises +skeptic +skeptical +skepticism +skepticisms +skeptics +skerries +skerry +sketch +sketched +sketcher +sketchers +sketches +sketchier +sketchiest +sketching +sketchy +skew +skewback +skewbacks +skewbald +skewbalds +skewed +skewer +skewered +skewering +skewers +skewing +skewness +skewnesses +skews +ski +skiable +skiagram +skiagrams +skibob +skibobs +skid +skidded +skidder +skidders +skiddier +skiddiest +skidding +skiddoo +skiddooed +skiddooing +skiddoos +skiddy +skidoo +skidooed +skidooing +skidoos +skids +skidway +skidways +skied +skier +skiers +skies +skiey +skiff +skiffle +skiffled +skiffles +skiffling +skiffs +skiing +skiings +skiis +skijorer +skijorers +skilful +skill +skilled +skilless +skillet +skillets +skillful +skillfully +skillfulness +skillfulnesses +skilling +skillings +skills +skim +skimmed +skimmer +skimmers +skimming +skimmings +skimo +skimos +skimp +skimped +skimpier +skimpiest +skimpily +skimping +skimps +skimpy +skims +skin +skinflint +skinflints +skinful +skinfuls +skinhead +skinheads +skink +skinked +skinker +skinkers +skinking +skinks +skinless +skinlike +skinned +skinner +skinners +skinnier +skinniest +skinning +skinny +skins +skint +skintight +skioring +skiorings +skip +skipjack +skipjacks +skiplane +skiplanes +skipped +skipper +skippered +skippering +skippers +skippet +skippets +skipping +skips +skirl +skirled +skirling +skirls +skirmish +skirmished +skirmishes +skirmishing +skirr +skirred +skirret +skirrets +skirring +skirrs +skirt +skirted +skirter +skirters +skirting +skirtings +skirts +skis +skit +skite +skited +skites +skiting +skits +skitter +skittered +skitterier +skitteriest +skittering +skitters +skittery +skittish +skittle +skittles +skive +skived +skiver +skivers +skives +skiving +skivvies +skivvy +skiwear +skiwears +sklent +sklented +sklenting +sklents +skoal +skoaled +skoaling +skoals +skookum +skreegh +skreeghed +skreeghing +skreeghs +skreigh +skreighed +skreighing +skreighs +skua +skuas +skulk +skulked +skulker +skulkers +skulking +skulks +skull +skullcap +skullcaps +skulled +skulls +skunk +skunked +skunking +skunks +sky +skyborne +skycap +skycaps +skydive +skydived +skydiver +skydivers +skydives +skydiving +skydove +skyed +skyey +skyhook +skyhooks +skying +skyjack +skyjacked +skyjacking +skyjacks +skylark +skylarked +skylarking +skylarks +skylight +skylights +skyline +skylines +skyman +skymen +skyphoi +skyphos +skyrocket +skyrocketed +skyrocketing +skyrockets +skysail +skysails +skyscraper +skyscrapers +skyward +skywards +skyway +skyways +skywrite +skywrites +skywriting +skywritten +skywrote +slab +slabbed +slabber +slabbered +slabbering +slabbers +slabbery +slabbing +slabs +slack +slacked +slacken +slackened +slackening +slackens +slacker +slackers +slackest +slacking +slackly +slackness +slacknesses +slacks +slag +slagged +slaggier +slaggiest +slagging +slaggy +slags +slain +slakable +slake +slaked +slaker +slakers +slakes +slaking +slalom +slalomed +slaloming +slaloms +slam +slammed +slamming +slams +slander +slandered +slanderer +slanderers +slandering +slanderous +slanders +slang +slanged +slangier +slangiest +slangily +slanging +slangs +slangy +slank +slant +slanted +slanting +slants +slap +slapdash +slapdashes +slapjack +slapjacks +slapped +slapper +slappers +slapping +slaps +slash +slashed +slasher +slashers +slashes +slashing +slashings +slat +slatch +slatches +slate +slated +slater +slaters +slates +slather +slathered +slathering +slathers +slatier +slatiest +slating +slatings +slats +slatted +slattern +slatterns +slatting +slaty +slaughter +slaughtered +slaughterhouse +slaughterhouses +slaughtering +slaughters +slave +slaved +slaver +slavered +slaverer +slaverers +slaveries +slavering +slavers +slavery +slaves +slavey +slaveys +slaving +slavish +slaw +slaws +slay +slayer +slayers +slaying +slays +sleave +sleaved +sleaves +sleaving +sleazier +sleaziest +sleazily +sleazy +sled +sledded +sledder +sledders +sledding +sleddings +sledge +sledged +sledgehammer +sledgehammered +sledgehammering +sledgehammers +sledges +sledging +sleds +sleek +sleeked +sleeken +sleekened +sleekening +sleekens +sleeker +sleekest +sleekier +sleekiest +sleeking +sleekit +sleekly +sleeks +sleeky +sleep +sleeper +sleepers +sleepier +sleepiest +sleepily +sleepiness +sleeping +sleepings +sleepless +sleeplessness +sleeps +sleepwalk +sleepwalked +sleepwalker +sleepwalkers +sleepwalking +sleepwalks +sleepy +sleet +sleeted +sleetier +sleetiest +sleeting +sleets +sleety +sleeve +sleeved +sleeveless +sleeves +sleeving +sleigh +sleighed +sleigher +sleighers +sleighing +sleighs +sleight +sleights +slender +slenderer +slenderest +slept +sleuth +sleuthed +sleuthing +sleuths +slew +slewed +slewing +slews +slice +sliced +slicer +slicers +slices +slicing +slick +slicked +slicker +slickers +slickest +slicking +slickly +slicks +slid +slidable +slidden +slide +slider +sliders +slides +slideway +slideways +sliding +slier +sliest +slight +slighted +slighter +slightest +slighting +slightly +slights +slily +slim +slime +slimed +slimes +slimier +slimiest +slimily +sliming +slimly +slimmed +slimmer +slimmest +slimming +slimness +slimnesses +slimpsier +slimpsiest +slimpsy +slims +slimsier +slimsiest +slimsy +slimy +sling +slinger +slingers +slinging +slings +slingshot +slingshots +slink +slinkier +slinkiest +slinkily +slinking +slinks +slinky +slip +slipcase +slipcases +slipe +sliped +slipes +slipform +slipformed +slipforming +slipforms +sliping +slipknot +slipknots +slipless +slipout +slipouts +slipover +slipovers +slippage +slippages +slipped +slipper +slipperier +slipperiest +slipperiness +slipperinesses +slippers +slippery +slippier +slippiest +slipping +slippy +slips +slipshod +slipslop +slipslops +slipsole +slipsoles +slipt +slipup +slipups +slipware +slipwares +slipway +slipways +slit +slither +slithered +slithering +slithers +slithery +slitless +slits +slitted +slitter +slitters +slitting +sliver +slivered +sliverer +sliverers +slivering +slivers +slivovic +slivovics +slob +slobber +slobbered +slobbering +slobbers +slobbery +slobbish +slobs +sloe +sloes +slog +slogan +slogans +slogged +slogger +sloggers +slogging +slogs +sloid +sloids +slojd +slojds +sloop +sloops +slop +slope +sloped +sloper +slopers +slopes +sloping +slopped +sloppier +sloppiest +sloppily +slopping +sloppy +slops +slopwork +slopworks +slosh +sloshed +sloshes +sloshier +sloshiest +sloshing +sloshy +slot +slotback +slotbacks +sloth +slothful +sloths +slots +slotted +slotting +slouch +slouched +sloucher +slouchers +slouches +slouchier +slouchiest +slouching +slouchy +slough +sloughed +sloughier +sloughiest +sloughing +sloughs +sloughy +sloven +slovenlier +slovenliest +slovenly +slovens +slow +slowdown +slowdowns +slowed +slower +slowest +slowing +slowish +slowly +slowness +slownesses +slowpoke +slowpokes +slows +slowworm +slowworms +sloyd +sloyds +slub +slubbed +slubber +slubbered +slubbering +slubbers +slubbing +slubbings +slubs +sludge +sludges +sludgier +sludgiest +sludgy +slue +slued +slues +sluff +sluffed +sluffing +sluffs +slug +slugabed +slugabeds +slugfest +slugfests +sluggard +sluggards +slugged +slugger +sluggers +slugging +sluggish +sluggishly +sluggishness +sluggishnesses +slugs +sluice +sluiced +sluices +sluicing +sluicy +sluing +slum +slumber +slumbered +slumbering +slumbers +slumbery +slumgum +slumgums +slumlord +slumlords +slummed +slummer +slummers +slummier +slummiest +slumming +slummy +slump +slumped +slumping +slumps +slums +slung +slunk +slur +slurb +slurban +slurbs +slurp +slurped +slurping +slurps +slurred +slurried +slurries +slurring +slurry +slurrying +slurs +slush +slushed +slushes +slushier +slushiest +slushily +slushing +slushy +slut +sluts +sluttish +sly +slyboots +slyer +slyest +slyly +slyness +slynesses +slype +slypes +smack +smacked +smacker +smackers +smacking +smacks +small +smallage +smallages +smaller +smallest +smallish +smallness +smallnesses +smallpox +smallpoxes +smalls +smalt +smalti +smaltine +smaltines +smaltite +smaltites +smalto +smaltos +smalts +smaragd +smaragde +smaragdes +smaragds +smarm +smarmier +smarmiest +smarms +smarmy +smart +smarted +smarten +smartened +smartening +smartens +smarter +smartest +smartie +smarties +smarting +smartly +smartness +smartnesses +smarts +smarty +smash +smashed +smasher +smashers +smashes +smashing +smashup +smashups +smatter +smattered +smattering +smatterings +smatters +smaze +smazes +smear +smeared +smearer +smearers +smearier +smeariest +smearing +smears +smeary +smectic +smeddum +smeddums +smeek +smeeked +smeeking +smeeks +smegma +smegmas +smell +smelled +smeller +smellers +smellier +smelliest +smelling +smells +smelly +smelt +smelted +smelter +smelteries +smelters +smeltery +smelting +smelts +smerk +smerked +smerking +smerks +smew +smews +smidgen +smidgens +smidgeon +smidgeons +smidgin +smidgins +smilax +smilaxes +smile +smiled +smiler +smilers +smiles +smiling +smirch +smirched +smirches +smirching +smirk +smirked +smirker +smirkers +smirkier +smirkiest +smirking +smirks +smirky +smit +smite +smiter +smiters +smites +smith +smitheries +smithery +smithies +smiths +smithy +smiting +smitten +smock +smocked +smocking +smockings +smocks +smog +smoggier +smoggiest +smoggy +smogless +smogs +smokable +smoke +smoked +smokeless +smokepot +smokepots +smoker +smokers +smokes +smokestack +smokestacks +smokey +smokier +smokiest +smokily +smoking +smoky +smolder +smoldered +smoldering +smolders +smolt +smolts +smooch +smooched +smooches +smooching +smoochy +smooth +smoothed +smoothen +smoothened +smoothening +smoothens +smoother +smoothers +smoothest +smoothie +smoothies +smoothing +smoothly +smoothness +smoothnesses +smooths +smoothy +smorgasbord +smorgasbords +smote +smother +smothered +smothering +smothers +smothery +smoulder +smouldered +smouldering +smoulders +smudge +smudged +smudges +smudgier +smudgiest +smudgily +smudging +smudgy +smug +smugger +smuggest +smuggle +smuggled +smuggler +smugglers +smuggles +smuggling +smugly +smugness +smugnesses +smut +smutch +smutched +smutches +smutchier +smutchiest +smutching +smutchy +smuts +smutted +smuttier +smuttiest +smuttily +smutting +smutty +snack +snacked +snacking +snacks +snaffle +snaffled +snaffles +snaffling +snafu +snafued +snafuing +snafus +snag +snagged +snaggier +snaggiest +snagging +snaggy +snaglike +snags +snail +snailed +snailing +snails +snake +snaked +snakes +snakier +snakiest +snakily +snaking +snaky +snap +snapback +snapbacks +snapdragon +snapdragons +snapless +snapped +snapper +snappers +snappier +snappiest +snappily +snapping +snappish +snappy +snaps +snapshot +snapshots +snapshotted +snapshotting +snapweed +snapweeds +snare +snared +snarer +snarers +snares +snaring +snark +snarks +snarl +snarled +snarler +snarlers +snarlier +snarliest +snarling +snarls +snarly +snash +snashes +snatch +snatched +snatcher +snatchers +snatches +snatchier +snatchiest +snatching +snatchy +snath +snathe +snathes +snaths +snaw +snawed +snawing +snaws +snazzier +snazziest +snazzy +sneak +sneaked +sneaker +sneakers +sneakier +sneakiest +sneakily +sneaking +sneakingly +sneaks +sneaky +sneap +sneaped +sneaping +sneaps +sneck +snecks +sned +snedded +snedding +sneds +sneer +sneered +sneerer +sneerers +sneerful +sneering +sneers +sneesh +sneeshes +sneeze +sneezed +sneezer +sneezers +sneezes +sneezier +sneeziest +sneezing +sneezy +snell +sneller +snellest +snells +snib +snibbed +snibbing +snibs +snick +snicked +snicker +snickered +snickering +snickers +snickery +snicking +snicks +snide +snidely +snider +snidest +sniff +sniffed +sniffer +sniffers +sniffier +sniffiest +sniffily +sniffing +sniffish +sniffle +sniffled +sniffler +snifflers +sniffles +sniffling +sniffs +sniffy +snifter +snifters +snigger +sniggered +sniggering +sniggers +sniggle +sniggled +sniggler +snigglers +sniggles +sniggling +snip +snipe +sniped +sniper +snipers +snipes +sniping +snipped +snipper +snippers +snippet +snippetier +snippetiest +snippets +snippety +snippier +snippiest +snippily +snipping +snippy +snips +snit +snitch +snitched +snitcher +snitchers +snitches +snitching +snits +snivel +sniveled +sniveler +snivelers +sniveling +snivelled +snivelling +snivels +snob +snobberies +snobbery +snobbier +snobbiest +snobbily +snobbish +snobbishly +snobbishness +snobbishnesses +snobbism +snobbisms +snobby +snobs +snood +snooded +snooding +snoods +snook +snooked +snooker +snookers +snooking +snooks +snool +snooled +snooling +snools +snoop +snooped +snooper +snoopers +snoopier +snoopiest +snoopily +snooping +snoops +snoopy +snoot +snooted +snootier +snootiest +snootily +snooting +snoots +snooty +snooze +snoozed +snoozer +snoozers +snoozes +snoozier +snooziest +snoozing +snoozle +snoozled +snoozles +snoozling +snoozy +snore +snored +snorer +snorers +snores +snoring +snorkel +snorkeled +snorkeling +snorkels +snort +snorted +snorter +snorters +snorting +snorts +snot +snots +snottier +snottiest +snottily +snotty +snout +snouted +snoutier +snoutiest +snouting +snoutish +snouts +snouty +snow +snowball +snowballed +snowballing +snowballs +snowbank +snowbanks +snowbell +snowbells +snowbird +snowbirds +snowbush +snowbushes +snowcap +snowcaps +snowdrift +snowdrifts +snowdrop +snowdrops +snowed +snowfall +snowfalls +snowflake +snowflakes +snowier +snowiest +snowily +snowing +snowland +snowlands +snowless +snowlike +snowman +snowmelt +snowmelts +snowmen +snowpack +snowpacks +snowplow +snowplowed +snowplowing +snowplows +snows +snowshed +snowsheds +snowshoe +snowshoed +snowshoeing +snowshoes +snowstorm +snowstorms +snowsuit +snowsuits +snowy +snub +snubbed +snubber +snubbers +snubbier +snubbiest +snubbing +snubby +snubness +snubnesses +snubs +snuck +snuff +snuffbox +snuffboxes +snuffed +snuffer +snuffers +snuffier +snuffiest +snuffily +snuffing +snuffle +snuffled +snuffler +snufflers +snuffles +snufflier +snuffliest +snuffling +snuffly +snuffs +snuffy +snug +snugged +snugger +snuggeries +snuggery +snuggest +snugging +snuggle +snuggled +snuggles +snuggling +snugly +snugness +snugnesses +snugs +snye +snyes +so +soak +soakage +soakages +soaked +soaker +soakers +soaking +soaks +soap +soapbark +soapbarks +soapbox +soapboxes +soaped +soapier +soapiest +soapily +soaping +soapless +soaplike +soaps +soapsuds +soapwort +soapworts +soapy +soar +soared +soarer +soarers +soaring +soarings +soars +soave +soaves +sob +sobbed +sobber +sobbers +sobbing +sobeit +sober +sobered +soberer +soberest +sobering +soberize +soberized +soberizes +soberizing +soberly +sobers +sobful +sobrieties +sobriety +sobs +socage +socager +socagers +socages +soccage +soccages +soccer +soccers +sociabilities +sociability +sociable +sociables +sociably +social +socialism +socialist +socialistic +socialists +socialization +socializations +socialize +socialized +socializes +socializing +socially +socials +societal +societies +society +sociological +sociologies +sociologist +sociologists +sociology +sock +socked +socket +socketed +socketing +sockets +sockeye +sockeyes +socking +sockman +sockmen +socks +socle +socles +socman +socmen +sod +soda +sodaless +sodalist +sodalists +sodalite +sodalites +sodalities +sodality +sodamide +sodamides +sodas +sodded +sodden +soddened +soddening +soddenly +soddens +soddies +sodding +soddy +sodic +sodium +sodiums +sodomies +sodomite +sodomites +sodomy +sods +soever +sofa +sofar +sofars +sofas +soffit +soffits +soft +softa +softas +softback +softbacks +softball +softballs +soften +softened +softener +softeners +softening +softens +softer +softest +softhead +softheads +softie +softies +softly +softness +softnesses +softs +software +softwares +softwood +softwoods +softy +sogged +soggier +soggiest +soggily +sogginess +sogginesses +soggy +soigne +soignee +soil +soilage +soilages +soiled +soiling +soilless +soils +soilure +soilures +soiree +soirees +soja +sojas +sojourn +sojourned +sojourning +sojourns +soke +sokeman +sokemen +sokes +sol +sola +solace +solaced +solacer +solacers +solaces +solacing +solan +soland +solander +solanders +solands +solanin +solanine +solanines +solanins +solano +solanos +solans +solanum +solanums +solar +solaria +solarise +solarised +solarises +solarising +solarism +solarisms +solarium +solariums +solarize +solarized +solarizes +solarizing +solate +solated +solates +solatia +solating +solation +solations +solatium +sold +soldan +soldans +solder +soldered +solderer +solderers +soldering +solders +soldi +soldier +soldiered +soldieries +soldiering +soldierly +soldiers +soldiery +soldo +sole +solecise +solecised +solecises +solecising +solecism +solecisms +solecist +solecists +solecize +solecized +solecizes +solecizing +soled +soleless +solely +solemn +solemner +solemnest +solemnly +solemnness +solemnnesses +soleness +solenesses +solenoid +solenoids +soleret +solerets +soles +solfege +solfeges +solfeggi +solgel +soli +solicit +solicitation +solicited +soliciting +solicitor +solicitors +solicitous +solicits +solicitude +solicitudes +solid +solidago +solidagos +solidarities +solidarity +solidary +solider +solidest +solidi +solidification +solidifications +solidified +solidifies +solidify +solidifying +solidities +solidity +solidly +solidness +solidnesses +solids +solidus +soliloquize +soliloquized +soliloquizes +soliloquizing +soliloquy +soliloquys +soling +solion +solions +soliquid +soliquids +solitaire +solitaires +solitaries +solitary +solitude +solitudes +solleret +sollerets +solo +soloed +soloing +soloist +soloists +solon +solonets +solonetses +solonetz +solonetzes +solons +solos +sols +solstice +solstices +solubilities +solubility +soluble +solubles +solubly +solum +solums +solus +solute +solutes +solution +solutions +solvable +solvate +solvated +solvates +solvating +solve +solved +solvencies +solvency +solvent +solvents +solver +solvers +solves +solving +soma +somas +somata +somatic +somber +somberly +sombre +sombrely +sombrero +sombreros +sombrous +some +somebodies +somebody +someday +somedeal +somehow +someone +someones +someplace +somersault +somersaulted +somersaulting +somersaults +somerset +somerseted +somerseting +somersets +somersetted +somersetting +somerville +something +sometime +sometimes +someway +someways +somewhat +somewhats +somewhen +somewhere +somewise +somital +somite +somites +somitic +somnambulism +somnambulist +somnambulists +somnolence +somnolences +somnolent +son +sonance +sonances +sonant +sonantal +sonantic +sonants +sonar +sonarman +sonarmen +sonars +sonata +sonatas +sonatina +sonatinas +sonatine +sonde +sonder +sonders +sondes +sone +sones +song +songbird +songbirds +songbook +songbooks +songfest +songfests +songful +songless +songlike +songs +songster +songsters +sonic +sonicate +sonicated +sonicates +sonicating +sonics +sonless +sonlike +sonly +sonnet +sonneted +sonneting +sonnets +sonnetted +sonnetting +sonnies +sonny +sonorant +sonorants +sonorities +sonority +sonorous +sonovox +sonovoxes +sons +sonship +sonships +sonsie +sonsier +sonsiest +sonsy +soochong +soochongs +sooey +soon +sooner +sooners +soonest +soot +sooted +sooth +soothe +soothed +soother +soothers +soothes +soothest +soothing +soothly +sooths +soothsaid +soothsay +soothsayer +soothsayers +soothsaying +soothsayings +soothsays +sootier +sootiest +sootily +sooting +soots +sooty +sop +soph +sophies +sophism +sophisms +sophist +sophistic +sophistical +sophisticate +sophisticated +sophisticates +sophistication +sophistications +sophistries +sophistry +sophists +sophomore +sophomores +sophs +sophy +sopite +sopited +sopites +sopiting +sopor +soporific +sopors +sopped +soppier +soppiest +sopping +soppy +soprani +soprano +sopranos +sops +sora +soras +sorb +sorbable +sorbate +sorbates +sorbed +sorbent +sorbents +sorbet +sorbets +sorbic +sorbing +sorbitol +sorbitols +sorbose +sorboses +sorbs +sorcerer +sorcerers +sorceress +sorceresses +sorceries +sorcery +sord +sordid +sordidly +sordidness +sordidnesses +sordine +sordines +sordini +sordino +sords +sore +sorehead +soreheads +sorel +sorels +sorely +soreness +sorenesses +sorer +sores +sorest +sorgho +sorghos +sorghum +sorghums +sorgo +sorgos +sori +soricine +sorites +soritic +sorn +sorned +sorner +sorners +sorning +sorns +soroche +soroches +sororal +sororate +sororates +sororities +sorority +soroses +sorosis +sorosises +sorption +sorptions +sorptive +sorrel +sorrels +sorrier +sorriest +sorrily +sorrow +sorrowed +sorrower +sorrowers +sorrowful +sorrowfully +sorrowing +sorrows +sorry +sort +sortable +sortably +sorted +sorter +sorters +sortie +sortied +sortieing +sorties +sorting +sorts +sorus +sos +sot +soth +soths +sotol +sotols +sots +sottish +sou +souari +souaris +soubise +soubises +soucar +soucars +souchong +souchongs +soudan +soudans +souffle +souffles +sough +soughed +soughing +soughs +sought +soul +souled +soulful +soulfully +soulless +soullike +souls +sound +soundbox +soundboxes +sounded +sounder +sounders +soundest +sounding +soundings +soundly +soundness +soundnesses +soundproof +soundproofed +soundproofing +soundproofs +sounds +soup +soupcon +soupcons +souped +soupier +soupiest +souping +soups +soupy +sour +sourball +sourballs +source +sources +sourdine +sourdines +soured +sourer +sourest +souring +sourish +sourly +sourness +sournesses +sourpuss +sourpusses +sours +soursop +soursops +sourwood +sourwoods +sous +souse +soused +souses +sousing +soutache +soutaches +soutane +soutanes +souter +souters +south +southeast +southeastern +southeasts +southed +souther +southerly +southern +southernmost +southerns +southernward +southernwards +southers +southing +southings +southpaw +southpaws +southron +southrons +souths +southwest +southwesterly +southwestern +southwests +souvenir +souvenirs +sovereign +sovereigns +sovereignties +sovereignty +soviet +soviets +sovkhoz +sovkhozes +sovkhozy +sovran +sovranly +sovrans +sovranties +sovranty +sow +sowable +sowans +sowar +sowars +sowbellies +sowbelly +sowbread +sowbreads +sowcar +sowcars +sowed +sowens +sower +sowers +sowing +sown +sows +sox +soy +soya +soyas +soybean +soybeans +soys +sozin +sozine +sozines +sozins +spa +space +spacecraft +spacecrafts +spaced +spaceflight +spaceflights +spaceman +spacemen +spacer +spacers +spaces +spaceship +spaceships +spacial +spacing +spacings +spacious +spaciously +spaciousness +spaciousnesses +spade +spaded +spadeful +spadefuls +spader +spaders +spades +spadices +spadille +spadilles +spading +spadix +spado +spadones +spae +spaed +spaeing +spaeings +spaes +spaghetti +spaghettis +spagyric +spagyrics +spahee +spahees +spahi +spahis +spail +spails +spait +spaits +spake +spale +spales +spall +spalled +spaller +spallers +spalling +spalls +spalpeen +spalpeens +span +spancel +spanceled +spanceling +spancelled +spancelling +spancels +spandrel +spandrels +spandril +spandrils +spang +spangle +spangled +spangles +spanglier +spangliest +spangling +spangly +spaniel +spaniels +spank +spanked +spanker +spankers +spanking +spankings +spanks +spanless +spanned +spanner +spanners +spanning +spans +spanworm +spanworms +spar +sparable +sparables +spare +spared +sparely +sparer +sparerib +spareribs +sparers +spares +sparest +sparge +sparged +sparger +spargers +sparges +sparging +sparid +sparids +sparing +sparingly +spark +sparked +sparker +sparkers +sparkier +sparkiest +sparkily +sparking +sparkish +sparkle +sparkled +sparkler +sparklers +sparkles +sparkling +sparks +sparky +sparlike +sparling +sparlings +sparoid +sparoids +sparred +sparrier +sparriest +sparring +sparrow +sparrows +sparry +spars +sparse +sparsely +sparser +sparsest +sparsities +sparsity +spas +spasm +spasmodic +spasms +spastic +spastics +spat +spate +spates +spathal +spathe +spathed +spathes +spathic +spathose +spatial +spatially +spats +spatted +spatter +spattered +spattering +spatters +spatting +spatula +spatular +spatulas +spavie +spavies +spaviet +spavin +spavined +spavins +spawn +spawned +spawner +spawners +spawning +spawns +spay +spayed +spaying +spays +speak +speaker +speakers +speaking +speakings +speaks +spean +speaned +speaning +speans +spear +speared +spearer +spearers +spearhead +spearheaded +spearheading +spearheads +spearing +spearman +spearmen +spearmint +spears +special +specialer +specialest +specialist +specialists +specialization +specializations +specialize +specialized +specializes +specializing +specially +specials +specialties +specialty +speciate +speciated +speciates +speciating +specie +species +specific +specifically +specification +specifications +specificities +specificity +specifics +specified +specifies +specify +specifying +specimen +specimens +specious +speck +specked +specking +speckle +speckled +speckles +speckling +specks +specs +spectacle +spectacles +spectacular +spectate +spectated +spectates +spectating +spectator +spectators +specter +specters +spectra +spectral +spectre +spectres +spectrum +spectrums +specula +specular +speculate +speculated +speculates +speculating +speculation +speculations +speculative +speculator +speculators +speculum +speculums +sped +speech +speeches +speechless +speed +speedboat +speedboats +speeded +speeder +speeders +speedier +speediest +speedily +speeding +speedings +speedometer +speedometers +speeds +speedup +speedups +speedway +speedways +speedy +speel +speeled +speeling +speels +speer +speered +speering +speerings +speers +speil +speiled +speiling +speils +speir +speired +speiring +speirs +speise +speises +speiss +speisses +spelaean +spelean +spell +spellbound +spelled +speller +spellers +spelling +spellings +spells +spelt +spelter +spelters +spelts +speltz +speltzes +spelunk +spelunked +spelunking +spelunks +spence +spencer +spencers +spences +spend +spender +spenders +spending +spends +spendthrift +spendthrifts +spent +sperm +spermaries +spermary +spermic +spermine +spermines +spermous +sperms +spew +spewed +spewer +spewers +spewing +spews +sphagnum +sphagnums +sphene +sphenes +sphenic +sphenoid +sphenoids +spheral +sphere +sphered +spheres +spheric +spherical +spherics +spherier +spheriest +sphering +spheroid +spheroids +spherule +spherules +sphery +sphinges +sphingid +sphingids +sphinx +sphinxes +sphygmic +sphygmus +sphygmuses +spic +spica +spicae +spicas +spicate +spicated +spiccato +spiccatos +spice +spiced +spicer +spiceries +spicers +spicery +spices +spicey +spicier +spiciest +spicily +spicing +spick +spicks +spics +spicula +spiculae +spicular +spicule +spicules +spiculum +spicy +spider +spiderier +spideriest +spiders +spidery +spied +spiegel +spiegels +spiel +spieled +spieler +spielers +spieling +spiels +spier +spiered +spiering +spiers +spies +spiffier +spiffiest +spiffily +spiffing +spiffy +spigot +spigots +spik +spike +spiked +spikelet +spikelets +spiker +spikers +spikes +spikier +spikiest +spikily +spiking +spiks +spiky +spile +spiled +spiles +spilikin +spilikins +spiling +spilings +spill +spillable +spillage +spillages +spilled +spiller +spillers +spilling +spills +spillway +spillways +spilt +spilth +spilths +spin +spinach +spinaches +spinage +spinages +spinal +spinally +spinals +spinate +spindle +spindled +spindler +spindlers +spindles +spindlier +spindliest +spindling +spindly +spine +spined +spinel +spineless +spinelle +spinelles +spinels +spines +spinet +spinets +spinier +spiniest +spinifex +spinifexes +spinless +spinner +spinneries +spinners +spinnery +spinney +spinneys +spinnies +spinning +spinnings +spinny +spinoff +spinoffs +spinor +spinors +spinose +spinous +spinout +spinouts +spins +spinster +spinsters +spinula +spinulae +spinule +spinules +spinwriter +spiny +spiracle +spiracles +spiraea +spiraeas +spiral +spiraled +spiraling +spiralled +spiralling +spirally +spirals +spirant +spirants +spire +spirea +spireas +spired +spirem +spireme +spiremes +spirems +spires +spirilla +spiring +spirit +spirited +spiriting +spiritless +spirits +spiritual +spiritualism +spiritualisms +spiritualist +spiritualistic +spiritualists +spiritualities +spirituality +spiritually +spirituals +spiroid +spirt +spirted +spirting +spirts +spirula +spirulae +spirulas +spiry +spit +spital +spitals +spitball +spitballs +spite +spited +spiteful +spitefuller +spitefullest +spitefully +spites +spitfire +spitfires +spiting +spits +spitted +spitter +spitters +spitting +spittle +spittles +spittoon +spittoons +spitz +spitzes +spiv +spivs +splake +splakes +splash +splashed +splasher +splashers +splashes +splashier +splashiest +splashing +splashy +splat +splats +splatter +splattered +splattering +splatters +splay +splayed +splaying +splays +spleen +spleenier +spleeniest +spleens +spleeny +splendid +splendider +splendidest +splendidly +splendor +splendors +splenia +splenial +splenic +splenii +splenium +splenius +splent +splents +splice +spliced +splicer +splicers +splices +splicing +spline +splined +splines +splining +splint +splinted +splinter +splintered +splintering +splinters +splinting +splints +split +splits +splitter +splitters +splitting +splore +splores +splosh +sploshed +sploshes +sploshing +splotch +splotched +splotches +splotchier +splotchiest +splotching +splotchy +splurge +splurged +splurges +splurgier +splurgiest +splurging +splurgy +splutter +spluttered +spluttering +splutters +spode +spodes +spoil +spoilage +spoilages +spoiled +spoiler +spoilers +spoiling +spoils +spoilt +spoke +spoked +spoken +spokes +spokesman +spokesmen +spokeswoman +spokeswomen +spoking +spoliate +spoliated +spoliates +spoliating +spondaic +spondaics +spondee +spondees +sponge +sponged +sponger +spongers +sponges +spongier +spongiest +spongily +spongin +sponging +spongins +spongy +sponsal +sponsion +sponsions +sponson +sponsons +sponsor +sponsored +sponsoring +sponsors +sponsorship +sponsorships +spontaneities +spontaneity +spontaneous +spontaneously +spontoon +spontoons +spoof +spoofed +spoofing +spoofs +spook +spooked +spookier +spookiest +spookily +spooking +spookish +spooks +spooky +spool +spooled +spooling +spools +spoon +spooned +spooney +spooneys +spoonful +spoonfuls +spoonier +spoonies +spooniest +spoonily +spooning +spoons +spoonsful +spoony +spoor +spoored +spooring +spoors +sporadic +sporadically +sporal +spore +spored +spores +sporing +sporoid +sporran +sporrans +sport +sported +sporter +sporters +sportful +sportier +sportiest +sportily +sporting +sportive +sports +sportscast +sportscaster +sportscasters +sportscasts +sportsman +sportsmanship +sportsmanships +sportsmen +sporty +sporular +sporule +sporules +spot +spotless +spotlessly +spotlight +spotlighted +spotlighting +spotlights +spots +spotted +spotter +spotters +spottier +spottiest +spottily +spotting +spotty +spousal +spousals +spouse +spoused +spouses +spousing +spout +spouted +spouter +spouters +spouting +spouts +spraddle +spraddled +spraddles +spraddling +sprag +sprags +sprain +sprained +spraining +sprains +sprang +sprat +sprats +sprattle +sprattled +sprattles +sprattling +sprawl +sprawled +sprawler +sprawlers +sprawlier +sprawliest +sprawling +sprawls +sprawly +spray +sprayed +sprayer +sprayers +spraying +sprays +spread +spreader +spreaders +spreading +spreads +spree +sprees +sprent +sprier +spriest +sprig +sprigged +sprigger +spriggers +spriggier +spriggiest +sprigging +spriggy +spright +sprightliness +sprightlinesses +sprightly +sprights +sprigs +spring +springal +springals +springe +springed +springeing +springer +springers +springes +springier +springiest +springing +springs +springy +sprinkle +sprinkled +sprinkler +sprinklers +sprinkles +sprinkling +sprint +sprinted +sprinter +sprinters +sprinting +sprints +sprit +sprite +sprites +sprits +sprocket +sprockets +sprout +sprouted +sprouting +sprouts +spruce +spruced +sprucely +sprucer +spruces +sprucest +sprucier +spruciest +sprucing +sprucy +sprue +sprues +sprug +sprugs +sprung +spry +spryer +spryest +spryly +spryness +sprynesses +spud +spudded +spudder +spudders +spudding +spuds +spue +spued +spues +spuing +spume +spumed +spumes +spumier +spumiest +spuming +spumone +spumones +spumoni +spumonis +spumous +spumy +spun +spunk +spunked +spunkie +spunkier +spunkies +spunkiest +spunkily +spunking +spunks +spunky +spur +spurgall +spurgalled +spurgalling +spurgalls +spurge +spurges +spurious +spurn +spurned +spurner +spurners +spurning +spurns +spurred +spurrer +spurrers +spurrey +spurreys +spurrier +spurriers +spurries +spurring +spurry +spurs +spurt +spurted +spurting +spurtle +spurtles +spurts +sputa +sputnik +sputniks +sputter +sputtered +sputtering +sputters +sputum +spy +spyglass +spyglasses +spying +squab +squabbier +squabbiest +squabble +squabbled +squabbles +squabbling +squabby +squabs +squad +squadded +squadding +squadron +squadroned +squadroning +squadrons +squads +squalene +squalenes +squalid +squalider +squalidest +squall +squalled +squaller +squallers +squallier +squalliest +squalling +squalls +squally +squalor +squalors +squama +squamae +squamate +squamose +squamous +squander +squandered +squandering +squanders +square +squared +squarely +squarer +squarers +squares +squarest +squaring +squarish +squash +squashed +squasher +squashers +squashes +squashier +squashiest +squashing +squashy +squat +squatly +squats +squatted +squatter +squattered +squattering +squatters +squattest +squattier +squattiest +squatting +squatty +squaw +squawk +squawked +squawker +squawkers +squawking +squawks +squaws +squeak +squeaked +squeaker +squeakers +squeakier +squeakiest +squeaking +squeaks +squeaky +squeal +squealed +squealer +squealers +squealing +squeals +squeamish +squeegee +squeegeed +squeegeeing +squeegees +squeeze +squeezed +squeezer +squeezers +squeezes +squeezing +squeg +squegged +squegging +squegs +squelch +squelched +squelches +squelchier +squelchiest +squelching +squelchy +squib +squibbed +squibbing +squibs +squid +squidded +squidding +squids +squiffed +squiffy +squiggle +squiggled +squiggles +squigglier +squiggliest +squiggling +squiggly +squilgee +squilgeed +squilgeeing +squilgees +squill +squilla +squillae +squillas +squills +squinch +squinched +squinches +squinching +squinnied +squinnier +squinnies +squinniest +squinny +squinnying +squint +squinted +squinter +squinters +squintest +squintier +squintiest +squinting +squints +squinty +squire +squired +squireen +squireens +squires +squiring +squirish +squirm +squirmed +squirmer +squirmers +squirmier +squirmiest +squirming +squirms +squirmy +squirrel +squirreled +squirreling +squirrelled +squirrelling +squirrels +squirt +squirted +squirter +squirters +squirting +squirts +squish +squished +squishes +squishier +squishiest +squishing +squishy +squoosh +squooshed +squooshes +squooshing +squush +squushed +squushes +squushing +sraddha +sraddhas +sradha +sradhas +sri +sris +stab +stabbed +stabber +stabbers +stabbing +stabile +stabiles +stabilities +stability +stabilization +stabilize +stabilized +stabilizer +stabilizers +stabilizes +stabilizing +stable +stabled +stabler +stablers +stables +stablest +stabling +stablings +stablish +stablished +stablishes +stablishing +stably +stabs +staccati +staccato +staccatos +stack +stacked +stacker +stackers +stacking +stacks +stacte +stactes +staddle +staddles +stade +stades +stadia +stadias +stadium +stadiums +staff +staffed +staffer +staffers +staffing +staffs +stag +stage +stagecoach +stagecoaches +staged +stager +stagers +stages +stagey +staggard +staggards +staggart +staggarts +stagged +stagger +staggered +staggering +staggeringly +staggers +staggery +staggie +staggier +staggies +staggiest +stagging +staggy +stagier +stagiest +stagily +staging +stagings +stagnant +stagnate +stagnated +stagnates +stagnating +stagnation +stagnations +stags +stagy +staid +staider +staidest +staidly +staig +staigs +stain +stained +stainer +stainers +staining +stainless +stains +stair +staircase +staircases +stairs +stairway +stairways +stairwell +stairwells +stake +staked +stakeout +stakeouts +stakes +staking +stalactite +stalactites +stalag +stalagmite +stalagmites +stalags +stale +staled +stalely +stalemate +stalemated +stalemates +stalemating +staler +stales +stalest +staling +stalinism +stalk +stalked +stalker +stalkers +stalkier +stalkiest +stalkily +stalking +stalks +stalky +stall +stalled +stalling +stallion +stallions +stalls +stalwart +stalwarts +stamen +stamens +stamina +staminal +staminas +stammel +stammels +stammer +stammered +stammering +stammers +stamp +stamped +stampede +stampeded +stampedes +stampeding +stamper +stampers +stamping +stamps +stance +stances +stanch +stanched +stancher +stanchers +stanches +stanchest +stanching +stanchion +stanchions +stanchly +stand +standard +standardization +standardizations +standardize +standardized +standardizes +standardizing +standards +standby +standbys +standee +standees +stander +standers +standing +standings +standish +standishes +standoff +standoffs +standout +standouts +standpat +standpoint +standpoints +stands +standstill +standup +stane +staned +stanes +stang +stanged +stanging +stangs +stanhope +stanhopes +staning +stank +stanks +stannaries +stannary +stannic +stannite +stannites +stannous +stannum +stannums +stanza +stanzaed +stanzaic +stanzas +stapedes +stapelia +stapelias +stapes +staph +staphs +staple +stapled +stapler +staplers +staples +stapling +star +starboard +starboards +starch +starched +starches +starchier +starchiest +starching +starchy +stardom +stardoms +stardust +stardusts +stare +stared +starer +starers +stares +starets +starfish +starfishes +stargaze +stargazed +stargazes +stargazing +staring +stark +starker +starkest +starkly +starless +starlet +starlets +starlight +starlights +starlike +starling +starlings +starlit +starnose +starnoses +starred +starrier +starriest +starring +starry +stars +start +started +starter +starters +starting +startle +startled +startler +startlers +startles +startling +starts +startsy +starvation +starvations +starve +starved +starver +starvers +starves +starving +starwort +starworts +stases +stash +stashed +stashes +stashing +stasima +stasimon +stasis +statable +statal +statant +state +stated +statedly +statehood +statehoods +statelier +stateliest +stateliness +statelinesses +stately +statement +statements +stater +stateroom +staterooms +staters +states +statesman +statesmanlike +statesmanship +statesmanships +statesmen +static +statical +statice +statices +statics +stating +station +stationary +stationed +stationer +stationeries +stationers +stationery +stationing +stations +statism +statisms +statist +statistic +statistical +statistically +statistician +statisticians +statistics +statists +stative +statives +stator +stators +statuaries +statuary +statue +statued +statues +statuesque +statuette +statuettes +stature +statures +status +statuses +statute +statutes +statutory +staumrel +staumrels +staunch +staunched +stauncher +staunches +staunchest +staunching +staunchly +stave +staved +staves +staving +staw +stay +stayed +stayer +stayers +staying +stays +staysail +staysails +stead +steaded +steadfast +steadfastly +steadfastness +steadfastnesses +steadied +steadier +steadiers +steadies +steadiest +steadily +steadiness +steadinesses +steading +steadings +steads +steady +steadying +steak +steaks +steal +stealage +stealages +stealer +stealers +stealing +stealings +steals +stealth +stealthier +stealthiest +stealthily +stealths +stealthy +steam +steamboat +steamboats +steamed +steamer +steamered +steamering +steamers +steamier +steamiest +steamily +steaming +steams +steamship +steamships +steamy +steapsin +steapsins +stearate +stearates +stearic +stearin +stearine +stearines +stearins +steatite +steatites +stedfast +steed +steeds +steek +steeked +steeking +steeks +steel +steeled +steelie +steelier +steelies +steeliest +steeling +steels +steely +steenbok +steenboks +steep +steeped +steepen +steepened +steepening +steepens +steeper +steepers +steepest +steeping +steeple +steeplechase +steeplechases +steepled +steeples +steeply +steepness +steepnesses +steeps +steer +steerage +steerages +steered +steerer +steerers +steering +steers +steeve +steeved +steeves +steeving +steevings +stegodon +stegodons +stein +steinbok +steinboks +steins +stela +stelae +stelai +stelar +stele +stelene +steles +stelic +stella +stellar +stellas +stellate +stellified +stellifies +stellify +stellifying +stem +stemless +stemlike +stemma +stemmas +stemmata +stemmed +stemmer +stemmeries +stemmers +stemmery +stemmier +stemmiest +stemming +stemmy +stems +stemson +stemsons +stemware +stemwares +stench +stenches +stenchier +stenchiest +stenchy +stencil +stenciled +stenciling +stencilled +stencilling +stencils +stengah +stengahs +steno +stenographer +stenographers +stenographic +stenography +stenos +stenosed +stenoses +stenosis +stenotic +stentor +stentorian +stentors +step +stepdame +stepdames +stepladder +stepladders +steplike +steppe +stepped +stepper +steppers +steppes +stepping +steps +stepson +stepsons +stepwise +stere +stereo +stereoed +stereoing +stereophonic +stereos +stereotype +stereotyped +stereotypes +stereotyping +steres +steric +sterical +sterigma +sterigmas +sterigmata +sterile +sterilities +sterility +sterilization +sterilizations +sterilize +sterilized +sterilizer +sterilizers +sterilizes +sterilizing +sterlet +sterlets +sterling +sterlings +stern +sterna +sternal +sterner +sternest +sternite +sternites +sternly +sternness +sternnesses +sterns +sternson +sternsons +sternum +sternums +sternway +sternways +steroid +steroids +sterol +sterols +stertor +stertors +stet +stethoscope +stethoscopes +stets +stetson +stetsons +stetted +stetting +stevedore +stevedores +stew +steward +stewarded +stewardess +stewardesses +stewarding +stewards +stewardship +stewardships +stewbum +stewbums +stewed +stewing +stewpan +stewpans +stews +stey +sthenia +sthenias +sthenic +stibial +stibine +stibines +stibium +stibiums +stibnite +stibnites +stich +stichic +stichs +stick +sticked +sticker +stickers +stickful +stickfuls +stickier +stickiest +stickily +sticking +stickit +stickle +stickled +stickler +sticklers +stickles +stickling +stickman +stickmen +stickout +stickouts +stickpin +stickpins +sticks +stickum +stickums +stickup +stickups +sticky +stied +sties +stiff +stiffen +stiffened +stiffening +stiffens +stiffer +stiffest +stiffish +stiffly +stiffness +stiffnesses +stiffs +stifle +stifled +stifler +stiflers +stifles +stifling +stigma +stigmal +stigmas +stigmata +stigmatize +stigmatized +stigmatizes +stigmatizing +stilbene +stilbenes +stilbite +stilbites +stile +stiles +stiletto +stilettoed +stilettoes +stilettoing +stilettos +still +stillbirth +stillbirths +stillborn +stilled +stiller +stillest +stillier +stilliest +stilling +stillman +stillmen +stillness +stillnesses +stills +stilly +stilt +stilted +stilting +stilts +stime +stimes +stimied +stimies +stimulant +stimulants +stimulate +stimulated +stimulates +stimulating +stimulation +stimulations +stimuli +stimulus +stimy +stimying +sting +stinger +stingers +stingier +stingiest +stingily +stinginess +stinginesses +stinging +stingo +stingos +stingray +stingrays +stings +stingy +stink +stinkard +stinkards +stinkbug +stinkbugs +stinker +stinkers +stinkier +stinkiest +stinking +stinko +stinkpot +stinkpots +stinks +stinky +stint +stinted +stinter +stinters +stinting +stints +stipe +stiped +stipel +stipels +stipend +stipends +stipes +stipites +stipple +stippled +stippler +stipplers +stipples +stippling +stipular +stipulate +stipulated +stipulates +stipulating +stipulation +stipulations +stipule +stipuled +stipules +stir +stirk +stirks +stirp +stirpes +stirps +stirred +stirrer +stirrers +stirring +stirrup +stirrups +stirs +stitch +stitched +stitcher +stitchers +stitches +stitching +stithied +stithies +stithy +stithying +stiver +stivers +stoa +stoae +stoai +stoas +stoat +stoats +stob +stobbed +stobbing +stobs +stoccado +stoccados +stoccata +stoccatas +stock +stockade +stockaded +stockades +stockading +stockcar +stockcars +stocked +stocker +stockers +stockier +stockiest +stockily +stocking +stockings +stockish +stockist +stockists +stockman +stockmen +stockpile +stockpiled +stockpiles +stockpiling +stockpot +stockpots +stocks +stocky +stockyard +stockyards +stodge +stodged +stodges +stodgier +stodgiest +stodgily +stodging +stodgy +stogey +stogeys +stogie +stogies +stogy +stoic +stoical +stoically +stoicism +stoicisms +stoics +stoke +stoked +stoker +stokers +stokes +stokesia +stokesias +stoking +stole +stoled +stolen +stoles +stolid +stolider +stolidest +stolidities +stolidity +stolidly +stollen +stollens +stolon +stolonic +stolons +stoma +stomach +stomachache +stomachaches +stomached +stomaching +stomachs +stomachy +stomal +stomas +stomata +stomatal +stomate +stomates +stomatic +stomatitis +stomodea +stomp +stomped +stomper +stompers +stomping +stomps +stonable +stone +stoned +stoneflies +stonefly +stoner +stoners +stones +stoney +stonier +stoniest +stonily +stoning +stonish +stonished +stonishes +stonishing +stony +stood +stooge +stooged +stooges +stooging +stook +stooked +stooker +stookers +stooking +stooks +stool +stooled +stoolie +stoolies +stooling +stools +stoop +stooped +stooper +stoopers +stooping +stoops +stop +stopcock +stopcocks +stope +stoped +stoper +stopers +stopes +stopgap +stopgaps +stoping +stoplight +stoplights +stopover +stopovers +stoppage +stoppages +stopped +stopper +stoppered +stoppering +stoppers +stopping +stopple +stoppled +stopples +stoppling +stops +stopt +stopwatch +stopwatches +storable +storables +storage +storages +storax +storaxes +store +stored +storehouse +storehouses +storekeeper +storekeepers +storeroom +storerooms +stores +storey +storeyed +storeys +storied +stories +storing +stork +storks +storm +stormed +stormier +stormiest +stormily +storming +storms +stormy +story +storying +storyteller +storytellers +storytelling +storytellings +stoss +stotinka +stotinki +stound +stounded +stounding +stounds +stoup +stoups +stour +stoure +stoures +stourie +stours +stoury +stout +stouten +stoutened +stoutening +stoutens +stouter +stoutest +stoutish +stoutly +stoutness +stoutnesses +stouts +stove +stover +stovers +stoves +stow +stowable +stowage +stowages +stowaway +stowaways +stowed +stowing +stowp +stowps +stows +straddle +straddled +straddles +straddling +strafe +strafed +strafer +strafers +strafes +strafing +straggle +straggled +straggler +stragglers +straggles +stragglier +straggliest +straggling +straggly +straight +straighted +straighten +straightened +straightening +straightens +straighter +straightest +straightforward +straightforwarder +straightforwardest +straighting +straights +straightway +strain +strained +strainer +strainers +straining +strains +strait +straiten +straitened +straitening +straitens +straiter +straitest +straitly +straits +strake +straked +strakes +stramash +stramashes +stramonies +stramony +strand +stranded +strander +stranders +stranding +strands +strang +strange +strangely +strangeness +strangenesses +stranger +strangered +strangering +strangers +strangest +strangle +strangled +strangler +stranglers +strangles +strangling +strangulation +strangulations +strap +strapness +strapnesses +strapped +strapper +strappers +strapping +straps +strass +strasses +strata +stratagem +stratagems +stratal +stratas +strategic +strategies +strategist +strategists +strategy +strath +straths +strati +stratification +stratifications +stratified +stratifies +stratify +stratifying +stratosphere +stratospheres +stratous +stratum +stratums +stratus +stravage +stravaged +stravages +stravaging +stravaig +stravaiged +stravaiging +stravaigs +straw +strawberries +strawberry +strawed +strawhat +strawier +strawiest +strawing +straws +strawy +stray +strayed +strayer +strayers +straying +strays +streak +streaked +streaker +streakers +streakier +streakiest +streaking +streaks +streaky +stream +streamed +streamer +streamers +streamier +streamiest +streaming +streamline +streamlines +streams +streamy +streek +streeked +streeker +streekers +streeking +streeks +street +streetcar +streetcars +streets +strength +strengthen +strengthened +strengthener +strengtheners +strengthening +strengthens +strengths +strenuous +strenuously +strep +streps +stress +stressed +stresses +stressing +stressor +stressors +stretch +stretched +stretcher +stretchers +stretches +stretchier +stretchiest +stretching +stretchy +stretta +strettas +strette +stretti +stretto +strettos +streusel +streusels +strew +strewed +strewer +strewers +strewing +strewn +strews +stria +striae +striate +striated +striates +striating +strick +stricken +strickle +strickled +strickles +strickling +stricks +strict +stricter +strictest +strictly +strictness +strictnesses +stricture +strictures +strid +stridden +stride +strident +strider +striders +strides +striding +stridor +stridors +strife +strifes +strigil +strigils +strigose +strike +striker +strikers +strikes +striking +strikingly +string +stringed +stringent +stringer +stringers +stringier +stringiest +stringing +strings +stringy +strip +stripe +striped +striper +stripers +stripes +stripier +stripiest +striping +stripings +stripped +stripper +strippers +stripping +strips +stript +stripy +strive +strived +striven +striver +strivers +strives +striving +strobe +strobes +strobic +strobil +strobila +strobilae +strobile +strobiles +strobili +strobils +strode +stroke +stroked +stroker +strokers +strokes +stroking +stroll +strolled +stroller +strollers +strolling +strolls +stroma +stromal +stromata +strong +stronger +strongest +stronghold +strongholds +strongly +strongyl +strongyls +strontia +strontias +strontic +strontium +strontiums +strook +strop +strophe +strophes +strophic +stropped +stropping +strops +stroud +strouds +strove +strow +strowed +strowing +strown +strows +stroy +stroyed +stroyer +stroyers +stroying +stroys +struck +strucken +structural +structure +structures +strudel +strudels +struggle +struggled +struggles +struggling +strum +struma +strumae +strumas +strummed +strummer +strummers +strumming +strumose +strumous +strumpet +strumpets +strums +strung +strunt +strunted +strunting +strunts +strut +struts +strutted +strutter +strutters +strutting +strychnine +strychnines +stub +stubbed +stubbier +stubbiest +stubbily +stubbing +stubble +stubbled +stubbles +stubblier +stubbliest +stubbly +stubborn +stubbornly +stubbornness +stubbornnesses +stubby +stubiest +stubs +stucco +stuccoed +stuccoer +stuccoers +stuccoes +stuccoing +stuccos +stuck +stud +studbook +studbooks +studded +studdie +studdies +studding +studdings +student +students +studfish +studfishes +studied +studier +studiers +studies +studio +studios +studious +studiously +studs +studwork +studworks +study +studying +stuff +stuffed +stuffer +stuffers +stuffier +stuffiest +stuffily +stuffing +stuffings +stuffs +stuffy +stuiver +stuivers +stull +stulls +stultification +stultifications +stultified +stultifies +stultify +stultifying +stum +stumble +stumbled +stumbler +stumblers +stumbles +stumbling +stummed +stumming +stump +stumpage +stumpages +stumped +stumper +stumpers +stumpier +stumpiest +stumping +stumps +stumpy +stums +stun +stung +stunk +stunned +stunner +stunners +stunning +stunningly +stuns +stunsail +stunsails +stunt +stunted +stunting +stunts +stupa +stupas +stupe +stupefaction +stupefactions +stupefied +stupefies +stupefy +stupefying +stupendous +stupendously +stupes +stupid +stupider +stupidest +stupidity +stupidly +stupids +stupor +stuporous +stupors +sturdied +sturdier +sturdies +sturdiest +sturdily +sturdiness +sturdinesses +sturdy +sturgeon +sturgeons +sturt +sturts +stutter +stuttered +stuttering +stutters +sty +stye +styed +styes +stygian +stying +stylar +stylate +style +styled +styler +stylers +styles +stylet +stylets +styli +styling +stylings +stylise +stylised +styliser +stylisers +stylises +stylish +stylishly +stylishness +stylishnesses +stylising +stylist +stylists +stylite +stylites +stylitic +stylize +stylized +stylizer +stylizers +stylizes +stylizing +styloid +stylus +styluses +stymie +stymied +stymieing +stymies +stymy +stymying +stypsis +stypsises +styptic +styptics +styrax +styraxes +styrene +styrenes +suable +suably +suasion +suasions +suasive +suasory +suave +suavely +suaver +suavest +suavities +suavity +sub +suba +subabbot +subabbots +subacid +subacrid +subacute +subadar +subadars +subadult +subadults +subagencies +subagency +subagent +subagents +subah +subahdar +subahdars +subahs +subalar +subarctic +subarea +subareas +subarid +subas +subatmospheric +subatom +subatoms +subaverage +subaxial +subbase +subbasement +subbasements +subbases +subbass +subbasses +subbed +subbing +subbings +subbranch +subbranches +subbreed +subbreeds +subcabinet +subcabinets +subcategories +subcategory +subcause +subcauses +subcell +subcells +subchief +subchiefs +subclan +subclans +subclass +subclassed +subclasses +subclassification +subclassifications +subclassified +subclassifies +subclassify +subclassifying +subclassing +subclerk +subclerks +subcommand +subcommands +subcommission +subcommissions +subcommunities +subcommunity +subcomponent +subcomponents +subconcept +subconcepts +subconscious +subconsciouses +subconsciously +subconsciousness +subconsciousnesses +subcontract +subcontracted +subcontracting +subcontractor +subcontractors +subcontracts +subcool +subcooled +subcooling +subcools +subculture +subcultures +subcutaneous +subcutes +subcutis +subcutises +subdean +subdeans +subdeb +subdebs +subdepartment +subdepartments +subdepot +subdepots +subdistrict +subdistricts +subdivide +subdivided +subdivides +subdividing +subdivision +subdivisions +subdual +subduals +subduce +subduced +subduces +subducing +subduct +subducted +subducting +subducts +subdue +subdued +subduer +subduers +subdues +subduing +subecho +subechoes +subedit +subedited +subediting +subedits +subentries +subentry +subepoch +subepochs +subequatorial +suber +suberect +suberic +suberin +suberins +suberise +suberised +suberises +suberising +suberize +suberized +suberizes +suberizing +suberose +suberous +subers +subfamilies +subfamily +subfield +subfields +subfix +subfixes +subfloor +subfloors +subfluid +subfreezing +subfusc +subgenera +subgenus +subgenuses +subgrade +subgrades +subgroup +subgroups +subgum +subhead +subheading +subheadings +subheads +subhuman +subhumans +subhumid +subidea +subideas +subindex +subindexes +subindices +subindustries +subindustry +subitem +subitems +subito +subject +subjected +subjecting +subjection +subjections +subjective +subjectively +subjectivities +subjectivity +subjects +subjoin +subjoined +subjoining +subjoins +subjugate +subjugated +subjugates +subjugating +subjugation +subjugations +subjunctive +subjunctives +sublate +sublated +sublates +sublating +sublease +subleased +subleases +subleasing +sublet +sublethal +sublets +subletting +sublevel +sublevels +sublime +sublimed +sublimer +sublimers +sublimes +sublimest +subliming +sublimities +sublimity +subliterate +submarine +submarines +submerge +submerged +submergence +submergences +submerges +submerging +submerse +submersed +submerses +submersible +submersing +submersion +submersions +submiss +submission +submissions +submissive +submit +submits +submitted +submitting +subnasal +subnetwork +subnetworks +subnodal +subnormal +suboceanic +suboptic +suboral +suborder +suborders +subordinate +subordinated +subordinates +subordinating +subordination +subordinations +suborn +suborned +suborner +suborners +suborning +suborns +suboval +subovate +suboxide +suboxides +subpar +subpart +subparts +subpena +subpenaed +subpenaing +subpenas +subphyla +subplot +subplots +subpoena +subpoenaed +subpoenaing +subpoenas +subpolar +subprincipal +subprincipals +subprocess +subprocesses +subprogram +subprograms +subproject +subprojects +subpubic +subrace +subraces +subregion +subregions +subrent +subrents +subring +subrings +subroutine +subroutines +subrule +subrules +subs +subsale +subsales +subscribe +subscribed +subscriber +subscribers +subscribes +subscribing +subscript +subscription +subscriptions +subscripts +subsect +subsection +subsections +subsects +subsequent +subsequently +subsere +subseres +subserve +subserved +subserves +subserving +subset +subsets +subshaft +subshafts +subshrub +subshrubs +subside +subsided +subsider +subsiders +subsides +subsidiaries +subsidiary +subsidies +subsiding +subsidize +subsidized +subsidizes +subsidizing +subsidy +subsist +subsisted +subsistence +subsistences +subsisting +subsists +subsoil +subsoiled +subsoiling +subsoils +subsolar +subsonic +subspace +subspaces +subspecialties +subspecialty +subspecies +substage +substages +substandard +substantial +substantially +substantiate +substantiated +substantiates +substantiating +substantiation +substantiations +substitute +substituted +substitutes +substituting +substitution +substitutions +substructure +substructures +subsume +subsumed +subsumes +subsuming +subsurface +subsystem +subsystems +subteen +subteens +subtemperate +subtend +subtended +subtending +subtends +subterfuge +subterfuges +subterranean +subterraneous +subtext +subtexts +subtile +subtiler +subtilest +subtilties +subtilty +subtitle +subtitled +subtitles +subtitling +subtle +subtler +subtlest +subtleties +subtlety +subtly +subtone +subtones +subtonic +subtonics +subtopic +subtopics +subtotal +subtotaled +subtotaling +subtotalled +subtotalling +subtotals +subtract +subtracted +subtracting +subtraction +subtractions +subtracts +subtreasuries +subtreasury +subtribe +subtribes +subtunic +subtunics +subtype +subtypes +subulate +subunit +subunits +suburb +suburban +suburbans +suburbed +suburbia +suburbias +suburbs +subvene +subvened +subvenes +subvening +subvert +subverted +subverting +subverts +subvicar +subvicars +subviral +subvocal +subway +subways +subzone +subzones +succah +succahs +succeed +succeeded +succeeding +succeeds +success +successes +successful +successfully +succession +successions +successive +successively +successor +successors +succinct +succincter +succinctest +succinctly +succinctness +succinctnesses +succinic +succinyl +succinyls +succor +succored +succorer +succorers +succories +succoring +succors +succory +succotash +succotashes +succoth +succour +succoured +succouring +succours +succuba +succubae +succubi +succubus +succubuses +succulence +succulences +succulent +succulents +succumb +succumbed +succumbing +succumbs +succuss +succussed +succusses +succussing +such +suchlike +suchness +suchnesses +suck +sucked +sucker +suckered +suckering +suckers +suckfish +suckfishes +sucking +suckle +suckled +suckler +sucklers +suckles +suckless +suckling +sucklings +sucks +sucrase +sucrases +sucre +sucres +sucrose +sucroses +suction +suctions +sudaria +sudaries +sudarium +sudary +sudation +sudations +sudatories +sudatory +sudd +sudden +suddenly +suddenness +suddennesses +suddens +sudds +sudor +sudoral +sudors +suds +sudsed +sudser +sudsers +sudses +sudsier +sudsiest +sudsing +sudsless +sudsy +sue +sued +suede +sueded +suedes +sueding +suer +suers +sues +suet +suets +suety +suffari +suffaris +suffer +suffered +sufferer +sufferers +suffering +sufferings +suffers +suffice +sufficed +sufficer +sufficers +suffices +sufficiencies +sufficiency +sufficient +sufficiently +sufficing +suffix +suffixal +suffixation +suffixations +suffixed +suffixes +suffixing +sufflate +sufflated +sufflates +sufflating +suffocate +suffocated +suffocates +suffocating +suffocatingly +suffocation +suffocations +suffrage +suffrages +suffuse +suffused +suffuses +suffusing +sugar +sugarcane +sugarcanes +sugared +sugarier +sugariest +sugaring +sugars +sugary +suggest +suggested +suggestible +suggesting +suggestion +suggestions +suggestive +suggestively +suggestiveness +suggestivenesses +suggests +sugh +sughed +sughing +sughs +suicidal +suicide +suicided +suicides +suiciding +suing +suint +suints +suit +suitabilities +suitability +suitable +suitably +suitcase +suitcases +suite +suited +suites +suiting +suitings +suitlike +suitor +suitors +suits +sukiyaki +sukiyakis +sukkah +sukkahs +sukkoth +sulcate +sulcated +sulci +sulcus +suldan +suldans +sulfa +sulfas +sulfate +sulfated +sulfates +sulfating +sulfid +sulfide +sulfides +sulfids +sulfinyl +sulfinyls +sulfite +sulfites +sulfitic +sulfo +sulfonal +sulfonals +sulfone +sulfones +sulfonic +sulfonyl +sulfonyls +sulfur +sulfured +sulfureous +sulfuret +sulfureted +sulfureting +sulfurets +sulfuretted +sulfuretting +sulfuric +sulfuring +sulfurous +sulfurs +sulfury +sulfuryl +sulfuryls +sulk +sulked +sulker +sulkers +sulkier +sulkies +sulkiest +sulkily +sulkiness +sulkinesses +sulking +sulks +sulky +sullage +sullages +sullen +sullener +sullenest +sullenly +sullenness +sullennesses +sullied +sullies +sully +sullying +sulpha +sulphas +sulphate +sulphated +sulphates +sulphating +sulphid +sulphide +sulphides +sulphids +sulphite +sulphites +sulphone +sulphones +sulphur +sulphured +sulphuring +sulphurs +sulphury +sultan +sultana +sultanas +sultanate +sultanated +sultanates +sultanating +sultanic +sultans +sultrier +sultriest +sultrily +sultry +sum +sumac +sumach +sumachs +sumacs +sumless +summa +summable +summae +summand +summands +summaries +summarily +summarization +summarizations +summarize +summarized +summarizes +summarizing +summary +summas +summate +summated +summates +summating +summation +summations +summed +summer +summered +summerier +summeriest +summering +summerly +summers +summery +summing +summit +summital +summitries +summitry +summits +summon +summoned +summoner +summoners +summoning +summons +summonsed +summonses +summonsing +sumo +sumos +sump +sumps +sumpter +sumpters +sumptuous +sumpweed +sumpweeds +sums +sun +sunback +sunbaked +sunbath +sunbathe +sunbathed +sunbathes +sunbathing +sunbaths +sunbeam +sunbeams +sunbird +sunbirds +sunbow +sunbows +sunburn +sunburned +sunburning +sunburns +sunburnt +sunburst +sunbursts +sundae +sundaes +sunder +sundered +sunderer +sunderers +sundering +sunders +sundew +sundews +sundial +sundials +sundog +sundogs +sundown +sundowns +sundries +sundrops +sundry +sunfast +sunfish +sunfishes +sunflower +sunflowers +sung +sunglass +sunglasses +sunglow +sunglows +sunk +sunken +sunket +sunkets +sunlamp +sunlamps +sunland +sunlands +sunless +sunlight +sunlights +sunlike +sunlit +sunn +sunna +sunnas +sunned +sunnier +sunniest +sunnily +sunning +sunns +sunny +sunrise +sunrises +sunroof +sunroofs +sunroom +sunrooms +suns +sunscald +sunscalds +sunset +sunsets +sunshade +sunshades +sunshine +sunshines +sunshiny +sunspot +sunspots +sunstone +sunstones +sunstroke +sunsuit +sunsuits +suntan +suntans +sunup +sunups +sunward +sunwards +sunwise +sup +supe +super +superabundance +superabundances +superabundant +superadd +superadded +superadding +superadds +superambitious +superathlete +superathletes +superb +superber +superbest +superbly +superbomb +superbombs +supercilious +superclean +supercold +supercolossal +superconvenient +superdense +supered +supereffective +superefficiencies +superefficiency +superefficient +superego +superegos +superenthusiasm +superenthusiasms +superenthusiastic +superfast +superficial +superficialities +superficiality +superficially +superfix +superfixes +superfluity +superfluous +supergood +supergovernment +supergovernments +supergroup +supergroups +superhard +superhero +superheroine +superheroines +superheros +superhuman +superhumans +superimpose +superimposed +superimposes +superimposing +supering +superintellectual +superintellectuals +superintelligence +superintelligences +superintelligent +superintend +superintended +superintendence +superintendences +superintendencies +superintendency +superintendent +superintendents +superintending +superintends +superior +superiorities +superiority +superiors +superjet +superjets +superlain +superlative +superlatively +superlay +superlie +superlies +superlying +superman +supermarket +supermarkets +supermen +supermodern +supernal +supernatural +supernaturally +superpatriot +superpatriotic +superpatriotism +superpatriotisms +superpatriots +superplane +superplanes +superpolite +superport +superports +superpowerful +superrefined +superrich +supers +supersalesman +supersalesmen +superscout +superscouts +superscript +superscripts +supersecrecies +supersecrecy +supersecret +supersede +superseded +supersedes +superseding +supersensitive +supersex +supersexes +supership +superships +supersize +supersized +superslick +supersmooth +supersoft +supersonic +superspecial +superspecialist +superspecialists +superstar +superstars +superstate +superstates +superstition +superstitions +superstitious +superstrength +superstrengths +superstrong +superstructure +superstructures +supersuccessful +supersystem +supersystems +supertanker +supertankers +supertax +supertaxes +superthick +superthin +supertight +supertough +supervene +supervened +supervenes +supervenient +supervening +supervise +supervised +supervises +supervising +supervision +supervisions +supervisor +supervisors +supervisory +superweak +superweapon +superweapons +superwoman +superwomen +supes +supinate +supinated +supinates +supinating +supine +supinely +supines +supped +supper +suppers +supping +supplant +supplanted +supplanting +supplants +supple +suppled +supplely +supplement +supplemental +supplementary +supplements +suppler +supples +supplest +suppliant +suppliants +supplicant +supplicants +supplicate +supplicated +supplicates +supplicating +supplication +supplications +supplied +supplier +suppliers +supplies +suppling +supply +supplying +support +supportable +supported +supporter +supporters +supporting +supportive +supports +supposal +supposals +suppose +supposed +supposer +supposers +supposes +supposing +supposition +suppositions +suppositories +suppository +suppress +suppressed +suppresses +suppressing +suppression +suppressions +suppurate +suppurated +suppurates +suppurating +suppuration +suppurations +supra +supraclavicular +supremacies +supremacy +supreme +supremely +supremer +supremest +sups +sura +surah +surahs +sural +suras +surbase +surbased +surbases +surcease +surceased +surceases +surceasing +surcharge +surcharges +surcoat +surcoats +surd +surds +sure +surefire +surely +sureness +surenesses +surer +surest +sureties +surety +surf +surfable +surface +surfaced +surfacer +surfacers +surfaces +surfacing +surfbird +surfbirds +surfboat +surfboats +surfed +surfeit +surfeited +surfeiting +surfeits +surfer +surfers +surffish +surffishes +surfier +surfiest +surfing +surfings +surflike +surfs +surfy +surge +surged +surgeon +surgeons +surger +surgeries +surgers +surgery +surges +surgical +surgically +surging +surgy +suricate +suricates +surlier +surliest +surlily +surly +surmise +surmised +surmiser +surmisers +surmises +surmising +surmount +surmounted +surmounting +surmounts +surname +surnamed +surnamer +surnamers +surnames +surnaming +surpass +surpassed +surpasses +surpassing +surpassingly +surplice +surplices +surplus +surpluses +surprint +surprinted +surprinting +surprints +surprise +surprised +surprises +surprising +surprisingly +surprize +surprized +surprizes +surprizing +surra +surras +surreal +surrealism +surrender +surrendered +surrendering +surrenders +surreptitious +surreptitiously +surrey +surreys +surround +surrounded +surrounding +surroundings +surrounds +surroyal +surroyals +surtax +surtaxed +surtaxes +surtaxing +surtout +surtouts +surveil +surveiled +surveiling +surveillance +surveillances +surveils +survey +surveyed +surveying +surveyor +surveyors +surveys +survival +survivals +survive +survived +surviver +survivers +survives +surviving +survivor +survivors +survivorship +survivorships +susceptibilities +susceptibility +susceptible +suslik +susliks +suspect +suspected +suspecting +suspects +suspend +suspended +suspender +suspenders +suspending +suspends +suspense +suspenseful +suspenses +suspension +suspensions +suspicion +suspicions +suspicious +suspiciously +suspire +suspired +suspires +suspiring +sustain +sustained +sustaining +sustains +sustenance +sustenances +susurrus +susurruses +sutler +sutlers +sutra +sutras +sutta +suttas +suttee +suttees +sutural +suture +sutured +sutures +suturing +suzerain +suzerains +svaraj +svarajes +svedberg +svedbergs +svelte +sveltely +svelter +sveltest +swab +swabbed +swabber +swabbers +swabbie +swabbies +swabbing +swabby +swabs +swaddle +swaddled +swaddles +swaddling +swag +swage +swaged +swager +swagers +swages +swagged +swagger +swaggered +swaggering +swaggers +swagging +swaging +swagman +swagmen +swags +swail +swails +swain +swainish +swains +swale +swales +swallow +swallowed +swallowing +swallows +swam +swami +swamies +swamis +swamp +swamped +swamper +swampers +swampier +swampiest +swamping +swampish +swamps +swampy +swamy +swan +swang +swanherd +swanherds +swank +swanked +swanker +swankest +swankier +swankiest +swankily +swanking +swanks +swanky +swanlike +swanned +swanneries +swannery +swanning +swanpan +swanpans +swans +swanskin +swanskins +swap +swapped +swapper +swappers +swapping +swaps +swaraj +swarajes +sward +swarded +swarding +swards +sware +swarf +swarfs +swarm +swarmed +swarmer +swarmers +swarming +swarms +swart +swarth +swarthier +swarthiest +swarths +swarthy +swarty +swash +swashbuckler +swashbucklers +swashbuckling +swashbucklings +swashed +swasher +swashers +swashes +swashing +swastica +swasticas +swastika +swastikas +swat +swatch +swatches +swath +swathe +swathed +swather +swathers +swathes +swathing +swaths +swats +swatted +swatter +swatters +swatting +sway +swayable +swayback +swaybacks +swayed +swayer +swayers +swayful +swaying +sways +swear +swearer +swearers +swearing +swears +sweat +sweatbox +sweatboxes +sweated +sweater +sweaters +sweatier +sweatiest +sweatily +sweating +sweats +sweaty +swede +swedes +sweenies +sweeny +sweep +sweeper +sweepers +sweepier +sweepiest +sweeping +sweepings +sweeps +sweepstakes +sweepy +sweer +sweet +sweeten +sweetened +sweetener +sweeteners +sweetening +sweetens +sweeter +sweetest +sweetheart +sweethearts +sweetie +sweeties +sweeting +sweetings +sweetish +sweetly +sweetness +sweetnesses +sweets +sweetsop +sweetsops +swell +swelled +sweller +swellest +swelling +swellings +swells +swelter +sweltered +sweltering +swelters +sweltrier +sweltriest +sweltry +swept +swerve +swerved +swerver +swervers +swerves +swerving +sweven +swevens +swift +swifter +swifters +swiftest +swiftly +swiftness +swiftnesses +swifts +swig +swigged +swigger +swiggers +swigging +swigs +swill +swilled +swiller +swillers +swilling +swills +swim +swimmer +swimmers +swimmier +swimmiest +swimmily +swimming +swimmings +swimmy +swims +swimsuit +swimsuits +swindle +swindled +swindler +swindlers +swindles +swindling +swine +swinepox +swinepoxes +swing +swinge +swinged +swingeing +swinger +swingers +swinges +swingier +swingiest +swinging +swingle +swingled +swingles +swingling +swings +swingy +swinish +swink +swinked +swinking +swinks +swinney +swinneys +swipe +swiped +swipes +swiping +swiple +swiples +swipple +swipples +swirl +swirled +swirlier +swirliest +swirling +swirls +swirly +swish +swished +swisher +swishers +swishes +swishier +swishiest +swishing +swishy +swiss +swisses +switch +switchboard +switchboards +switched +switcher +switchers +switches +switching +swith +swithe +swither +swithered +swithering +swithers +swithly +swive +swived +swivel +swiveled +swiveling +swivelled +swivelling +swivels +swives +swivet +swivets +swiving +swizzle +swizzled +swizzler +swizzlers +swizzles +swizzling +swob +swobbed +swobber +swobbers +swobbing +swobs +swollen +swoon +swooned +swooner +swooners +swooning +swoons +swoop +swooped +swooper +swoopers +swooping +swoops +swoosh +swooshed +swooshes +swooshing +swop +swopped +swopping +swops +sword +swordfish +swordfishes +swordman +swordmen +swords +swore +sworn +swot +swots +swotted +swotter +swotters +swotting +swoun +swound +swounded +swounding +swounds +swouned +swouning +swouns +swum +swung +sybarite +sybarites +sybo +syboes +sycamine +sycamines +sycamore +sycamores +syce +sycee +sycees +syces +sycomore +sycomores +syconia +syconium +sycophant +sycophantic +sycophants +sycoses +sycosis +syenite +syenites +syenitic +syke +sykes +syllabi +syllabic +syllabics +syllable +syllabled +syllables +syllabling +syllabub +syllabubs +syllabus +syllabuses +sylph +sylphic +sylphid +sylphids +sylphish +sylphs +sylphy +sylva +sylvae +sylvan +sylvans +sylvas +sylvatic +sylvin +sylvine +sylvines +sylvins +sylvite +sylvites +symbion +symbions +symbiont +symbionts +symbiot +symbiote +symbiotes +symbiots +symbol +symboled +symbolic +symbolical +symbolically +symboling +symbolism +symbolisms +symbolization +symbolizations +symbolize +symbolized +symbolizes +symbolizing +symbolled +symbolling +symbols +symmetric +symmetrical +symmetrically +symmetries +symmetry +sympathetic +sympathetically +sympathies +sympathize +sympathized +sympathizes +sympathizing +sympathy +sympatries +sympatry +symphonic +symphonies +symphony +sympodia +symposia +symposium +symptom +symptomatically +symptomatology +symptoms +syn +synagog +synagogs +synagogue +synagogues +synapse +synapsed +synapses +synapsing +synapsis +synaptic +sync +syncarp +syncarpies +syncarps +syncarpy +synced +synch +synched +synching +synchro +synchronization +synchronizations +synchronize +synchronized +synchronizes +synchronizing +synchros +synchs +syncing +syncline +synclines +syncom +syncoms +syncopal +syncopate +syncopated +syncopates +syncopating +syncopation +syncopations +syncope +syncopes +syncopic +syncs +syncytia +syndeses +syndesis +syndesises +syndet +syndetic +syndets +syndic +syndical +syndicate +syndicated +syndicates +syndicating +syndication +syndics +syndrome +syndromes +syne +synectic +synergia +synergias +synergic +synergid +synergids +synergies +synergy +synesis +synesises +syngamic +syngamies +syngamy +synod +synodal +synodic +synods +synonym +synonyme +synonymes +synonymies +synonymous +synonyms +synonymy +synopses +synopsis +synoptic +synovia +synovial +synovias +syntactic +syntactical +syntax +syntaxes +syntheses +synthesis +synthesize +synthesized +synthesizer +synthesizers +synthesizes +synthesizing +synthetic +synthetically +synthetics +syntonic +syntonies +syntony +synura +synurae +sypher +syphered +syphering +syphers +syphilis +syphilises +syphilitic +syphon +syphoned +syphoning +syphons +syren +syrens +syringa +syringas +syringe +syringed +syringes +syringing +syrinx +syrinxes +syrphian +syrphians +syrphid +syrphids +syrup +syrups +syrupy +system +systematic +systematical +systematically +systematize +systematized +systematizes +systematizing +systemic +systemics +systems +systole +systoles +systolic +syzygal +syzygial +syzygies +syzygy +ta +tab +tabanid +tabanids +tabard +tabarded +tabards +tabaret +tabarets +tabbed +tabbied +tabbies +tabbing +tabbis +tabbises +tabby +tabbying +taber +tabered +tabering +tabernacle +tabernacles +tabers +tabes +tabetic +tabetics +tabid +tabla +tablas +table +tableau +tableaus +tableaux +tablecloth +tablecloths +tabled +tableful +tablefuls +tables +tablesful +tablespoon +tablespoonful +tablespoonfuls +tablespoons +tablet +tableted +tableting +tabletop +tabletops +tablets +tabletted +tabletting +tableware +tablewares +tabling +tabloid +tabloids +taboo +tabooed +tabooing +taboos +tabor +tabored +taborer +taborers +taboret +taborets +taborin +taborine +taborines +taboring +taborins +tabors +tabour +taboured +tabourer +tabourers +tabouret +tabourets +tabouring +tabours +tabs +tabu +tabued +tabuing +tabular +tabulate +tabulated +tabulates +tabulating +tabulation +tabulations +tabulator +tabulators +tabus +tace +taces +tacet +tach +tache +taches +tachinid +tachinids +tachism +tachisms +tachist +tachiste +tachistes +tachists +tachs +tacit +tacitly +tacitness +tacitnesses +taciturn +taciturnities +taciturnity +tack +tacked +tacker +tackers +tacket +tackets +tackey +tackier +tackiest +tackified +tackifies +tackify +tackifying +tackily +tacking +tackle +tackled +tackler +tacklers +tackles +tackless +tackling +tacklings +tacks +tacky +tacnode +tacnodes +taco +taconite +taconites +tacos +tact +tactful +tactfully +tactic +tactical +tactician +tacticians +tactics +tactile +taction +tactions +tactless +tactlessly +tacts +tactual +tad +tadpole +tadpoles +tads +tae +tael +taels +taenia +taeniae +taenias +taffarel +taffarels +tafferel +tafferels +taffeta +taffetas +taffia +taffias +taffies +taffrail +taffrails +taffy +tafia +tafias +tag +tagalong +tagalongs +tagboard +tagboards +tagged +tagger +taggers +tagging +taglike +tagmeme +tagmemes +tagrag +tagrags +tags +tahr +tahrs +tahsil +tahsils +taiga +taigas +taiglach +tail +tailback +tailbacks +tailbone +tailbones +tailcoat +tailcoats +tailed +tailer +tailers +tailgate +tailgated +tailgates +tailgating +tailing +tailings +taille +tailles +tailless +taillight +taillights +taillike +tailor +tailored +tailoring +tailors +tailpipe +tailpipes +tailrace +tailraces +tails +tailskid +tailskids +tailspin +tailspins +tailwind +tailwinds +tain +tains +taint +tainted +tainting +taints +taipan +taipans +taj +tajes +takable +takahe +takahes +take +takeable +takedown +takedowns +taken +takeoff +takeoffs +takeout +takeouts +takeover +takeovers +taker +takers +takes +takin +taking +takingly +takings +takins +tala +talapoin +talapoins +talar +talaria +talars +talas +talc +talced +talcing +talcked +talcking +talcky +talcose +talcous +talcs +talcum +talcums +tale +talent +talented +talents +taler +talers +tales +talesman +talesmen +taleysim +tali +talion +talions +taliped +talipeds +talipes +talipot +talipots +talisman +talismans +talk +talkable +talkative +talked +talker +talkers +talkie +talkier +talkies +talkiest +talking +talkings +talks +talky +tall +tallage +tallaged +tallages +tallaging +tallaism +tallboy +tallboys +taller +tallest +tallied +tallier +tallies +tallish +tallith +tallithes +tallithim +tallitoth +tallness +tallnesses +tallol +tallols +tallow +tallowed +tallowing +tallows +tallowy +tally +tallyho +tallyhoed +tallyhoing +tallyhos +tallying +tallyman +tallymen +talmudic +talon +taloned +talons +talooka +talookas +taluk +taluka +talukas +taluks +talus +taluses +tam +tamable +tamal +tamale +tamales +tamals +tamandu +tamandua +tamanduas +tamandus +tamarack +tamaracks +tamarao +tamaraos +tamarau +tamaraus +tamarin +tamarind +tamarinds +tamarins +tamarisk +tamarisks +tamasha +tamashas +tambac +tambacs +tambala +tambalas +tambour +tamboura +tambouras +tamboured +tambourine +tambourines +tambouring +tambours +tambur +tambura +tamburas +tamburs +tame +tameable +tamed +tamein +tameins +tameless +tamely +tameness +tamenesses +tamer +tamers +tames +tamest +taming +tamis +tamises +tammie +tammies +tammy +tamp +tampala +tampalas +tampan +tampans +tamped +tamper +tampered +tamperer +tamperers +tampering +tampers +tamping +tampion +tampions +tampon +tamponed +tamponing +tampons +tamps +tams +tan +tanager +tanagers +tanbark +tanbarks +tandem +tandems +tang +tanged +tangelo +tangelos +tangence +tangences +tangencies +tangency +tangent +tangential +tangents +tangerine +tangerines +tangibilities +tangibility +tangible +tangibles +tangibly +tangier +tangiest +tanging +tangle +tangled +tangler +tanglers +tangles +tanglier +tangliest +tangling +tangly +tango +tangoed +tangoing +tangos +tangram +tangrams +tangs +tangy +tanist +tanistries +tanistry +tanists +tank +tanka +tankage +tankages +tankard +tankards +tankas +tanked +tanker +tankers +tankful +tankfuls +tanking +tanks +tankship +tankships +tannable +tannage +tannages +tannate +tannates +tanned +tanner +tanneries +tanners +tannery +tannest +tannic +tannin +tanning +tannings +tannins +tannish +tanrec +tanrecs +tans +tansies +tansy +tantalic +tantalize +tantalized +tantalizer +tantalizers +tantalizes +tantalizing +tantalizingly +tantalum +tantalums +tantalus +tantaluses +tantamount +tantara +tantaras +tantivies +tantivy +tanto +tantra +tantras +tantric +tantrum +tantrums +tanyard +tanyards +tao +taos +tap +tapa +tapadera +tapaderas +tapadero +tapaderos +tapalo +tapalos +tapas +tape +taped +tapeless +tapelike +tapeline +tapelines +taper +tapered +taperer +taperers +tapering +tapers +tapes +tapestried +tapestries +tapestry +tapestrying +tapeta +tapetal +tapetum +tapeworm +tapeworms +taphole +tapholes +taphouse +taphouses +taping +tapioca +tapiocas +tapir +tapirs +tapis +tapises +tapped +tapper +tappers +tappet +tappets +tapping +tappings +taproom +taprooms +taproot +taproots +taps +tapster +tapsters +tar +tarantas +tarantases +tarantula +tarantulas +tarboosh +tarbooshes +tarbush +tarbushes +tardier +tardies +tardiest +tardily +tardo +tardy +tare +tared +tares +targe +targes +target +targeted +targeting +targets +tariff +tariffed +tariffing +tariffs +taring +tarlatan +tarlatans +tarletan +tarletans +tarmac +tarmacs +tarn +tarnal +tarnally +tarnish +tarnished +tarnishes +tarnishing +tarns +taro +taroc +tarocs +tarok +taroks +taros +tarot +tarots +tarp +tarpan +tarpans +tarpaper +tarpapers +tarpaulin +tarpaulins +tarpon +tarpons +tarps +tarragon +tarragons +tarre +tarred +tarres +tarried +tarrier +tarriers +tarries +tarriest +tarring +tarry +tarrying +tars +tarsal +tarsals +tarsi +tarsia +tarsias +tarsier +tarsiers +tarsus +tart +tartan +tartana +tartanas +tartans +tartar +tartaric +tartars +tarted +tarter +tartest +tarting +tartish +tartlet +tartlets +tartly +tartness +tartnesses +tartrate +tartrates +tarts +tartufe +tartufes +tartuffe +tartuffes +tarweed +tarweeds +tarzan +tarzans +tas +task +tasked +tasking +taskmaster +taskmasters +tasks +taskwork +taskworks +tass +tasse +tassel +tasseled +tasseling +tasselled +tasselling +tassels +tasses +tasset +tassets +tassie +tassies +tastable +taste +tasted +tasteful +tastefully +tasteless +tastelessly +taster +tasters +tastes +tastier +tastiest +tastily +tasting +tasty +tat +tatami +tatamis +tate +tater +taters +tates +tatouay +tatouays +tats +tatted +tatter +tattered +tattering +tatters +tattier +tattiest +tatting +tattings +tattle +tattled +tattler +tattlers +tattles +tattletale +tattletales +tattling +tattoo +tattooed +tattooer +tattooers +tattooing +tattoos +tatty +tau +taught +taunt +taunted +taunter +taunters +taunting +taunts +taupe +taupes +taurine +taurines +taus +taut +tautaug +tautaugs +tauted +tauten +tautened +tautening +tautens +tauter +tautest +tauting +tautly +tautness +tautnesses +tautog +tautogs +tautomer +tautomers +tautonym +tautonyms +tauts +tav +tavern +taverner +taverners +taverns +tavs +taw +tawdrier +tawdries +tawdriest +tawdry +tawed +tawer +tawers +tawie +tawing +tawney +tawneys +tawnier +tawnies +tawniest +tawnily +tawny +tawpie +tawpies +taws +tawse +tawsed +tawses +tawsing +tawsy +tax +taxa +taxable +taxables +taxably +taxation +taxations +taxed +taxeme +taxemes +taxemic +taxer +taxers +taxes +taxi +taxicab +taxicabs +taxidermies +taxidermist +taxidermists +taxidermy +taxied +taxies +taxiing +taximan +taximen +taxing +taxingly +taxis +taxite +taxites +taxitic +taxiway +taxiways +taxless +taxman +taxmen +taxon +taxonomies +taxonomy +taxons +taxpaid +taxpayer +taxpayers +taxpaying +taxus +taxwise +taxying +tazza +tazzas +tazze +tea +teaberries +teaberry +teaboard +teaboards +teabowl +teabowls +teabox +teaboxes +teacake +teacakes +teacart +teacarts +teach +teachable +teacher +teachers +teaches +teaching +teachings +teacup +teacups +teahouse +teahouses +teak +teakettle +teakettles +teaks +teakwood +teakwoods +teal +teals +team +teamaker +teamakers +teamed +teaming +teammate +teammates +teams +teamster +teamsters +teamwork +teamworks +teapot +teapots +teapoy +teapoys +tear +tearable +teardown +teardowns +teardrop +teardrops +teared +tearer +tearers +tearful +teargas +teargases +teargassed +teargasses +teargassing +tearier +teariest +tearily +tearing +tearless +tearoom +tearooms +tears +teary +teas +tease +teased +teasel +teaseled +teaseler +teaselers +teaseling +teaselled +teaselling +teasels +teaser +teasers +teases +teashop +teashops +teasing +teaspoon +teaspoonful +teaspoonfuls +teaspoons +teat +teated +teatime +teatimes +teats +teaware +teawares +teazel +teazeled +teazeling +teazelled +teazelling +teazels +teazle +teazled +teazles +teazling +teched +techier +techiest +techily +technic +technical +technicalities +technicality +technically +technician +technicians +technics +technique +techniques +technological +technologies +technology +techy +tecta +tectal +tectonic +tectrices +tectrix +tectum +ted +tedded +tedder +tedders +teddies +tedding +teddy +tedious +tediously +tediousness +tediousnesses +tedium +tediums +teds +tee +teed +teeing +teem +teemed +teemer +teemers +teeming +teems +teen +teenage +teenaged +teenager +teenagers +teener +teeners +teenful +teenier +teeniest +teens +teensier +teensiest +teensy +teentsier +teentsiest +teentsy +teeny +teepee +teepees +tees +teeter +teetered +teetering +teeters +teeth +teethe +teethed +teether +teethers +teethes +teething +teethings +teetotal +teetotaled +teetotaling +teetotalled +teetotalling +teetotals +teetotum +teetotums +teff +teffs +teg +tegmen +tegmenta +tegmina +tegminal +tegs +tegua +teguas +tegular +tegumen +tegument +teguments +tegumina +teiglach +teiid +teiids +teind +teinds +tektite +tektites +tektitic +tektronix +tela +telae +telamon +telamones +tele +telecast +telecasted +telecasting +telecasts +teledu +teledus +telefilm +telefilms +telega +telegas +telegonies +telegony +telegram +telegrammed +telegramming +telegrams +telegraph +telegraphed +telegrapher +telegraphers +telegraphing +telegraphist +telegraphists +telegraphs +teleman +telemark +telemarks +telemen +teleost +teleosts +telepathic +telepathically +telepathies +telepathy +telephone +telephoned +telephoner +telephoners +telephones +telephoning +telephoto +teleplay +teleplays +teleport +teleported +teleporting +teleports +teleran +telerans +teles +telescope +telescoped +telescopes +telescopic +telescoping +teleses +telesis +telethon +telethons +teleview +televiewed +televiewing +televiews +televise +televised +televises +televising +television +televisions +telex +telexed +telexes +telexing +telfer +telfered +telfering +telfers +telford +telfords +telia +telial +telic +telium +tell +tellable +teller +tellers +tellies +telling +tells +telltale +telltales +telluric +telly +teloi +telome +telomes +telomic +telos +telpher +telphered +telphering +telphers +telson +telsonic +telsons +temblor +temblores +temblors +temerities +temerity +tempeh +tempehs +temper +tempera +temperament +temperamental +temperaments +temperance +temperances +temperas +temperate +temperature +temperatures +tempered +temperer +temperers +tempering +tempers +tempest +tempested +tempesting +tempests +tempestuous +tempi +templar +templars +template +templates +temple +templed +temples +templet +templets +tempo +temporal +temporals +temporaries +temporarily +temporary +tempos +tempt +temptation +temptations +tempted +tempter +tempters +tempting +temptingly +temptress +tempts +tempura +tempuras +ten +tenabilities +tenability +tenable +tenably +tenace +tenaces +tenacious +tenaciously +tenacities +tenacity +tenacula +tenail +tenaille +tenailles +tenails +tenancies +tenancy +tenant +tenanted +tenanting +tenantries +tenantry +tenants +tench +tenches +tend +tendance +tendances +tended +tendence +tendences +tendencies +tendency +tender +tendered +tenderer +tenderers +tenderest +tendering +tenderize +tenderized +tenderizer +tenderizers +tenderizes +tenderizing +tenderloin +tenderloins +tenderly +tenderness +tendernesses +tenders +tending +tendon +tendons +tendril +tendrils +tends +tenebrae +tenement +tenements +tenesmus +tenesmuses +tenet +tenets +tenfold +tenfolds +tenia +teniae +tenias +teniasis +teniasises +tenner +tenners +tennis +tennises +tennist +tennists +tenon +tenoned +tenoner +tenoners +tenoning +tenons +tenor +tenorite +tenorites +tenors +tenotomies +tenotomy +tenour +tenours +tenpence +tenpences +tenpenny +tenpin +tenpins +tenrec +tenrecs +tens +tense +tensed +tensely +tenser +tenses +tensest +tensible +tensibly +tensile +tensing +tension +tensioned +tensioning +tensions +tensities +tensity +tensive +tensor +tensors +tent +tentacle +tentacles +tentacular +tentage +tentages +tentative +tentatively +tented +tenter +tentered +tenterhooks +tentering +tenters +tenth +tenthly +tenths +tentie +tentier +tentiest +tenting +tentless +tentlike +tents +tenty +tenues +tenuis +tenuities +tenuity +tenuous +tenuously +tenuousness +tenuousnesses +tenure +tenured +tenures +tenurial +tenuti +tenuto +tenutos +teocalli +teocallis +teopan +teopans +teosinte +teosintes +tepa +tepas +tepee +tepees +tepefied +tepefies +tepefy +tepefying +tephra +tephras +tephrite +tephrites +tepid +tepidities +tepidity +tepidly +tequila +tequilas +terai +terais +teraohm +teraohms +teraph +teraphim +teratism +teratisms +teratoid +teratoma +teratomas +teratomata +terbia +terbias +terbic +terbium +terbiums +terce +tercel +tercelet +tercelets +tercels +terces +tercet +tercets +terebene +terebenes +terebic +teredines +teredo +teredos +terefah +terete +terga +tergal +tergite +tergites +tergum +teriyaki +teriyakis +term +termed +termer +termers +terminable +terminal +terminals +terminate +terminated +terminates +terminating +termination +terming +termini +terminologies +terminology +terminus +terminuses +termite +termites +termitic +termless +termly +termor +termors +terms +termtime +termtimes +tern +ternaries +ternary +ternate +terne +ternes +ternion +ternions +terns +terpene +terpenes +terpenic +terpinol +terpinols +terra +terrace +terraced +terraces +terracing +terrae +terrain +terrains +terrane +terranes +terrapin +terrapins +terraria +terrarium +terras +terrases +terrazzo +terrazzos +terreen +terreens +terrella +terrellas +terrene +terrenes +terrestrial +terret +terrets +terrible +terribly +terrier +terriers +terries +terrific +terrified +terrifies +terrify +terrifying +terrifyingly +terrine +terrines +territ +territorial +territories +territory +territs +terror +terrorism +terrorisms +terrorize +terrorized +terrorizes +terrorizing +terrors +terry +terse +tersely +terseness +tersenesses +terser +tersest +tertial +tertials +tertian +tertians +tertiaries +tertiary +tesla +teslas +tessera +tesserae +test +testa +testable +testacies +testacy +testae +testament +testamentary +testaments +testate +testator +testators +tested +testee +testees +tester +testers +testes +testicle +testicles +testicular +testier +testiest +testified +testifies +testify +testifying +testily +testimonial +testimonials +testimonies +testimony +testing +testis +teston +testons +testoon +testoons +testosterone +testpatient +tests +testudines +testudo +testudos +testy +tetanal +tetanic +tetanics +tetanies +tetanise +tetanised +tetanises +tetanising +tetanize +tetanized +tetanizes +tetanizing +tetanoid +tetanus +tetanuses +tetany +tetched +tetchier +tetchiest +tetchily +tetchy +teth +tether +tethered +tethering +tethers +teths +tetotum +tetotums +tetra +tetracid +tetracids +tetrad +tetradic +tetrads +tetragon +tetragons +tetramer +tetramers +tetrapod +tetrapods +tetrarch +tetrarchs +tetras +tetrode +tetrodes +tetroxid +tetroxids +tetryl +tetryls +tetter +tetters +teuch +teugh +teughly +tew +tewed +tewing +tews +texas +texases +text +textbook +textbooks +textile +textiles +textless +texts +textual +textuaries +textuary +textural +texture +textured +textures +texturing +thack +thacked +thacking +thacks +thae +thairm +thairms +thalami +thalamic +thalamus +thaler +thalers +thalli +thallic +thallium +thalliums +thalloid +thallous +thallus +thalluses +than +thanage +thanages +thanatos +thanatoses +thane +thanes +thank +thanked +thanker +thankful +thankfuller +thankfullest +thankfully +thankfulness +thankfulnesses +thanking +thanks +thanksgiving +tharm +tharms +that +thataway +thatch +thatched +thatcher +thatchers +thatches +thatching +thatchy +thaw +thawed +thawer +thawers +thawing +thawless +thaws +the +thearchies +thearchy +theater +theaters +theatre +theatres +theatric +theatrical +thebaine +thebaines +theca +thecae +thecal +thecate +thee +theelin +theelins +theelol +theelols +theft +thefts +thegn +thegnly +thegns +thein +theine +theines +theins +their +theirs +theism +theisms +theist +theistic +theists +thelitis +thelitises +them +thematic +theme +themes +themselves +then +thenage +thenages +thenal +thenar +thenars +thence +thens +theocracy +theocrat +theocratic +theocrats +theodicies +theodicy +theogonies +theogony +theolog +theologian +theologians +theological +theologies +theologs +theology +theonomies +theonomy +theorbo +theorbos +theorem +theorems +theoretical +theoretically +theories +theorise +theorised +theorises +theorising +theorist +theorists +theorize +theorized +theorizes +theorizing +theory +therapeutic +therapeutically +therapies +therapist +therapists +therapy +there +thereabout +thereabouts +thereafter +thereat +thereby +therefor +therefore +therein +theremin +theremins +thereof +thereon +theres +thereto +thereupon +therewith +theriac +theriaca +theriacas +theriacs +therm +thermae +thermal +thermals +therme +thermel +thermels +thermes +thermic +thermion +thermions +thermit +thermite +thermites +thermits +thermodynamics +thermometer +thermometers +thermometric +thermometrically +thermos +thermoses +thermostat +thermostatic +thermostatically +thermostats +therms +theroid +theropod +theropods +thesauri +thesaurus +these +theses +thesis +thespian +thespians +theta +thetas +thetic +thetical +theurgic +theurgies +theurgy +thew +thewless +thews +thewy +they +thiamin +thiamine +thiamines +thiamins +thiazide +thiazides +thiazin +thiazine +thiazines +thiazins +thiazol +thiazole +thiazoles +thiazols +thick +thicken +thickened +thickener +thickeners +thickening +thickens +thicker +thickest +thicket +thickets +thickety +thickish +thickly +thickness +thicknesses +thicks +thickset +thicksets +thief +thieve +thieved +thieveries +thievery +thieves +thieving +thievish +thigh +thighbone +thighbones +thighed +thighs +thill +thills +thimble +thimbleful +thimblefuls +thimbles +thin +thinclad +thinclads +thindown +thindowns +thine +thing +things +think +thinker +thinkers +thinking +thinkings +thinks +thinly +thinned +thinner +thinness +thinnesses +thinnest +thinning +thinnish +thins +thio +thiol +thiolic +thiols +thionate +thionates +thionic +thionin +thionine +thionines +thionins +thionyl +thionyls +thiophen +thiophens +thiotepa +thiotepas +thiourea +thioureas +thir +thiram +thirams +third +thirdly +thirds +thirl +thirlage +thirlages +thirled +thirling +thirls +thirst +thirsted +thirster +thirsters +thirstier +thirstiest +thirsting +thirsts +thirsty +thirteen +thirteens +thirteenth +thirteenths +thirties +thirtieth +thirtieths +thirty +this +thistle +thistles +thistly +thither +tho +thole +tholed +tholepin +tholepins +tholes +tholing +tholoi +tholos +thong +thonged +thongs +thoracal +thoraces +thoracic +thorax +thoraxes +thoria +thorias +thoric +thorite +thorites +thorium +thoriums +thorn +thorned +thornier +thorniest +thornily +thorning +thorns +thorny +thoro +thoron +thorons +thorough +thoroughbred +thoroughbreds +thorougher +thoroughest +thoroughfare +thoroughfares +thoroughly +thoroughness +thoroughnesses +thorp +thorpe +thorpes +thorps +those +thou +thoued +though +thought +thoughtful +thoughtfully +thoughtfulness +thoughtfulnesses +thoughtless +thoughtlessly +thoughtlessness +thoughtlessnesses +thoughts +thouing +thous +thousand +thousands +thousandth +thousandths +thowless +thraldom +thraldoms +thrall +thralled +thralling +thralls +thrash +thrashed +thrasher +thrashers +thrashes +thrashing +thrave +thraves +thraw +thrawart +thrawed +thrawing +thrawn +thrawnly +thraws +thread +threadbare +threaded +threader +threaders +threadier +threadiest +threading +threads +thready +threap +threaped +threaper +threapers +threaping +threaps +threat +threated +threaten +threatened +threatening +threateningly +threatens +threating +threats +three +threefold +threep +threeped +threeping +threeps +threes +threescore +threnode +threnodes +threnodies +threnody +thresh +threshed +thresher +threshers +threshes +threshing +threshold +thresholds +threw +thrice +thrift +thriftier +thriftiest +thriftily +thriftless +thrifts +thrifty +thrill +thrilled +thriller +thrillers +thrilling +thrillingly +thrills +thrip +thrips +thrive +thrived +thriven +thriver +thrivers +thrives +thriving +thro +throat +throated +throatier +throatiest +throating +throats +throaty +throb +throbbed +throbber +throbbers +throbbing +throbs +throe +throes +thrombi +thrombin +thrombins +thrombocyte +thrombocytes +thrombocytopenia +thrombocytosis +thrombophlebitis +thromboplastin +thrombus +throne +throned +thrones +throng +thronged +thronging +throngs +throning +throstle +throstles +throttle +throttled +throttles +throttling +through +throughout +throve +throw +thrower +throwers +throwing +thrown +throws +thru +thrum +thrummed +thrummer +thrummers +thrummier +thrummiest +thrumming +thrummy +thrums +thruput +thruputs +thrush +thrushes +thrust +thrusted +thruster +thrusters +thrusting +thrustor +thrustors +thrusts +thruway +thruways +thud +thudded +thudding +thuds +thug +thuggee +thuggees +thuggeries +thuggery +thuggish +thugs +thuja +thujas +thulia +thulias +thulium +thuliums +thumb +thumbed +thumbing +thumbkin +thumbkins +thumbnail +thumbnails +thumbnut +thumbnuts +thumbs +thumbtack +thumbtacks +thump +thumped +thumper +thumpers +thumping +thumps +thunder +thunderbolt +thunderbolts +thunderclap +thunderclaps +thundered +thundering +thunderous +thunderously +thunders +thundershower +thundershowers +thunderstorm +thunderstorms +thundery +thurible +thuribles +thurifer +thurifers +thurl +thurls +thus +thusly +thuya +thuyas +thwack +thwacked +thwacker +thwackers +thwacking +thwacks +thwart +thwarted +thwarter +thwarters +thwarting +thwartly +thwarts +thy +thyme +thymes +thymey +thymi +thymic +thymier +thymiest +thymine +thymines +thymol +thymols +thymus +thymuses +thymy +thyreoid +thyroid +thyroidal +thyroids +thyroxin +thyroxins +thyrse +thyrses +thyrsi +thyrsoid +thyrsus +thyself +ti +tiara +tiaraed +tiaras +tibia +tibiae +tibial +tibias +tic +tical +ticals +tick +ticked +ticker +tickers +ticket +ticketed +ticketing +tickets +ticking +tickings +tickle +tickled +tickler +ticklers +tickles +tickling +ticklish +ticklishly +ticklishness +ticklishnesses +ticks +tickseed +tickseeds +ticktack +ticktacked +ticktacking +ticktacks +ticktock +ticktocked +ticktocking +ticktocks +tics +tictac +tictacked +tictacking +tictacs +tictoc +tictocked +tictocking +tictocs +tidal +tidally +tidbit +tidbits +tiddly +tide +tided +tideland +tidelands +tideless +tidelike +tidemark +tidemarks +tiderip +tiderips +tides +tidewater +tidewaters +tideway +tideways +tidied +tidier +tidies +tidiest +tidily +tidiness +tidinesses +tiding +tidings +tidy +tidying +tidytips +tie +tieback +tiebacks +tieclasp +tieclasps +tied +tieing +tiepin +tiepins +tier +tierce +tierced +tiercel +tiercels +tierces +tiered +tiering +tiers +ties +tiff +tiffanies +tiffany +tiffed +tiffin +tiffined +tiffing +tiffining +tiffins +tiffs +tiger +tigereye +tigereyes +tigerish +tigers +tight +tighten +tightened +tightening +tightens +tighter +tightest +tightly +tightness +tightnesses +tights +tightwad +tightwads +tiglon +tiglons +tigon +tigons +tigress +tigresses +tigrish +tike +tikes +tiki +tikis +til +tilapia +tilapias +tilburies +tilbury +tilde +tildes +tile +tiled +tilefish +tilefishes +tilelike +tiler +tilers +tiles +tiling +till +tillable +tillage +tillages +tilled +tiller +tillered +tillering +tillers +tilling +tills +tils +tilt +tiltable +tilted +tilter +tilters +tilth +tilths +tilting +tilts +tiltyard +tiltyards +timarau +timaraus +timbal +timbale +timbales +timbals +timber +timbered +timbering +timberland +timberlands +timbers +timbre +timbrel +timbrels +timbres +time +timecard +timecards +timed +timekeeper +timekeepers +timeless +timelessness +timelessnesses +timelier +timeliest +timeliness +timelinesses +timely +timeous +timeout +timeouts +timepiece +timepieces +timer +timers +times +timetable +timetables +timework +timeworks +timeworn +timid +timider +timidest +timidities +timidity +timidly +timing +timings +timorous +timorously +timorousness +timorousnesses +timothies +timothy +timpana +timpani +timpanist +timpanists +timpano +timpanum +timpanums +tin +tinamou +tinamous +tincal +tincals +tinct +tincted +tincting +tincts +tincture +tinctured +tinctures +tincturing +tinder +tinders +tindery +tine +tinea +tineal +tineas +tined +tineid +tineids +tines +tinfoil +tinfoils +tinful +tinfuls +ting +tinge +tinged +tingeing +tinges +tinging +tingle +tingled +tingler +tinglers +tingles +tinglier +tingliest +tingling +tingly +tings +tinhorn +tinhorns +tinier +tiniest +tinily +tininess +tininesses +tining +tinker +tinkered +tinkerer +tinkerers +tinkering +tinkers +tinkle +tinkled +tinkles +tinklier +tinkliest +tinkling +tinklings +tinkly +tinlike +tinman +tinmen +tinned +tinner +tinners +tinnier +tinniest +tinnily +tinning +tinnitus +tinnituses +tinny +tinplate +tinplates +tins +tinsel +tinseled +tinseling +tinselled +tinselling +tinselly +tinsels +tinsmith +tinsmiths +tinstone +tinstones +tint +tinted +tinter +tinters +tinting +tintings +tintless +tints +tintype +tintypes +tinware +tinwares +tinwork +tinworks +tiny +tip +tipcart +tipcarts +tipcat +tipcats +tipi +tipis +tipless +tipoff +tipoffs +tippable +tipped +tipper +tippers +tippet +tippets +tippier +tippiest +tipping +tipple +tippled +tippler +tipplers +tipples +tippling +tippy +tips +tipsier +tipsiest +tipsily +tipstaff +tipstaffs +tipstaves +tipster +tipsters +tipstock +tipstocks +tipsy +tiptoe +tiptoed +tiptoes +tiptoing +tiptop +tiptops +tirade +tirades +tire +tired +tireder +tiredest +tiredly +tireless +tirelessly +tirelessness +tires +tiresome +tiresomely +tiresomeness +tiresomenesses +tiring +tirl +tirled +tirling +tirls +tiro +tiros +tirrivee +tirrivees +tis +tisane +tisanes +tissual +tissue +tissued +tissues +tissuey +tissuing +tit +titan +titanate +titanates +titaness +titanesses +titania +titanias +titanic +titanism +titanisms +titanite +titanites +titanium +titaniums +titanous +titans +titbit +titbits +titer +titers +tithable +tithe +tithed +tither +tithers +tithes +tithing +tithings +tithonia +tithonias +titi +titian +titians +titillate +titillated +titillates +titillating +titillation +titillations +titis +titivate +titivated +titivates +titivating +titlark +titlarks +title +titled +titles +titling +titlist +titlists +titman +titmen +titmice +titmouse +titrable +titrant +titrants +titrate +titrated +titrates +titrating +titrator +titrators +titre +titres +tits +titter +tittered +titterer +titterers +tittering +titters +tittie +titties +tittle +tittles +tittup +tittuped +tittuping +tittupped +tittupping +tittuppy +tittups +titty +titular +titularies +titulars +titulary +tivy +tizzies +tizzy +tmeses +tmesis +to +toad +toadfish +toadfishes +toadflax +toadflaxes +toadied +toadies +toadish +toadless +toadlike +toads +toadstool +toadstools +toady +toadying +toadyish +toadyism +toadyisms +toast +toasted +toaster +toasters +toastier +toastiest +toasting +toasts +toasty +tobacco +tobaccoes +tobaccos +tobies +toboggan +tobogganed +tobogganing +toboggans +toby +tobys +toccata +toccatas +toccate +tocher +tochered +tochering +tochers +tocologies +tocology +tocsin +tocsins +tod +today +todays +toddies +toddle +toddled +toddler +toddlers +toddles +toddling +toddy +todies +tods +tody +toe +toecap +toecaps +toed +toehold +toeholds +toeing +toeless +toelike +toenail +toenailed +toenailing +toenails +toepiece +toepieces +toeplate +toeplates +toes +toeshoe +toeshoes +toff +toffee +toffees +toffies +toffs +toffy +toft +tofts +tofu +tofus +tog +toga +togae +togaed +togas +togate +togated +together +togetherness +togethernesses +togged +toggeries +toggery +togging +toggle +toggled +toggler +togglers +toggles +toggling +togs +togue +togues +toil +toile +toiled +toiler +toilers +toiles +toilet +toileted +toileting +toiletries +toiletry +toilets +toilette +toilettes +toilful +toiling +toils +toilsome +toilworn +toit +toited +toiting +toits +tokay +tokays +toke +token +tokened +tokening +tokenism +tokenisms +tokens +tokes +tokologies +tokology +tokonoma +tokonomas +tola +tolan +tolane +tolanes +tolans +tolas +tolbooth +tolbooths +told +tole +toled +toledo +toledos +tolerable +tolerably +tolerance +tolerances +tolerant +tolerate +tolerated +tolerates +tolerating +toleration +tolerations +toles +tolidin +tolidine +tolidines +tolidins +toling +toll +tollage +tollages +tollbar +tollbars +tollbooth +tollbooths +tolled +toller +tollers +tollgate +tollgates +tolling +tollman +tollmen +tolls +tollway +tollways +tolu +toluate +toluates +toluene +toluenes +toluic +toluid +toluide +toluides +toluidin +toluidins +toluids +toluol +toluole +toluoles +toluols +tolus +toluyl +toluyls +tolyl +tolyls +tom +tomahawk +tomahawked +tomahawking +tomahawks +tomalley +tomalleys +toman +tomans +tomato +tomatoes +tomb +tombac +tomback +tombacks +tombacs +tombak +tombaks +tombal +tombed +tombing +tombless +tomblike +tombolo +tombolos +tomboy +tomboys +tombs +tombstone +tombstones +tomcat +tomcats +tomcod +tomcods +tome +tomenta +tomentum +tomes +tomfool +tomfools +tommies +tommy +tommyrot +tommyrots +tomogram +tomograms +tomorrow +tomorrows +tompion +tompions +toms +tomtit +tomtits +ton +tonal +tonalities +tonality +tonally +tondi +tondo +tone +toned +toneless +toneme +tonemes +tonemic +toner +toners +tones +tonetic +tonetics +tonette +tonettes +tong +tonga +tongas +tonged +tonger +tongers +tonging +tongman +tongmen +tongs +tongue +tongued +tongueless +tongues +tonguing +tonguings +tonic +tonicities +tonicity +tonics +tonier +toniest +tonight +tonights +toning +tonish +tonishly +tonka +tonlet +tonlets +tonnage +tonnages +tonne +tonneau +tonneaus +tonneaux +tonner +tonners +tonnes +tonnish +tons +tonsil +tonsilar +tonsillectomies +tonsillectomy +tonsillitis +tonsillitises +tonsils +tonsure +tonsured +tonsures +tonsuring +tontine +tontines +tonus +tonuses +tony +too +took +tool +toolbox +toolboxes +tooled +tooler +toolers +toolhead +toolheads +tooling +toolings +toolless +toolroom +toolrooms +tools +toolshed +toolsheds +toom +toon +toons +toot +tooted +tooter +tooters +tooth +toothache +toothaches +toothbrush +toothbrushes +toothed +toothier +toothiest +toothily +toothing +toothless +toothpaste +toothpastes +toothpick +toothpicks +tooths +toothsome +toothy +tooting +tootle +tootled +tootler +tootlers +tootles +tootling +toots +tootses +tootsie +tootsies +tootsy +top +topaz +topazes +topazine +topcoat +topcoats +topcross +topcrosses +tope +toped +topee +topees +toper +topers +topes +topful +topfull +toph +tophe +tophes +tophi +tophs +tophus +topi +topiaries +topiary +topic +topical +topically +topics +toping +topis +topkick +topkicks +topknot +topknots +topless +toploftier +toploftiest +toplofty +topmast +topmasts +topmost +topnotch +topographer +topographers +topographic +topographical +topographies +topography +topoi +topologic +topologies +topology +toponym +toponymies +toponyms +toponymy +topos +topotype +topotypes +topped +topper +toppers +topping +toppings +topple +toppled +topples +toppling +tops +topsail +topsails +topside +topsides +topsoil +topsoiled +topsoiling +topsoils +topstone +topstones +topwork +topworked +topworking +topworks +toque +toques +toquet +toquets +tor +tora +torah +torahs +toras +torc +torch +torchbearer +torchbearers +torched +torchere +torcheres +torches +torchier +torchiers +torching +torchlight +torchlights +torchon +torchons +torcs +tore +toreador +toreadors +torero +toreros +tores +toreutic +tori +toric +tories +torii +torment +tormented +tormenting +tormentor +tormentors +torments +torn +tornadic +tornado +tornadoes +tornados +tornillo +tornillos +toro +toroid +toroidal +toroids +toros +torose +torosities +torosity +torous +torpedo +torpedoed +torpedoes +torpedoing +torpedos +torpid +torpidities +torpidity +torpidly +torpids +torpor +torpors +torquate +torque +torqued +torquer +torquers +torques +torqueses +torquing +torr +torrefied +torrefies +torrefy +torrefying +torrent +torrential +torrents +torrid +torrider +torridest +torridly +torrified +torrifies +torrify +torrifying +tors +torsade +torsades +torse +torses +torsi +torsion +torsional +torsionally +torsions +torsk +torsks +torso +torsos +tort +torte +torten +tortes +tortile +tortilla +tortillas +tortious +tortoise +tortoises +tortoni +tortonis +tortrix +tortrixes +torts +tortuous +torture +tortured +torturer +torturers +tortures +torturing +torula +torulae +torulas +torus +tory +tosh +toshes +toss +tossed +tosser +tossers +tosses +tossing +tosspot +tosspots +tossup +tossups +tost +tot +totable +total +totaled +totaling +totalise +totalised +totalises +totalising +totalism +totalisms +totalitarian +totalitarianism +totalitarianisms +totalitarians +totalities +totality +totalize +totalized +totalizes +totalizing +totalled +totalling +totally +totals +tote +toted +totem +totemic +totemism +totemisms +totemist +totemists +totemite +totemites +totems +toter +toters +totes +tother +toting +tots +totted +totter +tottered +totterer +totterers +tottering +totters +tottery +totting +totty +toucan +toucans +touch +touchback +touchbacks +touchdown +touchdowns +touche +touched +toucher +touchers +touches +touchier +touchiest +touchily +touching +touchstone +touchstones +touchup +touchups +touchy +tough +toughen +toughened +toughening +toughens +tougher +toughest +toughie +toughies +toughish +toughly +toughness +toughnesses +toughs +toughy +toupee +toupees +tour +touraco +touracos +toured +tourer +tourers +touring +tourings +tourism +tourisms +tourist +tourists +touristy +tournament +tournaments +tourney +tourneyed +tourneying +tourneys +tourniquet +tourniquets +tours +touse +toused +touses +tousing +tousle +tousled +tousles +tousling +tout +touted +touter +touters +touting +touts +touzle +touzled +touzles +touzling +tovarich +tovariches +tovarish +tovarishes +tow +towage +towages +toward +towardly +towards +towaway +towaways +towboat +towboats +towed +towel +toweled +toweling +towelings +towelled +towelling +towels +tower +towered +towerier +toweriest +towering +towers +towery +towhead +towheaded +towheads +towhee +towhees +towie +towies +towing +towline +towlines +towmond +towmonds +towmont +towmonts +town +townee +townees +townfolk +townie +townies +townish +townless +townlet +townlets +towns +township +townships +townsman +townsmen +townspeople +townwear +townwears +towny +towpath +towpaths +towrope +towropes +tows +towy +toxaemia +toxaemias +toxaemic +toxemia +toxemias +toxemic +toxic +toxical +toxicant +toxicants +toxicities +toxicity +toxin +toxine +toxines +toxins +toxoid +toxoids +toy +toyed +toyer +toyers +toying +toyish +toyless +toylike +toyo +toyon +toyons +toyos +toys +trabeate +trace +traceable +traced +tracer +traceries +tracers +tracery +traces +trachea +tracheae +tracheal +tracheas +tracheid +tracheids +tracherous +tracherously +trachle +trachled +trachles +trachling +trachoma +trachomas +trachyte +trachytes +tracing +tracings +track +trackage +trackages +tracked +tracker +trackers +tracking +trackings +trackman +trackmen +tracks +tract +tractable +tractate +tractates +tractile +traction +tractional +tractions +tractive +tractor +tractors +tracts +trad +tradable +trade +traded +trademark +trademarked +trademarking +trademarks +trader +traders +trades +tradesman +tradesmen +tradespeople +trading +tradition +traditional +traditionally +traditions +traditor +traditores +traduce +traduced +traducer +traducers +traduces +traducing +traffic +trafficked +trafficker +traffickers +trafficking +traffics +tragedies +tragedy +tragi +tragic +tragical +tragically +tragopan +tragopans +tragus +traik +traiked +traiking +traiks +trail +trailed +trailer +trailered +trailering +trailers +trailing +trails +train +trained +trainee +trainees +trainer +trainers +trainful +trainfuls +training +trainings +trainload +trainloads +trainman +trainmen +trains +trainway +trainways +traipse +traipsed +traipses +traipsing +trait +traitor +traitors +traits +traject +trajected +trajecting +trajects +tram +tramcar +tramcars +tramel +trameled +trameling +tramell +tramelled +tramelling +tramells +tramels +tramless +tramline +trammed +trammel +trammeled +trammeling +trammelled +trammelling +trammels +tramming +tramp +tramped +tramper +trampers +tramping +trampish +trample +trampled +trampler +tramplers +tramples +trampling +trampoline +trampoliner +trampoliners +trampolines +trampolinist +trampolinists +tramps +tramroad +tramroads +trams +tramway +tramways +trance +tranced +trances +trancing +trangam +trangams +tranquil +tranquiler +tranquilest +tranquilities +tranquility +tranquilize +tranquilized +tranquilizer +tranquilizers +tranquilizes +tranquilizing +tranquiller +tranquillest +tranquillities +tranquillity +tranquillize +tranquillized +tranquillizer +tranquillizers +tranquillizes +tranquillizing +tranquilly +trans +transact +transacted +transacting +transaction +transactions +transacts +transcend +transcended +transcendent +transcendental +transcending +transcends +transcribe +transcribes +transcript +transcription +transcriptions +transcripts +transect +transected +transecting +transects +transept +transepts +transfer +transferability +transferable +transferal +transferals +transference +transferences +transferred +transferring +transfers +transfiguration +transfigurations +transfigure +transfigured +transfigures +transfiguring +transfix +transfixed +transfixes +transfixing +transfixt +transform +transformation +transformations +transformed +transformer +transformers +transforming +transforms +transfuse +transfused +transfuses +transfusing +transfusion +transfusions +transgress +transgressed +transgresses +transgressing +transgression +transgressions +transgressor +transgressors +tranship +transhipped +transhipping +tranships +transistor +transistorize +transistorized +transistorizes +transistorizing +transistors +transit +transited +transiting +transition +transitional +transitions +transitory +transits +translatable +translate +translated +translates +translating +translation +translations +translator +translators +translucence +translucences +translucencies +translucency +translucent +translucently +transmissible +transmission +transmissions +transmit +transmits +transmittable +transmittal +transmittals +transmitted +transmitter +transmitters +transmitting +transom +transoms +transparencies +transparency +transparent +transparently +transpiration +transpirations +transpire +transpired +transpires +transpiring +transplant +transplantation +transplantations +transplanted +transplanting +transplants +transport +transportation +transported +transporter +transporters +transporting +transports +transpose +transposed +transposes +transposing +transposition +transpositions +transship +transshiped +transshiping +transshipment +transshipments +transships +transude +transuded +transudes +transuding +transverse +transversely +transverses +trap +trapan +trapanned +trapanning +trapans +trapball +trapballs +trapdoor +trapdoors +trapes +trapesed +trapeses +trapesing +trapeze +trapezes +trapezia +trapezoid +trapezoidal +trapezoids +traplike +trapnest +trapnested +trapnesting +trapnests +trappean +trapped +trapper +trappers +trapping +trappings +trappose +trappous +traprock +traprocks +traps +trapt +trapunto +trapuntos +trash +trashed +trashes +trashier +trashiest +trashily +trashing +trashman +trashmen +trashy +trass +trasses +trauchle +trauchled +trauchles +trauchling +trauma +traumas +traumata +traumatic +travail +travailed +travailing +travails +trave +travel +traveled +traveler +travelers +traveling +travelled +traveller +travellers +travelling +travelog +travelogs +travels +traverse +traversed +traverses +traversing +traves +travestied +travesties +travesty +travestying +travois +travoise +travoises +trawl +trawled +trawler +trawlers +trawley +trawleys +trawling +trawls +tray +trayful +trayfuls +trays +treacle +treacles +treacly +tread +treaded +treader +treaders +treading +treadle +treadled +treadler +treadlers +treadles +treadling +treadmill +treadmills +treads +treason +treasonable +treasonous +treasons +treasure +treasured +treasurer +treasurers +treasures +treasuries +treasuring +treasury +treat +treated +treater +treaters +treaties +treating +treatise +treatises +treatment +treatments +treats +treaty +treble +trebled +trebles +trebling +trebly +trecento +trecentos +treddle +treddled +treddles +treddling +tree +treed +treeing +treeless +treelike +treenail +treenails +trees +treetop +treetops +tref +trefah +trefoil +trefoils +trehala +trehalas +trek +trekked +trekker +trekkers +trekking +treks +trellis +trellised +trellises +trellising +tremble +trembled +trembler +tremblers +trembles +tremblier +trembliest +trembling +trembly +tremendous +tremendously +tremolo +tremolos +tremor +tremors +tremulous +tremulously +trenail +trenails +trench +trenchant +trenched +trencher +trenchers +trenches +trenching +trend +trended +trendier +trendiest +trendily +trending +trends +trendy +trepan +trepang +trepangs +trepanned +trepanning +trepans +trephine +trephined +trephines +trephining +trepid +trepidation +trepidations +trespass +trespassed +trespasser +trespassers +trespasses +trespassing +tress +tressed +tressel +tressels +tresses +tressier +tressiest +tressour +tressours +tressure +tressures +tressy +trestle +trestles +tret +trets +trevet +trevets +trews +trey +treys +triable +triacid +triacids +triad +triadic +triadics +triadism +triadisms +triads +triage +triages +trial +trials +triangle +triangles +triangular +triangularly +triarchies +triarchy +triaxial +triazin +triazine +triazines +triazins +triazole +triazoles +tribade +tribades +tribadic +tribal +tribally +tribasic +tribe +tribes +tribesman +tribesmen +tribrach +tribrachs +tribulation +tribulations +tribunal +tribunals +tribune +tribunes +tributaries +tributary +tribute +tributes +trice +triced +triceps +tricepses +trices +trichina +trichinae +trichinas +trichite +trichites +trichoid +trichome +trichomes +tricing +trick +tricked +tricker +trickeries +trickers +trickery +trickie +trickier +trickiest +trickily +tricking +trickish +trickle +trickled +trickles +tricklier +trickliest +trickling +trickly +tricks +tricksier +tricksiest +trickster +tricksters +tricksy +tricky +triclad +triclads +tricolor +tricolors +tricorn +tricorne +tricornes +tricorns +tricot +tricots +trictrac +trictracs +tricycle +tricycles +trident +tridents +triduum +triduums +tried +triene +trienes +triennia +triennial +triennials +triens +trientes +trier +triers +tries +triethyl +trifid +trifle +trifled +trifler +triflers +trifles +trifling +triflings +trifocal +trifocals +trifold +triforia +triform +trig +trigged +trigger +triggered +triggering +triggers +triggest +trigging +trigly +triglyph +triglyphs +trigness +trignesses +trigo +trigon +trigonal +trigonometric +trigonometrical +trigonometries +trigonometry +trigons +trigos +trigraph +trigraphs +trigs +trihedra +trijet +trijets +trilbies +trilby +trill +trilled +triller +trillers +trilling +trillion +trillions +trillionth +trillionths +trillium +trilliums +trills +trilobal +trilobed +trilogies +trilogy +trim +trimaran +trimarans +trimer +trimers +trimester +trimeter +trimeters +trimly +trimmed +trimmer +trimmers +trimmest +trimming +trimmings +trimness +trimnesses +trimorph +trimorphs +trimotor +trimotors +trims +trinal +trinary +trindle +trindled +trindles +trindling +trine +trined +trines +trining +trinities +trinity +trinket +trinketed +trinketing +trinkets +trinkums +trinodal +trio +triode +triodes +triol +triolet +triolets +triols +trios +triose +trioses +trioxid +trioxide +trioxides +trioxids +trip +tripack +tripacks +tripart +tripartite +tripe +tripedal +tripes +triphase +triplane +triplanes +triple +tripled +triples +triplet +triplets +triplex +triplexes +triplicate +triplicates +tripling +triplite +triplites +triploid +triploids +triply +tripod +tripodal +tripodic +tripodies +tripody +tripoli +tripolis +tripos +triposes +tripped +tripper +trippers +trippet +trippets +tripping +trippings +trips +triptane +triptanes +triptyca +triptycas +triptych +triptychs +trireme +triremes +triscele +trisceles +trisect +trisected +trisecting +trisection +trisections +trisects +triseme +trisemes +trisemic +triskele +triskeles +trismic +trismus +trismuses +trisome +trisomes +trisomic +trisomics +trisomies +trisomy +tristate +triste +tristeza +tristezas +tristful +tristich +tristichs +trite +tritely +triter +tritest +trithing +trithings +triticum +triticums +tritium +tritiums +tritoma +tritomas +triton +tritone +tritones +tritons +triumph +triumphal +triumphant +triumphantly +triumphed +triumphing +triumphs +triumvir +triumvirate +triumvirates +triumviri +triumvirs +triune +triunes +triunities +triunity +trivalve +trivalves +trivet +trivets +trivia +trivial +trivialities +triviality +trivium +troak +troaked +troaking +troaks +trocar +trocars +trochaic +trochaics +trochal +trochar +trochars +troche +trochee +trochees +troches +trochil +trochili +trochils +trochlea +trochleae +trochleas +trochoid +trochoids +trock +trocked +trocking +trocks +trod +trodden +trode +troffer +troffers +trogon +trogons +troika +troikas +troilite +troilites +troilus +troiluses +trois +troke +troked +trokes +troking +troland +trolands +troll +trolled +troller +trollers +trolley +trolleyed +trolleying +trolleys +trollied +trollies +trolling +trollings +trollop +trollops +trollopy +trolls +trolly +trollying +trombone +trombones +trombonist +trombonists +trommel +trommels +tromp +trompe +tromped +trompes +tromping +tromps +trona +tronas +trone +trones +troop +trooped +trooper +troopers +troopial +troopials +trooping +troops +trooz +trop +trope +tropes +trophic +trophied +trophies +trophy +trophying +tropic +tropical +tropics +tropin +tropine +tropines +tropins +tropism +tropisms +trot +troth +trothed +trothing +troths +trotline +trotlines +trots +trotted +trotter +trotters +trotting +trotyl +trotyls +troubadour +troubadours +trouble +troubled +troublemaker +troublemakers +troubler +troublers +troubles +troubleshoot +troubleshooted +troubleshooting +troubleshoots +troublesome +troublesomely +troubling +trough +troughs +trounce +trounced +trounces +trouncing +troupe +trouped +trouper +troupers +troupes +troupial +troupials +trouping +trouser +trousers +trousseau +trousseaus +trousseaux +trout +troutier +troutiest +trouts +trouty +trouvere +trouveres +trouveur +trouveurs +trove +trover +trovers +troves +trow +trowed +trowel +troweled +troweler +trowelers +troweling +trowelled +trowelling +trowels +trowing +trows +trowsers +trowth +trowths +troy +troys +truancies +truancy +truant +truanted +truanting +truantries +truantry +truants +truce +truced +truces +trucing +truck +truckage +truckages +trucked +trucker +truckers +trucking +truckings +truckle +truckled +truckler +trucklers +truckles +truckling +truckload +truckloads +truckman +truckmen +trucks +truculencies +truculency +truculent +truculently +trudge +trudged +trudgen +trudgens +trudgeon +trudgeons +trudger +trudgers +trudges +trudging +true +trueblue +trueblues +trueborn +trued +trueing +truelove +trueloves +trueness +truenesses +truer +trues +truest +truffe +truffes +truffle +truffled +truffles +truing +truism +truisms +truistic +trull +trulls +truly +trumeau +trumeaux +trump +trumped +trumperies +trumpery +trumpet +trumpeted +trumpeter +trumpeters +trumpeting +trumpets +trumping +trumps +truncate +truncated +truncates +truncating +truncation +truncations +trundle +trundled +trundler +trundlers +trundles +trundling +trunk +trunked +trunks +trunnel +trunnels +trunnion +trunnions +truss +trussed +trusser +trussers +trusses +trussing +trussings +trust +trusted +trustee +trusteed +trusteeing +trustees +trusteeship +trusteeships +truster +trusters +trustful +trustfully +trustier +trusties +trustiest +trustily +trusting +trusts +trustworthiness +trustworthinesses +trustworthy +trusty +truth +truthful +truthfully +truthfulness +truthfulnesses +truths +try +trying +tryingly +tryma +trymata +tryout +tryouts +trypsin +trypsins +tryptic +trysail +trysails +tryst +tryste +trysted +tryster +trysters +trystes +trysting +trysts +tryworks +tsade +tsades +tsadi +tsadis +tsar +tsardom +tsardoms +tsarevna +tsarevnas +tsarina +tsarinas +tsarism +tsarisms +tsarist +tsarists +tsaritza +tsaritzas +tsars +tsetse +tsetses +tsimmes +tsk +tsked +tsking +tsks +tsktsk +tsktsked +tsktsking +tsktsks +tsuba +tsunami +tsunamic +tsunamis +tsuris +tuatara +tuataras +tuatera +tuateras +tub +tuba +tubae +tubal +tubas +tubate +tubbable +tubbed +tubber +tubbers +tubbier +tubbiest +tubbing +tubby +tube +tubed +tubeless +tubelike +tuber +tubercle +tubercles +tubercular +tuberculoses +tuberculosis +tuberculous +tuberoid +tuberose +tuberoses +tuberous +tubers +tubes +tubework +tubeworks +tubful +tubfuls +tubifex +tubifexes +tubiform +tubing +tubings +tublike +tubs +tubular +tubulate +tubulated +tubulates +tubulating +tubule +tubules +tubulose +tubulous +tubulure +tubulures +tuchun +tuchuns +tuck +tuckahoe +tuckahoes +tucked +tucker +tuckered +tuckering +tuckers +tucket +tuckets +tucking +tucks +tufa +tufas +tuff +tuffet +tuffets +tuffs +tuft +tufted +tufter +tufters +tuftier +tuftiest +tuftily +tufting +tufts +tufty +tug +tugboat +tugboats +tugged +tugger +tuggers +tugging +tugless +tugrik +tugriks +tugs +tui +tuille +tuilles +tuis +tuition +tuitions +tuladi +tuladis +tule +tules +tulip +tulips +tulle +tulles +tullibee +tullibees +tumble +tumbled +tumbler +tumblers +tumbles +tumbling +tumblings +tumbrel +tumbrels +tumbril +tumbrils +tumefied +tumefies +tumefy +tumefying +tumid +tumidily +tumidities +tumidity +tummies +tummy +tumor +tumoral +tumorous +tumors +tumour +tumours +tump +tumpline +tumplines +tumps +tumular +tumuli +tumulose +tumulous +tumult +tumults +tumultuous +tumulus +tumuluses +tun +tuna +tunable +tunably +tunas +tundish +tundishes +tundra +tundras +tune +tuneable +tuneably +tuned +tuneful +tuneless +tuner +tuners +tunes +tung +tungs +tungsten +tungstens +tungstic +tunic +tunica +tunicae +tunicate +tunicates +tunicle +tunicles +tunics +tuning +tunnage +tunnages +tunned +tunnel +tunneled +tunneler +tunnelers +tunneling +tunnelled +tunnelling +tunnels +tunnies +tunning +tunny +tuns +tup +tupelo +tupelos +tupik +tupiks +tupped +tuppence +tuppences +tuppeny +tupping +tups +tuque +tuques +turaco +turacos +turacou +turacous +turban +turbaned +turbans +turbaries +turbary +turbeth +turbeths +turbid +turbidities +turbidity +turbidly +turbidness +turbidnesses +turbinal +turbinals +turbine +turbines +turbit +turbith +turbiths +turbits +turbo +turbocar +turbocars +turbofan +turbofans +turbojet +turbojets +turboprop +turboprops +turbos +turbot +turbots +turbulence +turbulences +turbulently +turd +turdine +turds +tureen +tureens +turf +turfed +turfier +turfiest +turfing +turfless +turflike +turfman +turfmen +turfs +turfski +turfskis +turfy +turgencies +turgency +turgent +turgid +turgidities +turgidity +turgidly +turgite +turgites +turgor +turgors +turkey +turkeys +turkois +turkoises +turmeric +turmerics +turmoil +turmoiled +turmoiling +turmoils +turn +turnable +turnaround +turncoat +turncoats +turndown +turndowns +turned +turner +turneries +turners +turnery +turnhall +turnhalls +turning +turnings +turnip +turnips +turnkey +turnkeys +turnoff +turnoffs +turnout +turnouts +turnover +turnovers +turnpike +turnpikes +turns +turnsole +turnsoles +turnspit +turnspits +turnstile +turnstiles +turntable +turntables +turnup +turnups +turpentine +turpentines +turpeth +turpeths +turpitude +turpitudes +turps +turquois +turquoise +turquoises +turret +turreted +turrets +turrical +turtle +turtled +turtledove +turtledoves +turtleneck +turtlenecks +turtler +turtlers +turtles +turtling +turtlings +turves +tusche +tusches +tush +tushed +tushes +tushing +tusk +tusked +tusker +tuskers +tusking +tuskless +tusklike +tusks +tussah +tussahs +tussal +tussar +tussars +tusseh +tussehs +tusser +tussers +tussis +tussises +tussive +tussle +tussled +tussles +tussling +tussock +tussocks +tussocky +tussor +tussore +tussores +tussors +tussuck +tussucks +tussur +tussurs +tut +tutee +tutees +tutelage +tutelages +tutelar +tutelaries +tutelars +tutelary +tutor +tutorage +tutorages +tutored +tutoress +tutoresses +tutorial +tutorials +tutoring +tutors +tutoyed +tutoyer +tutoyered +tutoyering +tutoyers +tuts +tutted +tutti +tutties +tutting +tuttis +tutty +tutu +tutus +tux +tuxedo +tuxedoes +tuxedos +tuxes +tuyer +tuyere +tuyeres +tuyers +twa +twaddle +twaddled +twaddler +twaddlers +twaddles +twaddling +twae +twaes +twain +twains +twang +twanged +twangier +twangiest +twanging +twangle +twangled +twangler +twanglers +twangles +twangling +twangs +twangy +twankies +twanky +twas +twasome +twasomes +twattle +twattled +twattles +twattling +tweak +tweaked +tweakier +tweakiest +tweaking +tweaks +tweaky +tweed +tweedier +tweediest +tweedle +tweedled +tweedles +tweedling +tweeds +tweedy +tween +tweet +tweeted +tweeter +tweeters +tweeting +tweets +tweeze +tweezed +tweezer +tweezers +tweezes +tweezing +twelfth +twelfths +twelve +twelvemo +twelvemos +twelves +twenties +twentieth +twentieths +twenty +twerp +twerps +twibil +twibill +twibills +twibils +twice +twiddle +twiddled +twiddler +twiddlers +twiddles +twiddling +twier +twiers +twig +twigged +twiggen +twiggier +twiggiest +twigging +twiggy +twigless +twiglike +twigs +twilight +twilights +twilit +twill +twilled +twilling +twillings +twills +twin +twinborn +twine +twined +twiner +twiners +twines +twinge +twinged +twinges +twinging +twinier +twiniest +twinight +twining +twinkle +twinkled +twinkler +twinklers +twinkles +twinkling +twinkly +twinned +twinning +twinnings +twins +twinship +twinships +twiny +twirl +twirled +twirler +twirlers +twirlier +twirliest +twirling +twirls +twirly +twirp +twirps +twist +twisted +twister +twisters +twisting +twistings +twists +twit +twitch +twitched +twitcher +twitchers +twitches +twitchier +twitchiest +twitching +twitchy +twits +twitted +twitter +twittered +twittering +twitters +twittery +twitting +twixt +two +twofer +twofers +twofold +twofolds +twopence +twopences +twopenny +twos +twosome +twosomes +twyer +twyers +tycoon +tycoons +tye +tyee +tyees +tyes +tying +tyke +tykes +tymbal +tymbals +tympan +tympana +tympanal +tympani +tympanic +tympanies +tympans +tympanum +tympanums +tympany +tyne +tyned +tynes +tyning +typal +type +typeable +typebar +typebars +typecase +typecases +typecast +typecasting +typecasts +typed +typeface +typefaces +types +typeset +typeseting +typesets +typewrite +typewrited +typewriter +typewriters +typewrites +typewriting +typey +typhoid +typhoids +typhon +typhonic +typhons +typhoon +typhoons +typhose +typhous +typhus +typhuses +typic +typical +typically +typicalness +typicalnesses +typier +typiest +typified +typifier +typifiers +typifies +typify +typifying +typing +typist +typists +typo +typographic +typographical +typographically +typographies +typography +typologies +typology +typos +typp +typps +typy +tyramine +tyramines +tyrannic +tyrannies +tyranny +tyrant +tyrants +tyre +tyred +tyres +tyring +tyro +tyronic +tyros +tyrosine +tyrosines +tythe +tythed +tythes +tything +tzaddik +tzaddikim +tzar +tzardom +tzardoms +tzarevna +tzarevnas +tzarina +tzarinas +tzarism +tzarisms +tzarist +tzarists +tzaritza +tzaritzas +tzars +tzetze +tzetzes +tzigane +tziganes +tzimmes +tzitzis +tzitzith +tzuris +ubieties +ubiety +ubique +ubiquities +ubiquitities +ubiquitity +ubiquitous +ubiquitously +ubiquity +udder +udders +udo +udometer +udometers +udometries +udometry +udos +ugh +ughs +uglier +ugliest +uglified +uglifier +uglifiers +uglifies +uglify +uglifying +uglily +ugliness +uglinesses +ugly +ugsome +uhlan +uhlans +uintaite +uintaites +uit +ukase +ukases +uke +ukelele +ukeleles +ukes +ukulele +ukuleles +ulama +ulamas +ulan +ulans +ulcer +ulcerate +ulcerated +ulcerates +ulcerating +ulceration +ulcerations +ulcerative +ulcered +ulcering +ulcerous +ulcers +ulema +ulemas +ulexite +ulexites +ullage +ullaged +ullages +ulna +ulnad +ulnae +ulnar +ulnas +ulster +ulsters +ulterior +ultima +ultimacies +ultimacy +ultimas +ultimata +ultimate +ultimately +ultimates +ultimatum +ultimo +ultra +ultraism +ultraisms +ultraist +ultraists +ultrared +ultrareds +ultras +ultraviolet +ululant +ululate +ululated +ululates +ululating +ulva +ulvas +umbel +umbeled +umbellar +umbelled +umbellet +umbellets +umbels +umber +umbered +umbering +umbers +umbilical +umbilici +umbilicus +umbles +umbo +umbonal +umbonate +umbones +umbonic +umbos +umbra +umbrae +umbrage +umbrages +umbral +umbras +umbrella +umbrellaed +umbrellaing +umbrellas +umbrette +umbrettes +umiac +umiack +umiacks +umiacs +umiak +umiaks +umlaut +umlauted +umlauting +umlauts +ump +umped +umping +umpirage +umpirages +umpire +umpired +umpires +umpiring +umps +umpteen +umpteenth +umteenth +un +unabated +unable +unabridged +unabused +unacceptable +unaccompanied +unaccounted +unaccustomed +unacted +unaddressed +unadorned +unadulterated +unaffected +unaffectedly +unafraid +unaged +unageing +unagile +unaging +unai +unaided +unaimed +unaired +unais +unalike +unallied +unambiguous +unambiguously +unambitious +unamused +unanchor +unanchored +unanchoring +unanchors +unaneled +unanimities +unanimity +unanimous +unanimously +unannounced +unanswerable +unanswered +unanticipated +unappetizing +unappreciated +unapproved +unapt +unaptly +unare +unargued +unarm +unarmed +unarming +unarms +unartful +unary +unasked +unassisted +unassuming +unatoned +unattached +unattended +unattractive +unau +unaus +unauthorized +unavailable +unavoidable +unavowed +unawaked +unaware +unawares +unawed +unbacked +unbaked +unbalanced +unbar +unbarbed +unbarred +unbarring +unbars +unbased +unbated +unbe +unbear +unbearable +unbeared +unbearing +unbears +unbeaten +unbecoming +unbecomingly +unbed +unbelief +unbeliefs +unbelievable +unbelievably +unbelt +unbelted +unbelting +unbelts +unbend +unbended +unbending +unbends +unbenign +unbent +unbiased +unbid +unbidden +unbind +unbinding +unbinds +unbitted +unblamed +unblest +unblock +unblocked +unblocking +unblocks +unbloody +unbodied +unbolt +unbolted +unbolting +unbolts +unboned +unbonnet +unbonneted +unbonneting +unbonnets +unborn +unbosom +unbosomed +unbosoming +unbosoms +unbought +unbound +unbowed +unbox +unboxed +unboxes +unboxing +unbrace +unbraced +unbraces +unbracing +unbraid +unbraided +unbraiding +unbraids +unbranded +unbreakable +unbred +unbreech +unbreeched +unbreeches +unbreeching +unbridle +unbridled +unbridles +unbridling +unbroke +unbroken +unbuckle +unbuckled +unbuckles +unbuckling +unbuild +unbuilding +unbuilds +unbuilt +unbundle +unbundled +unbundles +unbundling +unburden +unburdened +unburdening +unburdens +unburied +unburned +unburnt +unbutton +unbuttoned +unbuttoning +unbuttons +uncage +uncaged +uncages +uncaging +uncake +uncaked +uncakes +uncaking +uncalled +uncandid +uncannier +uncanniest +uncannily +uncanny +uncap +uncapped +uncapping +uncaps +uncaring +uncase +uncased +uncases +uncashed +uncasing +uncaught +uncaused +unceasing +unceasingly +uncensored +unceremonious +unceremoniously +uncertain +uncertainly +uncertainties +uncertainty +unchain +unchained +unchaining +unchains +unchallenged +unchancy +unchanged +unchanging +uncharacteristic +uncharge +uncharged +uncharges +uncharging +unchary +unchaste +unchecked +unchewed +unchic +unchoke +unchoked +unchokes +unchoking +unchosen +unchristian +unchurch +unchurched +unchurches +unchurching +unci +uncia +unciae +uncial +uncially +uncials +unciform +unciforms +uncinal +uncinate +uncini +uncinus +uncivil +uncivilized +unclad +unclaimed +unclamp +unclamped +unclamping +unclamps +unclasp +unclasped +unclasping +unclasps +uncle +unclean +uncleaner +uncleanest +uncleanness +uncleannesses +unclear +uncleared +unclearer +unclearest +unclench +unclenched +unclenches +unclenching +uncles +unclinch +unclinched +unclinches +unclinching +uncloak +uncloaked +uncloaking +uncloaks +unclog +unclogged +unclogging +unclogs +unclose +unclosed +uncloses +unclosing +unclothe +unclothed +unclothes +unclothing +uncloud +unclouded +unclouding +unclouds +uncloyed +uncluttered +unco +uncoated +uncock +uncocked +uncocking +uncocks +uncoffin +uncoffined +uncoffining +uncoffins +uncoil +uncoiled +uncoiling +uncoils +uncoined +uncombed +uncomely +uncomfortable +uncomfortably +uncomic +uncommitted +uncommon +uncommoner +uncommonest +uncommonly +uncomplimentary +uncompromising +unconcerned +unconcernedlies +unconcernedly +unconditional +unconditionally +unconfirmed +unconscionable +unconscionably +unconscious +unconsciously +unconsciousness +unconsciousnesses +unconstitutional +uncontested +uncontrollable +uncontrollably +uncontrolled +unconventional +unconventionally +unconverted +uncooked +uncool +uncooperative +uncoordinated +uncork +uncorked +uncorking +uncorks +uncos +uncounted +uncouple +uncoupled +uncouples +uncoupling +uncouth +uncover +uncovered +uncovering +uncovers +uncrate +uncrated +uncrates +uncrating +uncreate +uncreated +uncreates +uncreating +uncross +uncrossed +uncrosses +uncrossing +uncrown +uncrowned +uncrowning +uncrowns +unction +unctions +unctuous +unctuously +uncultivated +uncurb +uncurbed +uncurbing +uncurbs +uncured +uncurl +uncurled +uncurling +uncurls +uncursed +uncus +uncut +undamaged +undamped +undaring +undated +undaunted +undauntedly +unde +undecided +undecked +undeclared +undee +undefeated +undefined +undemocratic +undeniable +undeniably +undenied +undependable +under +underact +underacted +underacting +underacts +underage +underages +underarm +underarms +underate +underbid +underbidding +underbids +underbought +underbrush +underbrushes +underbud +underbudded +underbudding +underbuds +underbuy +underbuying +underbuys +underclothes +underclothing +underclothings +undercover +undercurrent +undercurrents +undercut +undercuts +undercutting +underdeveloped +underdid +underdo +underdoes +underdog +underdogs +underdoing +underdone +undereat +undereaten +undereating +undereats +underestimate +underestimated +underestimates +underestimating +underexpose +underexposed +underexposes +underexposing +underexposure +underexposures +underfed +underfeed +underfeeding +underfeeds +underfoot +underfur +underfurs +undergarment +undergarments +undergo +undergod +undergods +undergoes +undergoing +undergone +undergraduate +undergraduates +underground +undergrounds +undergrowth +undergrowths +underhand +underhanded +underhandedly +underhandedness +underhandednesses +underjaw +underjaws +underlaid +underlain +underlap +underlapped +underlapping +underlaps +underlay +underlaying +underlays +underlet +underlets +underletting +underlie +underlies +underline +underlined +underlines +underling +underlings +underlining +underlip +underlips +underlit +underlying +undermine +undermined +undermines +undermining +underneath +undernourished +undernourishment +undernourishments +underpaid +underpants +underpass +underpasses +underpay +underpaying +underpays +underpin +underpinned +underpinning +underpinnings +underpins +underprivileged +underran +underrate +underrated +underrates +underrating +underrun +underrunning +underruns +underscore +underscored +underscores +underscoring +undersea +underseas +undersecretaries +undersecretary +undersell +underselling +undersells +underset +undersets +undershirt +undershirts +undershorts +underside +undersides +undersized +undersold +understand +understandable +understandably +understanded +understanding +understandings +understands +understate +understated +understatement +understatements +understates +understating +understood +understudied +understudies +understudy +understudying +undertake +undertaken +undertaker +undertakes +undertaking +undertakings +undertax +undertaxed +undertaxes +undertaxing +undertone +undertones +undertook +undertow +undertows +undervalue +undervalued +undervalues +undervaluing +underwater +underway +underwear +underwears +underwent +underworld +underworlds +underwrite +underwriter +underwriters +underwrites +underwriting +underwrote +undeserving +undesirable +undesired +undetailed +undetected +undetermined +undeveloped +undeviating +undevout +undid +undies +undignified +undimmed +undine +undines +undivided +undo +undock +undocked +undocking +undocks +undoer +undoers +undoes +undoing +undoings +undomesticated +undone +undouble +undoubled +undoubles +undoubling +undoubted +undoubtedly +undrape +undraped +undrapes +undraping +undraw +undrawing +undrawn +undraws +undreamt +undress +undressed +undresses +undressing +undrest +undrew +undried +undrinkable +undrunk +undue +undulant +undulate +undulated +undulates +undulating +undulled +unduly +undy +undyed +undying +uneager +unearned +unearth +unearthed +unearthing +unearthly +unearths +unease +uneases +uneasier +uneasiest +uneasily +uneasiness +uneasinesses +uneasy +uneaten +unedible +unedited +uneducated +unemotional +unemployed +unemployment +unemployments +unended +unending +unendurable +unenforceable +unenlightened +unenvied +unequal +unequaled +unequally +unequals +unequivocal +unequivocally +unerased +unerring +unerringly +unethical +unevaded +uneven +unevener +unevenest +unevenly +unevenness +unevennesses +uneventful +unexcitable +unexciting +unexotic +unexpected +unexpectedly +unexpert +unexplainable +unexplained +unexplored +unfaded +unfading +unfailing +unfailingly +unfair +unfairer +unfairest +unfairly +unfairness +unfairnesses +unfaith +unfaithful +unfaithfully +unfaithfulness +unfaithfulnesses +unfaiths +unfallen +unfamiliar +unfamiliarities +unfamiliarity +unfancy +unfasten +unfastened +unfastening +unfastens +unfavorable +unfavorably +unfazed +unfeared +unfed +unfeeling +unfeelingly +unfeigned +unfelt +unfence +unfenced +unfences +unfencing +unfetter +unfettered +unfettering +unfetters +unfilial +unfilled +unfilmed +unfinalized +unfinished +unfired +unfished +unfit +unfitly +unfitness +unfitnesses +unfits +unfitted +unfitting +unfix +unfixed +unfixes +unfixing +unfixt +unflappable +unflattering +unflexed +unfoiled +unfold +unfolded +unfolder +unfolders +unfolding +unfolds +unfond +unforced +unforeseeable +unforeseen +unforged +unforgettable +unforgettably +unforgivable +unforgiving +unforgot +unforked +unformed +unfortunate +unfortunately +unfortunates +unfought +unfound +unfounded +unframed +unfree +unfreed +unfreeing +unfrees +unfreeze +unfreezes +unfreezing +unfriendly +unfrock +unfrocked +unfrocking +unfrocks +unfroze +unfrozen +unfulfilled +unfunded +unfunny +unfurl +unfurled +unfurling +unfurls +unfurnished +unfused +unfussy +ungainlier +ungainliest +ungainliness +ungainlinesses +ungainly +ungalled +ungenerous +ungenial +ungentle +ungentlemanly +ungently +ungifted +ungird +ungirded +ungirding +ungirds +ungirt +unglazed +unglove +ungloved +ungloves +ungloving +unglue +unglued +unglues +ungluing +ungodlier +ungodliest +ungodliness +ungodlinesses +ungodly +ungot +ungotten +ungowned +ungraced +ungraceful +ungraded +ungrammatical +ungrateful +ungratefully +ungratefulness +ungratefulnesses +ungreedy +ungual +unguard +unguarded +unguarding +unguards +unguent +unguents +ungues +unguided +unguis +ungula +ungulae +ungular +ungulate +ungulates +unhailed +unhair +unhaired +unhairing +unhairs +unhallow +unhallowed +unhallowing +unhallows +unhalved +unhand +unhanded +unhandier +unhandiest +unhanding +unhands +unhandy +unhang +unhanged +unhanging +unhangs +unhappier +unhappiest +unhappily +unhappiness +unhappinesses +unhappy +unharmed +unhasty +unhat +unhats +unhatted +unhatting +unhealed +unhealthful +unhealthy +unheard +unheated +unheeded +unhelm +unhelmed +unhelming +unhelms +unhelped +unheroic +unhewn +unhinge +unhinged +unhinges +unhinging +unhip +unhired +unhitch +unhitched +unhitches +unhitching +unholier +unholiest +unholily +unholiness +unholinesses +unholy +unhood +unhooded +unhooding +unhoods +unhook +unhooked +unhooking +unhooks +unhoped +unhorse +unhorsed +unhorses +unhorsing +unhouse +unhoused +unhouses +unhousing +unhuman +unhung +unhurt +unhusk +unhusked +unhusking +unhusks +unialgal +uniaxial +unicellular +unicolor +unicorn +unicorns +unicycle +unicycles +unideaed +unideal +unidentified +unidirectional +uniface +unifaces +unific +unification +unifications +unified +unifier +unifiers +unifies +unifilar +uniform +uniformed +uniformer +uniformest +uniforming +uniformity +uniformly +uniforms +unify +unifying +unilateral +unilaterally +unilobed +unimaginable +unimaginative +unimbued +unimpeachable +unimportant +unimpressed +uninformed +uninhabited +uninhibited +uninhibitedly +uninjured +uninsured +unintelligent +unintelligible +unintelligibly +unintended +unintentional +unintentionally +uninterested +uninteresting +uninterrupted +uninvited +union +unionise +unionised +unionises +unionising +unionism +unionisms +unionist +unionists +unionization +unionizations +unionize +unionized +unionizes +unionizing +unions +unipod +unipods +unipolar +unique +uniquely +uniqueness +uniquer +uniques +uniquest +unironed +unisex +unisexes +unison +unisonal +unisons +unissued +unit +unitage +unitages +unitary +unite +united +unitedly +uniter +uniters +unites +unities +uniting +unitive +unitize +unitized +unitizes +unitizing +units +unity +univalve +univalves +universal +universally +universe +universes +universities +university +univocal +univocals +unjaded +unjoined +unjoyful +unjudged +unjust +unjustifiable +unjustified +unjustly +unkempt +unkend +unkenned +unkennel +unkenneled +unkenneling +unkennelled +unkennelling +unkennels +unkent +unkept +unkind +unkinder +unkindest +unkindlier +unkindliest +unkindly +unkindness +unkindnesses +unkingly +unkissed +unknit +unknits +unknitted +unknitting +unknot +unknots +unknotted +unknotting +unknowing +unknowingly +unknown +unknowns +unkosher +unlabeled +unlabelled +unlace +unlaced +unlaces +unlacing +unlade +unladed +unladen +unlades +unlading +unlaid +unlash +unlashed +unlashes +unlashing +unlatch +unlatched +unlatches +unlatching +unlawful +unlawfully +unlay +unlaying +unlays +unlead +unleaded +unleading +unleads +unlearn +unlearned +unlearning +unlearns +unlearnt +unleased +unleash +unleashed +unleashes +unleashing +unleavened +unled +unless +unlet +unlethal +unletted +unlevel +unleveled +unleveling +unlevelled +unlevelling +unlevels +unlevied +unlicensed +unlicked +unlikable +unlike +unlikelier +unlikeliest +unlikelihood +unlikely +unlikeness +unlikenesses +unlimber +unlimbered +unlimbering +unlimbers +unlimited +unlined +unlink +unlinked +unlinking +unlinks +unlisted +unlit +unlive +unlived +unlively +unlives +unliving +unload +unloaded +unloader +unloaders +unloading +unloads +unlobed +unlock +unlocked +unlocking +unlocks +unloose +unloosed +unloosen +unloosened +unloosening +unloosens +unlooses +unloosing +unlovable +unloved +unlovelier +unloveliest +unlovely +unloving +unluckier +unluckiest +unluckily +unlucky +unmade +unmake +unmaker +unmakers +unmakes +unmaking +unman +unmanageable +unmanful +unmanly +unmanned +unmanning +unmans +unmapped +unmarked +unmarred +unmarried +unmask +unmasked +unmasker +unmaskers +unmasking +unmasks +unmated +unmatted +unmeant +unmeet +unmeetly +unmellow +unmelted +unmended +unmerciful +unmercifully +unmerited +unmet +unmew +unmewed +unmewing +unmews +unmilled +unmingle +unmingled +unmingles +unmingling +unmistakable +unmistakably +unmiter +unmitered +unmitering +unmiters +unmitre +unmitred +unmitres +unmitring +unmixed +unmixt +unmodish +unmold +unmolded +unmolding +unmolds +unmolested +unmolten +unmoor +unmoored +unmooring +unmoors +unmoral +unmotivated +unmoved +unmoving +unmown +unmuffle +unmuffled +unmuffles +unmuffling +unmuzzle +unmuzzled +unmuzzles +unmuzzling +unnail +unnailed +unnailing +unnails +unnamed +unnatural +unnaturally +unnaturalness +unnaturalnesses +unnavigable +unnecessarily +unnecessary +unneeded +unneighborly +unnerve +unnerved +unnerves +unnerving +unnoisy +unnojectionable +unnoted +unnoticeable +unnoticed +unobservable +unobservant +unobtainable +unobtrusive +unobtrusively +unoccupied +unofficial +unoiled +unopen +unopened +unopposed +unorganized +unoriginal +unornate +unorthodox +unowned +unpack +unpacked +unpacker +unpackers +unpacking +unpacks +unpaged +unpaid +unpaired +unparalleled +unpardonable +unparted +unpatriotic +unpaved +unpaying +unpeg +unpegged +unpegging +unpegs +unpen +unpenned +unpenning +unpens +unpent +unpeople +unpeopled +unpeoples +unpeopling +unperson +unpersons +unpick +unpicked +unpicking +unpicks +unpile +unpiled +unpiles +unpiling +unpin +unpinned +unpinning +unpins +unpitied +unplaced +unplait +unplaited +unplaiting +unplaits +unplayed +unpleasant +unpleasantly +unpleasantness +unpleasantnesses +unpliant +unplowed +unplug +unplugged +unplugging +unplugs +unpoetic +unpoised +unpolite +unpolled +unpopular +unpopularities +unpopularity +unposed +unposted +unprecedented +unpredictable +unpredictably +unprejudiced +unprepared +unpretentious +unpretty +unpriced +unprimed +unprincipled +unprinted +unprized +unprobed +unproductive +unprofessional +unprofitable +unprotected +unproved +unproven +unprovoked +unpruned +unpucker +unpuckered +unpuckering +unpuckers +unpunished +unpure +unpurged +unpuzzle +unpuzzled +unpuzzles +unpuzzling +unqualified +unquantifiable +unquenchable +unquestionable +unquestionably +unquestioning +unquiet +unquieter +unquietest +unquiets +unquote +unquoted +unquotes +unquoting +unraised +unraked +unranked +unrated +unravel +unraveled +unraveling +unravelled +unravelling +unravels +unrazed +unreachable +unread +unreadable +unreadier +unreadiest +unready +unreal +unrealistic +unrealities +unreality +unreally +unreason +unreasonable +unreasonably +unreasoned +unreasoning +unreasons +unreel +unreeled +unreeler +unreelers +unreeling +unreels +unreeve +unreeved +unreeves +unreeving +unrefined +unrelated +unrelenting +unrelentingly +unreliable +unremembered +unrent +unrented +unrepaid +unrepair +unrepairs +unrepentant +unrequited +unresolved +unresponsive +unrest +unrested +unrestrained +unrestricted +unrests +unrewarding +unrhymed +unriddle +unriddled +unriddles +unriddling +unrifled +unrig +unrigged +unrigging +unrigs +unrimed +unrinsed +unrip +unripe +unripely +unriper +unripest +unripped +unripping +unrips +unrisen +unrivaled +unrivalled +unrobe +unrobed +unrobes +unrobing +unroll +unrolled +unrolling +unrolls +unroof +unroofed +unroofing +unroofs +unroot +unrooted +unrooting +unroots +unrough +unround +unrounded +unrounding +unrounds +unrove +unroven +unruffled +unruled +unrulier +unruliest +unruliness +unrulinesses +unruly +unrushed +uns +unsaddle +unsaddled +unsaddles +unsaddling +unsafe +unsafely +unsafeties +unsafety +unsaid +unsalted +unsanitary +unsated +unsatisfactory +unsatisfied +unsatisfying +unsaved +unsavory +unsawed +unsawn +unsay +unsaying +unsays +unscaled +unscathed +unscented +unscheduled +unscientific +unscramble +unscrambled +unscrambles +unscrambling +unscrew +unscrewed +unscrewing +unscrews +unscrupulous +unscrupulously +unscrupulousness +unscrupulousnesses +unseal +unsealed +unsealing +unseals +unseam +unseamed +unseaming +unseams +unseared +unseasonable +unseasonably +unseasoned +unseat +unseated +unseating +unseats +unseeded +unseeing +unseemlier +unseemliest +unseemly +unseen +unseized +unselfish +unselfishly +unselfishness +unselfishnesses +unsent +unserved +unset +unsets +unsetting +unsettle +unsettled +unsettles +unsettling +unsew +unsewed +unsewing +unsewn +unsews +unsex +unsexed +unsexes +unsexing +unsexual +unshaded +unshaken +unshamed +unshaped +unshapen +unshared +unsharp +unshaved +unshaven +unshed +unshell +unshelled +unshelling +unshells +unshift +unshifted +unshifting +unshifts +unship +unshipped +unshipping +unships +unshod +unshorn +unshrunk +unshut +unsicker +unsifted +unsight +unsighted +unsighting +unsights +unsigned +unsilent +unsinful +unsized +unskilled +unskillful +unskillfully +unslaked +unsling +unslinging +unslings +unslung +unsmoked +unsnap +unsnapped +unsnapping +unsnaps +unsnarl +unsnarled +unsnarling +unsnarls +unsoaked +unsober +unsocial +unsoiled +unsold +unsolder +unsoldered +unsoldering +unsolders +unsolicited +unsolid +unsolved +unsoncy +unsonsie +unsonsy +unsophisticated +unsorted +unsought +unsound +unsounder +unsoundest +unsoundly +unsoundness +unsoundnesses +unsoured +unsowed +unsown +unspeak +unspeakable +unspeakably +unspeaking +unspeaks +unspecified +unspent +unsphere +unsphered +unspheres +unsphering +unspilt +unsplit +unspoiled +unspoilt +unspoke +unspoken +unsprung +unspun +unstable +unstabler +unstablest +unstably +unstack +unstacked +unstacking +unstacks +unstate +unstated +unstates +unstating +unsteadied +unsteadier +unsteadies +unsteadiest +unsteadily +unsteadiness +unsteadinesses +unsteady +unsteadying +unsteel +unsteeled +unsteeling +unsteels +unstep +unstepped +unstepping +unsteps +unstick +unsticked +unsticking +unsticks +unstop +unstopped +unstopping +unstops +unstrap +unstrapped +unstrapping +unstraps +unstress +unstresses +unstring +unstringing +unstrings +unstructured +unstrung +unstung +unsubstantiated +unsubtle +unsuccessful +unsuited +unsung +unsunk +unsure +unsurely +unswathe +unswathed +unswathes +unswathing +unswayed +unswear +unswearing +unswears +unswept +unswore +unsworn +untack +untacked +untacking +untacks +untagged +untaken +untame +untamed +untangle +untangled +untangles +untangling +untanned +untapped +untasted +untaught +untaxed +unteach +unteaches +unteaching +untended +untested +untether +untethered +untethering +untethers +unthawed +unthink +unthinkable +unthinking +unthinkingly +unthinks +unthought +unthread +unthreaded +unthreading +unthreads +unthrone +unthroned +unthrones +unthroning +untidied +untidier +untidies +untidiest +untidily +untidy +untidying +untie +untied +unties +until +untilled +untilted +untimelier +untimeliest +untimely +untinged +untired +untiring +untitled +unto +untold +untoward +untraced +untrained +untread +untreading +untreads +untreated +untried +untrim +untrimmed +untrimming +untrims +untrod +untrodden +untrue +untruer +untruest +untruly +untruss +untrussed +untrusses +untrussing +untrustworthy +untrusty +untruth +untruthful +untruths +untuck +untucked +untucking +untucks +untufted +untune +untuned +untunes +untuning +unturned +untwine +untwined +untwines +untwining +untwist +untwisted +untwisting +untwists +untying +ununited +unurged +unusable +unused +unusual +unvalued +unvaried +unvarying +unveil +unveiled +unveiling +unveils +unveined +unverified +unversed +unvexed +unvext +unviable +unvocal +unvoice +unvoiced +unvoices +unvoicing +unwalled +unwanted +unwarier +unwariest +unwarily +unwarmed +unwarned +unwarped +unwarranted +unwary +unwas +unwashed +unwasheds +unwasted +unwavering +unwaxed +unweaned +unweary +unweave +unweaves +unweaving +unwed +unwedded +unweeded +unweeping +unweight +unweighted +unweighting +unweights +unwelcome +unwelded +unwell +unwept +unwetted +unwholesome +unwieldier +unwieldiest +unwieldy +unwifely +unwilled +unwilling +unwillingly +unwillingness +unwillingnesses +unwind +unwinder +unwinders +unwinding +unwinds +unwisdom +unwisdoms +unwise +unwisely +unwiser +unwisest +unwish +unwished +unwishes +unwishing +unwit +unwits +unwitted +unwitting +unwittingly +unwon +unwonted +unwooded +unwooed +unworkable +unworked +unworn +unworthier +unworthies +unworthiest +unworthily +unworthiness +unworthinesses +unworthy +unwound +unwove +unwoven +unwrap +unwrapped +unwrapping +unwraps +unwritten +unwrung +unyeaned +unyielding +unyoke +unyoked +unyokes +unyoking +unzip +unzipped +unzipping +unzips +unzoned +up +upas +upases +upbear +upbearer +upbearers +upbearing +upbears +upbeat +upbeats +upbind +upbinding +upbinds +upboil +upboiled +upboiling +upboils +upbore +upborne +upbound +upbraid +upbraided +upbraiding +upbraids +upbringing +upbringings +upbuild +upbuilding +upbuilds +upbuilt +upby +upbye +upcast +upcasting +upcasts +upchuck +upchucked +upchucking +upchucks +upclimb +upclimbed +upclimbing +upclimbs +upcoil +upcoiled +upcoiling +upcoils +upcoming +upcurl +upcurled +upcurling +upcurls +upcurve +upcurved +upcurves +upcurving +updart +updarted +updarting +updarts +update +updated +updater +updaters +updates +updating +updive +updived +updives +updiving +updo +updos +updove +updraft +updrafts +updried +updries +updry +updrying +upend +upended +upending +upends +upfield +upfling +upflinging +upflings +upflow +upflowed +upflowing +upflows +upflung +upfold +upfolded +upfolding +upfolds +upgather +upgathered +upgathering +upgathers +upgaze +upgazed +upgazes +upgazing +upgird +upgirded +upgirding +upgirds +upgirt +upgoing +upgrade +upgraded +upgrades +upgrading +upgrew +upgrow +upgrowing +upgrown +upgrows +upgrowth +upgrowths +upheap +upheaped +upheaping +upheaps +upheaval +upheavals +upheave +upheaved +upheaver +upheavers +upheaves +upheaving +upheld +uphill +uphills +uphoard +uphoarded +uphoarding +uphoards +uphold +upholder +upholders +upholding +upholds +upholster +upholstered +upholsterer +upholsterers +upholsteries +upholstering +upholsters +upholstery +uphove +uphroe +uphroes +upkeep +upkeeps +upland +uplander +uplanders +uplands +upleap +upleaped +upleaping +upleaps +upleapt +uplift +uplifted +uplifter +uplifters +uplifting +uplifts +uplight +uplighted +uplighting +uplights +uplit +upmost +upo +upon +upped +upper +uppercase +uppercut +uppercuts +uppercutting +uppermost +uppers +uppile +uppiled +uppiles +uppiling +upping +uppings +uppish +uppishly +uppity +upprop +uppropped +uppropping +upprops +upraise +upraised +upraiser +upraisers +upraises +upraising +upreach +upreached +upreaches +upreaching +uprear +upreared +uprearing +uprears +upright +uprighted +uprighting +uprightness +uprightnesses +uprights +uprise +uprisen +upriser +uprisers +uprises +uprising +uprisings +upriver +uprivers +uproar +uproarious +uproariously +uproars +uproot +uprootal +uprootals +uprooted +uprooter +uprooters +uprooting +uproots +uprose +uprouse +uproused +uprouses +uprousing +uprush +uprushed +uprushes +uprushing +ups +upsend +upsending +upsends +upsent +upset +upsets +upsetter +upsetters +upsetting +upshift +upshifted +upshifting +upshifts +upshoot +upshooting +upshoots +upshot +upshots +upside +upsidedown +upsides +upsilon +upsilons +upsoar +upsoared +upsoaring +upsoars +upsprang +upspring +upspringing +upsprings +upsprung +upstage +upstaged +upstages +upstaging +upstair +upstairs +upstand +upstanding +upstands +upstare +upstared +upstares +upstaring +upstart +upstarted +upstarting +upstarts +upstate +upstater +upstaters +upstates +upstep +upstepped +upstepping +upsteps +upstir +upstirred +upstirring +upstirs +upstood +upstream +upstroke +upstrokes +upsurge +upsurged +upsurges +upsurging +upsweep +upsweeping +upsweeps +upswell +upswelled +upswelling +upswells +upswept +upswing +upswinging +upswings +upswollen +upswung +uptake +uptakes +uptear +uptearing +uptears +upthrew +upthrow +upthrowing +upthrown +upthrows +upthrust +upthrusting +upthrusts +uptight +uptilt +uptilted +uptilting +uptilts +uptime +uptimes +uptore +uptorn +uptoss +uptossed +uptosses +uptossing +uptown +uptowner +uptowners +uptowns +uptrend +uptrends +upturn +upturned +upturning +upturns +upwaft +upwafted +upwafting +upwafts +upward +upwardly +upwards +upwell +upwelled +upwelling +upwells +upwind +upwinds +uracil +uracils +uraei +uraemia +uraemias +uraemic +uraeus +uraeuses +uralite +uralites +uralitic +uranic +uranide +uranides +uranism +uranisms +uranite +uranites +uranitic +uranium +uraniums +uranous +uranyl +uranylic +uranyls +urare +urares +urari +uraris +urase +urases +urate +urates +uratic +urban +urbane +urbanely +urbaner +urbanest +urbanise +urbanised +urbanises +urbanising +urbanism +urbanisms +urbanist +urbanists +urbanite +urbanites +urbanities +urbanity +urbanize +urbanized +urbanizes +urbanizing +urchin +urchins +urd +urds +urea +ureal +ureas +urease +ureases +uredia +uredial +uredinia +uredium +uredo +uredos +ureic +ureide +ureides +uremia +uremias +uremic +ureter +ureteral +ureteric +ureters +urethan +urethane +urethanes +urethans +urethra +urethrae +urethral +urethras +uretic +urge +urged +urgencies +urgency +urgent +urgently +urger +urgers +urges +urging +urgingly +uric +uridine +uridines +urinal +urinals +urinalysis +urinaries +urinary +urinate +urinated +urinates +urinating +urination +urinations +urine +urinemia +urinemias +urinemic +urines +urinose +urinous +urn +urnlike +urns +urochord +urochords +urodele +urodeles +urolagnia +urolagnias +urolith +uroliths +urologic +urologies +urology +uropod +uropodal +uropods +uroscopies +uroscopy +urostyle +urostyles +ursa +ursae +ursiform +ursine +urticant +urticants +urticate +urticated +urticates +urticating +urus +uruses +urushiol +urushiols +us +usability +usable +usably +usage +usages +usance +usances +usaunce +usaunces +use +useable +useably +used +useful +usefully +usefulness +useless +uselessly +uselessness +uselessnesses +user +users +uses +usher +ushered +usherette +usherettes +ushering +ushers +using +usnea +usneas +usquabae +usquabaes +usque +usquebae +usquebaes +usques +ustulate +usual +usually +usuals +usufruct +usufructs +usurer +usurers +usuries +usurious +usurp +usurped +usurper +usurpers +usurping +usurps +usury +ut +uta +utas +utensil +utensils +uteri +uterine +uterus +uteruses +utile +utilidor +utilidors +utilise +utilised +utiliser +utilisers +utilises +utilising +utilitarian +utilities +utility +utilization +utilize +utilized +utilizer +utilizers +utilizes +utilizing +utmost +utmosts +utopia +utopian +utopians +utopias +utopism +utopisms +utopist +utopists +utricle +utricles +utriculi +uts +utter +utterance +utterances +uttered +utterer +utterers +uttering +utterly +utters +uvea +uveal +uveas +uveitic +uveitis +uveitises +uveous +uvula +uvulae +uvular +uvularly +uvulars +uvulas +uvulitis +uvulitises +uxorial +uxorious +vacancies +vacancy +vacant +vacantly +vacate +vacated +vacates +vacating +vacation +vacationed +vacationer +vacationers +vacationing +vacations +vaccina +vaccinal +vaccinas +vaccinate +vaccinated +vaccinates +vaccinating +vaccination +vaccinations +vaccine +vaccines +vaccinia +vaccinias +vacillate +vacillated +vacillates +vacillating +vacillation +vacillations +vacua +vacuities +vacuity +vacuolar +vacuole +vacuoles +vacuous +vacuously +vacuousness +vacuousnesses +vacuum +vacuumed +vacuuming +vacuums +vadose +vagabond +vagabonded +vagabonding +vagabonds +vagal +vagally +vagaries +vagary +vagi +vagile +vagilities +vagility +vagina +vaginae +vaginal +vaginas +vaginate +vagotomies +vagotomy +vagrancies +vagrancy +vagrant +vagrants +vagrom +vague +vaguely +vagueness +vaguenesses +vaguer +vaguest +vagus +vahine +vahines +vail +vailed +vailing +vails +vain +vainer +vainest +vainly +vainness +vainnesses +vair +vairs +vakeel +vakeels +vakil +vakils +valance +valanced +valances +valancing +vale +valedictorian +valedictorians +valedictories +valedictory +valence +valences +valencia +valencias +valencies +valency +valentine +valentines +valerate +valerates +valerian +valerians +valeric +vales +valet +valeted +valeting +valets +valgoid +valgus +valguses +valiance +valiances +valiancies +valiancy +valiant +valiantly +valiants +valid +validate +validated +validates +validating +validation +validations +validities +validity +validly +validness +validnesses +valine +valines +valise +valises +valkyr +valkyrie +valkyries +valkyrs +vallate +valley +valleys +valonia +valonias +valor +valorise +valorised +valorises +valorising +valorize +valorized +valorizes +valorizing +valorous +valors +valour +valours +valse +valses +valuable +valuables +valuably +valuate +valuated +valuates +valuating +valuation +valuations +valuator +valuators +value +valued +valueless +valuer +valuers +values +valuing +valuta +valutas +valval +valvar +valvate +valve +valved +valveless +valvelet +valvelets +valves +valving +valvula +valvulae +valvular +valvule +valvules +vambrace +vambraces +vamoose +vamoosed +vamooses +vamoosing +vamose +vamosed +vamoses +vamosing +vamp +vamped +vamper +vampers +vamping +vampire +vampires +vampiric +vampish +vamps +van +vanadate +vanadates +vanadic +vanadium +vanadiums +vanadous +vanda +vandal +vandalic +vandalism +vandalisms +vandalize +vandalized +vandalizes +vandalizing +vandals +vandas +vandyke +vandyked +vandykes +vane +vaned +vanes +vang +vangs +vanguard +vanguards +vanilla +vanillas +vanillic +vanillin +vanillins +vanish +vanished +vanisher +vanishers +vanishes +vanishing +vanitied +vanities +vanity +vanman +vanmen +vanquish +vanquished +vanquishes +vanquishing +vans +vantage +vantages +vanward +vapid +vapidities +vapidity +vapidly +vapidness +vapidnesses +vapor +vapored +vaporer +vaporers +vaporing +vaporings +vaporise +vaporised +vaporises +vaporish +vaporising +vaporization +vaporizations +vaporize +vaporized +vaporizes +vaporizing +vaporous +vapors +vapory +vapour +vapoured +vapourer +vapourers +vapouring +vapours +vapoury +vaquero +vaqueros +vara +varas +varia +variabilities +variability +variable +variableness +variablenesses +variables +variably +variance +variances +variant +variants +variate +variated +variates +variating +variation +variations +varices +varicose +varied +variedly +variegate +variegated +variegates +variegating +variegation +variegations +varier +variers +varies +varietal +varieties +variety +variform +variola +variolar +variolas +variole +varioles +variorum +variorums +various +variously +varistor +varistors +varix +varlet +varletries +varletry +varlets +varment +varments +varmint +varmints +varna +varnas +varnish +varnished +varnishes +varnishing +varnishy +varsities +varsity +varus +varuses +varve +varved +varves +vary +varying +vas +vasa +vasal +vascula +vascular +vasculum +vasculums +vase +vaselike +vases +vasiform +vassal +vassalage +vassalages +vassals +vast +vaster +vastest +vastier +vastiest +vastities +vastity +vastly +vastness +vastnesses +vasts +vasty +vat +vatful +vatfuls +vatic +vatical +vaticide +vaticides +vats +vatted +vatting +vau +vaudeville +vaudevilles +vault +vaulted +vaulter +vaulters +vaultier +vaultiest +vaulting +vaultings +vaults +vaulty +vaunt +vaunted +vaunter +vaunters +vauntful +vauntie +vaunting +vaunts +vaunty +vaus +vav +vavasor +vavasors +vavasour +vavasours +vavassor +vavassors +vavs +vaw +vaward +vawards +vawntie +vaws +veal +vealed +vealer +vealers +vealier +vealiest +vealing +veals +vealy +vector +vectored +vectoring +vectors +vedalia +vedalias +vedette +vedettes +vee +veena +veenas +veep +veepee +veepees +veeps +veer +veered +veeries +veering +veers +veery +vees +veg +vegan +veganism +veganisms +vegans +vegetable +vegetables +vegetal +vegetant +vegetarian +vegetarianism +vegetarianisms +vegetarians +vegetate +vegetated +vegetates +vegetating +vegetation +vegetational +vegetations +vegete +vegetist +vegetists +vegetive +vehemence +vehemences +vehement +vehemently +vehicle +vehicles +vehicular +veil +veiled +veiledly +veiler +veilers +veiling +veilings +veillike +veils +vein +veinal +veined +veiner +veiners +veinier +veiniest +veining +veinings +veinless +veinlet +veinlets +veinlike +veins +veinule +veinules +veinulet +veinulets +veiny +vela +velamen +velamina +velar +velaria +velarium +velarize +velarized +velarizes +velarizing +velars +velate +veld +velds +veldt +veldts +veliger +veligers +velites +velleities +velleity +vellum +vellums +veloce +velocities +velocity +velour +velours +veloute +veloutes +velum +velure +velured +velures +veluring +velveret +velverets +velvet +velveted +velvets +velvety +vena +venae +venal +venalities +venality +venally +venatic +venation +venations +vend +vendable +vendace +vendaces +vended +vendee +vendees +vender +venders +vendetta +vendettas +vendible +vendibles +vendibly +vending +vendor +vendors +vends +vendue +vendues +veneer +veneered +veneerer +veneerers +veneering +veneers +venenate +venenated +venenates +venenating +venenose +venerable +venerate +venerated +venerates +venerating +veneration +venerations +venereal +veneries +venery +venetian +venetians +venge +vengeance +vengeances +venged +vengeful +vengefully +venges +venging +venial +venially +venin +venine +venines +venins +venire +venires +venison +venisons +venom +venomed +venomer +venomers +venoming +venomous +venoms +venose +venosities +venosity +venous +venously +vent +ventage +ventages +ventail +ventails +vented +venter +venters +ventilate +ventilated +ventilates +ventilating +ventilation +ventilations +ventilator +ventilators +venting +ventless +ventral +ventrals +ventricle +ventricles +ventriloquism +ventriloquisms +ventriloquist +ventriloquists +ventriloquy +ventriloquys +vents +venture +ventured +venturer +venturers +ventures +venturesome +venturesomely +venturesomeness +venturesomenesses +venturi +venturing +venturis +venue +venues +venular +venule +venules +venulose +venulous +vera +veracious +veracities +veracity +veranda +verandah +verandahs +verandas +veratria +veratrias +veratrin +veratrins +veratrum +veratrums +verb +verbal +verbalization +verbalizations +verbalize +verbalized +verbalizes +verbalizing +verbally +verbals +verbatim +verbena +verbenas +verbiage +verbiages +verbid +verbids +verbified +verbifies +verbify +verbifying +verbile +verbiles +verbless +verbose +verbosities +verbosity +verboten +verbs +verdancies +verdancy +verdant +verderer +verderers +verderor +verderors +verdict +verdicts +verdin +verdins +verditer +verditers +verdure +verdured +verdures +verecund +verge +verged +vergence +vergences +verger +vergers +verges +verging +verglas +verglases +veridic +verier +veriest +verifiable +verification +verifications +verified +verifier +verifiers +verifies +verify +verifying +verily +verism +verismo +verismos +verisms +verist +veristic +verists +veritable +veritably +veritas +veritates +verities +verity +verjuice +verjuices +vermeil +vermeils +vermes +vermian +vermicelli +vermicellis +vermin +vermis +vermoulu +vermouth +vermouths +vermuth +vermuths +vernacle +vernacles +vernacular +vernaculars +vernal +vernally +vernicle +vernicles +vernier +verniers +vernix +vernixes +veronica +veronicas +verruca +verrucae +versal +versant +versants +versatile +versatilities +versatility +verse +versed +verseman +versemen +verser +versers +verses +verset +versets +versicle +versicles +versified +versifies +versify +versifying +versine +versines +versing +version +versions +verso +versos +verst +verste +verstes +versts +versus +vert +vertebra +vertebrae +vertebral +vertebras +vertebrate +vertebrates +vertex +vertexes +vertical +vertically +verticalness +verticalnesses +verticals +vertices +verticil +verticils +vertigines +vertigo +vertigoes +vertigos +verts +vertu +vertus +vervain +vervains +verve +verves +vervet +vervets +very +vesica +vesicae +vesical +vesicant +vesicants +vesicate +vesicated +vesicates +vesicating +vesicle +vesicles +vesicula +vesiculae +vesicular +vesigia +vesper +vesperal +vesperals +vespers +vespiaries +vespiary +vespid +vespids +vespine +vessel +vesseled +vessels +vest +vesta +vestal +vestally +vestals +vestas +vested +vestee +vestees +vestiaries +vestiary +vestibular +vestibule +vestibules +vestige +vestiges +vestigial +vestigially +vesting +vestings +vestless +vestlike +vestment +vestments +vestral +vestries +vestry +vests +vestural +vesture +vestured +vestures +vesturing +vesuvian +vesuvians +vet +vetch +vetches +veteran +veterans +veterinarian +veterinarians +veterinary +vetiver +vetivers +veto +vetoed +vetoer +vetoers +vetoes +vetoing +vets +vetted +vetting +vex +vexation +vexations +vexatious +vexed +vexedly +vexer +vexers +vexes +vexil +vexilla +vexillar +vexillum +vexils +vexing +vexingly +vext +via +viabilities +viability +viable +viably +viaduct +viaducts +vial +vialed +vialing +vialled +vialling +vials +viand +viands +viatic +viatica +viatical +viaticum +viaticums +viator +viatores +viators +vibes +vibioid +vibist +vibists +vibrance +vibrances +vibrancies +vibrancy +vibrant +vibrants +vibrate +vibrated +vibrates +vibrating +vibration +vibrations +vibrato +vibrator +vibrators +vibratory +vibratos +vibrio +vibrion +vibrions +vibrios +vibrissa +vibrissae +viburnum +viburnums +vicar +vicarage +vicarages +vicarate +vicarates +vicarial +vicariate +vicariates +vicarious +vicariously +vicariousness +vicariousnesses +vicarly +vicars +vice +viced +viceless +vicenary +viceroy +viceroys +vices +vichies +vichy +vicinage +vicinages +vicinal +vicing +vicinities +vicinity +vicious +viciously +viciousness +viciousnesses +vicissitude +vicissitudes +vicomte +vicomtes +victim +victimization +victimizations +victimize +victimized +victimizer +victimizers +victimizes +victimizing +victims +victor +victoria +victorias +victories +victorious +victoriously +victors +victory +victress +victresses +victual +victualed +victualing +victualled +victualling +victuals +vicugna +vicugnas +vicuna +vicunas +vide +video +videos +videotape +videotaped +videotapes +videotaping +vidette +videttes +vidicon +vidicons +viduities +viduity +vie +vied +vier +viers +vies +view +viewable +viewed +viewer +viewers +viewier +viewiest +viewing +viewings +viewless +viewpoint +viewpoints +views +viewy +vigil +vigilance +vigilances +vigilant +vigilante +vigilantes +vigilantly +vigils +vignette +vignetted +vignettes +vignetting +vigor +vigorish +vigorishes +vigoroso +vigorous +vigorously +vigorousness +vigorousnesses +vigors +vigour +vigours +viking +vikings +vilayet +vilayets +vile +vilely +vileness +vilenesses +viler +vilest +vilification +vilifications +vilified +vilifier +vilifiers +vilifies +vilify +vilifying +vilipend +vilipended +vilipending +vilipends +vill +villa +villadom +villadoms +villae +village +villager +villagers +villages +villain +villainies +villains +villainy +villas +villatic +villein +villeins +villi +villianess +villianesses +villianous +villianously +villianousness +villianousnesses +villose +villous +vills +villus +vim +vimen +vimina +viminal +vimpa +vims +vin +vina +vinal +vinals +vinas +vinasse +vinasses +vinca +vincas +vincible +vincristine +vincristines +vincula +vinculum +vinculums +vindesine +vindicate +vindicated +vindicates +vindicating +vindication +vindications +vindicator +vindicators +vindictive +vindictively +vindictiveness +vindictivenesses +vine +vineal +vined +vinegar +vinegars +vinegary +vineries +vinery +vines +vineyard +vineyards +vinic +vinier +viniest +vinifera +viniferas +vining +vino +vinos +vinosities +vinosity +vinous +vinously +vins +vintage +vintager +vintagers +vintages +vintner +vintners +viny +vinyl +vinylic +vinyls +viol +viola +violable +violably +violas +violate +violated +violater +violaters +violates +violating +violation +violations +violator +violators +violence +violences +violent +violently +violet +violets +violin +violinist +violinists +violins +violist +violists +violone +violones +viols +viomycin +viomycins +viper +viperine +viperish +viperous +vipers +virago +viragoes +viragos +viral +virally +virelai +virelais +virelay +virelays +viremia +viremias +viremic +vireo +vireos +vires +virga +virgas +virgate +virgates +virgin +virginal +virginally +virginals +virgins +virgule +virgules +viricide +viricides +virid +viridian +viridians +viridities +viridity +virile +virilism +virilisms +virilities +virility +virion +virions +virl +virls +virologies +virology +viroses +virosis +virtu +virtual +virtually +virtue +virtues +virtuosa +virtuosas +virtuose +virtuosi +virtuosities +virtuosity +virtuoso +virtuosos +virtuous +virtuously +virtus +virucide +virucides +virulence +virulences +virulencies +virulency +virulent +virulently +virus +viruses +vis +visa +visaed +visage +visaged +visages +visaing +visard +visards +visas +viscacha +viscachas +viscera +visceral +viscerally +viscid +viscidities +viscidity +viscidly +viscoid +viscose +viscoses +viscount +viscountess +viscountesses +viscounts +viscous +viscus +vise +vised +viseed +viseing +viselike +vises +visibilities +visibility +visible +visibly +vising +vision +visional +visionaries +visionary +visioned +visioning +visions +visit +visitable +visitant +visitants +visitation +visitations +visited +visiter +visiters +visiting +visitor +visitors +visits +visive +visor +visored +visoring +visors +vista +vistaed +vistas +visual +visualization +visualizations +visualize +visualized +visualizer +visualizers +visualizes +visualizing +visually +vita +vitae +vital +vitalise +vitalised +vitalises +vitalising +vitalism +vitalisms +vitalist +vitalists +vitalities +vitality +vitalize +vitalized +vitalizes +vitalizing +vitally +vitals +vitamer +vitamers +vitamin +vitamine +vitamines +vitamins +vitellin +vitellins +vitellus +vitelluses +vitesse +vitesses +vitiable +vitiate +vitiated +vitiates +vitiating +vitiation +vitiations +vitiator +vitiators +vitiligo +vitiligos +vitreous +vitric +vitrification +vitrifications +vitrified +vitrifies +vitrify +vitrifying +vitrine +vitrines +vitriol +vitrioled +vitriolic +vitrioling +vitriolled +vitriolling +vitriols +vitta +vittae +vittate +vittle +vittled +vittles +vittling +vituline +vituperate +vituperated +vituperates +vituperating +vituperation +vituperations +vituperative +vituperatively +viva +vivace +vivacious +vivaciously +vivaciousness +vivaciousnesses +vivacities +vivacity +vivaria +vivaries +vivarium +vivariums +vivary +vivas +vive +viverrid +viverrids +vivers +vivid +vivider +vividest +vividly +vividness +vividnesses +vivific +vivified +vivifier +vivifiers +vivifies +vivify +vivifying +vivipara +vivisect +vivisected +vivisecting +vivisection +vivisections +vivisects +vixen +vixenish +vixenly +vixens +vizard +vizarded +vizards +vizcacha +vizcachas +vizier +viziers +vizir +vizirate +vizirates +vizirial +vizirs +vizor +vizored +vizoring +vizors +vizsla +vizslas +vocable +vocables +vocably +vocabularies +vocabulary +vocal +vocalic +vocalics +vocalise +vocalised +vocalises +vocalising +vocalism +vocalisms +vocalist +vocalists +vocalities +vocality +vocalize +vocalized +vocalizes +vocalizing +vocally +vocals +vocation +vocational +vocations +vocative +vocatives +voces +vociferous +vociferously +vocoder +vocoders +voder +vodka +vodkas +vodum +vodums +vodun +voe +voes +vogie +vogue +vogues +voguish +voice +voiced +voiceful +voicer +voicers +voices +voicing +void +voidable +voidance +voidances +voided +voider +voiders +voiding +voidness +voidnesses +voids +voile +voiles +volant +volante +volar +volatile +volatiles +volatilities +volatility +volatilize +volatilized +volatilizes +volatilizing +volcanic +volcanics +volcano +volcanoes +volcanos +vole +voled +voleries +volery +voles +voling +volitant +volition +volitional +volitions +volitive +volley +volleyball +volleyballs +volleyed +volleyer +volleyers +volleying +volleys +volost +volosts +volplane +volplaned +volplanes +volplaning +volt +volta +voltage +voltages +voltaic +voltaism +voltaisms +volte +voltes +volti +volts +volubilities +volubility +voluble +volubly +volume +volumed +volumes +voluming +voluminous +voluntarily +voluntary +volunteer +volunteered +volunteering +volunteers +voluptuous +voluptuously +voluptuousness +voluptuousnesses +volute +voluted +volutes +volutin +volutins +volution +volutions +volva +volvas +volvate +volvox +volvoxes +volvuli +volvulus +volvuluses +vomer +vomerine +vomers +vomica +vomicae +vomit +vomited +vomiter +vomiters +vomiting +vomitive +vomitives +vomito +vomitories +vomitory +vomitos +vomitous +vomits +vomitus +vomituses +von +voodoo +voodooed +voodooing +voodooism +voodooisms +voodoos +voracious +voraciously +voraciousness +voraciousnesses +voracities +voracity +vorlage +vorlages +vortex +vortexes +vortical +vortices +votable +votaress +votaresses +votaries +votarist +votarists +votary +vote +voteable +voted +voteless +voter +voters +votes +voting +votive +votively +votress +votresses +vouch +vouched +vouchee +vouchees +voucher +vouchered +vouchering +vouchers +vouches +vouching +vouchsafe +vouchsafed +vouchsafes +vouchsafing +voussoir +voussoirs +vow +vowed +vowel +vowelize +vowelized +vowelizes +vowelizing +vowels +vower +vowers +vowing +vowless +vows +vox +voyage +voyaged +voyager +voyagers +voyages +voyageur +voyageurs +voyaging +voyeur +voyeurs +vroom +vroomed +vrooming +vrooms +vrouw +vrouws +vrow +vrows +vug +vugg +vuggs +vuggy +vugh +vughs +vugs +vulcanic +vulcanization +vulcanizations +vulcanize +vulcanized +vulcanizes +vulcanizing +vulgar +vulgarer +vulgarest +vulgarism +vulgarisms +vulgarities +vulgarity +vulgarize +vulgarized +vulgarizes +vulgarizing +vulgarly +vulgars +vulgate +vulgates +vulgo +vulgus +vulguses +vulnerabilities +vulnerability +vulnerable +vulnerably +vulpine +vulture +vultures +vulva +vulvae +vulval +vulvar +vulvas +vulvate +vulvitis +vulvitises +vying +vyingly +wab +wabble +wabbled +wabbler +wabblers +wabbles +wabblier +wabbliest +wabbling +wabbly +wabs +wack +wacke +wackes +wackier +wackiest +wackily +wacks +wacky +wad +wadable +wadded +wadder +wadders +waddie +waddied +waddies +wadding +waddings +waddle +waddled +waddler +waddlers +waddles +waddling +waddly +waddy +waddying +wade +wadeable +waded +wader +waders +wades +wadi +wadies +wading +wadis +wadmaal +wadmaals +wadmal +wadmals +wadmel +wadmels +wadmol +wadmoll +wadmolls +wadmols +wads +wadset +wadsets +wadsetted +wadsetting +wady +wae +waefu +waeful +waeness +waenesses +waes +waesuck +waesucks +wafer +wafered +wafering +wafers +wafery +waff +waffed +waffie +waffies +waffing +waffle +waffled +waffles +waffling +waffs +waft +waftage +waftages +wafted +wafter +wafters +wafting +wafts +wafture +waftures +wag +wage +waged +wageless +wager +wagered +wagerer +wagerers +wagering +wagers +wages +wagged +wagger +waggeries +waggers +waggery +wagging +waggish +waggle +waggled +waggles +waggling +waggly +waggon +waggoned +waggoner +waggoners +waggoning +waggons +waging +wagon +wagonage +wagonages +wagoned +wagoner +wagoners +wagoning +wagons +wags +wagsome +wagtail +wagtails +wahconda +wahcondas +wahine +wahines +wahoo +wahoos +waif +waifed +waifing +waifs +wail +wailed +wailer +wailers +wailful +wailing +wails +wailsome +wain +wains +wainscot +wainscoted +wainscoting +wainscots +wainscotted +wainscotting +wair +waired +wairing +wairs +waist +waisted +waister +waisters +waisting +waistings +waistline +waistlines +waists +wait +waited +waiter +waiters +waiting +waitings +waitress +waitresses +waits +waive +waived +waiver +waivers +waives +waiving +wakanda +wakandas +wake +waked +wakeful +wakefulness +wakefulnesses +wakeless +waken +wakened +wakener +wakeners +wakening +wakenings +wakens +waker +wakerife +wakers +wakes +wakiki +wakikis +waking +wale +waled +waler +walers +wales +walies +waling +walk +walkable +walkaway +walkaways +walked +walker +walkers +walking +walkings +walkout +walkouts +walkover +walkovers +walks +walkup +walkups +walkway +walkways +walkyrie +walkyries +wall +walla +wallabies +wallaby +wallah +wallahs +wallaroo +wallaroos +wallas +walled +wallet +wallets +walleye +walleyed +walleyes +wallflower +wallflowers +wallie +wallies +walling +wallop +walloped +walloper +wallopers +walloping +wallops +wallow +wallowed +wallower +wallowers +wallowing +wallows +wallpaper +wallpapered +wallpapering +wallpapers +walls +wally +walnut +walnuts +walrus +walruses +waltz +waltzed +waltzer +waltzers +waltzes +waltzing +waly +wamble +wambled +wambles +wamblier +wambliest +wambling +wambly +wame +wamefou +wamefous +wameful +wamefuls +wames +wammus +wammuses +wampish +wampished +wampishes +wampishing +wampum +wampums +wampus +wampuses +wamus +wamuses +wan +wand +wander +wandered +wanderer +wanderers +wandering +wanderlust +wanderlusts +wanderoo +wanderoos +wanders +wandle +wands +wane +waned +waner +wanes +waney +wangan +wangans +wangle +wangled +wangler +wanglers +wangles +wangling +wangun +wanguns +wanier +waniest +wanigan +wanigans +waning +wanion +wanions +wanly +wanned +wanner +wanness +wannesses +wannest +wannigan +wannigans +wanning +wans +want +wantage +wantages +wanted +wanter +wanters +wanting +wanton +wantoned +wantoner +wantoners +wantoning +wantonly +wantonness +wantonnesses +wantons +wants +wany +wap +wapiti +wapitis +wapped +wapping +waps +war +warble +warbled +warbler +warblers +warbles +warbling +warcraft +warcrafts +ward +warded +warden +wardenries +wardenry +wardens +warder +warders +warding +wardress +wardresses +wardrobe +wardrobes +wardroom +wardrooms +wards +wardship +wardships +ware +wared +warehouse +warehoused +warehouseman +warehousemen +warehouser +warehousers +warehouses +warehousing +warer +wareroom +warerooms +wares +warfare +warfares +warfarin +warfarins +warhead +warheads +warier +wariest +warily +wariness +warinesses +waring +warison +warisons +wark +warked +warking +warks +warless +warlike +warlock +warlocks +warlord +warlords +warm +warmaker +warmakers +warmed +warmer +warmers +warmest +warming +warmish +warmly +warmness +warmnesses +warmonger +warmongers +warmouth +warmouths +warms +warmth +warmths +warmup +warmups +warn +warned +warner +warners +warning +warnings +warns +warp +warpage +warpages +warpath +warpaths +warped +warper +warpers +warping +warplane +warplanes +warpower +warpowers +warps +warpwise +warragal +warragals +warrant +warranted +warranties +warranting +warrants +warranty +warred +warren +warrener +warreners +warrens +warrigal +warrigals +warring +warrior +warriors +wars +warsaw +warsaws +warship +warships +warsle +warsled +warsler +warslers +warsles +warsling +warstle +warstled +warstler +warstlers +warstles +warstling +wart +warted +warthog +warthogs +wartier +wartiest +wartime +wartimes +wartlike +warts +warty +warwork +warworks +warworn +wary +was +wash +washable +washboard +washboards +washbowl +washbowls +washcloth +washcloths +washday +washdays +washed +washer +washers +washes +washier +washiest +washing +washings +washington +washout +washouts +washrag +washrags +washroom +washrooms +washtub +washtubs +washy +wasp +waspier +waspiest +waspily +waspish +wasplike +wasps +waspy +wassail +wassailed +wassailing +wassails +wast +wastable +wastage +wastages +waste +wastebasket +wastebaskets +wasted +wasteful +wastefully +wastefulness +wastefulnesses +wasteland +wastelands +wastelot +wastelots +waster +wasterie +wasteries +wasters +wastery +wastes +wasteway +wasteways +wasting +wastrel +wastrels +wastrie +wastries +wastry +wasts +wat +watap +watape +watapes +wataps +watch +watchcries +watchcry +watchdog +watchdogged +watchdogging +watchdogs +watched +watcher +watchers +watches +watcheye +watcheyes +watchful +watchfully +watchfulness +watchfulnesses +watching +watchman +watchmen +watchout +watchouts +water +waterage +waterages +waterbed +waterbeds +watercolor +watercolors +watercourse +watercourses +watercress +watercresses +waterdog +waterdogs +watered +waterer +waterers +waterfall +waterfalls +waterfowl +waterfowls +waterier +wateriest +waterily +watering +waterings +waterish +waterlog +waterlogged +waterlogging +waterlogs +waterloo +waterloos +waterman +watermark +watermarked +watermarking +watermarks +watermelon +watermelons +watermen +waterpower +waterpowers +waterproof +waterproofed +waterproofing +waterproofings +waterproofs +waters +waterspout +waterspouts +watertight +waterway +waterways +waterworks +watery +wats +watt +wattage +wattages +wattape +wattapes +watter +wattest +watthour +watthours +wattle +wattled +wattles +wattless +wattling +watts +waucht +wauchted +wauchting +wauchts +waugh +waught +waughted +waughting +waughts +wauk +wauked +wauking +wauks +waul +wauled +wauling +wauls +waur +wave +waveband +wavebands +waved +waveform +waveforms +wavelength +wavelengths +waveless +wavelet +wavelets +wavelike +waveoff +waveoffs +waver +wavered +waverer +waverers +wavering +waveringly +wavers +wavery +waves +wavey +waveys +wavier +wavies +waviest +wavily +waviness +wavinesses +waving +wavy +waw +wawl +wawled +wawling +wawls +waws +wax +waxberries +waxberry +waxbill +waxbills +waxed +waxen +waxer +waxers +waxes +waxier +waxiest +waxily +waxiness +waxinesses +waxing +waxings +waxlike +waxplant +waxplants +waxweed +waxweeds +waxwing +waxwings +waxwork +waxworks +waxworm +waxworms +waxy +way +waybill +waybills +wayfarer +wayfarers +wayfaring +waygoing +waygoings +waylaid +waylay +waylayer +waylayers +waylaying +waylays +wayless +ways +wayside +waysides +wayward +wayworn +we +weak +weaken +weakened +weakener +weakeners +weakening +weakens +weaker +weakest +weakfish +weakfishes +weakish +weaklier +weakliest +weakling +weaklings +weakly +weakness +weaknesses +weal +weald +wealds +weals +wealth +wealthier +wealthiest +wealths +wealthy +wean +weaned +weaner +weaners +weaning +weanling +weanlings +weans +weapon +weaponed +weaponing +weaponries +weaponry +weapons +wear +wearable +wearables +wearer +wearers +wearied +wearier +wearies +weariest +weariful +wearily +weariness +wearinesses +wearing +wearish +wearisome +wears +weary +wearying +weasand +weasands +weasel +weaseled +weaseling +weasels +weason +weasons +weather +weathered +weathering +weatherman +weathermen +weatherproof +weatherproofed +weatherproofing +weatherproofs +weathers +weave +weaved +weaver +weavers +weaves +weaving +weazand +weazands +web +webbed +webbier +webbiest +webbing +webbings +webby +weber +webers +webfed +webfeet +webfoot +webless +weblike +webs +webster +websters +webworm +webworms +wecht +wechts +wed +wedded +wedder +wedders +wedding +weddings +wedel +wedeled +wedeling +wedeln +wedelns +wedels +wedge +wedged +wedges +wedgie +wedgier +wedgies +wedgiest +wedging +wedgy +wedlock +wedlocks +wednesday +weds +wee +weed +weeded +weeder +weeders +weedier +weediest +weedily +weeding +weedless +weedlike +weeds +weedy +week +weekday +weekdays +weekend +weekended +weekending +weekends +weeklies +weeklong +weekly +weeks +weel +ween +weened +weenie +weenier +weenies +weeniest +weening +weens +weensier +weensiest +weensy +weeny +weep +weeper +weepers +weepier +weepiest +weeping +weeps +weepy +weer +wees +weest +weet +weeted +weeting +weets +weever +weevers +weevil +weeviled +weevilly +weevils +weevily +weewee +weeweed +weeweeing +weewees +weft +wefts +weftwise +weigela +weigelas +weigelia +weigelias +weigh +weighed +weigher +weighers +weighing +weighman +weighmen +weighs +weight +weighted +weighter +weighters +weightier +weightiest +weighting +weightless +weightlessness +weightlessnesses +weights +weighty +weiner +weiners +weir +weird +weirder +weirdest +weirdie +weirdies +weirdly +weirdness +weirdnesses +weirdo +weirdoes +weirdos +weirds +weirdy +weirs +weka +wekas +welch +welched +welcher +welchers +welches +welching +welcome +welcomed +welcomer +welcomers +welcomes +welcoming +weld +weldable +welded +welder +welders +welding +weldless +weldment +weldments +weldor +weldors +welds +welfare +welfares +welkin +welkins +well +welladay +welladays +wellaway +wellaways +wellborn +wellcurb +wellcurbs +welldoer +welldoers +welled +wellesley +wellhead +wellheads +wellhole +wellholes +welling +wellness +wellnesses +wells +wellsite +wellsites +wellspring +wellsprings +welsh +welshed +welsher +welshers +welshes +welshing +welt +welted +welter +weltered +weltering +welters +welting +welts +wen +wench +wenched +wencher +wenchers +wenches +wenching +wend +wended +wendigo +wendigos +wending +wends +wennier +wenniest +wennish +wenny +wens +went +wept +were +weregild +weregilds +werewolf +werewolves +wergeld +wergelds +wergelt +wergelts +wergild +wergilds +wert +werwolf +werwolves +weskit +weskits +wessand +wessands +west +wester +westered +westering +westerlies +westerly +western +westerns +westers +westing +westings +westmost +wests +westward +westwards +wet +wetback +wetbacks +wether +wethers +wetland +wetlands +wetly +wetness +wetnesses +wetproof +wets +wettable +wetted +wetter +wetters +wettest +wetting +wettings +wettish +wha +whack +whacked +whacker +whackers +whackier +whackiest +whacking +whacks +whacky +whale +whalebone +whalebones +whaled +whaleman +whalemen +whaler +whalers +whales +whaling +whalings +wham +whammed +whammies +whamming +whammy +whams +whang +whanged +whangee +whangees +whanging +whangs +whap +whapped +whapper +whappers +whapping +whaps +wharf +wharfage +wharfages +wharfed +wharfing +wharfs +wharve +wharves +what +whatever +whatnot +whatnots +whats +whatsoever +whaup +whaups +wheal +wheals +wheat +wheatear +wheatears +wheaten +wheats +whee +wheedle +wheedled +wheedler +wheedlers +wheedles +wheedling +wheel +wheelbarrow +wheelbarrows +wheelbase +wheelbases +wheelchair +wheelchairs +wheeled +wheeler +wheelers +wheelie +wheelies +wheeling +wheelings +wheelless +wheelman +wheelmen +wheels +wheen +wheens +wheep +wheeped +wheeping +wheeple +wheepled +wheeples +wheepling +wheeps +whees +wheeze +wheezed +wheezer +wheezers +wheezes +wheezier +wheeziest +wheezily +wheezing +wheezy +whelk +whelkier +whelkiest +whelks +whelky +whelm +whelmed +whelming +whelms +whelp +whelped +whelping +whelps +when +whenas +whence +whenever +whens +where +whereabouts +whereas +whereases +whereat +whereby +wherefore +wherein +whereof +whereon +wheres +whereto +whereupon +wherever +wherewithal +wherried +wherries +wherry +wherrying +wherve +wherves +whet +whether +whets +whetstone +whetstones +whetted +whetter +whetters +whetting +whew +whews +whey +wheyey +wheyface +wheyfaces +wheyish +wheys +which +whichever +whicker +whickered +whickering +whickers +whid +whidah +whidahs +whidded +whidding +whids +whiff +whiffed +whiffer +whiffers +whiffet +whiffets +whiffing +whiffle +whiffled +whiffler +whifflers +whiffles +whiffling +whiffs +while +whiled +whiles +whiling +whilom +whilst +whim +whimbrel +whimbrels +whimper +whimpered +whimpering +whimpers +whims +whimsey +whimseys +whimsical +whimsicalities +whimsicality +whimsically +whimsied +whimsies +whimsy +whin +whinchat +whinchats +whine +whined +whiner +whiners +whines +whiney +whinier +whiniest +whining +whinnied +whinnier +whinnies +whinniest +whinny +whinnying +whins +whiny +whip +whipcord +whipcords +whiplash +whiplashes +whiplike +whipped +whipper +whippers +whippersnapper +whippersnappers +whippet +whippets +whippier +whippiest +whipping +whippings +whippoorwill +whippoorwills +whippy +whipray +whiprays +whips +whipsaw +whipsawed +whipsawing +whipsawn +whipsaws +whipt +whiptail +whiptails +whipworm +whipworms +whir +whirl +whirled +whirler +whirlers +whirlier +whirlies +whirliest +whirling +whirlpool +whirlpools +whirls +whirlwind +whirlwinds +whirly +whirr +whirred +whirried +whirries +whirring +whirrs +whirry +whirrying +whirs +whish +whished +whishes +whishing +whisht +whishted +whishting +whishts +whisk +whisked +whisker +whiskered +whiskers +whiskery +whiskey +whiskeys +whiskies +whisking +whisks +whisky +whisper +whispered +whispering +whispers +whispery +whist +whisted +whisting +whistle +whistled +whistler +whistlers +whistles +whistling +whists +whit +white +whitebait +whitebaits +whitecap +whitecaps +whited +whitefish +whitefishes +whiteflies +whitefly +whitely +whiten +whitened +whitener +whiteners +whiteness +whitenesses +whitening +whitens +whiteout +whiteouts +whiter +whites +whitest +whitetail +whitetails +whitewash +whitewashed +whitewashes +whitewashing +whitey +whiteys +whither +whities +whiting +whitings +whitish +whitlow +whitlows +whitrack +whitracks +whits +whitter +whitters +whittle +whittled +whittler +whittlers +whittles +whittling +whittret +whittrets +whity +whiz +whizbang +whizbangs +whizz +whizzed +whizzer +whizzers +whizzes +whizzing +who +whoa +whoas +whodunit +whodunits +whoever +whole +wholehearted +wholeness +wholenesses +wholes +wholesale +wholesaled +wholesaler +wholesalers +wholesales +wholesaling +wholesome +wholesomeness +wholesomenesses +wholism +wholisms +wholly +whom +whomever +whomp +whomped +whomping +whomps +whomso +whoop +whooped +whoopee +whoopees +whooper +whoopers +whooping +whoopla +whooplas +whoops +whoosh +whooshed +whooshes +whooshing +whoosis +whoosises +whop +whopped +whopper +whoppers +whopping +whops +whore +whored +whoredom +whoredoms +whores +whoreson +whoresons +whoring +whorish +whorl +whorled +whorls +whort +whortle +whortles +whorts +whose +whosever +whosis +whosises +whoso +whosoever +whump +whumped +whumping +whumps +why +whydah +whydahs +whys +wich +wiches +wick +wickape +wickapes +wicked +wickeder +wickedest +wickedly +wickedness +wickednesses +wicker +wickers +wickerwork +wickerworks +wicket +wickets +wicking +wickings +wickiup +wickiups +wicks +wickyup +wickyups +wicopies +wicopy +widder +widders +widdie +widdies +widdle +widdled +widdles +widdling +widdy +wide +widely +widen +widened +widener +wideners +wideness +widenesses +widening +widens +wider +wides +widespread +widest +widgeon +widgeons +widget +widgets +widish +widow +widowed +widower +widowers +widowhood +widowhoods +widowing +widows +width +widths +widthway +wield +wielded +wielder +wielders +wieldier +wieldiest +wielding +wields +wieldy +wiener +wieners +wienie +wienies +wife +wifed +wifedom +wifedoms +wifehood +wifehoods +wifeless +wifelier +wifeliest +wifelike +wifely +wifes +wifing +wig +wigan +wigans +wigeon +wigeons +wigged +wiggeries +wiggery +wigging +wiggings +wiggle +wiggled +wiggler +wigglers +wiggles +wigglier +wiggliest +wiggling +wiggly +wight +wights +wigless +wiglet +wiglets +wiglike +wigmaker +wigmakers +wigs +wigwag +wigwagged +wigwagging +wigwags +wigwam +wigwams +wikiup +wikiups +wilco +wild +wildcat +wildcats +wildcatted +wildcatting +wilder +wildered +wildering +wilderness +wildernesses +wilders +wildest +wildfire +wildfires +wildfowl +wildfowls +wilding +wildings +wildish +wildlife +wildling +wildlings +wildly +wildness +wildnesses +wilds +wildwood +wildwoods +wile +wiled +wiles +wilful +wilfully +wilier +wiliest +wilily +wiliness +wilinesses +wiling +will +willable +willed +willer +willers +willet +willets +willful +willfully +willied +willies +willing +willinger +willingest +willingly +willingness +williwau +williwaus +williwaw +williwaws +willow +willowed +willower +willowers +willowier +willowiest +willowing +willows +willowy +willpower +willpowers +wills +willy +willyard +willyart +willying +willywaw +willywaws +wilt +wilted +wilting +wilts +wily +wimble +wimbled +wimbles +wimbling +wimple +wimpled +wimples +wimpling +win +wince +winced +wincer +wincers +winces +wincey +winceys +winch +winched +wincher +winchers +winches +winching +wincing +wind +windable +windage +windages +windbag +windbags +windbreak +windbreaks +windburn +windburned +windburning +windburns +windburnt +winded +winder +winders +windfall +windfalls +windflaw +windflaws +windgall +windgalls +windier +windiest +windigo +windigos +windily +winding +windings +windlass +windlassed +windlasses +windlassing +windle +windled +windles +windless +windling +windlings +windmill +windmilled +windmilling +windmills +window +windowed +windowing +windowless +windows +windpipe +windpipes +windrow +windrowed +windrowing +windrows +winds +windshield +windshields +windsock +windsocks +windup +windups +windward +windwards +windway +windways +windy +wine +wined +wineless +wineries +winery +wines +wineshop +wineshops +wineskin +wineskins +winesop +winesops +winey +wing +wingback +wingbacks +wingbow +wingbows +wingding +wingdings +winged +wingedly +winger +wingers +wingier +wingiest +winging +wingless +winglet +winglets +winglike +wingman +wingmen +wingover +wingovers +wings +wingspan +wingspans +wingy +winier +winiest +wining +winish +wink +winked +winker +winkers +winking +winkle +winkled +winkles +winkling +winks +winnable +winned +winner +winners +winning +winnings +winnock +winnocks +winnow +winnowed +winnower +winnowers +winnowing +winnows +wino +winoes +winos +wins +winsome +winsomely +winsomeness +winsomenesses +winsomer +winsomest +winter +wintered +winterer +winterers +wintergreen +wintergreens +winterier +winteriest +wintering +winterly +winters +wintertime +wintertimes +wintery +wintle +wintled +wintles +wintling +wintrier +wintriest +wintrily +wintry +winy +winze +winzes +wipe +wiped +wipeout +wipeouts +wiper +wipers +wipes +wiping +wirable +wire +wired +wiredraw +wiredrawing +wiredrawn +wiredraws +wiredrew +wirehair +wirehairs +wireless +wirelessed +wirelesses +wirelessing +wirelike +wireman +wiremen +wirer +wirers +wires +wiretap +wiretapped +wiretapper +wiretappers +wiretapping +wiretaps +wireway +wireways +wirework +wireworks +wireworm +wireworms +wirier +wiriest +wirily +wiriness +wirinesses +wiring +wirings +wirra +wiry +wis +wisdom +wisdoms +wise +wiseacre +wiseacres +wisecrack +wisecracked +wisecracking +wisecracks +wised +wiselier +wiseliest +wisely +wiseness +wisenesses +wisent +wisents +wiser +wises +wisest +wish +wisha +wishbone +wishbones +wished +wisher +wishers +wishes +wishful +wishing +wishless +wising +wisp +wisped +wispier +wispiest +wispily +wisping +wispish +wisplike +wisps +wispy +wiss +wissed +wisses +wissing +wist +wistaria +wistarias +wisted +wisteria +wisterias +wistful +wistfully +wistfulness +wistfulnesses +wisting +wists +wit +witan +witch +witchcraft +witchcrafts +witched +witcheries +witchery +witches +witchier +witchiest +witching +witchings +witchy +wite +wited +witen +wites +with +withal +withdraw +withdrawal +withdrawals +withdrawing +withdrawn +withdraws +withdrew +withe +withed +wither +withered +witherer +witherers +withering +withers +withes +withheld +withhold +withholding +withholds +withier +withies +withiest +within +withing +withins +without +withouts +withstand +withstanding +withstands +withstood +withy +witing +witless +witlessly +witlessness +witlessnesses +witling +witlings +witloof +witloofs +witness +witnessed +witnesses +witnessing +witney +witneys +wits +witted +witticism +witticisms +wittier +wittiest +wittily +wittiness +wittinesses +witting +wittingly +wittings +wittol +wittols +witty +wive +wived +wiver +wivern +wiverns +wivers +wives +wiving +wiz +wizard +wizardly +wizardries +wizardry +wizards +wizen +wizened +wizening +wizens +wizes +wizzen +wizzens +wo +woad +woaded +woads +woadwax +woadwaxes +woald +woalds +wobble +wobbled +wobbler +wobblers +wobbles +wobblier +wobblies +wobbliest +wobbling +wobbly +wobegone +woe +woebegone +woeful +woefuller +woefullest +woefully +woeness +woenesses +woes +woesome +woful +wofully +wok +woke +woken +woks +wold +wolds +wolf +wolfed +wolfer +wolfers +wolffish +wolffishes +wolfing +wolfish +wolflike +wolfram +wolframs +wolfs +wolver +wolverine +wolverines +wolvers +wolves +woman +womaned +womanhood +womanhoods +womaning +womanise +womanised +womanises +womanish +womanising +womanize +womanized +womanizes +womanizing +womankind +womankinds +womanlier +womanliest +womanliness +womanlinesses +womanly +womans +womb +wombat +wombats +wombed +wombier +wombiest +wombs +womby +women +womera +womeras +wommera +wommeras +womps +won +wonder +wondered +wonderer +wonderers +wonderful +wonderfully +wonderfulness +wonderfulnesses +wondering +wonderland +wonderlands +wonderment +wonderments +wonders +wonderwoman +wondrous +wondrously +wondrousness +wondrousnesses +wonkier +wonkiest +wonky +wonned +wonner +wonners +wonning +wons +wont +wonted +wontedly +wonting +wonton +wontons +wonts +woo +wood +woodbin +woodbind +woodbinds +woodbine +woodbines +woodbins +woodbox +woodboxes +woodchat +woodchats +woodchopper +woodchoppers +woodchuck +woodchucks +woodcock +woodcocks +woodcraft +woodcrafts +woodcut +woodcuts +wooded +wooden +woodener +woodenest +woodenly +woodenness +woodennesses +woodhen +woodhens +woodier +woodiest +woodiness +woodinesses +wooding +woodland +woodlands +woodlark +woodlarks +woodless +woodlore +woodlores +woodlot +woodlots +woodman +woodmen +woodnote +woodnotes +woodpecker +woodpeckers +woodpile +woodpiles +woodruff +woodruffs +woods +woodshed +woodshedded +woodshedding +woodsheds +woodsia +woodsias +woodsier +woodsiest +woodsman +woodsmen +woodsy +woodwax +woodwaxes +woodwind +woodwinds +woodwork +woodworks +woodworm +woodworms +woody +wooed +wooer +wooers +woof +woofed +woofer +woofers +woofing +woofs +wooing +wooingly +wool +wooled +woolen +woolens +wooler +woolers +woolfell +woolfells +woolgathering +woolgatherings +woolie +woolier +woolies +wooliest +woollen +woollens +woollier +woollies +woolliest +woollike +woolly +woolman +woolmen +woolpack +woolpacks +wools +woolsack +woolsacks +woolshed +woolsheds +woolskin +woolskins +wooly +woomera +woomeras +woops +woorali +wooralis +woorari +wooraris +woos +woosh +wooshed +wooshes +wooshing +woozier +wooziest +woozily +wooziness +woozinesses +woozy +wop +wops +worcester +word +wordage +wordages +wordbook +wordbooks +worded +wordier +wordiest +wordily +wordiness +wordinesses +wording +wordings +wordless +wordplay +wordplays +words +wordy +wore +work +workability +workable +workableness +workablenesses +workaday +workbag +workbags +workbasket +workbaskets +workbench +workbenches +workboat +workboats +workbook +workbooks +workbox +workboxes +workday +workdays +worked +worker +workers +workfolk +workhorse +workhorses +workhouse +workhouses +working +workingman +workingmen +workings +workless +workload +workloads +workman +workmanlike +workmanship +workmanships +workmen +workout +workouts +workroom +workrooms +works +worksheet +worksheets +workshop +workshops +workup +workups +workweek +workweeks +world +worldlier +worldliest +worldliness +worldlinesses +worldly +worlds +worldwide +worm +wormed +wormer +wormers +wormhole +wormholes +wormier +wormiest +wormil +wormils +worming +wormish +wormlike +wormroot +wormroots +worms +wormseed +wormseeds +wormwood +wormwoods +wormy +worn +wornness +wornnesses +worried +worrier +worriers +worries +worrisome +worrit +worrited +worriting +worrits +worry +worrying +worse +worsen +worsened +worsening +worsens +worser +worses +worset +worsets +worship +worshiped +worshiper +worshipers +worshiping +worshipped +worshipper +worshippers +worshipping +worships +worst +worsted +worsteds +worsting +worsts +wort +worth +worthed +worthful +worthier +worthies +worthiest +worthily +worthiness +worthinesses +worthing +worthless +worthlessness +worthlessnesses +worths +worthwhile +worthy +worts +wos +wost +wostteth +wot +wots +wotted +wotteth +wotting +would +wouldest +wouldst +wound +wounded +wounding +wounds +wove +woven +wow +wowed +wowing +wows +wowser +wowsers +wrack +wracked +wrackful +wracking +wracks +wraith +wraiths +wrang +wrangle +wrangled +wrangler +wranglers +wrangles +wrangling +wrangs +wrap +wrapped +wrapper +wrappers +wrapping +wrappings +wraps +wrapt +wrasse +wrasses +wrastle +wrastled +wrastles +wrastling +wrath +wrathed +wrathful +wrathier +wrathiest +wrathily +wrathing +wraths +wrathy +wreak +wreaked +wreaker +wreakers +wreaking +wreaks +wreath +wreathe +wreathed +wreathen +wreathes +wreathing +wreaths +wreathy +wreck +wreckage +wreckages +wrecked +wrecker +wreckers +wreckful +wrecking +wreckings +wrecks +wren +wrench +wrenched +wrenches +wrenching +wrens +wrest +wrested +wrester +wresters +wresting +wrestle +wrestled +wrestler +wrestlers +wrestles +wrestling +wrests +wretch +wretched +wretcheder +wretchedest +wretchedness +wretchednesses +wretches +wried +wrier +wries +wriest +wriggle +wriggled +wriggler +wrigglers +wriggles +wrigglier +wriggliest +wriggling +wriggly +wright +wrights +wring +wringed +wringer +wringers +wringing +wrings +wrinkle +wrinkled +wrinkles +wrinklier +wrinkliest +wrinkling +wrinkly +wrist +wristier +wristiest +wristlet +wristlets +wrists +wristy +writ +writable +write +writer +writers +writes +writhe +writhed +writhen +writher +writhers +writhes +writhing +writing +writings +writs +written +wrong +wrongdoer +wrongdoers +wrongdoing +wrongdoings +wronged +wronger +wrongers +wrongest +wrongful +wrongfully +wrongfulness +wrongfulnesses +wrongheaded +wrongheadedly +wrongheadedness +wrongheadednesses +wronging +wrongly +wrongs +wrote +wroth +wrothful +wrought +wrung +wry +wryer +wryest +wrying +wryly +wryneck +wrynecks +wryness +wrynesses +wud +wurst +wursts +wurzel +wurzels +wych +wyches +wye +wyes +wyle +wyled +wyles +wyling +wynd +wynds +wynn +wynns +wyte +wyted +wytes +wyting +wyvern +wyverns +xanthate +xanthates +xanthein +xantheins +xanthene +xanthenes +xanthic +xanthin +xanthine +xanthines +xanthins +xanthoma +xanthomas +xanthomata +xanthone +xanthones +xanthous +xebec +xebecs +xenia +xenial +xenias +xenic +xenogamies +xenogamy +xenogenies +xenogeny +xenolith +xenoliths +xenon +xenons +xenophobe +xenophobes +xenophobia +xerarch +xeric +xerosere +xeroseres +xeroses +xerosis +xerotic +xerus +xeruses +xi +xiphoid +xiphoids +xis +xu +xylan +xylans +xylem +xylems +xylene +xylenes +xylic +xylidin +xylidine +xylidines +xylidins +xylocarp +xylocarps +xyloid +xylol +xylols +xylophone +xylophones +xylophonist +xylophonists +xylose +xyloses +xylotomies +xylotomy +xylyl +xylyls +xyst +xyster +xysters +xysti +xystoi +xystos +xysts +xystus +ya +yabber +yabbered +yabbering +yabbers +yacht +yachted +yachter +yachters +yachting +yachtings +yachtman +yachtmen +yachts +yack +yacked +yacking +yacks +yaff +yaffed +yaffing +yaffs +yager +yagers +yagi +yagis +yah +yahoo +yahooism +yahooisms +yahoos +yaird +yairds +yak +yakked +yakking +yaks +yald +yam +yamen +yamens +yammer +yammered +yammerer +yammerers +yammering +yammers +yams +yamun +yamuns +yang +yangs +yank +yanked +yanking +yanks +yanqui +yanquis +yap +yapock +yapocks +yapok +yapoks +yapon +yapons +yapped +yapper +yappers +yapping +yappy +yaps +yar +yard +yardage +yardages +yardarm +yardarms +yardbird +yardbirds +yarded +yarding +yardman +yardmen +yards +yardstick +yardsticks +yardwand +yardwands +yare +yarely +yarer +yarest +yarmelke +yarmelkes +yarmulke +yarmulkes +yarn +yarned +yarning +yarns +yarrow +yarrows +yashmac +yashmacs +yashmak +yashmaks +yasmak +yasmaks +yatagan +yatagans +yataghan +yataghans +yaud +yauds +yauld +yaup +yauped +yauper +yaupers +yauping +yaupon +yaupons +yaups +yaw +yawed +yawing +yawl +yawled +yawling +yawls +yawmeter +yawmeters +yawn +yawned +yawner +yawners +yawning +yawns +yawp +yawped +yawper +yawpers +yawping +yawpings +yawps +yaws +yay +ycleped +yclept +ye +yea +yeah +yealing +yealings +yean +yeaned +yeaning +yeanling +yeanlings +yeans +year +yearbook +yearbooks +yearlies +yearling +yearlings +yearlong +yearly +yearn +yearned +yearner +yearners +yearning +yearnings +yearns +years +yeas +yeast +yeasted +yeastier +yeastiest +yeastily +yeasting +yeasts +yeasty +yeelin +yeelins +yegg +yeggman +yeggmen +yeggs +yeh +yeld +yelk +yelks +yell +yelled +yeller +yellers +yelling +yellow +yellowed +yellower +yellowest +yellowing +yellowly +yellows +yellowy +yells +yelp +yelped +yelper +yelpers +yelping +yelps +yen +yenned +yenning +yens +yenta +yentas +yeoman +yeomanly +yeomanries +yeomanry +yeomen +yep +yerba +yerbas +yerk +yerked +yerking +yerks +yes +yeses +yeshiva +yeshivah +yeshivahs +yeshivas +yeshivoth +yessed +yesses +yessing +yester +yesterday +yesterdays +yestern +yestreen +yestreens +yet +yeti +yetis +yett +yetts +yeuk +yeuked +yeuking +yeuks +yeuky +yew +yews +yid +yids +yield +yielded +yielder +yielders +yielding +yields +yill +yills +yin +yince +yins +yip +yipe +yipes +yipped +yippee +yippie +yippies +yipping +yips +yird +yirds +yirr +yirred +yirring +yirrs +yirth +yirths +yod +yodel +yodeled +yodeler +yodelers +yodeling +yodelled +yodeller +yodellers +yodelling +yodels +yodh +yodhs +yodle +yodled +yodler +yodlers +yodles +yodling +yods +yoga +yogas +yogee +yogees +yogh +yoghourt +yoghourts +yoghs +yoghurt +yoghurts +yogi +yogic +yogin +yogini +yoginis +yogins +yogis +yogurt +yogurts +yoicks +yoke +yoked +yokel +yokeless +yokelish +yokels +yokemate +yokemates +yokes +yoking +yolk +yolked +yolkier +yolkiest +yolks +yolky +yom +yomim +yon +yond +yonder +yoni +yonis +yonker +yonkers +yore +yores +you +young +younger +youngers +youngest +youngish +youngs +youngster +youngsters +younker +younkers +youpon +youpons +your +yourn +yours +yourself +yourselves +youse +youth +youthen +youthened +youthening +youthens +youthful +youthfully +youthfulness +youthfulnesses +youths +yow +yowe +yowed +yowes +yowie +yowies +yowing +yowl +yowled +yowler +yowlers +yowling +yowls +yows +yperite +yperites +ytterbia +ytterbias +ytterbic +yttria +yttrias +yttric +yttrium +yttriums +yuan +yuans +yucca +yuccas +yuga +yugas +yuk +yukked +yukking +yuks +yulan +yulans +yule +yules +yuletide +yuletides +yummier +yummies +yummiest +yummy +yup +yupon +yupons +yurt +yurta +yurts +ywis +zabaione +zabaiones +zabajone +zabajones +zacaton +zacatons +zaddik +zaddikim +zaffar +zaffars +zaffer +zaffers +zaffir +zaffirs +zaffre +zaffres +zaftig +zag +zagged +zagging +zags +zaibatsu +zaire +zaires +zamarra +zamarras +zamarro +zamarros +zamia +zamias +zamindar +zamindars +zanana +zananas +zander +zanders +zanier +zanies +zaniest +zanily +zaniness +zaninesses +zany +zanyish +zanza +zanzas +zap +zapateo +zapateos +zapped +zapping +zaps +zaptiah +zaptiahs +zaptieh +zaptiehs +zaratite +zaratites +zareba +zarebas +zareeba +zareebas +zarf +zarfs +zariba +zaribas +zarzuela +zarzuelas +zastruga +zastrugi +zax +zaxes +zayin +zayins +zeal +zealot +zealotries +zealotry +zealots +zealous +zealously +zealousness +zealousnesses +zeals +zeatin +zeatins +zebec +zebeck +zebecks +zebecs +zebra +zebraic +zebras +zebrass +zebrasses +zebrine +zebroid +zebu +zebus +zecchin +zecchini +zecchino +zecchinos +zecchins +zechin +zechins +zed +zedoaries +zedoary +zeds +zee +zees +zein +zeins +zeitgeist +zeitgeists +zelkova +zelkovas +zemindar +zemindars +zemstvo +zemstvos +zenana +zenanas +zenith +zenithal +zeniths +zeolite +zeolites +zeolitic +zephyr +zephyrs +zeppelin +zeppelins +zero +zeroed +zeroes +zeroing +zeros +zest +zested +zestful +zestfully +zestfulness +zestfulnesses +zestier +zestiest +zesting +zests +zesty +zeta +zetas +zeugma +zeugmas +zibeline +zibelines +zibet +zibeth +zibeths +zibets +zig +zigged +zigging +ziggurat +ziggurats +zigs +zigzag +zigzagged +zigzagging +zigzags +zikkurat +zikkurats +zikurat +zikurats +zilch +zilches +zillah +zillahs +zillion +zillions +zinc +zincate +zincates +zinced +zincic +zincified +zincifies +zincify +zincifying +zincing +zincite +zincites +zincked +zincking +zincky +zincoid +zincous +zincs +zincy +zing +zingani +zingano +zingara +zingare +zingari +zingaro +zinged +zingier +zingiest +zinging +zings +zingy +zinkified +zinkifies +zinkify +zinkifying +zinky +zinnia +zinnias +zip +zipped +zipper +zippered +zippering +zippers +zippier +zippiest +zipping +zippy +zips +ziram +zirams +zircon +zirconia +zirconias +zirconic +zirconium +zirconiums +zircons +zither +zithern +zitherns +zithers +ziti +zitis +zizith +zizzle +zizzled +zizzles +zizzling +zloty +zlotys +zoa +zoaria +zoarial +zoarium +zodiac +zodiacal +zodiacs +zoea +zoeae +zoeal +zoeas +zoftig +zoic +zoisite +zoisites +zombi +zombie +zombies +zombiism +zombiisms +zombis +zonal +zonally +zonary +zonate +zonated +zonation +zonations +zone +zoned +zoneless +zoner +zoners +zones +zonetime +zonetimes +zoning +zonked +zonula +zonulae +zonular +zonulas +zonule +zonules +zoo +zoochore +zoochores +zoogenic +zooglea +zoogleae +zoogleal +zoogleas +zoogloea +zoogloeae +zoogloeas +zooid +zooidal +zooids +zooks +zoolater +zoolaters +zoolatries +zoolatry +zoologic +zoological +zoologies +zoologist +zoologists +zoology +zoom +zoomania +zoomanias +zoomed +zoometries +zoometry +zooming +zoomorph +zoomorphs +zooms +zoon +zoonal +zoonoses +zoonosis +zoonotic +zoons +zoophile +zoophiles +zoophyte +zoophytes +zoos +zoosperm +zoosperms +zoospore +zoospores +zootomic +zootomies +zootomy +zori +zoril +zorilla +zorillas +zorille +zorilles +zorillo +zorillos +zorils +zoster +zosters +zouave +zouaves +zounds +zowie +zoysia +zoysias +zucchini +zucchinis +zwieback +zwiebacks +zygoma +zygomas +zygomata +zygose +zygoses +zygosis +zygosities +zygosity +zygote +zygotene +zygotenes +zygotes +zygotic +zymase +zymases +zyme +zymes +zymogen +zymogene +zymogenes +zymogens +zymologies +zymology +zymoses +zymosis +zymotic +zymurgies +zymurgy From b987b6699d180d1e761f114224b11ea69fc79cf3 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Mon, 27 Oct 2025 21:54:57 +0000 Subject: [PATCH 11/56] Spelling Bee solutions --- chapters/chap07.ipynb | 224 +++++++++++++++++++++++++++--------------- 1 file changed, 146 insertions(+), 78 deletions(-) diff --git a/chapters/chap07.ipynb b/chapters/chap07.ipynb index e8aab50f..f81bd88b 100644 --- a/chapters/chap07.ipynb +++ b/chapters/chap07.ipynb @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 3, "id": "f0c8eb18", "metadata": { "tags": [] @@ -66,7 +66,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 4, "id": "6b8569b8-1576-45d2-99f6-c7a2c7e100c4", "metadata": {}, "outputs": [ @@ -95,7 +95,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 5, "id": "6cb5b573-601c-42f5-a940-f1a4d244f990", "metadata": {}, "outputs": [ @@ -125,7 +125,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 6, "id": "7040a890-6619-4ad2-b0bf-b094a5a0e43d", "metadata": {}, "outputs": [ @@ -160,7 +160,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 7, "id": "40fd553c-693c-4ffc-8e49-1d7de3c4d4a7", "metadata": {}, "outputs": [], @@ -181,7 +181,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 8, "id": "8a34174b-5a77-482a-8480-14cfdff16339", "metadata": {}, "outputs": [], @@ -203,7 +203,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 9, "id": "0909121d-5218-49ca-b03e-258206f00e40", "metadata": {}, "outputs": [], @@ -225,7 +225,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 10, "id": "3c4d8138-ddf6-46fe-a940-a7042617ceb1", "metadata": {}, "outputs": [ @@ -235,7 +235,7 @@ "False" ] }, - "execution_count": 9, + "execution_count": 10, "metadata": {}, "output_type": "execute_result" } @@ -246,7 +246,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 11, "id": "5c463051-b737-49ab-a1d7-4be66fd8331f", "metadata": {}, "outputs": [ @@ -256,7 +256,7 @@ "True" ] }, - "execution_count": 10, + "execution_count": 11, "metadata": {}, "output_type": "execute_result" } @@ -114892,7 +114892,7 @@ }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 41, "id": "9369fb05", "metadata": {}, "outputs": [ @@ -114902,7 +114902,7 @@ "False" ] }, - "execution_count": 42, + "execution_count": 41, "metadata": {}, "output_type": "execute_result" } @@ -114921,7 +114921,7 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 42, "id": "eb32713a", "metadata": {}, "outputs": [ @@ -114931,7 +114931,7 @@ "False" ] }, - "execution_count": 43, + "execution_count": 42, "metadata": {}, "output_type": "execute_result" } @@ -114950,7 +114950,7 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 43, "id": "7e65a9fb", "metadata": {}, "outputs": [ @@ -114960,7 +114960,7 @@ "True" ] }, - "execution_count": 44, + "execution_count": 43, "metadata": {}, "output_type": "execute_result" } @@ -114997,7 +114997,7 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 44, "id": "3982e7d3", "metadata": {}, "outputs": [], @@ -115034,7 +115034,7 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 45, "id": "40ef00d3", "metadata": {}, "outputs": [], @@ -115056,7 +115056,7 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 46, "id": "f37cfd36", "metadata": {}, "outputs": [], @@ -115079,7 +115079,7 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": 47, "id": "58c916cc", "metadata": {}, "outputs": [], @@ -115109,7 +115109,7 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 48, "id": "7a325745", "metadata": {}, "outputs": [ @@ -115193,7 +115193,7 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 49, "id": "bc58db59", "metadata": { "tags": [] @@ -115226,7 +115226,7 @@ }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 50, "id": "6b3cdf6a-0e90-4a98-b0f1-ab95dd195ca7", "metadata": {}, "outputs": [], @@ -115248,7 +115248,7 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 51, "id": "7cbb72b1", "metadata": {}, "outputs": [], @@ -115284,7 +115284,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 52, "id": "6c825b80", "metadata": {}, "outputs": [], @@ -115299,7 +115299,7 @@ " >>> uses_none('peach', 'wtso')\n", " True\n", " >>> uses_none('Kiwi', 'weed')\n", - " Flase\n", + " False\n", " \"\"\"\n", " for letter in word.lower():\n", " if letter in forbidden.lower():\n", @@ -115310,7 +115310,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 53, "id": "86a6c2c8", "metadata": {}, "outputs": [], @@ -115321,7 +115321,7 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 54, "id": "2bed91e7", "metadata": { "tags": [] @@ -115346,7 +115346,7 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": 55, "id": "d0d8c6d6", "metadata": {}, "outputs": [], @@ -115358,23 +115358,21 @@ " True\n", " >>> uses_only('apple', 'apl')\n", " False\n", + " >>> uses_only('ape', 'pea')\n", + " True\n", + " >>> uses_only('hero', 'protos')\n", + " False\n", " \"\"\"\n", - " return None" - ] - }, - { - "cell_type": "code", - "execution_count": 54, - "id": "31de091e", - "metadata": {}, - "outputs": [], - "source": [ - "# Solution goes here" + "\n", + " for letter in word.lower():\n", + " if not letter in available.lower():\n", + " return False\n", + " return True" ] }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 56, "id": "8c5133d4", "metadata": { "tags": [] @@ -115399,7 +115397,7 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 57, "id": "18b73bc0", "metadata": {}, "outputs": [], @@ -115411,18 +115409,16 @@ " True\n", " >>> uses_all('apple', 'api')\n", " False\n", + " >>> uses_all('monkey', 'txr')\n", + " False\n", + " >>> uses_all('money', 'ney')\n", + " True\n", " \"\"\"\n", - " return None" - ] - }, - { - "cell_type": "code", - "execution_count": 57, - "id": "5c8be876", - "metadata": {}, - "outputs": [], - "source": [ - "# Solution goes here" + " for letter in required.lower():\n", + " if not letter in word.lower():\n", + " return False\n", + "\n", + " return True" ] }, { @@ -115437,6 +115433,14 @@ "run_doctests(uses_all)" ] }, + { + "cell_type": "markdown", + "id": "5fdfdc0b", + "metadata": {}, + "source": [ + "##### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "7210adfa", @@ -115485,17 +115489,36 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 68, "id": "a4d623b7", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def check_word(word, available, required):\n", + " \"\"\"Check whether a word is acceptable.\n", + " \n", + " >>> check_word('color', 'ACDLORT', 'R')\n", + " True\n", + " >>> check_word('ratatat', 'ACDLORT', 'R')\n", + " True\n", + " >>> check_word('rat', 'ACDLORT', 'R')\n", + " False\n", + " >>> check_word('told', 'ACDLORT', 'R')\n", + " False\n", + " >>> check_word('bee', 'ACDLORT', 'R')\n", + " False\n", + " \"\"\"\n", + " if len(word) >= 4:\n", + " if uses_only(word, available) and uses_any(word, required):\n", + " return True\n", + " \n", + " return False" ] }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 69, "id": "23ed7f79", "metadata": { "tags": [] @@ -115526,7 +115549,7 @@ }, { "cell_type": "code", - "execution_count": 62, + "execution_count": null, "id": "11b69de0", "metadata": {}, "outputs": [], @@ -115541,29 +115564,74 @@ " >>> word_score('cartload', 'ACDLORT')\n", " 15\n", " \"\"\"\n", - " return 0" + " score = 0\n", + "\n", + " if len(word) == 4:\n", + " score = 4\n", + " elif len(word) > 4:\n", + " for letter in word:\n", + " score += 1\n", + " elif len(word) == 7:\n", + " for letter in word:\n", + " score += 1\n", + " score + 7\n", + "\n", + " return score" ] }, { "cell_type": "code", - "execution_count": 63, - "id": "eff4ac37", - "metadata": {}, - "outputs": [], + "execution_count": 74, + "id": "eb8e8745", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "**********************************************************************\n", + "File \"__main__\", line 4, in word_score\n", + "Failed example:\n", + " word_score('card', 'ACDLORT')\n", + "Expected:\n", + " 1\n", + "Got:\n", + " 4\n", + "**********************************************************************\n", + "File \"__main__\", line 8, in word_score\n", + "Failed example:\n", + " word_score('cartload', 'ACDLORT')\n", + "Expected:\n", + " 15\n", + "Got:\n", + " 8\n" + ] + } + ], "source": [ - "# Solution goes here" + "run_doctests(word_score)" ] }, { "cell_type": "code", - "execution_count": 64, - "id": "eb8e8745", - "metadata": { - "tags": [] - }, + "execution_count": 72, + "id": "eff4ac37", + "metadata": {}, "outputs": [], "source": [ - "run_doctests(word_score)" + "def word_score(word, available):\n", + " \"\"\"Compute the score for an acceptable word.\n", + " \n", + " >>> word_score('card', 'ACDLORT')\n", + " 1\n", + " >>> word_score('color', 'ACDLORT')\n", + " 5\n", + " >>> word_score('cartload', 'ACDLORT')\n", + " 15\n", + " \"\"\"\n", + " return 0" ] }, { @@ -115578,7 +115646,7 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": null, "id": "6965f673", "metadata": { "tags": [] @@ -115628,7 +115696,7 @@ }, { "cell_type": "code", - "execution_count": 66, + "execution_count": null, "id": "d3aac2dd", "metadata": {}, "outputs": [], @@ -115648,7 +115716,7 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": null, "id": "307c07e6", "metadata": { "tags": [] @@ -115681,7 +115749,7 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": null, "id": "83c9d33c", "metadata": {}, "outputs": [], @@ -115691,7 +115759,7 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": null, "id": "ab66c777", "metadata": { "tags": [] @@ -115717,7 +115785,7 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": null, "id": "bfd6070c", "metadata": {}, "outputs": [], @@ -115727,7 +115795,7 @@ }, { "cell_type": "code", - "execution_count": 71, + "execution_count": null, "id": "a3ea747d", "metadata": {}, "outputs": [], @@ -115745,7 +115813,7 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": null, "id": "6980de57", "metadata": {}, "outputs": [], From 2185846f5c7d207c56b7168d710689a727aab69d Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Mon, 27 Oct 2025 22:10:52 +0000 Subject: [PATCH 12/56] Final solutions --- chapters/chap07.ipynb | 228 ++++++++++++++++++++++++++++++++---------- 1 file changed, 177 insertions(+), 51 deletions(-) diff --git a/chapters/chap07.ipynb b/chapters/chap07.ipynb index f81bd88b..6b261740 100644 --- a/chapters/chap07.ipynb +++ b/chapters/chap07.ipynb @@ -115433,14 +115433,6 @@ "run_doctests(uses_all)" ] }, - { - "cell_type": "markdown", - "id": "5fdfdc0b", - "metadata": {}, - "source": [ - "##### BOOKMARK" - ] - }, { "cell_type": "markdown", "id": "7210adfa", @@ -115549,7 +115541,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 95, "id": "11b69de0", "metadata": {}, "outputs": [], @@ -115567,49 +115559,25 @@ " score = 0\n", "\n", " if len(word) == 4:\n", - " score = 4\n", - " elif len(word) > 4:\n", - " for letter in word:\n", - " score += 1\n", - " elif len(word) == 7:\n", - " for letter in word:\n", - " score += 1\n", - " score + 7\n", + " score += 1\n", + " \n", + " if len(word) > 4:\n", + " score += len(word)\n", + " \n", + " if uses_all(word, available):\n", + " score += 7\n", "\n", " return score" ] }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 96, "id": "eb8e8745", "metadata": { "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "**********************************************************************\n", - "File \"__main__\", line 4, in word_score\n", - "Failed example:\n", - " word_score('card', 'ACDLORT')\n", - "Expected:\n", - " 1\n", - "Got:\n", - " 4\n", - "**********************************************************************\n", - "File \"__main__\", line 8, in word_score\n", - "Failed example:\n", - " word_score('cartload', 'ACDLORT')\n", - "Expected:\n", - " 15\n", - "Got:\n", - " 8\n" - ] - } - ], + "outputs": [], "source": [ "run_doctests(word_score)" ] @@ -115646,12 +115614,113 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 97, "id": "6965f673", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "accord 6\n", + "actor 5\n", + "alar 1\n", + "altar 5\n", + "aorta 5\n", + "aortal 6\n", + "arco 1\n", + "ardor 5\n", + "artal 5\n", + "attar 5\n", + "attract 7\n", + "calcar 6\n", + "caracal 7\n", + "caracara 8\n", + "caracol 7\n", + "carat 5\n", + "card 1\n", + "carl 1\n", + "carload 7\n", + "carol 5\n", + "carrot 6\n", + "cart 1\n", + "cartload 15\n", + "cataract 8\n", + "claro 5\n", + "collar 6\n", + "collard 7\n", + "collator 8\n", + "color 5\n", + "colorado 8\n", + "coral 5\n", + "cord 1\n", + "corolla 7\n", + "corral 6\n", + "cottar 6\n", + "craal 5\n", + "dart 1\n", + "doctor 6\n", + "doctoral 15\n", + "dollar 6\n", + "dolor 5\n", + "door 1\n", + "dorado 6\n", + "dorr 1\n", + "dotard 6\n", + "drat 1\n", + "droll 5\n", + "drool 5\n", + "lard 1\n", + "locator 7\n", + "loral 5\n", + "lord 1\n", + "odor 1\n", + "oral 1\n", + "orator 6\n", + "orca 1\n", + "ordo 1\n", + "orra 1\n", + "ottar 5\n", + "radar 5\n", + "ratal 5\n", + "ratatat 7\n", + "rato 1\n", + "road 1\n", + "roar 1\n", + "rococo 6\n", + "roll 1\n", + "rood 1\n", + "root 1\n", + "rota 1\n", + "rotator 7\n", + "rotl 1\n", + "roto 1\n", + "rotor 5\n", + "talar 5\n", + "tardo 5\n", + "taro 1\n", + "taroc 5\n", + "tarot 5\n", + "tart 1\n", + "tartar 6\n", + "tora 1\n", + "torc 1\n", + "toro 1\n", + "torr 1\n", + "tort 1\n", + "tract 5\n", + "tractor 7\n", + "trad 1\n", + "trocar 6\n", + "trod 1\n", + "troll 5\n", + "trot 1\n", + "Total score 388\n" + ] + } + ], "source": [ "available = 'ACDLORT'\n", "required = 'R'\n", @@ -115681,6 +115750,14 @@ "I found a set of letters that spells words with a total score of 5820. Can you beat that? Finding the best set of letters might be too hard -- you have to be a realist." ] }, + { + "cell_type": "markdown", + "id": "a3b44a00", + "metadata": {}, + "source": [ + "##### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "9ae466ed", @@ -115696,7 +115773,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 98, "id": "d3aac2dd", "metadata": {}, "outputs": [], @@ -115716,7 +115793,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 99, "id": "307c07e6", "metadata": { "tags": [] @@ -115749,17 +115826,32 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 104, "id": "83c9d33c", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def uses_all(word, required):\n", + " \"\"\"\n", + " Checks whether the word uses all the letters required.\n", + "\n", + " >>> uses_all('money', 'yenom')\n", + " True\n", + " >>> uses_all('token', 'ken')\n", + " True\n", + " >>> uses_all('hero', 'lemon')\n", + " False\n", + " >>> uses_all('deeplearning', 'critique')\n", + " False\n", + " \"\"\"\n", + " return uses_only(required, word)\n", + " " ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 105, "id": "ab66c777", "metadata": { "tags": [] @@ -115785,12 +115877,36 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 106, "id": "bfd6070c", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def uses_all(word, required):\n", + " \"\"\"Checkes whether the word uses all the required letters.\n", + " >>> uses_all('banana', 'ban')\n", + " True\n", + " >>> uses_all('apple', 'apx')\n", + " False\n", + " >>> uses_all('international', 'tia')\n", + " True\n", + " \"\"\"\n", + " for letter in required.lower():\n", + " if not uses_any(word, letter):\n", + " return False\n", + " \n", + " return True" + ] + }, + { + "cell_type": "code", + "execution_count": 107, + "id": "7f03afed", + "metadata": {}, + "outputs": [], + "source": [ + "run_doctests(uses_all)" ] }, { @@ -115811,6 +115927,16 @@ " return True\n" ] }, + { + "cell_type": "code", + "execution_count": 108, + "id": "76e533c6", + "metadata": {}, + "outputs": [], + "source": [ + "run_doctests(uses_all)" + ] + }, { "cell_type": "code", "execution_count": null, From 368a57050bd6bccebd09e792047369c763d0f962 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Fri, 31 Oct 2025 20:35:27 +0000 Subject: [PATCH 13/56] File writing solution --- chapters/EXERCISE_pg345_cleaned_100_lines.txt | 100 + chapters/chap08.ipynb | 6400 ++++++- chapters/outfile | 15849 ++++++++++++++++ chapters/pg345.txt | 15849 ++++++++++++++++ chapters/pg345_cleaned.txt | 15475 +++++++++++++++ chapters/pg345_cleaned_100_lines.txt | 100 + chapters/pg345_cleaned_10_lines.txt | 10 + chapters/pg345_replaced.txt | 15288 +++++++++++++++ 8 files changed, 68961 insertions(+), 110 deletions(-) create mode 100644 chapters/EXERCISE_pg345_cleaned_100_lines.txt create mode 100644 chapters/outfile create mode 100644 chapters/pg345.txt create mode 100644 chapters/pg345_cleaned.txt create mode 100644 chapters/pg345_cleaned_100_lines.txt create mode 100644 chapters/pg345_cleaned_10_lines.txt create mode 100644 chapters/pg345_replaced.txt diff --git a/chapters/EXERCISE_pg345_cleaned_100_lines.txt b/chapters/EXERCISE_pg345_cleaned_100_lines.txt new file mode 100644 index 00000000..e77ca626 --- /dev/null +++ b/chapters/EXERCISE_pg345_cleaned_100_lines.txt @@ -0,0 +1,100 @@ + + + + + DRACULA + + _by_ + + Bram Stoker + + [Illustration: colophon] + + NEW YORK + + GROSSET & DUNLAP + + _Publishers_ + + Copyright, 1897, in the United States of America, according + to Act of Congress, by Bram Stoker + + [_All rights reserved._] + + PRINTED IN THE UNITED STATES + AT + THE COUNTRY LIFE PRESS, GARDEN CITY, N.Y. + + + + + TO + + MY DEAR FRIEND + + HOMMY-BEG + + + + +Contents + +CHAPTER I. Jonathan Harker’s Journal +CHAPTER II. Jonathan Harker’s Journal +CHAPTER III. Jonathan Harker’s Journal +CHAPTER IV. Jonathan Harker’s Journal +CHAPTER V. Letters—Lucy and Mina +CHAPTER VI. Mina Murray’s Journal +CHAPTER VII. Cutting from “The Dailygraph,” 8 August +CHAPTER VIII. Mina Murray’s Journal +CHAPTER IX. Mina Murray’s Journal +CHAPTER X. Mina Murray’s Journal +CHAPTER XI. Lucy Westenra’s Diary +CHAPTER XII. Dr. Seward’s Diary +CHAPTER XIII. Dr. Seward’s Diary +CHAPTER XIV. Mina Harker’s Journal +CHAPTER XV. Dr. Seward’s Diary +CHAPTER XVI. Dr. Seward’s Diary +CHAPTER XVII. Dr. Seward’s Diary +CHAPTER XVIII. Dr. Seward’s Diary +CHAPTER XIX. Jonathan Harker’s Journal +CHAPTER XX. Jonathan Harker’s Journal +CHAPTER XXI. Dr. Seward’s Diary +CHAPTER XXII. Jonathan Harker’s Journal +CHAPTER XXIII. Dr. Seward’s Diary +CHAPTER XXIV. Dr. Seward’s Phonograph Diary, spoken by Van Helsing +CHAPTER XXV. Dr. Seward’s Diary +CHAPTER XXVI. Dr. Seward’s Diary +CHAPTER XXVII. Mina Harker’s Journal + + + + +How these papers have been placed in sequence will be made manifest in +the reading of them. All needless matters have been eliminated, so that +a history almost at variance with the possibilities of later-day belief +may stand forth as simple fact. There is throughout no statement of +past things wherein memory may err, for all the records chosen are +exactly contemporary, given from the standpoints and within the range +of knowledge of those who made them. + + + + +DRACULA + + + + +CHAPTER I + +JONATHAN HARKER’S JOURNAL + +(_Kept in shorthand._) + + +_3 May. Bistritz._--Left Munich at 8:35 P. M., on 1st May, arriving at +Vienna early next morning; should have arrived at 6:46, but train was an +hour late. Buda-Pesth seems a wonderful place, from the glimpse which I +got of it from the train and the little I could walk through the +streets. I feared to go very far from the station, as we had arrived diff --git a/chapters/chap08.ipynb b/chapters/chap08.ipynb index 01083129..e2ea670a 100644 --- a/chapters/chap08.ipynb +++ b/chapters/chap08.ipynb @@ -90,7 +90,18 @@ "execution_count": 3, "id": "2cb1d58c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'a'" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "letter" ] @@ -109,7 +120,18 @@ "execution_count": 4, "id": "4ce1eb16", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'b'" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "fruit[0]" ] @@ -129,7 +151,18 @@ "execution_count": 5, "id": "11201ba9", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'a'" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "i = 1\n", "fruit[i]" @@ -148,7 +181,18 @@ "execution_count": 6, "id": "fc4383d0", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'n'" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "fruit[i+1]" ] @@ -168,7 +212,16 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "TypeError", + "evalue": "string indices must be integers, not 'float'", + "output_type": "error", + "traceback": [ + "\u001b[31mTypeError\u001b[39m\u001b[31m:\u001b[39m string indices must be integers, not 'float'\n" + ] + } + ], "source": [ "%%expect TypeError\n", "\n", @@ -188,7 +241,18 @@ "execution_count": 8, "id": "796ce317", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "6" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "n = len(fruit)\n", "n" @@ -209,7 +273,16 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "IndexError", + "evalue": "string index out of range", + "output_type": "error", + "traceback": [ + "\u001b[31mIndexError\u001b[39m\u001b[31m:\u001b[39m string index out of range\n" + ] + } + ], "source": [ "%%expect IndexError\n", "\n", @@ -229,7 +302,18 @@ "execution_count": 10, "id": "2cf99de6", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'a'" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "fruit[n-1]" ] @@ -248,7 +332,18 @@ "execution_count": 11, "id": "3dedf6fa", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'a'" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "fruit[-1]" ] @@ -277,7 +372,18 @@ "execution_count": 12, "id": "386b9df2", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'ban'" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "fruit = 'banana'\n", "fruit[0:3]" @@ -315,7 +421,18 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "import matplotlib.pyplot as plt\n", "from diagram import diagram, adjust\n", @@ -359,7 +476,18 @@ "execution_count": 15, "id": "00592313", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'ban'" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "fruit[:3]" ] @@ -377,7 +505,18 @@ "execution_count": 16, "id": "01684797", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'ana'" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "fruit[3:]" ] @@ -395,7 +534,18 @@ "execution_count": 17, "id": "c7551ded", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "''" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "fruit[3:3]" ] @@ -418,7 +568,18 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'banana'" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "fruit[:]" ] @@ -441,7 +602,16 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "TypeError", + "evalue": "'str' object does not support item assignment", + "output_type": "error", + "traceback": [ + "\u001b[31mTypeError\u001b[39m\u001b[31m:\u001b[39m 'str' object does not support item assignment\n" + ] + } + ], "source": [ "%%expect TypeError\n", "\n", @@ -468,7 +638,18 @@ "execution_count": 20, "id": "280d27a1", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'Jello, world!'" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "new_greeting = 'J' + greeting[1:]\n", "new_greeting" @@ -488,7 +669,18 @@ "execution_count": 21, "id": "8fa4a4cf", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'Hello, world!'" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "greeting" ] @@ -511,7 +703,7 @@ "metadata": {}, "outputs": [], "source": [ - "word = 'banana'\n", + "word = 'banan2a'\n", "\n", "if word == 'banana':\n", " print('All right, banana.')" @@ -547,9 +739,17 @@ "execution_count": 24, "id": "a46f7035", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "zpple comes after banana.\n" + ] + } + ], "source": [ - "compare_word('apple')" + "compare_word('zpple')" ] }, { @@ -567,11 +767,38 @@ "execution_count": 25, "id": "a691f9e2", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Pineapple comes before banana.\n" + ] + } + ], "source": [ "compare_word('Pineapple')" ] }, + { + "cell_type": "code", + "execution_count": 26, + "id": "dace0a41", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "applepine comes before banana.\n" + ] + } + ], + "source": [ + "word2 = 'ApplePine'\n", + "compare_word(word2.lower())" + ] + }, { "cell_type": "markdown", "id": "f9b916c9", @@ -597,10 +824,21 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 27, "id": "fa6140a6", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'BANANA'" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "word = 'banana'\n", "new_word = word.upper()\n", @@ -633,7 +871,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 28, "id": "e3f1dc18", "metadata": { "tags": [] @@ -641,9 +879,10 @@ "outputs": [], "source": [ "import os\n", + "from urllib.request import urlretrieve\n", "\n", "if not os.path.exists('pg345.txt'):\n", - " !wget https://www.gutenberg.org/cache/epub/345/pg345.txt" + " urlretrieve(\"https://www.gutenberg.org/cache/epub/345/pg345.txt\")" ] }, { @@ -656,7 +895,7 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 29, "id": "bd2d5175", "metadata": {}, "outputs": [], @@ -678,7 +917,7 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 30, "id": "b9c9318c", "metadata": {}, "outputs": [], @@ -697,10 +936,19 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 31, "id": "a9417d4c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "*** START OF THE PROJECT GUTENBERG EBOOK DRACULA ***\n", + "*** END OF THE PROJECT GUTENBERG EBOOK DRACULA ***\n" + ] + } + ], "source": [ "for line in reader:\n", " if is_special_line(line):\n", @@ -719,7 +967,7 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 32, "id": "f2336825", "metadata": {}, "outputs": [], @@ -741,7 +989,7 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 33, "id": "d1b286ee", "metadata": {}, "outputs": [], @@ -763,10 +1011,21 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 34, "id": "b4ecf365", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'*** START OF THE PROJECT GUTENBERG EBOOK DRACULA ***\\n'" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "line" ] @@ -785,7 +1044,7 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 35, "id": "a99dc11c", "metadata": {}, "outputs": [], @@ -806,10 +1065,21 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 36, "id": "dfd6b264", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'*** END OF THE PROJECT GUTENBERG EBOOK DRACULA ***\\n'" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "line" ] @@ -825,7 +1095,7 @@ }, { "cell_type": "code", - "execution_count": 36, + "execution_count": 37, "id": "4eda555c", "metadata": {}, "outputs": [], @@ -844,16 +1114,290 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 38, "id": "5e1e8c74", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "DRACULA\n", + "_by_\n", + "Bram Stoker\n", + "[Illustration: colophon]\n", + "NEW YORK\n", + "GROSSET & DUNLAP\n", + "_Publishers_\n", + "Copyright, 1897, in the United States of America, according\n", + "to Act of Congress, by Bram Stoker\n", + "[_All rights reserved._]\n", + "PRINTED IN THE UNITED STATES\n", + "AT\n", + "THE COUNTRY LIFE PRESS, GARDEN CITY, N.Y.\n", + "TO\n", + "MY DEAR FRIEND\n", + "HOMMY-BEG\n", + "Contents\n", + "CHAPTER I. Jonathan Harker’s Journal\n", + "CHAPTER II. Jonathan Harker’s Journal\n", + "CHAPTER III. Jonathan Harker’s Journal\n", + "CHAPTER IV. Jonathan Harker’s Journal\n", + "CHAPTER V. Letters—Lucy and Mina\n", + "CHAPTER VI. Mina Murray’s Journal\n", + "CHAPTER VII. Cutting from “The Dailygraph,” 8 August\n", + "CHAPTER VIII. Mina Murray’s Journal\n", + "CHAPTER IX. Mina Murray’s Journal\n", + "CHAPTER X. Mina Murray’s Journal\n", + "CHAPTER XI. Lucy Westenra’s Diary\n", + "CHAPTER XII. Dr. Seward’s Diary\n", + "CHAPTER XIII. Dr. Seward’s Diary\n", + "CHAPTER XIV. Mina Harker’s Journal\n", + "CHAPTER XV. Dr. Seward’s Diary\n", + "CHAPTER XVI. Dr. Seward’s Diary\n", + "CHAPTER XVII. Dr. Seward’s Diary\n", + "CHAPTER XVIII. Dr. Seward’s Diary\n", + "CHAPTER XIX. Jonathan Harker’s Journal\n", + "CHAPTER XX. Jonathan Harker’s Journal\n", + "CHAPTER XXI. Dr. Seward’s Diary\n", + "CHAPTER XXII. Jonathan Harker’s Journal\n", + "CHAPTER XXIII. Dr. Seward’s Diary\n", + "CHAPTER XXIV. Dr. Seward’s Phonograph Diary, spoken by Van Helsing\n", + "CHAPTER XXV. Dr. Seward’s Diary\n", + "CHAPTER XXVI. Dr. Seward’s Diary\n", + "CHAPTER XXVII. Mina Harker’s Journal\n", + "How these papers have been placed in sequence will be made manifest in\n", + "the reading of them. All needless matters have been eliminated, so that\n", + "a history almost at variance with the possibilities of later-day belief\n", + "may stand forth as simple fact. There is throughout no statement of\n", + "past things wherein memory may err, for all the records chosen are\n", + "exactly contemporary, given from the standpoints and within the range\n", + "of knowledge of those who made them.\n", + "DRACULA\n", + "CHAPTER I\n", + "JONATHAN HARKER’S JOURNAL\n", + "(_Kept in shorthand._)\n", + "_3 May. Bistritz._--Left Munich at 8:35 P. M., on 1st May, arriving at\n", + "Vienna early next morning; should have arrived at 6:46, but train was an\n", + "hour late. Buda-Pesth seems a wonderful place, from the glimpse which I\n", + "got of it from the train and the little I could walk through the\n", + "streets. I feared to go very far from the station, as we had arrived\n", + "late and would start as near the correct time as possible. The\n", + "impression I had was that we were leaving the West and entering the\n", + "East; the most western of splendid bridges over the Danube, which is\n", + "here of noble width and depth, took us among the traditions of Turkish\n", + "rule.\n", + "We left in pretty good time, and came after nightfall to Klausenburgh.\n", + "Here I stopped for the night at the Hotel Royale. I had for dinner, or\n", + "rather supper, a chicken done up some way with red pepper, which was\n", + "very good but thirsty. (_Mem._, get recipe for Mina.) I asked the\n", + "waiter, and he said it was called “paprika hendl,” and that, as it was a\n", + "national dish, I should be able to get it anywhere along the\n", + "Carpathians. I found my smattering of German very useful here; indeed, I\n", + "don’t know how I should be able to get on without it.\n", + "Having had some time at my disposal when in London, I had visited the\n", + "British Museum, and made search among the books and maps in the library\n", + "regarding Transylvania; it had struck me that some foreknowledge of the\n", + "country could hardly fail to have some importance in dealing with a\n", + "nobleman of that country. I find that the district he named is in the\n", + "extreme east of the country, just on the borders of three states,\n", + "Transylvania, Moldavia and Bukovina, in the midst of the Carpathian\n", + "mountains; one of the wildest and least known portions of Europe. I was\n", + "not able to light on any map or work giving the exact locality of the\n", + "Castle Dracula, as there are no maps of this country as yet to compare\n", + "with our own Ordnance Survey maps; but I found that Bistritz, the post\n", + "town named by Count Dracula, is a fairly well-known place. I shall enter\n", + "here some of my notes, as they may refresh my memory when I talk over my\n", + "travels with Mina.\n", + "In the population of Transylvania there are four distinct nationalities:\n", + "Saxons in the South, and mixed with them the Wallachs, who are the\n", + "descendants of the Dacians; Magyars in the West, and Szekelys in the\n", + "East and North. I am going among the latter, who claim to be descended\n", + "from Attila and the Huns. This may be so, for when the Magyars conquered\n", + "the country in the eleventh century they found the Huns settled in it. I\n", + "read that every known superstition in the world is gathered into the\n", + "horseshoe of the Carpathians, as if it were the centre of some sort of\n", + "imaginative whirlpool; if so my stay may be very interesting. (_Mem._, I\n", + "must ask the Count all about them.)\n", + "I did not sleep well, though my bed was comfortable enough, for I had\n", + "all sorts of queer dreams. There was a dog howling all night under my\n", + "window, which may have had something to do with it; or it may have been\n", + "the paprika, for I had to drink up all the water in my carafe, and was\n", + "still thirsty. Towards morning I slept and was wakened by the continuous\n", + "knocking at my door, so I guess I must have been sleeping soundly then.\n", + "I had for breakfast more paprika, and a sort of porridge of maize flour\n", + "which they said was “mamaliga,” and egg-plant stuffed with forcemeat, a\n", + "very excellent dish, which they call “impletata.” (_Mem._, get recipe\n", + "for this also.) I had to hurry breakfast, for the train started a little\n", + "before eight, or rather it ought to have done so, for after rushing to\n", + "the station at 7:30 I had to sit in the carriage for more than an hour\n", + "before we began to move. It seems to me that the further east you go the\n", + "more unpunctual are the trains. What ought they to be in China?\n", + "All day long we seemed to dawdle through a country which was full of\n", + "beauty of every kind. Sometimes we saw little towns or castles on the\n", + "top of steep hills such as we see in old missals; sometimes we ran by\n", + "rivers and streams which seemed from the wide stony margin on each side\n", + "of them to be subject to great floods. It takes a lot of water, and\n", + "running strong, to sweep the outside edge of a river clear. At every\n", + "station there were groups of people, sometimes crowds, and in all sorts\n", + "of attire. Some of them were just like the peasants at home or those I\n", + "saw coming through France and Germany, with short jackets and round hats\n", + "and home-made trousers; but others were very picturesque. The women\n", + "looked pretty, except when you got near them, but they were very clumsy\n", + "about the waist. They had all full white sleeves of some kind or other,\n", + "and most of them had big belts with a lot of strips of something\n", + "fluttering from them like the dresses in a ballet, but of course there\n", + "were petticoats under them. The strangest figures we saw were the\n", + "Slovaks, who were more barbarian than the rest, with their big cow-boy\n", + "hats, great baggy dirty-white trousers, white linen shirts, and enormous\n", + "heavy leather belts, nearly a foot wide, all studded over with brass\n", + "nails. They wore high boots, with their trousers tucked into them, and\n", + "had long black hair and heavy black moustaches. They are very\n", + "picturesque, but do not look prepossessing. On the stage they would be\n", + "set down at once as some old Oriental band of brigands. They are,\n", + "however, I am told, very harmless and rather wanting in natural\n", + "self-assertion.\n", + "It was on the dark side of twilight when we got to Bistritz, which is a\n", + "very interesting old place. Being practically on the frontier--for the\n", + "Borgo Pass leads from it into Bukovina--it has had a very stormy\n", + "existence, and it certainly shows marks of it. Fifty years ago a series\n", + "of great fires took place, which made terrible havoc on five separate\n", + "occasions. At the very beginning of the seventeenth century it underwent\n", + "a siege of three weeks and lost 13,000 people, the casualties of war\n", + "proper being assisted by famine and disease.\n", + "Count Dracula had directed me to go to the Golden Krone Hotel, which I\n", + "found, to my great delight, to be thoroughly old-fashioned, for of\n", + "course I wanted to see all I could of the ways of the country. I was\n", + "evidently expected, for when I got near the door I faced a\n", + "cheery-looking elderly woman in the usual peasant dress--white\n", + "undergarment with long double apron, front, and back, of coloured stuff\n", + "fitting almost too tight for modesty. When I came close she bowed and\n", + "said, “The Herr Englishman?” “Yes,” I said, “Jonathan Harker.” She\n", + "smiled, and gave some message to an elderly man in white shirt-sleeves,\n", + "who had followed her to the door. He went, but immediately returned with\n", + "a letter:--\n", + "“My Friend.--Welcome to the Carpathians. I am anxiously expecting\n", + "you. Sleep well to-night. At three to-morrow the diligence will\n", + "start for Bukovina; a place on it is kept for you. At the Borgo\n", + "Pass my carriage will await you and will bring you to me. I trust\n", + "that your journey from London has been a happy one, and that you\n", + "will enjoy your stay in my beautiful land.\n", + "“Your friend,\n", + "“DRACULA.”\n", + "_4 May._--I found that my landlord had got a letter from the Count,\n", + "directing him to secure the best place on the coach for me; but on\n", + "making inquiries as to details he seemed somewhat reticent, and\n", + "pretended that he could not understand my German. This could not be\n", + "true, because up to then he had understood it perfectly; at least, he\n", + "answered my questions exactly as if he did. He and his wife, the old\n", + "lady who had received me, looked at each other in a frightened sort of\n", + "way. He mumbled out that the money had been sent in a letter, and that\n", + "was all he knew. When I asked him if he knew Count Dracula, and could\n", + "tell me anything of his castle, both he and his wife crossed themselves,\n", + "and, saying that they knew nothing at all, simply refused to speak\n", + "further. It was so near the time of starting that I had no time to ask\n", + "any one else, for it was all very mysterious and not by any means\n", + "comforting.\n", + "Just before I was leaving, the old lady came up to my room and said in a\n", + "very hysterical way:\n", + "“Must you go? Oh! young Herr, must you go?” She was in such an excited\n", + "state that she seemed to have lost her grip of what German she knew, and\n", + "mixed it all up with some other language which I did not know at all. I\n", + "was just able to follow her by asking many questions. When I told her\n", + "that I must go at once, and that I was engaged on important business,\n", + "she asked again:\n", + "“Do you know what day it is?” I answered that it was the fourth of May.\n", + "She shook her head as she said again:\n", + "“Oh, yes! I know that! I know that, but do you know what day it is?” On\n", + "my saying that I did not understand, she went on:\n", + "“It is the eve of St. George’s Day. Do you not know that to-night, when\n", + "the clock strikes midnight, all the evil things in the world will have\n", + "full sway? Do you know where you are going, and what you are going to?”\n", + "She was in such evident distress that I tried to comfort her, but\n", + "without effect. Finally she went down on her knees and implored me not\n", + "to go; at least to wait a day or two before starting. It was all very\n", + "ridiculous but I did not feel comfortable. However, there was business\n", + "to be done, and I could allow nothing to interfere with it. I therefore\n", + "tried to raise her up, and said, as gravely as I could, that I thanked\n", + "her, but my duty was imperative, and that I must go. She then rose and\n", + "dried her eyes, and taking a crucifix from her neck offered it to me. I\n", + "did not know what to do, for, as an English Churchman, I have been\n", + "taught to regard such things as in some measure idolatrous, and yet it\n", + "seemed so ungracious to refuse an old lady meaning so well and in such a\n", + "state of mind. She saw, I suppose, the doubt in my face, for she put the\n", + "rosary round my neck, and said, “For your mother’s sake,” and went out\n", + "of the room. I am writing up this part of the diary whilst I am waiting\n", + "for the coach, which is, of course, late; and the crucifix is still\n", + "round my neck. Whether it is the old lady’s fear, or the many ghostly\n", + "traditions of this place, or the crucifix itself, I do not know, but I\n", + "am not feeling nearly as easy in my mind as usual. If this book should\n", + "ever reach Mina before I do, let it bring my good-bye. Here comes the\n", + "coach!\n", + "* * * * *\n", + "_5 May. The Castle._--The grey of the morning has passed, and the sun is\n", + "high over the distant horizon, which seems jagged, whether with trees or\n", + "hills I know not, for it is so far off that big things and little are\n", + "mixed. I am not sleepy, and, as I am not to be called till I awake,\n", + "naturally I write till sleep comes. There are many odd things to put\n", + "down, and, lest who reads them may fancy that I dined too well before I\n", + "left Bistritz, let me put down my dinner exactly. I dined on what they\n", + "called “robber steak”--bits of bacon, onion, and beef, seasoned with red\n", + "pepper, and strung on sticks and roasted over the fire, in the simple\n", + "style of the London cat’s meat! The wine was Golden Mediasch, which\n", + "produces a queer sting on the tongue, which is, however, not\n", + "disagreeable. I had only a couple of glasses of this, and nothing else.\n", + "When I got on the coach the driver had not taken his seat, and I saw him\n", + "talking with the landlady. They were evidently talking of me, for every\n", + "now and then they looked at me, and some of the people who were sitting\n", + "on the bench outside the door--which they call by a name meaning\n", + "“word-bearer”--came and listened, and then looked at me, most of them\n", + "pityingly. I could hear a lot of words often repeated, queer words, for\n", + "there were many nationalities in the crowd; so I quietly got my polyglot\n", + "dictionary from my bag and looked them out. I must say they were not\n", + "cheering to me, for amongst them were “Ordog”--Satan, “pokol”--hell,\n", + "“stregoica”--witch, “vrolok” and “vlkoslak”--both of which mean the same\n", + "thing, one being Slovak and the other Servian for something that is\n", + "either were-wolf or vampire. (_Mem._, I must ask the Count about these\n", + "superstitions)\n", + "When we started, the crowd round the inn door, which had by this time\n", + "swelled to a considerable size, all made the sign of the cross and\n", + "pointed two fingers towards me. With some difficulty I got a\n", + "fellow-passenger to tell me what they meant; he would not answer at\n", + "first, but on learning that I was English, he explained that it was a\n", + "charm or guard against the evil eye. This was not very pleasant for me,\n", + "just starting for an unknown place to meet an unknown man; but every one\n", + "seemed so kind-hearted, and so sorrowful, and so sympathetic that I\n", + "could not but be touched. I shall never forget the last glimpse which I\n", + "had of the inn-yard and its crowd of picturesque figures, all crossing\n", + "themselves, as they stood round the wide archway, with its background of\n", + "rich foliage of oleander and orange trees in green tubs clustered in the\n", + "centre of the yard. Then our driver, whose wide linen drawers covered\n", + "the whole front of the box-seat--“gotza” they call them--cracked his big\n", + "whip over his four small horses, which ran abreast, and we set off on\n", + "our journey.\n", + "I soon lost sight and recollection of ghostly fears in the beauty of the\n", + "scene as we drove along, although had I known the language, or rather\n", + "languages, which my fellow-passengers were speaking, I might not have\n", + "been able to throw them off so easily. Before us lay a green sloping\n", + "land full of forests and woods, with here and there steep hills, crowned\n", + "with clumps of trees or with farmhouses, the blank gable end to the\n", + "road. There was everywhere a bewildering mass of fruit blossom--apple,\n", + "plum, pear, cherry; and as we drove by I could see the green grass under\n", + "the trees spangled with the fallen petals. In and out amongst these\n", + "green hills of what they call here the “Mittel Land” ran the road,\n", + "losing itself as it swept round the grassy curve, or was shut out by the\n", + "straggling ends of pine woods, which here and there ran down the\n", + "hillsides like tongues of flame. The road was rugged, but still we\n", + "seemed to fly over it with a feverish haste. I could not understand then\n" + ] + } + ], "source": [ "for line in open('pg345_cleaned.txt'):\n", " line = line.strip()\n", " if len(line) > 0:\n", " print(line)\n", - " if line.endswith('Stoker'):\n", + " if line.endswith('then'):\n", " break" ] }, @@ -880,10 +1424,21 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 39, "id": "63ebaafb", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "15475" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "total = 0\n", "for line in open('pg345_cleaned.txt'):\n", @@ -902,10 +1457,21 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 40, "id": "9973e6e8", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "199" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "total = 0\n", "for line in open('pg345_cleaned.txt'):\n", @@ -926,10 +1492,21 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 41, "id": "02e06ff1", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "200" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "total = 0\n", "for line in open('pg345_cleaned.txt'):\n", @@ -948,7 +1525,7 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 42, "id": "1450e82c", "metadata": {}, "outputs": [], @@ -970,12 +1547,23 @@ }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 43, "id": "a57b64c6", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "201" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "total = 0\n", "for line in open('pg345_replaced.txt'):\n", @@ -1002,7 +1590,7 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 44, "id": "a6069027", "metadata": {}, "outputs": [], @@ -1020,7 +1608,7 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 45, "id": "e3c19abe", "metadata": {}, "outputs": [], @@ -1039,10 +1627,21 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 46, "id": "db588abb", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "import re\n", "\n", @@ -1061,10 +1660,21 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 47, "id": "924524a6", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'I am Dracula; and I bid you welcome, Mr. Harker, to my house.'" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "result.string" ] @@ -1079,10 +1689,21 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 48, "id": "c72b860c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'Dracula'" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "result.group()" ] @@ -1097,10 +1718,21 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": 49, "id": "7c2f556c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "(5, 12)" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "result.span()" ] @@ -1115,10 +1747,18 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 50, "id": "d5242ef6", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "None\n" + ] + } + ], "source": [ "result = re.search('Count', text)\n", "print(result)" @@ -1134,10 +1774,21 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 51, "id": "18c09b63", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "result == None" ] @@ -1152,7 +1803,7 @@ }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 52, "id": "fedb7d95", "metadata": {}, "outputs": [], @@ -1174,10 +1825,21 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 53, "id": "d7cbe2c2", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'CHAPTER I. Jonathan Harker’s Journal\\n'" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "result = find_first('Harker')\n", "result.string" @@ -1198,10 +1860,21 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": 54, "id": "96c64f83", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'CHAPTER V. Letters—Lucy and Mina\\n'" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "pattern = 'Mina|Murray'\n", "result = find_first(pattern)\n", @@ -1219,7 +1892,7 @@ }, { "cell_type": "code", - "execution_count": 54, + "execution_count": 55, "id": "d0d2e926", "metadata": {}, "outputs": [], @@ -1243,10 +1916,21 @@ }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 56, "id": "d7e8c5b4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "229" + ] + }, + "execution_count": 56, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "count_matches('Mina|Murray')" ] @@ -1261,10 +1945,21 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 57, "id": "be63c5b0", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'Dracula, jumping to his feet, said:--\\n'" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "result = find_first('^Dracula')\n", "result.string" @@ -1280,10 +1975,21 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": 58, "id": "37595ac5", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'by five o’clock, we must start off; for it won’t do to leave Mrs. Harker\\n'" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "result = find_first('Harker$')\n", "result.string" @@ -1303,7 +2009,7 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 59, "id": "18237bea", "metadata": {}, "outputs": [], @@ -1322,10 +2028,21 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 60, "id": "ce65805f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'horseshoe of the Carpathians, as if it were the centre of some sort of\\n'" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "result = find_first(pattern)\n", "result.string" @@ -1344,7 +2061,7 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 61, "id": "af770664", "metadata": {}, "outputs": [], @@ -1362,10 +2079,21 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 62, "id": "ed67bde7", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'undergarment with long double apron, front, and back, of coloured stuff\\n'" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "result = find_first(pattern)\n", "line = result.string\n", @@ -1385,10 +2113,21 @@ }, { "cell_type": "code", - "execution_count": 62, + "execution_count": 63, "id": "52dd938c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'undergarment with long double apron, front, and back, of colored stuff\\n'" + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "re.sub(pattern, 'color', line)" ] @@ -1404,7 +2143,7 @@ }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 64, "id": "d2e309a2", "metadata": { "tags": [] @@ -1422,12 +2161,4958 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 65, "id": "3d8b2a9f", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "DRACULA\n", + "Bram Stoker\n", + "[Illustration: colophon]\n", + "NEW YORK\n", + "GROSSET & DUNLAP\n", + "_Publishers_\n", + "Copyright, 1897, in the United States of America, according\n", + "to Act of Congress, by Bram Stoker\n", + "[_All rights reserved._]\n", + "PRINTED IN THE UNITED STATES\n", + "AT\n", + "THE COUNTRY LIFE PRESS, GARDEN CITY, N.Y.\n", + "TO\n", + "MY DEAR FRIEND\n", + "HOMMY-BEG\n", + "Contents\n", + "CHAPTER I. Jonathan Harker’s Journal\n", + "CHAPTER II. Jonathan Harker’s Journal\n", + "CHAPTER III. Jonathan Harker’s Journal\n", + "CHAPTER IV. Jonathan Harker’s Journal\n", + "CHAPTER V. Letters—Lucy and Mina\n", + "CHAPTER VI. Mina Murray’s Journal\n", + "CHAPTER VII. Cutting from “The Dailygraph,” 8 August\n", + "CHAPTER VIII. Mina Murray’s Journal\n", + "CHAPTER IX. Mina Murray’s Journal\n", + "CHAPTER X. Mina Murray’s Journal\n", + "CHAPTER XI. Lucy Westenra’s Diary\n", + "CHAPTER XII. Dr. Seward’s Diary\n", + "CHAPTER XIII. Dr. Seward’s Diary\n", + "CHAPTER XIV. Mina Harker’s Journal\n", + "CHAPTER XV. Dr. Seward’s Diary\n", + "CHAPTER XVI. Dr. Seward’s Diary\n", + "CHAPTER XVII. Dr. Seward’s Diary\n", + "CHAPTER XVIII. Dr. Seward’s Diary\n", + "CHAPTER XIX. Jonathan Harker’s Journal\n", + "CHAPTER XX. Jonathan Harker’s Journal\n", + "CHAPTER XXI. Dr. Seward’s Diary\n", + "CHAPTER XXII. Jonathan Harker’s Journal\n", + "CHAPTER XXIII. Dr. Seward’s Diary\n", + "CHAPTER XXIV. Dr. Seward’s Phonograph Diary, spoken by Van Helsing\n", + "CHAPTER XXV. Dr. Seward’s Diary\n", + "CHAPTER XXVI. Dr. Seward’s Diary\n", + "CHAPTER XXVII. Mina Harker’s Journal\n", + "How these papers have been placed in sequence will be made manifest in\n", + "DRACULA\n", + "CHAPTER I\n", + "JONATHAN HARKER’S JOURNAL\n", + "(_Kept in shorthand._)\n", + "_3 May. Bistritz._--Left Munich at 8:35 P. M., on 1st May, arriving at\n", + "Vienna early next morning; should have arrived at 6:46, but train was an\n", + "hour late. Buda-Pesth seems a wonderful place, from the glimpse which I\n", + "impression I had was that we were leaving the West and entering the\n", + "East; the most western of splendid bridges over the Danube, which is\n", + "here of noble width and depth, took us among the traditions of Turkish\n", + "We left in pretty good time, and came after nightfall to Klausenburgh.\n", + "Here I stopped for the night at the Hotel Royale. I had for dinner, or\n", + "very good but thirsty. (_Mem._, get recipe for Mina.) I asked the\n", + "Carpathians. I found my smattering of German very useful here; indeed, I\n", + "Having had some time at my disposal when in London, I had visited the\n", + "British Museum, and made search among the books and maps in the library\n", + "regarding Transylvania; it had struck me that some foreknowledge of the\n", + "Transylvania, Moldavia and Bukovina, in the midst of the Carpathian\n", + "mountains; one of the wildest and least known portions of Europe. I was\n", + "Castle Dracula, as there are no maps of this country as yet to compare\n", + "with our own Ordnance Survey maps; but I found that Bistritz, the post\n", + "town named by Count Dracula, is a fairly well-known place. I shall enter\n", + "travels with Mina.\n", + "In the population of Transylvania there are four distinct nationalities:\n", + "Saxons in the South, and mixed with them the Wallachs, who are the\n", + "descendants of the Dacians; Magyars in the West, and Szekelys in the\n", + "East and North. I am going among the latter, who claim to be descended\n", + "from Attila and the Huns. This may be so, for when the Magyars conquered\n", + "the country in the eleventh century they found the Huns settled in it. I\n", + "horseshoe of the Carpathians, as if it were the centre of some sort of\n", + "imaginative whirlpool; if so my stay may be very interesting. (_Mem._, I\n", + "must ask the Count all about them.)\n", + "very excellent dish, which they call “impletata.” (_Mem._, get recipe\n", + "more unpunctual are the trains. What ought they to be in China?\n", + "All day long we seemed to dawdle through a country which was full of\n", + "saw coming through France and Germany, with short jackets and round hats\n", + "Slovaks, who were more barbarian than the rest, with their big cow-boy\n", + "set down at once as some old Oriental band of brigands. They are,\n", + "It was on the dark side of twilight when we got to Bistritz, which is a\n", + "Borgo Pass leads from it into Bukovina--it has had a very stormy\n", + "Count Dracula had directed me to go to the Golden Krone Hotel, which I\n", + "said, “The Herr Englishman?” “Yes,” I said, “Jonathan Harker.” She\n", + "“My Friend.--Welcome to the Carpathians. I am anxiously expecting\n", + "start for Bukovina; a place on it is kept for you. At the Borgo\n", + "Pass my carriage will await you and will bring you to me. I trust\n", + "that your journey from London has been a happy one, and that you\n", + "“Your friend,\n", + "“DRACULA.”\n", + "_4 May._--I found that my landlord had got a letter from the Count,\n", + "pretended that he could not understand my German. This could not be\n", + "was all he knew. When I asked him if he knew Count Dracula, and could\n", + "Just before I was leaving, the old lady came up to my room and said in a\n", + "“Must you go? Oh! young Herr, must you go?” She was in such an excited\n", + "state that she seemed to have lost her grip of what German she knew, and\n", + "“Do you know what day it is?” I answered that it was the fourth of May.\n", + "She shook her head as she said again:\n", + "“Oh, yes! I know that! I know that, but do you know what day it is?” On\n", + "“It is the eve of St. George’s Day. Do you not know that to-night, when\n", + "full sway? Do you know where you are going, and what you are going to?”\n", + "She was in such evident distress that I tried to comfort her, but\n", + "did not know what to do, for, as an English Churchman, I have been\n", + "rosary round my neck, and said, “For your mother’s sake,” and went out\n", + "ever reach Mina before I do, let it bring my good-bye. Here comes the\n", + "_5 May. The Castle._--The grey of the morning has passed, and the sun is\n", + "left Bistritz, let me put down my dinner exactly. I dined on what they\n", + "style of the London cat’s meat! The wine was Golden Mediasch, which\n", + "When I got on the coach the driver had not taken his seat, and I saw him\n", + "cheering to me, for amongst them were “Ordog”--Satan, “pokol”--hell,\n", + "thing, one being Slovak and the other Servian for something that is\n", + "either were-wolf or vampire. (_Mem._, I must ask the Count about these\n", + "When we started, the crowd round the inn door, which had by this time\n", + "first, but on learning that I was English, he explained that it was a\n", + "green hills of what they call here the “Mittel Land” ran the road,\n", + "time in reaching Borgo Prund. I was told that this road is in summertime\n", + "the Carpathians, for it is an old tradition that they are not to be kept\n", + "in too good order. Of old the Hospadars would not repair them, lest the\n", + "Turk should think that they were preparing to bring in foreign troops,\n", + "Beyond the green swelling hills of the Mittel Land rose mighty slopes\n", + "of forest up to the lofty steeps of the Carpathians themselves. Right\n", + "“Look! Isten szek!”--“God’s seat!”--and he crossed himself reverently.\n", + "As we wound on our endless way, and the sun sank lower and lower behind\n", + "we passed Cszeks and Slovaks, all in picturesque attire, but I noticed\n", + "peasants, the Cszeks with their white, and the Slovaks with their\n", + "Pass, the dark firs stood out here and there against the background of\n", + "Carpathians seem to wind ceaselessly through the valleys. Sometimes the\n", + "but the driver would not hear of it. “No, no,” he said; “you must not\n", + "before you go to sleep.” The only stop he would make was a moment’s\n", + "When it grew dark there seemed to be some excitement amongst the\n", + "side and to frown down upon us; we were entering on the Borgo Pass. One\n", + "Bistritz--the sign of the cross and the guard against the evil eye.\n", + "Then, as we flew along, the driver leaned forward, and on each side the\n", + "some little time; and at last we saw before us the Pass opening out on\n", + "which was to take me to the Count. Each moment I expected to see the\n", + "The passengers drew back with a sigh of gladness, which seemed to mock\n", + "thought it was “An hour less than the time.” Then turning to me, he said\n", + "in German worse than my own:--\n", + "“There is no carriage here. The Herr is not expected after all. He will\n", + "now come on to Bukovina, and return to-morrow or the next day; better\n", + "the next day.” Whilst he was speaking the horses began to neigh and\n", + "“You are early to-night, my friend.” The man stammered in reply:--\n", + "“The English Herr was in a hurry,” to which the stranger replied:--\n", + "“That is why, I suppose, you wished him to go on to Bukovina. You cannot\n", + "deceive me, my friend; I know too much, and my horses are swift.” As he\n", + "companions whispered to another the line from Burger’s “Lenore”:--\n", + "“Denn die Todten reiten schnell”--\n", + "(“For the dead travel fast.”)\n", + "The strange driver evidently heard the words, for he looked up with a\n", + "putting out his two fingers and crossing himself. “Give me the Herr’s\n", + "swept into the darkness of the Pass. As I looked back I saw the steam\n", + "on their way to Bukovina. As they sank into the darkness I felt a\n", + "excellent German:--\n", + "“The night is chill, mein Herr, and my master the Count bade me take all\n", + "Then a dog began to howl somewhere in a farmhouse far down the road--a\n", + "now sighed softly through the Pass, a wild howling began, which seemed\n", + "time, after going to the far side of the Pass, he suddenly turned down a\n", + "Soon we were hemmed in with trees, which in places arched right over the\n", + "It grew colder and colder still, and fine, powdery snow began to fall,\n", + "Suddenly, away on our left, I saw a faint flickering blue flame. The\n", + "Once the flame appeared so near the road, that even in the darkness\n", + "At last there came a time when the driver went further afield than he\n", + "For myself, I felt a sort of paralysis of fear. It is only when a man\n", + "All at once the wolves began to howl as though the moonlight had had\n", + "When I could see again the driver was climbing into the calèche, and the\n", + "CHAPTER II\n", + "JONATHAN HARKER’S JOURNAL--_continued_\n", + "_5 May._--I must have been asleep, for certainly if I had been fully\n", + "When the calèche stopped, the driver jumped down and held out his hand\n", + "What sort of grim adventure was it on which I had embarked? Was this a\n", + "explain the purchase of a London estate to a foreigner? Solicitor’s\n", + "clerk! Mina would not like that. Solicitor--for just before leaving\n", + "London I got word that my examination was successful; and I am now a\n", + "and among the Carpathians. All I could do now was to be patient, and to\n", + "Just as I had come to this conclusion I heard a heavy step approaching\n", + "Within, stood a tall old man, clean shaven save for a long white\n", + "gesture, saying in excellent English, but with a strange intonation:--\n", + "“Welcome to my house! Enter freely and of your own will!” He made no\n", + "“Welcome to my house. Come freely. Go safely; and leave something of the\n", + "happiness you bring!” The strength of the handshake was so much akin to\n", + "“Count Dracula?” He bowed in a courtly way as he replied:--\n", + "“I am Dracula; and I bid you welcome, Mr. Harker, to my house. Come in;\n", + "the night air is chill, and you must need to eat and rest.” As he was\n", + "“Nay, sir, you are my guest. It is late, and my people are not\n", + "available. Let me see to your comfort myself.” He insisted on carrying\n", + "The Count halted, putting down my bags, closed the door, and crossing\n", + "fresh--which sent a hollow roar up the wide chimney. The Count himself\n", + "“You will need, after your journey, to refresh yourself by making your\n", + "The light and warmth and the Count’s courteous welcome seemed to have\n", + "I handed to him the sealed letter which Mr. Hawkins had entrusted to me.\n", + "He opened it and read it gravely; then, with a charming smile, he handed\n", + "The Count himself came forward and took off the cover of a dish, and I\n", + "and a salad and a bottle of old Tokay, of which I had two glasses, was\n", + "my supper. During the time I was eating it the Count asked me many\n", + "By this time I had finished my supper, and by my host’s desire had drawn\n", + "His face was a strong--a very strong--aquiline, with high bridge of the\n", + "Hitherto I had noticed the backs of his hands as they lay on his knees\n", + "point. As the Count leaned over me and his hands touched me, I could not\n", + "not conceal. The Count, evidently noticing it, drew back; and with a\n", + "down below in the valley the howling of many wolves. The Count’s eyes\n", + "“Listen to them--the children of the night. What music they make!”\n", + "Seeing, I suppose, some expression in my face strange to him, he\n", + "“Ah, sir, you dwellers in the city cannot enter into the feelings of the\n", + "hunter.” Then he rose and said:--\n", + "“But you must be tired. Your bedroom is all ready, and to-morrow you\n", + "so sleep well and dream well!” With a courteous bow, he opened for me\n", + "_7 May._--It is again early morning, but I have rested and enjoyed the\n", + "There are certainly odd deficiencies in the house, considering the\n", + "The curtains and upholstery of the chairs and sofas and the hangings of\n", + "though in excellent order. I saw something like them in Hampton Court,\n", + "Some time after I had finished my meal--I do not know whether to call it\n", + "the castle until I had asked the Count’s permission. There was\n", + "In the library I found, to my great delight, a vast number of English\n", + "newspapers. A table in the centre was littered with English magazines\n", + "economy, botany, geology, law--all relating to England and English life\n", + "London Directory, the “Red” and “Blue” books, Whitaker’s Almanac, the\n", + "Army and Navy Lists, and--it somehow gladdened my heart to see it--the\n", + "Law List.\n", + "Whilst I was looking at the books, the door opened, and the Count\n", + "since I had the idea of going to London, have given me many, many hours\n", + "of pleasure. Through them I have come to know your great England; and to\n", + "your mighty London, to be in the midst of the whirl and rush of\n", + "To you, my friend, I look that I know it to speak.”\n", + "“But, Count,” I said, “you know and speak English thoroughly!” He bowed\n", + "“Indeed,” I said, “you speak excellently.”\n", + "“Not so,” he answered. “Well, I know that, did I move and speak in your\n", + "London, none there are who would not know me for a stranger. That is not\n", + "speaking if he hear my words, ‘Ha, ha! a stranger!’ I have been so long\n", + "be master of me. You come to me not alone as agent of my friend Peter\n", + "Hawkins, of Exeter, to tell me all about my new estate in London. You\n", + "learn the English intonation; and I would that you tell me when I make\n", + "Of course I said all I could about being willing, and asked if I might\n", + "come into that room when I chose. He answered: “Yes, certainly,” and\n", + "“You may go anywhere you wish in the castle, except where the doors are\n", + "“We are in Transylvania; and Transylvania is not England. Our ways are\n", + "This led to much conversation; and as it was evident that he wanted to\n", + "Sometimes he sheered off the subject, or turned the conversation by\n", + "where treasure has been concealed. “That treasure has been hidden,” he\n", + "Wallachian, the Saxon, and the Turk. Why, there is hardly a foot of soil\n", + "Austrian and the Hungarian came up in hordes, and the patriots went out\n", + "“But how,” said I, “can it have remained so long undiscovered, when\n", + "The Count smiled, and as his lips ran back over his gums, the long,\n", + "“Because your peasant is at heart a coward and a fool! Those flames only\n", + "“There you are right,” I said. “I know no more than the dead where even\n", + "to look for them.” Then we drifted into other matters.\n", + "“Come,” he said at last, “tell me of London and of the house which you\n", + "have procured for me.” With an apology for my remissness, I went into my\n", + "in the study or library, and I found the Count lying on the sofa,\n", + "reading, of all things in the world, an English Bradshaw’s Guide. When I\n", + "“Well, but, my friend, is it not needful that I should? When I go there\n", + "I shall be all alone, and my friend Harker Jonathan--nay, pardon me, I\n", + "Jonathan Harker will not be by my side to correct and aid me. He will be\n", + "in Exeter, miles away, probably working at papers of the law with my\n", + "other friend, Peter Hawkins. So!”\n", + "We went thoroughly into the business of the purchase of the estate at\n", + "Purfleet. When I had told him the facts and got his signature to the\n", + "Mr. Hawkins, he began to ask me how I had come across so suitable a\n", + "“At Purfleet, on a by-road, I came across just such a place as seemed to\n", + "“The estate is called Carfax, no doubt a corruption of the old _Quatre\n", + "Face_, as the house is four-sided, agreeing with the cardinal points of\n", + "When I had finished, he said:--\n", + "also that there is a chapel of old times. We Transylvanian nobles love\n", + "be alone with my thoughts when I may.” Somehow his words and his look\n", + "Presently, with an excuse, he left me, asking me to put all my papers\n", + "England, as if that map had been much used. On looking at it I found in\n", + "that one was near London on the east side, manifestly where his new\n", + "estate was situated; the other two were Exeter, and Whitby on the\n", + "Yorkshire coast.\n", + "It was the better part of an hour when the Count returned. “Aha!” he\n", + "said; “still at your books? Good! But you must not work always. Come; I\n", + "am informed that your supper is ready.” He took my arm, and we went into\n", + "Count again excused himself, as he had dined out on his being away from\n", + "After supper I smoked, as on the last evening, and the Count stayed with\n", + "They say that people who are near death die generally at the change to\n", + "with preternatural shrillness through the clear morning air; Count\n", + "Dracula, jumping to his feet, said:--\n", + "“Why, there is the morning again! How remiss I am to let you stay up so\n", + "England less interesting, so that I may not forget how time flies by\n", + "_8 May._--I began to fear as I wrote in this book that I was getting too\n", + "me; but would that that were all! If there were any one to talk to I\n", + "could bear it, but there is no one. I have only the Count to speak with,\n", + "and heard the Count’s voice saying to me, “Good-morning.” I started, for\n", + "but did not notice it at the moment. Having answered the Count’s\n", + "This time there could be no error, for the man was close to me, and I\n", + "the mirror! The whole room behind me was displayed; but there was no\n", + "feeling of uneasiness which I always have when the Count is near; but at\n", + "round to look for some sticking plaster. When the Count saw my face, his\n", + "“Take care,” he said, “take care how you cut yourself. It is more\n", + "dangerous than you think in this country.” Then seizing the shaving\n", + "glass, he went on: “And this is the wretched thing that has done the\n", + "When I went into the dining-room, breakfast was prepared; but I could\n", + "not find the Count anywhere. So I breakfasted alone. It is strange that\n", + "as yet I have not seen the Count eat or drink. He must be a very\n", + "peculiar man! After breakfast I did a little exploring in the castle. I\n", + "went out on the stairs, and found a room looking towards the South. The\n", + "touching anything! As far as the eye can reach is a sea of green tree\n", + "But I am not in heart to describe beauty, for when I had seen the view I\n", + "The castle is a veritable prison, and I am a prisoner!\n", + "CHAPTER III\n", + "JONATHAN HARKER’S JOURNAL--_continued_\n", + "When I found that I was a prisoner a sort of wild feeling came over me.\n", + "the Count. He knows well that I am imprisoned; and as he has done it\n", + "shut, and knew that the Count had returned. He did not come at once into\n", + "This gave me a fright, for if there is no one else in the castle, it\n", + "must have been the Count himself who was the driver of the coach that\n", + "hand in silence. How was it that all the people at Bistritz and on the\n", + "coach had some terrible fear for me? What meant the giving of the\n", + "crucifix, of the garlic, of the wild rose, of the mountain ash? Bless\n", + "a tangible help, in conveying memories of sympathy and comfort? Some\n", + "mind about it. In the meantime I must find out all I can about Count\n", + "Dracula, as it may help me to understand. To-night he may talk of\n", + "_Midnight._--I have had a long talk with the Count. I asked him a few\n", + "questions on Transylvania history, and he warmed up to the subject\n", + "“We Szekelys have a right to be proud, for in our veins flows the blood\n", + "in the whirlpool of European races, the Ugric tribe bore down from\n", + "Iceland the fighting spirit which Thor and Wodin gave them, which their\n", + "Berserkers displayed to such fell intent on the seaboards of Europe, ay,\n", + "and of Asia and Africa too, till the peoples thought that the\n", + "the Huns, whose warlike fury had swept the earth like a living flame,\n", + "old witches, who, expelled from Scythia had mated with the devils in the\n", + "desert. Fools, fools! What devil or what witch was ever so great as\n", + "Attila, whose blood is in these veins?” He held up his arms. “Is it a\n", + "Magyar, the Lombard, the Avar, the Bulgar, or the Turk poured his\n", + "thousands on our frontiers, we drove them back? Is it strange that when\n", + "Arpad and his legions swept through the Hungarian fatherland he found us\n", + "here when he reached the frontier; that the Honfoglalas was completed\n", + "there? And when the Hungarian flood swept eastward, the Szekelys were\n", + "claimed as kindred by the victorious Magyars, and to us for centuries\n", + "was trusted the guarding of the frontier of Turkey-land; ay, and more\n", + "than that, endless duty of the frontier guard, for, as the Turks say,\n", + "‘water sleeps, and enemy is sleepless.’ Who more gladly than we\n", + "throughout the Four Nations received the ‘bloody sword,’ or at its\n", + "warlike call flocked quicker to the standard of the King? When was\n", + "redeemed that great shame of my nation, the shame of Cassova, when the\n", + "flags of the Wallach and the Magyar went down beneath the Crescent? Who\n", + "was it but one of my own race who as Voivode crossed the Danube and beat\n", + "the Turk on his own ground? This was a Dracula indeed! Woe was it that\n", + "Turk and brought the shame of slavery on them! Was it not this Dracula,\n", + "again brought his forces over the great river into Turkey-land; who,\n", + "slaughtered, since he knew that he alone could ultimately triumph! They\n", + "without a leader? Where ends the war without a brain and heart to\n", + "conduct it? Again, when, after the battle of Mohács, we threw off the\n", + "Hungarian yoke, we of the Dracula blood were amongst their leaders, for\n", + "Szekelys--and the Dracula as their heart’s blood, their brains, and\n", + "Hapsburgs and the Romanoffs can never reach. The warlike days are over.\n", + "Blood is too precious a thing in these days of dishonourable peace; and\n", + "It was by this time close on morning, and we went to bed. (_Mem._, this\n", + "diary seems horribly like the beginning of the “Arabian Nights,” for\n", + "everything has to break off at cockcrow--or like the ghost of Hamlet’s\n", + "_12 May._--Let me begin with facts--bare, meagre facts, verified by\n", + "observation, or my memory of them. Last evening when the Count came from\n", + "matters I had been examining at Lincoln’s Inn. There was a certain\n", + "method in the Count’s inquiries, so I shall try to put them down in\n", + "First, he asked if a man in England might have two solicitors or more. I\n", + "“I shall illustrate. Your friend and mine, Mr. Peter Hawkins, from under\n", + "the shadow of your beautiful cathedral at Exeter, which is far from\n", + "London, buys for me through your good self my place at London. Good! Now\n", + "sought the services of one so far off from London instead of some one\n", + "served save my wish only; and as one of London residence might, perhaps,\n", + "I, who have much of affairs, wish to ship goods, say, to Newcastle, or\n", + "Durham, or Harwich, or Dover, might it not be that it could with more\n", + "“But,” said he, “I could be at liberty to direct myself. Is it not so?”\n", + "“Of course,” I replied; and “such is often done by men of business, who\n", + "“Good!” he said, and then went on to ask about the means of making\n", + "“Have you written since your first letter to our friend Mr. Peter\n", + "Hawkins, or to any other?” It was with some bitterness in my heart that\n", + "“Then write now, my young friend,” he said, laying a heavy hand on my\n", + "“Do you wish me to stay so long?” I asked, for my heart grew cold at the\n", + "What could I do but bow acceptance? It was Mr. Hawkins’s interest, not\n", + "mine, and I had to think of him, not myself; and besides, while Count\n", + "Dracula was speaking, there was that in his eyes and in his bearing\n", + "could have no choice. The Count saw his victory in my bow, and his\n", + "home to them. Is it not so?” As he spoke he handed me three sheets of\n", + "now, but to write fully to Mr. Hawkins in secret, and also to Mina, for\n", + "to her I could write in shorthand, which would puzzle the Count, if he\n", + "book whilst the Count wrote several notes, referring as he wrote them to\n", + "One of the letters was directed to Samuel F. Billington, No. 7, The\n", + "Crescent, Whitby, another to Herr Leutner, Varna; the third was to\n", + "Coutts & Co., London, and the fourth to Herren Klopstock & Billreuth,\n", + "bankers, Buda-Pesth. The second and fourth were unsealed. I was just\n", + "to resume my book before the Count, holding still another letter in his\n", + "evening. You will, I hope, find all things as you wish.” At the door he\n", + "“Let me advise you, my dear young friend--nay, let me warn you with all\n", + "warned! Should sleep now or ever overcome you, or be like to do, then\n", + "safe. But if you be not careful in this respect, then”--He finished his\n", + "_Later._--I endorse the last words written, but this time there is no\n", + "When he left me I went to my room. After a little while, not hearing any\n", + "towards the South. There was some sense of freedom in the vast expanse,\n", + "It is destroying my nerve. I start at my own shadow, and am full of all\n", + "the rooms, that the windows of the Count’s own room would look out. The\n", + "What I saw was the Count’s head coming out from the window. I did not\n", + "What manner of man is this, or what manner of creature is it in the\n", + "_15 May._--Once more have I seen the Count go out in his lizard fashion.\n", + "He moved downwards in a sidelong way, some hundred feet down, and a good\n", + "door was locked, and the key was gone! That key must be in the Count’s\n", + "presence of the Count, and after trying a little to school my nerves, I\n", + "_Later: the Morning of 16 May._--God preserve my sanity, for to this I\n", + "Whilst I live on here there is but one thing to hope for, that I may not\n", + "hateful place the Count is the least dreadful to me; that to him alone I\n", + "purpose. Great God! merciful God! Let me be calm, for out of that way\n", + "have puzzled me. Up to now I never quite knew what Shakespeare meant\n", + "when he made Hamlet say:--\n", + "“My tablets! quick, my tablets!\n", + "’Tis meet that I put it down,” etc.,\n", + "The habit of entering accurately must help to soothe me.\n", + "The Count’s mysterious warning frightened me at the time; it frightens\n", + "When I had written in my diary and had fortunately replaced the book and\n", + "pen in my pocket I felt sleepy. The Count’s warning came into my mind,\n", + "noses, like the Count, and great dark, piercing eyes that seemed to be\n", + "day it should meet Mina’s eyes and cause her pain; but it is the truth.\n", + "They whispered together, and then they all three laughed--such a\n", + "The fair girl shook her head coquettishly, and the other two urged her\n", + "“Go on! You are first, and we shall follow; yours is the right to\n", + "begin.” The other added:--\n", + "“He is young and strong; there are kisses for us all.” I lay quiet,\n", + "The fair girl advanced and bent over me till I could feel the movement\n", + "But at that instant, another sensation swept through me as quick as\n", + "lightning. I was conscious of the presence of the Count, and of his\n", + "passion. But the Count! Never did I imagine such wrath and fury, even to\n", + "“How dare you touch him, any of you? How dare you cast eyes on him when\n", + "I had forbidden it? Back, I tell you all! This man belongs to me! Beware\n", + "how you meddle with him, or you’ll have to deal with me.” The fair girl,\n", + "“You yourself never loved; you never love!” On this the other women\n", + "of fiends. Then the Count turned, after looking at my face attentively,\n", + "“Yes, I too can love; you yourselves can tell it from the past. Is it\n", + "not so? Well, now I promise you that when I am done with him you shall\n", + "“Are we to have nothing to-night?” said one of them, with a low laugh,\n", + "Then the horror overcame me, and I sank down unconscious.\n", + "CHAPTER IV\n", + "JONATHAN HARKER’S JOURNAL--_continued_\n", + "I awoke in my own bed. If it be that I had not dreamt, the Count must\n", + "thing I am glad: if it was that the Count carried me here and undressed\n", + "_18 May._--I have been down to look at that room again in daylight, for\n", + "_19 May._--I am surely in the toils. Last night the Count asked me in\n", + "Bistritz. I would fain have rebelled, but felt that in the present state\n", + "of things it would be madness to quarrel openly with the Count whilst I\n", + "be held over at Bistritz until due time in case chance would admit of my\n", + "“The first should be June 12, the second June 19, and the third June\n", + "_28 May._--There is a chance of escape, or at any rate of being able to\n", + "send word home. A band of Szgany have come to the castle, and are\n", + "encamped in the courtyard. These Szgany are gipsies; I have notes of\n", + "of them in Hungary and Transylvania, who are almost outside all law.\n", + "They attach themselves as a rule to some great noble or _boyar_, and\n", + "save superstition, and they talk only their own varieties of the Romany\n", + "I have written the letters. Mina’s is in shorthand, and I simply ask Mr.\n", + "Hawkins to communicate with her. To her I have explained my situation,\n", + "letters not carry, then the Count shall not yet know my secret or the\n", + "read. As the Count did not come in, I have written here....\n", + "The Count has come. He sat down beside me, and said in his smoothest\n", + "“The Szgany has given me these, of which, though I know not whence they\n", + "it--“one is from you, and to my friend Peter Hawkins; the other”--here\n", + "other is a vile thing, an outrage upon friendship and hospitality! It is\n", + "not signed. Well! so it cannot matter to us.” And he calmly held letter\n", + "“The letter to Hawkins--that I shall, of course, send on, since it is\n", + "unknowingly I did break the seal. Will you not cover it again?” He held\n", + "When, an hour or two after, the Count came quietly into the room, his\n", + "“So, my friend, you are tired? Get to bed. There is the surest rest. I\n", + "_31 May._--This morning when I woke I thought I would provide myself\n", + "Every scrap of paper was gone, and with it all my notes, my memoranda,\n", + "The suit in which I had travelled was gone, and also my overcoat and\n", + "_17 June._--This morning, as I was sitting on the edge of my bed\n", + "With joy I hurried to the window, and saw drive into the yard two great\n", + "each pair a Slovak, with his wide hat, great nail-studded belt, dirty\n", + "Then I ran to the window and cried to them. They looked up at me\n", + "stupidly and pointed, but just then the “hetman” of the Szgany came out,\n", + "The leiter-wagons contained great, square boxes, with handles of thick\n", + "rope; these were evidently empty by the ease with which the Slovaks\n", + "yard, the Slovaks were given some money by the Szgany, and spitting on\n", + "_24 June, before morning._--Last night the Count left me early, and\n", + "thought I would watch for the Count, for there is something going on.\n", + "The Szgany are quartered somewhere in the castle and are doing work of\n", + "something coming out of the Count’s window. I drew back and watched\n", + "and in my garb, too! This, then, is his new scheme of evil: that he will\n", + "It makes me rage to think that this can go on, and whilst I am shut up\n", + "I thought I would watch for the Count’s return, and for a long time sat\n", + "Something made me start up, a low, piteous howling of dogs somewhere far\n", + "was becoming hypnotised! Quicker and quicker danced the dust; the\n", + "When a couple of hours had passed I heard something stirring in the\n", + "Count’s room, something like a sharp wail quickly suppressed; and then\n", + "As I sat I heard a sound in the courtyard without--the agonised cry of a\n", + "“Monster, give me my child!”\n", + "She threw herself on her knees, and raising up her hands, cried the same\n", + "Somewhere high overhead, probably on the tower, I heard the voice of the\n", + "Count calling in his harsh, metallic whisper. His call seemed to be\n", + "There was no cry from the woman, and the howling of the wolves was but\n", + "What shall I do? what can I do? How can I escape from this dreadful\n", + "_25 June, morning._--No man knows till he has suffered from the night\n", + "Let me not think of it. Action!\n", + "It has always been at night-time that I have been molested or\n", + "Count in the daylight. Can it be that he sleeps when others wake, that\n", + "he may be awake whilst they sleep? If I could only get into his room!\n", + "But there is no possible way. The door is always locked, no way for me.\n", + "Yes, there is a way, if one dares to take it. Where his body has gone\n", + "window. Why should not I imitate him, and go in by his window? The\n", + "calf’s, and the dreaded Hereafter may still be open to me. God help me\n", + "in my task! Good-bye, Mina, if I fail; good-bye, my faithful friend and\n", + "second father; good-bye, all, and last of all Mina!\n", + "_Same day, later._--I have made the effort, and God, helping me, have\n", + "well the direction and distance of the Count’s window, and made for it\n", + "around for the Count, but, with surprise and gladness, made a discovery.\n", + "The room was empty! It was barely furnished with odd things, which\n", + "corner--gold of all kinds, Roman, and British, and Austrian, and\n", + "Hungarian, and Greek and Turkish money, covered with a film of dust, as\n", + "At one corner of the room was a heavy door. I tried it, for, since I\n", + "brought by the Slovaks. There was nobody about, and I made search for\n", + "There, in one of the great boxes, of which there were fifty in all, on a\n", + "pile of newly dug earth, lay the Count! He was either dead or asleep, I\n", + "By the side of the box was its cover, pierced with holes here and there.\n", + "leaving the Count’s room by the window, crawled again up the castle\n", + "_29 June._--To-day is the date of my last letter, and the Count has\n", + "I was awakened by the Count, who looked at me as grimly as a man can\n", + "“To-morrow, my friend, we must part. You return to your beautiful\n", + "England, I to some work which may have such an end that we may never\n", + "Szgany, who have some labours of their own here, and also come some\n", + "Slovaks. When they have gone, my carriage shall come for you, and shall\n", + "bear you to the Borgo Pass to meet the diligence from Bukovina to\n", + "Bistritz. But I am in hopes that I shall see more of you at Castle\n", + "Dracula.” I suspected him, and determined to test his sincerity.\n", + "Sincerity! It seems like a profanation of the word to write it in\n", + "“Why may I not go to-night?”\n", + "“Because, dear sir, my coachman and horses are away on a mission.”\n", + "“But I would walk with pleasure. I want to get away at once.” He smiled,\n", + "“And your baggage?”\n", + "The Count stood up, and said, with a sweet courtesy which made me rub my\n", + "“You English have a saying which is close to my heart, for its spirit is\n", + "that which rules our _boyars_: ‘Welcome the coming; speed the parting\n", + "guest.’ Come with me, my dear young friend. Not an hour shall you wait\n", + "you so suddenly desire it. Come!” With a stately gravity, he, with the\n", + "“Hark!”\n", + "Close at hand came the howling of many wolves. It was almost as if the\n", + "To my intense astonishment I saw that it was unlocked. Suspiciously, I\n", + "As the door began to open, the howling of the wolves without grew louder\n", + "to struggle at the moment against the Count was useless. With such\n", + "continued slowly to open, and only the Count’s body stood in the gap.\n", + "Suddenly it struck me that this might be the moment and means of my\n", + "was a diabolical wickedness in the idea great enough for the Count, and\n", + "“Shut the door; I shall wait till morning!” and covered my face with my\n", + "powerful arm, the Count threw the door shut, and the great bolts clanged\n", + "In silence we returned to the library, and after a minute or two I went\n", + "to my own room. The last I saw of Count Dracula was his kissing his hand\n", + "Judas in hell might be proud of.\n", + "When I was in my room and about to lie down, I thought I heard a\n", + "deceived me, I heard the voice of the Count:--\n", + "“Back, back, to your own place! Your time is not yet come. Wait! Have\n", + "patience! To-night is mine. To-morrow night is yours!” There was a low,\n", + "the end? To-morrow! to-morrow! Lord, help me, and those to whom I am\n", + "_30 June, morning._--These may be the last words I ever write in this\n", + "on my knees, for I determined that if Death came he should find me\n", + "At last I felt that subtle change in the air, and knew that the morning\n", + "With a glad heart, I opened my door and ran down to the hall. I had seen\n", + "But the door would not move. Despair seized me. I pulled, and pulled, at\n", + "Count.\n", + "Then a wild desire took me to obtain that key at any risk, and I\n", + "determined then and there to scale the wall again and gain the Count’s\n", + "down the wall, as before, into the Count’s room. It was empty, but that\n", + "The great box was in the same place, close against the wall, but the lid\n", + "something which filled my very soul with horror. There lay the Count,\n", + "key. Then I stopped and looked at the Count. There was a mocking smile\n", + "was helping to transfer to London, where, perhaps, for centuries to come\n", + "cracking of whips; the Szgany and the Slovaks of whom the Count had\n", + "contained the vile body, I ran from the place and gained the Count’s\n", + "With strained ears, I listened, and heard downstairs the grinding of the\n", + "As I write there is in the passage below a sound of many tramping feet\n", + "The door is shut, and the chains rattle; there is a grinding of the key\n", + "Hark! in the courtyard and down the rocky way the roll of heavy wheels,\n", + "the crack of whips, and the chorus of the Szgany as they pass into the\n", + "I am alone in the castle with those awful women. Faugh! Mina is a woman,\n", + "and there is nought in common. They are devils of the Pit!\n", + "And then away for home! away to the quickest and nearest train! away\n", + "At least God’s mercy is better than that of these monsters, and the\n", + "Good-bye, all! Mina!\n", + "CHAPTER V\n", + "_Letter from Miss Mina Murray to Miss Lucy Westenra._\n", + "“_9 May._\n", + "“My dearest Lucy,--\n", + "“Forgive my long delay in writing, but I have been simply overwhelmed\n", + "lately, because I want to keep up with Jonathan’s studies, and I have\n", + "be able to be useful to Jonathan, and if I can stenograph well enough I\n", + "two-pages-to-the-week-with-Sunday-squeezed-in-a-corner diaries, but a\n", + "intended for them. I may show it to Jonathan some day if there is in it\n", + "plans when we meet. I have just had a few hurried lines from Jonathan\n", + "from Transylvania. He is well, and will be returning in about a week. I\n", + "countries. I wonder if we--I mean Jonathan and I--shall ever see them\n", + "“Your loving\n", + "“MINA.\n", + "“Tell me all the news when you write. You have not told me anything for\n", + "_Letter, Lucy Westenra to Mina Murray_.\n", + "“_17, Chatham Street_,\n", + "“_Wednesday_.\n", + "“My dearest Mina,--\n", + "last Pop. Some one has evidently been telling tales. That was Mr.\n", + "Holmwood. He often comes to see us, and he and mamma get on very well\n", + "engaged to Jonathan. He is an excellent _parti_, being handsome, well\n", + "off, and of good birth. He is a doctor and really clever. Just fancy! He\n", + "bore. That is slang again, but never mind; Arthur says that every day.\n", + "There, it is all out. Mina, we have told all our secrets to each other\n", + "to speak more. Oh, Mina, couldn’t you guess? I love him. I am blushing\n", + "words. But oh, Mina, I love him; I love him; I love him! There, that\n", + "prayers; and, Mina, pray for my happiness.\n", + "“LUCY.\n", + "_Letter, Lucy Westenra to Mina Murray_.\n", + "“_24 May_.\n", + "“My dearest Mina,--\n", + "“Thanks, and thanks, and thanks again for your sweet letter. It was so\n", + "“My dear, it never rains but it pours. How true the old proverbs are.\n", + "Here am I, who shall be twenty in September, and yet I never had a\n", + "Just fancy! THREE proposals in one day! Isn’t it awful! I feel sorry,\n", + "really and truly sorry, for two of the poor fellows. Oh, Mina, I am so\n", + "But, for goodness’ sake, don’t tell any of the girls, or they would be\n", + "least. Some girls are so vain! You and I, Mina dear, who are engaged and\n", + "it a secret, dear, from _every one_, except, of course, Jonathan. You\n", + "Arthur. A woman ought to tell her husband everything--don’t you think\n", + "quite as fair as they should be. Well, my dear, number One came just\n", + "before lunch. I told you of him, Dr. John Seward, the lunatic-asylum\n", + "me, Mina, very straightforwardly. He told me how dear I was to him,\n", + "free a man might have hope. And then, Mina, I felt a sort of duty to\n", + "wanted a friend I must count him one of my best. Oh, Mina dear, I can’t\n", + "“_Evening._\n", + "“Arthur has just gone, and I feel in better spirits than when I left\n", + "off, so I can go on telling you about the day. Well, my dear, number Two\n", + "came after lunch. He is such a nice fellow, an American from Texas, and\n", + "with poor Desdemona when she had such a dangerous stream poured in her\n", + "don’t, for there was Mr. Morris telling us his stories, and Arthur never\n", + "told any, and yet---- My dear, I am somewhat previous. Mr. Quincey P.\n", + "Morris found me alone. It seems that a man always does find a girl\n", + "alone. No, he doesn’t, for Arthur tried twice to _make_ a chance, and I\n", + "beforehand that Mr. Morris doesn’t always speak slang--that is to say,\n", + "to hear him talk American slang, and whenever I was present, and there\n", + "ever speak slang; I do not know if Arthur likes it, as I have never\n", + "heard him use any as yet. Well, Mr. Morris sat down beside me and looked\n", + "“‘Miss Lucy, I know I ain’t good enough to regulate the fixin’s of your\n", + "“Well, he did look so good-humoured and so jolly that it didn’t seem\n", + "half so hard to refuse him as it did poor Dr. Seward; so I said, as\n", + "feeling a bit serious too--I know, Mina, you will think me a horrid\n", + "“‘Lucy, you are an honest-hearted girl, I know. I should not be here\n", + "to another, is there any one else that you care for? And if there is\n", + "“My dear Mina, why are men so noble when we women are so little worthy\n", + "of them? Here was I almost making fun of this great-hearted, true\n", + "her, and save all this trouble? But this is heresy, and I must not say\n", + "Mr. Morris’s brave eyes, and I told him out straight:--\n", + "“‘Yes, there is some one I love, though he has not told me yet that he\n", + "“‘That’s my brave girl. It’s better worth being late for a chance of\n", + "lonely walk between this and Kingdom Come. Won’t you give me one kiss?\n", + "It’ll be something to keep off the darkness now and then. You can, you\n", + "yet.’ That quite won me, Mina, for it _was_ brave and sweet of him, and\n", + "“‘Little girl, I hold your hand, and you’ve kissed me, and if these\n", + "honesty to me, and good-bye.’ He wrung my hand, and taking up his hat,\n", + "“Ever your loving\n", + "“LUCY.\n", + "“P.S.--Oh, about number Three--I needn’t tell you of number Three, need\n", + "I? Besides, it was all so confused; it seemed only a moment from his\n", + "ungrateful to God for all His goodness to me in sending to me such a\n", + "“Good-bye.”\n", + "_Dr. Seward’s Diary._\n", + "(Kept in phonograph)\n", + "_25 May._--Ebb tide in appetite to-day. Cannot eat, cannot rest, so\n", + "(_Mem._, under what circumstances would I _not_ avoid the pit of hell?)\n", + "_Omnia Romæ venalia sunt._ Hell has its price! _verb. sap._ If there be\n", + "R. M. Renfield, ætat 59.--Sanguine temperament; great physical strength;\n", + "_Letter, Quincey P. Morris to Hon. Arthur Holmwood._\n", + "“_25 May._\n", + "“My dear Art,--\n", + "“We’ve told yarns by the camp-fire in the prairies; and dressed one\n", + "another’s wounds after trying a landing at the Marquesas; and drunk\n", + "healths on the shore of Titicaca. There are more yarns to be told, and\n", + "Korea, Jack Seward. He’s coming, too, and we both want to mingle our\n", + "that God has made and the best worth winning. We promise you a hearty\n", + "“Yours, as ever and always,\n", + "“QUINCEY P. MORRIS.”\n", + "_Telegram from Arthur Holmwood to Quincey P. Morris._\n", + "“_26 May._\n", + "“Count me in every time. I bear messages which will make both your ears\n", + "“ART.”\n", + "CHAPTER VI\n", + "MINA MURRAY’S JOURNAL\n", + "_24 July. Whitby._--Lucy met me at the station, looking sweeter and\n", + "lovelier than ever, and we drove up to the house at the Crescent in\n", + "Esk, runs through a deep valley, which broadens out as it comes near the\n", + "pictures we see of Nuremberg. Right over the town is the ruin of Whitby\n", + "Abbey, which was sacked by the Danes, and which is the scene of part of\n", + "“Marmion,” where the girl was built up in the wall. It is a most noble\n", + "Whitby, for it lies right over the town, and has a full view of the\n", + "harbour and all up the bay to where the headland called Kettleness\n", + "The harbour lies below me, with, on the far side, one long granite wall\n", + "It is nice at high water; but when the tide is out it shoals away to\n", + "nothing, and there is merely the stream of the Esk, running between\n", + "He is a funny old man. He must be awfully old, for his face is all\n", + "nearly a hundred, and that he was a sailor in the Greenland fishing\n", + "fleet when Waterloo was fought. He is, I am afraid, a very sceptical\n", + "person, for when I asked him about the bells at sea and the White Lady\n", + "Mind, I don’t say that they never was, but I do say that they wasn’t in\n", + "but not for a nice young lady like you. Them feet-folks from York and\n", + "Leeds that be always eatin’ cured herrin’s an’ drinkin’ tea an’ lookin’\n", + "He hobbled away, and I could see him hurrying, as well as he could, down\n", + "_1 August._--I came up here an hour ago with Lucy, and we had a most\n", + "and join him. He is evidently the Sir Oracle of them, and I should think\n", + "She is so sweet with old people; I think they all fell in love with her\n", + "“It be all fool-talk, lock, stock, and barrel; that’s what it be, an’\n", + "them, ‘Here lies the body’ or ‘Sacred to the memory’ wrote on all of\n", + "sacred. Lies all of them, nothin’ but lies of one kind or another! My\n", + "gog, but it’ll be a quare scowderment at the Day of Judgment when they\n", + "“Oh, Mr. Swales, you can’t be serious. Surely these tombstones are not\n", + "“Yabblins! There may be a poorish few not wrong, savin’ where they make\n", + "He went on: “And you consate that all these steans be aboon folk that be\n", + "happed here, snod an’ snog?” I assented again. “Then that be just where\n", + "old Dun’s ’bacca-box on Friday night.” He nudged one of his companions,\n", + "and they all laughed. “And my gog! how could they be otherwise? Look at\n", + "“Edward Spencelagh, master mariner, murdered by pirates off the coast of\n", + "Andres, April, 1854, æt. 30.” When I came back Mr. Swales went on:--\n", + "“Who brought him home, I wonder, to hap him here? Murdered off the coast\n", + "of Andres! an’ you consated his body lay under! Why, I could name ye a\n", + "dozen whose bones lie in the Greenland seas above”--he pointed\n", + "the lies from here. This Braithwaite Lowrey--I knew his father, lost in\n", + "the _Lively_ off Greenland in ’20; or Andrew Woodhouse, drowned in the\n", + "same seas in 1777; or John Paxton, drowned off Cape Farewell a year\n", + "later; or old John Rawlings, whose grandfather sailed with me, drowned\n", + "in the Gulf of Finland in ’50. Do ye think that all these men will have\n", + "to make a rush to Whitby when the trumpet sounds? I have me antherums\n", + "tryin’ to tie up our cuts by the light of the aurora borealis.” This was\n", + "“But,” I said, “surely you are not quite correct, for you start on the\n", + "take their tombstones with them on the Day of Judgment. Do you think\n", + "“Well, what else be they tombstones for? Answer me that, miss!”\n", + "“To please their relatives, I suppose.”\n", + "“To please their relatives, you suppose!” This he said with intense\n", + "scorn. “How will it pleasure their relatives to know that lies is wrote\n", + "over them, and that everybody in the place knows that they be lies?” He\n", + "which the seat was rested, close to the edge of the cliff. “Read the\n", + "from where I sat, but Lucy was more opposite to them, so she leant over\n", + "“Sacred to the memory of George Canon, who died, in the hope of a\n", + "glorious resurrection, on July, 29, 1873, falling from the rocks at\n", + "Kettleness. This tomb was erected by his sorrowing mother to her dearly\n", + "beloved son. ‘He was the only son of his mother, and she was a widow.’\n", + "Really, Mr. Swales, I don’t see anything very funny in that!” She spoke\n", + "“Ye don’t see aught funny! Ha! ha! But that’s because ye don’t gawm the\n", + "they had for scarin’ the crows with. ’Twarn’t for crows then, for it\n", + "stick as he spoke--“a pack of lies? and won’t it make Gabriel keckle\n", + "when Geordie comes pantin’ up the grees with the tombstean balanced on\n", + "I did not know what to say, but Lucy turned the conversation as she\n", + "“Oh, why did you tell us of this? It is my favourite seat, and I cannot\n", + "“That won’t harm ye, my pretty; an’ it may make poor Geordie gladsome to\n", + "there either! It’ll be time for ye to be getting scart when ye see the\n", + "There’s the clock, an’ I must gang. My service to ye, ladies!” And off\n", + "Lucy and I sat awhile, and it was all so beautiful before us that we\n", + "took hands as we sat; and she told me all over again about Arthur and\n", + "haven’t heard from Jonathan for a whole month.\n", + "_The same day._ I came up here alone, for I am very sad. There was no\n", + "letter for me. I hope there cannot be anything the matter with Jonathan.\n", + "The clock has just struck nine. I see the lights scattered all over the\n", + "they run right up the Esk and die away in the curve of the valley. To my\n", + "The band on the pier is playing a harsh waltz in good time, and further\n", + "along the quay there is a Salvation Army meeting in a back street.\n", + "Neither of the bands hears the other, but up here I hear and see them\n", + "both. I wonder where Jonathan is and if he is thinking of me! I wish he\n", + "_Dr. Seward’s Diary._\n", + "_5 June._--The case of Renfield grows more interesting the more I get to\n", + "simple seriousness. He thought for a moment, and then said: “May I have\n", + "three days? I shall clear them away.” Of course, I said that would do. I\n", + "_18 June._--He has turned his mind now to spiders, and has got several\n", + "_1 July._--His spiders are now becoming as great a nuisance as his\n", + "_8 July._--There is a method in his madness, and the rudimentary idea in\n", + "_19 July._--We are progressing. My friend has now a whole colony of\n", + "“Oh, yes, I would like a cat! I only asked for a kitten lest you should\n", + "_20 July._--Visited Renfield very early, before the attendant went his\n", + "There were a few feathers about the room and on his pillow a drop of\n", + "_11 a. m._--The attendant has just been to me to say that Renfield has\n", + "been very sick and has disgorged a whole lot of feathers. “My belief is,\n", + "_11 p. m._--I gave Renfield a strong opiate to-night, enough to make\n", + "steps? It would almost be worth while to complete the experiment. It\n", + "vivisection, and yet look at its results to-day! Why not advance science\n", + "in its most difficult and vital aspect--the knowledge of the brain? Had\n", + "compared with which Burdon-Sanderson’s physiology or Ferrier’s\n", + "How well the man reasoned; lunatics always do within their own scope. I\n", + "To me it seems only yesterday that my whole life ended with my new hope,\n", + "and that truly I began a new record. So it will be until the Great\n", + "Recorder sums me up and closes my ledger account with a balance to\n", + "profit or loss. Oh, Lucy, Lucy, I cannot be angry with you, nor can I be\n", + "If I only could have as strong a cause as my poor mad friend there--a\n", + "_Mina Murray’s Journal._\n", + "_26 July._--I am anxious, and it soothes me to express myself here; it\n", + "different from writing. I am unhappy about Lucy and about Jonathan. I\n", + "had not heard from Jonathan for some time, and was very concerned; but\n", + "yesterday dear Mr. Hawkins, who is always so kind, sent me a letter from\n", + "had just been received. It is only a line dated from Castle Dracula,\n", + "and says that he is just starting for home. That is not like Jonathan;\n", + "I do not understand it, and it makes me uneasy. Then, too, Lucy,\n", + "naturally anxious about Lucy, and she tells me that her husband, Lucy’s\n", + "to be arranged. I sympathise with her, for I do the same, only Jonathan\n", + "make both ends meet. Mr. Holmwood--he is the Hon. Arthur Holmwood, only\n", + "son of Lord Godalming--is coming up here very shortly--as soon as he can\n", + "leave town, for his father is not very well, and I think dear Lucy is\n", + "on the churchyard cliff and show him the beauty of Whitby. I daresay it\n", + "_27 July._--No news from Jonathan. I am getting quite uneasy about him,\n", + "wakeful myself. Thank God, Lucy’s health keeps up. Mr. Holmwood has been\n", + "suddenly called to Ring to see his father, who has been taken seriously\n", + "_3 August._--Another week gone, and no news from Jonathan, not even to\n", + "Mr. Hawkins, from whom I have heard. Oh, I do hope he is not ill. He\n", + "_6 August._--Another three days, and no news. This suspense is getting\n", + "feel easier; but no one has heard a word of Jonathan since that last\n", + "letter. I must only pray to God for patience. Lucy is more excitable\n", + "hidden in thick clouds, high over Kettleness. Everything is grey--except\n", + "Dark figures are on the beach here and there, sometimes half shrouded in\n", + "the mist, and seem “men like trees walking.” The fishing-boats are\n", + "the harbour, bending to the scuppers. Here comes old Mr. Swales. He is\n", + "own heart a bit. But, Lord love ye, miss, I ain’t afraid of dyin’, not a\n", + "expect; and I’m so nigh it that the Aud Man is already whettin’ his\n", + "once; the chafts will wag as they be used to. Some day soon the Angel of\n", + "Death will sound his trumpet for me. But don’t ye dooal an’ greet, my\n", + "cried suddenly. “There’s something in that wind and in the hoast beyont\n", + "comes!” He held up his arms devoutly, and raised his hat. His mouth\n", + "“I can’t make her out,” he said; “she’s a Russian, by the look of her;\n", + "run up north in the open, or to put in here. Look there again! She is\n", + "CHAPTER VII\n", + "CUTTING FROM “THE DAILYGRAPH,” 8 AUGUST\n", + "(_Pasted in Mina Murray’s Journal._)\n", + "From a Correspondent.\n", + "_Whitby_.\n", + "One of the greatest and suddenest storms on record has just been\n", + "August. Saturday evening was as fine as was ever known, and the great\n", + "body of holiday-makers laid out yesterday for visits to Mulgrave Woods,\n", + "Robin Hood’s Bay, Rig Mill, Runswick, Staithes, and the various trips in\n", + "the neighbourhood of Whitby. The steamers _Emma_ and _Scarborough_ made\n", + "“tripping” both to and from Whitby. The day was unusually fine till the\n", + "afternoon, when some of the gossips who frequent the East Cliff\n", + "language is ranked “No. 2: light breeze.” The coastguard on duty at once\n", + "kept watch on weather signs from the East Cliff, foretold in an emphatic\n", + "mass of Kettleness, standing boldly athwart the western sky, its\n", + "sketches of the “Prelude to the Great Storm” will grace the R. A. and R.\n", + "I. walls in May next. More than one captain made up his mind then and\n", + "The wind fell away entirely during the evening, and at midnight there\n", + "“As idle as a painted ship upon a painted ocean.”\n", + "Shortly before ten o’clock the stillness of the air grew quite\n", + "band on the pier, with its lively French air, was like a discord in the\n", + "Then without warning the tempest broke. With a rapidity which, at the\n", + "White-crested waves beat madly on the level sands and rushed up the\n", + "of Whitby Harbour. The wind roared like thunder, and blew with such\n", + "Some of the scenes thus revealed were of immeasurable grandeur and of\n", + "the white wings of a storm-tossed sea-bird. On the summit of the East\n", + "Cliff the new searchlight was ready for experiment, but had not yet been\n", + "Once or twice its service was most effective, as when a fishing-boat,\n", + "Before long the searchlight discovered some distance away a schooner\n", + "if it was only in hell.” Then came another rush of sea-fog, greater than\n", + "mouth across the East Pier, where the shock was expected, and men waited\n", + "found the harbour, unsteered save by the hand of a dead man! However,\n", + "storms into the south-east corner of the pier jutting under the East\n", + "Cliff, known locally as Tate Hill Pier.\n", + "There was of course a considerable concussion as the vessel drove up on\n", + "hangs over the laneway to the East Pier so steeply that some of the flat\n", + "the Whitby vernacular--actually project over where the sustaining cliff\n", + "It so happened that there was no one at the moment on Tate Hill Pier, as\n", + "round from the West Cliff by the Drawbridge to Tate Hill Pier, but your\n", + "When I arrived, however, I found already assembled on the pier a crowd,\n", + "It was no wonder that the coastguard was surprised, or even awed, for\n", + "state of things, and a doctor--Surgeon J. M. Caffyn, of 33, East Elliot\n", + "Place--who came immediately after me, declared, after making\n", + "complications, later on, in the Admiralty Court; for coastguards cannot\n", + "noble as that of the young Casabianca--and placed in the mortuary to\n", + "Already the sudden storm is passing, and its fierceness is abating;\n", + "the Yorkshire wolds. I shall send, in time for your next issue, further\n", + "_Whitby_\n", + "_9 August._--The sequel to the strange arrival of the derelict in the\n", + "turns out that the schooner is a Russian from Varna, and is called the\n", + "_Demeter_. She is almost entirely in ballast of silver sand, with only a\n", + "This cargo was consigned to a Whitby solicitor, Mr. S. F. Billington, of\n", + "7, The Crescent, who this morning went aboard and formally took\n", + "possession of the goods consigned to him. The Russian consul, too,\n", + "the strange coincidence; the officials of the Board of Trade have been\n", + "S. P. C. A., which is very strong in Whitby, have tried to befriend the\n", + "mastiff belonging to a coal merchant close to Tate Hill Pier, was found\n", + "_Later._--By the kindness of the Board of Trade inspector, I have been\n", + "permitted to look over the log-book of the _Demeter_, which was in order\n", + "dictation of a clerk of the Russian consul, who kindly translated for\n", + "LOG OF THE “DEMETER.”\n", + "_Varna to Whitby._\n", + "_Written 18 July, things so strange happening, that I shall keep\n", + "On 6 July we finished taking in cargo, silver sand and boxes of earth.\n", + "At noon set sail. East wind, fresh. Crew, five hands ... two mates,\n", + "On 11 July at dawn entered Bosphorus. Boarded by Turkish Customs\n", + "On 12 July through Dardanelles. More Customs officers and flagboat of\n", + "quick. Want us off soon. At dark passed into Archipelago.\n", + "On 13 July passed Cape Matapan. Crew dissatisfied about something.\n", + "Seemed scared, but would not speak out.\n", + "On 14 July was somewhat anxious about crew. Men all steady fellows, who\n", + "On 16 July mate reported in the morning that one of crew, Petrofsky, was\n", + "night; was relieved by Abramoff, but did not go to bunk. Men more\n", + "On 17 July, yesterday, one of the men, Olgaren, came to my cabin, and in\n", + "He was in a panic of superstitious fear, and I am afraid the panic may\n", + "Later in the day I got together the whole crew, and told them, as they\n", + "_22 July_.--Rough weather last three days, and all hands busy with\n", + "Mate cheerful again, and all on good terms. Praised men for work in bad\n", + "weather. Passed Gibralter and out through Straits. All well.\n", + "_24 July_.--There seems some doom over this ship. Already a hand short,\n", + "and entering on the Bay of Biscay with wild weather ahead, and yet last\n", + "_28 July_.--Four days in hell, knocking about in a sort of maelstrom,\n", + "Wind abating; seas still terrific, but feel them less, as ship is\n", + "_29 July_.--Another tragedy. Had single watch to-night, as crew too\n", + "_30 July_.--Last night. Rejoiced we are nearing England. Weather fine,\n", + "_1 August_.--Two days of fog, and not a sail sighted. Had hoped when in\n", + "the English Channel to be able to signal for help or get in somewhere.\n", + "Not having power to work sails, have to run before wind. Dare not lower,\n", + "Russian, he Roumanian.\n", + "_2 August, midnight_.--Woke up from few minutes’ sleep by hearing a cry,\n", + "watch. One more gone. Lord, help us! Mate says we must be past Straits\n", + "of Dover, as in a moment of fog lifting he saw North Foreland, just as\n", + "he heard the man cry out. If so we are now off in the North Sea, and\n", + "only God can guide us in the fog, which seems to move with us; and God\n", + "_3 August_.--At midnight I went to relieve the man at the wheel, and\n", + "ear, as though fearing the very air might hear: “_It_ is here; I know\n", + "it, now. On the watch last night I saw It, like a man, tall and thin,\n", + "It, and gave It my knife; but the knife went through It, empty as the\n", + "air.” And as he spoke he took his knife and drove it savagely into\n", + "space. Then he went on: “But It is here, and I’ll find It. It is in the\n", + "see. You work the helm.” And, with a warning look and his finger on his\n", + "write these notes. I can only trust in God and wait till the fog clears.\n", + "Then, if I can’t steer to any harbour with the wind that is, I shall cut\n", + "It is nearly all over now. Just as I was beginning to hope that the mate\n", + "his face convulsed with fear. “Save me! save me!” he cried, and then\n", + "a steady voice he said: “You had better come too, captain, before it is\n", + "too late. _He_ is there. I know the secret now. The sea will save me\n", + "from Him, and it is all that is left!” Before I could say a word, or\n", + "followed them himself. God help me! How am I to account for all these\n", + "horrors when I get to port? _When_ I get to port! Will that ever be?\n", + "_4 August._--Still fog, which the sunrise cannot pierce. I know there is\n", + "the dimness of the night I saw It--Him! God forgive me, but the mate was\n", + "them I shall tie that which He--It!--dare not touch; and then, come good\n", + "growing weaker, and the night is coming on. If He can look me in the\n", + "and the Blessed Virgin and the saints help a poor ignorant soul trying\n", + "Of course the verdict was an open one. There is no evidence to adduce;\n", + "arranged that his body is to be taken with a train of boats up the Esk\n", + "for a piece and then brought back to Tate Hill Pier and up the abbey\n", + "No trace has ever been found of the great dog; at which there is much\n", + "_Mina Murray’s Journal._\n", + "_8 August._--Lucy was very restless all night, and I, too, could not\n", + "like a distant gun. Strangely enough, Lucy did not wake; but she got up\n", + "Early in the morning we both got up and went down to the harbour to see\n", + "felt glad that Jonathan was not on the sea last night, but on land. But,\n", + "oh, is he on land or sea? Where is he, and how? I am getting fearfully\n", + "_10 August._--The funeral of the poor sea-captain to-day was most\n", + "was carried by captains all the way from Tate Hill Pier up to the\n", + "the cortège of boats went up the river to the Viaduct and came down\n", + "The poor fellow was laid to rest quite near our seat so that we stood on\n", + "it when the time came and saw everything. Poor Lucy seemed much upset.\n", + "She was restless and uneasy all the time, and I cannot but think that\n", + "cause in that poor old Mr. Swales was found dead this morning on our\n", + "dear old man! Perhaps he had seen Death with his dying eyes! Lucy is so\n", + "The dog is always with him. They are both quiet persons, and I never saw\n", + "shall take her for a long walk by the cliffs to Robin Hood’s Bay and\n", + "CHAPTER VIII\n", + "MINA MURRAY’S JOURNAL\n", + "_Same day, 11 o’clock p. m._--Oh, but I am tired! If it were not that I\n", + "and give us a fresh start. We had a capital “severe tea” at Robin Hood’s\n", + "Bay in a sweet little old-fashioned inn, with a bow-window right over\n", + "shocked the “New Woman” with our appetites. Men are more tolerant, bless\n", + "them! Then we walked home with some, or rather many, stoppages to rest,\n", + "The young curate came in, however, and Mrs. Westenra asked him to stay\n", + "looks, oh, so sweet. If Mr. Holmwood fell in love with her seeing her\n", + "Some of the “New Women” writers will some day start an idea that men and\n", + "accepting. But I suppose the New Woman won’t condescend in future to\n", + "of it, too! There’s some consolation in that. I am so happy to-night,\n", + "because dear Lucy seems better. I really believe she has turned the\n", + "quite happy if I only knew if Jonathan.... God bless and keep him.\n", + "_11 August, 3 a. m._--Diary again. No sleep now, so I may as well write.\n", + "Suddenly I became broad awake, and sat up, with a horrible sense of fear\n", + "so I could not see Lucy’s bed; I stole across and felt for her. The bed\n", + "Dressing-gown and dress were both in their places. “Thank God,” I said\n", + "downstairs and looked in the sitting-room. Not there! Then I looked in\n", + "Lucy must have gone out as she was. There was no time to think of what\n", + "Crescent, and there was not a soul in sight. I ran along the North\n", + "Terrace, but could see no sign of the white figure which I expected. At\n", + "the edge of the West Cliff above the pier I looked across the harbour to\n", + "the East Cliff, in the hope or fear--I don’t know which--of seeing Lucy\n", + "nothing, as the shadow of a cloud obscured St. Mary’s Church and all\n", + "fish-market to the bridge, which was the only way to reach the East\n", + "Cliff. The town seemed as dead, for not a soul did I see; I rejoiced\n", + "that it was so, for I wanted no witness of poor Lucy’s condition. The\n", + "half-reclining white figure. I called in fright, “Lucy! Lucy!” and\n", + "that I could see Lucy half reclining with her head lying over the back\n", + "When I bent over her I could see that she was still asleep. Her lips\n", + "Lucy always wakes prettily, and even at such a time, when her body must\n", + "passed along, the gravel hurt my feet, and Lucy noticed me wince. She\n", + "However, when we got to the pathway outside the churchyard, where there\n", + "Fortune favoured us, and we got home without meeting a soul. Once we saw\n", + "Scotland. My heart beat so loud all the time that sometimes I thought I\n", + "should faint. I was filled with anxiety about Lucy, not only for her\n", + "_Same day, noon._--All goes well. Lucy slept till I woke her and seemed\n", + "_Same day, night._--We passed a happy day. The air was clear, and the\n", + "sun bright, and there was a cool breeze. We took our lunch to Mulgrave\n", + "Woods, Mrs. Westenra driving by the road and Lucy and I walking by the\n", + "Jonathan been with me. But there! I must only be patient. In the evening\n", + "we strolled in the Casino Terrace, and heard some good music by Spohr\n", + "and Mackenzie, and went to bed early. Lucy seems more restful than she\n", + "_12 August._--My expectations were wrong, for twice during the night I\n", + "was wakened by Lucy trying to get out. She seemed, even in her sleep, to\n", + "and told me all about Arthur. I told her how anxious I was about\n", + "Jonathan, and then she tried to comfort me. Well, she succeeded\n", + "_13 August._--Another quiet day, and to bed with the key on my wrist as\n", + "before. Again I awoke in the night, and found Lucy sitting up in bed,\n", + "from the window Lucy had lain down again, and was sleeping peacefully.\n", + "She did not stir again all night.\n", + "_14 August._--On the East Cliff, reading and writing all day. Lucy seems\n", + "dinner, and had come to the top of the steps up from the West Pier and\n", + "down in the sky, was just dropping behind Kettleness; the red light was\n", + "thrown over on the East Cliff and the old abbey, and seemed to bathe\n", + "suddenly Lucy murmured as if to herself:--\n", + "“His red eyes again! They are just the same.” It was such an odd\n", + "slewed round a little, so as to see Lucy well without seeming to stare\n", + "sunlight was shining on the windows of St. Mary’s Church behind our\n", + "called Lucy’s attention to the peculiar effect, and she became herself\n", + "sadness, for I was thinking of Jonathan. When coming home--it was then\n", + "Crescent was in shadow, everything could be well seen--I threw a glance\n", + "up at our window, and saw Lucy’s head leaning out. I thought that\n", + "on the window. There distinctly was Lucy with her head lying up against\n", + "She looks so sweet as she sleeps; but she is paler than is her wont, and\n", + "_15 August._--Rose later than usual. Lucy was languid and tired, and\n", + "Arthur’s father is better, and wants the marriage to come off soon. Lucy\n", + "in the day she told me the cause. She is grieved to lose Lucy as her\n", + "protect her. Poor dear, sweet lady! She confided to me that she has got\n", + "her death-warrant. She has not told Lucy, and made me promise secrecy;\n", + "the dreadful night of Lucy’s sleep-walking.\n", + "_17 August._--No diary for two whole days. I have not had the heart to\n", + "No news from Jonathan, and Lucy seems to be growing weaker, whilst her\n", + "mother’s hours are numbering to a close. I do not understand Lucy’s\n", + "They are still open, and, if anything, larger than before, and the\n", + "_Letter, Samuel F. Billington & Son, Solicitors, Whitby, to Messrs.\n", + "Carter, Paterson & Co., London._\n", + "“_17 August._\n", + "“Dear Sirs,--\n", + "“Herewith please receive invoice of goods sent by Great Northern\n", + "Railway. Same are to be delivered at Carfax, near Purfleet, immediately\n", + "on receipt at goods station King’s Cross. The house is at present empty,\n", + "“You will please deposit the boxes, fifty in number, which form the\n", + "goods leave by the train at 9:30 to-night, and will be due at King’s\n", + "Cross at 4:30 to-morrow afternoon. As our client wishes the delivery\n", + "at King’s Cross at the time named and forthwith conveying the goods to\n", + "Should the charge be less than this amount, you can return balance; if\n", + "“Pray do not take us as exceeding the bounds of business courtesy in\n", + "_“We are, dear Sirs,\n", + "“Faithfully yours,\n", + "“SAMUEL F. BILLINGTON & SON.”_\n", + "_Letter, Messrs. Carter, Paterson & Co., London, to Messrs. Billington &\n", + "Son, Whitby._\n", + "“_21 August._\n", + "“Dear Sirs,--\n", + "“We beg to acknowledge £10 received and to return cheque £1 17s. 9d,\n", + "“We are, dear Sirs,\n", + "“Yours respectfully.\n", + "“_Pro_ CARTER, PATERSON & CO.”\n", + "_Mina Murray’s Journal._\n", + "_18 August._--I am happy to-day, and write sitting on the seat in the\n", + "“My poor little feet didn’t make much noise then! I daresay poor old Mr.\n", + "Swales would have told me that it was because I didn’t want to wake up\n", + "Geordie.” As she was in such a communicative humour, I asked her if she\n", + "look came into her forehead, which Arthur--I call him Arthur from her\n", + "I seem to remember that once the West Lighthouse was right under me,\n", + "Then she began to laugh. It seemed a little uncanny to me, and I\n", + "subjects, and Lucy was like her old self again. When we got home the\n", + "_19 August._--Joy, joy, joy! although not all joy. At last, news of\n", + "Jonathan. The dear fellow has been ill; that is why he did not write. I\n", + "morning and go over to Jonathan, and to help to nurse him if necessary,\n", + "we were to be married out there. I have cried over the good Sister’s\n", + "Jonathan, and must be next my heart, for he is _in_ my heart. My journey\n", + "dress; Lucy will bring my trunk to London and keep it till I send for\n", + "to Jonathan, my husband. The letter that he has seen and touched must\n", + "_Letter, Sister Agatha, Hospital of St. Joseph and Ste. Mary,\n", + "Buda-Pesth, to Miss Wilhelmina Murray._\n", + "“_12 August._\n", + "“Dear Madam,--\n", + "“I write by desire of Mr. Jonathan Harker, who is himself not strong\n", + "enough to write, though progressing well, thanks to God and St. Joseph\n", + "and Ste. Mary. He has been under our care for nearly six weeks,\n", + "and to say that by this post I write for him to Mr. Peter Hawkins,\n", + "Exeter, to say, with his dutiful respects, that he is sorry for his\n", + "“Believe me,\n", + "“Yours, with sympathy and all blessings,\n", + "“SISTER AGATHA.\n", + "“P. S.--My patient being asleep, I open this to let you know something\n", + "wife. All blessings to you both! He has had some fearful shock--so says\n", + "could understand. He came in the train from Klausenburg, and the guard\n", + "he was English, they gave him a ticket for the furthest station on the\n", + "“Be assured that he is well cared for. He has won all hearts by his\n", + "safety’s sake. There are, I pray God and St. Joseph and Ste. Mary, many,\n", + "_Dr. Seward’s Diary._\n", + "_19 August._--Strange and sudden change in Renfield last night. About\n", + "“I don’t want to talk to you: you don’t count now; the Master is at\n", + "The attendant thinks it is some sudden form of religious mania which has\n", + "he himself is God. These infinitesimal distinctions between man and man\n", + "are too paltry for an Omnipotent Being. How these madmen give themselves\n", + "away! The real God taketh heed lest a sparrow fall; but the God created\n", + "For half an hour or more Renfield kept getting excited in greater and\n", + "“Bother them all! I don’t care a pin about them.”\n", + "“What?” I said. “You don’t mean to tell me you don’t care about\n", + "spiders?” (Spiders at present are his hobby and the note-book is filling\n", + "up with columns of small figures.) To this he answered enigmatically:--\n", + "“The bride-maidens rejoice the eyes that wait the coming of the bride;\n", + "He would not explain himself, but remained obstinately seated on his bed\n", + "I am weary to-night and low in spirits. I cannot but think of Lucy, and\n", + "the modern Morpheus--C_{2}HCl_{3}O. H_{2}O! I must be careful not to let\n", + "Lucy, and I shall not dishonour her by mixing the two. If need be,\n", + "_Later._--Glad I made the resolution; gladder that I kept to it. I had\n", + "night-watchman came to me, sent up from the ward, to say that Renfield\n", + "He said he had seen him not ten minutes before, seemingly asleep in his\n", + "The attendant thought it would be more useful to watch where he should\n", + "immediately and follow me into the grounds of Carfax, in case our friend\n", + "dropped down on the other side. I could see Renfield’s figure just\n", + "is upon him! After a few minutes, however, I could see that he did not\n", + "“I am here to do Your bidding, Master. I am Your slave, and You will\n", + "reward me, for I shall be faithful. I have worshipped You long and afar\n", + "off. Now that You are near, I await Your commands, and You will not pass\n", + "me by, will You, dear Master, in Your distribution of good things?”\n", + "He _is_ a selfish old beggar anyhow. He thinks of the loaves and fishes\n", + "even when he believes he is in a Real Presence. His manias make a\n", + "He is immensely strong, for he was more like a wild beast than a man. I\n", + "rate. Jack Sheppard himself couldn’t get free from the strait-waistcoat\n", + "Just now he spoke coherent words for the first time:--\n", + "“I shall be patient, Master. It is coming--coming--coming!”\n", + "So I took the hint, and came too. I was too excited to sleep, but this\n", + "CHAPTER IX\n", + "_Letter, Mina Harker to Lucy Westenra._\n", + "“_Buda-Pesth, 24 August._\n", + "“My dearest Lucy,--\n", + "parted at the railway station at Whitby. Well, my dear, I got to Hull\n", + "all right, and caught the boat to Hamburg, and then the train on here. I\n", + "knew I was coming to Jonathan, and, that as I should have to do some\n", + "to recall it. Sister Agatha, who is a good creature and a born nurse,\n", + "secrets of God, and that if a nurse through her vocation should hear\n", + "_my_ being jealous about Jonathan! And yet, my dear, let me whisper, I\n", + "“When he woke he asked me for his coat, as he wanted to get something\n", + "from the pocket; I asked Sister Agatha, and she brought all his things.\n", + "Then he called me back, and when I came he had his hand over the\n", + "“‘Wilhelmina’--I knew then that he was in deadly earnest, for he has\n", + "know it. I want to take up my life here, with our marriage.’ For, my\n", + "complete. ‘Are you willing, Wilhelmina, to share my ignorance? Here is\n", + "the bitter hours, asleep or awake, sane or mad, recorded here.’ He fell\n", + "have asked Sister Agatha to beg the Superior to let our wedding be this\n", + "“She has come and told me that the chaplain of the English mission\n", + "after as Jonathan awakes....\n", + "“Lucy, the time has come and gone. I feel very solemn, but very, very\n", + "words seemed to choke me. The dear sisters were so kind. Please God, I\n", + "chaplain and the sisters had left me alone with my husband--oh, Lucy, it\n", + "Lucy, it was the first time he took _his wife’s_ hand, and said that it\n", + "“Well, my dear, what could I say? I could only tell him that I was the\n", + "“Lucy dear, do you know why I tell you all this? It is not only because\n", + "please Almighty God, your life may be all it promises: a long day of\n", + "once, and, perhaps, write you very soon again. I must stop, for Jonathan\n", + "“Your ever-loving\n", + "“MINA HARKER.”\n", + "_Letter, Lucy Westenra to Mina Harker._\n", + "“_Whitby, 30 August._\n", + "“My dearest Mina,--\n", + "“Oceans of love and millions of kisses, and may you soon be in your own\n", + "stay with us here. The strong air would soon restore Jonathan; it has\n", + "fat. By the way, I forgot to tell you that Arthur is here. We have such\n", + "So no more just at present from your loving\n", + "“LUCY.\n", + "“P. S.--Mother sends her love. She seems better, poor dear.\n", + "“P. P. S.--We are to be married on 28 September.”\n", + "_Dr. Seward’s Diary._\n", + "_20 August._--The case of Renfield grows even more interesting. He has\n", + "For the first week after his attack he was perpetually violent. Then one\n", + "himself: “Now I can wait; now I can wait.” The attendant came to tell\n", + "“They think I could hurt you! Fancy _me_ hurting _you_! The fools!”\n", + "It was soothing, somehow, to the feelings to find myself dissociated\n", + "After a while I left him. The attendant tells me that he was quiet\n", + "Happy thought! We shall to-night play sane wits against mad ones. He\n", + "_23 August._--“The unexpected always happens.” How well Disraeli knew\n", + "The unexpected again! I am called; the patient has once more escaped.\n", + "_Later._--Another night adventure. Renfield artfully waited until the\n", + "Again he went into the grounds of the deserted house, and we found him\n", + "“You needn’t tie me; I shall go quietly!” Without trouble we came back\n", + "_Lucy Westenra’s Diary_\n", + "_Hillingham, 24 August._--I must imitate Mina, and keep writing things\n", + "seemed to be dreaming again just as I was at Whitby. Perhaps it is the\n", + "weak and worn out. When Arthur came to lunch he looked quite grieved\n", + "_25 August._--Another bad night. Mother did not seem to take to my\n", + "get air enough. I shall try to cheer up when Arthur comes, or else I\n", + "_Letter, Arthur Holmwood to Dr. Seward._\n", + "“_Albemarle Hotel, 31 August._\n", + "“My dear Jack,--\n", + "spoken--disease of the heart--though poor Lucy does not know it yet. I\n", + "Hillingham to-morrow, two o’clock, so as not to arouse any suspicion in\n", + "Mrs. Westenra, and after lunch Lucy will take an opportunity of being\n", + "“ARTHUR.”\n", + "_Telegram, Arthur Holmwood to Seward._\n", + "“_1 September._\n", + "“Am summoned to see my father, who is worse. Am writing. Write me fully\n", + "by to-night’s post to Ring. Wire me if necessary.”\n", + "_Letter from Dr. Seward to Arthur Holmwood._\n", + "“_2 September._\n", + "“My dear old fellow,--\n", + "“With regard to Miss Westenra’s health I hasten to let you know at once\n", + "“I found Miss Westenra in seemingly gay spirits. Her mother was present,\n", + "We lunched alone, and as we all exerted ourselves to be cheerful, we\n", + "amongst us. Then Mrs. Westenra went to lie down, and Lucy was left with\n", + "matter in a word. ‘Tell Arthur everything you choose. I do not care for\n", + "myself, but all for him!’ So I am quite free.\n", + "used to walk in her sleep, and that when in Whitby the habit came back,\n", + "and that once she walked out in the night and went to East Cliff, where\n", + "Miss Murray found her; but she assures me that of late the habit has not\n", + "have written to my old friend and master, Professor Van Helsing, of\n", + "Amsterdam, who knows as much about obscure diseases as any one in the\n", + "relations to Miss Westenra. This, my dear fellow, is in obedience to\n", + "her. Van Helsing would, I know, do anything for me for a personal\n", + "him. I have asked him to come at once. I shall see Miss Westenra\n", + "to-morrow again. She is to meet me at the Stores, so that I may not\n", + "“Yours always,\n", + "“JOHN SEWARD.”\n", + "_Letter, Abraham Van Helsing, M. D., D. Ph., D. Lit., etc., etc., to Dr.\n", + "Seward._\n", + "“_2 September._\n", + "“My good Friend,--\n", + "“When I have received your letter I am already coming to you. By good\n", + "Have then rooms for me at the Great Eastern Hotel, so that I may be near\n", + "if it must. Till then good-bye, my friend John.\n", + "“VAN HELSING.”\n", + "_Letter, Dr. Seward to Hon. Arthur Holmwood._\n", + "“_3 September._\n", + "“My dear Art,--\n", + "“Van Helsing has come and gone. He came on with me to Hillingham, and\n", + "found that, by Lucy’s discretion, her mother was lunching out, so that\n", + "we were alone with her. Van Helsing made a very careful examination of\n", + "trust to me in the matter, he said: ‘You must tell him all you think.\n", + "Tell him what I think, if you can guess it, if you will. Nay, I am not\n", + "return to Amsterdam. He would not give me any further clue. You must not\n", + "be angry with me, Art, because his very reticence means that all his\n", + "_The Daily Telegraph_. He seemed not to notice, but remarked that the\n", + "smuts in London were not quite so bad as they used to be when he was a\n", + "“Well, as to the visit. Lucy was more cheerful than on the day I first\n", + "struggle for it. I believe Van Helsing saw it, too, for I saw the quick\n", + "geniality that I could see poor Lucy’s pretense of animation merge into\n", + "“‘My dear young miss, I have the so great pleasure because you are so\n", + "ghastly pale. To them I say: “Pouf!”’ And he snapped his fingers at me\n", + "and went on: ‘But you and I shall show them how wrong they are. How can\n", + "of a young ladies? He has his madmans to play with, and to bring them\n", + "young ladies! He has no wife nor daughter, and the young do not tell\n", + "And yet there is cause; there is always cause for everything. I must go\n", + "“As I tell you, he would not say a word more, even when we were alone.\n", + "And so now, Art, you know all I know. I shall keep stern watch. I trust\n", + "come at once to Lucy; so do not be over-anxious unless you hear from\n", + "_Dr. Seward’s Diary._\n", + "_4 September._--Zoöphagous patient still keeps up our interest in him.\n", + "He had only one outburst and that was yesterday at an unusual time. Just\n", + "_Later._--Another change in my patient. At five o’clock I looked in on\n", + "“All over! all over! He has deserted me. No hope for me now unless I do\n", + "it for myself!” Then suddenly turning to me in a resolute way, he said:\n", + "“Doctor, won’t you be very good to me and let me have a little more\n", + "“And the flies?” I said.\n", + "“Yes! The flies like it, too, and I like the flies; therefore I like\n", + "it.” And there are people who know so little as to think that madmen do\n", + "_Midnight._--Another change in him. I had been to see Miss Westenra,\n", + "beauty of a sunset over London, with its lurid lights and inky shadows\n", + "me, so I asked him: “Are you not going to keep flies any more?”\n", + "“No,” said he; “I am sick of all that rubbish!” He certainly is a\n", + "We shall see.\n", + "_Telegram, Seward, London, to Van Helsing, Amsterdam._\n", + "“_4 September._--Patient still better to-day.”\n", + "_Telegram, Seward, London, to Van Helsing, Amsterdam._\n", + "“_5 September._--Patient greatly improved. Good appetite; sleeps\n", + "_Telegram, Seward, London, to Van Helsing, Amsterdam._\n", + "“_6 September._--Terrible change for the worse. Come at once; do not\n", + "lose an hour. I hold over telegram to Holmwood till have seen you.”\n", + "CHAPTER X\n", + "_Letter, Dr. Seward to Hon. Arthur Holmwood._\n", + "“_6 September._\n", + "“My dear Art,--\n", + "“My news to-day is not so good. Lucy this morning had gone back a bit.\n", + "There is, however, one good thing which has arisen from it; Mrs.\n", + "Westenra was naturally anxious concerning Lucy, and has consulted me\n", + "her that my old master, Van Helsing, the great specialist, was coming to\n", + "shock to her would mean sudden death, and this, in Lucy’s weak\n", + "difficulties, all of us, my poor old fellow; but, please God, we shall\n", + "“Yours ever,\n", + "“JOHN SEWARD.”\n", + "_Dr. Seward’s Diary._\n", + "_7 September._--The first thing Van Helsing said to me when we met at\n", + "Liverpool Street was:--\n", + "“Have you said anything to our young friend the lover of her?”\n", + "“No,” I said. “I waited till I had seen you, as I said in my telegram. I\n", + "wrote him a letter simply telling him that you were coming, as Miss\n", + "Westenra was not so well, and that I should let him know if need be.”\n", + "“Right, my friend,” he said, “quite right! Better he not know as yet;\n", + "shall know all. And, my good friend John, let me caution you. You deal\n", + "as you deal discreetly with your madmen, so deal with God’s madmen,\n", + "and breed. You and I shall keep as yet what we know here, and here.” He\n", + "“Why not now?” I asked. “It may do some good; we may arrive at some\n", + "decision.” He stopped and looked at me, and said:--\n", + "“My friend John, when the corn is grown, even before it has\n", + "and say to you: ‘Look! he’s good corn; he will make good crop when the\n", + "he used long ago to do at lectures, and said: “The good husbandman tell\n", + "the work of their life. See you now, friend John? I have sown my corn,\n", + "and Nature has her work to do in making it sprout; if he sprout at all,\n", + "there’s some promise; and I wait till the ear begins to swell.” He broke\n", + "“You were always a careful student, and your case-book was ever more\n", + "Even if you have not kept the good practise, let me tell you that this\n", + "Hereafter it may be of interest to you to see how true you guess. We\n", + "When I described Lucy’s symptoms--the same as before, but infinitely\n", + "Mrs. Westenra met us. She was alarmed, but not nearly so much as I\n", + "something like the way Dame Nature gathers round a foreign body an\n", + "a rule that she should not be present with Lucy or think of her illness\n", + "I saw again the hand of Nature fighting for life. Van Helsing and I were\n", + "shown up to Lucy’s room. If I was shocked when I saw her yesterday, I\n", + "hear. Van Helsing’s face grew set as marble, and his eyebrows converged\n", + "Van Helsing beckoned to me, and we went gently out of the room. The\n", + "closed the door. “My God!” he said; “this is dreadful. There is no time\n", + "“I am younger and stronger, Professor. It must be me.”\n", + "“Then get ready at once. I will bring up my bag. I am prepared.”\n", + "door, and Arthur was stepping quickly in. He rushed up to me, saying in\n", + "“Jack, I was so anxious. I read between the lines of your letter, and\n", + "myself. Is not that gentleman Dr. Van Helsing? I am so thankful to you,\n", + "sir, for coming.” When first the Professor’s eye had lit upon him he had\n", + "“Sir, you have come in time. You are the lover of our dear miss. She is\n", + "bad, very, very bad. Nay, my child, do not go like that.” For he\n", + "suddenly grew pale and sat down in a chair almost fainting. “You are to\n", + "“What can I do?” asked Arthur hoarsely. “Tell me, and I shall do it. My\n", + "her.” The Professor has a strongly humorous side, and I could from old\n", + "“My young sir, I do not ask so much as that--not the last!”\n", + "“What shall I do?” There was fire in his eyes, and his open nostril\n", + "quivered with intent. Van Helsing slapped him on the shoulder. “Come!”\n", + "he said. “You are a man, and it is a man we want. You are better than\n", + "me, better than my friend John.” Arthur looked bewildered, and the\n", + "Professor went on by explaining in a kindly way:--\n", + "“Young miss is bad, very bad. She wants blood, and blood she must have\n", + "or die. My friend John and I have consulted; and we are about to perform\n", + "the more young and strong than me”--here Arthur took my hand and wrung\n", + "so calm and our blood not so bright than yours!” Arthur turned to him\n", + "“If you only knew how gladly I would die for her you would\n", + "He stopped, with a sort of choke in his voice.\n", + "“Good boy!” said Van Helsing. “In the not-so-far-off you will be happy\n", + "must leave at my sign. Say no word to Madame; you know how it is with\n", + "her! There must be no shock; any knowledge of this would be one. Come!”\n", + "We all went up to Lucy’s room. Arthur by direction remained outside.\n", + "Lucy turned her head and looked at us, but said nothing. She was not\n", + "to us; that was all. Van Helsing took some things from his bag and laid\n", + "“Now, little miss, here is your medicine. Drink it off, like a good\n", + "child. See, I lift you so that to swallow is easy. Yes.” She had made\n", + "It astonished me how long the drug took to act. This, in fact, marked\n", + "its potency; and she fell into a deep sleep. When the Professor was\n", + "satisfied he called Arthur into the room, and bade him strip off his\n", + "coat. Then he added: “You may take that one little kiss whiles I bring\n", + "over the table. Friend John, help to me!” So neither of us looked whilst\n", + "Van Helsing turning to me, said:\n", + "“He is so young and strong and of blood so pure that we need not\n", + "Then with swiftness, but with absolute method, Van Helsing performed the\n", + "back to poor Lucy’s cheeks, and through Arthur’s growing pallor the joy\n", + "anxious, for the loss of blood was telling on Arthur, strong man as he\n", + "was. It gave me an idea of what a terrible strain Lucy’s system must\n", + "have undergone that what weakened Arthur only partially restored her.\n", + "But the Professor’s face was set, and he stood watch in hand and with\n", + "his eyes fixed now on the patient and now on Arthur. I could hear my own\n", + "heart beat. Presently he said in a soft voice: “Do not stir an instant.\n", + "It is enough. You attend him; I will look to her.” When all was over I\n", + "could see how much Arthur was weakened. I dressed the wound and took his\n", + "arm to bring him away, when Van Helsing spoke without turning round--the\n", + "“The brave lover, I think, deserve another kiss, which he shall have\n", + "presently.” And as he had now finished his operation, he adjusted the\n", + "could hear the deep hiss of indrawn breath which is one of Van Helsing’s\n", + "me, saying: “Now take down our brave young lover, give him of the port\n", + "When Arthur had gone I went back to the room. Lucy was sleeping gently,\n", + "breast heaved. By the bedside sat Van Helsing, looking at her intently.\n", + "The velvet band again covered the red mark. I asked the Professor in a\n", + "“What do you make of that mark on her throat?”\n", + "“What do you make of it?”\n", + "“Well?” said Van Helsing.\n", + "“Well,” said I, “I can make nothing of it.” The Professor stood up. “I\n", + "must go back to Amsterdam to-night,” he said. “There are books and\n", + "“Shall I have a nurse?” I asked.\n", + "“We are the best nurses, you and I. You keep watch all night; see that\n", + "“May begin?” I said. “What on earth do you mean?”\n", + "“We shall see!” he answered, as he hurried out. He came back a moment\n", + "“Remember, she is your charge. If you leave her, and harm befall, you\n", + "_Dr. Seward’s Diary--continued._\n", + "_8 September._--I sat up all night with Lucy. The opiate worked itself\n", + "absolute prostration which she had undergone. When I told Mrs. Westenra\n", + "that Dr. Van Helsing had directed that I should sit up with her she\n", + "“You do not want to go to sleep?”\n", + "“No; I am afraid.”\n", + "“Afraid to go to sleep! Why so? It is the boon we all crave for.”\n", + "“Ah, not if you were like me--if sleep was to you a presage of horror!”\n", + "“A presage of horror! What on earth do you mean?”\n", + "“But, my dear girl, you may sleep to-night. I am here watching you, and\n", + "“Ah, I can trust you!” I seized the opportunity, and said: “I promise\n", + "“You will? Oh, will you really? How good you are to me. Then I will\n", + "sleep!” And almost at the word she gave a deep sigh of relief, and sank\n", + "All night long I watched by her. She never stirred, but slept on and on\n", + "In the early morning her maid came, and I left her in her care and took\n", + "wire to Van Helsing and to Arthur, telling them of the excellent result\n", + "past day and night. A telegram came from Van Helsing at Amsterdam whilst\n", + "I was at dinner, suggesting that I should be at Hillingham to-night, as\n", + "_9 September_.--I was pretty tired and worn out when I got to\n", + "Hillingham. For two nights I had hardly had a wink of sleep, and my\n", + "“No sitting up to-night for you. You are worn out. I am quite well\n", + "excellent port. Then Lucy took me upstairs, and showed me a room next\n", + "her own, where a cozy fire was burning. “Now,” she said, “you must stay\n", + "So, on her renewing her promise to call me if she should want anything,\n", + "_Lucy Westenra’s Diary._\n", + "_9 September._--I feel so happy to-night. I have been so miserably weak,\n", + "a long spell of east wind out of a steel sky. Somehow Arthur feels very,\n", + "eyes and sympathy on ourselves, whilst health and strength give Love\n", + "where my thoughts are. If Arthur only knew! My dear, my dear, your ears\n", + "last night! How I slept, with that dear, good Dr. Seward watching me.\n", + "And to-night I shall not fear to sleep, since he is close at hand and\n", + "within call. Thank everybody for being so good to me! Thank God!\n", + "Good-night, Arthur.\n", + "_Dr. Seward’s Diary._\n", + "_10 September._--I was conscious of the Professor’s hand on my head, and\n", + "“And how is our patient?”\n", + "“Well, when I left her, or rather when she left me,” I answered.\n", + "“Come, let us see,” he said. And together we went into the room.\n", + "The blind was down, and I went over to raise it gently, whilst Van\n", + "Helsing stepped, with his soft, cat-like tread, over to the bed.\n", + "As I raised the blind, and the morning sunlight flooded the room, I\n", + "heard the Professor’s low hiss of inspiration, and knowing its rarity, a\n", + "his exclamation of horror, “Gott in Himmel!” needed no enforcement from\n", + "There on the bed, seemingly in a swoon, lay poor Lucy, more horribly\n", + "corpse after a prolonged illness. Van Helsing raised his foot to stamp\n", + "stood to him, and he put it down again softly. “Quick!” he said. “Bring\n", + "He wetted the poor white lips with it, and together we rubbed palm and\n", + "“It is not too late. It beats, though but feebly. All our work is\n", + "undone; we must begin again. There is no young Arthur here now; I have\n", + "to call on you yourself this time, friend John.” As he spoke, he was\n", + "matter how willingly it be given, is a terrible feeling--Van Helsing\n", + "held up a warning finger. “Do not stir,” he said, “but I fear that with\n", + "of morphia.” He proceeded then, swiftly and deftly, to carry out his\n", + "intent. The effect on Lucy was not bad, for the faint seemed to merge\n", + "The Professor watched me critically. “That will do,” he said. “Already?”\n", + "I remonstrated. “You took a great deal more from Art.” To which he\n", + "“He is her lover, her _fiancé_. You have work, much work, to do for her\n", + "When we stopped the operation, he attended to Lucy, whilst I applied\n", + "“Mind, nothing must be said of this. If our young lover should turn up\n", + "When I came back he looked at me carefully, and then said:--\n", + "“You are not much the worse. Go into the room, and lie on your sofa, and\n", + "and over again how Lucy had made such a retrograde movement, and how\n", + "Lucy slept well into the day, and when she woke she was fairly well and\n", + "strong, though not nearly so much so as the day before. When Van Helsing\n", + "Lucy chatted with me freely, and seemed quite unconscious that anything\n", + "“We owe you so much, Dr. Seward, for all you have done, but you really\n", + "do!” As she spoke, Lucy turned crimson, though it was only momentarily,\n", + "Van Helsing returned in a couple of hours, and presently said to me:\n", + "“Now you go home, and eat much and drink enough. Make yourself strong. I\n", + "In the hall two of the maids came to me, and asked if they or either of\n", + "them might not sit up with Miss Lucy. They implored me to let them; and\n", + "when I said it was Dr. Van Helsing’s wish that either he or I should sit\n", + "I am weak at present, and perhaps because it was on Lucy’s account, that\n", + "_11 September._--This afternoon I went over to Hillingham. Found Van\n", + "Helsing in excellent spirits, and Lucy much better. Shortly after I had\n", + "arrived, a big parcel from abroad came for the Professor. He opened it\n", + "“These are for you, Miss Lucy,” he said.\n", + "“For me? Oh, Dr. Van Helsing!”\n", + "“Yes, my dear, but not for you to play with. These are medicines.” Here\n", + "Lucy made a wry face. “Nay, but they are not to take in a decoction or\n", + "point out to my friend Arthur what woes he may have to endure in seeing\n", + "of Lethe, and of that fountain of youth that the Conquistadores sought\n", + "for in the Floridas, and find him all too late.”\n", + "Whilst he was speaking, Lucy had been examining the flowers and smelling\n", + "“Oh, Professor, I believe you are only putting up a joke on me. Why,\n", + "To my surprise, Van Helsing rose up and said with all his sternness, his\n", + "“No trifling with me! I never jest! There is grim purpose in all I do;\n", + "others if not for your own.” Then seeing poor Lucy scared, as she might\n", + "well be, he went on more gently: “Oh, little miss, my dear, do not fear\n", + "for you. Now sit still awhile. Come with me, friend John, and you shall\n", + "help me deck the room with my garlic, which is all the way from Haarlem,\n", + "where my friend Vanderpool raise herb in his glass-houses all the year.\n", + "We went into the room, taking the flowers with us. The Professor’s\n", + "“Well, Professor, I know you always have a reason for what you do, but\n", + "“Perhaps I am!” he answered quietly as he began to make the wreath which\n", + "Lucy was to wear round her neck.\n", + "We then waited whilst Lucy made her toilet for the night, and when she\n", + "“Take care you do not disturb it; and even if the room feel close, do\n", + "“I promise,” said Lucy, “and thank you both a thousand times for all\n", + "your kindness to me! Oh, what have I done to be blessed with such\n", + "As we left the house in my fly, which was waiting, Van Helsing said:--\n", + "“To-night I can sleep in peace, and sleep I want--two nights of travel,\n", + "He seemed so confident that I, remembering my own confidence two nights\n", + "CHAPTER XI\n", + "_Lucy Westenra’s Diary._\n", + "_12 September._--How good they all are to me. I quite love that dear Dr.\n", + "Van Helsing. I wonder why he was so anxious about these flowers. He\n", + "for me! How blessed are some people, whose lives have no fears, no\n", + "and lying like Ophelia in the play, with “virgin crants and maiden\n", + "There is peace in its smell; I feel sleep coming already. Good-night,\n", + "_Dr. Seward’s Diary._\n", + "_13 September._--Called at the Berkeley and found Van Helsing, as usual,\n", + "Professor took his bag, which he always brings with him now.\n", + "Let all be put down exactly. Van Helsing and I arrived at Hillingham at\n", + "Mrs. Westenra coming out of the morning room. She is always an early\n", + "“You will be glad to know that Lucy is better. The dear child is still\n", + "should disturb her.” The Professor smiled, and looked quite jubilant. He\n", + "“Aha! I thought I had diagnosed the case. My treatment is working,” to\n", + "“You must not take all the credit to yourself, doctor. Lucy’s state this\n", + "“How you do mean, ma’am?” asked the Professor.\n", + "“Well, I was anxious about the dear child in the night, and went into\n", + "She moved off into her boudoir, where she usually breakfasted early. As\n", + "she had spoken, I watched the Professor’s face, and saw it turn ashen\n", + "Then, for the first time in my life, I saw Van Helsing break down. He\n", + "his arms again, as though appealing to the whole universe. “God! God!\n", + "God!” he said. “What have we done, what has this poor thing done, that\n", + "we are so sore beset? Is there fate amongst us still, sent down from the\n", + "pagan world of old, that such things must be, and in such way? This poor\n", + "beset! How are all the powers of the devils against us!” Suddenly he\n", + "jumped to his feet. “Come,” he said, “come, we must see and act. Devils\n", + "all the same.” He went to the hall-door for his bag; and together we\n", + "went up to Lucy’s room.\n", + "Once again I drew up the blind, whilst Van Helsing went towards the bed.\n", + "This time he did not start as he looked on the poor face with the same\n", + "“As I expected,” he murmured, with that hissing inspiration of his which\n", + "warning hand. “No!” he said. “To-day you must operate. I shall provide.\n", + "You are weakened already.” As he spoke he took off his coat and rolled\n", + "Again the operation; again the narcotic; again some return of colour to\n", + "watched whilst Van Helsing recruited himself and rested.\n", + "Presently he took an opportunity of telling Mrs. Westenra that she must\n", + "not remove anything from Lucy’s room without consulting him; that the\n", + "After another hour Lucy waked from her sleep, fresh and bright and\n", + "What does it all mean? I am beginning to wonder if my long habit of life\n", + "_Lucy Westenra’s Diary._\n", + "_17 September._--Four days and nights of peace. I am getting so strong\n", + "however, Dr. Van Helsing has been with me, all this bad dreaming seems\n", + "Haarlem. To-night Dr. Van Helsing is going away, as he has to be for a\n", + "day in Amsterdam. But I need not be watched; I am well enough to be left\n", + "alone. Thank God for mother’s sake, and dear Arthur’s, and for all our\n", + "last night Dr. Van Helsing slept in his chair a lot of the time. I found\n", + "_“The Pall Mall Gazette,” 18 September._\n", + "THE ESCAPED WOLF.\n", + "PERILOUS ADVENTURE OF OUR INTERVIEWER.\n", + "_Interview with the Keeper in the Zoölogical Gardens._\n", + "After many inquiries and almost as many refusals, and perpetually using\n", + "the words “Pall Mall Gazette” as a sort of talisman, I managed to find\n", + "the keeper of the section of the Zoölogical Gardens in which the wolf\n", + "department is included. Thomas Bilder lives in one of the cottages in\n", + "“Now, sir, you can go on and arsk me what you want. You’ll excoose me\n", + "“How do you mean, ask them questions?” I queried, wishful to get him\n", + "“’Ittin’ of them over the ’ead with a pole is one way; scratchin’ of\n", + "arsk the Superintendent if you might arsk me questions. Without offence\n", + "“You did.”\n", + "“An’ when you said you’d report me for usin’ of obscene language that\n", + "as the wolves, and lions, and tigers does. But, Lor’ love yer ’art, now\n", + "Drive along with your questions. I know what yer a-comin’ at, that ’ere\n", + "“Exactly. I want you to give me your view of it. Just tell me how it\n", + "“All right, guv’nor. This ’ere is about the ’ole story. That ’ere wolf\n", + "what we called Bersicker was one of three grey ones that came from\n", + "Norway to Jamrach’s, which we bought off him four years ago. He was a\n", + "“Don’t you mind him, sir!” broke in Mrs. Tom, with a cheery laugh. “’E’s\n", + "’isself! But there ain’t no ’arm in ’im.”\n", + "“Well, sir, it was about two hours after feedin’ yesterday when I first\n", + "away straight. There was Bersicker a-tearin’ like a mad thing at the\n", + "‘Keeper, these wolves seem upset at something.’\n", + "“‘Maybe it’s you,’ says I, for I did not like the airs as he give\n", + "of insolent smile, with a mouth full of white, sharp teeth. ‘Oh no, they\n", + "“‘Ow yes, they would,’ says I, a-imitatin’ of him. ‘They always likes a\n", + "“Well, it was a odd thing, but when the animiles see us a-talkin’ they\n", + "lay down, and when I went over to Bersicker he let me stroke his ears\n", + "“‘Tyke care,’ says I. ‘Bersicker is quick.’\n", + "“‘Never mind,’ he says. ‘I’m used to ’em!’\n", + "“‘Are you in the business yourself?’ I says, tyking off my ’at, for a\n", + "“‘No,’ says he, ‘not exactly in the business, but I ’ave made pets of\n", + "several.’ And with that he lifts his ’at as perlite as a lord, and walks\n", + "away. Old Bersicker kep’ a-lookin’ arter ’im till ’e was out of sight,\n", + "There warn’t no one near, except some one that was evidently a-callin’ a\n", + "dog somewheres out back of the gardings in the Park road. Once or twice\n", + "turnin’ in, an’, bust me, but when I kem opposite to old Bersicker’s\n", + "“Did any one else see anything?”\n", + "“One of our gard’ners was a-comin’ ’ome about that time from a ’armony,\n", + "night-a-huntin’ of the Park for Bersicker, that he remembered seein’\n", + "“Now, Mr. Bilder, can you account in any way for the escape of the\n", + "“Well, sir,” he said, with a suspicious sort of modesty, “I think I can;\n", + "“Certainly I shall. If a man like you, who knows the animals from\n", + "“Well then, sir, I accounts for it this way; it seems to me that ’ere\n", + "From the hearty way that both Thomas and his wife laughed at the joke I\n", + "with the worthy Thomas, but I thought I knew a surer way to his heart,\n", + "“Now, Mr. Bilder, we’ll consider that first half-sovereign worked off,\n", + "“Right y’are, sir,” he said briskly. “Ye’ll excoose me, I know, for\n", + "“Well, I never!” said the old lady.\n", + "“My opinion is this: that ’ere wolf is a-’idin’ of, somewheres. The\n", + "Lor’ bless you, in real life a wolf is only a low creature, not half so\n", + "hisself, and more like he’s somewhere round the Park a-’idin’ an’\n", + "green eyes a-shining at her out of the dark! If he can’t get food he’s\n", + "against the window, and Mr. Bilder’s face doubled its natural length\n", + "“God bless me!” he said. “If there ain’t old Bersicker come back by\n", + "He went to the door and opened it; a most unnecessary proceeding it\n", + "After all, however, there is nothing like custom, for neither Bilder nor\n", + "picture-wolves--Red Riding Hood’s quondam friend, whilst moving her\n", + "The whole scene was an unutterable mixture of comedy and pathos. The\n", + "wicked wolf that for half a day had paralysed London and set all the\n", + "prodigal son. Old Bilder examined him all over with most tender\n", + "“There, I knew the poor old chap would get into some kind of trouble;\n", + "didn’t I say it all along? Here’s his head all cut and full of broken\n", + "This ’ere’s what comes of it. Come along, Bersicker.”\n", + "He took the wolf and locked him up in a cage, with a piece of meat that\n", + "to-day regarding the strange escapade at the Zoo.\n", + "_Dr. Seward’s Diary._\n", + "_17 September._--I was engaged after dinner in my study posting up my\n", + "books, which, through press of other work and the many visits to Lucy,\n", + "into the Superintendent’s study is almost unknown. Without an instant’s\n", + "Before he could strike again, however, I got in my right and he was\n", + "placidly, simply repeating over and over again: “The blood is the life!\n", + "The blood is the life!”\n", + "late for my physical good, and then the prolonged strain of Lucy’s\n", + "weary, and I need rest, rest, rest. Happily Van Helsing has not summoned\n", + "_Telegram, Van Helsing, Antwerp, to Seward, Carfax._\n", + "(Sent to Carfax, Sussex, as no county given; delivered late by\n", + "“_17 September._--Do not fail to be at Hillingham to-night. If not\n", + "_Dr. Seward’s Diary._\n", + "_18 September._--Just off for train to London. The arrival of Van\n", + "Helsing’s telegram filled me with dismay. A whole night lost, and I know\n", + "possible that all may be well, but what _may_ have happened? Surely\n", + "me, and then I can complete my entry on Lucy’s phonograph.\n", + "_Memorandum left by Lucy Westenra._\n", + "_17 September. Night._--I write this and leave it to be seen, so that no\n", + "I went to bed as usual, taking care that the flowers were placed as Dr.\n", + "Van Helsing directed, and soon fell asleep.\n", + "sleep-walking on the cliff at Whitby when Mina saved me, and which now I\n", + "know so well. I was not afraid, but I did wish that Dr. Seward was in\n", + "the next room--as Dr. Van Helsing said he would be--so that I might have\n", + "alone, I opened my door and called out: “Is there anybody there?” There\n", + "Then outside in the shrubbery I heard a sort of howl like a dog’s, but\n", + "startled and a little frightened, and cried out: “What is that?” I tried\n", + "The window blind blew back with the wind that rushed in, and in the\n", + "other things, she clutched the wreath of flowers that Dr. Van Helsing\n", + "The time did not seem long, but very, very awful, till I recovered\n", + "mother’s breast. When they were there I remembered what Dr. Van Helsing\n", + "My heart sank when I saw what had happened. They all four lay helpless\n", + "The air seems full of specks, floating and circling in the draught from\n", + "the window, and the lights burn blue and dim. What am I to do? God\n", + "gone! It is time that I go too. Good-bye, dear Arthur, if I should not\n", + "survive this night. God keep you, dear, and God help me!\n", + "CHAPTER XII\n", + "DR. SEWARD’S DIARY\n", + "_18 September._--I drove at once to Hillingham and arrived early.\n", + "Keeping my cab at the gate, I went up the avenue alone. I knocked gently\n", + "and rang as quietly as possible, for I feared to disturb Lucy or her\n", + "tight around us? Was it indeed a house of death to which I had come, too\n", + "danger to Lucy, if she had had again one of those frightful relapses;\n", + "gate, and a few seconds later I met Van Helsing running up the avenue.\n", + "When he saw me, he gasped out:--\n", + "“Then it was you, and just arrived. How is she? Are we too late? Did you\n", + "“Then I fear we are too late. God’s will be done!” With his usual\n", + "recuperative energy, he went on: “Come. If there be no way open to get\n", + "We went round to the back of the house, where there was a kitchen\n", + "window. The Professor took a small surgical saw from his case, and\n", + "opened the window. I helped the Professor in, and followed him. There\n", + "room left no doubt as to their condition. Van Helsing and I looked at\n", + "each other, and as we moved away he said: “We can attend to them later.”\n", + "Then we ascended to Lucy’s room. For an instant or two we paused at the\n", + "How shall I describe what we saw? On the bed lay two women, Lucy and her\n", + "fixed upon it. By her side lay Lucy, with face white and still more\n", + "Without a word the Professor bent over the bed, his head almost touching\n", + "poor Lucy’s breast; then he gave a quick turn of his head, as of one who\n", + "“It is not yet too late! Quick! quick! Bring the brandy!”\n", + "but returned to Van Helsing. He rubbed the brandy, as on another\n", + "Flick them in the face with a wet towel, and flick them hard. Make them\n", + "Miss Lucy. So, sobbing and crying, they went about their way, half clad\n", + "got a bath and carried Lucy out as she was and placed her in it. Whilst\n", + "with a message from Mr. Holmwood. I bade her simply tell him that he\n", + "I never saw in all my experience the Professor work in such deadly\n", + "“If that were all, I would stop here where we are now, and let her fade\n", + "away into peace, for I see no light in life over her horizon.” He went\n", + "Presently we both began to be conscious that the heat was beginning to\n", + "stethoscope, and her lungs had a perceptible movement. Van Helsing’s\n", + "“The first gain is ours! Check to the King!”\n", + "We took Lucy into another room, which had by now been prepared, and laid\n", + "that Van Helsing tied a soft silk handkerchief round her throat. She was\n", + "Van Helsing called in one of the women, and told her to stay with her\n", + "“We must consult as to what is to be done,” he said as we descended the\n", + "death which the British woman of the lower classes always rigidly\n", + "enough for our purposes. Van Helsing’s sternness was somewhat relieved\n", + "“What are we to do now? Where are we to turn for help? We must have\n", + "“What’s the matter with me, anyhow?”\n", + "The voice came from the sofa across the room, and its tones brought\n", + "relief and joy to my heart, for they were those of Quincey Morris. Van\n", + "Helsing started angrily at the first sound, but his face softened and a\n", + "glad look came into his eyes as I cried out: “Quincey Morris!” and\n", + "“What brought you here?” I cried as our hands met.\n", + "“I guess Art is the cause.”\n", + "He handed me a telegram:--\n", + "“Have not heard from Seward for three days, and am terribly anxious.\n", + "Cannot leave. Father still in same condition. Send me word how Lucy is.\n", + "Do not delay.--HOLMWOOD.”\n", + "Van Helsing strode forward, and took his hand, looking him straight in\n", + "us for all he’s worth, but God sends us men when we want them.”\n", + "Once again we went through that ghastly operation. I have not the heart\n", + "and hear. However, the action of both heart and lungs improved, and Van\n", + "Helsing made a subcutaneous injection of morphia, as before, and with\n", + "good effect. Her faint became a profound slumber. The Professor watched\n", + "whilst I went downstairs with Quincey Morris, and sent one of the maids\n", + "to pay off one of the cabmen who were waiting. I left Quincey lying down\n", + "Lucy now was. When I came softly in, I found Van Helsing with a sheet or\n", + "He handed me the paper saying only: “It dropped from Lucy’s breast when\n", + "When I had read it, I stood looking at the Professor, and after a pause\n", + "asked him: “In God’s name, what does it all mean? Was she, or is she,\n", + "did not know what to say more. Van Helsing put out his hand and took the\n", + "“Do not trouble about it now. Forget it for the present. You shall know\n", + "is it that you came to me to say?” This brought me back to fact, and I\n", + "had it would surely kill poor Lucy, if nothing else did. I know, and you\n", + "know, and the other doctor who attended her knows, that Mrs. Westenra\n", + "“Good, oh my friend John! Well thought of! Truly Miss Lucy, if she be\n", + "man. Ah yes, I know, friend John; I am not blind! I love you all the\n", + "more for it! Now go.”\n", + "In the hall I met Quincey Morris, with a telegram for Arthur telling him\n", + "that Mrs. Westenra was dead; that Lucy also had been ill, but was now\n", + "going on better; and that Van Helsing and I were with her. I told him\n", + "“When you come back, Jack, may I have two words with you all to\n", + "When I got back Quincey was waiting for me. I told him I would see him\n", + "as soon as I knew about Lucy, and went up to her room. She was still\n", + "sleeping, and the Professor seemingly had not moved from his seat at her\n", + "So I went down to Quincey and took him into the breakfast-room, where\n", + "“Jack Seward, I don’t want to shove myself in anywhere where I’ve no\n", + "with her? The Dutchman--and a fine old fellow he is; I can see\n", + "Now I know well that you medical men speak _in camera_, and that a man\n", + "“That’s so,” I said, and he went on:--\n", + "“I take it that both you and Van Helsing had done already what I did\n", + "“That’s so.”\n", + "“And I guess Art was in it too. When I saw him four days ago down at his\n", + "since I was on the Pampas and had a mare that I was fond of go to grass\n", + "betraying confidence, Arthur was the first, is not that so?” As he spoke\n", + "Professor wished kept secret; but already he knew so much, and guessed\n", + "in the same phrase: “That’s so.”\n", + "“And how long has this been going on?”\n", + "“About ten days.”\n", + "“Ten days! Then I guess, Jack Seward, that that poor pretty creature\n", + "of four strong men. Man alive, her whole body wouldn’t hold it.” Then,\n", + "coming close to me, he spoke in a fierce half-whisper: “What took it\n", + "I shook my head. “That,” I said, “is the crux. Van Helsing is simply\n", + "There has been a series of little circumstances which have thrown out\n", + "all our calculations as to Lucy being properly watched. But these shall\n", + "not occur again. Here we stay until all be well--or ill.” Quincey held\n", + "out his hand. “Count me in,” he said. “You and the Dutchman will tell me\n", + "When she woke late in the afternoon, Lucy’s first movement was to feel\n", + "in her breast, and, to my surprise, produced the paper which Van Helsing\n", + "had given me to read. The careful Professor had replaced it where it had\n", + "come from, lest on waking she should be alarmed. Her eye then lit on Van\n", + "Helsing and on me too, and gladdened. Then she looked around the room,\n", + "took the paper from her breast and tore it in two. Van Helsing stepped\n", + "the fragments. Van Helsing seemed surprised, and his brows gathered as\n", + "_19 September._--All last night she slept fitfully, being always afraid\n", + "to sleep, and something weaker when she woke from it. The Professor and\n", + "unattended. Quincey Morris said nothing about his intention, but I knew\n", + "When the day came, its searching light showed the ravages in poor Lucy’s\n", + "slept, and both Van Helsing and I noticed the difference in her, between\n", + "one. In the afternoon she asked for Arthur, and we telegraphed for him.\n", + "Quincey went off to meet him at the station.\n", + "When he arrived it was nearly six o’clock, and the sun was setting full\n", + "colour to the pale cheeks. When he saw her, Arthur was simply choking\n", + "It was now nearly one o’clock, and he and Van Helsing are sitting with\n", + "this on Lucy’s phonograph. Until six o’clock they are to try to rest. I\n", + "_Letter, Mina Harker to Lucy Westenra._\n", + "(Unopened by her.)\n", + "“_17 September._\n", + "“My dearest Lucy,--\n", + "“It seems _an age_ since I heard from you, or indeed since I wrote. You\n", + "at Exeter there was a carriage waiting for us, and in it, though he had\n", + "an attack of gout, Mr. Hawkins. He took us to his house, where there\n", + "dinner Mr. Hawkins said:--\n", + "“‘My dears, I want to drink your health and prosperity; and may every\n", + "my will I have left you everything.’ I cried, Lucy dear, as Jonathan and\n", + "“So here we are, installed in this beautiful old house, and from both my\n", + "housekeeping. Jonathan and Mr. Hawkins are busy all day; for, now that\n", + "Jonathan is a partner, Mr. Hawkins wants to tell him all about the\n", + "“How is your dear mother getting on? I wish I could run up to town for a\n", + "shoulders; and Jonathan wants looking after still. He is beginning to\n", + "placidity. However, thank God, these occasions grow less frequent as the\n", + "and is it to be a public or a private wedding? Tell me all about it,\n", + "junior partner of the important firm Hawkins & Harker; and so, as you\n", + "Lucy, and all blessings on you.\n", + "“Yours,\n", + "“MINA HARKER.”\n", + "_Report from Patrick Hennessey, M. D., M. R. C. S. L. K. Q. C. P. I.,\n", + "etc., etc., to John Seward, M. D._\n", + "“_20 September._\n", + "“My dear Sir,--\n", + "“In accordance with your wishes, I enclose report of the conditions of\n", + "everything left in my charge.... With regard to patient, Renfield, there\n", + "Renfield’s room, the patient began to rate him from within, and called\n", + "mind as to what kind of a place he had got to by saying: ‘Lor’ bless\n", + "beast like that.’ Then he asked his way civilly enough, and I told him\n", + "on him, he began to shout: ‘I’ll frustrate them! They shan’t rob me!\n", + "they shan’t murder me by inches! I’ll fight for my Lord and Master!’ and\n", + "room. One of the attendants, Hardy, had a finger broken. However, I set\n", + "“The two carriers were at first loud in their threats of actions for\n", + "follows:--Jack Smollet, of Dudding’s Rents, King George’s Road, Great\n", + "Walworth, and Thomas Snelling, Peter Farley’s Row, Guide Court, Bethnal\n", + "Green. They are both in the employment of Harris & Sons, Moving and\n", + "Shipment Company, Orange Master’s Yard, Soho.\n", + "“Believe me, dear Sir,\n", + "“Yours faithfully,\n", + "“PATRICK HENNESSEY.”\n", + "_Letter, Mina Harker to Lucy Westenra_.\n", + "(Unopened by her.)\n", + "“_18 September._\n", + "“My dearest Lucy,--\n", + "“Such a sad blow has befallen us. Mr. Hawkins has died very suddenly.\n", + "Some may not think it so sad for us, but we had both come to so love him\n", + "Jonathan is greatly distressed. It is not only that he feels sorrow,\n", + "dream of avarice, but Jonathan feels it on another account. He says the\n", + "the midst of your own happiness; but, Lucy dear, I must tell some one,\n", + "for the strain of keeping up a brave and cheerful appearance to Jonathan\n", + "up to London, as we must do the day after to-morrow; for poor Mr.\n", + "Hawkins left in his will that he was to be buried in the grave with his\n", + "father. As there are no relations at all, Jonathan will have to be chief\n", + "“Your loving\n", + "“MINA HARKER.”\n", + "_Dr. Seward’s Diary._\n", + "_20 September._--Only resolution and habit can let me make an entry\n", + "been flapping those grim wings to some purpose of late--Lucy’s mother\n", + "and Arthur’s father, and now.... Let me get on with my work.\n", + "I duly relieved Van Helsing in his watch over Lucy. We wanted Arthur to\n", + "all break down for want of rest, lest Lucy should suffer, that he agreed\n", + "to go. Van Helsing was very kind to him. “Come, my child,” he said;\n", + "Come to the drawing-room, where there is a big fire, and there are two\n", + "sleep.” Arthur went off with him, casting back a longing look on Lucy’s\n", + "should be. I could see that the Professor had carried out in this room,\n", + "window-sashes reeked with it, and round Lucy’s neck, over the silk\n", + "handkerchief which Van Helsing made her keep on, was a rough chaplet of\n", + "I found that Lucy had moved slightly, and had torn away the garlic\n", + "Presently she woke, and I gave her food, as Van Helsing had prescribed.\n", + "She took but a little, and that languidly. There did not seem to be with\n", + "At six o’clock Van Helsing came to relieve me. Arthur had then fallen\n", + "into a doze, and he mercifully let him sleep on. When he saw Lucy’s face\n", + "sharp whisper: “Draw up the blind; I want light!” Then he bent down,\n", + "and, with his face almost touching Lucy’s, examined her carefully. He\n", + "he did so he started back, and I could hear his ejaculation, “Mein\n", + "Gott!” as it was smothered in his throat. I bent over and looked, too,\n", + "The wounds on the throat had absolutely disappeared.\n", + "For fully five minutes Van Helsing stood looking at her, with his face\n", + "“She is dying. It will not be long now. It will be much difference, mark\n", + "he thought he was late, and expressed his fear. I assured him that Lucy\n", + "was still asleep, but told him as gently as I could that both Van\n", + "Helsing and I feared that the end was near. He covered his face with his\n", + "shook with grief. I took him by the hand and raised him up. “Come,” I\n", + "When we came into Lucy’s room I could see that Van Helsing had, with\n", + "everything look as pleasing as possible. He had even brushed Lucy’s\n", + "“Arthur! Oh, my love, I am so glad you have come!” He was stooping to\n", + "kiss her, when Van Helsing motioned him back. “No,” he whispered, “not\n", + "yet! Hold her hand; it will comfort her more.”\n", + "So Arthur took her hand and knelt beside her, and she looked her best,\n", + "And then insensibly there came the strange change which I had noticed in\n", + "“Arthur! Oh, my love, I am so glad you have come! Kiss me!” Arthur bent\n", + "eagerly over to kiss her; but at that instant Van Helsing, who, like me,\n", + "“Not for your life!” he said; “not for your living soul and hers!” And\n", + "Arthur was so taken aback that he did not for a moment know what to do\n", + "I kept my eyes fixed on Lucy, as did Van Helsing, and we saw a spasm as\n", + "Very shortly after she opened her eyes in all their softness, and\n", + "putting out her poor, pale, thin hand, took Van Helsing’s great brown\n", + "one; drawing it to her, she kissed it. “My true friend,” she said, in a\n", + "faint voice, but with untellable pathos, “My true friend, and his! Oh,\n", + "hand, as one who registers an oath. Then he turned to Arthur, and said\n", + "to him: “Come, my child, take her hand in yours, and kiss her on the\n", + "Their eyes met instead of their lips; and so they parted.\n", + "Lucy’s eyes closed; and Van Helsing, who had been watching closely, took\n", + "Arthur’s arm, and drew him away.\n", + "And then Lucy’s breathing became stertorous again, and all at once it\n", + "“It is all over,” said Van Helsing. “She is dead!”\n", + "I took Arthur by the arm, and led him away to the drawing-room, where he\n", + "I went back to the room, and found Van Helsing looking at poor Lucy, and\n", + "Death had given back part of her beauty, for her brow and cheeks had\n", + "“We thought her dying whilst she slept,\n", + "And sleeping when she died.”\n", + "I stood beside Van Helsing, and said:--\n", + "“Ah, well, poor girl, there is peace for her at last. It is the end!”\n", + "He turned to me, and said with grave solemnity:--\n", + "“Not so; alas! not so. It is only the beginning!”\n", + "When I asked him what he meant, he only shook his head and answered:--\n", + "“We can do nothing as yet. Wait and see.”\n", + "CHAPTER XIII\n", + "DR. SEWARD’S DIARY--_continued_.\n", + "The funeral was arranged for the next succeeding day, so that Lucy and\n", + "Even the woman who performed the last offices for the dead remarked to\n", + "“She makes a very beautiful corpse, sir. It’s quite a privilege to\n", + "I noticed that Van Helsing never kept far away. This was possible from\n", + "at hand; and as Arthur had to be back the next day to attend at his\n", + "bidden. Under the circumstances, Van Helsing and I took it upon\n", + "ourselves to examine papers, etc. He insisted upon looking over Lucy’s\n", + "foreigner, might not be quite aware of English legal requirements, and\n", + "As he spoke he took from his pocket-book the memorandum which had been\n", + "in Lucy’s breast, and which she had torn in her sleep.\n", + "“When you find anything of the solicitor who is for the late Mrs.\n", + "Westenra, seal all her papers, and write him to-night. For me, I watch\n", + "here in the room and in Miss Lucy’s old room all night, and I myself\n", + "the name and address of Mrs. Westenra’s solicitor and had written to\n", + "letter, when, to my surprise, Van Helsing walked into the room,\n", + "“Can I help you, friend John? I am free, and if I may, my service is to\n", + "“Have you got what you looked for?” I asked, to which he replied:--\n", + "When we had finished the work in hand, he said to me:--\n", + "“And now, friend John, I think we may to bed. We want sleep, both you\n", + "Before turning in we went to look at poor Lucy. The undertaker had\n", + "winding-sheet was laid over the face; when the Professor bent over and\n", + "wax candles showing a sufficient light to note it well. All Lucy’s\n", + "The Professor looked sternly grave. He had not loved her as I had, and\n", + "there was no need for tears in his eyes. He said to me: “Remain till I\n", + "“To-morrow I want you to bring me, before night, a set of post-mortem\n", + "“Must we make an autopsy?” I asked.\n", + "“Yes and no. I want to operate, but not as you think. Let me tell you\n", + "her heart. Ah! you a surgeon, and so shocked! You, whom I have seen with\n", + "the rest shudder. Oh, but I must not forget, my dear friend John, that\n", + "Arthur I must not; he will be free after his father’s funeral to-morrow,\n", + "“But why do it at all? The girl is dead. Why mutilate her poor body\n", + "without need? And if there is no necessity for a post-mortem and nothing\n", + "knowledge--why do it? Without such it is monstrous.”\n", + "For answer he put his hand on my shoulder, and said, with infinite\n", + "“Friend John, I pity your poor bleeding heart; and I love you the more\n", + "send for me when the great trouble came? Yes! Were you not amazed, nay\n", + "horrified, when I would not let Arthur kiss his love--though she was\n", + "dying--and snatched him away by all my strength? Yes! And yet you saw\n", + "weak, and she kiss my rough old hand and bless me? Yes! And did you not\n", + "hear me swear promise to her, that so she closed her eyes grateful? Yes!\n", + "“Well, I have good reason now for all I want to do. You have for many\n", + "John. If you trust me not, then I must tell what I think; and that is\n", + "oh! so lonely when I want all help and courage that may be!” He paused a\n", + "moment and went on solemnly: “Friend John, there are strange and\n", + "her back towards me, so did not see me--and go into the room where Lucy\n", + "I must have slept long and soundly, for it was broad daylight when Van\n", + "Helsing waked me by coming into my room. He came over to my bedside and\n", + "“You need not trouble about the knives; we shall not do it.”\n", + "“Why not?” I asked. For his solemnity of the night before had greatly\n", + "“Because,” he said sternly, “it is too late--or too early. See!” Here he\n", + "held up the little golden crucifix. “This was stolen in the night.”\n", + "“How, stolen,” I asked in wonder, “since you have it now?”\n", + "“Because I get it back from the worthless wretch who stole it, from the\n", + "He went away on the word, leaving me with a new mystery to think of, a\n", + "The forenoon was a dreary time, but at noon the solicitor came: Mr.\n", + "Marquand, of Wholeman, Sons, Marquand & Lidderdale. He was very genial\n", + "cares as to details. During lunch he told us that Mrs. Westenra had for\n", + "entailed property of Lucy’s father’s which now, in default of direct\n", + "real and personal, was left absolutely to Arthur Holmwood. When he had\n", + "“Frankly we did our best to prevent such a testamentary disposition, and\n", + "Frankly, however, I must admit that in this case any other form of\n", + "treated at her decease as under intestacy. In which case Lord Godalming,\n", + "He was a good fellow, but his rejoicing at the one little part--in which\n", + "He did not remain long, but said he would look in later in the day and\n", + "see Lord Godalming. His coming, however, had been a certain comfort to\n", + "once. Van Helsing ordered the former arrangement to be adhered to,\n", + "explaining that, as Lord Godalming was coming very soon, it would be\n", + "the night before, so that when Arthur came such shocks to his feelings\n", + "Poor fellow! He looked desperately sad and broken; even his stalwart\n", + "bitter blow to him. With me he was warm as ever, and to Van Helsing he\n", + "constraint with him. The Professor noticed it, too, and motioned me to\n", + "“You loved her too, old fellow; she told me all about it, and there was\n", + "Here he suddenly broke down, and threw his arms round my shoulders and\n", + "“Oh, Jack! Jack! What shall I do! The whole of life seems gone from me\n", + "“Come and look at her.”\n", + "Together we moved over to the bed, and I lifted the lawn from her face.\n", + "God! how beautiful she was. Every hour seemed to be enhancing her\n", + "loveliness. It frightened and amazed me somewhat; and as for Arthur, he\n", + "“Jack, is she really dead?”\n", + "I left him in the drawing-room, and told Van Helsing that he had said\n", + "came out of the room again I told him of Arthur’s question, and he\n", + "We all dined together, and I could see that poor Art was trying to make\n", + "the best of things. Van Helsing had been silent all dinner-time; but\n", + "“Lord----”; but Arthur interrupted him:--\n", + "“No, no, not that, for God’s sake! not yet at any rate. Forgive me, sir:\n", + "The Professor answered very sweetly:--\n", + "‘Mr.,’ and I have grown to love you--yes, my dear boy, to love you--as\n", + "Arthur.”\n", + "Arthur held out his hand, and took the old man’s warmly.\n", + "“Call me what you will,” he said. “I hope I may always have the title of\n", + "your goodness to my poor dear.” He paused a moment, and went on: “I know\n", + "Professor nodded--“you must forgive me.”\n", + "He answered with a grave kindness:--\n", + "“And, indeed, indeed, sir,” said Arthur warmly, “I shall in all ways\n", + "Jack’s friend, and you were hers. You shall do what you like.”\n", + "The Professor cleared his throat a couple of times, as though about to\n", + "“May I ask you something now?”\n", + "“Certainly.”\n", + "“You know that Mrs. Westenra left you all her property?”\n", + "“No, poor dear; I never thought of it.”\n", + "“And as it is all yours, you have a right to deal with it as you will. I\n", + "want you to give me permission to read all Miss Lucy’s papers and\n", + "Lucy’s sake?”\n", + "Arthur spoke out heartily, like his old self:--\n", + "“Dr. Van Helsing, you may do what you will. I feel that in saying this I\n", + "The old Professor stood up as he said solemnly:--\n", + "“And you are right. There will be pain for us all; but it will not be\n", + "I slept on a sofa in Arthur’s room that night. Van Helsing did not go to\n", + "never out of sight of the room where Lucy lay in her coffin, strewn with\n", + "_Mina Harker’s Journal._\n", + "_22 September._--In the train to Exeter. Jonathan sleeping.\n", + "It seems only yesterday that the last entry was made, and yet how much\n", + "between then, in Whitby and all the world before me, Jonathan away and\n", + "no news of him; and now, married to Jonathan, Jonathan a solicitor, a\n", + "partner, rich, master of his business, Mr. Hawkins dead and buried, and\n", + "Jonathan with another attack that may harm him. Some day he may ask me\n", + "The service was very simple and very solemn. There were only ourselves\n", + "and the servants there, one or two old friends of his from Exeter, his\n", + "London agent, and a gentleman representing Sir John Paxton, the\n", + "President of the Incorporated Law Society. Jonathan and I stood hand in\n", + "We came back to town quietly, taking a ’bus to Hyde Park Corner.\n", + "Jonathan thought it would interest me to go into the Row for a while, so\n", + "of the empty chair at home; so we got up and walked down Piccadilly.\n", + "Jonathan was holding me by the arm, the way he used to in old days\n", + "pedantry of it biting into yourself a bit; but it was Jonathan, and he\n", + "girl, in a big cart-wheel hat, sitting in a victoria outside Guiliano’s,\n", + "when I felt Jonathan clutch my arm so tight that he hurt me, and he said\n", + "under his breath: “My God!” I am always anxious about Jonathan, for I\n", + "He was very pale, and his eyes seemed bulging out as, half in terror and\n", + "Jonathan kept staring at him, till I was afraid he would notice. I\n", + "Jonathan why he was disturbed, and he answered, evidently thinking that\n", + "I knew as much about it as he did: “Do you see who it is?”\n", + "“No, dear,” I said; “I don’t know him; who is it?” His answer seemed to\n", + "to me, Mina, to whom he was speaking:--\n", + "“It is the man himself!”\n", + "The poor dear was evidently terrified at something--very greatly\n", + "moved up Piccadilly he followed in the same direction, and hailed a\n", + "“I believe it is the Count, but he has grown young. My God, if this be\n", + "so! Oh, my God! my God! If I only knew! if I only knew!” He was\n", + "further, and then went in and sat for a while in the Green Park. It was\n", + "After a few minutes’ staring at nothing, Jonathan’s eyes closed, and he\n", + "“Why, Mina, have I been asleep! Oh, do forgive me for being so rude.\n", + "Come, and we’ll have a cup of tea somewhere.” He had evidently forgotten\n", + "must open that parcel, and know what is written. Oh, Jonathan, you will,\n", + "_Later._--A sad home-coming in every way--the house empty of the dear\n", + "soul who was so good to us; Jonathan still pale and dizzy under a slight\n", + "relapse of his malady; and now a telegram from Van Helsing, whoever he\n", + "“You will be grieved to hear that Mrs. Westenra died five days ago, and\n", + "that Lucy died the day before yesterday. They were both buried to-day.”\n", + "Oh, what a wealth of sorrow in a few words! Poor Mrs. Westenra! poor\n", + "Lucy! Gone, gone, never to return to us! And poor, poor Arthur, to have\n", + "lost such sweetness out of his life! God help us all to bear our\n", + "_Dr. Seward’s Diary._\n", + "_22 September._--It is all over. Arthur has gone back to Ring, and has\n", + "taken Quincey Morris with him. What a fine fellow is Quincey! I believe\n", + "in my heart of hearts that he suffered as much about Lucy’s death as any\n", + "of us; but he bore himself through it like a moral Viking. If America\n", + "indeed. Van Helsing is lying down, having a rest preparatory to his\n", + "journey. He goes over to Amsterdam to-night, but says he returns\n", + "he has work to do in London which may take him some time. Poor old\n", + "standing beside Arthur, who, poor fellow, was speaking of his part in\n", + "the operation where his blood had been transfused to his Lucy’s veins; I\n", + "could see Van Helsing’s face grow white and purple by turns. Arthur was\n", + "and that she was his wife in the sight of God. None of us said a word of\n", + "the other operations, and none of us ever shall. Arthur and Quincey went\n", + "away together to the station, and Van Helsing and I came on here. The\n", + "manifestations of nervous strength or weakness! Then when his face grew\n", + "His reply was in a way characteristic of him, for it was logical and\n", + "“Ah, you don’t comprehend, friend John. Do not think that I am not sad,\n", + "door and say, ‘May I come in?’ is not the true laughter. No! he is a\n", + "time of suitability. He say, ‘I am here.’ Behold, in example I grieve my\n", + "coffin and say ‘Thud! thud!’ to my heart, till it send back the blood\n", + "John, for we are more level in experiences than father and son--yet even\n", + "at such moment King Laugh he come to me and shout and bellow in my ear,\n", + "‘Here I am! here I am!’ till the blood come dance back and bring some of\n", + "the sunshine that he carry with him to my cheek. Oh, friend John, it is\n", + "troubles; and yet when King Laugh come he make them all dance to the\n", + "make with that smileless mouth of him. And believe me, friend John, that\n", + "become too great, and we break. But King Laugh he come like the\n", + "“Oh, it was the grim irony of it all--this so lovely lady garlanded with\n", + "who loved her, and whom she loved; and that sacred bell going ‘Toll!\n", + "for what? She is dead; so! Is it not?”\n", + "“Well, for the life of me, Professor,” I said, “I can’t see anything to\n", + "Art and his trouble? Why, his heart was simply breaking.”\n", + "“Just so. Said he not that the transfusion of his blood to her veins had\n", + "“Yes, and it was a sweet and comforting idea for him.”\n", + "“Quite so. But there was a difficulty, friend John. If so that, then\n", + "what about the others? Ho, ho! Then this so sweet maid is a polyandrist,\n", + "and me, with my poor wife dead to me, but alive by Church’s law, though\n", + "“Friend John, forgive me if I pain. I showed not my feeling to others\n", + "If you could have looked into my very heart then when I want to laugh;\n", + "now, when King Laugh have pack up his crown, and all that is to him--for\n", + "“Because I know!”\n", + "And now we are all scattered; and for many a long day loneliness will\n", + "London; where the air is fresh, and the sun rises over Hampstead Hill,\n", + "So I can finish this diary; and God only knows if I shall ever begin\n", + "“FINIS.”\n", + "_“The Westminster Gazette,” 25 September._\n", + "A HAMPSTEAD MYSTERY.\n", + "The neighbourhood of Hampstead is just at present exercised with a\n", + "was known to the writers of headlines as “The Kensington Horror,” or\n", + "“The Stabbing Woman,” or “The Woman in Black.” During the past two or\n", + "home or neglecting to return from their playing on the Heath. In all\n", + "is that they had been with a “bloofer lady.” It has always been late in\n", + "that even Ellen Terry could not be so winningly attractive as some of\n", + "There is, however, possibly a serious side to the question, for some of\n", + "when very young, in and around Hampstead Heath, and for any stray dog\n", + "_“The Westminster Gazette,” 25 September._\n", + "_Extra Special._\n", + "THE HAMPSTEAD HORROR.\n", + "ANOTHER CHILD INJURED.\n", + "_The “Bloofer Lady.”_\n", + "We have just received intelligence that another child, missed last\n", + "Shooter’s Hill side of Hampstead Heath, which is, perhaps, less\n", + "CHAPTER XIV\n", + "MINA HARKER’S JOURNAL\n", + "_23 September_.--Jonathan is better after a bad night. I am so glad that\n", + "and now how proud I am to see my Jonathan rising to the height of his\n", + "_24 September_.--I hadn’t the heart to write last night; that terrible\n", + "record of Jonathan’s upset me so. Poor dear! How he must have suffered,\n", + "we saw yesterday! He seemed quite certain of him.... Poor fellow! I\n", + "wedding-day he said: “Unless some solemn duty come upon me to go back to\n", + "the bitter hours, asleep or awake, mad or sane.” There seems to be\n", + "through it all some thread of continuity.... That fearful Count was\n", + "coming to London.... If it should be, and he came to London, with his\n", + "poor Jonathan may not be upset, for I can speak for him and never let\n", + "him be troubled or worried with it at all. If ever Jonathan quite gets\n", + "_Letter, Van Helsing to Mrs. Harker._\n", + "“_24 September._\n", + "(_Confidence_)\n", + "“Dear Madam,--\n", + "sent to you sad news of Miss Lucy Westenra’s death. By the kindness of\n", + "Lord Godalming, I am empowered to read her letters and papers, for I am\n", + "love her. Oh, Madam Mina, by that love, I implore you, help me. It is\n", + "be that I see you? You can trust me. I am friend of Dr. John Seward and\n", + "of Lord Godalming (that was Arthur of Miss Lucy). I must keep it private\n", + "for the present from all. I should come to Exeter to see you at once if\n", + "pardon, madam. I have read your letters to poor Lucy, and know how good\n", + "“VAN HELSING.”\n", + "_Telegram, Mrs. Harker to Van Helsing._\n", + "“_25 September._--Come to-day by quarter-past ten train if you can catch\n", + "“WILHELMINA HARKER.”\n", + "MINA HARKER’S JOURNAL.\n", + "_25 September._--I cannot help feeling terribly excited as the time\n", + "draws near for the visit of Dr. Van Helsing, for somehow I expect that\n", + "it will throw some light upon Jonathan’s sad experience; and as he\n", + "attended poor dear Lucy in her last illness, he can tell me all about\n", + "her. That is the reason of his coming; it is concerning Lucy and her\n", + "sleep-walking, and not about Jonathan. Then I shall never know the real\n", + "truth now! How silly I am. That awful journal gets hold of my\n", + "course it is about Lucy. That habit came back to the poor dear, and that\n", + "understand. I hope I did right in not saying anything of it to Mrs.\n", + "Westenra; I should never forgive myself if any act of mine, were it even\n", + "a negative one, brought harm on poor dear Lucy. I hope, too, Dr. Van\n", + "Helsing will not blame me; I have had so much trouble and anxiety of\n", + "then Jonathan went away this morning to stay away from me a whole day\n", + "now. I shall say nothing of Jonathan’s journal unless he asks me. I am\n", + "about Lucy, I can hand it to him; it will save much questioning.\n", + "_Later._--He has come and gone. Oh, what a strange meeting, and how it\n", + "possible, or even a part of it? If I had not read Jonathan’s journal\n", + "Jonathan! How he must have suffered. Please the good God, all this may\n", + "satisfied and better able to bear the shock. Dr. Van Helsing must be a\n", + "good man as well as a clever one if he is Arthur’s friend and Dr.\n", + "Seward’s, and if they brought him all the way from Holland to look after\n", + "Lucy. I feel from having seen him that he _is_ good and kind and of a\n", + "noble nature. When he comes to-morrow I shall ask him about Jonathan;\n", + "and then, please God, all this sorrow and anxiety may lead to a good\n", + "end. I used to think I would like to practise interviewing; Jonathan’s\n", + "friend on “The Exeter News” told him that memory was everything in such\n", + "It was half-past two o’clock when the knock came. I took my courage _à\n", + "deux mains_ and waited. In a few minutes Mary opened the door, and\n", + "announced “Dr. Van Helsing.”\n", + "“Mrs. Harker, is it not?” I bowed assent.\n", + "“That was Miss Mina Murray?” Again I assented.\n", + "“It is Mina Murray that I came to see that was friend of that poor dear\n", + "child Lucy Westenra. Madam Mina, it is on account of the dead I come.”\n", + "“Sir,” I said, “you could have no better claim on me than that you were\n", + "a friend and helper of Lucy Westenra.” And I held out my hand. He took\n", + "“Oh, Madam Mina, I knew that the friend of that poor lily girl must be\n", + "good, but I had yet to learn----” He finished his speech with a courtly\n", + "“I have read your letters to Miss Lucy. Forgive me, but I had to begin\n", + "with her at Whitby. She sometimes kept a diary--you need not look\n", + "surprised, Madam Mina; it was begun after you had left, and was in\n", + "“I can tell you, I think, Dr. Van Helsing, all about it.”\n", + "“Ah, then you have good memory for facts, for details? It is not always\n", + "“No, doctor, but I wrote it all down at the time. I can show it to you\n", + "“Oh, Madam Mina, I will be grateful; you will do me much favour.” I\n", + "“May I read it?”\n", + "“If you wish,” I answered as demurely as I could. He opened it, and for\n", + "“Oh, you so clever woman!” he said. “I knew long that Mr. Jonathan was a\n", + "And will you not so much honour me and so help me as to read it for me?\n", + "Alas! I know not the shorthand.” By this time my little joke was over,\n", + "“Forgive me,” I said: “I could not help it; but I had been thinking that\n", + "it was of dear Lucy that you wished to ask, and so that you might not\n", + "He took it and his eyes glistened. “You are so good,” he said. “And may\n", + "“By all means,” I said, “read it over whilst I order lunch; and then you\n", + "can ask me questions whilst we eat.” He bowed and settled himself in a\n", + "“Oh, Madam Mina,” he said, “how can I say what I owe to you? This paper\n", + "clever woman. Madam”--he said this very solemnly--“if ever Abraham Van\n", + "Helsing can do anything for you or yours, I trust you will let me know.\n", + "It will be pleasure and delight if I may serve you as a friend; as a\n", + "“But, doctor, you praise me too much, and--and you do not know me.”\n", + "“Not know you--I, who am old, and who have studied all my life men and\n", + "him and all that follow from him! And I have read your diary that you\n", + "line. I, who have read your so sweet letter to poor Lucy of your\n", + "marriage and your trust, not know you! Oh, Madam Mina, good women tell\n", + "husband--tell me of him. Is he quite well? Is all that fever gone, and\n", + "Jonathan, so I said:--\n", + "“He was almost recovered, but he has been greatly upset by Mr. Hawkins’s\n", + "death.” He interrupted:--\n", + "“Oh, yes, I know, I know. I have read your last two letters.” I went\n", + "“I suppose this upset him, for when we were in town on Thursday last he\n", + "“A shock, and after brain fever so soon! That was not good. What kind of\n", + "“He thought he saw some one who recalled something terrible, something\n", + "which led to his brain fever.” And here the whole thing seemed to\n", + "overwhelm me in a rush. The pity for Jonathan, the horror which he\n", + "“My life is a barren and lonely one, and so full of work that I have not\n", + "my friend John Seward I have known so many good people and seen such\n", + "Husband Jonathan would not like to see you so pale; and what he like not\n", + "and smile. You have told me all about Lucy, and so now we shall not\n", + "speak of it, lest it distress. I shall stay in Exeter to-night, for I\n", + "husband Jonathan’s trouble so far as you can, but not yet. You must eat\n", + "After lunch, when we went back to the drawing-room, he said to me:--\n", + "“And now tell me all about him.” When it came to speaking to this great\n", + "Jonathan a madman--that journal is all so strange--and I hesitated to go\n", + "“Dr. Van Helsing, what I have to tell you is so queer that you must not\n", + "have even half believed some very strange things.” He reassured me by\n", + "“Oh, my dear, if you only know how strange is the matter regarding which\n", + "“Thank you, thank you, a thousand times! You have taken a weight off my\n", + "Jonathan’s. It is the copy of his journal when abroad, and all that\n", + "“Jonathan will be here at half-past eleven, and you must come to lunch\n", + "will leave you at Paddington before eight.” He was surprised at my\n", + "up all the trains to and from Exeter, so that I may help Jonathan in\n", + "So he took the papers with him and went away, and I sit here\n", + "_Letter (by hand), Van Helsing to Mrs. Harker._\n", + "“_25 September, 6 o’clock._\n", + "“Dear Madam Mina,--\n", + "“Yours the most faithful,\n", + "“ABRAHAM VAN HELSING.”\n", + "_Letter, Mrs. Harker to Van Helsing._\n", + "“_25 September, 6:30 p. m._\n", + "“My dear Dr. Van Helsing,--\n", + "in London! I fear to think. I have this moment, whilst writing, had a\n", + "wire from Jonathan, saying that he leaves by the 6:25 to-night from\n", + "Launceston and will be here at 10:18, so that I shall have no fear\n", + "to breakfast at eight o’clock, if this be not too early for you? You can\n", + "you to Paddington by 2:35. Do not answer this, as I shall take it that,\n", + "“Believe me,\n", + "“Your faithful and grateful friend,\n", + "“MINA HARKER.”\n", + "_Jonathan Harker’s Journal._\n", + "_26 September._--I thought never to write in this diary again, but the\n", + "time has come. When I got home last night Mina had supper ready, and\n", + "when we had supped she told me of Van Helsing’s visit, and of her having\n", + "of the Count. He has succeeded after all, then, in his design in getting\n", + "to London, and it was he I saw. He has got younger, and how? Van Helsing\n", + "Mina says. We sat late, and talked it all over. Mina is dressing, and I\n", + "He was, I think, surprised to see me. When I came into the room where he\n", + "“But Madam Mina told me you were ill, that you had had a shock.” It was\n", + "so funny to hear my wife called “Madam Mina” by this kindly,\n", + "“And how?”\n", + "“By your letter to Mina last night. I was in doubt, and then everything\n", + "yourself. No, you don’t; you couldn’t with eyebrows like yours.” He\n", + "“So! You are physiognomist. I learn more here with each hour. I am with\n", + "would listen to him go on praising Mina for a day, so I simply nodded\n", + "“She is one of God’s women, fashioned by His own hand to show us men and\n", + "selfish. And you, sir--I have read all the letters to poor Miss Lucy,\n", + "will give me your hand, will you not? And let us be friends for all our\n", + "We shook hands, and he was so earnest and so kind that it made me quite\n", + "“And now,” he said, “may I ask you for some more help? I have a great\n", + "Can you tell me what went before your going to Transylvania? Later on I\n", + "“Look here, sir,” I said, “does what you have to do concern the Count?”\n", + "“It does,” he said solemnly.\n", + "“Then I am with you heart and soul. As you go by the 10:30 train, you\n", + "You can take them with you and read them in the train.”\n", + "After breakfast I saw him to the station. When we were parting he\n", + "“Perhaps you will come to town if I send to you, and take Madam Mina\n", + "“We shall both come when you will,” I said.\n", + "I had got him the morning papers and the London papers of the previous\n", + "catch something in one of them, “The Westminster Gazette”--I knew it by\n", + "groaning to himself: “Mein Gott! Mein Gott! So soon! so soon!” I do not\n", + "the window and waved his hand, calling out: “Love to Madam Mina; I shall\n", + "_Dr. Seward’s Diary._\n", + "_26 September._--Truly there is no such thing as finality. Not a week\n", + "since I said “Finis,” and yet here I am starting fresh again, or rather\n", + "to me. I had a letter from Arthur, written on Sunday, and from it I\n", + "gather that he is bearing up wonderfully well. Quincey Morris is with\n", + "Arthur is beginning to recover something of his old buoyancy; so as to\n", + "fairly have said that the wound which poor Lucy left on me was becoming\n", + "end God only knows. I have an idea that Van Helsing thinks he knows,\n", + "went to Exeter yesterday, and stayed there all night. To-day he came\n", + "and thrust last night’s “Westminster Gazette” into my hand.\n", + "“What do you think of that?” he asked as he stood back and folded his\n", + "away at Hampstead. It did not convey much to me, until I reached a\n", + "idea struck me, and I looked up. “Well?” he said.\n", + "“It is like poor Lucy’s.”\n", + "“And what do you make of it?”\n", + "“Simply that there is some cause in common. Whatever it was that injured\n", + "“That is true indirectly, but not directly.”\n", + "“How do you mean, Professor?” I asked. I was a little inclined to take\n", + "despair about poor Lucy, had he looked more stern.\n", + "“Tell me!” I said. “I can hazard no opinion. I do not know what to\n", + "“Do you mean to tell me, friend John, that you have no suspicion as to\n", + "what poor Lucy died of; not after all the hints given, not only by\n", + "“Of nervous prostration following on great loss or waste of blood.”\n", + "“And how the blood lost or waste?” I shook my head. He stepped over and\n", + "“You are clever man, friend John; you reason well, and your wit is bold;\n", + "and yet which are; that some people see things that others cannot? But\n", + "believe in corporeal transference. No? Nor in materialisation. No? Nor\n", + "in astral bodies. No? Nor in the reading of thought. No? Nor in\n", + "“Yes,” I said. “Charcot has proved that pretty well.” He smiled as he\n", + "went on: “Then you are satisfied as to it. Yes? And of course then you\n", + "Charcot--alas that he is no more!--into the very soul of the patient\n", + "that he influence. No? Then, friend John, am I to take it that you\n", + "be a blank? No? Then tell me--for I am student of the brain--how you\n", + "Methuselah lived nine hundred years, and ‘Old Parr’ one hundred and\n", + "sixty-nine, and yet that poor Lucy, with four men’s blood in her poor\n", + "veins, could not live even one day? For, had she live one more day, we\n", + "could have save her. Do you know all the mystery of life and death? Do\n", + "qualities of brutes are in some men, and not in others? Can you tell me\n", + "for centuries in the tower of the old Spanish church and grew and grew,\n", + "till, on descending, he could drink the oil of all the church lamps? Can\n", + "you tell me why in the Pampas, ay and elsewhere, there are bats that\n", + "veins; how in some islands of the Western seas there are bats which hang\n", + "found dead men, white as even Miss Lucy was?”\n", + "“Good God, Professor!” I said, starting up. “Do you mean to tell me that\n", + "Lucy was bitten by such a bat; and that such a thing is here in London\n", + "in the nineteenth century?” He waved his hand for silence, and went\n", + "“Can you tell me why the tortoise lives more long than generations of\n", + "Can you tell me why men believe in all ages and places that there are\n", + "women who cannot die? We all know--because science has vouched for the\n", + "the world. Can you tell me how the Indian fakir can make himself to die\n", + "come and take away the unbroken seal and that there lie the Indian\n", + "fakir, not dead, but that rise up and walk amongst them as before?” Here\n", + "some lesson, as long ago he used to do in his study at Amsterdam; but\n", + "“Professor, let me be your pet student again. Tell me the thesis, so\n", + "“That is good image,” he said. “Well, I shall tell you. My thesis is\n", + "“To believe what?”\n", + "“To believe in things that you cannot. Let me illustrate. I heard once\n", + "of an American who so defined faith: ‘that faculty which enables us to\n", + "believe things which we know to be untrue.’ For one, I follow that man.\n", + "He meant that we shall have an open mind, and not let a little bit of\n", + "truck. We get the small truth first. Good! We keep him, and we value\n", + "“Then you want me not to let some previous conviction injure the\n", + "“Ah, you are my favourite pupil still. It is worth to teach you. Now\n", + "throats were made by the same that made the hole in Miss Lucy?”\n", + "“I suppose so.” He stood up and said solemnly:--\n", + "“Then you are wrong. Oh, would it were so! but alas! no. It is worse,\n", + "“In God’s name, Professor Van Helsing, what do you mean?” I cried.\n", + "He threw himself with a despairing gesture into a chair, and placed his\n", + "“They were made by Miss Lucy!”\n", + "CHAPTER XV\n", + "DR. SEWARD’S DIARY--_continued_.\n", + "For a while sheer anger mastered me; it was as if he had during her life\n", + "struck Lucy on the face. I smote the table hard and rose up as I said to\n", + "“Dr. Van Helsing, are you mad?” He raised his head and looked at me, and\n", + "somehow the tenderness of his face calmed me at once. “Would I were!” he\n", + "said. “Madness were easy to bear compared with truth like this. Oh, my\n", + "you so simple a thing? Was it because I hate you and have hated you all\n", + "my life? Was it because I wished to give you pain? Was it that I wanted,\n", + "fearful death? Ah no!”\n", + "“Forgive me,” said I. He went on:--\n", + "“My friend, it was because I wished to be gentle in the breaking to you,\n", + "concrete truth, and of such a one as Miss Lucy. To-night I go to prove\n", + "This staggered me. A man does not like to prove such a truth; Byron\n", + "“And prove the very truth he most abhorred.”\n", + "He saw my hesitation, and spoke:--\n", + "“The logic is simple, no madman’s logic this time, jumping from tussock\n", + "at worst it will not harm. If it be true! Ah, there is the dread; yet\n", + "in the hospital. Dr. Vincent, of the North Hospital, where the papers\n", + "in class at Amsterdam. He will let two scientists see his case, if he\n", + "“And then?” He took a key from his pocket and held it up. “And then we\n", + "spend the night, you and I, in the churchyard where Lucy lies. This is\n", + "Arthur.” My heart sank within me, for I felt that there was some fearful\n", + "We found the child awake. It had had a sleep and taken some food, and\n", + "similarity to those which had been on Lucy’s throat. They were smaller,\n", + "and the edges looked fresher; that was all. We asked Vincent to what he\n", + "heights of London. “Out of so many harmless ones,” he said, “there may\n", + "be some wild specimen from the South of a more malignant species. Some\n", + "the Zoölogical Gardens a young one may have got loose, or one be bred\n", + "week after, the children were playing nothing but Red Riding Hood on the\n", + "Heath and in every alley in the place until this ‘bloofer lady’ scare\n", + "“I hope,” said Van Helsing, “that when you are sending the child home\n", + "“Certainly not, not for a week at least; longer if the wound is not\n", + "Our visit to the hospital took more time than we had reckoned on, and\n", + "the sun had dipped before we came out. When Van Helsing saw how dark it\n", + "“There is no hurry. It is more late than I thought. Come, let us seek\n", + "We dined at “Jack Straw’s Castle” along with a little crowd of\n", + "radius. The Professor had evidently noted the road we were to go, for he\n", + "the Westenra tomb. The Professor took the key, opened the creaky door,\n", + "Van Helsing went about his work systematically. Holding his candle so\n", + "made assurance of Lucy’s coffin. Another search in his bag, and he took\n", + "“What are you going to do?” I asked.\n", + "“To open the coffin. You shall yet be convinced.” Straightway he began\n", + "hold of his hand to stop him. He only said: “You shall see,” and again\n", + "such things, and I drew back towards the door. But the Professor never\n", + "It was certainly a surprise to me, and gave me a considerable shock, but\n", + "Van Helsing was unmoved. He was now more sure than ever of his ground,\n", + "and so emboldened to proceed in his task. “Are you satisfied now, friend\n", + "John?” he asked.\n", + "“I am satisfied that Lucy’s body is not in that coffin; but that only\n", + "“And what is that, friend John?”\n", + "“That it is not there.”\n", + "“That is good logic,” he said, “so far as it goes. But how do you--how\n", + "“Perhaps a body-snatcher,” I suggested. “Some of the undertaker’s people\n", + "the only real cause which I could suggest. The Professor sighed. “Ah\n", + "He put on the coffin-lid again, gathered up all his things and placed\n", + "locked it. He handed me the key, saying: “Will you keep it? You had\n", + "of that kind.” He said nothing, but put the key in his pocket. Then he\n", + "It was a lonely vigil. Just after I had taken my place I heard a distant\n", + "unnerved, and angry with the Professor for taking me on such an errand\n", + "Suddenly, as I turned round, I thought I saw something like a white\n", + "Professor’s side of the ground, and hurriedly went towards it. Then I\n", + "coming over, found the Professor holding in his arms a tiny child. When\n", + "“Are you satisfied now?”\n", + "“No,” I said, in a way that I felt was aggressive.\n", + "“Do you not see the child?”\n", + "“Yes, it is a child, but who brought it here? And is it wounded?” I\n", + "“We shall see,” said the Professor, and with one impulse we took our way\n", + "When we had got some little distance away, we went into a clump of\n", + "“Was I right?” I asked triumphantly.\n", + "“We were just in time,” said the Professor thankfully.\n", + "We had now to decide what we were to do with the child, and so consulted\n", + "So finally we decided that we would take it to the Heath, and when we\n", + "well. At the edge of Hampstead Heath we heard a policeman’s heavy\n", + "cab near the “Spaniards,” and drove to town.\n", + "sleep, as Van Helsing is to call for me at noon. He insists that I shall\n", + "_27 September._--It was two o’clock before we found a suitable\n", + "morning did we desire it; but the Professor told me that we should not\n", + "Outrageous as it was to open a leaden coffin, to see if a woman dead\n", + "and rested silent, for Van Helsing had a way of going on his own road,\n", + "streamed in. Van Helsing walked over to Lucy’s coffin, and I followed.\n", + "He bent over and again forced back the leaden flange; and then a shock\n", + "There lay Lucy, seemingly just as we had seen her the night before her\n", + "“Is this a juggle?” I said to him.\n", + "“Are you convinced now?” said the Professor in response, and as he spoke\n", + "“See,” he went on, “see, they are even sharper than before. With this\n", + "John?” Once more, argumentative hostility woke within me. I _could_ not\n", + "“She may have been placed here since last night.”\n", + "“Indeed? That is so, and by whom?”\n", + "“And yet she has been dead one week. Most peoples in that time would not\n", + "look so.” I had no answer for this, so was silent. Van Helsing did not\n", + "“Here, there is one thing which is different from all recorded; here is\n", + "that, friend John, but you shall know it all later--and in trance could\n", + "is Un-Dead, too. So it is that she differ from all other. Usually when\n", + "the Un-Dead sleep at home”--as he spoke he made a comprehensive sweep of\n", + "they are, but this so sweet that was when she not Un-Dead she go back to\n", + "it make hard that I must kill her in her sleep.” This turned my blood\n", + "cold, and it began to dawn upon me that I was accepting Van Helsing’s\n", + "idea of killing her? He looked up at me, and evidently saw the change in\n", + "“Ah, you believe now?”\n", + "I answered: “Do not press me too hard all at once. I am willing to\n", + "drive a stake through her body.” It made me shudder to think of so\n", + "shudder at the presence of this being, this Un-Dead, as Van Helsing\n", + "I waited a considerable time for Van Helsing to begin, but he stood as\n", + "want Arthur, and how shall we tell him of this? If you, who saw the\n", + "wounds on Lucy’s throat, and saw the wounds so similar on the child’s at\n", + "Arthur, who know none of those things, to believe? He doubted me when I\n", + "an Un-Dead. No! I told him once, and since then I learn much. Now, since\n", + "Berkeley Hotel at ten of the clock. I shall send for Arthur to come too,\n", + "and also that so fine young man of America that gave his blood. Later we\n", + "shall all have work to do. I come with you so far as Piccadilly and\n", + "So we locked the tomb and came away, and got over the wall of the\n", + "churchyard, which was not much of a task, and drove back to Piccadilly.\n", + "_Note left by Van Helsing in his portmanteau, Berkeley Hotel directed to\n", + "John Seward, M. D._\n", + "(Not delivered.)\n", + "“_27 September._\n", + "“Friend John,--\n", + "that churchyard. It pleases me that the Un-Dead, Miss Lucy, shall not\n", + "Therefore I shall fix some things she like not--garlic and a\n", + "crucifix--and so seal up the door of the tomb. She is young as Un-Dead,\n", + "may not prevail on her wanting to get in; for then the Un-Dead is\n", + "and if there be aught that may be learned I shall learn it. For Miss\n", + "Lucy or from her, I have no fear; but that other to whom is there that\n", + "she is Un-Dead, he have now the power to seek her tomb and find shelter.\n", + "He is cunning, as I know from Mr. Jonathan and from the way that all\n", + "along he have fooled us when he played with us for Miss Lucy’s life, and\n", + "we lost; and in many ways the Un-Dead are strong. He have always the\n", + "to Miss Lucy it also is all to him. Besides, he can summon his wolf and\n", + "Un-Dead woman sleep, and the one old man watch.\n", + "“Therefore I write this in case.... Take the papers that are with this,\n", + "the diaries of Harker and the rest, and read them, and then find this\n", + "great Un-Dead, and cut off his head and burn his heart or drive a stake\n", + "“If it be so, farewell.\n", + "“VAN HELSING.”\n", + "_Dr. Seward’s Diary._\n", + "_28 September._--It is wonderful what a good night’s sleep will do for\n", + "one. Yesterday I was almost willing to accept Van Helsing’s monstrous\n", + "the Professor can have done it himself? He is so abnormally clever that\n", + "it would be almost as great a marvel as the other to find that Van\n", + "Helsing was mad; but anyhow I shall watch him carefully. I may get some\n", + "_29 September, morning._.... Last night, at a little before ten o’clock,\n", + "Arthur and Quincey came into Van Helsing’s room; he told us all that he\n", + "wanted us to do, but especially addressing himself to Arthur, as if all\n", + "there. You were doubtless surprised at my letter?” This query was\n", + "directly addressed to Lord Godalming.\n", + "“Me too,” said Quincey Morris laconically.\n", + "“Oh,” said the Professor, “then you are nearer the beginning, both of\n", + "you, than friend John here, who has to go a long way back before he can\n", + "It was evident that he recognised my return to my old doubting frame of\n", + "“That’s frank anyhow,” broke in Quincey. “I’ll answer for the Professor.\n", + "“I thank you, sir,” said Van Helsing proudly. “I have done myself the\n", + "to me.” He held out a hand, which Quincey took.\n", + "Then Arthur spoke out:--\n", + "“Dr. Van Helsing, I don’t quite like to ‘buy a pig in a poke,’ as they\n", + "say in Scotland, and if it be anything in which my honour as a gentleman\n", + "or my faith as a Christian is concerned, I cannot make such a promise.\n", + "If you can assure me that what you intend does not violate either of\n", + "“I accept your limitation,” said Van Helsing, “and all I ask of you is\n", + "“Agreed!” said Arthur; “that is only fair. And now that the\n", + "Kingstead.”\n", + "Arthur’s face fell as he said in an amazed sort of way:--\n", + "“Where poor Lucy is buried?” The Professor bowed. Arthur went on: “And\n", + "“To enter the tomb!” Arthur stood up.\n", + "“Professor, are you in earnest; or it is some monstrous joke? Pardon me,\n", + "I see that you are in earnest.” He sat down again, but I could see that\n", + "“And when in the tomb?”\n", + "“To open the coffin.”\n", + "“This is too much!” he said, angrily rising again. “I am willing to be\n", + "of the grave--of one who----” He fairly choked with indignation. The\n", + "Professor looked pityingly at him.\n", + "“If I could spare you one pang, my poor friend,” he said, “God knows I\n", + "Arthur looked up with set white face and said:--\n", + "“Take care, sir, take care!”\n", + "“Would it not be well to hear what I have to say?” said Van Helsing.\n", + "“And then you will at least know the limit of my purpose. Shall I go\n", + "“That’s fair enough,” broke in Morris.\n", + "After a pause Van Helsing went on, evidently with an effort:--\n", + "“Miss Lucy is dead; is it not so? Yes! Then there can be no wrong to\n", + "Arthur jumped to his feet.\n", + "“Good God!” he cried. “What do you mean? Has there been any mistake; has\n", + "she been buried alive?” He groaned in anguish that not even hope could\n", + "further than to say that she might be Un-Dead.”\n", + "“Un-Dead! Not alive! What do you mean? Is this all a nightmare, or what\n", + "“There are mysteries which men can only guess at, which age by age they\n", + "I have not done. May I cut off the head of dead Miss Lucy?”\n", + "“Heavens and earth, no!” cried Arthur in a storm of passion. “Not for\n", + "Van Helsing, you try me too far. What have I done to you that you should\n", + "torture me so? What did that poor, sweet girl do that you should want to\n", + "cast such dishonour on her grave? Are you mad to speak such things, or\n", + "am I mad to listen to them? Don’t dare to think more of such a\n", + "duty to do in protecting her grave from outrage; and, by God, I shall do\n", + "Van Helsing rose up from where he had all the time been seated, and\n", + "“My Lord Godalming, I, too, have a duty to do, a duty to others, a duty\n", + "to you, a duty to the dead; and, by God, I shall do it! All I ask you\n", + "may seem to me. And then, to follow of your Lordship’s wishes I shall\n", + "you will.” His voice broke a little, and he went on with a voice full of\n", + "“But, I beseech you, do not go forth in anger with me. In a long life of\n", + "to do what I can of good; at the first to please my friend John, and\n", + "even now, when she is the dead Un-Dead, she shall have it freely.” He\n", + "said this with a very grave, sweet pride, and Arthur was much affected\n", + "“Oh, it is hard to think of it, and I cannot understand; but at least I\n", + "CHAPTER XVI\n", + "DR. SEWARD’S DIARY--_continued_\n", + "It was just a quarter before twelve o’clock when we got into the\n", + "the sky. We all kept somehow close together, with Van Helsing slightly\n", + "well at Arthur, for I feared that the proximity to a place laden with so\n", + "to his grief. The Professor unlocked the door, and seeing a natural\n", + "He then lit a dark lantern and pointed to the coffin. Arthur stepped\n", + "forward hesitatingly; Van Helsing said to me:--\n", + "“You were with me here yesterday. Was the body of Miss Lucy in that\n", + "“It was.” The Professor turned to the rest saying:--\n", + "“You hear; and yet there is no one who does not believe with me.” He\n", + "Van Helsing forced back the leaden flange, and we all looked in and\n", + "The coffin was empty!\n", + "For several minutes no one spoke a word. The silence was broken by\n", + "Quincey Morris:--\n", + "“Professor, I answered for you. Your word is all I want. I wouldn’t ask\n", + "Is this your doing?”\n", + "touched her. What happened was this: Two nights ago my friend Seward and\n", + "day-time, and she lay there. Did she not, friend John?”\n", + "“Yes.”\n", + "“That night we were just in time. One more so small child was missing,\n", + "and we find it, thank God, unharmed amongst the graves. Yesterday I came\n", + "here before sundown, for at sundown the Un-Dead can move. I waited here\n", + "which the Un-Dead cannot bear, and other things which they shun. Last\n", + "So”--here he shut the dark slide of his lantern--“now to the outside.”\n", + "He opened the door, and we filed out, he coming last and locking the\n", + "Oh! but it seemed fresh and pure in the night air after the terror of\n", + "throw aside doubt and to accept Van Helsing’s conclusions. Quincey\n", + "Morris was phlegmatic in the way of a man who accepts all things, and\n", + "tobacco and began to chew. As to Van Helsing, he was employed in a\n", + "asked him what it was that he was doing. Arthur and Quincey drew near\n", + "“I am closing the tomb, so that the Un-Dead may not enter.”\n", + "“And is that stuff you have put there going to do it?” asked Quincey.\n", + "“Great Scott! Is this a game?”\n", + "“It is.”\n", + "“What is that which you are using?” This time the question was by\n", + "Arthur. Van Helsing reverently lifted his hat as he answered:--\n", + "“The Host. I brought it from Amsterdam. I have an Indulgence.” It was an\n", + "that in the presence of such earnest purpose as the Professor’s, a\n", + "one approaching. I pitied the others, especially Arthur. I had myself\n", + "There was a long spell of silence, a big, aching void, and then from the\n", + "Professor a keen “S-s-s-s!” He pointed; and far down the avenue of yews\n", + "We could not see the face, for it was bent down over what we saw to be a\n", + "were starting forward, but the Professor’s warning hand, seen by us as\n", + "and I could hear the gasp of Arthur, as we recognised the features of\n", + "Lucy Westenra. Lucy Westenra, but yet how changed. The sweetness was\n", + "wantonness. Van Helsing stepped out, and, obedient to his gesture, we\n", + "tomb. Van Helsing raised his lantern and drew the slide; by the\n", + "concentrated light that fell on Lucy’s face we could see that the lips\n", + "We shuddered with horror. I could see by the tremulous light that even\n", + "Van Helsing’s iron nerve had failed. Arthur was next to me, and if I had\n", + "When Lucy--I call the thing that was before us Lucy because it bore her\n", + "and colour; but Lucy’s eyes unclean and full of hell-fire, instead of\n", + "light, and the face became wreathed with a voluptuous smile. Oh, God,\n", + "how it made me shudder to see it! With a careless motion, she flung to\n", + "was a cold-bloodedness in the act which wrung a groan from Arthur; when\n", + "She still advanced, however, and with a languorous, voluptuous grace,\n", + "“Come to me, Arthur. Leave these others and come to me. My arms are\n", + "There was something diabolically sweet in her tones--something of the\n", + "who heard the words addressed to another. As for Arthur, he seemed under\n", + "was leaping for them, when Van Helsing sprang forward and held between\n", + "When within a foot or two of the door, however, she stopped, as if\n", + "quiver from Van Helsing’s iron nerves. Never did I see such baffled\n", + "the flesh were the coils of Medusa’s snakes, and the lovely,\n", + "the Greeks and Japanese. If ever a face meant death--if looks could\n", + "And so for full half a minute, which seemed an eternity, she remained\n", + "entry. Van Helsing broke the silence by asking Arthur:--\n", + "“Answer me, oh my friend! Am I to proceed in my work?”\n", + "Arthur threw himself on his knees, and hid his face in his hands, as he\n", + "“Do as you will, friend; do as you will. There can be no horror like\n", + "click of the closing lantern as Van Helsing held it down; coming close\n", + "relief when we saw the Professor calmly restoring the strings of putty\n", + "When this was done, he lifted the child and said:\n", + "“Come now, my friends; we can do no more till to-morrow. There is a\n", + "him, as on the other night; and then to home.” Coming close to Arthur,\n", + "“My friend Arthur, you have had a sore trial; but after, when you look\n", + "waters, my child. By this time to-morrow you will, please God, have\n", + "Arthur and Quincey came home with me, and we tried to cheer each other\n", + "_29 September, night._--A little before twelve o’clock we three--Arthur,\n", + "Quincey Morris, and myself--called for the Professor. It was odd to\n", + "course, Arthur wore black, for he was in deep mourning, but the rest of\n", + "ourselves. Van Helsing, instead of his little black bag, had with him a\n", + "When we were alone and had heard the last of the footsteps die out up\n", + "Professor to the tomb. He unlocked the door, and we entered, closing it\n", + "by. When he again lifted the lid off Lucy’s coffin we all looked--Arthur\n", + "loathing for the foul Thing which had taken Lucy’s shape without her\n", + "soul. I could see even Arthur’s face grow hard as he looked. Presently\n", + "he said to Van Helsing:--\n", + "“Is this really Lucy’s body, or only a demon in her shape?”\n", + "“It is her body, and yet not it. But wait a while, and you all see her\n", + "She seemed like a nightmare of Lucy as she lay there; the pointed teeth,\n", + "devilish mockery of Lucy’s sweet purity. Van Helsing, with his usual\n", + "bracing, but the effect of these things on both Arthur and Quincey was\n", + "When all was ready, Van Helsing said:--\n", + "“Before we do anything, let me tell you this; it is out of the lore and\n", + "of the Un-Dead. When they become such, there comes with the change the\n", + "die from the preying of the Un-Dead becomes themselves Un-Dead, and prey\n", + "ripples from a stone thrown in the water. Friend Arthur, if you had met\n", + "that kiss which you know of before poor Lucy die; or again, last night\n", + "have become _nosferatu_, as they call it in Eastern Europe, and would\n", + "all time make more of those Un-Deads that so have fill us with horror.\n", + "The career of this so unhappy dear lady is but just begun. Those\n", + "she live on, Un-Dead, more and more they lose their blood and by her\n", + "this now Un-Dead be made to rest as true dead, then the soul of the poor\n", + "shall take her place with the other Angels. So that, my friend, it will\n", + "To this I am willing; but is there none amongst us who has a better\n", + "right? Will it be no joy to think of hereafter in the silence of the\n", + "night when sleep is not: ‘It was my hand that sent her to the stars; it\n", + "herself have chosen, had it been to her to choose?’ Tell me if there be\n", + "We all looked at Arthur. He saw, too, what we all did, the infinite\n", + "Lucy to us as a holy, and not an unholy, memory; he stepped forward and\n", + "“My true friend, from the bottom of my broken heart I thank you. Tell me\n", + "what I am to do, and I shall not falter!” Van Helsing laid a hand on his\n", + "“Brave lad! A moment’s courage, and it is done. This stake must be\n", + "“Go on,” said Arthur hoarsely. “Tell me what I am to do.”\n", + "“Take this stake in your left hand, ready to place the point over the\n", + "follow--strike in God’s name, that so all may be well with the dead that\n", + "we love and that the Un-Dead pass away.”\n", + "Arthur took the stake and the hammer, and when once his mind was set on\n", + "action his hands never trembled nor even quivered. Van Helsing opened\n", + "his missal and began to read, and Quincey and I followed as well as we\n", + "The Thing in the coffin writhed; and a hideous, blood-curdling screech\n", + "lips were cut, and the mouth was smeared with a crimson foam. But Arthur\n", + "never faltered. He looked like a figure of Thor as his untrembling arm\n", + "And then the writhing and quivering of the body became less, and the\n", + "The hammer fell from Arthur’s hand. He reeled and would have fallen had\n", + "to the other of us. We gazed so eagerly that Arthur rose, for he had\n", + "There, in the coffin lay no longer the foul Thing that we had so dreaded\n", + "privilege to the one best entitled to it, but Lucy as we had seen her in\n", + "Van Helsing came and laid his hand on Arthur’s shoulder, and said to\n", + "“And now, Arthur my friend, dear lad, am I not forgiven?”\n", + "The reaction of the terrible strain came as he took the old man’s hand\n", + "“Forgiven! God bless you that you have given my dear one her soul again,\n", + "and me peace.” He put his hands on the Professor’s shoulder, and laying\n", + "unmoving. When he raised his head Van Helsing said to him:--\n", + "“And now, my child, you may kiss her. Kiss her dead lips if you will, as\n", + "devil now--not any more a foul Thing for all eternity. No longer she is\n", + "the devil’s Un-Dead. She is God’s true dead, whose soul is with Him!”\n", + "Arthur bent and kissed her, and then we sent him and Quincey out of the\n", + "tomb; the Professor and I sawed the top off the stake, leaving the point\n", + "and gathering up our belongings, came away. When the Professor locked\n", + "the door he gave the key to Arthur.\n", + "Outside the air was sweet, the sun shone, and the birds sang, and it\n", + "Before we moved away Van Helsing said:--\n", + "“Now, my friends, one step of our work is done, one the most harrowing\n", + "it, and pain. Shall you not all help me? We have learned to believe, all\n", + "of us--is it not so? And since so, do we not see our duty? Yes! And do\n", + "Each in turn, we took his hand, and the promise was made. Then said the\n", + "Professor as we moved off:--\n", + "“Two nights hence you shall meet with me and dine together at seven of\n", + "the clock with friend John. I shall entreat two others, two that you\n", + "unfold. Friend John, you come with me home, for I have much to consult\n", + "about, and you can help me. To-night I leave for Amsterdam, but shall\n", + "Then our promise shall be made to each other anew; for there is a\n", + "CHAPTER XVII\n", + "DR. SEWARD’S DIARY--_continued_\n", + "When we arrived at the Berkeley Hotel, Van Helsing found a telegram\n", + "“Am coming up by train. Jonathan at Whitby. Important news.--MINA\n", + "HARKER.”\n", + "The Professor was delighted. “Ah, that wonderful Madam Mina,” he said,\n", + "“pearl among women! She arrive, but I cannot stay. She must go to your\n", + "house, friend John. You must meet her at the station. Telegraph her _en\n", + "When the wire was despatched he had a cup of tea; over it he told me of\n", + "a diary kept by Jonathan Harker when abroad, and gave me a typewritten\n", + "copy of it, as also of Mrs. Harker’s diary at Whitby. “Take these,” he\n", + "many another; or it may sound the knell of the Un-Dead who walk the\n", + "kept diary of all these so strange things; is it not so? Yes! Then we\n", + "shall go through all these together when we meet.” He then made ready\n", + "for his departure, and shortly after drove off to Liverpool Street. I\n", + "took my way to Paddington, where I arrived about fifteen minutes before\n", + "The crowd melted away, after the bustling fashion common to arrival\n", + "after a quick glance, said: “Dr. Seward, is it not?”\n", + "“And you are Mrs. Harker!” I answered at once; whereupon she held out\n", + "“I knew you from the description of poor dear Lucy; but----” She stopped\n", + "The blush that rose to my own cheeks somehow set us both at ease, for it\n", + "typewriter, and we took the Underground to Fenchurch Street, after I had\n", + "prepared at once for Mrs. Harker.\n", + "In due time we arrived. She knew, of course, that the place was a\n", + "She told me that, if she might, she would come presently to my study, as\n", + "the papers which Van Helsing left with me, though they lie open before\n", + "_Mina Harker’s Journal._\n", + "_29 September._--After I had tidied myself, I went down to Dr. Seward’s\n", + "the door, and on his calling out, “Come in,” I entered.\n", + "To my intense surprise, there was no one with him. He was quite alone,\n", + "“Oh,” he replied with a smile, “I was only entering my diary.”\n", + "“Your diary?” I asked him in surprise.\n", + "“Yes,” he answered. “I keep it in this.” As he spoke he laid his hand on\n", + "“Why, this beats even shorthand! May I hear it say something?”\n", + "“Certainly,” he replied with alacrity, and stood up to put it in train\n", + "“The fact is,” he began awkwardly, “I only keep my diary in it; and as\n", + "is, I mean----” He stopped, and I tried to help him out of his\n", + "“You helped to attend dear Lucy at the end. Let me hear how she died;\n", + "To my surprise, he answered, with a horrorstruck look in his face:--\n", + "“Tell you of her death? Not for the wide world!”\n", + "“Why not?” I asked, for some grave, terrible feeling was coming over me.\n", + "Again he paused, and I could see that he was trying to invent an excuse.\n", + "At length he stammered out:--\n", + "“You see, I do not know how to pick out any particular part of the\n", + "diary.” Even while he was speaking an idea dawned upon him, and he said\n", + "of a child: “That’s quite true, upon my honour. Honest Indian!” I could\n", + "said. “But do you know that, although I have kept the diary for months\n", + "part of it in case I wanted to look it up?” By this time my mind was\n", + "made up that the diary of a doctor who attended Lucy might have\n", + "something to add to the sum of our knowledge of that terrible Being, and\n", + "“Then, Dr. Seward, you had better let me copy it out for you on my\n", + "typewriter.” He grew to a positively deathly pallor as he said:--\n", + "“No! no! no! For all the world, I wouldn’t let you know that terrible\n", + "Then it was terrible; my intuition was right! For a moment I thought,\n", + "“You do not know me,” I said. “When you have read those papers--my own\n", + "He is certainly a man of noble nature; poor dear Lucy was right about\n", + "“You are quite right. I did not trust you because I did not know you.\n", + "But I know you now; and let me say that I should have known you long\n", + "ago. I know that Lucy told you of me; she told me of you too. May I make\n", + "the only atonement in my power? Take the cylinders and hear them--the\n", + "able to understand certain things.” He carried the phonograph himself up\n", + "_Dr. Seward’s Diary._\n", + "_29 September._--I was so absorbed in that wonderful diary of Jonathan\n", + "Harker and that other of his wife that I let the time run on without\n", + "dinner, so I said: “She is possibly tired; let dinner wait an hour,” and\n", + "I went on with my work. I had just finished Mrs. Harker’s diary, when\n", + "cause for tears, God knows! but the relief of them was denied me; and\n", + "“Oh, no, not distressed me,” she replied, “but I have been more touched\n", + "It was like a soul crying out to Almighty God. No one must hear them\n", + "spoken ever again! See, I have tried to be useful. I have copied out the\n", + "“No one need ever know, shall ever know,” I said in a low voice. She\n", + "“Ah, but they must!”\n", + "“Must! But why?” I asked.\n", + "“Because it is a part of the terrible story, a part of poor dear Lucy’s\n", + "point; and I see already, though your diary only took me to 7 September,\n", + "how poor Lucy was beset, and how her terrible doom was being wrought\n", + "out. Jonathan and I have been working day and night since Professor Van\n", + "Helsing saw us. He is gone to Whitby to get more information, and he\n", + "if some of us were in the dark.” She looked at me so appealingly, and at\n", + "that I gave in at once to her wishes. “You shall,” I said, “do as you\n", + "like in the matter. God forgive me if I do wrong! There are terrible\n", + "poor Lucy’s death, you will not be content, I know, to remain in the\n", + "_Mina Harker’s Journal._\n", + "_29 September._--After dinner I came with Dr. Seward to his study. He\n", + "When the terrible story of Lucy’s death, and--and all that followed, was\n", + "fainting disposition. When Dr. Seward saw me he jumped up with a\n", + "the multitude of horrors, the holy ray of light that my dear, dear Lucy\n", + "had not known Jonathan’s experience in Transylvania I could not have\n", + "typewriter, and said to Dr. Seward:--\n", + "“Let me write this all out now. We must be ready for Dr. Van Helsing\n", + "when he comes. I have sent a telegram to Jonathan to come on here when\n", + "he arrives in London from Whitby. In this matter dates are everything,\n", + "Lord Godalming and Mr. Morris are coming too. Let us be able to tell him\n", + "when they come.” He accordingly set the phonograph at a slow pace, and I\n", + "all the rest. It was late when I got through, but Dr. Seward went about\n", + "remembered what Jonathan put in his diary of the Professor’s\n", + "Exeter; so, seeing that Dr. Seward keeps his newspapers, I borrowed the\n", + "files of “The Westminster Gazette” and “The Pall Mall Gazette,” and took\n", + "them to my room. I remember how much “The Dailygraph” and “The Whitby\n", + "Gazette,” of which I had made cuttings, helped us to understand the\n", + "terrible events at Whitby when Count Dracula landed, so I shall look\n", + "_Dr. Seward’s Diary._\n", + "_30 September._--Mr. Harker arrived at nine o’clock. He had got his\n", + "_Later._--After lunch Harker and his wife went back to their own room,\n", + "the letters between the consignee of the boxes at Whitby and the\n", + "carriers in London who took charge of them. He is now reading his wife’s\n", + "Strange that it never struck me that the very next house might be\n", + "the Count’s hiding-place! Goodness knows that we had enough clues\n", + "from the conduct of the patient Renfield! The bundle of letters\n", + "if we had only had them earlier we might have saved poor Lucy!\n", + "Stop; that way madness lies! Harker has gone back, and is again\n", + "meantime I should see Renfield, as hitherto he has been a sort of\n", + "index to the coming and going of the Count. I hardly see this yet,\n", + "that Mrs. Harker put my cylinders into type! We never could have\n", + "I found Renfield sitting placidly in his room with his hands\n", + "not had the chat with Harker and read the letters and the dates of\n", + "Count. What then does this absolute content mean? Can it be that\n", + "Stay; he is himself zoöphagous, and in his wild ravings outside the\n", + "chapel door of the deserted house he always spoke of “master.” This\n", + "and then--! So I came away. I mistrust these quiet moods of his; so\n", + "_Jonathan Harker’s Journal._\n", + "_29 September, in train to London._--When I received Mr. Billington’s\n", + "thought it best to go down to Whitby and make, on the spot, such\n", + "of the Count’s to its place in London. Later, we may be able to deal\n", + "stay the night. They are hospitable, with true Yorkshire hospitality:\n", + "knew that I was busy, and that my stay was short, and Mr. Billington had\n", + "It gave me almost a turn to see again one of the letters which I had\n", + "seen on the Count’s table before I knew of his diabolical plans.\n", + "Everything had been carefully thought out, and done systematically and\n", + "out. To use an Americanism, he had “taken no chances,” and the absolute\n", + "“Fifty cases of common earth, to be used for experimental purposes.”\n", + "Also the copy of letter to Carter Paterson, and their reply; of both of\n", + "these I got copies. This was all the information Mr. Billington could\n", + "give me, so I went down to the port and saw the coastguards, the Customs\n", + "tradition; but no one could add to the simple description “Fifty cases\n", + "_30 September._--The station-master was good enough to give me a line to\n", + "his old companion the station-master at King’s Cross, so that when I\n", + "From thence I went on to Carter Paterson’s central office, where I met\n", + "day-book and letter-book, and at once telephoned to their King’s Cross\n", + "delivery of the boxes at Carfax. Here again I found the tally agreeing\n", + "“That ’ere ’ouse, guv’nor, is the rummiest I ever was in. Blyme! but it\n", + "Jerusalem in it. But the ole chapel--that took the cike, that did! Me\n", + "Having been in the house, I could well believe him; but if he knew what\n", + "Of one thing I am now satisfied: that _all_ the boxes which arrived at\n", + "Whitby from Varna in the _Demeter_ were safely deposited in the old\n", + "chapel at Carfax. There should be fifty of them there, unless any have\n", + "since been removed--as from Dr. Seward’s diary I fear.\n", + "I shall try to see the carter who took away the boxes from Carfax when\n", + "Renfield attacked them. By following up this clue we may learn a good\n", + "_Later._--Mina and I have worked all day, and we have put all the papers\n", + "_Mina Harker’s Journal_\n", + "_30 September._--I am so glad that I hardly know how to contain myself.\n", + "It is, I suppose, the reaction from the haunting fear which I have had:\n", + "detrimentally on Jonathan. I saw him leave for Whitby with as brave a\n", + "Professor Van Helsing said: he is true grit, and he improves under\n", + "thing so hunted as is the Count. That is just it: this Thing is not\n", + "human--not even beast. To read Dr. Seward’s account of poor Lucy’s\n", + "_Later._--Lord Godalming and Mr. Morris arrived earlier than we\n", + "expected. Dr. Seward was out on business, and had taken Jonathan with\n", + "brought back all poor dear Lucy’s hopes of only a few months ago. Of\n", + "course they had heard Lucy speak of me, and it seemed that Dr. Van\n", + "Helsing, too, has been quite “blowing my trumpet,” as Mr. Morris\n", + "about the proposals they made to Lucy. They did not quite know what to\n", + "them in affairs right up to date. I knew from Dr. Seward’s diary that\n", + "they had been at Lucy’s death--her real death--and that I need not fear\n", + "I gave them each a copy to read in the library. When Lord Godalming got\n", + "“Did you write all this, Mrs. Harker?”\n", + "to the last hour of his life. Besides, I know you loved my poor Lucy--”\n", + "Here he turned away and covered his face with his hands. I could hear\n", + "Lord Godalming found himself alone with me he sat down on the sofa and\n", + "“I loved dear Lucy, and I know what she was to you, and what you were to\n", + "Lucy’s sake?”\n", + "In an instant the poor dear fellow was overwhelmed with grief. It seemed\n", + "We women have something of the mother in us that makes us rise above\n", + "After a little bit his sobs ceased, and he raised himself with an\n", + "like a brother, will you not, for all our lives--for dear Lucy’s sake?”\n", + "“For dear Lucy’s sake,” I said as we clasped hands. “Ay, and for your\n", + "will let me know.” He was so earnest, and his sorrow was so fresh, that\n", + "As I came along the corridor I saw Mr. Morris looking out of a window.\n", + "He turned as he heard my footsteps. “How is Art?” he said. Then noticing\n", + "my red eyes, he went on: “Ah, I see you have been comforting him. Poor\n", + "He bore his own trouble so bravely that my heart bled for him. I saw the\n", + "be your friend, and will you come to me for comfort if you need it? You\n", + "will know, later on, why I speak.” He saw that I was in earnest, and\n", + "“Little girl, you will never regret that true-hearted kindness, so long\n", + "as ever you live!” Then he went into the study to his friend.\n", + "“Little girl!”--the very words he had used to Lucy, and oh, but he\n", + "CHAPTER XVIII\n", + "DR. SEWARD’S DIARY\n", + "_30 September._--I got home at five o’clock, and found that Godalming\n", + "and Morris had not only arrived, but had already studied the transcript\n", + "of the various diaries and letters which Harker and his wonderful wife\n", + "carriers’ men, of whom Dr. Hennessey had written to me. Mrs. Harker gave\n", + "finished, Mrs. Harker said:--\n", + "“Dr. Seward, may I ask a favour? I want to see your patient, Mr.\n", + "Renfield. Do let me see him. What you have said of him in your diary\n", + "interests me so much!” She looked so appealing and so pretty that I\n", + "lady would like to see him; to which he simply answered: “Why?”\n", + "“She is going through the house, and wants to see every one in it,” I\n", + "answered. “Oh, very well,” he said; “let her come in, by all means; but\n", + "just wait a minute till I tidy up the place.” His method of tidying was\n", + "task, he said cheerfully: “Let the lady come in,” and sat down on the\n", + "“Good-evening, Mr. Renfield,” said she. “You see, I know you, for Dr.\n", + "Seward has told me of you.” He made no immediate reply, but eyed her all\n", + "“You’re not the girl the doctor wanted to marry, are you? You can’t be,\n", + "you know, for she’s dead.” Mrs. Harker smiled sweetly as she replied:--\n", + "“Oh no! I have a husband of my own, to whom I was married before I ever\n", + "saw Dr. Seward, or he me. I am Mrs. Harker.”\n", + "“Then what are you doing here?”\n", + "“My husband and I are staying on a visit with Dr. Seward.”\n", + "“Then don’t stay.”\n", + "“But why not?” I thought that this style of conversation might not be\n", + "pleasant to Mrs. Harker, any more than it was to me, so I joined in:--\n", + "“How did you know I wanted to marry any one?” His reply was simply\n", + "contemptuous, given in a pause in which he turned his eyes from Mrs.\n", + "Harker to me, instantly turning them back again:--\n", + "“What an asinine question!”\n", + "“I don’t see that at all, Mr. Renfield,” said Mrs. Harker, at once\n", + "“You will, of course, understand, Mrs. Harker, that when a man is so\n", + "gentleman. I wonder if it was Mrs. Harker’s presence which had touched\n", + "We continued to talk for some time; and, seeing that he was seemingly\n", + "“Why, I myself am an instance of a man who had a strange belief. Indeed,\n", + "blood--relying, of course, upon the Scriptural phrase, ‘For the blood is\n", + "the life.’ Though, indeed, the vendor of a certain nostrum has\n", + "saw that I should go to the station to meet Van Helsing, so I told Mrs.\n", + "Harker that it was time to leave. She came at once, after saying\n", + "pleasantly to Mr. Renfield: “Good-bye, and I hope I may see you often,\n", + "“Good-bye, my dear. I pray God I may never see your sweet face again.\n", + "May He bless and keep you!”\n", + "When I went to the station to meet Van Helsing I left the boys behind\n", + "me. Poor Art seemed more cheerful than he has been since Lucy first took\n", + "ill, and Quincey is more like his own bright self than he has been for\n", + "Van Helsing stepped from the carriage with the eager nimbleness of a\n", + "“Ah, friend John, how goes all? Well? So! I have been busy, for I come\n", + "much to tell. Madam Mina is with you? Yes. And her so fine husband? And\n", + "Arthur and my friend Quincey, they are with you, too? Good!”\n", + "As I drove to the house I told him of what had passed, and of how my own\n", + "diary had come to be of some use through Mrs. Harker’s suggestion; at\n", + "which the Professor interrupted me:--\n", + "“Ah, that wonderful Madam Mina! She has man’s brain--a brain that a man\n", + "should have were he much gifted--and a woman’s heart. The good God\n", + "fashioned her for a purpose, believe me, when He made that so good\n", + "combination. Friend John, up to now fortune has made that woman of help\n", + "had found in his absence: that the house which Dracula had bought was\n", + "to come on him. “Oh that we had known it before!” he said, “for then we\n", + "might have reached him in time to save poor Lucy. However, ‘the milk\n", + "of that, but go on our way to the end.” Then he fell into a silence that\n", + "dinner he said to Mrs. Harker:--\n", + "“I am told, Madam Mina, by my friend John that you and your husband have\n", + "“Not up to this moment, Professor,” she said impulsively, “but up to\n", + "“But why not up to now? We have seen hitherto how good light all the\n", + "Mrs. Harker began to blush, and taking a paper from her pockets, she\n", + "“Dr. Van Helsing, will you read this, and tell me if it must go in. It\n", + "what is personal. Must it go in?” The Professor read it over gravely,\n", + "“It need not go in if you do not wish it; but I pray that it may. It can\n", + "honour you--as well as more esteem and love.” She took it back with\n", + "And so now, up to this very hour, all the records we have are complete\n", + "and in order. The Professor took away one copy to study after dinner,\n", + "_Mina Harker’s Journal._\n", + "_30 September._--When we met in Dr. Seward’s study two hours after\n", + "board or committee. Professor Van Helsing took the head of the table, to\n", + "which Dr. Seward motioned him as he came into the room. He made me sit\n", + "next to him on his right, and asked me to act as secretary; Jonathan sat\n", + "next to me. Opposite us were Lord Godalming, Dr. Seward, and Mr.\n", + "Morris--Lord Godalming being next the Professor, and Dr. Seward in the\n", + "centre. The Professor said:--\n", + "that are in these papers.” We all expressed assent, and he went on:--\n", + "“Then it were, I think good that I tell you something of the kind of\n", + "So we then can discuss how we shall act, and can take our measure\n", + "“There are such beings as vampires; some of us have evidence that they\n", + "have believe until such time as that fact thunder on my ear. ‘See! see!\n", + "I prove; I prove.’ Alas! Had I known at the first what now I know--nay,\n", + "begin our strike to destroy him? How shall we find his where; and having\n", + "found it, how can we destroy? My friends, this is much; it is a terrible\n", + "where end we? Life is nothings; I heed him not. But to fail here, is not\n", + "We go on for all time abhorred by all; a blot on the face of God’s\n", + "sunshine; an arrow in the side of Him who died for man. But we are face\n", + "to face with duty; and in such case must we shrink? For me, I say, no;\n", + "Whilst he was speaking, Jonathan had taken my hand. I feared, oh so\n", + "When the Professor had done speaking my husband looked in my eyes, and I\n", + "“I answer for Mina and myself,” he said.\n", + "“Count me in, Professor,” said Mr. Quincey Morris, laconically as usual.\n", + "“I am with you,” said Lord Godalming, “for Lucy’s sake, if for no other\n", + "Dr. Seward simply nodded. The Professor stood up and, after laying his\n", + "his right hand, and Lord Godalming his left; Jonathan held my right with\n", + "his left and stretched across to Mr. Morris. So as we all took hands our\n", + "occur to me to draw back. We resumed our places, and Dr. Van Helsing\n", + "“Well, you know what we have to contend against; but we, too, are not\n", + "In fact, so far as our powers extend, they are unfettered, and we are\n", + "“Now let us see how far the general powers arrayed against us are\n", + "“All we have to go upon are traditions and superstitions. These do not\n", + "sceptical, matter-of-fact nineteenth century? We even scouted a belief\n", + "that men have been. In old Greece, in old Rome; he flourish in Germany\n", + "all over, in France, in India, even in the Chernosese; and in China, so\n", + "this day. He have follow the wake of the berserker Icelander, the\n", + "devil-begotten Hun, the Slav, the Saxon, the Magyar. So far, then, we\n", + "Jonathan, who lived with him for weeks, did never see him to eat, never!\n", + "He throws no shadow; he make in the mirror no reflect, as again\n", + "Jonathan observe. He has the strength of many of his hand--witness again\n", + "Jonathan when he shut the door against the wolfs, and when he help him\n", + "from the ship arrival in Whitby, when he tear open the dog; he can be as\n", + "bat, as Madam Mina saw him on the window at Whitby, and as friend John\n", + "saw him fly from this so near house, and as my friend Quincey saw him at\n", + "the window of Miss Lucy. He can come in mist which he create--that noble\n", + "come on moonlight rays as elemental dust--as again Jonathan saw those\n", + "sisters in the castle of Dracula. He become so small--we ourselves saw\n", + "Miss Lucy, ere she was at peace, slip through a hairbreadth space at the\n", + "He cannot go where he lists; he who is not of nature has yet to obey\n", + "These things are we told, and in this record of ours we have proof by\n", + "Whitby; still at other time he can only change when the time come. It is\n", + "We have seen it with our eyes.\n", + "“Thus when we find the habitation of this man-that-was, we can confine\n", + "clever. I have asked my friend Arminius, of Buda-Pesth University, to\n", + "has been. He must, indeed, have been that Voivode Dracula who won his\n", + "name against the Turk, over the great river on the very frontier of\n", + "Turkey-land. If it be so, then was he no common man; for in that time,\n", + "forest.’ That mighty brain and that iron resolution went with him to his\n", + "grave, and are even now arrayed against us. The Draculas were, says\n", + "Arminius, a great and noble race, though now and again were scions who\n", + "were held by their coevals to have had dealings with the Evil One. They\n", + "learned his secrets in the Scholomance, amongst the mountains over Lake\n", + "Hermanstadt, where the devil claims the tenth scholar as his due. In the\n", + "‘pokol’--Satan and hell; and in one manuscript this very Dracula is\n", + "Whilst they were talking Mr. Morris was looking steadily at the window,\n", + "pause, and then the Professor went on:--\n", + "“And now we must settle what we do. We have here much data, and we must\n", + "proceed to lay out our campaign. We know from the inquiry of Jonathan\n", + "that from the castle to Whitby came fifty boxes of earth, all of which\n", + "were delivered at Carfax; we also know that at least some of these boxes\n", + "Here we were interrupted in a very startling way. Outside the house came\n", + "out. The men all jumped to their feet; Lord Godalming flew over to the\n", + "window and threw up the sash. As he did so we heard Mr. Morris’s voice\n", + "“Sorry! I fear I have alarmed you. I shall come in and tell you about\n", + "“It was an idiotic thing of me to do, and I ask your pardon, Mrs.\n", + "Harker, most sincerely; I fear I must have frightened you terribly. But\n", + "the fact is that whilst the Professor was talking there came a big bat\n", + "seen one. You used to laugh at me for it then, Art.”\n", + "“Did you hit it?” asked Dr. Van Helsing.\n", + "“I don’t know; I fancy not, for it flew away into the wood.” Without\n", + "saying any more he took his seat, and the Professor began to resume his\n", + "“We must trace each of these boxes; and when we are ready, we must\n", + "Thus in the end we may find him in his form of man between the hours of\n", + "“And now for you, Madam Mina, this night is the end until all be well.\n", + "You are too precious to us to have such risk. When we part to-night, you\n", + "All the men, even Jonathan, seemed relieved; but it did not seem to me\n", + "Mr. Morris resumed the discussion:--\n", + "“As there is no time to lose, I vote we have a look at his house right\n", + "me out of their counsels altogether. They have now gone off to Carfax,\n", + "Manlike, they had told me to go to bed and sleep; as if a woman can\n", + "to sleep, lest Jonathan have added anxiety about me when he returns.\n", + "_Dr. Seward’s Diary._\n", + "_1 October, 4 a. m._--Just as we were about to leave the house, an\n", + "urgent message was brought to me from Renfield to know if I would see\n", + "“He seems very importunate, sir. I have never seen him so eager. I don’t\n", + "cause, so I said: “All right; I’ll go now”; and I asked the others to\n", + "“Take me with you, friend John,” said the Professor. “His case in your\n", + "“May I come also?” asked Lord Godalming.\n", + "“Me too?” said Quincey Morris. “May I come?” said Harker. I nodded, and\n", + "We found him in a state of considerable excitement, but far more\n", + "the habit of equality, that I at once made the introduction: “Lord\n", + "Godalming; Professor Van Helsing; Mr. Quincey Morris, of Texas; Mr.\n", + "Renfield.” He shook hands with each of them, saying in turn:--\n", + "“Lord Godalming, I had the honour of seconding your father at the\n", + "Windham; I grieve to know, by your holding the title, that he is no\n", + "patronised on Derby night. Mr. Morris, you should be proud of your great\n", + "state. Its reception into the Union was a precedent which may have\n", + "far-reaching effects hereafter, when the Pole and the Tropics may hold\n", + "alliance to the Stars and Stripes. The power of Treaty may yet prove a\n", + "vast engine of enlargement, when the Monroe doctrine takes its true\n", + "meeting Van Helsing? Sir, I make no apology for dropping all forms of\n", + "And I am sure that you, Dr. Seward, humanitarian and medico-jurist as\n", + "be considered as under exceptional circumstances.” He made this last\n", + "So I contented myself with making a general statement that he appeared\n", + "“But I fear, Dr. Seward, that you hardly apprehend my wish. I desire to\n", + "before so admirable a practitioner as Dr. Seward so simple, yet so\n", + "momentous a wish, to ensure its fulfilment.” He looked at me keenly, and\n", + "“Is it possible that I have erred in my supposition?”\n", + "“You have,” I said frankly, but at the same time, as I felt, brutally.\n", + "There was a considerable pause, and then he said slowly:--\n", + "“Then I suppose I must only shift my ground of request. Let me ask for\n", + "your friends.” Again he looked at us all keenly. I had a growing\n", + "all lunatics, give himself away in the end. Van Helsing was gazing at\n", + "with the fixed concentration of his look. He said to Renfield in a tone\n", + "“Can you not tell frankly your real reason for wishing to be free\n", + "without prejudice, and with the habit of keeping an open mind--Dr.\n", + "Seward will give you, at his own risk and on his own responsibility, the\n", + "privilege you seek.” He shook his head sadly, and with a look of\n", + "poignant regret on his face. The Professor went on:--\n", + "“Come, sir, bethink yourself. You claim the privilege of reason in the\n", + "we perform the duty which you yourself put upon us? Be wise, and help\n", + "us; and if we can we shall aid you to achieve your wish.” He still shook\n", + "“Dr. Van Helsing, I have nothing to say. Your argument is complete, and\n", + "“Come, my friends, we have work to do. Good-night.”\n", + "As, however, I got near the door, a new change came over the patient. He\n", + "relations, he became still more demonstrative. I glanced at Van Helsing,\n", + "“Let me entreat you, Dr. Seward, oh, let me implore you, to let me out\n", + "By all you hold sacred--by all you hold dear--by your love that is\n", + "lost--by your hope that lives--for the sake of the Almighty, take me out\n", + "of this and save my soul from guilt! Can’t you hear me, man? Can’t you\n", + "understand? Will you never learn? Don’t you know that I am sane and\n", + "for his soul? Oh, hear me! hear me! Let me go! let me go! let me go!”\n", + "“Come,” I said sternly, “no more of this; we have had quite enough\n", + "He suddenly stopped and looked at me intently for several moments. Then,\n", + "When I was leaving the room, last of our party, he said to me in a\n", + "“You will, I trust, Dr. Seward, do me the justice to bear in mind, later\n", + "CHAPTER XIX\n", + "JONATHAN HARKER’S JOURNAL\n", + "_1 October, 5 a. m._--I went with the party to the search with an easy\n", + "mind, for I think I never saw Mina so absolutely strong and well. I am\n", + "Somehow, it was a dread to me that she was in this fearful business at\n", + "little upset by the scene with Mr. Renfield. When we came away from his\n", + "room we were silent till we got back to the study. Then Mr. Morris said\n", + "to Dr. Seward:--\n", + "“Say, Jack, if that man wasn’t attempting a bluff, he is about the\n", + "chance.” Lord Godalming and I were silent, but Dr. Van Helsing added:--\n", + "“Friend John, you know more of lunatics than I do, and I’m glad of it,\n", + "our present task we must take no chance, as my friend Quincey would say.\n", + "All is best as they are.” Dr. Seward seemed to answer them both in a\n", + "seems so mixed up with the Count in an indexy kind of way that I am\n", + "throat out with his teeth. Besides, he called the Count ‘lord and\n", + "That horrid thing has the wolves and the rats and his own kind to help\n", + "help to unnerve a man.” The Professor stepped over, and laying his hand\n", + "“Friend John, have no fear. We are trying to do our duty in a very sad\n", + "hope for, except the pity of the good God?” Lord Godalming had slipped\n", + "“That old place may be full of rats, and if so, I’ve got an antidote on\n", + "call.” Having passed the wall, we took our way to the house, taking care\n", + "out. When we got to the porch the Professor opened his bag and took out\n", + "“My friends, we are going into a terrible danger, and we need arms of\n", + "which we must not desecrate needless.” This was a portion of Sacred\n", + "Wafer, which he put in an envelope and handed to me. Each of the others\n", + "was similarly equipped. “Now,” he said, “friend John, where are the\n", + "skeleton keys? If so that we can open the door, we need not break house\n", + "by the window, as before at Miss Lucy’s.”\n", + "Dr. Seward tried one or two skeleton keys, his mechanical dexterity as a\n", + "Dr. Seward’s diary of the opening of Miss Westenra’s tomb; I fancy that\n", + "shrank back. The Professor was the first to move forward, and stepped\n", + "“_In manus tuas, Domine!_” he said, crossing himself as he passed over\n", + "Professor carefully tried the lock, lest we might not be able to open it\n", + "The light from the tiny lamps fell in all sorts of odd forms, as the\n", + "experience in Transylvania. I think the feeling was common to us all,\n", + "The whole place was thick with dust. The floor was seemingly inches\n", + "in the blanket of dust, similar to that exposed when the Professor\n", + "“You know this place, Jonathan. You have copied maps of it, and you know\n", + "“This is the spot,” said the Professor as he turned his lamp on a small\n", + "encountered. None of the others had met the Count at all at close\n", + "air. But as to the odour itself, how shall I describe it? It was not\n", + "Under ordinary circumstances such a stench would have brought our\n", + "We made an accurate examination of the place, the Professor saying as we\n", + "“The first thing is to see how many of the boxes are left; we must then\n", + "There were only twenty-nine left out of the fifty! Once I got a fright,\n", + "for, seeing Lord Godalming suddenly turn and look out of the vaulted\n", + "see the high lights of the Count’s evil face, the ridge of the nose, the\n", + "as Lord Godalming said, “I thought I saw a face, but it was only the\n", + "A few minutes later I saw Morris step suddenly back from a corner, which\n", + "For a moment or two we stood appalled, all save Lord Godalming, who was\n", + "iron-bound oaken door, which Dr. Seward had described from the outside,\n", + "from behind Dr. Seward’s house by the yelping of dogs, and after about a\n", + "Unconsciously we had all moved towards the door, and as we moved I\n", + "Lord Godalming lifted one of the dogs, and carrying him in, placed him\n", + "With their going it seemed as if some evil presence had departed, for\n", + "Whether it was the purifying of the deadly atmosphere by the opening of\n", + "Never once did the dogs exhibit any symptom of uneasiness, and even when\n", + "The morning was quickening in the east when we emerged from the front.\n", + "Dr. Van Helsing had taken the key of the hall-door from the bunch, and\n", + "“So far,” he said, “our night has been eminently successful. No harm has\n", + "accomplished without the bringing thereinto our most sweet Madam Mina or\n", + "beasts which are to the Count’s command are yet themselves not amenable\n", + "from the so little dogs of my friend Arthur. We have other matters\n", + "So be it that he has gone elsewhere. Good! It has given us opportunity\n", + "The house was silent when we got back, save for some poor creature who\n", + "from Renfield’s room. The poor wretch was doubtless torturing himself,\n", + "I came tiptoe into our own room, and found Mina asleep, breathing so\n", + "_1 October, later._--I suppose it was natural that we should have all\n", + "rest at all. Even Mina must have felt its exhaustion, for though I slept\n", + "sooner the matter is attended to the better. I shall look up Thomas\n", + "Snelling to-day.\n", + "_Dr. Seward’s Diary._\n", + "_1 October._--It was towards noon when I was awakened by the Professor\n", + "“Your patient interests me much. May it be that with you I visit him\n", + "this morning? Or if that you are too occupy, I can go alone if it may\n", + "instructions. Before the Professor left the room I cautioned him against\n", + "getting any false impression from my patient. “But,” he answered, “I\n", + "things. He said to Madam Mina, as I see in your diary of yesterday, that\n", + "he had once had such a belief. Why do you smile, friend John?”\n", + "“Excuse me,” I said, “but the answer is here.” I laid my hand on the\n", + "type-written matter. “When our sane and learned lunatic made that very\n", + "nauseous with the flies and spiders which he had eaten just before Mrs.\n", + "Harker entered the room.” Van Helsing smiled in turn. “Good!” he said.\n", + "“Your memory is true, friend John. I should have remembered. And yet it\n", + "Who knows?” I went on with my work, and before long was through that in\n", + "Van Helsing back in the study. “Do I interrupt?” he asked politely as he\n", + "“Not at all,” I answered. “Come in. My work is finished, and I am free.\n", + "“It is needless; I have seen him!”\n", + "“Well?”\n", + "When I entered his room he was sitting on a stool in the centre, with\n", + "measure of respect as I could assume. He made no reply whatever. “Don’t\n", + "enough; you are the old fool Van Helsing. I wish you would take yourself\n", + "Dutchmen!” Not a word more would he say, but sat in his implacable\n", + "happy words with that sweet soul Madam Mina. Friend John, it does\n", + "not want him to weaken in this matter. “Mrs. Harker is better out of it.\n", + "Things are quite bad enough for us, all men of the world, and who have\n", + "So Van Helsing has gone to confer with Mrs. Harker and Harker; Quincey\n", + "and Art are all out following up the clues as to the earth-boxes. I\n", + "_Mina Harker’s Journal._\n", + "_1 October._--It is strange to me to be kept in the dark as I am to-day;\n", + "after Jonathan’s full confidence for so many years, to see him\n", + "Jonathan was late too, he was the earlier. He spoke to me before he went\n", + "what had happened in the visit to the Count’s house. And yet he must\n", + "I acquiesced. But to think that he keeps anything from me! And now I am\n", + "That has done me good. Well, some day Jonathan will tell me all; and\n", + "Last night I went to bed when the men had gone, simply because they told\n", + "kept thinking over everything that has been ever since Jonathan came to\n", + "see me in London, and it all seems like a horrible tragedy, with fate\n", + "is most to be deplored. If I hadn’t gone to Whitby, perhaps poor dear\n", + "Lucy would be with us now. She hadn’t taken to visiting the churchyard\n", + "Oh, why did I ever go to Whitby? There now, crying again! I wonder what\n", + "has come over me to-day. I must hide it from Jonathan, for if he knew\n", + "on a very tumultuous scale, from Mr. Renfield’s room, which is somewhere\n", + "All was dark and silent, the black shadows thrown by the moonlight\n", + "morning, when Jonathan woke me. I think that it took me an effort and a\n", + "little time to realise where I was, and that it was Jonathan who was\n", + "I thought that I was asleep, and waiting for Jonathan to come back. I\n", + "around. The gaslight which I had left lit for Jonathan, but turned down,\n", + "my eyes, but could still see through my eyelids. (It is wonderful what\n", + "tricks our dreams play us, and how conveniently we can imagine.) The\n", + "pillar of cloud by day and of fire by night.” Was it indeed some such\n", + "spiritual guidance that was coming to me in my sleep? But the pillar was\n", + "two red eyes, such as Lucy told me of in her momentary mental wandering\n", + "when, on the cliff, the dying sunlight struck the windows of St. Mary’s\n", + "Church. Suddenly the horror burst upon me that it was thus that Jonathan\n", + "too much of them. I would get Dr. Van Helsing or Dr. Seward to prescribe\n", + "_2 October 10 p. m._--Last night I slept, but did not dream. I must have\n", + "slept soundly, for I was not waked by Jonathan coming to bed; but the\n", + "In the afternoon Mr. Renfield asked if he might see me. Poor man, he was\n", + "very gentle, and when I came away he kissed my hand and bade God bless\n", + "of what had occurred to each during the day; I could see from Jonathan’s\n", + "sleepy as I should have been; so before they went I asked Dr. Seward to\n", + "CHAPTER XX\n", + "JONATHAN HARKER’S JOURNAL\n", + "_1 October, evening._--I found Thomas Snelling in his house at Bethnal\n", + "Green, but unhappily he was not in a condition to remember anything. The\n", + "was only the assistant to Smollet, who of the two mates was the\n", + "responsible person. So off I drove to Walworth, and found Mr. Joseph\n", + "Smollet at home and in his shirtsleeves, taking a late tea out of a\n", + "were, he said, six in the cartload which he took from Carfax and left at\n", + "197, Chicksand Street, Mile End New Town, and another six which he\n", + "deposited at Jamaica Lane, Bermondsey. If then the Count meant to\n", + "scatter these ghastly refuges of his over London, these places were\n", + "he could not mean to confine himself to two sides of London. He was now\n", + "be left out of his diabolical scheme--let alone the City itself and the\n", + "very heart of fashionable London in the south-west and west. I went back\n", + "to Smollet, and asked him if he could tell us if any other boxes had\n", + "been taken from Carfax.\n", + "He replied:--\n", + "“Well, guv’nor, you’ve treated me wery ’an’some”--I had given him half a\n", + "Bloxam say four nights ago in the ’Are an’ ’Ounds, in Pincher’s Alley,\n", + "Purfect. There ain’t a-many such jobs as this ’ere, an’ I’m thinkin’\n", + "that maybe Sam Bloxam could tell ye summut.” I asked if he could tell me\n", + "“Look ’ere, guv’nor, there ain’t no sense in me a-keepin’ you ’ere. I\n", + "may find Sam soon, or I mayn’t; but anyhow he ain’t like to be in a way\n", + "If you can give me a envelope with a stamp on it, and put yer address on\n", + "it, I’ll find out where Sam is to be found and post it ye to-night. But\n", + "’im; for Sam gets off main early, never mind the booze the night afore.”\n", + "This was all practical, so one of the children went off with a penny to\n", + "came back, I addressed the envelope and stamped it, and when Smollet had\n", + "Mina is fast asleep, and looks a little too pale; her eyes look as\n", + "Count or his doings ever since we told her of our decision.\n", + "_2 October, evening._--A long and trying and exciting day. By the first\n", + "“Sam Bloxam, Korkrans, 4, Poters Cort, Bartel Street, Walworth. Arsk for\n", + "I got the letter in bed, and rose without waking Mina. She looked heavy\n", + "her going back to Exeter. I think she would be happier in our own home,\n", + "in ignorance. I only saw Dr. Seward for a moment, and told him where I\n", + "have found out anything. I drove to Walworth and found, with some\n", + "difficulty, Potter’s Court. Mr. Smollet’s spelling misled me, as I asked\n", + "for Poter’s Court instead of Potter’s Court. However, when I had found\n", + "the court, I had no difficulty in discovering Corcoran’s lodging-house.\n", + "When I asked the man who came to the door for the “depite,” he shook his\n", + "of that kind livin’ ere or anywheres.” I took out Smollet’s letter, and\n", + "of the court might guide me. “What are you?” I asked.\n", + "deputy’s knowledge at my disposal, and I learned that Mr. Bloxam, who\n", + "Corcoran’s, had left for his work at Poplar at five o’clock that\n", + "and with this slender clue I had to start for Poplar. It was twelve\n", + "of these suggested that there was being erected at Cross Angel Street a\n", + "coin of the realm, put me on the track of Bloxam; he was sent for on my\n", + "that he had made two journeys between Carfax and a house in Piccadilly,\n", + "asked him if he could tell me the number of the house in Piccadilly, to\n", + "“Well, guv’nor, I forgits the number, but it was only a few doors from a\n", + "“How did you get into the houses if they were both empty?”\n", + "“There was the old party what engaged me a-waitin’ in the ’ouse at\n", + "Purfleet. He ’elped me to lift the boxes and put them in the dray. Curse\n", + "How this phrase thrilled through me!\n", + "“Why, ’e took up ’is end o’ the boxes like they was pounds of tea, and\n", + "“How did you get into the house in Piccadilly?” I asked.\n", + "“He was there too. He must ’a’ started off and got there afore me, for\n", + "“The whole nine?” I asked.\n", + "“Yus; there was five in the first load an’ four in the second. It was\n", + "“Were the boxes left in the hall?”\n", + "“Yus; it was a big ’all, an’ there was nothin’ else in it.” I made one\n", + "“You didn’t have any key?”\n", + "“Never used no key nor nothink. The old gent, he opened the door ’isself\n", + "“And you can’t remember the number of the house?”\n", + "“No, sir. But ye needn’t have no difficulty about that. It’s a ’igh ’un\n", + "off for Piccadilly. I had gained a new painful experience; the Count\n", + "unobserved. At Piccadilly Circus I discharged my cab, and walked\n", + "westward; beyond the Junior Constitutional I came across the house\n", + "arranged by Dracula. The house looked as though it had been long\n", + "Behind the rails of the balcony I saw there were some loose boards,\n", + "experience of the investigation and purchase of Carfax, and I could not\n", + "There was at present nothing to be learned from the Piccadilly side, and\n", + "Piccadilly houses being mostly in occupation. I asked one or two of the\n", + "very lately there had been a notice-board of “For Sale” up, and that\n", + "perhaps Mitchell, Sons, & Candy, the house agents, could tell me\n", + "did not lose any time. Having learned the address of Mitchell, Sons, &\n", + "Candy from a directory at the Berkeley, I was soon at their office in\n", + "Sackville Street.\n", + "The gentleman who saw me was particularly suave in manner, but\n", + "Piccadilly house--which throughout our interview he called a\n", + "“It is sold, sir.”\n", + "“Pardon me,” I said, with equal politeness, “but I have a special reason\n", + "Again he paused longer, and raised his eyebrows still more. “It is sold,\n", + "“Surely,” I said, “you do not mind letting me know so much.”\n", + "“But I do mind,” he answered. “The affairs of their clients are\n", + "absolutely safe in the hands of Mitchell, Sons, & Candy.” This was\n", + "“Your clients, sir, are happy in having so resolute a guardian of their\n", + "confidence. I am myself a professional man.” Here I handed him my card.\n", + "“In this instance I am not prompted by curiosity; I act on the part of\n", + "Lord Godalming, who wishes to know something of the property which was,\n", + "he understood, lately for sale.” These words put a different complexion\n", + "“I would like to oblige you if I could, Mr. Harker, and especially would\n", + "renting some chambers for him when he was the Honourable Arthur\n", + "Holmwood. If you will let me have his lordship’s address I will consult\n", + "the House on the subject, and will, in any case, communicate with his\n", + "gave the address at Dr. Seward’s and came away. It was now dark, and I\n", + "was tired and hungry. I got a cup of tea at the Aërated Bread Company\n", + "and came down to Purfleet by the next train.\n", + "inquietude. Thank God, this will be the last night of her looking on at\n", + "amongst ourselves--I took Mina to her room and left her to go to bed.\n", + "The dear girl was more affectionate with me than ever, and clung to me\n", + "came away. Thank God, the ceasing of telling things has made no\n", + "When I came down again I found the others all gathered round the fire in\n", + "information; when I had finished Van Helsing said:--\n", + "“This has been a great day’s work, friend Jonathan. Doubtless we are on\n", + "wretch to his real death.” We all sat silent awhile and all at once Mr.\n", + "Morris spoke:--\n", + "“Say! how are we going to get into that house?”\n", + "“We got into the other,” answered Lord Godalming quickly.\n", + "“But, Art, this is different. We broke house at Carfax, but we had night\n", + "commit burglary in Piccadilly, either by day or night. I confess I don’t\n", + "morning.” Lord Godalming’s brows contracted, and he stood up and walked\n", + "“Quincey’s head is level. This burglary business is getting serious; we\n", + "can find the Count’s key basket.”\n", + "As nothing could well be done before morning, and as it would be at\n", + "least advisable to wait till Lord Godalming should hear from Mitchell’s,\n", + "Just a line. Mina sleeps soundly and her breathing is regular. Her\n", + "herself at home in Exeter. Oh, but I am sleepy!\n", + "_Dr. Seward’s Diary._\n", + "_1 October._--I am puzzled afresh about Renfield. His moods change so\n", + "repulse of Van Helsing, his manner was that of a man commanding destiny.\n", + "He was, in fact, commanding destiny--subjectively. He did not really\n", + "“What about the flies these times?” He smiled on me in quite a superior\n", + "sort of way--such a smile as would have become the face of Malvolio--as\n", + "“The fly, my dear sir, has one striking feature; its wings are typical\n", + "“Oh, it is a soul you are after now, is it?” His madness foiled his\n", + "“Oh, no, oh no! I want no souls. Life is all I want.” Here he brightened\n", + "This puzzled me a little, so I drew him on:--\n", + "“Then you command life; you are a god, I suppose?” He smiled with an\n", + "“Oh no! Far be it from me to arrogate to myself the attributes of the\n", + "Deity. I am not even concerned in His especially spiritual doings. If I\n", + "purely terrestrial, somewhat in the position which Enoch occupied\n", + "spiritually!” This was a poser to me. I could not at the moment recall\n", + "Enoch’s appositeness; so I had to ask a simple question, though I felt\n", + "“And why with Enoch?”\n", + "“Because he walked with God.” I could not see the analogy, but did not\n", + "“So you don’t care about life and you don’t want souls. Why not?” I put\n", + "The effort succeeded; for an instant he unconsciously relapsed into his\n", + "or----” He suddenly stopped and the old cunning look spread over his\n", + "face, like a wind-sweep on the surface of the water. “And doctor, as to\n", + "life, what is it after all? When you’ve got all you require, and you\n", + "friends--like you, Dr. Seward”; this was said with a leer of\n", + "Later in the day he sent for me. Ordinarily I would not have come\n", + "Lord Godalming and Quincey. Van Helsing sits in my study poring over the\n", + "record prepared by the Harkers; he seems to think that by accurate\n", + "might not care to go again. There was also another reason: Renfield\n", + "“What about souls?” It was evident then that my surmise had been\n", + "lunatic. I determined to have the matter out. “What about them\n", + "cruel only to be kind.” So I said:--\n", + "“You like life, and you want life?”\n", + "“Oh yes! but that is all right; you needn’t worry about that!”\n", + "“But,” I asked, “how are we to get the life without getting the soul\n", + "also?” This seemed to puzzle him, so I followed it up:--\n", + "know, and you must put up with their souls!” Something seemed to affect\n", + "“Would you like some sugar to get your flies round again?” He seemed to\n", + "“Not much! flies are poor things, after all!” After a pause he added,\n", + "“But I don’t want their souls buzzing round me, all the same.”\n", + "“Or spiders?” I went on.\n", + "“Blow spiders! What’s the use of spiders? There isn’t anything in them\n", + "“So, so!” I thought to myself, “this is the second time he has suddenly\n", + "stopped at the word ‘drink’; what does it mean?” Renfield seemed himself\n", + "“I don’t take any stock at all in such matters. ‘Rats and mice and such\n", + "small deer,’ as Shakespeare has it, ‘chicken-feed of the larder’ they\n", + "“I see,” I said. “You want big things that you can make your teeth meet\n", + "in? How would you like to breakfast on elephant?”\n", + "“What ridiculous nonsense you are talking!” He was getting too wide\n", + "The effect I desired was obtained, for he at once fell from his\n", + "his eyes blazing and all the signs of intense cerebral excitement. “To\n", + "hell with you and your souls!” he shouted. “Why do you plague me about\n", + "souls? Haven’t I got enough to worry, and pain, and distract me already,\n", + "without thinking of souls!” He looked so hostile that I thought he was\n", + "“Forgive me, Doctor; I forgot myself. You do not need any help. I am so\n", + "sure you will understand!” He had evidently self-control; so when the\n", + "“Dr. Seward, you have been very considerate towards me. Believe me that\n", + "this man’s state. Several points seem to make what the American\n", + "Here they are:--\n", + "Will not mention “drinking.”\n", + "Fears the thought of being burdened with the “soul” of anything.\n", + "Has no dread of wanting “life” in the future.\n", + "Despises the meaner forms of life altogether, though he dreads being\n", + "Logically all these things point one way! he has assurance of some kind\n", + "And the assurance--?\n", + "Merciful God! the Count has been to him, and there is some new scheme of\n", + "_Later._--I went after my round to Van Helsing and told him my\n", + "while asked me to take him to Renfield. I did so. As we came to the door\n", + "His is a curious case indeed; we must watch him to-night.\n", + "_Letter, Mitchell, Sons and Candy to Lord Godalming._\n", + "_“1 October._\n", + "“My Lord,\n", + "“We are at all times only too happy to meet your wishes. We beg, with\n", + "regard to the desire of your Lordship, expressed by Mr. Harker on your\n", + "purchase of No. 347, Piccadilly. The original vendors are the executors\n", + "of the late Mr. Archibald Winter-Suffield. The purchaser is a foreign\n", + "nobleman, Count de Ville, who effected the purchase himself paying the\n", + "purchase money in notes ‘over the counter,’ if your Lordship will pardon\n", + "“We are, my Lord,\n", + "“Your Lordship’s humble servants,\n", + "“MITCHELL, SONS & CANDY.”\n", + "_Dr. Seward’s Diary._\n", + "_2 October._--I placed a man in the corridor last night, and told him to\n", + "make an accurate note of any sound he might hear from Renfield’s room,\n", + "in the study--Mrs. Harker having gone to bed--we discussed the attempts\n", + "Before going to bed I went round to the patient’s room and looked in\n", + "This morning the man on duty reported to me that a little after midnight\n", + "To-day Harker is out following up his clue, and Art and Quincey are\n", + "earth between sunrise and sunset; we shall thus catch the Count at his\n", + "weakest, and without a refuge to fly to. Van Helsing is off to the\n", + "British Museum looking up some authorities on ancient medicine. The old\n", + "and the Professor is searching for witch and demon cures which may be\n", + "_Later._--We have met again. We seem at last to be on the track, and our\n", + "Renfield’s quiet has anything to do with this. His moods have so\n", + "followed the doings of the Count, that the coming destruction of the\n", + "valuable clue. He is now seemingly quiet for a spell.... Is he?---- That\n", + "The attendant came bursting into my room and told me that Renfield had\n", + "CHAPTER XXI\n", + "DR. SEWARD’S DIARY\n", + "_3 October._--Let me put down with exactness all that happened, as well\n", + "When I came to Renfield’s room I found him lying on the floor on his\n", + "the whole side of his face are paralysed.” How such a thing could have\n", + "Eversfield Asylum before anyone could lay hands on her. And I suppose he\n", + "“Go to Dr. Van Helsing, and ask him to kindly come here at once. I want\n", + "him without an instant’s delay.” The man ran off, and within a few\n", + "minutes the Professor, in his dressing gown and slippers, appeared. When\n", + "he saw Renfield on the ground, he looked keenly at him a moment, and\n", + "“Ah, a sad accident! He will need very careful watching, and much\n", + "If you will remain I shall in a few minutes join you.”\n", + "The patient was now breathing stertorously and it was easy to see that\n", + "he had suffered some terrible injury. Van Helsing returned with\n", + "“Send the attendant away. We must be alone with him when he becomes\n", + "conscious, after the operation.” So I said:--\n", + "“I think that will do now, Simmons. We have done all that we can at\n", + "present. You had better go your round, and Dr. Van Helsing will operate.\n", + "Let me know instantly if there be anything unusual anywhere.”\n", + "The man withdrew, and we went into a strict examination of the patient.\n", + "The wounds of the face was superficial; the real injury was a depressed\n", + "Professor thought a moment and said:--\n", + "“We must reduce the pressure and get back to normal conditions, as far\n", + "too late.” As he was speaking there was a soft tapping at the door. I\n", + "went over and opened it and found in the corridor without, Arthur and\n", + "Quincey in pajamas and slippers: the former spoke:--\n", + "“I heard your man call up Dr. Van Helsing and tell him of an accident.\n", + "So I woke Quincey or rather called for him as he was not asleep. Things\n", + "till they had entered; then I closed it again. When Quincey saw the\n", + "“My God! what has happened to him? Poor, poor devil!” I told him\n", + "down on the edge of the bed, with Godalming beside him; we all watched\n", + "“We shall wait,” said Van Helsing, “just long enough to fix the best\n", + "The minutes during which we waited passed with fearful slowness. I had a\n", + "horrible sinking in my heart, and from Van Helsing’s face I gathered\n", + "the words that Renfield might speak. I was positively afraid to think;\n", + "At last there came a time when it was evident that the patient was\n", + "sinking fast; he might die at any moment. I looked up at the Professor\n", + "“There is no time to lose. His words may be worth many lives; I have\n", + "We shall operate just above the ear.”\n", + "Without another word he made the operation. For a few moments the\n", + "Suddenly his eyes opened, and became fixed in a wild, helpless stare.\n", + "This was continued for a few moments; then it softened into a glad\n", + "“I’ll be quiet, Doctor. Tell them to take off the strait-waistcoat. I\n", + "dreadfully.” He tried to turn his head; but even with the effort his\n", + "eyes seemed to grow glassy again so I gently put it back. Then Van\n", + "Helsing said in a quiet grave tone:--\n", + "“Tell us your dream, Mr. Renfield.” As he heard the voice his face\n", + "“That is Dr. Van Helsing. How good it is of you to be here. Give me some\n", + "stopped and seemed fainting, I called quietly to Quincey--“The\n", + "brandy--it is in my study--quick!” He flew and returned with a glass,\n", + "Then his eyes roved round the room; as they caught sight of the two\n", + "“If I were not sure already, I would know from them.” For an instant his\n", + "“Quick, Doctor, quick. I am dying! I feel that I have but a few minutes;\n", + "and then I must go back to death--or worse! Wet my lips with brandy\n", + "crushed brain dies anyhow. Thank you! It was that night after you left\n", + "dogs bark behind our house, but not where He was!” As he spoke, Van\n", + "Helsing’s eyes never blinked, but his hand came out and met mine and\n", + "and said: “Go on,” in a low voice. Renfield proceeded:--\n", + "“He came up to the window in the mist, as I had seen him often before;\n", + "Then he began promising me things--not in words but by doing them.” He\n", + "was interrupted by a word from the Professor:--\n", + "“How?”\n", + "“By making them happen; just as he used to send in the flies when the\n", + "backs.” Van Helsing nodded to him as he whispered to me unconsciously:--\n", + "“The _Acherontia Aitetropos of the Sphinges_--what you call the\n", + "‘Death’s-head Moth’?” The patient went on without stopping.\n", + "“Then he began to whisper: ‘Rats, rats, rats! Hundreds, thousands,\n", + "Then the dogs howled, away beyond the dark trees in His house. He\n", + "beckoned me to the window. I got up and looked out, and He raised his\n", + "then He moved the mist to the right and left, and I could see that there\n", + "were thousands of rats with their eyes blazing red--like His, only\n", + "seemed to be saying: ‘All these lives will I give you, ay, and many more\n", + "me!’ And then a red cloud, like the colour of blood, seemed to close\n", + "the sash and saying to Him: ‘Come in, Lord and Master!’ The rats were\n", + "all gone, but He slid into the room through the sash, though it was only\n", + "open an inch wide--just as the Moon herself has often come in through\n", + "His voice was weaker, so I moistened his lips with the brandy again, and\n", + "back to the point, but Van Helsing whispered to me: “Let him go on. Do\n", + "if once he lost the thread of his thought.” He proceeded:--\n", + "“All day I waited to hear from him, but he did not send me anything, not\n", + "When he slid in through the window, though it was shut, and did not even\n", + "as he went by me. I couldn’t hold him. I thought that, somehow, Mrs.\n", + "Harker had come into the room.”\n", + "The two men sitting on the bed stood up and came over, standing behind\n", + "They were both silent, but the Professor started and quivered; his face,\n", + "“When Mrs. Harker came in to see me this afternoon she wasn’t the same;\n", + "it was like tea after the teapot had been watered.” Here we all moved,\n", + "to know that He had been taking the life out of her.” I could feel that\n", + "the rest quivered, as I did, but we remained otherwise still. “So when\n", + "He came to-night I was ready for Him. I saw the mist stealing in, and I\n", + "Ay, and He felt it too, for He had to come out of the mist to struggle\n", + "mean Him to take any more of her life, till I saw His eyes. They burned\n", + "when I tried to cling to Him, He raised me up and flung me down. There\n", + "to steal away under the door.” His voice was becoming fainter and his\n", + "breath more stertorous. Van Helsing stood up instinctively.\n", + "“We know the worst now,” he said. “He is here, and we know his purpose.\n", + "It may not be too late. Let us be armed--the same as we were the other\n", + "night, but lose no time; there is not an instant to spare.” There was no\n", + "had when we entered the Count’s house. The Professor had his ready, and\n", + "“They never leave me; and they shall not till this unhappy business is\n", + "Alas! alas! that that dear Madam Mina should suffer!” He stopped; his\n", + "Outside the Harkers’ door we paused. Art and Quincey held back, and the\n", + "“Should we disturb her?”\n", + "“We must,” said Van Helsing grimly. “If the door be locked, I shall\n", + "“May it not frighten her terribly? It is unusual to break into a lady’s\n", + "Van Helsing said solemnly, “You are always right; but this is life and\n", + "are all as one to me to-night. Friend John, when I turn the handle, if\n", + "He turned the handle as he spoke, but the door did not yield. We threw\n", + "headlong into the room. The Professor did actually fall, and I saw\n", + "The moonlight was so bright that through the thick yellow blind the room\n", + "was light enough to see. On the bed beside the window lay Jonathan\n", + "Harker, his face flushed and breathing heavily as though in a stupor.\n", + "Kneeling on the near edge of the bed facing outwards was the white-clad\n", + "His face was turned from us, but the instant we saw we all recognised\n", + "the Count--in every way, even to the scar on his forehead. With his left\n", + "hand he held both Mrs. Harker’s hands, keeping them away with her arms\n", + "compel it to drink. As we burst into the room, the Count turned his\n", + "and sprang at us. But by this time the Professor had gained his feet,\n", + "and was holding towards him the envelope which contained the Sacred\n", + "Wafer. The Count suddenly stopped, just as poor Lucy had done outside\n", + "under Quincey’s match, we saw nothing but a faint vapour. This, as we\n", + "open, had swung back to its old position. Van Helsing, Art, and I moved\n", + "forward to Mrs. Harker, who by this time had drawn her breath and with\n", + "Count’s terrible grip, and from behind them came a low desolate wail\n", + "endless grief. Van Helsing stepped forward and drew the coverlet gently\n", + "over her body, whilst Art, after looking at her face for an instant\n", + "despairingly, ran out of the room. Van Helsing whispered to me:--\n", + "“Jonathan is in a stupor such as we know the Vampire can produce. We can\n", + "do nothing with poor Madam Mina for a few moments till she recovers\n", + "herself; I must wake him!” He dipped the end of a towel in cold water\n", + "window. There was much moonshine; and as I looked I could see Quincey\n", + "Morris run across the lawn and hide himself in the shadow of a great\n", + "instant I heard Harker’s quick exclamation as he woke to partial\n", + "“In God’s name what does this mean?” Harker cried out. “Dr. Seward, Dr.\n", + "Van Helsing, what is it? What has happened? What is wrong? Mina, dear,\n", + "what is it? What does that blood mean? My God, my God! has it come to\n", + "together. “Good God help us! help her! oh, help her!” With a quick\n", + "man in him awake at the need for instant exertion. “What has happened?\n", + "Tell me all about it!” he cried without pausing. “Dr. Van Helsing, you\n", + "love Mina, I know. Oh, do something to save her. It cannot have gone too\n", + "far yet. Guard her while I look for _him_!” His wife, through her terror\n", + "“No! no! Jonathan, you must not leave me. I have suffered enough\n", + "to-night, God knows, without the dread of his harming you. You must stay\n", + "with me. Stay with these friends who will watch over you!” Her\n", + "Van Helsing and I tried to calm them both. The Professor held up his\n", + "“Do not fear, my dear. We are here; and whilst this is close to you no\n", + "and take counsel together.” She shuddered and was silent, holding down\n", + "“Unclean, unclean! I must touch him or kiss him no more. Oh, that it\n", + "most cause to fear.” To this he spoke out resolutely:--\n", + "“Nonsense, Mina. It is a shame to me to hear such a word. I would not\n", + "hear it of you; and I shall not hear it from you. May God judge me by my\n", + "if by any act or will of mine anything ever come between us!” He put out\n", + "“And now, Dr. Seward, tell me all about it. Too well I know the broad\n", + "and his eyes blazed as I told how the ruthless hands of the Count had\n", + "hair. Just as I had finished, Quincey and Godalming knocked at the door.\n", + "They entered in obedience to our summons. Van Helsing looked at me\n", + "to him he asked them what they had seen or done. To which Lord Godalming\n", + "however----” He stopped suddenly, looking at the poor drooping figure on\n", + "the bed. Van Helsing said gravely:--\n", + "“Go on, friend Arthur. We want here no more concealments. Our hope now\n", + "is in knowing all. Tell freely!” So Art went on:--\n", + "“He had been there, and though it could only have been for a few\n", + "had helped the flames.” Here I interrupted. “Thank God there is the\n", + "other copy in the safe!” His face lit for a moment, but fell again as he\n", + "into Renfield’s room; but there was no trace there except----!” Again he\n", + "paused. “Go on,” said Harker hoarsely; so he bowed his head and\n", + "is dead.” Mrs. Harker raised her head, looking from one to the other of\n", + "“God’s will be done!” I could not but feel that Art was keeping back\n", + "Van Helsing turned to Morris and asked:--\n", + "“And you, friend Quincey, have you any to tell?”\n", + "“A little,” he answered. “It may be much eventually, but at present I\n", + "can’t say. I thought it well to know if possible where the Count would\n", + "Renfield’s window, and flap westward. I expected to see him in some\n", + "shape go back to Carfax; but he evidently sought some other lair. He\n", + "He said the latter words through his shut teeth. For a space of perhaps\n", + "hear the sound of our hearts beating; then Van Helsing said, placing his\n", + "hand very tenderly on Mrs. Harker’s head:--\n", + "“And now, Madam Mina--poor, dear, dear Madam Mina--tell us exactly what\n", + "The poor, dear lady shivered, and I could see the tension of her nerves\n", + "out one hand to Van Helsing who took it in his, and, after stooping and\n", + "After a pause in which she was evidently ordering her thoughts, she\n", + "Her husband involuntarily groaned as she turned to him and said\n", + "lovingly: “Do not fret, dear. You must be brave and strong, and help me\n", + "I turned to wake Jonathan, but found that he slept so soundly that it\n", + "sunset on the windows of St. Mary’s Church at Whitby. I knew, too, the\n", + "red scar on his forehead where Jonathan had struck him. For an instant\n", + "pointing as he spoke to Jonathan:--\n", + "“‘Silence! If you make a sound I shall take him and dash his brains out\n", + "so, ‘First, a little refreshment to reward my exertions. You may as well\n", + "such is, when his touch is on his victim. And oh, my God, my God, pity\n", + "me! He placed his reeking lips upon my throat!” Her husband groaned\n", + "saw it drip with the fresh blood!” The remembrance seemed for a while to\n", + "“Then he spoke to me mockingly, ‘And so you, like the others, would play\n", + "frustrate me in my designs! You know now, and they know in part already,\n", + "call. When my brain says “Come!” to you, you shall cross land or sea to\n", + "do my bidding; and to that end this!’ With that he pulled open his\n", + "the wound, so that I must either suffocate or swallow some of the---- Oh\n", + "my God! my God! what have I done? What have I done to deserve such a\n", + "days. God pity me! Look down on a poor soul in worse than mortal peril;\n", + "and in mercy pity those to whom she is dear!” Then she began to rub her\n", + "As she was telling her terrible story, the eastern sky began to quicken,\n", + "We have arranged that one of us is to stay within call of the unhappy\n", + "Of this I am sure: the sun rises to-day on no more miserable house in\n", + "CHAPTER XXII\n", + "JONATHAN HARKER’S JOURNAL\n", + "_3 October._--As I must do something or go mad, I write this diary. It\n", + "take something to eat; for Dr. Van Helsing and Dr. Seward are agreed\n", + "that if we do not eat we cannot work our best. Our best will be, God\n", + "not have landed Mina or me anywhere worse than we are to-day. However,\n", + "we must trust and hope. Poor Mina told me just now, with the tears\n", + "faith is tested--that we must keep on trusting; and that God will aid us\n", + "up to the end. The end! oh my God! what end?... To work! To work!\n", + "When Dr. Van Helsing and Dr. Seward had come back from seeing poor\n", + "Renfield, we went gravely into what was to be done. First, Dr. Seward\n", + "told us that when he and Dr. Van Helsing had gone down to the room below\n", + "they had found Renfield lying on the floor, all in a heap. His face was\n", + "Dr. Seward asked the attendant who was on duty in the passage if he had\n", + "half dozing--when he heard loud voices in the room, and then Renfield\n", + "had called out loudly several times, “God! God! God!” after that there\n", + "on the floor, face down, just as the doctors had seen him. Van Helsing\n", + "to it, if required, that the word “God” was spoken by the patient. Dr.\n", + "Seward said to us, when we were alone, that he did not wish to go into\n", + "When the question began to be discussed as to what should be our next\n", + "step, the very first thing we decided was that Mina should be in full\n", + "despair. “There must be no concealment,” she said, “Alas! we have had\n", + "Whatever may happen, it must be of new hope or of new courage to me!”\n", + "Van Helsing was looking at her fixedly as she spoke, and said, suddenly\n", + "“But dear Madam Mina, are you not afraid; not for yourself, but for\n", + "others from yourself, after what has happened?” Her face grew set in its\n", + "“Ah no! for my mind is made up!”\n", + "“To what?” he asked gently, whilst we were all very still; for each in\n", + "“Because if I find in myself--and I shall watch keenly for it--a sign of\n", + "“You would not kill yourself?” he asked, hoarsely.\n", + "pain, and so desperate an effort!” She looked at him meaningly as she\n", + "“My child, there is such an one if it were for your good. For myself I\n", + "could hold it in my account with God to find such an euthanasia for you,\n", + "even at this moment if it were best. Nay, were it safe! But my\n", + "child----” For a moment he seemed choked, and a great sob rose in his\n", + "“There are here some who would stand between you and death. You must not\n", + "die; for if he is still with the quick Un-Dead, your death would make\n", + "you even as he is. No, you must live! You must struggle and strive to\n", + "live, though death would seem a boon unspeakable. You must fight Death\n", + "night; in safety or in peril! On your living soul I charge you that you\n", + "do not die--nay, nor think of death--till this great evil be past.” The\n", + "“I promise you, my dear friend, that if God will let me live, I shall\n", + "strive to do so; till, if it may be in His good time, this horror may\n", + "have passed away from me.” She was so good and brave that we all felt\n", + "She was pleased with the prospect of anything to do--if “pleased” could\n", + "As usual Van Helsing had thought ahead of everyone else, and was\n", + "“It is perhaps well,” he said, “that at our meeting after our visit to\n", + "Carfax we decided not to do anything with the earth-boxes that lay\n", + "there. Had we done so, the Count must have guessed our purpose, and\n", + "Piccadilly, we may track the very last of them. To-day, then, is ours;\n", + "and the destroying shall be, in time, sure.” Here I started up for I\n", + "preciously laden with Mina’s life and happiness were flying from us,\n", + "since whilst we talked action was impossible. But Van Helsing held up\n", + "his hand warningly. “Nay, friend Jonathan,” he said, “in this, the\n", + "all probable the key of the situation is in that house in Piccadilly.\n", + "The Count may have many houses which he has bought. Of them he will have\n", + "friend Arthur call, in his phrases of hunt ‘stop the earths’ and so we\n", + "“Then let us come at once,” I cried, “we are wasting the precious,\n", + "precious time!” The Professor did not move, but simply said:--\n", + "“And how are we to get into that house in Piccadilly?”\n", + "“Any way!” I cried. “We shall break in if need be.”\n", + "“And your police; where will they be, and what will they say?”\n", + "“Don’t wait more than need be; you know, I am sure, what torture I am\n", + "“Ah, my child, that I do; and indeed there is no wish of me to add to\n", + "“Now suppose that you were, in truth, the owner of that house, and could\n", + "“And your police, they would interfere, would they not?”\n", + "“Oh, no! not if they knew the man was properly employed.”\n", + "“Then,” he looked at me as keenly as he spoke, “all that is in doubt is\n", + "friend Jonathan, you go take the lock off a hundred empty house in this\n", + "your London, or of any city in the world; and if you do it as such\n", + "house in London, and when he went for months of summer to Switzerland\n", + "they can. And when that owner come back from his holiday in Switzerland\n", + "I could not but see how right he was and the terrible despair of Mina’s\n", + "Helsing went on:--\n", + "“When once within that house we may find more clues; at any rate some of\n", + "more earth-boxes--at Bermondsey and Mile End.”\n", + "Lord Godalming stood up. “I can be of some use here,” he said. “I shall\n", + "“Look here, old fellow,” said Morris, “it is a capital idea to have all\n", + "Walworth or Mile End would attract too much attention for our purposes?\n", + "It seems to me that we ought to take cabs when we go south or east; and\n", + "“Friend Quincey is right!” said the Professor. “His head is what you\n", + "Mina took a growing interest in everything and I was rejoiced to see\n", + "what had occurred with poor Lucy when the Count had sucked her blood. As\n", + "When we came to the discussion of the sequence of our efforts and of the\n", + "finally agreed that before starting for Piccadilly we should destroy the\n", + "Count’s lair close at hand. In case he should find it out too soon, we\n", + "As to the disposal of forces, it was suggested by the Professor that,\n", + "after our visit to Carfax, we should all enter the house in Piccadilly;\n", + "that the two doctors and I should remain there, whilst Lord Godalming\n", + "and Quincey found the lairs at Walworth and Mile End and destroyed them.\n", + "It was possible, if not likely, the Professor urged, that the Count\n", + "might appear in Piccadilly during the day, and that if so we might be\n", + "Mina, I thought that my mind was made up on the subject; but Mina would\n", + "in which I could be useful; that amongst the Count’s papers might be\n", + "some clue which I could understand out of my experience in Transylvania;\n", + "cope with the Count’s extraordinary power. I had to give in, for Mina’s\n", + "we should all work together. “As for me,” she said, “I have no fear.\n", + "Things have been as bad as they can be; and whatever may happen must\n", + "have in it some element of hope or comfort. Go, my husband! God can, if\n", + "He wishes it, guard me as well alone as with any one present.” So I\n", + "started up crying out: “Then in God’s name let us come at once, for we\n", + "are losing time. The Count may come to Piccadilly earlier than we\n", + "“Not so!” said Van Helsing, holding up his hand.\n", + "“But why?” I asked.\n", + "“Do you forget,” he said, with actually a smile, “that last night he\n", + "Did I forget! shall I ever--can I ever! Can any of us ever forget that\n", + "terrible scene! Mina struggled hard to keep her brave countenance; but\n", + "shuddered whilst she moaned. Van Helsing had not intended to recall her\n", + "he was horrified at his thoughtlessness and tried to comfort her. “Oh,\n", + "Madam Mina,” he said, “dear, dear Madam Mina, alas! that I of all who so\n", + "forget it, will you not?” He bent low beside her as he spoke; she took\n", + "“No, I shall not forget, for it is well that I remember; and with it I\n", + "Breakfast was a strange meal to us all. We tried to be cheerful and\n", + "encourage each other, and Mina was the brightest and most cheerful of\n", + "us. When it was over, Van Helsing stood up and said:--\n", + "“Now, my dear friends, we go forth to our terrible enterprise. Are we\n", + "lair; armed against ghostly as well as carnal attack?” We all assured\n", + "him. “Then it is well. Now, Madam Mina, you are in any case _quite_ safe\n", + "here until the sunset; and before then we shall return--if---- We shall\n", + "return! But before we go let me see you armed against personal attack. I\n", + "of things of which we know, so that He may not enter. Now let me guard\n", + "yourself. On your forehead I touch this piece of Sacred Wafer in the\n", + "name of the Father, the Son, and----”\n", + "There was a fearful scream which almost froze our hearts to hear. As he\n", + "had placed the Wafer on Mina’s forehead, it had seared it--had burned\n", + "“Unclean! Unclean! Even the Almighty shuns my polluted flesh! I must\n", + "bear this mark of shame upon my forehead until the Judgment Day.” They\n", + "their eyes that ran tears silently. Then Van Helsing turned and said\n", + "“It may be that you may have to bear that mark till God himself see fit,\n", + "as He most surely shall, on the Judgment Day, to redress all wrongs of\n", + "the earth and of His children that He has placed thereon. And oh, Madam\n", + "Mina, my dear, my dear, may we who love you be there to see, when that\n", + "red scar, the sign of God’s knowledge of what has been, shall pass away,\n", + "we live, that scar shall pass away when God sees right to lift the\n", + "burden that is hard upon us. Till then we bear our Cross, as His Son did\n", + "in obedience to His Will. It may be that we are chosen instruments of\n", + "His good pleasure, and that we ascend to His bidding as that other\n", + "fears, and all that makes the difference between God and man.”\n", + "There was hope in his words, and comfort; and they made for resignation.\n", + "Mina and I both felt so, and simultaneously we each took one of the old\n", + "It was then time to start. So I said farewell to Mina, a parting which\n", + "To one thing I have made up my mind: if we find out that Mina must be a\n", + "We entered Carfax without trouble and found all things the same as on\n", + "Dr. Van Helsing said to us solemnly as we stood before them:--\n", + "“And now, my friends, we have a duty here to do. We must sterilise this\n", + "God.” As he spoke he took from his bag a screwdriver and a wrench, and\n", + "was concentrated on the Professor. Taking from his box a piece of the\n", + "Sacred Wafer he laid it reverently on the earth, and then shutting down\n", + "One by one we treated in the same way each of the great boxes, and left\n", + "of the Host.\n", + "When we closed the door behind us, the Professor said solemnly:--\n", + "“So much is already done. If it may be that with all the others we can\n", + "be so successful, then the sunset of this evening may shine on Madam\n", + "Mina’s forehead all white as ivory and with no stain!”\n", + "As we passed across the lawn on our way to the station to catch our\n", + "window of my own room saw Mina. I waved my hand to her, and nodded to\n", + "_Piccadilly, 12:30 o’clock._--Just before we reached Fenchurch Street\n", + "Lord Godalming said to me:--\n", + "“Quincey and I will find a locksmith. You had better not come with us in\n", + "solicitor and the Incorporated Law Society might tell you that you\n", + "even of odium, but he went on: “Besides, it will attract less attention\n", + "better go with Jack and the Professor and stay in the Green Park,\n", + "“The advice is good!” said Van Helsing, so we said no more. Godalming\n", + "and Morris hurried off in a cab, we following in another. At the corner\n", + "of Arlington Street our contingent got out and strolled into the Green\n", + "Park. My heart beat as I saw the house on which so much of our hope was\n", + "At length we saw a four-wheeler drive up. Out of it, in leisurely\n", + "fashion, got Lord Godalming and Morris; and down from the box descended\n", + "ascended the steps, and Lord Godalming pointed out what he wanted done.\n", + "The workman took off his coat leisurely and hung it on one of the spikes\n", + "turning to his employers, made some remark. Lord Godalming smiled, and\n", + "entered the hall. We sat still; my own cigar burnt furiously, but Van\n", + "Helsing’s went cold altogether. We waited patiently as we saw the\n", + "This he finally handed to Lord Godalming, who took out his purse and\n", + "When the man had fairly gone, we three crossed the street and knocked at\n", + "the door. It was immediately opened by Quincey Morris, beside whom stood\n", + "Lord Godalming lighting a cigar.\n", + "“The place smells so vilely,” said the latter as we came in. It did\n", + "indeed smell vilely--like the old chapel at Carfax--and with our\n", + "previous experience it was plain to us that the Count had been using the\n", + "with, and as yet we did not know whether the Count might not be in the\n", + "Our work was not over, and would never be until we should have found the\n", + "Count was not at present in the house, and we proceeded to search for\n", + "After a cursory glance at the rest of the rooms, from basement to attic,\n", + "which might belong to the Count; and so we proceeded to minutely examine\n", + "table. There were title deeds of the Piccadilly house in a great bundle;\n", + "deeds of the purchase of the houses at Mile End and Bermondsey;\n", + "the other houses. When we had examined this last find, Lord Godalming\n", + "and Quincey Morris taking accurate notes of the various addresses of the\n", + "houses in the East and the South, took with them the keys in a great\n", + "the Count.\n", + "CHAPTER XXIII\n", + "DR. SEWARD’S DIARY\n", + "_3 October._--The time seemed terribly long whilst we were waiting for\n", + "the coming of Godalming and Quincey Morris. The Professor tried to keep\n", + "purpose, by the side glances which he threw from time to time at Harker.\n", + "The poor fellow is overwhelmed in a misery that is appalling to see.\n", + "Last night he was a frank, happy-looking man, with strong, youthful\n", + "thought my own trouble was bad enough, but his----! The Professor knows\n", + "it. As I learned from the researches of my friend Arminus of Buda-Pesth,\n", + "attend the Scholomance, and there was no branch of knowledge of his time\n", + "In some faculties of mind he has been, and is, only a child; but he is\n", + "lead through Death, not Life.”\n", + "Harker groaned and said, “And this is all arrayed against my darling!\n", + "But how is he experimenting? The knowledge may help us to defeat him!”\n", + "“He has all along, since his coming, been trying his power, slowly but\n", + "and to go slow. _Festina lente_ may well be his motto.”\n", + "“I fail to understand,” said Harker wearily. “Oh, do be more plain to\n", + "me! Perhaps grief and trouble are dulling my brain.”\n", + "The Professor laid his hand tenderly on his shoulder as he spoke:--\n", + "“Ah, my child, I will be plain. Do you not see how, of late, this\n", + "John’s home; for your Vampire, though in all afterwards he can come when\n", + "hiding-place! But, my child, do not despair; this knowledge come to him\n", + "just too late! Already all of his lairs but one be sterilise as for him;\n", + "there not more at stake for us than for him? Then why we not be even\n", + "more careful than him? By my clock it is one hour and already, if all be\n", + "well, friend Arthur and Quincey are on their way to us. To-day is our\n", + "Whilst he was speaking we were startled by a knock at the hall door, the\n", + "hall with one impulse, and Van Helsing, holding up his hand to us to\n", + "despatch. The Professor closed the door again, and, after looking at the\n", + "“Look out for D. He has just now, 12:45, come from Carfax hurriedly and\n", + "hastened towards the South. He seems to be going the round and may want\n", + "to see you: Mina.”\n", + "There was a pause, broken by Jonathan Harker’s voice:--\n", + "“Now, God be thanked, we shall soon meet!” Van Helsing turned to him\n", + "“God will act in His own way and time. Do not fear, and do not rejoice\n", + "“Oh, hush, hush, my child!” said Van Helsing. “God does not purchase\n", + "souls in this wise; and the Devil, though he may purchase, does not keep\n", + "faith. But God is merciful and just, and knows your pain and your\n", + "devotion to that dear Madam Mina. Think you, how her pain would be\n", + "coming for action; to-day this Vampire is limit to the powers of man,\n", + "is that my Lord Arthur and Quincey arrive first.”\n", + "About half an hour after we had received Mrs. Harker’s telegram, there\n", + "the Professor’s heart and mine beat loudly. We looked at each other, and\n", + "Helsing pulled back the latch, and, holding the door half open, stood\n", + "saw Lord Godalming and Quincey Morris. They came quickly in and closed\n", + "“It is all right. We found both places; six boxes in each and we\n", + "“Destroyed?” asked the Professor.\n", + "“For him!” We were silent for a minute, and then Quincey said:--\n", + "“There’s nothing to do but to wait here. If, however, he doesn’t turn up\n", + "by five o’clock, we must start off; for it won’t do to leave Mrs. Harker\n", + "“He will be here before long now,” said Van Helsing, who had been\n", + "consulting his pocket-book. “_Nota bene_, in Madam’s telegram he went\n", + "south from Carfax, that means he went to cross the river, and he could\n", + "suspicious; and he went from Carfax first to the place where he would\n", + "suspect interference least. You must have been at Bermondsey only a\n", + "Mile End next. This took him some time; for he would then have to be\n", + "arms! Be ready!” He held up a warning hand as he spoke, for we all could\n", + "adventures in different parts of the world, Quincey Morris had always\n", + "been the one to arrange the plan of action, and Arthur and I had been\n", + "gesture, placed us each in position. Van Helsing, Harker, and I were\n", + "just behind the door, so that when it was opened the Professor could\n", + "Godalming behind and Quincey in front stood just out of sight ready to\n", + "the hall; the Count was evidently prepared for some surprise--at least\n", + "Suddenly with a single bound he leaped into the room, winning a way past\n", + "Harker, who, with a quick movement, threw himself before the door\n", + "leading into the room in the front of the house. As the Count saw us, a\n", + "ready his great Kukri knife and made a fierce and sudden cut at him. The\n", + "blow was a powerful one; only the diabolical quickness of the Count’s\n", + "fell out. The expression of the Count’s face was so hellish, that for a\n", + "moment I feared for Harker, though I saw him throw the terrible knife\n", + "protective impulse, holding the Crucifix and Wafer in my left hand. I\n", + "the Count’s face. His waxen hue became greenish-yellow by the contrast\n", + "dive he swept under Harker’s arm, ere his blow could fall, and, grasping\n", + "We ran over and saw him spring unhurt from the ground. He, rushing up\n", + "There he turned and spoke to us:--\n", + "“You think to baffle me, you--with your pale faces all in a row, like\n", + "sheep in a butcher’s. You shall be sorry yet, each one of you! You think\n", + "jackals when I want to feed. Bah!” With a contemptuous sneer, he passed\n", + "to speak was the Professor, as, realising the difficulty of following\n", + "“We have learnt something--much! Notwithstanding his brave words, he\n", + "fears us; he fear time, he fear want! For if not, why he hurry so? His\n", + "very tone betray him, or my ears deceive. Why take that money? You\n", + "return.” As he spoke he put the money remaining into his pocket; took\n", + "the title-deeds in the bundle as Harker had left them, and swept the\n", + "Godalming and Morris had rushed out into the yard, and Harker had\n", + "lowered himself from the window to follow the Count. He had, however,\n", + "was no sign of him. Van Helsing and I tried to make inquiry at the back\n", + "It was now late in the afternoon, and sunset was not far off. We had to\n", + "Professor when he said:--\n", + "“Let us go back to Madam Mina--poor, poor dear Madam Mina. All we can do\n", + "bravely as he could to comfort Harker. The poor fellow was quite broken\n", + "With sad hearts we came back to my house, where we found Mrs. Harker\n", + "“I can never thank you all enough. Oh, my poor darling!” As she spoke,\n", + "she took her husband’s grey head in her hands and kissed it--“Lay your\n", + "poor head here and rest it. All will yet be well, dear! God will protect\n", + "us if He so will it in His good intent.” The poor fellow groaned. There\n", + "We had a sort of perfunctory supper together, and I think it cheered us\n", + "our promise, we told Mrs. Harker everything which had passed; and\n", + "part where Harker had rushed at the Count so recklessly, she clung to\n", + "purity and faith, was outcast from God.\n", + "“Jonathan,” she said, and the word sounded like music on her lips it was\n", + "so full of love and tenderness, “Jonathan dear, and you all my true,\n", + "you destroyed the false Lucy so that the true Lucy might live hereafter;\n", + "As she spoke I could see her husband’s face darken and draw together, as\n", + "Instinctively the clasp on his wife’s hand grew closer, till his\n", + "“May God give him into my hand just for long enough to destroy that\n", + "“Oh, hush! oh, hush! in the name of the good God. Don’t say such things,\n", + "Jonathan, my husband; or you will crush me with fear and horror. Just\n", + "other like you--and with equal cause for anger--may deny it to me! Oh,\n", + "had there been another way; but I pray that God may not have treasured\n", + "sorely stricken man. Oh, God, let these poor white hairs go in evidence\n", + "We men were all in tears now. There was no resisting them, and we wept\n", + "Her husband flung himself on his knees beside her, and putting his arms\n", + "round her, hid his face in the folds of her dress. Van Helsing beckoned\n", + "with their God.\n", + "Before they retired the Professor fixed up the room against any coming\n", + "of the Vampire, and assured Mrs. Harker that she might rest in peace.\n", + "She tried to school herself to the belief, and, manifestly for her\n", + "I think and believe, not without its reward. Van Helsing had placed at\n", + "When they had retired, Quincey, Godalming, and I arranged that we should\n", + "poor stricken lady. The first watch falls to Quincey, so the rest of us\n", + "_Jonathan Harker’s Journal._\n", + "_3-4 October, close to midnight._--I thought yesterday would never end.\n", + "There was over me a yearning for sleep, in some sort of blind belief\n", + "earth-box remained, and that the Count alone knew where it was. If he\n", + "This I know: that if ever there was a woman who was all perfection, that\n", + "seem despicable. Surely God will not permit the world to be the poorer\n", + "reefwards now, and faith is our only anchor. Thank God! Mina is\n", + "over her face a repose which was like spring after the blasts of March.\n", + "_Later._--I must have fallen asleep, for I was awaked by Mina, who was\n", + "“Hush! there is someone in the corridor!” I got up softly, and crossing\n", + "Just outside, stretched on a mattress, lay Mr. Morris, wide awake. He\n", + "“Hush! go back to bed; it is all right. One of us will be here all\n", + "His look and gesture forbade discussion, so I came back and told Mina.\n", + "She sighed and positively a shadow of a smile stole over her poor, pale\n", + "“Oh, thank God for good brave men!” With a sigh she sank back again to\n", + "_4 October, morning._--Once again during the night I was wakened by\n", + "Mina. This time we had all had a good sleep, for the grey of the coming\n", + "“Go, call the Professor. I want to see him at once.”\n", + "“Why?” I asked.\n", + "“Is anything wrong?” he asked, in alarm.\n", + "“No,” I replied; “but Mina wants to see Dr. Van Helsing at once.”\n", + "“I will go,” he said, and hurried into the Professor’s room.\n", + "In two or three minutes later Van Helsing was in the room in his\n", + "dressing-gown, and Mr. Morris and Lord Godalming were with Dr. Seward at\n", + "the door asking questions. When the Professor saw Mina smile--a\n", + "“Oh, my dear Madam Mina, this is indeed a change. See! friend Jonathan,\n", + "we have got our dear Madam Mina, as of old, back to us to-day!” Then\n", + "turning to her, he said, cheerfully: “And what am I do for you? For at\n", + "“I want you to hypnotise me!” she said. “Do it before the dawn, for I\n", + "short!” Without a word he motioned her to sit up in bed.\n", + "Looking fixedly at her, he commenced to make passes in front of her,\n", + "her bosom could one know that she was alive. The Professor made a few\n", + "impose silence, the Professor motioned to me to bring the others in.\n", + "They came on tip-toe, closing the door behind them, and stood at the\n", + "stillness was broken by Van Helsing’s voice speaking in a low level tone\n", + "“Where are you?” The answer came in a neutral way:--\n", + "“I do not know. Sleep has no place it can call its own.” For several\n", + "minutes there was silence. Mina sat rigid, and the Professor stood\n", + "was growing lighter; without taking his eyes from Mina’s face, Dr. Van\n", + "Helsing motioned me to pull up the blind. I did so, and the day seemed\n", + "itself through the room. On the instant the Professor spoke again:--\n", + "“Where are you now?” The answer came dreamily, but with intention; it\n", + "“What do you see?”\n", + "“What do you hear?” I could detect the strain in the Professor’s patient\n", + "“The lapping of water. It is gurgling by, and little waves leap. I can\n", + "“Then you are on a ship?” We all looked at each other, trying to glean\n", + "“Oh, yes!”\n", + "“What else do you hear?”\n", + "“The sound of men stamping overhead as they run about. There is the\n", + "“What are you doing?”\n", + "“I am still--oh, so still. It is like death!” The voice faded away into\n", + "By this time the sun had risen, and we were all in the full light of\n", + "day. Dr. Van Helsing placed his hands on Mina’s shoulders, and laid her\n", + "us all around her. “Have I been talking in my sleep?” was all she said.\n", + "She seemed, however, to know the situation without telling, though she\n", + "was eager to know what she had told. The Professor repeated the\n", + "“Then there is not a moment to lose: it may not be yet too late!” Mr.\n", + "Morris and Lord Godalming started for the door but the Professor’s calm\n", + "“Stay, my friends. That ship, wherever it was, was weighing anchor\n", + "your so great Port of London. Which of them is it that you seek? God be\n", + "forward if we had been able to see what we might have seen! Alas, but\n", + "that sentence is a puddle; is it not? We can know now what was in the\n", + "Count’s mind, when he seize that money, though Jonathan’s so fierce\n", + "me, ESCAPE! He saw that with but one earth-box left, and a pack of men\n", + "following like dogs after a fox, this London was no place for him. He\n", + "think to escape, but no! we follow him. Tally Ho! as friend Arthur would\n", + "say when he put on his red frock! Our old fox is wily; oh! so wily, and\n", + "us.” Mina looked at him appealingly as she asked:--\n", + "“But why need we seek him further, when he is gone away from us?” He\n", + "“Ask me nothings as yet. When we have breakfast, then I answer all\n", + "questions.” He would say no more, and we separated to dress.\n", + "After breakfast Mina repeated her question. He looked at her gravely for\n", + "“Because my dear, dear Madam Mina, now more than ever must we find him\n", + "even if we have to follow him to the jaws of Hell!” She grew paler as\n", + "“Why?”\n", + "“Because,” he answered solemnly, “he can live for centuries, and you are\n", + "CHAPTER XXIV\n", + "DR. SEWARD’S PHONOGRAPH DIARY, SPOKEN BY VAN HELSING\n", + "This to Jonathan Harker.\n", + "You are to stay with your dear Madam Mina. We shall go to make our\n", + "This is your best and most holiest office. This day nothing can find him\n", + "to his Castle in Transylvania. I know it so well, as if a great hand of\n", + "he think poor Miss Lucy, being as he thought like him, keep open to him.\n", + "But there was not of time. When that fail he make straight for his last\n", + "He is clever, oh, so clever! he know that his game here was finish; and\n", + "comfort you and poor dear Madam Mina with new hope. For it will be hope\n", + "pursue, he take hundreds of years to get so far as London; and yet in\n", + "But we are strong, each in our purpose; and we are all more strong\n", + "together. Take heart afresh, dear husband of Madam Mina. This battle is\n", + "but begun, and in the end we shall win--so sure as that God sits on high\n", + "to watch over His children. Therefore be of much comfort till we return.\n", + "VAN HELSING.\n", + "_Jonathan Harker’s Journal._\n", + "_4 October._--When I read to Mina, Van Helsing’s message in the\n", + "certainty that the Count is out of the country has given her comfort;\n", + "believe in it. Even my own terrible experiences in Castle Dracula seem\n", + "Alas! how can I disbelieve! In the midst of my thought my eye fell on\n", + "Mina says that perhaps we are the instruments of ultimate good. It may\n", + "yet of the future. It is better to wait till we see the Professor and\n", + "The day is running by more quickly than I ever thought a day could run\n", + "_Mina Harker’s Journal._\n", + "_5 October, 5 p. m._--Our meeting for report. Present: Professor Van\n", + "Helsing, Lord Godalming, Dr. Seward, Mr. Quincey Morris, Jonathan\n", + "Harker, Mina Harker.\n", + "Dr. Van Helsing described what steps were taken during the day to\n", + "discover on what boat and whither bound Count Dracula made his escape:--\n", + "“As I knew that he wanted to get back to Transylvania, I felt sure that\n", + "he must go by the Danube mouth; or by somewhere in the Black Sea, since\n", + "by that way he come. It was a dreary blank that was before us. _Omne\n", + "ships leave for the Black Sea last night. He was in sailing ship, since\n", + "Madam Mina tell of sails being set. These not so important as to go in\n", + "your list of the shipping in the _Times_, and so we go, by suggestion of\n", + "Lord Godalming, to your Lloyd’s, where are note of all ships that sail,\n", + "however so small. There we find that only one Black-Sea-bound ship go\n", + "out with the tide. She is the _Czarina Catherine_, and she sail from\n", + "Doolittle’s Wharf for Varna, and thence on to other parts and up the\n", + "Danube. ‘Soh!’ said I, ‘this is the ship whereon is the Count.’ So off\n", + "we go to Doolittle’s Wharf, and there we find a man in an office of wood\n", + "of the goings of the _Czarina Catherine_. He swear much, and he red face\n", + "and loud of voice, but he good fellow all the same; and when Quincey\n", + "“They make known to us among them, how last afternoon at about five\n", + "sails for the Black Sea and for where. Some took him to the office and\n", + "him that he doesn’t want no Frenchmen--with bloom upon them and also\n", + "“No one knew where he went ‘or bloomin’ well cared,’ as they said, for\n", + "became apparent to all that the _Czarina Catherine_ would not sail as\n", + "The captain swore polyglot--very polyglot--polyglot with bloom and\n", + "Indeed they thought not of him; for soon the fog begin to melt away, and\n", + "“And so, my dear Madam Mina, it is that we have to rest for a time, for\n", + "Danube mouth. To sail a ship takes time, go she never so quick; and when\n", + "Varna, and to be given to an agent, one Ristics who will there present\n", + "When he ask if there be any wrong, for that so, he can telegraph and\n", + "have inquiry made at Varna, we say ‘no’; for what is to be done is not\n", + "When Dr. Van Helsing had done speaking, I asked him if he were certain\n", + "that the Count had remained on board the ship. He replied: “We have the\n", + "pursue the Count, for oh! I dread Jonathan leaving me, and I know that\n", + "“Yes, it is necessary--necessary--necessary! For your sake in the first,\n", + "dear Madam Mina, will learn it in the phonograph of my friend John, or\n", + "work of centuries. Were another of the Un-Dead, like him, to try to do\n", + "some wondrous way. The very place, where he have been alive, Un-Dead for\n", + "There have been volcanoes, some of whose openings still send out waters\n", + "so in time, death, which is of man’s common lot and with God’s sanction,\n", + "shall make you like to him. This must not be! We have sworn together\n", + "that it must not. Thus are we ministers of God’s own wish: that the\n", + "world, and men for whom His Son die, will not be given over to monsters,\n", + "whose very existence would defame Him. He have allowed us to redeem one\n", + "soul already, and we go out as the old knights of the Cross to redeem\n", + "we fall, we fall in good cause.” He paused and I said:--\n", + "“But will not the Count take his rebuff wisely? Since he has been driven\n", + "from England, will he not avoid it, as a tiger does the village from\n", + "“Aha!” he said, “your simile of the tiger good, for me, and I shall\n", + "adopt him. Your man-eater, as they of India call the tiger who has once\n", + "over the Turkey frontier and attack his enemy on his own ground; he be\n", + "beaten back, but did he stay? No! He come again, and again, and again.\n", + "Look at his persistence and endurance. With the child-brain that was to\n", + "does he do? He find out the place of all the world most of promise for\n", + "peoples. Oh, if such an one was to come from God, and not the Devil,\n", + "honour and glory of God.”\n", + "After a general discussion it was determined that for to-night nothing\n", + "My surmise was not finished, could not be; for I caught sight in the\n", + "_Dr. Seward’s Diary._\n", + "_5 October._--We all rose early, and I think that sleep did much for\n", + "It is really wonderful how much resilience there is in human nature. Let\n", + "caught sight of the red blotch on Mrs. Harker’s forehead that I was\n", + "trouble is still existent. Even Mrs. Harker seems to lose sight of her\n", + "that in some mysterious way poor Mrs. Harker’s tongue is tied. I _know_\n", + "cannot, give them utterance. I have mentioned this to Van Helsing, and\n", + "Count had his own purposes when he gave her what Van Helsing called “the\n", + "Vampire’s baptism of blood.” Well, there may be a poison that distils\n", + "a mystery we should not wonder at anything! One thing I know: that if my\n", + "instinct be true regarding poor Mrs. Harker’s silences, then there is a\n", + "Van Helsing is coming to my study a little before the others. I shall\n", + "_Later._--When the Professor came in, we talked over the state of\n", + "“Friend John, there is something that you and I must talk of alone, just\n", + "“Madam Mina, our poor, dear Madam Mina is changing.” A cold shiver ran\n", + "through me to find my worst fears thus endorsed. Van Helsing\n", + "“With the sad experience of Miss Lucy, we must this time be warned\n", + "often; as so it was with Miss Lucy. She did not speak, even when she\n", + "it be that she can, by our hypnotic trance, tell what the Count see and\n", + "“Then, what we must do is to prevent this; we must keep her ignorant of\n", + "task! Oh, so painful that it heart-break me to think of; but it must be.\n", + "When to-day we meet, I must tell her that for reason which we will not\n", + "us.” He wiped his forehead, which had broken out in profuse perspiration\n", + "It is now close to the time of our general gathering. Van Helsing has\n", + "_Later._--At the very outset of our meeting a great personal relief was\n", + "experienced by both Van Helsing and myself. Mrs. Harker had sent a\n", + "without her presence to embarrass us. The Professor and I looked at each\n", + "part, I thought that if Mrs. Harker realised the danger herself, it was\n", + "confer alone again. We went at once into our Plan of Campaign. Van\n", + "Helsing roughly put the facts before us first:--\n", + "“The _Czarina Catherine_ left the Thames yesterday morning. It will take\n", + "reach Varna; but we can travel overland to the same place in three days.\n", + "Now, if we allow for two days less for the ship’s voyage, owing to such\n", + "weather influences as we know that the Count can bring to bear; and if\n", + "be in Varna a day before the ship arrives, and able to make such\n", + "against evil things, spiritual as well as physical.” Here Quincey Morris\n", + "“I understand that the Count comes from a wolf country, and it may be\n", + "that he shall get there before us. I propose that we add Winchesters to\n", + "our armament. I have a kind of belief in a Winchester when there is any\n", + "trouble of that sort around. Do you remember, Art, when we had the pack\n", + "after us at Tobolsk? What wouldn’t we have given then for a repeater\n", + "“Good!” said Van Helsing, “Winchesters it shall be. Quincey’s head is\n", + "can do nothing here; and as I think that Varna is not familiar to any of\n", + "us, why not go there more soon? It is as long to wait here as there.\n", + "To-night and to-morrow we can get ready, and then, if all be well, we\n", + "“We four?” said Harker interrogatively, looking from one to another of\n", + "“Of course!” answered the Professor quickly, “you must remain to take\n", + "care of your so sweet wife!” Harker was silent for awhile and then said\n", + "“Let us talk of that part of it in the morning. I want to consult with\n", + "Mina.” I thought that now was the time for Van Helsing to warn him not\n", + "_Jonathan Harker’s Journal._\n", + "_5 October, afternoon._--For some time after our meeting this morning I\n", + "with happiness. Thank God, there are such moments still for her.\n", + "_Later._--How strange it all is. I sat watching Mina’s happy sleep, and\n", + "once Mina opened her eyes, and looking at me tenderly, said:--\n", + "“Jonathan, I want you to promise me something on your word of honour. A\n", + "promise made to me, but made holily in God’s hearing, and not to be\n", + "“Mina,” I said, “a promise like that, I cannot make at once. I may have\n", + "“But, dear one,” she said, with such spiritual intensity that her eyes\n", + "You can ask Dr. Van Helsing if I am not right; if he disagrees you may\n", + "She said:--\n", + "“Promise me that you will not tell me anything of the plans formed for\n", + "the campaign against the Count. Not by word, or inference, or\n", + "_Later, midnight._--Mina has been bright and cheerful all the evening.\n", + "So much so that all the rest seemed to take courage, as if infected\n", + "trouble. Thank God for it, for then at least she can forget her care.\n", + "Perhaps her example may affect me as her gaiety did to-night. I shall\n", + "_6 October, morning._--Another surprise. Mina woke me early, about the\n", + "same time as yesterday, and asked me to bring Dr. Van Helsing. I thought\n", + "for the Professor. He had evidently expected some such call, for I found\n", + "room, he asked Mina if the others might come, too.\n", + "“No,” she said quite simply, “it will not be necessary. You can tell\n", + "Dr. Van Helsing was as startled as I was. After a moment’s pause he\n", + "“But why?”\n", + "“You must take me with you. I am safer with you, and you shall be safer,\n", + "“But why, dear Madam Mina? You know that your safety is our solemnest\n", + "any of us from--from circumstances--things that have been.” He paused,\n", + "As she replied, she raised her finger and pointed to her forehead:--\n", + "coming up; I may not be able again. I know that when the Count wills me\n", + "wile; by any device to hoodwink--even Jonathan.” God saw the look that\n", + "she turned on me as she spoke, and if there be indeed a Recording Angel\n", + "“You men are brave and strong. You are strong in your numbers, for you\n", + "and so learn that which even I myself do not know.” Dr. Van Helsing said\n", + "“Madam Mina, you are, as always, most wise. You shall with us come; and\n", + "together we shall do that which we go forth to achieve.” When he had\n", + "spoken, Mina’s long spell of silence made me look at her. She had fallen\n", + "the blind and let in the sunlight which flooded the room. Van Helsing\n", + "a minute Lord Godalming, Dr. Seward, and Mr. Morris were with us also.\n", + "He told them what Mina had said, and went on:--\n", + "“In the morning we shall leave for Varna. We have now to deal with a\n", + "new factor: Madam Mina. Oh, but her soul is true. It is to her an agony\n", + "warned in time. There must be no chance lost, and in Varna we must be\n", + "“What shall we do exactly?” asked Mr. Morris laconically. The Professor\n", + "“We shall at the first board that ship; then, when we have identified\n", + "“I shall not wait for any opportunity,” said Morris. “When I see the box\n", + "“Good boy,” said Dr. Van Helsing. “Brave boy. Quincey is all man. God\n", + "There was nothing further to be said, and we parted. I shall now settle\n", + "_Later._--It is all done; my will is made, and all complete. Mina if she\n", + "It is now drawing towards the sunset; Mina’s uneasiness calls my\n", + "danger--some new pain, which, however, may in God’s will be means to a\n", + "She is calling to me.\n", + "CHAPTER XXV\n", + "DR. SEWARD’S DIARY\n", + "_11 October, Evening._--Jonathan Harker has asked me to note this, as he\n", + "I think that none of us were surprised when we were asked to see Mrs.\n", + "Harker a little before the time of sunset. We have of late come to\n", + "To-night, when we met, she was somewhat constrained, and bore all the\n", + "“We are all here together in freedom, for perhaps the last time! I know,\n", + "dear; I know that you will always be with me to the end.” This was to\n", + "her husband whose hand had, as we could see, tightened upon hers. “In\n", + "the morning we go out upon our task, and God alone knows what may be in\n", + "There is a poison in my blood, in my soul, which may destroy me; which\n", + "is one way out for me, you must not and I must not take it!” She looked\n", + "“What is that way?” asked Van Helsing in a hoarse voice. “What is that\n", + "“That I may die now, either by my own hand or that of another, before\n", + "did my poor Lucy’s. Were death, or the fear of death, the only thing\n", + "done, is God’s will. Therefore, I, on my part, give up here the\n", + "blackest things that the world or the nether world holds!” We were all\n", + "faces of the others were set and Harker’s grew ashen grey; perhaps he\n", + "“This is what I can give into the hotch-pot.” I could not but note the\n", + "seriousness. “What will each of you give? Your lives I know,” she went\n", + "on quickly, “that is easy for brave men. Your lives are God’s, and you\n", + "can give them back to Him; but what will you give to me?” She looked\n", + "seemed to understand; he nodded, and her face lit up. “Then I shall tell\n", + "“What is that time?” The voice was Quincey’s, but it was low and\n", + "“When you shall be convinced that I am so changed that it is better that\n", + "Quincey was the first to rise after the pause. He knelt down before her\n", + "“My true friend!” was all she could say amid her fast-falling tears, as,\n", + "“I swear the same, my dear Madam Mina!” said Van Helsing.\n", + "“And I!” said Lord Godalming, each of them in turn kneeling to her to\n", + "“And must I, too, make such a promise, oh, my wife?”\n", + "“You too, my dearest,” she said, with infinite yearning of pity in her\n", + "voice and eyes. “You must not shrink. You are nearest and dearest and\n", + "towards those whom they love, in such times of sore trial! And oh, my\n", + "the hand of him that loves me best. Dr. Van Helsing, I have not\n", + "forgotten your mercy in poor Lucy’s case to him who loved”--she stopped\n", + "“Again I swear!” came the Professor’s resonant voice. Mrs. Harker\n", + "“And now one word of warning, a warning which you must never forget:\n", + "“One more request;” she became very solemn as she said this, “it is not\n", + "me, if you will.” We all acquiesced, but no one spoke; there was no need\n", + "“I want you to read the Burial Service.” She was interrupted by a deep\n", + "heart, and continued: “You must read it over me some day. Whatever may\n", + "“But oh, my dear one,” he pleaded, “death is afar off from you.”\n", + "“Nay,” she said, holding up a warning hand. “I am deeper in death at\n", + "“Oh, my wife, must I read it?” he said, before he began.\n", + "“It would comfort me, my husband!” was all she said; and he began to\n", + "“How can I--how could any one--tell of that strange scene, its\n", + "had to pause, he read the simple and beautiful service from the Burial\n", + "of the Dead. I--I cannot go on--words--and--v-voice--f-fail m-me!”\n", + "She was right in her instinct. Strange as it all was, bizarre as it may\n", + "comforted us much; and the silence, which showed Mrs. Harker’s coming\n", + "_Jonathan Harker’s Journal._\n", + "_15 October, Varna._--We left Charing Cross on the morning of the 12th,\n", + "got to Paris the same night, and took the places secured for us in the\n", + "Orient Express. We travelled night and day, arriving here at about five\n", + "o’clock. Lord Godalming went to the Consulate to see if any telegram had\n", + "Odessus.” The journey may have had incidents; I was, however, too eager\n", + "to get on, to care for them. Until the _Czarina Catherine_ comes into\n", + "Thank God! Mina is well, and looks to be getting stronger; her colour is\n", + "wakeful and alert; and it has become a habit for Van Helsing to\n", + "“Nothing; all is dark.” And to the second:--\n", + "It is evident that the _Czarina Catherine_ is still at sea, hastening on\n", + "her way to Varna. Lord Godalming has just returned. He had four\n", + "that the _Czarina Catherine_ had not been reported to Lloyd’s from\n", + "anywhere. He had arranged before leaving London that his agent should\n", + "We had dinner and went to bed early. To-morrow we are to see the\n", + "Vice-Consul, and to arrange, if we can, about getting on board the ship\n", + "as soon as she arrives. Van Helsing says that our chance will be to get\n", + "on the boat between sunrise and sunset. The Count, even if he takes the\n", + "for we can open the box and make sure of him, as we did of poor Lucy,\n", + "seamen. Thank God! this is the country where bribery can do anything,\n", + "warned, and we shall be safe. Judge Moneybag will settle this case, I\n", + "_16 October._--Mina’s report still the same: lapping waves and rushing\n", + "when we hear of the _Czarina Catherine_ we shall be ready. As she must\n", + "pass the Dardanelles we are sure to have some report.\n", + "_17 October._--Everything is pretty well fixed now, I think, to welcome\n", + "the Count on his return from his tour. Godalming told the shippers that\n", + "risk. The owner gave him a paper telling the Captain to give him every\n", + "similar authorisation to his agent at Varna. We have seen the agent, who\n", + "was much impressed with Godalming’s kindly manner to him, and we are all\n", + "Count is there, Van Helsing and Seward will cut off his head at once and\n", + "drive a stake through his heart. Morris and Godalming and I shall\n", + "have ready. The Professor says that if we can so treat the Count’s body,\n", + "_Czarina Catherine_ is seen, we are to be informed by a special\n", + "_24 October._--A whole week of waiting. Daily telegrams to Godalming,\n", + "but only the same story: “Not yet reported.” Mina’s morning and evening\n", + "_Telegram, October 24th._\n", + "_Rufus Smith, Lloyd’s, London, to Lord Godalming, care of H. B. M.\n", + "Vice-Consul, Varna._\n", + "“_Czarina Catherine_ reported this morning from Dardanelles.”\n", + "_Dr. Seward’s Diary._\n", + "_25 October._--How I miss my phonograph! To write diary with a pen is\n", + "irksome to me; but Van Helsing says I must. We were all wild with\n", + "excitement yesterday when Godalming got his telegram from Lloyd’s. I\n", + "Harker, alone of our party, did not show any signs of emotion. After\n", + "getting back some of her colour, Van Helsing and I are not satisfied. We\n", + "would break poor Harker’s heart--certainly his nerve--if he knew that we\n", + "had even a suspicion on the subject. Van Helsing examines, he tells me,\n", + "“Euthanasia” is an excellent and a comforting word! I am grateful to\n", + "It is only about 24 hours’ sail from the Dardanelles to here, at the\n", + "rate the _Czarina Catherine_ has come from London. She should therefore\n", + "_25 October, Noon_.--No news yet of the ship’s arrival. Mrs. Harker’s\n", + "excitement, except Harker, who is calm; his hands are cold as ice, and\n", + "an hour ago I found him whetting the edge of the great Ghoorka knife\n", + "Count if the edge of that “Kukri” ever touches his throat, driven by\n", + "Van Helsing and I were a little alarmed about Mrs. Harker to-day. About\n", + "_Later._--Our opinion was justified, for when after a refreshing sleep\n", + "may be in the Black Sea, the Count is hurrying to his destination. To\n", + "_26 October._--Another day and no tidings of the _Czarina Catherine_.\n", + "She ought to be here by now. That she is still journeying _somewhere_ is\n", + "apparent, for Mrs. Harker’s hypnotic report at sunrise was still the\n", + "_27 October, Noon._--Most strange; no news yet of the ship we wait for.\n", + "Mrs. Harker reported last night and this morning as usual: “lapping\n", + "faint.” The telegrams from London have been the same: “no further\n", + "report.” Van Helsing is terribly anxious, and told me just now that he\n", + "fears the Count is escaping us. He added significantly:--\n", + "“I did not like that lethargy of Madam Mina’s. Souls and memories can do\n", + "strange things during trance.” I was about to ask him more, but Harker\n", + "_28 October._--Telegram. _Rufus Smith, London, to Lord Godalming,\n", + "care H. B. M. Vice Consul, Varna._\n", + "“_Czarina Catherine_ reported entering Galatz at one o’clock\n", + "_Dr. Seward’s Diary._\n", + "_28 October._--When the telegram came announcing the arrival in Galatz I\n", + "The delay of arrival at Varna made us individually satisfied that things\n", + "took it differently. Van Helsing raised his hand over his head for a\n", + "moment, as though in remonstrance with the Almighty; but he said not a\n", + "Godalming grew very pale, and sat breathing heavily. I was myself half\n", + "stunned and looked in wonder at one after another. Quincey Morris\n", + "old wandering days it meant “action.” Mrs. Harker grew ghastly white, so\n", + "the great Kukri knife and rested there. “When does the next train start\n", + "for Galatz?” said Van Helsing to us generally.\n", + "“At 6:30 to-morrow morning!” We all started, for the answer came from\n", + "Mrs. Harker.\n", + "“How on earth do you know?” said Art.\n", + "“You forget--or perhaps you do not know, though Jonathan does and so\n", + "does Dr. Van Helsing--that I am the train fiend. At home in Exeter I\n", + "the time-tables now. I knew that if anything were to take us to Castle\n", + "Dracula we should go by Galatz, or at any rate through Bucharest, so I\n", + "“Wonderful woman!” murmured the Professor.\n", + "“Can’t we get a special?” asked Lord Godalming. Van Helsing shook his\n", + "Now let us organize. You, friend Arthur, go to the train and get the\n", + "you, friend Jonathan, go to the agent of the ship and get from him\n", + "letters to the agent in Galatz, with authority to make search the ship\n", + "just as it was here. Morris Quincey, you see the Vice-Consul, and get\n", + "his aid with his fellow in Galatz and all he can do to make our way\n", + "smooth, so that no times be lost when over the Danube. John will stay\n", + "with Madam Mina and me, and we shall consult. For so if time be long you\n", + "with Madam to make report.”\n", + "“And I,” said Mrs. Harker brightly, and more like her old self than she\n", + "The three younger men looked happier at the moment as they seemed to\n", + "realise the significance of her words; but Van Helsing and I, turning to\n", + "When the three men had gone out to their tasks Van Helsing asked Mrs.\n", + "Harker to look up the copy of the diaries and find him the part of\n", + "Harker’s journal at the Castle. She went away to get it; when the door\n", + "“We mean the same! speak out!”\n", + "“There is some change. It is a hope that makes me sick, for it may\n", + "“Quite so. Do you know why I asked her to get the manuscript?”\n", + "“No!” said I, “unless it was to get an opportunity of seeing me alone.”\n", + "“You are in part right, friend John, but only in part. I want to tell\n", + "but I believe it is right. In the moment when Madam Mina said those\n", + "the trance of three days ago the Count sent her his spirit to read her\n", + "Now he make his most effort to escape us. At present he want her not.\n", + "“He is sure with his so great knowledge that she will come at his call;\n", + "have been of man so long and that have not lost the grace of God, will\n", + "therefore small. Here comes Madam Mina; not a word to her of her trance!\n", + "She know it not; and it would overwhelm her and make despair just when\n", + "a special power which the Count give her, and which he may not take away\n", + "learn. Oh, John, my friend, we are in awful straits. I fear, as I never\n", + "feared before. We can only trust the good God. Silence! here she comes!”\n", + "I thought that the Professor was going to break down and have hysterics,\n", + "just as he had when Lucy died, but with a great effort he controlled\n", + "himself and was at perfect nervous poise when Mrs. Harker tripped into\n", + "of typewriting to Van Helsing. He looked over them gravely, his face\n", + "“Friend John, to you with so much of experience already--and you, too,\n", + "dear Madam Mina, that are young--here is a lesson: do not fear ever to\n", + "strong to use his little wings. Nay, like the “Ugly Duck” of my friend\n", + "Hans Andersen, he be no duck-thought at all, but a big swan-thought that\n", + "read here what Jonathan have written:--\n", + "“That other of his race who, in a later age, again and again, brought\n", + "his forces over The Great River into Turkey Land; who, when he was\n", + "“What does this tell us? Not much? no! The Count’s child-thought see\n", + "man-thought see nothing, till just now. No! But there comes another word\n", + "leagues. Is it not so? Well, I shall explain. To begin, have you ever\n", + "study the philosophy of crime? ‘Yes’ and ‘No.’ You, John, yes; for it is\n", + "a study of insanity. You, no, Madam Mina; for crime touch you not--not\n", + "This criminal has not full man-brain. He is clever and cunning and\n", + "him the ground to start from to do more. ‘_Dos pou sto_,’ said\n", + "Archimedes. ‘Give me a fulcrum, and I shall move the world!’ To do once,\n", + "just as he have done before! Oh, my dear, I see that your eyes are\n", + "Mrs. Harker began to clap her hands and her eyes sparkled. He went on:--\n", + "“Now you shall speak. Tell us two dry men of science what you see with\n", + "those so bright eyes.” He took her hand and held it whilst she spoke.\n", + "His finger and thumb closed on her pulse, as I thought instinctively and\n", + "“The Count is a criminal and of criminal type. Nordau and Lombroso would\n", + "Thus, in a difficulty he has to seek resource in habit. His past is a\n", + "lips--tells that once before, when in what Mr. Morris would call a\n", + "So he came to London to invade a new land. He was beaten, and when all\n", + "the sea to his home; just as formerly he had fled back over the Danube\n", + "from Turkey Land.”\n", + "“Good, good! oh, you so clever lady!” said Van Helsing,\n", + "“Seventy-two only; and in all this excitement. I have hope.” Turning to\n", + "“But go on. Go on! there is more to tell if you will. Be not afraid;\n", + "John and I know. I do in any case, and shall tell you if you are right.\n", + "Speak, without fear!”\n", + "“Nay! fear not, you must be egotist, for it is of you that we think.”\n", + "“Then, as he is criminal he is selfish; and as his intellect is small\n", + "purpose. That purpose is remorseless. As he fled back over the Danube,\n", + "night. I felt it! Oh, I felt it! Thank God, for His great mercy! My soul\n", + "his ends.” The Professor stood up:--\n", + "“He has so used your mind; and by it he has left us here in Varna,\n", + "Galatz, where, doubtless, he had made preparation for escaping from us.\n", + "But his child-mind only saw so far; and it may be that, as ever is in\n", + "God’s Providence, the very thing that the evil-doer most reckoned on for\n", + "in his own snare, as the great Psalmist says. For now that he think he\n", + "there can be no knowledge of him to you; there is where he fail! That\n", + "that God is with us through all this blackness, and these many dark\n", + "ourselves that we become like him. Friend John, this has been a great\n", + "And so I have written it whilst we wait their return, and Mrs. Harker\n", + "has written with her typewriter all since she brought the MS. to us.\n", + "CHAPTER XXVI\n", + "DR. SEWARD’S DIARY\n", + "_29 October._--This is written in the train from Varna to Galatz. Last\n", + "for our work when we get to Galatz. When the usual time came round Mrs.\n", + "Harker prepared herself for her hypnotic effort; and after a longer and\n", + "more serious effort on the part of Van Helsing than has been usually\n", + "this time the Professor had to ask her questions, and to ask them pretty\n", + "There is tramping of feet overhead, and ropes and chains are dragged\n", + "along. What is this? There is a gleam of light; I can feel the air\n", + "Here she stopped. She had risen, as if impulsively, from where she lay\n", + "weight. Van Helsing and I looked at each other with understanding.\n", + "Quincey raised his eyebrows slightly and looked at her intently, whilst\n", + "Harker’s hand instinctively closed round the hilt of his Kukri. There\n", + "“Would none of you like a cup of tea? You must all be so tired!” We\n", + "tea; when she had gone Van Helsing said:--\n", + "“You see, my friends. _He_ is close to land: he has left his\n", + "at Whitby. But if the day come before he get on shore, then, unless he\n", + "We may then arrive in time; for if he escape not at night we shall come\n", + "There was no more to be said, so we waited in patience until the dawn;\n", + "at which time we might learn more from Mrs. Harker.\n", + "Early this morning we listened, with breathless anxiety, for her\n", + "so short that we began to despair. Van Helsing seemed to throw his whole\n", + "“All is dark. I hear lapping water, level with me, and some creaking as\n", + "of wood on wood.” She paused, and the red sun shot up. We must wait till\n", + "And so it is that we are travelling towards Galatz in an agony of\n", + "but already, at Bucharest, we are three hours late, so we cannot\n", + "hypnotic messages from Mrs. Harker; either or both may possibly throw\n", + "_Later._--Sunset has come and gone. Fortunately it came at a time when\n", + "Mrs. Harker yielded to the hypnotic influence even less readily than\n", + "this morning. I am in fear that her power of reading the Count’s\n", + "on it may ultimately mislead us. If I thought that the Count’s power\n", + "“Something is going out; I can feel it pass me like a cold wind. I can\n", + "fierce-falling water, and the howling of wolves.” She stopped and a\n", + "in answer to the Professor’s imperative questioning. When she woke from\n", + "_30 October, 7 a. m._--We are near Galatz now, and I may not have time\n", + "Knowing of the increasing difficulty of procuring the hypnotic trance,\n", + "Van Helsing began his passes earlier than usual. They produced no\n", + "greater difficulty, only a minute before the sun rose. The Professor\n", + "“All is dark. I hear water swirling by, level with my ears, and the\n", + "queer one like----” She stopped and grew white, and whiter still.\n", + "“Go on; go on! Speak, I command you!” said Van Helsing in an agonised\n", + "was reddening even Mrs. Harker’s pale face. She opened her eyes, and we\n", + "“Oh, Professor, why ask me to do what you know I can’t? I don’t remember\n", + "anything.” Then, seeing the look of amazement on our faces, she said,\n", + "“What have I said? What have I done? I know nothing, only that I was\n", + "It seemed so funny to hear you order me about, as if I were a bad\n", + "“Oh, Madam Mina,” he said, sadly, “it is proof, if proof be needed, of\n", + "The whistles are sounding; we are nearing Galatz. We are on fire with\n", + "_Mina Harker’s Journal._\n", + "_30 October._--Mr. Morris took me to the hotel where our rooms had been\n", + "much as they had been at Varna, except that Lord Godalming went to the\n", + "Vice-Consul, as his rank might serve as an immediate guarantee of some\n", + "of the _Czarina Catherine_.\n", + "_Later._--Lord Godalming has returned. The Consul is away, and the\n", + "Vice-Consul sick; so the routine work has been attended to by a clerk.\n", + "He was very obliging, and offered to do anything in his power.\n", + "_Jonathan Harker’s Journal._\n", + "_30 October._--At nine o’clock Dr. Van Helsing, Dr. Seward, and I called\n", + "on Messrs. Mackenzie & Steinkoff, the agents of the London firm of\n", + "Hapgood. They had received a wire from London, in answer to Lord\n", + "Godalming’s telegraphed request, asking us to show them any civility in\n", + "on board the _Czarina Catherine_, which lay at anchor out in the river\n", + "harbour. There we saw the Captain, Donelson by name, who told us of his\n", + "“Man!” he said, “but it made us afeard, for we expeckit that we should\n", + "average. It’s no canny to run frae London to the Black Sea wi’ a wind\n", + "ahint ye, as though the Deil himself were blawin’ on yer sail for his\n", + "we see. We ran by Gibraltar wi’oot bein’ able to signal; an’ till we\n", + "came to the Dardanelles and had to wait to get our permit to pass, we\n", + "Deil was minded to get us into the Black Sea quick, he was like to do it\n", + "miscredit wi’ the owners, or no hurt to our traffic; an’ the Old Mon who\n", + "hinderin’ him.” This mixture of simplicity and cunning, of superstition\n", + "and commercial reasoning, aroused Van Helsing, who said:--\n", + "“Mine friend, that Devil is more clever than he is thought by some; and\n", + "he know when he meet his match!” The skipper was not displeased with the\n", + "“When we got past the Bosphorus the men began to grumble; some o’ them,\n", + "the Roumanians, came and asked me to heave overboard a big box which had\n", + "frae London. I had seen them speer at the fellow, and put out their twa\n", + "five days I joost let the wind carry us; for if the Deil wanted to get\n", + "through the fog, we found ourselves just in the river opposite Galatz.\n", + "The Roumanians were wild, and wanted me right or wrong to take out the\n", + "river Danube. They had, mind ye, taken the box on the deck ready to\n", + "fling in, and as it was marked Galatz _via_ Varna, I thocht I’d let it\n", + "aboard wi’ an order, written to him from England, to receive a box\n", + "marked for one Count Dracula. Sure eneuch the matter was one ready to\n", + "dam’ thing, for I was beginnin’ masel’ to feel uneasy at it. If the Deil\n", + "“What was the name of the man who took it?” asked Dr. Van Helsing with\n", + "cabin, produced a receipt signed “Immanuel Hildesheim.” Burgen-strasse\n", + "16 was the address. We found out that this was all the Captain knew; so\n", + "We found Hildesheim in his office, a Hebrew of rather the Adelphi\n", + "Theatre type, with a nose like a sheep, and a fez. His arguments were\n", + "important. He had received a letter from Mr. de Ville of London, telling\n", + "which would arrive at Galatz in the _Czarina Catherine_. This he was to\n", + "give in charge to a certain Petrof Skinsky, who dealt with the Slovaks\n", + "an English bank note, which had been duly cashed for gold at the Danube\n", + "International Bank. When Skinsky had come to him, he had taken him to\n", + "We then sought for Skinsky, but were unable to find him. One of his\n", + "together with the rent due, in English money. This had been between ten\n", + "Whilst we were talking one came running and breathlessly gasped out that\n", + "the body of Skinsky had been found inside the wall of the churchyard of\n", + "St. Peter, and that the throat had been torn open as if by some wild\n", + "women crying out “This is the work of a Slovak!” We hurried away lest we\n", + "As we came home we could arrive at no definite conclusion. We were all\n", + "to the hotel to Mina.\n", + "When we met together, the first thing was to consult as to taking Mina\n", + "_Mina Harker’s Journal._\n", + "_30 October, evening._--They were so tired and worn out and dispirited\n", + "“Traveller’s” typewriter, and to Mr. Morris for getting this one for\n", + "It is all done; poor dear, dear Jonathan, what he must have suffered,\n", + "I have asked Dr. Van Helsing, and he has got me all the papers that I\n", + "follow the Professor’s example, and think without prejudice on the facts\n", + "I do believe that under God’s providence I have made a discovery. I\n", + "_Mina Harker’s Memorandum._\n", + "(Entered in her Journal.)\n", + "_Ground of inquiry._--Count Dracula’s problem is to get back to his own\n", + "(_a_) He must be _brought back_ by some one. This is evident; for had he\n", + "(_b_) _How is he to be taken?_--Here a process of exclusions may help\n", + "1. _By Road._--There are endless difficulties, especially in leaving the\n", + "(_x_) There are people; and people are curious, and investigate. A hint,\n", + "(_y_) There are, or there may be, customs and octroi officers to pass.\n", + "(_z_) His pursuers might follow. This is his highest fear; and in order\n", + "2. _By Rail._--There is no one in charge of the box. It would have to\n", + "left in a strange place with no refuge that he could fly to? This is not\n", + "3. _By Water._--Here is the safest way, in one respect, but with most\n", + "We know from the record that he was on the water; so what we have to do\n", + "The first thing is to realise exactly what he has done as yet; we may,\n", + "_Firstly._--We must differentiate between what he did in London as part\n", + "_Secondly_ we must see, as well as we can surmise it from the facts we\n", + "As to the first, he evidently intended to arrive at Galatz, and sent\n", + "invoice to Varna to deceive us lest we should ascertain his means of\n", + "exit from England; his immediate and sole purpose then was to escape.\n", + "The proof of this, is the letter of instructions sent to Immanuel\n", + "Hildesheim to clear and take away the box _before sunrise_. There is\n", + "also the instruction to Petrof Skinsky. These we must only guess at; but\n", + "there must have been some letter or message, since Skinsky came to\n", + "Hildesheim.\n", + "That, so far, his plans were successful we know. The _Czarina Catherine_\n", + "made a phenomenally quick journey--so much so that Captain Donelson’s\n", + "played the Count’s game for him, and he ran with his favouring wind\n", + "through fogs and all till he brought up blindfold at Galatz. That the\n", + "Count’s arrangements were well made, has been proved. Hildesheim cleared\n", + "the box, took it off, and gave it to Skinsky. Skinsky took it--and here\n", + "Now we come to what the Count must have done after his arrival--_on\n", + "land_, at Galatz.\n", + "The box was given to Skinsky before sunrise. At sunrise the Count could\n", + "appear in his own form. Here, we ask why Skinsky was chosen at all to\n", + "aid in the work? In my husband’s diary, Skinsky is mentioned as dealing\n", + "with the Slovaks who trade down the river to the port; and the man’s\n", + "remark, that the murder was the work of a Slovak, showed the general\n", + "feeling against his class. The Count wanted isolation.\n", + "My surmise is, this: that in London the Count decided to get back to his\n", + "the castle by Szgany, and probably they delivered their cargo to Slovaks\n", + "who took the boxes to Varna, for there they were shipped for London.\n", + "Thus the Count had knowledge of the persons who could arrange this\n", + "came out from his box, met Skinsky and instructed him what to do as to\n", + "Slovaks to have ascended is either the Pruth or the Sereth. I read in\n", + "level with my ears and the creaking of wood. The Count in his box, then,\n", + "Of course it may not be either the Sereth or the Pruth, but we may\n", + "possibly investigate further. Now of these two, the Pruth is the more\n", + "easily navigated, but the Sereth is, at Fundu, joined by the Bistritza\n", + "which runs up round the Borgo Pass. The loop it makes is manifestly as\n", + "close to Dracula’s castle as can be got by water.\n", + "_Mina Harker’s Journal--continued._\n", + "When I had done reading, Jonathan took me in his arms and kissed me. The\n", + "others kept shaking me by both hands, and Dr. Van Helsing said:--\n", + "“Our dear Madam Mina is once more our teacher. Her eyes have been where\n", + "to our Council of War; for, here and now, we must plan what each and all\n", + "“I shall get a steam launch and follow him,” said Lord Godalming.\n", + "“And I, horses to follow on the bank lest by chance he land,” said Mr.\n", + "Morris.\n", + "“Good!” said the Professor, “both good. But neither must go alone. There\n", + "must be force to overcome force if need be; the Slovak is strong and\n", + "rough, and he carries rude arms.” All the men smiled, for amongst them\n", + "they carried a small arsenal. Said Mr. Morris:--\n", + "“I have brought some Winchesters; they are pretty handy in a crowd, and\n", + "there may be wolves. The Count, if you remember, took some other\n", + "precautions; he made some requisitions on others that Mrs. Harker could\n", + "not quite hear or understand. We must be ready at all points.” Dr.\n", + "Seward said:--\n", + "“I think I had better go with Quincey. We have been accustomed to hunt\n", + "along. You must not be alone, Art. It may be necessary to fight the\n", + "Slovaks, and a chance thrust--for I don’t suppose these fellows carry\n", + "shall not rest until the Count’s head and body have been separated, and\n", + "we are sure that he cannot re-incarnate.” He looked at Jonathan as he\n", + "spoke, and Jonathan looked at me. I could see that the poor dear was\n", + "the ... the ... Vampire. (Why did I hesitate to write the word?) He was\n", + "silent awhile, and during his silence Dr. Van Helsing spoke:--\n", + "“Friend Jonathan, this is to you for twice reasons. First, because you\n", + "wrought such woe to you and yours. Be not afraid for Madam Mina; she\n", + "me say that what I would is this: while you, my Lord Godalming and\n", + "friend Jonathan go in your so swift little steamboat up the river, and\n", + "whilst John and Quincey guard the bank where perchance he might be\n", + "landed, I will take Madam Mina right into the heart of the enemy’s\n", + "of his coffin-box lest his Slovak carriers should in fear leave him to\n", + "perish--we shall go in the track where Jonathan went,--from Bistritz\n", + "over the Borgo, and find our way to the Castle of Dracula. Here, Madam\n", + "Mina’s hypnotic power will surely help, and we shall find our way--all\n", + "made sanctify, so that that nest of vipers be obliterated.” Here\n", + "Jonathan interrupted him hotly:--\n", + "“Do you mean to say, Professor Van Helsing, that you would bring Mina,\n", + "into the jaws of his death-trap? Not for the world! Not for Heaven or\n", + "Hell!” He became almost speechless for a minute, and then went on:--\n", + "“Do you know what the place is? Have you seen that awful den of hellish\n", + "Have you felt the Vampire’s lips upon your throat?” Here he turned to\n", + "“Oh, my God, what have we done to have this terror upon us!” and he sank\n", + "down on the sofa in a collapse of misery. The Professor’s voice, as he\n", + "“Oh, my friend, it is because I would save Madam Mina from that awful\n", + "see. We men here, all save Jonathan, have seen with their own eyes what\n", + "terrible straits. If the Count escape us this time--and he is strong and\n", + "company, and would be as those others that you, Jonathan, saw. You have\n", + "clutched the moving bag that the Count threw to them. You shudder; and\n", + "possibly my life? If it were that any one went into that place to stay,\n", + "“Do as you will,” said Jonathan, with a sob that shook him all over, “we\n", + "are in the hands of God!”\n", + "_Later._--Oh, it did me good to see the way that these brave men worked.\n", + "How can women help loving men when they are so earnest, and so true, and\n", + "so brave! And, too, it made me think of the wonderful power of money!\n", + "What can it not do when it is properly applied; and what might it do\n", + "when basely used. I felt so thankful that Lord Godalming is rich, and\n", + "that both he and Mr. Morris, who also has plenty of money, are willing\n", + "of us was to do; and now Lord Godalming and Jonathan have a lovely steam\n", + "and Mr. Morris have half a dozen good horses, well appointed. We have\n", + "Van Helsing and I are to leave by the 11:40 train to-night for Veresti,\n", + "where we are to get a carriage to drive to the Borgo Pass. We are\n", + "in the matter. The Professor knows something of a great many languages,\n", + "large-bore revolver; Jonathan would not be happy unless I was armed like\n", + "forehead forbids that. Dear Dr. Van Helsing comforts me by telling me\n", + "_Later._--It took all my courage to say good-bye to my darling. We may\n", + "never meet again. Courage, Mina! the Professor is looking at you keenly;\n", + "God will let them fall in gladness.\n", + "_Jonathan Harker’s Journal._\n", + "_October 30. Night._--I am writing this in the light from the furnace\n", + "door of the steam launch: Lord Godalming is firing up. He is an\n", + "own on the Thames, and another on the Norfolk Broads. Regarding our\n", + "plans, we finally decided that Mina’s guess was correct, and that if any\n", + "waterway was chosen for the Count’s escape back to his Castle, the\n", + "Sereth and then the Bistritza at its junction, would be the one. We took\n", + "Carpathians. We have no fear in running at good speed up the river at\n", + "make steaming, even in the dark, easy enough. Lord Godalming tells me to\n", + "comfort is that we are in the hands of God. Only for that faith it would\n", + "Morris and Dr. Seward were off on their long ride before we started;\n", + "can be easily adapted for Mina, if required.\n", + "It is a wild adventure we are on. Here, as we are rushing along through\n", + "_31 October._--Still hurrying along. The day has come, and Godalming is\n", + "_1 November, evening._--No news all day; we have found nothing of the\n", + "kind we seek. We have now passed into the Bistritza; and if we are wrong\n", + "and little. Early this morning, one crew took us for a Government boat,\n", + "so at Fundu, where the Bistritza runs into the Sereth, we got a\n", + "Roumanian flag which we now fly conspicuously. With every boat which we\n", + "to ask or do. Some of the Slovaks tell us that a big boat passed them,\n", + "was before they came to Fundu, so they could not tell us whether the\n", + "boat turned into the Bistritza or continued on up the Sereth. At Fundu\n", + "dear Mina and me.\n", + "_2 November, morning._--It is broad daylight. That good fellow would not\n", + "me. I wonder where Mina is now, and Van Helsing. They should have got to\n", + "Veresti about noon on Wednesday. It would take them some time to get the\n", + "would be about now at the Borgo Pass. God guide and help them! I am\n", + "Dr. Seward and Mr. Morris are getting on. There seem to be endless\n", + "met much obstruction. I hope that before we get to Strasba we may see\n", + "them; for if by that time we have not overtaken the Count, it may be\n", + "_Dr. Seward’s Diary._\n", + "_2 November._--Three days on the road. No news, and no time to write it\n", + "Those adventurous days of ours are turning up useful. We must push on;\n", + "_3 November._--We heard at Fundu that the launch had gone up the\n", + "Bistritza. I wish it wasn’t so cold. There are signs of snow coming; and\n", + "go on, Russian fashion.\n", + "_4 November._--To-day we heard of the launch having been detained by an\n", + "accident when trying to force a way up the rapids. The Slovak boats get\n", + "_Mina Harker’s Journal._\n", + "_31 October._--Arrived at Veresti at noon. The Professor tells me that\n", + "could say was: “dark and quiet.” He is off now buying a carriage and\n", + "see it all. If Jonathan and I were driving through it alone what a\n", + "people! But, alas!--\n", + "_Later._--Dr. Van Helsing has returned. He has got the carriage and\n", + "for a company of soldiers. The Professor encourages her, and whispers to\n", + "We shall soon be off. I am afraid to think what may happen to us. We are\n", + "truly in the hands of God. He alone knows what may be, and I pray Him,\n", + "with all the strength of my sad and humble soul, that He will watch over\n", + "my beloved husband; that whatever may happen, Jonathan may know that I\n", + "CHAPTER XXVII\n", + "MINA HARKER’S JOURNAL\n", + "_1 November._--All day long we have travelled, and at a good speed. The\n", + "think that the journey will be an easy one. Dr. Van Helsing is laconic;\n", + "he tells the farmers that he is hurrying to Bistritz, and pays them well\n", + "Professor seems tireless; all day he would not take any rest, though he\n", + "Jonathan, but somehow I have now no fear for him, or for myself. I write\n", + "Van Helsing is sleeping. Poor dear, he looks very tired and old and\n", + "_2 November, morning._--I was successful, and we took turns driving all\n", + "us comfortable. At dawn Van Helsing hypnotised me; he says I answered\n", + "danger--more than need be; but we are in God’s hands.\n", + "_2 November, night._--All day long driving. The country gets wilder as\n", + "we go, and the great spurs of the Carpathians, which at Veresti seemed\n", + "Van Helsing says that by morning we shall reach the Borgo Pass. The\n", + "houses are very few here now, and the Professor says that the last horse\n", + "drive. We shall get to the Pass in daylight; we do not want to arrive\n", + "will to-morrow bring to us? We go to seek the place where my poor\n", + "that He will deign to watch over my husband and those dear to us both,\n", + "and who are in such deadly peril. As for me, I am not worthy in His\n", + "sight. Alas! I am unclean to His eyes, and shall be until He may deign\n", + "to let me stand forth in His sight as one of those who have not incurred\n", + "His wrath.\n", + "_Memorandum by Abraham Van Helsing._\n", + "_4 November._--This to my old and true friend John Seward, M.D., of\n", + "Purfleet, London, in case I may not see him. It may explain. It is\n", + "alive--Madam Mina aiding me. It is cold, cold; so cold that the grey\n", + "affected Madam Mina; she has been so heavy of head all day that she was\n", + "not like herself. She sleeps, and sleeps, and sleeps! She who is usual\n", + "However, to-night she is more _vif_. Her long sleep all day have refresh\n", + "God’s will be done--whatever it may be, and whithersoever it may lead!\n", + "Now to the historical, for as Madam Mina write not in her stenography, I\n", + "We got to the Borgo Pass just after sunrise yesterday morning. When I\n", + "couch with furs, and Madam Mina, lying down, yield herself as usual, but\n", + "before, came the answer: “darkness and the swirling of water.” Then she\n", + "woke, bright and radiant and we go on our way and soon reach the Pass.\n", + "At this time and place, she become all on fire with zeal; some new\n", + "“This is the way.”\n", + "“How know you it?” I ask.\n", + "“Of course I know it,” she answer, and with a pause, add: “Have not my\n", + "Jonathan travelled it and wrote of his travel?”\n", + "At first I think somewhat strange, but soon I see that there be only one\n", + "road from the Bukovina to Bistritz, which is more wide and hard, and\n", + "So we came down this road; when we meet other ways--not always were we\n", + "they go on so patient. By-and-by we find all the things which Jonathan\n", + "hours and hours. At the first, I tell Madam Mina to sleep; she try, and\n", + "look down and find Madam Mina still sleep. It is now not far off sunset\n", + "For we are going up, and up; and all is oh! so wild and rocky, as though\n", + "Then I arouse Madam Mina. This time she wake with not much trouble, and\n", + "Madam Mina laugh, and I turn and look at her. She is now quite awake,\n", + "and look so well as I never saw her since that night at Carfax when we\n", + "first enter the Count’s house. I am amaze, and not at ease then; but she\n", + "_5 November, morning._--Let me be accurate in everything, for though you\n", + "that I, Van Helsing, am mad--that the many horrors and the so long\n", + "All yesterday we travel, ever getting closer to the mountains, and\n", + "frowning precipices and much falling water, and Nature seem to have held\n", + "sometime her carnival. Madam Mina still sleep and sleep; and though I\n", + "she is with that Vampire baptism. “Well,” said I to myself, “if it be\n", + "night.” As we travel on the rough road, for a road of an ancient and\n", + "with a sense of guilt and of time passed, and found Madam Mina still\n", + "steep-rising hill, on summit of which was such a castle as Jonathan tell\n", + "I woke Madam Mina, and again tried to hypnotise her; but alas!\n", + "Madam Mina, now awake and more charming than ever, sit comfortable amid\n", + "where Madam Mina sat; and over the ring I passed some of the wafer, and\n", + "“Will you not come over to the fire?” for I wished to make a test of\n", + "“Why not go on?” I asked. She shook her head, and, coming back, sat\n", + "Presently the horses began to scream, and tore at their tethers till I\n", + "all the terrible anxiety. It was as though my memories of all Jonathan’s\n", + "feared for my dear Madam Mina when these weird figures drew near and\n", + "“No! No! Do not go without. Here you are safe!” I turned to her, and\n", + "“But you? It is for you that I fear!” whereat she laughed--a laugh, low\n", + "“Fear for _me_! Why fear for me? None safer in all the world from them\n", + "Then, alas! I knew. Did I not, I would soon have learned, for the\n", + "the Holy circle. Then they began to materialise till--if God have not\n", + "in actual flesh the same three women that Jonathan saw in the room, when\n", + "lips. They smiled ever at poor dear Madam Mina; and as their laugh came\n", + "her, and said in those so sweet tingling tones that Jonathan said were\n", + "“Come, sister. Come to us. Come! Come!” In fear I turned to my poor\n", + "Madam Mina, and my heart with gladness leapt like flame; for oh! the\n", + "Wafer, advanced on them towards the fire. They drew back before me, and\n", + "approach, me, whilst so armed, nor Madam Mina whilst she remained within\n", + "And so we remained till the red of the dawn to fall through the\n", + "At the first coming of the dawn the horrid figures melted in the\n", + "Instinctively, with the dawn coming, I turned to Madam Mina, intending\n", + "work. Madam Mina still sleeps; and, God be thanked! she is calm in her\n", + "_Jonathan Harker’s Journal._\n", + "_4 November, evening._--The accident to the launch has been a terrible\n", + "and by now my dear Mina would have been free. I fear to think of her,\n", + "follow on the track. I note this whilst Godalming is getting ready. We\n", + "have our arms. The Szgany must look out if they mean fight. Oh, if only\n", + "Morris and Seward were with us. We must only hope! If I write no more\n", + "Good-bye, Mina! God bless and keep you.\n", + "_Dr. Seward’s Diary._\n", + "_5 November._--With the dawn we saw the body of Szgany before us dashing\n", + "_Dr. Van Helsing’s Memorandum._\n", + "_5 November, afternoon._--I am at least sane. Thank God for that mercy\n", + "Madam Mina sleeping within the Holy circle, I took my way to the castle.\n", + "The blacksmith hammer which I took in the carriage from Veresti was\n", + "Then I bethought me of my dear Madam Mina, and I was in terrible plight.\n", + "The dilemma had me between his horns.\n", + "Her, I had not dare to take into this place, but left safe from the\n", + "Vampire in that Holy circle; and yet even there would be the wolf! I\n", + "submit, if it were God’s will. At any rate it was only death and\n", + "the grave of the Vampire! So I make my choice to go on with my work.\n", + "Vampire sleep, so full of life and voluptuous beauty that I shudder as\n", + "wanton Un-Dead have hypnotise him; and he remain on and on, till sunset\n", + "come, and the Vampire sleep be over. Then the beautiful eyes of the fair\n", + "kiss--and man is weak. And there remain one more victim in the Vampire\n", + "fold; one more to swell the grim and grisly ranks of the Un-Dead!...\n", + "There is some fascination, surely, when I am moved by the mere presence\n", + "as the lairs of the Count have had. Yes, I was moved--I, Van Helsing,\n", + "of a clarion. For it was the voice of my dear Madam Mina that I heard.\n", + "Then I braced myself again to my horrid task, and found by wrenching\n", + "which, like Jonathan I had seen to gather herself out of the atoms of\n", + "with new emotion. But God be thanked, that soul-wail of my dear Madam\n", + "Mina had not died out of my ears; and, before the spell could be wrought\n", + "there had been only three of these Un-Dead phantoms around us in the\n", + "night, I took it that there were no more of active Un-Dead existent.\n", + "There was one great tomb more lordly than all the rest; huge it was, and\n", + "DRACULA.\n", + "This then was the Un-Dead home of the King-Vampire, to whom so many more\n", + "Before I began to restore these women to their dead selves through my\n", + "awful work, I laid in Dracula’s tomb some of the Wafer, and so banished\n", + "him from it, Un-Dead, for ever.\n", + "Then began my terrible task, and I dreaded it. Had it been but one, it\n", + "had been easy, comparative. But three! To begin twice more after I had\n", + "Miss Lucy, what would it not be with these strange ones who had survived\n", + "Oh, my friend John, but it was butcher work; had I not been nerved by\n", + "till all was over, God be thanked, my nerve did stand. Had I not seen\n", + "left my work undone. But it is over! And the poor souls, I can pity them\n", + "for a short moment ere fading. For, friend John, hardly had my knife\n", + "Before I left the castle I so fixed its entrances that never more can\n", + "the Count enter there Un-Dead.\n", + "When I stepped into the circle where Madam Mina slept, she woke from her\n", + "“Come!” she said, “come away from this awful place! Let us go to meet my\n", + "husband who is, I know, coming towards us.” She was looking thin and\n", + "And so with trust and hope, and yet full of fear, we go eastward to meet\n", + "our friends--and _him_--whom Madam Mina tell me that she _know_ are\n", + "_Mina Harker’s Journal._\n", + "_6 November._--It was late in the afternoon when the Professor and I\n", + "took our way towards the east whence I knew Jonathan was coming. We did\n", + "clear line of Dracula’s castle cut the sky; for we were so deep under\n", + "Carpathian mountains was far below it. We saw it in all its grandeur,\n", + "full of terror. I knew from the way Dr. Van Helsing was searching about\n", + "In a little while the Professor signalled to me, so I got up and joined\n", + "hand and drew me in: “See!” he said, “here you will be in shelter; and\n", + "if the wolves do come I can meet them one by one.” He brought in our\n", + "“Look! Madam Mina, look! look!” I sprang up and stood beside him on the\n", + "On the cart was a great square chest. My heart leaped as I saw it, for I\n", + "well I knew that at sunset the Thing, which was till then imprisoned\n", + "pursuit. In fear I turned to the Professor; to my consternation,\n", + "“At least you shall be safe here from _him_!” He took the glasses from\n", + "“See,” he said, “they come quickly; they are flogging the horses, and\n", + "galloping as hard as they can.” He paused and went on in a hollow\n", + "“They are racing for the sunset. We may be too late. God’s will be\n", + "done!” Down came another blinding rush of driving snow, and the whole\n", + "“Look! Look! Look! See, two horsemen follow fast, coming up from the\n", + "south. It must be Quincey and John. Take the glass. Look before the snow\n", + "blots it all out!” I took it and looked. The two men might be Dr. Seward\n", + "and Mr. Morris. I knew at all events that neither of them was Jonathan.\n", + "At the same time I _knew_ that Jonathan was not far off; looking around\n", + "break-neck speed. One of them I knew was Jonathan, and the other I took,\n", + "of course, to be Lord Godalming. They, too, were pursuing the party with\n", + "the cart. When I told the Professor he shouted in glee like a schoolboy,\n", + "laid his Winchester rifle ready for use against the boulder at the\n", + "opening of our shelter. “They are all converging,” he said. “When the\n", + "It was strange to see the snow falling in such heavy flakes close to us,\n", + "Every instant seemed an age whilst we waited. The wind came now in\n", + "Closer and closer they drew. The Professor and I crouched down behind\n", + "All at once two voices shouted out to: “Halt!” One was my Jonathan’s,\n", + "raised in a high key of passion; the other Mr. Morris’ strong resolute\n", + "spoken. Instinctively they reined in, and at the instant Lord Godalming\n", + "and Jonathan dashed up at one side and Dr. Seward and Mr. Morris on the\n", + "forward; but the four men raised their Winchester rifles, and in an\n", + "unmistakable way commanded them to stop. At the same moment Dr. Van\n", + "Helsing and I rose behind the rock and pointed our weapons at them.\n", + "Seeing that they were surrounded the men tightened their reins and drew\n", + "The leader, with a quick movement of his rein, threw his horse out in\n", + "For answer, all four men of our party threw themselves from their horses\n", + "Jonathan in such danger, but that the ardour of battle must have been\n", + "In the midst of this I could see that Jonathan on one side of the ring\n", + "of men, and Quincey on the other, were forcing a way to the cart; it was\n", + "box, and flung it over the wheel to the ground. In the meantime, Mr.\n", + "Morris had had to use force to pass through his side of the ring of\n", + "Szgany. All the time I had been breathlessly watching Jonathan I had,\n", + "beside Jonathan, who had by now jumped from the cart, I could see that\n", + "as Jonathan, with desperate energy, attacked one end of the chest,\n", + "attempting to prize off the lid with his great Kukri knife, he attacked\n", + "By this time the gypsies, seeing themselves covered by the Winchesters,\n", + "and at the mercy of Lord Godalming and Dr. Seward, had given in and made\n", + "shadows of the whole group fell long upon the snow. I saw the Count\n", + "As I looked, the eyes saw the sinking sun, and the look of hate in them\n", + "But, on the instant, came the sweep and flash of Jonathan’s great knife.\n", + "moment Mr. Morris’s bowie knife plunged into the heart.\n", + "It was like a miracle; but before our very eyes, and almost in the\n", + "The Castle of Dracula now stood out against the red sky, and every stone\n", + "The gypsies, taking us as in some way the cause of the extraordinary\n", + "Mr. Morris, who had sunk to the ground, leaned on his elbow, holding his\n", + "flew to him, for the Holy circle did not now keep me back; so did the\n", + "“I am only too happy to have been of any service! Oh, God!” he cried\n", + "suddenly, struggling up to a sitting posture and pointing to me, “It was\n", + "worth for this to die! Look! look!”\n", + "The sun was now right down upon the mountain top, and the red gleams\n", + "the men sank on their knees and a deep and earnest “Amen” broke from all\n", + "“Now God be thanked that all has not been in vain! See! the snow is not\n", + "more stainless than her forehead! The curse has passed away!”\n", + "And, to our bitter grief, with a smile and in silence, he died, a\n", + "NOTE\n", + "Seven years ago we all went through the flames; and the happiness of\n", + "is an added joy to Mina and to me that our boy’s birthday is the same\n", + "day as that on which Quincey Morris died. His mother holds, I know, the\n", + "we call him Quincey.\n", + "In the summer of this year we made a journey to Transylvania, and went\n", + "When we got home we were talking of the old time--which we could all\n", + "look back on without despair, for Godalming and Seward are both happily\n", + "note-books of Mina and Seward and myself, and Van Helsing’s memorandum.\n", + "We could hardly ask any one, even did we wish to, to accept these as\n", + "proofs of so wild a story. Van Helsing summed it all up as he said, with\n", + "“We want no proofs; we ask none to believe us! This boy will some day\n", + "JONATHAN HARKER.\n", + "THE END\n", + "_There’s More to Follow!_\n", + "More stories of the sort you like; more, probably, by the author of\n", + "reputation, in the Authors’ Alphabetical List which you will find\n", + "It is a _selected_ list; every book in it has achieved a certain\n", + "The Grosset & Dunlap list is not only the greatest Index of Good\n", + "Fiction available, it represents in addition a generally accepted\n", + "Standard of Value. It will pay you to\n", + "_Look on the Other Side of the Wrapper!_\n", + "_In case the wrapper is lost write to the publishers for a complete\n", + "DETECTIVE STORIES BY J. S. FLETCHER\n", + "May be had wherever books are sold. Ask for Grosset & Dunlap’s list\n", + "THE SECRET OF THE BARBICAN\n", + "THE ANNEXATION SOCIETY\n", + "THE WOLVES AND THE LAMB\n", + "GREEN INK\n", + "THE KING versus WARGRAVE\n", + "THE LOST MR. LINTHWAITE\n", + "THE MILL OF MANY WINDOWS\n", + "THE HEAVEN-KISSED HILL\n", + "THE MIDDLE TEMPLE MURDER\n", + "RAVENSDENE COURT\n", + "THE RAYNER-SLADE AMALGAMATION\n", + "THE SAFETY PIN\n", + "THE SECRET WAY\n", + "THE VALLEY OF HEADSTRONG MEN\n", + "_Ask for Complete free list of G. & D. Popular Copyrighted Fiction_\n", + "GROSSET & DUNLAP, _Publishers_, NEW YORK\n" + ] + } + ], "source": [ "# Here's the pattern I used (which uses some features we haven't seen)\n", "\n", @@ -1450,12 +7135,29 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 66, "id": "cc39942c", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "\n", + "\n", + " DRACULA\n", + "\n", + " _by_\n", + "\n", + " Bram Stoker\n", + "\n" + ] + } + ], "source": [ "!head pg345_cleaned.txt" ] @@ -1471,12 +7173,29 @@ }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 67, "id": "bc3741e1", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "THE VALLEY OF HEADSTRONG MEN\n", + "\n", + "_Ask for Complete free list of G. & D. Popular Copyrighted Fiction_\n", + "\n", + "GROSSET & DUNLAP, _Publishers_, NEW YORK\n", + "\n", + "\n", + "\n", + "\n" + ] + } + ], "source": [ "!tail pg345_cleaned.txt" ] @@ -1494,7 +7213,7 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 68, "id": "d4c92501", "metadata": {}, "outputs": [], @@ -1512,7 +7231,7 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 69, "id": "8f6606dd", "metadata": {}, "outputs": [], @@ -1586,12 +7305,20 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": 70, "id": "18bced21", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Verbose\n" + ] + } + ], "source": [ "# This cell tells Jupyter to provide detailed debugging information\n", "# when a runtime error occurs. Run it before working on the exercises.\n", @@ -1601,7 +7328,7 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": 81, "id": "772f5c14", "metadata": { "tags": [] @@ -1667,12 +7394,32 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": 96, "id": "75b12538", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def head(file_name, num_lines, out_file_dir=None):\n", + "\n", + " reader = open(file_name)\n", + "\n", + " if out_file_dir != None:\n", + " writer = open(out_file_dir, 'w')\n", + "\n", + " for i in range(num_lines):\n", + " line = reader.readline()\n", + " \n", + " if out_file_dir != None:\n", + " writer.write(line)\n", + " else:\n", + " print(line)\n", + " \n", + " if out_file_dir != None:\n", + " writer.close()\n", + "\n", + " reader.close()\n", + " " ] }, { @@ -1687,40 +7434,472 @@ }, { "cell_type": "code", - "execution_count": 73, + "execution_count": 102, "id": "9cbc19cd", "metadata": { "tags": [] }, - "outputs": [], - "source": [ - "head('pg345_cleaned.txt', 10)" + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " DRACULA\n", + "\n", + "\n", + "\n", + " _by_\n", + "\n", + "\n", + "\n", + " Bram Stoker\n", + "\n", + "\n", + "\n", + " [Illustration: colophon]\n", + "\n", + "\n", + "\n", + " NEW YORK\n", + "\n", + "\n", + "\n", + " GROSSET & DUNLAP\n", + "\n", + "\n", + "\n", + " _Publishers_\n", + "\n", + "\n", + "\n", + " Copyright, 1897, in the United States of America, according\n", + "\n", + " to Act of Congress, by Bram Stoker\n", + "\n", + "\n", + "\n", + " [_All rights reserved._]\n", + "\n", + "\n", + "\n", + " PRINTED IN THE UNITED STATES\n", + "\n", + " AT\n", + "\n", + " THE COUNTRY LIFE PRESS, GARDEN CITY, N.Y.\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " TO\n", + "\n", + "\n", + "\n", + " MY DEAR FRIEND\n", + "\n", + "\n", + "\n", + " HOMMY-BEG\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "Contents\n", + "\n", + "\n", + "\n", + "CHAPTER I. Jonathan Harker’s Journal\n", + "\n", + "CHAPTER II. Jonathan Harker’s Journal\n", + "\n", + "CHAPTER III. Jonathan Harker’s Journal\n", + "\n", + "CHAPTER IV. Jonathan Harker’s Journal\n", + "\n", + "CHAPTER V. Letters—Lucy and Mina\n", + "\n", + "CHAPTER VI. Mina Murray’s Journal\n", + "\n", + "CHAPTER VII. Cutting from “The Dailygraph,” 8 August\n", + "\n", + "CHAPTER VIII. Mina Murray’s Journal\n", + "\n", + "CHAPTER IX. Mina Murray’s Journal\n", + "\n", + "CHAPTER X. Mina Murray’s Journal\n", + "\n", + "CHAPTER XI. Lucy Westenra’s Diary\n", + "\n", + "CHAPTER XII. Dr. Seward’s Diary\n", + "\n", + "CHAPTER XIII. Dr. Seward’s Diary\n", + "\n", + "CHAPTER XIV. Mina Harker’s Journal\n", + "\n", + "CHAPTER XV. Dr. Seward’s Diary\n", + "\n", + "CHAPTER XVI. Dr. Seward’s Diary\n", + "\n", + "CHAPTER XVII. Dr. Seward’s Diary\n", + "\n", + "CHAPTER XVIII. Dr. Seward’s Diary\n", + "\n", + "CHAPTER XIX. Jonathan Harker’s Journal\n", + "\n", + "CHAPTER XX. Jonathan Harker’s Journal\n", + "\n", + "CHAPTER XXI. Dr. Seward’s Diary\n", + "\n", + "CHAPTER XXII. Jonathan Harker’s Journal\n", + "\n", + "CHAPTER XXIII. Dr. Seward’s Diary\n", + "\n", + "CHAPTER XXIV. Dr. Seward’s Phonograph Diary, spoken by Van Helsing\n", + "\n", + "CHAPTER XXV. Dr. Seward’s Diary\n", + "\n", + "CHAPTER XXVI. Dr. Seward’s Diary\n", + "\n", + "CHAPTER XXVII. Mina Harker’s Journal\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "How these papers have been placed in sequence will be made manifest in\n", + "\n", + "the reading of them. All needless matters have been eliminated, so that\n", + "\n", + "a history almost at variance with the possibilities of later-day belief\n", + "\n", + "may stand forth as simple fact. There is throughout no statement of\n", + "\n", + "past things wherein memory may err, for all the records chosen are\n", + "\n", + "exactly contemporary, given from the standpoints and within the range\n", + "\n", + "of knowledge of those who made them.\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "DRACULA\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "CHAPTER I\n", + "\n", + "\n", + "\n", + "JONATHAN HARKER’S JOURNAL\n", + "\n", + "\n", + "\n", + "(_Kept in shorthand._)\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "_3 May. Bistritz._--Left Munich at 8:35 P. M., on 1st May, arriving at\n", + "\n", + "Vienna early next morning; should have arrived at 6:46, but train was an\n", + "\n", + "hour late. Buda-Pesth seems a wonderful place, from the glimpse which I\n", + "\n", + "got of it from the train and the little I could walk through the\n", + "\n", + "streets. I feared to go very far from the station, as we had arrived\n", + "\n", + "late and would start as near the correct time as possible. The\n", + "\n", + "impression I had was that we were leaving the West and entering the\n", + "\n", + "East; the most western of splendid bridges over the Danube, which is\n", + "\n", + "here of noble width and depth, took us among the traditions of Turkish\n", + "\n", + "rule.\n", + "\n", + "\n", + "\n", + "We left in pretty good time, and came after nightfall to Klausenburgh.\n", + "\n", + "Here I stopped for the night at the Hotel Royale. I had for dinner, or\n", + "\n", + "rather supper, a chicken done up some way with red pepper, which was\n", + "\n", + "very good but thirsty. (_Mem._, get recipe for Mina.) I asked the\n", + "\n", + "waiter, and he said it was called “paprika hendl,” and that, as it was a\n", + "\n", + "national dish, I should be able to get it anywhere along the\n", + "\n", + "Carpathians. I found my smattering of German very useful here; indeed, I\n", + "\n", + "don’t know how I should be able to get on without it.\n", + "\n", + "\n", + "\n", + "Having had some time at my disposal when in London, I had visited the\n", + "\n", + "British Museum, and made search among the books and maps in the library\n", + "\n", + "regarding Transylvania; it had struck me that some foreknowledge of the\n", + "\n", + "country could hardly fail to have some importance in dealing with a\n", + "\n", + "nobleman of that country. I find that the district he named is in the\n", + "\n", + "extreme east of the country, just on the borders of three states,\n", + "\n", + "Transylvania, Moldavia and Bukovina, in the midst of the Carpathian\n", + "\n", + "mountains; one of the wildest and least known portions of Europe. I was\n", + "\n", + "not able to light on any map or work giving the exact locality of the\n", + "\n", + "Castle Dracula, as there are no maps of this country as yet to compare\n", + "\n", + "with our own Ordnance Survey maps; but I found that Bistritz, the post\n", + "\n", + "town named by Count Dracula, is a fairly well-known place. I shall enter\n", + "\n", + "here some of my notes, as they may refresh my memory when I talk over my\n", + "\n", + "travels with Mina.\n", + "\n", + "\n", + "\n", + "In the population of Transylvania there are four distinct nationalities:\n", + "\n", + "Saxons in the South, and mixed with them the Wallachs, who are the\n", + "\n", + "descendants of the Dacians; Magyars in the West, and Szekelys in the\n", + "\n", + "East and North. I am going among the latter, who claim to be descended\n", + "\n", + "from Attila and the Huns. This may be so, for when the Magyars conquered\n", + "\n", + "the country in the eleventh century they found the Huns settled in it. I\n", + "\n", + "read that every known superstition in the world is gathered into the\n", + "\n", + "horseshoe of the Carpathians, as if it were the centre of some sort of\n", + "\n", + "imaginative whirlpool; if so my stay may be very interesting. (_Mem._, I\n", + "\n", + "must ask the Count all about them.)\n", + "\n", + "\n", + "\n", + "I did not sleep well, though my bed was comfortable enough, for I had\n", + "\n", + "all sorts of queer dreams. There was a dog howling all night under my\n", + "\n", + "window, which may have had something to do with it; or it may have been\n", + "\n", + "the paprika, for I had to drink up all the water in my carafe, and was\n", + "\n", + "still thirsty. Towards morning I slept and was wakened by the continuous\n", + "\n", + "knocking at my door, so I guess I must have been sleeping soundly then.\n", + "\n", + "I had for breakfast more paprika, and a sort of porridge of maize flour\n", + "\n", + "which they said was “mamaliga,” and egg-plant stuffed with forcemeat, a\n", + "\n", + "very excellent dish, which they call “impletata.” (_Mem._, get recipe\n", + "\n", + "for this also.) I had to hurry breakfast, for the train started a little\n", + "\n", + "before eight, or rather it ought to have done so, for after rushing to\n", + "\n", + "the station at 7:30 I had to sit in the carriage for more than an hour\n", + "\n", + "before we began to move. It seems to me that the further east you go the\n", + "\n", + "more unpunctual are the trains. What ought they to be in China?\n", + "\n", + "\n", + "\n", + "All day long we seemed to dawdle through a country which was full of\n", + "\n", + "beauty of every kind. Sometimes we saw little towns or castles on the\n", + "\n", + "top of steep hills such as we see in old missals; sometimes we ran by\n", + "\n", + "rivers and streams which seemed from the wide stony margin on each side\n", + "\n", + "of them to be subject to great floods. It takes a lot of water, and\n", + "\n", + "running strong, to sweep the outside edge of a river clear. At every\n", + "\n", + "station there were groups of people, sometimes crowds, and in all sorts\n", + "\n", + "of attire. Some of them were just like the peasants at home or those I\n", + "\n", + "saw coming through France and Germany, with short jackets and round hats\n", + "\n", + "and home-made trousers; but others were very picturesque. The women\n", + "\n", + "looked pretty, except when you got near them, but they were very clumsy\n", + "\n", + "about the waist. They had all full white sleeves of some kind or other,\n", + "\n", + "and most of them had big belts with a lot of strips of something\n", + "\n", + "fluttering from them like the dresses in a ballet, but of course there\n", + "\n", + "were petticoats under them. The strangest figures we saw were the\n", + "\n", + "Slovaks, who were more barbarian than the rest, with their big cow-boy\n", + "\n", + "hats, great baggy dirty-white trousers, white linen shirts, and enormous\n", + "\n", + "heavy leather belts, nearly a foot wide, all studded over with brass\n", + "\n", + "nails. They wore high boots, with their trousers tucked into them, and\n", + "\n", + "had long black hair and heavy black moustaches. They are very\n", + "\n", + "picturesque, but do not look prepossessing. On the stage they would be\n", + "\n", + "set down at once as some old Oriental band of brigands. They are,\n", + "\n", + "however, I am told, very harmless and rather wanting in natural\n", + "\n", + "self-assertion.\n", + "\n", + "\n", + "\n", + "It was on the dark side of twilight when we got to Bistritz, which is a\n", + "\n", + "very interesting old place. Being practically on the frontier--for the\n", + "\n", + "Borgo Pass leads from it into Bukovina--it has had a very stormy\n", + "\n", + "existence, and it certainly shows marks of it. Fifty years ago a series\n", + "\n", + "of great fires took place, which made terrible havoc on five separate\n", + "\n", + "occasions. At the very beginning of the seventeenth century it underwent\n", + "\n", + "a siege of three weeks and lost 13,000 people, the casualties of war\n", + "\n", + "proper being assisted by famine and disease.\n", + "\n", + "\n", + "\n", + "Count Dracula had directed me to go to the Golden Krone Hotel, which I\n", + "\n", + "found, to my great delight, to be thoroughly old-fashioned, for of\n", + "\n", + "course I wanted to see all I could of the ways of the country. I was\n", + "\n", + "evidently expected, for when I got near the door I faced a\n", + "\n", + "cheery-looking elderly woman in the usual peasant dress--white\n", + "\n", + "undergarment with long double apron, front, and back, of coloured stuff\n", + "\n", + "fitting almost too tight for modesty. When I came close she bowed and\n", + "\n", + "said, “The Herr Englishman?” “Yes,” I said, “Jonathan Harker.” She\n", + "\n", + "smiled, and gave some message to an elderly man in white shirt-sleeves,\n", + "\n", + "who had followed her to the door. He went, but immediately returned with\n", + "\n" + ] + } + ], + "source": [ + "head('pg345_cleaned.txt', 200)" ] }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 99, "id": "19de7df0", "metadata": { "tags": [] }, "outputs": [], "source": [ - "head('pg345_cleaned.txt', 100, 'pg345_cleaned_100_lines.txt')" + "head('pg345_cleaned.txt', 100, 'EXERCISE_pg345_cleaned_100_lines.txt')" ] }, { "cell_type": "code", - "execution_count": 75, + "execution_count": 100, "id": "242f7ba6", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "JONATHAN HARKER’S JOURNAL\n", + "\n", + "(_Kept in shorthand._)\n", + "\n", + "\n", + "_3 May. Bistritz._--Left Munich at 8:35 P. M., on 1st May, arriving at\n", + "Vienna early next morning; should have arrived at 6:46, but train was an\n", + "hour late. Buda-Pesth seems a wonderful place, from the glimpse which I\n", + "got of it from the train and the little I could walk through the\n", + "streets. I feared to go very far from the station, as we had arrived\n" + ] + } + ], "source": [ "!tail pg345_cleaned_100_lines.txt" ] }, + { + "cell_type": "markdown", + "id": "86aa87df", + "metadata": {}, + "source": [ + "##### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "adb78357", @@ -1742,12 +7921,13 @@ }, { "cell_type": "code", - "execution_count": 76, + "execution_count": null, "id": "2a37092e", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def " ] }, { @@ -1969,7 +8149,7 @@ "metadata": { "celltoolbar": "Tags", "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "thinkpy", "language": "python", "name": "python3" }, @@ -1983,7 +8163,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.13.5" } }, "nbformat": 4, diff --git a/chapters/outfile b/chapters/outfile new file mode 100644 index 00000000..368aeadf --- /dev/null +++ b/chapters/outfile @@ -0,0 +1,15849 @@ +The Project Gutenberg eBook of Dracula + +This ebook is for the use of anyone anywhere in the United States and +most other parts of the world at no cost and with almost no restrictions +whatsoever. You may copy it, give it away or re-use it under the terms +of the Project Gutenberg License included with this ebook or online +at www.gutenberg.org. If you are not located in the United States, +you will have to check the laws of the country where you are located +before using this eBook. + +Title: Dracula + +Author: Bram Stoker + +Release date: October 1, 1995 [eBook #345] + Most recently updated: September 24, 2025 + +Language: English + +Credits: Chuck Greif and the Online Distributed Proofreading Team + + +*** START OF THE PROJECT GUTENBERG EBOOK DRACULA *** + + + + + DRACULA + + _by_ + + Bram Stoker + + [Illustration: colophon] + + NEW YORK + + GROSSET & DUNLAP + + _Publishers_ + + Copyright, 1897, in the United States of America, according + to Act of Congress, by Bram Stoker + + [_All rights reserved._] + + PRINTED IN THE UNITED STATES + AT + THE COUNTRY LIFE PRESS, GARDEN CITY, N.Y. + + + + + TO + + MY DEAR FRIEND + + HOMMY-BEG + + + + +Contents + +CHAPTER I. Jonathan Harker’s Journal +CHAPTER II. Jonathan Harker’s Journal +CHAPTER III. Jonathan Harker’s Journal +CHAPTER IV. Jonathan Harker’s Journal +CHAPTER V. Letters—Lucy and Mina +CHAPTER VI. Mina Murray’s Journal +CHAPTER VII. Cutting from “The Dailygraph,” 8 August +CHAPTER VIII. Mina Murray’s Journal +CHAPTER IX. Mina Murray’s Journal +CHAPTER X. Mina Murray’s Journal +CHAPTER XI. Lucy Westenra’s Diary +CHAPTER XII. Dr. Seward’s Diary +CHAPTER XIII. Dr. Seward’s Diary +CHAPTER XIV. Mina Harker’s Journal +CHAPTER XV. Dr. Seward’s Diary +CHAPTER XVI. Dr. Seward’s Diary +CHAPTER XVII. Dr. Seward’s Diary +CHAPTER XVIII. Dr. Seward’s Diary +CHAPTER XIX. Jonathan Harker’s Journal +CHAPTER XX. Jonathan Harker’s Journal +CHAPTER XXI. Dr. Seward’s Diary +CHAPTER XXII. Jonathan Harker’s Journal +CHAPTER XXIII. Dr. Seward’s Diary +CHAPTER XXIV. Dr. Seward’s Phonograph Diary, spoken by Van Helsing +CHAPTER XXV. Dr. Seward’s Diary +CHAPTER XXVI. Dr. Seward’s Diary +CHAPTER XXVII. Mina Harker’s Journal + + + + +How these papers have been placed in sequence will be made manifest in +the reading of them. All needless matters have been eliminated, so that +a history almost at variance with the possibilities of later-day belief +may stand forth as simple fact. There is throughout no statement of +past things wherein memory may err, for all the records chosen are +exactly contemporary, given from the standpoints and within the range +of knowledge of those who made them. + + + + +DRACULA + + + + +CHAPTER I + +JONATHAN HARKER’S JOURNAL + +(_Kept in shorthand._) + + +_3 May. Bistritz._--Left Munich at 8:35 P. M., on 1st May, arriving at +Vienna early next morning; should have arrived at 6:46, but train was an +hour late. Buda-Pesth seems a wonderful place, from the glimpse which I +got of it from the train and the little I could walk through the +streets. I feared to go very far from the station, as we had arrived +late and would start as near the correct time as possible. The +impression I had was that we were leaving the West and entering the +East; the most western of splendid bridges over the Danube, which is +here of noble width and depth, took us among the traditions of Turkish +rule. + +We left in pretty good time, and came after nightfall to Klausenburgh. +Here I stopped for the night at the Hotel Royale. I had for dinner, or +rather supper, a chicken done up some way with red pepper, which was +very good but thirsty. (_Mem._, get recipe for Mina.) I asked the +waiter, and he said it was called “paprika hendl,” and that, as it was a +national dish, I should be able to get it anywhere along the +Carpathians. I found my smattering of German very useful here; indeed, I +don’t know how I should be able to get on without it. + +Having had some time at my disposal when in London, I had visited the +British Museum, and made search among the books and maps in the library +regarding Transylvania; it had struck me that some foreknowledge of the +country could hardly fail to have some importance in dealing with a +nobleman of that country. I find that the district he named is in the +extreme east of the country, just on the borders of three states, +Transylvania, Moldavia and Bukovina, in the midst of the Carpathian +mountains; one of the wildest and least known portions of Europe. I was +not able to light on any map or work giving the exact locality of the +Castle Dracula, as there are no maps of this country as yet to compare +with our own Ordnance Survey maps; but I found that Bistritz, the post +town named by Count Dracula, is a fairly well-known place. I shall enter +here some of my notes, as they may refresh my memory when I talk over my +travels with Mina. + +In the population of Transylvania there are four distinct nationalities: +Saxons in the South, and mixed with them the Wallachs, who are the +descendants of the Dacians; Magyars in the West, and Szekelys in the +East and North. I am going among the latter, who claim to be descended +from Attila and the Huns. This may be so, for when the Magyars conquered +the country in the eleventh century they found the Huns settled in it. I +read that every known superstition in the world is gathered into the +horseshoe of the Carpathians, as if it were the centre of some sort of +imaginative whirlpool; if so my stay may be very interesting. (_Mem._, I +must ask the Count all about them.) + +I did not sleep well, though my bed was comfortable enough, for I had +all sorts of queer dreams. There was a dog howling all night under my +window, which may have had something to do with it; or it may have been +the paprika, for I had to drink up all the water in my carafe, and was +still thirsty. Towards morning I slept and was wakened by the continuous +knocking at my door, so I guess I must have been sleeping soundly then. +I had for breakfast more paprika, and a sort of porridge of maize flour +which they said was “mamaliga,” and egg-plant stuffed with forcemeat, a +very excellent dish, which they call “impletata.” (_Mem._, get recipe +for this also.) I had to hurry breakfast, for the train started a little +before eight, or rather it ought to have done so, for after rushing to +the station at 7:30 I had to sit in the carriage for more than an hour +before we began to move. It seems to me that the further east you go the +more unpunctual are the trains. What ought they to be in China? + +All day long we seemed to dawdle through a country which was full of +beauty of every kind. Sometimes we saw little towns or castles on the +top of steep hills such as we see in old missals; sometimes we ran by +rivers and streams which seemed from the wide stony margin on each side +of them to be subject to great floods. It takes a lot of water, and +running strong, to sweep the outside edge of a river clear. At every +station there were groups of people, sometimes crowds, and in all sorts +of attire. Some of them were just like the peasants at home or those I +saw coming through France and Germany, with short jackets and round hats +and home-made trousers; but others were very picturesque. The women +looked pretty, except when you got near them, but they were very clumsy +about the waist. They had all full white sleeves of some kind or other, +and most of them had big belts with a lot of strips of something +fluttering from them like the dresses in a ballet, but of course there +were petticoats under them. The strangest figures we saw were the +Slovaks, who were more barbarian than the rest, with their big cow-boy +hats, great baggy dirty-white trousers, white linen shirts, and enormous +heavy leather belts, nearly a foot wide, all studded over with brass +nails. They wore high boots, with their trousers tucked into them, and +had long black hair and heavy black moustaches. They are very +picturesque, but do not look prepossessing. On the stage they would be +set down at once as some old Oriental band of brigands. They are, +however, I am told, very harmless and rather wanting in natural +self-assertion. + +It was on the dark side of twilight when we got to Bistritz, which is a +very interesting old place. Being practically on the frontier--for the +Borgo Pass leads from it into Bukovina--it has had a very stormy +existence, and it certainly shows marks of it. Fifty years ago a series +of great fires took place, which made terrible havoc on five separate +occasions. At the very beginning of the seventeenth century it underwent +a siege of three weeks and lost 13,000 people, the casualties of war +proper being assisted by famine and disease. + +Count Dracula had directed me to go to the Golden Krone Hotel, which I +found, to my great delight, to be thoroughly old-fashioned, for of +course I wanted to see all I could of the ways of the country. I was +evidently expected, for when I got near the door I faced a +cheery-looking elderly woman in the usual peasant dress--white +undergarment with long double apron, front, and back, of coloured stuff +fitting almost too tight for modesty. When I came close she bowed and +said, “The Herr Englishman?” “Yes,” I said, “Jonathan Harker.” She +smiled, and gave some message to an elderly man in white shirt-sleeves, +who had followed her to the door. He went, but immediately returned with +a letter:-- + + “My Friend.--Welcome to the Carpathians. I am anxiously expecting + you. Sleep well to-night. At three to-morrow the diligence will + start for Bukovina; a place on it is kept for you. At the Borgo + Pass my carriage will await you and will bring you to me. I trust + that your journey from London has been a happy one, and that you + will enjoy your stay in my beautiful land. + +“Your friend, + +“DRACULA.” + + +_4 May._--I found that my landlord had got a letter from the Count, +directing him to secure the best place on the coach for me; but on +making inquiries as to details he seemed somewhat reticent, and +pretended that he could not understand my German. This could not be +true, because up to then he had understood it perfectly; at least, he +answered my questions exactly as if he did. He and his wife, the old +lady who had received me, looked at each other in a frightened sort of +way. He mumbled out that the money had been sent in a letter, and that +was all he knew. When I asked him if he knew Count Dracula, and could +tell me anything of his castle, both he and his wife crossed themselves, +and, saying that they knew nothing at all, simply refused to speak +further. It was so near the time of starting that I had no time to ask +any one else, for it was all very mysterious and not by any means +comforting. + +Just before I was leaving, the old lady came up to my room and said in a +very hysterical way: + +“Must you go? Oh! young Herr, must you go?” She was in such an excited +state that she seemed to have lost her grip of what German she knew, and +mixed it all up with some other language which I did not know at all. I +was just able to follow her by asking many questions. When I told her +that I must go at once, and that I was engaged on important business, +she asked again: + +“Do you know what day it is?” I answered that it was the fourth of May. +She shook her head as she said again: + +“Oh, yes! I know that! I know that, but do you know what day it is?” On +my saying that I did not understand, she went on: + +“It is the eve of St. George’s Day. Do you not know that to-night, when +the clock strikes midnight, all the evil things in the world will have +full sway? Do you know where you are going, and what you are going to?” +She was in such evident distress that I tried to comfort her, but +without effect. Finally she went down on her knees and implored me not +to go; at least to wait a day or two before starting. It was all very +ridiculous but I did not feel comfortable. However, there was business +to be done, and I could allow nothing to interfere with it. I therefore +tried to raise her up, and said, as gravely as I could, that I thanked +her, but my duty was imperative, and that I must go. She then rose and +dried her eyes, and taking a crucifix from her neck offered it to me. I +did not know what to do, for, as an English Churchman, I have been +taught to regard such things as in some measure idolatrous, and yet it +seemed so ungracious to refuse an old lady meaning so well and in such a +state of mind. She saw, I suppose, the doubt in my face, for she put the +rosary round my neck, and said, “For your mother’s sake,” and went out +of the room. I am writing up this part of the diary whilst I am waiting +for the coach, which is, of course, late; and the crucifix is still +round my neck. Whether it is the old lady’s fear, or the many ghostly +traditions of this place, or the crucifix itself, I do not know, but I +am not feeling nearly as easy in my mind as usual. If this book should +ever reach Mina before I do, let it bring my good-bye. Here comes the +coach! + + * * * * * + +_5 May. The Castle._--The grey of the morning has passed, and the sun is +high over the distant horizon, which seems jagged, whether with trees or +hills I know not, for it is so far off that big things and little are +mixed. I am not sleepy, and, as I am not to be called till I awake, +naturally I write till sleep comes. There are many odd things to put +down, and, lest who reads them may fancy that I dined too well before I +left Bistritz, let me put down my dinner exactly. I dined on what they +called “robber steak”--bits of bacon, onion, and beef, seasoned with red +pepper, and strung on sticks and roasted over the fire, in the simple +style of the London cat’s meat! The wine was Golden Mediasch, which +produces a queer sting on the tongue, which is, however, not +disagreeable. I had only a couple of glasses of this, and nothing else. + +When I got on the coach the driver had not taken his seat, and I saw him +talking with the landlady. They were evidently talking of me, for every +now and then they looked at me, and some of the people who were sitting +on the bench outside the door--which they call by a name meaning +“word-bearer”--came and listened, and then looked at me, most of them +pityingly. I could hear a lot of words often repeated, queer words, for +there were many nationalities in the crowd; so I quietly got my polyglot +dictionary from my bag and looked them out. I must say they were not +cheering to me, for amongst them were “Ordog”--Satan, “pokol”--hell, +“stregoica”--witch, “vrolok” and “vlkoslak”--both of which mean the same +thing, one being Slovak and the other Servian for something that is +either were-wolf or vampire. (_Mem._, I must ask the Count about these +superstitions) + +When we started, the crowd round the inn door, which had by this time +swelled to a considerable size, all made the sign of the cross and +pointed two fingers towards me. With some difficulty I got a +fellow-passenger to tell me what they meant; he would not answer at +first, but on learning that I was English, he explained that it was a +charm or guard against the evil eye. This was not very pleasant for me, +just starting for an unknown place to meet an unknown man; but every one +seemed so kind-hearted, and so sorrowful, and so sympathetic that I +could not but be touched. I shall never forget the last glimpse which I +had of the inn-yard and its crowd of picturesque figures, all crossing +themselves, as they stood round the wide archway, with its background of +rich foliage of oleander and orange trees in green tubs clustered in the +centre of the yard. Then our driver, whose wide linen drawers covered +the whole front of the box-seat--“gotza” they call them--cracked his big +whip over his four small horses, which ran abreast, and we set off on +our journey. + +I soon lost sight and recollection of ghostly fears in the beauty of the +scene as we drove along, although had I known the language, or rather +languages, which my fellow-passengers were speaking, I might not have +been able to throw them off so easily. Before us lay a green sloping +land full of forests and woods, with here and there steep hills, crowned +with clumps of trees or with farmhouses, the blank gable end to the +road. There was everywhere a bewildering mass of fruit blossom--apple, +plum, pear, cherry; and as we drove by I could see the green grass under +the trees spangled with the fallen petals. In and out amongst these +green hills of what they call here the “Mittel Land” ran the road, +losing itself as it swept round the grassy curve, or was shut out by the +straggling ends of pine woods, which here and there ran down the +hillsides like tongues of flame. The road was rugged, but still we +seemed to fly over it with a feverish haste. I could not understand then +what the haste meant, but the driver was evidently bent on losing no +time in reaching Borgo Prund. I was told that this road is in summertime +excellent, but that it had not yet been put in order after the winter +snows. In this respect it is different from the general run of roads in +the Carpathians, for it is an old tradition that they are not to be kept +in too good order. Of old the Hospadars would not repair them, lest the +Turk should think that they were preparing to bring in foreign troops, +and so hasten the war which was always really at loading point. + +Beyond the green swelling hills of the Mittel Land rose mighty slopes +of forest up to the lofty steeps of the Carpathians themselves. Right +and left of us they towered, with the afternoon sun falling full upon +them and bringing out all the glorious colours of this beautiful range, +deep blue and purple in the shadows of the peaks, green and brown where +grass and rock mingled, and an endless perspective of jagged rock and +pointed crags, till these were themselves lost in the distance, where +the snowy peaks rose grandly. Here and there seemed mighty rifts in the +mountains, through which, as the sun began to sink, we saw now and again +the white gleam of falling water. One of my companions touched my arm as +we swept round the base of a hill and opened up the lofty, snow-covered +peak of a mountain, which seemed, as we wound on our serpentine way, to +be right before us:-- + +“Look! Isten szek!”--“God’s seat!”--and he crossed himself reverently. + +As we wound on our endless way, and the sun sank lower and lower behind +us, the shadows of the evening began to creep round us. This was +emphasised by the fact that the snowy mountain-top still held the +sunset, and seemed to glow out with a delicate cool pink. Here and there +we passed Cszeks and Slovaks, all in picturesque attire, but I noticed +that goitre was painfully prevalent. By the roadside were many crosses, +and as we swept by, my companions all crossed themselves. Here and there +was a peasant man or woman kneeling before a shrine, who did not even +turn round as we approached, but seemed in the self-surrender of +devotion to have neither eyes nor ears for the outer world. There were +many things new to me: for instance, hay-ricks in the trees, and here +and there very beautiful masses of weeping birch, their white stems +shining like silver through the delicate green of the leaves. Now and +again we passed a leiter-wagon--the ordinary peasant’s cart--with its +long, snake-like vertebra, calculated to suit the inequalities of the +road. On this were sure to be seated quite a group of home-coming +peasants, the Cszeks with their white, and the Slovaks with their +coloured, sheepskins, the latter carrying lance-fashion their long +staves, with axe at end. As the evening fell it began to get very cold, +and the growing twilight seemed to merge into one dark mistiness the +gloom of the trees, oak, beech, and pine, though in the valleys which +ran deep between the spurs of the hills, as we ascended through the +Pass, the dark firs stood out here and there against the background of +late-lying snow. Sometimes, as the road was cut through the pine woods +that seemed in the darkness to be closing down upon us, great masses of +greyness, which here and there bestrewed the trees, produced a +peculiarly weird and solemn effect, which carried on the thoughts and +grim fancies engendered earlier in the evening, when the falling sunset +threw into strange relief the ghost-like clouds which amongst the +Carpathians seem to wind ceaselessly through the valleys. Sometimes the +hills were so steep that, despite our driver’s haste, the horses could +only go slowly. I wished to get down and walk up them, as we do at home, +but the driver would not hear of it. “No, no,” he said; “you must not +walk here; the dogs are too fierce”; and then he added, with what he +evidently meant for grim pleasantry--for he looked round to catch the +approving smile of the rest--“and you may have enough of such matters +before you go to sleep.” The only stop he would make was a moment’s +pause to light his lamps. + +When it grew dark there seemed to be some excitement amongst the +passengers, and they kept speaking to him, one after the other, as +though urging him to further speed. He lashed the horses unmercifully +with his long whip, and with wild cries of encouragement urged them on +to further exertions. Then through the darkness I could see a sort of +patch of grey light ahead of us, as though there were a cleft in the +hills. The excitement of the passengers grew greater; the crazy coach +rocked on its great leather springs, and swayed like a boat tossed on a +stormy sea. I had to hold on. The road grew more level, and we appeared +to fly along. Then the mountains seemed to come nearer to us on each +side and to frown down upon us; we were entering on the Borgo Pass. One +by one several of the passengers offered me gifts, which they pressed +upon me with an earnestness which would take no denial; these were +certainly of an odd and varied kind, but each was given in simple good +faith, with a kindly word, and a blessing, and that strange mixture of +fear-meaning movements which I had seen outside the hotel at +Bistritz--the sign of the cross and the guard against the evil eye. +Then, as we flew along, the driver leaned forward, and on each side the +passengers, craning over the edge of the coach, peered eagerly into the +darkness. It was evident that something very exciting was either +happening or expected, but though I asked each passenger, no one would +give me the slightest explanation. This state of excitement kept on for +some little time; and at last we saw before us the Pass opening out on +the eastern side. There were dark, rolling clouds overhead, and in the +air the heavy, oppressive sense of thunder. It seemed as though the +mountain range had separated two atmospheres, and that now we had got +into the thunderous one. I was now myself looking out for the conveyance +which was to take me to the Count. Each moment I expected to see the +glare of lamps through the blackness; but all was dark. The only light +was the flickering rays of our own lamps, in which the steam from our +hard-driven horses rose in a white cloud. We could see now the sandy +road lying white before us, but there was on it no sign of a vehicle. +The passengers drew back with a sigh of gladness, which seemed to mock +my own disappointment. I was already thinking what I had best do, when +the driver, looking at his watch, said to the others something which I +could hardly hear, it was spoken so quietly and in so low a tone; I +thought it was “An hour less than the time.” Then turning to me, he said +in German worse than my own:-- + +“There is no carriage here. The Herr is not expected after all. He will +now come on to Bukovina, and return to-morrow or the next day; better +the next day.” Whilst he was speaking the horses began to neigh and +snort and plunge wildly, so that the driver had to hold them up. Then, +amongst a chorus of screams from the peasants and a universal crossing +of themselves, a calèche, with four horses, drove up behind us, overtook +us, and drew up beside the coach. I could see from the flash of our +lamps, as the rays fell on them, that the horses were coal-black and +splendid animals. They were driven by a tall man, with a long brown +beard and a great black hat, which seemed to hide his face from us. I +could only see the gleam of a pair of very bright eyes, which seemed red +in the lamplight, as he turned to us. He said to the driver:-- + +“You are early to-night, my friend.” The man stammered in reply:-- + +“The English Herr was in a hurry,” to which the stranger replied:-- + +“That is why, I suppose, you wished him to go on to Bukovina. You cannot +deceive me, my friend; I know too much, and my horses are swift.” As he +spoke he smiled, and the lamplight fell on a hard-looking mouth, with +very red lips and sharp-looking teeth, as white as ivory. One of my +companions whispered to another the line from Burger’s “Lenore”:-- + + “Denn die Todten reiten schnell”-- + (“For the dead travel fast.”) + +The strange driver evidently heard the words, for he looked up with a +gleaming smile. The passenger turned his face away, at the same time +putting out his two fingers and crossing himself. “Give me the Herr’s +luggage,” said the driver; and with exceeding alacrity my bags were +handed out and put in the calèche. Then I descended from the side of the +coach, as the calèche was close alongside, the driver helping me with a +hand which caught my arm in a grip of steel; his strength must have been +prodigious. Without a word he shook his reins, the horses turned, and we +swept into the darkness of the Pass. As I looked back I saw the steam +from the horses of the coach by the light of the lamps, and projected +against it the figures of my late companions crossing themselves. Then +the driver cracked his whip and called to his horses, and off they swept +on their way to Bukovina. As they sank into the darkness I felt a +strange chill, and a lonely feeling came over me; but a cloak was thrown +over my shoulders, and a rug across my knees, and the driver said in +excellent German:-- + +“The night is chill, mein Herr, and my master the Count bade me take all +care of you. There is a flask of slivovitz (the plum brandy of the +country) underneath the seat, if you should require it.” I did not take +any, but it was a comfort to know it was there all the same. I felt a +little strangely, and not a little frightened. I think had there been +any alternative I should have taken it, instead of prosecuting that +unknown night journey. The carriage went at a hard pace straight along, +then we made a complete turn and went along another straight road. It +seemed to me that we were simply going over and over the same ground +again; and so I took note of some salient point, and found that this was +so. I would have liked to have asked the driver what this all meant, but +I really feared to do so, for I thought that, placed as I was, any +protest would have had no effect in case there had been an intention to +delay. By-and-by, however, as I was curious to know how time was +passing, I struck a match, and by its flame looked at my watch; it was +within a few minutes of midnight. This gave me a sort of shock, for I +suppose the general superstition about midnight was increased by my +recent experiences. I waited with a sick feeling of suspense. + +Then a dog began to howl somewhere in a farmhouse far down the road--a +long, agonised wailing, as if from fear. The sound was taken up by +another dog, and then another and another, till, borne on the wind which +now sighed softly through the Pass, a wild howling began, which seemed +to come from all over the country, as far as the imagination could grasp +it through the gloom of the night. At the first howl the horses began to +strain and rear, but the driver spoke to them soothingly, and they +quieted down, but shivered and sweated as though after a runaway from +sudden fright. Then, far off in the distance, from the mountains on each +side of us began a louder and a sharper howling--that of wolves--which +affected both the horses and myself in the same way--for I was minded to +jump from the calèche and run, whilst they reared again and plunged +madly, so that the driver had to use all his great strength to keep them +from bolting. In a few minutes, however, my own ears got accustomed to +the sound, and the horses so far became quiet that the driver was able +to descend and to stand before them. He petted and soothed them, and +whispered something in their ears, as I have heard of horse-tamers +doing, and with extraordinary effect, for under his caresses they became +quite manageable again, though they still trembled. The driver again +took his seat, and shaking his reins, started off at a great pace. This +time, after going to the far side of the Pass, he suddenly turned down a +narrow roadway which ran sharply to the right. + +Soon we were hemmed in with trees, which in places arched right over the +roadway till we passed as through a tunnel; and again great frowning +rocks guarded us boldly on either side. Though we were in shelter, we +could hear the rising wind, for it moaned and whistled through the +rocks, and the branches of the trees crashed together as we swept along. +It grew colder and colder still, and fine, powdery snow began to fall, +so that soon we and all around us were covered with a white blanket. The +keen wind still carried the howling of the dogs, though this grew +fainter as we went on our way. The baying of the wolves sounded nearer +and nearer, as though they were closing round on us from every side. I +grew dreadfully afraid, and the horses shared my fear. The driver, +however, was not in the least disturbed; he kept turning his head to +left and right, but I could not see anything through the darkness. + +Suddenly, away on our left, I saw a faint flickering blue flame. The +driver saw it at the same moment; he at once checked the horses, and, +jumping to the ground, disappeared into the darkness. I did not know +what to do, the less as the howling of the wolves grew closer; but while +I wondered the driver suddenly appeared again, and without a word took +his seat, and we resumed our journey. I think I must have fallen asleep +and kept dreaming of the incident, for it seemed to be repeated +endlessly, and now looking back, it is like a sort of awful nightmare. +Once the flame appeared so near the road, that even in the darkness +around us I could watch the driver’s motions. He went rapidly to where +the blue flame arose--it must have been very faint, for it did not seem +to illumine the place around it at all--and gathering a few stones, +formed them into some device. Once there appeared a strange optical +effect: when he stood between me and the flame he did not obstruct it, +for I could see its ghostly flicker all the same. This startled me, but +as the effect was only momentary, I took it that my eyes deceived me +straining through the darkness. Then for a time there were no blue +flames, and we sped onwards through the gloom, with the howling of the +wolves around us, as though they were following in a moving circle. + +At last there came a time when the driver went further afield than he +had yet gone, and during his absence, the horses began to tremble worse +than ever and to snort and scream with fright. I could not see any cause +for it, for the howling of the wolves had ceased altogether; but just +then the moon, sailing through the black clouds, appeared behind the +jagged crest of a beetling, pine-clad rock, and by its light I saw +around us a ring of wolves, with white teeth and lolling red tongues, +with long, sinewy limbs and shaggy hair. They were a hundred times more +terrible in the grim silence which held them than even when they howled. +For myself, I felt a sort of paralysis of fear. It is only when a man +feels himself face to face with such horrors that he can understand +their true import. + +All at once the wolves began to howl as though the moonlight had had +some peculiar effect on them. The horses jumped about and reared, and +looked helplessly round with eyes that rolled in a way painful to see; +but the living ring of terror encompassed them on every side; and they +had perforce to remain within it. I called to the coachman to come, for +it seemed to me that our only chance was to try to break out through the +ring and to aid his approach. I shouted and beat the side of the +calèche, hoping by the noise to scare the wolves from that side, so as +to give him a chance of reaching the trap. How he came there, I know +not, but I heard his voice raised in a tone of imperious command, and +looking towards the sound, saw him stand in the roadway. As he swept his +long arms, as though brushing aside some impalpable obstacle, the wolves +fell back and back further still. Just then a heavy cloud passed across +the face of the moon, so that we were again in darkness. + +When I could see again the driver was climbing into the calèche, and the +wolves had disappeared. This was all so strange and uncanny that a +dreadful fear came upon me, and I was afraid to speak or move. The time +seemed interminable as we swept on our way, now in almost complete +darkness, for the rolling clouds obscured the moon. We kept on +ascending, with occasional periods of quick descent, but in the main +always ascending. Suddenly, I became conscious of the fact that the +driver was in the act of pulling up the horses in the courtyard of a +vast ruined castle, from whose tall black windows came no ray of light, +and whose broken battlements showed a jagged line against the moonlit +sky. + + + + +CHAPTER II + +JONATHAN HARKER’S JOURNAL--_continued_ + + +_5 May._--I must have been asleep, for certainly if I had been fully +awake I must have noticed the approach of such a remarkable place. In +the gloom the courtyard looked of considerable size, and as several dark +ways led from it under great round arches, it perhaps seemed bigger than +it really is. I have not yet been able to see it by daylight. + +When the calèche stopped, the driver jumped down and held out his hand +to assist me to alight. Again I could not but notice his prodigious +strength. His hand actually seemed like a steel vice that could have +crushed mine if he had chosen. Then he took out my traps, and placed +them on the ground beside me as I stood close to a great door, old and +studded with large iron nails, and set in a projecting doorway of +massive stone. I could see even in the dim light that the stone was +massively carved, but that the carving had been much worn by time and +weather. As I stood, the driver jumped again into his seat and shook the +reins; the horses started forward, and trap and all disappeared down one +of the dark openings. + +I stood in silence where I was, for I did not know what to do. Of bell +or knocker there was no sign; through these frowning walls and dark +window openings it was not likely that my voice could penetrate. The +time I waited seemed endless, and I felt doubts and fears crowding upon +me. What sort of place had I come to, and among what kind of people? +What sort of grim adventure was it on which I had embarked? Was this a +customary incident in the life of a solicitor’s clerk sent out to +explain the purchase of a London estate to a foreigner? Solicitor’s +clerk! Mina would not like that. Solicitor--for just before leaving +London I got word that my examination was successful; and I am now a +full-blown solicitor! I began to rub my eyes and pinch myself to see if +I were awake. It all seemed like a horrible nightmare to me, and I +expected that I should suddenly awake, and find myself at home, with +the dawn struggling in through the windows, as I had now and again felt +in the morning after a day of overwork. But my flesh answered the +pinching test, and my eyes were not to be deceived. I was indeed awake +and among the Carpathians. All I could do now was to be patient, and to +wait the coming of the morning. + +Just as I had come to this conclusion I heard a heavy step approaching +behind the great door, and saw through the chinks the gleam of a coming +light. Then there was the sound of rattling chains and the clanking of +massive bolts drawn back. A key was turned with the loud grating noise +of long disuse, and the great door swung back. + +Within, stood a tall old man, clean shaven save for a long white +moustache, and clad in black from head to foot, without a single speck +of colour about him anywhere. He held in his hand an antique silver +lamp, in which the flame burned without chimney or globe of any kind, +throwing long quivering shadows as it flickered in the draught of the +open door. The old man motioned me in with his right hand with a courtly +gesture, saying in excellent English, but with a strange intonation:-- + +“Welcome to my house! Enter freely and of your own will!” He made no +motion of stepping to meet me, but stood like a statue, as though his +gesture of welcome had fixed him into stone. The instant, however, that +I had stepped over the threshold, he moved impulsively forward, and +holding out his hand grasped mine with a strength which made me wince, +an effect which was not lessened by the fact that it seemed as cold as +ice--more like the hand of a dead than a living man. Again he said:-- + +“Welcome to my house. Come freely. Go safely; and leave something of the +happiness you bring!” The strength of the handshake was so much akin to +that which I had noticed in the driver, whose face I had not seen, that +for a moment I doubted if it were not the same person to whom I was +speaking; so to make sure, I said interrogatively:-- + +“Count Dracula?” He bowed in a courtly way as he replied:-- + +“I am Dracula; and I bid you welcome, Mr. Harker, to my house. Come in; +the night air is chill, and you must need to eat and rest.” As he was +speaking, he put the lamp on a bracket on the wall, and stepping out, +took my luggage; he had carried it in before I could forestall him. I +protested but he insisted:-- + +“Nay, sir, you are my guest. It is late, and my people are not +available. Let me see to your comfort myself.” He insisted on carrying +my traps along the passage, and then up a great winding stair, and +along another great passage, on whose stone floor our steps rang +heavily. At the end of this he threw open a heavy door, and I rejoiced +to see within a well-lit room in which a table was spread for supper, +and on whose mighty hearth a great fire of logs, freshly replenished, +flamed and flared. + +The Count halted, putting down my bags, closed the door, and crossing +the room, opened another door, which led into a small octagonal room lit +by a single lamp, and seemingly without a window of any sort. Passing +through this, he opened another door, and motioned me to enter. It was a +welcome sight; for here was a great bedroom well lighted and warmed with +another log fire,--also added to but lately, for the top logs were +fresh--which sent a hollow roar up the wide chimney. The Count himself +left my luggage inside and withdrew, saying, before he closed the +door:-- + +“You will need, after your journey, to refresh yourself by making your +toilet. I trust you will find all you wish. When you are ready, come +into the other room, where you will find your supper prepared.” + +The light and warmth and the Count’s courteous welcome seemed to have +dissipated all my doubts and fears. Having then reached my normal state, +I discovered that I was half famished with hunger; so making a hasty +toilet, I went into the other room. + +I found supper already laid out. My host, who stood on one side of the +great fireplace, leaning against the stonework, made a graceful wave of +his hand to the table, and said:-- + +“I pray you, be seated and sup how you please. You will, I trust, excuse +me that I do not join you; but I have dined already, and I do not sup.” + +I handed to him the sealed letter which Mr. Hawkins had entrusted to me. +He opened it and read it gravely; then, with a charming smile, he handed +it to me to read. One passage of it, at least, gave me a thrill of +pleasure. + +“I must regret that an attack of gout, from which malady I am a constant +sufferer, forbids absolutely any travelling on my part for some time to +come; but I am happy to say I can send a sufficient substitute, one in +whom I have every possible confidence. He is a young man, full of energy +and talent in his own way, and of a very faithful disposition. He is +discreet and silent, and has grown into manhood in my service. He shall +be ready to attend on you when you will during his stay, and shall take +your instructions in all matters.” + +The Count himself came forward and took off the cover of a dish, and I +fell to at once on an excellent roast chicken. This, with some cheese +and a salad and a bottle of old Tokay, of which I had two glasses, was +my supper. During the time I was eating it the Count asked me many +questions as to my journey, and I told him by degrees all I had +experienced. + +By this time I had finished my supper, and by my host’s desire had drawn +up a chair by the fire and begun to smoke a cigar which he offered me, +at the same time excusing himself that he did not smoke. I had now an +opportunity of observing him, and found him of a very marked +physiognomy. + +His face was a strong--a very strong--aquiline, with high bridge of the +thin nose and peculiarly arched nostrils; with lofty domed forehead, and +hair growing scantily round the temples but profusely elsewhere. His +eyebrows were very massive, almost meeting over the nose, and with bushy +hair that seemed to curl in its own profusion. The mouth, so far as I +could see it under the heavy moustache, was fixed and rather +cruel-looking, with peculiarly sharp white teeth; these protruded over +the lips, whose remarkable ruddiness showed astonishing vitality in a +man of his years. For the rest, his ears were pale, and at the tops +extremely pointed; the chin was broad and strong, and the cheeks firm +though thin. The general effect was one of extraordinary pallor. + +Hitherto I had noticed the backs of his hands as they lay on his knees +in the firelight, and they had seemed rather white and fine; but seeing +them now close to me, I could not but notice that they were rather +coarse--broad, with squat fingers. Strange to say, there were hairs in +the centre of the palm. The nails were long and fine, and cut to a sharp +point. As the Count leaned over me and his hands touched me, I could not +repress a shudder. It may have been that his breath was rank, but a +horrible feeling of nausea came over me, which, do what I would, I could +not conceal. The Count, evidently noticing it, drew back; and with a +grim sort of smile, which showed more than he had yet done his +protuberant teeth, sat himself down again on his own side of the +fireplace. We were both silent for a while; and as I looked towards the +window I saw the first dim streak of the coming dawn. There seemed a +strange stillness over everything; but as I listened I heard as if from +down below in the valley the howling of many wolves. The Count’s eyes +gleamed, and he said:-- + +“Listen to them--the children of the night. What music they make!” +Seeing, I suppose, some expression in my face strange to him, he +added:-- + +“Ah, sir, you dwellers in the city cannot enter into the feelings of the +hunter.” Then he rose and said:-- + +“But you must be tired. Your bedroom is all ready, and to-morrow you +shall sleep as late as you will. I have to be away till the afternoon; +so sleep well and dream well!” With a courteous bow, he opened for me +himself the door to the octagonal room, and I entered my bedroom.... + +I am all in a sea of wonders. I doubt; I fear; I think strange things, +which I dare not confess to my own soul. God keep me, if only for the +sake of those dear to me! + + * * * * * + +_7 May._--It is again early morning, but I have rested and enjoyed the +last twenty-four hours. I slept till late in the day, and awoke of my +own accord. When I had dressed myself I went into the room where we had +supped, and found a cold breakfast laid out, with coffee kept hot by the +pot being placed on the hearth. There was a card on the table, on which +was written:-- + +“I have to be absent for a while. Do not wait for me.--D.” I set to and +enjoyed a hearty meal. When I had done, I looked for a bell, so that I +might let the servants know I had finished; but I could not find one. +There are certainly odd deficiencies in the house, considering the +extraordinary evidences of wealth which are round me. The table service +is of gold, and so beautifully wrought that it must be of immense value. +The curtains and upholstery of the chairs and sofas and the hangings of +my bed are of the costliest and most beautiful fabrics, and must have +been of fabulous value when they were made, for they are centuries old, +though in excellent order. I saw something like them in Hampton Court, +but there they were worn and frayed and moth-eaten. But still in none of +the rooms is there a mirror. There is not even a toilet glass on my +table, and I had to get the little shaving glass from my bag before I +could either shave or brush my hair. I have not yet seen a servant +anywhere, or heard a sound near the castle except the howling of wolves. +Some time after I had finished my meal--I do not know whether to call it +breakfast or dinner, for it was between five and six o’clock when I had +it--I looked about for something to read, for I did not like to go about +the castle until I had asked the Count’s permission. There was +absolutely nothing in the room, book, newspaper, or even writing +materials; so I opened another door in the room and found a sort of +library. The door opposite mine I tried, but found it locked. + +In the library I found, to my great delight, a vast number of English +books, whole shelves full of them, and bound volumes of magazines and +newspapers. A table in the centre was littered with English magazines +and newspapers, though none of them were of very recent date. The books +were of the most varied kind--history, geography, politics, political +economy, botany, geology, law--all relating to England and English life +and customs and manners. There were even such books of reference as the +London Directory, the “Red” and “Blue” books, Whitaker’s Almanac, the +Army and Navy Lists, and--it somehow gladdened my heart to see it--the +Law List. + +Whilst I was looking at the books, the door opened, and the Count +entered. He saluted me in a hearty way, and hoped that I had had a good +night’s rest. Then he went on:-- + +“I am glad you found your way in here, for I am sure there is much that +will interest you. These companions”--and he laid his hand on some of +the books--“have been good friends to me, and for some years past, ever +since I had the idea of going to London, have given me many, many hours +of pleasure. Through them I have come to know your great England; and to +know her is to love her. I long to go through the crowded streets of +your mighty London, to be in the midst of the whirl and rush of +humanity, to share its life, its change, its death, and all that makes +it what it is. But alas! as yet I only know your tongue through books. +To you, my friend, I look that I know it to speak.” + +“But, Count,” I said, “you know and speak English thoroughly!” He bowed +gravely. + +“I thank you, my friend, for your all too-flattering estimate, but yet I +fear that I am but a little way on the road I would travel. True, I know +the grammar and the words, but yet I know not how to speak them.” + +“Indeed,” I said, “you speak excellently.” + +“Not so,” he answered. “Well, I know that, did I move and speak in your +London, none there are who would not know me for a stranger. That is not +enough for me. Here I am noble; I am _boyar_; the common people know me, +and I am master. But a stranger in a strange land, he is no one; men +know him not--and to know not is to care not for. I am content if I am +like the rest, so that no man stops if he see me, or pause in his +speaking if he hear my words, ‘Ha, ha! a stranger!’ I have been so long +master that I would be master still--or at least that none other should +be master of me. You come to me not alone as agent of my friend Peter +Hawkins, of Exeter, to tell me all about my new estate in London. You +shall, I trust, rest here with me awhile, so that by our talking I may +learn the English intonation; and I would that you tell me when I make +error, even of the smallest, in my speaking. I am sorry that I had to be +away so long to-day; but you will, I know, forgive one who has so many +important affairs in hand.” + +Of course I said all I could about being willing, and asked if I might +come into that room when I chose. He answered: “Yes, certainly,” and +added:-- + +“You may go anywhere you wish in the castle, except where the doors are +locked, where of course you will not wish to go. There is reason that +all things are as they are, and did you see with my eyes and know with +my knowledge, you would perhaps better understand.” I said I was sure of +this, and then he went on:-- + +“We are in Transylvania; and Transylvania is not England. Our ways are +not your ways, and there shall be to you many strange things. Nay, from +what you have told me of your experiences already, you know something of +what strange things there may be.” + +This led to much conversation; and as it was evident that he wanted to +talk, if only for talking’s sake, I asked him many questions regarding +things that had already happened to me or come within my notice. +Sometimes he sheered off the subject, or turned the conversation by +pretending not to understand; but generally he answered all I asked most +frankly. Then as time went on, and I had got somewhat bolder, I asked +him of some of the strange things of the preceding night, as, for +instance, why the coachman went to the places where he had seen the blue +flames. He then explained to me that it was commonly believed that on a +certain night of the year--last night, in fact, when all evil spirits +are supposed to have unchecked sway--a blue flame is seen over any place +where treasure has been concealed. “That treasure has been hidden,” he +went on, “in the region through which you came last night, there can be +but little doubt; for it was the ground fought over for centuries by the +Wallachian, the Saxon, and the Turk. Why, there is hardly a foot of soil +in all this region that has not been enriched by the blood of men, +patriots or invaders. In old days there were stirring times, when the +Austrian and the Hungarian came up in hordes, and the patriots went out +to meet them--men and women, the aged and the children too--and waited +their coming on the rocks above the passes, that they might sweep +destruction on them with their artificial avalanches. When the invader +was triumphant he found but little, for whatever there was had been +sheltered in the friendly soil.” + +“But how,” said I, “can it have remained so long undiscovered, when +there is a sure index to it if men will but take the trouble to look?” +The Count smiled, and as his lips ran back over his gums, the long, +sharp, canine teeth showed out strangely; he answered:-- + +“Because your peasant is at heart a coward and a fool! Those flames only +appear on one night; and on that night no man of this land will, if he +can help it, stir without his doors. And, dear sir, even if he did he +would not know what to do. Why, even the peasant that you tell me of who +marked the place of the flame would not know where to look in daylight +even for his own work. Even you would not, I dare be sworn, be able to +find these places again?” + +“There you are right,” I said. “I know no more than the dead where even +to look for them.” Then we drifted into other matters. + +“Come,” he said at last, “tell me of London and of the house which you +have procured for me.” With an apology for my remissness, I went into my +own room to get the papers from my bag. Whilst I was placing them in +order I heard a rattling of china and silver in the next room, and as I +passed through, noticed that the table had been cleared and the lamp +lit, for it was by this time deep into the dark. The lamps were also lit +in the study or library, and I found the Count lying on the sofa, +reading, of all things in the world, an English Bradshaw’s Guide. When I +came in he cleared the books and papers from the table; and with him I +went into plans and deeds and figures of all sorts. He was interested in +everything, and asked me a myriad questions about the place and its +surroundings. He clearly had studied beforehand all he could get on the +subject of the neighbourhood, for he evidently at the end knew very much +more than I did. When I remarked this, he answered:-- + +“Well, but, my friend, is it not needful that I should? When I go there +I shall be all alone, and my friend Harker Jonathan--nay, pardon me, I +fall into my country’s habit of putting your patronymic first--my friend +Jonathan Harker will not be by my side to correct and aid me. He will be +in Exeter, miles away, probably working at papers of the law with my +other friend, Peter Hawkins. So!” + +We went thoroughly into the business of the purchase of the estate at +Purfleet. When I had told him the facts and got his signature to the +necessary papers, and had written a letter with them ready to post to +Mr. Hawkins, he began to ask me how I had come across so suitable a +place. I read to him the notes which I had made at the time, and which I +inscribe here:-- + +“At Purfleet, on a by-road, I came across just such a place as seemed to +be required, and where was displayed a dilapidated notice that the place +was for sale. It is surrounded by a high wall, of ancient structure, +built of heavy stones, and has not been repaired for a large number of +years. The closed gates are of heavy old oak and iron, all eaten with +rust. + +“The estate is called Carfax, no doubt a corruption of the old _Quatre +Face_, as the house is four-sided, agreeing with the cardinal points of +the compass. It contains in all some twenty acres, quite surrounded by +the solid stone wall above mentioned. There are many trees on it, which +make it in places gloomy, and there is a deep, dark-looking pond or +small lake, evidently fed by some springs, as the water is clear and +flows away in a fair-sized stream. The house is very large and of all +periods back, I should say, to mediæval times, for one part is of stone +immensely thick, with only a few windows high up and heavily barred with +iron. It looks like part of a keep, and is close to an old chapel or +church. I could not enter it, as I had not the key of the door leading +to it from the house, but I have taken with my kodak views of it from +various points. The house has been added to, but in a very straggling +way, and I can only guess at the amount of ground it covers, which must +be very great. There are but few houses close at hand, one being a very +large house only recently added to and formed into a private lunatic +asylum. It is not, however, visible from the grounds.” + +When I had finished, he said:-- + +“I am glad that it is old and big. I myself am of an old family, and to +live in a new house would kill me. A house cannot be made habitable in a +day; and, after all, how few days go to make up a century. I rejoice +also that there is a chapel of old times. We Transylvanian nobles love +not to think that our bones may lie amongst the common dead. I seek not +gaiety nor mirth, not the bright voluptuousness of much sunshine and +sparkling waters which please the young and gay. I am no longer young; +and my heart, through weary years of mourning over the dead, is not +attuned to mirth. Moreover, the walls of my castle are broken; the +shadows are many, and the wind breathes cold through the broken +battlements and casements. I love the shade and the shadow, and would +be alone with my thoughts when I may.” Somehow his words and his look +did not seem to accord, or else it was that his cast of face made his +smile look malignant and saturnine. + +Presently, with an excuse, he left me, asking me to put all my papers +together. He was some little time away, and I began to look at some of +the books around me. One was an atlas, which I found opened naturally at +England, as if that map had been much used. On looking at it I found in +certain places little rings marked, and on examining these I noticed +that one was near London on the east side, manifestly where his new +estate was situated; the other two were Exeter, and Whitby on the +Yorkshire coast. + +It was the better part of an hour when the Count returned. “Aha!” he +said; “still at your books? Good! But you must not work always. Come; I +am informed that your supper is ready.” He took my arm, and we went into +the next room, where I found an excellent supper ready on the table. The +Count again excused himself, as he had dined out on his being away from +home. But he sat as on the previous night, and chatted whilst I ate. +After supper I smoked, as on the last evening, and the Count stayed with +me, chatting and asking questions on every conceivable subject, hour +after hour. I felt that it was getting very late indeed, but I did not +say anything, for I felt under obligation to meet my host’s wishes in +every way. I was not sleepy, as the long sleep yesterday had fortified +me; but I could not help experiencing that chill which comes over one at +the coming of the dawn, which is like, in its way, the turn of the tide. +They say that people who are near death die generally at the change to +the dawn or at the turn of the tide; any one who has when tired, and +tied as it were to his post, experienced this change in the atmosphere +can well believe it. All at once we heard the crow of a cock coming up +with preternatural shrillness through the clear morning air; Count +Dracula, jumping to his feet, said:-- + +“Why, there is the morning again! How remiss I am to let you stay up so +long. You must make your conversation regarding my dear new country of +England less interesting, so that I may not forget how time flies by +us,” and, with a courtly bow, he quickly left me. + +I went into my own room and drew the curtains, but there was little to +notice; my window opened into the courtyard, all I could see was the +warm grey of quickening sky. So I pulled the curtains again, and have +written of this day. + + * * * * * + +_8 May._--I began to fear as I wrote in this book that I was getting too +diffuse; but now I am glad that I went into detail from the first, for +there is something so strange about this place and all in it that I +cannot but feel uneasy. I wish I were safe out of it, or that I had +never come. It may be that this strange night-existence is telling on +me; but would that that were all! If there were any one to talk to I +could bear it, but there is no one. I have only the Count to speak with, +and he!--I fear I am myself the only living soul within the place. Let +me be prosaic so far as facts can be; it will help me to bear up, and +imagination must not run riot with me. If it does I am lost. Let me say +at once how I stand--or seem to. + +I only slept a few hours when I went to bed, and feeling that I could +not sleep any more, got up. I had hung my shaving glass by the window, +and was just beginning to shave. Suddenly I felt a hand on my shoulder, +and heard the Count’s voice saying to me, “Good-morning.” I started, for +it amazed me that I had not seen him, since the reflection of the glass +covered the whole room behind me. In starting I had cut myself slightly, +but did not notice it at the moment. Having answered the Count’s +salutation, I turned to the glass again to see how I had been mistaken. +This time there could be no error, for the man was close to me, and I +could see him over my shoulder. But there was no reflection of him in +the mirror! The whole room behind me was displayed; but there was no +sign of a man in it, except myself. This was startling, and, coming on +the top of so many strange things, was beginning to increase that vague +feeling of uneasiness which I always have when the Count is near; but at +the instant I saw that the cut had bled a little, and the blood was +trickling over my chin. I laid down the razor, turning as I did so half +round to look for some sticking plaster. When the Count saw my face, his +eyes blazed with a sort of demoniac fury, and he suddenly made a grab at +my throat. I drew away, and his hand touched the string of beads which +held the crucifix. It made an instant change in him, for the fury passed +so quickly that I could hardly believe that it was ever there. + +“Take care,” he said, “take care how you cut yourself. It is more +dangerous than you think in this country.” Then seizing the shaving +glass, he went on: “And this is the wretched thing that has done the +mischief. It is a foul bauble of man’s vanity. Away with it!” and +opening the heavy window with one wrench of his terrible hand, he flung +out the glass, which was shattered into a thousand pieces on the stones +of the courtyard far below. Then he withdrew without a word. It is very +annoying, for I do not see how I am to shave, unless in my watch-case or +the bottom of the shaving-pot, which is fortunately of metal. + +When I went into the dining-room, breakfast was prepared; but I could +not find the Count anywhere. So I breakfasted alone. It is strange that +as yet I have not seen the Count eat or drink. He must be a very +peculiar man! After breakfast I did a little exploring in the castle. I +went out on the stairs, and found a room looking towards the South. The +view was magnificent, and from where I stood there was every opportunity +of seeing it. The castle is on the very edge of a terrible precipice. A +stone falling from the window would fall a thousand feet without +touching anything! As far as the eye can reach is a sea of green tree +tops, with occasionally a deep rift where there is a chasm. Here and +there are silver threads where the rivers wind in deep gorges through +the forests. + +But I am not in heart to describe beauty, for when I had seen the view I +explored further; doors, doors, doors everywhere, and all locked and +bolted. In no place save from the windows in the castle walls is there +an available exit. + +The castle is a veritable prison, and I am a prisoner! + + + + +CHAPTER III + +JONATHAN HARKER’S JOURNAL--_continued_ + + +When I found that I was a prisoner a sort of wild feeling came over me. +I rushed up and down the stairs, trying every door and peering out of +every window I could find; but after a little the conviction of my +helplessness overpowered all other feelings. When I look back after a +few hours I think I must have been mad for the time, for I behaved much +as a rat does in a trap. When, however, the conviction had come to me +that I was helpless I sat down quietly--as quietly as I have ever done +anything in my life--and began to think over what was best to be done. I +am thinking still, and as yet have come to no definite conclusion. Of +one thing only am I certain; that it is no use making my ideas known to +the Count. He knows well that I am imprisoned; and as he has done it +himself, and has doubtless his own motives for it, he would only deceive +me if I trusted him fully with the facts. So far as I can see, my only +plan will be to keep my knowledge and my fears to myself, and my eyes +open. I am, I know, either being deceived, like a baby, by my own fears, +or else I am in desperate straits; and if the latter be so, I need, and +shall need, all my brains to get through. + +I had hardly come to this conclusion when I heard the great door below +shut, and knew that the Count had returned. He did not come at once into +the library, so I went cautiously to my own room and found him making +the bed. This was odd, but only confirmed what I had all along +thought--that there were no servants in the house. When later I saw him +through the chink of the hinges of the door laying the table in the +dining-room, I was assured of it; for if he does himself all these +menial offices, surely it is proof that there is no one else to do them. +This gave me a fright, for if there is no one else in the castle, it +must have been the Count himself who was the driver of the coach that +brought me here. This is a terrible thought; for if so, what does it +mean that he could control the wolves, as he did, by only holding up his +hand in silence. How was it that all the people at Bistritz and on the +coach had some terrible fear for me? What meant the giving of the +crucifix, of the garlic, of the wild rose, of the mountain ash? Bless +that good, good woman who hung the crucifix round my neck! for it is a +comfort and a strength to me whenever I touch it. It is odd that a thing +which I have been taught to regard with disfavour and as idolatrous +should in a time of loneliness and trouble be of help. Is it that there +is something in the essence of the thing itself, or that it is a medium, +a tangible help, in conveying memories of sympathy and comfort? Some +time, if it may be, I must examine this matter and try to make up my +mind about it. In the meantime I must find out all I can about Count +Dracula, as it may help me to understand. To-night he may talk of +himself, if I turn the conversation that way. I must be very careful, +however, not to awake his suspicion. + + * * * * * + +_Midnight._--I have had a long talk with the Count. I asked him a few +questions on Transylvania history, and he warmed up to the subject +wonderfully. In his speaking of things and people, and especially of +battles, he spoke as if he had been present at them all. This he +afterwards explained by saying that to a _boyar_ the pride of his house +and name is his own pride, that their glory is his glory, that their +fate is his fate. Whenever he spoke of his house he always said “we,” +and spoke almost in the plural, like a king speaking. I wish I could put +down all he said exactly as he said it, for to me it was most +fascinating. It seemed to have in it a whole history of the country. He +grew excited as he spoke, and walked about the room pulling his great +white moustache and grasping anything on which he laid his hands as +though he would crush it by main strength. One thing he said which I +shall put down as nearly as I can; for it tells in its way the story of +his race:-- + +“We Szekelys have a right to be proud, for in our veins flows the blood +of many brave races who fought as the lion fights, for lordship. Here, +in the whirlpool of European races, the Ugric tribe bore down from +Iceland the fighting spirit which Thor and Wodin gave them, which their +Berserkers displayed to such fell intent on the seaboards of Europe, ay, +and of Asia and Africa too, till the peoples thought that the +were-wolves themselves had come. Here, too, when they came, they found +the Huns, whose warlike fury had swept the earth like a living flame, +till the dying peoples held that in their veins ran the blood of those +old witches, who, expelled from Scythia had mated with the devils in the +desert. Fools, fools! What devil or what witch was ever so great as +Attila, whose blood is in these veins?” He held up his arms. “Is it a +wonder that we were a conquering race; that we were proud; that when the +Magyar, the Lombard, the Avar, the Bulgar, or the Turk poured his +thousands on our frontiers, we drove them back? Is it strange that when +Arpad and his legions swept through the Hungarian fatherland he found us +here when he reached the frontier; that the Honfoglalas was completed +there? And when the Hungarian flood swept eastward, the Szekelys were +claimed as kindred by the victorious Magyars, and to us for centuries +was trusted the guarding of the frontier of Turkey-land; ay, and more +than that, endless duty of the frontier guard, for, as the Turks say, +‘water sleeps, and enemy is sleepless.’ Who more gladly than we +throughout the Four Nations received the ‘bloody sword,’ or at its +warlike call flocked quicker to the standard of the King? When was +redeemed that great shame of my nation, the shame of Cassova, when the +flags of the Wallach and the Magyar went down beneath the Crescent? Who +was it but one of my own race who as Voivode crossed the Danube and beat +the Turk on his own ground? This was a Dracula indeed! Woe was it that +his own unworthy brother, when he had fallen, sold his people to the +Turk and brought the shame of slavery on them! Was it not this Dracula, +indeed, who inspired that other of his race who in a later age again and +again brought his forces over the great river into Turkey-land; who, +when he was beaten back, came again, and again, and again, though he had +to come alone from the bloody field where his troops were being +slaughtered, since he knew that he alone could ultimately triumph! They +said that he thought only of himself. Bah! what good are peasants +without a leader? Where ends the war without a brain and heart to +conduct it? Again, when, after the battle of Mohács, we threw off the +Hungarian yoke, we of the Dracula blood were amongst their leaders, for +our spirit would not brook that we were not free. Ah, young sir, the +Szekelys--and the Dracula as their heart’s blood, their brains, and +their swords--can boast a record that mushroom growths like the +Hapsburgs and the Romanoffs can never reach. The warlike days are over. +Blood is too precious a thing in these days of dishonourable peace; and +the glories of the great races are as a tale that is told.” + +It was by this time close on morning, and we went to bed. (_Mem._, this +diary seems horribly like the beginning of the “Arabian Nights,” for +everything has to break off at cockcrow--or like the ghost of Hamlet’s +father.) + + * * * * * + +_12 May._--Let me begin with facts--bare, meagre facts, verified by +books and figures, and of which there can be no doubt. I must not +confuse them with experiences which will have to rest on my own +observation, or my memory of them. Last evening when the Count came from +his room he began by asking me questions on legal matters and on the +doing of certain kinds of business. I had spent the day wearily over +books, and, simply to keep my mind occupied, went over some of the +matters I had been examining at Lincoln’s Inn. There was a certain +method in the Count’s inquiries, so I shall try to put them down in +sequence; the knowledge may somehow or some time be useful to me. + +First, he asked if a man in England might have two solicitors or more. I +told him he might have a dozen if he wished, but that it would not be +wise to have more than one solicitor engaged in one transaction, as only +one could act at a time, and that to change would be certain to militate +against his interest. He seemed thoroughly to understand, and went on to +ask if there would be any practical difficulty in having one man to +attend, say, to banking, and another to look after shipping, in case +local help were needed in a place far from the home of the banking +solicitor. I asked him to explain more fully, so that I might not by any +chance mislead him, so he said:-- + +“I shall illustrate. Your friend and mine, Mr. Peter Hawkins, from under +the shadow of your beautiful cathedral at Exeter, which is far from +London, buys for me through your good self my place at London. Good! Now +here let me say frankly, lest you should think it strange that I have +sought the services of one so far off from London instead of some one +resident there, that my motive was that no local interest might be +served save my wish only; and as one of London residence might, perhaps, +have some purpose of himself or friend to serve, I went thus afield to +seek my agent, whose labours should be only to my interest. Now, suppose +I, who have much of affairs, wish to ship goods, say, to Newcastle, or +Durham, or Harwich, or Dover, might it not be that it could with more +ease be done by consigning to one in these ports?” I answered that +certainly it would be most easy, but that we solicitors had a system of +agency one for the other, so that local work could be done locally on +instruction from any solicitor, so that the client, simply placing +himself in the hands of one man, could have his wishes carried out by +him without further trouble. + +“But,” said he, “I could be at liberty to direct myself. Is it not so?” + +“Of course,” I replied; and “such is often done by men of business, who +do not like the whole of their affairs to be known by any one person.” + +“Good!” he said, and then went on to ask about the means of making +consignments and the forms to be gone through, and of all sorts of +difficulties which might arise, but by forethought could be guarded +against. I explained all these things to him to the best of my ability, +and he certainly left me under the impression that he would have made a +wonderful solicitor, for there was nothing that he did not think of or +foresee. For a man who was never in the country, and who did not +evidently do much in the way of business, his knowledge and acumen were +wonderful. When he had satisfied himself on these points of which he had +spoken, and I had verified all as well as I could by the books +available, he suddenly stood up and said:-- + +“Have you written since your first letter to our friend Mr. Peter +Hawkins, or to any other?” It was with some bitterness in my heart that +I answered that I had not, that as yet I had not seen any opportunity of +sending letters to anybody. + +“Then write now, my young friend,” he said, laying a heavy hand on my +shoulder: “write to our friend and to any other; and say, if it will +please you, that you shall stay with me until a month from now.” + +“Do you wish me to stay so long?” I asked, for my heart grew cold at the +thought. + +“I desire it much; nay, I will take no refusal. When your master, +employer, what you will, engaged that someone should come on his behalf, +it was understood that my needs only were to be consulted. I have not +stinted. Is it not so?” + +What could I do but bow acceptance? It was Mr. Hawkins’s interest, not +mine, and I had to think of him, not myself; and besides, while Count +Dracula was speaking, there was that in his eyes and in his bearing +which made me remember that I was a prisoner, and that if I wished it I +could have no choice. The Count saw his victory in my bow, and his +mastery in the trouble of my face, for he began at once to use them, but +in his own smooth, resistless way:-- + +“I pray you, my good young friend, that you will not discourse of things +other than business in your letters. It will doubtless please your +friends to know that you are well, and that you look forward to getting +home to them. Is it not so?” As he spoke he handed me three sheets of +note-paper and three envelopes. They were all of the thinnest foreign +post, and looking at them, then at him, and noticing his quiet smile, +with the sharp, canine teeth lying over the red underlip, I understood +as well as if he had spoken that I should be careful what I wrote, for +he would be able to read it. So I determined to write only formal notes +now, but to write fully to Mr. Hawkins in secret, and also to Mina, for +to her I could write in shorthand, which would puzzle the Count, if he +did see it. When I had written my two letters I sat quiet, reading a +book whilst the Count wrote several notes, referring as he wrote them to +some books on his table. Then he took up my two and placed them with his +own, and put by his writing materials, after which, the instant the door +had closed behind him, I leaned over and looked at the letters, which +were face down on the table. I felt no compunction in doing so, for +under the circumstances I felt that I should protect myself in every way +I could. + +One of the letters was directed to Samuel F. Billington, No. 7, The +Crescent, Whitby, another to Herr Leutner, Varna; the third was to +Coutts & Co., London, and the fourth to Herren Klopstock & Billreuth, +bankers, Buda-Pesth. The second and fourth were unsealed. I was just +about to look at them when I saw the door-handle move. I sank back in my +seat, having just had time to replace the letters as they had been and +to resume my book before the Count, holding still another letter in his +hand, entered the room. He took up the letters on the table and stamped +them carefully, and then turning to me, said:-- + +“I trust you will forgive me, but I have much work to do in private this +evening. You will, I hope, find all things as you wish.” At the door he +turned, and after a moment’s pause said:-- + +“Let me advise you, my dear young friend--nay, let me warn you with all +seriousness, that should you leave these rooms you will not by any +chance go to sleep in any other part of the castle. It is old, and has +many memories, and there are bad dreams for those who sleep unwisely. Be +warned! Should sleep now or ever overcome you, or be like to do, then +haste to your own chamber or to these rooms, for your rest will then be +safe. But if you be not careful in this respect, then”--He finished his +speech in a gruesome way, for he motioned with his hands as if he were +washing them. I quite understood; my only doubt was as to whether any +dream could be more terrible than the unnatural, horrible net of gloom +and mystery which seemed closing around me. + + * * * * * + +_Later._--I endorse the last words written, but this time there is no +doubt in question. I shall not fear to sleep in any place where he is +not. I have placed the crucifix over the head of my bed--I imagine that +my rest is thus freer from dreams; and there it shall remain. + +When he left me I went to my room. After a little while, not hearing any +sound, I came out and went up the stone stair to where I could look out +towards the South. There was some sense of freedom in the vast expanse, +inaccessible though it was to me, as compared with the narrow darkness +of the courtyard. Looking out on this, I felt that I was indeed in +prison, and I seemed to want a breath of fresh air, though it were of +the night. I am beginning to feel this nocturnal existence tell on me. +It is destroying my nerve. I start at my own shadow, and am full of all +sorts of horrible imaginings. God knows that there is ground for my +terrible fear in this accursed place! I looked out over the beautiful +expanse, bathed in soft yellow moonlight till it was almost as light as +day. In the soft light the distant hills became melted, and the shadows +in the valleys and gorges of velvety blackness. The mere beauty seemed +to cheer me; there was peace and comfort in every breath I drew. As I +leaned from the window my eye was caught by something moving a storey +below me, and somewhat to my left, where I imagined, from the order of +the rooms, that the windows of the Count’s own room would look out. The +window at which I stood was tall and deep, stone-mullioned, and though +weatherworn, was still complete; but it was evidently many a day since +the case had been there. I drew back behind the stonework, and looked +carefully out. + +What I saw was the Count’s head coming out from the window. I did not +see the face, but I knew the man by the neck and the movement of his +back and arms. In any case I could not mistake the hands which I had had +so many opportunities of studying. I was at first interested and +somewhat amused, for it is wonderful how small a matter will interest +and amuse a man when he is a prisoner. But my very feelings changed to +repulsion and terror when I saw the whole man slowly emerge from the +window and begin to crawl down the castle wall over that dreadful abyss, +_face down_ with his cloak spreading out around him like great wings. At +first I could not believe my eyes. I thought it was some trick of the +moonlight, some weird effect of shadow; but I kept looking, and it could +be no delusion. I saw the fingers and toes grasp the corners of the +stones, worn clear of the mortar by the stress of years, and by thus +using every projection and inequality move downwards with considerable +speed, just as a lizard moves along a wall. + +What manner of man is this, or what manner of creature is it in the +semblance of man? I feel the dread of this horrible place overpowering +me; I am in fear--in awful fear--and there is no escape for me; I am +encompassed about with terrors that I dare not think of.... + + * * * * * + +_15 May._--Once more have I seen the Count go out in his lizard fashion. +He moved downwards in a sidelong way, some hundred feet down, and a good +deal to the left. He vanished into some hole or window. When his head +had disappeared, I leaned out to try and see more, but without +avail--the distance was too great to allow a proper angle of sight. I +knew he had left the castle now, and thought to use the opportunity to +explore more than I had dared to do as yet. I went back to the room, and +taking a lamp, tried all the doors. They were all locked, as I had +expected, and the locks were comparatively new; but I went down the +stone stairs to the hall where I had entered originally. I found I could +pull back the bolts easily enough and unhook the great chains; but the +door was locked, and the key was gone! That key must be in the Count’s +room; I must watch should his door be unlocked, so that I may get it and +escape. I went on to make a thorough examination of the various stairs +and passages, and to try the doors that opened from them. One or two +small rooms near the hall were open, but there was nothing to see in +them except old furniture, dusty with age and moth-eaten. At last, +however, I found one door at the top of the stairway which, though it +seemed to be locked, gave a little under pressure. I tried it harder, +and found that it was not really locked, but that the resistance came +from the fact that the hinges had fallen somewhat, and the heavy door +rested on the floor. Here was an opportunity which I might not have +again, so I exerted myself, and with many efforts forced it back so that +I could enter. I was now in a wing of the castle further to the right +than the rooms I knew and a storey lower down. From the windows I could +see that the suite of rooms lay along to the south of the castle, the +windows of the end room looking out both west and south. On the latter +side, as well as to the former, there was a great precipice. The castle +was built on the corner of a great rock, so that on three sides it was +quite impregnable, and great windows were placed here where sling, or +bow, or culverin could not reach, and consequently light and comfort, +impossible to a position which had to be guarded, were secured. To the +west was a great valley, and then, rising far away, great jagged +mountain fastnesses, rising peak on peak, the sheer rock studded with +mountain ash and thorn, whose roots clung in cracks and crevices and +crannies of the stone. This was evidently the portion of the castle +occupied by the ladies in bygone days, for the furniture had more air of +comfort than any I had seen. The windows were curtainless, and the +yellow moonlight, flooding in through the diamond panes, enabled one to +see even colours, whilst it softened the wealth of dust which lay over +all and disguised in some measure the ravages of time and the moth. My +lamp seemed to be of little effect in the brilliant moonlight, but I was +glad to have it with me, for there was a dread loneliness in the place +which chilled my heart and made my nerves tremble. Still, it was better +than living alone in the rooms which I had come to hate from the +presence of the Count, and after trying a little to school my nerves, I +found a soft quietude come over me. Here I am, sitting at a little oak +table where in old times possibly some fair lady sat to pen, with much +thought and many blushes, her ill-spelt love-letter, and writing in my +diary in shorthand all that has happened since I closed it last. It is +nineteenth century up-to-date with a vengeance. And yet, unless my +senses deceive me, the old centuries had, and have, powers of their own +which mere “modernity” cannot kill. + + * * * * * + +_Later: the Morning of 16 May._--God preserve my sanity, for to this I +am reduced. Safety and the assurance of safety are things of the past. +Whilst I live on here there is but one thing to hope for, that I may not +go mad, if, indeed, I be not mad already. If I be sane, then surely it +is maddening to think that of all the foul things that lurk in this +hateful place the Count is the least dreadful to me; that to him alone I +can look for safety, even though this be only whilst I can serve his +purpose. Great God! merciful God! Let me be calm, for out of that way +lies madness indeed. I begin to get new lights on certain things which +have puzzled me. Up to now I never quite knew what Shakespeare meant +when he made Hamlet say:-- + + “My tablets! quick, my tablets! + ’Tis meet that I put it down,” etc., + +for now, feeling as though my own brain were unhinged or as if the shock +had come which must end in its undoing, I turn to my diary for repose. +The habit of entering accurately must help to soothe me. + +The Count’s mysterious warning frightened me at the time; it frightens +me more now when I think of it, for in future he has a fearful hold upon +me. I shall fear to doubt what he may say! + +When I had written in my diary and had fortunately replaced the book and +pen in my pocket I felt sleepy. The Count’s warning came into my mind, +but I took a pleasure in disobeying it. The sense of sleep was upon me, +and with it the obstinacy which sleep brings as outrider. The soft +moonlight soothed, and the wide expanse without gave a sense of freedom +which refreshed me. I determined not to return to-night to the +gloom-haunted rooms, but to sleep here, where, of old, ladies had sat +and sung and lived sweet lives whilst their gentle breasts were sad for +their menfolk away in the midst of remorseless wars. I drew a great +couch out of its place near the corner, so that as I lay, I could look +at the lovely view to east and south, and unthinking of and uncaring for +the dust, composed myself for sleep. I suppose I must have fallen +asleep; I hope so, but I fear, for all that followed was startlingly +real--so real that now sitting here in the broad, full sunlight of the +morning, I cannot in the least believe that it was all sleep. + +I was not alone. The room was the same, unchanged in any way since I +came into it; I could see along the floor, in the brilliant moonlight, +my own footsteps marked where I had disturbed the long accumulation of +dust. In the moonlight opposite me were three young women, ladies by +their dress and manner. I thought at the time that I must be dreaming +when I saw them, for, though the moonlight was behind them, they threw +no shadow on the floor. They came close to me, and looked at me for some +time, and then whispered together. Two were dark, and had high aquiline +noses, like the Count, and great dark, piercing eyes that seemed to be +almost red when contrasted with the pale yellow moon. The other was +fair, as fair as can be, with great wavy masses of golden hair and eyes +like pale sapphires. I seemed somehow to know her face, and to know it +in connection with some dreamy fear, but I could not recollect at the +moment how or where. All three had brilliant white teeth that shone like +pearls against the ruby of their voluptuous lips. There was something +about them that made me uneasy, some longing and at the same time some +deadly fear. I felt in my heart a wicked, burning desire that they would +kiss me with those red lips. It is not good to note this down, lest some +day it should meet Mina’s eyes and cause her pain; but it is the truth. +They whispered together, and then they all three laughed--such a +silvery, musical laugh, but as hard as though the sound never could have +come through the softness of human lips. It was like the intolerable, +tingling sweetness of water-glasses when played on by a cunning hand. +The fair girl shook her head coquettishly, and the other two urged her +on. One said:-- + +“Go on! You are first, and we shall follow; yours is the right to +begin.” The other added:-- + +“He is young and strong; there are kisses for us all.” I lay quiet, +looking out under my eyelashes in an agony of delightful anticipation. +The fair girl advanced and bent over me till I could feel the movement +of her breath upon me. Sweet it was in one sense, honey-sweet, and sent +the same tingling through the nerves as her voice, but with a bitter +underlying the sweet, a bitter offensiveness, as one smells in blood. + +I was afraid to raise my eyelids, but looked out and saw perfectly under +the lashes. The girl went on her knees, and bent over me, simply +gloating. There was a deliberate voluptuousness which was both thrilling +and repulsive, and as she arched her neck she actually licked her lips +like an animal, till I could see in the moonlight the moisture shining +on the scarlet lips and on the red tongue as it lapped the white sharp +teeth. Lower and lower went her head as the lips went below the range of +my mouth and chin and seemed about to fasten on my throat. Then she +paused, and I could hear the churning sound of her tongue as it licked +her teeth and lips, and could feel the hot breath on my neck. Then the +skin of my throat began to tingle as one’s flesh does when the hand that +is to tickle it approaches nearer--nearer. I could feel the soft, +shivering touch of the lips on the super-sensitive skin of my throat, +and the hard dents of two sharp teeth, just touching and pausing there. +I closed my eyes in a languorous ecstasy and waited--waited with beating +heart. + +But at that instant, another sensation swept through me as quick as +lightning. I was conscious of the presence of the Count, and of his +being as if lapped in a storm of fury. As my eyes opened involuntarily I +saw his strong hand grasp the slender neck of the fair woman and with +giant’s power draw it back, the blue eyes transformed with fury, the +white teeth champing with rage, and the fair cheeks blazing red with +passion. But the Count! Never did I imagine such wrath and fury, even to +the demons of the pit. His eyes were positively blazing. The red light +in them was lurid, as if the flames of hell-fire blazed behind them. His +face was deathly pale, and the lines of it were hard like drawn wires; +the thick eyebrows that met over the nose now seemed like a heaving bar +of white-hot metal. With a fierce sweep of his arm, he hurled the woman +from him, and then motioned to the others, as though he were beating +them back; it was the same imperious gesture that I had seen used to the +wolves. In a voice which, though low and almost in a whisper seemed to +cut through the air and then ring round the room he said:-- + +“How dare you touch him, any of you? How dare you cast eyes on him when +I had forbidden it? Back, I tell you all! This man belongs to me! Beware +how you meddle with him, or you’ll have to deal with me.” The fair girl, +with a laugh of ribald coquetry, turned to answer him:-- + +“You yourself never loved; you never love!” On this the other women +joined, and such a mirthless, hard, soulless laughter rang through the +room that it almost made me faint to hear; it seemed like the pleasure +of fiends. Then the Count turned, after looking at my face attentively, +and said in a soft whisper:-- + +“Yes, I too can love; you yourselves can tell it from the past. Is it +not so? Well, now I promise you that when I am done with him you shall +kiss him at your will. Now go! go! I must awaken him, for there is work +to be done.” + +“Are we to have nothing to-night?” said one of them, with a low laugh, +as she pointed to the bag which he had thrown upon the floor, and which +moved as though there were some living thing within it. For answer he +nodded his head. One of the women jumped forward and opened it. If my +ears did not deceive me there was a gasp and a low wail, as of a +half-smothered child. The women closed round, whilst I was aghast with +horror; but as I looked they disappeared, and with them the dreadful +bag. There was no door near them, and they could not have passed me +without my noticing. They simply seemed to fade into the rays of the +moonlight and pass out through the window, for I could see outside the +dim, shadowy forms for a moment before they entirely faded away. + +Then the horror overcame me, and I sank down unconscious. + + + + +CHAPTER IV + +JONATHAN HARKER’S JOURNAL--_continued_ + + +I awoke in my own bed. If it be that I had not dreamt, the Count must +have carried me here. I tried to satisfy myself on the subject, but +could not arrive at any unquestionable result. To be sure, there were +certain small evidences, such as that my clothes were folded and laid by +in a manner which was not my habit. My watch was still unwound, and I am +rigorously accustomed to wind it the last thing before going to bed, and +many such details. But these things are no proof, for they may have been +evidences that my mind was not as usual, and, from some cause or +another, I had certainly been much upset. I must watch for proof. Of one +thing I am glad: if it was that the Count carried me here and undressed +me, he must have been hurried in his task, for my pockets are intact. I +am sure this diary would have been a mystery to him which he would not +have brooked. He would have taken or destroyed it. As I look round this +room, although it has been to me so full of fear, it is now a sort of +sanctuary, for nothing can be more dreadful than those awful women, who +were--who _are_--waiting to suck my blood. + + * * * * * + +_18 May._--I have been down to look at that room again in daylight, for +I _must_ know the truth. When I got to the doorway at the top of the +stairs I found it closed. It had been so forcibly driven against the +jamb that part of the woodwork was splintered. I could see that the bolt +of the lock had not been shot, but the door is fastened from the inside. +I fear it was no dream, and must act on this surmise. + + * * * * * + +_19 May._--I am surely in the toils. Last night the Count asked me in +the suavest tones to write three letters, one saying that my work here +was nearly done, and that I should start for home within a few days, +another that I was starting on the next morning from the time of the +letter, and the third that I had left the castle and arrived at +Bistritz. I would fain have rebelled, but felt that in the present state +of things it would be madness to quarrel openly with the Count whilst I +am so absolutely in his power; and to refuse would be to excite his +suspicion and to arouse his anger. He knows that I know too much, and +that I must not live, lest I be dangerous to him; my only chance is to +prolong my opportunities. Something may occur which will give me a +chance to escape. I saw in his eyes something of that gathering wrath +which was manifest when he hurled that fair woman from him. He explained +to me that posts were few and uncertain, and that my writing now would +ensure ease of mind to my friends; and he assured me with so much +impressiveness that he would countermand the later letters, which would +be held over at Bistritz until due time in case chance would admit of my +prolonging my stay, that to oppose him would have been to create new +suspicion. I therefore pretended to fall in with his views, and asked +him what dates I should put on the letters. He calculated a minute, and +then said:-- + +“The first should be June 12, the second June 19, and the third June +29.” + +I know now the span of my life. God help me! + + * * * * * + +_28 May._--There is a chance of escape, or at any rate of being able to +send word home. A band of Szgany have come to the castle, and are +encamped in the courtyard. These Szgany are gipsies; I have notes of +them in my book. They are peculiar to this part of the world, though +allied to the ordinary gipsies all the world over. There are thousands +of them in Hungary and Transylvania, who are almost outside all law. +They attach themselves as a rule to some great noble or _boyar_, and +call themselves by his name. They are fearless and without religion, +save superstition, and they talk only their own varieties of the Romany +tongue. + +I shall write some letters home, and shall try to get them to have them +posted. I have already spoken them through my window to begin +acquaintanceship. They took their hats off and made obeisance and many +signs, which, however, I could not understand any more than I could +their spoken language.... + + * * * * * + +I have written the letters. Mina’s is in shorthand, and I simply ask Mr. +Hawkins to communicate with her. To her I have explained my situation, +but without the horrors which I may only surmise. It would shock and +frighten her to death were I to expose my heart to her. Should the +letters not carry, then the Count shall not yet know my secret or the +extent of my knowledge.... + + * * * * * + +I have given the letters; I threw them through the bars of my window +with a gold piece, and made what signs I could to have them posted. The +man who took them pressed them to his heart and bowed, and then put them +in his cap. I could do no more. I stole back to the study, and began to +read. As the Count did not come in, I have written here.... + + * * * * * + +The Count has come. He sat down beside me, and said in his smoothest +voice as he opened two letters:-- + +“The Szgany has given me these, of which, though I know not whence they +come, I shall, of course, take care. See!”--he must have looked at +it--“one is from you, and to my friend Peter Hawkins; the other”--here +he caught sight of the strange symbols as he opened the envelope, and +the dark look came into his face, and his eyes blazed wickedly--“the +other is a vile thing, an outrage upon friendship and hospitality! It is +not signed. Well! so it cannot matter to us.” And he calmly held letter +and envelope in the flame of the lamp till they were consumed. Then he +went on:-- + +“The letter to Hawkins--that I shall, of course, send on, since it is +yours. Your letters are sacred to me. Your pardon, my friend, that +unknowingly I did break the seal. Will you not cover it again?” He held +out the letter to me, and with a courteous bow handed me a clean +envelope. I could only redirect it and hand it to him in silence. When +he went out of the room I could hear the key turn softly. A minute later +I went over and tried it, and the door was locked. + +When, an hour or two after, the Count came quietly into the room, his +coming awakened me, for I had gone to sleep on the sofa. He was very +courteous and very cheery in his manner, and seeing that I had been +sleeping, he said:-- + +“So, my friend, you are tired? Get to bed. There is the surest rest. I +may not have the pleasure to talk to-night, since there are many labours +to me; but you will sleep, I pray.” I passed to my room and went to bed, +and, strange to say, slept without dreaming. Despair has its own calms. + + * * * * * + +_31 May._--This morning when I woke I thought I would provide myself +with some paper and envelopes from my bag and keep them in my pocket, so +that I might write in case I should get an opportunity, but again a +surprise, again a shock! + +Every scrap of paper was gone, and with it all my notes, my memoranda, +relating to railways and travel, my letter of credit, in fact all that +might be useful to me were I once outside the castle. I sat and pondered +awhile, and then some thought occurred to me, and I made search of my +portmanteau and in the wardrobe where I had placed my clothes. + +The suit in which I had travelled was gone, and also my overcoat and +rug; I could find no trace of them anywhere. This looked like some new +scheme of villainy.... + + * * * * * + +_17 June._--This morning, as I was sitting on the edge of my bed +cudgelling my brains, I heard without a cracking of whips and pounding +and scraping of horses’ feet up the rocky path beyond the courtyard. +With joy I hurried to the window, and saw drive into the yard two great +leiter-wagons, each drawn by eight sturdy horses, and at the head of +each pair a Slovak, with his wide hat, great nail-studded belt, dirty +sheepskin, and high boots. They had also their long staves in hand. I +ran to the door, intending to descend and try and join them through the +main hall, as I thought that way might be opened for them. Again a +shock: my door was fastened on the outside. + +Then I ran to the window and cried to them. They looked up at me +stupidly and pointed, but just then the “hetman” of the Szgany came out, +and seeing them pointing to my window, said something, at which they +laughed. Henceforth no effort of mine, no piteous cry or agonised +entreaty, would make them even look at me. They resolutely turned away. +The leiter-wagons contained great, square boxes, with handles of thick +rope; these were evidently empty by the ease with which the Slovaks +handled them, and by their resonance as they were roughly moved. When +they were all unloaded and packed in a great heap in one corner of the +yard, the Slovaks were given some money by the Szgany, and spitting on +it for luck, lazily went each to his horse’s head. Shortly afterwards, I +heard the cracking of their whips die away in the distance. + + * * * * * + +_24 June, before morning._--Last night the Count left me early, and +locked himself into his own room. As soon as I dared I ran up the +winding stair, and looked out of the window, which opened south. I +thought I would watch for the Count, for there is something going on. +The Szgany are quartered somewhere in the castle and are doing work of +some kind. I know it, for now and then I hear a far-away muffled sound +as of mattock and spade, and, whatever it is, it must be the end of some +ruthless villainy. + +I had been at the window somewhat less than half an hour, when I saw +something coming out of the Count’s window. I drew back and watched +carefully, and saw the whole man emerge. It was a new shock to me to +find that he had on the suit of clothes which I had worn whilst +travelling here, and slung over his shoulder the terrible bag which I +had seen the women take away. There could be no doubt as to his quest, +and in my garb, too! This, then, is his new scheme of evil: that he will +allow others to see me, as they think, so that he may both leave +evidence that I have been seen in the towns or villages posting my own +letters, and that any wickedness which he may do shall by the local +people be attributed to me. + +It makes me rage to think that this can go on, and whilst I am shut up +here, a veritable prisoner, but without that protection of the law which +is even a criminal’s right and consolation. + +I thought I would watch for the Count’s return, and for a long time sat +doggedly at the window. Then I began to notice that there were some +quaint little specks floating in the rays of the moonlight. They were +like the tiniest grains of dust, and they whirled round and gathered in +clusters in a nebulous sort of way. I watched them with a sense of +soothing, and a sort of calm stole over me. I leaned back in the +embrasure in a more comfortable position, so that I could enjoy more +fully the aërial gambolling. + +Something made me start up, a low, piteous howling of dogs somewhere far +below in the valley, which was hidden from my sight. Louder it seemed to +ring in my ears, and the floating motes of dust to take new shapes to +the sound as they danced in the moonlight. I felt myself struggling to +awake to some call of my instincts; nay, my very soul was struggling, +and my half-remembered sensibilities were striving to answer the call. I +was becoming hypnotised! Quicker and quicker danced the dust; the +moonbeams seemed to quiver as they went by me into the mass of gloom +beyond. More and more they gathered till they seemed to take dim phantom +shapes. And then I started, broad awake and in full possession of my +senses, and ran screaming from the place. The phantom shapes, which were +becoming gradually materialised from the moonbeams, were those of the +three ghostly women to whom I was doomed. I fled, and felt somewhat +safer in my own room, where there was no moonlight and where the lamp +was burning brightly. + +When a couple of hours had passed I heard something stirring in the +Count’s room, something like a sharp wail quickly suppressed; and then +there was silence, deep, awful silence, which chilled me. With a +beating heart, I tried the door; but I was locked in my prison, and +could do nothing. I sat down and simply cried. + +As I sat I heard a sound in the courtyard without--the agonised cry of a +woman. I rushed to the window, and throwing it up, peered out between +the bars. There, indeed, was a woman with dishevelled hair, holding her +hands over her heart as one distressed with running. She was leaning +against a corner of the gateway. When she saw my face at the window she +threw herself forward, and shouted in a voice laden with menace:-- + +“Monster, give me my child!” + +She threw herself on her knees, and raising up her hands, cried the same +words in tones which wrung my heart. Then she tore her hair and beat her +breast, and abandoned herself to all the violences of extravagant +emotion. Finally, she threw herself forward, and, though I could not see +her, I could hear the beating of her naked hands against the door. + +Somewhere high overhead, probably on the tower, I heard the voice of the +Count calling in his harsh, metallic whisper. His call seemed to be +answered from far and wide by the howling of wolves. Before many minutes +had passed a pack of them poured, like a pent-up dam when liberated, +through the wide entrance into the courtyard. + +There was no cry from the woman, and the howling of the wolves was but +short. Before long they streamed away singly, licking their lips. + +I could not pity her, for I knew now what had become of her child, and +she was better dead. + +What shall I do? what can I do? How can I escape from this dreadful +thing of night and gloom and fear? + + * * * * * + +_25 June, morning._--No man knows till he has suffered from the night +how sweet and how dear to his heart and eye the morning can be. When the +sun grew so high this morning that it struck the top of the great +gateway opposite my window, the high spot which it touched seemed to me +as if the dove from the ark had lighted there. My fear fell from me as +if it had been a vaporous garment which dissolved in the warmth. I must +take action of some sort whilst the courage of the day is upon me. Last +night one of my post-dated letters went to post, the first of that fatal +series which is to blot out the very traces of my existence from the +earth. + +Let me not think of it. Action! + +It has always been at night-time that I have been molested or +threatened, or in some way in danger or in fear. I have not yet seen the +Count in the daylight. Can it be that he sleeps when others wake, that +he may be awake whilst they sleep? If I could only get into his room! +But there is no possible way. The door is always locked, no way for me. + +Yes, there is a way, if one dares to take it. Where his body has gone +why may not another body go? I have seen him myself crawl from his +window. Why should not I imitate him, and go in by his window? The +chances are desperate, but my need is more desperate still. I shall risk +it. At the worst it can only be death; and a man’s death is not a +calf’s, and the dreaded Hereafter may still be open to me. God help me +in my task! Good-bye, Mina, if I fail; good-bye, my faithful friend and +second father; good-bye, all, and last of all Mina! + + * * * * * + +_Same day, later._--I have made the effort, and God, helping me, have +come safely back to this room. I must put down every detail in order. I +went whilst my courage was fresh straight to the window on the south +side, and at once got outside on the narrow ledge of stone which runs +around the building on this side. The stones are big and roughly cut, +and the mortar has by process of time been washed away between them. I +took off my boots, and ventured out on the desperate way. I looked down +once, so as to make sure that a sudden glimpse of the awful depth would +not overcome me, but after that kept my eyes away from it. I knew pretty +well the direction and distance of the Count’s window, and made for it +as well as I could, having regard to the opportunities available. I did +not feel dizzy--I suppose I was too excited--and the time seemed +ridiculously short till I found myself standing on the window-sill and +trying to raise up the sash. I was filled with agitation, however, when +I bent down and slid feet foremost in through the window. Then I looked +around for the Count, but, with surprise and gladness, made a discovery. +The room was empty! It was barely furnished with odd things, which +seemed to have never been used; the furniture was something the same +style as that in the south rooms, and was covered with dust. I looked +for the key, but it was not in the lock, and I could not find it +anywhere. The only thing I found was a great heap of gold in one +corner--gold of all kinds, Roman, and British, and Austrian, and +Hungarian, and Greek and Turkish money, covered with a film of dust, as +though it had lain long in the ground. None of it that I noticed was +less than three hundred years old. There were also chains and ornaments, +some jewelled, but all of them old and stained. + +At one corner of the room was a heavy door. I tried it, for, since I +could not find the key of the room or the key of the outer door, which +was the main object of my search, I must make further examination, or +all my efforts would be in vain. It was open, and led through a stone +passage to a circular stairway, which went steeply down. I descended, +minding carefully where I went, for the stairs were dark, being only lit +by loopholes in the heavy masonry. At the bottom there was a dark, +tunnel-like passage, through which came a deathly, sickly odour, the +odour of old earth newly turned. As I went through the passage the smell +grew closer and heavier. At last I pulled open a heavy door which stood +ajar, and found myself in an old, ruined chapel, which had evidently +been used as a graveyard. The roof was broken, and in two places were +steps leading to vaults, but the ground had recently been dug over, and +the earth placed in great wooden boxes, manifestly those which had been +brought by the Slovaks. There was nobody about, and I made search for +any further outlet, but there was none. Then I went over every inch of +the ground, so as not to lose a chance. I went down even into the +vaults, where the dim light struggled, although to do so was a dread to +my very soul. Into two of these I went, but saw nothing except fragments +of old coffins and piles of dust; in the third, however, I made a +discovery. + +There, in one of the great boxes, of which there were fifty in all, on a +pile of newly dug earth, lay the Count! He was either dead or asleep, I +could not say which--for the eyes were open and stony, but without the +glassiness of death--and the cheeks had the warmth of life through all +their pallor; the lips were as red as ever. But there was no sign of +movement, no pulse, no breath, no beating of the heart. I bent over him, +and tried to find any sign of life, but in vain. He could not have lain +there long, for the earthy smell would have passed away in a few hours. +By the side of the box was its cover, pierced with holes here and there. +I thought he might have the keys on him, but when I went to search I saw +the dead eyes, and in them, dead though they were, such a look of hate, +though unconscious of me or my presence, that I fled from the place, and +leaving the Count’s room by the window, crawled again up the castle +wall. Regaining my room, I threw myself panting upon the bed and tried +to think.... + + * * * * * + +_29 June._--To-day is the date of my last letter, and the Count has +taken steps to prove that it was genuine, for again I saw him leave the +castle by the same window, and in my clothes. As he went down the wall, +lizard fashion, I wished I had a gun or some lethal weapon, that I might +destroy him; but I fear that no weapon wrought alone by man’s hand would +have any effect on him. I dared not wait to see him return, for I feared +to see those weird sisters. I came back to the library, and read there +till I fell asleep. + +I was awakened by the Count, who looked at me as grimly as a man can +look as he said:-- + +“To-morrow, my friend, we must part. You return to your beautiful +England, I to some work which may have such an end that we may never +meet. Your letter home has been despatched; to-morrow I shall not be +here, but all shall be ready for your journey. In the morning come the +Szgany, who have some labours of their own here, and also come some +Slovaks. When they have gone, my carriage shall come for you, and shall +bear you to the Borgo Pass to meet the diligence from Bukovina to +Bistritz. But I am in hopes that I shall see more of you at Castle +Dracula.” I suspected him, and determined to test his sincerity. +Sincerity! It seems like a profanation of the word to write it in +connection with such a monster, so asked him point-blank:-- + +“Why may I not go to-night?” + +“Because, dear sir, my coachman and horses are away on a mission.” + +“But I would walk with pleasure. I want to get away at once.” He smiled, +such a soft, smooth, diabolical smile that I knew there was some trick +behind his smoothness. He said:-- + +“And your baggage?” + +“I do not care about it. I can send for it some other time.” + +The Count stood up, and said, with a sweet courtesy which made me rub my +eyes, it seemed so real:-- + +“You English have a saying which is close to my heart, for its spirit is +that which rules our _boyars_: ‘Welcome the coming; speed the parting +guest.’ Come with me, my dear young friend. Not an hour shall you wait +in my house against your will, though sad am I at your going, and that +you so suddenly desire it. Come!” With a stately gravity, he, with the +lamp, preceded me down the stairs and along the hall. Suddenly he +stopped. + +“Hark!” + +Close at hand came the howling of many wolves. It was almost as if the +sound sprang up at the rising of his hand, just as the music of a great +orchestra seems to leap under the bâton of the conductor. After a pause +of a moment, he proceeded, in his stately way, to the door, drew back +the ponderous bolts, unhooked the heavy chains, and began to draw it +open. + +To my intense astonishment I saw that it was unlocked. Suspiciously, I +looked all round, but could see no key of any kind. + +As the door began to open, the howling of the wolves without grew louder +and angrier; their red jaws, with champing teeth, and their blunt-clawed +feet as they leaped, came in through the opening door. I knew then that +to struggle at the moment against the Count was useless. With such +allies as these at his command, I could do nothing. But still the door +continued slowly to open, and only the Count’s body stood in the gap. +Suddenly it struck me that this might be the moment and means of my +doom; I was to be given to the wolves, and at my own instigation. There +was a diabolical wickedness in the idea great enough for the Count, and +as a last chance I cried out:-- + +“Shut the door; I shall wait till morning!” and covered my face with my +hands to hide my tears of bitter disappointment. With one sweep of his +powerful arm, the Count threw the door shut, and the great bolts clanged +and echoed through the hall as they shot back into their places. + +In silence we returned to the library, and after a minute or two I went +to my own room. The last I saw of Count Dracula was his kissing his hand +to me; with a red light of triumph in his eyes, and with a smile that +Judas in hell might be proud of. + +When I was in my room and about to lie down, I thought I heard a +whispering at my door. I went to it softly and listened. Unless my ears +deceived me, I heard the voice of the Count:-- + +“Back, back, to your own place! Your time is not yet come. Wait! Have +patience! To-night is mine. To-morrow night is yours!” There was a low, +sweet ripple of laughter, and in a rage I threw open the door, and saw +without the three terrible women licking their lips. As I appeared they +all joined in a horrible laugh, and ran away. + +I came back to my room and threw myself on my knees. It is then so near +the end? To-morrow! to-morrow! Lord, help me, and those to whom I am +dear! + + * * * * * + +_30 June, morning._--These may be the last words I ever write in this +diary. I slept till just before the dawn, and when I woke threw myself +on my knees, for I determined that if Death came he should find me +ready. + +At last I felt that subtle change in the air, and knew that the morning +had come. Then came the welcome cock-crow, and I felt that I was safe. +With a glad heart, I opened my door and ran down to the hall. I had seen +that the door was unlocked, and now escape was before me. With hands +that trembled with eagerness, I unhooked the chains and drew back the +massive bolts. + +But the door would not move. Despair seized me. I pulled, and pulled, at +the door, and shook it till, massive as it was, it rattled in its +casement. I could see the bolt shot. It had been locked after I left the +Count. + +Then a wild desire took me to obtain that key at any risk, and I +determined then and there to scale the wall again and gain the Count’s +room. He might kill me, but death now seemed the happier choice of +evils. Without a pause I rushed up to the east window, and scrambled +down the wall, as before, into the Count’s room. It was empty, but that +was as I expected. I could not see a key anywhere, but the heap of gold +remained. I went through the door in the corner and down the winding +stair and along the dark passage to the old chapel. I knew now well +enough where to find the monster I sought. + +The great box was in the same place, close against the wall, but the lid +was laid on it, not fastened down, but with the nails ready in their +places to be hammered home. I knew I must reach the body for the key, so +I raised the lid, and laid it back against the wall; and then I saw +something which filled my very soul with horror. There lay the Count, +but looking as if his youth had been half renewed, for the white hair +and moustache were changed to dark iron-grey; the cheeks were fuller, +and the white skin seemed ruby-red underneath; the mouth was redder than +ever, for on the lips were gouts of fresh blood, which trickled from the +corners of the mouth and ran over the chin and neck. Even the deep, +burning eyes seemed set amongst swollen flesh, for the lids and pouches +underneath were bloated. It seemed as if the whole awful creature were +simply gorged with blood. He lay like a filthy leech, exhausted with his +repletion. I shuddered as I bent over to touch him, and every sense in +me revolted at the contact; but I had to search, or I was lost. The +coming night might see my own body a banquet in a similar way to those +horrid three. I felt all over the body, but no sign could I find of the +key. Then I stopped and looked at the Count. There was a mocking smile +on the bloated face which seemed to drive me mad. This was the being I +was helping to transfer to London, where, perhaps, for centuries to come +he might, amongst its teeming millions, satiate his lust for blood, and +create a new and ever-widening circle of semi-demons to batten on the +helpless. The very thought drove me mad. A terrible desire came upon me +to rid the world of such a monster. There was no lethal weapon at hand, +but I seized a shovel which the workmen had been using to fill the +cases, and lifting it high, struck, with the edge downward, at the +hateful face. But as I did so the head turned, and the eyes fell full +upon me, with all their blaze of basilisk horror. The sight seemed to +paralyse me, and the shovel turned in my hand and glanced from the face, +merely making a deep gash above the forehead. The shovel fell from my +hand across the box, and as I pulled it away the flange of the blade +caught the edge of the lid which fell over again, and hid the horrid +thing from my sight. The last glimpse I had was of the bloated face, +blood-stained and fixed with a grin of malice which would have held its +own in the nethermost hell. + +I thought and thought what should be my next move, but my brain seemed +on fire, and I waited with a despairing feeling growing over me. As I +waited I heard in the distance a gipsy song sung by merry voices coming +closer, and through their song the rolling of heavy wheels and the +cracking of whips; the Szgany and the Slovaks of whom the Count had +spoken were coming. With a last look around and at the box which +contained the vile body, I ran from the place and gained the Count’s +room, determined to rush out at the moment the door should be opened. +With strained ears, I listened, and heard downstairs the grinding of the +key in the great lock and the falling back of the heavy door. There must +have been some other means of entry, or some one had a key for one of +the locked doors. Then there came the sound of many feet tramping and +dying away in some passage which sent up a clanging echo. I turned to +run down again towards the vault, where I might find the new entrance; +but at the moment there seemed to come a violent puff of wind, and the +door to the winding stair blew to with a shock that set the dust from +the lintels flying. When I ran to push it open, I found that it was +hopelessly fast. I was again a prisoner, and the net of doom was closing +round me more closely. + +As I write there is in the passage below a sound of many tramping feet +and the crash of weights being set down heavily, doubtless the boxes, +with their freight of earth. There is a sound of hammering; it is the +box being nailed down. Now I can hear the heavy feet tramping again +along the hall, with many other idle feet coming behind them. + +The door is shut, and the chains rattle; there is a grinding of the key +in the lock; I can hear the key withdraw: then another door opens and +shuts; I hear the creaking of lock and bolt. + +Hark! in the courtyard and down the rocky way the roll of heavy wheels, +the crack of whips, and the chorus of the Szgany as they pass into the +distance. + +I am alone in the castle with those awful women. Faugh! Mina is a woman, +and there is nought in common. They are devils of the Pit! + +I shall not remain alone with them; I shall try to scale the castle wall +farther than I have yet attempted. I shall take some of the gold with +me, lest I want it later. I may find a way from this dreadful place. + +And then away for home! away to the quickest and nearest train! away +from this cursed spot, from this cursed land, where the devil and his +children still walk with earthly feet! + +At least God’s mercy is better than that of these monsters, and the +precipice is steep and high. At its foot a man may sleep--as a man. +Good-bye, all! Mina! + + + + +CHAPTER V + +_Letter from Miss Mina Murray to Miss Lucy Westenra._ + + +“_9 May._ + +“My dearest Lucy,-- + +“Forgive my long delay in writing, but I have been simply overwhelmed +with work. The life of an assistant schoolmistress is sometimes trying. +I am longing to be with you, and by the sea, where we can talk together +freely and build our castles in the air. I have been working very hard +lately, because I want to keep up with Jonathan’s studies, and I have +been practising shorthand very assiduously. When we are married I shall +be able to be useful to Jonathan, and if I can stenograph well enough I +can take down what he wants to say in this way and write it out for +him on the typewriter, at which also I am practising very hard. He +and I sometimes write letters in shorthand, and he is keeping a +stenographic journal of his travels abroad. When I am with you I +shall keep a diary in the same way. I don’t mean one of those +two-pages-to-the-week-with-Sunday-squeezed-in-a-corner diaries, but a +sort of journal which I can write in whenever I feel inclined. I do not +suppose there will be much of interest to other people; but it is not +intended for them. I may show it to Jonathan some day if there is in it +anything worth sharing, but it is really an exercise book. I shall try +to do what I see lady journalists do: interviewing and writing +descriptions and trying to remember conversations. I am told that, with +a little practice, one can remember all that goes on or that one hears +said during a day. However, we shall see. I will tell you of my little +plans when we meet. I have just had a few hurried lines from Jonathan +from Transylvania. He is well, and will be returning in about a week. I +am longing to hear all his news. It must be so nice to see strange +countries. I wonder if we--I mean Jonathan and I--shall ever see them +together. There is the ten o’clock bell ringing. Good-bye. + +“Your loving + +“MINA. + +“Tell me all the news when you write. You have not told me anything for +a long time. I hear rumours, and especially of a tall, handsome, +curly-haired man???” + + +_Letter, Lucy Westenra to Mina Murray_. + +“_17, Chatham Street_, + +“_Wednesday_. + +“My dearest Mina,-- + +“I must say you tax me _very_ unfairly with being a bad correspondent. I +wrote to you _twice_ since we parted, and your last letter was only your +_second_. Besides, I have nothing to tell you. There is really nothing +to interest you. Town is very pleasant just now, and we go a good deal +to picture-galleries and for walks and rides in the park. As to the +tall, curly-haired man, I suppose it was the one who was with me at the +last Pop. Some one has evidently been telling tales. That was Mr. +Holmwood. He often comes to see us, and he and mamma get on very well +together; they have so many things to talk about in common. We met some +time ago a man that would just _do for you_, if you were not already +engaged to Jonathan. He is an excellent _parti_, being handsome, well +off, and of good birth. He is a doctor and really clever. Just fancy! He +is only nine-and-twenty, and he has an immense lunatic asylum all under +his own care. Mr. Holmwood introduced him to me, and he called here to +see us, and often comes now. I think he is one of the most resolute men +I ever saw, and yet the most calm. He seems absolutely imperturbable. I +can fancy what a wonderful power he must have over his patients. He has +a curious habit of looking one straight in the face, as if trying to +read one’s thoughts. He tries this on very much with me, but I flatter +myself he has got a tough nut to crack. I know that from my glass. Do +you ever try to read your own face? _I do_, and I can tell you it is not +a bad study, and gives you more trouble than you can well fancy if you +have never tried it. He says that I afford him a curious psychological +study, and I humbly think I do. I do not, as you know, take sufficient +interest in dress to be able to describe the new fashions. Dress is a +bore. That is slang again, but never mind; Arthur says that every day. +There, it is all out. Mina, we have told all our secrets to each other +since we were _children_; we have slept together and eaten together, and +laughed and cried together; and now, though I have spoken, I would like +to speak more. Oh, Mina, couldn’t you guess? I love him. I am blushing +as I write, for although I _think_ he loves me, he has not told me so in +words. But oh, Mina, I love him; I love him; I love him! There, that +does me good. I wish I were with you, dear, sitting by the fire +undressing, as we used to sit; and I would try to tell you what I feel. +I do not know how I am writing this even to you. I am afraid to stop, +or I should tear up the letter, and I don’t want to stop, for I _do_ so +want to tell you all. Let me hear from you _at once_, and tell me all +that you think about it. Mina, I must stop. Good-night. Bless me in your +prayers; and, Mina, pray for my happiness. + +“LUCY. + +“P.S.--I need not tell you this is a secret. Good-night again. + +“L.” + +_Letter, Lucy Westenra to Mina Murray_. + +“_24 May_. + +“My dearest Mina,-- + +“Thanks, and thanks, and thanks again for your sweet letter. It was so +nice to be able to tell you and to have your sympathy. + +“My dear, it never rains but it pours. How true the old proverbs are. +Here am I, who shall be twenty in September, and yet I never had a +proposal till to-day, not a real proposal, and to-day I have had three. +Just fancy! THREE proposals in one day! Isn’t it awful! I feel sorry, +really and truly sorry, for two of the poor fellows. Oh, Mina, I am so +happy that I don’t know what to do with myself. And three proposals! +But, for goodness’ sake, don’t tell any of the girls, or they would be +getting all sorts of extravagant ideas and imagining themselves injured +and slighted if in their very first day at home they did not get six at +least. Some girls are so vain! You and I, Mina dear, who are engaged and +are going to settle down soon soberly into old married women, can +despise vanity. Well, I must tell you about the three, but you must keep +it a secret, dear, from _every one_, except, of course, Jonathan. You +will tell him, because I would, if I were in your place, certainly tell +Arthur. A woman ought to tell her husband everything--don’t you think +so, dear?--and I must be fair. Men like women, certainly their wives, to +be quite as fair as they are; and women, I am afraid, are not always +quite as fair as they should be. Well, my dear, number One came just +before lunch. I told you of him, Dr. John Seward, the lunatic-asylum +man, with the strong jaw and the good forehead. He was very cool +outwardly, but was nervous all the same. He had evidently been schooling +himself as to all sorts of little things, and remembered them; but he +almost managed to sit down on his silk hat, which men don’t generally do +when they are cool, and then when he wanted to appear at ease he kept +playing with a lancet in a way that made me nearly scream. He spoke to +me, Mina, very straightforwardly. He told me how dear I was to him, +though he had known me so little, and what his life would be with me to +help and cheer him. He was going to tell me how unhappy he would be if I +did not care for him, but when he saw me cry he said that he was a brute +and would not add to my present trouble. Then he broke off and asked if +I could love him in time; and when I shook my head his hands trembled, +and then with some hesitation he asked me if I cared already for any one +else. He put it very nicely, saying that he did not want to wring my +confidence from me, but only to know, because if a woman’s heart was +free a man might have hope. And then, Mina, I felt a sort of duty to +tell him that there was some one. I only told him that much, and then he +stood up, and he looked very strong and very grave as he took both my +hands in his and said he hoped I would be happy, and that if I ever +wanted a friend I must count him one of my best. Oh, Mina dear, I can’t +help crying: and you must excuse this letter being all blotted. Being +proposed to is all very nice and all that sort of thing, but it isn’t at +all a happy thing when you have to see a poor fellow, whom you know +loves you honestly, going away and looking all broken-hearted, and to +know that, no matter what he may say at the moment, you are passing +quite out of his life. My dear, I must stop here at present, I feel so +miserable, though I am so happy. + +“_Evening._ + +“Arthur has just gone, and I feel in better spirits than when I left +off, so I can go on telling you about the day. Well, my dear, number Two +came after lunch. He is such a nice fellow, an American from Texas, and +he looks so young and so fresh that it seems almost impossible that he +has been to so many places and has had such adventures. I sympathise +with poor Desdemona when she had such a dangerous stream poured in her +ear, even by a black man. I suppose that we women are such cowards that +we think a man will save us from fears, and we marry him. I know now +what I would do if I were a man and wanted to make a girl love me. No, I +don’t, for there was Mr. Morris telling us his stories, and Arthur never +told any, and yet---- My dear, I am somewhat previous. Mr. Quincey P. +Morris found me alone. It seems that a man always does find a girl +alone. No, he doesn’t, for Arthur tried twice to _make_ a chance, and I +helping him all I could; I am not ashamed to say it now. I must tell you +beforehand that Mr. Morris doesn’t always speak slang--that is to say, +he never does so to strangers or before them, for he is really well +educated and has exquisite manners--but he found out that it amused me +to hear him talk American slang, and whenever I was present, and there +was no one to be shocked, he said such funny things. I am afraid, my +dear, he has to invent it all, for it fits exactly into whatever else he +has to say. But this is a way slang has. I do not know myself if I shall +ever speak slang; I do not know if Arthur likes it, as I have never +heard him use any as yet. Well, Mr. Morris sat down beside me and looked +as happy and jolly as he could, but I could see all the same that he was +very nervous. He took my hand in his, and said ever so sweetly:-- + +“‘Miss Lucy, I know I ain’t good enough to regulate the fixin’s of your +little shoes, but I guess if you wait till you find a man that is you +will go join them seven young women with the lamps when you quit. Won’t +you just hitch up alongside of me and let us go down the long road +together, driving in double harness?’ + +“Well, he did look so good-humoured and so jolly that it didn’t seem +half so hard to refuse him as it did poor Dr. Seward; so I said, as +lightly as I could, that I did not know anything of hitching, and that I +wasn’t broken to harness at all yet. Then he said that he had spoken in +a light manner, and he hoped that if he had made a mistake in doing so +on so grave, so momentous, an occasion for him, I would forgive him. He +really did look serious when he was saying it, and I couldn’t help +feeling a bit serious too--I know, Mina, you will think me a horrid +flirt--though I couldn’t help feeling a sort of exultation that he was +number two in one day. And then, my dear, before I could say a word he +began pouring out a perfect torrent of love-making, laying his very +heart and soul at my feet. He looked so earnest over it that I shall +never again think that a man must be playful always, and never earnest, +because he is merry at times. I suppose he saw something in my face +which checked him, for he suddenly stopped, and said with a sort of +manly fervour that I could have loved him for if I had been free:-- + +“‘Lucy, you are an honest-hearted girl, I know. I should not be here +speaking to you as I am now if I did not believe you clean grit, right +through to the very depths of your soul. Tell me, like one good fellow +to another, is there any one else that you care for? And if there is +I’ll never trouble you a hair’s breadth again, but will be, if you will +let me, a very faithful friend.’ + +“My dear Mina, why are men so noble when we women are so little worthy +of them? Here was I almost making fun of this great-hearted, true +gentleman. I burst into tears--I am afraid, my dear, you will think +this a very sloppy letter in more ways than one--and I really felt very +badly. Why can’t they let a girl marry three men, or as many as want +her, and save all this trouble? But this is heresy, and I must not say +it. I am glad to say that, though I was crying, I was able to look into +Mr. Morris’s brave eyes, and I told him out straight:-- + +“‘Yes, there is some one I love, though he has not told me yet that he +even loves me.’ I was right to speak to him so frankly, for quite a +light came into his face, and he put out both his hands and took mine--I +think I put them into his--and said in a hearty way:-- + +“‘That’s my brave girl. It’s better worth being late for a chance of +winning you than being in time for any other girl in the world. Don’t +cry, my dear. If it’s for me, I’m a hard nut to crack; and I take it +standing up. If that other fellow doesn’t know his happiness, well, he’d +better look for it soon, or he’ll have to deal with me. Little girl, +your honesty and pluck have made me a friend, and that’s rarer than a +lover; it’s more unselfish anyhow. My dear, I’m going to have a pretty +lonely walk between this and Kingdom Come. Won’t you give me one kiss? +It’ll be something to keep off the darkness now and then. You can, you +know, if you like, for that other good fellow--he must be a good fellow, +my dear, and a fine fellow, or you could not love him--hasn’t spoken +yet.’ That quite won me, Mina, for it _was_ brave and sweet of him, and +noble, too, to a rival--wasn’t it?--and he so sad; so I leant over and +kissed him. He stood up with my two hands in his, and as he looked down +into my face--I am afraid I was blushing very much--he said:-- + +“‘Little girl, I hold your hand, and you’ve kissed me, and if these +things don’t make us friends nothing ever will. Thank you for your sweet +honesty to me, and good-bye.’ He wrung my hand, and taking up his hat, +went straight out of the room without looking back, without a tear or a +quiver or a pause; and I am crying like a baby. Oh, why must a man like +that be made unhappy when there are lots of girls about who would +worship the very ground he trod on? I know I would if I were free--only +I don’t want to be free. My dear, this quite upset me, and I feel I +cannot write of happiness just at once, after telling you of it; and I +don’t wish to tell of the number three until it can be all happy. + +“Ever your loving + +“LUCY. + +“P.S.--Oh, about number Three--I needn’t tell you of number Three, need +I? Besides, it was all so confused; it seemed only a moment from his +coming into the room till both his arms were round me, and he was +kissing me. I am very, very happy, and I don’t know what I have done to +deserve it. I must only try in the future to show that I am not +ungrateful to God for all His goodness to me in sending to me such a +lover, such a husband, and such a friend. + +“Good-bye.” + + +_Dr. Seward’s Diary._ + +(Kept in phonograph) + +_25 May._--Ebb tide in appetite to-day. Cannot eat, cannot rest, so +diary instead. Since my rebuff of yesterday I have a sort of empty +feeling; nothing in the world seems of sufficient importance to be worth +the doing.... As I knew that the only cure for this sort of thing was +work, I went down amongst the patients. I picked out one who has +afforded me a study of much interest. He is so quaint that I am +determined to understand him as well as I can. To-day I seemed to get +nearer than ever before to the heart of his mystery. + +I questioned him more fully than I had ever done, with a view to making +myself master of the facts of his hallucination. In my manner of doing +it there was, I now see, something of cruelty. I seemed to wish to keep +him to the point of his madness--a thing which I avoid with the patients +as I would the mouth of hell. + +(_Mem._, under what circumstances would I _not_ avoid the pit of hell?) +_Omnia Romæ venalia sunt._ Hell has its price! _verb. sap._ If there be +anything behind this instinct it will be valuable to trace it afterwards +_accurately_, so I had better commence to do so, therefore-- + +R. M. Renfield, ætat 59.--Sanguine temperament; great physical strength; +morbidly excitable; periods of gloom, ending in some fixed idea which I +cannot make out. I presume that the sanguine temperament itself and the +disturbing influence end in a mentally-accomplished finish; a possibly +dangerous man, probably dangerous if unselfish. In selfish men caution +is as secure an armour for their foes as for themselves. What I think of +on this point is, when self is the fixed point the centripetal force is +balanced with the centrifugal; when duty, a cause, etc., is the fixed +point, the latter force is paramount, and only accident or a series of +accidents can balance it. + + +_Letter, Quincey P. Morris to Hon. Arthur Holmwood._ + +“_25 May._ + +“My dear Art,-- + +“We’ve told yarns by the camp-fire in the prairies; and dressed one +another’s wounds after trying a landing at the Marquesas; and drunk +healths on the shore of Titicaca. There are more yarns to be told, and +other wounds to be healed, and another health to be drunk. Won’t you let +this be at my camp-fire to-morrow night? I have no hesitation in asking +you, as I know a certain lady is engaged to a certain dinner-party, and +that you are free. There will only be one other, our old pal at the +Korea, Jack Seward. He’s coming, too, and we both want to mingle our +weeps over the wine-cup, and to drink a health with all our hearts to +the happiest man in all the wide world, who has won the noblest heart +that God has made and the best worth winning. We promise you a hearty +welcome, and a loving greeting, and a health as true as your own right +hand. We shall both swear to leave you at home if you drink too deep to +a certain pair of eyes. Come! + +“Yours, as ever and always, + +“QUINCEY P. MORRIS.” + + +_Telegram from Arthur Holmwood to Quincey P. Morris._ + +“_26 May._ + +“Count me in every time. I bear messages which will make both your ears +tingle. + +“ART.” + + + + +CHAPTER VI + +MINA MURRAY’S JOURNAL + + +_24 July. Whitby._--Lucy met me at the station, looking sweeter and +lovelier than ever, and we drove up to the house at the Crescent in +which they have rooms. This is a lovely place. The little river, the +Esk, runs through a deep valley, which broadens out as it comes near the +harbour. A great viaduct runs across, with high piers, through which the +view seems somehow further away than it really is. The valley is +beautifully green, and it is so steep that when you are on the high land +on either side you look right across it, unless you are near enough to +see down. The houses of the old town--the side away from us--are all +red-roofed, and seem piled up one over the other anyhow, like the +pictures we see of Nuremberg. Right over the town is the ruin of Whitby +Abbey, which was sacked by the Danes, and which is the scene of part of +“Marmion,” where the girl was built up in the wall. It is a most noble +ruin, of immense size, and full of beautiful and romantic bits; there is +a legend that a white lady is seen in one of the windows. Between it and +the town there is another church, the parish one, round which is a big +graveyard, all full of tombstones. This is to my mind the nicest spot in +Whitby, for it lies right over the town, and has a full view of the +harbour and all up the bay to where the headland called Kettleness +stretches out into the sea. It descends so steeply over the harbour that +part of the bank has fallen away, and some of the graves have been +destroyed. In one place part of the stonework of the graves stretches +out over the sandy pathway far below. There are walks, with seats beside +them, through the churchyard; and people go and sit there all day long +looking at the beautiful view and enjoying the breeze. I shall come and +sit here very often myself and work. Indeed, I am writing now, with my +book on my knee, and listening to the talk of three old men who are +sitting beside me. They seem to do nothing all day but sit up here and +talk. + +The harbour lies below me, with, on the far side, one long granite wall +stretching out into the sea, with a curve outwards at the end of it, in +the middle of which is a lighthouse. A heavy sea-wall runs along outside +of it. On the near side, the sea-wall makes an elbow crooked inversely, +and its end too has a lighthouse. Between the two piers there is a +narrow opening into the harbour, which then suddenly widens. + +It is nice at high water; but when the tide is out it shoals away to +nothing, and there is merely the stream of the Esk, running between +banks of sand, with rocks here and there. Outside the harbour on this +side there rises for about half a mile a great reef, the sharp edge of +which runs straight out from behind the south lighthouse. At the end of +it is a buoy with a bell, which swings in bad weather, and sends in a +mournful sound on the wind. They have a legend here that when a ship is +lost bells are heard out at sea. I must ask the old man about this; he +is coming this way.... + +He is a funny old man. He must be awfully old, for his face is all +gnarled and twisted like the bark of a tree. He tells me that he is +nearly a hundred, and that he was a sailor in the Greenland fishing +fleet when Waterloo was fought. He is, I am afraid, a very sceptical +person, for when I asked him about the bells at sea and the White Lady +at the abbey he said very brusquely:-- + +“I wouldn’t fash masel’ about them, miss. Them things be all wore out. +Mind, I don’t say that they never was, but I do say that they wasn’t in +my time. They be all very well for comers and trippers, an’ the like, +but not for a nice young lady like you. Them feet-folks from York and +Leeds that be always eatin’ cured herrin’s an’ drinkin’ tea an’ lookin’ +out to buy cheap jet would creed aught. I wonder masel’ who’d be +bothered tellin’ lies to them--even the newspapers, which is full of +fool-talk.” I thought he would be a good person to learn interesting +things from, so I asked him if he would mind telling me something about +the whale-fishing in the old days. He was just settling himself to begin +when the clock struck six, whereupon he laboured to get up, and said:-- + +“I must gang ageeanwards home now, miss. My grand-daughter doesn’t like +to be kept waitin’ when the tea is ready, for it takes me time to +crammle aboon the grees, for there be a many of ’em; an’, miss, I lack +belly-timber sairly by the clock.” + +He hobbled away, and I could see him hurrying, as well as he could, down +the steps. The steps are a great feature on the place. They lead from +the town up to the church, there are hundreds of them--I do not know how +many--and they wind up in a delicate curve; the slope is so gentle that +a horse could easily walk up and down them. I think they must originally +have had something to do with the abbey. I shall go home too. Lucy went +out visiting with her mother, and as they were only duty calls, I did +not go. They will be home by this. + + * * * * * + +_1 August._--I came up here an hour ago with Lucy, and we had a most +interesting talk with my old friend and the two others who always come +and join him. He is evidently the Sir Oracle of them, and I should think +must have been in his time a most dictatorial person. He will not admit +anything, and downfaces everybody. If he can’t out-argue them he bullies +them, and then takes their silence for agreement with his views. Lucy +was looking sweetly pretty in her white lawn frock; she has got a +beautiful colour since she has been here. I noticed that the old men did +not lose any time in coming up and sitting near her when we sat down. +She is so sweet with old people; I think they all fell in love with her +on the spot. Even my old man succumbed and did not contradict her, but +gave me double share instead. I got him on the subject of the legends, +and he went off at once into a sort of sermon. I must try to remember it +and put it down:-- + +“It be all fool-talk, lock, stock, and barrel; that’s what it be, an’ +nowt else. These bans an’ wafts an’ boh-ghosts an’ barguests an’ bogles +an’ all anent them is only fit to set bairns an’ dizzy women +a-belderin’. They be nowt but air-blebs. They, an’ all grims an’ signs +an’ warnin’s, be all invented by parsons an’ illsome beuk-bodies an’ +railway touters to skeer an’ scunner hafflin’s, an’ to get folks to do +somethin’ that they don’t other incline to. It makes me ireful to think +o’ them. Why, it’s them that, not content with printin’ lies on paper +an’ preachin’ them out of pulpits, does want to be cuttin’ them on the +tombstones. Look here all around you in what airt ye will; all them +steans, holdin’ up their heads as well as they can out of their pride, +is acant--simply tumblin’ down with the weight o’ the lies wrote on +them, ‘Here lies the body’ or ‘Sacred to the memory’ wrote on all of +them, an’ yet in nigh half of them there bean’t no bodies at all; an’ +the memories of them bean’t cared a pinch of snuff about, much less +sacred. Lies all of them, nothin’ but lies of one kind or another! My +gog, but it’ll be a quare scowderment at the Day of Judgment when they +come tumblin’ up in their death-sarks, all jouped together an’ tryin’ to +drag their tombsteans with them to prove how good they was; some of them +trimmlin’ and ditherin’, with their hands that dozzened an’ slippy from +lyin’ in the sea that they can’t even keep their grup o’ them.” + +I could see from the old fellow’s self-satisfied air and the way in +which he looked round for the approval of his cronies that he was +“showing off,” so I put in a word to keep him going:-- + +“Oh, Mr. Swales, you can’t be serious. Surely these tombstones are not +all wrong?” + +“Yabblins! There may be a poorish few not wrong, savin’ where they make +out the people too good; for there be folk that do think a balm-bowl be +like the sea, if only it be their own. The whole thing be only lies. Now +look you here; you come here a stranger, an’ you see this kirk-garth.” I +nodded, for I thought it better to assent, though I did not quite +understand his dialect. I knew it had something to do with the church. +He went on: “And you consate that all these steans be aboon folk that be +happed here, snod an’ snog?” I assented again. “Then that be just where +the lie comes in. Why, there be scores of these lay-beds that be toom as +old Dun’s ’bacca-box on Friday night.” He nudged one of his companions, +and they all laughed. “And my gog! how could they be otherwise? Look at +that one, the aftest abaft the bier-bank: read it!” I went over and +read:-- + +“Edward Spencelagh, master mariner, murdered by pirates off the coast of +Andres, April, 1854, æt. 30.” When I came back Mr. Swales went on:-- + +“Who brought him home, I wonder, to hap him here? Murdered off the coast +of Andres! an’ you consated his body lay under! Why, I could name ye a +dozen whose bones lie in the Greenland seas above”--he pointed +northwards--“or where the currents may have drifted them. There be the +steans around ye. Ye can, with your young eyes, read the small-print of +the lies from here. This Braithwaite Lowrey--I knew his father, lost in +the _Lively_ off Greenland in ’20; or Andrew Woodhouse, drowned in the +same seas in 1777; or John Paxton, drowned off Cape Farewell a year +later; or old John Rawlings, whose grandfather sailed with me, drowned +in the Gulf of Finland in ’50. Do ye think that all these men will have +to make a rush to Whitby when the trumpet sounds? I have me antherums +aboot it! I tell ye that when they got here they’d be jommlin’ an’ +jostlin’ one another that way that it ’ud be like a fight up on the ice +in the old days, when we’d be at one another from daylight to dark, an’ +tryin’ to tie up our cuts by the light of the aurora borealis.” This was +evidently local pleasantry, for the old man cackled over it, and his +cronies joined in with gusto. + +“But,” I said, “surely you are not quite correct, for you start on the +assumption that all the poor people, or their spirits, will have to +take their tombstones with them on the Day of Judgment. Do you think +that will be really necessary?” + +“Well, what else be they tombstones for? Answer me that, miss!” + +“To please their relatives, I suppose.” + +“To please their relatives, you suppose!” This he said with intense +scorn. “How will it pleasure their relatives to know that lies is wrote +over them, and that everybody in the place knows that they be lies?” He +pointed to a stone at our feet which had been laid down as a slab, on +which the seat was rested, close to the edge of the cliff. “Read the +lies on that thruff-stean,” he said. The letters were upside down to me +from where I sat, but Lucy was more opposite to them, so she leant over +and read:-- + +“Sacred to the memory of George Canon, who died, in the hope of a +glorious resurrection, on July, 29, 1873, falling from the rocks at +Kettleness. This tomb was erected by his sorrowing mother to her dearly +beloved son. ‘He was the only son of his mother, and she was a widow.’ +Really, Mr. Swales, I don’t see anything very funny in that!” She spoke +her comment very gravely and somewhat severely. + +“Ye don’t see aught funny! Ha! ha! But that’s because ye don’t gawm the +sorrowin’ mother was a hell-cat that hated him because he was +acrewk’d--a regular lamiter he was--an’ he hated her so that he +committed suicide in order that she mightn’t get an insurance she put on +his life. He blew nigh the top of his head off with an old musket that +they had for scarin’ the crows with. ’Twarn’t for crows then, for it +brought the clegs and the dowps to him. That’s the way he fell off the +rocks. And, as to hopes of a glorious resurrection, I’ve often heard him +say masel’ that he hoped he’d go to hell, for his mother was so pious +that she’d be sure to go to heaven, an’ he didn’t want to addle where +she was. Now isn’t that stean at any rate”--he hammered it with his +stick as he spoke--“a pack of lies? and won’t it make Gabriel keckle +when Geordie comes pantin’ up the grees with the tombstean balanced on +his hump, and asks it to be took as evidence!” + +I did not know what to say, but Lucy turned the conversation as she +said, rising up:-- + +“Oh, why did you tell us of this? It is my favourite seat, and I cannot +leave it; and now I find I must go on sitting over the grave of a +suicide.” + +“That won’t harm ye, my pretty; an’ it may make poor Geordie gladsome to +have so trim a lass sittin’ on his lap. That won’t hurt ye. Why, I’ve +sat here off an’ on for nigh twenty years past, an’ it hasn’t done me +no harm. Don’t ye fash about them as lies under ye, or that doesn’ lie +there either! It’ll be time for ye to be getting scart when ye see the +tombsteans all run away with, and the place as bare as a stubble-field. +There’s the clock, an’ I must gang. My service to ye, ladies!” And off +he hobbled. + +Lucy and I sat awhile, and it was all so beautiful before us that we +took hands as we sat; and she told me all over again about Arthur and +their coming marriage. That made me just a little heart-sick, for I +haven’t heard from Jonathan for a whole month. + + * * * * * + +_The same day._ I came up here alone, for I am very sad. There was no +letter for me. I hope there cannot be anything the matter with Jonathan. +The clock has just struck nine. I see the lights scattered all over the +town, sometimes in rows where the streets are, and sometimes singly; +they run right up the Esk and die away in the curve of the valley. To my +left the view is cut off by a black line of roof of the old house next +the abbey. The sheep and lambs are bleating in the fields away behind +me, and there is a clatter of a donkey’s hoofs up the paved road below. +The band on the pier is playing a harsh waltz in good time, and further +along the quay there is a Salvation Army meeting in a back street. +Neither of the bands hears the other, but up here I hear and see them +both. I wonder where Jonathan is and if he is thinking of me! I wish he +were here. + + +_Dr. Seward’s Diary._ + +_5 June._--The case of Renfield grows more interesting the more I get to +understand the man. He has certain qualities very largely developed; +selfishness, secrecy, and purpose. I wish I could get at what is the +object of the latter. He seems to have some settled scheme of his own, +but what it is I do not yet know. His redeeming quality is a love of +animals, though, indeed, he has such curious turns in it that I +sometimes imagine he is only abnormally cruel. His pets are of odd +sorts. Just now his hobby is catching flies. He has at present such a +quantity that I have had myself to expostulate. To my astonishment, he +did not break out into a fury, as I expected, but took the matter in +simple seriousness. He thought for a moment, and then said: “May I have +three days? I shall clear them away.” Of course, I said that would do. I +must watch him. + + * * * * * + +_18 June._--He has turned his mind now to spiders, and has got several +very big fellows in a box. He keeps feeding them with his flies, and +the number of the latter is becoming sensibly diminished, although he +has used half his food in attracting more flies from outside to his +room. + + * * * * * + +_1 July._--His spiders are now becoming as great a nuisance as his +flies, and to-day I told him that he must get rid of them. He looked +very sad at this, so I said that he must clear out some of them, at all +events. He cheerfully acquiesced in this, and I gave him the same time +as before for reduction. He disgusted me much while with him, for when a +horrid blow-fly, bloated with some carrion food, buzzed into the room, +he caught it, held it exultantly for a few moments between his finger +and thumb, and, before I knew what he was going to do, put it in his +mouth and ate it. I scolded him for it, but he argued quietly that it +was very good and very wholesome; that it was life, strong life, and +gave life to him. This gave me an idea, or the rudiment of one. I must +watch how he gets rid of his spiders. He has evidently some deep problem +in his mind, for he keeps a little note-book in which he is always +jotting down something. Whole pages of it are filled with masses of +figures, generally single numbers added up in batches, and then the +totals added in batches again, as though he were “focussing” some +account, as the auditors put it. + + * * * * * + +_8 July._--There is a method in his madness, and the rudimentary idea in +my mind is growing. It will be a whole idea soon, and then, oh, +unconscious cerebration! you will have to give the wall to your +conscious brother. I kept away from my friend for a few days, so that I +might notice if there were any change. Things remain as they were except +that he has parted with some of his pets and got a new one. He has +managed to get a sparrow, and has already partially tamed it. His means +of taming is simple, for already the spiders have diminished. Those that +do remain, however, are well fed, for he still brings in the flies by +tempting them with his food. + + * * * * * + +_19 July._--We are progressing. My friend has now a whole colony of +sparrows, and his flies and spiders are almost obliterated. When I came +in he ran to me and said he wanted to ask me a great favour--a very, +very great favour; and as he spoke he fawned on me like a dog. I asked +him what it was, and he said, with a sort of rapture in his voice and +bearing:-- + +“A kitten, a nice little, sleek playful kitten, that I can play with, +and teach, and feed--and feed--and feed!” I was not unprepared for this +request, for I had noticed how his pets went on increasing in size and +vivacity, but I did not care that his pretty family of tame sparrows +should be wiped out in the same manner as the flies and the spiders; so +I said I would see about it, and asked him if he would not rather have a +cat than a kitten. His eagerness betrayed him as he answered:-- + +“Oh, yes, I would like a cat! I only asked for a kitten lest you should +refuse me a cat. No one would refuse me a kitten, would they?” I shook +my head, and said that at present I feared it would not be possible, but +that I would see about it. His face fell, and I could see a warning of +danger in it, for there was a sudden fierce, sidelong look which meant +killing. The man is an undeveloped homicidal maniac. I shall test him +with his present craving and see how it will work out; then I shall know +more. + + * * * * * + +_10 p. m._--I have visited him again and found him sitting in a corner +brooding. When I came in he threw himself on his knees before me and +implored me to let him have a cat; that his salvation depended upon it. +I was firm, however, and told him that he could not have it, whereupon +he went without a word, and sat down, gnawing his fingers, in the corner +where I had found him. I shall see him in the morning early. + + * * * * * + +_20 July._--Visited Renfield very early, before the attendant went his +rounds. Found him up and humming a tune. He was spreading out his sugar, +which he had saved, in the window, and was manifestly beginning his +fly-catching again; and beginning it cheerfully and with a good grace. I +looked around for his birds, and not seeing them, asked him where they +were. He replied, without turning round, that they had all flown away. +There were a few feathers about the room and on his pillow a drop of +blood. I said nothing, but went and told the keeper to report to me if +there were anything odd about him during the day. + + * * * * * + +_11 a. m._--The attendant has just been to me to say that Renfield has +been very sick and has disgorged a whole lot of feathers. “My belief is, +doctor,” he said, “that he has eaten his birds, and that he just took +and ate them raw!” + + * * * * * + +_11 p. m._--I gave Renfield a strong opiate to-night, enough to make +even him sleep, and took away his pocket-book to look at it. The thought +that has been buzzing about my brain lately is complete, and the theory +proved. My homicidal maniac is of a peculiar kind. I shall have to +invent a new classification for him, and call him a zoöphagous +(life-eating) maniac; what he desires is to absorb as many lives as he +can, and he has laid himself out to achieve it in a cumulative way. He +gave many flies to one spider and many spiders to one bird, and then +wanted a cat to eat the many birds. What would have been his later +steps? It would almost be worth while to complete the experiment. It +might be done if there were only a sufficient cause. Men sneered at +vivisection, and yet look at its results to-day! Why not advance science +in its most difficult and vital aspect--the knowledge of the brain? Had +I even the secret of one such mind--did I hold the key to the fancy of +even one lunatic--I might advance my own branch of science to a pitch +compared with which Burdon-Sanderson’s physiology or Ferrier’s +brain-knowledge would be as nothing. If only there were a sufficient +cause! I must not think too much of this, or I may be tempted; a good +cause might turn the scale with me, for may not I too be of an +exceptional brain, congenitally? + +How well the man reasoned; lunatics always do within their own scope. I +wonder at how many lives he values a man, or if at only one. He has +closed the account most accurately, and to-day begun a new record. How +many of us begin a new record with each day of our lives? + +To me it seems only yesterday that my whole life ended with my new hope, +and that truly I began a new record. So it will be until the Great +Recorder sums me up and closes my ledger account with a balance to +profit or loss. Oh, Lucy, Lucy, I cannot be angry with you, nor can I be +angry with my friend whose happiness is yours; but I must only wait on +hopeless and work. Work! work! + +If I only could have as strong a cause as my poor mad friend there--a +good, unselfish cause to make me work--that would be indeed happiness. + + +_Mina Murray’s Journal._ + +_26 July._--I am anxious, and it soothes me to express myself here; it +is like whispering to one’s self and listening at the same time. And +there is also something about the shorthand symbols that makes it +different from writing. I am unhappy about Lucy and about Jonathan. I +had not heard from Jonathan for some time, and was very concerned; but +yesterday dear Mr. Hawkins, who is always so kind, sent me a letter from +him. I had written asking him if he had heard, and he said the enclosed +had just been received. It is only a line dated from Castle Dracula, +and says that he is just starting for home. That is not like Jonathan; +I do not understand it, and it makes me uneasy. Then, too, Lucy, +although she is so well, has lately taken to her old habit of walking in +her sleep. Her mother has spoken to me about it, and we have decided +that I am to lock the door of our room every night. Mrs. Westenra has +got an idea that sleep-walkers always go out on roofs of houses and +along the edges of cliffs and then get suddenly wakened and fall over +with a despairing cry that echoes all over the place. Poor dear, she is +naturally anxious about Lucy, and she tells me that her husband, Lucy’s +father, had the same habit; that he would get up in the night and dress +himself and go out, if he were not stopped. Lucy is to be married in the +autumn, and she is already planning out her dresses and how her house is +to be arranged. I sympathise with her, for I do the same, only Jonathan +and I will start in life in a very simple way, and shall have to try to +make both ends meet. Mr. Holmwood--he is the Hon. Arthur Holmwood, only +son of Lord Godalming--is coming up here very shortly--as soon as he can +leave town, for his father is not very well, and I think dear Lucy is +counting the moments till he comes. She wants to take him up to the seat +on the churchyard cliff and show him the beauty of Whitby. I daresay it +is the waiting which disturbs her; she will be all right when he +arrives. + + * * * * * + +_27 July._--No news from Jonathan. I am getting quite uneasy about him, +though why I should I do not know; but I do wish that he would write, if +it were only a single line. Lucy walks more than ever, and each night I +am awakened by her moving about the room. Fortunately, the weather is so +hot that she cannot get cold; but still the anxiety and the perpetually +being wakened is beginning to tell on me, and I am getting nervous and +wakeful myself. Thank God, Lucy’s health keeps up. Mr. Holmwood has been +suddenly called to Ring to see his father, who has been taken seriously +ill. Lucy frets at the postponement of seeing him, but it does not touch +her looks; she is a trifle stouter, and her cheeks are a lovely +rose-pink. She has lost that anæmic look which she had. I pray it will +all last. + + * * * * * + +_3 August._--Another week gone, and no news from Jonathan, not even to +Mr. Hawkins, from whom I have heard. Oh, I do hope he is not ill. He +surely would have written. I look at that last letter of his, but +somehow it does not satisfy me. It does not read like him, and yet it is +his writing. There is no mistake of that. Lucy has not walked much in +her sleep the last week, but there is an odd concentration about her +which I do not understand; even in her sleep she seems to be watching +me. She tries the door, and finding it locked, goes about the room +searching for the key. + +_6 August._--Another three days, and no news. This suspense is getting +dreadful. If I only knew where to write to or where to go to, I should +feel easier; but no one has heard a word of Jonathan since that last +letter. I must only pray to God for patience. Lucy is more excitable +than ever, but is otherwise well. Last night was very threatening, and +the fishermen say that we are in for a storm. I must try to watch it and +learn the weather signs. To-day is a grey day, and the sun as I write is +hidden in thick clouds, high over Kettleness. Everything is grey--except +the green grass, which seems like emerald amongst it; grey earthy rock; +grey clouds, tinged with the sunburst at the far edge, hang over the +grey sea, into which the sand-points stretch like grey fingers. The sea +is tumbling in over the shallows and the sandy flats with a roar, +muffled in the sea-mists drifting inland. The horizon is lost in a grey +mist. All is vastness; the clouds are piled up like giant rocks, and +there is a “brool” over the sea that sounds like some presage of doom. +Dark figures are on the beach here and there, sometimes half shrouded in +the mist, and seem “men like trees walking.” The fishing-boats are +racing for home, and rise and dip in the ground swell as they sweep into +the harbour, bending to the scuppers. Here comes old Mr. Swales. He is +making straight for me, and I can see, by the way he lifts his hat, that +he wants to talk.... + +I have been quite touched by the change in the poor old man. When he sat +down beside me, he said in a very gentle way:-- + +“I want to say something to you, miss.” I could see he was not at ease, +so I took his poor old wrinkled hand in mine and asked him to speak +fully; so he said, leaving his hand in mine:-- + +“I’m afraid, my deary, that I must have shocked you by all the wicked +things I’ve been sayin’ about the dead, and such like, for weeks past; +but I didn’t mean them, and I want ye to remember that when I’m gone. We +aud folks that be daffled, and with one foot abaft the krok-hooal, don’t +altogether like to think of it, and we don’t want to feel scart of it; +an’ that’s why I’ve took to makin’ light of it, so that I’d cheer up my +own heart a bit. But, Lord love ye, miss, I ain’t afraid of dyin’, not a +bit; only I don’t want to die if I can help it. My time must be nigh at +hand now, for I be aud, and a hundred years is too much for any man to +expect; and I’m so nigh it that the Aud Man is already whettin’ his +scythe. Ye see, I can’t get out o’ the habit of caffin’ about it all at +once; the chafts will wag as they be used to. Some day soon the Angel of +Death will sound his trumpet for me. But don’t ye dooal an’ greet, my +deary!”--for he saw that I was crying--“if he should come this very +night I’d not refuse to answer his call. For life be, after all, only a +waitin’ for somethin’ else than what we’re doin’; and death be all that +we can rightly depend on. But I’m content, for it’s comin’ to me, my +deary, and comin’ quick. It may be comin’ while we be lookin’ and +wonderin’. Maybe it’s in that wind out over the sea that’s bringin’ with +it loss and wreck, and sore distress, and sad hearts. Look! look!” he +cried suddenly. “There’s something in that wind and in the hoast beyont +that sounds, and looks, and tastes, and smells like death. It’s in the +air; I feel it comin’. Lord, make me answer cheerful when my call +comes!” He held up his arms devoutly, and raised his hat. His mouth +moved as though he were praying. After a few minutes’ silence, he got +up, shook hands with me, and blessed me, and said good-bye, and hobbled +off. It all touched me, and upset me very much. + +I was glad when the coastguard came along, with his spy-glass under his +arm. He stopped to talk with me, as he always does, but all the time +kept looking at a strange ship. + +“I can’t make her out,” he said; “she’s a Russian, by the look of her; +but she’s knocking about in the queerest way. She doesn’t know her mind +a bit; she seems to see the storm coming, but can’t decide whether to +run up north in the open, or to put in here. Look there again! She is +steered mighty strangely, for she doesn’t mind the hand on the wheel; +changes about with every puff of wind. We’ll hear more of her before +this time to-morrow.” + + + + +CHAPTER VII + +CUTTING FROM “THE DAILYGRAPH,” 8 AUGUST + + +(_Pasted in Mina Murray’s Journal._) + +From a Correspondent. + +_Whitby_. + +One of the greatest and suddenest storms on record has just been +experienced here, with results both strange and unique. The weather had +been somewhat sultry, but not to any degree uncommon in the month of +August. Saturday evening was as fine as was ever known, and the great +body of holiday-makers laid out yesterday for visits to Mulgrave Woods, +Robin Hood’s Bay, Rig Mill, Runswick, Staithes, and the various trips in +the neighbourhood of Whitby. The steamers _Emma_ and _Scarborough_ made +trips up and down the coast, and there was an unusual amount of +“tripping” both to and from Whitby. The day was unusually fine till the +afternoon, when some of the gossips who frequent the East Cliff +churchyard, and from that commanding eminence watch the wide sweep of +sea visible to the north and east, called attention to a sudden show of +“mares’-tails” high in the sky to the north-west. The wind was then +blowing from the south-west in the mild degree which in barometrical +language is ranked “No. 2: light breeze.” The coastguard on duty at once +made report, and one old fisherman, who for more than half a century has +kept watch on weather signs from the East Cliff, foretold in an emphatic +manner the coming of a sudden storm. The approach of sunset was so very +beautiful, so grand in its masses of splendidly-coloured clouds, that +there was quite an assemblage on the walk along the cliff in the old +churchyard to enjoy the beauty. Before the sun dipped below the black +mass of Kettleness, standing boldly athwart the western sky, its +downward way was marked by myriad clouds of every sunset-colour--flame, +purple, pink, green, violet, and all the tints of gold; with here and +there masses not large, but of seemingly absolute blackness, in all +sorts of shapes, as well outlined as colossal silhouettes. The +experience was not lost on the painters, and doubtless some of the +sketches of the “Prelude to the Great Storm” will grace the R. A. and R. +I. walls in May next. More than one captain made up his mind then and +there that his “cobble” or his “mule,” as they term the different +classes of boats, would remain in the harbour till the storm had passed. +The wind fell away entirely during the evening, and at midnight there +was a dead calm, a sultry heat, and that prevailing intensity which, on +the approach of thunder, affects persons of a sensitive nature. There +were but few lights in sight at sea, for even the coasting steamers, +which usually “hug” the shore so closely, kept well to seaward, and but +few fishing-boats were in sight. The only sail noticeable was a foreign +schooner with all sails set, which was seemingly going westwards. The +foolhardiness or ignorance of her officers was a prolific theme for +comment whilst she remained in sight, and efforts were made to signal +her to reduce sail in face of her danger. Before the night shut down she +was seen with sails idly flapping as she gently rolled on the undulating +swell of the sea, + + “As idle as a painted ship upon a painted ocean.” + +Shortly before ten o’clock the stillness of the air grew quite +oppressive, and the silence was so marked that the bleating of a sheep +inland or the barking of a dog in the town was distinctly heard, and the +band on the pier, with its lively French air, was like a discord in the +great harmony of nature’s silence. A little after midnight came a +strange sound from over the sea, and high overhead the air began to +carry a strange, faint, hollow booming. + +Then without warning the tempest broke. With a rapidity which, at the +time, seemed incredible, and even afterwards is impossible to realize, +the whole aspect of nature at once became convulsed. The waves rose in +growing fury, each overtopping its fellow, till in a very few minutes +the lately glassy sea was like a roaring and devouring monster. +White-crested waves beat madly on the level sands and rushed up the +shelving cliffs; others broke over the piers, and with their spume swept +the lanthorns of the lighthouses which rise from the end of either pier +of Whitby Harbour. The wind roared like thunder, and blew with such +force that it was with difficulty that even strong men kept their feet, +or clung with grim clasp to the iron stanchions. It was found necessary +to clear the entire piers from the mass of onlookers, or else the +fatalities of the night would have been increased manifold. To add to +the difficulties and dangers of the time, masses of sea-fog came +drifting inland--white, wet clouds, which swept by in ghostly fashion, +so dank and damp and cold that it needed but little effort of +imagination to think that the spirits of those lost at sea were +touching their living brethren with the clammy hands of death, and many +a one shuddered as the wreaths of sea-mist swept by. At times the mist +cleared, and the sea for some distance could be seen in the glare of the +lightning, which now came thick and fast, followed by such sudden peals +of thunder that the whole sky overhead seemed trembling under the shock +of the footsteps of the storm. + +Some of the scenes thus revealed were of immeasurable grandeur and of +absorbing interest--the sea, running mountains high, threw skywards with +each wave mighty masses of white foam, which the tempest seemed to +snatch at and whirl away into space; here and there a fishing-boat, with +a rag of sail, running madly for shelter before the blast; now and again +the white wings of a storm-tossed sea-bird. On the summit of the East +Cliff the new searchlight was ready for experiment, but had not yet been +tried. The officers in charge of it got it into working order, and in +the pauses of the inrushing mist swept with it the surface of the sea. +Once or twice its service was most effective, as when a fishing-boat, +with gunwale under water, rushed into the harbour, able, by the guidance +of the sheltering light, to avoid the danger of dashing against the +piers. As each boat achieved the safety of the port there was a shout of +joy from the mass of people on shore, a shout which for a moment seemed +to cleave the gale and was then swept away in its rush. + +Before long the searchlight discovered some distance away a schooner +with all sails set, apparently the same vessel which had been noticed +earlier in the evening. The wind had by this time backed to the east, +and there was a shudder amongst the watchers on the cliff as they +realized the terrible danger in which she now was. Between her and the +port lay the great flat reef on which so many good ships have from time +to time suffered, and, with the wind blowing from its present quarter, +it would be quite impossible that she should fetch the entrance of the +harbour. It was now nearly the hour of high tide, but the waves were so +great that in their troughs the shallows of the shore were almost +visible, and the schooner, with all sails set, was rushing with such +speed that, in the words of one old salt, “she must fetch up somewhere, +if it was only in hell.” Then came another rush of sea-fog, greater than +any hitherto--a mass of dank mist, which seemed to close on all things +like a grey pall, and left available to men only the organ of hearing, +for the roar of the tempest, and the crash of the thunder, and the +booming of the mighty billows came through the damp oblivion even louder +than before. The rays of the searchlight were kept fixed on the harbour +mouth across the East Pier, where the shock was expected, and men waited +breathless. The wind suddenly shifted to the north-east, and the remnant +of the sea-fog melted in the blast; and then, _mirabile dictu_, between +the piers, leaping from wave to wave as it rushed at headlong speed, +swept the strange schooner before the blast, with all sail set, and +gained the safety of the harbour. The searchlight followed her, and a +shudder ran through all who saw her, for lashed to the helm was a +corpse, with drooping head, which swung horribly to and fro at each +motion of the ship. No other form could be seen on deck at all. A great +awe came on all as they realised that the ship, as if by a miracle, had +found the harbour, unsteered save by the hand of a dead man! However, +all took place more quickly than it takes to write these words. The +schooner paused not, but rushing across the harbour, pitched herself on +that accumulation of sand and gravel washed by many tides and many +storms into the south-east corner of the pier jutting under the East +Cliff, known locally as Tate Hill Pier. + +There was of course a considerable concussion as the vessel drove up on +the sand heap. Every spar, rope, and stay was strained, and some of the +“top-hammer” came crashing down. But, strangest of all, the very instant +the shore was touched, an immense dog sprang up on deck from below, as +if shot up by the concussion, and running forward, jumped from the bow +on the sand. Making straight for the steep cliff, where the churchyard +hangs over the laneway to the East Pier so steeply that some of the flat +tombstones--“thruff-steans” or “through-stones,” as they call them in +the Whitby vernacular--actually project over where the sustaining cliff +has fallen away, it disappeared in the darkness, which seemed +intensified just beyond the focus of the searchlight. + +It so happened that there was no one at the moment on Tate Hill Pier, as +all those whose houses are in close proximity were either in bed or were +out on the heights above. Thus the coastguard on duty on the eastern +side of the harbour, who at once ran down to the little pier, was the +first to climb on board. The men working the searchlight, after scouring +the entrance of the harbour without seeing anything, then turned the +light on the derelict and kept it there. The coastguard ran aft, and +when he came beside the wheel, bent over to examine it, and recoiled at +once as though under some sudden emotion. This seemed to pique general +curiosity, and quite a number of people began to run. It is a good way +round from the West Cliff by the Drawbridge to Tate Hill Pier, but your +correspondent is a fairly good runner, and came well ahead of the crowd. +When I arrived, however, I found already assembled on the pier a crowd, +whom the coastguard and police refused to allow to come on board. By the +courtesy of the chief boatman, I was, as your correspondent, permitted +to climb on deck, and was one of a small group who saw the dead seaman +whilst actually lashed to the wheel. + +It was no wonder that the coastguard was surprised, or even awed, for +not often can such a sight have been seen. The man was simply fastened +by his hands, tied one over the other, to a spoke of the wheel. Between +the inner hand and the wood was a crucifix, the set of beads on which it +was fastened being around both wrists and wheel, and all kept fast by +the binding cords. The poor fellow may have been seated at one time, but +the flapping and buffeting of the sails had worked through the rudder of +the wheel and dragged him to and fro, so that the cords with which he +was tied had cut the flesh to the bone. Accurate note was made of the +state of things, and a doctor--Surgeon J. M. Caffyn, of 33, East Elliot +Place--who came immediately after me, declared, after making +examination, that the man must have been dead for quite two days. In his +pocket was a bottle, carefully corked, empty save for a little roll of +paper, which proved to be the addendum to the log. The coastguard said +the man must have tied up his own hands, fastening the knots with his +teeth. The fact that a coastguard was the first on board may save some +complications, later on, in the Admiralty Court; for coastguards cannot +claim the salvage which is the right of the first civilian entering on a +derelict. Already, however, the legal tongues are wagging, and one young +law student is loudly asserting that the rights of the owner are already +completely sacrificed, his property being held in contravention of the +statutes of mortmain, since the tiller, as emblemship, if not proof, of +delegated possession, is held in a _dead hand_. It is needless to say +that the dead steersman has been reverently removed from the place where +he held his honourable watch and ward till death--a steadfastness as +noble as that of the young Casabianca--and placed in the mortuary to +await inquest. + +Already the sudden storm is passing, and its fierceness is abating; +crowds are scattering homeward, and the sky is beginning to redden over +the Yorkshire wolds. I shall send, in time for your next issue, further +details of the derelict ship which found her way so miraculously into +harbour in the storm. + +_Whitby_ + +_9 August._--The sequel to the strange arrival of the derelict in the +storm last night is almost more startling than the thing itself. It +turns out that the schooner is a Russian from Varna, and is called the +_Demeter_. She is almost entirely in ballast of silver sand, with only a +small amount of cargo--a number of great wooden boxes filled with mould. +This cargo was consigned to a Whitby solicitor, Mr. S. F. Billington, of +7, The Crescent, who this morning went aboard and formally took +possession of the goods consigned to him. The Russian consul, too, +acting for the charter-party, took formal possession of the ship, and +paid all harbour dues, etc. Nothing is talked about here to-day except +the strange coincidence; the officials of the Board of Trade have been +most exacting in seeing that every compliance has been made with +existing regulations. As the matter is to be a “nine days’ wonder,” they +are evidently determined that there shall be no cause of after +complaint. A good deal of interest was abroad concerning the dog which +landed when the ship struck, and more than a few of the members of the +S. P. C. A., which is very strong in Whitby, have tried to befriend the +animal. To the general disappointment, however, it was not to be found; +it seems to have disappeared entirely from the town. It may be that it +was frightened and made its way on to the moors, where it is still +hiding in terror. There are some who look with dread on such a +possibility, lest later on it should in itself become a danger, for it +is evidently a fierce brute. Early this morning a large dog, a half-bred +mastiff belonging to a coal merchant close to Tate Hill Pier, was found +dead in the roadway opposite to its master’s yard. It had been fighting, +and manifestly had had a savage opponent, for its throat was torn away, +and its belly was slit open as if with a savage claw. + + * * * * * + +_Later._--By the kindness of the Board of Trade inspector, I have been +permitted to look over the log-book of the _Demeter_, which was in order +up to within three days, but contained nothing of special interest +except as to facts of missing men. The greatest interest, however, is +with regard to the paper found in the bottle, which was to-day produced +at the inquest; and a more strange narrative than the two between them +unfold it has not been my lot to come across. As there is no motive for +concealment, I am permitted to use them, and accordingly send you a +rescript, simply omitting technical details of seamanship and +supercargo. It almost seems as though the captain had been seized with +some kind of mania before he had got well into blue water, and that +this had developed persistently throughout the voyage. Of course my +statement must be taken _cum grano_, since I am writing from the +dictation of a clerk of the Russian consul, who kindly translated for +me, time being short. + + LOG OF THE “DEMETER.” + + +_Varna to Whitby._ + +_Written 18 July, things so strange happening, that I shall keep +accurate note henceforth till we land._ + + * * * * * + +On 6 July we finished taking in cargo, silver sand and boxes of earth. +At noon set sail. East wind, fresh. Crew, five hands ... two mates, +cook, and myself (captain). + + * * * * * + +On 11 July at dawn entered Bosphorus. Boarded by Turkish Customs +officers. Backsheesh. All correct. Under way at 4 p. m. + + * * * * * + +On 12 July through Dardanelles. More Customs officers and flagboat of +guarding squadron. Backsheesh again. Work of officers thorough, but +quick. Want us off soon. At dark passed into Archipelago. + + * * * * * + +On 13 July passed Cape Matapan. Crew dissatisfied about something. +Seemed scared, but would not speak out. + + * * * * * + +On 14 July was somewhat anxious about crew. Men all steady fellows, who +sailed with me before. Mate could not make out what was wrong; they only +told him there was _something_, and crossed themselves. Mate lost temper +with one of them that day and struck him. Expected fierce quarrel, but +all was quiet. + + * * * * * + +On 16 July mate reported in the morning that one of crew, Petrofsky, was +missing. Could not account for it. Took larboard watch eight bells last +night; was relieved by Abramoff, but did not go to bunk. Men more +downcast than ever. All said they expected something of the kind, but +would not say more than there was _something_ aboard. Mate getting very +impatient with them; feared some trouble ahead. + + * * * * * + +On 17 July, yesterday, one of the men, Olgaren, came to my cabin, and in +an awestruck way confided to me that he thought there was a strange man +aboard the ship. He said that in his watch he had been sheltering +behind the deck-house, as there was a rain-storm, when he saw a tall, +thin man, who was not like any of the crew, come up the companion-way, +and go along the deck forward, and disappear. He followed cautiously, +but when he got to bows found no one, and the hatchways were all closed. +He was in a panic of superstitious fear, and I am afraid the panic may +spread. To allay it, I shall to-day search entire ship carefully from +stem to stern. + + * * * * * + +Later in the day I got together the whole crew, and told them, as they +evidently thought there was some one in the ship, we would search from +stem to stern. First mate angry; said it was folly, and to yield to such +foolish ideas would demoralise the men; said he would engage to keep +them out of trouble with a handspike. I let him take the helm, while the +rest began thorough search, all keeping abreast, with lanterns: we left +no corner unsearched. As there were only the big wooden boxes, there +were no odd corners where a man could hide. Men much relieved when +search over, and went back to work cheerfully. First mate scowled, but +said nothing. + + * * * * * + +_22 July_.--Rough weather last three days, and all hands busy with +sails--no time to be frightened. Men seem to have forgotten their dread. +Mate cheerful again, and all on good terms. Praised men for work in bad +weather. Passed Gibralter and out through Straits. All well. + + * * * * * + +_24 July_.--There seems some doom over this ship. Already a hand short, +and entering on the Bay of Biscay with wild weather ahead, and yet last +night another man lost--disappeared. Like the first, he came off his +watch and was not seen again. Men all in a panic of fear; sent a round +robin, asking to have double watch, as they fear to be alone. Mate +angry. Fear there will be some trouble, as either he or the men will do +some violence. + + * * * * * + +_28 July_.--Four days in hell, knocking about in a sort of maelstrom, +and the wind a tempest. No sleep for any one. Men all worn out. Hardly +know how to set a watch, since no one fit to go on. Second mate +volunteered to steer and watch, and let men snatch a few hours’ sleep. +Wind abating; seas still terrific, but feel them less, as ship is +steadier. + + * * * * * + +_29 July_.--Another tragedy. Had single watch to-night, as crew too +tired to double. When morning watch came on deck could find no one +except steersman. Raised outcry, and all came on deck. Thorough search, +but no one found. Are now without second mate, and crew in a panic. Mate +and I agreed to go armed henceforth and wait for any sign of cause. + + * * * * * + +_30 July_.--Last night. Rejoiced we are nearing England. Weather fine, +all sails set. Retired worn out; slept soundly; awaked by mate telling +me that both man of watch and steersman missing. Only self and mate and +two hands left to work ship. + + * * * * * + +_1 August_.--Two days of fog, and not a sail sighted. Had hoped when in +the English Channel to be able to signal for help or get in somewhere. +Not having power to work sails, have to run before wind. Dare not lower, +as could not raise them again. We seem to be drifting to some terrible +doom. Mate now more demoralised than either of men. His stronger nature +seems to have worked inwardly against himself. Men are beyond fear, +working stolidly and patiently, with minds made up to worst. They are +Russian, he Roumanian. + + * * * * * + +_2 August, midnight_.--Woke up from few minutes’ sleep by hearing a cry, +seemingly outside my port. Could see nothing in fog. Rushed on deck, and +ran against mate. Tells me heard cry and ran, but no sign of man on +watch. One more gone. Lord, help us! Mate says we must be past Straits +of Dover, as in a moment of fog lifting he saw North Foreland, just as +he heard the man cry out. If so we are now off in the North Sea, and +only God can guide us in the fog, which seems to move with us; and God +seems to have deserted us. + + * * * * * + +_3 August_.--At midnight I went to relieve the man at the wheel, and +when I got to it found no one there. The wind was steady, and as we ran +before it there was no yawing. I dared not leave it, so shouted for the +mate. After a few seconds he rushed up on deck in his flannels. He +looked wild-eyed and haggard, and I greatly fear his reason has given +way. He came close to me and whispered hoarsely, with his mouth to my +ear, as though fearing the very air might hear: “_It_ is here; I know +it, now. On the watch last night I saw It, like a man, tall and thin, +and ghastly pale. It was in the bows, and looking out. I crept behind +It, and gave It my knife; but the knife went through It, empty as the +air.” And as he spoke he took his knife and drove it savagely into +space. Then he went on: “But It is here, and I’ll find It. It is in the +hold, perhaps in one of those boxes. I’ll unscrew them one by one and +see. You work the helm.” And, with a warning look and his finger on his +lip, he went below. There was springing up a choppy wind, and I could +not leave the helm. I saw him come out on deck again with a tool-chest +and a lantern, and go down the forward hatchway. He is mad, stark, +raving mad, and it’s no use my trying to stop him. He can’t hurt those +big boxes: they are invoiced as “clay,” and to pull them about is as +harmless a thing as he can do. So here I stay, and mind the helm, and +write these notes. I can only trust in God and wait till the fog clears. +Then, if I can’t steer to any harbour with the wind that is, I shall cut +down sails and lie by, and signal for help.... + + * * * * * + +It is nearly all over now. Just as I was beginning to hope that the mate +would come out calmer--for I heard him knocking away at something in the +hold, and work is good for him--there came up the hatchway a sudden, +startled scream, which made my blood run cold, and up on the deck he +came as if shot from a gun--a raging madman, with his eyes rolling and +his face convulsed with fear. “Save me! save me!” he cried, and then +looked round on the blanket of fog. His horror turned to despair, and in +a steady voice he said: “You had better come too, captain, before it is +too late. _He_ is there. I know the secret now. The sea will save me +from Him, and it is all that is left!” Before I could say a word, or +move forward to seize him, he sprang on the bulwark and deliberately +threw himself into the sea. I suppose I know the secret too, now. It was +this madman who had got rid of the men one by one, and now he has +followed them himself. God help me! How am I to account for all these +horrors when I get to port? _When_ I get to port! Will that ever be? + + * * * * * + +_4 August._--Still fog, which the sunrise cannot pierce. I know there is +sunrise because I am a sailor, why else I know not. I dared not go +below, I dared not leave the helm; so here all night I stayed, and in +the dimness of the night I saw It--Him! God forgive me, but the mate was +right to jump overboard. It was better to die like a man; to die like a +sailor in blue water no man can object. But I am captain, and I must not +leave my ship. But I shall baffle this fiend or monster, for I shall tie +my hands to the wheel when my strength begins to fail, and along with +them I shall tie that which He--It!--dare not touch; and then, come good +wind or foul, I shall save my soul, and my honour as a captain. I am +growing weaker, and the night is coming on. If He can look me in the +face again, I may not have time to act.... If we are wrecked, mayhap +this bottle may be found, and those who find it may understand; if not, +... well, then all men shall know that I have been true to my trust. God +and the Blessed Virgin and the saints help a poor ignorant soul trying +to do his duty.... + + * * * * * + +Of course the verdict was an open one. There is no evidence to adduce; +and whether or not the man himself committed the murders there is now +none to say. The folk here hold almost universally that the captain is +simply a hero, and he is to be given a public funeral. Already it is +arranged that his body is to be taken with a train of boats up the Esk +for a piece and then brought back to Tate Hill Pier and up the abbey +steps; for he is to be buried in the churchyard on the cliff. The owners +of more than a hundred boats have already given in their names as +wishing to follow him to the grave. + +No trace has ever been found of the great dog; at which there is much +mourning, for, with public opinion in its present state, he would, I +believe, be adopted by the town. To-morrow will see the funeral; and so +will end this one more “mystery of the sea.” + + +_Mina Murray’s Journal._ + +_8 August._--Lucy was very restless all night, and I, too, could not +sleep. The storm was fearful, and as it boomed loudly among the +chimney-pots, it made me shudder. When a sharp puff came it seemed to be +like a distant gun. Strangely enough, Lucy did not wake; but she got up +twice and dressed herself. Fortunately, each time I awoke in time and +managed to undress her without waking her, and got her back to bed. It +is a very strange thing, this sleep-walking, for as soon as her will is +thwarted in any physical way, her intention, if there be any, +disappears, and she yields herself almost exactly to the routine of her +life. + +Early in the morning we both got up and went down to the harbour to see +if anything had happened in the night. There were very few people about, +and though the sun was bright, and the air clear and fresh, the big, +grim-looking waves, that seemed dark themselves because the foam that +topped them was like snow, forced themselves in through the narrow mouth +of the harbour--like a bullying man going through a crowd. Somehow I +felt glad that Jonathan was not on the sea last night, but on land. But, +oh, is he on land or sea? Where is he, and how? I am getting fearfully +anxious about him. If I only knew what to do, and could do anything! + + * * * * * + +_10 August._--The funeral of the poor sea-captain to-day was most +touching. Every boat in the harbour seemed to be there, and the coffin +was carried by captains all the way from Tate Hill Pier up to the +churchyard. Lucy came with me, and we went early to our old seat, whilst +the cortège of boats went up the river to the Viaduct and came down +again. We had a lovely view, and saw the procession nearly all the way. +The poor fellow was laid to rest quite near our seat so that we stood on +it when the time came and saw everything. Poor Lucy seemed much upset. +She was restless and uneasy all the time, and I cannot but think that +her dreaming at night is telling on her. She is quite odd in one thing: +she will not admit to me that there is any cause for restlessness; or if +there be, she does not understand it herself. There is an additional +cause in that poor old Mr. Swales was found dead this morning on our +seat, his neck being broken. He had evidently, as the doctor said, +fallen back in the seat in some sort of fright, for there was a look of +fear and horror on his face that the men said made them shudder. Poor +dear old man! Perhaps he had seen Death with his dying eyes! Lucy is so +sweet and sensitive that she feels influences more acutely than other +people do. Just now she was quite upset by a little thing which I did +not much heed, though I am myself very fond of animals. One of the men +who came up here often to look for the boats was followed by his dog. +The dog is always with him. They are both quiet persons, and I never saw +the man angry, nor heard the dog bark. During the service the dog would +not come to its master, who was on the seat with us, but kept a few +yards off, barking and howling. Its master spoke to it gently, and then +harshly, and then angrily; but it would neither come nor cease to make a +noise. It was in a sort of fury, with its eyes savage, and all its hairs +bristling out like a cat’s tail when puss is on the war-path. Finally +the man, too, got angry, and jumped down and kicked the dog, and then +took it by the scruff of the neck and half dragged and half threw it on +the tombstone on which the seat is fixed. The moment it touched the +stone the poor thing became quiet and fell all into a tremble. It did +not try to get away, but crouched down, quivering and cowering, and was +in such a pitiable state of terror that I tried, though without effect, +to comfort it. Lucy was full of pity, too, but she did not attempt to +touch the dog, but looked at it in an agonised sort of way. I greatly +fear that she is of too super-sensitive a nature to go through the world +without trouble. She will be dreaming of this to-night, I am sure. The +whole agglomeration of things--the ship steered into port by a dead +man; his attitude, tied to the wheel with a crucifix and beads; the +touching funeral; the dog, now furious and now in terror--will all +afford material for her dreams. + +I think it will be best for her to go to bed tired out physically, so I +shall take her for a long walk by the cliffs to Robin Hood’s Bay and +back. She ought not to have much inclination for sleep-walking then. + + + + +CHAPTER VIII + +MINA MURRAY’S JOURNAL + + +_Same day, 11 o’clock p. m._--Oh, but I am tired! If it were not that I +had made my diary a duty I should not open it to-night. We had a lovely +walk. Lucy, after a while, was in gay spirits, owing, I think, to some +dear cows who came nosing towards us in a field close to the lighthouse, +and frightened the wits out of us. I believe we forgot everything +except, of course, personal fear, and it seemed to wipe the slate clean +and give us a fresh start. We had a capital “severe tea” at Robin Hood’s +Bay in a sweet little old-fashioned inn, with a bow-window right over +the seaweed-covered rocks of the strand. I believe we should have +shocked the “New Woman” with our appetites. Men are more tolerant, bless +them! Then we walked home with some, or rather many, stoppages to rest, +and with our hearts full of a constant dread of wild bulls. Lucy was +really tired, and we intended to creep off to bed as soon as we could. +The young curate came in, however, and Mrs. Westenra asked him to stay +for supper. Lucy and I had both a fight for it with the dusty miller; I +know it was a hard fight on my part, and I am quite heroic. I think that +some day the bishops must get together and see about breeding up a new +class of curates, who don’t take supper, no matter how they may be +pressed to, and who will know when girls are tired. Lucy is asleep and +breathing softly. She has more colour in her cheeks than usual, and +looks, oh, so sweet. If Mr. Holmwood fell in love with her seeing her +only in the drawing-room, I wonder what he would say if he saw her now. +Some of the “New Women” writers will some day start an idea that men and +women should be allowed to see each other asleep before proposing or +accepting. But I suppose the New Woman won’t condescend in future to +accept; she will do the proposing herself. And a nice job she will make +of it, too! There’s some consolation in that. I am so happy to-night, +because dear Lucy seems better. I really believe she has turned the +corner, and that we are over her troubles with dreaming. I should be +quite happy if I only knew if Jonathan.... God bless and keep him. + + * * * * * + +_11 August, 3 a. m._--Diary again. No sleep now, so I may as well write. +I am too agitated to sleep. We have had such an adventure, such an +agonising experience. I fell asleep as soon as I had closed my diary.... +Suddenly I became broad awake, and sat up, with a horrible sense of fear +upon me, and of some feeling of emptiness around me. The room was dark, +so I could not see Lucy’s bed; I stole across and felt for her. The bed +was empty. I lit a match and found that she was not in the room. The +door was shut, but not locked, as I had left it. I feared to wake her +mother, who has been more than usually ill lately, so threw on some +clothes and got ready to look for her. As I was leaving the room it +struck me that the clothes she wore might give me some clue to her +dreaming intention. Dressing-gown would mean house; dress, outside. +Dressing-gown and dress were both in their places. “Thank God,” I said +to myself, “she cannot be far, as she is only in her nightdress.” I ran +downstairs and looked in the sitting-room. Not there! Then I looked in +all the other open rooms of the house, with an ever-growing fear +chilling my heart. Finally I came to the hall door and found it open. It +was not wide open, but the catch of the lock had not caught. The people +of the house are careful to lock the door every night, so I feared that +Lucy must have gone out as she was. There was no time to think of what +might happen; a vague, overmastering fear obscured all details. I took a +big, heavy shawl and ran out. The clock was striking one as I was in the +Crescent, and there was not a soul in sight. I ran along the North +Terrace, but could see no sign of the white figure which I expected. At +the edge of the West Cliff above the pier I looked across the harbour to +the East Cliff, in the hope or fear--I don’t know which--of seeing Lucy +in our favourite seat. There was a bright full moon, with heavy black, +driving clouds, which threw the whole scene into a fleeting diorama of +light and shade as they sailed across. For a moment or two I could see +nothing, as the shadow of a cloud obscured St. Mary’s Church and all +around it. Then as the cloud passed I could see the ruins of the abbey +coming into view; and as the edge of a narrow band of light as sharp as +a sword-cut moved along, the church and the churchyard became gradually +visible. Whatever my expectation was, it was not disappointed, for +there, on our favourite seat, the silver light of the moon struck a +half-reclining figure, snowy white. The coming of the cloud was too +quick for me to see much, for shadow shut down on light almost +immediately; but it seemed to me as though something dark stood behind +the seat where the white figure shone, and bent over it. What it was, +whether man or beast, I could not tell; I did not wait to catch another +glance, but flew down the steep steps to the pier and along by the +fish-market to the bridge, which was the only way to reach the East +Cliff. The town seemed as dead, for not a soul did I see; I rejoiced +that it was so, for I wanted no witness of poor Lucy’s condition. The +time and distance seemed endless, and my knees trembled and my breath +came laboured as I toiled up the endless steps to the abbey. I must have +gone fast, and yet it seemed to me as if my feet were weighted with +lead, and as though every joint in my body were rusty. When I got almost +to the top I could see the seat and the white figure, for I was now +close enough to distinguish it even through the spells of shadow. There +was undoubtedly something, long and black, bending over the +half-reclining white figure. I called in fright, “Lucy! Lucy!” and +something raised a head, and from where I was I could see a white face +and red, gleaming eyes. Lucy did not answer, and I ran on to the +entrance of the churchyard. As I entered, the church was between me and +the seat, and for a minute or so I lost sight of her. When I came in +view again the cloud had passed, and the moonlight struck so brilliantly +that I could see Lucy half reclining with her head lying over the back +of the seat. She was quite alone, and there was not a sign of any living +thing about. + +When I bent over her I could see that she was still asleep. Her lips +were parted, and she was breathing--not softly as usual with her, but in +long, heavy gasps, as though striving to get her lungs full at every +breath. As I came close, she put up her hand in her sleep and pulled the +collar of her nightdress close around her throat. Whilst she did so +there came a little shudder through her, as though she felt the cold. I +flung the warm shawl over her, and drew the edges tight round her neck, +for I dreaded lest she should get some deadly chill from the night air, +unclad as she was. I feared to wake her all at once, so, in order to +have my hands free that I might help her, I fastened the shawl at her +throat with a big safety-pin; but I must have been clumsy in my anxiety +and pinched or pricked her with it, for by-and-by, when her breathing +became quieter, she put her hand to her throat again and moaned. When I +had her carefully wrapped up I put my shoes on her feet and then began +very gently to wake her. At first she did not respond; but gradually she +became more and more uneasy in her sleep, moaning and sighing +occasionally. At last, as time was passing fast, and, for many other +reasons, I wished to get her home at once, I shook her more forcibly, +till finally she opened her eyes and awoke. She did not seem surprised +to see me, as, of course, she did not realise all at once where she was. +Lucy always wakes prettily, and even at such a time, when her body must +have been chilled with cold, and her mind somewhat appalled at waking +unclad in a churchyard at night, she did not lose her grace. She +trembled a little, and clung to me; when I told her to come at once with +me home she rose without a word, with the obedience of a child. As we +passed along, the gravel hurt my feet, and Lucy noticed me wince. She +stopped and wanted to insist upon my taking my shoes; but I would not. +However, when we got to the pathway outside the churchyard, where there +was a puddle of water, remaining from the storm, I daubed my feet with +mud, using each foot in turn on the other, so that as we went home, no +one, in case we should meet any one, should notice my bare feet. + +Fortune favoured us, and we got home without meeting a soul. Once we saw +a man, who seemed not quite sober, passing along a street in front of +us; but we hid in a door till he had disappeared up an opening such as +there are here, steep little closes, or “wynds,” as they call them in +Scotland. My heart beat so loud all the time that sometimes I thought I +should faint. I was filled with anxiety about Lucy, not only for her +health, lest she should suffer from the exposure, but for her reputation +in case the story should get wind. When we got in, and had washed our +feet, and had said a prayer of thankfulness together, I tucked her into +bed. Before falling asleep she asked--even implored--me not to say a +word to any one, even her mother, about her sleep-walking adventure. I +hesitated at first to promise; but on thinking of the state of her +mother’s health, and how the knowledge of such a thing would fret her, +and thinking, too, of how such a story might become distorted--nay, +infallibly would--in case it should leak out, I thought it wiser to do +so. I hope I did right. I have locked the door, and the key is tied to +my wrist, so perhaps I shall not be again disturbed. Lucy is sleeping +soundly; the reflex of the dawn is high and far over the sea.... + + * * * * * + +_Same day, noon._--All goes well. Lucy slept till I woke her and seemed +not to have even changed her side. The adventure of the night does not +seem to have harmed her; on the contrary, it has benefited her, for she +looks better this morning than she has done for weeks. I was sorry to +notice that my clumsiness with the safety-pin hurt her. Indeed, it might +have been serious, for the skin of her throat was pierced. I must have +pinched up a piece of loose skin and have transfixed it, for there are +two little red points like pin-pricks, and on the band of her nightdress +was a drop of blood. When I apologised and was concerned about it, she +laughed and petted me, and said she did not even feel it. Fortunately it +cannot leave a scar, as it is so tiny. + + * * * * * + +_Same day, night._--We passed a happy day. The air was clear, and the +sun bright, and there was a cool breeze. We took our lunch to Mulgrave +Woods, Mrs. Westenra driving by the road and Lucy and I walking by the +cliff-path and joining her at the gate. I felt a little sad myself, for +I could not but feel how _absolutely_ happy it would have been had +Jonathan been with me. But there! I must only be patient. In the evening +we strolled in the Casino Terrace, and heard some good music by Spohr +and Mackenzie, and went to bed early. Lucy seems more restful than she +has been for some time, and fell asleep at once. I shall lock the door +and secure the key the same as before, though I do not expect any +trouble to-night. + + * * * * * + +_12 August._--My expectations were wrong, for twice during the night I +was wakened by Lucy trying to get out. She seemed, even in her sleep, to +be a little impatient at finding the door shut, and went back to bed +under a sort of protest. I woke with the dawn, and heard the birds +chirping outside of the window. Lucy woke, too, and, I was glad to see, +was even better than on the previous morning. All her old gaiety of +manner seemed to have come back, and she came and snuggled in beside me +and told me all about Arthur. I told her how anxious I was about +Jonathan, and then she tried to comfort me. Well, she succeeded +somewhat, for, though sympathy can’t alter facts, it can help to make +them more bearable. + + * * * * * + +_13 August._--Another quiet day, and to bed with the key on my wrist as +before. Again I awoke in the night, and found Lucy sitting up in bed, +still asleep, pointing to the window. I got up quietly, and pulling +aside the blind, looked out. It was brilliant moonlight, and the soft +effect of the light over the sea and sky--merged together in one great, +silent mystery--was beautiful beyond words. Between me and the moonlight +flitted a great bat, coming and going in great whirling circles. Once or +twice it came quite close, but was, I suppose, frightened at seeing me, +and flitted away across the harbour towards the abbey. When I came back +from the window Lucy had lain down again, and was sleeping peacefully. +She did not stir again all night. + + * * * * * + +_14 August._--On the East Cliff, reading and writing all day. Lucy seems +to have become as much in love with the spot as I am, and it is hard to +get her away from it when it is time to come home for lunch or tea or +dinner. This afternoon she made a funny remark. We were coming home for +dinner, and had come to the top of the steps up from the West Pier and +stopped to look at the view, as we generally do. The setting sun, low +down in the sky, was just dropping behind Kettleness; the red light was +thrown over on the East Cliff and the old abbey, and seemed to bathe +everything in a beautiful rosy glow. We were silent for a while, and +suddenly Lucy murmured as if to herself:-- + +“His red eyes again! They are just the same.” It was such an odd +expression, coming _apropos_ of nothing, that it quite startled me. I +slewed round a little, so as to see Lucy well without seeming to stare +at her, and saw that she was in a half-dreamy state, with an odd look on +her face that I could not quite make out; so I said nothing, but +followed her eyes. She appeared to be looking over at our own seat, +whereon was a dark figure seated alone. I was a little startled myself, +for it seemed for an instant as if the stranger had great eyes like +burning flames; but a second look dispelled the illusion. The red +sunlight was shining on the windows of St. Mary’s Church behind our +seat, and as the sun dipped there was just sufficient change in the +refraction and reflection to make it appear as if the light moved. I +called Lucy’s attention to the peculiar effect, and she became herself +with a start, but she looked sad all the same; it may have been that she +was thinking of that terrible night up there. We never refer to it; so I +said nothing, and we went home to dinner. Lucy had a headache and went +early to bed. I saw her asleep, and went out for a little stroll myself; +I walked along the cliffs to the westward, and was full of sweet +sadness, for I was thinking of Jonathan. When coming home--it was then +bright moonlight, so bright that, though the front of our part of the +Crescent was in shadow, everything could be well seen--I threw a glance +up at our window, and saw Lucy’s head leaning out. I thought that +perhaps she was looking out for me, so I opened my handkerchief and +waved it. She did not notice or make any movement whatever. Just then, +the moonlight crept round an angle of the building, and the light fell +on the window. There distinctly was Lucy with her head lying up against +the side of the window-sill and her eyes shut. She was fast asleep, and +by her, seated on the window-sill, was something that looked like a +good-sized bird. I was afraid she might get a chill, so I ran upstairs, +but as I came into the room she was moving back to her bed, fast +asleep, and breathing heavily; she was holding her hand to her throat, +as though to protect it from cold. + +I did not wake her, but tucked her up warmly; I have taken care that the +door is locked and the window securely fastened. + +She looks so sweet as she sleeps; but she is paler than is her wont, and +there is a drawn, haggard look under her eyes which I do not like. I +fear she is fretting about something. I wish I could find out what it +is. + + * * * * * + +_15 August._--Rose later than usual. Lucy was languid and tired, and +slept on after we had been called. We had a happy surprise at breakfast. +Arthur’s father is better, and wants the marriage to come off soon. Lucy +is full of quiet joy, and her mother is glad and sorry at once. Later on +in the day she told me the cause. She is grieved to lose Lucy as her +very own, but she is rejoiced that she is soon to have some one to +protect her. Poor dear, sweet lady! She confided to me that she has got +her death-warrant. She has not told Lucy, and made me promise secrecy; +her doctor told her that within a few months, at most, she must die, for +her heart is weakening. At any time, even now, a sudden shock would be +almost sure to kill her. Ah, we were wise to keep from her the affair of +the dreadful night of Lucy’s sleep-walking. + + * * * * * + +_17 August._--No diary for two whole days. I have not had the heart to +write. Some sort of shadowy pall seems to be coming over our happiness. +No news from Jonathan, and Lucy seems to be growing weaker, whilst her +mother’s hours are numbering to a close. I do not understand Lucy’s +fading away as she is doing. She eats well and sleeps well, and enjoys +the fresh air; but all the time the roses in her cheeks are fading, and +she gets weaker and more languid day by day; at night I hear her gasping +as if for air. I keep the key of our door always fastened to my wrist at +night, but she gets up and walks about the room, and sits at the open +window. Last night I found her leaning out when I woke up, and when I +tried to wake her I could not; she was in a faint. When I managed to +restore her she was as weak as water, and cried silently between long, +painful struggles for breath. When I asked her how she came to be at the +window she shook her head and turned away. I trust her feeling ill may +not be from that unlucky prick of the safety-pin. I looked at her throat +just now as she lay asleep, and the tiny wounds seem not to have healed. +They are still open, and, if anything, larger than before, and the +edges of them are faintly white. They are like little white dots with +red centres. Unless they heal within a day or two, I shall insist on the +doctor seeing about them. + + +_Letter, Samuel F. Billington & Son, Solicitors, Whitby, to Messrs. +Carter, Paterson & Co., London._ + +“_17 August._ + +“Dear Sirs,-- + +“Herewith please receive invoice of goods sent by Great Northern +Railway. Same are to be delivered at Carfax, near Purfleet, immediately +on receipt at goods station King’s Cross. The house is at present empty, +but enclosed please find keys, all of which are labelled. + +“You will please deposit the boxes, fifty in number, which form the +consignment, in the partially ruined building forming part of the house +and marked ‘A’ on rough diagram enclosed. Your agent will easily +recognise the locality, as it is the ancient chapel of the mansion. The +goods leave by the train at 9:30 to-night, and will be due at King’s +Cross at 4:30 to-morrow afternoon. As our client wishes the delivery +made as soon as possible, we shall be obliged by your having teams ready +at King’s Cross at the time named and forthwith conveying the goods to +destination. In order to obviate any delays possible through any routine +requirements as to payment in your departments, we enclose cheque +herewith for ten pounds (£10), receipt of which please acknowledge. +Should the charge be less than this amount, you can return balance; if +greater, we shall at once send cheque for difference on hearing from +you. You are to leave the keys on coming away in the main hall of the +house, where the proprietor may get them on his entering the house by +means of his duplicate key. + +“Pray do not take us as exceeding the bounds of business courtesy in +pressing you in all ways to use the utmost expedition. + +_“We are, dear Sirs, + +“Faithfully yours, + +“SAMUEL F. BILLINGTON & SON.”_ + + +_Letter, Messrs. Carter, Paterson & Co., London, to Messrs. Billington & +Son, Whitby._ + +“_21 August._ + +“Dear Sirs,-- + +“We beg to acknowledge £10 received and to return cheque £1 17s. 9d, +amount of overplus, as shown in receipted account herewith. Goods are +delivered in exact accordance with instructions, and keys left in parcel +in main hall, as directed. + +“We are, dear Sirs, + +“Yours respectfully. + +“_Pro_ CARTER, PATERSON & CO.” + + +_Mina Murray’s Journal._ + +_18 August._--I am happy to-day, and write sitting on the seat in the +churchyard. Lucy is ever so much better. Last night she slept well all +night, and did not disturb me once. The roses seem coming back already +to her cheeks, though she is still sadly pale and wan-looking. If she +were in any way anæmic I could understand it, but she is not. She is in +gay spirits and full of life and cheerfulness. All the morbid reticence +seems to have passed from her, and she has just reminded me, as if I +needed any reminding, of _that_ night, and that it was here, on this +very seat, I found her asleep. As she told me she tapped playfully with +the heel of her boot on the stone slab and said:-- + +“My poor little feet didn’t make much noise then! I daresay poor old Mr. +Swales would have told me that it was because I didn’t want to wake up +Geordie.” As she was in such a communicative humour, I asked her if she +had dreamed at all that night. Before she answered, that sweet, puckered +look came into her forehead, which Arthur--I call him Arthur from her +habit--says he loves; and, indeed, I don’t wonder that he does. Then she +went on in a half-dreaming kind of way, as if trying to recall it to +herself:-- + +“I didn’t quite dream; but it all seemed to be real. I only wanted to be +here in this spot--I don’t know why, for I was afraid of something--I +don’t know what. I remember, though I suppose I was asleep, passing +through the streets and over the bridge. A fish leaped as I went by, and +I leaned over to look at it, and I heard a lot of dogs howling--the +whole town seemed as if it must be full of dogs all howling at once--as +I went up the steps. Then I had a vague memory of something long and +dark with red eyes, just as we saw in the sunset, and something very +sweet and very bitter all around me at once; and then I seemed sinking +into deep green water, and there was a singing in my ears, as I have +heard there is to drowning men; and then everything seemed passing away +from me; my soul seemed to go out from my body and float about the air. +I seem to remember that once the West Lighthouse was right under me, +and then there was a sort of agonising feeling, as if I were in an +earthquake, and I came back and found you shaking my body. I saw you do +it before I felt you.” + +Then she began to laugh. It seemed a little uncanny to me, and I +listened to her breathlessly. I did not quite like it, and thought it +better not to keep her mind on the subject, so we drifted on to other +subjects, and Lucy was like her old self again. When we got home the +fresh breeze had braced her up, and her pale cheeks were really more +rosy. Her mother rejoiced when she saw her, and we all spent a very +happy evening together. + + * * * * * + +_19 August._--Joy, joy, joy! although not all joy. At last, news of +Jonathan. The dear fellow has been ill; that is why he did not write. I +am not afraid to think it or say it, now that I know. Mr. Hawkins sent +me on the letter, and wrote himself, oh, so kindly. I am to leave in the +morning and go over to Jonathan, and to help to nurse him if necessary, +and to bring him home. Mr. Hawkins says it would not be a bad thing if +we were to be married out there. I have cried over the good Sister’s +letter till I can feel it wet against my bosom, where it lies. It is of +Jonathan, and must be next my heart, for he is _in_ my heart. My journey +is all mapped out, and my luggage ready. I am only taking one change of +dress; Lucy will bring my trunk to London and keep it till I send for +it, for it may be that ... I must write no more; I must keep it to say +to Jonathan, my husband. The letter that he has seen and touched must +comfort me till we meet. + + +_Letter, Sister Agatha, Hospital of St. Joseph and Ste. Mary, +Buda-Pesth, to Miss Wilhelmina Murray._ + +“_12 August._ + +“Dear Madam,-- + +“I write by desire of Mr. Jonathan Harker, who is himself not strong +enough to write, though progressing well, thanks to God and St. Joseph +and Ste. Mary. He has been under our care for nearly six weeks, +suffering from a violent brain fever. He wishes me to convey his love, +and to say that by this post I write for him to Mr. Peter Hawkins, +Exeter, to say, with his dutiful respects, that he is sorry for his +delay, and that all of his work is completed. He will require some few +weeks’ rest in our sanatorium in the hills, but will then return. He +wishes me to say that he has not sufficient money with him, and that he +would like to pay for his staying here, so that others who need shall +not be wanting for help. + +“Believe me, + +“Yours, with sympathy and all blessings, + +“SISTER AGATHA. + +“P. S.--My patient being asleep, I open this to let you know something +more. He has told me all about you, and that you are shortly to be his +wife. All blessings to you both! He has had some fearful shock--so says +our doctor--and in his delirium his ravings have been dreadful; of +wolves and poison and blood; of ghosts and demons; and I fear to say of +what. Be careful with him always that there may be nothing to excite him +of this kind for a long time to come; the traces of such an illness as +his do not lightly die away. We should have written long ago, but we +knew nothing of his friends, and there was on him nothing that any one +could understand. He came in the train from Klausenburg, and the guard +was told by the station-master there that he rushed into the station +shouting for a ticket for home. Seeing from his violent demeanour that +he was English, they gave him a ticket for the furthest station on the +way thither that the train reached. + +“Be assured that he is well cared for. He has won all hearts by his +sweetness and gentleness. He is truly getting on well, and I have no +doubt will in a few weeks be all himself. But be careful of him for +safety’s sake. There are, I pray God and St. Joseph and Ste. Mary, many, +many, happy years for you both.” + + +_Dr. Seward’s Diary._ + +_19 August._--Strange and sudden change in Renfield last night. About +eight o’clock he began to get excited and sniff about as a dog does when +setting. The attendant was struck by his manner, and knowing my interest +in him, encouraged him to talk. He is usually respectful to the +attendant and at times servile; but to-night, the man tells me, he was +quite haughty. Would not condescend to talk with him at all. All he +would say was:-- + + “I don’t want to talk to you: you don’t count now; the Master is at + hand.” + +The attendant thinks it is some sudden form of religious mania which has +seized him. If so, we must look out for squalls, for a strong man with +homicidal and religious mania at once might be dangerous. The +combination is a dreadful one. At nine o’clock I visited him myself. His +attitude to me was the same as that to the attendant; in his sublime +self-feeling the difference between myself and attendant seemed to him +as nothing. It looks like religious mania, and he will soon think that +he himself is God. These infinitesimal distinctions between man and man +are too paltry for an Omnipotent Being. How these madmen give themselves +away! The real God taketh heed lest a sparrow fall; but the God created +from human vanity sees no difference between an eagle and a sparrow. Oh, +if men only knew! + +For half an hour or more Renfield kept getting excited in greater and +greater degree. I did not pretend to be watching him, but I kept strict +observation all the same. All at once that shifty look came into his +eyes which we always see when a madman has seized an idea, and with it +the shifty movement of the head and back which asylum attendants come to +know so well. He became quite quiet, and went and sat on the edge of his +bed resignedly, and looked into space with lack-lustre eyes. I thought I +would find out if his apathy were real or only assumed, and tried to +lead him to talk of his pets, a theme which had never failed to excite +his attention. At first he made no reply, but at length said testily:-- + +“Bother them all! I don’t care a pin about them.” + +“What?” I said. “You don’t mean to tell me you don’t care about +spiders?” (Spiders at present are his hobby and the note-book is filling +up with columns of small figures.) To this he answered enigmatically:-- + +“The bride-maidens rejoice the eyes that wait the coming of the bride; +but when the bride draweth nigh, then the maidens shine not to the eyes +that are filled.” + +He would not explain himself, but remained obstinately seated on his bed +all the time I remained with him. + +I am weary to-night and low in spirits. I cannot but think of Lucy, and +how different things might have been. If I don’t sleep at once, chloral, +the modern Morpheus--C_{2}HCl_{3}O. H_{2}O! I must be careful not to let +it grow into a habit. No, I shall take none to-night! I have thought of +Lucy, and I shall not dishonour her by mixing the two. If need be, +to-night shall be sleepless.... + + * * * * * + +_Later._--Glad I made the resolution; gladder that I kept to it. I had +lain tossing about, and had heard the clock strike only twice, when the +night-watchman came to me, sent up from the ward, to say that Renfield +had escaped. I threw on my clothes and ran down at once; my patient is +too dangerous a person to be roaming about. Those ideas of his might +work out dangerously with strangers. The attendant was waiting for me. +He said he had seen him not ten minutes before, seemingly asleep in his +bed, when he had looked through the observation-trap in the door. His +attention was called by the sound of the window being wrenched out. He +ran back and saw his feet disappear through the window, and had at once +sent up for me. He was only in his night-gear, and cannot be far off. +The attendant thought it would be more useful to watch where he should +go than to follow him, as he might lose sight of him whilst getting out +of the building by the door. He is a bulky man, and couldn’t get through +the window. I am thin, so, with his aid, I got out, but feet foremost, +and, as we were only a few feet above ground, landed unhurt. The +attendant told me the patient had gone to the left, and had taken a +straight line, so I ran as quickly as I could. As I got through the belt +of trees I saw a white figure scale the high wall which separates our +grounds from those of the deserted house. + +I ran back at once, told the watchman to get three or four men +immediately and follow me into the grounds of Carfax, in case our friend +might be dangerous. I got a ladder myself, and crossing the wall, +dropped down on the other side. I could see Renfield’s figure just +disappearing behind the angle of the house, so I ran after him. On the +far side of the house I found him pressed close against the old +ironbound oak door of the chapel. He was talking, apparently to some +one, but I was afraid to go near enough to hear what he was saying, lest +I might frighten him, and he should run off. Chasing an errant swarm of +bees is nothing to following a naked lunatic, when the fit of escaping +is upon him! After a few minutes, however, I could see that he did not +take note of anything around him, and so ventured to draw nearer to +him--the more so as my men had now crossed the wall and were closing him +in. I heard him say:-- + +“I am here to do Your bidding, Master. I am Your slave, and You will +reward me, for I shall be faithful. I have worshipped You long and afar +off. Now that You are near, I await Your commands, and You will not pass +me by, will You, dear Master, in Your distribution of good things?” + +He _is_ a selfish old beggar anyhow. He thinks of the loaves and fishes +even when he believes he is in a Real Presence. His manias make a +startling combination. When we closed in on him he fought like a tiger. +He is immensely strong, for he was more like a wild beast than a man. I +never saw a lunatic in such a paroxysm of rage before; and I hope I +shall not again. It is a mercy that we have found out his strength and +his danger in good time. With strength and determination like his, he +might have done wild work before he was caged. He is safe now at any +rate. Jack Sheppard himself couldn’t get free from the strait-waistcoat +that keeps him restrained, and he’s chained to the wall in the padded +room. His cries are at times awful, but the silences that follow are +more deadly still, for he means murder in every turn and movement. + +Just now he spoke coherent words for the first time:-- + +“I shall be patient, Master. It is coming--coming--coming!” + +So I took the hint, and came too. I was too excited to sleep, but this +diary has quieted me, and I feel I shall get some sleep to-night. + + + + +CHAPTER IX + + +_Letter, Mina Harker to Lucy Westenra._ + +“_Buda-Pesth, 24 August._ + +“My dearest Lucy,-- + +“I know you will be anxious to hear all that has happened since we +parted at the railway station at Whitby. Well, my dear, I got to Hull +all right, and caught the boat to Hamburg, and then the train on here. I +feel that I can hardly recall anything of the journey, except that I +knew I was coming to Jonathan, and, that as I should have to do some +nursing, I had better get all the sleep I could.... I found my dear one, +oh, so thin and pale and weak-looking. All the resolution has gone out +of his dear eyes, and that quiet dignity which I told you was in his +face has vanished. He is only a wreck of himself, and he does not +remember anything that has happened to him for a long time past. At +least, he wants me to believe so, and I shall never ask. He has had some +terrible shock, and I fear it might tax his poor brain if he were to try +to recall it. Sister Agatha, who is a good creature and a born nurse, +tells me that he raved of dreadful things whilst he was off his head. I +wanted her to tell me what they were; but she would only cross herself, +and say she would never tell; that the ravings of the sick were the +secrets of God, and that if a nurse through her vocation should hear +them, she should respect her trust. She is a sweet, good soul, and the +next day, when she saw I was troubled, she opened up the subject again, +and after saying that she could never mention what my poor dear raved +about, added: ‘I can tell you this much, my dear: that it was not about +anything which he has done wrong himself; and you, as his wife to be, +have no cause to be concerned. He has not forgotten you or what he owes +to you. His fear was of great and terrible things, which no mortal can +treat of.’ I do believe the dear soul thought I might be jealous lest my +poor dear should have fallen in love with any other girl. The idea of +_my_ being jealous about Jonathan! And yet, my dear, let me whisper, I +felt a thrill of joy through me when I _knew_ that no other woman was a +cause of trouble. I am now sitting by his bedside, where I can see his +face while he sleeps. He is waking!... + +“When he woke he asked me for his coat, as he wanted to get something +from the pocket; I asked Sister Agatha, and she brought all his things. +I saw that amongst them was his note-book, and was going to ask him to +let me look at it--for I knew then that I might find some clue to his +trouble--but I suppose he must have seen my wish in my eyes, for he sent +me over to the window, saying he wanted to be quite alone for a moment. +Then he called me back, and when I came he had his hand over the +note-book, and he said to me very solemnly:-- + +“‘Wilhelmina’--I knew then that he was in deadly earnest, for he has +never called me by that name since he asked me to marry him--‘you know, +dear, my ideas of the trust between husband and wife: there should be no +secret, no concealment. I have had a great shock, and when I try to +think of what it is I feel my head spin round, and I do not know if it +was all real or the dreaming of a madman. You know I have had brain +fever, and that is to be mad. The secret is here, and I do not want to +know it. I want to take up my life here, with our marriage.’ For, my +dear, we had decided to be married as soon as the formalities are +complete. ‘Are you willing, Wilhelmina, to share my ignorance? Here is +the book. Take it and keep it, read it if you will, but never let me +know; unless, indeed, some solemn duty should come upon me to go back to +the bitter hours, asleep or awake, sane or mad, recorded here.’ He fell +back exhausted, and I put the book under his pillow, and kissed him. I +have asked Sister Agatha to beg the Superior to let our wedding be this +afternoon, and am waiting her reply.... + + * * * * * + +“She has come and told me that the chaplain of the English mission +church has been sent for. We are to be married in an hour, or as soon +after as Jonathan awakes.... + + * * * * * + +“Lucy, the time has come and gone. I feel very solemn, but very, very +happy. Jonathan woke a little after the hour, and all was ready, and he +sat up in bed, propped up with pillows. He answered his ‘I will’ firmly +and strongly. I could hardly speak; my heart was so full that even those +words seemed to choke me. The dear sisters were so kind. Please God, I +shall never, never forget them, nor the grave and sweet responsibilities +I have taken upon me. I must tell you of my wedding present. When the +chaplain and the sisters had left me alone with my husband--oh, Lucy, it +is the first time I have written the words ‘my husband’--left me alone +with my husband, I took the book from under his pillow, and wrapped it +up in white paper, and tied it with a little bit of pale blue ribbon +which was round my neck, and sealed it over the knot with sealing-wax, +and for my seal I used my wedding ring. Then I kissed it and showed it +to my husband, and told him that I would keep it so, and then it would +be an outward and visible sign for us all our lives that we trusted each +other; that I would never open it unless it were for his own dear sake +or for the sake of some stern duty. Then he took my hand in his, and oh, +Lucy, it was the first time he took _his wife’s_ hand, and said that it +was the dearest thing in all the wide world, and that he would go +through all the past again to win it, if need be. The poor dear meant to +have said a part of the past, but he cannot think of time yet, and I +shall not wonder if at first he mixes up not only the month, but the +year. + +“Well, my dear, what could I say? I could only tell him that I was the +happiest woman in all the wide world, and that I had nothing to give him +except myself, my life, and my trust, and that with these went my love +and duty for all the days of my life. And, my dear, when he kissed me, +and drew me to him with his poor weak hands, it was like a very solemn +pledge between us.... + +“Lucy dear, do you know why I tell you all this? It is not only because +it is all sweet to me, but because you have been, and are, very dear to +me. It was my privilege to be your friend and guide when you came from +the schoolroom to prepare for the world of life. I want you to see now, +and with the eyes of a very happy wife, whither duty has led me; so that +in your own married life you too may be all happy as I am. My dear, +please Almighty God, your life may be all it promises: a long day of +sunshine, with no harsh wind, no forgetting duty, no distrust. I must +not wish you no pain, for that can never be; but I do hope you will be +_always_ as happy as I am _now_. Good-bye, my dear. I shall post this at +once, and, perhaps, write you very soon again. I must stop, for Jonathan +is waking--I must attend to my husband! + +“Your ever-loving + +“MINA HARKER.” + + +_Letter, Lucy Westenra to Mina Harker._ + +“_Whitby, 30 August._ + +“My dearest Mina,-- + +“Oceans of love and millions of kisses, and may you soon be in your own +home with your husband. I wish you could be coming home soon enough to +stay with us here. The strong air would soon restore Jonathan; it has +quite restored me. I have an appetite like a cormorant, am full of +life, and sleep well. You will be glad to know that I have quite given +up walking in my sleep. I think I have not stirred out of my bed for a +week, that is when I once got into it at night. Arthur says I am getting +fat. By the way, I forgot to tell you that Arthur is here. We have such +walks and drives, and rides, and rowing, and tennis, and fishing +together; and I love him more than ever. He _tells_ me that he loves me +more, but I doubt that, for at first he told me that he couldn’t love me +more than he did then. But this is nonsense. There he is, calling to me. +So no more just at present from your loving + +“LUCY. + +“P. S.--Mother sends her love. She seems better, poor dear. +“P. P. S.--We are to be married on 28 September.” + + +_Dr. Seward’s Diary._ + +_20 August._--The case of Renfield grows even more interesting. He has +now so far quieted that there are spells of cessation from his passion. +For the first week after his attack he was perpetually violent. Then one +night, just as the moon rose, he grew quiet, and kept murmuring to +himself: “Now I can wait; now I can wait.” The attendant came to tell +me, so I ran down at once to have a look at him. He was still in the +strait-waistcoat and in the padded room, but the suffused look had gone +from his face, and his eyes had something of their old pleading--I might +almost say, “cringing”--softness. I was satisfied with his present +condition, and directed him to be relieved. The attendants hesitated, +but finally carried out my wishes without protest. It was a strange +thing that the patient had humour enough to see their distrust, for, +coming close to me, he said in a whisper, all the while looking +furtively at them:-- + +“They think I could hurt you! Fancy _me_ hurting _you_! The fools!” + +It was soothing, somehow, to the feelings to find myself dissociated +even in the mind of this poor madman from the others; but all the same I +do not follow his thought. Am I to take it that I have anything in +common with him, so that we are, as it were, to stand together; or has +he to gain from me some good so stupendous that my well-being is needful +to him? I must find out later on. To-night he will not speak. Even the +offer of a kitten or even a full-grown cat will not tempt him. He will +only say: “I don’t take any stock in cats. I have more to think of now, +and I can wait; I can wait.” + +After a while I left him. The attendant tells me that he was quiet +until just before dawn, and that then he began to get uneasy, and at +length violent, until at last he fell into a paroxysm which exhausted +him so that he swooned into a sort of coma. + + * * * * * + +... Three nights has the same thing happened--violent all day then quiet +from moonrise to sunrise. I wish I could get some clue to the cause. It +would almost seem as if there was some influence which came and went. +Happy thought! We shall to-night play sane wits against mad ones. He +escaped before without our help; to-night he shall escape with it. We +shall give him a chance, and have the men ready to follow in case they +are required.... + + * * * * * + +_23 August._--“The unexpected always happens.” How well Disraeli knew +life. Our bird when he found the cage open would not fly, so all our +subtle arrangements were for nought. At any rate, we have proved one +thing; that the spells of quietness last a reasonable time. We shall in +future be able to ease his bonds for a few hours each day. I have given +orders to the night attendant merely to shut him in the padded room, +when once he is quiet, until an hour before sunrise. The poor soul’s +body will enjoy the relief even if his mind cannot appreciate it. Hark! +The unexpected again! I am called; the patient has once more escaped. + + * * * * * + +_Later._--Another night adventure. Renfield artfully waited until the +attendant was entering the room to inspect. Then he dashed out past him +and flew down the passage. I sent word for the attendants to follow. +Again he went into the grounds of the deserted house, and we found him +in the same place, pressed against the old chapel door. When he saw me +he became furious, and had not the attendants seized him in time, he +would have tried to kill me. As we were holding him a strange thing +happened. He suddenly redoubled his efforts, and then as suddenly grew +calm. I looked round instinctively, but could see nothing. Then I caught +the patient’s eye and followed it, but could trace nothing as it looked +into the moonlit sky except a big bat, which was flapping its silent and +ghostly way to the west. Bats usually wheel and flit about, but this one +seemed to go straight on, as if it knew where it was bound for or had +some intention of its own. The patient grew calmer every instant, and +presently said:-- + +“You needn’t tie me; I shall go quietly!” Without trouble we came back +to the house. I feel there is something ominous in his calm, and shall +not forget this night.... + + +_Lucy Westenra’s Diary_ + +_Hillingham, 24 August._--I must imitate Mina, and keep writing things +down. Then we can have long talks when we do meet. I wonder when it will +be. I wish she were with me again, for I feel so unhappy. Last night I +seemed to be dreaming again just as I was at Whitby. Perhaps it is the +change of air, or getting home again. It is all dark and horrid to me, +for I can remember nothing; but I am full of vague fear, and I feel so +weak and worn out. When Arthur came to lunch he looked quite grieved +when he saw me, and I hadn’t the spirit to try to be cheerful. I wonder +if I could sleep in mother’s room to-night. I shall make an excuse and +try. + + * * * * * + +_25 August._--Another bad night. Mother did not seem to take to my +proposal. She seems not too well herself, and doubtless she fears to +worry me. I tried to keep awake, and succeeded for a while; but when the +clock struck twelve it waked me from a doze, so I must have been falling +asleep. There was a sort of scratching or flapping at the window, but I +did not mind it, and as I remember no more, I suppose I must then have +fallen asleep. More bad dreams. I wish I could remember them. This +morning I am horribly weak. My face is ghastly pale, and my throat pains +me. It must be something wrong with my lungs, for I don’t seem ever to +get air enough. I shall try to cheer up when Arthur comes, or else I +know he will be miserable to see me so. + + +_Letter, Arthur Holmwood to Dr. Seward._ + +“_Albemarle Hotel, 31 August._ + +“My dear Jack,-- + +“I want you to do me a favour. Lucy is ill; that is, she has no special +disease, but she looks awful, and is getting worse every day. I have +asked her if there is any cause; I do not dare to ask her mother, for to +disturb the poor lady’s mind about her daughter in her present state of +health would be fatal. Mrs. Westenra has confided to me that her doom is +spoken--disease of the heart--though poor Lucy does not know it yet. I +am sure that there is something preying on my dear girl’s mind. I am +almost distracted when I think of her; to look at her gives me a pang. I +told her I should ask you to see her, and though she demurred at +first--I know why, old fellow--she finally consented. It will be a +painful task for you, I know, old friend, but it is for _her_ sake, and +I must not hesitate to ask, or you to act. You are to come to lunch at +Hillingham to-morrow, two o’clock, so as not to arouse any suspicion in +Mrs. Westenra, and after lunch Lucy will take an opportunity of being +alone with you. I shall come in for tea, and we can go away together; I +am filled with anxiety, and want to consult with you alone as soon as I +can after you have seen her. Do not fail! + +“ARTHUR.” + + +_Telegram, Arthur Holmwood to Seward._ + +“_1 September._ + +“Am summoned to see my father, who is worse. Am writing. Write me fully +by to-night’s post to Ring. Wire me if necessary.” + + +_Letter from Dr. Seward to Arthur Holmwood._ + +“_2 September._ + +“My dear old fellow,-- + +“With regard to Miss Westenra’s health I hasten to let you know at once +that in my opinion there is not any functional disturbance or any malady +that I know of. At the same time, I am not by any means satisfied with +her appearance; she is woefully different from what she was when I saw +her last. Of course you must bear in mind that I did not have full +opportunity of examination such as I should wish; our very friendship +makes a little difficulty which not even medical science or custom can +bridge over. I had better tell you exactly what happened, leaving you to +draw, in a measure, your own conclusions. I shall then say what I have +done and propose doing. + +“I found Miss Westenra in seemingly gay spirits. Her mother was present, +and in a few seconds I made up my mind that she was trying all she knew +to mislead her mother and prevent her from being anxious. I have no +doubt she guesses, if she does not know, what need of caution there is. +We lunched alone, and as we all exerted ourselves to be cheerful, we +got, as some kind of reward for our labours, some real cheerfulness +amongst us. Then Mrs. Westenra went to lie down, and Lucy was left with +me. We went into her boudoir, and till we got there her gaiety remained, +for the servants were coming and going. As soon as the door was closed, +however, the mask fell from her face, and she sank down into a chair +with a great sigh, and hid her eyes with her hand. When I saw that her +high spirits had failed, I at once took advantage of her reaction to +make a diagnosis. She said to me very sweetly:-- + +“‘I cannot tell you how I loathe talking about myself.’ I reminded her +that a doctor’s confidence was sacred, but that you were grievously +anxious about her. She caught on to my meaning at once, and settled that +matter in a word. ‘Tell Arthur everything you choose. I do not care for +myself, but all for him!’ So I am quite free. + +“I could easily see that she is somewhat bloodless, but I could not see +the usual anæmic signs, and by a chance I was actually able to test the +quality of her blood, for in opening a window which was stiff a cord +gave way, and she cut her hand slightly with broken glass. It was a +slight matter in itself, but it gave me an evident chance, and I secured +a few drops of the blood and have analysed them. The qualitative +analysis gives a quite normal condition, and shows, I should infer, in +itself a vigorous state of health. In other physical matters I was quite +satisfied that there is no need for anxiety; but as there must be a +cause somewhere, I have come to the conclusion that it must be something +mental. She complains of difficulty in breathing satisfactorily at +times, and of heavy, lethargic sleep, with dreams that frighten her, but +regarding which she can remember nothing. She says that as a child she +used to walk in her sleep, and that when in Whitby the habit came back, +and that once she walked out in the night and went to East Cliff, where +Miss Murray found her; but she assures me that of late the habit has not +returned. I am in doubt, and so have done the best thing I know of; I +have written to my old friend and master, Professor Van Helsing, of +Amsterdam, who knows as much about obscure diseases as any one in the +world. I have asked him to come over, and as you told me that all things +were to be at your charge, I have mentioned to him who you are and your +relations to Miss Westenra. This, my dear fellow, is in obedience to +your wishes, for I am only too proud and happy to do anything I can for +her. Van Helsing would, I know, do anything for me for a personal +reason, so, no matter on what ground he comes, we must accept his +wishes. He is a seemingly arbitrary man, but this is because he knows +what he is talking about better than any one else. He is a philosopher +and a metaphysician, and one of the most advanced scientists of his day; +and he has, I believe, an absolutely open mind. This, with an iron +nerve, a temper of the ice-brook, an indomitable resolution, +self-command, and toleration exalted from virtues to blessings, and the +kindliest and truest heart that beats--these form his equipment for the +noble work that he is doing for mankind--work both in theory and +practice, for his views are as wide as his all-embracing sympathy. I +tell you these facts that you may know why I have such confidence in +him. I have asked him to come at once. I shall see Miss Westenra +to-morrow again. She is to meet me at the Stores, so that I may not +alarm her mother by too early a repetition of my call. + +“Yours always, + +“JOHN SEWARD.” + + +_Letter, Abraham Van Helsing, M. D., D. Ph., D. Lit., etc., etc., to Dr. +Seward._ + +“_2 September._ + +“My good Friend,-- + +“When I have received your letter I am already coming to you. By good +fortune I can leave just at once, without wrong to any of those who have +trusted me. Were fortune other, then it were bad for those who have +trusted, for I come to my friend when he call me to aid those he holds +dear. Tell your friend that when that time you suck from my wound so +swiftly the poison of the gangrene from that knife that our other +friend, too nervous, let slip, you did more for him when he wants my +aids and you call for them than all his great fortune could do. But it +is pleasure added to do for him, your friend; it is to you that I come. +Have then rooms for me at the Great Eastern Hotel, so that I may be near +to hand, and please it so arrange that we may see the young lady not too +late on to-morrow, for it is likely that I may have to return here that +night. But if need be I shall come again in three days, and stay longer +if it must. Till then good-bye, my friend John. + + “VAN HELSING.” + + +_Letter, Dr. Seward to Hon. Arthur Holmwood._ + +“_3 September._ + +“My dear Art,-- + +“Van Helsing has come and gone. He came on with me to Hillingham, and +found that, by Lucy’s discretion, her mother was lunching out, so that +we were alone with her. Van Helsing made a very careful examination of +the patient. He is to report to me, and I shall advise you, for of +course I was not present all the time. He is, I fear, much concerned, +but says he must think. When I told him of our friendship and how you +trust to me in the matter, he said: ‘You must tell him all you think. +Tell him what I think, if you can guess it, if you will. Nay, I am not +jesting. This is no jest, but life and death, perhaps more.’ I asked +what he meant by that, for he was very serious. This was when we had +come back to town, and he was having a cup of tea before starting on his +return to Amsterdam. He would not give me any further clue. You must not +be angry with me, Art, because his very reticence means that all his +brains are working for her good. He will speak plainly enough when the +time comes, be sure. So I told him I would simply write an account of +our visit, just as if I were doing a descriptive special article for +_The Daily Telegraph_. He seemed not to notice, but remarked that the +smuts in London were not quite so bad as they used to be when he was a +student here. I am to get his report to-morrow if he can possibly make +it. In any case I am to have a letter. + +“Well, as to the visit. Lucy was more cheerful than on the day I first +saw her, and certainly looked better. She had lost something of the +ghastly look that so upset you, and her breathing was normal. She was +very sweet to the professor (as she always is), and tried to make him +feel at ease; though I could see that the poor girl was making a hard +struggle for it. I believe Van Helsing saw it, too, for I saw the quick +look under his bushy brows that I knew of old. Then he began to chat of +all things except ourselves and diseases and with such an infinite +geniality that I could see poor Lucy’s pretense of animation merge into +reality. Then, without any seeming change, he brought the conversation +gently round to his visit, and suavely said:-- + +“‘My dear young miss, I have the so great pleasure because you are so +much beloved. That is much, my dear, ever were there that which I do not +see. They told me you were down in the spirit, and that you were of a +ghastly pale. To them I say: “Pouf!”’ And he snapped his fingers at me +and went on: ‘But you and I shall show them how wrong they are. How can +he’--and he pointed at me with the same look and gesture as that with +which once he pointed me out to his class, on, or rather after, a +particular occasion which he never fails to remind me of--‘know anything +of a young ladies? He has his madmans to play with, and to bring them +back to happiness, and to those that love them. It is much to do, and, +oh, but there are rewards, in that we can bestow such happiness. But the +young ladies! He has no wife nor daughter, and the young do not tell +themselves to the young, but to the old, like me, who have known so many +sorrows and the causes of them. So, my dear, we will send him away to +smoke the cigarette in the garden, whiles you and I have little talk all +to ourselves.’ I took the hint, and strolled about, and presently the +professor came to the window and called me in. He looked grave, but +said: ‘I have made careful examination, but there is no functional +cause. With you I agree that there has been much blood lost; it has +been, but is not. But the conditions of her are in no way anæmic. I have +asked her to send me her maid, that I may ask just one or two question, +that so I may not chance to miss nothing. I know well what she will say. +And yet there is cause; there is always cause for everything. I must go +back home and think. You must send to me the telegram every day; and if +there be cause I shall come again. The disease--for not to be all well +is a disease--interest me, and the sweet young dear, she interest me +too. She charm me, and for her, if not for you or disease, I come.’ + +“As I tell you, he would not say a word more, even when we were alone. +And so now, Art, you know all I know. I shall keep stern watch. I trust +your poor father is rallying. It must be a terrible thing to you, my +dear old fellow, to be placed in such a position between two people who +are both so dear to you. I know your idea of duty to your father, and +you are right to stick to it; but, if need be, I shall send you word to +come at once to Lucy; so do not be over-anxious unless you hear from +me.” + + +_Dr. Seward’s Diary._ + +_4 September._--Zoöphagous patient still keeps up our interest in him. +He had only one outburst and that was yesterday at an unusual time. Just +before the stroke of noon he began to grow restless. The attendant knew +the symptoms, and at once summoned aid. Fortunately the men came at a +run, and were just in time, for at the stroke of noon he became so +violent that it took all their strength to hold him. In about five +minutes, however, he began to get more and more quiet, and finally sank +into a sort of melancholy, in which state he has remained up to now. The +attendant tells me that his screams whilst in the paroxysm were really +appalling; I found my hands full when I got in, attending to some of the +other patients who were frightened by him. Indeed, I can quite +understand the effect, for the sounds disturbed even me, though I was +some distance away. It is now after the dinner-hour of the asylum, and +as yet my patient sits in a corner brooding, with a dull, sullen, +woe-begone look in his face, which seems rather to indicate than to show +something directly. I cannot quite understand it. + + * * * * * + +_Later._--Another change in my patient. At five o’clock I looked in on +him, and found him seemingly as happy and contented as he used to be. He +was catching flies and eating them, and was keeping note of his capture +by making nail-marks on the edge of the door between the ridges of +padding. When he saw me, he came over and apologised for his bad +conduct, and asked me in a very humble, cringing way to be led back to +his own room and to have his note-book again. I thought it well to +humour him: so he is back in his room with the window open. He has the +sugar of his tea spread out on the window-sill, and is reaping quite a +harvest of flies. He is not now eating them, but putting them into a +box, as of old, and is already examining the corners of his room to find +a spider. I tried to get him to talk about the past few days, for any +clue to his thoughts would be of immense help to me; but he would not +rise. For a moment or two he looked very sad, and said in a sort of +far-away voice, as though saying it rather to himself than to me:-- + +“All over! all over! He has deserted me. No hope for me now unless I do +it for myself!” Then suddenly turning to me in a resolute way, he said: +“Doctor, won’t you be very good to me and let me have a little more +sugar? I think it would be good for me.” + +“And the flies?” I said. + +“Yes! The flies like it, too, and I like the flies; therefore I like +it.” And there are people who know so little as to think that madmen do +not argue. I procured him a double supply, and left him as happy a man +as, I suppose, any in the world. I wish I could fathom his mind. + + * * * * * + +_Midnight._--Another change in him. I had been to see Miss Westenra, +whom I found much better, and had just returned, and was standing at our +own gate looking at the sunset, when once more I heard him yelling. As +his room is on this side of the house, I could hear it better than in +the morning. It was a shock to me to turn from the wonderful smoky +beauty of a sunset over London, with its lurid lights and inky shadows +and all the marvellous tints that come on foul clouds even as on foul +water, and to realise all the grim sternness of my own cold stone +building, with its wealth of breathing misery, and my own desolate heart +to endure it all. I reached him just as the sun was going down, and from +his window saw the red disc sink. As it sank he became less and less +frenzied; and just as it dipped he slid from the hands that held him, an +inert mass, on the floor. It is wonderful, however, what intellectual +recuperative power lunatics have, for within a few minutes he stood up +quite calmly and looked around him. I signalled to the attendants not to +hold him, for I was anxious to see what he would do. He went straight +over to the window and brushed out the crumbs of sugar; then he took his +fly-box, and emptied it outside, and threw away the box; then he shut +the window, and crossing over, sat down on his bed. All this surprised +me, so I asked him: “Are you not going to keep flies any more?” + +“No,” said he; “I am sick of all that rubbish!” He certainly is a +wonderfully interesting study. I wish I could get some glimpse of his +mind or of the cause of his sudden passion. Stop; there may be a clue +after all, if we can find why to-day his paroxysms came on at high noon +and at sunset. Can it be that there is a malign influence of the sun at +periods which affects certain natures--as at times the moon does others? +We shall see. + + +_Telegram, Seward, London, to Van Helsing, Amsterdam._ + +“_4 September._--Patient still better to-day.” + + +_Telegram, Seward, London, to Van Helsing, Amsterdam._ + +“_5 September._--Patient greatly improved. Good appetite; sleeps +naturally; good spirits; colour coming back.” + + +_Telegram, Seward, London, to Van Helsing, Amsterdam._ + +“_6 September._--Terrible change for the worse. Come at once; do not +lose an hour. I hold over telegram to Holmwood till have seen you.” + + + + +CHAPTER X + + +_Letter, Dr. Seward to Hon. Arthur Holmwood._ + +“_6 September._ + +“My dear Art,-- + +“My news to-day is not so good. Lucy this morning had gone back a bit. +There is, however, one good thing which has arisen from it; Mrs. +Westenra was naturally anxious concerning Lucy, and has consulted me +professionally about her. I took advantage of the opportunity, and told +her that my old master, Van Helsing, the great specialist, was coming to +stay with me, and that I would put her in his charge conjointly with +myself; so now we can come and go without alarming her unduly, for a +shock to her would mean sudden death, and this, in Lucy’s weak +condition, might be disastrous to her. We are hedged in with +difficulties, all of us, my poor old fellow; but, please God, we shall +come through them all right. If any need I shall write, so that, if you +do not hear from me, take it for granted that I am simply waiting for +news. In haste + +“Yours ever, + +“JOHN SEWARD.” + + +_Dr. Seward’s Diary._ + +_7 September._--The first thing Van Helsing said to me when we met at +Liverpool Street was:-- + +“Have you said anything to our young friend the lover of her?” + +“No,” I said. “I waited till I had seen you, as I said in my telegram. I +wrote him a letter simply telling him that you were coming, as Miss +Westenra was not so well, and that I should let him know if need be.” + +“Right, my friend,” he said, “quite right! Better he not know as yet; +perhaps he shall never know. I pray so; but if it be needed, then he +shall know all. And, my good friend John, let me caution you. You deal +with the madmen. All men are mad in some way or the other; and inasmuch +as you deal discreetly with your madmen, so deal with God’s madmen, +too--the rest of the world. You tell not your madmen what you do nor why +you do it; you tell them not what you think. So you shall keep knowledge +in its place, where it may rest--where it may gather its kind around it +and breed. You and I shall keep as yet what we know here, and here.” He +touched me on the heart and on the forehead, and then touched himself +the same way. “I have for myself thoughts at the present. Later I shall +unfold to you.” + +“Why not now?” I asked. “It may do some good; we may arrive at some +decision.” He stopped and looked at me, and said:-- + +“My friend John, when the corn is grown, even before it has +ripened--while the milk of its mother-earth is in him, and the sunshine +has not yet begun to paint him with his gold, the husbandman he pull the +ear and rub him between his rough hands, and blow away the green chaff, +and say to you: ‘Look! he’s good corn; he will make good crop when the +time comes.’” I did not see the application, and told him so. For reply +he reached over and took my ear in his hand and pulled it playfully, as +he used long ago to do at lectures, and said: “The good husbandman tell +you so then because he knows, but not till then. But you do not find the +good husbandman dig up his planted corn to see if he grow; that is for +the children who play at husbandry, and not for those who take it as of +the work of their life. See you now, friend John? I have sown my corn, +and Nature has her work to do in making it sprout; if he sprout at all, +there’s some promise; and I wait till the ear begins to swell.” He broke +off, for he evidently saw that I understood. Then he went on, and very +gravely:-- + +“You were always a careful student, and your case-book was ever more +full than the rest. You were only student then; now you are master, and +I trust that good habit have not fail. Remember, my friend, that +knowledge is stronger than memory, and we should not trust the weaker. +Even if you have not kept the good practise, let me tell you that this +case of our dear miss is one that may be--mind, I say _may be_--of such +interest to us and others that all the rest may not make him kick the +beam, as your peoples say. Take then good note of it. Nothing is too +small. I counsel you, put down in record even your doubts and surmises. +Hereafter it may be of interest to you to see how true you guess. We +learn from failure, not from success!” + +When I described Lucy’s symptoms--the same as before, but infinitely +more marked--he looked very grave, but said nothing. He took with him a +bag in which were many instruments and drugs, “the ghastly paraphernalia +of our beneficial trade,” as he once called, in one of his lectures, the +equipment of a professor of the healing craft. When we were shown in, +Mrs. Westenra met us. She was alarmed, but not nearly so much as I +expected to find her. Nature in one of her beneficent moods has ordained +that even death has some antidote to its own terrors. Here, in a case +where any shock may prove fatal, matters are so ordered that, from some +cause or other, the things not personal--even the terrible change in her +daughter to whom she is so attached--do not seem to reach her. It is +something like the way Dame Nature gathers round a foreign body an +envelope of some insensitive tissue which can protect from evil that +which it would otherwise harm by contact. If this be an ordered +selfishness, then we should pause before we condemn any one for the vice +of egoism, for there may be deeper root for its causes than we have +knowledge of. + +I used my knowledge of this phase of spiritual pathology, and laid down +a rule that she should not be present with Lucy or think of her illness +more than was absolutely required. She assented readily, so readily that +I saw again the hand of Nature fighting for life. Van Helsing and I were +shown up to Lucy’s room. If I was shocked when I saw her yesterday, I +was horrified when I saw her to-day. She was ghastly, chalkily pale; the +red seemed to have gone even from her lips and gums, and the bones of +her face stood out prominently; her breathing was painful to see or +hear. Van Helsing’s face grew set as marble, and his eyebrows converged +till they almost touched over his nose. Lucy lay motionless, and did not +seem to have strength to speak, so for a while we were all silent. Then +Van Helsing beckoned to me, and we went gently out of the room. The +instant we had closed the door he stepped quickly along the passage to +the next door, which was open. Then he pulled me quickly in with him and +closed the door. “My God!” he said; “this is dreadful. There is no time +to be lost. She will die for sheer want of blood to keep the heart’s +action as it should be. There must be transfusion of blood at once. Is +it you or me?” + +“I am younger and stronger, Professor. It must be me.” + +“Then get ready at once. I will bring up my bag. I am prepared.” + +I went downstairs with him, and as we were going there was a knock at +the hall-door. When we reached the hall the maid had just opened the +door, and Arthur was stepping quickly in. He rushed up to me, saying in +an eager whisper:-- + +“Jack, I was so anxious. I read between the lines of your letter, and +have been in an agony. The dad was better, so I ran down here to see for +myself. Is not that gentleman Dr. Van Helsing? I am so thankful to you, +sir, for coming.” When first the Professor’s eye had lit upon him he had +been angry at his interruption at such a time; but now, as he took in +his stalwart proportions and recognised the strong young manhood which +seemed to emanate from him, his eyes gleamed. Without a pause he said to +him gravely as he held out his hand:-- + +“Sir, you have come in time. You are the lover of our dear miss. She is +bad, very, very bad. Nay, my child, do not go like that.” For he +suddenly grew pale and sat down in a chair almost fainting. “You are to +help her. You can do more than any that live, and your courage is your +best help.” + +“What can I do?” asked Arthur hoarsely. “Tell me, and I shall do it. My +life is hers, and I would give the last drop of blood in my body for +her.” The Professor has a strongly humorous side, and I could from old +knowledge detect a trace of its origin in his answer:-- + +“My young sir, I do not ask so much as that--not the last!” + +“What shall I do?” There was fire in his eyes, and his open nostril +quivered with intent. Van Helsing slapped him on the shoulder. “Come!” +he said. “You are a man, and it is a man we want. You are better than +me, better than my friend John.” Arthur looked bewildered, and the +Professor went on by explaining in a kindly way:-- + +“Young miss is bad, very bad. She wants blood, and blood she must have +or die. My friend John and I have consulted; and we are about to perform +what we call transfusion of blood--to transfer from full veins of one to +the empty veins which pine for him. John was to give his blood, as he is +the more young and strong than me”--here Arthur took my hand and wrung +it hard in silence--“but, now you are here, you are more good than us, +old or young, who toil much in the world of thought. Our nerves are not +so calm and our blood not so bright than yours!” Arthur turned to him +and said:-- + +“If you only knew how gladly I would die for her you would +understand----” + +He stopped, with a sort of choke in his voice. + +“Good boy!” said Van Helsing. “In the not-so-far-off you will be happy +that you have done all for her you love. Come now and be silent. You +shall kiss her once before it is done, but then you must go; and you +must leave at my sign. Say no word to Madame; you know how it is with +her! There must be no shock; any knowledge of this would be one. Come!” + +We all went up to Lucy’s room. Arthur by direction remained outside. +Lucy turned her head and looked at us, but said nothing. She was not +asleep, but she was simply too weak to make the effort. Her eyes spoke +to us; that was all. Van Helsing took some things from his bag and laid +them on a little table out of sight. Then he mixed a narcotic, and +coming over to the bed, said cheerily:-- + +“Now, little miss, here is your medicine. Drink it off, like a good +child. See, I lift you so that to swallow is easy. Yes.” She had made +the effort with success. + +It astonished me how long the drug took to act. This, in fact, marked +the extent of her weakness. The time seemed endless until sleep began to +flicker in her eyelids. At last, however, the narcotic began to manifest +its potency; and she fell into a deep sleep. When the Professor was +satisfied he called Arthur into the room, and bade him strip off his +coat. Then he added: “You may take that one little kiss whiles I bring +over the table. Friend John, help to me!” So neither of us looked whilst +he bent over her. + +Van Helsing turning to me, said: + +“He is so young and strong and of blood so pure that we need not +defibrinate it.” + +Then with swiftness, but with absolute method, Van Helsing performed the +operation. As the transfusion went on something like life seemed to come +back to poor Lucy’s cheeks, and through Arthur’s growing pallor the joy +of his face seemed absolutely to shine. After a bit I began to grow +anxious, for the loss of blood was telling on Arthur, strong man as he +was. It gave me an idea of what a terrible strain Lucy’s system must +have undergone that what weakened Arthur only partially restored her. +But the Professor’s face was set, and he stood watch in hand and with +his eyes fixed now on the patient and now on Arthur. I could hear my own +heart beat. Presently he said in a soft voice: “Do not stir an instant. +It is enough. You attend him; I will look to her.” When all was over I +could see how much Arthur was weakened. I dressed the wound and took his +arm to bring him away, when Van Helsing spoke without turning round--the +man seems to have eyes in the back of his head:-- + +“The brave lover, I think, deserve another kiss, which he shall have +presently.” And as he had now finished his operation, he adjusted the +pillow to the patient’s head. As he did so the narrow black velvet band +which she seems always to wear round her throat, buckled with an old +diamond buckle which her lover had given her, was dragged a little up, +and showed a red mark on her throat. Arthur did not notice it, but I +could hear the deep hiss of indrawn breath which is one of Van Helsing’s +ways of betraying emotion. He said nothing at the moment, but turned to +me, saying: “Now take down our brave young lover, give him of the port +wine, and let him lie down a while. He must then go home and rest, sleep +much and eat much, that he may be recruited of what he has so given to +his love. He must not stay here. Hold! a moment. I may take it, sir, +that you are anxious of result. Then bring it with you that in all ways +the operation is successful. You have saved her life this time, and you +can go home and rest easy in mind that all that can be is. I shall tell +her all when she is well; she shall love you none the less for what you +have done. Good-bye.” + +When Arthur had gone I went back to the room. Lucy was sleeping gently, +but her breathing was stronger; I could see the counterpane move as her +breast heaved. By the bedside sat Van Helsing, looking at her intently. +The velvet band again covered the red mark. I asked the Professor in a +whisper:-- + +“What do you make of that mark on her throat?” + +“What do you make of it?” + +“I have not examined it yet,” I answered, and then and there proceeded +to loose the band. Just over the external jugular vein there were two +punctures, not large, but not wholesome-looking. There was no sign of +disease, but the edges were white and worn-looking, as if by some +trituration. It at once occurred to me that this wound, or whatever it +was, might be the means of that manifest loss of blood; but I abandoned +the idea as soon as formed, for such a thing could not be. The whole bed +would have been drenched to a scarlet with the blood which the girl must +have lost to leave such a pallor as she had before the transfusion. + +“Well?” said Van Helsing. + +“Well,” said I, “I can make nothing of it.” The Professor stood up. “I +must go back to Amsterdam to-night,” he said. “There are books and +things there which I want. You must remain here all the night, and you +must not let your sight pass from her.” + +“Shall I have a nurse?” I asked. + +“We are the best nurses, you and I. You keep watch all night; see that +she is well fed, and that nothing disturbs her. You must not sleep all +the night. Later on we can sleep, you and I. I shall be back as soon as +possible. And then we may begin.” + +“May begin?” I said. “What on earth do you mean?” + +“We shall see!” he answered, as he hurried out. He came back a moment +later and put his head inside the door and said with warning finger held +up:-- + +“Remember, she is your charge. If you leave her, and harm befall, you +shall not sleep easy hereafter!” + + +_Dr. Seward’s Diary--continued._ + +_8 September._--I sat up all night with Lucy. The opiate worked itself +off towards dusk, and she waked naturally; she looked a different being +from what she had been before the operation. Her spirits even were good, +and she was full of a happy vivacity, but I could see evidences of the +absolute prostration which she had undergone. When I told Mrs. Westenra +that Dr. Van Helsing had directed that I should sit up with her she +almost pooh-poohed the idea, pointing out her daughter’s renewed +strength and excellent spirits. I was firm, however, and made +preparations for my long vigil. When her maid had prepared her for the +night I came in, having in the meantime had supper, and took a seat by +the bedside. She did not in any way make objection, but looked at me +gratefully whenever I caught her eye. After a long spell she seemed +sinking off to sleep, but with an effort seemed to pull herself together +and shook it off. This was repeated several times, with greater effort +and with shorter pauses as the time moved on. It was apparent that she +did not want to sleep, so I tackled the subject at once:-- + +“You do not want to go to sleep?” + +“No; I am afraid.” + +“Afraid to go to sleep! Why so? It is the boon we all crave for.” + +“Ah, not if you were like me--if sleep was to you a presage of horror!” + +“A presage of horror! What on earth do you mean?” + +“I don’t know; oh, I don’t know. And that is what is so terrible. All +this weakness comes to me in sleep; until I dread the very thought.” + +“But, my dear girl, you may sleep to-night. I am here watching you, and +I can promise that nothing will happen.” + +“Ah, I can trust you!” I seized the opportunity, and said: “I promise +you that if I see any evidence of bad dreams I will wake you at once.” + +“You will? Oh, will you really? How good you are to me. Then I will +sleep!” And almost at the word she gave a deep sigh of relief, and sank +back, asleep. + +All night long I watched by her. She never stirred, but slept on and on +in a deep, tranquil, life-giving, health-giving sleep. Her lips were +slightly parted, and her breast rose and fell with the regularity of a +pendulum. There was a smile on her face, and it was evident that no bad +dreams had come to disturb her peace of mind. + +In the early morning her maid came, and I left her in her care and took +myself back home, for I was anxious about many things. I sent a short +wire to Van Helsing and to Arthur, telling them of the excellent result +of the operation. My own work, with its manifold arrears, took me all +day to clear off; it was dark when I was able to inquire about my +zoöphagous patient. The report was good; he had been quite quiet for the +past day and night. A telegram came from Van Helsing at Amsterdam whilst +I was at dinner, suggesting that I should be at Hillingham to-night, as +it might be well to be at hand, and stating that he was leaving by the +night mail and would join me early in the morning. + + * * * * * + +_9 September_.--I was pretty tired and worn out when I got to +Hillingham. For two nights I had hardly had a wink of sleep, and my +brain was beginning to feel that numbness which marks cerebral +exhaustion. Lucy was up and in cheerful spirits. When she shook hands +with me she looked sharply in my face and said:-- + +“No sitting up to-night for you. You are worn out. I am quite well +again; indeed, I am; and if there is to be any sitting up, it is I who +will sit up with you.” I would not argue the point, but went and had my +supper. Lucy came with me, and, enlivened by her charming presence, I +made an excellent meal, and had a couple of glasses of the more than +excellent port. Then Lucy took me upstairs, and showed me a room next +her own, where a cozy fire was burning. “Now,” she said, “you must stay +here. I shall leave this door open and my door too. You can lie on the +sofa for I know that nothing would induce any of you doctors to go to +bed whilst there is a patient above the horizon. If I want anything I +shall call out, and you can come to me at once.” I could not but +acquiesce, for I was “dog-tired,” and could not have sat up had I tried. +So, on her renewing her promise to call me if she should want anything, +I lay on the sofa, and forgot all about everything. + + +_Lucy Westenra’s Diary._ + +_9 September._--I feel so happy to-night. I have been so miserably weak, +that to be able to think and move about is like feeling sunshine after +a long spell of east wind out of a steel sky. Somehow Arthur feels very, +very close to me. I seem to feel his presence warm about me. I suppose +it is that sickness and weakness are selfish things and turn our inner +eyes and sympathy on ourselves, whilst health and strength give Love +rein, and in thought and feeling he can wander where he wills. I know +where my thoughts are. If Arthur only knew! My dear, my dear, your ears +must tingle as you sleep, as mine do waking. Oh, the blissful rest of +last night! How I slept, with that dear, good Dr. Seward watching me. +And to-night I shall not fear to sleep, since he is close at hand and +within call. Thank everybody for being so good to me! Thank God! +Good-night, Arthur. + + +_Dr. Seward’s Diary._ + +_10 September._--I was conscious of the Professor’s hand on my head, and +started awake all in a second. That is one of the things that we learn +in an asylum, at any rate. + +“And how is our patient?” + +“Well, when I left her, or rather when she left me,” I answered. + +“Come, let us see,” he said. And together we went into the room. + +The blind was down, and I went over to raise it gently, whilst Van +Helsing stepped, with his soft, cat-like tread, over to the bed. + +As I raised the blind, and the morning sunlight flooded the room, I +heard the Professor’s low hiss of inspiration, and knowing its rarity, a +deadly fear shot through my heart. As I passed over he moved back, and +his exclamation of horror, “Gott in Himmel!” needed no enforcement from +his agonised face. He raised his hand and pointed to the bed, and his +iron face was drawn and ashen white. I felt my knees begin to tremble. + +There on the bed, seemingly in a swoon, lay poor Lucy, more horribly +white and wan-looking than ever. Even the lips were white, and the gums +seemed to have shrunken back from the teeth, as we sometimes see in a +corpse after a prolonged illness. Van Helsing raised his foot to stamp +in anger, but the instinct of his life and all the long years of habit +stood to him, and he put it down again softly. “Quick!” he said. “Bring +the brandy.” I flew to the dining-room, and returned with the decanter. +He wetted the poor white lips with it, and together we rubbed palm and +wrist and heart. He felt her heart, and after a few moments of agonising +suspense said:-- + +“It is not too late. It beats, though but feebly. All our work is +undone; we must begin again. There is no young Arthur here now; I have +to call on you yourself this time, friend John.” As he spoke, he was +dipping into his bag and producing the instruments for transfusion; I +had taken off my coat and rolled up my shirt-sleeve. There was no +possibility of an opiate just at present, and no need of one; and so, +without a moment’s delay, we began the operation. After a time--it did +not seem a short time either, for the draining away of one’s blood, no +matter how willingly it be given, is a terrible feeling--Van Helsing +held up a warning finger. “Do not stir,” he said, “but I fear that with +growing strength she may wake; and that would make danger, oh, so much +danger. But I shall precaution take. I shall give hypodermic injection +of morphia.” He proceeded then, swiftly and deftly, to carry out his +intent. The effect on Lucy was not bad, for the faint seemed to merge +subtly into the narcotic sleep. It was with a feeling of personal pride +that I could see a faint tinge of colour steal back into the pallid +cheeks and lips. No man knows, till he experiences it, what it is to +feel his own life-blood drawn away into the veins of the woman he loves. + +The Professor watched me critically. “That will do,” he said. “Already?” +I remonstrated. “You took a great deal more from Art.” To which he +smiled a sad sort of smile as he replied:-- + +“He is her lover, her _fiancé_. You have work, much work, to do for her +and for others; and the present will suffice.” + +When we stopped the operation, he attended to Lucy, whilst I applied +digital pressure to my own incision. I laid down, whilst I waited his +leisure to attend to me, for I felt faint and a little sick. By-and-by +he bound up my wound, and sent me downstairs to get a glass of wine for +myself. As I was leaving the room, he came after me, and half +whispered:-- + +“Mind, nothing must be said of this. If our young lover should turn up +unexpected, as before, no word to him. It would at once frighten him and +enjealous him, too. There must be none. So!” + +When I came back he looked at me carefully, and then said:-- + +“You are not much the worse. Go into the room, and lie on your sofa, and +rest awhile; then have much breakfast, and come here to me.” + +I followed out his orders, for I knew how right and wise they were. I +had done my part, and now my next duty was to keep up my strength. I +felt very weak, and in the weakness lost something of the amazement at +what had occurred. I fell asleep on the sofa, however, wondering over +and over again how Lucy had made such a retrograde movement, and how +she could have been drained of so much blood with no sign anywhere to +show for it. I think I must have continued my wonder in my dreams, for, +sleeping and waking, my thoughts always came back to the little +punctures in her throat and the ragged, exhausted appearance of their +edges--tiny though they were. + +Lucy slept well into the day, and when she woke she was fairly well and +strong, though not nearly so much so as the day before. When Van Helsing +had seen her, he went out for a walk, leaving me in charge, with strict +injunctions that I was not to leave her for a moment. I could hear his +voice in the hall, asking the way to the nearest telegraph office. + +Lucy chatted with me freely, and seemed quite unconscious that anything +had happened. I tried to keep her amused and interested. When her mother +came up to see her, she did not seem to notice any change whatever, but +said to me gratefully:-- + +“We owe you so much, Dr. Seward, for all you have done, but you really +must now take care not to overwork yourself. You are looking pale +yourself. You want a wife to nurse and look after you a bit; that you +do!” As she spoke, Lucy turned crimson, though it was only momentarily, +for her poor wasted veins could not stand for long such an unwonted +drain to the head. The reaction came in excessive pallor as she turned +imploring eyes on me. I smiled and nodded, and laid my finger on my +lips; with a sigh, she sank back amid her pillows. + +Van Helsing returned in a couple of hours, and presently said to me: +“Now you go home, and eat much and drink enough. Make yourself strong. I +stay here to-night, and I shall sit up with little miss myself. You and +I must watch the case, and we must have none other to know. I have grave +reasons. No, do not ask them; think what you will. Do not fear to think +even the most not-probable. Good-night.” + +In the hall two of the maids came to me, and asked if they or either of +them might not sit up with Miss Lucy. They implored me to let them; and +when I said it was Dr. Van Helsing’s wish that either he or I should sit +up, they asked me quite piteously to intercede with the “foreign +gentleman.” I was much touched by their kindness. Perhaps it is because +I am weak at present, and perhaps because it was on Lucy’s account, that +their devotion was manifested; for over and over again have I seen +similar instances of woman’s kindness. I got back here in time for a +late dinner; went my rounds--all well; and set this down whilst waiting +for sleep. It is coming. + + * * * * * + +_11 September._--This afternoon I went over to Hillingham. Found Van +Helsing in excellent spirits, and Lucy much better. Shortly after I had +arrived, a big parcel from abroad came for the Professor. He opened it +with much impressment--assumed, of course--and showed a great bundle of +white flowers. + +“These are for you, Miss Lucy,” he said. + +“For me? Oh, Dr. Van Helsing!” + +“Yes, my dear, but not for you to play with. These are medicines.” Here +Lucy made a wry face. “Nay, but they are not to take in a decoction or +in nauseous form, so you need not snub that so charming nose, or I shall +point out to my friend Arthur what woes he may have to endure in seeing +so much beauty that he so loves so much distort. Aha, my pretty miss, +that bring the so nice nose all straight again. This is medicinal, but +you do not know how. I put him in your window, I make pretty wreath, and +hang him round your neck, so that you sleep well. Oh yes! they, like the +lotus flower, make your trouble forgotten. It smell so like the waters +of Lethe, and of that fountain of youth that the Conquistadores sought +for in the Floridas, and find him all too late.” + +Whilst he was speaking, Lucy had been examining the flowers and smelling +them. Now she threw them down, saying, with half-laughter, and +half-disgust:-- + +“Oh, Professor, I believe you are only putting up a joke on me. Why, +these flowers are only common garlic.” + +To my surprise, Van Helsing rose up and said with all his sternness, his +iron jaw set and his bushy eyebrows meeting:-- + +“No trifling with me! I never jest! There is grim purpose in all I do; +and I warn you that you do not thwart me. Take care, for the sake of +others if not for your own.” Then seeing poor Lucy scared, as she might +well be, he went on more gently: “Oh, little miss, my dear, do not fear +me. I only do for your good; but there is much virtue to you in those so +common flowers. See, I place them myself in your room. I make myself the +wreath that you are to wear. But hush! no telling to others that make so +inquisitive questions. We must obey, and silence is a part of obedience; +and obedience is to bring you strong and well into loving arms that wait +for you. Now sit still awhile. Come with me, friend John, and you shall +help me deck the room with my garlic, which is all the way from Haarlem, +where my friend Vanderpool raise herb in his glass-houses all the year. +I had to telegraph yesterday, or they would not have been here.” + +We went into the room, taking the flowers with us. The Professor’s +actions were certainly odd and not to be found in any pharmacopoeia +that I ever heard of. First he fastened up the windows and latched them +securely; next, taking a handful of the flowers, he rubbed them all over +the sashes, as though to ensure that every whiff of air that might get +in would be laden with the garlic smell. Then with the wisp he rubbed +all over the jamb of the door, above, below, and at each side, and round +the fireplace in the same way. It all seemed grotesque to me, and +presently I said:-- + +“Well, Professor, I know you always have a reason for what you do, but +this certainly puzzles me. It is well we have no sceptic here, or he +would say that you were working some spell to keep out an evil spirit.” + +“Perhaps I am!” he answered quietly as he began to make the wreath which +Lucy was to wear round her neck. + +We then waited whilst Lucy made her toilet for the night, and when she +was in bed he came and himself fixed the wreath of garlic round her +neck. The last words he said to her were:-- + +“Take care you do not disturb it; and even if the room feel close, do +not to-night open the window or the door.” + +“I promise,” said Lucy, “and thank you both a thousand times for all +your kindness to me! Oh, what have I done to be blessed with such +friends?” + +As we left the house in my fly, which was waiting, Van Helsing said:-- + +“To-night I can sleep in peace, and sleep I want--two nights of travel, +much reading in the day between, and much anxiety on the day to follow, +and a night to sit up, without to wink. To-morrow in the morning early +you call for me, and we come together to see our pretty miss, so much +more strong for my ‘spell’ which I have work. Ho! ho!” + +He seemed so confident that I, remembering my own confidence two nights +before and with the baneful result, felt awe and vague terror. It must +have been my weakness that made me hesitate to tell it to my friend, but +I felt it all the more, like unshed tears. + + + + +CHAPTER XI + +_Lucy Westenra’s Diary._ + + +_12 September._--How good they all are to me. I quite love that dear Dr. +Van Helsing. I wonder why he was so anxious about these flowers. He +positively frightened me, he was so fierce. And yet he must have been +right, for I feel comfort from them already. Somehow, I do not dread +being alone to-night, and I can go to sleep without fear. I shall not +mind any flapping outside the window. Oh, the terrible struggle that I +have had against sleep so often of late; the pain of the sleeplessness, +or the pain of the fear of sleep, with such unknown horrors as it has +for me! How blessed are some people, whose lives have no fears, no +dreads; to whom sleep is a blessing that comes nightly, and brings +nothing but sweet dreams. Well, here I am to-night, hoping for sleep, +and lying like Ophelia in the play, with “virgin crants and maiden +strewments.” I never liked garlic before, but to-night it is delightful! +There is peace in its smell; I feel sleep coming already. Good-night, +everybody. + + +_Dr. Seward’s Diary._ + +_13 September._--Called at the Berkeley and found Van Helsing, as usual, +up to time. The carriage ordered from the hotel was waiting. The +Professor took his bag, which he always brings with him now. + +Let all be put down exactly. Van Helsing and I arrived at Hillingham at +eight o’clock. It was a lovely morning; the bright sunshine and all the +fresh feeling of early autumn seemed like the completion of nature’s +annual work. The leaves were turning to all kinds of beautiful colours, +but had not yet begun to drop from the trees. When we entered we met +Mrs. Westenra coming out of the morning room. She is always an early +riser. She greeted us warmly and said:-- + +“You will be glad to know that Lucy is better. The dear child is still +asleep. I looked into her room and saw her, but did not go in, lest I +should disturb her.” The Professor smiled, and looked quite jubilant. He +rubbed his hands together, and said:-- + +“Aha! I thought I had diagnosed the case. My treatment is working,” to +which she answered:-- + +“You must not take all the credit to yourself, doctor. Lucy’s state this +morning is due in part to me.” + +“How you do mean, ma’am?” asked the Professor. + +“Well, I was anxious about the dear child in the night, and went into +her room. She was sleeping soundly--so soundly that even my coming did +not wake her. But the room was awfully stuffy. There were a lot of those +horrible, strong-smelling flowers about everywhere, and she had actually +a bunch of them round her neck. I feared that the heavy odour would be +too much for the dear child in her weak state, so I took them all away +and opened a bit of the window to let in a little fresh air. You will be +pleased with her, I am sure.” + +She moved off into her boudoir, where she usually breakfasted early. As +she had spoken, I watched the Professor’s face, and saw it turn ashen +grey. He had been able to retain his self-command whilst the poor lady +was present, for he knew her state and how mischievous a shock would be; +he actually smiled on her as he held open the door for her to pass into +her room. But the instant she had disappeared he pulled me, suddenly and +forcibly, into the dining-room and closed the door. + +Then, for the first time in my life, I saw Van Helsing break down. He +raised his hands over his head in a sort of mute despair, and then beat +his palms together in a helpless way; finally he sat down on a chair, +and putting his hands before his face, began to sob, with loud, dry sobs +that seemed to come from the very racking of his heart. Then he raised +his arms again, as though appealing to the whole universe. “God! God! +God!” he said. “What have we done, what has this poor thing done, that +we are so sore beset? Is there fate amongst us still, sent down from the +pagan world of old, that such things must be, and in such way? This poor +mother, all unknowing, and all for the best as she think, does such +thing as lose her daughter body and soul; and we must not tell her, we +must not even warn her, or she die, and then both die. Oh, how we are +beset! How are all the powers of the devils against us!” Suddenly he +jumped to his feet. “Come,” he said, “come, we must see and act. Devils +or no devils, or all the devils at once, it matters not; we fight him +all the same.” He went to the hall-door for his bag; and together we +went up to Lucy’s room. + +Once again I drew up the blind, whilst Van Helsing went towards the bed. +This time he did not start as he looked on the poor face with the same +awful, waxen pallor as before. He wore a look of stern sadness and +infinite pity. + +“As I expected,” he murmured, with that hissing inspiration of his which +meant so much. Without a word he went and locked the door, and then +began to set out on the little table the instruments for yet another +operation of transfusion of blood. I had long ago recognised the +necessity, and begun to take off my coat, but he stopped me with a +warning hand. “No!” he said. “To-day you must operate. I shall provide. +You are weakened already.” As he spoke he took off his coat and rolled +up his shirt-sleeve. + +Again the operation; again the narcotic; again some return of colour to +the ashy cheeks, and the regular breathing of healthy sleep. This time I +watched whilst Van Helsing recruited himself and rested. + +Presently he took an opportunity of telling Mrs. Westenra that she must +not remove anything from Lucy’s room without consulting him; that the +flowers were of medicinal value, and that the breathing of their odour +was a part of the system of cure. Then he took over the care of the case +himself, saying that he would watch this night and the next and would +send me word when to come. + +After another hour Lucy waked from her sleep, fresh and bright and +seemingly not much the worse for her terrible ordeal. + +What does it all mean? I am beginning to wonder if my long habit of life +amongst the insane is beginning to tell upon my own brain. + + +_Lucy Westenra’s Diary._ + +_17 September._--Four days and nights of peace. I am getting so strong +again that I hardly know myself. It is as if I had passed through some +long nightmare, and had just awakened to see the beautiful sunshine and +feel the fresh air of the morning around me. I have a dim +half-remembrance of long, anxious times of waiting and fearing; darkness +in which there was not even the pain of hope to make present distress +more poignant: and then long spells of oblivion, and the rising back to +life as a diver coming up through a great press of water. Since, +however, Dr. Van Helsing has been with me, all this bad dreaming seems +to have passed away; the noises that used to frighten me out of my +wits--the flapping against the windows, the distant voices which seemed +so close to me, the harsh sounds that came from I know not where and +commanded me to do I know not what--have all ceased. I go to bed now +without any fear of sleep. I do not even try to keep awake. I have grown +quite fond of the garlic, and a boxful arrives for me every day from +Haarlem. To-night Dr. Van Helsing is going away, as he has to be for a +day in Amsterdam. But I need not be watched; I am well enough to be left +alone. Thank God for mother’s sake, and dear Arthur’s, and for all our +friends who have been so kind! I shall not even feel the change, for +last night Dr. Van Helsing slept in his chair a lot of the time. I found +him asleep twice when I awoke; but I did not fear to go to sleep again, +although the boughs or bats or something napped almost angrily against +the window-panes. + + +_“The Pall Mall Gazette,” 18 September._ + + THE ESCAPED WOLF. + + PERILOUS ADVENTURE OF OUR INTERVIEWER. + + _Interview with the Keeper in the Zoölogical Gardens._ + +After many inquiries and almost as many refusals, and perpetually using +the words “Pall Mall Gazette” as a sort of talisman, I managed to find +the keeper of the section of the Zoölogical Gardens in which the wolf +department is included. Thomas Bilder lives in one of the cottages in +the enclosure behind the elephant-house, and was just sitting down to +his tea when I found him. Thomas and his wife are hospitable folk, +elderly, and without children, and if the specimen I enjoyed of their +hospitality be of the average kind, their lives must be pretty +comfortable. The keeper would not enter on what he called “business” +until the supper was over, and we were all satisfied. Then when the +table was cleared, and he had lit his pipe, he said:-- + +“Now, sir, you can go on and arsk me what you want. You’ll excoose me +refoosin’ to talk of perfeshunal subjects afore meals. I gives the +wolves and the jackals and the hyenas in all our section their tea afore +I begins to arsk them questions.” + +“How do you mean, ask them questions?” I queried, wishful to get him +into a talkative humour. + +“’Ittin’ of them over the ’ead with a pole is one way; scratchin’ of +their hears is another, when gents as is flush wants a bit of a show-orf +to their gals. I don’t so much mind the fust--the ’ittin’ with a pole +afore I chucks in their dinner; but I waits till they’ve ’ad their +sherry and kawffee, so to speak, afore I tries on with the +ear-scratchin’. Mind you,” he added philosophically, “there’s a deal of +the same nature in us as in them theer animiles. Here’s you a-comin’ and +arskin’ of me questions about my business, and I that grumpy-like that +only for your bloomin’ ’arf-quid I’d ’a’ seen you blowed fust ’fore I’d +answer. Not even when you arsked me sarcastic-like if I’d like you to +arsk the Superintendent if you might arsk me questions. Without offence +did I tell yer to go to ’ell?” + +“You did.” + +“An’ when you said you’d report me for usin’ of obscene language that +was ’ittin’ me over the ’ead; but the ’arf-quid made that all right. I +weren’t a-goin’ to fight, so I waited for the food, and did with my ’owl +as the wolves, and lions, and tigers does. But, Lor’ love yer ’art, now +that the old ’ooman has stuck a chunk of her tea-cake in me, an’ rinsed +me out with her bloomin’ old teapot, and I’ve lit hup, you may scratch +my ears for all you’re worth, and won’t git even a growl out of me. +Drive along with your questions. I know what yer a-comin’ at, that ’ere +escaped wolf.” + +“Exactly. I want you to give me your view of it. Just tell me how it +happened; and when I know the facts I’ll get you to say what you +consider was the cause of it, and how you think the whole affair will +end.” + +“All right, guv’nor. This ’ere is about the ’ole story. That ’ere wolf +what we called Bersicker was one of three grey ones that came from +Norway to Jamrach’s, which we bought off him four years ago. He was a +nice well-behaved wolf, that never gave no trouble to talk of. I’m more +surprised at ’im for wantin’ to get out nor any other animile in the +place. But, there, you can’t trust wolves no more nor women.” + +“Don’t you mind him, sir!” broke in Mrs. Tom, with a cheery laugh. “’E’s +got mindin’ the animiles so long that blest if he ain’t like a old wolf +’isself! But there ain’t no ’arm in ’im.” + +“Well, sir, it was about two hours after feedin’ yesterday when I first +hear my disturbance. I was makin’ up a litter in the monkey-house for a +young puma which is ill; but when I heard the yelpin’ and ’owlin’ I kem +away straight. There was Bersicker a-tearin’ like a mad thing at the +bars as if he wanted to get out. There wasn’t much people about that +day, and close at hand was only one man, a tall, thin chap, with a ’ook +nose and a pointed beard, with a few white hairs runnin’ through it. He +had a ’ard, cold look and red eyes, and I took a sort of mislike to him, +for it seemed as if it was ’im as they was hirritated at. He ’ad white +kid gloves on ’is ’ands, and he pointed out the animiles to me and says: +‘Keeper, these wolves seem upset at something.’ + +“‘Maybe it’s you,’ says I, for I did not like the airs as he give +’isself. He didn’t git angry, as I ’oped he would, but he smiled a kind +of insolent smile, with a mouth full of white, sharp teeth. ‘Oh no, they +wouldn’t like me,’ ’e says. + +“‘Ow yes, they would,’ says I, a-imitatin’ of him. ‘They always likes a +bone or two to clean their teeth on about tea-time, which you ’as a +bagful.’ + +“Well, it was a odd thing, but when the animiles see us a-talkin’ they +lay down, and when I went over to Bersicker he let me stroke his ears +same as ever. That there man kem over, and blessed but if he didn’t put +in his hand and stroke the old wolf’s ears too! + +“‘Tyke care,’ says I. ‘Bersicker is quick.’ + +“‘Never mind,’ he says. ‘I’m used to ’em!’ + +“‘Are you in the business yourself?’ I says, tyking off my ’at, for a +man what trades in wolves, anceterer, is a good friend to keepers. + +“‘No,’ says he, ‘not exactly in the business, but I ’ave made pets of +several.’ And with that he lifts his ’at as perlite as a lord, and walks +away. Old Bersicker kep’ a-lookin’ arter ’im till ’e was out of sight, +and then went and lay down in a corner and wouldn’t come hout the ’ole +hevening. Well, larst night, so soon as the moon was hup, the wolves +here all began a-’owling. There warn’t nothing for them to ’owl at. +There warn’t no one near, except some one that was evidently a-callin’ a +dog somewheres out back of the gardings in the Park road. Once or twice +I went out to see that all was right, and it was, and then the ’owling +stopped. Just before twelve o’clock I just took a look round afore +turnin’ in, an’, bust me, but when I kem opposite to old Bersicker’s +cage I see the rails broken and twisted about and the cage empty. And +that’s all I know for certing.” + +“Did any one else see anything?” + +“One of our gard’ners was a-comin’ ’ome about that time from a ’armony, +when he sees a big grey dog comin’ out through the garding ’edges. At +least, so he says, but I don’t give much for it myself, for if he did ’e +never said a word about it to his missis when ’e got ’ome, and it was +only after the escape of the wolf was made known, and we had been up all +night-a-huntin’ of the Park for Bersicker, that he remembered seein’ +anything. My own belief was that the ’armony ’ad got into his ’ead.” + +“Now, Mr. Bilder, can you account in any way for the escape of the +wolf?” + +“Well, sir,” he said, with a suspicious sort of modesty, “I think I can; +but I don’t know as ’ow you’d be satisfied with the theory.” + +“Certainly I shall. If a man like you, who knows the animals from +experience, can’t hazard a good guess at any rate, who is even to try?” + +“Well then, sir, I accounts for it this way; it seems to me that ’ere +wolf escaped--simply because he wanted to get out.” + +From the hearty way that both Thomas and his wife laughed at the joke I +could see that it had done service before, and that the whole +explanation was simply an elaborate sell. I couldn’t cope in badinage +with the worthy Thomas, but I thought I knew a surer way to his heart, +so I said:-- + +“Now, Mr. Bilder, we’ll consider that first half-sovereign worked off, +and this brother of his is waiting to be claimed when you’ve told me +what you think will happen.” + +“Right y’are, sir,” he said briskly. “Ye’ll excoose me, I know, for +a-chaffin’ of ye, but the old woman here winked at me, which was as much +as telling me to go on.” + +“Well, I never!” said the old lady. + +“My opinion is this: that ’ere wolf is a-’idin’ of, somewheres. The +gard’ner wot didn’t remember said he was a-gallopin’ northward faster +than a horse could go; but I don’t believe him, for, yer see, sir, +wolves don’t gallop no more nor dogs does, they not bein’ built that +way. Wolves is fine things in a storybook, and I dessay when they gets +in packs and does be chivyin’ somethin’ that’s more afeared than they is +they can make a devil of a noise and chop it up, whatever it is. But, +Lor’ bless you, in real life a wolf is only a low creature, not half so +clever or bold as a good dog; and not half a quarter so much fight in +’im. This one ain’t been used to fightin’ or even to providin’ for +hisself, and more like he’s somewhere round the Park a-’idin’ an’ +a-shiverin’ of, and, if he thinks at all, wonderin’ where he is to get +his breakfast from; or maybe he’s got down some area and is in a +coal-cellar. My eye, won’t some cook get a rum start when she sees his +green eyes a-shining at her out of the dark! If he can’t get food he’s +bound to look for it, and mayhap he may chance to light on a butcher’s +shop in time. If he doesn’t, and some nursemaid goes a-walkin’ orf with +a soldier, leavin’ of the hinfant in the perambulator--well, then I +shouldn’t be surprised if the census is one babby the less. That’s +all.” + +I was handing him the half-sovereign, when something came bobbing up +against the window, and Mr. Bilder’s face doubled its natural length +with surprise. + +“God bless me!” he said. “If there ain’t old Bersicker come back by +’isself!” + +He went to the door and opened it; a most unnecessary proceeding it +seemed to me. I have always thought that a wild animal never looks so +well as when some obstacle of pronounced durability is between us; a +personal experience has intensified rather than diminished that idea. + +After all, however, there is nothing like custom, for neither Bilder nor +his wife thought any more of the wolf than I should of a dog. The animal +itself was as peaceful and well-behaved as that father of all +picture-wolves--Red Riding Hood’s quondam friend, whilst moving her +confidence in masquerade. + +The whole scene was an unutterable mixture of comedy and pathos. The +wicked wolf that for half a day had paralysed London and set all the +children in the town shivering in their shoes, was there in a sort of +penitent mood, and was received and petted like a sort of vulpine +prodigal son. Old Bilder examined him all over with most tender +solicitude, and when he had finished with his penitent said:-- + +“There, I knew the poor old chap would get into some kind of trouble; +didn’t I say it all along? Here’s his head all cut and full of broken +glass. ’E’s been a-gettin’ over some bloomin’ wall or other. It’s a +shyme that people are allowed to top their walls with broken bottles. +This ’ere’s what comes of it. Come along, Bersicker.” + +He took the wolf and locked him up in a cage, with a piece of meat that +satisfied, in quantity at any rate, the elementary conditions of the +fatted calf, and went off to report. + +I came off, too, to report the only exclusive information that is given +to-day regarding the strange escapade at the Zoo. + + +_Dr. Seward’s Diary._ + +_17 September._--I was engaged after dinner in my study posting up my +books, which, through press of other work and the many visits to Lucy, +had fallen sadly into arrear. Suddenly the door was burst open, and in +rushed my patient, with his face distorted with passion. I was +thunderstruck, for such a thing as a patient getting of his own accord +into the Superintendent’s study is almost unknown. Without an instant’s +pause he made straight at me. He had a dinner-knife in his hand, and, +as I saw he was dangerous, I tried to keep the table between us. He was +too quick and too strong for me, however; for before I could get my +balance he had struck at me and cut my left wrist rather severely. +Before he could strike again, however, I got in my right and he was +sprawling on his back on the floor. My wrist bled freely, and quite a +little pool trickled on to the carpet. I saw that my friend was not +intent on further effort, and occupied myself binding up my wrist, +keeping a wary eye on the prostrate figure all the time. When the +attendants rushed in, and we turned our attention to him, his employment +positively sickened me. He was lying on his belly on the floor licking +up, like a dog, the blood which had fallen from my wounded wrist. He was +easily secured, and, to my surprise, went with the attendants quite +placidly, simply repeating over and over again: “The blood is the life! +The blood is the life!” + +I cannot afford to lose blood just at present; I have lost too much of +late for my physical good, and then the prolonged strain of Lucy’s +illness and its horrible phases is telling on me. I am over-excited and +weary, and I need rest, rest, rest. Happily Van Helsing has not summoned +me, so I need not forego my sleep; to-night I could not well do without +it. + + +_Telegram, Van Helsing, Antwerp, to Seward, Carfax._ + +(Sent to Carfax, Sussex, as no county given; delivered late by +twenty-two hours.) + +“_17 September._--Do not fail to be at Hillingham to-night. If not +watching all the time frequently, visit and see that flowers are as +placed; very important; do not fail. Shall be with you as soon as +possible after arrival.” + + +_Dr. Seward’s Diary._ + +_18 September._--Just off for train to London. The arrival of Van +Helsing’s telegram filled me with dismay. A whole night lost, and I know +by bitter experience what may happen in a night. Of course it is +possible that all may be well, but what _may_ have happened? Surely +there is some horrible doom hanging over us that every possible accident +should thwart us in all we try to do. I shall take this cylinder with +me, and then I can complete my entry on Lucy’s phonograph. + + +_Memorandum left by Lucy Westenra._ + +_17 September. Night._--I write this and leave it to be seen, so that no +one may by any chance get into trouble through me. This is an exact +record of what took place to-night. I feel I am dying of weakness, and +have barely strength to write, but it must be done if I die in the +doing. + +I went to bed as usual, taking care that the flowers were placed as Dr. +Van Helsing directed, and soon fell asleep. + +I was waked by the flapping at the window, which had begun after that +sleep-walking on the cliff at Whitby when Mina saved me, and which now I +know so well. I was not afraid, but I did wish that Dr. Seward was in +the next room--as Dr. Van Helsing said he would be--so that I might have +called him. I tried to go to sleep, but could not. Then there came to me +the old fear of sleep, and I determined to keep awake. Perversely sleep +would try to come then when I did not want it; so, as I feared to be +alone, I opened my door and called out: “Is there anybody there?” There +was no answer. I was afraid to wake mother, and so closed my door again. +Then outside in the shrubbery I heard a sort of howl like a dog’s, but +more fierce and deeper. I went to the window and looked out, but could +see nothing, except a big bat, which had evidently been buffeting its +wings against the window. So I went back to bed again, but determined +not to go to sleep. Presently the door opened, and mother looked in; +seeing by my moving that I was not asleep, came in, and sat by me. She +said to me even more sweetly and softly than her wont:-- + +“I was uneasy about you, darling, and came in to see that you were all +right.” + +I feared she might catch cold sitting there, and asked her to come in +and sleep with me, so she came into bed, and lay down beside me; she did +not take off her dressing gown, for she said she would only stay a while +and then go back to her own bed. As she lay there in my arms, and I in +hers, the flapping and buffeting came to the window again. She was +startled and a little frightened, and cried out: “What is that?” I tried +to pacify her, and at last succeeded, and she lay quiet; but I could +hear her poor dear heart still beating terribly. After a while there was +the low howl again out in the shrubbery, and shortly after there was a +crash at the window, and a lot of broken glass was hurled on the floor. +The window blind blew back with the wind that rushed in, and in the +aperture of the broken panes there was the head of a great, gaunt grey +wolf. Mother cried out in a fright, and struggled up into a sitting +posture, and clutched wildly at anything that would help her. Amongst +other things, she clutched the wreath of flowers that Dr. Van Helsing +insisted on my wearing round my neck, and tore it away from me. For a +second or two she sat up, pointing at the wolf, and there was a strange +and horrible gurgling in her throat; then she fell over--as if struck +with lightning, and her head hit my forehead and made me dizzy for a +moment or two. The room and all round seemed to spin round. I kept my +eyes fixed on the window, but the wolf drew his head back, and a whole +myriad of little specks seemed to come blowing in through the broken +window, and wheeling and circling round like the pillar of dust that +travellers describe when there is a simoon in the desert. I tried to +stir, but there was some spell upon me, and dear mother’s poor body, +which seemed to grow cold already--for her dear heart had ceased to +beat--weighed me down; and I remembered no more for a while. + +The time did not seem long, but very, very awful, till I recovered +consciousness again. Somewhere near, a passing bell was tolling; the +dogs all round the neighbourhood were howling; and in our shrubbery, +seemingly just outside, a nightingale was singing. I was dazed and +stupid with pain and terror and weakness, but the sound of the +nightingale seemed like the voice of my dead mother come back to comfort +me. The sounds seemed to have awakened the maids, too, for I could hear +their bare feet pattering outside my door. I called to them, and they +came in, and when they saw what had happened, and what it was that lay +over me on the bed, they screamed out. The wind rushed in through the +broken window, and the door slammed to. They lifted off the body of my +dear mother, and laid her, covered up with a sheet, on the bed after I +had got up. They were all so frightened and nervous that I directed them +to go to the dining-room and have each a glass of wine. The door flew +open for an instant and closed again. The maids shrieked, and then went +in a body to the dining-room; and I laid what flowers I had on my dear +mother’s breast. When they were there I remembered what Dr. Van Helsing +had told me, but I didn’t like to remove them, and, besides, I would +have some of the servants to sit up with me now. I was surprised that +the maids did not come back. I called them, but got no answer, so I went +to the dining-room to look for them. + +My heart sank when I saw what had happened. They all four lay helpless +on the floor, breathing heavily. The decanter of sherry was on the table +half full, but there was a queer, acrid smell about. I was suspicious, +and examined the decanter. It smelt of laudanum, and looking on the +sideboard, I found that the bottle which mother’s doctor uses for +her--oh! did use--was empty. What am I to do? what am I to do? I am back +in the room with mother. I cannot leave her, and I am alone, save for +the sleeping servants, whom some one has drugged. Alone with the dead! I +dare not go out, for I can hear the low howl of the wolf through the +broken window. + +The air seems full of specks, floating and circling in the draught from +the window, and the lights burn blue and dim. What am I to do? God +shield me from harm this night! I shall hide this paper in my breast, +where they shall find it when they come to lay me out. My dear mother +gone! It is time that I go too. Good-bye, dear Arthur, if I should not +survive this night. God keep you, dear, and God help me! + + + + +CHAPTER XII + +DR. SEWARD’S DIARY + + +_18 September._--I drove at once to Hillingham and arrived early. +Keeping my cab at the gate, I went up the avenue alone. I knocked gently +and rang as quietly as possible, for I feared to disturb Lucy or her +mother, and hoped to only bring a servant to the door. After a while, +finding no response, I knocked and rang again; still no answer. I cursed +the laziness of the servants that they should lie abed at such an +hour--for it was now ten o’clock--and so rang and knocked again, but +more impatiently, but still without response. Hitherto I had blamed only +the servants, but now a terrible fear began to assail me. Was this +desolation but another link in the chain of doom which seemed drawing +tight around us? Was it indeed a house of death to which I had come, too +late? I knew that minutes, even seconds of delay, might mean hours of +danger to Lucy, if she had had again one of those frightful relapses; +and I went round the house to try if I could find by chance an entry +anywhere. + +I could find no means of ingress. Every window and door was fastened and +locked, and I returned baffled to the porch. As I did so, I heard the +rapid pit-pat of a swiftly driven horse’s feet. They stopped at the +gate, and a few seconds later I met Van Helsing running up the avenue. +When he saw me, he gasped out:-- + +“Then it was you, and just arrived. How is she? Are we too late? Did you +not get my telegram?” + +I answered as quickly and coherently as I could that I had only got his +telegram early in the morning, and had not lost a minute in coming here, +and that I could not make any one in the house hear me. He paused and +raised his hat as he said solemnly:-- + +“Then I fear we are too late. God’s will be done!” With his usual +recuperative energy, he went on: “Come. If there be no way open to get +in, we must make one. Time is all in all to us now.” + +We went round to the back of the house, where there was a kitchen +window. The Professor took a small surgical saw from his case, and +handing it to me, pointed to the iron bars which guarded the window. I +attacked them at once and had very soon cut through three of them. Then +with a long, thin knife we pushed back the fastening of the sashes and +opened the window. I helped the Professor in, and followed him. There +was no one in the kitchen or in the servants’ rooms, which were close at +hand. We tried all the rooms as we went along, and in the dining-room, +dimly lit by rays of light through the shutters, found four +servant-women lying on the floor. There was no need to think them dead, +for their stertorous breathing and the acrid smell of laudanum in the +room left no doubt as to their condition. Van Helsing and I looked at +each other, and as we moved away he said: “We can attend to them later.” +Then we ascended to Lucy’s room. For an instant or two we paused at the +door to listen, but there was no sound that we could hear. With white +faces and trembling hands, we opened the door gently, and entered the +room. + +How shall I describe what we saw? On the bed lay two women, Lucy and her +mother. The latter lay farthest in, and she was covered with a white +sheet, the edge of which had been blown back by the draught through the +broken window, showing the drawn, white face, with a look of terror +fixed upon it. By her side lay Lucy, with face white and still more +drawn. The flowers which had been round her neck we found upon her +mother’s bosom, and her throat was bare, showing the two little wounds +which we had noticed before, but looking horribly white and mangled. +Without a word the Professor bent over the bed, his head almost touching +poor Lucy’s breast; then he gave a quick turn of his head, as of one who +listens, and leaping to his feet, he cried out to me:-- + +“It is not yet too late! Quick! quick! Bring the brandy!” + +I flew downstairs and returned with it, taking care to smell and taste +it, lest it, too, were drugged like the decanter of sherry which I found +on the table. The maids were still breathing, but more restlessly, and I +fancied that the narcotic was wearing off. I did not stay to make sure, +but returned to Van Helsing. He rubbed the brandy, as on another +occasion, on her lips and gums and on her wrists and the palms of her +hands. He said to me:-- + +“I can do this, all that can be at the present. You go wake those maids. +Flick them in the face with a wet towel, and flick them hard. Make them +get heat and fire and a warm bath. This poor soul is nearly as cold as +that beside her. She will need be heated before we can do anything +more.” + +I went at once, and found little difficulty in waking three of the +women. The fourth was only a young girl, and the drug had evidently +affected her more strongly, so I lifted her on the sofa and let her +sleep. The others were dazed at first, but as remembrance came back to +them they cried and sobbed in a hysterical manner. I was stern with +them, however, and would not let them talk. I told them that one life +was bad enough to lose, and that if they delayed they would sacrifice +Miss Lucy. So, sobbing and crying, they went about their way, half clad +as they were, and prepared fire and water. Fortunately, the kitchen and +boiler fires were still alive, and there was no lack of hot water. We +got a bath and carried Lucy out as she was and placed her in it. Whilst +we were busy chafing her limbs there was a knock at the hall door. One +of the maids ran off, hurried on some more clothes, and opened it. Then +she returned and whispered to us that there was a gentleman who had come +with a message from Mr. Holmwood. I bade her simply tell him that he +must wait, for we could see no one now. She went away with the message, +and, engrossed with our work, I clean forgot all about him. + +I never saw in all my experience the Professor work in such deadly +earnest. I knew--as he knew--that it was a stand-up fight with death, +and in a pause told him so. He answered me in a way that I did not +understand, but with the sternest look that his face could wear:-- + +“If that were all, I would stop here where we are now, and let her fade +away into peace, for I see no light in life over her horizon.” He went +on with his work with, if possible, renewed and more frenzied vigour. + +Presently we both began to be conscious that the heat was beginning to +be of some effect. Lucy’s heart beat a trifle more audibly to the +stethoscope, and her lungs had a perceptible movement. Van Helsing’s +face almost beamed, and as we lifted her from the bath and rolled her in +a hot sheet to dry her he said to me:-- + +“The first gain is ours! Check to the King!” + +We took Lucy into another room, which had by now been prepared, and laid +her in bed and forced a few drops of brandy down her throat. I noticed +that Van Helsing tied a soft silk handkerchief round her throat. She was +still unconscious, and was quite as bad as, if not worse than, we had +ever seen her. + +Van Helsing called in one of the women, and told her to stay with her +and not to take her eyes off her till we returned, and then beckoned me +out of the room. + +“We must consult as to what is to be done,” he said as we descended the +stairs. In the hall he opened the dining-room door, and we passed in, he +closing the door carefully behind him. The shutters had been opened, but +the blinds were already down, with that obedience to the etiquette of +death which the British woman of the lower classes always rigidly +observes. The room was, therefore, dimly dark. It was, however, light +enough for our purposes. Van Helsing’s sternness was somewhat relieved +by a look of perplexity. He was evidently torturing his mind about +something, so I waited for an instant, and he spoke:-- + +“What are we to do now? Where are we to turn for help? We must have +another transfusion of blood, and that soon, or that poor girl’s life +won’t be worth an hour’s purchase. You are exhausted already; I am +exhausted too. I fear to trust those women, even if they would have +courage to submit. What are we to do for some one who will open his +veins for her?” + +“What’s the matter with me, anyhow?” + +The voice came from the sofa across the room, and its tones brought +relief and joy to my heart, for they were those of Quincey Morris. Van +Helsing started angrily at the first sound, but his face softened and a +glad look came into his eyes as I cried out: “Quincey Morris!” and +rushed towards him with outstretched hands. + +“What brought you here?” I cried as our hands met. + +“I guess Art is the cause.” + +He handed me a telegram:-- + +“Have not heard from Seward for three days, and am terribly anxious. +Cannot leave. Father still in same condition. Send me word how Lucy is. +Do not delay.--HOLMWOOD.” + +“I think I came just in the nick of time. You know you have only to tell +me what to do.” + +Van Helsing strode forward, and took his hand, looking him straight in +the eyes as he said:-- + +“A brave man’s blood is the best thing on this earth when a woman is in +trouble. You’re a man and no mistake. Well, the devil may work against +us for all he’s worth, but God sends us men when we want them.” + +Once again we went through that ghastly operation. I have not the heart +to go through with the details. Lucy had got a terrible shock and it +told on her more than before, for though plenty of blood went into her +veins, her body did not respond to the treatment as well as on the other +occasions. Her struggle back into life was something frightful to see +and hear. However, the action of both heart and lungs improved, and Van +Helsing made a subcutaneous injection of morphia, as before, and with +good effect. Her faint became a profound slumber. The Professor watched +whilst I went downstairs with Quincey Morris, and sent one of the maids +to pay off one of the cabmen who were waiting. I left Quincey lying down +after having a glass of wine, and told the cook to get ready a good +breakfast. Then a thought struck me, and I went back to the room where +Lucy now was. When I came softly in, I found Van Helsing with a sheet or +two of note-paper in his hand. He had evidently read it, and was +thinking it over as he sat with his hand to his brow. There was a look +of grim satisfaction in his face, as of one who has had a doubt solved. +He handed me the paper saying only: “It dropped from Lucy’s breast when +we carried her to the bath.” + +When I had read it, I stood looking at the Professor, and after a pause +asked him: “In God’s name, what does it all mean? Was she, or is she, +mad; or what sort of horrible danger is it?” I was so bewildered that I +did not know what to say more. Van Helsing put out his hand and took the +paper, saying:-- + +“Do not trouble about it now. Forget it for the present. You shall know +and understand it all in good time; but it will be later. And now what +is it that you came to me to say?” This brought me back to fact, and I +was all myself again. + +“I came to speak about the certificate of death. If we do not act +properly and wisely, there may be an inquest, and that paper would have +to be produced. I am in hopes that we need have no inquest, for if we +had it would surely kill poor Lucy, if nothing else did. I know, and you +know, and the other doctor who attended her knows, that Mrs. Westenra +had disease of the heart, and we can certify that she died of it. Let us +fill up the certificate at once, and I shall take it myself to the +registrar and go on to the undertaker.” + +“Good, oh my friend John! Well thought of! Truly Miss Lucy, if she be +sad in the foes that beset her, is at least happy in the friends that +love her. One, two, three, all open their veins for her, besides one old +man. Ah yes, I know, friend John; I am not blind! I love you all the +more for it! Now go.” + +In the hall I met Quincey Morris, with a telegram for Arthur telling him +that Mrs. Westenra was dead; that Lucy also had been ill, but was now +going on better; and that Van Helsing and I were with her. I told him +where I was going, and he hurried me out, but as I was going said:-- + +“When you come back, Jack, may I have two words with you all to +ourselves?” I nodded in reply and went out. I found no difficulty about +the registration, and arranged with the local undertaker to come up in +the evening to measure for the coffin and to make arrangements. + +When I got back Quincey was waiting for me. I told him I would see him +as soon as I knew about Lucy, and went up to her room. She was still +sleeping, and the Professor seemingly had not moved from his seat at her +side. From his putting his finger to his lips, I gathered that he +expected her to wake before long and was afraid of forestalling nature. +So I went down to Quincey and took him into the breakfast-room, where +the blinds were not drawn down, and which was a little more cheerful, or +rather less cheerless, than the other rooms. When we were alone, he said +to me:-- + +“Jack Seward, I don’t want to shove myself in anywhere where I’ve no +right to be; but this is no ordinary case. You know I loved that girl +and wanted to marry her; but, although that’s all past and gone, I can’t +help feeling anxious about her all the same. What is it that’s wrong +with her? The Dutchman--and a fine old fellow he is; I can see +that--said, that time you two came into the room, that you must have +_another_ transfusion of blood, and that both you and he were exhausted. +Now I know well that you medical men speak _in camera_, and that a man +must not expect to know what they consult about in private. But this is +no common matter, and, whatever it is, I have done my part. Is not that +so?” + +“That’s so,” I said, and he went on:-- + +“I take it that both you and Van Helsing had done already what I did +to-day. Is not that so?” + +“That’s so.” + +“And I guess Art was in it too. When I saw him four days ago down at his +own place he looked queer. I have not seen anything pulled down so quick +since I was on the Pampas and had a mare that I was fond of go to grass +all in a night. One of those big bats that they call vampires had got at +her in the night, and what with his gorge and the vein left open, there +wasn’t enough blood in her to let her stand up, and I had to put a +bullet through her as she lay. Jack, if you may tell me without +betraying confidence, Arthur was the first, is not that so?” As he spoke +the poor fellow looked terribly anxious. He was in a torture of suspense +regarding the woman he loved, and his utter ignorance of the terrible +mystery which seemed to surround her intensified his pain. His very +heart was bleeding, and it took all the manhood of him--and there was a +royal lot of it, too--to keep him from breaking down. I paused before +answering, for I felt that I must not betray anything which the +Professor wished kept secret; but already he knew so much, and guessed +so much, that there could be no reason for not answering, so I answered +in the same phrase: “That’s so.” + +“And how long has this been going on?” + +“About ten days.” + +“Ten days! Then I guess, Jack Seward, that that poor pretty creature +that we all love has had put into her veins within that time the blood +of four strong men. Man alive, her whole body wouldn’t hold it.” Then, +coming close to me, he spoke in a fierce half-whisper: “What took it +out?” + +I shook my head. “That,” I said, “is the crux. Van Helsing is simply +frantic about it, and I am at my wits’ end. I can’t even hazard a guess. +There has been a series of little circumstances which have thrown out +all our calculations as to Lucy being properly watched. But these shall +not occur again. Here we stay until all be well--or ill.” Quincey held +out his hand. “Count me in,” he said. “You and the Dutchman will tell me +what to do, and I’ll do it.” + +When she woke late in the afternoon, Lucy’s first movement was to feel +in her breast, and, to my surprise, produced the paper which Van Helsing +had given me to read. The careful Professor had replaced it where it had +come from, lest on waking she should be alarmed. Her eye then lit on Van +Helsing and on me too, and gladdened. Then she looked around the room, +and seeing where she was, shuddered; she gave a loud cry, and put her +poor thin hands before her pale face. We both understood what that +meant--that she had realised to the full her mother’s death; so we tried +what we could to comfort her. Doubtless sympathy eased her somewhat, but +she was very low in thought and spirit, and wept silently and weakly for +a long time. We told her that either or both of us would now remain with +her all the time, and that seemed to comfort her. Towards dusk she fell +into a doze. Here a very odd thing occurred. Whilst still asleep she +took the paper from her breast and tore it in two. Van Helsing stepped +over and took the pieces from her. All the same, however, she went on +with the action of tearing, as though the material were still in her +hands; finally she lifted her hands and opened them as though scattering +the fragments. Van Helsing seemed surprised, and his brows gathered as +if in thought, but he said nothing. + + * * * * * + +_19 September._--All last night she slept fitfully, being always afraid +to sleep, and something weaker when she woke from it. The Professor and +I took it in turns to watch, and we never left her for a moment +unattended. Quincey Morris said nothing about his intention, but I knew +that all night long he patrolled round and round the house. + +When the day came, its searching light showed the ravages in poor Lucy’s +strength. She was hardly able to turn her head, and the little +nourishment which she could take seemed to do her no good. At times she +slept, and both Van Helsing and I noticed the difference in her, between +sleeping and waking. Whilst asleep she looked stronger, although more +haggard, and her breathing was softer; her open mouth showed the pale +gums drawn back from the teeth, which thus looked positively longer and +sharper than usual; when she woke the softness of her eyes evidently +changed the expression, for she looked her own self, although a dying +one. In the afternoon she asked for Arthur, and we telegraphed for him. +Quincey went off to meet him at the station. + +When he arrived it was nearly six o’clock, and the sun was setting full +and warm, and the red light streamed in through the window and gave more +colour to the pale cheeks. When he saw her, Arthur was simply choking +with emotion, and none of us could speak. In the hours that had passed, +the fits of sleep, or the comatose condition that passed for it, had +grown more frequent, so that the pauses when conversation was possible +were shortened. Arthur’s presence, however, seemed to act as a +stimulant; she rallied a little, and spoke to him more brightly than she +had done since we arrived. He too pulled himself together, and spoke as +cheerily as he could, so that the best was made of everything. + +It was now nearly one o’clock, and he and Van Helsing are sitting with +her. I am to relieve them in a quarter of an hour, and I am entering +this on Lucy’s phonograph. Until six o’clock they are to try to rest. I +fear that to-morrow will end our watching, for the shock has been too +great; the poor child cannot rally. God help us all. + + +_Letter, Mina Harker to Lucy Westenra._ + +(Unopened by her.) + +“_17 September._ + +“My dearest Lucy,-- + +“It seems _an age_ since I heard from you, or indeed since I wrote. You +will pardon me, I know, for all my faults when you have read all my +budget of news. Well, I got my husband back all right; when we arrived +at Exeter there was a carriage waiting for us, and in it, though he had +an attack of gout, Mr. Hawkins. He took us to his house, where there +were rooms for us all nice and comfortable, and we dined together. After +dinner Mr. Hawkins said:-- + +“‘My dears, I want to drink your health and prosperity; and may every +blessing attend you both. I know you both from children, and have, with +love and pride, seen you grow up. Now I want you to make your home here +with me. I have left to me neither chick nor child; all are gone, and in +my will I have left you everything.’ I cried, Lucy dear, as Jonathan and +the old man clasped hands. Our evening was a very, very happy one. + +“So here we are, installed in this beautiful old house, and from both my +bedroom and the drawing-room I can see the great elms of the cathedral +close, with their great black stems standing out against the old yellow +stone of the cathedral and I can hear the rooks overhead cawing and +cawing and chattering and gossiping all day, after the manner of +rooks--and humans. I am busy, I need not tell you, arranging things and +housekeeping. Jonathan and Mr. Hawkins are busy all day; for, now that +Jonathan is a partner, Mr. Hawkins wants to tell him all about the +clients. + +“How is your dear mother getting on? I wish I could run up to town for a +day or two to see you, dear, but I dare not go yet, with so much on my +shoulders; and Jonathan wants looking after still. He is beginning to +put some flesh on his bones again, but he was terribly weakened by the +long illness; even now he sometimes starts out of his sleep in a sudden +way and awakes all trembling until I can coax him back to his usual +placidity. However, thank God, these occasions grow less frequent as the +days go on, and they will in time pass away altogether, I trust. And now +I have told you my news, let me ask yours. When are you to be married, +and where, and who is to perform the ceremony, and what are you to wear, +and is it to be a public or a private wedding? Tell me all about it, +dear; tell me all about everything, for there is nothing which interests +you which will not be dear to me. Jonathan asks me to send his +‘respectful duty,’ but I do not think that is good enough from the +junior partner of the important firm Hawkins & Harker; and so, as you +love me, and he loves me, and I love you with all the moods and tenses +of the verb, I send you simply his ‘love’ instead. Good-bye, my dearest +Lucy, and all blessings on you. + +“Yours, + +“MINA HARKER.” + + +_Report from Patrick Hennessey, M. D., M. R. C. S. L. K. Q. C. P. I., +etc., etc., to John Seward, M. D._ + +“_20 September._ + +“My dear Sir,-- + +“In accordance with your wishes, I enclose report of the conditions of +everything left in my charge.... With regard to patient, Renfield, there +is more to say. He has had another outbreak, which might have had a +dreadful ending, but which, as it fortunately happened, was unattended +with any unhappy results. This afternoon a carrier’s cart with two men +made a call at the empty house whose grounds abut on ours--the house to +which, you will remember, the patient twice ran away. The men stopped at +our gate to ask the porter their way, as they were strangers. I was +myself looking out of the study window, having a smoke after dinner, and +saw one of them come up to the house. As he passed the window of +Renfield’s room, the patient began to rate him from within, and called +him all the foul names he could lay his tongue to. The man, who seemed a +decent fellow enough, contented himself by telling him to “shut up for a +foul-mouthed beggar,” whereon our man accused him of robbing him and +wanting to murder him and said that he would hinder him if he were to +swing for it. I opened the window and signed to the man not to notice, +so he contented himself after looking the place over and making up his +mind as to what kind of a place he had got to by saying: ‘Lor’ bless +yer, sir, I wouldn’t mind what was said to me in a bloomin’ madhouse. I +pity ye and the guv’nor for havin’ to live in the house with a wild +beast like that.’ Then he asked his way civilly enough, and I told him +where the gate of the empty house was; he went away, followed by threats +and curses and revilings from our man. I went down to see if I could +make out any cause for his anger, since he is usually such a +well-behaved man, and except his violent fits nothing of the kind had +ever occurred. I found him, to my astonishment, quite composed and most +genial in his manner. I tried to get him to talk of the incident, but he +blandly asked me questions as to what I meant, and led me to believe +that he was completely oblivious of the affair. It was, I am sorry to +say, however, only another instance of his cunning, for within half an +hour I heard of him again. This time he had broken out through the +window of his room, and was running down the avenue. I called to the +attendants to follow me, and ran after him, for I feared he was intent +on some mischief. My fear was justified when I saw the same cart which +had passed before coming down the road, having on it some great wooden +boxes. The men were wiping their foreheads, and were flushed in the +face, as if with violent exercise. Before I could get up to him the +patient rushed at them, and pulling one of them off the cart, began to +knock his head against the ground. If I had not seized him just at the +moment I believe he would have killed the man there and then. The other +fellow jumped down and struck him over the head with the butt-end of his +heavy whip. It was a terrible blow; but he did not seem to mind it, but +seized him also, and struggled with the three of us, pulling us to and +fro as if we were kittens. You know I am no light weight, and the others +were both burly men. At first he was silent in his fighting; but as we +began to master him, and the attendants were putting a strait-waistcoat +on him, he began to shout: ‘I’ll frustrate them! They shan’t rob me! +they shan’t murder me by inches! I’ll fight for my Lord and Master!’ and +all sorts of similar incoherent ravings. It was with very considerable +difficulty that they got him back to the house and put him in the padded +room. One of the attendants, Hardy, had a finger broken. However, I set +it all right; and he is going on well. + +“The two carriers were at first loud in their threats of actions for +damages, and promised to rain all the penalties of the law on us. Their +threats were, however, mingled with some sort of indirect apology for +the defeat of the two of them by a feeble madman. They said that if it +had not been for the way their strength had been spent in carrying and +raising the heavy boxes to the cart they would have made short work of +him. They gave as another reason for their defeat the extraordinary +state of drouth to which they had been reduced by the dusty nature of +their occupation and the reprehensible distance from the scene of their +labours of any place of public entertainment. I quite understood their +drift, and after a stiff glass of grog, or rather more of the same, and +with each a sovereign in hand, they made light of the attack, and swore +that they would encounter a worse madman any day for the pleasure of +meeting so ‘bloomin’ good a bloke’ as your correspondent. I took their +names and addresses, in case they might be needed. They are as +follows:--Jack Smollet, of Dudding’s Rents, King George’s Road, Great +Walworth, and Thomas Snelling, Peter Farley’s Row, Guide Court, Bethnal +Green. They are both in the employment of Harris & Sons, Moving and +Shipment Company, Orange Master’s Yard, Soho. + +“I shall report to you any matter of interest occurring here, and shall +wire you at once if there is anything of importance. + +“Believe me, dear Sir, + +“Yours faithfully, + +“PATRICK HENNESSEY.” + + +_Letter, Mina Harker to Lucy Westenra_. + +(Unopened by her.) + +“_18 September._ + +“My dearest Lucy,-- + +“Such a sad blow has befallen us. Mr. Hawkins has died very suddenly. +Some may not think it so sad for us, but we had both come to so love him +that it really seems as though we had lost a father. I never knew either +father or mother, so that the dear old man’s death is a real blow to me. +Jonathan is greatly distressed. It is not only that he feels sorrow, +deep sorrow, for the dear, good man who has befriended him all his life, +and now at the end has treated him like his own son and left him a +fortune which to people of our modest bringing up is wealth beyond the +dream of avarice, but Jonathan feels it on another account. He says the +amount of responsibility which it puts upon him makes him nervous. He +begins to doubt himself. I try to cheer him up, and _my_ belief in _him_ +helps him to have a belief in himself. But it is here that the grave +shock that he experienced tells upon him the most. Oh, it is too hard +that a sweet, simple, noble, strong nature such as his--a nature which +enabled him by our dear, good friend’s aid to rise from clerk to master +in a few years--should be so injured that the very essence of its +strength is gone. Forgive me, dear, if I worry you with my troubles in +the midst of your own happiness; but, Lucy dear, I must tell some one, +for the strain of keeping up a brave and cheerful appearance to Jonathan +tries me, and I have no one here that I can confide in. I dread coming +up to London, as we must do the day after to-morrow; for poor Mr. +Hawkins left in his will that he was to be buried in the grave with his +father. As there are no relations at all, Jonathan will have to be chief +mourner. I shall try to run over to see you, dearest, if only for a few +minutes. Forgive me for troubling you. With all blessings, + +“Your loving + +“MINA HARKER.” + + +_Dr. Seward’s Diary._ + +_20 September._--Only resolution and habit can let me make an entry +to-night. I am too miserable, too low-spirited, too sick of the world +and all in it, including life itself, that I would not care if I heard +this moment the flapping of the wings of the angel of death. And he has +been flapping those grim wings to some purpose of late--Lucy’s mother +and Arthur’s father, and now.... Let me get on with my work. + +I duly relieved Van Helsing in his watch over Lucy. We wanted Arthur to +go to rest also, but he refused at first. It was only when I told him +that we should want him to help us during the day, and that we must not +all break down for want of rest, lest Lucy should suffer, that he agreed +to go. Van Helsing was very kind to him. “Come, my child,” he said; +“come with me. You are sick and weak, and have had much sorrow and much +mental pain, as well as that tax on your strength that we know of. You +must not be alone; for to be alone is to be full of fears and alarms. +Come to the drawing-room, where there is a big fire, and there are two +sofas. You shall lie on one, and I on the other, and our sympathy will +be comfort to each other, even though we do not speak, and even if we +sleep.” Arthur went off with him, casting back a longing look on Lucy’s +face, which lay in her pillow, almost whiter than the lawn. She lay +quite still, and I looked round the room to see that all was as it +should be. I could see that the Professor had carried out in this room, +as in the other, his purpose of using the garlic; the whole of the +window-sashes reeked with it, and round Lucy’s neck, over the silk +handkerchief which Van Helsing made her keep on, was a rough chaplet of +the same odorous flowers. Lucy was breathing somewhat stertorously, and +her face was at its worst, for the open mouth showed the pale gums. Her +teeth, in the dim, uncertain light, seemed longer and sharper than they +had been in the morning. In particular, by some trick of the light, the +canine teeth looked longer and sharper than the rest. I sat down by her, +and presently she moved uneasily. At the same moment there came a sort +of dull flapping or buffeting at the window. I went over to it softly, +and peeped out by the corner of the blind. There was a full moonlight, +and I could see that the noise was made by a great bat, which wheeled +round--doubtless attracted by the light, although so dim--and every now +and again struck the window with its wings. When I came back to my seat, +I found that Lucy had moved slightly, and had torn away the garlic +flowers from her throat. I replaced them as well as I could, and sat +watching her. + +Presently she woke, and I gave her food, as Van Helsing had prescribed. +She took but a little, and that languidly. There did not seem to be with +her now the unconscious struggle for life and strength that had hitherto +so marked her illness. It struck me as curious that the moment she +became conscious she pressed the garlic flowers close to her. It was +certainly odd that whenever she got into that lethargic state, with the +stertorous breathing, she put the flowers from her; but that when she +waked she clutched them close. There was no possibility of making any +mistake about this, for in the long hours that followed, she had many +spells of sleeping and waking and repeated both actions many times. + +At six o’clock Van Helsing came to relieve me. Arthur had then fallen +into a doze, and he mercifully let him sleep on. When he saw Lucy’s face +I could hear the sissing indraw of his breath, and he said to me in a +sharp whisper: “Draw up the blind; I want light!” Then he bent down, +and, with his face almost touching Lucy’s, examined her carefully. He +removed the flowers and lifted the silk handkerchief from her throat. As +he did so he started back, and I could hear his ejaculation, “Mein +Gott!” as it was smothered in his throat. I bent over and looked, too, +and as I noticed some queer chill came over me. + +The wounds on the throat had absolutely disappeared. + +For fully five minutes Van Helsing stood looking at her, with his face +at its sternest. Then he turned to me and said calmly:-- + +“She is dying. It will not be long now. It will be much difference, mark +me, whether she dies conscious or in her sleep. Wake that poor boy, and +let him come and see the last; he trusts us, and we have promised him.” + +I went to the dining-room and waked him. He was dazed for a moment, but +when he saw the sunlight streaming in through the edges of the shutters +he thought he was late, and expressed his fear. I assured him that Lucy +was still asleep, but told him as gently as I could that both Van +Helsing and I feared that the end was near. He covered his face with his +hands, and slid down on his knees by the sofa, where he remained, +perhaps a minute, with his head buried, praying, whilst his shoulders +shook with grief. I took him by the hand and raised him up. “Come,” I +said, “my dear old fellow, summon all your fortitude: it will be best +and easiest for her.” + +When we came into Lucy’s room I could see that Van Helsing had, with +his usual forethought, been putting matters straight and making +everything look as pleasing as possible. He had even brushed Lucy’s +hair, so that it lay on the pillow in its usual sunny ripples. When we +came into the room she opened her eyes, and seeing him, whispered +softly:-- + +“Arthur! Oh, my love, I am so glad you have come!” He was stooping to +kiss her, when Van Helsing motioned him back. “No,” he whispered, “not +yet! Hold her hand; it will comfort her more.” + +So Arthur took her hand and knelt beside her, and she looked her best, +with all the soft lines matching the angelic beauty of her eyes. Then +gradually her eyes closed, and she sank to sleep. For a little bit her +breast heaved softly, and her breath came and went like a tired child’s. + +And then insensibly there came the strange change which I had noticed in +the night. Her breathing grew stertorous, the mouth opened, and the pale +gums, drawn back, made the teeth look longer and sharper than ever. In a +sort of sleep-waking, vague, unconscious way she opened her eyes, which +were now dull and hard at once, and said in a soft, voluptuous voice, +such as I had never heard from her lips:-- + +“Arthur! Oh, my love, I am so glad you have come! Kiss me!” Arthur bent +eagerly over to kiss her; but at that instant Van Helsing, who, like me, +had been startled by her voice, swooped upon him, and catching him by +the neck with both hands, dragged him back with a fury of strength which +I never thought he could have possessed, and actually hurled him almost +across the room. + +“Not for your life!” he said; “not for your living soul and hers!” And +he stood between them like a lion at bay. + +Arthur was so taken aback that he did not for a moment know what to do +or say; and before any impulse of violence could seize him he realised +the place and the occasion, and stood silent, waiting. + +I kept my eyes fixed on Lucy, as did Van Helsing, and we saw a spasm as +of rage flit like a shadow over her face; the sharp teeth champed +together. Then her eyes closed, and she breathed heavily. + +Very shortly after she opened her eyes in all their softness, and +putting out her poor, pale, thin hand, took Van Helsing’s great brown +one; drawing it to her, she kissed it. “My true friend,” she said, in a +faint voice, but with untellable pathos, “My true friend, and his! Oh, +guard him, and give me peace!” + +“I swear it!” he said solemnly, kneeling beside her and holding up his +hand, as one who registers an oath. Then he turned to Arthur, and said +to him: “Come, my child, take her hand in yours, and kiss her on the +forehead, and only once.” + +Their eyes met instead of their lips; and so they parted. + +Lucy’s eyes closed; and Van Helsing, who had been watching closely, took +Arthur’s arm, and drew him away. + +And then Lucy’s breathing became stertorous again, and all at once it +ceased. + +“It is all over,” said Van Helsing. “She is dead!” + +I took Arthur by the arm, and led him away to the drawing-room, where he +sat down, and covered his face with his hands, sobbing in a way that +nearly broke me down to see. + +I went back to the room, and found Van Helsing looking at poor Lucy, and +his face was sterner than ever. Some change had come over her body. +Death had given back part of her beauty, for her brow and cheeks had +recovered some of their flowing lines; even the lips had lost their +deadly pallor. It was as if the blood, no longer needed for the working +of the heart, had gone to make the harshness of death as little rude as +might be. + + “We thought her dying whilst she slept, + And sleeping when she died.” + +I stood beside Van Helsing, and said:-- + +“Ah, well, poor girl, there is peace for her at last. It is the end!” + +He turned to me, and said with grave solemnity:-- + +“Not so; alas! not so. It is only the beginning!” + +When I asked him what he meant, he only shook his head and answered:-- + +“We can do nothing as yet. Wait and see.” + + + + +CHAPTER XIII + +DR. SEWARD’S DIARY--_continued_. + + +The funeral was arranged for the next succeeding day, so that Lucy and +her mother might be buried together. I attended to all the ghastly +formalities, and the urbane undertaker proved that his staff were +afflicted--or blessed--with something of his own obsequious suavity. +Even the woman who performed the last offices for the dead remarked to +me, in a confidential, brother-professional way, when she had come out +from the death-chamber:-- + +“She makes a very beautiful corpse, sir. It’s quite a privilege to +attend on her. It’s not too much to say that she will do credit to our +establishment!” + +I noticed that Van Helsing never kept far away. This was possible from +the disordered state of things in the household. There were no relatives +at hand; and as Arthur had to be back the next day to attend at his +father’s funeral, we were unable to notify any one who should have been +bidden. Under the circumstances, Van Helsing and I took it upon +ourselves to examine papers, etc. He insisted upon looking over Lucy’s +papers himself. I asked him why, for I feared that he, being a +foreigner, might not be quite aware of English legal requirements, and +so might in ignorance make some unnecessary trouble. He answered me:-- + +“I know; I know. You forget that I am a lawyer as well as a doctor. But +this is not altogether for the law. You knew that, when you avoided the +coroner. I have more than him to avoid. There may be papers more--such +as this.” + +As he spoke he took from his pocket-book the memorandum which had been +in Lucy’s breast, and which she had torn in her sleep. + +“When you find anything of the solicitor who is for the late Mrs. +Westenra, seal all her papers, and write him to-night. For me, I watch +here in the room and in Miss Lucy’s old room all night, and I myself +search for what may be. It is not well that her very thoughts go into +the hands of strangers.” + +I went on with my part of the work, and in another half hour had found +the name and address of Mrs. Westenra’s solicitor and had written to +him. All the poor lady’s papers were in order; explicit directions +regarding the place of burial were given. I had hardly sealed the +letter, when, to my surprise, Van Helsing walked into the room, +saying:-- + +“Can I help you, friend John? I am free, and if I may, my service is to +you.” + +“Have you got what you looked for?” I asked, to which he replied:-- + +“I did not look for any specific thing. I only hoped to find, and find I +have, all that there was--only some letters and a few memoranda, and a +diary new begun. But I have them here, and we shall for the present say +nothing of them. I shall see that poor lad to-morrow evening, and, with +his sanction, I shall use some.” + +When we had finished the work in hand, he said to me:-- + +“And now, friend John, I think we may to bed. We want sleep, both you +and I, and rest to recuperate. To-morrow we shall have much to do, but +for the to-night there is no need of us. Alas!” + +Before turning in we went to look at poor Lucy. The undertaker had +certainly done his work well, for the room was turned into a small +_chapelle ardente_. There was a wilderness of beautiful white flowers, +and death was made as little repulsive as might be. The end of the +winding-sheet was laid over the face; when the Professor bent over and +turned it gently back, we both started at the beauty before us, the tall +wax candles showing a sufficient light to note it well. All Lucy’s +loveliness had come back to her in death, and the hours that had passed, +instead of leaving traces of “decay’s effacing fingers,” had but +restored the beauty of life, till positively I could not believe my eyes +that I was looking at a corpse. + +The Professor looked sternly grave. He had not loved her as I had, and +there was no need for tears in his eyes. He said to me: “Remain till I +return,” and left the room. He came back with a handful of wild garlic +from the box waiting in the hall, but which had not been opened, and +placed the flowers amongst the others on and around the bed. Then he +took from his neck, inside his collar, a little gold crucifix, and +placed it over the mouth. He restored the sheet to its place, and we +came away. + +I was undressing in my own room, when, with a premonitory tap at the +door, he entered, and at once began to speak:-- + +“To-morrow I want you to bring me, before night, a set of post-mortem +knives.” + +“Must we make an autopsy?” I asked. + +“Yes and no. I want to operate, but not as you think. Let me tell you +now, but not a word to another. I want to cut off her head and take out +her heart. Ah! you a surgeon, and so shocked! You, whom I have seen with +no tremble of hand or heart, do operations of life and death that make +the rest shudder. Oh, but I must not forget, my dear friend John, that +you loved her; and I have not forgotten it, for it is I that shall +operate, and you must only help. I would like to do it to-night, but for +Arthur I must not; he will be free after his father’s funeral to-morrow, +and he will want to see her--to see _it_. Then, when she is coffined +ready for the next day, you and I shall come when all sleep. We shall +unscrew the coffin-lid, and shall do our operation: and then replace +all, so that none know, save we alone.” + +“But why do it at all? The girl is dead. Why mutilate her poor body +without need? And if there is no necessity for a post-mortem and nothing +to gain by it--no good to her, to us, to science, to human +knowledge--why do it? Without such it is monstrous.” + +For answer he put his hand on my shoulder, and said, with infinite +tenderness:-- + +“Friend John, I pity your poor bleeding heart; and I love you the more +because it does so bleed. If I could, I would take on myself the burden +that you do bear. But there are things that you know not, but that you +shall know, and bless me for knowing, though they are not pleasant +things. John, my child, you have been my friend now many years, and yet +did you ever know me to do any without good cause? I may err--I am but +man; but I believe in all I do. Was it not for these causes that you +send for me when the great trouble came? Yes! Were you not amazed, nay +horrified, when I would not let Arthur kiss his love--though she was +dying--and snatched him away by all my strength? Yes! And yet you saw +how she thanked me, with her so beautiful dying eyes, her voice, too, so +weak, and she kiss my rough old hand and bless me? Yes! And did you not +hear me swear promise to her, that so she closed her eyes grateful? Yes! + +“Well, I have good reason now for all I want to do. You have for many +years trust me; you have believe me weeks past, when there be things so +strange that you might have well doubt. Believe me yet a little, friend +John. If you trust me not, then I must tell what I think; and that is +not perhaps well. And if I work--as work I shall, no matter trust or no +trust--without my friend trust in me, I work with heavy heart and feel, +oh! so lonely when I want all help and courage that may be!” He paused a +moment and went on solemnly: “Friend John, there are strange and +terrible days before us. Let us not be two, but one, that so we work to +a good end. Will you not have faith in me?” + +I took his hand, and promised him. I held my door open as he went away, +and watched him go into his room and close the door. As I stood without +moving, I saw one of the maids pass silently along the passage--she had +her back towards me, so did not see me--and go into the room where Lucy +lay. The sight touched me. Devotion is so rare, and we are so grateful +to those who show it unasked to those we love. Here was a poor girl +putting aside the terrors which she naturally had of death to go watch +alone by the bier of the mistress whom she loved, so that the poor clay +might not be lonely till laid to eternal rest.... + + * * * * * + +I must have slept long and soundly, for it was broad daylight when Van +Helsing waked me by coming into my room. He came over to my bedside and +said:-- + +“You need not trouble about the knives; we shall not do it.” + +“Why not?” I asked. For his solemnity of the night before had greatly +impressed me. + +“Because,” he said sternly, “it is too late--or too early. See!” Here he +held up the little golden crucifix. “This was stolen in the night.” + +“How, stolen,” I asked in wonder, “since you have it now?” + +“Because I get it back from the worthless wretch who stole it, from the +woman who robbed the dead and the living. Her punishment will surely +come, but not through me; she knew not altogether what she did and thus +unknowing, she only stole. Now we must wait.” + +He went away on the word, leaving me with a new mystery to think of, a +new puzzle to grapple with. + +The forenoon was a dreary time, but at noon the solicitor came: Mr. +Marquand, of Wholeman, Sons, Marquand & Lidderdale. He was very genial +and very appreciative of what we had done, and took off our hands all +cares as to details. During lunch he told us that Mrs. Westenra had for +some time expected sudden death from her heart, and had put her affairs +in absolute order; he informed us that, with the exception of a certain +entailed property of Lucy’s father’s which now, in default of direct +issue, went back to a distant branch of the family, the whole estate, +real and personal, was left absolutely to Arthur Holmwood. When he had +told us so much he went on:-- + +“Frankly we did our best to prevent such a testamentary disposition, and +pointed out certain contingencies that might leave her daughter either +penniless or not so free as she should be to act regarding a matrimonial +alliance. Indeed, we pressed the matter so far that we almost came into +collision, for she asked us if we were or were not prepared to carry out +her wishes. Of course, we had then no alternative but to accept. We were +right in principle, and ninety-nine times out of a hundred we should +have proved, by the logic of events, the accuracy of our judgment. +Frankly, however, I must admit that in this case any other form of +disposition would have rendered impossible the carrying out of her +wishes. For by her predeceasing her daughter the latter would have come +into possession of the property, and, even had she only survived her +mother by five minutes, her property would, in case there were no +will--and a will was a practical impossibility in such a case--have been +treated at her decease as under intestacy. In which case Lord Godalming, +though so dear a friend, would have had no claim in the world; and the +inheritors, being remote, would not be likely to abandon their just +rights, for sentimental reasons regarding an entire stranger. I assure +you, my dear sirs, I am rejoiced at the result, perfectly rejoiced.” + +He was a good fellow, but his rejoicing at the one little part--in which +he was officially interested--of so great a tragedy, was an +object-lesson in the limitations of sympathetic understanding. + +He did not remain long, but said he would look in later in the day and +see Lord Godalming. His coming, however, had been a certain comfort to +us, since it assured us that we should not have to dread hostile +criticism as to any of our acts. Arthur was expected at five o’clock, so +a little before that time we visited the death-chamber. It was so in +very truth, for now both mother and daughter lay in it. The undertaker, +true to his craft, had made the best display he could of his goods, and +there was a mortuary air about the place that lowered our spirits at +once. Van Helsing ordered the former arrangement to be adhered to, +explaining that, as Lord Godalming was coming very soon, it would be +less harrowing to his feelings to see all that was left of his _fiancée_ +quite alone. The undertaker seemed shocked at his own stupidity and +exerted himself to restore things to the condition in which we left them +the night before, so that when Arthur came such shocks to his feelings +as we could avoid were saved. + +Poor fellow! He looked desperately sad and broken; even his stalwart +manhood seemed to have shrunk somewhat under the strain of his +much-tried emotions. He had, I knew, been very genuinely and devotedly +attached to his father; and to lose him, and at such a time, was a +bitter blow to him. With me he was warm as ever, and to Van Helsing he +was sweetly courteous; but I could not help seeing that there was some +constraint with him. The Professor noticed it, too, and motioned me to +bring him upstairs. I did so, and left him at the door of the room, as I +felt he would like to be quite alone with her, but he took my arm and +led me in, saying huskily:-- + +“You loved her too, old fellow; she told me all about it, and there was +no friend had a closer place in her heart than you. I don’t know how to +thank you for all you have done for her. I can’t think yet....” + +Here he suddenly broke down, and threw his arms round my shoulders and +laid his head on my breast, crying:-- + +“Oh, Jack! Jack! What shall I do! The whole of life seems gone from me +all at once, and there is nothing in the wide world for me to live for.” + +I comforted him as well as I could. In such cases men do not need much +expression. A grip of the hand, the tightening of an arm over the +shoulder, a sob in unison, are expressions of sympathy dear to a man’s +heart. I stood still and silent till his sobs died away, and then I said +softly to him:-- + +“Come and look at her.” + +Together we moved over to the bed, and I lifted the lawn from her face. +God! how beautiful she was. Every hour seemed to be enhancing her +loveliness. It frightened and amazed me somewhat; and as for Arthur, he +fell a-trembling, and finally was shaken with doubt as with an ague. At +last, after a long pause, he said to me in a faint whisper:-- + +“Jack, is she really dead?” + +I assured him sadly that it was so, and went on to suggest--for I felt +that such a horrible doubt should not have life for a moment longer than +I could help--that it often happened that after death faces became +softened and even resolved into their youthful beauty; that this was +especially so when death had been preceded by any acute or prolonged +suffering. It seemed to quite do away with any doubt, and, after +kneeling beside the couch for a while and looking at her lovingly and +long, he turned aside. I told him that that must be good-bye, as the +coffin had to be prepared; so he went back and took her dead hand in his +and kissed it, and bent over and kissed her forehead. He came away, +fondly looking back over his shoulder at her as he came. + +I left him in the drawing-room, and told Van Helsing that he had said +good-bye; so the latter went to the kitchen to tell the undertaker’s men +to proceed with the preparations and to screw up the coffin. When he +came out of the room again I told him of Arthur’s question, and he +replied:-- + +“I am not surprised. Just now I doubted for a moment myself!” + +We all dined together, and I could see that poor Art was trying to make +the best of things. Van Helsing had been silent all dinner-time; but +when we had lit our cigars he said-- + +“Lord----”; but Arthur interrupted him:-- + +“No, no, not that, for God’s sake! not yet at any rate. Forgive me, sir: +I did not mean to speak offensively; it is only because my loss is so +recent.” + +The Professor answered very sweetly:-- + +“I only used that name because I was in doubt. I must not call you +‘Mr.,’ and I have grown to love you--yes, my dear boy, to love you--as +Arthur.” + +Arthur held out his hand, and took the old man’s warmly. + +“Call me what you will,” he said. “I hope I may always have the title of +a friend. And let me say that I am at a loss for words to thank you for +your goodness to my poor dear.” He paused a moment, and went on: “I know +that she understood your goodness even better than I do; and if I was +rude or in any way wanting at that time you acted so--you remember”--the +Professor nodded--“you must forgive me.” + +He answered with a grave kindness:-- + +“I know it was hard for you to quite trust me then, for to trust such +violence needs to understand; and I take it that you do not--that you +cannot--trust me now, for you do not yet understand. And there may be +more times when I shall want you to trust when you cannot--and may +not--and must not yet understand. But the time will come when your trust +shall be whole and complete in me, and when you shall understand as +though the sunlight himself shone through. Then you shall bless me from +first to last for your own sake, and for the sake of others and for her +dear sake to whom I swore to protect.” + +“And, indeed, indeed, sir,” said Arthur warmly, “I shall in all ways +trust you. I know and believe you have a very noble heart, and you are +Jack’s friend, and you were hers. You shall do what you like.” + +The Professor cleared his throat a couple of times, as though about to +speak, and finally said:-- + +“May I ask you something now?” + +“Certainly.” + +“You know that Mrs. Westenra left you all her property?” + +“No, poor dear; I never thought of it.” + +“And as it is all yours, you have a right to deal with it as you will. I +want you to give me permission to read all Miss Lucy’s papers and +letters. Believe me, it is no idle curiosity. I have a motive of which, +be sure, she would have approved. I have them all here. I took them +before we knew that all was yours, so that no strange hand might touch +them--no strange eye look through words into her soul. I shall keep +them, if I may; even you may not see them yet, but I shall keep them +safe. No word shall be lost; and in the good time I shall give them back +to you. It’s a hard thing I ask, but you will do it, will you not, for +Lucy’s sake?” + +Arthur spoke out heartily, like his old self:-- + +“Dr. Van Helsing, you may do what you will. I feel that in saying this I +am doing what my dear one would have approved. I shall not trouble you +with questions till the time comes.” + +The old Professor stood up as he said solemnly:-- + +“And you are right. There will be pain for us all; but it will not be +all pain, nor will this pain be the last. We and you too--you most of +all, my dear boy--will have to pass through the bitter water before we +reach the sweet. But we must be brave of heart and unselfish, and do our +duty, and all will be well!” + +I slept on a sofa in Arthur’s room that night. Van Helsing did not go to +bed at all. He went to and fro, as if patrolling the house, and was +never out of sight of the room where Lucy lay in her coffin, strewn with +the wild garlic flowers, which sent, through the odour of lily and rose, +a heavy, overpowering smell into the night. + + +_Mina Harker’s Journal._ + +_22 September._--In the train to Exeter. Jonathan sleeping. + +It seems only yesterday that the last entry was made, and yet how much +between then, in Whitby and all the world before me, Jonathan away and +no news of him; and now, married to Jonathan, Jonathan a solicitor, a +partner, rich, master of his business, Mr. Hawkins dead and buried, and +Jonathan with another attack that may harm him. Some day he may ask me +about it. Down it all goes. I am rusty in my shorthand--see what +unexpected prosperity does for us--so it may be as well to freshen it up +again with an exercise anyhow.... + +The service was very simple and very solemn. There were only ourselves +and the servants there, one or two old friends of his from Exeter, his +London agent, and a gentleman representing Sir John Paxton, the +President of the Incorporated Law Society. Jonathan and I stood hand in +hand, and we felt that our best and dearest friend was gone from us.... + +We came back to town quietly, taking a ’bus to Hyde Park Corner. +Jonathan thought it would interest me to go into the Row for a while, so +we sat down; but there were very few people there, and it was +sad-looking and desolate to see so many empty chairs. It made us think +of the empty chair at home; so we got up and walked down Piccadilly. +Jonathan was holding me by the arm, the way he used to in old days +before I went to school. I felt it very improper, for you can’t go on +for some years teaching etiquette and decorum to other girls without the +pedantry of it biting into yourself a bit; but it was Jonathan, and he +was my husband, and we didn’t know anybody who saw us--and we didn’t +care if they did--so on we walked. I was looking at a very beautiful +girl, in a big cart-wheel hat, sitting in a victoria outside Guiliano’s, +when I felt Jonathan clutch my arm so tight that he hurt me, and he said +under his breath: “My God!” I am always anxious about Jonathan, for I +fear that some nervous fit may upset him again; so I turned to him +quickly, and asked him what it was that disturbed him. + +He was very pale, and his eyes seemed bulging out as, half in terror and +half in amazement, he gazed at a tall, thin man, with a beaky nose and +black moustache and pointed beard, who was also observing the pretty +girl. He was looking at her so hard that he did not see either of us, +and so I had a good view of him. His face was not a good face; it was +hard, and cruel, and sensual, and his big white teeth, that looked all +the whiter because his lips were so red, were pointed like an animal’s. +Jonathan kept staring at him, till I was afraid he would notice. I +feared he might take it ill, he looked so fierce and nasty. I asked +Jonathan why he was disturbed, and he answered, evidently thinking that +I knew as much about it as he did: “Do you see who it is?” + +“No, dear,” I said; “I don’t know him; who is it?” His answer seemed to +shock and thrill me, for it was said as if he did not know that it was +to me, Mina, to whom he was speaking:-- + +“It is the man himself!” + +The poor dear was evidently terrified at something--very greatly +terrified; I do believe that if he had not had me to lean on and to +support him he would have sunk down. He kept staring; a man came out of +the shop with a small parcel, and gave it to the lady, who then drove +off. The dark man kept his eyes fixed on her, and when the carriage +moved up Piccadilly he followed in the same direction, and hailed a +hansom. Jonathan kept looking after him, and said, as if to himself:-- + +“I believe it is the Count, but he has grown young. My God, if this be +so! Oh, my God! my God! If I only knew! if I only knew!” He was +distressing himself so much that I feared to keep his mind on the +subject by asking him any questions, so I remained silent. I drew him +away quietly, and he, holding my arm, came easily. We walked a little +further, and then went in and sat for a while in the Green Park. It was +a hot day for autumn, and there was a comfortable seat in a shady place. +After a few minutes’ staring at nothing, Jonathan’s eyes closed, and he +went quietly into a sleep, with his head on my shoulder. I thought it +was the best thing for him, so did not disturb him. In about twenty +minutes he woke up, and said to me quite cheerfully:-- + +“Why, Mina, have I been asleep! Oh, do forgive me for being so rude. +Come, and we’ll have a cup of tea somewhere.” He had evidently forgotten +all about the dark stranger, as in his illness he had forgotten all that +this episode had reminded him of. I don’t like this lapsing into +forgetfulness; it may make or continue some injury to the brain. I must +not ask him, for fear I shall do more harm than good; but I must somehow +learn the facts of his journey abroad. The time is come, I fear, when I +must open that parcel, and know what is written. Oh, Jonathan, you will, +I know, forgive me if I do wrong, but it is for your own dear sake. + + * * * * * + +_Later._--A sad home-coming in every way--the house empty of the dear +soul who was so good to us; Jonathan still pale and dizzy under a slight +relapse of his malady; and now a telegram from Van Helsing, whoever he +may be:-- + +“You will be grieved to hear that Mrs. Westenra died five days ago, and +that Lucy died the day before yesterday. They were both buried to-day.” + +Oh, what a wealth of sorrow in a few words! Poor Mrs. Westenra! poor +Lucy! Gone, gone, never to return to us! And poor, poor Arthur, to have +lost such sweetness out of his life! God help us all to bear our +troubles. + + +_Dr. Seward’s Diary._ + +_22 September._--It is all over. Arthur has gone back to Ring, and has +taken Quincey Morris with him. What a fine fellow is Quincey! I believe +in my heart of hearts that he suffered as much about Lucy’s death as any +of us; but he bore himself through it like a moral Viking. If America +can go on breeding men like that, she will be a power in the world +indeed. Van Helsing is lying down, having a rest preparatory to his +journey. He goes over to Amsterdam to-night, but says he returns +to-morrow night; that he only wants to make some arrangements which can +only be made personally. He is to stop with me then, if he can; he says +he has work to do in London which may take him some time. Poor old +fellow! I fear that the strain of the past week has broken down even his +iron strength. All the time of the burial he was, I could see, putting +some terrible restraint on himself. When it was all over, we were +standing beside Arthur, who, poor fellow, was speaking of his part in +the operation where his blood had been transfused to his Lucy’s veins; I +could see Van Helsing’s face grow white and purple by turns. Arthur was +saying that he felt since then as if they two had been really married +and that she was his wife in the sight of God. None of us said a word of +the other operations, and none of us ever shall. Arthur and Quincey went +away together to the station, and Van Helsing and I came on here. The +moment we were alone in the carriage he gave way to a regular fit of +hysterics. He has denied to me since that it was hysterics, and insisted +that it was only his sense of humour asserting itself under very +terrible conditions. He laughed till he cried, and I had to draw down +the blinds lest any one should see us and misjudge; and then he cried, +till he laughed again; and laughed and cried together, just as a woman +does. I tried to be stern with him, as one is to a woman under the +circumstances; but it had no effect. Men and women are so different in +manifestations of nervous strength or weakness! Then when his face grew +grave and stern again I asked him why his mirth, and why at such a time. +His reply was in a way characteristic of him, for it was logical and +forceful and mysterious. He said:-- + +“Ah, you don’t comprehend, friend John. Do not think that I am not sad, +though I laugh. See, I have cried even when the laugh did choke me. But +no more think that I am all sorry when I cry, for the laugh he come +just the same. Keep it always with you that laughter who knock at your +door and say, ‘May I come in?’ is not the true laughter. No! he is a +king, and he come when and how he like. He ask no person; he choose no +time of suitability. He say, ‘I am here.’ Behold, in example I grieve my +heart out for that so sweet young girl; I give my blood for her, though +I am old and worn; I give my time, my skill, my sleep; I let my other +sufferers want that so she may have all. And yet I can laugh at her very +grave--laugh when the clay from the spade of the sexton drop upon her +coffin and say ‘Thud! thud!’ to my heart, till it send back the blood +from my cheek. My heart bleed for that poor boy--that dear boy, so of +the age of mine own boy had I been so blessed that he live, and with his +hair and eyes the same. There, you know now why I love him so. And yet +when he say things that touch my husband-heart to the quick, and make my +father-heart yearn to him as to no other man--not even to you, friend +John, for we are more level in experiences than father and son--yet even +at such moment King Laugh he come to me and shout and bellow in my ear, +‘Here I am! here I am!’ till the blood come dance back and bring some of +the sunshine that he carry with him to my cheek. Oh, friend John, it is +a strange world, a sad world, a world full of miseries, and woes, and +troubles; and yet when King Laugh come he make them all dance to the +tune he play. Bleeding hearts, and dry bones of the churchyard, and +tears that burn as they fall--all dance together to the music that he +make with that smileless mouth of him. And believe me, friend John, that +he is good to come, and kind. Ah, we men and women are like ropes drawn +tight with strain that pull us different ways. Then tears come; and, +like the rain on the ropes, they brace us up, until perhaps the strain +become too great, and we break. But King Laugh he come like the +sunshine, and he ease off the strain again; and we bear to go on with +our labour, what it may be.” + +I did not like to wound him by pretending not to see his idea; but, as I +did not yet understand the cause of his laughter, I asked him. As he +answered me his face grew stern, and he said in quite a different +tone:-- + +“Oh, it was the grim irony of it all--this so lovely lady garlanded with +flowers, that looked so fair as life, till one by one we wondered if she +were truly dead; she laid in that so fine marble house in that lonely +churchyard, where rest so many of her kin, laid there with the mother +who loved her, and whom she loved; and that sacred bell going ‘Toll! +toll! toll!’ so sad and slow; and those holy men, with the white +garments of the angel, pretending to read books, and yet all the time +their eyes never on the page; and all of us with the bowed head. And all +for what? She is dead; so! Is it not?” + +“Well, for the life of me, Professor,” I said, “I can’t see anything to +laugh at in all that. Why, your explanation makes it a harder puzzle +than before. But even if the burial service was comic, what about poor +Art and his trouble? Why, his heart was simply breaking.” + +“Just so. Said he not that the transfusion of his blood to her veins had +made her truly his bride?” + +“Yes, and it was a sweet and comforting idea for him.” + +“Quite so. But there was a difficulty, friend John. If so that, then +what about the others? Ho, ho! Then this so sweet maid is a polyandrist, +and me, with my poor wife dead to me, but alive by Church’s law, though +no wits, all gone--even I, who am faithful husband to this now-no-wife, +am bigamist.” + +“I don’t see where the joke comes in there either!” I said; and I did +not feel particularly pleased with him for saying such things. He laid +his hand on my arm, and said:-- + +“Friend John, forgive me if I pain. I showed not my feeling to others +when it would wound, but only to you, my old friend, whom I can trust. +If you could have looked into my very heart then when I want to laugh; +if you could have done so when the laugh arrived; if you could do so +now, when King Laugh have pack up his crown, and all that is to him--for +he go far, far away from me, and for a long, long time--maybe you would +perhaps pity me the most of all.” + +I was touched by the tenderness of his tone, and asked why. + +“Because I know!” + +And now we are all scattered; and for many a long day loneliness will +sit over our roofs with brooding wings. Lucy lies in the tomb of her +kin, a lordly death-house in a lonely churchyard, away from teeming +London; where the air is fresh, and the sun rises over Hampstead Hill, +and where wild flowers grow of their own accord. + +So I can finish this diary; and God only knows if I shall ever begin +another. If I do, or if I even open this again, it will be to deal with +different people and different themes; for here at the end, where the +romance of my life is told, ere I go back to take up the thread of my +life-work, I say sadly and without hope, + + “FINIS.” + + +_“The Westminster Gazette,” 25 September._ + + A HAMPSTEAD MYSTERY. + + +The neighbourhood of Hampstead is just at present exercised with a +series of events which seem to run on lines parallel to those of what +was known to the writers of headlines as “The Kensington Horror,” or +“The Stabbing Woman,” or “The Woman in Black.” During the past two or +three days several cases have occurred of young children straying from +home or neglecting to return from their playing on the Heath. In all +these cases the children were too young to give any properly +intelligible account of themselves, but the consensus of their excuses +is that they had been with a “bloofer lady.” It has always been late in +the evening when they have been missed, and on two occasions the +children have not been found until early in the following morning. It is +generally supposed in the neighbourhood that, as the first child missed +gave as his reason for being away that a “bloofer lady” had asked him to +come for a walk, the others had picked up the phrase and used it as +occasion served. This is the more natural as the favourite game of the +little ones at present is luring each other away by wiles. A +correspondent writes us that to see some of the tiny tots pretending to +be the “bloofer lady” is supremely funny. Some of our caricaturists +might, he says, take a lesson in the irony of grotesque by comparing the +reality and the picture. It is only in accordance with general +principles of human nature that the “bloofer lady” should be the popular +rôle at these _al fresco_ performances. Our correspondent naïvely says +that even Ellen Terry could not be so winningly attractive as some of +these grubby-faced little children pretend--and even imagine +themselves--to be. + +There is, however, possibly a serious side to the question, for some of +the children, indeed all who have been missed at night, have been +slightly torn or wounded in the throat. The wounds seem such as might be +made by a rat or a small dog, and although of not much importance +individually, would tend to show that whatever animal inflicts them has +a system or method of its own. The police of the division have been +instructed to keep a sharp look-out for straying children, especially +when very young, in and around Hampstead Heath, and for any stray dog +which may be about. + + + _“The Westminster Gazette,” 25 September._ + + _Extra Special._ + + THE HAMPSTEAD HORROR. + + ANOTHER CHILD INJURED. + + _The “Bloofer Lady.”_ + +We have just received intelligence that another child, missed last +night, was only discovered late in the morning under a furze bush at the +Shooter’s Hill side of Hampstead Heath, which is, perhaps, less +frequented than the other parts. It has the same tiny wound in the +throat as has been noticed in other cases. It was terribly weak, and +looked quite emaciated. It too, when partially restored, had the common +story to tell of being lured away by the “bloofer lady.” + + + + +CHAPTER XIV + +MINA HARKER’S JOURNAL + + +_23 September_.--Jonathan is better after a bad night. I am so glad that +he has plenty of work to do, for that keeps his mind off the terrible +things; and oh, I am rejoiced that he is not now weighed down with the +responsibility of his new position. I knew he would be true to himself, +and now how proud I am to see my Jonathan rising to the height of his +advancement and keeping pace in all ways with the duties that come upon +him. He will be away all day till late, for he said he could not lunch +at home. My household work is done, so I shall take his foreign journal, +and lock myself up in my room and read it.... + + +_24 September_.--I hadn’t the heart to write last night; that terrible +record of Jonathan’s upset me so. Poor dear! How he must have suffered, +whether it be true or only imagination. I wonder if there is any truth +in it at all. Did he get his brain fever, and then write all those +terrible things, or had he some cause for it all? I suppose I shall +never know, for I dare not open the subject to him.... And yet that man +we saw yesterday! He seemed quite certain of him.... Poor fellow! I +suppose it was the funeral upset him and sent his mind back on some +train of thought.... He believes it all himself. I remember how on our +wedding-day he said: “Unless some solemn duty come upon me to go back to +the bitter hours, asleep or awake, mad or sane.” There seems to be +through it all some thread of continuity.... That fearful Count was +coming to London.... If it should be, and he came to London, with his +teeming millions.... There may be a solemn duty; and if it come we must +not shrink from it.... I shall be prepared. I shall get my typewriter +this very hour and begin transcribing. Then we shall be ready for other +eyes if required. And if it be wanted; then, perhaps, if I am ready, +poor Jonathan may not be upset, for I can speak for him and never let +him be troubled or worried with it at all. If ever Jonathan quite gets +over the nervousness he may want to tell me of it all, and I can ask him +questions and find out things, and see how I may comfort him. + + +_Letter, Van Helsing to Mrs. Harker._ + +“_24 September._ + +(_Confidence_) + +“Dear Madam,-- + +“I pray you to pardon my writing, in that I am so far friend as that I +sent to you sad news of Miss Lucy Westenra’s death. By the kindness of +Lord Godalming, I am empowered to read her letters and papers, for I am +deeply concerned about certain matters vitally important. In them I find +some letters from you, which show how great friends you were and how you +love her. Oh, Madam Mina, by that love, I implore you, help me. It is +for others’ good that I ask--to redress great wrong, and to lift much +and terrible troubles--that may be more great than you can know. May it +be that I see you? You can trust me. I am friend of Dr. John Seward and +of Lord Godalming (that was Arthur of Miss Lucy). I must keep it private +for the present from all. I should come to Exeter to see you at once if +you tell me I am privilege to come, and where and when. I implore your +pardon, madam. I have read your letters to poor Lucy, and know how good +you are and how your husband suffer; so I pray you, if it may be, +enlighten him not, lest it may harm. Again your pardon, and forgive me. + +“VAN HELSING.” + + +_Telegram, Mrs. Harker to Van Helsing._ + +“_25 September._--Come to-day by quarter-past ten train if you can catch +it. Can see you any time you call. + +“WILHELMINA HARKER.” + +MINA HARKER’S JOURNAL. + +_25 September._--I cannot help feeling terribly excited as the time +draws near for the visit of Dr. Van Helsing, for somehow I expect that +it will throw some light upon Jonathan’s sad experience; and as he +attended poor dear Lucy in her last illness, he can tell me all about +her. That is the reason of his coming; it is concerning Lucy and her +sleep-walking, and not about Jonathan. Then I shall never know the real +truth now! How silly I am. That awful journal gets hold of my +imagination and tinges everything with something of its own colour. Of +course it is about Lucy. That habit came back to the poor dear, and that +awful night on the cliff must have made her ill. I had almost forgotten +in my own affairs how ill she was afterwards. She must have told him +of her sleep-walking adventure on the cliff, and that I knew all about +it; and now he wants me to tell him what she knows, so that he may +understand. I hope I did right in not saying anything of it to Mrs. +Westenra; I should never forgive myself if any act of mine, were it even +a negative one, brought harm on poor dear Lucy. I hope, too, Dr. Van +Helsing will not blame me; I have had so much trouble and anxiety of +late that I feel I cannot bear more just at present. + +I suppose a cry does us all good at times--clears the air as other rain +does. Perhaps it was reading the journal yesterday that upset me, and +then Jonathan went away this morning to stay away from me a whole day +and night, the first time we have been parted since our marriage. I do +hope the dear fellow will take care of himself, and that nothing will +occur to upset him. It is two o’clock, and the doctor will be here soon +now. I shall say nothing of Jonathan’s journal unless he asks me. I am +so glad I have type-written out my own journal, so that, in case he asks +about Lucy, I can hand it to him; it will save much questioning. + + * * * * * + +_Later._--He has come and gone. Oh, what a strange meeting, and how it +all makes my head whirl round! I feel like one in a dream. Can it be all +possible, or even a part of it? If I had not read Jonathan’s journal +first, I should never have accepted even a possibility. Poor, poor, dear +Jonathan! How he must have suffered. Please the good God, all this may +not upset him again. I shall try to save him from it; but it may be even +a consolation and a help to him--terrible though it be and awful in its +consequences--to know for certain that his eyes and ears and brain did +not deceive him, and that it is all true. It may be that it is the doubt +which haunts him; that when the doubt is removed, no matter +which--waking or dreaming--may prove the truth, he will be more +satisfied and better able to bear the shock. Dr. Van Helsing must be a +good man as well as a clever one if he is Arthur’s friend and Dr. +Seward’s, and if they brought him all the way from Holland to look after +Lucy. I feel from having seen him that he _is_ good and kind and of a +noble nature. When he comes to-morrow I shall ask him about Jonathan; +and then, please God, all this sorrow and anxiety may lead to a good +end. I used to think I would like to practise interviewing; Jonathan’s +friend on “The Exeter News” told him that memory was everything in such +work--that you must be able to put down exactly almost every word +spoken, even if you had to refine some of it afterwards. Here was a rare +interview; I shall try to record it _verbatim_. + +It was half-past two o’clock when the knock came. I took my courage _à +deux mains_ and waited. In a few minutes Mary opened the door, and +announced “Dr. Van Helsing.” + +I rose and bowed, and he came towards me; a man of medium weight, +strongly built, with his shoulders set back over a broad, deep chest and +a neck well balanced on the trunk as the head is on the neck. The poise +of the head strikes one at once as indicative of thought and power; the +head is noble, well-sized, broad, and large behind the ears. The face, +clean-shaven, shows a hard, square chin, a large, resolute, mobile +mouth, a good-sized nose, rather straight, but with quick, sensitive +nostrils, that seem to broaden as the big, bushy brows come down and the +mouth tightens. The forehead is broad and fine, rising at first almost +straight and then sloping back above two bumps or ridges wide apart; +such a forehead that the reddish hair cannot possibly tumble over it, +but falls naturally back and to the sides. Big, dark blue eyes are set +widely apart, and are quick and tender or stern with the man’s moods. He +said to me:-- + +“Mrs. Harker, is it not?” I bowed assent. + +“That was Miss Mina Murray?” Again I assented. + +“It is Mina Murray that I came to see that was friend of that poor dear +child Lucy Westenra. Madam Mina, it is on account of the dead I come.” + +“Sir,” I said, “you could have no better claim on me than that you were +a friend and helper of Lucy Westenra.” And I held out my hand. He took +it and said tenderly:-- + +“Oh, Madam Mina, I knew that the friend of that poor lily girl must be +good, but I had yet to learn----” He finished his speech with a courtly +bow. I asked him what it was that he wanted to see me about, so he at +once began:-- + +“I have read your letters to Miss Lucy. Forgive me, but I had to begin +to inquire somewhere, and there was none to ask. I know that you were +with her at Whitby. She sometimes kept a diary--you need not look +surprised, Madam Mina; it was begun after you had left, and was in +imitation of you--and in that diary she traces by inference certain +things to a sleep-walking in which she puts down that you saved her. In +great perplexity then I come to you, and ask you out of your so much +kindness to tell me all of it that you can remember.” + +“I can tell you, I think, Dr. Van Helsing, all about it.” + +“Ah, then you have good memory for facts, for details? It is not always +so with young ladies.” + +“No, doctor, but I wrote it all down at the time. I can show it to you +if you like.” + +“Oh, Madam Mina, I will be grateful; you will do me much favour.” I +could not resist the temptation of mystifying him a bit--I suppose it is +some of the taste of the original apple that remains still in our +mouths--so I handed him the shorthand diary. He took it with a grateful +bow, and said:-- + +“May I read it?” + +“If you wish,” I answered as demurely as I could. He opened it, and for +an instant his face fell. Then he stood up and bowed. + +“Oh, you so clever woman!” he said. “I knew long that Mr. Jonathan was a +man of much thankfulness; but see, his wife have all the good things. +And will you not so much honour me and so help me as to read it for me? +Alas! I know not the shorthand.” By this time my little joke was over, +and I was almost ashamed; so I took the typewritten copy from my +workbasket and handed it to him. + +“Forgive me,” I said: “I could not help it; but I had been thinking that +it was of dear Lucy that you wished to ask, and so that you might not +have time to wait--not on my account, but because I know your time must +be precious--I have written it out on the typewriter for you.” + +He took it and his eyes glistened. “You are so good,” he said. “And may +I read it now? I may want to ask you some things when I have read.” + +“By all means,” I said, “read it over whilst I order lunch; and then you +can ask me questions whilst we eat.” He bowed and settled himself in a +chair with his back to the light, and became absorbed in the papers, +whilst I went to see after lunch chiefly in order that he might not be +disturbed. When I came back, I found him walking hurriedly up and down +the room, his face all ablaze with excitement. He rushed up to me and +took me by both hands. + +“Oh, Madam Mina,” he said, “how can I say what I owe to you? This paper +is as sunshine. It opens the gate to me. I am daze, I am dazzle, with so +much light, and yet clouds roll in behind the light every time. But that +you do not, cannot, comprehend. Oh, but I am grateful to you, you so +clever woman. Madam”--he said this very solemnly--“if ever Abraham Van +Helsing can do anything for you or yours, I trust you will let me know. +It will be pleasure and delight if I may serve you as a friend; as a +friend, but all I have ever learned, all I can ever do, shall be for you +and those you love. There are darknesses in life, and there are lights; +you are one of the lights. You will have happy life and good life, and +your husband will be blessed in you.” + +“But, doctor, you praise me too much, and--and you do not know me.” + +“Not know you--I, who am old, and who have studied all my life men and +women; I, who have made my specialty the brain and all that belongs to +him and all that follow from him! And I have read your diary that you +have so goodly written for me, and which breathes out truth in every +line. I, who have read your so sweet letter to poor Lucy of your +marriage and your trust, not know you! Oh, Madam Mina, good women tell +all their lives, and by day and by hour and by minute, such things that +angels can read; and we men who wish to know have in us something of +angels’ eyes. Your husband is noble nature, and you are noble too, for +you trust, and trust cannot be where there is mean nature. And your +husband--tell me of him. Is he quite well? Is all that fever gone, and +is he strong and hearty?” I saw here an opening to ask him about +Jonathan, so I said:-- + +“He was almost recovered, but he has been greatly upset by Mr. Hawkins’s +death.” He interrupted:-- + +“Oh, yes, I know, I know. I have read your last two letters.” I went +on:-- + +“I suppose this upset him, for when we were in town on Thursday last he +had a sort of shock.” + +“A shock, and after brain fever so soon! That was not good. What kind of +a shock was it?” + +“He thought he saw some one who recalled something terrible, something +which led to his brain fever.” And here the whole thing seemed to +overwhelm me in a rush. The pity for Jonathan, the horror which he +experienced, the whole fearful mystery of his diary, and the fear that +has been brooding over me ever since, all came in a tumult. I suppose I +was hysterical, for I threw myself on my knees and held up my hands to +him, and implored him to make my husband well again. He took my hands +and raised me up, and made me sit on the sofa, and sat by me; he held my +hand in his, and said to me with, oh, such infinite sweetness:-- + +“My life is a barren and lonely one, and so full of work that I have not +had much time for friendships; but since I have been summoned to here by +my friend John Seward I have known so many good people and seen such +nobility that I feel more than ever--and it has grown with my advancing +years--the loneliness of my life. Believe, me, then, that I come here +full of respect for you, and you have given me hope--hope, not in what I +am seeking of, but that there are good women still left to make life +happy--good women, whose lives and whose truths may make good lesson for +the children that are to be. I am glad, glad, that I may here be of some +use to you; for if your husband suffer, he suffer within the range of my +study and experience. I promise you that I will gladly do _all_ for him +that I can--all to make his life strong and manly, and your life a happy +one. Now you must eat. You are overwrought and perhaps over-anxious. +Husband Jonathan would not like to see you so pale; and what he like not +where he love, is not to his good. Therefore for his sake you must eat +and smile. You have told me all about Lucy, and so now we shall not +speak of it, lest it distress. I shall stay in Exeter to-night, for I +want to think much over what you have told me, and when I have thought I +will ask you questions, if I may. And then, too, you will tell me of +husband Jonathan’s trouble so far as you can, but not yet. You must eat +now; afterwards you shall tell me all.” + +After lunch, when we went back to the drawing-room, he said to me:-- + +“And now tell me all about him.” When it came to speaking to this great +learned man, I began to fear that he would think me a weak fool, and +Jonathan a madman--that journal is all so strange--and I hesitated to go +on. But he was so sweet and kind, and he had promised to help, and I +trusted him, so I said:-- + +“Dr. Van Helsing, what I have to tell you is so queer that you must not +laugh at me or at my husband. I have been since yesterday in a sort of +fever of doubt; you must be kind to me, and not think me foolish that I +have even half believed some very strange things.” He reassured me by +his manner as well as his words when he said:-- + +“Oh, my dear, if you only know how strange is the matter regarding which +I am here, it is you who would laugh. I have learned not to think little +of any one’s belief, no matter how strange it be. I have tried to keep +an open mind; and it is not the ordinary things of life that could close +it, but the strange things, the extraordinary things, the things that +make one doubt if they be mad or sane.” + +“Thank you, thank you, a thousand times! You have taken a weight off my +mind. If you will let me, I shall give you a paper to read. It is long, +but I have typewritten it out. It will tell you my trouble and +Jonathan’s. It is the copy of his journal when abroad, and all that +happened. I dare not say anything of it; you will read for yourself and +judge. And then when I see you, perhaps, you will be very kind and tell +me what you think.” + +“I promise,” he said as I gave him the papers; “I shall in the morning, +so soon as I can, come to see you and your husband, if I may.” + +“Jonathan will be here at half-past eleven, and you must come to lunch +with us and see him then; you could catch the quick 3:34 train, which +will leave you at Paddington before eight.” He was surprised at my +knowledge of the trains off-hand, but he does not know that I have made +up all the trains to and from Exeter, so that I may help Jonathan in +case he is in a hurry. + +So he took the papers with him and went away, and I sit here +thinking--thinking I don’t know what. + + * * * * * + +_Letter (by hand), Van Helsing to Mrs. Harker._ + +“_25 September, 6 o’clock._ + +“Dear Madam Mina,-- + +“I have read your husband’s so wonderful diary. You may sleep without +doubt. Strange and terrible as it is, it is _true_! I will pledge my +life on it. It may be worse for others; but for him and you there is no +dread. He is a noble fellow; and let me tell you from experience of men, +that one who would do as he did in going down that wall and to that +room--ay, and going a second time--is not one to be injured in +permanence by a shock. His brain and his heart are all right; this I +swear, before I have even seen him; so be at rest. I shall have much to +ask him of other things. I am blessed that to-day I come to see you, for +I have learn all at once so much that again I am dazzle--dazzle more +than ever, and I must think. + +“Yours the most faithful, + +“ABRAHAM VAN HELSING.” + + +_Letter, Mrs. Harker to Van Helsing._ + +“_25 September, 6:30 p. m._ + +“My dear Dr. Van Helsing,-- + +“A thousand thanks for your kind letter, which has taken a great weight +off my mind. And yet, if it be true, what terrible things there are in +the world, and what an awful thing if that man, that monster, be really +in London! I fear to think. I have this moment, whilst writing, had a +wire from Jonathan, saying that he leaves by the 6:25 to-night from +Launceston and will be here at 10:18, so that I shall have no fear +to-night. Will you, therefore, instead of lunching with us, please come +to breakfast at eight o’clock, if this be not too early for you? You can +get away, if you are in a hurry, by the 10:30 train, which will bring +you to Paddington by 2:35. Do not answer this, as I shall take it that, +if I do not hear, you will come to breakfast. + +“Believe me, + +“Your faithful and grateful friend, + +“MINA HARKER.” + + +_Jonathan Harker’s Journal._ + +_26 September._--I thought never to write in this diary again, but the +time has come. When I got home last night Mina had supper ready, and +when we had supped she told me of Van Helsing’s visit, and of her having +given him the two diaries copied out, and of how anxious she has been +about me. She showed me in the doctor’s letter that all I wrote down was +true. It seems to have made a new man of me. It was the doubt as to the +reality of the whole thing that knocked me over. I felt impotent, and in +the dark, and distrustful. But, now that I _know_, I am not afraid, even +of the Count. He has succeeded after all, then, in his design in getting +to London, and it was he I saw. He has got younger, and how? Van Helsing +is the man to unmask him and hunt him out, if he is anything like what +Mina says. We sat late, and talked it all over. Mina is dressing, and I +shall call at the hotel in a few minutes and bring him over.... + +He was, I think, surprised to see me. When I came into the room where he +was, and introduced myself, he took me by the shoulder, and turned my +face round to the light, and said, after a sharp scrutiny:-- + +“But Madam Mina told me you were ill, that you had had a shock.” It was +so funny to hear my wife called “Madam Mina” by this kindly, +strong-faced old man. I smiled, and said:-- + +“I _was_ ill, I _have_ had a shock; but you have cured me already.” + +“And how?” + +“By your letter to Mina last night. I was in doubt, and then everything +took a hue of unreality, and I did not know what to trust, even the +evidence of my own senses. Not knowing what to trust, I did not know +what to do; and so had only to keep on working in what had hitherto been +the groove of my life. The groove ceased to avail me, and I mistrusted +myself. Doctor, you don’t know what it is to doubt everything, even +yourself. No, you don’t; you couldn’t with eyebrows like yours.” He +seemed pleased, and laughed as he said:-- + +“So! You are physiognomist. I learn more here with each hour. I am with +so much pleasure coming to you to breakfast; and, oh, sir, you will +pardon praise from an old man, but you are blessed in your wife.” I +would listen to him go on praising Mina for a day, so I simply nodded +and stood silent. + +“She is one of God’s women, fashioned by His own hand to show us men and +other women that there is a heaven where we can enter, and that its +light can be here on earth. So true, so sweet, so noble, so little an +egoist--and that, let me tell you, is much in this age, so sceptical and +selfish. And you, sir--I have read all the letters to poor Miss Lucy, +and some of them speak of you, so I know you since some days from the +knowing of others; but I have seen your true self since last night. You +will give me your hand, will you not? And let us be friends for all our +lives.” + +We shook hands, and he was so earnest and so kind that it made me quite +choky. + +“And now,” he said, “may I ask you for some more help? I have a great +task to do, and at the beginning it is to know. You can help me here. +Can you tell me what went before your going to Transylvania? Later on I +may ask more help, and of a different kind; but at first this will do.” + +“Look here, sir,” I said, “does what you have to do concern the Count?” + +“It does,” he said solemnly. + +“Then I am with you heart and soul. As you go by the 10:30 train, you +will not have time to read them; but I shall get the bundle of papers. +You can take them with you and read them in the train.” + +After breakfast I saw him to the station. When we were parting he +said:-- + +“Perhaps you will come to town if I send to you, and take Madam Mina +too.” + +“We shall both come when you will,” I said. + +I had got him the morning papers and the London papers of the previous +night, and while we were talking at the carriage window, waiting for the +train to start, he was turning them over. His eyes suddenly seemed to +catch something in one of them, “The Westminster Gazette”--I knew it by +the colour--and he grew quite white. He read something intently, +groaning to himself: “Mein Gott! Mein Gott! So soon! so soon!” I do not +think he remembered me at the moment. Just then the whistle blew, and +the train moved off. This recalled him to himself, and he leaned out of +the window and waved his hand, calling out: “Love to Madam Mina; I shall +write so soon as ever I can.” + + +_Dr. Seward’s Diary._ + +_26 September._--Truly there is no such thing as finality. Not a week +since I said “Finis,” and yet here I am starting fresh again, or rather +going on with the same record. Until this afternoon I had no cause to +think of what is done. Renfield had become, to all intents, as sane as +he ever was. He was already well ahead with his fly business; and he had +just started in the spider line also; so he had not been of any trouble +to me. I had a letter from Arthur, written on Sunday, and from it I +gather that he is bearing up wonderfully well. Quincey Morris is with +him, and that is much of a help, for he himself is a bubbling well of +good spirits. Quincey wrote me a line too, and from him I hear that +Arthur is beginning to recover something of his old buoyancy; so as to +them all my mind is at rest. As for myself, I was settling down to my +work with the enthusiasm which I used to have for it, so that I might +fairly have said that the wound which poor Lucy left on me was becoming +cicatrised. Everything is, however, now reopened; and what is to be the +end God only knows. I have an idea that Van Helsing thinks he knows, +too, but he will only let out enough at a time to whet curiosity. He +went to Exeter yesterday, and stayed there all night. To-day he came +back, and almost bounded into the room at about half-past five o’clock, +and thrust last night’s “Westminster Gazette” into my hand. + +“What do you think of that?” he asked as he stood back and folded his +arms. + +I looked over the paper, for I really did not know what he meant; but he +took it from me and pointed out a paragraph about children being decoyed +away at Hampstead. It did not convey much to me, until I reached a +passage where it described small punctured wounds on their throats. An +idea struck me, and I looked up. “Well?” he said. + +“It is like poor Lucy’s.” + +“And what do you make of it?” + +“Simply that there is some cause in common. Whatever it was that injured +her has injured them.” I did not quite understand his answer:-- + +“That is true indirectly, but not directly.” + +“How do you mean, Professor?” I asked. I was a little inclined to take +his seriousness lightly--for, after all, four days of rest and freedom +from burning, harrowing anxiety does help to restore one’s spirits--but +when I saw his face, it sobered me. Never, even in the midst of our +despair about poor Lucy, had he looked more stern. + +“Tell me!” I said. “I can hazard no opinion. I do not know what to +think, and I have no data on which to found a conjecture.” + +“Do you mean to tell me, friend John, that you have no suspicion as to +what poor Lucy died of; not after all the hints given, not only by +events, but by me?” + +“Of nervous prostration following on great loss or waste of blood.” + +“And how the blood lost or waste?” I shook my head. He stepped over and +sat down beside me, and went on:-- + +“You are clever man, friend John; you reason well, and your wit is bold; +but you are too prejudiced. You do not let your eyes see nor your ears +hear, and that which is outside your daily life is not of account to +you. Do you not think that there are things which you cannot understand, +and yet which are; that some people see things that others cannot? But +there are things old and new which must not be contemplate by men’s +eyes, because they know--or think they know--some things which other men +have told them. Ah, it is the fault of our science that it wants to +explain all; and if it explain not, then it says there is nothing to +explain. But yet we see around us every day the growth of new beliefs, +which think themselves new; and which are yet but the old, which pretend +to be young--like the fine ladies at the opera. I suppose now you do not +believe in corporeal transference. No? Nor in materialisation. No? Nor +in astral bodies. No? Nor in the reading of thought. No? Nor in +hypnotism----” + +“Yes,” I said. “Charcot has proved that pretty well.” He smiled as he +went on: “Then you are satisfied as to it. Yes? And of course then you +understand how it act, and can follow the mind of the great +Charcot--alas that he is no more!--into the very soul of the patient +that he influence. No? Then, friend John, am I to take it that you +simply accept fact, and are satisfied to let from premise to conclusion +be a blank? No? Then tell me--for I am student of the brain--how you +accept the hypnotism and reject the thought reading. Let me tell you, my +friend, that there are things done to-day in electrical science which +would have been deemed unholy by the very men who discovered +electricity--who would themselves not so long before have been burned +as wizards. There are always mysteries in life. Why was it that +Methuselah lived nine hundred years, and ‘Old Parr’ one hundred and +sixty-nine, and yet that poor Lucy, with four men’s blood in her poor +veins, could not live even one day? For, had she live one more day, we +could have save her. Do you know all the mystery of life and death? Do +you know the altogether of comparative anatomy and can say wherefore the +qualities of brutes are in some men, and not in others? Can you tell me +why, when other spiders die small and soon, that one great spider lived +for centuries in the tower of the old Spanish church and grew and grew, +till, on descending, he could drink the oil of all the church lamps? Can +you tell me why in the Pampas, ay and elsewhere, there are bats that +come at night and open the veins of cattle and horses and suck dry their +veins; how in some islands of the Western seas there are bats which hang +on the trees all day, and those who have seen describe as like giant +nuts or pods, and that when the sailors sleep on the deck, because that +it is hot, flit down on them, and then--and then in the morning are +found dead men, white as even Miss Lucy was?” + +“Good God, Professor!” I said, starting up. “Do you mean to tell me that +Lucy was bitten by such a bat; and that such a thing is here in London +in the nineteenth century?” He waved his hand for silence, and went +on:-- + +“Can you tell me why the tortoise lives more long than generations of +men; why the elephant goes on and on till he have seen dynasties; and +why the parrot never die only of bite of cat or dog or other complaint? +Can you tell me why men believe in all ages and places that there are +some few who live on always if they be permit; that there are men and +women who cannot die? We all know--because science has vouched for the +fact--that there have been toads shut up in rocks for thousands of +years, shut in one so small hole that only hold him since the youth of +the world. Can you tell me how the Indian fakir can make himself to die +and have been buried, and his grave sealed and corn sowed on it, and the +corn reaped and be cut and sown and reaped and cut again, and then men +come and take away the unbroken seal and that there lie the Indian +fakir, not dead, but that rise up and walk amongst them as before?” Here +I interrupted him. I was getting bewildered; he so crowded on my mind +his list of nature’s eccentricities and possible impossibilities that my +imagination was getting fired. I had a dim idea that he was teaching me +some lesson, as long ago he used to do in his study at Amsterdam; but +he used then to tell me the thing, so that I could have the object of +thought in mind all the time. But now I was without this help, yet I +wanted to follow him, so I said:-- + +“Professor, let me be your pet student again. Tell me the thesis, so +that I may apply your knowledge as you go on. At present I am going in +my mind from point to point as a mad man, and not a sane one, follows an +idea. I feel like a novice lumbering through a bog in a mist, jumping +from one tussock to another in the mere blind effort to move on without +knowing where I am going.” + +“That is good image,” he said. “Well, I shall tell you. My thesis is +this: I want you to believe.” + +“To believe what?” + +“To believe in things that you cannot. Let me illustrate. I heard once +of an American who so defined faith: ‘that faculty which enables us to +believe things which we know to be untrue.’ For one, I follow that man. +He meant that we shall have an open mind, and not let a little bit of +truth check the rush of a big truth, like a small rock does a railway +truck. We get the small truth first. Good! We keep him, and we value +him; but all the same we must not let him think himself all the truth in +the universe.” + +“Then you want me not to let some previous conviction injure the +receptivity of my mind with regard to some strange matter. Do I read +your lesson aright?” + +“Ah, you are my favourite pupil still. It is worth to teach you. Now +that you are willing to understand, you have taken the first step to +understand. You think then that those so small holes in the children’s +throats were made by the same that made the hole in Miss Lucy?” + +“I suppose so.” He stood up and said solemnly:-- + +“Then you are wrong. Oh, would it were so! but alas! no. It is worse, +far, far worse.” + +“In God’s name, Professor Van Helsing, what do you mean?” I cried. + +He threw himself with a despairing gesture into a chair, and placed his +elbows on the table, covering his face with his hands as he spoke:-- + +“They were made by Miss Lucy!” + + + + +CHAPTER XV + +DR. SEWARD’S DIARY--_continued_. + + +For a while sheer anger mastered me; it was as if he had during her life +struck Lucy on the face. I smote the table hard and rose up as I said to +him:-- + +“Dr. Van Helsing, are you mad?” He raised his head and looked at me, and +somehow the tenderness of his face calmed me at once. “Would I were!” he +said. “Madness were easy to bear compared with truth like this. Oh, my +friend, why, think you, did I go so far round, why take so long to tell +you so simple a thing? Was it because I hate you and have hated you all +my life? Was it because I wished to give you pain? Was it that I wanted, +now so late, revenge for that time when you saved my life, and from a +fearful death? Ah no!” + +“Forgive me,” said I. He went on:-- + +“My friend, it was because I wished to be gentle in the breaking to you, +for I know you have loved that so sweet lady. But even yet I do not +expect you to believe. It is so hard to accept at once any abstract +truth, that we may doubt such to be possible when we have always +believed the ‘no’ of it; it is more hard still to accept so sad a +concrete truth, and of such a one as Miss Lucy. To-night I go to prove +it. Dare you come with me?” + +This staggered me. A man does not like to prove such a truth; Byron +excepted from the category, jealousy. + + “And prove the very truth he most abhorred.” + +He saw my hesitation, and spoke:-- + +“The logic is simple, no madman’s logic this time, jumping from tussock +to tussock in a misty bog. If it be not true, then proof will be relief; +at worst it will not harm. If it be true! Ah, there is the dread; yet +very dread should help my cause, for in it is some need of belief. Come, +I tell you what I propose: first, that we go off now and see that child +in the hospital. Dr. Vincent, of the North Hospital, where the papers +say the child is, is friend of mine, and I think of yours since you were +in class at Amsterdam. He will let two scientists see his case, if he +will not let two friends. We shall tell him nothing, but only that we +wish to learn. And then----” + +“And then?” He took a key from his pocket and held it up. “And then we +spend the night, you and I, in the churchyard where Lucy lies. This is +the key that lock the tomb. I had it from the coffin-man to give to +Arthur.” My heart sank within me, for I felt that there was some fearful +ordeal before us. I could do nothing, however, so I plucked up what +heart I could and said that we had better hasten, as the afternoon was +passing.... + +We found the child awake. It had had a sleep and taken some food, and +altogether was going on well. Dr. Vincent took the bandage from its +throat, and showed us the punctures. There was no mistaking the +similarity to those which had been on Lucy’s throat. They were smaller, +and the edges looked fresher; that was all. We asked Vincent to what he +attributed them, and he replied that it must have been a bite of some +animal, perhaps a rat; but, for his own part, he was inclined to think +that it was one of the bats which are so numerous on the northern +heights of London. “Out of so many harmless ones,” he said, “there may +be some wild specimen from the South of a more malignant species. Some +sailor may have brought one home, and it managed to escape; or even from +the Zoölogical Gardens a young one may have got loose, or one be bred +there from a vampire. These things do occur, you know. Only ten days ago +a wolf got out, and was, I believe, traced up in this direction. For a +week after, the children were playing nothing but Red Riding Hood on the +Heath and in every alley in the place until this ‘bloofer lady’ scare +came along, since when it has been quite a gala-time with them. Even +this poor little mite, when he woke up to-day, asked the nurse if he +might go away. When she asked him why he wanted to go, he said he wanted +to play with the ‘bloofer lady.’” + +“I hope,” said Van Helsing, “that when you are sending the child home +you will caution its parents to keep strict watch over it. These fancies +to stray are most dangerous; and if the child were to remain out another +night, it would probably be fatal. But in any case I suppose you will +not let it away for some days?” + +“Certainly not, not for a week at least; longer if the wound is not +healed.” + +Our visit to the hospital took more time than we had reckoned on, and +the sun had dipped before we came out. When Van Helsing saw how dark it +was, he said:-- + +“There is no hurry. It is more late than I thought. Come, let us seek +somewhere that we may eat, and then we shall go on our way.” + +We dined at “Jack Straw’s Castle” along with a little crowd of +bicyclists and others who were genially noisy. About ten o’clock we +started from the inn. It was then very dark, and the scattered lamps +made the darkness greater when we were once outside their individual +radius. The Professor had evidently noted the road we were to go, for he +went on unhesitatingly; but, as for me, I was in quite a mixup as to +locality. As we went further, we met fewer and fewer people, till at +last we were somewhat surprised when we met even the patrol of horse +police going their usual suburban round. At last we reached the wall of +the churchyard, which we climbed over. With some little difficulty--for +it was very dark, and the whole place seemed so strange to us--we found +the Westenra tomb. The Professor took the key, opened the creaky door, +and standing back, politely, but quite unconsciously, motioned me to +precede him. There was a delicious irony in the offer, in the +courtliness of giving preference on such a ghastly occasion. My +companion followed me quickly, and cautiously drew the door to, after +carefully ascertaining that the lock was a falling, and not a spring, +one. In the latter case we should have been in a bad plight. Then he +fumbled in his bag, and taking out a matchbox and a piece of candle, +proceeded to make a light. The tomb in the day-time, and when wreathed +with fresh flowers, had looked grim and gruesome enough; but now, some +days afterwards, when the flowers hung lank and dead, their whites +turning to rust and their greens to browns; when the spider and the +beetle had resumed their accustomed dominance; when time-discoloured +stone, and dust-encrusted mortar, and rusty, dank iron, and tarnished +brass, and clouded silver-plating gave back the feeble glimmer of a +candle, the effect was more miserable and sordid than could have been +imagined. It conveyed irresistibly the idea that life--animal life--was +not the only thing which could pass away. + +Van Helsing went about his work systematically. Holding his candle so +that he could read the coffin plates, and so holding it that the sperm +dropped in white patches which congealed as they touched the metal, he +made assurance of Lucy’s coffin. Another search in his bag, and he took +out a turnscrew. + +“What are you going to do?” I asked. + +“To open the coffin. You shall yet be convinced.” Straightway he began +taking out the screws, and finally lifted off the lid, showing the +casing of lead beneath. The sight was almost too much for me. It seemed +to be as much an affront to the dead as it would have been to have +stripped off her clothing in her sleep whilst living; I actually took +hold of his hand to stop him. He only said: “You shall see,” and again +fumbling in his bag, took out a tiny fret-saw. Striking the turnscrew +through the lead with a swift downward stab, which made me wince, he +made a small hole, which was, however, big enough to admit the point of +the saw. I had expected a rush of gas from the week-old corpse. We +doctors, who have had to study our dangers, have to become accustomed to +such things, and I drew back towards the door. But the Professor never +stopped for a moment; he sawed down a couple of feet along one side of +the lead coffin, and then across, and down the other side. Taking the +edge of the loose flange, he bent it back towards the foot of the +coffin, and holding up the candle into the aperture, motioned to me to +look. + +I drew near and looked. The coffin was empty. + +It was certainly a surprise to me, and gave me a considerable shock, but +Van Helsing was unmoved. He was now more sure than ever of his ground, +and so emboldened to proceed in his task. “Are you satisfied now, friend +John?” he asked. + +I felt all the dogged argumentativeness of my nature awake within me as +I answered him:-- + +“I am satisfied that Lucy’s body is not in that coffin; but that only +proves one thing.” + +“And what is that, friend John?” + +“That it is not there.” + +“That is good logic,” he said, “so far as it goes. But how do you--how +can you--account for it not being there?” + +“Perhaps a body-snatcher,” I suggested. “Some of the undertaker’s people +may have stolen it.” I felt that I was speaking folly, and yet it was +the only real cause which I could suggest. The Professor sighed. “Ah +well!” he said, “we must have more proof. Come with me.” + +He put on the coffin-lid again, gathered up all his things and placed +them in the bag, blew out the light, and placed the candle also in the +bag. We opened the door, and went out. Behind us he closed the door and +locked it. He handed me the key, saying: “Will you keep it? You had +better be assured.” I laughed--it was not a very cheerful laugh, I am +bound to say--as I motioned him to keep it. “A key is nothing,” I said; +“there may be duplicates; and anyhow it is not difficult to pick a lock +of that kind.” He said nothing, but put the key in his pocket. Then he +told me to watch at one side of the churchyard whilst he would watch at +the other. I took up my place behind a yew-tree, and I saw his dark +figure move until the intervening headstones and trees hid it from my +sight. + +It was a lonely vigil. Just after I had taken my place I heard a distant +clock strike twelve, and in time came one and two. I was chilled and +unnerved, and angry with the Professor for taking me on such an errand +and with myself for coming. I was too cold and too sleepy to be keenly +observant, and not sleepy enough to betray my trust so altogether I had +a dreary, miserable time. + +Suddenly, as I turned round, I thought I saw something like a white +streak, moving between two dark yew-trees at the side of the churchyard +farthest from the tomb; at the same time a dark mass moved from the +Professor’s side of the ground, and hurriedly went towards it. Then I +too moved; but I had to go round headstones and railed-off tombs, and I +stumbled over graves. The sky was overcast, and somewhere far off an +early cock crew. A little way off, beyond a line of scattered +juniper-trees, which marked the pathway to the church, a white, dim +figure flitted in the direction of the tomb. The tomb itself was hidden +by trees, and I could not see where the figure disappeared. I heard the +rustle of actual movement where I had first seen the white figure, and +coming over, found the Professor holding in his arms a tiny child. When +he saw me he held it out to me, and said:-- + +“Are you satisfied now?” + +“No,” I said, in a way that I felt was aggressive. + +“Do you not see the child?” + +“Yes, it is a child, but who brought it here? And is it wounded?” I +asked. + +“We shall see,” said the Professor, and with one impulse we took our way +out of the churchyard, he carrying the sleeping child. + +When we had got some little distance away, we went into a clump of +trees, and struck a match, and looked at the child’s throat. It was +without a scratch or scar of any kind. + +“Was I right?” I asked triumphantly. + +“We were just in time,” said the Professor thankfully. + +We had now to decide what we were to do with the child, and so consulted +about it. If we were to take it to a police-station we should have to +give some account of our movements during the night; at least, we should +have had to make some statement as to how we had come to find the child. +So finally we decided that we would take it to the Heath, and when we +heard a policeman coming, would leave it where he could not fail to find +it; we would then seek our way home as quickly as we could. All fell out +well. At the edge of Hampstead Heath we heard a policeman’s heavy +tramp, and laying the child on the pathway, we waited and watched until +he saw it as he flashed his lantern to and fro. We heard his exclamation +of astonishment, and then we went away silently. By good chance we got a +cab near the “Spaniards,” and drove to town. + +I cannot sleep, so I make this entry. But I must try to get a few hours’ +sleep, as Van Helsing is to call for me at noon. He insists that I shall +go with him on another expedition. + + * * * * * + +_27 September._--It was two o’clock before we found a suitable +opportunity for our attempt. The funeral held at noon was all completed, +and the last stragglers of the mourners had taken themselves lazily +away, when, looking carefully from behind a clump of alder-trees, we saw +the sexton lock the gate after him. We knew then that we were safe till +morning did we desire it; but the Professor told me that we should not +want more than an hour at most. Again I felt that horrid sense of the +reality of things, in which any effort of imagination seemed out of +place; and I realised distinctly the perils of the law which we were +incurring in our unhallowed work. Besides, I felt it was all so useless. +Outrageous as it was to open a leaden coffin, to see if a woman dead +nearly a week were really dead, it now seemed the height of folly to +open the tomb again, when we knew, from the evidence of our own +eyesight, that the coffin was empty. I shrugged my shoulders, however, +and rested silent, for Van Helsing had a way of going on his own road, +no matter who remonstrated. He took the key, opened the vault, and again +courteously motioned me to precede. The place was not so gruesome as +last night, but oh, how unutterably mean-looking when the sunshine +streamed in. Van Helsing walked over to Lucy’s coffin, and I followed. +He bent over and again forced back the leaden flange; and then a shock +of surprise and dismay shot through me. + +There lay Lucy, seemingly just as we had seen her the night before her +funeral. She was, if possible, more radiantly beautiful than ever; and I +could not believe that she was dead. The lips were red, nay redder than +before; and on the cheeks was a delicate bloom. + +“Is this a juggle?” I said to him. + +“Are you convinced now?” said the Professor in response, and as he spoke +he put over his hand, and in a way that made me shudder, pulled back the +dead lips and showed the white teeth. + +“See,” he went on, “see, they are even sharper than before. With this +and this”--and he touched one of the canine teeth and that below +it--“the little children can be bitten. Are you of belief now, friend +John?” Once more, argumentative hostility woke within me. I _could_ not +accept such an overwhelming idea as he suggested; so, with an attempt to +argue of which I was even at the moment ashamed, I said:-- + +“She may have been placed here since last night.” + +“Indeed? That is so, and by whom?” + +“I do not know. Some one has done it.” + +“And yet she has been dead one week. Most peoples in that time would not +look so.” I had no answer for this, so was silent. Van Helsing did not +seem to notice my silence; at any rate, he showed neither chagrin nor +triumph. He was looking intently at the face of the dead woman, raising +the eyelids and looking at the eyes, and once more opening the lips and +examining the teeth. Then he turned to me and said:-- + +“Here, there is one thing which is different from all recorded; here is +some dual life that is not as the common. She was bitten by the vampire +when she was in a trance, sleep-walking--oh, you start; you do not know +that, friend John, but you shall know it all later--and in trance could +he best come to take more blood. In trance she died, and in trance she +is Un-Dead, too. So it is that she differ from all other. Usually when +the Un-Dead sleep at home”--as he spoke he made a comprehensive sweep of +his arm to designate what to a vampire was “home”--“their face show what +they are, but this so sweet that was when she not Un-Dead she go back to +the nothings of the common dead. There is no malign there, see, and so +it make hard that I must kill her in her sleep.” This turned my blood +cold, and it began to dawn upon me that I was accepting Van Helsing’s +theories; but if she were really dead, what was there of terror in the +idea of killing her? He looked up at me, and evidently saw the change in +my face, for he said almost joyously:-- + +“Ah, you believe now?” + +I answered: “Do not press me too hard all at once. I am willing to +accept. How will you do this bloody work?” + +“I shall cut off her head and fill her mouth with garlic, and I shall +drive a stake through her body.” It made me shudder to think of so +mutilating the body of the woman whom I had loved. And yet the feeling +was not so strong as I had expected. I was, in fact, beginning to +shudder at the presence of this being, this Un-Dead, as Van Helsing +called it, and to loathe it. Is it possible that love is all subjective, +or all objective? + +I waited a considerable time for Van Helsing to begin, but he stood as +if wrapped in thought. Presently he closed the catch of his bag with a +snap, and said:-- + +“I have been thinking, and have made up my mind as to what is best. If I +did simply follow my inclining I would do now, at this moment, what is +to be done; but there are other things to follow, and things that are +thousand times more difficult in that them we do not know. This is +simple. She have yet no life taken, though that is of time; and to act +now would be to take danger from her for ever. But then we may have to +want Arthur, and how shall we tell him of this? If you, who saw the +wounds on Lucy’s throat, and saw the wounds so similar on the child’s at +the hospital; if you, who saw the coffin empty last night and full +to-day with a woman who have not change only to be more rose and more +beautiful in a whole week, after she die--if you know of this and know +of the white figure last night that brought the child to the churchyard, +and yet of your own senses you did not believe, how, then, can I expect +Arthur, who know none of those things, to believe? He doubted me when I +took him from her kiss when she was dying. I know he has forgiven me +because in some mistaken idea I have done things that prevent him say +good-bye as he ought; and he may think that in some more mistaken idea +this woman was buried alive; and that in most mistake of all we have +killed her. He will then argue back that it is we, mistaken ones, that +have killed her by our ideas; and so he will be much unhappy always. Yet +he never can be sure; and that is the worst of all. And he will +sometimes think that she he loved was buried alive, and that will paint +his dreams with horrors of what she must have suffered; and again, he +will think that we may be right, and that his so beloved was, after all, +an Un-Dead. No! I told him once, and since then I learn much. Now, since +I know it is all true, a hundred thousand times more do I know that he +must pass through the bitter waters to reach the sweet. He, poor fellow, +must have one hour that will make the very face of heaven grow black to +him; then we can act for good all round and send him peace. My mind is +made up. Let us go. You return home for to-night to your asylum, and see +that all be well. As for me, I shall spend the night here in this +churchyard in my own way. To-morrow night you will come to me to the +Berkeley Hotel at ten of the clock. I shall send for Arthur to come too, +and also that so fine young man of America that gave his blood. Later we +shall all have work to do. I come with you so far as Piccadilly and +there dine, for I must be back here before the sun set.” + +So we locked the tomb and came away, and got over the wall of the +churchyard, which was not much of a task, and drove back to Piccadilly. + + +_Note left by Van Helsing in his portmanteau, Berkeley Hotel directed to +John Seward, M. D._ + +(Not delivered.) + +“_27 September._ + +“Friend John,-- + +“I write this in case anything should happen. I go alone to watch in +that churchyard. It pleases me that the Un-Dead, Miss Lucy, shall not +leave to-night, that so on the morrow night she may be more eager. +Therefore I shall fix some things she like not--garlic and a +crucifix--and so seal up the door of the tomb. She is young as Un-Dead, +and will heed. Moreover, these are only to prevent her coming out; they +may not prevail on her wanting to get in; for then the Un-Dead is +desperate, and must find the line of least resistance, whatsoever it may +be. I shall be at hand all the night from sunset till after the sunrise, +and if there be aught that may be learned I shall learn it. For Miss +Lucy or from her, I have no fear; but that other to whom is there that +she is Un-Dead, he have now the power to seek her tomb and find shelter. +He is cunning, as I know from Mr. Jonathan and from the way that all +along he have fooled us when he played with us for Miss Lucy’s life, and +we lost; and in many ways the Un-Dead are strong. He have always the +strength in his hand of twenty men; even we four who gave our strength +to Miss Lucy it also is all to him. Besides, he can summon his wolf and +I know not what. So if it be that he come thither on this night he shall +find me; but none other shall--until it be too late. But it may be that +he will not attempt the place. There is no reason why he should; his +hunting ground is more full of game than the churchyard where the +Un-Dead woman sleep, and the one old man watch. + +“Therefore I write this in case.... Take the papers that are with this, +the diaries of Harker and the rest, and read them, and then find this +great Un-Dead, and cut off his head and burn his heart or drive a stake +through it, so that the world may rest from him. + +“If it be so, farewell. + +“VAN HELSING.” + + + +_Dr. Seward’s Diary._ + +_28 September._--It is wonderful what a good night’s sleep will do for +one. Yesterday I was almost willing to accept Van Helsing’s monstrous +ideas; but now they seem to start out lurid before me as outrages on +common sense. I have no doubt that he believes it all. I wonder if his +mind can have become in any way unhinged. Surely there must be _some_ +rational explanation of all these mysterious things. Is it possible that +the Professor can have done it himself? He is so abnormally clever that +if he went off his head he would carry out his intent with regard to +some fixed idea in a wonderful way. I am loath to think it, and indeed +it would be almost as great a marvel as the other to find that Van +Helsing was mad; but anyhow I shall watch him carefully. I may get some +light on the mystery. + + * * * * * + +_29 September, morning._.... Last night, at a little before ten o’clock, +Arthur and Quincey came into Van Helsing’s room; he told us all that he +wanted us to do, but especially addressing himself to Arthur, as if all +our wills were centred in his. He began by saying that he hoped we would +all come with him too, “for,” he said, “there is a grave duty to be done +there. You were doubtless surprised at my letter?” This query was +directly addressed to Lord Godalming. + +“I was. It rather upset me for a bit. There has been so much trouble +around my house of late that I could do without any more. I have been +curious, too, as to what you mean. Quincey and I talked it over; but the +more we talked, the more puzzled we got, till now I can say for myself +that I’m about up a tree as to any meaning about anything.” + +“Me too,” said Quincey Morris laconically. + +“Oh,” said the Professor, “then you are nearer the beginning, both of +you, than friend John here, who has to go a long way back before he can +even get so far as to begin.” + +It was evident that he recognised my return to my old doubting frame of +mind without my saying a word. Then, turning to the other two, he said +with intense gravity:-- + +“I want your permission to do what I think good this night. It is, I +know, much to ask; and when you know what it is I propose to do you will +know, and only then, how much. Therefore may I ask that you promise me +in the dark, so that afterwards, though you may be angry with me for a +time--I must not disguise from myself the possibility that such may +be--you shall not blame yourselves for anything.” + +“That’s frank anyhow,” broke in Quincey. “I’ll answer for the Professor. +I don’t quite see his drift, but I swear he’s honest; and that’s good +enough for me.” + +“I thank you, sir,” said Van Helsing proudly. “I have done myself the +honour of counting you one trusting friend, and such endorsement is dear +to me.” He held out a hand, which Quincey took. + +Then Arthur spoke out:-- + +“Dr. Van Helsing, I don’t quite like to ‘buy a pig in a poke,’ as they +say in Scotland, and if it be anything in which my honour as a gentleman +or my faith as a Christian is concerned, I cannot make such a promise. +If you can assure me that what you intend does not violate either of +these two, then I give my consent at once; though for the life of me, I +cannot understand what you are driving at.” + +“I accept your limitation,” said Van Helsing, “and all I ask of you is +that if you feel it necessary to condemn any act of mine, you will first +consider it well and be satisfied that it does not violate your +reservations.” + +“Agreed!” said Arthur; “that is only fair. And now that the +_pourparlers_ are over, may I ask what it is we are to do?” + +“I want you to come with me, and to come in secret, to the churchyard at +Kingstead.” + +Arthur’s face fell as he said in an amazed sort of way:-- + +“Where poor Lucy is buried?” The Professor bowed. Arthur went on: “And +when there?” + +“To enter the tomb!” Arthur stood up. + +“Professor, are you in earnest; or it is some monstrous joke? Pardon me, +I see that you are in earnest.” He sat down again, but I could see that +he sat firmly and proudly, as one who is on his dignity. There was +silence until he asked again:-- + +“And when in the tomb?” + +“To open the coffin.” + +“This is too much!” he said, angrily rising again. “I am willing to be +patient in all things that are reasonable; but in this--this desecration +of the grave--of one who----” He fairly choked with indignation. The +Professor looked pityingly at him. + +“If I could spare you one pang, my poor friend,” he said, “God knows I +would. But this night our feet must tread in thorny paths; or later, and +for ever, the feet you love must walk in paths of flame!” + +Arthur looked up with set white face and said:-- + +“Take care, sir, take care!” + +“Would it not be well to hear what I have to say?” said Van Helsing. +“And then you will at least know the limit of my purpose. Shall I go +on?” + +“That’s fair enough,” broke in Morris. + +After a pause Van Helsing went on, evidently with an effort:-- + +“Miss Lucy is dead; is it not so? Yes! Then there can be no wrong to +her. But if she be not dead----” + +Arthur jumped to his feet. + +“Good God!” he cried. “What do you mean? Has there been any mistake; has +she been buried alive?” He groaned in anguish that not even hope could +soften. + +“I did not say she was alive, my child; I did not think it. I go no +further than to say that she might be Un-Dead.” + +“Un-Dead! Not alive! What do you mean? Is this all a nightmare, or what +is it?” + +“There are mysteries which men can only guess at, which age by age they +may solve only in part. Believe me, we are now on the verge of one. But +I have not done. May I cut off the head of dead Miss Lucy?” + +“Heavens and earth, no!” cried Arthur in a storm of passion. “Not for +the wide world will I consent to any mutilation of her dead body. Dr. +Van Helsing, you try me too far. What have I done to you that you should +torture me so? What did that poor, sweet girl do that you should want to +cast such dishonour on her grave? Are you mad to speak such things, or +am I mad to listen to them? Don’t dare to think more of such a +desecration; I shall not give my consent to anything you do. I have a +duty to do in protecting her grave from outrage; and, by God, I shall do +it!” + +Van Helsing rose up from where he had all the time been seated, and +said, gravely and sternly:-- + +“My Lord Godalming, I, too, have a duty to do, a duty to others, a duty +to you, a duty to the dead; and, by God, I shall do it! All I ask you +now is that you come with me, that you look and listen; and if when +later I make the same request you do not be more eager for its +fulfilment even than I am, then--then I shall do my duty, whatever it +may seem to me. And then, to follow of your Lordship’s wishes I shall +hold myself at your disposal to render an account to you, when and where +you will.” His voice broke a little, and he went on with a voice full of +pity:-- + +“But, I beseech you, do not go forth in anger with me. In a long life of +acts which were often not pleasant to do, and which sometimes did wring +my heart, I have never had so heavy a task as now. Believe me that if +the time comes for you to change your mind towards me, one look from +you will wipe away all this so sad hour, for I would do what a man can +to save you from sorrow. Just think. For why should I give myself so +much of labour and so much of sorrow? I have come here from my own land +to do what I can of good; at the first to please my friend John, and +then to help a sweet young lady, whom, too, I came to love. For her--I +am ashamed to say so much, but I say it in kindness--I gave what you +gave; the blood of my veins; I gave it, I, who was not, like you, her +lover, but only her physician and her friend. I gave to her my nights +and days--before death, after death; and if my death can do her good +even now, when she is the dead Un-Dead, she shall have it freely.” He +said this with a very grave, sweet pride, and Arthur was much affected +by it. He took the old man’s hand and said in a broken voice:-- + +“Oh, it is hard to think of it, and I cannot understand; but at least I +shall go with you and wait.” + + + + +CHAPTER XVI + +DR. SEWARD’S DIARY--_continued_ + + +It was just a quarter before twelve o’clock when we got into the +churchyard over the low wall. The night was dark with occasional gleams +of moonlight between the rents of the heavy clouds that scudded across +the sky. We all kept somehow close together, with Van Helsing slightly +in front as he led the way. When we had come close to the tomb I looked +well at Arthur, for I feared that the proximity to a place laden with so +sorrowful a memory would upset him; but he bore himself well. I took it +that the very mystery of the proceeding was in some way a counteractant +to his grief. The Professor unlocked the door, and seeing a natural +hesitation amongst us for various reasons, solved the difficulty by +entering first himself. The rest of us followed, and he closed the door. +He then lit a dark lantern and pointed to the coffin. Arthur stepped +forward hesitatingly; Van Helsing said to me:-- + +“You were with me here yesterday. Was the body of Miss Lucy in that +coffin?” + +“It was.” The Professor turned to the rest saying:-- + +“You hear; and yet there is no one who does not believe with me.” He +took his screwdriver and again took off the lid of the coffin. Arthur +looked on, very pale but silent; when the lid was removed he stepped +forward. He evidently did not know that there was a leaden coffin, or, +at any rate, had not thought of it. When he saw the rent in the lead, +the blood rushed to his face for an instant, but as quickly fell away +again, so that he remained of a ghastly whiteness; he was still silent. +Van Helsing forced back the leaden flange, and we all looked in and +recoiled. + +The coffin was empty! + +For several minutes no one spoke a word. The silence was broken by +Quincey Morris:-- + +“Professor, I answered for you. Your word is all I want. I wouldn’t ask +such a thing ordinarily--I wouldn’t so dishonour you as to imply a +doubt; but this is a mystery that goes beyond any honour or dishonour. +Is this your doing?” + +“I swear to you by all that I hold sacred that I have not removed nor +touched her. What happened was this: Two nights ago my friend Seward and +I came here--with good purpose, believe me. I opened that coffin, which +was then sealed up, and we found it, as now, empty. We then waited, and +saw something white come through the trees. The next day we came here in +day-time, and she lay there. Did she not, friend John?” + +“Yes.” + +“That night we were just in time. One more so small child was missing, +and we find it, thank God, unharmed amongst the graves. Yesterday I came +here before sundown, for at sundown the Un-Dead can move. I waited here +all the night till the sun rose, but I saw nothing. It was most probable +that it was because I had laid over the clamps of those doors garlic, +which the Un-Dead cannot bear, and other things which they shun. Last +night there was no exodus, so to-night before the sundown I took away my +garlic and other things. And so it is we find this coffin empty. But +bear with me. So far there is much that is strange. Wait you with me +outside, unseen and unheard, and things much stranger are yet to be. +So”--here he shut the dark slide of his lantern--“now to the outside.” +He opened the door, and we filed out, he coming last and locking the +door behind him. + +Oh! but it seemed fresh and pure in the night air after the terror of +that vault. How sweet it was to see the clouds race by, and the passing +gleams of the moonlight between the scudding clouds crossing and +passing--like the gladness and sorrow of a man’s life; how sweet it was +to breathe the fresh air, that had no taint of death and decay; how +humanising to see the red lighting of the sky beyond the hill, and to +hear far away the muffled roar that marks the life of a great city. Each +in his own way was solemn and overcome. Arthur was silent, and was, I +could see, striving to grasp the purpose and the inner meaning of the +mystery. I was myself tolerably patient, and half inclined again to +throw aside doubt and to accept Van Helsing’s conclusions. Quincey +Morris was phlegmatic in the way of a man who accepts all things, and +accepts them in the spirit of cool bravery, with hazard of all he has to +stake. Not being able to smoke, he cut himself a good-sized plug of +tobacco and began to chew. As to Van Helsing, he was employed in a +definite way. First he took from his bag a mass of what looked like +thin, wafer-like biscuit, which was carefully rolled up in a white +napkin; next he took out a double-handful of some whitish stuff, like +dough or putty. He crumbled the wafer up fine and worked it into the +mass between his hands. This he then took, and rolling it into thin +strips, began to lay them into the crevices between the door and its +setting in the tomb. I was somewhat puzzled at this, and being close, +asked him what it was that he was doing. Arthur and Quincey drew near +also, as they too were curious. He answered:-- + +“I am closing the tomb, so that the Un-Dead may not enter.” + +“And is that stuff you have put there going to do it?” asked Quincey. +“Great Scott! Is this a game?” + +“It is.” + +“What is that which you are using?” This time the question was by +Arthur. Van Helsing reverently lifted his hat as he answered:-- + +“The Host. I brought it from Amsterdam. I have an Indulgence.” It was an +answer that appalled the most sceptical of us, and we felt individually +that in the presence of such earnest purpose as the Professor’s, a +purpose which could thus use the to him most sacred of things, it was +impossible to distrust. In respectful silence we took the places +assigned to us close round the tomb, but hidden from the sight of any +one approaching. I pitied the others, especially Arthur. I had myself +been apprenticed by my former visits to this watching horror; and yet I, +who had up to an hour ago repudiated the proofs, felt my heart sink +within me. Never did tombs look so ghastly white; never did cypress, or +yew, or juniper so seem the embodiment of funereal gloom; never did tree +or grass wave or rustle so ominously; never did bough creak so +mysteriously; and never did the far-away howling of dogs send such a +woeful presage through the night. + +There was a long spell of silence, a big, aching void, and then from the +Professor a keen “S-s-s-s!” He pointed; and far down the avenue of yews +we saw a white figure advance--a dim white figure, which held something +dark at its breast. The figure stopped, and at the moment a ray of +moonlight fell upon the masses of driving clouds and showed in startling +prominence a dark-haired woman, dressed in the cerements of the grave. +We could not see the face, for it was bent down over what we saw to be a +fair-haired child. There was a pause and a sharp little cry, such as a +child gives in sleep, or a dog as it lies before the fire and dreams. We +were starting forward, but the Professor’s warning hand, seen by us as +he stood behind a yew-tree, kept us back; and then as we looked the +white figure moved forwards again. It was now near enough for us to see +clearly, and the moonlight still held. My own heart grew cold as ice, +and I could hear the gasp of Arthur, as we recognised the features of +Lucy Westenra. Lucy Westenra, but yet how changed. The sweetness was +turned to adamantine, heartless cruelty, and the purity to voluptuous +wantonness. Van Helsing stepped out, and, obedient to his gesture, we +all advanced too; the four of us ranged in a line before the door of the +tomb. Van Helsing raised his lantern and drew the slide; by the +concentrated light that fell on Lucy’s face we could see that the lips +were crimson with fresh blood, and that the stream had trickled over her +chin and stained the purity of her lawn death-robe. + +We shuddered with horror. I could see by the tremulous light that even +Van Helsing’s iron nerve had failed. Arthur was next to me, and if I had +not seized his arm and held him up, he would have fallen. + +When Lucy--I call the thing that was before us Lucy because it bore her +shape--saw us she drew back with an angry snarl, such as a cat gives +when taken unawares; then her eyes ranged over us. Lucy’s eyes in form +and colour; but Lucy’s eyes unclean and full of hell-fire, instead of +the pure, gentle orbs we knew. At that moment the remnant of my love +passed into hate and loathing; had she then to be killed, I could have +done it with savage delight. As she looked, her eyes blazed with unholy +light, and the face became wreathed with a voluptuous smile. Oh, God, +how it made me shudder to see it! With a careless motion, she flung to +the ground, callous as a devil, the child that up to now she had +clutched strenuously to her breast, growling over it as a dog growls +over a bone. The child gave a sharp cry, and lay there moaning. There +was a cold-bloodedness in the act which wrung a groan from Arthur; when +she advanced to him with outstretched arms and a wanton smile he fell +back and hid his face in his hands. + +She still advanced, however, and with a languorous, voluptuous grace, +said:-- + +“Come to me, Arthur. Leave these others and come to me. My arms are +hungry for you. Come, and we can rest together. Come, my husband, come!” + +There was something diabolically sweet in her tones--something of the +tingling of glass when struck--which rang through the brains even of us +who heard the words addressed to another. As for Arthur, he seemed under +a spell; moving his hands from his face, he opened wide his arms. She +was leaping for them, when Van Helsing sprang forward and held between +them his little golden crucifix. She recoiled from it, and, with a +suddenly distorted face, full of rage, dashed past him as if to enter +the tomb. + +When within a foot or two of the door, however, she stopped, as if +arrested by some irresistible force. Then she turned, and her face was +shown in the clear burst of moonlight and by the lamp, which had now no +quiver from Van Helsing’s iron nerves. Never did I see such baffled +malice on a face; and never, I trust, shall such ever be seen again by +mortal eyes. The beautiful colour became livid, the eyes seemed to throw +out sparks of hell-fire, the brows were wrinkled as though the folds of +the flesh were the coils of Medusa’s snakes, and the lovely, +blood-stained mouth grew to an open square, as in the passion masks of +the Greeks and Japanese. If ever a face meant death--if looks could +kill--we saw it at that moment. + +And so for full half a minute, which seemed an eternity, she remained +between the lifted crucifix and the sacred closing of her means of +entry. Van Helsing broke the silence by asking Arthur:-- + +“Answer me, oh my friend! Am I to proceed in my work?” + +Arthur threw himself on his knees, and hid his face in his hands, as he +answered:-- + +“Do as you will, friend; do as you will. There can be no horror like +this ever any more;” and he groaned in spirit. Quincey and I +simultaneously moved towards him, and took his arms. We could hear the +click of the closing lantern as Van Helsing held it down; coming close +to the tomb, he began to remove from the chinks some of the sacred +emblem which he had placed there. We all looked on in horrified +amazement as we saw, when he stood back, the woman, with a corporeal +body as real at that moment as our own, pass in through the interstice +where scarce a knife-blade could have gone. We all felt a glad sense of +relief when we saw the Professor calmly restoring the strings of putty +to the edges of the door. + +When this was done, he lifted the child and said: + +“Come now, my friends; we can do no more till to-morrow. There is a +funeral at noon, so here we shall all come before long after that. The +friends of the dead will all be gone by two, and when the sexton lock +the gate we shall remain. Then there is more to do; but not like this of +to-night. As for this little one, he is not much harm, and by to-morrow +night he shall be well. We shall leave him where the police will find +him, as on the other night; and then to home.” Coming close to Arthur, +he said:-- + +“My friend Arthur, you have had a sore trial; but after, when you look +back, you will see how it was necessary. You are now in the bitter +waters, my child. By this time to-morrow you will, please God, have +passed them, and have drunk of the sweet waters; so do not mourn +overmuch. Till then I shall not ask you to forgive me.” + +Arthur and Quincey came home with me, and we tried to cheer each other +on the way. We had left the child in safety, and were tired; so we all +slept with more or less reality of sleep. + + * * * * * + +_29 September, night._--A little before twelve o’clock we three--Arthur, +Quincey Morris, and myself--called for the Professor. It was odd to +notice that by common consent we had all put on black clothes. Of +course, Arthur wore black, for he was in deep mourning, but the rest of +us wore it by instinct. We got to the churchyard by half-past one, and +strolled about, keeping out of official observation, so that when the +gravediggers had completed their task and the sexton under the belief +that every one had gone, had locked the gate, we had the place all to +ourselves. Van Helsing, instead of his little black bag, had with him a +long leather one, something like a cricketing bag; it was manifestly of +fair weight. + +When we were alone and had heard the last of the footsteps die out up +the road, we silently, and as if by ordered intention, followed the +Professor to the tomb. He unlocked the door, and we entered, closing it +behind us. Then he took from his bag the lantern, which he lit, and also +two wax candles, which, when lighted, he stuck, by melting their own +ends, on other coffins, so that they might give light sufficient to work +by. When he again lifted the lid off Lucy’s coffin we all looked--Arthur +trembling like an aspen--and saw that the body lay there in all its +death-beauty. But there was no love in my own heart, nothing but +loathing for the foul Thing which had taken Lucy’s shape without her +soul. I could see even Arthur’s face grow hard as he looked. Presently +he said to Van Helsing:-- + +“Is this really Lucy’s body, or only a demon in her shape?” + +“It is her body, and yet not it. But wait a while, and you all see her +as she was, and is.” + +She seemed like a nightmare of Lucy as she lay there; the pointed teeth, +the bloodstained, voluptuous mouth--which it made one shudder to +see--the whole carnal and unspiritual appearance, seeming like a +devilish mockery of Lucy’s sweet purity. Van Helsing, with his usual +methodicalness, began taking the various contents from his bag and +placing them ready for use. First he took out a soldering iron and some +plumbing solder, and then a small oil-lamp, which gave out, when lit in +a corner of the tomb, gas which burned at fierce heat with a blue +flame; then his operating knives, which he placed to hand; and last a +round wooden stake, some two and a half or three inches thick and about +three feet long. One end of it was hardened by charring in the fire, and +was sharpened to a fine point. With this stake came a heavy hammer, such +as in households is used in the coal-cellar for breaking the lumps. To +me, a doctor’s preparations for work of any kind are stimulating and +bracing, but the effect of these things on both Arthur and Quincey was +to cause them a sort of consternation. They both, however, kept their +courage, and remained silent and quiet. + +When all was ready, Van Helsing said:-- + +“Before we do anything, let me tell you this; it is out of the lore and +experience of the ancients and of all those who have studied the powers +of the Un-Dead. When they become such, there comes with the change the +curse of immortality; they cannot die, but must go on age after age +adding new victims and multiplying the evils of the world; for all that +die from the preying of the Un-Dead becomes themselves Un-Dead, and prey +on their kind. And so the circle goes on ever widening, like as the +ripples from a stone thrown in the water. Friend Arthur, if you had met +that kiss which you know of before poor Lucy die; or again, last night +when you open your arms to her, you would in time, when you had died, +have become _nosferatu_, as they call it in Eastern Europe, and would +all time make more of those Un-Deads that so have fill us with horror. +The career of this so unhappy dear lady is but just begun. Those +children whose blood she suck are not as yet so much the worse; but if +she live on, Un-Dead, more and more they lose their blood and by her +power over them they come to her; and so she draw their blood with that +so wicked mouth. But if she die in truth, then all cease; the tiny +wounds of the throats disappear, and they go back to their plays +unknowing ever of what has been. But of the most blessed of all, when +this now Un-Dead be made to rest as true dead, then the soul of the poor +lady whom we love shall again be free. Instead of working wickedness by +night and growing more debased in the assimilating of it by day, she +shall take her place with the other Angels. So that, my friend, it will +be a blessed hand for her that shall strike the blow that sets her free. +To this I am willing; but is there none amongst us who has a better +right? Will it be no joy to think of hereafter in the silence of the +night when sleep is not: ‘It was my hand that sent her to the stars; it +was the hand of him that loved her best; the hand that of all she would +herself have chosen, had it been to her to choose?’ Tell me if there be +such a one amongst us?” + +We all looked at Arthur. He saw, too, what we all did, the infinite +kindness which suggested that his should be the hand which would restore +Lucy to us as a holy, and not an unholy, memory; he stepped forward and +said bravely, though his hand trembled, and his face was as pale as +snow:-- + +“My true friend, from the bottom of my broken heart I thank you. Tell me +what I am to do, and I shall not falter!” Van Helsing laid a hand on his +shoulder, and said:-- + +“Brave lad! A moment’s courage, and it is done. This stake must be +driven through her. It will be a fearful ordeal--be not deceived in +that--but it will be only a short time, and you will then rejoice more +than your pain was great; from this grim tomb you will emerge as though +you tread on air. But you must not falter when once you have begun. Only +think that we, your true friends, are round you, and that we pray for +you all the time.” + +“Go on,” said Arthur hoarsely. “Tell me what I am to do.” + +“Take this stake in your left hand, ready to place the point over the +heart, and the hammer in your right. Then when we begin our prayer for +the dead--I shall read him, I have here the book, and the others shall +follow--strike in God’s name, that so all may be well with the dead that +we love and that the Un-Dead pass away.” + +Arthur took the stake and the hammer, and when once his mind was set on +action his hands never trembled nor even quivered. Van Helsing opened +his missal and began to read, and Quincey and I followed as well as we +could. Arthur placed the point over the heart, and as I looked I could +see its dint in the white flesh. Then he struck with all his might. + +The Thing in the coffin writhed; and a hideous, blood-curdling screech +came from the opened red lips. The body shook and quivered and twisted +in wild contortions; the sharp white teeth champed together till the +lips were cut, and the mouth was smeared with a crimson foam. But Arthur +never faltered. He looked like a figure of Thor as his untrembling arm +rose and fell, driving deeper and deeper the mercy-bearing stake, whilst +the blood from the pierced heart welled and spurted up around it. His +face was set, and high duty seemed to shine through it; the sight of it +gave us courage so that our voices seemed to ring through the little +vault. + +And then the writhing and quivering of the body became less, and the +teeth seemed to champ, and the face to quiver. Finally it lay still. The +terrible task was over. + +The hammer fell from Arthur’s hand. He reeled and would have fallen had +we not caught him. The great drops of sweat sprang from his forehead, +and his breath came in broken gasps. It had indeed been an awful strain +on him; and had he not been forced to his task by more than human +considerations he could never have gone through with it. For a few +minutes we were so taken up with him that we did not look towards the +coffin. When we did, however, a murmur of startled surprise ran from one +to the other of us. We gazed so eagerly that Arthur rose, for he had +been seated on the ground, and came and looked too; and then a glad, +strange light broke over his face and dispelled altogether the gloom of +horror that lay upon it. + +There, in the coffin lay no longer the foul Thing that we had so dreaded +and grown to hate that the work of her destruction was yielded as a +privilege to the one best entitled to it, but Lucy as we had seen her in +her life, with her face of unequalled sweetness and purity. True that +there were there, as we had seen them in life, the traces of care and +pain and waste; but these were all dear to us, for they marked her truth +to what we knew. One and all we felt that the holy calm that lay like +sunshine over the wasted face and form was only an earthly token and +symbol of the calm that was to reign for ever. + +Van Helsing came and laid his hand on Arthur’s shoulder, and said to +him:-- + +“And now, Arthur my friend, dear lad, am I not forgiven?” + +The reaction of the terrible strain came as he took the old man’s hand +in his, and raising it to his lips, pressed it, and said:-- + +“Forgiven! God bless you that you have given my dear one her soul again, +and me peace.” He put his hands on the Professor’s shoulder, and laying +his head on his breast, cried for a while silently, whilst we stood +unmoving. When he raised his head Van Helsing said to him:-- + +“And now, my child, you may kiss her. Kiss her dead lips if you will, as +she would have you to, if for her to choose. For she is not a grinning +devil now--not any more a foul Thing for all eternity. No longer she is +the devil’s Un-Dead. She is God’s true dead, whose soul is with Him!” + +Arthur bent and kissed her, and then we sent him and Quincey out of the +tomb; the Professor and I sawed the top off the stake, leaving the point +of it in the body. Then we cut off the head and filled the mouth with +garlic. We soldered up the leaden coffin, screwed on the coffin-lid, +and gathering up our belongings, came away. When the Professor locked +the door he gave the key to Arthur. + +Outside the air was sweet, the sun shone, and the birds sang, and it +seemed as if all nature were tuned to a different pitch. There was +gladness and mirth and peace everywhere, for we were at rest ourselves +on one account, and we were glad, though it was with a tempered joy. + +Before we moved away Van Helsing said:-- + +“Now, my friends, one step of our work is done, one the most harrowing +to ourselves. But there remains a greater task: to find out the author +of all this our sorrow and to stamp him out. I have clues which we can +follow; but it is a long task, and a difficult, and there is danger in +it, and pain. Shall you not all help me? We have learned to believe, all +of us--is it not so? And since so, do we not see our duty? Yes! And do +we not promise to go on to the bitter end?” + +Each in turn, we took his hand, and the promise was made. Then said the +Professor as we moved off:-- + +“Two nights hence you shall meet with me and dine together at seven of +the clock with friend John. I shall entreat two others, two that you +know not as yet; and I shall be ready to all our work show and our plans +unfold. Friend John, you come with me home, for I have much to consult +about, and you can help me. To-night I leave for Amsterdam, but shall +return to-morrow night. And then begins our great quest. But first I +shall have much to say, so that you may know what is to do and to dread. +Then our promise shall be made to each other anew; for there is a +terrible task before us, and once our feet are on the ploughshare we +must not draw back.” + + + + +CHAPTER XVII + +DR. SEWARD’S DIARY--_continued_ + + +When we arrived at the Berkeley Hotel, Van Helsing found a telegram +waiting for him:-- + + “Am coming up by train. Jonathan at Whitby. Important news.--MINA + HARKER.” + +The Professor was delighted. “Ah, that wonderful Madam Mina,” he said, +“pearl among women! She arrive, but I cannot stay. She must go to your +house, friend John. You must meet her at the station. Telegraph her _en +route_, so that she may be prepared.” + +When the wire was despatched he had a cup of tea; over it he told me of +a diary kept by Jonathan Harker when abroad, and gave me a typewritten +copy of it, as also of Mrs. Harker’s diary at Whitby. “Take these,” he +said, “and study them well. When I have returned you will be master of +all the facts, and we can then better enter on our inquisition. Keep +them safe, for there is in them much of treasure. You will need all your +faith, even you who have had such an experience as that of to-day. What +is here told,” he laid his hand heavily and gravely on the packet of +papers as he spoke, “may be the beginning of the end to you and me and +many another; or it may sound the knell of the Un-Dead who walk the +earth. Read all, I pray you, with the open mind; and if you can add in +any way to the story here told do so, for it is all-important. You have +kept diary of all these so strange things; is it not so? Yes! Then we +shall go through all these together when we meet.” He then made ready +for his departure, and shortly after drove off to Liverpool Street. I +took my way to Paddington, where I arrived about fifteen minutes before +the train came in. + +The crowd melted away, after the bustling fashion common to arrival +platforms; and I was beginning to feel uneasy, lest I might miss my +guest, when a sweet-faced, dainty-looking girl stepped up to me, and, +after a quick glance, said: “Dr. Seward, is it not?” + +“And you are Mrs. Harker!” I answered at once; whereupon she held out +her hand. + +“I knew you from the description of poor dear Lucy; but----” She stopped +suddenly, and a quick blush overspread her face. + +The blush that rose to my own cheeks somehow set us both at ease, for it +was a tacit answer to her own. I got her luggage, which included a +typewriter, and we took the Underground to Fenchurch Street, after I had +sent a wire to my housekeeper to have a sitting-room and bedroom +prepared at once for Mrs. Harker. + +In due time we arrived. She knew, of course, that the place was a +lunatic asylum, but I could see that she was unable to repress a shudder +when we entered. + +She told me that, if she might, she would come presently to my study, as +she had much to say. So here I am finishing my entry in my phonograph +diary whilst I await her. As yet I have not had the chance of looking at +the papers which Van Helsing left with me, though they lie open before +me. I must get her interested in something, so that I may have an +opportunity of reading them. She does not know how precious time is, or +what a task we have in hand. I must be careful not to frighten her. Here +she is! + + +_Mina Harker’s Journal._ + +_29 September._--After I had tidied myself, I went down to Dr. Seward’s +study. At the door I paused a moment, for I thought I heard him talking +with some one. As, however, he had pressed me to be quick, I knocked at +the door, and on his calling out, “Come in,” I entered. + +To my intense surprise, there was no one with him. He was quite alone, +and on the table opposite him was what I knew at once from the +description to be a phonograph. I had never seen one, and was much +interested. + +“I hope I did not keep you waiting,” I said; “but I stayed at the door +as I heard you talking, and thought there was some one with you.” + +“Oh,” he replied with a smile, “I was only entering my diary.” + +“Your diary?” I asked him in surprise. + +“Yes,” he answered. “I keep it in this.” As he spoke he laid his hand on +the phonograph. I felt quite excited over it, and blurted out:-- + +“Why, this beats even shorthand! May I hear it say something?” + +“Certainly,” he replied with alacrity, and stood up to put it in train +for speaking. Then he paused, and a troubled look overspread his face. + +“The fact is,” he began awkwardly, “I only keep my diary in it; and as +it is entirely--almost entirely--about my cases, it may be awkward--that +is, I mean----” He stopped, and I tried to help him out of his +embarrassment:-- + +“You helped to attend dear Lucy at the end. Let me hear how she died; +for all that I know of her, I shall be very grateful. She was very, very +dear to me.” + +To my surprise, he answered, with a horrorstruck look in his face:-- + +“Tell you of her death? Not for the wide world!” + +“Why not?” I asked, for some grave, terrible feeling was coming over me. +Again he paused, and I could see that he was trying to invent an excuse. +At length he stammered out:-- + +“You see, I do not know how to pick out any particular part of the +diary.” Even while he was speaking an idea dawned upon him, and he said +with unconscious simplicity, in a different voice, and with the naïveté +of a child: “That’s quite true, upon my honour. Honest Indian!” I could +not but smile, at which he grimaced. “I gave myself away that time!” he +said. “But do you know that, although I have kept the diary for months +past, it never once struck me how I was going to find any particular +part of it in case I wanted to look it up?” By this time my mind was +made up that the diary of a doctor who attended Lucy might have +something to add to the sum of our knowledge of that terrible Being, and +I said boldly:-- + +“Then, Dr. Seward, you had better let me copy it out for you on my +typewriter.” He grew to a positively deathly pallor as he said:-- + +“No! no! no! For all the world, I wouldn’t let you know that terrible +story!” + +Then it was terrible; my intuition was right! For a moment I thought, +and as my eyes ranged the room, unconsciously looking for something or +some opportunity to aid me, they lit on a great batch of typewriting on +the table. His eyes caught the look in mine, and, without his thinking, +followed their direction. As they saw the parcel he realised my meaning. + +“You do not know me,” I said. “When you have read those papers--my own +diary and my husband’s also, which I have typed--you will know me +better. I have not faltered in giving every thought of my own heart in +this cause; but, of course, you do not know me--yet; and I must not +expect you to trust me so far.” + +He is certainly a man of noble nature; poor dear Lucy was right about +him. He stood up and opened a large drawer, in which were arranged in +order a number of hollow cylinders of metal covered with dark wax, and +said:-- + +“You are quite right. I did not trust you because I did not know you. +But I know you now; and let me say that I should have known you long +ago. I know that Lucy told you of me; she told me of you too. May I make +the only atonement in my power? Take the cylinders and hear them--the +first half-dozen of them are personal to me, and they will not horrify +you; then you will know me better. Dinner will by then be ready. In the +meantime I shall read over some of these documents, and shall be better +able to understand certain things.” He carried the phonograph himself up +to my sitting-room and adjusted it for me. Now I shall learn something +pleasant, I am sure; for it will tell me the other side of a true love +episode of which I know one side already.... + + +_Dr. Seward’s Diary._ + +_29 September._--I was so absorbed in that wonderful diary of Jonathan +Harker and that other of his wife that I let the time run on without +thinking. Mrs. Harker was not down when the maid came to announce +dinner, so I said: “She is possibly tired; let dinner wait an hour,” and +I went on with my work. I had just finished Mrs. Harker’s diary, when +she came in. She looked sweetly pretty, but very sad, and her eyes were +flushed with crying. This somehow moved me much. Of late I have had +cause for tears, God knows! but the relief of them was denied me; and +now the sight of those sweet eyes, brightened with recent tears, went +straight to my heart. So I said as gently as I could:-- + +“I greatly fear I have distressed you.” + +“Oh, no, not distressed me,” she replied, “but I have been more touched +than I can say by your grief. That is a wonderful machine, but it is +cruelly true. It told me, in its very tones, the anguish of your heart. +It was like a soul crying out to Almighty God. No one must hear them +spoken ever again! See, I have tried to be useful. I have copied out the +words on my typewriter, and none other need now hear your heart beat, as +I did.” + +“No one need ever know, shall ever know,” I said in a low voice. She +laid her hand on mine and said very gravely:-- + +“Ah, but they must!” + +“Must! But why?” I asked. + +“Because it is a part of the terrible story, a part of poor dear Lucy’s +death and all that led to it; because in the struggle which we have +before us to rid the earth of this terrible monster we must have all +the knowledge and all the help which we can get. I think that the +cylinders which you gave me contained more than you intended me to know; +but I can see that there are in your record many lights to this dark +mystery. You will let me help, will you not? I know all up to a certain +point; and I see already, though your diary only took me to 7 September, +how poor Lucy was beset, and how her terrible doom was being wrought +out. Jonathan and I have been working day and night since Professor Van +Helsing saw us. He is gone to Whitby to get more information, and he +will be here to-morrow to help us. We need have no secrets amongst us; +working together and with absolute trust, we can surely be stronger than +if some of us were in the dark.” She looked at me so appealingly, and at +the same time manifested such courage and resolution in her bearing, +that I gave in at once to her wishes. “You shall,” I said, “do as you +like in the matter. God forgive me if I do wrong! There are terrible +things yet to learn of; but if you have so far travelled on the road to +poor Lucy’s death, you will not be content, I know, to remain in the +dark. Nay, the end--the very end--may give you a gleam of peace. Come, +there is dinner. We must keep one another strong for what is before us; +we have a cruel and dreadful task. When you have eaten you shall learn +the rest, and I shall answer any questions you ask--if there be anything +which you do not understand, though it was apparent to us who were +present.” + + +_Mina Harker’s Journal._ + +_29 September._--After dinner I came with Dr. Seward to his study. He +brought back the phonograph from my room, and I took my typewriter. He +placed me in a comfortable chair, and arranged the phonograph so that I +could touch it without getting up, and showed me how to stop it in case +I should want to pause. Then he very thoughtfully took a chair, with his +back to me, so that I might be as free as possible, and began to read. I +put the forked metal to my ears and listened. + +When the terrible story of Lucy’s death, and--and all that followed, was +done, I lay back in my chair powerless. Fortunately I am not of a +fainting disposition. When Dr. Seward saw me he jumped up with a +horrified exclamation, and hurriedly taking a case-bottle from a +cupboard, gave me some brandy, which in a few minutes somewhat restored +me. My brain was all in a whirl, and only that there came through all +the multitude of horrors, the holy ray of light that my dear, dear Lucy +was at last at peace, I do not think I could have borne it without +making a scene. It is all so wild, and mysterious, and strange that if I +had not known Jonathan’s experience in Transylvania I could not have +believed. As it was, I didn’t know what to believe, and so got out of my +difficulty by attending to something else. I took the cover off my +typewriter, and said to Dr. Seward:-- + +“Let me write this all out now. We must be ready for Dr. Van Helsing +when he comes. I have sent a telegram to Jonathan to come on here when +he arrives in London from Whitby. In this matter dates are everything, +and I think that if we get all our material ready, and have every item +put in chronological order, we shall have done much. You tell me that +Lord Godalming and Mr. Morris are coming too. Let us be able to tell him +when they come.” He accordingly set the phonograph at a slow pace, and I +began to typewrite from the beginning of the seventh cylinder. I used +manifold, and so took three copies of the diary, just as I had done with +all the rest. It was late when I got through, but Dr. Seward went about +his work of going his round of the patients; when he had finished he +came back and sat near me, reading, so that I did not feel too lonely +whilst I worked. How good and thoughtful he is; the world seems full of +good men--even if there _are_ monsters in it. Before I left him I +remembered what Jonathan put in his diary of the Professor’s +perturbation at reading something in an evening paper at the station at +Exeter; so, seeing that Dr. Seward keeps his newspapers, I borrowed the +files of “The Westminster Gazette” and “The Pall Mall Gazette,” and took +them to my room. I remember how much “The Dailygraph” and “The Whitby +Gazette,” of which I had made cuttings, helped us to understand the +terrible events at Whitby when Count Dracula landed, so I shall look +through the evening papers since then, and perhaps I shall get some new +light. I am not sleepy, and the work will help to keep me quiet. + + +_Dr. Seward’s Diary._ + +_30 September._--Mr. Harker arrived at nine o’clock. He had got his +wife’s wire just before starting. He is uncommonly clever, if one can +judge from his face, and full of energy. If this journal be true--and +judging by one’s own wonderful experiences, it must be--he is also a man +of great nerve. That going down to the vault a second time was a +remarkable piece of daring. After reading his account of it I was +prepared to meet a good specimen of manhood, but hardly the quiet, +business-like gentleman who came here to-day. + + * * * * * + +_Later._--After lunch Harker and his wife went back to their own room, +and as I passed a while ago I heard the click of the typewriter. They +are hard at it. Mrs. Harker says that they are knitting together in +chronological order every scrap of evidence they have. Harker has got +the letters between the consignee of the boxes at Whitby and the +carriers in London who took charge of them. He is now reading his wife’s +typescript of my diary. I wonder what they make out of it. Here it +is.... + + Strange that it never struck me that the very next house might be + the Count’s hiding-place! Goodness knows that we had enough clues + from the conduct of the patient Renfield! The bundle of letters + relating to the purchase of the house were with the typescript. Oh, + if we had only had them earlier we might have saved poor Lucy! + Stop; that way madness lies! Harker has gone back, and is again + collating his material. He says that by dinner-time they will be + able to show a whole connected narrative. He thinks that in the + meantime I should see Renfield, as hitherto he has been a sort of + index to the coming and going of the Count. I hardly see this yet, + but when I get at the dates I suppose I shall. What a good thing + that Mrs. Harker put my cylinders into type! We never could have + found the dates otherwise.... + + I found Renfield sitting placidly in his room with his hands + folded, smiling benignly. At the moment he seemed as sane as any + one I ever saw. I sat down and talked with him on a lot of + subjects, all of which he treated naturally. He then, of his own + accord, spoke of going home, a subject he has never mentioned to my + knowledge during his sojourn here. In fact, he spoke quite + confidently of getting his discharge at once. I believe that, had I + not had the chat with Harker and read the letters and the dates of + his outbursts, I should have been prepared to sign for him after a + brief time of observation. As it is, I am darkly suspicious. All + those outbreaks were in some way linked with the proximity of the + Count. What then does this absolute content mean? Can it be that + his instinct is satisfied as to the vampire’s ultimate triumph? + Stay; he is himself zoöphagous, and in his wild ravings outside the + chapel door of the deserted house he always spoke of “master.” This + all seems confirmation of our idea. However, after a while I came + away; my friend is just a little too sane at present to make it + safe to probe him too deep with questions. He might begin to think, + and then--! So I came away. I mistrust these quiet moods of his; so + I have given the attendant a hint to look closely after him, and to + have a strait-waistcoat ready in case of need. + + +_Jonathan Harker’s Journal._ + +_29 September, in train to London._--When I received Mr. Billington’s +courteous message that he would give me any information in his power I +thought it best to go down to Whitby and make, on the spot, such +inquiries as I wanted. It was now my object to trace that horrid cargo +of the Count’s to its place in London. Later, we may be able to deal +with it. Billington junior, a nice lad, met me at the station, and +brought me to his father’s house, where they had decided that I must +stay the night. They are hospitable, with true Yorkshire hospitality: +give a guest everything, and leave him free to do as he likes. They all +knew that I was busy, and that my stay was short, and Mr. Billington had +ready in his office all the papers concerning the consignment of boxes. +It gave me almost a turn to see again one of the letters which I had +seen on the Count’s table before I knew of his diabolical plans. +Everything had been carefully thought out, and done systematically and +with precision. He seemed to have been prepared for every obstacle which +might be placed by accident in the way of his intentions being carried +out. To use an Americanism, he had “taken no chances,” and the absolute +accuracy with which his instructions were fulfilled, was simply the +logical result of his care. I saw the invoice, and took note of it: +“Fifty cases of common earth, to be used for experimental purposes.” +Also the copy of letter to Carter Paterson, and their reply; of both of +these I got copies. This was all the information Mr. Billington could +give me, so I went down to the port and saw the coastguards, the Customs +officers and the harbour-master. They had all something to say of the +strange entry of the ship, which is already taking its place in local +tradition; but no one could add to the simple description “Fifty cases +of common earth.” I then saw the station-master, who kindly put me in +communication with the men who had actually received the boxes. Their +tally was exact with the list, and they had nothing to add except that +the boxes were “main and mortal heavy,” and that shifting them was dry +work. One of them added that it was hard lines that there wasn’t any +gentleman “such-like as yourself, squire,” to show some sort of +appreciation of their efforts in a liquid form; another put in a rider +that the thirst then generated was such that even the time which had +elapsed had not completely allayed it. Needless to add, I took care +before leaving to lift, for ever and adequately, this source of +reproach. + + * * * * * + +_30 September._--The station-master was good enough to give me a line to +his old companion the station-master at King’s Cross, so that when I +arrived there in the morning I was able to ask him about the arrival of +the boxes. He, too, put me at once in communication with the proper +officials, and I saw that their tally was correct with the original +invoice. The opportunities of acquiring an abnormal thirst had been here +limited; a noble use of them had, however, been made, and again I was +compelled to deal with the result in an _ex post facto_ manner. + +From thence I went on to Carter Paterson’s central office, where I met +with the utmost courtesy. They looked up the transaction in their +day-book and letter-book, and at once telephoned to their King’s Cross +office for more details. By good fortune, the men who did the teaming +were waiting for work, and the official at once sent them over, sending +also by one of them the way-bill and all the papers connected with the +delivery of the boxes at Carfax. Here again I found the tally agreeing +exactly; the carriers’ men were able to supplement the paucity of the +written words with a few details. These were, I shortly found, connected +almost solely with the dusty nature of the job, and of the consequent +thirst engendered in the operators. On my affording an opportunity, +through the medium of the currency of the realm, of the allaying, at a +later period, this beneficial evil, one of the men remarked:-- + +“That ’ere ’ouse, guv’nor, is the rummiest I ever was in. Blyme! but it +ain’t been touched sence a hundred years. There was dust that thick in +the place that you might have slep’ on it without ’urtin’ of yer bones; +an’ the place was that neglected that yer might ’ave smelled ole +Jerusalem in it. But the ole chapel--that took the cike, that did! Me +and my mate, we thort we wouldn’t never git out quick enough. Lor’, I +wouldn’t take less nor a quid a moment to stay there arter dark.” + +Having been in the house, I could well believe him; but if he knew what +I know, he would, I think, have raised his terms. + +Of one thing I am now satisfied: that _all_ the boxes which arrived at +Whitby from Varna in the _Demeter_ were safely deposited in the old +chapel at Carfax. There should be fifty of them there, unless any have +since been removed--as from Dr. Seward’s diary I fear. + +I shall try to see the carter who took away the boxes from Carfax when +Renfield attacked them. By following up this clue we may learn a good +deal. + + * * * * * + +_Later._--Mina and I have worked all day, and we have put all the papers +into order. + + +_Mina Harker’s Journal_ + +_30 September._--I am so glad that I hardly know how to contain myself. +It is, I suppose, the reaction from the haunting fear which I have had: +that this terrible affair and the reopening of his old wound might act +detrimentally on Jonathan. I saw him leave for Whitby with as brave a +face as I could, but I was sick with apprehension. The effort has, +however, done him good. He was never so resolute, never so strong, never +so full of volcanic energy, as at present. It is just as that dear, good +Professor Van Helsing said: he is true grit, and he improves under +strain that would kill a weaker nature. He came back full of life and +hope and determination; we have got everything in order for to-night. I +feel myself quite wild with excitement. I suppose one ought to pity any +thing so hunted as is the Count. That is just it: this Thing is not +human--not even beast. To read Dr. Seward’s account of poor Lucy’s +death, and what followed, is enough to dry up the springs of pity in +one’s heart. + + * * * * * + +_Later._--Lord Godalming and Mr. Morris arrived earlier than we +expected. Dr. Seward was out on business, and had taken Jonathan with +him, so I had to see them. It was to me a painful meeting, for it +brought back all poor dear Lucy’s hopes of only a few months ago. Of +course they had heard Lucy speak of me, and it seemed that Dr. Van +Helsing, too, has been quite “blowing my trumpet,” as Mr. Morris +expressed it. Poor fellows, neither of them is aware that I know all +about the proposals they made to Lucy. They did not quite know what to +say or do, as they were ignorant of the amount of my knowledge; so they +had to keep on neutral subjects. However, I thought the matter over, and +came to the conclusion that the best thing I could do would be to post +them in affairs right up to date. I knew from Dr. Seward’s diary that +they had been at Lucy’s death--her real death--and that I need not fear +to betray any secret before the time. So I told them, as well as I +could, that I had read all the papers and diaries, and that my husband +and I, having typewritten them, had just finished putting them in order. +I gave them each a copy to read in the library. When Lord Godalming got +his and turned it over--it does make a pretty good pile--he said:-- + +“Did you write all this, Mrs. Harker?” + +I nodded, and he went on:-- + +“I don’t quite see the drift of it; but you people are all so good and +kind, and have been working so earnestly and so energetically, that all +I can do is to accept your ideas blindfold and try to help you. I have +had one lesson already in accepting facts that should make a man humble +to the last hour of his life. Besides, I know you loved my poor Lucy--” +Here he turned away and covered his face with his hands. I could hear +the tears in his voice. Mr. Morris, with instinctive delicacy, just laid +a hand for a moment on his shoulder, and then walked quietly out of the +room. I suppose there is something in woman’s nature that makes a man +free to break down before her and express his feelings on the tender or +emotional side without feeling it derogatory to his manhood; for when +Lord Godalming found himself alone with me he sat down on the sofa and +gave way utterly and openly. I sat down beside him and took his hand. I +hope he didn’t think it forward of me, and that if he ever thinks of it +afterwards he never will have such a thought. There I wrong him; I +_know_ he never will--he is too true a gentleman. I said to him, for I +could see that his heart was breaking:-- + +“I loved dear Lucy, and I know what she was to you, and what you were to +her. She and I were like sisters; and now she is gone, will you not let +me be like a sister to you in your trouble? I know what sorrows you have +had, though I cannot measure the depth of them. If sympathy and pity can +help in your affliction, won’t you let me be of some little service--for +Lucy’s sake?” + +In an instant the poor dear fellow was overwhelmed with grief. It seemed +to me that all that he had of late been suffering in silence found a +vent at once. He grew quite hysterical, and raising his open hands, beat +his palms together in a perfect agony of grief. He stood up and then sat +down again, and the tears rained down his cheeks. I felt an infinite +pity for him, and opened my arms unthinkingly. With a sob he laid his +head on my shoulder and cried like a wearied child, whilst he shook with +emotion. + +We women have something of the mother in us that makes us rise above +smaller matters when the mother-spirit is invoked; I felt this big +sorrowing man’s head resting on me, as though it were that of the baby +that some day may lie on my bosom, and I stroked his hair as though he +were my own child. I never thought at the time how strange it all was. + +After a little bit his sobs ceased, and he raised himself with an +apology, though he made no disguise of his emotion. He told me that for +days and nights past--weary days and sleepless nights--he had been +unable to speak with any one, as a man must speak in his time of +sorrow. There was no woman whose sympathy could be given to him, or with +whom, owing to the terrible circumstance with which his sorrow was +surrounded, he could speak freely. “I know now how I suffered,” he said, +as he dried his eyes, “but I do not know even yet--and none other can +ever know--how much your sweet sympathy has been to me to-day. I shall +know better in time; and believe me that, though I am not ungrateful +now, my gratitude will grow with my understanding. You will let me be +like a brother, will you not, for all our lives--for dear Lucy’s sake?” + +“For dear Lucy’s sake,” I said as we clasped hands. “Ay, and for your +own sake,” he added, “for if a man’s esteem and gratitude are ever worth +the winning, you have won mine to-day. If ever the future should bring +to you a time when you need a man’s help, believe me, you will not call +in vain. God grant that no such time may ever come to you to break the +sunshine of your life; but if it should ever come, promise me that you +will let me know.” He was so earnest, and his sorrow was so fresh, that +I felt it would comfort him, so I said:-- + +“I promise.” + +As I came along the corridor I saw Mr. Morris looking out of a window. +He turned as he heard my footsteps. “How is Art?” he said. Then noticing +my red eyes, he went on: “Ah, I see you have been comforting him. Poor +old fellow! he needs it. No one but a woman can help a man when he is in +trouble of the heart; and he had no one to comfort him.” + +He bore his own trouble so bravely that my heart bled for him. I saw the +manuscript in his hand, and I knew that when he read it he would realise +how much I knew; so I said to him:-- + +“I wish I could comfort all who suffer from the heart. Will you let me +be your friend, and will you come to me for comfort if you need it? You +will know, later on, why I speak.” He saw that I was in earnest, and +stooping, took my hand, and raising it to his lips, kissed it. It seemed +but poor comfort to so brave and unselfish a soul, and impulsively I +bent over and kissed him. The tears rose in his eyes, and there was a +momentary choking in his throat; he said quite calmly:-- + +“Little girl, you will never regret that true-hearted kindness, so long +as ever you live!” Then he went into the study to his friend. + +“Little girl!”--the very words he had used to Lucy, and oh, but he +proved himself a friend! + + + + +CHAPTER XVIII + +DR. SEWARD’S DIARY + + +_30 September._--I got home at five o’clock, and found that Godalming +and Morris had not only arrived, but had already studied the transcript +of the various diaries and letters which Harker and his wonderful wife +had made and arranged. Harker had not yet returned from his visit to the +carriers’ men, of whom Dr. Hennessey had written to me. Mrs. Harker gave +us a cup of tea, and I can honestly say that, for the first time since I +have lived in it, this old house seemed like _home_. When we had +finished, Mrs. Harker said:-- + +“Dr. Seward, may I ask a favour? I want to see your patient, Mr. +Renfield. Do let me see him. What you have said of him in your diary +interests me so much!” She looked so appealing and so pretty that I +could not refuse her, and there was no possible reason why I should; so +I took her with me. When I went into the room, I told the man that a +lady would like to see him; to which he simply answered: “Why?” + +“She is going through the house, and wants to see every one in it,” I +answered. “Oh, very well,” he said; “let her come in, by all means; but +just wait a minute till I tidy up the place.” His method of tidying was +peculiar: he simply swallowed all the flies and spiders in the boxes +before I could stop him. It was quite evident that he feared, or was +jealous of, some interference. When he had got through his disgusting +task, he said cheerfully: “Let the lady come in,” and sat down on the +edge of his bed with his head down, but with his eyelids raised so that +he could see her as she entered. For a moment I thought that he might +have some homicidal intent; I remembered how quiet he had been just +before he attacked me in my own study, and I took care to stand where I +could seize him at once if he attempted to make a spring at her. She +came into the room with an easy gracefulness which would at once command +the respect of any lunatic--for easiness is one of the qualities mad +people most respect. She walked over to him, smiling pleasantly, and +held out her hand. + +“Good-evening, Mr. Renfield,” said she. “You see, I know you, for Dr. +Seward has told me of you.” He made no immediate reply, but eyed her all +over intently with a set frown on his face. This look gave way to one +of wonder, which merged in doubt; then, to my intense astonishment, he +said:-- + +“You’re not the girl the doctor wanted to marry, are you? You can’t be, +you know, for she’s dead.” Mrs. Harker smiled sweetly as she replied:-- + +“Oh no! I have a husband of my own, to whom I was married before I ever +saw Dr. Seward, or he me. I am Mrs. Harker.” + +“Then what are you doing here?” + +“My husband and I are staying on a visit with Dr. Seward.” + +“Then don’t stay.” + +“But why not?” I thought that this style of conversation might not be +pleasant to Mrs. Harker, any more than it was to me, so I joined in:-- + +“How did you know I wanted to marry any one?” His reply was simply +contemptuous, given in a pause in which he turned his eyes from Mrs. +Harker to me, instantly turning them back again:-- + +“What an asinine question!” + +“I don’t see that at all, Mr. Renfield,” said Mrs. Harker, at once +championing me. He replied to her with as much courtesy and respect as +he had shown contempt to me:-- + +“You will, of course, understand, Mrs. Harker, that when a man is so +loved and honoured as our host is, everything regarding him is of +interest in our little community. Dr. Seward is loved not only by his +household and his friends, but even by his patients, who, being some of +them hardly in mental equilibrium, are apt to distort causes and +effects. Since I myself have been an inmate of a lunatic asylum, I +cannot but notice that the sophistic tendencies of some of its inmates +lean towards the errors of _non causa_ and _ignoratio elenchi_.” I +positively opened my eyes at this new development. Here was my own pet +lunatic--the most pronounced of his type that I had ever met +with--talking elemental philosophy, and with the manner of a polished +gentleman. I wonder if it was Mrs. Harker’s presence which had touched +some chord in his memory. If this new phase was spontaneous, or in any +way due to her unconscious influence, she must have some rare gift or +power. + +We continued to talk for some time; and, seeing that he was seemingly +quite reasonable, she ventured, looking at me questioningly as she +began, to lead him to his favourite topic. I was again astonished, for +he addressed himself to the question with the impartiality of the +completest sanity; he even took himself as an example when he mentioned +certain things. + +“Why, I myself am an instance of a man who had a strange belief. Indeed, +it was no wonder that my friends were alarmed, and insisted on my being +put under control. I used to fancy that life was a positive and +perpetual entity, and that by consuming a multitude of live things, no +matter how low in the scale of creation, one might indefinitely prolong +life. At times I held the belief so strongly that I actually tried to +take human life. The doctor here will bear me out that on one occasion I +tried to kill him for the purpose of strengthening my vital powers by +the assimilation with my own body of his life through the medium of his +blood--relying, of course, upon the Scriptural phrase, ‘For the blood is +the life.’ Though, indeed, the vendor of a certain nostrum has +vulgarised the truism to the very point of contempt. Isn’t that true, +doctor?” I nodded assent, for I was so amazed that I hardly knew what to +either think or say; it was hard to imagine that I had seen him eat up +his spiders and flies not five minutes before. Looking at my watch, I +saw that I should go to the station to meet Van Helsing, so I told Mrs. +Harker that it was time to leave. She came at once, after saying +pleasantly to Mr. Renfield: “Good-bye, and I hope I may see you often, +under auspices pleasanter to yourself,” to which, to my astonishment, he +replied:-- + +“Good-bye, my dear. I pray God I may never see your sweet face again. +May He bless and keep you!” + +When I went to the station to meet Van Helsing I left the boys behind +me. Poor Art seemed more cheerful than he has been since Lucy first took +ill, and Quincey is more like his own bright self than he has been for +many a long day. + +Van Helsing stepped from the carriage with the eager nimbleness of a +boy. He saw me at once, and rushed up to me, saying:-- + +“Ah, friend John, how goes all? Well? So! I have been busy, for I come +here to stay if need be. All affairs are settled with me, and I have +much to tell. Madam Mina is with you? Yes. And her so fine husband? And +Arthur and my friend Quincey, they are with you, too? Good!” + +As I drove to the house I told him of what had passed, and of how my own +diary had come to be of some use through Mrs. Harker’s suggestion; at +which the Professor interrupted me:-- + +“Ah, that wonderful Madam Mina! She has man’s brain--a brain that a man +should have were he much gifted--and a woman’s heart. The good God +fashioned her for a purpose, believe me, when He made that so good +combination. Friend John, up to now fortune has made that woman of help +to us; after to-night she must not have to do with this so terrible +affair. It is not good that she run a risk so great. We men are +determined--nay, are we not pledged?--to destroy this monster; but it is +no part for a woman. Even if she be not harmed, her heart may fail her +in so much and so many horrors; and hereafter she may suffer--both in +waking, from her nerves, and in sleep, from her dreams. And, besides, +she is young woman and not so long married; there may be other things to +think of some time, if not now. You tell me she has wrote all, then she +must consult with us; but to-morrow she say good-bye to this work, and +we go alone.” I agreed heartily with him, and then I told him what we +had found in his absence: that the house which Dracula had bought was +the very next one to my own. He was amazed, and a great concern seemed +to come on him. “Oh that we had known it before!” he said, “for then we +might have reached him in time to save poor Lucy. However, ‘the milk +that is spilt cries not out afterwards,’ as you say. We shall not think +of that, but go on our way to the end.” Then he fell into a silence that +lasted till we entered my own gateway. Before we went to prepare for +dinner he said to Mrs. Harker:-- + +“I am told, Madam Mina, by my friend John that you and your husband have +put up in exact order all things that have been, up to this moment.” + +“Not up to this moment, Professor,” she said impulsively, “but up to +this morning.” + +“But why not up to now? We have seen hitherto how good light all the +little things have made. We have told our secrets, and yet no one who +has told is the worse for it.” + +Mrs. Harker began to blush, and taking a paper from her pockets, she +said:-- + +“Dr. Van Helsing, will you read this, and tell me if it must go in. It +is my record of to-day. I too have seen the need of putting down at +present everything, however trivial; but there is little in this except +what is personal. Must it go in?” The Professor read it over gravely, +and handed it back, saying:-- + +“It need not go in if you do not wish it; but I pray that it may. It can +but make your husband love you the more, and all us, your friends, more +honour you--as well as more esteem and love.” She took it back with +another blush and a bright smile. + +And so now, up to this very hour, all the records we have are complete +and in order. The Professor took away one copy to study after dinner, +and before our meeting, which is fixed for nine o’clock. The rest of us +have already read everything; so when we meet in the study we shall all +be informed as to facts, and can arrange our plan of battle with this +terrible and mysterious enemy. + + +_Mina Harker’s Journal._ + +_30 September._--When we met in Dr. Seward’s study two hours after +dinner, which had been at six o’clock, we unconsciously formed a sort of +board or committee. Professor Van Helsing took the head of the table, to +which Dr. Seward motioned him as he came into the room. He made me sit +next to him on his right, and asked me to act as secretary; Jonathan sat +next to me. Opposite us were Lord Godalming, Dr. Seward, and Mr. +Morris--Lord Godalming being next the Professor, and Dr. Seward in the +centre. The Professor said:-- + +“I may, I suppose, take it that we are all acquainted with the facts +that are in these papers.” We all expressed assent, and he went on:-- + +“Then it were, I think good that I tell you something of the kind of +enemy with which we have to deal. I shall then make known to you +something of the history of this man, which has been ascertained for me. +So we then can discuss how we shall act, and can take our measure +according. + +“There are such beings as vampires; some of us have evidence that they +exist. Even had we not the proof of our own unhappy experience, the +teachings and the records of the past give proof enough for sane +peoples. I admit that at the first I was sceptic. Were it not that +through long years I have train myself to keep an open mind, I could not +have believe until such time as that fact thunder on my ear. ‘See! see! +I prove; I prove.’ Alas! Had I known at the first what now I know--nay, +had I even guess at him--one so precious life had been spared to many of +us who did love her. But that is gone; and we must so work, that other +poor souls perish not, whilst we can save. The _nosferatu_ do not die +like the bee when he sting once. He is only stronger; and being +stronger, have yet more power to work evil. This vampire which is +amongst us is of himself so strong in person as twenty men; he is of +cunning more than mortal, for his cunning be the growth of ages; he have +still the aids of necromancy, which is, as his etymology imply, the +divination by the dead, and all the dead that he can come nigh to are +for him at command; he is brute, and more than brute; he is devil in +callous, and the heart of him is not; he can, within limitations, appear +at will when, and where, and in any of the forms that are to him; he +can, within his range, direct the elements; the storm, the fog, the +thunder; he can command all the meaner things: the rat, and the owl, and +the bat--the moth, and the fox, and the wolf; he can grow and become +small; and he can at times vanish and come unknown. How then are we to +begin our strike to destroy him? How shall we find his where; and having +found it, how can we destroy? My friends, this is much; it is a terrible +task that we undertake, and there may be consequence to make the brave +shudder. For if we fail in this our fight he must surely win; and then +where end we? Life is nothings; I heed him not. But to fail here, is not +mere life or death. It is that we become as him; that we henceforward +become foul things of the night like him--without heart or conscience, +preying on the bodies and the souls of those we love best. To us for +ever are the gates of heaven shut; for who shall open them to us again? +We go on for all time abhorred by all; a blot on the face of God’s +sunshine; an arrow in the side of Him who died for man. But we are face +to face with duty; and in such case must we shrink? For me, I say, no; +but then I am old, and life, with his sunshine, his fair places, his +song of birds, his music and his love, lie far behind. You others are +young. Some have seen sorrow; but there are fair days yet in store. What +say you?” + +Whilst he was speaking, Jonathan had taken my hand. I feared, oh so +much, that the appalling nature of our danger was overcoming him when I +saw his hand stretch out; but it was life to me to feel its touch--so +strong, so self-reliant, so resolute. A brave man’s hand can speak for +itself; it does not even need a woman’s love to hear its music. + +When the Professor had done speaking my husband looked in my eyes, and I +in his; there was no need for speaking between us. + +“I answer for Mina and myself,” he said. + +“Count me in, Professor,” said Mr. Quincey Morris, laconically as usual. + +“I am with you,” said Lord Godalming, “for Lucy’s sake, if for no other +reason.” + +Dr. Seward simply nodded. The Professor stood up and, after laying his +golden crucifix on the table, held out his hand on either side. I took +his right hand, and Lord Godalming his left; Jonathan held my right with +his left and stretched across to Mr. Morris. So as we all took hands our +solemn compact was made. I felt my heart icy cold, but it did not even +occur to me to draw back. We resumed our places, and Dr. Van Helsing +went on with a sort of cheerfulness which showed that the serious work +had begun. It was to be taken as gravely, and in as businesslike a way, +as any other transaction of life:-- + +“Well, you know what we have to contend against; but we, too, are not +without strength. We have on our side power of combination--a power +denied to the vampire kind; we have sources of science; we are free to +act and think; and the hours of the day and the night are ours equally. +In fact, so far as our powers extend, they are unfettered, and we are +free to use them. We have self-devotion in a cause, and an end to +achieve which is not a selfish one. These things are much. + +“Now let us see how far the general powers arrayed against us are +restrict, and how the individual cannot. In fine, let us consider the +limitations of the vampire in general, and of this one in particular. + +“All we have to go upon are traditions and superstitions. These do not +at the first appear much, when the matter is one of life and death--nay +of more than either life or death. Yet must we be satisfied; in the +first place because we have to be--no other means is at our control--and +secondly, because, after all, these things--tradition and +superstition--are everything. Does not the belief in vampires rest for +others--though not, alas! for us--on them? A year ago which of us would +have received such a possibility, in the midst of our scientific, +sceptical, matter-of-fact nineteenth century? We even scouted a belief +that we saw justified under our very eyes. Take it, then, that the +vampire, and the belief in his limitations and his cure, rest for the +moment on the same base. For, let me tell you, he is known everywhere +that men have been. In old Greece, in old Rome; he flourish in Germany +all over, in France, in India, even in the Chernosese; and in China, so +far from us in all ways, there even is he, and the peoples fear him at +this day. He have follow the wake of the berserker Icelander, the +devil-begotten Hun, the Slav, the Saxon, the Magyar. So far, then, we +have all we may act upon; and let me tell you that very much of the +beliefs are justified by what we have seen in our own so unhappy +experience. The vampire live on, and cannot die by mere passing of the +time; he can flourish when that he can fatten on the blood of the +living. Even more, we have seen amongst us that he can even grow +younger; that his vital faculties grow strenuous, and seem as though +they refresh themselves when his special pabulum is plenty. But he +cannot flourish without this diet; he eat not as others. Even friend +Jonathan, who lived with him for weeks, did never see him to eat, never! +He throws no shadow; he make in the mirror no reflect, as again +Jonathan observe. He has the strength of many of his hand--witness again +Jonathan when he shut the door against the wolfs, and when he help him +from the diligence too. He can transform himself to wolf, as we gather +from the ship arrival in Whitby, when he tear open the dog; he can be as +bat, as Madam Mina saw him on the window at Whitby, and as friend John +saw him fly from this so near house, and as my friend Quincey saw him at +the window of Miss Lucy. He can come in mist which he create--that noble +ship’s captain proved him of this; but, from what we know, the distance +he can make this mist is limited, and it can only be round himself. He +come on moonlight rays as elemental dust--as again Jonathan saw those +sisters in the castle of Dracula. He become so small--we ourselves saw +Miss Lucy, ere she was at peace, slip through a hairbreadth space at the +tomb door. He can, when once he find his way, come out from anything or +into anything, no matter how close it be bound or even fused up with +fire--solder you call it. He can see in the dark--no small power this, +in a world which is one half shut from the light. Ah, but hear me +through. He can do all these things, yet he is not free. Nay; he is even +more prisoner than the slave of the galley, than the madman in his cell. +He cannot go where he lists; he who is not of nature has yet to obey +some of nature’s laws--why we know not. He may not enter anywhere at the +first, unless there be some one of the household who bid him to come; +though afterwards he can come as he please. His power ceases, as does +that of all evil things, at the coming of the day. Only at certain times +can he have limited freedom. If he be not at the place whither he is +bound, he can only change himself at noon or at exact sunrise or sunset. +These things are we told, and in this record of ours we have proof by +inference. Thus, whereas he can do as he will within his limit, when he +have his earth-home, his coffin-home, his hell-home, the place +unhallowed, as we saw when he went to the grave of the suicide at +Whitby; still at other time he can only change when the time come. It is +said, too, that he can only pass running water at the slack or the flood +of the tide. Then there are things which so afflict him that he has no +power, as the garlic that we know of; and as for things sacred, as this +symbol, my crucifix, that was amongst us even now when we resolve, to +them he is nothing, but in their presence he take his place far off and +silent with respect. There are others, too, which I shall tell you of, +lest in our seeking we may need them. The branch of wild rose on his +coffin keep him that he move not from it; a sacred bullet fired into the +coffin kill him so that he be true dead; and as for the stake through +him, we know already of its peace; or the cut-off head that giveth rest. +We have seen it with our eyes. + +“Thus when we find the habitation of this man-that-was, we can confine +him to his coffin and destroy him, if we obey what we know. But he is +clever. I have asked my friend Arminius, of Buda-Pesth University, to +make his record; and, from all the means that are, he tell me of what he +has been. He must, indeed, have been that Voivode Dracula who won his +name against the Turk, over the great river on the very frontier of +Turkey-land. If it be so, then was he no common man; for in that time, +and for centuries after, he was spoken of as the cleverest and the most +cunning, as well as the bravest of the sons of the ‘land beyond the +forest.’ That mighty brain and that iron resolution went with him to his +grave, and are even now arrayed against us. The Draculas were, says +Arminius, a great and noble race, though now and again were scions who +were held by their coevals to have had dealings with the Evil One. They +learned his secrets in the Scholomance, amongst the mountains over Lake +Hermanstadt, where the devil claims the tenth scholar as his due. In the +records are such words as ‘stregoica’--witch, ‘ordog,’ and +‘pokol’--Satan and hell; and in one manuscript this very Dracula is +spoken of as ‘wampyr,’ which we all understand too well. There have been +from the loins of this very one great men and good women, and their +graves make sacred the earth where alone this foulness can dwell. For it +is not the least of its terrors that this evil thing is rooted deep in +all good; in soil barren of holy memories it cannot rest.” + +Whilst they were talking Mr. Morris was looking steadily at the window, +and he now got up quietly, and went out of the room. There was a little +pause, and then the Professor went on:-- + +“And now we must settle what we do. We have here much data, and we must +proceed to lay out our campaign. We know from the inquiry of Jonathan +that from the castle to Whitby came fifty boxes of earth, all of which +were delivered at Carfax; we also know that at least some of these boxes +have been removed. It seems to me, that our first step should be to +ascertain whether all the rest remain in the house beyond that wall +where we look to-day; or whether any more have been removed. If the +latter, we must trace----” + +Here we were interrupted in a very startling way. Outside the house came +the sound of a pistol-shot; the glass of the window was shattered with a +bullet, which, ricochetting from the top of the embrasure, struck the +far wall of the room. I am afraid I am at heart a coward, for I shrieked +out. The men all jumped to their feet; Lord Godalming flew over to the +window and threw up the sash. As he did so we heard Mr. Morris’s voice +without:-- + +“Sorry! I fear I have alarmed you. I shall come in and tell you about +it.” A minute later he came in and said:-- + +“It was an idiotic thing of me to do, and I ask your pardon, Mrs. +Harker, most sincerely; I fear I must have frightened you terribly. But +the fact is that whilst the Professor was talking there came a big bat +and sat on the window-sill. I have got such a horror of the damned +brutes from recent events that I cannot stand them, and I went out to +have a shot, as I have been doing of late of evenings, whenever I have +seen one. You used to laugh at me for it then, Art.” + +“Did you hit it?” asked Dr. Van Helsing. + +“I don’t know; I fancy not, for it flew away into the wood.” Without +saying any more he took his seat, and the Professor began to resume his +statement:-- + +“We must trace each of these boxes; and when we are ready, we must +either capture or kill this monster in his lair; or we must, so to +speak, sterilise the earth, so that no more he can seek safety in it. +Thus in the end we may find him in his form of man between the hours of +noon and sunset, and so engage with him when he is at his most weak. + +“And now for you, Madam Mina, this night is the end until all be well. +You are too precious to us to have such risk. When we part to-night, you +no more must question. We shall tell you all in good time. We are men +and are able to bear; but you must be our star and our hope, and we +shall act all the more free that you are not in the danger, such as we +are.” + +All the men, even Jonathan, seemed relieved; but it did not seem to me +good that they should brave danger and, perhaps, lessen their +safety--strength being the best safety--through care of me; but their +minds were made up, and, though it was a bitter pill for me to swallow, +I could say nothing, save to accept their chivalrous care of me. + +Mr. Morris resumed the discussion:-- + +“As there is no time to lose, I vote we have a look at his house right +now. Time is everything with him; and swift action on our part may save +another victim.” + +I own that my heart began to fail me when the time for action came so +close, but I did not say anything, for I had a greater fear that if I +appeared as a drag or a hindrance to their work, they might even leave +me out of their counsels altogether. They have now gone off to Carfax, +with means to get into the house. + +Manlike, they had told me to go to bed and sleep; as if a woman can +sleep when those she loves are in danger! I shall lie down and pretend +to sleep, lest Jonathan have added anxiety about me when he returns. + + +_Dr. Seward’s Diary._ + +_1 October, 4 a. m._--Just as we were about to leave the house, an +urgent message was brought to me from Renfield to know if I would see +him at once, as he had something of the utmost importance to say to me. +I told the messenger to say that I would attend to his wishes in the +morning; I was busy just at the moment. The attendant added:-- + +“He seems very importunate, sir. I have never seen him so eager. I don’t +know but what, if you don’t see him soon, he will have one of his +violent fits.” I knew the man would not have said this without some +cause, so I said: “All right; I’ll go now”; and I asked the others to +wait a few minutes for me, as I had to go and see my “patient.” + +“Take me with you, friend John,” said the Professor. “His case in your +diary interest me much, and it had bearing, too, now and again on _our_ +case. I should much like to see him, and especial when his mind is +disturbed.” + +“May I come also?” asked Lord Godalming. + +“Me too?” said Quincey Morris. “May I come?” said Harker. I nodded, and +we all went down the passage together. + +We found him in a state of considerable excitement, but far more +rational in his speech and manner than I had ever seen him. There was an +unusual understanding of himself, which was unlike anything I had ever +met with in a lunatic; and he took it for granted that his reasons would +prevail with others entirely sane. We all four went into the room, but +none of the others at first said anything. His request was that I would +at once release him from the asylum and send him home. This he backed up +with arguments regarding his complete recovery, and adduced his own +existing sanity. “I appeal to your friends,” he said, “they will, +perhaps, not mind sitting in judgment on my case. By the way, you have +not introduced me.” I was so much astonished, that the oddness of +introducing a madman in an asylum did not strike me at the moment; and, +besides, there was a certain dignity in the man’s manner, so much of +the habit of equality, that I at once made the introduction: “Lord +Godalming; Professor Van Helsing; Mr. Quincey Morris, of Texas; Mr. +Renfield.” He shook hands with each of them, saying in turn:-- + +“Lord Godalming, I had the honour of seconding your father at the +Windham; I grieve to know, by your holding the title, that he is no +more. He was a man loved and honoured by all who knew him; and in his +youth was, I have heard, the inventor of a burnt rum punch, much +patronised on Derby night. Mr. Morris, you should be proud of your great +state. Its reception into the Union was a precedent which may have +far-reaching effects hereafter, when the Pole and the Tropics may hold +alliance to the Stars and Stripes. The power of Treaty may yet prove a +vast engine of enlargement, when the Monroe doctrine takes its true +place as a political fable. What shall any man say of his pleasure at +meeting Van Helsing? Sir, I make no apology for dropping all forms of +conventional prefix. When an individual has revolutionised therapeutics +by his discovery of the continuous evolution of brain-matter, +conventional forms are unfitting, since they would seem to limit him to +one of a class. You, gentlemen, who by nationality, by heredity, or by +the possession of natural gifts, are fitted to hold your respective +places in the moving world, I take to witness that I am as sane as at +least the majority of men who are in full possession of their liberties. +And I am sure that you, Dr. Seward, humanitarian and medico-jurist as +well as scientist, will deem it a moral duty to deal with me as one to +be considered as under exceptional circumstances.” He made this last +appeal with a courtly air of conviction which was not without its own +charm. + +I think we were all staggered. For my own part, I was under the +conviction, despite my knowledge of the man’s character and history, +that his reason had been restored; and I felt under a strong impulse to +tell him that I was satisfied as to his sanity, and would see about the +necessary formalities for his release in the morning. I thought it +better to wait, however, before making so grave a statement, for of old +I knew the sudden changes to which this particular patient was liable. +So I contented myself with making a general statement that he appeared +to be improving very rapidly; that I would have a longer chat with him +in the morning, and would then see what I could do in the direction of +meeting his wishes. This did not at all satisfy him, for he said +quickly:-- + +“But I fear, Dr. Seward, that you hardly apprehend my wish. I desire to +go at once--here--now--this very hour--this very moment, if I may. Time +presses, and in our implied agreement with the old scytheman it is of +the essence of the contract. I am sure it is only necessary to put +before so admirable a practitioner as Dr. Seward so simple, yet so +momentous a wish, to ensure its fulfilment.” He looked at me keenly, and +seeing the negative in my face, turned to the others, and scrutinised +them closely. Not meeting any sufficient response, he went on:-- + +“Is it possible that I have erred in my supposition?” + +“You have,” I said frankly, but at the same time, as I felt, brutally. +There was a considerable pause, and then he said slowly:-- + +“Then I suppose I must only shift my ground of request. Let me ask for +this concession--boon, privilege, what you will. I am content to implore +in such a case, not on personal grounds, but for the sake of others. I +am not at liberty to give you the whole of my reasons; but you may, I +assure you, take it from me that they are good ones, sound and +unselfish, and spring from the highest sense of duty. Could you look, +sir, into my heart, you would approve to the full the sentiments which +animate me. Nay, more, you would count me amongst the best and truest of +your friends.” Again he looked at us all keenly. I had a growing +conviction that this sudden change of his entire intellectual method was +but yet another form or phase of his madness, and so determined to let +him go on a little longer, knowing from experience that he would, like +all lunatics, give himself away in the end. Van Helsing was gazing at +him with a look of utmost intensity, his bushy eyebrows almost meeting +with the fixed concentration of his look. He said to Renfield in a tone +which did not surprise me at the time, but only when I thought of it +afterwards--for it was as of one addressing an equal:-- + +“Can you not tell frankly your real reason for wishing to be free +to-night? I will undertake that if you will satisfy even me--a stranger, +without prejudice, and with the habit of keeping an open mind--Dr. +Seward will give you, at his own risk and on his own responsibility, the +privilege you seek.” He shook his head sadly, and with a look of +poignant regret on his face. The Professor went on:-- + +“Come, sir, bethink yourself. You claim the privilege of reason in the +highest degree, since you seek to impress us with your complete +reasonableness. You do this, whose sanity we have reason to doubt, since +you are not yet released from medical treatment for this very defect. If +you will not help us in our effort to choose the wisest course, how can +we perform the duty which you yourself put upon us? Be wise, and help +us; and if we can we shall aid you to achieve your wish.” He still shook +his head as he said:-- + +“Dr. Van Helsing, I have nothing to say. Your argument is complete, and +if I were free to speak I should not hesitate a moment; but I am not my +own master in the matter. I can only ask you to trust me. If I am +refused, the responsibility does not rest with me.” I thought it was now +time to end the scene, which was becoming too comically grave, so I went +towards the door, simply saying:-- + +“Come, my friends, we have work to do. Good-night.” + +As, however, I got near the door, a new change came over the patient. He +moved towards me so quickly that for the moment I feared that he was +about to make another homicidal attack. My fears, however, were +groundless, for he held up his two hands imploringly, and made his +petition in a moving manner. As he saw that the very excess of his +emotion was militating against him, by restoring us more to our old +relations, he became still more demonstrative. I glanced at Van Helsing, +and saw my conviction reflected in his eyes; so I became a little more +fixed in my manner, if not more stern, and motioned to him that his +efforts were unavailing. I had previously seen something of the same +constantly growing excitement in him when he had to make some request of +which at the time he had thought much, such, for instance, as when he +wanted a cat; and I was prepared to see the collapse into the same +sullen acquiescence on this occasion. My expectation was not realised, +for, when he found that his appeal would not be successful, he got into +quite a frantic condition. He threw himself on his knees, and held up +his hands, wringing them in plaintive supplication, and poured forth a +torrent of entreaty, with the tears rolling down his cheeks, and his +whole face and form expressive of the deepest emotion:-- + +“Let me entreat you, Dr. Seward, oh, let me implore you, to let me out +of this house at once. Send me away how you will and where you will; +send keepers with me with whips and chains; let them take me in a +strait-waistcoat, manacled and leg-ironed, even to a gaol; but let me go +out of this. You don’t know what you do by keeping me here. I am +speaking from the depths of my heart--of my very soul. You don’t know +whom you wrong, or how; and I may not tell. Woe is me! I may not tell. +By all you hold sacred--by all you hold dear--by your love that is +lost--by your hope that lives--for the sake of the Almighty, take me out +of this and save my soul from guilt! Can’t you hear me, man? Can’t you +understand? Will you never learn? Don’t you know that I am sane and +earnest now; that I am no lunatic in a mad fit, but a sane man fighting +for his soul? Oh, hear me! hear me! Let me go! let me go! let me go!” + +I thought that the longer this went on the wilder he would get, and so +would bring on a fit; so I took him by the hand and raised him up. + +“Come,” I said sternly, “no more of this; we have had quite enough +already. Get to your bed and try to behave more discreetly.” + +He suddenly stopped and looked at me intently for several moments. Then, +without a word, he rose and moving over, sat down on the side of the +bed. The collapse had come, as on former occasion, just as I had +expected. + +When I was leaving the room, last of our party, he said to me in a +quiet, well-bred voice:-- + +“You will, I trust, Dr. Seward, do me the justice to bear in mind, later +on, that I did what I could to convince you to-night.” + + + + +CHAPTER XIX + +JONATHAN HARKER’S JOURNAL + + +_1 October, 5 a. m._--I went with the party to the search with an easy +mind, for I think I never saw Mina so absolutely strong and well. I am +so glad that she consented to hold back and let us men do the work. +Somehow, it was a dread to me that she was in this fearful business at +all; but now that her work is done, and that it is due to her energy and +brains and foresight that the whole story is put together in such a way +that every point tells, she may well feel that her part is finished, and +that she can henceforth leave the rest to us. We were, I think, all a +little upset by the scene with Mr. Renfield. When we came away from his +room we were silent till we got back to the study. Then Mr. Morris said +to Dr. Seward:-- + +“Say, Jack, if that man wasn’t attempting a bluff, he is about the +sanest lunatic I ever saw. I’m not sure, but I believe that he had some +serious purpose, and if he had, it was pretty rough on him not to get a +chance.” Lord Godalming and I were silent, but Dr. Van Helsing added:-- + +“Friend John, you know more of lunatics than I do, and I’m glad of it, +for I fear that if it had been to me to decide I would before that last +hysterical outburst have given him free. But we live and learn, and in +our present task we must take no chance, as my friend Quincey would say. +All is best as they are.” Dr. Seward seemed to answer them both in a +dreamy kind of way:-- + +“I don’t know but that I agree with you. If that man had been an +ordinary lunatic I would have taken my chance of trusting him; but he +seems so mixed up with the Count in an indexy kind of way that I am +afraid of doing anything wrong by helping his fads. I can’t forget how +he prayed with almost equal fervour for a cat, and then tried to tear my +throat out with his teeth. Besides, he called the Count ‘lord and +master,’ and he may want to get out to help him in some diabolical way. +That horrid thing has the wolves and the rats and his own kind to help +him, so I suppose he isn’t above trying to use a respectable lunatic. He +certainly did seem earnest, though. I only hope we have done what is +best. These things, in conjunction with the wild work we have in hand, +help to unnerve a man.” The Professor stepped over, and laying his hand +on his shoulder, said in his grave, kindly way:-- + +“Friend John, have no fear. We are trying to do our duty in a very sad +and terrible case; we can only do as we deem best. What else have we to +hope for, except the pity of the good God?” Lord Godalming had slipped +away for a few minutes, but now he returned. He held up a little silver +whistle, as he remarked:-- + +“That old place may be full of rats, and if so, I’ve got an antidote on +call.” Having passed the wall, we took our way to the house, taking care +to keep in the shadows of the trees on the lawn when the moonlight shone +out. When we got to the porch the Professor opened his bag and took out +a lot of things, which he laid on the step, sorting them into four +little groups, evidently one for each. Then he spoke:-- + +“My friends, we are going into a terrible danger, and we need arms of +many kinds. Our enemy is not merely spiritual. Remember that he has the +strength of twenty men, and that, though our necks or our windpipes are +of the common kind--and therefore breakable or crushable--his are not +amenable to mere strength. A stronger man, or a body of men more strong +in all than him, can at certain times hold him; but they cannot hurt him +as we can be hurt by him. We must, therefore, guard ourselves from his +touch. Keep this near your heart”--as he spoke he lifted a little silver +crucifix and held it out to me, I being nearest to him--“put these +flowers round your neck”--here he handed to me a wreath of withered +garlic blossoms--“for other enemies more mundane, this revolver and this +knife; and for aid in all, these so small electric lamps, which you can +fasten to your breast; and for all, and above all at the last, this, +which we must not desecrate needless.” This was a portion of Sacred +Wafer, which he put in an envelope and handed to me. Each of the others +was similarly equipped. “Now,” he said, “friend John, where are the +skeleton keys? If so that we can open the door, we need not break house +by the window, as before at Miss Lucy’s.” + +Dr. Seward tried one or two skeleton keys, his mechanical dexterity as a +surgeon standing him in good stead. Presently he got one to suit; after +a little play back and forward the bolt yielded, and, with a rusty +clang, shot back. We pressed on the door, the rusty hinges creaked, and +it slowly opened. It was startlingly like the image conveyed to me in +Dr. Seward’s diary of the opening of Miss Westenra’s tomb; I fancy that +the same idea seemed to strike the others, for with one accord they +shrank back. The Professor was the first to move forward, and stepped +into the open door. + +“_In manus tuas, Domine!_” he said, crossing himself as he passed over +the threshold. We closed the door behind us, lest when we should have +lit our lamps we should possibly attract attention from the road. The +Professor carefully tried the lock, lest we might not be able to open it +from within should we be in a hurry making our exit. Then we all lit our +lamps and proceeded on our search. + +The light from the tiny lamps fell in all sorts of odd forms, as the +rays crossed each other, or the opacity of our bodies threw great +shadows. I could not for my life get away from the feeling that there +was some one else amongst us. I suppose it was the recollection, so +powerfully brought home to me by the grim surroundings, of that terrible +experience in Transylvania. I think the feeling was common to us all, +for I noticed that the others kept looking over their shoulders at every +sound and every new shadow, just as I felt myself doing. + +The whole place was thick with dust. The floor was seemingly inches +deep, except where there were recent footsteps, in which on holding down +my lamp I could see marks of hobnails where the dust was cracked. The +walls were fluffy and heavy with dust, and in the corners were masses of +spider’s webs, whereon the dust had gathered till they looked like old +tattered rags as the weight had torn them partly down. On a table in the +hall was a great bunch of keys, with a time-yellowed label on each. They +had been used several times, for on the table were several similar rents +in the blanket of dust, similar to that exposed when the Professor +lifted them. He turned to me and said:-- + +“You know this place, Jonathan. You have copied maps of it, and you know +it at least more than we do. Which is the way to the chapel?” I had an +idea of its direction, though on my former visit I had not been able to +get admission to it; so I led the way, and after a few wrong turnings +found myself opposite a low, arched oaken door, ribbed with iron bands. +“This is the spot,” said the Professor as he turned his lamp on a small +map of the house, copied from the file of my original correspondence +regarding the purchase. With a little trouble we found the key on the +bunch and opened the door. We were prepared for some unpleasantness, for +as we were opening the door a faint, malodorous air seemed to exhale +through the gaps, but none of us ever expected such an odour as we +encountered. None of the others had met the Count at all at close +quarters, and when I had seen him he was either in the fasting stage of +his existence in his rooms or, when he was gloated with fresh blood, in +a ruined building open to the air; but here the place was small and +close, and the long disuse had made the air stagnant and foul. There was +an earthy smell, as of some dry miasma, which came through the fouler +air. But as to the odour itself, how shall I describe it? It was not +alone that it was composed of all the ills of mortality and with the +pungent, acrid smell of blood, but it seemed as though corruption had +become itself corrupt. Faugh! it sickens me to think of it. Every breath +exhaled by that monster seemed to have clung to the place and +intensified its loathsomeness. + +Under ordinary circumstances such a stench would have brought our +enterprise to an end; but this was no ordinary case, and the high and +terrible purpose in which we were involved gave us a strength which rose +above merely physical considerations. After the involuntary shrinking +consequent on the first nauseous whiff, we one and all set about our +work as though that loathsome place were a garden of roses. + +We made an accurate examination of the place, the Professor saying as we +began:-- + +“The first thing is to see how many of the boxes are left; we must then +examine every hole and corner and cranny and see if we cannot get some +clue as to what has become of the rest.” A glance was sufficient to show +how many remained, for the great earth chests were bulky, and there was +no mistaking them. + +There were only twenty-nine left out of the fifty! Once I got a fright, +for, seeing Lord Godalming suddenly turn and look out of the vaulted +door into the dark passage beyond, I looked too, and for an instant my +heart stood still. Somewhere, looking out from the shadow, I seemed to +see the high lights of the Count’s evil face, the ridge of the nose, the +red eyes, the red lips, the awful pallor. It was only for a moment, for, +as Lord Godalming said, “I thought I saw a face, but it was only the +shadows,” and resumed his inquiry, I turned my lamp in the direction, +and stepped into the passage. There was no sign of any one; and as there +were no corners, no doors, no aperture of any kind, but only the solid +walls of the passage, there could be no hiding-place even for _him_. I +took it that fear had helped imagination, and said nothing. + +A few minutes later I saw Morris step suddenly back from a corner, which +he was examining. We all followed his movements with our eyes, for +undoubtedly some nervousness was growing on us, and we saw a whole mass +of phosphorescence, which twinkled like stars. We all instinctively drew +back. The whole place was becoming alive with rats. + +For a moment or two we stood appalled, all save Lord Godalming, who was +seemingly prepared for such an emergency. Rushing over to the great +iron-bound oaken door, which Dr. Seward had described from the outside, +and which I had seen myself, he turned the key in the lock, drew the +huge bolts, and swung the door open. Then, taking his little silver +whistle from his pocket, he blew a low, shrill call. It was answered +from behind Dr. Seward’s house by the yelping of dogs, and after about a +minute three terriers came dashing round the corner of the house. +Unconsciously we had all moved towards the door, and as we moved I +noticed that the dust had been much disturbed: the boxes which had been +taken out had been brought this way. But even in the minute that had +elapsed the number of the rats had vastly increased. They seemed to +swarm over the place all at once, till the lamplight, shining on their +moving dark bodies and glittering, baleful eyes, made the place look +like a bank of earth set with fireflies. The dogs dashed on, but at the +threshold suddenly stopped and snarled, and then, simultaneously lifting +their noses, began to howl in most lugubrious fashion. The rats were +multiplying in thousands, and we moved out. + +Lord Godalming lifted one of the dogs, and carrying him in, placed him +on the floor. The instant his feet touched the ground he seemed to +recover his courage, and rushed at his natural enemies. They fled before +him so fast that before he had shaken the life out of a score, the other +dogs, who had by now been lifted in the same manner, had but small prey +ere the whole mass had vanished. + +With their going it seemed as if some evil presence had departed, for +the dogs frisked about and barked merrily as they made sudden darts at +their prostrate foes, and turned them over and over and tossed them in +the air with vicious shakes. We all seemed to find our spirits rise. +Whether it was the purifying of the deadly atmosphere by the opening of +the chapel door, or the relief which we experienced by finding ourselves +in the open I know not; but most certainly the shadow of dread seemed to +slip from us like a robe, and the occasion of our coming lost something +of its grim significance, though we did not slacken a whit in our +resolution. We closed the outer door and barred and locked it, and +bringing the dogs with us, began our search of the house. We found +nothing throughout except dust in extraordinary proportions, and all +untouched save for my own footsteps when I had made my first visit. +Never once did the dogs exhibit any symptom of uneasiness, and even when +we returned to the chapel they frisked about as though they had been +rabbit-hunting in a summer wood. + +The morning was quickening in the east when we emerged from the front. +Dr. Van Helsing had taken the key of the hall-door from the bunch, and +locked the door in orthodox fashion, putting the key into his pocket +when he had done. + +“So far,” he said, “our night has been eminently successful. No harm has +come to us such as I feared might be and yet we have ascertained how +many boxes are missing. More than all do I rejoice that this, our +first--and perhaps our most difficult and dangerous--step has been +accomplished without the bringing thereinto our most sweet Madam Mina or +troubling her waking or sleeping thoughts with sights and sounds and +smells of horror which she might never forget. One lesson, too, we have +learned, if it be allowable to argue _a particulari_: that the brute +beasts which are to the Count’s command are yet themselves not amenable +to his spiritual power; for look, these rats that would come to his +call, just as from his castle top he summon the wolves to your going and +to that poor mother’s cry, though they come to him, they run pell-mell +from the so little dogs of my friend Arthur. We have other matters +before us, other dangers, other fears; and that monster--he has not used +his power over the brute world for the only or the last time to-night. +So be it that he has gone elsewhere. Good! It has given us opportunity +to cry ‘check’ in some ways in this chess game, which we play for the +stake of human souls. And now let us go home. The dawn is close at hand, +and we have reason to be content with our first night’s work. It may be +ordained that we have many nights and days to follow, if full of peril; +but we must go on, and from no danger shall we shrink.” + +The house was silent when we got back, save for some poor creature who +was screaming away in one of the distant wards, and a low, moaning sound +from Renfield’s room. The poor wretch was doubtless torturing himself, +after the manner of the insane, with needless thoughts of pain. + +I came tiptoe into our own room, and found Mina asleep, breathing so +softly that I had to put my ear down to hear it. She looks paler than +usual. I hope the meeting to-night has not upset her. I am truly +thankful that she is to be left out of our future work, and even of our +deliberations. It is too great a strain for a woman to bear. I did not +think so at first, but I know better now. Therefore I am glad that it is +settled. There may be things which would frighten her to hear; and yet +to conceal them from her might be worse than to tell her if once she +suspected that there was any concealment. Henceforth our work is to be a +sealed book to her, till at least such time as we can tell her that all +is finished, and the earth free from a monster of the nether world. I +daresay it will be difficult to begin to keep silence after such +confidence as ours; but I must be resolute, and to-morrow I shall keep +dark over to-night’s doings, and shall refuse to speak of anything that +has happened. I rest on the sofa, so as not to disturb her. + + * * * * * + +_1 October, later._--I suppose it was natural that we should have all +overslept ourselves, for the day was a busy one, and the night had no +rest at all. Even Mina must have felt its exhaustion, for though I slept +till the sun was high, I was awake before her, and had to call two or +three times before she awoke. Indeed, she was so sound asleep that for a +few seconds she did not recognize me, but looked at me with a sort of +blank terror, as one looks who has been waked out of a bad dream. She +complained a little of being tired, and I let her rest till later in the +day. We now know of twenty-one boxes having been removed, and if it be +that several were taken in any of these removals we may be able to trace +them all. Such will, of course, immensely simplify our labour, and the +sooner the matter is attended to the better. I shall look up Thomas +Snelling to-day. + + +_Dr. Seward’s Diary._ + +_1 October._--It was towards noon when I was awakened by the Professor +walking into my room. He was more jolly and cheerful than usual, and it +is quite evident that last night’s work has helped to take some of the +brooding weight off his mind. After going over the adventure of the +night he suddenly said:-- + +“Your patient interests me much. May it be that with you I visit him +this morning? Or if that you are too occupy, I can go alone if it may +be. It is a new experience to me to find a lunatic who talk philosophy, +and reason so sound.” I had some work to do which pressed, so I told him +that if he would go alone I would be glad, as then I should not have to +keep him waiting; so I called an attendant and gave him the necessary +instructions. Before the Professor left the room I cautioned him against +getting any false impression from my patient. “But,” he answered, “I +want him to talk of himself and of his delusion as to consuming live +things. He said to Madam Mina, as I see in your diary of yesterday, that +he had once had such a belief. Why do you smile, friend John?” + +“Excuse me,” I said, “but the answer is here.” I laid my hand on the +type-written matter. “When our sane and learned lunatic made that very +statement of how he _used_ to consume life, his mouth was actually +nauseous with the flies and spiders which he had eaten just before Mrs. +Harker entered the room.” Van Helsing smiled in turn. “Good!” he said. +“Your memory is true, friend John. I should have remembered. And yet it +is this very obliquity of thought and memory which makes mental disease +such a fascinating study. Perhaps I may gain more knowledge out of the +folly of this madman than I shall from the teaching of the most wise. +Who knows?” I went on with my work, and before long was through that in +hand. It seemed that the time had been very short indeed, but there was +Van Helsing back in the study. “Do I interrupt?” he asked politely as he +stood at the door. + +“Not at all,” I answered. “Come in. My work is finished, and I am free. +I can go with you now, if you like. + +“It is needless; I have seen him!” + +“Well?” + +“I fear that he does not appraise me at much. Our interview was short. +When I entered his room he was sitting on a stool in the centre, with +his elbows on his knees, and his face was the picture of sullen +discontent. I spoke to him as cheerfully as I could, and with such a +measure of respect as I could assume. He made no reply whatever. “Don’t +you know me?” I asked. His answer was not reassuring: “I know you well +enough; you are the old fool Van Helsing. I wish you would take yourself +and your idiotic brain theories somewhere else. Damn all thick-headed +Dutchmen!” Not a word more would he say, but sat in his implacable +sullenness as indifferent to me as though I had not been in the room at +all. Thus departed for this time my chance of much learning from this so +clever lunatic; so I shall go, if I may, and cheer myself with a few +happy words with that sweet soul Madam Mina. Friend John, it does +rejoice me unspeakable that she is no more to be pained, no more to be +worried with our terrible things. Though we shall much miss her help, it +is better so.” + +“I agree with you with all my heart,” I answered earnestly, for I did +not want him to weaken in this matter. “Mrs. Harker is better out of it. +Things are quite bad enough for us, all men of the world, and who have +been in many tight places in our time; but it is no place for a woman, +and if she had remained in touch with the affair, it would in time +infallibly have wrecked her.” + +So Van Helsing has gone to confer with Mrs. Harker and Harker; Quincey +and Art are all out following up the clues as to the earth-boxes. I +shall finish my round of work and we shall meet to-night. + + +_Mina Harker’s Journal._ + +_1 October._--It is strange to me to be kept in the dark as I am to-day; +after Jonathan’s full confidence for so many years, to see him +manifestly avoid certain matters, and those the most vital of all. This +morning I slept late after the fatigues of yesterday, and though +Jonathan was late too, he was the earlier. He spoke to me before he went +out, never more sweetly or tenderly, but he never mentioned a word of +what had happened in the visit to the Count’s house. And yet he must +have known how terribly anxious I was. Poor dear fellow! I suppose it +must have distressed him even more than it did me. They all agreed that +it was best that I should not be drawn further into this awful work, and +I acquiesced. But to think that he keeps anything from me! And now I am +crying like a silly fool, when I _know_ it comes from my husband’s great +love and from the good, good wishes of those other strong men. + +That has done me good. Well, some day Jonathan will tell me all; and +lest it should ever be that he should think for a moment that I kept +anything from him, I still keep my journal as usual. Then if he has +feared of my trust I shall show it to him, with every thought of my +heart put down for his dear eyes to read. I feel strangely sad and +low-spirited to-day. I suppose it is the reaction from the terrible +excitement. + +Last night I went to bed when the men had gone, simply because they told +me to. I didn’t feel sleepy, and I did feel full of devouring anxiety. I +kept thinking over everything that has been ever since Jonathan came to +see me in London, and it all seems like a horrible tragedy, with fate +pressing on relentlessly to some destined end. Everything that one does +seems, no matter how right it may be, to bring on the very thing which +is most to be deplored. If I hadn’t gone to Whitby, perhaps poor dear +Lucy would be with us now. She hadn’t taken to visiting the churchyard +till I came, and if she hadn’t come there in the day-time with me she +wouldn’t have walked there in her sleep; and if she hadn’t gone there at +night and asleep, that monster couldn’t have destroyed her as he did. +Oh, why did I ever go to Whitby? There now, crying again! I wonder what +has come over me to-day. I must hide it from Jonathan, for if he knew +that I had been crying twice in one morning--I, who never cried on my +own account, and whom he has never caused to shed a tear--the dear +fellow would fret his heart out. I shall put a bold face on, and if I do +feel weepy, he shall never see it. I suppose it is one of the lessons +that we poor women have to learn.... + +I can’t quite remember how I fell asleep last night. I remember hearing +the sudden barking of the dogs and a lot of queer sounds, like praying +on a very tumultuous scale, from Mr. Renfield’s room, which is somewhere +under this. And then there was silence over everything, silence so +profound that it startled me, and I got up and looked out of the window. +All was dark and silent, the black shadows thrown by the moonlight +seeming full of a silent mystery of their own. Not a thing seemed to be +stirring, but all to be grim and fixed as death or fate; so that a thin +streak of white mist, that crept with almost imperceptible slowness +across the grass towards the house, seemed to have a sentience and a +vitality of its own. I think that the digression of my thoughts must +have done me good, for when I got back to bed I found a lethargy +creeping over me. I lay a while, but could not quite sleep, so I got out +and looked out of the window again. The mist was spreading, and was now +close up to the house, so that I could see it lying thick against the +wall, as though it were stealing up to the windows. The poor man was +more loud than ever, and though I could not distinguish a word he said, +I could in some way recognise in his tones some passionate entreaty on +his part. Then there was the sound of a struggle, and I knew that the +attendants were dealing with him. I was so frightened that I crept into +bed, and pulled the clothes over my head, putting my fingers in my ears. +I was not then a bit sleepy, at least so I thought; but I must have +fallen asleep, for, except dreams, I do not remember anything until the +morning, when Jonathan woke me. I think that it took me an effort and a +little time to realise where I was, and that it was Jonathan who was +bending over me. My dream was very peculiar, and was almost typical of +the way that waking thoughts become merged in, or continued in, dreams. + +I thought that I was asleep, and waiting for Jonathan to come back. I +was very anxious about him, and I was powerless to act; my feet, and my +hands, and my brain were weighted, so that nothing could proceed at the +usual pace. And so I slept uneasily and thought. Then it began to dawn +upon me that the air was heavy, and dank, and cold. I put back the +clothes from my face, and found, to my surprise, that all was dim +around. The gaslight which I had left lit for Jonathan, but turned down, +came only like a tiny red spark through the fog, which had evidently +grown thicker and poured into the room. Then it occurred to me that I +had shut the window before I had come to bed. I would have got out to +make certain on the point, but some leaden lethargy seemed to chain my +limbs and even my will. I lay still and endured; that was all. I closed +my eyes, but could still see through my eyelids. (It is wonderful what +tricks our dreams play us, and how conveniently we can imagine.) The +mist grew thicker and thicker and I could see now how it came in, for I +could see it like smoke--or with the white energy of boiling +water--pouring in, not through the window, but through the joinings of +the door. It got thicker and thicker, till it seemed as if it became +concentrated into a sort of pillar of cloud in the room, through the top +of which I could see the light of the gas shining like a red eye. Things +began to whirl through my brain just as the cloudy column was now +whirling in the room, and through it all came the scriptural words “a +pillar of cloud by day and of fire by night.” Was it indeed some such +spiritual guidance that was coming to me in my sleep? But the pillar was +composed of both the day and the night-guiding, for the fire was in the +red eye, which at the thought got a new fascination for me; till, as I +looked, the fire divided, and seemed to shine on me through the fog like +two red eyes, such as Lucy told me of in her momentary mental wandering +when, on the cliff, the dying sunlight struck the windows of St. Mary’s +Church. Suddenly the horror burst upon me that it was thus that Jonathan +had seen those awful women growing into reality through the whirling mist +in the moonlight, and in my dream I must have fainted, for all became +black darkness. The last conscious effort which imagination made was to +show me a livid white face bending over me out of the mist. I must be +careful of such dreams, for they would unseat one’s reason if there were +too much of them. I would get Dr. Van Helsing or Dr. Seward to prescribe +something for me which would make me sleep, only that I fear to alarm +them. Such a dream at the present time would become woven into their +fears for me. To-night I shall strive hard to sleep naturally. If I do +not, I shall to-morrow night get them to give me a dose of chloral; that +cannot hurt me for once, and it will give me a good night’s sleep. Last +night tired me more than if I had not slept at all. + + * * * * * + +_2 October 10 p. m._--Last night I slept, but did not dream. I must have +slept soundly, for I was not waked by Jonathan coming to bed; but the +sleep has not refreshed me, for to-day I feel terribly weak and +spiritless. I spent all yesterday trying to read, or lying down dozing. +In the afternoon Mr. Renfield asked if he might see me. Poor man, he was +very gentle, and when I came away he kissed my hand and bade God bless +me. Some way it affected me much; I am crying when I think of him. This +is a new weakness, of which I must be careful. Jonathan would be +miserable if he knew I had been crying. He and the others were out till +dinner-time, and they all came in tired. I did what I could to brighten +them up, and I suppose that the effort did me good, for I forgot how +tired I was. After dinner they sent me to bed, and all went off to smoke +together, as they said, but I knew that they wanted to tell each other +of what had occurred to each during the day; I could see from Jonathan’s +manner that he had something important to communicate. I was not so +sleepy as I should have been; so before they went I asked Dr. Seward to +give me a little opiate of some kind, as I had not slept well the night +before. He very kindly made me up a sleeping draught, which he gave to +me, telling me that it would do me no harm, as it was very mild.... I +have taken it, and am waiting for sleep, which still keeps aloof. I hope +I have not done wrong, for as sleep begins to flirt with me, a new fear +comes: that I may have been foolish in thus depriving myself of the +power of waking. I might want it. Here comes sleep. Good-night. + + + + +CHAPTER XX + +JONATHAN HARKER’S JOURNAL + + +_1 October, evening._--I found Thomas Snelling in his house at Bethnal +Green, but unhappily he was not in a condition to remember anything. The +very prospect of beer which my expected coming had opened to him had +proved too much, and he had begun too early on his expected debauch. I +learned, however, from his wife, who seemed a decent, poor soul, that he +was only the assistant to Smollet, who of the two mates was the +responsible person. So off I drove to Walworth, and found Mr. Joseph +Smollet at home and in his shirtsleeves, taking a late tea out of a +saucer. He is a decent, intelligent fellow, distinctly a good, reliable +type of workman, and with a headpiece of his own. He remembered all +about the incident of the boxes, and from a wonderful dog’s-eared +notebook, which he produced from some mysterious receptacle about the +seat of his trousers, and which had hieroglyphical entries in thick, +half-obliterated pencil, he gave me the destinations of the boxes. There +were, he said, six in the cartload which he took from Carfax and left at +197, Chicksand Street, Mile End New Town, and another six which he +deposited at Jamaica Lane, Bermondsey. If then the Count meant to +scatter these ghastly refuges of his over London, these places were +chosen as the first of delivery, so that later he might distribute more +fully. The systematic manner in which this was done made me think that +he could not mean to confine himself to two sides of London. He was now +fixed on the far east of the northern shore, on the east of the southern +shore, and on the south. The north and west were surely never meant to +be left out of his diabolical scheme--let alone the City itself and the +very heart of fashionable London in the south-west and west. I went back +to Smollet, and asked him if he could tell us if any other boxes had +been taken from Carfax. + +He replied:-- + +“Well, guv’nor, you’ve treated me wery ’an’some”--I had given him half a +sovereign--“an’ I’ll tell yer all I know. I heard a man by the name of +Bloxam say four nights ago in the ’Are an’ ’Ounds, in Pincher’s Alley, +as ’ow he an’ his mate ’ad ’ad a rare dusty job in a old ’ouse at +Purfect. There ain’t a-many such jobs as this ’ere, an’ I’m thinkin’ +that maybe Sam Bloxam could tell ye summut.” I asked if he could tell me +where to find him. I told him that if he could get me the address it +would be worth another half-sovereign to him. So he gulped down the rest +of his tea and stood up, saying that he was going to begin the search +then and there. At the door he stopped, and said:-- + +“Look ’ere, guv’nor, there ain’t no sense in me a-keepin’ you ’ere. I +may find Sam soon, or I mayn’t; but anyhow he ain’t like to be in a way +to tell ye much to-night. Sam is a rare one when he starts on the booze. +If you can give me a envelope with a stamp on it, and put yer address on +it, I’ll find out where Sam is to be found and post it ye to-night. But +ye’d better be up arter ’im soon in the mornin’, or maybe ye won’t ketch +’im; for Sam gets off main early, never mind the booze the night afore.” + +This was all practical, so one of the children went off with a penny to +buy an envelope and a sheet of paper, and to keep the change. When she +came back, I addressed the envelope and stamped it, and when Smollet had +again faithfully promised to post the address when found, I took my way +to home. We’re on the track anyhow. I am tired to-night, and want sleep. +Mina is fast asleep, and looks a little too pale; her eyes look as +though she had been crying. Poor dear, I’ve no doubt it frets her to be +kept in the dark, and it may make her doubly anxious about me and the +others. But it is best as it is. It is better to be disappointed and +worried in such a way now than to have her nerve broken. The doctors +were quite right to insist on her being kept out of this dreadful +business. I must be firm, for on me this particular burden of silence +must rest. I shall not ever enter on the subject with her under any +circumstances. Indeed, it may not be a hard task, after all, for she +herself has become reticent on the subject, and has not spoken of the +Count or his doings ever since we told her of our decision. + + * * * * * + +_2 October, evening._--A long and trying and exciting day. By the first +post I got my directed envelope with a dirty scrap of paper enclosed, on +which was written with a carpenter’s pencil in a sprawling hand:-- + +“Sam Bloxam, Korkrans, 4, Poters Cort, Bartel Street, Walworth. Arsk for +the depite.” + +I got the letter in bed, and rose without waking Mina. She looked heavy +and sleepy and pale, and far from well. I determined not to wake her, +but that, when I should return from this new search, I would arrange for +her going back to Exeter. I think she would be happier in our own home, +with her daily tasks to interest her, than in being here amongst us and +in ignorance. I only saw Dr. Seward for a moment, and told him where I +was off to, promising to come back and tell the rest so soon as I should +have found out anything. I drove to Walworth and found, with some +difficulty, Potter’s Court. Mr. Smollet’s spelling misled me, as I asked +for Poter’s Court instead of Potter’s Court. However, when I had found +the court, I had no difficulty in discovering Corcoran’s lodging-house. +When I asked the man who came to the door for the “depite,” he shook his +head, and said: “I dunno ’im. There ain’t no such a person ’ere; I never +’eard of ’im in all my bloomin’ days. Don’t believe there ain’t nobody +of that kind livin’ ere or anywheres.” I took out Smollet’s letter, and +as I read it it seemed to me that the lesson of the spelling of the name +of the court might guide me. “What are you?” I asked. + +“I’m the depity,” he answered. I saw at once that I was on the right +track; phonetic spelling had again misled me. A half-crown tip put the +deputy’s knowledge at my disposal, and I learned that Mr. Bloxam, who +had slept off the remains of his beer on the previous night at +Corcoran’s, had left for his work at Poplar at five o’clock that +morning. He could not tell me where the place of work was situated, but +he had a vague idea that it was some kind of a “new-fangled ware’us”; +and with this slender clue I had to start for Poplar. It was twelve +o’clock before I got any satisfactory hint of such a building, and this +I got at a coffee-shop, where some workmen were having their dinner. One +of these suggested that there was being erected at Cross Angel Street a +new “cold storage” building; and as this suited the condition of a +“new-fangled ware’us,” I at once drove to it. An interview with a surly +gatekeeper and a surlier foreman, both of whom were appeased with the +coin of the realm, put me on the track of Bloxam; he was sent for on my +suggesting that I was willing to pay his day’s wages to his foreman for +the privilege of asking him a few questions on a private matter. He was +a smart enough fellow, though rough of speech and bearing. When I had +promised to pay for his information and given him an earnest, he told me +that he had made two journeys between Carfax and a house in Piccadilly, +and had taken from this house to the latter nine great boxes--“main +heavy ones”--with a horse and cart hired by him for this purpose. I +asked him if he could tell me the number of the house in Piccadilly, to +which he replied:-- + +“Well, guv’nor, I forgits the number, but it was only a few doors from a +big white church or somethink of the kind, not long built. It was a +dusty old ’ouse, too, though nothin’ to the dustiness of the ’ouse we +tooked the bloomin’ boxes from.” + +“How did you get into the houses if they were both empty?” + +“There was the old party what engaged me a-waitin’ in the ’ouse at +Purfleet. He ’elped me to lift the boxes and put them in the dray. Curse +me, but he was the strongest chap I ever struck, an’ him a old feller, +with a white moustache, one that thin you would think he couldn’t throw +a shadder.” + +How this phrase thrilled through me! + +“Why, ’e took up ’is end o’ the boxes like they was pounds of tea, and +me a-puffin’ an’ a-blowin’ afore I could up-end mine anyhow--an’ I’m no +chicken, neither.” + +“How did you get into the house in Piccadilly?” I asked. + +“He was there too. He must ’a’ started off and got there afore me, for +when I rung of the bell he kem an’ opened the door ’isself an’ ’elped me +to carry the boxes into the ’all.” + +“The whole nine?” I asked. + +“Yus; there was five in the first load an’ four in the second. It was +main dry work, an’ I don’t so well remember ’ow I got ’ome.” I +interrupted him:-- + +“Were the boxes left in the hall?” + +“Yus; it was a big ’all, an’ there was nothin’ else in it.” I made one +more attempt to further matters:-- + +“You didn’t have any key?” + +“Never used no key nor nothink. The old gent, he opened the door ’isself +an’ shut it again when I druv off. I don’t remember the last time--but +that was the beer.” + +“And you can’t remember the number of the house?” + +“No, sir. But ye needn’t have no difficulty about that. It’s a ’igh ’un +with a stone front with a bow on it, an’ ’igh steps up to the door. I +know them steps, ’avin’ ’ad to carry the boxes up with three loafers +what come round to earn a copper. The old gent give them shillin’s, an’ +they seein’ they got so much, they wanted more; but ’e took one of them +by the shoulder and was like to throw ’im down the steps, till the lot +of them went away cussin’.” I thought that with this description I could +find the house, so, having paid my friend for his information, I started +off for Piccadilly. I had gained a new painful experience; the Count +could, it was evident, handle the earth-boxes himself. If so, time was +precious; for, now that he had achieved a certain amount of +distribution, he could, by choosing his own time, complete the task +unobserved. At Piccadilly Circus I discharged my cab, and walked +westward; beyond the Junior Constitutional I came across the house +described, and was satisfied that this was the next of the lairs +arranged by Dracula. The house looked as though it had been long +untenanted. The windows were encrusted with dust, and the shutters were +up. All the framework was black with time, and from the iron the paint +had mostly scaled away. It was evident that up to lately there had been +a large notice-board in front of the balcony; it had, however, been +roughly torn away, the uprights which had supported it still remaining. +Behind the rails of the balcony I saw there were some loose boards, +whose raw edges looked white. I would have given a good deal to have +been able to see the notice-board intact, as it would, perhaps, have +given some clue to the ownership of the house. I remembered my +experience of the investigation and purchase of Carfax, and I could not +but feel that if I could find the former owner there might be some means +discovered of gaining access to the house. + +There was at present nothing to be learned from the Piccadilly side, and +nothing could be done; so I went round to the back to see if anything +could be gathered from this quarter. The mews were active, the +Piccadilly houses being mostly in occupation. I asked one or two of the +grooms and helpers whom I saw around if they could tell me anything +about the empty house. One of them said that he heard it had lately been +taken, but he couldn’t say from whom. He told me, however, that up to +very lately there had been a notice-board of “For Sale” up, and that +perhaps Mitchell, Sons, & Candy, the house agents, could tell me +something, as he thought he remembered seeing the name of that firm on +the board. I did not wish to seem too eager, or to let my informant know +or guess too much, so, thanking him in the usual manner, I strolled +away. It was now growing dusk, and the autumn night was closing in, so I +did not lose any time. Having learned the address of Mitchell, Sons, & +Candy from a directory at the Berkeley, I was soon at their office in +Sackville Street. + +The gentleman who saw me was particularly suave in manner, but +uncommunicative in equal proportion. Having once told me that the +Piccadilly house--which throughout our interview he called a +“mansion”--was sold, he considered my business as concluded. When I +asked who had purchased it, he opened his eyes a thought wider, and +paused a few seconds before replying:-- + +“It is sold, sir.” + +“Pardon me,” I said, with equal politeness, “but I have a special reason +for wishing to know who purchased it.” + +Again he paused longer, and raised his eyebrows still more. “It is sold, +sir,” was again his laconic reply. + +“Surely,” I said, “you do not mind letting me know so much.” + +“But I do mind,” he answered. “The affairs of their clients are +absolutely safe in the hands of Mitchell, Sons, & Candy.” This was +manifestly a prig of the first water, and there was no use arguing with +him. I thought I had best meet him on his own ground, so I said:-- + +“Your clients, sir, are happy in having so resolute a guardian of their +confidence. I am myself a professional man.” Here I handed him my card. +“In this instance I am not prompted by curiosity; I act on the part of +Lord Godalming, who wishes to know something of the property which was, +he understood, lately for sale.” These words put a different complexion +on affairs. He said:-- + +“I would like to oblige you if I could, Mr. Harker, and especially would +I like to oblige his lordship. We once carried out a small matter of +renting some chambers for him when he was the Honourable Arthur +Holmwood. If you will let me have his lordship’s address I will consult +the House on the subject, and will, in any case, communicate with his +lordship by to-night’s post. It will be a pleasure if we can so far +deviate from our rules as to give the required information to his +lordship.” + +I wanted to secure a friend, and not to make an enemy, so I thanked him, +gave the address at Dr. Seward’s and came away. It was now dark, and I +was tired and hungry. I got a cup of tea at the Aërated Bread Company +and came down to Purfleet by the next train. + +I found all the others at home. Mina was looking tired and pale, but she +made a gallant effort to be bright and cheerful, it wrung my heart to +think that I had had to keep anything from her and so caused her +inquietude. Thank God, this will be the last night of her looking on at +our conferences, and feeling the sting of our not showing our +confidence. It took all my courage to hold to the wise resolution of +keeping her out of our grim task. She seems somehow more reconciled; or +else the very subject seems to have become repugnant to her, for when +any accidental allusion is made she actually shudders. I am glad we +made our resolution in time, as with such a feeling as this, our growing +knowledge would be torture to her. + +I could not tell the others of the day’s discovery till we were alone; +so after dinner--followed by a little music to save appearances even +amongst ourselves--I took Mina to her room and left her to go to bed. +The dear girl was more affectionate with me than ever, and clung to me +as though she would detain me; but there was much to be talked of and I +came away. Thank God, the ceasing of telling things has made no +difference between us. + +When I came down again I found the others all gathered round the fire in +the study. In the train I had written my diary so far, and simply read +it off to them as the best means of letting them get abreast of my own +information; when I had finished Van Helsing said:-- + +“This has been a great day’s work, friend Jonathan. Doubtless we are on +the track of the missing boxes. If we find them all in that house, then +our work is near the end. But if there be some missing, we must search +until we find them. Then shall we make our final _coup_, and hunt the +wretch to his real death.” We all sat silent awhile and all at once Mr. +Morris spoke:-- + +“Say! how are we going to get into that house?” + +“We got into the other,” answered Lord Godalming quickly. + +“But, Art, this is different. We broke house at Carfax, but we had night +and a walled park to protect us. It will be a mighty different thing to +commit burglary in Piccadilly, either by day or night. I confess I don’t +see how we are going to get in unless that agency duck can find us a key +of some sort; perhaps we shall know when you get his letter in the +morning.” Lord Godalming’s brows contracted, and he stood up and walked +about the room. By-and-by he stopped and said, turning from one to +another of us:-- + +“Quincey’s head is level. This burglary business is getting serious; we +got off once all right; but we have now a rare job on hand--unless we +can find the Count’s key basket.” + +As nothing could well be done before morning, and as it would be at +least advisable to wait till Lord Godalming should hear from Mitchell’s, +we decided not to take any active step before breakfast time. For a good +while we sat and smoked, discussing the matter in its various lights and +bearings; I took the opportunity of bringing this diary right up to the +moment. I am very sleepy and shall go to bed.... + +Just a line. Mina sleeps soundly and her breathing is regular. Her +forehead is puckered up into little wrinkles, as though she thinks even +in her sleep. She is still too pale, but does not look so haggard as she +did this morning. To-morrow will, I hope, mend all this; she will be +herself at home in Exeter. Oh, but I am sleepy! + + +_Dr. Seward’s Diary._ + +_1 October._--I am puzzled afresh about Renfield. His moods change so +rapidly that I find it difficult to keep touch of them, and as they +always mean something more than his own well-being, they form a more +than interesting study. This morning, when I went to see him after his +repulse of Van Helsing, his manner was that of a man commanding destiny. +He was, in fact, commanding destiny--subjectively. He did not really +care for any of the things of mere earth; he was in the clouds and +looked down on all the weaknesses and wants of us poor mortals. I +thought I would improve the occasion and learn something, so I asked +him:-- + +“What about the flies these times?” He smiled on me in quite a superior +sort of way--such a smile as would have become the face of Malvolio--as +he answered me:-- + +“The fly, my dear sir, has one striking feature; its wings are typical +of the aërial powers of the psychic faculties. The ancients did well +when they typified the soul as a butterfly!” + +I thought I would push his analogy to its utmost logically, so I said +quickly:-- + +“Oh, it is a soul you are after now, is it?” His madness foiled his +reason, and a puzzled look spread over his face as, shaking his head +with a decision which I had but seldom seen in him, he said:-- + +“Oh, no, oh no! I want no souls. Life is all I want.” Here he brightened +up; “I am pretty indifferent about it at present. Life is all right; I +have all I want. You must get a new patient, doctor, if you wish to +study zoöphagy!” + +This puzzled me a little, so I drew him on:-- + +“Then you command life; you are a god, I suppose?” He smiled with an +ineffably benign superiority. + +“Oh no! Far be it from me to arrogate to myself the attributes of the +Deity. I am not even concerned in His especially spiritual doings. If I +may state my intellectual position I am, so far as concerns things +purely terrestrial, somewhat in the position which Enoch occupied +spiritually!” This was a poser to me. I could not at the moment recall +Enoch’s appositeness; so I had to ask a simple question, though I felt +that by so doing I was lowering myself in the eyes of the lunatic:-- + +“And why with Enoch?” + +“Because he walked with God.” I could not see the analogy, but did not +like to admit it; so I harked back to what he had denied:-- + +“So you don’t care about life and you don’t want souls. Why not?” I put +my question quickly and somewhat sternly, on purpose to disconcert him. +The effort succeeded; for an instant he unconsciously relapsed into his +old servile manner, bent low before me, and actually fawned upon me as +he replied:-- + +“I don’t want any souls, indeed, indeed! I don’t. I couldn’t use them if +I had them; they would be no manner of use to me. I couldn’t eat them +or----” He suddenly stopped and the old cunning look spread over his +face, like a wind-sweep on the surface of the water. “And doctor, as to +life, what is it after all? When you’ve got all you require, and you +know that you will never want, that is all. I have friends--good +friends--like you, Dr. Seward”; this was said with a leer of +inexpressible cunning. “I know that I shall never lack the means of +life!” + +I think that through the cloudiness of his insanity he saw some +antagonism in me, for he at once fell back on the last refuge of such as +he--a dogged silence. After a short time I saw that for the present it +was useless to speak to him. He was sulky, and so I came away. + +Later in the day he sent for me. Ordinarily I would not have come +without special reason, but just at present I am so interested in him +that I would gladly make an effort. Besides, I am glad to have anything +to help to pass the time. Harker is out, following up clues; and so are +Lord Godalming and Quincey. Van Helsing sits in my study poring over the +record prepared by the Harkers; he seems to think that by accurate +knowledge of all details he will light upon some clue. He does not wish +to be disturbed in the work, without cause. I would have taken him with +me to see the patient, only I thought that after his last repulse he +might not care to go again. There was also another reason: Renfield +might not speak so freely before a third person as when he and I were +alone. + +I found him sitting out in the middle of the floor on his stool, a pose +which is generally indicative of some mental energy on his part. When I +came in, he said at once, as though the question had been waiting on his +lips:-- + +“What about souls?” It was evident then that my surmise had been +correct. Unconscious cerebration was doing its work, even with the +lunatic. I determined to have the matter out. “What about them +yourself?” I asked. He did not reply for a moment but looked all round +him, and up and down, as though he expected to find some inspiration for +an answer. + +“I don’t want any souls!” he said in a feeble, apologetic way. The +matter seemed preying on his mind, and so I determined to use it--to “be +cruel only to be kind.” So I said:-- + +“You like life, and you want life?” + +“Oh yes! but that is all right; you needn’t worry about that!” + +“But,” I asked, “how are we to get the life without getting the soul +also?” This seemed to puzzle him, so I followed it up:-- + +“A nice time you’ll have some time when you’re flying out there, with +the souls of thousands of flies and spiders and birds and cats buzzing +and twittering and miauing all round you. You’ve got their lives, you +know, and you must put up with their souls!” Something seemed to affect +his imagination, for he put his fingers to his ears and shut his eyes, +screwing them up tightly just as a small boy does when his face is being +soaped. There was something pathetic in it that touched me; it also gave +me a lesson, for it seemed that before me was a child--only a child, +though the features were worn, and the stubble on the jaws was white. It +was evident that he was undergoing some process of mental disturbance, +and, knowing how his past moods had interpreted things seemingly foreign +to himself, I thought I would enter into his mind as well as I could and +go with him. The first step was to restore confidence, so I asked him, +speaking pretty loud so that he would hear me through his closed ears:-- + +“Would you like some sugar to get your flies round again?” He seemed to +wake up all at once, and shook his head. With a laugh he replied:-- + +“Not much! flies are poor things, after all!” After a pause he added, +“But I don’t want their souls buzzing round me, all the same.” + +“Or spiders?” I went on. + +“Blow spiders! What’s the use of spiders? There isn’t anything in them +to eat or”--he stopped suddenly, as though reminded of a forbidden +topic. + +“So, so!” I thought to myself, “this is the second time he has suddenly +stopped at the word ‘drink’; what does it mean?” Renfield seemed himself +aware of having made a lapse, for he hurried on, as though to distract +my attention from it:-- + +“I don’t take any stock at all in such matters. ‘Rats and mice and such +small deer,’ as Shakespeare has it, ‘chicken-feed of the larder’ they +might be called. I’m past all that sort of nonsense. You might as well +ask a man to eat molecules with a pair of chop-sticks, as to try to +interest me about the lesser carnivora, when I know of what is before +me.” + +“I see,” I said. “You want big things that you can make your teeth meet +in? How would you like to breakfast on elephant?” + +“What ridiculous nonsense you are talking!” He was getting too wide +awake, so I thought I would press him hard. “I wonder,” I said +reflectively, “what an elephant’s soul is like!” + +The effect I desired was obtained, for he at once fell from his +high-horse and became a child again. + +“I don’t want an elephant’s soul, or any soul at all!” he said. For a +few moments he sat despondently. Suddenly he jumped to his feet, with +his eyes blazing and all the signs of intense cerebral excitement. “To +hell with you and your souls!” he shouted. “Why do you plague me about +souls? Haven’t I got enough to worry, and pain, and distract me already, +without thinking of souls!” He looked so hostile that I thought he was +in for another homicidal fit, so I blew my whistle. The instant, +however, that I did so he became calm, and said apologetically:-- + +“Forgive me, Doctor; I forgot myself. You do not need any help. I am so +worried in my mind that I am apt to be irritable. If you only knew the +problem I have to face, and that I am working out, you would pity, and +tolerate, and pardon me. Pray do not put me in a strait-waistcoat. I +want to think and I cannot think freely when my body is confined. I am +sure you will understand!” He had evidently self-control; so when the +attendants came I told them not to mind, and they withdrew. Renfield +watched them go; when the door was closed he said, with considerable +dignity and sweetness:-- + +“Dr. Seward, you have been very considerate towards me. Believe me that +I am very, very grateful to you!” I thought it well to leave him in this +mood, and so I came away. There is certainly something to ponder over in +this man’s state. Several points seem to make what the American +interviewer calls “a story,” if one could only get them in proper order. +Here they are:-- + +Will not mention “drinking.” + +Fears the thought of being burdened with the “soul” of anything. + +Has no dread of wanting “life” in the future. + +Despises the meaner forms of life altogether, though he dreads being +haunted by their souls. + +Logically all these things point one way! he has assurance of some kind +that he will acquire some higher life. He dreads the consequence--the +burden of a soul. Then it is a human life he looks to! + +And the assurance--? + +Merciful God! the Count has been to him, and there is some new scheme of +terror afoot! + + * * * * * + +_Later._--I went after my round to Van Helsing and told him my +suspicion. He grew very grave; and, after thinking the matter over for a +while asked me to take him to Renfield. I did so. As we came to the door +we heard the lunatic within singing gaily, as he used to do in the time +which now seems so long ago. When we entered we saw with amazement that +he had spread out his sugar as of old; the flies, lethargic with the +autumn, were beginning to buzz into the room. We tried to make him talk +of the subject of our previous conversation, but he would not attend. He +went on with his singing, just as though we had not been present. He had +got a scrap of paper and was folding it into a note-book. We had to come +away as ignorant as we went in. + +His is a curious case indeed; we must watch him to-night. + + +_Letter, Mitchell, Sons and Candy to Lord Godalming._ + +_“1 October._ + +“My Lord, + +“We are at all times only too happy to meet your wishes. We beg, with +regard to the desire of your Lordship, expressed by Mr. Harker on your +behalf, to supply the following information concerning the sale and +purchase of No. 347, Piccadilly. The original vendors are the executors +of the late Mr. Archibald Winter-Suffield. The purchaser is a foreign +nobleman, Count de Ville, who effected the purchase himself paying the +purchase money in notes ‘over the counter,’ if your Lordship will pardon +us using so vulgar an expression. Beyond this we know nothing whatever +of him. + +“We are, my Lord, + +“Your Lordship’s humble servants, + +“MITCHELL, SONS & CANDY.” + + +_Dr. Seward’s Diary._ + +_2 October._--I placed a man in the corridor last night, and told him to +make an accurate note of any sound he might hear from Renfield’s room, +and gave him instructions that if there should be anything strange he +was to call me. After dinner, when we had all gathered round the fire +in the study--Mrs. Harker having gone to bed--we discussed the attempts +and discoveries of the day. Harker was the only one who had any result, +and we are in great hopes that his clue may be an important one. + +Before going to bed I went round to the patient’s room and looked in +through the observation trap. He was sleeping soundly, and his heart +rose and fell with regular respiration. + +This morning the man on duty reported to me that a little after midnight +he was restless and kept saying his prayers somewhat loudly. I asked him +if that was all; he replied that it was all he heard. There was +something about his manner so suspicious that I asked him point blank if +he had been asleep. He denied sleep, but admitted to having “dozed” for +a while. It is too bad that men cannot be trusted unless they are +watched. + +To-day Harker is out following up his clue, and Art and Quincey are +looking after horses. Godalming thinks that it will be well to have +horses always in readiness, for when we get the information which we +seek there will be no time to lose. We must sterilise all the imported +earth between sunrise and sunset; we shall thus catch the Count at his +weakest, and without a refuge to fly to. Van Helsing is off to the +British Museum looking up some authorities on ancient medicine. The old +physicians took account of things which their followers do not accept, +and the Professor is searching for witch and demon cures which may be +useful to us later. + +I sometimes think we must be all mad and that we shall wake to sanity in +strait-waistcoats. + + * * * * * + +_Later._--We have met again. We seem at last to be on the track, and our +work of to-morrow may be the beginning of the end. I wonder if +Renfield’s quiet has anything to do with this. His moods have so +followed the doings of the Count, that the coming destruction of the +monster may be carried to him in some subtle way. If we could only get +some hint as to what passed in his mind, between the time of my argument +with him to-day and his resumption of fly-catching, it might afford us a +valuable clue. He is now seemingly quiet for a spell.... Is he?---- That +wild yell seemed to come from his room.... + + * * * * * + +The attendant came bursting into my room and told me that Renfield had +somehow met with some accident. He had heard him yell; and when he went +to him found him lying on his face on the floor, all covered with blood. +I must go at once.... + + + + +CHAPTER XXI + +DR. SEWARD’S DIARY + + +_3 October._--Let me put down with exactness all that happened, as well +as I can remember it, since last I made an entry. Not a detail that I +can recall must be forgotten; in all calmness I must proceed. + +When I came to Renfield’s room I found him lying on the floor on his +left side in a glittering pool of blood. When I went to move him, it +became at once apparent that he had received some terrible injuries; +there seemed none of that unity of purpose between the parts of the body +which marks even lethargic sanity. As the face was exposed I could see +that it was horribly bruised, as though it had been beaten against the +floor--indeed it was from the face wounds that the pool of blood +originated. The attendant who was kneeling beside the body said to me as +we turned him over:-- + +“I think, sir, his back is broken. See, both his right arm and leg and +the whole side of his face are paralysed.” How such a thing could have +happened puzzled the attendant beyond measure. He seemed quite +bewildered, and his brows were gathered in as he said:-- + +“I can’t understand the two things. He could mark his face like that by +beating his own head on the floor. I saw a young woman do it once at the +Eversfield Asylum before anyone could lay hands on her. And I suppose he +might have broke his neck by falling out of bed, if he got in an awkward +kink. But for the life of me I can’t imagine how the two things +occurred. If his back was broke, he couldn’t beat his head; and if his +face was like that before the fall out of bed, there would be marks of +it.” I said to him:-- + +“Go to Dr. Van Helsing, and ask him to kindly come here at once. I want +him without an instant’s delay.” The man ran off, and within a few +minutes the Professor, in his dressing gown and slippers, appeared. When +he saw Renfield on the ground, he looked keenly at him a moment, and +then turned to me. I think he recognised my thought in my eyes, for he +said very quietly, manifestly for the ears of the attendant:-- + +“Ah, a sad accident! He will need very careful watching, and much +attention. I shall stay with you myself; but I shall first dress myself. +If you will remain I shall in a few minutes join you.” + +The patient was now breathing stertorously and it was easy to see that +he had suffered some terrible injury. Van Helsing returned with +extraordinary celerity, bearing with him a surgical case. He had +evidently been thinking and had his mind made up; for, almost before he +looked at the patient, he whispered to me:-- + +“Send the attendant away. We must be alone with him when he becomes +conscious, after the operation.” So I said:-- + +“I think that will do now, Simmons. We have done all that we can at +present. You had better go your round, and Dr. Van Helsing will operate. +Let me know instantly if there be anything unusual anywhere.” + +The man withdrew, and we went into a strict examination of the patient. +The wounds of the face was superficial; the real injury was a depressed +fracture of the skull, extending right up through the motor area. The +Professor thought a moment and said:-- + +“We must reduce the pressure and get back to normal conditions, as far +as can be; the rapidity of the suffusion shows the terrible nature of +his injury. The whole motor area seems affected. The suffusion of the +brain will increase quickly, so we must trephine at once or it may be +too late.” As he was speaking there was a soft tapping at the door. I +went over and opened it and found in the corridor without, Arthur and +Quincey in pajamas and slippers: the former spoke:-- + +“I heard your man call up Dr. Van Helsing and tell him of an accident. +So I woke Quincey or rather called for him as he was not asleep. Things +are moving too quickly and too strangely for sound sleep for any of us +these times. I’ve been thinking that to-morrow night will not see things +as they have been. We’ll have to look back--and forward a little more +than we have done. May we come in?” I nodded, and held the door open +till they had entered; then I closed it again. When Quincey saw the +attitude and state of the patient, and noted the horrible pool on the +floor, he said softly:-- + +“My God! what has happened to him? Poor, poor devil!” I told him +briefly, and added that we expected he would recover consciousness after +the operation--for a short time, at all events. He went at once and sat +down on the edge of the bed, with Godalming beside him; we all watched +in patience. + +“We shall wait,” said Van Helsing, “just long enough to fix the best +spot for trephining, so that we may most quickly and perfectly remove +the blood clot; for it is evident that the hæmorrhage is increasing.” + +The minutes during which we waited passed with fearful slowness. I had a +horrible sinking in my heart, and from Van Helsing’s face I gathered +that he felt some fear or apprehension as to what was to come. I dreaded +the words that Renfield might speak. I was positively afraid to think; +but the conviction of what was coming was on me, as I have read of men +who have heard the death-watch. The poor man’s breathing came in +uncertain gasps. Each instant he seemed as though he would open his eyes +and speak; but then would follow a prolonged stertorous breath, and he +would relapse into a more fixed insensibility. Inured as I was to sick +beds and death, this suspense grew, and grew upon me. I could almost +hear the beating of my own heart; and the blood surging through my +temples sounded like blows from a hammer. The silence finally became +agonising. I looked at my companions, one after another, and saw from +their flushed faces and damp brows that they were enduring equal +torture. There was a nervous suspense over us all, as though overhead +some dread bell would peal out powerfully when we should least expect +it. + +At last there came a time when it was evident that the patient was +sinking fast; he might die at any moment. I looked up at the Professor +and caught his eyes fixed on mine. His face was sternly set as he +spoke:-- + +“There is no time to lose. His words may be worth many lives; I have +been thinking so, as I stood here. It may be there is a soul at stake! +We shall operate just above the ear.” + +Without another word he made the operation. For a few moments the +breathing continued to be stertorous. Then there came a breath so +prolonged that it seemed as though it would tear open his chest. +Suddenly his eyes opened, and became fixed in a wild, helpless stare. +This was continued for a few moments; then it softened into a glad +surprise, and from the lips came a sigh of relief. He moved +convulsively, and as he did so, said:-- + +“I’ll be quiet, Doctor. Tell them to take off the strait-waistcoat. I +have had a terrible dream, and it has left me so weak that I cannot +move. What’s wrong with my face? it feels all swollen, and it smarts +dreadfully.” He tried to turn his head; but even with the effort his +eyes seemed to grow glassy again so I gently put it back. Then Van +Helsing said in a quiet grave tone:-- + +“Tell us your dream, Mr. Renfield.” As he heard the voice his face +brightened, through its mutilation, and he said:-- + +“That is Dr. Van Helsing. How good it is of you to be here. Give me some +water, my lips are dry; and I shall try to tell you. I dreamed”--he +stopped and seemed fainting, I called quietly to Quincey--“The +brandy--it is in my study--quick!” He flew and returned with a glass, +the decanter of brandy and a carafe of water. We moistened the parched +lips, and the patient quickly revived. It seemed, however, that his poor +injured brain had been working in the interval, for, when he was quite +conscious, he looked at me piercingly with an agonised confusion which I +shall never forget, and said:-- + +“I must not deceive myself; it was no dream, but all a grim reality.” +Then his eyes roved round the room; as they caught sight of the two +figures sitting patiently on the edge of the bed he went on:-- + +“If I were not sure already, I would know from them.” For an instant his +eyes closed--not with pain or sleep but voluntarily, as though he were +bringing all his faculties to bear; when he opened them he said, +hurriedly, and with more energy than he had yet displayed:-- + +“Quick, Doctor, quick. I am dying! I feel that I have but a few minutes; +and then I must go back to death--or worse! Wet my lips with brandy +again. I have something that I must say before I die; or before my poor +crushed brain dies anyhow. Thank you! It was that night after you left +me, when I implored you to let me go away. I couldn’t speak then, for I +felt my tongue was tied; but I was as sane then, except in that way, as +I am now. I was in an agony of despair for a long time after you left +me; it seemed hours. Then there came a sudden peace to me. My brain +seemed to become cool again, and I realised where I was. I heard the +dogs bark behind our house, but not where He was!” As he spoke, Van +Helsing’s eyes never blinked, but his hand came out and met mine and +gripped it hard. He did not, however, betray himself; he nodded slightly +and said: “Go on,” in a low voice. Renfield proceeded:-- + +“He came up to the window in the mist, as I had seen him often before; +but he was solid then--not a ghost, and his eyes were fierce like a +man’s when angry. He was laughing with his red mouth; the sharp white +teeth glinted in the moonlight when he turned to look back over the belt +of trees, to where the dogs were barking. I wouldn’t ask him to come in +at first, though I knew he wanted to--just as he had wanted all along. +Then he began promising me things--not in words but by doing them.” He +was interrupted by a word from the Professor:-- + +“How?” + +“By making them happen; just as he used to send in the flies when the +sun was shining. Great big fat ones with steel and sapphire on their +wings; and big moths, in the night, with skull and cross-bones on their +backs.” Van Helsing nodded to him as he whispered to me unconsciously:-- + +“The _Acherontia Aitetropos of the Sphinges_--what you call the +‘Death’s-head Moth’?” The patient went on without stopping. + +“Then he began to whisper: ‘Rats, rats, rats! Hundreds, thousands, +millions of them, and every one a life; and dogs to eat them, and cats +too. All lives! all red blood, with years of life in it; and not merely +buzzing flies!’ I laughed at him, for I wanted to see what he could do. +Then the dogs howled, away beyond the dark trees in His house. He +beckoned me to the window. I got up and looked out, and He raised his +hands, and seemed to call out without using any words. A dark mass +spread over the grass, coming on like the shape of a flame of fire; and +then He moved the mist to the right and left, and I could see that there +were thousands of rats with their eyes blazing red--like His, only +smaller. He held up his hand, and they all stopped; and I thought he +seemed to be saying: ‘All these lives will I give you, ay, and many more +and greater, through countless ages, if you will fall down and worship +me!’ And then a red cloud, like the colour of blood, seemed to close +over my eyes; and before I knew what I was doing, I found myself opening +the sash and saying to Him: ‘Come in, Lord and Master!’ The rats were +all gone, but He slid into the room through the sash, though it was only +open an inch wide--just as the Moon herself has often come in through +the tiniest crack and has stood before me in all her size and +splendour.” + +His voice was weaker, so I moistened his lips with the brandy again, and +he continued; but it seemed as though his memory had gone on working in +the interval for his story was further advanced. I was about to call him +back to the point, but Van Helsing whispered to me: “Let him go on. Do +not interrupt him; he cannot go back, and maybe could not proceed at all +if once he lost the thread of his thought.” He proceeded:-- + +“All day I waited to hear from him, but he did not send me anything, not +even a blow-fly, and when the moon got up I was pretty angry with him. +When he slid in through the window, though it was shut, and did not even +knock, I got mad with him. He sneered at me, and his white face looked +out of the mist with his red eyes gleaming, and he went on as though he +owned the whole place, and I was no one. He didn’t even smell the same +as he went by me. I couldn’t hold him. I thought that, somehow, Mrs. +Harker had come into the room.” + +The two men sitting on the bed stood up and came over, standing behind +him so that he could not see them, but where they could hear better. +They were both silent, but the Professor started and quivered; his face, +however, grew grimmer and sterner still. Renfield went on without +noticing:-- + +“When Mrs. Harker came in to see me this afternoon she wasn’t the same; +it was like tea after the teapot had been watered.” Here we all moved, +but no one said a word; he went on:-- + +“I didn’t know that she was here till she spoke; and she didn’t look the +same. I don’t care for the pale people; I like them with lots of blood +in them, and hers had all seemed to have run out. I didn’t think of it +at the time; but when she went away I began to think, and it made me mad +to know that He had been taking the life out of her.” I could feel that +the rest quivered, as I did, but we remained otherwise still. “So when +He came to-night I was ready for Him. I saw the mist stealing in, and I +grabbed it tight. I had heard that madmen have unnatural strength; and +as I knew I was a madman--at times anyhow--I resolved to use my power. +Ay, and He felt it too, for He had to come out of the mist to struggle +with me. I held tight; and I thought I was going to win, for I didn’t +mean Him to take any more of her life, till I saw His eyes. They burned +into me, and my strength became like water. He slipped through it, and +when I tried to cling to Him, He raised me up and flung me down. There +was a red cloud before me, and a noise like thunder, and the mist seemed +to steal away under the door.” His voice was becoming fainter and his +breath more stertorous. Van Helsing stood up instinctively. + +“We know the worst now,” he said. “He is here, and we know his purpose. +It may not be too late. Let us be armed--the same as we were the other +night, but lose no time; there is not an instant to spare.” There was no +need to put our fear, nay our conviction, into words--we shared them in +common. We all hurried and took from our rooms the same things that we +had when we entered the Count’s house. The Professor had his ready, and +as we met in the corridor he pointed to them significantly as he said:-- + +“They never leave me; and they shall not till this unhappy business is +over. Be wise also, my friends. It is no common enemy that we deal with. +Alas! alas! that that dear Madam Mina should suffer!” He stopped; his +voice was breaking, and I do not know if rage or terror predominated in +my own heart. + +Outside the Harkers’ door we paused. Art and Quincey held back, and the +latter said:-- + +“Should we disturb her?” + +“We must,” said Van Helsing grimly. “If the door be locked, I shall +break it in.” + +“May it not frighten her terribly? It is unusual to break into a lady’s +room!” + +Van Helsing said solemnly, “You are always right; but this is life and +death. All chambers are alike to the doctor; and even were they not they +are all as one to me to-night. Friend John, when I turn the handle, if +the door does not open, do you put your shoulder down and shove; and you +too, my friends. Now!” + +He turned the handle as he spoke, but the door did not yield. We threw +ourselves against it; with a crash it burst open, and we almost fell +headlong into the room. The Professor did actually fall, and I saw +across him as he gathered himself up from hands and knees. What I saw +appalled me. I felt my hair rise like bristles on the back of my neck, +and my heart seemed to stand still. + +The moonlight was so bright that through the thick yellow blind the room +was light enough to see. On the bed beside the window lay Jonathan +Harker, his face flushed and breathing heavily as though in a stupor. +Kneeling on the near edge of the bed facing outwards was the white-clad +figure of his wife. By her side stood a tall, thin man, clad in black. +His face was turned from us, but the instant we saw we all recognised +the Count--in every way, even to the scar on his forehead. With his left +hand he held both Mrs. Harker’s hands, keeping them away with her arms +at full tension; his right hand gripped her by the back of the neck, +forcing her face down on his bosom. Her white nightdress was smeared +with blood, and a thin stream trickled down the man’s bare breast which +was shown by his torn-open dress. The attitude of the two had a terrible +resemblance to a child forcing a kitten’s nose into a saucer of milk to +compel it to drink. As we burst into the room, the Count turned his +face, and the hellish look that I had heard described seemed to leap +into it. His eyes flamed red with devilish passion; the great nostrils +of the white aquiline nose opened wide and quivered at the edge; and the +white sharp teeth, behind the full lips of the blood-dripping mouth, +champed together like those of a wild beast. With a wrench, which threw +his victim back upon the bed as though hurled from a height, he turned +and sprang at us. But by this time the Professor had gained his feet, +and was holding towards him the envelope which contained the Sacred +Wafer. The Count suddenly stopped, just as poor Lucy had done outside +the tomb, and cowered back. Further and further back he cowered, as we, +lifting our crucifixes, advanced. The moonlight suddenly failed, as a +great black cloud sailed across the sky; and when the gaslight sprang up +under Quincey’s match, we saw nothing but a faint vapour. This, as we +looked, trailed under the door, which with the recoil from its bursting +open, had swung back to its old position. Van Helsing, Art, and I moved +forward to Mrs. Harker, who by this time had drawn her breath and with +it had given a scream so wild, so ear-piercing, so despairing that it +seems to me now that it will ring in my ears till my dying day. For a +few seconds she lay in her helpless attitude and disarray. Her face was +ghastly, with a pallor which was accentuated by the blood which smeared +her lips and cheeks and chin; from her throat trickled a thin stream of +blood; her eyes were mad with terror. Then she put before her face her +poor crushed hands, which bore on their whiteness the red mark of the +Count’s terrible grip, and from behind them came a low desolate wail +which made the terrible scream seem only the quick expression of an +endless grief. Van Helsing stepped forward and drew the coverlet gently +over her body, whilst Art, after looking at her face for an instant +despairingly, ran out of the room. Van Helsing whispered to me:-- + +“Jonathan is in a stupor such as we know the Vampire can produce. We can +do nothing with poor Madam Mina for a few moments till she recovers +herself; I must wake him!” He dipped the end of a towel in cold water +and with it began to flick him on the face, his wife all the while +holding her face between her hands and sobbing in a way that was +heart-breaking to hear. I raised the blind, and looked out of the +window. There was much moonshine; and as I looked I could see Quincey +Morris run across the lawn and hide himself in the shadow of a great +yew-tree. It puzzled me to think why he was doing this; but at the +instant I heard Harker’s quick exclamation as he woke to partial +consciousness, and turned to the bed. On his face, as there might well +be, was a look of wild amazement. He seemed dazed for a few seconds, and +then full consciousness seemed to burst upon him all at once, and he +started up. His wife was aroused by the quick movement, and turned to +him with her arms stretched out, as though to embrace him; instantly, +however, she drew them in again, and putting her elbows together, held +her hands before her face, and shuddered till the bed beneath her shook. + +“In God’s name what does this mean?” Harker cried out. “Dr. Seward, Dr. +Van Helsing, what is it? What has happened? What is wrong? Mina, dear, +what is it? What does that blood mean? My God, my God! has it come to +this!” and, raising himself to his knees, he beat his hands wildly +together. “Good God help us! help her! oh, help her!” With a quick +movement he jumped from bed, and began to pull on his clothes,--all the +man in him awake at the need for instant exertion. “What has happened? +Tell me all about it!” he cried without pausing. “Dr. Van Helsing, you +love Mina, I know. Oh, do something to save her. It cannot have gone too +far yet. Guard her while I look for _him_!” His wife, through her terror +and horror and distress, saw some sure danger to him: instantly +forgetting her own grief, she seized hold of him and cried out:-- + +“No! no! Jonathan, you must not leave me. I have suffered enough +to-night, God knows, without the dread of his harming you. You must stay +with me. Stay with these friends who will watch over you!” Her +expression became frantic as she spoke; and, he yielding to her, she +pulled him down sitting on the bed side, and clung to him fiercely. + +Van Helsing and I tried to calm them both. The Professor held up his +little golden crucifix, and said with wonderful calmness:-- + +“Do not fear, my dear. We are here; and whilst this is close to you no +foul thing can approach. You are safe for to-night; and we must be calm +and take counsel together.” She shuddered and was silent, holding down +her head on her husband’s breast. When she raised it, his white +night-robe was stained with blood where her lips had touched, and where +the thin open wound in her neck had sent forth drops. The instant she +saw it she drew back, with a low wail, and whispered, amidst choking +sobs:-- + +“Unclean, unclean! I must touch him or kiss him no more. Oh, that it +should be that it is I who am now his worst enemy, and whom he may have +most cause to fear.” To this he spoke out resolutely:-- + +“Nonsense, Mina. It is a shame to me to hear such a word. I would not +hear it of you; and I shall not hear it from you. May God judge me by my +deserts, and punish me with more bitter suffering than even this hour, +if by any act or will of mine anything ever come between us!” He put out +his arms and folded her to his breast; and for a while she lay there +sobbing. He looked at us over her bowed head, with eyes that blinked +damply above his quivering nostrils; his mouth was set as steel. After a +while her sobs became less frequent and more faint, and then he said to +me, speaking with a studied calmness which I felt tried his nervous +power to the utmost:-- + +“And now, Dr. Seward, tell me all about it. Too well I know the broad +fact; tell me all that has been.” I told him exactly what had happened, +and he listened with seeming impassiveness; but his nostrils twitched +and his eyes blazed as I told how the ruthless hands of the Count had +held his wife in that terrible and horrid position, with her mouth to +the open wound in his breast. It interested me, even at that moment, to +see, that, whilst the face of white set passion worked convulsively over +the bowed head, the hands tenderly and lovingly stroked the ruffled +hair. Just as I had finished, Quincey and Godalming knocked at the door. +They entered in obedience to our summons. Van Helsing looked at me +questioningly. I understood him to mean if we were to take advantage of +their coming to divert if possible the thoughts of the unhappy husband +and wife from each other and from themselves; so on nodding acquiescence +to him he asked them what they had seen or done. To which Lord Godalming +answered:-- + +“I could not see him anywhere in the passage, or in any of our rooms. I +looked in the study but, though he had been there, he had gone. He had, +however----” He stopped suddenly, looking at the poor drooping figure on +the bed. Van Helsing said gravely:-- + +“Go on, friend Arthur. We want here no more concealments. Our hope now +is in knowing all. Tell freely!” So Art went on:-- + +“He had been there, and though it could only have been for a few +seconds, he made rare hay of the place. All the manuscript had been +burned, and the blue flames were flickering amongst the white ashes; the +cylinders of your phonograph too were thrown on the fire, and the wax +had helped the flames.” Here I interrupted. “Thank God there is the +other copy in the safe!” His face lit for a moment, but fell again as he +went on: “I ran downstairs then, but could see no sign of him. I looked +into Renfield’s room; but there was no trace there except----!” Again he +paused. “Go on,” said Harker hoarsely; so he bowed his head and +moistening his lips with his tongue, added: “except that the poor fellow +is dead.” Mrs. Harker raised her head, looking from one to the other of +us she said solemnly:-- + +“God’s will be done!” I could not but feel that Art was keeping back +something; but, as I took it that it was with a purpose, I said nothing. +Van Helsing turned to Morris and asked:-- + +“And you, friend Quincey, have you any to tell?” + +“A little,” he answered. “It may be much eventually, but at present I +can’t say. I thought it well to know if possible where the Count would +go when he left the house. I did not see him; but I saw a bat rise from +Renfield’s window, and flap westward. I expected to see him in some +shape go back to Carfax; but he evidently sought some other lair. He +will not be back to-night; for the sky is reddening in the east, and the +dawn is close. We must work to-morrow!” + +He said the latter words through his shut teeth. For a space of perhaps +a couple of minutes there was silence, and I could fancy that I could +hear the sound of our hearts beating; then Van Helsing said, placing his +hand very tenderly on Mrs. Harker’s head:-- + +“And now, Madam Mina--poor, dear, dear Madam Mina--tell us exactly what +happened. God knows that I do not want that you be pained; but it is +need that we know all. For now more than ever has all work to be done +quick and sharp, and in deadly earnest. The day is close to us that must +end all, if it may be so; and now is the chance that we may live and +learn.” + +The poor, dear lady shivered, and I could see the tension of her nerves +as she clasped her husband closer to her and bent her head lower and +lower still on his breast. Then she raised her head proudly, and held +out one hand to Van Helsing who took it in his, and, after stooping and +kissing it reverently, held it fast. The other hand was locked in that +of her husband, who held his other arm thrown round her protectingly. +After a pause in which she was evidently ordering her thoughts, she +began:-- + +“I took the sleeping draught which you had so kindly given me, but for a +long time it did not act. I seemed to become more wakeful, and myriads +of horrible fancies began to crowd in upon my mind--all of them +connected with death, and vampires; with blood, and pain, and trouble.” +Her husband involuntarily groaned as she turned to him and said +lovingly: “Do not fret, dear. You must be brave and strong, and help me +through the horrible task. If you only knew what an effort it is to me +to tell of this fearful thing at all, you would understand how much I +need your help. Well, I saw I must try to help the medicine to its work +with my will, if it was to do me any good, so I resolutely set myself to +sleep. Sure enough sleep must soon have come to me, for I remember no +more. Jonathan coming in had not waked me, for he lay by my side when +next I remember. There was in the room the same thin white mist that I +had before noticed. But I forget now if you know of this; you will find +it in my diary which I shall show you later. I felt the same vague +terror which had come to me before and the same sense of some presence. +I turned to wake Jonathan, but found that he slept so soundly that it +seemed as if it was he who had taken the sleeping draught, and not I. I +tried, but I could not wake him. This caused me a great fear, and I +looked around terrified. Then indeed, my heart sank within me: beside +the bed, as if he had stepped out of the mist--or rather as if the mist +had turned into his figure, for it had entirely disappeared--stood a +tall, thin man, all in black. I knew him at once from the description of +the others. The waxen face; the high aquiline nose, on which the light +fell in a thin white line; the parted red lips, with the sharp white +teeth showing between; and the red eyes that I had seemed to see in the +sunset on the windows of St. Mary’s Church at Whitby. I knew, too, the +red scar on his forehead where Jonathan had struck him. For an instant +my heart stood still, and I would have screamed out, only that I was +paralysed. In the pause he spoke in a sort of keen, cutting whisper, +pointing as he spoke to Jonathan:-- + +“‘Silence! If you make a sound I shall take him and dash his brains out +before your very eyes.’ I was appalled and was too bewildered to do or +say anything. With a mocking smile, he placed one hand upon my shoulder +and, holding me tight, bared my throat with the other, saying as he did +so, ‘First, a little refreshment to reward my exertions. You may as well +be quiet; it is not the first time, or the second, that your veins have +appeased my thirst!’ I was bewildered, and, strangely enough, I did not +want to hinder him. I suppose it is a part of the horrible curse that +such is, when his touch is on his victim. And oh, my God, my God, pity +me! He placed his reeking lips upon my throat!” Her husband groaned +again. She clasped his hand harder, and looked at him pityingly, as if +he were the injured one, and went on:-- + +“I felt my strength fading away, and I was in a half swoon. How long +this horrible thing lasted I know not; but it seemed that a long time +must have passed before he took his foul, awful, sneering mouth away. I +saw it drip with the fresh blood!” The remembrance seemed for a while to +overpower her, and she drooped and would have sunk down but for her +husband’s sustaining arm. With a great effort she recovered herself and +went on:-- + +“Then he spoke to me mockingly, ‘And so you, like the others, would play +your brains against mine. You would help these men to hunt me and +frustrate me in my designs! You know now, and they know in part already, +and will know in full before long, what it is to cross my path. They +should have kept their energies for use closer to home. Whilst they +played wits against me--against me who commanded nations, and intrigued +for them, and fought for them, hundreds of years before they were +born--I was countermining them. And you, their best beloved one, are now +to me, flesh of my flesh; blood of my blood; kin of my kin; my bountiful +wine-press for a while; and shall be later on my companion and my +helper. You shall be avenged in turn; for not one of them but shall +minister to your needs. But as yet you are to be punished for what you +have done. You have aided in thwarting me; now you shall come to my +call. When my brain says “Come!” to you, you shall cross land or sea to +do my bidding; and to that end this!’ With that he pulled open his +shirt, and with his long sharp nails opened a vein in his breast. When +the blood began to spurt out, he took my hands in one of his, holding +them tight, and with the other seized my neck and pressed my mouth to +the wound, so that I must either suffocate or swallow some of the---- Oh +my God! my God! what have I done? What have I done to deserve such a +fate, I who have tried to walk in meekness and righteousness all my +days. God pity me! Look down on a poor soul in worse than mortal peril; +and in mercy pity those to whom she is dear!” Then she began to rub her +lips as though to cleanse them from pollution. + +As she was telling her terrible story, the eastern sky began to quicken, +and everything became more and more clear. Harker was still and quiet; +but over his face, as the awful narrative went on, came a grey look +which deepened and deepened in the morning light, till when the first +red streak of the coming dawn shot up, the flesh stood darkly out +against the whitening hair. + +We have arranged that one of us is to stay within call of the unhappy +pair till we can meet together and arrange about taking action. + +Of this I am sure: the sun rises to-day on no more miserable house in +all the great round of its daily course. + + + + +CHAPTER XXII + +JONATHAN HARKER’S JOURNAL + + +_3 October._--As I must do something or go mad, I write this diary. It +is now six o’clock, and we are to meet in the study in half an hour and +take something to eat; for Dr. Van Helsing and Dr. Seward are agreed +that if we do not eat we cannot work our best. Our best will be, God +knows, required to-day. I must keep writing at every chance, for I dare +not stop to think. All, big and little, must go down; perhaps at the end +the little things may teach us most. The teaching, big or little, could +not have landed Mina or me anywhere worse than we are to-day. However, +we must trust and hope. Poor Mina told me just now, with the tears +running down her dear cheeks, that it is in trouble and trial that our +faith is tested--that we must keep on trusting; and that God will aid us +up to the end. The end! oh my God! what end?... To work! To work! + +When Dr. Van Helsing and Dr. Seward had come back from seeing poor +Renfield, we went gravely into what was to be done. First, Dr. Seward +told us that when he and Dr. Van Helsing had gone down to the room below +they had found Renfield lying on the floor, all in a heap. His face was +all bruised and crushed in, and the bones of the neck were broken. + +Dr. Seward asked the attendant who was on duty in the passage if he had +heard anything. He said that he had been sitting down--he confessed to +half dozing--when he heard loud voices in the room, and then Renfield +had called out loudly several times, “God! God! God!” after that there +was a sound of falling, and when he entered the room he found him lying +on the floor, face down, just as the doctors had seen him. Van Helsing +asked if he had heard “voices” or “a voice,” and he said he could not +say; that at first it had seemed to him as if there were two, but as +there was no one in the room it could have been only one. He could swear +to it, if required, that the word “God” was spoken by the patient. Dr. +Seward said to us, when we were alone, that he did not wish to go into +the matter; the question of an inquest had to be considered, and it +would never do to put forward the truth, as no one would believe it. As +it was, he thought that on the attendant’s evidence he could give a +certificate of death by misadventure in falling from bed. In case the +coroner should demand it, there would be a formal inquest, necessarily +to the same result. + +When the question began to be discussed as to what should be our next +step, the very first thing we decided was that Mina should be in full +confidence; that nothing of any sort--no matter how painful--should be +kept from her. She herself agreed as to its wisdom, and it was pitiful +to see her so brave and yet so sorrowful, and in such a depth of +despair. “There must be no concealment,” she said, “Alas! we have had +too much already. And besides there is nothing in all the world that can +give me more pain than I have already endured--than I suffer now! +Whatever may happen, it must be of new hope or of new courage to me!” +Van Helsing was looking at her fixedly as she spoke, and said, suddenly +but quietly:-- + +“But dear Madam Mina, are you not afraid; not for yourself, but for +others from yourself, after what has happened?” Her face grew set in its +lines, but her eyes shone with the devotion of a martyr as she +answered:-- + +“Ah no! for my mind is made up!” + +“To what?” he asked gently, whilst we were all very still; for each in +our own way we had a sort of vague idea of what she meant. Her answer +came with direct simplicity, as though she were simply stating a fact:-- + +“Because if I find in myself--and I shall watch keenly for it--a sign of +harm to any that I love, I shall die!” + +“You would not kill yourself?” he asked, hoarsely. + +“I would; if there were no friend who loved me, who would save me such a +pain, and so desperate an effort!” She looked at him meaningly as she +spoke. He was sitting down; but now he rose and came close to her and +put his hand on her head as he said solemnly: + +“My child, there is such an one if it were for your good. For myself I +could hold it in my account with God to find such an euthanasia for you, +even at this moment if it were best. Nay, were it safe! But my +child----” For a moment he seemed choked, and a great sob rose in his +throat; he gulped it down and went on:-- + +“There are here some who would stand between you and death. You must not +die. You must not die by any hand; but least of all by your own. Until +the other, who has fouled your sweet life, is true dead you must not +die; for if he is still with the quick Un-Dead, your death would make +you even as he is. No, you must live! You must struggle and strive to +live, though death would seem a boon unspeakable. You must fight Death +himself, though he come to you in pain or in joy; by the day, or the +night; in safety or in peril! On your living soul I charge you that you +do not die--nay, nor think of death--till this great evil be past.” The +poor dear grew white as death, and shock and shivered, as I have seen a +quicksand shake and shiver at the incoming of the tide. We were all +silent; we could do nothing. At length she grew more calm and turning to +him said, sweetly, but oh! so sorrowfully, as she held out her hand:-- + +“I promise you, my dear friend, that if God will let me live, I shall +strive to do so; till, if it may be in His good time, this horror may +have passed away from me.” She was so good and brave that we all felt +that our hearts were strengthened to work and endure for her, and we +began to discuss what we were to do. I told her that she was to have all +the papers in the safe, and all the papers or diaries and phonographs we +might hereafter use; and was to keep the record as she had done before. +She was pleased with the prospect of anything to do--if “pleased” could +be used in connection with so grim an interest. + +As usual Van Helsing had thought ahead of everyone else, and was +prepared with an exact ordering of our work. + +“It is perhaps well,” he said, “that at our meeting after our visit to +Carfax we decided not to do anything with the earth-boxes that lay +there. Had we done so, the Count must have guessed our purpose, and +would doubtless have taken measures in advance to frustrate such an +effort with regard to the others; but now he does not know our +intentions. Nay, more, in all probability, he does not know that such a +power exists to us as can sterilise his lairs, so that he cannot use +them as of old. We are now so much further advanced in our knowledge as +to their disposition that, when we have examined the house in +Piccadilly, we may track the very last of them. To-day, then, is ours; +and in it rests our hope. The sun that rose on our sorrow this morning +guards us in its course. Until it sets to-night, that monster must +retain whatever form he now has. He is confined within the limitations +of his earthly envelope. He cannot melt into thin air nor disappear +through cracks or chinks or crannies. If he go through a doorway, he +must open the door like a mortal. And so we have this day to hunt out +all his lairs and sterilise them. So we shall, if we have not yet catch +him and destroy him, drive him to bay in some place where the catching +and the destroying shall be, in time, sure.” Here I started up for I +could not contain myself at the thought that the minutes and seconds so +preciously laden with Mina’s life and happiness were flying from us, +since whilst we talked action was impossible. But Van Helsing held up +his hand warningly. “Nay, friend Jonathan,” he said, “in this, the +quickest way home is the longest way, so your proverb say. We shall all +act and act with desperate quick, when the time has come. But think, in +all probable the key of the situation is in that house in Piccadilly. +The Count may have many houses which he has bought. Of them he will have +deeds of purchase, keys and other things. He will have paper that he +write on; he will have his book of cheques. There are many belongings +that he must have somewhere; why not in this place so central, so quiet, +where he come and go by the front or the back at all hour, when in the +very vast of the traffic there is none to notice. We shall go there and +search that house; and when we learn what it holds, then we do what our +friend Arthur call, in his phrases of hunt ‘stop the earths’ and so we +run down our old fox--so? is it not?” + +“Then let us come at once,” I cried, “we are wasting the precious, +precious time!” The Professor did not move, but simply said:-- + +“And how are we to get into that house in Piccadilly?” + +“Any way!” I cried. “We shall break in if need be.” + +“And your police; where will they be, and what will they say?” + +I was staggered; but I knew that if he wished to delay he had a good +reason for it. So I said, as quietly as I could:-- + +“Don’t wait more than need be; you know, I am sure, what torture I am +in.” + +“Ah, my child, that I do; and indeed there is no wish of me to add to +your anguish. But just think, what can we do, until all the world be at +movement. Then will come our time. I have thought and thought, and it +seems to me that the simplest way is the best of all. Now we wish to get +into the house, but we have no key; is it not so?” I nodded. + +“Now suppose that you were, in truth, the owner of that house, and could +not still get in; and think there was to you no conscience of the +housebreaker, what would you do?” + +“I should get a respectable locksmith, and set him to work to pick the +lock for me.” + +“And your police, they would interfere, would they not?” + +“Oh, no! not if they knew the man was properly employed.” + +“Then,” he looked at me as keenly as he spoke, “all that is in doubt is +the conscience of the employer, and the belief of your policemen as to +whether or no that employer has a good conscience or a bad one. Your +police must indeed be zealous men and clever--oh, so clever!--in reading +the heart, that they trouble themselves in such matter. No, no, my +friend Jonathan, you go take the lock off a hundred empty house in this +your London, or of any city in the world; and if you do it as such +things are rightly done, and at the time such things are rightly done, +no one will interfere. I have read of a gentleman who owned a so fine +house in London, and when he went for months of summer to Switzerland +and lock up his house, some burglar came and broke window at back and +got in. Then he went and made open the shutters in front and walk out +and in through the door, before the very eyes of the police. Then he +have an auction in that house, and advertise it, and put up big notice; +and when the day come he sell off by a great auctioneer all the goods of +that other man who own them. Then he go to a builder, and he sell him +that house, making an agreement that he pull it down and take all away +within a certain time. And your police and other authority help him all +they can. And when that owner come back from his holiday in Switzerland +he find only an empty hole where his house had been. This was all done +_en règle_; and in our work we shall be _en règle_ too. We shall not go +so early that the policemen who have then little to think of, shall deem +it strange; but we shall go after ten o’clock, when there are many +about, and such things would be done were we indeed owners of the +house.” + +I could not but see how right he was and the terrible despair of Mina’s +face became relaxed a thought; there was hope in such good counsel. Van +Helsing went on:-- + +“When once within that house we may find more clues; at any rate some of +us can remain there whilst the rest find the other places where there be +more earth-boxes--at Bermondsey and Mile End.” + +Lord Godalming stood up. “I can be of some use here,” he said. “I shall +wire to my people to have horses and carriages where they will be most +convenient.” + +“Look here, old fellow,” said Morris, “it is a capital idea to have all +ready in case we want to go horsebacking; but don’t you think that one +of your snappy carriages with its heraldic adornments in a byway of +Walworth or Mile End would attract too much attention for our purposes? +It seems to me that we ought to take cabs when we go south or east; and +even leave them somewhere near the neighbourhood we are going to.” + +“Friend Quincey is right!” said the Professor. “His head is what you +call in plane with the horizon. It is a difficult thing that we go to +do, and we do not want no peoples to watch us if so it may.” + +Mina took a growing interest in everything and I was rejoiced to see +that the exigency of affairs was helping her to forget for a time the +terrible experience of the night. She was very, very pale--almost +ghastly, and so thin that her lips were drawn away, showing her teeth in +somewhat of prominence. I did not mention this last, lest it should give +her needless pain; but it made my blood run cold in my veins to think of +what had occurred with poor Lucy when the Count had sucked her blood. As +yet there was no sign of the teeth growing sharper; but the time as yet +was short, and there was time for fear. + +When we came to the discussion of the sequence of our efforts and of the +disposition of our forces, there were new sources of doubt. It was +finally agreed that before starting for Piccadilly we should destroy the +Count’s lair close at hand. In case he should find it out too soon, we +should thus be still ahead of him in our work of destruction; and his +presence in his purely material shape, and at his weakest, might give us +some new clue. + +As to the disposal of forces, it was suggested by the Professor that, +after our visit to Carfax, we should all enter the house in Piccadilly; +that the two doctors and I should remain there, whilst Lord Godalming +and Quincey found the lairs at Walworth and Mile End and destroyed them. +It was possible, if not likely, the Professor urged, that the Count +might appear in Piccadilly during the day, and that if so we might be +able to cope with him then and there. At any rate, we might be able to +follow him in force. To this plan I strenuously objected, and so far as +my going was concerned, for I said that I intended to stay and protect +Mina, I thought that my mind was made up on the subject; but Mina would +not listen to my objection. She said that there might be some law matter +in which I could be useful; that amongst the Count’s papers might be +some clue which I could understand out of my experience in Transylvania; +and that, as it was, all the strength we could muster was required to +cope with the Count’s extraordinary power. I had to give in, for Mina’s +resolution was fixed; she said that it was the last hope for _her_ that +we should all work together. “As for me,” she said, “I have no fear. +Things have been as bad as they can be; and whatever may happen must +have in it some element of hope or comfort. Go, my husband! God can, if +He wishes it, guard me as well alone as with any one present.” So I +started up crying out: “Then in God’s name let us come at once, for we +are losing time. The Count may come to Piccadilly earlier than we +think.” + +“Not so!” said Van Helsing, holding up his hand. + +“But why?” I asked. + +“Do you forget,” he said, with actually a smile, “that last night he +banqueted heavily, and will sleep late?” + +Did I forget! shall I ever--can I ever! Can any of us ever forget that +terrible scene! Mina struggled hard to keep her brave countenance; but +the pain overmastered her and she put her hands before her face, and +shuddered whilst she moaned. Van Helsing had not intended to recall her +frightful experience. He had simply lost sight of her and her part in +the affair in his intellectual effort. When it struck him what he said, +he was horrified at his thoughtlessness and tried to comfort her. “Oh, +Madam Mina,” he said, “dear, dear Madam Mina, alas! that I of all who so +reverence you should have said anything so forgetful. These stupid old +lips of mine and this stupid old head do not deserve so; but you will +forget it, will you not?” He bent low beside her as he spoke; she took +his hand, and looking at him through her tears, said hoarsely:-- + +“No, I shall not forget, for it is well that I remember; and with it I +have so much in memory of you that is sweet, that I take it all +together. Now, you must all be going soon. Breakfast is ready, and we +must all eat that we may be strong.” + +Breakfast was a strange meal to us all. We tried to be cheerful and +encourage each other, and Mina was the brightest and most cheerful of +us. When it was over, Van Helsing stood up and said:-- + +“Now, my dear friends, we go forth to our terrible enterprise. Are we +all armed, as we were on that night when first we visited our enemy’s +lair; armed against ghostly as well as carnal attack?” We all assured +him. “Then it is well. Now, Madam Mina, you are in any case _quite_ safe +here until the sunset; and before then we shall return--if---- We shall +return! But before we go let me see you armed against personal attack. I +have myself, since you came down, prepared your chamber by the placing +of things of which we know, so that He may not enter. Now let me guard +yourself. On your forehead I touch this piece of Sacred Wafer in the +name of the Father, the Son, and----” + +There was a fearful scream which almost froze our hearts to hear. As he +had placed the Wafer on Mina’s forehead, it had seared it--had burned +into the flesh as though it had been a piece of white-hot metal. My poor +darling’s brain had told her the significance of the fact as quickly as +her nerves received the pain of it; and the two so overwhelmed her that +her overwrought nature had its voice in that dreadful scream. But the +words to her thought came quickly; the echo of the scream had not ceased +to ring on the air when there came the reaction, and she sank on her +knees on the floor in an agony of abasement. Pulling her beautiful hair +over her face, as the leper of old his mantle, she wailed out:-- + +“Unclean! Unclean! Even the Almighty shuns my polluted flesh! I must +bear this mark of shame upon my forehead until the Judgment Day.” They +all paused. I had thrown myself beside her in an agony of helpless +grief, and putting my arms around held her tight. For a few minutes our +sorrowful hearts beat together, whilst the friends around us turned away +their eyes that ran tears silently. Then Van Helsing turned and said +gravely; so gravely that I could not help feeling that he was in some +way inspired, and was stating things outside himself:-- + +“It may be that you may have to bear that mark till God himself see fit, +as He most surely shall, on the Judgment Day, to redress all wrongs of +the earth and of His children that He has placed thereon. And oh, Madam +Mina, my dear, my dear, may we who love you be there to see, when that +red scar, the sign of God’s knowledge of what has been, shall pass away, +and leave your forehead as pure as the heart we know. For so surely as +we live, that scar shall pass away when God sees right to lift the +burden that is hard upon us. Till then we bear our Cross, as His Son did +in obedience to His Will. It may be that we are chosen instruments of +His good pleasure, and that we ascend to His bidding as that other +through stripes and shame; through tears and blood; through doubts and +fears, and all that makes the difference between God and man.” + +There was hope in his words, and comfort; and they made for resignation. +Mina and I both felt so, and simultaneously we each took one of the old +man’s hands and bent over and kissed it. Then without a word we all +knelt down together, and, all holding hands, swore to be true to each +other. We men pledged ourselves to raise the veil of sorrow from the +head of her whom, each in his own way, we loved; and we prayed for help +and guidance in the terrible task which lay before us. + +It was then time to start. So I said farewell to Mina, a parting which +neither of us shall forget to our dying day; and we set out. + +To one thing I have made up my mind: if we find out that Mina must be a +vampire in the end, then she shall not go into that unknown and terrible +land alone. I suppose it is thus that in old times one vampire meant +many; just as their hideous bodies could only rest in sacred earth, so +the holiest love was the recruiting sergeant for their ghastly ranks. + +We entered Carfax without trouble and found all things the same as on +the first occasion. It was hard to believe that amongst so prosaic +surroundings of neglect and dust and decay there was any ground for such +fear as already we knew. Had not our minds been made up, and had there +not been terrible memories to spur us on, we could hardly have proceeded +with our task. We found no papers, or any sign of use in the house; and +in the old chapel the great boxes looked just as we had seen them last. +Dr. Van Helsing said to us solemnly as we stood before them:-- + +“And now, my friends, we have a duty here to do. We must sterilise this +earth, so sacred of holy memories, that he has brought from a far +distant land for such fell use. He has chosen this earth because it has +been holy. Thus we defeat him with his own weapon, for we make it more +holy still. It was sanctified to such use of man, now we sanctify it to +God.” As he spoke he took from his bag a screwdriver and a wrench, and +very soon the top of one of the cases was thrown open. The earth smelled +musty and close; but we did not somehow seem to mind, for our attention +was concentrated on the Professor. Taking from his box a piece of the +Sacred Wafer he laid it reverently on the earth, and then shutting down +the lid began to screw it home, we aiding him as he worked. + +One by one we treated in the same way each of the great boxes, and left +them as we had found them to all appearance; but in each was a portion +of the Host. + +When we closed the door behind us, the Professor said solemnly:-- + +“So much is already done. If it may be that with all the others we can +be so successful, then the sunset of this evening may shine on Madam +Mina’s forehead all white as ivory and with no stain!” + +As we passed across the lawn on our way to the station to catch our +train we could see the front of the asylum. I looked eagerly, and in the +window of my own room saw Mina. I waved my hand to her, and nodded to +tell that our work there was successfully accomplished. She nodded in +reply to show that she understood. The last I saw, she was waving her +hand in farewell. It was with a heavy heart that we sought the station +and just caught the train, which was steaming in as we reached the +platform. + +I have written this in the train. + + * * * * * + +_Piccadilly, 12:30 o’clock._--Just before we reached Fenchurch Street +Lord Godalming said to me:-- + +“Quincey and I will find a locksmith. You had better not come with us in +case there should be any difficulty; for under the circumstances it +wouldn’t seem so bad for us to break into an empty house. But you are a +solicitor and the Incorporated Law Society might tell you that you +should have known better.” I demurred as to my not sharing any danger +even of odium, but he went on: “Besides, it will attract less attention +if there are not too many of us. My title will make it all right with +the locksmith, and with any policeman that may come along. You had +better go with Jack and the Professor and stay in the Green Park, +somewhere in sight of the house; and when you see the door opened and +the smith has gone away, do you all come across. We shall be on the +lookout for you, and shall let you in.” + +“The advice is good!” said Van Helsing, so we said no more. Godalming +and Morris hurried off in a cab, we following in another. At the corner +of Arlington Street our contingent got out and strolled into the Green +Park. My heart beat as I saw the house on which so much of our hope was +centred, looming up grim and silent in its deserted condition amongst +its more lively and spruce-looking neighbours. We sat down on a bench +within good view, and began to smoke cigars so as to attract as little +attention as possible. The minutes seemed to pass with leaden feet as we +waited for the coming of the others. + +At length we saw a four-wheeler drive up. Out of it, in leisurely +fashion, got Lord Godalming and Morris; and down from the box descended +a thick-set working man with his rush-woven basket of tools. Morris paid +the cabman, who touched his hat and drove away. Together the two +ascended the steps, and Lord Godalming pointed out what he wanted done. +The workman took off his coat leisurely and hung it on one of the spikes +of the rail, saying something to a policeman who just then sauntered +along. The policeman nodded acquiescence, and the man kneeling down +placed his bag beside him. After searching through it, he took out a +selection of tools which he produced to lay beside him in orderly +fashion. Then he stood up, looked into the keyhole, blew into it, and +turning to his employers, made some remark. Lord Godalming smiled, and +the man lifted a good-sized bunch of keys; selecting one of them, he +began to probe the lock, as if feeling his way with it. After fumbling +about for a bit he tried a second, and then a third. All at once the +door opened under a slight push from him, and he and the two others +entered the hall. We sat still; my own cigar burnt furiously, but Van +Helsing’s went cold altogether. We waited patiently as we saw the +workman come out and bring in his bag. Then he held the door partly +open, steadying it with his knees, whilst he fitted a key to the lock. +This he finally handed to Lord Godalming, who took out his purse and +gave him something. The man touched his hat, took his bag, put on his +coat and departed; not a soul took the slightest notice of the whole +transaction. + +When the man had fairly gone, we three crossed the street and knocked at +the door. It was immediately opened by Quincey Morris, beside whom stood +Lord Godalming lighting a cigar. + +“The place smells so vilely,” said the latter as we came in. It did +indeed smell vilely--like the old chapel at Carfax--and with our +previous experience it was plain to us that the Count had been using the +place pretty freely. We moved to explore the house, all keeping together +in case of attack; for we knew we had a strong and wily enemy to deal +with, and as yet we did not know whether the Count might not be in the +house. In the dining-room, which lay at the back of the hall, we found +eight boxes of earth. Eight boxes only out of the nine, which we sought! +Our work was not over, and would never be until we should have found the +missing box. First we opened the shutters of the window which looked out +across a narrow stone-flagged yard at the blank face of a stable, +pointed to look like the front of a miniature house. There were no +windows in it, so we were not afraid of being over-looked. We did not +lose any time in examining the chests. With the tools which we had +brought with us we opened them, one by one, and treated them as we had +treated those others in the old chapel. It was evident to us that the +Count was not at present in the house, and we proceeded to search for +any of his effects. + +After a cursory glance at the rest of the rooms, from basement to attic, +we came to the conclusion that the dining-room contained any effects +which might belong to the Count; and so we proceeded to minutely examine +them. They lay in a sort of orderly disorder on the great dining-room +table. There were title deeds of the Piccadilly house in a great bundle; +deeds of the purchase of the houses at Mile End and Bermondsey; +note-paper, envelopes, and pens and ink. All were covered up in thin +wrapping paper to keep them from the dust. There were also a clothes +brush, a brush and comb, and a jug and basin--the latter containing +dirty water which was reddened as if with blood. Last of all was a +little heap of keys of all sorts and sizes, probably those belonging to +the other houses. When we had examined this last find, Lord Godalming +and Quincey Morris taking accurate notes of the various addresses of the +houses in the East and the South, took with them the keys in a great +bunch, and set out to destroy the boxes in these places. The rest of us +are, with what patience we can, waiting their return--or the coming of +the Count. + + + + +CHAPTER XXIII + +DR. SEWARD’S DIARY + + +_3 October._--The time seemed terribly long whilst we were waiting for +the coming of Godalming and Quincey Morris. The Professor tried to keep +our minds active by using them all the time. I could see his beneficent +purpose, by the side glances which he threw from time to time at Harker. +The poor fellow is overwhelmed in a misery that is appalling to see. +Last night he was a frank, happy-looking man, with strong, youthful +face, full of energy, and with dark brown hair. To-day he is a drawn, +haggard old man, whose white hair matches well with the hollow burning +eyes and grief-written lines of his face. His energy is still intact; in +fact, he is like a living flame. This may yet be his salvation, for, if +all go well, it will tide him over the despairing period; he will then, +in a kind of way, wake again to the realities of life. Poor fellow, I +thought my own trouble was bad enough, but his----! The Professor knows +this well enough, and is doing his best to keep his mind active. What he +has been saying was, under the circumstances, of absorbing interest. So +well as I can remember, here it is:-- + +“I have studied, over and over again since they came into my hands, all +the papers relating to this monster; and the more I have studied, the +greater seems the necessity to utterly stamp him out. All through there +are signs of his advance; not only of his power, but of his knowledge of +it. As I learned from the researches of my friend Arminus of Buda-Pesth, +he was in life a most wonderful man. Soldier, statesman, and +alchemist--which latter was the highest development of the +science-knowledge of his time. He had a mighty brain, a learning beyond +compare, and a heart that knew no fear and no remorse. He dared even to +attend the Scholomance, and there was no branch of knowledge of his time +that he did not essay. Well, in him the brain powers survived the +physical death; though it would seem that memory was not all complete. +In some faculties of mind he has been, and is, only a child; but he is +growing, and some things that were childish at the first are now of +man’s stature. He is experimenting, and doing it well; and if it had not +been that we have crossed his path he would be yet--he may be yet if we +fail--the father or furtherer of a new order of beings, whose road must +lead through Death, not Life.” + +Harker groaned and said, “And this is all arrayed against my darling! +But how is he experimenting? The knowledge may help us to defeat him!” + +“He has all along, since his coming, been trying his power, slowly but +surely; that big child-brain of his is working. Well for us, it is, as +yet, a child-brain; for had he dared, at the first, to attempt certain +things he would long ago have been beyond our power. However, he means +to succeed, and a man who has centuries before him can afford to wait +and to go slow. _Festina lente_ may well be his motto.” + +“I fail to understand,” said Harker wearily. “Oh, do be more plain to +me! Perhaps grief and trouble are dulling my brain.” + +The Professor laid his hand tenderly on his shoulder as he spoke:-- + +“Ah, my child, I will be plain. Do you not see how, of late, this +monster has been creeping into knowledge experimentally. How he has been +making use of the zoöphagous patient to effect his entry into friend +John’s home; for your Vampire, though in all afterwards he can come when +and how he will, must at the first make entry only when asked thereto by +an inmate. But these are not his most important experiments. Do we not +see how at the first all these so great boxes were moved by others. He +knew not then but that must be so. But all the time that so great +child-brain of his was growing, and he began to consider whether he +might not himself move the box. So he began to help; and then, when he +found that this be all-right, he try to move them all alone. And so he +progress, and he scatter these graves of him; and none but he know where +they are hidden. He may have intend to bury them deep in the ground. So +that he only use them in the night, or at such time as he can change his +form, they do him equal well; and none may know these are his +hiding-place! But, my child, do not despair; this knowledge come to him +just too late! Already all of his lairs but one be sterilise as for him; +and before the sunset this shall be so. Then he have no place where he +can move and hide. I delayed this morning that so we might be sure. Is +there not more at stake for us than for him? Then why we not be even +more careful than him? By my clock it is one hour and already, if all be +well, friend Arthur and Quincey are on their way to us. To-day is our +day, and we must go sure, if slow, and lose no chance. See! there are +five of us when those absent ones return.” + +Whilst he was speaking we were startled by a knock at the hall door, the +double postman’s knock of the telegraph boy. We all moved out to the +hall with one impulse, and Van Helsing, holding up his hand to us to +keep silence, stepped to the door and opened it. The boy handed in a +despatch. The Professor closed the door again, and, after looking at the +direction, opened it and read aloud. + +“Look out for D. He has just now, 12:45, come from Carfax hurriedly and +hastened towards the South. He seems to be going the round and may want +to see you: Mina.” + +There was a pause, broken by Jonathan Harker’s voice:-- + +“Now, God be thanked, we shall soon meet!” Van Helsing turned to him +quickly and said:-- + +“God will act in His own way and time. Do not fear, and do not rejoice +as yet; for what we wish for at the moment may be our undoings.” + +“I care for nothing now,” he answered hotly, “except to wipe out this +brute from the face of creation. I would sell my soul to do it!” + +“Oh, hush, hush, my child!” said Van Helsing. “God does not purchase +souls in this wise; and the Devil, though he may purchase, does not keep +faith. But God is merciful and just, and knows your pain and your +devotion to that dear Madam Mina. Think you, how her pain would be +doubled, did she but hear your wild words. Do not fear any of us, we are +all devoted to this cause, and to-day shall see the end. The time is +coming for action; to-day this Vampire is limit to the powers of man, +and till sunset he may not change. It will take him time to arrive +here--see, it is twenty minutes past one--and there are yet some times +before he can hither come, be he never so quick. What we must hope for +is that my Lord Arthur and Quincey arrive first.” + +About half an hour after we had received Mrs. Harker’s telegram, there +came a quiet, resolute knock at the hall door. It was just an ordinary +knock, such as is given hourly by thousands of gentlemen, but it made +the Professor’s heart and mine beat loudly. We looked at each other, and +together moved out into the hall; we each held ready to use our various +armaments--the spiritual in the left hand, the mortal in the right. Van +Helsing pulled back the latch, and, holding the door half open, stood +back, having both hands ready for action. The gladness of our hearts +must have shown upon our faces when on the step, close to the door, we +saw Lord Godalming and Quincey Morris. They came quickly in and closed +the door behind them, the former saying, as they moved along the +hall:-- + +“It is all right. We found both places; six boxes in each and we +destroyed them all!” + +“Destroyed?” asked the Professor. + +“For him!” We were silent for a minute, and then Quincey said:-- + +“There’s nothing to do but to wait here. If, however, he doesn’t turn up +by five o’clock, we must start off; for it won’t do to leave Mrs. Harker +alone after sunset.” + +“He will be here before long now,” said Van Helsing, who had been +consulting his pocket-book. “_Nota bene_, in Madam’s telegram he went +south from Carfax, that means he went to cross the river, and he could +only do so at slack of tide, which should be something before one +o’clock. That he went south has a meaning for us. He is as yet only +suspicious; and he went from Carfax first to the place where he would +suspect interference least. You must have been at Bermondsey only a +short time before him. That he is not here already shows that he went to +Mile End next. This took him some time; for he would then have to be +carried over the river in some way. Believe me, my friends, we shall not +have long to wait now. We should have ready some plan of attack, so that +we may throw away no chance. Hush, there is no time now. Have all your +arms! Be ready!” He held up a warning hand as he spoke, for we all could +hear a key softly inserted in the lock of the hall door. + +I could not but admire, even at such a moment, the way in which a +dominant spirit asserted itself. In all our hunting parties and +adventures in different parts of the world, Quincey Morris had always +been the one to arrange the plan of action, and Arthur and I had been +accustomed to obey him implicitly. Now, the old habit seemed to be +renewed instinctively. With a swift glance around the room, he at once +laid out our plan of attack, and, without speaking a word, with a +gesture, placed us each in position. Van Helsing, Harker, and I were +just behind the door, so that when it was opened the Professor could +guard it whilst we two stepped between the incomer and the door. +Godalming behind and Quincey in front stood just out of sight ready to +move in front of the window. We waited in a suspense that made the +seconds pass with nightmare slowness. The slow, careful steps came along +the hall; the Count was evidently prepared for some surprise--at least +he feared it. + +Suddenly with a single bound he leaped into the room, winning a way past +us before any of us could raise a hand to stay him. There was something +so panther-like in the movement--something so unhuman, that it seemed +to sober us all from the shock of his coming. The first to act was +Harker, who, with a quick movement, threw himself before the door +leading into the room in the front of the house. As the Count saw us, a +horrible sort of snarl passed over his face, showing the eye-teeth long +and pointed; but the evil smile as quickly passed into a cold stare of +lion-like disdain. His expression again changed as, with a single +impulse, we all advanced upon him. It was a pity that we had not some +better organised plan of attack, for even at the moment I wondered what +we were to do. I did not myself know whether our lethal weapons would +avail us anything. Harker evidently meant to try the matter, for he had +ready his great Kukri knife and made a fierce and sudden cut at him. The +blow was a powerful one; only the diabolical quickness of the Count’s +leap back saved him. A second less and the trenchant blade had shorne +through his heart. As it was, the point just cut the cloth of his coat, +making a wide gap whence a bundle of bank-notes and a stream of gold +fell out. The expression of the Count’s face was so hellish, that for a +moment I feared for Harker, though I saw him throw the terrible knife +aloft again for another stroke. Instinctively I moved forward with a +protective impulse, holding the Crucifix and Wafer in my left hand. I +felt a mighty power fly along my arm; and it was without surprise that I +saw the monster cower back before a similar movement made spontaneously +by each one of us. It would be impossible to describe the expression of +hate and baffled malignity--of anger and hellish rage--which came over +the Count’s face. His waxen hue became greenish-yellow by the contrast +of his burning eyes, and the red scar on the forehead showed on the +pallid skin like a palpitating wound. The next instant, with a sinuous +dive he swept under Harker’s arm, ere his blow could fall, and, grasping +a handful of the money from the floor, dashed across the room, threw +himself at the window. Amid the crash and glitter of the falling glass, +he tumbled into the flagged area below. Through the sound of the +shivering glass I could hear the “ting” of the gold, as some of the +sovereigns fell on the flagging. + +We ran over and saw him spring unhurt from the ground. He, rushing up +the steps, crossed the flagged yard, and pushed open the stable door. +There he turned and spoke to us:-- + +“You think to baffle me, you--with your pale faces all in a row, like +sheep in a butcher’s. You shall be sorry yet, each one of you! You think +you have left me without a place to rest; but I have more. My revenge is +just begun! I spread it over centuries, and time is on my side. Your +girls that you all love are mine already; and through them you and +others shall yet be mine--my creatures, to do my bidding and to be my +jackals when I want to feed. Bah!” With a contemptuous sneer, he passed +quickly through the door, and we heard the rusty bolt creak as he +fastened it behind him. A door beyond opened and shut. The first of us +to speak was the Professor, as, realising the difficulty of following +him through the stable, we moved toward the hall. + +“We have learnt something--much! Notwithstanding his brave words, he +fears us; he fear time, he fear want! For if not, why he hurry so? His +very tone betray him, or my ears deceive. Why take that money? You +follow quick. You are hunters of wild beast, and understand it so. For +me, I make sure that nothing here may be of use to him, if so that he +return.” As he spoke he put the money remaining into his pocket; took +the title-deeds in the bundle as Harker had left them, and swept the +remaining things into the open fireplace, where he set fire to them with +a match. + +Godalming and Morris had rushed out into the yard, and Harker had +lowered himself from the window to follow the Count. He had, however, +bolted the stable door; and by the time they had forced it open there +was no sign of him. Van Helsing and I tried to make inquiry at the back +of the house; but the mews was deserted and no one had seen him depart. + +It was now late in the afternoon, and sunset was not far off. We had to +recognise that our game was up; with heavy hearts we agreed with the +Professor when he said:-- + +“Let us go back to Madam Mina--poor, poor dear Madam Mina. All we can do +just now is done; and we can there, at least, protect her. But we need +not despair. There is but one more earth-box, and we must try to find +it; when that is done all may yet be well.” I could see that he spoke as +bravely as he could to comfort Harker. The poor fellow was quite broken +down; now and again he gave a low groan which he could not suppress--he +was thinking of his wife. + +With sad hearts we came back to my house, where we found Mrs. Harker +waiting us, with an appearance of cheerfulness which did honour to her +bravery and unselfishness. When she saw our faces, her own became as +pale as death: for a second or two her eyes were closed as if she were +in secret prayer; and then she said cheerfully:-- + +“I can never thank you all enough. Oh, my poor darling!” As she spoke, +she took her husband’s grey head in her hands and kissed it--“Lay your +poor head here and rest it. All will yet be well, dear! God will protect +us if He so will it in His good intent.” The poor fellow groaned. There +was no place for words in his sublime misery. + +We had a sort of perfunctory supper together, and I think it cheered us +all up somewhat. It was, perhaps, the mere animal heat of food to hungry +people--for none of us had eaten anything since breakfast--or the sense +of companionship may have helped us; but anyhow we were all less +miserable, and saw the morrow as not altogether without hope. True to +our promise, we told Mrs. Harker everything which had passed; and +although she grew snowy white at times when danger had seemed to +threaten her husband, and red at others when his devotion to her was +manifested, she listened bravely and with calmness. When we came to the +part where Harker had rushed at the Count so recklessly, she clung to +her husband’s arm, and held it tight as though her clinging could +protect him from any harm that might come. She said nothing, however, +till the narration was all done, and matters had been brought right up +to the present time. Then without letting go her husband’s hand she +stood up amongst us and spoke. Oh, that I could give any idea of the +scene; of that sweet, sweet, good, good woman in all the radiant beauty +of her youth and animation, with the red scar on her forehead, of which +she was conscious, and which we saw with grinding of our +teeth--remembering whence and how it came; her loving kindness against +our grim hate; her tender faith against all our fears and doubting; and +we, knowing that so far as symbols went, she with all her goodness and +purity and faith, was outcast from God. + +“Jonathan,” she said, and the word sounded like music on her lips it was +so full of love and tenderness, “Jonathan dear, and you all my true, +true friends, I want you to bear something in mind through all this +dreadful time. I know that you must fight--that you must destroy even as +you destroyed the false Lucy so that the true Lucy might live hereafter; +but it is not a work of hate. That poor soul who has wrought all this +misery is the saddest case of all. Just think what will be his joy when +he, too, is destroyed in his worser part that his better part may have +spiritual immortality. You must be pitiful to him, too, though it may +not hold your hands from his destruction.” + +As she spoke I could see her husband’s face darken and draw together, as +though the passion in him were shrivelling his being to its core. +Instinctively the clasp on his wife’s hand grew closer, till his +knuckles looked white. She did not flinch from the pain which I knew she +must have suffered, but looked at him with eyes that were more appealing +than ever. As she stopped speaking he leaped to his feet, almost tearing +his hand from hers as he spoke:-- + +“May God give him into my hand just for long enough to destroy that +earthly life of him which we are aiming at. If beyond it I could send +his soul for ever and ever to burning hell I would do it!” + +“Oh, hush! oh, hush! in the name of the good God. Don’t say such things, +Jonathan, my husband; or you will crush me with fear and horror. Just +think, my dear--I have been thinking all this long, long day of it--that +... perhaps ... some day ... I, too, may need such pity; and that some +other like you--and with equal cause for anger--may deny it to me! Oh, +my husband! my husband, indeed I would have spared you such a thought +had there been another way; but I pray that God may not have treasured +your wild words, except as the heart-broken wail of a very loving and +sorely stricken man. Oh, God, let these poor white hairs go in evidence +of what he has suffered, who all his life has done no wrong, and on whom +so many sorrows have come.” + +We men were all in tears now. There was no resisting them, and we wept +openly. She wept, too, to see that her sweeter counsels had prevailed. +Her husband flung himself on his knees beside her, and putting his arms +round her, hid his face in the folds of her dress. Van Helsing beckoned +to us and we stole out of the room, leaving the two loving hearts alone +with their God. + +Before they retired the Professor fixed up the room against any coming +of the Vampire, and assured Mrs. Harker that she might rest in peace. +She tried to school herself to the belief, and, manifestly for her +husband’s sake, tried to seem content. It was a brave struggle; and was, +I think and believe, not without its reward. Van Helsing had placed at +hand a bell which either of them was to sound in case of any emergency. +When they had retired, Quincey, Godalming, and I arranged that we should +sit up, dividing the night between us, and watch over the safety of the +poor stricken lady. The first watch falls to Quincey, so the rest of us +shall be off to bed as soon as we can. Godalming has already turned in, +for his is the second watch. Now that my work is done I, too, shall go +to bed. + + +_Jonathan Harker’s Journal._ + +_3-4 October, close to midnight._--I thought yesterday would never end. +There was over me a yearning for sleep, in some sort of blind belief +that to wake would be to find things changed, and that any change must +now be for the better. Before we parted, we discussed what our next step +was to be, but we could arrive at no result. All we knew was that one +earth-box remained, and that the Count alone knew where it was. If he +chooses to lie hidden, he may baffle us for years; and in the +meantime!--the thought is too horrible, I dare not think of it even now. +This I know: that if ever there was a woman who was all perfection, that +one is my poor wronged darling. I love her a thousand times more for her +sweet pity of last night, a pity that made my own hate of the monster +seem despicable. Surely God will not permit the world to be the poorer +by the loss of such a creature. This is hope to me. We are all drifting +reefwards now, and faith is our only anchor. Thank God! Mina is +sleeping, and sleeping without dreams. I fear what her dreams might be +like, with such terrible memories to ground them in. She has not been so +calm, within my seeing, since the sunset. Then, for a while, there came +over her face a repose which was like spring after the blasts of March. +I thought at the time that it was the softness of the red sunset on her +face, but somehow now I think it has a deeper meaning. I am not sleepy +myself, though I am weary--weary to death. However, I must try to sleep; +for there is to-morrow to think of, and there is no rest for me +until.... + + * * * * * + +_Later._--I must have fallen asleep, for I was awaked by Mina, who was +sitting up in bed, with a startled look on her face. I could see easily, +for we did not leave the room in darkness; she had placed a warning hand +over my mouth, and now she whispered in my ear:-- + +“Hush! there is someone in the corridor!” I got up softly, and crossing +the room, gently opened the door. + +Just outside, stretched on a mattress, lay Mr. Morris, wide awake. He +raised a warning hand for silence as he whispered to me:-- + +“Hush! go back to bed; it is all right. One of us will be here all +night. We don’t mean to take any chances!” + +His look and gesture forbade discussion, so I came back and told Mina. +She sighed and positively a shadow of a smile stole over her poor, pale +face as she put her arms round me and said softly:-- + +“Oh, thank God for good brave men!” With a sigh she sank back again to +sleep. I write this now as I am not sleepy, though I must try again. + + * * * * * + +_4 October, morning._--Once again during the night I was wakened by +Mina. This time we had all had a good sleep, for the grey of the coming +dawn was making the windows into sharp oblongs, and the gas flame was +like a speck rather than a disc of light. She said to me hurriedly:-- + +“Go, call the Professor. I want to see him at once.” + +“Why?” I asked. + +“I have an idea. I suppose it must have come in the night, and matured +without my knowing it. He must hypnotise me before the dawn, and then I +shall be able to speak. Go quick, dearest; the time is getting close.” I +went to the door. Dr. Seward was resting on the mattress, and, seeing +me, he sprang to his feet. + +“Is anything wrong?” he asked, in alarm. + +“No,” I replied; “but Mina wants to see Dr. Van Helsing at once.” + +“I will go,” he said, and hurried into the Professor’s room. + +In two or three minutes later Van Helsing was in the room in his +dressing-gown, and Mr. Morris and Lord Godalming were with Dr. Seward at +the door asking questions. When the Professor saw Mina smile--a +positive smile ousted the anxiety of his face; he rubbed his hands as he +said:-- + +“Oh, my dear Madam Mina, this is indeed a change. See! friend Jonathan, +we have got our dear Madam Mina, as of old, back to us to-day!” Then +turning to her, he said, cheerfully: “And what am I do for you? For at +this hour you do not want me for nothings.” + +“I want you to hypnotise me!” she said. “Do it before the dawn, for I +feel that then I can speak, and speak freely. Be quick, for the time is +short!” Without a word he motioned her to sit up in bed. + +Looking fixedly at her, he commenced to make passes in front of her, +from over the top of her head downward, with each hand in turn. Mina +gazed at him fixedly for a few minutes, during which my own heart beat +like a trip hammer, for I felt that some crisis was at hand. Gradually +her eyes closed, and she sat, stock still; only by the gentle heaving of +her bosom could one know that she was alive. The Professor made a few +more passes and then stopped, and I could see that his forehead was +covered with great beads of perspiration. Mina opened her eyes; but she +did not seem the same woman. There was a far-away look in her eyes, and +her voice had a sad dreaminess which was new to me. Raising his hand to +impose silence, the Professor motioned to me to bring the others in. +They came on tip-toe, closing the door behind them, and stood at the +foot of the bed, looking on. Mina appeared not to see them. The +stillness was broken by Van Helsing’s voice speaking in a low level tone +which would not break the current of her thoughts:-- + +“Where are you?” The answer came in a neutral way:-- + +“I do not know. Sleep has no place it can call its own.” For several +minutes there was silence. Mina sat rigid, and the Professor stood +staring at her fixedly; the rest of us hardly dared to breathe. The room +was growing lighter; without taking his eyes from Mina’s face, Dr. Van +Helsing motioned me to pull up the blind. I did so, and the day seemed +just upon us. A red streak shot up, and a rosy light seemed to diffuse +itself through the room. On the instant the Professor spoke again:-- + +“Where are you now?” The answer came dreamily, but with intention; it +were as though she were interpreting something. I have heard her use the +same tone when reading her shorthand notes. + +“I do not know. It is all strange to me!” + +“What do you see?” + +“I can see nothing; it is all dark.” + +“What do you hear?” I could detect the strain in the Professor’s patient +voice. + +“The lapping of water. It is gurgling by, and little waves leap. I can +hear them on the outside.” + +“Then you are on a ship?” We all looked at each other, trying to glean +something each from the other. We were afraid to think. The answer came +quick:-- + +“Oh, yes!” + +“What else do you hear?” + +“The sound of men stamping overhead as they run about. There is the +creaking of a chain, and the loud tinkle as the check of the capstan +falls into the rachet.” + +“What are you doing?” + +“I am still--oh, so still. It is like death!” The voice faded away into +a deep breath as of one sleeping, and the open eyes closed again. + +By this time the sun had risen, and we were all in the full light of +day. Dr. Van Helsing placed his hands on Mina’s shoulders, and laid her +head down softly on her pillow. She lay like a sleeping child for a few +moments, and then, with a long sigh, awoke and stared in wonder to see +us all around her. “Have I been talking in my sleep?” was all she said. +She seemed, however, to know the situation without telling, though she +was eager to know what she had told. The Professor repeated the +conversation, and she said:-- + +“Then there is not a moment to lose: it may not be yet too late!” Mr. +Morris and Lord Godalming started for the door but the Professor’s calm +voice called them back:-- + +“Stay, my friends. That ship, wherever it was, was weighing anchor +whilst she spoke. There are many ships weighing anchor at the moment in +your so great Port of London. Which of them is it that you seek? God be +thanked that we have once again a clue, though whither it may lead us we +know not. We have been blind somewhat; blind after the manner of men, +since when we can look back we see what we might have seen looking +forward if we had been able to see what we might have seen! Alas, but +that sentence is a puddle; is it not? We can know now what was in the +Count’s mind, when he seize that money, though Jonathan’s so fierce +knife put him in the danger that even he dread. He meant escape. Hear +me, ESCAPE! He saw that with but one earth-box left, and a pack of men +following like dogs after a fox, this London was no place for him. He +have take his last earth-box on board a ship, and he leave the land. He +think to escape, but no! we follow him. Tally Ho! as friend Arthur would +say when he put on his red frock! Our old fox is wily; oh! so wily, and +we must follow with wile. I, too, am wily and I think his mind in a +little while. In meantime we may rest and in peace, for there are waters +between us which he do not want to pass, and which he could not if he +would--unless the ship were to touch the land, and then only at full or +slack tide. See, and the sun is just rose, and all day to sunset is to +us. Let us take bath, and dress, and have breakfast which we all need, +and which we can eat comfortably since he be not in the same land with +us.” Mina looked at him appealingly as she asked:-- + +“But why need we seek him further, when he is gone away from us?” He +took her hand and patted it as he replied:-- + +“Ask me nothings as yet. When we have breakfast, then I answer all +questions.” He would say no more, and we separated to dress. + +After breakfast Mina repeated her question. He looked at her gravely for +a minute and then said sorrowfully:-- + +“Because my dear, dear Madam Mina, now more than ever must we find him +even if we have to follow him to the jaws of Hell!” She grew paler as +she asked faintly:-- + +“Why?” + +“Because,” he answered solemnly, “he can live for centuries, and you are +but mortal woman. Time is now to be dreaded--since once he put that mark +upon your throat.” + +I was just in time to catch her as she fell forward in a faint. + + + + +CHAPTER XXIV + +DR. SEWARD’S PHONOGRAPH DIARY, SPOKEN BY VAN HELSING + + +This to Jonathan Harker. + +You are to stay with your dear Madam Mina. We shall go to make our +search--if I can call it so, for it is not search but knowing, and we +seek confirmation only. But do you stay and take care of her to-day. +This is your best and most holiest office. This day nothing can find him +here. Let me tell you that so you will know what we four know already, +for I have tell them. He, our enemy, have gone away; he have gone back +to his Castle in Transylvania. I know it so well, as if a great hand of +fire wrote it on the wall. He have prepare for this in some way, and +that last earth-box was ready to ship somewheres. For this he took the +money; for this he hurry at the last, lest we catch him before the sun +go down. It was his last hope, save that he might hide in the tomb that +he think poor Miss Lucy, being as he thought like him, keep open to him. +But there was not of time. When that fail he make straight for his last +resource--his last earth-work I might say did I wish _double entente_. +He is clever, oh, so clever! he know that his game here was finish; and +so he decide he go back home. He find ship going by the route he came, +and he go in it. We go off now to find what ship, and whither bound; +when we have discover that, we come back and tell you all. Then we will +comfort you and poor dear Madam Mina with new hope. For it will be hope +when you think it over: that all is not lost. This very creature that we +pursue, he take hundreds of years to get so far as London; and yet in +one day, when we know of the disposal of him we drive him out. He is +finite, though he is powerful to do much harm and suffers not as we do. +But we are strong, each in our purpose; and we are all more strong +together. Take heart afresh, dear husband of Madam Mina. This battle is +but begun, and in the end we shall win--so sure as that God sits on high +to watch over His children. Therefore be of much comfort till we return. + +VAN HELSING. + + +_Jonathan Harker’s Journal._ + +_4 October._--When I read to Mina, Van Helsing’s message in the +phonograph, the poor girl brightened up considerably. Already the +certainty that the Count is out of the country has given her comfort; +and comfort is strength to her. For my own part, now that his horrible +danger is not face to face with us, it seems almost impossible to +believe in it. Even my own terrible experiences in Castle Dracula seem +like a long-forgotten dream. Here in the crisp autumn air in the bright +sunlight---- + +Alas! how can I disbelieve! In the midst of my thought my eye fell on +the red scar on my poor darling’s white forehead. Whilst that lasts, +there can be no disbelief. And afterwards the very memory of it will +keep faith crystal clear. Mina and I fear to be idle, so we have been +over all the diaries again and again. Somehow, although the reality +seems greater each time, the pain and the fear seem less. There is +something of a guiding purpose manifest throughout, which is comforting. +Mina says that perhaps we are the instruments of ultimate good. It may +be! I shall try to think as she does. We have never spoken to each other +yet of the future. It is better to wait till we see the Professor and +the others after their investigations. + +The day is running by more quickly than I ever thought a day could run +for me again. It is now three o’clock. + + +_Mina Harker’s Journal._ + +_5 October, 5 p. m._--Our meeting for report. Present: Professor Van +Helsing, Lord Godalming, Dr. Seward, Mr. Quincey Morris, Jonathan +Harker, Mina Harker. + +Dr. Van Helsing described what steps were taken during the day to +discover on what boat and whither bound Count Dracula made his escape:-- + +“As I knew that he wanted to get back to Transylvania, I felt sure that +he must go by the Danube mouth; or by somewhere in the Black Sea, since +by that way he come. It was a dreary blank that was before us. _Omne +ignotum pro magnifico_; and so with heavy hearts we start to find what +ships leave for the Black Sea last night. He was in sailing ship, since +Madam Mina tell of sails being set. These not so important as to go in +your list of the shipping in the _Times_, and so we go, by suggestion of +Lord Godalming, to your Lloyd’s, where are note of all ships that sail, +however so small. There we find that only one Black-Sea-bound ship go +out with the tide. She is the _Czarina Catherine_, and she sail from +Doolittle’s Wharf for Varna, and thence on to other parts and up the +Danube. ‘Soh!’ said I, ‘this is the ship whereon is the Count.’ So off +we go to Doolittle’s Wharf, and there we find a man in an office of wood +so small that the man look bigger than the office. From him we inquire +of the goings of the _Czarina Catherine_. He swear much, and he red face +and loud of voice, but he good fellow all the same; and when Quincey +give him something from his pocket which crackle as he roll it up, and +put it in a so small bag which he have hid deep in his clothing, he +still better fellow and humble servant to us. He come with us, and ask +many men who are rough and hot; these be better fellows too when they +have been no more thirsty. They say much of blood and bloom, and of +others which I comprehend not, though I guess what they mean; but +nevertheless they tell us all things which we want to know. + +“They make known to us among them, how last afternoon at about five +o’clock comes a man so hurry. A tall man, thin and pale, with high nose +and teeth so white, and eyes that seem to be burning. That he be all in +black, except that he have a hat of straw which suit not him or the +time. That he scatter his money in making quick inquiry as to what ship +sails for the Black Sea and for where. Some took him to the office and +then to the ship, where he will not go aboard but halt at shore end of +gang-plank, and ask that the captain come to him. The captain come, when +told that he will be pay well; and though he swear much at the first he +agree to term. Then the thin man go and some one tell him where horse +and cart can be hired. He go there and soon he come again, himself +driving cart on which a great box; this he himself lift down, though it +take several to put it on truck for the ship. He give much talk to +captain as to how and where his box is to be place; but the captain like +it not and swear at him in many tongues, and tell him that if he like he +can come and see where it shall be. But he say ‘no’; that he come not +yet, for that he have much to do. Whereupon the captain tell him that he +had better be quick--with blood--for that his ship will leave the +place--of blood--before the turn of the tide--with blood. Then the thin +man smile and say that of course he must go when he think fit; but he +will be surprise if he go quite so soon. The captain swear again, +polyglot, and the thin man make him bow, and thank him, and say that he +will so far intrude on his kindness as to come aboard before the +sailing. Final the captain, more red than ever, and in more tongues tell +him that he doesn’t want no Frenchmen--with bloom upon them and also +with blood--in his ship--with blood on her also. And so, after asking +where there might be close at hand a ship where he might purchase ship +forms, he departed. + +“No one knew where he went ‘or bloomin’ well cared,’ as they said, for +they had something else to think of--well with blood again; for it soon +became apparent to all that the _Czarina Catherine_ would not sail as +was expected. A thin mist began to creep up from the river, and it grew, +and grew; till soon a dense fog enveloped the ship and all around her. +The captain swore polyglot--very polyglot--polyglot with bloom and +blood; but he could do nothing. The water rose and rose; and he began to +fear that he would lose the tide altogether. He was in no friendly mood, +when just at full tide, the thin man came up the gang-plank again and +asked to see where his box had been stowed. Then the captain replied +that he wished that he and his box--old and with much bloom and +blood--were in hell. But the thin man did not be offend, and went down +with the mate and saw where it was place, and came up and stood awhile +on deck in fog. He must have come off by himself, for none notice him. +Indeed they thought not of him; for soon the fog begin to melt away, and +all was clear again. My friends of the thirst and the language that was +of bloom and blood laughed, as they told how the captain’s swears +exceeded even his usual polyglot, and was more than ever full of +picturesque, when on questioning other mariners who were on movement up +and down on the river that hour, he found that few of them had seen any +of fog at all, except where it lay round the wharf. However, the ship +went out on the ebb tide; and was doubtless by morning far down the +river mouth. She was by then, when they told us, well out to sea. + +“And so, my dear Madam Mina, it is that we have to rest for a time, for +our enemy is on the sea, with the fog at his command, on his way to the +Danube mouth. To sail a ship takes time, go she never so quick; and when +we start we go on land more quick, and we meet him there. Our best hope +is to come on him when in the box between sunrise and sunset; for then +he can make no struggle, and we may deal with him as we should. There +are days for us, in which we can make ready our plan. We know all about +where he go; for we have seen the owner of the ship, who have shown us +invoices and all papers that can be. The box we seek is to be landed in +Varna, and to be given to an agent, one Ristics who will there present +his credentials; and so our merchant friend will have done his part. +When he ask if there be any wrong, for that so, he can telegraph and +have inquiry made at Varna, we say ‘no’; for what is to be done is not +for police or of the customs. It must be done by us alone and in our own +way.” + +When Dr. Van Helsing had done speaking, I asked him if he were certain +that the Count had remained on board the ship. He replied: “We have the +best proof of that: your own evidence, when in the hypnotic trance this +morning.” I asked him again if it were really necessary that they should +pursue the Count, for oh! I dread Jonathan leaving me, and I know that +he would surely go if the others went. He answered in growing passion, +at first quietly. As he went on, however, he grew more angry and more +forceful, till in the end we could not but see wherein was at least some +of that personal dominance which made him so long a master amongst +men:-- + +“Yes, it is necessary--necessary--necessary! For your sake in the first, +and then for the sake of humanity. This monster has done much harm +already, in the narrow scope where he find himself, and in the short +time when as yet he was only as a body groping his so small measure in +darkness and not knowing. All this have I told these others; you, my +dear Madam Mina, will learn it in the phonograph of my friend John, or +in that of your husband. I have told them how the measure of leaving his +own barren land--barren of peoples--and coming to a new land where life +of man teems till they are like the multitude of standing corn, was the +work of centuries. Were another of the Un-Dead, like him, to try to do +what he has done, perhaps not all the centuries of the world that have +been, or that will be, could aid him. With this one, all the forces of +nature that are occult and deep and strong must have worked together in +some wondrous way. The very place, where he have been alive, Un-Dead for +all these centuries, is full of strangeness of the geologic and chemical +world. There are deep caverns and fissures that reach none know whither. +There have been volcanoes, some of whose openings still send out waters +of strange properties, and gases that kill or make to vivify. Doubtless, +there is something magnetic or electric in some of these combinations of +occult forces which work for physical life in strange way; and in +himself were from the first some great qualities. In a hard and warlike +time he was celebrate that he have more iron nerve, more subtle brain, +more braver heart, than any man. In him some vital principle have in +strange way found their utmost; and as his body keep strong and grow and +thrive, so his brain grow too. All this without that diabolic aid which +is surely to him; for it have to yield to the powers that come from, +and are, symbolic of good. And now this is what he is to us. He have +infect you--oh, forgive me, my dear, that I must say such; but it is for +good of you that I speak. He infect you in such wise, that even if he do +no more, you have only to live--to live in your own old, sweet way; and +so in time, death, which is of man’s common lot and with God’s sanction, +shall make you like to him. This must not be! We have sworn together +that it must not. Thus are we ministers of God’s own wish: that the +world, and men for whom His Son die, will not be given over to monsters, +whose very existence would defame Him. He have allowed us to redeem one +soul already, and we go out as the old knights of the Cross to redeem +more. Like them we shall travel towards the sunrise; and like them, if +we fall, we fall in good cause.” He paused and I said:-- + +“But will not the Count take his rebuff wisely? Since he has been driven +from England, will he not avoid it, as a tiger does the village from +which he has been hunted?” + +“Aha!” he said, “your simile of the tiger good, for me, and I shall +adopt him. Your man-eater, as they of India call the tiger who has once +tasted blood of the human, care no more for the other prey, but prowl +unceasing till he get him. This that we hunt from our village is a +tiger, too, a man-eater, and he never cease to prowl. Nay, in himself he +is not one to retire and stay afar. In his life, his living life, he go +over the Turkey frontier and attack his enemy on his own ground; he be +beaten back, but did he stay? No! He come again, and again, and again. +Look at his persistence and endurance. With the child-brain that was to +him he have long since conceive the idea of coming to a great city. What +does he do? He find out the place of all the world most of promise for +him. Then he deliberately set himself down to prepare for the task. He +find in patience just how is his strength, and what are his powers. He +study new tongues. He learn new social life; new environment of old +ways, the politic, the law, the finance, the science, the habit of a new +land and a new people who have come to be since he was. His glimpse that +he have had, whet his appetite only and enkeen his desire. Nay, it help +him to grow as to his brain; for it all prove to him how right he was at +the first in his surmises. He have done this alone; all alone! from a +ruin tomb in a forgotten land. What more may he not do when the greater +world of thought is open to him. He that can smile at death, as we know +him; who can flourish in the midst of diseases that kill off whole +peoples. Oh, if such an one was to come from God, and not the Devil, +what a force for good might he not be in this old world of ours. But we +are pledged to set the world free. Our toil must be in silence, and our +efforts all in secret; for in this enlightened age, when men believe not +even what they see, the doubting of wise men would be his greatest +strength. It would be at once his sheath and his armour, and his weapons +to destroy us, his enemies, who are willing to peril even our own souls +for the safety of one we love--for the good of mankind, and for the +honour and glory of God.” + +After a general discussion it was determined that for to-night nothing +be definitely settled; that we should all sleep on the facts, and try to +think out the proper conclusions. To-morrow, at breakfast, we are to +meet again, and, after making our conclusions known to one another, we +shall decide on some definite cause of action. + + * * * * * + +I feel a wonderful peace and rest to-night. It is as if some haunting +presence were removed from me. Perhaps ... + +My surmise was not finished, could not be; for I caught sight in the +mirror of the red mark upon my forehead; and I knew that I was still +unclean. + + +_Dr. Seward’s Diary._ + +_5 October._--We all rose early, and I think that sleep did much for +each and all of us. When we met at early breakfast there was more +general cheerfulness than any of us had ever expected to experience +again. + +It is really wonderful how much resilience there is in human nature. Let +any obstructing cause, no matter what, be removed in any way--even by +death--and we fly back to first principles of hope and enjoyment. More +than once as we sat around the table, my eyes opened in wonder whether +the whole of the past days had not been a dream. It was only when I +caught sight of the red blotch on Mrs. Harker’s forehead that I was +brought back to reality. Even now, when I am gravely revolving the +matter, it is almost impossible to realise that the cause of all our +trouble is still existent. Even Mrs. Harker seems to lose sight of her +trouble for whole spells; it is only now and again, when something +recalls it to her mind, that she thinks of her terrible scar. We are to +meet here in my study in half an hour and decide on our course of +action. I see only one immediate difficulty, I know it by instinct +rather than reason: we shall all have to speak frankly; and yet I fear +that in some mysterious way poor Mrs. Harker’s tongue is tied. I _know_ +that she forms conclusions of her own, and from all that has been I can +guess how brilliant and how true they must be; but she will not, or +cannot, give them utterance. I have mentioned this to Van Helsing, and +he and I are to talk it over when we are alone. I suppose it is some of +that horrid poison which has got into her veins beginning to work. The +Count had his own purposes when he gave her what Van Helsing called “the +Vampire’s baptism of blood.” Well, there may be a poison that distils +itself out of good things; in an age when the existence of ptomaines is +a mystery we should not wonder at anything! One thing I know: that if my +instinct be true regarding poor Mrs. Harker’s silences, then there is a +terrible difficulty--an unknown danger--in the work before us. The same +power that compels her silence may compel her speech. I dare not think +further; for so I should in my thoughts dishonour a noble woman! + +Van Helsing is coming to my study a little before the others. I shall +try to open the subject with him. + + * * * * * + +_Later._--When the Professor came in, we talked over the state of +things. I could see that he had something on his mind which he wanted to +say, but felt some hesitancy about broaching the subject. After beating +about the bush a little, he said suddenly:-- + +“Friend John, there is something that you and I must talk of alone, just +at the first at any rate. Later, we may have to take the others into our +confidence”; then he stopped, so I waited; he went on:-- + +“Madam Mina, our poor, dear Madam Mina is changing.” A cold shiver ran +through me to find my worst fears thus endorsed. Van Helsing +continued:-- + +“With the sad experience of Miss Lucy, we must this time be warned +before things go too far. Our task is now in reality more difficult than +ever, and this new trouble makes every hour of the direst importance. I +can see the characteristics of the vampire coming in her face. It is now +but very, very slight; but it is to be seen if we have eyes to notice +without to prejudge. Her teeth are some sharper, and at times her eyes +are more hard. But these are not all, there is to her the silence now +often; as so it was with Miss Lucy. She did not speak, even when she +wrote that which she wished to be known later. Now my fear is this. If +it be that she can, by our hypnotic trance, tell what the Count see and +hear, is it not more true that he who have hypnotise her first, and who +have drink of her very blood and make her drink of his, should, if he +will, compel her mind to disclose to him that which she know?” I nodded +acquiescence; he went on:-- + +“Then, what we must do is to prevent this; we must keep her ignorant of +our intent, and so she cannot tell what she know not. This is a painful +task! Oh, so painful that it heart-break me to think of; but it must be. +When to-day we meet, I must tell her that for reason which we will not +to speak she must not more be of our council, but be simply guarded by +us.” He wiped his forehead, which had broken out in profuse perspiration +at the thought of the pain which he might have to inflict upon the poor +soul already so tortured. I knew that it would be some sort of comfort +to him if I told him that I also had come to the same conclusion; for at +any rate it would take away the pain of doubt. I told him, and the +effect was as I expected. + +It is now close to the time of our general gathering. Van Helsing has +gone away to prepare for the meeting, and his painful part of it. I +really believe his purpose is to be able to pray alone. + + * * * * * + +_Later._--At the very outset of our meeting a great personal relief was +experienced by both Van Helsing and myself. Mrs. Harker had sent a +message by her husband to say that she would not join us at present, as +she thought it better that we should be free to discuss our movements +without her presence to embarrass us. The Professor and I looked at each +other for an instant, and somehow we both seemed relieved. For my own +part, I thought that if Mrs. Harker realised the danger herself, it was +much pain as well as much danger averted. Under the circumstances we +agreed, by a questioning look and answer, with finger on lip, to +preserve silence in our suspicions, until we should have been able to +confer alone again. We went at once into our Plan of Campaign. Van +Helsing roughly put the facts before us first:-- + +“The _Czarina Catherine_ left the Thames yesterday morning. It will take +her at the quickest speed she has ever made at least three weeks to +reach Varna; but we can travel overland to the same place in three days. +Now, if we allow for two days less for the ship’s voyage, owing to such +weather influences as we know that the Count can bring to bear; and if +we allow a whole day and night for any delays which may occur to us, +then we have a margin of nearly two weeks. Thus, in order to be quite +safe, we must leave here on 17th at latest. Then we shall at any rate +be in Varna a day before the ship arrives, and able to make such +preparations as may be necessary. Of course we shall all go armed--armed +against evil things, spiritual as well as physical.” Here Quincey Morris +added:-- + +“I understand that the Count comes from a wolf country, and it may be +that he shall get there before us. I propose that we add Winchesters to +our armament. I have a kind of belief in a Winchester when there is any +trouble of that sort around. Do you remember, Art, when we had the pack +after us at Tobolsk? What wouldn’t we have given then for a repeater +apiece!” + +“Good!” said Van Helsing, “Winchesters it shall be. Quincey’s head is +level at all times, but most so when there is to hunt, metaphor be more +dishonour to science than wolves be of danger to man. In the meantime we +can do nothing here; and as I think that Varna is not familiar to any of +us, why not go there more soon? It is as long to wait here as there. +To-night and to-morrow we can get ready, and then, if all be well, we +four can set out on our journey.” + +“We four?” said Harker interrogatively, looking from one to another of +us. + +“Of course!” answered the Professor quickly, “you must remain to take +care of your so sweet wife!” Harker was silent for awhile and then said +in a hollow voice:-- + +“Let us talk of that part of it in the morning. I want to consult with +Mina.” I thought that now was the time for Van Helsing to warn him not +to disclose our plans to her; but he took no notice. I looked at him +significantly and coughed. For answer he put his finger on his lips and +turned away. + + +_Jonathan Harker’s Journal._ + +_5 October, afternoon._--For some time after our meeting this morning I +could not think. The new phases of things leave my mind in a state of +wonder which allows no room for active thought. Mina’s determination not +to take any part in the discussion set me thinking; and as I could not +argue the matter with her, I could only guess. I am as far as ever from +a solution now. The way the others received it, too, puzzled me; the +last time we talked of the subject we agreed that there was to be no +more concealment of anything amongst us. Mina is sleeping now, calmly +and sweetly like a little child. Her lips are curved and her face beams +with happiness. Thank God, there are such moments still for her. + + * * * * * + +_Later._--How strange it all is. I sat watching Mina’s happy sleep, and +came as near to being happy myself as I suppose I shall ever be. As the +evening drew on, and the earth took its shadows from the sun sinking +lower, the silence of the room grew more and more solemn to me. All at +once Mina opened her eyes, and looking at me tenderly, said:-- + +“Jonathan, I want you to promise me something on your word of honour. A +promise made to me, but made holily in God’s hearing, and not to be +broken though I should go down on my knees and implore you with bitter +tears. Quick, you must make it to me at once.” + +“Mina,” I said, “a promise like that, I cannot make at once. I may have +no right to make it.” + +“But, dear one,” she said, with such spiritual intensity that her eyes +were like pole stars, “it is I who wish it; and it is not for myself. +You can ask Dr. Van Helsing if I am not right; if he disagrees you may +do as you will. Nay, more, if you all agree, later, you are absolved +from the promise.” + +“I promise!” I said, and for a moment she looked supremely happy; though +to me all happiness for her was denied by the red scar on her forehead. +She said:-- + +“Promise me that you will not tell me anything of the plans formed for +the campaign against the Count. Not by word, or inference, or +implication; not at any time whilst this remains to me!” and she +solemnly pointed to the scar. I saw that she was in earnest, and said +solemnly:-- + +“I promise!” and as I said it I felt that from that instant a door had +been shut between us. + + * * * * * + +_Later, midnight._--Mina has been bright and cheerful all the evening. +So much so that all the rest seemed to take courage, as if infected +somewhat with her gaiety; as a result even I myself felt as if the pall +of gloom which weighs us down were somewhat lifted. We all retired +early. Mina is now sleeping like a little child; it is a wonderful thing +that her faculty of sleep remains to her in the midst of her terrible +trouble. Thank God for it, for then at least she can forget her care. +Perhaps her example may affect me as her gaiety did to-night. I shall +try it. Oh! for a dreamless sleep. + + * * * * * + +_6 October, morning._--Another surprise. Mina woke me early, about the +same time as yesterday, and asked me to bring Dr. Van Helsing. I thought +that it was another occasion for hypnotism, and without question went +for the Professor. He had evidently expected some such call, for I found +him dressed in his room. His door was ajar, so that he could hear the +opening of the door of our room. He came at once; as he passed into the +room, he asked Mina if the others might come, too. + +“No,” she said quite simply, “it will not be necessary. You can tell +them just as well. I must go with you on your journey.” + +Dr. Van Helsing was as startled as I was. After a moment’s pause he +asked:-- + +“But why?” + +“You must take me with you. I am safer with you, and you shall be safer, +too.” + +“But why, dear Madam Mina? You know that your safety is our solemnest +duty. We go into danger, to which you are, or may be, more liable than +any of us from--from circumstances--things that have been.” He paused, +embarrassed. + +As she replied, she raised her finger and pointed to her forehead:-- + +“I know. That is why I must go. I can tell you now, whilst the sun is +coming up; I may not be able again. I know that when the Count wills me +I must go. I know that if he tells me to come in secret, I must come by +wile; by any device to hoodwink--even Jonathan.” God saw the look that +she turned on me as she spoke, and if there be indeed a Recording Angel +that look is noted to her everlasting honour. I could only clasp her +hand. I could not speak; my emotion was too great for even the relief of +tears. She went on:-- + +“You men are brave and strong. You are strong in your numbers, for you +can defy that which would break down the human endurance of one who had +to guard alone. Besides, I may be of service, since you can hypnotise me +and so learn that which even I myself do not know.” Dr. Van Helsing said +very gravely:-- + +“Madam Mina, you are, as always, most wise. You shall with us come; and +together we shall do that which we go forth to achieve.” When he had +spoken, Mina’s long spell of silence made me look at her. She had fallen +back on her pillow asleep; she did not even wake when I had pulled up +the blind and let in the sunlight which flooded the room. Van Helsing +motioned to me to come with him quietly. We went to his room, and within +a minute Lord Godalming, Dr. Seward, and Mr. Morris were with us also. +He told them what Mina had said, and went on:-- + +“In the morning we shall leave for Varna. We have now to deal with a +new factor: Madam Mina. Oh, but her soul is true. It is to her an agony +to tell us so much as she has done; but it is most right, and we are +warned in time. There must be no chance lost, and in Varna we must be +ready to act the instant when that ship arrives.” + +“What shall we do exactly?” asked Mr. Morris laconically. The Professor +paused before replying:-- + +“We shall at the first board that ship; then, when we have identified +the box, we shall place a branch of the wild rose on it. This we shall +fasten, for when it is there none can emerge; so at least says the +superstition. And to superstition must we trust at the first; it was +man’s faith in the early, and it have its root in faith still. Then, +when we get the opportunity that we seek, when none are near to see, we +shall open the box, and--and all will be well.” + +“I shall not wait for any opportunity,” said Morris. “When I see the box +I shall open it and destroy the monster, though there were a thousand +men looking on, and if I am to be wiped out for it the next moment!” I +grasped his hand instinctively and found it as firm as a piece of steel. +I think he understood my look; I hope he did. + +“Good boy,” said Dr. Van Helsing. “Brave boy. Quincey is all man. God +bless him for it. My child, believe me none of us shall lag behind or +pause from any fear. I do but say what we may do--what we must do. But, +indeed, indeed we cannot say what we shall do. There are so many things +which may happen, and their ways and their ends are so various that +until the moment we may not say. We shall all be armed, in all ways; and +when the time for the end has come, our effort shall not be lack. Now +let us to-day put all our affairs in order. Let all things which touch +on others dear to us, and who on us depend, be complete; for none of us +can tell what, or when, or how, the end may be. As for me, my own +affairs are regulate; and as I have nothing else to do, I shall go make +arrangements for the travel. I shall have all tickets and so forth for +our journey.” + +There was nothing further to be said, and we parted. I shall now settle +up all my affairs of earth, and be ready for whatever may come.... + + * * * * * + +_Later._--It is all done; my will is made, and all complete. Mina if she +survive is my sole heir. If it should not be so, then the others who +have been so good to us shall have remainder. + +It is now drawing towards the sunset; Mina’s uneasiness calls my +attention to it. I am sure that there is something on her mind which the +time of exact sunset will reveal. These occasions are becoming harrowing +times for us all, for each sunrise and sunset opens up some new +danger--some new pain, which, however, may in God’s will be means to a +good end. I write all these things in the diary since my darling must +not hear them now; but if it may be that she can see them again, they +shall be ready. + +She is calling to me. + + + + +CHAPTER XXV + +DR. SEWARD’S DIARY + + +_11 October, Evening._--Jonathan Harker has asked me to note this, as he +says he is hardly equal to the task, and he wants an exact record kept. + +I think that none of us were surprised when we were asked to see Mrs. +Harker a little before the time of sunset. We have of late come to +understand that sunrise and sunset are to her times of peculiar freedom; +when her old self can be manifest without any controlling force subduing +or restraining her, or inciting her to action. This mood or condition +begins some half hour or more before actual sunrise or sunset, and lasts +till either the sun is high, or whilst the clouds are still aglow with +the rays streaming above the horizon. At first there is a sort of +negative condition, as if some tie were loosened, and then the absolute +freedom quickly follows; when, however, the freedom ceases the +change-back or relapse comes quickly, preceded only by a spell of +warning silence. + +To-night, when we met, she was somewhat constrained, and bore all the +signs of an internal struggle. I put it down myself to her making a +violent effort at the earliest instant she could do so. A very few +minutes, however, gave her complete control of herself; then, motioning +her husband to sit beside her on the sofa where she was half reclining, +she made the rest of us bring chairs up close. Taking her husband’s hand +in hers began:-- + +“We are all here together in freedom, for perhaps the last time! I know, +dear; I know that you will always be with me to the end.” This was to +her husband whose hand had, as we could see, tightened upon hers. “In +the morning we go out upon our task, and God alone knows what may be in +store for any of us. You are going to be so good to me as to take me +with you. I know that all that brave earnest men can do for a poor weak +woman, whose soul perhaps is lost--no, no, not yet, but is at any rate +at stake--you will do. But you must remember that I am not as you are. +There is a poison in my blood, in my soul, which may destroy me; which +must destroy me, unless some relief comes to us. Oh, my friends, you +know as well as I do, that my soul is at stake; and though I know there +is one way out for me, you must not and I must not take it!” She looked +appealingly to us all in turn, beginning and ending with her husband. + +“What is that way?” asked Van Helsing in a hoarse voice. “What is that +way, which we must not--may not--take?” + +“That I may die now, either by my own hand or that of another, before +the greater evil is entirely wrought. I know, and you know, that were I +once dead you could and would set free my immortal spirit, even as you +did my poor Lucy’s. Were death, or the fear of death, the only thing +that stood in the way I would not shrink to die here, now, amidst the +friends who love me. But death is not all. I cannot believe that to die +in such a case, when there is hope before us and a bitter task to be +done, is God’s will. Therefore, I, on my part, give up here the +certainty of eternal rest, and go out into the dark where may be the +blackest things that the world or the nether world holds!” We were all +silent, for we knew instinctively that this was only a prelude. The +faces of the others were set and Harker’s grew ashen grey; perhaps he +guessed better than any of us what was coming. She continued:-- + +“This is what I can give into the hotch-pot.” I could not but note the +quaint legal phrase which she used in such a place, and with all +seriousness. “What will each of you give? Your lives I know,” she went +on quickly, “that is easy for brave men. Your lives are God’s, and you +can give them back to Him; but what will you give to me?” She looked +again questioningly, but this time avoided her husband’s face. Quincey +seemed to understand; he nodded, and her face lit up. “Then I shall tell +you plainly what I want, for there must be no doubtful matter in this +connection between us now. You must promise me, one and all--even you, +my beloved husband--that, should the time come, you will kill me.” + +“What is that time?” The voice was Quincey’s, but it was low and +strained. + +“When you shall be convinced that I am so changed that it is better that +I die than I may live. When I am thus dead in the flesh, then you will, +without a moment’s delay, drive a stake through me and cut off my head; +or do whatever else may be wanting to give me rest!” + +Quincey was the first to rise after the pause. He knelt down before her +and taking her hand in his said solemnly:-- + +“I’m only a rough fellow, who hasn’t, perhaps, lived as a man should to +win such a distinction, but I swear to you by all that I hold sacred and +dear that, should the time ever come, I shall not flinch from the duty +that you have set us. And I promise you, too, that I shall make all +certain, for if I am only doubtful I shall take it that the time has +come!” + +“My true friend!” was all she could say amid her fast-falling tears, as, +bending over, she kissed his hand. + +“I swear the same, my dear Madam Mina!” said Van Helsing. + +“And I!” said Lord Godalming, each of them in turn kneeling to her to +take the oath. I followed, myself. Then her husband turned to her +wan-eyed and with a greenish pallor which subdued the snowy whiteness of +his hair, and asked:-- + +“And must I, too, make such a promise, oh, my wife?” + +“You too, my dearest,” she said, with infinite yearning of pity in her +voice and eyes. “You must not shrink. You are nearest and dearest and +all the world to me; our souls are knit into one, for all life and all +time. Think, dear, that there have been times when brave men have killed +their wives and their womenkind, to keep them from falling into the +hands of the enemy. Their hands did not falter any the more because +those that they loved implored them to slay them. It is men’s duty +towards those whom they love, in such times of sore trial! And oh, my +dear, if it is to be that I must meet death at any hand, let it be at +the hand of him that loves me best. Dr. Van Helsing, I have not +forgotten your mercy in poor Lucy’s case to him who loved”--she stopped +with a flying blush, and changed her phrase--“to him who had best right +to give her peace. If that time shall come again, I look to you to make +it a happy memory of my husband’s life that it was his loving hand which +set me free from the awful thrall upon me.” + +“Again I swear!” came the Professor’s resonant voice. Mrs. Harker +smiled, positively smiled, as with a sigh of relief she leaned back and +said:-- + +“And now one word of warning, a warning which you must never forget: +this time, if it ever come, may come quickly and unexpectedly, and in +such case you must lose no time in using your opportunity. At such a +time I myself might be--nay! if the time ever comes, _shall be_--leagued +with your enemy against you.” + +“One more request;” she became very solemn as she said this, “it is not +vital and necessary like the other, but I want you to do one thing for +me, if you will.” We all acquiesced, but no one spoke; there was no need +to speak:-- + +“I want you to read the Burial Service.” She was interrupted by a deep +groan from her husband; taking his hand in hers, she held it over her +heart, and continued: “You must read it over me some day. Whatever may +be the issue of all this fearful state of things, it will be a sweet +thought to all or some of us. You, my dearest, will I hope read it, for +then it will be in your voice in my memory for ever--come what may!” + +“But oh, my dear one,” he pleaded, “death is afar off from you.” + +“Nay,” she said, holding up a warning hand. “I am deeper in death at +this moment than if the weight of an earthly grave lay heavy upon me!” + +“Oh, my wife, must I read it?” he said, before he began. + +“It would comfort me, my husband!” was all she said; and he began to +read when she had got the book ready. + +“How can I--how could any one--tell of that strange scene, its +solemnity, its gloom, its sadness, its horror; and, withal, its +sweetness. Even a sceptic, who can see nothing but a travesty of bitter +truth in anything holy or emotional, would have been melted to the heart +had he seen that little group of loving and devoted friends kneeling +round that stricken and sorrowing lady; or heard the tender passion of +her husband’s voice, as in tones so broken with emotion that often he +had to pause, he read the simple and beautiful service from the Burial +of the Dead. I--I cannot go on--words--and--v-voice--f-fail m-me!” + + * * * * * + +She was right in her instinct. Strange as it all was, bizarre as it may +hereafter seem even to us who felt its potent influence at the time, it +comforted us much; and the silence, which showed Mrs. Harker’s coming +relapse from her freedom of soul, did not seem so full of despair to any +of us as we had dreaded. + + +_Jonathan Harker’s Journal._ + +_15 October, Varna._--We left Charing Cross on the morning of the 12th, +got to Paris the same night, and took the places secured for us in the +Orient Express. We travelled night and day, arriving here at about five +o’clock. Lord Godalming went to the Consulate to see if any telegram had +arrived for him, whilst the rest of us came on to this hotel--“the +Odessus.” The journey may have had incidents; I was, however, too eager +to get on, to care for them. Until the _Czarina Catherine_ comes into +port there will be no interest for me in anything in the wide world. +Thank God! Mina is well, and looks to be getting stronger; her colour is +coming back. She sleeps a great deal; throughout the journey she slept +nearly all the time. Before sunrise and sunset, however, she is very +wakeful and alert; and it has become a habit for Van Helsing to +hypnotise her at such times. At first, some effort was needed, and he +had to make many passes; but now, she seems to yield at once, as if by +habit, and scarcely any action is needed. He seems to have power at +these particular moments to simply will, and her thoughts obey him. He +always asks her what she can see and hear. She answers to the first:-- + +“Nothing; all is dark.” And to the second:-- + +“I can hear the waves lapping against the ship, and the water rushing +by. Canvas and cordage strain and masts and yards creak. The wind is +high--I can hear it in the shrouds, and the bow throws back the foam.” +It is evident that the _Czarina Catherine_ is still at sea, hastening on +her way to Varna. Lord Godalming has just returned. He had four +telegrams, one each day since we started, and all to the same effect: +that the _Czarina Catherine_ had not been reported to Lloyd’s from +anywhere. He had arranged before leaving London that his agent should +send him every day a telegram saying if the ship had been reported. He +was to have a message even if she were not reported, so that he might be +sure that there was a watch being kept at the other end of the wire. + +We had dinner and went to bed early. To-morrow we are to see the +Vice-Consul, and to arrange, if we can, about getting on board the ship +as soon as she arrives. Van Helsing says that our chance will be to get +on the boat between sunrise and sunset. The Count, even if he takes the +form of a bat, cannot cross the running water of his own volition, and +so cannot leave the ship. As he dare not change to man’s form without +suspicion--which he evidently wishes to avoid--he must remain in the +box. If, then, we can come on board after sunrise, he is at our mercy; +for we can open the box and make sure of him, as we did of poor Lucy, +before he wakes. What mercy he shall get from us will not count for +much. We think that we shall not have much trouble with officials or the +seamen. Thank God! this is the country where bribery can do anything, +and we are well supplied with money. We have only to make sure that the +ship cannot come into port between sunset and sunrise without our being +warned, and we shall be safe. Judge Moneybag will settle this case, I +think! + + * * * * * + +_16 October._--Mina’s report still the same: lapping waves and rushing +water, darkness and favouring winds. We are evidently in good time, and +when we hear of the _Czarina Catherine_ we shall be ready. As she must +pass the Dardanelles we are sure to have some report. + + * * * * * + +_17 October._--Everything is pretty well fixed now, I think, to welcome +the Count on his return from his tour. Godalming told the shippers that +he fancied that the box sent aboard might contain something stolen from +a friend of his, and got a half consent that he might open it at his own +risk. The owner gave him a paper telling the Captain to give him every +facility in doing whatever he chose on board the ship, and also a +similar authorisation to his agent at Varna. We have seen the agent, who +was much impressed with Godalming’s kindly manner to him, and we are all +satisfied that whatever he can do to aid our wishes will be done. We +have already arranged what to do in case we get the box open. If the +Count is there, Van Helsing and Seward will cut off his head at once and +drive a stake through his heart. Morris and Godalming and I shall +prevent interference, even if we have to use the arms which we shall +have ready. The Professor says that if we can so treat the Count’s body, +it will soon after fall into dust. In such case there would be no +evidence against us, in case any suspicion of murder were aroused. But +even if it were not, we should stand or fall by our act, and perhaps +some day this very script may be evidence to come between some of us and +a rope. For myself, I should take the chance only too thankfully if it +were to come. We mean to leave no stone unturned to carry out our +intent. We have arranged with certain officials that the instant the +_Czarina Catherine_ is seen, we are to be informed by a special +messenger. + + * * * * * + +_24 October._--A whole week of waiting. Daily telegrams to Godalming, +but only the same story: “Not yet reported.” Mina’s morning and evening +hypnotic answer is unvaried: lapping waves, rushing water, and creaking +masts. + +_Telegram, October 24th._ + +_Rufus Smith, Lloyd’s, London, to Lord Godalming, care of H. B. M. +Vice-Consul, Varna._ + +“_Czarina Catherine_ reported this morning from Dardanelles.” + + +_Dr. Seward’s Diary._ + +_25 October._--How I miss my phonograph! To write diary with a pen is +irksome to me; but Van Helsing says I must. We were all wild with +excitement yesterday when Godalming got his telegram from Lloyd’s. I +know now what men feel in battle when the call to action is heard. Mrs. +Harker, alone of our party, did not show any signs of emotion. After +all, it is not strange that she did not; for we took special care not to +let her know anything about it, and we all tried not to show any +excitement when we were in her presence. In old days she would, I am +sure, have noticed, no matter how we might have tried to conceal it; but +in this way she is greatly changed during the past three weeks. The +lethargy grows upon her, and though she seems strong and well, and is +getting back some of her colour, Van Helsing and I are not satisfied. We +talk of her often; we have not, however, said a word to the others. It +would break poor Harker’s heart--certainly his nerve--if he knew that we +had even a suspicion on the subject. Van Helsing examines, he tells me, +her teeth very carefully, whilst she is in the hypnotic condition, for +he says that so long as they do not begin to sharpen there is no active +danger of a change in her. If this change should come, it would be +necessary to take steps!... We both know what those steps would have to +be, though we do not mention our thoughts to each other. We should +neither of us shrink from the task--awful though it be to contemplate. +“Euthanasia” is an excellent and a comforting word! I am grateful to +whoever invented it. + +It is only about 24 hours’ sail from the Dardanelles to here, at the +rate the _Czarina Catherine_ has come from London. She should therefore +arrive some time in the morning; but as she cannot possibly get in +before then, we are all about to retire early. We shall get up at one +o’clock, so as to be ready. + + * * * * * + +_25 October, Noon_.--No news yet of the ship’s arrival. Mrs. Harker’s +hypnotic report this morning was the same as usual, so it is possible +that we may get news at any moment. We men are all in a fever of +excitement, except Harker, who is calm; his hands are cold as ice, and +an hour ago I found him whetting the edge of the great Ghoorka knife +which he now always carries with him. It will be a bad lookout for the +Count if the edge of that “Kukri” ever touches his throat, driven by +that stern, ice-cold hand! + +Van Helsing and I were a little alarmed about Mrs. Harker to-day. About +noon she got into a sort of lethargy which we did not like; although we +kept silence to the others, we were neither of us happy about it. She +had been restless all the morning, so that we were at first glad to know +that she was sleeping. When, however, her husband mentioned casually +that she was sleeping so soundly that he could not wake her, we went to +her room to see for ourselves. She was breathing naturally and looked so +well and peaceful that we agreed that the sleep was better for her than +anything else. Poor girl, she has so much to forget that it is no wonder +that sleep, if it brings oblivion to her, does her good. + + * * * * * + +_Later._--Our opinion was justified, for when after a refreshing sleep +of some hours she woke up, she seemed brighter and better than she had +been for days. At sunset she made the usual hypnotic report. Wherever he +may be in the Black Sea, the Count is hurrying to his destination. To +his doom, I trust! + + * * * * * + +_26 October._--Another day and no tidings of the _Czarina Catherine_. +She ought to be here by now. That she is still journeying _somewhere_ is +apparent, for Mrs. Harker’s hypnotic report at sunrise was still the +same. It is possible that the vessel may be lying by, at times, for fog; +some of the steamers which came in last evening reported patches of fog +both to north and south of the port. We must continue our watching, as +the ship may now be signalled any moment. + + * * * * * + +_27 October, Noon._--Most strange; no news yet of the ship we wait for. +Mrs. Harker reported last night and this morning as usual: “lapping +waves and rushing water,” though she added that “the waves were very +faint.” The telegrams from London have been the same: “no further +report.” Van Helsing is terribly anxious, and told me just now that he +fears the Count is escaping us. He added significantly:-- + +“I did not like that lethargy of Madam Mina’s. Souls and memories can do +strange things during trance.” I was about to ask him more, but Harker +just then came in, and he held up a warning hand. We must try to-night +at sunset to make her speak more fully when in her hypnotic state. + + * * * * * + + _28 October._--Telegram. _Rufus Smith, London, to Lord Godalming, + care H. B. M. Vice Consul, Varna._ + + “_Czarina Catherine_ reported entering Galatz at one o’clock + to-day.” + + +_Dr. Seward’s Diary._ + +_28 October._--When the telegram came announcing the arrival in Galatz I +do not think it was such a shock to any of us as might have been +expected. True, we did not know whence, or how, or when, the bolt would +come; but I think we all expected that something strange would happen. +The delay of arrival at Varna made us individually satisfied that things +would not be just as we had expected; we only waited to learn where the +change would occur. None the less, however, was it a surprise. I suppose +that nature works on such a hopeful basis that we believe against +ourselves that things will be as they ought to be, not as we should know +that they will be. Transcendentalism is a beacon to the angels, even if +it be a will-o’-the-wisp to man. It was an odd experience and we all +took it differently. Van Helsing raised his hand over his head for a +moment, as though in remonstrance with the Almighty; but he said not a +word, and in a few seconds stood up with his face sternly set. Lord +Godalming grew very pale, and sat breathing heavily. I was myself half +stunned and looked in wonder at one after another. Quincey Morris +tightened his belt with that quick movement which I knew so well; in our +old wandering days it meant “action.” Mrs. Harker grew ghastly white, so +that the scar on her forehead seemed to burn, but she folded her hands +meekly and looked up in prayer. Harker smiled--actually smiled--the +dark, bitter smile of one who is without hope; but at the same time his +action belied his words, for his hands instinctively sought the hilt of +the great Kukri knife and rested there. “When does the next train start +for Galatz?” said Van Helsing to us generally. + +“At 6:30 to-morrow morning!” We all started, for the answer came from +Mrs. Harker. + +“How on earth do you know?” said Art. + +“You forget--or perhaps you do not know, though Jonathan does and so +does Dr. Van Helsing--that I am the train fiend. At home in Exeter I +always used to make up the time-tables, so as to be helpful to my +husband. I found it so useful sometimes, that I always make a study of +the time-tables now. I knew that if anything were to take us to Castle +Dracula we should go by Galatz, or at any rate through Bucharest, so I +learned the times very carefully. Unhappily there are not many to learn, +as the only train to-morrow leaves as I say.” + +“Wonderful woman!” murmured the Professor. + +“Can’t we get a special?” asked Lord Godalming. Van Helsing shook his +head: “I fear not. This land is very different from yours or mine; even +if we did have a special, it would probably not arrive as soon as our +regular train. Moreover, we have something to prepare. We must think. +Now let us organize. You, friend Arthur, go to the train and get the +tickets and arrange that all be ready for us to go in the morning. Do +you, friend Jonathan, go to the agent of the ship and get from him +letters to the agent in Galatz, with authority to make search the ship +just as it was here. Morris Quincey, you see the Vice-Consul, and get +his aid with his fellow in Galatz and all he can do to make our way +smooth, so that no times be lost when over the Danube. John will stay +with Madam Mina and me, and we shall consult. For so if time be long you +may be delayed; and it will not matter when the sun set, since I am here +with Madam to make report.” + +“And I,” said Mrs. Harker brightly, and more like her old self than she +had been for many a long day, “shall try to be of use in all ways, and +shall think and write for you as I used to do. Something is shifting +from me in some strange way, and I feel freer than I have been of late!” +The three younger men looked happier at the moment as they seemed to +realise the significance of her words; but Van Helsing and I, turning to +each other, met each a grave and troubled glance. We said nothing at the +time, however. + +When the three men had gone out to their tasks Van Helsing asked Mrs. +Harker to look up the copy of the diaries and find him the part of +Harker’s journal at the Castle. She went away to get it; when the door +was shut upon her he said to me:-- + +“We mean the same! speak out!” + +“There is some change. It is a hope that makes me sick, for it may +deceive us.” + +“Quite so. Do you know why I asked her to get the manuscript?” + +“No!” said I, “unless it was to get an opportunity of seeing me alone.” + +“You are in part right, friend John, but only in part. I want to tell +you something. And oh, my friend, I am taking a great--a terrible--risk; +but I believe it is right. In the moment when Madam Mina said those +words that arrest both our understanding, an inspiration came to me. In +the trance of three days ago the Count sent her his spirit to read her +mind; or more like he took her to see him in his earth-box in the ship +with water rushing, just as it go free at rise and set of sun. He learn +then that we are here; for she have more to tell in her open life with +eyes to see and ears to hear than he, shut, as he is, in his coffin-box. +Now he make his most effort to escape us. At present he want her not. + +“He is sure with his so great knowledge that she will come at his call; +but he cut her off--take her, as he can do, out of his own power, that +so she come not to him. Ah! there I have hope that our man-brains that +have been of man so long and that have not lost the grace of God, will +come higher than his child-brain that lie in his tomb for centuries, +that grow not yet to our stature, and that do only work selfish and +therefore small. Here comes Madam Mina; not a word to her of her trance! +She know it not; and it would overwhelm her and make despair just when +we want all her hope, all her courage; when most we want all her great +brain which is trained like man’s brain, but is of sweet woman and have +a special power which the Count give her, and which he may not take away +altogether--though he think not so. Hush! let me speak, and you shall +learn. Oh, John, my friend, we are in awful straits. I fear, as I never +feared before. We can only trust the good God. Silence! here she comes!” + +I thought that the Professor was going to break down and have hysterics, +just as he had when Lucy died, but with a great effort he controlled +himself and was at perfect nervous poise when Mrs. Harker tripped into +the room, bright and happy-looking and, in the doing of work, seemingly +forgetful of her misery. As she came in, she handed a number of sheets +of typewriting to Van Helsing. He looked over them gravely, his face +brightening up as he read. Then holding the pages between his finger and +thumb he said:-- + +“Friend John, to you with so much of experience already--and you, too, +dear Madam Mina, that are young--here is a lesson: do not fear ever to +think. A half-thought has been buzzing often in my brain, but I fear to +let him loose his wings. Here now, with more knowledge, I go back to +where that half-thought come from and I find that he be no half-thought +at all; that be a whole thought, though so young that he is not yet +strong to use his little wings. Nay, like the “Ugly Duck” of my friend +Hans Andersen, he be no duck-thought at all, but a big swan-thought that +sail nobly on big wings, when the time come for him to try them. See I +read here what Jonathan have written:-- + +“That other of his race who, in a later age, again and again, brought +his forces over The Great River into Turkey Land; who, when he was +beaten back, came again, and again, and again, though he had to come +alone from the bloody field where his troops were being slaughtered, +since he knew that he alone could ultimately triumph.” + +“What does this tell us? Not much? no! The Count’s child-thought see +nothing; therefore he speak so free. Your man-thought see nothing; my +man-thought see nothing, till just now. No! But there comes another word +from some one who speak without thought because she, too, know not what +it mean--what it _might_ mean. Just as there are elements which rest, +yet when in nature’s course they move on their way and they touch--then +pouf! and there comes a flash of light, heaven wide, that blind and kill +and destroy some; but that show up all earth below for leagues and +leagues. Is it not so? Well, I shall explain. To begin, have you ever +study the philosophy of crime? ‘Yes’ and ‘No.’ You, John, yes; for it is +a study of insanity. You, no, Madam Mina; for crime touch you not--not +but once. Still, your mind works true, and argues not _a particulari ad +universale_. There is this peculiarity in criminals. It is so constant, +in all countries and at all times, that even police, who know not much +from philosophy, come to know it empirically, that _it is_. That is to +be empiric. The criminal always work at one crime--that is the true +criminal who seems predestinate to crime, and who will of none other. +This criminal has not full man-brain. He is clever and cunning and +resourceful; but he be not of man-stature as to brain. He be of +child-brain in much. Now this criminal of ours is predestinate to crime +also; he, too, have child-brain, and it is of the child to do what he +have done. The little bird, the little fish, the little animal learn not +by principle, but empirically; and when he learn to do, then there is to +him the ground to start from to do more. ‘_Dos pou sto_,’ said +Archimedes. ‘Give me a fulcrum, and I shall move the world!’ To do once, +is the fulcrum whereby child-brain become man-brain; and until he have +the purpose to do more, he continue to do the same again every time, +just as he have done before! Oh, my dear, I see that your eyes are +opened, and that to you the lightning flash show all the leagues,” for +Mrs. Harker began to clap her hands and her eyes sparkled. He went on:-- + +“Now you shall speak. Tell us two dry men of science what you see with +those so bright eyes.” He took her hand and held it whilst she spoke. +His finger and thumb closed on her pulse, as I thought instinctively and +unconsciously, as she spoke:-- + +“The Count is a criminal and of criminal type. Nordau and Lombroso would +so classify him, and _quâ_ criminal he is of imperfectly formed mind. +Thus, in a difficulty he has to seek resource in habit. His past is a +clue, and the one page of it that we know--and that from his own +lips--tells that once before, when in what Mr. Morris would call a +‘tight place,’ he went back to his own country from the land he had +tried to invade, and thence, without losing purpose, prepared himself +for a new effort. He came again better equipped for his work; and won. +So he came to London to invade a new land. He was beaten, and when all +hope of success was lost, and his existence in danger, he fled back over +the sea to his home; just as formerly he had fled back over the Danube +from Turkey Land.” + +“Good, good! oh, you so clever lady!” said Van Helsing, +enthusiastically, as he stooped and kissed her hand. A moment later he +said to me, as calmly as though we had been having a sick-room +consultation:-- + +“Seventy-two only; and in all this excitement. I have hope.” Turning to +her again, he said with keen expectation:-- + +“But go on. Go on! there is more to tell if you will. Be not afraid; +John and I know. I do in any case, and shall tell you if you are right. +Speak, without fear!” + +“I will try to; but you will forgive me if I seem egotistical.” + +“Nay! fear not, you must be egotist, for it is of you that we think.” + +“Then, as he is criminal he is selfish; and as his intellect is small +and his action is based on selfishness, he confines himself to one +purpose. That purpose is remorseless. As he fled back over the Danube, +leaving his forces to be cut to pieces, so now he is intent on being +safe, careless of all. So his own selfishness frees my soul somewhat +from the terrible power which he acquired over me on that dreadful +night. I felt it! Oh, I felt it! Thank God, for His great mercy! My soul +is freer than it has been since that awful hour; and all that haunts me +is a fear lest in some trance or dream he may have used my knowledge for +his ends.” The Professor stood up:-- + +“He has so used your mind; and by it he has left us here in Varna, +whilst the ship that carried him rushed through enveloping fog up to +Galatz, where, doubtless, he had made preparation for escaping from us. +But his child-mind only saw so far; and it may be that, as ever is in +God’s Providence, the very thing that the evil-doer most reckoned on for +his selfish good, turns out to be his chiefest harm. The hunter is taken +in his own snare, as the great Psalmist says. For now that he think he +is free from every trace of us all, and that he has escaped us with so +many hours to him, then his selfish child-brain will whisper him to +sleep. He think, too, that as he cut himself off from knowing your mind, +there can be no knowledge of him to you; there is where he fail! That +terrible baptism of blood which he give you makes you free to go to him +in spirit, as you have as yet done in your times of freedom, when the +sun rise and set. At such times you go by my volition and not by his; +and this power to good of you and others, as you have won from your +suffering at his hands. This is now all the more precious that he know +it not, and to guard himself have even cut himself off from his +knowledge of our where. We, however, are not selfish, and we believe +that God is with us through all this blackness, and these many dark +hours. We shall follow him; and we shall not flinch; even if we peril +ourselves that we become like him. Friend John, this has been a great +hour; and it have done much to advance us on our way. You must be scribe +and write him all down, so that when the others return from their work +you can give it to them; then they shall know as we do.” + +And so I have written it whilst we wait their return, and Mrs. Harker +has written with her typewriter all since she brought the MS. to us. + + + + +CHAPTER XXVI + +DR. SEWARD’S DIARY + + +_29 October._--This is written in the train from Varna to Galatz. Last +night we all assembled a little before the time of sunset. Each of us +had done his work as well as he could; so far as thought, and endeavour, +and opportunity go, we are prepared for the whole of our journey, and +for our work when we get to Galatz. When the usual time came round Mrs. +Harker prepared herself for her hypnotic effort; and after a longer and +more serious effort on the part of Van Helsing than has been usually +necessary, she sank into the trance. Usually she speaks on a hint; but +this time the Professor had to ask her questions, and to ask them pretty +resolutely, before we could learn anything; at last her answer came:-- + +“I can see nothing; we are still; there are no waves lapping, but only a +steady swirl of water softly running against the hawser. I can hear +men’s voices calling, near and far, and the roll and creak of oars in +the rowlocks. A gun is fired somewhere; the echo of it seems far away. +There is tramping of feet overhead, and ropes and chains are dragged +along. What is this? There is a gleam of light; I can feel the air +blowing upon me.” + +Here she stopped. She had risen, as if impulsively, from where she lay +on the sofa, and raised both her hands, palms upwards, as if lifting a +weight. Van Helsing and I looked at each other with understanding. +Quincey raised his eyebrows slightly and looked at her intently, whilst +Harker’s hand instinctively closed round the hilt of his Kukri. There +was a long pause. We all knew that the time when she could speak was +passing; but we felt that it was useless to say anything. Suddenly she +sat up, and, as she opened her eyes, said sweetly:-- + +“Would none of you like a cup of tea? You must all be so tired!” We +could only make her happy, and so acquiesced. She bustled off to get +tea; when she had gone Van Helsing said:-- + +“You see, my friends. _He_ is close to land: he has left his +earth-chest. But he has yet to get on shore. In the night he may lie +hidden somewhere; but if he be not carried on shore, or if the ship do +not touch it, he cannot achieve the land. In such case he can, if it be +in the night, change his form and can jump or fly on shore, as he did +at Whitby. But if the day come before he get on shore, then, unless he +be carried he cannot escape. And if he be carried, then the customs men +may discover what the box contain. Thus, in fine, if he escape not on +shore to-night, or before dawn, there will be the whole day lost to him. +We may then arrive in time; for if he escape not at night we shall come +on him in daytime, boxed up and at our mercy; for he dare not be his +true self, awake and visible, lest he be discovered.” + +There was no more to be said, so we waited in patience until the dawn; +at which time we might learn more from Mrs. Harker. + +Early this morning we listened, with breathless anxiety, for her +response in her trance. The hypnotic stage was even longer in coming +than before; and when it came the time remaining until full sunrise was +so short that we began to despair. Van Helsing seemed to throw his whole +soul into the effort; at last, in obedience to his will she made +reply:-- + +“All is dark. I hear lapping water, level with me, and some creaking as +of wood on wood.” She paused, and the red sun shot up. We must wait till +to-night. + +And so it is that we are travelling towards Galatz in an agony of +expectation. We are due to arrive between two and three in the morning; +but already, at Bucharest, we are three hours late, so we cannot +possibly get in till well after sun-up. Thus we shall have two more +hypnotic messages from Mrs. Harker; either or both may possibly throw +more light on what is happening. + + * * * * * + +_Later._--Sunset has come and gone. Fortunately it came at a time when +there was no distraction; for had it occurred whilst we were at a +station, we might not have secured the necessary calm and isolation. +Mrs. Harker yielded to the hypnotic influence even less readily than +this morning. I am in fear that her power of reading the Count’s +sensations may die away, just when we want it most. It seems to me that +her imagination is beginning to work. Whilst she has been in the trance +hitherto she has confined herself to the simplest of facts. If this goes +on it may ultimately mislead us. If I thought that the Count’s power +over her would die away equally with her power of knowledge it would be +a happy thought; but I am afraid that it may not be so. When she did +speak, her words were enigmatical:-- + +“Something is going out; I can feel it pass me like a cold wind. I can +hear, far off, confused sounds--as of men talking in strange tongues, +fierce-falling water, and the howling of wolves.” She stopped and a +shudder ran through her, increasing in intensity for a few seconds, +till, at the end, she shook as though in a palsy. She said no more, even +in answer to the Professor’s imperative questioning. When she woke from +the trance, she was cold, and exhausted, and languid; but her mind was +all alert. She could not remember anything, but asked what she had said; +when she was told, she pondered over it deeply for a long time and in +silence. + + * * * * * + +_30 October, 7 a. m._--We are near Galatz now, and I may not have time +to write later. Sunrise this morning was anxiously looked for by us all. +Knowing of the increasing difficulty of procuring the hypnotic trance, +Van Helsing began his passes earlier than usual. They produced no +effect, however, until the regular time, when she yielded with a still +greater difficulty, only a minute before the sun rose. The Professor +lost no time in his questioning; her answer came with equal quickness:-- + +“All is dark. I hear water swirling by, level with my ears, and the +creaking of wood on wood. Cattle low far off. There is another sound, a +queer one like----” She stopped and grew white, and whiter still. + +“Go on; go on! Speak, I command you!” said Van Helsing in an agonised +voice. At the same time there was despair in his eyes, for the risen sun +was reddening even Mrs. Harker’s pale face. She opened her eyes, and we +all started as she said, sweetly and seemingly with the utmost +unconcern:-- + +“Oh, Professor, why ask me to do what you know I can’t? I don’t remember +anything.” Then, seeing the look of amazement on our faces, she said, +turning from one to the other with a troubled look:-- + +“What have I said? What have I done? I know nothing, only that I was +lying here, half asleep, and heard you say ‘go on! speak, I command you!’ +It seemed so funny to hear you order me about, as if I were a bad +child!” + +“Oh, Madam Mina,” he said, sadly, “it is proof, if proof be needed, of +how I love and honour you, when a word for your good, spoken more +earnest than ever, can seem so strange because it is to order her whom I +am proud to obey!” + +The whistles are sounding; we are nearing Galatz. We are on fire with +anxiety and eagerness. + + +_Mina Harker’s Journal._ + +_30 October._--Mr. Morris took me to the hotel where our rooms had been +ordered by telegraph, he being the one who could best be spared, since +he does not speak any foreign language. The forces were distributed +much as they had been at Varna, except that Lord Godalming went to the +Vice-Consul, as his rank might serve as an immediate guarantee of some +sort to the official, we being in extreme hurry. Jonathan and the two +doctors went to the shipping agent to learn particulars of the arrival +of the _Czarina Catherine_. + + * * * * * + +_Later._--Lord Godalming has returned. The Consul is away, and the +Vice-Consul sick; so the routine work has been attended to by a clerk. +He was very obliging, and offered to do anything in his power. + + +_Jonathan Harker’s Journal._ + +_30 October._--At nine o’clock Dr. Van Helsing, Dr. Seward, and I called +on Messrs. Mackenzie & Steinkoff, the agents of the London firm of +Hapgood. They had received a wire from London, in answer to Lord +Godalming’s telegraphed request, asking us to show them any civility in +their power. They were more than kind and courteous, and took us at once +on board the _Czarina Catherine_, which lay at anchor out in the river +harbour. There we saw the Captain, Donelson by name, who told us of his +voyage. He said that in all his life he had never had so favourable a +run. + +“Man!” he said, “but it made us afeard, for we expeckit that we should +have to pay for it wi’ some rare piece o’ ill luck, so as to keep up the +average. It’s no canny to run frae London to the Black Sea wi’ a wind +ahint ye, as though the Deil himself were blawin’ on yer sail for his +ain purpose. An’ a’ the time we could no speer a thing. Gin we were nigh +a ship, or a port, or a headland, a fog fell on us and travelled wi’ us, +till when after it had lifted and we looked out, the deil a thing could +we see. We ran by Gibraltar wi’oot bein’ able to signal; an’ till we +came to the Dardanelles and had to wait to get our permit to pass, we +never were within hail o’ aught. At first I inclined to slack off sail +and beat about till the fog was lifted; but whiles, I thocht that if the +Deil was minded to get us into the Black Sea quick, he was like to do it +whether we would or no. If we had a quick voyage it would be no to our +miscredit wi’ the owners, or no hurt to our traffic; an’ the Old Mon who +had served his ain purpose wad be decently grateful to us for no +hinderin’ him.” This mixture of simplicity and cunning, of superstition +and commercial reasoning, aroused Van Helsing, who said:-- + +“Mine friend, that Devil is more clever than he is thought by some; and +he know when he meet his match!” The skipper was not displeased with the +compliment, and went on:-- + +“When we got past the Bosphorus the men began to grumble; some o’ them, +the Roumanians, came and asked me to heave overboard a big box which had +been put on board by a queer lookin’ old man just before we had started +frae London. I had seen them speer at the fellow, and put out their twa +fingers when they saw him, to guard against the evil eye. Man! but the +supersteetion of foreigners is pairfectly rideeculous! I sent them aboot +their business pretty quick; but as just after a fog closed in on us I +felt a wee bit as they did anent something, though I wouldn’t say it was +agin the big box. Well, on we went, and as the fog didn’t let up for +five days I joost let the wind carry us; for if the Deil wanted to get +somewheres--well, he would fetch it up a’reet. An’ if he didn’t, well, +we’d keep a sharp lookout anyhow. Sure eneuch, we had a fair way and +deep water all the time; and two days ago, when the mornin’ sun came +through the fog, we found ourselves just in the river opposite Galatz. +The Roumanians were wild, and wanted me right or wrong to take out the +box and fling it in the river. I had to argy wi’ them aboot it wi’ a +handspike; an’ when the last o’ them rose off the deck wi’ his head in +his hand, I had convinced them that, evil eye or no evil eye, the +property and the trust of my owners were better in my hands than in the +river Danube. They had, mind ye, taken the box on the deck ready to +fling in, and as it was marked Galatz _via_ Varna, I thocht I’d let it +lie till we discharged in the port an’ get rid o’t althegither. We +didn’t do much clearin’ that day, an’ had to remain the nicht at anchor; +but in the mornin’, braw an’ airly, an hour before sun-up, a man came +aboard wi’ an order, written to him from England, to receive a box +marked for one Count Dracula. Sure eneuch the matter was one ready to +his hand. He had his papers a’ reet, an’ glad I was to be rid o’ the +dam’ thing, for I was beginnin’ masel’ to feel uneasy at it. If the Deil +did have any luggage aboord the ship, I’m thinkin’ it was nane ither +than that same!” + +“What was the name of the man who took it?” asked Dr. Van Helsing with +restrained eagerness. + +“I’ll be tellin’ ye quick!” he answered, and, stepping down to his +cabin, produced a receipt signed “Immanuel Hildesheim.” Burgen-strasse +16 was the address. We found out that this was all the Captain knew; so +with thanks we came away. + +We found Hildesheim in his office, a Hebrew of rather the Adelphi +Theatre type, with a nose like a sheep, and a fez. His arguments were +pointed with specie--we doing the punctuation--and with a little +bargaining he told us what he knew. This turned out to be simple but +important. He had received a letter from Mr. de Ville of London, telling +him to receive, if possible before sunrise so as to avoid customs, a box +which would arrive at Galatz in the _Czarina Catherine_. This he was to +give in charge to a certain Petrof Skinsky, who dealt with the Slovaks +who traded down the river to the port. He had been paid for his work by +an English bank note, which had been duly cashed for gold at the Danube +International Bank. When Skinsky had come to him, he had taken him to +the ship and handed over the box, so as to save porterage. That was all +he knew. + +We then sought for Skinsky, but were unable to find him. One of his +neighbours, who did not seem to bear him any affection, said that he had +gone away two days before, no one knew whither. This was corroborated by +his landlord, who had received by messenger the key of the house +together with the rent due, in English money. This had been between ten +and eleven o’clock last night. We were at a standstill again. + +Whilst we were talking one came running and breathlessly gasped out that +the body of Skinsky had been found inside the wall of the churchyard of +St. Peter, and that the throat had been torn open as if by some wild +animal. Those we had been speaking with ran off to see the horror, the +women crying out “This is the work of a Slovak!” We hurried away lest we +should have been in some way drawn into the affair, and so detained. + +As we came home we could arrive at no definite conclusion. We were all +convinced that the box was on its way, by water, to somewhere; but where +that might be we would have to discover. With heavy hearts we came home +to the hotel to Mina. + +When we met together, the first thing was to consult as to taking Mina +again into our confidence. Things are getting desperate, and it is at +least a chance, though a hazardous one. As a preliminary step, I was +released from my promise to her. + + +_Mina Harker’s Journal._ + +_30 October, evening._--They were so tired and worn out and dispirited +that there was nothing to be done till they had some rest; so I asked +them all to lie down for half an hour whilst I should enter everything +up to the moment. I feel so grateful to the man who invented the +“Traveller’s” typewriter, and to Mr. Morris for getting this one for +me. I should have felt quite astray doing the work if I had to write +with a pen.... + +It is all done; poor dear, dear Jonathan, what he must have suffered, +what must he be suffering now. He lies on the sofa hardly seeming to +breathe, and his whole body appears in collapse. His brows are knit; his +face is drawn with pain. Poor fellow, maybe he is thinking, and I can +see his face all wrinkled up with the concentration of his thoughts. Oh! +if I could only help at all.... I shall do what I can. + +I have asked Dr. Van Helsing, and he has got me all the papers that I +have not yet seen.... Whilst they are resting, I shall go over all +carefully, and perhaps I may arrive at some conclusion. I shall try to +follow the Professor’s example, and think without prejudice on the facts +before me.... + + * * * * * + +I do believe that under God’s providence I have made a discovery. I +shall get the maps and look over them.... + + * * * * * + +I am more than ever sure that I am right. My new conclusion is ready, so +I shall get our party together and read it. They can judge it; it is +well to be accurate, and every minute is precious. + + +_Mina Harker’s Memorandum._ + +(Entered in her Journal.) + +_Ground of inquiry._--Count Dracula’s problem is to get back to his own +place. + +(_a_) He must be _brought back_ by some one. This is evident; for had he +power to move himself as he wished he could go either as man, or wolf, +or bat, or in some other way. He evidently fears discovery or +interference, in the state of helplessness in which he must be--confined +as he is between dawn and sunset in his wooden box. + +(_b_) _How is he to be taken?_--Here a process of exclusions may help +us. By road, by rail, by water? + +1. _By Road._--There are endless difficulties, especially in leaving the +city. + +(_x_) There are people; and people are curious, and investigate. A hint, +a surmise, a doubt as to what might be in the box, would destroy him. + +(_y_) There are, or there may be, customs and octroi officers to pass. + +(_z_) His pursuers might follow. This is his highest fear; and in order +to prevent his being betrayed he has repelled, so far as he can, even +his victim--me! + +2. _By Rail._--There is no one in charge of the box. It would have to +take its chance of being delayed; and delay would be fatal, with enemies +on the track. True, he might escape at night; but what would he be, if +left in a strange place with no refuge that he could fly to? This is not +what he intends; and he does not mean to risk it. + +3. _By Water._--Here is the safest way, in one respect, but with most +danger in another. On the water he is powerless except at night; even +then he can only summon fog and storm and snow and his wolves. But were +he wrecked, the living water would engulf him, helpless; and he would +indeed be lost. He could have the vessel drive to land; but if it were +unfriendly land, wherein he was not free to move, his position would +still be desperate. + +We know from the record that he was on the water; so what we have to do +is to ascertain _what_ water. + +The first thing is to realise exactly what he has done as yet; we may, +then, get a light on what his later task is to be. + +_Firstly._--We must differentiate between what he did in London as part +of his general plan of action, when he was pressed for moments and had +to arrange as best he could. + +_Secondly_ we must see, as well as we can surmise it from the facts we +know of, what he has done here. + +As to the first, he evidently intended to arrive at Galatz, and sent +invoice to Varna to deceive us lest we should ascertain his means of +exit from England; his immediate and sole purpose then was to escape. +The proof of this, is the letter of instructions sent to Immanuel +Hildesheim to clear and take away the box _before sunrise_. There is +also the instruction to Petrof Skinsky. These we must only guess at; but +there must have been some letter or message, since Skinsky came to +Hildesheim. + +That, so far, his plans were successful we know. The _Czarina Catherine_ +made a phenomenally quick journey--so much so that Captain Donelson’s +suspicions were aroused; but his superstition united with his canniness +played the Count’s game for him, and he ran with his favouring wind +through fogs and all till he brought up blindfold at Galatz. That the +Count’s arrangements were well made, has been proved. Hildesheim cleared +the box, took it off, and gave it to Skinsky. Skinsky took it--and here +we lose the trail. We only know that the box is somewhere on the water, +moving along. The customs and the octroi, if there be any, have been +avoided. + +Now we come to what the Count must have done after his arrival--_on +land_, at Galatz. + +The box was given to Skinsky before sunrise. At sunrise the Count could +appear in his own form. Here, we ask why Skinsky was chosen at all to +aid in the work? In my husband’s diary, Skinsky is mentioned as dealing +with the Slovaks who trade down the river to the port; and the man’s +remark, that the murder was the work of a Slovak, showed the general +feeling against his class. The Count wanted isolation. + +My surmise is, this: that in London the Count decided to get back to his +castle by water, as the most safe and secret way. He was brought from +the castle by Szgany, and probably they delivered their cargo to Slovaks +who took the boxes to Varna, for there they were shipped for London. +Thus the Count had knowledge of the persons who could arrange this +service. When the box was on land, before sunrise or after sunset, he +came out from his box, met Skinsky and instructed him what to do as to +arranging the carriage of the box up some river. When this was done, and +he knew that all was in train, he blotted out his traces, as he thought, +by murdering his agent. + +I have examined the map and find that the river most suitable for the +Slovaks to have ascended is either the Pruth or the Sereth. I read in +the typescript that in my trance I heard cows low and water swirling +level with my ears and the creaking of wood. The Count in his box, then, +was on a river in an open boat--propelled probably either by oars or +poles, for the banks are near and it is working against stream. There +would be no such sound if floating down stream. + +Of course it may not be either the Sereth or the Pruth, but we may +possibly investigate further. Now of these two, the Pruth is the more +easily navigated, but the Sereth is, at Fundu, joined by the Bistritza +which runs up round the Borgo Pass. The loop it makes is manifestly as +close to Dracula’s castle as can be got by water. + + +_Mina Harker’s Journal--continued._ + +When I had done reading, Jonathan took me in his arms and kissed me. The +others kept shaking me by both hands, and Dr. Van Helsing said:-- + +“Our dear Madam Mina is once more our teacher. Her eyes have been where +we were blinded. Now we are on the track once again, and this time we +may succeed. Our enemy is at his most helpless; and if we can come on +him by day, on the water, our task will be over. He has a start, but he +is powerless to hasten, as he may not leave his box lest those who carry +him may suspect; for them to suspect would be to prompt them to throw +him in the stream where he perish. This he knows, and will not. Now men, +to our Council of War; for, here and now, we must plan what each and all +shall do.” + +“I shall get a steam launch and follow him,” said Lord Godalming. + +“And I, horses to follow on the bank lest by chance he land,” said Mr. +Morris. + +“Good!” said the Professor, “both good. But neither must go alone. There +must be force to overcome force if need be; the Slovak is strong and +rough, and he carries rude arms.” All the men smiled, for amongst them +they carried a small arsenal. Said Mr. Morris:-- + +“I have brought some Winchesters; they are pretty handy in a crowd, and +there may be wolves. The Count, if you remember, took some other +precautions; he made some requisitions on others that Mrs. Harker could +not quite hear or understand. We must be ready at all points.” Dr. +Seward said:-- + +“I think I had better go with Quincey. We have been accustomed to hunt +together, and we two, well armed, will be a match for whatever may come +along. You must not be alone, Art. It may be necessary to fight the +Slovaks, and a chance thrust--for I don’t suppose these fellows carry +guns--would undo all our plans. There must be no chances, this time; we +shall not rest until the Count’s head and body have been separated, and +we are sure that he cannot re-incarnate.” He looked at Jonathan as he +spoke, and Jonathan looked at me. I could see that the poor dear was +torn about in his mind. Of course he wanted to be with me; but then the +boat service would, most likely, be the one which would destroy the ... +the ... the ... Vampire. (Why did I hesitate to write the word?) He was +silent awhile, and during his silence Dr. Van Helsing spoke:-- + +“Friend Jonathan, this is to you for twice reasons. First, because you +are young and brave and can fight, and all energies may be needed at the +last; and again that it is your right to destroy him--that--which has +wrought such woe to you and yours. Be not afraid for Madam Mina; she +will be my care, if I may. I am old. My legs are not so quick to run as +once; and I am not used to ride so long or to pursue as need be, or to +fight with lethal weapons. But I can be of other service; I can fight in +other way. And I can die, if need be, as well as younger men. Now let +me say that what I would is this: while you, my Lord Godalming and +friend Jonathan go in your so swift little steamboat up the river, and +whilst John and Quincey guard the bank where perchance he might be +landed, I will take Madam Mina right into the heart of the enemy’s +country. Whilst the old fox is tied in his box, floating on the running +stream whence he cannot escape to land--where he dares not raise the lid +of his coffin-box lest his Slovak carriers should in fear leave him to +perish--we shall go in the track where Jonathan went,--from Bistritz +over the Borgo, and find our way to the Castle of Dracula. Here, Madam +Mina’s hypnotic power will surely help, and we shall find our way--all +dark and unknown otherwise--after the first sunrise when we are near +that fateful place. There is much to be done, and other places to be +made sanctify, so that that nest of vipers be obliterated.” Here +Jonathan interrupted him hotly:-- + +“Do you mean to say, Professor Van Helsing, that you would bring Mina, +in her sad case and tainted as she is with that devil’s illness, right +into the jaws of his death-trap? Not for the world! Not for Heaven or +Hell!” He became almost speechless for a minute, and then went on:-- + +“Do you know what the place is? Have you seen that awful den of hellish +infamy--with the very moonlight alive with grisly shapes, and every +speck of dust that whirls in the wind a devouring monster in embryo? +Have you felt the Vampire’s lips upon your throat?” Here he turned to +me, and as his eyes lit on my forehead he threw up his arms with a cry: +“Oh, my God, what have we done to have this terror upon us!” and he sank +down on the sofa in a collapse of misery. The Professor’s voice, as he +spoke in clear, sweet tones, which seemed to vibrate in the air, calmed +us all:-- + +“Oh, my friend, it is because I would save Madam Mina from that awful +place that I would go. God forbid that I should take her into that +place. There is work--wild work--to be done there, that her eyes may not +see. We men here, all save Jonathan, have seen with their own eyes what +is to be done before that place can be purify. Remember that we are in +terrible straits. If the Count escape us this time--and he is strong and +subtle and cunning--he may choose to sleep him for a century, and then +in time our dear one”--he took my hand--“would come to him to keep him +company, and would be as those others that you, Jonathan, saw. You have +told us of their gloating lips; you heard their ribald laugh as they +clutched the moving bag that the Count threw to them. You shudder; and +well may it be. Forgive me that I make you so much pain, but it is +necessary. My friend, is it not a dire need for the which I am giving, +possibly my life? If it were that any one went into that place to stay, +it is I who would have to go to keep them company.” + +“Do as you will,” said Jonathan, with a sob that shook him all over, “we +are in the hands of God!” + + * * * * * + +_Later._--Oh, it did me good to see the way that these brave men worked. +How can women help loving men when they are so earnest, and so true, and +so brave! And, too, it made me think of the wonderful power of money! +What can it not do when it is properly applied; and what might it do +when basely used. I felt so thankful that Lord Godalming is rich, and +that both he and Mr. Morris, who also has plenty of money, are willing +to spend it so freely. For if they did not, our little expedition could +not start, either so promptly or so well equipped, as it will within +another hour. It is not three hours since it was arranged what part each +of us was to do; and now Lord Godalming and Jonathan have a lovely steam +launch, with steam up ready to start at a moment’s notice. Dr. Seward +and Mr. Morris have half a dozen good horses, well appointed. We have +all the maps and appliances of various kinds that can be had. Professor +Van Helsing and I are to leave by the 11:40 train to-night for Veresti, +where we are to get a carriage to drive to the Borgo Pass. We are +bringing a good deal of ready money, as we are to buy a carriage and +horses. We shall drive ourselves, for we have no one whom we can trust +in the matter. The Professor knows something of a great many languages, +so we shall get on all right. We have all got arms, even for me a +large-bore revolver; Jonathan would not be happy unless I was armed like +the rest. Alas! I cannot carry one arm that the rest do; the scar on my +forehead forbids that. Dear Dr. Van Helsing comforts me by telling me +that I am fully armed as there may be wolves; the weather is getting +colder every hour, and there are snow-flurries which come and go as +warnings. + + * * * * * + +_Later._--It took all my courage to say good-bye to my darling. We may +never meet again. Courage, Mina! the Professor is looking at you keenly; +his look is a warning. There must be no tears now--unless it may be that +God will let them fall in gladness. + + +_Jonathan Harker’s Journal._ + +_October 30. Night._--I am writing this in the light from the furnace +door of the steam launch: Lord Godalming is firing up. He is an +experienced hand at the work, as he has had for years a launch of his +own on the Thames, and another on the Norfolk Broads. Regarding our +plans, we finally decided that Mina’s guess was correct, and that if any +waterway was chosen for the Count’s escape back to his Castle, the +Sereth and then the Bistritza at its junction, would be the one. We took +it, that somewhere about the 47th degree, north latitude, would be the +place chosen for the crossing the country between the river and the +Carpathians. We have no fear in running at good speed up the river at +night; there is plenty of water, and the banks are wide enough apart to +make steaming, even in the dark, easy enough. Lord Godalming tells me to +sleep for a while, as it is enough for the present for one to be on +watch. But I cannot sleep--how can I with the terrible danger hanging +over my darling, and her going out into that awful place.... My only +comfort is that we are in the hands of God. Only for that faith it would +be easier to die than to live, and so be quit of all the trouble. Mr. +Morris and Dr. Seward were off on their long ride before we started; +they are to keep up the right bank, far enough off to get on higher +lands where they can see a good stretch of river and avoid the following +of its curves. They have, for the first stages, two men to ride and lead +their spare horses--four in all, so as not to excite curiosity. When +they dismiss the men, which shall be shortly, they shall themselves look +after the horses. It may be necessary for us to join forces; if so they +can mount our whole party. One of the saddles has a movable horn, and +can be easily adapted for Mina, if required. + +It is a wild adventure we are on. Here, as we are rushing along through +the darkness, with the cold from the river seeming to rise up and strike +us; with all the mysterious voices of the night around us, it all comes +home. We seem to be drifting into unknown places and unknown ways; into +a whole world of dark and dreadful things. Godalming is shutting the +furnace door.... + + * * * * * + +_31 October._--Still hurrying along. The day has come, and Godalming is +sleeping. I am on watch. The morning is bitterly cold; the furnace heat +is grateful, though we have heavy fur coats. As yet we have passed only +a few open boats, but none of them had on board any box or package of +anything like the size of the one we seek. The men were scared every +time we turned our electric lamp on them, and fell on their knees and +prayed. + + * * * * * + +_1 November, evening._--No news all day; we have found nothing of the +kind we seek. We have now passed into the Bistritza; and if we are wrong +in our surmise our chance is gone. We have over-hauled every boat, big +and little. Early this morning, one crew took us for a Government boat, +and treated us accordingly. We saw in this a way of smoothing matters, +so at Fundu, where the Bistritza runs into the Sereth, we got a +Roumanian flag which we now fly conspicuously. With every boat which we +have over-hauled since then this trick has succeeded; we have had every +deference shown to us, and not once any objection to whatever we chose +to ask or do. Some of the Slovaks tell us that a big boat passed them, +going at more than usual speed as she had a double crew on board. This +was before they came to Fundu, so they could not tell us whether the +boat turned into the Bistritza or continued on up the Sereth. At Fundu +we could not hear of any such boat, so she must have passed there in the +night. I am feeling very sleepy; the cold is perhaps beginning to tell +upon me, and nature must have rest some time. Godalming insists that he +shall keep the first watch. God bless him for all his goodness to poor +dear Mina and me. + + * * * * * + +_2 November, morning._--It is broad daylight. That good fellow would not +wake me. He says it would have been a sin to, for I slept peacefully and +was forgetting my trouble. It seems brutally selfish to me to have slept +so long, and let him watch all night; but he was quite right. I am a new +man this morning; and, as I sit here and watch him sleeping, I can do +all that is necessary both as to minding the engine, steering, and +keeping watch. I can feel that my strength and energy are coming back to +me. I wonder where Mina is now, and Van Helsing. They should have got to +Veresti about noon on Wednesday. It would take them some time to get the +carriage and horses; so if they had started and travelled hard, they +would be about now at the Borgo Pass. God guide and help them! I am +afraid to think what may happen. If we could only go faster! but we +cannot; the engines are throbbing and doing their utmost. I wonder how +Dr. Seward and Mr. Morris are getting on. There seem to be endless +streams running down the mountains into this river, but as none of them +are very large--at present, at all events, though they are terrible +doubtless in winter and when the snow melts--the horsemen may not have +met much obstruction. I hope that before we get to Strasba we may see +them; for if by that time we have not overtaken the Count, it may be +necessary to take counsel together what to do next. + + +_Dr. Seward’s Diary._ + +_2 November._--Three days on the road. No news, and no time to write it +if there had been, for every moment is precious. We have had only the +rest needful for the horses; but we are both bearing it wonderfully. +Those adventurous days of ours are turning up useful. We must push on; +we shall never feel happy till we get the launch in sight again. + + * * * * * + +_3 November._--We heard at Fundu that the launch had gone up the +Bistritza. I wish it wasn’t so cold. There are signs of snow coming; and +if it falls heavy it will stop us. In such case we must get a sledge and +go on, Russian fashion. + + * * * * * + +_4 November._--To-day we heard of the launch having been detained by an +accident when trying to force a way up the rapids. The Slovak boats get +up all right, by aid of a rope and steering with knowledge. Some went up +only a few hours before. Godalming is an amateur fitter himself, and +evidently it was he who put the launch in trim again. Finally, they got +up the rapids all right, with local help, and are off on the chase +afresh. I fear that the boat is not any better for the accident; the +peasantry tell us that after she got upon smooth water again, she kept +stopping every now and again so long as she was in sight. We must push +on harder than ever; our help may be wanted soon. + + +_Mina Harker’s Journal._ + +_31 October._--Arrived at Veresti at noon. The Professor tells me that +this morning at dawn he could hardly hypnotise me at all, and that all I +could say was: “dark and quiet.” He is off now buying a carriage and +horses. He says that he will later on try to buy additional horses, so +that we may be able to change them on the way. We have something more +than 70 miles before us. The country is lovely, and most interesting; if +only we were under different conditions, how delightful it would be to +see it all. If Jonathan and I were driving through it alone what a +pleasure it would be. To stop and see people, and learn something of +their life, and to fill our minds and memories with all the colour and +picturesqueness of the whole wild, beautiful country and the quaint +people! But, alas!-- + + * * * * * + +_Later._--Dr. Van Helsing has returned. He has got the carriage and +horses; we are to have some dinner, and to start in an hour. The +landlady is putting us up a huge basket of provisions; it seems enough +for a company of soldiers. The Professor encourages her, and whispers to +me that it may be a week before we can get any good food again. He has +been shopping too, and has sent home such a wonderful lot of fur coats +and wraps, and all sorts of warm things. There will not be any chance of +our being cold. + + * * * * * + +We shall soon be off. I am afraid to think what may happen to us. We are +truly in the hands of God. He alone knows what may be, and I pray Him, +with all the strength of my sad and humble soul, that He will watch over +my beloved husband; that whatever may happen, Jonathan may know that I +loved him and honoured him more than I can say, and that my latest and +truest thought will be always for him. + + + + +CHAPTER XXVII + +MINA HARKER’S JOURNAL + + +_1 November._--All day long we have travelled, and at a good speed. The +horses seem to know that they are being kindly treated, for they go +willingly their full stage at best speed. We have now had so many +changes and find the same thing so constantly that we are encouraged to +think that the journey will be an easy one. Dr. Van Helsing is laconic; +he tells the farmers that he is hurrying to Bistritz, and pays them well +to make the exchange of horses. We get hot soup, or coffee, or tea; and +off we go. It is a lovely country; full of beauties of all imaginable +kinds, and the people are brave, and strong, and simple, and seem full +of nice qualities. They are _very, very_ superstitious. In the first +house where we stopped, when the woman who served us saw the scar on my +forehead, she crossed herself and put out two fingers towards me, to +keep off the evil eye. I believe they went to the trouble of putting an +extra amount of garlic into our food; and I can’t abide garlic. Ever +since then I have taken care not to take off my hat or veil, and so have +escaped their suspicions. We are travelling fast, and as we have no +driver with us to carry tales, we go ahead of scandal; but I daresay +that fear of the evil eye will follow hard behind us all the way. The +Professor seems tireless; all day he would not take any rest, though he +made me sleep for a long spell. At sunset time he hypnotised me, and he +says that I answered as usual “darkness, lapping water and creaking +wood”; so our enemy is still on the river. I am afraid to think of +Jonathan, but somehow I have now no fear for him, or for myself. I write +this whilst we wait in a farmhouse for the horses to be got ready. Dr. +Van Helsing is sleeping. Poor dear, he looks very tired and old and +grey, but his mouth is set as firmly as a conqueror’s; even in his sleep +he is instinct with resolution. When we have well started I must make +him rest whilst I drive. I shall tell him that we have days before us, +and we must not break down when most of all his strength will be +needed.... All is ready; we are off shortly. + + * * * * * + +_2 November, morning._--I was successful, and we took turns driving all +night; now the day is on us, bright though cold. There is a strange +heaviness in the air--I say heaviness for want of a better word; I mean +that it oppresses us both. It is very cold, and only our warm furs keep +us comfortable. At dawn Van Helsing hypnotised me; he says I answered +“darkness, creaking wood and roaring water,” so the river is changing as +they ascend. I do hope that my darling will not run any chance of +danger--more than need be; but we are in God’s hands. + + * * * * * + +_2 November, night._--All day long driving. The country gets wilder as +we go, and the great spurs of the Carpathians, which at Veresti seemed +so far from us and so low on the horizon, now seem to gather round us +and tower in front. We both seem in good spirits; I think we make an +effort each to cheer the other; in the doing so we cheer ourselves. Dr. +Van Helsing says that by morning we shall reach the Borgo Pass. The +houses are very few here now, and the Professor says that the last horse +we got will have to go on with us, as we may not be able to change. He +got two in addition to the two we changed, so that now we have a rude +four-in-hand. The dear horses are patient and good, and they give us no +trouble. We are not worried with other travellers, and so even I can +drive. We shall get to the Pass in daylight; we do not want to arrive +before. So we take it easy, and have each a long rest in turn. Oh, what +will to-morrow bring to us? We go to seek the place where my poor +darling suffered so much. God grant that we may be guided aright, and +that He will deign to watch over my husband and those dear to us both, +and who are in such deadly peril. As for me, I am not worthy in His +sight. Alas! I am unclean to His eyes, and shall be until He may deign +to let me stand forth in His sight as one of those who have not incurred +His wrath. + + +_Memorandum by Abraham Van Helsing._ + +_4 November._--This to my old and true friend John Seward, M.D., of +Purfleet, London, in case I may not see him. It may explain. It is +morning, and I write by a fire which all the night I have kept +alive--Madam Mina aiding me. It is cold, cold; so cold that the grey +heavy sky is full of snow, which when it falls will settle for all +winter as the ground is hardening to receive it. It seems to have +affected Madam Mina; she has been so heavy of head all day that she was +not like herself. She sleeps, and sleeps, and sleeps! She who is usual +so alert, have done literally nothing all the day; she even have lost +her appetite. She make no entry into her little diary, she who write so +faithful at every pause. Something whisper to me that all is not well. +However, to-night she is more _vif_. Her long sleep all day have refresh +and restore her, for now she is all sweet and bright as ever. At sunset +I try to hypnotise her, but alas! with no effect; the power has grown +less and less with each day, and to-night it fail me altogether. Well, +God’s will be done--whatever it may be, and whithersoever it may lead! + +Now to the historical, for as Madam Mina write not in her stenography, I +must, in my cumbrous old fashion, that so each day of us may not go +unrecorded. + +We got to the Borgo Pass just after sunrise yesterday morning. When I +saw the signs of the dawn I got ready for the hypnotism. We stopped our +carriage, and got down so that there might be no disturbance. I made a +couch with furs, and Madam Mina, lying down, yield herself as usual, but +more slow and more short time than ever, to the hypnotic sleep. As +before, came the answer: “darkness and the swirling of water.” Then she +woke, bright and radiant and we go on our way and soon reach the Pass. +At this time and place, she become all on fire with zeal; some new +guiding power be in her manifested, for she point to a road and say:-- + +“This is the way.” + +“How know you it?” I ask. + +“Of course I know it,” she answer, and with a pause, add: “Have not my +Jonathan travelled it and wrote of his travel?” + +At first I think somewhat strange, but soon I see that there be only one +such by-road. It is used but little, and very different from the coach +road from the Bukovina to Bistritz, which is more wide and hard, and +more of use. + +So we came down this road; when we meet other ways--not always were we +sure that they were roads at all, for they be neglect and light snow +have fallen--the horses know and they only. I give rein to them, and +they go on so patient. By-and-by we find all the things which Jonathan +have note in that wonderful diary of him. Then we go on for long, long +hours and hours. At the first, I tell Madam Mina to sleep; she try, and +she succeed. She sleep all the time; till at the last, I feel myself to +suspicious grow, and attempt to wake her. But she sleep on, and I may +not wake her though I try. I do not wish to try too hard lest I harm +her; for I know that she have suffer much, and sleep at times be +all-in-all to her. I think I drowse myself, for all of sudden I feel +guilt, as though I have done something; I find myself bolt up, with the +reins in my hand, and the good horses go along jog, jog, just as ever. I +look down and find Madam Mina still sleep. It is now not far off sunset +time, and over the snow the light of the sun flow in big yellow flood, +so that we throw great long shadow on where the mountain rise so steep. +For we are going up, and up; and all is oh! so wild and rocky, as though +it were the end of the world. + +Then I arouse Madam Mina. This time she wake with not much trouble, and +then I try to put her to hypnotic sleep. But she sleep not, being as +though I were not. Still I try and try, till all at once I find her and +myself in dark; so I look round, and find that the sun have gone down. +Madam Mina laugh, and I turn and look at her. She is now quite awake, +and look so well as I never saw her since that night at Carfax when we +first enter the Count’s house. I am amaze, and not at ease then; but she +is so bright and tender and thoughtful for me that I forget all fear. I +light a fire, for we have brought supply of wood with us, and she +prepare food while I undo the horses and set them, tethered in shelter, +to feed. Then when I return to the fire she have my supper ready. I go +to help her; but she smile, and tell me that she have eat already--that +she was so hungry that she would not wait. I like it not, and I have +grave doubts; but I fear to affright her, and so I am silent of it. She +help me and I eat alone; and then we wrap in fur and lie beside the +fire, and I tell her to sleep while I watch. But presently I forget all +of watching; and when I sudden remember that I watch, I find her lying +quiet, but awake, and looking at me with so bright eyes. Once, twice +more the same occur, and I get much sleep till before morning. When I +wake I try to hypnotise her; but alas! though she shut her eyes +obedient, she may not sleep. The sun rise up, and up, and up; and then +sleep come to her too late, but so heavy that she will not wake. I have +to lift her up, and place her sleeping in the carriage when I have +harnessed the horses and made all ready. Madam still sleep, and she look +in her sleep more healthy and more redder than before. And I like it +not. And I am afraid, afraid, afraid!--I am afraid of all things--even +to think but I must go on my way. The stake we play for is life and +death, or more than these, and we must not flinch. + + * * * * * + +_5 November, morning._--Let me be accurate in everything, for though you +and I have seen some strange things together, you may at the first think +that I, Van Helsing, am mad--that the many horrors and the so long +strain on nerves has at the last turn my brain. + +All yesterday we travel, ever getting closer to the mountains, and +moving into a more and more wild and desert land. There are great, +frowning precipices and much falling water, and Nature seem to have held +sometime her carnival. Madam Mina still sleep and sleep; and though I +did have hunger and appeased it, I could not waken her--even for food. I +began to fear that the fatal spell of the place was upon her, tainted as +she is with that Vampire baptism. “Well,” said I to myself, “if it be +that she sleep all the day, it shall also be that I do not sleep at +night.” As we travel on the rough road, for a road of an ancient and +imperfect kind there was, I held down my head and slept. Again I waked +with a sense of guilt and of time passed, and found Madam Mina still +sleeping, and the sun low down. But all was indeed changed; the frowning +mountains seemed further away, and we were near the top of a +steep-rising hill, on summit of which was such a castle as Jonathan tell +of in his diary. At once I exulted and feared; for now, for good or ill, +the end was near. + +I woke Madam Mina, and again tried to hypnotise her; but alas! +unavailing till too late. Then, ere the great dark came upon us--for +even after down-sun the heavens reflected the gone sun on the snow, and +all was for a time in a great twilight--I took out the horses and fed +them in what shelter I could. Then I make a fire; and near it I make +Madam Mina, now awake and more charming than ever, sit comfortable amid +her rugs. I got ready food: but she would not eat, simply saying that +she had not hunger. I did not press her, knowing her unavailingness. But +I myself eat, for I must needs now be strong for all. Then, with the +fear on me of what might be, I drew a ring so big for her comfort, round +where Madam Mina sat; and over the ring I passed some of the wafer, and +I broke it fine so that all was well guarded. She sat still all the +time--so still as one dead; and she grew whiter and ever whiter till the +snow was not more pale; and no word she said. But when I drew near, she +clung to me, and I could know that the poor soul shook her from head to +feet with a tremor that was pain to feel. I said to her presently, when +she had grown more quiet:-- + +“Will you not come over to the fire?” for I wished to make a test of +what she could. She rose obedient, but when she have made a step she +stopped, and stood as one stricken. + +“Why not go on?” I asked. She shook her head, and, coming back, sat +down in her place. Then, looking at me with open eyes, as of one waked +from sleep, she said simply:-- + +“I cannot!” and remained silent. I rejoiced, for I knew that what she +could not, none of those that we dreaded could. Though there might be +danger to her body, yet her soul was safe! + +Presently the horses began to scream, and tore at their tethers till I +came to them and quieted them. When they did feel my hands on them, they +whinnied low as in joy, and licked at my hands and were quiet for a +time. Many times through the night did I come to them, till it arrive to +the cold hour when all nature is at lowest; and every time my coming was +with quiet of them. In the cold hour the fire began to die, and I was +about stepping forth to replenish it, for now the snow came in flying +sweeps and with it a chill mist. Even in the dark there was a light of +some kind, as there ever is over snow; and it seemed as though the +snow-flurries and the wreaths of mist took shape as of women with +trailing garments. All was in dead, grim silence only that the horses +whinnied and cowered, as if in terror of the worst. I began to +fear--horrible fears; but then came to me the sense of safety in that +ring wherein I stood. I began, too, to think that my imaginings were of +the night, and the gloom, and the unrest that I have gone through, and +all the terrible anxiety. It was as though my memories of all Jonathan’s +horrid experience were befooling me; for the snow flakes and the mist +began to wheel and circle round, till I could get as though a shadowy +glimpse of those women that would have kissed him. And then the horses +cowered lower and lower, and moaned in terror as men do in pain. Even +the madness of fright was not to them, so that they could break away. I +feared for my dear Madam Mina when these weird figures drew near and +circled round. I looked at her, but she sat calm, and smiled at me; when +I would have stepped to the fire to replenish it, she caught me and held +me back, and whispered, like a voice that one hears in a dream, so low +it was:-- + +“No! No! Do not go without. Here you are safe!” I turned to her, and +looking in her eyes, said:-- + +“But you? It is for you that I fear!” whereat she laughed--a laugh, low +and unreal, and said:-- + +“Fear for _me_! Why fear for me? None safer in all the world from them +than I am,” and as I wondered at the meaning of her words, a puff of +wind made the flame leap up, and I see the red scar on her forehead. +Then, alas! I knew. Did I not, I would soon have learned, for the +wheeling figures of mist and snow came closer, but keeping ever without +the Holy circle. Then they began to materialise till--if God have not +take away my reason, for I saw it through my eyes--there were before me +in actual flesh the same three women that Jonathan saw in the room, when +they would have kissed his throat. I knew the swaying round forms, the +bright hard eyes, the white teeth, the ruddy colour, the voluptuous +lips. They smiled ever at poor dear Madam Mina; and as their laugh came +through the silence of the night, they twined their arms and pointed to +her, and said in those so sweet tingling tones that Jonathan said were +of the intolerable sweetness of the water-glasses:-- + +“Come, sister. Come to us. Come! Come!” In fear I turned to my poor +Madam Mina, and my heart with gladness leapt like flame; for oh! the +terror in her sweet eyes, the repulsion, the horror, told a story to my +heart that was all of hope. God be thanked she was not, yet, of them. I +seized some of the firewood which was by me, and holding out some of the +Wafer, advanced on them towards the fire. They drew back before me, and +laughed their low horrid laugh. I fed the fire, and feared them not; for +I knew that we were safe within our protections. They could not +approach, me, whilst so armed, nor Madam Mina whilst she remained within +the ring, which she could not leave no more than they could enter. The +horses had ceased to moan, and lay still on the ground; the snow fell on +them softly, and they grew whiter. I knew that there was for the poor +beasts no more of terror. + +And so we remained till the red of the dawn to fall through the +snow-gloom. I was desolate and afraid, and full of woe and terror; but +when that beautiful sun began to climb the horizon life was to me again. +At the first coming of the dawn the horrid figures melted in the +whirling mist and snow; the wreaths of transparent gloom moved away +towards the castle, and were lost. + +Instinctively, with the dawn coming, I turned to Madam Mina, intending +to hypnotise her; but she lay in a deep and sudden sleep, from which I +could not wake her. I tried to hypnotise through her sleep, but she made +no response, none at all; and the day broke. I fear yet to stir. I have +made my fire and have seen the horses, they are all dead. To-day I have +much to do here, and I keep waiting till the sun is up high; for there +may be places where I must go, where that sunlight, though snow and mist +obscure it, will be to me a safety. + +I will strengthen me with breakfast, and then I will to my terrible +work. Madam Mina still sleeps; and, God be thanked! she is calm in her +sleep.... + + +_Jonathan Harker’s Journal._ + +_4 November, evening._--The accident to the launch has been a terrible +thing for us. Only for it we should have overtaken the boat long ago; +and by now my dear Mina would have been free. I fear to think of her, +off on the wolds near that horrid place. We have got horses, and we +follow on the track. I note this whilst Godalming is getting ready. We +have our arms. The Szgany must look out if they mean fight. Oh, if only +Morris and Seward were with us. We must only hope! If I write no more +Good-bye, Mina! God bless and keep you. + + +_Dr. Seward’s Diary._ + +_5 November._--With the dawn we saw the body of Szgany before us dashing +away from the river with their leiter-wagon. They surrounded it in a +cluster, and hurried along as though beset. The snow is falling lightly +and there is a strange excitement in the air. It may be our own +feelings, but the depression is strange. Far off I hear the howling of +wolves; the snow brings them down from the mountains, and there are +dangers to all of us, and from all sides. The horses are nearly ready, +and we are soon off. We ride to death of some one. God alone knows who, +or where, or what, or when, or how it may be.... + + +_Dr. Van Helsing’s Memorandum._ + +_5 November, afternoon._--I am at least sane. Thank God for that mercy +at all events, though the proving it has been dreadful. When I left +Madam Mina sleeping within the Holy circle, I took my way to the castle. +The blacksmith hammer which I took in the carriage from Veresti was +useful; though the doors were all open I broke them off the rusty +hinges, lest some ill-intent or ill-chance should close them, so that +being entered I might not get out. Jonathan’s bitter experience served +me here. By memory of his diary I found my way to the old chapel, for I +knew that here my work lay. The air was oppressive; it seemed as if +there was some sulphurous fume, which at times made me dizzy. Either +there was a roaring in my ears or I heard afar off the howl of wolves. +Then I bethought me of my dear Madam Mina, and I was in terrible plight. +The dilemma had me between his horns. + +Her, I had not dare to take into this place, but left safe from the +Vampire in that Holy circle; and yet even there would be the wolf! I +resolve me that my work lay here, and that as to the wolves we must +submit, if it were God’s will. At any rate it was only death and +freedom beyond. So did I choose for her. Had it but been for myself the +choice had been easy, the maw of the wolf were better to rest in than +the grave of the Vampire! So I make my choice to go on with my work. + +I knew that there were at least three graves to find--graves that are +inhabit; so I search, and search, and I find one of them. She lay in her +Vampire sleep, so full of life and voluptuous beauty that I shudder as +though I have come to do murder. Ah, I doubt not that in old time, when +such things were, many a man who set forth to do such a task as mine, +found at the last his heart fail him, and then his nerve. So he delay, +and delay, and delay, till the mere beauty and the fascination of the +wanton Un-Dead have hypnotise him; and he remain on and on, till sunset +come, and the Vampire sleep be over. Then the beautiful eyes of the fair +woman open and look love, and the voluptuous mouth present to a +kiss--and man is weak. And there remain one more victim in the Vampire +fold; one more to swell the grim and grisly ranks of the Un-Dead!... + +There is some fascination, surely, when I am moved by the mere presence +of such an one, even lying as she lay in a tomb fretted with age and +heavy with the dust of centuries, though there be that horrid odour such +as the lairs of the Count have had. Yes, I was moved--I, Van Helsing, +with all my purpose and with my motive for hate--I was moved to a +yearning for delay which seemed to paralyse my faculties and to clog my +very soul. It may have been that the need of natural sleep, and the +strange oppression of the air were beginning to overcome me. Certain it +was that I was lapsing into sleep, the open-eyed sleep of one who yields +to a sweet fascination, when there came through the snow-stilled air a +long, low wail, so full of woe and pity that it woke me like the sound +of a clarion. For it was the voice of my dear Madam Mina that I heard. + +Then I braced myself again to my horrid task, and found by wrenching +away tomb-tops one other of the sisters, the other dark one. I dared not +pause to look on her as I had on her sister, lest once more I should +begin to be enthrall; but I go on searching until, presently, I find in +a high great tomb as if made to one much beloved that other fair sister +which, like Jonathan I had seen to gather herself out of the atoms of +the mist. She was so fair to look on, so radiantly beautiful, so +exquisitely voluptuous, that the very instinct of man in me, which calls +some of my sex to love and to protect one of hers, made my head whirl +with new emotion. But God be thanked, that soul-wail of my dear Madam +Mina had not died out of my ears; and, before the spell could be wrought +further upon me, I had nerved myself to my wild work. By this time I had +searched all the tombs in the chapel, so far as I could tell; and as +there had been only three of these Un-Dead phantoms around us in the +night, I took it that there were no more of active Un-Dead existent. +There was one great tomb more lordly than all the rest; huge it was, and +nobly proportioned. On it was but one word + + DRACULA. + +This then was the Un-Dead home of the King-Vampire, to whom so many more +were due. Its emptiness spoke eloquent to make certain what I knew. +Before I began to restore these women to their dead selves through my +awful work, I laid in Dracula’s tomb some of the Wafer, and so banished +him from it, Un-Dead, for ever. + +Then began my terrible task, and I dreaded it. Had it been but one, it +had been easy, comparative. But three! To begin twice more after I had +been through a deed of horror; for if it was terrible with the sweet +Miss Lucy, what would it not be with these strange ones who had survived +through centuries, and who had been strengthened by the passing of the +years; who would, if they could, have fought for their foul lives.... + +Oh, my friend John, but it was butcher work; had I not been nerved by +thoughts of other dead, and of the living over whom hung such a pall of +fear, I could not have gone on. I tremble and tremble even yet, though +till all was over, God be thanked, my nerve did stand. Had I not seen +the repose in the first place, and the gladness that stole over it just +ere the final dissolution came, as realisation that the soul had been +won, I could not have gone further with my butchery. I could not have +endured the horrid screeching as the stake drove home; the plunging of +writhing form, and lips of bloody foam. I should have fled in terror and +left my work undone. But it is over! And the poor souls, I can pity them +now and weep, as I think of them placid each in her full sleep of death +for a short moment ere fading. For, friend John, hardly had my knife +severed the head of each, before the whole body began to melt away and +crumble in to its native dust, as though the death that should have come +centuries agone had at last assert himself and say at once and loud “I +am here!” + +Before I left the castle I so fixed its entrances that never more can +the Count enter there Un-Dead. + +When I stepped into the circle where Madam Mina slept, she woke from her +sleep, and, seeing, me, cried out in pain that I had endured too much. + +“Come!” she said, “come away from this awful place! Let us go to meet my +husband who is, I know, coming towards us.” She was looking thin and +pale and weak; but her eyes were pure and glowed with fervour. I was +glad to see her paleness and her illness, for my mind was full of the +fresh horror of that ruddy vampire sleep. + +And so with trust and hope, and yet full of fear, we go eastward to meet +our friends--and _him_--whom Madam Mina tell me that she _know_ are +coming to meet us. + + +_Mina Harker’s Journal._ + +_6 November._--It was late in the afternoon when the Professor and I +took our way towards the east whence I knew Jonathan was coming. We did +not go fast, though the way was steeply downhill, for we had to take +heavy rugs and wraps with us; we dared not face the possibility of being +left without warmth in the cold and the snow. We had to take some of our +provisions, too, for we were in a perfect desolation, and, so far as we +could see through the snowfall, there was not even the sign of +habitation. When we had gone about a mile, I was tired with the heavy +walking and sat down to rest. Then we looked back and saw where the +clear line of Dracula’s castle cut the sky; for we were so deep under +the hill whereon it was set that the angle of perspective of the +Carpathian mountains was far below it. We saw it in all its grandeur, +perched a thousand feet on the summit of a sheer precipice, and with +seemingly a great gap between it and the steep of the adjacent mountain +on any side. There was something wild and uncanny about the place. We +could hear the distant howling of wolves. They were far off, but the +sound, even though coming muffled through the deadening snowfall, was +full of terror. I knew from the way Dr. Van Helsing was searching about +that he was trying to seek some strategic point, where we would be less +exposed in case of attack. The rough roadway still led downwards; we +could trace it through the drifted snow. + +In a little while the Professor signalled to me, so I got up and joined +him. He had found a wonderful spot, a sort of natural hollow in a rock, +with an entrance like a doorway between two boulders. He took me by the +hand and drew me in: “See!” he said, “here you will be in shelter; and +if the wolves do come I can meet them one by one.” He brought in our +furs, and made a snug nest for me, and got out some provisions and +forced them upon me. But I could not eat; to even try to do so was +repulsive to me, and, much as I would have liked to please him, I could +not bring myself to the attempt. He looked very sad, but did not +reproach me. Taking his field-glasses from the case, he stood on the top +of the rock, and began to search the horizon. Suddenly he called out:-- + +“Look! Madam Mina, look! look!” I sprang up and stood beside him on the +rock; he handed me his glasses and pointed. The snow was now falling +more heavily, and swirled about fiercely, for a high wind was beginning +to blow. However, there were times when there were pauses between the +snow flurries and I could see a long way round. From the height where we +were it was possible to see a great distance; and far off, beyond the +white waste of snow, I could see the river lying like a black ribbon in +kinks and curls as it wound its way. Straight in front of us and not far +off--in fact, so near that I wondered we had not noticed before--came a +group of mounted men hurrying along. In the midst of them was a cart, a +long leiter-wagon which swept from side to side, like a dog’s tail +wagging, with each stern inequality of the road. Outlined against the +snow as they were, I could see from the men’s clothes that they were +peasants or gypsies of some kind. + +On the cart was a great square chest. My heart leaped as I saw it, for I +felt that the end was coming. The evening was now drawing close, and +well I knew that at sunset the Thing, which was till then imprisoned +there, would take new freedom and could in any of many forms elude all +pursuit. In fear I turned to the Professor; to my consternation, +however, he was not there. An instant later, I saw him below me. Round +the rock he had drawn a circle, such as we had found shelter in last +night. When he had completed it he stood beside me again, saying:-- + +“At least you shall be safe here from _him_!” He took the glasses from +me, and at the next lull of the snow swept the whole space below us. +“See,” he said, “they come quickly; they are flogging the horses, and +galloping as hard as they can.” He paused and went on in a hollow +voice:-- + +“They are racing for the sunset. We may be too late. God’s will be +done!” Down came another blinding rush of driving snow, and the whole +landscape was blotted out. It soon passed, however, and once more his +glasses were fixed on the plain. Then came a sudden cry:-- + +“Look! Look! Look! See, two horsemen follow fast, coming up from the +south. It must be Quincey and John. Take the glass. Look before the snow +blots it all out!” I took it and looked. The two men might be Dr. Seward +and Mr. Morris. I knew at all events that neither of them was Jonathan. +At the same time I _knew_ that Jonathan was not far off; looking around +I saw on the north side of the coming party two other men, riding at +break-neck speed. One of them I knew was Jonathan, and the other I took, +of course, to be Lord Godalming. They, too, were pursuing the party with +the cart. When I told the Professor he shouted in glee like a schoolboy, +and, after looking intently till a snow fall made sight impossible, he +laid his Winchester rifle ready for use against the boulder at the +opening of our shelter. “They are all converging,” he said. “When the +time comes we shall have gypsies on all sides.” I got out my revolver +ready to hand, for whilst we were speaking the howling of wolves came +louder and closer. When the snow storm abated a moment we looked again. +It was strange to see the snow falling in such heavy flakes close to us, +and beyond, the sun shining more and more brightly as it sank down +towards the far mountain tops. Sweeping the glass all around us I could +see here and there dots moving singly and in twos and threes and larger +numbers--the wolves were gathering for their prey. + +Every instant seemed an age whilst we waited. The wind came now in +fierce bursts, and the snow was driven with fury as it swept upon us in +circling eddies. At times we could not see an arm’s length before us; +but at others, as the hollow-sounding wind swept by us, it seemed to +clear the air-space around us so that we could see afar off. We had of +late been so accustomed to watch for sunrise and sunset, that we knew +with fair accuracy when it would be; and we knew that before long the +sun would set. It was hard to believe that by our watches it was less +than an hour that we waited in that rocky shelter before the various +bodies began to converge close upon us. The wind came now with fiercer +and more bitter sweeps, and more steadily from the north. It seemingly +had driven the snow clouds from us, for, with only occasional bursts, +the snow fell. We could distinguish clearly the individuals of each +party, the pursued and the pursuers. Strangely enough those pursued did +not seem to realise, or at least to care, that they were pursued; they +seemed, however, to hasten with redoubled speed as the sun dropped lower +and lower on the mountain tops. + +Closer and closer they drew. The Professor and I crouched down behind +our rock, and held our weapons ready; I could see that he was determined +that they should not pass. One and all were quite unaware of our +presence. + +All at once two voices shouted out to: “Halt!” One was my Jonathan’s, +raised in a high key of passion; the other Mr. Morris’ strong resolute +tone of quiet command. The gypsies may not have known the language, but +there was no mistaking the tone, in whatever tongue the words were +spoken. Instinctively they reined in, and at the instant Lord Godalming +and Jonathan dashed up at one side and Dr. Seward and Mr. Morris on the +other. The leader of the gypsies, a splendid-looking fellow who sat his +horse like a centaur, waved them back, and in a fierce voice gave to his +companions some word to proceed. They lashed the horses which sprang +forward; but the four men raised their Winchester rifles, and in an +unmistakable way commanded them to stop. At the same moment Dr. Van +Helsing and I rose behind the rock and pointed our weapons at them. +Seeing that they were surrounded the men tightened their reins and drew +up. The leader turned to them and gave a word at which every man of the +gypsy party drew what weapon he carried, knife or pistol, and held +himself in readiness to attack. Issue was joined in an instant. + +The leader, with a quick movement of his rein, threw his horse out in +front, and pointing first to the sun--now close down on the hill +tops--and then to the castle, said something which I did not understand. +For answer, all four men of our party threw themselves from their horses +and dashed towards the cart. I should have felt terrible fear at seeing +Jonathan in such danger, but that the ardour of battle must have been +upon me as well as the rest of them; I felt no fear, but only a wild, +surging desire to do something. Seeing the quick movement of our +parties, the leader of the gypsies gave a command; his men instantly +formed round the cart in a sort of undisciplined endeavour, each one +shouldering and pushing the other in his eagerness to carry out the +order. + +In the midst of this I could see that Jonathan on one side of the ring +of men, and Quincey on the other, were forcing a way to the cart; it was +evident that they were bent on finishing their task before the sun +should set. Nothing seemed to stop or even to hinder them. Neither the +levelled weapons nor the flashing knives of the gypsies in front, nor +the howling of the wolves behind, appeared to even attract their +attention. Jonathan’s impetuosity, and the manifest singleness of his +purpose, seemed to overawe those in front of him; instinctively they +cowered, aside and let him pass. In an instant he had jumped upon the +cart, and, with a strength which seemed incredible, raised the great +box, and flung it over the wheel to the ground. In the meantime, Mr. +Morris had had to use force to pass through his side of the ring of +Szgany. All the time I had been breathlessly watching Jonathan I had, +with the tail of my eye, seen him pressing desperately forward, and had +seen the knives of the gypsies flash as he won a way through them, and +they cut at him. He had parried with his great bowie knife, and at first +I thought that he too had come through in safety; but as he sprang +beside Jonathan, who had by now jumped from the cart, I could see that +with his left hand he was clutching at his side, and that the blood was +spurting through his fingers. He did not delay notwithstanding this, for +as Jonathan, with desperate energy, attacked one end of the chest, +attempting to prize off the lid with his great Kukri knife, he attacked +the other frantically with his bowie. Under the efforts of both men the +lid began to yield; the nails drew with a quick screeching sound, and +the top of the box was thrown back. + +By this time the gypsies, seeing themselves covered by the Winchesters, +and at the mercy of Lord Godalming and Dr. Seward, had given in and made +no resistance. The sun was almost down on the mountain tops, and the +shadows of the whole group fell long upon the snow. I saw the Count +lying within the box upon the earth, some of which the rude falling from +the cart had scattered over him. He was deathly pale, just like a waxen +image, and the red eyes glared with the horrible vindictive look which I +knew too well. + +As I looked, the eyes saw the sinking sun, and the look of hate in them +turned to triumph. + +But, on the instant, came the sweep and flash of Jonathan’s great knife. +I shrieked as I saw it shear through the throat; whilst at the same +moment Mr. Morris’s bowie knife plunged into the heart. + +It was like a miracle; but before our very eyes, and almost in the +drawing of a breath, the whole body crumbled into dust and passed from +our sight. + +I shall be glad as long as I live that even in that moment of final +dissolution, there was in the face a look of peace, such as I never +could have imagined might have rested there. + +The Castle of Dracula now stood out against the red sky, and every stone +of its broken battlements was articulated against the light of the +setting sun. + +The gypsies, taking us as in some way the cause of the extraordinary +disappearance of the dead man, turned, without a word, and rode away as +if for their lives. Those who were unmounted jumped upon the +leiter-wagon and shouted to the horsemen not to desert them. The wolves, +which had withdrawn to a safe distance, followed in their wake, leaving +us alone. + +Mr. Morris, who had sunk to the ground, leaned on his elbow, holding his +hand pressed to his side; the blood still gushed through his fingers. I +flew to him, for the Holy circle did not now keep me back; so did the +two doctors. Jonathan knelt behind him and the wounded man laid back his +head on his shoulder. With a sigh he took, with a feeble effort, my hand +in that of his own which was unstained. He must have seen the anguish of +my heart in my face, for he smiled at me and said:-- + +“I am only too happy to have been of any service! Oh, God!” he cried +suddenly, struggling up to a sitting posture and pointing to me, “It was +worth for this to die! Look! look!” + +The sun was now right down upon the mountain top, and the red gleams +fell upon my face, so that it was bathed in rosy light. With one impulse +the men sank on their knees and a deep and earnest “Amen” broke from all +as their eyes followed the pointing of his finger. The dying man +spoke:-- + +“Now God be thanked that all has not been in vain! See! the snow is not +more stainless than her forehead! The curse has passed away!” + +And, to our bitter grief, with a smile and in silence, he died, a +gallant gentleman. + + + + + NOTE + + +Seven years ago we all went through the flames; and the happiness of +some of us since then is, we think, well worth the pain we endured. It +is an added joy to Mina and to me that our boy’s birthday is the same +day as that on which Quincey Morris died. His mother holds, I know, the +secret belief that some of our brave friend’s spirit has passed into +him. His bundle of names links all our little band of men together; but +we call him Quincey. + +In the summer of this year we made a journey to Transylvania, and went +over the old ground which was, and is, to us so full of vivid and +terrible memories. It was almost impossible to believe that the things +which we had seen with our own eyes and heard with our own ears were +living truths. Every trace of all that had been was blotted out. The +castle stood as before, reared high above a waste of desolation. + +When we got home we were talking of the old time--which we could all +look back on without despair, for Godalming and Seward are both happily +married. I took the papers from the safe where they had been ever since +our return so long ago. We were struck with the fact, that in all the +mass of material of which the record is composed, there is hardly one +authentic document; nothing but a mass of typewriting, except the later +note-books of Mina and Seward and myself, and Van Helsing’s memorandum. +We could hardly ask any one, even did we wish to, to accept these as +proofs of so wild a story. Van Helsing summed it all up as he said, with +our boy on his knee:-- + +“We want no proofs; we ask none to believe us! This boy will some day +know what a brave and gallant woman his mother is. Already he knows her +sweetness and loving care; later on he will understand how some men so +loved her, that they did dare much for her sake.” + +JONATHAN HARKER. + + THE END + + * * * * * + + _There’s More to Follow!_ + + More stories of the sort you like; more, probably, by the author of + this one; more than 500 titles all told by writers of world-wide + reputation, in the Authors’ Alphabetical List which you will find + on the _reverse side_ of the wrapper of this book. Look it over + before you lay it aside. There are books here you are sure to + want--some, possibly, that you have _always_ wanted. + + It is a _selected_ list; every book in it has achieved a certain + measure of _success_. + + The Grosset & Dunlap list is not only the greatest Index of Good + Fiction available, it represents in addition a generally accepted + Standard of Value. It will pay you to + + _Look on the Other Side of the Wrapper!_ + + _In case the wrapper is lost write to the publishers for a complete + catalog_ + + * * * * * + +DETECTIVE STORIES BY J. S. FLETCHER + +May be had wherever books are sold. Ask for Grosset & Dunlap’s list + + +THE SECRET OF THE BARBICAN + +THE ANNEXATION SOCIETY + +THE WOLVES AND THE LAMB + +GREEN INK + +THE KING versus WARGRAVE + +THE LOST MR. LINTHWAITE + +THE MILL OF MANY WINDOWS + +THE HEAVEN-KISSED HILL + +THE MIDDLE TEMPLE MURDER + +RAVENSDENE COURT + +THE RAYNER-SLADE AMALGAMATION + +THE SAFETY PIN + +THE SECRET WAY + +THE VALLEY OF HEADSTRONG MEN + +_Ask for Complete free list of G. & D. Popular Copyrighted Fiction_ + +GROSSET & DUNLAP, _Publishers_, NEW YORK + + + + +*** END OF THE PROJECT GUTENBERG EBOOK DRACULA *** + + + + +Updated editions will replace the previous one—the old editions will +be renamed. + +Creating the works from print editions not protected by U.S. copyright +law means that no one owns a United States copyright in these works, +so the Foundation (and you!) can copy and distribute it in the United +States without permission and without paying copyright +royalties. Special rules, set forth in the General Terms of Use part +of this license, apply to copying and distributing Project +Gutenberg™ electronic works to protect the PROJECT GUTENBERG™ +concept and trademark. Project Gutenberg is a registered trademark, +and may not be used if you charge for an eBook, except by following +the terms of the trademark license, including paying royalties for use +of the Project Gutenberg trademark. If you do not charge anything for +copies of this eBook, complying with the trademark license is very +easy. You may use this eBook for nearly any purpose such as creation +of derivative works, reports, performances and research. Project +Gutenberg eBooks may be modified and printed and given away—you may +do practically ANYTHING in the United States with eBooks not protected +by U.S. copyright law. Redistribution is subject to the trademark +license, especially commercial redistribution. + + +START: FULL LICENSE + +THE FULL PROJECT GUTENBERG LICENSE + +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg™ mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase “Project +Gutenberg”), you agree to comply with all the terms of the Full +Project Gutenberg™ License available with this file or online at +www.gutenberg.org/license. + +Section 1. General Terms of Use and Redistributing Project Gutenberg™ +electronic works + +1.A. By reading or using any part of this Project Gutenberg™ +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or +destroy all copies of Project Gutenberg™ electronic works in your +possession. If you paid a fee for obtaining a copy of or access to a +Project Gutenberg™ electronic work and you do not agree to be bound +by the terms of this agreement, you may obtain a refund from the person +or entity to whom you paid the fee as set forth in paragraph 1.E.8. + +1.B. “Project Gutenberg” is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg™ electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg™ electronic works if you follow the terms of this +agreement and help preserve free future access to Project Gutenberg™ +electronic works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation (“the +Foundation” or PGLAF), owns a compilation copyright in the collection +of Project Gutenberg™ electronic works. Nearly all the individual +works in the collection are in the public domain in the United +States. If an individual work is unprotected by copyright law in the +United States and you are located in the United States, we do not +claim a right to prevent you from copying, distributing, performing, +displaying or creating derivative works based on the work as long as +all references to Project Gutenberg are removed. Of course, we hope +that you will support the Project Gutenberg™ mission of promoting +free access to electronic works by freely sharing Project Gutenberg™ +works in compliance with the terms of this agreement for keeping the +Project Gutenberg™ name associated with the work. You can easily +comply with the terms of this agreement by keeping this work in the +same format with its attached full Project Gutenberg™ License when +you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are +in a constant state of change. If you are outside the United States, +check the laws of your country in addition to the terms of this +agreement before downloading, copying, displaying, performing, +distributing or creating derivative works based on this work or any +other Project Gutenberg™ work. The Foundation makes no +representations concerning the copyright status of any work in any +country other than the United States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other +immediate access to, the full Project Gutenberg™ License must appear +prominently whenever any copy of a Project Gutenberg™ work (any work +on which the phrase “Project Gutenberg” appears, or with which the +phrase “Project Gutenberg” is associated) is accessed, displayed, +performed, viewed, copied or distributed: + + This eBook is for the use of anyone anywhere in the United States and most + other parts of the world at no cost and with almost no restrictions + whatsoever. You may copy it, give it away or re-use it under the terms + of the Project Gutenberg License included with this eBook or online + at www.gutenberg.org. If you + are not located in the United States, you will have to check the laws + of the country where you are located before using this eBook. + +1.E.2. If an individual Project Gutenberg™ electronic work is +derived from texts not protected by U.S. copyright law (does not +contain a notice indicating that it is posted with permission of the +copyright holder), the work can be copied and distributed to anyone in +the United States without paying any fees or charges. If you are +redistributing or providing access to a work with the phrase “Project +Gutenberg” associated with or appearing on the work, you must comply +either with the requirements of paragraphs 1.E.1 through 1.E.7 or +obtain permission for the use of the work and the Project Gutenberg™ +trademark as set forth in paragraphs 1.E.8 or 1.E.9. + +1.E.3. If an individual Project Gutenberg™ electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any +additional terms imposed by the copyright holder. Additional terms +will be linked to the Project Gutenberg™ License for all works +posted with the permission of the copyright holder found at the +beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg™ +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg™. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg™ License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including +any word processing or hypertext form. However, if you provide access +to or distribute copies of a Project Gutenberg™ work in a format +other than “Plain Vanilla ASCII” or other format used in the official +version posted on the official Project Gutenberg™ website +(www.gutenberg.org), you must, at no additional cost, fee or expense +to the user, provide a copy, a means of exporting a copy, or a means +of obtaining a copy upon request, of the work in its original “Plain +Vanilla ASCII” or other form. Any alternate format must include the +full Project Gutenberg™ License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg™ works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg™ electronic works +provided that: + + • You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg™ works calculated using the method + you already use to calculate your applicable taxes. The fee is owed + to the owner of the Project Gutenberg™ trademark, but he has + agreed to donate royalties under this paragraph to the Project + Gutenberg Literary Archive Foundation. Royalty payments must be paid + within 60 days following each date on which you prepare (or are + legally required to prepare) your periodic tax returns. Royalty + payments should be clearly marked as such and sent to the Project + Gutenberg Literary Archive Foundation at the address specified in + Section 4, “Information about donations to the Project Gutenberg + Literary Archive Foundation.” + + • You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg™ + License. You must require such a user to return or destroy all + copies of the works possessed in a physical medium and discontinue + all use of and all access to other copies of Project Gutenberg™ + works. + + • You provide, in accordance with paragraph 1.F.3, a full refund of + any money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days of + receipt of the work. + + • You comply with all other terms of this agreement for free + distribution of Project Gutenberg™ works. + + +1.E.9. If you wish to charge a fee or distribute a Project +Gutenberg™ electronic work or group of works on different terms than +are set forth in this agreement, you must obtain permission in writing +from the Project Gutenberg Literary Archive Foundation, the manager of +the Project Gutenberg™ trademark. Contact the Foundation as set +forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +works not protected by U.S. copyright law in creating the Project +Gutenberg™ collection. Despite these efforts, Project Gutenberg™ +electronic works, and the medium on which they may be stored, may +contain “Defects,” such as, but not limited to, incomplete, inaccurate +or corrupt data, transcription errors, a copyright or other +intellectual property infringement, a defective or damaged disk or +other medium, a computer virus, or computer codes that damage or +cannot be read by your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right +of Replacement or Refund” described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg™ trademark, and any other party distributing a Project +Gutenberg™ electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium +with your written explanation. The person or entity that provided you +with the defective work may elect to provide a replacement copy in +lieu of a refund. If you received the work electronically, the person +or entity providing it to you may choose to give you a second +opportunity to receive the work electronically in lieu of a refund. If +the second copy is also defective, you may demand a refund in writing +without further opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO +OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of +damages. If any disclaimer or limitation set forth in this agreement +violates the law of the state applicable to this agreement, the +agreement shall be interpreted to make the maximum disclaimer or +limitation permitted by the applicable state law. The invalidity or +unenforceability of any provision of this agreement shall not void the +remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg™ electronic works in +accordance with this agreement, and any volunteers associated with the +production, promotion and distribution of Project Gutenberg™ +electronic works, harmless from all liability, costs and expenses, +including legal fees, that arise directly or indirectly from any of +the following which you do or cause to occur: (a) distribution of this +or any Project Gutenberg™ work, (b) alteration, modification, or +additions or deletions to any Project Gutenberg™ work, and (c) any +Defect you cause. + +Section 2. Information about the Mission of Project Gutenberg™ + +Project Gutenberg™ is synonymous with the free distribution of +electronic works in formats readable by the widest variety of +computers including obsolete, old, middle-aged and new computers. It +exists because of the efforts of hundreds of volunteers and donations +from people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need are critical to reaching Project Gutenberg™’s +goals and ensuring that the Project Gutenberg™ collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg™ and future +generations. To learn more about the Project Gutenberg Literary +Archive Foundation and how your efforts and donations can help, see +Sections 3 and 4 and the Foundation information page at www.gutenberg.org. + +Section 3. Information about the Project Gutenberg Literary Archive Foundation + +The Project Gutenberg Literary Archive Foundation is a non-profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation’s EIN or federal tax identification +number is 64-6221541. Contributions to the Project Gutenberg Literary +Archive Foundation are tax deductible to the full extent permitted by +U.S. federal laws and your state’s laws. + +The Foundation’s business office is located at 809 North 1500 West, +Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up +to date contact information can be found at the Foundation’s website +and official page at www.gutenberg.org/contact + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg™ depends upon and cannot survive without widespread +public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine-readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To SEND +DONATIONS or determine the status of compliance for any particular state +visit www.gutenberg.org/donate. + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including checks, online payments and credit card donations. To +donate, please visit: www.gutenberg.org/donate. + +Section 5. General Information About Project Gutenberg™ electronic works + +Professor Michael S. Hart was the originator of the Project +Gutenberg™ concept of a library of electronic works that could be +freely shared with anyone. For forty years, he produced and +distributed Project Gutenberg™ eBooks with only a loose network of +volunteer support. + +Project Gutenberg™ eBooks are often created from several printed +editions, all of which are confirmed as not protected by copyright in +the U.S. unless a copyright notice is included. Thus, we do not +necessarily keep eBooks in compliance with any particular paper +edition. + +Most people start at our website which has the main PG search +facility: www.gutenberg.org. + +This website includes information about Project Gutenberg™, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. + + diff --git a/chapters/pg345.txt b/chapters/pg345.txt new file mode 100644 index 00000000..368aeadf --- /dev/null +++ b/chapters/pg345.txt @@ -0,0 +1,15849 @@ +The Project Gutenberg eBook of Dracula + +This ebook is for the use of anyone anywhere in the United States and +most other parts of the world at no cost and with almost no restrictions +whatsoever. You may copy it, give it away or re-use it under the terms +of the Project Gutenberg License included with this ebook or online +at www.gutenberg.org. If you are not located in the United States, +you will have to check the laws of the country where you are located +before using this eBook. + +Title: Dracula + +Author: Bram Stoker + +Release date: October 1, 1995 [eBook #345] + Most recently updated: September 24, 2025 + +Language: English + +Credits: Chuck Greif and the Online Distributed Proofreading Team + + +*** START OF THE PROJECT GUTENBERG EBOOK DRACULA *** + + + + + DRACULA + + _by_ + + Bram Stoker + + [Illustration: colophon] + + NEW YORK + + GROSSET & DUNLAP + + _Publishers_ + + Copyright, 1897, in the United States of America, according + to Act of Congress, by Bram Stoker + + [_All rights reserved._] + + PRINTED IN THE UNITED STATES + AT + THE COUNTRY LIFE PRESS, GARDEN CITY, N.Y. + + + + + TO + + MY DEAR FRIEND + + HOMMY-BEG + + + + +Contents + +CHAPTER I. Jonathan Harker’s Journal +CHAPTER II. Jonathan Harker’s Journal +CHAPTER III. Jonathan Harker’s Journal +CHAPTER IV. Jonathan Harker’s Journal +CHAPTER V. Letters—Lucy and Mina +CHAPTER VI. Mina Murray’s Journal +CHAPTER VII. Cutting from “The Dailygraph,” 8 August +CHAPTER VIII. Mina Murray’s Journal +CHAPTER IX. Mina Murray’s Journal +CHAPTER X. Mina Murray’s Journal +CHAPTER XI. Lucy Westenra’s Diary +CHAPTER XII. Dr. Seward’s Diary +CHAPTER XIII. Dr. Seward’s Diary +CHAPTER XIV. Mina Harker’s Journal +CHAPTER XV. Dr. Seward’s Diary +CHAPTER XVI. Dr. Seward’s Diary +CHAPTER XVII. Dr. Seward’s Diary +CHAPTER XVIII. Dr. Seward’s Diary +CHAPTER XIX. Jonathan Harker’s Journal +CHAPTER XX. Jonathan Harker’s Journal +CHAPTER XXI. Dr. Seward’s Diary +CHAPTER XXII. Jonathan Harker’s Journal +CHAPTER XXIII. Dr. Seward’s Diary +CHAPTER XXIV. Dr. Seward’s Phonograph Diary, spoken by Van Helsing +CHAPTER XXV. Dr. Seward’s Diary +CHAPTER XXVI. Dr. Seward’s Diary +CHAPTER XXVII. Mina Harker’s Journal + + + + +How these papers have been placed in sequence will be made manifest in +the reading of them. All needless matters have been eliminated, so that +a history almost at variance with the possibilities of later-day belief +may stand forth as simple fact. There is throughout no statement of +past things wherein memory may err, for all the records chosen are +exactly contemporary, given from the standpoints and within the range +of knowledge of those who made them. + + + + +DRACULA + + + + +CHAPTER I + +JONATHAN HARKER’S JOURNAL + +(_Kept in shorthand._) + + +_3 May. Bistritz._--Left Munich at 8:35 P. M., on 1st May, arriving at +Vienna early next morning; should have arrived at 6:46, but train was an +hour late. Buda-Pesth seems a wonderful place, from the glimpse which I +got of it from the train and the little I could walk through the +streets. I feared to go very far from the station, as we had arrived +late and would start as near the correct time as possible. The +impression I had was that we were leaving the West and entering the +East; the most western of splendid bridges over the Danube, which is +here of noble width and depth, took us among the traditions of Turkish +rule. + +We left in pretty good time, and came after nightfall to Klausenburgh. +Here I stopped for the night at the Hotel Royale. I had for dinner, or +rather supper, a chicken done up some way with red pepper, which was +very good but thirsty. (_Mem._, get recipe for Mina.) I asked the +waiter, and he said it was called “paprika hendl,” and that, as it was a +national dish, I should be able to get it anywhere along the +Carpathians. I found my smattering of German very useful here; indeed, I +don’t know how I should be able to get on without it. + +Having had some time at my disposal when in London, I had visited the +British Museum, and made search among the books and maps in the library +regarding Transylvania; it had struck me that some foreknowledge of the +country could hardly fail to have some importance in dealing with a +nobleman of that country. I find that the district he named is in the +extreme east of the country, just on the borders of three states, +Transylvania, Moldavia and Bukovina, in the midst of the Carpathian +mountains; one of the wildest and least known portions of Europe. I was +not able to light on any map or work giving the exact locality of the +Castle Dracula, as there are no maps of this country as yet to compare +with our own Ordnance Survey maps; but I found that Bistritz, the post +town named by Count Dracula, is a fairly well-known place. I shall enter +here some of my notes, as they may refresh my memory when I talk over my +travels with Mina. + +In the population of Transylvania there are four distinct nationalities: +Saxons in the South, and mixed with them the Wallachs, who are the +descendants of the Dacians; Magyars in the West, and Szekelys in the +East and North. I am going among the latter, who claim to be descended +from Attila and the Huns. This may be so, for when the Magyars conquered +the country in the eleventh century they found the Huns settled in it. I +read that every known superstition in the world is gathered into the +horseshoe of the Carpathians, as if it were the centre of some sort of +imaginative whirlpool; if so my stay may be very interesting. (_Mem._, I +must ask the Count all about them.) + +I did not sleep well, though my bed was comfortable enough, for I had +all sorts of queer dreams. There was a dog howling all night under my +window, which may have had something to do with it; or it may have been +the paprika, for I had to drink up all the water in my carafe, and was +still thirsty. Towards morning I slept and was wakened by the continuous +knocking at my door, so I guess I must have been sleeping soundly then. +I had for breakfast more paprika, and a sort of porridge of maize flour +which they said was “mamaliga,” and egg-plant stuffed with forcemeat, a +very excellent dish, which they call “impletata.” (_Mem._, get recipe +for this also.) I had to hurry breakfast, for the train started a little +before eight, or rather it ought to have done so, for after rushing to +the station at 7:30 I had to sit in the carriage for more than an hour +before we began to move. It seems to me that the further east you go the +more unpunctual are the trains. What ought they to be in China? + +All day long we seemed to dawdle through a country which was full of +beauty of every kind. Sometimes we saw little towns or castles on the +top of steep hills such as we see in old missals; sometimes we ran by +rivers and streams which seemed from the wide stony margin on each side +of them to be subject to great floods. It takes a lot of water, and +running strong, to sweep the outside edge of a river clear. At every +station there were groups of people, sometimes crowds, and in all sorts +of attire. Some of them were just like the peasants at home or those I +saw coming through France and Germany, with short jackets and round hats +and home-made trousers; but others were very picturesque. The women +looked pretty, except when you got near them, but they were very clumsy +about the waist. They had all full white sleeves of some kind or other, +and most of them had big belts with a lot of strips of something +fluttering from them like the dresses in a ballet, but of course there +were petticoats under them. The strangest figures we saw were the +Slovaks, who were more barbarian than the rest, with their big cow-boy +hats, great baggy dirty-white trousers, white linen shirts, and enormous +heavy leather belts, nearly a foot wide, all studded over with brass +nails. They wore high boots, with their trousers tucked into them, and +had long black hair and heavy black moustaches. They are very +picturesque, but do not look prepossessing. On the stage they would be +set down at once as some old Oriental band of brigands. They are, +however, I am told, very harmless and rather wanting in natural +self-assertion. + +It was on the dark side of twilight when we got to Bistritz, which is a +very interesting old place. Being practically on the frontier--for the +Borgo Pass leads from it into Bukovina--it has had a very stormy +existence, and it certainly shows marks of it. Fifty years ago a series +of great fires took place, which made terrible havoc on five separate +occasions. At the very beginning of the seventeenth century it underwent +a siege of three weeks and lost 13,000 people, the casualties of war +proper being assisted by famine and disease. + +Count Dracula had directed me to go to the Golden Krone Hotel, which I +found, to my great delight, to be thoroughly old-fashioned, for of +course I wanted to see all I could of the ways of the country. I was +evidently expected, for when I got near the door I faced a +cheery-looking elderly woman in the usual peasant dress--white +undergarment with long double apron, front, and back, of coloured stuff +fitting almost too tight for modesty. When I came close she bowed and +said, “The Herr Englishman?” “Yes,” I said, “Jonathan Harker.” She +smiled, and gave some message to an elderly man in white shirt-sleeves, +who had followed her to the door. He went, but immediately returned with +a letter:-- + + “My Friend.--Welcome to the Carpathians. I am anxiously expecting + you. Sleep well to-night. At three to-morrow the diligence will + start for Bukovina; a place on it is kept for you. At the Borgo + Pass my carriage will await you and will bring you to me. I trust + that your journey from London has been a happy one, and that you + will enjoy your stay in my beautiful land. + +“Your friend, + +“DRACULA.” + + +_4 May._--I found that my landlord had got a letter from the Count, +directing him to secure the best place on the coach for me; but on +making inquiries as to details he seemed somewhat reticent, and +pretended that he could not understand my German. This could not be +true, because up to then he had understood it perfectly; at least, he +answered my questions exactly as if he did. He and his wife, the old +lady who had received me, looked at each other in a frightened sort of +way. He mumbled out that the money had been sent in a letter, and that +was all he knew. When I asked him if he knew Count Dracula, and could +tell me anything of his castle, both he and his wife crossed themselves, +and, saying that they knew nothing at all, simply refused to speak +further. It was so near the time of starting that I had no time to ask +any one else, for it was all very mysterious and not by any means +comforting. + +Just before I was leaving, the old lady came up to my room and said in a +very hysterical way: + +“Must you go? Oh! young Herr, must you go?” She was in such an excited +state that she seemed to have lost her grip of what German she knew, and +mixed it all up with some other language which I did not know at all. I +was just able to follow her by asking many questions. When I told her +that I must go at once, and that I was engaged on important business, +she asked again: + +“Do you know what day it is?” I answered that it was the fourth of May. +She shook her head as she said again: + +“Oh, yes! I know that! I know that, but do you know what day it is?” On +my saying that I did not understand, she went on: + +“It is the eve of St. George’s Day. Do you not know that to-night, when +the clock strikes midnight, all the evil things in the world will have +full sway? Do you know where you are going, and what you are going to?” +She was in such evident distress that I tried to comfort her, but +without effect. Finally she went down on her knees and implored me not +to go; at least to wait a day or two before starting. It was all very +ridiculous but I did not feel comfortable. However, there was business +to be done, and I could allow nothing to interfere with it. I therefore +tried to raise her up, and said, as gravely as I could, that I thanked +her, but my duty was imperative, and that I must go. She then rose and +dried her eyes, and taking a crucifix from her neck offered it to me. I +did not know what to do, for, as an English Churchman, I have been +taught to regard such things as in some measure idolatrous, and yet it +seemed so ungracious to refuse an old lady meaning so well and in such a +state of mind. She saw, I suppose, the doubt in my face, for she put the +rosary round my neck, and said, “For your mother’s sake,” and went out +of the room. I am writing up this part of the diary whilst I am waiting +for the coach, which is, of course, late; and the crucifix is still +round my neck. Whether it is the old lady’s fear, or the many ghostly +traditions of this place, or the crucifix itself, I do not know, but I +am not feeling nearly as easy in my mind as usual. If this book should +ever reach Mina before I do, let it bring my good-bye. Here comes the +coach! + + * * * * * + +_5 May. The Castle._--The grey of the morning has passed, and the sun is +high over the distant horizon, which seems jagged, whether with trees or +hills I know not, for it is so far off that big things and little are +mixed. I am not sleepy, and, as I am not to be called till I awake, +naturally I write till sleep comes. There are many odd things to put +down, and, lest who reads them may fancy that I dined too well before I +left Bistritz, let me put down my dinner exactly. I dined on what they +called “robber steak”--bits of bacon, onion, and beef, seasoned with red +pepper, and strung on sticks and roasted over the fire, in the simple +style of the London cat’s meat! The wine was Golden Mediasch, which +produces a queer sting on the tongue, which is, however, not +disagreeable. I had only a couple of glasses of this, and nothing else. + +When I got on the coach the driver had not taken his seat, and I saw him +talking with the landlady. They were evidently talking of me, for every +now and then they looked at me, and some of the people who were sitting +on the bench outside the door--which they call by a name meaning +“word-bearer”--came and listened, and then looked at me, most of them +pityingly. I could hear a lot of words often repeated, queer words, for +there were many nationalities in the crowd; so I quietly got my polyglot +dictionary from my bag and looked them out. I must say they were not +cheering to me, for amongst them were “Ordog”--Satan, “pokol”--hell, +“stregoica”--witch, “vrolok” and “vlkoslak”--both of which mean the same +thing, one being Slovak and the other Servian for something that is +either were-wolf or vampire. (_Mem._, I must ask the Count about these +superstitions) + +When we started, the crowd round the inn door, which had by this time +swelled to a considerable size, all made the sign of the cross and +pointed two fingers towards me. With some difficulty I got a +fellow-passenger to tell me what they meant; he would not answer at +first, but on learning that I was English, he explained that it was a +charm or guard against the evil eye. This was not very pleasant for me, +just starting for an unknown place to meet an unknown man; but every one +seemed so kind-hearted, and so sorrowful, and so sympathetic that I +could not but be touched. I shall never forget the last glimpse which I +had of the inn-yard and its crowd of picturesque figures, all crossing +themselves, as they stood round the wide archway, with its background of +rich foliage of oleander and orange trees in green tubs clustered in the +centre of the yard. Then our driver, whose wide linen drawers covered +the whole front of the box-seat--“gotza” they call them--cracked his big +whip over his four small horses, which ran abreast, and we set off on +our journey. + +I soon lost sight and recollection of ghostly fears in the beauty of the +scene as we drove along, although had I known the language, or rather +languages, which my fellow-passengers were speaking, I might not have +been able to throw them off so easily. Before us lay a green sloping +land full of forests and woods, with here and there steep hills, crowned +with clumps of trees or with farmhouses, the blank gable end to the +road. There was everywhere a bewildering mass of fruit blossom--apple, +plum, pear, cherry; and as we drove by I could see the green grass under +the trees spangled with the fallen petals. In and out amongst these +green hills of what they call here the “Mittel Land” ran the road, +losing itself as it swept round the grassy curve, or was shut out by the +straggling ends of pine woods, which here and there ran down the +hillsides like tongues of flame. The road was rugged, but still we +seemed to fly over it with a feverish haste. I could not understand then +what the haste meant, but the driver was evidently bent on losing no +time in reaching Borgo Prund. I was told that this road is in summertime +excellent, but that it had not yet been put in order after the winter +snows. In this respect it is different from the general run of roads in +the Carpathians, for it is an old tradition that they are not to be kept +in too good order. Of old the Hospadars would not repair them, lest the +Turk should think that they were preparing to bring in foreign troops, +and so hasten the war which was always really at loading point. + +Beyond the green swelling hills of the Mittel Land rose mighty slopes +of forest up to the lofty steeps of the Carpathians themselves. Right +and left of us they towered, with the afternoon sun falling full upon +them and bringing out all the glorious colours of this beautiful range, +deep blue and purple in the shadows of the peaks, green and brown where +grass and rock mingled, and an endless perspective of jagged rock and +pointed crags, till these were themselves lost in the distance, where +the snowy peaks rose grandly. Here and there seemed mighty rifts in the +mountains, through which, as the sun began to sink, we saw now and again +the white gleam of falling water. One of my companions touched my arm as +we swept round the base of a hill and opened up the lofty, snow-covered +peak of a mountain, which seemed, as we wound on our serpentine way, to +be right before us:-- + +“Look! Isten szek!”--“God’s seat!”--and he crossed himself reverently. + +As we wound on our endless way, and the sun sank lower and lower behind +us, the shadows of the evening began to creep round us. This was +emphasised by the fact that the snowy mountain-top still held the +sunset, and seemed to glow out with a delicate cool pink. Here and there +we passed Cszeks and Slovaks, all in picturesque attire, but I noticed +that goitre was painfully prevalent. By the roadside were many crosses, +and as we swept by, my companions all crossed themselves. Here and there +was a peasant man or woman kneeling before a shrine, who did not even +turn round as we approached, but seemed in the self-surrender of +devotion to have neither eyes nor ears for the outer world. There were +many things new to me: for instance, hay-ricks in the trees, and here +and there very beautiful masses of weeping birch, their white stems +shining like silver through the delicate green of the leaves. Now and +again we passed a leiter-wagon--the ordinary peasant’s cart--with its +long, snake-like vertebra, calculated to suit the inequalities of the +road. On this were sure to be seated quite a group of home-coming +peasants, the Cszeks with their white, and the Slovaks with their +coloured, sheepskins, the latter carrying lance-fashion their long +staves, with axe at end. As the evening fell it began to get very cold, +and the growing twilight seemed to merge into one dark mistiness the +gloom of the trees, oak, beech, and pine, though in the valleys which +ran deep between the spurs of the hills, as we ascended through the +Pass, the dark firs stood out here and there against the background of +late-lying snow. Sometimes, as the road was cut through the pine woods +that seemed in the darkness to be closing down upon us, great masses of +greyness, which here and there bestrewed the trees, produced a +peculiarly weird and solemn effect, which carried on the thoughts and +grim fancies engendered earlier in the evening, when the falling sunset +threw into strange relief the ghost-like clouds which amongst the +Carpathians seem to wind ceaselessly through the valleys. Sometimes the +hills were so steep that, despite our driver’s haste, the horses could +only go slowly. I wished to get down and walk up them, as we do at home, +but the driver would not hear of it. “No, no,” he said; “you must not +walk here; the dogs are too fierce”; and then he added, with what he +evidently meant for grim pleasantry--for he looked round to catch the +approving smile of the rest--“and you may have enough of such matters +before you go to sleep.” The only stop he would make was a moment’s +pause to light his lamps. + +When it grew dark there seemed to be some excitement amongst the +passengers, and they kept speaking to him, one after the other, as +though urging him to further speed. He lashed the horses unmercifully +with his long whip, and with wild cries of encouragement urged them on +to further exertions. Then through the darkness I could see a sort of +patch of grey light ahead of us, as though there were a cleft in the +hills. The excitement of the passengers grew greater; the crazy coach +rocked on its great leather springs, and swayed like a boat tossed on a +stormy sea. I had to hold on. The road grew more level, and we appeared +to fly along. Then the mountains seemed to come nearer to us on each +side and to frown down upon us; we were entering on the Borgo Pass. One +by one several of the passengers offered me gifts, which they pressed +upon me with an earnestness which would take no denial; these were +certainly of an odd and varied kind, but each was given in simple good +faith, with a kindly word, and a blessing, and that strange mixture of +fear-meaning movements which I had seen outside the hotel at +Bistritz--the sign of the cross and the guard against the evil eye. +Then, as we flew along, the driver leaned forward, and on each side the +passengers, craning over the edge of the coach, peered eagerly into the +darkness. It was evident that something very exciting was either +happening or expected, but though I asked each passenger, no one would +give me the slightest explanation. This state of excitement kept on for +some little time; and at last we saw before us the Pass opening out on +the eastern side. There were dark, rolling clouds overhead, and in the +air the heavy, oppressive sense of thunder. It seemed as though the +mountain range had separated two atmospheres, and that now we had got +into the thunderous one. I was now myself looking out for the conveyance +which was to take me to the Count. Each moment I expected to see the +glare of lamps through the blackness; but all was dark. The only light +was the flickering rays of our own lamps, in which the steam from our +hard-driven horses rose in a white cloud. We could see now the sandy +road lying white before us, but there was on it no sign of a vehicle. +The passengers drew back with a sigh of gladness, which seemed to mock +my own disappointment. I was already thinking what I had best do, when +the driver, looking at his watch, said to the others something which I +could hardly hear, it was spoken so quietly and in so low a tone; I +thought it was “An hour less than the time.” Then turning to me, he said +in German worse than my own:-- + +“There is no carriage here. The Herr is not expected after all. He will +now come on to Bukovina, and return to-morrow or the next day; better +the next day.” Whilst he was speaking the horses began to neigh and +snort and plunge wildly, so that the driver had to hold them up. Then, +amongst a chorus of screams from the peasants and a universal crossing +of themselves, a calèche, with four horses, drove up behind us, overtook +us, and drew up beside the coach. I could see from the flash of our +lamps, as the rays fell on them, that the horses were coal-black and +splendid animals. They were driven by a tall man, with a long brown +beard and a great black hat, which seemed to hide his face from us. I +could only see the gleam of a pair of very bright eyes, which seemed red +in the lamplight, as he turned to us. He said to the driver:-- + +“You are early to-night, my friend.” The man stammered in reply:-- + +“The English Herr was in a hurry,” to which the stranger replied:-- + +“That is why, I suppose, you wished him to go on to Bukovina. You cannot +deceive me, my friend; I know too much, and my horses are swift.” As he +spoke he smiled, and the lamplight fell on a hard-looking mouth, with +very red lips and sharp-looking teeth, as white as ivory. One of my +companions whispered to another the line from Burger’s “Lenore”:-- + + “Denn die Todten reiten schnell”-- + (“For the dead travel fast.”) + +The strange driver evidently heard the words, for he looked up with a +gleaming smile. The passenger turned his face away, at the same time +putting out his two fingers and crossing himself. “Give me the Herr’s +luggage,” said the driver; and with exceeding alacrity my bags were +handed out and put in the calèche. Then I descended from the side of the +coach, as the calèche was close alongside, the driver helping me with a +hand which caught my arm in a grip of steel; his strength must have been +prodigious. Without a word he shook his reins, the horses turned, and we +swept into the darkness of the Pass. As I looked back I saw the steam +from the horses of the coach by the light of the lamps, and projected +against it the figures of my late companions crossing themselves. Then +the driver cracked his whip and called to his horses, and off they swept +on their way to Bukovina. As they sank into the darkness I felt a +strange chill, and a lonely feeling came over me; but a cloak was thrown +over my shoulders, and a rug across my knees, and the driver said in +excellent German:-- + +“The night is chill, mein Herr, and my master the Count bade me take all +care of you. There is a flask of slivovitz (the plum brandy of the +country) underneath the seat, if you should require it.” I did not take +any, but it was a comfort to know it was there all the same. I felt a +little strangely, and not a little frightened. I think had there been +any alternative I should have taken it, instead of prosecuting that +unknown night journey. The carriage went at a hard pace straight along, +then we made a complete turn and went along another straight road. It +seemed to me that we were simply going over and over the same ground +again; and so I took note of some salient point, and found that this was +so. I would have liked to have asked the driver what this all meant, but +I really feared to do so, for I thought that, placed as I was, any +protest would have had no effect in case there had been an intention to +delay. By-and-by, however, as I was curious to know how time was +passing, I struck a match, and by its flame looked at my watch; it was +within a few minutes of midnight. This gave me a sort of shock, for I +suppose the general superstition about midnight was increased by my +recent experiences. I waited with a sick feeling of suspense. + +Then a dog began to howl somewhere in a farmhouse far down the road--a +long, agonised wailing, as if from fear. The sound was taken up by +another dog, and then another and another, till, borne on the wind which +now sighed softly through the Pass, a wild howling began, which seemed +to come from all over the country, as far as the imagination could grasp +it through the gloom of the night. At the first howl the horses began to +strain and rear, but the driver spoke to them soothingly, and they +quieted down, but shivered and sweated as though after a runaway from +sudden fright. Then, far off in the distance, from the mountains on each +side of us began a louder and a sharper howling--that of wolves--which +affected both the horses and myself in the same way--for I was minded to +jump from the calèche and run, whilst they reared again and plunged +madly, so that the driver had to use all his great strength to keep them +from bolting. In a few minutes, however, my own ears got accustomed to +the sound, and the horses so far became quiet that the driver was able +to descend and to stand before them. He petted and soothed them, and +whispered something in their ears, as I have heard of horse-tamers +doing, and with extraordinary effect, for under his caresses they became +quite manageable again, though they still trembled. The driver again +took his seat, and shaking his reins, started off at a great pace. This +time, after going to the far side of the Pass, he suddenly turned down a +narrow roadway which ran sharply to the right. + +Soon we were hemmed in with trees, which in places arched right over the +roadway till we passed as through a tunnel; and again great frowning +rocks guarded us boldly on either side. Though we were in shelter, we +could hear the rising wind, for it moaned and whistled through the +rocks, and the branches of the trees crashed together as we swept along. +It grew colder and colder still, and fine, powdery snow began to fall, +so that soon we and all around us were covered with a white blanket. The +keen wind still carried the howling of the dogs, though this grew +fainter as we went on our way. The baying of the wolves sounded nearer +and nearer, as though they were closing round on us from every side. I +grew dreadfully afraid, and the horses shared my fear. The driver, +however, was not in the least disturbed; he kept turning his head to +left and right, but I could not see anything through the darkness. + +Suddenly, away on our left, I saw a faint flickering blue flame. The +driver saw it at the same moment; he at once checked the horses, and, +jumping to the ground, disappeared into the darkness. I did not know +what to do, the less as the howling of the wolves grew closer; but while +I wondered the driver suddenly appeared again, and without a word took +his seat, and we resumed our journey. I think I must have fallen asleep +and kept dreaming of the incident, for it seemed to be repeated +endlessly, and now looking back, it is like a sort of awful nightmare. +Once the flame appeared so near the road, that even in the darkness +around us I could watch the driver’s motions. He went rapidly to where +the blue flame arose--it must have been very faint, for it did not seem +to illumine the place around it at all--and gathering a few stones, +formed them into some device. Once there appeared a strange optical +effect: when he stood between me and the flame he did not obstruct it, +for I could see its ghostly flicker all the same. This startled me, but +as the effect was only momentary, I took it that my eyes deceived me +straining through the darkness. Then for a time there were no blue +flames, and we sped onwards through the gloom, with the howling of the +wolves around us, as though they were following in a moving circle. + +At last there came a time when the driver went further afield than he +had yet gone, and during his absence, the horses began to tremble worse +than ever and to snort and scream with fright. I could not see any cause +for it, for the howling of the wolves had ceased altogether; but just +then the moon, sailing through the black clouds, appeared behind the +jagged crest of a beetling, pine-clad rock, and by its light I saw +around us a ring of wolves, with white teeth and lolling red tongues, +with long, sinewy limbs and shaggy hair. They were a hundred times more +terrible in the grim silence which held them than even when they howled. +For myself, I felt a sort of paralysis of fear. It is only when a man +feels himself face to face with such horrors that he can understand +their true import. + +All at once the wolves began to howl as though the moonlight had had +some peculiar effect on them. The horses jumped about and reared, and +looked helplessly round with eyes that rolled in a way painful to see; +but the living ring of terror encompassed them on every side; and they +had perforce to remain within it. I called to the coachman to come, for +it seemed to me that our only chance was to try to break out through the +ring and to aid his approach. I shouted and beat the side of the +calèche, hoping by the noise to scare the wolves from that side, so as +to give him a chance of reaching the trap. How he came there, I know +not, but I heard his voice raised in a tone of imperious command, and +looking towards the sound, saw him stand in the roadway. As he swept his +long arms, as though brushing aside some impalpable obstacle, the wolves +fell back and back further still. Just then a heavy cloud passed across +the face of the moon, so that we were again in darkness. + +When I could see again the driver was climbing into the calèche, and the +wolves had disappeared. This was all so strange and uncanny that a +dreadful fear came upon me, and I was afraid to speak or move. The time +seemed interminable as we swept on our way, now in almost complete +darkness, for the rolling clouds obscured the moon. We kept on +ascending, with occasional periods of quick descent, but in the main +always ascending. Suddenly, I became conscious of the fact that the +driver was in the act of pulling up the horses in the courtyard of a +vast ruined castle, from whose tall black windows came no ray of light, +and whose broken battlements showed a jagged line against the moonlit +sky. + + + + +CHAPTER II + +JONATHAN HARKER’S JOURNAL--_continued_ + + +_5 May._--I must have been asleep, for certainly if I had been fully +awake I must have noticed the approach of such a remarkable place. In +the gloom the courtyard looked of considerable size, and as several dark +ways led from it under great round arches, it perhaps seemed bigger than +it really is. I have not yet been able to see it by daylight. + +When the calèche stopped, the driver jumped down and held out his hand +to assist me to alight. Again I could not but notice his prodigious +strength. His hand actually seemed like a steel vice that could have +crushed mine if he had chosen. Then he took out my traps, and placed +them on the ground beside me as I stood close to a great door, old and +studded with large iron nails, and set in a projecting doorway of +massive stone. I could see even in the dim light that the stone was +massively carved, but that the carving had been much worn by time and +weather. As I stood, the driver jumped again into his seat and shook the +reins; the horses started forward, and trap and all disappeared down one +of the dark openings. + +I stood in silence where I was, for I did not know what to do. Of bell +or knocker there was no sign; through these frowning walls and dark +window openings it was not likely that my voice could penetrate. The +time I waited seemed endless, and I felt doubts and fears crowding upon +me. What sort of place had I come to, and among what kind of people? +What sort of grim adventure was it on which I had embarked? Was this a +customary incident in the life of a solicitor’s clerk sent out to +explain the purchase of a London estate to a foreigner? Solicitor’s +clerk! Mina would not like that. Solicitor--for just before leaving +London I got word that my examination was successful; and I am now a +full-blown solicitor! I began to rub my eyes and pinch myself to see if +I were awake. It all seemed like a horrible nightmare to me, and I +expected that I should suddenly awake, and find myself at home, with +the dawn struggling in through the windows, as I had now and again felt +in the morning after a day of overwork. But my flesh answered the +pinching test, and my eyes were not to be deceived. I was indeed awake +and among the Carpathians. All I could do now was to be patient, and to +wait the coming of the morning. + +Just as I had come to this conclusion I heard a heavy step approaching +behind the great door, and saw through the chinks the gleam of a coming +light. Then there was the sound of rattling chains and the clanking of +massive bolts drawn back. A key was turned with the loud grating noise +of long disuse, and the great door swung back. + +Within, stood a tall old man, clean shaven save for a long white +moustache, and clad in black from head to foot, without a single speck +of colour about him anywhere. He held in his hand an antique silver +lamp, in which the flame burned without chimney or globe of any kind, +throwing long quivering shadows as it flickered in the draught of the +open door. The old man motioned me in with his right hand with a courtly +gesture, saying in excellent English, but with a strange intonation:-- + +“Welcome to my house! Enter freely and of your own will!” He made no +motion of stepping to meet me, but stood like a statue, as though his +gesture of welcome had fixed him into stone. The instant, however, that +I had stepped over the threshold, he moved impulsively forward, and +holding out his hand grasped mine with a strength which made me wince, +an effect which was not lessened by the fact that it seemed as cold as +ice--more like the hand of a dead than a living man. Again he said:-- + +“Welcome to my house. Come freely. Go safely; and leave something of the +happiness you bring!” The strength of the handshake was so much akin to +that which I had noticed in the driver, whose face I had not seen, that +for a moment I doubted if it were not the same person to whom I was +speaking; so to make sure, I said interrogatively:-- + +“Count Dracula?” He bowed in a courtly way as he replied:-- + +“I am Dracula; and I bid you welcome, Mr. Harker, to my house. Come in; +the night air is chill, and you must need to eat and rest.” As he was +speaking, he put the lamp on a bracket on the wall, and stepping out, +took my luggage; he had carried it in before I could forestall him. I +protested but he insisted:-- + +“Nay, sir, you are my guest. It is late, and my people are not +available. Let me see to your comfort myself.” He insisted on carrying +my traps along the passage, and then up a great winding stair, and +along another great passage, on whose stone floor our steps rang +heavily. At the end of this he threw open a heavy door, and I rejoiced +to see within a well-lit room in which a table was spread for supper, +and on whose mighty hearth a great fire of logs, freshly replenished, +flamed and flared. + +The Count halted, putting down my bags, closed the door, and crossing +the room, opened another door, which led into a small octagonal room lit +by a single lamp, and seemingly without a window of any sort. Passing +through this, he opened another door, and motioned me to enter. It was a +welcome sight; for here was a great bedroom well lighted and warmed with +another log fire,--also added to but lately, for the top logs were +fresh--which sent a hollow roar up the wide chimney. The Count himself +left my luggage inside and withdrew, saying, before he closed the +door:-- + +“You will need, after your journey, to refresh yourself by making your +toilet. I trust you will find all you wish. When you are ready, come +into the other room, where you will find your supper prepared.” + +The light and warmth and the Count’s courteous welcome seemed to have +dissipated all my doubts and fears. Having then reached my normal state, +I discovered that I was half famished with hunger; so making a hasty +toilet, I went into the other room. + +I found supper already laid out. My host, who stood on one side of the +great fireplace, leaning against the stonework, made a graceful wave of +his hand to the table, and said:-- + +“I pray you, be seated and sup how you please. You will, I trust, excuse +me that I do not join you; but I have dined already, and I do not sup.” + +I handed to him the sealed letter which Mr. Hawkins had entrusted to me. +He opened it and read it gravely; then, with a charming smile, he handed +it to me to read. One passage of it, at least, gave me a thrill of +pleasure. + +“I must regret that an attack of gout, from which malady I am a constant +sufferer, forbids absolutely any travelling on my part for some time to +come; but I am happy to say I can send a sufficient substitute, one in +whom I have every possible confidence. He is a young man, full of energy +and talent in his own way, and of a very faithful disposition. He is +discreet and silent, and has grown into manhood in my service. He shall +be ready to attend on you when you will during his stay, and shall take +your instructions in all matters.” + +The Count himself came forward and took off the cover of a dish, and I +fell to at once on an excellent roast chicken. This, with some cheese +and a salad and a bottle of old Tokay, of which I had two glasses, was +my supper. During the time I was eating it the Count asked me many +questions as to my journey, and I told him by degrees all I had +experienced. + +By this time I had finished my supper, and by my host’s desire had drawn +up a chair by the fire and begun to smoke a cigar which he offered me, +at the same time excusing himself that he did not smoke. I had now an +opportunity of observing him, and found him of a very marked +physiognomy. + +His face was a strong--a very strong--aquiline, with high bridge of the +thin nose and peculiarly arched nostrils; with lofty domed forehead, and +hair growing scantily round the temples but profusely elsewhere. His +eyebrows were very massive, almost meeting over the nose, and with bushy +hair that seemed to curl in its own profusion. The mouth, so far as I +could see it under the heavy moustache, was fixed and rather +cruel-looking, with peculiarly sharp white teeth; these protruded over +the lips, whose remarkable ruddiness showed astonishing vitality in a +man of his years. For the rest, his ears were pale, and at the tops +extremely pointed; the chin was broad and strong, and the cheeks firm +though thin. The general effect was one of extraordinary pallor. + +Hitherto I had noticed the backs of his hands as they lay on his knees +in the firelight, and they had seemed rather white and fine; but seeing +them now close to me, I could not but notice that they were rather +coarse--broad, with squat fingers. Strange to say, there were hairs in +the centre of the palm. The nails were long and fine, and cut to a sharp +point. As the Count leaned over me and his hands touched me, I could not +repress a shudder. It may have been that his breath was rank, but a +horrible feeling of nausea came over me, which, do what I would, I could +not conceal. The Count, evidently noticing it, drew back; and with a +grim sort of smile, which showed more than he had yet done his +protuberant teeth, sat himself down again on his own side of the +fireplace. We were both silent for a while; and as I looked towards the +window I saw the first dim streak of the coming dawn. There seemed a +strange stillness over everything; but as I listened I heard as if from +down below in the valley the howling of many wolves. The Count’s eyes +gleamed, and he said:-- + +“Listen to them--the children of the night. What music they make!” +Seeing, I suppose, some expression in my face strange to him, he +added:-- + +“Ah, sir, you dwellers in the city cannot enter into the feelings of the +hunter.” Then he rose and said:-- + +“But you must be tired. Your bedroom is all ready, and to-morrow you +shall sleep as late as you will. I have to be away till the afternoon; +so sleep well and dream well!” With a courteous bow, he opened for me +himself the door to the octagonal room, and I entered my bedroom.... + +I am all in a sea of wonders. I doubt; I fear; I think strange things, +which I dare not confess to my own soul. God keep me, if only for the +sake of those dear to me! + + * * * * * + +_7 May._--It is again early morning, but I have rested and enjoyed the +last twenty-four hours. I slept till late in the day, and awoke of my +own accord. When I had dressed myself I went into the room where we had +supped, and found a cold breakfast laid out, with coffee kept hot by the +pot being placed on the hearth. There was a card on the table, on which +was written:-- + +“I have to be absent for a while. Do not wait for me.--D.” I set to and +enjoyed a hearty meal. When I had done, I looked for a bell, so that I +might let the servants know I had finished; but I could not find one. +There are certainly odd deficiencies in the house, considering the +extraordinary evidences of wealth which are round me. The table service +is of gold, and so beautifully wrought that it must be of immense value. +The curtains and upholstery of the chairs and sofas and the hangings of +my bed are of the costliest and most beautiful fabrics, and must have +been of fabulous value when they were made, for they are centuries old, +though in excellent order. I saw something like them in Hampton Court, +but there they were worn and frayed and moth-eaten. But still in none of +the rooms is there a mirror. There is not even a toilet glass on my +table, and I had to get the little shaving glass from my bag before I +could either shave or brush my hair. I have not yet seen a servant +anywhere, or heard a sound near the castle except the howling of wolves. +Some time after I had finished my meal--I do not know whether to call it +breakfast or dinner, for it was between five and six o’clock when I had +it--I looked about for something to read, for I did not like to go about +the castle until I had asked the Count’s permission. There was +absolutely nothing in the room, book, newspaper, or even writing +materials; so I opened another door in the room and found a sort of +library. The door opposite mine I tried, but found it locked. + +In the library I found, to my great delight, a vast number of English +books, whole shelves full of them, and bound volumes of magazines and +newspapers. A table in the centre was littered with English magazines +and newspapers, though none of them were of very recent date. The books +were of the most varied kind--history, geography, politics, political +economy, botany, geology, law--all relating to England and English life +and customs and manners. There were even such books of reference as the +London Directory, the “Red” and “Blue” books, Whitaker’s Almanac, the +Army and Navy Lists, and--it somehow gladdened my heart to see it--the +Law List. + +Whilst I was looking at the books, the door opened, and the Count +entered. He saluted me in a hearty way, and hoped that I had had a good +night’s rest. Then he went on:-- + +“I am glad you found your way in here, for I am sure there is much that +will interest you. These companions”--and he laid his hand on some of +the books--“have been good friends to me, and for some years past, ever +since I had the idea of going to London, have given me many, many hours +of pleasure. Through them I have come to know your great England; and to +know her is to love her. I long to go through the crowded streets of +your mighty London, to be in the midst of the whirl and rush of +humanity, to share its life, its change, its death, and all that makes +it what it is. But alas! as yet I only know your tongue through books. +To you, my friend, I look that I know it to speak.” + +“But, Count,” I said, “you know and speak English thoroughly!” He bowed +gravely. + +“I thank you, my friend, for your all too-flattering estimate, but yet I +fear that I am but a little way on the road I would travel. True, I know +the grammar and the words, but yet I know not how to speak them.” + +“Indeed,” I said, “you speak excellently.” + +“Not so,” he answered. “Well, I know that, did I move and speak in your +London, none there are who would not know me for a stranger. That is not +enough for me. Here I am noble; I am _boyar_; the common people know me, +and I am master. But a stranger in a strange land, he is no one; men +know him not--and to know not is to care not for. I am content if I am +like the rest, so that no man stops if he see me, or pause in his +speaking if he hear my words, ‘Ha, ha! a stranger!’ I have been so long +master that I would be master still--or at least that none other should +be master of me. You come to me not alone as agent of my friend Peter +Hawkins, of Exeter, to tell me all about my new estate in London. You +shall, I trust, rest here with me awhile, so that by our talking I may +learn the English intonation; and I would that you tell me when I make +error, even of the smallest, in my speaking. I am sorry that I had to be +away so long to-day; but you will, I know, forgive one who has so many +important affairs in hand.” + +Of course I said all I could about being willing, and asked if I might +come into that room when I chose. He answered: “Yes, certainly,” and +added:-- + +“You may go anywhere you wish in the castle, except where the doors are +locked, where of course you will not wish to go. There is reason that +all things are as they are, and did you see with my eyes and know with +my knowledge, you would perhaps better understand.” I said I was sure of +this, and then he went on:-- + +“We are in Transylvania; and Transylvania is not England. Our ways are +not your ways, and there shall be to you many strange things. Nay, from +what you have told me of your experiences already, you know something of +what strange things there may be.” + +This led to much conversation; and as it was evident that he wanted to +talk, if only for talking’s sake, I asked him many questions regarding +things that had already happened to me or come within my notice. +Sometimes he sheered off the subject, or turned the conversation by +pretending not to understand; but generally he answered all I asked most +frankly. Then as time went on, and I had got somewhat bolder, I asked +him of some of the strange things of the preceding night, as, for +instance, why the coachman went to the places where he had seen the blue +flames. He then explained to me that it was commonly believed that on a +certain night of the year--last night, in fact, when all evil spirits +are supposed to have unchecked sway--a blue flame is seen over any place +where treasure has been concealed. “That treasure has been hidden,” he +went on, “in the region through which you came last night, there can be +but little doubt; for it was the ground fought over for centuries by the +Wallachian, the Saxon, and the Turk. Why, there is hardly a foot of soil +in all this region that has not been enriched by the blood of men, +patriots or invaders. In old days there were stirring times, when the +Austrian and the Hungarian came up in hordes, and the patriots went out +to meet them--men and women, the aged and the children too--and waited +their coming on the rocks above the passes, that they might sweep +destruction on them with their artificial avalanches. When the invader +was triumphant he found but little, for whatever there was had been +sheltered in the friendly soil.” + +“But how,” said I, “can it have remained so long undiscovered, when +there is a sure index to it if men will but take the trouble to look?” +The Count smiled, and as his lips ran back over his gums, the long, +sharp, canine teeth showed out strangely; he answered:-- + +“Because your peasant is at heart a coward and a fool! Those flames only +appear on one night; and on that night no man of this land will, if he +can help it, stir without his doors. And, dear sir, even if he did he +would not know what to do. Why, even the peasant that you tell me of who +marked the place of the flame would not know where to look in daylight +even for his own work. Even you would not, I dare be sworn, be able to +find these places again?” + +“There you are right,” I said. “I know no more than the dead where even +to look for them.” Then we drifted into other matters. + +“Come,” he said at last, “tell me of London and of the house which you +have procured for me.” With an apology for my remissness, I went into my +own room to get the papers from my bag. Whilst I was placing them in +order I heard a rattling of china and silver in the next room, and as I +passed through, noticed that the table had been cleared and the lamp +lit, for it was by this time deep into the dark. The lamps were also lit +in the study or library, and I found the Count lying on the sofa, +reading, of all things in the world, an English Bradshaw’s Guide. When I +came in he cleared the books and papers from the table; and with him I +went into plans and deeds and figures of all sorts. He was interested in +everything, and asked me a myriad questions about the place and its +surroundings. He clearly had studied beforehand all he could get on the +subject of the neighbourhood, for he evidently at the end knew very much +more than I did. When I remarked this, he answered:-- + +“Well, but, my friend, is it not needful that I should? When I go there +I shall be all alone, and my friend Harker Jonathan--nay, pardon me, I +fall into my country’s habit of putting your patronymic first--my friend +Jonathan Harker will not be by my side to correct and aid me. He will be +in Exeter, miles away, probably working at papers of the law with my +other friend, Peter Hawkins. So!” + +We went thoroughly into the business of the purchase of the estate at +Purfleet. When I had told him the facts and got his signature to the +necessary papers, and had written a letter with them ready to post to +Mr. Hawkins, he began to ask me how I had come across so suitable a +place. I read to him the notes which I had made at the time, and which I +inscribe here:-- + +“At Purfleet, on a by-road, I came across just such a place as seemed to +be required, and where was displayed a dilapidated notice that the place +was for sale. It is surrounded by a high wall, of ancient structure, +built of heavy stones, and has not been repaired for a large number of +years. The closed gates are of heavy old oak and iron, all eaten with +rust. + +“The estate is called Carfax, no doubt a corruption of the old _Quatre +Face_, as the house is four-sided, agreeing with the cardinal points of +the compass. It contains in all some twenty acres, quite surrounded by +the solid stone wall above mentioned. There are many trees on it, which +make it in places gloomy, and there is a deep, dark-looking pond or +small lake, evidently fed by some springs, as the water is clear and +flows away in a fair-sized stream. The house is very large and of all +periods back, I should say, to mediæval times, for one part is of stone +immensely thick, with only a few windows high up and heavily barred with +iron. It looks like part of a keep, and is close to an old chapel or +church. I could not enter it, as I had not the key of the door leading +to it from the house, but I have taken with my kodak views of it from +various points. The house has been added to, but in a very straggling +way, and I can only guess at the amount of ground it covers, which must +be very great. There are but few houses close at hand, one being a very +large house only recently added to and formed into a private lunatic +asylum. It is not, however, visible from the grounds.” + +When I had finished, he said:-- + +“I am glad that it is old and big. I myself am of an old family, and to +live in a new house would kill me. A house cannot be made habitable in a +day; and, after all, how few days go to make up a century. I rejoice +also that there is a chapel of old times. We Transylvanian nobles love +not to think that our bones may lie amongst the common dead. I seek not +gaiety nor mirth, not the bright voluptuousness of much sunshine and +sparkling waters which please the young and gay. I am no longer young; +and my heart, through weary years of mourning over the dead, is not +attuned to mirth. Moreover, the walls of my castle are broken; the +shadows are many, and the wind breathes cold through the broken +battlements and casements. I love the shade and the shadow, and would +be alone with my thoughts when I may.” Somehow his words and his look +did not seem to accord, or else it was that his cast of face made his +smile look malignant and saturnine. + +Presently, with an excuse, he left me, asking me to put all my papers +together. He was some little time away, and I began to look at some of +the books around me. One was an atlas, which I found opened naturally at +England, as if that map had been much used. On looking at it I found in +certain places little rings marked, and on examining these I noticed +that one was near London on the east side, manifestly where his new +estate was situated; the other two were Exeter, and Whitby on the +Yorkshire coast. + +It was the better part of an hour when the Count returned. “Aha!” he +said; “still at your books? Good! But you must not work always. Come; I +am informed that your supper is ready.” He took my arm, and we went into +the next room, where I found an excellent supper ready on the table. The +Count again excused himself, as he had dined out on his being away from +home. But he sat as on the previous night, and chatted whilst I ate. +After supper I smoked, as on the last evening, and the Count stayed with +me, chatting and asking questions on every conceivable subject, hour +after hour. I felt that it was getting very late indeed, but I did not +say anything, for I felt under obligation to meet my host’s wishes in +every way. I was not sleepy, as the long sleep yesterday had fortified +me; but I could not help experiencing that chill which comes over one at +the coming of the dawn, which is like, in its way, the turn of the tide. +They say that people who are near death die generally at the change to +the dawn or at the turn of the tide; any one who has when tired, and +tied as it were to his post, experienced this change in the atmosphere +can well believe it. All at once we heard the crow of a cock coming up +with preternatural shrillness through the clear morning air; Count +Dracula, jumping to his feet, said:-- + +“Why, there is the morning again! How remiss I am to let you stay up so +long. You must make your conversation regarding my dear new country of +England less interesting, so that I may not forget how time flies by +us,” and, with a courtly bow, he quickly left me. + +I went into my own room and drew the curtains, but there was little to +notice; my window opened into the courtyard, all I could see was the +warm grey of quickening sky. So I pulled the curtains again, and have +written of this day. + + * * * * * + +_8 May._--I began to fear as I wrote in this book that I was getting too +diffuse; but now I am glad that I went into detail from the first, for +there is something so strange about this place and all in it that I +cannot but feel uneasy. I wish I were safe out of it, or that I had +never come. It may be that this strange night-existence is telling on +me; but would that that were all! If there were any one to talk to I +could bear it, but there is no one. I have only the Count to speak with, +and he!--I fear I am myself the only living soul within the place. Let +me be prosaic so far as facts can be; it will help me to bear up, and +imagination must not run riot with me. If it does I am lost. Let me say +at once how I stand--or seem to. + +I only slept a few hours when I went to bed, and feeling that I could +not sleep any more, got up. I had hung my shaving glass by the window, +and was just beginning to shave. Suddenly I felt a hand on my shoulder, +and heard the Count’s voice saying to me, “Good-morning.” I started, for +it amazed me that I had not seen him, since the reflection of the glass +covered the whole room behind me. In starting I had cut myself slightly, +but did not notice it at the moment. Having answered the Count’s +salutation, I turned to the glass again to see how I had been mistaken. +This time there could be no error, for the man was close to me, and I +could see him over my shoulder. But there was no reflection of him in +the mirror! The whole room behind me was displayed; but there was no +sign of a man in it, except myself. This was startling, and, coming on +the top of so many strange things, was beginning to increase that vague +feeling of uneasiness which I always have when the Count is near; but at +the instant I saw that the cut had bled a little, and the blood was +trickling over my chin. I laid down the razor, turning as I did so half +round to look for some sticking plaster. When the Count saw my face, his +eyes blazed with a sort of demoniac fury, and he suddenly made a grab at +my throat. I drew away, and his hand touched the string of beads which +held the crucifix. It made an instant change in him, for the fury passed +so quickly that I could hardly believe that it was ever there. + +“Take care,” he said, “take care how you cut yourself. It is more +dangerous than you think in this country.” Then seizing the shaving +glass, he went on: “And this is the wretched thing that has done the +mischief. It is a foul bauble of man’s vanity. Away with it!” and +opening the heavy window with one wrench of his terrible hand, he flung +out the glass, which was shattered into a thousand pieces on the stones +of the courtyard far below. Then he withdrew without a word. It is very +annoying, for I do not see how I am to shave, unless in my watch-case or +the bottom of the shaving-pot, which is fortunately of metal. + +When I went into the dining-room, breakfast was prepared; but I could +not find the Count anywhere. So I breakfasted alone. It is strange that +as yet I have not seen the Count eat or drink. He must be a very +peculiar man! After breakfast I did a little exploring in the castle. I +went out on the stairs, and found a room looking towards the South. The +view was magnificent, and from where I stood there was every opportunity +of seeing it. The castle is on the very edge of a terrible precipice. A +stone falling from the window would fall a thousand feet without +touching anything! As far as the eye can reach is a sea of green tree +tops, with occasionally a deep rift where there is a chasm. Here and +there are silver threads where the rivers wind in deep gorges through +the forests. + +But I am not in heart to describe beauty, for when I had seen the view I +explored further; doors, doors, doors everywhere, and all locked and +bolted. In no place save from the windows in the castle walls is there +an available exit. + +The castle is a veritable prison, and I am a prisoner! + + + + +CHAPTER III + +JONATHAN HARKER’S JOURNAL--_continued_ + + +When I found that I was a prisoner a sort of wild feeling came over me. +I rushed up and down the stairs, trying every door and peering out of +every window I could find; but after a little the conviction of my +helplessness overpowered all other feelings. When I look back after a +few hours I think I must have been mad for the time, for I behaved much +as a rat does in a trap. When, however, the conviction had come to me +that I was helpless I sat down quietly--as quietly as I have ever done +anything in my life--and began to think over what was best to be done. I +am thinking still, and as yet have come to no definite conclusion. Of +one thing only am I certain; that it is no use making my ideas known to +the Count. He knows well that I am imprisoned; and as he has done it +himself, and has doubtless his own motives for it, he would only deceive +me if I trusted him fully with the facts. So far as I can see, my only +plan will be to keep my knowledge and my fears to myself, and my eyes +open. I am, I know, either being deceived, like a baby, by my own fears, +or else I am in desperate straits; and if the latter be so, I need, and +shall need, all my brains to get through. + +I had hardly come to this conclusion when I heard the great door below +shut, and knew that the Count had returned. He did not come at once into +the library, so I went cautiously to my own room and found him making +the bed. This was odd, but only confirmed what I had all along +thought--that there were no servants in the house. When later I saw him +through the chink of the hinges of the door laying the table in the +dining-room, I was assured of it; for if he does himself all these +menial offices, surely it is proof that there is no one else to do them. +This gave me a fright, for if there is no one else in the castle, it +must have been the Count himself who was the driver of the coach that +brought me here. This is a terrible thought; for if so, what does it +mean that he could control the wolves, as he did, by only holding up his +hand in silence. How was it that all the people at Bistritz and on the +coach had some terrible fear for me? What meant the giving of the +crucifix, of the garlic, of the wild rose, of the mountain ash? Bless +that good, good woman who hung the crucifix round my neck! for it is a +comfort and a strength to me whenever I touch it. It is odd that a thing +which I have been taught to regard with disfavour and as idolatrous +should in a time of loneliness and trouble be of help. Is it that there +is something in the essence of the thing itself, or that it is a medium, +a tangible help, in conveying memories of sympathy and comfort? Some +time, if it may be, I must examine this matter and try to make up my +mind about it. In the meantime I must find out all I can about Count +Dracula, as it may help me to understand. To-night he may talk of +himself, if I turn the conversation that way. I must be very careful, +however, not to awake his suspicion. + + * * * * * + +_Midnight._--I have had a long talk with the Count. I asked him a few +questions on Transylvania history, and he warmed up to the subject +wonderfully. In his speaking of things and people, and especially of +battles, he spoke as if he had been present at them all. This he +afterwards explained by saying that to a _boyar_ the pride of his house +and name is his own pride, that their glory is his glory, that their +fate is his fate. Whenever he spoke of his house he always said “we,” +and spoke almost in the plural, like a king speaking. I wish I could put +down all he said exactly as he said it, for to me it was most +fascinating. It seemed to have in it a whole history of the country. He +grew excited as he spoke, and walked about the room pulling his great +white moustache and grasping anything on which he laid his hands as +though he would crush it by main strength. One thing he said which I +shall put down as nearly as I can; for it tells in its way the story of +his race:-- + +“We Szekelys have a right to be proud, for in our veins flows the blood +of many brave races who fought as the lion fights, for lordship. Here, +in the whirlpool of European races, the Ugric tribe bore down from +Iceland the fighting spirit which Thor and Wodin gave them, which their +Berserkers displayed to such fell intent on the seaboards of Europe, ay, +and of Asia and Africa too, till the peoples thought that the +were-wolves themselves had come. Here, too, when they came, they found +the Huns, whose warlike fury had swept the earth like a living flame, +till the dying peoples held that in their veins ran the blood of those +old witches, who, expelled from Scythia had mated with the devils in the +desert. Fools, fools! What devil or what witch was ever so great as +Attila, whose blood is in these veins?” He held up his arms. “Is it a +wonder that we were a conquering race; that we were proud; that when the +Magyar, the Lombard, the Avar, the Bulgar, or the Turk poured his +thousands on our frontiers, we drove them back? Is it strange that when +Arpad and his legions swept through the Hungarian fatherland he found us +here when he reached the frontier; that the Honfoglalas was completed +there? And when the Hungarian flood swept eastward, the Szekelys were +claimed as kindred by the victorious Magyars, and to us for centuries +was trusted the guarding of the frontier of Turkey-land; ay, and more +than that, endless duty of the frontier guard, for, as the Turks say, +‘water sleeps, and enemy is sleepless.’ Who more gladly than we +throughout the Four Nations received the ‘bloody sword,’ or at its +warlike call flocked quicker to the standard of the King? When was +redeemed that great shame of my nation, the shame of Cassova, when the +flags of the Wallach and the Magyar went down beneath the Crescent? Who +was it but one of my own race who as Voivode crossed the Danube and beat +the Turk on his own ground? This was a Dracula indeed! Woe was it that +his own unworthy brother, when he had fallen, sold his people to the +Turk and brought the shame of slavery on them! Was it not this Dracula, +indeed, who inspired that other of his race who in a later age again and +again brought his forces over the great river into Turkey-land; who, +when he was beaten back, came again, and again, and again, though he had +to come alone from the bloody field where his troops were being +slaughtered, since he knew that he alone could ultimately triumph! They +said that he thought only of himself. Bah! what good are peasants +without a leader? Where ends the war without a brain and heart to +conduct it? Again, when, after the battle of Mohács, we threw off the +Hungarian yoke, we of the Dracula blood were amongst their leaders, for +our spirit would not brook that we were not free. Ah, young sir, the +Szekelys--and the Dracula as their heart’s blood, their brains, and +their swords--can boast a record that mushroom growths like the +Hapsburgs and the Romanoffs can never reach. The warlike days are over. +Blood is too precious a thing in these days of dishonourable peace; and +the glories of the great races are as a tale that is told.” + +It was by this time close on morning, and we went to bed. (_Mem._, this +diary seems horribly like the beginning of the “Arabian Nights,” for +everything has to break off at cockcrow--or like the ghost of Hamlet’s +father.) + + * * * * * + +_12 May._--Let me begin with facts--bare, meagre facts, verified by +books and figures, and of which there can be no doubt. I must not +confuse them with experiences which will have to rest on my own +observation, or my memory of them. Last evening when the Count came from +his room he began by asking me questions on legal matters and on the +doing of certain kinds of business. I had spent the day wearily over +books, and, simply to keep my mind occupied, went over some of the +matters I had been examining at Lincoln’s Inn. There was a certain +method in the Count’s inquiries, so I shall try to put them down in +sequence; the knowledge may somehow or some time be useful to me. + +First, he asked if a man in England might have two solicitors or more. I +told him he might have a dozen if he wished, but that it would not be +wise to have more than one solicitor engaged in one transaction, as only +one could act at a time, and that to change would be certain to militate +against his interest. He seemed thoroughly to understand, and went on to +ask if there would be any practical difficulty in having one man to +attend, say, to banking, and another to look after shipping, in case +local help were needed in a place far from the home of the banking +solicitor. I asked him to explain more fully, so that I might not by any +chance mislead him, so he said:-- + +“I shall illustrate. Your friend and mine, Mr. Peter Hawkins, from under +the shadow of your beautiful cathedral at Exeter, which is far from +London, buys for me through your good self my place at London. Good! Now +here let me say frankly, lest you should think it strange that I have +sought the services of one so far off from London instead of some one +resident there, that my motive was that no local interest might be +served save my wish only; and as one of London residence might, perhaps, +have some purpose of himself or friend to serve, I went thus afield to +seek my agent, whose labours should be only to my interest. Now, suppose +I, who have much of affairs, wish to ship goods, say, to Newcastle, or +Durham, or Harwich, or Dover, might it not be that it could with more +ease be done by consigning to one in these ports?” I answered that +certainly it would be most easy, but that we solicitors had a system of +agency one for the other, so that local work could be done locally on +instruction from any solicitor, so that the client, simply placing +himself in the hands of one man, could have his wishes carried out by +him without further trouble. + +“But,” said he, “I could be at liberty to direct myself. Is it not so?” + +“Of course,” I replied; and “such is often done by men of business, who +do not like the whole of their affairs to be known by any one person.” + +“Good!” he said, and then went on to ask about the means of making +consignments and the forms to be gone through, and of all sorts of +difficulties which might arise, but by forethought could be guarded +against. I explained all these things to him to the best of my ability, +and he certainly left me under the impression that he would have made a +wonderful solicitor, for there was nothing that he did not think of or +foresee. For a man who was never in the country, and who did not +evidently do much in the way of business, his knowledge and acumen were +wonderful. When he had satisfied himself on these points of which he had +spoken, and I had verified all as well as I could by the books +available, he suddenly stood up and said:-- + +“Have you written since your first letter to our friend Mr. Peter +Hawkins, or to any other?” It was with some bitterness in my heart that +I answered that I had not, that as yet I had not seen any opportunity of +sending letters to anybody. + +“Then write now, my young friend,” he said, laying a heavy hand on my +shoulder: “write to our friend and to any other; and say, if it will +please you, that you shall stay with me until a month from now.” + +“Do you wish me to stay so long?” I asked, for my heart grew cold at the +thought. + +“I desire it much; nay, I will take no refusal. When your master, +employer, what you will, engaged that someone should come on his behalf, +it was understood that my needs only were to be consulted. I have not +stinted. Is it not so?” + +What could I do but bow acceptance? It was Mr. Hawkins’s interest, not +mine, and I had to think of him, not myself; and besides, while Count +Dracula was speaking, there was that in his eyes and in his bearing +which made me remember that I was a prisoner, and that if I wished it I +could have no choice. The Count saw his victory in my bow, and his +mastery in the trouble of my face, for he began at once to use them, but +in his own smooth, resistless way:-- + +“I pray you, my good young friend, that you will not discourse of things +other than business in your letters. It will doubtless please your +friends to know that you are well, and that you look forward to getting +home to them. Is it not so?” As he spoke he handed me three sheets of +note-paper and three envelopes. They were all of the thinnest foreign +post, and looking at them, then at him, and noticing his quiet smile, +with the sharp, canine teeth lying over the red underlip, I understood +as well as if he had spoken that I should be careful what I wrote, for +he would be able to read it. So I determined to write only formal notes +now, but to write fully to Mr. Hawkins in secret, and also to Mina, for +to her I could write in shorthand, which would puzzle the Count, if he +did see it. When I had written my two letters I sat quiet, reading a +book whilst the Count wrote several notes, referring as he wrote them to +some books on his table. Then he took up my two and placed them with his +own, and put by his writing materials, after which, the instant the door +had closed behind him, I leaned over and looked at the letters, which +were face down on the table. I felt no compunction in doing so, for +under the circumstances I felt that I should protect myself in every way +I could. + +One of the letters was directed to Samuel F. Billington, No. 7, The +Crescent, Whitby, another to Herr Leutner, Varna; the third was to +Coutts & Co., London, and the fourth to Herren Klopstock & Billreuth, +bankers, Buda-Pesth. The second and fourth were unsealed. I was just +about to look at them when I saw the door-handle move. I sank back in my +seat, having just had time to replace the letters as they had been and +to resume my book before the Count, holding still another letter in his +hand, entered the room. He took up the letters on the table and stamped +them carefully, and then turning to me, said:-- + +“I trust you will forgive me, but I have much work to do in private this +evening. You will, I hope, find all things as you wish.” At the door he +turned, and after a moment’s pause said:-- + +“Let me advise you, my dear young friend--nay, let me warn you with all +seriousness, that should you leave these rooms you will not by any +chance go to sleep in any other part of the castle. It is old, and has +many memories, and there are bad dreams for those who sleep unwisely. Be +warned! Should sleep now or ever overcome you, or be like to do, then +haste to your own chamber or to these rooms, for your rest will then be +safe. But if you be not careful in this respect, then”--He finished his +speech in a gruesome way, for he motioned with his hands as if he were +washing them. I quite understood; my only doubt was as to whether any +dream could be more terrible than the unnatural, horrible net of gloom +and mystery which seemed closing around me. + + * * * * * + +_Later._--I endorse the last words written, but this time there is no +doubt in question. I shall not fear to sleep in any place where he is +not. I have placed the crucifix over the head of my bed--I imagine that +my rest is thus freer from dreams; and there it shall remain. + +When he left me I went to my room. After a little while, not hearing any +sound, I came out and went up the stone stair to where I could look out +towards the South. There was some sense of freedom in the vast expanse, +inaccessible though it was to me, as compared with the narrow darkness +of the courtyard. Looking out on this, I felt that I was indeed in +prison, and I seemed to want a breath of fresh air, though it were of +the night. I am beginning to feel this nocturnal existence tell on me. +It is destroying my nerve. I start at my own shadow, and am full of all +sorts of horrible imaginings. God knows that there is ground for my +terrible fear in this accursed place! I looked out over the beautiful +expanse, bathed in soft yellow moonlight till it was almost as light as +day. In the soft light the distant hills became melted, and the shadows +in the valleys and gorges of velvety blackness. The mere beauty seemed +to cheer me; there was peace and comfort in every breath I drew. As I +leaned from the window my eye was caught by something moving a storey +below me, and somewhat to my left, where I imagined, from the order of +the rooms, that the windows of the Count’s own room would look out. The +window at which I stood was tall and deep, stone-mullioned, and though +weatherworn, was still complete; but it was evidently many a day since +the case had been there. I drew back behind the stonework, and looked +carefully out. + +What I saw was the Count’s head coming out from the window. I did not +see the face, but I knew the man by the neck and the movement of his +back and arms. In any case I could not mistake the hands which I had had +so many opportunities of studying. I was at first interested and +somewhat amused, for it is wonderful how small a matter will interest +and amuse a man when he is a prisoner. But my very feelings changed to +repulsion and terror when I saw the whole man slowly emerge from the +window and begin to crawl down the castle wall over that dreadful abyss, +_face down_ with his cloak spreading out around him like great wings. At +first I could not believe my eyes. I thought it was some trick of the +moonlight, some weird effect of shadow; but I kept looking, and it could +be no delusion. I saw the fingers and toes grasp the corners of the +stones, worn clear of the mortar by the stress of years, and by thus +using every projection and inequality move downwards with considerable +speed, just as a lizard moves along a wall. + +What manner of man is this, or what manner of creature is it in the +semblance of man? I feel the dread of this horrible place overpowering +me; I am in fear--in awful fear--and there is no escape for me; I am +encompassed about with terrors that I dare not think of.... + + * * * * * + +_15 May._--Once more have I seen the Count go out in his lizard fashion. +He moved downwards in a sidelong way, some hundred feet down, and a good +deal to the left. He vanished into some hole or window. When his head +had disappeared, I leaned out to try and see more, but without +avail--the distance was too great to allow a proper angle of sight. I +knew he had left the castle now, and thought to use the opportunity to +explore more than I had dared to do as yet. I went back to the room, and +taking a lamp, tried all the doors. They were all locked, as I had +expected, and the locks were comparatively new; but I went down the +stone stairs to the hall where I had entered originally. I found I could +pull back the bolts easily enough and unhook the great chains; but the +door was locked, and the key was gone! That key must be in the Count’s +room; I must watch should his door be unlocked, so that I may get it and +escape. I went on to make a thorough examination of the various stairs +and passages, and to try the doors that opened from them. One or two +small rooms near the hall were open, but there was nothing to see in +them except old furniture, dusty with age and moth-eaten. At last, +however, I found one door at the top of the stairway which, though it +seemed to be locked, gave a little under pressure. I tried it harder, +and found that it was not really locked, but that the resistance came +from the fact that the hinges had fallen somewhat, and the heavy door +rested on the floor. Here was an opportunity which I might not have +again, so I exerted myself, and with many efforts forced it back so that +I could enter. I was now in a wing of the castle further to the right +than the rooms I knew and a storey lower down. From the windows I could +see that the suite of rooms lay along to the south of the castle, the +windows of the end room looking out both west and south. On the latter +side, as well as to the former, there was a great precipice. The castle +was built on the corner of a great rock, so that on three sides it was +quite impregnable, and great windows were placed here where sling, or +bow, or culverin could not reach, and consequently light and comfort, +impossible to a position which had to be guarded, were secured. To the +west was a great valley, and then, rising far away, great jagged +mountain fastnesses, rising peak on peak, the sheer rock studded with +mountain ash and thorn, whose roots clung in cracks and crevices and +crannies of the stone. This was evidently the portion of the castle +occupied by the ladies in bygone days, for the furniture had more air of +comfort than any I had seen. The windows were curtainless, and the +yellow moonlight, flooding in through the diamond panes, enabled one to +see even colours, whilst it softened the wealth of dust which lay over +all and disguised in some measure the ravages of time and the moth. My +lamp seemed to be of little effect in the brilliant moonlight, but I was +glad to have it with me, for there was a dread loneliness in the place +which chilled my heart and made my nerves tremble. Still, it was better +than living alone in the rooms which I had come to hate from the +presence of the Count, and after trying a little to school my nerves, I +found a soft quietude come over me. Here I am, sitting at a little oak +table where in old times possibly some fair lady sat to pen, with much +thought and many blushes, her ill-spelt love-letter, and writing in my +diary in shorthand all that has happened since I closed it last. It is +nineteenth century up-to-date with a vengeance. And yet, unless my +senses deceive me, the old centuries had, and have, powers of their own +which mere “modernity” cannot kill. + + * * * * * + +_Later: the Morning of 16 May._--God preserve my sanity, for to this I +am reduced. Safety and the assurance of safety are things of the past. +Whilst I live on here there is but one thing to hope for, that I may not +go mad, if, indeed, I be not mad already. If I be sane, then surely it +is maddening to think that of all the foul things that lurk in this +hateful place the Count is the least dreadful to me; that to him alone I +can look for safety, even though this be only whilst I can serve his +purpose. Great God! merciful God! Let me be calm, for out of that way +lies madness indeed. I begin to get new lights on certain things which +have puzzled me. Up to now I never quite knew what Shakespeare meant +when he made Hamlet say:-- + + “My tablets! quick, my tablets! + ’Tis meet that I put it down,” etc., + +for now, feeling as though my own brain were unhinged or as if the shock +had come which must end in its undoing, I turn to my diary for repose. +The habit of entering accurately must help to soothe me. + +The Count’s mysterious warning frightened me at the time; it frightens +me more now when I think of it, for in future he has a fearful hold upon +me. I shall fear to doubt what he may say! + +When I had written in my diary and had fortunately replaced the book and +pen in my pocket I felt sleepy. The Count’s warning came into my mind, +but I took a pleasure in disobeying it. The sense of sleep was upon me, +and with it the obstinacy which sleep brings as outrider. The soft +moonlight soothed, and the wide expanse without gave a sense of freedom +which refreshed me. I determined not to return to-night to the +gloom-haunted rooms, but to sleep here, where, of old, ladies had sat +and sung and lived sweet lives whilst their gentle breasts were sad for +their menfolk away in the midst of remorseless wars. I drew a great +couch out of its place near the corner, so that as I lay, I could look +at the lovely view to east and south, and unthinking of and uncaring for +the dust, composed myself for sleep. I suppose I must have fallen +asleep; I hope so, but I fear, for all that followed was startlingly +real--so real that now sitting here in the broad, full sunlight of the +morning, I cannot in the least believe that it was all sleep. + +I was not alone. The room was the same, unchanged in any way since I +came into it; I could see along the floor, in the brilliant moonlight, +my own footsteps marked where I had disturbed the long accumulation of +dust. In the moonlight opposite me were three young women, ladies by +their dress and manner. I thought at the time that I must be dreaming +when I saw them, for, though the moonlight was behind them, they threw +no shadow on the floor. They came close to me, and looked at me for some +time, and then whispered together. Two were dark, and had high aquiline +noses, like the Count, and great dark, piercing eyes that seemed to be +almost red when contrasted with the pale yellow moon. The other was +fair, as fair as can be, with great wavy masses of golden hair and eyes +like pale sapphires. I seemed somehow to know her face, and to know it +in connection with some dreamy fear, but I could not recollect at the +moment how or where. All three had brilliant white teeth that shone like +pearls against the ruby of their voluptuous lips. There was something +about them that made me uneasy, some longing and at the same time some +deadly fear. I felt in my heart a wicked, burning desire that they would +kiss me with those red lips. It is not good to note this down, lest some +day it should meet Mina’s eyes and cause her pain; but it is the truth. +They whispered together, and then they all three laughed--such a +silvery, musical laugh, but as hard as though the sound never could have +come through the softness of human lips. It was like the intolerable, +tingling sweetness of water-glasses when played on by a cunning hand. +The fair girl shook her head coquettishly, and the other two urged her +on. One said:-- + +“Go on! You are first, and we shall follow; yours is the right to +begin.” The other added:-- + +“He is young and strong; there are kisses for us all.” I lay quiet, +looking out under my eyelashes in an agony of delightful anticipation. +The fair girl advanced and bent over me till I could feel the movement +of her breath upon me. Sweet it was in one sense, honey-sweet, and sent +the same tingling through the nerves as her voice, but with a bitter +underlying the sweet, a bitter offensiveness, as one smells in blood. + +I was afraid to raise my eyelids, but looked out and saw perfectly under +the lashes. The girl went on her knees, and bent over me, simply +gloating. There was a deliberate voluptuousness which was both thrilling +and repulsive, and as she arched her neck she actually licked her lips +like an animal, till I could see in the moonlight the moisture shining +on the scarlet lips and on the red tongue as it lapped the white sharp +teeth. Lower and lower went her head as the lips went below the range of +my mouth and chin and seemed about to fasten on my throat. Then she +paused, and I could hear the churning sound of her tongue as it licked +her teeth and lips, and could feel the hot breath on my neck. Then the +skin of my throat began to tingle as one’s flesh does when the hand that +is to tickle it approaches nearer--nearer. I could feel the soft, +shivering touch of the lips on the super-sensitive skin of my throat, +and the hard dents of two sharp teeth, just touching and pausing there. +I closed my eyes in a languorous ecstasy and waited--waited with beating +heart. + +But at that instant, another sensation swept through me as quick as +lightning. I was conscious of the presence of the Count, and of his +being as if lapped in a storm of fury. As my eyes opened involuntarily I +saw his strong hand grasp the slender neck of the fair woman and with +giant’s power draw it back, the blue eyes transformed with fury, the +white teeth champing with rage, and the fair cheeks blazing red with +passion. But the Count! Never did I imagine such wrath and fury, even to +the demons of the pit. His eyes were positively blazing. The red light +in them was lurid, as if the flames of hell-fire blazed behind them. His +face was deathly pale, and the lines of it were hard like drawn wires; +the thick eyebrows that met over the nose now seemed like a heaving bar +of white-hot metal. With a fierce sweep of his arm, he hurled the woman +from him, and then motioned to the others, as though he were beating +them back; it was the same imperious gesture that I had seen used to the +wolves. In a voice which, though low and almost in a whisper seemed to +cut through the air and then ring round the room he said:-- + +“How dare you touch him, any of you? How dare you cast eyes on him when +I had forbidden it? Back, I tell you all! This man belongs to me! Beware +how you meddle with him, or you’ll have to deal with me.” The fair girl, +with a laugh of ribald coquetry, turned to answer him:-- + +“You yourself never loved; you never love!” On this the other women +joined, and such a mirthless, hard, soulless laughter rang through the +room that it almost made me faint to hear; it seemed like the pleasure +of fiends. Then the Count turned, after looking at my face attentively, +and said in a soft whisper:-- + +“Yes, I too can love; you yourselves can tell it from the past. Is it +not so? Well, now I promise you that when I am done with him you shall +kiss him at your will. Now go! go! I must awaken him, for there is work +to be done.” + +“Are we to have nothing to-night?” said one of them, with a low laugh, +as she pointed to the bag which he had thrown upon the floor, and which +moved as though there were some living thing within it. For answer he +nodded his head. One of the women jumped forward and opened it. If my +ears did not deceive me there was a gasp and a low wail, as of a +half-smothered child. The women closed round, whilst I was aghast with +horror; but as I looked they disappeared, and with them the dreadful +bag. There was no door near them, and they could not have passed me +without my noticing. They simply seemed to fade into the rays of the +moonlight and pass out through the window, for I could see outside the +dim, shadowy forms for a moment before they entirely faded away. + +Then the horror overcame me, and I sank down unconscious. + + + + +CHAPTER IV + +JONATHAN HARKER’S JOURNAL--_continued_ + + +I awoke in my own bed. If it be that I had not dreamt, the Count must +have carried me here. I tried to satisfy myself on the subject, but +could not arrive at any unquestionable result. To be sure, there were +certain small evidences, such as that my clothes were folded and laid by +in a manner which was not my habit. My watch was still unwound, and I am +rigorously accustomed to wind it the last thing before going to bed, and +many such details. But these things are no proof, for they may have been +evidences that my mind was not as usual, and, from some cause or +another, I had certainly been much upset. I must watch for proof. Of one +thing I am glad: if it was that the Count carried me here and undressed +me, he must have been hurried in his task, for my pockets are intact. I +am sure this diary would have been a mystery to him which he would not +have brooked. He would have taken or destroyed it. As I look round this +room, although it has been to me so full of fear, it is now a sort of +sanctuary, for nothing can be more dreadful than those awful women, who +were--who _are_--waiting to suck my blood. + + * * * * * + +_18 May._--I have been down to look at that room again in daylight, for +I _must_ know the truth. When I got to the doorway at the top of the +stairs I found it closed. It had been so forcibly driven against the +jamb that part of the woodwork was splintered. I could see that the bolt +of the lock had not been shot, but the door is fastened from the inside. +I fear it was no dream, and must act on this surmise. + + * * * * * + +_19 May._--I am surely in the toils. Last night the Count asked me in +the suavest tones to write three letters, one saying that my work here +was nearly done, and that I should start for home within a few days, +another that I was starting on the next morning from the time of the +letter, and the third that I had left the castle and arrived at +Bistritz. I would fain have rebelled, but felt that in the present state +of things it would be madness to quarrel openly with the Count whilst I +am so absolutely in his power; and to refuse would be to excite his +suspicion and to arouse his anger. He knows that I know too much, and +that I must not live, lest I be dangerous to him; my only chance is to +prolong my opportunities. Something may occur which will give me a +chance to escape. I saw in his eyes something of that gathering wrath +which was manifest when he hurled that fair woman from him. He explained +to me that posts were few and uncertain, and that my writing now would +ensure ease of mind to my friends; and he assured me with so much +impressiveness that he would countermand the later letters, which would +be held over at Bistritz until due time in case chance would admit of my +prolonging my stay, that to oppose him would have been to create new +suspicion. I therefore pretended to fall in with his views, and asked +him what dates I should put on the letters. He calculated a minute, and +then said:-- + +“The first should be June 12, the second June 19, and the third June +29.” + +I know now the span of my life. God help me! + + * * * * * + +_28 May._--There is a chance of escape, or at any rate of being able to +send word home. A band of Szgany have come to the castle, and are +encamped in the courtyard. These Szgany are gipsies; I have notes of +them in my book. They are peculiar to this part of the world, though +allied to the ordinary gipsies all the world over. There are thousands +of them in Hungary and Transylvania, who are almost outside all law. +They attach themselves as a rule to some great noble or _boyar_, and +call themselves by his name. They are fearless and without religion, +save superstition, and they talk only their own varieties of the Romany +tongue. + +I shall write some letters home, and shall try to get them to have them +posted. I have already spoken them through my window to begin +acquaintanceship. They took their hats off and made obeisance and many +signs, which, however, I could not understand any more than I could +their spoken language.... + + * * * * * + +I have written the letters. Mina’s is in shorthand, and I simply ask Mr. +Hawkins to communicate with her. To her I have explained my situation, +but without the horrors which I may only surmise. It would shock and +frighten her to death were I to expose my heart to her. Should the +letters not carry, then the Count shall not yet know my secret or the +extent of my knowledge.... + + * * * * * + +I have given the letters; I threw them through the bars of my window +with a gold piece, and made what signs I could to have them posted. The +man who took them pressed them to his heart and bowed, and then put them +in his cap. I could do no more. I stole back to the study, and began to +read. As the Count did not come in, I have written here.... + + * * * * * + +The Count has come. He sat down beside me, and said in his smoothest +voice as he opened two letters:-- + +“The Szgany has given me these, of which, though I know not whence they +come, I shall, of course, take care. See!”--he must have looked at +it--“one is from you, and to my friend Peter Hawkins; the other”--here +he caught sight of the strange symbols as he opened the envelope, and +the dark look came into his face, and his eyes blazed wickedly--“the +other is a vile thing, an outrage upon friendship and hospitality! It is +not signed. Well! so it cannot matter to us.” And he calmly held letter +and envelope in the flame of the lamp till they were consumed. Then he +went on:-- + +“The letter to Hawkins--that I shall, of course, send on, since it is +yours. Your letters are sacred to me. Your pardon, my friend, that +unknowingly I did break the seal. Will you not cover it again?” He held +out the letter to me, and with a courteous bow handed me a clean +envelope. I could only redirect it and hand it to him in silence. When +he went out of the room I could hear the key turn softly. A minute later +I went over and tried it, and the door was locked. + +When, an hour or two after, the Count came quietly into the room, his +coming awakened me, for I had gone to sleep on the sofa. He was very +courteous and very cheery in his manner, and seeing that I had been +sleeping, he said:-- + +“So, my friend, you are tired? Get to bed. There is the surest rest. I +may not have the pleasure to talk to-night, since there are many labours +to me; but you will sleep, I pray.” I passed to my room and went to bed, +and, strange to say, slept without dreaming. Despair has its own calms. + + * * * * * + +_31 May._--This morning when I woke I thought I would provide myself +with some paper and envelopes from my bag and keep them in my pocket, so +that I might write in case I should get an opportunity, but again a +surprise, again a shock! + +Every scrap of paper was gone, and with it all my notes, my memoranda, +relating to railways and travel, my letter of credit, in fact all that +might be useful to me were I once outside the castle. I sat and pondered +awhile, and then some thought occurred to me, and I made search of my +portmanteau and in the wardrobe where I had placed my clothes. + +The suit in which I had travelled was gone, and also my overcoat and +rug; I could find no trace of them anywhere. This looked like some new +scheme of villainy.... + + * * * * * + +_17 June._--This morning, as I was sitting on the edge of my bed +cudgelling my brains, I heard without a cracking of whips and pounding +and scraping of horses’ feet up the rocky path beyond the courtyard. +With joy I hurried to the window, and saw drive into the yard two great +leiter-wagons, each drawn by eight sturdy horses, and at the head of +each pair a Slovak, with his wide hat, great nail-studded belt, dirty +sheepskin, and high boots. They had also their long staves in hand. I +ran to the door, intending to descend and try and join them through the +main hall, as I thought that way might be opened for them. Again a +shock: my door was fastened on the outside. + +Then I ran to the window and cried to them. They looked up at me +stupidly and pointed, but just then the “hetman” of the Szgany came out, +and seeing them pointing to my window, said something, at which they +laughed. Henceforth no effort of mine, no piteous cry or agonised +entreaty, would make them even look at me. They resolutely turned away. +The leiter-wagons contained great, square boxes, with handles of thick +rope; these were evidently empty by the ease with which the Slovaks +handled them, and by their resonance as they were roughly moved. When +they were all unloaded and packed in a great heap in one corner of the +yard, the Slovaks were given some money by the Szgany, and spitting on +it for luck, lazily went each to his horse’s head. Shortly afterwards, I +heard the cracking of their whips die away in the distance. + + * * * * * + +_24 June, before morning._--Last night the Count left me early, and +locked himself into his own room. As soon as I dared I ran up the +winding stair, and looked out of the window, which opened south. I +thought I would watch for the Count, for there is something going on. +The Szgany are quartered somewhere in the castle and are doing work of +some kind. I know it, for now and then I hear a far-away muffled sound +as of mattock and spade, and, whatever it is, it must be the end of some +ruthless villainy. + +I had been at the window somewhat less than half an hour, when I saw +something coming out of the Count’s window. I drew back and watched +carefully, and saw the whole man emerge. It was a new shock to me to +find that he had on the suit of clothes which I had worn whilst +travelling here, and slung over his shoulder the terrible bag which I +had seen the women take away. There could be no doubt as to his quest, +and in my garb, too! This, then, is his new scheme of evil: that he will +allow others to see me, as they think, so that he may both leave +evidence that I have been seen in the towns or villages posting my own +letters, and that any wickedness which he may do shall by the local +people be attributed to me. + +It makes me rage to think that this can go on, and whilst I am shut up +here, a veritable prisoner, but without that protection of the law which +is even a criminal’s right and consolation. + +I thought I would watch for the Count’s return, and for a long time sat +doggedly at the window. Then I began to notice that there were some +quaint little specks floating in the rays of the moonlight. They were +like the tiniest grains of dust, and they whirled round and gathered in +clusters in a nebulous sort of way. I watched them with a sense of +soothing, and a sort of calm stole over me. I leaned back in the +embrasure in a more comfortable position, so that I could enjoy more +fully the aërial gambolling. + +Something made me start up, a low, piteous howling of dogs somewhere far +below in the valley, which was hidden from my sight. Louder it seemed to +ring in my ears, and the floating motes of dust to take new shapes to +the sound as they danced in the moonlight. I felt myself struggling to +awake to some call of my instincts; nay, my very soul was struggling, +and my half-remembered sensibilities were striving to answer the call. I +was becoming hypnotised! Quicker and quicker danced the dust; the +moonbeams seemed to quiver as they went by me into the mass of gloom +beyond. More and more they gathered till they seemed to take dim phantom +shapes. And then I started, broad awake and in full possession of my +senses, and ran screaming from the place. The phantom shapes, which were +becoming gradually materialised from the moonbeams, were those of the +three ghostly women to whom I was doomed. I fled, and felt somewhat +safer in my own room, where there was no moonlight and where the lamp +was burning brightly. + +When a couple of hours had passed I heard something stirring in the +Count’s room, something like a sharp wail quickly suppressed; and then +there was silence, deep, awful silence, which chilled me. With a +beating heart, I tried the door; but I was locked in my prison, and +could do nothing. I sat down and simply cried. + +As I sat I heard a sound in the courtyard without--the agonised cry of a +woman. I rushed to the window, and throwing it up, peered out between +the bars. There, indeed, was a woman with dishevelled hair, holding her +hands over her heart as one distressed with running. She was leaning +against a corner of the gateway. When she saw my face at the window she +threw herself forward, and shouted in a voice laden with menace:-- + +“Monster, give me my child!” + +She threw herself on her knees, and raising up her hands, cried the same +words in tones which wrung my heart. Then she tore her hair and beat her +breast, and abandoned herself to all the violences of extravagant +emotion. Finally, she threw herself forward, and, though I could not see +her, I could hear the beating of her naked hands against the door. + +Somewhere high overhead, probably on the tower, I heard the voice of the +Count calling in his harsh, metallic whisper. His call seemed to be +answered from far and wide by the howling of wolves. Before many minutes +had passed a pack of them poured, like a pent-up dam when liberated, +through the wide entrance into the courtyard. + +There was no cry from the woman, and the howling of the wolves was but +short. Before long they streamed away singly, licking their lips. + +I could not pity her, for I knew now what had become of her child, and +she was better dead. + +What shall I do? what can I do? How can I escape from this dreadful +thing of night and gloom and fear? + + * * * * * + +_25 June, morning._--No man knows till he has suffered from the night +how sweet and how dear to his heart and eye the morning can be. When the +sun grew so high this morning that it struck the top of the great +gateway opposite my window, the high spot which it touched seemed to me +as if the dove from the ark had lighted there. My fear fell from me as +if it had been a vaporous garment which dissolved in the warmth. I must +take action of some sort whilst the courage of the day is upon me. Last +night one of my post-dated letters went to post, the first of that fatal +series which is to blot out the very traces of my existence from the +earth. + +Let me not think of it. Action! + +It has always been at night-time that I have been molested or +threatened, or in some way in danger or in fear. I have not yet seen the +Count in the daylight. Can it be that he sleeps when others wake, that +he may be awake whilst they sleep? If I could only get into his room! +But there is no possible way. The door is always locked, no way for me. + +Yes, there is a way, if one dares to take it. Where his body has gone +why may not another body go? I have seen him myself crawl from his +window. Why should not I imitate him, and go in by his window? The +chances are desperate, but my need is more desperate still. I shall risk +it. At the worst it can only be death; and a man’s death is not a +calf’s, and the dreaded Hereafter may still be open to me. God help me +in my task! Good-bye, Mina, if I fail; good-bye, my faithful friend and +second father; good-bye, all, and last of all Mina! + + * * * * * + +_Same day, later._--I have made the effort, and God, helping me, have +come safely back to this room. I must put down every detail in order. I +went whilst my courage was fresh straight to the window on the south +side, and at once got outside on the narrow ledge of stone which runs +around the building on this side. The stones are big and roughly cut, +and the mortar has by process of time been washed away between them. I +took off my boots, and ventured out on the desperate way. I looked down +once, so as to make sure that a sudden glimpse of the awful depth would +not overcome me, but after that kept my eyes away from it. I knew pretty +well the direction and distance of the Count’s window, and made for it +as well as I could, having regard to the opportunities available. I did +not feel dizzy--I suppose I was too excited--and the time seemed +ridiculously short till I found myself standing on the window-sill and +trying to raise up the sash. I was filled with agitation, however, when +I bent down and slid feet foremost in through the window. Then I looked +around for the Count, but, with surprise and gladness, made a discovery. +The room was empty! It was barely furnished with odd things, which +seemed to have never been used; the furniture was something the same +style as that in the south rooms, and was covered with dust. I looked +for the key, but it was not in the lock, and I could not find it +anywhere. The only thing I found was a great heap of gold in one +corner--gold of all kinds, Roman, and British, and Austrian, and +Hungarian, and Greek and Turkish money, covered with a film of dust, as +though it had lain long in the ground. None of it that I noticed was +less than three hundred years old. There were also chains and ornaments, +some jewelled, but all of them old and stained. + +At one corner of the room was a heavy door. I tried it, for, since I +could not find the key of the room or the key of the outer door, which +was the main object of my search, I must make further examination, or +all my efforts would be in vain. It was open, and led through a stone +passage to a circular stairway, which went steeply down. I descended, +minding carefully where I went, for the stairs were dark, being only lit +by loopholes in the heavy masonry. At the bottom there was a dark, +tunnel-like passage, through which came a deathly, sickly odour, the +odour of old earth newly turned. As I went through the passage the smell +grew closer and heavier. At last I pulled open a heavy door which stood +ajar, and found myself in an old, ruined chapel, which had evidently +been used as a graveyard. The roof was broken, and in two places were +steps leading to vaults, but the ground had recently been dug over, and +the earth placed in great wooden boxes, manifestly those which had been +brought by the Slovaks. There was nobody about, and I made search for +any further outlet, but there was none. Then I went over every inch of +the ground, so as not to lose a chance. I went down even into the +vaults, where the dim light struggled, although to do so was a dread to +my very soul. Into two of these I went, but saw nothing except fragments +of old coffins and piles of dust; in the third, however, I made a +discovery. + +There, in one of the great boxes, of which there were fifty in all, on a +pile of newly dug earth, lay the Count! He was either dead or asleep, I +could not say which--for the eyes were open and stony, but without the +glassiness of death--and the cheeks had the warmth of life through all +their pallor; the lips were as red as ever. But there was no sign of +movement, no pulse, no breath, no beating of the heart. I bent over him, +and tried to find any sign of life, but in vain. He could not have lain +there long, for the earthy smell would have passed away in a few hours. +By the side of the box was its cover, pierced with holes here and there. +I thought he might have the keys on him, but when I went to search I saw +the dead eyes, and in them, dead though they were, such a look of hate, +though unconscious of me or my presence, that I fled from the place, and +leaving the Count’s room by the window, crawled again up the castle +wall. Regaining my room, I threw myself panting upon the bed and tried +to think.... + + * * * * * + +_29 June._--To-day is the date of my last letter, and the Count has +taken steps to prove that it was genuine, for again I saw him leave the +castle by the same window, and in my clothes. As he went down the wall, +lizard fashion, I wished I had a gun or some lethal weapon, that I might +destroy him; but I fear that no weapon wrought alone by man’s hand would +have any effect on him. I dared not wait to see him return, for I feared +to see those weird sisters. I came back to the library, and read there +till I fell asleep. + +I was awakened by the Count, who looked at me as grimly as a man can +look as he said:-- + +“To-morrow, my friend, we must part. You return to your beautiful +England, I to some work which may have such an end that we may never +meet. Your letter home has been despatched; to-morrow I shall not be +here, but all shall be ready for your journey. In the morning come the +Szgany, who have some labours of their own here, and also come some +Slovaks. When they have gone, my carriage shall come for you, and shall +bear you to the Borgo Pass to meet the diligence from Bukovina to +Bistritz. But I am in hopes that I shall see more of you at Castle +Dracula.” I suspected him, and determined to test his sincerity. +Sincerity! It seems like a profanation of the word to write it in +connection with such a monster, so asked him point-blank:-- + +“Why may I not go to-night?” + +“Because, dear sir, my coachman and horses are away on a mission.” + +“But I would walk with pleasure. I want to get away at once.” He smiled, +such a soft, smooth, diabolical smile that I knew there was some trick +behind his smoothness. He said:-- + +“And your baggage?” + +“I do not care about it. I can send for it some other time.” + +The Count stood up, and said, with a sweet courtesy which made me rub my +eyes, it seemed so real:-- + +“You English have a saying which is close to my heart, for its spirit is +that which rules our _boyars_: ‘Welcome the coming; speed the parting +guest.’ Come with me, my dear young friend. Not an hour shall you wait +in my house against your will, though sad am I at your going, and that +you so suddenly desire it. Come!” With a stately gravity, he, with the +lamp, preceded me down the stairs and along the hall. Suddenly he +stopped. + +“Hark!” + +Close at hand came the howling of many wolves. It was almost as if the +sound sprang up at the rising of his hand, just as the music of a great +orchestra seems to leap under the bâton of the conductor. After a pause +of a moment, he proceeded, in his stately way, to the door, drew back +the ponderous bolts, unhooked the heavy chains, and began to draw it +open. + +To my intense astonishment I saw that it was unlocked. Suspiciously, I +looked all round, but could see no key of any kind. + +As the door began to open, the howling of the wolves without grew louder +and angrier; their red jaws, with champing teeth, and their blunt-clawed +feet as they leaped, came in through the opening door. I knew then that +to struggle at the moment against the Count was useless. With such +allies as these at his command, I could do nothing. But still the door +continued slowly to open, and only the Count’s body stood in the gap. +Suddenly it struck me that this might be the moment and means of my +doom; I was to be given to the wolves, and at my own instigation. There +was a diabolical wickedness in the idea great enough for the Count, and +as a last chance I cried out:-- + +“Shut the door; I shall wait till morning!” and covered my face with my +hands to hide my tears of bitter disappointment. With one sweep of his +powerful arm, the Count threw the door shut, and the great bolts clanged +and echoed through the hall as they shot back into their places. + +In silence we returned to the library, and after a minute or two I went +to my own room. The last I saw of Count Dracula was his kissing his hand +to me; with a red light of triumph in his eyes, and with a smile that +Judas in hell might be proud of. + +When I was in my room and about to lie down, I thought I heard a +whispering at my door. I went to it softly and listened. Unless my ears +deceived me, I heard the voice of the Count:-- + +“Back, back, to your own place! Your time is not yet come. Wait! Have +patience! To-night is mine. To-morrow night is yours!” There was a low, +sweet ripple of laughter, and in a rage I threw open the door, and saw +without the three terrible women licking their lips. As I appeared they +all joined in a horrible laugh, and ran away. + +I came back to my room and threw myself on my knees. It is then so near +the end? To-morrow! to-morrow! Lord, help me, and those to whom I am +dear! + + * * * * * + +_30 June, morning._--These may be the last words I ever write in this +diary. I slept till just before the dawn, and when I woke threw myself +on my knees, for I determined that if Death came he should find me +ready. + +At last I felt that subtle change in the air, and knew that the morning +had come. Then came the welcome cock-crow, and I felt that I was safe. +With a glad heart, I opened my door and ran down to the hall. I had seen +that the door was unlocked, and now escape was before me. With hands +that trembled with eagerness, I unhooked the chains and drew back the +massive bolts. + +But the door would not move. Despair seized me. I pulled, and pulled, at +the door, and shook it till, massive as it was, it rattled in its +casement. I could see the bolt shot. It had been locked after I left the +Count. + +Then a wild desire took me to obtain that key at any risk, and I +determined then and there to scale the wall again and gain the Count’s +room. He might kill me, but death now seemed the happier choice of +evils. Without a pause I rushed up to the east window, and scrambled +down the wall, as before, into the Count’s room. It was empty, but that +was as I expected. I could not see a key anywhere, but the heap of gold +remained. I went through the door in the corner and down the winding +stair and along the dark passage to the old chapel. I knew now well +enough where to find the monster I sought. + +The great box was in the same place, close against the wall, but the lid +was laid on it, not fastened down, but with the nails ready in their +places to be hammered home. I knew I must reach the body for the key, so +I raised the lid, and laid it back against the wall; and then I saw +something which filled my very soul with horror. There lay the Count, +but looking as if his youth had been half renewed, for the white hair +and moustache were changed to dark iron-grey; the cheeks were fuller, +and the white skin seemed ruby-red underneath; the mouth was redder than +ever, for on the lips were gouts of fresh blood, which trickled from the +corners of the mouth and ran over the chin and neck. Even the deep, +burning eyes seemed set amongst swollen flesh, for the lids and pouches +underneath were bloated. It seemed as if the whole awful creature were +simply gorged with blood. He lay like a filthy leech, exhausted with his +repletion. I shuddered as I bent over to touch him, and every sense in +me revolted at the contact; but I had to search, or I was lost. The +coming night might see my own body a banquet in a similar way to those +horrid three. I felt all over the body, but no sign could I find of the +key. Then I stopped and looked at the Count. There was a mocking smile +on the bloated face which seemed to drive me mad. This was the being I +was helping to transfer to London, where, perhaps, for centuries to come +he might, amongst its teeming millions, satiate his lust for blood, and +create a new and ever-widening circle of semi-demons to batten on the +helpless. The very thought drove me mad. A terrible desire came upon me +to rid the world of such a monster. There was no lethal weapon at hand, +but I seized a shovel which the workmen had been using to fill the +cases, and lifting it high, struck, with the edge downward, at the +hateful face. But as I did so the head turned, and the eyes fell full +upon me, with all their blaze of basilisk horror. The sight seemed to +paralyse me, and the shovel turned in my hand and glanced from the face, +merely making a deep gash above the forehead. The shovel fell from my +hand across the box, and as I pulled it away the flange of the blade +caught the edge of the lid which fell over again, and hid the horrid +thing from my sight. The last glimpse I had was of the bloated face, +blood-stained and fixed with a grin of malice which would have held its +own in the nethermost hell. + +I thought and thought what should be my next move, but my brain seemed +on fire, and I waited with a despairing feeling growing over me. As I +waited I heard in the distance a gipsy song sung by merry voices coming +closer, and through their song the rolling of heavy wheels and the +cracking of whips; the Szgany and the Slovaks of whom the Count had +spoken were coming. With a last look around and at the box which +contained the vile body, I ran from the place and gained the Count’s +room, determined to rush out at the moment the door should be opened. +With strained ears, I listened, and heard downstairs the grinding of the +key in the great lock and the falling back of the heavy door. There must +have been some other means of entry, or some one had a key for one of +the locked doors. Then there came the sound of many feet tramping and +dying away in some passage which sent up a clanging echo. I turned to +run down again towards the vault, where I might find the new entrance; +but at the moment there seemed to come a violent puff of wind, and the +door to the winding stair blew to with a shock that set the dust from +the lintels flying. When I ran to push it open, I found that it was +hopelessly fast. I was again a prisoner, and the net of doom was closing +round me more closely. + +As I write there is in the passage below a sound of many tramping feet +and the crash of weights being set down heavily, doubtless the boxes, +with their freight of earth. There is a sound of hammering; it is the +box being nailed down. Now I can hear the heavy feet tramping again +along the hall, with many other idle feet coming behind them. + +The door is shut, and the chains rattle; there is a grinding of the key +in the lock; I can hear the key withdraw: then another door opens and +shuts; I hear the creaking of lock and bolt. + +Hark! in the courtyard and down the rocky way the roll of heavy wheels, +the crack of whips, and the chorus of the Szgany as they pass into the +distance. + +I am alone in the castle with those awful women. Faugh! Mina is a woman, +and there is nought in common. They are devils of the Pit! + +I shall not remain alone with them; I shall try to scale the castle wall +farther than I have yet attempted. I shall take some of the gold with +me, lest I want it later. I may find a way from this dreadful place. + +And then away for home! away to the quickest and nearest train! away +from this cursed spot, from this cursed land, where the devil and his +children still walk with earthly feet! + +At least God’s mercy is better than that of these monsters, and the +precipice is steep and high. At its foot a man may sleep--as a man. +Good-bye, all! Mina! + + + + +CHAPTER V + +_Letter from Miss Mina Murray to Miss Lucy Westenra._ + + +“_9 May._ + +“My dearest Lucy,-- + +“Forgive my long delay in writing, but I have been simply overwhelmed +with work. The life of an assistant schoolmistress is sometimes trying. +I am longing to be with you, and by the sea, where we can talk together +freely and build our castles in the air. I have been working very hard +lately, because I want to keep up with Jonathan’s studies, and I have +been practising shorthand very assiduously. When we are married I shall +be able to be useful to Jonathan, and if I can stenograph well enough I +can take down what he wants to say in this way and write it out for +him on the typewriter, at which also I am practising very hard. He +and I sometimes write letters in shorthand, and he is keeping a +stenographic journal of his travels abroad. When I am with you I +shall keep a diary in the same way. I don’t mean one of those +two-pages-to-the-week-with-Sunday-squeezed-in-a-corner diaries, but a +sort of journal which I can write in whenever I feel inclined. I do not +suppose there will be much of interest to other people; but it is not +intended for them. I may show it to Jonathan some day if there is in it +anything worth sharing, but it is really an exercise book. I shall try +to do what I see lady journalists do: interviewing and writing +descriptions and trying to remember conversations. I am told that, with +a little practice, one can remember all that goes on or that one hears +said during a day. However, we shall see. I will tell you of my little +plans when we meet. I have just had a few hurried lines from Jonathan +from Transylvania. He is well, and will be returning in about a week. I +am longing to hear all his news. It must be so nice to see strange +countries. I wonder if we--I mean Jonathan and I--shall ever see them +together. There is the ten o’clock bell ringing. Good-bye. + +“Your loving + +“MINA. + +“Tell me all the news when you write. You have not told me anything for +a long time. I hear rumours, and especially of a tall, handsome, +curly-haired man???” + + +_Letter, Lucy Westenra to Mina Murray_. + +“_17, Chatham Street_, + +“_Wednesday_. + +“My dearest Mina,-- + +“I must say you tax me _very_ unfairly with being a bad correspondent. I +wrote to you _twice_ since we parted, and your last letter was only your +_second_. Besides, I have nothing to tell you. There is really nothing +to interest you. Town is very pleasant just now, and we go a good deal +to picture-galleries and for walks and rides in the park. As to the +tall, curly-haired man, I suppose it was the one who was with me at the +last Pop. Some one has evidently been telling tales. That was Mr. +Holmwood. He often comes to see us, and he and mamma get on very well +together; they have so many things to talk about in common. We met some +time ago a man that would just _do for you_, if you were not already +engaged to Jonathan. He is an excellent _parti_, being handsome, well +off, and of good birth. He is a doctor and really clever. Just fancy! He +is only nine-and-twenty, and he has an immense lunatic asylum all under +his own care. Mr. Holmwood introduced him to me, and he called here to +see us, and often comes now. I think he is one of the most resolute men +I ever saw, and yet the most calm. He seems absolutely imperturbable. I +can fancy what a wonderful power he must have over his patients. He has +a curious habit of looking one straight in the face, as if trying to +read one’s thoughts. He tries this on very much with me, but I flatter +myself he has got a tough nut to crack. I know that from my glass. Do +you ever try to read your own face? _I do_, and I can tell you it is not +a bad study, and gives you more trouble than you can well fancy if you +have never tried it. He says that I afford him a curious psychological +study, and I humbly think I do. I do not, as you know, take sufficient +interest in dress to be able to describe the new fashions. Dress is a +bore. That is slang again, but never mind; Arthur says that every day. +There, it is all out. Mina, we have told all our secrets to each other +since we were _children_; we have slept together and eaten together, and +laughed and cried together; and now, though I have spoken, I would like +to speak more. Oh, Mina, couldn’t you guess? I love him. I am blushing +as I write, for although I _think_ he loves me, he has not told me so in +words. But oh, Mina, I love him; I love him; I love him! There, that +does me good. I wish I were with you, dear, sitting by the fire +undressing, as we used to sit; and I would try to tell you what I feel. +I do not know how I am writing this even to you. I am afraid to stop, +or I should tear up the letter, and I don’t want to stop, for I _do_ so +want to tell you all. Let me hear from you _at once_, and tell me all +that you think about it. Mina, I must stop. Good-night. Bless me in your +prayers; and, Mina, pray for my happiness. + +“LUCY. + +“P.S.--I need not tell you this is a secret. Good-night again. + +“L.” + +_Letter, Lucy Westenra to Mina Murray_. + +“_24 May_. + +“My dearest Mina,-- + +“Thanks, and thanks, and thanks again for your sweet letter. It was so +nice to be able to tell you and to have your sympathy. + +“My dear, it never rains but it pours. How true the old proverbs are. +Here am I, who shall be twenty in September, and yet I never had a +proposal till to-day, not a real proposal, and to-day I have had three. +Just fancy! THREE proposals in one day! Isn’t it awful! I feel sorry, +really and truly sorry, for two of the poor fellows. Oh, Mina, I am so +happy that I don’t know what to do with myself. And three proposals! +But, for goodness’ sake, don’t tell any of the girls, or they would be +getting all sorts of extravagant ideas and imagining themselves injured +and slighted if in their very first day at home they did not get six at +least. Some girls are so vain! You and I, Mina dear, who are engaged and +are going to settle down soon soberly into old married women, can +despise vanity. Well, I must tell you about the three, but you must keep +it a secret, dear, from _every one_, except, of course, Jonathan. You +will tell him, because I would, if I were in your place, certainly tell +Arthur. A woman ought to tell her husband everything--don’t you think +so, dear?--and I must be fair. Men like women, certainly their wives, to +be quite as fair as they are; and women, I am afraid, are not always +quite as fair as they should be. Well, my dear, number One came just +before lunch. I told you of him, Dr. John Seward, the lunatic-asylum +man, with the strong jaw and the good forehead. He was very cool +outwardly, but was nervous all the same. He had evidently been schooling +himself as to all sorts of little things, and remembered them; but he +almost managed to sit down on his silk hat, which men don’t generally do +when they are cool, and then when he wanted to appear at ease he kept +playing with a lancet in a way that made me nearly scream. He spoke to +me, Mina, very straightforwardly. He told me how dear I was to him, +though he had known me so little, and what his life would be with me to +help and cheer him. He was going to tell me how unhappy he would be if I +did not care for him, but when he saw me cry he said that he was a brute +and would not add to my present trouble. Then he broke off and asked if +I could love him in time; and when I shook my head his hands trembled, +and then with some hesitation he asked me if I cared already for any one +else. He put it very nicely, saying that he did not want to wring my +confidence from me, but only to know, because if a woman’s heart was +free a man might have hope. And then, Mina, I felt a sort of duty to +tell him that there was some one. I only told him that much, and then he +stood up, and he looked very strong and very grave as he took both my +hands in his and said he hoped I would be happy, and that if I ever +wanted a friend I must count him one of my best. Oh, Mina dear, I can’t +help crying: and you must excuse this letter being all blotted. Being +proposed to is all very nice and all that sort of thing, but it isn’t at +all a happy thing when you have to see a poor fellow, whom you know +loves you honestly, going away and looking all broken-hearted, and to +know that, no matter what he may say at the moment, you are passing +quite out of his life. My dear, I must stop here at present, I feel so +miserable, though I am so happy. + +“_Evening._ + +“Arthur has just gone, and I feel in better spirits than when I left +off, so I can go on telling you about the day. Well, my dear, number Two +came after lunch. He is such a nice fellow, an American from Texas, and +he looks so young and so fresh that it seems almost impossible that he +has been to so many places and has had such adventures. I sympathise +with poor Desdemona when she had such a dangerous stream poured in her +ear, even by a black man. I suppose that we women are such cowards that +we think a man will save us from fears, and we marry him. I know now +what I would do if I were a man and wanted to make a girl love me. No, I +don’t, for there was Mr. Morris telling us his stories, and Arthur never +told any, and yet---- My dear, I am somewhat previous. Mr. Quincey P. +Morris found me alone. It seems that a man always does find a girl +alone. No, he doesn’t, for Arthur tried twice to _make_ a chance, and I +helping him all I could; I am not ashamed to say it now. I must tell you +beforehand that Mr. Morris doesn’t always speak slang--that is to say, +he never does so to strangers or before them, for he is really well +educated and has exquisite manners--but he found out that it amused me +to hear him talk American slang, and whenever I was present, and there +was no one to be shocked, he said such funny things. I am afraid, my +dear, he has to invent it all, for it fits exactly into whatever else he +has to say. But this is a way slang has. I do not know myself if I shall +ever speak slang; I do not know if Arthur likes it, as I have never +heard him use any as yet. Well, Mr. Morris sat down beside me and looked +as happy and jolly as he could, but I could see all the same that he was +very nervous. He took my hand in his, and said ever so sweetly:-- + +“‘Miss Lucy, I know I ain’t good enough to regulate the fixin’s of your +little shoes, but I guess if you wait till you find a man that is you +will go join them seven young women with the lamps when you quit. Won’t +you just hitch up alongside of me and let us go down the long road +together, driving in double harness?’ + +“Well, he did look so good-humoured and so jolly that it didn’t seem +half so hard to refuse him as it did poor Dr. Seward; so I said, as +lightly as I could, that I did not know anything of hitching, and that I +wasn’t broken to harness at all yet. Then he said that he had spoken in +a light manner, and he hoped that if he had made a mistake in doing so +on so grave, so momentous, an occasion for him, I would forgive him. He +really did look serious when he was saying it, and I couldn’t help +feeling a bit serious too--I know, Mina, you will think me a horrid +flirt--though I couldn’t help feeling a sort of exultation that he was +number two in one day. And then, my dear, before I could say a word he +began pouring out a perfect torrent of love-making, laying his very +heart and soul at my feet. He looked so earnest over it that I shall +never again think that a man must be playful always, and never earnest, +because he is merry at times. I suppose he saw something in my face +which checked him, for he suddenly stopped, and said with a sort of +manly fervour that I could have loved him for if I had been free:-- + +“‘Lucy, you are an honest-hearted girl, I know. I should not be here +speaking to you as I am now if I did not believe you clean grit, right +through to the very depths of your soul. Tell me, like one good fellow +to another, is there any one else that you care for? And if there is +I’ll never trouble you a hair’s breadth again, but will be, if you will +let me, a very faithful friend.’ + +“My dear Mina, why are men so noble when we women are so little worthy +of them? Here was I almost making fun of this great-hearted, true +gentleman. I burst into tears--I am afraid, my dear, you will think +this a very sloppy letter in more ways than one--and I really felt very +badly. Why can’t they let a girl marry three men, or as many as want +her, and save all this trouble? But this is heresy, and I must not say +it. I am glad to say that, though I was crying, I was able to look into +Mr. Morris’s brave eyes, and I told him out straight:-- + +“‘Yes, there is some one I love, though he has not told me yet that he +even loves me.’ I was right to speak to him so frankly, for quite a +light came into his face, and he put out both his hands and took mine--I +think I put them into his--and said in a hearty way:-- + +“‘That’s my brave girl. It’s better worth being late for a chance of +winning you than being in time for any other girl in the world. Don’t +cry, my dear. If it’s for me, I’m a hard nut to crack; and I take it +standing up. If that other fellow doesn’t know his happiness, well, he’d +better look for it soon, or he’ll have to deal with me. Little girl, +your honesty and pluck have made me a friend, and that’s rarer than a +lover; it’s more unselfish anyhow. My dear, I’m going to have a pretty +lonely walk between this and Kingdom Come. Won’t you give me one kiss? +It’ll be something to keep off the darkness now and then. You can, you +know, if you like, for that other good fellow--he must be a good fellow, +my dear, and a fine fellow, or you could not love him--hasn’t spoken +yet.’ That quite won me, Mina, for it _was_ brave and sweet of him, and +noble, too, to a rival--wasn’t it?--and he so sad; so I leant over and +kissed him. He stood up with my two hands in his, and as he looked down +into my face--I am afraid I was blushing very much--he said:-- + +“‘Little girl, I hold your hand, and you’ve kissed me, and if these +things don’t make us friends nothing ever will. Thank you for your sweet +honesty to me, and good-bye.’ He wrung my hand, and taking up his hat, +went straight out of the room without looking back, without a tear or a +quiver or a pause; and I am crying like a baby. Oh, why must a man like +that be made unhappy when there are lots of girls about who would +worship the very ground he trod on? I know I would if I were free--only +I don’t want to be free. My dear, this quite upset me, and I feel I +cannot write of happiness just at once, after telling you of it; and I +don’t wish to tell of the number three until it can be all happy. + +“Ever your loving + +“LUCY. + +“P.S.--Oh, about number Three--I needn’t tell you of number Three, need +I? Besides, it was all so confused; it seemed only a moment from his +coming into the room till both his arms were round me, and he was +kissing me. I am very, very happy, and I don’t know what I have done to +deserve it. I must only try in the future to show that I am not +ungrateful to God for all His goodness to me in sending to me such a +lover, such a husband, and such a friend. + +“Good-bye.” + + +_Dr. Seward’s Diary._ + +(Kept in phonograph) + +_25 May._--Ebb tide in appetite to-day. Cannot eat, cannot rest, so +diary instead. Since my rebuff of yesterday I have a sort of empty +feeling; nothing in the world seems of sufficient importance to be worth +the doing.... As I knew that the only cure for this sort of thing was +work, I went down amongst the patients. I picked out one who has +afforded me a study of much interest. He is so quaint that I am +determined to understand him as well as I can. To-day I seemed to get +nearer than ever before to the heart of his mystery. + +I questioned him more fully than I had ever done, with a view to making +myself master of the facts of his hallucination. In my manner of doing +it there was, I now see, something of cruelty. I seemed to wish to keep +him to the point of his madness--a thing which I avoid with the patients +as I would the mouth of hell. + +(_Mem._, under what circumstances would I _not_ avoid the pit of hell?) +_Omnia Romæ venalia sunt._ Hell has its price! _verb. sap._ If there be +anything behind this instinct it will be valuable to trace it afterwards +_accurately_, so I had better commence to do so, therefore-- + +R. M. Renfield, ætat 59.--Sanguine temperament; great physical strength; +morbidly excitable; periods of gloom, ending in some fixed idea which I +cannot make out. I presume that the sanguine temperament itself and the +disturbing influence end in a mentally-accomplished finish; a possibly +dangerous man, probably dangerous if unselfish. In selfish men caution +is as secure an armour for their foes as for themselves. What I think of +on this point is, when self is the fixed point the centripetal force is +balanced with the centrifugal; when duty, a cause, etc., is the fixed +point, the latter force is paramount, and only accident or a series of +accidents can balance it. + + +_Letter, Quincey P. Morris to Hon. Arthur Holmwood._ + +“_25 May._ + +“My dear Art,-- + +“We’ve told yarns by the camp-fire in the prairies; and dressed one +another’s wounds after trying a landing at the Marquesas; and drunk +healths on the shore of Titicaca. There are more yarns to be told, and +other wounds to be healed, and another health to be drunk. Won’t you let +this be at my camp-fire to-morrow night? I have no hesitation in asking +you, as I know a certain lady is engaged to a certain dinner-party, and +that you are free. There will only be one other, our old pal at the +Korea, Jack Seward. He’s coming, too, and we both want to mingle our +weeps over the wine-cup, and to drink a health with all our hearts to +the happiest man in all the wide world, who has won the noblest heart +that God has made and the best worth winning. We promise you a hearty +welcome, and a loving greeting, and a health as true as your own right +hand. We shall both swear to leave you at home if you drink too deep to +a certain pair of eyes. Come! + +“Yours, as ever and always, + +“QUINCEY P. MORRIS.” + + +_Telegram from Arthur Holmwood to Quincey P. Morris._ + +“_26 May._ + +“Count me in every time. I bear messages which will make both your ears +tingle. + +“ART.” + + + + +CHAPTER VI + +MINA MURRAY’S JOURNAL + + +_24 July. Whitby._--Lucy met me at the station, looking sweeter and +lovelier than ever, and we drove up to the house at the Crescent in +which they have rooms. This is a lovely place. The little river, the +Esk, runs through a deep valley, which broadens out as it comes near the +harbour. A great viaduct runs across, with high piers, through which the +view seems somehow further away than it really is. The valley is +beautifully green, and it is so steep that when you are on the high land +on either side you look right across it, unless you are near enough to +see down. The houses of the old town--the side away from us--are all +red-roofed, and seem piled up one over the other anyhow, like the +pictures we see of Nuremberg. Right over the town is the ruin of Whitby +Abbey, which was sacked by the Danes, and which is the scene of part of +“Marmion,” where the girl was built up in the wall. It is a most noble +ruin, of immense size, and full of beautiful and romantic bits; there is +a legend that a white lady is seen in one of the windows. Between it and +the town there is another church, the parish one, round which is a big +graveyard, all full of tombstones. This is to my mind the nicest spot in +Whitby, for it lies right over the town, and has a full view of the +harbour and all up the bay to where the headland called Kettleness +stretches out into the sea. It descends so steeply over the harbour that +part of the bank has fallen away, and some of the graves have been +destroyed. In one place part of the stonework of the graves stretches +out over the sandy pathway far below. There are walks, with seats beside +them, through the churchyard; and people go and sit there all day long +looking at the beautiful view and enjoying the breeze. I shall come and +sit here very often myself and work. Indeed, I am writing now, with my +book on my knee, and listening to the talk of three old men who are +sitting beside me. They seem to do nothing all day but sit up here and +talk. + +The harbour lies below me, with, on the far side, one long granite wall +stretching out into the sea, with a curve outwards at the end of it, in +the middle of which is a lighthouse. A heavy sea-wall runs along outside +of it. On the near side, the sea-wall makes an elbow crooked inversely, +and its end too has a lighthouse. Between the two piers there is a +narrow opening into the harbour, which then suddenly widens. + +It is nice at high water; but when the tide is out it shoals away to +nothing, and there is merely the stream of the Esk, running between +banks of sand, with rocks here and there. Outside the harbour on this +side there rises for about half a mile a great reef, the sharp edge of +which runs straight out from behind the south lighthouse. At the end of +it is a buoy with a bell, which swings in bad weather, and sends in a +mournful sound on the wind. They have a legend here that when a ship is +lost bells are heard out at sea. I must ask the old man about this; he +is coming this way.... + +He is a funny old man. He must be awfully old, for his face is all +gnarled and twisted like the bark of a tree. He tells me that he is +nearly a hundred, and that he was a sailor in the Greenland fishing +fleet when Waterloo was fought. He is, I am afraid, a very sceptical +person, for when I asked him about the bells at sea and the White Lady +at the abbey he said very brusquely:-- + +“I wouldn’t fash masel’ about them, miss. Them things be all wore out. +Mind, I don’t say that they never was, but I do say that they wasn’t in +my time. They be all very well for comers and trippers, an’ the like, +but not for a nice young lady like you. Them feet-folks from York and +Leeds that be always eatin’ cured herrin’s an’ drinkin’ tea an’ lookin’ +out to buy cheap jet would creed aught. I wonder masel’ who’d be +bothered tellin’ lies to them--even the newspapers, which is full of +fool-talk.” I thought he would be a good person to learn interesting +things from, so I asked him if he would mind telling me something about +the whale-fishing in the old days. He was just settling himself to begin +when the clock struck six, whereupon he laboured to get up, and said:-- + +“I must gang ageeanwards home now, miss. My grand-daughter doesn’t like +to be kept waitin’ when the tea is ready, for it takes me time to +crammle aboon the grees, for there be a many of ’em; an’, miss, I lack +belly-timber sairly by the clock.” + +He hobbled away, and I could see him hurrying, as well as he could, down +the steps. The steps are a great feature on the place. They lead from +the town up to the church, there are hundreds of them--I do not know how +many--and they wind up in a delicate curve; the slope is so gentle that +a horse could easily walk up and down them. I think they must originally +have had something to do with the abbey. I shall go home too. Lucy went +out visiting with her mother, and as they were only duty calls, I did +not go. They will be home by this. + + * * * * * + +_1 August._--I came up here an hour ago with Lucy, and we had a most +interesting talk with my old friend and the two others who always come +and join him. He is evidently the Sir Oracle of them, and I should think +must have been in his time a most dictatorial person. He will not admit +anything, and downfaces everybody. If he can’t out-argue them he bullies +them, and then takes their silence for agreement with his views. Lucy +was looking sweetly pretty in her white lawn frock; she has got a +beautiful colour since she has been here. I noticed that the old men did +not lose any time in coming up and sitting near her when we sat down. +She is so sweet with old people; I think they all fell in love with her +on the spot. Even my old man succumbed and did not contradict her, but +gave me double share instead. I got him on the subject of the legends, +and he went off at once into a sort of sermon. I must try to remember it +and put it down:-- + +“It be all fool-talk, lock, stock, and barrel; that’s what it be, an’ +nowt else. These bans an’ wafts an’ boh-ghosts an’ barguests an’ bogles +an’ all anent them is only fit to set bairns an’ dizzy women +a-belderin’. They be nowt but air-blebs. They, an’ all grims an’ signs +an’ warnin’s, be all invented by parsons an’ illsome beuk-bodies an’ +railway touters to skeer an’ scunner hafflin’s, an’ to get folks to do +somethin’ that they don’t other incline to. It makes me ireful to think +o’ them. Why, it’s them that, not content with printin’ lies on paper +an’ preachin’ them out of pulpits, does want to be cuttin’ them on the +tombstones. Look here all around you in what airt ye will; all them +steans, holdin’ up their heads as well as they can out of their pride, +is acant--simply tumblin’ down with the weight o’ the lies wrote on +them, ‘Here lies the body’ or ‘Sacred to the memory’ wrote on all of +them, an’ yet in nigh half of them there bean’t no bodies at all; an’ +the memories of them bean’t cared a pinch of snuff about, much less +sacred. Lies all of them, nothin’ but lies of one kind or another! My +gog, but it’ll be a quare scowderment at the Day of Judgment when they +come tumblin’ up in their death-sarks, all jouped together an’ tryin’ to +drag their tombsteans with them to prove how good they was; some of them +trimmlin’ and ditherin’, with their hands that dozzened an’ slippy from +lyin’ in the sea that they can’t even keep their grup o’ them.” + +I could see from the old fellow’s self-satisfied air and the way in +which he looked round for the approval of his cronies that he was +“showing off,” so I put in a word to keep him going:-- + +“Oh, Mr. Swales, you can’t be serious. Surely these tombstones are not +all wrong?” + +“Yabblins! There may be a poorish few not wrong, savin’ where they make +out the people too good; for there be folk that do think a balm-bowl be +like the sea, if only it be their own. The whole thing be only lies. Now +look you here; you come here a stranger, an’ you see this kirk-garth.” I +nodded, for I thought it better to assent, though I did not quite +understand his dialect. I knew it had something to do with the church. +He went on: “And you consate that all these steans be aboon folk that be +happed here, snod an’ snog?” I assented again. “Then that be just where +the lie comes in. Why, there be scores of these lay-beds that be toom as +old Dun’s ’bacca-box on Friday night.” He nudged one of his companions, +and they all laughed. “And my gog! how could they be otherwise? Look at +that one, the aftest abaft the bier-bank: read it!” I went over and +read:-- + +“Edward Spencelagh, master mariner, murdered by pirates off the coast of +Andres, April, 1854, æt. 30.” When I came back Mr. Swales went on:-- + +“Who brought him home, I wonder, to hap him here? Murdered off the coast +of Andres! an’ you consated his body lay under! Why, I could name ye a +dozen whose bones lie in the Greenland seas above”--he pointed +northwards--“or where the currents may have drifted them. There be the +steans around ye. Ye can, with your young eyes, read the small-print of +the lies from here. This Braithwaite Lowrey--I knew his father, lost in +the _Lively_ off Greenland in ’20; or Andrew Woodhouse, drowned in the +same seas in 1777; or John Paxton, drowned off Cape Farewell a year +later; or old John Rawlings, whose grandfather sailed with me, drowned +in the Gulf of Finland in ’50. Do ye think that all these men will have +to make a rush to Whitby when the trumpet sounds? I have me antherums +aboot it! I tell ye that when they got here they’d be jommlin’ an’ +jostlin’ one another that way that it ’ud be like a fight up on the ice +in the old days, when we’d be at one another from daylight to dark, an’ +tryin’ to tie up our cuts by the light of the aurora borealis.” This was +evidently local pleasantry, for the old man cackled over it, and his +cronies joined in with gusto. + +“But,” I said, “surely you are not quite correct, for you start on the +assumption that all the poor people, or their spirits, will have to +take their tombstones with them on the Day of Judgment. Do you think +that will be really necessary?” + +“Well, what else be they tombstones for? Answer me that, miss!” + +“To please their relatives, I suppose.” + +“To please their relatives, you suppose!” This he said with intense +scorn. “How will it pleasure their relatives to know that lies is wrote +over them, and that everybody in the place knows that they be lies?” He +pointed to a stone at our feet which had been laid down as a slab, on +which the seat was rested, close to the edge of the cliff. “Read the +lies on that thruff-stean,” he said. The letters were upside down to me +from where I sat, but Lucy was more opposite to them, so she leant over +and read:-- + +“Sacred to the memory of George Canon, who died, in the hope of a +glorious resurrection, on July, 29, 1873, falling from the rocks at +Kettleness. This tomb was erected by his sorrowing mother to her dearly +beloved son. ‘He was the only son of his mother, and she was a widow.’ +Really, Mr. Swales, I don’t see anything very funny in that!” She spoke +her comment very gravely and somewhat severely. + +“Ye don’t see aught funny! Ha! ha! But that’s because ye don’t gawm the +sorrowin’ mother was a hell-cat that hated him because he was +acrewk’d--a regular lamiter he was--an’ he hated her so that he +committed suicide in order that she mightn’t get an insurance she put on +his life. He blew nigh the top of his head off with an old musket that +they had for scarin’ the crows with. ’Twarn’t for crows then, for it +brought the clegs and the dowps to him. That’s the way he fell off the +rocks. And, as to hopes of a glorious resurrection, I’ve often heard him +say masel’ that he hoped he’d go to hell, for his mother was so pious +that she’d be sure to go to heaven, an’ he didn’t want to addle where +she was. Now isn’t that stean at any rate”--he hammered it with his +stick as he spoke--“a pack of lies? and won’t it make Gabriel keckle +when Geordie comes pantin’ up the grees with the tombstean balanced on +his hump, and asks it to be took as evidence!” + +I did not know what to say, but Lucy turned the conversation as she +said, rising up:-- + +“Oh, why did you tell us of this? It is my favourite seat, and I cannot +leave it; and now I find I must go on sitting over the grave of a +suicide.” + +“That won’t harm ye, my pretty; an’ it may make poor Geordie gladsome to +have so trim a lass sittin’ on his lap. That won’t hurt ye. Why, I’ve +sat here off an’ on for nigh twenty years past, an’ it hasn’t done me +no harm. Don’t ye fash about them as lies under ye, or that doesn’ lie +there either! It’ll be time for ye to be getting scart when ye see the +tombsteans all run away with, and the place as bare as a stubble-field. +There’s the clock, an’ I must gang. My service to ye, ladies!” And off +he hobbled. + +Lucy and I sat awhile, and it was all so beautiful before us that we +took hands as we sat; and she told me all over again about Arthur and +their coming marriage. That made me just a little heart-sick, for I +haven’t heard from Jonathan for a whole month. + + * * * * * + +_The same day._ I came up here alone, for I am very sad. There was no +letter for me. I hope there cannot be anything the matter with Jonathan. +The clock has just struck nine. I see the lights scattered all over the +town, sometimes in rows where the streets are, and sometimes singly; +they run right up the Esk and die away in the curve of the valley. To my +left the view is cut off by a black line of roof of the old house next +the abbey. The sheep and lambs are bleating in the fields away behind +me, and there is a clatter of a donkey’s hoofs up the paved road below. +The band on the pier is playing a harsh waltz in good time, and further +along the quay there is a Salvation Army meeting in a back street. +Neither of the bands hears the other, but up here I hear and see them +both. I wonder where Jonathan is and if he is thinking of me! I wish he +were here. + + +_Dr. Seward’s Diary._ + +_5 June._--The case of Renfield grows more interesting the more I get to +understand the man. He has certain qualities very largely developed; +selfishness, secrecy, and purpose. I wish I could get at what is the +object of the latter. He seems to have some settled scheme of his own, +but what it is I do not yet know. His redeeming quality is a love of +animals, though, indeed, he has such curious turns in it that I +sometimes imagine he is only abnormally cruel. His pets are of odd +sorts. Just now his hobby is catching flies. He has at present such a +quantity that I have had myself to expostulate. To my astonishment, he +did not break out into a fury, as I expected, but took the matter in +simple seriousness. He thought for a moment, and then said: “May I have +three days? I shall clear them away.” Of course, I said that would do. I +must watch him. + + * * * * * + +_18 June._--He has turned his mind now to spiders, and has got several +very big fellows in a box. He keeps feeding them with his flies, and +the number of the latter is becoming sensibly diminished, although he +has used half his food in attracting more flies from outside to his +room. + + * * * * * + +_1 July._--His spiders are now becoming as great a nuisance as his +flies, and to-day I told him that he must get rid of them. He looked +very sad at this, so I said that he must clear out some of them, at all +events. He cheerfully acquiesced in this, and I gave him the same time +as before for reduction. He disgusted me much while with him, for when a +horrid blow-fly, bloated with some carrion food, buzzed into the room, +he caught it, held it exultantly for a few moments between his finger +and thumb, and, before I knew what he was going to do, put it in his +mouth and ate it. I scolded him for it, but he argued quietly that it +was very good and very wholesome; that it was life, strong life, and +gave life to him. This gave me an idea, or the rudiment of one. I must +watch how he gets rid of his spiders. He has evidently some deep problem +in his mind, for he keeps a little note-book in which he is always +jotting down something. Whole pages of it are filled with masses of +figures, generally single numbers added up in batches, and then the +totals added in batches again, as though he were “focussing” some +account, as the auditors put it. + + * * * * * + +_8 July._--There is a method in his madness, and the rudimentary idea in +my mind is growing. It will be a whole idea soon, and then, oh, +unconscious cerebration! you will have to give the wall to your +conscious brother. I kept away from my friend for a few days, so that I +might notice if there were any change. Things remain as they were except +that he has parted with some of his pets and got a new one. He has +managed to get a sparrow, and has already partially tamed it. His means +of taming is simple, for already the spiders have diminished. Those that +do remain, however, are well fed, for he still brings in the flies by +tempting them with his food. + + * * * * * + +_19 July._--We are progressing. My friend has now a whole colony of +sparrows, and his flies and spiders are almost obliterated. When I came +in he ran to me and said he wanted to ask me a great favour--a very, +very great favour; and as he spoke he fawned on me like a dog. I asked +him what it was, and he said, with a sort of rapture in his voice and +bearing:-- + +“A kitten, a nice little, sleek playful kitten, that I can play with, +and teach, and feed--and feed--and feed!” I was not unprepared for this +request, for I had noticed how his pets went on increasing in size and +vivacity, but I did not care that his pretty family of tame sparrows +should be wiped out in the same manner as the flies and the spiders; so +I said I would see about it, and asked him if he would not rather have a +cat than a kitten. His eagerness betrayed him as he answered:-- + +“Oh, yes, I would like a cat! I only asked for a kitten lest you should +refuse me a cat. No one would refuse me a kitten, would they?” I shook +my head, and said that at present I feared it would not be possible, but +that I would see about it. His face fell, and I could see a warning of +danger in it, for there was a sudden fierce, sidelong look which meant +killing. The man is an undeveloped homicidal maniac. I shall test him +with his present craving and see how it will work out; then I shall know +more. + + * * * * * + +_10 p. m._--I have visited him again and found him sitting in a corner +brooding. When I came in he threw himself on his knees before me and +implored me to let him have a cat; that his salvation depended upon it. +I was firm, however, and told him that he could not have it, whereupon +he went without a word, and sat down, gnawing his fingers, in the corner +where I had found him. I shall see him in the morning early. + + * * * * * + +_20 July._--Visited Renfield very early, before the attendant went his +rounds. Found him up and humming a tune. He was spreading out his sugar, +which he had saved, in the window, and was manifestly beginning his +fly-catching again; and beginning it cheerfully and with a good grace. I +looked around for his birds, and not seeing them, asked him where they +were. He replied, without turning round, that they had all flown away. +There were a few feathers about the room and on his pillow a drop of +blood. I said nothing, but went and told the keeper to report to me if +there were anything odd about him during the day. + + * * * * * + +_11 a. m._--The attendant has just been to me to say that Renfield has +been very sick and has disgorged a whole lot of feathers. “My belief is, +doctor,” he said, “that he has eaten his birds, and that he just took +and ate them raw!” + + * * * * * + +_11 p. m._--I gave Renfield a strong opiate to-night, enough to make +even him sleep, and took away his pocket-book to look at it. The thought +that has been buzzing about my brain lately is complete, and the theory +proved. My homicidal maniac is of a peculiar kind. I shall have to +invent a new classification for him, and call him a zoöphagous +(life-eating) maniac; what he desires is to absorb as many lives as he +can, and he has laid himself out to achieve it in a cumulative way. He +gave many flies to one spider and many spiders to one bird, and then +wanted a cat to eat the many birds. What would have been his later +steps? It would almost be worth while to complete the experiment. It +might be done if there were only a sufficient cause. Men sneered at +vivisection, and yet look at its results to-day! Why not advance science +in its most difficult and vital aspect--the knowledge of the brain? Had +I even the secret of one such mind--did I hold the key to the fancy of +even one lunatic--I might advance my own branch of science to a pitch +compared with which Burdon-Sanderson’s physiology or Ferrier’s +brain-knowledge would be as nothing. If only there were a sufficient +cause! I must not think too much of this, or I may be tempted; a good +cause might turn the scale with me, for may not I too be of an +exceptional brain, congenitally? + +How well the man reasoned; lunatics always do within their own scope. I +wonder at how many lives he values a man, or if at only one. He has +closed the account most accurately, and to-day begun a new record. How +many of us begin a new record with each day of our lives? + +To me it seems only yesterday that my whole life ended with my new hope, +and that truly I began a new record. So it will be until the Great +Recorder sums me up and closes my ledger account with a balance to +profit or loss. Oh, Lucy, Lucy, I cannot be angry with you, nor can I be +angry with my friend whose happiness is yours; but I must only wait on +hopeless and work. Work! work! + +If I only could have as strong a cause as my poor mad friend there--a +good, unselfish cause to make me work--that would be indeed happiness. + + +_Mina Murray’s Journal._ + +_26 July._--I am anxious, and it soothes me to express myself here; it +is like whispering to one’s self and listening at the same time. And +there is also something about the shorthand symbols that makes it +different from writing. I am unhappy about Lucy and about Jonathan. I +had not heard from Jonathan for some time, and was very concerned; but +yesterday dear Mr. Hawkins, who is always so kind, sent me a letter from +him. I had written asking him if he had heard, and he said the enclosed +had just been received. It is only a line dated from Castle Dracula, +and says that he is just starting for home. That is not like Jonathan; +I do not understand it, and it makes me uneasy. Then, too, Lucy, +although she is so well, has lately taken to her old habit of walking in +her sleep. Her mother has spoken to me about it, and we have decided +that I am to lock the door of our room every night. Mrs. Westenra has +got an idea that sleep-walkers always go out on roofs of houses and +along the edges of cliffs and then get suddenly wakened and fall over +with a despairing cry that echoes all over the place. Poor dear, she is +naturally anxious about Lucy, and she tells me that her husband, Lucy’s +father, had the same habit; that he would get up in the night and dress +himself and go out, if he were not stopped. Lucy is to be married in the +autumn, and she is already planning out her dresses and how her house is +to be arranged. I sympathise with her, for I do the same, only Jonathan +and I will start in life in a very simple way, and shall have to try to +make both ends meet. Mr. Holmwood--he is the Hon. Arthur Holmwood, only +son of Lord Godalming--is coming up here very shortly--as soon as he can +leave town, for his father is not very well, and I think dear Lucy is +counting the moments till he comes. She wants to take him up to the seat +on the churchyard cliff and show him the beauty of Whitby. I daresay it +is the waiting which disturbs her; she will be all right when he +arrives. + + * * * * * + +_27 July._--No news from Jonathan. I am getting quite uneasy about him, +though why I should I do not know; but I do wish that he would write, if +it were only a single line. Lucy walks more than ever, and each night I +am awakened by her moving about the room. Fortunately, the weather is so +hot that she cannot get cold; but still the anxiety and the perpetually +being wakened is beginning to tell on me, and I am getting nervous and +wakeful myself. Thank God, Lucy’s health keeps up. Mr. Holmwood has been +suddenly called to Ring to see his father, who has been taken seriously +ill. Lucy frets at the postponement of seeing him, but it does not touch +her looks; she is a trifle stouter, and her cheeks are a lovely +rose-pink. She has lost that anæmic look which she had. I pray it will +all last. + + * * * * * + +_3 August._--Another week gone, and no news from Jonathan, not even to +Mr. Hawkins, from whom I have heard. Oh, I do hope he is not ill. He +surely would have written. I look at that last letter of his, but +somehow it does not satisfy me. It does not read like him, and yet it is +his writing. There is no mistake of that. Lucy has not walked much in +her sleep the last week, but there is an odd concentration about her +which I do not understand; even in her sleep she seems to be watching +me. She tries the door, and finding it locked, goes about the room +searching for the key. + +_6 August._--Another three days, and no news. This suspense is getting +dreadful. If I only knew where to write to or where to go to, I should +feel easier; but no one has heard a word of Jonathan since that last +letter. I must only pray to God for patience. Lucy is more excitable +than ever, but is otherwise well. Last night was very threatening, and +the fishermen say that we are in for a storm. I must try to watch it and +learn the weather signs. To-day is a grey day, and the sun as I write is +hidden in thick clouds, high over Kettleness. Everything is grey--except +the green grass, which seems like emerald amongst it; grey earthy rock; +grey clouds, tinged with the sunburst at the far edge, hang over the +grey sea, into which the sand-points stretch like grey fingers. The sea +is tumbling in over the shallows and the sandy flats with a roar, +muffled in the sea-mists drifting inland. The horizon is lost in a grey +mist. All is vastness; the clouds are piled up like giant rocks, and +there is a “brool” over the sea that sounds like some presage of doom. +Dark figures are on the beach here and there, sometimes half shrouded in +the mist, and seem “men like trees walking.” The fishing-boats are +racing for home, and rise and dip in the ground swell as they sweep into +the harbour, bending to the scuppers. Here comes old Mr. Swales. He is +making straight for me, and I can see, by the way he lifts his hat, that +he wants to talk.... + +I have been quite touched by the change in the poor old man. When he sat +down beside me, he said in a very gentle way:-- + +“I want to say something to you, miss.” I could see he was not at ease, +so I took his poor old wrinkled hand in mine and asked him to speak +fully; so he said, leaving his hand in mine:-- + +“I’m afraid, my deary, that I must have shocked you by all the wicked +things I’ve been sayin’ about the dead, and such like, for weeks past; +but I didn’t mean them, and I want ye to remember that when I’m gone. We +aud folks that be daffled, and with one foot abaft the krok-hooal, don’t +altogether like to think of it, and we don’t want to feel scart of it; +an’ that’s why I’ve took to makin’ light of it, so that I’d cheer up my +own heart a bit. But, Lord love ye, miss, I ain’t afraid of dyin’, not a +bit; only I don’t want to die if I can help it. My time must be nigh at +hand now, for I be aud, and a hundred years is too much for any man to +expect; and I’m so nigh it that the Aud Man is already whettin’ his +scythe. Ye see, I can’t get out o’ the habit of caffin’ about it all at +once; the chafts will wag as they be used to. Some day soon the Angel of +Death will sound his trumpet for me. But don’t ye dooal an’ greet, my +deary!”--for he saw that I was crying--“if he should come this very +night I’d not refuse to answer his call. For life be, after all, only a +waitin’ for somethin’ else than what we’re doin’; and death be all that +we can rightly depend on. But I’m content, for it’s comin’ to me, my +deary, and comin’ quick. It may be comin’ while we be lookin’ and +wonderin’. Maybe it’s in that wind out over the sea that’s bringin’ with +it loss and wreck, and sore distress, and sad hearts. Look! look!” he +cried suddenly. “There’s something in that wind and in the hoast beyont +that sounds, and looks, and tastes, and smells like death. It’s in the +air; I feel it comin’. Lord, make me answer cheerful when my call +comes!” He held up his arms devoutly, and raised his hat. His mouth +moved as though he were praying. After a few minutes’ silence, he got +up, shook hands with me, and blessed me, and said good-bye, and hobbled +off. It all touched me, and upset me very much. + +I was glad when the coastguard came along, with his spy-glass under his +arm. He stopped to talk with me, as he always does, but all the time +kept looking at a strange ship. + +“I can’t make her out,” he said; “she’s a Russian, by the look of her; +but she’s knocking about in the queerest way. She doesn’t know her mind +a bit; she seems to see the storm coming, but can’t decide whether to +run up north in the open, or to put in here. Look there again! She is +steered mighty strangely, for she doesn’t mind the hand on the wheel; +changes about with every puff of wind. We’ll hear more of her before +this time to-morrow.” + + + + +CHAPTER VII + +CUTTING FROM “THE DAILYGRAPH,” 8 AUGUST + + +(_Pasted in Mina Murray’s Journal._) + +From a Correspondent. + +_Whitby_. + +One of the greatest and suddenest storms on record has just been +experienced here, with results both strange and unique. The weather had +been somewhat sultry, but not to any degree uncommon in the month of +August. Saturday evening was as fine as was ever known, and the great +body of holiday-makers laid out yesterday for visits to Mulgrave Woods, +Robin Hood’s Bay, Rig Mill, Runswick, Staithes, and the various trips in +the neighbourhood of Whitby. The steamers _Emma_ and _Scarborough_ made +trips up and down the coast, and there was an unusual amount of +“tripping” both to and from Whitby. The day was unusually fine till the +afternoon, when some of the gossips who frequent the East Cliff +churchyard, and from that commanding eminence watch the wide sweep of +sea visible to the north and east, called attention to a sudden show of +“mares’-tails” high in the sky to the north-west. The wind was then +blowing from the south-west in the mild degree which in barometrical +language is ranked “No. 2: light breeze.” The coastguard on duty at once +made report, and one old fisherman, who for more than half a century has +kept watch on weather signs from the East Cliff, foretold in an emphatic +manner the coming of a sudden storm. The approach of sunset was so very +beautiful, so grand in its masses of splendidly-coloured clouds, that +there was quite an assemblage on the walk along the cliff in the old +churchyard to enjoy the beauty. Before the sun dipped below the black +mass of Kettleness, standing boldly athwart the western sky, its +downward way was marked by myriad clouds of every sunset-colour--flame, +purple, pink, green, violet, and all the tints of gold; with here and +there masses not large, but of seemingly absolute blackness, in all +sorts of shapes, as well outlined as colossal silhouettes. The +experience was not lost on the painters, and doubtless some of the +sketches of the “Prelude to the Great Storm” will grace the R. A. and R. +I. walls in May next. More than one captain made up his mind then and +there that his “cobble” or his “mule,” as they term the different +classes of boats, would remain in the harbour till the storm had passed. +The wind fell away entirely during the evening, and at midnight there +was a dead calm, a sultry heat, and that prevailing intensity which, on +the approach of thunder, affects persons of a sensitive nature. There +were but few lights in sight at sea, for even the coasting steamers, +which usually “hug” the shore so closely, kept well to seaward, and but +few fishing-boats were in sight. The only sail noticeable was a foreign +schooner with all sails set, which was seemingly going westwards. The +foolhardiness or ignorance of her officers was a prolific theme for +comment whilst she remained in sight, and efforts were made to signal +her to reduce sail in face of her danger. Before the night shut down she +was seen with sails idly flapping as she gently rolled on the undulating +swell of the sea, + + “As idle as a painted ship upon a painted ocean.” + +Shortly before ten o’clock the stillness of the air grew quite +oppressive, and the silence was so marked that the bleating of a sheep +inland or the barking of a dog in the town was distinctly heard, and the +band on the pier, with its lively French air, was like a discord in the +great harmony of nature’s silence. A little after midnight came a +strange sound from over the sea, and high overhead the air began to +carry a strange, faint, hollow booming. + +Then without warning the tempest broke. With a rapidity which, at the +time, seemed incredible, and even afterwards is impossible to realize, +the whole aspect of nature at once became convulsed. The waves rose in +growing fury, each overtopping its fellow, till in a very few minutes +the lately glassy sea was like a roaring and devouring monster. +White-crested waves beat madly on the level sands and rushed up the +shelving cliffs; others broke over the piers, and with their spume swept +the lanthorns of the lighthouses which rise from the end of either pier +of Whitby Harbour. The wind roared like thunder, and blew with such +force that it was with difficulty that even strong men kept their feet, +or clung with grim clasp to the iron stanchions. It was found necessary +to clear the entire piers from the mass of onlookers, or else the +fatalities of the night would have been increased manifold. To add to +the difficulties and dangers of the time, masses of sea-fog came +drifting inland--white, wet clouds, which swept by in ghostly fashion, +so dank and damp and cold that it needed but little effort of +imagination to think that the spirits of those lost at sea were +touching their living brethren with the clammy hands of death, and many +a one shuddered as the wreaths of sea-mist swept by. At times the mist +cleared, and the sea for some distance could be seen in the glare of the +lightning, which now came thick and fast, followed by such sudden peals +of thunder that the whole sky overhead seemed trembling under the shock +of the footsteps of the storm. + +Some of the scenes thus revealed were of immeasurable grandeur and of +absorbing interest--the sea, running mountains high, threw skywards with +each wave mighty masses of white foam, which the tempest seemed to +snatch at and whirl away into space; here and there a fishing-boat, with +a rag of sail, running madly for shelter before the blast; now and again +the white wings of a storm-tossed sea-bird. On the summit of the East +Cliff the new searchlight was ready for experiment, but had not yet been +tried. The officers in charge of it got it into working order, and in +the pauses of the inrushing mist swept with it the surface of the sea. +Once or twice its service was most effective, as when a fishing-boat, +with gunwale under water, rushed into the harbour, able, by the guidance +of the sheltering light, to avoid the danger of dashing against the +piers. As each boat achieved the safety of the port there was a shout of +joy from the mass of people on shore, a shout which for a moment seemed +to cleave the gale and was then swept away in its rush. + +Before long the searchlight discovered some distance away a schooner +with all sails set, apparently the same vessel which had been noticed +earlier in the evening. The wind had by this time backed to the east, +and there was a shudder amongst the watchers on the cliff as they +realized the terrible danger in which she now was. Between her and the +port lay the great flat reef on which so many good ships have from time +to time suffered, and, with the wind blowing from its present quarter, +it would be quite impossible that she should fetch the entrance of the +harbour. It was now nearly the hour of high tide, but the waves were so +great that in their troughs the shallows of the shore were almost +visible, and the schooner, with all sails set, was rushing with such +speed that, in the words of one old salt, “she must fetch up somewhere, +if it was only in hell.” Then came another rush of sea-fog, greater than +any hitherto--a mass of dank mist, which seemed to close on all things +like a grey pall, and left available to men only the organ of hearing, +for the roar of the tempest, and the crash of the thunder, and the +booming of the mighty billows came through the damp oblivion even louder +than before. The rays of the searchlight were kept fixed on the harbour +mouth across the East Pier, where the shock was expected, and men waited +breathless. The wind suddenly shifted to the north-east, and the remnant +of the sea-fog melted in the blast; and then, _mirabile dictu_, between +the piers, leaping from wave to wave as it rushed at headlong speed, +swept the strange schooner before the blast, with all sail set, and +gained the safety of the harbour. The searchlight followed her, and a +shudder ran through all who saw her, for lashed to the helm was a +corpse, with drooping head, which swung horribly to and fro at each +motion of the ship. No other form could be seen on deck at all. A great +awe came on all as they realised that the ship, as if by a miracle, had +found the harbour, unsteered save by the hand of a dead man! However, +all took place more quickly than it takes to write these words. The +schooner paused not, but rushing across the harbour, pitched herself on +that accumulation of sand and gravel washed by many tides and many +storms into the south-east corner of the pier jutting under the East +Cliff, known locally as Tate Hill Pier. + +There was of course a considerable concussion as the vessel drove up on +the sand heap. Every spar, rope, and stay was strained, and some of the +“top-hammer” came crashing down. But, strangest of all, the very instant +the shore was touched, an immense dog sprang up on deck from below, as +if shot up by the concussion, and running forward, jumped from the bow +on the sand. Making straight for the steep cliff, where the churchyard +hangs over the laneway to the East Pier so steeply that some of the flat +tombstones--“thruff-steans” or “through-stones,” as they call them in +the Whitby vernacular--actually project over where the sustaining cliff +has fallen away, it disappeared in the darkness, which seemed +intensified just beyond the focus of the searchlight. + +It so happened that there was no one at the moment on Tate Hill Pier, as +all those whose houses are in close proximity were either in bed or were +out on the heights above. Thus the coastguard on duty on the eastern +side of the harbour, who at once ran down to the little pier, was the +first to climb on board. The men working the searchlight, after scouring +the entrance of the harbour without seeing anything, then turned the +light on the derelict and kept it there. The coastguard ran aft, and +when he came beside the wheel, bent over to examine it, and recoiled at +once as though under some sudden emotion. This seemed to pique general +curiosity, and quite a number of people began to run. It is a good way +round from the West Cliff by the Drawbridge to Tate Hill Pier, but your +correspondent is a fairly good runner, and came well ahead of the crowd. +When I arrived, however, I found already assembled on the pier a crowd, +whom the coastguard and police refused to allow to come on board. By the +courtesy of the chief boatman, I was, as your correspondent, permitted +to climb on deck, and was one of a small group who saw the dead seaman +whilst actually lashed to the wheel. + +It was no wonder that the coastguard was surprised, or even awed, for +not often can such a sight have been seen. The man was simply fastened +by his hands, tied one over the other, to a spoke of the wheel. Between +the inner hand and the wood was a crucifix, the set of beads on which it +was fastened being around both wrists and wheel, and all kept fast by +the binding cords. The poor fellow may have been seated at one time, but +the flapping and buffeting of the sails had worked through the rudder of +the wheel and dragged him to and fro, so that the cords with which he +was tied had cut the flesh to the bone. Accurate note was made of the +state of things, and a doctor--Surgeon J. M. Caffyn, of 33, East Elliot +Place--who came immediately after me, declared, after making +examination, that the man must have been dead for quite two days. In his +pocket was a bottle, carefully corked, empty save for a little roll of +paper, which proved to be the addendum to the log. The coastguard said +the man must have tied up his own hands, fastening the knots with his +teeth. The fact that a coastguard was the first on board may save some +complications, later on, in the Admiralty Court; for coastguards cannot +claim the salvage which is the right of the first civilian entering on a +derelict. Already, however, the legal tongues are wagging, and one young +law student is loudly asserting that the rights of the owner are already +completely sacrificed, his property being held in contravention of the +statutes of mortmain, since the tiller, as emblemship, if not proof, of +delegated possession, is held in a _dead hand_. It is needless to say +that the dead steersman has been reverently removed from the place where +he held his honourable watch and ward till death--a steadfastness as +noble as that of the young Casabianca--and placed in the mortuary to +await inquest. + +Already the sudden storm is passing, and its fierceness is abating; +crowds are scattering homeward, and the sky is beginning to redden over +the Yorkshire wolds. I shall send, in time for your next issue, further +details of the derelict ship which found her way so miraculously into +harbour in the storm. + +_Whitby_ + +_9 August._--The sequel to the strange arrival of the derelict in the +storm last night is almost more startling than the thing itself. It +turns out that the schooner is a Russian from Varna, and is called the +_Demeter_. She is almost entirely in ballast of silver sand, with only a +small amount of cargo--a number of great wooden boxes filled with mould. +This cargo was consigned to a Whitby solicitor, Mr. S. F. Billington, of +7, The Crescent, who this morning went aboard and formally took +possession of the goods consigned to him. The Russian consul, too, +acting for the charter-party, took formal possession of the ship, and +paid all harbour dues, etc. Nothing is talked about here to-day except +the strange coincidence; the officials of the Board of Trade have been +most exacting in seeing that every compliance has been made with +existing regulations. As the matter is to be a “nine days’ wonder,” they +are evidently determined that there shall be no cause of after +complaint. A good deal of interest was abroad concerning the dog which +landed when the ship struck, and more than a few of the members of the +S. P. C. A., which is very strong in Whitby, have tried to befriend the +animal. To the general disappointment, however, it was not to be found; +it seems to have disappeared entirely from the town. It may be that it +was frightened and made its way on to the moors, where it is still +hiding in terror. There are some who look with dread on such a +possibility, lest later on it should in itself become a danger, for it +is evidently a fierce brute. Early this morning a large dog, a half-bred +mastiff belonging to a coal merchant close to Tate Hill Pier, was found +dead in the roadway opposite to its master’s yard. It had been fighting, +and manifestly had had a savage opponent, for its throat was torn away, +and its belly was slit open as if with a savage claw. + + * * * * * + +_Later._--By the kindness of the Board of Trade inspector, I have been +permitted to look over the log-book of the _Demeter_, which was in order +up to within three days, but contained nothing of special interest +except as to facts of missing men. The greatest interest, however, is +with regard to the paper found in the bottle, which was to-day produced +at the inquest; and a more strange narrative than the two between them +unfold it has not been my lot to come across. As there is no motive for +concealment, I am permitted to use them, and accordingly send you a +rescript, simply omitting technical details of seamanship and +supercargo. It almost seems as though the captain had been seized with +some kind of mania before he had got well into blue water, and that +this had developed persistently throughout the voyage. Of course my +statement must be taken _cum grano_, since I am writing from the +dictation of a clerk of the Russian consul, who kindly translated for +me, time being short. + + LOG OF THE “DEMETER.” + + +_Varna to Whitby._ + +_Written 18 July, things so strange happening, that I shall keep +accurate note henceforth till we land._ + + * * * * * + +On 6 July we finished taking in cargo, silver sand and boxes of earth. +At noon set sail. East wind, fresh. Crew, five hands ... two mates, +cook, and myself (captain). + + * * * * * + +On 11 July at dawn entered Bosphorus. Boarded by Turkish Customs +officers. Backsheesh. All correct. Under way at 4 p. m. + + * * * * * + +On 12 July through Dardanelles. More Customs officers and flagboat of +guarding squadron. Backsheesh again. Work of officers thorough, but +quick. Want us off soon. At dark passed into Archipelago. + + * * * * * + +On 13 July passed Cape Matapan. Crew dissatisfied about something. +Seemed scared, but would not speak out. + + * * * * * + +On 14 July was somewhat anxious about crew. Men all steady fellows, who +sailed with me before. Mate could not make out what was wrong; they only +told him there was _something_, and crossed themselves. Mate lost temper +with one of them that day and struck him. Expected fierce quarrel, but +all was quiet. + + * * * * * + +On 16 July mate reported in the morning that one of crew, Petrofsky, was +missing. Could not account for it. Took larboard watch eight bells last +night; was relieved by Abramoff, but did not go to bunk. Men more +downcast than ever. All said they expected something of the kind, but +would not say more than there was _something_ aboard. Mate getting very +impatient with them; feared some trouble ahead. + + * * * * * + +On 17 July, yesterday, one of the men, Olgaren, came to my cabin, and in +an awestruck way confided to me that he thought there was a strange man +aboard the ship. He said that in his watch he had been sheltering +behind the deck-house, as there was a rain-storm, when he saw a tall, +thin man, who was not like any of the crew, come up the companion-way, +and go along the deck forward, and disappear. He followed cautiously, +but when he got to bows found no one, and the hatchways were all closed. +He was in a panic of superstitious fear, and I am afraid the panic may +spread. To allay it, I shall to-day search entire ship carefully from +stem to stern. + + * * * * * + +Later in the day I got together the whole crew, and told them, as they +evidently thought there was some one in the ship, we would search from +stem to stern. First mate angry; said it was folly, and to yield to such +foolish ideas would demoralise the men; said he would engage to keep +them out of trouble with a handspike. I let him take the helm, while the +rest began thorough search, all keeping abreast, with lanterns: we left +no corner unsearched. As there were only the big wooden boxes, there +were no odd corners where a man could hide. Men much relieved when +search over, and went back to work cheerfully. First mate scowled, but +said nothing. + + * * * * * + +_22 July_.--Rough weather last three days, and all hands busy with +sails--no time to be frightened. Men seem to have forgotten their dread. +Mate cheerful again, and all on good terms. Praised men for work in bad +weather. Passed Gibralter and out through Straits. All well. + + * * * * * + +_24 July_.--There seems some doom over this ship. Already a hand short, +and entering on the Bay of Biscay with wild weather ahead, and yet last +night another man lost--disappeared. Like the first, he came off his +watch and was not seen again. Men all in a panic of fear; sent a round +robin, asking to have double watch, as they fear to be alone. Mate +angry. Fear there will be some trouble, as either he or the men will do +some violence. + + * * * * * + +_28 July_.--Four days in hell, knocking about in a sort of maelstrom, +and the wind a tempest. No sleep for any one. Men all worn out. Hardly +know how to set a watch, since no one fit to go on. Second mate +volunteered to steer and watch, and let men snatch a few hours’ sleep. +Wind abating; seas still terrific, but feel them less, as ship is +steadier. + + * * * * * + +_29 July_.--Another tragedy. Had single watch to-night, as crew too +tired to double. When morning watch came on deck could find no one +except steersman. Raised outcry, and all came on deck. Thorough search, +but no one found. Are now without second mate, and crew in a panic. Mate +and I agreed to go armed henceforth and wait for any sign of cause. + + * * * * * + +_30 July_.--Last night. Rejoiced we are nearing England. Weather fine, +all sails set. Retired worn out; slept soundly; awaked by mate telling +me that both man of watch and steersman missing. Only self and mate and +two hands left to work ship. + + * * * * * + +_1 August_.--Two days of fog, and not a sail sighted. Had hoped when in +the English Channel to be able to signal for help or get in somewhere. +Not having power to work sails, have to run before wind. Dare not lower, +as could not raise them again. We seem to be drifting to some terrible +doom. Mate now more demoralised than either of men. His stronger nature +seems to have worked inwardly against himself. Men are beyond fear, +working stolidly and patiently, with minds made up to worst. They are +Russian, he Roumanian. + + * * * * * + +_2 August, midnight_.--Woke up from few minutes’ sleep by hearing a cry, +seemingly outside my port. Could see nothing in fog. Rushed on deck, and +ran against mate. Tells me heard cry and ran, but no sign of man on +watch. One more gone. Lord, help us! Mate says we must be past Straits +of Dover, as in a moment of fog lifting he saw North Foreland, just as +he heard the man cry out. If so we are now off in the North Sea, and +only God can guide us in the fog, which seems to move with us; and God +seems to have deserted us. + + * * * * * + +_3 August_.--At midnight I went to relieve the man at the wheel, and +when I got to it found no one there. The wind was steady, and as we ran +before it there was no yawing. I dared not leave it, so shouted for the +mate. After a few seconds he rushed up on deck in his flannels. He +looked wild-eyed and haggard, and I greatly fear his reason has given +way. He came close to me and whispered hoarsely, with his mouth to my +ear, as though fearing the very air might hear: “_It_ is here; I know +it, now. On the watch last night I saw It, like a man, tall and thin, +and ghastly pale. It was in the bows, and looking out. I crept behind +It, and gave It my knife; but the knife went through It, empty as the +air.” And as he spoke he took his knife and drove it savagely into +space. Then he went on: “But It is here, and I’ll find It. It is in the +hold, perhaps in one of those boxes. I’ll unscrew them one by one and +see. You work the helm.” And, with a warning look and his finger on his +lip, he went below. There was springing up a choppy wind, and I could +not leave the helm. I saw him come out on deck again with a tool-chest +and a lantern, and go down the forward hatchway. He is mad, stark, +raving mad, and it’s no use my trying to stop him. He can’t hurt those +big boxes: they are invoiced as “clay,” and to pull them about is as +harmless a thing as he can do. So here I stay, and mind the helm, and +write these notes. I can only trust in God and wait till the fog clears. +Then, if I can’t steer to any harbour with the wind that is, I shall cut +down sails and lie by, and signal for help.... + + * * * * * + +It is nearly all over now. Just as I was beginning to hope that the mate +would come out calmer--for I heard him knocking away at something in the +hold, and work is good for him--there came up the hatchway a sudden, +startled scream, which made my blood run cold, and up on the deck he +came as if shot from a gun--a raging madman, with his eyes rolling and +his face convulsed with fear. “Save me! save me!” he cried, and then +looked round on the blanket of fog. His horror turned to despair, and in +a steady voice he said: “You had better come too, captain, before it is +too late. _He_ is there. I know the secret now. The sea will save me +from Him, and it is all that is left!” Before I could say a word, or +move forward to seize him, he sprang on the bulwark and deliberately +threw himself into the sea. I suppose I know the secret too, now. It was +this madman who had got rid of the men one by one, and now he has +followed them himself. God help me! How am I to account for all these +horrors when I get to port? _When_ I get to port! Will that ever be? + + * * * * * + +_4 August._--Still fog, which the sunrise cannot pierce. I know there is +sunrise because I am a sailor, why else I know not. I dared not go +below, I dared not leave the helm; so here all night I stayed, and in +the dimness of the night I saw It--Him! God forgive me, but the mate was +right to jump overboard. It was better to die like a man; to die like a +sailor in blue water no man can object. But I am captain, and I must not +leave my ship. But I shall baffle this fiend or monster, for I shall tie +my hands to the wheel when my strength begins to fail, and along with +them I shall tie that which He--It!--dare not touch; and then, come good +wind or foul, I shall save my soul, and my honour as a captain. I am +growing weaker, and the night is coming on. If He can look me in the +face again, I may not have time to act.... If we are wrecked, mayhap +this bottle may be found, and those who find it may understand; if not, +... well, then all men shall know that I have been true to my trust. God +and the Blessed Virgin and the saints help a poor ignorant soul trying +to do his duty.... + + * * * * * + +Of course the verdict was an open one. There is no evidence to adduce; +and whether or not the man himself committed the murders there is now +none to say. The folk here hold almost universally that the captain is +simply a hero, and he is to be given a public funeral. Already it is +arranged that his body is to be taken with a train of boats up the Esk +for a piece and then brought back to Tate Hill Pier and up the abbey +steps; for he is to be buried in the churchyard on the cliff. The owners +of more than a hundred boats have already given in their names as +wishing to follow him to the grave. + +No trace has ever been found of the great dog; at which there is much +mourning, for, with public opinion in its present state, he would, I +believe, be adopted by the town. To-morrow will see the funeral; and so +will end this one more “mystery of the sea.” + + +_Mina Murray’s Journal._ + +_8 August._--Lucy was very restless all night, and I, too, could not +sleep. The storm was fearful, and as it boomed loudly among the +chimney-pots, it made me shudder. When a sharp puff came it seemed to be +like a distant gun. Strangely enough, Lucy did not wake; but she got up +twice and dressed herself. Fortunately, each time I awoke in time and +managed to undress her without waking her, and got her back to bed. It +is a very strange thing, this sleep-walking, for as soon as her will is +thwarted in any physical way, her intention, if there be any, +disappears, and she yields herself almost exactly to the routine of her +life. + +Early in the morning we both got up and went down to the harbour to see +if anything had happened in the night. There were very few people about, +and though the sun was bright, and the air clear and fresh, the big, +grim-looking waves, that seemed dark themselves because the foam that +topped them was like snow, forced themselves in through the narrow mouth +of the harbour--like a bullying man going through a crowd. Somehow I +felt glad that Jonathan was not on the sea last night, but on land. But, +oh, is he on land or sea? Where is he, and how? I am getting fearfully +anxious about him. If I only knew what to do, and could do anything! + + * * * * * + +_10 August._--The funeral of the poor sea-captain to-day was most +touching. Every boat in the harbour seemed to be there, and the coffin +was carried by captains all the way from Tate Hill Pier up to the +churchyard. Lucy came with me, and we went early to our old seat, whilst +the cortège of boats went up the river to the Viaduct and came down +again. We had a lovely view, and saw the procession nearly all the way. +The poor fellow was laid to rest quite near our seat so that we stood on +it when the time came and saw everything. Poor Lucy seemed much upset. +She was restless and uneasy all the time, and I cannot but think that +her dreaming at night is telling on her. She is quite odd in one thing: +she will not admit to me that there is any cause for restlessness; or if +there be, she does not understand it herself. There is an additional +cause in that poor old Mr. Swales was found dead this morning on our +seat, his neck being broken. He had evidently, as the doctor said, +fallen back in the seat in some sort of fright, for there was a look of +fear and horror on his face that the men said made them shudder. Poor +dear old man! Perhaps he had seen Death with his dying eyes! Lucy is so +sweet and sensitive that she feels influences more acutely than other +people do. Just now she was quite upset by a little thing which I did +not much heed, though I am myself very fond of animals. One of the men +who came up here often to look for the boats was followed by his dog. +The dog is always with him. They are both quiet persons, and I never saw +the man angry, nor heard the dog bark. During the service the dog would +not come to its master, who was on the seat with us, but kept a few +yards off, barking and howling. Its master spoke to it gently, and then +harshly, and then angrily; but it would neither come nor cease to make a +noise. It was in a sort of fury, with its eyes savage, and all its hairs +bristling out like a cat’s tail when puss is on the war-path. Finally +the man, too, got angry, and jumped down and kicked the dog, and then +took it by the scruff of the neck and half dragged and half threw it on +the tombstone on which the seat is fixed. The moment it touched the +stone the poor thing became quiet and fell all into a tremble. It did +not try to get away, but crouched down, quivering and cowering, and was +in such a pitiable state of terror that I tried, though without effect, +to comfort it. Lucy was full of pity, too, but she did not attempt to +touch the dog, but looked at it in an agonised sort of way. I greatly +fear that she is of too super-sensitive a nature to go through the world +without trouble. She will be dreaming of this to-night, I am sure. The +whole agglomeration of things--the ship steered into port by a dead +man; his attitude, tied to the wheel with a crucifix and beads; the +touching funeral; the dog, now furious and now in terror--will all +afford material for her dreams. + +I think it will be best for her to go to bed tired out physically, so I +shall take her for a long walk by the cliffs to Robin Hood’s Bay and +back. She ought not to have much inclination for sleep-walking then. + + + + +CHAPTER VIII + +MINA MURRAY’S JOURNAL + + +_Same day, 11 o’clock p. m._--Oh, but I am tired! If it were not that I +had made my diary a duty I should not open it to-night. We had a lovely +walk. Lucy, after a while, was in gay spirits, owing, I think, to some +dear cows who came nosing towards us in a field close to the lighthouse, +and frightened the wits out of us. I believe we forgot everything +except, of course, personal fear, and it seemed to wipe the slate clean +and give us a fresh start. We had a capital “severe tea” at Robin Hood’s +Bay in a sweet little old-fashioned inn, with a bow-window right over +the seaweed-covered rocks of the strand. I believe we should have +shocked the “New Woman” with our appetites. Men are more tolerant, bless +them! Then we walked home with some, or rather many, stoppages to rest, +and with our hearts full of a constant dread of wild bulls. Lucy was +really tired, and we intended to creep off to bed as soon as we could. +The young curate came in, however, and Mrs. Westenra asked him to stay +for supper. Lucy and I had both a fight for it with the dusty miller; I +know it was a hard fight on my part, and I am quite heroic. I think that +some day the bishops must get together and see about breeding up a new +class of curates, who don’t take supper, no matter how they may be +pressed to, and who will know when girls are tired. Lucy is asleep and +breathing softly. She has more colour in her cheeks than usual, and +looks, oh, so sweet. If Mr. Holmwood fell in love with her seeing her +only in the drawing-room, I wonder what he would say if he saw her now. +Some of the “New Women” writers will some day start an idea that men and +women should be allowed to see each other asleep before proposing or +accepting. But I suppose the New Woman won’t condescend in future to +accept; she will do the proposing herself. And a nice job she will make +of it, too! There’s some consolation in that. I am so happy to-night, +because dear Lucy seems better. I really believe she has turned the +corner, and that we are over her troubles with dreaming. I should be +quite happy if I only knew if Jonathan.... God bless and keep him. + + * * * * * + +_11 August, 3 a. m._--Diary again. No sleep now, so I may as well write. +I am too agitated to sleep. We have had such an adventure, such an +agonising experience. I fell asleep as soon as I had closed my diary.... +Suddenly I became broad awake, and sat up, with a horrible sense of fear +upon me, and of some feeling of emptiness around me. The room was dark, +so I could not see Lucy’s bed; I stole across and felt for her. The bed +was empty. I lit a match and found that she was not in the room. The +door was shut, but not locked, as I had left it. I feared to wake her +mother, who has been more than usually ill lately, so threw on some +clothes and got ready to look for her. As I was leaving the room it +struck me that the clothes she wore might give me some clue to her +dreaming intention. Dressing-gown would mean house; dress, outside. +Dressing-gown and dress were both in their places. “Thank God,” I said +to myself, “she cannot be far, as she is only in her nightdress.” I ran +downstairs and looked in the sitting-room. Not there! Then I looked in +all the other open rooms of the house, with an ever-growing fear +chilling my heart. Finally I came to the hall door and found it open. It +was not wide open, but the catch of the lock had not caught. The people +of the house are careful to lock the door every night, so I feared that +Lucy must have gone out as she was. There was no time to think of what +might happen; a vague, overmastering fear obscured all details. I took a +big, heavy shawl and ran out. The clock was striking one as I was in the +Crescent, and there was not a soul in sight. I ran along the North +Terrace, but could see no sign of the white figure which I expected. At +the edge of the West Cliff above the pier I looked across the harbour to +the East Cliff, in the hope or fear--I don’t know which--of seeing Lucy +in our favourite seat. There was a bright full moon, with heavy black, +driving clouds, which threw the whole scene into a fleeting diorama of +light and shade as they sailed across. For a moment or two I could see +nothing, as the shadow of a cloud obscured St. Mary’s Church and all +around it. Then as the cloud passed I could see the ruins of the abbey +coming into view; and as the edge of a narrow band of light as sharp as +a sword-cut moved along, the church and the churchyard became gradually +visible. Whatever my expectation was, it was not disappointed, for +there, on our favourite seat, the silver light of the moon struck a +half-reclining figure, snowy white. The coming of the cloud was too +quick for me to see much, for shadow shut down on light almost +immediately; but it seemed to me as though something dark stood behind +the seat where the white figure shone, and bent over it. What it was, +whether man or beast, I could not tell; I did not wait to catch another +glance, but flew down the steep steps to the pier and along by the +fish-market to the bridge, which was the only way to reach the East +Cliff. The town seemed as dead, for not a soul did I see; I rejoiced +that it was so, for I wanted no witness of poor Lucy’s condition. The +time and distance seemed endless, and my knees trembled and my breath +came laboured as I toiled up the endless steps to the abbey. I must have +gone fast, and yet it seemed to me as if my feet were weighted with +lead, and as though every joint in my body were rusty. When I got almost +to the top I could see the seat and the white figure, for I was now +close enough to distinguish it even through the spells of shadow. There +was undoubtedly something, long and black, bending over the +half-reclining white figure. I called in fright, “Lucy! Lucy!” and +something raised a head, and from where I was I could see a white face +and red, gleaming eyes. Lucy did not answer, and I ran on to the +entrance of the churchyard. As I entered, the church was between me and +the seat, and for a minute or so I lost sight of her. When I came in +view again the cloud had passed, and the moonlight struck so brilliantly +that I could see Lucy half reclining with her head lying over the back +of the seat. She was quite alone, and there was not a sign of any living +thing about. + +When I bent over her I could see that she was still asleep. Her lips +were parted, and she was breathing--not softly as usual with her, but in +long, heavy gasps, as though striving to get her lungs full at every +breath. As I came close, she put up her hand in her sleep and pulled the +collar of her nightdress close around her throat. Whilst she did so +there came a little shudder through her, as though she felt the cold. I +flung the warm shawl over her, and drew the edges tight round her neck, +for I dreaded lest she should get some deadly chill from the night air, +unclad as she was. I feared to wake her all at once, so, in order to +have my hands free that I might help her, I fastened the shawl at her +throat with a big safety-pin; but I must have been clumsy in my anxiety +and pinched or pricked her with it, for by-and-by, when her breathing +became quieter, she put her hand to her throat again and moaned. When I +had her carefully wrapped up I put my shoes on her feet and then began +very gently to wake her. At first she did not respond; but gradually she +became more and more uneasy in her sleep, moaning and sighing +occasionally. At last, as time was passing fast, and, for many other +reasons, I wished to get her home at once, I shook her more forcibly, +till finally she opened her eyes and awoke. She did not seem surprised +to see me, as, of course, she did not realise all at once where she was. +Lucy always wakes prettily, and even at such a time, when her body must +have been chilled with cold, and her mind somewhat appalled at waking +unclad in a churchyard at night, she did not lose her grace. She +trembled a little, and clung to me; when I told her to come at once with +me home she rose without a word, with the obedience of a child. As we +passed along, the gravel hurt my feet, and Lucy noticed me wince. She +stopped and wanted to insist upon my taking my shoes; but I would not. +However, when we got to the pathway outside the churchyard, where there +was a puddle of water, remaining from the storm, I daubed my feet with +mud, using each foot in turn on the other, so that as we went home, no +one, in case we should meet any one, should notice my bare feet. + +Fortune favoured us, and we got home without meeting a soul. Once we saw +a man, who seemed not quite sober, passing along a street in front of +us; but we hid in a door till he had disappeared up an opening such as +there are here, steep little closes, or “wynds,” as they call them in +Scotland. My heart beat so loud all the time that sometimes I thought I +should faint. I was filled with anxiety about Lucy, not only for her +health, lest she should suffer from the exposure, but for her reputation +in case the story should get wind. When we got in, and had washed our +feet, and had said a prayer of thankfulness together, I tucked her into +bed. Before falling asleep she asked--even implored--me not to say a +word to any one, even her mother, about her sleep-walking adventure. I +hesitated at first to promise; but on thinking of the state of her +mother’s health, and how the knowledge of such a thing would fret her, +and thinking, too, of how such a story might become distorted--nay, +infallibly would--in case it should leak out, I thought it wiser to do +so. I hope I did right. I have locked the door, and the key is tied to +my wrist, so perhaps I shall not be again disturbed. Lucy is sleeping +soundly; the reflex of the dawn is high and far over the sea.... + + * * * * * + +_Same day, noon._--All goes well. Lucy slept till I woke her and seemed +not to have even changed her side. The adventure of the night does not +seem to have harmed her; on the contrary, it has benefited her, for she +looks better this morning than she has done for weeks. I was sorry to +notice that my clumsiness with the safety-pin hurt her. Indeed, it might +have been serious, for the skin of her throat was pierced. I must have +pinched up a piece of loose skin and have transfixed it, for there are +two little red points like pin-pricks, and on the band of her nightdress +was a drop of blood. When I apologised and was concerned about it, she +laughed and petted me, and said she did not even feel it. Fortunately it +cannot leave a scar, as it is so tiny. + + * * * * * + +_Same day, night._--We passed a happy day. The air was clear, and the +sun bright, and there was a cool breeze. We took our lunch to Mulgrave +Woods, Mrs. Westenra driving by the road and Lucy and I walking by the +cliff-path and joining her at the gate. I felt a little sad myself, for +I could not but feel how _absolutely_ happy it would have been had +Jonathan been with me. But there! I must only be patient. In the evening +we strolled in the Casino Terrace, and heard some good music by Spohr +and Mackenzie, and went to bed early. Lucy seems more restful than she +has been for some time, and fell asleep at once. I shall lock the door +and secure the key the same as before, though I do not expect any +trouble to-night. + + * * * * * + +_12 August._--My expectations were wrong, for twice during the night I +was wakened by Lucy trying to get out. She seemed, even in her sleep, to +be a little impatient at finding the door shut, and went back to bed +under a sort of protest. I woke with the dawn, and heard the birds +chirping outside of the window. Lucy woke, too, and, I was glad to see, +was even better than on the previous morning. All her old gaiety of +manner seemed to have come back, and she came and snuggled in beside me +and told me all about Arthur. I told her how anxious I was about +Jonathan, and then she tried to comfort me. Well, she succeeded +somewhat, for, though sympathy can’t alter facts, it can help to make +them more bearable. + + * * * * * + +_13 August._--Another quiet day, and to bed with the key on my wrist as +before. Again I awoke in the night, and found Lucy sitting up in bed, +still asleep, pointing to the window. I got up quietly, and pulling +aside the blind, looked out. It was brilliant moonlight, and the soft +effect of the light over the sea and sky--merged together in one great, +silent mystery--was beautiful beyond words. Between me and the moonlight +flitted a great bat, coming and going in great whirling circles. Once or +twice it came quite close, but was, I suppose, frightened at seeing me, +and flitted away across the harbour towards the abbey. When I came back +from the window Lucy had lain down again, and was sleeping peacefully. +She did not stir again all night. + + * * * * * + +_14 August._--On the East Cliff, reading and writing all day. Lucy seems +to have become as much in love with the spot as I am, and it is hard to +get her away from it when it is time to come home for lunch or tea or +dinner. This afternoon she made a funny remark. We were coming home for +dinner, and had come to the top of the steps up from the West Pier and +stopped to look at the view, as we generally do. The setting sun, low +down in the sky, was just dropping behind Kettleness; the red light was +thrown over on the East Cliff and the old abbey, and seemed to bathe +everything in a beautiful rosy glow. We were silent for a while, and +suddenly Lucy murmured as if to herself:-- + +“His red eyes again! They are just the same.” It was such an odd +expression, coming _apropos_ of nothing, that it quite startled me. I +slewed round a little, so as to see Lucy well without seeming to stare +at her, and saw that she was in a half-dreamy state, with an odd look on +her face that I could not quite make out; so I said nothing, but +followed her eyes. She appeared to be looking over at our own seat, +whereon was a dark figure seated alone. I was a little startled myself, +for it seemed for an instant as if the stranger had great eyes like +burning flames; but a second look dispelled the illusion. The red +sunlight was shining on the windows of St. Mary’s Church behind our +seat, and as the sun dipped there was just sufficient change in the +refraction and reflection to make it appear as if the light moved. I +called Lucy’s attention to the peculiar effect, and she became herself +with a start, but she looked sad all the same; it may have been that she +was thinking of that terrible night up there. We never refer to it; so I +said nothing, and we went home to dinner. Lucy had a headache and went +early to bed. I saw her asleep, and went out for a little stroll myself; +I walked along the cliffs to the westward, and was full of sweet +sadness, for I was thinking of Jonathan. When coming home--it was then +bright moonlight, so bright that, though the front of our part of the +Crescent was in shadow, everything could be well seen--I threw a glance +up at our window, and saw Lucy’s head leaning out. I thought that +perhaps she was looking out for me, so I opened my handkerchief and +waved it. She did not notice or make any movement whatever. Just then, +the moonlight crept round an angle of the building, and the light fell +on the window. There distinctly was Lucy with her head lying up against +the side of the window-sill and her eyes shut. She was fast asleep, and +by her, seated on the window-sill, was something that looked like a +good-sized bird. I was afraid she might get a chill, so I ran upstairs, +but as I came into the room she was moving back to her bed, fast +asleep, and breathing heavily; she was holding her hand to her throat, +as though to protect it from cold. + +I did not wake her, but tucked her up warmly; I have taken care that the +door is locked and the window securely fastened. + +She looks so sweet as she sleeps; but she is paler than is her wont, and +there is a drawn, haggard look under her eyes which I do not like. I +fear she is fretting about something. I wish I could find out what it +is. + + * * * * * + +_15 August._--Rose later than usual. Lucy was languid and tired, and +slept on after we had been called. We had a happy surprise at breakfast. +Arthur’s father is better, and wants the marriage to come off soon. Lucy +is full of quiet joy, and her mother is glad and sorry at once. Later on +in the day she told me the cause. She is grieved to lose Lucy as her +very own, but she is rejoiced that she is soon to have some one to +protect her. Poor dear, sweet lady! She confided to me that she has got +her death-warrant. She has not told Lucy, and made me promise secrecy; +her doctor told her that within a few months, at most, she must die, for +her heart is weakening. At any time, even now, a sudden shock would be +almost sure to kill her. Ah, we were wise to keep from her the affair of +the dreadful night of Lucy’s sleep-walking. + + * * * * * + +_17 August._--No diary for two whole days. I have not had the heart to +write. Some sort of shadowy pall seems to be coming over our happiness. +No news from Jonathan, and Lucy seems to be growing weaker, whilst her +mother’s hours are numbering to a close. I do not understand Lucy’s +fading away as she is doing. She eats well and sleeps well, and enjoys +the fresh air; but all the time the roses in her cheeks are fading, and +she gets weaker and more languid day by day; at night I hear her gasping +as if for air. I keep the key of our door always fastened to my wrist at +night, but she gets up and walks about the room, and sits at the open +window. Last night I found her leaning out when I woke up, and when I +tried to wake her I could not; she was in a faint. When I managed to +restore her she was as weak as water, and cried silently between long, +painful struggles for breath. When I asked her how she came to be at the +window she shook her head and turned away. I trust her feeling ill may +not be from that unlucky prick of the safety-pin. I looked at her throat +just now as she lay asleep, and the tiny wounds seem not to have healed. +They are still open, and, if anything, larger than before, and the +edges of them are faintly white. They are like little white dots with +red centres. Unless they heal within a day or two, I shall insist on the +doctor seeing about them. + + +_Letter, Samuel F. Billington & Son, Solicitors, Whitby, to Messrs. +Carter, Paterson & Co., London._ + +“_17 August._ + +“Dear Sirs,-- + +“Herewith please receive invoice of goods sent by Great Northern +Railway. Same are to be delivered at Carfax, near Purfleet, immediately +on receipt at goods station King’s Cross. The house is at present empty, +but enclosed please find keys, all of which are labelled. + +“You will please deposit the boxes, fifty in number, which form the +consignment, in the partially ruined building forming part of the house +and marked ‘A’ on rough diagram enclosed. Your agent will easily +recognise the locality, as it is the ancient chapel of the mansion. The +goods leave by the train at 9:30 to-night, and will be due at King’s +Cross at 4:30 to-morrow afternoon. As our client wishes the delivery +made as soon as possible, we shall be obliged by your having teams ready +at King’s Cross at the time named and forthwith conveying the goods to +destination. In order to obviate any delays possible through any routine +requirements as to payment in your departments, we enclose cheque +herewith for ten pounds (£10), receipt of which please acknowledge. +Should the charge be less than this amount, you can return balance; if +greater, we shall at once send cheque for difference on hearing from +you. You are to leave the keys on coming away in the main hall of the +house, where the proprietor may get them on his entering the house by +means of his duplicate key. + +“Pray do not take us as exceeding the bounds of business courtesy in +pressing you in all ways to use the utmost expedition. + +_“We are, dear Sirs, + +“Faithfully yours, + +“SAMUEL F. BILLINGTON & SON.”_ + + +_Letter, Messrs. Carter, Paterson & Co., London, to Messrs. Billington & +Son, Whitby._ + +“_21 August._ + +“Dear Sirs,-- + +“We beg to acknowledge £10 received and to return cheque £1 17s. 9d, +amount of overplus, as shown in receipted account herewith. Goods are +delivered in exact accordance with instructions, and keys left in parcel +in main hall, as directed. + +“We are, dear Sirs, + +“Yours respectfully. + +“_Pro_ CARTER, PATERSON & CO.” + + +_Mina Murray’s Journal._ + +_18 August._--I am happy to-day, and write sitting on the seat in the +churchyard. Lucy is ever so much better. Last night she slept well all +night, and did not disturb me once. The roses seem coming back already +to her cheeks, though she is still sadly pale and wan-looking. If she +were in any way anæmic I could understand it, but she is not. She is in +gay spirits and full of life and cheerfulness. All the morbid reticence +seems to have passed from her, and she has just reminded me, as if I +needed any reminding, of _that_ night, and that it was here, on this +very seat, I found her asleep. As she told me she tapped playfully with +the heel of her boot on the stone slab and said:-- + +“My poor little feet didn’t make much noise then! I daresay poor old Mr. +Swales would have told me that it was because I didn’t want to wake up +Geordie.” As she was in such a communicative humour, I asked her if she +had dreamed at all that night. Before she answered, that sweet, puckered +look came into her forehead, which Arthur--I call him Arthur from her +habit--says he loves; and, indeed, I don’t wonder that he does. Then she +went on in a half-dreaming kind of way, as if trying to recall it to +herself:-- + +“I didn’t quite dream; but it all seemed to be real. I only wanted to be +here in this spot--I don’t know why, for I was afraid of something--I +don’t know what. I remember, though I suppose I was asleep, passing +through the streets and over the bridge. A fish leaped as I went by, and +I leaned over to look at it, and I heard a lot of dogs howling--the +whole town seemed as if it must be full of dogs all howling at once--as +I went up the steps. Then I had a vague memory of something long and +dark with red eyes, just as we saw in the sunset, and something very +sweet and very bitter all around me at once; and then I seemed sinking +into deep green water, and there was a singing in my ears, as I have +heard there is to drowning men; and then everything seemed passing away +from me; my soul seemed to go out from my body and float about the air. +I seem to remember that once the West Lighthouse was right under me, +and then there was a sort of agonising feeling, as if I were in an +earthquake, and I came back and found you shaking my body. I saw you do +it before I felt you.” + +Then she began to laugh. It seemed a little uncanny to me, and I +listened to her breathlessly. I did not quite like it, and thought it +better not to keep her mind on the subject, so we drifted on to other +subjects, and Lucy was like her old self again. When we got home the +fresh breeze had braced her up, and her pale cheeks were really more +rosy. Her mother rejoiced when she saw her, and we all spent a very +happy evening together. + + * * * * * + +_19 August._--Joy, joy, joy! although not all joy. At last, news of +Jonathan. The dear fellow has been ill; that is why he did not write. I +am not afraid to think it or say it, now that I know. Mr. Hawkins sent +me on the letter, and wrote himself, oh, so kindly. I am to leave in the +morning and go over to Jonathan, and to help to nurse him if necessary, +and to bring him home. Mr. Hawkins says it would not be a bad thing if +we were to be married out there. I have cried over the good Sister’s +letter till I can feel it wet against my bosom, where it lies. It is of +Jonathan, and must be next my heart, for he is _in_ my heart. My journey +is all mapped out, and my luggage ready. I am only taking one change of +dress; Lucy will bring my trunk to London and keep it till I send for +it, for it may be that ... I must write no more; I must keep it to say +to Jonathan, my husband. The letter that he has seen and touched must +comfort me till we meet. + + +_Letter, Sister Agatha, Hospital of St. Joseph and Ste. Mary, +Buda-Pesth, to Miss Wilhelmina Murray._ + +“_12 August._ + +“Dear Madam,-- + +“I write by desire of Mr. Jonathan Harker, who is himself not strong +enough to write, though progressing well, thanks to God and St. Joseph +and Ste. Mary. He has been under our care for nearly six weeks, +suffering from a violent brain fever. He wishes me to convey his love, +and to say that by this post I write for him to Mr. Peter Hawkins, +Exeter, to say, with his dutiful respects, that he is sorry for his +delay, and that all of his work is completed. He will require some few +weeks’ rest in our sanatorium in the hills, but will then return. He +wishes me to say that he has not sufficient money with him, and that he +would like to pay for his staying here, so that others who need shall +not be wanting for help. + +“Believe me, + +“Yours, with sympathy and all blessings, + +“SISTER AGATHA. + +“P. S.--My patient being asleep, I open this to let you know something +more. He has told me all about you, and that you are shortly to be his +wife. All blessings to you both! He has had some fearful shock--so says +our doctor--and in his delirium his ravings have been dreadful; of +wolves and poison and blood; of ghosts and demons; and I fear to say of +what. Be careful with him always that there may be nothing to excite him +of this kind for a long time to come; the traces of such an illness as +his do not lightly die away. We should have written long ago, but we +knew nothing of his friends, and there was on him nothing that any one +could understand. He came in the train from Klausenburg, and the guard +was told by the station-master there that he rushed into the station +shouting for a ticket for home. Seeing from his violent demeanour that +he was English, they gave him a ticket for the furthest station on the +way thither that the train reached. + +“Be assured that he is well cared for. He has won all hearts by his +sweetness and gentleness. He is truly getting on well, and I have no +doubt will in a few weeks be all himself. But be careful of him for +safety’s sake. There are, I pray God and St. Joseph and Ste. Mary, many, +many, happy years for you both.” + + +_Dr. Seward’s Diary._ + +_19 August._--Strange and sudden change in Renfield last night. About +eight o’clock he began to get excited and sniff about as a dog does when +setting. The attendant was struck by his manner, and knowing my interest +in him, encouraged him to talk. He is usually respectful to the +attendant and at times servile; but to-night, the man tells me, he was +quite haughty. Would not condescend to talk with him at all. All he +would say was:-- + + “I don’t want to talk to you: you don’t count now; the Master is at + hand.” + +The attendant thinks it is some sudden form of religious mania which has +seized him. If so, we must look out for squalls, for a strong man with +homicidal and religious mania at once might be dangerous. The +combination is a dreadful one. At nine o’clock I visited him myself. His +attitude to me was the same as that to the attendant; in his sublime +self-feeling the difference between myself and attendant seemed to him +as nothing. It looks like religious mania, and he will soon think that +he himself is God. These infinitesimal distinctions between man and man +are too paltry for an Omnipotent Being. How these madmen give themselves +away! The real God taketh heed lest a sparrow fall; but the God created +from human vanity sees no difference between an eagle and a sparrow. Oh, +if men only knew! + +For half an hour or more Renfield kept getting excited in greater and +greater degree. I did not pretend to be watching him, but I kept strict +observation all the same. All at once that shifty look came into his +eyes which we always see when a madman has seized an idea, and with it +the shifty movement of the head and back which asylum attendants come to +know so well. He became quite quiet, and went and sat on the edge of his +bed resignedly, and looked into space with lack-lustre eyes. I thought I +would find out if his apathy were real or only assumed, and tried to +lead him to talk of his pets, a theme which had never failed to excite +his attention. At first he made no reply, but at length said testily:-- + +“Bother them all! I don’t care a pin about them.” + +“What?” I said. “You don’t mean to tell me you don’t care about +spiders?” (Spiders at present are his hobby and the note-book is filling +up with columns of small figures.) To this he answered enigmatically:-- + +“The bride-maidens rejoice the eyes that wait the coming of the bride; +but when the bride draweth nigh, then the maidens shine not to the eyes +that are filled.” + +He would not explain himself, but remained obstinately seated on his bed +all the time I remained with him. + +I am weary to-night and low in spirits. I cannot but think of Lucy, and +how different things might have been. If I don’t sleep at once, chloral, +the modern Morpheus--C_{2}HCl_{3}O. H_{2}O! I must be careful not to let +it grow into a habit. No, I shall take none to-night! I have thought of +Lucy, and I shall not dishonour her by mixing the two. If need be, +to-night shall be sleepless.... + + * * * * * + +_Later._--Glad I made the resolution; gladder that I kept to it. I had +lain tossing about, and had heard the clock strike only twice, when the +night-watchman came to me, sent up from the ward, to say that Renfield +had escaped. I threw on my clothes and ran down at once; my patient is +too dangerous a person to be roaming about. Those ideas of his might +work out dangerously with strangers. The attendant was waiting for me. +He said he had seen him not ten minutes before, seemingly asleep in his +bed, when he had looked through the observation-trap in the door. His +attention was called by the sound of the window being wrenched out. He +ran back and saw his feet disappear through the window, and had at once +sent up for me. He was only in his night-gear, and cannot be far off. +The attendant thought it would be more useful to watch where he should +go than to follow him, as he might lose sight of him whilst getting out +of the building by the door. He is a bulky man, and couldn’t get through +the window. I am thin, so, with his aid, I got out, but feet foremost, +and, as we were only a few feet above ground, landed unhurt. The +attendant told me the patient had gone to the left, and had taken a +straight line, so I ran as quickly as I could. As I got through the belt +of trees I saw a white figure scale the high wall which separates our +grounds from those of the deserted house. + +I ran back at once, told the watchman to get three or four men +immediately and follow me into the grounds of Carfax, in case our friend +might be dangerous. I got a ladder myself, and crossing the wall, +dropped down on the other side. I could see Renfield’s figure just +disappearing behind the angle of the house, so I ran after him. On the +far side of the house I found him pressed close against the old +ironbound oak door of the chapel. He was talking, apparently to some +one, but I was afraid to go near enough to hear what he was saying, lest +I might frighten him, and he should run off. Chasing an errant swarm of +bees is nothing to following a naked lunatic, when the fit of escaping +is upon him! After a few minutes, however, I could see that he did not +take note of anything around him, and so ventured to draw nearer to +him--the more so as my men had now crossed the wall and were closing him +in. I heard him say:-- + +“I am here to do Your bidding, Master. I am Your slave, and You will +reward me, for I shall be faithful. I have worshipped You long and afar +off. Now that You are near, I await Your commands, and You will not pass +me by, will You, dear Master, in Your distribution of good things?” + +He _is_ a selfish old beggar anyhow. He thinks of the loaves and fishes +even when he believes he is in a Real Presence. His manias make a +startling combination. When we closed in on him he fought like a tiger. +He is immensely strong, for he was more like a wild beast than a man. I +never saw a lunatic in such a paroxysm of rage before; and I hope I +shall not again. It is a mercy that we have found out his strength and +his danger in good time. With strength and determination like his, he +might have done wild work before he was caged. He is safe now at any +rate. Jack Sheppard himself couldn’t get free from the strait-waistcoat +that keeps him restrained, and he’s chained to the wall in the padded +room. His cries are at times awful, but the silences that follow are +more deadly still, for he means murder in every turn and movement. + +Just now he spoke coherent words for the first time:-- + +“I shall be patient, Master. It is coming--coming--coming!” + +So I took the hint, and came too. I was too excited to sleep, but this +diary has quieted me, and I feel I shall get some sleep to-night. + + + + +CHAPTER IX + + +_Letter, Mina Harker to Lucy Westenra._ + +“_Buda-Pesth, 24 August._ + +“My dearest Lucy,-- + +“I know you will be anxious to hear all that has happened since we +parted at the railway station at Whitby. Well, my dear, I got to Hull +all right, and caught the boat to Hamburg, and then the train on here. I +feel that I can hardly recall anything of the journey, except that I +knew I was coming to Jonathan, and, that as I should have to do some +nursing, I had better get all the sleep I could.... I found my dear one, +oh, so thin and pale and weak-looking. All the resolution has gone out +of his dear eyes, and that quiet dignity which I told you was in his +face has vanished. He is only a wreck of himself, and he does not +remember anything that has happened to him for a long time past. At +least, he wants me to believe so, and I shall never ask. He has had some +terrible shock, and I fear it might tax his poor brain if he were to try +to recall it. Sister Agatha, who is a good creature and a born nurse, +tells me that he raved of dreadful things whilst he was off his head. I +wanted her to tell me what they were; but she would only cross herself, +and say she would never tell; that the ravings of the sick were the +secrets of God, and that if a nurse through her vocation should hear +them, she should respect her trust. She is a sweet, good soul, and the +next day, when she saw I was troubled, she opened up the subject again, +and after saying that she could never mention what my poor dear raved +about, added: ‘I can tell you this much, my dear: that it was not about +anything which he has done wrong himself; and you, as his wife to be, +have no cause to be concerned. He has not forgotten you or what he owes +to you. His fear was of great and terrible things, which no mortal can +treat of.’ I do believe the dear soul thought I might be jealous lest my +poor dear should have fallen in love with any other girl. The idea of +_my_ being jealous about Jonathan! And yet, my dear, let me whisper, I +felt a thrill of joy through me when I _knew_ that no other woman was a +cause of trouble. I am now sitting by his bedside, where I can see his +face while he sleeps. He is waking!... + +“When he woke he asked me for his coat, as he wanted to get something +from the pocket; I asked Sister Agatha, and she brought all his things. +I saw that amongst them was his note-book, and was going to ask him to +let me look at it--for I knew then that I might find some clue to his +trouble--but I suppose he must have seen my wish in my eyes, for he sent +me over to the window, saying he wanted to be quite alone for a moment. +Then he called me back, and when I came he had his hand over the +note-book, and he said to me very solemnly:-- + +“‘Wilhelmina’--I knew then that he was in deadly earnest, for he has +never called me by that name since he asked me to marry him--‘you know, +dear, my ideas of the trust between husband and wife: there should be no +secret, no concealment. I have had a great shock, and when I try to +think of what it is I feel my head spin round, and I do not know if it +was all real or the dreaming of a madman. You know I have had brain +fever, and that is to be mad. The secret is here, and I do not want to +know it. I want to take up my life here, with our marriage.’ For, my +dear, we had decided to be married as soon as the formalities are +complete. ‘Are you willing, Wilhelmina, to share my ignorance? Here is +the book. Take it and keep it, read it if you will, but never let me +know; unless, indeed, some solemn duty should come upon me to go back to +the bitter hours, asleep or awake, sane or mad, recorded here.’ He fell +back exhausted, and I put the book under his pillow, and kissed him. I +have asked Sister Agatha to beg the Superior to let our wedding be this +afternoon, and am waiting her reply.... + + * * * * * + +“She has come and told me that the chaplain of the English mission +church has been sent for. We are to be married in an hour, or as soon +after as Jonathan awakes.... + + * * * * * + +“Lucy, the time has come and gone. I feel very solemn, but very, very +happy. Jonathan woke a little after the hour, and all was ready, and he +sat up in bed, propped up with pillows. He answered his ‘I will’ firmly +and strongly. I could hardly speak; my heart was so full that even those +words seemed to choke me. The dear sisters were so kind. Please God, I +shall never, never forget them, nor the grave and sweet responsibilities +I have taken upon me. I must tell you of my wedding present. When the +chaplain and the sisters had left me alone with my husband--oh, Lucy, it +is the first time I have written the words ‘my husband’--left me alone +with my husband, I took the book from under his pillow, and wrapped it +up in white paper, and tied it with a little bit of pale blue ribbon +which was round my neck, and sealed it over the knot with sealing-wax, +and for my seal I used my wedding ring. Then I kissed it and showed it +to my husband, and told him that I would keep it so, and then it would +be an outward and visible sign for us all our lives that we trusted each +other; that I would never open it unless it were for his own dear sake +or for the sake of some stern duty. Then he took my hand in his, and oh, +Lucy, it was the first time he took _his wife’s_ hand, and said that it +was the dearest thing in all the wide world, and that he would go +through all the past again to win it, if need be. The poor dear meant to +have said a part of the past, but he cannot think of time yet, and I +shall not wonder if at first he mixes up not only the month, but the +year. + +“Well, my dear, what could I say? I could only tell him that I was the +happiest woman in all the wide world, and that I had nothing to give him +except myself, my life, and my trust, and that with these went my love +and duty for all the days of my life. And, my dear, when he kissed me, +and drew me to him with his poor weak hands, it was like a very solemn +pledge between us.... + +“Lucy dear, do you know why I tell you all this? It is not only because +it is all sweet to me, but because you have been, and are, very dear to +me. It was my privilege to be your friend and guide when you came from +the schoolroom to prepare for the world of life. I want you to see now, +and with the eyes of a very happy wife, whither duty has led me; so that +in your own married life you too may be all happy as I am. My dear, +please Almighty God, your life may be all it promises: a long day of +sunshine, with no harsh wind, no forgetting duty, no distrust. I must +not wish you no pain, for that can never be; but I do hope you will be +_always_ as happy as I am _now_. Good-bye, my dear. I shall post this at +once, and, perhaps, write you very soon again. I must stop, for Jonathan +is waking--I must attend to my husband! + +“Your ever-loving + +“MINA HARKER.” + + +_Letter, Lucy Westenra to Mina Harker._ + +“_Whitby, 30 August._ + +“My dearest Mina,-- + +“Oceans of love and millions of kisses, and may you soon be in your own +home with your husband. I wish you could be coming home soon enough to +stay with us here. The strong air would soon restore Jonathan; it has +quite restored me. I have an appetite like a cormorant, am full of +life, and sleep well. You will be glad to know that I have quite given +up walking in my sleep. I think I have not stirred out of my bed for a +week, that is when I once got into it at night. Arthur says I am getting +fat. By the way, I forgot to tell you that Arthur is here. We have such +walks and drives, and rides, and rowing, and tennis, and fishing +together; and I love him more than ever. He _tells_ me that he loves me +more, but I doubt that, for at first he told me that he couldn’t love me +more than he did then. But this is nonsense. There he is, calling to me. +So no more just at present from your loving + +“LUCY. + +“P. S.--Mother sends her love. She seems better, poor dear. +“P. P. S.--We are to be married on 28 September.” + + +_Dr. Seward’s Diary._ + +_20 August._--The case of Renfield grows even more interesting. He has +now so far quieted that there are spells of cessation from his passion. +For the first week after his attack he was perpetually violent. Then one +night, just as the moon rose, he grew quiet, and kept murmuring to +himself: “Now I can wait; now I can wait.” The attendant came to tell +me, so I ran down at once to have a look at him. He was still in the +strait-waistcoat and in the padded room, but the suffused look had gone +from his face, and his eyes had something of their old pleading--I might +almost say, “cringing”--softness. I was satisfied with his present +condition, and directed him to be relieved. The attendants hesitated, +but finally carried out my wishes without protest. It was a strange +thing that the patient had humour enough to see their distrust, for, +coming close to me, he said in a whisper, all the while looking +furtively at them:-- + +“They think I could hurt you! Fancy _me_ hurting _you_! The fools!” + +It was soothing, somehow, to the feelings to find myself dissociated +even in the mind of this poor madman from the others; but all the same I +do not follow his thought. Am I to take it that I have anything in +common with him, so that we are, as it were, to stand together; or has +he to gain from me some good so stupendous that my well-being is needful +to him? I must find out later on. To-night he will not speak. Even the +offer of a kitten or even a full-grown cat will not tempt him. He will +only say: “I don’t take any stock in cats. I have more to think of now, +and I can wait; I can wait.” + +After a while I left him. The attendant tells me that he was quiet +until just before dawn, and that then he began to get uneasy, and at +length violent, until at last he fell into a paroxysm which exhausted +him so that he swooned into a sort of coma. + + * * * * * + +... Three nights has the same thing happened--violent all day then quiet +from moonrise to sunrise. I wish I could get some clue to the cause. It +would almost seem as if there was some influence which came and went. +Happy thought! We shall to-night play sane wits against mad ones. He +escaped before without our help; to-night he shall escape with it. We +shall give him a chance, and have the men ready to follow in case they +are required.... + + * * * * * + +_23 August._--“The unexpected always happens.” How well Disraeli knew +life. Our bird when he found the cage open would not fly, so all our +subtle arrangements were for nought. At any rate, we have proved one +thing; that the spells of quietness last a reasonable time. We shall in +future be able to ease his bonds for a few hours each day. I have given +orders to the night attendant merely to shut him in the padded room, +when once he is quiet, until an hour before sunrise. The poor soul’s +body will enjoy the relief even if his mind cannot appreciate it. Hark! +The unexpected again! I am called; the patient has once more escaped. + + * * * * * + +_Later._--Another night adventure. Renfield artfully waited until the +attendant was entering the room to inspect. Then he dashed out past him +and flew down the passage. I sent word for the attendants to follow. +Again he went into the grounds of the deserted house, and we found him +in the same place, pressed against the old chapel door. When he saw me +he became furious, and had not the attendants seized him in time, he +would have tried to kill me. As we were holding him a strange thing +happened. He suddenly redoubled his efforts, and then as suddenly grew +calm. I looked round instinctively, but could see nothing. Then I caught +the patient’s eye and followed it, but could trace nothing as it looked +into the moonlit sky except a big bat, which was flapping its silent and +ghostly way to the west. Bats usually wheel and flit about, but this one +seemed to go straight on, as if it knew where it was bound for or had +some intention of its own. The patient grew calmer every instant, and +presently said:-- + +“You needn’t tie me; I shall go quietly!” Without trouble we came back +to the house. I feel there is something ominous in his calm, and shall +not forget this night.... + + +_Lucy Westenra’s Diary_ + +_Hillingham, 24 August._--I must imitate Mina, and keep writing things +down. Then we can have long talks when we do meet. I wonder when it will +be. I wish she were with me again, for I feel so unhappy. Last night I +seemed to be dreaming again just as I was at Whitby. Perhaps it is the +change of air, or getting home again. It is all dark and horrid to me, +for I can remember nothing; but I am full of vague fear, and I feel so +weak and worn out. When Arthur came to lunch he looked quite grieved +when he saw me, and I hadn’t the spirit to try to be cheerful. I wonder +if I could sleep in mother’s room to-night. I shall make an excuse and +try. + + * * * * * + +_25 August._--Another bad night. Mother did not seem to take to my +proposal. She seems not too well herself, and doubtless she fears to +worry me. I tried to keep awake, and succeeded for a while; but when the +clock struck twelve it waked me from a doze, so I must have been falling +asleep. There was a sort of scratching or flapping at the window, but I +did not mind it, and as I remember no more, I suppose I must then have +fallen asleep. More bad dreams. I wish I could remember them. This +morning I am horribly weak. My face is ghastly pale, and my throat pains +me. It must be something wrong with my lungs, for I don’t seem ever to +get air enough. I shall try to cheer up when Arthur comes, or else I +know he will be miserable to see me so. + + +_Letter, Arthur Holmwood to Dr. Seward._ + +“_Albemarle Hotel, 31 August._ + +“My dear Jack,-- + +“I want you to do me a favour. Lucy is ill; that is, she has no special +disease, but she looks awful, and is getting worse every day. I have +asked her if there is any cause; I do not dare to ask her mother, for to +disturb the poor lady’s mind about her daughter in her present state of +health would be fatal. Mrs. Westenra has confided to me that her doom is +spoken--disease of the heart--though poor Lucy does not know it yet. I +am sure that there is something preying on my dear girl’s mind. I am +almost distracted when I think of her; to look at her gives me a pang. I +told her I should ask you to see her, and though she demurred at +first--I know why, old fellow--she finally consented. It will be a +painful task for you, I know, old friend, but it is for _her_ sake, and +I must not hesitate to ask, or you to act. You are to come to lunch at +Hillingham to-morrow, two o’clock, so as not to arouse any suspicion in +Mrs. Westenra, and after lunch Lucy will take an opportunity of being +alone with you. I shall come in for tea, and we can go away together; I +am filled with anxiety, and want to consult with you alone as soon as I +can after you have seen her. Do not fail! + +“ARTHUR.” + + +_Telegram, Arthur Holmwood to Seward._ + +“_1 September._ + +“Am summoned to see my father, who is worse. Am writing. Write me fully +by to-night’s post to Ring. Wire me if necessary.” + + +_Letter from Dr. Seward to Arthur Holmwood._ + +“_2 September._ + +“My dear old fellow,-- + +“With regard to Miss Westenra’s health I hasten to let you know at once +that in my opinion there is not any functional disturbance or any malady +that I know of. At the same time, I am not by any means satisfied with +her appearance; she is woefully different from what she was when I saw +her last. Of course you must bear in mind that I did not have full +opportunity of examination such as I should wish; our very friendship +makes a little difficulty which not even medical science or custom can +bridge over. I had better tell you exactly what happened, leaving you to +draw, in a measure, your own conclusions. I shall then say what I have +done and propose doing. + +“I found Miss Westenra in seemingly gay spirits. Her mother was present, +and in a few seconds I made up my mind that she was trying all she knew +to mislead her mother and prevent her from being anxious. I have no +doubt she guesses, if she does not know, what need of caution there is. +We lunched alone, and as we all exerted ourselves to be cheerful, we +got, as some kind of reward for our labours, some real cheerfulness +amongst us. Then Mrs. Westenra went to lie down, and Lucy was left with +me. We went into her boudoir, and till we got there her gaiety remained, +for the servants were coming and going. As soon as the door was closed, +however, the mask fell from her face, and she sank down into a chair +with a great sigh, and hid her eyes with her hand. When I saw that her +high spirits had failed, I at once took advantage of her reaction to +make a diagnosis. She said to me very sweetly:-- + +“‘I cannot tell you how I loathe talking about myself.’ I reminded her +that a doctor’s confidence was sacred, but that you were grievously +anxious about her. She caught on to my meaning at once, and settled that +matter in a word. ‘Tell Arthur everything you choose. I do not care for +myself, but all for him!’ So I am quite free. + +“I could easily see that she is somewhat bloodless, but I could not see +the usual anæmic signs, and by a chance I was actually able to test the +quality of her blood, for in opening a window which was stiff a cord +gave way, and she cut her hand slightly with broken glass. It was a +slight matter in itself, but it gave me an evident chance, and I secured +a few drops of the blood and have analysed them. The qualitative +analysis gives a quite normal condition, and shows, I should infer, in +itself a vigorous state of health. In other physical matters I was quite +satisfied that there is no need for anxiety; but as there must be a +cause somewhere, I have come to the conclusion that it must be something +mental. She complains of difficulty in breathing satisfactorily at +times, and of heavy, lethargic sleep, with dreams that frighten her, but +regarding which she can remember nothing. She says that as a child she +used to walk in her sleep, and that when in Whitby the habit came back, +and that once she walked out in the night and went to East Cliff, where +Miss Murray found her; but she assures me that of late the habit has not +returned. I am in doubt, and so have done the best thing I know of; I +have written to my old friend and master, Professor Van Helsing, of +Amsterdam, who knows as much about obscure diseases as any one in the +world. I have asked him to come over, and as you told me that all things +were to be at your charge, I have mentioned to him who you are and your +relations to Miss Westenra. This, my dear fellow, is in obedience to +your wishes, for I am only too proud and happy to do anything I can for +her. Van Helsing would, I know, do anything for me for a personal +reason, so, no matter on what ground he comes, we must accept his +wishes. He is a seemingly arbitrary man, but this is because he knows +what he is talking about better than any one else. He is a philosopher +and a metaphysician, and one of the most advanced scientists of his day; +and he has, I believe, an absolutely open mind. This, with an iron +nerve, a temper of the ice-brook, an indomitable resolution, +self-command, and toleration exalted from virtues to blessings, and the +kindliest and truest heart that beats--these form his equipment for the +noble work that he is doing for mankind--work both in theory and +practice, for his views are as wide as his all-embracing sympathy. I +tell you these facts that you may know why I have such confidence in +him. I have asked him to come at once. I shall see Miss Westenra +to-morrow again. She is to meet me at the Stores, so that I may not +alarm her mother by too early a repetition of my call. + +“Yours always, + +“JOHN SEWARD.” + + +_Letter, Abraham Van Helsing, M. D., D. Ph., D. Lit., etc., etc., to Dr. +Seward._ + +“_2 September._ + +“My good Friend,-- + +“When I have received your letter I am already coming to you. By good +fortune I can leave just at once, without wrong to any of those who have +trusted me. Were fortune other, then it were bad for those who have +trusted, for I come to my friend when he call me to aid those he holds +dear. Tell your friend that when that time you suck from my wound so +swiftly the poison of the gangrene from that knife that our other +friend, too nervous, let slip, you did more for him when he wants my +aids and you call for them than all his great fortune could do. But it +is pleasure added to do for him, your friend; it is to you that I come. +Have then rooms for me at the Great Eastern Hotel, so that I may be near +to hand, and please it so arrange that we may see the young lady not too +late on to-morrow, for it is likely that I may have to return here that +night. But if need be I shall come again in three days, and stay longer +if it must. Till then good-bye, my friend John. + + “VAN HELSING.” + + +_Letter, Dr. Seward to Hon. Arthur Holmwood._ + +“_3 September._ + +“My dear Art,-- + +“Van Helsing has come and gone. He came on with me to Hillingham, and +found that, by Lucy’s discretion, her mother was lunching out, so that +we were alone with her. Van Helsing made a very careful examination of +the patient. He is to report to me, and I shall advise you, for of +course I was not present all the time. He is, I fear, much concerned, +but says he must think. When I told him of our friendship and how you +trust to me in the matter, he said: ‘You must tell him all you think. +Tell him what I think, if you can guess it, if you will. Nay, I am not +jesting. This is no jest, but life and death, perhaps more.’ I asked +what he meant by that, for he was very serious. This was when we had +come back to town, and he was having a cup of tea before starting on his +return to Amsterdam. He would not give me any further clue. You must not +be angry with me, Art, because his very reticence means that all his +brains are working for her good. He will speak plainly enough when the +time comes, be sure. So I told him I would simply write an account of +our visit, just as if I were doing a descriptive special article for +_The Daily Telegraph_. He seemed not to notice, but remarked that the +smuts in London were not quite so bad as they used to be when he was a +student here. I am to get his report to-morrow if he can possibly make +it. In any case I am to have a letter. + +“Well, as to the visit. Lucy was more cheerful than on the day I first +saw her, and certainly looked better. She had lost something of the +ghastly look that so upset you, and her breathing was normal. She was +very sweet to the professor (as she always is), and tried to make him +feel at ease; though I could see that the poor girl was making a hard +struggle for it. I believe Van Helsing saw it, too, for I saw the quick +look under his bushy brows that I knew of old. Then he began to chat of +all things except ourselves and diseases and with such an infinite +geniality that I could see poor Lucy’s pretense of animation merge into +reality. Then, without any seeming change, he brought the conversation +gently round to his visit, and suavely said:-- + +“‘My dear young miss, I have the so great pleasure because you are so +much beloved. That is much, my dear, ever were there that which I do not +see. They told me you were down in the spirit, and that you were of a +ghastly pale. To them I say: “Pouf!”’ And he snapped his fingers at me +and went on: ‘But you and I shall show them how wrong they are. How can +he’--and he pointed at me with the same look and gesture as that with +which once he pointed me out to his class, on, or rather after, a +particular occasion which he never fails to remind me of--‘know anything +of a young ladies? He has his madmans to play with, and to bring them +back to happiness, and to those that love them. It is much to do, and, +oh, but there are rewards, in that we can bestow such happiness. But the +young ladies! He has no wife nor daughter, and the young do not tell +themselves to the young, but to the old, like me, who have known so many +sorrows and the causes of them. So, my dear, we will send him away to +smoke the cigarette in the garden, whiles you and I have little talk all +to ourselves.’ I took the hint, and strolled about, and presently the +professor came to the window and called me in. He looked grave, but +said: ‘I have made careful examination, but there is no functional +cause. With you I agree that there has been much blood lost; it has +been, but is not. But the conditions of her are in no way anæmic. I have +asked her to send me her maid, that I may ask just one or two question, +that so I may not chance to miss nothing. I know well what she will say. +And yet there is cause; there is always cause for everything. I must go +back home and think. You must send to me the telegram every day; and if +there be cause I shall come again. The disease--for not to be all well +is a disease--interest me, and the sweet young dear, she interest me +too. She charm me, and for her, if not for you or disease, I come.’ + +“As I tell you, he would not say a word more, even when we were alone. +And so now, Art, you know all I know. I shall keep stern watch. I trust +your poor father is rallying. It must be a terrible thing to you, my +dear old fellow, to be placed in such a position between two people who +are both so dear to you. I know your idea of duty to your father, and +you are right to stick to it; but, if need be, I shall send you word to +come at once to Lucy; so do not be over-anxious unless you hear from +me.” + + +_Dr. Seward’s Diary._ + +_4 September._--Zoöphagous patient still keeps up our interest in him. +He had only one outburst and that was yesterday at an unusual time. Just +before the stroke of noon he began to grow restless. The attendant knew +the symptoms, and at once summoned aid. Fortunately the men came at a +run, and were just in time, for at the stroke of noon he became so +violent that it took all their strength to hold him. In about five +minutes, however, he began to get more and more quiet, and finally sank +into a sort of melancholy, in which state he has remained up to now. The +attendant tells me that his screams whilst in the paroxysm were really +appalling; I found my hands full when I got in, attending to some of the +other patients who were frightened by him. Indeed, I can quite +understand the effect, for the sounds disturbed even me, though I was +some distance away. It is now after the dinner-hour of the asylum, and +as yet my patient sits in a corner brooding, with a dull, sullen, +woe-begone look in his face, which seems rather to indicate than to show +something directly. I cannot quite understand it. + + * * * * * + +_Later._--Another change in my patient. At five o’clock I looked in on +him, and found him seemingly as happy and contented as he used to be. He +was catching flies and eating them, and was keeping note of his capture +by making nail-marks on the edge of the door between the ridges of +padding. When he saw me, he came over and apologised for his bad +conduct, and asked me in a very humble, cringing way to be led back to +his own room and to have his note-book again. I thought it well to +humour him: so he is back in his room with the window open. He has the +sugar of his tea spread out on the window-sill, and is reaping quite a +harvest of flies. He is not now eating them, but putting them into a +box, as of old, and is already examining the corners of his room to find +a spider. I tried to get him to talk about the past few days, for any +clue to his thoughts would be of immense help to me; but he would not +rise. For a moment or two he looked very sad, and said in a sort of +far-away voice, as though saying it rather to himself than to me:-- + +“All over! all over! He has deserted me. No hope for me now unless I do +it for myself!” Then suddenly turning to me in a resolute way, he said: +“Doctor, won’t you be very good to me and let me have a little more +sugar? I think it would be good for me.” + +“And the flies?” I said. + +“Yes! The flies like it, too, and I like the flies; therefore I like +it.” And there are people who know so little as to think that madmen do +not argue. I procured him a double supply, and left him as happy a man +as, I suppose, any in the world. I wish I could fathom his mind. + + * * * * * + +_Midnight._--Another change in him. I had been to see Miss Westenra, +whom I found much better, and had just returned, and was standing at our +own gate looking at the sunset, when once more I heard him yelling. As +his room is on this side of the house, I could hear it better than in +the morning. It was a shock to me to turn from the wonderful smoky +beauty of a sunset over London, with its lurid lights and inky shadows +and all the marvellous tints that come on foul clouds even as on foul +water, and to realise all the grim sternness of my own cold stone +building, with its wealth of breathing misery, and my own desolate heart +to endure it all. I reached him just as the sun was going down, and from +his window saw the red disc sink. As it sank he became less and less +frenzied; and just as it dipped he slid from the hands that held him, an +inert mass, on the floor. It is wonderful, however, what intellectual +recuperative power lunatics have, for within a few minutes he stood up +quite calmly and looked around him. I signalled to the attendants not to +hold him, for I was anxious to see what he would do. He went straight +over to the window and brushed out the crumbs of sugar; then he took his +fly-box, and emptied it outside, and threw away the box; then he shut +the window, and crossing over, sat down on his bed. All this surprised +me, so I asked him: “Are you not going to keep flies any more?” + +“No,” said he; “I am sick of all that rubbish!” He certainly is a +wonderfully interesting study. I wish I could get some glimpse of his +mind or of the cause of his sudden passion. Stop; there may be a clue +after all, if we can find why to-day his paroxysms came on at high noon +and at sunset. Can it be that there is a malign influence of the sun at +periods which affects certain natures--as at times the moon does others? +We shall see. + + +_Telegram, Seward, London, to Van Helsing, Amsterdam._ + +“_4 September._--Patient still better to-day.” + + +_Telegram, Seward, London, to Van Helsing, Amsterdam._ + +“_5 September._--Patient greatly improved. Good appetite; sleeps +naturally; good spirits; colour coming back.” + + +_Telegram, Seward, London, to Van Helsing, Amsterdam._ + +“_6 September._--Terrible change for the worse. Come at once; do not +lose an hour. I hold over telegram to Holmwood till have seen you.” + + + + +CHAPTER X + + +_Letter, Dr. Seward to Hon. Arthur Holmwood._ + +“_6 September._ + +“My dear Art,-- + +“My news to-day is not so good. Lucy this morning had gone back a bit. +There is, however, one good thing which has arisen from it; Mrs. +Westenra was naturally anxious concerning Lucy, and has consulted me +professionally about her. I took advantage of the opportunity, and told +her that my old master, Van Helsing, the great specialist, was coming to +stay with me, and that I would put her in his charge conjointly with +myself; so now we can come and go without alarming her unduly, for a +shock to her would mean sudden death, and this, in Lucy’s weak +condition, might be disastrous to her. We are hedged in with +difficulties, all of us, my poor old fellow; but, please God, we shall +come through them all right. If any need I shall write, so that, if you +do not hear from me, take it for granted that I am simply waiting for +news. In haste + +“Yours ever, + +“JOHN SEWARD.” + + +_Dr. Seward’s Diary._ + +_7 September._--The first thing Van Helsing said to me when we met at +Liverpool Street was:-- + +“Have you said anything to our young friend the lover of her?” + +“No,” I said. “I waited till I had seen you, as I said in my telegram. I +wrote him a letter simply telling him that you were coming, as Miss +Westenra was not so well, and that I should let him know if need be.” + +“Right, my friend,” he said, “quite right! Better he not know as yet; +perhaps he shall never know. I pray so; but if it be needed, then he +shall know all. And, my good friend John, let me caution you. You deal +with the madmen. All men are mad in some way or the other; and inasmuch +as you deal discreetly with your madmen, so deal with God’s madmen, +too--the rest of the world. You tell not your madmen what you do nor why +you do it; you tell them not what you think. So you shall keep knowledge +in its place, where it may rest--where it may gather its kind around it +and breed. You and I shall keep as yet what we know here, and here.” He +touched me on the heart and on the forehead, and then touched himself +the same way. “I have for myself thoughts at the present. Later I shall +unfold to you.” + +“Why not now?” I asked. “It may do some good; we may arrive at some +decision.” He stopped and looked at me, and said:-- + +“My friend John, when the corn is grown, even before it has +ripened--while the milk of its mother-earth is in him, and the sunshine +has not yet begun to paint him with his gold, the husbandman he pull the +ear and rub him between his rough hands, and blow away the green chaff, +and say to you: ‘Look! he’s good corn; he will make good crop when the +time comes.’” I did not see the application, and told him so. For reply +he reached over and took my ear in his hand and pulled it playfully, as +he used long ago to do at lectures, and said: “The good husbandman tell +you so then because he knows, but not till then. But you do not find the +good husbandman dig up his planted corn to see if he grow; that is for +the children who play at husbandry, and not for those who take it as of +the work of their life. See you now, friend John? I have sown my corn, +and Nature has her work to do in making it sprout; if he sprout at all, +there’s some promise; and I wait till the ear begins to swell.” He broke +off, for he evidently saw that I understood. Then he went on, and very +gravely:-- + +“You were always a careful student, and your case-book was ever more +full than the rest. You were only student then; now you are master, and +I trust that good habit have not fail. Remember, my friend, that +knowledge is stronger than memory, and we should not trust the weaker. +Even if you have not kept the good practise, let me tell you that this +case of our dear miss is one that may be--mind, I say _may be_--of such +interest to us and others that all the rest may not make him kick the +beam, as your peoples say. Take then good note of it. Nothing is too +small. I counsel you, put down in record even your doubts and surmises. +Hereafter it may be of interest to you to see how true you guess. We +learn from failure, not from success!” + +When I described Lucy’s symptoms--the same as before, but infinitely +more marked--he looked very grave, but said nothing. He took with him a +bag in which were many instruments and drugs, “the ghastly paraphernalia +of our beneficial trade,” as he once called, in one of his lectures, the +equipment of a professor of the healing craft. When we were shown in, +Mrs. Westenra met us. She was alarmed, but not nearly so much as I +expected to find her. Nature in one of her beneficent moods has ordained +that even death has some antidote to its own terrors. Here, in a case +where any shock may prove fatal, matters are so ordered that, from some +cause or other, the things not personal--even the terrible change in her +daughter to whom she is so attached--do not seem to reach her. It is +something like the way Dame Nature gathers round a foreign body an +envelope of some insensitive tissue which can protect from evil that +which it would otherwise harm by contact. If this be an ordered +selfishness, then we should pause before we condemn any one for the vice +of egoism, for there may be deeper root for its causes than we have +knowledge of. + +I used my knowledge of this phase of spiritual pathology, and laid down +a rule that she should not be present with Lucy or think of her illness +more than was absolutely required. She assented readily, so readily that +I saw again the hand of Nature fighting for life. Van Helsing and I were +shown up to Lucy’s room. If I was shocked when I saw her yesterday, I +was horrified when I saw her to-day. She was ghastly, chalkily pale; the +red seemed to have gone even from her lips and gums, and the bones of +her face stood out prominently; her breathing was painful to see or +hear. Van Helsing’s face grew set as marble, and his eyebrows converged +till they almost touched over his nose. Lucy lay motionless, and did not +seem to have strength to speak, so for a while we were all silent. Then +Van Helsing beckoned to me, and we went gently out of the room. The +instant we had closed the door he stepped quickly along the passage to +the next door, which was open. Then he pulled me quickly in with him and +closed the door. “My God!” he said; “this is dreadful. There is no time +to be lost. She will die for sheer want of blood to keep the heart’s +action as it should be. There must be transfusion of blood at once. Is +it you or me?” + +“I am younger and stronger, Professor. It must be me.” + +“Then get ready at once. I will bring up my bag. I am prepared.” + +I went downstairs with him, and as we were going there was a knock at +the hall-door. When we reached the hall the maid had just opened the +door, and Arthur was stepping quickly in. He rushed up to me, saying in +an eager whisper:-- + +“Jack, I was so anxious. I read between the lines of your letter, and +have been in an agony. The dad was better, so I ran down here to see for +myself. Is not that gentleman Dr. Van Helsing? I am so thankful to you, +sir, for coming.” When first the Professor’s eye had lit upon him he had +been angry at his interruption at such a time; but now, as he took in +his stalwart proportions and recognised the strong young manhood which +seemed to emanate from him, his eyes gleamed. Without a pause he said to +him gravely as he held out his hand:-- + +“Sir, you have come in time. You are the lover of our dear miss. She is +bad, very, very bad. Nay, my child, do not go like that.” For he +suddenly grew pale and sat down in a chair almost fainting. “You are to +help her. You can do more than any that live, and your courage is your +best help.” + +“What can I do?” asked Arthur hoarsely. “Tell me, and I shall do it. My +life is hers, and I would give the last drop of blood in my body for +her.” The Professor has a strongly humorous side, and I could from old +knowledge detect a trace of its origin in his answer:-- + +“My young sir, I do not ask so much as that--not the last!” + +“What shall I do?” There was fire in his eyes, and his open nostril +quivered with intent. Van Helsing slapped him on the shoulder. “Come!” +he said. “You are a man, and it is a man we want. You are better than +me, better than my friend John.” Arthur looked bewildered, and the +Professor went on by explaining in a kindly way:-- + +“Young miss is bad, very bad. She wants blood, and blood she must have +or die. My friend John and I have consulted; and we are about to perform +what we call transfusion of blood--to transfer from full veins of one to +the empty veins which pine for him. John was to give his blood, as he is +the more young and strong than me”--here Arthur took my hand and wrung +it hard in silence--“but, now you are here, you are more good than us, +old or young, who toil much in the world of thought. Our nerves are not +so calm and our blood not so bright than yours!” Arthur turned to him +and said:-- + +“If you only knew how gladly I would die for her you would +understand----” + +He stopped, with a sort of choke in his voice. + +“Good boy!” said Van Helsing. “In the not-so-far-off you will be happy +that you have done all for her you love. Come now and be silent. You +shall kiss her once before it is done, but then you must go; and you +must leave at my sign. Say no word to Madame; you know how it is with +her! There must be no shock; any knowledge of this would be one. Come!” + +We all went up to Lucy’s room. Arthur by direction remained outside. +Lucy turned her head and looked at us, but said nothing. She was not +asleep, but she was simply too weak to make the effort. Her eyes spoke +to us; that was all. Van Helsing took some things from his bag and laid +them on a little table out of sight. Then he mixed a narcotic, and +coming over to the bed, said cheerily:-- + +“Now, little miss, here is your medicine. Drink it off, like a good +child. See, I lift you so that to swallow is easy. Yes.” She had made +the effort with success. + +It astonished me how long the drug took to act. This, in fact, marked +the extent of her weakness. The time seemed endless until sleep began to +flicker in her eyelids. At last, however, the narcotic began to manifest +its potency; and she fell into a deep sleep. When the Professor was +satisfied he called Arthur into the room, and bade him strip off his +coat. Then he added: “You may take that one little kiss whiles I bring +over the table. Friend John, help to me!” So neither of us looked whilst +he bent over her. + +Van Helsing turning to me, said: + +“He is so young and strong and of blood so pure that we need not +defibrinate it.” + +Then with swiftness, but with absolute method, Van Helsing performed the +operation. As the transfusion went on something like life seemed to come +back to poor Lucy’s cheeks, and through Arthur’s growing pallor the joy +of his face seemed absolutely to shine. After a bit I began to grow +anxious, for the loss of blood was telling on Arthur, strong man as he +was. It gave me an idea of what a terrible strain Lucy’s system must +have undergone that what weakened Arthur only partially restored her. +But the Professor’s face was set, and he stood watch in hand and with +his eyes fixed now on the patient and now on Arthur. I could hear my own +heart beat. Presently he said in a soft voice: “Do not stir an instant. +It is enough. You attend him; I will look to her.” When all was over I +could see how much Arthur was weakened. I dressed the wound and took his +arm to bring him away, when Van Helsing spoke without turning round--the +man seems to have eyes in the back of his head:-- + +“The brave lover, I think, deserve another kiss, which he shall have +presently.” And as he had now finished his operation, he adjusted the +pillow to the patient’s head. As he did so the narrow black velvet band +which she seems always to wear round her throat, buckled with an old +diamond buckle which her lover had given her, was dragged a little up, +and showed a red mark on her throat. Arthur did not notice it, but I +could hear the deep hiss of indrawn breath which is one of Van Helsing’s +ways of betraying emotion. He said nothing at the moment, but turned to +me, saying: “Now take down our brave young lover, give him of the port +wine, and let him lie down a while. He must then go home and rest, sleep +much and eat much, that he may be recruited of what he has so given to +his love. He must not stay here. Hold! a moment. I may take it, sir, +that you are anxious of result. Then bring it with you that in all ways +the operation is successful. You have saved her life this time, and you +can go home and rest easy in mind that all that can be is. I shall tell +her all when she is well; she shall love you none the less for what you +have done. Good-bye.” + +When Arthur had gone I went back to the room. Lucy was sleeping gently, +but her breathing was stronger; I could see the counterpane move as her +breast heaved. By the bedside sat Van Helsing, looking at her intently. +The velvet band again covered the red mark. I asked the Professor in a +whisper:-- + +“What do you make of that mark on her throat?” + +“What do you make of it?” + +“I have not examined it yet,” I answered, and then and there proceeded +to loose the band. Just over the external jugular vein there were two +punctures, not large, but not wholesome-looking. There was no sign of +disease, but the edges were white and worn-looking, as if by some +trituration. It at once occurred to me that this wound, or whatever it +was, might be the means of that manifest loss of blood; but I abandoned +the idea as soon as formed, for such a thing could not be. The whole bed +would have been drenched to a scarlet with the blood which the girl must +have lost to leave such a pallor as she had before the transfusion. + +“Well?” said Van Helsing. + +“Well,” said I, “I can make nothing of it.” The Professor stood up. “I +must go back to Amsterdam to-night,” he said. “There are books and +things there which I want. You must remain here all the night, and you +must not let your sight pass from her.” + +“Shall I have a nurse?” I asked. + +“We are the best nurses, you and I. You keep watch all night; see that +she is well fed, and that nothing disturbs her. You must not sleep all +the night. Later on we can sleep, you and I. I shall be back as soon as +possible. And then we may begin.” + +“May begin?” I said. “What on earth do you mean?” + +“We shall see!” he answered, as he hurried out. He came back a moment +later and put his head inside the door and said with warning finger held +up:-- + +“Remember, she is your charge. If you leave her, and harm befall, you +shall not sleep easy hereafter!” + + +_Dr. Seward’s Diary--continued._ + +_8 September._--I sat up all night with Lucy. The opiate worked itself +off towards dusk, and she waked naturally; she looked a different being +from what she had been before the operation. Her spirits even were good, +and she was full of a happy vivacity, but I could see evidences of the +absolute prostration which she had undergone. When I told Mrs. Westenra +that Dr. Van Helsing had directed that I should sit up with her she +almost pooh-poohed the idea, pointing out her daughter’s renewed +strength and excellent spirits. I was firm, however, and made +preparations for my long vigil. When her maid had prepared her for the +night I came in, having in the meantime had supper, and took a seat by +the bedside. She did not in any way make objection, but looked at me +gratefully whenever I caught her eye. After a long spell she seemed +sinking off to sleep, but with an effort seemed to pull herself together +and shook it off. This was repeated several times, with greater effort +and with shorter pauses as the time moved on. It was apparent that she +did not want to sleep, so I tackled the subject at once:-- + +“You do not want to go to sleep?” + +“No; I am afraid.” + +“Afraid to go to sleep! Why so? It is the boon we all crave for.” + +“Ah, not if you were like me--if sleep was to you a presage of horror!” + +“A presage of horror! What on earth do you mean?” + +“I don’t know; oh, I don’t know. And that is what is so terrible. All +this weakness comes to me in sleep; until I dread the very thought.” + +“But, my dear girl, you may sleep to-night. I am here watching you, and +I can promise that nothing will happen.” + +“Ah, I can trust you!” I seized the opportunity, and said: “I promise +you that if I see any evidence of bad dreams I will wake you at once.” + +“You will? Oh, will you really? How good you are to me. Then I will +sleep!” And almost at the word she gave a deep sigh of relief, and sank +back, asleep. + +All night long I watched by her. She never stirred, but slept on and on +in a deep, tranquil, life-giving, health-giving sleep. Her lips were +slightly parted, and her breast rose and fell with the regularity of a +pendulum. There was a smile on her face, and it was evident that no bad +dreams had come to disturb her peace of mind. + +In the early morning her maid came, and I left her in her care and took +myself back home, for I was anxious about many things. I sent a short +wire to Van Helsing and to Arthur, telling them of the excellent result +of the operation. My own work, with its manifold arrears, took me all +day to clear off; it was dark when I was able to inquire about my +zoöphagous patient. The report was good; he had been quite quiet for the +past day and night. A telegram came from Van Helsing at Amsterdam whilst +I was at dinner, suggesting that I should be at Hillingham to-night, as +it might be well to be at hand, and stating that he was leaving by the +night mail and would join me early in the morning. + + * * * * * + +_9 September_.--I was pretty tired and worn out when I got to +Hillingham. For two nights I had hardly had a wink of sleep, and my +brain was beginning to feel that numbness which marks cerebral +exhaustion. Lucy was up and in cheerful spirits. When she shook hands +with me she looked sharply in my face and said:-- + +“No sitting up to-night for you. You are worn out. I am quite well +again; indeed, I am; and if there is to be any sitting up, it is I who +will sit up with you.” I would not argue the point, but went and had my +supper. Lucy came with me, and, enlivened by her charming presence, I +made an excellent meal, and had a couple of glasses of the more than +excellent port. Then Lucy took me upstairs, and showed me a room next +her own, where a cozy fire was burning. “Now,” she said, “you must stay +here. I shall leave this door open and my door too. You can lie on the +sofa for I know that nothing would induce any of you doctors to go to +bed whilst there is a patient above the horizon. If I want anything I +shall call out, and you can come to me at once.” I could not but +acquiesce, for I was “dog-tired,” and could not have sat up had I tried. +So, on her renewing her promise to call me if she should want anything, +I lay on the sofa, and forgot all about everything. + + +_Lucy Westenra’s Diary._ + +_9 September._--I feel so happy to-night. I have been so miserably weak, +that to be able to think and move about is like feeling sunshine after +a long spell of east wind out of a steel sky. Somehow Arthur feels very, +very close to me. I seem to feel his presence warm about me. I suppose +it is that sickness and weakness are selfish things and turn our inner +eyes and sympathy on ourselves, whilst health and strength give Love +rein, and in thought and feeling he can wander where he wills. I know +where my thoughts are. If Arthur only knew! My dear, my dear, your ears +must tingle as you sleep, as mine do waking. Oh, the blissful rest of +last night! How I slept, with that dear, good Dr. Seward watching me. +And to-night I shall not fear to sleep, since he is close at hand and +within call. Thank everybody for being so good to me! Thank God! +Good-night, Arthur. + + +_Dr. Seward’s Diary._ + +_10 September._--I was conscious of the Professor’s hand on my head, and +started awake all in a second. That is one of the things that we learn +in an asylum, at any rate. + +“And how is our patient?” + +“Well, when I left her, or rather when she left me,” I answered. + +“Come, let us see,” he said. And together we went into the room. + +The blind was down, and I went over to raise it gently, whilst Van +Helsing stepped, with his soft, cat-like tread, over to the bed. + +As I raised the blind, and the morning sunlight flooded the room, I +heard the Professor’s low hiss of inspiration, and knowing its rarity, a +deadly fear shot through my heart. As I passed over he moved back, and +his exclamation of horror, “Gott in Himmel!” needed no enforcement from +his agonised face. He raised his hand and pointed to the bed, and his +iron face was drawn and ashen white. I felt my knees begin to tremble. + +There on the bed, seemingly in a swoon, lay poor Lucy, more horribly +white and wan-looking than ever. Even the lips were white, and the gums +seemed to have shrunken back from the teeth, as we sometimes see in a +corpse after a prolonged illness. Van Helsing raised his foot to stamp +in anger, but the instinct of his life and all the long years of habit +stood to him, and he put it down again softly. “Quick!” he said. “Bring +the brandy.” I flew to the dining-room, and returned with the decanter. +He wetted the poor white lips with it, and together we rubbed palm and +wrist and heart. He felt her heart, and after a few moments of agonising +suspense said:-- + +“It is not too late. It beats, though but feebly. All our work is +undone; we must begin again. There is no young Arthur here now; I have +to call on you yourself this time, friend John.” As he spoke, he was +dipping into his bag and producing the instruments for transfusion; I +had taken off my coat and rolled up my shirt-sleeve. There was no +possibility of an opiate just at present, and no need of one; and so, +without a moment’s delay, we began the operation. After a time--it did +not seem a short time either, for the draining away of one’s blood, no +matter how willingly it be given, is a terrible feeling--Van Helsing +held up a warning finger. “Do not stir,” he said, “but I fear that with +growing strength she may wake; and that would make danger, oh, so much +danger. But I shall precaution take. I shall give hypodermic injection +of morphia.” He proceeded then, swiftly and deftly, to carry out his +intent. The effect on Lucy was not bad, for the faint seemed to merge +subtly into the narcotic sleep. It was with a feeling of personal pride +that I could see a faint tinge of colour steal back into the pallid +cheeks and lips. No man knows, till he experiences it, what it is to +feel his own life-blood drawn away into the veins of the woman he loves. + +The Professor watched me critically. “That will do,” he said. “Already?” +I remonstrated. “You took a great deal more from Art.” To which he +smiled a sad sort of smile as he replied:-- + +“He is her lover, her _fiancé_. You have work, much work, to do for her +and for others; and the present will suffice.” + +When we stopped the operation, he attended to Lucy, whilst I applied +digital pressure to my own incision. I laid down, whilst I waited his +leisure to attend to me, for I felt faint and a little sick. By-and-by +he bound up my wound, and sent me downstairs to get a glass of wine for +myself. As I was leaving the room, he came after me, and half +whispered:-- + +“Mind, nothing must be said of this. If our young lover should turn up +unexpected, as before, no word to him. It would at once frighten him and +enjealous him, too. There must be none. So!” + +When I came back he looked at me carefully, and then said:-- + +“You are not much the worse. Go into the room, and lie on your sofa, and +rest awhile; then have much breakfast, and come here to me.” + +I followed out his orders, for I knew how right and wise they were. I +had done my part, and now my next duty was to keep up my strength. I +felt very weak, and in the weakness lost something of the amazement at +what had occurred. I fell asleep on the sofa, however, wondering over +and over again how Lucy had made such a retrograde movement, and how +she could have been drained of so much blood with no sign anywhere to +show for it. I think I must have continued my wonder in my dreams, for, +sleeping and waking, my thoughts always came back to the little +punctures in her throat and the ragged, exhausted appearance of their +edges--tiny though they were. + +Lucy slept well into the day, and when she woke she was fairly well and +strong, though not nearly so much so as the day before. When Van Helsing +had seen her, he went out for a walk, leaving me in charge, with strict +injunctions that I was not to leave her for a moment. I could hear his +voice in the hall, asking the way to the nearest telegraph office. + +Lucy chatted with me freely, and seemed quite unconscious that anything +had happened. I tried to keep her amused and interested. When her mother +came up to see her, she did not seem to notice any change whatever, but +said to me gratefully:-- + +“We owe you so much, Dr. Seward, for all you have done, but you really +must now take care not to overwork yourself. You are looking pale +yourself. You want a wife to nurse and look after you a bit; that you +do!” As she spoke, Lucy turned crimson, though it was only momentarily, +for her poor wasted veins could not stand for long such an unwonted +drain to the head. The reaction came in excessive pallor as she turned +imploring eyes on me. I smiled and nodded, and laid my finger on my +lips; with a sigh, she sank back amid her pillows. + +Van Helsing returned in a couple of hours, and presently said to me: +“Now you go home, and eat much and drink enough. Make yourself strong. I +stay here to-night, and I shall sit up with little miss myself. You and +I must watch the case, and we must have none other to know. I have grave +reasons. No, do not ask them; think what you will. Do not fear to think +even the most not-probable. Good-night.” + +In the hall two of the maids came to me, and asked if they or either of +them might not sit up with Miss Lucy. They implored me to let them; and +when I said it was Dr. Van Helsing’s wish that either he or I should sit +up, they asked me quite piteously to intercede with the “foreign +gentleman.” I was much touched by their kindness. Perhaps it is because +I am weak at present, and perhaps because it was on Lucy’s account, that +their devotion was manifested; for over and over again have I seen +similar instances of woman’s kindness. I got back here in time for a +late dinner; went my rounds--all well; and set this down whilst waiting +for sleep. It is coming. + + * * * * * + +_11 September._--This afternoon I went over to Hillingham. Found Van +Helsing in excellent spirits, and Lucy much better. Shortly after I had +arrived, a big parcel from abroad came for the Professor. He opened it +with much impressment--assumed, of course--and showed a great bundle of +white flowers. + +“These are for you, Miss Lucy,” he said. + +“For me? Oh, Dr. Van Helsing!” + +“Yes, my dear, but not for you to play with. These are medicines.” Here +Lucy made a wry face. “Nay, but they are not to take in a decoction or +in nauseous form, so you need not snub that so charming nose, or I shall +point out to my friend Arthur what woes he may have to endure in seeing +so much beauty that he so loves so much distort. Aha, my pretty miss, +that bring the so nice nose all straight again. This is medicinal, but +you do not know how. I put him in your window, I make pretty wreath, and +hang him round your neck, so that you sleep well. Oh yes! they, like the +lotus flower, make your trouble forgotten. It smell so like the waters +of Lethe, and of that fountain of youth that the Conquistadores sought +for in the Floridas, and find him all too late.” + +Whilst he was speaking, Lucy had been examining the flowers and smelling +them. Now she threw them down, saying, with half-laughter, and +half-disgust:-- + +“Oh, Professor, I believe you are only putting up a joke on me. Why, +these flowers are only common garlic.” + +To my surprise, Van Helsing rose up and said with all his sternness, his +iron jaw set and his bushy eyebrows meeting:-- + +“No trifling with me! I never jest! There is grim purpose in all I do; +and I warn you that you do not thwart me. Take care, for the sake of +others if not for your own.” Then seeing poor Lucy scared, as she might +well be, he went on more gently: “Oh, little miss, my dear, do not fear +me. I only do for your good; but there is much virtue to you in those so +common flowers. See, I place them myself in your room. I make myself the +wreath that you are to wear. But hush! no telling to others that make so +inquisitive questions. We must obey, and silence is a part of obedience; +and obedience is to bring you strong and well into loving arms that wait +for you. Now sit still awhile. Come with me, friend John, and you shall +help me deck the room with my garlic, which is all the way from Haarlem, +where my friend Vanderpool raise herb in his glass-houses all the year. +I had to telegraph yesterday, or they would not have been here.” + +We went into the room, taking the flowers with us. The Professor’s +actions were certainly odd and not to be found in any pharmacopoeia +that I ever heard of. First he fastened up the windows and latched them +securely; next, taking a handful of the flowers, he rubbed them all over +the sashes, as though to ensure that every whiff of air that might get +in would be laden with the garlic smell. Then with the wisp he rubbed +all over the jamb of the door, above, below, and at each side, and round +the fireplace in the same way. It all seemed grotesque to me, and +presently I said:-- + +“Well, Professor, I know you always have a reason for what you do, but +this certainly puzzles me. It is well we have no sceptic here, or he +would say that you were working some spell to keep out an evil spirit.” + +“Perhaps I am!” he answered quietly as he began to make the wreath which +Lucy was to wear round her neck. + +We then waited whilst Lucy made her toilet for the night, and when she +was in bed he came and himself fixed the wreath of garlic round her +neck. The last words he said to her were:-- + +“Take care you do not disturb it; and even if the room feel close, do +not to-night open the window or the door.” + +“I promise,” said Lucy, “and thank you both a thousand times for all +your kindness to me! Oh, what have I done to be blessed with such +friends?” + +As we left the house in my fly, which was waiting, Van Helsing said:-- + +“To-night I can sleep in peace, and sleep I want--two nights of travel, +much reading in the day between, and much anxiety on the day to follow, +and a night to sit up, without to wink. To-morrow in the morning early +you call for me, and we come together to see our pretty miss, so much +more strong for my ‘spell’ which I have work. Ho! ho!” + +He seemed so confident that I, remembering my own confidence two nights +before and with the baneful result, felt awe and vague terror. It must +have been my weakness that made me hesitate to tell it to my friend, but +I felt it all the more, like unshed tears. + + + + +CHAPTER XI + +_Lucy Westenra’s Diary._ + + +_12 September._--How good they all are to me. I quite love that dear Dr. +Van Helsing. I wonder why he was so anxious about these flowers. He +positively frightened me, he was so fierce. And yet he must have been +right, for I feel comfort from them already. Somehow, I do not dread +being alone to-night, and I can go to sleep without fear. I shall not +mind any flapping outside the window. Oh, the terrible struggle that I +have had against sleep so often of late; the pain of the sleeplessness, +or the pain of the fear of sleep, with such unknown horrors as it has +for me! How blessed are some people, whose lives have no fears, no +dreads; to whom sleep is a blessing that comes nightly, and brings +nothing but sweet dreams. Well, here I am to-night, hoping for sleep, +and lying like Ophelia in the play, with “virgin crants and maiden +strewments.” I never liked garlic before, but to-night it is delightful! +There is peace in its smell; I feel sleep coming already. Good-night, +everybody. + + +_Dr. Seward’s Diary._ + +_13 September._--Called at the Berkeley and found Van Helsing, as usual, +up to time. The carriage ordered from the hotel was waiting. The +Professor took his bag, which he always brings with him now. + +Let all be put down exactly. Van Helsing and I arrived at Hillingham at +eight o’clock. It was a lovely morning; the bright sunshine and all the +fresh feeling of early autumn seemed like the completion of nature’s +annual work. The leaves were turning to all kinds of beautiful colours, +but had not yet begun to drop from the trees. When we entered we met +Mrs. Westenra coming out of the morning room. She is always an early +riser. She greeted us warmly and said:-- + +“You will be glad to know that Lucy is better. The dear child is still +asleep. I looked into her room and saw her, but did not go in, lest I +should disturb her.” The Professor smiled, and looked quite jubilant. He +rubbed his hands together, and said:-- + +“Aha! I thought I had diagnosed the case. My treatment is working,” to +which she answered:-- + +“You must not take all the credit to yourself, doctor. Lucy’s state this +morning is due in part to me.” + +“How you do mean, ma’am?” asked the Professor. + +“Well, I was anxious about the dear child in the night, and went into +her room. She was sleeping soundly--so soundly that even my coming did +not wake her. But the room was awfully stuffy. There were a lot of those +horrible, strong-smelling flowers about everywhere, and she had actually +a bunch of them round her neck. I feared that the heavy odour would be +too much for the dear child in her weak state, so I took them all away +and opened a bit of the window to let in a little fresh air. You will be +pleased with her, I am sure.” + +She moved off into her boudoir, where she usually breakfasted early. As +she had spoken, I watched the Professor’s face, and saw it turn ashen +grey. He had been able to retain his self-command whilst the poor lady +was present, for he knew her state and how mischievous a shock would be; +he actually smiled on her as he held open the door for her to pass into +her room. But the instant she had disappeared he pulled me, suddenly and +forcibly, into the dining-room and closed the door. + +Then, for the first time in my life, I saw Van Helsing break down. He +raised his hands over his head in a sort of mute despair, and then beat +his palms together in a helpless way; finally he sat down on a chair, +and putting his hands before his face, began to sob, with loud, dry sobs +that seemed to come from the very racking of his heart. Then he raised +his arms again, as though appealing to the whole universe. “God! God! +God!” he said. “What have we done, what has this poor thing done, that +we are so sore beset? Is there fate amongst us still, sent down from the +pagan world of old, that such things must be, and in such way? This poor +mother, all unknowing, and all for the best as she think, does such +thing as lose her daughter body and soul; and we must not tell her, we +must not even warn her, or she die, and then both die. Oh, how we are +beset! How are all the powers of the devils against us!” Suddenly he +jumped to his feet. “Come,” he said, “come, we must see and act. Devils +or no devils, or all the devils at once, it matters not; we fight him +all the same.” He went to the hall-door for his bag; and together we +went up to Lucy’s room. + +Once again I drew up the blind, whilst Van Helsing went towards the bed. +This time he did not start as he looked on the poor face with the same +awful, waxen pallor as before. He wore a look of stern sadness and +infinite pity. + +“As I expected,” he murmured, with that hissing inspiration of his which +meant so much. Without a word he went and locked the door, and then +began to set out on the little table the instruments for yet another +operation of transfusion of blood. I had long ago recognised the +necessity, and begun to take off my coat, but he stopped me with a +warning hand. “No!” he said. “To-day you must operate. I shall provide. +You are weakened already.” As he spoke he took off his coat and rolled +up his shirt-sleeve. + +Again the operation; again the narcotic; again some return of colour to +the ashy cheeks, and the regular breathing of healthy sleep. This time I +watched whilst Van Helsing recruited himself and rested. + +Presently he took an opportunity of telling Mrs. Westenra that she must +not remove anything from Lucy’s room without consulting him; that the +flowers were of medicinal value, and that the breathing of their odour +was a part of the system of cure. Then he took over the care of the case +himself, saying that he would watch this night and the next and would +send me word when to come. + +After another hour Lucy waked from her sleep, fresh and bright and +seemingly not much the worse for her terrible ordeal. + +What does it all mean? I am beginning to wonder if my long habit of life +amongst the insane is beginning to tell upon my own brain. + + +_Lucy Westenra’s Diary._ + +_17 September._--Four days and nights of peace. I am getting so strong +again that I hardly know myself. It is as if I had passed through some +long nightmare, and had just awakened to see the beautiful sunshine and +feel the fresh air of the morning around me. I have a dim +half-remembrance of long, anxious times of waiting and fearing; darkness +in which there was not even the pain of hope to make present distress +more poignant: and then long spells of oblivion, and the rising back to +life as a diver coming up through a great press of water. Since, +however, Dr. Van Helsing has been with me, all this bad dreaming seems +to have passed away; the noises that used to frighten me out of my +wits--the flapping against the windows, the distant voices which seemed +so close to me, the harsh sounds that came from I know not where and +commanded me to do I know not what--have all ceased. I go to bed now +without any fear of sleep. I do not even try to keep awake. I have grown +quite fond of the garlic, and a boxful arrives for me every day from +Haarlem. To-night Dr. Van Helsing is going away, as he has to be for a +day in Amsterdam. But I need not be watched; I am well enough to be left +alone. Thank God for mother’s sake, and dear Arthur’s, and for all our +friends who have been so kind! I shall not even feel the change, for +last night Dr. Van Helsing slept in his chair a lot of the time. I found +him asleep twice when I awoke; but I did not fear to go to sleep again, +although the boughs or bats or something napped almost angrily against +the window-panes. + + +_“The Pall Mall Gazette,” 18 September._ + + THE ESCAPED WOLF. + + PERILOUS ADVENTURE OF OUR INTERVIEWER. + + _Interview with the Keeper in the Zoölogical Gardens._ + +After many inquiries and almost as many refusals, and perpetually using +the words “Pall Mall Gazette” as a sort of talisman, I managed to find +the keeper of the section of the Zoölogical Gardens in which the wolf +department is included. Thomas Bilder lives in one of the cottages in +the enclosure behind the elephant-house, and was just sitting down to +his tea when I found him. Thomas and his wife are hospitable folk, +elderly, and without children, and if the specimen I enjoyed of their +hospitality be of the average kind, their lives must be pretty +comfortable. The keeper would not enter on what he called “business” +until the supper was over, and we were all satisfied. Then when the +table was cleared, and he had lit his pipe, he said:-- + +“Now, sir, you can go on and arsk me what you want. You’ll excoose me +refoosin’ to talk of perfeshunal subjects afore meals. I gives the +wolves and the jackals and the hyenas in all our section their tea afore +I begins to arsk them questions.” + +“How do you mean, ask them questions?” I queried, wishful to get him +into a talkative humour. + +“’Ittin’ of them over the ’ead with a pole is one way; scratchin’ of +their hears is another, when gents as is flush wants a bit of a show-orf +to their gals. I don’t so much mind the fust--the ’ittin’ with a pole +afore I chucks in their dinner; but I waits till they’ve ’ad their +sherry and kawffee, so to speak, afore I tries on with the +ear-scratchin’. Mind you,” he added philosophically, “there’s a deal of +the same nature in us as in them theer animiles. Here’s you a-comin’ and +arskin’ of me questions about my business, and I that grumpy-like that +only for your bloomin’ ’arf-quid I’d ’a’ seen you blowed fust ’fore I’d +answer. Not even when you arsked me sarcastic-like if I’d like you to +arsk the Superintendent if you might arsk me questions. Without offence +did I tell yer to go to ’ell?” + +“You did.” + +“An’ when you said you’d report me for usin’ of obscene language that +was ’ittin’ me over the ’ead; but the ’arf-quid made that all right. I +weren’t a-goin’ to fight, so I waited for the food, and did with my ’owl +as the wolves, and lions, and tigers does. But, Lor’ love yer ’art, now +that the old ’ooman has stuck a chunk of her tea-cake in me, an’ rinsed +me out with her bloomin’ old teapot, and I’ve lit hup, you may scratch +my ears for all you’re worth, and won’t git even a growl out of me. +Drive along with your questions. I know what yer a-comin’ at, that ’ere +escaped wolf.” + +“Exactly. I want you to give me your view of it. Just tell me how it +happened; and when I know the facts I’ll get you to say what you +consider was the cause of it, and how you think the whole affair will +end.” + +“All right, guv’nor. This ’ere is about the ’ole story. That ’ere wolf +what we called Bersicker was one of three grey ones that came from +Norway to Jamrach’s, which we bought off him four years ago. He was a +nice well-behaved wolf, that never gave no trouble to talk of. I’m more +surprised at ’im for wantin’ to get out nor any other animile in the +place. But, there, you can’t trust wolves no more nor women.” + +“Don’t you mind him, sir!” broke in Mrs. Tom, with a cheery laugh. “’E’s +got mindin’ the animiles so long that blest if he ain’t like a old wolf +’isself! But there ain’t no ’arm in ’im.” + +“Well, sir, it was about two hours after feedin’ yesterday when I first +hear my disturbance. I was makin’ up a litter in the monkey-house for a +young puma which is ill; but when I heard the yelpin’ and ’owlin’ I kem +away straight. There was Bersicker a-tearin’ like a mad thing at the +bars as if he wanted to get out. There wasn’t much people about that +day, and close at hand was only one man, a tall, thin chap, with a ’ook +nose and a pointed beard, with a few white hairs runnin’ through it. He +had a ’ard, cold look and red eyes, and I took a sort of mislike to him, +for it seemed as if it was ’im as they was hirritated at. He ’ad white +kid gloves on ’is ’ands, and he pointed out the animiles to me and says: +‘Keeper, these wolves seem upset at something.’ + +“‘Maybe it’s you,’ says I, for I did not like the airs as he give +’isself. He didn’t git angry, as I ’oped he would, but he smiled a kind +of insolent smile, with a mouth full of white, sharp teeth. ‘Oh no, they +wouldn’t like me,’ ’e says. + +“‘Ow yes, they would,’ says I, a-imitatin’ of him. ‘They always likes a +bone or two to clean their teeth on about tea-time, which you ’as a +bagful.’ + +“Well, it was a odd thing, but when the animiles see us a-talkin’ they +lay down, and when I went over to Bersicker he let me stroke his ears +same as ever. That there man kem over, and blessed but if he didn’t put +in his hand and stroke the old wolf’s ears too! + +“‘Tyke care,’ says I. ‘Bersicker is quick.’ + +“‘Never mind,’ he says. ‘I’m used to ’em!’ + +“‘Are you in the business yourself?’ I says, tyking off my ’at, for a +man what trades in wolves, anceterer, is a good friend to keepers. + +“‘No,’ says he, ‘not exactly in the business, but I ’ave made pets of +several.’ And with that he lifts his ’at as perlite as a lord, and walks +away. Old Bersicker kep’ a-lookin’ arter ’im till ’e was out of sight, +and then went and lay down in a corner and wouldn’t come hout the ’ole +hevening. Well, larst night, so soon as the moon was hup, the wolves +here all began a-’owling. There warn’t nothing for them to ’owl at. +There warn’t no one near, except some one that was evidently a-callin’ a +dog somewheres out back of the gardings in the Park road. Once or twice +I went out to see that all was right, and it was, and then the ’owling +stopped. Just before twelve o’clock I just took a look round afore +turnin’ in, an’, bust me, but when I kem opposite to old Bersicker’s +cage I see the rails broken and twisted about and the cage empty. And +that’s all I know for certing.” + +“Did any one else see anything?” + +“One of our gard’ners was a-comin’ ’ome about that time from a ’armony, +when he sees a big grey dog comin’ out through the garding ’edges. At +least, so he says, but I don’t give much for it myself, for if he did ’e +never said a word about it to his missis when ’e got ’ome, and it was +only after the escape of the wolf was made known, and we had been up all +night-a-huntin’ of the Park for Bersicker, that he remembered seein’ +anything. My own belief was that the ’armony ’ad got into his ’ead.” + +“Now, Mr. Bilder, can you account in any way for the escape of the +wolf?” + +“Well, sir,” he said, with a suspicious sort of modesty, “I think I can; +but I don’t know as ’ow you’d be satisfied with the theory.” + +“Certainly I shall. If a man like you, who knows the animals from +experience, can’t hazard a good guess at any rate, who is even to try?” + +“Well then, sir, I accounts for it this way; it seems to me that ’ere +wolf escaped--simply because he wanted to get out.” + +From the hearty way that both Thomas and his wife laughed at the joke I +could see that it had done service before, and that the whole +explanation was simply an elaborate sell. I couldn’t cope in badinage +with the worthy Thomas, but I thought I knew a surer way to his heart, +so I said:-- + +“Now, Mr. Bilder, we’ll consider that first half-sovereign worked off, +and this brother of his is waiting to be claimed when you’ve told me +what you think will happen.” + +“Right y’are, sir,” he said briskly. “Ye’ll excoose me, I know, for +a-chaffin’ of ye, but the old woman here winked at me, which was as much +as telling me to go on.” + +“Well, I never!” said the old lady. + +“My opinion is this: that ’ere wolf is a-’idin’ of, somewheres. The +gard’ner wot didn’t remember said he was a-gallopin’ northward faster +than a horse could go; but I don’t believe him, for, yer see, sir, +wolves don’t gallop no more nor dogs does, they not bein’ built that +way. Wolves is fine things in a storybook, and I dessay when they gets +in packs and does be chivyin’ somethin’ that’s more afeared than they is +they can make a devil of a noise and chop it up, whatever it is. But, +Lor’ bless you, in real life a wolf is only a low creature, not half so +clever or bold as a good dog; and not half a quarter so much fight in +’im. This one ain’t been used to fightin’ or even to providin’ for +hisself, and more like he’s somewhere round the Park a-’idin’ an’ +a-shiverin’ of, and, if he thinks at all, wonderin’ where he is to get +his breakfast from; or maybe he’s got down some area and is in a +coal-cellar. My eye, won’t some cook get a rum start when she sees his +green eyes a-shining at her out of the dark! If he can’t get food he’s +bound to look for it, and mayhap he may chance to light on a butcher’s +shop in time. If he doesn’t, and some nursemaid goes a-walkin’ orf with +a soldier, leavin’ of the hinfant in the perambulator--well, then I +shouldn’t be surprised if the census is one babby the less. That’s +all.” + +I was handing him the half-sovereign, when something came bobbing up +against the window, and Mr. Bilder’s face doubled its natural length +with surprise. + +“God bless me!” he said. “If there ain’t old Bersicker come back by +’isself!” + +He went to the door and opened it; a most unnecessary proceeding it +seemed to me. I have always thought that a wild animal never looks so +well as when some obstacle of pronounced durability is between us; a +personal experience has intensified rather than diminished that idea. + +After all, however, there is nothing like custom, for neither Bilder nor +his wife thought any more of the wolf than I should of a dog. The animal +itself was as peaceful and well-behaved as that father of all +picture-wolves--Red Riding Hood’s quondam friend, whilst moving her +confidence in masquerade. + +The whole scene was an unutterable mixture of comedy and pathos. The +wicked wolf that for half a day had paralysed London and set all the +children in the town shivering in their shoes, was there in a sort of +penitent mood, and was received and petted like a sort of vulpine +prodigal son. Old Bilder examined him all over with most tender +solicitude, and when he had finished with his penitent said:-- + +“There, I knew the poor old chap would get into some kind of trouble; +didn’t I say it all along? Here’s his head all cut and full of broken +glass. ’E’s been a-gettin’ over some bloomin’ wall or other. It’s a +shyme that people are allowed to top their walls with broken bottles. +This ’ere’s what comes of it. Come along, Bersicker.” + +He took the wolf and locked him up in a cage, with a piece of meat that +satisfied, in quantity at any rate, the elementary conditions of the +fatted calf, and went off to report. + +I came off, too, to report the only exclusive information that is given +to-day regarding the strange escapade at the Zoo. + + +_Dr. Seward’s Diary._ + +_17 September._--I was engaged after dinner in my study posting up my +books, which, through press of other work and the many visits to Lucy, +had fallen sadly into arrear. Suddenly the door was burst open, and in +rushed my patient, with his face distorted with passion. I was +thunderstruck, for such a thing as a patient getting of his own accord +into the Superintendent’s study is almost unknown. Without an instant’s +pause he made straight at me. He had a dinner-knife in his hand, and, +as I saw he was dangerous, I tried to keep the table between us. He was +too quick and too strong for me, however; for before I could get my +balance he had struck at me and cut my left wrist rather severely. +Before he could strike again, however, I got in my right and he was +sprawling on his back on the floor. My wrist bled freely, and quite a +little pool trickled on to the carpet. I saw that my friend was not +intent on further effort, and occupied myself binding up my wrist, +keeping a wary eye on the prostrate figure all the time. When the +attendants rushed in, and we turned our attention to him, his employment +positively sickened me. He was lying on his belly on the floor licking +up, like a dog, the blood which had fallen from my wounded wrist. He was +easily secured, and, to my surprise, went with the attendants quite +placidly, simply repeating over and over again: “The blood is the life! +The blood is the life!” + +I cannot afford to lose blood just at present; I have lost too much of +late for my physical good, and then the prolonged strain of Lucy’s +illness and its horrible phases is telling on me. I am over-excited and +weary, and I need rest, rest, rest. Happily Van Helsing has not summoned +me, so I need not forego my sleep; to-night I could not well do without +it. + + +_Telegram, Van Helsing, Antwerp, to Seward, Carfax._ + +(Sent to Carfax, Sussex, as no county given; delivered late by +twenty-two hours.) + +“_17 September._--Do not fail to be at Hillingham to-night. If not +watching all the time frequently, visit and see that flowers are as +placed; very important; do not fail. Shall be with you as soon as +possible after arrival.” + + +_Dr. Seward’s Diary._ + +_18 September._--Just off for train to London. The arrival of Van +Helsing’s telegram filled me with dismay. A whole night lost, and I know +by bitter experience what may happen in a night. Of course it is +possible that all may be well, but what _may_ have happened? Surely +there is some horrible doom hanging over us that every possible accident +should thwart us in all we try to do. I shall take this cylinder with +me, and then I can complete my entry on Lucy’s phonograph. + + +_Memorandum left by Lucy Westenra._ + +_17 September. Night._--I write this and leave it to be seen, so that no +one may by any chance get into trouble through me. This is an exact +record of what took place to-night. I feel I am dying of weakness, and +have barely strength to write, but it must be done if I die in the +doing. + +I went to bed as usual, taking care that the flowers were placed as Dr. +Van Helsing directed, and soon fell asleep. + +I was waked by the flapping at the window, which had begun after that +sleep-walking on the cliff at Whitby when Mina saved me, and which now I +know so well. I was not afraid, but I did wish that Dr. Seward was in +the next room--as Dr. Van Helsing said he would be--so that I might have +called him. I tried to go to sleep, but could not. Then there came to me +the old fear of sleep, and I determined to keep awake. Perversely sleep +would try to come then when I did not want it; so, as I feared to be +alone, I opened my door and called out: “Is there anybody there?” There +was no answer. I was afraid to wake mother, and so closed my door again. +Then outside in the shrubbery I heard a sort of howl like a dog’s, but +more fierce and deeper. I went to the window and looked out, but could +see nothing, except a big bat, which had evidently been buffeting its +wings against the window. So I went back to bed again, but determined +not to go to sleep. Presently the door opened, and mother looked in; +seeing by my moving that I was not asleep, came in, and sat by me. She +said to me even more sweetly and softly than her wont:-- + +“I was uneasy about you, darling, and came in to see that you were all +right.” + +I feared she might catch cold sitting there, and asked her to come in +and sleep with me, so she came into bed, and lay down beside me; she did +not take off her dressing gown, for she said she would only stay a while +and then go back to her own bed. As she lay there in my arms, and I in +hers, the flapping and buffeting came to the window again. She was +startled and a little frightened, and cried out: “What is that?” I tried +to pacify her, and at last succeeded, and she lay quiet; but I could +hear her poor dear heart still beating terribly. After a while there was +the low howl again out in the shrubbery, and shortly after there was a +crash at the window, and a lot of broken glass was hurled on the floor. +The window blind blew back with the wind that rushed in, and in the +aperture of the broken panes there was the head of a great, gaunt grey +wolf. Mother cried out in a fright, and struggled up into a sitting +posture, and clutched wildly at anything that would help her. Amongst +other things, she clutched the wreath of flowers that Dr. Van Helsing +insisted on my wearing round my neck, and tore it away from me. For a +second or two she sat up, pointing at the wolf, and there was a strange +and horrible gurgling in her throat; then she fell over--as if struck +with lightning, and her head hit my forehead and made me dizzy for a +moment or two. The room and all round seemed to spin round. I kept my +eyes fixed on the window, but the wolf drew his head back, and a whole +myriad of little specks seemed to come blowing in through the broken +window, and wheeling and circling round like the pillar of dust that +travellers describe when there is a simoon in the desert. I tried to +stir, but there was some spell upon me, and dear mother’s poor body, +which seemed to grow cold already--for her dear heart had ceased to +beat--weighed me down; and I remembered no more for a while. + +The time did not seem long, but very, very awful, till I recovered +consciousness again. Somewhere near, a passing bell was tolling; the +dogs all round the neighbourhood were howling; and in our shrubbery, +seemingly just outside, a nightingale was singing. I was dazed and +stupid with pain and terror and weakness, but the sound of the +nightingale seemed like the voice of my dead mother come back to comfort +me. The sounds seemed to have awakened the maids, too, for I could hear +their bare feet pattering outside my door. I called to them, and they +came in, and when they saw what had happened, and what it was that lay +over me on the bed, they screamed out. The wind rushed in through the +broken window, and the door slammed to. They lifted off the body of my +dear mother, and laid her, covered up with a sheet, on the bed after I +had got up. They were all so frightened and nervous that I directed them +to go to the dining-room and have each a glass of wine. The door flew +open for an instant and closed again. The maids shrieked, and then went +in a body to the dining-room; and I laid what flowers I had on my dear +mother’s breast. When they were there I remembered what Dr. Van Helsing +had told me, but I didn’t like to remove them, and, besides, I would +have some of the servants to sit up with me now. I was surprised that +the maids did not come back. I called them, but got no answer, so I went +to the dining-room to look for them. + +My heart sank when I saw what had happened. They all four lay helpless +on the floor, breathing heavily. The decanter of sherry was on the table +half full, but there was a queer, acrid smell about. I was suspicious, +and examined the decanter. It smelt of laudanum, and looking on the +sideboard, I found that the bottle which mother’s doctor uses for +her--oh! did use--was empty. What am I to do? what am I to do? I am back +in the room with mother. I cannot leave her, and I am alone, save for +the sleeping servants, whom some one has drugged. Alone with the dead! I +dare not go out, for I can hear the low howl of the wolf through the +broken window. + +The air seems full of specks, floating and circling in the draught from +the window, and the lights burn blue and dim. What am I to do? God +shield me from harm this night! I shall hide this paper in my breast, +where they shall find it when they come to lay me out. My dear mother +gone! It is time that I go too. Good-bye, dear Arthur, if I should not +survive this night. God keep you, dear, and God help me! + + + + +CHAPTER XII + +DR. SEWARD’S DIARY + + +_18 September._--I drove at once to Hillingham and arrived early. +Keeping my cab at the gate, I went up the avenue alone. I knocked gently +and rang as quietly as possible, for I feared to disturb Lucy or her +mother, and hoped to only bring a servant to the door. After a while, +finding no response, I knocked and rang again; still no answer. I cursed +the laziness of the servants that they should lie abed at such an +hour--for it was now ten o’clock--and so rang and knocked again, but +more impatiently, but still without response. Hitherto I had blamed only +the servants, but now a terrible fear began to assail me. Was this +desolation but another link in the chain of doom which seemed drawing +tight around us? Was it indeed a house of death to which I had come, too +late? I knew that minutes, even seconds of delay, might mean hours of +danger to Lucy, if she had had again one of those frightful relapses; +and I went round the house to try if I could find by chance an entry +anywhere. + +I could find no means of ingress. Every window and door was fastened and +locked, and I returned baffled to the porch. As I did so, I heard the +rapid pit-pat of a swiftly driven horse’s feet. They stopped at the +gate, and a few seconds later I met Van Helsing running up the avenue. +When he saw me, he gasped out:-- + +“Then it was you, and just arrived. How is she? Are we too late? Did you +not get my telegram?” + +I answered as quickly and coherently as I could that I had only got his +telegram early in the morning, and had not lost a minute in coming here, +and that I could not make any one in the house hear me. He paused and +raised his hat as he said solemnly:-- + +“Then I fear we are too late. God’s will be done!” With his usual +recuperative energy, he went on: “Come. If there be no way open to get +in, we must make one. Time is all in all to us now.” + +We went round to the back of the house, where there was a kitchen +window. The Professor took a small surgical saw from his case, and +handing it to me, pointed to the iron bars which guarded the window. I +attacked them at once and had very soon cut through three of them. Then +with a long, thin knife we pushed back the fastening of the sashes and +opened the window. I helped the Professor in, and followed him. There +was no one in the kitchen or in the servants’ rooms, which were close at +hand. We tried all the rooms as we went along, and in the dining-room, +dimly lit by rays of light through the shutters, found four +servant-women lying on the floor. There was no need to think them dead, +for their stertorous breathing and the acrid smell of laudanum in the +room left no doubt as to their condition. Van Helsing and I looked at +each other, and as we moved away he said: “We can attend to them later.” +Then we ascended to Lucy’s room. For an instant or two we paused at the +door to listen, but there was no sound that we could hear. With white +faces and trembling hands, we opened the door gently, and entered the +room. + +How shall I describe what we saw? On the bed lay two women, Lucy and her +mother. The latter lay farthest in, and she was covered with a white +sheet, the edge of which had been blown back by the draught through the +broken window, showing the drawn, white face, with a look of terror +fixed upon it. By her side lay Lucy, with face white and still more +drawn. The flowers which had been round her neck we found upon her +mother’s bosom, and her throat was bare, showing the two little wounds +which we had noticed before, but looking horribly white and mangled. +Without a word the Professor bent over the bed, his head almost touching +poor Lucy’s breast; then he gave a quick turn of his head, as of one who +listens, and leaping to his feet, he cried out to me:-- + +“It is not yet too late! Quick! quick! Bring the brandy!” + +I flew downstairs and returned with it, taking care to smell and taste +it, lest it, too, were drugged like the decanter of sherry which I found +on the table. The maids were still breathing, but more restlessly, and I +fancied that the narcotic was wearing off. I did not stay to make sure, +but returned to Van Helsing. He rubbed the brandy, as on another +occasion, on her lips and gums and on her wrists and the palms of her +hands. He said to me:-- + +“I can do this, all that can be at the present. You go wake those maids. +Flick them in the face with a wet towel, and flick them hard. Make them +get heat and fire and a warm bath. This poor soul is nearly as cold as +that beside her. She will need be heated before we can do anything +more.” + +I went at once, and found little difficulty in waking three of the +women. The fourth was only a young girl, and the drug had evidently +affected her more strongly, so I lifted her on the sofa and let her +sleep. The others were dazed at first, but as remembrance came back to +them they cried and sobbed in a hysterical manner. I was stern with +them, however, and would not let them talk. I told them that one life +was bad enough to lose, and that if they delayed they would sacrifice +Miss Lucy. So, sobbing and crying, they went about their way, half clad +as they were, and prepared fire and water. Fortunately, the kitchen and +boiler fires were still alive, and there was no lack of hot water. We +got a bath and carried Lucy out as she was and placed her in it. Whilst +we were busy chafing her limbs there was a knock at the hall door. One +of the maids ran off, hurried on some more clothes, and opened it. Then +she returned and whispered to us that there was a gentleman who had come +with a message from Mr. Holmwood. I bade her simply tell him that he +must wait, for we could see no one now. She went away with the message, +and, engrossed with our work, I clean forgot all about him. + +I never saw in all my experience the Professor work in such deadly +earnest. I knew--as he knew--that it was a stand-up fight with death, +and in a pause told him so. He answered me in a way that I did not +understand, but with the sternest look that his face could wear:-- + +“If that were all, I would stop here where we are now, and let her fade +away into peace, for I see no light in life over her horizon.” He went +on with his work with, if possible, renewed and more frenzied vigour. + +Presently we both began to be conscious that the heat was beginning to +be of some effect. Lucy’s heart beat a trifle more audibly to the +stethoscope, and her lungs had a perceptible movement. Van Helsing’s +face almost beamed, and as we lifted her from the bath and rolled her in +a hot sheet to dry her he said to me:-- + +“The first gain is ours! Check to the King!” + +We took Lucy into another room, which had by now been prepared, and laid +her in bed and forced a few drops of brandy down her throat. I noticed +that Van Helsing tied a soft silk handkerchief round her throat. She was +still unconscious, and was quite as bad as, if not worse than, we had +ever seen her. + +Van Helsing called in one of the women, and told her to stay with her +and not to take her eyes off her till we returned, and then beckoned me +out of the room. + +“We must consult as to what is to be done,” he said as we descended the +stairs. In the hall he opened the dining-room door, and we passed in, he +closing the door carefully behind him. The shutters had been opened, but +the blinds were already down, with that obedience to the etiquette of +death which the British woman of the lower classes always rigidly +observes. The room was, therefore, dimly dark. It was, however, light +enough for our purposes. Van Helsing’s sternness was somewhat relieved +by a look of perplexity. He was evidently torturing his mind about +something, so I waited for an instant, and he spoke:-- + +“What are we to do now? Where are we to turn for help? We must have +another transfusion of blood, and that soon, or that poor girl’s life +won’t be worth an hour’s purchase. You are exhausted already; I am +exhausted too. I fear to trust those women, even if they would have +courage to submit. What are we to do for some one who will open his +veins for her?” + +“What’s the matter with me, anyhow?” + +The voice came from the sofa across the room, and its tones brought +relief and joy to my heart, for they were those of Quincey Morris. Van +Helsing started angrily at the first sound, but his face softened and a +glad look came into his eyes as I cried out: “Quincey Morris!” and +rushed towards him with outstretched hands. + +“What brought you here?” I cried as our hands met. + +“I guess Art is the cause.” + +He handed me a telegram:-- + +“Have not heard from Seward for three days, and am terribly anxious. +Cannot leave. Father still in same condition. Send me word how Lucy is. +Do not delay.--HOLMWOOD.” + +“I think I came just in the nick of time. You know you have only to tell +me what to do.” + +Van Helsing strode forward, and took his hand, looking him straight in +the eyes as he said:-- + +“A brave man’s blood is the best thing on this earth when a woman is in +trouble. You’re a man and no mistake. Well, the devil may work against +us for all he’s worth, but God sends us men when we want them.” + +Once again we went through that ghastly operation. I have not the heart +to go through with the details. Lucy had got a terrible shock and it +told on her more than before, for though plenty of blood went into her +veins, her body did not respond to the treatment as well as on the other +occasions. Her struggle back into life was something frightful to see +and hear. However, the action of both heart and lungs improved, and Van +Helsing made a subcutaneous injection of morphia, as before, and with +good effect. Her faint became a profound slumber. The Professor watched +whilst I went downstairs with Quincey Morris, and sent one of the maids +to pay off one of the cabmen who were waiting. I left Quincey lying down +after having a glass of wine, and told the cook to get ready a good +breakfast. Then a thought struck me, and I went back to the room where +Lucy now was. When I came softly in, I found Van Helsing with a sheet or +two of note-paper in his hand. He had evidently read it, and was +thinking it over as he sat with his hand to his brow. There was a look +of grim satisfaction in his face, as of one who has had a doubt solved. +He handed me the paper saying only: “It dropped from Lucy’s breast when +we carried her to the bath.” + +When I had read it, I stood looking at the Professor, and after a pause +asked him: “In God’s name, what does it all mean? Was she, or is she, +mad; or what sort of horrible danger is it?” I was so bewildered that I +did not know what to say more. Van Helsing put out his hand and took the +paper, saying:-- + +“Do not trouble about it now. Forget it for the present. You shall know +and understand it all in good time; but it will be later. And now what +is it that you came to me to say?” This brought me back to fact, and I +was all myself again. + +“I came to speak about the certificate of death. If we do not act +properly and wisely, there may be an inquest, and that paper would have +to be produced. I am in hopes that we need have no inquest, for if we +had it would surely kill poor Lucy, if nothing else did. I know, and you +know, and the other doctor who attended her knows, that Mrs. Westenra +had disease of the heart, and we can certify that she died of it. Let us +fill up the certificate at once, and I shall take it myself to the +registrar and go on to the undertaker.” + +“Good, oh my friend John! Well thought of! Truly Miss Lucy, if she be +sad in the foes that beset her, is at least happy in the friends that +love her. One, two, three, all open their veins for her, besides one old +man. Ah yes, I know, friend John; I am not blind! I love you all the +more for it! Now go.” + +In the hall I met Quincey Morris, with a telegram for Arthur telling him +that Mrs. Westenra was dead; that Lucy also had been ill, but was now +going on better; and that Van Helsing and I were with her. I told him +where I was going, and he hurried me out, but as I was going said:-- + +“When you come back, Jack, may I have two words with you all to +ourselves?” I nodded in reply and went out. I found no difficulty about +the registration, and arranged with the local undertaker to come up in +the evening to measure for the coffin and to make arrangements. + +When I got back Quincey was waiting for me. I told him I would see him +as soon as I knew about Lucy, and went up to her room. She was still +sleeping, and the Professor seemingly had not moved from his seat at her +side. From his putting his finger to his lips, I gathered that he +expected her to wake before long and was afraid of forestalling nature. +So I went down to Quincey and took him into the breakfast-room, where +the blinds were not drawn down, and which was a little more cheerful, or +rather less cheerless, than the other rooms. When we were alone, he said +to me:-- + +“Jack Seward, I don’t want to shove myself in anywhere where I’ve no +right to be; but this is no ordinary case. You know I loved that girl +and wanted to marry her; but, although that’s all past and gone, I can’t +help feeling anxious about her all the same. What is it that’s wrong +with her? The Dutchman--and a fine old fellow he is; I can see +that--said, that time you two came into the room, that you must have +_another_ transfusion of blood, and that both you and he were exhausted. +Now I know well that you medical men speak _in camera_, and that a man +must not expect to know what they consult about in private. But this is +no common matter, and, whatever it is, I have done my part. Is not that +so?” + +“That’s so,” I said, and he went on:-- + +“I take it that both you and Van Helsing had done already what I did +to-day. Is not that so?” + +“That’s so.” + +“And I guess Art was in it too. When I saw him four days ago down at his +own place he looked queer. I have not seen anything pulled down so quick +since I was on the Pampas and had a mare that I was fond of go to grass +all in a night. One of those big bats that they call vampires had got at +her in the night, and what with his gorge and the vein left open, there +wasn’t enough blood in her to let her stand up, and I had to put a +bullet through her as she lay. Jack, if you may tell me without +betraying confidence, Arthur was the first, is not that so?” As he spoke +the poor fellow looked terribly anxious. He was in a torture of suspense +regarding the woman he loved, and his utter ignorance of the terrible +mystery which seemed to surround her intensified his pain. His very +heart was bleeding, and it took all the manhood of him--and there was a +royal lot of it, too--to keep him from breaking down. I paused before +answering, for I felt that I must not betray anything which the +Professor wished kept secret; but already he knew so much, and guessed +so much, that there could be no reason for not answering, so I answered +in the same phrase: “That’s so.” + +“And how long has this been going on?” + +“About ten days.” + +“Ten days! Then I guess, Jack Seward, that that poor pretty creature +that we all love has had put into her veins within that time the blood +of four strong men. Man alive, her whole body wouldn’t hold it.” Then, +coming close to me, he spoke in a fierce half-whisper: “What took it +out?” + +I shook my head. “That,” I said, “is the crux. Van Helsing is simply +frantic about it, and I am at my wits’ end. I can’t even hazard a guess. +There has been a series of little circumstances which have thrown out +all our calculations as to Lucy being properly watched. But these shall +not occur again. Here we stay until all be well--or ill.” Quincey held +out his hand. “Count me in,” he said. “You and the Dutchman will tell me +what to do, and I’ll do it.” + +When she woke late in the afternoon, Lucy’s first movement was to feel +in her breast, and, to my surprise, produced the paper which Van Helsing +had given me to read. The careful Professor had replaced it where it had +come from, lest on waking she should be alarmed. Her eye then lit on Van +Helsing and on me too, and gladdened. Then she looked around the room, +and seeing where she was, shuddered; she gave a loud cry, and put her +poor thin hands before her pale face. We both understood what that +meant--that she had realised to the full her mother’s death; so we tried +what we could to comfort her. Doubtless sympathy eased her somewhat, but +she was very low in thought and spirit, and wept silently and weakly for +a long time. We told her that either or both of us would now remain with +her all the time, and that seemed to comfort her. Towards dusk she fell +into a doze. Here a very odd thing occurred. Whilst still asleep she +took the paper from her breast and tore it in two. Van Helsing stepped +over and took the pieces from her. All the same, however, she went on +with the action of tearing, as though the material were still in her +hands; finally she lifted her hands and opened them as though scattering +the fragments. Van Helsing seemed surprised, and his brows gathered as +if in thought, but he said nothing. + + * * * * * + +_19 September._--All last night she slept fitfully, being always afraid +to sleep, and something weaker when she woke from it. The Professor and +I took it in turns to watch, and we never left her for a moment +unattended. Quincey Morris said nothing about his intention, but I knew +that all night long he patrolled round and round the house. + +When the day came, its searching light showed the ravages in poor Lucy’s +strength. She was hardly able to turn her head, and the little +nourishment which she could take seemed to do her no good. At times she +slept, and both Van Helsing and I noticed the difference in her, between +sleeping and waking. Whilst asleep she looked stronger, although more +haggard, and her breathing was softer; her open mouth showed the pale +gums drawn back from the teeth, which thus looked positively longer and +sharper than usual; when she woke the softness of her eyes evidently +changed the expression, for she looked her own self, although a dying +one. In the afternoon she asked for Arthur, and we telegraphed for him. +Quincey went off to meet him at the station. + +When he arrived it was nearly six o’clock, and the sun was setting full +and warm, and the red light streamed in through the window and gave more +colour to the pale cheeks. When he saw her, Arthur was simply choking +with emotion, and none of us could speak. In the hours that had passed, +the fits of sleep, or the comatose condition that passed for it, had +grown more frequent, so that the pauses when conversation was possible +were shortened. Arthur’s presence, however, seemed to act as a +stimulant; she rallied a little, and spoke to him more brightly than she +had done since we arrived. He too pulled himself together, and spoke as +cheerily as he could, so that the best was made of everything. + +It was now nearly one o’clock, and he and Van Helsing are sitting with +her. I am to relieve them in a quarter of an hour, and I am entering +this on Lucy’s phonograph. Until six o’clock they are to try to rest. I +fear that to-morrow will end our watching, for the shock has been too +great; the poor child cannot rally. God help us all. + + +_Letter, Mina Harker to Lucy Westenra._ + +(Unopened by her.) + +“_17 September._ + +“My dearest Lucy,-- + +“It seems _an age_ since I heard from you, or indeed since I wrote. You +will pardon me, I know, for all my faults when you have read all my +budget of news. Well, I got my husband back all right; when we arrived +at Exeter there was a carriage waiting for us, and in it, though he had +an attack of gout, Mr. Hawkins. He took us to his house, where there +were rooms for us all nice and comfortable, and we dined together. After +dinner Mr. Hawkins said:-- + +“‘My dears, I want to drink your health and prosperity; and may every +blessing attend you both. I know you both from children, and have, with +love and pride, seen you grow up. Now I want you to make your home here +with me. I have left to me neither chick nor child; all are gone, and in +my will I have left you everything.’ I cried, Lucy dear, as Jonathan and +the old man clasped hands. Our evening was a very, very happy one. + +“So here we are, installed in this beautiful old house, and from both my +bedroom and the drawing-room I can see the great elms of the cathedral +close, with their great black stems standing out against the old yellow +stone of the cathedral and I can hear the rooks overhead cawing and +cawing and chattering and gossiping all day, after the manner of +rooks--and humans. I am busy, I need not tell you, arranging things and +housekeeping. Jonathan and Mr. Hawkins are busy all day; for, now that +Jonathan is a partner, Mr. Hawkins wants to tell him all about the +clients. + +“How is your dear mother getting on? I wish I could run up to town for a +day or two to see you, dear, but I dare not go yet, with so much on my +shoulders; and Jonathan wants looking after still. He is beginning to +put some flesh on his bones again, but he was terribly weakened by the +long illness; even now he sometimes starts out of his sleep in a sudden +way and awakes all trembling until I can coax him back to his usual +placidity. However, thank God, these occasions grow less frequent as the +days go on, and they will in time pass away altogether, I trust. And now +I have told you my news, let me ask yours. When are you to be married, +and where, and who is to perform the ceremony, and what are you to wear, +and is it to be a public or a private wedding? Tell me all about it, +dear; tell me all about everything, for there is nothing which interests +you which will not be dear to me. Jonathan asks me to send his +‘respectful duty,’ but I do not think that is good enough from the +junior partner of the important firm Hawkins & Harker; and so, as you +love me, and he loves me, and I love you with all the moods and tenses +of the verb, I send you simply his ‘love’ instead. Good-bye, my dearest +Lucy, and all blessings on you. + +“Yours, + +“MINA HARKER.” + + +_Report from Patrick Hennessey, M. D., M. R. C. S. L. K. Q. C. P. I., +etc., etc., to John Seward, M. D._ + +“_20 September._ + +“My dear Sir,-- + +“In accordance with your wishes, I enclose report of the conditions of +everything left in my charge.... With regard to patient, Renfield, there +is more to say. He has had another outbreak, which might have had a +dreadful ending, but which, as it fortunately happened, was unattended +with any unhappy results. This afternoon a carrier’s cart with two men +made a call at the empty house whose grounds abut on ours--the house to +which, you will remember, the patient twice ran away. The men stopped at +our gate to ask the porter their way, as they were strangers. I was +myself looking out of the study window, having a smoke after dinner, and +saw one of them come up to the house. As he passed the window of +Renfield’s room, the patient began to rate him from within, and called +him all the foul names he could lay his tongue to. The man, who seemed a +decent fellow enough, contented himself by telling him to “shut up for a +foul-mouthed beggar,” whereon our man accused him of robbing him and +wanting to murder him and said that he would hinder him if he were to +swing for it. I opened the window and signed to the man not to notice, +so he contented himself after looking the place over and making up his +mind as to what kind of a place he had got to by saying: ‘Lor’ bless +yer, sir, I wouldn’t mind what was said to me in a bloomin’ madhouse. I +pity ye and the guv’nor for havin’ to live in the house with a wild +beast like that.’ Then he asked his way civilly enough, and I told him +where the gate of the empty house was; he went away, followed by threats +and curses and revilings from our man. I went down to see if I could +make out any cause for his anger, since he is usually such a +well-behaved man, and except his violent fits nothing of the kind had +ever occurred. I found him, to my astonishment, quite composed and most +genial in his manner. I tried to get him to talk of the incident, but he +blandly asked me questions as to what I meant, and led me to believe +that he was completely oblivious of the affair. It was, I am sorry to +say, however, only another instance of his cunning, for within half an +hour I heard of him again. This time he had broken out through the +window of his room, and was running down the avenue. I called to the +attendants to follow me, and ran after him, for I feared he was intent +on some mischief. My fear was justified when I saw the same cart which +had passed before coming down the road, having on it some great wooden +boxes. The men were wiping their foreheads, and were flushed in the +face, as if with violent exercise. Before I could get up to him the +patient rushed at them, and pulling one of them off the cart, began to +knock his head against the ground. If I had not seized him just at the +moment I believe he would have killed the man there and then. The other +fellow jumped down and struck him over the head with the butt-end of his +heavy whip. It was a terrible blow; but he did not seem to mind it, but +seized him also, and struggled with the three of us, pulling us to and +fro as if we were kittens. You know I am no light weight, and the others +were both burly men. At first he was silent in his fighting; but as we +began to master him, and the attendants were putting a strait-waistcoat +on him, he began to shout: ‘I’ll frustrate them! They shan’t rob me! +they shan’t murder me by inches! I’ll fight for my Lord and Master!’ and +all sorts of similar incoherent ravings. It was with very considerable +difficulty that they got him back to the house and put him in the padded +room. One of the attendants, Hardy, had a finger broken. However, I set +it all right; and he is going on well. + +“The two carriers were at first loud in their threats of actions for +damages, and promised to rain all the penalties of the law on us. Their +threats were, however, mingled with some sort of indirect apology for +the defeat of the two of them by a feeble madman. They said that if it +had not been for the way their strength had been spent in carrying and +raising the heavy boxes to the cart they would have made short work of +him. They gave as another reason for their defeat the extraordinary +state of drouth to which they had been reduced by the dusty nature of +their occupation and the reprehensible distance from the scene of their +labours of any place of public entertainment. I quite understood their +drift, and after a stiff glass of grog, or rather more of the same, and +with each a sovereign in hand, they made light of the attack, and swore +that they would encounter a worse madman any day for the pleasure of +meeting so ‘bloomin’ good a bloke’ as your correspondent. I took their +names and addresses, in case they might be needed. They are as +follows:--Jack Smollet, of Dudding’s Rents, King George’s Road, Great +Walworth, and Thomas Snelling, Peter Farley’s Row, Guide Court, Bethnal +Green. They are both in the employment of Harris & Sons, Moving and +Shipment Company, Orange Master’s Yard, Soho. + +“I shall report to you any matter of interest occurring here, and shall +wire you at once if there is anything of importance. + +“Believe me, dear Sir, + +“Yours faithfully, + +“PATRICK HENNESSEY.” + + +_Letter, Mina Harker to Lucy Westenra_. + +(Unopened by her.) + +“_18 September._ + +“My dearest Lucy,-- + +“Such a sad blow has befallen us. Mr. Hawkins has died very suddenly. +Some may not think it so sad for us, but we had both come to so love him +that it really seems as though we had lost a father. I never knew either +father or mother, so that the dear old man’s death is a real blow to me. +Jonathan is greatly distressed. It is not only that he feels sorrow, +deep sorrow, for the dear, good man who has befriended him all his life, +and now at the end has treated him like his own son and left him a +fortune which to people of our modest bringing up is wealth beyond the +dream of avarice, but Jonathan feels it on another account. He says the +amount of responsibility which it puts upon him makes him nervous. He +begins to doubt himself. I try to cheer him up, and _my_ belief in _him_ +helps him to have a belief in himself. But it is here that the grave +shock that he experienced tells upon him the most. Oh, it is too hard +that a sweet, simple, noble, strong nature such as his--a nature which +enabled him by our dear, good friend’s aid to rise from clerk to master +in a few years--should be so injured that the very essence of its +strength is gone. Forgive me, dear, if I worry you with my troubles in +the midst of your own happiness; but, Lucy dear, I must tell some one, +for the strain of keeping up a brave and cheerful appearance to Jonathan +tries me, and I have no one here that I can confide in. I dread coming +up to London, as we must do the day after to-morrow; for poor Mr. +Hawkins left in his will that he was to be buried in the grave with his +father. As there are no relations at all, Jonathan will have to be chief +mourner. I shall try to run over to see you, dearest, if only for a few +minutes. Forgive me for troubling you. With all blessings, + +“Your loving + +“MINA HARKER.” + + +_Dr. Seward’s Diary._ + +_20 September._--Only resolution and habit can let me make an entry +to-night. I am too miserable, too low-spirited, too sick of the world +and all in it, including life itself, that I would not care if I heard +this moment the flapping of the wings of the angel of death. And he has +been flapping those grim wings to some purpose of late--Lucy’s mother +and Arthur’s father, and now.... Let me get on with my work. + +I duly relieved Van Helsing in his watch over Lucy. We wanted Arthur to +go to rest also, but he refused at first. It was only when I told him +that we should want him to help us during the day, and that we must not +all break down for want of rest, lest Lucy should suffer, that he agreed +to go. Van Helsing was very kind to him. “Come, my child,” he said; +“come with me. You are sick and weak, and have had much sorrow and much +mental pain, as well as that tax on your strength that we know of. You +must not be alone; for to be alone is to be full of fears and alarms. +Come to the drawing-room, where there is a big fire, and there are two +sofas. You shall lie on one, and I on the other, and our sympathy will +be comfort to each other, even though we do not speak, and even if we +sleep.” Arthur went off with him, casting back a longing look on Lucy’s +face, which lay in her pillow, almost whiter than the lawn. She lay +quite still, and I looked round the room to see that all was as it +should be. I could see that the Professor had carried out in this room, +as in the other, his purpose of using the garlic; the whole of the +window-sashes reeked with it, and round Lucy’s neck, over the silk +handkerchief which Van Helsing made her keep on, was a rough chaplet of +the same odorous flowers. Lucy was breathing somewhat stertorously, and +her face was at its worst, for the open mouth showed the pale gums. Her +teeth, in the dim, uncertain light, seemed longer and sharper than they +had been in the morning. In particular, by some trick of the light, the +canine teeth looked longer and sharper than the rest. I sat down by her, +and presently she moved uneasily. At the same moment there came a sort +of dull flapping or buffeting at the window. I went over to it softly, +and peeped out by the corner of the blind. There was a full moonlight, +and I could see that the noise was made by a great bat, which wheeled +round--doubtless attracted by the light, although so dim--and every now +and again struck the window with its wings. When I came back to my seat, +I found that Lucy had moved slightly, and had torn away the garlic +flowers from her throat. I replaced them as well as I could, and sat +watching her. + +Presently she woke, and I gave her food, as Van Helsing had prescribed. +She took but a little, and that languidly. There did not seem to be with +her now the unconscious struggle for life and strength that had hitherto +so marked her illness. It struck me as curious that the moment she +became conscious she pressed the garlic flowers close to her. It was +certainly odd that whenever she got into that lethargic state, with the +stertorous breathing, she put the flowers from her; but that when she +waked she clutched them close. There was no possibility of making any +mistake about this, for in the long hours that followed, she had many +spells of sleeping and waking and repeated both actions many times. + +At six o’clock Van Helsing came to relieve me. Arthur had then fallen +into a doze, and he mercifully let him sleep on. When he saw Lucy’s face +I could hear the sissing indraw of his breath, and he said to me in a +sharp whisper: “Draw up the blind; I want light!” Then he bent down, +and, with his face almost touching Lucy’s, examined her carefully. He +removed the flowers and lifted the silk handkerchief from her throat. As +he did so he started back, and I could hear his ejaculation, “Mein +Gott!” as it was smothered in his throat. I bent over and looked, too, +and as I noticed some queer chill came over me. + +The wounds on the throat had absolutely disappeared. + +For fully five minutes Van Helsing stood looking at her, with his face +at its sternest. Then he turned to me and said calmly:-- + +“She is dying. It will not be long now. It will be much difference, mark +me, whether she dies conscious or in her sleep. Wake that poor boy, and +let him come and see the last; he trusts us, and we have promised him.” + +I went to the dining-room and waked him. He was dazed for a moment, but +when he saw the sunlight streaming in through the edges of the shutters +he thought he was late, and expressed his fear. I assured him that Lucy +was still asleep, but told him as gently as I could that both Van +Helsing and I feared that the end was near. He covered his face with his +hands, and slid down on his knees by the sofa, where he remained, +perhaps a minute, with his head buried, praying, whilst his shoulders +shook with grief. I took him by the hand and raised him up. “Come,” I +said, “my dear old fellow, summon all your fortitude: it will be best +and easiest for her.” + +When we came into Lucy’s room I could see that Van Helsing had, with +his usual forethought, been putting matters straight and making +everything look as pleasing as possible. He had even brushed Lucy’s +hair, so that it lay on the pillow in its usual sunny ripples. When we +came into the room she opened her eyes, and seeing him, whispered +softly:-- + +“Arthur! Oh, my love, I am so glad you have come!” He was stooping to +kiss her, when Van Helsing motioned him back. “No,” he whispered, “not +yet! Hold her hand; it will comfort her more.” + +So Arthur took her hand and knelt beside her, and she looked her best, +with all the soft lines matching the angelic beauty of her eyes. Then +gradually her eyes closed, and she sank to sleep. For a little bit her +breast heaved softly, and her breath came and went like a tired child’s. + +And then insensibly there came the strange change which I had noticed in +the night. Her breathing grew stertorous, the mouth opened, and the pale +gums, drawn back, made the teeth look longer and sharper than ever. In a +sort of sleep-waking, vague, unconscious way she opened her eyes, which +were now dull and hard at once, and said in a soft, voluptuous voice, +such as I had never heard from her lips:-- + +“Arthur! Oh, my love, I am so glad you have come! Kiss me!” Arthur bent +eagerly over to kiss her; but at that instant Van Helsing, who, like me, +had been startled by her voice, swooped upon him, and catching him by +the neck with both hands, dragged him back with a fury of strength which +I never thought he could have possessed, and actually hurled him almost +across the room. + +“Not for your life!” he said; “not for your living soul and hers!” And +he stood between them like a lion at bay. + +Arthur was so taken aback that he did not for a moment know what to do +or say; and before any impulse of violence could seize him he realised +the place and the occasion, and stood silent, waiting. + +I kept my eyes fixed on Lucy, as did Van Helsing, and we saw a spasm as +of rage flit like a shadow over her face; the sharp teeth champed +together. Then her eyes closed, and she breathed heavily. + +Very shortly after she opened her eyes in all their softness, and +putting out her poor, pale, thin hand, took Van Helsing’s great brown +one; drawing it to her, she kissed it. “My true friend,” she said, in a +faint voice, but with untellable pathos, “My true friend, and his! Oh, +guard him, and give me peace!” + +“I swear it!” he said solemnly, kneeling beside her and holding up his +hand, as one who registers an oath. Then he turned to Arthur, and said +to him: “Come, my child, take her hand in yours, and kiss her on the +forehead, and only once.” + +Their eyes met instead of their lips; and so they parted. + +Lucy’s eyes closed; and Van Helsing, who had been watching closely, took +Arthur’s arm, and drew him away. + +And then Lucy’s breathing became stertorous again, and all at once it +ceased. + +“It is all over,” said Van Helsing. “She is dead!” + +I took Arthur by the arm, and led him away to the drawing-room, where he +sat down, and covered his face with his hands, sobbing in a way that +nearly broke me down to see. + +I went back to the room, and found Van Helsing looking at poor Lucy, and +his face was sterner than ever. Some change had come over her body. +Death had given back part of her beauty, for her brow and cheeks had +recovered some of their flowing lines; even the lips had lost their +deadly pallor. It was as if the blood, no longer needed for the working +of the heart, had gone to make the harshness of death as little rude as +might be. + + “We thought her dying whilst she slept, + And sleeping when she died.” + +I stood beside Van Helsing, and said:-- + +“Ah, well, poor girl, there is peace for her at last. It is the end!” + +He turned to me, and said with grave solemnity:-- + +“Not so; alas! not so. It is only the beginning!” + +When I asked him what he meant, he only shook his head and answered:-- + +“We can do nothing as yet. Wait and see.” + + + + +CHAPTER XIII + +DR. SEWARD’S DIARY--_continued_. + + +The funeral was arranged for the next succeeding day, so that Lucy and +her mother might be buried together. I attended to all the ghastly +formalities, and the urbane undertaker proved that his staff were +afflicted--or blessed--with something of his own obsequious suavity. +Even the woman who performed the last offices for the dead remarked to +me, in a confidential, brother-professional way, when she had come out +from the death-chamber:-- + +“She makes a very beautiful corpse, sir. It’s quite a privilege to +attend on her. It’s not too much to say that she will do credit to our +establishment!” + +I noticed that Van Helsing never kept far away. This was possible from +the disordered state of things in the household. There were no relatives +at hand; and as Arthur had to be back the next day to attend at his +father’s funeral, we were unable to notify any one who should have been +bidden. Under the circumstances, Van Helsing and I took it upon +ourselves to examine papers, etc. He insisted upon looking over Lucy’s +papers himself. I asked him why, for I feared that he, being a +foreigner, might not be quite aware of English legal requirements, and +so might in ignorance make some unnecessary trouble. He answered me:-- + +“I know; I know. You forget that I am a lawyer as well as a doctor. But +this is not altogether for the law. You knew that, when you avoided the +coroner. I have more than him to avoid. There may be papers more--such +as this.” + +As he spoke he took from his pocket-book the memorandum which had been +in Lucy’s breast, and which she had torn in her sleep. + +“When you find anything of the solicitor who is for the late Mrs. +Westenra, seal all her papers, and write him to-night. For me, I watch +here in the room and in Miss Lucy’s old room all night, and I myself +search for what may be. It is not well that her very thoughts go into +the hands of strangers.” + +I went on with my part of the work, and in another half hour had found +the name and address of Mrs. Westenra’s solicitor and had written to +him. All the poor lady’s papers were in order; explicit directions +regarding the place of burial were given. I had hardly sealed the +letter, when, to my surprise, Van Helsing walked into the room, +saying:-- + +“Can I help you, friend John? I am free, and if I may, my service is to +you.” + +“Have you got what you looked for?” I asked, to which he replied:-- + +“I did not look for any specific thing. I only hoped to find, and find I +have, all that there was--only some letters and a few memoranda, and a +diary new begun. But I have them here, and we shall for the present say +nothing of them. I shall see that poor lad to-morrow evening, and, with +his sanction, I shall use some.” + +When we had finished the work in hand, he said to me:-- + +“And now, friend John, I think we may to bed. We want sleep, both you +and I, and rest to recuperate. To-morrow we shall have much to do, but +for the to-night there is no need of us. Alas!” + +Before turning in we went to look at poor Lucy. The undertaker had +certainly done his work well, for the room was turned into a small +_chapelle ardente_. There was a wilderness of beautiful white flowers, +and death was made as little repulsive as might be. The end of the +winding-sheet was laid over the face; when the Professor bent over and +turned it gently back, we both started at the beauty before us, the tall +wax candles showing a sufficient light to note it well. All Lucy’s +loveliness had come back to her in death, and the hours that had passed, +instead of leaving traces of “decay’s effacing fingers,” had but +restored the beauty of life, till positively I could not believe my eyes +that I was looking at a corpse. + +The Professor looked sternly grave. He had not loved her as I had, and +there was no need for tears in his eyes. He said to me: “Remain till I +return,” and left the room. He came back with a handful of wild garlic +from the box waiting in the hall, but which had not been opened, and +placed the flowers amongst the others on and around the bed. Then he +took from his neck, inside his collar, a little gold crucifix, and +placed it over the mouth. He restored the sheet to its place, and we +came away. + +I was undressing in my own room, when, with a premonitory tap at the +door, he entered, and at once began to speak:-- + +“To-morrow I want you to bring me, before night, a set of post-mortem +knives.” + +“Must we make an autopsy?” I asked. + +“Yes and no. I want to operate, but not as you think. Let me tell you +now, but not a word to another. I want to cut off her head and take out +her heart. Ah! you a surgeon, and so shocked! You, whom I have seen with +no tremble of hand or heart, do operations of life and death that make +the rest shudder. Oh, but I must not forget, my dear friend John, that +you loved her; and I have not forgotten it, for it is I that shall +operate, and you must only help. I would like to do it to-night, but for +Arthur I must not; he will be free after his father’s funeral to-morrow, +and he will want to see her--to see _it_. Then, when she is coffined +ready for the next day, you and I shall come when all sleep. We shall +unscrew the coffin-lid, and shall do our operation: and then replace +all, so that none know, save we alone.” + +“But why do it at all? The girl is dead. Why mutilate her poor body +without need? And if there is no necessity for a post-mortem and nothing +to gain by it--no good to her, to us, to science, to human +knowledge--why do it? Without such it is monstrous.” + +For answer he put his hand on my shoulder, and said, with infinite +tenderness:-- + +“Friend John, I pity your poor bleeding heart; and I love you the more +because it does so bleed. If I could, I would take on myself the burden +that you do bear. But there are things that you know not, but that you +shall know, and bless me for knowing, though they are not pleasant +things. John, my child, you have been my friend now many years, and yet +did you ever know me to do any without good cause? I may err--I am but +man; but I believe in all I do. Was it not for these causes that you +send for me when the great trouble came? Yes! Were you not amazed, nay +horrified, when I would not let Arthur kiss his love--though she was +dying--and snatched him away by all my strength? Yes! And yet you saw +how she thanked me, with her so beautiful dying eyes, her voice, too, so +weak, and she kiss my rough old hand and bless me? Yes! And did you not +hear me swear promise to her, that so she closed her eyes grateful? Yes! + +“Well, I have good reason now for all I want to do. You have for many +years trust me; you have believe me weeks past, when there be things so +strange that you might have well doubt. Believe me yet a little, friend +John. If you trust me not, then I must tell what I think; and that is +not perhaps well. And if I work--as work I shall, no matter trust or no +trust--without my friend trust in me, I work with heavy heart and feel, +oh! so lonely when I want all help and courage that may be!” He paused a +moment and went on solemnly: “Friend John, there are strange and +terrible days before us. Let us not be two, but one, that so we work to +a good end. Will you not have faith in me?” + +I took his hand, and promised him. I held my door open as he went away, +and watched him go into his room and close the door. As I stood without +moving, I saw one of the maids pass silently along the passage--she had +her back towards me, so did not see me--and go into the room where Lucy +lay. The sight touched me. Devotion is so rare, and we are so grateful +to those who show it unasked to those we love. Here was a poor girl +putting aside the terrors which she naturally had of death to go watch +alone by the bier of the mistress whom she loved, so that the poor clay +might not be lonely till laid to eternal rest.... + + * * * * * + +I must have slept long and soundly, for it was broad daylight when Van +Helsing waked me by coming into my room. He came over to my bedside and +said:-- + +“You need not trouble about the knives; we shall not do it.” + +“Why not?” I asked. For his solemnity of the night before had greatly +impressed me. + +“Because,” he said sternly, “it is too late--or too early. See!” Here he +held up the little golden crucifix. “This was stolen in the night.” + +“How, stolen,” I asked in wonder, “since you have it now?” + +“Because I get it back from the worthless wretch who stole it, from the +woman who robbed the dead and the living. Her punishment will surely +come, but not through me; she knew not altogether what she did and thus +unknowing, she only stole. Now we must wait.” + +He went away on the word, leaving me with a new mystery to think of, a +new puzzle to grapple with. + +The forenoon was a dreary time, but at noon the solicitor came: Mr. +Marquand, of Wholeman, Sons, Marquand & Lidderdale. He was very genial +and very appreciative of what we had done, and took off our hands all +cares as to details. During lunch he told us that Mrs. Westenra had for +some time expected sudden death from her heart, and had put her affairs +in absolute order; he informed us that, with the exception of a certain +entailed property of Lucy’s father’s which now, in default of direct +issue, went back to a distant branch of the family, the whole estate, +real and personal, was left absolutely to Arthur Holmwood. When he had +told us so much he went on:-- + +“Frankly we did our best to prevent such a testamentary disposition, and +pointed out certain contingencies that might leave her daughter either +penniless or not so free as she should be to act regarding a matrimonial +alliance. Indeed, we pressed the matter so far that we almost came into +collision, for she asked us if we were or were not prepared to carry out +her wishes. Of course, we had then no alternative but to accept. We were +right in principle, and ninety-nine times out of a hundred we should +have proved, by the logic of events, the accuracy of our judgment. +Frankly, however, I must admit that in this case any other form of +disposition would have rendered impossible the carrying out of her +wishes. For by her predeceasing her daughter the latter would have come +into possession of the property, and, even had she only survived her +mother by five minutes, her property would, in case there were no +will--and a will was a practical impossibility in such a case--have been +treated at her decease as under intestacy. In which case Lord Godalming, +though so dear a friend, would have had no claim in the world; and the +inheritors, being remote, would not be likely to abandon their just +rights, for sentimental reasons regarding an entire stranger. I assure +you, my dear sirs, I am rejoiced at the result, perfectly rejoiced.” + +He was a good fellow, but his rejoicing at the one little part--in which +he was officially interested--of so great a tragedy, was an +object-lesson in the limitations of sympathetic understanding. + +He did not remain long, but said he would look in later in the day and +see Lord Godalming. His coming, however, had been a certain comfort to +us, since it assured us that we should not have to dread hostile +criticism as to any of our acts. Arthur was expected at five o’clock, so +a little before that time we visited the death-chamber. It was so in +very truth, for now both mother and daughter lay in it. The undertaker, +true to his craft, had made the best display he could of his goods, and +there was a mortuary air about the place that lowered our spirits at +once. Van Helsing ordered the former arrangement to be adhered to, +explaining that, as Lord Godalming was coming very soon, it would be +less harrowing to his feelings to see all that was left of his _fiancée_ +quite alone. The undertaker seemed shocked at his own stupidity and +exerted himself to restore things to the condition in which we left them +the night before, so that when Arthur came such shocks to his feelings +as we could avoid were saved. + +Poor fellow! He looked desperately sad and broken; even his stalwart +manhood seemed to have shrunk somewhat under the strain of his +much-tried emotions. He had, I knew, been very genuinely and devotedly +attached to his father; and to lose him, and at such a time, was a +bitter blow to him. With me he was warm as ever, and to Van Helsing he +was sweetly courteous; but I could not help seeing that there was some +constraint with him. The Professor noticed it, too, and motioned me to +bring him upstairs. I did so, and left him at the door of the room, as I +felt he would like to be quite alone with her, but he took my arm and +led me in, saying huskily:-- + +“You loved her too, old fellow; she told me all about it, and there was +no friend had a closer place in her heart than you. I don’t know how to +thank you for all you have done for her. I can’t think yet....” + +Here he suddenly broke down, and threw his arms round my shoulders and +laid his head on my breast, crying:-- + +“Oh, Jack! Jack! What shall I do! The whole of life seems gone from me +all at once, and there is nothing in the wide world for me to live for.” + +I comforted him as well as I could. In such cases men do not need much +expression. A grip of the hand, the tightening of an arm over the +shoulder, a sob in unison, are expressions of sympathy dear to a man’s +heart. I stood still and silent till his sobs died away, and then I said +softly to him:-- + +“Come and look at her.” + +Together we moved over to the bed, and I lifted the lawn from her face. +God! how beautiful she was. Every hour seemed to be enhancing her +loveliness. It frightened and amazed me somewhat; and as for Arthur, he +fell a-trembling, and finally was shaken with doubt as with an ague. At +last, after a long pause, he said to me in a faint whisper:-- + +“Jack, is she really dead?” + +I assured him sadly that it was so, and went on to suggest--for I felt +that such a horrible doubt should not have life for a moment longer than +I could help--that it often happened that after death faces became +softened and even resolved into their youthful beauty; that this was +especially so when death had been preceded by any acute or prolonged +suffering. It seemed to quite do away with any doubt, and, after +kneeling beside the couch for a while and looking at her lovingly and +long, he turned aside. I told him that that must be good-bye, as the +coffin had to be prepared; so he went back and took her dead hand in his +and kissed it, and bent over and kissed her forehead. He came away, +fondly looking back over his shoulder at her as he came. + +I left him in the drawing-room, and told Van Helsing that he had said +good-bye; so the latter went to the kitchen to tell the undertaker’s men +to proceed with the preparations and to screw up the coffin. When he +came out of the room again I told him of Arthur’s question, and he +replied:-- + +“I am not surprised. Just now I doubted for a moment myself!” + +We all dined together, and I could see that poor Art was trying to make +the best of things. Van Helsing had been silent all dinner-time; but +when we had lit our cigars he said-- + +“Lord----”; but Arthur interrupted him:-- + +“No, no, not that, for God’s sake! not yet at any rate. Forgive me, sir: +I did not mean to speak offensively; it is only because my loss is so +recent.” + +The Professor answered very sweetly:-- + +“I only used that name because I was in doubt. I must not call you +‘Mr.,’ and I have grown to love you--yes, my dear boy, to love you--as +Arthur.” + +Arthur held out his hand, and took the old man’s warmly. + +“Call me what you will,” he said. “I hope I may always have the title of +a friend. And let me say that I am at a loss for words to thank you for +your goodness to my poor dear.” He paused a moment, and went on: “I know +that she understood your goodness even better than I do; and if I was +rude or in any way wanting at that time you acted so--you remember”--the +Professor nodded--“you must forgive me.” + +He answered with a grave kindness:-- + +“I know it was hard for you to quite trust me then, for to trust such +violence needs to understand; and I take it that you do not--that you +cannot--trust me now, for you do not yet understand. And there may be +more times when I shall want you to trust when you cannot--and may +not--and must not yet understand. But the time will come when your trust +shall be whole and complete in me, and when you shall understand as +though the sunlight himself shone through. Then you shall bless me from +first to last for your own sake, and for the sake of others and for her +dear sake to whom I swore to protect.” + +“And, indeed, indeed, sir,” said Arthur warmly, “I shall in all ways +trust you. I know and believe you have a very noble heart, and you are +Jack’s friend, and you were hers. You shall do what you like.” + +The Professor cleared his throat a couple of times, as though about to +speak, and finally said:-- + +“May I ask you something now?” + +“Certainly.” + +“You know that Mrs. Westenra left you all her property?” + +“No, poor dear; I never thought of it.” + +“And as it is all yours, you have a right to deal with it as you will. I +want you to give me permission to read all Miss Lucy’s papers and +letters. Believe me, it is no idle curiosity. I have a motive of which, +be sure, she would have approved. I have them all here. I took them +before we knew that all was yours, so that no strange hand might touch +them--no strange eye look through words into her soul. I shall keep +them, if I may; even you may not see them yet, but I shall keep them +safe. No word shall be lost; and in the good time I shall give them back +to you. It’s a hard thing I ask, but you will do it, will you not, for +Lucy’s sake?” + +Arthur spoke out heartily, like his old self:-- + +“Dr. Van Helsing, you may do what you will. I feel that in saying this I +am doing what my dear one would have approved. I shall not trouble you +with questions till the time comes.” + +The old Professor stood up as he said solemnly:-- + +“And you are right. There will be pain for us all; but it will not be +all pain, nor will this pain be the last. We and you too--you most of +all, my dear boy--will have to pass through the bitter water before we +reach the sweet. But we must be brave of heart and unselfish, and do our +duty, and all will be well!” + +I slept on a sofa in Arthur’s room that night. Van Helsing did not go to +bed at all. He went to and fro, as if patrolling the house, and was +never out of sight of the room where Lucy lay in her coffin, strewn with +the wild garlic flowers, which sent, through the odour of lily and rose, +a heavy, overpowering smell into the night. + + +_Mina Harker’s Journal._ + +_22 September._--In the train to Exeter. Jonathan sleeping. + +It seems only yesterday that the last entry was made, and yet how much +between then, in Whitby and all the world before me, Jonathan away and +no news of him; and now, married to Jonathan, Jonathan a solicitor, a +partner, rich, master of his business, Mr. Hawkins dead and buried, and +Jonathan with another attack that may harm him. Some day he may ask me +about it. Down it all goes. I am rusty in my shorthand--see what +unexpected prosperity does for us--so it may be as well to freshen it up +again with an exercise anyhow.... + +The service was very simple and very solemn. There were only ourselves +and the servants there, one or two old friends of his from Exeter, his +London agent, and a gentleman representing Sir John Paxton, the +President of the Incorporated Law Society. Jonathan and I stood hand in +hand, and we felt that our best and dearest friend was gone from us.... + +We came back to town quietly, taking a ’bus to Hyde Park Corner. +Jonathan thought it would interest me to go into the Row for a while, so +we sat down; but there were very few people there, and it was +sad-looking and desolate to see so many empty chairs. It made us think +of the empty chair at home; so we got up and walked down Piccadilly. +Jonathan was holding me by the arm, the way he used to in old days +before I went to school. I felt it very improper, for you can’t go on +for some years teaching etiquette and decorum to other girls without the +pedantry of it biting into yourself a bit; but it was Jonathan, and he +was my husband, and we didn’t know anybody who saw us--and we didn’t +care if they did--so on we walked. I was looking at a very beautiful +girl, in a big cart-wheel hat, sitting in a victoria outside Guiliano’s, +when I felt Jonathan clutch my arm so tight that he hurt me, and he said +under his breath: “My God!” I am always anxious about Jonathan, for I +fear that some nervous fit may upset him again; so I turned to him +quickly, and asked him what it was that disturbed him. + +He was very pale, and his eyes seemed bulging out as, half in terror and +half in amazement, he gazed at a tall, thin man, with a beaky nose and +black moustache and pointed beard, who was also observing the pretty +girl. He was looking at her so hard that he did not see either of us, +and so I had a good view of him. His face was not a good face; it was +hard, and cruel, and sensual, and his big white teeth, that looked all +the whiter because his lips were so red, were pointed like an animal’s. +Jonathan kept staring at him, till I was afraid he would notice. I +feared he might take it ill, he looked so fierce and nasty. I asked +Jonathan why he was disturbed, and he answered, evidently thinking that +I knew as much about it as he did: “Do you see who it is?” + +“No, dear,” I said; “I don’t know him; who is it?” His answer seemed to +shock and thrill me, for it was said as if he did not know that it was +to me, Mina, to whom he was speaking:-- + +“It is the man himself!” + +The poor dear was evidently terrified at something--very greatly +terrified; I do believe that if he had not had me to lean on and to +support him he would have sunk down. He kept staring; a man came out of +the shop with a small parcel, and gave it to the lady, who then drove +off. The dark man kept his eyes fixed on her, and when the carriage +moved up Piccadilly he followed in the same direction, and hailed a +hansom. Jonathan kept looking after him, and said, as if to himself:-- + +“I believe it is the Count, but he has grown young. My God, if this be +so! Oh, my God! my God! If I only knew! if I only knew!” He was +distressing himself so much that I feared to keep his mind on the +subject by asking him any questions, so I remained silent. I drew him +away quietly, and he, holding my arm, came easily. We walked a little +further, and then went in and sat for a while in the Green Park. It was +a hot day for autumn, and there was a comfortable seat in a shady place. +After a few minutes’ staring at nothing, Jonathan’s eyes closed, and he +went quietly into a sleep, with his head on my shoulder. I thought it +was the best thing for him, so did not disturb him. In about twenty +minutes he woke up, and said to me quite cheerfully:-- + +“Why, Mina, have I been asleep! Oh, do forgive me for being so rude. +Come, and we’ll have a cup of tea somewhere.” He had evidently forgotten +all about the dark stranger, as in his illness he had forgotten all that +this episode had reminded him of. I don’t like this lapsing into +forgetfulness; it may make or continue some injury to the brain. I must +not ask him, for fear I shall do more harm than good; but I must somehow +learn the facts of his journey abroad. The time is come, I fear, when I +must open that parcel, and know what is written. Oh, Jonathan, you will, +I know, forgive me if I do wrong, but it is for your own dear sake. + + * * * * * + +_Later._--A sad home-coming in every way--the house empty of the dear +soul who was so good to us; Jonathan still pale and dizzy under a slight +relapse of his malady; and now a telegram from Van Helsing, whoever he +may be:-- + +“You will be grieved to hear that Mrs. Westenra died five days ago, and +that Lucy died the day before yesterday. They were both buried to-day.” + +Oh, what a wealth of sorrow in a few words! Poor Mrs. Westenra! poor +Lucy! Gone, gone, never to return to us! And poor, poor Arthur, to have +lost such sweetness out of his life! God help us all to bear our +troubles. + + +_Dr. Seward’s Diary._ + +_22 September._--It is all over. Arthur has gone back to Ring, and has +taken Quincey Morris with him. What a fine fellow is Quincey! I believe +in my heart of hearts that he suffered as much about Lucy’s death as any +of us; but he bore himself through it like a moral Viking. If America +can go on breeding men like that, she will be a power in the world +indeed. Van Helsing is lying down, having a rest preparatory to his +journey. He goes over to Amsterdam to-night, but says he returns +to-morrow night; that he only wants to make some arrangements which can +only be made personally. He is to stop with me then, if he can; he says +he has work to do in London which may take him some time. Poor old +fellow! I fear that the strain of the past week has broken down even his +iron strength. All the time of the burial he was, I could see, putting +some terrible restraint on himself. When it was all over, we were +standing beside Arthur, who, poor fellow, was speaking of his part in +the operation where his blood had been transfused to his Lucy’s veins; I +could see Van Helsing’s face grow white and purple by turns. Arthur was +saying that he felt since then as if they two had been really married +and that she was his wife in the sight of God. None of us said a word of +the other operations, and none of us ever shall. Arthur and Quincey went +away together to the station, and Van Helsing and I came on here. The +moment we were alone in the carriage he gave way to a regular fit of +hysterics. He has denied to me since that it was hysterics, and insisted +that it was only his sense of humour asserting itself under very +terrible conditions. He laughed till he cried, and I had to draw down +the blinds lest any one should see us and misjudge; and then he cried, +till he laughed again; and laughed and cried together, just as a woman +does. I tried to be stern with him, as one is to a woman under the +circumstances; but it had no effect. Men and women are so different in +manifestations of nervous strength or weakness! Then when his face grew +grave and stern again I asked him why his mirth, and why at such a time. +His reply was in a way characteristic of him, for it was logical and +forceful and mysterious. He said:-- + +“Ah, you don’t comprehend, friend John. Do not think that I am not sad, +though I laugh. See, I have cried even when the laugh did choke me. But +no more think that I am all sorry when I cry, for the laugh he come +just the same. Keep it always with you that laughter who knock at your +door and say, ‘May I come in?’ is not the true laughter. No! he is a +king, and he come when and how he like. He ask no person; he choose no +time of suitability. He say, ‘I am here.’ Behold, in example I grieve my +heart out for that so sweet young girl; I give my blood for her, though +I am old and worn; I give my time, my skill, my sleep; I let my other +sufferers want that so she may have all. And yet I can laugh at her very +grave--laugh when the clay from the spade of the sexton drop upon her +coffin and say ‘Thud! thud!’ to my heart, till it send back the blood +from my cheek. My heart bleed for that poor boy--that dear boy, so of +the age of mine own boy had I been so blessed that he live, and with his +hair and eyes the same. There, you know now why I love him so. And yet +when he say things that touch my husband-heart to the quick, and make my +father-heart yearn to him as to no other man--not even to you, friend +John, for we are more level in experiences than father and son--yet even +at such moment King Laugh he come to me and shout and bellow in my ear, +‘Here I am! here I am!’ till the blood come dance back and bring some of +the sunshine that he carry with him to my cheek. Oh, friend John, it is +a strange world, a sad world, a world full of miseries, and woes, and +troubles; and yet when King Laugh come he make them all dance to the +tune he play. Bleeding hearts, and dry bones of the churchyard, and +tears that burn as they fall--all dance together to the music that he +make with that smileless mouth of him. And believe me, friend John, that +he is good to come, and kind. Ah, we men and women are like ropes drawn +tight with strain that pull us different ways. Then tears come; and, +like the rain on the ropes, they brace us up, until perhaps the strain +become too great, and we break. But King Laugh he come like the +sunshine, and he ease off the strain again; and we bear to go on with +our labour, what it may be.” + +I did not like to wound him by pretending not to see his idea; but, as I +did not yet understand the cause of his laughter, I asked him. As he +answered me his face grew stern, and he said in quite a different +tone:-- + +“Oh, it was the grim irony of it all--this so lovely lady garlanded with +flowers, that looked so fair as life, till one by one we wondered if she +were truly dead; she laid in that so fine marble house in that lonely +churchyard, where rest so many of her kin, laid there with the mother +who loved her, and whom she loved; and that sacred bell going ‘Toll! +toll! toll!’ so sad and slow; and those holy men, with the white +garments of the angel, pretending to read books, and yet all the time +their eyes never on the page; and all of us with the bowed head. And all +for what? She is dead; so! Is it not?” + +“Well, for the life of me, Professor,” I said, “I can’t see anything to +laugh at in all that. Why, your explanation makes it a harder puzzle +than before. But even if the burial service was comic, what about poor +Art and his trouble? Why, his heart was simply breaking.” + +“Just so. Said he not that the transfusion of his blood to her veins had +made her truly his bride?” + +“Yes, and it was a sweet and comforting idea for him.” + +“Quite so. But there was a difficulty, friend John. If so that, then +what about the others? Ho, ho! Then this so sweet maid is a polyandrist, +and me, with my poor wife dead to me, but alive by Church’s law, though +no wits, all gone--even I, who am faithful husband to this now-no-wife, +am bigamist.” + +“I don’t see where the joke comes in there either!” I said; and I did +not feel particularly pleased with him for saying such things. He laid +his hand on my arm, and said:-- + +“Friend John, forgive me if I pain. I showed not my feeling to others +when it would wound, but only to you, my old friend, whom I can trust. +If you could have looked into my very heart then when I want to laugh; +if you could have done so when the laugh arrived; if you could do so +now, when King Laugh have pack up his crown, and all that is to him--for +he go far, far away from me, and for a long, long time--maybe you would +perhaps pity me the most of all.” + +I was touched by the tenderness of his tone, and asked why. + +“Because I know!” + +And now we are all scattered; and for many a long day loneliness will +sit over our roofs with brooding wings. Lucy lies in the tomb of her +kin, a lordly death-house in a lonely churchyard, away from teeming +London; where the air is fresh, and the sun rises over Hampstead Hill, +and where wild flowers grow of their own accord. + +So I can finish this diary; and God only knows if I shall ever begin +another. If I do, or if I even open this again, it will be to deal with +different people and different themes; for here at the end, where the +romance of my life is told, ere I go back to take up the thread of my +life-work, I say sadly and without hope, + + “FINIS.” + + +_“The Westminster Gazette,” 25 September._ + + A HAMPSTEAD MYSTERY. + + +The neighbourhood of Hampstead is just at present exercised with a +series of events which seem to run on lines parallel to those of what +was known to the writers of headlines as “The Kensington Horror,” or +“The Stabbing Woman,” or “The Woman in Black.” During the past two or +three days several cases have occurred of young children straying from +home or neglecting to return from their playing on the Heath. In all +these cases the children were too young to give any properly +intelligible account of themselves, but the consensus of their excuses +is that they had been with a “bloofer lady.” It has always been late in +the evening when they have been missed, and on two occasions the +children have not been found until early in the following morning. It is +generally supposed in the neighbourhood that, as the first child missed +gave as his reason for being away that a “bloofer lady” had asked him to +come for a walk, the others had picked up the phrase and used it as +occasion served. This is the more natural as the favourite game of the +little ones at present is luring each other away by wiles. A +correspondent writes us that to see some of the tiny tots pretending to +be the “bloofer lady” is supremely funny. Some of our caricaturists +might, he says, take a lesson in the irony of grotesque by comparing the +reality and the picture. It is only in accordance with general +principles of human nature that the “bloofer lady” should be the popular +rôle at these _al fresco_ performances. Our correspondent naïvely says +that even Ellen Terry could not be so winningly attractive as some of +these grubby-faced little children pretend--and even imagine +themselves--to be. + +There is, however, possibly a serious side to the question, for some of +the children, indeed all who have been missed at night, have been +slightly torn or wounded in the throat. The wounds seem such as might be +made by a rat or a small dog, and although of not much importance +individually, would tend to show that whatever animal inflicts them has +a system or method of its own. The police of the division have been +instructed to keep a sharp look-out for straying children, especially +when very young, in and around Hampstead Heath, and for any stray dog +which may be about. + + + _“The Westminster Gazette,” 25 September._ + + _Extra Special._ + + THE HAMPSTEAD HORROR. + + ANOTHER CHILD INJURED. + + _The “Bloofer Lady.”_ + +We have just received intelligence that another child, missed last +night, was only discovered late in the morning under a furze bush at the +Shooter’s Hill side of Hampstead Heath, which is, perhaps, less +frequented than the other parts. It has the same tiny wound in the +throat as has been noticed in other cases. It was terribly weak, and +looked quite emaciated. It too, when partially restored, had the common +story to tell of being lured away by the “bloofer lady.” + + + + +CHAPTER XIV + +MINA HARKER’S JOURNAL + + +_23 September_.--Jonathan is better after a bad night. I am so glad that +he has plenty of work to do, for that keeps his mind off the terrible +things; and oh, I am rejoiced that he is not now weighed down with the +responsibility of his new position. I knew he would be true to himself, +and now how proud I am to see my Jonathan rising to the height of his +advancement and keeping pace in all ways with the duties that come upon +him. He will be away all day till late, for he said he could not lunch +at home. My household work is done, so I shall take his foreign journal, +and lock myself up in my room and read it.... + + +_24 September_.--I hadn’t the heart to write last night; that terrible +record of Jonathan’s upset me so. Poor dear! How he must have suffered, +whether it be true or only imagination. I wonder if there is any truth +in it at all. Did he get his brain fever, and then write all those +terrible things, or had he some cause for it all? I suppose I shall +never know, for I dare not open the subject to him.... And yet that man +we saw yesterday! He seemed quite certain of him.... Poor fellow! I +suppose it was the funeral upset him and sent his mind back on some +train of thought.... He believes it all himself. I remember how on our +wedding-day he said: “Unless some solemn duty come upon me to go back to +the bitter hours, asleep or awake, mad or sane.” There seems to be +through it all some thread of continuity.... That fearful Count was +coming to London.... If it should be, and he came to London, with his +teeming millions.... There may be a solemn duty; and if it come we must +not shrink from it.... I shall be prepared. I shall get my typewriter +this very hour and begin transcribing. Then we shall be ready for other +eyes if required. And if it be wanted; then, perhaps, if I am ready, +poor Jonathan may not be upset, for I can speak for him and never let +him be troubled or worried with it at all. If ever Jonathan quite gets +over the nervousness he may want to tell me of it all, and I can ask him +questions and find out things, and see how I may comfort him. + + +_Letter, Van Helsing to Mrs. Harker._ + +“_24 September._ + +(_Confidence_) + +“Dear Madam,-- + +“I pray you to pardon my writing, in that I am so far friend as that I +sent to you sad news of Miss Lucy Westenra’s death. By the kindness of +Lord Godalming, I am empowered to read her letters and papers, for I am +deeply concerned about certain matters vitally important. In them I find +some letters from you, which show how great friends you were and how you +love her. Oh, Madam Mina, by that love, I implore you, help me. It is +for others’ good that I ask--to redress great wrong, and to lift much +and terrible troubles--that may be more great than you can know. May it +be that I see you? You can trust me. I am friend of Dr. John Seward and +of Lord Godalming (that was Arthur of Miss Lucy). I must keep it private +for the present from all. I should come to Exeter to see you at once if +you tell me I am privilege to come, and where and when. I implore your +pardon, madam. I have read your letters to poor Lucy, and know how good +you are and how your husband suffer; so I pray you, if it may be, +enlighten him not, lest it may harm. Again your pardon, and forgive me. + +“VAN HELSING.” + + +_Telegram, Mrs. Harker to Van Helsing._ + +“_25 September._--Come to-day by quarter-past ten train if you can catch +it. Can see you any time you call. + +“WILHELMINA HARKER.” + +MINA HARKER’S JOURNAL. + +_25 September._--I cannot help feeling terribly excited as the time +draws near for the visit of Dr. Van Helsing, for somehow I expect that +it will throw some light upon Jonathan’s sad experience; and as he +attended poor dear Lucy in her last illness, he can tell me all about +her. That is the reason of his coming; it is concerning Lucy and her +sleep-walking, and not about Jonathan. Then I shall never know the real +truth now! How silly I am. That awful journal gets hold of my +imagination and tinges everything with something of its own colour. Of +course it is about Lucy. That habit came back to the poor dear, and that +awful night on the cliff must have made her ill. I had almost forgotten +in my own affairs how ill she was afterwards. She must have told him +of her sleep-walking adventure on the cliff, and that I knew all about +it; and now he wants me to tell him what she knows, so that he may +understand. I hope I did right in not saying anything of it to Mrs. +Westenra; I should never forgive myself if any act of mine, were it even +a negative one, brought harm on poor dear Lucy. I hope, too, Dr. Van +Helsing will not blame me; I have had so much trouble and anxiety of +late that I feel I cannot bear more just at present. + +I suppose a cry does us all good at times--clears the air as other rain +does. Perhaps it was reading the journal yesterday that upset me, and +then Jonathan went away this morning to stay away from me a whole day +and night, the first time we have been parted since our marriage. I do +hope the dear fellow will take care of himself, and that nothing will +occur to upset him. It is two o’clock, and the doctor will be here soon +now. I shall say nothing of Jonathan’s journal unless he asks me. I am +so glad I have type-written out my own journal, so that, in case he asks +about Lucy, I can hand it to him; it will save much questioning. + + * * * * * + +_Later._--He has come and gone. Oh, what a strange meeting, and how it +all makes my head whirl round! I feel like one in a dream. Can it be all +possible, or even a part of it? If I had not read Jonathan’s journal +first, I should never have accepted even a possibility. Poor, poor, dear +Jonathan! How he must have suffered. Please the good God, all this may +not upset him again. I shall try to save him from it; but it may be even +a consolation and a help to him--terrible though it be and awful in its +consequences--to know for certain that his eyes and ears and brain did +not deceive him, and that it is all true. It may be that it is the doubt +which haunts him; that when the doubt is removed, no matter +which--waking or dreaming--may prove the truth, he will be more +satisfied and better able to bear the shock. Dr. Van Helsing must be a +good man as well as a clever one if he is Arthur’s friend and Dr. +Seward’s, and if they brought him all the way from Holland to look after +Lucy. I feel from having seen him that he _is_ good and kind and of a +noble nature. When he comes to-morrow I shall ask him about Jonathan; +and then, please God, all this sorrow and anxiety may lead to a good +end. I used to think I would like to practise interviewing; Jonathan’s +friend on “The Exeter News” told him that memory was everything in such +work--that you must be able to put down exactly almost every word +spoken, even if you had to refine some of it afterwards. Here was a rare +interview; I shall try to record it _verbatim_. + +It was half-past two o’clock when the knock came. I took my courage _à +deux mains_ and waited. In a few minutes Mary opened the door, and +announced “Dr. Van Helsing.” + +I rose and bowed, and he came towards me; a man of medium weight, +strongly built, with his shoulders set back over a broad, deep chest and +a neck well balanced on the trunk as the head is on the neck. The poise +of the head strikes one at once as indicative of thought and power; the +head is noble, well-sized, broad, and large behind the ears. The face, +clean-shaven, shows a hard, square chin, a large, resolute, mobile +mouth, a good-sized nose, rather straight, but with quick, sensitive +nostrils, that seem to broaden as the big, bushy brows come down and the +mouth tightens. The forehead is broad and fine, rising at first almost +straight and then sloping back above two bumps or ridges wide apart; +such a forehead that the reddish hair cannot possibly tumble over it, +but falls naturally back and to the sides. Big, dark blue eyes are set +widely apart, and are quick and tender or stern with the man’s moods. He +said to me:-- + +“Mrs. Harker, is it not?” I bowed assent. + +“That was Miss Mina Murray?” Again I assented. + +“It is Mina Murray that I came to see that was friend of that poor dear +child Lucy Westenra. Madam Mina, it is on account of the dead I come.” + +“Sir,” I said, “you could have no better claim on me than that you were +a friend and helper of Lucy Westenra.” And I held out my hand. He took +it and said tenderly:-- + +“Oh, Madam Mina, I knew that the friend of that poor lily girl must be +good, but I had yet to learn----” He finished his speech with a courtly +bow. I asked him what it was that he wanted to see me about, so he at +once began:-- + +“I have read your letters to Miss Lucy. Forgive me, but I had to begin +to inquire somewhere, and there was none to ask. I know that you were +with her at Whitby. She sometimes kept a diary--you need not look +surprised, Madam Mina; it was begun after you had left, and was in +imitation of you--and in that diary she traces by inference certain +things to a sleep-walking in which she puts down that you saved her. In +great perplexity then I come to you, and ask you out of your so much +kindness to tell me all of it that you can remember.” + +“I can tell you, I think, Dr. Van Helsing, all about it.” + +“Ah, then you have good memory for facts, for details? It is not always +so with young ladies.” + +“No, doctor, but I wrote it all down at the time. I can show it to you +if you like.” + +“Oh, Madam Mina, I will be grateful; you will do me much favour.” I +could not resist the temptation of mystifying him a bit--I suppose it is +some of the taste of the original apple that remains still in our +mouths--so I handed him the shorthand diary. He took it with a grateful +bow, and said:-- + +“May I read it?” + +“If you wish,” I answered as demurely as I could. He opened it, and for +an instant his face fell. Then he stood up and bowed. + +“Oh, you so clever woman!” he said. “I knew long that Mr. Jonathan was a +man of much thankfulness; but see, his wife have all the good things. +And will you not so much honour me and so help me as to read it for me? +Alas! I know not the shorthand.” By this time my little joke was over, +and I was almost ashamed; so I took the typewritten copy from my +workbasket and handed it to him. + +“Forgive me,” I said: “I could not help it; but I had been thinking that +it was of dear Lucy that you wished to ask, and so that you might not +have time to wait--not on my account, but because I know your time must +be precious--I have written it out on the typewriter for you.” + +He took it and his eyes glistened. “You are so good,” he said. “And may +I read it now? I may want to ask you some things when I have read.” + +“By all means,” I said, “read it over whilst I order lunch; and then you +can ask me questions whilst we eat.” He bowed and settled himself in a +chair with his back to the light, and became absorbed in the papers, +whilst I went to see after lunch chiefly in order that he might not be +disturbed. When I came back, I found him walking hurriedly up and down +the room, his face all ablaze with excitement. He rushed up to me and +took me by both hands. + +“Oh, Madam Mina,” he said, “how can I say what I owe to you? This paper +is as sunshine. It opens the gate to me. I am daze, I am dazzle, with so +much light, and yet clouds roll in behind the light every time. But that +you do not, cannot, comprehend. Oh, but I am grateful to you, you so +clever woman. Madam”--he said this very solemnly--“if ever Abraham Van +Helsing can do anything for you or yours, I trust you will let me know. +It will be pleasure and delight if I may serve you as a friend; as a +friend, but all I have ever learned, all I can ever do, shall be for you +and those you love. There are darknesses in life, and there are lights; +you are one of the lights. You will have happy life and good life, and +your husband will be blessed in you.” + +“But, doctor, you praise me too much, and--and you do not know me.” + +“Not know you--I, who am old, and who have studied all my life men and +women; I, who have made my specialty the brain and all that belongs to +him and all that follow from him! And I have read your diary that you +have so goodly written for me, and which breathes out truth in every +line. I, who have read your so sweet letter to poor Lucy of your +marriage and your trust, not know you! Oh, Madam Mina, good women tell +all their lives, and by day and by hour and by minute, such things that +angels can read; and we men who wish to know have in us something of +angels’ eyes. Your husband is noble nature, and you are noble too, for +you trust, and trust cannot be where there is mean nature. And your +husband--tell me of him. Is he quite well? Is all that fever gone, and +is he strong and hearty?” I saw here an opening to ask him about +Jonathan, so I said:-- + +“He was almost recovered, but he has been greatly upset by Mr. Hawkins’s +death.” He interrupted:-- + +“Oh, yes, I know, I know. I have read your last two letters.” I went +on:-- + +“I suppose this upset him, for when we were in town on Thursday last he +had a sort of shock.” + +“A shock, and after brain fever so soon! That was not good. What kind of +a shock was it?” + +“He thought he saw some one who recalled something terrible, something +which led to his brain fever.” And here the whole thing seemed to +overwhelm me in a rush. The pity for Jonathan, the horror which he +experienced, the whole fearful mystery of his diary, and the fear that +has been brooding over me ever since, all came in a tumult. I suppose I +was hysterical, for I threw myself on my knees and held up my hands to +him, and implored him to make my husband well again. He took my hands +and raised me up, and made me sit on the sofa, and sat by me; he held my +hand in his, and said to me with, oh, such infinite sweetness:-- + +“My life is a barren and lonely one, and so full of work that I have not +had much time for friendships; but since I have been summoned to here by +my friend John Seward I have known so many good people and seen such +nobility that I feel more than ever--and it has grown with my advancing +years--the loneliness of my life. Believe, me, then, that I come here +full of respect for you, and you have given me hope--hope, not in what I +am seeking of, but that there are good women still left to make life +happy--good women, whose lives and whose truths may make good lesson for +the children that are to be. I am glad, glad, that I may here be of some +use to you; for if your husband suffer, he suffer within the range of my +study and experience. I promise you that I will gladly do _all_ for him +that I can--all to make his life strong and manly, and your life a happy +one. Now you must eat. You are overwrought and perhaps over-anxious. +Husband Jonathan would not like to see you so pale; and what he like not +where he love, is not to his good. Therefore for his sake you must eat +and smile. You have told me all about Lucy, and so now we shall not +speak of it, lest it distress. I shall stay in Exeter to-night, for I +want to think much over what you have told me, and when I have thought I +will ask you questions, if I may. And then, too, you will tell me of +husband Jonathan’s trouble so far as you can, but not yet. You must eat +now; afterwards you shall tell me all.” + +After lunch, when we went back to the drawing-room, he said to me:-- + +“And now tell me all about him.” When it came to speaking to this great +learned man, I began to fear that he would think me a weak fool, and +Jonathan a madman--that journal is all so strange--and I hesitated to go +on. But he was so sweet and kind, and he had promised to help, and I +trusted him, so I said:-- + +“Dr. Van Helsing, what I have to tell you is so queer that you must not +laugh at me or at my husband. I have been since yesterday in a sort of +fever of doubt; you must be kind to me, and not think me foolish that I +have even half believed some very strange things.” He reassured me by +his manner as well as his words when he said:-- + +“Oh, my dear, if you only know how strange is the matter regarding which +I am here, it is you who would laugh. I have learned not to think little +of any one’s belief, no matter how strange it be. I have tried to keep +an open mind; and it is not the ordinary things of life that could close +it, but the strange things, the extraordinary things, the things that +make one doubt if they be mad or sane.” + +“Thank you, thank you, a thousand times! You have taken a weight off my +mind. If you will let me, I shall give you a paper to read. It is long, +but I have typewritten it out. It will tell you my trouble and +Jonathan’s. It is the copy of his journal when abroad, and all that +happened. I dare not say anything of it; you will read for yourself and +judge. And then when I see you, perhaps, you will be very kind and tell +me what you think.” + +“I promise,” he said as I gave him the papers; “I shall in the morning, +so soon as I can, come to see you and your husband, if I may.” + +“Jonathan will be here at half-past eleven, and you must come to lunch +with us and see him then; you could catch the quick 3:34 train, which +will leave you at Paddington before eight.” He was surprised at my +knowledge of the trains off-hand, but he does not know that I have made +up all the trains to and from Exeter, so that I may help Jonathan in +case he is in a hurry. + +So he took the papers with him and went away, and I sit here +thinking--thinking I don’t know what. + + * * * * * + +_Letter (by hand), Van Helsing to Mrs. Harker._ + +“_25 September, 6 o’clock._ + +“Dear Madam Mina,-- + +“I have read your husband’s so wonderful diary. You may sleep without +doubt. Strange and terrible as it is, it is _true_! I will pledge my +life on it. It may be worse for others; but for him and you there is no +dread. He is a noble fellow; and let me tell you from experience of men, +that one who would do as he did in going down that wall and to that +room--ay, and going a second time--is not one to be injured in +permanence by a shock. His brain and his heart are all right; this I +swear, before I have even seen him; so be at rest. I shall have much to +ask him of other things. I am blessed that to-day I come to see you, for +I have learn all at once so much that again I am dazzle--dazzle more +than ever, and I must think. + +“Yours the most faithful, + +“ABRAHAM VAN HELSING.” + + +_Letter, Mrs. Harker to Van Helsing._ + +“_25 September, 6:30 p. m._ + +“My dear Dr. Van Helsing,-- + +“A thousand thanks for your kind letter, which has taken a great weight +off my mind. And yet, if it be true, what terrible things there are in +the world, and what an awful thing if that man, that monster, be really +in London! I fear to think. I have this moment, whilst writing, had a +wire from Jonathan, saying that he leaves by the 6:25 to-night from +Launceston and will be here at 10:18, so that I shall have no fear +to-night. Will you, therefore, instead of lunching with us, please come +to breakfast at eight o’clock, if this be not too early for you? You can +get away, if you are in a hurry, by the 10:30 train, which will bring +you to Paddington by 2:35. Do not answer this, as I shall take it that, +if I do not hear, you will come to breakfast. + +“Believe me, + +“Your faithful and grateful friend, + +“MINA HARKER.” + + +_Jonathan Harker’s Journal._ + +_26 September._--I thought never to write in this diary again, but the +time has come. When I got home last night Mina had supper ready, and +when we had supped she told me of Van Helsing’s visit, and of her having +given him the two diaries copied out, and of how anxious she has been +about me. She showed me in the doctor’s letter that all I wrote down was +true. It seems to have made a new man of me. It was the doubt as to the +reality of the whole thing that knocked me over. I felt impotent, and in +the dark, and distrustful. But, now that I _know_, I am not afraid, even +of the Count. He has succeeded after all, then, in his design in getting +to London, and it was he I saw. He has got younger, and how? Van Helsing +is the man to unmask him and hunt him out, if he is anything like what +Mina says. We sat late, and talked it all over. Mina is dressing, and I +shall call at the hotel in a few minutes and bring him over.... + +He was, I think, surprised to see me. When I came into the room where he +was, and introduced myself, he took me by the shoulder, and turned my +face round to the light, and said, after a sharp scrutiny:-- + +“But Madam Mina told me you were ill, that you had had a shock.” It was +so funny to hear my wife called “Madam Mina” by this kindly, +strong-faced old man. I smiled, and said:-- + +“I _was_ ill, I _have_ had a shock; but you have cured me already.” + +“And how?” + +“By your letter to Mina last night. I was in doubt, and then everything +took a hue of unreality, and I did not know what to trust, even the +evidence of my own senses. Not knowing what to trust, I did not know +what to do; and so had only to keep on working in what had hitherto been +the groove of my life. The groove ceased to avail me, and I mistrusted +myself. Doctor, you don’t know what it is to doubt everything, even +yourself. No, you don’t; you couldn’t with eyebrows like yours.” He +seemed pleased, and laughed as he said:-- + +“So! You are physiognomist. I learn more here with each hour. I am with +so much pleasure coming to you to breakfast; and, oh, sir, you will +pardon praise from an old man, but you are blessed in your wife.” I +would listen to him go on praising Mina for a day, so I simply nodded +and stood silent. + +“She is one of God’s women, fashioned by His own hand to show us men and +other women that there is a heaven where we can enter, and that its +light can be here on earth. So true, so sweet, so noble, so little an +egoist--and that, let me tell you, is much in this age, so sceptical and +selfish. And you, sir--I have read all the letters to poor Miss Lucy, +and some of them speak of you, so I know you since some days from the +knowing of others; but I have seen your true self since last night. You +will give me your hand, will you not? And let us be friends for all our +lives.” + +We shook hands, and he was so earnest and so kind that it made me quite +choky. + +“And now,” he said, “may I ask you for some more help? I have a great +task to do, and at the beginning it is to know. You can help me here. +Can you tell me what went before your going to Transylvania? Later on I +may ask more help, and of a different kind; but at first this will do.” + +“Look here, sir,” I said, “does what you have to do concern the Count?” + +“It does,” he said solemnly. + +“Then I am with you heart and soul. As you go by the 10:30 train, you +will not have time to read them; but I shall get the bundle of papers. +You can take them with you and read them in the train.” + +After breakfast I saw him to the station. When we were parting he +said:-- + +“Perhaps you will come to town if I send to you, and take Madam Mina +too.” + +“We shall both come when you will,” I said. + +I had got him the morning papers and the London papers of the previous +night, and while we were talking at the carriage window, waiting for the +train to start, he was turning them over. His eyes suddenly seemed to +catch something in one of them, “The Westminster Gazette”--I knew it by +the colour--and he grew quite white. He read something intently, +groaning to himself: “Mein Gott! Mein Gott! So soon! so soon!” I do not +think he remembered me at the moment. Just then the whistle blew, and +the train moved off. This recalled him to himself, and he leaned out of +the window and waved his hand, calling out: “Love to Madam Mina; I shall +write so soon as ever I can.” + + +_Dr. Seward’s Diary._ + +_26 September._--Truly there is no such thing as finality. Not a week +since I said “Finis,” and yet here I am starting fresh again, or rather +going on with the same record. Until this afternoon I had no cause to +think of what is done. Renfield had become, to all intents, as sane as +he ever was. He was already well ahead with his fly business; and he had +just started in the spider line also; so he had not been of any trouble +to me. I had a letter from Arthur, written on Sunday, and from it I +gather that he is bearing up wonderfully well. Quincey Morris is with +him, and that is much of a help, for he himself is a bubbling well of +good spirits. Quincey wrote me a line too, and from him I hear that +Arthur is beginning to recover something of his old buoyancy; so as to +them all my mind is at rest. As for myself, I was settling down to my +work with the enthusiasm which I used to have for it, so that I might +fairly have said that the wound which poor Lucy left on me was becoming +cicatrised. Everything is, however, now reopened; and what is to be the +end God only knows. I have an idea that Van Helsing thinks he knows, +too, but he will only let out enough at a time to whet curiosity. He +went to Exeter yesterday, and stayed there all night. To-day he came +back, and almost bounded into the room at about half-past five o’clock, +and thrust last night’s “Westminster Gazette” into my hand. + +“What do you think of that?” he asked as he stood back and folded his +arms. + +I looked over the paper, for I really did not know what he meant; but he +took it from me and pointed out a paragraph about children being decoyed +away at Hampstead. It did not convey much to me, until I reached a +passage where it described small punctured wounds on their throats. An +idea struck me, and I looked up. “Well?” he said. + +“It is like poor Lucy’s.” + +“And what do you make of it?” + +“Simply that there is some cause in common. Whatever it was that injured +her has injured them.” I did not quite understand his answer:-- + +“That is true indirectly, but not directly.” + +“How do you mean, Professor?” I asked. I was a little inclined to take +his seriousness lightly--for, after all, four days of rest and freedom +from burning, harrowing anxiety does help to restore one’s spirits--but +when I saw his face, it sobered me. Never, even in the midst of our +despair about poor Lucy, had he looked more stern. + +“Tell me!” I said. “I can hazard no opinion. I do not know what to +think, and I have no data on which to found a conjecture.” + +“Do you mean to tell me, friend John, that you have no suspicion as to +what poor Lucy died of; not after all the hints given, not only by +events, but by me?” + +“Of nervous prostration following on great loss or waste of blood.” + +“And how the blood lost or waste?” I shook my head. He stepped over and +sat down beside me, and went on:-- + +“You are clever man, friend John; you reason well, and your wit is bold; +but you are too prejudiced. You do not let your eyes see nor your ears +hear, and that which is outside your daily life is not of account to +you. Do you not think that there are things which you cannot understand, +and yet which are; that some people see things that others cannot? But +there are things old and new which must not be contemplate by men’s +eyes, because they know--or think they know--some things which other men +have told them. Ah, it is the fault of our science that it wants to +explain all; and if it explain not, then it says there is nothing to +explain. But yet we see around us every day the growth of new beliefs, +which think themselves new; and which are yet but the old, which pretend +to be young--like the fine ladies at the opera. I suppose now you do not +believe in corporeal transference. No? Nor in materialisation. No? Nor +in astral bodies. No? Nor in the reading of thought. No? Nor in +hypnotism----” + +“Yes,” I said. “Charcot has proved that pretty well.” He smiled as he +went on: “Then you are satisfied as to it. Yes? And of course then you +understand how it act, and can follow the mind of the great +Charcot--alas that he is no more!--into the very soul of the patient +that he influence. No? Then, friend John, am I to take it that you +simply accept fact, and are satisfied to let from premise to conclusion +be a blank? No? Then tell me--for I am student of the brain--how you +accept the hypnotism and reject the thought reading. Let me tell you, my +friend, that there are things done to-day in electrical science which +would have been deemed unholy by the very men who discovered +electricity--who would themselves not so long before have been burned +as wizards. There are always mysteries in life. Why was it that +Methuselah lived nine hundred years, and ‘Old Parr’ one hundred and +sixty-nine, and yet that poor Lucy, with four men’s blood in her poor +veins, could not live even one day? For, had she live one more day, we +could have save her. Do you know all the mystery of life and death? Do +you know the altogether of comparative anatomy and can say wherefore the +qualities of brutes are in some men, and not in others? Can you tell me +why, when other spiders die small and soon, that one great spider lived +for centuries in the tower of the old Spanish church and grew and grew, +till, on descending, he could drink the oil of all the church lamps? Can +you tell me why in the Pampas, ay and elsewhere, there are bats that +come at night and open the veins of cattle and horses and suck dry their +veins; how in some islands of the Western seas there are bats which hang +on the trees all day, and those who have seen describe as like giant +nuts or pods, and that when the sailors sleep on the deck, because that +it is hot, flit down on them, and then--and then in the morning are +found dead men, white as even Miss Lucy was?” + +“Good God, Professor!” I said, starting up. “Do you mean to tell me that +Lucy was bitten by such a bat; and that such a thing is here in London +in the nineteenth century?” He waved his hand for silence, and went +on:-- + +“Can you tell me why the tortoise lives more long than generations of +men; why the elephant goes on and on till he have seen dynasties; and +why the parrot never die only of bite of cat or dog or other complaint? +Can you tell me why men believe in all ages and places that there are +some few who live on always if they be permit; that there are men and +women who cannot die? We all know--because science has vouched for the +fact--that there have been toads shut up in rocks for thousands of +years, shut in one so small hole that only hold him since the youth of +the world. Can you tell me how the Indian fakir can make himself to die +and have been buried, and his grave sealed and corn sowed on it, and the +corn reaped and be cut and sown and reaped and cut again, and then men +come and take away the unbroken seal and that there lie the Indian +fakir, not dead, but that rise up and walk amongst them as before?” Here +I interrupted him. I was getting bewildered; he so crowded on my mind +his list of nature’s eccentricities and possible impossibilities that my +imagination was getting fired. I had a dim idea that he was teaching me +some lesson, as long ago he used to do in his study at Amsterdam; but +he used then to tell me the thing, so that I could have the object of +thought in mind all the time. But now I was without this help, yet I +wanted to follow him, so I said:-- + +“Professor, let me be your pet student again. Tell me the thesis, so +that I may apply your knowledge as you go on. At present I am going in +my mind from point to point as a mad man, and not a sane one, follows an +idea. I feel like a novice lumbering through a bog in a mist, jumping +from one tussock to another in the mere blind effort to move on without +knowing where I am going.” + +“That is good image,” he said. “Well, I shall tell you. My thesis is +this: I want you to believe.” + +“To believe what?” + +“To believe in things that you cannot. Let me illustrate. I heard once +of an American who so defined faith: ‘that faculty which enables us to +believe things which we know to be untrue.’ For one, I follow that man. +He meant that we shall have an open mind, and not let a little bit of +truth check the rush of a big truth, like a small rock does a railway +truck. We get the small truth first. Good! We keep him, and we value +him; but all the same we must not let him think himself all the truth in +the universe.” + +“Then you want me not to let some previous conviction injure the +receptivity of my mind with regard to some strange matter. Do I read +your lesson aright?” + +“Ah, you are my favourite pupil still. It is worth to teach you. Now +that you are willing to understand, you have taken the first step to +understand. You think then that those so small holes in the children’s +throats were made by the same that made the hole in Miss Lucy?” + +“I suppose so.” He stood up and said solemnly:-- + +“Then you are wrong. Oh, would it were so! but alas! no. It is worse, +far, far worse.” + +“In God’s name, Professor Van Helsing, what do you mean?” I cried. + +He threw himself with a despairing gesture into a chair, and placed his +elbows on the table, covering his face with his hands as he spoke:-- + +“They were made by Miss Lucy!” + + + + +CHAPTER XV + +DR. SEWARD’S DIARY--_continued_. + + +For a while sheer anger mastered me; it was as if he had during her life +struck Lucy on the face. I smote the table hard and rose up as I said to +him:-- + +“Dr. Van Helsing, are you mad?” He raised his head and looked at me, and +somehow the tenderness of his face calmed me at once. “Would I were!” he +said. “Madness were easy to bear compared with truth like this. Oh, my +friend, why, think you, did I go so far round, why take so long to tell +you so simple a thing? Was it because I hate you and have hated you all +my life? Was it because I wished to give you pain? Was it that I wanted, +now so late, revenge for that time when you saved my life, and from a +fearful death? Ah no!” + +“Forgive me,” said I. He went on:-- + +“My friend, it was because I wished to be gentle in the breaking to you, +for I know you have loved that so sweet lady. But even yet I do not +expect you to believe. It is so hard to accept at once any abstract +truth, that we may doubt such to be possible when we have always +believed the ‘no’ of it; it is more hard still to accept so sad a +concrete truth, and of such a one as Miss Lucy. To-night I go to prove +it. Dare you come with me?” + +This staggered me. A man does not like to prove such a truth; Byron +excepted from the category, jealousy. + + “And prove the very truth he most abhorred.” + +He saw my hesitation, and spoke:-- + +“The logic is simple, no madman’s logic this time, jumping from tussock +to tussock in a misty bog. If it be not true, then proof will be relief; +at worst it will not harm. If it be true! Ah, there is the dread; yet +very dread should help my cause, for in it is some need of belief. Come, +I tell you what I propose: first, that we go off now and see that child +in the hospital. Dr. Vincent, of the North Hospital, where the papers +say the child is, is friend of mine, and I think of yours since you were +in class at Amsterdam. He will let two scientists see his case, if he +will not let two friends. We shall tell him nothing, but only that we +wish to learn. And then----” + +“And then?” He took a key from his pocket and held it up. “And then we +spend the night, you and I, in the churchyard where Lucy lies. This is +the key that lock the tomb. I had it from the coffin-man to give to +Arthur.” My heart sank within me, for I felt that there was some fearful +ordeal before us. I could do nothing, however, so I plucked up what +heart I could and said that we had better hasten, as the afternoon was +passing.... + +We found the child awake. It had had a sleep and taken some food, and +altogether was going on well. Dr. Vincent took the bandage from its +throat, and showed us the punctures. There was no mistaking the +similarity to those which had been on Lucy’s throat. They were smaller, +and the edges looked fresher; that was all. We asked Vincent to what he +attributed them, and he replied that it must have been a bite of some +animal, perhaps a rat; but, for his own part, he was inclined to think +that it was one of the bats which are so numerous on the northern +heights of London. “Out of so many harmless ones,” he said, “there may +be some wild specimen from the South of a more malignant species. Some +sailor may have brought one home, and it managed to escape; or even from +the Zoölogical Gardens a young one may have got loose, or one be bred +there from a vampire. These things do occur, you know. Only ten days ago +a wolf got out, and was, I believe, traced up in this direction. For a +week after, the children were playing nothing but Red Riding Hood on the +Heath and in every alley in the place until this ‘bloofer lady’ scare +came along, since when it has been quite a gala-time with them. Even +this poor little mite, when he woke up to-day, asked the nurse if he +might go away. When she asked him why he wanted to go, he said he wanted +to play with the ‘bloofer lady.’” + +“I hope,” said Van Helsing, “that when you are sending the child home +you will caution its parents to keep strict watch over it. These fancies +to stray are most dangerous; and if the child were to remain out another +night, it would probably be fatal. But in any case I suppose you will +not let it away for some days?” + +“Certainly not, not for a week at least; longer if the wound is not +healed.” + +Our visit to the hospital took more time than we had reckoned on, and +the sun had dipped before we came out. When Van Helsing saw how dark it +was, he said:-- + +“There is no hurry. It is more late than I thought. Come, let us seek +somewhere that we may eat, and then we shall go on our way.” + +We dined at “Jack Straw’s Castle” along with a little crowd of +bicyclists and others who were genially noisy. About ten o’clock we +started from the inn. It was then very dark, and the scattered lamps +made the darkness greater when we were once outside their individual +radius. The Professor had evidently noted the road we were to go, for he +went on unhesitatingly; but, as for me, I was in quite a mixup as to +locality. As we went further, we met fewer and fewer people, till at +last we were somewhat surprised when we met even the patrol of horse +police going their usual suburban round. At last we reached the wall of +the churchyard, which we climbed over. With some little difficulty--for +it was very dark, and the whole place seemed so strange to us--we found +the Westenra tomb. The Professor took the key, opened the creaky door, +and standing back, politely, but quite unconsciously, motioned me to +precede him. There was a delicious irony in the offer, in the +courtliness of giving preference on such a ghastly occasion. My +companion followed me quickly, and cautiously drew the door to, after +carefully ascertaining that the lock was a falling, and not a spring, +one. In the latter case we should have been in a bad plight. Then he +fumbled in his bag, and taking out a matchbox and a piece of candle, +proceeded to make a light. The tomb in the day-time, and when wreathed +with fresh flowers, had looked grim and gruesome enough; but now, some +days afterwards, when the flowers hung lank and dead, their whites +turning to rust and their greens to browns; when the spider and the +beetle had resumed their accustomed dominance; when time-discoloured +stone, and dust-encrusted mortar, and rusty, dank iron, and tarnished +brass, and clouded silver-plating gave back the feeble glimmer of a +candle, the effect was more miserable and sordid than could have been +imagined. It conveyed irresistibly the idea that life--animal life--was +not the only thing which could pass away. + +Van Helsing went about his work systematically. Holding his candle so +that he could read the coffin plates, and so holding it that the sperm +dropped in white patches which congealed as they touched the metal, he +made assurance of Lucy’s coffin. Another search in his bag, and he took +out a turnscrew. + +“What are you going to do?” I asked. + +“To open the coffin. You shall yet be convinced.” Straightway he began +taking out the screws, and finally lifted off the lid, showing the +casing of lead beneath. The sight was almost too much for me. It seemed +to be as much an affront to the dead as it would have been to have +stripped off her clothing in her sleep whilst living; I actually took +hold of his hand to stop him. He only said: “You shall see,” and again +fumbling in his bag, took out a tiny fret-saw. Striking the turnscrew +through the lead with a swift downward stab, which made me wince, he +made a small hole, which was, however, big enough to admit the point of +the saw. I had expected a rush of gas from the week-old corpse. We +doctors, who have had to study our dangers, have to become accustomed to +such things, and I drew back towards the door. But the Professor never +stopped for a moment; he sawed down a couple of feet along one side of +the lead coffin, and then across, and down the other side. Taking the +edge of the loose flange, he bent it back towards the foot of the +coffin, and holding up the candle into the aperture, motioned to me to +look. + +I drew near and looked. The coffin was empty. + +It was certainly a surprise to me, and gave me a considerable shock, but +Van Helsing was unmoved. He was now more sure than ever of his ground, +and so emboldened to proceed in his task. “Are you satisfied now, friend +John?” he asked. + +I felt all the dogged argumentativeness of my nature awake within me as +I answered him:-- + +“I am satisfied that Lucy’s body is not in that coffin; but that only +proves one thing.” + +“And what is that, friend John?” + +“That it is not there.” + +“That is good logic,” he said, “so far as it goes. But how do you--how +can you--account for it not being there?” + +“Perhaps a body-snatcher,” I suggested. “Some of the undertaker’s people +may have stolen it.” I felt that I was speaking folly, and yet it was +the only real cause which I could suggest. The Professor sighed. “Ah +well!” he said, “we must have more proof. Come with me.” + +He put on the coffin-lid again, gathered up all his things and placed +them in the bag, blew out the light, and placed the candle also in the +bag. We opened the door, and went out. Behind us he closed the door and +locked it. He handed me the key, saying: “Will you keep it? You had +better be assured.” I laughed--it was not a very cheerful laugh, I am +bound to say--as I motioned him to keep it. “A key is nothing,” I said; +“there may be duplicates; and anyhow it is not difficult to pick a lock +of that kind.” He said nothing, but put the key in his pocket. Then he +told me to watch at one side of the churchyard whilst he would watch at +the other. I took up my place behind a yew-tree, and I saw his dark +figure move until the intervening headstones and trees hid it from my +sight. + +It was a lonely vigil. Just after I had taken my place I heard a distant +clock strike twelve, and in time came one and two. I was chilled and +unnerved, and angry with the Professor for taking me on such an errand +and with myself for coming. I was too cold and too sleepy to be keenly +observant, and not sleepy enough to betray my trust so altogether I had +a dreary, miserable time. + +Suddenly, as I turned round, I thought I saw something like a white +streak, moving between two dark yew-trees at the side of the churchyard +farthest from the tomb; at the same time a dark mass moved from the +Professor’s side of the ground, and hurriedly went towards it. Then I +too moved; but I had to go round headstones and railed-off tombs, and I +stumbled over graves. The sky was overcast, and somewhere far off an +early cock crew. A little way off, beyond a line of scattered +juniper-trees, which marked the pathway to the church, a white, dim +figure flitted in the direction of the tomb. The tomb itself was hidden +by trees, and I could not see where the figure disappeared. I heard the +rustle of actual movement where I had first seen the white figure, and +coming over, found the Professor holding in his arms a tiny child. When +he saw me he held it out to me, and said:-- + +“Are you satisfied now?” + +“No,” I said, in a way that I felt was aggressive. + +“Do you not see the child?” + +“Yes, it is a child, but who brought it here? And is it wounded?” I +asked. + +“We shall see,” said the Professor, and with one impulse we took our way +out of the churchyard, he carrying the sleeping child. + +When we had got some little distance away, we went into a clump of +trees, and struck a match, and looked at the child’s throat. It was +without a scratch or scar of any kind. + +“Was I right?” I asked triumphantly. + +“We were just in time,” said the Professor thankfully. + +We had now to decide what we were to do with the child, and so consulted +about it. If we were to take it to a police-station we should have to +give some account of our movements during the night; at least, we should +have had to make some statement as to how we had come to find the child. +So finally we decided that we would take it to the Heath, and when we +heard a policeman coming, would leave it where he could not fail to find +it; we would then seek our way home as quickly as we could. All fell out +well. At the edge of Hampstead Heath we heard a policeman’s heavy +tramp, and laying the child on the pathway, we waited and watched until +he saw it as he flashed his lantern to and fro. We heard his exclamation +of astonishment, and then we went away silently. By good chance we got a +cab near the “Spaniards,” and drove to town. + +I cannot sleep, so I make this entry. But I must try to get a few hours’ +sleep, as Van Helsing is to call for me at noon. He insists that I shall +go with him on another expedition. + + * * * * * + +_27 September._--It was two o’clock before we found a suitable +opportunity for our attempt. The funeral held at noon was all completed, +and the last stragglers of the mourners had taken themselves lazily +away, when, looking carefully from behind a clump of alder-trees, we saw +the sexton lock the gate after him. We knew then that we were safe till +morning did we desire it; but the Professor told me that we should not +want more than an hour at most. Again I felt that horrid sense of the +reality of things, in which any effort of imagination seemed out of +place; and I realised distinctly the perils of the law which we were +incurring in our unhallowed work. Besides, I felt it was all so useless. +Outrageous as it was to open a leaden coffin, to see if a woman dead +nearly a week were really dead, it now seemed the height of folly to +open the tomb again, when we knew, from the evidence of our own +eyesight, that the coffin was empty. I shrugged my shoulders, however, +and rested silent, for Van Helsing had a way of going on his own road, +no matter who remonstrated. He took the key, opened the vault, and again +courteously motioned me to precede. The place was not so gruesome as +last night, but oh, how unutterably mean-looking when the sunshine +streamed in. Van Helsing walked over to Lucy’s coffin, and I followed. +He bent over and again forced back the leaden flange; and then a shock +of surprise and dismay shot through me. + +There lay Lucy, seemingly just as we had seen her the night before her +funeral. She was, if possible, more radiantly beautiful than ever; and I +could not believe that she was dead. The lips were red, nay redder than +before; and on the cheeks was a delicate bloom. + +“Is this a juggle?” I said to him. + +“Are you convinced now?” said the Professor in response, and as he spoke +he put over his hand, and in a way that made me shudder, pulled back the +dead lips and showed the white teeth. + +“See,” he went on, “see, they are even sharper than before. With this +and this”--and he touched one of the canine teeth and that below +it--“the little children can be bitten. Are you of belief now, friend +John?” Once more, argumentative hostility woke within me. I _could_ not +accept such an overwhelming idea as he suggested; so, with an attempt to +argue of which I was even at the moment ashamed, I said:-- + +“She may have been placed here since last night.” + +“Indeed? That is so, and by whom?” + +“I do not know. Some one has done it.” + +“And yet she has been dead one week. Most peoples in that time would not +look so.” I had no answer for this, so was silent. Van Helsing did not +seem to notice my silence; at any rate, he showed neither chagrin nor +triumph. He was looking intently at the face of the dead woman, raising +the eyelids and looking at the eyes, and once more opening the lips and +examining the teeth. Then he turned to me and said:-- + +“Here, there is one thing which is different from all recorded; here is +some dual life that is not as the common. She was bitten by the vampire +when she was in a trance, sleep-walking--oh, you start; you do not know +that, friend John, but you shall know it all later--and in trance could +he best come to take more blood. In trance she died, and in trance she +is Un-Dead, too. So it is that she differ from all other. Usually when +the Un-Dead sleep at home”--as he spoke he made a comprehensive sweep of +his arm to designate what to a vampire was “home”--“their face show what +they are, but this so sweet that was when she not Un-Dead she go back to +the nothings of the common dead. There is no malign there, see, and so +it make hard that I must kill her in her sleep.” This turned my blood +cold, and it began to dawn upon me that I was accepting Van Helsing’s +theories; but if she were really dead, what was there of terror in the +idea of killing her? He looked up at me, and evidently saw the change in +my face, for he said almost joyously:-- + +“Ah, you believe now?” + +I answered: “Do not press me too hard all at once. I am willing to +accept. How will you do this bloody work?” + +“I shall cut off her head and fill her mouth with garlic, and I shall +drive a stake through her body.” It made me shudder to think of so +mutilating the body of the woman whom I had loved. And yet the feeling +was not so strong as I had expected. I was, in fact, beginning to +shudder at the presence of this being, this Un-Dead, as Van Helsing +called it, and to loathe it. Is it possible that love is all subjective, +or all objective? + +I waited a considerable time for Van Helsing to begin, but he stood as +if wrapped in thought. Presently he closed the catch of his bag with a +snap, and said:-- + +“I have been thinking, and have made up my mind as to what is best. If I +did simply follow my inclining I would do now, at this moment, what is +to be done; but there are other things to follow, and things that are +thousand times more difficult in that them we do not know. This is +simple. She have yet no life taken, though that is of time; and to act +now would be to take danger from her for ever. But then we may have to +want Arthur, and how shall we tell him of this? If you, who saw the +wounds on Lucy’s throat, and saw the wounds so similar on the child’s at +the hospital; if you, who saw the coffin empty last night and full +to-day with a woman who have not change only to be more rose and more +beautiful in a whole week, after she die--if you know of this and know +of the white figure last night that brought the child to the churchyard, +and yet of your own senses you did not believe, how, then, can I expect +Arthur, who know none of those things, to believe? He doubted me when I +took him from her kiss when she was dying. I know he has forgiven me +because in some mistaken idea I have done things that prevent him say +good-bye as he ought; and he may think that in some more mistaken idea +this woman was buried alive; and that in most mistake of all we have +killed her. He will then argue back that it is we, mistaken ones, that +have killed her by our ideas; and so he will be much unhappy always. Yet +he never can be sure; and that is the worst of all. And he will +sometimes think that she he loved was buried alive, and that will paint +his dreams with horrors of what she must have suffered; and again, he +will think that we may be right, and that his so beloved was, after all, +an Un-Dead. No! I told him once, and since then I learn much. Now, since +I know it is all true, a hundred thousand times more do I know that he +must pass through the bitter waters to reach the sweet. He, poor fellow, +must have one hour that will make the very face of heaven grow black to +him; then we can act for good all round and send him peace. My mind is +made up. Let us go. You return home for to-night to your asylum, and see +that all be well. As for me, I shall spend the night here in this +churchyard in my own way. To-morrow night you will come to me to the +Berkeley Hotel at ten of the clock. I shall send for Arthur to come too, +and also that so fine young man of America that gave his blood. Later we +shall all have work to do. I come with you so far as Piccadilly and +there dine, for I must be back here before the sun set.” + +So we locked the tomb and came away, and got over the wall of the +churchyard, which was not much of a task, and drove back to Piccadilly. + + +_Note left by Van Helsing in his portmanteau, Berkeley Hotel directed to +John Seward, M. D._ + +(Not delivered.) + +“_27 September._ + +“Friend John,-- + +“I write this in case anything should happen. I go alone to watch in +that churchyard. It pleases me that the Un-Dead, Miss Lucy, shall not +leave to-night, that so on the morrow night she may be more eager. +Therefore I shall fix some things she like not--garlic and a +crucifix--and so seal up the door of the tomb. She is young as Un-Dead, +and will heed. Moreover, these are only to prevent her coming out; they +may not prevail on her wanting to get in; for then the Un-Dead is +desperate, and must find the line of least resistance, whatsoever it may +be. I shall be at hand all the night from sunset till after the sunrise, +and if there be aught that may be learned I shall learn it. For Miss +Lucy or from her, I have no fear; but that other to whom is there that +she is Un-Dead, he have now the power to seek her tomb and find shelter. +He is cunning, as I know from Mr. Jonathan and from the way that all +along he have fooled us when he played with us for Miss Lucy’s life, and +we lost; and in many ways the Un-Dead are strong. He have always the +strength in his hand of twenty men; even we four who gave our strength +to Miss Lucy it also is all to him. Besides, he can summon his wolf and +I know not what. So if it be that he come thither on this night he shall +find me; but none other shall--until it be too late. But it may be that +he will not attempt the place. There is no reason why he should; his +hunting ground is more full of game than the churchyard where the +Un-Dead woman sleep, and the one old man watch. + +“Therefore I write this in case.... Take the papers that are with this, +the diaries of Harker and the rest, and read them, and then find this +great Un-Dead, and cut off his head and burn his heart or drive a stake +through it, so that the world may rest from him. + +“If it be so, farewell. + +“VAN HELSING.” + + + +_Dr. Seward’s Diary._ + +_28 September._--It is wonderful what a good night’s sleep will do for +one. Yesterday I was almost willing to accept Van Helsing’s monstrous +ideas; but now they seem to start out lurid before me as outrages on +common sense. I have no doubt that he believes it all. I wonder if his +mind can have become in any way unhinged. Surely there must be _some_ +rational explanation of all these mysterious things. Is it possible that +the Professor can have done it himself? He is so abnormally clever that +if he went off his head he would carry out his intent with regard to +some fixed idea in a wonderful way. I am loath to think it, and indeed +it would be almost as great a marvel as the other to find that Van +Helsing was mad; but anyhow I shall watch him carefully. I may get some +light on the mystery. + + * * * * * + +_29 September, morning._.... Last night, at a little before ten o’clock, +Arthur and Quincey came into Van Helsing’s room; he told us all that he +wanted us to do, but especially addressing himself to Arthur, as if all +our wills were centred in his. He began by saying that he hoped we would +all come with him too, “for,” he said, “there is a grave duty to be done +there. You were doubtless surprised at my letter?” This query was +directly addressed to Lord Godalming. + +“I was. It rather upset me for a bit. There has been so much trouble +around my house of late that I could do without any more. I have been +curious, too, as to what you mean. Quincey and I talked it over; but the +more we talked, the more puzzled we got, till now I can say for myself +that I’m about up a tree as to any meaning about anything.” + +“Me too,” said Quincey Morris laconically. + +“Oh,” said the Professor, “then you are nearer the beginning, both of +you, than friend John here, who has to go a long way back before he can +even get so far as to begin.” + +It was evident that he recognised my return to my old doubting frame of +mind without my saying a word. Then, turning to the other two, he said +with intense gravity:-- + +“I want your permission to do what I think good this night. It is, I +know, much to ask; and when you know what it is I propose to do you will +know, and only then, how much. Therefore may I ask that you promise me +in the dark, so that afterwards, though you may be angry with me for a +time--I must not disguise from myself the possibility that such may +be--you shall not blame yourselves for anything.” + +“That’s frank anyhow,” broke in Quincey. “I’ll answer for the Professor. +I don’t quite see his drift, but I swear he’s honest; and that’s good +enough for me.” + +“I thank you, sir,” said Van Helsing proudly. “I have done myself the +honour of counting you one trusting friend, and such endorsement is dear +to me.” He held out a hand, which Quincey took. + +Then Arthur spoke out:-- + +“Dr. Van Helsing, I don’t quite like to ‘buy a pig in a poke,’ as they +say in Scotland, and if it be anything in which my honour as a gentleman +or my faith as a Christian is concerned, I cannot make such a promise. +If you can assure me that what you intend does not violate either of +these two, then I give my consent at once; though for the life of me, I +cannot understand what you are driving at.” + +“I accept your limitation,” said Van Helsing, “and all I ask of you is +that if you feel it necessary to condemn any act of mine, you will first +consider it well and be satisfied that it does not violate your +reservations.” + +“Agreed!” said Arthur; “that is only fair. And now that the +_pourparlers_ are over, may I ask what it is we are to do?” + +“I want you to come with me, and to come in secret, to the churchyard at +Kingstead.” + +Arthur’s face fell as he said in an amazed sort of way:-- + +“Where poor Lucy is buried?” The Professor bowed. Arthur went on: “And +when there?” + +“To enter the tomb!” Arthur stood up. + +“Professor, are you in earnest; or it is some monstrous joke? Pardon me, +I see that you are in earnest.” He sat down again, but I could see that +he sat firmly and proudly, as one who is on his dignity. There was +silence until he asked again:-- + +“And when in the tomb?” + +“To open the coffin.” + +“This is too much!” he said, angrily rising again. “I am willing to be +patient in all things that are reasonable; but in this--this desecration +of the grave--of one who----” He fairly choked with indignation. The +Professor looked pityingly at him. + +“If I could spare you one pang, my poor friend,” he said, “God knows I +would. But this night our feet must tread in thorny paths; or later, and +for ever, the feet you love must walk in paths of flame!” + +Arthur looked up with set white face and said:-- + +“Take care, sir, take care!” + +“Would it not be well to hear what I have to say?” said Van Helsing. +“And then you will at least know the limit of my purpose. Shall I go +on?” + +“That’s fair enough,” broke in Morris. + +After a pause Van Helsing went on, evidently with an effort:-- + +“Miss Lucy is dead; is it not so? Yes! Then there can be no wrong to +her. But if she be not dead----” + +Arthur jumped to his feet. + +“Good God!” he cried. “What do you mean? Has there been any mistake; has +she been buried alive?” He groaned in anguish that not even hope could +soften. + +“I did not say she was alive, my child; I did not think it. I go no +further than to say that she might be Un-Dead.” + +“Un-Dead! Not alive! What do you mean? Is this all a nightmare, or what +is it?” + +“There are mysteries which men can only guess at, which age by age they +may solve only in part. Believe me, we are now on the verge of one. But +I have not done. May I cut off the head of dead Miss Lucy?” + +“Heavens and earth, no!” cried Arthur in a storm of passion. “Not for +the wide world will I consent to any mutilation of her dead body. Dr. +Van Helsing, you try me too far. What have I done to you that you should +torture me so? What did that poor, sweet girl do that you should want to +cast such dishonour on her grave? Are you mad to speak such things, or +am I mad to listen to them? Don’t dare to think more of such a +desecration; I shall not give my consent to anything you do. I have a +duty to do in protecting her grave from outrage; and, by God, I shall do +it!” + +Van Helsing rose up from where he had all the time been seated, and +said, gravely and sternly:-- + +“My Lord Godalming, I, too, have a duty to do, a duty to others, a duty +to you, a duty to the dead; and, by God, I shall do it! All I ask you +now is that you come with me, that you look and listen; and if when +later I make the same request you do not be more eager for its +fulfilment even than I am, then--then I shall do my duty, whatever it +may seem to me. And then, to follow of your Lordship’s wishes I shall +hold myself at your disposal to render an account to you, when and where +you will.” His voice broke a little, and he went on with a voice full of +pity:-- + +“But, I beseech you, do not go forth in anger with me. In a long life of +acts which were often not pleasant to do, and which sometimes did wring +my heart, I have never had so heavy a task as now. Believe me that if +the time comes for you to change your mind towards me, one look from +you will wipe away all this so sad hour, for I would do what a man can +to save you from sorrow. Just think. For why should I give myself so +much of labour and so much of sorrow? I have come here from my own land +to do what I can of good; at the first to please my friend John, and +then to help a sweet young lady, whom, too, I came to love. For her--I +am ashamed to say so much, but I say it in kindness--I gave what you +gave; the blood of my veins; I gave it, I, who was not, like you, her +lover, but only her physician and her friend. I gave to her my nights +and days--before death, after death; and if my death can do her good +even now, when she is the dead Un-Dead, she shall have it freely.” He +said this with a very grave, sweet pride, and Arthur was much affected +by it. He took the old man’s hand and said in a broken voice:-- + +“Oh, it is hard to think of it, and I cannot understand; but at least I +shall go with you and wait.” + + + + +CHAPTER XVI + +DR. SEWARD’S DIARY--_continued_ + + +It was just a quarter before twelve o’clock when we got into the +churchyard over the low wall. The night was dark with occasional gleams +of moonlight between the rents of the heavy clouds that scudded across +the sky. We all kept somehow close together, with Van Helsing slightly +in front as he led the way. When we had come close to the tomb I looked +well at Arthur, for I feared that the proximity to a place laden with so +sorrowful a memory would upset him; but he bore himself well. I took it +that the very mystery of the proceeding was in some way a counteractant +to his grief. The Professor unlocked the door, and seeing a natural +hesitation amongst us for various reasons, solved the difficulty by +entering first himself. The rest of us followed, and he closed the door. +He then lit a dark lantern and pointed to the coffin. Arthur stepped +forward hesitatingly; Van Helsing said to me:-- + +“You were with me here yesterday. Was the body of Miss Lucy in that +coffin?” + +“It was.” The Professor turned to the rest saying:-- + +“You hear; and yet there is no one who does not believe with me.” He +took his screwdriver and again took off the lid of the coffin. Arthur +looked on, very pale but silent; when the lid was removed he stepped +forward. He evidently did not know that there was a leaden coffin, or, +at any rate, had not thought of it. When he saw the rent in the lead, +the blood rushed to his face for an instant, but as quickly fell away +again, so that he remained of a ghastly whiteness; he was still silent. +Van Helsing forced back the leaden flange, and we all looked in and +recoiled. + +The coffin was empty! + +For several minutes no one spoke a word. The silence was broken by +Quincey Morris:-- + +“Professor, I answered for you. Your word is all I want. I wouldn’t ask +such a thing ordinarily--I wouldn’t so dishonour you as to imply a +doubt; but this is a mystery that goes beyond any honour or dishonour. +Is this your doing?” + +“I swear to you by all that I hold sacred that I have not removed nor +touched her. What happened was this: Two nights ago my friend Seward and +I came here--with good purpose, believe me. I opened that coffin, which +was then sealed up, and we found it, as now, empty. We then waited, and +saw something white come through the trees. The next day we came here in +day-time, and she lay there. Did she not, friend John?” + +“Yes.” + +“That night we were just in time. One more so small child was missing, +and we find it, thank God, unharmed amongst the graves. Yesterday I came +here before sundown, for at sundown the Un-Dead can move. I waited here +all the night till the sun rose, but I saw nothing. It was most probable +that it was because I had laid over the clamps of those doors garlic, +which the Un-Dead cannot bear, and other things which they shun. Last +night there was no exodus, so to-night before the sundown I took away my +garlic and other things. And so it is we find this coffin empty. But +bear with me. So far there is much that is strange. Wait you with me +outside, unseen and unheard, and things much stranger are yet to be. +So”--here he shut the dark slide of his lantern--“now to the outside.” +He opened the door, and we filed out, he coming last and locking the +door behind him. + +Oh! but it seemed fresh and pure in the night air after the terror of +that vault. How sweet it was to see the clouds race by, and the passing +gleams of the moonlight between the scudding clouds crossing and +passing--like the gladness and sorrow of a man’s life; how sweet it was +to breathe the fresh air, that had no taint of death and decay; how +humanising to see the red lighting of the sky beyond the hill, and to +hear far away the muffled roar that marks the life of a great city. Each +in his own way was solemn and overcome. Arthur was silent, and was, I +could see, striving to grasp the purpose and the inner meaning of the +mystery. I was myself tolerably patient, and half inclined again to +throw aside doubt and to accept Van Helsing’s conclusions. Quincey +Morris was phlegmatic in the way of a man who accepts all things, and +accepts them in the spirit of cool bravery, with hazard of all he has to +stake. Not being able to smoke, he cut himself a good-sized plug of +tobacco and began to chew. As to Van Helsing, he was employed in a +definite way. First he took from his bag a mass of what looked like +thin, wafer-like biscuit, which was carefully rolled up in a white +napkin; next he took out a double-handful of some whitish stuff, like +dough or putty. He crumbled the wafer up fine and worked it into the +mass between his hands. This he then took, and rolling it into thin +strips, began to lay them into the crevices between the door and its +setting in the tomb. I was somewhat puzzled at this, and being close, +asked him what it was that he was doing. Arthur and Quincey drew near +also, as they too were curious. He answered:-- + +“I am closing the tomb, so that the Un-Dead may not enter.” + +“And is that stuff you have put there going to do it?” asked Quincey. +“Great Scott! Is this a game?” + +“It is.” + +“What is that which you are using?” This time the question was by +Arthur. Van Helsing reverently lifted his hat as he answered:-- + +“The Host. I brought it from Amsterdam. I have an Indulgence.” It was an +answer that appalled the most sceptical of us, and we felt individually +that in the presence of such earnest purpose as the Professor’s, a +purpose which could thus use the to him most sacred of things, it was +impossible to distrust. In respectful silence we took the places +assigned to us close round the tomb, but hidden from the sight of any +one approaching. I pitied the others, especially Arthur. I had myself +been apprenticed by my former visits to this watching horror; and yet I, +who had up to an hour ago repudiated the proofs, felt my heart sink +within me. Never did tombs look so ghastly white; never did cypress, or +yew, or juniper so seem the embodiment of funereal gloom; never did tree +or grass wave or rustle so ominously; never did bough creak so +mysteriously; and never did the far-away howling of dogs send such a +woeful presage through the night. + +There was a long spell of silence, a big, aching void, and then from the +Professor a keen “S-s-s-s!” He pointed; and far down the avenue of yews +we saw a white figure advance--a dim white figure, which held something +dark at its breast. The figure stopped, and at the moment a ray of +moonlight fell upon the masses of driving clouds and showed in startling +prominence a dark-haired woman, dressed in the cerements of the grave. +We could not see the face, for it was bent down over what we saw to be a +fair-haired child. There was a pause and a sharp little cry, such as a +child gives in sleep, or a dog as it lies before the fire and dreams. We +were starting forward, but the Professor’s warning hand, seen by us as +he stood behind a yew-tree, kept us back; and then as we looked the +white figure moved forwards again. It was now near enough for us to see +clearly, and the moonlight still held. My own heart grew cold as ice, +and I could hear the gasp of Arthur, as we recognised the features of +Lucy Westenra. Lucy Westenra, but yet how changed. The sweetness was +turned to adamantine, heartless cruelty, and the purity to voluptuous +wantonness. Van Helsing stepped out, and, obedient to his gesture, we +all advanced too; the four of us ranged in a line before the door of the +tomb. Van Helsing raised his lantern and drew the slide; by the +concentrated light that fell on Lucy’s face we could see that the lips +were crimson with fresh blood, and that the stream had trickled over her +chin and stained the purity of her lawn death-robe. + +We shuddered with horror. I could see by the tremulous light that even +Van Helsing’s iron nerve had failed. Arthur was next to me, and if I had +not seized his arm and held him up, he would have fallen. + +When Lucy--I call the thing that was before us Lucy because it bore her +shape--saw us she drew back with an angry snarl, such as a cat gives +when taken unawares; then her eyes ranged over us. Lucy’s eyes in form +and colour; but Lucy’s eyes unclean and full of hell-fire, instead of +the pure, gentle orbs we knew. At that moment the remnant of my love +passed into hate and loathing; had she then to be killed, I could have +done it with savage delight. As she looked, her eyes blazed with unholy +light, and the face became wreathed with a voluptuous smile. Oh, God, +how it made me shudder to see it! With a careless motion, she flung to +the ground, callous as a devil, the child that up to now she had +clutched strenuously to her breast, growling over it as a dog growls +over a bone. The child gave a sharp cry, and lay there moaning. There +was a cold-bloodedness in the act which wrung a groan from Arthur; when +she advanced to him with outstretched arms and a wanton smile he fell +back and hid his face in his hands. + +She still advanced, however, and with a languorous, voluptuous grace, +said:-- + +“Come to me, Arthur. Leave these others and come to me. My arms are +hungry for you. Come, and we can rest together. Come, my husband, come!” + +There was something diabolically sweet in her tones--something of the +tingling of glass when struck--which rang through the brains even of us +who heard the words addressed to another. As for Arthur, he seemed under +a spell; moving his hands from his face, he opened wide his arms. She +was leaping for them, when Van Helsing sprang forward and held between +them his little golden crucifix. She recoiled from it, and, with a +suddenly distorted face, full of rage, dashed past him as if to enter +the tomb. + +When within a foot or two of the door, however, she stopped, as if +arrested by some irresistible force. Then she turned, and her face was +shown in the clear burst of moonlight and by the lamp, which had now no +quiver from Van Helsing’s iron nerves. Never did I see such baffled +malice on a face; and never, I trust, shall such ever be seen again by +mortal eyes. The beautiful colour became livid, the eyes seemed to throw +out sparks of hell-fire, the brows were wrinkled as though the folds of +the flesh were the coils of Medusa’s snakes, and the lovely, +blood-stained mouth grew to an open square, as in the passion masks of +the Greeks and Japanese. If ever a face meant death--if looks could +kill--we saw it at that moment. + +And so for full half a minute, which seemed an eternity, she remained +between the lifted crucifix and the sacred closing of her means of +entry. Van Helsing broke the silence by asking Arthur:-- + +“Answer me, oh my friend! Am I to proceed in my work?” + +Arthur threw himself on his knees, and hid his face in his hands, as he +answered:-- + +“Do as you will, friend; do as you will. There can be no horror like +this ever any more;” and he groaned in spirit. Quincey and I +simultaneously moved towards him, and took his arms. We could hear the +click of the closing lantern as Van Helsing held it down; coming close +to the tomb, he began to remove from the chinks some of the sacred +emblem which he had placed there. We all looked on in horrified +amazement as we saw, when he stood back, the woman, with a corporeal +body as real at that moment as our own, pass in through the interstice +where scarce a knife-blade could have gone. We all felt a glad sense of +relief when we saw the Professor calmly restoring the strings of putty +to the edges of the door. + +When this was done, he lifted the child and said: + +“Come now, my friends; we can do no more till to-morrow. There is a +funeral at noon, so here we shall all come before long after that. The +friends of the dead will all be gone by two, and when the sexton lock +the gate we shall remain. Then there is more to do; but not like this of +to-night. As for this little one, he is not much harm, and by to-morrow +night he shall be well. We shall leave him where the police will find +him, as on the other night; and then to home.” Coming close to Arthur, +he said:-- + +“My friend Arthur, you have had a sore trial; but after, when you look +back, you will see how it was necessary. You are now in the bitter +waters, my child. By this time to-morrow you will, please God, have +passed them, and have drunk of the sweet waters; so do not mourn +overmuch. Till then I shall not ask you to forgive me.” + +Arthur and Quincey came home with me, and we tried to cheer each other +on the way. We had left the child in safety, and were tired; so we all +slept with more or less reality of sleep. + + * * * * * + +_29 September, night._--A little before twelve o’clock we three--Arthur, +Quincey Morris, and myself--called for the Professor. It was odd to +notice that by common consent we had all put on black clothes. Of +course, Arthur wore black, for he was in deep mourning, but the rest of +us wore it by instinct. We got to the churchyard by half-past one, and +strolled about, keeping out of official observation, so that when the +gravediggers had completed their task and the sexton under the belief +that every one had gone, had locked the gate, we had the place all to +ourselves. Van Helsing, instead of his little black bag, had with him a +long leather one, something like a cricketing bag; it was manifestly of +fair weight. + +When we were alone and had heard the last of the footsteps die out up +the road, we silently, and as if by ordered intention, followed the +Professor to the tomb. He unlocked the door, and we entered, closing it +behind us. Then he took from his bag the lantern, which he lit, and also +two wax candles, which, when lighted, he stuck, by melting their own +ends, on other coffins, so that they might give light sufficient to work +by. When he again lifted the lid off Lucy’s coffin we all looked--Arthur +trembling like an aspen--and saw that the body lay there in all its +death-beauty. But there was no love in my own heart, nothing but +loathing for the foul Thing which had taken Lucy’s shape without her +soul. I could see even Arthur’s face grow hard as he looked. Presently +he said to Van Helsing:-- + +“Is this really Lucy’s body, or only a demon in her shape?” + +“It is her body, and yet not it. But wait a while, and you all see her +as she was, and is.” + +She seemed like a nightmare of Lucy as she lay there; the pointed teeth, +the bloodstained, voluptuous mouth--which it made one shudder to +see--the whole carnal and unspiritual appearance, seeming like a +devilish mockery of Lucy’s sweet purity. Van Helsing, with his usual +methodicalness, began taking the various contents from his bag and +placing them ready for use. First he took out a soldering iron and some +plumbing solder, and then a small oil-lamp, which gave out, when lit in +a corner of the tomb, gas which burned at fierce heat with a blue +flame; then his operating knives, which he placed to hand; and last a +round wooden stake, some two and a half or three inches thick and about +three feet long. One end of it was hardened by charring in the fire, and +was sharpened to a fine point. With this stake came a heavy hammer, such +as in households is used in the coal-cellar for breaking the lumps. To +me, a doctor’s preparations for work of any kind are stimulating and +bracing, but the effect of these things on both Arthur and Quincey was +to cause them a sort of consternation. They both, however, kept their +courage, and remained silent and quiet. + +When all was ready, Van Helsing said:-- + +“Before we do anything, let me tell you this; it is out of the lore and +experience of the ancients and of all those who have studied the powers +of the Un-Dead. When they become such, there comes with the change the +curse of immortality; they cannot die, but must go on age after age +adding new victims and multiplying the evils of the world; for all that +die from the preying of the Un-Dead becomes themselves Un-Dead, and prey +on their kind. And so the circle goes on ever widening, like as the +ripples from a stone thrown in the water. Friend Arthur, if you had met +that kiss which you know of before poor Lucy die; or again, last night +when you open your arms to her, you would in time, when you had died, +have become _nosferatu_, as they call it in Eastern Europe, and would +all time make more of those Un-Deads that so have fill us with horror. +The career of this so unhappy dear lady is but just begun. Those +children whose blood she suck are not as yet so much the worse; but if +she live on, Un-Dead, more and more they lose their blood and by her +power over them they come to her; and so she draw their blood with that +so wicked mouth. But if she die in truth, then all cease; the tiny +wounds of the throats disappear, and they go back to their plays +unknowing ever of what has been. But of the most blessed of all, when +this now Un-Dead be made to rest as true dead, then the soul of the poor +lady whom we love shall again be free. Instead of working wickedness by +night and growing more debased in the assimilating of it by day, she +shall take her place with the other Angels. So that, my friend, it will +be a blessed hand for her that shall strike the blow that sets her free. +To this I am willing; but is there none amongst us who has a better +right? Will it be no joy to think of hereafter in the silence of the +night when sleep is not: ‘It was my hand that sent her to the stars; it +was the hand of him that loved her best; the hand that of all she would +herself have chosen, had it been to her to choose?’ Tell me if there be +such a one amongst us?” + +We all looked at Arthur. He saw, too, what we all did, the infinite +kindness which suggested that his should be the hand which would restore +Lucy to us as a holy, and not an unholy, memory; he stepped forward and +said bravely, though his hand trembled, and his face was as pale as +snow:-- + +“My true friend, from the bottom of my broken heart I thank you. Tell me +what I am to do, and I shall not falter!” Van Helsing laid a hand on his +shoulder, and said:-- + +“Brave lad! A moment’s courage, and it is done. This stake must be +driven through her. It will be a fearful ordeal--be not deceived in +that--but it will be only a short time, and you will then rejoice more +than your pain was great; from this grim tomb you will emerge as though +you tread on air. But you must not falter when once you have begun. Only +think that we, your true friends, are round you, and that we pray for +you all the time.” + +“Go on,” said Arthur hoarsely. “Tell me what I am to do.” + +“Take this stake in your left hand, ready to place the point over the +heart, and the hammer in your right. Then when we begin our prayer for +the dead--I shall read him, I have here the book, and the others shall +follow--strike in God’s name, that so all may be well with the dead that +we love and that the Un-Dead pass away.” + +Arthur took the stake and the hammer, and when once his mind was set on +action his hands never trembled nor even quivered. Van Helsing opened +his missal and began to read, and Quincey and I followed as well as we +could. Arthur placed the point over the heart, and as I looked I could +see its dint in the white flesh. Then he struck with all his might. + +The Thing in the coffin writhed; and a hideous, blood-curdling screech +came from the opened red lips. The body shook and quivered and twisted +in wild contortions; the sharp white teeth champed together till the +lips were cut, and the mouth was smeared with a crimson foam. But Arthur +never faltered. He looked like a figure of Thor as his untrembling arm +rose and fell, driving deeper and deeper the mercy-bearing stake, whilst +the blood from the pierced heart welled and spurted up around it. His +face was set, and high duty seemed to shine through it; the sight of it +gave us courage so that our voices seemed to ring through the little +vault. + +And then the writhing and quivering of the body became less, and the +teeth seemed to champ, and the face to quiver. Finally it lay still. The +terrible task was over. + +The hammer fell from Arthur’s hand. He reeled and would have fallen had +we not caught him. The great drops of sweat sprang from his forehead, +and his breath came in broken gasps. It had indeed been an awful strain +on him; and had he not been forced to his task by more than human +considerations he could never have gone through with it. For a few +minutes we were so taken up with him that we did not look towards the +coffin. When we did, however, a murmur of startled surprise ran from one +to the other of us. We gazed so eagerly that Arthur rose, for he had +been seated on the ground, and came and looked too; and then a glad, +strange light broke over his face and dispelled altogether the gloom of +horror that lay upon it. + +There, in the coffin lay no longer the foul Thing that we had so dreaded +and grown to hate that the work of her destruction was yielded as a +privilege to the one best entitled to it, but Lucy as we had seen her in +her life, with her face of unequalled sweetness and purity. True that +there were there, as we had seen them in life, the traces of care and +pain and waste; but these were all dear to us, for they marked her truth +to what we knew. One and all we felt that the holy calm that lay like +sunshine over the wasted face and form was only an earthly token and +symbol of the calm that was to reign for ever. + +Van Helsing came and laid his hand on Arthur’s shoulder, and said to +him:-- + +“And now, Arthur my friend, dear lad, am I not forgiven?” + +The reaction of the terrible strain came as he took the old man’s hand +in his, and raising it to his lips, pressed it, and said:-- + +“Forgiven! God bless you that you have given my dear one her soul again, +and me peace.” He put his hands on the Professor’s shoulder, and laying +his head on his breast, cried for a while silently, whilst we stood +unmoving. When he raised his head Van Helsing said to him:-- + +“And now, my child, you may kiss her. Kiss her dead lips if you will, as +she would have you to, if for her to choose. For she is not a grinning +devil now--not any more a foul Thing for all eternity. No longer she is +the devil’s Un-Dead. She is God’s true dead, whose soul is with Him!” + +Arthur bent and kissed her, and then we sent him and Quincey out of the +tomb; the Professor and I sawed the top off the stake, leaving the point +of it in the body. Then we cut off the head and filled the mouth with +garlic. We soldered up the leaden coffin, screwed on the coffin-lid, +and gathering up our belongings, came away. When the Professor locked +the door he gave the key to Arthur. + +Outside the air was sweet, the sun shone, and the birds sang, and it +seemed as if all nature were tuned to a different pitch. There was +gladness and mirth and peace everywhere, for we were at rest ourselves +on one account, and we were glad, though it was with a tempered joy. + +Before we moved away Van Helsing said:-- + +“Now, my friends, one step of our work is done, one the most harrowing +to ourselves. But there remains a greater task: to find out the author +of all this our sorrow and to stamp him out. I have clues which we can +follow; but it is a long task, and a difficult, and there is danger in +it, and pain. Shall you not all help me? We have learned to believe, all +of us--is it not so? And since so, do we not see our duty? Yes! And do +we not promise to go on to the bitter end?” + +Each in turn, we took his hand, and the promise was made. Then said the +Professor as we moved off:-- + +“Two nights hence you shall meet with me and dine together at seven of +the clock with friend John. I shall entreat two others, two that you +know not as yet; and I shall be ready to all our work show and our plans +unfold. Friend John, you come with me home, for I have much to consult +about, and you can help me. To-night I leave for Amsterdam, but shall +return to-morrow night. And then begins our great quest. But first I +shall have much to say, so that you may know what is to do and to dread. +Then our promise shall be made to each other anew; for there is a +terrible task before us, and once our feet are on the ploughshare we +must not draw back.” + + + + +CHAPTER XVII + +DR. SEWARD’S DIARY--_continued_ + + +When we arrived at the Berkeley Hotel, Van Helsing found a telegram +waiting for him:-- + + “Am coming up by train. Jonathan at Whitby. Important news.--MINA + HARKER.” + +The Professor was delighted. “Ah, that wonderful Madam Mina,” he said, +“pearl among women! She arrive, but I cannot stay. She must go to your +house, friend John. You must meet her at the station. Telegraph her _en +route_, so that she may be prepared.” + +When the wire was despatched he had a cup of tea; over it he told me of +a diary kept by Jonathan Harker when abroad, and gave me a typewritten +copy of it, as also of Mrs. Harker’s diary at Whitby. “Take these,” he +said, “and study them well. When I have returned you will be master of +all the facts, and we can then better enter on our inquisition. Keep +them safe, for there is in them much of treasure. You will need all your +faith, even you who have had such an experience as that of to-day. What +is here told,” he laid his hand heavily and gravely on the packet of +papers as he spoke, “may be the beginning of the end to you and me and +many another; or it may sound the knell of the Un-Dead who walk the +earth. Read all, I pray you, with the open mind; and if you can add in +any way to the story here told do so, for it is all-important. You have +kept diary of all these so strange things; is it not so? Yes! Then we +shall go through all these together when we meet.” He then made ready +for his departure, and shortly after drove off to Liverpool Street. I +took my way to Paddington, where I arrived about fifteen minutes before +the train came in. + +The crowd melted away, after the bustling fashion common to arrival +platforms; and I was beginning to feel uneasy, lest I might miss my +guest, when a sweet-faced, dainty-looking girl stepped up to me, and, +after a quick glance, said: “Dr. Seward, is it not?” + +“And you are Mrs. Harker!” I answered at once; whereupon she held out +her hand. + +“I knew you from the description of poor dear Lucy; but----” She stopped +suddenly, and a quick blush overspread her face. + +The blush that rose to my own cheeks somehow set us both at ease, for it +was a tacit answer to her own. I got her luggage, which included a +typewriter, and we took the Underground to Fenchurch Street, after I had +sent a wire to my housekeeper to have a sitting-room and bedroom +prepared at once for Mrs. Harker. + +In due time we arrived. She knew, of course, that the place was a +lunatic asylum, but I could see that she was unable to repress a shudder +when we entered. + +She told me that, if she might, she would come presently to my study, as +she had much to say. So here I am finishing my entry in my phonograph +diary whilst I await her. As yet I have not had the chance of looking at +the papers which Van Helsing left with me, though they lie open before +me. I must get her interested in something, so that I may have an +opportunity of reading them. She does not know how precious time is, or +what a task we have in hand. I must be careful not to frighten her. Here +she is! + + +_Mina Harker’s Journal._ + +_29 September._--After I had tidied myself, I went down to Dr. Seward’s +study. At the door I paused a moment, for I thought I heard him talking +with some one. As, however, he had pressed me to be quick, I knocked at +the door, and on his calling out, “Come in,” I entered. + +To my intense surprise, there was no one with him. He was quite alone, +and on the table opposite him was what I knew at once from the +description to be a phonograph. I had never seen one, and was much +interested. + +“I hope I did not keep you waiting,” I said; “but I stayed at the door +as I heard you talking, and thought there was some one with you.” + +“Oh,” he replied with a smile, “I was only entering my diary.” + +“Your diary?” I asked him in surprise. + +“Yes,” he answered. “I keep it in this.” As he spoke he laid his hand on +the phonograph. I felt quite excited over it, and blurted out:-- + +“Why, this beats even shorthand! May I hear it say something?” + +“Certainly,” he replied with alacrity, and stood up to put it in train +for speaking. Then he paused, and a troubled look overspread his face. + +“The fact is,” he began awkwardly, “I only keep my diary in it; and as +it is entirely--almost entirely--about my cases, it may be awkward--that +is, I mean----” He stopped, and I tried to help him out of his +embarrassment:-- + +“You helped to attend dear Lucy at the end. Let me hear how she died; +for all that I know of her, I shall be very grateful. She was very, very +dear to me.” + +To my surprise, he answered, with a horrorstruck look in his face:-- + +“Tell you of her death? Not for the wide world!” + +“Why not?” I asked, for some grave, terrible feeling was coming over me. +Again he paused, and I could see that he was trying to invent an excuse. +At length he stammered out:-- + +“You see, I do not know how to pick out any particular part of the +diary.” Even while he was speaking an idea dawned upon him, and he said +with unconscious simplicity, in a different voice, and with the naïveté +of a child: “That’s quite true, upon my honour. Honest Indian!” I could +not but smile, at which he grimaced. “I gave myself away that time!” he +said. “But do you know that, although I have kept the diary for months +past, it never once struck me how I was going to find any particular +part of it in case I wanted to look it up?” By this time my mind was +made up that the diary of a doctor who attended Lucy might have +something to add to the sum of our knowledge of that terrible Being, and +I said boldly:-- + +“Then, Dr. Seward, you had better let me copy it out for you on my +typewriter.” He grew to a positively deathly pallor as he said:-- + +“No! no! no! For all the world, I wouldn’t let you know that terrible +story!” + +Then it was terrible; my intuition was right! For a moment I thought, +and as my eyes ranged the room, unconsciously looking for something or +some opportunity to aid me, they lit on a great batch of typewriting on +the table. His eyes caught the look in mine, and, without his thinking, +followed their direction. As they saw the parcel he realised my meaning. + +“You do not know me,” I said. “When you have read those papers--my own +diary and my husband’s also, which I have typed--you will know me +better. I have not faltered in giving every thought of my own heart in +this cause; but, of course, you do not know me--yet; and I must not +expect you to trust me so far.” + +He is certainly a man of noble nature; poor dear Lucy was right about +him. He stood up and opened a large drawer, in which were arranged in +order a number of hollow cylinders of metal covered with dark wax, and +said:-- + +“You are quite right. I did not trust you because I did not know you. +But I know you now; and let me say that I should have known you long +ago. I know that Lucy told you of me; she told me of you too. May I make +the only atonement in my power? Take the cylinders and hear them--the +first half-dozen of them are personal to me, and they will not horrify +you; then you will know me better. Dinner will by then be ready. In the +meantime I shall read over some of these documents, and shall be better +able to understand certain things.” He carried the phonograph himself up +to my sitting-room and adjusted it for me. Now I shall learn something +pleasant, I am sure; for it will tell me the other side of a true love +episode of which I know one side already.... + + +_Dr. Seward’s Diary._ + +_29 September._--I was so absorbed in that wonderful diary of Jonathan +Harker and that other of his wife that I let the time run on without +thinking. Mrs. Harker was not down when the maid came to announce +dinner, so I said: “She is possibly tired; let dinner wait an hour,” and +I went on with my work. I had just finished Mrs. Harker’s diary, when +she came in. She looked sweetly pretty, but very sad, and her eyes were +flushed with crying. This somehow moved me much. Of late I have had +cause for tears, God knows! but the relief of them was denied me; and +now the sight of those sweet eyes, brightened with recent tears, went +straight to my heart. So I said as gently as I could:-- + +“I greatly fear I have distressed you.” + +“Oh, no, not distressed me,” she replied, “but I have been more touched +than I can say by your grief. That is a wonderful machine, but it is +cruelly true. It told me, in its very tones, the anguish of your heart. +It was like a soul crying out to Almighty God. No one must hear them +spoken ever again! See, I have tried to be useful. I have copied out the +words on my typewriter, and none other need now hear your heart beat, as +I did.” + +“No one need ever know, shall ever know,” I said in a low voice. She +laid her hand on mine and said very gravely:-- + +“Ah, but they must!” + +“Must! But why?” I asked. + +“Because it is a part of the terrible story, a part of poor dear Lucy’s +death and all that led to it; because in the struggle which we have +before us to rid the earth of this terrible monster we must have all +the knowledge and all the help which we can get. I think that the +cylinders which you gave me contained more than you intended me to know; +but I can see that there are in your record many lights to this dark +mystery. You will let me help, will you not? I know all up to a certain +point; and I see already, though your diary only took me to 7 September, +how poor Lucy was beset, and how her terrible doom was being wrought +out. Jonathan and I have been working day and night since Professor Van +Helsing saw us. He is gone to Whitby to get more information, and he +will be here to-morrow to help us. We need have no secrets amongst us; +working together and with absolute trust, we can surely be stronger than +if some of us were in the dark.” She looked at me so appealingly, and at +the same time manifested such courage and resolution in her bearing, +that I gave in at once to her wishes. “You shall,” I said, “do as you +like in the matter. God forgive me if I do wrong! There are terrible +things yet to learn of; but if you have so far travelled on the road to +poor Lucy’s death, you will not be content, I know, to remain in the +dark. Nay, the end--the very end--may give you a gleam of peace. Come, +there is dinner. We must keep one another strong for what is before us; +we have a cruel and dreadful task. When you have eaten you shall learn +the rest, and I shall answer any questions you ask--if there be anything +which you do not understand, though it was apparent to us who were +present.” + + +_Mina Harker’s Journal._ + +_29 September._--After dinner I came with Dr. Seward to his study. He +brought back the phonograph from my room, and I took my typewriter. He +placed me in a comfortable chair, and arranged the phonograph so that I +could touch it without getting up, and showed me how to stop it in case +I should want to pause. Then he very thoughtfully took a chair, with his +back to me, so that I might be as free as possible, and began to read. I +put the forked metal to my ears and listened. + +When the terrible story of Lucy’s death, and--and all that followed, was +done, I lay back in my chair powerless. Fortunately I am not of a +fainting disposition. When Dr. Seward saw me he jumped up with a +horrified exclamation, and hurriedly taking a case-bottle from a +cupboard, gave me some brandy, which in a few minutes somewhat restored +me. My brain was all in a whirl, and only that there came through all +the multitude of horrors, the holy ray of light that my dear, dear Lucy +was at last at peace, I do not think I could have borne it without +making a scene. It is all so wild, and mysterious, and strange that if I +had not known Jonathan’s experience in Transylvania I could not have +believed. As it was, I didn’t know what to believe, and so got out of my +difficulty by attending to something else. I took the cover off my +typewriter, and said to Dr. Seward:-- + +“Let me write this all out now. We must be ready for Dr. Van Helsing +when he comes. I have sent a telegram to Jonathan to come on here when +he arrives in London from Whitby. In this matter dates are everything, +and I think that if we get all our material ready, and have every item +put in chronological order, we shall have done much. You tell me that +Lord Godalming and Mr. Morris are coming too. Let us be able to tell him +when they come.” He accordingly set the phonograph at a slow pace, and I +began to typewrite from the beginning of the seventh cylinder. I used +manifold, and so took three copies of the diary, just as I had done with +all the rest. It was late when I got through, but Dr. Seward went about +his work of going his round of the patients; when he had finished he +came back and sat near me, reading, so that I did not feel too lonely +whilst I worked. How good and thoughtful he is; the world seems full of +good men--even if there _are_ monsters in it. Before I left him I +remembered what Jonathan put in his diary of the Professor’s +perturbation at reading something in an evening paper at the station at +Exeter; so, seeing that Dr. Seward keeps his newspapers, I borrowed the +files of “The Westminster Gazette” and “The Pall Mall Gazette,” and took +them to my room. I remember how much “The Dailygraph” and “The Whitby +Gazette,” of which I had made cuttings, helped us to understand the +terrible events at Whitby when Count Dracula landed, so I shall look +through the evening papers since then, and perhaps I shall get some new +light. I am not sleepy, and the work will help to keep me quiet. + + +_Dr. Seward’s Diary._ + +_30 September._--Mr. Harker arrived at nine o’clock. He had got his +wife’s wire just before starting. He is uncommonly clever, if one can +judge from his face, and full of energy. If this journal be true--and +judging by one’s own wonderful experiences, it must be--he is also a man +of great nerve. That going down to the vault a second time was a +remarkable piece of daring. After reading his account of it I was +prepared to meet a good specimen of manhood, but hardly the quiet, +business-like gentleman who came here to-day. + + * * * * * + +_Later._--After lunch Harker and his wife went back to their own room, +and as I passed a while ago I heard the click of the typewriter. They +are hard at it. Mrs. Harker says that they are knitting together in +chronological order every scrap of evidence they have. Harker has got +the letters between the consignee of the boxes at Whitby and the +carriers in London who took charge of them. He is now reading his wife’s +typescript of my diary. I wonder what they make out of it. Here it +is.... + + Strange that it never struck me that the very next house might be + the Count’s hiding-place! Goodness knows that we had enough clues + from the conduct of the patient Renfield! The bundle of letters + relating to the purchase of the house were with the typescript. Oh, + if we had only had them earlier we might have saved poor Lucy! + Stop; that way madness lies! Harker has gone back, and is again + collating his material. He says that by dinner-time they will be + able to show a whole connected narrative. He thinks that in the + meantime I should see Renfield, as hitherto he has been a sort of + index to the coming and going of the Count. I hardly see this yet, + but when I get at the dates I suppose I shall. What a good thing + that Mrs. Harker put my cylinders into type! We never could have + found the dates otherwise.... + + I found Renfield sitting placidly in his room with his hands + folded, smiling benignly. At the moment he seemed as sane as any + one I ever saw. I sat down and talked with him on a lot of + subjects, all of which he treated naturally. He then, of his own + accord, spoke of going home, a subject he has never mentioned to my + knowledge during his sojourn here. In fact, he spoke quite + confidently of getting his discharge at once. I believe that, had I + not had the chat with Harker and read the letters and the dates of + his outbursts, I should have been prepared to sign for him after a + brief time of observation. As it is, I am darkly suspicious. All + those outbreaks were in some way linked with the proximity of the + Count. What then does this absolute content mean? Can it be that + his instinct is satisfied as to the vampire’s ultimate triumph? + Stay; he is himself zoöphagous, and in his wild ravings outside the + chapel door of the deserted house he always spoke of “master.” This + all seems confirmation of our idea. However, after a while I came + away; my friend is just a little too sane at present to make it + safe to probe him too deep with questions. He might begin to think, + and then--! So I came away. I mistrust these quiet moods of his; so + I have given the attendant a hint to look closely after him, and to + have a strait-waistcoat ready in case of need. + + +_Jonathan Harker’s Journal._ + +_29 September, in train to London._--When I received Mr. Billington’s +courteous message that he would give me any information in his power I +thought it best to go down to Whitby and make, on the spot, such +inquiries as I wanted. It was now my object to trace that horrid cargo +of the Count’s to its place in London. Later, we may be able to deal +with it. Billington junior, a nice lad, met me at the station, and +brought me to his father’s house, where they had decided that I must +stay the night. They are hospitable, with true Yorkshire hospitality: +give a guest everything, and leave him free to do as he likes. They all +knew that I was busy, and that my stay was short, and Mr. Billington had +ready in his office all the papers concerning the consignment of boxes. +It gave me almost a turn to see again one of the letters which I had +seen on the Count’s table before I knew of his diabolical plans. +Everything had been carefully thought out, and done systematically and +with precision. He seemed to have been prepared for every obstacle which +might be placed by accident in the way of his intentions being carried +out. To use an Americanism, he had “taken no chances,” and the absolute +accuracy with which his instructions were fulfilled, was simply the +logical result of his care. I saw the invoice, and took note of it: +“Fifty cases of common earth, to be used for experimental purposes.” +Also the copy of letter to Carter Paterson, and their reply; of both of +these I got copies. This was all the information Mr. Billington could +give me, so I went down to the port and saw the coastguards, the Customs +officers and the harbour-master. They had all something to say of the +strange entry of the ship, which is already taking its place in local +tradition; but no one could add to the simple description “Fifty cases +of common earth.” I then saw the station-master, who kindly put me in +communication with the men who had actually received the boxes. Their +tally was exact with the list, and they had nothing to add except that +the boxes were “main and mortal heavy,” and that shifting them was dry +work. One of them added that it was hard lines that there wasn’t any +gentleman “such-like as yourself, squire,” to show some sort of +appreciation of their efforts in a liquid form; another put in a rider +that the thirst then generated was such that even the time which had +elapsed had not completely allayed it. Needless to add, I took care +before leaving to lift, for ever and adequately, this source of +reproach. + + * * * * * + +_30 September._--The station-master was good enough to give me a line to +his old companion the station-master at King’s Cross, so that when I +arrived there in the morning I was able to ask him about the arrival of +the boxes. He, too, put me at once in communication with the proper +officials, and I saw that their tally was correct with the original +invoice. The opportunities of acquiring an abnormal thirst had been here +limited; a noble use of them had, however, been made, and again I was +compelled to deal with the result in an _ex post facto_ manner. + +From thence I went on to Carter Paterson’s central office, where I met +with the utmost courtesy. They looked up the transaction in their +day-book and letter-book, and at once telephoned to their King’s Cross +office for more details. By good fortune, the men who did the teaming +were waiting for work, and the official at once sent them over, sending +also by one of them the way-bill and all the papers connected with the +delivery of the boxes at Carfax. Here again I found the tally agreeing +exactly; the carriers’ men were able to supplement the paucity of the +written words with a few details. These were, I shortly found, connected +almost solely with the dusty nature of the job, and of the consequent +thirst engendered in the operators. On my affording an opportunity, +through the medium of the currency of the realm, of the allaying, at a +later period, this beneficial evil, one of the men remarked:-- + +“That ’ere ’ouse, guv’nor, is the rummiest I ever was in. Blyme! but it +ain’t been touched sence a hundred years. There was dust that thick in +the place that you might have slep’ on it without ’urtin’ of yer bones; +an’ the place was that neglected that yer might ’ave smelled ole +Jerusalem in it. But the ole chapel--that took the cike, that did! Me +and my mate, we thort we wouldn’t never git out quick enough. Lor’, I +wouldn’t take less nor a quid a moment to stay there arter dark.” + +Having been in the house, I could well believe him; but if he knew what +I know, he would, I think, have raised his terms. + +Of one thing I am now satisfied: that _all_ the boxes which arrived at +Whitby from Varna in the _Demeter_ were safely deposited in the old +chapel at Carfax. There should be fifty of them there, unless any have +since been removed--as from Dr. Seward’s diary I fear. + +I shall try to see the carter who took away the boxes from Carfax when +Renfield attacked them. By following up this clue we may learn a good +deal. + + * * * * * + +_Later._--Mina and I have worked all day, and we have put all the papers +into order. + + +_Mina Harker’s Journal_ + +_30 September._--I am so glad that I hardly know how to contain myself. +It is, I suppose, the reaction from the haunting fear which I have had: +that this terrible affair and the reopening of his old wound might act +detrimentally on Jonathan. I saw him leave for Whitby with as brave a +face as I could, but I was sick with apprehension. The effort has, +however, done him good. He was never so resolute, never so strong, never +so full of volcanic energy, as at present. It is just as that dear, good +Professor Van Helsing said: he is true grit, and he improves under +strain that would kill a weaker nature. He came back full of life and +hope and determination; we have got everything in order for to-night. I +feel myself quite wild with excitement. I suppose one ought to pity any +thing so hunted as is the Count. That is just it: this Thing is not +human--not even beast. To read Dr. Seward’s account of poor Lucy’s +death, and what followed, is enough to dry up the springs of pity in +one’s heart. + + * * * * * + +_Later._--Lord Godalming and Mr. Morris arrived earlier than we +expected. Dr. Seward was out on business, and had taken Jonathan with +him, so I had to see them. It was to me a painful meeting, for it +brought back all poor dear Lucy’s hopes of only a few months ago. Of +course they had heard Lucy speak of me, and it seemed that Dr. Van +Helsing, too, has been quite “blowing my trumpet,” as Mr. Morris +expressed it. Poor fellows, neither of them is aware that I know all +about the proposals they made to Lucy. They did not quite know what to +say or do, as they were ignorant of the amount of my knowledge; so they +had to keep on neutral subjects. However, I thought the matter over, and +came to the conclusion that the best thing I could do would be to post +them in affairs right up to date. I knew from Dr. Seward’s diary that +they had been at Lucy’s death--her real death--and that I need not fear +to betray any secret before the time. So I told them, as well as I +could, that I had read all the papers and diaries, and that my husband +and I, having typewritten them, had just finished putting them in order. +I gave them each a copy to read in the library. When Lord Godalming got +his and turned it over--it does make a pretty good pile--he said:-- + +“Did you write all this, Mrs. Harker?” + +I nodded, and he went on:-- + +“I don’t quite see the drift of it; but you people are all so good and +kind, and have been working so earnestly and so energetically, that all +I can do is to accept your ideas blindfold and try to help you. I have +had one lesson already in accepting facts that should make a man humble +to the last hour of his life. Besides, I know you loved my poor Lucy--” +Here he turned away and covered his face with his hands. I could hear +the tears in his voice. Mr. Morris, with instinctive delicacy, just laid +a hand for a moment on his shoulder, and then walked quietly out of the +room. I suppose there is something in woman’s nature that makes a man +free to break down before her and express his feelings on the tender or +emotional side without feeling it derogatory to his manhood; for when +Lord Godalming found himself alone with me he sat down on the sofa and +gave way utterly and openly. I sat down beside him and took his hand. I +hope he didn’t think it forward of me, and that if he ever thinks of it +afterwards he never will have such a thought. There I wrong him; I +_know_ he never will--he is too true a gentleman. I said to him, for I +could see that his heart was breaking:-- + +“I loved dear Lucy, and I know what she was to you, and what you were to +her. She and I were like sisters; and now she is gone, will you not let +me be like a sister to you in your trouble? I know what sorrows you have +had, though I cannot measure the depth of them. If sympathy and pity can +help in your affliction, won’t you let me be of some little service--for +Lucy’s sake?” + +In an instant the poor dear fellow was overwhelmed with grief. It seemed +to me that all that he had of late been suffering in silence found a +vent at once. He grew quite hysterical, and raising his open hands, beat +his palms together in a perfect agony of grief. He stood up and then sat +down again, and the tears rained down his cheeks. I felt an infinite +pity for him, and opened my arms unthinkingly. With a sob he laid his +head on my shoulder and cried like a wearied child, whilst he shook with +emotion. + +We women have something of the mother in us that makes us rise above +smaller matters when the mother-spirit is invoked; I felt this big +sorrowing man’s head resting on me, as though it were that of the baby +that some day may lie on my bosom, and I stroked his hair as though he +were my own child. I never thought at the time how strange it all was. + +After a little bit his sobs ceased, and he raised himself with an +apology, though he made no disguise of his emotion. He told me that for +days and nights past--weary days and sleepless nights--he had been +unable to speak with any one, as a man must speak in his time of +sorrow. There was no woman whose sympathy could be given to him, or with +whom, owing to the terrible circumstance with which his sorrow was +surrounded, he could speak freely. “I know now how I suffered,” he said, +as he dried his eyes, “but I do not know even yet--and none other can +ever know--how much your sweet sympathy has been to me to-day. I shall +know better in time; and believe me that, though I am not ungrateful +now, my gratitude will grow with my understanding. You will let me be +like a brother, will you not, for all our lives--for dear Lucy’s sake?” + +“For dear Lucy’s sake,” I said as we clasped hands. “Ay, and for your +own sake,” he added, “for if a man’s esteem and gratitude are ever worth +the winning, you have won mine to-day. If ever the future should bring +to you a time when you need a man’s help, believe me, you will not call +in vain. God grant that no such time may ever come to you to break the +sunshine of your life; but if it should ever come, promise me that you +will let me know.” He was so earnest, and his sorrow was so fresh, that +I felt it would comfort him, so I said:-- + +“I promise.” + +As I came along the corridor I saw Mr. Morris looking out of a window. +He turned as he heard my footsteps. “How is Art?” he said. Then noticing +my red eyes, he went on: “Ah, I see you have been comforting him. Poor +old fellow! he needs it. No one but a woman can help a man when he is in +trouble of the heart; and he had no one to comfort him.” + +He bore his own trouble so bravely that my heart bled for him. I saw the +manuscript in his hand, and I knew that when he read it he would realise +how much I knew; so I said to him:-- + +“I wish I could comfort all who suffer from the heart. Will you let me +be your friend, and will you come to me for comfort if you need it? You +will know, later on, why I speak.” He saw that I was in earnest, and +stooping, took my hand, and raising it to his lips, kissed it. It seemed +but poor comfort to so brave and unselfish a soul, and impulsively I +bent over and kissed him. The tears rose in his eyes, and there was a +momentary choking in his throat; he said quite calmly:-- + +“Little girl, you will never regret that true-hearted kindness, so long +as ever you live!” Then he went into the study to his friend. + +“Little girl!”--the very words he had used to Lucy, and oh, but he +proved himself a friend! + + + + +CHAPTER XVIII + +DR. SEWARD’S DIARY + + +_30 September._--I got home at five o’clock, and found that Godalming +and Morris had not only arrived, but had already studied the transcript +of the various diaries and letters which Harker and his wonderful wife +had made and arranged. Harker had not yet returned from his visit to the +carriers’ men, of whom Dr. Hennessey had written to me. Mrs. Harker gave +us a cup of tea, and I can honestly say that, for the first time since I +have lived in it, this old house seemed like _home_. When we had +finished, Mrs. Harker said:-- + +“Dr. Seward, may I ask a favour? I want to see your patient, Mr. +Renfield. Do let me see him. What you have said of him in your diary +interests me so much!” She looked so appealing and so pretty that I +could not refuse her, and there was no possible reason why I should; so +I took her with me. When I went into the room, I told the man that a +lady would like to see him; to which he simply answered: “Why?” + +“She is going through the house, and wants to see every one in it,” I +answered. “Oh, very well,” he said; “let her come in, by all means; but +just wait a minute till I tidy up the place.” His method of tidying was +peculiar: he simply swallowed all the flies and spiders in the boxes +before I could stop him. It was quite evident that he feared, or was +jealous of, some interference. When he had got through his disgusting +task, he said cheerfully: “Let the lady come in,” and sat down on the +edge of his bed with his head down, but with his eyelids raised so that +he could see her as she entered. For a moment I thought that he might +have some homicidal intent; I remembered how quiet he had been just +before he attacked me in my own study, and I took care to stand where I +could seize him at once if he attempted to make a spring at her. She +came into the room with an easy gracefulness which would at once command +the respect of any lunatic--for easiness is one of the qualities mad +people most respect. She walked over to him, smiling pleasantly, and +held out her hand. + +“Good-evening, Mr. Renfield,” said she. “You see, I know you, for Dr. +Seward has told me of you.” He made no immediate reply, but eyed her all +over intently with a set frown on his face. This look gave way to one +of wonder, which merged in doubt; then, to my intense astonishment, he +said:-- + +“You’re not the girl the doctor wanted to marry, are you? You can’t be, +you know, for she’s dead.” Mrs. Harker smiled sweetly as she replied:-- + +“Oh no! I have a husband of my own, to whom I was married before I ever +saw Dr. Seward, or he me. I am Mrs. Harker.” + +“Then what are you doing here?” + +“My husband and I are staying on a visit with Dr. Seward.” + +“Then don’t stay.” + +“But why not?” I thought that this style of conversation might not be +pleasant to Mrs. Harker, any more than it was to me, so I joined in:-- + +“How did you know I wanted to marry any one?” His reply was simply +contemptuous, given in a pause in which he turned his eyes from Mrs. +Harker to me, instantly turning them back again:-- + +“What an asinine question!” + +“I don’t see that at all, Mr. Renfield,” said Mrs. Harker, at once +championing me. He replied to her with as much courtesy and respect as +he had shown contempt to me:-- + +“You will, of course, understand, Mrs. Harker, that when a man is so +loved and honoured as our host is, everything regarding him is of +interest in our little community. Dr. Seward is loved not only by his +household and his friends, but even by his patients, who, being some of +them hardly in mental equilibrium, are apt to distort causes and +effects. Since I myself have been an inmate of a lunatic asylum, I +cannot but notice that the sophistic tendencies of some of its inmates +lean towards the errors of _non causa_ and _ignoratio elenchi_.” I +positively opened my eyes at this new development. Here was my own pet +lunatic--the most pronounced of his type that I had ever met +with--talking elemental philosophy, and with the manner of a polished +gentleman. I wonder if it was Mrs. Harker’s presence which had touched +some chord in his memory. If this new phase was spontaneous, or in any +way due to her unconscious influence, she must have some rare gift or +power. + +We continued to talk for some time; and, seeing that he was seemingly +quite reasonable, she ventured, looking at me questioningly as she +began, to lead him to his favourite topic. I was again astonished, for +he addressed himself to the question with the impartiality of the +completest sanity; he even took himself as an example when he mentioned +certain things. + +“Why, I myself am an instance of a man who had a strange belief. Indeed, +it was no wonder that my friends were alarmed, and insisted on my being +put under control. I used to fancy that life was a positive and +perpetual entity, and that by consuming a multitude of live things, no +matter how low in the scale of creation, one might indefinitely prolong +life. At times I held the belief so strongly that I actually tried to +take human life. The doctor here will bear me out that on one occasion I +tried to kill him for the purpose of strengthening my vital powers by +the assimilation with my own body of his life through the medium of his +blood--relying, of course, upon the Scriptural phrase, ‘For the blood is +the life.’ Though, indeed, the vendor of a certain nostrum has +vulgarised the truism to the very point of contempt. Isn’t that true, +doctor?” I nodded assent, for I was so amazed that I hardly knew what to +either think or say; it was hard to imagine that I had seen him eat up +his spiders and flies not five minutes before. Looking at my watch, I +saw that I should go to the station to meet Van Helsing, so I told Mrs. +Harker that it was time to leave. She came at once, after saying +pleasantly to Mr. Renfield: “Good-bye, and I hope I may see you often, +under auspices pleasanter to yourself,” to which, to my astonishment, he +replied:-- + +“Good-bye, my dear. I pray God I may never see your sweet face again. +May He bless and keep you!” + +When I went to the station to meet Van Helsing I left the boys behind +me. Poor Art seemed more cheerful than he has been since Lucy first took +ill, and Quincey is more like his own bright self than he has been for +many a long day. + +Van Helsing stepped from the carriage with the eager nimbleness of a +boy. He saw me at once, and rushed up to me, saying:-- + +“Ah, friend John, how goes all? Well? So! I have been busy, for I come +here to stay if need be. All affairs are settled with me, and I have +much to tell. Madam Mina is with you? Yes. And her so fine husband? And +Arthur and my friend Quincey, they are with you, too? Good!” + +As I drove to the house I told him of what had passed, and of how my own +diary had come to be of some use through Mrs. Harker’s suggestion; at +which the Professor interrupted me:-- + +“Ah, that wonderful Madam Mina! She has man’s brain--a brain that a man +should have were he much gifted--and a woman’s heart. The good God +fashioned her for a purpose, believe me, when He made that so good +combination. Friend John, up to now fortune has made that woman of help +to us; after to-night she must not have to do with this so terrible +affair. It is not good that she run a risk so great. We men are +determined--nay, are we not pledged?--to destroy this monster; but it is +no part for a woman. Even if she be not harmed, her heart may fail her +in so much and so many horrors; and hereafter she may suffer--both in +waking, from her nerves, and in sleep, from her dreams. And, besides, +she is young woman and not so long married; there may be other things to +think of some time, if not now. You tell me she has wrote all, then she +must consult with us; but to-morrow she say good-bye to this work, and +we go alone.” I agreed heartily with him, and then I told him what we +had found in his absence: that the house which Dracula had bought was +the very next one to my own. He was amazed, and a great concern seemed +to come on him. “Oh that we had known it before!” he said, “for then we +might have reached him in time to save poor Lucy. However, ‘the milk +that is spilt cries not out afterwards,’ as you say. We shall not think +of that, but go on our way to the end.” Then he fell into a silence that +lasted till we entered my own gateway. Before we went to prepare for +dinner he said to Mrs. Harker:-- + +“I am told, Madam Mina, by my friend John that you and your husband have +put up in exact order all things that have been, up to this moment.” + +“Not up to this moment, Professor,” she said impulsively, “but up to +this morning.” + +“But why not up to now? We have seen hitherto how good light all the +little things have made. We have told our secrets, and yet no one who +has told is the worse for it.” + +Mrs. Harker began to blush, and taking a paper from her pockets, she +said:-- + +“Dr. Van Helsing, will you read this, and tell me if it must go in. It +is my record of to-day. I too have seen the need of putting down at +present everything, however trivial; but there is little in this except +what is personal. Must it go in?” The Professor read it over gravely, +and handed it back, saying:-- + +“It need not go in if you do not wish it; but I pray that it may. It can +but make your husband love you the more, and all us, your friends, more +honour you--as well as more esteem and love.” She took it back with +another blush and a bright smile. + +And so now, up to this very hour, all the records we have are complete +and in order. The Professor took away one copy to study after dinner, +and before our meeting, which is fixed for nine o’clock. The rest of us +have already read everything; so when we meet in the study we shall all +be informed as to facts, and can arrange our plan of battle with this +terrible and mysterious enemy. + + +_Mina Harker’s Journal._ + +_30 September._--When we met in Dr. Seward’s study two hours after +dinner, which had been at six o’clock, we unconsciously formed a sort of +board or committee. Professor Van Helsing took the head of the table, to +which Dr. Seward motioned him as he came into the room. He made me sit +next to him on his right, and asked me to act as secretary; Jonathan sat +next to me. Opposite us were Lord Godalming, Dr. Seward, and Mr. +Morris--Lord Godalming being next the Professor, and Dr. Seward in the +centre. The Professor said:-- + +“I may, I suppose, take it that we are all acquainted with the facts +that are in these papers.” We all expressed assent, and he went on:-- + +“Then it were, I think good that I tell you something of the kind of +enemy with which we have to deal. I shall then make known to you +something of the history of this man, which has been ascertained for me. +So we then can discuss how we shall act, and can take our measure +according. + +“There are such beings as vampires; some of us have evidence that they +exist. Even had we not the proof of our own unhappy experience, the +teachings and the records of the past give proof enough for sane +peoples. I admit that at the first I was sceptic. Were it not that +through long years I have train myself to keep an open mind, I could not +have believe until such time as that fact thunder on my ear. ‘See! see! +I prove; I prove.’ Alas! Had I known at the first what now I know--nay, +had I even guess at him--one so precious life had been spared to many of +us who did love her. But that is gone; and we must so work, that other +poor souls perish not, whilst we can save. The _nosferatu_ do not die +like the bee when he sting once. He is only stronger; and being +stronger, have yet more power to work evil. This vampire which is +amongst us is of himself so strong in person as twenty men; he is of +cunning more than mortal, for his cunning be the growth of ages; he have +still the aids of necromancy, which is, as his etymology imply, the +divination by the dead, and all the dead that he can come nigh to are +for him at command; he is brute, and more than brute; he is devil in +callous, and the heart of him is not; he can, within limitations, appear +at will when, and where, and in any of the forms that are to him; he +can, within his range, direct the elements; the storm, the fog, the +thunder; he can command all the meaner things: the rat, and the owl, and +the bat--the moth, and the fox, and the wolf; he can grow and become +small; and he can at times vanish and come unknown. How then are we to +begin our strike to destroy him? How shall we find his where; and having +found it, how can we destroy? My friends, this is much; it is a terrible +task that we undertake, and there may be consequence to make the brave +shudder. For if we fail in this our fight he must surely win; and then +where end we? Life is nothings; I heed him not. But to fail here, is not +mere life or death. It is that we become as him; that we henceforward +become foul things of the night like him--without heart or conscience, +preying on the bodies and the souls of those we love best. To us for +ever are the gates of heaven shut; for who shall open them to us again? +We go on for all time abhorred by all; a blot on the face of God’s +sunshine; an arrow in the side of Him who died for man. But we are face +to face with duty; and in such case must we shrink? For me, I say, no; +but then I am old, and life, with his sunshine, his fair places, his +song of birds, his music and his love, lie far behind. You others are +young. Some have seen sorrow; but there are fair days yet in store. What +say you?” + +Whilst he was speaking, Jonathan had taken my hand. I feared, oh so +much, that the appalling nature of our danger was overcoming him when I +saw his hand stretch out; but it was life to me to feel its touch--so +strong, so self-reliant, so resolute. A brave man’s hand can speak for +itself; it does not even need a woman’s love to hear its music. + +When the Professor had done speaking my husband looked in my eyes, and I +in his; there was no need for speaking between us. + +“I answer for Mina and myself,” he said. + +“Count me in, Professor,” said Mr. Quincey Morris, laconically as usual. + +“I am with you,” said Lord Godalming, “for Lucy’s sake, if for no other +reason.” + +Dr. Seward simply nodded. The Professor stood up and, after laying his +golden crucifix on the table, held out his hand on either side. I took +his right hand, and Lord Godalming his left; Jonathan held my right with +his left and stretched across to Mr. Morris. So as we all took hands our +solemn compact was made. I felt my heart icy cold, but it did not even +occur to me to draw back. We resumed our places, and Dr. Van Helsing +went on with a sort of cheerfulness which showed that the serious work +had begun. It was to be taken as gravely, and in as businesslike a way, +as any other transaction of life:-- + +“Well, you know what we have to contend against; but we, too, are not +without strength. We have on our side power of combination--a power +denied to the vampire kind; we have sources of science; we are free to +act and think; and the hours of the day and the night are ours equally. +In fact, so far as our powers extend, they are unfettered, and we are +free to use them. We have self-devotion in a cause, and an end to +achieve which is not a selfish one. These things are much. + +“Now let us see how far the general powers arrayed against us are +restrict, and how the individual cannot. In fine, let us consider the +limitations of the vampire in general, and of this one in particular. + +“All we have to go upon are traditions and superstitions. These do not +at the first appear much, when the matter is one of life and death--nay +of more than either life or death. Yet must we be satisfied; in the +first place because we have to be--no other means is at our control--and +secondly, because, after all, these things--tradition and +superstition--are everything. Does not the belief in vampires rest for +others--though not, alas! for us--on them? A year ago which of us would +have received such a possibility, in the midst of our scientific, +sceptical, matter-of-fact nineteenth century? We even scouted a belief +that we saw justified under our very eyes. Take it, then, that the +vampire, and the belief in his limitations and his cure, rest for the +moment on the same base. For, let me tell you, he is known everywhere +that men have been. In old Greece, in old Rome; he flourish in Germany +all over, in France, in India, even in the Chernosese; and in China, so +far from us in all ways, there even is he, and the peoples fear him at +this day. He have follow the wake of the berserker Icelander, the +devil-begotten Hun, the Slav, the Saxon, the Magyar. So far, then, we +have all we may act upon; and let me tell you that very much of the +beliefs are justified by what we have seen in our own so unhappy +experience. The vampire live on, and cannot die by mere passing of the +time; he can flourish when that he can fatten on the blood of the +living. Even more, we have seen amongst us that he can even grow +younger; that his vital faculties grow strenuous, and seem as though +they refresh themselves when his special pabulum is plenty. But he +cannot flourish without this diet; he eat not as others. Even friend +Jonathan, who lived with him for weeks, did never see him to eat, never! +He throws no shadow; he make in the mirror no reflect, as again +Jonathan observe. He has the strength of many of his hand--witness again +Jonathan when he shut the door against the wolfs, and when he help him +from the diligence too. He can transform himself to wolf, as we gather +from the ship arrival in Whitby, when he tear open the dog; he can be as +bat, as Madam Mina saw him on the window at Whitby, and as friend John +saw him fly from this so near house, and as my friend Quincey saw him at +the window of Miss Lucy. He can come in mist which he create--that noble +ship’s captain proved him of this; but, from what we know, the distance +he can make this mist is limited, and it can only be round himself. He +come on moonlight rays as elemental dust--as again Jonathan saw those +sisters in the castle of Dracula. He become so small--we ourselves saw +Miss Lucy, ere she was at peace, slip through a hairbreadth space at the +tomb door. He can, when once he find his way, come out from anything or +into anything, no matter how close it be bound or even fused up with +fire--solder you call it. He can see in the dark--no small power this, +in a world which is one half shut from the light. Ah, but hear me +through. He can do all these things, yet he is not free. Nay; he is even +more prisoner than the slave of the galley, than the madman in his cell. +He cannot go where he lists; he who is not of nature has yet to obey +some of nature’s laws--why we know not. He may not enter anywhere at the +first, unless there be some one of the household who bid him to come; +though afterwards he can come as he please. His power ceases, as does +that of all evil things, at the coming of the day. Only at certain times +can he have limited freedom. If he be not at the place whither he is +bound, he can only change himself at noon or at exact sunrise or sunset. +These things are we told, and in this record of ours we have proof by +inference. Thus, whereas he can do as he will within his limit, when he +have his earth-home, his coffin-home, his hell-home, the place +unhallowed, as we saw when he went to the grave of the suicide at +Whitby; still at other time he can only change when the time come. It is +said, too, that he can only pass running water at the slack or the flood +of the tide. Then there are things which so afflict him that he has no +power, as the garlic that we know of; and as for things sacred, as this +symbol, my crucifix, that was amongst us even now when we resolve, to +them he is nothing, but in their presence he take his place far off and +silent with respect. There are others, too, which I shall tell you of, +lest in our seeking we may need them. The branch of wild rose on his +coffin keep him that he move not from it; a sacred bullet fired into the +coffin kill him so that he be true dead; and as for the stake through +him, we know already of its peace; or the cut-off head that giveth rest. +We have seen it with our eyes. + +“Thus when we find the habitation of this man-that-was, we can confine +him to his coffin and destroy him, if we obey what we know. But he is +clever. I have asked my friend Arminius, of Buda-Pesth University, to +make his record; and, from all the means that are, he tell me of what he +has been. He must, indeed, have been that Voivode Dracula who won his +name against the Turk, over the great river on the very frontier of +Turkey-land. If it be so, then was he no common man; for in that time, +and for centuries after, he was spoken of as the cleverest and the most +cunning, as well as the bravest of the sons of the ‘land beyond the +forest.’ That mighty brain and that iron resolution went with him to his +grave, and are even now arrayed against us. The Draculas were, says +Arminius, a great and noble race, though now and again were scions who +were held by their coevals to have had dealings with the Evil One. They +learned his secrets in the Scholomance, amongst the mountains over Lake +Hermanstadt, where the devil claims the tenth scholar as his due. In the +records are such words as ‘stregoica’--witch, ‘ordog,’ and +‘pokol’--Satan and hell; and in one manuscript this very Dracula is +spoken of as ‘wampyr,’ which we all understand too well. There have been +from the loins of this very one great men and good women, and their +graves make sacred the earth where alone this foulness can dwell. For it +is not the least of its terrors that this evil thing is rooted deep in +all good; in soil barren of holy memories it cannot rest.” + +Whilst they were talking Mr. Morris was looking steadily at the window, +and he now got up quietly, and went out of the room. There was a little +pause, and then the Professor went on:-- + +“And now we must settle what we do. We have here much data, and we must +proceed to lay out our campaign. We know from the inquiry of Jonathan +that from the castle to Whitby came fifty boxes of earth, all of which +were delivered at Carfax; we also know that at least some of these boxes +have been removed. It seems to me, that our first step should be to +ascertain whether all the rest remain in the house beyond that wall +where we look to-day; or whether any more have been removed. If the +latter, we must trace----” + +Here we were interrupted in a very startling way. Outside the house came +the sound of a pistol-shot; the glass of the window was shattered with a +bullet, which, ricochetting from the top of the embrasure, struck the +far wall of the room. I am afraid I am at heart a coward, for I shrieked +out. The men all jumped to their feet; Lord Godalming flew over to the +window and threw up the sash. As he did so we heard Mr. Morris’s voice +without:-- + +“Sorry! I fear I have alarmed you. I shall come in and tell you about +it.” A minute later he came in and said:-- + +“It was an idiotic thing of me to do, and I ask your pardon, Mrs. +Harker, most sincerely; I fear I must have frightened you terribly. But +the fact is that whilst the Professor was talking there came a big bat +and sat on the window-sill. I have got such a horror of the damned +brutes from recent events that I cannot stand them, and I went out to +have a shot, as I have been doing of late of evenings, whenever I have +seen one. You used to laugh at me for it then, Art.” + +“Did you hit it?” asked Dr. Van Helsing. + +“I don’t know; I fancy not, for it flew away into the wood.” Without +saying any more he took his seat, and the Professor began to resume his +statement:-- + +“We must trace each of these boxes; and when we are ready, we must +either capture or kill this monster in his lair; or we must, so to +speak, sterilise the earth, so that no more he can seek safety in it. +Thus in the end we may find him in his form of man between the hours of +noon and sunset, and so engage with him when he is at his most weak. + +“And now for you, Madam Mina, this night is the end until all be well. +You are too precious to us to have such risk. When we part to-night, you +no more must question. We shall tell you all in good time. We are men +and are able to bear; but you must be our star and our hope, and we +shall act all the more free that you are not in the danger, such as we +are.” + +All the men, even Jonathan, seemed relieved; but it did not seem to me +good that they should brave danger and, perhaps, lessen their +safety--strength being the best safety--through care of me; but their +minds were made up, and, though it was a bitter pill for me to swallow, +I could say nothing, save to accept their chivalrous care of me. + +Mr. Morris resumed the discussion:-- + +“As there is no time to lose, I vote we have a look at his house right +now. Time is everything with him; and swift action on our part may save +another victim.” + +I own that my heart began to fail me when the time for action came so +close, but I did not say anything, for I had a greater fear that if I +appeared as a drag or a hindrance to their work, they might even leave +me out of their counsels altogether. They have now gone off to Carfax, +with means to get into the house. + +Manlike, they had told me to go to bed and sleep; as if a woman can +sleep when those she loves are in danger! I shall lie down and pretend +to sleep, lest Jonathan have added anxiety about me when he returns. + + +_Dr. Seward’s Diary._ + +_1 October, 4 a. m._--Just as we were about to leave the house, an +urgent message was brought to me from Renfield to know if I would see +him at once, as he had something of the utmost importance to say to me. +I told the messenger to say that I would attend to his wishes in the +morning; I was busy just at the moment. The attendant added:-- + +“He seems very importunate, sir. I have never seen him so eager. I don’t +know but what, if you don’t see him soon, he will have one of his +violent fits.” I knew the man would not have said this without some +cause, so I said: “All right; I’ll go now”; and I asked the others to +wait a few minutes for me, as I had to go and see my “patient.” + +“Take me with you, friend John,” said the Professor. “His case in your +diary interest me much, and it had bearing, too, now and again on _our_ +case. I should much like to see him, and especial when his mind is +disturbed.” + +“May I come also?” asked Lord Godalming. + +“Me too?” said Quincey Morris. “May I come?” said Harker. I nodded, and +we all went down the passage together. + +We found him in a state of considerable excitement, but far more +rational in his speech and manner than I had ever seen him. There was an +unusual understanding of himself, which was unlike anything I had ever +met with in a lunatic; and he took it for granted that his reasons would +prevail with others entirely sane. We all four went into the room, but +none of the others at first said anything. His request was that I would +at once release him from the asylum and send him home. This he backed up +with arguments regarding his complete recovery, and adduced his own +existing sanity. “I appeal to your friends,” he said, “they will, +perhaps, not mind sitting in judgment on my case. By the way, you have +not introduced me.” I was so much astonished, that the oddness of +introducing a madman in an asylum did not strike me at the moment; and, +besides, there was a certain dignity in the man’s manner, so much of +the habit of equality, that I at once made the introduction: “Lord +Godalming; Professor Van Helsing; Mr. Quincey Morris, of Texas; Mr. +Renfield.” He shook hands with each of them, saying in turn:-- + +“Lord Godalming, I had the honour of seconding your father at the +Windham; I grieve to know, by your holding the title, that he is no +more. He was a man loved and honoured by all who knew him; and in his +youth was, I have heard, the inventor of a burnt rum punch, much +patronised on Derby night. Mr. Morris, you should be proud of your great +state. Its reception into the Union was a precedent which may have +far-reaching effects hereafter, when the Pole and the Tropics may hold +alliance to the Stars and Stripes. The power of Treaty may yet prove a +vast engine of enlargement, when the Monroe doctrine takes its true +place as a political fable. What shall any man say of his pleasure at +meeting Van Helsing? Sir, I make no apology for dropping all forms of +conventional prefix. When an individual has revolutionised therapeutics +by his discovery of the continuous evolution of brain-matter, +conventional forms are unfitting, since they would seem to limit him to +one of a class. You, gentlemen, who by nationality, by heredity, or by +the possession of natural gifts, are fitted to hold your respective +places in the moving world, I take to witness that I am as sane as at +least the majority of men who are in full possession of their liberties. +And I am sure that you, Dr. Seward, humanitarian and medico-jurist as +well as scientist, will deem it a moral duty to deal with me as one to +be considered as under exceptional circumstances.” He made this last +appeal with a courtly air of conviction which was not without its own +charm. + +I think we were all staggered. For my own part, I was under the +conviction, despite my knowledge of the man’s character and history, +that his reason had been restored; and I felt under a strong impulse to +tell him that I was satisfied as to his sanity, and would see about the +necessary formalities for his release in the morning. I thought it +better to wait, however, before making so grave a statement, for of old +I knew the sudden changes to which this particular patient was liable. +So I contented myself with making a general statement that he appeared +to be improving very rapidly; that I would have a longer chat with him +in the morning, and would then see what I could do in the direction of +meeting his wishes. This did not at all satisfy him, for he said +quickly:-- + +“But I fear, Dr. Seward, that you hardly apprehend my wish. I desire to +go at once--here--now--this very hour--this very moment, if I may. Time +presses, and in our implied agreement with the old scytheman it is of +the essence of the contract. I am sure it is only necessary to put +before so admirable a practitioner as Dr. Seward so simple, yet so +momentous a wish, to ensure its fulfilment.” He looked at me keenly, and +seeing the negative in my face, turned to the others, and scrutinised +them closely. Not meeting any sufficient response, he went on:-- + +“Is it possible that I have erred in my supposition?” + +“You have,” I said frankly, but at the same time, as I felt, brutally. +There was a considerable pause, and then he said slowly:-- + +“Then I suppose I must only shift my ground of request. Let me ask for +this concession--boon, privilege, what you will. I am content to implore +in such a case, not on personal grounds, but for the sake of others. I +am not at liberty to give you the whole of my reasons; but you may, I +assure you, take it from me that they are good ones, sound and +unselfish, and spring from the highest sense of duty. Could you look, +sir, into my heart, you would approve to the full the sentiments which +animate me. Nay, more, you would count me amongst the best and truest of +your friends.” Again he looked at us all keenly. I had a growing +conviction that this sudden change of his entire intellectual method was +but yet another form or phase of his madness, and so determined to let +him go on a little longer, knowing from experience that he would, like +all lunatics, give himself away in the end. Van Helsing was gazing at +him with a look of utmost intensity, his bushy eyebrows almost meeting +with the fixed concentration of his look. He said to Renfield in a tone +which did not surprise me at the time, but only when I thought of it +afterwards--for it was as of one addressing an equal:-- + +“Can you not tell frankly your real reason for wishing to be free +to-night? I will undertake that if you will satisfy even me--a stranger, +without prejudice, and with the habit of keeping an open mind--Dr. +Seward will give you, at his own risk and on his own responsibility, the +privilege you seek.” He shook his head sadly, and with a look of +poignant regret on his face. The Professor went on:-- + +“Come, sir, bethink yourself. You claim the privilege of reason in the +highest degree, since you seek to impress us with your complete +reasonableness. You do this, whose sanity we have reason to doubt, since +you are not yet released from medical treatment for this very defect. If +you will not help us in our effort to choose the wisest course, how can +we perform the duty which you yourself put upon us? Be wise, and help +us; and if we can we shall aid you to achieve your wish.” He still shook +his head as he said:-- + +“Dr. Van Helsing, I have nothing to say. Your argument is complete, and +if I were free to speak I should not hesitate a moment; but I am not my +own master in the matter. I can only ask you to trust me. If I am +refused, the responsibility does not rest with me.” I thought it was now +time to end the scene, which was becoming too comically grave, so I went +towards the door, simply saying:-- + +“Come, my friends, we have work to do. Good-night.” + +As, however, I got near the door, a new change came over the patient. He +moved towards me so quickly that for the moment I feared that he was +about to make another homicidal attack. My fears, however, were +groundless, for he held up his two hands imploringly, and made his +petition in a moving manner. As he saw that the very excess of his +emotion was militating against him, by restoring us more to our old +relations, he became still more demonstrative. I glanced at Van Helsing, +and saw my conviction reflected in his eyes; so I became a little more +fixed in my manner, if not more stern, and motioned to him that his +efforts were unavailing. I had previously seen something of the same +constantly growing excitement in him when he had to make some request of +which at the time he had thought much, such, for instance, as when he +wanted a cat; and I was prepared to see the collapse into the same +sullen acquiescence on this occasion. My expectation was not realised, +for, when he found that his appeal would not be successful, he got into +quite a frantic condition. He threw himself on his knees, and held up +his hands, wringing them in plaintive supplication, and poured forth a +torrent of entreaty, with the tears rolling down his cheeks, and his +whole face and form expressive of the deepest emotion:-- + +“Let me entreat you, Dr. Seward, oh, let me implore you, to let me out +of this house at once. Send me away how you will and where you will; +send keepers with me with whips and chains; let them take me in a +strait-waistcoat, manacled and leg-ironed, even to a gaol; but let me go +out of this. You don’t know what you do by keeping me here. I am +speaking from the depths of my heart--of my very soul. You don’t know +whom you wrong, or how; and I may not tell. Woe is me! I may not tell. +By all you hold sacred--by all you hold dear--by your love that is +lost--by your hope that lives--for the sake of the Almighty, take me out +of this and save my soul from guilt! Can’t you hear me, man? Can’t you +understand? Will you never learn? Don’t you know that I am sane and +earnest now; that I am no lunatic in a mad fit, but a sane man fighting +for his soul? Oh, hear me! hear me! Let me go! let me go! let me go!” + +I thought that the longer this went on the wilder he would get, and so +would bring on a fit; so I took him by the hand and raised him up. + +“Come,” I said sternly, “no more of this; we have had quite enough +already. Get to your bed and try to behave more discreetly.” + +He suddenly stopped and looked at me intently for several moments. Then, +without a word, he rose and moving over, sat down on the side of the +bed. The collapse had come, as on former occasion, just as I had +expected. + +When I was leaving the room, last of our party, he said to me in a +quiet, well-bred voice:-- + +“You will, I trust, Dr. Seward, do me the justice to bear in mind, later +on, that I did what I could to convince you to-night.” + + + + +CHAPTER XIX + +JONATHAN HARKER’S JOURNAL + + +_1 October, 5 a. m._--I went with the party to the search with an easy +mind, for I think I never saw Mina so absolutely strong and well. I am +so glad that she consented to hold back and let us men do the work. +Somehow, it was a dread to me that she was in this fearful business at +all; but now that her work is done, and that it is due to her energy and +brains and foresight that the whole story is put together in such a way +that every point tells, she may well feel that her part is finished, and +that she can henceforth leave the rest to us. We were, I think, all a +little upset by the scene with Mr. Renfield. When we came away from his +room we were silent till we got back to the study. Then Mr. Morris said +to Dr. Seward:-- + +“Say, Jack, if that man wasn’t attempting a bluff, he is about the +sanest lunatic I ever saw. I’m not sure, but I believe that he had some +serious purpose, and if he had, it was pretty rough on him not to get a +chance.” Lord Godalming and I were silent, but Dr. Van Helsing added:-- + +“Friend John, you know more of lunatics than I do, and I’m glad of it, +for I fear that if it had been to me to decide I would before that last +hysterical outburst have given him free. But we live and learn, and in +our present task we must take no chance, as my friend Quincey would say. +All is best as they are.” Dr. Seward seemed to answer them both in a +dreamy kind of way:-- + +“I don’t know but that I agree with you. If that man had been an +ordinary lunatic I would have taken my chance of trusting him; but he +seems so mixed up with the Count in an indexy kind of way that I am +afraid of doing anything wrong by helping his fads. I can’t forget how +he prayed with almost equal fervour for a cat, and then tried to tear my +throat out with his teeth. Besides, he called the Count ‘lord and +master,’ and he may want to get out to help him in some diabolical way. +That horrid thing has the wolves and the rats and his own kind to help +him, so I suppose he isn’t above trying to use a respectable lunatic. He +certainly did seem earnest, though. I only hope we have done what is +best. These things, in conjunction with the wild work we have in hand, +help to unnerve a man.” The Professor stepped over, and laying his hand +on his shoulder, said in his grave, kindly way:-- + +“Friend John, have no fear. We are trying to do our duty in a very sad +and terrible case; we can only do as we deem best. What else have we to +hope for, except the pity of the good God?” Lord Godalming had slipped +away for a few minutes, but now he returned. He held up a little silver +whistle, as he remarked:-- + +“That old place may be full of rats, and if so, I’ve got an antidote on +call.” Having passed the wall, we took our way to the house, taking care +to keep in the shadows of the trees on the lawn when the moonlight shone +out. When we got to the porch the Professor opened his bag and took out +a lot of things, which he laid on the step, sorting them into four +little groups, evidently one for each. Then he spoke:-- + +“My friends, we are going into a terrible danger, and we need arms of +many kinds. Our enemy is not merely spiritual. Remember that he has the +strength of twenty men, and that, though our necks or our windpipes are +of the common kind--and therefore breakable or crushable--his are not +amenable to mere strength. A stronger man, or a body of men more strong +in all than him, can at certain times hold him; but they cannot hurt him +as we can be hurt by him. We must, therefore, guard ourselves from his +touch. Keep this near your heart”--as he spoke he lifted a little silver +crucifix and held it out to me, I being nearest to him--“put these +flowers round your neck”--here he handed to me a wreath of withered +garlic blossoms--“for other enemies more mundane, this revolver and this +knife; and for aid in all, these so small electric lamps, which you can +fasten to your breast; and for all, and above all at the last, this, +which we must not desecrate needless.” This was a portion of Sacred +Wafer, which he put in an envelope and handed to me. Each of the others +was similarly equipped. “Now,” he said, “friend John, where are the +skeleton keys? If so that we can open the door, we need not break house +by the window, as before at Miss Lucy’s.” + +Dr. Seward tried one or two skeleton keys, his mechanical dexterity as a +surgeon standing him in good stead. Presently he got one to suit; after +a little play back and forward the bolt yielded, and, with a rusty +clang, shot back. We pressed on the door, the rusty hinges creaked, and +it slowly opened. It was startlingly like the image conveyed to me in +Dr. Seward’s diary of the opening of Miss Westenra’s tomb; I fancy that +the same idea seemed to strike the others, for with one accord they +shrank back. The Professor was the first to move forward, and stepped +into the open door. + +“_In manus tuas, Domine!_” he said, crossing himself as he passed over +the threshold. We closed the door behind us, lest when we should have +lit our lamps we should possibly attract attention from the road. The +Professor carefully tried the lock, lest we might not be able to open it +from within should we be in a hurry making our exit. Then we all lit our +lamps and proceeded on our search. + +The light from the tiny lamps fell in all sorts of odd forms, as the +rays crossed each other, or the opacity of our bodies threw great +shadows. I could not for my life get away from the feeling that there +was some one else amongst us. I suppose it was the recollection, so +powerfully brought home to me by the grim surroundings, of that terrible +experience in Transylvania. I think the feeling was common to us all, +for I noticed that the others kept looking over their shoulders at every +sound and every new shadow, just as I felt myself doing. + +The whole place was thick with dust. The floor was seemingly inches +deep, except where there were recent footsteps, in which on holding down +my lamp I could see marks of hobnails where the dust was cracked. The +walls were fluffy and heavy with dust, and in the corners were masses of +spider’s webs, whereon the dust had gathered till they looked like old +tattered rags as the weight had torn them partly down. On a table in the +hall was a great bunch of keys, with a time-yellowed label on each. They +had been used several times, for on the table were several similar rents +in the blanket of dust, similar to that exposed when the Professor +lifted them. He turned to me and said:-- + +“You know this place, Jonathan. You have copied maps of it, and you know +it at least more than we do. Which is the way to the chapel?” I had an +idea of its direction, though on my former visit I had not been able to +get admission to it; so I led the way, and after a few wrong turnings +found myself opposite a low, arched oaken door, ribbed with iron bands. +“This is the spot,” said the Professor as he turned his lamp on a small +map of the house, copied from the file of my original correspondence +regarding the purchase. With a little trouble we found the key on the +bunch and opened the door. We were prepared for some unpleasantness, for +as we were opening the door a faint, malodorous air seemed to exhale +through the gaps, but none of us ever expected such an odour as we +encountered. None of the others had met the Count at all at close +quarters, and when I had seen him he was either in the fasting stage of +his existence in his rooms or, when he was gloated with fresh blood, in +a ruined building open to the air; but here the place was small and +close, and the long disuse had made the air stagnant and foul. There was +an earthy smell, as of some dry miasma, which came through the fouler +air. But as to the odour itself, how shall I describe it? It was not +alone that it was composed of all the ills of mortality and with the +pungent, acrid smell of blood, but it seemed as though corruption had +become itself corrupt. Faugh! it sickens me to think of it. Every breath +exhaled by that monster seemed to have clung to the place and +intensified its loathsomeness. + +Under ordinary circumstances such a stench would have brought our +enterprise to an end; but this was no ordinary case, and the high and +terrible purpose in which we were involved gave us a strength which rose +above merely physical considerations. After the involuntary shrinking +consequent on the first nauseous whiff, we one and all set about our +work as though that loathsome place were a garden of roses. + +We made an accurate examination of the place, the Professor saying as we +began:-- + +“The first thing is to see how many of the boxes are left; we must then +examine every hole and corner and cranny and see if we cannot get some +clue as to what has become of the rest.” A glance was sufficient to show +how many remained, for the great earth chests were bulky, and there was +no mistaking them. + +There were only twenty-nine left out of the fifty! Once I got a fright, +for, seeing Lord Godalming suddenly turn and look out of the vaulted +door into the dark passage beyond, I looked too, and for an instant my +heart stood still. Somewhere, looking out from the shadow, I seemed to +see the high lights of the Count’s evil face, the ridge of the nose, the +red eyes, the red lips, the awful pallor. It was only for a moment, for, +as Lord Godalming said, “I thought I saw a face, but it was only the +shadows,” and resumed his inquiry, I turned my lamp in the direction, +and stepped into the passage. There was no sign of any one; and as there +were no corners, no doors, no aperture of any kind, but only the solid +walls of the passage, there could be no hiding-place even for _him_. I +took it that fear had helped imagination, and said nothing. + +A few minutes later I saw Morris step suddenly back from a corner, which +he was examining. We all followed his movements with our eyes, for +undoubtedly some nervousness was growing on us, and we saw a whole mass +of phosphorescence, which twinkled like stars. We all instinctively drew +back. The whole place was becoming alive with rats. + +For a moment or two we stood appalled, all save Lord Godalming, who was +seemingly prepared for such an emergency. Rushing over to the great +iron-bound oaken door, which Dr. Seward had described from the outside, +and which I had seen myself, he turned the key in the lock, drew the +huge bolts, and swung the door open. Then, taking his little silver +whistle from his pocket, he blew a low, shrill call. It was answered +from behind Dr. Seward’s house by the yelping of dogs, and after about a +minute three terriers came dashing round the corner of the house. +Unconsciously we had all moved towards the door, and as we moved I +noticed that the dust had been much disturbed: the boxes which had been +taken out had been brought this way. But even in the minute that had +elapsed the number of the rats had vastly increased. They seemed to +swarm over the place all at once, till the lamplight, shining on their +moving dark bodies and glittering, baleful eyes, made the place look +like a bank of earth set with fireflies. The dogs dashed on, but at the +threshold suddenly stopped and snarled, and then, simultaneously lifting +their noses, began to howl in most lugubrious fashion. The rats were +multiplying in thousands, and we moved out. + +Lord Godalming lifted one of the dogs, and carrying him in, placed him +on the floor. The instant his feet touched the ground he seemed to +recover his courage, and rushed at his natural enemies. They fled before +him so fast that before he had shaken the life out of a score, the other +dogs, who had by now been lifted in the same manner, had but small prey +ere the whole mass had vanished. + +With their going it seemed as if some evil presence had departed, for +the dogs frisked about and barked merrily as they made sudden darts at +their prostrate foes, and turned them over and over and tossed them in +the air with vicious shakes. We all seemed to find our spirits rise. +Whether it was the purifying of the deadly atmosphere by the opening of +the chapel door, or the relief which we experienced by finding ourselves +in the open I know not; but most certainly the shadow of dread seemed to +slip from us like a robe, and the occasion of our coming lost something +of its grim significance, though we did not slacken a whit in our +resolution. We closed the outer door and barred and locked it, and +bringing the dogs with us, began our search of the house. We found +nothing throughout except dust in extraordinary proportions, and all +untouched save for my own footsteps when I had made my first visit. +Never once did the dogs exhibit any symptom of uneasiness, and even when +we returned to the chapel they frisked about as though they had been +rabbit-hunting in a summer wood. + +The morning was quickening in the east when we emerged from the front. +Dr. Van Helsing had taken the key of the hall-door from the bunch, and +locked the door in orthodox fashion, putting the key into his pocket +when he had done. + +“So far,” he said, “our night has been eminently successful. No harm has +come to us such as I feared might be and yet we have ascertained how +many boxes are missing. More than all do I rejoice that this, our +first--and perhaps our most difficult and dangerous--step has been +accomplished without the bringing thereinto our most sweet Madam Mina or +troubling her waking or sleeping thoughts with sights and sounds and +smells of horror which she might never forget. One lesson, too, we have +learned, if it be allowable to argue _a particulari_: that the brute +beasts which are to the Count’s command are yet themselves not amenable +to his spiritual power; for look, these rats that would come to his +call, just as from his castle top he summon the wolves to your going and +to that poor mother’s cry, though they come to him, they run pell-mell +from the so little dogs of my friend Arthur. We have other matters +before us, other dangers, other fears; and that monster--he has not used +his power over the brute world for the only or the last time to-night. +So be it that he has gone elsewhere. Good! It has given us opportunity +to cry ‘check’ in some ways in this chess game, which we play for the +stake of human souls. And now let us go home. The dawn is close at hand, +and we have reason to be content with our first night’s work. It may be +ordained that we have many nights and days to follow, if full of peril; +but we must go on, and from no danger shall we shrink.” + +The house was silent when we got back, save for some poor creature who +was screaming away in one of the distant wards, and a low, moaning sound +from Renfield’s room. The poor wretch was doubtless torturing himself, +after the manner of the insane, with needless thoughts of pain. + +I came tiptoe into our own room, and found Mina asleep, breathing so +softly that I had to put my ear down to hear it. She looks paler than +usual. I hope the meeting to-night has not upset her. I am truly +thankful that she is to be left out of our future work, and even of our +deliberations. It is too great a strain for a woman to bear. I did not +think so at first, but I know better now. Therefore I am glad that it is +settled. There may be things which would frighten her to hear; and yet +to conceal them from her might be worse than to tell her if once she +suspected that there was any concealment. Henceforth our work is to be a +sealed book to her, till at least such time as we can tell her that all +is finished, and the earth free from a monster of the nether world. I +daresay it will be difficult to begin to keep silence after such +confidence as ours; but I must be resolute, and to-morrow I shall keep +dark over to-night’s doings, and shall refuse to speak of anything that +has happened. I rest on the sofa, so as not to disturb her. + + * * * * * + +_1 October, later._--I suppose it was natural that we should have all +overslept ourselves, for the day was a busy one, and the night had no +rest at all. Even Mina must have felt its exhaustion, for though I slept +till the sun was high, I was awake before her, and had to call two or +three times before she awoke. Indeed, she was so sound asleep that for a +few seconds she did not recognize me, but looked at me with a sort of +blank terror, as one looks who has been waked out of a bad dream. She +complained a little of being tired, and I let her rest till later in the +day. We now know of twenty-one boxes having been removed, and if it be +that several were taken in any of these removals we may be able to trace +them all. Such will, of course, immensely simplify our labour, and the +sooner the matter is attended to the better. I shall look up Thomas +Snelling to-day. + + +_Dr. Seward’s Diary._ + +_1 October._--It was towards noon when I was awakened by the Professor +walking into my room. He was more jolly and cheerful than usual, and it +is quite evident that last night’s work has helped to take some of the +brooding weight off his mind. After going over the adventure of the +night he suddenly said:-- + +“Your patient interests me much. May it be that with you I visit him +this morning? Or if that you are too occupy, I can go alone if it may +be. It is a new experience to me to find a lunatic who talk philosophy, +and reason so sound.” I had some work to do which pressed, so I told him +that if he would go alone I would be glad, as then I should not have to +keep him waiting; so I called an attendant and gave him the necessary +instructions. Before the Professor left the room I cautioned him against +getting any false impression from my patient. “But,” he answered, “I +want him to talk of himself and of his delusion as to consuming live +things. He said to Madam Mina, as I see in your diary of yesterday, that +he had once had such a belief. Why do you smile, friend John?” + +“Excuse me,” I said, “but the answer is here.” I laid my hand on the +type-written matter. “When our sane and learned lunatic made that very +statement of how he _used_ to consume life, his mouth was actually +nauseous with the flies and spiders which he had eaten just before Mrs. +Harker entered the room.” Van Helsing smiled in turn. “Good!” he said. +“Your memory is true, friend John. I should have remembered. And yet it +is this very obliquity of thought and memory which makes mental disease +such a fascinating study. Perhaps I may gain more knowledge out of the +folly of this madman than I shall from the teaching of the most wise. +Who knows?” I went on with my work, and before long was through that in +hand. It seemed that the time had been very short indeed, but there was +Van Helsing back in the study. “Do I interrupt?” he asked politely as he +stood at the door. + +“Not at all,” I answered. “Come in. My work is finished, and I am free. +I can go with you now, if you like. + +“It is needless; I have seen him!” + +“Well?” + +“I fear that he does not appraise me at much. Our interview was short. +When I entered his room he was sitting on a stool in the centre, with +his elbows on his knees, and his face was the picture of sullen +discontent. I spoke to him as cheerfully as I could, and with such a +measure of respect as I could assume. He made no reply whatever. “Don’t +you know me?” I asked. His answer was not reassuring: “I know you well +enough; you are the old fool Van Helsing. I wish you would take yourself +and your idiotic brain theories somewhere else. Damn all thick-headed +Dutchmen!” Not a word more would he say, but sat in his implacable +sullenness as indifferent to me as though I had not been in the room at +all. Thus departed for this time my chance of much learning from this so +clever lunatic; so I shall go, if I may, and cheer myself with a few +happy words with that sweet soul Madam Mina. Friend John, it does +rejoice me unspeakable that she is no more to be pained, no more to be +worried with our terrible things. Though we shall much miss her help, it +is better so.” + +“I agree with you with all my heart,” I answered earnestly, for I did +not want him to weaken in this matter. “Mrs. Harker is better out of it. +Things are quite bad enough for us, all men of the world, and who have +been in many tight places in our time; but it is no place for a woman, +and if she had remained in touch with the affair, it would in time +infallibly have wrecked her.” + +So Van Helsing has gone to confer with Mrs. Harker and Harker; Quincey +and Art are all out following up the clues as to the earth-boxes. I +shall finish my round of work and we shall meet to-night. + + +_Mina Harker’s Journal._ + +_1 October._--It is strange to me to be kept in the dark as I am to-day; +after Jonathan’s full confidence for so many years, to see him +manifestly avoid certain matters, and those the most vital of all. This +morning I slept late after the fatigues of yesterday, and though +Jonathan was late too, he was the earlier. He spoke to me before he went +out, never more sweetly or tenderly, but he never mentioned a word of +what had happened in the visit to the Count’s house. And yet he must +have known how terribly anxious I was. Poor dear fellow! I suppose it +must have distressed him even more than it did me. They all agreed that +it was best that I should not be drawn further into this awful work, and +I acquiesced. But to think that he keeps anything from me! And now I am +crying like a silly fool, when I _know_ it comes from my husband’s great +love and from the good, good wishes of those other strong men. + +That has done me good. Well, some day Jonathan will tell me all; and +lest it should ever be that he should think for a moment that I kept +anything from him, I still keep my journal as usual. Then if he has +feared of my trust I shall show it to him, with every thought of my +heart put down for his dear eyes to read. I feel strangely sad and +low-spirited to-day. I suppose it is the reaction from the terrible +excitement. + +Last night I went to bed when the men had gone, simply because they told +me to. I didn’t feel sleepy, and I did feel full of devouring anxiety. I +kept thinking over everything that has been ever since Jonathan came to +see me in London, and it all seems like a horrible tragedy, with fate +pressing on relentlessly to some destined end. Everything that one does +seems, no matter how right it may be, to bring on the very thing which +is most to be deplored. If I hadn’t gone to Whitby, perhaps poor dear +Lucy would be with us now. She hadn’t taken to visiting the churchyard +till I came, and if she hadn’t come there in the day-time with me she +wouldn’t have walked there in her sleep; and if she hadn’t gone there at +night and asleep, that monster couldn’t have destroyed her as he did. +Oh, why did I ever go to Whitby? There now, crying again! I wonder what +has come over me to-day. I must hide it from Jonathan, for if he knew +that I had been crying twice in one morning--I, who never cried on my +own account, and whom he has never caused to shed a tear--the dear +fellow would fret his heart out. I shall put a bold face on, and if I do +feel weepy, he shall never see it. I suppose it is one of the lessons +that we poor women have to learn.... + +I can’t quite remember how I fell asleep last night. I remember hearing +the sudden barking of the dogs and a lot of queer sounds, like praying +on a very tumultuous scale, from Mr. Renfield’s room, which is somewhere +under this. And then there was silence over everything, silence so +profound that it startled me, and I got up and looked out of the window. +All was dark and silent, the black shadows thrown by the moonlight +seeming full of a silent mystery of their own. Not a thing seemed to be +stirring, but all to be grim and fixed as death or fate; so that a thin +streak of white mist, that crept with almost imperceptible slowness +across the grass towards the house, seemed to have a sentience and a +vitality of its own. I think that the digression of my thoughts must +have done me good, for when I got back to bed I found a lethargy +creeping over me. I lay a while, but could not quite sleep, so I got out +and looked out of the window again. The mist was spreading, and was now +close up to the house, so that I could see it lying thick against the +wall, as though it were stealing up to the windows. The poor man was +more loud than ever, and though I could not distinguish a word he said, +I could in some way recognise in his tones some passionate entreaty on +his part. Then there was the sound of a struggle, and I knew that the +attendants were dealing with him. I was so frightened that I crept into +bed, and pulled the clothes over my head, putting my fingers in my ears. +I was not then a bit sleepy, at least so I thought; but I must have +fallen asleep, for, except dreams, I do not remember anything until the +morning, when Jonathan woke me. I think that it took me an effort and a +little time to realise where I was, and that it was Jonathan who was +bending over me. My dream was very peculiar, and was almost typical of +the way that waking thoughts become merged in, or continued in, dreams. + +I thought that I was asleep, and waiting for Jonathan to come back. I +was very anxious about him, and I was powerless to act; my feet, and my +hands, and my brain were weighted, so that nothing could proceed at the +usual pace. And so I slept uneasily and thought. Then it began to dawn +upon me that the air was heavy, and dank, and cold. I put back the +clothes from my face, and found, to my surprise, that all was dim +around. The gaslight which I had left lit for Jonathan, but turned down, +came only like a tiny red spark through the fog, which had evidently +grown thicker and poured into the room. Then it occurred to me that I +had shut the window before I had come to bed. I would have got out to +make certain on the point, but some leaden lethargy seemed to chain my +limbs and even my will. I lay still and endured; that was all. I closed +my eyes, but could still see through my eyelids. (It is wonderful what +tricks our dreams play us, and how conveniently we can imagine.) The +mist grew thicker and thicker and I could see now how it came in, for I +could see it like smoke--or with the white energy of boiling +water--pouring in, not through the window, but through the joinings of +the door. It got thicker and thicker, till it seemed as if it became +concentrated into a sort of pillar of cloud in the room, through the top +of which I could see the light of the gas shining like a red eye. Things +began to whirl through my brain just as the cloudy column was now +whirling in the room, and through it all came the scriptural words “a +pillar of cloud by day and of fire by night.” Was it indeed some such +spiritual guidance that was coming to me in my sleep? But the pillar was +composed of both the day and the night-guiding, for the fire was in the +red eye, which at the thought got a new fascination for me; till, as I +looked, the fire divided, and seemed to shine on me through the fog like +two red eyes, such as Lucy told me of in her momentary mental wandering +when, on the cliff, the dying sunlight struck the windows of St. Mary’s +Church. Suddenly the horror burst upon me that it was thus that Jonathan +had seen those awful women growing into reality through the whirling mist +in the moonlight, and in my dream I must have fainted, for all became +black darkness. The last conscious effort which imagination made was to +show me a livid white face bending over me out of the mist. I must be +careful of such dreams, for they would unseat one’s reason if there were +too much of them. I would get Dr. Van Helsing or Dr. Seward to prescribe +something for me which would make me sleep, only that I fear to alarm +them. Such a dream at the present time would become woven into their +fears for me. To-night I shall strive hard to sleep naturally. If I do +not, I shall to-morrow night get them to give me a dose of chloral; that +cannot hurt me for once, and it will give me a good night’s sleep. Last +night tired me more than if I had not slept at all. + + * * * * * + +_2 October 10 p. m._--Last night I slept, but did not dream. I must have +slept soundly, for I was not waked by Jonathan coming to bed; but the +sleep has not refreshed me, for to-day I feel terribly weak and +spiritless. I spent all yesterday trying to read, or lying down dozing. +In the afternoon Mr. Renfield asked if he might see me. Poor man, he was +very gentle, and when I came away he kissed my hand and bade God bless +me. Some way it affected me much; I am crying when I think of him. This +is a new weakness, of which I must be careful. Jonathan would be +miserable if he knew I had been crying. He and the others were out till +dinner-time, and they all came in tired. I did what I could to brighten +them up, and I suppose that the effort did me good, for I forgot how +tired I was. After dinner they sent me to bed, and all went off to smoke +together, as they said, but I knew that they wanted to tell each other +of what had occurred to each during the day; I could see from Jonathan’s +manner that he had something important to communicate. I was not so +sleepy as I should have been; so before they went I asked Dr. Seward to +give me a little opiate of some kind, as I had not slept well the night +before. He very kindly made me up a sleeping draught, which he gave to +me, telling me that it would do me no harm, as it was very mild.... I +have taken it, and am waiting for sleep, which still keeps aloof. I hope +I have not done wrong, for as sleep begins to flirt with me, a new fear +comes: that I may have been foolish in thus depriving myself of the +power of waking. I might want it. Here comes sleep. Good-night. + + + + +CHAPTER XX + +JONATHAN HARKER’S JOURNAL + + +_1 October, evening._--I found Thomas Snelling in his house at Bethnal +Green, but unhappily he was not in a condition to remember anything. The +very prospect of beer which my expected coming had opened to him had +proved too much, and he had begun too early on his expected debauch. I +learned, however, from his wife, who seemed a decent, poor soul, that he +was only the assistant to Smollet, who of the two mates was the +responsible person. So off I drove to Walworth, and found Mr. Joseph +Smollet at home and in his shirtsleeves, taking a late tea out of a +saucer. He is a decent, intelligent fellow, distinctly a good, reliable +type of workman, and with a headpiece of his own. He remembered all +about the incident of the boxes, and from a wonderful dog’s-eared +notebook, which he produced from some mysterious receptacle about the +seat of his trousers, and which had hieroglyphical entries in thick, +half-obliterated pencil, he gave me the destinations of the boxes. There +were, he said, six in the cartload which he took from Carfax and left at +197, Chicksand Street, Mile End New Town, and another six which he +deposited at Jamaica Lane, Bermondsey. If then the Count meant to +scatter these ghastly refuges of his over London, these places were +chosen as the first of delivery, so that later he might distribute more +fully. The systematic manner in which this was done made me think that +he could not mean to confine himself to two sides of London. He was now +fixed on the far east of the northern shore, on the east of the southern +shore, and on the south. The north and west were surely never meant to +be left out of his diabolical scheme--let alone the City itself and the +very heart of fashionable London in the south-west and west. I went back +to Smollet, and asked him if he could tell us if any other boxes had +been taken from Carfax. + +He replied:-- + +“Well, guv’nor, you’ve treated me wery ’an’some”--I had given him half a +sovereign--“an’ I’ll tell yer all I know. I heard a man by the name of +Bloxam say four nights ago in the ’Are an’ ’Ounds, in Pincher’s Alley, +as ’ow he an’ his mate ’ad ’ad a rare dusty job in a old ’ouse at +Purfect. There ain’t a-many such jobs as this ’ere, an’ I’m thinkin’ +that maybe Sam Bloxam could tell ye summut.” I asked if he could tell me +where to find him. I told him that if he could get me the address it +would be worth another half-sovereign to him. So he gulped down the rest +of his tea and stood up, saying that he was going to begin the search +then and there. At the door he stopped, and said:-- + +“Look ’ere, guv’nor, there ain’t no sense in me a-keepin’ you ’ere. I +may find Sam soon, or I mayn’t; but anyhow he ain’t like to be in a way +to tell ye much to-night. Sam is a rare one when he starts on the booze. +If you can give me a envelope with a stamp on it, and put yer address on +it, I’ll find out where Sam is to be found and post it ye to-night. But +ye’d better be up arter ’im soon in the mornin’, or maybe ye won’t ketch +’im; for Sam gets off main early, never mind the booze the night afore.” + +This was all practical, so one of the children went off with a penny to +buy an envelope and a sheet of paper, and to keep the change. When she +came back, I addressed the envelope and stamped it, and when Smollet had +again faithfully promised to post the address when found, I took my way +to home. We’re on the track anyhow. I am tired to-night, and want sleep. +Mina is fast asleep, and looks a little too pale; her eyes look as +though she had been crying. Poor dear, I’ve no doubt it frets her to be +kept in the dark, and it may make her doubly anxious about me and the +others. But it is best as it is. It is better to be disappointed and +worried in such a way now than to have her nerve broken. The doctors +were quite right to insist on her being kept out of this dreadful +business. I must be firm, for on me this particular burden of silence +must rest. I shall not ever enter on the subject with her under any +circumstances. Indeed, it may not be a hard task, after all, for she +herself has become reticent on the subject, and has not spoken of the +Count or his doings ever since we told her of our decision. + + * * * * * + +_2 October, evening._--A long and trying and exciting day. By the first +post I got my directed envelope with a dirty scrap of paper enclosed, on +which was written with a carpenter’s pencil in a sprawling hand:-- + +“Sam Bloxam, Korkrans, 4, Poters Cort, Bartel Street, Walworth. Arsk for +the depite.” + +I got the letter in bed, and rose without waking Mina. She looked heavy +and sleepy and pale, and far from well. I determined not to wake her, +but that, when I should return from this new search, I would arrange for +her going back to Exeter. I think she would be happier in our own home, +with her daily tasks to interest her, than in being here amongst us and +in ignorance. I only saw Dr. Seward for a moment, and told him where I +was off to, promising to come back and tell the rest so soon as I should +have found out anything. I drove to Walworth and found, with some +difficulty, Potter’s Court. Mr. Smollet’s spelling misled me, as I asked +for Poter’s Court instead of Potter’s Court. However, when I had found +the court, I had no difficulty in discovering Corcoran’s lodging-house. +When I asked the man who came to the door for the “depite,” he shook his +head, and said: “I dunno ’im. There ain’t no such a person ’ere; I never +’eard of ’im in all my bloomin’ days. Don’t believe there ain’t nobody +of that kind livin’ ere or anywheres.” I took out Smollet’s letter, and +as I read it it seemed to me that the lesson of the spelling of the name +of the court might guide me. “What are you?” I asked. + +“I’m the depity,” he answered. I saw at once that I was on the right +track; phonetic spelling had again misled me. A half-crown tip put the +deputy’s knowledge at my disposal, and I learned that Mr. Bloxam, who +had slept off the remains of his beer on the previous night at +Corcoran’s, had left for his work at Poplar at five o’clock that +morning. He could not tell me where the place of work was situated, but +he had a vague idea that it was some kind of a “new-fangled ware’us”; +and with this slender clue I had to start for Poplar. It was twelve +o’clock before I got any satisfactory hint of such a building, and this +I got at a coffee-shop, where some workmen were having their dinner. One +of these suggested that there was being erected at Cross Angel Street a +new “cold storage” building; and as this suited the condition of a +“new-fangled ware’us,” I at once drove to it. An interview with a surly +gatekeeper and a surlier foreman, both of whom were appeased with the +coin of the realm, put me on the track of Bloxam; he was sent for on my +suggesting that I was willing to pay his day’s wages to his foreman for +the privilege of asking him a few questions on a private matter. He was +a smart enough fellow, though rough of speech and bearing. When I had +promised to pay for his information and given him an earnest, he told me +that he had made two journeys between Carfax and a house in Piccadilly, +and had taken from this house to the latter nine great boxes--“main +heavy ones”--with a horse and cart hired by him for this purpose. I +asked him if he could tell me the number of the house in Piccadilly, to +which he replied:-- + +“Well, guv’nor, I forgits the number, but it was only a few doors from a +big white church or somethink of the kind, not long built. It was a +dusty old ’ouse, too, though nothin’ to the dustiness of the ’ouse we +tooked the bloomin’ boxes from.” + +“How did you get into the houses if they were both empty?” + +“There was the old party what engaged me a-waitin’ in the ’ouse at +Purfleet. He ’elped me to lift the boxes and put them in the dray. Curse +me, but he was the strongest chap I ever struck, an’ him a old feller, +with a white moustache, one that thin you would think he couldn’t throw +a shadder.” + +How this phrase thrilled through me! + +“Why, ’e took up ’is end o’ the boxes like they was pounds of tea, and +me a-puffin’ an’ a-blowin’ afore I could up-end mine anyhow--an’ I’m no +chicken, neither.” + +“How did you get into the house in Piccadilly?” I asked. + +“He was there too. He must ’a’ started off and got there afore me, for +when I rung of the bell he kem an’ opened the door ’isself an’ ’elped me +to carry the boxes into the ’all.” + +“The whole nine?” I asked. + +“Yus; there was five in the first load an’ four in the second. It was +main dry work, an’ I don’t so well remember ’ow I got ’ome.” I +interrupted him:-- + +“Were the boxes left in the hall?” + +“Yus; it was a big ’all, an’ there was nothin’ else in it.” I made one +more attempt to further matters:-- + +“You didn’t have any key?” + +“Never used no key nor nothink. The old gent, he opened the door ’isself +an’ shut it again when I druv off. I don’t remember the last time--but +that was the beer.” + +“And you can’t remember the number of the house?” + +“No, sir. But ye needn’t have no difficulty about that. It’s a ’igh ’un +with a stone front with a bow on it, an’ ’igh steps up to the door. I +know them steps, ’avin’ ’ad to carry the boxes up with three loafers +what come round to earn a copper. The old gent give them shillin’s, an’ +they seein’ they got so much, they wanted more; but ’e took one of them +by the shoulder and was like to throw ’im down the steps, till the lot +of them went away cussin’.” I thought that with this description I could +find the house, so, having paid my friend for his information, I started +off for Piccadilly. I had gained a new painful experience; the Count +could, it was evident, handle the earth-boxes himself. If so, time was +precious; for, now that he had achieved a certain amount of +distribution, he could, by choosing his own time, complete the task +unobserved. At Piccadilly Circus I discharged my cab, and walked +westward; beyond the Junior Constitutional I came across the house +described, and was satisfied that this was the next of the lairs +arranged by Dracula. The house looked as though it had been long +untenanted. The windows were encrusted with dust, and the shutters were +up. All the framework was black with time, and from the iron the paint +had mostly scaled away. It was evident that up to lately there had been +a large notice-board in front of the balcony; it had, however, been +roughly torn away, the uprights which had supported it still remaining. +Behind the rails of the balcony I saw there were some loose boards, +whose raw edges looked white. I would have given a good deal to have +been able to see the notice-board intact, as it would, perhaps, have +given some clue to the ownership of the house. I remembered my +experience of the investigation and purchase of Carfax, and I could not +but feel that if I could find the former owner there might be some means +discovered of gaining access to the house. + +There was at present nothing to be learned from the Piccadilly side, and +nothing could be done; so I went round to the back to see if anything +could be gathered from this quarter. The mews were active, the +Piccadilly houses being mostly in occupation. I asked one or two of the +grooms and helpers whom I saw around if they could tell me anything +about the empty house. One of them said that he heard it had lately been +taken, but he couldn’t say from whom. He told me, however, that up to +very lately there had been a notice-board of “For Sale” up, and that +perhaps Mitchell, Sons, & Candy, the house agents, could tell me +something, as he thought he remembered seeing the name of that firm on +the board. I did not wish to seem too eager, or to let my informant know +or guess too much, so, thanking him in the usual manner, I strolled +away. It was now growing dusk, and the autumn night was closing in, so I +did not lose any time. Having learned the address of Mitchell, Sons, & +Candy from a directory at the Berkeley, I was soon at their office in +Sackville Street. + +The gentleman who saw me was particularly suave in manner, but +uncommunicative in equal proportion. Having once told me that the +Piccadilly house--which throughout our interview he called a +“mansion”--was sold, he considered my business as concluded. When I +asked who had purchased it, he opened his eyes a thought wider, and +paused a few seconds before replying:-- + +“It is sold, sir.” + +“Pardon me,” I said, with equal politeness, “but I have a special reason +for wishing to know who purchased it.” + +Again he paused longer, and raised his eyebrows still more. “It is sold, +sir,” was again his laconic reply. + +“Surely,” I said, “you do not mind letting me know so much.” + +“But I do mind,” he answered. “The affairs of their clients are +absolutely safe in the hands of Mitchell, Sons, & Candy.” This was +manifestly a prig of the first water, and there was no use arguing with +him. I thought I had best meet him on his own ground, so I said:-- + +“Your clients, sir, are happy in having so resolute a guardian of their +confidence. I am myself a professional man.” Here I handed him my card. +“In this instance I am not prompted by curiosity; I act on the part of +Lord Godalming, who wishes to know something of the property which was, +he understood, lately for sale.” These words put a different complexion +on affairs. He said:-- + +“I would like to oblige you if I could, Mr. Harker, and especially would +I like to oblige his lordship. We once carried out a small matter of +renting some chambers for him when he was the Honourable Arthur +Holmwood. If you will let me have his lordship’s address I will consult +the House on the subject, and will, in any case, communicate with his +lordship by to-night’s post. It will be a pleasure if we can so far +deviate from our rules as to give the required information to his +lordship.” + +I wanted to secure a friend, and not to make an enemy, so I thanked him, +gave the address at Dr. Seward’s and came away. It was now dark, and I +was tired and hungry. I got a cup of tea at the Aërated Bread Company +and came down to Purfleet by the next train. + +I found all the others at home. Mina was looking tired and pale, but she +made a gallant effort to be bright and cheerful, it wrung my heart to +think that I had had to keep anything from her and so caused her +inquietude. Thank God, this will be the last night of her looking on at +our conferences, and feeling the sting of our not showing our +confidence. It took all my courage to hold to the wise resolution of +keeping her out of our grim task. She seems somehow more reconciled; or +else the very subject seems to have become repugnant to her, for when +any accidental allusion is made she actually shudders. I am glad we +made our resolution in time, as with such a feeling as this, our growing +knowledge would be torture to her. + +I could not tell the others of the day’s discovery till we were alone; +so after dinner--followed by a little music to save appearances even +amongst ourselves--I took Mina to her room and left her to go to bed. +The dear girl was more affectionate with me than ever, and clung to me +as though she would detain me; but there was much to be talked of and I +came away. Thank God, the ceasing of telling things has made no +difference between us. + +When I came down again I found the others all gathered round the fire in +the study. In the train I had written my diary so far, and simply read +it off to them as the best means of letting them get abreast of my own +information; when I had finished Van Helsing said:-- + +“This has been a great day’s work, friend Jonathan. Doubtless we are on +the track of the missing boxes. If we find them all in that house, then +our work is near the end. But if there be some missing, we must search +until we find them. Then shall we make our final _coup_, and hunt the +wretch to his real death.” We all sat silent awhile and all at once Mr. +Morris spoke:-- + +“Say! how are we going to get into that house?” + +“We got into the other,” answered Lord Godalming quickly. + +“But, Art, this is different. We broke house at Carfax, but we had night +and a walled park to protect us. It will be a mighty different thing to +commit burglary in Piccadilly, either by day or night. I confess I don’t +see how we are going to get in unless that agency duck can find us a key +of some sort; perhaps we shall know when you get his letter in the +morning.” Lord Godalming’s brows contracted, and he stood up and walked +about the room. By-and-by he stopped and said, turning from one to +another of us:-- + +“Quincey’s head is level. This burglary business is getting serious; we +got off once all right; but we have now a rare job on hand--unless we +can find the Count’s key basket.” + +As nothing could well be done before morning, and as it would be at +least advisable to wait till Lord Godalming should hear from Mitchell’s, +we decided not to take any active step before breakfast time. For a good +while we sat and smoked, discussing the matter in its various lights and +bearings; I took the opportunity of bringing this diary right up to the +moment. I am very sleepy and shall go to bed.... + +Just a line. Mina sleeps soundly and her breathing is regular. Her +forehead is puckered up into little wrinkles, as though she thinks even +in her sleep. She is still too pale, but does not look so haggard as she +did this morning. To-morrow will, I hope, mend all this; she will be +herself at home in Exeter. Oh, but I am sleepy! + + +_Dr. Seward’s Diary._ + +_1 October._--I am puzzled afresh about Renfield. His moods change so +rapidly that I find it difficult to keep touch of them, and as they +always mean something more than his own well-being, they form a more +than interesting study. This morning, when I went to see him after his +repulse of Van Helsing, his manner was that of a man commanding destiny. +He was, in fact, commanding destiny--subjectively. He did not really +care for any of the things of mere earth; he was in the clouds and +looked down on all the weaknesses and wants of us poor mortals. I +thought I would improve the occasion and learn something, so I asked +him:-- + +“What about the flies these times?” He smiled on me in quite a superior +sort of way--such a smile as would have become the face of Malvolio--as +he answered me:-- + +“The fly, my dear sir, has one striking feature; its wings are typical +of the aërial powers of the psychic faculties. The ancients did well +when they typified the soul as a butterfly!” + +I thought I would push his analogy to its utmost logically, so I said +quickly:-- + +“Oh, it is a soul you are after now, is it?” His madness foiled his +reason, and a puzzled look spread over his face as, shaking his head +with a decision which I had but seldom seen in him, he said:-- + +“Oh, no, oh no! I want no souls. Life is all I want.” Here he brightened +up; “I am pretty indifferent about it at present. Life is all right; I +have all I want. You must get a new patient, doctor, if you wish to +study zoöphagy!” + +This puzzled me a little, so I drew him on:-- + +“Then you command life; you are a god, I suppose?” He smiled with an +ineffably benign superiority. + +“Oh no! Far be it from me to arrogate to myself the attributes of the +Deity. I am not even concerned in His especially spiritual doings. If I +may state my intellectual position I am, so far as concerns things +purely terrestrial, somewhat in the position which Enoch occupied +spiritually!” This was a poser to me. I could not at the moment recall +Enoch’s appositeness; so I had to ask a simple question, though I felt +that by so doing I was lowering myself in the eyes of the lunatic:-- + +“And why with Enoch?” + +“Because he walked with God.” I could not see the analogy, but did not +like to admit it; so I harked back to what he had denied:-- + +“So you don’t care about life and you don’t want souls. Why not?” I put +my question quickly and somewhat sternly, on purpose to disconcert him. +The effort succeeded; for an instant he unconsciously relapsed into his +old servile manner, bent low before me, and actually fawned upon me as +he replied:-- + +“I don’t want any souls, indeed, indeed! I don’t. I couldn’t use them if +I had them; they would be no manner of use to me. I couldn’t eat them +or----” He suddenly stopped and the old cunning look spread over his +face, like a wind-sweep on the surface of the water. “And doctor, as to +life, what is it after all? When you’ve got all you require, and you +know that you will never want, that is all. I have friends--good +friends--like you, Dr. Seward”; this was said with a leer of +inexpressible cunning. “I know that I shall never lack the means of +life!” + +I think that through the cloudiness of his insanity he saw some +antagonism in me, for he at once fell back on the last refuge of such as +he--a dogged silence. After a short time I saw that for the present it +was useless to speak to him. He was sulky, and so I came away. + +Later in the day he sent for me. Ordinarily I would not have come +without special reason, but just at present I am so interested in him +that I would gladly make an effort. Besides, I am glad to have anything +to help to pass the time. Harker is out, following up clues; and so are +Lord Godalming and Quincey. Van Helsing sits in my study poring over the +record prepared by the Harkers; he seems to think that by accurate +knowledge of all details he will light upon some clue. He does not wish +to be disturbed in the work, without cause. I would have taken him with +me to see the patient, only I thought that after his last repulse he +might not care to go again. There was also another reason: Renfield +might not speak so freely before a third person as when he and I were +alone. + +I found him sitting out in the middle of the floor on his stool, a pose +which is generally indicative of some mental energy on his part. When I +came in, he said at once, as though the question had been waiting on his +lips:-- + +“What about souls?” It was evident then that my surmise had been +correct. Unconscious cerebration was doing its work, even with the +lunatic. I determined to have the matter out. “What about them +yourself?” I asked. He did not reply for a moment but looked all round +him, and up and down, as though he expected to find some inspiration for +an answer. + +“I don’t want any souls!” he said in a feeble, apologetic way. The +matter seemed preying on his mind, and so I determined to use it--to “be +cruel only to be kind.” So I said:-- + +“You like life, and you want life?” + +“Oh yes! but that is all right; you needn’t worry about that!” + +“But,” I asked, “how are we to get the life without getting the soul +also?” This seemed to puzzle him, so I followed it up:-- + +“A nice time you’ll have some time when you’re flying out there, with +the souls of thousands of flies and spiders and birds and cats buzzing +and twittering and miauing all round you. You’ve got their lives, you +know, and you must put up with their souls!” Something seemed to affect +his imagination, for he put his fingers to his ears and shut his eyes, +screwing them up tightly just as a small boy does when his face is being +soaped. There was something pathetic in it that touched me; it also gave +me a lesson, for it seemed that before me was a child--only a child, +though the features were worn, and the stubble on the jaws was white. It +was evident that he was undergoing some process of mental disturbance, +and, knowing how his past moods had interpreted things seemingly foreign +to himself, I thought I would enter into his mind as well as I could and +go with him. The first step was to restore confidence, so I asked him, +speaking pretty loud so that he would hear me through his closed ears:-- + +“Would you like some sugar to get your flies round again?” He seemed to +wake up all at once, and shook his head. With a laugh he replied:-- + +“Not much! flies are poor things, after all!” After a pause he added, +“But I don’t want their souls buzzing round me, all the same.” + +“Or spiders?” I went on. + +“Blow spiders! What’s the use of spiders? There isn’t anything in them +to eat or”--he stopped suddenly, as though reminded of a forbidden +topic. + +“So, so!” I thought to myself, “this is the second time he has suddenly +stopped at the word ‘drink’; what does it mean?” Renfield seemed himself +aware of having made a lapse, for he hurried on, as though to distract +my attention from it:-- + +“I don’t take any stock at all in such matters. ‘Rats and mice and such +small deer,’ as Shakespeare has it, ‘chicken-feed of the larder’ they +might be called. I’m past all that sort of nonsense. You might as well +ask a man to eat molecules with a pair of chop-sticks, as to try to +interest me about the lesser carnivora, when I know of what is before +me.” + +“I see,” I said. “You want big things that you can make your teeth meet +in? How would you like to breakfast on elephant?” + +“What ridiculous nonsense you are talking!” He was getting too wide +awake, so I thought I would press him hard. “I wonder,” I said +reflectively, “what an elephant’s soul is like!” + +The effect I desired was obtained, for he at once fell from his +high-horse and became a child again. + +“I don’t want an elephant’s soul, or any soul at all!” he said. For a +few moments he sat despondently. Suddenly he jumped to his feet, with +his eyes blazing and all the signs of intense cerebral excitement. “To +hell with you and your souls!” he shouted. “Why do you plague me about +souls? Haven’t I got enough to worry, and pain, and distract me already, +without thinking of souls!” He looked so hostile that I thought he was +in for another homicidal fit, so I blew my whistle. The instant, +however, that I did so he became calm, and said apologetically:-- + +“Forgive me, Doctor; I forgot myself. You do not need any help. I am so +worried in my mind that I am apt to be irritable. If you only knew the +problem I have to face, and that I am working out, you would pity, and +tolerate, and pardon me. Pray do not put me in a strait-waistcoat. I +want to think and I cannot think freely when my body is confined. I am +sure you will understand!” He had evidently self-control; so when the +attendants came I told them not to mind, and they withdrew. Renfield +watched them go; when the door was closed he said, with considerable +dignity and sweetness:-- + +“Dr. Seward, you have been very considerate towards me. Believe me that +I am very, very grateful to you!” I thought it well to leave him in this +mood, and so I came away. There is certainly something to ponder over in +this man’s state. Several points seem to make what the American +interviewer calls “a story,” if one could only get them in proper order. +Here they are:-- + +Will not mention “drinking.” + +Fears the thought of being burdened with the “soul” of anything. + +Has no dread of wanting “life” in the future. + +Despises the meaner forms of life altogether, though he dreads being +haunted by their souls. + +Logically all these things point one way! he has assurance of some kind +that he will acquire some higher life. He dreads the consequence--the +burden of a soul. Then it is a human life he looks to! + +And the assurance--? + +Merciful God! the Count has been to him, and there is some new scheme of +terror afoot! + + * * * * * + +_Later._--I went after my round to Van Helsing and told him my +suspicion. He grew very grave; and, after thinking the matter over for a +while asked me to take him to Renfield. I did so. As we came to the door +we heard the lunatic within singing gaily, as he used to do in the time +which now seems so long ago. When we entered we saw with amazement that +he had spread out his sugar as of old; the flies, lethargic with the +autumn, were beginning to buzz into the room. We tried to make him talk +of the subject of our previous conversation, but he would not attend. He +went on with his singing, just as though we had not been present. He had +got a scrap of paper and was folding it into a note-book. We had to come +away as ignorant as we went in. + +His is a curious case indeed; we must watch him to-night. + + +_Letter, Mitchell, Sons and Candy to Lord Godalming._ + +_“1 October._ + +“My Lord, + +“We are at all times only too happy to meet your wishes. We beg, with +regard to the desire of your Lordship, expressed by Mr. Harker on your +behalf, to supply the following information concerning the sale and +purchase of No. 347, Piccadilly. The original vendors are the executors +of the late Mr. Archibald Winter-Suffield. The purchaser is a foreign +nobleman, Count de Ville, who effected the purchase himself paying the +purchase money in notes ‘over the counter,’ if your Lordship will pardon +us using so vulgar an expression. Beyond this we know nothing whatever +of him. + +“We are, my Lord, + +“Your Lordship’s humble servants, + +“MITCHELL, SONS & CANDY.” + + +_Dr. Seward’s Diary._ + +_2 October._--I placed a man in the corridor last night, and told him to +make an accurate note of any sound he might hear from Renfield’s room, +and gave him instructions that if there should be anything strange he +was to call me. After dinner, when we had all gathered round the fire +in the study--Mrs. Harker having gone to bed--we discussed the attempts +and discoveries of the day. Harker was the only one who had any result, +and we are in great hopes that his clue may be an important one. + +Before going to bed I went round to the patient’s room and looked in +through the observation trap. He was sleeping soundly, and his heart +rose and fell with regular respiration. + +This morning the man on duty reported to me that a little after midnight +he was restless and kept saying his prayers somewhat loudly. I asked him +if that was all; he replied that it was all he heard. There was +something about his manner so suspicious that I asked him point blank if +he had been asleep. He denied sleep, but admitted to having “dozed” for +a while. It is too bad that men cannot be trusted unless they are +watched. + +To-day Harker is out following up his clue, and Art and Quincey are +looking after horses. Godalming thinks that it will be well to have +horses always in readiness, for when we get the information which we +seek there will be no time to lose. We must sterilise all the imported +earth between sunrise and sunset; we shall thus catch the Count at his +weakest, and without a refuge to fly to. Van Helsing is off to the +British Museum looking up some authorities on ancient medicine. The old +physicians took account of things which their followers do not accept, +and the Professor is searching for witch and demon cures which may be +useful to us later. + +I sometimes think we must be all mad and that we shall wake to sanity in +strait-waistcoats. + + * * * * * + +_Later._--We have met again. We seem at last to be on the track, and our +work of to-morrow may be the beginning of the end. I wonder if +Renfield’s quiet has anything to do with this. His moods have so +followed the doings of the Count, that the coming destruction of the +monster may be carried to him in some subtle way. If we could only get +some hint as to what passed in his mind, between the time of my argument +with him to-day and his resumption of fly-catching, it might afford us a +valuable clue. He is now seemingly quiet for a spell.... Is he?---- That +wild yell seemed to come from his room.... + + * * * * * + +The attendant came bursting into my room and told me that Renfield had +somehow met with some accident. He had heard him yell; and when he went +to him found him lying on his face on the floor, all covered with blood. +I must go at once.... + + + + +CHAPTER XXI + +DR. SEWARD’S DIARY + + +_3 October._--Let me put down with exactness all that happened, as well +as I can remember it, since last I made an entry. Not a detail that I +can recall must be forgotten; in all calmness I must proceed. + +When I came to Renfield’s room I found him lying on the floor on his +left side in a glittering pool of blood. When I went to move him, it +became at once apparent that he had received some terrible injuries; +there seemed none of that unity of purpose between the parts of the body +which marks even lethargic sanity. As the face was exposed I could see +that it was horribly bruised, as though it had been beaten against the +floor--indeed it was from the face wounds that the pool of blood +originated. The attendant who was kneeling beside the body said to me as +we turned him over:-- + +“I think, sir, his back is broken. See, both his right arm and leg and +the whole side of his face are paralysed.” How such a thing could have +happened puzzled the attendant beyond measure. He seemed quite +bewildered, and his brows were gathered in as he said:-- + +“I can’t understand the two things. He could mark his face like that by +beating his own head on the floor. I saw a young woman do it once at the +Eversfield Asylum before anyone could lay hands on her. And I suppose he +might have broke his neck by falling out of bed, if he got in an awkward +kink. But for the life of me I can’t imagine how the two things +occurred. If his back was broke, he couldn’t beat his head; and if his +face was like that before the fall out of bed, there would be marks of +it.” I said to him:-- + +“Go to Dr. Van Helsing, and ask him to kindly come here at once. I want +him without an instant’s delay.” The man ran off, and within a few +minutes the Professor, in his dressing gown and slippers, appeared. When +he saw Renfield on the ground, he looked keenly at him a moment, and +then turned to me. I think he recognised my thought in my eyes, for he +said very quietly, manifestly for the ears of the attendant:-- + +“Ah, a sad accident! He will need very careful watching, and much +attention. I shall stay with you myself; but I shall first dress myself. +If you will remain I shall in a few minutes join you.” + +The patient was now breathing stertorously and it was easy to see that +he had suffered some terrible injury. Van Helsing returned with +extraordinary celerity, bearing with him a surgical case. He had +evidently been thinking and had his mind made up; for, almost before he +looked at the patient, he whispered to me:-- + +“Send the attendant away. We must be alone with him when he becomes +conscious, after the operation.” So I said:-- + +“I think that will do now, Simmons. We have done all that we can at +present. You had better go your round, and Dr. Van Helsing will operate. +Let me know instantly if there be anything unusual anywhere.” + +The man withdrew, and we went into a strict examination of the patient. +The wounds of the face was superficial; the real injury was a depressed +fracture of the skull, extending right up through the motor area. The +Professor thought a moment and said:-- + +“We must reduce the pressure and get back to normal conditions, as far +as can be; the rapidity of the suffusion shows the terrible nature of +his injury. The whole motor area seems affected. The suffusion of the +brain will increase quickly, so we must trephine at once or it may be +too late.” As he was speaking there was a soft tapping at the door. I +went over and opened it and found in the corridor without, Arthur and +Quincey in pajamas and slippers: the former spoke:-- + +“I heard your man call up Dr. Van Helsing and tell him of an accident. +So I woke Quincey or rather called for him as he was not asleep. Things +are moving too quickly and too strangely for sound sleep for any of us +these times. I’ve been thinking that to-morrow night will not see things +as they have been. We’ll have to look back--and forward a little more +than we have done. May we come in?” I nodded, and held the door open +till they had entered; then I closed it again. When Quincey saw the +attitude and state of the patient, and noted the horrible pool on the +floor, he said softly:-- + +“My God! what has happened to him? Poor, poor devil!” I told him +briefly, and added that we expected he would recover consciousness after +the operation--for a short time, at all events. He went at once and sat +down on the edge of the bed, with Godalming beside him; we all watched +in patience. + +“We shall wait,” said Van Helsing, “just long enough to fix the best +spot for trephining, so that we may most quickly and perfectly remove +the blood clot; for it is evident that the hæmorrhage is increasing.” + +The minutes during which we waited passed with fearful slowness. I had a +horrible sinking in my heart, and from Van Helsing’s face I gathered +that he felt some fear or apprehension as to what was to come. I dreaded +the words that Renfield might speak. I was positively afraid to think; +but the conviction of what was coming was on me, as I have read of men +who have heard the death-watch. The poor man’s breathing came in +uncertain gasps. Each instant he seemed as though he would open his eyes +and speak; but then would follow a prolonged stertorous breath, and he +would relapse into a more fixed insensibility. Inured as I was to sick +beds and death, this suspense grew, and grew upon me. I could almost +hear the beating of my own heart; and the blood surging through my +temples sounded like blows from a hammer. The silence finally became +agonising. I looked at my companions, one after another, and saw from +their flushed faces and damp brows that they were enduring equal +torture. There was a nervous suspense over us all, as though overhead +some dread bell would peal out powerfully when we should least expect +it. + +At last there came a time when it was evident that the patient was +sinking fast; he might die at any moment. I looked up at the Professor +and caught his eyes fixed on mine. His face was sternly set as he +spoke:-- + +“There is no time to lose. His words may be worth many lives; I have +been thinking so, as I stood here. It may be there is a soul at stake! +We shall operate just above the ear.” + +Without another word he made the operation. For a few moments the +breathing continued to be stertorous. Then there came a breath so +prolonged that it seemed as though it would tear open his chest. +Suddenly his eyes opened, and became fixed in a wild, helpless stare. +This was continued for a few moments; then it softened into a glad +surprise, and from the lips came a sigh of relief. He moved +convulsively, and as he did so, said:-- + +“I’ll be quiet, Doctor. Tell them to take off the strait-waistcoat. I +have had a terrible dream, and it has left me so weak that I cannot +move. What’s wrong with my face? it feels all swollen, and it smarts +dreadfully.” He tried to turn his head; but even with the effort his +eyes seemed to grow glassy again so I gently put it back. Then Van +Helsing said in a quiet grave tone:-- + +“Tell us your dream, Mr. Renfield.” As he heard the voice his face +brightened, through its mutilation, and he said:-- + +“That is Dr. Van Helsing. How good it is of you to be here. Give me some +water, my lips are dry; and I shall try to tell you. I dreamed”--he +stopped and seemed fainting, I called quietly to Quincey--“The +brandy--it is in my study--quick!” He flew and returned with a glass, +the decanter of brandy and a carafe of water. We moistened the parched +lips, and the patient quickly revived. It seemed, however, that his poor +injured brain had been working in the interval, for, when he was quite +conscious, he looked at me piercingly with an agonised confusion which I +shall never forget, and said:-- + +“I must not deceive myself; it was no dream, but all a grim reality.” +Then his eyes roved round the room; as they caught sight of the two +figures sitting patiently on the edge of the bed he went on:-- + +“If I were not sure already, I would know from them.” For an instant his +eyes closed--not with pain or sleep but voluntarily, as though he were +bringing all his faculties to bear; when he opened them he said, +hurriedly, and with more energy than he had yet displayed:-- + +“Quick, Doctor, quick. I am dying! I feel that I have but a few minutes; +and then I must go back to death--or worse! Wet my lips with brandy +again. I have something that I must say before I die; or before my poor +crushed brain dies anyhow. Thank you! It was that night after you left +me, when I implored you to let me go away. I couldn’t speak then, for I +felt my tongue was tied; but I was as sane then, except in that way, as +I am now. I was in an agony of despair for a long time after you left +me; it seemed hours. Then there came a sudden peace to me. My brain +seemed to become cool again, and I realised where I was. I heard the +dogs bark behind our house, but not where He was!” As he spoke, Van +Helsing’s eyes never blinked, but his hand came out and met mine and +gripped it hard. He did not, however, betray himself; he nodded slightly +and said: “Go on,” in a low voice. Renfield proceeded:-- + +“He came up to the window in the mist, as I had seen him often before; +but he was solid then--not a ghost, and his eyes were fierce like a +man’s when angry. He was laughing with his red mouth; the sharp white +teeth glinted in the moonlight when he turned to look back over the belt +of trees, to where the dogs were barking. I wouldn’t ask him to come in +at first, though I knew he wanted to--just as he had wanted all along. +Then he began promising me things--not in words but by doing them.” He +was interrupted by a word from the Professor:-- + +“How?” + +“By making them happen; just as he used to send in the flies when the +sun was shining. Great big fat ones with steel and sapphire on their +wings; and big moths, in the night, with skull and cross-bones on their +backs.” Van Helsing nodded to him as he whispered to me unconsciously:-- + +“The _Acherontia Aitetropos of the Sphinges_--what you call the +‘Death’s-head Moth’?” The patient went on without stopping. + +“Then he began to whisper: ‘Rats, rats, rats! Hundreds, thousands, +millions of them, and every one a life; and dogs to eat them, and cats +too. All lives! all red blood, with years of life in it; and not merely +buzzing flies!’ I laughed at him, for I wanted to see what he could do. +Then the dogs howled, away beyond the dark trees in His house. He +beckoned me to the window. I got up and looked out, and He raised his +hands, and seemed to call out without using any words. A dark mass +spread over the grass, coming on like the shape of a flame of fire; and +then He moved the mist to the right and left, and I could see that there +were thousands of rats with their eyes blazing red--like His, only +smaller. He held up his hand, and they all stopped; and I thought he +seemed to be saying: ‘All these lives will I give you, ay, and many more +and greater, through countless ages, if you will fall down and worship +me!’ And then a red cloud, like the colour of blood, seemed to close +over my eyes; and before I knew what I was doing, I found myself opening +the sash and saying to Him: ‘Come in, Lord and Master!’ The rats were +all gone, but He slid into the room through the sash, though it was only +open an inch wide--just as the Moon herself has often come in through +the tiniest crack and has stood before me in all her size and +splendour.” + +His voice was weaker, so I moistened his lips with the brandy again, and +he continued; but it seemed as though his memory had gone on working in +the interval for his story was further advanced. I was about to call him +back to the point, but Van Helsing whispered to me: “Let him go on. Do +not interrupt him; he cannot go back, and maybe could not proceed at all +if once he lost the thread of his thought.” He proceeded:-- + +“All day I waited to hear from him, but he did not send me anything, not +even a blow-fly, and when the moon got up I was pretty angry with him. +When he slid in through the window, though it was shut, and did not even +knock, I got mad with him. He sneered at me, and his white face looked +out of the mist with his red eyes gleaming, and he went on as though he +owned the whole place, and I was no one. He didn’t even smell the same +as he went by me. I couldn’t hold him. I thought that, somehow, Mrs. +Harker had come into the room.” + +The two men sitting on the bed stood up and came over, standing behind +him so that he could not see them, but where they could hear better. +They were both silent, but the Professor started and quivered; his face, +however, grew grimmer and sterner still. Renfield went on without +noticing:-- + +“When Mrs. Harker came in to see me this afternoon she wasn’t the same; +it was like tea after the teapot had been watered.” Here we all moved, +but no one said a word; he went on:-- + +“I didn’t know that she was here till she spoke; and she didn’t look the +same. I don’t care for the pale people; I like them with lots of blood +in them, and hers had all seemed to have run out. I didn’t think of it +at the time; but when she went away I began to think, and it made me mad +to know that He had been taking the life out of her.” I could feel that +the rest quivered, as I did, but we remained otherwise still. “So when +He came to-night I was ready for Him. I saw the mist stealing in, and I +grabbed it tight. I had heard that madmen have unnatural strength; and +as I knew I was a madman--at times anyhow--I resolved to use my power. +Ay, and He felt it too, for He had to come out of the mist to struggle +with me. I held tight; and I thought I was going to win, for I didn’t +mean Him to take any more of her life, till I saw His eyes. They burned +into me, and my strength became like water. He slipped through it, and +when I tried to cling to Him, He raised me up and flung me down. There +was a red cloud before me, and a noise like thunder, and the mist seemed +to steal away under the door.” His voice was becoming fainter and his +breath more stertorous. Van Helsing stood up instinctively. + +“We know the worst now,” he said. “He is here, and we know his purpose. +It may not be too late. Let us be armed--the same as we were the other +night, but lose no time; there is not an instant to spare.” There was no +need to put our fear, nay our conviction, into words--we shared them in +common. We all hurried and took from our rooms the same things that we +had when we entered the Count’s house. The Professor had his ready, and +as we met in the corridor he pointed to them significantly as he said:-- + +“They never leave me; and they shall not till this unhappy business is +over. Be wise also, my friends. It is no common enemy that we deal with. +Alas! alas! that that dear Madam Mina should suffer!” He stopped; his +voice was breaking, and I do not know if rage or terror predominated in +my own heart. + +Outside the Harkers’ door we paused. Art and Quincey held back, and the +latter said:-- + +“Should we disturb her?” + +“We must,” said Van Helsing grimly. “If the door be locked, I shall +break it in.” + +“May it not frighten her terribly? It is unusual to break into a lady’s +room!” + +Van Helsing said solemnly, “You are always right; but this is life and +death. All chambers are alike to the doctor; and even were they not they +are all as one to me to-night. Friend John, when I turn the handle, if +the door does not open, do you put your shoulder down and shove; and you +too, my friends. Now!” + +He turned the handle as he spoke, but the door did not yield. We threw +ourselves against it; with a crash it burst open, and we almost fell +headlong into the room. The Professor did actually fall, and I saw +across him as he gathered himself up from hands and knees. What I saw +appalled me. I felt my hair rise like bristles on the back of my neck, +and my heart seemed to stand still. + +The moonlight was so bright that through the thick yellow blind the room +was light enough to see. On the bed beside the window lay Jonathan +Harker, his face flushed and breathing heavily as though in a stupor. +Kneeling on the near edge of the bed facing outwards was the white-clad +figure of his wife. By her side stood a tall, thin man, clad in black. +His face was turned from us, but the instant we saw we all recognised +the Count--in every way, even to the scar on his forehead. With his left +hand he held both Mrs. Harker’s hands, keeping them away with her arms +at full tension; his right hand gripped her by the back of the neck, +forcing her face down on his bosom. Her white nightdress was smeared +with blood, and a thin stream trickled down the man’s bare breast which +was shown by his torn-open dress. The attitude of the two had a terrible +resemblance to a child forcing a kitten’s nose into a saucer of milk to +compel it to drink. As we burst into the room, the Count turned his +face, and the hellish look that I had heard described seemed to leap +into it. His eyes flamed red with devilish passion; the great nostrils +of the white aquiline nose opened wide and quivered at the edge; and the +white sharp teeth, behind the full lips of the blood-dripping mouth, +champed together like those of a wild beast. With a wrench, which threw +his victim back upon the bed as though hurled from a height, he turned +and sprang at us. But by this time the Professor had gained his feet, +and was holding towards him the envelope which contained the Sacred +Wafer. The Count suddenly stopped, just as poor Lucy had done outside +the tomb, and cowered back. Further and further back he cowered, as we, +lifting our crucifixes, advanced. The moonlight suddenly failed, as a +great black cloud sailed across the sky; and when the gaslight sprang up +under Quincey’s match, we saw nothing but a faint vapour. This, as we +looked, trailed under the door, which with the recoil from its bursting +open, had swung back to its old position. Van Helsing, Art, and I moved +forward to Mrs. Harker, who by this time had drawn her breath and with +it had given a scream so wild, so ear-piercing, so despairing that it +seems to me now that it will ring in my ears till my dying day. For a +few seconds she lay in her helpless attitude and disarray. Her face was +ghastly, with a pallor which was accentuated by the blood which smeared +her lips and cheeks and chin; from her throat trickled a thin stream of +blood; her eyes were mad with terror. Then she put before her face her +poor crushed hands, which bore on their whiteness the red mark of the +Count’s terrible grip, and from behind them came a low desolate wail +which made the terrible scream seem only the quick expression of an +endless grief. Van Helsing stepped forward and drew the coverlet gently +over her body, whilst Art, after looking at her face for an instant +despairingly, ran out of the room. Van Helsing whispered to me:-- + +“Jonathan is in a stupor such as we know the Vampire can produce. We can +do nothing with poor Madam Mina for a few moments till she recovers +herself; I must wake him!” He dipped the end of a towel in cold water +and with it began to flick him on the face, his wife all the while +holding her face between her hands and sobbing in a way that was +heart-breaking to hear. I raised the blind, and looked out of the +window. There was much moonshine; and as I looked I could see Quincey +Morris run across the lawn and hide himself in the shadow of a great +yew-tree. It puzzled me to think why he was doing this; but at the +instant I heard Harker’s quick exclamation as he woke to partial +consciousness, and turned to the bed. On his face, as there might well +be, was a look of wild amazement. He seemed dazed for a few seconds, and +then full consciousness seemed to burst upon him all at once, and he +started up. His wife was aroused by the quick movement, and turned to +him with her arms stretched out, as though to embrace him; instantly, +however, she drew them in again, and putting her elbows together, held +her hands before her face, and shuddered till the bed beneath her shook. + +“In God’s name what does this mean?” Harker cried out. “Dr. Seward, Dr. +Van Helsing, what is it? What has happened? What is wrong? Mina, dear, +what is it? What does that blood mean? My God, my God! has it come to +this!” and, raising himself to his knees, he beat his hands wildly +together. “Good God help us! help her! oh, help her!” With a quick +movement he jumped from bed, and began to pull on his clothes,--all the +man in him awake at the need for instant exertion. “What has happened? +Tell me all about it!” he cried without pausing. “Dr. Van Helsing, you +love Mina, I know. Oh, do something to save her. It cannot have gone too +far yet. Guard her while I look for _him_!” His wife, through her terror +and horror and distress, saw some sure danger to him: instantly +forgetting her own grief, she seized hold of him and cried out:-- + +“No! no! Jonathan, you must not leave me. I have suffered enough +to-night, God knows, without the dread of his harming you. You must stay +with me. Stay with these friends who will watch over you!” Her +expression became frantic as she spoke; and, he yielding to her, she +pulled him down sitting on the bed side, and clung to him fiercely. + +Van Helsing and I tried to calm them both. The Professor held up his +little golden crucifix, and said with wonderful calmness:-- + +“Do not fear, my dear. We are here; and whilst this is close to you no +foul thing can approach. You are safe for to-night; and we must be calm +and take counsel together.” She shuddered and was silent, holding down +her head on her husband’s breast. When she raised it, his white +night-robe was stained with blood where her lips had touched, and where +the thin open wound in her neck had sent forth drops. The instant she +saw it she drew back, with a low wail, and whispered, amidst choking +sobs:-- + +“Unclean, unclean! I must touch him or kiss him no more. Oh, that it +should be that it is I who am now his worst enemy, and whom he may have +most cause to fear.” To this he spoke out resolutely:-- + +“Nonsense, Mina. It is a shame to me to hear such a word. I would not +hear it of you; and I shall not hear it from you. May God judge me by my +deserts, and punish me with more bitter suffering than even this hour, +if by any act or will of mine anything ever come between us!” He put out +his arms and folded her to his breast; and for a while she lay there +sobbing. He looked at us over her bowed head, with eyes that blinked +damply above his quivering nostrils; his mouth was set as steel. After a +while her sobs became less frequent and more faint, and then he said to +me, speaking with a studied calmness which I felt tried his nervous +power to the utmost:-- + +“And now, Dr. Seward, tell me all about it. Too well I know the broad +fact; tell me all that has been.” I told him exactly what had happened, +and he listened with seeming impassiveness; but his nostrils twitched +and his eyes blazed as I told how the ruthless hands of the Count had +held his wife in that terrible and horrid position, with her mouth to +the open wound in his breast. It interested me, even at that moment, to +see, that, whilst the face of white set passion worked convulsively over +the bowed head, the hands tenderly and lovingly stroked the ruffled +hair. Just as I had finished, Quincey and Godalming knocked at the door. +They entered in obedience to our summons. Van Helsing looked at me +questioningly. I understood him to mean if we were to take advantage of +their coming to divert if possible the thoughts of the unhappy husband +and wife from each other and from themselves; so on nodding acquiescence +to him he asked them what they had seen or done. To which Lord Godalming +answered:-- + +“I could not see him anywhere in the passage, or in any of our rooms. I +looked in the study but, though he had been there, he had gone. He had, +however----” He stopped suddenly, looking at the poor drooping figure on +the bed. Van Helsing said gravely:-- + +“Go on, friend Arthur. We want here no more concealments. Our hope now +is in knowing all. Tell freely!” So Art went on:-- + +“He had been there, and though it could only have been for a few +seconds, he made rare hay of the place. All the manuscript had been +burned, and the blue flames were flickering amongst the white ashes; the +cylinders of your phonograph too were thrown on the fire, and the wax +had helped the flames.” Here I interrupted. “Thank God there is the +other copy in the safe!” His face lit for a moment, but fell again as he +went on: “I ran downstairs then, but could see no sign of him. I looked +into Renfield’s room; but there was no trace there except----!” Again he +paused. “Go on,” said Harker hoarsely; so he bowed his head and +moistening his lips with his tongue, added: “except that the poor fellow +is dead.” Mrs. Harker raised her head, looking from one to the other of +us she said solemnly:-- + +“God’s will be done!” I could not but feel that Art was keeping back +something; but, as I took it that it was with a purpose, I said nothing. +Van Helsing turned to Morris and asked:-- + +“And you, friend Quincey, have you any to tell?” + +“A little,” he answered. “It may be much eventually, but at present I +can’t say. I thought it well to know if possible where the Count would +go when he left the house. I did not see him; but I saw a bat rise from +Renfield’s window, and flap westward. I expected to see him in some +shape go back to Carfax; but he evidently sought some other lair. He +will not be back to-night; for the sky is reddening in the east, and the +dawn is close. We must work to-morrow!” + +He said the latter words through his shut teeth. For a space of perhaps +a couple of minutes there was silence, and I could fancy that I could +hear the sound of our hearts beating; then Van Helsing said, placing his +hand very tenderly on Mrs. Harker’s head:-- + +“And now, Madam Mina--poor, dear, dear Madam Mina--tell us exactly what +happened. God knows that I do not want that you be pained; but it is +need that we know all. For now more than ever has all work to be done +quick and sharp, and in deadly earnest. The day is close to us that must +end all, if it may be so; and now is the chance that we may live and +learn.” + +The poor, dear lady shivered, and I could see the tension of her nerves +as she clasped her husband closer to her and bent her head lower and +lower still on his breast. Then she raised her head proudly, and held +out one hand to Van Helsing who took it in his, and, after stooping and +kissing it reverently, held it fast. The other hand was locked in that +of her husband, who held his other arm thrown round her protectingly. +After a pause in which she was evidently ordering her thoughts, she +began:-- + +“I took the sleeping draught which you had so kindly given me, but for a +long time it did not act. I seemed to become more wakeful, and myriads +of horrible fancies began to crowd in upon my mind--all of them +connected with death, and vampires; with blood, and pain, and trouble.” +Her husband involuntarily groaned as she turned to him and said +lovingly: “Do not fret, dear. You must be brave and strong, and help me +through the horrible task. If you only knew what an effort it is to me +to tell of this fearful thing at all, you would understand how much I +need your help. Well, I saw I must try to help the medicine to its work +with my will, if it was to do me any good, so I resolutely set myself to +sleep. Sure enough sleep must soon have come to me, for I remember no +more. Jonathan coming in had not waked me, for he lay by my side when +next I remember. There was in the room the same thin white mist that I +had before noticed. But I forget now if you know of this; you will find +it in my diary which I shall show you later. I felt the same vague +terror which had come to me before and the same sense of some presence. +I turned to wake Jonathan, but found that he slept so soundly that it +seemed as if it was he who had taken the sleeping draught, and not I. I +tried, but I could not wake him. This caused me a great fear, and I +looked around terrified. Then indeed, my heart sank within me: beside +the bed, as if he had stepped out of the mist--or rather as if the mist +had turned into his figure, for it had entirely disappeared--stood a +tall, thin man, all in black. I knew him at once from the description of +the others. The waxen face; the high aquiline nose, on which the light +fell in a thin white line; the parted red lips, with the sharp white +teeth showing between; and the red eyes that I had seemed to see in the +sunset on the windows of St. Mary’s Church at Whitby. I knew, too, the +red scar on his forehead where Jonathan had struck him. For an instant +my heart stood still, and I would have screamed out, only that I was +paralysed. In the pause he spoke in a sort of keen, cutting whisper, +pointing as he spoke to Jonathan:-- + +“‘Silence! If you make a sound I shall take him and dash his brains out +before your very eyes.’ I was appalled and was too bewildered to do or +say anything. With a mocking smile, he placed one hand upon my shoulder +and, holding me tight, bared my throat with the other, saying as he did +so, ‘First, a little refreshment to reward my exertions. You may as well +be quiet; it is not the first time, or the second, that your veins have +appeased my thirst!’ I was bewildered, and, strangely enough, I did not +want to hinder him. I suppose it is a part of the horrible curse that +such is, when his touch is on his victim. And oh, my God, my God, pity +me! He placed his reeking lips upon my throat!” Her husband groaned +again. She clasped his hand harder, and looked at him pityingly, as if +he were the injured one, and went on:-- + +“I felt my strength fading away, and I was in a half swoon. How long +this horrible thing lasted I know not; but it seemed that a long time +must have passed before he took his foul, awful, sneering mouth away. I +saw it drip with the fresh blood!” The remembrance seemed for a while to +overpower her, and she drooped and would have sunk down but for her +husband’s sustaining arm. With a great effort she recovered herself and +went on:-- + +“Then he spoke to me mockingly, ‘And so you, like the others, would play +your brains against mine. You would help these men to hunt me and +frustrate me in my designs! You know now, and they know in part already, +and will know in full before long, what it is to cross my path. They +should have kept their energies for use closer to home. Whilst they +played wits against me--against me who commanded nations, and intrigued +for them, and fought for them, hundreds of years before they were +born--I was countermining them. And you, their best beloved one, are now +to me, flesh of my flesh; blood of my blood; kin of my kin; my bountiful +wine-press for a while; and shall be later on my companion and my +helper. You shall be avenged in turn; for not one of them but shall +minister to your needs. But as yet you are to be punished for what you +have done. You have aided in thwarting me; now you shall come to my +call. When my brain says “Come!” to you, you shall cross land or sea to +do my bidding; and to that end this!’ With that he pulled open his +shirt, and with his long sharp nails opened a vein in his breast. When +the blood began to spurt out, he took my hands in one of his, holding +them tight, and with the other seized my neck and pressed my mouth to +the wound, so that I must either suffocate or swallow some of the---- Oh +my God! my God! what have I done? What have I done to deserve such a +fate, I who have tried to walk in meekness and righteousness all my +days. God pity me! Look down on a poor soul in worse than mortal peril; +and in mercy pity those to whom she is dear!” Then she began to rub her +lips as though to cleanse them from pollution. + +As she was telling her terrible story, the eastern sky began to quicken, +and everything became more and more clear. Harker was still and quiet; +but over his face, as the awful narrative went on, came a grey look +which deepened and deepened in the morning light, till when the first +red streak of the coming dawn shot up, the flesh stood darkly out +against the whitening hair. + +We have arranged that one of us is to stay within call of the unhappy +pair till we can meet together and arrange about taking action. + +Of this I am sure: the sun rises to-day on no more miserable house in +all the great round of its daily course. + + + + +CHAPTER XXII + +JONATHAN HARKER’S JOURNAL + + +_3 October._--As I must do something or go mad, I write this diary. It +is now six o’clock, and we are to meet in the study in half an hour and +take something to eat; for Dr. Van Helsing and Dr. Seward are agreed +that if we do not eat we cannot work our best. Our best will be, God +knows, required to-day. I must keep writing at every chance, for I dare +not stop to think. All, big and little, must go down; perhaps at the end +the little things may teach us most. The teaching, big or little, could +not have landed Mina or me anywhere worse than we are to-day. However, +we must trust and hope. Poor Mina told me just now, with the tears +running down her dear cheeks, that it is in trouble and trial that our +faith is tested--that we must keep on trusting; and that God will aid us +up to the end. The end! oh my God! what end?... To work! To work! + +When Dr. Van Helsing and Dr. Seward had come back from seeing poor +Renfield, we went gravely into what was to be done. First, Dr. Seward +told us that when he and Dr. Van Helsing had gone down to the room below +they had found Renfield lying on the floor, all in a heap. His face was +all bruised and crushed in, and the bones of the neck were broken. + +Dr. Seward asked the attendant who was on duty in the passage if he had +heard anything. He said that he had been sitting down--he confessed to +half dozing--when he heard loud voices in the room, and then Renfield +had called out loudly several times, “God! God! God!” after that there +was a sound of falling, and when he entered the room he found him lying +on the floor, face down, just as the doctors had seen him. Van Helsing +asked if he had heard “voices” or “a voice,” and he said he could not +say; that at first it had seemed to him as if there were two, but as +there was no one in the room it could have been only one. He could swear +to it, if required, that the word “God” was spoken by the patient. Dr. +Seward said to us, when we were alone, that he did not wish to go into +the matter; the question of an inquest had to be considered, and it +would never do to put forward the truth, as no one would believe it. As +it was, he thought that on the attendant’s evidence he could give a +certificate of death by misadventure in falling from bed. In case the +coroner should demand it, there would be a formal inquest, necessarily +to the same result. + +When the question began to be discussed as to what should be our next +step, the very first thing we decided was that Mina should be in full +confidence; that nothing of any sort--no matter how painful--should be +kept from her. She herself agreed as to its wisdom, and it was pitiful +to see her so brave and yet so sorrowful, and in such a depth of +despair. “There must be no concealment,” she said, “Alas! we have had +too much already. And besides there is nothing in all the world that can +give me more pain than I have already endured--than I suffer now! +Whatever may happen, it must be of new hope or of new courage to me!” +Van Helsing was looking at her fixedly as she spoke, and said, suddenly +but quietly:-- + +“But dear Madam Mina, are you not afraid; not for yourself, but for +others from yourself, after what has happened?” Her face grew set in its +lines, but her eyes shone with the devotion of a martyr as she +answered:-- + +“Ah no! for my mind is made up!” + +“To what?” he asked gently, whilst we were all very still; for each in +our own way we had a sort of vague idea of what she meant. Her answer +came with direct simplicity, as though she were simply stating a fact:-- + +“Because if I find in myself--and I shall watch keenly for it--a sign of +harm to any that I love, I shall die!” + +“You would not kill yourself?” he asked, hoarsely. + +“I would; if there were no friend who loved me, who would save me such a +pain, and so desperate an effort!” She looked at him meaningly as she +spoke. He was sitting down; but now he rose and came close to her and +put his hand on her head as he said solemnly: + +“My child, there is such an one if it were for your good. For myself I +could hold it in my account with God to find such an euthanasia for you, +even at this moment if it were best. Nay, were it safe! But my +child----” For a moment he seemed choked, and a great sob rose in his +throat; he gulped it down and went on:-- + +“There are here some who would stand between you and death. You must not +die. You must not die by any hand; but least of all by your own. Until +the other, who has fouled your sweet life, is true dead you must not +die; for if he is still with the quick Un-Dead, your death would make +you even as he is. No, you must live! You must struggle and strive to +live, though death would seem a boon unspeakable. You must fight Death +himself, though he come to you in pain or in joy; by the day, or the +night; in safety or in peril! On your living soul I charge you that you +do not die--nay, nor think of death--till this great evil be past.” The +poor dear grew white as death, and shock and shivered, as I have seen a +quicksand shake and shiver at the incoming of the tide. We were all +silent; we could do nothing. At length she grew more calm and turning to +him said, sweetly, but oh! so sorrowfully, as she held out her hand:-- + +“I promise you, my dear friend, that if God will let me live, I shall +strive to do so; till, if it may be in His good time, this horror may +have passed away from me.” She was so good and brave that we all felt +that our hearts were strengthened to work and endure for her, and we +began to discuss what we were to do. I told her that she was to have all +the papers in the safe, and all the papers or diaries and phonographs we +might hereafter use; and was to keep the record as she had done before. +She was pleased with the prospect of anything to do--if “pleased” could +be used in connection with so grim an interest. + +As usual Van Helsing had thought ahead of everyone else, and was +prepared with an exact ordering of our work. + +“It is perhaps well,” he said, “that at our meeting after our visit to +Carfax we decided not to do anything with the earth-boxes that lay +there. Had we done so, the Count must have guessed our purpose, and +would doubtless have taken measures in advance to frustrate such an +effort with regard to the others; but now he does not know our +intentions. Nay, more, in all probability, he does not know that such a +power exists to us as can sterilise his lairs, so that he cannot use +them as of old. We are now so much further advanced in our knowledge as +to their disposition that, when we have examined the house in +Piccadilly, we may track the very last of them. To-day, then, is ours; +and in it rests our hope. The sun that rose on our sorrow this morning +guards us in its course. Until it sets to-night, that monster must +retain whatever form he now has. He is confined within the limitations +of his earthly envelope. He cannot melt into thin air nor disappear +through cracks or chinks or crannies. If he go through a doorway, he +must open the door like a mortal. And so we have this day to hunt out +all his lairs and sterilise them. So we shall, if we have not yet catch +him and destroy him, drive him to bay in some place where the catching +and the destroying shall be, in time, sure.” Here I started up for I +could not contain myself at the thought that the minutes and seconds so +preciously laden with Mina’s life and happiness were flying from us, +since whilst we talked action was impossible. But Van Helsing held up +his hand warningly. “Nay, friend Jonathan,” he said, “in this, the +quickest way home is the longest way, so your proverb say. We shall all +act and act with desperate quick, when the time has come. But think, in +all probable the key of the situation is in that house in Piccadilly. +The Count may have many houses which he has bought. Of them he will have +deeds of purchase, keys and other things. He will have paper that he +write on; he will have his book of cheques. There are many belongings +that he must have somewhere; why not in this place so central, so quiet, +where he come and go by the front or the back at all hour, when in the +very vast of the traffic there is none to notice. We shall go there and +search that house; and when we learn what it holds, then we do what our +friend Arthur call, in his phrases of hunt ‘stop the earths’ and so we +run down our old fox--so? is it not?” + +“Then let us come at once,” I cried, “we are wasting the precious, +precious time!” The Professor did not move, but simply said:-- + +“And how are we to get into that house in Piccadilly?” + +“Any way!” I cried. “We shall break in if need be.” + +“And your police; where will they be, and what will they say?” + +I was staggered; but I knew that if he wished to delay he had a good +reason for it. So I said, as quietly as I could:-- + +“Don’t wait more than need be; you know, I am sure, what torture I am +in.” + +“Ah, my child, that I do; and indeed there is no wish of me to add to +your anguish. But just think, what can we do, until all the world be at +movement. Then will come our time. I have thought and thought, and it +seems to me that the simplest way is the best of all. Now we wish to get +into the house, but we have no key; is it not so?” I nodded. + +“Now suppose that you were, in truth, the owner of that house, and could +not still get in; and think there was to you no conscience of the +housebreaker, what would you do?” + +“I should get a respectable locksmith, and set him to work to pick the +lock for me.” + +“And your police, they would interfere, would they not?” + +“Oh, no! not if they knew the man was properly employed.” + +“Then,” he looked at me as keenly as he spoke, “all that is in doubt is +the conscience of the employer, and the belief of your policemen as to +whether or no that employer has a good conscience or a bad one. Your +police must indeed be zealous men and clever--oh, so clever!--in reading +the heart, that they trouble themselves in such matter. No, no, my +friend Jonathan, you go take the lock off a hundred empty house in this +your London, or of any city in the world; and if you do it as such +things are rightly done, and at the time such things are rightly done, +no one will interfere. I have read of a gentleman who owned a so fine +house in London, and when he went for months of summer to Switzerland +and lock up his house, some burglar came and broke window at back and +got in. Then he went and made open the shutters in front and walk out +and in through the door, before the very eyes of the police. Then he +have an auction in that house, and advertise it, and put up big notice; +and when the day come he sell off by a great auctioneer all the goods of +that other man who own them. Then he go to a builder, and he sell him +that house, making an agreement that he pull it down and take all away +within a certain time. And your police and other authority help him all +they can. And when that owner come back from his holiday in Switzerland +he find only an empty hole where his house had been. This was all done +_en règle_; and in our work we shall be _en règle_ too. We shall not go +so early that the policemen who have then little to think of, shall deem +it strange; but we shall go after ten o’clock, when there are many +about, and such things would be done were we indeed owners of the +house.” + +I could not but see how right he was and the terrible despair of Mina’s +face became relaxed a thought; there was hope in such good counsel. Van +Helsing went on:-- + +“When once within that house we may find more clues; at any rate some of +us can remain there whilst the rest find the other places where there be +more earth-boxes--at Bermondsey and Mile End.” + +Lord Godalming stood up. “I can be of some use here,” he said. “I shall +wire to my people to have horses and carriages where they will be most +convenient.” + +“Look here, old fellow,” said Morris, “it is a capital idea to have all +ready in case we want to go horsebacking; but don’t you think that one +of your snappy carriages with its heraldic adornments in a byway of +Walworth or Mile End would attract too much attention for our purposes? +It seems to me that we ought to take cabs when we go south or east; and +even leave them somewhere near the neighbourhood we are going to.” + +“Friend Quincey is right!” said the Professor. “His head is what you +call in plane with the horizon. It is a difficult thing that we go to +do, and we do not want no peoples to watch us if so it may.” + +Mina took a growing interest in everything and I was rejoiced to see +that the exigency of affairs was helping her to forget for a time the +terrible experience of the night. She was very, very pale--almost +ghastly, and so thin that her lips were drawn away, showing her teeth in +somewhat of prominence. I did not mention this last, lest it should give +her needless pain; but it made my blood run cold in my veins to think of +what had occurred with poor Lucy when the Count had sucked her blood. As +yet there was no sign of the teeth growing sharper; but the time as yet +was short, and there was time for fear. + +When we came to the discussion of the sequence of our efforts and of the +disposition of our forces, there were new sources of doubt. It was +finally agreed that before starting for Piccadilly we should destroy the +Count’s lair close at hand. In case he should find it out too soon, we +should thus be still ahead of him in our work of destruction; and his +presence in his purely material shape, and at his weakest, might give us +some new clue. + +As to the disposal of forces, it was suggested by the Professor that, +after our visit to Carfax, we should all enter the house in Piccadilly; +that the two doctors and I should remain there, whilst Lord Godalming +and Quincey found the lairs at Walworth and Mile End and destroyed them. +It was possible, if not likely, the Professor urged, that the Count +might appear in Piccadilly during the day, and that if so we might be +able to cope with him then and there. At any rate, we might be able to +follow him in force. To this plan I strenuously objected, and so far as +my going was concerned, for I said that I intended to stay and protect +Mina, I thought that my mind was made up on the subject; but Mina would +not listen to my objection. She said that there might be some law matter +in which I could be useful; that amongst the Count’s papers might be +some clue which I could understand out of my experience in Transylvania; +and that, as it was, all the strength we could muster was required to +cope with the Count’s extraordinary power. I had to give in, for Mina’s +resolution was fixed; she said that it was the last hope for _her_ that +we should all work together. “As for me,” she said, “I have no fear. +Things have been as bad as they can be; and whatever may happen must +have in it some element of hope or comfort. Go, my husband! God can, if +He wishes it, guard me as well alone as with any one present.” So I +started up crying out: “Then in God’s name let us come at once, for we +are losing time. The Count may come to Piccadilly earlier than we +think.” + +“Not so!” said Van Helsing, holding up his hand. + +“But why?” I asked. + +“Do you forget,” he said, with actually a smile, “that last night he +banqueted heavily, and will sleep late?” + +Did I forget! shall I ever--can I ever! Can any of us ever forget that +terrible scene! Mina struggled hard to keep her brave countenance; but +the pain overmastered her and she put her hands before her face, and +shuddered whilst she moaned. Van Helsing had not intended to recall her +frightful experience. He had simply lost sight of her and her part in +the affair in his intellectual effort. When it struck him what he said, +he was horrified at his thoughtlessness and tried to comfort her. “Oh, +Madam Mina,” he said, “dear, dear Madam Mina, alas! that I of all who so +reverence you should have said anything so forgetful. These stupid old +lips of mine and this stupid old head do not deserve so; but you will +forget it, will you not?” He bent low beside her as he spoke; she took +his hand, and looking at him through her tears, said hoarsely:-- + +“No, I shall not forget, for it is well that I remember; and with it I +have so much in memory of you that is sweet, that I take it all +together. Now, you must all be going soon. Breakfast is ready, and we +must all eat that we may be strong.” + +Breakfast was a strange meal to us all. We tried to be cheerful and +encourage each other, and Mina was the brightest and most cheerful of +us. When it was over, Van Helsing stood up and said:-- + +“Now, my dear friends, we go forth to our terrible enterprise. Are we +all armed, as we were on that night when first we visited our enemy’s +lair; armed against ghostly as well as carnal attack?” We all assured +him. “Then it is well. Now, Madam Mina, you are in any case _quite_ safe +here until the sunset; and before then we shall return--if---- We shall +return! But before we go let me see you armed against personal attack. I +have myself, since you came down, prepared your chamber by the placing +of things of which we know, so that He may not enter. Now let me guard +yourself. On your forehead I touch this piece of Sacred Wafer in the +name of the Father, the Son, and----” + +There was a fearful scream which almost froze our hearts to hear. As he +had placed the Wafer on Mina’s forehead, it had seared it--had burned +into the flesh as though it had been a piece of white-hot metal. My poor +darling’s brain had told her the significance of the fact as quickly as +her nerves received the pain of it; and the two so overwhelmed her that +her overwrought nature had its voice in that dreadful scream. But the +words to her thought came quickly; the echo of the scream had not ceased +to ring on the air when there came the reaction, and she sank on her +knees on the floor in an agony of abasement. Pulling her beautiful hair +over her face, as the leper of old his mantle, she wailed out:-- + +“Unclean! Unclean! Even the Almighty shuns my polluted flesh! I must +bear this mark of shame upon my forehead until the Judgment Day.” They +all paused. I had thrown myself beside her in an agony of helpless +grief, and putting my arms around held her tight. For a few minutes our +sorrowful hearts beat together, whilst the friends around us turned away +their eyes that ran tears silently. Then Van Helsing turned and said +gravely; so gravely that I could not help feeling that he was in some +way inspired, and was stating things outside himself:-- + +“It may be that you may have to bear that mark till God himself see fit, +as He most surely shall, on the Judgment Day, to redress all wrongs of +the earth and of His children that He has placed thereon. And oh, Madam +Mina, my dear, my dear, may we who love you be there to see, when that +red scar, the sign of God’s knowledge of what has been, shall pass away, +and leave your forehead as pure as the heart we know. For so surely as +we live, that scar shall pass away when God sees right to lift the +burden that is hard upon us. Till then we bear our Cross, as His Son did +in obedience to His Will. It may be that we are chosen instruments of +His good pleasure, and that we ascend to His bidding as that other +through stripes and shame; through tears and blood; through doubts and +fears, and all that makes the difference between God and man.” + +There was hope in his words, and comfort; and they made for resignation. +Mina and I both felt so, and simultaneously we each took one of the old +man’s hands and bent over and kissed it. Then without a word we all +knelt down together, and, all holding hands, swore to be true to each +other. We men pledged ourselves to raise the veil of sorrow from the +head of her whom, each in his own way, we loved; and we prayed for help +and guidance in the terrible task which lay before us. + +It was then time to start. So I said farewell to Mina, a parting which +neither of us shall forget to our dying day; and we set out. + +To one thing I have made up my mind: if we find out that Mina must be a +vampire in the end, then she shall not go into that unknown and terrible +land alone. I suppose it is thus that in old times one vampire meant +many; just as their hideous bodies could only rest in sacred earth, so +the holiest love was the recruiting sergeant for their ghastly ranks. + +We entered Carfax without trouble and found all things the same as on +the first occasion. It was hard to believe that amongst so prosaic +surroundings of neglect and dust and decay there was any ground for such +fear as already we knew. Had not our minds been made up, and had there +not been terrible memories to spur us on, we could hardly have proceeded +with our task. We found no papers, or any sign of use in the house; and +in the old chapel the great boxes looked just as we had seen them last. +Dr. Van Helsing said to us solemnly as we stood before them:-- + +“And now, my friends, we have a duty here to do. We must sterilise this +earth, so sacred of holy memories, that he has brought from a far +distant land for such fell use. He has chosen this earth because it has +been holy. Thus we defeat him with his own weapon, for we make it more +holy still. It was sanctified to such use of man, now we sanctify it to +God.” As he spoke he took from his bag a screwdriver and a wrench, and +very soon the top of one of the cases was thrown open. The earth smelled +musty and close; but we did not somehow seem to mind, for our attention +was concentrated on the Professor. Taking from his box a piece of the +Sacred Wafer he laid it reverently on the earth, and then shutting down +the lid began to screw it home, we aiding him as he worked. + +One by one we treated in the same way each of the great boxes, and left +them as we had found them to all appearance; but in each was a portion +of the Host. + +When we closed the door behind us, the Professor said solemnly:-- + +“So much is already done. If it may be that with all the others we can +be so successful, then the sunset of this evening may shine on Madam +Mina’s forehead all white as ivory and with no stain!” + +As we passed across the lawn on our way to the station to catch our +train we could see the front of the asylum. I looked eagerly, and in the +window of my own room saw Mina. I waved my hand to her, and nodded to +tell that our work there was successfully accomplished. She nodded in +reply to show that she understood. The last I saw, she was waving her +hand in farewell. It was with a heavy heart that we sought the station +and just caught the train, which was steaming in as we reached the +platform. + +I have written this in the train. + + * * * * * + +_Piccadilly, 12:30 o’clock._--Just before we reached Fenchurch Street +Lord Godalming said to me:-- + +“Quincey and I will find a locksmith. You had better not come with us in +case there should be any difficulty; for under the circumstances it +wouldn’t seem so bad for us to break into an empty house. But you are a +solicitor and the Incorporated Law Society might tell you that you +should have known better.” I demurred as to my not sharing any danger +even of odium, but he went on: “Besides, it will attract less attention +if there are not too many of us. My title will make it all right with +the locksmith, and with any policeman that may come along. You had +better go with Jack and the Professor and stay in the Green Park, +somewhere in sight of the house; and when you see the door opened and +the smith has gone away, do you all come across. We shall be on the +lookout for you, and shall let you in.” + +“The advice is good!” said Van Helsing, so we said no more. Godalming +and Morris hurried off in a cab, we following in another. At the corner +of Arlington Street our contingent got out and strolled into the Green +Park. My heart beat as I saw the house on which so much of our hope was +centred, looming up grim and silent in its deserted condition amongst +its more lively and spruce-looking neighbours. We sat down on a bench +within good view, and began to smoke cigars so as to attract as little +attention as possible. The minutes seemed to pass with leaden feet as we +waited for the coming of the others. + +At length we saw a four-wheeler drive up. Out of it, in leisurely +fashion, got Lord Godalming and Morris; and down from the box descended +a thick-set working man with his rush-woven basket of tools. Morris paid +the cabman, who touched his hat and drove away. Together the two +ascended the steps, and Lord Godalming pointed out what he wanted done. +The workman took off his coat leisurely and hung it on one of the spikes +of the rail, saying something to a policeman who just then sauntered +along. The policeman nodded acquiescence, and the man kneeling down +placed his bag beside him. After searching through it, he took out a +selection of tools which he produced to lay beside him in orderly +fashion. Then he stood up, looked into the keyhole, blew into it, and +turning to his employers, made some remark. Lord Godalming smiled, and +the man lifted a good-sized bunch of keys; selecting one of them, he +began to probe the lock, as if feeling his way with it. After fumbling +about for a bit he tried a second, and then a third. All at once the +door opened under a slight push from him, and he and the two others +entered the hall. We sat still; my own cigar burnt furiously, but Van +Helsing’s went cold altogether. We waited patiently as we saw the +workman come out and bring in his bag. Then he held the door partly +open, steadying it with his knees, whilst he fitted a key to the lock. +This he finally handed to Lord Godalming, who took out his purse and +gave him something. The man touched his hat, took his bag, put on his +coat and departed; not a soul took the slightest notice of the whole +transaction. + +When the man had fairly gone, we three crossed the street and knocked at +the door. It was immediately opened by Quincey Morris, beside whom stood +Lord Godalming lighting a cigar. + +“The place smells so vilely,” said the latter as we came in. It did +indeed smell vilely--like the old chapel at Carfax--and with our +previous experience it was plain to us that the Count had been using the +place pretty freely. We moved to explore the house, all keeping together +in case of attack; for we knew we had a strong and wily enemy to deal +with, and as yet we did not know whether the Count might not be in the +house. In the dining-room, which lay at the back of the hall, we found +eight boxes of earth. Eight boxes only out of the nine, which we sought! +Our work was not over, and would never be until we should have found the +missing box. First we opened the shutters of the window which looked out +across a narrow stone-flagged yard at the blank face of a stable, +pointed to look like the front of a miniature house. There were no +windows in it, so we were not afraid of being over-looked. We did not +lose any time in examining the chests. With the tools which we had +brought with us we opened them, one by one, and treated them as we had +treated those others in the old chapel. It was evident to us that the +Count was not at present in the house, and we proceeded to search for +any of his effects. + +After a cursory glance at the rest of the rooms, from basement to attic, +we came to the conclusion that the dining-room contained any effects +which might belong to the Count; and so we proceeded to minutely examine +them. They lay in a sort of orderly disorder on the great dining-room +table. There were title deeds of the Piccadilly house in a great bundle; +deeds of the purchase of the houses at Mile End and Bermondsey; +note-paper, envelopes, and pens and ink. All were covered up in thin +wrapping paper to keep them from the dust. There were also a clothes +brush, a brush and comb, and a jug and basin--the latter containing +dirty water which was reddened as if with blood. Last of all was a +little heap of keys of all sorts and sizes, probably those belonging to +the other houses. When we had examined this last find, Lord Godalming +and Quincey Morris taking accurate notes of the various addresses of the +houses in the East and the South, took with them the keys in a great +bunch, and set out to destroy the boxes in these places. The rest of us +are, with what patience we can, waiting their return--or the coming of +the Count. + + + + +CHAPTER XXIII + +DR. SEWARD’S DIARY + + +_3 October._--The time seemed terribly long whilst we were waiting for +the coming of Godalming and Quincey Morris. The Professor tried to keep +our minds active by using them all the time. I could see his beneficent +purpose, by the side glances which he threw from time to time at Harker. +The poor fellow is overwhelmed in a misery that is appalling to see. +Last night he was a frank, happy-looking man, with strong, youthful +face, full of energy, and with dark brown hair. To-day he is a drawn, +haggard old man, whose white hair matches well with the hollow burning +eyes and grief-written lines of his face. His energy is still intact; in +fact, he is like a living flame. This may yet be his salvation, for, if +all go well, it will tide him over the despairing period; he will then, +in a kind of way, wake again to the realities of life. Poor fellow, I +thought my own trouble was bad enough, but his----! The Professor knows +this well enough, and is doing his best to keep his mind active. What he +has been saying was, under the circumstances, of absorbing interest. So +well as I can remember, here it is:-- + +“I have studied, over and over again since they came into my hands, all +the papers relating to this monster; and the more I have studied, the +greater seems the necessity to utterly stamp him out. All through there +are signs of his advance; not only of his power, but of his knowledge of +it. As I learned from the researches of my friend Arminus of Buda-Pesth, +he was in life a most wonderful man. Soldier, statesman, and +alchemist--which latter was the highest development of the +science-knowledge of his time. He had a mighty brain, a learning beyond +compare, and a heart that knew no fear and no remorse. He dared even to +attend the Scholomance, and there was no branch of knowledge of his time +that he did not essay. Well, in him the brain powers survived the +physical death; though it would seem that memory was not all complete. +In some faculties of mind he has been, and is, only a child; but he is +growing, and some things that were childish at the first are now of +man’s stature. He is experimenting, and doing it well; and if it had not +been that we have crossed his path he would be yet--he may be yet if we +fail--the father or furtherer of a new order of beings, whose road must +lead through Death, not Life.” + +Harker groaned and said, “And this is all arrayed against my darling! +But how is he experimenting? The knowledge may help us to defeat him!” + +“He has all along, since his coming, been trying his power, slowly but +surely; that big child-brain of his is working. Well for us, it is, as +yet, a child-brain; for had he dared, at the first, to attempt certain +things he would long ago have been beyond our power. However, he means +to succeed, and a man who has centuries before him can afford to wait +and to go slow. _Festina lente_ may well be his motto.” + +“I fail to understand,” said Harker wearily. “Oh, do be more plain to +me! Perhaps grief and trouble are dulling my brain.” + +The Professor laid his hand tenderly on his shoulder as he spoke:-- + +“Ah, my child, I will be plain. Do you not see how, of late, this +monster has been creeping into knowledge experimentally. How he has been +making use of the zoöphagous patient to effect his entry into friend +John’s home; for your Vampire, though in all afterwards he can come when +and how he will, must at the first make entry only when asked thereto by +an inmate. But these are not his most important experiments. Do we not +see how at the first all these so great boxes were moved by others. He +knew not then but that must be so. But all the time that so great +child-brain of his was growing, and he began to consider whether he +might not himself move the box. So he began to help; and then, when he +found that this be all-right, he try to move them all alone. And so he +progress, and he scatter these graves of him; and none but he know where +they are hidden. He may have intend to bury them deep in the ground. So +that he only use them in the night, or at such time as he can change his +form, they do him equal well; and none may know these are his +hiding-place! But, my child, do not despair; this knowledge come to him +just too late! Already all of his lairs but one be sterilise as for him; +and before the sunset this shall be so. Then he have no place where he +can move and hide. I delayed this morning that so we might be sure. Is +there not more at stake for us than for him? Then why we not be even +more careful than him? By my clock it is one hour and already, if all be +well, friend Arthur and Quincey are on their way to us. To-day is our +day, and we must go sure, if slow, and lose no chance. See! there are +five of us when those absent ones return.” + +Whilst he was speaking we were startled by a knock at the hall door, the +double postman’s knock of the telegraph boy. We all moved out to the +hall with one impulse, and Van Helsing, holding up his hand to us to +keep silence, stepped to the door and opened it. The boy handed in a +despatch. The Professor closed the door again, and, after looking at the +direction, opened it and read aloud. + +“Look out for D. He has just now, 12:45, come from Carfax hurriedly and +hastened towards the South. He seems to be going the round and may want +to see you: Mina.” + +There was a pause, broken by Jonathan Harker’s voice:-- + +“Now, God be thanked, we shall soon meet!” Van Helsing turned to him +quickly and said:-- + +“God will act in His own way and time. Do not fear, and do not rejoice +as yet; for what we wish for at the moment may be our undoings.” + +“I care for nothing now,” he answered hotly, “except to wipe out this +brute from the face of creation. I would sell my soul to do it!” + +“Oh, hush, hush, my child!” said Van Helsing. “God does not purchase +souls in this wise; and the Devil, though he may purchase, does not keep +faith. But God is merciful and just, and knows your pain and your +devotion to that dear Madam Mina. Think you, how her pain would be +doubled, did she but hear your wild words. Do not fear any of us, we are +all devoted to this cause, and to-day shall see the end. The time is +coming for action; to-day this Vampire is limit to the powers of man, +and till sunset he may not change. It will take him time to arrive +here--see, it is twenty minutes past one--and there are yet some times +before he can hither come, be he never so quick. What we must hope for +is that my Lord Arthur and Quincey arrive first.” + +About half an hour after we had received Mrs. Harker’s telegram, there +came a quiet, resolute knock at the hall door. It was just an ordinary +knock, such as is given hourly by thousands of gentlemen, but it made +the Professor’s heart and mine beat loudly. We looked at each other, and +together moved out into the hall; we each held ready to use our various +armaments--the spiritual in the left hand, the mortal in the right. Van +Helsing pulled back the latch, and, holding the door half open, stood +back, having both hands ready for action. The gladness of our hearts +must have shown upon our faces when on the step, close to the door, we +saw Lord Godalming and Quincey Morris. They came quickly in and closed +the door behind them, the former saying, as they moved along the +hall:-- + +“It is all right. We found both places; six boxes in each and we +destroyed them all!” + +“Destroyed?” asked the Professor. + +“For him!” We were silent for a minute, and then Quincey said:-- + +“There’s nothing to do but to wait here. If, however, he doesn’t turn up +by five o’clock, we must start off; for it won’t do to leave Mrs. Harker +alone after sunset.” + +“He will be here before long now,” said Van Helsing, who had been +consulting his pocket-book. “_Nota bene_, in Madam’s telegram he went +south from Carfax, that means he went to cross the river, and he could +only do so at slack of tide, which should be something before one +o’clock. That he went south has a meaning for us. He is as yet only +suspicious; and he went from Carfax first to the place where he would +suspect interference least. You must have been at Bermondsey only a +short time before him. That he is not here already shows that he went to +Mile End next. This took him some time; for he would then have to be +carried over the river in some way. Believe me, my friends, we shall not +have long to wait now. We should have ready some plan of attack, so that +we may throw away no chance. Hush, there is no time now. Have all your +arms! Be ready!” He held up a warning hand as he spoke, for we all could +hear a key softly inserted in the lock of the hall door. + +I could not but admire, even at such a moment, the way in which a +dominant spirit asserted itself. In all our hunting parties and +adventures in different parts of the world, Quincey Morris had always +been the one to arrange the plan of action, and Arthur and I had been +accustomed to obey him implicitly. Now, the old habit seemed to be +renewed instinctively. With a swift glance around the room, he at once +laid out our plan of attack, and, without speaking a word, with a +gesture, placed us each in position. Van Helsing, Harker, and I were +just behind the door, so that when it was opened the Professor could +guard it whilst we two stepped between the incomer and the door. +Godalming behind and Quincey in front stood just out of sight ready to +move in front of the window. We waited in a suspense that made the +seconds pass with nightmare slowness. The slow, careful steps came along +the hall; the Count was evidently prepared for some surprise--at least +he feared it. + +Suddenly with a single bound he leaped into the room, winning a way past +us before any of us could raise a hand to stay him. There was something +so panther-like in the movement--something so unhuman, that it seemed +to sober us all from the shock of his coming. The first to act was +Harker, who, with a quick movement, threw himself before the door +leading into the room in the front of the house. As the Count saw us, a +horrible sort of snarl passed over his face, showing the eye-teeth long +and pointed; but the evil smile as quickly passed into a cold stare of +lion-like disdain. His expression again changed as, with a single +impulse, we all advanced upon him. It was a pity that we had not some +better organised plan of attack, for even at the moment I wondered what +we were to do. I did not myself know whether our lethal weapons would +avail us anything. Harker evidently meant to try the matter, for he had +ready his great Kukri knife and made a fierce and sudden cut at him. The +blow was a powerful one; only the diabolical quickness of the Count’s +leap back saved him. A second less and the trenchant blade had shorne +through his heart. As it was, the point just cut the cloth of his coat, +making a wide gap whence a bundle of bank-notes and a stream of gold +fell out. The expression of the Count’s face was so hellish, that for a +moment I feared for Harker, though I saw him throw the terrible knife +aloft again for another stroke. Instinctively I moved forward with a +protective impulse, holding the Crucifix and Wafer in my left hand. I +felt a mighty power fly along my arm; and it was without surprise that I +saw the monster cower back before a similar movement made spontaneously +by each one of us. It would be impossible to describe the expression of +hate and baffled malignity--of anger and hellish rage--which came over +the Count’s face. His waxen hue became greenish-yellow by the contrast +of his burning eyes, and the red scar on the forehead showed on the +pallid skin like a palpitating wound. The next instant, with a sinuous +dive he swept under Harker’s arm, ere his blow could fall, and, grasping +a handful of the money from the floor, dashed across the room, threw +himself at the window. Amid the crash and glitter of the falling glass, +he tumbled into the flagged area below. Through the sound of the +shivering glass I could hear the “ting” of the gold, as some of the +sovereigns fell on the flagging. + +We ran over and saw him spring unhurt from the ground. He, rushing up +the steps, crossed the flagged yard, and pushed open the stable door. +There he turned and spoke to us:-- + +“You think to baffle me, you--with your pale faces all in a row, like +sheep in a butcher’s. You shall be sorry yet, each one of you! You think +you have left me without a place to rest; but I have more. My revenge is +just begun! I spread it over centuries, and time is on my side. Your +girls that you all love are mine already; and through them you and +others shall yet be mine--my creatures, to do my bidding and to be my +jackals when I want to feed. Bah!” With a contemptuous sneer, he passed +quickly through the door, and we heard the rusty bolt creak as he +fastened it behind him. A door beyond opened and shut. The first of us +to speak was the Professor, as, realising the difficulty of following +him through the stable, we moved toward the hall. + +“We have learnt something--much! Notwithstanding his brave words, he +fears us; he fear time, he fear want! For if not, why he hurry so? His +very tone betray him, or my ears deceive. Why take that money? You +follow quick. You are hunters of wild beast, and understand it so. For +me, I make sure that nothing here may be of use to him, if so that he +return.” As he spoke he put the money remaining into his pocket; took +the title-deeds in the bundle as Harker had left them, and swept the +remaining things into the open fireplace, where he set fire to them with +a match. + +Godalming and Morris had rushed out into the yard, and Harker had +lowered himself from the window to follow the Count. He had, however, +bolted the stable door; and by the time they had forced it open there +was no sign of him. Van Helsing and I tried to make inquiry at the back +of the house; but the mews was deserted and no one had seen him depart. + +It was now late in the afternoon, and sunset was not far off. We had to +recognise that our game was up; with heavy hearts we agreed with the +Professor when he said:-- + +“Let us go back to Madam Mina--poor, poor dear Madam Mina. All we can do +just now is done; and we can there, at least, protect her. But we need +not despair. There is but one more earth-box, and we must try to find +it; when that is done all may yet be well.” I could see that he spoke as +bravely as he could to comfort Harker. The poor fellow was quite broken +down; now and again he gave a low groan which he could not suppress--he +was thinking of his wife. + +With sad hearts we came back to my house, where we found Mrs. Harker +waiting us, with an appearance of cheerfulness which did honour to her +bravery and unselfishness. When she saw our faces, her own became as +pale as death: for a second or two her eyes were closed as if she were +in secret prayer; and then she said cheerfully:-- + +“I can never thank you all enough. Oh, my poor darling!” As she spoke, +she took her husband’s grey head in her hands and kissed it--“Lay your +poor head here and rest it. All will yet be well, dear! God will protect +us if He so will it in His good intent.” The poor fellow groaned. There +was no place for words in his sublime misery. + +We had a sort of perfunctory supper together, and I think it cheered us +all up somewhat. It was, perhaps, the mere animal heat of food to hungry +people--for none of us had eaten anything since breakfast--or the sense +of companionship may have helped us; but anyhow we were all less +miserable, and saw the morrow as not altogether without hope. True to +our promise, we told Mrs. Harker everything which had passed; and +although she grew snowy white at times when danger had seemed to +threaten her husband, and red at others when his devotion to her was +manifested, she listened bravely and with calmness. When we came to the +part where Harker had rushed at the Count so recklessly, she clung to +her husband’s arm, and held it tight as though her clinging could +protect him from any harm that might come. She said nothing, however, +till the narration was all done, and matters had been brought right up +to the present time. Then without letting go her husband’s hand she +stood up amongst us and spoke. Oh, that I could give any idea of the +scene; of that sweet, sweet, good, good woman in all the radiant beauty +of her youth and animation, with the red scar on her forehead, of which +she was conscious, and which we saw with grinding of our +teeth--remembering whence and how it came; her loving kindness against +our grim hate; her tender faith against all our fears and doubting; and +we, knowing that so far as symbols went, she with all her goodness and +purity and faith, was outcast from God. + +“Jonathan,” she said, and the word sounded like music on her lips it was +so full of love and tenderness, “Jonathan dear, and you all my true, +true friends, I want you to bear something in mind through all this +dreadful time. I know that you must fight--that you must destroy even as +you destroyed the false Lucy so that the true Lucy might live hereafter; +but it is not a work of hate. That poor soul who has wrought all this +misery is the saddest case of all. Just think what will be his joy when +he, too, is destroyed in his worser part that his better part may have +spiritual immortality. You must be pitiful to him, too, though it may +not hold your hands from his destruction.” + +As she spoke I could see her husband’s face darken and draw together, as +though the passion in him were shrivelling his being to its core. +Instinctively the clasp on his wife’s hand grew closer, till his +knuckles looked white. She did not flinch from the pain which I knew she +must have suffered, but looked at him with eyes that were more appealing +than ever. As she stopped speaking he leaped to his feet, almost tearing +his hand from hers as he spoke:-- + +“May God give him into my hand just for long enough to destroy that +earthly life of him which we are aiming at. If beyond it I could send +his soul for ever and ever to burning hell I would do it!” + +“Oh, hush! oh, hush! in the name of the good God. Don’t say such things, +Jonathan, my husband; or you will crush me with fear and horror. Just +think, my dear--I have been thinking all this long, long day of it--that +... perhaps ... some day ... I, too, may need such pity; and that some +other like you--and with equal cause for anger--may deny it to me! Oh, +my husband! my husband, indeed I would have spared you such a thought +had there been another way; but I pray that God may not have treasured +your wild words, except as the heart-broken wail of a very loving and +sorely stricken man. Oh, God, let these poor white hairs go in evidence +of what he has suffered, who all his life has done no wrong, and on whom +so many sorrows have come.” + +We men were all in tears now. There was no resisting them, and we wept +openly. She wept, too, to see that her sweeter counsels had prevailed. +Her husband flung himself on his knees beside her, and putting his arms +round her, hid his face in the folds of her dress. Van Helsing beckoned +to us and we stole out of the room, leaving the two loving hearts alone +with their God. + +Before they retired the Professor fixed up the room against any coming +of the Vampire, and assured Mrs. Harker that she might rest in peace. +She tried to school herself to the belief, and, manifestly for her +husband’s sake, tried to seem content. It was a brave struggle; and was, +I think and believe, not without its reward. Van Helsing had placed at +hand a bell which either of them was to sound in case of any emergency. +When they had retired, Quincey, Godalming, and I arranged that we should +sit up, dividing the night between us, and watch over the safety of the +poor stricken lady. The first watch falls to Quincey, so the rest of us +shall be off to bed as soon as we can. Godalming has already turned in, +for his is the second watch. Now that my work is done I, too, shall go +to bed. + + +_Jonathan Harker’s Journal._ + +_3-4 October, close to midnight._--I thought yesterday would never end. +There was over me a yearning for sleep, in some sort of blind belief +that to wake would be to find things changed, and that any change must +now be for the better. Before we parted, we discussed what our next step +was to be, but we could arrive at no result. All we knew was that one +earth-box remained, and that the Count alone knew where it was. If he +chooses to lie hidden, he may baffle us for years; and in the +meantime!--the thought is too horrible, I dare not think of it even now. +This I know: that if ever there was a woman who was all perfection, that +one is my poor wronged darling. I love her a thousand times more for her +sweet pity of last night, a pity that made my own hate of the monster +seem despicable. Surely God will not permit the world to be the poorer +by the loss of such a creature. This is hope to me. We are all drifting +reefwards now, and faith is our only anchor. Thank God! Mina is +sleeping, and sleeping without dreams. I fear what her dreams might be +like, with such terrible memories to ground them in. She has not been so +calm, within my seeing, since the sunset. Then, for a while, there came +over her face a repose which was like spring after the blasts of March. +I thought at the time that it was the softness of the red sunset on her +face, but somehow now I think it has a deeper meaning. I am not sleepy +myself, though I am weary--weary to death. However, I must try to sleep; +for there is to-morrow to think of, and there is no rest for me +until.... + + * * * * * + +_Later._--I must have fallen asleep, for I was awaked by Mina, who was +sitting up in bed, with a startled look on her face. I could see easily, +for we did not leave the room in darkness; she had placed a warning hand +over my mouth, and now she whispered in my ear:-- + +“Hush! there is someone in the corridor!” I got up softly, and crossing +the room, gently opened the door. + +Just outside, stretched on a mattress, lay Mr. Morris, wide awake. He +raised a warning hand for silence as he whispered to me:-- + +“Hush! go back to bed; it is all right. One of us will be here all +night. We don’t mean to take any chances!” + +His look and gesture forbade discussion, so I came back and told Mina. +She sighed and positively a shadow of a smile stole over her poor, pale +face as she put her arms round me and said softly:-- + +“Oh, thank God for good brave men!” With a sigh she sank back again to +sleep. I write this now as I am not sleepy, though I must try again. + + * * * * * + +_4 October, morning._--Once again during the night I was wakened by +Mina. This time we had all had a good sleep, for the grey of the coming +dawn was making the windows into sharp oblongs, and the gas flame was +like a speck rather than a disc of light. She said to me hurriedly:-- + +“Go, call the Professor. I want to see him at once.” + +“Why?” I asked. + +“I have an idea. I suppose it must have come in the night, and matured +without my knowing it. He must hypnotise me before the dawn, and then I +shall be able to speak. Go quick, dearest; the time is getting close.” I +went to the door. Dr. Seward was resting on the mattress, and, seeing +me, he sprang to his feet. + +“Is anything wrong?” he asked, in alarm. + +“No,” I replied; “but Mina wants to see Dr. Van Helsing at once.” + +“I will go,” he said, and hurried into the Professor’s room. + +In two or three minutes later Van Helsing was in the room in his +dressing-gown, and Mr. Morris and Lord Godalming were with Dr. Seward at +the door asking questions. When the Professor saw Mina smile--a +positive smile ousted the anxiety of his face; he rubbed his hands as he +said:-- + +“Oh, my dear Madam Mina, this is indeed a change. See! friend Jonathan, +we have got our dear Madam Mina, as of old, back to us to-day!” Then +turning to her, he said, cheerfully: “And what am I do for you? For at +this hour you do not want me for nothings.” + +“I want you to hypnotise me!” she said. “Do it before the dawn, for I +feel that then I can speak, and speak freely. Be quick, for the time is +short!” Without a word he motioned her to sit up in bed. + +Looking fixedly at her, he commenced to make passes in front of her, +from over the top of her head downward, with each hand in turn. Mina +gazed at him fixedly for a few minutes, during which my own heart beat +like a trip hammer, for I felt that some crisis was at hand. Gradually +her eyes closed, and she sat, stock still; only by the gentle heaving of +her bosom could one know that she was alive. The Professor made a few +more passes and then stopped, and I could see that his forehead was +covered with great beads of perspiration. Mina opened her eyes; but she +did not seem the same woman. There was a far-away look in her eyes, and +her voice had a sad dreaminess which was new to me. Raising his hand to +impose silence, the Professor motioned to me to bring the others in. +They came on tip-toe, closing the door behind them, and stood at the +foot of the bed, looking on. Mina appeared not to see them. The +stillness was broken by Van Helsing’s voice speaking in a low level tone +which would not break the current of her thoughts:-- + +“Where are you?” The answer came in a neutral way:-- + +“I do not know. Sleep has no place it can call its own.” For several +minutes there was silence. Mina sat rigid, and the Professor stood +staring at her fixedly; the rest of us hardly dared to breathe. The room +was growing lighter; without taking his eyes from Mina’s face, Dr. Van +Helsing motioned me to pull up the blind. I did so, and the day seemed +just upon us. A red streak shot up, and a rosy light seemed to diffuse +itself through the room. On the instant the Professor spoke again:-- + +“Where are you now?” The answer came dreamily, but with intention; it +were as though she were interpreting something. I have heard her use the +same tone when reading her shorthand notes. + +“I do not know. It is all strange to me!” + +“What do you see?” + +“I can see nothing; it is all dark.” + +“What do you hear?” I could detect the strain in the Professor’s patient +voice. + +“The lapping of water. It is gurgling by, and little waves leap. I can +hear them on the outside.” + +“Then you are on a ship?” We all looked at each other, trying to glean +something each from the other. We were afraid to think. The answer came +quick:-- + +“Oh, yes!” + +“What else do you hear?” + +“The sound of men stamping overhead as they run about. There is the +creaking of a chain, and the loud tinkle as the check of the capstan +falls into the rachet.” + +“What are you doing?” + +“I am still--oh, so still. It is like death!” The voice faded away into +a deep breath as of one sleeping, and the open eyes closed again. + +By this time the sun had risen, and we were all in the full light of +day. Dr. Van Helsing placed his hands on Mina’s shoulders, and laid her +head down softly on her pillow. She lay like a sleeping child for a few +moments, and then, with a long sigh, awoke and stared in wonder to see +us all around her. “Have I been talking in my sleep?” was all she said. +She seemed, however, to know the situation without telling, though she +was eager to know what she had told. The Professor repeated the +conversation, and she said:-- + +“Then there is not a moment to lose: it may not be yet too late!” Mr. +Morris and Lord Godalming started for the door but the Professor’s calm +voice called them back:-- + +“Stay, my friends. That ship, wherever it was, was weighing anchor +whilst she spoke. There are many ships weighing anchor at the moment in +your so great Port of London. Which of them is it that you seek? God be +thanked that we have once again a clue, though whither it may lead us we +know not. We have been blind somewhat; blind after the manner of men, +since when we can look back we see what we might have seen looking +forward if we had been able to see what we might have seen! Alas, but +that sentence is a puddle; is it not? We can know now what was in the +Count’s mind, when he seize that money, though Jonathan’s so fierce +knife put him in the danger that even he dread. He meant escape. Hear +me, ESCAPE! He saw that with but one earth-box left, and a pack of men +following like dogs after a fox, this London was no place for him. He +have take his last earth-box on board a ship, and he leave the land. He +think to escape, but no! we follow him. Tally Ho! as friend Arthur would +say when he put on his red frock! Our old fox is wily; oh! so wily, and +we must follow with wile. I, too, am wily and I think his mind in a +little while. In meantime we may rest and in peace, for there are waters +between us which he do not want to pass, and which he could not if he +would--unless the ship were to touch the land, and then only at full or +slack tide. See, and the sun is just rose, and all day to sunset is to +us. Let us take bath, and dress, and have breakfast which we all need, +and which we can eat comfortably since he be not in the same land with +us.” Mina looked at him appealingly as she asked:-- + +“But why need we seek him further, when he is gone away from us?” He +took her hand and patted it as he replied:-- + +“Ask me nothings as yet. When we have breakfast, then I answer all +questions.” He would say no more, and we separated to dress. + +After breakfast Mina repeated her question. He looked at her gravely for +a minute and then said sorrowfully:-- + +“Because my dear, dear Madam Mina, now more than ever must we find him +even if we have to follow him to the jaws of Hell!” She grew paler as +she asked faintly:-- + +“Why?” + +“Because,” he answered solemnly, “he can live for centuries, and you are +but mortal woman. Time is now to be dreaded--since once he put that mark +upon your throat.” + +I was just in time to catch her as she fell forward in a faint. + + + + +CHAPTER XXIV + +DR. SEWARD’S PHONOGRAPH DIARY, SPOKEN BY VAN HELSING + + +This to Jonathan Harker. + +You are to stay with your dear Madam Mina. We shall go to make our +search--if I can call it so, for it is not search but knowing, and we +seek confirmation only. But do you stay and take care of her to-day. +This is your best and most holiest office. This day nothing can find him +here. Let me tell you that so you will know what we four know already, +for I have tell them. He, our enemy, have gone away; he have gone back +to his Castle in Transylvania. I know it so well, as if a great hand of +fire wrote it on the wall. He have prepare for this in some way, and +that last earth-box was ready to ship somewheres. For this he took the +money; for this he hurry at the last, lest we catch him before the sun +go down. It was his last hope, save that he might hide in the tomb that +he think poor Miss Lucy, being as he thought like him, keep open to him. +But there was not of time. When that fail he make straight for his last +resource--his last earth-work I might say did I wish _double entente_. +He is clever, oh, so clever! he know that his game here was finish; and +so he decide he go back home. He find ship going by the route he came, +and he go in it. We go off now to find what ship, and whither bound; +when we have discover that, we come back and tell you all. Then we will +comfort you and poor dear Madam Mina with new hope. For it will be hope +when you think it over: that all is not lost. This very creature that we +pursue, he take hundreds of years to get so far as London; and yet in +one day, when we know of the disposal of him we drive him out. He is +finite, though he is powerful to do much harm and suffers not as we do. +But we are strong, each in our purpose; and we are all more strong +together. Take heart afresh, dear husband of Madam Mina. This battle is +but begun, and in the end we shall win--so sure as that God sits on high +to watch over His children. Therefore be of much comfort till we return. + +VAN HELSING. + + +_Jonathan Harker’s Journal._ + +_4 October._--When I read to Mina, Van Helsing’s message in the +phonograph, the poor girl brightened up considerably. Already the +certainty that the Count is out of the country has given her comfort; +and comfort is strength to her. For my own part, now that his horrible +danger is not face to face with us, it seems almost impossible to +believe in it. Even my own terrible experiences in Castle Dracula seem +like a long-forgotten dream. Here in the crisp autumn air in the bright +sunlight---- + +Alas! how can I disbelieve! In the midst of my thought my eye fell on +the red scar on my poor darling’s white forehead. Whilst that lasts, +there can be no disbelief. And afterwards the very memory of it will +keep faith crystal clear. Mina and I fear to be idle, so we have been +over all the diaries again and again. Somehow, although the reality +seems greater each time, the pain and the fear seem less. There is +something of a guiding purpose manifest throughout, which is comforting. +Mina says that perhaps we are the instruments of ultimate good. It may +be! I shall try to think as she does. We have never spoken to each other +yet of the future. It is better to wait till we see the Professor and +the others after their investigations. + +The day is running by more quickly than I ever thought a day could run +for me again. It is now three o’clock. + + +_Mina Harker’s Journal._ + +_5 October, 5 p. m._--Our meeting for report. Present: Professor Van +Helsing, Lord Godalming, Dr. Seward, Mr. Quincey Morris, Jonathan +Harker, Mina Harker. + +Dr. Van Helsing described what steps were taken during the day to +discover on what boat and whither bound Count Dracula made his escape:-- + +“As I knew that he wanted to get back to Transylvania, I felt sure that +he must go by the Danube mouth; or by somewhere in the Black Sea, since +by that way he come. It was a dreary blank that was before us. _Omne +ignotum pro magnifico_; and so with heavy hearts we start to find what +ships leave for the Black Sea last night. He was in sailing ship, since +Madam Mina tell of sails being set. These not so important as to go in +your list of the shipping in the _Times_, and so we go, by suggestion of +Lord Godalming, to your Lloyd’s, where are note of all ships that sail, +however so small. There we find that only one Black-Sea-bound ship go +out with the tide. She is the _Czarina Catherine_, and she sail from +Doolittle’s Wharf for Varna, and thence on to other parts and up the +Danube. ‘Soh!’ said I, ‘this is the ship whereon is the Count.’ So off +we go to Doolittle’s Wharf, and there we find a man in an office of wood +so small that the man look bigger than the office. From him we inquire +of the goings of the _Czarina Catherine_. He swear much, and he red face +and loud of voice, but he good fellow all the same; and when Quincey +give him something from his pocket which crackle as he roll it up, and +put it in a so small bag which he have hid deep in his clothing, he +still better fellow and humble servant to us. He come with us, and ask +many men who are rough and hot; these be better fellows too when they +have been no more thirsty. They say much of blood and bloom, and of +others which I comprehend not, though I guess what they mean; but +nevertheless they tell us all things which we want to know. + +“They make known to us among them, how last afternoon at about five +o’clock comes a man so hurry. A tall man, thin and pale, with high nose +and teeth so white, and eyes that seem to be burning. That he be all in +black, except that he have a hat of straw which suit not him or the +time. That he scatter his money in making quick inquiry as to what ship +sails for the Black Sea and for where. Some took him to the office and +then to the ship, where he will not go aboard but halt at shore end of +gang-plank, and ask that the captain come to him. The captain come, when +told that he will be pay well; and though he swear much at the first he +agree to term. Then the thin man go and some one tell him where horse +and cart can be hired. He go there and soon he come again, himself +driving cart on which a great box; this he himself lift down, though it +take several to put it on truck for the ship. He give much talk to +captain as to how and where his box is to be place; but the captain like +it not and swear at him in many tongues, and tell him that if he like he +can come and see where it shall be. But he say ‘no’; that he come not +yet, for that he have much to do. Whereupon the captain tell him that he +had better be quick--with blood--for that his ship will leave the +place--of blood--before the turn of the tide--with blood. Then the thin +man smile and say that of course he must go when he think fit; but he +will be surprise if he go quite so soon. The captain swear again, +polyglot, and the thin man make him bow, and thank him, and say that he +will so far intrude on his kindness as to come aboard before the +sailing. Final the captain, more red than ever, and in more tongues tell +him that he doesn’t want no Frenchmen--with bloom upon them and also +with blood--in his ship--with blood on her also. And so, after asking +where there might be close at hand a ship where he might purchase ship +forms, he departed. + +“No one knew where he went ‘or bloomin’ well cared,’ as they said, for +they had something else to think of--well with blood again; for it soon +became apparent to all that the _Czarina Catherine_ would not sail as +was expected. A thin mist began to creep up from the river, and it grew, +and grew; till soon a dense fog enveloped the ship and all around her. +The captain swore polyglot--very polyglot--polyglot with bloom and +blood; but he could do nothing. The water rose and rose; and he began to +fear that he would lose the tide altogether. He was in no friendly mood, +when just at full tide, the thin man came up the gang-plank again and +asked to see where his box had been stowed. Then the captain replied +that he wished that he and his box--old and with much bloom and +blood--were in hell. But the thin man did not be offend, and went down +with the mate and saw where it was place, and came up and stood awhile +on deck in fog. He must have come off by himself, for none notice him. +Indeed they thought not of him; for soon the fog begin to melt away, and +all was clear again. My friends of the thirst and the language that was +of bloom and blood laughed, as they told how the captain’s swears +exceeded even his usual polyglot, and was more than ever full of +picturesque, when on questioning other mariners who were on movement up +and down on the river that hour, he found that few of them had seen any +of fog at all, except where it lay round the wharf. However, the ship +went out on the ebb tide; and was doubtless by morning far down the +river mouth. She was by then, when they told us, well out to sea. + +“And so, my dear Madam Mina, it is that we have to rest for a time, for +our enemy is on the sea, with the fog at his command, on his way to the +Danube mouth. To sail a ship takes time, go she never so quick; and when +we start we go on land more quick, and we meet him there. Our best hope +is to come on him when in the box between sunrise and sunset; for then +he can make no struggle, and we may deal with him as we should. There +are days for us, in which we can make ready our plan. We know all about +where he go; for we have seen the owner of the ship, who have shown us +invoices and all papers that can be. The box we seek is to be landed in +Varna, and to be given to an agent, one Ristics who will there present +his credentials; and so our merchant friend will have done his part. +When he ask if there be any wrong, for that so, he can telegraph and +have inquiry made at Varna, we say ‘no’; for what is to be done is not +for police or of the customs. It must be done by us alone and in our own +way.” + +When Dr. Van Helsing had done speaking, I asked him if he were certain +that the Count had remained on board the ship. He replied: “We have the +best proof of that: your own evidence, when in the hypnotic trance this +morning.” I asked him again if it were really necessary that they should +pursue the Count, for oh! I dread Jonathan leaving me, and I know that +he would surely go if the others went. He answered in growing passion, +at first quietly. As he went on, however, he grew more angry and more +forceful, till in the end we could not but see wherein was at least some +of that personal dominance which made him so long a master amongst +men:-- + +“Yes, it is necessary--necessary--necessary! For your sake in the first, +and then for the sake of humanity. This monster has done much harm +already, in the narrow scope where he find himself, and in the short +time when as yet he was only as a body groping his so small measure in +darkness and not knowing. All this have I told these others; you, my +dear Madam Mina, will learn it in the phonograph of my friend John, or +in that of your husband. I have told them how the measure of leaving his +own barren land--barren of peoples--and coming to a new land where life +of man teems till they are like the multitude of standing corn, was the +work of centuries. Were another of the Un-Dead, like him, to try to do +what he has done, perhaps not all the centuries of the world that have +been, or that will be, could aid him. With this one, all the forces of +nature that are occult and deep and strong must have worked together in +some wondrous way. The very place, where he have been alive, Un-Dead for +all these centuries, is full of strangeness of the geologic and chemical +world. There are deep caverns and fissures that reach none know whither. +There have been volcanoes, some of whose openings still send out waters +of strange properties, and gases that kill or make to vivify. Doubtless, +there is something magnetic or electric in some of these combinations of +occult forces which work for physical life in strange way; and in +himself were from the first some great qualities. In a hard and warlike +time he was celebrate that he have more iron nerve, more subtle brain, +more braver heart, than any man. In him some vital principle have in +strange way found their utmost; and as his body keep strong and grow and +thrive, so his brain grow too. All this without that diabolic aid which +is surely to him; for it have to yield to the powers that come from, +and are, symbolic of good. And now this is what he is to us. He have +infect you--oh, forgive me, my dear, that I must say such; but it is for +good of you that I speak. He infect you in such wise, that even if he do +no more, you have only to live--to live in your own old, sweet way; and +so in time, death, which is of man’s common lot and with God’s sanction, +shall make you like to him. This must not be! We have sworn together +that it must not. Thus are we ministers of God’s own wish: that the +world, and men for whom His Son die, will not be given over to monsters, +whose very existence would defame Him. He have allowed us to redeem one +soul already, and we go out as the old knights of the Cross to redeem +more. Like them we shall travel towards the sunrise; and like them, if +we fall, we fall in good cause.” He paused and I said:-- + +“But will not the Count take his rebuff wisely? Since he has been driven +from England, will he not avoid it, as a tiger does the village from +which he has been hunted?” + +“Aha!” he said, “your simile of the tiger good, for me, and I shall +adopt him. Your man-eater, as they of India call the tiger who has once +tasted blood of the human, care no more for the other prey, but prowl +unceasing till he get him. This that we hunt from our village is a +tiger, too, a man-eater, and he never cease to prowl. Nay, in himself he +is not one to retire and stay afar. In his life, his living life, he go +over the Turkey frontier and attack his enemy on his own ground; he be +beaten back, but did he stay? No! He come again, and again, and again. +Look at his persistence and endurance. With the child-brain that was to +him he have long since conceive the idea of coming to a great city. What +does he do? He find out the place of all the world most of promise for +him. Then he deliberately set himself down to prepare for the task. He +find in patience just how is his strength, and what are his powers. He +study new tongues. He learn new social life; new environment of old +ways, the politic, the law, the finance, the science, the habit of a new +land and a new people who have come to be since he was. His glimpse that +he have had, whet his appetite only and enkeen his desire. Nay, it help +him to grow as to his brain; for it all prove to him how right he was at +the first in his surmises. He have done this alone; all alone! from a +ruin tomb in a forgotten land. What more may he not do when the greater +world of thought is open to him. He that can smile at death, as we know +him; who can flourish in the midst of diseases that kill off whole +peoples. Oh, if such an one was to come from God, and not the Devil, +what a force for good might he not be in this old world of ours. But we +are pledged to set the world free. Our toil must be in silence, and our +efforts all in secret; for in this enlightened age, when men believe not +even what they see, the doubting of wise men would be his greatest +strength. It would be at once his sheath and his armour, and his weapons +to destroy us, his enemies, who are willing to peril even our own souls +for the safety of one we love--for the good of mankind, and for the +honour and glory of God.” + +After a general discussion it was determined that for to-night nothing +be definitely settled; that we should all sleep on the facts, and try to +think out the proper conclusions. To-morrow, at breakfast, we are to +meet again, and, after making our conclusions known to one another, we +shall decide on some definite cause of action. + + * * * * * + +I feel a wonderful peace and rest to-night. It is as if some haunting +presence were removed from me. Perhaps ... + +My surmise was not finished, could not be; for I caught sight in the +mirror of the red mark upon my forehead; and I knew that I was still +unclean. + + +_Dr. Seward’s Diary._ + +_5 October._--We all rose early, and I think that sleep did much for +each and all of us. When we met at early breakfast there was more +general cheerfulness than any of us had ever expected to experience +again. + +It is really wonderful how much resilience there is in human nature. Let +any obstructing cause, no matter what, be removed in any way--even by +death--and we fly back to first principles of hope and enjoyment. More +than once as we sat around the table, my eyes opened in wonder whether +the whole of the past days had not been a dream. It was only when I +caught sight of the red blotch on Mrs. Harker’s forehead that I was +brought back to reality. Even now, when I am gravely revolving the +matter, it is almost impossible to realise that the cause of all our +trouble is still existent. Even Mrs. Harker seems to lose sight of her +trouble for whole spells; it is only now and again, when something +recalls it to her mind, that she thinks of her terrible scar. We are to +meet here in my study in half an hour and decide on our course of +action. I see only one immediate difficulty, I know it by instinct +rather than reason: we shall all have to speak frankly; and yet I fear +that in some mysterious way poor Mrs. Harker’s tongue is tied. I _know_ +that she forms conclusions of her own, and from all that has been I can +guess how brilliant and how true they must be; but she will not, or +cannot, give them utterance. I have mentioned this to Van Helsing, and +he and I are to talk it over when we are alone. I suppose it is some of +that horrid poison which has got into her veins beginning to work. The +Count had his own purposes when he gave her what Van Helsing called “the +Vampire’s baptism of blood.” Well, there may be a poison that distils +itself out of good things; in an age when the existence of ptomaines is +a mystery we should not wonder at anything! One thing I know: that if my +instinct be true regarding poor Mrs. Harker’s silences, then there is a +terrible difficulty--an unknown danger--in the work before us. The same +power that compels her silence may compel her speech. I dare not think +further; for so I should in my thoughts dishonour a noble woman! + +Van Helsing is coming to my study a little before the others. I shall +try to open the subject with him. + + * * * * * + +_Later._--When the Professor came in, we talked over the state of +things. I could see that he had something on his mind which he wanted to +say, but felt some hesitancy about broaching the subject. After beating +about the bush a little, he said suddenly:-- + +“Friend John, there is something that you and I must talk of alone, just +at the first at any rate. Later, we may have to take the others into our +confidence”; then he stopped, so I waited; he went on:-- + +“Madam Mina, our poor, dear Madam Mina is changing.” A cold shiver ran +through me to find my worst fears thus endorsed. Van Helsing +continued:-- + +“With the sad experience of Miss Lucy, we must this time be warned +before things go too far. Our task is now in reality more difficult than +ever, and this new trouble makes every hour of the direst importance. I +can see the characteristics of the vampire coming in her face. It is now +but very, very slight; but it is to be seen if we have eyes to notice +without to prejudge. Her teeth are some sharper, and at times her eyes +are more hard. But these are not all, there is to her the silence now +often; as so it was with Miss Lucy. She did not speak, even when she +wrote that which she wished to be known later. Now my fear is this. If +it be that she can, by our hypnotic trance, tell what the Count see and +hear, is it not more true that he who have hypnotise her first, and who +have drink of her very blood and make her drink of his, should, if he +will, compel her mind to disclose to him that which she know?” I nodded +acquiescence; he went on:-- + +“Then, what we must do is to prevent this; we must keep her ignorant of +our intent, and so she cannot tell what she know not. This is a painful +task! Oh, so painful that it heart-break me to think of; but it must be. +When to-day we meet, I must tell her that for reason which we will not +to speak she must not more be of our council, but be simply guarded by +us.” He wiped his forehead, which had broken out in profuse perspiration +at the thought of the pain which he might have to inflict upon the poor +soul already so tortured. I knew that it would be some sort of comfort +to him if I told him that I also had come to the same conclusion; for at +any rate it would take away the pain of doubt. I told him, and the +effect was as I expected. + +It is now close to the time of our general gathering. Van Helsing has +gone away to prepare for the meeting, and his painful part of it. I +really believe his purpose is to be able to pray alone. + + * * * * * + +_Later._--At the very outset of our meeting a great personal relief was +experienced by both Van Helsing and myself. Mrs. Harker had sent a +message by her husband to say that she would not join us at present, as +she thought it better that we should be free to discuss our movements +without her presence to embarrass us. The Professor and I looked at each +other for an instant, and somehow we both seemed relieved. For my own +part, I thought that if Mrs. Harker realised the danger herself, it was +much pain as well as much danger averted. Under the circumstances we +agreed, by a questioning look and answer, with finger on lip, to +preserve silence in our suspicions, until we should have been able to +confer alone again. We went at once into our Plan of Campaign. Van +Helsing roughly put the facts before us first:-- + +“The _Czarina Catherine_ left the Thames yesterday morning. It will take +her at the quickest speed she has ever made at least three weeks to +reach Varna; but we can travel overland to the same place in three days. +Now, if we allow for two days less for the ship’s voyage, owing to such +weather influences as we know that the Count can bring to bear; and if +we allow a whole day and night for any delays which may occur to us, +then we have a margin of nearly two weeks. Thus, in order to be quite +safe, we must leave here on 17th at latest. Then we shall at any rate +be in Varna a day before the ship arrives, and able to make such +preparations as may be necessary. Of course we shall all go armed--armed +against evil things, spiritual as well as physical.” Here Quincey Morris +added:-- + +“I understand that the Count comes from a wolf country, and it may be +that he shall get there before us. I propose that we add Winchesters to +our armament. I have a kind of belief in a Winchester when there is any +trouble of that sort around. Do you remember, Art, when we had the pack +after us at Tobolsk? What wouldn’t we have given then for a repeater +apiece!” + +“Good!” said Van Helsing, “Winchesters it shall be. Quincey’s head is +level at all times, but most so when there is to hunt, metaphor be more +dishonour to science than wolves be of danger to man. In the meantime we +can do nothing here; and as I think that Varna is not familiar to any of +us, why not go there more soon? It is as long to wait here as there. +To-night and to-morrow we can get ready, and then, if all be well, we +four can set out on our journey.” + +“We four?” said Harker interrogatively, looking from one to another of +us. + +“Of course!” answered the Professor quickly, “you must remain to take +care of your so sweet wife!” Harker was silent for awhile and then said +in a hollow voice:-- + +“Let us talk of that part of it in the morning. I want to consult with +Mina.” I thought that now was the time for Van Helsing to warn him not +to disclose our plans to her; but he took no notice. I looked at him +significantly and coughed. For answer he put his finger on his lips and +turned away. + + +_Jonathan Harker’s Journal._ + +_5 October, afternoon._--For some time after our meeting this morning I +could not think. The new phases of things leave my mind in a state of +wonder which allows no room for active thought. Mina’s determination not +to take any part in the discussion set me thinking; and as I could not +argue the matter with her, I could only guess. I am as far as ever from +a solution now. The way the others received it, too, puzzled me; the +last time we talked of the subject we agreed that there was to be no +more concealment of anything amongst us. Mina is sleeping now, calmly +and sweetly like a little child. Her lips are curved and her face beams +with happiness. Thank God, there are such moments still for her. + + * * * * * + +_Later._--How strange it all is. I sat watching Mina’s happy sleep, and +came as near to being happy myself as I suppose I shall ever be. As the +evening drew on, and the earth took its shadows from the sun sinking +lower, the silence of the room grew more and more solemn to me. All at +once Mina opened her eyes, and looking at me tenderly, said:-- + +“Jonathan, I want you to promise me something on your word of honour. A +promise made to me, but made holily in God’s hearing, and not to be +broken though I should go down on my knees and implore you with bitter +tears. Quick, you must make it to me at once.” + +“Mina,” I said, “a promise like that, I cannot make at once. I may have +no right to make it.” + +“But, dear one,” she said, with such spiritual intensity that her eyes +were like pole stars, “it is I who wish it; and it is not for myself. +You can ask Dr. Van Helsing if I am not right; if he disagrees you may +do as you will. Nay, more, if you all agree, later, you are absolved +from the promise.” + +“I promise!” I said, and for a moment she looked supremely happy; though +to me all happiness for her was denied by the red scar on her forehead. +She said:-- + +“Promise me that you will not tell me anything of the plans formed for +the campaign against the Count. Not by word, or inference, or +implication; not at any time whilst this remains to me!” and she +solemnly pointed to the scar. I saw that she was in earnest, and said +solemnly:-- + +“I promise!” and as I said it I felt that from that instant a door had +been shut between us. + + * * * * * + +_Later, midnight._--Mina has been bright and cheerful all the evening. +So much so that all the rest seemed to take courage, as if infected +somewhat with her gaiety; as a result even I myself felt as if the pall +of gloom which weighs us down were somewhat lifted. We all retired +early. Mina is now sleeping like a little child; it is a wonderful thing +that her faculty of sleep remains to her in the midst of her terrible +trouble. Thank God for it, for then at least she can forget her care. +Perhaps her example may affect me as her gaiety did to-night. I shall +try it. Oh! for a dreamless sleep. + + * * * * * + +_6 October, morning._--Another surprise. Mina woke me early, about the +same time as yesterday, and asked me to bring Dr. Van Helsing. I thought +that it was another occasion for hypnotism, and without question went +for the Professor. He had evidently expected some such call, for I found +him dressed in his room. His door was ajar, so that he could hear the +opening of the door of our room. He came at once; as he passed into the +room, he asked Mina if the others might come, too. + +“No,” she said quite simply, “it will not be necessary. You can tell +them just as well. I must go with you on your journey.” + +Dr. Van Helsing was as startled as I was. After a moment’s pause he +asked:-- + +“But why?” + +“You must take me with you. I am safer with you, and you shall be safer, +too.” + +“But why, dear Madam Mina? You know that your safety is our solemnest +duty. We go into danger, to which you are, or may be, more liable than +any of us from--from circumstances--things that have been.” He paused, +embarrassed. + +As she replied, she raised her finger and pointed to her forehead:-- + +“I know. That is why I must go. I can tell you now, whilst the sun is +coming up; I may not be able again. I know that when the Count wills me +I must go. I know that if he tells me to come in secret, I must come by +wile; by any device to hoodwink--even Jonathan.” God saw the look that +she turned on me as she spoke, and if there be indeed a Recording Angel +that look is noted to her everlasting honour. I could only clasp her +hand. I could not speak; my emotion was too great for even the relief of +tears. She went on:-- + +“You men are brave and strong. You are strong in your numbers, for you +can defy that which would break down the human endurance of one who had +to guard alone. Besides, I may be of service, since you can hypnotise me +and so learn that which even I myself do not know.” Dr. Van Helsing said +very gravely:-- + +“Madam Mina, you are, as always, most wise. You shall with us come; and +together we shall do that which we go forth to achieve.” When he had +spoken, Mina’s long spell of silence made me look at her. She had fallen +back on her pillow asleep; she did not even wake when I had pulled up +the blind and let in the sunlight which flooded the room. Van Helsing +motioned to me to come with him quietly. We went to his room, and within +a minute Lord Godalming, Dr. Seward, and Mr. Morris were with us also. +He told them what Mina had said, and went on:-- + +“In the morning we shall leave for Varna. We have now to deal with a +new factor: Madam Mina. Oh, but her soul is true. It is to her an agony +to tell us so much as she has done; but it is most right, and we are +warned in time. There must be no chance lost, and in Varna we must be +ready to act the instant when that ship arrives.” + +“What shall we do exactly?” asked Mr. Morris laconically. The Professor +paused before replying:-- + +“We shall at the first board that ship; then, when we have identified +the box, we shall place a branch of the wild rose on it. This we shall +fasten, for when it is there none can emerge; so at least says the +superstition. And to superstition must we trust at the first; it was +man’s faith in the early, and it have its root in faith still. Then, +when we get the opportunity that we seek, when none are near to see, we +shall open the box, and--and all will be well.” + +“I shall not wait for any opportunity,” said Morris. “When I see the box +I shall open it and destroy the monster, though there were a thousand +men looking on, and if I am to be wiped out for it the next moment!” I +grasped his hand instinctively and found it as firm as a piece of steel. +I think he understood my look; I hope he did. + +“Good boy,” said Dr. Van Helsing. “Brave boy. Quincey is all man. God +bless him for it. My child, believe me none of us shall lag behind or +pause from any fear. I do but say what we may do--what we must do. But, +indeed, indeed we cannot say what we shall do. There are so many things +which may happen, and their ways and their ends are so various that +until the moment we may not say. We shall all be armed, in all ways; and +when the time for the end has come, our effort shall not be lack. Now +let us to-day put all our affairs in order. Let all things which touch +on others dear to us, and who on us depend, be complete; for none of us +can tell what, or when, or how, the end may be. As for me, my own +affairs are regulate; and as I have nothing else to do, I shall go make +arrangements for the travel. I shall have all tickets and so forth for +our journey.” + +There was nothing further to be said, and we parted. I shall now settle +up all my affairs of earth, and be ready for whatever may come.... + + * * * * * + +_Later._--It is all done; my will is made, and all complete. Mina if she +survive is my sole heir. If it should not be so, then the others who +have been so good to us shall have remainder. + +It is now drawing towards the sunset; Mina’s uneasiness calls my +attention to it. I am sure that there is something on her mind which the +time of exact sunset will reveal. These occasions are becoming harrowing +times for us all, for each sunrise and sunset opens up some new +danger--some new pain, which, however, may in God’s will be means to a +good end. I write all these things in the diary since my darling must +not hear them now; but if it may be that she can see them again, they +shall be ready. + +She is calling to me. + + + + +CHAPTER XXV + +DR. SEWARD’S DIARY + + +_11 October, Evening._--Jonathan Harker has asked me to note this, as he +says he is hardly equal to the task, and he wants an exact record kept. + +I think that none of us were surprised when we were asked to see Mrs. +Harker a little before the time of sunset. We have of late come to +understand that sunrise and sunset are to her times of peculiar freedom; +when her old self can be manifest without any controlling force subduing +or restraining her, or inciting her to action. This mood or condition +begins some half hour or more before actual sunrise or sunset, and lasts +till either the sun is high, or whilst the clouds are still aglow with +the rays streaming above the horizon. At first there is a sort of +negative condition, as if some tie were loosened, and then the absolute +freedom quickly follows; when, however, the freedom ceases the +change-back or relapse comes quickly, preceded only by a spell of +warning silence. + +To-night, when we met, she was somewhat constrained, and bore all the +signs of an internal struggle. I put it down myself to her making a +violent effort at the earliest instant she could do so. A very few +minutes, however, gave her complete control of herself; then, motioning +her husband to sit beside her on the sofa where she was half reclining, +she made the rest of us bring chairs up close. Taking her husband’s hand +in hers began:-- + +“We are all here together in freedom, for perhaps the last time! I know, +dear; I know that you will always be with me to the end.” This was to +her husband whose hand had, as we could see, tightened upon hers. “In +the morning we go out upon our task, and God alone knows what may be in +store for any of us. You are going to be so good to me as to take me +with you. I know that all that brave earnest men can do for a poor weak +woman, whose soul perhaps is lost--no, no, not yet, but is at any rate +at stake--you will do. But you must remember that I am not as you are. +There is a poison in my blood, in my soul, which may destroy me; which +must destroy me, unless some relief comes to us. Oh, my friends, you +know as well as I do, that my soul is at stake; and though I know there +is one way out for me, you must not and I must not take it!” She looked +appealingly to us all in turn, beginning and ending with her husband. + +“What is that way?” asked Van Helsing in a hoarse voice. “What is that +way, which we must not--may not--take?” + +“That I may die now, either by my own hand or that of another, before +the greater evil is entirely wrought. I know, and you know, that were I +once dead you could and would set free my immortal spirit, even as you +did my poor Lucy’s. Were death, or the fear of death, the only thing +that stood in the way I would not shrink to die here, now, amidst the +friends who love me. But death is not all. I cannot believe that to die +in such a case, when there is hope before us and a bitter task to be +done, is God’s will. Therefore, I, on my part, give up here the +certainty of eternal rest, and go out into the dark where may be the +blackest things that the world or the nether world holds!” We were all +silent, for we knew instinctively that this was only a prelude. The +faces of the others were set and Harker’s grew ashen grey; perhaps he +guessed better than any of us what was coming. She continued:-- + +“This is what I can give into the hotch-pot.” I could not but note the +quaint legal phrase which she used in such a place, and with all +seriousness. “What will each of you give? Your lives I know,” she went +on quickly, “that is easy for brave men. Your lives are God’s, and you +can give them back to Him; but what will you give to me?” She looked +again questioningly, but this time avoided her husband’s face. Quincey +seemed to understand; he nodded, and her face lit up. “Then I shall tell +you plainly what I want, for there must be no doubtful matter in this +connection between us now. You must promise me, one and all--even you, +my beloved husband--that, should the time come, you will kill me.” + +“What is that time?” The voice was Quincey’s, but it was low and +strained. + +“When you shall be convinced that I am so changed that it is better that +I die than I may live. When I am thus dead in the flesh, then you will, +without a moment’s delay, drive a stake through me and cut off my head; +or do whatever else may be wanting to give me rest!” + +Quincey was the first to rise after the pause. He knelt down before her +and taking her hand in his said solemnly:-- + +“I’m only a rough fellow, who hasn’t, perhaps, lived as a man should to +win such a distinction, but I swear to you by all that I hold sacred and +dear that, should the time ever come, I shall not flinch from the duty +that you have set us. And I promise you, too, that I shall make all +certain, for if I am only doubtful I shall take it that the time has +come!” + +“My true friend!” was all she could say amid her fast-falling tears, as, +bending over, she kissed his hand. + +“I swear the same, my dear Madam Mina!” said Van Helsing. + +“And I!” said Lord Godalming, each of them in turn kneeling to her to +take the oath. I followed, myself. Then her husband turned to her +wan-eyed and with a greenish pallor which subdued the snowy whiteness of +his hair, and asked:-- + +“And must I, too, make such a promise, oh, my wife?” + +“You too, my dearest,” she said, with infinite yearning of pity in her +voice and eyes. “You must not shrink. You are nearest and dearest and +all the world to me; our souls are knit into one, for all life and all +time. Think, dear, that there have been times when brave men have killed +their wives and their womenkind, to keep them from falling into the +hands of the enemy. Their hands did not falter any the more because +those that they loved implored them to slay them. It is men’s duty +towards those whom they love, in such times of sore trial! And oh, my +dear, if it is to be that I must meet death at any hand, let it be at +the hand of him that loves me best. Dr. Van Helsing, I have not +forgotten your mercy in poor Lucy’s case to him who loved”--she stopped +with a flying blush, and changed her phrase--“to him who had best right +to give her peace. If that time shall come again, I look to you to make +it a happy memory of my husband’s life that it was his loving hand which +set me free from the awful thrall upon me.” + +“Again I swear!” came the Professor’s resonant voice. Mrs. Harker +smiled, positively smiled, as with a sigh of relief she leaned back and +said:-- + +“And now one word of warning, a warning which you must never forget: +this time, if it ever come, may come quickly and unexpectedly, and in +such case you must lose no time in using your opportunity. At such a +time I myself might be--nay! if the time ever comes, _shall be_--leagued +with your enemy against you.” + +“One more request;” she became very solemn as she said this, “it is not +vital and necessary like the other, but I want you to do one thing for +me, if you will.” We all acquiesced, but no one spoke; there was no need +to speak:-- + +“I want you to read the Burial Service.” She was interrupted by a deep +groan from her husband; taking his hand in hers, she held it over her +heart, and continued: “You must read it over me some day. Whatever may +be the issue of all this fearful state of things, it will be a sweet +thought to all or some of us. You, my dearest, will I hope read it, for +then it will be in your voice in my memory for ever--come what may!” + +“But oh, my dear one,” he pleaded, “death is afar off from you.” + +“Nay,” she said, holding up a warning hand. “I am deeper in death at +this moment than if the weight of an earthly grave lay heavy upon me!” + +“Oh, my wife, must I read it?” he said, before he began. + +“It would comfort me, my husband!” was all she said; and he began to +read when she had got the book ready. + +“How can I--how could any one--tell of that strange scene, its +solemnity, its gloom, its sadness, its horror; and, withal, its +sweetness. Even a sceptic, who can see nothing but a travesty of bitter +truth in anything holy or emotional, would have been melted to the heart +had he seen that little group of loving and devoted friends kneeling +round that stricken and sorrowing lady; or heard the tender passion of +her husband’s voice, as in tones so broken with emotion that often he +had to pause, he read the simple and beautiful service from the Burial +of the Dead. I--I cannot go on--words--and--v-voice--f-fail m-me!” + + * * * * * + +She was right in her instinct. Strange as it all was, bizarre as it may +hereafter seem even to us who felt its potent influence at the time, it +comforted us much; and the silence, which showed Mrs. Harker’s coming +relapse from her freedom of soul, did not seem so full of despair to any +of us as we had dreaded. + + +_Jonathan Harker’s Journal._ + +_15 October, Varna._--We left Charing Cross on the morning of the 12th, +got to Paris the same night, and took the places secured for us in the +Orient Express. We travelled night and day, arriving here at about five +o’clock. Lord Godalming went to the Consulate to see if any telegram had +arrived for him, whilst the rest of us came on to this hotel--“the +Odessus.” The journey may have had incidents; I was, however, too eager +to get on, to care for them. Until the _Czarina Catherine_ comes into +port there will be no interest for me in anything in the wide world. +Thank God! Mina is well, and looks to be getting stronger; her colour is +coming back. She sleeps a great deal; throughout the journey she slept +nearly all the time. Before sunrise and sunset, however, she is very +wakeful and alert; and it has become a habit for Van Helsing to +hypnotise her at such times. At first, some effort was needed, and he +had to make many passes; but now, she seems to yield at once, as if by +habit, and scarcely any action is needed. He seems to have power at +these particular moments to simply will, and her thoughts obey him. He +always asks her what she can see and hear. She answers to the first:-- + +“Nothing; all is dark.” And to the second:-- + +“I can hear the waves lapping against the ship, and the water rushing +by. Canvas and cordage strain and masts and yards creak. The wind is +high--I can hear it in the shrouds, and the bow throws back the foam.” +It is evident that the _Czarina Catherine_ is still at sea, hastening on +her way to Varna. Lord Godalming has just returned. He had four +telegrams, one each day since we started, and all to the same effect: +that the _Czarina Catherine_ had not been reported to Lloyd’s from +anywhere. He had arranged before leaving London that his agent should +send him every day a telegram saying if the ship had been reported. He +was to have a message even if she were not reported, so that he might be +sure that there was a watch being kept at the other end of the wire. + +We had dinner and went to bed early. To-morrow we are to see the +Vice-Consul, and to arrange, if we can, about getting on board the ship +as soon as she arrives. Van Helsing says that our chance will be to get +on the boat between sunrise and sunset. The Count, even if he takes the +form of a bat, cannot cross the running water of his own volition, and +so cannot leave the ship. As he dare not change to man’s form without +suspicion--which he evidently wishes to avoid--he must remain in the +box. If, then, we can come on board after sunrise, he is at our mercy; +for we can open the box and make sure of him, as we did of poor Lucy, +before he wakes. What mercy he shall get from us will not count for +much. We think that we shall not have much trouble with officials or the +seamen. Thank God! this is the country where bribery can do anything, +and we are well supplied with money. We have only to make sure that the +ship cannot come into port between sunset and sunrise without our being +warned, and we shall be safe. Judge Moneybag will settle this case, I +think! + + * * * * * + +_16 October._--Mina’s report still the same: lapping waves and rushing +water, darkness and favouring winds. We are evidently in good time, and +when we hear of the _Czarina Catherine_ we shall be ready. As she must +pass the Dardanelles we are sure to have some report. + + * * * * * + +_17 October._--Everything is pretty well fixed now, I think, to welcome +the Count on his return from his tour. Godalming told the shippers that +he fancied that the box sent aboard might contain something stolen from +a friend of his, and got a half consent that he might open it at his own +risk. The owner gave him a paper telling the Captain to give him every +facility in doing whatever he chose on board the ship, and also a +similar authorisation to his agent at Varna. We have seen the agent, who +was much impressed with Godalming’s kindly manner to him, and we are all +satisfied that whatever he can do to aid our wishes will be done. We +have already arranged what to do in case we get the box open. If the +Count is there, Van Helsing and Seward will cut off his head at once and +drive a stake through his heart. Morris and Godalming and I shall +prevent interference, even if we have to use the arms which we shall +have ready. The Professor says that if we can so treat the Count’s body, +it will soon after fall into dust. In such case there would be no +evidence against us, in case any suspicion of murder were aroused. But +even if it were not, we should stand or fall by our act, and perhaps +some day this very script may be evidence to come between some of us and +a rope. For myself, I should take the chance only too thankfully if it +were to come. We mean to leave no stone unturned to carry out our +intent. We have arranged with certain officials that the instant the +_Czarina Catherine_ is seen, we are to be informed by a special +messenger. + + * * * * * + +_24 October._--A whole week of waiting. Daily telegrams to Godalming, +but only the same story: “Not yet reported.” Mina’s morning and evening +hypnotic answer is unvaried: lapping waves, rushing water, and creaking +masts. + +_Telegram, October 24th._ + +_Rufus Smith, Lloyd’s, London, to Lord Godalming, care of H. B. M. +Vice-Consul, Varna._ + +“_Czarina Catherine_ reported this morning from Dardanelles.” + + +_Dr. Seward’s Diary._ + +_25 October._--How I miss my phonograph! To write diary with a pen is +irksome to me; but Van Helsing says I must. We were all wild with +excitement yesterday when Godalming got his telegram from Lloyd’s. I +know now what men feel in battle when the call to action is heard. Mrs. +Harker, alone of our party, did not show any signs of emotion. After +all, it is not strange that she did not; for we took special care not to +let her know anything about it, and we all tried not to show any +excitement when we were in her presence. In old days she would, I am +sure, have noticed, no matter how we might have tried to conceal it; but +in this way she is greatly changed during the past three weeks. The +lethargy grows upon her, and though she seems strong and well, and is +getting back some of her colour, Van Helsing and I are not satisfied. We +talk of her often; we have not, however, said a word to the others. It +would break poor Harker’s heart--certainly his nerve--if he knew that we +had even a suspicion on the subject. Van Helsing examines, he tells me, +her teeth very carefully, whilst she is in the hypnotic condition, for +he says that so long as they do not begin to sharpen there is no active +danger of a change in her. If this change should come, it would be +necessary to take steps!... We both know what those steps would have to +be, though we do not mention our thoughts to each other. We should +neither of us shrink from the task--awful though it be to contemplate. +“Euthanasia” is an excellent and a comforting word! I am grateful to +whoever invented it. + +It is only about 24 hours’ sail from the Dardanelles to here, at the +rate the _Czarina Catherine_ has come from London. She should therefore +arrive some time in the morning; but as she cannot possibly get in +before then, we are all about to retire early. We shall get up at one +o’clock, so as to be ready. + + * * * * * + +_25 October, Noon_.--No news yet of the ship’s arrival. Mrs. Harker’s +hypnotic report this morning was the same as usual, so it is possible +that we may get news at any moment. We men are all in a fever of +excitement, except Harker, who is calm; his hands are cold as ice, and +an hour ago I found him whetting the edge of the great Ghoorka knife +which he now always carries with him. It will be a bad lookout for the +Count if the edge of that “Kukri” ever touches his throat, driven by +that stern, ice-cold hand! + +Van Helsing and I were a little alarmed about Mrs. Harker to-day. About +noon she got into a sort of lethargy which we did not like; although we +kept silence to the others, we were neither of us happy about it. She +had been restless all the morning, so that we were at first glad to know +that she was sleeping. When, however, her husband mentioned casually +that she was sleeping so soundly that he could not wake her, we went to +her room to see for ourselves. She was breathing naturally and looked so +well and peaceful that we agreed that the sleep was better for her than +anything else. Poor girl, she has so much to forget that it is no wonder +that sleep, if it brings oblivion to her, does her good. + + * * * * * + +_Later._--Our opinion was justified, for when after a refreshing sleep +of some hours she woke up, she seemed brighter and better than she had +been for days. At sunset she made the usual hypnotic report. Wherever he +may be in the Black Sea, the Count is hurrying to his destination. To +his doom, I trust! + + * * * * * + +_26 October._--Another day and no tidings of the _Czarina Catherine_. +She ought to be here by now. That she is still journeying _somewhere_ is +apparent, for Mrs. Harker’s hypnotic report at sunrise was still the +same. It is possible that the vessel may be lying by, at times, for fog; +some of the steamers which came in last evening reported patches of fog +both to north and south of the port. We must continue our watching, as +the ship may now be signalled any moment. + + * * * * * + +_27 October, Noon._--Most strange; no news yet of the ship we wait for. +Mrs. Harker reported last night and this morning as usual: “lapping +waves and rushing water,” though she added that “the waves were very +faint.” The telegrams from London have been the same: “no further +report.” Van Helsing is terribly anxious, and told me just now that he +fears the Count is escaping us. He added significantly:-- + +“I did not like that lethargy of Madam Mina’s. Souls and memories can do +strange things during trance.” I was about to ask him more, but Harker +just then came in, and he held up a warning hand. We must try to-night +at sunset to make her speak more fully when in her hypnotic state. + + * * * * * + + _28 October._--Telegram. _Rufus Smith, London, to Lord Godalming, + care H. B. M. Vice Consul, Varna._ + + “_Czarina Catherine_ reported entering Galatz at one o’clock + to-day.” + + +_Dr. Seward’s Diary._ + +_28 October._--When the telegram came announcing the arrival in Galatz I +do not think it was such a shock to any of us as might have been +expected. True, we did not know whence, or how, or when, the bolt would +come; but I think we all expected that something strange would happen. +The delay of arrival at Varna made us individually satisfied that things +would not be just as we had expected; we only waited to learn where the +change would occur. None the less, however, was it a surprise. I suppose +that nature works on such a hopeful basis that we believe against +ourselves that things will be as they ought to be, not as we should know +that they will be. Transcendentalism is a beacon to the angels, even if +it be a will-o’-the-wisp to man. It was an odd experience and we all +took it differently. Van Helsing raised his hand over his head for a +moment, as though in remonstrance with the Almighty; but he said not a +word, and in a few seconds stood up with his face sternly set. Lord +Godalming grew very pale, and sat breathing heavily. I was myself half +stunned and looked in wonder at one after another. Quincey Morris +tightened his belt with that quick movement which I knew so well; in our +old wandering days it meant “action.” Mrs. Harker grew ghastly white, so +that the scar on her forehead seemed to burn, but she folded her hands +meekly and looked up in prayer. Harker smiled--actually smiled--the +dark, bitter smile of one who is without hope; but at the same time his +action belied his words, for his hands instinctively sought the hilt of +the great Kukri knife and rested there. “When does the next train start +for Galatz?” said Van Helsing to us generally. + +“At 6:30 to-morrow morning!” We all started, for the answer came from +Mrs. Harker. + +“How on earth do you know?” said Art. + +“You forget--or perhaps you do not know, though Jonathan does and so +does Dr. Van Helsing--that I am the train fiend. At home in Exeter I +always used to make up the time-tables, so as to be helpful to my +husband. I found it so useful sometimes, that I always make a study of +the time-tables now. I knew that if anything were to take us to Castle +Dracula we should go by Galatz, or at any rate through Bucharest, so I +learned the times very carefully. Unhappily there are not many to learn, +as the only train to-morrow leaves as I say.” + +“Wonderful woman!” murmured the Professor. + +“Can’t we get a special?” asked Lord Godalming. Van Helsing shook his +head: “I fear not. This land is very different from yours or mine; even +if we did have a special, it would probably not arrive as soon as our +regular train. Moreover, we have something to prepare. We must think. +Now let us organize. You, friend Arthur, go to the train and get the +tickets and arrange that all be ready for us to go in the morning. Do +you, friend Jonathan, go to the agent of the ship and get from him +letters to the agent in Galatz, with authority to make search the ship +just as it was here. Morris Quincey, you see the Vice-Consul, and get +his aid with his fellow in Galatz and all he can do to make our way +smooth, so that no times be lost when over the Danube. John will stay +with Madam Mina and me, and we shall consult. For so if time be long you +may be delayed; and it will not matter when the sun set, since I am here +with Madam to make report.” + +“And I,” said Mrs. Harker brightly, and more like her old self than she +had been for many a long day, “shall try to be of use in all ways, and +shall think and write for you as I used to do. Something is shifting +from me in some strange way, and I feel freer than I have been of late!” +The three younger men looked happier at the moment as they seemed to +realise the significance of her words; but Van Helsing and I, turning to +each other, met each a grave and troubled glance. We said nothing at the +time, however. + +When the three men had gone out to their tasks Van Helsing asked Mrs. +Harker to look up the copy of the diaries and find him the part of +Harker’s journal at the Castle. She went away to get it; when the door +was shut upon her he said to me:-- + +“We mean the same! speak out!” + +“There is some change. It is a hope that makes me sick, for it may +deceive us.” + +“Quite so. Do you know why I asked her to get the manuscript?” + +“No!” said I, “unless it was to get an opportunity of seeing me alone.” + +“You are in part right, friend John, but only in part. I want to tell +you something. And oh, my friend, I am taking a great--a terrible--risk; +but I believe it is right. In the moment when Madam Mina said those +words that arrest both our understanding, an inspiration came to me. In +the trance of three days ago the Count sent her his spirit to read her +mind; or more like he took her to see him in his earth-box in the ship +with water rushing, just as it go free at rise and set of sun. He learn +then that we are here; for she have more to tell in her open life with +eyes to see and ears to hear than he, shut, as he is, in his coffin-box. +Now he make his most effort to escape us. At present he want her not. + +“He is sure with his so great knowledge that she will come at his call; +but he cut her off--take her, as he can do, out of his own power, that +so she come not to him. Ah! there I have hope that our man-brains that +have been of man so long and that have not lost the grace of God, will +come higher than his child-brain that lie in his tomb for centuries, +that grow not yet to our stature, and that do only work selfish and +therefore small. Here comes Madam Mina; not a word to her of her trance! +She know it not; and it would overwhelm her and make despair just when +we want all her hope, all her courage; when most we want all her great +brain which is trained like man’s brain, but is of sweet woman and have +a special power which the Count give her, and which he may not take away +altogether--though he think not so. Hush! let me speak, and you shall +learn. Oh, John, my friend, we are in awful straits. I fear, as I never +feared before. We can only trust the good God. Silence! here she comes!” + +I thought that the Professor was going to break down and have hysterics, +just as he had when Lucy died, but with a great effort he controlled +himself and was at perfect nervous poise when Mrs. Harker tripped into +the room, bright and happy-looking and, in the doing of work, seemingly +forgetful of her misery. As she came in, she handed a number of sheets +of typewriting to Van Helsing. He looked over them gravely, his face +brightening up as he read. Then holding the pages between his finger and +thumb he said:-- + +“Friend John, to you with so much of experience already--and you, too, +dear Madam Mina, that are young--here is a lesson: do not fear ever to +think. A half-thought has been buzzing often in my brain, but I fear to +let him loose his wings. Here now, with more knowledge, I go back to +where that half-thought come from and I find that he be no half-thought +at all; that be a whole thought, though so young that he is not yet +strong to use his little wings. Nay, like the “Ugly Duck” of my friend +Hans Andersen, he be no duck-thought at all, but a big swan-thought that +sail nobly on big wings, when the time come for him to try them. See I +read here what Jonathan have written:-- + +“That other of his race who, in a later age, again and again, brought +his forces over The Great River into Turkey Land; who, when he was +beaten back, came again, and again, and again, though he had to come +alone from the bloody field where his troops were being slaughtered, +since he knew that he alone could ultimately triumph.” + +“What does this tell us? Not much? no! The Count’s child-thought see +nothing; therefore he speak so free. Your man-thought see nothing; my +man-thought see nothing, till just now. No! But there comes another word +from some one who speak without thought because she, too, know not what +it mean--what it _might_ mean. Just as there are elements which rest, +yet when in nature’s course they move on their way and they touch--then +pouf! and there comes a flash of light, heaven wide, that blind and kill +and destroy some; but that show up all earth below for leagues and +leagues. Is it not so? Well, I shall explain. To begin, have you ever +study the philosophy of crime? ‘Yes’ and ‘No.’ You, John, yes; for it is +a study of insanity. You, no, Madam Mina; for crime touch you not--not +but once. Still, your mind works true, and argues not _a particulari ad +universale_. There is this peculiarity in criminals. It is so constant, +in all countries and at all times, that even police, who know not much +from philosophy, come to know it empirically, that _it is_. That is to +be empiric. The criminal always work at one crime--that is the true +criminal who seems predestinate to crime, and who will of none other. +This criminal has not full man-brain. He is clever and cunning and +resourceful; but he be not of man-stature as to brain. He be of +child-brain in much. Now this criminal of ours is predestinate to crime +also; he, too, have child-brain, and it is of the child to do what he +have done. The little bird, the little fish, the little animal learn not +by principle, but empirically; and when he learn to do, then there is to +him the ground to start from to do more. ‘_Dos pou sto_,’ said +Archimedes. ‘Give me a fulcrum, and I shall move the world!’ To do once, +is the fulcrum whereby child-brain become man-brain; and until he have +the purpose to do more, he continue to do the same again every time, +just as he have done before! Oh, my dear, I see that your eyes are +opened, and that to you the lightning flash show all the leagues,” for +Mrs. Harker began to clap her hands and her eyes sparkled. He went on:-- + +“Now you shall speak. Tell us two dry men of science what you see with +those so bright eyes.” He took her hand and held it whilst she spoke. +His finger and thumb closed on her pulse, as I thought instinctively and +unconsciously, as she spoke:-- + +“The Count is a criminal and of criminal type. Nordau and Lombroso would +so classify him, and _quâ_ criminal he is of imperfectly formed mind. +Thus, in a difficulty he has to seek resource in habit. His past is a +clue, and the one page of it that we know--and that from his own +lips--tells that once before, when in what Mr. Morris would call a +‘tight place,’ he went back to his own country from the land he had +tried to invade, and thence, without losing purpose, prepared himself +for a new effort. He came again better equipped for his work; and won. +So he came to London to invade a new land. He was beaten, and when all +hope of success was lost, and his existence in danger, he fled back over +the sea to his home; just as formerly he had fled back over the Danube +from Turkey Land.” + +“Good, good! oh, you so clever lady!” said Van Helsing, +enthusiastically, as he stooped and kissed her hand. A moment later he +said to me, as calmly as though we had been having a sick-room +consultation:-- + +“Seventy-two only; and in all this excitement. I have hope.” Turning to +her again, he said with keen expectation:-- + +“But go on. Go on! there is more to tell if you will. Be not afraid; +John and I know. I do in any case, and shall tell you if you are right. +Speak, without fear!” + +“I will try to; but you will forgive me if I seem egotistical.” + +“Nay! fear not, you must be egotist, for it is of you that we think.” + +“Then, as he is criminal he is selfish; and as his intellect is small +and his action is based on selfishness, he confines himself to one +purpose. That purpose is remorseless. As he fled back over the Danube, +leaving his forces to be cut to pieces, so now he is intent on being +safe, careless of all. So his own selfishness frees my soul somewhat +from the terrible power which he acquired over me on that dreadful +night. I felt it! Oh, I felt it! Thank God, for His great mercy! My soul +is freer than it has been since that awful hour; and all that haunts me +is a fear lest in some trance or dream he may have used my knowledge for +his ends.” The Professor stood up:-- + +“He has so used your mind; and by it he has left us here in Varna, +whilst the ship that carried him rushed through enveloping fog up to +Galatz, where, doubtless, he had made preparation for escaping from us. +But his child-mind only saw so far; and it may be that, as ever is in +God’s Providence, the very thing that the evil-doer most reckoned on for +his selfish good, turns out to be his chiefest harm. The hunter is taken +in his own snare, as the great Psalmist says. For now that he think he +is free from every trace of us all, and that he has escaped us with so +many hours to him, then his selfish child-brain will whisper him to +sleep. He think, too, that as he cut himself off from knowing your mind, +there can be no knowledge of him to you; there is where he fail! That +terrible baptism of blood which he give you makes you free to go to him +in spirit, as you have as yet done in your times of freedom, when the +sun rise and set. At such times you go by my volition and not by his; +and this power to good of you and others, as you have won from your +suffering at his hands. This is now all the more precious that he know +it not, and to guard himself have even cut himself off from his +knowledge of our where. We, however, are not selfish, and we believe +that God is with us through all this blackness, and these many dark +hours. We shall follow him; and we shall not flinch; even if we peril +ourselves that we become like him. Friend John, this has been a great +hour; and it have done much to advance us on our way. You must be scribe +and write him all down, so that when the others return from their work +you can give it to them; then they shall know as we do.” + +And so I have written it whilst we wait their return, and Mrs. Harker +has written with her typewriter all since she brought the MS. to us. + + + + +CHAPTER XXVI + +DR. SEWARD’S DIARY + + +_29 October._--This is written in the train from Varna to Galatz. Last +night we all assembled a little before the time of sunset. Each of us +had done his work as well as he could; so far as thought, and endeavour, +and opportunity go, we are prepared for the whole of our journey, and +for our work when we get to Galatz. When the usual time came round Mrs. +Harker prepared herself for her hypnotic effort; and after a longer and +more serious effort on the part of Van Helsing than has been usually +necessary, she sank into the trance. Usually she speaks on a hint; but +this time the Professor had to ask her questions, and to ask them pretty +resolutely, before we could learn anything; at last her answer came:-- + +“I can see nothing; we are still; there are no waves lapping, but only a +steady swirl of water softly running against the hawser. I can hear +men’s voices calling, near and far, and the roll and creak of oars in +the rowlocks. A gun is fired somewhere; the echo of it seems far away. +There is tramping of feet overhead, and ropes and chains are dragged +along. What is this? There is a gleam of light; I can feel the air +blowing upon me.” + +Here she stopped. She had risen, as if impulsively, from where she lay +on the sofa, and raised both her hands, palms upwards, as if lifting a +weight. Van Helsing and I looked at each other with understanding. +Quincey raised his eyebrows slightly and looked at her intently, whilst +Harker’s hand instinctively closed round the hilt of his Kukri. There +was a long pause. We all knew that the time when she could speak was +passing; but we felt that it was useless to say anything. Suddenly she +sat up, and, as she opened her eyes, said sweetly:-- + +“Would none of you like a cup of tea? You must all be so tired!” We +could only make her happy, and so acquiesced. She bustled off to get +tea; when she had gone Van Helsing said:-- + +“You see, my friends. _He_ is close to land: he has left his +earth-chest. But he has yet to get on shore. In the night he may lie +hidden somewhere; but if he be not carried on shore, or if the ship do +not touch it, he cannot achieve the land. In such case he can, if it be +in the night, change his form and can jump or fly on shore, as he did +at Whitby. But if the day come before he get on shore, then, unless he +be carried he cannot escape. And if he be carried, then the customs men +may discover what the box contain. Thus, in fine, if he escape not on +shore to-night, or before dawn, there will be the whole day lost to him. +We may then arrive in time; for if he escape not at night we shall come +on him in daytime, boxed up and at our mercy; for he dare not be his +true self, awake and visible, lest he be discovered.” + +There was no more to be said, so we waited in patience until the dawn; +at which time we might learn more from Mrs. Harker. + +Early this morning we listened, with breathless anxiety, for her +response in her trance. The hypnotic stage was even longer in coming +than before; and when it came the time remaining until full sunrise was +so short that we began to despair. Van Helsing seemed to throw his whole +soul into the effort; at last, in obedience to his will she made +reply:-- + +“All is dark. I hear lapping water, level with me, and some creaking as +of wood on wood.” She paused, and the red sun shot up. We must wait till +to-night. + +And so it is that we are travelling towards Galatz in an agony of +expectation. We are due to arrive between two and three in the morning; +but already, at Bucharest, we are three hours late, so we cannot +possibly get in till well after sun-up. Thus we shall have two more +hypnotic messages from Mrs. Harker; either or both may possibly throw +more light on what is happening. + + * * * * * + +_Later._--Sunset has come and gone. Fortunately it came at a time when +there was no distraction; for had it occurred whilst we were at a +station, we might not have secured the necessary calm and isolation. +Mrs. Harker yielded to the hypnotic influence even less readily than +this morning. I am in fear that her power of reading the Count’s +sensations may die away, just when we want it most. It seems to me that +her imagination is beginning to work. Whilst she has been in the trance +hitherto she has confined herself to the simplest of facts. If this goes +on it may ultimately mislead us. If I thought that the Count’s power +over her would die away equally with her power of knowledge it would be +a happy thought; but I am afraid that it may not be so. When she did +speak, her words were enigmatical:-- + +“Something is going out; I can feel it pass me like a cold wind. I can +hear, far off, confused sounds--as of men talking in strange tongues, +fierce-falling water, and the howling of wolves.” She stopped and a +shudder ran through her, increasing in intensity for a few seconds, +till, at the end, she shook as though in a palsy. She said no more, even +in answer to the Professor’s imperative questioning. When she woke from +the trance, she was cold, and exhausted, and languid; but her mind was +all alert. She could not remember anything, but asked what she had said; +when she was told, she pondered over it deeply for a long time and in +silence. + + * * * * * + +_30 October, 7 a. m._--We are near Galatz now, and I may not have time +to write later. Sunrise this morning was anxiously looked for by us all. +Knowing of the increasing difficulty of procuring the hypnotic trance, +Van Helsing began his passes earlier than usual. They produced no +effect, however, until the regular time, when she yielded with a still +greater difficulty, only a minute before the sun rose. The Professor +lost no time in his questioning; her answer came with equal quickness:-- + +“All is dark. I hear water swirling by, level with my ears, and the +creaking of wood on wood. Cattle low far off. There is another sound, a +queer one like----” She stopped and grew white, and whiter still. + +“Go on; go on! Speak, I command you!” said Van Helsing in an agonised +voice. At the same time there was despair in his eyes, for the risen sun +was reddening even Mrs. Harker’s pale face. She opened her eyes, and we +all started as she said, sweetly and seemingly with the utmost +unconcern:-- + +“Oh, Professor, why ask me to do what you know I can’t? I don’t remember +anything.” Then, seeing the look of amazement on our faces, she said, +turning from one to the other with a troubled look:-- + +“What have I said? What have I done? I know nothing, only that I was +lying here, half asleep, and heard you say ‘go on! speak, I command you!’ +It seemed so funny to hear you order me about, as if I were a bad +child!” + +“Oh, Madam Mina,” he said, sadly, “it is proof, if proof be needed, of +how I love and honour you, when a word for your good, spoken more +earnest than ever, can seem so strange because it is to order her whom I +am proud to obey!” + +The whistles are sounding; we are nearing Galatz. We are on fire with +anxiety and eagerness. + + +_Mina Harker’s Journal._ + +_30 October._--Mr. Morris took me to the hotel where our rooms had been +ordered by telegraph, he being the one who could best be spared, since +he does not speak any foreign language. The forces were distributed +much as they had been at Varna, except that Lord Godalming went to the +Vice-Consul, as his rank might serve as an immediate guarantee of some +sort to the official, we being in extreme hurry. Jonathan and the two +doctors went to the shipping agent to learn particulars of the arrival +of the _Czarina Catherine_. + + * * * * * + +_Later._--Lord Godalming has returned. The Consul is away, and the +Vice-Consul sick; so the routine work has been attended to by a clerk. +He was very obliging, and offered to do anything in his power. + + +_Jonathan Harker’s Journal._ + +_30 October._--At nine o’clock Dr. Van Helsing, Dr. Seward, and I called +on Messrs. Mackenzie & Steinkoff, the agents of the London firm of +Hapgood. They had received a wire from London, in answer to Lord +Godalming’s telegraphed request, asking us to show them any civility in +their power. They were more than kind and courteous, and took us at once +on board the _Czarina Catherine_, which lay at anchor out in the river +harbour. There we saw the Captain, Donelson by name, who told us of his +voyage. He said that in all his life he had never had so favourable a +run. + +“Man!” he said, “but it made us afeard, for we expeckit that we should +have to pay for it wi’ some rare piece o’ ill luck, so as to keep up the +average. It’s no canny to run frae London to the Black Sea wi’ a wind +ahint ye, as though the Deil himself were blawin’ on yer sail for his +ain purpose. An’ a’ the time we could no speer a thing. Gin we were nigh +a ship, or a port, or a headland, a fog fell on us and travelled wi’ us, +till when after it had lifted and we looked out, the deil a thing could +we see. We ran by Gibraltar wi’oot bein’ able to signal; an’ till we +came to the Dardanelles and had to wait to get our permit to pass, we +never were within hail o’ aught. At first I inclined to slack off sail +and beat about till the fog was lifted; but whiles, I thocht that if the +Deil was minded to get us into the Black Sea quick, he was like to do it +whether we would or no. If we had a quick voyage it would be no to our +miscredit wi’ the owners, or no hurt to our traffic; an’ the Old Mon who +had served his ain purpose wad be decently grateful to us for no +hinderin’ him.” This mixture of simplicity and cunning, of superstition +and commercial reasoning, aroused Van Helsing, who said:-- + +“Mine friend, that Devil is more clever than he is thought by some; and +he know when he meet his match!” The skipper was not displeased with the +compliment, and went on:-- + +“When we got past the Bosphorus the men began to grumble; some o’ them, +the Roumanians, came and asked me to heave overboard a big box which had +been put on board by a queer lookin’ old man just before we had started +frae London. I had seen them speer at the fellow, and put out their twa +fingers when they saw him, to guard against the evil eye. Man! but the +supersteetion of foreigners is pairfectly rideeculous! I sent them aboot +their business pretty quick; but as just after a fog closed in on us I +felt a wee bit as they did anent something, though I wouldn’t say it was +agin the big box. Well, on we went, and as the fog didn’t let up for +five days I joost let the wind carry us; for if the Deil wanted to get +somewheres--well, he would fetch it up a’reet. An’ if he didn’t, well, +we’d keep a sharp lookout anyhow. Sure eneuch, we had a fair way and +deep water all the time; and two days ago, when the mornin’ sun came +through the fog, we found ourselves just in the river opposite Galatz. +The Roumanians were wild, and wanted me right or wrong to take out the +box and fling it in the river. I had to argy wi’ them aboot it wi’ a +handspike; an’ when the last o’ them rose off the deck wi’ his head in +his hand, I had convinced them that, evil eye or no evil eye, the +property and the trust of my owners were better in my hands than in the +river Danube. They had, mind ye, taken the box on the deck ready to +fling in, and as it was marked Galatz _via_ Varna, I thocht I’d let it +lie till we discharged in the port an’ get rid o’t althegither. We +didn’t do much clearin’ that day, an’ had to remain the nicht at anchor; +but in the mornin’, braw an’ airly, an hour before sun-up, a man came +aboard wi’ an order, written to him from England, to receive a box +marked for one Count Dracula. Sure eneuch the matter was one ready to +his hand. He had his papers a’ reet, an’ glad I was to be rid o’ the +dam’ thing, for I was beginnin’ masel’ to feel uneasy at it. If the Deil +did have any luggage aboord the ship, I’m thinkin’ it was nane ither +than that same!” + +“What was the name of the man who took it?” asked Dr. Van Helsing with +restrained eagerness. + +“I’ll be tellin’ ye quick!” he answered, and, stepping down to his +cabin, produced a receipt signed “Immanuel Hildesheim.” Burgen-strasse +16 was the address. We found out that this was all the Captain knew; so +with thanks we came away. + +We found Hildesheim in his office, a Hebrew of rather the Adelphi +Theatre type, with a nose like a sheep, and a fez. His arguments were +pointed with specie--we doing the punctuation--and with a little +bargaining he told us what he knew. This turned out to be simple but +important. He had received a letter from Mr. de Ville of London, telling +him to receive, if possible before sunrise so as to avoid customs, a box +which would arrive at Galatz in the _Czarina Catherine_. This he was to +give in charge to a certain Petrof Skinsky, who dealt with the Slovaks +who traded down the river to the port. He had been paid for his work by +an English bank note, which had been duly cashed for gold at the Danube +International Bank. When Skinsky had come to him, he had taken him to +the ship and handed over the box, so as to save porterage. That was all +he knew. + +We then sought for Skinsky, but were unable to find him. One of his +neighbours, who did not seem to bear him any affection, said that he had +gone away two days before, no one knew whither. This was corroborated by +his landlord, who had received by messenger the key of the house +together with the rent due, in English money. This had been between ten +and eleven o’clock last night. We were at a standstill again. + +Whilst we were talking one came running and breathlessly gasped out that +the body of Skinsky had been found inside the wall of the churchyard of +St. Peter, and that the throat had been torn open as if by some wild +animal. Those we had been speaking with ran off to see the horror, the +women crying out “This is the work of a Slovak!” We hurried away lest we +should have been in some way drawn into the affair, and so detained. + +As we came home we could arrive at no definite conclusion. We were all +convinced that the box was on its way, by water, to somewhere; but where +that might be we would have to discover. With heavy hearts we came home +to the hotel to Mina. + +When we met together, the first thing was to consult as to taking Mina +again into our confidence. Things are getting desperate, and it is at +least a chance, though a hazardous one. As a preliminary step, I was +released from my promise to her. + + +_Mina Harker’s Journal._ + +_30 October, evening._--They were so tired and worn out and dispirited +that there was nothing to be done till they had some rest; so I asked +them all to lie down for half an hour whilst I should enter everything +up to the moment. I feel so grateful to the man who invented the +“Traveller’s” typewriter, and to Mr. Morris for getting this one for +me. I should have felt quite astray doing the work if I had to write +with a pen.... + +It is all done; poor dear, dear Jonathan, what he must have suffered, +what must he be suffering now. He lies on the sofa hardly seeming to +breathe, and his whole body appears in collapse. His brows are knit; his +face is drawn with pain. Poor fellow, maybe he is thinking, and I can +see his face all wrinkled up with the concentration of his thoughts. Oh! +if I could only help at all.... I shall do what I can. + +I have asked Dr. Van Helsing, and he has got me all the papers that I +have not yet seen.... Whilst they are resting, I shall go over all +carefully, and perhaps I may arrive at some conclusion. I shall try to +follow the Professor’s example, and think without prejudice on the facts +before me.... + + * * * * * + +I do believe that under God’s providence I have made a discovery. I +shall get the maps and look over them.... + + * * * * * + +I am more than ever sure that I am right. My new conclusion is ready, so +I shall get our party together and read it. They can judge it; it is +well to be accurate, and every minute is precious. + + +_Mina Harker’s Memorandum._ + +(Entered in her Journal.) + +_Ground of inquiry._--Count Dracula’s problem is to get back to his own +place. + +(_a_) He must be _brought back_ by some one. This is evident; for had he +power to move himself as he wished he could go either as man, or wolf, +or bat, or in some other way. He evidently fears discovery or +interference, in the state of helplessness in which he must be--confined +as he is between dawn and sunset in his wooden box. + +(_b_) _How is he to be taken?_--Here a process of exclusions may help +us. By road, by rail, by water? + +1. _By Road._--There are endless difficulties, especially in leaving the +city. + +(_x_) There are people; and people are curious, and investigate. A hint, +a surmise, a doubt as to what might be in the box, would destroy him. + +(_y_) There are, or there may be, customs and octroi officers to pass. + +(_z_) His pursuers might follow. This is his highest fear; and in order +to prevent his being betrayed he has repelled, so far as he can, even +his victim--me! + +2. _By Rail._--There is no one in charge of the box. It would have to +take its chance of being delayed; and delay would be fatal, with enemies +on the track. True, he might escape at night; but what would he be, if +left in a strange place with no refuge that he could fly to? This is not +what he intends; and he does not mean to risk it. + +3. _By Water._--Here is the safest way, in one respect, but with most +danger in another. On the water he is powerless except at night; even +then he can only summon fog and storm and snow and his wolves. But were +he wrecked, the living water would engulf him, helpless; and he would +indeed be lost. He could have the vessel drive to land; but if it were +unfriendly land, wherein he was not free to move, his position would +still be desperate. + +We know from the record that he was on the water; so what we have to do +is to ascertain _what_ water. + +The first thing is to realise exactly what he has done as yet; we may, +then, get a light on what his later task is to be. + +_Firstly._--We must differentiate between what he did in London as part +of his general plan of action, when he was pressed for moments and had +to arrange as best he could. + +_Secondly_ we must see, as well as we can surmise it from the facts we +know of, what he has done here. + +As to the first, he evidently intended to arrive at Galatz, and sent +invoice to Varna to deceive us lest we should ascertain his means of +exit from England; his immediate and sole purpose then was to escape. +The proof of this, is the letter of instructions sent to Immanuel +Hildesheim to clear and take away the box _before sunrise_. There is +also the instruction to Petrof Skinsky. These we must only guess at; but +there must have been some letter or message, since Skinsky came to +Hildesheim. + +That, so far, his plans were successful we know. The _Czarina Catherine_ +made a phenomenally quick journey--so much so that Captain Donelson’s +suspicions were aroused; but his superstition united with his canniness +played the Count’s game for him, and he ran with his favouring wind +through fogs and all till he brought up blindfold at Galatz. That the +Count’s arrangements were well made, has been proved. Hildesheim cleared +the box, took it off, and gave it to Skinsky. Skinsky took it--and here +we lose the trail. We only know that the box is somewhere on the water, +moving along. The customs and the octroi, if there be any, have been +avoided. + +Now we come to what the Count must have done after his arrival--_on +land_, at Galatz. + +The box was given to Skinsky before sunrise. At sunrise the Count could +appear in his own form. Here, we ask why Skinsky was chosen at all to +aid in the work? In my husband’s diary, Skinsky is mentioned as dealing +with the Slovaks who trade down the river to the port; and the man’s +remark, that the murder was the work of a Slovak, showed the general +feeling against his class. The Count wanted isolation. + +My surmise is, this: that in London the Count decided to get back to his +castle by water, as the most safe and secret way. He was brought from +the castle by Szgany, and probably they delivered their cargo to Slovaks +who took the boxes to Varna, for there they were shipped for London. +Thus the Count had knowledge of the persons who could arrange this +service. When the box was on land, before sunrise or after sunset, he +came out from his box, met Skinsky and instructed him what to do as to +arranging the carriage of the box up some river. When this was done, and +he knew that all was in train, he blotted out his traces, as he thought, +by murdering his agent. + +I have examined the map and find that the river most suitable for the +Slovaks to have ascended is either the Pruth or the Sereth. I read in +the typescript that in my trance I heard cows low and water swirling +level with my ears and the creaking of wood. The Count in his box, then, +was on a river in an open boat--propelled probably either by oars or +poles, for the banks are near and it is working against stream. There +would be no such sound if floating down stream. + +Of course it may not be either the Sereth or the Pruth, but we may +possibly investigate further. Now of these two, the Pruth is the more +easily navigated, but the Sereth is, at Fundu, joined by the Bistritza +which runs up round the Borgo Pass. The loop it makes is manifestly as +close to Dracula’s castle as can be got by water. + + +_Mina Harker’s Journal--continued._ + +When I had done reading, Jonathan took me in his arms and kissed me. The +others kept shaking me by both hands, and Dr. Van Helsing said:-- + +“Our dear Madam Mina is once more our teacher. Her eyes have been where +we were blinded. Now we are on the track once again, and this time we +may succeed. Our enemy is at his most helpless; and if we can come on +him by day, on the water, our task will be over. He has a start, but he +is powerless to hasten, as he may not leave his box lest those who carry +him may suspect; for them to suspect would be to prompt them to throw +him in the stream where he perish. This he knows, and will not. Now men, +to our Council of War; for, here and now, we must plan what each and all +shall do.” + +“I shall get a steam launch and follow him,” said Lord Godalming. + +“And I, horses to follow on the bank lest by chance he land,” said Mr. +Morris. + +“Good!” said the Professor, “both good. But neither must go alone. There +must be force to overcome force if need be; the Slovak is strong and +rough, and he carries rude arms.” All the men smiled, for amongst them +they carried a small arsenal. Said Mr. Morris:-- + +“I have brought some Winchesters; they are pretty handy in a crowd, and +there may be wolves. The Count, if you remember, took some other +precautions; he made some requisitions on others that Mrs. Harker could +not quite hear or understand. We must be ready at all points.” Dr. +Seward said:-- + +“I think I had better go with Quincey. We have been accustomed to hunt +together, and we two, well armed, will be a match for whatever may come +along. You must not be alone, Art. It may be necessary to fight the +Slovaks, and a chance thrust--for I don’t suppose these fellows carry +guns--would undo all our plans. There must be no chances, this time; we +shall not rest until the Count’s head and body have been separated, and +we are sure that he cannot re-incarnate.” He looked at Jonathan as he +spoke, and Jonathan looked at me. I could see that the poor dear was +torn about in his mind. Of course he wanted to be with me; but then the +boat service would, most likely, be the one which would destroy the ... +the ... the ... Vampire. (Why did I hesitate to write the word?) He was +silent awhile, and during his silence Dr. Van Helsing spoke:-- + +“Friend Jonathan, this is to you for twice reasons. First, because you +are young and brave and can fight, and all energies may be needed at the +last; and again that it is your right to destroy him--that--which has +wrought such woe to you and yours. Be not afraid for Madam Mina; she +will be my care, if I may. I am old. My legs are not so quick to run as +once; and I am not used to ride so long or to pursue as need be, or to +fight with lethal weapons. But I can be of other service; I can fight in +other way. And I can die, if need be, as well as younger men. Now let +me say that what I would is this: while you, my Lord Godalming and +friend Jonathan go in your so swift little steamboat up the river, and +whilst John and Quincey guard the bank where perchance he might be +landed, I will take Madam Mina right into the heart of the enemy’s +country. Whilst the old fox is tied in his box, floating on the running +stream whence he cannot escape to land--where he dares not raise the lid +of his coffin-box lest his Slovak carriers should in fear leave him to +perish--we shall go in the track where Jonathan went,--from Bistritz +over the Borgo, and find our way to the Castle of Dracula. Here, Madam +Mina’s hypnotic power will surely help, and we shall find our way--all +dark and unknown otherwise--after the first sunrise when we are near +that fateful place. There is much to be done, and other places to be +made sanctify, so that that nest of vipers be obliterated.” Here +Jonathan interrupted him hotly:-- + +“Do you mean to say, Professor Van Helsing, that you would bring Mina, +in her sad case and tainted as she is with that devil’s illness, right +into the jaws of his death-trap? Not for the world! Not for Heaven or +Hell!” He became almost speechless for a minute, and then went on:-- + +“Do you know what the place is? Have you seen that awful den of hellish +infamy--with the very moonlight alive with grisly shapes, and every +speck of dust that whirls in the wind a devouring monster in embryo? +Have you felt the Vampire’s lips upon your throat?” Here he turned to +me, and as his eyes lit on my forehead he threw up his arms with a cry: +“Oh, my God, what have we done to have this terror upon us!” and he sank +down on the sofa in a collapse of misery. The Professor’s voice, as he +spoke in clear, sweet tones, which seemed to vibrate in the air, calmed +us all:-- + +“Oh, my friend, it is because I would save Madam Mina from that awful +place that I would go. God forbid that I should take her into that +place. There is work--wild work--to be done there, that her eyes may not +see. We men here, all save Jonathan, have seen with their own eyes what +is to be done before that place can be purify. Remember that we are in +terrible straits. If the Count escape us this time--and he is strong and +subtle and cunning--he may choose to sleep him for a century, and then +in time our dear one”--he took my hand--“would come to him to keep him +company, and would be as those others that you, Jonathan, saw. You have +told us of their gloating lips; you heard their ribald laugh as they +clutched the moving bag that the Count threw to them. You shudder; and +well may it be. Forgive me that I make you so much pain, but it is +necessary. My friend, is it not a dire need for the which I am giving, +possibly my life? If it were that any one went into that place to stay, +it is I who would have to go to keep them company.” + +“Do as you will,” said Jonathan, with a sob that shook him all over, “we +are in the hands of God!” + + * * * * * + +_Later._--Oh, it did me good to see the way that these brave men worked. +How can women help loving men when they are so earnest, and so true, and +so brave! And, too, it made me think of the wonderful power of money! +What can it not do when it is properly applied; and what might it do +when basely used. I felt so thankful that Lord Godalming is rich, and +that both he and Mr. Morris, who also has plenty of money, are willing +to spend it so freely. For if they did not, our little expedition could +not start, either so promptly or so well equipped, as it will within +another hour. It is not three hours since it was arranged what part each +of us was to do; and now Lord Godalming and Jonathan have a lovely steam +launch, with steam up ready to start at a moment’s notice. Dr. Seward +and Mr. Morris have half a dozen good horses, well appointed. We have +all the maps and appliances of various kinds that can be had. Professor +Van Helsing and I are to leave by the 11:40 train to-night for Veresti, +where we are to get a carriage to drive to the Borgo Pass. We are +bringing a good deal of ready money, as we are to buy a carriage and +horses. We shall drive ourselves, for we have no one whom we can trust +in the matter. The Professor knows something of a great many languages, +so we shall get on all right. We have all got arms, even for me a +large-bore revolver; Jonathan would not be happy unless I was armed like +the rest. Alas! I cannot carry one arm that the rest do; the scar on my +forehead forbids that. Dear Dr. Van Helsing comforts me by telling me +that I am fully armed as there may be wolves; the weather is getting +colder every hour, and there are snow-flurries which come and go as +warnings. + + * * * * * + +_Later._--It took all my courage to say good-bye to my darling. We may +never meet again. Courage, Mina! the Professor is looking at you keenly; +his look is a warning. There must be no tears now--unless it may be that +God will let them fall in gladness. + + +_Jonathan Harker’s Journal._ + +_October 30. Night._--I am writing this in the light from the furnace +door of the steam launch: Lord Godalming is firing up. He is an +experienced hand at the work, as he has had for years a launch of his +own on the Thames, and another on the Norfolk Broads. Regarding our +plans, we finally decided that Mina’s guess was correct, and that if any +waterway was chosen for the Count’s escape back to his Castle, the +Sereth and then the Bistritza at its junction, would be the one. We took +it, that somewhere about the 47th degree, north latitude, would be the +place chosen for the crossing the country between the river and the +Carpathians. We have no fear in running at good speed up the river at +night; there is plenty of water, and the banks are wide enough apart to +make steaming, even in the dark, easy enough. Lord Godalming tells me to +sleep for a while, as it is enough for the present for one to be on +watch. But I cannot sleep--how can I with the terrible danger hanging +over my darling, and her going out into that awful place.... My only +comfort is that we are in the hands of God. Only for that faith it would +be easier to die than to live, and so be quit of all the trouble. Mr. +Morris and Dr. Seward were off on their long ride before we started; +they are to keep up the right bank, far enough off to get on higher +lands where they can see a good stretch of river and avoid the following +of its curves. They have, for the first stages, two men to ride and lead +their spare horses--four in all, so as not to excite curiosity. When +they dismiss the men, which shall be shortly, they shall themselves look +after the horses. It may be necessary for us to join forces; if so they +can mount our whole party. One of the saddles has a movable horn, and +can be easily adapted for Mina, if required. + +It is a wild adventure we are on. Here, as we are rushing along through +the darkness, with the cold from the river seeming to rise up and strike +us; with all the mysterious voices of the night around us, it all comes +home. We seem to be drifting into unknown places and unknown ways; into +a whole world of dark and dreadful things. Godalming is shutting the +furnace door.... + + * * * * * + +_31 October._--Still hurrying along. The day has come, and Godalming is +sleeping. I am on watch. The morning is bitterly cold; the furnace heat +is grateful, though we have heavy fur coats. As yet we have passed only +a few open boats, but none of them had on board any box or package of +anything like the size of the one we seek. The men were scared every +time we turned our electric lamp on them, and fell on their knees and +prayed. + + * * * * * + +_1 November, evening._--No news all day; we have found nothing of the +kind we seek. We have now passed into the Bistritza; and if we are wrong +in our surmise our chance is gone. We have over-hauled every boat, big +and little. Early this morning, one crew took us for a Government boat, +and treated us accordingly. We saw in this a way of smoothing matters, +so at Fundu, where the Bistritza runs into the Sereth, we got a +Roumanian flag which we now fly conspicuously. With every boat which we +have over-hauled since then this trick has succeeded; we have had every +deference shown to us, and not once any objection to whatever we chose +to ask or do. Some of the Slovaks tell us that a big boat passed them, +going at more than usual speed as she had a double crew on board. This +was before they came to Fundu, so they could not tell us whether the +boat turned into the Bistritza or continued on up the Sereth. At Fundu +we could not hear of any such boat, so she must have passed there in the +night. I am feeling very sleepy; the cold is perhaps beginning to tell +upon me, and nature must have rest some time. Godalming insists that he +shall keep the first watch. God bless him for all his goodness to poor +dear Mina and me. + + * * * * * + +_2 November, morning._--It is broad daylight. That good fellow would not +wake me. He says it would have been a sin to, for I slept peacefully and +was forgetting my trouble. It seems brutally selfish to me to have slept +so long, and let him watch all night; but he was quite right. I am a new +man this morning; and, as I sit here and watch him sleeping, I can do +all that is necessary both as to minding the engine, steering, and +keeping watch. I can feel that my strength and energy are coming back to +me. I wonder where Mina is now, and Van Helsing. They should have got to +Veresti about noon on Wednesday. It would take them some time to get the +carriage and horses; so if they had started and travelled hard, they +would be about now at the Borgo Pass. God guide and help them! I am +afraid to think what may happen. If we could only go faster! but we +cannot; the engines are throbbing and doing their utmost. I wonder how +Dr. Seward and Mr. Morris are getting on. There seem to be endless +streams running down the mountains into this river, but as none of them +are very large--at present, at all events, though they are terrible +doubtless in winter and when the snow melts--the horsemen may not have +met much obstruction. I hope that before we get to Strasba we may see +them; for if by that time we have not overtaken the Count, it may be +necessary to take counsel together what to do next. + + +_Dr. Seward’s Diary._ + +_2 November._--Three days on the road. No news, and no time to write it +if there had been, for every moment is precious. We have had only the +rest needful for the horses; but we are both bearing it wonderfully. +Those adventurous days of ours are turning up useful. We must push on; +we shall never feel happy till we get the launch in sight again. + + * * * * * + +_3 November._--We heard at Fundu that the launch had gone up the +Bistritza. I wish it wasn’t so cold. There are signs of snow coming; and +if it falls heavy it will stop us. In such case we must get a sledge and +go on, Russian fashion. + + * * * * * + +_4 November._--To-day we heard of the launch having been detained by an +accident when trying to force a way up the rapids. The Slovak boats get +up all right, by aid of a rope and steering with knowledge. Some went up +only a few hours before. Godalming is an amateur fitter himself, and +evidently it was he who put the launch in trim again. Finally, they got +up the rapids all right, with local help, and are off on the chase +afresh. I fear that the boat is not any better for the accident; the +peasantry tell us that after she got upon smooth water again, she kept +stopping every now and again so long as she was in sight. We must push +on harder than ever; our help may be wanted soon. + + +_Mina Harker’s Journal._ + +_31 October._--Arrived at Veresti at noon. The Professor tells me that +this morning at dawn he could hardly hypnotise me at all, and that all I +could say was: “dark and quiet.” He is off now buying a carriage and +horses. He says that he will later on try to buy additional horses, so +that we may be able to change them on the way. We have something more +than 70 miles before us. The country is lovely, and most interesting; if +only we were under different conditions, how delightful it would be to +see it all. If Jonathan and I were driving through it alone what a +pleasure it would be. To stop and see people, and learn something of +their life, and to fill our minds and memories with all the colour and +picturesqueness of the whole wild, beautiful country and the quaint +people! But, alas!-- + + * * * * * + +_Later._--Dr. Van Helsing has returned. He has got the carriage and +horses; we are to have some dinner, and to start in an hour. The +landlady is putting us up a huge basket of provisions; it seems enough +for a company of soldiers. The Professor encourages her, and whispers to +me that it may be a week before we can get any good food again. He has +been shopping too, and has sent home such a wonderful lot of fur coats +and wraps, and all sorts of warm things. There will not be any chance of +our being cold. + + * * * * * + +We shall soon be off. I am afraid to think what may happen to us. We are +truly in the hands of God. He alone knows what may be, and I pray Him, +with all the strength of my sad and humble soul, that He will watch over +my beloved husband; that whatever may happen, Jonathan may know that I +loved him and honoured him more than I can say, and that my latest and +truest thought will be always for him. + + + + +CHAPTER XXVII + +MINA HARKER’S JOURNAL + + +_1 November._--All day long we have travelled, and at a good speed. The +horses seem to know that they are being kindly treated, for they go +willingly their full stage at best speed. We have now had so many +changes and find the same thing so constantly that we are encouraged to +think that the journey will be an easy one. Dr. Van Helsing is laconic; +he tells the farmers that he is hurrying to Bistritz, and pays them well +to make the exchange of horses. We get hot soup, or coffee, or tea; and +off we go. It is a lovely country; full of beauties of all imaginable +kinds, and the people are brave, and strong, and simple, and seem full +of nice qualities. They are _very, very_ superstitious. In the first +house where we stopped, when the woman who served us saw the scar on my +forehead, she crossed herself and put out two fingers towards me, to +keep off the evil eye. I believe they went to the trouble of putting an +extra amount of garlic into our food; and I can’t abide garlic. Ever +since then I have taken care not to take off my hat or veil, and so have +escaped their suspicions. We are travelling fast, and as we have no +driver with us to carry tales, we go ahead of scandal; but I daresay +that fear of the evil eye will follow hard behind us all the way. The +Professor seems tireless; all day he would not take any rest, though he +made me sleep for a long spell. At sunset time he hypnotised me, and he +says that I answered as usual “darkness, lapping water and creaking +wood”; so our enemy is still on the river. I am afraid to think of +Jonathan, but somehow I have now no fear for him, or for myself. I write +this whilst we wait in a farmhouse for the horses to be got ready. Dr. +Van Helsing is sleeping. Poor dear, he looks very tired and old and +grey, but his mouth is set as firmly as a conqueror’s; even in his sleep +he is instinct with resolution. When we have well started I must make +him rest whilst I drive. I shall tell him that we have days before us, +and we must not break down when most of all his strength will be +needed.... All is ready; we are off shortly. + + * * * * * + +_2 November, morning._--I was successful, and we took turns driving all +night; now the day is on us, bright though cold. There is a strange +heaviness in the air--I say heaviness for want of a better word; I mean +that it oppresses us both. It is very cold, and only our warm furs keep +us comfortable. At dawn Van Helsing hypnotised me; he says I answered +“darkness, creaking wood and roaring water,” so the river is changing as +they ascend. I do hope that my darling will not run any chance of +danger--more than need be; but we are in God’s hands. + + * * * * * + +_2 November, night._--All day long driving. The country gets wilder as +we go, and the great spurs of the Carpathians, which at Veresti seemed +so far from us and so low on the horizon, now seem to gather round us +and tower in front. We both seem in good spirits; I think we make an +effort each to cheer the other; in the doing so we cheer ourselves. Dr. +Van Helsing says that by morning we shall reach the Borgo Pass. The +houses are very few here now, and the Professor says that the last horse +we got will have to go on with us, as we may not be able to change. He +got two in addition to the two we changed, so that now we have a rude +four-in-hand. The dear horses are patient and good, and they give us no +trouble. We are not worried with other travellers, and so even I can +drive. We shall get to the Pass in daylight; we do not want to arrive +before. So we take it easy, and have each a long rest in turn. Oh, what +will to-morrow bring to us? We go to seek the place where my poor +darling suffered so much. God grant that we may be guided aright, and +that He will deign to watch over my husband and those dear to us both, +and who are in such deadly peril. As for me, I am not worthy in His +sight. Alas! I am unclean to His eyes, and shall be until He may deign +to let me stand forth in His sight as one of those who have not incurred +His wrath. + + +_Memorandum by Abraham Van Helsing._ + +_4 November._--This to my old and true friend John Seward, M.D., of +Purfleet, London, in case I may not see him. It may explain. It is +morning, and I write by a fire which all the night I have kept +alive--Madam Mina aiding me. It is cold, cold; so cold that the grey +heavy sky is full of snow, which when it falls will settle for all +winter as the ground is hardening to receive it. It seems to have +affected Madam Mina; she has been so heavy of head all day that she was +not like herself. She sleeps, and sleeps, and sleeps! She who is usual +so alert, have done literally nothing all the day; she even have lost +her appetite. She make no entry into her little diary, she who write so +faithful at every pause. Something whisper to me that all is not well. +However, to-night she is more _vif_. Her long sleep all day have refresh +and restore her, for now she is all sweet and bright as ever. At sunset +I try to hypnotise her, but alas! with no effect; the power has grown +less and less with each day, and to-night it fail me altogether. Well, +God’s will be done--whatever it may be, and whithersoever it may lead! + +Now to the historical, for as Madam Mina write not in her stenography, I +must, in my cumbrous old fashion, that so each day of us may not go +unrecorded. + +We got to the Borgo Pass just after sunrise yesterday morning. When I +saw the signs of the dawn I got ready for the hypnotism. We stopped our +carriage, and got down so that there might be no disturbance. I made a +couch with furs, and Madam Mina, lying down, yield herself as usual, but +more slow and more short time than ever, to the hypnotic sleep. As +before, came the answer: “darkness and the swirling of water.” Then she +woke, bright and radiant and we go on our way and soon reach the Pass. +At this time and place, she become all on fire with zeal; some new +guiding power be in her manifested, for she point to a road and say:-- + +“This is the way.” + +“How know you it?” I ask. + +“Of course I know it,” she answer, and with a pause, add: “Have not my +Jonathan travelled it and wrote of his travel?” + +At first I think somewhat strange, but soon I see that there be only one +such by-road. It is used but little, and very different from the coach +road from the Bukovina to Bistritz, which is more wide and hard, and +more of use. + +So we came down this road; when we meet other ways--not always were we +sure that they were roads at all, for they be neglect and light snow +have fallen--the horses know and they only. I give rein to them, and +they go on so patient. By-and-by we find all the things which Jonathan +have note in that wonderful diary of him. Then we go on for long, long +hours and hours. At the first, I tell Madam Mina to sleep; she try, and +she succeed. She sleep all the time; till at the last, I feel myself to +suspicious grow, and attempt to wake her. But she sleep on, and I may +not wake her though I try. I do not wish to try too hard lest I harm +her; for I know that she have suffer much, and sleep at times be +all-in-all to her. I think I drowse myself, for all of sudden I feel +guilt, as though I have done something; I find myself bolt up, with the +reins in my hand, and the good horses go along jog, jog, just as ever. I +look down and find Madam Mina still sleep. It is now not far off sunset +time, and over the snow the light of the sun flow in big yellow flood, +so that we throw great long shadow on where the mountain rise so steep. +For we are going up, and up; and all is oh! so wild and rocky, as though +it were the end of the world. + +Then I arouse Madam Mina. This time she wake with not much trouble, and +then I try to put her to hypnotic sleep. But she sleep not, being as +though I were not. Still I try and try, till all at once I find her and +myself in dark; so I look round, and find that the sun have gone down. +Madam Mina laugh, and I turn and look at her. She is now quite awake, +and look so well as I never saw her since that night at Carfax when we +first enter the Count’s house. I am amaze, and not at ease then; but she +is so bright and tender and thoughtful for me that I forget all fear. I +light a fire, for we have brought supply of wood with us, and she +prepare food while I undo the horses and set them, tethered in shelter, +to feed. Then when I return to the fire she have my supper ready. I go +to help her; but she smile, and tell me that she have eat already--that +she was so hungry that she would not wait. I like it not, and I have +grave doubts; but I fear to affright her, and so I am silent of it. She +help me and I eat alone; and then we wrap in fur and lie beside the +fire, and I tell her to sleep while I watch. But presently I forget all +of watching; and when I sudden remember that I watch, I find her lying +quiet, but awake, and looking at me with so bright eyes. Once, twice +more the same occur, and I get much sleep till before morning. When I +wake I try to hypnotise her; but alas! though she shut her eyes +obedient, she may not sleep. The sun rise up, and up, and up; and then +sleep come to her too late, but so heavy that she will not wake. I have +to lift her up, and place her sleeping in the carriage when I have +harnessed the horses and made all ready. Madam still sleep, and she look +in her sleep more healthy and more redder than before. And I like it +not. And I am afraid, afraid, afraid!--I am afraid of all things--even +to think but I must go on my way. The stake we play for is life and +death, or more than these, and we must not flinch. + + * * * * * + +_5 November, morning._--Let me be accurate in everything, for though you +and I have seen some strange things together, you may at the first think +that I, Van Helsing, am mad--that the many horrors and the so long +strain on nerves has at the last turn my brain. + +All yesterday we travel, ever getting closer to the mountains, and +moving into a more and more wild and desert land. There are great, +frowning precipices and much falling water, and Nature seem to have held +sometime her carnival. Madam Mina still sleep and sleep; and though I +did have hunger and appeased it, I could not waken her--even for food. I +began to fear that the fatal spell of the place was upon her, tainted as +she is with that Vampire baptism. “Well,” said I to myself, “if it be +that she sleep all the day, it shall also be that I do not sleep at +night.” As we travel on the rough road, for a road of an ancient and +imperfect kind there was, I held down my head and slept. Again I waked +with a sense of guilt and of time passed, and found Madam Mina still +sleeping, and the sun low down. But all was indeed changed; the frowning +mountains seemed further away, and we were near the top of a +steep-rising hill, on summit of which was such a castle as Jonathan tell +of in his diary. At once I exulted and feared; for now, for good or ill, +the end was near. + +I woke Madam Mina, and again tried to hypnotise her; but alas! +unavailing till too late. Then, ere the great dark came upon us--for +even after down-sun the heavens reflected the gone sun on the snow, and +all was for a time in a great twilight--I took out the horses and fed +them in what shelter I could. Then I make a fire; and near it I make +Madam Mina, now awake and more charming than ever, sit comfortable amid +her rugs. I got ready food: but she would not eat, simply saying that +she had not hunger. I did not press her, knowing her unavailingness. But +I myself eat, for I must needs now be strong for all. Then, with the +fear on me of what might be, I drew a ring so big for her comfort, round +where Madam Mina sat; and over the ring I passed some of the wafer, and +I broke it fine so that all was well guarded. She sat still all the +time--so still as one dead; and she grew whiter and ever whiter till the +snow was not more pale; and no word she said. But when I drew near, she +clung to me, and I could know that the poor soul shook her from head to +feet with a tremor that was pain to feel. I said to her presently, when +she had grown more quiet:-- + +“Will you not come over to the fire?” for I wished to make a test of +what she could. She rose obedient, but when she have made a step she +stopped, and stood as one stricken. + +“Why not go on?” I asked. She shook her head, and, coming back, sat +down in her place. Then, looking at me with open eyes, as of one waked +from sleep, she said simply:-- + +“I cannot!” and remained silent. I rejoiced, for I knew that what she +could not, none of those that we dreaded could. Though there might be +danger to her body, yet her soul was safe! + +Presently the horses began to scream, and tore at their tethers till I +came to them and quieted them. When they did feel my hands on them, they +whinnied low as in joy, and licked at my hands and were quiet for a +time. Many times through the night did I come to them, till it arrive to +the cold hour when all nature is at lowest; and every time my coming was +with quiet of them. In the cold hour the fire began to die, and I was +about stepping forth to replenish it, for now the snow came in flying +sweeps and with it a chill mist. Even in the dark there was a light of +some kind, as there ever is over snow; and it seemed as though the +snow-flurries and the wreaths of mist took shape as of women with +trailing garments. All was in dead, grim silence only that the horses +whinnied and cowered, as if in terror of the worst. I began to +fear--horrible fears; but then came to me the sense of safety in that +ring wherein I stood. I began, too, to think that my imaginings were of +the night, and the gloom, and the unrest that I have gone through, and +all the terrible anxiety. It was as though my memories of all Jonathan’s +horrid experience were befooling me; for the snow flakes and the mist +began to wheel and circle round, till I could get as though a shadowy +glimpse of those women that would have kissed him. And then the horses +cowered lower and lower, and moaned in terror as men do in pain. Even +the madness of fright was not to them, so that they could break away. I +feared for my dear Madam Mina when these weird figures drew near and +circled round. I looked at her, but she sat calm, and smiled at me; when +I would have stepped to the fire to replenish it, she caught me and held +me back, and whispered, like a voice that one hears in a dream, so low +it was:-- + +“No! No! Do not go without. Here you are safe!” I turned to her, and +looking in her eyes, said:-- + +“But you? It is for you that I fear!” whereat she laughed--a laugh, low +and unreal, and said:-- + +“Fear for _me_! Why fear for me? None safer in all the world from them +than I am,” and as I wondered at the meaning of her words, a puff of +wind made the flame leap up, and I see the red scar on her forehead. +Then, alas! I knew. Did I not, I would soon have learned, for the +wheeling figures of mist and snow came closer, but keeping ever without +the Holy circle. Then they began to materialise till--if God have not +take away my reason, for I saw it through my eyes--there were before me +in actual flesh the same three women that Jonathan saw in the room, when +they would have kissed his throat. I knew the swaying round forms, the +bright hard eyes, the white teeth, the ruddy colour, the voluptuous +lips. They smiled ever at poor dear Madam Mina; and as their laugh came +through the silence of the night, they twined their arms and pointed to +her, and said in those so sweet tingling tones that Jonathan said were +of the intolerable sweetness of the water-glasses:-- + +“Come, sister. Come to us. Come! Come!” In fear I turned to my poor +Madam Mina, and my heart with gladness leapt like flame; for oh! the +terror in her sweet eyes, the repulsion, the horror, told a story to my +heart that was all of hope. God be thanked she was not, yet, of them. I +seized some of the firewood which was by me, and holding out some of the +Wafer, advanced on them towards the fire. They drew back before me, and +laughed their low horrid laugh. I fed the fire, and feared them not; for +I knew that we were safe within our protections. They could not +approach, me, whilst so armed, nor Madam Mina whilst she remained within +the ring, which she could not leave no more than they could enter. The +horses had ceased to moan, and lay still on the ground; the snow fell on +them softly, and they grew whiter. I knew that there was for the poor +beasts no more of terror. + +And so we remained till the red of the dawn to fall through the +snow-gloom. I was desolate and afraid, and full of woe and terror; but +when that beautiful sun began to climb the horizon life was to me again. +At the first coming of the dawn the horrid figures melted in the +whirling mist and snow; the wreaths of transparent gloom moved away +towards the castle, and were lost. + +Instinctively, with the dawn coming, I turned to Madam Mina, intending +to hypnotise her; but she lay in a deep and sudden sleep, from which I +could not wake her. I tried to hypnotise through her sleep, but she made +no response, none at all; and the day broke. I fear yet to stir. I have +made my fire and have seen the horses, they are all dead. To-day I have +much to do here, and I keep waiting till the sun is up high; for there +may be places where I must go, where that sunlight, though snow and mist +obscure it, will be to me a safety. + +I will strengthen me with breakfast, and then I will to my terrible +work. Madam Mina still sleeps; and, God be thanked! she is calm in her +sleep.... + + +_Jonathan Harker’s Journal._ + +_4 November, evening._--The accident to the launch has been a terrible +thing for us. Only for it we should have overtaken the boat long ago; +and by now my dear Mina would have been free. I fear to think of her, +off on the wolds near that horrid place. We have got horses, and we +follow on the track. I note this whilst Godalming is getting ready. We +have our arms. The Szgany must look out if they mean fight. Oh, if only +Morris and Seward were with us. We must only hope! If I write no more +Good-bye, Mina! God bless and keep you. + + +_Dr. Seward’s Diary._ + +_5 November._--With the dawn we saw the body of Szgany before us dashing +away from the river with their leiter-wagon. They surrounded it in a +cluster, and hurried along as though beset. The snow is falling lightly +and there is a strange excitement in the air. It may be our own +feelings, but the depression is strange. Far off I hear the howling of +wolves; the snow brings them down from the mountains, and there are +dangers to all of us, and from all sides. The horses are nearly ready, +and we are soon off. We ride to death of some one. God alone knows who, +or where, or what, or when, or how it may be.... + + +_Dr. Van Helsing’s Memorandum._ + +_5 November, afternoon._--I am at least sane. Thank God for that mercy +at all events, though the proving it has been dreadful. When I left +Madam Mina sleeping within the Holy circle, I took my way to the castle. +The blacksmith hammer which I took in the carriage from Veresti was +useful; though the doors were all open I broke them off the rusty +hinges, lest some ill-intent or ill-chance should close them, so that +being entered I might not get out. Jonathan’s bitter experience served +me here. By memory of his diary I found my way to the old chapel, for I +knew that here my work lay. The air was oppressive; it seemed as if +there was some sulphurous fume, which at times made me dizzy. Either +there was a roaring in my ears or I heard afar off the howl of wolves. +Then I bethought me of my dear Madam Mina, and I was in terrible plight. +The dilemma had me between his horns. + +Her, I had not dare to take into this place, but left safe from the +Vampire in that Holy circle; and yet even there would be the wolf! I +resolve me that my work lay here, and that as to the wolves we must +submit, if it were God’s will. At any rate it was only death and +freedom beyond. So did I choose for her. Had it but been for myself the +choice had been easy, the maw of the wolf were better to rest in than +the grave of the Vampire! So I make my choice to go on with my work. + +I knew that there were at least three graves to find--graves that are +inhabit; so I search, and search, and I find one of them. She lay in her +Vampire sleep, so full of life and voluptuous beauty that I shudder as +though I have come to do murder. Ah, I doubt not that in old time, when +such things were, many a man who set forth to do such a task as mine, +found at the last his heart fail him, and then his nerve. So he delay, +and delay, and delay, till the mere beauty and the fascination of the +wanton Un-Dead have hypnotise him; and he remain on and on, till sunset +come, and the Vampire sleep be over. Then the beautiful eyes of the fair +woman open and look love, and the voluptuous mouth present to a +kiss--and man is weak. And there remain one more victim in the Vampire +fold; one more to swell the grim and grisly ranks of the Un-Dead!... + +There is some fascination, surely, when I am moved by the mere presence +of such an one, even lying as she lay in a tomb fretted with age and +heavy with the dust of centuries, though there be that horrid odour such +as the lairs of the Count have had. Yes, I was moved--I, Van Helsing, +with all my purpose and with my motive for hate--I was moved to a +yearning for delay which seemed to paralyse my faculties and to clog my +very soul. It may have been that the need of natural sleep, and the +strange oppression of the air were beginning to overcome me. Certain it +was that I was lapsing into sleep, the open-eyed sleep of one who yields +to a sweet fascination, when there came through the snow-stilled air a +long, low wail, so full of woe and pity that it woke me like the sound +of a clarion. For it was the voice of my dear Madam Mina that I heard. + +Then I braced myself again to my horrid task, and found by wrenching +away tomb-tops one other of the sisters, the other dark one. I dared not +pause to look on her as I had on her sister, lest once more I should +begin to be enthrall; but I go on searching until, presently, I find in +a high great tomb as if made to one much beloved that other fair sister +which, like Jonathan I had seen to gather herself out of the atoms of +the mist. She was so fair to look on, so radiantly beautiful, so +exquisitely voluptuous, that the very instinct of man in me, which calls +some of my sex to love and to protect one of hers, made my head whirl +with new emotion. But God be thanked, that soul-wail of my dear Madam +Mina had not died out of my ears; and, before the spell could be wrought +further upon me, I had nerved myself to my wild work. By this time I had +searched all the tombs in the chapel, so far as I could tell; and as +there had been only three of these Un-Dead phantoms around us in the +night, I took it that there were no more of active Un-Dead existent. +There was one great tomb more lordly than all the rest; huge it was, and +nobly proportioned. On it was but one word + + DRACULA. + +This then was the Un-Dead home of the King-Vampire, to whom so many more +were due. Its emptiness spoke eloquent to make certain what I knew. +Before I began to restore these women to their dead selves through my +awful work, I laid in Dracula’s tomb some of the Wafer, and so banished +him from it, Un-Dead, for ever. + +Then began my terrible task, and I dreaded it. Had it been but one, it +had been easy, comparative. But three! To begin twice more after I had +been through a deed of horror; for if it was terrible with the sweet +Miss Lucy, what would it not be with these strange ones who had survived +through centuries, and who had been strengthened by the passing of the +years; who would, if they could, have fought for their foul lives.... + +Oh, my friend John, but it was butcher work; had I not been nerved by +thoughts of other dead, and of the living over whom hung such a pall of +fear, I could not have gone on. I tremble and tremble even yet, though +till all was over, God be thanked, my nerve did stand. Had I not seen +the repose in the first place, and the gladness that stole over it just +ere the final dissolution came, as realisation that the soul had been +won, I could not have gone further with my butchery. I could not have +endured the horrid screeching as the stake drove home; the plunging of +writhing form, and lips of bloody foam. I should have fled in terror and +left my work undone. But it is over! And the poor souls, I can pity them +now and weep, as I think of them placid each in her full sleep of death +for a short moment ere fading. For, friend John, hardly had my knife +severed the head of each, before the whole body began to melt away and +crumble in to its native dust, as though the death that should have come +centuries agone had at last assert himself and say at once and loud “I +am here!” + +Before I left the castle I so fixed its entrances that never more can +the Count enter there Un-Dead. + +When I stepped into the circle where Madam Mina slept, she woke from her +sleep, and, seeing, me, cried out in pain that I had endured too much. + +“Come!” she said, “come away from this awful place! Let us go to meet my +husband who is, I know, coming towards us.” She was looking thin and +pale and weak; but her eyes were pure and glowed with fervour. I was +glad to see her paleness and her illness, for my mind was full of the +fresh horror of that ruddy vampire sleep. + +And so with trust and hope, and yet full of fear, we go eastward to meet +our friends--and _him_--whom Madam Mina tell me that she _know_ are +coming to meet us. + + +_Mina Harker’s Journal._ + +_6 November._--It was late in the afternoon when the Professor and I +took our way towards the east whence I knew Jonathan was coming. We did +not go fast, though the way was steeply downhill, for we had to take +heavy rugs and wraps with us; we dared not face the possibility of being +left without warmth in the cold and the snow. We had to take some of our +provisions, too, for we were in a perfect desolation, and, so far as we +could see through the snowfall, there was not even the sign of +habitation. When we had gone about a mile, I was tired with the heavy +walking and sat down to rest. Then we looked back and saw where the +clear line of Dracula’s castle cut the sky; for we were so deep under +the hill whereon it was set that the angle of perspective of the +Carpathian mountains was far below it. We saw it in all its grandeur, +perched a thousand feet on the summit of a sheer precipice, and with +seemingly a great gap between it and the steep of the adjacent mountain +on any side. There was something wild and uncanny about the place. We +could hear the distant howling of wolves. They were far off, but the +sound, even though coming muffled through the deadening snowfall, was +full of terror. I knew from the way Dr. Van Helsing was searching about +that he was trying to seek some strategic point, where we would be less +exposed in case of attack. The rough roadway still led downwards; we +could trace it through the drifted snow. + +In a little while the Professor signalled to me, so I got up and joined +him. He had found a wonderful spot, a sort of natural hollow in a rock, +with an entrance like a doorway between two boulders. He took me by the +hand and drew me in: “See!” he said, “here you will be in shelter; and +if the wolves do come I can meet them one by one.” He brought in our +furs, and made a snug nest for me, and got out some provisions and +forced them upon me. But I could not eat; to even try to do so was +repulsive to me, and, much as I would have liked to please him, I could +not bring myself to the attempt. He looked very sad, but did not +reproach me. Taking his field-glasses from the case, he stood on the top +of the rock, and began to search the horizon. Suddenly he called out:-- + +“Look! Madam Mina, look! look!” I sprang up and stood beside him on the +rock; he handed me his glasses and pointed. The snow was now falling +more heavily, and swirled about fiercely, for a high wind was beginning +to blow. However, there were times when there were pauses between the +snow flurries and I could see a long way round. From the height where we +were it was possible to see a great distance; and far off, beyond the +white waste of snow, I could see the river lying like a black ribbon in +kinks and curls as it wound its way. Straight in front of us and not far +off--in fact, so near that I wondered we had not noticed before--came a +group of mounted men hurrying along. In the midst of them was a cart, a +long leiter-wagon which swept from side to side, like a dog’s tail +wagging, with each stern inequality of the road. Outlined against the +snow as they were, I could see from the men’s clothes that they were +peasants or gypsies of some kind. + +On the cart was a great square chest. My heart leaped as I saw it, for I +felt that the end was coming. The evening was now drawing close, and +well I knew that at sunset the Thing, which was till then imprisoned +there, would take new freedom and could in any of many forms elude all +pursuit. In fear I turned to the Professor; to my consternation, +however, he was not there. An instant later, I saw him below me. Round +the rock he had drawn a circle, such as we had found shelter in last +night. When he had completed it he stood beside me again, saying:-- + +“At least you shall be safe here from _him_!” He took the glasses from +me, and at the next lull of the snow swept the whole space below us. +“See,” he said, “they come quickly; they are flogging the horses, and +galloping as hard as they can.” He paused and went on in a hollow +voice:-- + +“They are racing for the sunset. We may be too late. God’s will be +done!” Down came another blinding rush of driving snow, and the whole +landscape was blotted out. It soon passed, however, and once more his +glasses were fixed on the plain. Then came a sudden cry:-- + +“Look! Look! Look! See, two horsemen follow fast, coming up from the +south. It must be Quincey and John. Take the glass. Look before the snow +blots it all out!” I took it and looked. The two men might be Dr. Seward +and Mr. Morris. I knew at all events that neither of them was Jonathan. +At the same time I _knew_ that Jonathan was not far off; looking around +I saw on the north side of the coming party two other men, riding at +break-neck speed. One of them I knew was Jonathan, and the other I took, +of course, to be Lord Godalming. They, too, were pursuing the party with +the cart. When I told the Professor he shouted in glee like a schoolboy, +and, after looking intently till a snow fall made sight impossible, he +laid his Winchester rifle ready for use against the boulder at the +opening of our shelter. “They are all converging,” he said. “When the +time comes we shall have gypsies on all sides.” I got out my revolver +ready to hand, for whilst we were speaking the howling of wolves came +louder and closer. When the snow storm abated a moment we looked again. +It was strange to see the snow falling in such heavy flakes close to us, +and beyond, the sun shining more and more brightly as it sank down +towards the far mountain tops. Sweeping the glass all around us I could +see here and there dots moving singly and in twos and threes and larger +numbers--the wolves were gathering for their prey. + +Every instant seemed an age whilst we waited. The wind came now in +fierce bursts, and the snow was driven with fury as it swept upon us in +circling eddies. At times we could not see an arm’s length before us; +but at others, as the hollow-sounding wind swept by us, it seemed to +clear the air-space around us so that we could see afar off. We had of +late been so accustomed to watch for sunrise and sunset, that we knew +with fair accuracy when it would be; and we knew that before long the +sun would set. It was hard to believe that by our watches it was less +than an hour that we waited in that rocky shelter before the various +bodies began to converge close upon us. The wind came now with fiercer +and more bitter sweeps, and more steadily from the north. It seemingly +had driven the snow clouds from us, for, with only occasional bursts, +the snow fell. We could distinguish clearly the individuals of each +party, the pursued and the pursuers. Strangely enough those pursued did +not seem to realise, or at least to care, that they were pursued; they +seemed, however, to hasten with redoubled speed as the sun dropped lower +and lower on the mountain tops. + +Closer and closer they drew. The Professor and I crouched down behind +our rock, and held our weapons ready; I could see that he was determined +that they should not pass. One and all were quite unaware of our +presence. + +All at once two voices shouted out to: “Halt!” One was my Jonathan’s, +raised in a high key of passion; the other Mr. Morris’ strong resolute +tone of quiet command. The gypsies may not have known the language, but +there was no mistaking the tone, in whatever tongue the words were +spoken. Instinctively they reined in, and at the instant Lord Godalming +and Jonathan dashed up at one side and Dr. Seward and Mr. Morris on the +other. The leader of the gypsies, a splendid-looking fellow who sat his +horse like a centaur, waved them back, and in a fierce voice gave to his +companions some word to proceed. They lashed the horses which sprang +forward; but the four men raised their Winchester rifles, and in an +unmistakable way commanded them to stop. At the same moment Dr. Van +Helsing and I rose behind the rock and pointed our weapons at them. +Seeing that they were surrounded the men tightened their reins and drew +up. The leader turned to them and gave a word at which every man of the +gypsy party drew what weapon he carried, knife or pistol, and held +himself in readiness to attack. Issue was joined in an instant. + +The leader, with a quick movement of his rein, threw his horse out in +front, and pointing first to the sun--now close down on the hill +tops--and then to the castle, said something which I did not understand. +For answer, all four men of our party threw themselves from their horses +and dashed towards the cart. I should have felt terrible fear at seeing +Jonathan in such danger, but that the ardour of battle must have been +upon me as well as the rest of them; I felt no fear, but only a wild, +surging desire to do something. Seeing the quick movement of our +parties, the leader of the gypsies gave a command; his men instantly +formed round the cart in a sort of undisciplined endeavour, each one +shouldering and pushing the other in his eagerness to carry out the +order. + +In the midst of this I could see that Jonathan on one side of the ring +of men, and Quincey on the other, were forcing a way to the cart; it was +evident that they were bent on finishing their task before the sun +should set. Nothing seemed to stop or even to hinder them. Neither the +levelled weapons nor the flashing knives of the gypsies in front, nor +the howling of the wolves behind, appeared to even attract their +attention. Jonathan’s impetuosity, and the manifest singleness of his +purpose, seemed to overawe those in front of him; instinctively they +cowered, aside and let him pass. In an instant he had jumped upon the +cart, and, with a strength which seemed incredible, raised the great +box, and flung it over the wheel to the ground. In the meantime, Mr. +Morris had had to use force to pass through his side of the ring of +Szgany. All the time I had been breathlessly watching Jonathan I had, +with the tail of my eye, seen him pressing desperately forward, and had +seen the knives of the gypsies flash as he won a way through them, and +they cut at him. He had parried with his great bowie knife, and at first +I thought that he too had come through in safety; but as he sprang +beside Jonathan, who had by now jumped from the cart, I could see that +with his left hand he was clutching at his side, and that the blood was +spurting through his fingers. He did not delay notwithstanding this, for +as Jonathan, with desperate energy, attacked one end of the chest, +attempting to prize off the lid with his great Kukri knife, he attacked +the other frantically with his bowie. Under the efforts of both men the +lid began to yield; the nails drew with a quick screeching sound, and +the top of the box was thrown back. + +By this time the gypsies, seeing themselves covered by the Winchesters, +and at the mercy of Lord Godalming and Dr. Seward, had given in and made +no resistance. The sun was almost down on the mountain tops, and the +shadows of the whole group fell long upon the snow. I saw the Count +lying within the box upon the earth, some of which the rude falling from +the cart had scattered over him. He was deathly pale, just like a waxen +image, and the red eyes glared with the horrible vindictive look which I +knew too well. + +As I looked, the eyes saw the sinking sun, and the look of hate in them +turned to triumph. + +But, on the instant, came the sweep and flash of Jonathan’s great knife. +I shrieked as I saw it shear through the throat; whilst at the same +moment Mr. Morris’s bowie knife plunged into the heart. + +It was like a miracle; but before our very eyes, and almost in the +drawing of a breath, the whole body crumbled into dust and passed from +our sight. + +I shall be glad as long as I live that even in that moment of final +dissolution, there was in the face a look of peace, such as I never +could have imagined might have rested there. + +The Castle of Dracula now stood out against the red sky, and every stone +of its broken battlements was articulated against the light of the +setting sun. + +The gypsies, taking us as in some way the cause of the extraordinary +disappearance of the dead man, turned, without a word, and rode away as +if for their lives. Those who were unmounted jumped upon the +leiter-wagon and shouted to the horsemen not to desert them. The wolves, +which had withdrawn to a safe distance, followed in their wake, leaving +us alone. + +Mr. Morris, who had sunk to the ground, leaned on his elbow, holding his +hand pressed to his side; the blood still gushed through his fingers. I +flew to him, for the Holy circle did not now keep me back; so did the +two doctors. Jonathan knelt behind him and the wounded man laid back his +head on his shoulder. With a sigh he took, with a feeble effort, my hand +in that of his own which was unstained. He must have seen the anguish of +my heart in my face, for he smiled at me and said:-- + +“I am only too happy to have been of any service! Oh, God!” he cried +suddenly, struggling up to a sitting posture and pointing to me, “It was +worth for this to die! Look! look!” + +The sun was now right down upon the mountain top, and the red gleams +fell upon my face, so that it was bathed in rosy light. With one impulse +the men sank on their knees and a deep and earnest “Amen” broke from all +as their eyes followed the pointing of his finger. The dying man +spoke:-- + +“Now God be thanked that all has not been in vain! See! the snow is not +more stainless than her forehead! The curse has passed away!” + +And, to our bitter grief, with a smile and in silence, he died, a +gallant gentleman. + + + + + NOTE + + +Seven years ago we all went through the flames; and the happiness of +some of us since then is, we think, well worth the pain we endured. It +is an added joy to Mina and to me that our boy’s birthday is the same +day as that on which Quincey Morris died. His mother holds, I know, the +secret belief that some of our brave friend’s spirit has passed into +him. His bundle of names links all our little band of men together; but +we call him Quincey. + +In the summer of this year we made a journey to Transylvania, and went +over the old ground which was, and is, to us so full of vivid and +terrible memories. It was almost impossible to believe that the things +which we had seen with our own eyes and heard with our own ears were +living truths. Every trace of all that had been was blotted out. The +castle stood as before, reared high above a waste of desolation. + +When we got home we were talking of the old time--which we could all +look back on without despair, for Godalming and Seward are both happily +married. I took the papers from the safe where they had been ever since +our return so long ago. We were struck with the fact, that in all the +mass of material of which the record is composed, there is hardly one +authentic document; nothing but a mass of typewriting, except the later +note-books of Mina and Seward and myself, and Van Helsing’s memorandum. +We could hardly ask any one, even did we wish to, to accept these as +proofs of so wild a story. Van Helsing summed it all up as he said, with +our boy on his knee:-- + +“We want no proofs; we ask none to believe us! This boy will some day +know what a brave and gallant woman his mother is. Already he knows her +sweetness and loving care; later on he will understand how some men so +loved her, that they did dare much for her sake.” + +JONATHAN HARKER. + + THE END + + * * * * * + + _There’s More to Follow!_ + + More stories of the sort you like; more, probably, by the author of + this one; more than 500 titles all told by writers of world-wide + reputation, in the Authors’ Alphabetical List which you will find + on the _reverse side_ of the wrapper of this book. Look it over + before you lay it aside. There are books here you are sure to + want--some, possibly, that you have _always_ wanted. + + It is a _selected_ list; every book in it has achieved a certain + measure of _success_. + + The Grosset & Dunlap list is not only the greatest Index of Good + Fiction available, it represents in addition a generally accepted + Standard of Value. It will pay you to + + _Look on the Other Side of the Wrapper!_ + + _In case the wrapper is lost write to the publishers for a complete + catalog_ + + * * * * * + +DETECTIVE STORIES BY J. S. FLETCHER + +May be had wherever books are sold. Ask for Grosset & Dunlap’s list + + +THE SECRET OF THE BARBICAN + +THE ANNEXATION SOCIETY + +THE WOLVES AND THE LAMB + +GREEN INK + +THE KING versus WARGRAVE + +THE LOST MR. LINTHWAITE + +THE MILL OF MANY WINDOWS + +THE HEAVEN-KISSED HILL + +THE MIDDLE TEMPLE MURDER + +RAVENSDENE COURT + +THE RAYNER-SLADE AMALGAMATION + +THE SAFETY PIN + +THE SECRET WAY + +THE VALLEY OF HEADSTRONG MEN + +_Ask for Complete free list of G. & D. Popular Copyrighted Fiction_ + +GROSSET & DUNLAP, _Publishers_, NEW YORK + + + + +*** END OF THE PROJECT GUTENBERG EBOOK DRACULA *** + + + + +Updated editions will replace the previous one—the old editions will +be renamed. + +Creating the works from print editions not protected by U.S. copyright +law means that no one owns a United States copyright in these works, +so the Foundation (and you!) can copy and distribute it in the United +States without permission and without paying copyright +royalties. Special rules, set forth in the General Terms of Use part +of this license, apply to copying and distributing Project +Gutenberg™ electronic works to protect the PROJECT GUTENBERG™ +concept and trademark. Project Gutenberg is a registered trademark, +and may not be used if you charge for an eBook, except by following +the terms of the trademark license, including paying royalties for use +of the Project Gutenberg trademark. If you do not charge anything for +copies of this eBook, complying with the trademark license is very +easy. You may use this eBook for nearly any purpose such as creation +of derivative works, reports, performances and research. Project +Gutenberg eBooks may be modified and printed and given away—you may +do practically ANYTHING in the United States with eBooks not protected +by U.S. copyright law. Redistribution is subject to the trademark +license, especially commercial redistribution. + + +START: FULL LICENSE + +THE FULL PROJECT GUTENBERG LICENSE + +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg™ mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase “Project +Gutenberg”), you agree to comply with all the terms of the Full +Project Gutenberg™ License available with this file or online at +www.gutenberg.org/license. + +Section 1. General Terms of Use and Redistributing Project Gutenberg™ +electronic works + +1.A. By reading or using any part of this Project Gutenberg™ +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or +destroy all copies of Project Gutenberg™ electronic works in your +possession. If you paid a fee for obtaining a copy of or access to a +Project Gutenberg™ electronic work and you do not agree to be bound +by the terms of this agreement, you may obtain a refund from the person +or entity to whom you paid the fee as set forth in paragraph 1.E.8. + +1.B. “Project Gutenberg” is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg™ electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg™ electronic works if you follow the terms of this +agreement and help preserve free future access to Project Gutenberg™ +electronic works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation (“the +Foundation” or PGLAF), owns a compilation copyright in the collection +of Project Gutenberg™ electronic works. Nearly all the individual +works in the collection are in the public domain in the United +States. If an individual work is unprotected by copyright law in the +United States and you are located in the United States, we do not +claim a right to prevent you from copying, distributing, performing, +displaying or creating derivative works based on the work as long as +all references to Project Gutenberg are removed. Of course, we hope +that you will support the Project Gutenberg™ mission of promoting +free access to electronic works by freely sharing Project Gutenberg™ +works in compliance with the terms of this agreement for keeping the +Project Gutenberg™ name associated with the work. You can easily +comply with the terms of this agreement by keeping this work in the +same format with its attached full Project Gutenberg™ License when +you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are +in a constant state of change. If you are outside the United States, +check the laws of your country in addition to the terms of this +agreement before downloading, copying, displaying, performing, +distributing or creating derivative works based on this work or any +other Project Gutenberg™ work. The Foundation makes no +representations concerning the copyright status of any work in any +country other than the United States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other +immediate access to, the full Project Gutenberg™ License must appear +prominently whenever any copy of a Project Gutenberg™ work (any work +on which the phrase “Project Gutenberg” appears, or with which the +phrase “Project Gutenberg” is associated) is accessed, displayed, +performed, viewed, copied or distributed: + + This eBook is for the use of anyone anywhere in the United States and most + other parts of the world at no cost and with almost no restrictions + whatsoever. You may copy it, give it away or re-use it under the terms + of the Project Gutenberg License included with this eBook or online + at www.gutenberg.org. If you + are not located in the United States, you will have to check the laws + of the country where you are located before using this eBook. + +1.E.2. If an individual Project Gutenberg™ electronic work is +derived from texts not protected by U.S. copyright law (does not +contain a notice indicating that it is posted with permission of the +copyright holder), the work can be copied and distributed to anyone in +the United States without paying any fees or charges. If you are +redistributing or providing access to a work with the phrase “Project +Gutenberg” associated with or appearing on the work, you must comply +either with the requirements of paragraphs 1.E.1 through 1.E.7 or +obtain permission for the use of the work and the Project Gutenberg™ +trademark as set forth in paragraphs 1.E.8 or 1.E.9. + +1.E.3. If an individual Project Gutenberg™ electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any +additional terms imposed by the copyright holder. Additional terms +will be linked to the Project Gutenberg™ License for all works +posted with the permission of the copyright holder found at the +beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg™ +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg™. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg™ License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including +any word processing or hypertext form. However, if you provide access +to or distribute copies of a Project Gutenberg™ work in a format +other than “Plain Vanilla ASCII” or other format used in the official +version posted on the official Project Gutenberg™ website +(www.gutenberg.org), you must, at no additional cost, fee or expense +to the user, provide a copy, a means of exporting a copy, or a means +of obtaining a copy upon request, of the work in its original “Plain +Vanilla ASCII” or other form. Any alternate format must include the +full Project Gutenberg™ License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg™ works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg™ electronic works +provided that: + + • You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg™ works calculated using the method + you already use to calculate your applicable taxes. The fee is owed + to the owner of the Project Gutenberg™ trademark, but he has + agreed to donate royalties under this paragraph to the Project + Gutenberg Literary Archive Foundation. Royalty payments must be paid + within 60 days following each date on which you prepare (or are + legally required to prepare) your periodic tax returns. Royalty + payments should be clearly marked as such and sent to the Project + Gutenberg Literary Archive Foundation at the address specified in + Section 4, “Information about donations to the Project Gutenberg + Literary Archive Foundation.” + + • You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg™ + License. You must require such a user to return or destroy all + copies of the works possessed in a physical medium and discontinue + all use of and all access to other copies of Project Gutenberg™ + works. + + • You provide, in accordance with paragraph 1.F.3, a full refund of + any money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days of + receipt of the work. + + • You comply with all other terms of this agreement for free + distribution of Project Gutenberg™ works. + + +1.E.9. If you wish to charge a fee or distribute a Project +Gutenberg™ electronic work or group of works on different terms than +are set forth in this agreement, you must obtain permission in writing +from the Project Gutenberg Literary Archive Foundation, the manager of +the Project Gutenberg™ trademark. Contact the Foundation as set +forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +works not protected by U.S. copyright law in creating the Project +Gutenberg™ collection. Despite these efforts, Project Gutenberg™ +electronic works, and the medium on which they may be stored, may +contain “Defects,” such as, but not limited to, incomplete, inaccurate +or corrupt data, transcription errors, a copyright or other +intellectual property infringement, a defective or damaged disk or +other medium, a computer virus, or computer codes that damage or +cannot be read by your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right +of Replacement or Refund” described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg™ trademark, and any other party distributing a Project +Gutenberg™ electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium +with your written explanation. The person or entity that provided you +with the defective work may elect to provide a replacement copy in +lieu of a refund. If you received the work electronically, the person +or entity providing it to you may choose to give you a second +opportunity to receive the work electronically in lieu of a refund. If +the second copy is also defective, you may demand a refund in writing +without further opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO +OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of +damages. If any disclaimer or limitation set forth in this agreement +violates the law of the state applicable to this agreement, the +agreement shall be interpreted to make the maximum disclaimer or +limitation permitted by the applicable state law. The invalidity or +unenforceability of any provision of this agreement shall not void the +remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg™ electronic works in +accordance with this agreement, and any volunteers associated with the +production, promotion and distribution of Project Gutenberg™ +electronic works, harmless from all liability, costs and expenses, +including legal fees, that arise directly or indirectly from any of +the following which you do or cause to occur: (a) distribution of this +or any Project Gutenberg™ work, (b) alteration, modification, or +additions or deletions to any Project Gutenberg™ work, and (c) any +Defect you cause. + +Section 2. Information about the Mission of Project Gutenberg™ + +Project Gutenberg™ is synonymous with the free distribution of +electronic works in formats readable by the widest variety of +computers including obsolete, old, middle-aged and new computers. It +exists because of the efforts of hundreds of volunteers and donations +from people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need are critical to reaching Project Gutenberg™’s +goals and ensuring that the Project Gutenberg™ collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg™ and future +generations. To learn more about the Project Gutenberg Literary +Archive Foundation and how your efforts and donations can help, see +Sections 3 and 4 and the Foundation information page at www.gutenberg.org. + +Section 3. Information about the Project Gutenberg Literary Archive Foundation + +The Project Gutenberg Literary Archive Foundation is a non-profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation’s EIN or federal tax identification +number is 64-6221541. Contributions to the Project Gutenberg Literary +Archive Foundation are tax deductible to the full extent permitted by +U.S. federal laws and your state’s laws. + +The Foundation’s business office is located at 809 North 1500 West, +Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up +to date contact information can be found at the Foundation’s website +and official page at www.gutenberg.org/contact + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg™ depends upon and cannot survive without widespread +public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine-readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To SEND +DONATIONS or determine the status of compliance for any particular state +visit www.gutenberg.org/donate. + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including checks, online payments and credit card donations. To +donate, please visit: www.gutenberg.org/donate. + +Section 5. General Information About Project Gutenberg™ electronic works + +Professor Michael S. Hart was the originator of the Project +Gutenberg™ concept of a library of electronic works that could be +freely shared with anyone. For forty years, he produced and +distributed Project Gutenberg™ eBooks with only a loose network of +volunteer support. + +Project Gutenberg™ eBooks are often created from several printed +editions, all of which are confirmed as not protected by copyright in +the U.S. unless a copyright notice is included. Thus, we do not +necessarily keep eBooks in compliance with any particular paper +edition. + +Most people start at our website which has the main PG search +facility: www.gutenberg.org. + +This website includes information about Project Gutenberg™, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. + + diff --git a/chapters/pg345_cleaned.txt b/chapters/pg345_cleaned.txt new file mode 100644 index 00000000..71289076 --- /dev/null +++ b/chapters/pg345_cleaned.txt @@ -0,0 +1,15475 @@ + + + + + DRACULA + + _by_ + + Bram Stoker + + [Illustration: colophon] + + NEW YORK + + GROSSET & DUNLAP + + _Publishers_ + + Copyright, 1897, in the United States of America, according + to Act of Congress, by Bram Stoker + + [_All rights reserved._] + + PRINTED IN THE UNITED STATES + AT + THE COUNTRY LIFE PRESS, GARDEN CITY, N.Y. + + + + + TO + + MY DEAR FRIEND + + HOMMY-BEG + + + + +Contents + +CHAPTER I. Jonathan Harker’s Journal +CHAPTER II. Jonathan Harker’s Journal +CHAPTER III. Jonathan Harker’s Journal +CHAPTER IV. Jonathan Harker’s Journal +CHAPTER V. Letters—Lucy and Mina +CHAPTER VI. Mina Murray’s Journal +CHAPTER VII. Cutting from “The Dailygraph,” 8 August +CHAPTER VIII. Mina Murray’s Journal +CHAPTER IX. Mina Murray’s Journal +CHAPTER X. Mina Murray’s Journal +CHAPTER XI. Lucy Westenra’s Diary +CHAPTER XII. Dr. Seward’s Diary +CHAPTER XIII. Dr. Seward’s Diary +CHAPTER XIV. Mina Harker’s Journal +CHAPTER XV. Dr. Seward’s Diary +CHAPTER XVI. Dr. Seward’s Diary +CHAPTER XVII. Dr. Seward’s Diary +CHAPTER XVIII. Dr. Seward’s Diary +CHAPTER XIX. Jonathan Harker’s Journal +CHAPTER XX. Jonathan Harker’s Journal +CHAPTER XXI. Dr. Seward’s Diary +CHAPTER XXII. Jonathan Harker’s Journal +CHAPTER XXIII. Dr. Seward’s Diary +CHAPTER XXIV. Dr. Seward’s Phonograph Diary, spoken by Van Helsing +CHAPTER XXV. Dr. Seward’s Diary +CHAPTER XXVI. Dr. Seward’s Diary +CHAPTER XXVII. Mina Harker’s Journal + + + + +How these papers have been placed in sequence will be made manifest in +the reading of them. All needless matters have been eliminated, so that +a history almost at variance with the possibilities of later-day belief +may stand forth as simple fact. There is throughout no statement of +past things wherein memory may err, for all the records chosen are +exactly contemporary, given from the standpoints and within the range +of knowledge of those who made them. + + + + +DRACULA + + + + +CHAPTER I + +JONATHAN HARKER’S JOURNAL + +(_Kept in shorthand._) + + +_3 May. Bistritz._--Left Munich at 8:35 P. M., on 1st May, arriving at +Vienna early next morning; should have arrived at 6:46, but train was an +hour late. Buda-Pesth seems a wonderful place, from the glimpse which I +got of it from the train and the little I could walk through the +streets. I feared to go very far from the station, as we had arrived +late and would start as near the correct time as possible. The +impression I had was that we were leaving the West and entering the +East; the most western of splendid bridges over the Danube, which is +here of noble width and depth, took us among the traditions of Turkish +rule. + +We left in pretty good time, and came after nightfall to Klausenburgh. +Here I stopped for the night at the Hotel Royale. I had for dinner, or +rather supper, a chicken done up some way with red pepper, which was +very good but thirsty. (_Mem._, get recipe for Mina.) I asked the +waiter, and he said it was called “paprika hendl,” and that, as it was a +national dish, I should be able to get it anywhere along the +Carpathians. I found my smattering of German very useful here; indeed, I +don’t know how I should be able to get on without it. + +Having had some time at my disposal when in London, I had visited the +British Museum, and made search among the books and maps in the library +regarding Transylvania; it had struck me that some foreknowledge of the +country could hardly fail to have some importance in dealing with a +nobleman of that country. I find that the district he named is in the +extreme east of the country, just on the borders of three states, +Transylvania, Moldavia and Bukovina, in the midst of the Carpathian +mountains; one of the wildest and least known portions of Europe. I was +not able to light on any map or work giving the exact locality of the +Castle Dracula, as there are no maps of this country as yet to compare +with our own Ordnance Survey maps; but I found that Bistritz, the post +town named by Count Dracula, is a fairly well-known place. I shall enter +here some of my notes, as they may refresh my memory when I talk over my +travels with Mina. + +In the population of Transylvania there are four distinct nationalities: +Saxons in the South, and mixed with them the Wallachs, who are the +descendants of the Dacians; Magyars in the West, and Szekelys in the +East and North. I am going among the latter, who claim to be descended +from Attila and the Huns. This may be so, for when the Magyars conquered +the country in the eleventh century they found the Huns settled in it. I +read that every known superstition in the world is gathered into the +horseshoe of the Carpathians, as if it were the centre of some sort of +imaginative whirlpool; if so my stay may be very interesting. (_Mem._, I +must ask the Count all about them.) + +I did not sleep well, though my bed was comfortable enough, for I had +all sorts of queer dreams. There was a dog howling all night under my +window, which may have had something to do with it; or it may have been +the paprika, for I had to drink up all the water in my carafe, and was +still thirsty. Towards morning I slept and was wakened by the continuous +knocking at my door, so I guess I must have been sleeping soundly then. +I had for breakfast more paprika, and a sort of porridge of maize flour +which they said was “mamaliga,” and egg-plant stuffed with forcemeat, a +very excellent dish, which they call “impletata.” (_Mem._, get recipe +for this also.) I had to hurry breakfast, for the train started a little +before eight, or rather it ought to have done so, for after rushing to +the station at 7:30 I had to sit in the carriage for more than an hour +before we began to move. It seems to me that the further east you go the +more unpunctual are the trains. What ought they to be in China? + +All day long we seemed to dawdle through a country which was full of +beauty of every kind. Sometimes we saw little towns or castles on the +top of steep hills such as we see in old missals; sometimes we ran by +rivers and streams which seemed from the wide stony margin on each side +of them to be subject to great floods. It takes a lot of water, and +running strong, to sweep the outside edge of a river clear. At every +station there were groups of people, sometimes crowds, and in all sorts +of attire. Some of them were just like the peasants at home or those I +saw coming through France and Germany, with short jackets and round hats +and home-made trousers; but others were very picturesque. The women +looked pretty, except when you got near them, but they were very clumsy +about the waist. They had all full white sleeves of some kind or other, +and most of them had big belts with a lot of strips of something +fluttering from them like the dresses in a ballet, but of course there +were petticoats under them. The strangest figures we saw were the +Slovaks, who were more barbarian than the rest, with their big cow-boy +hats, great baggy dirty-white trousers, white linen shirts, and enormous +heavy leather belts, nearly a foot wide, all studded over with brass +nails. They wore high boots, with their trousers tucked into them, and +had long black hair and heavy black moustaches. They are very +picturesque, but do not look prepossessing. On the stage they would be +set down at once as some old Oriental band of brigands. They are, +however, I am told, very harmless and rather wanting in natural +self-assertion. + +It was on the dark side of twilight when we got to Bistritz, which is a +very interesting old place. Being practically on the frontier--for the +Borgo Pass leads from it into Bukovina--it has had a very stormy +existence, and it certainly shows marks of it. Fifty years ago a series +of great fires took place, which made terrible havoc on five separate +occasions. At the very beginning of the seventeenth century it underwent +a siege of three weeks and lost 13,000 people, the casualties of war +proper being assisted by famine and disease. + +Count Dracula had directed me to go to the Golden Krone Hotel, which I +found, to my great delight, to be thoroughly old-fashioned, for of +course I wanted to see all I could of the ways of the country. I was +evidently expected, for when I got near the door I faced a +cheery-looking elderly woman in the usual peasant dress--white +undergarment with long double apron, front, and back, of coloured stuff +fitting almost too tight for modesty. When I came close she bowed and +said, “The Herr Englishman?” “Yes,” I said, “Jonathan Harker.” She +smiled, and gave some message to an elderly man in white shirt-sleeves, +who had followed her to the door. He went, but immediately returned with +a letter:-- + + “My Friend.--Welcome to the Carpathians. I am anxiously expecting + you. Sleep well to-night. At three to-morrow the diligence will + start for Bukovina; a place on it is kept for you. At the Borgo + Pass my carriage will await you and will bring you to me. I trust + that your journey from London has been a happy one, and that you + will enjoy your stay in my beautiful land. + +“Your friend, + +“DRACULA.” + + +_4 May._--I found that my landlord had got a letter from the Count, +directing him to secure the best place on the coach for me; but on +making inquiries as to details he seemed somewhat reticent, and +pretended that he could not understand my German. This could not be +true, because up to then he had understood it perfectly; at least, he +answered my questions exactly as if he did. He and his wife, the old +lady who had received me, looked at each other in a frightened sort of +way. He mumbled out that the money had been sent in a letter, and that +was all he knew. When I asked him if he knew Count Dracula, and could +tell me anything of his castle, both he and his wife crossed themselves, +and, saying that they knew nothing at all, simply refused to speak +further. It was so near the time of starting that I had no time to ask +any one else, for it was all very mysterious and not by any means +comforting. + +Just before I was leaving, the old lady came up to my room and said in a +very hysterical way: + +“Must you go? Oh! young Herr, must you go?” She was in such an excited +state that she seemed to have lost her grip of what German she knew, and +mixed it all up with some other language which I did not know at all. I +was just able to follow her by asking many questions. When I told her +that I must go at once, and that I was engaged on important business, +she asked again: + +“Do you know what day it is?” I answered that it was the fourth of May. +She shook her head as she said again: + +“Oh, yes! I know that! I know that, but do you know what day it is?” On +my saying that I did not understand, she went on: + +“It is the eve of St. George’s Day. Do you not know that to-night, when +the clock strikes midnight, all the evil things in the world will have +full sway? Do you know where you are going, and what you are going to?” +She was in such evident distress that I tried to comfort her, but +without effect. Finally she went down on her knees and implored me not +to go; at least to wait a day or two before starting. It was all very +ridiculous but I did not feel comfortable. However, there was business +to be done, and I could allow nothing to interfere with it. I therefore +tried to raise her up, and said, as gravely as I could, that I thanked +her, but my duty was imperative, and that I must go. She then rose and +dried her eyes, and taking a crucifix from her neck offered it to me. I +did not know what to do, for, as an English Churchman, I have been +taught to regard such things as in some measure idolatrous, and yet it +seemed so ungracious to refuse an old lady meaning so well and in such a +state of mind. She saw, I suppose, the doubt in my face, for she put the +rosary round my neck, and said, “For your mother’s sake,” and went out +of the room. I am writing up this part of the diary whilst I am waiting +for the coach, which is, of course, late; and the crucifix is still +round my neck. Whether it is the old lady’s fear, or the many ghostly +traditions of this place, or the crucifix itself, I do not know, but I +am not feeling nearly as easy in my mind as usual. If this book should +ever reach Mina before I do, let it bring my good-bye. Here comes the +coach! + + * * * * * + +_5 May. The Castle._--The grey of the morning has passed, and the sun is +high over the distant horizon, which seems jagged, whether with trees or +hills I know not, for it is so far off that big things and little are +mixed. I am not sleepy, and, as I am not to be called till I awake, +naturally I write till sleep comes. There are many odd things to put +down, and, lest who reads them may fancy that I dined too well before I +left Bistritz, let me put down my dinner exactly. I dined on what they +called “robber steak”--bits of bacon, onion, and beef, seasoned with red +pepper, and strung on sticks and roasted over the fire, in the simple +style of the London cat’s meat! The wine was Golden Mediasch, which +produces a queer sting on the tongue, which is, however, not +disagreeable. I had only a couple of glasses of this, and nothing else. + +When I got on the coach the driver had not taken his seat, and I saw him +talking with the landlady. They were evidently talking of me, for every +now and then they looked at me, and some of the people who were sitting +on the bench outside the door--which they call by a name meaning +“word-bearer”--came and listened, and then looked at me, most of them +pityingly. I could hear a lot of words often repeated, queer words, for +there were many nationalities in the crowd; so I quietly got my polyglot +dictionary from my bag and looked them out. I must say they were not +cheering to me, for amongst them were “Ordog”--Satan, “pokol”--hell, +“stregoica”--witch, “vrolok” and “vlkoslak”--both of which mean the same +thing, one being Slovak and the other Servian for something that is +either were-wolf or vampire. (_Mem._, I must ask the Count about these +superstitions) + +When we started, the crowd round the inn door, which had by this time +swelled to a considerable size, all made the sign of the cross and +pointed two fingers towards me. With some difficulty I got a +fellow-passenger to tell me what they meant; he would not answer at +first, but on learning that I was English, he explained that it was a +charm or guard against the evil eye. This was not very pleasant for me, +just starting for an unknown place to meet an unknown man; but every one +seemed so kind-hearted, and so sorrowful, and so sympathetic that I +could not but be touched. I shall never forget the last glimpse which I +had of the inn-yard and its crowd of picturesque figures, all crossing +themselves, as they stood round the wide archway, with its background of +rich foliage of oleander and orange trees in green tubs clustered in the +centre of the yard. Then our driver, whose wide linen drawers covered +the whole front of the box-seat--“gotza” they call them--cracked his big +whip over his four small horses, which ran abreast, and we set off on +our journey. + +I soon lost sight and recollection of ghostly fears in the beauty of the +scene as we drove along, although had I known the language, or rather +languages, which my fellow-passengers were speaking, I might not have +been able to throw them off so easily. Before us lay a green sloping +land full of forests and woods, with here and there steep hills, crowned +with clumps of trees or with farmhouses, the blank gable end to the +road. There was everywhere a bewildering mass of fruit blossom--apple, +plum, pear, cherry; and as we drove by I could see the green grass under +the trees spangled with the fallen petals. In and out amongst these +green hills of what they call here the “Mittel Land” ran the road, +losing itself as it swept round the grassy curve, or was shut out by the +straggling ends of pine woods, which here and there ran down the +hillsides like tongues of flame. The road was rugged, but still we +seemed to fly over it with a feverish haste. I could not understand then +what the haste meant, but the driver was evidently bent on losing no +time in reaching Borgo Prund. I was told that this road is in summertime +excellent, but that it had not yet been put in order after the winter +snows. In this respect it is different from the general run of roads in +the Carpathians, for it is an old tradition that they are not to be kept +in too good order. Of old the Hospadars would not repair them, lest the +Turk should think that they were preparing to bring in foreign troops, +and so hasten the war which was always really at loading point. + +Beyond the green swelling hills of the Mittel Land rose mighty slopes +of forest up to the lofty steeps of the Carpathians themselves. Right +and left of us they towered, with the afternoon sun falling full upon +them and bringing out all the glorious colours of this beautiful range, +deep blue and purple in the shadows of the peaks, green and brown where +grass and rock mingled, and an endless perspective of jagged rock and +pointed crags, till these were themselves lost in the distance, where +the snowy peaks rose grandly. Here and there seemed mighty rifts in the +mountains, through which, as the sun began to sink, we saw now and again +the white gleam of falling water. One of my companions touched my arm as +we swept round the base of a hill and opened up the lofty, snow-covered +peak of a mountain, which seemed, as we wound on our serpentine way, to +be right before us:-- + +“Look! Isten szek!”--“God’s seat!”--and he crossed himself reverently. + +As we wound on our endless way, and the sun sank lower and lower behind +us, the shadows of the evening began to creep round us. This was +emphasised by the fact that the snowy mountain-top still held the +sunset, and seemed to glow out with a delicate cool pink. Here and there +we passed Cszeks and Slovaks, all in picturesque attire, but I noticed +that goitre was painfully prevalent. By the roadside were many crosses, +and as we swept by, my companions all crossed themselves. Here and there +was a peasant man or woman kneeling before a shrine, who did not even +turn round as we approached, but seemed in the self-surrender of +devotion to have neither eyes nor ears for the outer world. There were +many things new to me: for instance, hay-ricks in the trees, and here +and there very beautiful masses of weeping birch, their white stems +shining like silver through the delicate green of the leaves. Now and +again we passed a leiter-wagon--the ordinary peasant’s cart--with its +long, snake-like vertebra, calculated to suit the inequalities of the +road. On this were sure to be seated quite a group of home-coming +peasants, the Cszeks with their white, and the Slovaks with their +coloured, sheepskins, the latter carrying lance-fashion their long +staves, with axe at end. As the evening fell it began to get very cold, +and the growing twilight seemed to merge into one dark mistiness the +gloom of the trees, oak, beech, and pine, though in the valleys which +ran deep between the spurs of the hills, as we ascended through the +Pass, the dark firs stood out here and there against the background of +late-lying snow. Sometimes, as the road was cut through the pine woods +that seemed in the darkness to be closing down upon us, great masses of +greyness, which here and there bestrewed the trees, produced a +peculiarly weird and solemn effect, which carried on the thoughts and +grim fancies engendered earlier in the evening, when the falling sunset +threw into strange relief the ghost-like clouds which amongst the +Carpathians seem to wind ceaselessly through the valleys. Sometimes the +hills were so steep that, despite our driver’s haste, the horses could +only go slowly. I wished to get down and walk up them, as we do at home, +but the driver would not hear of it. “No, no,” he said; “you must not +walk here; the dogs are too fierce”; and then he added, with what he +evidently meant for grim pleasantry--for he looked round to catch the +approving smile of the rest--“and you may have enough of such matters +before you go to sleep.” The only stop he would make was a moment’s +pause to light his lamps. + +When it grew dark there seemed to be some excitement amongst the +passengers, and they kept speaking to him, one after the other, as +though urging him to further speed. He lashed the horses unmercifully +with his long whip, and with wild cries of encouragement urged them on +to further exertions. Then through the darkness I could see a sort of +patch of grey light ahead of us, as though there were a cleft in the +hills. The excitement of the passengers grew greater; the crazy coach +rocked on its great leather springs, and swayed like a boat tossed on a +stormy sea. I had to hold on. The road grew more level, and we appeared +to fly along. Then the mountains seemed to come nearer to us on each +side and to frown down upon us; we were entering on the Borgo Pass. One +by one several of the passengers offered me gifts, which they pressed +upon me with an earnestness which would take no denial; these were +certainly of an odd and varied kind, but each was given in simple good +faith, with a kindly word, and a blessing, and that strange mixture of +fear-meaning movements which I had seen outside the hotel at +Bistritz--the sign of the cross and the guard against the evil eye. +Then, as we flew along, the driver leaned forward, and on each side the +passengers, craning over the edge of the coach, peered eagerly into the +darkness. It was evident that something very exciting was either +happening or expected, but though I asked each passenger, no one would +give me the slightest explanation. This state of excitement kept on for +some little time; and at last we saw before us the Pass opening out on +the eastern side. There were dark, rolling clouds overhead, and in the +air the heavy, oppressive sense of thunder. It seemed as though the +mountain range had separated two atmospheres, and that now we had got +into the thunderous one. I was now myself looking out for the conveyance +which was to take me to the Count. Each moment I expected to see the +glare of lamps through the blackness; but all was dark. The only light +was the flickering rays of our own lamps, in which the steam from our +hard-driven horses rose in a white cloud. We could see now the sandy +road lying white before us, but there was on it no sign of a vehicle. +The passengers drew back with a sigh of gladness, which seemed to mock +my own disappointment. I was already thinking what I had best do, when +the driver, looking at his watch, said to the others something which I +could hardly hear, it was spoken so quietly and in so low a tone; I +thought it was “An hour less than the time.” Then turning to me, he said +in German worse than my own:-- + +“There is no carriage here. The Herr is not expected after all. He will +now come on to Bukovina, and return to-morrow or the next day; better +the next day.” Whilst he was speaking the horses began to neigh and +snort and plunge wildly, so that the driver had to hold them up. Then, +amongst a chorus of screams from the peasants and a universal crossing +of themselves, a calèche, with four horses, drove up behind us, overtook +us, and drew up beside the coach. I could see from the flash of our +lamps, as the rays fell on them, that the horses were coal-black and +splendid animals. They were driven by a tall man, with a long brown +beard and a great black hat, which seemed to hide his face from us. I +could only see the gleam of a pair of very bright eyes, which seemed red +in the lamplight, as he turned to us. He said to the driver:-- + +“You are early to-night, my friend.” The man stammered in reply:-- + +“The English Herr was in a hurry,” to which the stranger replied:-- + +“That is why, I suppose, you wished him to go on to Bukovina. You cannot +deceive me, my friend; I know too much, and my horses are swift.” As he +spoke he smiled, and the lamplight fell on a hard-looking mouth, with +very red lips and sharp-looking teeth, as white as ivory. One of my +companions whispered to another the line from Burger’s “Lenore”:-- + + “Denn die Todten reiten schnell”-- + (“For the dead travel fast.”) + +The strange driver evidently heard the words, for he looked up with a +gleaming smile. The passenger turned his face away, at the same time +putting out his two fingers and crossing himself. “Give me the Herr’s +luggage,” said the driver; and with exceeding alacrity my bags were +handed out and put in the calèche. Then I descended from the side of the +coach, as the calèche was close alongside, the driver helping me with a +hand which caught my arm in a grip of steel; his strength must have been +prodigious. Without a word he shook his reins, the horses turned, and we +swept into the darkness of the Pass. As I looked back I saw the steam +from the horses of the coach by the light of the lamps, and projected +against it the figures of my late companions crossing themselves. Then +the driver cracked his whip and called to his horses, and off they swept +on their way to Bukovina. As they sank into the darkness I felt a +strange chill, and a lonely feeling came over me; but a cloak was thrown +over my shoulders, and a rug across my knees, and the driver said in +excellent German:-- + +“The night is chill, mein Herr, and my master the Count bade me take all +care of you. There is a flask of slivovitz (the plum brandy of the +country) underneath the seat, if you should require it.” I did not take +any, but it was a comfort to know it was there all the same. I felt a +little strangely, and not a little frightened. I think had there been +any alternative I should have taken it, instead of prosecuting that +unknown night journey. The carriage went at a hard pace straight along, +then we made a complete turn and went along another straight road. It +seemed to me that we were simply going over and over the same ground +again; and so I took note of some salient point, and found that this was +so. I would have liked to have asked the driver what this all meant, but +I really feared to do so, for I thought that, placed as I was, any +protest would have had no effect in case there had been an intention to +delay. By-and-by, however, as I was curious to know how time was +passing, I struck a match, and by its flame looked at my watch; it was +within a few minutes of midnight. This gave me a sort of shock, for I +suppose the general superstition about midnight was increased by my +recent experiences. I waited with a sick feeling of suspense. + +Then a dog began to howl somewhere in a farmhouse far down the road--a +long, agonised wailing, as if from fear. The sound was taken up by +another dog, and then another and another, till, borne on the wind which +now sighed softly through the Pass, a wild howling began, which seemed +to come from all over the country, as far as the imagination could grasp +it through the gloom of the night. At the first howl the horses began to +strain and rear, but the driver spoke to them soothingly, and they +quieted down, but shivered and sweated as though after a runaway from +sudden fright. Then, far off in the distance, from the mountains on each +side of us began a louder and a sharper howling--that of wolves--which +affected both the horses and myself in the same way--for I was minded to +jump from the calèche and run, whilst they reared again and plunged +madly, so that the driver had to use all his great strength to keep them +from bolting. In a few minutes, however, my own ears got accustomed to +the sound, and the horses so far became quiet that the driver was able +to descend and to stand before them. He petted and soothed them, and +whispered something in their ears, as I have heard of horse-tamers +doing, and with extraordinary effect, for under his caresses they became +quite manageable again, though they still trembled. The driver again +took his seat, and shaking his reins, started off at a great pace. This +time, after going to the far side of the Pass, he suddenly turned down a +narrow roadway which ran sharply to the right. + +Soon we were hemmed in with trees, which in places arched right over the +roadway till we passed as through a tunnel; and again great frowning +rocks guarded us boldly on either side. Though we were in shelter, we +could hear the rising wind, for it moaned and whistled through the +rocks, and the branches of the trees crashed together as we swept along. +It grew colder and colder still, and fine, powdery snow began to fall, +so that soon we and all around us were covered with a white blanket. The +keen wind still carried the howling of the dogs, though this grew +fainter as we went on our way. The baying of the wolves sounded nearer +and nearer, as though they were closing round on us from every side. I +grew dreadfully afraid, and the horses shared my fear. The driver, +however, was not in the least disturbed; he kept turning his head to +left and right, but I could not see anything through the darkness. + +Suddenly, away on our left, I saw a faint flickering blue flame. The +driver saw it at the same moment; he at once checked the horses, and, +jumping to the ground, disappeared into the darkness. I did not know +what to do, the less as the howling of the wolves grew closer; but while +I wondered the driver suddenly appeared again, and without a word took +his seat, and we resumed our journey. I think I must have fallen asleep +and kept dreaming of the incident, for it seemed to be repeated +endlessly, and now looking back, it is like a sort of awful nightmare. +Once the flame appeared so near the road, that even in the darkness +around us I could watch the driver’s motions. He went rapidly to where +the blue flame arose--it must have been very faint, for it did not seem +to illumine the place around it at all--and gathering a few stones, +formed them into some device. Once there appeared a strange optical +effect: when he stood between me and the flame he did not obstruct it, +for I could see its ghostly flicker all the same. This startled me, but +as the effect was only momentary, I took it that my eyes deceived me +straining through the darkness. Then for a time there were no blue +flames, and we sped onwards through the gloom, with the howling of the +wolves around us, as though they were following in a moving circle. + +At last there came a time when the driver went further afield than he +had yet gone, and during his absence, the horses began to tremble worse +than ever and to snort and scream with fright. I could not see any cause +for it, for the howling of the wolves had ceased altogether; but just +then the moon, sailing through the black clouds, appeared behind the +jagged crest of a beetling, pine-clad rock, and by its light I saw +around us a ring of wolves, with white teeth and lolling red tongues, +with long, sinewy limbs and shaggy hair. They were a hundred times more +terrible in the grim silence which held them than even when they howled. +For myself, I felt a sort of paralysis of fear. It is only when a man +feels himself face to face with such horrors that he can understand +their true import. + +All at once the wolves began to howl as though the moonlight had had +some peculiar effect on them. The horses jumped about and reared, and +looked helplessly round with eyes that rolled in a way painful to see; +but the living ring of terror encompassed them on every side; and they +had perforce to remain within it. I called to the coachman to come, for +it seemed to me that our only chance was to try to break out through the +ring and to aid his approach. I shouted and beat the side of the +calèche, hoping by the noise to scare the wolves from that side, so as +to give him a chance of reaching the trap. How he came there, I know +not, but I heard his voice raised in a tone of imperious command, and +looking towards the sound, saw him stand in the roadway. As he swept his +long arms, as though brushing aside some impalpable obstacle, the wolves +fell back and back further still. Just then a heavy cloud passed across +the face of the moon, so that we were again in darkness. + +When I could see again the driver was climbing into the calèche, and the +wolves had disappeared. This was all so strange and uncanny that a +dreadful fear came upon me, and I was afraid to speak or move. The time +seemed interminable as we swept on our way, now in almost complete +darkness, for the rolling clouds obscured the moon. We kept on +ascending, with occasional periods of quick descent, but in the main +always ascending. Suddenly, I became conscious of the fact that the +driver was in the act of pulling up the horses in the courtyard of a +vast ruined castle, from whose tall black windows came no ray of light, +and whose broken battlements showed a jagged line against the moonlit +sky. + + + + +CHAPTER II + +JONATHAN HARKER’S JOURNAL--_continued_ + + +_5 May._--I must have been asleep, for certainly if I had been fully +awake I must have noticed the approach of such a remarkable place. In +the gloom the courtyard looked of considerable size, and as several dark +ways led from it under great round arches, it perhaps seemed bigger than +it really is. I have not yet been able to see it by daylight. + +When the calèche stopped, the driver jumped down and held out his hand +to assist me to alight. Again I could not but notice his prodigious +strength. His hand actually seemed like a steel vice that could have +crushed mine if he had chosen. Then he took out my traps, and placed +them on the ground beside me as I stood close to a great door, old and +studded with large iron nails, and set in a projecting doorway of +massive stone. I could see even in the dim light that the stone was +massively carved, but that the carving had been much worn by time and +weather. As I stood, the driver jumped again into his seat and shook the +reins; the horses started forward, and trap and all disappeared down one +of the dark openings. + +I stood in silence where I was, for I did not know what to do. Of bell +or knocker there was no sign; through these frowning walls and dark +window openings it was not likely that my voice could penetrate. The +time I waited seemed endless, and I felt doubts and fears crowding upon +me. What sort of place had I come to, and among what kind of people? +What sort of grim adventure was it on which I had embarked? Was this a +customary incident in the life of a solicitor’s clerk sent out to +explain the purchase of a London estate to a foreigner? Solicitor’s +clerk! Mina would not like that. Solicitor--for just before leaving +London I got word that my examination was successful; and I am now a +full-blown solicitor! I began to rub my eyes and pinch myself to see if +I were awake. It all seemed like a horrible nightmare to me, and I +expected that I should suddenly awake, and find myself at home, with +the dawn struggling in through the windows, as I had now and again felt +in the morning after a day of overwork. But my flesh answered the +pinching test, and my eyes were not to be deceived. I was indeed awake +and among the Carpathians. All I could do now was to be patient, and to +wait the coming of the morning. + +Just as I had come to this conclusion I heard a heavy step approaching +behind the great door, and saw through the chinks the gleam of a coming +light. Then there was the sound of rattling chains and the clanking of +massive bolts drawn back. A key was turned with the loud grating noise +of long disuse, and the great door swung back. + +Within, stood a tall old man, clean shaven save for a long white +moustache, and clad in black from head to foot, without a single speck +of colour about him anywhere. He held in his hand an antique silver +lamp, in which the flame burned without chimney or globe of any kind, +throwing long quivering shadows as it flickered in the draught of the +open door. The old man motioned me in with his right hand with a courtly +gesture, saying in excellent English, but with a strange intonation:-- + +“Welcome to my house! Enter freely and of your own will!” He made no +motion of stepping to meet me, but stood like a statue, as though his +gesture of welcome had fixed him into stone. The instant, however, that +I had stepped over the threshold, he moved impulsively forward, and +holding out his hand grasped mine with a strength which made me wince, +an effect which was not lessened by the fact that it seemed as cold as +ice--more like the hand of a dead than a living man. Again he said:-- + +“Welcome to my house. Come freely. Go safely; and leave something of the +happiness you bring!” The strength of the handshake was so much akin to +that which I had noticed in the driver, whose face I had not seen, that +for a moment I doubted if it were not the same person to whom I was +speaking; so to make sure, I said interrogatively:-- + +“Count Dracula?” He bowed in a courtly way as he replied:-- + +“I am Dracula; and I bid you welcome, Mr. Harker, to my house. Come in; +the night air is chill, and you must need to eat and rest.” As he was +speaking, he put the lamp on a bracket on the wall, and stepping out, +took my luggage; he had carried it in before I could forestall him. I +protested but he insisted:-- + +“Nay, sir, you are my guest. It is late, and my people are not +available. Let me see to your comfort myself.” He insisted on carrying +my traps along the passage, and then up a great winding stair, and +along another great passage, on whose stone floor our steps rang +heavily. At the end of this he threw open a heavy door, and I rejoiced +to see within a well-lit room in which a table was spread for supper, +and on whose mighty hearth a great fire of logs, freshly replenished, +flamed and flared. + +The Count halted, putting down my bags, closed the door, and crossing +the room, opened another door, which led into a small octagonal room lit +by a single lamp, and seemingly without a window of any sort. Passing +through this, he opened another door, and motioned me to enter. It was a +welcome sight; for here was a great bedroom well lighted and warmed with +another log fire,--also added to but lately, for the top logs were +fresh--which sent a hollow roar up the wide chimney. The Count himself +left my luggage inside and withdrew, saying, before he closed the +door:-- + +“You will need, after your journey, to refresh yourself by making your +toilet. I trust you will find all you wish. When you are ready, come +into the other room, where you will find your supper prepared.” + +The light and warmth and the Count’s courteous welcome seemed to have +dissipated all my doubts and fears. Having then reached my normal state, +I discovered that I was half famished with hunger; so making a hasty +toilet, I went into the other room. + +I found supper already laid out. My host, who stood on one side of the +great fireplace, leaning against the stonework, made a graceful wave of +his hand to the table, and said:-- + +“I pray you, be seated and sup how you please. You will, I trust, excuse +me that I do not join you; but I have dined already, and I do not sup.” + +I handed to him the sealed letter which Mr. Hawkins had entrusted to me. +He opened it and read it gravely; then, with a charming smile, he handed +it to me to read. One passage of it, at least, gave me a thrill of +pleasure. + +“I must regret that an attack of gout, from which malady I am a constant +sufferer, forbids absolutely any travelling on my part for some time to +come; but I am happy to say I can send a sufficient substitute, one in +whom I have every possible confidence. He is a young man, full of energy +and talent in his own way, and of a very faithful disposition. He is +discreet and silent, and has grown into manhood in my service. He shall +be ready to attend on you when you will during his stay, and shall take +your instructions in all matters.” + +The Count himself came forward and took off the cover of a dish, and I +fell to at once on an excellent roast chicken. This, with some cheese +and a salad and a bottle of old Tokay, of which I had two glasses, was +my supper. During the time I was eating it the Count asked me many +questions as to my journey, and I told him by degrees all I had +experienced. + +By this time I had finished my supper, and by my host’s desire had drawn +up a chair by the fire and begun to smoke a cigar which he offered me, +at the same time excusing himself that he did not smoke. I had now an +opportunity of observing him, and found him of a very marked +physiognomy. + +His face was a strong--a very strong--aquiline, with high bridge of the +thin nose and peculiarly arched nostrils; with lofty domed forehead, and +hair growing scantily round the temples but profusely elsewhere. His +eyebrows were very massive, almost meeting over the nose, and with bushy +hair that seemed to curl in its own profusion. The mouth, so far as I +could see it under the heavy moustache, was fixed and rather +cruel-looking, with peculiarly sharp white teeth; these protruded over +the lips, whose remarkable ruddiness showed astonishing vitality in a +man of his years. For the rest, his ears were pale, and at the tops +extremely pointed; the chin was broad and strong, and the cheeks firm +though thin. The general effect was one of extraordinary pallor. + +Hitherto I had noticed the backs of his hands as they lay on his knees +in the firelight, and they had seemed rather white and fine; but seeing +them now close to me, I could not but notice that they were rather +coarse--broad, with squat fingers. Strange to say, there were hairs in +the centre of the palm. The nails were long and fine, and cut to a sharp +point. As the Count leaned over me and his hands touched me, I could not +repress a shudder. It may have been that his breath was rank, but a +horrible feeling of nausea came over me, which, do what I would, I could +not conceal. The Count, evidently noticing it, drew back; and with a +grim sort of smile, which showed more than he had yet done his +protuberant teeth, sat himself down again on his own side of the +fireplace. We were both silent for a while; and as I looked towards the +window I saw the first dim streak of the coming dawn. There seemed a +strange stillness over everything; but as I listened I heard as if from +down below in the valley the howling of many wolves. The Count’s eyes +gleamed, and he said:-- + +“Listen to them--the children of the night. What music they make!” +Seeing, I suppose, some expression in my face strange to him, he +added:-- + +“Ah, sir, you dwellers in the city cannot enter into the feelings of the +hunter.” Then he rose and said:-- + +“But you must be tired. Your bedroom is all ready, and to-morrow you +shall sleep as late as you will. I have to be away till the afternoon; +so sleep well and dream well!” With a courteous bow, he opened for me +himself the door to the octagonal room, and I entered my bedroom.... + +I am all in a sea of wonders. I doubt; I fear; I think strange things, +which I dare not confess to my own soul. God keep me, if only for the +sake of those dear to me! + + * * * * * + +_7 May._--It is again early morning, but I have rested and enjoyed the +last twenty-four hours. I slept till late in the day, and awoke of my +own accord. When I had dressed myself I went into the room where we had +supped, and found a cold breakfast laid out, with coffee kept hot by the +pot being placed on the hearth. There was a card on the table, on which +was written:-- + +“I have to be absent for a while. Do not wait for me.--D.” I set to and +enjoyed a hearty meal. When I had done, I looked for a bell, so that I +might let the servants know I had finished; but I could not find one. +There are certainly odd deficiencies in the house, considering the +extraordinary evidences of wealth which are round me. The table service +is of gold, and so beautifully wrought that it must be of immense value. +The curtains and upholstery of the chairs and sofas and the hangings of +my bed are of the costliest and most beautiful fabrics, and must have +been of fabulous value when they were made, for they are centuries old, +though in excellent order. I saw something like them in Hampton Court, +but there they were worn and frayed and moth-eaten. But still in none of +the rooms is there a mirror. There is not even a toilet glass on my +table, and I had to get the little shaving glass from my bag before I +could either shave or brush my hair. I have not yet seen a servant +anywhere, or heard a sound near the castle except the howling of wolves. +Some time after I had finished my meal--I do not know whether to call it +breakfast or dinner, for it was between five and six o’clock when I had +it--I looked about for something to read, for I did not like to go about +the castle until I had asked the Count’s permission. There was +absolutely nothing in the room, book, newspaper, or even writing +materials; so I opened another door in the room and found a sort of +library. The door opposite mine I tried, but found it locked. + +In the library I found, to my great delight, a vast number of English +books, whole shelves full of them, and bound volumes of magazines and +newspapers. A table in the centre was littered with English magazines +and newspapers, though none of them were of very recent date. The books +were of the most varied kind--history, geography, politics, political +economy, botany, geology, law--all relating to England and English life +and customs and manners. There were even such books of reference as the +London Directory, the “Red” and “Blue” books, Whitaker’s Almanac, the +Army and Navy Lists, and--it somehow gladdened my heart to see it--the +Law List. + +Whilst I was looking at the books, the door opened, and the Count +entered. He saluted me in a hearty way, and hoped that I had had a good +night’s rest. Then he went on:-- + +“I am glad you found your way in here, for I am sure there is much that +will interest you. These companions”--and he laid his hand on some of +the books--“have been good friends to me, and for some years past, ever +since I had the idea of going to London, have given me many, many hours +of pleasure. Through them I have come to know your great England; and to +know her is to love her. I long to go through the crowded streets of +your mighty London, to be in the midst of the whirl and rush of +humanity, to share its life, its change, its death, and all that makes +it what it is. But alas! as yet I only know your tongue through books. +To you, my friend, I look that I know it to speak.” + +“But, Count,” I said, “you know and speak English thoroughly!” He bowed +gravely. + +“I thank you, my friend, for your all too-flattering estimate, but yet I +fear that I am but a little way on the road I would travel. True, I know +the grammar and the words, but yet I know not how to speak them.” + +“Indeed,” I said, “you speak excellently.” + +“Not so,” he answered. “Well, I know that, did I move and speak in your +London, none there are who would not know me for a stranger. That is not +enough for me. Here I am noble; I am _boyar_; the common people know me, +and I am master. But a stranger in a strange land, he is no one; men +know him not--and to know not is to care not for. I am content if I am +like the rest, so that no man stops if he see me, or pause in his +speaking if he hear my words, ‘Ha, ha! a stranger!’ I have been so long +master that I would be master still--or at least that none other should +be master of me. You come to me not alone as agent of my friend Peter +Hawkins, of Exeter, to tell me all about my new estate in London. You +shall, I trust, rest here with me awhile, so that by our talking I may +learn the English intonation; and I would that you tell me when I make +error, even of the smallest, in my speaking. I am sorry that I had to be +away so long to-day; but you will, I know, forgive one who has so many +important affairs in hand.” + +Of course I said all I could about being willing, and asked if I might +come into that room when I chose. He answered: “Yes, certainly,” and +added:-- + +“You may go anywhere you wish in the castle, except where the doors are +locked, where of course you will not wish to go. There is reason that +all things are as they are, and did you see with my eyes and know with +my knowledge, you would perhaps better understand.” I said I was sure of +this, and then he went on:-- + +“We are in Transylvania; and Transylvania is not England. Our ways are +not your ways, and there shall be to you many strange things. Nay, from +what you have told me of your experiences already, you know something of +what strange things there may be.” + +This led to much conversation; and as it was evident that he wanted to +talk, if only for talking’s sake, I asked him many questions regarding +things that had already happened to me or come within my notice. +Sometimes he sheered off the subject, or turned the conversation by +pretending not to understand; but generally he answered all I asked most +frankly. Then as time went on, and I had got somewhat bolder, I asked +him of some of the strange things of the preceding night, as, for +instance, why the coachman went to the places where he had seen the blue +flames. He then explained to me that it was commonly believed that on a +certain night of the year--last night, in fact, when all evil spirits +are supposed to have unchecked sway--a blue flame is seen over any place +where treasure has been concealed. “That treasure has been hidden,” he +went on, “in the region through which you came last night, there can be +but little doubt; for it was the ground fought over for centuries by the +Wallachian, the Saxon, and the Turk. Why, there is hardly a foot of soil +in all this region that has not been enriched by the blood of men, +patriots or invaders. In old days there were stirring times, when the +Austrian and the Hungarian came up in hordes, and the patriots went out +to meet them--men and women, the aged and the children too--and waited +their coming on the rocks above the passes, that they might sweep +destruction on them with their artificial avalanches. When the invader +was triumphant he found but little, for whatever there was had been +sheltered in the friendly soil.” + +“But how,” said I, “can it have remained so long undiscovered, when +there is a sure index to it if men will but take the trouble to look?” +The Count smiled, and as his lips ran back over his gums, the long, +sharp, canine teeth showed out strangely; he answered:-- + +“Because your peasant is at heart a coward and a fool! Those flames only +appear on one night; and on that night no man of this land will, if he +can help it, stir without his doors. And, dear sir, even if he did he +would not know what to do. Why, even the peasant that you tell me of who +marked the place of the flame would not know where to look in daylight +even for his own work. Even you would not, I dare be sworn, be able to +find these places again?” + +“There you are right,” I said. “I know no more than the dead where even +to look for them.” Then we drifted into other matters. + +“Come,” he said at last, “tell me of London and of the house which you +have procured for me.” With an apology for my remissness, I went into my +own room to get the papers from my bag. Whilst I was placing them in +order I heard a rattling of china and silver in the next room, and as I +passed through, noticed that the table had been cleared and the lamp +lit, for it was by this time deep into the dark. The lamps were also lit +in the study or library, and I found the Count lying on the sofa, +reading, of all things in the world, an English Bradshaw’s Guide. When I +came in he cleared the books and papers from the table; and with him I +went into plans and deeds and figures of all sorts. He was interested in +everything, and asked me a myriad questions about the place and its +surroundings. He clearly had studied beforehand all he could get on the +subject of the neighbourhood, for he evidently at the end knew very much +more than I did. When I remarked this, he answered:-- + +“Well, but, my friend, is it not needful that I should? When I go there +I shall be all alone, and my friend Harker Jonathan--nay, pardon me, I +fall into my country’s habit of putting your patronymic first--my friend +Jonathan Harker will not be by my side to correct and aid me. He will be +in Exeter, miles away, probably working at papers of the law with my +other friend, Peter Hawkins. So!” + +We went thoroughly into the business of the purchase of the estate at +Purfleet. When I had told him the facts and got his signature to the +necessary papers, and had written a letter with them ready to post to +Mr. Hawkins, he began to ask me how I had come across so suitable a +place. I read to him the notes which I had made at the time, and which I +inscribe here:-- + +“At Purfleet, on a by-road, I came across just such a place as seemed to +be required, and where was displayed a dilapidated notice that the place +was for sale. It is surrounded by a high wall, of ancient structure, +built of heavy stones, and has not been repaired for a large number of +years. The closed gates are of heavy old oak and iron, all eaten with +rust. + +“The estate is called Carfax, no doubt a corruption of the old _Quatre +Face_, as the house is four-sided, agreeing with the cardinal points of +the compass. It contains in all some twenty acres, quite surrounded by +the solid stone wall above mentioned. There are many trees on it, which +make it in places gloomy, and there is a deep, dark-looking pond or +small lake, evidently fed by some springs, as the water is clear and +flows away in a fair-sized stream. The house is very large and of all +periods back, I should say, to mediæval times, for one part is of stone +immensely thick, with only a few windows high up and heavily barred with +iron. It looks like part of a keep, and is close to an old chapel or +church. I could not enter it, as I had not the key of the door leading +to it from the house, but I have taken with my kodak views of it from +various points. The house has been added to, but in a very straggling +way, and I can only guess at the amount of ground it covers, which must +be very great. There are but few houses close at hand, one being a very +large house only recently added to and formed into a private lunatic +asylum. It is not, however, visible from the grounds.” + +When I had finished, he said:-- + +“I am glad that it is old and big. I myself am of an old family, and to +live in a new house would kill me. A house cannot be made habitable in a +day; and, after all, how few days go to make up a century. I rejoice +also that there is a chapel of old times. We Transylvanian nobles love +not to think that our bones may lie amongst the common dead. I seek not +gaiety nor mirth, not the bright voluptuousness of much sunshine and +sparkling waters which please the young and gay. I am no longer young; +and my heart, through weary years of mourning over the dead, is not +attuned to mirth. Moreover, the walls of my castle are broken; the +shadows are many, and the wind breathes cold through the broken +battlements and casements. I love the shade and the shadow, and would +be alone with my thoughts when I may.” Somehow his words and his look +did not seem to accord, or else it was that his cast of face made his +smile look malignant and saturnine. + +Presently, with an excuse, he left me, asking me to put all my papers +together. He was some little time away, and I began to look at some of +the books around me. One was an atlas, which I found opened naturally at +England, as if that map had been much used. On looking at it I found in +certain places little rings marked, and on examining these I noticed +that one was near London on the east side, manifestly where his new +estate was situated; the other two were Exeter, and Whitby on the +Yorkshire coast. + +It was the better part of an hour when the Count returned. “Aha!” he +said; “still at your books? Good! But you must not work always. Come; I +am informed that your supper is ready.” He took my arm, and we went into +the next room, where I found an excellent supper ready on the table. The +Count again excused himself, as he had dined out on his being away from +home. But he sat as on the previous night, and chatted whilst I ate. +After supper I smoked, as on the last evening, and the Count stayed with +me, chatting and asking questions on every conceivable subject, hour +after hour. I felt that it was getting very late indeed, but I did not +say anything, for I felt under obligation to meet my host’s wishes in +every way. I was not sleepy, as the long sleep yesterday had fortified +me; but I could not help experiencing that chill which comes over one at +the coming of the dawn, which is like, in its way, the turn of the tide. +They say that people who are near death die generally at the change to +the dawn or at the turn of the tide; any one who has when tired, and +tied as it were to his post, experienced this change in the atmosphere +can well believe it. All at once we heard the crow of a cock coming up +with preternatural shrillness through the clear morning air; Count +Dracula, jumping to his feet, said:-- + +“Why, there is the morning again! How remiss I am to let you stay up so +long. You must make your conversation regarding my dear new country of +England less interesting, so that I may not forget how time flies by +us,” and, with a courtly bow, he quickly left me. + +I went into my own room and drew the curtains, but there was little to +notice; my window opened into the courtyard, all I could see was the +warm grey of quickening sky. So I pulled the curtains again, and have +written of this day. + + * * * * * + +_8 May._--I began to fear as I wrote in this book that I was getting too +diffuse; but now I am glad that I went into detail from the first, for +there is something so strange about this place and all in it that I +cannot but feel uneasy. I wish I were safe out of it, or that I had +never come. It may be that this strange night-existence is telling on +me; but would that that were all! If there were any one to talk to I +could bear it, but there is no one. I have only the Count to speak with, +and he!--I fear I am myself the only living soul within the place. Let +me be prosaic so far as facts can be; it will help me to bear up, and +imagination must not run riot with me. If it does I am lost. Let me say +at once how I stand--or seem to. + +I only slept a few hours when I went to bed, and feeling that I could +not sleep any more, got up. I had hung my shaving glass by the window, +and was just beginning to shave. Suddenly I felt a hand on my shoulder, +and heard the Count’s voice saying to me, “Good-morning.” I started, for +it amazed me that I had not seen him, since the reflection of the glass +covered the whole room behind me. In starting I had cut myself slightly, +but did not notice it at the moment. Having answered the Count’s +salutation, I turned to the glass again to see how I had been mistaken. +This time there could be no error, for the man was close to me, and I +could see him over my shoulder. But there was no reflection of him in +the mirror! The whole room behind me was displayed; but there was no +sign of a man in it, except myself. This was startling, and, coming on +the top of so many strange things, was beginning to increase that vague +feeling of uneasiness which I always have when the Count is near; but at +the instant I saw that the cut had bled a little, and the blood was +trickling over my chin. I laid down the razor, turning as I did so half +round to look for some sticking plaster. When the Count saw my face, his +eyes blazed with a sort of demoniac fury, and he suddenly made a grab at +my throat. I drew away, and his hand touched the string of beads which +held the crucifix. It made an instant change in him, for the fury passed +so quickly that I could hardly believe that it was ever there. + +“Take care,” he said, “take care how you cut yourself. It is more +dangerous than you think in this country.” Then seizing the shaving +glass, he went on: “And this is the wretched thing that has done the +mischief. It is a foul bauble of man’s vanity. Away with it!” and +opening the heavy window with one wrench of his terrible hand, he flung +out the glass, which was shattered into a thousand pieces on the stones +of the courtyard far below. Then he withdrew without a word. It is very +annoying, for I do not see how I am to shave, unless in my watch-case or +the bottom of the shaving-pot, which is fortunately of metal. + +When I went into the dining-room, breakfast was prepared; but I could +not find the Count anywhere. So I breakfasted alone. It is strange that +as yet I have not seen the Count eat or drink. He must be a very +peculiar man! After breakfast I did a little exploring in the castle. I +went out on the stairs, and found a room looking towards the South. The +view was magnificent, and from where I stood there was every opportunity +of seeing it. The castle is on the very edge of a terrible precipice. A +stone falling from the window would fall a thousand feet without +touching anything! As far as the eye can reach is a sea of green tree +tops, with occasionally a deep rift where there is a chasm. Here and +there are silver threads where the rivers wind in deep gorges through +the forests. + +But I am not in heart to describe beauty, for when I had seen the view I +explored further; doors, doors, doors everywhere, and all locked and +bolted. In no place save from the windows in the castle walls is there +an available exit. + +The castle is a veritable prison, and I am a prisoner! + + + + +CHAPTER III + +JONATHAN HARKER’S JOURNAL--_continued_ + + +When I found that I was a prisoner a sort of wild feeling came over me. +I rushed up and down the stairs, trying every door and peering out of +every window I could find; but after a little the conviction of my +helplessness overpowered all other feelings. When I look back after a +few hours I think I must have been mad for the time, for I behaved much +as a rat does in a trap. When, however, the conviction had come to me +that I was helpless I sat down quietly--as quietly as I have ever done +anything in my life--and began to think over what was best to be done. I +am thinking still, and as yet have come to no definite conclusion. Of +one thing only am I certain; that it is no use making my ideas known to +the Count. He knows well that I am imprisoned; and as he has done it +himself, and has doubtless his own motives for it, he would only deceive +me if I trusted him fully with the facts. So far as I can see, my only +plan will be to keep my knowledge and my fears to myself, and my eyes +open. I am, I know, either being deceived, like a baby, by my own fears, +or else I am in desperate straits; and if the latter be so, I need, and +shall need, all my brains to get through. + +I had hardly come to this conclusion when I heard the great door below +shut, and knew that the Count had returned. He did not come at once into +the library, so I went cautiously to my own room and found him making +the bed. This was odd, but only confirmed what I had all along +thought--that there were no servants in the house. When later I saw him +through the chink of the hinges of the door laying the table in the +dining-room, I was assured of it; for if he does himself all these +menial offices, surely it is proof that there is no one else to do them. +This gave me a fright, for if there is no one else in the castle, it +must have been the Count himself who was the driver of the coach that +brought me here. This is a terrible thought; for if so, what does it +mean that he could control the wolves, as he did, by only holding up his +hand in silence. How was it that all the people at Bistritz and on the +coach had some terrible fear for me? What meant the giving of the +crucifix, of the garlic, of the wild rose, of the mountain ash? Bless +that good, good woman who hung the crucifix round my neck! for it is a +comfort and a strength to me whenever I touch it. It is odd that a thing +which I have been taught to regard with disfavour and as idolatrous +should in a time of loneliness and trouble be of help. Is it that there +is something in the essence of the thing itself, or that it is a medium, +a tangible help, in conveying memories of sympathy and comfort? Some +time, if it may be, I must examine this matter and try to make up my +mind about it. In the meantime I must find out all I can about Count +Dracula, as it may help me to understand. To-night he may talk of +himself, if I turn the conversation that way. I must be very careful, +however, not to awake his suspicion. + + * * * * * + +_Midnight._--I have had a long talk with the Count. I asked him a few +questions on Transylvania history, and he warmed up to the subject +wonderfully. In his speaking of things and people, and especially of +battles, he spoke as if he had been present at them all. This he +afterwards explained by saying that to a _boyar_ the pride of his house +and name is his own pride, that their glory is his glory, that their +fate is his fate. Whenever he spoke of his house he always said “we,” +and spoke almost in the plural, like a king speaking. I wish I could put +down all he said exactly as he said it, for to me it was most +fascinating. It seemed to have in it a whole history of the country. He +grew excited as he spoke, and walked about the room pulling his great +white moustache and grasping anything on which he laid his hands as +though he would crush it by main strength. One thing he said which I +shall put down as nearly as I can; for it tells in its way the story of +his race:-- + +“We Szekelys have a right to be proud, for in our veins flows the blood +of many brave races who fought as the lion fights, for lordship. Here, +in the whirlpool of European races, the Ugric tribe bore down from +Iceland the fighting spirit which Thor and Wodin gave them, which their +Berserkers displayed to such fell intent on the seaboards of Europe, ay, +and of Asia and Africa too, till the peoples thought that the +were-wolves themselves had come. Here, too, when they came, they found +the Huns, whose warlike fury had swept the earth like a living flame, +till the dying peoples held that in their veins ran the blood of those +old witches, who, expelled from Scythia had mated with the devils in the +desert. Fools, fools! What devil or what witch was ever so great as +Attila, whose blood is in these veins?” He held up his arms. “Is it a +wonder that we were a conquering race; that we were proud; that when the +Magyar, the Lombard, the Avar, the Bulgar, or the Turk poured his +thousands on our frontiers, we drove them back? Is it strange that when +Arpad and his legions swept through the Hungarian fatherland he found us +here when he reached the frontier; that the Honfoglalas was completed +there? And when the Hungarian flood swept eastward, the Szekelys were +claimed as kindred by the victorious Magyars, and to us for centuries +was trusted the guarding of the frontier of Turkey-land; ay, and more +than that, endless duty of the frontier guard, for, as the Turks say, +‘water sleeps, and enemy is sleepless.’ Who more gladly than we +throughout the Four Nations received the ‘bloody sword,’ or at its +warlike call flocked quicker to the standard of the King? When was +redeemed that great shame of my nation, the shame of Cassova, when the +flags of the Wallach and the Magyar went down beneath the Crescent? Who +was it but one of my own race who as Voivode crossed the Danube and beat +the Turk on his own ground? This was a Dracula indeed! Woe was it that +his own unworthy brother, when he had fallen, sold his people to the +Turk and brought the shame of slavery on them! Was it not this Dracula, +indeed, who inspired that other of his race who in a later age again and +again brought his forces over the great river into Turkey-land; who, +when he was beaten back, came again, and again, and again, though he had +to come alone from the bloody field where his troops were being +slaughtered, since he knew that he alone could ultimately triumph! They +said that he thought only of himself. Bah! what good are peasants +without a leader? Where ends the war without a brain and heart to +conduct it? Again, when, after the battle of Mohács, we threw off the +Hungarian yoke, we of the Dracula blood were amongst their leaders, for +our spirit would not brook that we were not free. Ah, young sir, the +Szekelys--and the Dracula as their heart’s blood, their brains, and +their swords--can boast a record that mushroom growths like the +Hapsburgs and the Romanoffs can never reach. The warlike days are over. +Blood is too precious a thing in these days of dishonourable peace; and +the glories of the great races are as a tale that is told.” + +It was by this time close on morning, and we went to bed. (_Mem._, this +diary seems horribly like the beginning of the “Arabian Nights,” for +everything has to break off at cockcrow--or like the ghost of Hamlet’s +father.) + + * * * * * + +_12 May._--Let me begin with facts--bare, meagre facts, verified by +books and figures, and of which there can be no doubt. I must not +confuse them with experiences which will have to rest on my own +observation, or my memory of them. Last evening when the Count came from +his room he began by asking me questions on legal matters and on the +doing of certain kinds of business. I had spent the day wearily over +books, and, simply to keep my mind occupied, went over some of the +matters I had been examining at Lincoln’s Inn. There was a certain +method in the Count’s inquiries, so I shall try to put them down in +sequence; the knowledge may somehow or some time be useful to me. + +First, he asked if a man in England might have two solicitors or more. I +told him he might have a dozen if he wished, but that it would not be +wise to have more than one solicitor engaged in one transaction, as only +one could act at a time, and that to change would be certain to militate +against his interest. He seemed thoroughly to understand, and went on to +ask if there would be any practical difficulty in having one man to +attend, say, to banking, and another to look after shipping, in case +local help were needed in a place far from the home of the banking +solicitor. I asked him to explain more fully, so that I might not by any +chance mislead him, so he said:-- + +“I shall illustrate. Your friend and mine, Mr. Peter Hawkins, from under +the shadow of your beautiful cathedral at Exeter, which is far from +London, buys for me through your good self my place at London. Good! Now +here let me say frankly, lest you should think it strange that I have +sought the services of one so far off from London instead of some one +resident there, that my motive was that no local interest might be +served save my wish only; and as one of London residence might, perhaps, +have some purpose of himself or friend to serve, I went thus afield to +seek my agent, whose labours should be only to my interest. Now, suppose +I, who have much of affairs, wish to ship goods, say, to Newcastle, or +Durham, or Harwich, or Dover, might it not be that it could with more +ease be done by consigning to one in these ports?” I answered that +certainly it would be most easy, but that we solicitors had a system of +agency one for the other, so that local work could be done locally on +instruction from any solicitor, so that the client, simply placing +himself in the hands of one man, could have his wishes carried out by +him without further trouble. + +“But,” said he, “I could be at liberty to direct myself. Is it not so?” + +“Of course,” I replied; and “such is often done by men of business, who +do not like the whole of their affairs to be known by any one person.” + +“Good!” he said, and then went on to ask about the means of making +consignments and the forms to be gone through, and of all sorts of +difficulties which might arise, but by forethought could be guarded +against. I explained all these things to him to the best of my ability, +and he certainly left me under the impression that he would have made a +wonderful solicitor, for there was nothing that he did not think of or +foresee. For a man who was never in the country, and who did not +evidently do much in the way of business, his knowledge and acumen were +wonderful. When he had satisfied himself on these points of which he had +spoken, and I had verified all as well as I could by the books +available, he suddenly stood up and said:-- + +“Have you written since your first letter to our friend Mr. Peter +Hawkins, or to any other?” It was with some bitterness in my heart that +I answered that I had not, that as yet I had not seen any opportunity of +sending letters to anybody. + +“Then write now, my young friend,” he said, laying a heavy hand on my +shoulder: “write to our friend and to any other; and say, if it will +please you, that you shall stay with me until a month from now.” + +“Do you wish me to stay so long?” I asked, for my heart grew cold at the +thought. + +“I desire it much; nay, I will take no refusal. When your master, +employer, what you will, engaged that someone should come on his behalf, +it was understood that my needs only were to be consulted. I have not +stinted. Is it not so?” + +What could I do but bow acceptance? It was Mr. Hawkins’s interest, not +mine, and I had to think of him, not myself; and besides, while Count +Dracula was speaking, there was that in his eyes and in his bearing +which made me remember that I was a prisoner, and that if I wished it I +could have no choice. The Count saw his victory in my bow, and his +mastery in the trouble of my face, for he began at once to use them, but +in his own smooth, resistless way:-- + +“I pray you, my good young friend, that you will not discourse of things +other than business in your letters. It will doubtless please your +friends to know that you are well, and that you look forward to getting +home to them. Is it not so?” As he spoke he handed me three sheets of +note-paper and three envelopes. They were all of the thinnest foreign +post, and looking at them, then at him, and noticing his quiet smile, +with the sharp, canine teeth lying over the red underlip, I understood +as well as if he had spoken that I should be careful what I wrote, for +he would be able to read it. So I determined to write only formal notes +now, but to write fully to Mr. Hawkins in secret, and also to Mina, for +to her I could write in shorthand, which would puzzle the Count, if he +did see it. When I had written my two letters I sat quiet, reading a +book whilst the Count wrote several notes, referring as he wrote them to +some books on his table. Then he took up my two and placed them with his +own, and put by his writing materials, after which, the instant the door +had closed behind him, I leaned over and looked at the letters, which +were face down on the table. I felt no compunction in doing so, for +under the circumstances I felt that I should protect myself in every way +I could. + +One of the letters was directed to Samuel F. Billington, No. 7, The +Crescent, Whitby, another to Herr Leutner, Varna; the third was to +Coutts & Co., London, and the fourth to Herren Klopstock & Billreuth, +bankers, Buda-Pesth. The second and fourth were unsealed. I was just +about to look at them when I saw the door-handle move. I sank back in my +seat, having just had time to replace the letters as they had been and +to resume my book before the Count, holding still another letter in his +hand, entered the room. He took up the letters on the table and stamped +them carefully, and then turning to me, said:-- + +“I trust you will forgive me, but I have much work to do in private this +evening. You will, I hope, find all things as you wish.” At the door he +turned, and after a moment’s pause said:-- + +“Let me advise you, my dear young friend--nay, let me warn you with all +seriousness, that should you leave these rooms you will not by any +chance go to sleep in any other part of the castle. It is old, and has +many memories, and there are bad dreams for those who sleep unwisely. Be +warned! Should sleep now or ever overcome you, or be like to do, then +haste to your own chamber or to these rooms, for your rest will then be +safe. But if you be not careful in this respect, then”--He finished his +speech in a gruesome way, for he motioned with his hands as if he were +washing them. I quite understood; my only doubt was as to whether any +dream could be more terrible than the unnatural, horrible net of gloom +and mystery which seemed closing around me. + + * * * * * + +_Later._--I endorse the last words written, but this time there is no +doubt in question. I shall not fear to sleep in any place where he is +not. I have placed the crucifix over the head of my bed--I imagine that +my rest is thus freer from dreams; and there it shall remain. + +When he left me I went to my room. After a little while, not hearing any +sound, I came out and went up the stone stair to where I could look out +towards the South. There was some sense of freedom in the vast expanse, +inaccessible though it was to me, as compared with the narrow darkness +of the courtyard. Looking out on this, I felt that I was indeed in +prison, and I seemed to want a breath of fresh air, though it were of +the night. I am beginning to feel this nocturnal existence tell on me. +It is destroying my nerve. I start at my own shadow, and am full of all +sorts of horrible imaginings. God knows that there is ground for my +terrible fear in this accursed place! I looked out over the beautiful +expanse, bathed in soft yellow moonlight till it was almost as light as +day. In the soft light the distant hills became melted, and the shadows +in the valleys and gorges of velvety blackness. The mere beauty seemed +to cheer me; there was peace and comfort in every breath I drew. As I +leaned from the window my eye was caught by something moving a storey +below me, and somewhat to my left, where I imagined, from the order of +the rooms, that the windows of the Count’s own room would look out. The +window at which I stood was tall and deep, stone-mullioned, and though +weatherworn, was still complete; but it was evidently many a day since +the case had been there. I drew back behind the stonework, and looked +carefully out. + +What I saw was the Count’s head coming out from the window. I did not +see the face, but I knew the man by the neck and the movement of his +back and arms. In any case I could not mistake the hands which I had had +so many opportunities of studying. I was at first interested and +somewhat amused, for it is wonderful how small a matter will interest +and amuse a man when he is a prisoner. But my very feelings changed to +repulsion and terror when I saw the whole man slowly emerge from the +window and begin to crawl down the castle wall over that dreadful abyss, +_face down_ with his cloak spreading out around him like great wings. At +first I could not believe my eyes. I thought it was some trick of the +moonlight, some weird effect of shadow; but I kept looking, and it could +be no delusion. I saw the fingers and toes grasp the corners of the +stones, worn clear of the mortar by the stress of years, and by thus +using every projection and inequality move downwards with considerable +speed, just as a lizard moves along a wall. + +What manner of man is this, or what manner of creature is it in the +semblance of man? I feel the dread of this horrible place overpowering +me; I am in fear--in awful fear--and there is no escape for me; I am +encompassed about with terrors that I dare not think of.... + + * * * * * + +_15 May._--Once more have I seen the Count go out in his lizard fashion. +He moved downwards in a sidelong way, some hundred feet down, and a good +deal to the left. He vanished into some hole or window. When his head +had disappeared, I leaned out to try and see more, but without +avail--the distance was too great to allow a proper angle of sight. I +knew he had left the castle now, and thought to use the opportunity to +explore more than I had dared to do as yet. I went back to the room, and +taking a lamp, tried all the doors. They were all locked, as I had +expected, and the locks were comparatively new; but I went down the +stone stairs to the hall where I had entered originally. I found I could +pull back the bolts easily enough and unhook the great chains; but the +door was locked, and the key was gone! That key must be in the Count’s +room; I must watch should his door be unlocked, so that I may get it and +escape. I went on to make a thorough examination of the various stairs +and passages, and to try the doors that opened from them. One or two +small rooms near the hall were open, but there was nothing to see in +them except old furniture, dusty with age and moth-eaten. At last, +however, I found one door at the top of the stairway which, though it +seemed to be locked, gave a little under pressure. I tried it harder, +and found that it was not really locked, but that the resistance came +from the fact that the hinges had fallen somewhat, and the heavy door +rested on the floor. Here was an opportunity which I might not have +again, so I exerted myself, and with many efforts forced it back so that +I could enter. I was now in a wing of the castle further to the right +than the rooms I knew and a storey lower down. From the windows I could +see that the suite of rooms lay along to the south of the castle, the +windows of the end room looking out both west and south. On the latter +side, as well as to the former, there was a great precipice. The castle +was built on the corner of a great rock, so that on three sides it was +quite impregnable, and great windows were placed here where sling, or +bow, or culverin could not reach, and consequently light and comfort, +impossible to a position which had to be guarded, were secured. To the +west was a great valley, and then, rising far away, great jagged +mountain fastnesses, rising peak on peak, the sheer rock studded with +mountain ash and thorn, whose roots clung in cracks and crevices and +crannies of the stone. This was evidently the portion of the castle +occupied by the ladies in bygone days, for the furniture had more air of +comfort than any I had seen. The windows were curtainless, and the +yellow moonlight, flooding in through the diamond panes, enabled one to +see even colours, whilst it softened the wealth of dust which lay over +all and disguised in some measure the ravages of time and the moth. My +lamp seemed to be of little effect in the brilliant moonlight, but I was +glad to have it with me, for there was a dread loneliness in the place +which chilled my heart and made my nerves tremble. Still, it was better +than living alone in the rooms which I had come to hate from the +presence of the Count, and after trying a little to school my nerves, I +found a soft quietude come over me. Here I am, sitting at a little oak +table where in old times possibly some fair lady sat to pen, with much +thought and many blushes, her ill-spelt love-letter, and writing in my +diary in shorthand all that has happened since I closed it last. It is +nineteenth century up-to-date with a vengeance. And yet, unless my +senses deceive me, the old centuries had, and have, powers of their own +which mere “modernity” cannot kill. + + * * * * * + +_Later: the Morning of 16 May._--God preserve my sanity, for to this I +am reduced. Safety and the assurance of safety are things of the past. +Whilst I live on here there is but one thing to hope for, that I may not +go mad, if, indeed, I be not mad already. If I be sane, then surely it +is maddening to think that of all the foul things that lurk in this +hateful place the Count is the least dreadful to me; that to him alone I +can look for safety, even though this be only whilst I can serve his +purpose. Great God! merciful God! Let me be calm, for out of that way +lies madness indeed. I begin to get new lights on certain things which +have puzzled me. Up to now I never quite knew what Shakespeare meant +when he made Hamlet say:-- + + “My tablets! quick, my tablets! + ’Tis meet that I put it down,” etc., + +for now, feeling as though my own brain were unhinged or as if the shock +had come which must end in its undoing, I turn to my diary for repose. +The habit of entering accurately must help to soothe me. + +The Count’s mysterious warning frightened me at the time; it frightens +me more now when I think of it, for in future he has a fearful hold upon +me. I shall fear to doubt what he may say! + +When I had written in my diary and had fortunately replaced the book and +pen in my pocket I felt sleepy. The Count’s warning came into my mind, +but I took a pleasure in disobeying it. The sense of sleep was upon me, +and with it the obstinacy which sleep brings as outrider. The soft +moonlight soothed, and the wide expanse without gave a sense of freedom +which refreshed me. I determined not to return to-night to the +gloom-haunted rooms, but to sleep here, where, of old, ladies had sat +and sung and lived sweet lives whilst their gentle breasts were sad for +their menfolk away in the midst of remorseless wars. I drew a great +couch out of its place near the corner, so that as I lay, I could look +at the lovely view to east and south, and unthinking of and uncaring for +the dust, composed myself for sleep. I suppose I must have fallen +asleep; I hope so, but I fear, for all that followed was startlingly +real--so real that now sitting here in the broad, full sunlight of the +morning, I cannot in the least believe that it was all sleep. + +I was not alone. The room was the same, unchanged in any way since I +came into it; I could see along the floor, in the brilliant moonlight, +my own footsteps marked where I had disturbed the long accumulation of +dust. In the moonlight opposite me were three young women, ladies by +their dress and manner. I thought at the time that I must be dreaming +when I saw them, for, though the moonlight was behind them, they threw +no shadow on the floor. They came close to me, and looked at me for some +time, and then whispered together. Two were dark, and had high aquiline +noses, like the Count, and great dark, piercing eyes that seemed to be +almost red when contrasted with the pale yellow moon. The other was +fair, as fair as can be, with great wavy masses of golden hair and eyes +like pale sapphires. I seemed somehow to know her face, and to know it +in connection with some dreamy fear, but I could not recollect at the +moment how or where. All three had brilliant white teeth that shone like +pearls against the ruby of their voluptuous lips. There was something +about them that made me uneasy, some longing and at the same time some +deadly fear. I felt in my heart a wicked, burning desire that they would +kiss me with those red lips. It is not good to note this down, lest some +day it should meet Mina’s eyes and cause her pain; but it is the truth. +They whispered together, and then they all three laughed--such a +silvery, musical laugh, but as hard as though the sound never could have +come through the softness of human lips. It was like the intolerable, +tingling sweetness of water-glasses when played on by a cunning hand. +The fair girl shook her head coquettishly, and the other two urged her +on. One said:-- + +“Go on! You are first, and we shall follow; yours is the right to +begin.” The other added:-- + +“He is young and strong; there are kisses for us all.” I lay quiet, +looking out under my eyelashes in an agony of delightful anticipation. +The fair girl advanced and bent over me till I could feel the movement +of her breath upon me. Sweet it was in one sense, honey-sweet, and sent +the same tingling through the nerves as her voice, but with a bitter +underlying the sweet, a bitter offensiveness, as one smells in blood. + +I was afraid to raise my eyelids, but looked out and saw perfectly under +the lashes. The girl went on her knees, and bent over me, simply +gloating. There was a deliberate voluptuousness which was both thrilling +and repulsive, and as she arched her neck she actually licked her lips +like an animal, till I could see in the moonlight the moisture shining +on the scarlet lips and on the red tongue as it lapped the white sharp +teeth. Lower and lower went her head as the lips went below the range of +my mouth and chin and seemed about to fasten on my throat. Then she +paused, and I could hear the churning sound of her tongue as it licked +her teeth and lips, and could feel the hot breath on my neck. Then the +skin of my throat began to tingle as one’s flesh does when the hand that +is to tickle it approaches nearer--nearer. I could feel the soft, +shivering touch of the lips on the super-sensitive skin of my throat, +and the hard dents of two sharp teeth, just touching and pausing there. +I closed my eyes in a languorous ecstasy and waited--waited with beating +heart. + +But at that instant, another sensation swept through me as quick as +lightning. I was conscious of the presence of the Count, and of his +being as if lapped in a storm of fury. As my eyes opened involuntarily I +saw his strong hand grasp the slender neck of the fair woman and with +giant’s power draw it back, the blue eyes transformed with fury, the +white teeth champing with rage, and the fair cheeks blazing red with +passion. But the Count! Never did I imagine such wrath and fury, even to +the demons of the pit. His eyes were positively blazing. The red light +in them was lurid, as if the flames of hell-fire blazed behind them. His +face was deathly pale, and the lines of it were hard like drawn wires; +the thick eyebrows that met over the nose now seemed like a heaving bar +of white-hot metal. With a fierce sweep of his arm, he hurled the woman +from him, and then motioned to the others, as though he were beating +them back; it was the same imperious gesture that I had seen used to the +wolves. In a voice which, though low and almost in a whisper seemed to +cut through the air and then ring round the room he said:-- + +“How dare you touch him, any of you? How dare you cast eyes on him when +I had forbidden it? Back, I tell you all! This man belongs to me! Beware +how you meddle with him, or you’ll have to deal with me.” The fair girl, +with a laugh of ribald coquetry, turned to answer him:-- + +“You yourself never loved; you never love!” On this the other women +joined, and such a mirthless, hard, soulless laughter rang through the +room that it almost made me faint to hear; it seemed like the pleasure +of fiends. Then the Count turned, after looking at my face attentively, +and said in a soft whisper:-- + +“Yes, I too can love; you yourselves can tell it from the past. Is it +not so? Well, now I promise you that when I am done with him you shall +kiss him at your will. Now go! go! I must awaken him, for there is work +to be done.” + +“Are we to have nothing to-night?” said one of them, with a low laugh, +as she pointed to the bag which he had thrown upon the floor, and which +moved as though there were some living thing within it. For answer he +nodded his head. One of the women jumped forward and opened it. If my +ears did not deceive me there was a gasp and a low wail, as of a +half-smothered child. The women closed round, whilst I was aghast with +horror; but as I looked they disappeared, and with them the dreadful +bag. There was no door near them, and they could not have passed me +without my noticing. They simply seemed to fade into the rays of the +moonlight and pass out through the window, for I could see outside the +dim, shadowy forms for a moment before they entirely faded away. + +Then the horror overcame me, and I sank down unconscious. + + + + +CHAPTER IV + +JONATHAN HARKER’S JOURNAL--_continued_ + + +I awoke in my own bed. If it be that I had not dreamt, the Count must +have carried me here. I tried to satisfy myself on the subject, but +could not arrive at any unquestionable result. To be sure, there were +certain small evidences, such as that my clothes were folded and laid by +in a manner which was not my habit. My watch was still unwound, and I am +rigorously accustomed to wind it the last thing before going to bed, and +many such details. But these things are no proof, for they may have been +evidences that my mind was not as usual, and, from some cause or +another, I had certainly been much upset. I must watch for proof. Of one +thing I am glad: if it was that the Count carried me here and undressed +me, he must have been hurried in his task, for my pockets are intact. I +am sure this diary would have been a mystery to him which he would not +have brooked. He would have taken or destroyed it. As I look round this +room, although it has been to me so full of fear, it is now a sort of +sanctuary, for nothing can be more dreadful than those awful women, who +were--who _are_--waiting to suck my blood. + + * * * * * + +_18 May._--I have been down to look at that room again in daylight, for +I _must_ know the truth. When I got to the doorway at the top of the +stairs I found it closed. It had been so forcibly driven against the +jamb that part of the woodwork was splintered. I could see that the bolt +of the lock had not been shot, but the door is fastened from the inside. +I fear it was no dream, and must act on this surmise. + + * * * * * + +_19 May._--I am surely in the toils. Last night the Count asked me in +the suavest tones to write three letters, one saying that my work here +was nearly done, and that I should start for home within a few days, +another that I was starting on the next morning from the time of the +letter, and the third that I had left the castle and arrived at +Bistritz. I would fain have rebelled, but felt that in the present state +of things it would be madness to quarrel openly with the Count whilst I +am so absolutely in his power; and to refuse would be to excite his +suspicion and to arouse his anger. He knows that I know too much, and +that I must not live, lest I be dangerous to him; my only chance is to +prolong my opportunities. Something may occur which will give me a +chance to escape. I saw in his eyes something of that gathering wrath +which was manifest when he hurled that fair woman from him. He explained +to me that posts were few and uncertain, and that my writing now would +ensure ease of mind to my friends; and he assured me with so much +impressiveness that he would countermand the later letters, which would +be held over at Bistritz until due time in case chance would admit of my +prolonging my stay, that to oppose him would have been to create new +suspicion. I therefore pretended to fall in with his views, and asked +him what dates I should put on the letters. He calculated a minute, and +then said:-- + +“The first should be June 12, the second June 19, and the third June +29.” + +I know now the span of my life. God help me! + + * * * * * + +_28 May._--There is a chance of escape, or at any rate of being able to +send word home. A band of Szgany have come to the castle, and are +encamped in the courtyard. These Szgany are gipsies; I have notes of +them in my book. They are peculiar to this part of the world, though +allied to the ordinary gipsies all the world over. There are thousands +of them in Hungary and Transylvania, who are almost outside all law. +They attach themselves as a rule to some great noble or _boyar_, and +call themselves by his name. They are fearless and without religion, +save superstition, and they talk only their own varieties of the Romany +tongue. + +I shall write some letters home, and shall try to get them to have them +posted. I have already spoken them through my window to begin +acquaintanceship. They took their hats off and made obeisance and many +signs, which, however, I could not understand any more than I could +their spoken language.... + + * * * * * + +I have written the letters. Mina’s is in shorthand, and I simply ask Mr. +Hawkins to communicate with her. To her I have explained my situation, +but without the horrors which I may only surmise. It would shock and +frighten her to death were I to expose my heart to her. Should the +letters not carry, then the Count shall not yet know my secret or the +extent of my knowledge.... + + * * * * * + +I have given the letters; I threw them through the bars of my window +with a gold piece, and made what signs I could to have them posted. The +man who took them pressed them to his heart and bowed, and then put them +in his cap. I could do no more. I stole back to the study, and began to +read. As the Count did not come in, I have written here.... + + * * * * * + +The Count has come. He sat down beside me, and said in his smoothest +voice as he opened two letters:-- + +“The Szgany has given me these, of which, though I know not whence they +come, I shall, of course, take care. See!”--he must have looked at +it--“one is from you, and to my friend Peter Hawkins; the other”--here +he caught sight of the strange symbols as he opened the envelope, and +the dark look came into his face, and his eyes blazed wickedly--“the +other is a vile thing, an outrage upon friendship and hospitality! It is +not signed. Well! so it cannot matter to us.” And he calmly held letter +and envelope in the flame of the lamp till they were consumed. Then he +went on:-- + +“The letter to Hawkins--that I shall, of course, send on, since it is +yours. Your letters are sacred to me. Your pardon, my friend, that +unknowingly I did break the seal. Will you not cover it again?” He held +out the letter to me, and with a courteous bow handed me a clean +envelope. I could only redirect it and hand it to him in silence. When +he went out of the room I could hear the key turn softly. A minute later +I went over and tried it, and the door was locked. + +When, an hour or two after, the Count came quietly into the room, his +coming awakened me, for I had gone to sleep on the sofa. He was very +courteous and very cheery in his manner, and seeing that I had been +sleeping, he said:-- + +“So, my friend, you are tired? Get to bed. There is the surest rest. I +may not have the pleasure to talk to-night, since there are many labours +to me; but you will sleep, I pray.” I passed to my room and went to bed, +and, strange to say, slept without dreaming. Despair has its own calms. + + * * * * * + +_31 May._--This morning when I woke I thought I would provide myself +with some paper and envelopes from my bag and keep them in my pocket, so +that I might write in case I should get an opportunity, but again a +surprise, again a shock! + +Every scrap of paper was gone, and with it all my notes, my memoranda, +relating to railways and travel, my letter of credit, in fact all that +might be useful to me were I once outside the castle. I sat and pondered +awhile, and then some thought occurred to me, and I made search of my +portmanteau and in the wardrobe where I had placed my clothes. + +The suit in which I had travelled was gone, and also my overcoat and +rug; I could find no trace of them anywhere. This looked like some new +scheme of villainy.... + + * * * * * + +_17 June._--This morning, as I was sitting on the edge of my bed +cudgelling my brains, I heard without a cracking of whips and pounding +and scraping of horses’ feet up the rocky path beyond the courtyard. +With joy I hurried to the window, and saw drive into the yard two great +leiter-wagons, each drawn by eight sturdy horses, and at the head of +each pair a Slovak, with his wide hat, great nail-studded belt, dirty +sheepskin, and high boots. They had also their long staves in hand. I +ran to the door, intending to descend and try and join them through the +main hall, as I thought that way might be opened for them. Again a +shock: my door was fastened on the outside. + +Then I ran to the window and cried to them. They looked up at me +stupidly and pointed, but just then the “hetman” of the Szgany came out, +and seeing them pointing to my window, said something, at which they +laughed. Henceforth no effort of mine, no piteous cry or agonised +entreaty, would make them even look at me. They resolutely turned away. +The leiter-wagons contained great, square boxes, with handles of thick +rope; these were evidently empty by the ease with which the Slovaks +handled them, and by their resonance as they were roughly moved. When +they were all unloaded and packed in a great heap in one corner of the +yard, the Slovaks were given some money by the Szgany, and spitting on +it for luck, lazily went each to his horse’s head. Shortly afterwards, I +heard the cracking of their whips die away in the distance. + + * * * * * + +_24 June, before morning._--Last night the Count left me early, and +locked himself into his own room. As soon as I dared I ran up the +winding stair, and looked out of the window, which opened south. I +thought I would watch for the Count, for there is something going on. +The Szgany are quartered somewhere in the castle and are doing work of +some kind. I know it, for now and then I hear a far-away muffled sound +as of mattock and spade, and, whatever it is, it must be the end of some +ruthless villainy. + +I had been at the window somewhat less than half an hour, when I saw +something coming out of the Count’s window. I drew back and watched +carefully, and saw the whole man emerge. It was a new shock to me to +find that he had on the suit of clothes which I had worn whilst +travelling here, and slung over his shoulder the terrible bag which I +had seen the women take away. There could be no doubt as to his quest, +and in my garb, too! This, then, is his new scheme of evil: that he will +allow others to see me, as they think, so that he may both leave +evidence that I have been seen in the towns or villages posting my own +letters, and that any wickedness which he may do shall by the local +people be attributed to me. + +It makes me rage to think that this can go on, and whilst I am shut up +here, a veritable prisoner, but without that protection of the law which +is even a criminal’s right and consolation. + +I thought I would watch for the Count’s return, and for a long time sat +doggedly at the window. Then I began to notice that there were some +quaint little specks floating in the rays of the moonlight. They were +like the tiniest grains of dust, and they whirled round and gathered in +clusters in a nebulous sort of way. I watched them with a sense of +soothing, and a sort of calm stole over me. I leaned back in the +embrasure in a more comfortable position, so that I could enjoy more +fully the aërial gambolling. + +Something made me start up, a low, piteous howling of dogs somewhere far +below in the valley, which was hidden from my sight. Louder it seemed to +ring in my ears, and the floating motes of dust to take new shapes to +the sound as they danced in the moonlight. I felt myself struggling to +awake to some call of my instincts; nay, my very soul was struggling, +and my half-remembered sensibilities were striving to answer the call. I +was becoming hypnotised! Quicker and quicker danced the dust; the +moonbeams seemed to quiver as they went by me into the mass of gloom +beyond. More and more they gathered till they seemed to take dim phantom +shapes. And then I started, broad awake and in full possession of my +senses, and ran screaming from the place. The phantom shapes, which were +becoming gradually materialised from the moonbeams, were those of the +three ghostly women to whom I was doomed. I fled, and felt somewhat +safer in my own room, where there was no moonlight and where the lamp +was burning brightly. + +When a couple of hours had passed I heard something stirring in the +Count’s room, something like a sharp wail quickly suppressed; and then +there was silence, deep, awful silence, which chilled me. With a +beating heart, I tried the door; but I was locked in my prison, and +could do nothing. I sat down and simply cried. + +As I sat I heard a sound in the courtyard without--the agonised cry of a +woman. I rushed to the window, and throwing it up, peered out between +the bars. There, indeed, was a woman with dishevelled hair, holding her +hands over her heart as one distressed with running. She was leaning +against a corner of the gateway. When she saw my face at the window she +threw herself forward, and shouted in a voice laden with menace:-- + +“Monster, give me my child!” + +She threw herself on her knees, and raising up her hands, cried the same +words in tones which wrung my heart. Then she tore her hair and beat her +breast, and abandoned herself to all the violences of extravagant +emotion. Finally, she threw herself forward, and, though I could not see +her, I could hear the beating of her naked hands against the door. + +Somewhere high overhead, probably on the tower, I heard the voice of the +Count calling in his harsh, metallic whisper. His call seemed to be +answered from far and wide by the howling of wolves. Before many minutes +had passed a pack of them poured, like a pent-up dam when liberated, +through the wide entrance into the courtyard. + +There was no cry from the woman, and the howling of the wolves was but +short. Before long they streamed away singly, licking their lips. + +I could not pity her, for I knew now what had become of her child, and +she was better dead. + +What shall I do? what can I do? How can I escape from this dreadful +thing of night and gloom and fear? + + * * * * * + +_25 June, morning._--No man knows till he has suffered from the night +how sweet and how dear to his heart and eye the morning can be. When the +sun grew so high this morning that it struck the top of the great +gateway opposite my window, the high spot which it touched seemed to me +as if the dove from the ark had lighted there. My fear fell from me as +if it had been a vaporous garment which dissolved in the warmth. I must +take action of some sort whilst the courage of the day is upon me. Last +night one of my post-dated letters went to post, the first of that fatal +series which is to blot out the very traces of my existence from the +earth. + +Let me not think of it. Action! + +It has always been at night-time that I have been molested or +threatened, or in some way in danger or in fear. I have not yet seen the +Count in the daylight. Can it be that he sleeps when others wake, that +he may be awake whilst they sleep? If I could only get into his room! +But there is no possible way. The door is always locked, no way for me. + +Yes, there is a way, if one dares to take it. Where his body has gone +why may not another body go? I have seen him myself crawl from his +window. Why should not I imitate him, and go in by his window? The +chances are desperate, but my need is more desperate still. I shall risk +it. At the worst it can only be death; and a man’s death is not a +calf’s, and the dreaded Hereafter may still be open to me. God help me +in my task! Good-bye, Mina, if I fail; good-bye, my faithful friend and +second father; good-bye, all, and last of all Mina! + + * * * * * + +_Same day, later._--I have made the effort, and God, helping me, have +come safely back to this room. I must put down every detail in order. I +went whilst my courage was fresh straight to the window on the south +side, and at once got outside on the narrow ledge of stone which runs +around the building on this side. The stones are big and roughly cut, +and the mortar has by process of time been washed away between them. I +took off my boots, and ventured out on the desperate way. I looked down +once, so as to make sure that a sudden glimpse of the awful depth would +not overcome me, but after that kept my eyes away from it. I knew pretty +well the direction and distance of the Count’s window, and made for it +as well as I could, having regard to the opportunities available. I did +not feel dizzy--I suppose I was too excited--and the time seemed +ridiculously short till I found myself standing on the window-sill and +trying to raise up the sash. I was filled with agitation, however, when +I bent down and slid feet foremost in through the window. Then I looked +around for the Count, but, with surprise and gladness, made a discovery. +The room was empty! It was barely furnished with odd things, which +seemed to have never been used; the furniture was something the same +style as that in the south rooms, and was covered with dust. I looked +for the key, but it was not in the lock, and I could not find it +anywhere. The only thing I found was a great heap of gold in one +corner--gold of all kinds, Roman, and British, and Austrian, and +Hungarian, and Greek and Turkish money, covered with a film of dust, as +though it had lain long in the ground. None of it that I noticed was +less than three hundred years old. There were also chains and ornaments, +some jewelled, but all of them old and stained. + +At one corner of the room was a heavy door. I tried it, for, since I +could not find the key of the room or the key of the outer door, which +was the main object of my search, I must make further examination, or +all my efforts would be in vain. It was open, and led through a stone +passage to a circular stairway, which went steeply down. I descended, +minding carefully where I went, for the stairs were dark, being only lit +by loopholes in the heavy masonry. At the bottom there was a dark, +tunnel-like passage, through which came a deathly, sickly odour, the +odour of old earth newly turned. As I went through the passage the smell +grew closer and heavier. At last I pulled open a heavy door which stood +ajar, and found myself in an old, ruined chapel, which had evidently +been used as a graveyard. The roof was broken, and in two places were +steps leading to vaults, but the ground had recently been dug over, and +the earth placed in great wooden boxes, manifestly those which had been +brought by the Slovaks. There was nobody about, and I made search for +any further outlet, but there was none. Then I went over every inch of +the ground, so as not to lose a chance. I went down even into the +vaults, where the dim light struggled, although to do so was a dread to +my very soul. Into two of these I went, but saw nothing except fragments +of old coffins and piles of dust; in the third, however, I made a +discovery. + +There, in one of the great boxes, of which there were fifty in all, on a +pile of newly dug earth, lay the Count! He was either dead or asleep, I +could not say which--for the eyes were open and stony, but without the +glassiness of death--and the cheeks had the warmth of life through all +their pallor; the lips were as red as ever. But there was no sign of +movement, no pulse, no breath, no beating of the heart. I bent over him, +and tried to find any sign of life, but in vain. He could not have lain +there long, for the earthy smell would have passed away in a few hours. +By the side of the box was its cover, pierced with holes here and there. +I thought he might have the keys on him, but when I went to search I saw +the dead eyes, and in them, dead though they were, such a look of hate, +though unconscious of me or my presence, that I fled from the place, and +leaving the Count’s room by the window, crawled again up the castle +wall. Regaining my room, I threw myself panting upon the bed and tried +to think.... + + * * * * * + +_29 June._--To-day is the date of my last letter, and the Count has +taken steps to prove that it was genuine, for again I saw him leave the +castle by the same window, and in my clothes. As he went down the wall, +lizard fashion, I wished I had a gun or some lethal weapon, that I might +destroy him; but I fear that no weapon wrought alone by man’s hand would +have any effect on him. I dared not wait to see him return, for I feared +to see those weird sisters. I came back to the library, and read there +till I fell asleep. + +I was awakened by the Count, who looked at me as grimly as a man can +look as he said:-- + +“To-morrow, my friend, we must part. You return to your beautiful +England, I to some work which may have such an end that we may never +meet. Your letter home has been despatched; to-morrow I shall not be +here, but all shall be ready for your journey. In the morning come the +Szgany, who have some labours of their own here, and also come some +Slovaks. When they have gone, my carriage shall come for you, and shall +bear you to the Borgo Pass to meet the diligence from Bukovina to +Bistritz. But I am in hopes that I shall see more of you at Castle +Dracula.” I suspected him, and determined to test his sincerity. +Sincerity! It seems like a profanation of the word to write it in +connection with such a monster, so asked him point-blank:-- + +“Why may I not go to-night?” + +“Because, dear sir, my coachman and horses are away on a mission.” + +“But I would walk with pleasure. I want to get away at once.” He smiled, +such a soft, smooth, diabolical smile that I knew there was some trick +behind his smoothness. He said:-- + +“And your baggage?” + +“I do not care about it. I can send for it some other time.” + +The Count stood up, and said, with a sweet courtesy which made me rub my +eyes, it seemed so real:-- + +“You English have a saying which is close to my heart, for its spirit is +that which rules our _boyars_: ‘Welcome the coming; speed the parting +guest.’ Come with me, my dear young friend. Not an hour shall you wait +in my house against your will, though sad am I at your going, and that +you so suddenly desire it. Come!” With a stately gravity, he, with the +lamp, preceded me down the stairs and along the hall. Suddenly he +stopped. + +“Hark!” + +Close at hand came the howling of many wolves. It was almost as if the +sound sprang up at the rising of his hand, just as the music of a great +orchestra seems to leap under the bâton of the conductor. After a pause +of a moment, he proceeded, in his stately way, to the door, drew back +the ponderous bolts, unhooked the heavy chains, and began to draw it +open. + +To my intense astonishment I saw that it was unlocked. Suspiciously, I +looked all round, but could see no key of any kind. + +As the door began to open, the howling of the wolves without grew louder +and angrier; their red jaws, with champing teeth, and their blunt-clawed +feet as they leaped, came in through the opening door. I knew then that +to struggle at the moment against the Count was useless. With such +allies as these at his command, I could do nothing. But still the door +continued slowly to open, and only the Count’s body stood in the gap. +Suddenly it struck me that this might be the moment and means of my +doom; I was to be given to the wolves, and at my own instigation. There +was a diabolical wickedness in the idea great enough for the Count, and +as a last chance I cried out:-- + +“Shut the door; I shall wait till morning!” and covered my face with my +hands to hide my tears of bitter disappointment. With one sweep of his +powerful arm, the Count threw the door shut, and the great bolts clanged +and echoed through the hall as they shot back into their places. + +In silence we returned to the library, and after a minute or two I went +to my own room. The last I saw of Count Dracula was his kissing his hand +to me; with a red light of triumph in his eyes, and with a smile that +Judas in hell might be proud of. + +When I was in my room and about to lie down, I thought I heard a +whispering at my door. I went to it softly and listened. Unless my ears +deceived me, I heard the voice of the Count:-- + +“Back, back, to your own place! Your time is not yet come. Wait! Have +patience! To-night is mine. To-morrow night is yours!” There was a low, +sweet ripple of laughter, and in a rage I threw open the door, and saw +without the three terrible women licking their lips. As I appeared they +all joined in a horrible laugh, and ran away. + +I came back to my room and threw myself on my knees. It is then so near +the end? To-morrow! to-morrow! Lord, help me, and those to whom I am +dear! + + * * * * * + +_30 June, morning._--These may be the last words I ever write in this +diary. I slept till just before the dawn, and when I woke threw myself +on my knees, for I determined that if Death came he should find me +ready. + +At last I felt that subtle change in the air, and knew that the morning +had come. Then came the welcome cock-crow, and I felt that I was safe. +With a glad heart, I opened my door and ran down to the hall. I had seen +that the door was unlocked, and now escape was before me. With hands +that trembled with eagerness, I unhooked the chains and drew back the +massive bolts. + +But the door would not move. Despair seized me. I pulled, and pulled, at +the door, and shook it till, massive as it was, it rattled in its +casement. I could see the bolt shot. It had been locked after I left the +Count. + +Then a wild desire took me to obtain that key at any risk, and I +determined then and there to scale the wall again and gain the Count’s +room. He might kill me, but death now seemed the happier choice of +evils. Without a pause I rushed up to the east window, and scrambled +down the wall, as before, into the Count’s room. It was empty, but that +was as I expected. I could not see a key anywhere, but the heap of gold +remained. I went through the door in the corner and down the winding +stair and along the dark passage to the old chapel. I knew now well +enough where to find the monster I sought. + +The great box was in the same place, close against the wall, but the lid +was laid on it, not fastened down, but with the nails ready in their +places to be hammered home. I knew I must reach the body for the key, so +I raised the lid, and laid it back against the wall; and then I saw +something which filled my very soul with horror. There lay the Count, +but looking as if his youth had been half renewed, for the white hair +and moustache were changed to dark iron-grey; the cheeks were fuller, +and the white skin seemed ruby-red underneath; the mouth was redder than +ever, for on the lips were gouts of fresh blood, which trickled from the +corners of the mouth and ran over the chin and neck. Even the deep, +burning eyes seemed set amongst swollen flesh, for the lids and pouches +underneath were bloated. It seemed as if the whole awful creature were +simply gorged with blood. He lay like a filthy leech, exhausted with his +repletion. I shuddered as I bent over to touch him, and every sense in +me revolted at the contact; but I had to search, or I was lost. The +coming night might see my own body a banquet in a similar way to those +horrid three. I felt all over the body, but no sign could I find of the +key. Then I stopped and looked at the Count. There was a mocking smile +on the bloated face which seemed to drive me mad. This was the being I +was helping to transfer to London, where, perhaps, for centuries to come +he might, amongst its teeming millions, satiate his lust for blood, and +create a new and ever-widening circle of semi-demons to batten on the +helpless. The very thought drove me mad. A terrible desire came upon me +to rid the world of such a monster. There was no lethal weapon at hand, +but I seized a shovel which the workmen had been using to fill the +cases, and lifting it high, struck, with the edge downward, at the +hateful face. But as I did so the head turned, and the eyes fell full +upon me, with all their blaze of basilisk horror. The sight seemed to +paralyse me, and the shovel turned in my hand and glanced from the face, +merely making a deep gash above the forehead. The shovel fell from my +hand across the box, and as I pulled it away the flange of the blade +caught the edge of the lid which fell over again, and hid the horrid +thing from my sight. The last glimpse I had was of the bloated face, +blood-stained and fixed with a grin of malice which would have held its +own in the nethermost hell. + +I thought and thought what should be my next move, but my brain seemed +on fire, and I waited with a despairing feeling growing over me. As I +waited I heard in the distance a gipsy song sung by merry voices coming +closer, and through their song the rolling of heavy wheels and the +cracking of whips; the Szgany and the Slovaks of whom the Count had +spoken were coming. With a last look around and at the box which +contained the vile body, I ran from the place and gained the Count’s +room, determined to rush out at the moment the door should be opened. +With strained ears, I listened, and heard downstairs the grinding of the +key in the great lock and the falling back of the heavy door. There must +have been some other means of entry, or some one had a key for one of +the locked doors. Then there came the sound of many feet tramping and +dying away in some passage which sent up a clanging echo. I turned to +run down again towards the vault, where I might find the new entrance; +but at the moment there seemed to come a violent puff of wind, and the +door to the winding stair blew to with a shock that set the dust from +the lintels flying. When I ran to push it open, I found that it was +hopelessly fast. I was again a prisoner, and the net of doom was closing +round me more closely. + +As I write there is in the passage below a sound of many tramping feet +and the crash of weights being set down heavily, doubtless the boxes, +with their freight of earth. There is a sound of hammering; it is the +box being nailed down. Now I can hear the heavy feet tramping again +along the hall, with many other idle feet coming behind them. + +The door is shut, and the chains rattle; there is a grinding of the key +in the lock; I can hear the key withdraw: then another door opens and +shuts; I hear the creaking of lock and bolt. + +Hark! in the courtyard and down the rocky way the roll of heavy wheels, +the crack of whips, and the chorus of the Szgany as they pass into the +distance. + +I am alone in the castle with those awful women. Faugh! Mina is a woman, +and there is nought in common. They are devils of the Pit! + +I shall not remain alone with them; I shall try to scale the castle wall +farther than I have yet attempted. I shall take some of the gold with +me, lest I want it later. I may find a way from this dreadful place. + +And then away for home! away to the quickest and nearest train! away +from this cursed spot, from this cursed land, where the devil and his +children still walk with earthly feet! + +At least God’s mercy is better than that of these monsters, and the +precipice is steep and high. At its foot a man may sleep--as a man. +Good-bye, all! Mina! + + + + +CHAPTER V + +_Letter from Miss Mina Murray to Miss Lucy Westenra._ + + +“_9 May._ + +“My dearest Lucy,-- + +“Forgive my long delay in writing, but I have been simply overwhelmed +with work. The life of an assistant schoolmistress is sometimes trying. +I am longing to be with you, and by the sea, where we can talk together +freely and build our castles in the air. I have been working very hard +lately, because I want to keep up with Jonathan’s studies, and I have +been practising shorthand very assiduously. When we are married I shall +be able to be useful to Jonathan, and if I can stenograph well enough I +can take down what he wants to say in this way and write it out for +him on the typewriter, at which also I am practising very hard. He +and I sometimes write letters in shorthand, and he is keeping a +stenographic journal of his travels abroad. When I am with you I +shall keep a diary in the same way. I don’t mean one of those +two-pages-to-the-week-with-Sunday-squeezed-in-a-corner diaries, but a +sort of journal which I can write in whenever I feel inclined. I do not +suppose there will be much of interest to other people; but it is not +intended for them. I may show it to Jonathan some day if there is in it +anything worth sharing, but it is really an exercise book. I shall try +to do what I see lady journalists do: interviewing and writing +descriptions and trying to remember conversations. I am told that, with +a little practice, one can remember all that goes on or that one hears +said during a day. However, we shall see. I will tell you of my little +plans when we meet. I have just had a few hurried lines from Jonathan +from Transylvania. He is well, and will be returning in about a week. I +am longing to hear all his news. It must be so nice to see strange +countries. I wonder if we--I mean Jonathan and I--shall ever see them +together. There is the ten o’clock bell ringing. Good-bye. + +“Your loving + +“MINA. + +“Tell me all the news when you write. You have not told me anything for +a long time. I hear rumours, and especially of a tall, handsome, +curly-haired man???” + + +_Letter, Lucy Westenra to Mina Murray_. + +“_17, Chatham Street_, + +“_Wednesday_. + +“My dearest Mina,-- + +“I must say you tax me _very_ unfairly with being a bad correspondent. I +wrote to you _twice_ since we parted, and your last letter was only your +_second_. Besides, I have nothing to tell you. There is really nothing +to interest you. Town is very pleasant just now, and we go a good deal +to picture-galleries and for walks and rides in the park. As to the +tall, curly-haired man, I suppose it was the one who was with me at the +last Pop. Some one has evidently been telling tales. That was Mr. +Holmwood. He often comes to see us, and he and mamma get on very well +together; they have so many things to talk about in common. We met some +time ago a man that would just _do for you_, if you were not already +engaged to Jonathan. He is an excellent _parti_, being handsome, well +off, and of good birth. He is a doctor and really clever. Just fancy! He +is only nine-and-twenty, and he has an immense lunatic asylum all under +his own care. Mr. Holmwood introduced him to me, and he called here to +see us, and often comes now. I think he is one of the most resolute men +I ever saw, and yet the most calm. He seems absolutely imperturbable. I +can fancy what a wonderful power he must have over his patients. He has +a curious habit of looking one straight in the face, as if trying to +read one’s thoughts. He tries this on very much with me, but I flatter +myself he has got a tough nut to crack. I know that from my glass. Do +you ever try to read your own face? _I do_, and I can tell you it is not +a bad study, and gives you more trouble than you can well fancy if you +have never tried it. He says that I afford him a curious psychological +study, and I humbly think I do. I do not, as you know, take sufficient +interest in dress to be able to describe the new fashions. Dress is a +bore. That is slang again, but never mind; Arthur says that every day. +There, it is all out. Mina, we have told all our secrets to each other +since we were _children_; we have slept together and eaten together, and +laughed and cried together; and now, though I have spoken, I would like +to speak more. Oh, Mina, couldn’t you guess? I love him. I am blushing +as I write, for although I _think_ he loves me, he has not told me so in +words. But oh, Mina, I love him; I love him; I love him! There, that +does me good. I wish I were with you, dear, sitting by the fire +undressing, as we used to sit; and I would try to tell you what I feel. +I do not know how I am writing this even to you. I am afraid to stop, +or I should tear up the letter, and I don’t want to stop, for I _do_ so +want to tell you all. Let me hear from you _at once_, and tell me all +that you think about it. Mina, I must stop. Good-night. Bless me in your +prayers; and, Mina, pray for my happiness. + +“LUCY. + +“P.S.--I need not tell you this is a secret. Good-night again. + +“L.” + +_Letter, Lucy Westenra to Mina Murray_. + +“_24 May_. + +“My dearest Mina,-- + +“Thanks, and thanks, and thanks again for your sweet letter. It was so +nice to be able to tell you and to have your sympathy. + +“My dear, it never rains but it pours. How true the old proverbs are. +Here am I, who shall be twenty in September, and yet I never had a +proposal till to-day, not a real proposal, and to-day I have had three. +Just fancy! THREE proposals in one day! Isn’t it awful! I feel sorry, +really and truly sorry, for two of the poor fellows. Oh, Mina, I am so +happy that I don’t know what to do with myself. And three proposals! +But, for goodness’ sake, don’t tell any of the girls, or they would be +getting all sorts of extravagant ideas and imagining themselves injured +and slighted if in their very first day at home they did not get six at +least. Some girls are so vain! You and I, Mina dear, who are engaged and +are going to settle down soon soberly into old married women, can +despise vanity. Well, I must tell you about the three, but you must keep +it a secret, dear, from _every one_, except, of course, Jonathan. You +will tell him, because I would, if I were in your place, certainly tell +Arthur. A woman ought to tell her husband everything--don’t you think +so, dear?--and I must be fair. Men like women, certainly their wives, to +be quite as fair as they are; and women, I am afraid, are not always +quite as fair as they should be. Well, my dear, number One came just +before lunch. I told you of him, Dr. John Seward, the lunatic-asylum +man, with the strong jaw and the good forehead. He was very cool +outwardly, but was nervous all the same. He had evidently been schooling +himself as to all sorts of little things, and remembered them; but he +almost managed to sit down on his silk hat, which men don’t generally do +when they are cool, and then when he wanted to appear at ease he kept +playing with a lancet in a way that made me nearly scream. He spoke to +me, Mina, very straightforwardly. He told me how dear I was to him, +though he had known me so little, and what his life would be with me to +help and cheer him. He was going to tell me how unhappy he would be if I +did not care for him, but when he saw me cry he said that he was a brute +and would not add to my present trouble. Then he broke off and asked if +I could love him in time; and when I shook my head his hands trembled, +and then with some hesitation he asked me if I cared already for any one +else. He put it very nicely, saying that he did not want to wring my +confidence from me, but only to know, because if a woman’s heart was +free a man might have hope. And then, Mina, I felt a sort of duty to +tell him that there was some one. I only told him that much, and then he +stood up, and he looked very strong and very grave as he took both my +hands in his and said he hoped I would be happy, and that if I ever +wanted a friend I must count him one of my best. Oh, Mina dear, I can’t +help crying: and you must excuse this letter being all blotted. Being +proposed to is all very nice and all that sort of thing, but it isn’t at +all a happy thing when you have to see a poor fellow, whom you know +loves you honestly, going away and looking all broken-hearted, and to +know that, no matter what he may say at the moment, you are passing +quite out of his life. My dear, I must stop here at present, I feel so +miserable, though I am so happy. + +“_Evening._ + +“Arthur has just gone, and I feel in better spirits than when I left +off, so I can go on telling you about the day. Well, my dear, number Two +came after lunch. He is such a nice fellow, an American from Texas, and +he looks so young and so fresh that it seems almost impossible that he +has been to so many places and has had such adventures. I sympathise +with poor Desdemona when she had such a dangerous stream poured in her +ear, even by a black man. I suppose that we women are such cowards that +we think a man will save us from fears, and we marry him. I know now +what I would do if I were a man and wanted to make a girl love me. No, I +don’t, for there was Mr. Morris telling us his stories, and Arthur never +told any, and yet---- My dear, I am somewhat previous. Mr. Quincey P. +Morris found me alone. It seems that a man always does find a girl +alone. No, he doesn’t, for Arthur tried twice to _make_ a chance, and I +helping him all I could; I am not ashamed to say it now. I must tell you +beforehand that Mr. Morris doesn’t always speak slang--that is to say, +he never does so to strangers or before them, for he is really well +educated and has exquisite manners--but he found out that it amused me +to hear him talk American slang, and whenever I was present, and there +was no one to be shocked, he said such funny things. I am afraid, my +dear, he has to invent it all, for it fits exactly into whatever else he +has to say. But this is a way slang has. I do not know myself if I shall +ever speak slang; I do not know if Arthur likes it, as I have never +heard him use any as yet. Well, Mr. Morris sat down beside me and looked +as happy and jolly as he could, but I could see all the same that he was +very nervous. He took my hand in his, and said ever so sweetly:-- + +“‘Miss Lucy, I know I ain’t good enough to regulate the fixin’s of your +little shoes, but I guess if you wait till you find a man that is you +will go join them seven young women with the lamps when you quit. Won’t +you just hitch up alongside of me and let us go down the long road +together, driving in double harness?’ + +“Well, he did look so good-humoured and so jolly that it didn’t seem +half so hard to refuse him as it did poor Dr. Seward; so I said, as +lightly as I could, that I did not know anything of hitching, and that I +wasn’t broken to harness at all yet. Then he said that he had spoken in +a light manner, and he hoped that if he had made a mistake in doing so +on so grave, so momentous, an occasion for him, I would forgive him. He +really did look serious when he was saying it, and I couldn’t help +feeling a bit serious too--I know, Mina, you will think me a horrid +flirt--though I couldn’t help feeling a sort of exultation that he was +number two in one day. And then, my dear, before I could say a word he +began pouring out a perfect torrent of love-making, laying his very +heart and soul at my feet. He looked so earnest over it that I shall +never again think that a man must be playful always, and never earnest, +because he is merry at times. I suppose he saw something in my face +which checked him, for he suddenly stopped, and said with a sort of +manly fervour that I could have loved him for if I had been free:-- + +“‘Lucy, you are an honest-hearted girl, I know. I should not be here +speaking to you as I am now if I did not believe you clean grit, right +through to the very depths of your soul. Tell me, like one good fellow +to another, is there any one else that you care for? And if there is +I’ll never trouble you a hair’s breadth again, but will be, if you will +let me, a very faithful friend.’ + +“My dear Mina, why are men so noble when we women are so little worthy +of them? Here was I almost making fun of this great-hearted, true +gentleman. I burst into tears--I am afraid, my dear, you will think +this a very sloppy letter in more ways than one--and I really felt very +badly. Why can’t they let a girl marry three men, or as many as want +her, and save all this trouble? But this is heresy, and I must not say +it. I am glad to say that, though I was crying, I was able to look into +Mr. Morris’s brave eyes, and I told him out straight:-- + +“‘Yes, there is some one I love, though he has not told me yet that he +even loves me.’ I was right to speak to him so frankly, for quite a +light came into his face, and he put out both his hands and took mine--I +think I put them into his--and said in a hearty way:-- + +“‘That’s my brave girl. It’s better worth being late for a chance of +winning you than being in time for any other girl in the world. Don’t +cry, my dear. If it’s for me, I’m a hard nut to crack; and I take it +standing up. If that other fellow doesn’t know his happiness, well, he’d +better look for it soon, or he’ll have to deal with me. Little girl, +your honesty and pluck have made me a friend, and that’s rarer than a +lover; it’s more unselfish anyhow. My dear, I’m going to have a pretty +lonely walk between this and Kingdom Come. Won’t you give me one kiss? +It’ll be something to keep off the darkness now and then. You can, you +know, if you like, for that other good fellow--he must be a good fellow, +my dear, and a fine fellow, or you could not love him--hasn’t spoken +yet.’ That quite won me, Mina, for it _was_ brave and sweet of him, and +noble, too, to a rival--wasn’t it?--and he so sad; so I leant over and +kissed him. He stood up with my two hands in his, and as he looked down +into my face--I am afraid I was blushing very much--he said:-- + +“‘Little girl, I hold your hand, and you’ve kissed me, and if these +things don’t make us friends nothing ever will. Thank you for your sweet +honesty to me, and good-bye.’ He wrung my hand, and taking up his hat, +went straight out of the room without looking back, without a tear or a +quiver or a pause; and I am crying like a baby. Oh, why must a man like +that be made unhappy when there are lots of girls about who would +worship the very ground he trod on? I know I would if I were free--only +I don’t want to be free. My dear, this quite upset me, and I feel I +cannot write of happiness just at once, after telling you of it; and I +don’t wish to tell of the number three until it can be all happy. + +“Ever your loving + +“LUCY. + +“P.S.--Oh, about number Three--I needn’t tell you of number Three, need +I? Besides, it was all so confused; it seemed only a moment from his +coming into the room till both his arms were round me, and he was +kissing me. I am very, very happy, and I don’t know what I have done to +deserve it. I must only try in the future to show that I am not +ungrateful to God for all His goodness to me in sending to me such a +lover, such a husband, and such a friend. + +“Good-bye.” + + +_Dr. Seward’s Diary._ + +(Kept in phonograph) + +_25 May._--Ebb tide in appetite to-day. Cannot eat, cannot rest, so +diary instead. Since my rebuff of yesterday I have a sort of empty +feeling; nothing in the world seems of sufficient importance to be worth +the doing.... As I knew that the only cure for this sort of thing was +work, I went down amongst the patients. I picked out one who has +afforded me a study of much interest. He is so quaint that I am +determined to understand him as well as I can. To-day I seemed to get +nearer than ever before to the heart of his mystery. + +I questioned him more fully than I had ever done, with a view to making +myself master of the facts of his hallucination. In my manner of doing +it there was, I now see, something of cruelty. I seemed to wish to keep +him to the point of his madness--a thing which I avoid with the patients +as I would the mouth of hell. + +(_Mem._, under what circumstances would I _not_ avoid the pit of hell?) +_Omnia Romæ venalia sunt._ Hell has its price! _verb. sap._ If there be +anything behind this instinct it will be valuable to trace it afterwards +_accurately_, so I had better commence to do so, therefore-- + +R. M. Renfield, ætat 59.--Sanguine temperament; great physical strength; +morbidly excitable; periods of gloom, ending in some fixed idea which I +cannot make out. I presume that the sanguine temperament itself and the +disturbing influence end in a mentally-accomplished finish; a possibly +dangerous man, probably dangerous if unselfish. In selfish men caution +is as secure an armour for their foes as for themselves. What I think of +on this point is, when self is the fixed point the centripetal force is +balanced with the centrifugal; when duty, a cause, etc., is the fixed +point, the latter force is paramount, and only accident or a series of +accidents can balance it. + + +_Letter, Quincey P. Morris to Hon. Arthur Holmwood._ + +“_25 May._ + +“My dear Art,-- + +“We’ve told yarns by the camp-fire in the prairies; and dressed one +another’s wounds after trying a landing at the Marquesas; and drunk +healths on the shore of Titicaca. There are more yarns to be told, and +other wounds to be healed, and another health to be drunk. Won’t you let +this be at my camp-fire to-morrow night? I have no hesitation in asking +you, as I know a certain lady is engaged to a certain dinner-party, and +that you are free. There will only be one other, our old pal at the +Korea, Jack Seward. He’s coming, too, and we both want to mingle our +weeps over the wine-cup, and to drink a health with all our hearts to +the happiest man in all the wide world, who has won the noblest heart +that God has made and the best worth winning. We promise you a hearty +welcome, and a loving greeting, and a health as true as your own right +hand. We shall both swear to leave you at home if you drink too deep to +a certain pair of eyes. Come! + +“Yours, as ever and always, + +“QUINCEY P. MORRIS.” + + +_Telegram from Arthur Holmwood to Quincey P. Morris._ + +“_26 May._ + +“Count me in every time. I bear messages which will make both your ears +tingle. + +“ART.” + + + + +CHAPTER VI + +MINA MURRAY’S JOURNAL + + +_24 July. Whitby._--Lucy met me at the station, looking sweeter and +lovelier than ever, and we drove up to the house at the Crescent in +which they have rooms. This is a lovely place. The little river, the +Esk, runs through a deep valley, which broadens out as it comes near the +harbour. A great viaduct runs across, with high piers, through which the +view seems somehow further away than it really is. The valley is +beautifully green, and it is so steep that when you are on the high land +on either side you look right across it, unless you are near enough to +see down. The houses of the old town--the side away from us--are all +red-roofed, and seem piled up one over the other anyhow, like the +pictures we see of Nuremberg. Right over the town is the ruin of Whitby +Abbey, which was sacked by the Danes, and which is the scene of part of +“Marmion,” where the girl was built up in the wall. It is a most noble +ruin, of immense size, and full of beautiful and romantic bits; there is +a legend that a white lady is seen in one of the windows. Between it and +the town there is another church, the parish one, round which is a big +graveyard, all full of tombstones. This is to my mind the nicest spot in +Whitby, for it lies right over the town, and has a full view of the +harbour and all up the bay to where the headland called Kettleness +stretches out into the sea. It descends so steeply over the harbour that +part of the bank has fallen away, and some of the graves have been +destroyed. In one place part of the stonework of the graves stretches +out over the sandy pathway far below. There are walks, with seats beside +them, through the churchyard; and people go and sit there all day long +looking at the beautiful view and enjoying the breeze. I shall come and +sit here very often myself and work. Indeed, I am writing now, with my +book on my knee, and listening to the talk of three old men who are +sitting beside me. They seem to do nothing all day but sit up here and +talk. + +The harbour lies below me, with, on the far side, one long granite wall +stretching out into the sea, with a curve outwards at the end of it, in +the middle of which is a lighthouse. A heavy sea-wall runs along outside +of it. On the near side, the sea-wall makes an elbow crooked inversely, +and its end too has a lighthouse. Between the two piers there is a +narrow opening into the harbour, which then suddenly widens. + +It is nice at high water; but when the tide is out it shoals away to +nothing, and there is merely the stream of the Esk, running between +banks of sand, with rocks here and there. Outside the harbour on this +side there rises for about half a mile a great reef, the sharp edge of +which runs straight out from behind the south lighthouse. At the end of +it is a buoy with a bell, which swings in bad weather, and sends in a +mournful sound on the wind. They have a legend here that when a ship is +lost bells are heard out at sea. I must ask the old man about this; he +is coming this way.... + +He is a funny old man. He must be awfully old, for his face is all +gnarled and twisted like the bark of a tree. He tells me that he is +nearly a hundred, and that he was a sailor in the Greenland fishing +fleet when Waterloo was fought. He is, I am afraid, a very sceptical +person, for when I asked him about the bells at sea and the White Lady +at the abbey he said very brusquely:-- + +“I wouldn’t fash masel’ about them, miss. Them things be all wore out. +Mind, I don’t say that they never was, but I do say that they wasn’t in +my time. They be all very well for comers and trippers, an’ the like, +but not for a nice young lady like you. Them feet-folks from York and +Leeds that be always eatin’ cured herrin’s an’ drinkin’ tea an’ lookin’ +out to buy cheap jet would creed aught. I wonder masel’ who’d be +bothered tellin’ lies to them--even the newspapers, which is full of +fool-talk.” I thought he would be a good person to learn interesting +things from, so I asked him if he would mind telling me something about +the whale-fishing in the old days. He was just settling himself to begin +when the clock struck six, whereupon he laboured to get up, and said:-- + +“I must gang ageeanwards home now, miss. My grand-daughter doesn’t like +to be kept waitin’ when the tea is ready, for it takes me time to +crammle aboon the grees, for there be a many of ’em; an’, miss, I lack +belly-timber sairly by the clock.” + +He hobbled away, and I could see him hurrying, as well as he could, down +the steps. The steps are a great feature on the place. They lead from +the town up to the church, there are hundreds of them--I do not know how +many--and they wind up in a delicate curve; the slope is so gentle that +a horse could easily walk up and down them. I think they must originally +have had something to do with the abbey. I shall go home too. Lucy went +out visiting with her mother, and as they were only duty calls, I did +not go. They will be home by this. + + * * * * * + +_1 August._--I came up here an hour ago with Lucy, and we had a most +interesting talk with my old friend and the two others who always come +and join him. He is evidently the Sir Oracle of them, and I should think +must have been in his time a most dictatorial person. He will not admit +anything, and downfaces everybody. If he can’t out-argue them he bullies +them, and then takes their silence for agreement with his views. Lucy +was looking sweetly pretty in her white lawn frock; she has got a +beautiful colour since she has been here. I noticed that the old men did +not lose any time in coming up and sitting near her when we sat down. +She is so sweet with old people; I think they all fell in love with her +on the spot. Even my old man succumbed and did not contradict her, but +gave me double share instead. I got him on the subject of the legends, +and he went off at once into a sort of sermon. I must try to remember it +and put it down:-- + +“It be all fool-talk, lock, stock, and barrel; that’s what it be, an’ +nowt else. These bans an’ wafts an’ boh-ghosts an’ barguests an’ bogles +an’ all anent them is only fit to set bairns an’ dizzy women +a-belderin’. They be nowt but air-blebs. They, an’ all grims an’ signs +an’ warnin’s, be all invented by parsons an’ illsome beuk-bodies an’ +railway touters to skeer an’ scunner hafflin’s, an’ to get folks to do +somethin’ that they don’t other incline to. It makes me ireful to think +o’ them. Why, it’s them that, not content with printin’ lies on paper +an’ preachin’ them out of pulpits, does want to be cuttin’ them on the +tombstones. Look here all around you in what airt ye will; all them +steans, holdin’ up their heads as well as they can out of their pride, +is acant--simply tumblin’ down with the weight o’ the lies wrote on +them, ‘Here lies the body’ or ‘Sacred to the memory’ wrote on all of +them, an’ yet in nigh half of them there bean’t no bodies at all; an’ +the memories of them bean’t cared a pinch of snuff about, much less +sacred. Lies all of them, nothin’ but lies of one kind or another! My +gog, but it’ll be a quare scowderment at the Day of Judgment when they +come tumblin’ up in their death-sarks, all jouped together an’ tryin’ to +drag their tombsteans with them to prove how good they was; some of them +trimmlin’ and ditherin’, with their hands that dozzened an’ slippy from +lyin’ in the sea that they can’t even keep their grup o’ them.” + +I could see from the old fellow’s self-satisfied air and the way in +which he looked round for the approval of his cronies that he was +“showing off,” so I put in a word to keep him going:-- + +“Oh, Mr. Swales, you can’t be serious. Surely these tombstones are not +all wrong?” + +“Yabblins! There may be a poorish few not wrong, savin’ where they make +out the people too good; for there be folk that do think a balm-bowl be +like the sea, if only it be their own. The whole thing be only lies. Now +look you here; you come here a stranger, an’ you see this kirk-garth.” I +nodded, for I thought it better to assent, though I did not quite +understand his dialect. I knew it had something to do with the church. +He went on: “And you consate that all these steans be aboon folk that be +happed here, snod an’ snog?” I assented again. “Then that be just where +the lie comes in. Why, there be scores of these lay-beds that be toom as +old Dun’s ’bacca-box on Friday night.” He nudged one of his companions, +and they all laughed. “And my gog! how could they be otherwise? Look at +that one, the aftest abaft the bier-bank: read it!” I went over and +read:-- + +“Edward Spencelagh, master mariner, murdered by pirates off the coast of +Andres, April, 1854, æt. 30.” When I came back Mr. Swales went on:-- + +“Who brought him home, I wonder, to hap him here? Murdered off the coast +of Andres! an’ you consated his body lay under! Why, I could name ye a +dozen whose bones lie in the Greenland seas above”--he pointed +northwards--“or where the currents may have drifted them. There be the +steans around ye. Ye can, with your young eyes, read the small-print of +the lies from here. This Braithwaite Lowrey--I knew his father, lost in +the _Lively_ off Greenland in ’20; or Andrew Woodhouse, drowned in the +same seas in 1777; or John Paxton, drowned off Cape Farewell a year +later; or old John Rawlings, whose grandfather sailed with me, drowned +in the Gulf of Finland in ’50. Do ye think that all these men will have +to make a rush to Whitby when the trumpet sounds? I have me antherums +aboot it! I tell ye that when they got here they’d be jommlin’ an’ +jostlin’ one another that way that it ’ud be like a fight up on the ice +in the old days, when we’d be at one another from daylight to dark, an’ +tryin’ to tie up our cuts by the light of the aurora borealis.” This was +evidently local pleasantry, for the old man cackled over it, and his +cronies joined in with gusto. + +“But,” I said, “surely you are not quite correct, for you start on the +assumption that all the poor people, or their spirits, will have to +take their tombstones with them on the Day of Judgment. Do you think +that will be really necessary?” + +“Well, what else be they tombstones for? Answer me that, miss!” + +“To please their relatives, I suppose.” + +“To please their relatives, you suppose!” This he said with intense +scorn. “How will it pleasure their relatives to know that lies is wrote +over them, and that everybody in the place knows that they be lies?” He +pointed to a stone at our feet which had been laid down as a slab, on +which the seat was rested, close to the edge of the cliff. “Read the +lies on that thruff-stean,” he said. The letters were upside down to me +from where I sat, but Lucy was more opposite to them, so she leant over +and read:-- + +“Sacred to the memory of George Canon, who died, in the hope of a +glorious resurrection, on July, 29, 1873, falling from the rocks at +Kettleness. This tomb was erected by his sorrowing mother to her dearly +beloved son. ‘He was the only son of his mother, and she was a widow.’ +Really, Mr. Swales, I don’t see anything very funny in that!” She spoke +her comment very gravely and somewhat severely. + +“Ye don’t see aught funny! Ha! ha! But that’s because ye don’t gawm the +sorrowin’ mother was a hell-cat that hated him because he was +acrewk’d--a regular lamiter he was--an’ he hated her so that he +committed suicide in order that she mightn’t get an insurance she put on +his life. He blew nigh the top of his head off with an old musket that +they had for scarin’ the crows with. ’Twarn’t for crows then, for it +brought the clegs and the dowps to him. That’s the way he fell off the +rocks. And, as to hopes of a glorious resurrection, I’ve often heard him +say masel’ that he hoped he’d go to hell, for his mother was so pious +that she’d be sure to go to heaven, an’ he didn’t want to addle where +she was. Now isn’t that stean at any rate”--he hammered it with his +stick as he spoke--“a pack of lies? and won’t it make Gabriel keckle +when Geordie comes pantin’ up the grees with the tombstean balanced on +his hump, and asks it to be took as evidence!” + +I did not know what to say, but Lucy turned the conversation as she +said, rising up:-- + +“Oh, why did you tell us of this? It is my favourite seat, and I cannot +leave it; and now I find I must go on sitting over the grave of a +suicide.” + +“That won’t harm ye, my pretty; an’ it may make poor Geordie gladsome to +have so trim a lass sittin’ on his lap. That won’t hurt ye. Why, I’ve +sat here off an’ on for nigh twenty years past, an’ it hasn’t done me +no harm. Don’t ye fash about them as lies under ye, or that doesn’ lie +there either! It’ll be time for ye to be getting scart when ye see the +tombsteans all run away with, and the place as bare as a stubble-field. +There’s the clock, an’ I must gang. My service to ye, ladies!” And off +he hobbled. + +Lucy and I sat awhile, and it was all so beautiful before us that we +took hands as we sat; and she told me all over again about Arthur and +their coming marriage. That made me just a little heart-sick, for I +haven’t heard from Jonathan for a whole month. + + * * * * * + +_The same day._ I came up here alone, for I am very sad. There was no +letter for me. I hope there cannot be anything the matter with Jonathan. +The clock has just struck nine. I see the lights scattered all over the +town, sometimes in rows where the streets are, and sometimes singly; +they run right up the Esk and die away in the curve of the valley. To my +left the view is cut off by a black line of roof of the old house next +the abbey. The sheep and lambs are bleating in the fields away behind +me, and there is a clatter of a donkey’s hoofs up the paved road below. +The band on the pier is playing a harsh waltz in good time, and further +along the quay there is a Salvation Army meeting in a back street. +Neither of the bands hears the other, but up here I hear and see them +both. I wonder where Jonathan is and if he is thinking of me! I wish he +were here. + + +_Dr. Seward’s Diary._ + +_5 June._--The case of Renfield grows more interesting the more I get to +understand the man. He has certain qualities very largely developed; +selfishness, secrecy, and purpose. I wish I could get at what is the +object of the latter. He seems to have some settled scheme of his own, +but what it is I do not yet know. His redeeming quality is a love of +animals, though, indeed, he has such curious turns in it that I +sometimes imagine he is only abnormally cruel. His pets are of odd +sorts. Just now his hobby is catching flies. He has at present such a +quantity that I have had myself to expostulate. To my astonishment, he +did not break out into a fury, as I expected, but took the matter in +simple seriousness. He thought for a moment, and then said: “May I have +three days? I shall clear them away.” Of course, I said that would do. I +must watch him. + + * * * * * + +_18 June._--He has turned his mind now to spiders, and has got several +very big fellows in a box. He keeps feeding them with his flies, and +the number of the latter is becoming sensibly diminished, although he +has used half his food in attracting more flies from outside to his +room. + + * * * * * + +_1 July._--His spiders are now becoming as great a nuisance as his +flies, and to-day I told him that he must get rid of them. He looked +very sad at this, so I said that he must clear out some of them, at all +events. He cheerfully acquiesced in this, and I gave him the same time +as before for reduction. He disgusted me much while with him, for when a +horrid blow-fly, bloated with some carrion food, buzzed into the room, +he caught it, held it exultantly for a few moments between his finger +and thumb, and, before I knew what he was going to do, put it in his +mouth and ate it. I scolded him for it, but he argued quietly that it +was very good and very wholesome; that it was life, strong life, and +gave life to him. This gave me an idea, or the rudiment of one. I must +watch how he gets rid of his spiders. He has evidently some deep problem +in his mind, for he keeps a little note-book in which he is always +jotting down something. Whole pages of it are filled with masses of +figures, generally single numbers added up in batches, and then the +totals added in batches again, as though he were “focussing” some +account, as the auditors put it. + + * * * * * + +_8 July._--There is a method in his madness, and the rudimentary idea in +my mind is growing. It will be a whole idea soon, and then, oh, +unconscious cerebration! you will have to give the wall to your +conscious brother. I kept away from my friend for a few days, so that I +might notice if there were any change. Things remain as they were except +that he has parted with some of his pets and got a new one. He has +managed to get a sparrow, and has already partially tamed it. His means +of taming is simple, for already the spiders have diminished. Those that +do remain, however, are well fed, for he still brings in the flies by +tempting them with his food. + + * * * * * + +_19 July._--We are progressing. My friend has now a whole colony of +sparrows, and his flies and spiders are almost obliterated. When I came +in he ran to me and said he wanted to ask me a great favour--a very, +very great favour; and as he spoke he fawned on me like a dog. I asked +him what it was, and he said, with a sort of rapture in his voice and +bearing:-- + +“A kitten, a nice little, sleek playful kitten, that I can play with, +and teach, and feed--and feed--and feed!” I was not unprepared for this +request, for I had noticed how his pets went on increasing in size and +vivacity, but I did not care that his pretty family of tame sparrows +should be wiped out in the same manner as the flies and the spiders; so +I said I would see about it, and asked him if he would not rather have a +cat than a kitten. His eagerness betrayed him as he answered:-- + +“Oh, yes, I would like a cat! I only asked for a kitten lest you should +refuse me a cat. No one would refuse me a kitten, would they?” I shook +my head, and said that at present I feared it would not be possible, but +that I would see about it. His face fell, and I could see a warning of +danger in it, for there was a sudden fierce, sidelong look which meant +killing. The man is an undeveloped homicidal maniac. I shall test him +with his present craving and see how it will work out; then I shall know +more. + + * * * * * + +_10 p. m._--I have visited him again and found him sitting in a corner +brooding. When I came in he threw himself on his knees before me and +implored me to let him have a cat; that his salvation depended upon it. +I was firm, however, and told him that he could not have it, whereupon +he went without a word, and sat down, gnawing his fingers, in the corner +where I had found him. I shall see him in the morning early. + + * * * * * + +_20 July._--Visited Renfield very early, before the attendant went his +rounds. Found him up and humming a tune. He was spreading out his sugar, +which he had saved, in the window, and was manifestly beginning his +fly-catching again; and beginning it cheerfully and with a good grace. I +looked around for his birds, and not seeing them, asked him where they +were. He replied, without turning round, that they had all flown away. +There were a few feathers about the room and on his pillow a drop of +blood. I said nothing, but went and told the keeper to report to me if +there were anything odd about him during the day. + + * * * * * + +_11 a. m._--The attendant has just been to me to say that Renfield has +been very sick and has disgorged a whole lot of feathers. “My belief is, +doctor,” he said, “that he has eaten his birds, and that he just took +and ate them raw!” + + * * * * * + +_11 p. m._--I gave Renfield a strong opiate to-night, enough to make +even him sleep, and took away his pocket-book to look at it. The thought +that has been buzzing about my brain lately is complete, and the theory +proved. My homicidal maniac is of a peculiar kind. I shall have to +invent a new classification for him, and call him a zoöphagous +(life-eating) maniac; what he desires is to absorb as many lives as he +can, and he has laid himself out to achieve it in a cumulative way. He +gave many flies to one spider and many spiders to one bird, and then +wanted a cat to eat the many birds. What would have been his later +steps? It would almost be worth while to complete the experiment. It +might be done if there were only a sufficient cause. Men sneered at +vivisection, and yet look at its results to-day! Why not advance science +in its most difficult and vital aspect--the knowledge of the brain? Had +I even the secret of one such mind--did I hold the key to the fancy of +even one lunatic--I might advance my own branch of science to a pitch +compared with which Burdon-Sanderson’s physiology or Ferrier’s +brain-knowledge would be as nothing. If only there were a sufficient +cause! I must not think too much of this, or I may be tempted; a good +cause might turn the scale with me, for may not I too be of an +exceptional brain, congenitally? + +How well the man reasoned; lunatics always do within their own scope. I +wonder at how many lives he values a man, or if at only one. He has +closed the account most accurately, and to-day begun a new record. How +many of us begin a new record with each day of our lives? + +To me it seems only yesterday that my whole life ended with my new hope, +and that truly I began a new record. So it will be until the Great +Recorder sums me up and closes my ledger account with a balance to +profit or loss. Oh, Lucy, Lucy, I cannot be angry with you, nor can I be +angry with my friend whose happiness is yours; but I must only wait on +hopeless and work. Work! work! + +If I only could have as strong a cause as my poor mad friend there--a +good, unselfish cause to make me work--that would be indeed happiness. + + +_Mina Murray’s Journal._ + +_26 July._--I am anxious, and it soothes me to express myself here; it +is like whispering to one’s self and listening at the same time. And +there is also something about the shorthand symbols that makes it +different from writing. I am unhappy about Lucy and about Jonathan. I +had not heard from Jonathan for some time, and was very concerned; but +yesterday dear Mr. Hawkins, who is always so kind, sent me a letter from +him. I had written asking him if he had heard, and he said the enclosed +had just been received. It is only a line dated from Castle Dracula, +and says that he is just starting for home. That is not like Jonathan; +I do not understand it, and it makes me uneasy. Then, too, Lucy, +although she is so well, has lately taken to her old habit of walking in +her sleep. Her mother has spoken to me about it, and we have decided +that I am to lock the door of our room every night. Mrs. Westenra has +got an idea that sleep-walkers always go out on roofs of houses and +along the edges of cliffs and then get suddenly wakened and fall over +with a despairing cry that echoes all over the place. Poor dear, she is +naturally anxious about Lucy, and she tells me that her husband, Lucy’s +father, had the same habit; that he would get up in the night and dress +himself and go out, if he were not stopped. Lucy is to be married in the +autumn, and she is already planning out her dresses and how her house is +to be arranged. I sympathise with her, for I do the same, only Jonathan +and I will start in life in a very simple way, and shall have to try to +make both ends meet. Mr. Holmwood--he is the Hon. Arthur Holmwood, only +son of Lord Godalming--is coming up here very shortly--as soon as he can +leave town, for his father is not very well, and I think dear Lucy is +counting the moments till he comes. She wants to take him up to the seat +on the churchyard cliff and show him the beauty of Whitby. I daresay it +is the waiting which disturbs her; she will be all right when he +arrives. + + * * * * * + +_27 July._--No news from Jonathan. I am getting quite uneasy about him, +though why I should I do not know; but I do wish that he would write, if +it were only a single line. Lucy walks more than ever, and each night I +am awakened by her moving about the room. Fortunately, the weather is so +hot that she cannot get cold; but still the anxiety and the perpetually +being wakened is beginning to tell on me, and I am getting nervous and +wakeful myself. Thank God, Lucy’s health keeps up. Mr. Holmwood has been +suddenly called to Ring to see his father, who has been taken seriously +ill. Lucy frets at the postponement of seeing him, but it does not touch +her looks; she is a trifle stouter, and her cheeks are a lovely +rose-pink. She has lost that anæmic look which she had. I pray it will +all last. + + * * * * * + +_3 August._--Another week gone, and no news from Jonathan, not even to +Mr. Hawkins, from whom I have heard. Oh, I do hope he is not ill. He +surely would have written. I look at that last letter of his, but +somehow it does not satisfy me. It does not read like him, and yet it is +his writing. There is no mistake of that. Lucy has not walked much in +her sleep the last week, but there is an odd concentration about her +which I do not understand; even in her sleep she seems to be watching +me. She tries the door, and finding it locked, goes about the room +searching for the key. + +_6 August._--Another three days, and no news. This suspense is getting +dreadful. If I only knew where to write to or where to go to, I should +feel easier; but no one has heard a word of Jonathan since that last +letter. I must only pray to God for patience. Lucy is more excitable +than ever, but is otherwise well. Last night was very threatening, and +the fishermen say that we are in for a storm. I must try to watch it and +learn the weather signs. To-day is a grey day, and the sun as I write is +hidden in thick clouds, high over Kettleness. Everything is grey--except +the green grass, which seems like emerald amongst it; grey earthy rock; +grey clouds, tinged with the sunburst at the far edge, hang over the +grey sea, into which the sand-points stretch like grey fingers. The sea +is tumbling in over the shallows and the sandy flats with a roar, +muffled in the sea-mists drifting inland. The horizon is lost in a grey +mist. All is vastness; the clouds are piled up like giant rocks, and +there is a “brool” over the sea that sounds like some presage of doom. +Dark figures are on the beach here and there, sometimes half shrouded in +the mist, and seem “men like trees walking.” The fishing-boats are +racing for home, and rise and dip in the ground swell as they sweep into +the harbour, bending to the scuppers. Here comes old Mr. Swales. He is +making straight for me, and I can see, by the way he lifts his hat, that +he wants to talk.... + +I have been quite touched by the change in the poor old man. When he sat +down beside me, he said in a very gentle way:-- + +“I want to say something to you, miss.” I could see he was not at ease, +so I took his poor old wrinkled hand in mine and asked him to speak +fully; so he said, leaving his hand in mine:-- + +“I’m afraid, my deary, that I must have shocked you by all the wicked +things I’ve been sayin’ about the dead, and such like, for weeks past; +but I didn’t mean them, and I want ye to remember that when I’m gone. We +aud folks that be daffled, and with one foot abaft the krok-hooal, don’t +altogether like to think of it, and we don’t want to feel scart of it; +an’ that’s why I’ve took to makin’ light of it, so that I’d cheer up my +own heart a bit. But, Lord love ye, miss, I ain’t afraid of dyin’, not a +bit; only I don’t want to die if I can help it. My time must be nigh at +hand now, for I be aud, and a hundred years is too much for any man to +expect; and I’m so nigh it that the Aud Man is already whettin’ his +scythe. Ye see, I can’t get out o’ the habit of caffin’ about it all at +once; the chafts will wag as they be used to. Some day soon the Angel of +Death will sound his trumpet for me. But don’t ye dooal an’ greet, my +deary!”--for he saw that I was crying--“if he should come this very +night I’d not refuse to answer his call. For life be, after all, only a +waitin’ for somethin’ else than what we’re doin’; and death be all that +we can rightly depend on. But I’m content, for it’s comin’ to me, my +deary, and comin’ quick. It may be comin’ while we be lookin’ and +wonderin’. Maybe it’s in that wind out over the sea that’s bringin’ with +it loss and wreck, and sore distress, and sad hearts. Look! look!” he +cried suddenly. “There’s something in that wind and in the hoast beyont +that sounds, and looks, and tastes, and smells like death. It’s in the +air; I feel it comin’. Lord, make me answer cheerful when my call +comes!” He held up his arms devoutly, and raised his hat. His mouth +moved as though he were praying. After a few minutes’ silence, he got +up, shook hands with me, and blessed me, and said good-bye, and hobbled +off. It all touched me, and upset me very much. + +I was glad when the coastguard came along, with his spy-glass under his +arm. He stopped to talk with me, as he always does, but all the time +kept looking at a strange ship. + +“I can’t make her out,” he said; “she’s a Russian, by the look of her; +but she’s knocking about in the queerest way. She doesn’t know her mind +a bit; she seems to see the storm coming, but can’t decide whether to +run up north in the open, or to put in here. Look there again! She is +steered mighty strangely, for she doesn’t mind the hand on the wheel; +changes about with every puff of wind. We’ll hear more of her before +this time to-morrow.” + + + + +CHAPTER VII + +CUTTING FROM “THE DAILYGRAPH,” 8 AUGUST + + +(_Pasted in Mina Murray’s Journal._) + +From a Correspondent. + +_Whitby_. + +One of the greatest and suddenest storms on record has just been +experienced here, with results both strange and unique. The weather had +been somewhat sultry, but not to any degree uncommon in the month of +August. Saturday evening was as fine as was ever known, and the great +body of holiday-makers laid out yesterday for visits to Mulgrave Woods, +Robin Hood’s Bay, Rig Mill, Runswick, Staithes, and the various trips in +the neighbourhood of Whitby. The steamers _Emma_ and _Scarborough_ made +trips up and down the coast, and there was an unusual amount of +“tripping” both to and from Whitby. The day was unusually fine till the +afternoon, when some of the gossips who frequent the East Cliff +churchyard, and from that commanding eminence watch the wide sweep of +sea visible to the north and east, called attention to a sudden show of +“mares’-tails” high in the sky to the north-west. The wind was then +blowing from the south-west in the mild degree which in barometrical +language is ranked “No. 2: light breeze.” The coastguard on duty at once +made report, and one old fisherman, who for more than half a century has +kept watch on weather signs from the East Cliff, foretold in an emphatic +manner the coming of a sudden storm. The approach of sunset was so very +beautiful, so grand in its masses of splendidly-coloured clouds, that +there was quite an assemblage on the walk along the cliff in the old +churchyard to enjoy the beauty. Before the sun dipped below the black +mass of Kettleness, standing boldly athwart the western sky, its +downward way was marked by myriad clouds of every sunset-colour--flame, +purple, pink, green, violet, and all the tints of gold; with here and +there masses not large, but of seemingly absolute blackness, in all +sorts of shapes, as well outlined as colossal silhouettes. The +experience was not lost on the painters, and doubtless some of the +sketches of the “Prelude to the Great Storm” will grace the R. A. and R. +I. walls in May next. More than one captain made up his mind then and +there that his “cobble” or his “mule,” as they term the different +classes of boats, would remain in the harbour till the storm had passed. +The wind fell away entirely during the evening, and at midnight there +was a dead calm, a sultry heat, and that prevailing intensity which, on +the approach of thunder, affects persons of a sensitive nature. There +were but few lights in sight at sea, for even the coasting steamers, +which usually “hug” the shore so closely, kept well to seaward, and but +few fishing-boats were in sight. The only sail noticeable was a foreign +schooner with all sails set, which was seemingly going westwards. The +foolhardiness or ignorance of her officers was a prolific theme for +comment whilst she remained in sight, and efforts were made to signal +her to reduce sail in face of her danger. Before the night shut down she +was seen with sails idly flapping as she gently rolled on the undulating +swell of the sea, + + “As idle as a painted ship upon a painted ocean.” + +Shortly before ten o’clock the stillness of the air grew quite +oppressive, and the silence was so marked that the bleating of a sheep +inland or the barking of a dog in the town was distinctly heard, and the +band on the pier, with its lively French air, was like a discord in the +great harmony of nature’s silence. A little after midnight came a +strange sound from over the sea, and high overhead the air began to +carry a strange, faint, hollow booming. + +Then without warning the tempest broke. With a rapidity which, at the +time, seemed incredible, and even afterwards is impossible to realize, +the whole aspect of nature at once became convulsed. The waves rose in +growing fury, each overtopping its fellow, till in a very few minutes +the lately glassy sea was like a roaring and devouring monster. +White-crested waves beat madly on the level sands and rushed up the +shelving cliffs; others broke over the piers, and with their spume swept +the lanthorns of the lighthouses which rise from the end of either pier +of Whitby Harbour. The wind roared like thunder, and blew with such +force that it was with difficulty that even strong men kept their feet, +or clung with grim clasp to the iron stanchions. It was found necessary +to clear the entire piers from the mass of onlookers, or else the +fatalities of the night would have been increased manifold. To add to +the difficulties and dangers of the time, masses of sea-fog came +drifting inland--white, wet clouds, which swept by in ghostly fashion, +so dank and damp and cold that it needed but little effort of +imagination to think that the spirits of those lost at sea were +touching their living brethren with the clammy hands of death, and many +a one shuddered as the wreaths of sea-mist swept by. At times the mist +cleared, and the sea for some distance could be seen in the glare of the +lightning, which now came thick and fast, followed by such sudden peals +of thunder that the whole sky overhead seemed trembling under the shock +of the footsteps of the storm. + +Some of the scenes thus revealed were of immeasurable grandeur and of +absorbing interest--the sea, running mountains high, threw skywards with +each wave mighty masses of white foam, which the tempest seemed to +snatch at and whirl away into space; here and there a fishing-boat, with +a rag of sail, running madly for shelter before the blast; now and again +the white wings of a storm-tossed sea-bird. On the summit of the East +Cliff the new searchlight was ready for experiment, but had not yet been +tried. The officers in charge of it got it into working order, and in +the pauses of the inrushing mist swept with it the surface of the sea. +Once or twice its service was most effective, as when a fishing-boat, +with gunwale under water, rushed into the harbour, able, by the guidance +of the sheltering light, to avoid the danger of dashing against the +piers. As each boat achieved the safety of the port there was a shout of +joy from the mass of people on shore, a shout which for a moment seemed +to cleave the gale and was then swept away in its rush. + +Before long the searchlight discovered some distance away a schooner +with all sails set, apparently the same vessel which had been noticed +earlier in the evening. The wind had by this time backed to the east, +and there was a shudder amongst the watchers on the cliff as they +realized the terrible danger in which she now was. Between her and the +port lay the great flat reef on which so many good ships have from time +to time suffered, and, with the wind blowing from its present quarter, +it would be quite impossible that she should fetch the entrance of the +harbour. It was now nearly the hour of high tide, but the waves were so +great that in their troughs the shallows of the shore were almost +visible, and the schooner, with all sails set, was rushing with such +speed that, in the words of one old salt, “she must fetch up somewhere, +if it was only in hell.” Then came another rush of sea-fog, greater than +any hitherto--a mass of dank mist, which seemed to close on all things +like a grey pall, and left available to men only the organ of hearing, +for the roar of the tempest, and the crash of the thunder, and the +booming of the mighty billows came through the damp oblivion even louder +than before. The rays of the searchlight were kept fixed on the harbour +mouth across the East Pier, where the shock was expected, and men waited +breathless. The wind suddenly shifted to the north-east, and the remnant +of the sea-fog melted in the blast; and then, _mirabile dictu_, between +the piers, leaping from wave to wave as it rushed at headlong speed, +swept the strange schooner before the blast, with all sail set, and +gained the safety of the harbour. The searchlight followed her, and a +shudder ran through all who saw her, for lashed to the helm was a +corpse, with drooping head, which swung horribly to and fro at each +motion of the ship. No other form could be seen on deck at all. A great +awe came on all as they realised that the ship, as if by a miracle, had +found the harbour, unsteered save by the hand of a dead man! However, +all took place more quickly than it takes to write these words. The +schooner paused not, but rushing across the harbour, pitched herself on +that accumulation of sand and gravel washed by many tides and many +storms into the south-east corner of the pier jutting under the East +Cliff, known locally as Tate Hill Pier. + +There was of course a considerable concussion as the vessel drove up on +the sand heap. Every spar, rope, and stay was strained, and some of the +“top-hammer” came crashing down. But, strangest of all, the very instant +the shore was touched, an immense dog sprang up on deck from below, as +if shot up by the concussion, and running forward, jumped from the bow +on the sand. Making straight for the steep cliff, where the churchyard +hangs over the laneway to the East Pier so steeply that some of the flat +tombstones--“thruff-steans” or “through-stones,” as they call them in +the Whitby vernacular--actually project over where the sustaining cliff +has fallen away, it disappeared in the darkness, which seemed +intensified just beyond the focus of the searchlight. + +It so happened that there was no one at the moment on Tate Hill Pier, as +all those whose houses are in close proximity were either in bed or were +out on the heights above. Thus the coastguard on duty on the eastern +side of the harbour, who at once ran down to the little pier, was the +first to climb on board. The men working the searchlight, after scouring +the entrance of the harbour without seeing anything, then turned the +light on the derelict and kept it there. The coastguard ran aft, and +when he came beside the wheel, bent over to examine it, and recoiled at +once as though under some sudden emotion. This seemed to pique general +curiosity, and quite a number of people began to run. It is a good way +round from the West Cliff by the Drawbridge to Tate Hill Pier, but your +correspondent is a fairly good runner, and came well ahead of the crowd. +When I arrived, however, I found already assembled on the pier a crowd, +whom the coastguard and police refused to allow to come on board. By the +courtesy of the chief boatman, I was, as your correspondent, permitted +to climb on deck, and was one of a small group who saw the dead seaman +whilst actually lashed to the wheel. + +It was no wonder that the coastguard was surprised, or even awed, for +not often can such a sight have been seen. The man was simply fastened +by his hands, tied one over the other, to a spoke of the wheel. Between +the inner hand and the wood was a crucifix, the set of beads on which it +was fastened being around both wrists and wheel, and all kept fast by +the binding cords. The poor fellow may have been seated at one time, but +the flapping and buffeting of the sails had worked through the rudder of +the wheel and dragged him to and fro, so that the cords with which he +was tied had cut the flesh to the bone. Accurate note was made of the +state of things, and a doctor--Surgeon J. M. Caffyn, of 33, East Elliot +Place--who came immediately after me, declared, after making +examination, that the man must have been dead for quite two days. In his +pocket was a bottle, carefully corked, empty save for a little roll of +paper, which proved to be the addendum to the log. The coastguard said +the man must have tied up his own hands, fastening the knots with his +teeth. The fact that a coastguard was the first on board may save some +complications, later on, in the Admiralty Court; for coastguards cannot +claim the salvage which is the right of the first civilian entering on a +derelict. Already, however, the legal tongues are wagging, and one young +law student is loudly asserting that the rights of the owner are already +completely sacrificed, his property being held in contravention of the +statutes of mortmain, since the tiller, as emblemship, if not proof, of +delegated possession, is held in a _dead hand_. It is needless to say +that the dead steersman has been reverently removed from the place where +he held his honourable watch and ward till death--a steadfastness as +noble as that of the young Casabianca--and placed in the mortuary to +await inquest. + +Already the sudden storm is passing, and its fierceness is abating; +crowds are scattering homeward, and the sky is beginning to redden over +the Yorkshire wolds. I shall send, in time for your next issue, further +details of the derelict ship which found her way so miraculously into +harbour in the storm. + +_Whitby_ + +_9 August._--The sequel to the strange arrival of the derelict in the +storm last night is almost more startling than the thing itself. It +turns out that the schooner is a Russian from Varna, and is called the +_Demeter_. She is almost entirely in ballast of silver sand, with only a +small amount of cargo--a number of great wooden boxes filled with mould. +This cargo was consigned to a Whitby solicitor, Mr. S. F. Billington, of +7, The Crescent, who this morning went aboard and formally took +possession of the goods consigned to him. The Russian consul, too, +acting for the charter-party, took formal possession of the ship, and +paid all harbour dues, etc. Nothing is talked about here to-day except +the strange coincidence; the officials of the Board of Trade have been +most exacting in seeing that every compliance has been made with +existing regulations. As the matter is to be a “nine days’ wonder,” they +are evidently determined that there shall be no cause of after +complaint. A good deal of interest was abroad concerning the dog which +landed when the ship struck, and more than a few of the members of the +S. P. C. A., which is very strong in Whitby, have tried to befriend the +animal. To the general disappointment, however, it was not to be found; +it seems to have disappeared entirely from the town. It may be that it +was frightened and made its way on to the moors, where it is still +hiding in terror. There are some who look with dread on such a +possibility, lest later on it should in itself become a danger, for it +is evidently a fierce brute. Early this morning a large dog, a half-bred +mastiff belonging to a coal merchant close to Tate Hill Pier, was found +dead in the roadway opposite to its master’s yard. It had been fighting, +and manifestly had had a savage opponent, for its throat was torn away, +and its belly was slit open as if with a savage claw. + + * * * * * + +_Later._--By the kindness of the Board of Trade inspector, I have been +permitted to look over the log-book of the _Demeter_, which was in order +up to within three days, but contained nothing of special interest +except as to facts of missing men. The greatest interest, however, is +with regard to the paper found in the bottle, which was to-day produced +at the inquest; and a more strange narrative than the two between them +unfold it has not been my lot to come across. As there is no motive for +concealment, I am permitted to use them, and accordingly send you a +rescript, simply omitting technical details of seamanship and +supercargo. It almost seems as though the captain had been seized with +some kind of mania before he had got well into blue water, and that +this had developed persistently throughout the voyage. Of course my +statement must be taken _cum grano_, since I am writing from the +dictation of a clerk of the Russian consul, who kindly translated for +me, time being short. + + LOG OF THE “DEMETER.” + + +_Varna to Whitby._ + +_Written 18 July, things so strange happening, that I shall keep +accurate note henceforth till we land._ + + * * * * * + +On 6 July we finished taking in cargo, silver sand and boxes of earth. +At noon set sail. East wind, fresh. Crew, five hands ... two mates, +cook, and myself (captain). + + * * * * * + +On 11 July at dawn entered Bosphorus. Boarded by Turkish Customs +officers. Backsheesh. All correct. Under way at 4 p. m. + + * * * * * + +On 12 July through Dardanelles. More Customs officers and flagboat of +guarding squadron. Backsheesh again. Work of officers thorough, but +quick. Want us off soon. At dark passed into Archipelago. + + * * * * * + +On 13 July passed Cape Matapan. Crew dissatisfied about something. +Seemed scared, but would not speak out. + + * * * * * + +On 14 July was somewhat anxious about crew. Men all steady fellows, who +sailed with me before. Mate could not make out what was wrong; they only +told him there was _something_, and crossed themselves. Mate lost temper +with one of them that day and struck him. Expected fierce quarrel, but +all was quiet. + + * * * * * + +On 16 July mate reported in the morning that one of crew, Petrofsky, was +missing. Could not account for it. Took larboard watch eight bells last +night; was relieved by Abramoff, but did not go to bunk. Men more +downcast than ever. All said they expected something of the kind, but +would not say more than there was _something_ aboard. Mate getting very +impatient with them; feared some trouble ahead. + + * * * * * + +On 17 July, yesterday, one of the men, Olgaren, came to my cabin, and in +an awestruck way confided to me that he thought there was a strange man +aboard the ship. He said that in his watch he had been sheltering +behind the deck-house, as there was a rain-storm, when he saw a tall, +thin man, who was not like any of the crew, come up the companion-way, +and go along the deck forward, and disappear. He followed cautiously, +but when he got to bows found no one, and the hatchways were all closed. +He was in a panic of superstitious fear, and I am afraid the panic may +spread. To allay it, I shall to-day search entire ship carefully from +stem to stern. + + * * * * * + +Later in the day I got together the whole crew, and told them, as they +evidently thought there was some one in the ship, we would search from +stem to stern. First mate angry; said it was folly, and to yield to such +foolish ideas would demoralise the men; said he would engage to keep +them out of trouble with a handspike. I let him take the helm, while the +rest began thorough search, all keeping abreast, with lanterns: we left +no corner unsearched. As there were only the big wooden boxes, there +were no odd corners where a man could hide. Men much relieved when +search over, and went back to work cheerfully. First mate scowled, but +said nothing. + + * * * * * + +_22 July_.--Rough weather last three days, and all hands busy with +sails--no time to be frightened. Men seem to have forgotten their dread. +Mate cheerful again, and all on good terms. Praised men for work in bad +weather. Passed Gibralter and out through Straits. All well. + + * * * * * + +_24 July_.--There seems some doom over this ship. Already a hand short, +and entering on the Bay of Biscay with wild weather ahead, and yet last +night another man lost--disappeared. Like the first, he came off his +watch and was not seen again. Men all in a panic of fear; sent a round +robin, asking to have double watch, as they fear to be alone. Mate +angry. Fear there will be some trouble, as either he or the men will do +some violence. + + * * * * * + +_28 July_.--Four days in hell, knocking about in a sort of maelstrom, +and the wind a tempest. No sleep for any one. Men all worn out. Hardly +know how to set a watch, since no one fit to go on. Second mate +volunteered to steer and watch, and let men snatch a few hours’ sleep. +Wind abating; seas still terrific, but feel them less, as ship is +steadier. + + * * * * * + +_29 July_.--Another tragedy. Had single watch to-night, as crew too +tired to double. When morning watch came on deck could find no one +except steersman. Raised outcry, and all came on deck. Thorough search, +but no one found. Are now without second mate, and crew in a panic. Mate +and I agreed to go armed henceforth and wait for any sign of cause. + + * * * * * + +_30 July_.--Last night. Rejoiced we are nearing England. Weather fine, +all sails set. Retired worn out; slept soundly; awaked by mate telling +me that both man of watch and steersman missing. Only self and mate and +two hands left to work ship. + + * * * * * + +_1 August_.--Two days of fog, and not a sail sighted. Had hoped when in +the English Channel to be able to signal for help or get in somewhere. +Not having power to work sails, have to run before wind. Dare not lower, +as could not raise them again. We seem to be drifting to some terrible +doom. Mate now more demoralised than either of men. His stronger nature +seems to have worked inwardly against himself. Men are beyond fear, +working stolidly and patiently, with minds made up to worst. They are +Russian, he Roumanian. + + * * * * * + +_2 August, midnight_.--Woke up from few minutes’ sleep by hearing a cry, +seemingly outside my port. Could see nothing in fog. Rushed on deck, and +ran against mate. Tells me heard cry and ran, but no sign of man on +watch. One more gone. Lord, help us! Mate says we must be past Straits +of Dover, as in a moment of fog lifting he saw North Foreland, just as +he heard the man cry out. If so we are now off in the North Sea, and +only God can guide us in the fog, which seems to move with us; and God +seems to have deserted us. + + * * * * * + +_3 August_.--At midnight I went to relieve the man at the wheel, and +when I got to it found no one there. The wind was steady, and as we ran +before it there was no yawing. I dared not leave it, so shouted for the +mate. After a few seconds he rushed up on deck in his flannels. He +looked wild-eyed and haggard, and I greatly fear his reason has given +way. He came close to me and whispered hoarsely, with his mouth to my +ear, as though fearing the very air might hear: “_It_ is here; I know +it, now. On the watch last night I saw It, like a man, tall and thin, +and ghastly pale. It was in the bows, and looking out. I crept behind +It, and gave It my knife; but the knife went through It, empty as the +air.” And as he spoke he took his knife and drove it savagely into +space. Then he went on: “But It is here, and I’ll find It. It is in the +hold, perhaps in one of those boxes. I’ll unscrew them one by one and +see. You work the helm.” And, with a warning look and his finger on his +lip, he went below. There was springing up a choppy wind, and I could +not leave the helm. I saw him come out on deck again with a tool-chest +and a lantern, and go down the forward hatchway. He is mad, stark, +raving mad, and it’s no use my trying to stop him. He can’t hurt those +big boxes: they are invoiced as “clay,” and to pull them about is as +harmless a thing as he can do. So here I stay, and mind the helm, and +write these notes. I can only trust in God and wait till the fog clears. +Then, if I can’t steer to any harbour with the wind that is, I shall cut +down sails and lie by, and signal for help.... + + * * * * * + +It is nearly all over now. Just as I was beginning to hope that the mate +would come out calmer--for I heard him knocking away at something in the +hold, and work is good for him--there came up the hatchway a sudden, +startled scream, which made my blood run cold, and up on the deck he +came as if shot from a gun--a raging madman, with his eyes rolling and +his face convulsed with fear. “Save me! save me!” he cried, and then +looked round on the blanket of fog. His horror turned to despair, and in +a steady voice he said: “You had better come too, captain, before it is +too late. _He_ is there. I know the secret now. The sea will save me +from Him, and it is all that is left!” Before I could say a word, or +move forward to seize him, he sprang on the bulwark and deliberately +threw himself into the sea. I suppose I know the secret too, now. It was +this madman who had got rid of the men one by one, and now he has +followed them himself. God help me! How am I to account for all these +horrors when I get to port? _When_ I get to port! Will that ever be? + + * * * * * + +_4 August._--Still fog, which the sunrise cannot pierce. I know there is +sunrise because I am a sailor, why else I know not. I dared not go +below, I dared not leave the helm; so here all night I stayed, and in +the dimness of the night I saw It--Him! God forgive me, but the mate was +right to jump overboard. It was better to die like a man; to die like a +sailor in blue water no man can object. But I am captain, and I must not +leave my ship. But I shall baffle this fiend or monster, for I shall tie +my hands to the wheel when my strength begins to fail, and along with +them I shall tie that which He--It!--dare not touch; and then, come good +wind or foul, I shall save my soul, and my honour as a captain. I am +growing weaker, and the night is coming on. If He can look me in the +face again, I may not have time to act.... If we are wrecked, mayhap +this bottle may be found, and those who find it may understand; if not, +... well, then all men shall know that I have been true to my trust. God +and the Blessed Virgin and the saints help a poor ignorant soul trying +to do his duty.... + + * * * * * + +Of course the verdict was an open one. There is no evidence to adduce; +and whether or not the man himself committed the murders there is now +none to say. The folk here hold almost universally that the captain is +simply a hero, and he is to be given a public funeral. Already it is +arranged that his body is to be taken with a train of boats up the Esk +for a piece and then brought back to Tate Hill Pier and up the abbey +steps; for he is to be buried in the churchyard on the cliff. The owners +of more than a hundred boats have already given in their names as +wishing to follow him to the grave. + +No trace has ever been found of the great dog; at which there is much +mourning, for, with public opinion in its present state, he would, I +believe, be adopted by the town. To-morrow will see the funeral; and so +will end this one more “mystery of the sea.” + + +_Mina Murray’s Journal._ + +_8 August._--Lucy was very restless all night, and I, too, could not +sleep. The storm was fearful, and as it boomed loudly among the +chimney-pots, it made me shudder. When a sharp puff came it seemed to be +like a distant gun. Strangely enough, Lucy did not wake; but she got up +twice and dressed herself. Fortunately, each time I awoke in time and +managed to undress her without waking her, and got her back to bed. It +is a very strange thing, this sleep-walking, for as soon as her will is +thwarted in any physical way, her intention, if there be any, +disappears, and she yields herself almost exactly to the routine of her +life. + +Early in the morning we both got up and went down to the harbour to see +if anything had happened in the night. There were very few people about, +and though the sun was bright, and the air clear and fresh, the big, +grim-looking waves, that seemed dark themselves because the foam that +topped them was like snow, forced themselves in through the narrow mouth +of the harbour--like a bullying man going through a crowd. Somehow I +felt glad that Jonathan was not on the sea last night, but on land. But, +oh, is he on land or sea? Where is he, and how? I am getting fearfully +anxious about him. If I only knew what to do, and could do anything! + + * * * * * + +_10 August._--The funeral of the poor sea-captain to-day was most +touching. Every boat in the harbour seemed to be there, and the coffin +was carried by captains all the way from Tate Hill Pier up to the +churchyard. Lucy came with me, and we went early to our old seat, whilst +the cortège of boats went up the river to the Viaduct and came down +again. We had a lovely view, and saw the procession nearly all the way. +The poor fellow was laid to rest quite near our seat so that we stood on +it when the time came and saw everything. Poor Lucy seemed much upset. +She was restless and uneasy all the time, and I cannot but think that +her dreaming at night is telling on her. She is quite odd in one thing: +she will not admit to me that there is any cause for restlessness; or if +there be, she does not understand it herself. There is an additional +cause in that poor old Mr. Swales was found dead this morning on our +seat, his neck being broken. He had evidently, as the doctor said, +fallen back in the seat in some sort of fright, for there was a look of +fear and horror on his face that the men said made them shudder. Poor +dear old man! Perhaps he had seen Death with his dying eyes! Lucy is so +sweet and sensitive that she feels influences more acutely than other +people do. Just now she was quite upset by a little thing which I did +not much heed, though I am myself very fond of animals. One of the men +who came up here often to look for the boats was followed by his dog. +The dog is always with him. They are both quiet persons, and I never saw +the man angry, nor heard the dog bark. During the service the dog would +not come to its master, who was on the seat with us, but kept a few +yards off, barking and howling. Its master spoke to it gently, and then +harshly, and then angrily; but it would neither come nor cease to make a +noise. It was in a sort of fury, with its eyes savage, and all its hairs +bristling out like a cat’s tail when puss is on the war-path. Finally +the man, too, got angry, and jumped down and kicked the dog, and then +took it by the scruff of the neck and half dragged and half threw it on +the tombstone on which the seat is fixed. The moment it touched the +stone the poor thing became quiet and fell all into a tremble. It did +not try to get away, but crouched down, quivering and cowering, and was +in such a pitiable state of terror that I tried, though without effect, +to comfort it. Lucy was full of pity, too, but she did not attempt to +touch the dog, but looked at it in an agonised sort of way. I greatly +fear that she is of too super-sensitive a nature to go through the world +without trouble. She will be dreaming of this to-night, I am sure. The +whole agglomeration of things--the ship steered into port by a dead +man; his attitude, tied to the wheel with a crucifix and beads; the +touching funeral; the dog, now furious and now in terror--will all +afford material for her dreams. + +I think it will be best for her to go to bed tired out physically, so I +shall take her for a long walk by the cliffs to Robin Hood’s Bay and +back. She ought not to have much inclination for sleep-walking then. + + + + +CHAPTER VIII + +MINA MURRAY’S JOURNAL + + +_Same day, 11 o’clock p. m._--Oh, but I am tired! If it were not that I +had made my diary a duty I should not open it to-night. We had a lovely +walk. Lucy, after a while, was in gay spirits, owing, I think, to some +dear cows who came nosing towards us in a field close to the lighthouse, +and frightened the wits out of us. I believe we forgot everything +except, of course, personal fear, and it seemed to wipe the slate clean +and give us a fresh start. We had a capital “severe tea” at Robin Hood’s +Bay in a sweet little old-fashioned inn, with a bow-window right over +the seaweed-covered rocks of the strand. I believe we should have +shocked the “New Woman” with our appetites. Men are more tolerant, bless +them! Then we walked home with some, or rather many, stoppages to rest, +and with our hearts full of a constant dread of wild bulls. Lucy was +really tired, and we intended to creep off to bed as soon as we could. +The young curate came in, however, and Mrs. Westenra asked him to stay +for supper. Lucy and I had both a fight for it with the dusty miller; I +know it was a hard fight on my part, and I am quite heroic. I think that +some day the bishops must get together and see about breeding up a new +class of curates, who don’t take supper, no matter how they may be +pressed to, and who will know when girls are tired. Lucy is asleep and +breathing softly. She has more colour in her cheeks than usual, and +looks, oh, so sweet. If Mr. Holmwood fell in love with her seeing her +only in the drawing-room, I wonder what he would say if he saw her now. +Some of the “New Women” writers will some day start an idea that men and +women should be allowed to see each other asleep before proposing or +accepting. But I suppose the New Woman won’t condescend in future to +accept; she will do the proposing herself. And a nice job she will make +of it, too! There’s some consolation in that. I am so happy to-night, +because dear Lucy seems better. I really believe she has turned the +corner, and that we are over her troubles with dreaming. I should be +quite happy if I only knew if Jonathan.... God bless and keep him. + + * * * * * + +_11 August, 3 a. m._--Diary again. No sleep now, so I may as well write. +I am too agitated to sleep. We have had such an adventure, such an +agonising experience. I fell asleep as soon as I had closed my diary.... +Suddenly I became broad awake, and sat up, with a horrible sense of fear +upon me, and of some feeling of emptiness around me. The room was dark, +so I could not see Lucy’s bed; I stole across and felt for her. The bed +was empty. I lit a match and found that she was not in the room. The +door was shut, but not locked, as I had left it. I feared to wake her +mother, who has been more than usually ill lately, so threw on some +clothes and got ready to look for her. As I was leaving the room it +struck me that the clothes she wore might give me some clue to her +dreaming intention. Dressing-gown would mean house; dress, outside. +Dressing-gown and dress were both in their places. “Thank God,” I said +to myself, “she cannot be far, as she is only in her nightdress.” I ran +downstairs and looked in the sitting-room. Not there! Then I looked in +all the other open rooms of the house, with an ever-growing fear +chilling my heart. Finally I came to the hall door and found it open. It +was not wide open, but the catch of the lock had not caught. The people +of the house are careful to lock the door every night, so I feared that +Lucy must have gone out as she was. There was no time to think of what +might happen; a vague, overmastering fear obscured all details. I took a +big, heavy shawl and ran out. The clock was striking one as I was in the +Crescent, and there was not a soul in sight. I ran along the North +Terrace, but could see no sign of the white figure which I expected. At +the edge of the West Cliff above the pier I looked across the harbour to +the East Cliff, in the hope or fear--I don’t know which--of seeing Lucy +in our favourite seat. There was a bright full moon, with heavy black, +driving clouds, which threw the whole scene into a fleeting diorama of +light and shade as they sailed across. For a moment or two I could see +nothing, as the shadow of a cloud obscured St. Mary’s Church and all +around it. Then as the cloud passed I could see the ruins of the abbey +coming into view; and as the edge of a narrow band of light as sharp as +a sword-cut moved along, the church and the churchyard became gradually +visible. Whatever my expectation was, it was not disappointed, for +there, on our favourite seat, the silver light of the moon struck a +half-reclining figure, snowy white. The coming of the cloud was too +quick for me to see much, for shadow shut down on light almost +immediately; but it seemed to me as though something dark stood behind +the seat where the white figure shone, and bent over it. What it was, +whether man or beast, I could not tell; I did not wait to catch another +glance, but flew down the steep steps to the pier and along by the +fish-market to the bridge, which was the only way to reach the East +Cliff. The town seemed as dead, for not a soul did I see; I rejoiced +that it was so, for I wanted no witness of poor Lucy’s condition. The +time and distance seemed endless, and my knees trembled and my breath +came laboured as I toiled up the endless steps to the abbey. I must have +gone fast, and yet it seemed to me as if my feet were weighted with +lead, and as though every joint in my body were rusty. When I got almost +to the top I could see the seat and the white figure, for I was now +close enough to distinguish it even through the spells of shadow. There +was undoubtedly something, long and black, bending over the +half-reclining white figure. I called in fright, “Lucy! Lucy!” and +something raised a head, and from where I was I could see a white face +and red, gleaming eyes. Lucy did not answer, and I ran on to the +entrance of the churchyard. As I entered, the church was between me and +the seat, and for a minute or so I lost sight of her. When I came in +view again the cloud had passed, and the moonlight struck so brilliantly +that I could see Lucy half reclining with her head lying over the back +of the seat. She was quite alone, and there was not a sign of any living +thing about. + +When I bent over her I could see that she was still asleep. Her lips +were parted, and she was breathing--not softly as usual with her, but in +long, heavy gasps, as though striving to get her lungs full at every +breath. As I came close, she put up her hand in her sleep and pulled the +collar of her nightdress close around her throat. Whilst she did so +there came a little shudder through her, as though she felt the cold. I +flung the warm shawl over her, and drew the edges tight round her neck, +for I dreaded lest she should get some deadly chill from the night air, +unclad as she was. I feared to wake her all at once, so, in order to +have my hands free that I might help her, I fastened the shawl at her +throat with a big safety-pin; but I must have been clumsy in my anxiety +and pinched or pricked her with it, for by-and-by, when her breathing +became quieter, she put her hand to her throat again and moaned. When I +had her carefully wrapped up I put my shoes on her feet and then began +very gently to wake her. At first she did not respond; but gradually she +became more and more uneasy in her sleep, moaning and sighing +occasionally. At last, as time was passing fast, and, for many other +reasons, I wished to get her home at once, I shook her more forcibly, +till finally she opened her eyes and awoke. She did not seem surprised +to see me, as, of course, she did not realise all at once where she was. +Lucy always wakes prettily, and even at such a time, when her body must +have been chilled with cold, and her mind somewhat appalled at waking +unclad in a churchyard at night, she did not lose her grace. She +trembled a little, and clung to me; when I told her to come at once with +me home she rose without a word, with the obedience of a child. As we +passed along, the gravel hurt my feet, and Lucy noticed me wince. She +stopped and wanted to insist upon my taking my shoes; but I would not. +However, when we got to the pathway outside the churchyard, where there +was a puddle of water, remaining from the storm, I daubed my feet with +mud, using each foot in turn on the other, so that as we went home, no +one, in case we should meet any one, should notice my bare feet. + +Fortune favoured us, and we got home without meeting a soul. Once we saw +a man, who seemed not quite sober, passing along a street in front of +us; but we hid in a door till he had disappeared up an opening such as +there are here, steep little closes, or “wynds,” as they call them in +Scotland. My heart beat so loud all the time that sometimes I thought I +should faint. I was filled with anxiety about Lucy, not only for her +health, lest she should suffer from the exposure, but for her reputation +in case the story should get wind. When we got in, and had washed our +feet, and had said a prayer of thankfulness together, I tucked her into +bed. Before falling asleep she asked--even implored--me not to say a +word to any one, even her mother, about her sleep-walking adventure. I +hesitated at first to promise; but on thinking of the state of her +mother’s health, and how the knowledge of such a thing would fret her, +and thinking, too, of how such a story might become distorted--nay, +infallibly would--in case it should leak out, I thought it wiser to do +so. I hope I did right. I have locked the door, and the key is tied to +my wrist, so perhaps I shall not be again disturbed. Lucy is sleeping +soundly; the reflex of the dawn is high and far over the sea.... + + * * * * * + +_Same day, noon._--All goes well. Lucy slept till I woke her and seemed +not to have even changed her side. The adventure of the night does not +seem to have harmed her; on the contrary, it has benefited her, for she +looks better this morning than she has done for weeks. I was sorry to +notice that my clumsiness with the safety-pin hurt her. Indeed, it might +have been serious, for the skin of her throat was pierced. I must have +pinched up a piece of loose skin and have transfixed it, for there are +two little red points like pin-pricks, and on the band of her nightdress +was a drop of blood. When I apologised and was concerned about it, she +laughed and petted me, and said she did not even feel it. Fortunately it +cannot leave a scar, as it is so tiny. + + * * * * * + +_Same day, night._--We passed a happy day. The air was clear, and the +sun bright, and there was a cool breeze. We took our lunch to Mulgrave +Woods, Mrs. Westenra driving by the road and Lucy and I walking by the +cliff-path and joining her at the gate. I felt a little sad myself, for +I could not but feel how _absolutely_ happy it would have been had +Jonathan been with me. But there! I must only be patient. In the evening +we strolled in the Casino Terrace, and heard some good music by Spohr +and Mackenzie, and went to bed early. Lucy seems more restful than she +has been for some time, and fell asleep at once. I shall lock the door +and secure the key the same as before, though I do not expect any +trouble to-night. + + * * * * * + +_12 August._--My expectations were wrong, for twice during the night I +was wakened by Lucy trying to get out. She seemed, even in her sleep, to +be a little impatient at finding the door shut, and went back to bed +under a sort of protest. I woke with the dawn, and heard the birds +chirping outside of the window. Lucy woke, too, and, I was glad to see, +was even better than on the previous morning. All her old gaiety of +manner seemed to have come back, and she came and snuggled in beside me +and told me all about Arthur. I told her how anxious I was about +Jonathan, and then she tried to comfort me. Well, she succeeded +somewhat, for, though sympathy can’t alter facts, it can help to make +them more bearable. + + * * * * * + +_13 August._--Another quiet day, and to bed with the key on my wrist as +before. Again I awoke in the night, and found Lucy sitting up in bed, +still asleep, pointing to the window. I got up quietly, and pulling +aside the blind, looked out. It was brilliant moonlight, and the soft +effect of the light over the sea and sky--merged together in one great, +silent mystery--was beautiful beyond words. Between me and the moonlight +flitted a great bat, coming and going in great whirling circles. Once or +twice it came quite close, but was, I suppose, frightened at seeing me, +and flitted away across the harbour towards the abbey. When I came back +from the window Lucy had lain down again, and was sleeping peacefully. +She did not stir again all night. + + * * * * * + +_14 August._--On the East Cliff, reading and writing all day. Lucy seems +to have become as much in love with the spot as I am, and it is hard to +get her away from it when it is time to come home for lunch or tea or +dinner. This afternoon she made a funny remark. We were coming home for +dinner, and had come to the top of the steps up from the West Pier and +stopped to look at the view, as we generally do. The setting sun, low +down in the sky, was just dropping behind Kettleness; the red light was +thrown over on the East Cliff and the old abbey, and seemed to bathe +everything in a beautiful rosy glow. We were silent for a while, and +suddenly Lucy murmured as if to herself:-- + +“His red eyes again! They are just the same.” It was such an odd +expression, coming _apropos_ of nothing, that it quite startled me. I +slewed round a little, so as to see Lucy well without seeming to stare +at her, and saw that she was in a half-dreamy state, with an odd look on +her face that I could not quite make out; so I said nothing, but +followed her eyes. She appeared to be looking over at our own seat, +whereon was a dark figure seated alone. I was a little startled myself, +for it seemed for an instant as if the stranger had great eyes like +burning flames; but a second look dispelled the illusion. The red +sunlight was shining on the windows of St. Mary’s Church behind our +seat, and as the sun dipped there was just sufficient change in the +refraction and reflection to make it appear as if the light moved. I +called Lucy’s attention to the peculiar effect, and she became herself +with a start, but she looked sad all the same; it may have been that she +was thinking of that terrible night up there. We never refer to it; so I +said nothing, and we went home to dinner. Lucy had a headache and went +early to bed. I saw her asleep, and went out for a little stroll myself; +I walked along the cliffs to the westward, and was full of sweet +sadness, for I was thinking of Jonathan. When coming home--it was then +bright moonlight, so bright that, though the front of our part of the +Crescent was in shadow, everything could be well seen--I threw a glance +up at our window, and saw Lucy’s head leaning out. I thought that +perhaps she was looking out for me, so I opened my handkerchief and +waved it. She did not notice or make any movement whatever. Just then, +the moonlight crept round an angle of the building, and the light fell +on the window. There distinctly was Lucy with her head lying up against +the side of the window-sill and her eyes shut. She was fast asleep, and +by her, seated on the window-sill, was something that looked like a +good-sized bird. I was afraid she might get a chill, so I ran upstairs, +but as I came into the room she was moving back to her bed, fast +asleep, and breathing heavily; she was holding her hand to her throat, +as though to protect it from cold. + +I did not wake her, but tucked her up warmly; I have taken care that the +door is locked and the window securely fastened. + +She looks so sweet as she sleeps; but she is paler than is her wont, and +there is a drawn, haggard look under her eyes which I do not like. I +fear she is fretting about something. I wish I could find out what it +is. + + * * * * * + +_15 August._--Rose later than usual. Lucy was languid and tired, and +slept on after we had been called. We had a happy surprise at breakfast. +Arthur’s father is better, and wants the marriage to come off soon. Lucy +is full of quiet joy, and her mother is glad and sorry at once. Later on +in the day she told me the cause. She is grieved to lose Lucy as her +very own, but she is rejoiced that she is soon to have some one to +protect her. Poor dear, sweet lady! She confided to me that she has got +her death-warrant. She has not told Lucy, and made me promise secrecy; +her doctor told her that within a few months, at most, she must die, for +her heart is weakening. At any time, even now, a sudden shock would be +almost sure to kill her. Ah, we were wise to keep from her the affair of +the dreadful night of Lucy’s sleep-walking. + + * * * * * + +_17 August._--No diary for two whole days. I have not had the heart to +write. Some sort of shadowy pall seems to be coming over our happiness. +No news from Jonathan, and Lucy seems to be growing weaker, whilst her +mother’s hours are numbering to a close. I do not understand Lucy’s +fading away as she is doing. She eats well and sleeps well, and enjoys +the fresh air; but all the time the roses in her cheeks are fading, and +she gets weaker and more languid day by day; at night I hear her gasping +as if for air. I keep the key of our door always fastened to my wrist at +night, but she gets up and walks about the room, and sits at the open +window. Last night I found her leaning out when I woke up, and when I +tried to wake her I could not; she was in a faint. When I managed to +restore her she was as weak as water, and cried silently between long, +painful struggles for breath. When I asked her how she came to be at the +window she shook her head and turned away. I trust her feeling ill may +not be from that unlucky prick of the safety-pin. I looked at her throat +just now as she lay asleep, and the tiny wounds seem not to have healed. +They are still open, and, if anything, larger than before, and the +edges of them are faintly white. They are like little white dots with +red centres. Unless they heal within a day or two, I shall insist on the +doctor seeing about them. + + +_Letter, Samuel F. Billington & Son, Solicitors, Whitby, to Messrs. +Carter, Paterson & Co., London._ + +“_17 August._ + +“Dear Sirs,-- + +“Herewith please receive invoice of goods sent by Great Northern +Railway. Same are to be delivered at Carfax, near Purfleet, immediately +on receipt at goods station King’s Cross. The house is at present empty, +but enclosed please find keys, all of which are labelled. + +“You will please deposit the boxes, fifty in number, which form the +consignment, in the partially ruined building forming part of the house +and marked ‘A’ on rough diagram enclosed. Your agent will easily +recognise the locality, as it is the ancient chapel of the mansion. The +goods leave by the train at 9:30 to-night, and will be due at King’s +Cross at 4:30 to-morrow afternoon. As our client wishes the delivery +made as soon as possible, we shall be obliged by your having teams ready +at King’s Cross at the time named and forthwith conveying the goods to +destination. In order to obviate any delays possible through any routine +requirements as to payment in your departments, we enclose cheque +herewith for ten pounds (£10), receipt of which please acknowledge. +Should the charge be less than this amount, you can return balance; if +greater, we shall at once send cheque for difference on hearing from +you. You are to leave the keys on coming away in the main hall of the +house, where the proprietor may get them on his entering the house by +means of his duplicate key. + +“Pray do not take us as exceeding the bounds of business courtesy in +pressing you in all ways to use the utmost expedition. + +_“We are, dear Sirs, + +“Faithfully yours, + +“SAMUEL F. BILLINGTON & SON.”_ + + +_Letter, Messrs. Carter, Paterson & Co., London, to Messrs. Billington & +Son, Whitby._ + +“_21 August._ + +“Dear Sirs,-- + +“We beg to acknowledge £10 received and to return cheque £1 17s. 9d, +amount of overplus, as shown in receipted account herewith. Goods are +delivered in exact accordance with instructions, and keys left in parcel +in main hall, as directed. + +“We are, dear Sirs, + +“Yours respectfully. + +“_Pro_ CARTER, PATERSON & CO.” + + +_Mina Murray’s Journal._ + +_18 August._--I am happy to-day, and write sitting on the seat in the +churchyard. Lucy is ever so much better. Last night she slept well all +night, and did not disturb me once. The roses seem coming back already +to her cheeks, though she is still sadly pale and wan-looking. If she +were in any way anæmic I could understand it, but she is not. She is in +gay spirits and full of life and cheerfulness. All the morbid reticence +seems to have passed from her, and she has just reminded me, as if I +needed any reminding, of _that_ night, and that it was here, on this +very seat, I found her asleep. As she told me she tapped playfully with +the heel of her boot on the stone slab and said:-- + +“My poor little feet didn’t make much noise then! I daresay poor old Mr. +Swales would have told me that it was because I didn’t want to wake up +Geordie.” As she was in such a communicative humour, I asked her if she +had dreamed at all that night. Before she answered, that sweet, puckered +look came into her forehead, which Arthur--I call him Arthur from her +habit--says he loves; and, indeed, I don’t wonder that he does. Then she +went on in a half-dreaming kind of way, as if trying to recall it to +herself:-- + +“I didn’t quite dream; but it all seemed to be real. I only wanted to be +here in this spot--I don’t know why, for I was afraid of something--I +don’t know what. I remember, though I suppose I was asleep, passing +through the streets and over the bridge. A fish leaped as I went by, and +I leaned over to look at it, and I heard a lot of dogs howling--the +whole town seemed as if it must be full of dogs all howling at once--as +I went up the steps. Then I had a vague memory of something long and +dark with red eyes, just as we saw in the sunset, and something very +sweet and very bitter all around me at once; and then I seemed sinking +into deep green water, and there was a singing in my ears, as I have +heard there is to drowning men; and then everything seemed passing away +from me; my soul seemed to go out from my body and float about the air. +I seem to remember that once the West Lighthouse was right under me, +and then there was a sort of agonising feeling, as if I were in an +earthquake, and I came back and found you shaking my body. I saw you do +it before I felt you.” + +Then she began to laugh. It seemed a little uncanny to me, and I +listened to her breathlessly. I did not quite like it, and thought it +better not to keep her mind on the subject, so we drifted on to other +subjects, and Lucy was like her old self again. When we got home the +fresh breeze had braced her up, and her pale cheeks were really more +rosy. Her mother rejoiced when she saw her, and we all spent a very +happy evening together. + + * * * * * + +_19 August._--Joy, joy, joy! although not all joy. At last, news of +Jonathan. The dear fellow has been ill; that is why he did not write. I +am not afraid to think it or say it, now that I know. Mr. Hawkins sent +me on the letter, and wrote himself, oh, so kindly. I am to leave in the +morning and go over to Jonathan, and to help to nurse him if necessary, +and to bring him home. Mr. Hawkins says it would not be a bad thing if +we were to be married out there. I have cried over the good Sister’s +letter till I can feel it wet against my bosom, where it lies. It is of +Jonathan, and must be next my heart, for he is _in_ my heart. My journey +is all mapped out, and my luggage ready. I am only taking one change of +dress; Lucy will bring my trunk to London and keep it till I send for +it, for it may be that ... I must write no more; I must keep it to say +to Jonathan, my husband. The letter that he has seen and touched must +comfort me till we meet. + + +_Letter, Sister Agatha, Hospital of St. Joseph and Ste. Mary, +Buda-Pesth, to Miss Wilhelmina Murray._ + +“_12 August._ + +“Dear Madam,-- + +“I write by desire of Mr. Jonathan Harker, who is himself not strong +enough to write, though progressing well, thanks to God and St. Joseph +and Ste. Mary. He has been under our care for nearly six weeks, +suffering from a violent brain fever. He wishes me to convey his love, +and to say that by this post I write for him to Mr. Peter Hawkins, +Exeter, to say, with his dutiful respects, that he is sorry for his +delay, and that all of his work is completed. He will require some few +weeks’ rest in our sanatorium in the hills, but will then return. He +wishes me to say that he has not sufficient money with him, and that he +would like to pay for his staying here, so that others who need shall +not be wanting for help. + +“Believe me, + +“Yours, with sympathy and all blessings, + +“SISTER AGATHA. + +“P. S.--My patient being asleep, I open this to let you know something +more. He has told me all about you, and that you are shortly to be his +wife. All blessings to you both! He has had some fearful shock--so says +our doctor--and in his delirium his ravings have been dreadful; of +wolves and poison and blood; of ghosts and demons; and I fear to say of +what. Be careful with him always that there may be nothing to excite him +of this kind for a long time to come; the traces of such an illness as +his do not lightly die away. We should have written long ago, but we +knew nothing of his friends, and there was on him nothing that any one +could understand. He came in the train from Klausenburg, and the guard +was told by the station-master there that he rushed into the station +shouting for a ticket for home. Seeing from his violent demeanour that +he was English, they gave him a ticket for the furthest station on the +way thither that the train reached. + +“Be assured that he is well cared for. He has won all hearts by his +sweetness and gentleness. He is truly getting on well, and I have no +doubt will in a few weeks be all himself. But be careful of him for +safety’s sake. There are, I pray God and St. Joseph and Ste. Mary, many, +many, happy years for you both.” + + +_Dr. Seward’s Diary._ + +_19 August._--Strange and sudden change in Renfield last night. About +eight o’clock he began to get excited and sniff about as a dog does when +setting. The attendant was struck by his manner, and knowing my interest +in him, encouraged him to talk. He is usually respectful to the +attendant and at times servile; but to-night, the man tells me, he was +quite haughty. Would not condescend to talk with him at all. All he +would say was:-- + + “I don’t want to talk to you: you don’t count now; the Master is at + hand.” + +The attendant thinks it is some sudden form of religious mania which has +seized him. If so, we must look out for squalls, for a strong man with +homicidal and religious mania at once might be dangerous. The +combination is a dreadful one. At nine o’clock I visited him myself. His +attitude to me was the same as that to the attendant; in his sublime +self-feeling the difference between myself and attendant seemed to him +as nothing. It looks like religious mania, and he will soon think that +he himself is God. These infinitesimal distinctions between man and man +are too paltry for an Omnipotent Being. How these madmen give themselves +away! The real God taketh heed lest a sparrow fall; but the God created +from human vanity sees no difference between an eagle and a sparrow. Oh, +if men only knew! + +For half an hour or more Renfield kept getting excited in greater and +greater degree. I did not pretend to be watching him, but I kept strict +observation all the same. All at once that shifty look came into his +eyes which we always see when a madman has seized an idea, and with it +the shifty movement of the head and back which asylum attendants come to +know so well. He became quite quiet, and went and sat on the edge of his +bed resignedly, and looked into space with lack-lustre eyes. I thought I +would find out if his apathy were real or only assumed, and tried to +lead him to talk of his pets, a theme which had never failed to excite +his attention. At first he made no reply, but at length said testily:-- + +“Bother them all! I don’t care a pin about them.” + +“What?” I said. “You don’t mean to tell me you don’t care about +spiders?” (Spiders at present are his hobby and the note-book is filling +up with columns of small figures.) To this he answered enigmatically:-- + +“The bride-maidens rejoice the eyes that wait the coming of the bride; +but when the bride draweth nigh, then the maidens shine not to the eyes +that are filled.” + +He would not explain himself, but remained obstinately seated on his bed +all the time I remained with him. + +I am weary to-night and low in spirits. I cannot but think of Lucy, and +how different things might have been. If I don’t sleep at once, chloral, +the modern Morpheus--C_{2}HCl_{3}O. H_{2}O! I must be careful not to let +it grow into a habit. No, I shall take none to-night! I have thought of +Lucy, and I shall not dishonour her by mixing the two. If need be, +to-night shall be sleepless.... + + * * * * * + +_Later._--Glad I made the resolution; gladder that I kept to it. I had +lain tossing about, and had heard the clock strike only twice, when the +night-watchman came to me, sent up from the ward, to say that Renfield +had escaped. I threw on my clothes and ran down at once; my patient is +too dangerous a person to be roaming about. Those ideas of his might +work out dangerously with strangers. The attendant was waiting for me. +He said he had seen him not ten minutes before, seemingly asleep in his +bed, when he had looked through the observation-trap in the door. His +attention was called by the sound of the window being wrenched out. He +ran back and saw his feet disappear through the window, and had at once +sent up for me. He was only in his night-gear, and cannot be far off. +The attendant thought it would be more useful to watch where he should +go than to follow him, as he might lose sight of him whilst getting out +of the building by the door. He is a bulky man, and couldn’t get through +the window. I am thin, so, with his aid, I got out, but feet foremost, +and, as we were only a few feet above ground, landed unhurt. The +attendant told me the patient had gone to the left, and had taken a +straight line, so I ran as quickly as I could. As I got through the belt +of trees I saw a white figure scale the high wall which separates our +grounds from those of the deserted house. + +I ran back at once, told the watchman to get three or four men +immediately and follow me into the grounds of Carfax, in case our friend +might be dangerous. I got a ladder myself, and crossing the wall, +dropped down on the other side. I could see Renfield’s figure just +disappearing behind the angle of the house, so I ran after him. On the +far side of the house I found him pressed close against the old +ironbound oak door of the chapel. He was talking, apparently to some +one, but I was afraid to go near enough to hear what he was saying, lest +I might frighten him, and he should run off. Chasing an errant swarm of +bees is nothing to following a naked lunatic, when the fit of escaping +is upon him! After a few minutes, however, I could see that he did not +take note of anything around him, and so ventured to draw nearer to +him--the more so as my men had now crossed the wall and were closing him +in. I heard him say:-- + +“I am here to do Your bidding, Master. I am Your slave, and You will +reward me, for I shall be faithful. I have worshipped You long and afar +off. Now that You are near, I await Your commands, and You will not pass +me by, will You, dear Master, in Your distribution of good things?” + +He _is_ a selfish old beggar anyhow. He thinks of the loaves and fishes +even when he believes he is in a Real Presence. His manias make a +startling combination. When we closed in on him he fought like a tiger. +He is immensely strong, for he was more like a wild beast than a man. I +never saw a lunatic in such a paroxysm of rage before; and I hope I +shall not again. It is a mercy that we have found out his strength and +his danger in good time. With strength and determination like his, he +might have done wild work before he was caged. He is safe now at any +rate. Jack Sheppard himself couldn’t get free from the strait-waistcoat +that keeps him restrained, and he’s chained to the wall in the padded +room. His cries are at times awful, but the silences that follow are +more deadly still, for he means murder in every turn and movement. + +Just now he spoke coherent words for the first time:-- + +“I shall be patient, Master. It is coming--coming--coming!” + +So I took the hint, and came too. I was too excited to sleep, but this +diary has quieted me, and I feel I shall get some sleep to-night. + + + + +CHAPTER IX + + +_Letter, Mina Harker to Lucy Westenra._ + +“_Buda-Pesth, 24 August._ + +“My dearest Lucy,-- + +“I know you will be anxious to hear all that has happened since we +parted at the railway station at Whitby. Well, my dear, I got to Hull +all right, and caught the boat to Hamburg, and then the train on here. I +feel that I can hardly recall anything of the journey, except that I +knew I was coming to Jonathan, and, that as I should have to do some +nursing, I had better get all the sleep I could.... I found my dear one, +oh, so thin and pale and weak-looking. All the resolution has gone out +of his dear eyes, and that quiet dignity which I told you was in his +face has vanished. He is only a wreck of himself, and he does not +remember anything that has happened to him for a long time past. At +least, he wants me to believe so, and I shall never ask. He has had some +terrible shock, and I fear it might tax his poor brain if he were to try +to recall it. Sister Agatha, who is a good creature and a born nurse, +tells me that he raved of dreadful things whilst he was off his head. I +wanted her to tell me what they were; but she would only cross herself, +and say she would never tell; that the ravings of the sick were the +secrets of God, and that if a nurse through her vocation should hear +them, she should respect her trust. She is a sweet, good soul, and the +next day, when she saw I was troubled, she opened up the subject again, +and after saying that she could never mention what my poor dear raved +about, added: ‘I can tell you this much, my dear: that it was not about +anything which he has done wrong himself; and you, as his wife to be, +have no cause to be concerned. He has not forgotten you or what he owes +to you. His fear was of great and terrible things, which no mortal can +treat of.’ I do believe the dear soul thought I might be jealous lest my +poor dear should have fallen in love with any other girl. The idea of +_my_ being jealous about Jonathan! And yet, my dear, let me whisper, I +felt a thrill of joy through me when I _knew_ that no other woman was a +cause of trouble. I am now sitting by his bedside, where I can see his +face while he sleeps. He is waking!... + +“When he woke he asked me for his coat, as he wanted to get something +from the pocket; I asked Sister Agatha, and she brought all his things. +I saw that amongst them was his note-book, and was going to ask him to +let me look at it--for I knew then that I might find some clue to his +trouble--but I suppose he must have seen my wish in my eyes, for he sent +me over to the window, saying he wanted to be quite alone for a moment. +Then he called me back, and when I came he had his hand over the +note-book, and he said to me very solemnly:-- + +“‘Wilhelmina’--I knew then that he was in deadly earnest, for he has +never called me by that name since he asked me to marry him--‘you know, +dear, my ideas of the trust between husband and wife: there should be no +secret, no concealment. I have had a great shock, and when I try to +think of what it is I feel my head spin round, and I do not know if it +was all real or the dreaming of a madman. You know I have had brain +fever, and that is to be mad. The secret is here, and I do not want to +know it. I want to take up my life here, with our marriage.’ For, my +dear, we had decided to be married as soon as the formalities are +complete. ‘Are you willing, Wilhelmina, to share my ignorance? Here is +the book. Take it and keep it, read it if you will, but never let me +know; unless, indeed, some solemn duty should come upon me to go back to +the bitter hours, asleep or awake, sane or mad, recorded here.’ He fell +back exhausted, and I put the book under his pillow, and kissed him. I +have asked Sister Agatha to beg the Superior to let our wedding be this +afternoon, and am waiting her reply.... + + * * * * * + +“She has come and told me that the chaplain of the English mission +church has been sent for. We are to be married in an hour, or as soon +after as Jonathan awakes.... + + * * * * * + +“Lucy, the time has come and gone. I feel very solemn, but very, very +happy. Jonathan woke a little after the hour, and all was ready, and he +sat up in bed, propped up with pillows. He answered his ‘I will’ firmly +and strongly. I could hardly speak; my heart was so full that even those +words seemed to choke me. The dear sisters were so kind. Please God, I +shall never, never forget them, nor the grave and sweet responsibilities +I have taken upon me. I must tell you of my wedding present. When the +chaplain and the sisters had left me alone with my husband--oh, Lucy, it +is the first time I have written the words ‘my husband’--left me alone +with my husband, I took the book from under his pillow, and wrapped it +up in white paper, and tied it with a little bit of pale blue ribbon +which was round my neck, and sealed it over the knot with sealing-wax, +and for my seal I used my wedding ring. Then I kissed it and showed it +to my husband, and told him that I would keep it so, and then it would +be an outward and visible sign for us all our lives that we trusted each +other; that I would never open it unless it were for his own dear sake +or for the sake of some stern duty. Then he took my hand in his, and oh, +Lucy, it was the first time he took _his wife’s_ hand, and said that it +was the dearest thing in all the wide world, and that he would go +through all the past again to win it, if need be. The poor dear meant to +have said a part of the past, but he cannot think of time yet, and I +shall not wonder if at first he mixes up not only the month, but the +year. + +“Well, my dear, what could I say? I could only tell him that I was the +happiest woman in all the wide world, and that I had nothing to give him +except myself, my life, and my trust, and that with these went my love +and duty for all the days of my life. And, my dear, when he kissed me, +and drew me to him with his poor weak hands, it was like a very solemn +pledge between us.... + +“Lucy dear, do you know why I tell you all this? It is not only because +it is all sweet to me, but because you have been, and are, very dear to +me. It was my privilege to be your friend and guide when you came from +the schoolroom to prepare for the world of life. I want you to see now, +and with the eyes of a very happy wife, whither duty has led me; so that +in your own married life you too may be all happy as I am. My dear, +please Almighty God, your life may be all it promises: a long day of +sunshine, with no harsh wind, no forgetting duty, no distrust. I must +not wish you no pain, for that can never be; but I do hope you will be +_always_ as happy as I am _now_. Good-bye, my dear. I shall post this at +once, and, perhaps, write you very soon again. I must stop, for Jonathan +is waking--I must attend to my husband! + +“Your ever-loving + +“MINA HARKER.” + + +_Letter, Lucy Westenra to Mina Harker._ + +“_Whitby, 30 August._ + +“My dearest Mina,-- + +“Oceans of love and millions of kisses, and may you soon be in your own +home with your husband. I wish you could be coming home soon enough to +stay with us here. The strong air would soon restore Jonathan; it has +quite restored me. I have an appetite like a cormorant, am full of +life, and sleep well. You will be glad to know that I have quite given +up walking in my sleep. I think I have not stirred out of my bed for a +week, that is when I once got into it at night. Arthur says I am getting +fat. By the way, I forgot to tell you that Arthur is here. We have such +walks and drives, and rides, and rowing, and tennis, and fishing +together; and I love him more than ever. He _tells_ me that he loves me +more, but I doubt that, for at first he told me that he couldn’t love me +more than he did then. But this is nonsense. There he is, calling to me. +So no more just at present from your loving + +“LUCY. + +“P. S.--Mother sends her love. She seems better, poor dear. +“P. P. S.--We are to be married on 28 September.” + + +_Dr. Seward’s Diary._ + +_20 August._--The case of Renfield grows even more interesting. He has +now so far quieted that there are spells of cessation from his passion. +For the first week after his attack he was perpetually violent. Then one +night, just as the moon rose, he grew quiet, and kept murmuring to +himself: “Now I can wait; now I can wait.” The attendant came to tell +me, so I ran down at once to have a look at him. He was still in the +strait-waistcoat and in the padded room, but the suffused look had gone +from his face, and his eyes had something of their old pleading--I might +almost say, “cringing”--softness. I was satisfied with his present +condition, and directed him to be relieved. The attendants hesitated, +but finally carried out my wishes without protest. It was a strange +thing that the patient had humour enough to see their distrust, for, +coming close to me, he said in a whisper, all the while looking +furtively at them:-- + +“They think I could hurt you! Fancy _me_ hurting _you_! The fools!” + +It was soothing, somehow, to the feelings to find myself dissociated +even in the mind of this poor madman from the others; but all the same I +do not follow his thought. Am I to take it that I have anything in +common with him, so that we are, as it were, to stand together; or has +he to gain from me some good so stupendous that my well-being is needful +to him? I must find out later on. To-night he will not speak. Even the +offer of a kitten or even a full-grown cat will not tempt him. He will +only say: “I don’t take any stock in cats. I have more to think of now, +and I can wait; I can wait.” + +After a while I left him. The attendant tells me that he was quiet +until just before dawn, and that then he began to get uneasy, and at +length violent, until at last he fell into a paroxysm which exhausted +him so that he swooned into a sort of coma. + + * * * * * + +... Three nights has the same thing happened--violent all day then quiet +from moonrise to sunrise. I wish I could get some clue to the cause. It +would almost seem as if there was some influence which came and went. +Happy thought! We shall to-night play sane wits against mad ones. He +escaped before without our help; to-night he shall escape with it. We +shall give him a chance, and have the men ready to follow in case they +are required.... + + * * * * * + +_23 August._--“The unexpected always happens.” How well Disraeli knew +life. Our bird when he found the cage open would not fly, so all our +subtle arrangements were for nought. At any rate, we have proved one +thing; that the spells of quietness last a reasonable time. We shall in +future be able to ease his bonds for a few hours each day. I have given +orders to the night attendant merely to shut him in the padded room, +when once he is quiet, until an hour before sunrise. The poor soul’s +body will enjoy the relief even if his mind cannot appreciate it. Hark! +The unexpected again! I am called; the patient has once more escaped. + + * * * * * + +_Later._--Another night adventure. Renfield artfully waited until the +attendant was entering the room to inspect. Then he dashed out past him +and flew down the passage. I sent word for the attendants to follow. +Again he went into the grounds of the deserted house, and we found him +in the same place, pressed against the old chapel door. When he saw me +he became furious, and had not the attendants seized him in time, he +would have tried to kill me. As we were holding him a strange thing +happened. He suddenly redoubled his efforts, and then as suddenly grew +calm. I looked round instinctively, but could see nothing. Then I caught +the patient’s eye and followed it, but could trace nothing as it looked +into the moonlit sky except a big bat, which was flapping its silent and +ghostly way to the west. Bats usually wheel and flit about, but this one +seemed to go straight on, as if it knew where it was bound for or had +some intention of its own. The patient grew calmer every instant, and +presently said:-- + +“You needn’t tie me; I shall go quietly!” Without trouble we came back +to the house. I feel there is something ominous in his calm, and shall +not forget this night.... + + +_Lucy Westenra’s Diary_ + +_Hillingham, 24 August._--I must imitate Mina, and keep writing things +down. Then we can have long talks when we do meet. I wonder when it will +be. I wish she were with me again, for I feel so unhappy. Last night I +seemed to be dreaming again just as I was at Whitby. Perhaps it is the +change of air, or getting home again. It is all dark and horrid to me, +for I can remember nothing; but I am full of vague fear, and I feel so +weak and worn out. When Arthur came to lunch he looked quite grieved +when he saw me, and I hadn’t the spirit to try to be cheerful. I wonder +if I could sleep in mother’s room to-night. I shall make an excuse and +try. + + * * * * * + +_25 August._--Another bad night. Mother did not seem to take to my +proposal. She seems not too well herself, and doubtless she fears to +worry me. I tried to keep awake, and succeeded for a while; but when the +clock struck twelve it waked me from a doze, so I must have been falling +asleep. There was a sort of scratching or flapping at the window, but I +did not mind it, and as I remember no more, I suppose I must then have +fallen asleep. More bad dreams. I wish I could remember them. This +morning I am horribly weak. My face is ghastly pale, and my throat pains +me. It must be something wrong with my lungs, for I don’t seem ever to +get air enough. I shall try to cheer up when Arthur comes, or else I +know he will be miserable to see me so. + + +_Letter, Arthur Holmwood to Dr. Seward._ + +“_Albemarle Hotel, 31 August._ + +“My dear Jack,-- + +“I want you to do me a favour. Lucy is ill; that is, she has no special +disease, but she looks awful, and is getting worse every day. I have +asked her if there is any cause; I do not dare to ask her mother, for to +disturb the poor lady’s mind about her daughter in her present state of +health would be fatal. Mrs. Westenra has confided to me that her doom is +spoken--disease of the heart--though poor Lucy does not know it yet. I +am sure that there is something preying on my dear girl’s mind. I am +almost distracted when I think of her; to look at her gives me a pang. I +told her I should ask you to see her, and though she demurred at +first--I know why, old fellow--she finally consented. It will be a +painful task for you, I know, old friend, but it is for _her_ sake, and +I must not hesitate to ask, or you to act. You are to come to lunch at +Hillingham to-morrow, two o’clock, so as not to arouse any suspicion in +Mrs. Westenra, and after lunch Lucy will take an opportunity of being +alone with you. I shall come in for tea, and we can go away together; I +am filled with anxiety, and want to consult with you alone as soon as I +can after you have seen her. Do not fail! + +“ARTHUR.” + + +_Telegram, Arthur Holmwood to Seward._ + +“_1 September._ + +“Am summoned to see my father, who is worse. Am writing. Write me fully +by to-night’s post to Ring. Wire me if necessary.” + + +_Letter from Dr. Seward to Arthur Holmwood._ + +“_2 September._ + +“My dear old fellow,-- + +“With regard to Miss Westenra’s health I hasten to let you know at once +that in my opinion there is not any functional disturbance or any malady +that I know of. At the same time, I am not by any means satisfied with +her appearance; she is woefully different from what she was when I saw +her last. Of course you must bear in mind that I did not have full +opportunity of examination such as I should wish; our very friendship +makes a little difficulty which not even medical science or custom can +bridge over. I had better tell you exactly what happened, leaving you to +draw, in a measure, your own conclusions. I shall then say what I have +done and propose doing. + +“I found Miss Westenra in seemingly gay spirits. Her mother was present, +and in a few seconds I made up my mind that she was trying all she knew +to mislead her mother and prevent her from being anxious. I have no +doubt she guesses, if she does not know, what need of caution there is. +We lunched alone, and as we all exerted ourselves to be cheerful, we +got, as some kind of reward for our labours, some real cheerfulness +amongst us. Then Mrs. Westenra went to lie down, and Lucy was left with +me. We went into her boudoir, and till we got there her gaiety remained, +for the servants were coming and going. As soon as the door was closed, +however, the mask fell from her face, and she sank down into a chair +with a great sigh, and hid her eyes with her hand. When I saw that her +high spirits had failed, I at once took advantage of her reaction to +make a diagnosis. She said to me very sweetly:-- + +“‘I cannot tell you how I loathe talking about myself.’ I reminded her +that a doctor’s confidence was sacred, but that you were grievously +anxious about her. She caught on to my meaning at once, and settled that +matter in a word. ‘Tell Arthur everything you choose. I do not care for +myself, but all for him!’ So I am quite free. + +“I could easily see that she is somewhat bloodless, but I could not see +the usual anæmic signs, and by a chance I was actually able to test the +quality of her blood, for in opening a window which was stiff a cord +gave way, and she cut her hand slightly with broken glass. It was a +slight matter in itself, but it gave me an evident chance, and I secured +a few drops of the blood and have analysed them. The qualitative +analysis gives a quite normal condition, and shows, I should infer, in +itself a vigorous state of health. In other physical matters I was quite +satisfied that there is no need for anxiety; but as there must be a +cause somewhere, I have come to the conclusion that it must be something +mental. She complains of difficulty in breathing satisfactorily at +times, and of heavy, lethargic sleep, with dreams that frighten her, but +regarding which she can remember nothing. She says that as a child she +used to walk in her sleep, and that when in Whitby the habit came back, +and that once she walked out in the night and went to East Cliff, where +Miss Murray found her; but she assures me that of late the habit has not +returned. I am in doubt, and so have done the best thing I know of; I +have written to my old friend and master, Professor Van Helsing, of +Amsterdam, who knows as much about obscure diseases as any one in the +world. I have asked him to come over, and as you told me that all things +were to be at your charge, I have mentioned to him who you are and your +relations to Miss Westenra. This, my dear fellow, is in obedience to +your wishes, for I am only too proud and happy to do anything I can for +her. Van Helsing would, I know, do anything for me for a personal +reason, so, no matter on what ground he comes, we must accept his +wishes. He is a seemingly arbitrary man, but this is because he knows +what he is talking about better than any one else. He is a philosopher +and a metaphysician, and one of the most advanced scientists of his day; +and he has, I believe, an absolutely open mind. This, with an iron +nerve, a temper of the ice-brook, an indomitable resolution, +self-command, and toleration exalted from virtues to blessings, and the +kindliest and truest heart that beats--these form his equipment for the +noble work that he is doing for mankind--work both in theory and +practice, for his views are as wide as his all-embracing sympathy. I +tell you these facts that you may know why I have such confidence in +him. I have asked him to come at once. I shall see Miss Westenra +to-morrow again. She is to meet me at the Stores, so that I may not +alarm her mother by too early a repetition of my call. + +“Yours always, + +“JOHN SEWARD.” + + +_Letter, Abraham Van Helsing, M. D., D. Ph., D. Lit., etc., etc., to Dr. +Seward._ + +“_2 September._ + +“My good Friend,-- + +“When I have received your letter I am already coming to you. By good +fortune I can leave just at once, without wrong to any of those who have +trusted me. Were fortune other, then it were bad for those who have +trusted, for I come to my friend when he call me to aid those he holds +dear. Tell your friend that when that time you suck from my wound so +swiftly the poison of the gangrene from that knife that our other +friend, too nervous, let slip, you did more for him when he wants my +aids and you call for them than all his great fortune could do. But it +is pleasure added to do for him, your friend; it is to you that I come. +Have then rooms for me at the Great Eastern Hotel, so that I may be near +to hand, and please it so arrange that we may see the young lady not too +late on to-morrow, for it is likely that I may have to return here that +night. But if need be I shall come again in three days, and stay longer +if it must. Till then good-bye, my friend John. + + “VAN HELSING.” + + +_Letter, Dr. Seward to Hon. Arthur Holmwood._ + +“_3 September._ + +“My dear Art,-- + +“Van Helsing has come and gone. He came on with me to Hillingham, and +found that, by Lucy’s discretion, her mother was lunching out, so that +we were alone with her. Van Helsing made a very careful examination of +the patient. He is to report to me, and I shall advise you, for of +course I was not present all the time. He is, I fear, much concerned, +but says he must think. When I told him of our friendship and how you +trust to me in the matter, he said: ‘You must tell him all you think. +Tell him what I think, if you can guess it, if you will. Nay, I am not +jesting. This is no jest, but life and death, perhaps more.’ I asked +what he meant by that, for he was very serious. This was when we had +come back to town, and he was having a cup of tea before starting on his +return to Amsterdam. He would not give me any further clue. You must not +be angry with me, Art, because his very reticence means that all his +brains are working for her good. He will speak plainly enough when the +time comes, be sure. So I told him I would simply write an account of +our visit, just as if I were doing a descriptive special article for +_The Daily Telegraph_. He seemed not to notice, but remarked that the +smuts in London were not quite so bad as they used to be when he was a +student here. I am to get his report to-morrow if he can possibly make +it. In any case I am to have a letter. + +“Well, as to the visit. Lucy was more cheerful than on the day I first +saw her, and certainly looked better. She had lost something of the +ghastly look that so upset you, and her breathing was normal. She was +very sweet to the professor (as she always is), and tried to make him +feel at ease; though I could see that the poor girl was making a hard +struggle for it. I believe Van Helsing saw it, too, for I saw the quick +look under his bushy brows that I knew of old. Then he began to chat of +all things except ourselves and diseases and with such an infinite +geniality that I could see poor Lucy’s pretense of animation merge into +reality. Then, without any seeming change, he brought the conversation +gently round to his visit, and suavely said:-- + +“‘My dear young miss, I have the so great pleasure because you are so +much beloved. That is much, my dear, ever were there that which I do not +see. They told me you were down in the spirit, and that you were of a +ghastly pale. To them I say: “Pouf!”’ And he snapped his fingers at me +and went on: ‘But you and I shall show them how wrong they are. How can +he’--and he pointed at me with the same look and gesture as that with +which once he pointed me out to his class, on, or rather after, a +particular occasion which he never fails to remind me of--‘know anything +of a young ladies? He has his madmans to play with, and to bring them +back to happiness, and to those that love them. It is much to do, and, +oh, but there are rewards, in that we can bestow such happiness. But the +young ladies! He has no wife nor daughter, and the young do not tell +themselves to the young, but to the old, like me, who have known so many +sorrows and the causes of them. So, my dear, we will send him away to +smoke the cigarette in the garden, whiles you and I have little talk all +to ourselves.’ I took the hint, and strolled about, and presently the +professor came to the window and called me in. He looked grave, but +said: ‘I have made careful examination, but there is no functional +cause. With you I agree that there has been much blood lost; it has +been, but is not. But the conditions of her are in no way anæmic. I have +asked her to send me her maid, that I may ask just one or two question, +that so I may not chance to miss nothing. I know well what she will say. +And yet there is cause; there is always cause for everything. I must go +back home and think. You must send to me the telegram every day; and if +there be cause I shall come again. The disease--for not to be all well +is a disease--interest me, and the sweet young dear, she interest me +too. She charm me, and for her, if not for you or disease, I come.’ + +“As I tell you, he would not say a word more, even when we were alone. +And so now, Art, you know all I know. I shall keep stern watch. I trust +your poor father is rallying. It must be a terrible thing to you, my +dear old fellow, to be placed in such a position between two people who +are both so dear to you. I know your idea of duty to your father, and +you are right to stick to it; but, if need be, I shall send you word to +come at once to Lucy; so do not be over-anxious unless you hear from +me.” + + +_Dr. Seward’s Diary._ + +_4 September._--Zoöphagous patient still keeps up our interest in him. +He had only one outburst and that was yesterday at an unusual time. Just +before the stroke of noon he began to grow restless. The attendant knew +the symptoms, and at once summoned aid. Fortunately the men came at a +run, and were just in time, for at the stroke of noon he became so +violent that it took all their strength to hold him. In about five +minutes, however, he began to get more and more quiet, and finally sank +into a sort of melancholy, in which state he has remained up to now. The +attendant tells me that his screams whilst in the paroxysm were really +appalling; I found my hands full when I got in, attending to some of the +other patients who were frightened by him. Indeed, I can quite +understand the effect, for the sounds disturbed even me, though I was +some distance away. It is now after the dinner-hour of the asylum, and +as yet my patient sits in a corner brooding, with a dull, sullen, +woe-begone look in his face, which seems rather to indicate than to show +something directly. I cannot quite understand it. + + * * * * * + +_Later._--Another change in my patient. At five o’clock I looked in on +him, and found him seemingly as happy and contented as he used to be. He +was catching flies and eating them, and was keeping note of his capture +by making nail-marks on the edge of the door between the ridges of +padding. When he saw me, he came over and apologised for his bad +conduct, and asked me in a very humble, cringing way to be led back to +his own room and to have his note-book again. I thought it well to +humour him: so he is back in his room with the window open. He has the +sugar of his tea spread out on the window-sill, and is reaping quite a +harvest of flies. He is not now eating them, but putting them into a +box, as of old, and is already examining the corners of his room to find +a spider. I tried to get him to talk about the past few days, for any +clue to his thoughts would be of immense help to me; but he would not +rise. For a moment or two he looked very sad, and said in a sort of +far-away voice, as though saying it rather to himself than to me:-- + +“All over! all over! He has deserted me. No hope for me now unless I do +it for myself!” Then suddenly turning to me in a resolute way, he said: +“Doctor, won’t you be very good to me and let me have a little more +sugar? I think it would be good for me.” + +“And the flies?” I said. + +“Yes! The flies like it, too, and I like the flies; therefore I like +it.” And there are people who know so little as to think that madmen do +not argue. I procured him a double supply, and left him as happy a man +as, I suppose, any in the world. I wish I could fathom his mind. + + * * * * * + +_Midnight._--Another change in him. I had been to see Miss Westenra, +whom I found much better, and had just returned, and was standing at our +own gate looking at the sunset, when once more I heard him yelling. As +his room is on this side of the house, I could hear it better than in +the morning. It was a shock to me to turn from the wonderful smoky +beauty of a sunset over London, with its lurid lights and inky shadows +and all the marvellous tints that come on foul clouds even as on foul +water, and to realise all the grim sternness of my own cold stone +building, with its wealth of breathing misery, and my own desolate heart +to endure it all. I reached him just as the sun was going down, and from +his window saw the red disc sink. As it sank he became less and less +frenzied; and just as it dipped he slid from the hands that held him, an +inert mass, on the floor. It is wonderful, however, what intellectual +recuperative power lunatics have, for within a few minutes he stood up +quite calmly and looked around him. I signalled to the attendants not to +hold him, for I was anxious to see what he would do. He went straight +over to the window and brushed out the crumbs of sugar; then he took his +fly-box, and emptied it outside, and threw away the box; then he shut +the window, and crossing over, sat down on his bed. All this surprised +me, so I asked him: “Are you not going to keep flies any more?” + +“No,” said he; “I am sick of all that rubbish!” He certainly is a +wonderfully interesting study. I wish I could get some glimpse of his +mind or of the cause of his sudden passion. Stop; there may be a clue +after all, if we can find why to-day his paroxysms came on at high noon +and at sunset. Can it be that there is a malign influence of the sun at +periods which affects certain natures--as at times the moon does others? +We shall see. + + +_Telegram, Seward, London, to Van Helsing, Amsterdam._ + +“_4 September._--Patient still better to-day.” + + +_Telegram, Seward, London, to Van Helsing, Amsterdam._ + +“_5 September._--Patient greatly improved. Good appetite; sleeps +naturally; good spirits; colour coming back.” + + +_Telegram, Seward, London, to Van Helsing, Amsterdam._ + +“_6 September._--Terrible change for the worse. Come at once; do not +lose an hour. I hold over telegram to Holmwood till have seen you.” + + + + +CHAPTER X + + +_Letter, Dr. Seward to Hon. Arthur Holmwood._ + +“_6 September._ + +“My dear Art,-- + +“My news to-day is not so good. Lucy this morning had gone back a bit. +There is, however, one good thing which has arisen from it; Mrs. +Westenra was naturally anxious concerning Lucy, and has consulted me +professionally about her. I took advantage of the opportunity, and told +her that my old master, Van Helsing, the great specialist, was coming to +stay with me, and that I would put her in his charge conjointly with +myself; so now we can come and go without alarming her unduly, for a +shock to her would mean sudden death, and this, in Lucy’s weak +condition, might be disastrous to her. We are hedged in with +difficulties, all of us, my poor old fellow; but, please God, we shall +come through them all right. If any need I shall write, so that, if you +do not hear from me, take it for granted that I am simply waiting for +news. In haste + +“Yours ever, + +“JOHN SEWARD.” + + +_Dr. Seward’s Diary._ + +_7 September._--The first thing Van Helsing said to me when we met at +Liverpool Street was:-- + +“Have you said anything to our young friend the lover of her?” + +“No,” I said. “I waited till I had seen you, as I said in my telegram. I +wrote him a letter simply telling him that you were coming, as Miss +Westenra was not so well, and that I should let him know if need be.” + +“Right, my friend,” he said, “quite right! Better he not know as yet; +perhaps he shall never know. I pray so; but if it be needed, then he +shall know all. And, my good friend John, let me caution you. You deal +with the madmen. All men are mad in some way or the other; and inasmuch +as you deal discreetly with your madmen, so deal with God’s madmen, +too--the rest of the world. You tell not your madmen what you do nor why +you do it; you tell them not what you think. So you shall keep knowledge +in its place, where it may rest--where it may gather its kind around it +and breed. You and I shall keep as yet what we know here, and here.” He +touched me on the heart and on the forehead, and then touched himself +the same way. “I have for myself thoughts at the present. Later I shall +unfold to you.” + +“Why not now?” I asked. “It may do some good; we may arrive at some +decision.” He stopped and looked at me, and said:-- + +“My friend John, when the corn is grown, even before it has +ripened--while the milk of its mother-earth is in him, and the sunshine +has not yet begun to paint him with his gold, the husbandman he pull the +ear and rub him between his rough hands, and blow away the green chaff, +and say to you: ‘Look! he’s good corn; he will make good crop when the +time comes.’” I did not see the application, and told him so. For reply +he reached over and took my ear in his hand and pulled it playfully, as +he used long ago to do at lectures, and said: “The good husbandman tell +you so then because he knows, but not till then. But you do not find the +good husbandman dig up his planted corn to see if he grow; that is for +the children who play at husbandry, and not for those who take it as of +the work of their life. See you now, friend John? I have sown my corn, +and Nature has her work to do in making it sprout; if he sprout at all, +there’s some promise; and I wait till the ear begins to swell.” He broke +off, for he evidently saw that I understood. Then he went on, and very +gravely:-- + +“You were always a careful student, and your case-book was ever more +full than the rest. You were only student then; now you are master, and +I trust that good habit have not fail. Remember, my friend, that +knowledge is stronger than memory, and we should not trust the weaker. +Even if you have not kept the good practise, let me tell you that this +case of our dear miss is one that may be--mind, I say _may be_--of such +interest to us and others that all the rest may not make him kick the +beam, as your peoples say. Take then good note of it. Nothing is too +small. I counsel you, put down in record even your doubts and surmises. +Hereafter it may be of interest to you to see how true you guess. We +learn from failure, not from success!” + +When I described Lucy’s symptoms--the same as before, but infinitely +more marked--he looked very grave, but said nothing. He took with him a +bag in which were many instruments and drugs, “the ghastly paraphernalia +of our beneficial trade,” as he once called, in one of his lectures, the +equipment of a professor of the healing craft. When we were shown in, +Mrs. Westenra met us. She was alarmed, but not nearly so much as I +expected to find her. Nature in one of her beneficent moods has ordained +that even death has some antidote to its own terrors. Here, in a case +where any shock may prove fatal, matters are so ordered that, from some +cause or other, the things not personal--even the terrible change in her +daughter to whom she is so attached--do not seem to reach her. It is +something like the way Dame Nature gathers round a foreign body an +envelope of some insensitive tissue which can protect from evil that +which it would otherwise harm by contact. If this be an ordered +selfishness, then we should pause before we condemn any one for the vice +of egoism, for there may be deeper root for its causes than we have +knowledge of. + +I used my knowledge of this phase of spiritual pathology, and laid down +a rule that she should not be present with Lucy or think of her illness +more than was absolutely required. She assented readily, so readily that +I saw again the hand of Nature fighting for life. Van Helsing and I were +shown up to Lucy’s room. If I was shocked when I saw her yesterday, I +was horrified when I saw her to-day. She was ghastly, chalkily pale; the +red seemed to have gone even from her lips and gums, and the bones of +her face stood out prominently; her breathing was painful to see or +hear. Van Helsing’s face grew set as marble, and his eyebrows converged +till they almost touched over his nose. Lucy lay motionless, and did not +seem to have strength to speak, so for a while we were all silent. Then +Van Helsing beckoned to me, and we went gently out of the room. The +instant we had closed the door he stepped quickly along the passage to +the next door, which was open. Then he pulled me quickly in with him and +closed the door. “My God!” he said; “this is dreadful. There is no time +to be lost. She will die for sheer want of blood to keep the heart’s +action as it should be. There must be transfusion of blood at once. Is +it you or me?” + +“I am younger and stronger, Professor. It must be me.” + +“Then get ready at once. I will bring up my bag. I am prepared.” + +I went downstairs with him, and as we were going there was a knock at +the hall-door. When we reached the hall the maid had just opened the +door, and Arthur was stepping quickly in. He rushed up to me, saying in +an eager whisper:-- + +“Jack, I was so anxious. I read between the lines of your letter, and +have been in an agony. The dad was better, so I ran down here to see for +myself. Is not that gentleman Dr. Van Helsing? I am so thankful to you, +sir, for coming.” When first the Professor’s eye had lit upon him he had +been angry at his interruption at such a time; but now, as he took in +his stalwart proportions and recognised the strong young manhood which +seemed to emanate from him, his eyes gleamed. Without a pause he said to +him gravely as he held out his hand:-- + +“Sir, you have come in time. You are the lover of our dear miss. She is +bad, very, very bad. Nay, my child, do not go like that.” For he +suddenly grew pale and sat down in a chair almost fainting. “You are to +help her. You can do more than any that live, and your courage is your +best help.” + +“What can I do?” asked Arthur hoarsely. “Tell me, and I shall do it. My +life is hers, and I would give the last drop of blood in my body for +her.” The Professor has a strongly humorous side, and I could from old +knowledge detect a trace of its origin in his answer:-- + +“My young sir, I do not ask so much as that--not the last!” + +“What shall I do?” There was fire in his eyes, and his open nostril +quivered with intent. Van Helsing slapped him on the shoulder. “Come!” +he said. “You are a man, and it is a man we want. You are better than +me, better than my friend John.” Arthur looked bewildered, and the +Professor went on by explaining in a kindly way:-- + +“Young miss is bad, very bad. She wants blood, and blood she must have +or die. My friend John and I have consulted; and we are about to perform +what we call transfusion of blood--to transfer from full veins of one to +the empty veins which pine for him. John was to give his blood, as he is +the more young and strong than me”--here Arthur took my hand and wrung +it hard in silence--“but, now you are here, you are more good than us, +old or young, who toil much in the world of thought. Our nerves are not +so calm and our blood not so bright than yours!” Arthur turned to him +and said:-- + +“If you only knew how gladly I would die for her you would +understand----” + +He stopped, with a sort of choke in his voice. + +“Good boy!” said Van Helsing. “In the not-so-far-off you will be happy +that you have done all for her you love. Come now and be silent. You +shall kiss her once before it is done, but then you must go; and you +must leave at my sign. Say no word to Madame; you know how it is with +her! There must be no shock; any knowledge of this would be one. Come!” + +We all went up to Lucy’s room. Arthur by direction remained outside. +Lucy turned her head and looked at us, but said nothing. She was not +asleep, but she was simply too weak to make the effort. Her eyes spoke +to us; that was all. Van Helsing took some things from his bag and laid +them on a little table out of sight. Then he mixed a narcotic, and +coming over to the bed, said cheerily:-- + +“Now, little miss, here is your medicine. Drink it off, like a good +child. See, I lift you so that to swallow is easy. Yes.” She had made +the effort with success. + +It astonished me how long the drug took to act. This, in fact, marked +the extent of her weakness. The time seemed endless until sleep began to +flicker in her eyelids. At last, however, the narcotic began to manifest +its potency; and she fell into a deep sleep. When the Professor was +satisfied he called Arthur into the room, and bade him strip off his +coat. Then he added: “You may take that one little kiss whiles I bring +over the table. Friend John, help to me!” So neither of us looked whilst +he bent over her. + +Van Helsing turning to me, said: + +“He is so young and strong and of blood so pure that we need not +defibrinate it.” + +Then with swiftness, but with absolute method, Van Helsing performed the +operation. As the transfusion went on something like life seemed to come +back to poor Lucy’s cheeks, and through Arthur’s growing pallor the joy +of his face seemed absolutely to shine. After a bit I began to grow +anxious, for the loss of blood was telling on Arthur, strong man as he +was. It gave me an idea of what a terrible strain Lucy’s system must +have undergone that what weakened Arthur only partially restored her. +But the Professor’s face was set, and he stood watch in hand and with +his eyes fixed now on the patient and now on Arthur. I could hear my own +heart beat. Presently he said in a soft voice: “Do not stir an instant. +It is enough. You attend him; I will look to her.” When all was over I +could see how much Arthur was weakened. I dressed the wound and took his +arm to bring him away, when Van Helsing spoke without turning round--the +man seems to have eyes in the back of his head:-- + +“The brave lover, I think, deserve another kiss, which he shall have +presently.” And as he had now finished his operation, he adjusted the +pillow to the patient’s head. As he did so the narrow black velvet band +which she seems always to wear round her throat, buckled with an old +diamond buckle which her lover had given her, was dragged a little up, +and showed a red mark on her throat. Arthur did not notice it, but I +could hear the deep hiss of indrawn breath which is one of Van Helsing’s +ways of betraying emotion. He said nothing at the moment, but turned to +me, saying: “Now take down our brave young lover, give him of the port +wine, and let him lie down a while. He must then go home and rest, sleep +much and eat much, that he may be recruited of what he has so given to +his love. He must not stay here. Hold! a moment. I may take it, sir, +that you are anxious of result. Then bring it with you that in all ways +the operation is successful. You have saved her life this time, and you +can go home and rest easy in mind that all that can be is. I shall tell +her all when she is well; she shall love you none the less for what you +have done. Good-bye.” + +When Arthur had gone I went back to the room. Lucy was sleeping gently, +but her breathing was stronger; I could see the counterpane move as her +breast heaved. By the bedside sat Van Helsing, looking at her intently. +The velvet band again covered the red mark. I asked the Professor in a +whisper:-- + +“What do you make of that mark on her throat?” + +“What do you make of it?” + +“I have not examined it yet,” I answered, and then and there proceeded +to loose the band. Just over the external jugular vein there were two +punctures, not large, but not wholesome-looking. There was no sign of +disease, but the edges were white and worn-looking, as if by some +trituration. It at once occurred to me that this wound, or whatever it +was, might be the means of that manifest loss of blood; but I abandoned +the idea as soon as formed, for such a thing could not be. The whole bed +would have been drenched to a scarlet with the blood which the girl must +have lost to leave such a pallor as she had before the transfusion. + +“Well?” said Van Helsing. + +“Well,” said I, “I can make nothing of it.” The Professor stood up. “I +must go back to Amsterdam to-night,” he said. “There are books and +things there which I want. You must remain here all the night, and you +must not let your sight pass from her.” + +“Shall I have a nurse?” I asked. + +“We are the best nurses, you and I. You keep watch all night; see that +she is well fed, and that nothing disturbs her. You must not sleep all +the night. Later on we can sleep, you and I. I shall be back as soon as +possible. And then we may begin.” + +“May begin?” I said. “What on earth do you mean?” + +“We shall see!” he answered, as he hurried out. He came back a moment +later and put his head inside the door and said with warning finger held +up:-- + +“Remember, she is your charge. If you leave her, and harm befall, you +shall not sleep easy hereafter!” + + +_Dr. Seward’s Diary--continued._ + +_8 September._--I sat up all night with Lucy. The opiate worked itself +off towards dusk, and she waked naturally; she looked a different being +from what she had been before the operation. Her spirits even were good, +and she was full of a happy vivacity, but I could see evidences of the +absolute prostration which she had undergone. When I told Mrs. Westenra +that Dr. Van Helsing had directed that I should sit up with her she +almost pooh-poohed the idea, pointing out her daughter’s renewed +strength and excellent spirits. I was firm, however, and made +preparations for my long vigil. When her maid had prepared her for the +night I came in, having in the meantime had supper, and took a seat by +the bedside. She did not in any way make objection, but looked at me +gratefully whenever I caught her eye. After a long spell she seemed +sinking off to sleep, but with an effort seemed to pull herself together +and shook it off. This was repeated several times, with greater effort +and with shorter pauses as the time moved on. It was apparent that she +did not want to sleep, so I tackled the subject at once:-- + +“You do not want to go to sleep?” + +“No; I am afraid.” + +“Afraid to go to sleep! Why so? It is the boon we all crave for.” + +“Ah, not if you were like me--if sleep was to you a presage of horror!” + +“A presage of horror! What on earth do you mean?” + +“I don’t know; oh, I don’t know. And that is what is so terrible. All +this weakness comes to me in sleep; until I dread the very thought.” + +“But, my dear girl, you may sleep to-night. I am here watching you, and +I can promise that nothing will happen.” + +“Ah, I can trust you!” I seized the opportunity, and said: “I promise +you that if I see any evidence of bad dreams I will wake you at once.” + +“You will? Oh, will you really? How good you are to me. Then I will +sleep!” And almost at the word she gave a deep sigh of relief, and sank +back, asleep. + +All night long I watched by her. She never stirred, but slept on and on +in a deep, tranquil, life-giving, health-giving sleep. Her lips were +slightly parted, and her breast rose and fell with the regularity of a +pendulum. There was a smile on her face, and it was evident that no bad +dreams had come to disturb her peace of mind. + +In the early morning her maid came, and I left her in her care and took +myself back home, for I was anxious about many things. I sent a short +wire to Van Helsing and to Arthur, telling them of the excellent result +of the operation. My own work, with its manifold arrears, took me all +day to clear off; it was dark when I was able to inquire about my +zoöphagous patient. The report was good; he had been quite quiet for the +past day and night. A telegram came from Van Helsing at Amsterdam whilst +I was at dinner, suggesting that I should be at Hillingham to-night, as +it might be well to be at hand, and stating that he was leaving by the +night mail and would join me early in the morning. + + * * * * * + +_9 September_.--I was pretty tired and worn out when I got to +Hillingham. For two nights I had hardly had a wink of sleep, and my +brain was beginning to feel that numbness which marks cerebral +exhaustion. Lucy was up and in cheerful spirits. When she shook hands +with me she looked sharply in my face and said:-- + +“No sitting up to-night for you. You are worn out. I am quite well +again; indeed, I am; and if there is to be any sitting up, it is I who +will sit up with you.” I would not argue the point, but went and had my +supper. Lucy came with me, and, enlivened by her charming presence, I +made an excellent meal, and had a couple of glasses of the more than +excellent port. Then Lucy took me upstairs, and showed me a room next +her own, where a cozy fire was burning. “Now,” she said, “you must stay +here. I shall leave this door open and my door too. You can lie on the +sofa for I know that nothing would induce any of you doctors to go to +bed whilst there is a patient above the horizon. If I want anything I +shall call out, and you can come to me at once.” I could not but +acquiesce, for I was “dog-tired,” and could not have sat up had I tried. +So, on her renewing her promise to call me if she should want anything, +I lay on the sofa, and forgot all about everything. + + +_Lucy Westenra’s Diary._ + +_9 September._--I feel so happy to-night. I have been so miserably weak, +that to be able to think and move about is like feeling sunshine after +a long spell of east wind out of a steel sky. Somehow Arthur feels very, +very close to me. I seem to feel his presence warm about me. I suppose +it is that sickness and weakness are selfish things and turn our inner +eyes and sympathy on ourselves, whilst health and strength give Love +rein, and in thought and feeling he can wander where he wills. I know +where my thoughts are. If Arthur only knew! My dear, my dear, your ears +must tingle as you sleep, as mine do waking. Oh, the blissful rest of +last night! How I slept, with that dear, good Dr. Seward watching me. +And to-night I shall not fear to sleep, since he is close at hand and +within call. Thank everybody for being so good to me! Thank God! +Good-night, Arthur. + + +_Dr. Seward’s Diary._ + +_10 September._--I was conscious of the Professor’s hand on my head, and +started awake all in a second. That is one of the things that we learn +in an asylum, at any rate. + +“And how is our patient?” + +“Well, when I left her, or rather when she left me,” I answered. + +“Come, let us see,” he said. And together we went into the room. + +The blind was down, and I went over to raise it gently, whilst Van +Helsing stepped, with his soft, cat-like tread, over to the bed. + +As I raised the blind, and the morning sunlight flooded the room, I +heard the Professor’s low hiss of inspiration, and knowing its rarity, a +deadly fear shot through my heart. As I passed over he moved back, and +his exclamation of horror, “Gott in Himmel!” needed no enforcement from +his agonised face. He raised his hand and pointed to the bed, and his +iron face was drawn and ashen white. I felt my knees begin to tremble. + +There on the bed, seemingly in a swoon, lay poor Lucy, more horribly +white and wan-looking than ever. Even the lips were white, and the gums +seemed to have shrunken back from the teeth, as we sometimes see in a +corpse after a prolonged illness. Van Helsing raised his foot to stamp +in anger, but the instinct of his life and all the long years of habit +stood to him, and he put it down again softly. “Quick!” he said. “Bring +the brandy.” I flew to the dining-room, and returned with the decanter. +He wetted the poor white lips with it, and together we rubbed palm and +wrist and heart. He felt her heart, and after a few moments of agonising +suspense said:-- + +“It is not too late. It beats, though but feebly. All our work is +undone; we must begin again. There is no young Arthur here now; I have +to call on you yourself this time, friend John.” As he spoke, he was +dipping into his bag and producing the instruments for transfusion; I +had taken off my coat and rolled up my shirt-sleeve. There was no +possibility of an opiate just at present, and no need of one; and so, +without a moment’s delay, we began the operation. After a time--it did +not seem a short time either, for the draining away of one’s blood, no +matter how willingly it be given, is a terrible feeling--Van Helsing +held up a warning finger. “Do not stir,” he said, “but I fear that with +growing strength she may wake; and that would make danger, oh, so much +danger. But I shall precaution take. I shall give hypodermic injection +of morphia.” He proceeded then, swiftly and deftly, to carry out his +intent. The effect on Lucy was not bad, for the faint seemed to merge +subtly into the narcotic sleep. It was with a feeling of personal pride +that I could see a faint tinge of colour steal back into the pallid +cheeks and lips. No man knows, till he experiences it, what it is to +feel his own life-blood drawn away into the veins of the woman he loves. + +The Professor watched me critically. “That will do,” he said. “Already?” +I remonstrated. “You took a great deal more from Art.” To which he +smiled a sad sort of smile as he replied:-- + +“He is her lover, her _fiancé_. You have work, much work, to do for her +and for others; and the present will suffice.” + +When we stopped the operation, he attended to Lucy, whilst I applied +digital pressure to my own incision. I laid down, whilst I waited his +leisure to attend to me, for I felt faint and a little sick. By-and-by +he bound up my wound, and sent me downstairs to get a glass of wine for +myself. As I was leaving the room, he came after me, and half +whispered:-- + +“Mind, nothing must be said of this. If our young lover should turn up +unexpected, as before, no word to him. It would at once frighten him and +enjealous him, too. There must be none. So!” + +When I came back he looked at me carefully, and then said:-- + +“You are not much the worse. Go into the room, and lie on your sofa, and +rest awhile; then have much breakfast, and come here to me.” + +I followed out his orders, for I knew how right and wise they were. I +had done my part, and now my next duty was to keep up my strength. I +felt very weak, and in the weakness lost something of the amazement at +what had occurred. I fell asleep on the sofa, however, wondering over +and over again how Lucy had made such a retrograde movement, and how +she could have been drained of so much blood with no sign anywhere to +show for it. I think I must have continued my wonder in my dreams, for, +sleeping and waking, my thoughts always came back to the little +punctures in her throat and the ragged, exhausted appearance of their +edges--tiny though they were. + +Lucy slept well into the day, and when she woke she was fairly well and +strong, though not nearly so much so as the day before. When Van Helsing +had seen her, he went out for a walk, leaving me in charge, with strict +injunctions that I was not to leave her for a moment. I could hear his +voice in the hall, asking the way to the nearest telegraph office. + +Lucy chatted with me freely, and seemed quite unconscious that anything +had happened. I tried to keep her amused and interested. When her mother +came up to see her, she did not seem to notice any change whatever, but +said to me gratefully:-- + +“We owe you so much, Dr. Seward, for all you have done, but you really +must now take care not to overwork yourself. You are looking pale +yourself. You want a wife to nurse and look after you a bit; that you +do!” As she spoke, Lucy turned crimson, though it was only momentarily, +for her poor wasted veins could not stand for long such an unwonted +drain to the head. The reaction came in excessive pallor as she turned +imploring eyes on me. I smiled and nodded, and laid my finger on my +lips; with a sigh, she sank back amid her pillows. + +Van Helsing returned in a couple of hours, and presently said to me: +“Now you go home, and eat much and drink enough. Make yourself strong. I +stay here to-night, and I shall sit up with little miss myself. You and +I must watch the case, and we must have none other to know. I have grave +reasons. No, do not ask them; think what you will. Do not fear to think +even the most not-probable. Good-night.” + +In the hall two of the maids came to me, and asked if they or either of +them might not sit up with Miss Lucy. They implored me to let them; and +when I said it was Dr. Van Helsing’s wish that either he or I should sit +up, they asked me quite piteously to intercede with the “foreign +gentleman.” I was much touched by their kindness. Perhaps it is because +I am weak at present, and perhaps because it was on Lucy’s account, that +their devotion was manifested; for over and over again have I seen +similar instances of woman’s kindness. I got back here in time for a +late dinner; went my rounds--all well; and set this down whilst waiting +for sleep. It is coming. + + * * * * * + +_11 September._--This afternoon I went over to Hillingham. Found Van +Helsing in excellent spirits, and Lucy much better. Shortly after I had +arrived, a big parcel from abroad came for the Professor. He opened it +with much impressment--assumed, of course--and showed a great bundle of +white flowers. + +“These are for you, Miss Lucy,” he said. + +“For me? Oh, Dr. Van Helsing!” + +“Yes, my dear, but not for you to play with. These are medicines.” Here +Lucy made a wry face. “Nay, but they are not to take in a decoction or +in nauseous form, so you need not snub that so charming nose, or I shall +point out to my friend Arthur what woes he may have to endure in seeing +so much beauty that he so loves so much distort. Aha, my pretty miss, +that bring the so nice nose all straight again. This is medicinal, but +you do not know how. I put him in your window, I make pretty wreath, and +hang him round your neck, so that you sleep well. Oh yes! they, like the +lotus flower, make your trouble forgotten. It smell so like the waters +of Lethe, and of that fountain of youth that the Conquistadores sought +for in the Floridas, and find him all too late.” + +Whilst he was speaking, Lucy had been examining the flowers and smelling +them. Now she threw them down, saying, with half-laughter, and +half-disgust:-- + +“Oh, Professor, I believe you are only putting up a joke on me. Why, +these flowers are only common garlic.” + +To my surprise, Van Helsing rose up and said with all his sternness, his +iron jaw set and his bushy eyebrows meeting:-- + +“No trifling with me! I never jest! There is grim purpose in all I do; +and I warn you that you do not thwart me. Take care, for the sake of +others if not for your own.” Then seeing poor Lucy scared, as she might +well be, he went on more gently: “Oh, little miss, my dear, do not fear +me. I only do for your good; but there is much virtue to you in those so +common flowers. See, I place them myself in your room. I make myself the +wreath that you are to wear. But hush! no telling to others that make so +inquisitive questions. We must obey, and silence is a part of obedience; +and obedience is to bring you strong and well into loving arms that wait +for you. Now sit still awhile. Come with me, friend John, and you shall +help me deck the room with my garlic, which is all the way from Haarlem, +where my friend Vanderpool raise herb in his glass-houses all the year. +I had to telegraph yesterday, or they would not have been here.” + +We went into the room, taking the flowers with us. The Professor’s +actions were certainly odd and not to be found in any pharmacopoeia +that I ever heard of. First he fastened up the windows and latched them +securely; next, taking a handful of the flowers, he rubbed them all over +the sashes, as though to ensure that every whiff of air that might get +in would be laden with the garlic smell. Then with the wisp he rubbed +all over the jamb of the door, above, below, and at each side, and round +the fireplace in the same way. It all seemed grotesque to me, and +presently I said:-- + +“Well, Professor, I know you always have a reason for what you do, but +this certainly puzzles me. It is well we have no sceptic here, or he +would say that you were working some spell to keep out an evil spirit.” + +“Perhaps I am!” he answered quietly as he began to make the wreath which +Lucy was to wear round her neck. + +We then waited whilst Lucy made her toilet for the night, and when she +was in bed he came and himself fixed the wreath of garlic round her +neck. The last words he said to her were:-- + +“Take care you do not disturb it; and even if the room feel close, do +not to-night open the window or the door.” + +“I promise,” said Lucy, “and thank you both a thousand times for all +your kindness to me! Oh, what have I done to be blessed with such +friends?” + +As we left the house in my fly, which was waiting, Van Helsing said:-- + +“To-night I can sleep in peace, and sleep I want--two nights of travel, +much reading in the day between, and much anxiety on the day to follow, +and a night to sit up, without to wink. To-morrow in the morning early +you call for me, and we come together to see our pretty miss, so much +more strong for my ‘spell’ which I have work. Ho! ho!” + +He seemed so confident that I, remembering my own confidence two nights +before and with the baneful result, felt awe and vague terror. It must +have been my weakness that made me hesitate to tell it to my friend, but +I felt it all the more, like unshed tears. + + + + +CHAPTER XI + +_Lucy Westenra’s Diary._ + + +_12 September._--How good they all are to me. I quite love that dear Dr. +Van Helsing. I wonder why he was so anxious about these flowers. He +positively frightened me, he was so fierce. And yet he must have been +right, for I feel comfort from them already. Somehow, I do not dread +being alone to-night, and I can go to sleep without fear. I shall not +mind any flapping outside the window. Oh, the terrible struggle that I +have had against sleep so often of late; the pain of the sleeplessness, +or the pain of the fear of sleep, with such unknown horrors as it has +for me! How blessed are some people, whose lives have no fears, no +dreads; to whom sleep is a blessing that comes nightly, and brings +nothing but sweet dreams. Well, here I am to-night, hoping for sleep, +and lying like Ophelia in the play, with “virgin crants and maiden +strewments.” I never liked garlic before, but to-night it is delightful! +There is peace in its smell; I feel sleep coming already. Good-night, +everybody. + + +_Dr. Seward’s Diary._ + +_13 September._--Called at the Berkeley and found Van Helsing, as usual, +up to time. The carriage ordered from the hotel was waiting. The +Professor took his bag, which he always brings with him now. + +Let all be put down exactly. Van Helsing and I arrived at Hillingham at +eight o’clock. It was a lovely morning; the bright sunshine and all the +fresh feeling of early autumn seemed like the completion of nature’s +annual work. The leaves were turning to all kinds of beautiful colours, +but had not yet begun to drop from the trees. When we entered we met +Mrs. Westenra coming out of the morning room. She is always an early +riser. She greeted us warmly and said:-- + +“You will be glad to know that Lucy is better. The dear child is still +asleep. I looked into her room and saw her, but did not go in, lest I +should disturb her.” The Professor smiled, and looked quite jubilant. He +rubbed his hands together, and said:-- + +“Aha! I thought I had diagnosed the case. My treatment is working,” to +which she answered:-- + +“You must not take all the credit to yourself, doctor. Lucy’s state this +morning is due in part to me.” + +“How you do mean, ma’am?” asked the Professor. + +“Well, I was anxious about the dear child in the night, and went into +her room. She was sleeping soundly--so soundly that even my coming did +not wake her. But the room was awfully stuffy. There were a lot of those +horrible, strong-smelling flowers about everywhere, and she had actually +a bunch of them round her neck. I feared that the heavy odour would be +too much for the dear child in her weak state, so I took them all away +and opened a bit of the window to let in a little fresh air. You will be +pleased with her, I am sure.” + +She moved off into her boudoir, where she usually breakfasted early. As +she had spoken, I watched the Professor’s face, and saw it turn ashen +grey. He had been able to retain his self-command whilst the poor lady +was present, for he knew her state and how mischievous a shock would be; +he actually smiled on her as he held open the door for her to pass into +her room. But the instant she had disappeared he pulled me, suddenly and +forcibly, into the dining-room and closed the door. + +Then, for the first time in my life, I saw Van Helsing break down. He +raised his hands over his head in a sort of mute despair, and then beat +his palms together in a helpless way; finally he sat down on a chair, +and putting his hands before his face, began to sob, with loud, dry sobs +that seemed to come from the very racking of his heart. Then he raised +his arms again, as though appealing to the whole universe. “God! God! +God!” he said. “What have we done, what has this poor thing done, that +we are so sore beset? Is there fate amongst us still, sent down from the +pagan world of old, that such things must be, and in such way? This poor +mother, all unknowing, and all for the best as she think, does such +thing as lose her daughter body and soul; and we must not tell her, we +must not even warn her, or she die, and then both die. Oh, how we are +beset! How are all the powers of the devils against us!” Suddenly he +jumped to his feet. “Come,” he said, “come, we must see and act. Devils +or no devils, or all the devils at once, it matters not; we fight him +all the same.” He went to the hall-door for his bag; and together we +went up to Lucy’s room. + +Once again I drew up the blind, whilst Van Helsing went towards the bed. +This time he did not start as he looked on the poor face with the same +awful, waxen pallor as before. He wore a look of stern sadness and +infinite pity. + +“As I expected,” he murmured, with that hissing inspiration of his which +meant so much. Without a word he went and locked the door, and then +began to set out on the little table the instruments for yet another +operation of transfusion of blood. I had long ago recognised the +necessity, and begun to take off my coat, but he stopped me with a +warning hand. “No!” he said. “To-day you must operate. I shall provide. +You are weakened already.” As he spoke he took off his coat and rolled +up his shirt-sleeve. + +Again the operation; again the narcotic; again some return of colour to +the ashy cheeks, and the regular breathing of healthy sleep. This time I +watched whilst Van Helsing recruited himself and rested. + +Presently he took an opportunity of telling Mrs. Westenra that she must +not remove anything from Lucy’s room without consulting him; that the +flowers were of medicinal value, and that the breathing of their odour +was a part of the system of cure. Then he took over the care of the case +himself, saying that he would watch this night and the next and would +send me word when to come. + +After another hour Lucy waked from her sleep, fresh and bright and +seemingly not much the worse for her terrible ordeal. + +What does it all mean? I am beginning to wonder if my long habit of life +amongst the insane is beginning to tell upon my own brain. + + +_Lucy Westenra’s Diary._ + +_17 September._--Four days and nights of peace. I am getting so strong +again that I hardly know myself. It is as if I had passed through some +long nightmare, and had just awakened to see the beautiful sunshine and +feel the fresh air of the morning around me. I have a dim +half-remembrance of long, anxious times of waiting and fearing; darkness +in which there was not even the pain of hope to make present distress +more poignant: and then long spells of oblivion, and the rising back to +life as a diver coming up through a great press of water. Since, +however, Dr. Van Helsing has been with me, all this bad dreaming seems +to have passed away; the noises that used to frighten me out of my +wits--the flapping against the windows, the distant voices which seemed +so close to me, the harsh sounds that came from I know not where and +commanded me to do I know not what--have all ceased. I go to bed now +without any fear of sleep. I do not even try to keep awake. I have grown +quite fond of the garlic, and a boxful arrives for me every day from +Haarlem. To-night Dr. Van Helsing is going away, as he has to be for a +day in Amsterdam. But I need not be watched; I am well enough to be left +alone. Thank God for mother’s sake, and dear Arthur’s, and for all our +friends who have been so kind! I shall not even feel the change, for +last night Dr. Van Helsing slept in his chair a lot of the time. I found +him asleep twice when I awoke; but I did not fear to go to sleep again, +although the boughs or bats or something napped almost angrily against +the window-panes. + + +_“The Pall Mall Gazette,” 18 September._ + + THE ESCAPED WOLF. + + PERILOUS ADVENTURE OF OUR INTERVIEWER. + + _Interview with the Keeper in the Zoölogical Gardens._ + +After many inquiries and almost as many refusals, and perpetually using +the words “Pall Mall Gazette” as a sort of talisman, I managed to find +the keeper of the section of the Zoölogical Gardens in which the wolf +department is included. Thomas Bilder lives in one of the cottages in +the enclosure behind the elephant-house, and was just sitting down to +his tea when I found him. Thomas and his wife are hospitable folk, +elderly, and without children, and if the specimen I enjoyed of their +hospitality be of the average kind, their lives must be pretty +comfortable. The keeper would not enter on what he called “business” +until the supper was over, and we were all satisfied. Then when the +table was cleared, and he had lit his pipe, he said:-- + +“Now, sir, you can go on and arsk me what you want. You’ll excoose me +refoosin’ to talk of perfeshunal subjects afore meals. I gives the +wolves and the jackals and the hyenas in all our section their tea afore +I begins to arsk them questions.” + +“How do you mean, ask them questions?” I queried, wishful to get him +into a talkative humour. + +“’Ittin’ of them over the ’ead with a pole is one way; scratchin’ of +their hears is another, when gents as is flush wants a bit of a show-orf +to their gals. I don’t so much mind the fust--the ’ittin’ with a pole +afore I chucks in their dinner; but I waits till they’ve ’ad their +sherry and kawffee, so to speak, afore I tries on with the +ear-scratchin’. Mind you,” he added philosophically, “there’s a deal of +the same nature in us as in them theer animiles. Here’s you a-comin’ and +arskin’ of me questions about my business, and I that grumpy-like that +only for your bloomin’ ’arf-quid I’d ’a’ seen you blowed fust ’fore I’d +answer. Not even when you arsked me sarcastic-like if I’d like you to +arsk the Superintendent if you might arsk me questions. Without offence +did I tell yer to go to ’ell?” + +“You did.” + +“An’ when you said you’d report me for usin’ of obscene language that +was ’ittin’ me over the ’ead; but the ’arf-quid made that all right. I +weren’t a-goin’ to fight, so I waited for the food, and did with my ’owl +as the wolves, and lions, and tigers does. But, Lor’ love yer ’art, now +that the old ’ooman has stuck a chunk of her tea-cake in me, an’ rinsed +me out with her bloomin’ old teapot, and I’ve lit hup, you may scratch +my ears for all you’re worth, and won’t git even a growl out of me. +Drive along with your questions. I know what yer a-comin’ at, that ’ere +escaped wolf.” + +“Exactly. I want you to give me your view of it. Just tell me how it +happened; and when I know the facts I’ll get you to say what you +consider was the cause of it, and how you think the whole affair will +end.” + +“All right, guv’nor. This ’ere is about the ’ole story. That ’ere wolf +what we called Bersicker was one of three grey ones that came from +Norway to Jamrach’s, which we bought off him four years ago. He was a +nice well-behaved wolf, that never gave no trouble to talk of. I’m more +surprised at ’im for wantin’ to get out nor any other animile in the +place. But, there, you can’t trust wolves no more nor women.” + +“Don’t you mind him, sir!” broke in Mrs. Tom, with a cheery laugh. “’E’s +got mindin’ the animiles so long that blest if he ain’t like a old wolf +’isself! But there ain’t no ’arm in ’im.” + +“Well, sir, it was about two hours after feedin’ yesterday when I first +hear my disturbance. I was makin’ up a litter in the monkey-house for a +young puma which is ill; but when I heard the yelpin’ and ’owlin’ I kem +away straight. There was Bersicker a-tearin’ like a mad thing at the +bars as if he wanted to get out. There wasn’t much people about that +day, and close at hand was only one man, a tall, thin chap, with a ’ook +nose and a pointed beard, with a few white hairs runnin’ through it. He +had a ’ard, cold look and red eyes, and I took a sort of mislike to him, +for it seemed as if it was ’im as they was hirritated at. He ’ad white +kid gloves on ’is ’ands, and he pointed out the animiles to me and says: +‘Keeper, these wolves seem upset at something.’ + +“‘Maybe it’s you,’ says I, for I did not like the airs as he give +’isself. He didn’t git angry, as I ’oped he would, but he smiled a kind +of insolent smile, with a mouth full of white, sharp teeth. ‘Oh no, they +wouldn’t like me,’ ’e says. + +“‘Ow yes, they would,’ says I, a-imitatin’ of him. ‘They always likes a +bone or two to clean their teeth on about tea-time, which you ’as a +bagful.’ + +“Well, it was a odd thing, but when the animiles see us a-talkin’ they +lay down, and when I went over to Bersicker he let me stroke his ears +same as ever. That there man kem over, and blessed but if he didn’t put +in his hand and stroke the old wolf’s ears too! + +“‘Tyke care,’ says I. ‘Bersicker is quick.’ + +“‘Never mind,’ he says. ‘I’m used to ’em!’ + +“‘Are you in the business yourself?’ I says, tyking off my ’at, for a +man what trades in wolves, anceterer, is a good friend to keepers. + +“‘No,’ says he, ‘not exactly in the business, but I ’ave made pets of +several.’ And with that he lifts his ’at as perlite as a lord, and walks +away. Old Bersicker kep’ a-lookin’ arter ’im till ’e was out of sight, +and then went and lay down in a corner and wouldn’t come hout the ’ole +hevening. Well, larst night, so soon as the moon was hup, the wolves +here all began a-’owling. There warn’t nothing for them to ’owl at. +There warn’t no one near, except some one that was evidently a-callin’ a +dog somewheres out back of the gardings in the Park road. Once or twice +I went out to see that all was right, and it was, and then the ’owling +stopped. Just before twelve o’clock I just took a look round afore +turnin’ in, an’, bust me, but when I kem opposite to old Bersicker’s +cage I see the rails broken and twisted about and the cage empty. And +that’s all I know for certing.” + +“Did any one else see anything?” + +“One of our gard’ners was a-comin’ ’ome about that time from a ’armony, +when he sees a big grey dog comin’ out through the garding ’edges. At +least, so he says, but I don’t give much for it myself, for if he did ’e +never said a word about it to his missis when ’e got ’ome, and it was +only after the escape of the wolf was made known, and we had been up all +night-a-huntin’ of the Park for Bersicker, that he remembered seein’ +anything. My own belief was that the ’armony ’ad got into his ’ead.” + +“Now, Mr. Bilder, can you account in any way for the escape of the +wolf?” + +“Well, sir,” he said, with a suspicious sort of modesty, “I think I can; +but I don’t know as ’ow you’d be satisfied with the theory.” + +“Certainly I shall. If a man like you, who knows the animals from +experience, can’t hazard a good guess at any rate, who is even to try?” + +“Well then, sir, I accounts for it this way; it seems to me that ’ere +wolf escaped--simply because he wanted to get out.” + +From the hearty way that both Thomas and his wife laughed at the joke I +could see that it had done service before, and that the whole +explanation was simply an elaborate sell. I couldn’t cope in badinage +with the worthy Thomas, but I thought I knew a surer way to his heart, +so I said:-- + +“Now, Mr. Bilder, we’ll consider that first half-sovereign worked off, +and this brother of his is waiting to be claimed when you’ve told me +what you think will happen.” + +“Right y’are, sir,” he said briskly. “Ye’ll excoose me, I know, for +a-chaffin’ of ye, but the old woman here winked at me, which was as much +as telling me to go on.” + +“Well, I never!” said the old lady. + +“My opinion is this: that ’ere wolf is a-’idin’ of, somewheres. The +gard’ner wot didn’t remember said he was a-gallopin’ northward faster +than a horse could go; but I don’t believe him, for, yer see, sir, +wolves don’t gallop no more nor dogs does, they not bein’ built that +way. Wolves is fine things in a storybook, and I dessay when they gets +in packs and does be chivyin’ somethin’ that’s more afeared than they is +they can make a devil of a noise and chop it up, whatever it is. But, +Lor’ bless you, in real life a wolf is only a low creature, not half so +clever or bold as a good dog; and not half a quarter so much fight in +’im. This one ain’t been used to fightin’ or even to providin’ for +hisself, and more like he’s somewhere round the Park a-’idin’ an’ +a-shiverin’ of, and, if he thinks at all, wonderin’ where he is to get +his breakfast from; or maybe he’s got down some area and is in a +coal-cellar. My eye, won’t some cook get a rum start when she sees his +green eyes a-shining at her out of the dark! If he can’t get food he’s +bound to look for it, and mayhap he may chance to light on a butcher’s +shop in time. If he doesn’t, and some nursemaid goes a-walkin’ orf with +a soldier, leavin’ of the hinfant in the perambulator--well, then I +shouldn’t be surprised if the census is one babby the less. That’s +all.” + +I was handing him the half-sovereign, when something came bobbing up +against the window, and Mr. Bilder’s face doubled its natural length +with surprise. + +“God bless me!” he said. “If there ain’t old Bersicker come back by +’isself!” + +He went to the door and opened it; a most unnecessary proceeding it +seemed to me. I have always thought that a wild animal never looks so +well as when some obstacle of pronounced durability is between us; a +personal experience has intensified rather than diminished that idea. + +After all, however, there is nothing like custom, for neither Bilder nor +his wife thought any more of the wolf than I should of a dog. The animal +itself was as peaceful and well-behaved as that father of all +picture-wolves--Red Riding Hood’s quondam friend, whilst moving her +confidence in masquerade. + +The whole scene was an unutterable mixture of comedy and pathos. The +wicked wolf that for half a day had paralysed London and set all the +children in the town shivering in their shoes, was there in a sort of +penitent mood, and was received and petted like a sort of vulpine +prodigal son. Old Bilder examined him all over with most tender +solicitude, and when he had finished with his penitent said:-- + +“There, I knew the poor old chap would get into some kind of trouble; +didn’t I say it all along? Here’s his head all cut and full of broken +glass. ’E’s been a-gettin’ over some bloomin’ wall or other. It’s a +shyme that people are allowed to top their walls with broken bottles. +This ’ere’s what comes of it. Come along, Bersicker.” + +He took the wolf and locked him up in a cage, with a piece of meat that +satisfied, in quantity at any rate, the elementary conditions of the +fatted calf, and went off to report. + +I came off, too, to report the only exclusive information that is given +to-day regarding the strange escapade at the Zoo. + + +_Dr. Seward’s Diary._ + +_17 September._--I was engaged after dinner in my study posting up my +books, which, through press of other work and the many visits to Lucy, +had fallen sadly into arrear. Suddenly the door was burst open, and in +rushed my patient, with his face distorted with passion. I was +thunderstruck, for such a thing as a patient getting of his own accord +into the Superintendent’s study is almost unknown. Without an instant’s +pause he made straight at me. He had a dinner-knife in his hand, and, +as I saw he was dangerous, I tried to keep the table between us. He was +too quick and too strong for me, however; for before I could get my +balance he had struck at me and cut my left wrist rather severely. +Before he could strike again, however, I got in my right and he was +sprawling on his back on the floor. My wrist bled freely, and quite a +little pool trickled on to the carpet. I saw that my friend was not +intent on further effort, and occupied myself binding up my wrist, +keeping a wary eye on the prostrate figure all the time. When the +attendants rushed in, and we turned our attention to him, his employment +positively sickened me. He was lying on his belly on the floor licking +up, like a dog, the blood which had fallen from my wounded wrist. He was +easily secured, and, to my surprise, went with the attendants quite +placidly, simply repeating over and over again: “The blood is the life! +The blood is the life!” + +I cannot afford to lose blood just at present; I have lost too much of +late for my physical good, and then the prolonged strain of Lucy’s +illness and its horrible phases is telling on me. I am over-excited and +weary, and I need rest, rest, rest. Happily Van Helsing has not summoned +me, so I need not forego my sleep; to-night I could not well do without +it. + + +_Telegram, Van Helsing, Antwerp, to Seward, Carfax._ + +(Sent to Carfax, Sussex, as no county given; delivered late by +twenty-two hours.) + +“_17 September._--Do not fail to be at Hillingham to-night. If not +watching all the time frequently, visit and see that flowers are as +placed; very important; do not fail. Shall be with you as soon as +possible after arrival.” + + +_Dr. Seward’s Diary._ + +_18 September._--Just off for train to London. The arrival of Van +Helsing’s telegram filled me with dismay. A whole night lost, and I know +by bitter experience what may happen in a night. Of course it is +possible that all may be well, but what _may_ have happened? Surely +there is some horrible doom hanging over us that every possible accident +should thwart us in all we try to do. I shall take this cylinder with +me, and then I can complete my entry on Lucy’s phonograph. + + +_Memorandum left by Lucy Westenra._ + +_17 September. Night._--I write this and leave it to be seen, so that no +one may by any chance get into trouble through me. This is an exact +record of what took place to-night. I feel I am dying of weakness, and +have barely strength to write, but it must be done if I die in the +doing. + +I went to bed as usual, taking care that the flowers were placed as Dr. +Van Helsing directed, and soon fell asleep. + +I was waked by the flapping at the window, which had begun after that +sleep-walking on the cliff at Whitby when Mina saved me, and which now I +know so well. I was not afraid, but I did wish that Dr. Seward was in +the next room--as Dr. Van Helsing said he would be--so that I might have +called him. I tried to go to sleep, but could not. Then there came to me +the old fear of sleep, and I determined to keep awake. Perversely sleep +would try to come then when I did not want it; so, as I feared to be +alone, I opened my door and called out: “Is there anybody there?” There +was no answer. I was afraid to wake mother, and so closed my door again. +Then outside in the shrubbery I heard a sort of howl like a dog’s, but +more fierce and deeper. I went to the window and looked out, but could +see nothing, except a big bat, which had evidently been buffeting its +wings against the window. So I went back to bed again, but determined +not to go to sleep. Presently the door opened, and mother looked in; +seeing by my moving that I was not asleep, came in, and sat by me. She +said to me even more sweetly and softly than her wont:-- + +“I was uneasy about you, darling, and came in to see that you were all +right.” + +I feared she might catch cold sitting there, and asked her to come in +and sleep with me, so she came into bed, and lay down beside me; she did +not take off her dressing gown, for she said she would only stay a while +and then go back to her own bed. As she lay there in my arms, and I in +hers, the flapping and buffeting came to the window again. She was +startled and a little frightened, and cried out: “What is that?” I tried +to pacify her, and at last succeeded, and she lay quiet; but I could +hear her poor dear heart still beating terribly. After a while there was +the low howl again out in the shrubbery, and shortly after there was a +crash at the window, and a lot of broken glass was hurled on the floor. +The window blind blew back with the wind that rushed in, and in the +aperture of the broken panes there was the head of a great, gaunt grey +wolf. Mother cried out in a fright, and struggled up into a sitting +posture, and clutched wildly at anything that would help her. Amongst +other things, she clutched the wreath of flowers that Dr. Van Helsing +insisted on my wearing round my neck, and tore it away from me. For a +second or two she sat up, pointing at the wolf, and there was a strange +and horrible gurgling in her throat; then she fell over--as if struck +with lightning, and her head hit my forehead and made me dizzy for a +moment or two. The room and all round seemed to spin round. I kept my +eyes fixed on the window, but the wolf drew his head back, and a whole +myriad of little specks seemed to come blowing in through the broken +window, and wheeling and circling round like the pillar of dust that +travellers describe when there is a simoon in the desert. I tried to +stir, but there was some spell upon me, and dear mother’s poor body, +which seemed to grow cold already--for her dear heart had ceased to +beat--weighed me down; and I remembered no more for a while. + +The time did not seem long, but very, very awful, till I recovered +consciousness again. Somewhere near, a passing bell was tolling; the +dogs all round the neighbourhood were howling; and in our shrubbery, +seemingly just outside, a nightingale was singing. I was dazed and +stupid with pain and terror and weakness, but the sound of the +nightingale seemed like the voice of my dead mother come back to comfort +me. The sounds seemed to have awakened the maids, too, for I could hear +their bare feet pattering outside my door. I called to them, and they +came in, and when they saw what had happened, and what it was that lay +over me on the bed, they screamed out. The wind rushed in through the +broken window, and the door slammed to. They lifted off the body of my +dear mother, and laid her, covered up with a sheet, on the bed after I +had got up. They were all so frightened and nervous that I directed them +to go to the dining-room and have each a glass of wine. The door flew +open for an instant and closed again. The maids shrieked, and then went +in a body to the dining-room; and I laid what flowers I had on my dear +mother’s breast. When they were there I remembered what Dr. Van Helsing +had told me, but I didn’t like to remove them, and, besides, I would +have some of the servants to sit up with me now. I was surprised that +the maids did not come back. I called them, but got no answer, so I went +to the dining-room to look for them. + +My heart sank when I saw what had happened. They all four lay helpless +on the floor, breathing heavily. The decanter of sherry was on the table +half full, but there was a queer, acrid smell about. I was suspicious, +and examined the decanter. It smelt of laudanum, and looking on the +sideboard, I found that the bottle which mother’s doctor uses for +her--oh! did use--was empty. What am I to do? what am I to do? I am back +in the room with mother. I cannot leave her, and I am alone, save for +the sleeping servants, whom some one has drugged. Alone with the dead! I +dare not go out, for I can hear the low howl of the wolf through the +broken window. + +The air seems full of specks, floating and circling in the draught from +the window, and the lights burn blue and dim. What am I to do? God +shield me from harm this night! I shall hide this paper in my breast, +where they shall find it when they come to lay me out. My dear mother +gone! It is time that I go too. Good-bye, dear Arthur, if I should not +survive this night. God keep you, dear, and God help me! + + + + +CHAPTER XII + +DR. SEWARD’S DIARY + + +_18 September._--I drove at once to Hillingham and arrived early. +Keeping my cab at the gate, I went up the avenue alone. I knocked gently +and rang as quietly as possible, for I feared to disturb Lucy or her +mother, and hoped to only bring a servant to the door. After a while, +finding no response, I knocked and rang again; still no answer. I cursed +the laziness of the servants that they should lie abed at such an +hour--for it was now ten o’clock--and so rang and knocked again, but +more impatiently, but still without response. Hitherto I had blamed only +the servants, but now a terrible fear began to assail me. Was this +desolation but another link in the chain of doom which seemed drawing +tight around us? Was it indeed a house of death to which I had come, too +late? I knew that minutes, even seconds of delay, might mean hours of +danger to Lucy, if she had had again one of those frightful relapses; +and I went round the house to try if I could find by chance an entry +anywhere. + +I could find no means of ingress. Every window and door was fastened and +locked, and I returned baffled to the porch. As I did so, I heard the +rapid pit-pat of a swiftly driven horse’s feet. They stopped at the +gate, and a few seconds later I met Van Helsing running up the avenue. +When he saw me, he gasped out:-- + +“Then it was you, and just arrived. How is she? Are we too late? Did you +not get my telegram?” + +I answered as quickly and coherently as I could that I had only got his +telegram early in the morning, and had not lost a minute in coming here, +and that I could not make any one in the house hear me. He paused and +raised his hat as he said solemnly:-- + +“Then I fear we are too late. God’s will be done!” With his usual +recuperative energy, he went on: “Come. If there be no way open to get +in, we must make one. Time is all in all to us now.” + +We went round to the back of the house, where there was a kitchen +window. The Professor took a small surgical saw from his case, and +handing it to me, pointed to the iron bars which guarded the window. I +attacked them at once and had very soon cut through three of them. Then +with a long, thin knife we pushed back the fastening of the sashes and +opened the window. I helped the Professor in, and followed him. There +was no one in the kitchen or in the servants’ rooms, which were close at +hand. We tried all the rooms as we went along, and in the dining-room, +dimly lit by rays of light through the shutters, found four +servant-women lying on the floor. There was no need to think them dead, +for their stertorous breathing and the acrid smell of laudanum in the +room left no doubt as to their condition. Van Helsing and I looked at +each other, and as we moved away he said: “We can attend to them later.” +Then we ascended to Lucy’s room. For an instant or two we paused at the +door to listen, but there was no sound that we could hear. With white +faces and trembling hands, we opened the door gently, and entered the +room. + +How shall I describe what we saw? On the bed lay two women, Lucy and her +mother. The latter lay farthest in, and she was covered with a white +sheet, the edge of which had been blown back by the draught through the +broken window, showing the drawn, white face, with a look of terror +fixed upon it. By her side lay Lucy, with face white and still more +drawn. The flowers which had been round her neck we found upon her +mother’s bosom, and her throat was bare, showing the two little wounds +which we had noticed before, but looking horribly white and mangled. +Without a word the Professor bent over the bed, his head almost touching +poor Lucy’s breast; then he gave a quick turn of his head, as of one who +listens, and leaping to his feet, he cried out to me:-- + +“It is not yet too late! Quick! quick! Bring the brandy!” + +I flew downstairs and returned with it, taking care to smell and taste +it, lest it, too, were drugged like the decanter of sherry which I found +on the table. The maids were still breathing, but more restlessly, and I +fancied that the narcotic was wearing off. I did not stay to make sure, +but returned to Van Helsing. He rubbed the brandy, as on another +occasion, on her lips and gums and on her wrists and the palms of her +hands. He said to me:-- + +“I can do this, all that can be at the present. You go wake those maids. +Flick them in the face with a wet towel, and flick them hard. Make them +get heat and fire and a warm bath. This poor soul is nearly as cold as +that beside her. She will need be heated before we can do anything +more.” + +I went at once, and found little difficulty in waking three of the +women. The fourth was only a young girl, and the drug had evidently +affected her more strongly, so I lifted her on the sofa and let her +sleep. The others were dazed at first, but as remembrance came back to +them they cried and sobbed in a hysterical manner. I was stern with +them, however, and would not let them talk. I told them that one life +was bad enough to lose, and that if they delayed they would sacrifice +Miss Lucy. So, sobbing and crying, they went about their way, half clad +as they were, and prepared fire and water. Fortunately, the kitchen and +boiler fires were still alive, and there was no lack of hot water. We +got a bath and carried Lucy out as she was and placed her in it. Whilst +we were busy chafing her limbs there was a knock at the hall door. One +of the maids ran off, hurried on some more clothes, and opened it. Then +she returned and whispered to us that there was a gentleman who had come +with a message from Mr. Holmwood. I bade her simply tell him that he +must wait, for we could see no one now. She went away with the message, +and, engrossed with our work, I clean forgot all about him. + +I never saw in all my experience the Professor work in such deadly +earnest. I knew--as he knew--that it was a stand-up fight with death, +and in a pause told him so. He answered me in a way that I did not +understand, but with the sternest look that his face could wear:-- + +“If that were all, I would stop here where we are now, and let her fade +away into peace, for I see no light in life over her horizon.” He went +on with his work with, if possible, renewed and more frenzied vigour. + +Presently we both began to be conscious that the heat was beginning to +be of some effect. Lucy’s heart beat a trifle more audibly to the +stethoscope, and her lungs had a perceptible movement. Van Helsing’s +face almost beamed, and as we lifted her from the bath and rolled her in +a hot sheet to dry her he said to me:-- + +“The first gain is ours! Check to the King!” + +We took Lucy into another room, which had by now been prepared, and laid +her in bed and forced a few drops of brandy down her throat. I noticed +that Van Helsing tied a soft silk handkerchief round her throat. She was +still unconscious, and was quite as bad as, if not worse than, we had +ever seen her. + +Van Helsing called in one of the women, and told her to stay with her +and not to take her eyes off her till we returned, and then beckoned me +out of the room. + +“We must consult as to what is to be done,” he said as we descended the +stairs. In the hall he opened the dining-room door, and we passed in, he +closing the door carefully behind him. The shutters had been opened, but +the blinds were already down, with that obedience to the etiquette of +death which the British woman of the lower classes always rigidly +observes. The room was, therefore, dimly dark. It was, however, light +enough for our purposes. Van Helsing’s sternness was somewhat relieved +by a look of perplexity. He was evidently torturing his mind about +something, so I waited for an instant, and he spoke:-- + +“What are we to do now? Where are we to turn for help? We must have +another transfusion of blood, and that soon, or that poor girl’s life +won’t be worth an hour’s purchase. You are exhausted already; I am +exhausted too. I fear to trust those women, even if they would have +courage to submit. What are we to do for some one who will open his +veins for her?” + +“What’s the matter with me, anyhow?” + +The voice came from the sofa across the room, and its tones brought +relief and joy to my heart, for they were those of Quincey Morris. Van +Helsing started angrily at the first sound, but his face softened and a +glad look came into his eyes as I cried out: “Quincey Morris!” and +rushed towards him with outstretched hands. + +“What brought you here?” I cried as our hands met. + +“I guess Art is the cause.” + +He handed me a telegram:-- + +“Have not heard from Seward for three days, and am terribly anxious. +Cannot leave. Father still in same condition. Send me word how Lucy is. +Do not delay.--HOLMWOOD.” + +“I think I came just in the nick of time. You know you have only to tell +me what to do.” + +Van Helsing strode forward, and took his hand, looking him straight in +the eyes as he said:-- + +“A brave man’s blood is the best thing on this earth when a woman is in +trouble. You’re a man and no mistake. Well, the devil may work against +us for all he’s worth, but God sends us men when we want them.” + +Once again we went through that ghastly operation. I have not the heart +to go through with the details. Lucy had got a terrible shock and it +told on her more than before, for though plenty of blood went into her +veins, her body did not respond to the treatment as well as on the other +occasions. Her struggle back into life was something frightful to see +and hear. However, the action of both heart and lungs improved, and Van +Helsing made a subcutaneous injection of morphia, as before, and with +good effect. Her faint became a profound slumber. The Professor watched +whilst I went downstairs with Quincey Morris, and sent one of the maids +to pay off one of the cabmen who were waiting. I left Quincey lying down +after having a glass of wine, and told the cook to get ready a good +breakfast. Then a thought struck me, and I went back to the room where +Lucy now was. When I came softly in, I found Van Helsing with a sheet or +two of note-paper in his hand. He had evidently read it, and was +thinking it over as he sat with his hand to his brow. There was a look +of grim satisfaction in his face, as of one who has had a doubt solved. +He handed me the paper saying only: “It dropped from Lucy’s breast when +we carried her to the bath.” + +When I had read it, I stood looking at the Professor, and after a pause +asked him: “In God’s name, what does it all mean? Was she, or is she, +mad; or what sort of horrible danger is it?” I was so bewildered that I +did not know what to say more. Van Helsing put out his hand and took the +paper, saying:-- + +“Do not trouble about it now. Forget it for the present. You shall know +and understand it all in good time; but it will be later. And now what +is it that you came to me to say?” This brought me back to fact, and I +was all myself again. + +“I came to speak about the certificate of death. If we do not act +properly and wisely, there may be an inquest, and that paper would have +to be produced. I am in hopes that we need have no inquest, for if we +had it would surely kill poor Lucy, if nothing else did. I know, and you +know, and the other doctor who attended her knows, that Mrs. Westenra +had disease of the heart, and we can certify that she died of it. Let us +fill up the certificate at once, and I shall take it myself to the +registrar and go on to the undertaker.” + +“Good, oh my friend John! Well thought of! Truly Miss Lucy, if she be +sad in the foes that beset her, is at least happy in the friends that +love her. One, two, three, all open their veins for her, besides one old +man. Ah yes, I know, friend John; I am not blind! I love you all the +more for it! Now go.” + +In the hall I met Quincey Morris, with a telegram for Arthur telling him +that Mrs. Westenra was dead; that Lucy also had been ill, but was now +going on better; and that Van Helsing and I were with her. I told him +where I was going, and he hurried me out, but as I was going said:-- + +“When you come back, Jack, may I have two words with you all to +ourselves?” I nodded in reply and went out. I found no difficulty about +the registration, and arranged with the local undertaker to come up in +the evening to measure for the coffin and to make arrangements. + +When I got back Quincey was waiting for me. I told him I would see him +as soon as I knew about Lucy, and went up to her room. She was still +sleeping, and the Professor seemingly had not moved from his seat at her +side. From his putting his finger to his lips, I gathered that he +expected her to wake before long and was afraid of forestalling nature. +So I went down to Quincey and took him into the breakfast-room, where +the blinds were not drawn down, and which was a little more cheerful, or +rather less cheerless, than the other rooms. When we were alone, he said +to me:-- + +“Jack Seward, I don’t want to shove myself in anywhere where I’ve no +right to be; but this is no ordinary case. You know I loved that girl +and wanted to marry her; but, although that’s all past and gone, I can’t +help feeling anxious about her all the same. What is it that’s wrong +with her? The Dutchman--and a fine old fellow he is; I can see +that--said, that time you two came into the room, that you must have +_another_ transfusion of blood, and that both you and he were exhausted. +Now I know well that you medical men speak _in camera_, and that a man +must not expect to know what they consult about in private. But this is +no common matter, and, whatever it is, I have done my part. Is not that +so?” + +“That’s so,” I said, and he went on:-- + +“I take it that both you and Van Helsing had done already what I did +to-day. Is not that so?” + +“That’s so.” + +“And I guess Art was in it too. When I saw him four days ago down at his +own place he looked queer. I have not seen anything pulled down so quick +since I was on the Pampas and had a mare that I was fond of go to grass +all in a night. One of those big bats that they call vampires had got at +her in the night, and what with his gorge and the vein left open, there +wasn’t enough blood in her to let her stand up, and I had to put a +bullet through her as she lay. Jack, if you may tell me without +betraying confidence, Arthur was the first, is not that so?” As he spoke +the poor fellow looked terribly anxious. He was in a torture of suspense +regarding the woman he loved, and his utter ignorance of the terrible +mystery which seemed to surround her intensified his pain. His very +heart was bleeding, and it took all the manhood of him--and there was a +royal lot of it, too--to keep him from breaking down. I paused before +answering, for I felt that I must not betray anything which the +Professor wished kept secret; but already he knew so much, and guessed +so much, that there could be no reason for not answering, so I answered +in the same phrase: “That’s so.” + +“And how long has this been going on?” + +“About ten days.” + +“Ten days! Then I guess, Jack Seward, that that poor pretty creature +that we all love has had put into her veins within that time the blood +of four strong men. Man alive, her whole body wouldn’t hold it.” Then, +coming close to me, he spoke in a fierce half-whisper: “What took it +out?” + +I shook my head. “That,” I said, “is the crux. Van Helsing is simply +frantic about it, and I am at my wits’ end. I can’t even hazard a guess. +There has been a series of little circumstances which have thrown out +all our calculations as to Lucy being properly watched. But these shall +not occur again. Here we stay until all be well--or ill.” Quincey held +out his hand. “Count me in,” he said. “You and the Dutchman will tell me +what to do, and I’ll do it.” + +When she woke late in the afternoon, Lucy’s first movement was to feel +in her breast, and, to my surprise, produced the paper which Van Helsing +had given me to read. The careful Professor had replaced it where it had +come from, lest on waking she should be alarmed. Her eye then lit on Van +Helsing and on me too, and gladdened. Then she looked around the room, +and seeing where she was, shuddered; she gave a loud cry, and put her +poor thin hands before her pale face. We both understood what that +meant--that she had realised to the full her mother’s death; so we tried +what we could to comfort her. Doubtless sympathy eased her somewhat, but +she was very low in thought and spirit, and wept silently and weakly for +a long time. We told her that either or both of us would now remain with +her all the time, and that seemed to comfort her. Towards dusk she fell +into a doze. Here a very odd thing occurred. Whilst still asleep she +took the paper from her breast and tore it in two. Van Helsing stepped +over and took the pieces from her. All the same, however, she went on +with the action of tearing, as though the material were still in her +hands; finally she lifted her hands and opened them as though scattering +the fragments. Van Helsing seemed surprised, and his brows gathered as +if in thought, but he said nothing. + + * * * * * + +_19 September._--All last night she slept fitfully, being always afraid +to sleep, and something weaker when she woke from it. The Professor and +I took it in turns to watch, and we never left her for a moment +unattended. Quincey Morris said nothing about his intention, but I knew +that all night long he patrolled round and round the house. + +When the day came, its searching light showed the ravages in poor Lucy’s +strength. She was hardly able to turn her head, and the little +nourishment which she could take seemed to do her no good. At times she +slept, and both Van Helsing and I noticed the difference in her, between +sleeping and waking. Whilst asleep she looked stronger, although more +haggard, and her breathing was softer; her open mouth showed the pale +gums drawn back from the teeth, which thus looked positively longer and +sharper than usual; when she woke the softness of her eyes evidently +changed the expression, for she looked her own self, although a dying +one. In the afternoon she asked for Arthur, and we telegraphed for him. +Quincey went off to meet him at the station. + +When he arrived it was nearly six o’clock, and the sun was setting full +and warm, and the red light streamed in through the window and gave more +colour to the pale cheeks. When he saw her, Arthur was simply choking +with emotion, and none of us could speak. In the hours that had passed, +the fits of sleep, or the comatose condition that passed for it, had +grown more frequent, so that the pauses when conversation was possible +were shortened. Arthur’s presence, however, seemed to act as a +stimulant; she rallied a little, and spoke to him more brightly than she +had done since we arrived. He too pulled himself together, and spoke as +cheerily as he could, so that the best was made of everything. + +It was now nearly one o’clock, and he and Van Helsing are sitting with +her. I am to relieve them in a quarter of an hour, and I am entering +this on Lucy’s phonograph. Until six o’clock they are to try to rest. I +fear that to-morrow will end our watching, for the shock has been too +great; the poor child cannot rally. God help us all. + + +_Letter, Mina Harker to Lucy Westenra._ + +(Unopened by her.) + +“_17 September._ + +“My dearest Lucy,-- + +“It seems _an age_ since I heard from you, or indeed since I wrote. You +will pardon me, I know, for all my faults when you have read all my +budget of news. Well, I got my husband back all right; when we arrived +at Exeter there was a carriage waiting for us, and in it, though he had +an attack of gout, Mr. Hawkins. He took us to his house, where there +were rooms for us all nice and comfortable, and we dined together. After +dinner Mr. Hawkins said:-- + +“‘My dears, I want to drink your health and prosperity; and may every +blessing attend you both. I know you both from children, and have, with +love and pride, seen you grow up. Now I want you to make your home here +with me. I have left to me neither chick nor child; all are gone, and in +my will I have left you everything.’ I cried, Lucy dear, as Jonathan and +the old man clasped hands. Our evening was a very, very happy one. + +“So here we are, installed in this beautiful old house, and from both my +bedroom and the drawing-room I can see the great elms of the cathedral +close, with their great black stems standing out against the old yellow +stone of the cathedral and I can hear the rooks overhead cawing and +cawing and chattering and gossiping all day, after the manner of +rooks--and humans. I am busy, I need not tell you, arranging things and +housekeeping. Jonathan and Mr. Hawkins are busy all day; for, now that +Jonathan is a partner, Mr. Hawkins wants to tell him all about the +clients. + +“How is your dear mother getting on? I wish I could run up to town for a +day or two to see you, dear, but I dare not go yet, with so much on my +shoulders; and Jonathan wants looking after still. He is beginning to +put some flesh on his bones again, but he was terribly weakened by the +long illness; even now he sometimes starts out of his sleep in a sudden +way and awakes all trembling until I can coax him back to his usual +placidity. However, thank God, these occasions grow less frequent as the +days go on, and they will in time pass away altogether, I trust. And now +I have told you my news, let me ask yours. When are you to be married, +and where, and who is to perform the ceremony, and what are you to wear, +and is it to be a public or a private wedding? Tell me all about it, +dear; tell me all about everything, for there is nothing which interests +you which will not be dear to me. Jonathan asks me to send his +‘respectful duty,’ but I do not think that is good enough from the +junior partner of the important firm Hawkins & Harker; and so, as you +love me, and he loves me, and I love you with all the moods and tenses +of the verb, I send you simply his ‘love’ instead. Good-bye, my dearest +Lucy, and all blessings on you. + +“Yours, + +“MINA HARKER.” + + +_Report from Patrick Hennessey, M. D., M. R. C. S. L. K. Q. C. P. I., +etc., etc., to John Seward, M. D._ + +“_20 September._ + +“My dear Sir,-- + +“In accordance with your wishes, I enclose report of the conditions of +everything left in my charge.... With regard to patient, Renfield, there +is more to say. He has had another outbreak, which might have had a +dreadful ending, but which, as it fortunately happened, was unattended +with any unhappy results. This afternoon a carrier’s cart with two men +made a call at the empty house whose grounds abut on ours--the house to +which, you will remember, the patient twice ran away. The men stopped at +our gate to ask the porter their way, as they were strangers. I was +myself looking out of the study window, having a smoke after dinner, and +saw one of them come up to the house. As he passed the window of +Renfield’s room, the patient began to rate him from within, and called +him all the foul names he could lay his tongue to. The man, who seemed a +decent fellow enough, contented himself by telling him to “shut up for a +foul-mouthed beggar,” whereon our man accused him of robbing him and +wanting to murder him and said that he would hinder him if he were to +swing for it. I opened the window and signed to the man not to notice, +so he contented himself after looking the place over and making up his +mind as to what kind of a place he had got to by saying: ‘Lor’ bless +yer, sir, I wouldn’t mind what was said to me in a bloomin’ madhouse. I +pity ye and the guv’nor for havin’ to live in the house with a wild +beast like that.’ Then he asked his way civilly enough, and I told him +where the gate of the empty house was; he went away, followed by threats +and curses and revilings from our man. I went down to see if I could +make out any cause for his anger, since he is usually such a +well-behaved man, and except his violent fits nothing of the kind had +ever occurred. I found him, to my astonishment, quite composed and most +genial in his manner. I tried to get him to talk of the incident, but he +blandly asked me questions as to what I meant, and led me to believe +that he was completely oblivious of the affair. It was, I am sorry to +say, however, only another instance of his cunning, for within half an +hour I heard of him again. This time he had broken out through the +window of his room, and was running down the avenue. I called to the +attendants to follow me, and ran after him, for I feared he was intent +on some mischief. My fear was justified when I saw the same cart which +had passed before coming down the road, having on it some great wooden +boxes. The men were wiping their foreheads, and were flushed in the +face, as if with violent exercise. Before I could get up to him the +patient rushed at them, and pulling one of them off the cart, began to +knock his head against the ground. If I had not seized him just at the +moment I believe he would have killed the man there and then. The other +fellow jumped down and struck him over the head with the butt-end of his +heavy whip. It was a terrible blow; but he did not seem to mind it, but +seized him also, and struggled with the three of us, pulling us to and +fro as if we were kittens. You know I am no light weight, and the others +were both burly men. At first he was silent in his fighting; but as we +began to master him, and the attendants were putting a strait-waistcoat +on him, he began to shout: ‘I’ll frustrate them! They shan’t rob me! +they shan’t murder me by inches! I’ll fight for my Lord and Master!’ and +all sorts of similar incoherent ravings. It was with very considerable +difficulty that they got him back to the house and put him in the padded +room. One of the attendants, Hardy, had a finger broken. However, I set +it all right; and he is going on well. + +“The two carriers were at first loud in their threats of actions for +damages, and promised to rain all the penalties of the law on us. Their +threats were, however, mingled with some sort of indirect apology for +the defeat of the two of them by a feeble madman. They said that if it +had not been for the way their strength had been spent in carrying and +raising the heavy boxes to the cart they would have made short work of +him. They gave as another reason for their defeat the extraordinary +state of drouth to which they had been reduced by the dusty nature of +their occupation and the reprehensible distance from the scene of their +labours of any place of public entertainment. I quite understood their +drift, and after a stiff glass of grog, or rather more of the same, and +with each a sovereign in hand, they made light of the attack, and swore +that they would encounter a worse madman any day for the pleasure of +meeting so ‘bloomin’ good a bloke’ as your correspondent. I took their +names and addresses, in case they might be needed. They are as +follows:--Jack Smollet, of Dudding’s Rents, King George’s Road, Great +Walworth, and Thomas Snelling, Peter Farley’s Row, Guide Court, Bethnal +Green. They are both in the employment of Harris & Sons, Moving and +Shipment Company, Orange Master’s Yard, Soho. + +“I shall report to you any matter of interest occurring here, and shall +wire you at once if there is anything of importance. + +“Believe me, dear Sir, + +“Yours faithfully, + +“PATRICK HENNESSEY.” + + +_Letter, Mina Harker to Lucy Westenra_. + +(Unopened by her.) + +“_18 September._ + +“My dearest Lucy,-- + +“Such a sad blow has befallen us. Mr. Hawkins has died very suddenly. +Some may not think it so sad for us, but we had both come to so love him +that it really seems as though we had lost a father. I never knew either +father or mother, so that the dear old man’s death is a real blow to me. +Jonathan is greatly distressed. It is not only that he feels sorrow, +deep sorrow, for the dear, good man who has befriended him all his life, +and now at the end has treated him like his own son and left him a +fortune which to people of our modest bringing up is wealth beyond the +dream of avarice, but Jonathan feels it on another account. He says the +amount of responsibility which it puts upon him makes him nervous. He +begins to doubt himself. I try to cheer him up, and _my_ belief in _him_ +helps him to have a belief in himself. But it is here that the grave +shock that he experienced tells upon him the most. Oh, it is too hard +that a sweet, simple, noble, strong nature such as his--a nature which +enabled him by our dear, good friend’s aid to rise from clerk to master +in a few years--should be so injured that the very essence of its +strength is gone. Forgive me, dear, if I worry you with my troubles in +the midst of your own happiness; but, Lucy dear, I must tell some one, +for the strain of keeping up a brave and cheerful appearance to Jonathan +tries me, and I have no one here that I can confide in. I dread coming +up to London, as we must do the day after to-morrow; for poor Mr. +Hawkins left in his will that he was to be buried in the grave with his +father. As there are no relations at all, Jonathan will have to be chief +mourner. I shall try to run over to see you, dearest, if only for a few +minutes. Forgive me for troubling you. With all blessings, + +“Your loving + +“MINA HARKER.” + + +_Dr. Seward’s Diary._ + +_20 September._--Only resolution and habit can let me make an entry +to-night. I am too miserable, too low-spirited, too sick of the world +and all in it, including life itself, that I would not care if I heard +this moment the flapping of the wings of the angel of death. And he has +been flapping those grim wings to some purpose of late--Lucy’s mother +and Arthur’s father, and now.... Let me get on with my work. + +I duly relieved Van Helsing in his watch over Lucy. We wanted Arthur to +go to rest also, but he refused at first. It was only when I told him +that we should want him to help us during the day, and that we must not +all break down for want of rest, lest Lucy should suffer, that he agreed +to go. Van Helsing was very kind to him. “Come, my child,” he said; +“come with me. You are sick and weak, and have had much sorrow and much +mental pain, as well as that tax on your strength that we know of. You +must not be alone; for to be alone is to be full of fears and alarms. +Come to the drawing-room, where there is a big fire, and there are two +sofas. You shall lie on one, and I on the other, and our sympathy will +be comfort to each other, even though we do not speak, and even if we +sleep.” Arthur went off with him, casting back a longing look on Lucy’s +face, which lay in her pillow, almost whiter than the lawn. She lay +quite still, and I looked round the room to see that all was as it +should be. I could see that the Professor had carried out in this room, +as in the other, his purpose of using the garlic; the whole of the +window-sashes reeked with it, and round Lucy’s neck, over the silk +handkerchief which Van Helsing made her keep on, was a rough chaplet of +the same odorous flowers. Lucy was breathing somewhat stertorously, and +her face was at its worst, for the open mouth showed the pale gums. Her +teeth, in the dim, uncertain light, seemed longer and sharper than they +had been in the morning. In particular, by some trick of the light, the +canine teeth looked longer and sharper than the rest. I sat down by her, +and presently she moved uneasily. At the same moment there came a sort +of dull flapping or buffeting at the window. I went over to it softly, +and peeped out by the corner of the blind. There was a full moonlight, +and I could see that the noise was made by a great bat, which wheeled +round--doubtless attracted by the light, although so dim--and every now +and again struck the window with its wings. When I came back to my seat, +I found that Lucy had moved slightly, and had torn away the garlic +flowers from her throat. I replaced them as well as I could, and sat +watching her. + +Presently she woke, and I gave her food, as Van Helsing had prescribed. +She took but a little, and that languidly. There did not seem to be with +her now the unconscious struggle for life and strength that had hitherto +so marked her illness. It struck me as curious that the moment she +became conscious she pressed the garlic flowers close to her. It was +certainly odd that whenever she got into that lethargic state, with the +stertorous breathing, she put the flowers from her; but that when she +waked she clutched them close. There was no possibility of making any +mistake about this, for in the long hours that followed, she had many +spells of sleeping and waking and repeated both actions many times. + +At six o’clock Van Helsing came to relieve me. Arthur had then fallen +into a doze, and he mercifully let him sleep on. When he saw Lucy’s face +I could hear the sissing indraw of his breath, and he said to me in a +sharp whisper: “Draw up the blind; I want light!” Then he bent down, +and, with his face almost touching Lucy’s, examined her carefully. He +removed the flowers and lifted the silk handkerchief from her throat. As +he did so he started back, and I could hear his ejaculation, “Mein +Gott!” as it was smothered in his throat. I bent over and looked, too, +and as I noticed some queer chill came over me. + +The wounds on the throat had absolutely disappeared. + +For fully five minutes Van Helsing stood looking at her, with his face +at its sternest. Then he turned to me and said calmly:-- + +“She is dying. It will not be long now. It will be much difference, mark +me, whether she dies conscious or in her sleep. Wake that poor boy, and +let him come and see the last; he trusts us, and we have promised him.” + +I went to the dining-room and waked him. He was dazed for a moment, but +when he saw the sunlight streaming in through the edges of the shutters +he thought he was late, and expressed his fear. I assured him that Lucy +was still asleep, but told him as gently as I could that both Van +Helsing and I feared that the end was near. He covered his face with his +hands, and slid down on his knees by the sofa, where he remained, +perhaps a minute, with his head buried, praying, whilst his shoulders +shook with grief. I took him by the hand and raised him up. “Come,” I +said, “my dear old fellow, summon all your fortitude: it will be best +and easiest for her.” + +When we came into Lucy’s room I could see that Van Helsing had, with +his usual forethought, been putting matters straight and making +everything look as pleasing as possible. He had even brushed Lucy’s +hair, so that it lay on the pillow in its usual sunny ripples. When we +came into the room she opened her eyes, and seeing him, whispered +softly:-- + +“Arthur! Oh, my love, I am so glad you have come!” He was stooping to +kiss her, when Van Helsing motioned him back. “No,” he whispered, “not +yet! Hold her hand; it will comfort her more.” + +So Arthur took her hand and knelt beside her, and she looked her best, +with all the soft lines matching the angelic beauty of her eyes. Then +gradually her eyes closed, and she sank to sleep. For a little bit her +breast heaved softly, and her breath came and went like a tired child’s. + +And then insensibly there came the strange change which I had noticed in +the night. Her breathing grew stertorous, the mouth opened, and the pale +gums, drawn back, made the teeth look longer and sharper than ever. In a +sort of sleep-waking, vague, unconscious way she opened her eyes, which +were now dull and hard at once, and said in a soft, voluptuous voice, +such as I had never heard from her lips:-- + +“Arthur! Oh, my love, I am so glad you have come! Kiss me!” Arthur bent +eagerly over to kiss her; but at that instant Van Helsing, who, like me, +had been startled by her voice, swooped upon him, and catching him by +the neck with both hands, dragged him back with a fury of strength which +I never thought he could have possessed, and actually hurled him almost +across the room. + +“Not for your life!” he said; “not for your living soul and hers!” And +he stood between them like a lion at bay. + +Arthur was so taken aback that he did not for a moment know what to do +or say; and before any impulse of violence could seize him he realised +the place and the occasion, and stood silent, waiting. + +I kept my eyes fixed on Lucy, as did Van Helsing, and we saw a spasm as +of rage flit like a shadow over her face; the sharp teeth champed +together. Then her eyes closed, and she breathed heavily. + +Very shortly after she opened her eyes in all their softness, and +putting out her poor, pale, thin hand, took Van Helsing’s great brown +one; drawing it to her, she kissed it. “My true friend,” she said, in a +faint voice, but with untellable pathos, “My true friend, and his! Oh, +guard him, and give me peace!” + +“I swear it!” he said solemnly, kneeling beside her and holding up his +hand, as one who registers an oath. Then he turned to Arthur, and said +to him: “Come, my child, take her hand in yours, and kiss her on the +forehead, and only once.” + +Their eyes met instead of their lips; and so they parted. + +Lucy’s eyes closed; and Van Helsing, who had been watching closely, took +Arthur’s arm, and drew him away. + +And then Lucy’s breathing became stertorous again, and all at once it +ceased. + +“It is all over,” said Van Helsing. “She is dead!” + +I took Arthur by the arm, and led him away to the drawing-room, where he +sat down, and covered his face with his hands, sobbing in a way that +nearly broke me down to see. + +I went back to the room, and found Van Helsing looking at poor Lucy, and +his face was sterner than ever. Some change had come over her body. +Death had given back part of her beauty, for her brow and cheeks had +recovered some of their flowing lines; even the lips had lost their +deadly pallor. It was as if the blood, no longer needed for the working +of the heart, had gone to make the harshness of death as little rude as +might be. + + “We thought her dying whilst she slept, + And sleeping when she died.” + +I stood beside Van Helsing, and said:-- + +“Ah, well, poor girl, there is peace for her at last. It is the end!” + +He turned to me, and said with grave solemnity:-- + +“Not so; alas! not so. It is only the beginning!” + +When I asked him what he meant, he only shook his head and answered:-- + +“We can do nothing as yet. Wait and see.” + + + + +CHAPTER XIII + +DR. SEWARD’S DIARY--_continued_. + + +The funeral was arranged for the next succeeding day, so that Lucy and +her mother might be buried together. I attended to all the ghastly +formalities, and the urbane undertaker proved that his staff were +afflicted--or blessed--with something of his own obsequious suavity. +Even the woman who performed the last offices for the dead remarked to +me, in a confidential, brother-professional way, when she had come out +from the death-chamber:-- + +“She makes a very beautiful corpse, sir. It’s quite a privilege to +attend on her. It’s not too much to say that she will do credit to our +establishment!” + +I noticed that Van Helsing never kept far away. This was possible from +the disordered state of things in the household. There were no relatives +at hand; and as Arthur had to be back the next day to attend at his +father’s funeral, we were unable to notify any one who should have been +bidden. Under the circumstances, Van Helsing and I took it upon +ourselves to examine papers, etc. He insisted upon looking over Lucy’s +papers himself. I asked him why, for I feared that he, being a +foreigner, might not be quite aware of English legal requirements, and +so might in ignorance make some unnecessary trouble. He answered me:-- + +“I know; I know. You forget that I am a lawyer as well as a doctor. But +this is not altogether for the law. You knew that, when you avoided the +coroner. I have more than him to avoid. There may be papers more--such +as this.” + +As he spoke he took from his pocket-book the memorandum which had been +in Lucy’s breast, and which she had torn in her sleep. + +“When you find anything of the solicitor who is for the late Mrs. +Westenra, seal all her papers, and write him to-night. For me, I watch +here in the room and in Miss Lucy’s old room all night, and I myself +search for what may be. It is not well that her very thoughts go into +the hands of strangers.” + +I went on with my part of the work, and in another half hour had found +the name and address of Mrs. Westenra’s solicitor and had written to +him. All the poor lady’s papers were in order; explicit directions +regarding the place of burial were given. I had hardly sealed the +letter, when, to my surprise, Van Helsing walked into the room, +saying:-- + +“Can I help you, friend John? I am free, and if I may, my service is to +you.” + +“Have you got what you looked for?” I asked, to which he replied:-- + +“I did not look for any specific thing. I only hoped to find, and find I +have, all that there was--only some letters and a few memoranda, and a +diary new begun. But I have them here, and we shall for the present say +nothing of them. I shall see that poor lad to-morrow evening, and, with +his sanction, I shall use some.” + +When we had finished the work in hand, he said to me:-- + +“And now, friend John, I think we may to bed. We want sleep, both you +and I, and rest to recuperate. To-morrow we shall have much to do, but +for the to-night there is no need of us. Alas!” + +Before turning in we went to look at poor Lucy. The undertaker had +certainly done his work well, for the room was turned into a small +_chapelle ardente_. There was a wilderness of beautiful white flowers, +and death was made as little repulsive as might be. The end of the +winding-sheet was laid over the face; when the Professor bent over and +turned it gently back, we both started at the beauty before us, the tall +wax candles showing a sufficient light to note it well. All Lucy’s +loveliness had come back to her in death, and the hours that had passed, +instead of leaving traces of “decay’s effacing fingers,” had but +restored the beauty of life, till positively I could not believe my eyes +that I was looking at a corpse. + +The Professor looked sternly grave. He had not loved her as I had, and +there was no need for tears in his eyes. He said to me: “Remain till I +return,” and left the room. He came back with a handful of wild garlic +from the box waiting in the hall, but which had not been opened, and +placed the flowers amongst the others on and around the bed. Then he +took from his neck, inside his collar, a little gold crucifix, and +placed it over the mouth. He restored the sheet to its place, and we +came away. + +I was undressing in my own room, when, with a premonitory tap at the +door, he entered, and at once began to speak:-- + +“To-morrow I want you to bring me, before night, a set of post-mortem +knives.” + +“Must we make an autopsy?” I asked. + +“Yes and no. I want to operate, but not as you think. Let me tell you +now, but not a word to another. I want to cut off her head and take out +her heart. Ah! you a surgeon, and so shocked! You, whom I have seen with +no tremble of hand or heart, do operations of life and death that make +the rest shudder. Oh, but I must not forget, my dear friend John, that +you loved her; and I have not forgotten it, for it is I that shall +operate, and you must only help. I would like to do it to-night, but for +Arthur I must not; he will be free after his father’s funeral to-morrow, +and he will want to see her--to see _it_. Then, when she is coffined +ready for the next day, you and I shall come when all sleep. We shall +unscrew the coffin-lid, and shall do our operation: and then replace +all, so that none know, save we alone.” + +“But why do it at all? The girl is dead. Why mutilate her poor body +without need? And if there is no necessity for a post-mortem and nothing +to gain by it--no good to her, to us, to science, to human +knowledge--why do it? Without such it is monstrous.” + +For answer he put his hand on my shoulder, and said, with infinite +tenderness:-- + +“Friend John, I pity your poor bleeding heart; and I love you the more +because it does so bleed. If I could, I would take on myself the burden +that you do bear. But there are things that you know not, but that you +shall know, and bless me for knowing, though they are not pleasant +things. John, my child, you have been my friend now many years, and yet +did you ever know me to do any without good cause? I may err--I am but +man; but I believe in all I do. Was it not for these causes that you +send for me when the great trouble came? Yes! Were you not amazed, nay +horrified, when I would not let Arthur kiss his love--though she was +dying--and snatched him away by all my strength? Yes! And yet you saw +how she thanked me, with her so beautiful dying eyes, her voice, too, so +weak, and she kiss my rough old hand and bless me? Yes! And did you not +hear me swear promise to her, that so she closed her eyes grateful? Yes! + +“Well, I have good reason now for all I want to do. You have for many +years trust me; you have believe me weeks past, when there be things so +strange that you might have well doubt. Believe me yet a little, friend +John. If you trust me not, then I must tell what I think; and that is +not perhaps well. And if I work--as work I shall, no matter trust or no +trust--without my friend trust in me, I work with heavy heart and feel, +oh! so lonely when I want all help and courage that may be!” He paused a +moment and went on solemnly: “Friend John, there are strange and +terrible days before us. Let us not be two, but one, that so we work to +a good end. Will you not have faith in me?” + +I took his hand, and promised him. I held my door open as he went away, +and watched him go into his room and close the door. As I stood without +moving, I saw one of the maids pass silently along the passage--she had +her back towards me, so did not see me--and go into the room where Lucy +lay. The sight touched me. Devotion is so rare, and we are so grateful +to those who show it unasked to those we love. Here was a poor girl +putting aside the terrors which she naturally had of death to go watch +alone by the bier of the mistress whom she loved, so that the poor clay +might not be lonely till laid to eternal rest.... + + * * * * * + +I must have slept long and soundly, for it was broad daylight when Van +Helsing waked me by coming into my room. He came over to my bedside and +said:-- + +“You need not trouble about the knives; we shall not do it.” + +“Why not?” I asked. For his solemnity of the night before had greatly +impressed me. + +“Because,” he said sternly, “it is too late--or too early. See!” Here he +held up the little golden crucifix. “This was stolen in the night.” + +“How, stolen,” I asked in wonder, “since you have it now?” + +“Because I get it back from the worthless wretch who stole it, from the +woman who robbed the dead and the living. Her punishment will surely +come, but not through me; she knew not altogether what she did and thus +unknowing, she only stole. Now we must wait.” + +He went away on the word, leaving me with a new mystery to think of, a +new puzzle to grapple with. + +The forenoon was a dreary time, but at noon the solicitor came: Mr. +Marquand, of Wholeman, Sons, Marquand & Lidderdale. He was very genial +and very appreciative of what we had done, and took off our hands all +cares as to details. During lunch he told us that Mrs. Westenra had for +some time expected sudden death from her heart, and had put her affairs +in absolute order; he informed us that, with the exception of a certain +entailed property of Lucy’s father’s which now, in default of direct +issue, went back to a distant branch of the family, the whole estate, +real and personal, was left absolutely to Arthur Holmwood. When he had +told us so much he went on:-- + +“Frankly we did our best to prevent such a testamentary disposition, and +pointed out certain contingencies that might leave her daughter either +penniless or not so free as she should be to act regarding a matrimonial +alliance. Indeed, we pressed the matter so far that we almost came into +collision, for she asked us if we were or were not prepared to carry out +her wishes. Of course, we had then no alternative but to accept. We were +right in principle, and ninety-nine times out of a hundred we should +have proved, by the logic of events, the accuracy of our judgment. +Frankly, however, I must admit that in this case any other form of +disposition would have rendered impossible the carrying out of her +wishes. For by her predeceasing her daughter the latter would have come +into possession of the property, and, even had she only survived her +mother by five minutes, her property would, in case there were no +will--and a will was a practical impossibility in such a case--have been +treated at her decease as under intestacy. In which case Lord Godalming, +though so dear a friend, would have had no claim in the world; and the +inheritors, being remote, would not be likely to abandon their just +rights, for sentimental reasons regarding an entire stranger. I assure +you, my dear sirs, I am rejoiced at the result, perfectly rejoiced.” + +He was a good fellow, but his rejoicing at the one little part--in which +he was officially interested--of so great a tragedy, was an +object-lesson in the limitations of sympathetic understanding. + +He did not remain long, but said he would look in later in the day and +see Lord Godalming. His coming, however, had been a certain comfort to +us, since it assured us that we should not have to dread hostile +criticism as to any of our acts. Arthur was expected at five o’clock, so +a little before that time we visited the death-chamber. It was so in +very truth, for now both mother and daughter lay in it. The undertaker, +true to his craft, had made the best display he could of his goods, and +there was a mortuary air about the place that lowered our spirits at +once. Van Helsing ordered the former arrangement to be adhered to, +explaining that, as Lord Godalming was coming very soon, it would be +less harrowing to his feelings to see all that was left of his _fiancée_ +quite alone. The undertaker seemed shocked at his own stupidity and +exerted himself to restore things to the condition in which we left them +the night before, so that when Arthur came such shocks to his feelings +as we could avoid were saved. + +Poor fellow! He looked desperately sad and broken; even his stalwart +manhood seemed to have shrunk somewhat under the strain of his +much-tried emotions. He had, I knew, been very genuinely and devotedly +attached to his father; and to lose him, and at such a time, was a +bitter blow to him. With me he was warm as ever, and to Van Helsing he +was sweetly courteous; but I could not help seeing that there was some +constraint with him. The Professor noticed it, too, and motioned me to +bring him upstairs. I did so, and left him at the door of the room, as I +felt he would like to be quite alone with her, but he took my arm and +led me in, saying huskily:-- + +“You loved her too, old fellow; she told me all about it, and there was +no friend had a closer place in her heart than you. I don’t know how to +thank you for all you have done for her. I can’t think yet....” + +Here he suddenly broke down, and threw his arms round my shoulders and +laid his head on my breast, crying:-- + +“Oh, Jack! Jack! What shall I do! The whole of life seems gone from me +all at once, and there is nothing in the wide world for me to live for.” + +I comforted him as well as I could. In such cases men do not need much +expression. A grip of the hand, the tightening of an arm over the +shoulder, a sob in unison, are expressions of sympathy dear to a man’s +heart. I stood still and silent till his sobs died away, and then I said +softly to him:-- + +“Come and look at her.” + +Together we moved over to the bed, and I lifted the lawn from her face. +God! how beautiful she was. Every hour seemed to be enhancing her +loveliness. It frightened and amazed me somewhat; and as for Arthur, he +fell a-trembling, and finally was shaken with doubt as with an ague. At +last, after a long pause, he said to me in a faint whisper:-- + +“Jack, is she really dead?” + +I assured him sadly that it was so, and went on to suggest--for I felt +that such a horrible doubt should not have life for a moment longer than +I could help--that it often happened that after death faces became +softened and even resolved into their youthful beauty; that this was +especially so when death had been preceded by any acute or prolonged +suffering. It seemed to quite do away with any doubt, and, after +kneeling beside the couch for a while and looking at her lovingly and +long, he turned aside. I told him that that must be good-bye, as the +coffin had to be prepared; so he went back and took her dead hand in his +and kissed it, and bent over and kissed her forehead. He came away, +fondly looking back over his shoulder at her as he came. + +I left him in the drawing-room, and told Van Helsing that he had said +good-bye; so the latter went to the kitchen to tell the undertaker’s men +to proceed with the preparations and to screw up the coffin. When he +came out of the room again I told him of Arthur’s question, and he +replied:-- + +“I am not surprised. Just now I doubted for a moment myself!” + +We all dined together, and I could see that poor Art was trying to make +the best of things. Van Helsing had been silent all dinner-time; but +when we had lit our cigars he said-- + +“Lord----”; but Arthur interrupted him:-- + +“No, no, not that, for God’s sake! not yet at any rate. Forgive me, sir: +I did not mean to speak offensively; it is only because my loss is so +recent.” + +The Professor answered very sweetly:-- + +“I only used that name because I was in doubt. I must not call you +‘Mr.,’ and I have grown to love you--yes, my dear boy, to love you--as +Arthur.” + +Arthur held out his hand, and took the old man’s warmly. + +“Call me what you will,” he said. “I hope I may always have the title of +a friend. And let me say that I am at a loss for words to thank you for +your goodness to my poor dear.” He paused a moment, and went on: “I know +that she understood your goodness even better than I do; and if I was +rude or in any way wanting at that time you acted so--you remember”--the +Professor nodded--“you must forgive me.” + +He answered with a grave kindness:-- + +“I know it was hard for you to quite trust me then, for to trust such +violence needs to understand; and I take it that you do not--that you +cannot--trust me now, for you do not yet understand. And there may be +more times when I shall want you to trust when you cannot--and may +not--and must not yet understand. But the time will come when your trust +shall be whole and complete in me, and when you shall understand as +though the sunlight himself shone through. Then you shall bless me from +first to last for your own sake, and for the sake of others and for her +dear sake to whom I swore to protect.” + +“And, indeed, indeed, sir,” said Arthur warmly, “I shall in all ways +trust you. I know and believe you have a very noble heart, and you are +Jack’s friend, and you were hers. You shall do what you like.” + +The Professor cleared his throat a couple of times, as though about to +speak, and finally said:-- + +“May I ask you something now?” + +“Certainly.” + +“You know that Mrs. Westenra left you all her property?” + +“No, poor dear; I never thought of it.” + +“And as it is all yours, you have a right to deal with it as you will. I +want you to give me permission to read all Miss Lucy’s papers and +letters. Believe me, it is no idle curiosity. I have a motive of which, +be sure, she would have approved. I have them all here. I took them +before we knew that all was yours, so that no strange hand might touch +them--no strange eye look through words into her soul. I shall keep +them, if I may; even you may not see them yet, but I shall keep them +safe. No word shall be lost; and in the good time I shall give them back +to you. It’s a hard thing I ask, but you will do it, will you not, for +Lucy’s sake?” + +Arthur spoke out heartily, like his old self:-- + +“Dr. Van Helsing, you may do what you will. I feel that in saying this I +am doing what my dear one would have approved. I shall not trouble you +with questions till the time comes.” + +The old Professor stood up as he said solemnly:-- + +“And you are right. There will be pain for us all; but it will not be +all pain, nor will this pain be the last. We and you too--you most of +all, my dear boy--will have to pass through the bitter water before we +reach the sweet. But we must be brave of heart and unselfish, and do our +duty, and all will be well!” + +I slept on a sofa in Arthur’s room that night. Van Helsing did not go to +bed at all. He went to and fro, as if patrolling the house, and was +never out of sight of the room where Lucy lay in her coffin, strewn with +the wild garlic flowers, which sent, through the odour of lily and rose, +a heavy, overpowering smell into the night. + + +_Mina Harker’s Journal._ + +_22 September._--In the train to Exeter. Jonathan sleeping. + +It seems only yesterday that the last entry was made, and yet how much +between then, in Whitby and all the world before me, Jonathan away and +no news of him; and now, married to Jonathan, Jonathan a solicitor, a +partner, rich, master of his business, Mr. Hawkins dead and buried, and +Jonathan with another attack that may harm him. Some day he may ask me +about it. Down it all goes. I am rusty in my shorthand--see what +unexpected prosperity does for us--so it may be as well to freshen it up +again with an exercise anyhow.... + +The service was very simple and very solemn. There were only ourselves +and the servants there, one or two old friends of his from Exeter, his +London agent, and a gentleman representing Sir John Paxton, the +President of the Incorporated Law Society. Jonathan and I stood hand in +hand, and we felt that our best and dearest friend was gone from us.... + +We came back to town quietly, taking a ’bus to Hyde Park Corner. +Jonathan thought it would interest me to go into the Row for a while, so +we sat down; but there were very few people there, and it was +sad-looking and desolate to see so many empty chairs. It made us think +of the empty chair at home; so we got up and walked down Piccadilly. +Jonathan was holding me by the arm, the way he used to in old days +before I went to school. I felt it very improper, for you can’t go on +for some years teaching etiquette and decorum to other girls without the +pedantry of it biting into yourself a bit; but it was Jonathan, and he +was my husband, and we didn’t know anybody who saw us--and we didn’t +care if they did--so on we walked. I was looking at a very beautiful +girl, in a big cart-wheel hat, sitting in a victoria outside Guiliano’s, +when I felt Jonathan clutch my arm so tight that he hurt me, and he said +under his breath: “My God!” I am always anxious about Jonathan, for I +fear that some nervous fit may upset him again; so I turned to him +quickly, and asked him what it was that disturbed him. + +He was very pale, and his eyes seemed bulging out as, half in terror and +half in amazement, he gazed at a tall, thin man, with a beaky nose and +black moustache and pointed beard, who was also observing the pretty +girl. He was looking at her so hard that he did not see either of us, +and so I had a good view of him. His face was not a good face; it was +hard, and cruel, and sensual, and his big white teeth, that looked all +the whiter because his lips were so red, were pointed like an animal’s. +Jonathan kept staring at him, till I was afraid he would notice. I +feared he might take it ill, he looked so fierce and nasty. I asked +Jonathan why he was disturbed, and he answered, evidently thinking that +I knew as much about it as he did: “Do you see who it is?” + +“No, dear,” I said; “I don’t know him; who is it?” His answer seemed to +shock and thrill me, for it was said as if he did not know that it was +to me, Mina, to whom he was speaking:-- + +“It is the man himself!” + +The poor dear was evidently terrified at something--very greatly +terrified; I do believe that if he had not had me to lean on and to +support him he would have sunk down. He kept staring; a man came out of +the shop with a small parcel, and gave it to the lady, who then drove +off. The dark man kept his eyes fixed on her, and when the carriage +moved up Piccadilly he followed in the same direction, and hailed a +hansom. Jonathan kept looking after him, and said, as if to himself:-- + +“I believe it is the Count, but he has grown young. My God, if this be +so! Oh, my God! my God! If I only knew! if I only knew!” He was +distressing himself so much that I feared to keep his mind on the +subject by asking him any questions, so I remained silent. I drew him +away quietly, and he, holding my arm, came easily. We walked a little +further, and then went in and sat for a while in the Green Park. It was +a hot day for autumn, and there was a comfortable seat in a shady place. +After a few minutes’ staring at nothing, Jonathan’s eyes closed, and he +went quietly into a sleep, with his head on my shoulder. I thought it +was the best thing for him, so did not disturb him. In about twenty +minutes he woke up, and said to me quite cheerfully:-- + +“Why, Mina, have I been asleep! Oh, do forgive me for being so rude. +Come, and we’ll have a cup of tea somewhere.” He had evidently forgotten +all about the dark stranger, as in his illness he had forgotten all that +this episode had reminded him of. I don’t like this lapsing into +forgetfulness; it may make or continue some injury to the brain. I must +not ask him, for fear I shall do more harm than good; but I must somehow +learn the facts of his journey abroad. The time is come, I fear, when I +must open that parcel, and know what is written. Oh, Jonathan, you will, +I know, forgive me if I do wrong, but it is for your own dear sake. + + * * * * * + +_Later._--A sad home-coming in every way--the house empty of the dear +soul who was so good to us; Jonathan still pale and dizzy under a slight +relapse of his malady; and now a telegram from Van Helsing, whoever he +may be:-- + +“You will be grieved to hear that Mrs. Westenra died five days ago, and +that Lucy died the day before yesterday. They were both buried to-day.” + +Oh, what a wealth of sorrow in a few words! Poor Mrs. Westenra! poor +Lucy! Gone, gone, never to return to us! And poor, poor Arthur, to have +lost such sweetness out of his life! God help us all to bear our +troubles. + + +_Dr. Seward’s Diary._ + +_22 September._--It is all over. Arthur has gone back to Ring, and has +taken Quincey Morris with him. What a fine fellow is Quincey! I believe +in my heart of hearts that he suffered as much about Lucy’s death as any +of us; but he bore himself through it like a moral Viking. If America +can go on breeding men like that, she will be a power in the world +indeed. Van Helsing is lying down, having a rest preparatory to his +journey. He goes over to Amsterdam to-night, but says he returns +to-morrow night; that he only wants to make some arrangements which can +only be made personally. He is to stop with me then, if he can; he says +he has work to do in London which may take him some time. Poor old +fellow! I fear that the strain of the past week has broken down even his +iron strength. All the time of the burial he was, I could see, putting +some terrible restraint on himself. When it was all over, we were +standing beside Arthur, who, poor fellow, was speaking of his part in +the operation where his blood had been transfused to his Lucy’s veins; I +could see Van Helsing’s face grow white and purple by turns. Arthur was +saying that he felt since then as if they two had been really married +and that she was his wife in the sight of God. None of us said a word of +the other operations, and none of us ever shall. Arthur and Quincey went +away together to the station, and Van Helsing and I came on here. The +moment we were alone in the carriage he gave way to a regular fit of +hysterics. He has denied to me since that it was hysterics, and insisted +that it was only his sense of humour asserting itself under very +terrible conditions. He laughed till he cried, and I had to draw down +the blinds lest any one should see us and misjudge; and then he cried, +till he laughed again; and laughed and cried together, just as a woman +does. I tried to be stern with him, as one is to a woman under the +circumstances; but it had no effect. Men and women are so different in +manifestations of nervous strength or weakness! Then when his face grew +grave and stern again I asked him why his mirth, and why at such a time. +His reply was in a way characteristic of him, for it was logical and +forceful and mysterious. He said:-- + +“Ah, you don’t comprehend, friend John. Do not think that I am not sad, +though I laugh. See, I have cried even when the laugh did choke me. But +no more think that I am all sorry when I cry, for the laugh he come +just the same. Keep it always with you that laughter who knock at your +door and say, ‘May I come in?’ is not the true laughter. No! he is a +king, and he come when and how he like. He ask no person; he choose no +time of suitability. He say, ‘I am here.’ Behold, in example I grieve my +heart out for that so sweet young girl; I give my blood for her, though +I am old and worn; I give my time, my skill, my sleep; I let my other +sufferers want that so she may have all. And yet I can laugh at her very +grave--laugh when the clay from the spade of the sexton drop upon her +coffin and say ‘Thud! thud!’ to my heart, till it send back the blood +from my cheek. My heart bleed for that poor boy--that dear boy, so of +the age of mine own boy had I been so blessed that he live, and with his +hair and eyes the same. There, you know now why I love him so. And yet +when he say things that touch my husband-heart to the quick, and make my +father-heart yearn to him as to no other man--not even to you, friend +John, for we are more level in experiences than father and son--yet even +at such moment King Laugh he come to me and shout and bellow in my ear, +‘Here I am! here I am!’ till the blood come dance back and bring some of +the sunshine that he carry with him to my cheek. Oh, friend John, it is +a strange world, a sad world, a world full of miseries, and woes, and +troubles; and yet when King Laugh come he make them all dance to the +tune he play. Bleeding hearts, and dry bones of the churchyard, and +tears that burn as they fall--all dance together to the music that he +make with that smileless mouth of him. And believe me, friend John, that +he is good to come, and kind. Ah, we men and women are like ropes drawn +tight with strain that pull us different ways. Then tears come; and, +like the rain on the ropes, they brace us up, until perhaps the strain +become too great, and we break. But King Laugh he come like the +sunshine, and he ease off the strain again; and we bear to go on with +our labour, what it may be.” + +I did not like to wound him by pretending not to see his idea; but, as I +did not yet understand the cause of his laughter, I asked him. As he +answered me his face grew stern, and he said in quite a different +tone:-- + +“Oh, it was the grim irony of it all--this so lovely lady garlanded with +flowers, that looked so fair as life, till one by one we wondered if she +were truly dead; she laid in that so fine marble house in that lonely +churchyard, where rest so many of her kin, laid there with the mother +who loved her, and whom she loved; and that sacred bell going ‘Toll! +toll! toll!’ so sad and slow; and those holy men, with the white +garments of the angel, pretending to read books, and yet all the time +their eyes never on the page; and all of us with the bowed head. And all +for what? She is dead; so! Is it not?” + +“Well, for the life of me, Professor,” I said, “I can’t see anything to +laugh at in all that. Why, your explanation makes it a harder puzzle +than before. But even if the burial service was comic, what about poor +Art and his trouble? Why, his heart was simply breaking.” + +“Just so. Said he not that the transfusion of his blood to her veins had +made her truly his bride?” + +“Yes, and it was a sweet and comforting idea for him.” + +“Quite so. But there was a difficulty, friend John. If so that, then +what about the others? Ho, ho! Then this so sweet maid is a polyandrist, +and me, with my poor wife dead to me, but alive by Church’s law, though +no wits, all gone--even I, who am faithful husband to this now-no-wife, +am bigamist.” + +“I don’t see where the joke comes in there either!” I said; and I did +not feel particularly pleased with him for saying such things. He laid +his hand on my arm, and said:-- + +“Friend John, forgive me if I pain. I showed not my feeling to others +when it would wound, but only to you, my old friend, whom I can trust. +If you could have looked into my very heart then when I want to laugh; +if you could have done so when the laugh arrived; if you could do so +now, when King Laugh have pack up his crown, and all that is to him--for +he go far, far away from me, and for a long, long time--maybe you would +perhaps pity me the most of all.” + +I was touched by the tenderness of his tone, and asked why. + +“Because I know!” + +And now we are all scattered; and for many a long day loneliness will +sit over our roofs with brooding wings. Lucy lies in the tomb of her +kin, a lordly death-house in a lonely churchyard, away from teeming +London; where the air is fresh, and the sun rises over Hampstead Hill, +and where wild flowers grow of their own accord. + +So I can finish this diary; and God only knows if I shall ever begin +another. If I do, or if I even open this again, it will be to deal with +different people and different themes; for here at the end, where the +romance of my life is told, ere I go back to take up the thread of my +life-work, I say sadly and without hope, + + “FINIS.” + + +_“The Westminster Gazette,” 25 September._ + + A HAMPSTEAD MYSTERY. + + +The neighbourhood of Hampstead is just at present exercised with a +series of events which seem to run on lines parallel to those of what +was known to the writers of headlines as “The Kensington Horror,” or +“The Stabbing Woman,” or “The Woman in Black.” During the past two or +three days several cases have occurred of young children straying from +home or neglecting to return from their playing on the Heath. In all +these cases the children were too young to give any properly +intelligible account of themselves, but the consensus of their excuses +is that they had been with a “bloofer lady.” It has always been late in +the evening when they have been missed, and on two occasions the +children have not been found until early in the following morning. It is +generally supposed in the neighbourhood that, as the first child missed +gave as his reason for being away that a “bloofer lady” had asked him to +come for a walk, the others had picked up the phrase and used it as +occasion served. This is the more natural as the favourite game of the +little ones at present is luring each other away by wiles. A +correspondent writes us that to see some of the tiny tots pretending to +be the “bloofer lady” is supremely funny. Some of our caricaturists +might, he says, take a lesson in the irony of grotesque by comparing the +reality and the picture. It is only in accordance with general +principles of human nature that the “bloofer lady” should be the popular +rôle at these _al fresco_ performances. Our correspondent naïvely says +that even Ellen Terry could not be so winningly attractive as some of +these grubby-faced little children pretend--and even imagine +themselves--to be. + +There is, however, possibly a serious side to the question, for some of +the children, indeed all who have been missed at night, have been +slightly torn or wounded in the throat. The wounds seem such as might be +made by a rat or a small dog, and although of not much importance +individually, would tend to show that whatever animal inflicts them has +a system or method of its own. The police of the division have been +instructed to keep a sharp look-out for straying children, especially +when very young, in and around Hampstead Heath, and for any stray dog +which may be about. + + + _“The Westminster Gazette,” 25 September._ + + _Extra Special._ + + THE HAMPSTEAD HORROR. + + ANOTHER CHILD INJURED. + + _The “Bloofer Lady.”_ + +We have just received intelligence that another child, missed last +night, was only discovered late in the morning under a furze bush at the +Shooter’s Hill side of Hampstead Heath, which is, perhaps, less +frequented than the other parts. It has the same tiny wound in the +throat as has been noticed in other cases. It was terribly weak, and +looked quite emaciated. It too, when partially restored, had the common +story to tell of being lured away by the “bloofer lady.” + + + + +CHAPTER XIV + +MINA HARKER’S JOURNAL + + +_23 September_.--Jonathan is better after a bad night. I am so glad that +he has plenty of work to do, for that keeps his mind off the terrible +things; and oh, I am rejoiced that he is not now weighed down with the +responsibility of his new position. I knew he would be true to himself, +and now how proud I am to see my Jonathan rising to the height of his +advancement and keeping pace in all ways with the duties that come upon +him. He will be away all day till late, for he said he could not lunch +at home. My household work is done, so I shall take his foreign journal, +and lock myself up in my room and read it.... + + +_24 September_.--I hadn’t the heart to write last night; that terrible +record of Jonathan’s upset me so. Poor dear! How he must have suffered, +whether it be true or only imagination. I wonder if there is any truth +in it at all. Did he get his brain fever, and then write all those +terrible things, or had he some cause for it all? I suppose I shall +never know, for I dare not open the subject to him.... And yet that man +we saw yesterday! He seemed quite certain of him.... Poor fellow! I +suppose it was the funeral upset him and sent his mind back on some +train of thought.... He believes it all himself. I remember how on our +wedding-day he said: “Unless some solemn duty come upon me to go back to +the bitter hours, asleep or awake, mad or sane.” There seems to be +through it all some thread of continuity.... That fearful Count was +coming to London.... If it should be, and he came to London, with his +teeming millions.... There may be a solemn duty; and if it come we must +not shrink from it.... I shall be prepared. I shall get my typewriter +this very hour and begin transcribing. Then we shall be ready for other +eyes if required. And if it be wanted; then, perhaps, if I am ready, +poor Jonathan may not be upset, for I can speak for him and never let +him be troubled or worried with it at all. If ever Jonathan quite gets +over the nervousness he may want to tell me of it all, and I can ask him +questions and find out things, and see how I may comfort him. + + +_Letter, Van Helsing to Mrs. Harker._ + +“_24 September._ + +(_Confidence_) + +“Dear Madam,-- + +“I pray you to pardon my writing, in that I am so far friend as that I +sent to you sad news of Miss Lucy Westenra’s death. By the kindness of +Lord Godalming, I am empowered to read her letters and papers, for I am +deeply concerned about certain matters vitally important. In them I find +some letters from you, which show how great friends you were and how you +love her. Oh, Madam Mina, by that love, I implore you, help me. It is +for others’ good that I ask--to redress great wrong, and to lift much +and terrible troubles--that may be more great than you can know. May it +be that I see you? You can trust me. I am friend of Dr. John Seward and +of Lord Godalming (that was Arthur of Miss Lucy). I must keep it private +for the present from all. I should come to Exeter to see you at once if +you tell me I am privilege to come, and where and when. I implore your +pardon, madam. I have read your letters to poor Lucy, and know how good +you are and how your husband suffer; so I pray you, if it may be, +enlighten him not, lest it may harm. Again your pardon, and forgive me. + +“VAN HELSING.” + + +_Telegram, Mrs. Harker to Van Helsing._ + +“_25 September._--Come to-day by quarter-past ten train if you can catch +it. Can see you any time you call. + +“WILHELMINA HARKER.” + +MINA HARKER’S JOURNAL. + +_25 September._--I cannot help feeling terribly excited as the time +draws near for the visit of Dr. Van Helsing, for somehow I expect that +it will throw some light upon Jonathan’s sad experience; and as he +attended poor dear Lucy in her last illness, he can tell me all about +her. That is the reason of his coming; it is concerning Lucy and her +sleep-walking, and not about Jonathan. Then I shall never know the real +truth now! How silly I am. That awful journal gets hold of my +imagination and tinges everything with something of its own colour. Of +course it is about Lucy. That habit came back to the poor dear, and that +awful night on the cliff must have made her ill. I had almost forgotten +in my own affairs how ill she was afterwards. She must have told him +of her sleep-walking adventure on the cliff, and that I knew all about +it; and now he wants me to tell him what she knows, so that he may +understand. I hope I did right in not saying anything of it to Mrs. +Westenra; I should never forgive myself if any act of mine, were it even +a negative one, brought harm on poor dear Lucy. I hope, too, Dr. Van +Helsing will not blame me; I have had so much trouble and anxiety of +late that I feel I cannot bear more just at present. + +I suppose a cry does us all good at times--clears the air as other rain +does. Perhaps it was reading the journal yesterday that upset me, and +then Jonathan went away this morning to stay away from me a whole day +and night, the first time we have been parted since our marriage. I do +hope the dear fellow will take care of himself, and that nothing will +occur to upset him. It is two o’clock, and the doctor will be here soon +now. I shall say nothing of Jonathan’s journal unless he asks me. I am +so glad I have type-written out my own journal, so that, in case he asks +about Lucy, I can hand it to him; it will save much questioning. + + * * * * * + +_Later._--He has come and gone. Oh, what a strange meeting, and how it +all makes my head whirl round! I feel like one in a dream. Can it be all +possible, or even a part of it? If I had not read Jonathan’s journal +first, I should never have accepted even a possibility. Poor, poor, dear +Jonathan! How he must have suffered. Please the good God, all this may +not upset him again. I shall try to save him from it; but it may be even +a consolation and a help to him--terrible though it be and awful in its +consequences--to know for certain that his eyes and ears and brain did +not deceive him, and that it is all true. It may be that it is the doubt +which haunts him; that when the doubt is removed, no matter +which--waking or dreaming--may prove the truth, he will be more +satisfied and better able to bear the shock. Dr. Van Helsing must be a +good man as well as a clever one if he is Arthur’s friend and Dr. +Seward’s, and if they brought him all the way from Holland to look after +Lucy. I feel from having seen him that he _is_ good and kind and of a +noble nature. When he comes to-morrow I shall ask him about Jonathan; +and then, please God, all this sorrow and anxiety may lead to a good +end. I used to think I would like to practise interviewing; Jonathan’s +friend on “The Exeter News” told him that memory was everything in such +work--that you must be able to put down exactly almost every word +spoken, even if you had to refine some of it afterwards. Here was a rare +interview; I shall try to record it _verbatim_. + +It was half-past two o’clock when the knock came. I took my courage _à +deux mains_ and waited. In a few minutes Mary opened the door, and +announced “Dr. Van Helsing.” + +I rose and bowed, and he came towards me; a man of medium weight, +strongly built, with his shoulders set back over a broad, deep chest and +a neck well balanced on the trunk as the head is on the neck. The poise +of the head strikes one at once as indicative of thought and power; the +head is noble, well-sized, broad, and large behind the ears. The face, +clean-shaven, shows a hard, square chin, a large, resolute, mobile +mouth, a good-sized nose, rather straight, but with quick, sensitive +nostrils, that seem to broaden as the big, bushy brows come down and the +mouth tightens. The forehead is broad and fine, rising at first almost +straight and then sloping back above two bumps or ridges wide apart; +such a forehead that the reddish hair cannot possibly tumble over it, +but falls naturally back and to the sides. Big, dark blue eyes are set +widely apart, and are quick and tender or stern with the man’s moods. He +said to me:-- + +“Mrs. Harker, is it not?” I bowed assent. + +“That was Miss Mina Murray?” Again I assented. + +“It is Mina Murray that I came to see that was friend of that poor dear +child Lucy Westenra. Madam Mina, it is on account of the dead I come.” + +“Sir,” I said, “you could have no better claim on me than that you were +a friend and helper of Lucy Westenra.” And I held out my hand. He took +it and said tenderly:-- + +“Oh, Madam Mina, I knew that the friend of that poor lily girl must be +good, but I had yet to learn----” He finished his speech with a courtly +bow. I asked him what it was that he wanted to see me about, so he at +once began:-- + +“I have read your letters to Miss Lucy. Forgive me, but I had to begin +to inquire somewhere, and there was none to ask. I know that you were +with her at Whitby. She sometimes kept a diary--you need not look +surprised, Madam Mina; it was begun after you had left, and was in +imitation of you--and in that diary she traces by inference certain +things to a sleep-walking in which she puts down that you saved her. In +great perplexity then I come to you, and ask you out of your so much +kindness to tell me all of it that you can remember.” + +“I can tell you, I think, Dr. Van Helsing, all about it.” + +“Ah, then you have good memory for facts, for details? It is not always +so with young ladies.” + +“No, doctor, but I wrote it all down at the time. I can show it to you +if you like.” + +“Oh, Madam Mina, I will be grateful; you will do me much favour.” I +could not resist the temptation of mystifying him a bit--I suppose it is +some of the taste of the original apple that remains still in our +mouths--so I handed him the shorthand diary. He took it with a grateful +bow, and said:-- + +“May I read it?” + +“If you wish,” I answered as demurely as I could. He opened it, and for +an instant his face fell. Then he stood up and bowed. + +“Oh, you so clever woman!” he said. “I knew long that Mr. Jonathan was a +man of much thankfulness; but see, his wife have all the good things. +And will you not so much honour me and so help me as to read it for me? +Alas! I know not the shorthand.” By this time my little joke was over, +and I was almost ashamed; so I took the typewritten copy from my +workbasket and handed it to him. + +“Forgive me,” I said: “I could not help it; but I had been thinking that +it was of dear Lucy that you wished to ask, and so that you might not +have time to wait--not on my account, but because I know your time must +be precious--I have written it out on the typewriter for you.” + +He took it and his eyes glistened. “You are so good,” he said. “And may +I read it now? I may want to ask you some things when I have read.” + +“By all means,” I said, “read it over whilst I order lunch; and then you +can ask me questions whilst we eat.” He bowed and settled himself in a +chair with his back to the light, and became absorbed in the papers, +whilst I went to see after lunch chiefly in order that he might not be +disturbed. When I came back, I found him walking hurriedly up and down +the room, his face all ablaze with excitement. He rushed up to me and +took me by both hands. + +“Oh, Madam Mina,” he said, “how can I say what I owe to you? This paper +is as sunshine. It opens the gate to me. I am daze, I am dazzle, with so +much light, and yet clouds roll in behind the light every time. But that +you do not, cannot, comprehend. Oh, but I am grateful to you, you so +clever woman. Madam”--he said this very solemnly--“if ever Abraham Van +Helsing can do anything for you or yours, I trust you will let me know. +It will be pleasure and delight if I may serve you as a friend; as a +friend, but all I have ever learned, all I can ever do, shall be for you +and those you love. There are darknesses in life, and there are lights; +you are one of the lights. You will have happy life and good life, and +your husband will be blessed in you.” + +“But, doctor, you praise me too much, and--and you do not know me.” + +“Not know you--I, who am old, and who have studied all my life men and +women; I, who have made my specialty the brain and all that belongs to +him and all that follow from him! And I have read your diary that you +have so goodly written for me, and which breathes out truth in every +line. I, who have read your so sweet letter to poor Lucy of your +marriage and your trust, not know you! Oh, Madam Mina, good women tell +all their lives, and by day and by hour and by minute, such things that +angels can read; and we men who wish to know have in us something of +angels’ eyes. Your husband is noble nature, and you are noble too, for +you trust, and trust cannot be where there is mean nature. And your +husband--tell me of him. Is he quite well? Is all that fever gone, and +is he strong and hearty?” I saw here an opening to ask him about +Jonathan, so I said:-- + +“He was almost recovered, but he has been greatly upset by Mr. Hawkins’s +death.” He interrupted:-- + +“Oh, yes, I know, I know. I have read your last two letters.” I went +on:-- + +“I suppose this upset him, for when we were in town on Thursday last he +had a sort of shock.” + +“A shock, and after brain fever so soon! That was not good. What kind of +a shock was it?” + +“He thought he saw some one who recalled something terrible, something +which led to his brain fever.” And here the whole thing seemed to +overwhelm me in a rush. The pity for Jonathan, the horror which he +experienced, the whole fearful mystery of his diary, and the fear that +has been brooding over me ever since, all came in a tumult. I suppose I +was hysterical, for I threw myself on my knees and held up my hands to +him, and implored him to make my husband well again. He took my hands +and raised me up, and made me sit on the sofa, and sat by me; he held my +hand in his, and said to me with, oh, such infinite sweetness:-- + +“My life is a barren and lonely one, and so full of work that I have not +had much time for friendships; but since I have been summoned to here by +my friend John Seward I have known so many good people and seen such +nobility that I feel more than ever--and it has grown with my advancing +years--the loneliness of my life. Believe, me, then, that I come here +full of respect for you, and you have given me hope--hope, not in what I +am seeking of, but that there are good women still left to make life +happy--good women, whose lives and whose truths may make good lesson for +the children that are to be. I am glad, glad, that I may here be of some +use to you; for if your husband suffer, he suffer within the range of my +study and experience. I promise you that I will gladly do _all_ for him +that I can--all to make his life strong and manly, and your life a happy +one. Now you must eat. You are overwrought and perhaps over-anxious. +Husband Jonathan would not like to see you so pale; and what he like not +where he love, is not to his good. Therefore for his sake you must eat +and smile. You have told me all about Lucy, and so now we shall not +speak of it, lest it distress. I shall stay in Exeter to-night, for I +want to think much over what you have told me, and when I have thought I +will ask you questions, if I may. And then, too, you will tell me of +husband Jonathan’s trouble so far as you can, but not yet. You must eat +now; afterwards you shall tell me all.” + +After lunch, when we went back to the drawing-room, he said to me:-- + +“And now tell me all about him.” When it came to speaking to this great +learned man, I began to fear that he would think me a weak fool, and +Jonathan a madman--that journal is all so strange--and I hesitated to go +on. But he was so sweet and kind, and he had promised to help, and I +trusted him, so I said:-- + +“Dr. Van Helsing, what I have to tell you is so queer that you must not +laugh at me or at my husband. I have been since yesterday in a sort of +fever of doubt; you must be kind to me, and not think me foolish that I +have even half believed some very strange things.” He reassured me by +his manner as well as his words when he said:-- + +“Oh, my dear, if you only know how strange is the matter regarding which +I am here, it is you who would laugh. I have learned not to think little +of any one’s belief, no matter how strange it be. I have tried to keep +an open mind; and it is not the ordinary things of life that could close +it, but the strange things, the extraordinary things, the things that +make one doubt if they be mad or sane.” + +“Thank you, thank you, a thousand times! You have taken a weight off my +mind. If you will let me, I shall give you a paper to read. It is long, +but I have typewritten it out. It will tell you my trouble and +Jonathan’s. It is the copy of his journal when abroad, and all that +happened. I dare not say anything of it; you will read for yourself and +judge. And then when I see you, perhaps, you will be very kind and tell +me what you think.” + +“I promise,” he said as I gave him the papers; “I shall in the morning, +so soon as I can, come to see you and your husband, if I may.” + +“Jonathan will be here at half-past eleven, and you must come to lunch +with us and see him then; you could catch the quick 3:34 train, which +will leave you at Paddington before eight.” He was surprised at my +knowledge of the trains off-hand, but he does not know that I have made +up all the trains to and from Exeter, so that I may help Jonathan in +case he is in a hurry. + +So he took the papers with him and went away, and I sit here +thinking--thinking I don’t know what. + + * * * * * + +_Letter (by hand), Van Helsing to Mrs. Harker._ + +“_25 September, 6 o’clock._ + +“Dear Madam Mina,-- + +“I have read your husband’s so wonderful diary. You may sleep without +doubt. Strange and terrible as it is, it is _true_! I will pledge my +life on it. It may be worse for others; but for him and you there is no +dread. He is a noble fellow; and let me tell you from experience of men, +that one who would do as he did in going down that wall and to that +room--ay, and going a second time--is not one to be injured in +permanence by a shock. His brain and his heart are all right; this I +swear, before I have even seen him; so be at rest. I shall have much to +ask him of other things. I am blessed that to-day I come to see you, for +I have learn all at once so much that again I am dazzle--dazzle more +than ever, and I must think. + +“Yours the most faithful, + +“ABRAHAM VAN HELSING.” + + +_Letter, Mrs. Harker to Van Helsing._ + +“_25 September, 6:30 p. m._ + +“My dear Dr. Van Helsing,-- + +“A thousand thanks for your kind letter, which has taken a great weight +off my mind. And yet, if it be true, what terrible things there are in +the world, and what an awful thing if that man, that monster, be really +in London! I fear to think. I have this moment, whilst writing, had a +wire from Jonathan, saying that he leaves by the 6:25 to-night from +Launceston and will be here at 10:18, so that I shall have no fear +to-night. Will you, therefore, instead of lunching with us, please come +to breakfast at eight o’clock, if this be not too early for you? You can +get away, if you are in a hurry, by the 10:30 train, which will bring +you to Paddington by 2:35. Do not answer this, as I shall take it that, +if I do not hear, you will come to breakfast. + +“Believe me, + +“Your faithful and grateful friend, + +“MINA HARKER.” + + +_Jonathan Harker’s Journal._ + +_26 September._--I thought never to write in this diary again, but the +time has come. When I got home last night Mina had supper ready, and +when we had supped she told me of Van Helsing’s visit, and of her having +given him the two diaries copied out, and of how anxious she has been +about me. She showed me in the doctor’s letter that all I wrote down was +true. It seems to have made a new man of me. It was the doubt as to the +reality of the whole thing that knocked me over. I felt impotent, and in +the dark, and distrustful. But, now that I _know_, I am not afraid, even +of the Count. He has succeeded after all, then, in his design in getting +to London, and it was he I saw. He has got younger, and how? Van Helsing +is the man to unmask him and hunt him out, if he is anything like what +Mina says. We sat late, and talked it all over. Mina is dressing, and I +shall call at the hotel in a few minutes and bring him over.... + +He was, I think, surprised to see me. When I came into the room where he +was, and introduced myself, he took me by the shoulder, and turned my +face round to the light, and said, after a sharp scrutiny:-- + +“But Madam Mina told me you were ill, that you had had a shock.” It was +so funny to hear my wife called “Madam Mina” by this kindly, +strong-faced old man. I smiled, and said:-- + +“I _was_ ill, I _have_ had a shock; but you have cured me already.” + +“And how?” + +“By your letter to Mina last night. I was in doubt, and then everything +took a hue of unreality, and I did not know what to trust, even the +evidence of my own senses. Not knowing what to trust, I did not know +what to do; and so had only to keep on working in what had hitherto been +the groove of my life. The groove ceased to avail me, and I mistrusted +myself. Doctor, you don’t know what it is to doubt everything, even +yourself. No, you don’t; you couldn’t with eyebrows like yours.” He +seemed pleased, and laughed as he said:-- + +“So! You are physiognomist. I learn more here with each hour. I am with +so much pleasure coming to you to breakfast; and, oh, sir, you will +pardon praise from an old man, but you are blessed in your wife.” I +would listen to him go on praising Mina for a day, so I simply nodded +and stood silent. + +“She is one of God’s women, fashioned by His own hand to show us men and +other women that there is a heaven where we can enter, and that its +light can be here on earth. So true, so sweet, so noble, so little an +egoist--and that, let me tell you, is much in this age, so sceptical and +selfish. And you, sir--I have read all the letters to poor Miss Lucy, +and some of them speak of you, so I know you since some days from the +knowing of others; but I have seen your true self since last night. You +will give me your hand, will you not? And let us be friends for all our +lives.” + +We shook hands, and he was so earnest and so kind that it made me quite +choky. + +“And now,” he said, “may I ask you for some more help? I have a great +task to do, and at the beginning it is to know. You can help me here. +Can you tell me what went before your going to Transylvania? Later on I +may ask more help, and of a different kind; but at first this will do.” + +“Look here, sir,” I said, “does what you have to do concern the Count?” + +“It does,” he said solemnly. + +“Then I am with you heart and soul. As you go by the 10:30 train, you +will not have time to read them; but I shall get the bundle of papers. +You can take them with you and read them in the train.” + +After breakfast I saw him to the station. When we were parting he +said:-- + +“Perhaps you will come to town if I send to you, and take Madam Mina +too.” + +“We shall both come when you will,” I said. + +I had got him the morning papers and the London papers of the previous +night, and while we were talking at the carriage window, waiting for the +train to start, he was turning them over. His eyes suddenly seemed to +catch something in one of them, “The Westminster Gazette”--I knew it by +the colour--and he grew quite white. He read something intently, +groaning to himself: “Mein Gott! Mein Gott! So soon! so soon!” I do not +think he remembered me at the moment. Just then the whistle blew, and +the train moved off. This recalled him to himself, and he leaned out of +the window and waved his hand, calling out: “Love to Madam Mina; I shall +write so soon as ever I can.” + + +_Dr. Seward’s Diary._ + +_26 September._--Truly there is no such thing as finality. Not a week +since I said “Finis,” and yet here I am starting fresh again, or rather +going on with the same record. Until this afternoon I had no cause to +think of what is done. Renfield had become, to all intents, as sane as +he ever was. He was already well ahead with his fly business; and he had +just started in the spider line also; so he had not been of any trouble +to me. I had a letter from Arthur, written on Sunday, and from it I +gather that he is bearing up wonderfully well. Quincey Morris is with +him, and that is much of a help, for he himself is a bubbling well of +good spirits. Quincey wrote me a line too, and from him I hear that +Arthur is beginning to recover something of his old buoyancy; so as to +them all my mind is at rest. As for myself, I was settling down to my +work with the enthusiasm which I used to have for it, so that I might +fairly have said that the wound which poor Lucy left on me was becoming +cicatrised. Everything is, however, now reopened; and what is to be the +end God only knows. I have an idea that Van Helsing thinks he knows, +too, but he will only let out enough at a time to whet curiosity. He +went to Exeter yesterday, and stayed there all night. To-day he came +back, and almost bounded into the room at about half-past five o’clock, +and thrust last night’s “Westminster Gazette” into my hand. + +“What do you think of that?” he asked as he stood back and folded his +arms. + +I looked over the paper, for I really did not know what he meant; but he +took it from me and pointed out a paragraph about children being decoyed +away at Hampstead. It did not convey much to me, until I reached a +passage where it described small punctured wounds on their throats. An +idea struck me, and I looked up. “Well?” he said. + +“It is like poor Lucy’s.” + +“And what do you make of it?” + +“Simply that there is some cause in common. Whatever it was that injured +her has injured them.” I did not quite understand his answer:-- + +“That is true indirectly, but not directly.” + +“How do you mean, Professor?” I asked. I was a little inclined to take +his seriousness lightly--for, after all, four days of rest and freedom +from burning, harrowing anxiety does help to restore one’s spirits--but +when I saw his face, it sobered me. Never, even in the midst of our +despair about poor Lucy, had he looked more stern. + +“Tell me!” I said. “I can hazard no opinion. I do not know what to +think, and I have no data on which to found a conjecture.” + +“Do you mean to tell me, friend John, that you have no suspicion as to +what poor Lucy died of; not after all the hints given, not only by +events, but by me?” + +“Of nervous prostration following on great loss or waste of blood.” + +“And how the blood lost or waste?” I shook my head. He stepped over and +sat down beside me, and went on:-- + +“You are clever man, friend John; you reason well, and your wit is bold; +but you are too prejudiced. You do not let your eyes see nor your ears +hear, and that which is outside your daily life is not of account to +you. Do you not think that there are things which you cannot understand, +and yet which are; that some people see things that others cannot? But +there are things old and new which must not be contemplate by men’s +eyes, because they know--or think they know--some things which other men +have told them. Ah, it is the fault of our science that it wants to +explain all; and if it explain not, then it says there is nothing to +explain. But yet we see around us every day the growth of new beliefs, +which think themselves new; and which are yet but the old, which pretend +to be young--like the fine ladies at the opera. I suppose now you do not +believe in corporeal transference. No? Nor in materialisation. No? Nor +in astral bodies. No? Nor in the reading of thought. No? Nor in +hypnotism----” + +“Yes,” I said. “Charcot has proved that pretty well.” He smiled as he +went on: “Then you are satisfied as to it. Yes? And of course then you +understand how it act, and can follow the mind of the great +Charcot--alas that he is no more!--into the very soul of the patient +that he influence. No? Then, friend John, am I to take it that you +simply accept fact, and are satisfied to let from premise to conclusion +be a blank? No? Then tell me--for I am student of the brain--how you +accept the hypnotism and reject the thought reading. Let me tell you, my +friend, that there are things done to-day in electrical science which +would have been deemed unholy by the very men who discovered +electricity--who would themselves not so long before have been burned +as wizards. There are always mysteries in life. Why was it that +Methuselah lived nine hundred years, and ‘Old Parr’ one hundred and +sixty-nine, and yet that poor Lucy, with four men’s blood in her poor +veins, could not live even one day? For, had she live one more day, we +could have save her. Do you know all the mystery of life and death? Do +you know the altogether of comparative anatomy and can say wherefore the +qualities of brutes are in some men, and not in others? Can you tell me +why, when other spiders die small and soon, that one great spider lived +for centuries in the tower of the old Spanish church and grew and grew, +till, on descending, he could drink the oil of all the church lamps? Can +you tell me why in the Pampas, ay and elsewhere, there are bats that +come at night and open the veins of cattle and horses and suck dry their +veins; how in some islands of the Western seas there are bats which hang +on the trees all day, and those who have seen describe as like giant +nuts or pods, and that when the sailors sleep on the deck, because that +it is hot, flit down on them, and then--and then in the morning are +found dead men, white as even Miss Lucy was?” + +“Good God, Professor!” I said, starting up. “Do you mean to tell me that +Lucy was bitten by such a bat; and that such a thing is here in London +in the nineteenth century?” He waved his hand for silence, and went +on:-- + +“Can you tell me why the tortoise lives more long than generations of +men; why the elephant goes on and on till he have seen dynasties; and +why the parrot never die only of bite of cat or dog or other complaint? +Can you tell me why men believe in all ages and places that there are +some few who live on always if they be permit; that there are men and +women who cannot die? We all know--because science has vouched for the +fact--that there have been toads shut up in rocks for thousands of +years, shut in one so small hole that only hold him since the youth of +the world. Can you tell me how the Indian fakir can make himself to die +and have been buried, and his grave sealed and corn sowed on it, and the +corn reaped and be cut and sown and reaped and cut again, and then men +come and take away the unbroken seal and that there lie the Indian +fakir, not dead, but that rise up and walk amongst them as before?” Here +I interrupted him. I was getting bewildered; he so crowded on my mind +his list of nature’s eccentricities and possible impossibilities that my +imagination was getting fired. I had a dim idea that he was teaching me +some lesson, as long ago he used to do in his study at Amsterdam; but +he used then to tell me the thing, so that I could have the object of +thought in mind all the time. But now I was without this help, yet I +wanted to follow him, so I said:-- + +“Professor, let me be your pet student again. Tell me the thesis, so +that I may apply your knowledge as you go on. At present I am going in +my mind from point to point as a mad man, and not a sane one, follows an +idea. I feel like a novice lumbering through a bog in a mist, jumping +from one tussock to another in the mere blind effort to move on without +knowing where I am going.” + +“That is good image,” he said. “Well, I shall tell you. My thesis is +this: I want you to believe.” + +“To believe what?” + +“To believe in things that you cannot. Let me illustrate. I heard once +of an American who so defined faith: ‘that faculty which enables us to +believe things which we know to be untrue.’ For one, I follow that man. +He meant that we shall have an open mind, and not let a little bit of +truth check the rush of a big truth, like a small rock does a railway +truck. We get the small truth first. Good! We keep him, and we value +him; but all the same we must not let him think himself all the truth in +the universe.” + +“Then you want me not to let some previous conviction injure the +receptivity of my mind with regard to some strange matter. Do I read +your lesson aright?” + +“Ah, you are my favourite pupil still. It is worth to teach you. Now +that you are willing to understand, you have taken the first step to +understand. You think then that those so small holes in the children’s +throats were made by the same that made the hole in Miss Lucy?” + +“I suppose so.” He stood up and said solemnly:-- + +“Then you are wrong. Oh, would it were so! but alas! no. It is worse, +far, far worse.” + +“In God’s name, Professor Van Helsing, what do you mean?” I cried. + +He threw himself with a despairing gesture into a chair, and placed his +elbows on the table, covering his face with his hands as he spoke:-- + +“They were made by Miss Lucy!” + + + + +CHAPTER XV + +DR. SEWARD’S DIARY--_continued_. + + +For a while sheer anger mastered me; it was as if he had during her life +struck Lucy on the face. I smote the table hard and rose up as I said to +him:-- + +“Dr. Van Helsing, are you mad?” He raised his head and looked at me, and +somehow the tenderness of his face calmed me at once. “Would I were!” he +said. “Madness were easy to bear compared with truth like this. Oh, my +friend, why, think you, did I go so far round, why take so long to tell +you so simple a thing? Was it because I hate you and have hated you all +my life? Was it because I wished to give you pain? Was it that I wanted, +now so late, revenge for that time when you saved my life, and from a +fearful death? Ah no!” + +“Forgive me,” said I. He went on:-- + +“My friend, it was because I wished to be gentle in the breaking to you, +for I know you have loved that so sweet lady. But even yet I do not +expect you to believe. It is so hard to accept at once any abstract +truth, that we may doubt such to be possible when we have always +believed the ‘no’ of it; it is more hard still to accept so sad a +concrete truth, and of such a one as Miss Lucy. To-night I go to prove +it. Dare you come with me?” + +This staggered me. A man does not like to prove such a truth; Byron +excepted from the category, jealousy. + + “And prove the very truth he most abhorred.” + +He saw my hesitation, and spoke:-- + +“The logic is simple, no madman’s logic this time, jumping from tussock +to tussock in a misty bog. If it be not true, then proof will be relief; +at worst it will not harm. If it be true! Ah, there is the dread; yet +very dread should help my cause, for in it is some need of belief. Come, +I tell you what I propose: first, that we go off now and see that child +in the hospital. Dr. Vincent, of the North Hospital, where the papers +say the child is, is friend of mine, and I think of yours since you were +in class at Amsterdam. He will let two scientists see his case, if he +will not let two friends. We shall tell him nothing, but only that we +wish to learn. And then----” + +“And then?” He took a key from his pocket and held it up. “And then we +spend the night, you and I, in the churchyard where Lucy lies. This is +the key that lock the tomb. I had it from the coffin-man to give to +Arthur.” My heart sank within me, for I felt that there was some fearful +ordeal before us. I could do nothing, however, so I plucked up what +heart I could and said that we had better hasten, as the afternoon was +passing.... + +We found the child awake. It had had a sleep and taken some food, and +altogether was going on well. Dr. Vincent took the bandage from its +throat, and showed us the punctures. There was no mistaking the +similarity to those which had been on Lucy’s throat. They were smaller, +and the edges looked fresher; that was all. We asked Vincent to what he +attributed them, and he replied that it must have been a bite of some +animal, perhaps a rat; but, for his own part, he was inclined to think +that it was one of the bats which are so numerous on the northern +heights of London. “Out of so many harmless ones,” he said, “there may +be some wild specimen from the South of a more malignant species. Some +sailor may have brought one home, and it managed to escape; or even from +the Zoölogical Gardens a young one may have got loose, or one be bred +there from a vampire. These things do occur, you know. Only ten days ago +a wolf got out, and was, I believe, traced up in this direction. For a +week after, the children were playing nothing but Red Riding Hood on the +Heath and in every alley in the place until this ‘bloofer lady’ scare +came along, since when it has been quite a gala-time with them. Even +this poor little mite, when he woke up to-day, asked the nurse if he +might go away. When she asked him why he wanted to go, he said he wanted +to play with the ‘bloofer lady.’” + +“I hope,” said Van Helsing, “that when you are sending the child home +you will caution its parents to keep strict watch over it. These fancies +to stray are most dangerous; and if the child were to remain out another +night, it would probably be fatal. But in any case I suppose you will +not let it away for some days?” + +“Certainly not, not for a week at least; longer if the wound is not +healed.” + +Our visit to the hospital took more time than we had reckoned on, and +the sun had dipped before we came out. When Van Helsing saw how dark it +was, he said:-- + +“There is no hurry. It is more late than I thought. Come, let us seek +somewhere that we may eat, and then we shall go on our way.” + +We dined at “Jack Straw’s Castle” along with a little crowd of +bicyclists and others who were genially noisy. About ten o’clock we +started from the inn. It was then very dark, and the scattered lamps +made the darkness greater when we were once outside their individual +radius. The Professor had evidently noted the road we were to go, for he +went on unhesitatingly; but, as for me, I was in quite a mixup as to +locality. As we went further, we met fewer and fewer people, till at +last we were somewhat surprised when we met even the patrol of horse +police going their usual suburban round. At last we reached the wall of +the churchyard, which we climbed over. With some little difficulty--for +it was very dark, and the whole place seemed so strange to us--we found +the Westenra tomb. The Professor took the key, opened the creaky door, +and standing back, politely, but quite unconsciously, motioned me to +precede him. There was a delicious irony in the offer, in the +courtliness of giving preference on such a ghastly occasion. My +companion followed me quickly, and cautiously drew the door to, after +carefully ascertaining that the lock was a falling, and not a spring, +one. In the latter case we should have been in a bad plight. Then he +fumbled in his bag, and taking out a matchbox and a piece of candle, +proceeded to make a light. The tomb in the day-time, and when wreathed +with fresh flowers, had looked grim and gruesome enough; but now, some +days afterwards, when the flowers hung lank and dead, their whites +turning to rust and their greens to browns; when the spider and the +beetle had resumed their accustomed dominance; when time-discoloured +stone, and dust-encrusted mortar, and rusty, dank iron, and tarnished +brass, and clouded silver-plating gave back the feeble glimmer of a +candle, the effect was more miserable and sordid than could have been +imagined. It conveyed irresistibly the idea that life--animal life--was +not the only thing which could pass away. + +Van Helsing went about his work systematically. Holding his candle so +that he could read the coffin plates, and so holding it that the sperm +dropped in white patches which congealed as they touched the metal, he +made assurance of Lucy’s coffin. Another search in his bag, and he took +out a turnscrew. + +“What are you going to do?” I asked. + +“To open the coffin. You shall yet be convinced.” Straightway he began +taking out the screws, and finally lifted off the lid, showing the +casing of lead beneath. The sight was almost too much for me. It seemed +to be as much an affront to the dead as it would have been to have +stripped off her clothing in her sleep whilst living; I actually took +hold of his hand to stop him. He only said: “You shall see,” and again +fumbling in his bag, took out a tiny fret-saw. Striking the turnscrew +through the lead with a swift downward stab, which made me wince, he +made a small hole, which was, however, big enough to admit the point of +the saw. I had expected a rush of gas from the week-old corpse. We +doctors, who have had to study our dangers, have to become accustomed to +such things, and I drew back towards the door. But the Professor never +stopped for a moment; he sawed down a couple of feet along one side of +the lead coffin, and then across, and down the other side. Taking the +edge of the loose flange, he bent it back towards the foot of the +coffin, and holding up the candle into the aperture, motioned to me to +look. + +I drew near and looked. The coffin was empty. + +It was certainly a surprise to me, and gave me a considerable shock, but +Van Helsing was unmoved. He was now more sure than ever of his ground, +and so emboldened to proceed in his task. “Are you satisfied now, friend +John?” he asked. + +I felt all the dogged argumentativeness of my nature awake within me as +I answered him:-- + +“I am satisfied that Lucy’s body is not in that coffin; but that only +proves one thing.” + +“And what is that, friend John?” + +“That it is not there.” + +“That is good logic,” he said, “so far as it goes. But how do you--how +can you--account for it not being there?” + +“Perhaps a body-snatcher,” I suggested. “Some of the undertaker’s people +may have stolen it.” I felt that I was speaking folly, and yet it was +the only real cause which I could suggest. The Professor sighed. “Ah +well!” he said, “we must have more proof. Come with me.” + +He put on the coffin-lid again, gathered up all his things and placed +them in the bag, blew out the light, and placed the candle also in the +bag. We opened the door, and went out. Behind us he closed the door and +locked it. He handed me the key, saying: “Will you keep it? You had +better be assured.” I laughed--it was not a very cheerful laugh, I am +bound to say--as I motioned him to keep it. “A key is nothing,” I said; +“there may be duplicates; and anyhow it is not difficult to pick a lock +of that kind.” He said nothing, but put the key in his pocket. Then he +told me to watch at one side of the churchyard whilst he would watch at +the other. I took up my place behind a yew-tree, and I saw his dark +figure move until the intervening headstones and trees hid it from my +sight. + +It was a lonely vigil. Just after I had taken my place I heard a distant +clock strike twelve, and in time came one and two. I was chilled and +unnerved, and angry with the Professor for taking me on such an errand +and with myself for coming. I was too cold and too sleepy to be keenly +observant, and not sleepy enough to betray my trust so altogether I had +a dreary, miserable time. + +Suddenly, as I turned round, I thought I saw something like a white +streak, moving between two dark yew-trees at the side of the churchyard +farthest from the tomb; at the same time a dark mass moved from the +Professor’s side of the ground, and hurriedly went towards it. Then I +too moved; but I had to go round headstones and railed-off tombs, and I +stumbled over graves. The sky was overcast, and somewhere far off an +early cock crew. A little way off, beyond a line of scattered +juniper-trees, which marked the pathway to the church, a white, dim +figure flitted in the direction of the tomb. The tomb itself was hidden +by trees, and I could not see where the figure disappeared. I heard the +rustle of actual movement where I had first seen the white figure, and +coming over, found the Professor holding in his arms a tiny child. When +he saw me he held it out to me, and said:-- + +“Are you satisfied now?” + +“No,” I said, in a way that I felt was aggressive. + +“Do you not see the child?” + +“Yes, it is a child, but who brought it here? And is it wounded?” I +asked. + +“We shall see,” said the Professor, and with one impulse we took our way +out of the churchyard, he carrying the sleeping child. + +When we had got some little distance away, we went into a clump of +trees, and struck a match, and looked at the child’s throat. It was +without a scratch or scar of any kind. + +“Was I right?” I asked triumphantly. + +“We were just in time,” said the Professor thankfully. + +We had now to decide what we were to do with the child, and so consulted +about it. If we were to take it to a police-station we should have to +give some account of our movements during the night; at least, we should +have had to make some statement as to how we had come to find the child. +So finally we decided that we would take it to the Heath, and when we +heard a policeman coming, would leave it where he could not fail to find +it; we would then seek our way home as quickly as we could. All fell out +well. At the edge of Hampstead Heath we heard a policeman’s heavy +tramp, and laying the child on the pathway, we waited and watched until +he saw it as he flashed his lantern to and fro. We heard his exclamation +of astonishment, and then we went away silently. By good chance we got a +cab near the “Spaniards,” and drove to town. + +I cannot sleep, so I make this entry. But I must try to get a few hours’ +sleep, as Van Helsing is to call for me at noon. He insists that I shall +go with him on another expedition. + + * * * * * + +_27 September._--It was two o’clock before we found a suitable +opportunity for our attempt. The funeral held at noon was all completed, +and the last stragglers of the mourners had taken themselves lazily +away, when, looking carefully from behind a clump of alder-trees, we saw +the sexton lock the gate after him. We knew then that we were safe till +morning did we desire it; but the Professor told me that we should not +want more than an hour at most. Again I felt that horrid sense of the +reality of things, in which any effort of imagination seemed out of +place; and I realised distinctly the perils of the law which we were +incurring in our unhallowed work. Besides, I felt it was all so useless. +Outrageous as it was to open a leaden coffin, to see if a woman dead +nearly a week were really dead, it now seemed the height of folly to +open the tomb again, when we knew, from the evidence of our own +eyesight, that the coffin was empty. I shrugged my shoulders, however, +and rested silent, for Van Helsing had a way of going on his own road, +no matter who remonstrated. He took the key, opened the vault, and again +courteously motioned me to precede. The place was not so gruesome as +last night, but oh, how unutterably mean-looking when the sunshine +streamed in. Van Helsing walked over to Lucy’s coffin, and I followed. +He bent over and again forced back the leaden flange; and then a shock +of surprise and dismay shot through me. + +There lay Lucy, seemingly just as we had seen her the night before her +funeral. She was, if possible, more radiantly beautiful than ever; and I +could not believe that she was dead. The lips were red, nay redder than +before; and on the cheeks was a delicate bloom. + +“Is this a juggle?” I said to him. + +“Are you convinced now?” said the Professor in response, and as he spoke +he put over his hand, and in a way that made me shudder, pulled back the +dead lips and showed the white teeth. + +“See,” he went on, “see, they are even sharper than before. With this +and this”--and he touched one of the canine teeth and that below +it--“the little children can be bitten. Are you of belief now, friend +John?” Once more, argumentative hostility woke within me. I _could_ not +accept such an overwhelming idea as he suggested; so, with an attempt to +argue of which I was even at the moment ashamed, I said:-- + +“She may have been placed here since last night.” + +“Indeed? That is so, and by whom?” + +“I do not know. Some one has done it.” + +“And yet she has been dead one week. Most peoples in that time would not +look so.” I had no answer for this, so was silent. Van Helsing did not +seem to notice my silence; at any rate, he showed neither chagrin nor +triumph. He was looking intently at the face of the dead woman, raising +the eyelids and looking at the eyes, and once more opening the lips and +examining the teeth. Then he turned to me and said:-- + +“Here, there is one thing which is different from all recorded; here is +some dual life that is not as the common. She was bitten by the vampire +when she was in a trance, sleep-walking--oh, you start; you do not know +that, friend John, but you shall know it all later--and in trance could +he best come to take more blood. In trance she died, and in trance she +is Un-Dead, too. So it is that she differ from all other. Usually when +the Un-Dead sleep at home”--as he spoke he made a comprehensive sweep of +his arm to designate what to a vampire was “home”--“their face show what +they are, but this so sweet that was when she not Un-Dead she go back to +the nothings of the common dead. There is no malign there, see, and so +it make hard that I must kill her in her sleep.” This turned my blood +cold, and it began to dawn upon me that I was accepting Van Helsing’s +theories; but if she were really dead, what was there of terror in the +idea of killing her? He looked up at me, and evidently saw the change in +my face, for he said almost joyously:-- + +“Ah, you believe now?” + +I answered: “Do not press me too hard all at once. I am willing to +accept. How will you do this bloody work?” + +“I shall cut off her head and fill her mouth with garlic, and I shall +drive a stake through her body.” It made me shudder to think of so +mutilating the body of the woman whom I had loved. And yet the feeling +was not so strong as I had expected. I was, in fact, beginning to +shudder at the presence of this being, this Un-Dead, as Van Helsing +called it, and to loathe it. Is it possible that love is all subjective, +or all objective? + +I waited a considerable time for Van Helsing to begin, but he stood as +if wrapped in thought. Presently he closed the catch of his bag with a +snap, and said:-- + +“I have been thinking, and have made up my mind as to what is best. If I +did simply follow my inclining I would do now, at this moment, what is +to be done; but there are other things to follow, and things that are +thousand times more difficult in that them we do not know. This is +simple. She have yet no life taken, though that is of time; and to act +now would be to take danger from her for ever. But then we may have to +want Arthur, and how shall we tell him of this? If you, who saw the +wounds on Lucy’s throat, and saw the wounds so similar on the child’s at +the hospital; if you, who saw the coffin empty last night and full +to-day with a woman who have not change only to be more rose and more +beautiful in a whole week, after she die--if you know of this and know +of the white figure last night that brought the child to the churchyard, +and yet of your own senses you did not believe, how, then, can I expect +Arthur, who know none of those things, to believe? He doubted me when I +took him from her kiss when she was dying. I know he has forgiven me +because in some mistaken idea I have done things that prevent him say +good-bye as he ought; and he may think that in some more mistaken idea +this woman was buried alive; and that in most mistake of all we have +killed her. He will then argue back that it is we, mistaken ones, that +have killed her by our ideas; and so he will be much unhappy always. Yet +he never can be sure; and that is the worst of all. And he will +sometimes think that she he loved was buried alive, and that will paint +his dreams with horrors of what she must have suffered; and again, he +will think that we may be right, and that his so beloved was, after all, +an Un-Dead. No! I told him once, and since then I learn much. Now, since +I know it is all true, a hundred thousand times more do I know that he +must pass through the bitter waters to reach the sweet. He, poor fellow, +must have one hour that will make the very face of heaven grow black to +him; then we can act for good all round and send him peace. My mind is +made up. Let us go. You return home for to-night to your asylum, and see +that all be well. As for me, I shall spend the night here in this +churchyard in my own way. To-morrow night you will come to me to the +Berkeley Hotel at ten of the clock. I shall send for Arthur to come too, +and also that so fine young man of America that gave his blood. Later we +shall all have work to do. I come with you so far as Piccadilly and +there dine, for I must be back here before the sun set.” + +So we locked the tomb and came away, and got over the wall of the +churchyard, which was not much of a task, and drove back to Piccadilly. + + +_Note left by Van Helsing in his portmanteau, Berkeley Hotel directed to +John Seward, M. D._ + +(Not delivered.) + +“_27 September._ + +“Friend John,-- + +“I write this in case anything should happen. I go alone to watch in +that churchyard. It pleases me that the Un-Dead, Miss Lucy, shall not +leave to-night, that so on the morrow night she may be more eager. +Therefore I shall fix some things she like not--garlic and a +crucifix--and so seal up the door of the tomb. She is young as Un-Dead, +and will heed. Moreover, these are only to prevent her coming out; they +may not prevail on her wanting to get in; for then the Un-Dead is +desperate, and must find the line of least resistance, whatsoever it may +be. I shall be at hand all the night from sunset till after the sunrise, +and if there be aught that may be learned I shall learn it. For Miss +Lucy or from her, I have no fear; but that other to whom is there that +she is Un-Dead, he have now the power to seek her tomb and find shelter. +He is cunning, as I know from Mr. Jonathan and from the way that all +along he have fooled us when he played with us for Miss Lucy’s life, and +we lost; and in many ways the Un-Dead are strong. He have always the +strength in his hand of twenty men; even we four who gave our strength +to Miss Lucy it also is all to him. Besides, he can summon his wolf and +I know not what. So if it be that he come thither on this night he shall +find me; but none other shall--until it be too late. But it may be that +he will not attempt the place. There is no reason why he should; his +hunting ground is more full of game than the churchyard where the +Un-Dead woman sleep, and the one old man watch. + +“Therefore I write this in case.... Take the papers that are with this, +the diaries of Harker and the rest, and read them, and then find this +great Un-Dead, and cut off his head and burn his heart or drive a stake +through it, so that the world may rest from him. + +“If it be so, farewell. + +“VAN HELSING.” + + + +_Dr. Seward’s Diary._ + +_28 September._--It is wonderful what a good night’s sleep will do for +one. Yesterday I was almost willing to accept Van Helsing’s monstrous +ideas; but now they seem to start out lurid before me as outrages on +common sense. I have no doubt that he believes it all. I wonder if his +mind can have become in any way unhinged. Surely there must be _some_ +rational explanation of all these mysterious things. Is it possible that +the Professor can have done it himself? He is so abnormally clever that +if he went off his head he would carry out his intent with regard to +some fixed idea in a wonderful way. I am loath to think it, and indeed +it would be almost as great a marvel as the other to find that Van +Helsing was mad; but anyhow I shall watch him carefully. I may get some +light on the mystery. + + * * * * * + +_29 September, morning._.... Last night, at a little before ten o’clock, +Arthur and Quincey came into Van Helsing’s room; he told us all that he +wanted us to do, but especially addressing himself to Arthur, as if all +our wills were centred in his. He began by saying that he hoped we would +all come with him too, “for,” he said, “there is a grave duty to be done +there. You were doubtless surprised at my letter?” This query was +directly addressed to Lord Godalming. + +“I was. It rather upset me for a bit. There has been so much trouble +around my house of late that I could do without any more. I have been +curious, too, as to what you mean. Quincey and I talked it over; but the +more we talked, the more puzzled we got, till now I can say for myself +that I’m about up a tree as to any meaning about anything.” + +“Me too,” said Quincey Morris laconically. + +“Oh,” said the Professor, “then you are nearer the beginning, both of +you, than friend John here, who has to go a long way back before he can +even get so far as to begin.” + +It was evident that he recognised my return to my old doubting frame of +mind without my saying a word. Then, turning to the other two, he said +with intense gravity:-- + +“I want your permission to do what I think good this night. It is, I +know, much to ask; and when you know what it is I propose to do you will +know, and only then, how much. Therefore may I ask that you promise me +in the dark, so that afterwards, though you may be angry with me for a +time--I must not disguise from myself the possibility that such may +be--you shall not blame yourselves for anything.” + +“That’s frank anyhow,” broke in Quincey. “I’ll answer for the Professor. +I don’t quite see his drift, but I swear he’s honest; and that’s good +enough for me.” + +“I thank you, sir,” said Van Helsing proudly. “I have done myself the +honour of counting you one trusting friend, and such endorsement is dear +to me.” He held out a hand, which Quincey took. + +Then Arthur spoke out:-- + +“Dr. Van Helsing, I don’t quite like to ‘buy a pig in a poke,’ as they +say in Scotland, and if it be anything in which my honour as a gentleman +or my faith as a Christian is concerned, I cannot make such a promise. +If you can assure me that what you intend does not violate either of +these two, then I give my consent at once; though for the life of me, I +cannot understand what you are driving at.” + +“I accept your limitation,” said Van Helsing, “and all I ask of you is +that if you feel it necessary to condemn any act of mine, you will first +consider it well and be satisfied that it does not violate your +reservations.” + +“Agreed!” said Arthur; “that is only fair. And now that the +_pourparlers_ are over, may I ask what it is we are to do?” + +“I want you to come with me, and to come in secret, to the churchyard at +Kingstead.” + +Arthur’s face fell as he said in an amazed sort of way:-- + +“Where poor Lucy is buried?” The Professor bowed. Arthur went on: “And +when there?” + +“To enter the tomb!” Arthur stood up. + +“Professor, are you in earnest; or it is some monstrous joke? Pardon me, +I see that you are in earnest.” He sat down again, but I could see that +he sat firmly and proudly, as one who is on his dignity. There was +silence until he asked again:-- + +“And when in the tomb?” + +“To open the coffin.” + +“This is too much!” he said, angrily rising again. “I am willing to be +patient in all things that are reasonable; but in this--this desecration +of the grave--of one who----” He fairly choked with indignation. The +Professor looked pityingly at him. + +“If I could spare you one pang, my poor friend,” he said, “God knows I +would. But this night our feet must tread in thorny paths; or later, and +for ever, the feet you love must walk in paths of flame!” + +Arthur looked up with set white face and said:-- + +“Take care, sir, take care!” + +“Would it not be well to hear what I have to say?” said Van Helsing. +“And then you will at least know the limit of my purpose. Shall I go +on?” + +“That’s fair enough,” broke in Morris. + +After a pause Van Helsing went on, evidently with an effort:-- + +“Miss Lucy is dead; is it not so? Yes! Then there can be no wrong to +her. But if she be not dead----” + +Arthur jumped to his feet. + +“Good God!” he cried. “What do you mean? Has there been any mistake; has +she been buried alive?” He groaned in anguish that not even hope could +soften. + +“I did not say she was alive, my child; I did not think it. I go no +further than to say that she might be Un-Dead.” + +“Un-Dead! Not alive! What do you mean? Is this all a nightmare, or what +is it?” + +“There are mysteries which men can only guess at, which age by age they +may solve only in part. Believe me, we are now on the verge of one. But +I have not done. May I cut off the head of dead Miss Lucy?” + +“Heavens and earth, no!” cried Arthur in a storm of passion. “Not for +the wide world will I consent to any mutilation of her dead body. Dr. +Van Helsing, you try me too far. What have I done to you that you should +torture me so? What did that poor, sweet girl do that you should want to +cast such dishonour on her grave? Are you mad to speak such things, or +am I mad to listen to them? Don’t dare to think more of such a +desecration; I shall not give my consent to anything you do. I have a +duty to do in protecting her grave from outrage; and, by God, I shall do +it!” + +Van Helsing rose up from where he had all the time been seated, and +said, gravely and sternly:-- + +“My Lord Godalming, I, too, have a duty to do, a duty to others, a duty +to you, a duty to the dead; and, by God, I shall do it! All I ask you +now is that you come with me, that you look and listen; and if when +later I make the same request you do not be more eager for its +fulfilment even than I am, then--then I shall do my duty, whatever it +may seem to me. And then, to follow of your Lordship’s wishes I shall +hold myself at your disposal to render an account to you, when and where +you will.” His voice broke a little, and he went on with a voice full of +pity:-- + +“But, I beseech you, do not go forth in anger with me. In a long life of +acts which were often not pleasant to do, and which sometimes did wring +my heart, I have never had so heavy a task as now. Believe me that if +the time comes for you to change your mind towards me, one look from +you will wipe away all this so sad hour, for I would do what a man can +to save you from sorrow. Just think. For why should I give myself so +much of labour and so much of sorrow? I have come here from my own land +to do what I can of good; at the first to please my friend John, and +then to help a sweet young lady, whom, too, I came to love. For her--I +am ashamed to say so much, but I say it in kindness--I gave what you +gave; the blood of my veins; I gave it, I, who was not, like you, her +lover, but only her physician and her friend. I gave to her my nights +and days--before death, after death; and if my death can do her good +even now, when she is the dead Un-Dead, she shall have it freely.” He +said this with a very grave, sweet pride, and Arthur was much affected +by it. He took the old man’s hand and said in a broken voice:-- + +“Oh, it is hard to think of it, and I cannot understand; but at least I +shall go with you and wait.” + + + + +CHAPTER XVI + +DR. SEWARD’S DIARY--_continued_ + + +It was just a quarter before twelve o’clock when we got into the +churchyard over the low wall. The night was dark with occasional gleams +of moonlight between the rents of the heavy clouds that scudded across +the sky. We all kept somehow close together, with Van Helsing slightly +in front as he led the way. When we had come close to the tomb I looked +well at Arthur, for I feared that the proximity to a place laden with so +sorrowful a memory would upset him; but he bore himself well. I took it +that the very mystery of the proceeding was in some way a counteractant +to his grief. The Professor unlocked the door, and seeing a natural +hesitation amongst us for various reasons, solved the difficulty by +entering first himself. The rest of us followed, and he closed the door. +He then lit a dark lantern and pointed to the coffin. Arthur stepped +forward hesitatingly; Van Helsing said to me:-- + +“You were with me here yesterday. Was the body of Miss Lucy in that +coffin?” + +“It was.” The Professor turned to the rest saying:-- + +“You hear; and yet there is no one who does not believe with me.” He +took his screwdriver and again took off the lid of the coffin. Arthur +looked on, very pale but silent; when the lid was removed he stepped +forward. He evidently did not know that there was a leaden coffin, or, +at any rate, had not thought of it. When he saw the rent in the lead, +the blood rushed to his face for an instant, but as quickly fell away +again, so that he remained of a ghastly whiteness; he was still silent. +Van Helsing forced back the leaden flange, and we all looked in and +recoiled. + +The coffin was empty! + +For several minutes no one spoke a word. The silence was broken by +Quincey Morris:-- + +“Professor, I answered for you. Your word is all I want. I wouldn’t ask +such a thing ordinarily--I wouldn’t so dishonour you as to imply a +doubt; but this is a mystery that goes beyond any honour or dishonour. +Is this your doing?” + +“I swear to you by all that I hold sacred that I have not removed nor +touched her. What happened was this: Two nights ago my friend Seward and +I came here--with good purpose, believe me. I opened that coffin, which +was then sealed up, and we found it, as now, empty. We then waited, and +saw something white come through the trees. The next day we came here in +day-time, and she lay there. Did she not, friend John?” + +“Yes.” + +“That night we were just in time. One more so small child was missing, +and we find it, thank God, unharmed amongst the graves. Yesterday I came +here before sundown, for at sundown the Un-Dead can move. I waited here +all the night till the sun rose, but I saw nothing. It was most probable +that it was because I had laid over the clamps of those doors garlic, +which the Un-Dead cannot bear, and other things which they shun. Last +night there was no exodus, so to-night before the sundown I took away my +garlic and other things. And so it is we find this coffin empty. But +bear with me. So far there is much that is strange. Wait you with me +outside, unseen and unheard, and things much stranger are yet to be. +So”--here he shut the dark slide of his lantern--“now to the outside.” +He opened the door, and we filed out, he coming last and locking the +door behind him. + +Oh! but it seemed fresh and pure in the night air after the terror of +that vault. How sweet it was to see the clouds race by, and the passing +gleams of the moonlight between the scudding clouds crossing and +passing--like the gladness and sorrow of a man’s life; how sweet it was +to breathe the fresh air, that had no taint of death and decay; how +humanising to see the red lighting of the sky beyond the hill, and to +hear far away the muffled roar that marks the life of a great city. Each +in his own way was solemn and overcome. Arthur was silent, and was, I +could see, striving to grasp the purpose and the inner meaning of the +mystery. I was myself tolerably patient, and half inclined again to +throw aside doubt and to accept Van Helsing’s conclusions. Quincey +Morris was phlegmatic in the way of a man who accepts all things, and +accepts them in the spirit of cool bravery, with hazard of all he has to +stake. Not being able to smoke, he cut himself a good-sized plug of +tobacco and began to chew. As to Van Helsing, he was employed in a +definite way. First he took from his bag a mass of what looked like +thin, wafer-like biscuit, which was carefully rolled up in a white +napkin; next he took out a double-handful of some whitish stuff, like +dough or putty. He crumbled the wafer up fine and worked it into the +mass between his hands. This he then took, and rolling it into thin +strips, began to lay them into the crevices between the door and its +setting in the tomb. I was somewhat puzzled at this, and being close, +asked him what it was that he was doing. Arthur and Quincey drew near +also, as they too were curious. He answered:-- + +“I am closing the tomb, so that the Un-Dead may not enter.” + +“And is that stuff you have put there going to do it?” asked Quincey. +“Great Scott! Is this a game?” + +“It is.” + +“What is that which you are using?” This time the question was by +Arthur. Van Helsing reverently lifted his hat as he answered:-- + +“The Host. I brought it from Amsterdam. I have an Indulgence.” It was an +answer that appalled the most sceptical of us, and we felt individually +that in the presence of such earnest purpose as the Professor’s, a +purpose which could thus use the to him most sacred of things, it was +impossible to distrust. In respectful silence we took the places +assigned to us close round the tomb, but hidden from the sight of any +one approaching. I pitied the others, especially Arthur. I had myself +been apprenticed by my former visits to this watching horror; and yet I, +who had up to an hour ago repudiated the proofs, felt my heart sink +within me. Never did tombs look so ghastly white; never did cypress, or +yew, or juniper so seem the embodiment of funereal gloom; never did tree +or grass wave or rustle so ominously; never did bough creak so +mysteriously; and never did the far-away howling of dogs send such a +woeful presage through the night. + +There was a long spell of silence, a big, aching void, and then from the +Professor a keen “S-s-s-s!” He pointed; and far down the avenue of yews +we saw a white figure advance--a dim white figure, which held something +dark at its breast. The figure stopped, and at the moment a ray of +moonlight fell upon the masses of driving clouds and showed in startling +prominence a dark-haired woman, dressed in the cerements of the grave. +We could not see the face, for it was bent down over what we saw to be a +fair-haired child. There was a pause and a sharp little cry, such as a +child gives in sleep, or a dog as it lies before the fire and dreams. We +were starting forward, but the Professor’s warning hand, seen by us as +he stood behind a yew-tree, kept us back; and then as we looked the +white figure moved forwards again. It was now near enough for us to see +clearly, and the moonlight still held. My own heart grew cold as ice, +and I could hear the gasp of Arthur, as we recognised the features of +Lucy Westenra. Lucy Westenra, but yet how changed. The sweetness was +turned to adamantine, heartless cruelty, and the purity to voluptuous +wantonness. Van Helsing stepped out, and, obedient to his gesture, we +all advanced too; the four of us ranged in a line before the door of the +tomb. Van Helsing raised his lantern and drew the slide; by the +concentrated light that fell on Lucy’s face we could see that the lips +were crimson with fresh blood, and that the stream had trickled over her +chin and stained the purity of her lawn death-robe. + +We shuddered with horror. I could see by the tremulous light that even +Van Helsing’s iron nerve had failed. Arthur was next to me, and if I had +not seized his arm and held him up, he would have fallen. + +When Lucy--I call the thing that was before us Lucy because it bore her +shape--saw us she drew back with an angry snarl, such as a cat gives +when taken unawares; then her eyes ranged over us. Lucy’s eyes in form +and colour; but Lucy’s eyes unclean and full of hell-fire, instead of +the pure, gentle orbs we knew. At that moment the remnant of my love +passed into hate and loathing; had she then to be killed, I could have +done it with savage delight. As she looked, her eyes blazed with unholy +light, and the face became wreathed with a voluptuous smile. Oh, God, +how it made me shudder to see it! With a careless motion, she flung to +the ground, callous as a devil, the child that up to now she had +clutched strenuously to her breast, growling over it as a dog growls +over a bone. The child gave a sharp cry, and lay there moaning. There +was a cold-bloodedness in the act which wrung a groan from Arthur; when +she advanced to him with outstretched arms and a wanton smile he fell +back and hid his face in his hands. + +She still advanced, however, and with a languorous, voluptuous grace, +said:-- + +“Come to me, Arthur. Leave these others and come to me. My arms are +hungry for you. Come, and we can rest together. Come, my husband, come!” + +There was something diabolically sweet in her tones--something of the +tingling of glass when struck--which rang through the brains even of us +who heard the words addressed to another. As for Arthur, he seemed under +a spell; moving his hands from his face, he opened wide his arms. She +was leaping for them, when Van Helsing sprang forward and held between +them his little golden crucifix. She recoiled from it, and, with a +suddenly distorted face, full of rage, dashed past him as if to enter +the tomb. + +When within a foot or two of the door, however, she stopped, as if +arrested by some irresistible force. Then she turned, and her face was +shown in the clear burst of moonlight and by the lamp, which had now no +quiver from Van Helsing’s iron nerves. Never did I see such baffled +malice on a face; and never, I trust, shall such ever be seen again by +mortal eyes. The beautiful colour became livid, the eyes seemed to throw +out sparks of hell-fire, the brows were wrinkled as though the folds of +the flesh were the coils of Medusa’s snakes, and the lovely, +blood-stained mouth grew to an open square, as in the passion masks of +the Greeks and Japanese. If ever a face meant death--if looks could +kill--we saw it at that moment. + +And so for full half a minute, which seemed an eternity, she remained +between the lifted crucifix and the sacred closing of her means of +entry. Van Helsing broke the silence by asking Arthur:-- + +“Answer me, oh my friend! Am I to proceed in my work?” + +Arthur threw himself on his knees, and hid his face in his hands, as he +answered:-- + +“Do as you will, friend; do as you will. There can be no horror like +this ever any more;” and he groaned in spirit. Quincey and I +simultaneously moved towards him, and took his arms. We could hear the +click of the closing lantern as Van Helsing held it down; coming close +to the tomb, he began to remove from the chinks some of the sacred +emblem which he had placed there. We all looked on in horrified +amazement as we saw, when he stood back, the woman, with a corporeal +body as real at that moment as our own, pass in through the interstice +where scarce a knife-blade could have gone. We all felt a glad sense of +relief when we saw the Professor calmly restoring the strings of putty +to the edges of the door. + +When this was done, he lifted the child and said: + +“Come now, my friends; we can do no more till to-morrow. There is a +funeral at noon, so here we shall all come before long after that. The +friends of the dead will all be gone by two, and when the sexton lock +the gate we shall remain. Then there is more to do; but not like this of +to-night. As for this little one, he is not much harm, and by to-morrow +night he shall be well. We shall leave him where the police will find +him, as on the other night; and then to home.” Coming close to Arthur, +he said:-- + +“My friend Arthur, you have had a sore trial; but after, when you look +back, you will see how it was necessary. You are now in the bitter +waters, my child. By this time to-morrow you will, please God, have +passed them, and have drunk of the sweet waters; so do not mourn +overmuch. Till then I shall not ask you to forgive me.” + +Arthur and Quincey came home with me, and we tried to cheer each other +on the way. We had left the child in safety, and were tired; so we all +slept with more or less reality of sleep. + + * * * * * + +_29 September, night._--A little before twelve o’clock we three--Arthur, +Quincey Morris, and myself--called for the Professor. It was odd to +notice that by common consent we had all put on black clothes. Of +course, Arthur wore black, for he was in deep mourning, but the rest of +us wore it by instinct. We got to the churchyard by half-past one, and +strolled about, keeping out of official observation, so that when the +gravediggers had completed their task and the sexton under the belief +that every one had gone, had locked the gate, we had the place all to +ourselves. Van Helsing, instead of his little black bag, had with him a +long leather one, something like a cricketing bag; it was manifestly of +fair weight. + +When we were alone and had heard the last of the footsteps die out up +the road, we silently, and as if by ordered intention, followed the +Professor to the tomb. He unlocked the door, and we entered, closing it +behind us. Then he took from his bag the lantern, which he lit, and also +two wax candles, which, when lighted, he stuck, by melting their own +ends, on other coffins, so that they might give light sufficient to work +by. When he again lifted the lid off Lucy’s coffin we all looked--Arthur +trembling like an aspen--and saw that the body lay there in all its +death-beauty. But there was no love in my own heart, nothing but +loathing for the foul Thing which had taken Lucy’s shape without her +soul. I could see even Arthur’s face grow hard as he looked. Presently +he said to Van Helsing:-- + +“Is this really Lucy’s body, or only a demon in her shape?” + +“It is her body, and yet not it. But wait a while, and you all see her +as she was, and is.” + +She seemed like a nightmare of Lucy as she lay there; the pointed teeth, +the bloodstained, voluptuous mouth--which it made one shudder to +see--the whole carnal and unspiritual appearance, seeming like a +devilish mockery of Lucy’s sweet purity. Van Helsing, with his usual +methodicalness, began taking the various contents from his bag and +placing them ready for use. First he took out a soldering iron and some +plumbing solder, and then a small oil-lamp, which gave out, when lit in +a corner of the tomb, gas which burned at fierce heat with a blue +flame; then his operating knives, which he placed to hand; and last a +round wooden stake, some two and a half or three inches thick and about +three feet long. One end of it was hardened by charring in the fire, and +was sharpened to a fine point. With this stake came a heavy hammer, such +as in households is used in the coal-cellar for breaking the lumps. To +me, a doctor’s preparations for work of any kind are stimulating and +bracing, but the effect of these things on both Arthur and Quincey was +to cause them a sort of consternation. They both, however, kept their +courage, and remained silent and quiet. + +When all was ready, Van Helsing said:-- + +“Before we do anything, let me tell you this; it is out of the lore and +experience of the ancients and of all those who have studied the powers +of the Un-Dead. When they become such, there comes with the change the +curse of immortality; they cannot die, but must go on age after age +adding new victims and multiplying the evils of the world; for all that +die from the preying of the Un-Dead becomes themselves Un-Dead, and prey +on their kind. And so the circle goes on ever widening, like as the +ripples from a stone thrown in the water. Friend Arthur, if you had met +that kiss which you know of before poor Lucy die; or again, last night +when you open your arms to her, you would in time, when you had died, +have become _nosferatu_, as they call it in Eastern Europe, and would +all time make more of those Un-Deads that so have fill us with horror. +The career of this so unhappy dear lady is but just begun. Those +children whose blood she suck are not as yet so much the worse; but if +she live on, Un-Dead, more and more they lose their blood and by her +power over them they come to her; and so she draw their blood with that +so wicked mouth. But if she die in truth, then all cease; the tiny +wounds of the throats disappear, and they go back to their plays +unknowing ever of what has been. But of the most blessed of all, when +this now Un-Dead be made to rest as true dead, then the soul of the poor +lady whom we love shall again be free. Instead of working wickedness by +night and growing more debased in the assimilating of it by day, she +shall take her place with the other Angels. So that, my friend, it will +be a blessed hand for her that shall strike the blow that sets her free. +To this I am willing; but is there none amongst us who has a better +right? Will it be no joy to think of hereafter in the silence of the +night when sleep is not: ‘It was my hand that sent her to the stars; it +was the hand of him that loved her best; the hand that of all she would +herself have chosen, had it been to her to choose?’ Tell me if there be +such a one amongst us?” + +We all looked at Arthur. He saw, too, what we all did, the infinite +kindness which suggested that his should be the hand which would restore +Lucy to us as a holy, and not an unholy, memory; he stepped forward and +said bravely, though his hand trembled, and his face was as pale as +snow:-- + +“My true friend, from the bottom of my broken heart I thank you. Tell me +what I am to do, and I shall not falter!” Van Helsing laid a hand on his +shoulder, and said:-- + +“Brave lad! A moment’s courage, and it is done. This stake must be +driven through her. It will be a fearful ordeal--be not deceived in +that--but it will be only a short time, and you will then rejoice more +than your pain was great; from this grim tomb you will emerge as though +you tread on air. But you must not falter when once you have begun. Only +think that we, your true friends, are round you, and that we pray for +you all the time.” + +“Go on,” said Arthur hoarsely. “Tell me what I am to do.” + +“Take this stake in your left hand, ready to place the point over the +heart, and the hammer in your right. Then when we begin our prayer for +the dead--I shall read him, I have here the book, and the others shall +follow--strike in God’s name, that so all may be well with the dead that +we love and that the Un-Dead pass away.” + +Arthur took the stake and the hammer, and when once his mind was set on +action his hands never trembled nor even quivered. Van Helsing opened +his missal and began to read, and Quincey and I followed as well as we +could. Arthur placed the point over the heart, and as I looked I could +see its dint in the white flesh. Then he struck with all his might. + +The Thing in the coffin writhed; and a hideous, blood-curdling screech +came from the opened red lips. The body shook and quivered and twisted +in wild contortions; the sharp white teeth champed together till the +lips were cut, and the mouth was smeared with a crimson foam. But Arthur +never faltered. He looked like a figure of Thor as his untrembling arm +rose and fell, driving deeper and deeper the mercy-bearing stake, whilst +the blood from the pierced heart welled and spurted up around it. His +face was set, and high duty seemed to shine through it; the sight of it +gave us courage so that our voices seemed to ring through the little +vault. + +And then the writhing and quivering of the body became less, and the +teeth seemed to champ, and the face to quiver. Finally it lay still. The +terrible task was over. + +The hammer fell from Arthur’s hand. He reeled and would have fallen had +we not caught him. The great drops of sweat sprang from his forehead, +and his breath came in broken gasps. It had indeed been an awful strain +on him; and had he not been forced to his task by more than human +considerations he could never have gone through with it. For a few +minutes we were so taken up with him that we did not look towards the +coffin. When we did, however, a murmur of startled surprise ran from one +to the other of us. We gazed so eagerly that Arthur rose, for he had +been seated on the ground, and came and looked too; and then a glad, +strange light broke over his face and dispelled altogether the gloom of +horror that lay upon it. + +There, in the coffin lay no longer the foul Thing that we had so dreaded +and grown to hate that the work of her destruction was yielded as a +privilege to the one best entitled to it, but Lucy as we had seen her in +her life, with her face of unequalled sweetness and purity. True that +there were there, as we had seen them in life, the traces of care and +pain and waste; but these were all dear to us, for they marked her truth +to what we knew. One and all we felt that the holy calm that lay like +sunshine over the wasted face and form was only an earthly token and +symbol of the calm that was to reign for ever. + +Van Helsing came and laid his hand on Arthur’s shoulder, and said to +him:-- + +“And now, Arthur my friend, dear lad, am I not forgiven?” + +The reaction of the terrible strain came as he took the old man’s hand +in his, and raising it to his lips, pressed it, and said:-- + +“Forgiven! God bless you that you have given my dear one her soul again, +and me peace.” He put his hands on the Professor’s shoulder, and laying +his head on his breast, cried for a while silently, whilst we stood +unmoving. When he raised his head Van Helsing said to him:-- + +“And now, my child, you may kiss her. Kiss her dead lips if you will, as +she would have you to, if for her to choose. For she is not a grinning +devil now--not any more a foul Thing for all eternity. No longer she is +the devil’s Un-Dead. She is God’s true dead, whose soul is with Him!” + +Arthur bent and kissed her, and then we sent him and Quincey out of the +tomb; the Professor and I sawed the top off the stake, leaving the point +of it in the body. Then we cut off the head and filled the mouth with +garlic. We soldered up the leaden coffin, screwed on the coffin-lid, +and gathering up our belongings, came away. When the Professor locked +the door he gave the key to Arthur. + +Outside the air was sweet, the sun shone, and the birds sang, and it +seemed as if all nature were tuned to a different pitch. There was +gladness and mirth and peace everywhere, for we were at rest ourselves +on one account, and we were glad, though it was with a tempered joy. + +Before we moved away Van Helsing said:-- + +“Now, my friends, one step of our work is done, one the most harrowing +to ourselves. But there remains a greater task: to find out the author +of all this our sorrow and to stamp him out. I have clues which we can +follow; but it is a long task, and a difficult, and there is danger in +it, and pain. Shall you not all help me? We have learned to believe, all +of us--is it not so? And since so, do we not see our duty? Yes! And do +we not promise to go on to the bitter end?” + +Each in turn, we took his hand, and the promise was made. Then said the +Professor as we moved off:-- + +“Two nights hence you shall meet with me and dine together at seven of +the clock with friend John. I shall entreat two others, two that you +know not as yet; and I shall be ready to all our work show and our plans +unfold. Friend John, you come with me home, for I have much to consult +about, and you can help me. To-night I leave for Amsterdam, but shall +return to-morrow night. And then begins our great quest. But first I +shall have much to say, so that you may know what is to do and to dread. +Then our promise shall be made to each other anew; for there is a +terrible task before us, and once our feet are on the ploughshare we +must not draw back.” + + + + +CHAPTER XVII + +DR. SEWARD’S DIARY--_continued_ + + +When we arrived at the Berkeley Hotel, Van Helsing found a telegram +waiting for him:-- + + “Am coming up by train. Jonathan at Whitby. Important news.--MINA + HARKER.” + +The Professor was delighted. “Ah, that wonderful Madam Mina,” he said, +“pearl among women! She arrive, but I cannot stay. She must go to your +house, friend John. You must meet her at the station. Telegraph her _en +route_, so that she may be prepared.” + +When the wire was despatched he had a cup of tea; over it he told me of +a diary kept by Jonathan Harker when abroad, and gave me a typewritten +copy of it, as also of Mrs. Harker’s diary at Whitby. “Take these,” he +said, “and study them well. When I have returned you will be master of +all the facts, and we can then better enter on our inquisition. Keep +them safe, for there is in them much of treasure. You will need all your +faith, even you who have had such an experience as that of to-day. What +is here told,” he laid his hand heavily and gravely on the packet of +papers as he spoke, “may be the beginning of the end to you and me and +many another; or it may sound the knell of the Un-Dead who walk the +earth. Read all, I pray you, with the open mind; and if you can add in +any way to the story here told do so, for it is all-important. You have +kept diary of all these so strange things; is it not so? Yes! Then we +shall go through all these together when we meet.” He then made ready +for his departure, and shortly after drove off to Liverpool Street. I +took my way to Paddington, where I arrived about fifteen minutes before +the train came in. + +The crowd melted away, after the bustling fashion common to arrival +platforms; and I was beginning to feel uneasy, lest I might miss my +guest, when a sweet-faced, dainty-looking girl stepped up to me, and, +after a quick glance, said: “Dr. Seward, is it not?” + +“And you are Mrs. Harker!” I answered at once; whereupon she held out +her hand. + +“I knew you from the description of poor dear Lucy; but----” She stopped +suddenly, and a quick blush overspread her face. + +The blush that rose to my own cheeks somehow set us both at ease, for it +was a tacit answer to her own. I got her luggage, which included a +typewriter, and we took the Underground to Fenchurch Street, after I had +sent a wire to my housekeeper to have a sitting-room and bedroom +prepared at once for Mrs. Harker. + +In due time we arrived. She knew, of course, that the place was a +lunatic asylum, but I could see that she was unable to repress a shudder +when we entered. + +She told me that, if she might, she would come presently to my study, as +she had much to say. So here I am finishing my entry in my phonograph +diary whilst I await her. As yet I have not had the chance of looking at +the papers which Van Helsing left with me, though they lie open before +me. I must get her interested in something, so that I may have an +opportunity of reading them. She does not know how precious time is, or +what a task we have in hand. I must be careful not to frighten her. Here +she is! + + +_Mina Harker’s Journal._ + +_29 September._--After I had tidied myself, I went down to Dr. Seward’s +study. At the door I paused a moment, for I thought I heard him talking +with some one. As, however, he had pressed me to be quick, I knocked at +the door, and on his calling out, “Come in,” I entered. + +To my intense surprise, there was no one with him. He was quite alone, +and on the table opposite him was what I knew at once from the +description to be a phonograph. I had never seen one, and was much +interested. + +“I hope I did not keep you waiting,” I said; “but I stayed at the door +as I heard you talking, and thought there was some one with you.” + +“Oh,” he replied with a smile, “I was only entering my diary.” + +“Your diary?” I asked him in surprise. + +“Yes,” he answered. “I keep it in this.” As he spoke he laid his hand on +the phonograph. I felt quite excited over it, and blurted out:-- + +“Why, this beats even shorthand! May I hear it say something?” + +“Certainly,” he replied with alacrity, and stood up to put it in train +for speaking. Then he paused, and a troubled look overspread his face. + +“The fact is,” he began awkwardly, “I only keep my diary in it; and as +it is entirely--almost entirely--about my cases, it may be awkward--that +is, I mean----” He stopped, and I tried to help him out of his +embarrassment:-- + +“You helped to attend dear Lucy at the end. Let me hear how she died; +for all that I know of her, I shall be very grateful. She was very, very +dear to me.” + +To my surprise, he answered, with a horrorstruck look in his face:-- + +“Tell you of her death? Not for the wide world!” + +“Why not?” I asked, for some grave, terrible feeling was coming over me. +Again he paused, and I could see that he was trying to invent an excuse. +At length he stammered out:-- + +“You see, I do not know how to pick out any particular part of the +diary.” Even while he was speaking an idea dawned upon him, and he said +with unconscious simplicity, in a different voice, and with the naïveté +of a child: “That’s quite true, upon my honour. Honest Indian!” I could +not but smile, at which he grimaced. “I gave myself away that time!” he +said. “But do you know that, although I have kept the diary for months +past, it never once struck me how I was going to find any particular +part of it in case I wanted to look it up?” By this time my mind was +made up that the diary of a doctor who attended Lucy might have +something to add to the sum of our knowledge of that terrible Being, and +I said boldly:-- + +“Then, Dr. Seward, you had better let me copy it out for you on my +typewriter.” He grew to a positively deathly pallor as he said:-- + +“No! no! no! For all the world, I wouldn’t let you know that terrible +story!” + +Then it was terrible; my intuition was right! For a moment I thought, +and as my eyes ranged the room, unconsciously looking for something or +some opportunity to aid me, they lit on a great batch of typewriting on +the table. His eyes caught the look in mine, and, without his thinking, +followed their direction. As they saw the parcel he realised my meaning. + +“You do not know me,” I said. “When you have read those papers--my own +diary and my husband’s also, which I have typed--you will know me +better. I have not faltered in giving every thought of my own heart in +this cause; but, of course, you do not know me--yet; and I must not +expect you to trust me so far.” + +He is certainly a man of noble nature; poor dear Lucy was right about +him. He stood up and opened a large drawer, in which were arranged in +order a number of hollow cylinders of metal covered with dark wax, and +said:-- + +“You are quite right. I did not trust you because I did not know you. +But I know you now; and let me say that I should have known you long +ago. I know that Lucy told you of me; she told me of you too. May I make +the only atonement in my power? Take the cylinders and hear them--the +first half-dozen of them are personal to me, and they will not horrify +you; then you will know me better. Dinner will by then be ready. In the +meantime I shall read over some of these documents, and shall be better +able to understand certain things.” He carried the phonograph himself up +to my sitting-room and adjusted it for me. Now I shall learn something +pleasant, I am sure; for it will tell me the other side of a true love +episode of which I know one side already.... + + +_Dr. Seward’s Diary._ + +_29 September._--I was so absorbed in that wonderful diary of Jonathan +Harker and that other of his wife that I let the time run on without +thinking. Mrs. Harker was not down when the maid came to announce +dinner, so I said: “She is possibly tired; let dinner wait an hour,” and +I went on with my work. I had just finished Mrs. Harker’s diary, when +she came in. She looked sweetly pretty, but very sad, and her eyes were +flushed with crying. This somehow moved me much. Of late I have had +cause for tears, God knows! but the relief of them was denied me; and +now the sight of those sweet eyes, brightened with recent tears, went +straight to my heart. So I said as gently as I could:-- + +“I greatly fear I have distressed you.” + +“Oh, no, not distressed me,” she replied, “but I have been more touched +than I can say by your grief. That is a wonderful machine, but it is +cruelly true. It told me, in its very tones, the anguish of your heart. +It was like a soul crying out to Almighty God. No one must hear them +spoken ever again! See, I have tried to be useful. I have copied out the +words on my typewriter, and none other need now hear your heart beat, as +I did.” + +“No one need ever know, shall ever know,” I said in a low voice. She +laid her hand on mine and said very gravely:-- + +“Ah, but they must!” + +“Must! But why?” I asked. + +“Because it is a part of the terrible story, a part of poor dear Lucy’s +death and all that led to it; because in the struggle which we have +before us to rid the earth of this terrible monster we must have all +the knowledge and all the help which we can get. I think that the +cylinders which you gave me contained more than you intended me to know; +but I can see that there are in your record many lights to this dark +mystery. You will let me help, will you not? I know all up to a certain +point; and I see already, though your diary only took me to 7 September, +how poor Lucy was beset, and how her terrible doom was being wrought +out. Jonathan and I have been working day and night since Professor Van +Helsing saw us. He is gone to Whitby to get more information, and he +will be here to-morrow to help us. We need have no secrets amongst us; +working together and with absolute trust, we can surely be stronger than +if some of us were in the dark.” She looked at me so appealingly, and at +the same time manifested such courage and resolution in her bearing, +that I gave in at once to her wishes. “You shall,” I said, “do as you +like in the matter. God forgive me if I do wrong! There are terrible +things yet to learn of; but if you have so far travelled on the road to +poor Lucy’s death, you will not be content, I know, to remain in the +dark. Nay, the end--the very end--may give you a gleam of peace. Come, +there is dinner. We must keep one another strong for what is before us; +we have a cruel and dreadful task. When you have eaten you shall learn +the rest, and I shall answer any questions you ask--if there be anything +which you do not understand, though it was apparent to us who were +present.” + + +_Mina Harker’s Journal._ + +_29 September._--After dinner I came with Dr. Seward to his study. He +brought back the phonograph from my room, and I took my typewriter. He +placed me in a comfortable chair, and arranged the phonograph so that I +could touch it without getting up, and showed me how to stop it in case +I should want to pause. Then he very thoughtfully took a chair, with his +back to me, so that I might be as free as possible, and began to read. I +put the forked metal to my ears and listened. + +When the terrible story of Lucy’s death, and--and all that followed, was +done, I lay back in my chair powerless. Fortunately I am not of a +fainting disposition. When Dr. Seward saw me he jumped up with a +horrified exclamation, and hurriedly taking a case-bottle from a +cupboard, gave me some brandy, which in a few minutes somewhat restored +me. My brain was all in a whirl, and only that there came through all +the multitude of horrors, the holy ray of light that my dear, dear Lucy +was at last at peace, I do not think I could have borne it without +making a scene. It is all so wild, and mysterious, and strange that if I +had not known Jonathan’s experience in Transylvania I could not have +believed. As it was, I didn’t know what to believe, and so got out of my +difficulty by attending to something else. I took the cover off my +typewriter, and said to Dr. Seward:-- + +“Let me write this all out now. We must be ready for Dr. Van Helsing +when he comes. I have sent a telegram to Jonathan to come on here when +he arrives in London from Whitby. In this matter dates are everything, +and I think that if we get all our material ready, and have every item +put in chronological order, we shall have done much. You tell me that +Lord Godalming and Mr. Morris are coming too. Let us be able to tell him +when they come.” He accordingly set the phonograph at a slow pace, and I +began to typewrite from the beginning of the seventh cylinder. I used +manifold, and so took three copies of the diary, just as I had done with +all the rest. It was late when I got through, but Dr. Seward went about +his work of going his round of the patients; when he had finished he +came back and sat near me, reading, so that I did not feel too lonely +whilst I worked. How good and thoughtful he is; the world seems full of +good men--even if there _are_ monsters in it. Before I left him I +remembered what Jonathan put in his diary of the Professor’s +perturbation at reading something in an evening paper at the station at +Exeter; so, seeing that Dr. Seward keeps his newspapers, I borrowed the +files of “The Westminster Gazette” and “The Pall Mall Gazette,” and took +them to my room. I remember how much “The Dailygraph” and “The Whitby +Gazette,” of which I had made cuttings, helped us to understand the +terrible events at Whitby when Count Dracula landed, so I shall look +through the evening papers since then, and perhaps I shall get some new +light. I am not sleepy, and the work will help to keep me quiet. + + +_Dr. Seward’s Diary._ + +_30 September._--Mr. Harker arrived at nine o’clock. He had got his +wife’s wire just before starting. He is uncommonly clever, if one can +judge from his face, and full of energy. If this journal be true--and +judging by one’s own wonderful experiences, it must be--he is also a man +of great nerve. That going down to the vault a second time was a +remarkable piece of daring. After reading his account of it I was +prepared to meet a good specimen of manhood, but hardly the quiet, +business-like gentleman who came here to-day. + + * * * * * + +_Later._--After lunch Harker and his wife went back to their own room, +and as I passed a while ago I heard the click of the typewriter. They +are hard at it. Mrs. Harker says that they are knitting together in +chronological order every scrap of evidence they have. Harker has got +the letters between the consignee of the boxes at Whitby and the +carriers in London who took charge of them. He is now reading his wife’s +typescript of my diary. I wonder what they make out of it. Here it +is.... + + Strange that it never struck me that the very next house might be + the Count’s hiding-place! Goodness knows that we had enough clues + from the conduct of the patient Renfield! The bundle of letters + relating to the purchase of the house were with the typescript. Oh, + if we had only had them earlier we might have saved poor Lucy! + Stop; that way madness lies! Harker has gone back, and is again + collating his material. He says that by dinner-time they will be + able to show a whole connected narrative. He thinks that in the + meantime I should see Renfield, as hitherto he has been a sort of + index to the coming and going of the Count. I hardly see this yet, + but when I get at the dates I suppose I shall. What a good thing + that Mrs. Harker put my cylinders into type! We never could have + found the dates otherwise.... + + I found Renfield sitting placidly in his room with his hands + folded, smiling benignly. At the moment he seemed as sane as any + one I ever saw. I sat down and talked with him on a lot of + subjects, all of which he treated naturally. He then, of his own + accord, spoke of going home, a subject he has never mentioned to my + knowledge during his sojourn here. In fact, he spoke quite + confidently of getting his discharge at once. I believe that, had I + not had the chat with Harker and read the letters and the dates of + his outbursts, I should have been prepared to sign for him after a + brief time of observation. As it is, I am darkly suspicious. All + those outbreaks were in some way linked with the proximity of the + Count. What then does this absolute content mean? Can it be that + his instinct is satisfied as to the vampire’s ultimate triumph? + Stay; he is himself zoöphagous, and in his wild ravings outside the + chapel door of the deserted house he always spoke of “master.” This + all seems confirmation of our idea. However, after a while I came + away; my friend is just a little too sane at present to make it + safe to probe him too deep with questions. He might begin to think, + and then--! So I came away. I mistrust these quiet moods of his; so + I have given the attendant a hint to look closely after him, and to + have a strait-waistcoat ready in case of need. + + +_Jonathan Harker’s Journal._ + +_29 September, in train to London._--When I received Mr. Billington’s +courteous message that he would give me any information in his power I +thought it best to go down to Whitby and make, on the spot, such +inquiries as I wanted. It was now my object to trace that horrid cargo +of the Count’s to its place in London. Later, we may be able to deal +with it. Billington junior, a nice lad, met me at the station, and +brought me to his father’s house, where they had decided that I must +stay the night. They are hospitable, with true Yorkshire hospitality: +give a guest everything, and leave him free to do as he likes. They all +knew that I was busy, and that my stay was short, and Mr. Billington had +ready in his office all the papers concerning the consignment of boxes. +It gave me almost a turn to see again one of the letters which I had +seen on the Count’s table before I knew of his diabolical plans. +Everything had been carefully thought out, and done systematically and +with precision. He seemed to have been prepared for every obstacle which +might be placed by accident in the way of his intentions being carried +out. To use an Americanism, he had “taken no chances,” and the absolute +accuracy with which his instructions were fulfilled, was simply the +logical result of his care. I saw the invoice, and took note of it: +“Fifty cases of common earth, to be used for experimental purposes.” +Also the copy of letter to Carter Paterson, and their reply; of both of +these I got copies. This was all the information Mr. Billington could +give me, so I went down to the port and saw the coastguards, the Customs +officers and the harbour-master. They had all something to say of the +strange entry of the ship, which is already taking its place in local +tradition; but no one could add to the simple description “Fifty cases +of common earth.” I then saw the station-master, who kindly put me in +communication with the men who had actually received the boxes. Their +tally was exact with the list, and they had nothing to add except that +the boxes were “main and mortal heavy,” and that shifting them was dry +work. One of them added that it was hard lines that there wasn’t any +gentleman “such-like as yourself, squire,” to show some sort of +appreciation of their efforts in a liquid form; another put in a rider +that the thirst then generated was such that even the time which had +elapsed had not completely allayed it. Needless to add, I took care +before leaving to lift, for ever and adequately, this source of +reproach. + + * * * * * + +_30 September._--The station-master was good enough to give me a line to +his old companion the station-master at King’s Cross, so that when I +arrived there in the morning I was able to ask him about the arrival of +the boxes. He, too, put me at once in communication with the proper +officials, and I saw that their tally was correct with the original +invoice. The opportunities of acquiring an abnormal thirst had been here +limited; a noble use of them had, however, been made, and again I was +compelled to deal with the result in an _ex post facto_ manner. + +From thence I went on to Carter Paterson’s central office, where I met +with the utmost courtesy. They looked up the transaction in their +day-book and letter-book, and at once telephoned to their King’s Cross +office for more details. By good fortune, the men who did the teaming +were waiting for work, and the official at once sent them over, sending +also by one of them the way-bill and all the papers connected with the +delivery of the boxes at Carfax. Here again I found the tally agreeing +exactly; the carriers’ men were able to supplement the paucity of the +written words with a few details. These were, I shortly found, connected +almost solely with the dusty nature of the job, and of the consequent +thirst engendered in the operators. On my affording an opportunity, +through the medium of the currency of the realm, of the allaying, at a +later period, this beneficial evil, one of the men remarked:-- + +“That ’ere ’ouse, guv’nor, is the rummiest I ever was in. Blyme! but it +ain’t been touched sence a hundred years. There was dust that thick in +the place that you might have slep’ on it without ’urtin’ of yer bones; +an’ the place was that neglected that yer might ’ave smelled ole +Jerusalem in it. But the ole chapel--that took the cike, that did! Me +and my mate, we thort we wouldn’t never git out quick enough. Lor’, I +wouldn’t take less nor a quid a moment to stay there arter dark.” + +Having been in the house, I could well believe him; but if he knew what +I know, he would, I think, have raised his terms. + +Of one thing I am now satisfied: that _all_ the boxes which arrived at +Whitby from Varna in the _Demeter_ were safely deposited in the old +chapel at Carfax. There should be fifty of them there, unless any have +since been removed--as from Dr. Seward’s diary I fear. + +I shall try to see the carter who took away the boxes from Carfax when +Renfield attacked them. By following up this clue we may learn a good +deal. + + * * * * * + +_Later._--Mina and I have worked all day, and we have put all the papers +into order. + + +_Mina Harker’s Journal_ + +_30 September._--I am so glad that I hardly know how to contain myself. +It is, I suppose, the reaction from the haunting fear which I have had: +that this terrible affair and the reopening of his old wound might act +detrimentally on Jonathan. I saw him leave for Whitby with as brave a +face as I could, but I was sick with apprehension. The effort has, +however, done him good. He was never so resolute, never so strong, never +so full of volcanic energy, as at present. It is just as that dear, good +Professor Van Helsing said: he is true grit, and he improves under +strain that would kill a weaker nature. He came back full of life and +hope and determination; we have got everything in order for to-night. I +feel myself quite wild with excitement. I suppose one ought to pity any +thing so hunted as is the Count. That is just it: this Thing is not +human--not even beast. To read Dr. Seward’s account of poor Lucy’s +death, and what followed, is enough to dry up the springs of pity in +one’s heart. + + * * * * * + +_Later._--Lord Godalming and Mr. Morris arrived earlier than we +expected. Dr. Seward was out on business, and had taken Jonathan with +him, so I had to see them. It was to me a painful meeting, for it +brought back all poor dear Lucy’s hopes of only a few months ago. Of +course they had heard Lucy speak of me, and it seemed that Dr. Van +Helsing, too, has been quite “blowing my trumpet,” as Mr. Morris +expressed it. Poor fellows, neither of them is aware that I know all +about the proposals they made to Lucy. They did not quite know what to +say or do, as they were ignorant of the amount of my knowledge; so they +had to keep on neutral subjects. However, I thought the matter over, and +came to the conclusion that the best thing I could do would be to post +them in affairs right up to date. I knew from Dr. Seward’s diary that +they had been at Lucy’s death--her real death--and that I need not fear +to betray any secret before the time. So I told them, as well as I +could, that I had read all the papers and diaries, and that my husband +and I, having typewritten them, had just finished putting them in order. +I gave them each a copy to read in the library. When Lord Godalming got +his and turned it over--it does make a pretty good pile--he said:-- + +“Did you write all this, Mrs. Harker?” + +I nodded, and he went on:-- + +“I don’t quite see the drift of it; but you people are all so good and +kind, and have been working so earnestly and so energetically, that all +I can do is to accept your ideas blindfold and try to help you. I have +had one lesson already in accepting facts that should make a man humble +to the last hour of his life. Besides, I know you loved my poor Lucy--” +Here he turned away and covered his face with his hands. I could hear +the tears in his voice. Mr. Morris, with instinctive delicacy, just laid +a hand for a moment on his shoulder, and then walked quietly out of the +room. I suppose there is something in woman’s nature that makes a man +free to break down before her and express his feelings on the tender or +emotional side without feeling it derogatory to his manhood; for when +Lord Godalming found himself alone with me he sat down on the sofa and +gave way utterly and openly. I sat down beside him and took his hand. I +hope he didn’t think it forward of me, and that if he ever thinks of it +afterwards he never will have such a thought. There I wrong him; I +_know_ he never will--he is too true a gentleman. I said to him, for I +could see that his heart was breaking:-- + +“I loved dear Lucy, and I know what she was to you, and what you were to +her. She and I were like sisters; and now she is gone, will you not let +me be like a sister to you in your trouble? I know what sorrows you have +had, though I cannot measure the depth of them. If sympathy and pity can +help in your affliction, won’t you let me be of some little service--for +Lucy’s sake?” + +In an instant the poor dear fellow was overwhelmed with grief. It seemed +to me that all that he had of late been suffering in silence found a +vent at once. He grew quite hysterical, and raising his open hands, beat +his palms together in a perfect agony of grief. He stood up and then sat +down again, and the tears rained down his cheeks. I felt an infinite +pity for him, and opened my arms unthinkingly. With a sob he laid his +head on my shoulder and cried like a wearied child, whilst he shook with +emotion. + +We women have something of the mother in us that makes us rise above +smaller matters when the mother-spirit is invoked; I felt this big +sorrowing man’s head resting on me, as though it were that of the baby +that some day may lie on my bosom, and I stroked his hair as though he +were my own child. I never thought at the time how strange it all was. + +After a little bit his sobs ceased, and he raised himself with an +apology, though he made no disguise of his emotion. He told me that for +days and nights past--weary days and sleepless nights--he had been +unable to speak with any one, as a man must speak in his time of +sorrow. There was no woman whose sympathy could be given to him, or with +whom, owing to the terrible circumstance with which his sorrow was +surrounded, he could speak freely. “I know now how I suffered,” he said, +as he dried his eyes, “but I do not know even yet--and none other can +ever know--how much your sweet sympathy has been to me to-day. I shall +know better in time; and believe me that, though I am not ungrateful +now, my gratitude will grow with my understanding. You will let me be +like a brother, will you not, for all our lives--for dear Lucy’s sake?” + +“For dear Lucy’s sake,” I said as we clasped hands. “Ay, and for your +own sake,” he added, “for if a man’s esteem and gratitude are ever worth +the winning, you have won mine to-day. If ever the future should bring +to you a time when you need a man’s help, believe me, you will not call +in vain. God grant that no such time may ever come to you to break the +sunshine of your life; but if it should ever come, promise me that you +will let me know.” He was so earnest, and his sorrow was so fresh, that +I felt it would comfort him, so I said:-- + +“I promise.” + +As I came along the corridor I saw Mr. Morris looking out of a window. +He turned as he heard my footsteps. “How is Art?” he said. Then noticing +my red eyes, he went on: “Ah, I see you have been comforting him. Poor +old fellow! he needs it. No one but a woman can help a man when he is in +trouble of the heart; and he had no one to comfort him.” + +He bore his own trouble so bravely that my heart bled for him. I saw the +manuscript in his hand, and I knew that when he read it he would realise +how much I knew; so I said to him:-- + +“I wish I could comfort all who suffer from the heart. Will you let me +be your friend, and will you come to me for comfort if you need it? You +will know, later on, why I speak.” He saw that I was in earnest, and +stooping, took my hand, and raising it to his lips, kissed it. It seemed +but poor comfort to so brave and unselfish a soul, and impulsively I +bent over and kissed him. The tears rose in his eyes, and there was a +momentary choking in his throat; he said quite calmly:-- + +“Little girl, you will never regret that true-hearted kindness, so long +as ever you live!” Then he went into the study to his friend. + +“Little girl!”--the very words he had used to Lucy, and oh, but he +proved himself a friend! + + + + +CHAPTER XVIII + +DR. SEWARD’S DIARY + + +_30 September._--I got home at five o’clock, and found that Godalming +and Morris had not only arrived, but had already studied the transcript +of the various diaries and letters which Harker and his wonderful wife +had made and arranged. Harker had not yet returned from his visit to the +carriers’ men, of whom Dr. Hennessey had written to me. Mrs. Harker gave +us a cup of tea, and I can honestly say that, for the first time since I +have lived in it, this old house seemed like _home_. When we had +finished, Mrs. Harker said:-- + +“Dr. Seward, may I ask a favour? I want to see your patient, Mr. +Renfield. Do let me see him. What you have said of him in your diary +interests me so much!” She looked so appealing and so pretty that I +could not refuse her, and there was no possible reason why I should; so +I took her with me. When I went into the room, I told the man that a +lady would like to see him; to which he simply answered: “Why?” + +“She is going through the house, and wants to see every one in it,” I +answered. “Oh, very well,” he said; “let her come in, by all means; but +just wait a minute till I tidy up the place.” His method of tidying was +peculiar: he simply swallowed all the flies and spiders in the boxes +before I could stop him. It was quite evident that he feared, or was +jealous of, some interference. When he had got through his disgusting +task, he said cheerfully: “Let the lady come in,” and sat down on the +edge of his bed with his head down, but with his eyelids raised so that +he could see her as she entered. For a moment I thought that he might +have some homicidal intent; I remembered how quiet he had been just +before he attacked me in my own study, and I took care to stand where I +could seize him at once if he attempted to make a spring at her. She +came into the room with an easy gracefulness which would at once command +the respect of any lunatic--for easiness is one of the qualities mad +people most respect. She walked over to him, smiling pleasantly, and +held out her hand. + +“Good-evening, Mr. Renfield,” said she. “You see, I know you, for Dr. +Seward has told me of you.” He made no immediate reply, but eyed her all +over intently with a set frown on his face. This look gave way to one +of wonder, which merged in doubt; then, to my intense astonishment, he +said:-- + +“You’re not the girl the doctor wanted to marry, are you? You can’t be, +you know, for she’s dead.” Mrs. Harker smiled sweetly as she replied:-- + +“Oh no! I have a husband of my own, to whom I was married before I ever +saw Dr. Seward, or he me. I am Mrs. Harker.” + +“Then what are you doing here?” + +“My husband and I are staying on a visit with Dr. Seward.” + +“Then don’t stay.” + +“But why not?” I thought that this style of conversation might not be +pleasant to Mrs. Harker, any more than it was to me, so I joined in:-- + +“How did you know I wanted to marry any one?” His reply was simply +contemptuous, given in a pause in which he turned his eyes from Mrs. +Harker to me, instantly turning them back again:-- + +“What an asinine question!” + +“I don’t see that at all, Mr. Renfield,” said Mrs. Harker, at once +championing me. He replied to her with as much courtesy and respect as +he had shown contempt to me:-- + +“You will, of course, understand, Mrs. Harker, that when a man is so +loved and honoured as our host is, everything regarding him is of +interest in our little community. Dr. Seward is loved not only by his +household and his friends, but even by his patients, who, being some of +them hardly in mental equilibrium, are apt to distort causes and +effects. Since I myself have been an inmate of a lunatic asylum, I +cannot but notice that the sophistic tendencies of some of its inmates +lean towards the errors of _non causa_ and _ignoratio elenchi_.” I +positively opened my eyes at this new development. Here was my own pet +lunatic--the most pronounced of his type that I had ever met +with--talking elemental philosophy, and with the manner of a polished +gentleman. I wonder if it was Mrs. Harker’s presence which had touched +some chord in his memory. If this new phase was spontaneous, or in any +way due to her unconscious influence, she must have some rare gift or +power. + +We continued to talk for some time; and, seeing that he was seemingly +quite reasonable, she ventured, looking at me questioningly as she +began, to lead him to his favourite topic. I was again astonished, for +he addressed himself to the question with the impartiality of the +completest sanity; he even took himself as an example when he mentioned +certain things. + +“Why, I myself am an instance of a man who had a strange belief. Indeed, +it was no wonder that my friends were alarmed, and insisted on my being +put under control. I used to fancy that life was a positive and +perpetual entity, and that by consuming a multitude of live things, no +matter how low in the scale of creation, one might indefinitely prolong +life. At times I held the belief so strongly that I actually tried to +take human life. The doctor here will bear me out that on one occasion I +tried to kill him for the purpose of strengthening my vital powers by +the assimilation with my own body of his life through the medium of his +blood--relying, of course, upon the Scriptural phrase, ‘For the blood is +the life.’ Though, indeed, the vendor of a certain nostrum has +vulgarised the truism to the very point of contempt. Isn’t that true, +doctor?” I nodded assent, for I was so amazed that I hardly knew what to +either think or say; it was hard to imagine that I had seen him eat up +his spiders and flies not five minutes before. Looking at my watch, I +saw that I should go to the station to meet Van Helsing, so I told Mrs. +Harker that it was time to leave. She came at once, after saying +pleasantly to Mr. Renfield: “Good-bye, and I hope I may see you often, +under auspices pleasanter to yourself,” to which, to my astonishment, he +replied:-- + +“Good-bye, my dear. I pray God I may never see your sweet face again. +May He bless and keep you!” + +When I went to the station to meet Van Helsing I left the boys behind +me. Poor Art seemed more cheerful than he has been since Lucy first took +ill, and Quincey is more like his own bright self than he has been for +many a long day. + +Van Helsing stepped from the carriage with the eager nimbleness of a +boy. He saw me at once, and rushed up to me, saying:-- + +“Ah, friend John, how goes all? Well? So! I have been busy, for I come +here to stay if need be. All affairs are settled with me, and I have +much to tell. Madam Mina is with you? Yes. And her so fine husband? And +Arthur and my friend Quincey, they are with you, too? Good!” + +As I drove to the house I told him of what had passed, and of how my own +diary had come to be of some use through Mrs. Harker’s suggestion; at +which the Professor interrupted me:-- + +“Ah, that wonderful Madam Mina! She has man’s brain--a brain that a man +should have were he much gifted--and a woman’s heart. The good God +fashioned her for a purpose, believe me, when He made that so good +combination. Friend John, up to now fortune has made that woman of help +to us; after to-night she must not have to do with this so terrible +affair. It is not good that she run a risk so great. We men are +determined--nay, are we not pledged?--to destroy this monster; but it is +no part for a woman. Even if she be not harmed, her heart may fail her +in so much and so many horrors; and hereafter she may suffer--both in +waking, from her nerves, and in sleep, from her dreams. And, besides, +she is young woman and not so long married; there may be other things to +think of some time, if not now. You tell me she has wrote all, then she +must consult with us; but to-morrow she say good-bye to this work, and +we go alone.” I agreed heartily with him, and then I told him what we +had found in his absence: that the house which Dracula had bought was +the very next one to my own. He was amazed, and a great concern seemed +to come on him. “Oh that we had known it before!” he said, “for then we +might have reached him in time to save poor Lucy. However, ‘the milk +that is spilt cries not out afterwards,’ as you say. We shall not think +of that, but go on our way to the end.” Then he fell into a silence that +lasted till we entered my own gateway. Before we went to prepare for +dinner he said to Mrs. Harker:-- + +“I am told, Madam Mina, by my friend John that you and your husband have +put up in exact order all things that have been, up to this moment.” + +“Not up to this moment, Professor,” she said impulsively, “but up to +this morning.” + +“But why not up to now? We have seen hitherto how good light all the +little things have made. We have told our secrets, and yet no one who +has told is the worse for it.” + +Mrs. Harker began to blush, and taking a paper from her pockets, she +said:-- + +“Dr. Van Helsing, will you read this, and tell me if it must go in. It +is my record of to-day. I too have seen the need of putting down at +present everything, however trivial; but there is little in this except +what is personal. Must it go in?” The Professor read it over gravely, +and handed it back, saying:-- + +“It need not go in if you do not wish it; but I pray that it may. It can +but make your husband love you the more, and all us, your friends, more +honour you--as well as more esteem and love.” She took it back with +another blush and a bright smile. + +And so now, up to this very hour, all the records we have are complete +and in order. The Professor took away one copy to study after dinner, +and before our meeting, which is fixed for nine o’clock. The rest of us +have already read everything; so when we meet in the study we shall all +be informed as to facts, and can arrange our plan of battle with this +terrible and mysterious enemy. + + +_Mina Harker’s Journal._ + +_30 September._--When we met in Dr. Seward’s study two hours after +dinner, which had been at six o’clock, we unconsciously formed a sort of +board or committee. Professor Van Helsing took the head of the table, to +which Dr. Seward motioned him as he came into the room. He made me sit +next to him on his right, and asked me to act as secretary; Jonathan sat +next to me. Opposite us were Lord Godalming, Dr. Seward, and Mr. +Morris--Lord Godalming being next the Professor, and Dr. Seward in the +centre. The Professor said:-- + +“I may, I suppose, take it that we are all acquainted with the facts +that are in these papers.” We all expressed assent, and he went on:-- + +“Then it were, I think good that I tell you something of the kind of +enemy with which we have to deal. I shall then make known to you +something of the history of this man, which has been ascertained for me. +So we then can discuss how we shall act, and can take our measure +according. + +“There are such beings as vampires; some of us have evidence that they +exist. Even had we not the proof of our own unhappy experience, the +teachings and the records of the past give proof enough for sane +peoples. I admit that at the first I was sceptic. Were it not that +through long years I have train myself to keep an open mind, I could not +have believe until such time as that fact thunder on my ear. ‘See! see! +I prove; I prove.’ Alas! Had I known at the first what now I know--nay, +had I even guess at him--one so precious life had been spared to many of +us who did love her. But that is gone; and we must so work, that other +poor souls perish not, whilst we can save. The _nosferatu_ do not die +like the bee when he sting once. He is only stronger; and being +stronger, have yet more power to work evil. This vampire which is +amongst us is of himself so strong in person as twenty men; he is of +cunning more than mortal, for his cunning be the growth of ages; he have +still the aids of necromancy, which is, as his etymology imply, the +divination by the dead, and all the dead that he can come nigh to are +for him at command; he is brute, and more than brute; he is devil in +callous, and the heart of him is not; he can, within limitations, appear +at will when, and where, and in any of the forms that are to him; he +can, within his range, direct the elements; the storm, the fog, the +thunder; he can command all the meaner things: the rat, and the owl, and +the bat--the moth, and the fox, and the wolf; he can grow and become +small; and he can at times vanish and come unknown. How then are we to +begin our strike to destroy him? How shall we find his where; and having +found it, how can we destroy? My friends, this is much; it is a terrible +task that we undertake, and there may be consequence to make the brave +shudder. For if we fail in this our fight he must surely win; and then +where end we? Life is nothings; I heed him not. But to fail here, is not +mere life or death. It is that we become as him; that we henceforward +become foul things of the night like him--without heart or conscience, +preying on the bodies and the souls of those we love best. To us for +ever are the gates of heaven shut; for who shall open them to us again? +We go on for all time abhorred by all; a blot on the face of God’s +sunshine; an arrow in the side of Him who died for man. But we are face +to face with duty; and in such case must we shrink? For me, I say, no; +but then I am old, and life, with his sunshine, his fair places, his +song of birds, his music and his love, lie far behind. You others are +young. Some have seen sorrow; but there are fair days yet in store. What +say you?” + +Whilst he was speaking, Jonathan had taken my hand. I feared, oh so +much, that the appalling nature of our danger was overcoming him when I +saw his hand stretch out; but it was life to me to feel its touch--so +strong, so self-reliant, so resolute. A brave man’s hand can speak for +itself; it does not even need a woman’s love to hear its music. + +When the Professor had done speaking my husband looked in my eyes, and I +in his; there was no need for speaking between us. + +“I answer for Mina and myself,” he said. + +“Count me in, Professor,” said Mr. Quincey Morris, laconically as usual. + +“I am with you,” said Lord Godalming, “for Lucy’s sake, if for no other +reason.” + +Dr. Seward simply nodded. The Professor stood up and, after laying his +golden crucifix on the table, held out his hand on either side. I took +his right hand, and Lord Godalming his left; Jonathan held my right with +his left and stretched across to Mr. Morris. So as we all took hands our +solemn compact was made. I felt my heart icy cold, but it did not even +occur to me to draw back. We resumed our places, and Dr. Van Helsing +went on with a sort of cheerfulness which showed that the serious work +had begun. It was to be taken as gravely, and in as businesslike a way, +as any other transaction of life:-- + +“Well, you know what we have to contend against; but we, too, are not +without strength. We have on our side power of combination--a power +denied to the vampire kind; we have sources of science; we are free to +act and think; and the hours of the day and the night are ours equally. +In fact, so far as our powers extend, they are unfettered, and we are +free to use them. We have self-devotion in a cause, and an end to +achieve which is not a selfish one. These things are much. + +“Now let us see how far the general powers arrayed against us are +restrict, and how the individual cannot. In fine, let us consider the +limitations of the vampire in general, and of this one in particular. + +“All we have to go upon are traditions and superstitions. These do not +at the first appear much, when the matter is one of life and death--nay +of more than either life or death. Yet must we be satisfied; in the +first place because we have to be--no other means is at our control--and +secondly, because, after all, these things--tradition and +superstition--are everything. Does not the belief in vampires rest for +others--though not, alas! for us--on them? A year ago which of us would +have received such a possibility, in the midst of our scientific, +sceptical, matter-of-fact nineteenth century? We even scouted a belief +that we saw justified under our very eyes. Take it, then, that the +vampire, and the belief in his limitations and his cure, rest for the +moment on the same base. For, let me tell you, he is known everywhere +that men have been. In old Greece, in old Rome; he flourish in Germany +all over, in France, in India, even in the Chernosese; and in China, so +far from us in all ways, there even is he, and the peoples fear him at +this day. He have follow the wake of the berserker Icelander, the +devil-begotten Hun, the Slav, the Saxon, the Magyar. So far, then, we +have all we may act upon; and let me tell you that very much of the +beliefs are justified by what we have seen in our own so unhappy +experience. The vampire live on, and cannot die by mere passing of the +time; he can flourish when that he can fatten on the blood of the +living. Even more, we have seen amongst us that he can even grow +younger; that his vital faculties grow strenuous, and seem as though +they refresh themselves when his special pabulum is plenty. But he +cannot flourish without this diet; he eat not as others. Even friend +Jonathan, who lived with him for weeks, did never see him to eat, never! +He throws no shadow; he make in the mirror no reflect, as again +Jonathan observe. He has the strength of many of his hand--witness again +Jonathan when he shut the door against the wolfs, and when he help him +from the diligence too. He can transform himself to wolf, as we gather +from the ship arrival in Whitby, when he tear open the dog; he can be as +bat, as Madam Mina saw him on the window at Whitby, and as friend John +saw him fly from this so near house, and as my friend Quincey saw him at +the window of Miss Lucy. He can come in mist which he create--that noble +ship’s captain proved him of this; but, from what we know, the distance +he can make this mist is limited, and it can only be round himself. He +come on moonlight rays as elemental dust--as again Jonathan saw those +sisters in the castle of Dracula. He become so small--we ourselves saw +Miss Lucy, ere she was at peace, slip through a hairbreadth space at the +tomb door. He can, when once he find his way, come out from anything or +into anything, no matter how close it be bound or even fused up with +fire--solder you call it. He can see in the dark--no small power this, +in a world which is one half shut from the light. Ah, but hear me +through. He can do all these things, yet he is not free. Nay; he is even +more prisoner than the slave of the galley, than the madman in his cell. +He cannot go where he lists; he who is not of nature has yet to obey +some of nature’s laws--why we know not. He may not enter anywhere at the +first, unless there be some one of the household who bid him to come; +though afterwards he can come as he please. His power ceases, as does +that of all evil things, at the coming of the day. Only at certain times +can he have limited freedom. If he be not at the place whither he is +bound, he can only change himself at noon or at exact sunrise or sunset. +These things are we told, and in this record of ours we have proof by +inference. Thus, whereas he can do as he will within his limit, when he +have his earth-home, his coffin-home, his hell-home, the place +unhallowed, as we saw when he went to the grave of the suicide at +Whitby; still at other time he can only change when the time come. It is +said, too, that he can only pass running water at the slack or the flood +of the tide. Then there are things which so afflict him that he has no +power, as the garlic that we know of; and as for things sacred, as this +symbol, my crucifix, that was amongst us even now when we resolve, to +them he is nothing, but in their presence he take his place far off and +silent with respect. There are others, too, which I shall tell you of, +lest in our seeking we may need them. The branch of wild rose on his +coffin keep him that he move not from it; a sacred bullet fired into the +coffin kill him so that he be true dead; and as for the stake through +him, we know already of its peace; or the cut-off head that giveth rest. +We have seen it with our eyes. + +“Thus when we find the habitation of this man-that-was, we can confine +him to his coffin and destroy him, if we obey what we know. But he is +clever. I have asked my friend Arminius, of Buda-Pesth University, to +make his record; and, from all the means that are, he tell me of what he +has been. He must, indeed, have been that Voivode Dracula who won his +name against the Turk, over the great river on the very frontier of +Turkey-land. If it be so, then was he no common man; for in that time, +and for centuries after, he was spoken of as the cleverest and the most +cunning, as well as the bravest of the sons of the ‘land beyond the +forest.’ That mighty brain and that iron resolution went with him to his +grave, and are even now arrayed against us. The Draculas were, says +Arminius, a great and noble race, though now and again were scions who +were held by their coevals to have had dealings with the Evil One. They +learned his secrets in the Scholomance, amongst the mountains over Lake +Hermanstadt, where the devil claims the tenth scholar as his due. In the +records are such words as ‘stregoica’--witch, ‘ordog,’ and +‘pokol’--Satan and hell; and in one manuscript this very Dracula is +spoken of as ‘wampyr,’ which we all understand too well. There have been +from the loins of this very one great men and good women, and their +graves make sacred the earth where alone this foulness can dwell. For it +is not the least of its terrors that this evil thing is rooted deep in +all good; in soil barren of holy memories it cannot rest.” + +Whilst they were talking Mr. Morris was looking steadily at the window, +and he now got up quietly, and went out of the room. There was a little +pause, and then the Professor went on:-- + +“And now we must settle what we do. We have here much data, and we must +proceed to lay out our campaign. We know from the inquiry of Jonathan +that from the castle to Whitby came fifty boxes of earth, all of which +were delivered at Carfax; we also know that at least some of these boxes +have been removed. It seems to me, that our first step should be to +ascertain whether all the rest remain in the house beyond that wall +where we look to-day; or whether any more have been removed. If the +latter, we must trace----” + +Here we were interrupted in a very startling way. Outside the house came +the sound of a pistol-shot; the glass of the window was shattered with a +bullet, which, ricochetting from the top of the embrasure, struck the +far wall of the room. I am afraid I am at heart a coward, for I shrieked +out. The men all jumped to their feet; Lord Godalming flew over to the +window and threw up the sash. As he did so we heard Mr. Morris’s voice +without:-- + +“Sorry! I fear I have alarmed you. I shall come in and tell you about +it.” A minute later he came in and said:-- + +“It was an idiotic thing of me to do, and I ask your pardon, Mrs. +Harker, most sincerely; I fear I must have frightened you terribly. But +the fact is that whilst the Professor was talking there came a big bat +and sat on the window-sill. I have got such a horror of the damned +brutes from recent events that I cannot stand them, and I went out to +have a shot, as I have been doing of late of evenings, whenever I have +seen one. You used to laugh at me for it then, Art.” + +“Did you hit it?” asked Dr. Van Helsing. + +“I don’t know; I fancy not, for it flew away into the wood.” Without +saying any more he took his seat, and the Professor began to resume his +statement:-- + +“We must trace each of these boxes; and when we are ready, we must +either capture or kill this monster in his lair; or we must, so to +speak, sterilise the earth, so that no more he can seek safety in it. +Thus in the end we may find him in his form of man between the hours of +noon and sunset, and so engage with him when he is at his most weak. + +“And now for you, Madam Mina, this night is the end until all be well. +You are too precious to us to have such risk. When we part to-night, you +no more must question. We shall tell you all in good time. We are men +and are able to bear; but you must be our star and our hope, and we +shall act all the more free that you are not in the danger, such as we +are.” + +All the men, even Jonathan, seemed relieved; but it did not seem to me +good that they should brave danger and, perhaps, lessen their +safety--strength being the best safety--through care of me; but their +minds were made up, and, though it was a bitter pill for me to swallow, +I could say nothing, save to accept their chivalrous care of me. + +Mr. Morris resumed the discussion:-- + +“As there is no time to lose, I vote we have a look at his house right +now. Time is everything with him; and swift action on our part may save +another victim.” + +I own that my heart began to fail me when the time for action came so +close, but I did not say anything, for I had a greater fear that if I +appeared as a drag or a hindrance to their work, they might even leave +me out of their counsels altogether. They have now gone off to Carfax, +with means to get into the house. + +Manlike, they had told me to go to bed and sleep; as if a woman can +sleep when those she loves are in danger! I shall lie down and pretend +to sleep, lest Jonathan have added anxiety about me when he returns. + + +_Dr. Seward’s Diary._ + +_1 October, 4 a. m._--Just as we were about to leave the house, an +urgent message was brought to me from Renfield to know if I would see +him at once, as he had something of the utmost importance to say to me. +I told the messenger to say that I would attend to his wishes in the +morning; I was busy just at the moment. The attendant added:-- + +“He seems very importunate, sir. I have never seen him so eager. I don’t +know but what, if you don’t see him soon, he will have one of his +violent fits.” I knew the man would not have said this without some +cause, so I said: “All right; I’ll go now”; and I asked the others to +wait a few minutes for me, as I had to go and see my “patient.” + +“Take me with you, friend John,” said the Professor. “His case in your +diary interest me much, and it had bearing, too, now and again on _our_ +case. I should much like to see him, and especial when his mind is +disturbed.” + +“May I come also?” asked Lord Godalming. + +“Me too?” said Quincey Morris. “May I come?” said Harker. I nodded, and +we all went down the passage together. + +We found him in a state of considerable excitement, but far more +rational in his speech and manner than I had ever seen him. There was an +unusual understanding of himself, which was unlike anything I had ever +met with in a lunatic; and he took it for granted that his reasons would +prevail with others entirely sane. We all four went into the room, but +none of the others at first said anything. His request was that I would +at once release him from the asylum and send him home. This he backed up +with arguments regarding his complete recovery, and adduced his own +existing sanity. “I appeal to your friends,” he said, “they will, +perhaps, not mind sitting in judgment on my case. By the way, you have +not introduced me.” I was so much astonished, that the oddness of +introducing a madman in an asylum did not strike me at the moment; and, +besides, there was a certain dignity in the man’s manner, so much of +the habit of equality, that I at once made the introduction: “Lord +Godalming; Professor Van Helsing; Mr. Quincey Morris, of Texas; Mr. +Renfield.” He shook hands with each of them, saying in turn:-- + +“Lord Godalming, I had the honour of seconding your father at the +Windham; I grieve to know, by your holding the title, that he is no +more. He was a man loved and honoured by all who knew him; and in his +youth was, I have heard, the inventor of a burnt rum punch, much +patronised on Derby night. Mr. Morris, you should be proud of your great +state. Its reception into the Union was a precedent which may have +far-reaching effects hereafter, when the Pole and the Tropics may hold +alliance to the Stars and Stripes. The power of Treaty may yet prove a +vast engine of enlargement, when the Monroe doctrine takes its true +place as a political fable. What shall any man say of his pleasure at +meeting Van Helsing? Sir, I make no apology for dropping all forms of +conventional prefix. When an individual has revolutionised therapeutics +by his discovery of the continuous evolution of brain-matter, +conventional forms are unfitting, since they would seem to limit him to +one of a class. You, gentlemen, who by nationality, by heredity, or by +the possession of natural gifts, are fitted to hold your respective +places in the moving world, I take to witness that I am as sane as at +least the majority of men who are in full possession of their liberties. +And I am sure that you, Dr. Seward, humanitarian and medico-jurist as +well as scientist, will deem it a moral duty to deal with me as one to +be considered as under exceptional circumstances.” He made this last +appeal with a courtly air of conviction which was not without its own +charm. + +I think we were all staggered. For my own part, I was under the +conviction, despite my knowledge of the man’s character and history, +that his reason had been restored; and I felt under a strong impulse to +tell him that I was satisfied as to his sanity, and would see about the +necessary formalities for his release in the morning. I thought it +better to wait, however, before making so grave a statement, for of old +I knew the sudden changes to which this particular patient was liable. +So I contented myself with making a general statement that he appeared +to be improving very rapidly; that I would have a longer chat with him +in the morning, and would then see what I could do in the direction of +meeting his wishes. This did not at all satisfy him, for he said +quickly:-- + +“But I fear, Dr. Seward, that you hardly apprehend my wish. I desire to +go at once--here--now--this very hour--this very moment, if I may. Time +presses, and in our implied agreement with the old scytheman it is of +the essence of the contract. I am sure it is only necessary to put +before so admirable a practitioner as Dr. Seward so simple, yet so +momentous a wish, to ensure its fulfilment.” He looked at me keenly, and +seeing the negative in my face, turned to the others, and scrutinised +them closely. Not meeting any sufficient response, he went on:-- + +“Is it possible that I have erred in my supposition?” + +“You have,” I said frankly, but at the same time, as I felt, brutally. +There was a considerable pause, and then he said slowly:-- + +“Then I suppose I must only shift my ground of request. Let me ask for +this concession--boon, privilege, what you will. I am content to implore +in such a case, not on personal grounds, but for the sake of others. I +am not at liberty to give you the whole of my reasons; but you may, I +assure you, take it from me that they are good ones, sound and +unselfish, and spring from the highest sense of duty. Could you look, +sir, into my heart, you would approve to the full the sentiments which +animate me. Nay, more, you would count me amongst the best and truest of +your friends.” Again he looked at us all keenly. I had a growing +conviction that this sudden change of his entire intellectual method was +but yet another form or phase of his madness, and so determined to let +him go on a little longer, knowing from experience that he would, like +all lunatics, give himself away in the end. Van Helsing was gazing at +him with a look of utmost intensity, his bushy eyebrows almost meeting +with the fixed concentration of his look. He said to Renfield in a tone +which did not surprise me at the time, but only when I thought of it +afterwards--for it was as of one addressing an equal:-- + +“Can you not tell frankly your real reason for wishing to be free +to-night? I will undertake that if you will satisfy even me--a stranger, +without prejudice, and with the habit of keeping an open mind--Dr. +Seward will give you, at his own risk and on his own responsibility, the +privilege you seek.” He shook his head sadly, and with a look of +poignant regret on his face. The Professor went on:-- + +“Come, sir, bethink yourself. You claim the privilege of reason in the +highest degree, since you seek to impress us with your complete +reasonableness. You do this, whose sanity we have reason to doubt, since +you are not yet released from medical treatment for this very defect. If +you will not help us in our effort to choose the wisest course, how can +we perform the duty which you yourself put upon us? Be wise, and help +us; and if we can we shall aid you to achieve your wish.” He still shook +his head as he said:-- + +“Dr. Van Helsing, I have nothing to say. Your argument is complete, and +if I were free to speak I should not hesitate a moment; but I am not my +own master in the matter. I can only ask you to trust me. If I am +refused, the responsibility does not rest with me.” I thought it was now +time to end the scene, which was becoming too comically grave, so I went +towards the door, simply saying:-- + +“Come, my friends, we have work to do. Good-night.” + +As, however, I got near the door, a new change came over the patient. He +moved towards me so quickly that for the moment I feared that he was +about to make another homicidal attack. My fears, however, were +groundless, for he held up his two hands imploringly, and made his +petition in a moving manner. As he saw that the very excess of his +emotion was militating against him, by restoring us more to our old +relations, he became still more demonstrative. I glanced at Van Helsing, +and saw my conviction reflected in his eyes; so I became a little more +fixed in my manner, if not more stern, and motioned to him that his +efforts were unavailing. I had previously seen something of the same +constantly growing excitement in him when he had to make some request of +which at the time he had thought much, such, for instance, as when he +wanted a cat; and I was prepared to see the collapse into the same +sullen acquiescence on this occasion. My expectation was not realised, +for, when he found that his appeal would not be successful, he got into +quite a frantic condition. He threw himself on his knees, and held up +his hands, wringing them in plaintive supplication, and poured forth a +torrent of entreaty, with the tears rolling down his cheeks, and his +whole face and form expressive of the deepest emotion:-- + +“Let me entreat you, Dr. Seward, oh, let me implore you, to let me out +of this house at once. Send me away how you will and where you will; +send keepers with me with whips and chains; let them take me in a +strait-waistcoat, manacled and leg-ironed, even to a gaol; but let me go +out of this. You don’t know what you do by keeping me here. I am +speaking from the depths of my heart--of my very soul. You don’t know +whom you wrong, or how; and I may not tell. Woe is me! I may not tell. +By all you hold sacred--by all you hold dear--by your love that is +lost--by your hope that lives--for the sake of the Almighty, take me out +of this and save my soul from guilt! Can’t you hear me, man? Can’t you +understand? Will you never learn? Don’t you know that I am sane and +earnest now; that I am no lunatic in a mad fit, but a sane man fighting +for his soul? Oh, hear me! hear me! Let me go! let me go! let me go!” + +I thought that the longer this went on the wilder he would get, and so +would bring on a fit; so I took him by the hand and raised him up. + +“Come,” I said sternly, “no more of this; we have had quite enough +already. Get to your bed and try to behave more discreetly.” + +He suddenly stopped and looked at me intently for several moments. Then, +without a word, he rose and moving over, sat down on the side of the +bed. The collapse had come, as on former occasion, just as I had +expected. + +When I was leaving the room, last of our party, he said to me in a +quiet, well-bred voice:-- + +“You will, I trust, Dr. Seward, do me the justice to bear in mind, later +on, that I did what I could to convince you to-night.” + + + + +CHAPTER XIX + +JONATHAN HARKER’S JOURNAL + + +_1 October, 5 a. m._--I went with the party to the search with an easy +mind, for I think I never saw Mina so absolutely strong and well. I am +so glad that she consented to hold back and let us men do the work. +Somehow, it was a dread to me that she was in this fearful business at +all; but now that her work is done, and that it is due to her energy and +brains and foresight that the whole story is put together in such a way +that every point tells, she may well feel that her part is finished, and +that she can henceforth leave the rest to us. We were, I think, all a +little upset by the scene with Mr. Renfield. When we came away from his +room we were silent till we got back to the study. Then Mr. Morris said +to Dr. Seward:-- + +“Say, Jack, if that man wasn’t attempting a bluff, he is about the +sanest lunatic I ever saw. I’m not sure, but I believe that he had some +serious purpose, and if he had, it was pretty rough on him not to get a +chance.” Lord Godalming and I were silent, but Dr. Van Helsing added:-- + +“Friend John, you know more of lunatics than I do, and I’m glad of it, +for I fear that if it had been to me to decide I would before that last +hysterical outburst have given him free. But we live and learn, and in +our present task we must take no chance, as my friend Quincey would say. +All is best as they are.” Dr. Seward seemed to answer them both in a +dreamy kind of way:-- + +“I don’t know but that I agree with you. If that man had been an +ordinary lunatic I would have taken my chance of trusting him; but he +seems so mixed up with the Count in an indexy kind of way that I am +afraid of doing anything wrong by helping his fads. I can’t forget how +he prayed with almost equal fervour for a cat, and then tried to tear my +throat out with his teeth. Besides, he called the Count ‘lord and +master,’ and he may want to get out to help him in some diabolical way. +That horrid thing has the wolves and the rats and his own kind to help +him, so I suppose he isn’t above trying to use a respectable lunatic. He +certainly did seem earnest, though. I only hope we have done what is +best. These things, in conjunction with the wild work we have in hand, +help to unnerve a man.” The Professor stepped over, and laying his hand +on his shoulder, said in his grave, kindly way:-- + +“Friend John, have no fear. We are trying to do our duty in a very sad +and terrible case; we can only do as we deem best. What else have we to +hope for, except the pity of the good God?” Lord Godalming had slipped +away for a few minutes, but now he returned. He held up a little silver +whistle, as he remarked:-- + +“That old place may be full of rats, and if so, I’ve got an antidote on +call.” Having passed the wall, we took our way to the house, taking care +to keep in the shadows of the trees on the lawn when the moonlight shone +out. When we got to the porch the Professor opened his bag and took out +a lot of things, which he laid on the step, sorting them into four +little groups, evidently one for each. Then he spoke:-- + +“My friends, we are going into a terrible danger, and we need arms of +many kinds. Our enemy is not merely spiritual. Remember that he has the +strength of twenty men, and that, though our necks or our windpipes are +of the common kind--and therefore breakable or crushable--his are not +amenable to mere strength. A stronger man, or a body of men more strong +in all than him, can at certain times hold him; but they cannot hurt him +as we can be hurt by him. We must, therefore, guard ourselves from his +touch. Keep this near your heart”--as he spoke he lifted a little silver +crucifix and held it out to me, I being nearest to him--“put these +flowers round your neck”--here he handed to me a wreath of withered +garlic blossoms--“for other enemies more mundane, this revolver and this +knife; and for aid in all, these so small electric lamps, which you can +fasten to your breast; and for all, and above all at the last, this, +which we must not desecrate needless.” This was a portion of Sacred +Wafer, which he put in an envelope and handed to me. Each of the others +was similarly equipped. “Now,” he said, “friend John, where are the +skeleton keys? If so that we can open the door, we need not break house +by the window, as before at Miss Lucy’s.” + +Dr. Seward tried one or two skeleton keys, his mechanical dexterity as a +surgeon standing him in good stead. Presently he got one to suit; after +a little play back and forward the bolt yielded, and, with a rusty +clang, shot back. We pressed on the door, the rusty hinges creaked, and +it slowly opened. It was startlingly like the image conveyed to me in +Dr. Seward’s diary of the opening of Miss Westenra’s tomb; I fancy that +the same idea seemed to strike the others, for with one accord they +shrank back. The Professor was the first to move forward, and stepped +into the open door. + +“_In manus tuas, Domine!_” he said, crossing himself as he passed over +the threshold. We closed the door behind us, lest when we should have +lit our lamps we should possibly attract attention from the road. The +Professor carefully tried the lock, lest we might not be able to open it +from within should we be in a hurry making our exit. Then we all lit our +lamps and proceeded on our search. + +The light from the tiny lamps fell in all sorts of odd forms, as the +rays crossed each other, or the opacity of our bodies threw great +shadows. I could not for my life get away from the feeling that there +was some one else amongst us. I suppose it was the recollection, so +powerfully brought home to me by the grim surroundings, of that terrible +experience in Transylvania. I think the feeling was common to us all, +for I noticed that the others kept looking over their shoulders at every +sound and every new shadow, just as I felt myself doing. + +The whole place was thick with dust. The floor was seemingly inches +deep, except where there were recent footsteps, in which on holding down +my lamp I could see marks of hobnails where the dust was cracked. The +walls were fluffy and heavy with dust, and in the corners were masses of +spider’s webs, whereon the dust had gathered till they looked like old +tattered rags as the weight had torn them partly down. On a table in the +hall was a great bunch of keys, with a time-yellowed label on each. They +had been used several times, for on the table were several similar rents +in the blanket of dust, similar to that exposed when the Professor +lifted them. He turned to me and said:-- + +“You know this place, Jonathan. You have copied maps of it, and you know +it at least more than we do. Which is the way to the chapel?” I had an +idea of its direction, though on my former visit I had not been able to +get admission to it; so I led the way, and after a few wrong turnings +found myself opposite a low, arched oaken door, ribbed with iron bands. +“This is the spot,” said the Professor as he turned his lamp on a small +map of the house, copied from the file of my original correspondence +regarding the purchase. With a little trouble we found the key on the +bunch and opened the door. We were prepared for some unpleasantness, for +as we were opening the door a faint, malodorous air seemed to exhale +through the gaps, but none of us ever expected such an odour as we +encountered. None of the others had met the Count at all at close +quarters, and when I had seen him he was either in the fasting stage of +his existence in his rooms or, when he was gloated with fresh blood, in +a ruined building open to the air; but here the place was small and +close, and the long disuse had made the air stagnant and foul. There was +an earthy smell, as of some dry miasma, which came through the fouler +air. But as to the odour itself, how shall I describe it? It was not +alone that it was composed of all the ills of mortality and with the +pungent, acrid smell of blood, but it seemed as though corruption had +become itself corrupt. Faugh! it sickens me to think of it. Every breath +exhaled by that monster seemed to have clung to the place and +intensified its loathsomeness. + +Under ordinary circumstances such a stench would have brought our +enterprise to an end; but this was no ordinary case, and the high and +terrible purpose in which we were involved gave us a strength which rose +above merely physical considerations. After the involuntary shrinking +consequent on the first nauseous whiff, we one and all set about our +work as though that loathsome place were a garden of roses. + +We made an accurate examination of the place, the Professor saying as we +began:-- + +“The first thing is to see how many of the boxes are left; we must then +examine every hole and corner and cranny and see if we cannot get some +clue as to what has become of the rest.” A glance was sufficient to show +how many remained, for the great earth chests were bulky, and there was +no mistaking them. + +There were only twenty-nine left out of the fifty! Once I got a fright, +for, seeing Lord Godalming suddenly turn and look out of the vaulted +door into the dark passage beyond, I looked too, and for an instant my +heart stood still. Somewhere, looking out from the shadow, I seemed to +see the high lights of the Count’s evil face, the ridge of the nose, the +red eyes, the red lips, the awful pallor. It was only for a moment, for, +as Lord Godalming said, “I thought I saw a face, but it was only the +shadows,” and resumed his inquiry, I turned my lamp in the direction, +and stepped into the passage. There was no sign of any one; and as there +were no corners, no doors, no aperture of any kind, but only the solid +walls of the passage, there could be no hiding-place even for _him_. I +took it that fear had helped imagination, and said nothing. + +A few minutes later I saw Morris step suddenly back from a corner, which +he was examining. We all followed his movements with our eyes, for +undoubtedly some nervousness was growing on us, and we saw a whole mass +of phosphorescence, which twinkled like stars. We all instinctively drew +back. The whole place was becoming alive with rats. + +For a moment or two we stood appalled, all save Lord Godalming, who was +seemingly prepared for such an emergency. Rushing over to the great +iron-bound oaken door, which Dr. Seward had described from the outside, +and which I had seen myself, he turned the key in the lock, drew the +huge bolts, and swung the door open. Then, taking his little silver +whistle from his pocket, he blew a low, shrill call. It was answered +from behind Dr. Seward’s house by the yelping of dogs, and after about a +minute three terriers came dashing round the corner of the house. +Unconsciously we had all moved towards the door, and as we moved I +noticed that the dust had been much disturbed: the boxes which had been +taken out had been brought this way. But even in the minute that had +elapsed the number of the rats had vastly increased. They seemed to +swarm over the place all at once, till the lamplight, shining on their +moving dark bodies and glittering, baleful eyes, made the place look +like a bank of earth set with fireflies. The dogs dashed on, but at the +threshold suddenly stopped and snarled, and then, simultaneously lifting +their noses, began to howl in most lugubrious fashion. The rats were +multiplying in thousands, and we moved out. + +Lord Godalming lifted one of the dogs, and carrying him in, placed him +on the floor. The instant his feet touched the ground he seemed to +recover his courage, and rushed at his natural enemies. They fled before +him so fast that before he had shaken the life out of a score, the other +dogs, who had by now been lifted in the same manner, had but small prey +ere the whole mass had vanished. + +With their going it seemed as if some evil presence had departed, for +the dogs frisked about and barked merrily as they made sudden darts at +their prostrate foes, and turned them over and over and tossed them in +the air with vicious shakes. We all seemed to find our spirits rise. +Whether it was the purifying of the deadly atmosphere by the opening of +the chapel door, or the relief which we experienced by finding ourselves +in the open I know not; but most certainly the shadow of dread seemed to +slip from us like a robe, and the occasion of our coming lost something +of its grim significance, though we did not slacken a whit in our +resolution. We closed the outer door and barred and locked it, and +bringing the dogs with us, began our search of the house. We found +nothing throughout except dust in extraordinary proportions, and all +untouched save for my own footsteps when I had made my first visit. +Never once did the dogs exhibit any symptom of uneasiness, and even when +we returned to the chapel they frisked about as though they had been +rabbit-hunting in a summer wood. + +The morning was quickening in the east when we emerged from the front. +Dr. Van Helsing had taken the key of the hall-door from the bunch, and +locked the door in orthodox fashion, putting the key into his pocket +when he had done. + +“So far,” he said, “our night has been eminently successful. No harm has +come to us such as I feared might be and yet we have ascertained how +many boxes are missing. More than all do I rejoice that this, our +first--and perhaps our most difficult and dangerous--step has been +accomplished without the bringing thereinto our most sweet Madam Mina or +troubling her waking or sleeping thoughts with sights and sounds and +smells of horror which she might never forget. One lesson, too, we have +learned, if it be allowable to argue _a particulari_: that the brute +beasts which are to the Count’s command are yet themselves not amenable +to his spiritual power; for look, these rats that would come to his +call, just as from his castle top he summon the wolves to your going and +to that poor mother’s cry, though they come to him, they run pell-mell +from the so little dogs of my friend Arthur. We have other matters +before us, other dangers, other fears; and that monster--he has not used +his power over the brute world for the only or the last time to-night. +So be it that he has gone elsewhere. Good! It has given us opportunity +to cry ‘check’ in some ways in this chess game, which we play for the +stake of human souls. And now let us go home. The dawn is close at hand, +and we have reason to be content with our first night’s work. It may be +ordained that we have many nights and days to follow, if full of peril; +but we must go on, and from no danger shall we shrink.” + +The house was silent when we got back, save for some poor creature who +was screaming away in one of the distant wards, and a low, moaning sound +from Renfield’s room. The poor wretch was doubtless torturing himself, +after the manner of the insane, with needless thoughts of pain. + +I came tiptoe into our own room, and found Mina asleep, breathing so +softly that I had to put my ear down to hear it. She looks paler than +usual. I hope the meeting to-night has not upset her. I am truly +thankful that she is to be left out of our future work, and even of our +deliberations. It is too great a strain for a woman to bear. I did not +think so at first, but I know better now. Therefore I am glad that it is +settled. There may be things which would frighten her to hear; and yet +to conceal them from her might be worse than to tell her if once she +suspected that there was any concealment. Henceforth our work is to be a +sealed book to her, till at least such time as we can tell her that all +is finished, and the earth free from a monster of the nether world. I +daresay it will be difficult to begin to keep silence after such +confidence as ours; but I must be resolute, and to-morrow I shall keep +dark over to-night’s doings, and shall refuse to speak of anything that +has happened. I rest on the sofa, so as not to disturb her. + + * * * * * + +_1 October, later._--I suppose it was natural that we should have all +overslept ourselves, for the day was a busy one, and the night had no +rest at all. Even Mina must have felt its exhaustion, for though I slept +till the sun was high, I was awake before her, and had to call two or +three times before she awoke. Indeed, she was so sound asleep that for a +few seconds she did not recognize me, but looked at me with a sort of +blank terror, as one looks who has been waked out of a bad dream. She +complained a little of being tired, and I let her rest till later in the +day. We now know of twenty-one boxes having been removed, and if it be +that several were taken in any of these removals we may be able to trace +them all. Such will, of course, immensely simplify our labour, and the +sooner the matter is attended to the better. I shall look up Thomas +Snelling to-day. + + +_Dr. Seward’s Diary._ + +_1 October._--It was towards noon when I was awakened by the Professor +walking into my room. He was more jolly and cheerful than usual, and it +is quite evident that last night’s work has helped to take some of the +brooding weight off his mind. After going over the adventure of the +night he suddenly said:-- + +“Your patient interests me much. May it be that with you I visit him +this morning? Or if that you are too occupy, I can go alone if it may +be. It is a new experience to me to find a lunatic who talk philosophy, +and reason so sound.” I had some work to do which pressed, so I told him +that if he would go alone I would be glad, as then I should not have to +keep him waiting; so I called an attendant and gave him the necessary +instructions. Before the Professor left the room I cautioned him against +getting any false impression from my patient. “But,” he answered, “I +want him to talk of himself and of his delusion as to consuming live +things. He said to Madam Mina, as I see in your diary of yesterday, that +he had once had such a belief. Why do you smile, friend John?” + +“Excuse me,” I said, “but the answer is here.” I laid my hand on the +type-written matter. “When our sane and learned lunatic made that very +statement of how he _used_ to consume life, his mouth was actually +nauseous with the flies and spiders which he had eaten just before Mrs. +Harker entered the room.” Van Helsing smiled in turn. “Good!” he said. +“Your memory is true, friend John. I should have remembered. And yet it +is this very obliquity of thought and memory which makes mental disease +such a fascinating study. Perhaps I may gain more knowledge out of the +folly of this madman than I shall from the teaching of the most wise. +Who knows?” I went on with my work, and before long was through that in +hand. It seemed that the time had been very short indeed, but there was +Van Helsing back in the study. “Do I interrupt?” he asked politely as he +stood at the door. + +“Not at all,” I answered. “Come in. My work is finished, and I am free. +I can go with you now, if you like. + +“It is needless; I have seen him!” + +“Well?” + +“I fear that he does not appraise me at much. Our interview was short. +When I entered his room he was sitting on a stool in the centre, with +his elbows on his knees, and his face was the picture of sullen +discontent. I spoke to him as cheerfully as I could, and with such a +measure of respect as I could assume. He made no reply whatever. “Don’t +you know me?” I asked. His answer was not reassuring: “I know you well +enough; you are the old fool Van Helsing. I wish you would take yourself +and your idiotic brain theories somewhere else. Damn all thick-headed +Dutchmen!” Not a word more would he say, but sat in his implacable +sullenness as indifferent to me as though I had not been in the room at +all. Thus departed for this time my chance of much learning from this so +clever lunatic; so I shall go, if I may, and cheer myself with a few +happy words with that sweet soul Madam Mina. Friend John, it does +rejoice me unspeakable that she is no more to be pained, no more to be +worried with our terrible things. Though we shall much miss her help, it +is better so.” + +“I agree with you with all my heart,” I answered earnestly, for I did +not want him to weaken in this matter. “Mrs. Harker is better out of it. +Things are quite bad enough for us, all men of the world, and who have +been in many tight places in our time; but it is no place for a woman, +and if she had remained in touch with the affair, it would in time +infallibly have wrecked her.” + +So Van Helsing has gone to confer with Mrs. Harker and Harker; Quincey +and Art are all out following up the clues as to the earth-boxes. I +shall finish my round of work and we shall meet to-night. + + +_Mina Harker’s Journal._ + +_1 October._--It is strange to me to be kept in the dark as I am to-day; +after Jonathan’s full confidence for so many years, to see him +manifestly avoid certain matters, and those the most vital of all. This +morning I slept late after the fatigues of yesterday, and though +Jonathan was late too, he was the earlier. He spoke to me before he went +out, never more sweetly or tenderly, but he never mentioned a word of +what had happened in the visit to the Count’s house. And yet he must +have known how terribly anxious I was. Poor dear fellow! I suppose it +must have distressed him even more than it did me. They all agreed that +it was best that I should not be drawn further into this awful work, and +I acquiesced. But to think that he keeps anything from me! And now I am +crying like a silly fool, when I _know_ it comes from my husband’s great +love and from the good, good wishes of those other strong men. + +That has done me good. Well, some day Jonathan will tell me all; and +lest it should ever be that he should think for a moment that I kept +anything from him, I still keep my journal as usual. Then if he has +feared of my trust I shall show it to him, with every thought of my +heart put down for his dear eyes to read. I feel strangely sad and +low-spirited to-day. I suppose it is the reaction from the terrible +excitement. + +Last night I went to bed when the men had gone, simply because they told +me to. I didn’t feel sleepy, and I did feel full of devouring anxiety. I +kept thinking over everything that has been ever since Jonathan came to +see me in London, and it all seems like a horrible tragedy, with fate +pressing on relentlessly to some destined end. Everything that one does +seems, no matter how right it may be, to bring on the very thing which +is most to be deplored. If I hadn’t gone to Whitby, perhaps poor dear +Lucy would be with us now. She hadn’t taken to visiting the churchyard +till I came, and if she hadn’t come there in the day-time with me she +wouldn’t have walked there in her sleep; and if she hadn’t gone there at +night and asleep, that monster couldn’t have destroyed her as he did. +Oh, why did I ever go to Whitby? There now, crying again! I wonder what +has come over me to-day. I must hide it from Jonathan, for if he knew +that I had been crying twice in one morning--I, who never cried on my +own account, and whom he has never caused to shed a tear--the dear +fellow would fret his heart out. I shall put a bold face on, and if I do +feel weepy, he shall never see it. I suppose it is one of the lessons +that we poor women have to learn.... + +I can’t quite remember how I fell asleep last night. I remember hearing +the sudden barking of the dogs and a lot of queer sounds, like praying +on a very tumultuous scale, from Mr. Renfield’s room, which is somewhere +under this. And then there was silence over everything, silence so +profound that it startled me, and I got up and looked out of the window. +All was dark and silent, the black shadows thrown by the moonlight +seeming full of a silent mystery of their own. Not a thing seemed to be +stirring, but all to be grim and fixed as death or fate; so that a thin +streak of white mist, that crept with almost imperceptible slowness +across the grass towards the house, seemed to have a sentience and a +vitality of its own. I think that the digression of my thoughts must +have done me good, for when I got back to bed I found a lethargy +creeping over me. I lay a while, but could not quite sleep, so I got out +and looked out of the window again. The mist was spreading, and was now +close up to the house, so that I could see it lying thick against the +wall, as though it were stealing up to the windows. The poor man was +more loud than ever, and though I could not distinguish a word he said, +I could in some way recognise in his tones some passionate entreaty on +his part. Then there was the sound of a struggle, and I knew that the +attendants were dealing with him. I was so frightened that I crept into +bed, and pulled the clothes over my head, putting my fingers in my ears. +I was not then a bit sleepy, at least so I thought; but I must have +fallen asleep, for, except dreams, I do not remember anything until the +morning, when Jonathan woke me. I think that it took me an effort and a +little time to realise where I was, and that it was Jonathan who was +bending over me. My dream was very peculiar, and was almost typical of +the way that waking thoughts become merged in, or continued in, dreams. + +I thought that I was asleep, and waiting for Jonathan to come back. I +was very anxious about him, and I was powerless to act; my feet, and my +hands, and my brain were weighted, so that nothing could proceed at the +usual pace. And so I slept uneasily and thought. Then it began to dawn +upon me that the air was heavy, and dank, and cold. I put back the +clothes from my face, and found, to my surprise, that all was dim +around. The gaslight which I had left lit for Jonathan, but turned down, +came only like a tiny red spark through the fog, which had evidently +grown thicker and poured into the room. Then it occurred to me that I +had shut the window before I had come to bed. I would have got out to +make certain on the point, but some leaden lethargy seemed to chain my +limbs and even my will. I lay still and endured; that was all. I closed +my eyes, but could still see through my eyelids. (It is wonderful what +tricks our dreams play us, and how conveniently we can imagine.) The +mist grew thicker and thicker and I could see now how it came in, for I +could see it like smoke--or with the white energy of boiling +water--pouring in, not through the window, but through the joinings of +the door. It got thicker and thicker, till it seemed as if it became +concentrated into a sort of pillar of cloud in the room, through the top +of which I could see the light of the gas shining like a red eye. Things +began to whirl through my brain just as the cloudy column was now +whirling in the room, and through it all came the scriptural words “a +pillar of cloud by day and of fire by night.” Was it indeed some such +spiritual guidance that was coming to me in my sleep? But the pillar was +composed of both the day and the night-guiding, for the fire was in the +red eye, which at the thought got a new fascination for me; till, as I +looked, the fire divided, and seemed to shine on me through the fog like +two red eyes, such as Lucy told me of in her momentary mental wandering +when, on the cliff, the dying sunlight struck the windows of St. Mary’s +Church. Suddenly the horror burst upon me that it was thus that Jonathan +had seen those awful women growing into reality through the whirling mist +in the moonlight, and in my dream I must have fainted, for all became +black darkness. The last conscious effort which imagination made was to +show me a livid white face bending over me out of the mist. I must be +careful of such dreams, for they would unseat one’s reason if there were +too much of them. I would get Dr. Van Helsing or Dr. Seward to prescribe +something for me which would make me sleep, only that I fear to alarm +them. Such a dream at the present time would become woven into their +fears for me. To-night I shall strive hard to sleep naturally. If I do +not, I shall to-morrow night get them to give me a dose of chloral; that +cannot hurt me for once, and it will give me a good night’s sleep. Last +night tired me more than if I had not slept at all. + + * * * * * + +_2 October 10 p. m._--Last night I slept, but did not dream. I must have +slept soundly, for I was not waked by Jonathan coming to bed; but the +sleep has not refreshed me, for to-day I feel terribly weak and +spiritless. I spent all yesterday trying to read, or lying down dozing. +In the afternoon Mr. Renfield asked if he might see me. Poor man, he was +very gentle, and when I came away he kissed my hand and bade God bless +me. Some way it affected me much; I am crying when I think of him. This +is a new weakness, of which I must be careful. Jonathan would be +miserable if he knew I had been crying. He and the others were out till +dinner-time, and they all came in tired. I did what I could to brighten +them up, and I suppose that the effort did me good, for I forgot how +tired I was. After dinner they sent me to bed, and all went off to smoke +together, as they said, but I knew that they wanted to tell each other +of what had occurred to each during the day; I could see from Jonathan’s +manner that he had something important to communicate. I was not so +sleepy as I should have been; so before they went I asked Dr. Seward to +give me a little opiate of some kind, as I had not slept well the night +before. He very kindly made me up a sleeping draught, which he gave to +me, telling me that it would do me no harm, as it was very mild.... I +have taken it, and am waiting for sleep, which still keeps aloof. I hope +I have not done wrong, for as sleep begins to flirt with me, a new fear +comes: that I may have been foolish in thus depriving myself of the +power of waking. I might want it. Here comes sleep. Good-night. + + + + +CHAPTER XX + +JONATHAN HARKER’S JOURNAL + + +_1 October, evening._--I found Thomas Snelling in his house at Bethnal +Green, but unhappily he was not in a condition to remember anything. The +very prospect of beer which my expected coming had opened to him had +proved too much, and he had begun too early on his expected debauch. I +learned, however, from his wife, who seemed a decent, poor soul, that he +was only the assistant to Smollet, who of the two mates was the +responsible person. So off I drove to Walworth, and found Mr. Joseph +Smollet at home and in his shirtsleeves, taking a late tea out of a +saucer. He is a decent, intelligent fellow, distinctly a good, reliable +type of workman, and with a headpiece of his own. He remembered all +about the incident of the boxes, and from a wonderful dog’s-eared +notebook, which he produced from some mysterious receptacle about the +seat of his trousers, and which had hieroglyphical entries in thick, +half-obliterated pencil, he gave me the destinations of the boxes. There +were, he said, six in the cartload which he took from Carfax and left at +197, Chicksand Street, Mile End New Town, and another six which he +deposited at Jamaica Lane, Bermondsey. If then the Count meant to +scatter these ghastly refuges of his over London, these places were +chosen as the first of delivery, so that later he might distribute more +fully. The systematic manner in which this was done made me think that +he could not mean to confine himself to two sides of London. He was now +fixed on the far east of the northern shore, on the east of the southern +shore, and on the south. The north and west were surely never meant to +be left out of his diabolical scheme--let alone the City itself and the +very heart of fashionable London in the south-west and west. I went back +to Smollet, and asked him if he could tell us if any other boxes had +been taken from Carfax. + +He replied:-- + +“Well, guv’nor, you’ve treated me wery ’an’some”--I had given him half a +sovereign--“an’ I’ll tell yer all I know. I heard a man by the name of +Bloxam say four nights ago in the ’Are an’ ’Ounds, in Pincher’s Alley, +as ’ow he an’ his mate ’ad ’ad a rare dusty job in a old ’ouse at +Purfect. There ain’t a-many such jobs as this ’ere, an’ I’m thinkin’ +that maybe Sam Bloxam could tell ye summut.” I asked if he could tell me +where to find him. I told him that if he could get me the address it +would be worth another half-sovereign to him. So he gulped down the rest +of his tea and stood up, saying that he was going to begin the search +then and there. At the door he stopped, and said:-- + +“Look ’ere, guv’nor, there ain’t no sense in me a-keepin’ you ’ere. I +may find Sam soon, or I mayn’t; but anyhow he ain’t like to be in a way +to tell ye much to-night. Sam is a rare one when he starts on the booze. +If you can give me a envelope with a stamp on it, and put yer address on +it, I’ll find out where Sam is to be found and post it ye to-night. But +ye’d better be up arter ’im soon in the mornin’, or maybe ye won’t ketch +’im; for Sam gets off main early, never mind the booze the night afore.” + +This was all practical, so one of the children went off with a penny to +buy an envelope and a sheet of paper, and to keep the change. When she +came back, I addressed the envelope and stamped it, and when Smollet had +again faithfully promised to post the address when found, I took my way +to home. We’re on the track anyhow. I am tired to-night, and want sleep. +Mina is fast asleep, and looks a little too pale; her eyes look as +though she had been crying. Poor dear, I’ve no doubt it frets her to be +kept in the dark, and it may make her doubly anxious about me and the +others. But it is best as it is. It is better to be disappointed and +worried in such a way now than to have her nerve broken. The doctors +were quite right to insist on her being kept out of this dreadful +business. I must be firm, for on me this particular burden of silence +must rest. I shall not ever enter on the subject with her under any +circumstances. Indeed, it may not be a hard task, after all, for she +herself has become reticent on the subject, and has not spoken of the +Count or his doings ever since we told her of our decision. + + * * * * * + +_2 October, evening._--A long and trying and exciting day. By the first +post I got my directed envelope with a dirty scrap of paper enclosed, on +which was written with a carpenter’s pencil in a sprawling hand:-- + +“Sam Bloxam, Korkrans, 4, Poters Cort, Bartel Street, Walworth. Arsk for +the depite.” + +I got the letter in bed, and rose without waking Mina. She looked heavy +and sleepy and pale, and far from well. I determined not to wake her, +but that, when I should return from this new search, I would arrange for +her going back to Exeter. I think she would be happier in our own home, +with her daily tasks to interest her, than in being here amongst us and +in ignorance. I only saw Dr. Seward for a moment, and told him where I +was off to, promising to come back and tell the rest so soon as I should +have found out anything. I drove to Walworth and found, with some +difficulty, Potter’s Court. Mr. Smollet’s spelling misled me, as I asked +for Poter’s Court instead of Potter’s Court. However, when I had found +the court, I had no difficulty in discovering Corcoran’s lodging-house. +When I asked the man who came to the door for the “depite,” he shook his +head, and said: “I dunno ’im. There ain’t no such a person ’ere; I never +’eard of ’im in all my bloomin’ days. Don’t believe there ain’t nobody +of that kind livin’ ere or anywheres.” I took out Smollet’s letter, and +as I read it it seemed to me that the lesson of the spelling of the name +of the court might guide me. “What are you?” I asked. + +“I’m the depity,” he answered. I saw at once that I was on the right +track; phonetic spelling had again misled me. A half-crown tip put the +deputy’s knowledge at my disposal, and I learned that Mr. Bloxam, who +had slept off the remains of his beer on the previous night at +Corcoran’s, had left for his work at Poplar at five o’clock that +morning. He could not tell me where the place of work was situated, but +he had a vague idea that it was some kind of a “new-fangled ware’us”; +and with this slender clue I had to start for Poplar. It was twelve +o’clock before I got any satisfactory hint of such a building, and this +I got at a coffee-shop, where some workmen were having their dinner. One +of these suggested that there was being erected at Cross Angel Street a +new “cold storage” building; and as this suited the condition of a +“new-fangled ware’us,” I at once drove to it. An interview with a surly +gatekeeper and a surlier foreman, both of whom were appeased with the +coin of the realm, put me on the track of Bloxam; he was sent for on my +suggesting that I was willing to pay his day’s wages to his foreman for +the privilege of asking him a few questions on a private matter. He was +a smart enough fellow, though rough of speech and bearing. When I had +promised to pay for his information and given him an earnest, he told me +that he had made two journeys between Carfax and a house in Piccadilly, +and had taken from this house to the latter nine great boxes--“main +heavy ones”--with a horse and cart hired by him for this purpose. I +asked him if he could tell me the number of the house in Piccadilly, to +which he replied:-- + +“Well, guv’nor, I forgits the number, but it was only a few doors from a +big white church or somethink of the kind, not long built. It was a +dusty old ’ouse, too, though nothin’ to the dustiness of the ’ouse we +tooked the bloomin’ boxes from.” + +“How did you get into the houses if they were both empty?” + +“There was the old party what engaged me a-waitin’ in the ’ouse at +Purfleet. He ’elped me to lift the boxes and put them in the dray. Curse +me, but he was the strongest chap I ever struck, an’ him a old feller, +with a white moustache, one that thin you would think he couldn’t throw +a shadder.” + +How this phrase thrilled through me! + +“Why, ’e took up ’is end o’ the boxes like they was pounds of tea, and +me a-puffin’ an’ a-blowin’ afore I could up-end mine anyhow--an’ I’m no +chicken, neither.” + +“How did you get into the house in Piccadilly?” I asked. + +“He was there too. He must ’a’ started off and got there afore me, for +when I rung of the bell he kem an’ opened the door ’isself an’ ’elped me +to carry the boxes into the ’all.” + +“The whole nine?” I asked. + +“Yus; there was five in the first load an’ four in the second. It was +main dry work, an’ I don’t so well remember ’ow I got ’ome.” I +interrupted him:-- + +“Were the boxes left in the hall?” + +“Yus; it was a big ’all, an’ there was nothin’ else in it.” I made one +more attempt to further matters:-- + +“You didn’t have any key?” + +“Never used no key nor nothink. The old gent, he opened the door ’isself +an’ shut it again when I druv off. I don’t remember the last time--but +that was the beer.” + +“And you can’t remember the number of the house?” + +“No, sir. But ye needn’t have no difficulty about that. It’s a ’igh ’un +with a stone front with a bow on it, an’ ’igh steps up to the door. I +know them steps, ’avin’ ’ad to carry the boxes up with three loafers +what come round to earn a copper. The old gent give them shillin’s, an’ +they seein’ they got so much, they wanted more; but ’e took one of them +by the shoulder and was like to throw ’im down the steps, till the lot +of them went away cussin’.” I thought that with this description I could +find the house, so, having paid my friend for his information, I started +off for Piccadilly. I had gained a new painful experience; the Count +could, it was evident, handle the earth-boxes himself. If so, time was +precious; for, now that he had achieved a certain amount of +distribution, he could, by choosing his own time, complete the task +unobserved. At Piccadilly Circus I discharged my cab, and walked +westward; beyond the Junior Constitutional I came across the house +described, and was satisfied that this was the next of the lairs +arranged by Dracula. The house looked as though it had been long +untenanted. The windows were encrusted with dust, and the shutters were +up. All the framework was black with time, and from the iron the paint +had mostly scaled away. It was evident that up to lately there had been +a large notice-board in front of the balcony; it had, however, been +roughly torn away, the uprights which had supported it still remaining. +Behind the rails of the balcony I saw there were some loose boards, +whose raw edges looked white. I would have given a good deal to have +been able to see the notice-board intact, as it would, perhaps, have +given some clue to the ownership of the house. I remembered my +experience of the investigation and purchase of Carfax, and I could not +but feel that if I could find the former owner there might be some means +discovered of gaining access to the house. + +There was at present nothing to be learned from the Piccadilly side, and +nothing could be done; so I went round to the back to see if anything +could be gathered from this quarter. The mews were active, the +Piccadilly houses being mostly in occupation. I asked one or two of the +grooms and helpers whom I saw around if they could tell me anything +about the empty house. One of them said that he heard it had lately been +taken, but he couldn’t say from whom. He told me, however, that up to +very lately there had been a notice-board of “For Sale” up, and that +perhaps Mitchell, Sons, & Candy, the house agents, could tell me +something, as he thought he remembered seeing the name of that firm on +the board. I did not wish to seem too eager, or to let my informant know +or guess too much, so, thanking him in the usual manner, I strolled +away. It was now growing dusk, and the autumn night was closing in, so I +did not lose any time. Having learned the address of Mitchell, Sons, & +Candy from a directory at the Berkeley, I was soon at their office in +Sackville Street. + +The gentleman who saw me was particularly suave in manner, but +uncommunicative in equal proportion. Having once told me that the +Piccadilly house--which throughout our interview he called a +“mansion”--was sold, he considered my business as concluded. When I +asked who had purchased it, he opened his eyes a thought wider, and +paused a few seconds before replying:-- + +“It is sold, sir.” + +“Pardon me,” I said, with equal politeness, “but I have a special reason +for wishing to know who purchased it.” + +Again he paused longer, and raised his eyebrows still more. “It is sold, +sir,” was again his laconic reply. + +“Surely,” I said, “you do not mind letting me know so much.” + +“But I do mind,” he answered. “The affairs of their clients are +absolutely safe in the hands of Mitchell, Sons, & Candy.” This was +manifestly a prig of the first water, and there was no use arguing with +him. I thought I had best meet him on his own ground, so I said:-- + +“Your clients, sir, are happy in having so resolute a guardian of their +confidence. I am myself a professional man.” Here I handed him my card. +“In this instance I am not prompted by curiosity; I act on the part of +Lord Godalming, who wishes to know something of the property which was, +he understood, lately for sale.” These words put a different complexion +on affairs. He said:-- + +“I would like to oblige you if I could, Mr. Harker, and especially would +I like to oblige his lordship. We once carried out a small matter of +renting some chambers for him when he was the Honourable Arthur +Holmwood. If you will let me have his lordship’s address I will consult +the House on the subject, and will, in any case, communicate with his +lordship by to-night’s post. It will be a pleasure if we can so far +deviate from our rules as to give the required information to his +lordship.” + +I wanted to secure a friend, and not to make an enemy, so I thanked him, +gave the address at Dr. Seward’s and came away. It was now dark, and I +was tired and hungry. I got a cup of tea at the Aërated Bread Company +and came down to Purfleet by the next train. + +I found all the others at home. Mina was looking tired and pale, but she +made a gallant effort to be bright and cheerful, it wrung my heart to +think that I had had to keep anything from her and so caused her +inquietude. Thank God, this will be the last night of her looking on at +our conferences, and feeling the sting of our not showing our +confidence. It took all my courage to hold to the wise resolution of +keeping her out of our grim task. She seems somehow more reconciled; or +else the very subject seems to have become repugnant to her, for when +any accidental allusion is made she actually shudders. I am glad we +made our resolution in time, as with such a feeling as this, our growing +knowledge would be torture to her. + +I could not tell the others of the day’s discovery till we were alone; +so after dinner--followed by a little music to save appearances even +amongst ourselves--I took Mina to her room and left her to go to bed. +The dear girl was more affectionate with me than ever, and clung to me +as though she would detain me; but there was much to be talked of and I +came away. Thank God, the ceasing of telling things has made no +difference between us. + +When I came down again I found the others all gathered round the fire in +the study. In the train I had written my diary so far, and simply read +it off to them as the best means of letting them get abreast of my own +information; when I had finished Van Helsing said:-- + +“This has been a great day’s work, friend Jonathan. Doubtless we are on +the track of the missing boxes. If we find them all in that house, then +our work is near the end. But if there be some missing, we must search +until we find them. Then shall we make our final _coup_, and hunt the +wretch to his real death.” We all sat silent awhile and all at once Mr. +Morris spoke:-- + +“Say! how are we going to get into that house?” + +“We got into the other,” answered Lord Godalming quickly. + +“But, Art, this is different. We broke house at Carfax, but we had night +and a walled park to protect us. It will be a mighty different thing to +commit burglary in Piccadilly, either by day or night. I confess I don’t +see how we are going to get in unless that agency duck can find us a key +of some sort; perhaps we shall know when you get his letter in the +morning.” Lord Godalming’s brows contracted, and he stood up and walked +about the room. By-and-by he stopped and said, turning from one to +another of us:-- + +“Quincey’s head is level. This burglary business is getting serious; we +got off once all right; but we have now a rare job on hand--unless we +can find the Count’s key basket.” + +As nothing could well be done before morning, and as it would be at +least advisable to wait till Lord Godalming should hear from Mitchell’s, +we decided not to take any active step before breakfast time. For a good +while we sat and smoked, discussing the matter in its various lights and +bearings; I took the opportunity of bringing this diary right up to the +moment. I am very sleepy and shall go to bed.... + +Just a line. Mina sleeps soundly and her breathing is regular. Her +forehead is puckered up into little wrinkles, as though she thinks even +in her sleep. She is still too pale, but does not look so haggard as she +did this morning. To-morrow will, I hope, mend all this; she will be +herself at home in Exeter. Oh, but I am sleepy! + + +_Dr. Seward’s Diary._ + +_1 October._--I am puzzled afresh about Renfield. His moods change so +rapidly that I find it difficult to keep touch of them, and as they +always mean something more than his own well-being, they form a more +than interesting study. This morning, when I went to see him after his +repulse of Van Helsing, his manner was that of a man commanding destiny. +He was, in fact, commanding destiny--subjectively. He did not really +care for any of the things of mere earth; he was in the clouds and +looked down on all the weaknesses and wants of us poor mortals. I +thought I would improve the occasion and learn something, so I asked +him:-- + +“What about the flies these times?” He smiled on me in quite a superior +sort of way--such a smile as would have become the face of Malvolio--as +he answered me:-- + +“The fly, my dear sir, has one striking feature; its wings are typical +of the aërial powers of the psychic faculties. The ancients did well +when they typified the soul as a butterfly!” + +I thought I would push his analogy to its utmost logically, so I said +quickly:-- + +“Oh, it is a soul you are after now, is it?” His madness foiled his +reason, and a puzzled look spread over his face as, shaking his head +with a decision which I had but seldom seen in him, he said:-- + +“Oh, no, oh no! I want no souls. Life is all I want.” Here he brightened +up; “I am pretty indifferent about it at present. Life is all right; I +have all I want. You must get a new patient, doctor, if you wish to +study zoöphagy!” + +This puzzled me a little, so I drew him on:-- + +“Then you command life; you are a god, I suppose?” He smiled with an +ineffably benign superiority. + +“Oh no! Far be it from me to arrogate to myself the attributes of the +Deity. I am not even concerned in His especially spiritual doings. If I +may state my intellectual position I am, so far as concerns things +purely terrestrial, somewhat in the position which Enoch occupied +spiritually!” This was a poser to me. I could not at the moment recall +Enoch’s appositeness; so I had to ask a simple question, though I felt +that by so doing I was lowering myself in the eyes of the lunatic:-- + +“And why with Enoch?” + +“Because he walked with God.” I could not see the analogy, but did not +like to admit it; so I harked back to what he had denied:-- + +“So you don’t care about life and you don’t want souls. Why not?” I put +my question quickly and somewhat sternly, on purpose to disconcert him. +The effort succeeded; for an instant he unconsciously relapsed into his +old servile manner, bent low before me, and actually fawned upon me as +he replied:-- + +“I don’t want any souls, indeed, indeed! I don’t. I couldn’t use them if +I had them; they would be no manner of use to me. I couldn’t eat them +or----” He suddenly stopped and the old cunning look spread over his +face, like a wind-sweep on the surface of the water. “And doctor, as to +life, what is it after all? When you’ve got all you require, and you +know that you will never want, that is all. I have friends--good +friends--like you, Dr. Seward”; this was said with a leer of +inexpressible cunning. “I know that I shall never lack the means of +life!” + +I think that through the cloudiness of his insanity he saw some +antagonism in me, for he at once fell back on the last refuge of such as +he--a dogged silence. After a short time I saw that for the present it +was useless to speak to him. He was sulky, and so I came away. + +Later in the day he sent for me. Ordinarily I would not have come +without special reason, but just at present I am so interested in him +that I would gladly make an effort. Besides, I am glad to have anything +to help to pass the time. Harker is out, following up clues; and so are +Lord Godalming and Quincey. Van Helsing sits in my study poring over the +record prepared by the Harkers; he seems to think that by accurate +knowledge of all details he will light upon some clue. He does not wish +to be disturbed in the work, without cause. I would have taken him with +me to see the patient, only I thought that after his last repulse he +might not care to go again. There was also another reason: Renfield +might not speak so freely before a third person as when he and I were +alone. + +I found him sitting out in the middle of the floor on his stool, a pose +which is generally indicative of some mental energy on his part. When I +came in, he said at once, as though the question had been waiting on his +lips:-- + +“What about souls?” It was evident then that my surmise had been +correct. Unconscious cerebration was doing its work, even with the +lunatic. I determined to have the matter out. “What about them +yourself?” I asked. He did not reply for a moment but looked all round +him, and up and down, as though he expected to find some inspiration for +an answer. + +“I don’t want any souls!” he said in a feeble, apologetic way. The +matter seemed preying on his mind, and so I determined to use it--to “be +cruel only to be kind.” So I said:-- + +“You like life, and you want life?” + +“Oh yes! but that is all right; you needn’t worry about that!” + +“But,” I asked, “how are we to get the life without getting the soul +also?” This seemed to puzzle him, so I followed it up:-- + +“A nice time you’ll have some time when you’re flying out there, with +the souls of thousands of flies and spiders and birds and cats buzzing +and twittering and miauing all round you. You’ve got their lives, you +know, and you must put up with their souls!” Something seemed to affect +his imagination, for he put his fingers to his ears and shut his eyes, +screwing them up tightly just as a small boy does when his face is being +soaped. There was something pathetic in it that touched me; it also gave +me a lesson, for it seemed that before me was a child--only a child, +though the features were worn, and the stubble on the jaws was white. It +was evident that he was undergoing some process of mental disturbance, +and, knowing how his past moods had interpreted things seemingly foreign +to himself, I thought I would enter into his mind as well as I could and +go with him. The first step was to restore confidence, so I asked him, +speaking pretty loud so that he would hear me through his closed ears:-- + +“Would you like some sugar to get your flies round again?” He seemed to +wake up all at once, and shook his head. With a laugh he replied:-- + +“Not much! flies are poor things, after all!” After a pause he added, +“But I don’t want their souls buzzing round me, all the same.” + +“Or spiders?” I went on. + +“Blow spiders! What’s the use of spiders? There isn’t anything in them +to eat or”--he stopped suddenly, as though reminded of a forbidden +topic. + +“So, so!” I thought to myself, “this is the second time he has suddenly +stopped at the word ‘drink’; what does it mean?” Renfield seemed himself +aware of having made a lapse, for he hurried on, as though to distract +my attention from it:-- + +“I don’t take any stock at all in such matters. ‘Rats and mice and such +small deer,’ as Shakespeare has it, ‘chicken-feed of the larder’ they +might be called. I’m past all that sort of nonsense. You might as well +ask a man to eat molecules with a pair of chop-sticks, as to try to +interest me about the lesser carnivora, when I know of what is before +me.” + +“I see,” I said. “You want big things that you can make your teeth meet +in? How would you like to breakfast on elephant?” + +“What ridiculous nonsense you are talking!” He was getting too wide +awake, so I thought I would press him hard. “I wonder,” I said +reflectively, “what an elephant’s soul is like!” + +The effect I desired was obtained, for he at once fell from his +high-horse and became a child again. + +“I don’t want an elephant’s soul, or any soul at all!” he said. For a +few moments he sat despondently. Suddenly he jumped to his feet, with +his eyes blazing and all the signs of intense cerebral excitement. “To +hell with you and your souls!” he shouted. “Why do you plague me about +souls? Haven’t I got enough to worry, and pain, and distract me already, +without thinking of souls!” He looked so hostile that I thought he was +in for another homicidal fit, so I blew my whistle. The instant, +however, that I did so he became calm, and said apologetically:-- + +“Forgive me, Doctor; I forgot myself. You do not need any help. I am so +worried in my mind that I am apt to be irritable. If you only knew the +problem I have to face, and that I am working out, you would pity, and +tolerate, and pardon me. Pray do not put me in a strait-waistcoat. I +want to think and I cannot think freely when my body is confined. I am +sure you will understand!” He had evidently self-control; so when the +attendants came I told them not to mind, and they withdrew. Renfield +watched them go; when the door was closed he said, with considerable +dignity and sweetness:-- + +“Dr. Seward, you have been very considerate towards me. Believe me that +I am very, very grateful to you!” I thought it well to leave him in this +mood, and so I came away. There is certainly something to ponder over in +this man’s state. Several points seem to make what the American +interviewer calls “a story,” if one could only get them in proper order. +Here they are:-- + +Will not mention “drinking.” + +Fears the thought of being burdened with the “soul” of anything. + +Has no dread of wanting “life” in the future. + +Despises the meaner forms of life altogether, though he dreads being +haunted by their souls. + +Logically all these things point one way! he has assurance of some kind +that he will acquire some higher life. He dreads the consequence--the +burden of a soul. Then it is a human life he looks to! + +And the assurance--? + +Merciful God! the Count has been to him, and there is some new scheme of +terror afoot! + + * * * * * + +_Later._--I went after my round to Van Helsing and told him my +suspicion. He grew very grave; and, after thinking the matter over for a +while asked me to take him to Renfield. I did so. As we came to the door +we heard the lunatic within singing gaily, as he used to do in the time +which now seems so long ago. When we entered we saw with amazement that +he had spread out his sugar as of old; the flies, lethargic with the +autumn, were beginning to buzz into the room. We tried to make him talk +of the subject of our previous conversation, but he would not attend. He +went on with his singing, just as though we had not been present. He had +got a scrap of paper and was folding it into a note-book. We had to come +away as ignorant as we went in. + +His is a curious case indeed; we must watch him to-night. + + +_Letter, Mitchell, Sons and Candy to Lord Godalming._ + +_“1 October._ + +“My Lord, + +“We are at all times only too happy to meet your wishes. We beg, with +regard to the desire of your Lordship, expressed by Mr. Harker on your +behalf, to supply the following information concerning the sale and +purchase of No. 347, Piccadilly. The original vendors are the executors +of the late Mr. Archibald Winter-Suffield. The purchaser is a foreign +nobleman, Count de Ville, who effected the purchase himself paying the +purchase money in notes ‘over the counter,’ if your Lordship will pardon +us using so vulgar an expression. Beyond this we know nothing whatever +of him. + +“We are, my Lord, + +“Your Lordship’s humble servants, + +“MITCHELL, SONS & CANDY.” + + +_Dr. Seward’s Diary._ + +_2 October._--I placed a man in the corridor last night, and told him to +make an accurate note of any sound he might hear from Renfield’s room, +and gave him instructions that if there should be anything strange he +was to call me. After dinner, when we had all gathered round the fire +in the study--Mrs. Harker having gone to bed--we discussed the attempts +and discoveries of the day. Harker was the only one who had any result, +and we are in great hopes that his clue may be an important one. + +Before going to bed I went round to the patient’s room and looked in +through the observation trap. He was sleeping soundly, and his heart +rose and fell with regular respiration. + +This morning the man on duty reported to me that a little after midnight +he was restless and kept saying his prayers somewhat loudly. I asked him +if that was all; he replied that it was all he heard. There was +something about his manner so suspicious that I asked him point blank if +he had been asleep. He denied sleep, but admitted to having “dozed” for +a while. It is too bad that men cannot be trusted unless they are +watched. + +To-day Harker is out following up his clue, and Art and Quincey are +looking after horses. Godalming thinks that it will be well to have +horses always in readiness, for when we get the information which we +seek there will be no time to lose. We must sterilise all the imported +earth between sunrise and sunset; we shall thus catch the Count at his +weakest, and without a refuge to fly to. Van Helsing is off to the +British Museum looking up some authorities on ancient medicine. The old +physicians took account of things which their followers do not accept, +and the Professor is searching for witch and demon cures which may be +useful to us later. + +I sometimes think we must be all mad and that we shall wake to sanity in +strait-waistcoats. + + * * * * * + +_Later._--We have met again. We seem at last to be on the track, and our +work of to-morrow may be the beginning of the end. I wonder if +Renfield’s quiet has anything to do with this. His moods have so +followed the doings of the Count, that the coming destruction of the +monster may be carried to him in some subtle way. If we could only get +some hint as to what passed in his mind, between the time of my argument +with him to-day and his resumption of fly-catching, it might afford us a +valuable clue. He is now seemingly quiet for a spell.... Is he?---- That +wild yell seemed to come from his room.... + + * * * * * + +The attendant came bursting into my room and told me that Renfield had +somehow met with some accident. He had heard him yell; and when he went +to him found him lying on his face on the floor, all covered with blood. +I must go at once.... + + + + +CHAPTER XXI + +DR. SEWARD’S DIARY + + +_3 October._--Let me put down with exactness all that happened, as well +as I can remember it, since last I made an entry. Not a detail that I +can recall must be forgotten; in all calmness I must proceed. + +When I came to Renfield’s room I found him lying on the floor on his +left side in a glittering pool of blood. When I went to move him, it +became at once apparent that he had received some terrible injuries; +there seemed none of that unity of purpose between the parts of the body +which marks even lethargic sanity. As the face was exposed I could see +that it was horribly bruised, as though it had been beaten against the +floor--indeed it was from the face wounds that the pool of blood +originated. The attendant who was kneeling beside the body said to me as +we turned him over:-- + +“I think, sir, his back is broken. See, both his right arm and leg and +the whole side of his face are paralysed.” How such a thing could have +happened puzzled the attendant beyond measure. He seemed quite +bewildered, and his brows were gathered in as he said:-- + +“I can’t understand the two things. He could mark his face like that by +beating his own head on the floor. I saw a young woman do it once at the +Eversfield Asylum before anyone could lay hands on her. And I suppose he +might have broke his neck by falling out of bed, if he got in an awkward +kink. But for the life of me I can’t imagine how the two things +occurred. If his back was broke, he couldn’t beat his head; and if his +face was like that before the fall out of bed, there would be marks of +it.” I said to him:-- + +“Go to Dr. Van Helsing, and ask him to kindly come here at once. I want +him without an instant’s delay.” The man ran off, and within a few +minutes the Professor, in his dressing gown and slippers, appeared. When +he saw Renfield on the ground, he looked keenly at him a moment, and +then turned to me. I think he recognised my thought in my eyes, for he +said very quietly, manifestly for the ears of the attendant:-- + +“Ah, a sad accident! He will need very careful watching, and much +attention. I shall stay with you myself; but I shall first dress myself. +If you will remain I shall in a few minutes join you.” + +The patient was now breathing stertorously and it was easy to see that +he had suffered some terrible injury. Van Helsing returned with +extraordinary celerity, bearing with him a surgical case. He had +evidently been thinking and had his mind made up; for, almost before he +looked at the patient, he whispered to me:-- + +“Send the attendant away. We must be alone with him when he becomes +conscious, after the operation.” So I said:-- + +“I think that will do now, Simmons. We have done all that we can at +present. You had better go your round, and Dr. Van Helsing will operate. +Let me know instantly if there be anything unusual anywhere.” + +The man withdrew, and we went into a strict examination of the patient. +The wounds of the face was superficial; the real injury was a depressed +fracture of the skull, extending right up through the motor area. The +Professor thought a moment and said:-- + +“We must reduce the pressure and get back to normal conditions, as far +as can be; the rapidity of the suffusion shows the terrible nature of +his injury. The whole motor area seems affected. The suffusion of the +brain will increase quickly, so we must trephine at once or it may be +too late.” As he was speaking there was a soft tapping at the door. I +went over and opened it and found in the corridor without, Arthur and +Quincey in pajamas and slippers: the former spoke:-- + +“I heard your man call up Dr. Van Helsing and tell him of an accident. +So I woke Quincey or rather called for him as he was not asleep. Things +are moving too quickly and too strangely for sound sleep for any of us +these times. I’ve been thinking that to-morrow night will not see things +as they have been. We’ll have to look back--and forward a little more +than we have done. May we come in?” I nodded, and held the door open +till they had entered; then I closed it again. When Quincey saw the +attitude and state of the patient, and noted the horrible pool on the +floor, he said softly:-- + +“My God! what has happened to him? Poor, poor devil!” I told him +briefly, and added that we expected he would recover consciousness after +the operation--for a short time, at all events. He went at once and sat +down on the edge of the bed, with Godalming beside him; we all watched +in patience. + +“We shall wait,” said Van Helsing, “just long enough to fix the best +spot for trephining, so that we may most quickly and perfectly remove +the blood clot; for it is evident that the hæmorrhage is increasing.” + +The minutes during which we waited passed with fearful slowness. I had a +horrible sinking in my heart, and from Van Helsing’s face I gathered +that he felt some fear or apprehension as to what was to come. I dreaded +the words that Renfield might speak. I was positively afraid to think; +but the conviction of what was coming was on me, as I have read of men +who have heard the death-watch. The poor man’s breathing came in +uncertain gasps. Each instant he seemed as though he would open his eyes +and speak; but then would follow a prolonged stertorous breath, and he +would relapse into a more fixed insensibility. Inured as I was to sick +beds and death, this suspense grew, and grew upon me. I could almost +hear the beating of my own heart; and the blood surging through my +temples sounded like blows from a hammer. The silence finally became +agonising. I looked at my companions, one after another, and saw from +their flushed faces and damp brows that they were enduring equal +torture. There was a nervous suspense over us all, as though overhead +some dread bell would peal out powerfully when we should least expect +it. + +At last there came a time when it was evident that the patient was +sinking fast; he might die at any moment. I looked up at the Professor +and caught his eyes fixed on mine. His face was sternly set as he +spoke:-- + +“There is no time to lose. His words may be worth many lives; I have +been thinking so, as I stood here. It may be there is a soul at stake! +We shall operate just above the ear.” + +Without another word he made the operation. For a few moments the +breathing continued to be stertorous. Then there came a breath so +prolonged that it seemed as though it would tear open his chest. +Suddenly his eyes opened, and became fixed in a wild, helpless stare. +This was continued for a few moments; then it softened into a glad +surprise, and from the lips came a sigh of relief. He moved +convulsively, and as he did so, said:-- + +“I’ll be quiet, Doctor. Tell them to take off the strait-waistcoat. I +have had a terrible dream, and it has left me so weak that I cannot +move. What’s wrong with my face? it feels all swollen, and it smarts +dreadfully.” He tried to turn his head; but even with the effort his +eyes seemed to grow glassy again so I gently put it back. Then Van +Helsing said in a quiet grave tone:-- + +“Tell us your dream, Mr. Renfield.” As he heard the voice his face +brightened, through its mutilation, and he said:-- + +“That is Dr. Van Helsing. How good it is of you to be here. Give me some +water, my lips are dry; and I shall try to tell you. I dreamed”--he +stopped and seemed fainting, I called quietly to Quincey--“The +brandy--it is in my study--quick!” He flew and returned with a glass, +the decanter of brandy and a carafe of water. We moistened the parched +lips, and the patient quickly revived. It seemed, however, that his poor +injured brain had been working in the interval, for, when he was quite +conscious, he looked at me piercingly with an agonised confusion which I +shall never forget, and said:-- + +“I must not deceive myself; it was no dream, but all a grim reality.” +Then his eyes roved round the room; as they caught sight of the two +figures sitting patiently on the edge of the bed he went on:-- + +“If I were not sure already, I would know from them.” For an instant his +eyes closed--not with pain or sleep but voluntarily, as though he were +bringing all his faculties to bear; when he opened them he said, +hurriedly, and with more energy than he had yet displayed:-- + +“Quick, Doctor, quick. I am dying! I feel that I have but a few minutes; +and then I must go back to death--or worse! Wet my lips with brandy +again. I have something that I must say before I die; or before my poor +crushed brain dies anyhow. Thank you! It was that night after you left +me, when I implored you to let me go away. I couldn’t speak then, for I +felt my tongue was tied; but I was as sane then, except in that way, as +I am now. I was in an agony of despair for a long time after you left +me; it seemed hours. Then there came a sudden peace to me. My brain +seemed to become cool again, and I realised where I was. I heard the +dogs bark behind our house, but not where He was!” As he spoke, Van +Helsing’s eyes never blinked, but his hand came out and met mine and +gripped it hard. He did not, however, betray himself; he nodded slightly +and said: “Go on,” in a low voice. Renfield proceeded:-- + +“He came up to the window in the mist, as I had seen him often before; +but he was solid then--not a ghost, and his eyes were fierce like a +man’s when angry. He was laughing with his red mouth; the sharp white +teeth glinted in the moonlight when he turned to look back over the belt +of trees, to where the dogs were barking. I wouldn’t ask him to come in +at first, though I knew he wanted to--just as he had wanted all along. +Then he began promising me things--not in words but by doing them.” He +was interrupted by a word from the Professor:-- + +“How?” + +“By making them happen; just as he used to send in the flies when the +sun was shining. Great big fat ones with steel and sapphire on their +wings; and big moths, in the night, with skull and cross-bones on their +backs.” Van Helsing nodded to him as he whispered to me unconsciously:-- + +“The _Acherontia Aitetropos of the Sphinges_--what you call the +‘Death’s-head Moth’?” The patient went on without stopping. + +“Then he began to whisper: ‘Rats, rats, rats! Hundreds, thousands, +millions of them, and every one a life; and dogs to eat them, and cats +too. All lives! all red blood, with years of life in it; and not merely +buzzing flies!’ I laughed at him, for I wanted to see what he could do. +Then the dogs howled, away beyond the dark trees in His house. He +beckoned me to the window. I got up and looked out, and He raised his +hands, and seemed to call out without using any words. A dark mass +spread over the grass, coming on like the shape of a flame of fire; and +then He moved the mist to the right and left, and I could see that there +were thousands of rats with their eyes blazing red--like His, only +smaller. He held up his hand, and they all stopped; and I thought he +seemed to be saying: ‘All these lives will I give you, ay, and many more +and greater, through countless ages, if you will fall down and worship +me!’ And then a red cloud, like the colour of blood, seemed to close +over my eyes; and before I knew what I was doing, I found myself opening +the sash and saying to Him: ‘Come in, Lord and Master!’ The rats were +all gone, but He slid into the room through the sash, though it was only +open an inch wide--just as the Moon herself has often come in through +the tiniest crack and has stood before me in all her size and +splendour.” + +His voice was weaker, so I moistened his lips with the brandy again, and +he continued; but it seemed as though his memory had gone on working in +the interval for his story was further advanced. I was about to call him +back to the point, but Van Helsing whispered to me: “Let him go on. Do +not interrupt him; he cannot go back, and maybe could not proceed at all +if once he lost the thread of his thought.” He proceeded:-- + +“All day I waited to hear from him, but he did not send me anything, not +even a blow-fly, and when the moon got up I was pretty angry with him. +When he slid in through the window, though it was shut, and did not even +knock, I got mad with him. He sneered at me, and his white face looked +out of the mist with his red eyes gleaming, and he went on as though he +owned the whole place, and I was no one. He didn’t even smell the same +as he went by me. I couldn’t hold him. I thought that, somehow, Mrs. +Harker had come into the room.” + +The two men sitting on the bed stood up and came over, standing behind +him so that he could not see them, but where they could hear better. +They were both silent, but the Professor started and quivered; his face, +however, grew grimmer and sterner still. Renfield went on without +noticing:-- + +“When Mrs. Harker came in to see me this afternoon she wasn’t the same; +it was like tea after the teapot had been watered.” Here we all moved, +but no one said a word; he went on:-- + +“I didn’t know that she was here till she spoke; and she didn’t look the +same. I don’t care for the pale people; I like them with lots of blood +in them, and hers had all seemed to have run out. I didn’t think of it +at the time; but when she went away I began to think, and it made me mad +to know that He had been taking the life out of her.” I could feel that +the rest quivered, as I did, but we remained otherwise still. “So when +He came to-night I was ready for Him. I saw the mist stealing in, and I +grabbed it tight. I had heard that madmen have unnatural strength; and +as I knew I was a madman--at times anyhow--I resolved to use my power. +Ay, and He felt it too, for He had to come out of the mist to struggle +with me. I held tight; and I thought I was going to win, for I didn’t +mean Him to take any more of her life, till I saw His eyes. They burned +into me, and my strength became like water. He slipped through it, and +when I tried to cling to Him, He raised me up and flung me down. There +was a red cloud before me, and a noise like thunder, and the mist seemed +to steal away under the door.” His voice was becoming fainter and his +breath more stertorous. Van Helsing stood up instinctively. + +“We know the worst now,” he said. “He is here, and we know his purpose. +It may not be too late. Let us be armed--the same as we were the other +night, but lose no time; there is not an instant to spare.” There was no +need to put our fear, nay our conviction, into words--we shared them in +common. We all hurried and took from our rooms the same things that we +had when we entered the Count’s house. The Professor had his ready, and +as we met in the corridor he pointed to them significantly as he said:-- + +“They never leave me; and they shall not till this unhappy business is +over. Be wise also, my friends. It is no common enemy that we deal with. +Alas! alas! that that dear Madam Mina should suffer!” He stopped; his +voice was breaking, and I do not know if rage or terror predominated in +my own heart. + +Outside the Harkers’ door we paused. Art and Quincey held back, and the +latter said:-- + +“Should we disturb her?” + +“We must,” said Van Helsing grimly. “If the door be locked, I shall +break it in.” + +“May it not frighten her terribly? It is unusual to break into a lady’s +room!” + +Van Helsing said solemnly, “You are always right; but this is life and +death. All chambers are alike to the doctor; and even were they not they +are all as one to me to-night. Friend John, when I turn the handle, if +the door does not open, do you put your shoulder down and shove; and you +too, my friends. Now!” + +He turned the handle as he spoke, but the door did not yield. We threw +ourselves against it; with a crash it burst open, and we almost fell +headlong into the room. The Professor did actually fall, and I saw +across him as he gathered himself up from hands and knees. What I saw +appalled me. I felt my hair rise like bristles on the back of my neck, +and my heart seemed to stand still. + +The moonlight was so bright that through the thick yellow blind the room +was light enough to see. On the bed beside the window lay Jonathan +Harker, his face flushed and breathing heavily as though in a stupor. +Kneeling on the near edge of the bed facing outwards was the white-clad +figure of his wife. By her side stood a tall, thin man, clad in black. +His face was turned from us, but the instant we saw we all recognised +the Count--in every way, even to the scar on his forehead. With his left +hand he held both Mrs. Harker’s hands, keeping them away with her arms +at full tension; his right hand gripped her by the back of the neck, +forcing her face down on his bosom. Her white nightdress was smeared +with blood, and a thin stream trickled down the man’s bare breast which +was shown by his torn-open dress. The attitude of the two had a terrible +resemblance to a child forcing a kitten’s nose into a saucer of milk to +compel it to drink. As we burst into the room, the Count turned his +face, and the hellish look that I had heard described seemed to leap +into it. His eyes flamed red with devilish passion; the great nostrils +of the white aquiline nose opened wide and quivered at the edge; and the +white sharp teeth, behind the full lips of the blood-dripping mouth, +champed together like those of a wild beast. With a wrench, which threw +his victim back upon the bed as though hurled from a height, he turned +and sprang at us. But by this time the Professor had gained his feet, +and was holding towards him the envelope which contained the Sacred +Wafer. The Count suddenly stopped, just as poor Lucy had done outside +the tomb, and cowered back. Further and further back he cowered, as we, +lifting our crucifixes, advanced. The moonlight suddenly failed, as a +great black cloud sailed across the sky; and when the gaslight sprang up +under Quincey’s match, we saw nothing but a faint vapour. This, as we +looked, trailed under the door, which with the recoil from its bursting +open, had swung back to its old position. Van Helsing, Art, and I moved +forward to Mrs. Harker, who by this time had drawn her breath and with +it had given a scream so wild, so ear-piercing, so despairing that it +seems to me now that it will ring in my ears till my dying day. For a +few seconds she lay in her helpless attitude and disarray. Her face was +ghastly, with a pallor which was accentuated by the blood which smeared +her lips and cheeks and chin; from her throat trickled a thin stream of +blood; her eyes were mad with terror. Then she put before her face her +poor crushed hands, which bore on their whiteness the red mark of the +Count’s terrible grip, and from behind them came a low desolate wail +which made the terrible scream seem only the quick expression of an +endless grief. Van Helsing stepped forward and drew the coverlet gently +over her body, whilst Art, after looking at her face for an instant +despairingly, ran out of the room. Van Helsing whispered to me:-- + +“Jonathan is in a stupor such as we know the Vampire can produce. We can +do nothing with poor Madam Mina for a few moments till she recovers +herself; I must wake him!” He dipped the end of a towel in cold water +and with it began to flick him on the face, his wife all the while +holding her face between her hands and sobbing in a way that was +heart-breaking to hear. I raised the blind, and looked out of the +window. There was much moonshine; and as I looked I could see Quincey +Morris run across the lawn and hide himself in the shadow of a great +yew-tree. It puzzled me to think why he was doing this; but at the +instant I heard Harker’s quick exclamation as he woke to partial +consciousness, and turned to the bed. On his face, as there might well +be, was a look of wild amazement. He seemed dazed for a few seconds, and +then full consciousness seemed to burst upon him all at once, and he +started up. His wife was aroused by the quick movement, and turned to +him with her arms stretched out, as though to embrace him; instantly, +however, she drew them in again, and putting her elbows together, held +her hands before her face, and shuddered till the bed beneath her shook. + +“In God’s name what does this mean?” Harker cried out. “Dr. Seward, Dr. +Van Helsing, what is it? What has happened? What is wrong? Mina, dear, +what is it? What does that blood mean? My God, my God! has it come to +this!” and, raising himself to his knees, he beat his hands wildly +together. “Good God help us! help her! oh, help her!” With a quick +movement he jumped from bed, and began to pull on his clothes,--all the +man in him awake at the need for instant exertion. “What has happened? +Tell me all about it!” he cried without pausing. “Dr. Van Helsing, you +love Mina, I know. Oh, do something to save her. It cannot have gone too +far yet. Guard her while I look for _him_!” His wife, through her terror +and horror and distress, saw some sure danger to him: instantly +forgetting her own grief, she seized hold of him and cried out:-- + +“No! no! Jonathan, you must not leave me. I have suffered enough +to-night, God knows, without the dread of his harming you. You must stay +with me. Stay with these friends who will watch over you!” Her +expression became frantic as she spoke; and, he yielding to her, she +pulled him down sitting on the bed side, and clung to him fiercely. + +Van Helsing and I tried to calm them both. The Professor held up his +little golden crucifix, and said with wonderful calmness:-- + +“Do not fear, my dear. We are here; and whilst this is close to you no +foul thing can approach. You are safe for to-night; and we must be calm +and take counsel together.” She shuddered and was silent, holding down +her head on her husband’s breast. When she raised it, his white +night-robe was stained with blood where her lips had touched, and where +the thin open wound in her neck had sent forth drops. The instant she +saw it she drew back, with a low wail, and whispered, amidst choking +sobs:-- + +“Unclean, unclean! I must touch him or kiss him no more. Oh, that it +should be that it is I who am now his worst enemy, and whom he may have +most cause to fear.” To this he spoke out resolutely:-- + +“Nonsense, Mina. It is a shame to me to hear such a word. I would not +hear it of you; and I shall not hear it from you. May God judge me by my +deserts, and punish me with more bitter suffering than even this hour, +if by any act or will of mine anything ever come between us!” He put out +his arms and folded her to his breast; and for a while she lay there +sobbing. He looked at us over her bowed head, with eyes that blinked +damply above his quivering nostrils; his mouth was set as steel. After a +while her sobs became less frequent and more faint, and then he said to +me, speaking with a studied calmness which I felt tried his nervous +power to the utmost:-- + +“And now, Dr. Seward, tell me all about it. Too well I know the broad +fact; tell me all that has been.” I told him exactly what had happened, +and he listened with seeming impassiveness; but his nostrils twitched +and his eyes blazed as I told how the ruthless hands of the Count had +held his wife in that terrible and horrid position, with her mouth to +the open wound in his breast. It interested me, even at that moment, to +see, that, whilst the face of white set passion worked convulsively over +the bowed head, the hands tenderly and lovingly stroked the ruffled +hair. Just as I had finished, Quincey and Godalming knocked at the door. +They entered in obedience to our summons. Van Helsing looked at me +questioningly. I understood him to mean if we were to take advantage of +their coming to divert if possible the thoughts of the unhappy husband +and wife from each other and from themselves; so on nodding acquiescence +to him he asked them what they had seen or done. To which Lord Godalming +answered:-- + +“I could not see him anywhere in the passage, or in any of our rooms. I +looked in the study but, though he had been there, he had gone. He had, +however----” He stopped suddenly, looking at the poor drooping figure on +the bed. Van Helsing said gravely:-- + +“Go on, friend Arthur. We want here no more concealments. Our hope now +is in knowing all. Tell freely!” So Art went on:-- + +“He had been there, and though it could only have been for a few +seconds, he made rare hay of the place. All the manuscript had been +burned, and the blue flames were flickering amongst the white ashes; the +cylinders of your phonograph too were thrown on the fire, and the wax +had helped the flames.” Here I interrupted. “Thank God there is the +other copy in the safe!” His face lit for a moment, but fell again as he +went on: “I ran downstairs then, but could see no sign of him. I looked +into Renfield’s room; but there was no trace there except----!” Again he +paused. “Go on,” said Harker hoarsely; so he bowed his head and +moistening his lips with his tongue, added: “except that the poor fellow +is dead.” Mrs. Harker raised her head, looking from one to the other of +us she said solemnly:-- + +“God’s will be done!” I could not but feel that Art was keeping back +something; but, as I took it that it was with a purpose, I said nothing. +Van Helsing turned to Morris and asked:-- + +“And you, friend Quincey, have you any to tell?” + +“A little,” he answered. “It may be much eventually, but at present I +can’t say. I thought it well to know if possible where the Count would +go when he left the house. I did not see him; but I saw a bat rise from +Renfield’s window, and flap westward. I expected to see him in some +shape go back to Carfax; but he evidently sought some other lair. He +will not be back to-night; for the sky is reddening in the east, and the +dawn is close. We must work to-morrow!” + +He said the latter words through his shut teeth. For a space of perhaps +a couple of minutes there was silence, and I could fancy that I could +hear the sound of our hearts beating; then Van Helsing said, placing his +hand very tenderly on Mrs. Harker’s head:-- + +“And now, Madam Mina--poor, dear, dear Madam Mina--tell us exactly what +happened. God knows that I do not want that you be pained; but it is +need that we know all. For now more than ever has all work to be done +quick and sharp, and in deadly earnest. The day is close to us that must +end all, if it may be so; and now is the chance that we may live and +learn.” + +The poor, dear lady shivered, and I could see the tension of her nerves +as she clasped her husband closer to her and bent her head lower and +lower still on his breast. Then she raised her head proudly, and held +out one hand to Van Helsing who took it in his, and, after stooping and +kissing it reverently, held it fast. The other hand was locked in that +of her husband, who held his other arm thrown round her protectingly. +After a pause in which she was evidently ordering her thoughts, she +began:-- + +“I took the sleeping draught which you had so kindly given me, but for a +long time it did not act. I seemed to become more wakeful, and myriads +of horrible fancies began to crowd in upon my mind--all of them +connected with death, and vampires; with blood, and pain, and trouble.” +Her husband involuntarily groaned as she turned to him and said +lovingly: “Do not fret, dear. You must be brave and strong, and help me +through the horrible task. If you only knew what an effort it is to me +to tell of this fearful thing at all, you would understand how much I +need your help. Well, I saw I must try to help the medicine to its work +with my will, if it was to do me any good, so I resolutely set myself to +sleep. Sure enough sleep must soon have come to me, for I remember no +more. Jonathan coming in had not waked me, for he lay by my side when +next I remember. There was in the room the same thin white mist that I +had before noticed. But I forget now if you know of this; you will find +it in my diary which I shall show you later. I felt the same vague +terror which had come to me before and the same sense of some presence. +I turned to wake Jonathan, but found that he slept so soundly that it +seemed as if it was he who had taken the sleeping draught, and not I. I +tried, but I could not wake him. This caused me a great fear, and I +looked around terrified. Then indeed, my heart sank within me: beside +the bed, as if he had stepped out of the mist--or rather as if the mist +had turned into his figure, for it had entirely disappeared--stood a +tall, thin man, all in black. I knew him at once from the description of +the others. The waxen face; the high aquiline nose, on which the light +fell in a thin white line; the parted red lips, with the sharp white +teeth showing between; and the red eyes that I had seemed to see in the +sunset on the windows of St. Mary’s Church at Whitby. I knew, too, the +red scar on his forehead where Jonathan had struck him. For an instant +my heart stood still, and I would have screamed out, only that I was +paralysed. In the pause he spoke in a sort of keen, cutting whisper, +pointing as he spoke to Jonathan:-- + +“‘Silence! If you make a sound I shall take him and dash his brains out +before your very eyes.’ I was appalled and was too bewildered to do or +say anything. With a mocking smile, he placed one hand upon my shoulder +and, holding me tight, bared my throat with the other, saying as he did +so, ‘First, a little refreshment to reward my exertions. You may as well +be quiet; it is not the first time, or the second, that your veins have +appeased my thirst!’ I was bewildered, and, strangely enough, I did not +want to hinder him. I suppose it is a part of the horrible curse that +such is, when his touch is on his victim. And oh, my God, my God, pity +me! He placed his reeking lips upon my throat!” Her husband groaned +again. She clasped his hand harder, and looked at him pityingly, as if +he were the injured one, and went on:-- + +“I felt my strength fading away, and I was in a half swoon. How long +this horrible thing lasted I know not; but it seemed that a long time +must have passed before he took his foul, awful, sneering mouth away. I +saw it drip with the fresh blood!” The remembrance seemed for a while to +overpower her, and she drooped and would have sunk down but for her +husband’s sustaining arm. With a great effort she recovered herself and +went on:-- + +“Then he spoke to me mockingly, ‘And so you, like the others, would play +your brains against mine. You would help these men to hunt me and +frustrate me in my designs! You know now, and they know in part already, +and will know in full before long, what it is to cross my path. They +should have kept their energies for use closer to home. Whilst they +played wits against me--against me who commanded nations, and intrigued +for them, and fought for them, hundreds of years before they were +born--I was countermining them. And you, their best beloved one, are now +to me, flesh of my flesh; blood of my blood; kin of my kin; my bountiful +wine-press for a while; and shall be later on my companion and my +helper. You shall be avenged in turn; for not one of them but shall +minister to your needs. But as yet you are to be punished for what you +have done. You have aided in thwarting me; now you shall come to my +call. When my brain says “Come!” to you, you shall cross land or sea to +do my bidding; and to that end this!’ With that he pulled open his +shirt, and with his long sharp nails opened a vein in his breast. When +the blood began to spurt out, he took my hands in one of his, holding +them tight, and with the other seized my neck and pressed my mouth to +the wound, so that I must either suffocate or swallow some of the---- Oh +my God! my God! what have I done? What have I done to deserve such a +fate, I who have tried to walk in meekness and righteousness all my +days. God pity me! Look down on a poor soul in worse than mortal peril; +and in mercy pity those to whom she is dear!” Then she began to rub her +lips as though to cleanse them from pollution. + +As she was telling her terrible story, the eastern sky began to quicken, +and everything became more and more clear. Harker was still and quiet; +but over his face, as the awful narrative went on, came a grey look +which deepened and deepened in the morning light, till when the first +red streak of the coming dawn shot up, the flesh stood darkly out +against the whitening hair. + +We have arranged that one of us is to stay within call of the unhappy +pair till we can meet together and arrange about taking action. + +Of this I am sure: the sun rises to-day on no more miserable house in +all the great round of its daily course. + + + + +CHAPTER XXII + +JONATHAN HARKER’S JOURNAL + + +_3 October._--As I must do something or go mad, I write this diary. It +is now six o’clock, and we are to meet in the study in half an hour and +take something to eat; for Dr. Van Helsing and Dr. Seward are agreed +that if we do not eat we cannot work our best. Our best will be, God +knows, required to-day. I must keep writing at every chance, for I dare +not stop to think. All, big and little, must go down; perhaps at the end +the little things may teach us most. The teaching, big or little, could +not have landed Mina or me anywhere worse than we are to-day. However, +we must trust and hope. Poor Mina told me just now, with the tears +running down her dear cheeks, that it is in trouble and trial that our +faith is tested--that we must keep on trusting; and that God will aid us +up to the end. The end! oh my God! what end?... To work! To work! + +When Dr. Van Helsing and Dr. Seward had come back from seeing poor +Renfield, we went gravely into what was to be done. First, Dr. Seward +told us that when he and Dr. Van Helsing had gone down to the room below +they had found Renfield lying on the floor, all in a heap. His face was +all bruised and crushed in, and the bones of the neck were broken. + +Dr. Seward asked the attendant who was on duty in the passage if he had +heard anything. He said that he had been sitting down--he confessed to +half dozing--when he heard loud voices in the room, and then Renfield +had called out loudly several times, “God! God! God!” after that there +was a sound of falling, and when he entered the room he found him lying +on the floor, face down, just as the doctors had seen him. Van Helsing +asked if he had heard “voices” or “a voice,” and he said he could not +say; that at first it had seemed to him as if there were two, but as +there was no one in the room it could have been only one. He could swear +to it, if required, that the word “God” was spoken by the patient. Dr. +Seward said to us, when we were alone, that he did not wish to go into +the matter; the question of an inquest had to be considered, and it +would never do to put forward the truth, as no one would believe it. As +it was, he thought that on the attendant’s evidence he could give a +certificate of death by misadventure in falling from bed. In case the +coroner should demand it, there would be a formal inquest, necessarily +to the same result. + +When the question began to be discussed as to what should be our next +step, the very first thing we decided was that Mina should be in full +confidence; that nothing of any sort--no matter how painful--should be +kept from her. She herself agreed as to its wisdom, and it was pitiful +to see her so brave and yet so sorrowful, and in such a depth of +despair. “There must be no concealment,” she said, “Alas! we have had +too much already. And besides there is nothing in all the world that can +give me more pain than I have already endured--than I suffer now! +Whatever may happen, it must be of new hope or of new courage to me!” +Van Helsing was looking at her fixedly as she spoke, and said, suddenly +but quietly:-- + +“But dear Madam Mina, are you not afraid; not for yourself, but for +others from yourself, after what has happened?” Her face grew set in its +lines, but her eyes shone with the devotion of a martyr as she +answered:-- + +“Ah no! for my mind is made up!” + +“To what?” he asked gently, whilst we were all very still; for each in +our own way we had a sort of vague idea of what she meant. Her answer +came with direct simplicity, as though she were simply stating a fact:-- + +“Because if I find in myself--and I shall watch keenly for it--a sign of +harm to any that I love, I shall die!” + +“You would not kill yourself?” he asked, hoarsely. + +“I would; if there were no friend who loved me, who would save me such a +pain, and so desperate an effort!” She looked at him meaningly as she +spoke. He was sitting down; but now he rose and came close to her and +put his hand on her head as he said solemnly: + +“My child, there is such an one if it were for your good. For myself I +could hold it in my account with God to find such an euthanasia for you, +even at this moment if it were best. Nay, were it safe! But my +child----” For a moment he seemed choked, and a great sob rose in his +throat; he gulped it down and went on:-- + +“There are here some who would stand between you and death. You must not +die. You must not die by any hand; but least of all by your own. Until +the other, who has fouled your sweet life, is true dead you must not +die; for if he is still with the quick Un-Dead, your death would make +you even as he is. No, you must live! You must struggle and strive to +live, though death would seem a boon unspeakable. You must fight Death +himself, though he come to you in pain or in joy; by the day, or the +night; in safety or in peril! On your living soul I charge you that you +do not die--nay, nor think of death--till this great evil be past.” The +poor dear grew white as death, and shock and shivered, as I have seen a +quicksand shake and shiver at the incoming of the tide. We were all +silent; we could do nothing. At length she grew more calm and turning to +him said, sweetly, but oh! so sorrowfully, as she held out her hand:-- + +“I promise you, my dear friend, that if God will let me live, I shall +strive to do so; till, if it may be in His good time, this horror may +have passed away from me.” She was so good and brave that we all felt +that our hearts were strengthened to work and endure for her, and we +began to discuss what we were to do. I told her that she was to have all +the papers in the safe, and all the papers or diaries and phonographs we +might hereafter use; and was to keep the record as she had done before. +She was pleased with the prospect of anything to do--if “pleased” could +be used in connection with so grim an interest. + +As usual Van Helsing had thought ahead of everyone else, and was +prepared with an exact ordering of our work. + +“It is perhaps well,” he said, “that at our meeting after our visit to +Carfax we decided not to do anything with the earth-boxes that lay +there. Had we done so, the Count must have guessed our purpose, and +would doubtless have taken measures in advance to frustrate such an +effort with regard to the others; but now he does not know our +intentions. Nay, more, in all probability, he does not know that such a +power exists to us as can sterilise his lairs, so that he cannot use +them as of old. We are now so much further advanced in our knowledge as +to their disposition that, when we have examined the house in +Piccadilly, we may track the very last of them. To-day, then, is ours; +and in it rests our hope. The sun that rose on our sorrow this morning +guards us in its course. Until it sets to-night, that monster must +retain whatever form he now has. He is confined within the limitations +of his earthly envelope. He cannot melt into thin air nor disappear +through cracks or chinks or crannies. If he go through a doorway, he +must open the door like a mortal. And so we have this day to hunt out +all his lairs and sterilise them. So we shall, if we have not yet catch +him and destroy him, drive him to bay in some place where the catching +and the destroying shall be, in time, sure.” Here I started up for I +could not contain myself at the thought that the minutes and seconds so +preciously laden with Mina’s life and happiness were flying from us, +since whilst we talked action was impossible. But Van Helsing held up +his hand warningly. “Nay, friend Jonathan,” he said, “in this, the +quickest way home is the longest way, so your proverb say. We shall all +act and act with desperate quick, when the time has come. But think, in +all probable the key of the situation is in that house in Piccadilly. +The Count may have many houses which he has bought. Of them he will have +deeds of purchase, keys and other things. He will have paper that he +write on; he will have his book of cheques. There are many belongings +that he must have somewhere; why not in this place so central, so quiet, +where he come and go by the front or the back at all hour, when in the +very vast of the traffic there is none to notice. We shall go there and +search that house; and when we learn what it holds, then we do what our +friend Arthur call, in his phrases of hunt ‘stop the earths’ and so we +run down our old fox--so? is it not?” + +“Then let us come at once,” I cried, “we are wasting the precious, +precious time!” The Professor did not move, but simply said:-- + +“And how are we to get into that house in Piccadilly?” + +“Any way!” I cried. “We shall break in if need be.” + +“And your police; where will they be, and what will they say?” + +I was staggered; but I knew that if he wished to delay he had a good +reason for it. So I said, as quietly as I could:-- + +“Don’t wait more than need be; you know, I am sure, what torture I am +in.” + +“Ah, my child, that I do; and indeed there is no wish of me to add to +your anguish. But just think, what can we do, until all the world be at +movement. Then will come our time. I have thought and thought, and it +seems to me that the simplest way is the best of all. Now we wish to get +into the house, but we have no key; is it not so?” I nodded. + +“Now suppose that you were, in truth, the owner of that house, and could +not still get in; and think there was to you no conscience of the +housebreaker, what would you do?” + +“I should get a respectable locksmith, and set him to work to pick the +lock for me.” + +“And your police, they would interfere, would they not?” + +“Oh, no! not if they knew the man was properly employed.” + +“Then,” he looked at me as keenly as he spoke, “all that is in doubt is +the conscience of the employer, and the belief of your policemen as to +whether or no that employer has a good conscience or a bad one. Your +police must indeed be zealous men and clever--oh, so clever!--in reading +the heart, that they trouble themselves in such matter. No, no, my +friend Jonathan, you go take the lock off a hundred empty house in this +your London, or of any city in the world; and if you do it as such +things are rightly done, and at the time such things are rightly done, +no one will interfere. I have read of a gentleman who owned a so fine +house in London, and when he went for months of summer to Switzerland +and lock up his house, some burglar came and broke window at back and +got in. Then he went and made open the shutters in front and walk out +and in through the door, before the very eyes of the police. Then he +have an auction in that house, and advertise it, and put up big notice; +and when the day come he sell off by a great auctioneer all the goods of +that other man who own them. Then he go to a builder, and he sell him +that house, making an agreement that he pull it down and take all away +within a certain time. And your police and other authority help him all +they can. And when that owner come back from his holiday in Switzerland +he find only an empty hole where his house had been. This was all done +_en règle_; and in our work we shall be _en règle_ too. We shall not go +so early that the policemen who have then little to think of, shall deem +it strange; but we shall go after ten o’clock, when there are many +about, and such things would be done were we indeed owners of the +house.” + +I could not but see how right he was and the terrible despair of Mina’s +face became relaxed a thought; there was hope in such good counsel. Van +Helsing went on:-- + +“When once within that house we may find more clues; at any rate some of +us can remain there whilst the rest find the other places where there be +more earth-boxes--at Bermondsey and Mile End.” + +Lord Godalming stood up. “I can be of some use here,” he said. “I shall +wire to my people to have horses and carriages where they will be most +convenient.” + +“Look here, old fellow,” said Morris, “it is a capital idea to have all +ready in case we want to go horsebacking; but don’t you think that one +of your snappy carriages with its heraldic adornments in a byway of +Walworth or Mile End would attract too much attention for our purposes? +It seems to me that we ought to take cabs when we go south or east; and +even leave them somewhere near the neighbourhood we are going to.” + +“Friend Quincey is right!” said the Professor. “His head is what you +call in plane with the horizon. It is a difficult thing that we go to +do, and we do not want no peoples to watch us if so it may.” + +Mina took a growing interest in everything and I was rejoiced to see +that the exigency of affairs was helping her to forget for a time the +terrible experience of the night. She was very, very pale--almost +ghastly, and so thin that her lips were drawn away, showing her teeth in +somewhat of prominence. I did not mention this last, lest it should give +her needless pain; but it made my blood run cold in my veins to think of +what had occurred with poor Lucy when the Count had sucked her blood. As +yet there was no sign of the teeth growing sharper; but the time as yet +was short, and there was time for fear. + +When we came to the discussion of the sequence of our efforts and of the +disposition of our forces, there were new sources of doubt. It was +finally agreed that before starting for Piccadilly we should destroy the +Count’s lair close at hand. In case he should find it out too soon, we +should thus be still ahead of him in our work of destruction; and his +presence in his purely material shape, and at his weakest, might give us +some new clue. + +As to the disposal of forces, it was suggested by the Professor that, +after our visit to Carfax, we should all enter the house in Piccadilly; +that the two doctors and I should remain there, whilst Lord Godalming +and Quincey found the lairs at Walworth and Mile End and destroyed them. +It was possible, if not likely, the Professor urged, that the Count +might appear in Piccadilly during the day, and that if so we might be +able to cope with him then and there. At any rate, we might be able to +follow him in force. To this plan I strenuously objected, and so far as +my going was concerned, for I said that I intended to stay and protect +Mina, I thought that my mind was made up on the subject; but Mina would +not listen to my objection. She said that there might be some law matter +in which I could be useful; that amongst the Count’s papers might be +some clue which I could understand out of my experience in Transylvania; +and that, as it was, all the strength we could muster was required to +cope with the Count’s extraordinary power. I had to give in, for Mina’s +resolution was fixed; she said that it was the last hope for _her_ that +we should all work together. “As for me,” she said, “I have no fear. +Things have been as bad as they can be; and whatever may happen must +have in it some element of hope or comfort. Go, my husband! God can, if +He wishes it, guard me as well alone as with any one present.” So I +started up crying out: “Then in God’s name let us come at once, for we +are losing time. The Count may come to Piccadilly earlier than we +think.” + +“Not so!” said Van Helsing, holding up his hand. + +“But why?” I asked. + +“Do you forget,” he said, with actually a smile, “that last night he +banqueted heavily, and will sleep late?” + +Did I forget! shall I ever--can I ever! Can any of us ever forget that +terrible scene! Mina struggled hard to keep her brave countenance; but +the pain overmastered her and she put her hands before her face, and +shuddered whilst she moaned. Van Helsing had not intended to recall her +frightful experience. He had simply lost sight of her and her part in +the affair in his intellectual effort. When it struck him what he said, +he was horrified at his thoughtlessness and tried to comfort her. “Oh, +Madam Mina,” he said, “dear, dear Madam Mina, alas! that I of all who so +reverence you should have said anything so forgetful. These stupid old +lips of mine and this stupid old head do not deserve so; but you will +forget it, will you not?” He bent low beside her as he spoke; she took +his hand, and looking at him through her tears, said hoarsely:-- + +“No, I shall not forget, for it is well that I remember; and with it I +have so much in memory of you that is sweet, that I take it all +together. Now, you must all be going soon. Breakfast is ready, and we +must all eat that we may be strong.” + +Breakfast was a strange meal to us all. We tried to be cheerful and +encourage each other, and Mina was the brightest and most cheerful of +us. When it was over, Van Helsing stood up and said:-- + +“Now, my dear friends, we go forth to our terrible enterprise. Are we +all armed, as we were on that night when first we visited our enemy’s +lair; armed against ghostly as well as carnal attack?” We all assured +him. “Then it is well. Now, Madam Mina, you are in any case _quite_ safe +here until the sunset; and before then we shall return--if---- We shall +return! But before we go let me see you armed against personal attack. I +have myself, since you came down, prepared your chamber by the placing +of things of which we know, so that He may not enter. Now let me guard +yourself. On your forehead I touch this piece of Sacred Wafer in the +name of the Father, the Son, and----” + +There was a fearful scream which almost froze our hearts to hear. As he +had placed the Wafer on Mina’s forehead, it had seared it--had burned +into the flesh as though it had been a piece of white-hot metal. My poor +darling’s brain had told her the significance of the fact as quickly as +her nerves received the pain of it; and the two so overwhelmed her that +her overwrought nature had its voice in that dreadful scream. But the +words to her thought came quickly; the echo of the scream had not ceased +to ring on the air when there came the reaction, and she sank on her +knees on the floor in an agony of abasement. Pulling her beautiful hair +over her face, as the leper of old his mantle, she wailed out:-- + +“Unclean! Unclean! Even the Almighty shuns my polluted flesh! I must +bear this mark of shame upon my forehead until the Judgment Day.” They +all paused. I had thrown myself beside her in an agony of helpless +grief, and putting my arms around held her tight. For a few minutes our +sorrowful hearts beat together, whilst the friends around us turned away +their eyes that ran tears silently. Then Van Helsing turned and said +gravely; so gravely that I could not help feeling that he was in some +way inspired, and was stating things outside himself:-- + +“It may be that you may have to bear that mark till God himself see fit, +as He most surely shall, on the Judgment Day, to redress all wrongs of +the earth and of His children that He has placed thereon. And oh, Madam +Mina, my dear, my dear, may we who love you be there to see, when that +red scar, the sign of God’s knowledge of what has been, shall pass away, +and leave your forehead as pure as the heart we know. For so surely as +we live, that scar shall pass away when God sees right to lift the +burden that is hard upon us. Till then we bear our Cross, as His Son did +in obedience to His Will. It may be that we are chosen instruments of +His good pleasure, and that we ascend to His bidding as that other +through stripes and shame; through tears and blood; through doubts and +fears, and all that makes the difference between God and man.” + +There was hope in his words, and comfort; and they made for resignation. +Mina and I both felt so, and simultaneously we each took one of the old +man’s hands and bent over and kissed it. Then without a word we all +knelt down together, and, all holding hands, swore to be true to each +other. We men pledged ourselves to raise the veil of sorrow from the +head of her whom, each in his own way, we loved; and we prayed for help +and guidance in the terrible task which lay before us. + +It was then time to start. So I said farewell to Mina, a parting which +neither of us shall forget to our dying day; and we set out. + +To one thing I have made up my mind: if we find out that Mina must be a +vampire in the end, then she shall not go into that unknown and terrible +land alone. I suppose it is thus that in old times one vampire meant +many; just as their hideous bodies could only rest in sacred earth, so +the holiest love was the recruiting sergeant for their ghastly ranks. + +We entered Carfax without trouble and found all things the same as on +the first occasion. It was hard to believe that amongst so prosaic +surroundings of neglect and dust and decay there was any ground for such +fear as already we knew. Had not our minds been made up, and had there +not been terrible memories to spur us on, we could hardly have proceeded +with our task. We found no papers, or any sign of use in the house; and +in the old chapel the great boxes looked just as we had seen them last. +Dr. Van Helsing said to us solemnly as we stood before them:-- + +“And now, my friends, we have a duty here to do. We must sterilise this +earth, so sacred of holy memories, that he has brought from a far +distant land for such fell use. He has chosen this earth because it has +been holy. Thus we defeat him with his own weapon, for we make it more +holy still. It was sanctified to such use of man, now we sanctify it to +God.” As he spoke he took from his bag a screwdriver and a wrench, and +very soon the top of one of the cases was thrown open. The earth smelled +musty and close; but we did not somehow seem to mind, for our attention +was concentrated on the Professor. Taking from his box a piece of the +Sacred Wafer he laid it reverently on the earth, and then shutting down +the lid began to screw it home, we aiding him as he worked. + +One by one we treated in the same way each of the great boxes, and left +them as we had found them to all appearance; but in each was a portion +of the Host. + +When we closed the door behind us, the Professor said solemnly:-- + +“So much is already done. If it may be that with all the others we can +be so successful, then the sunset of this evening may shine on Madam +Mina’s forehead all white as ivory and with no stain!” + +As we passed across the lawn on our way to the station to catch our +train we could see the front of the asylum. I looked eagerly, and in the +window of my own room saw Mina. I waved my hand to her, and nodded to +tell that our work there was successfully accomplished. She nodded in +reply to show that she understood. The last I saw, she was waving her +hand in farewell. It was with a heavy heart that we sought the station +and just caught the train, which was steaming in as we reached the +platform. + +I have written this in the train. + + * * * * * + +_Piccadilly, 12:30 o’clock._--Just before we reached Fenchurch Street +Lord Godalming said to me:-- + +“Quincey and I will find a locksmith. You had better not come with us in +case there should be any difficulty; for under the circumstances it +wouldn’t seem so bad for us to break into an empty house. But you are a +solicitor and the Incorporated Law Society might tell you that you +should have known better.” I demurred as to my not sharing any danger +even of odium, but he went on: “Besides, it will attract less attention +if there are not too many of us. My title will make it all right with +the locksmith, and with any policeman that may come along. You had +better go with Jack and the Professor and stay in the Green Park, +somewhere in sight of the house; and when you see the door opened and +the smith has gone away, do you all come across. We shall be on the +lookout for you, and shall let you in.” + +“The advice is good!” said Van Helsing, so we said no more. Godalming +and Morris hurried off in a cab, we following in another. At the corner +of Arlington Street our contingent got out and strolled into the Green +Park. My heart beat as I saw the house on which so much of our hope was +centred, looming up grim and silent in its deserted condition amongst +its more lively and spruce-looking neighbours. We sat down on a bench +within good view, and began to smoke cigars so as to attract as little +attention as possible. The minutes seemed to pass with leaden feet as we +waited for the coming of the others. + +At length we saw a four-wheeler drive up. Out of it, in leisurely +fashion, got Lord Godalming and Morris; and down from the box descended +a thick-set working man with his rush-woven basket of tools. Morris paid +the cabman, who touched his hat and drove away. Together the two +ascended the steps, and Lord Godalming pointed out what he wanted done. +The workman took off his coat leisurely and hung it on one of the spikes +of the rail, saying something to a policeman who just then sauntered +along. The policeman nodded acquiescence, and the man kneeling down +placed his bag beside him. After searching through it, he took out a +selection of tools which he produced to lay beside him in orderly +fashion. Then he stood up, looked into the keyhole, blew into it, and +turning to his employers, made some remark. Lord Godalming smiled, and +the man lifted a good-sized bunch of keys; selecting one of them, he +began to probe the lock, as if feeling his way with it. After fumbling +about for a bit he tried a second, and then a third. All at once the +door opened under a slight push from him, and he and the two others +entered the hall. We sat still; my own cigar burnt furiously, but Van +Helsing’s went cold altogether. We waited patiently as we saw the +workman come out and bring in his bag. Then he held the door partly +open, steadying it with his knees, whilst he fitted a key to the lock. +This he finally handed to Lord Godalming, who took out his purse and +gave him something. The man touched his hat, took his bag, put on his +coat and departed; not a soul took the slightest notice of the whole +transaction. + +When the man had fairly gone, we three crossed the street and knocked at +the door. It was immediately opened by Quincey Morris, beside whom stood +Lord Godalming lighting a cigar. + +“The place smells so vilely,” said the latter as we came in. It did +indeed smell vilely--like the old chapel at Carfax--and with our +previous experience it was plain to us that the Count had been using the +place pretty freely. We moved to explore the house, all keeping together +in case of attack; for we knew we had a strong and wily enemy to deal +with, and as yet we did not know whether the Count might not be in the +house. In the dining-room, which lay at the back of the hall, we found +eight boxes of earth. Eight boxes only out of the nine, which we sought! +Our work was not over, and would never be until we should have found the +missing box. First we opened the shutters of the window which looked out +across a narrow stone-flagged yard at the blank face of a stable, +pointed to look like the front of a miniature house. There were no +windows in it, so we were not afraid of being over-looked. We did not +lose any time in examining the chests. With the tools which we had +brought with us we opened them, one by one, and treated them as we had +treated those others in the old chapel. It was evident to us that the +Count was not at present in the house, and we proceeded to search for +any of his effects. + +After a cursory glance at the rest of the rooms, from basement to attic, +we came to the conclusion that the dining-room contained any effects +which might belong to the Count; and so we proceeded to minutely examine +them. They lay in a sort of orderly disorder on the great dining-room +table. There were title deeds of the Piccadilly house in a great bundle; +deeds of the purchase of the houses at Mile End and Bermondsey; +note-paper, envelopes, and pens and ink. All were covered up in thin +wrapping paper to keep them from the dust. There were also a clothes +brush, a brush and comb, and a jug and basin--the latter containing +dirty water which was reddened as if with blood. Last of all was a +little heap of keys of all sorts and sizes, probably those belonging to +the other houses. When we had examined this last find, Lord Godalming +and Quincey Morris taking accurate notes of the various addresses of the +houses in the East and the South, took with them the keys in a great +bunch, and set out to destroy the boxes in these places. The rest of us +are, with what patience we can, waiting their return--or the coming of +the Count. + + + + +CHAPTER XXIII + +DR. SEWARD’S DIARY + + +_3 October._--The time seemed terribly long whilst we were waiting for +the coming of Godalming and Quincey Morris. The Professor tried to keep +our minds active by using them all the time. I could see his beneficent +purpose, by the side glances which he threw from time to time at Harker. +The poor fellow is overwhelmed in a misery that is appalling to see. +Last night he was a frank, happy-looking man, with strong, youthful +face, full of energy, and with dark brown hair. To-day he is a drawn, +haggard old man, whose white hair matches well with the hollow burning +eyes and grief-written lines of his face. His energy is still intact; in +fact, he is like a living flame. This may yet be his salvation, for, if +all go well, it will tide him over the despairing period; he will then, +in a kind of way, wake again to the realities of life. Poor fellow, I +thought my own trouble was bad enough, but his----! The Professor knows +this well enough, and is doing his best to keep his mind active. What he +has been saying was, under the circumstances, of absorbing interest. So +well as I can remember, here it is:-- + +“I have studied, over and over again since they came into my hands, all +the papers relating to this monster; and the more I have studied, the +greater seems the necessity to utterly stamp him out. All through there +are signs of his advance; not only of his power, but of his knowledge of +it. As I learned from the researches of my friend Arminus of Buda-Pesth, +he was in life a most wonderful man. Soldier, statesman, and +alchemist--which latter was the highest development of the +science-knowledge of his time. He had a mighty brain, a learning beyond +compare, and a heart that knew no fear and no remorse. He dared even to +attend the Scholomance, and there was no branch of knowledge of his time +that he did not essay. Well, in him the brain powers survived the +physical death; though it would seem that memory was not all complete. +In some faculties of mind he has been, and is, only a child; but he is +growing, and some things that were childish at the first are now of +man’s stature. He is experimenting, and doing it well; and if it had not +been that we have crossed his path he would be yet--he may be yet if we +fail--the father or furtherer of a new order of beings, whose road must +lead through Death, not Life.” + +Harker groaned and said, “And this is all arrayed against my darling! +But how is he experimenting? The knowledge may help us to defeat him!” + +“He has all along, since his coming, been trying his power, slowly but +surely; that big child-brain of his is working. Well for us, it is, as +yet, a child-brain; for had he dared, at the first, to attempt certain +things he would long ago have been beyond our power. However, he means +to succeed, and a man who has centuries before him can afford to wait +and to go slow. _Festina lente_ may well be his motto.” + +“I fail to understand,” said Harker wearily. “Oh, do be more plain to +me! Perhaps grief and trouble are dulling my brain.” + +The Professor laid his hand tenderly on his shoulder as he spoke:-- + +“Ah, my child, I will be plain. Do you not see how, of late, this +monster has been creeping into knowledge experimentally. How he has been +making use of the zoöphagous patient to effect his entry into friend +John’s home; for your Vampire, though in all afterwards he can come when +and how he will, must at the first make entry only when asked thereto by +an inmate. But these are not his most important experiments. Do we not +see how at the first all these so great boxes were moved by others. He +knew not then but that must be so. But all the time that so great +child-brain of his was growing, and he began to consider whether he +might not himself move the box. So he began to help; and then, when he +found that this be all-right, he try to move them all alone. And so he +progress, and he scatter these graves of him; and none but he know where +they are hidden. He may have intend to bury them deep in the ground. So +that he only use them in the night, or at such time as he can change his +form, they do him equal well; and none may know these are his +hiding-place! But, my child, do not despair; this knowledge come to him +just too late! Already all of his lairs but one be sterilise as for him; +and before the sunset this shall be so. Then he have no place where he +can move and hide. I delayed this morning that so we might be sure. Is +there not more at stake for us than for him? Then why we not be even +more careful than him? By my clock it is one hour and already, if all be +well, friend Arthur and Quincey are on their way to us. To-day is our +day, and we must go sure, if slow, and lose no chance. See! there are +five of us when those absent ones return.” + +Whilst he was speaking we were startled by a knock at the hall door, the +double postman’s knock of the telegraph boy. We all moved out to the +hall with one impulse, and Van Helsing, holding up his hand to us to +keep silence, stepped to the door and opened it. The boy handed in a +despatch. The Professor closed the door again, and, after looking at the +direction, opened it and read aloud. + +“Look out for D. He has just now, 12:45, come from Carfax hurriedly and +hastened towards the South. He seems to be going the round and may want +to see you: Mina.” + +There was a pause, broken by Jonathan Harker’s voice:-- + +“Now, God be thanked, we shall soon meet!” Van Helsing turned to him +quickly and said:-- + +“God will act in His own way and time. Do not fear, and do not rejoice +as yet; for what we wish for at the moment may be our undoings.” + +“I care for nothing now,” he answered hotly, “except to wipe out this +brute from the face of creation. I would sell my soul to do it!” + +“Oh, hush, hush, my child!” said Van Helsing. “God does not purchase +souls in this wise; and the Devil, though he may purchase, does not keep +faith. But God is merciful and just, and knows your pain and your +devotion to that dear Madam Mina. Think you, how her pain would be +doubled, did she but hear your wild words. Do not fear any of us, we are +all devoted to this cause, and to-day shall see the end. The time is +coming for action; to-day this Vampire is limit to the powers of man, +and till sunset he may not change. It will take him time to arrive +here--see, it is twenty minutes past one--and there are yet some times +before he can hither come, be he never so quick. What we must hope for +is that my Lord Arthur and Quincey arrive first.” + +About half an hour after we had received Mrs. Harker’s telegram, there +came a quiet, resolute knock at the hall door. It was just an ordinary +knock, such as is given hourly by thousands of gentlemen, but it made +the Professor’s heart and mine beat loudly. We looked at each other, and +together moved out into the hall; we each held ready to use our various +armaments--the spiritual in the left hand, the mortal in the right. Van +Helsing pulled back the latch, and, holding the door half open, stood +back, having both hands ready for action. The gladness of our hearts +must have shown upon our faces when on the step, close to the door, we +saw Lord Godalming and Quincey Morris. They came quickly in and closed +the door behind them, the former saying, as they moved along the +hall:-- + +“It is all right. We found both places; six boxes in each and we +destroyed them all!” + +“Destroyed?” asked the Professor. + +“For him!” We were silent for a minute, and then Quincey said:-- + +“There’s nothing to do but to wait here. If, however, he doesn’t turn up +by five o’clock, we must start off; for it won’t do to leave Mrs. Harker +alone after sunset.” + +“He will be here before long now,” said Van Helsing, who had been +consulting his pocket-book. “_Nota bene_, in Madam’s telegram he went +south from Carfax, that means he went to cross the river, and he could +only do so at slack of tide, which should be something before one +o’clock. That he went south has a meaning for us. He is as yet only +suspicious; and he went from Carfax first to the place where he would +suspect interference least. You must have been at Bermondsey only a +short time before him. That he is not here already shows that he went to +Mile End next. This took him some time; for he would then have to be +carried over the river in some way. Believe me, my friends, we shall not +have long to wait now. We should have ready some plan of attack, so that +we may throw away no chance. Hush, there is no time now. Have all your +arms! Be ready!” He held up a warning hand as he spoke, for we all could +hear a key softly inserted in the lock of the hall door. + +I could not but admire, even at such a moment, the way in which a +dominant spirit asserted itself. In all our hunting parties and +adventures in different parts of the world, Quincey Morris had always +been the one to arrange the plan of action, and Arthur and I had been +accustomed to obey him implicitly. Now, the old habit seemed to be +renewed instinctively. With a swift glance around the room, he at once +laid out our plan of attack, and, without speaking a word, with a +gesture, placed us each in position. Van Helsing, Harker, and I were +just behind the door, so that when it was opened the Professor could +guard it whilst we two stepped between the incomer and the door. +Godalming behind and Quincey in front stood just out of sight ready to +move in front of the window. We waited in a suspense that made the +seconds pass with nightmare slowness. The slow, careful steps came along +the hall; the Count was evidently prepared for some surprise--at least +he feared it. + +Suddenly with a single bound he leaped into the room, winning a way past +us before any of us could raise a hand to stay him. There was something +so panther-like in the movement--something so unhuman, that it seemed +to sober us all from the shock of his coming. The first to act was +Harker, who, with a quick movement, threw himself before the door +leading into the room in the front of the house. As the Count saw us, a +horrible sort of snarl passed over his face, showing the eye-teeth long +and pointed; but the evil smile as quickly passed into a cold stare of +lion-like disdain. His expression again changed as, with a single +impulse, we all advanced upon him. It was a pity that we had not some +better organised plan of attack, for even at the moment I wondered what +we were to do. I did not myself know whether our lethal weapons would +avail us anything. Harker evidently meant to try the matter, for he had +ready his great Kukri knife and made a fierce and sudden cut at him. The +blow was a powerful one; only the diabolical quickness of the Count’s +leap back saved him. A second less and the trenchant blade had shorne +through his heart. As it was, the point just cut the cloth of his coat, +making a wide gap whence a bundle of bank-notes and a stream of gold +fell out. The expression of the Count’s face was so hellish, that for a +moment I feared for Harker, though I saw him throw the terrible knife +aloft again for another stroke. Instinctively I moved forward with a +protective impulse, holding the Crucifix and Wafer in my left hand. I +felt a mighty power fly along my arm; and it was without surprise that I +saw the monster cower back before a similar movement made spontaneously +by each one of us. It would be impossible to describe the expression of +hate and baffled malignity--of anger and hellish rage--which came over +the Count’s face. His waxen hue became greenish-yellow by the contrast +of his burning eyes, and the red scar on the forehead showed on the +pallid skin like a palpitating wound. The next instant, with a sinuous +dive he swept under Harker’s arm, ere his blow could fall, and, grasping +a handful of the money from the floor, dashed across the room, threw +himself at the window. Amid the crash and glitter of the falling glass, +he tumbled into the flagged area below. Through the sound of the +shivering glass I could hear the “ting” of the gold, as some of the +sovereigns fell on the flagging. + +We ran over and saw him spring unhurt from the ground. He, rushing up +the steps, crossed the flagged yard, and pushed open the stable door. +There he turned and spoke to us:-- + +“You think to baffle me, you--with your pale faces all in a row, like +sheep in a butcher’s. You shall be sorry yet, each one of you! You think +you have left me without a place to rest; but I have more. My revenge is +just begun! I spread it over centuries, and time is on my side. Your +girls that you all love are mine already; and through them you and +others shall yet be mine--my creatures, to do my bidding and to be my +jackals when I want to feed. Bah!” With a contemptuous sneer, he passed +quickly through the door, and we heard the rusty bolt creak as he +fastened it behind him. A door beyond opened and shut. The first of us +to speak was the Professor, as, realising the difficulty of following +him through the stable, we moved toward the hall. + +“We have learnt something--much! Notwithstanding his brave words, he +fears us; he fear time, he fear want! For if not, why he hurry so? His +very tone betray him, or my ears deceive. Why take that money? You +follow quick. You are hunters of wild beast, and understand it so. For +me, I make sure that nothing here may be of use to him, if so that he +return.” As he spoke he put the money remaining into his pocket; took +the title-deeds in the bundle as Harker had left them, and swept the +remaining things into the open fireplace, where he set fire to them with +a match. + +Godalming and Morris had rushed out into the yard, and Harker had +lowered himself from the window to follow the Count. He had, however, +bolted the stable door; and by the time they had forced it open there +was no sign of him. Van Helsing and I tried to make inquiry at the back +of the house; but the mews was deserted and no one had seen him depart. + +It was now late in the afternoon, and sunset was not far off. We had to +recognise that our game was up; with heavy hearts we agreed with the +Professor when he said:-- + +“Let us go back to Madam Mina--poor, poor dear Madam Mina. All we can do +just now is done; and we can there, at least, protect her. But we need +not despair. There is but one more earth-box, and we must try to find +it; when that is done all may yet be well.” I could see that he spoke as +bravely as he could to comfort Harker. The poor fellow was quite broken +down; now and again he gave a low groan which he could not suppress--he +was thinking of his wife. + +With sad hearts we came back to my house, where we found Mrs. Harker +waiting us, with an appearance of cheerfulness which did honour to her +bravery and unselfishness. When she saw our faces, her own became as +pale as death: for a second or two her eyes were closed as if she were +in secret prayer; and then she said cheerfully:-- + +“I can never thank you all enough. Oh, my poor darling!” As she spoke, +she took her husband’s grey head in her hands and kissed it--“Lay your +poor head here and rest it. All will yet be well, dear! God will protect +us if He so will it in His good intent.” The poor fellow groaned. There +was no place for words in his sublime misery. + +We had a sort of perfunctory supper together, and I think it cheered us +all up somewhat. It was, perhaps, the mere animal heat of food to hungry +people--for none of us had eaten anything since breakfast--or the sense +of companionship may have helped us; but anyhow we were all less +miserable, and saw the morrow as not altogether without hope. True to +our promise, we told Mrs. Harker everything which had passed; and +although she grew snowy white at times when danger had seemed to +threaten her husband, and red at others when his devotion to her was +manifested, she listened bravely and with calmness. When we came to the +part where Harker had rushed at the Count so recklessly, she clung to +her husband’s arm, and held it tight as though her clinging could +protect him from any harm that might come. She said nothing, however, +till the narration was all done, and matters had been brought right up +to the present time. Then without letting go her husband’s hand she +stood up amongst us and spoke. Oh, that I could give any idea of the +scene; of that sweet, sweet, good, good woman in all the radiant beauty +of her youth and animation, with the red scar on her forehead, of which +she was conscious, and which we saw with grinding of our +teeth--remembering whence and how it came; her loving kindness against +our grim hate; her tender faith against all our fears and doubting; and +we, knowing that so far as symbols went, she with all her goodness and +purity and faith, was outcast from God. + +“Jonathan,” she said, and the word sounded like music on her lips it was +so full of love and tenderness, “Jonathan dear, and you all my true, +true friends, I want you to bear something in mind through all this +dreadful time. I know that you must fight--that you must destroy even as +you destroyed the false Lucy so that the true Lucy might live hereafter; +but it is not a work of hate. That poor soul who has wrought all this +misery is the saddest case of all. Just think what will be his joy when +he, too, is destroyed in his worser part that his better part may have +spiritual immortality. You must be pitiful to him, too, though it may +not hold your hands from his destruction.” + +As she spoke I could see her husband’s face darken and draw together, as +though the passion in him were shrivelling his being to its core. +Instinctively the clasp on his wife’s hand grew closer, till his +knuckles looked white. She did not flinch from the pain which I knew she +must have suffered, but looked at him with eyes that were more appealing +than ever. As she stopped speaking he leaped to his feet, almost tearing +his hand from hers as he spoke:-- + +“May God give him into my hand just for long enough to destroy that +earthly life of him which we are aiming at. If beyond it I could send +his soul for ever and ever to burning hell I would do it!” + +“Oh, hush! oh, hush! in the name of the good God. Don’t say such things, +Jonathan, my husband; or you will crush me with fear and horror. Just +think, my dear--I have been thinking all this long, long day of it--that +... perhaps ... some day ... I, too, may need such pity; and that some +other like you--and with equal cause for anger--may deny it to me! Oh, +my husband! my husband, indeed I would have spared you such a thought +had there been another way; but I pray that God may not have treasured +your wild words, except as the heart-broken wail of a very loving and +sorely stricken man. Oh, God, let these poor white hairs go in evidence +of what he has suffered, who all his life has done no wrong, and on whom +so many sorrows have come.” + +We men were all in tears now. There was no resisting them, and we wept +openly. She wept, too, to see that her sweeter counsels had prevailed. +Her husband flung himself on his knees beside her, and putting his arms +round her, hid his face in the folds of her dress. Van Helsing beckoned +to us and we stole out of the room, leaving the two loving hearts alone +with their God. + +Before they retired the Professor fixed up the room against any coming +of the Vampire, and assured Mrs. Harker that she might rest in peace. +She tried to school herself to the belief, and, manifestly for her +husband’s sake, tried to seem content. It was a brave struggle; and was, +I think and believe, not without its reward. Van Helsing had placed at +hand a bell which either of them was to sound in case of any emergency. +When they had retired, Quincey, Godalming, and I arranged that we should +sit up, dividing the night between us, and watch over the safety of the +poor stricken lady. The first watch falls to Quincey, so the rest of us +shall be off to bed as soon as we can. Godalming has already turned in, +for his is the second watch. Now that my work is done I, too, shall go +to bed. + + +_Jonathan Harker’s Journal._ + +_3-4 October, close to midnight._--I thought yesterday would never end. +There was over me a yearning for sleep, in some sort of blind belief +that to wake would be to find things changed, and that any change must +now be for the better. Before we parted, we discussed what our next step +was to be, but we could arrive at no result. All we knew was that one +earth-box remained, and that the Count alone knew where it was. If he +chooses to lie hidden, he may baffle us for years; and in the +meantime!--the thought is too horrible, I dare not think of it even now. +This I know: that if ever there was a woman who was all perfection, that +one is my poor wronged darling. I love her a thousand times more for her +sweet pity of last night, a pity that made my own hate of the monster +seem despicable. Surely God will not permit the world to be the poorer +by the loss of such a creature. This is hope to me. We are all drifting +reefwards now, and faith is our only anchor. Thank God! Mina is +sleeping, and sleeping without dreams. I fear what her dreams might be +like, with such terrible memories to ground them in. She has not been so +calm, within my seeing, since the sunset. Then, for a while, there came +over her face a repose which was like spring after the blasts of March. +I thought at the time that it was the softness of the red sunset on her +face, but somehow now I think it has a deeper meaning. I am not sleepy +myself, though I am weary--weary to death. However, I must try to sleep; +for there is to-morrow to think of, and there is no rest for me +until.... + + * * * * * + +_Later._--I must have fallen asleep, for I was awaked by Mina, who was +sitting up in bed, with a startled look on her face. I could see easily, +for we did not leave the room in darkness; she had placed a warning hand +over my mouth, and now she whispered in my ear:-- + +“Hush! there is someone in the corridor!” I got up softly, and crossing +the room, gently opened the door. + +Just outside, stretched on a mattress, lay Mr. Morris, wide awake. He +raised a warning hand for silence as he whispered to me:-- + +“Hush! go back to bed; it is all right. One of us will be here all +night. We don’t mean to take any chances!” + +His look and gesture forbade discussion, so I came back and told Mina. +She sighed and positively a shadow of a smile stole over her poor, pale +face as she put her arms round me and said softly:-- + +“Oh, thank God for good brave men!” With a sigh she sank back again to +sleep. I write this now as I am not sleepy, though I must try again. + + * * * * * + +_4 October, morning._--Once again during the night I was wakened by +Mina. This time we had all had a good sleep, for the grey of the coming +dawn was making the windows into sharp oblongs, and the gas flame was +like a speck rather than a disc of light. She said to me hurriedly:-- + +“Go, call the Professor. I want to see him at once.” + +“Why?” I asked. + +“I have an idea. I suppose it must have come in the night, and matured +without my knowing it. He must hypnotise me before the dawn, and then I +shall be able to speak. Go quick, dearest; the time is getting close.” I +went to the door. Dr. Seward was resting on the mattress, and, seeing +me, he sprang to his feet. + +“Is anything wrong?” he asked, in alarm. + +“No,” I replied; “but Mina wants to see Dr. Van Helsing at once.” + +“I will go,” he said, and hurried into the Professor’s room. + +In two or three minutes later Van Helsing was in the room in his +dressing-gown, and Mr. Morris and Lord Godalming were with Dr. Seward at +the door asking questions. When the Professor saw Mina smile--a +positive smile ousted the anxiety of his face; he rubbed his hands as he +said:-- + +“Oh, my dear Madam Mina, this is indeed a change. See! friend Jonathan, +we have got our dear Madam Mina, as of old, back to us to-day!” Then +turning to her, he said, cheerfully: “And what am I do for you? For at +this hour you do not want me for nothings.” + +“I want you to hypnotise me!” she said. “Do it before the dawn, for I +feel that then I can speak, and speak freely. Be quick, for the time is +short!” Without a word he motioned her to sit up in bed. + +Looking fixedly at her, he commenced to make passes in front of her, +from over the top of her head downward, with each hand in turn. Mina +gazed at him fixedly for a few minutes, during which my own heart beat +like a trip hammer, for I felt that some crisis was at hand. Gradually +her eyes closed, and she sat, stock still; only by the gentle heaving of +her bosom could one know that she was alive. The Professor made a few +more passes and then stopped, and I could see that his forehead was +covered with great beads of perspiration. Mina opened her eyes; but she +did not seem the same woman. There was a far-away look in her eyes, and +her voice had a sad dreaminess which was new to me. Raising his hand to +impose silence, the Professor motioned to me to bring the others in. +They came on tip-toe, closing the door behind them, and stood at the +foot of the bed, looking on. Mina appeared not to see them. The +stillness was broken by Van Helsing’s voice speaking in a low level tone +which would not break the current of her thoughts:-- + +“Where are you?” The answer came in a neutral way:-- + +“I do not know. Sleep has no place it can call its own.” For several +minutes there was silence. Mina sat rigid, and the Professor stood +staring at her fixedly; the rest of us hardly dared to breathe. The room +was growing lighter; without taking his eyes from Mina’s face, Dr. Van +Helsing motioned me to pull up the blind. I did so, and the day seemed +just upon us. A red streak shot up, and a rosy light seemed to diffuse +itself through the room. On the instant the Professor spoke again:-- + +“Where are you now?” The answer came dreamily, but with intention; it +were as though she were interpreting something. I have heard her use the +same tone when reading her shorthand notes. + +“I do not know. It is all strange to me!” + +“What do you see?” + +“I can see nothing; it is all dark.” + +“What do you hear?” I could detect the strain in the Professor’s patient +voice. + +“The lapping of water. It is gurgling by, and little waves leap. I can +hear them on the outside.” + +“Then you are on a ship?” We all looked at each other, trying to glean +something each from the other. We were afraid to think. The answer came +quick:-- + +“Oh, yes!” + +“What else do you hear?” + +“The sound of men stamping overhead as they run about. There is the +creaking of a chain, and the loud tinkle as the check of the capstan +falls into the rachet.” + +“What are you doing?” + +“I am still--oh, so still. It is like death!” The voice faded away into +a deep breath as of one sleeping, and the open eyes closed again. + +By this time the sun had risen, and we were all in the full light of +day. Dr. Van Helsing placed his hands on Mina’s shoulders, and laid her +head down softly on her pillow. She lay like a sleeping child for a few +moments, and then, with a long sigh, awoke and stared in wonder to see +us all around her. “Have I been talking in my sleep?” was all she said. +She seemed, however, to know the situation without telling, though she +was eager to know what she had told. The Professor repeated the +conversation, and she said:-- + +“Then there is not a moment to lose: it may not be yet too late!” Mr. +Morris and Lord Godalming started for the door but the Professor’s calm +voice called them back:-- + +“Stay, my friends. That ship, wherever it was, was weighing anchor +whilst she spoke. There are many ships weighing anchor at the moment in +your so great Port of London. Which of them is it that you seek? God be +thanked that we have once again a clue, though whither it may lead us we +know not. We have been blind somewhat; blind after the manner of men, +since when we can look back we see what we might have seen looking +forward if we had been able to see what we might have seen! Alas, but +that sentence is a puddle; is it not? We can know now what was in the +Count’s mind, when he seize that money, though Jonathan’s so fierce +knife put him in the danger that even he dread. He meant escape. Hear +me, ESCAPE! He saw that with but one earth-box left, and a pack of men +following like dogs after a fox, this London was no place for him. He +have take his last earth-box on board a ship, and he leave the land. He +think to escape, but no! we follow him. Tally Ho! as friend Arthur would +say when he put on his red frock! Our old fox is wily; oh! so wily, and +we must follow with wile. I, too, am wily and I think his mind in a +little while. In meantime we may rest and in peace, for there are waters +between us which he do not want to pass, and which he could not if he +would--unless the ship were to touch the land, and then only at full or +slack tide. See, and the sun is just rose, and all day to sunset is to +us. Let us take bath, and dress, and have breakfast which we all need, +and which we can eat comfortably since he be not in the same land with +us.” Mina looked at him appealingly as she asked:-- + +“But why need we seek him further, when he is gone away from us?” He +took her hand and patted it as he replied:-- + +“Ask me nothings as yet. When we have breakfast, then I answer all +questions.” He would say no more, and we separated to dress. + +After breakfast Mina repeated her question. He looked at her gravely for +a minute and then said sorrowfully:-- + +“Because my dear, dear Madam Mina, now more than ever must we find him +even if we have to follow him to the jaws of Hell!” She grew paler as +she asked faintly:-- + +“Why?” + +“Because,” he answered solemnly, “he can live for centuries, and you are +but mortal woman. Time is now to be dreaded--since once he put that mark +upon your throat.” + +I was just in time to catch her as she fell forward in a faint. + + + + +CHAPTER XXIV + +DR. SEWARD’S PHONOGRAPH DIARY, SPOKEN BY VAN HELSING + + +This to Jonathan Harker. + +You are to stay with your dear Madam Mina. We shall go to make our +search--if I can call it so, for it is not search but knowing, and we +seek confirmation only. But do you stay and take care of her to-day. +This is your best and most holiest office. This day nothing can find him +here. Let me tell you that so you will know what we four know already, +for I have tell them. He, our enemy, have gone away; he have gone back +to his Castle in Transylvania. I know it so well, as if a great hand of +fire wrote it on the wall. He have prepare for this in some way, and +that last earth-box was ready to ship somewheres. For this he took the +money; for this he hurry at the last, lest we catch him before the sun +go down. It was his last hope, save that he might hide in the tomb that +he think poor Miss Lucy, being as he thought like him, keep open to him. +But there was not of time. When that fail he make straight for his last +resource--his last earth-work I might say did I wish _double entente_. +He is clever, oh, so clever! he know that his game here was finish; and +so he decide he go back home. He find ship going by the route he came, +and he go in it. We go off now to find what ship, and whither bound; +when we have discover that, we come back and tell you all. Then we will +comfort you and poor dear Madam Mina with new hope. For it will be hope +when you think it over: that all is not lost. This very creature that we +pursue, he take hundreds of years to get so far as London; and yet in +one day, when we know of the disposal of him we drive him out. He is +finite, though he is powerful to do much harm and suffers not as we do. +But we are strong, each in our purpose; and we are all more strong +together. Take heart afresh, dear husband of Madam Mina. This battle is +but begun, and in the end we shall win--so sure as that God sits on high +to watch over His children. Therefore be of much comfort till we return. + +VAN HELSING. + + +_Jonathan Harker’s Journal._ + +_4 October._--When I read to Mina, Van Helsing’s message in the +phonograph, the poor girl brightened up considerably. Already the +certainty that the Count is out of the country has given her comfort; +and comfort is strength to her. For my own part, now that his horrible +danger is not face to face with us, it seems almost impossible to +believe in it. Even my own terrible experiences in Castle Dracula seem +like a long-forgotten dream. Here in the crisp autumn air in the bright +sunlight---- + +Alas! how can I disbelieve! In the midst of my thought my eye fell on +the red scar on my poor darling’s white forehead. Whilst that lasts, +there can be no disbelief. And afterwards the very memory of it will +keep faith crystal clear. Mina and I fear to be idle, so we have been +over all the diaries again and again. Somehow, although the reality +seems greater each time, the pain and the fear seem less. There is +something of a guiding purpose manifest throughout, which is comforting. +Mina says that perhaps we are the instruments of ultimate good. It may +be! I shall try to think as she does. We have never spoken to each other +yet of the future. It is better to wait till we see the Professor and +the others after their investigations. + +The day is running by more quickly than I ever thought a day could run +for me again. It is now three o’clock. + + +_Mina Harker’s Journal._ + +_5 October, 5 p. m._--Our meeting for report. Present: Professor Van +Helsing, Lord Godalming, Dr. Seward, Mr. Quincey Morris, Jonathan +Harker, Mina Harker. + +Dr. Van Helsing described what steps were taken during the day to +discover on what boat and whither bound Count Dracula made his escape:-- + +“As I knew that he wanted to get back to Transylvania, I felt sure that +he must go by the Danube mouth; or by somewhere in the Black Sea, since +by that way he come. It was a dreary blank that was before us. _Omne +ignotum pro magnifico_; and so with heavy hearts we start to find what +ships leave for the Black Sea last night. He was in sailing ship, since +Madam Mina tell of sails being set. These not so important as to go in +your list of the shipping in the _Times_, and so we go, by suggestion of +Lord Godalming, to your Lloyd’s, where are note of all ships that sail, +however so small. There we find that only one Black-Sea-bound ship go +out with the tide. She is the _Czarina Catherine_, and she sail from +Doolittle’s Wharf for Varna, and thence on to other parts and up the +Danube. ‘Soh!’ said I, ‘this is the ship whereon is the Count.’ So off +we go to Doolittle’s Wharf, and there we find a man in an office of wood +so small that the man look bigger than the office. From him we inquire +of the goings of the _Czarina Catherine_. He swear much, and he red face +and loud of voice, but he good fellow all the same; and when Quincey +give him something from his pocket which crackle as he roll it up, and +put it in a so small bag which he have hid deep in his clothing, he +still better fellow and humble servant to us. He come with us, and ask +many men who are rough and hot; these be better fellows too when they +have been no more thirsty. They say much of blood and bloom, and of +others which I comprehend not, though I guess what they mean; but +nevertheless they tell us all things which we want to know. + +“They make known to us among them, how last afternoon at about five +o’clock comes a man so hurry. A tall man, thin and pale, with high nose +and teeth so white, and eyes that seem to be burning. That he be all in +black, except that he have a hat of straw which suit not him or the +time. That he scatter his money in making quick inquiry as to what ship +sails for the Black Sea and for where. Some took him to the office and +then to the ship, where he will not go aboard but halt at shore end of +gang-plank, and ask that the captain come to him. The captain come, when +told that he will be pay well; and though he swear much at the first he +agree to term. Then the thin man go and some one tell him where horse +and cart can be hired. He go there and soon he come again, himself +driving cart on which a great box; this he himself lift down, though it +take several to put it on truck for the ship. He give much talk to +captain as to how and where his box is to be place; but the captain like +it not and swear at him in many tongues, and tell him that if he like he +can come and see where it shall be. But he say ‘no’; that he come not +yet, for that he have much to do. Whereupon the captain tell him that he +had better be quick--with blood--for that his ship will leave the +place--of blood--before the turn of the tide--with blood. Then the thin +man smile and say that of course he must go when he think fit; but he +will be surprise if he go quite so soon. The captain swear again, +polyglot, and the thin man make him bow, and thank him, and say that he +will so far intrude on his kindness as to come aboard before the +sailing. Final the captain, more red than ever, and in more tongues tell +him that he doesn’t want no Frenchmen--with bloom upon them and also +with blood--in his ship--with blood on her also. And so, after asking +where there might be close at hand a ship where he might purchase ship +forms, he departed. + +“No one knew where he went ‘or bloomin’ well cared,’ as they said, for +they had something else to think of--well with blood again; for it soon +became apparent to all that the _Czarina Catherine_ would not sail as +was expected. A thin mist began to creep up from the river, and it grew, +and grew; till soon a dense fog enveloped the ship and all around her. +The captain swore polyglot--very polyglot--polyglot with bloom and +blood; but he could do nothing. The water rose and rose; and he began to +fear that he would lose the tide altogether. He was in no friendly mood, +when just at full tide, the thin man came up the gang-plank again and +asked to see where his box had been stowed. Then the captain replied +that he wished that he and his box--old and with much bloom and +blood--were in hell. But the thin man did not be offend, and went down +with the mate and saw where it was place, and came up and stood awhile +on deck in fog. He must have come off by himself, for none notice him. +Indeed they thought not of him; for soon the fog begin to melt away, and +all was clear again. My friends of the thirst and the language that was +of bloom and blood laughed, as they told how the captain’s swears +exceeded even his usual polyglot, and was more than ever full of +picturesque, when on questioning other mariners who were on movement up +and down on the river that hour, he found that few of them had seen any +of fog at all, except where it lay round the wharf. However, the ship +went out on the ebb tide; and was doubtless by morning far down the +river mouth. She was by then, when they told us, well out to sea. + +“And so, my dear Madam Mina, it is that we have to rest for a time, for +our enemy is on the sea, with the fog at his command, on his way to the +Danube mouth. To sail a ship takes time, go she never so quick; and when +we start we go on land more quick, and we meet him there. Our best hope +is to come on him when in the box between sunrise and sunset; for then +he can make no struggle, and we may deal with him as we should. There +are days for us, in which we can make ready our plan. We know all about +where he go; for we have seen the owner of the ship, who have shown us +invoices and all papers that can be. The box we seek is to be landed in +Varna, and to be given to an agent, one Ristics who will there present +his credentials; and so our merchant friend will have done his part. +When he ask if there be any wrong, for that so, he can telegraph and +have inquiry made at Varna, we say ‘no’; for what is to be done is not +for police or of the customs. It must be done by us alone and in our own +way.” + +When Dr. Van Helsing had done speaking, I asked him if he were certain +that the Count had remained on board the ship. He replied: “We have the +best proof of that: your own evidence, when in the hypnotic trance this +morning.” I asked him again if it were really necessary that they should +pursue the Count, for oh! I dread Jonathan leaving me, and I know that +he would surely go if the others went. He answered in growing passion, +at first quietly. As he went on, however, he grew more angry and more +forceful, till in the end we could not but see wherein was at least some +of that personal dominance which made him so long a master amongst +men:-- + +“Yes, it is necessary--necessary--necessary! For your sake in the first, +and then for the sake of humanity. This monster has done much harm +already, in the narrow scope where he find himself, and in the short +time when as yet he was only as a body groping his so small measure in +darkness and not knowing. All this have I told these others; you, my +dear Madam Mina, will learn it in the phonograph of my friend John, or +in that of your husband. I have told them how the measure of leaving his +own barren land--barren of peoples--and coming to a new land where life +of man teems till they are like the multitude of standing corn, was the +work of centuries. Were another of the Un-Dead, like him, to try to do +what he has done, perhaps not all the centuries of the world that have +been, or that will be, could aid him. With this one, all the forces of +nature that are occult and deep and strong must have worked together in +some wondrous way. The very place, where he have been alive, Un-Dead for +all these centuries, is full of strangeness of the geologic and chemical +world. There are deep caverns and fissures that reach none know whither. +There have been volcanoes, some of whose openings still send out waters +of strange properties, and gases that kill or make to vivify. Doubtless, +there is something magnetic or electric in some of these combinations of +occult forces which work for physical life in strange way; and in +himself were from the first some great qualities. In a hard and warlike +time he was celebrate that he have more iron nerve, more subtle brain, +more braver heart, than any man. In him some vital principle have in +strange way found their utmost; and as his body keep strong and grow and +thrive, so his brain grow too. All this without that diabolic aid which +is surely to him; for it have to yield to the powers that come from, +and are, symbolic of good. And now this is what he is to us. He have +infect you--oh, forgive me, my dear, that I must say such; but it is for +good of you that I speak. He infect you in such wise, that even if he do +no more, you have only to live--to live in your own old, sweet way; and +so in time, death, which is of man’s common lot and with God’s sanction, +shall make you like to him. This must not be! We have sworn together +that it must not. Thus are we ministers of God’s own wish: that the +world, and men for whom His Son die, will not be given over to monsters, +whose very existence would defame Him. He have allowed us to redeem one +soul already, and we go out as the old knights of the Cross to redeem +more. Like them we shall travel towards the sunrise; and like them, if +we fall, we fall in good cause.” He paused and I said:-- + +“But will not the Count take his rebuff wisely? Since he has been driven +from England, will he not avoid it, as a tiger does the village from +which he has been hunted?” + +“Aha!” he said, “your simile of the tiger good, for me, and I shall +adopt him. Your man-eater, as they of India call the tiger who has once +tasted blood of the human, care no more for the other prey, but prowl +unceasing till he get him. This that we hunt from our village is a +tiger, too, a man-eater, and he never cease to prowl. Nay, in himself he +is not one to retire and stay afar. In his life, his living life, he go +over the Turkey frontier and attack his enemy on his own ground; he be +beaten back, but did he stay? No! He come again, and again, and again. +Look at his persistence and endurance. With the child-brain that was to +him he have long since conceive the idea of coming to a great city. What +does he do? He find out the place of all the world most of promise for +him. Then he deliberately set himself down to prepare for the task. He +find in patience just how is his strength, and what are his powers. He +study new tongues. He learn new social life; new environment of old +ways, the politic, the law, the finance, the science, the habit of a new +land and a new people who have come to be since he was. His glimpse that +he have had, whet his appetite only and enkeen his desire. Nay, it help +him to grow as to his brain; for it all prove to him how right he was at +the first in his surmises. He have done this alone; all alone! from a +ruin tomb in a forgotten land. What more may he not do when the greater +world of thought is open to him. He that can smile at death, as we know +him; who can flourish in the midst of diseases that kill off whole +peoples. Oh, if such an one was to come from God, and not the Devil, +what a force for good might he not be in this old world of ours. But we +are pledged to set the world free. Our toil must be in silence, and our +efforts all in secret; for in this enlightened age, when men believe not +even what they see, the doubting of wise men would be his greatest +strength. It would be at once his sheath and his armour, and his weapons +to destroy us, his enemies, who are willing to peril even our own souls +for the safety of one we love--for the good of mankind, and for the +honour and glory of God.” + +After a general discussion it was determined that for to-night nothing +be definitely settled; that we should all sleep on the facts, and try to +think out the proper conclusions. To-morrow, at breakfast, we are to +meet again, and, after making our conclusions known to one another, we +shall decide on some definite cause of action. + + * * * * * + +I feel a wonderful peace and rest to-night. It is as if some haunting +presence were removed from me. Perhaps ... + +My surmise was not finished, could not be; for I caught sight in the +mirror of the red mark upon my forehead; and I knew that I was still +unclean. + + +_Dr. Seward’s Diary._ + +_5 October._--We all rose early, and I think that sleep did much for +each and all of us. When we met at early breakfast there was more +general cheerfulness than any of us had ever expected to experience +again. + +It is really wonderful how much resilience there is in human nature. Let +any obstructing cause, no matter what, be removed in any way--even by +death--and we fly back to first principles of hope and enjoyment. More +than once as we sat around the table, my eyes opened in wonder whether +the whole of the past days had not been a dream. It was only when I +caught sight of the red blotch on Mrs. Harker’s forehead that I was +brought back to reality. Even now, when I am gravely revolving the +matter, it is almost impossible to realise that the cause of all our +trouble is still existent. Even Mrs. Harker seems to lose sight of her +trouble for whole spells; it is only now and again, when something +recalls it to her mind, that she thinks of her terrible scar. We are to +meet here in my study in half an hour and decide on our course of +action. I see only one immediate difficulty, I know it by instinct +rather than reason: we shall all have to speak frankly; and yet I fear +that in some mysterious way poor Mrs. Harker’s tongue is tied. I _know_ +that she forms conclusions of her own, and from all that has been I can +guess how brilliant and how true they must be; but she will not, or +cannot, give them utterance. I have mentioned this to Van Helsing, and +he and I are to talk it over when we are alone. I suppose it is some of +that horrid poison which has got into her veins beginning to work. The +Count had his own purposes when he gave her what Van Helsing called “the +Vampire’s baptism of blood.” Well, there may be a poison that distils +itself out of good things; in an age when the existence of ptomaines is +a mystery we should not wonder at anything! One thing I know: that if my +instinct be true regarding poor Mrs. Harker’s silences, then there is a +terrible difficulty--an unknown danger--in the work before us. The same +power that compels her silence may compel her speech. I dare not think +further; for so I should in my thoughts dishonour a noble woman! + +Van Helsing is coming to my study a little before the others. I shall +try to open the subject with him. + + * * * * * + +_Later._--When the Professor came in, we talked over the state of +things. I could see that he had something on his mind which he wanted to +say, but felt some hesitancy about broaching the subject. After beating +about the bush a little, he said suddenly:-- + +“Friend John, there is something that you and I must talk of alone, just +at the first at any rate. Later, we may have to take the others into our +confidence”; then he stopped, so I waited; he went on:-- + +“Madam Mina, our poor, dear Madam Mina is changing.” A cold shiver ran +through me to find my worst fears thus endorsed. Van Helsing +continued:-- + +“With the sad experience of Miss Lucy, we must this time be warned +before things go too far. Our task is now in reality more difficult than +ever, and this new trouble makes every hour of the direst importance. I +can see the characteristics of the vampire coming in her face. It is now +but very, very slight; but it is to be seen if we have eyes to notice +without to prejudge. Her teeth are some sharper, and at times her eyes +are more hard. But these are not all, there is to her the silence now +often; as so it was with Miss Lucy. She did not speak, even when she +wrote that which she wished to be known later. Now my fear is this. If +it be that she can, by our hypnotic trance, tell what the Count see and +hear, is it not more true that he who have hypnotise her first, and who +have drink of her very blood and make her drink of his, should, if he +will, compel her mind to disclose to him that which she know?” I nodded +acquiescence; he went on:-- + +“Then, what we must do is to prevent this; we must keep her ignorant of +our intent, and so she cannot tell what she know not. This is a painful +task! Oh, so painful that it heart-break me to think of; but it must be. +When to-day we meet, I must tell her that for reason which we will not +to speak she must not more be of our council, but be simply guarded by +us.” He wiped his forehead, which had broken out in profuse perspiration +at the thought of the pain which he might have to inflict upon the poor +soul already so tortured. I knew that it would be some sort of comfort +to him if I told him that I also had come to the same conclusion; for at +any rate it would take away the pain of doubt. I told him, and the +effect was as I expected. + +It is now close to the time of our general gathering. Van Helsing has +gone away to prepare for the meeting, and his painful part of it. I +really believe his purpose is to be able to pray alone. + + * * * * * + +_Later._--At the very outset of our meeting a great personal relief was +experienced by both Van Helsing and myself. Mrs. Harker had sent a +message by her husband to say that she would not join us at present, as +she thought it better that we should be free to discuss our movements +without her presence to embarrass us. The Professor and I looked at each +other for an instant, and somehow we both seemed relieved. For my own +part, I thought that if Mrs. Harker realised the danger herself, it was +much pain as well as much danger averted. Under the circumstances we +agreed, by a questioning look and answer, with finger on lip, to +preserve silence in our suspicions, until we should have been able to +confer alone again. We went at once into our Plan of Campaign. Van +Helsing roughly put the facts before us first:-- + +“The _Czarina Catherine_ left the Thames yesterday morning. It will take +her at the quickest speed she has ever made at least three weeks to +reach Varna; but we can travel overland to the same place in three days. +Now, if we allow for two days less for the ship’s voyage, owing to such +weather influences as we know that the Count can bring to bear; and if +we allow a whole day and night for any delays which may occur to us, +then we have a margin of nearly two weeks. Thus, in order to be quite +safe, we must leave here on 17th at latest. Then we shall at any rate +be in Varna a day before the ship arrives, and able to make such +preparations as may be necessary. Of course we shall all go armed--armed +against evil things, spiritual as well as physical.” Here Quincey Morris +added:-- + +“I understand that the Count comes from a wolf country, and it may be +that he shall get there before us. I propose that we add Winchesters to +our armament. I have a kind of belief in a Winchester when there is any +trouble of that sort around. Do you remember, Art, when we had the pack +after us at Tobolsk? What wouldn’t we have given then for a repeater +apiece!” + +“Good!” said Van Helsing, “Winchesters it shall be. Quincey’s head is +level at all times, but most so when there is to hunt, metaphor be more +dishonour to science than wolves be of danger to man. In the meantime we +can do nothing here; and as I think that Varna is not familiar to any of +us, why not go there more soon? It is as long to wait here as there. +To-night and to-morrow we can get ready, and then, if all be well, we +four can set out on our journey.” + +“We four?” said Harker interrogatively, looking from one to another of +us. + +“Of course!” answered the Professor quickly, “you must remain to take +care of your so sweet wife!” Harker was silent for awhile and then said +in a hollow voice:-- + +“Let us talk of that part of it in the morning. I want to consult with +Mina.” I thought that now was the time for Van Helsing to warn him not +to disclose our plans to her; but he took no notice. I looked at him +significantly and coughed. For answer he put his finger on his lips and +turned away. + + +_Jonathan Harker’s Journal._ + +_5 October, afternoon._--For some time after our meeting this morning I +could not think. The new phases of things leave my mind in a state of +wonder which allows no room for active thought. Mina’s determination not +to take any part in the discussion set me thinking; and as I could not +argue the matter with her, I could only guess. I am as far as ever from +a solution now. The way the others received it, too, puzzled me; the +last time we talked of the subject we agreed that there was to be no +more concealment of anything amongst us. Mina is sleeping now, calmly +and sweetly like a little child. Her lips are curved and her face beams +with happiness. Thank God, there are such moments still for her. + + * * * * * + +_Later._--How strange it all is. I sat watching Mina’s happy sleep, and +came as near to being happy myself as I suppose I shall ever be. As the +evening drew on, and the earth took its shadows from the sun sinking +lower, the silence of the room grew more and more solemn to me. All at +once Mina opened her eyes, and looking at me tenderly, said:-- + +“Jonathan, I want you to promise me something on your word of honour. A +promise made to me, but made holily in God’s hearing, and not to be +broken though I should go down on my knees and implore you with bitter +tears. Quick, you must make it to me at once.” + +“Mina,” I said, “a promise like that, I cannot make at once. I may have +no right to make it.” + +“But, dear one,” she said, with such spiritual intensity that her eyes +were like pole stars, “it is I who wish it; and it is not for myself. +You can ask Dr. Van Helsing if I am not right; if he disagrees you may +do as you will. Nay, more, if you all agree, later, you are absolved +from the promise.” + +“I promise!” I said, and for a moment she looked supremely happy; though +to me all happiness for her was denied by the red scar on her forehead. +She said:-- + +“Promise me that you will not tell me anything of the plans formed for +the campaign against the Count. Not by word, or inference, or +implication; not at any time whilst this remains to me!” and she +solemnly pointed to the scar. I saw that she was in earnest, and said +solemnly:-- + +“I promise!” and as I said it I felt that from that instant a door had +been shut between us. + + * * * * * + +_Later, midnight._--Mina has been bright and cheerful all the evening. +So much so that all the rest seemed to take courage, as if infected +somewhat with her gaiety; as a result even I myself felt as if the pall +of gloom which weighs us down were somewhat lifted. We all retired +early. Mina is now sleeping like a little child; it is a wonderful thing +that her faculty of sleep remains to her in the midst of her terrible +trouble. Thank God for it, for then at least she can forget her care. +Perhaps her example may affect me as her gaiety did to-night. I shall +try it. Oh! for a dreamless sleep. + + * * * * * + +_6 October, morning._--Another surprise. Mina woke me early, about the +same time as yesterday, and asked me to bring Dr. Van Helsing. I thought +that it was another occasion for hypnotism, and without question went +for the Professor. He had evidently expected some such call, for I found +him dressed in his room. His door was ajar, so that he could hear the +opening of the door of our room. He came at once; as he passed into the +room, he asked Mina if the others might come, too. + +“No,” she said quite simply, “it will not be necessary. You can tell +them just as well. I must go with you on your journey.” + +Dr. Van Helsing was as startled as I was. After a moment’s pause he +asked:-- + +“But why?” + +“You must take me with you. I am safer with you, and you shall be safer, +too.” + +“But why, dear Madam Mina? You know that your safety is our solemnest +duty. We go into danger, to which you are, or may be, more liable than +any of us from--from circumstances--things that have been.” He paused, +embarrassed. + +As she replied, she raised her finger and pointed to her forehead:-- + +“I know. That is why I must go. I can tell you now, whilst the sun is +coming up; I may not be able again. I know that when the Count wills me +I must go. I know that if he tells me to come in secret, I must come by +wile; by any device to hoodwink--even Jonathan.” God saw the look that +she turned on me as she spoke, and if there be indeed a Recording Angel +that look is noted to her everlasting honour. I could only clasp her +hand. I could not speak; my emotion was too great for even the relief of +tears. She went on:-- + +“You men are brave and strong. You are strong in your numbers, for you +can defy that which would break down the human endurance of one who had +to guard alone. Besides, I may be of service, since you can hypnotise me +and so learn that which even I myself do not know.” Dr. Van Helsing said +very gravely:-- + +“Madam Mina, you are, as always, most wise. You shall with us come; and +together we shall do that which we go forth to achieve.” When he had +spoken, Mina’s long spell of silence made me look at her. She had fallen +back on her pillow asleep; she did not even wake when I had pulled up +the blind and let in the sunlight which flooded the room. Van Helsing +motioned to me to come with him quietly. We went to his room, and within +a minute Lord Godalming, Dr. Seward, and Mr. Morris were with us also. +He told them what Mina had said, and went on:-- + +“In the morning we shall leave for Varna. We have now to deal with a +new factor: Madam Mina. Oh, but her soul is true. It is to her an agony +to tell us so much as she has done; but it is most right, and we are +warned in time. There must be no chance lost, and in Varna we must be +ready to act the instant when that ship arrives.” + +“What shall we do exactly?” asked Mr. Morris laconically. The Professor +paused before replying:-- + +“We shall at the first board that ship; then, when we have identified +the box, we shall place a branch of the wild rose on it. This we shall +fasten, for when it is there none can emerge; so at least says the +superstition. And to superstition must we trust at the first; it was +man’s faith in the early, and it have its root in faith still. Then, +when we get the opportunity that we seek, when none are near to see, we +shall open the box, and--and all will be well.” + +“I shall not wait for any opportunity,” said Morris. “When I see the box +I shall open it and destroy the monster, though there were a thousand +men looking on, and if I am to be wiped out for it the next moment!” I +grasped his hand instinctively and found it as firm as a piece of steel. +I think he understood my look; I hope he did. + +“Good boy,” said Dr. Van Helsing. “Brave boy. Quincey is all man. God +bless him for it. My child, believe me none of us shall lag behind or +pause from any fear. I do but say what we may do--what we must do. But, +indeed, indeed we cannot say what we shall do. There are so many things +which may happen, and their ways and their ends are so various that +until the moment we may not say. We shall all be armed, in all ways; and +when the time for the end has come, our effort shall not be lack. Now +let us to-day put all our affairs in order. Let all things which touch +on others dear to us, and who on us depend, be complete; for none of us +can tell what, or when, or how, the end may be. As for me, my own +affairs are regulate; and as I have nothing else to do, I shall go make +arrangements for the travel. I shall have all tickets and so forth for +our journey.” + +There was nothing further to be said, and we parted. I shall now settle +up all my affairs of earth, and be ready for whatever may come.... + + * * * * * + +_Later._--It is all done; my will is made, and all complete. Mina if she +survive is my sole heir. If it should not be so, then the others who +have been so good to us shall have remainder. + +It is now drawing towards the sunset; Mina’s uneasiness calls my +attention to it. I am sure that there is something on her mind which the +time of exact sunset will reveal. These occasions are becoming harrowing +times for us all, for each sunrise and sunset opens up some new +danger--some new pain, which, however, may in God’s will be means to a +good end. I write all these things in the diary since my darling must +not hear them now; but if it may be that she can see them again, they +shall be ready. + +She is calling to me. + + + + +CHAPTER XXV + +DR. SEWARD’S DIARY + + +_11 October, Evening._--Jonathan Harker has asked me to note this, as he +says he is hardly equal to the task, and he wants an exact record kept. + +I think that none of us were surprised when we were asked to see Mrs. +Harker a little before the time of sunset. We have of late come to +understand that sunrise and sunset are to her times of peculiar freedom; +when her old self can be manifest without any controlling force subduing +or restraining her, or inciting her to action. This mood or condition +begins some half hour or more before actual sunrise or sunset, and lasts +till either the sun is high, or whilst the clouds are still aglow with +the rays streaming above the horizon. At first there is a sort of +negative condition, as if some tie were loosened, and then the absolute +freedom quickly follows; when, however, the freedom ceases the +change-back or relapse comes quickly, preceded only by a spell of +warning silence. + +To-night, when we met, she was somewhat constrained, and bore all the +signs of an internal struggle. I put it down myself to her making a +violent effort at the earliest instant she could do so. A very few +minutes, however, gave her complete control of herself; then, motioning +her husband to sit beside her on the sofa where she was half reclining, +she made the rest of us bring chairs up close. Taking her husband’s hand +in hers began:-- + +“We are all here together in freedom, for perhaps the last time! I know, +dear; I know that you will always be with me to the end.” This was to +her husband whose hand had, as we could see, tightened upon hers. “In +the morning we go out upon our task, and God alone knows what may be in +store for any of us. You are going to be so good to me as to take me +with you. I know that all that brave earnest men can do for a poor weak +woman, whose soul perhaps is lost--no, no, not yet, but is at any rate +at stake--you will do. But you must remember that I am not as you are. +There is a poison in my blood, in my soul, which may destroy me; which +must destroy me, unless some relief comes to us. Oh, my friends, you +know as well as I do, that my soul is at stake; and though I know there +is one way out for me, you must not and I must not take it!” She looked +appealingly to us all in turn, beginning and ending with her husband. + +“What is that way?” asked Van Helsing in a hoarse voice. “What is that +way, which we must not--may not--take?” + +“That I may die now, either by my own hand or that of another, before +the greater evil is entirely wrought. I know, and you know, that were I +once dead you could and would set free my immortal spirit, even as you +did my poor Lucy’s. Were death, or the fear of death, the only thing +that stood in the way I would not shrink to die here, now, amidst the +friends who love me. But death is not all. I cannot believe that to die +in such a case, when there is hope before us and a bitter task to be +done, is God’s will. Therefore, I, on my part, give up here the +certainty of eternal rest, and go out into the dark where may be the +blackest things that the world or the nether world holds!” We were all +silent, for we knew instinctively that this was only a prelude. The +faces of the others were set and Harker’s grew ashen grey; perhaps he +guessed better than any of us what was coming. She continued:-- + +“This is what I can give into the hotch-pot.” I could not but note the +quaint legal phrase which she used in such a place, and with all +seriousness. “What will each of you give? Your lives I know,” she went +on quickly, “that is easy for brave men. Your lives are God’s, and you +can give them back to Him; but what will you give to me?” She looked +again questioningly, but this time avoided her husband’s face. Quincey +seemed to understand; he nodded, and her face lit up. “Then I shall tell +you plainly what I want, for there must be no doubtful matter in this +connection between us now. You must promise me, one and all--even you, +my beloved husband--that, should the time come, you will kill me.” + +“What is that time?” The voice was Quincey’s, but it was low and +strained. + +“When you shall be convinced that I am so changed that it is better that +I die than I may live. When I am thus dead in the flesh, then you will, +without a moment’s delay, drive a stake through me and cut off my head; +or do whatever else may be wanting to give me rest!” + +Quincey was the first to rise after the pause. He knelt down before her +and taking her hand in his said solemnly:-- + +“I’m only a rough fellow, who hasn’t, perhaps, lived as a man should to +win such a distinction, but I swear to you by all that I hold sacred and +dear that, should the time ever come, I shall not flinch from the duty +that you have set us. And I promise you, too, that I shall make all +certain, for if I am only doubtful I shall take it that the time has +come!” + +“My true friend!” was all she could say amid her fast-falling tears, as, +bending over, she kissed his hand. + +“I swear the same, my dear Madam Mina!” said Van Helsing. + +“And I!” said Lord Godalming, each of them in turn kneeling to her to +take the oath. I followed, myself. Then her husband turned to her +wan-eyed and with a greenish pallor which subdued the snowy whiteness of +his hair, and asked:-- + +“And must I, too, make such a promise, oh, my wife?” + +“You too, my dearest,” she said, with infinite yearning of pity in her +voice and eyes. “You must not shrink. You are nearest and dearest and +all the world to me; our souls are knit into one, for all life and all +time. Think, dear, that there have been times when brave men have killed +their wives and their womenkind, to keep them from falling into the +hands of the enemy. Their hands did not falter any the more because +those that they loved implored them to slay them. It is men’s duty +towards those whom they love, in such times of sore trial! And oh, my +dear, if it is to be that I must meet death at any hand, let it be at +the hand of him that loves me best. Dr. Van Helsing, I have not +forgotten your mercy in poor Lucy’s case to him who loved”--she stopped +with a flying blush, and changed her phrase--“to him who had best right +to give her peace. If that time shall come again, I look to you to make +it a happy memory of my husband’s life that it was his loving hand which +set me free from the awful thrall upon me.” + +“Again I swear!” came the Professor’s resonant voice. Mrs. Harker +smiled, positively smiled, as with a sigh of relief she leaned back and +said:-- + +“And now one word of warning, a warning which you must never forget: +this time, if it ever come, may come quickly and unexpectedly, and in +such case you must lose no time in using your opportunity. At such a +time I myself might be--nay! if the time ever comes, _shall be_--leagued +with your enemy against you.” + +“One more request;” she became very solemn as she said this, “it is not +vital and necessary like the other, but I want you to do one thing for +me, if you will.” We all acquiesced, but no one spoke; there was no need +to speak:-- + +“I want you to read the Burial Service.” She was interrupted by a deep +groan from her husband; taking his hand in hers, she held it over her +heart, and continued: “You must read it over me some day. Whatever may +be the issue of all this fearful state of things, it will be a sweet +thought to all or some of us. You, my dearest, will I hope read it, for +then it will be in your voice in my memory for ever--come what may!” + +“But oh, my dear one,” he pleaded, “death is afar off from you.” + +“Nay,” she said, holding up a warning hand. “I am deeper in death at +this moment than if the weight of an earthly grave lay heavy upon me!” + +“Oh, my wife, must I read it?” he said, before he began. + +“It would comfort me, my husband!” was all she said; and he began to +read when she had got the book ready. + +“How can I--how could any one--tell of that strange scene, its +solemnity, its gloom, its sadness, its horror; and, withal, its +sweetness. Even a sceptic, who can see nothing but a travesty of bitter +truth in anything holy or emotional, would have been melted to the heart +had he seen that little group of loving and devoted friends kneeling +round that stricken and sorrowing lady; or heard the tender passion of +her husband’s voice, as in tones so broken with emotion that often he +had to pause, he read the simple and beautiful service from the Burial +of the Dead. I--I cannot go on--words--and--v-voice--f-fail m-me!” + + * * * * * + +She was right in her instinct. Strange as it all was, bizarre as it may +hereafter seem even to us who felt its potent influence at the time, it +comforted us much; and the silence, which showed Mrs. Harker’s coming +relapse from her freedom of soul, did not seem so full of despair to any +of us as we had dreaded. + + +_Jonathan Harker’s Journal._ + +_15 October, Varna._--We left Charing Cross on the morning of the 12th, +got to Paris the same night, and took the places secured for us in the +Orient Express. We travelled night and day, arriving here at about five +o’clock. Lord Godalming went to the Consulate to see if any telegram had +arrived for him, whilst the rest of us came on to this hotel--“the +Odessus.” The journey may have had incidents; I was, however, too eager +to get on, to care for them. Until the _Czarina Catherine_ comes into +port there will be no interest for me in anything in the wide world. +Thank God! Mina is well, and looks to be getting stronger; her colour is +coming back. She sleeps a great deal; throughout the journey she slept +nearly all the time. Before sunrise and sunset, however, she is very +wakeful and alert; and it has become a habit for Van Helsing to +hypnotise her at such times. At first, some effort was needed, and he +had to make many passes; but now, she seems to yield at once, as if by +habit, and scarcely any action is needed. He seems to have power at +these particular moments to simply will, and her thoughts obey him. He +always asks her what she can see and hear. She answers to the first:-- + +“Nothing; all is dark.” And to the second:-- + +“I can hear the waves lapping against the ship, and the water rushing +by. Canvas and cordage strain and masts and yards creak. The wind is +high--I can hear it in the shrouds, and the bow throws back the foam.” +It is evident that the _Czarina Catherine_ is still at sea, hastening on +her way to Varna. Lord Godalming has just returned. He had four +telegrams, one each day since we started, and all to the same effect: +that the _Czarina Catherine_ had not been reported to Lloyd’s from +anywhere. He had arranged before leaving London that his agent should +send him every day a telegram saying if the ship had been reported. He +was to have a message even if she were not reported, so that he might be +sure that there was a watch being kept at the other end of the wire. + +We had dinner and went to bed early. To-morrow we are to see the +Vice-Consul, and to arrange, if we can, about getting on board the ship +as soon as she arrives. Van Helsing says that our chance will be to get +on the boat between sunrise and sunset. The Count, even if he takes the +form of a bat, cannot cross the running water of his own volition, and +so cannot leave the ship. As he dare not change to man’s form without +suspicion--which he evidently wishes to avoid--he must remain in the +box. If, then, we can come on board after sunrise, he is at our mercy; +for we can open the box and make sure of him, as we did of poor Lucy, +before he wakes. What mercy he shall get from us will not count for +much. We think that we shall not have much trouble with officials or the +seamen. Thank God! this is the country where bribery can do anything, +and we are well supplied with money. We have only to make sure that the +ship cannot come into port between sunset and sunrise without our being +warned, and we shall be safe. Judge Moneybag will settle this case, I +think! + + * * * * * + +_16 October._--Mina’s report still the same: lapping waves and rushing +water, darkness and favouring winds. We are evidently in good time, and +when we hear of the _Czarina Catherine_ we shall be ready. As she must +pass the Dardanelles we are sure to have some report. + + * * * * * + +_17 October._--Everything is pretty well fixed now, I think, to welcome +the Count on his return from his tour. Godalming told the shippers that +he fancied that the box sent aboard might contain something stolen from +a friend of his, and got a half consent that he might open it at his own +risk. The owner gave him a paper telling the Captain to give him every +facility in doing whatever he chose on board the ship, and also a +similar authorisation to his agent at Varna. We have seen the agent, who +was much impressed with Godalming’s kindly manner to him, and we are all +satisfied that whatever he can do to aid our wishes will be done. We +have already arranged what to do in case we get the box open. If the +Count is there, Van Helsing and Seward will cut off his head at once and +drive a stake through his heart. Morris and Godalming and I shall +prevent interference, even if we have to use the arms which we shall +have ready. The Professor says that if we can so treat the Count’s body, +it will soon after fall into dust. In such case there would be no +evidence against us, in case any suspicion of murder were aroused. But +even if it were not, we should stand or fall by our act, and perhaps +some day this very script may be evidence to come between some of us and +a rope. For myself, I should take the chance only too thankfully if it +were to come. We mean to leave no stone unturned to carry out our +intent. We have arranged with certain officials that the instant the +_Czarina Catherine_ is seen, we are to be informed by a special +messenger. + + * * * * * + +_24 October._--A whole week of waiting. Daily telegrams to Godalming, +but only the same story: “Not yet reported.” Mina’s morning and evening +hypnotic answer is unvaried: lapping waves, rushing water, and creaking +masts. + +_Telegram, October 24th._ + +_Rufus Smith, Lloyd’s, London, to Lord Godalming, care of H. B. M. +Vice-Consul, Varna._ + +“_Czarina Catherine_ reported this morning from Dardanelles.” + + +_Dr. Seward’s Diary._ + +_25 October._--How I miss my phonograph! To write diary with a pen is +irksome to me; but Van Helsing says I must. We were all wild with +excitement yesterday when Godalming got his telegram from Lloyd’s. I +know now what men feel in battle when the call to action is heard. Mrs. +Harker, alone of our party, did not show any signs of emotion. After +all, it is not strange that she did not; for we took special care not to +let her know anything about it, and we all tried not to show any +excitement when we were in her presence. In old days she would, I am +sure, have noticed, no matter how we might have tried to conceal it; but +in this way she is greatly changed during the past three weeks. The +lethargy grows upon her, and though she seems strong and well, and is +getting back some of her colour, Van Helsing and I are not satisfied. We +talk of her often; we have not, however, said a word to the others. It +would break poor Harker’s heart--certainly his nerve--if he knew that we +had even a suspicion on the subject. Van Helsing examines, he tells me, +her teeth very carefully, whilst she is in the hypnotic condition, for +he says that so long as they do not begin to sharpen there is no active +danger of a change in her. If this change should come, it would be +necessary to take steps!... We both know what those steps would have to +be, though we do not mention our thoughts to each other. We should +neither of us shrink from the task--awful though it be to contemplate. +“Euthanasia” is an excellent and a comforting word! I am grateful to +whoever invented it. + +It is only about 24 hours’ sail from the Dardanelles to here, at the +rate the _Czarina Catherine_ has come from London. She should therefore +arrive some time in the morning; but as she cannot possibly get in +before then, we are all about to retire early. We shall get up at one +o’clock, so as to be ready. + + * * * * * + +_25 October, Noon_.--No news yet of the ship’s arrival. Mrs. Harker’s +hypnotic report this morning was the same as usual, so it is possible +that we may get news at any moment. We men are all in a fever of +excitement, except Harker, who is calm; his hands are cold as ice, and +an hour ago I found him whetting the edge of the great Ghoorka knife +which he now always carries with him. It will be a bad lookout for the +Count if the edge of that “Kukri” ever touches his throat, driven by +that stern, ice-cold hand! + +Van Helsing and I were a little alarmed about Mrs. Harker to-day. About +noon she got into a sort of lethargy which we did not like; although we +kept silence to the others, we were neither of us happy about it. She +had been restless all the morning, so that we were at first glad to know +that she was sleeping. When, however, her husband mentioned casually +that she was sleeping so soundly that he could not wake her, we went to +her room to see for ourselves. She was breathing naturally and looked so +well and peaceful that we agreed that the sleep was better for her than +anything else. Poor girl, she has so much to forget that it is no wonder +that sleep, if it brings oblivion to her, does her good. + + * * * * * + +_Later._--Our opinion was justified, for when after a refreshing sleep +of some hours she woke up, she seemed brighter and better than she had +been for days. At sunset she made the usual hypnotic report. Wherever he +may be in the Black Sea, the Count is hurrying to his destination. To +his doom, I trust! + + * * * * * + +_26 October._--Another day and no tidings of the _Czarina Catherine_. +She ought to be here by now. That she is still journeying _somewhere_ is +apparent, for Mrs. Harker’s hypnotic report at sunrise was still the +same. It is possible that the vessel may be lying by, at times, for fog; +some of the steamers which came in last evening reported patches of fog +both to north and south of the port. We must continue our watching, as +the ship may now be signalled any moment. + + * * * * * + +_27 October, Noon._--Most strange; no news yet of the ship we wait for. +Mrs. Harker reported last night and this morning as usual: “lapping +waves and rushing water,” though she added that “the waves were very +faint.” The telegrams from London have been the same: “no further +report.” Van Helsing is terribly anxious, and told me just now that he +fears the Count is escaping us. He added significantly:-- + +“I did not like that lethargy of Madam Mina’s. Souls and memories can do +strange things during trance.” I was about to ask him more, but Harker +just then came in, and he held up a warning hand. We must try to-night +at sunset to make her speak more fully when in her hypnotic state. + + * * * * * + + _28 October._--Telegram. _Rufus Smith, London, to Lord Godalming, + care H. B. M. Vice Consul, Varna._ + + “_Czarina Catherine_ reported entering Galatz at one o’clock + to-day.” + + +_Dr. Seward’s Diary._ + +_28 October._--When the telegram came announcing the arrival in Galatz I +do not think it was such a shock to any of us as might have been +expected. True, we did not know whence, or how, or when, the bolt would +come; but I think we all expected that something strange would happen. +The delay of arrival at Varna made us individually satisfied that things +would not be just as we had expected; we only waited to learn where the +change would occur. None the less, however, was it a surprise. I suppose +that nature works on such a hopeful basis that we believe against +ourselves that things will be as they ought to be, not as we should know +that they will be. Transcendentalism is a beacon to the angels, even if +it be a will-o’-the-wisp to man. It was an odd experience and we all +took it differently. Van Helsing raised his hand over his head for a +moment, as though in remonstrance with the Almighty; but he said not a +word, and in a few seconds stood up with his face sternly set. Lord +Godalming grew very pale, and sat breathing heavily. I was myself half +stunned and looked in wonder at one after another. Quincey Morris +tightened his belt with that quick movement which I knew so well; in our +old wandering days it meant “action.” Mrs. Harker grew ghastly white, so +that the scar on her forehead seemed to burn, but she folded her hands +meekly and looked up in prayer. Harker smiled--actually smiled--the +dark, bitter smile of one who is without hope; but at the same time his +action belied his words, for his hands instinctively sought the hilt of +the great Kukri knife and rested there. “When does the next train start +for Galatz?” said Van Helsing to us generally. + +“At 6:30 to-morrow morning!” We all started, for the answer came from +Mrs. Harker. + +“How on earth do you know?” said Art. + +“You forget--or perhaps you do not know, though Jonathan does and so +does Dr. Van Helsing--that I am the train fiend. At home in Exeter I +always used to make up the time-tables, so as to be helpful to my +husband. I found it so useful sometimes, that I always make a study of +the time-tables now. I knew that if anything were to take us to Castle +Dracula we should go by Galatz, or at any rate through Bucharest, so I +learned the times very carefully. Unhappily there are not many to learn, +as the only train to-morrow leaves as I say.” + +“Wonderful woman!” murmured the Professor. + +“Can’t we get a special?” asked Lord Godalming. Van Helsing shook his +head: “I fear not. This land is very different from yours or mine; even +if we did have a special, it would probably not arrive as soon as our +regular train. Moreover, we have something to prepare. We must think. +Now let us organize. You, friend Arthur, go to the train and get the +tickets and arrange that all be ready for us to go in the morning. Do +you, friend Jonathan, go to the agent of the ship and get from him +letters to the agent in Galatz, with authority to make search the ship +just as it was here. Morris Quincey, you see the Vice-Consul, and get +his aid with his fellow in Galatz and all he can do to make our way +smooth, so that no times be lost when over the Danube. John will stay +with Madam Mina and me, and we shall consult. For so if time be long you +may be delayed; and it will not matter when the sun set, since I am here +with Madam to make report.” + +“And I,” said Mrs. Harker brightly, and more like her old self than she +had been for many a long day, “shall try to be of use in all ways, and +shall think and write for you as I used to do. Something is shifting +from me in some strange way, and I feel freer than I have been of late!” +The three younger men looked happier at the moment as they seemed to +realise the significance of her words; but Van Helsing and I, turning to +each other, met each a grave and troubled glance. We said nothing at the +time, however. + +When the three men had gone out to their tasks Van Helsing asked Mrs. +Harker to look up the copy of the diaries and find him the part of +Harker’s journal at the Castle. She went away to get it; when the door +was shut upon her he said to me:-- + +“We mean the same! speak out!” + +“There is some change. It is a hope that makes me sick, for it may +deceive us.” + +“Quite so. Do you know why I asked her to get the manuscript?” + +“No!” said I, “unless it was to get an opportunity of seeing me alone.” + +“You are in part right, friend John, but only in part. I want to tell +you something. And oh, my friend, I am taking a great--a terrible--risk; +but I believe it is right. In the moment when Madam Mina said those +words that arrest both our understanding, an inspiration came to me. In +the trance of three days ago the Count sent her his spirit to read her +mind; or more like he took her to see him in his earth-box in the ship +with water rushing, just as it go free at rise and set of sun. He learn +then that we are here; for she have more to tell in her open life with +eyes to see and ears to hear than he, shut, as he is, in his coffin-box. +Now he make his most effort to escape us. At present he want her not. + +“He is sure with his so great knowledge that she will come at his call; +but he cut her off--take her, as he can do, out of his own power, that +so she come not to him. Ah! there I have hope that our man-brains that +have been of man so long and that have not lost the grace of God, will +come higher than his child-brain that lie in his tomb for centuries, +that grow not yet to our stature, and that do only work selfish and +therefore small. Here comes Madam Mina; not a word to her of her trance! +She know it not; and it would overwhelm her and make despair just when +we want all her hope, all her courage; when most we want all her great +brain which is trained like man’s brain, but is of sweet woman and have +a special power which the Count give her, and which he may not take away +altogether--though he think not so. Hush! let me speak, and you shall +learn. Oh, John, my friend, we are in awful straits. I fear, as I never +feared before. We can only trust the good God. Silence! here she comes!” + +I thought that the Professor was going to break down and have hysterics, +just as he had when Lucy died, but with a great effort he controlled +himself and was at perfect nervous poise when Mrs. Harker tripped into +the room, bright and happy-looking and, in the doing of work, seemingly +forgetful of her misery. As she came in, she handed a number of sheets +of typewriting to Van Helsing. He looked over them gravely, his face +brightening up as he read. Then holding the pages between his finger and +thumb he said:-- + +“Friend John, to you with so much of experience already--and you, too, +dear Madam Mina, that are young--here is a lesson: do not fear ever to +think. A half-thought has been buzzing often in my brain, but I fear to +let him loose his wings. Here now, with more knowledge, I go back to +where that half-thought come from and I find that he be no half-thought +at all; that be a whole thought, though so young that he is not yet +strong to use his little wings. Nay, like the “Ugly Duck” of my friend +Hans Andersen, he be no duck-thought at all, but a big swan-thought that +sail nobly on big wings, when the time come for him to try them. See I +read here what Jonathan have written:-- + +“That other of his race who, in a later age, again and again, brought +his forces over The Great River into Turkey Land; who, when he was +beaten back, came again, and again, and again, though he had to come +alone from the bloody field where his troops were being slaughtered, +since he knew that he alone could ultimately triumph.” + +“What does this tell us? Not much? no! The Count’s child-thought see +nothing; therefore he speak so free. Your man-thought see nothing; my +man-thought see nothing, till just now. No! But there comes another word +from some one who speak without thought because she, too, know not what +it mean--what it _might_ mean. Just as there are elements which rest, +yet when in nature’s course they move on their way and they touch--then +pouf! and there comes a flash of light, heaven wide, that blind and kill +and destroy some; but that show up all earth below for leagues and +leagues. Is it not so? Well, I shall explain. To begin, have you ever +study the philosophy of crime? ‘Yes’ and ‘No.’ You, John, yes; for it is +a study of insanity. You, no, Madam Mina; for crime touch you not--not +but once. Still, your mind works true, and argues not _a particulari ad +universale_. There is this peculiarity in criminals. It is so constant, +in all countries and at all times, that even police, who know not much +from philosophy, come to know it empirically, that _it is_. That is to +be empiric. The criminal always work at one crime--that is the true +criminal who seems predestinate to crime, and who will of none other. +This criminal has not full man-brain. He is clever and cunning and +resourceful; but he be not of man-stature as to brain. He be of +child-brain in much. Now this criminal of ours is predestinate to crime +also; he, too, have child-brain, and it is of the child to do what he +have done. The little bird, the little fish, the little animal learn not +by principle, but empirically; and when he learn to do, then there is to +him the ground to start from to do more. ‘_Dos pou sto_,’ said +Archimedes. ‘Give me a fulcrum, and I shall move the world!’ To do once, +is the fulcrum whereby child-brain become man-brain; and until he have +the purpose to do more, he continue to do the same again every time, +just as he have done before! Oh, my dear, I see that your eyes are +opened, and that to you the lightning flash show all the leagues,” for +Mrs. Harker began to clap her hands and her eyes sparkled. He went on:-- + +“Now you shall speak. Tell us two dry men of science what you see with +those so bright eyes.” He took her hand and held it whilst she spoke. +His finger and thumb closed on her pulse, as I thought instinctively and +unconsciously, as she spoke:-- + +“The Count is a criminal and of criminal type. Nordau and Lombroso would +so classify him, and _quâ_ criminal he is of imperfectly formed mind. +Thus, in a difficulty he has to seek resource in habit. His past is a +clue, and the one page of it that we know--and that from his own +lips--tells that once before, when in what Mr. Morris would call a +‘tight place,’ he went back to his own country from the land he had +tried to invade, and thence, without losing purpose, prepared himself +for a new effort. He came again better equipped for his work; and won. +So he came to London to invade a new land. He was beaten, and when all +hope of success was lost, and his existence in danger, he fled back over +the sea to his home; just as formerly he had fled back over the Danube +from Turkey Land.” + +“Good, good! oh, you so clever lady!” said Van Helsing, +enthusiastically, as he stooped and kissed her hand. A moment later he +said to me, as calmly as though we had been having a sick-room +consultation:-- + +“Seventy-two only; and in all this excitement. I have hope.” Turning to +her again, he said with keen expectation:-- + +“But go on. Go on! there is more to tell if you will. Be not afraid; +John and I know. I do in any case, and shall tell you if you are right. +Speak, without fear!” + +“I will try to; but you will forgive me if I seem egotistical.” + +“Nay! fear not, you must be egotist, for it is of you that we think.” + +“Then, as he is criminal he is selfish; and as his intellect is small +and his action is based on selfishness, he confines himself to one +purpose. That purpose is remorseless. As he fled back over the Danube, +leaving his forces to be cut to pieces, so now he is intent on being +safe, careless of all. So his own selfishness frees my soul somewhat +from the terrible power which he acquired over me on that dreadful +night. I felt it! Oh, I felt it! Thank God, for His great mercy! My soul +is freer than it has been since that awful hour; and all that haunts me +is a fear lest in some trance or dream he may have used my knowledge for +his ends.” The Professor stood up:-- + +“He has so used your mind; and by it he has left us here in Varna, +whilst the ship that carried him rushed through enveloping fog up to +Galatz, where, doubtless, he had made preparation for escaping from us. +But his child-mind only saw so far; and it may be that, as ever is in +God’s Providence, the very thing that the evil-doer most reckoned on for +his selfish good, turns out to be his chiefest harm. The hunter is taken +in his own snare, as the great Psalmist says. For now that he think he +is free from every trace of us all, and that he has escaped us with so +many hours to him, then his selfish child-brain will whisper him to +sleep. He think, too, that as he cut himself off from knowing your mind, +there can be no knowledge of him to you; there is where he fail! That +terrible baptism of blood which he give you makes you free to go to him +in spirit, as you have as yet done in your times of freedom, when the +sun rise and set. At such times you go by my volition and not by his; +and this power to good of you and others, as you have won from your +suffering at his hands. This is now all the more precious that he know +it not, and to guard himself have even cut himself off from his +knowledge of our where. We, however, are not selfish, and we believe +that God is with us through all this blackness, and these many dark +hours. We shall follow him; and we shall not flinch; even if we peril +ourselves that we become like him. Friend John, this has been a great +hour; and it have done much to advance us on our way. You must be scribe +and write him all down, so that when the others return from their work +you can give it to them; then they shall know as we do.” + +And so I have written it whilst we wait their return, and Mrs. Harker +has written with her typewriter all since she brought the MS. to us. + + + + +CHAPTER XXVI + +DR. SEWARD’S DIARY + + +_29 October._--This is written in the train from Varna to Galatz. Last +night we all assembled a little before the time of sunset. Each of us +had done his work as well as he could; so far as thought, and endeavour, +and opportunity go, we are prepared for the whole of our journey, and +for our work when we get to Galatz. When the usual time came round Mrs. +Harker prepared herself for her hypnotic effort; and after a longer and +more serious effort on the part of Van Helsing than has been usually +necessary, she sank into the trance. Usually she speaks on a hint; but +this time the Professor had to ask her questions, and to ask them pretty +resolutely, before we could learn anything; at last her answer came:-- + +“I can see nothing; we are still; there are no waves lapping, but only a +steady swirl of water softly running against the hawser. I can hear +men’s voices calling, near and far, and the roll and creak of oars in +the rowlocks. A gun is fired somewhere; the echo of it seems far away. +There is tramping of feet overhead, and ropes and chains are dragged +along. What is this? There is a gleam of light; I can feel the air +blowing upon me.” + +Here she stopped. She had risen, as if impulsively, from where she lay +on the sofa, and raised both her hands, palms upwards, as if lifting a +weight. Van Helsing and I looked at each other with understanding. +Quincey raised his eyebrows slightly and looked at her intently, whilst +Harker’s hand instinctively closed round the hilt of his Kukri. There +was a long pause. We all knew that the time when she could speak was +passing; but we felt that it was useless to say anything. Suddenly she +sat up, and, as she opened her eyes, said sweetly:-- + +“Would none of you like a cup of tea? You must all be so tired!” We +could only make her happy, and so acquiesced. She bustled off to get +tea; when she had gone Van Helsing said:-- + +“You see, my friends. _He_ is close to land: he has left his +earth-chest. But he has yet to get on shore. In the night he may lie +hidden somewhere; but if he be not carried on shore, or if the ship do +not touch it, he cannot achieve the land. In such case he can, if it be +in the night, change his form and can jump or fly on shore, as he did +at Whitby. But if the day come before he get on shore, then, unless he +be carried he cannot escape. And if he be carried, then the customs men +may discover what the box contain. Thus, in fine, if he escape not on +shore to-night, or before dawn, there will be the whole day lost to him. +We may then arrive in time; for if he escape not at night we shall come +on him in daytime, boxed up and at our mercy; for he dare not be his +true self, awake and visible, lest he be discovered.” + +There was no more to be said, so we waited in patience until the dawn; +at which time we might learn more from Mrs. Harker. + +Early this morning we listened, with breathless anxiety, for her +response in her trance. The hypnotic stage was even longer in coming +than before; and when it came the time remaining until full sunrise was +so short that we began to despair. Van Helsing seemed to throw his whole +soul into the effort; at last, in obedience to his will she made +reply:-- + +“All is dark. I hear lapping water, level with me, and some creaking as +of wood on wood.” She paused, and the red sun shot up. We must wait till +to-night. + +And so it is that we are travelling towards Galatz in an agony of +expectation. We are due to arrive between two and three in the morning; +but already, at Bucharest, we are three hours late, so we cannot +possibly get in till well after sun-up. Thus we shall have two more +hypnotic messages from Mrs. Harker; either or both may possibly throw +more light on what is happening. + + * * * * * + +_Later._--Sunset has come and gone. Fortunately it came at a time when +there was no distraction; for had it occurred whilst we were at a +station, we might not have secured the necessary calm and isolation. +Mrs. Harker yielded to the hypnotic influence even less readily than +this morning. I am in fear that her power of reading the Count’s +sensations may die away, just when we want it most. It seems to me that +her imagination is beginning to work. Whilst she has been in the trance +hitherto she has confined herself to the simplest of facts. If this goes +on it may ultimately mislead us. If I thought that the Count’s power +over her would die away equally with her power of knowledge it would be +a happy thought; but I am afraid that it may not be so. When she did +speak, her words were enigmatical:-- + +“Something is going out; I can feel it pass me like a cold wind. I can +hear, far off, confused sounds--as of men talking in strange tongues, +fierce-falling water, and the howling of wolves.” She stopped and a +shudder ran through her, increasing in intensity for a few seconds, +till, at the end, she shook as though in a palsy. She said no more, even +in answer to the Professor’s imperative questioning. When she woke from +the trance, she was cold, and exhausted, and languid; but her mind was +all alert. She could not remember anything, but asked what she had said; +when she was told, she pondered over it deeply for a long time and in +silence. + + * * * * * + +_30 October, 7 a. m._--We are near Galatz now, and I may not have time +to write later. Sunrise this morning was anxiously looked for by us all. +Knowing of the increasing difficulty of procuring the hypnotic trance, +Van Helsing began his passes earlier than usual. They produced no +effect, however, until the regular time, when she yielded with a still +greater difficulty, only a minute before the sun rose. The Professor +lost no time in his questioning; her answer came with equal quickness:-- + +“All is dark. I hear water swirling by, level with my ears, and the +creaking of wood on wood. Cattle low far off. There is another sound, a +queer one like----” She stopped and grew white, and whiter still. + +“Go on; go on! Speak, I command you!” said Van Helsing in an agonised +voice. At the same time there was despair in his eyes, for the risen sun +was reddening even Mrs. Harker’s pale face. She opened her eyes, and we +all started as she said, sweetly and seemingly with the utmost +unconcern:-- + +“Oh, Professor, why ask me to do what you know I can’t? I don’t remember +anything.” Then, seeing the look of amazement on our faces, she said, +turning from one to the other with a troubled look:-- + +“What have I said? What have I done? I know nothing, only that I was +lying here, half asleep, and heard you say ‘go on! speak, I command you!’ +It seemed so funny to hear you order me about, as if I were a bad +child!” + +“Oh, Madam Mina,” he said, sadly, “it is proof, if proof be needed, of +how I love and honour you, when a word for your good, spoken more +earnest than ever, can seem so strange because it is to order her whom I +am proud to obey!” + +The whistles are sounding; we are nearing Galatz. We are on fire with +anxiety and eagerness. + + +_Mina Harker’s Journal._ + +_30 October._--Mr. Morris took me to the hotel where our rooms had been +ordered by telegraph, he being the one who could best be spared, since +he does not speak any foreign language. The forces were distributed +much as they had been at Varna, except that Lord Godalming went to the +Vice-Consul, as his rank might serve as an immediate guarantee of some +sort to the official, we being in extreme hurry. Jonathan and the two +doctors went to the shipping agent to learn particulars of the arrival +of the _Czarina Catherine_. + + * * * * * + +_Later._--Lord Godalming has returned. The Consul is away, and the +Vice-Consul sick; so the routine work has been attended to by a clerk. +He was very obliging, and offered to do anything in his power. + + +_Jonathan Harker’s Journal._ + +_30 October._--At nine o’clock Dr. Van Helsing, Dr. Seward, and I called +on Messrs. Mackenzie & Steinkoff, the agents of the London firm of +Hapgood. They had received a wire from London, in answer to Lord +Godalming’s telegraphed request, asking us to show them any civility in +their power. They were more than kind and courteous, and took us at once +on board the _Czarina Catherine_, which lay at anchor out in the river +harbour. There we saw the Captain, Donelson by name, who told us of his +voyage. He said that in all his life he had never had so favourable a +run. + +“Man!” he said, “but it made us afeard, for we expeckit that we should +have to pay for it wi’ some rare piece o’ ill luck, so as to keep up the +average. It’s no canny to run frae London to the Black Sea wi’ a wind +ahint ye, as though the Deil himself were blawin’ on yer sail for his +ain purpose. An’ a’ the time we could no speer a thing. Gin we were nigh +a ship, or a port, or a headland, a fog fell on us and travelled wi’ us, +till when after it had lifted and we looked out, the deil a thing could +we see. We ran by Gibraltar wi’oot bein’ able to signal; an’ till we +came to the Dardanelles and had to wait to get our permit to pass, we +never were within hail o’ aught. At first I inclined to slack off sail +and beat about till the fog was lifted; but whiles, I thocht that if the +Deil was minded to get us into the Black Sea quick, he was like to do it +whether we would or no. If we had a quick voyage it would be no to our +miscredit wi’ the owners, or no hurt to our traffic; an’ the Old Mon who +had served his ain purpose wad be decently grateful to us for no +hinderin’ him.” This mixture of simplicity and cunning, of superstition +and commercial reasoning, aroused Van Helsing, who said:-- + +“Mine friend, that Devil is more clever than he is thought by some; and +he know when he meet his match!” The skipper was not displeased with the +compliment, and went on:-- + +“When we got past the Bosphorus the men began to grumble; some o’ them, +the Roumanians, came and asked me to heave overboard a big box which had +been put on board by a queer lookin’ old man just before we had started +frae London. I had seen them speer at the fellow, and put out their twa +fingers when they saw him, to guard against the evil eye. Man! but the +supersteetion of foreigners is pairfectly rideeculous! I sent them aboot +their business pretty quick; but as just after a fog closed in on us I +felt a wee bit as they did anent something, though I wouldn’t say it was +agin the big box. Well, on we went, and as the fog didn’t let up for +five days I joost let the wind carry us; for if the Deil wanted to get +somewheres--well, he would fetch it up a’reet. An’ if he didn’t, well, +we’d keep a sharp lookout anyhow. Sure eneuch, we had a fair way and +deep water all the time; and two days ago, when the mornin’ sun came +through the fog, we found ourselves just in the river opposite Galatz. +The Roumanians were wild, and wanted me right or wrong to take out the +box and fling it in the river. I had to argy wi’ them aboot it wi’ a +handspike; an’ when the last o’ them rose off the deck wi’ his head in +his hand, I had convinced them that, evil eye or no evil eye, the +property and the trust of my owners were better in my hands than in the +river Danube. They had, mind ye, taken the box on the deck ready to +fling in, and as it was marked Galatz _via_ Varna, I thocht I’d let it +lie till we discharged in the port an’ get rid o’t althegither. We +didn’t do much clearin’ that day, an’ had to remain the nicht at anchor; +but in the mornin’, braw an’ airly, an hour before sun-up, a man came +aboard wi’ an order, written to him from England, to receive a box +marked for one Count Dracula. Sure eneuch the matter was one ready to +his hand. He had his papers a’ reet, an’ glad I was to be rid o’ the +dam’ thing, for I was beginnin’ masel’ to feel uneasy at it. If the Deil +did have any luggage aboord the ship, I’m thinkin’ it was nane ither +than that same!” + +“What was the name of the man who took it?” asked Dr. Van Helsing with +restrained eagerness. + +“I’ll be tellin’ ye quick!” he answered, and, stepping down to his +cabin, produced a receipt signed “Immanuel Hildesheim.” Burgen-strasse +16 was the address. We found out that this was all the Captain knew; so +with thanks we came away. + +We found Hildesheim in his office, a Hebrew of rather the Adelphi +Theatre type, with a nose like a sheep, and a fez. His arguments were +pointed with specie--we doing the punctuation--and with a little +bargaining he told us what he knew. This turned out to be simple but +important. He had received a letter from Mr. de Ville of London, telling +him to receive, if possible before sunrise so as to avoid customs, a box +which would arrive at Galatz in the _Czarina Catherine_. This he was to +give in charge to a certain Petrof Skinsky, who dealt with the Slovaks +who traded down the river to the port. He had been paid for his work by +an English bank note, which had been duly cashed for gold at the Danube +International Bank. When Skinsky had come to him, he had taken him to +the ship and handed over the box, so as to save porterage. That was all +he knew. + +We then sought for Skinsky, but were unable to find him. One of his +neighbours, who did not seem to bear him any affection, said that he had +gone away two days before, no one knew whither. This was corroborated by +his landlord, who had received by messenger the key of the house +together with the rent due, in English money. This had been between ten +and eleven o’clock last night. We were at a standstill again. + +Whilst we were talking one came running and breathlessly gasped out that +the body of Skinsky had been found inside the wall of the churchyard of +St. Peter, and that the throat had been torn open as if by some wild +animal. Those we had been speaking with ran off to see the horror, the +women crying out “This is the work of a Slovak!” We hurried away lest we +should have been in some way drawn into the affair, and so detained. + +As we came home we could arrive at no definite conclusion. We were all +convinced that the box was on its way, by water, to somewhere; but where +that might be we would have to discover. With heavy hearts we came home +to the hotel to Mina. + +When we met together, the first thing was to consult as to taking Mina +again into our confidence. Things are getting desperate, and it is at +least a chance, though a hazardous one. As a preliminary step, I was +released from my promise to her. + + +_Mina Harker’s Journal._ + +_30 October, evening._--They were so tired and worn out and dispirited +that there was nothing to be done till they had some rest; so I asked +them all to lie down for half an hour whilst I should enter everything +up to the moment. I feel so grateful to the man who invented the +“Traveller’s” typewriter, and to Mr. Morris for getting this one for +me. I should have felt quite astray doing the work if I had to write +with a pen.... + +It is all done; poor dear, dear Jonathan, what he must have suffered, +what must he be suffering now. He lies on the sofa hardly seeming to +breathe, and his whole body appears in collapse. His brows are knit; his +face is drawn with pain. Poor fellow, maybe he is thinking, and I can +see his face all wrinkled up with the concentration of his thoughts. Oh! +if I could only help at all.... I shall do what I can. + +I have asked Dr. Van Helsing, and he has got me all the papers that I +have not yet seen.... Whilst they are resting, I shall go over all +carefully, and perhaps I may arrive at some conclusion. I shall try to +follow the Professor’s example, and think without prejudice on the facts +before me.... + + * * * * * + +I do believe that under God’s providence I have made a discovery. I +shall get the maps and look over them.... + + * * * * * + +I am more than ever sure that I am right. My new conclusion is ready, so +I shall get our party together and read it. They can judge it; it is +well to be accurate, and every minute is precious. + + +_Mina Harker’s Memorandum._ + +(Entered in her Journal.) + +_Ground of inquiry._--Count Dracula’s problem is to get back to his own +place. + +(_a_) He must be _brought back_ by some one. This is evident; for had he +power to move himself as he wished he could go either as man, or wolf, +or bat, or in some other way. He evidently fears discovery or +interference, in the state of helplessness in which he must be--confined +as he is between dawn and sunset in his wooden box. + +(_b_) _How is he to be taken?_--Here a process of exclusions may help +us. By road, by rail, by water? + +1. _By Road._--There are endless difficulties, especially in leaving the +city. + +(_x_) There are people; and people are curious, and investigate. A hint, +a surmise, a doubt as to what might be in the box, would destroy him. + +(_y_) There are, or there may be, customs and octroi officers to pass. + +(_z_) His pursuers might follow. This is his highest fear; and in order +to prevent his being betrayed he has repelled, so far as he can, even +his victim--me! + +2. _By Rail._--There is no one in charge of the box. It would have to +take its chance of being delayed; and delay would be fatal, with enemies +on the track. True, he might escape at night; but what would he be, if +left in a strange place with no refuge that he could fly to? This is not +what he intends; and he does not mean to risk it. + +3. _By Water._--Here is the safest way, in one respect, but with most +danger in another. On the water he is powerless except at night; even +then he can only summon fog and storm and snow and his wolves. But were +he wrecked, the living water would engulf him, helpless; and he would +indeed be lost. He could have the vessel drive to land; but if it were +unfriendly land, wherein he was not free to move, his position would +still be desperate. + +We know from the record that he was on the water; so what we have to do +is to ascertain _what_ water. + +The first thing is to realise exactly what he has done as yet; we may, +then, get a light on what his later task is to be. + +_Firstly._--We must differentiate between what he did in London as part +of his general plan of action, when he was pressed for moments and had +to arrange as best he could. + +_Secondly_ we must see, as well as we can surmise it from the facts we +know of, what he has done here. + +As to the first, he evidently intended to arrive at Galatz, and sent +invoice to Varna to deceive us lest we should ascertain his means of +exit from England; his immediate and sole purpose then was to escape. +The proof of this, is the letter of instructions sent to Immanuel +Hildesheim to clear and take away the box _before sunrise_. There is +also the instruction to Petrof Skinsky. These we must only guess at; but +there must have been some letter or message, since Skinsky came to +Hildesheim. + +That, so far, his plans were successful we know. The _Czarina Catherine_ +made a phenomenally quick journey--so much so that Captain Donelson’s +suspicions were aroused; but his superstition united with his canniness +played the Count’s game for him, and he ran with his favouring wind +through fogs and all till he brought up blindfold at Galatz. That the +Count’s arrangements were well made, has been proved. Hildesheim cleared +the box, took it off, and gave it to Skinsky. Skinsky took it--and here +we lose the trail. We only know that the box is somewhere on the water, +moving along. The customs and the octroi, if there be any, have been +avoided. + +Now we come to what the Count must have done after his arrival--_on +land_, at Galatz. + +The box was given to Skinsky before sunrise. At sunrise the Count could +appear in his own form. Here, we ask why Skinsky was chosen at all to +aid in the work? In my husband’s diary, Skinsky is mentioned as dealing +with the Slovaks who trade down the river to the port; and the man’s +remark, that the murder was the work of a Slovak, showed the general +feeling against his class. The Count wanted isolation. + +My surmise is, this: that in London the Count decided to get back to his +castle by water, as the most safe and secret way. He was brought from +the castle by Szgany, and probably they delivered their cargo to Slovaks +who took the boxes to Varna, for there they were shipped for London. +Thus the Count had knowledge of the persons who could arrange this +service. When the box was on land, before sunrise or after sunset, he +came out from his box, met Skinsky and instructed him what to do as to +arranging the carriage of the box up some river. When this was done, and +he knew that all was in train, he blotted out his traces, as he thought, +by murdering his agent. + +I have examined the map and find that the river most suitable for the +Slovaks to have ascended is either the Pruth or the Sereth. I read in +the typescript that in my trance I heard cows low and water swirling +level with my ears and the creaking of wood. The Count in his box, then, +was on a river in an open boat--propelled probably either by oars or +poles, for the banks are near and it is working against stream. There +would be no such sound if floating down stream. + +Of course it may not be either the Sereth or the Pruth, but we may +possibly investigate further. Now of these two, the Pruth is the more +easily navigated, but the Sereth is, at Fundu, joined by the Bistritza +which runs up round the Borgo Pass. The loop it makes is manifestly as +close to Dracula’s castle as can be got by water. + + +_Mina Harker’s Journal--continued._ + +When I had done reading, Jonathan took me in his arms and kissed me. The +others kept shaking me by both hands, and Dr. Van Helsing said:-- + +“Our dear Madam Mina is once more our teacher. Her eyes have been where +we were blinded. Now we are on the track once again, and this time we +may succeed. Our enemy is at his most helpless; and if we can come on +him by day, on the water, our task will be over. He has a start, but he +is powerless to hasten, as he may not leave his box lest those who carry +him may suspect; for them to suspect would be to prompt them to throw +him in the stream where he perish. This he knows, and will not. Now men, +to our Council of War; for, here and now, we must plan what each and all +shall do.” + +“I shall get a steam launch and follow him,” said Lord Godalming. + +“And I, horses to follow on the bank lest by chance he land,” said Mr. +Morris. + +“Good!” said the Professor, “both good. But neither must go alone. There +must be force to overcome force if need be; the Slovak is strong and +rough, and he carries rude arms.” All the men smiled, for amongst them +they carried a small arsenal. Said Mr. Morris:-- + +“I have brought some Winchesters; they are pretty handy in a crowd, and +there may be wolves. The Count, if you remember, took some other +precautions; he made some requisitions on others that Mrs. Harker could +not quite hear or understand. We must be ready at all points.” Dr. +Seward said:-- + +“I think I had better go with Quincey. We have been accustomed to hunt +together, and we two, well armed, will be a match for whatever may come +along. You must not be alone, Art. It may be necessary to fight the +Slovaks, and a chance thrust--for I don’t suppose these fellows carry +guns--would undo all our plans. There must be no chances, this time; we +shall not rest until the Count’s head and body have been separated, and +we are sure that he cannot re-incarnate.” He looked at Jonathan as he +spoke, and Jonathan looked at me. I could see that the poor dear was +torn about in his mind. Of course he wanted to be with me; but then the +boat service would, most likely, be the one which would destroy the ... +the ... the ... Vampire. (Why did I hesitate to write the word?) He was +silent awhile, and during his silence Dr. Van Helsing spoke:-- + +“Friend Jonathan, this is to you for twice reasons. First, because you +are young and brave and can fight, and all energies may be needed at the +last; and again that it is your right to destroy him--that--which has +wrought such woe to you and yours. Be not afraid for Madam Mina; she +will be my care, if I may. I am old. My legs are not so quick to run as +once; and I am not used to ride so long or to pursue as need be, or to +fight with lethal weapons. But I can be of other service; I can fight in +other way. And I can die, if need be, as well as younger men. Now let +me say that what I would is this: while you, my Lord Godalming and +friend Jonathan go in your so swift little steamboat up the river, and +whilst John and Quincey guard the bank where perchance he might be +landed, I will take Madam Mina right into the heart of the enemy’s +country. Whilst the old fox is tied in his box, floating on the running +stream whence he cannot escape to land--where he dares not raise the lid +of his coffin-box lest his Slovak carriers should in fear leave him to +perish--we shall go in the track where Jonathan went,--from Bistritz +over the Borgo, and find our way to the Castle of Dracula. Here, Madam +Mina’s hypnotic power will surely help, and we shall find our way--all +dark and unknown otherwise--after the first sunrise when we are near +that fateful place. There is much to be done, and other places to be +made sanctify, so that that nest of vipers be obliterated.” Here +Jonathan interrupted him hotly:-- + +“Do you mean to say, Professor Van Helsing, that you would bring Mina, +in her sad case and tainted as she is with that devil’s illness, right +into the jaws of his death-trap? Not for the world! Not for Heaven or +Hell!” He became almost speechless for a minute, and then went on:-- + +“Do you know what the place is? Have you seen that awful den of hellish +infamy--with the very moonlight alive with grisly shapes, and every +speck of dust that whirls in the wind a devouring monster in embryo? +Have you felt the Vampire’s lips upon your throat?” Here he turned to +me, and as his eyes lit on my forehead he threw up his arms with a cry: +“Oh, my God, what have we done to have this terror upon us!” and he sank +down on the sofa in a collapse of misery. The Professor’s voice, as he +spoke in clear, sweet tones, which seemed to vibrate in the air, calmed +us all:-- + +“Oh, my friend, it is because I would save Madam Mina from that awful +place that I would go. God forbid that I should take her into that +place. There is work--wild work--to be done there, that her eyes may not +see. We men here, all save Jonathan, have seen with their own eyes what +is to be done before that place can be purify. Remember that we are in +terrible straits. If the Count escape us this time--and he is strong and +subtle and cunning--he may choose to sleep him for a century, and then +in time our dear one”--he took my hand--“would come to him to keep him +company, and would be as those others that you, Jonathan, saw. You have +told us of their gloating lips; you heard their ribald laugh as they +clutched the moving bag that the Count threw to them. You shudder; and +well may it be. Forgive me that I make you so much pain, but it is +necessary. My friend, is it not a dire need for the which I am giving, +possibly my life? If it were that any one went into that place to stay, +it is I who would have to go to keep them company.” + +“Do as you will,” said Jonathan, with a sob that shook him all over, “we +are in the hands of God!” + + * * * * * + +_Later._--Oh, it did me good to see the way that these brave men worked. +How can women help loving men when they are so earnest, and so true, and +so brave! And, too, it made me think of the wonderful power of money! +What can it not do when it is properly applied; and what might it do +when basely used. I felt so thankful that Lord Godalming is rich, and +that both he and Mr. Morris, who also has plenty of money, are willing +to spend it so freely. For if they did not, our little expedition could +not start, either so promptly or so well equipped, as it will within +another hour. It is not three hours since it was arranged what part each +of us was to do; and now Lord Godalming and Jonathan have a lovely steam +launch, with steam up ready to start at a moment’s notice. Dr. Seward +and Mr. Morris have half a dozen good horses, well appointed. We have +all the maps and appliances of various kinds that can be had. Professor +Van Helsing and I are to leave by the 11:40 train to-night for Veresti, +where we are to get a carriage to drive to the Borgo Pass. We are +bringing a good deal of ready money, as we are to buy a carriage and +horses. We shall drive ourselves, for we have no one whom we can trust +in the matter. The Professor knows something of a great many languages, +so we shall get on all right. We have all got arms, even for me a +large-bore revolver; Jonathan would not be happy unless I was armed like +the rest. Alas! I cannot carry one arm that the rest do; the scar on my +forehead forbids that. Dear Dr. Van Helsing comforts me by telling me +that I am fully armed as there may be wolves; the weather is getting +colder every hour, and there are snow-flurries which come and go as +warnings. + + * * * * * + +_Later._--It took all my courage to say good-bye to my darling. We may +never meet again. Courage, Mina! the Professor is looking at you keenly; +his look is a warning. There must be no tears now--unless it may be that +God will let them fall in gladness. + + +_Jonathan Harker’s Journal._ + +_October 30. Night._--I am writing this in the light from the furnace +door of the steam launch: Lord Godalming is firing up. He is an +experienced hand at the work, as he has had for years a launch of his +own on the Thames, and another on the Norfolk Broads. Regarding our +plans, we finally decided that Mina’s guess was correct, and that if any +waterway was chosen for the Count’s escape back to his Castle, the +Sereth and then the Bistritza at its junction, would be the one. We took +it, that somewhere about the 47th degree, north latitude, would be the +place chosen for the crossing the country between the river and the +Carpathians. We have no fear in running at good speed up the river at +night; there is plenty of water, and the banks are wide enough apart to +make steaming, even in the dark, easy enough. Lord Godalming tells me to +sleep for a while, as it is enough for the present for one to be on +watch. But I cannot sleep--how can I with the terrible danger hanging +over my darling, and her going out into that awful place.... My only +comfort is that we are in the hands of God. Only for that faith it would +be easier to die than to live, and so be quit of all the trouble. Mr. +Morris and Dr. Seward were off on their long ride before we started; +they are to keep up the right bank, far enough off to get on higher +lands where they can see a good stretch of river and avoid the following +of its curves. They have, for the first stages, two men to ride and lead +their spare horses--four in all, so as not to excite curiosity. When +they dismiss the men, which shall be shortly, they shall themselves look +after the horses. It may be necessary for us to join forces; if so they +can mount our whole party. One of the saddles has a movable horn, and +can be easily adapted for Mina, if required. + +It is a wild adventure we are on. Here, as we are rushing along through +the darkness, with the cold from the river seeming to rise up and strike +us; with all the mysterious voices of the night around us, it all comes +home. We seem to be drifting into unknown places and unknown ways; into +a whole world of dark and dreadful things. Godalming is shutting the +furnace door.... + + * * * * * + +_31 October._--Still hurrying along. The day has come, and Godalming is +sleeping. I am on watch. The morning is bitterly cold; the furnace heat +is grateful, though we have heavy fur coats. As yet we have passed only +a few open boats, but none of them had on board any box or package of +anything like the size of the one we seek. The men were scared every +time we turned our electric lamp on them, and fell on their knees and +prayed. + + * * * * * + +_1 November, evening._--No news all day; we have found nothing of the +kind we seek. We have now passed into the Bistritza; and if we are wrong +in our surmise our chance is gone. We have over-hauled every boat, big +and little. Early this morning, one crew took us for a Government boat, +and treated us accordingly. We saw in this a way of smoothing matters, +so at Fundu, where the Bistritza runs into the Sereth, we got a +Roumanian flag which we now fly conspicuously. With every boat which we +have over-hauled since then this trick has succeeded; we have had every +deference shown to us, and not once any objection to whatever we chose +to ask or do. Some of the Slovaks tell us that a big boat passed them, +going at more than usual speed as she had a double crew on board. This +was before they came to Fundu, so they could not tell us whether the +boat turned into the Bistritza or continued on up the Sereth. At Fundu +we could not hear of any such boat, so she must have passed there in the +night. I am feeling very sleepy; the cold is perhaps beginning to tell +upon me, and nature must have rest some time. Godalming insists that he +shall keep the first watch. God bless him for all his goodness to poor +dear Mina and me. + + * * * * * + +_2 November, morning._--It is broad daylight. That good fellow would not +wake me. He says it would have been a sin to, for I slept peacefully and +was forgetting my trouble. It seems brutally selfish to me to have slept +so long, and let him watch all night; but he was quite right. I am a new +man this morning; and, as I sit here and watch him sleeping, I can do +all that is necessary both as to minding the engine, steering, and +keeping watch. I can feel that my strength and energy are coming back to +me. I wonder where Mina is now, and Van Helsing. They should have got to +Veresti about noon on Wednesday. It would take them some time to get the +carriage and horses; so if they had started and travelled hard, they +would be about now at the Borgo Pass. God guide and help them! I am +afraid to think what may happen. If we could only go faster! but we +cannot; the engines are throbbing and doing their utmost. I wonder how +Dr. Seward and Mr. Morris are getting on. There seem to be endless +streams running down the mountains into this river, but as none of them +are very large--at present, at all events, though they are terrible +doubtless in winter and when the snow melts--the horsemen may not have +met much obstruction. I hope that before we get to Strasba we may see +them; for if by that time we have not overtaken the Count, it may be +necessary to take counsel together what to do next. + + +_Dr. Seward’s Diary._ + +_2 November._--Three days on the road. No news, and no time to write it +if there had been, for every moment is precious. We have had only the +rest needful for the horses; but we are both bearing it wonderfully. +Those adventurous days of ours are turning up useful. We must push on; +we shall never feel happy till we get the launch in sight again. + + * * * * * + +_3 November._--We heard at Fundu that the launch had gone up the +Bistritza. I wish it wasn’t so cold. There are signs of snow coming; and +if it falls heavy it will stop us. In such case we must get a sledge and +go on, Russian fashion. + + * * * * * + +_4 November._--To-day we heard of the launch having been detained by an +accident when trying to force a way up the rapids. The Slovak boats get +up all right, by aid of a rope and steering with knowledge. Some went up +only a few hours before. Godalming is an amateur fitter himself, and +evidently it was he who put the launch in trim again. Finally, they got +up the rapids all right, with local help, and are off on the chase +afresh. I fear that the boat is not any better for the accident; the +peasantry tell us that after she got upon smooth water again, she kept +stopping every now and again so long as she was in sight. We must push +on harder than ever; our help may be wanted soon. + + +_Mina Harker’s Journal._ + +_31 October._--Arrived at Veresti at noon. The Professor tells me that +this morning at dawn he could hardly hypnotise me at all, and that all I +could say was: “dark and quiet.” He is off now buying a carriage and +horses. He says that he will later on try to buy additional horses, so +that we may be able to change them on the way. We have something more +than 70 miles before us. The country is lovely, and most interesting; if +only we were under different conditions, how delightful it would be to +see it all. If Jonathan and I were driving through it alone what a +pleasure it would be. To stop and see people, and learn something of +their life, and to fill our minds and memories with all the colour and +picturesqueness of the whole wild, beautiful country and the quaint +people! But, alas!-- + + * * * * * + +_Later._--Dr. Van Helsing has returned. He has got the carriage and +horses; we are to have some dinner, and to start in an hour. The +landlady is putting us up a huge basket of provisions; it seems enough +for a company of soldiers. The Professor encourages her, and whispers to +me that it may be a week before we can get any good food again. He has +been shopping too, and has sent home such a wonderful lot of fur coats +and wraps, and all sorts of warm things. There will not be any chance of +our being cold. + + * * * * * + +We shall soon be off. I am afraid to think what may happen to us. We are +truly in the hands of God. He alone knows what may be, and I pray Him, +with all the strength of my sad and humble soul, that He will watch over +my beloved husband; that whatever may happen, Jonathan may know that I +loved him and honoured him more than I can say, and that my latest and +truest thought will be always for him. + + + + +CHAPTER XXVII + +MINA HARKER’S JOURNAL + + +_1 November._--All day long we have travelled, and at a good speed. The +horses seem to know that they are being kindly treated, for they go +willingly their full stage at best speed. We have now had so many +changes and find the same thing so constantly that we are encouraged to +think that the journey will be an easy one. Dr. Van Helsing is laconic; +he tells the farmers that he is hurrying to Bistritz, and pays them well +to make the exchange of horses. We get hot soup, or coffee, or tea; and +off we go. It is a lovely country; full of beauties of all imaginable +kinds, and the people are brave, and strong, and simple, and seem full +of nice qualities. They are _very, very_ superstitious. In the first +house where we stopped, when the woman who served us saw the scar on my +forehead, she crossed herself and put out two fingers towards me, to +keep off the evil eye. I believe they went to the trouble of putting an +extra amount of garlic into our food; and I can’t abide garlic. Ever +since then I have taken care not to take off my hat or veil, and so have +escaped their suspicions. We are travelling fast, and as we have no +driver with us to carry tales, we go ahead of scandal; but I daresay +that fear of the evil eye will follow hard behind us all the way. The +Professor seems tireless; all day he would not take any rest, though he +made me sleep for a long spell. At sunset time he hypnotised me, and he +says that I answered as usual “darkness, lapping water and creaking +wood”; so our enemy is still on the river. I am afraid to think of +Jonathan, but somehow I have now no fear for him, or for myself. I write +this whilst we wait in a farmhouse for the horses to be got ready. Dr. +Van Helsing is sleeping. Poor dear, he looks very tired and old and +grey, but his mouth is set as firmly as a conqueror’s; even in his sleep +he is instinct with resolution. When we have well started I must make +him rest whilst I drive. I shall tell him that we have days before us, +and we must not break down when most of all his strength will be +needed.... All is ready; we are off shortly. + + * * * * * + +_2 November, morning._--I was successful, and we took turns driving all +night; now the day is on us, bright though cold. There is a strange +heaviness in the air--I say heaviness for want of a better word; I mean +that it oppresses us both. It is very cold, and only our warm furs keep +us comfortable. At dawn Van Helsing hypnotised me; he says I answered +“darkness, creaking wood and roaring water,” so the river is changing as +they ascend. I do hope that my darling will not run any chance of +danger--more than need be; but we are in God’s hands. + + * * * * * + +_2 November, night._--All day long driving. The country gets wilder as +we go, and the great spurs of the Carpathians, which at Veresti seemed +so far from us and so low on the horizon, now seem to gather round us +and tower in front. We both seem in good spirits; I think we make an +effort each to cheer the other; in the doing so we cheer ourselves. Dr. +Van Helsing says that by morning we shall reach the Borgo Pass. The +houses are very few here now, and the Professor says that the last horse +we got will have to go on with us, as we may not be able to change. He +got two in addition to the two we changed, so that now we have a rude +four-in-hand. The dear horses are patient and good, and they give us no +trouble. We are not worried with other travellers, and so even I can +drive. We shall get to the Pass in daylight; we do not want to arrive +before. So we take it easy, and have each a long rest in turn. Oh, what +will to-morrow bring to us? We go to seek the place where my poor +darling suffered so much. God grant that we may be guided aright, and +that He will deign to watch over my husband and those dear to us both, +and who are in such deadly peril. As for me, I am not worthy in His +sight. Alas! I am unclean to His eyes, and shall be until He may deign +to let me stand forth in His sight as one of those who have not incurred +His wrath. + + +_Memorandum by Abraham Van Helsing._ + +_4 November._--This to my old and true friend John Seward, M.D., of +Purfleet, London, in case I may not see him. It may explain. It is +morning, and I write by a fire which all the night I have kept +alive--Madam Mina aiding me. It is cold, cold; so cold that the grey +heavy sky is full of snow, which when it falls will settle for all +winter as the ground is hardening to receive it. It seems to have +affected Madam Mina; she has been so heavy of head all day that she was +not like herself. She sleeps, and sleeps, and sleeps! She who is usual +so alert, have done literally nothing all the day; she even have lost +her appetite. She make no entry into her little diary, she who write so +faithful at every pause. Something whisper to me that all is not well. +However, to-night she is more _vif_. Her long sleep all day have refresh +and restore her, for now she is all sweet and bright as ever. At sunset +I try to hypnotise her, but alas! with no effect; the power has grown +less and less with each day, and to-night it fail me altogether. Well, +God’s will be done--whatever it may be, and whithersoever it may lead! + +Now to the historical, for as Madam Mina write not in her stenography, I +must, in my cumbrous old fashion, that so each day of us may not go +unrecorded. + +We got to the Borgo Pass just after sunrise yesterday morning. When I +saw the signs of the dawn I got ready for the hypnotism. We stopped our +carriage, and got down so that there might be no disturbance. I made a +couch with furs, and Madam Mina, lying down, yield herself as usual, but +more slow and more short time than ever, to the hypnotic sleep. As +before, came the answer: “darkness and the swirling of water.” Then she +woke, bright and radiant and we go on our way and soon reach the Pass. +At this time and place, she become all on fire with zeal; some new +guiding power be in her manifested, for she point to a road and say:-- + +“This is the way.” + +“How know you it?” I ask. + +“Of course I know it,” she answer, and with a pause, add: “Have not my +Jonathan travelled it and wrote of his travel?” + +At first I think somewhat strange, but soon I see that there be only one +such by-road. It is used but little, and very different from the coach +road from the Bukovina to Bistritz, which is more wide and hard, and +more of use. + +So we came down this road; when we meet other ways--not always were we +sure that they were roads at all, for they be neglect and light snow +have fallen--the horses know and they only. I give rein to them, and +they go on so patient. By-and-by we find all the things which Jonathan +have note in that wonderful diary of him. Then we go on for long, long +hours and hours. At the first, I tell Madam Mina to sleep; she try, and +she succeed. She sleep all the time; till at the last, I feel myself to +suspicious grow, and attempt to wake her. But she sleep on, and I may +not wake her though I try. I do not wish to try too hard lest I harm +her; for I know that she have suffer much, and sleep at times be +all-in-all to her. I think I drowse myself, for all of sudden I feel +guilt, as though I have done something; I find myself bolt up, with the +reins in my hand, and the good horses go along jog, jog, just as ever. I +look down and find Madam Mina still sleep. It is now not far off sunset +time, and over the snow the light of the sun flow in big yellow flood, +so that we throw great long shadow on where the mountain rise so steep. +For we are going up, and up; and all is oh! so wild and rocky, as though +it were the end of the world. + +Then I arouse Madam Mina. This time she wake with not much trouble, and +then I try to put her to hypnotic sleep. But she sleep not, being as +though I were not. Still I try and try, till all at once I find her and +myself in dark; so I look round, and find that the sun have gone down. +Madam Mina laugh, and I turn and look at her. She is now quite awake, +and look so well as I never saw her since that night at Carfax when we +first enter the Count’s house. I am amaze, and not at ease then; but she +is so bright and tender and thoughtful for me that I forget all fear. I +light a fire, for we have brought supply of wood with us, and she +prepare food while I undo the horses and set them, tethered in shelter, +to feed. Then when I return to the fire she have my supper ready. I go +to help her; but she smile, and tell me that she have eat already--that +she was so hungry that she would not wait. I like it not, and I have +grave doubts; but I fear to affright her, and so I am silent of it. She +help me and I eat alone; and then we wrap in fur and lie beside the +fire, and I tell her to sleep while I watch. But presently I forget all +of watching; and when I sudden remember that I watch, I find her lying +quiet, but awake, and looking at me with so bright eyes. Once, twice +more the same occur, and I get much sleep till before morning. When I +wake I try to hypnotise her; but alas! though she shut her eyes +obedient, she may not sleep. The sun rise up, and up, and up; and then +sleep come to her too late, but so heavy that she will not wake. I have +to lift her up, and place her sleeping in the carriage when I have +harnessed the horses and made all ready. Madam still sleep, and she look +in her sleep more healthy and more redder than before. And I like it +not. And I am afraid, afraid, afraid!--I am afraid of all things--even +to think but I must go on my way. The stake we play for is life and +death, or more than these, and we must not flinch. + + * * * * * + +_5 November, morning._--Let me be accurate in everything, for though you +and I have seen some strange things together, you may at the first think +that I, Van Helsing, am mad--that the many horrors and the so long +strain on nerves has at the last turn my brain. + +All yesterday we travel, ever getting closer to the mountains, and +moving into a more and more wild and desert land. There are great, +frowning precipices and much falling water, and Nature seem to have held +sometime her carnival. Madam Mina still sleep and sleep; and though I +did have hunger and appeased it, I could not waken her--even for food. I +began to fear that the fatal spell of the place was upon her, tainted as +she is with that Vampire baptism. “Well,” said I to myself, “if it be +that she sleep all the day, it shall also be that I do not sleep at +night.” As we travel on the rough road, for a road of an ancient and +imperfect kind there was, I held down my head and slept. Again I waked +with a sense of guilt and of time passed, and found Madam Mina still +sleeping, and the sun low down. But all was indeed changed; the frowning +mountains seemed further away, and we were near the top of a +steep-rising hill, on summit of which was such a castle as Jonathan tell +of in his diary. At once I exulted and feared; for now, for good or ill, +the end was near. + +I woke Madam Mina, and again tried to hypnotise her; but alas! +unavailing till too late. Then, ere the great dark came upon us--for +even after down-sun the heavens reflected the gone sun on the snow, and +all was for a time in a great twilight--I took out the horses and fed +them in what shelter I could. Then I make a fire; and near it I make +Madam Mina, now awake and more charming than ever, sit comfortable amid +her rugs. I got ready food: but she would not eat, simply saying that +she had not hunger. I did not press her, knowing her unavailingness. But +I myself eat, for I must needs now be strong for all. Then, with the +fear on me of what might be, I drew a ring so big for her comfort, round +where Madam Mina sat; and over the ring I passed some of the wafer, and +I broke it fine so that all was well guarded. She sat still all the +time--so still as one dead; and she grew whiter and ever whiter till the +snow was not more pale; and no word she said. But when I drew near, she +clung to me, and I could know that the poor soul shook her from head to +feet with a tremor that was pain to feel. I said to her presently, when +she had grown more quiet:-- + +“Will you not come over to the fire?” for I wished to make a test of +what she could. She rose obedient, but when she have made a step she +stopped, and stood as one stricken. + +“Why not go on?” I asked. She shook her head, and, coming back, sat +down in her place. Then, looking at me with open eyes, as of one waked +from sleep, she said simply:-- + +“I cannot!” and remained silent. I rejoiced, for I knew that what she +could not, none of those that we dreaded could. Though there might be +danger to her body, yet her soul was safe! + +Presently the horses began to scream, and tore at their tethers till I +came to them and quieted them. When they did feel my hands on them, they +whinnied low as in joy, and licked at my hands and were quiet for a +time. Many times through the night did I come to them, till it arrive to +the cold hour when all nature is at lowest; and every time my coming was +with quiet of them. In the cold hour the fire began to die, and I was +about stepping forth to replenish it, for now the snow came in flying +sweeps and with it a chill mist. Even in the dark there was a light of +some kind, as there ever is over snow; and it seemed as though the +snow-flurries and the wreaths of mist took shape as of women with +trailing garments. All was in dead, grim silence only that the horses +whinnied and cowered, as if in terror of the worst. I began to +fear--horrible fears; but then came to me the sense of safety in that +ring wherein I stood. I began, too, to think that my imaginings were of +the night, and the gloom, and the unrest that I have gone through, and +all the terrible anxiety. It was as though my memories of all Jonathan’s +horrid experience were befooling me; for the snow flakes and the mist +began to wheel and circle round, till I could get as though a shadowy +glimpse of those women that would have kissed him. And then the horses +cowered lower and lower, and moaned in terror as men do in pain. Even +the madness of fright was not to them, so that they could break away. I +feared for my dear Madam Mina when these weird figures drew near and +circled round. I looked at her, but she sat calm, and smiled at me; when +I would have stepped to the fire to replenish it, she caught me and held +me back, and whispered, like a voice that one hears in a dream, so low +it was:-- + +“No! No! Do not go without. Here you are safe!” I turned to her, and +looking in her eyes, said:-- + +“But you? It is for you that I fear!” whereat she laughed--a laugh, low +and unreal, and said:-- + +“Fear for _me_! Why fear for me? None safer in all the world from them +than I am,” and as I wondered at the meaning of her words, a puff of +wind made the flame leap up, and I see the red scar on her forehead. +Then, alas! I knew. Did I not, I would soon have learned, for the +wheeling figures of mist and snow came closer, but keeping ever without +the Holy circle. Then they began to materialise till--if God have not +take away my reason, for I saw it through my eyes--there were before me +in actual flesh the same three women that Jonathan saw in the room, when +they would have kissed his throat. I knew the swaying round forms, the +bright hard eyes, the white teeth, the ruddy colour, the voluptuous +lips. They smiled ever at poor dear Madam Mina; and as their laugh came +through the silence of the night, they twined their arms and pointed to +her, and said in those so sweet tingling tones that Jonathan said were +of the intolerable sweetness of the water-glasses:-- + +“Come, sister. Come to us. Come! Come!” In fear I turned to my poor +Madam Mina, and my heart with gladness leapt like flame; for oh! the +terror in her sweet eyes, the repulsion, the horror, told a story to my +heart that was all of hope. God be thanked she was not, yet, of them. I +seized some of the firewood which was by me, and holding out some of the +Wafer, advanced on them towards the fire. They drew back before me, and +laughed their low horrid laugh. I fed the fire, and feared them not; for +I knew that we were safe within our protections. They could not +approach, me, whilst so armed, nor Madam Mina whilst she remained within +the ring, which she could not leave no more than they could enter. The +horses had ceased to moan, and lay still on the ground; the snow fell on +them softly, and they grew whiter. I knew that there was for the poor +beasts no more of terror. + +And so we remained till the red of the dawn to fall through the +snow-gloom. I was desolate and afraid, and full of woe and terror; but +when that beautiful sun began to climb the horizon life was to me again. +At the first coming of the dawn the horrid figures melted in the +whirling mist and snow; the wreaths of transparent gloom moved away +towards the castle, and were lost. + +Instinctively, with the dawn coming, I turned to Madam Mina, intending +to hypnotise her; but she lay in a deep and sudden sleep, from which I +could not wake her. I tried to hypnotise through her sleep, but she made +no response, none at all; and the day broke. I fear yet to stir. I have +made my fire and have seen the horses, they are all dead. To-day I have +much to do here, and I keep waiting till the sun is up high; for there +may be places where I must go, where that sunlight, though snow and mist +obscure it, will be to me a safety. + +I will strengthen me with breakfast, and then I will to my terrible +work. Madam Mina still sleeps; and, God be thanked! she is calm in her +sleep.... + + +_Jonathan Harker’s Journal._ + +_4 November, evening._--The accident to the launch has been a terrible +thing for us. Only for it we should have overtaken the boat long ago; +and by now my dear Mina would have been free. I fear to think of her, +off on the wolds near that horrid place. We have got horses, and we +follow on the track. I note this whilst Godalming is getting ready. We +have our arms. The Szgany must look out if they mean fight. Oh, if only +Morris and Seward were with us. We must only hope! If I write no more +Good-bye, Mina! God bless and keep you. + + +_Dr. Seward’s Diary._ + +_5 November._--With the dawn we saw the body of Szgany before us dashing +away from the river with their leiter-wagon. They surrounded it in a +cluster, and hurried along as though beset. The snow is falling lightly +and there is a strange excitement in the air. It may be our own +feelings, but the depression is strange. Far off I hear the howling of +wolves; the snow brings them down from the mountains, and there are +dangers to all of us, and from all sides. The horses are nearly ready, +and we are soon off. We ride to death of some one. God alone knows who, +or where, or what, or when, or how it may be.... + + +_Dr. Van Helsing’s Memorandum._ + +_5 November, afternoon._--I am at least sane. Thank God for that mercy +at all events, though the proving it has been dreadful. When I left +Madam Mina sleeping within the Holy circle, I took my way to the castle. +The blacksmith hammer which I took in the carriage from Veresti was +useful; though the doors were all open I broke them off the rusty +hinges, lest some ill-intent or ill-chance should close them, so that +being entered I might not get out. Jonathan’s bitter experience served +me here. By memory of his diary I found my way to the old chapel, for I +knew that here my work lay. The air was oppressive; it seemed as if +there was some sulphurous fume, which at times made me dizzy. Either +there was a roaring in my ears or I heard afar off the howl of wolves. +Then I bethought me of my dear Madam Mina, and I was in terrible plight. +The dilemma had me between his horns. + +Her, I had not dare to take into this place, but left safe from the +Vampire in that Holy circle; and yet even there would be the wolf! I +resolve me that my work lay here, and that as to the wolves we must +submit, if it were God’s will. At any rate it was only death and +freedom beyond. So did I choose for her. Had it but been for myself the +choice had been easy, the maw of the wolf were better to rest in than +the grave of the Vampire! So I make my choice to go on with my work. + +I knew that there were at least three graves to find--graves that are +inhabit; so I search, and search, and I find one of them. She lay in her +Vampire sleep, so full of life and voluptuous beauty that I shudder as +though I have come to do murder. Ah, I doubt not that in old time, when +such things were, many a man who set forth to do such a task as mine, +found at the last his heart fail him, and then his nerve. So he delay, +and delay, and delay, till the mere beauty and the fascination of the +wanton Un-Dead have hypnotise him; and he remain on and on, till sunset +come, and the Vampire sleep be over. Then the beautiful eyes of the fair +woman open and look love, and the voluptuous mouth present to a +kiss--and man is weak. And there remain one more victim in the Vampire +fold; one more to swell the grim and grisly ranks of the Un-Dead!... + +There is some fascination, surely, when I am moved by the mere presence +of such an one, even lying as she lay in a tomb fretted with age and +heavy with the dust of centuries, though there be that horrid odour such +as the lairs of the Count have had. Yes, I was moved--I, Van Helsing, +with all my purpose and with my motive for hate--I was moved to a +yearning for delay which seemed to paralyse my faculties and to clog my +very soul. It may have been that the need of natural sleep, and the +strange oppression of the air were beginning to overcome me. Certain it +was that I was lapsing into sleep, the open-eyed sleep of one who yields +to a sweet fascination, when there came through the snow-stilled air a +long, low wail, so full of woe and pity that it woke me like the sound +of a clarion. For it was the voice of my dear Madam Mina that I heard. + +Then I braced myself again to my horrid task, and found by wrenching +away tomb-tops one other of the sisters, the other dark one. I dared not +pause to look on her as I had on her sister, lest once more I should +begin to be enthrall; but I go on searching until, presently, I find in +a high great tomb as if made to one much beloved that other fair sister +which, like Jonathan I had seen to gather herself out of the atoms of +the mist. She was so fair to look on, so radiantly beautiful, so +exquisitely voluptuous, that the very instinct of man in me, which calls +some of my sex to love and to protect one of hers, made my head whirl +with new emotion. But God be thanked, that soul-wail of my dear Madam +Mina had not died out of my ears; and, before the spell could be wrought +further upon me, I had nerved myself to my wild work. By this time I had +searched all the tombs in the chapel, so far as I could tell; and as +there had been only three of these Un-Dead phantoms around us in the +night, I took it that there were no more of active Un-Dead existent. +There was one great tomb more lordly than all the rest; huge it was, and +nobly proportioned. On it was but one word + + DRACULA. + +This then was the Un-Dead home of the King-Vampire, to whom so many more +were due. Its emptiness spoke eloquent to make certain what I knew. +Before I began to restore these women to their dead selves through my +awful work, I laid in Dracula’s tomb some of the Wafer, and so banished +him from it, Un-Dead, for ever. + +Then began my terrible task, and I dreaded it. Had it been but one, it +had been easy, comparative. But three! To begin twice more after I had +been through a deed of horror; for if it was terrible with the sweet +Miss Lucy, what would it not be with these strange ones who had survived +through centuries, and who had been strengthened by the passing of the +years; who would, if they could, have fought for their foul lives.... + +Oh, my friend John, but it was butcher work; had I not been nerved by +thoughts of other dead, and of the living over whom hung such a pall of +fear, I could not have gone on. I tremble and tremble even yet, though +till all was over, God be thanked, my nerve did stand. Had I not seen +the repose in the first place, and the gladness that stole over it just +ere the final dissolution came, as realisation that the soul had been +won, I could not have gone further with my butchery. I could not have +endured the horrid screeching as the stake drove home; the plunging of +writhing form, and lips of bloody foam. I should have fled in terror and +left my work undone. But it is over! And the poor souls, I can pity them +now and weep, as I think of them placid each in her full sleep of death +for a short moment ere fading. For, friend John, hardly had my knife +severed the head of each, before the whole body began to melt away and +crumble in to its native dust, as though the death that should have come +centuries agone had at last assert himself and say at once and loud “I +am here!” + +Before I left the castle I so fixed its entrances that never more can +the Count enter there Un-Dead. + +When I stepped into the circle where Madam Mina slept, she woke from her +sleep, and, seeing, me, cried out in pain that I had endured too much. + +“Come!” she said, “come away from this awful place! Let us go to meet my +husband who is, I know, coming towards us.” She was looking thin and +pale and weak; but her eyes were pure and glowed with fervour. I was +glad to see her paleness and her illness, for my mind was full of the +fresh horror of that ruddy vampire sleep. + +And so with trust and hope, and yet full of fear, we go eastward to meet +our friends--and _him_--whom Madam Mina tell me that she _know_ are +coming to meet us. + + +_Mina Harker’s Journal._ + +_6 November._--It was late in the afternoon when the Professor and I +took our way towards the east whence I knew Jonathan was coming. We did +not go fast, though the way was steeply downhill, for we had to take +heavy rugs and wraps with us; we dared not face the possibility of being +left without warmth in the cold and the snow. We had to take some of our +provisions, too, for we were in a perfect desolation, and, so far as we +could see through the snowfall, there was not even the sign of +habitation. When we had gone about a mile, I was tired with the heavy +walking and sat down to rest. Then we looked back and saw where the +clear line of Dracula’s castle cut the sky; for we were so deep under +the hill whereon it was set that the angle of perspective of the +Carpathian mountains was far below it. We saw it in all its grandeur, +perched a thousand feet on the summit of a sheer precipice, and with +seemingly a great gap between it and the steep of the adjacent mountain +on any side. There was something wild and uncanny about the place. We +could hear the distant howling of wolves. They were far off, but the +sound, even though coming muffled through the deadening snowfall, was +full of terror. I knew from the way Dr. Van Helsing was searching about +that he was trying to seek some strategic point, where we would be less +exposed in case of attack. The rough roadway still led downwards; we +could trace it through the drifted snow. + +In a little while the Professor signalled to me, so I got up and joined +him. He had found a wonderful spot, a sort of natural hollow in a rock, +with an entrance like a doorway between two boulders. He took me by the +hand and drew me in: “See!” he said, “here you will be in shelter; and +if the wolves do come I can meet them one by one.” He brought in our +furs, and made a snug nest for me, and got out some provisions and +forced them upon me. But I could not eat; to even try to do so was +repulsive to me, and, much as I would have liked to please him, I could +not bring myself to the attempt. He looked very sad, but did not +reproach me. Taking his field-glasses from the case, he stood on the top +of the rock, and began to search the horizon. Suddenly he called out:-- + +“Look! Madam Mina, look! look!” I sprang up and stood beside him on the +rock; he handed me his glasses and pointed. The snow was now falling +more heavily, and swirled about fiercely, for a high wind was beginning +to blow. However, there were times when there were pauses between the +snow flurries and I could see a long way round. From the height where we +were it was possible to see a great distance; and far off, beyond the +white waste of snow, I could see the river lying like a black ribbon in +kinks and curls as it wound its way. Straight in front of us and not far +off--in fact, so near that I wondered we had not noticed before--came a +group of mounted men hurrying along. In the midst of them was a cart, a +long leiter-wagon which swept from side to side, like a dog’s tail +wagging, with each stern inequality of the road. Outlined against the +snow as they were, I could see from the men’s clothes that they were +peasants or gypsies of some kind. + +On the cart was a great square chest. My heart leaped as I saw it, for I +felt that the end was coming. The evening was now drawing close, and +well I knew that at sunset the Thing, which was till then imprisoned +there, would take new freedom and could in any of many forms elude all +pursuit. In fear I turned to the Professor; to my consternation, +however, he was not there. An instant later, I saw him below me. Round +the rock he had drawn a circle, such as we had found shelter in last +night. When he had completed it he stood beside me again, saying:-- + +“At least you shall be safe here from _him_!” He took the glasses from +me, and at the next lull of the snow swept the whole space below us. +“See,” he said, “they come quickly; they are flogging the horses, and +galloping as hard as they can.” He paused and went on in a hollow +voice:-- + +“They are racing for the sunset. We may be too late. God’s will be +done!” Down came another blinding rush of driving snow, and the whole +landscape was blotted out. It soon passed, however, and once more his +glasses were fixed on the plain. Then came a sudden cry:-- + +“Look! Look! Look! See, two horsemen follow fast, coming up from the +south. It must be Quincey and John. Take the glass. Look before the snow +blots it all out!” I took it and looked. The two men might be Dr. Seward +and Mr. Morris. I knew at all events that neither of them was Jonathan. +At the same time I _knew_ that Jonathan was not far off; looking around +I saw on the north side of the coming party two other men, riding at +break-neck speed. One of them I knew was Jonathan, and the other I took, +of course, to be Lord Godalming. They, too, were pursuing the party with +the cart. When I told the Professor he shouted in glee like a schoolboy, +and, after looking intently till a snow fall made sight impossible, he +laid his Winchester rifle ready for use against the boulder at the +opening of our shelter. “They are all converging,” he said. “When the +time comes we shall have gypsies on all sides.” I got out my revolver +ready to hand, for whilst we were speaking the howling of wolves came +louder and closer. When the snow storm abated a moment we looked again. +It was strange to see the snow falling in such heavy flakes close to us, +and beyond, the sun shining more and more brightly as it sank down +towards the far mountain tops. Sweeping the glass all around us I could +see here and there dots moving singly and in twos and threes and larger +numbers--the wolves were gathering for their prey. + +Every instant seemed an age whilst we waited. The wind came now in +fierce bursts, and the snow was driven with fury as it swept upon us in +circling eddies. At times we could not see an arm’s length before us; +but at others, as the hollow-sounding wind swept by us, it seemed to +clear the air-space around us so that we could see afar off. We had of +late been so accustomed to watch for sunrise and sunset, that we knew +with fair accuracy when it would be; and we knew that before long the +sun would set. It was hard to believe that by our watches it was less +than an hour that we waited in that rocky shelter before the various +bodies began to converge close upon us. The wind came now with fiercer +and more bitter sweeps, and more steadily from the north. It seemingly +had driven the snow clouds from us, for, with only occasional bursts, +the snow fell. We could distinguish clearly the individuals of each +party, the pursued and the pursuers. Strangely enough those pursued did +not seem to realise, or at least to care, that they were pursued; they +seemed, however, to hasten with redoubled speed as the sun dropped lower +and lower on the mountain tops. + +Closer and closer they drew. The Professor and I crouched down behind +our rock, and held our weapons ready; I could see that he was determined +that they should not pass. One and all were quite unaware of our +presence. + +All at once two voices shouted out to: “Halt!” One was my Jonathan’s, +raised in a high key of passion; the other Mr. Morris’ strong resolute +tone of quiet command. The gypsies may not have known the language, but +there was no mistaking the tone, in whatever tongue the words were +spoken. Instinctively they reined in, and at the instant Lord Godalming +and Jonathan dashed up at one side and Dr. Seward and Mr. Morris on the +other. The leader of the gypsies, a splendid-looking fellow who sat his +horse like a centaur, waved them back, and in a fierce voice gave to his +companions some word to proceed. They lashed the horses which sprang +forward; but the four men raised their Winchester rifles, and in an +unmistakable way commanded them to stop. At the same moment Dr. Van +Helsing and I rose behind the rock and pointed our weapons at them. +Seeing that they were surrounded the men tightened their reins and drew +up. The leader turned to them and gave a word at which every man of the +gypsy party drew what weapon he carried, knife or pistol, and held +himself in readiness to attack. Issue was joined in an instant. + +The leader, with a quick movement of his rein, threw his horse out in +front, and pointing first to the sun--now close down on the hill +tops--and then to the castle, said something which I did not understand. +For answer, all four men of our party threw themselves from their horses +and dashed towards the cart. I should have felt terrible fear at seeing +Jonathan in such danger, but that the ardour of battle must have been +upon me as well as the rest of them; I felt no fear, but only a wild, +surging desire to do something. Seeing the quick movement of our +parties, the leader of the gypsies gave a command; his men instantly +formed round the cart in a sort of undisciplined endeavour, each one +shouldering and pushing the other in his eagerness to carry out the +order. + +In the midst of this I could see that Jonathan on one side of the ring +of men, and Quincey on the other, were forcing a way to the cart; it was +evident that they were bent on finishing their task before the sun +should set. Nothing seemed to stop or even to hinder them. Neither the +levelled weapons nor the flashing knives of the gypsies in front, nor +the howling of the wolves behind, appeared to even attract their +attention. Jonathan’s impetuosity, and the manifest singleness of his +purpose, seemed to overawe those in front of him; instinctively they +cowered, aside and let him pass. In an instant he had jumped upon the +cart, and, with a strength which seemed incredible, raised the great +box, and flung it over the wheel to the ground. In the meantime, Mr. +Morris had had to use force to pass through his side of the ring of +Szgany. All the time I had been breathlessly watching Jonathan I had, +with the tail of my eye, seen him pressing desperately forward, and had +seen the knives of the gypsies flash as he won a way through them, and +they cut at him. He had parried with his great bowie knife, and at first +I thought that he too had come through in safety; but as he sprang +beside Jonathan, who had by now jumped from the cart, I could see that +with his left hand he was clutching at his side, and that the blood was +spurting through his fingers. He did not delay notwithstanding this, for +as Jonathan, with desperate energy, attacked one end of the chest, +attempting to prize off the lid with his great Kukri knife, he attacked +the other frantically with his bowie. Under the efforts of both men the +lid began to yield; the nails drew with a quick screeching sound, and +the top of the box was thrown back. + +By this time the gypsies, seeing themselves covered by the Winchesters, +and at the mercy of Lord Godalming and Dr. Seward, had given in and made +no resistance. The sun was almost down on the mountain tops, and the +shadows of the whole group fell long upon the snow. I saw the Count +lying within the box upon the earth, some of which the rude falling from +the cart had scattered over him. He was deathly pale, just like a waxen +image, and the red eyes glared with the horrible vindictive look which I +knew too well. + +As I looked, the eyes saw the sinking sun, and the look of hate in them +turned to triumph. + +But, on the instant, came the sweep and flash of Jonathan’s great knife. +I shrieked as I saw it shear through the throat; whilst at the same +moment Mr. Morris’s bowie knife plunged into the heart. + +It was like a miracle; but before our very eyes, and almost in the +drawing of a breath, the whole body crumbled into dust and passed from +our sight. + +I shall be glad as long as I live that even in that moment of final +dissolution, there was in the face a look of peace, such as I never +could have imagined might have rested there. + +The Castle of Dracula now stood out against the red sky, and every stone +of its broken battlements was articulated against the light of the +setting sun. + +The gypsies, taking us as in some way the cause of the extraordinary +disappearance of the dead man, turned, without a word, and rode away as +if for their lives. Those who were unmounted jumped upon the +leiter-wagon and shouted to the horsemen not to desert them. The wolves, +which had withdrawn to a safe distance, followed in their wake, leaving +us alone. + +Mr. Morris, who had sunk to the ground, leaned on his elbow, holding his +hand pressed to his side; the blood still gushed through his fingers. I +flew to him, for the Holy circle did not now keep me back; so did the +two doctors. Jonathan knelt behind him and the wounded man laid back his +head on his shoulder. With a sigh he took, with a feeble effort, my hand +in that of his own which was unstained. He must have seen the anguish of +my heart in my face, for he smiled at me and said:-- + +“I am only too happy to have been of any service! Oh, God!” he cried +suddenly, struggling up to a sitting posture and pointing to me, “It was +worth for this to die! Look! look!” + +The sun was now right down upon the mountain top, and the red gleams +fell upon my face, so that it was bathed in rosy light. With one impulse +the men sank on their knees and a deep and earnest “Amen” broke from all +as their eyes followed the pointing of his finger. The dying man +spoke:-- + +“Now God be thanked that all has not been in vain! See! the snow is not +more stainless than her forehead! The curse has passed away!” + +And, to our bitter grief, with a smile and in silence, he died, a +gallant gentleman. + + + + + NOTE + + +Seven years ago we all went through the flames; and the happiness of +some of us since then is, we think, well worth the pain we endured. It +is an added joy to Mina and to me that our boy’s birthday is the same +day as that on which Quincey Morris died. His mother holds, I know, the +secret belief that some of our brave friend’s spirit has passed into +him. His bundle of names links all our little band of men together; but +we call him Quincey. + +In the summer of this year we made a journey to Transylvania, and went +over the old ground which was, and is, to us so full of vivid and +terrible memories. It was almost impossible to believe that the things +which we had seen with our own eyes and heard with our own ears were +living truths. Every trace of all that had been was blotted out. The +castle stood as before, reared high above a waste of desolation. + +When we got home we were talking of the old time--which we could all +look back on without despair, for Godalming and Seward are both happily +married. I took the papers from the safe where they had been ever since +our return so long ago. We were struck with the fact, that in all the +mass of material of which the record is composed, there is hardly one +authentic document; nothing but a mass of typewriting, except the later +note-books of Mina and Seward and myself, and Van Helsing’s memorandum. +We could hardly ask any one, even did we wish to, to accept these as +proofs of so wild a story. Van Helsing summed it all up as he said, with +our boy on his knee:-- + +“We want no proofs; we ask none to believe us! This boy will some day +know what a brave and gallant woman his mother is. Already he knows her +sweetness and loving care; later on he will understand how some men so +loved her, that they did dare much for her sake.” + +JONATHAN HARKER. + + THE END + + * * * * * + + _There’s More to Follow!_ + + More stories of the sort you like; more, probably, by the author of + this one; more than 500 titles all told by writers of world-wide + reputation, in the Authors’ Alphabetical List which you will find + on the _reverse side_ of the wrapper of this book. Look it over + before you lay it aside. There are books here you are sure to + want--some, possibly, that you have _always_ wanted. + + It is a _selected_ list; every book in it has achieved a certain + measure of _success_. + + The Grosset & Dunlap list is not only the greatest Index of Good + Fiction available, it represents in addition a generally accepted + Standard of Value. It will pay you to + + _Look on the Other Side of the Wrapper!_ + + _In case the wrapper is lost write to the publishers for a complete + catalog_ + + * * * * * + +DETECTIVE STORIES BY J. S. FLETCHER + +May be had wherever books are sold. Ask for Grosset & Dunlap’s list + + +THE SECRET OF THE BARBICAN + +THE ANNEXATION SOCIETY + +THE WOLVES AND THE LAMB + +GREEN INK + +THE KING versus WARGRAVE + +THE LOST MR. LINTHWAITE + +THE MILL OF MANY WINDOWS + +THE HEAVEN-KISSED HILL + +THE MIDDLE TEMPLE MURDER + +RAVENSDENE COURT + +THE RAYNER-SLADE AMALGAMATION + +THE SAFETY PIN + +THE SECRET WAY + +THE VALLEY OF HEADSTRONG MEN + +_Ask for Complete free list of G. & D. Popular Copyrighted Fiction_ + +GROSSET & DUNLAP, _Publishers_, NEW YORK + + + + diff --git a/chapters/pg345_cleaned_100_lines.txt b/chapters/pg345_cleaned_100_lines.txt new file mode 100644 index 00000000..e77ca626 --- /dev/null +++ b/chapters/pg345_cleaned_100_lines.txt @@ -0,0 +1,100 @@ + + + + + DRACULA + + _by_ + + Bram Stoker + + [Illustration: colophon] + + NEW YORK + + GROSSET & DUNLAP + + _Publishers_ + + Copyright, 1897, in the United States of America, according + to Act of Congress, by Bram Stoker + + [_All rights reserved._] + + PRINTED IN THE UNITED STATES + AT + THE COUNTRY LIFE PRESS, GARDEN CITY, N.Y. + + + + + TO + + MY DEAR FRIEND + + HOMMY-BEG + + + + +Contents + +CHAPTER I. Jonathan Harker’s Journal +CHAPTER II. Jonathan Harker’s Journal +CHAPTER III. Jonathan Harker’s Journal +CHAPTER IV. Jonathan Harker’s Journal +CHAPTER V. Letters—Lucy and Mina +CHAPTER VI. Mina Murray’s Journal +CHAPTER VII. Cutting from “The Dailygraph,” 8 August +CHAPTER VIII. Mina Murray’s Journal +CHAPTER IX. Mina Murray’s Journal +CHAPTER X. Mina Murray’s Journal +CHAPTER XI. Lucy Westenra’s Diary +CHAPTER XII. Dr. Seward’s Diary +CHAPTER XIII. Dr. Seward’s Diary +CHAPTER XIV. Mina Harker’s Journal +CHAPTER XV. Dr. Seward’s Diary +CHAPTER XVI. Dr. Seward’s Diary +CHAPTER XVII. Dr. Seward’s Diary +CHAPTER XVIII. Dr. Seward’s Diary +CHAPTER XIX. Jonathan Harker’s Journal +CHAPTER XX. Jonathan Harker’s Journal +CHAPTER XXI. Dr. Seward’s Diary +CHAPTER XXII. Jonathan Harker’s Journal +CHAPTER XXIII. Dr. Seward’s Diary +CHAPTER XXIV. Dr. Seward’s Phonograph Diary, spoken by Van Helsing +CHAPTER XXV. Dr. Seward’s Diary +CHAPTER XXVI. Dr. Seward’s Diary +CHAPTER XXVII. Mina Harker’s Journal + + + + +How these papers have been placed in sequence will be made manifest in +the reading of them. All needless matters have been eliminated, so that +a history almost at variance with the possibilities of later-day belief +may stand forth as simple fact. There is throughout no statement of +past things wherein memory may err, for all the records chosen are +exactly contemporary, given from the standpoints and within the range +of knowledge of those who made them. + + + + +DRACULA + + + + +CHAPTER I + +JONATHAN HARKER’S JOURNAL + +(_Kept in shorthand._) + + +_3 May. Bistritz._--Left Munich at 8:35 P. M., on 1st May, arriving at +Vienna early next morning; should have arrived at 6:46, but train was an +hour late. Buda-Pesth seems a wonderful place, from the glimpse which I +got of it from the train and the little I could walk through the +streets. I feared to go very far from the station, as we had arrived diff --git a/chapters/pg345_cleaned_10_lines.txt b/chapters/pg345_cleaned_10_lines.txt new file mode 100644 index 00000000..7faf2813 --- /dev/null +++ b/chapters/pg345_cleaned_10_lines.txt @@ -0,0 +1,10 @@ + + + + + DRACULA + + _by_ + + Bram Stoker + diff --git a/chapters/pg345_replaced.txt b/chapters/pg345_replaced.txt new file mode 100644 index 00000000..39feb35e --- /dev/null +++ b/chapters/pg345_replaced.txt @@ -0,0 +1,15288 @@ + + + + + DRACULA + + _by_ + + Bram Stoker + + [Illustration: colophon] + + NEW YORK + + GROSSET & DUNLAP + + _Publishers_ + + Copyright, 1897, in the United States of America, according + to Act of Congress, by Bram Stoker + + [_All rights reserved._] + + PRINTED IN THE UNITED STATES + AT + THE COUNTRY LIFE PRESS, GARDEN CITY, N.Y. + + + + + TO + + MY DEAR FRIEND + + HOMMY-BEG + + + + +Contents + +CHAPTER I. Thomas Harker’s Journal +CHAPTER II. Thomas Harker’s Journal +CHAPTER III. Thomas Harker’s Journal +CHAPTER IV. Thomas Harker’s Journal +CHAPTER V. Letters—Lucy and Mina +CHAPTER VI. Mina Murray’s Journal +CHAPTER VII. Cutting from “The Dailygraph,” 8 August +CHAPTER VIII. Mina Murray’s Journal +CHAPTER IX. Mina Murray’s Journal +CHAPTER X. Mina Murray’s Journal +CHAPTER XI. Lucy Westenra’s Diary +CHAPTER XII. Dr. Seward’s Diary +CHAPTER XIII. Dr. Seward’s Diary +CHAPTER XIV. Mina Harker’s Journal +CHAPTER XV. Dr. Seward’s Diary +CHAPTER XVI. Dr. Seward’s Diary +CHAPTER XVII. Dr. Seward’s Diary +CHAPTER XVIII. Dr. Seward’s Diary +CHAPTER XIX. Thomas Harker’s Journal +CHAPTER XX. Thomas Harker’s Journal +CHAPTER XXI. Dr. Seward’s Diary +CHAPTER XXII. Thomas Harker’s Journal +CHAPTER XXIII. Dr. Seward’s Diary +CHAPTER XXIV. Dr. Seward’s Phonograph Diary, spoken by Van Helsing +CHAPTER XXV. Dr. Seward’s Diary +CHAPTER XXVI. Dr. Seward’s Diary +CHAPTER XXVII. Mina Harker’s Journal + + + + +How these papers have been placed in sequence will be made manifest in +the reading of them. All needless matters have been eliminated, so that +a history almost at variance with the possibilities of later-day belief +may stand forth as simple fact. There is throughout no statement of +past things wherein memory may err, for all the records chosen are +exactly contemporary, given from the standpoints and within the range +of knowledge of those who made them. + + + + +DRACULA + + + + +CHAPTER I + +JONATHAN HARKER’S JOURNAL + +(_Kept in shorthand._) + + +_3 May. Bistritz._--Left Munich at 8:35 P. M., on 1st May, arriving at +Vienna early next morning; should have arrived at 6:46, but train was an +hour late. Buda-Pesth seems a wonderful place, from the glimpse which I +got of it from the train and the little I could walk through the +streets. I feared to go very far from the station, as we had arrived +late and would start as near the correct time as possible. The +impression I had was that we were leaving the West and entering the +East; the most western of splendid bridges over the Danube, which is +here of noble width and depth, took us among the traditions of Turkish +rule. + +We left in pretty good time, and came after nightfall to Klausenburgh. +Here I stopped for the night at the Hotel Royale. I had for dinner, or +rather supper, a chicken done up some way with red pepper, which was +very good but thirsty. (_Mem._, get recipe for Mina.) I asked the +waiter, and he said it was called “paprika hendl,” and that, as it was a +national dish, I should be able to get it anywhere along the +Carpathians. I found my smattering of German very useful here; indeed, I +don’t know how I should be able to get on without it. + +Having had some time at my disposal when in London, I had visited the +British Museum, and made search among the books and maps in the library +regarding Transylvania; it had struck me that some foreknowledge of the +country could hardly fail to have some importance in dealing with a +nobleman of that country. I find that the district he named is in the +extreme east of the country, just on the borders of three states, +Transylvania, Moldavia and Bukovina, in the midst of the Carpathian +mountains; one of the wildest and least known portions of Europe. I was +not able to light on any map or work giving the exact locality of the +Castle Dracula, as there are no maps of this country as yet to compare +with our own Ordnance Survey maps; but I found that Bistritz, the post +town named by Count Dracula, is a fairly well-known place. I shall enter +here some of my notes, as they may refresh my memory when I talk over my +travels with Mina. + +In the population of Transylvania there are four distinct nationalities: +Saxons in the South, and mixed with them the Wallachs, who are the +descendants of the Dacians; Magyars in the West, and Szekelys in the +East and North. I am going among the latter, who claim to be descended +from Attila and the Huns. This may be so, for when the Magyars conquered +the country in the eleventh century they found the Huns settled in it. I +read that every known superstition in the world is gathered into the +horseshoe of the Carpathians, as if it were the centre of some sort of +imaginative whirlpool; if so my stay may be very interesting. (_Mem._, I +must ask the Count all about them.) + +I did not sleep well, though my bed was comfortable enough, for I had +all sorts of queer dreams. There was a dog howling all night under my +window, which may have had something to do with it; or it may have been +the paprika, for I had to drink up all the water in my carafe, and was +still thirsty. Towards morning I slept and was wakened by the continuous +knocking at my door, so I guess I must have been sleeping soundly then. +I had for breakfast more paprika, and a sort of porridge of maize flour +which they said was “mamaliga,” and egg-plant stuffed with forcemeat, a +very excellent dish, which they call “impletata.” (_Mem._, get recipe +for this also.) I had to hurry breakfast, for the train started a little +before eight, or rather it ought to have done so, for after rushing to +the station at 7:30 I had to sit in the carriage for more than an hour +before we began to move. It seems to me that the further east you go the +more unpunctual are the trains. What ought they to be in China? + +All day long we seemed to dawdle through a country which was full of +beauty of every kind. Sometimes we saw little towns or castles on the +top of steep hills such as we see in old missals; sometimes we ran by +rivers and streams which seemed from the wide stony margin on each side +of them to be subject to great floods. It takes a lot of water, and +running strong, to sweep the outside edge of a river clear. At every +station there were groups of people, sometimes crowds, and in all sorts +of attire. Some of them were just like the peasants at home or those I +saw coming through France and Germany, with short jackets and round hats +and home-made trousers; but others were very picturesque. The women +looked pretty, except when you got near them, but they were very clumsy +about the waist. They had all full white sleeves of some kind or other, +and most of them had big belts with a lot of strips of something +fluttering from them like the dresses in a ballet, but of course there +were petticoats under them. The strangest figures we saw were the +Slovaks, who were more barbarian than the rest, with their big cow-boy +hats, great baggy dirty-white trousers, white linen shirts, and enormous +heavy leather belts, nearly a foot wide, all studded over with brass +nails. They wore high boots, with their trousers tucked into them, and +had long black hair and heavy black moustaches. They are very +picturesque, but do not look prepossessing. On the stage they would be +set down at once as some old Oriental band of brigands. They are, +however, I am told, very harmless and rather wanting in natural +self-assertion. + +It was on the dark side of twilight when we got to Bistritz, which is a +very interesting old place. Being practically on the frontier--for the +Borgo Pass leads from it into Bukovina--it has had a very stormy +existence, and it certainly shows marks of it. Fifty years ago a series +of great fires took place, which made terrible havoc on five separate +occasions. At the very beginning of the seventeenth century it underwent +a siege of three weeks and lost 13,000 people, the casualties of war +proper being assisted by famine and disease. + +Count Dracula had directed me to go to the Golden Krone Hotel, which I +found, to my great delight, to be thoroughly old-fashioned, for of +course I wanted to see all I could of the ways of the country. I was +evidently expected, for when I got near the door I faced a +cheery-looking elderly woman in the usual peasant dress--white +undergarment with long double apron, front, and back, of coloured stuff +fitting almost too tight for modesty. When I came close she bowed and +said, “The Herr Englishman?” “Yes,” I said, “Thomas Harker.” She +smiled, and gave some message to an elderly man in white shirt-sleeves, +who had followed her to the door. He went, but immediately returned with +a letter:-- + + “My Friend.--Welcome to the Carpathians. I am anxiously expecting + you. Sleep well to-night. At three to-morrow the diligence will + start for Bukovina; a place on it is kept for you. At the Borgo + Pass my carriage will await you and will bring you to me. I trust + that your journey from London has been a happy one, and that you + will enjoy your stay in my beautiful land. + +“Your friend, + +“DRACULA.” + + +_4 May._--I found that my landlord had got a letter from the Count, +directing him to secure the best place on the coach for me; but on +making inquiries as to details he seemed somewhat reticent, and +pretended that he could not understand my German. This could not be +true, because up to then he had understood it perfectly; at least, he +answered my questions exactly as if he did. He and his wife, the old +lady who had received me, looked at each other in a frightened sort of +way. He mumbled out that the money had been sent in a letter, and that +was all he knew. When I asked him if he knew Count Dracula, and could +tell me anything of his castle, both he and his wife crossed themselves, +and, saying that they knew nothing at all, simply refused to speak +further. It was so near the time of starting that I had no time to ask +any one else, for it was all very mysterious and not by any means +comforting. + +Just before I was leaving, the old lady came up to my room and said in a +very hysterical way: + +“Must you go? Oh! young Herr, must you go?” She was in such an excited +state that she seemed to have lost her grip of what German she knew, and +mixed it all up with some other language which I did not know at all. I +was just able to follow her by asking many questions. When I told her +that I must go at once, and that I was engaged on important business, +she asked again: + +“Do you know what day it is?” I answered that it was the fourth of May. +She shook her head as she said again: + +“Oh, yes! I know that! I know that, but do you know what day it is?” On +my saying that I did not understand, she went on: + +“It is the eve of St. George’s Day. Do you not know that to-night, when +the clock strikes midnight, all the evil things in the world will have +full sway? Do you know where you are going, and what you are going to?” +She was in such evident distress that I tried to comfort her, but +without effect. Finally she went down on her knees and implored me not +to go; at least to wait a day or two before starting. It was all very +ridiculous but I did not feel comfortable. However, there was business +to be done, and I could allow nothing to interfere with it. I therefore +tried to raise her up, and said, as gravely as I could, that I thanked +her, but my duty was imperative, and that I must go. She then rose and +dried her eyes, and taking a crucifix from her neck offered it to me. I +did not know what to do, for, as an English Churchman, I have been +taught to regard such things as in some measure idolatrous, and yet it +seemed so ungracious to refuse an old lady meaning so well and in such a +state of mind. She saw, I suppose, the doubt in my face, for she put the +rosary round my neck, and said, “For your mother’s sake,” and went out +of the room. I am writing up this part of the diary whilst I am waiting +for the coach, which is, of course, late; and the crucifix is still +round my neck. Whether it is the old lady’s fear, or the many ghostly +traditions of this place, or the crucifix itself, I do not know, but I +am not feeling nearly as easy in my mind as usual. If this book should +ever reach Mina before I do, let it bring my good-bye. Here comes the +coach! + + * * * * * + +_5 May. The Castle._--The grey of the morning has passed, and the sun is +high over the distant horizon, which seems jagged, whether with trees or +hills I know not, for it is so far off that big things and little are +mixed. I am not sleepy, and, as I am not to be called till I awake, +naturally I write till sleep comes. There are many odd things to put +down, and, lest who reads them may fancy that I dined too well before I +left Bistritz, let me put down my dinner exactly. I dined on what they +called “robber steak”--bits of bacon, onion, and beef, seasoned with red +pepper, and strung on sticks and roasted over the fire, in the simple +style of the London cat’s meat! The wine was Golden Mediasch, which +produces a queer sting on the tongue, which is, however, not +disagreeable. I had only a couple of glasses of this, and nothing else. + +When I got on the coach the driver had not taken his seat, and I saw him +talking with the landlady. They were evidently talking of me, for every +now and then they looked at me, and some of the people who were sitting +on the bench outside the door--which they call by a name meaning +“word-bearer”--came and listened, and then looked at me, most of them +pityingly. I could hear a lot of words often repeated, queer words, for +there were many nationalities in the crowd; so I quietly got my polyglot +dictionary from my bag and looked them out. I must say they were not +cheering to me, for amongst them were “Ordog”--Satan, “pokol”--hell, +“stregoica”--witch, “vrolok” and “vlkoslak”--both of which mean the same +thing, one being Slovak and the other Servian for something that is +either were-wolf or vampire. (_Mem._, I must ask the Count about these +superstitions) + +When we started, the crowd round the inn door, which had by this time +swelled to a considerable size, all made the sign of the cross and +pointed two fingers towards me. With some difficulty I got a +fellow-passenger to tell me what they meant; he would not answer at +first, but on learning that I was English, he explained that it was a +charm or guard against the evil eye. This was not very pleasant for me, +just starting for an unknown place to meet an unknown man; but every one +seemed so kind-hearted, and so sorrowful, and so sympathetic that I +could not but be touched. I shall never forget the last glimpse which I +had of the inn-yard and its crowd of picturesque figures, all crossing +themselves, as they stood round the wide archway, with its background of +rich foliage of oleander and orange trees in green tubs clustered in the +centre of the yard. Then our driver, whose wide linen drawers covered +the whole front of the box-seat--“gotza” they call them--cracked his big +whip over his four small horses, which ran abreast, and we set off on +our journey. + +I soon lost sight and recollection of ghostly fears in the beauty of the +scene as we drove along, although had I known the language, or rather +languages, which my fellow-passengers were speaking, I might not have +been able to throw them off so easily. Before us lay a green sloping +land full of forests and woods, with here and there steep hills, crowned +with clumps of trees or with farmhouses, the blank gable end to the +road. There was everywhere a bewildering mass of fruit blossom--apple, +plum, pear, cherry; and as we drove by I could see the green grass under +the trees spangled with the fallen petals. In and out amongst these +green hills of what they call here the “Mittel Land” ran the road, +losing itself as it swept round the grassy curve, or was shut out by the +straggling ends of pine woods, which here and there ran down the +hillsides like tongues of flame. The road was rugged, but still we +seemed to fly over it with a feverish haste. I could not understand then +what the haste meant, but the driver was evidently bent on losing no +time in reaching Borgo Prund. I was told that this road is in summertime +excellent, but that it had not yet been put in order after the winter +snows. In this respect it is different from the general run of roads in +the Carpathians, for it is an old tradition that they are not to be kept +in too good order. Of old the Hospadars would not repair them, lest the +Turk should think that they were preparing to bring in foreign troops, +and so hasten the war which was always really at loading point. + +Beyond the green swelling hills of the Mittel Land rose mighty slopes +of forest up to the lofty steeps of the Carpathians themselves. Right +and left of us they towered, with the afternoon sun falling full upon +them and bringing out all the glorious colours of this beautiful range, +deep blue and purple in the shadows of the peaks, green and brown where +grass and rock mingled, and an endless perspective of jagged rock and +pointed crags, till these were themselves lost in the distance, where +the snowy peaks rose grandly. Here and there seemed mighty rifts in the +mountains, through which, as the sun began to sink, we saw now and again +the white gleam of falling water. One of my companions touched my arm as +we swept round the base of a hill and opened up the lofty, snow-covered +peak of a mountain, which seemed, as we wound on our serpentine way, to +be right before us:-- + +“Look! Isten szek!”--“God’s seat!”--and he crossed himself reverently. + +As we wound on our endless way, and the sun sank lower and lower behind +us, the shadows of the evening began to creep round us. This was +emphasised by the fact that the snowy mountain-top still held the +sunset, and seemed to glow out with a delicate cool pink. Here and there +we passed Cszeks and Slovaks, all in picturesque attire, but I noticed +that goitre was painfully prevalent. By the roadside were many crosses, +and as we swept by, my companions all crossed themselves. Here and there +was a peasant man or woman kneeling before a shrine, who did not even +turn round as we approached, but seemed in the self-surrender of +devotion to have neither eyes nor ears for the outer world. There were +many things new to me: for instance, hay-ricks in the trees, and here +and there very beautiful masses of weeping birch, their white stems +shining like silver through the delicate green of the leaves. Now and +again we passed a leiter-wagon--the ordinary peasant’s cart--with its +long, snake-like vertebra, calculated to suit the inequalities of the +road. On this were sure to be seated quite a group of home-coming +peasants, the Cszeks with their white, and the Slovaks with their +coloured, sheepskins, the latter carrying lance-fashion their long +staves, with axe at end. As the evening fell it began to get very cold, +and the growing twilight seemed to merge into one dark mistiness the +gloom of the trees, oak, beech, and pine, though in the valleys which +ran deep between the spurs of the hills, as we ascended through the +Pass, the dark firs stood out here and there against the background of +late-lying snow. Sometimes, as the road was cut through the pine woods +that seemed in the darkness to be closing down upon us, great masses of +greyness, which here and there bestrewed the trees, produced a +peculiarly weird and solemn effect, which carried on the thoughts and +grim fancies engendered earlier in the evening, when the falling sunset +threw into strange relief the ghost-like clouds which amongst the +Carpathians seem to wind ceaselessly through the valleys. Sometimes the +hills were so steep that, despite our driver’s haste, the horses could +only go slowly. I wished to get down and walk up them, as we do at home, +but the driver would not hear of it. “No, no,” he said; “you must not +walk here; the dogs are too fierce”; and then he added, with what he +evidently meant for grim pleasantry--for he looked round to catch the +approving smile of the rest--“and you may have enough of such matters +before you go to sleep.” The only stop he would make was a moment’s +pause to light his lamps. + +When it grew dark there seemed to be some excitement amongst the +passengers, and they kept speaking to him, one after the other, as +though urging him to further speed. He lashed the horses unmercifully +with his long whip, and with wild cries of encouragement urged them on +to further exertions. Then through the darkness I could see a sort of +patch of grey light ahead of us, as though there were a cleft in the +hills. The excitement of the passengers grew greater; the crazy coach +rocked on its great leather springs, and swayed like a boat tossed on a +stormy sea. I had to hold on. The road grew more level, and we appeared +to fly along. Then the mountains seemed to come nearer to us on each +side and to frown down upon us; we were entering on the Borgo Pass. One +by one several of the passengers offered me gifts, which they pressed +upon me with an earnestness which would take no denial; these were +certainly of an odd and varied kind, but each was given in simple good +faith, with a kindly word, and a blessing, and that strange mixture of +fear-meaning movements which I had seen outside the hotel at +Bistritz--the sign of the cross and the guard against the evil eye. +Then, as we flew along, the driver leaned forward, and on each side the +passengers, craning over the edge of the coach, peered eagerly into the +darkness. It was evident that something very exciting was either +happening or expected, but though I asked each passenger, no one would +give me the slightest explanation. This state of excitement kept on for +some little time; and at last we saw before us the Pass opening out on +the eastern side. There were dark, rolling clouds overhead, and in the +air the heavy, oppressive sense of thunder. It seemed as though the +mountain range had separated two atmospheres, and that now we had got +into the thunderous one. I was now myself looking out for the conveyance +which was to take me to the Count. Each moment I expected to see the +glare of lamps through the blackness; but all was dark. The only light +was the flickering rays of our own lamps, in which the steam from our +hard-driven horses rose in a white cloud. We could see now the sandy +road lying white before us, but there was on it no sign of a vehicle. +The passengers drew back with a sigh of gladness, which seemed to mock +my own disappointment. I was already thinking what I had best do, when +the driver, looking at his watch, said to the others something which I +could hardly hear, it was spoken so quietly and in so low a tone; I +thought it was “An hour less than the time.” Then turning to me, he said +in German worse than my own:-- + +“There is no carriage here. The Herr is not expected after all. He will +now come on to Bukovina, and return to-morrow or the next day; better +the next day.” Whilst he was speaking the horses began to neigh and +snort and plunge wildly, so that the driver had to hold them up. Then, +amongst a chorus of screams from the peasants and a universal crossing +of themselves, a calèche, with four horses, drove up behind us, overtook +us, and drew up beside the coach. I could see from the flash of our +lamps, as the rays fell on them, that the horses were coal-black and +splendid animals. They were driven by a tall man, with a long brown +beard and a great black hat, which seemed to hide his face from us. I +could only see the gleam of a pair of very bright eyes, which seemed red +in the lamplight, as he turned to us. He said to the driver:-- + +“You are early to-night, my friend.” The man stammered in reply:-- + +“The English Herr was in a hurry,” to which the stranger replied:-- + +“That is why, I suppose, you wished him to go on to Bukovina. You cannot +deceive me, my friend; I know too much, and my horses are swift.” As he +spoke he smiled, and the lamplight fell on a hard-looking mouth, with +very red lips and sharp-looking teeth, as white as ivory. One of my +companions whispered to another the line from Burger’s “Lenore”:-- + + “Denn die Todten reiten schnell”-- + (“For the dead travel fast.”) + +The strange driver evidently heard the words, for he looked up with a +gleaming smile. The passenger turned his face away, at the same time +putting out his two fingers and crossing himself. “Give me the Herr’s +luggage,” said the driver; and with exceeding alacrity my bags were +handed out and put in the calèche. Then I descended from the side of the +coach, as the calèche was close alongside, the driver helping me with a +hand which caught my arm in a grip of steel; his strength must have been +prodigious. Without a word he shook his reins, the horses turned, and we +swept into the darkness of the Pass. As I looked back I saw the steam +from the horses of the coach by the light of the lamps, and projected +against it the figures of my late companions crossing themselves. Then +the driver cracked his whip and called to his horses, and off they swept +on their way to Bukovina. As they sank into the darkness I felt a +strange chill, and a lonely feeling came over me; but a cloak was thrown +over my shoulders, and a rug across my knees, and the driver said in +excellent German:-- + +“The night is chill, mein Herr, and my master the Count bade me take all +care of you. There is a flask of slivovitz (the plum brandy of the +country) underneath the seat, if you should require it.” I did not take +any, but it was a comfort to know it was there all the same. I felt a +little strangely, and not a little frightened. I think had there been +any alternative I should have taken it, instead of prosecuting that +unknown night journey. The carriage went at a hard pace straight along, +then we made a complete turn and went along another straight road. It +seemed to me that we were simply going over and over the same ground +again; and so I took note of some salient point, and found that this was +so. I would have liked to have asked the driver what this all meant, but +I really feared to do so, for I thought that, placed as I was, any +protest would have had no effect in case there had been an intention to +delay. By-and-by, however, as I was curious to know how time was +passing, I struck a match, and by its flame looked at my watch; it was +within a few minutes of midnight. This gave me a sort of shock, for I +suppose the general superstition about midnight was increased by my +recent experiences. I waited with a sick feeling of suspense. + +Then a dog began to howl somewhere in a farmhouse far down the road--a +long, agonised wailing, as if from fear. The sound was taken up by +another dog, and then another and another, till, borne on the wind which +now sighed softly through the Pass, a wild howling began, which seemed +to come from all over the country, as far as the imagination could grasp +it through the gloom of the night. At the first howl the horses began to +strain and rear, but the driver spoke to them soothingly, and they +quieted down, but shivered and sweated as though after a runaway from +sudden fright. Then, far off in the distance, from the mountains on each +side of us began a louder and a sharper howling--that of wolves--which +affected both the horses and myself in the same way--for I was minded to +jump from the calèche and run, whilst they reared again and plunged +madly, so that the driver had to use all his great strength to keep them +from bolting. In a few minutes, however, my own ears got accustomed to +the sound, and the horses so far became quiet that the driver was able +to descend and to stand before them. He petted and soothed them, and +whispered something in their ears, as I have heard of horse-tamers +doing, and with extraordinary effect, for under his caresses they became +quite manageable again, though they still trembled. The driver again +took his seat, and shaking his reins, started off at a great pace. This +time, after going to the far side of the Pass, he suddenly turned down a +narrow roadway which ran sharply to the right. + +Soon we were hemmed in with trees, which in places arched right over the +roadway till we passed as through a tunnel; and again great frowning +rocks guarded us boldly on either side. Though we were in shelter, we +could hear the rising wind, for it moaned and whistled through the +rocks, and the branches of the trees crashed together as we swept along. +It grew colder and colder still, and fine, powdery snow began to fall, +so that soon we and all around us were covered with a white blanket. The +keen wind still carried the howling of the dogs, though this grew +fainter as we went on our way. The baying of the wolves sounded nearer +and nearer, as though they were closing round on us from every side. I +grew dreadfully afraid, and the horses shared my fear. The driver, +however, was not in the least disturbed; he kept turning his head to +left and right, but I could not see anything through the darkness. + +Suddenly, away on our left, I saw a faint flickering blue flame. The +driver saw it at the same moment; he at once checked the horses, and, +jumping to the ground, disappeared into the darkness. I did not know +what to do, the less as the howling of the wolves grew closer; but while +I wondered the driver suddenly appeared again, and without a word took +his seat, and we resumed our journey. I think I must have fallen asleep +and kept dreaming of the incident, for it seemed to be repeated +endlessly, and now looking back, it is like a sort of awful nightmare. +Once the flame appeared so near the road, that even in the darkness +around us I could watch the driver’s motions. He went rapidly to where +the blue flame arose--it must have been very faint, for it did not seem +to illumine the place around it at all--and gathering a few stones, +formed them into some device. Once there appeared a strange optical +effect: when he stood between me and the flame he did not obstruct it, +for I could see its ghostly flicker all the same. This startled me, but +as the effect was only momentary, I took it that my eyes deceived me +straining through the darkness. Then for a time there were no blue +flames, and we sped onwards through the gloom, with the howling of the +wolves around us, as though they were following in a moving circle. + +At last there came a time when the driver went further afield than he +had yet gone, and during his absence, the horses began to tremble worse +than ever and to snort and scream with fright. I could not see any cause +for it, for the howling of the wolves had ceased altogether; but just +then the moon, sailing through the black clouds, appeared behind the +jagged crest of a beetling, pine-clad rock, and by its light I saw +around us a ring of wolves, with white teeth and lolling red tongues, +with long, sinewy limbs and shaggy hair. They were a hundred times more +terrible in the grim silence which held them than even when they howled. +For myself, I felt a sort of paralysis of fear. It is only when a man +feels himself face to face with such horrors that he can understand +their true import. + +All at once the wolves began to howl as though the moonlight had had +some peculiar effect on them. The horses jumped about and reared, and +looked helplessly round with eyes that rolled in a way painful to see; +but the living ring of terror encompassed them on every side; and they +had perforce to remain within it. I called to the coachman to come, for +it seemed to me that our only chance was to try to break out through the +ring and to aid his approach. I shouted and beat the side of the +calèche, hoping by the noise to scare the wolves from that side, so as +to give him a chance of reaching the trap. How he came there, I know +not, but I heard his voice raised in a tone of imperious command, and +looking towards the sound, saw him stand in the roadway. As he swept his +long arms, as though brushing aside some impalpable obstacle, the wolves +fell back and back further still. Just then a heavy cloud passed across +the face of the moon, so that we were again in darkness. + +When I could see again the driver was climbing into the calèche, and the +wolves had disappeared. This was all so strange and uncanny that a +dreadful fear came upon me, and I was afraid to speak or move. The time +seemed interminable as we swept on our way, now in almost complete +darkness, for the rolling clouds obscured the moon. We kept on +ascending, with occasional periods of quick descent, but in the main +always ascending. Suddenly, I became conscious of the fact that the +driver was in the act of pulling up the horses in the courtyard of a +vast ruined castle, from whose tall black windows came no ray of light, +and whose broken battlements showed a jagged line against the moonlit +sky. + + + + +CHAPTER II + +JONATHAN HARKER’S JOURNAL--_continued_ + + +_5 May._--I must have been asleep, for certainly if I had been fully +awake I must have noticed the approach of such a remarkable place. In +the gloom the courtyard looked of considerable size, and as several dark +ways led from it under great round arches, it perhaps seemed bigger than +it really is. I have not yet been able to see it by daylight. + +When the calèche stopped, the driver jumped down and held out his hand +to assist me to alight. Again I could not but notice his prodigious +strength. His hand actually seemed like a steel vice that could have +crushed mine if he had chosen. Then he took out my traps, and placed +them on the ground beside me as I stood close to a great door, old and +studded with large iron nails, and set in a projecting doorway of +massive stone. I could see even in the dim light that the stone was +massively carved, but that the carving had been much worn by time and +weather. As I stood, the driver jumped again into his seat and shook the +reins; the horses started forward, and trap and all disappeared down one +of the dark openings. + +I stood in silence where I was, for I did not know what to do. Of bell +or knocker there was no sign; through these frowning walls and dark +window openings it was not likely that my voice could penetrate. The +time I waited seemed endless, and I felt doubts and fears crowding upon +me. What sort of place had I come to, and among what kind of people? +What sort of grim adventure was it on which I had embarked? Was this a +customary incident in the life of a solicitor’s clerk sent out to +explain the purchase of a London estate to a foreigner? Solicitor’s +clerk! Mina would not like that. Solicitor--for just before leaving +London I got word that my examination was successful; and I am now a +full-blown solicitor! I began to rub my eyes and pinch myself to see if +I were awake. It all seemed like a horrible nightmare to me, and I +expected that I should suddenly awake, and find myself at home, with +the dawn struggling in through the windows, as I had now and again felt +in the morning after a day of overwork. But my flesh answered the +pinching test, and my eyes were not to be deceived. I was indeed awake +and among the Carpathians. All I could do now was to be patient, and to +wait the coming of the morning. + +Just as I had come to this conclusion I heard a heavy step approaching +behind the great door, and saw through the chinks the gleam of a coming +light. Then there was the sound of rattling chains and the clanking of +massive bolts drawn back. A key was turned with the loud grating noise +of long disuse, and the great door swung back. + +Within, stood a tall old man, clean shaven save for a long white +moustache, and clad in black from head to foot, without a single speck +of colour about him anywhere. He held in his hand an antique silver +lamp, in which the flame burned without chimney or globe of any kind, +throwing long quivering shadows as it flickered in the draught of the +open door. The old man motioned me in with his right hand with a courtly +gesture, saying in excellent English, but with a strange intonation:-- + +“Welcome to my house! Enter freely and of your own will!” He made no +motion of stepping to meet me, but stood like a statue, as though his +gesture of welcome had fixed him into stone. The instant, however, that +I had stepped over the threshold, he moved impulsively forward, and +holding out his hand grasped mine with a strength which made me wince, +an effect which was not lessened by the fact that it seemed as cold as +ice--more like the hand of a dead than a living man. Again he said:-- + +“Welcome to my house. Come freely. Go safely; and leave something of the +happiness you bring!” The strength of the handshake was so much akin to +that which I had noticed in the driver, whose face I had not seen, that +for a moment I doubted if it were not the same person to whom I was +speaking; so to make sure, I said interrogatively:-- + +“Count Dracula?” He bowed in a courtly way as he replied:-- + +“I am Dracula; and I bid you welcome, Mr. Harker, to my house. Come in; +the night air is chill, and you must need to eat and rest.” As he was +speaking, he put the lamp on a bracket on the wall, and stepping out, +took my luggage; he had carried it in before I could forestall him. I +protested but he insisted:-- + +“Nay, sir, you are my guest. It is late, and my people are not +available. Let me see to your comfort myself.” He insisted on carrying +my traps along the passage, and then up a great winding stair, and +along another great passage, on whose stone floor our steps rang +heavily. At the end of this he threw open a heavy door, and I rejoiced +to see within a well-lit room in which a table was spread for supper, +and on whose mighty hearth a great fire of logs, freshly replenished, +flamed and flared. + +The Count halted, putting down my bags, closed the door, and crossing +the room, opened another door, which led into a small octagonal room lit +by a single lamp, and seemingly without a window of any sort. Passing +through this, he opened another door, and motioned me to enter. It was a +welcome sight; for here was a great bedroom well lighted and warmed with +another log fire,--also added to but lately, for the top logs were +fresh--which sent a hollow roar up the wide chimney. The Count himself +left my luggage inside and withdrew, saying, before he closed the +door:-- + +“You will need, after your journey, to refresh yourself by making your +toilet. I trust you will find all you wish. When you are ready, come +into the other room, where you will find your supper prepared.” + +The light and warmth and the Count’s courteous welcome seemed to have +dissipated all my doubts and fears. Having then reached my normal state, +I discovered that I was half famished with hunger; so making a hasty +toilet, I went into the other room. + +I found supper already laid out. My host, who stood on one side of the +great fireplace, leaning against the stonework, made a graceful wave of +his hand to the table, and said:-- + +“I pray you, be seated and sup how you please. You will, I trust, excuse +me that I do not join you; but I have dined already, and I do not sup.” + +I handed to him the sealed letter which Mr. Hawkins had entrusted to me. +He opened it and read it gravely; then, with a charming smile, he handed +it to me to read. One passage of it, at least, gave me a thrill of +pleasure. + +“I must regret that an attack of gout, from which malady I am a constant +sufferer, forbids absolutely any travelling on my part for some time to +come; but I am happy to say I can send a sufficient substitute, one in +whom I have every possible confidence. He is a young man, full of energy +and talent in his own way, and of a very faithful disposition. He is +discreet and silent, and has grown into manhood in my service. He shall +be ready to attend on you when you will during his stay, and shall take +your instructions in all matters.” + +The Count himself came forward and took off the cover of a dish, and I +fell to at once on an excellent roast chicken. This, with some cheese +and a salad and a bottle of old Tokay, of which I had two glasses, was +my supper. During the time I was eating it the Count asked me many +questions as to my journey, and I told him by degrees all I had +experienced. + +By this time I had finished my supper, and by my host’s desire had drawn +up a chair by the fire and begun to smoke a cigar which he offered me, +at the same time excusing himself that he did not smoke. I had now an +opportunity of observing him, and found him of a very marked +physiognomy. + +His face was a strong--a very strong--aquiline, with high bridge of the +thin nose and peculiarly arched nostrils; with lofty domed forehead, and +hair growing scantily round the temples but profusely elsewhere. His +eyebrows were very massive, almost meeting over the nose, and with bushy +hair that seemed to curl in its own profusion. The mouth, so far as I +could see it under the heavy moustache, was fixed and rather +cruel-looking, with peculiarly sharp white teeth; these protruded over +the lips, whose remarkable ruddiness showed astonishing vitality in a +man of his years. For the rest, his ears were pale, and at the tops +extremely pointed; the chin was broad and strong, and the cheeks firm +though thin. The general effect was one of extraordinary pallor. + +Hitherto I had noticed the backs of his hands as they lay on his knees +in the firelight, and they had seemed rather white and fine; but seeing +them now close to me, I could not but notice that they were rather +coarse--broad, with squat fingers. Strange to say, there were hairs in +the centre of the palm. The nails were long and fine, and cut to a sharp +point. As the Count leaned over me and his hands touched me, I could not +repress a shudder. It may have been that his breath was rank, but a +horrible feeling of nausea came over me, which, do what I would, I could +not conceal. The Count, evidently noticing it, drew back; and with a +grim sort of smile, which showed more than he had yet done his +protuberant teeth, sat himself down again on his own side of the +fireplace. We were both silent for a while; and as I looked towards the +window I saw the first dim streak of the coming dawn. There seemed a +strange stillness over everything; but as I listened I heard as if from +down below in the valley the howling of many wolves. The Count’s eyes +gleamed, and he said:-- + +“Listen to them--the children of the night. What music they make!” +Seeing, I suppose, some expression in my face strange to him, he +added:-- + +“Ah, sir, you dwellers in the city cannot enter into the feelings of the +hunter.” Then he rose and said:-- + +“But you must be tired. Your bedroom is all ready, and to-morrow you +shall sleep as late as you will. I have to be away till the afternoon; +so sleep well and dream well!” With a courteous bow, he opened for me +himself the door to the octagonal room, and I entered my bedroom.... + +I am all in a sea of wonders. I doubt; I fear; I think strange things, +which I dare not confess to my own soul. God keep me, if only for the +sake of those dear to me! + + * * * * * + +_7 May._--It is again early morning, but I have rested and enjoyed the +last twenty-four hours. I slept till late in the day, and awoke of my +own accord. When I had dressed myself I went into the room where we had +supped, and found a cold breakfast laid out, with coffee kept hot by the +pot being placed on the hearth. There was a card on the table, on which +was written:-- + +“I have to be absent for a while. Do not wait for me.--D.” I set to and +enjoyed a hearty meal. When I had done, I looked for a bell, so that I +might let the servants know I had finished; but I could not find one. +There are certainly odd deficiencies in the house, considering the +extraordinary evidences of wealth which are round me. The table service +is of gold, and so beautifully wrought that it must be of immense value. +The curtains and upholstery of the chairs and sofas and the hangings of +my bed are of the costliest and most beautiful fabrics, and must have +been of fabulous value when they were made, for they are centuries old, +though in excellent order. I saw something like them in Hampton Court, +but there they were worn and frayed and moth-eaten. But still in none of +the rooms is there a mirror. There is not even a toilet glass on my +table, and I had to get the little shaving glass from my bag before I +could either shave or brush my hair. I have not yet seen a servant +anywhere, or heard a sound near the castle except the howling of wolves. +Some time after I had finished my meal--I do not know whether to call it +breakfast or dinner, for it was between five and six o’clock when I had +it--I looked about for something to read, for I did not like to go about +the castle until I had asked the Count’s permission. There was +absolutely nothing in the room, book, newspaper, or even writing +materials; so I opened another door in the room and found a sort of +library. The door opposite mine I tried, but found it locked. + +In the library I found, to my great delight, a vast number of English +books, whole shelves full of them, and bound volumes of magazines and +newspapers. A table in the centre was littered with English magazines +and newspapers, though none of them were of very recent date. The books +were of the most varied kind--history, geography, politics, political +economy, botany, geology, law--all relating to England and English life +and customs and manners. There were even such books of reference as the +London Directory, the “Red” and “Blue” books, Whitaker’s Almanac, the +Army and Navy Lists, and--it somehow gladdened my heart to see it--the +Law List. + +Whilst I was looking at the books, the door opened, and the Count +entered. He saluted me in a hearty way, and hoped that I had had a good +night’s rest. Then he went on:-- + +“I am glad you found your way in here, for I am sure there is much that +will interest you. These companions”--and he laid his hand on some of +the books--“have been good friends to me, and for some years past, ever +since I had the idea of going to London, have given me many, many hours +of pleasure. Through them I have come to know your great England; and to +know her is to love her. I long to go through the crowded streets of +your mighty London, to be in the midst of the whirl and rush of +humanity, to share its life, its change, its death, and all that makes +it what it is. But alas! as yet I only know your tongue through books. +To you, my friend, I look that I know it to speak.” + +“But, Count,” I said, “you know and speak English thoroughly!” He bowed +gravely. + +“I thank you, my friend, for your all too-flattering estimate, but yet I +fear that I am but a little way on the road I would travel. True, I know +the grammar and the words, but yet I know not how to speak them.” + +“Indeed,” I said, “you speak excellently.” + +“Not so,” he answered. “Well, I know that, did I move and speak in your +London, none there are who would not know me for a stranger. That is not +enough for me. Here I am noble; I am _boyar_; the common people know me, +and I am master. But a stranger in a strange land, he is no one; men +know him not--and to know not is to care not for. I am content if I am +like the rest, so that no man stops if he see me, or pause in his +speaking if he hear my words, ‘Ha, ha! a stranger!’ I have been so long +master that I would be master still--or at least that none other should +be master of me. You come to me not alone as agent of my friend Peter +Hawkins, of Exeter, to tell me all about my new estate in London. You +shall, I trust, rest here with me awhile, so that by our talking I may +learn the English intonation; and I would that you tell me when I make +error, even of the smallest, in my speaking. I am sorry that I had to be +away so long to-day; but you will, I know, forgive one who has so many +important affairs in hand.” + +Of course I said all I could about being willing, and asked if I might +come into that room when I chose. He answered: “Yes, certainly,” and +added:-- + +“You may go anywhere you wish in the castle, except where the doors are +locked, where of course you will not wish to go. There is reason that +all things are as they are, and did you see with my eyes and know with +my knowledge, you would perhaps better understand.” I said I was sure of +this, and then he went on:-- + +“We are in Transylvania; and Transylvania is not England. Our ways are +not your ways, and there shall be to you many strange things. Nay, from +what you have told me of your experiences already, you know something of +what strange things there may be.” + +This led to much conversation; and as it was evident that he wanted to +talk, if only for talking’s sake, I asked him many questions regarding +things that had already happened to me or come within my notice. +Sometimes he sheered off the subject, or turned the conversation by +pretending not to understand; but generally he answered all I asked most +frankly. Then as time went on, and I had got somewhat bolder, I asked +him of some of the strange things of the preceding night, as, for +instance, why the coachman went to the places where he had seen the blue +flames. He then explained to me that it was commonly believed that on a +certain night of the year--last night, in fact, when all evil spirits +are supposed to have unchecked sway--a blue flame is seen over any place +where treasure has been concealed. “That treasure has been hidden,” he +went on, “in the region through which you came last night, there can be +but little doubt; for it was the ground fought over for centuries by the +Wallachian, the Saxon, and the Turk. Why, there is hardly a foot of soil +in all this region that has not been enriched by the blood of men, +patriots or invaders. In old days there were stirring times, when the +Austrian and the Hungarian came up in hordes, and the patriots went out +to meet them--men and women, the aged and the children too--and waited +their coming on the rocks above the passes, that they might sweep +destruction on them with their artificial avalanches. When the invader +was triumphant he found but little, for whatever there was had been +sheltered in the friendly soil.” + +“But how,” said I, “can it have remained so long undiscovered, when +there is a sure index to it if men will but take the trouble to look?” +The Count smiled, and as his lips ran back over his gums, the long, +sharp, canine teeth showed out strangely; he answered:-- + +“Because your peasant is at heart a coward and a fool! Those flames only +appear on one night; and on that night no man of this land will, if he +can help it, stir without his doors. And, dear sir, even if he did he +would not know what to do. Why, even the peasant that you tell me of who +marked the place of the flame would not know where to look in daylight +even for his own work. Even you would not, I dare be sworn, be able to +find these places again?” + +“There you are right,” I said. “I know no more than the dead where even +to look for them.” Then we drifted into other matters. + +“Come,” he said at last, “tell me of London and of the house which you +have procured for me.” With an apology for my remissness, I went into my +own room to get the papers from my bag. Whilst I was placing them in +order I heard a rattling of china and silver in the next room, and as I +passed through, noticed that the table had been cleared and the lamp +lit, for it was by this time deep into the dark. The lamps were also lit +in the study or library, and I found the Count lying on the sofa, +reading, of all things in the world, an English Bradshaw’s Guide. When I +came in he cleared the books and papers from the table; and with him I +went into plans and deeds and figures of all sorts. He was interested in +everything, and asked me a myriad questions about the place and its +surroundings. He clearly had studied beforehand all he could get on the +subject of the neighbourhood, for he evidently at the end knew very much +more than I did. When I remarked this, he answered:-- + +“Well, but, my friend, is it not needful that I should? When I go there +I shall be all alone, and my friend Harker Thomas--nay, pardon me, I +fall into my country’s habit of putting your patronymic first--my friend +Thomas Harker will not be by my side to correct and aid me. He will be +in Exeter, miles away, probably working at papers of the law with my +other friend, Peter Hawkins. So!” + +We went thoroughly into the business of the purchase of the estate at +Purfleet. When I had told him the facts and got his signature to the +necessary papers, and had written a letter with them ready to post to +Mr. Hawkins, he began to ask me how I had come across so suitable a +place. I read to him the notes which I had made at the time, and which I +inscribe here:-- + +“At Purfleet, on a by-road, I came across just such a place as seemed to +be required, and where was displayed a dilapidated notice that the place +was for sale. It is surrounded by a high wall, of ancient structure, +built of heavy stones, and has not been repaired for a large number of +years. The closed gates are of heavy old oak and iron, all eaten with +rust. + +“The estate is called Carfax, no doubt a corruption of the old _Quatre +Face_, as the house is four-sided, agreeing with the cardinal points of +the compass. It contains in all some twenty acres, quite surrounded by +the solid stone wall above mentioned. There are many trees on it, which +make it in places gloomy, and there is a deep, dark-looking pond or +small lake, evidently fed by some springs, as the water is clear and +flows away in a fair-sized stream. The house is very large and of all +periods back, I should say, to mediæval times, for one part is of stone +immensely thick, with only a few windows high up and heavily barred with +iron. It looks like part of a keep, and is close to an old chapel or +church. I could not enter it, as I had not the key of the door leading +to it from the house, but I have taken with my kodak views of it from +various points. The house has been added to, but in a very straggling +way, and I can only guess at the amount of ground it covers, which must +be very great. There are but few houses close at hand, one being a very +large house only recently added to and formed into a private lunatic +asylum. It is not, however, visible from the grounds.” + +When I had finished, he said:-- + +“I am glad that it is old and big. I myself am of an old family, and to +live in a new house would kill me. A house cannot be made habitable in a +day; and, after all, how few days go to make up a century. I rejoice +also that there is a chapel of old times. We Transylvanian nobles love +not to think that our bones may lie amongst the common dead. I seek not +gaiety nor mirth, not the bright voluptuousness of much sunshine and +sparkling waters which please the young and gay. I am no longer young; +and my heart, through weary years of mourning over the dead, is not +attuned to mirth. Moreover, the walls of my castle are broken; the +shadows are many, and the wind breathes cold through the broken +battlements and casements. I love the shade and the shadow, and would +be alone with my thoughts when I may.” Somehow his words and his look +did not seem to accord, or else it was that his cast of face made his +smile look malignant and saturnine. + +Presently, with an excuse, he left me, asking me to put all my papers +together. He was some little time away, and I began to look at some of +the books around me. One was an atlas, which I found opened naturally at +England, as if that map had been much used. On looking at it I found in +certain places little rings marked, and on examining these I noticed +that one was near London on the east side, manifestly where his new +estate was situated; the other two were Exeter, and Whitby on the +Yorkshire coast. + +It was the better part of an hour when the Count returned. “Aha!” he +said; “still at your books? Good! But you must not work always. Come; I +am informed that your supper is ready.” He took my arm, and we went into +the next room, where I found an excellent supper ready on the table. The +Count again excused himself, as he had dined out on his being away from +home. But he sat as on the previous night, and chatted whilst I ate. +After supper I smoked, as on the last evening, and the Count stayed with +me, chatting and asking questions on every conceivable subject, hour +after hour. I felt that it was getting very late indeed, but I did not +say anything, for I felt under obligation to meet my host’s wishes in +every way. I was not sleepy, as the long sleep yesterday had fortified +me; but I could not help experiencing that chill which comes over one at +the coming of the dawn, which is like, in its way, the turn of the tide. +They say that people who are near death die generally at the change to +the dawn or at the turn of the tide; any one who has when tired, and +tied as it were to his post, experienced this change in the atmosphere +can well believe it. All at once we heard the crow of a cock coming up +with preternatural shrillness through the clear morning air; Count +Dracula, jumping to his feet, said:-- + +“Why, there is the morning again! How remiss I am to let you stay up so +long. You must make your conversation regarding my dear new country of +England less interesting, so that I may not forget how time flies by +us,” and, with a courtly bow, he quickly left me. + +I went into my own room and drew the curtains, but there was little to +notice; my window opened into the courtyard, all I could see was the +warm grey of quickening sky. So I pulled the curtains again, and have +written of this day. + + * * * * * + +_8 May._--I began to fear as I wrote in this book that I was getting too +diffuse; but now I am glad that I went into detail from the first, for +there is something so strange about this place and all in it that I +cannot but feel uneasy. I wish I were safe out of it, or that I had +never come. It may be that this strange night-existence is telling on +me; but would that that were all! If there were any one to talk to I +could bear it, but there is no one. I have only the Count to speak with, +and he!--I fear I am myself the only living soul within the place. Let +me be prosaic so far as facts can be; it will help me to bear up, and +imagination must not run riot with me. If it does I am lost. Let me say +at once how I stand--or seem to. + +I only slept a few hours when I went to bed, and feeling that I could +not sleep any more, got up. I had hung my shaving glass by the window, +and was just beginning to shave. Suddenly I felt a hand on my shoulder, +and heard the Count’s voice saying to me, “Good-morning.” I started, for +it amazed me that I had not seen him, since the reflection of the glass +covered the whole room behind me. In starting I had cut myself slightly, +but did not notice it at the moment. Having answered the Count’s +salutation, I turned to the glass again to see how I had been mistaken. +This time there could be no error, for the man was close to me, and I +could see him over my shoulder. But there was no reflection of him in +the mirror! The whole room behind me was displayed; but there was no +sign of a man in it, except myself. This was startling, and, coming on +the top of so many strange things, was beginning to increase that vague +feeling of uneasiness which I always have when the Count is near; but at +the instant I saw that the cut had bled a little, and the blood was +trickling over my chin. I laid down the razor, turning as I did so half +round to look for some sticking plaster. When the Count saw my face, his +eyes blazed with a sort of demoniac fury, and he suddenly made a grab at +my throat. I drew away, and his hand touched the string of beads which +held the crucifix. It made an instant change in him, for the fury passed +so quickly that I could hardly believe that it was ever there. + +“Take care,” he said, “take care how you cut yourself. It is more +dangerous than you think in this country.” Then seizing the shaving +glass, he went on: “And this is the wretched thing that has done the +mischief. It is a foul bauble of man’s vanity. Away with it!” and +opening the heavy window with one wrench of his terrible hand, he flung +out the glass, which was shattered into a thousand pieces on the stones +of the courtyard far below. Then he withdrew without a word. It is very +annoying, for I do not see how I am to shave, unless in my watch-case or +the bottom of the shaving-pot, which is fortunately of metal. + +When I went into the dining-room, breakfast was prepared; but I could +not find the Count anywhere. So I breakfasted alone. It is strange that +as yet I have not seen the Count eat or drink. He must be a very +peculiar man! After breakfast I did a little exploring in the castle. I +went out on the stairs, and found a room looking towards the South. The +view was magnificent, and from where I stood there was every opportunity +of seeing it. The castle is on the very edge of a terrible precipice. A +stone falling from the window would fall a thousand feet without +touching anything! As far as the eye can reach is a sea of green tree +tops, with occasionally a deep rift where there is a chasm. Here and +there are silver threads where the rivers wind in deep gorges through +the forests. + +But I am not in heart to describe beauty, for when I had seen the view I +explored further; doors, doors, doors everywhere, and all locked and +bolted. In no place save from the windows in the castle walls is there +an available exit. + +The castle is a veritable prison, and I am a prisoner! + + + + +CHAPTER III + +JONATHAN HARKER’S JOURNAL--_continued_ + + +When I found that I was a prisoner a sort of wild feeling came over me. +I rushed up and down the stairs, trying every door and peering out of +every window I could find; but after a little the conviction of my +helplessness overpowered all other feelings. When I look back after a +few hours I think I must have been mad for the time, for I behaved much +as a rat does in a trap. When, however, the conviction had come to me +that I was helpless I sat down quietly--as quietly as I have ever done +anything in my life--and began to think over what was best to be done. I +am thinking still, and as yet have come to no definite conclusion. Of +one thing only am I certain; that it is no use making my ideas known to +the Count. He knows well that I am imprisoned; and as he has done it +himself, and has doubtless his own motives for it, he would only deceive +me if I trusted him fully with the facts. So far as I can see, my only +plan will be to keep my knowledge and my fears to myself, and my eyes +open. I am, I know, either being deceived, like a baby, by my own fears, +or else I am in desperate straits; and if the latter be so, I need, and +shall need, all my brains to get through. + +I had hardly come to this conclusion when I heard the great door below +shut, and knew that the Count had returned. He did not come at once into +the library, so I went cautiously to my own room and found him making +the bed. This was odd, but only confirmed what I had all along +thought--that there were no servants in the house. When later I saw him +through the chink of the hinges of the door laying the table in the +dining-room, I was assured of it; for if he does himself all these +menial offices, surely it is proof that there is no one else to do them. +This gave me a fright, for if there is no one else in the castle, it +must have been the Count himself who was the driver of the coach that +brought me here. This is a terrible thought; for if so, what does it +mean that he could control the wolves, as he did, by only holding up his +hand in silence. How was it that all the people at Bistritz and on the +coach had some terrible fear for me? What meant the giving of the +crucifix, of the garlic, of the wild rose, of the mountain ash? Bless +that good, good woman who hung the crucifix round my neck! for it is a +comfort and a strength to me whenever I touch it. It is odd that a thing +which I have been taught to regard with disfavour and as idolatrous +should in a time of loneliness and trouble be of help. Is it that there +is something in the essence of the thing itself, or that it is a medium, +a tangible help, in conveying memories of sympathy and comfort? Some +time, if it may be, I must examine this matter and try to make up my +mind about it. In the meantime I must find out all I can about Count +Dracula, as it may help me to understand. To-night he may talk of +himself, if I turn the conversation that way. I must be very careful, +however, not to awake his suspicion. + + * * * * * + +_Midnight._--I have had a long talk with the Count. I asked him a few +questions on Transylvania history, and he warmed up to the subject +wonderfully. In his speaking of things and people, and especially of +battles, he spoke as if he had been present at them all. This he +afterwards explained by saying that to a _boyar_ the pride of his house +and name is his own pride, that their glory is his glory, that their +fate is his fate. Whenever he spoke of his house he always said “we,” +and spoke almost in the plural, like a king speaking. I wish I could put +down all he said exactly as he said it, for to me it was most +fascinating. It seemed to have in it a whole history of the country. He +grew excited as he spoke, and walked about the room pulling his great +white moustache and grasping anything on which he laid his hands as +though he would crush it by main strength. One thing he said which I +shall put down as nearly as I can; for it tells in its way the story of +his race:-- + +“We Szekelys have a right to be proud, for in our veins flows the blood +of many brave races who fought as the lion fights, for lordship. Here, +in the whirlpool of European races, the Ugric tribe bore down from +Iceland the fighting spirit which Thor and Wodin gave them, which their +Berserkers displayed to such fell intent on the seaboards of Europe, ay, +and of Asia and Africa too, till the peoples thought that the +were-wolves themselves had come. Here, too, when they came, they found +the Huns, whose warlike fury had swept the earth like a living flame, +till the dying peoples held that in their veins ran the blood of those +old witches, who, expelled from Scythia had mated with the devils in the +desert. Fools, fools! What devil or what witch was ever so great as +Attila, whose blood is in these veins?” He held up his arms. “Is it a +wonder that we were a conquering race; that we were proud; that when the +Magyar, the Lombard, the Avar, the Bulgar, or the Turk poured his +thousands on our frontiers, we drove them back? Is it strange that when +Arpad and his legions swept through the Hungarian fatherland he found us +here when he reached the frontier; that the Honfoglalas was completed +there? And when the Hungarian flood swept eastward, the Szekelys were +claimed as kindred by the victorious Magyars, and to us for centuries +was trusted the guarding of the frontier of Turkey-land; ay, and more +than that, endless duty of the frontier guard, for, as the Turks say, +‘water sleeps, and enemy is sleepless.’ Who more gladly than we +throughout the Four Nations received the ‘bloody sword,’ or at its +warlike call flocked quicker to the standard of the King? When was +redeemed that great shame of my nation, the shame of Cassova, when the +flags of the Wallach and the Magyar went down beneath the Crescent? Who +was it but one of my own race who as Voivode crossed the Danube and beat +the Turk on his own ground? This was a Dracula indeed! Woe was it that +his own unworthy brother, when he had fallen, sold his people to the +Turk and brought the shame of slavery on them! Was it not this Dracula, +indeed, who inspired that other of his race who in a later age again and +again brought his forces over the great river into Turkey-land; who, +when he was beaten back, came again, and again, and again, though he had +to come alone from the bloody field where his troops were being +slaughtered, since he knew that he alone could ultimately triumph! They +said that he thought only of himself. Bah! what good are peasants +without a leader? Where ends the war without a brain and heart to +conduct it? Again, when, after the battle of Mohács, we threw off the +Hungarian yoke, we of the Dracula blood were amongst their leaders, for +our spirit would not brook that we were not free. Ah, young sir, the +Szekelys--and the Dracula as their heart’s blood, their brains, and +their swords--can boast a record that mushroom growths like the +Hapsburgs and the Romanoffs can never reach. The warlike days are over. +Blood is too precious a thing in these days of dishonourable peace; and +the glories of the great races are as a tale that is told.” + +It was by this time close on morning, and we went to bed. (_Mem._, this +diary seems horribly like the beginning of the “Arabian Nights,” for +everything has to break off at cockcrow--or like the ghost of Hamlet’s +father.) + + * * * * * + +_12 May._--Let me begin with facts--bare, meagre facts, verified by +books and figures, and of which there can be no doubt. I must not +confuse them with experiences which will have to rest on my own +observation, or my memory of them. Last evening when the Count came from +his room he began by asking me questions on legal matters and on the +doing of certain kinds of business. I had spent the day wearily over +books, and, simply to keep my mind occupied, went over some of the +matters I had been examining at Lincoln’s Inn. There was a certain +method in the Count’s inquiries, so I shall try to put them down in +sequence; the knowledge may somehow or some time be useful to me. + +First, he asked if a man in England might have two solicitors or more. I +told him he might have a dozen if he wished, but that it would not be +wise to have more than one solicitor engaged in one transaction, as only +one could act at a time, and that to change would be certain to militate +against his interest. He seemed thoroughly to understand, and went on to +ask if there would be any practical difficulty in having one man to +attend, say, to banking, and another to look after shipping, in case +local help were needed in a place far from the home of the banking +solicitor. I asked him to explain more fully, so that I might not by any +chance mislead him, so he said:-- + +“I shall illustrate. Your friend and mine, Mr. Peter Hawkins, from under +the shadow of your beautiful cathedral at Exeter, which is far from +London, buys for me through your good self my place at London. Good! Now +here let me say frankly, lest you should think it strange that I have +sought the services of one so far off from London instead of some one +resident there, that my motive was that no local interest might be +served save my wish only; and as one of London residence might, perhaps, +have some purpose of himself or friend to serve, I went thus afield to +seek my agent, whose labours should be only to my interest. Now, suppose +I, who have much of affairs, wish to ship goods, say, to Newcastle, or +Durham, or Harwich, or Dover, might it not be that it could with more +ease be done by consigning to one in these ports?” I answered that +certainly it would be most easy, but that we solicitors had a system of +agency one for the other, so that local work could be done locally on +instruction from any solicitor, so that the client, simply placing +himself in the hands of one man, could have his wishes carried out by +him without further trouble. + +“But,” said he, “I could be at liberty to direct myself. Is it not so?” + +“Of course,” I replied; and “such is often done by men of business, who +do not like the whole of their affairs to be known by any one person.” + +“Good!” he said, and then went on to ask about the means of making +consignments and the forms to be gone through, and of all sorts of +difficulties which might arise, but by forethought could be guarded +against. I explained all these things to him to the best of my ability, +and he certainly left me under the impression that he would have made a +wonderful solicitor, for there was nothing that he did not think of or +foresee. For a man who was never in the country, and who did not +evidently do much in the way of business, his knowledge and acumen were +wonderful. When he had satisfied himself on these points of which he had +spoken, and I had verified all as well as I could by the books +available, he suddenly stood up and said:-- + +“Have you written since your first letter to our friend Mr. Peter +Hawkins, or to any other?” It was with some bitterness in my heart that +I answered that I had not, that as yet I had not seen any opportunity of +sending letters to anybody. + +“Then write now, my young friend,” he said, laying a heavy hand on my +shoulder: “write to our friend and to any other; and say, if it will +please you, that you shall stay with me until a month from now.” + +“Do you wish me to stay so long?” I asked, for my heart grew cold at the +thought. + +“I desire it much; nay, I will take no refusal. When your master, +employer, what you will, engaged that someone should come on his behalf, +it was understood that my needs only were to be consulted. I have not +stinted. Is it not so?” + +What could I do but bow acceptance? It was Mr. Hawkins’s interest, not +mine, and I had to think of him, not myself; and besides, while Count +Dracula was speaking, there was that in his eyes and in his bearing +which made me remember that I was a prisoner, and that if I wished it I +could have no choice. The Count saw his victory in my bow, and his +mastery in the trouble of my face, for he began at once to use them, but +in his own smooth, resistless way:-- + +“I pray you, my good young friend, that you will not discourse of things +other than business in your letters. It will doubtless please your +friends to know that you are well, and that you look forward to getting +home to them. Is it not so?” As he spoke he handed me three sheets of +note-paper and three envelopes. They were all of the thinnest foreign +post, and looking at them, then at him, and noticing his quiet smile, +with the sharp, canine teeth lying over the red underlip, I understood +as well as if he had spoken that I should be careful what I wrote, for +he would be able to read it. So I determined to write only formal notes +now, but to write fully to Mr. Hawkins in secret, and also to Mina, for +to her I could write in shorthand, which would puzzle the Count, if he +did see it. When I had written my two letters I sat quiet, reading a +book whilst the Count wrote several notes, referring as he wrote them to +some books on his table. Then he took up my two and placed them with his +own, and put by his writing materials, after which, the instant the door +had closed behind him, I leaned over and looked at the letters, which +were face down on the table. I felt no compunction in doing so, for +under the circumstances I felt that I should protect myself in every way +I could. + +One of the letters was directed to Samuel F. Billington, No. 7, The +Crescent, Whitby, another to Herr Leutner, Varna; the third was to +Coutts & Co., London, and the fourth to Herren Klopstock & Billreuth, +bankers, Buda-Pesth. The second and fourth were unsealed. I was just +about to look at them when I saw the door-handle move. I sank back in my +seat, having just had time to replace the letters as they had been and +to resume my book before the Count, holding still another letter in his +hand, entered the room. He took up the letters on the table and stamped +them carefully, and then turning to me, said:-- + +“I trust you will forgive me, but I have much work to do in private this +evening. You will, I hope, find all things as you wish.” At the door he +turned, and after a moment’s pause said:-- + +“Let me advise you, my dear young friend--nay, let me warn you with all +seriousness, that should you leave these rooms you will not by any +chance go to sleep in any other part of the castle. It is old, and has +many memories, and there are bad dreams for those who sleep unwisely. Be +warned! Should sleep now or ever overcome you, or be like to do, then +haste to your own chamber or to these rooms, for your rest will then be +safe. But if you be not careful in this respect, then”--He finished his +speech in a gruesome way, for he motioned with his hands as if he were +washing them. I quite understood; my only doubt was as to whether any +dream could be more terrible than the unnatural, horrible net of gloom +and mystery which seemed closing around me. + + * * * * * + +_Later._--I endorse the last words written, but this time there is no +doubt in question. I shall not fear to sleep in any place where he is +not. I have placed the crucifix over the head of my bed--I imagine that +my rest is thus freer from dreams; and there it shall remain. + +When he left me I went to my room. After a little while, not hearing any +sound, I came out and went up the stone stair to where I could look out +towards the South. There was some sense of freedom in the vast expanse, +inaccessible though it was to me, as compared with the narrow darkness +of the courtyard. Looking out on this, I felt that I was indeed in +prison, and I seemed to want a breath of fresh air, though it were of +the night. I am beginning to feel this nocturnal existence tell on me. +It is destroying my nerve. I start at my own shadow, and am full of all +sorts of horrible imaginings. God knows that there is ground for my +terrible fear in this accursed place! I looked out over the beautiful +expanse, bathed in soft yellow moonlight till it was almost as light as +day. In the soft light the distant hills became melted, and the shadows +in the valleys and gorges of velvety blackness. The mere beauty seemed +to cheer me; there was peace and comfort in every breath I drew. As I +leaned from the window my eye was caught by something moving a storey +below me, and somewhat to my left, where I imagined, from the order of +the rooms, that the windows of the Count’s own room would look out. The +window at which I stood was tall and deep, stone-mullioned, and though +weatherworn, was still complete; but it was evidently many a day since +the case had been there. I drew back behind the stonework, and looked +carefully out. + +What I saw was the Count’s head coming out from the window. I did not +see the face, but I knew the man by the neck and the movement of his +back and arms. In any case I could not mistake the hands which I had had +so many opportunities of studying. I was at first interested and +somewhat amused, for it is wonderful how small a matter will interest +and amuse a man when he is a prisoner. But my very feelings changed to +repulsion and terror when I saw the whole man slowly emerge from the +window and begin to crawl down the castle wall over that dreadful abyss, +_face down_ with his cloak spreading out around him like great wings. At +first I could not believe my eyes. I thought it was some trick of the +moonlight, some weird effect of shadow; but I kept looking, and it could +be no delusion. I saw the fingers and toes grasp the corners of the +stones, worn clear of the mortar by the stress of years, and by thus +using every projection and inequality move downwards with considerable +speed, just as a lizard moves along a wall. + +What manner of man is this, or what manner of creature is it in the +semblance of man? I feel the dread of this horrible place overpowering +me; I am in fear--in awful fear--and there is no escape for me; I am +encompassed about with terrors that I dare not think of.... + + * * * * * + +_15 May._--Once more have I seen the Count go out in his lizard fashion. +He moved downwards in a sidelong way, some hundred feet down, and a good +deal to the left. He vanished into some hole or window. When his head +had disappeared, I leaned out to try and see more, but without +avail--the distance was too great to allow a proper angle of sight. I +knew he had left the castle now, and thought to use the opportunity to +explore more than I had dared to do as yet. I went back to the room, and +taking a lamp, tried all the doors. They were all locked, as I had +expected, and the locks were comparatively new; but I went down the +stone stairs to the hall where I had entered originally. I found I could +pull back the bolts easily enough and unhook the great chains; but the +door was locked, and the key was gone! That key must be in the Count’s +room; I must watch should his door be unlocked, so that I may get it and +escape. I went on to make a thorough examination of the various stairs +and passages, and to try the doors that opened from them. One or two +small rooms near the hall were open, but there was nothing to see in +them except old furniture, dusty with age and moth-eaten. At last, +however, I found one door at the top of the stairway which, though it +seemed to be locked, gave a little under pressure. I tried it harder, +and found that it was not really locked, but that the resistance came +from the fact that the hinges had fallen somewhat, and the heavy door +rested on the floor. Here was an opportunity which I might not have +again, so I exerted myself, and with many efforts forced it back so that +I could enter. I was now in a wing of the castle further to the right +than the rooms I knew and a storey lower down. From the windows I could +see that the suite of rooms lay along to the south of the castle, the +windows of the end room looking out both west and south. On the latter +side, as well as to the former, there was a great precipice. The castle +was built on the corner of a great rock, so that on three sides it was +quite impregnable, and great windows were placed here where sling, or +bow, or culverin could not reach, and consequently light and comfort, +impossible to a position which had to be guarded, were secured. To the +west was a great valley, and then, rising far away, great jagged +mountain fastnesses, rising peak on peak, the sheer rock studded with +mountain ash and thorn, whose roots clung in cracks and crevices and +crannies of the stone. This was evidently the portion of the castle +occupied by the ladies in bygone days, for the furniture had more air of +comfort than any I had seen. The windows were curtainless, and the +yellow moonlight, flooding in through the diamond panes, enabled one to +see even colours, whilst it softened the wealth of dust which lay over +all and disguised in some measure the ravages of time and the moth. My +lamp seemed to be of little effect in the brilliant moonlight, but I was +glad to have it with me, for there was a dread loneliness in the place +which chilled my heart and made my nerves tremble. Still, it was better +than living alone in the rooms which I had come to hate from the +presence of the Count, and after trying a little to school my nerves, I +found a soft quietude come over me. Here I am, sitting at a little oak +table where in old times possibly some fair lady sat to pen, with much +thought and many blushes, her ill-spelt love-letter, and writing in my +diary in shorthand all that has happened since I closed it last. It is +nineteenth century up-to-date with a vengeance. And yet, unless my +senses deceive me, the old centuries had, and have, powers of their own +which mere “modernity” cannot kill. + + * * * * * + +_Later: the Morning of 16 May._--God preserve my sanity, for to this I +am reduced. Safety and the assurance of safety are things of the past. +Whilst I live on here there is but one thing to hope for, that I may not +go mad, if, indeed, I be not mad already. If I be sane, then surely it +is maddening to think that of all the foul things that lurk in this +hateful place the Count is the least dreadful to me; that to him alone I +can look for safety, even though this be only whilst I can serve his +purpose. Great God! merciful God! Let me be calm, for out of that way +lies madness indeed. I begin to get new lights on certain things which +have puzzled me. Up to now I never quite knew what Shakespeare meant +when he made Hamlet say:-- + + “My tablets! quick, my tablets! + ’Tis meet that I put it down,” etc., + +for now, feeling as though my own brain were unhinged or as if the shock +had come which must end in its undoing, I turn to my diary for repose. +The habit of entering accurately must help to soothe me. + +The Count’s mysterious warning frightened me at the time; it frightens +me more now when I think of it, for in future he has a fearful hold upon +me. I shall fear to doubt what he may say! + +When I had written in my diary and had fortunately replaced the book and +pen in my pocket I felt sleepy. The Count’s warning came into my mind, +but I took a pleasure in disobeying it. The sense of sleep was upon me, +and with it the obstinacy which sleep brings as outrider. The soft +moonlight soothed, and the wide expanse without gave a sense of freedom +which refreshed me. I determined not to return to-night to the +gloom-haunted rooms, but to sleep here, where, of old, ladies had sat +and sung and lived sweet lives whilst their gentle breasts were sad for +their menfolk away in the midst of remorseless wars. I drew a great +couch out of its place near the corner, so that as I lay, I could look +at the lovely view to east and south, and unthinking of and uncaring for +the dust, composed myself for sleep. I suppose I must have fallen +asleep; I hope so, but I fear, for all that followed was startlingly +real--so real that now sitting here in the broad, full sunlight of the +morning, I cannot in the least believe that it was all sleep. + +I was not alone. The room was the same, unchanged in any way since I +came into it; I could see along the floor, in the brilliant moonlight, +my own footsteps marked where I had disturbed the long accumulation of +dust. In the moonlight opposite me were three young women, ladies by +their dress and manner. I thought at the time that I must be dreaming +when I saw them, for, though the moonlight was behind them, they threw +no shadow on the floor. They came close to me, and looked at me for some +time, and then whispered together. Two were dark, and had high aquiline +noses, like the Count, and great dark, piercing eyes that seemed to be +almost red when contrasted with the pale yellow moon. The other was +fair, as fair as can be, with great wavy masses of golden hair and eyes +like pale sapphires. I seemed somehow to know her face, and to know it +in connection with some dreamy fear, but I could not recollect at the +moment how or where. All three had brilliant white teeth that shone like +pearls against the ruby of their voluptuous lips. There was something +about them that made me uneasy, some longing and at the same time some +deadly fear. I felt in my heart a wicked, burning desire that they would +kiss me with those red lips. It is not good to note this down, lest some +day it should meet Mina’s eyes and cause her pain; but it is the truth. +They whispered together, and then they all three laughed--such a +silvery, musical laugh, but as hard as though the sound never could have +come through the softness of human lips. It was like the intolerable, +tingling sweetness of water-glasses when played on by a cunning hand. +The fair girl shook her head coquettishly, and the other two urged her +on. One said:-- + +“Go on! You are first, and we shall follow; yours is the right to +begin.” The other added:-- + +“He is young and strong; there are kisses for us all.” I lay quiet, +looking out under my eyelashes in an agony of delightful anticipation. +The fair girl advanced and bent over me till I could feel the movement +of her breath upon me. Sweet it was in one sense, honey-sweet, and sent +the same tingling through the nerves as her voice, but with a bitter +underlying the sweet, a bitter offensiveness, as one smells in blood. + +I was afraid to raise my eyelids, but looked out and saw perfectly under +the lashes. The girl went on her knees, and bent over me, simply +gloating. There was a deliberate voluptuousness which was both thrilling +and repulsive, and as she arched her neck she actually licked her lips +like an animal, till I could see in the moonlight the moisture shining +on the scarlet lips and on the red tongue as it lapped the white sharp +teeth. Lower and lower went her head as the lips went below the range of +my mouth and chin and seemed about to fasten on my throat. Then she +paused, and I could hear the churning sound of her tongue as it licked +her teeth and lips, and could feel the hot breath on my neck. Then the +skin of my throat began to tingle as one’s flesh does when the hand that +is to tickle it approaches nearer--nearer. I could feel the soft, +shivering touch of the lips on the super-sensitive skin of my throat, +and the hard dents of two sharp teeth, just touching and pausing there. +I closed my eyes in a languorous ecstasy and waited--waited with beating +heart. + +But at that instant, another sensation swept through me as quick as +lightning. I was conscious of the presence of the Count, and of his +being as if lapped in a storm of fury. As my eyes opened involuntarily I +saw his strong hand grasp the slender neck of the fair woman and with +giant’s power draw it back, the blue eyes transformed with fury, the +white teeth champing with rage, and the fair cheeks blazing red with +passion. But the Count! Never did I imagine such wrath and fury, even to +the demons of the pit. His eyes were positively blazing. The red light +in them was lurid, as if the flames of hell-fire blazed behind them. His +face was deathly pale, and the lines of it were hard like drawn wires; +the thick eyebrows that met over the nose now seemed like a heaving bar +of white-hot metal. With a fierce sweep of his arm, he hurled the woman +from him, and then motioned to the others, as though he were beating +them back; it was the same imperious gesture that I had seen used to the +wolves. In a voice which, though low and almost in a whisper seemed to +cut through the air and then ring round the room he said:-- + +“How dare you touch him, any of you? How dare you cast eyes on him when +I had forbidden it? Back, I tell you all! This man belongs to me! Beware +how you meddle with him, or you’ll have to deal with me.” The fair girl, +with a laugh of ribald coquetry, turned to answer him:-- + +“You yourself never loved; you never love!” On this the other women +joined, and such a mirthless, hard, soulless laughter rang through the +room that it almost made me faint to hear; it seemed like the pleasure +of fiends. Then the Count turned, after looking at my face attentively, +and said in a soft whisper:-- + +“Yes, I too can love; you yourselves can tell it from the past. Is it +not so? Well, now I promise you that when I am done with him you shall +kiss him at your will. Now go! go! I must awaken him, for there is work +to be done.” + +“Are we to have nothing to-night?” said one of them, with a low laugh, +as she pointed to the bag which he had thrown upon the floor, and which +moved as though there were some living thing within it. For answer he +nodded his head. One of the women jumped forward and opened it. If my +ears did not deceive me there was a gasp and a low wail, as of a +half-smothered child. The women closed round, whilst I was aghast with +horror; but as I looked they disappeared, and with them the dreadful +bag. There was no door near them, and they could not have passed me +without my noticing. They simply seemed to fade into the rays of the +moonlight and pass out through the window, for I could see outside the +dim, shadowy forms for a moment before they entirely faded away. + +Then the horror overcame me, and I sank down unconscious. + + + + +CHAPTER IV + +JONATHAN HARKER’S JOURNAL--_continued_ + + +I awoke in my own bed. If it be that I had not dreamt, the Count must +have carried me here. I tried to satisfy myself on the subject, but +could not arrive at any unquestionable result. To be sure, there were +certain small evidences, such as that my clothes were folded and laid by +in a manner which was not my habit. My watch was still unwound, and I am +rigorously accustomed to wind it the last thing before going to bed, and +many such details. But these things are no proof, for they may have been +evidences that my mind was not as usual, and, from some cause or +another, I had certainly been much upset. I must watch for proof. Of one +thing I am glad: if it was that the Count carried me here and undressed +me, he must have been hurried in his task, for my pockets are intact. I +am sure this diary would have been a mystery to him which he would not +have brooked. He would have taken or destroyed it. As I look round this +room, although it has been to me so full of fear, it is now a sort of +sanctuary, for nothing can be more dreadful than those awful women, who +were--who _are_--waiting to suck my blood. + + * * * * * + +_18 May._--I have been down to look at that room again in daylight, for +I _must_ know the truth. When I got to the doorway at the top of the +stairs I found it closed. It had been so forcibly driven against the +jamb that part of the woodwork was splintered. I could see that the bolt +of the lock had not been shot, but the door is fastened from the inside. +I fear it was no dream, and must act on this surmise. + + * * * * * + +_19 May._--I am surely in the toils. Last night the Count asked me in +the suavest tones to write three letters, one saying that my work here +was nearly done, and that I should start for home within a few days, +another that I was starting on the next morning from the time of the +letter, and the third that I had left the castle and arrived at +Bistritz. I would fain have rebelled, but felt that in the present state +of things it would be madness to quarrel openly with the Count whilst I +am so absolutely in his power; and to refuse would be to excite his +suspicion and to arouse his anger. He knows that I know too much, and +that I must not live, lest I be dangerous to him; my only chance is to +prolong my opportunities. Something may occur which will give me a +chance to escape. I saw in his eyes something of that gathering wrath +which was manifest when he hurled that fair woman from him. He explained +to me that posts were few and uncertain, and that my writing now would +ensure ease of mind to my friends; and he assured me with so much +impressiveness that he would countermand the later letters, which would +be held over at Bistritz until due time in case chance would admit of my +prolonging my stay, that to oppose him would have been to create new +suspicion. I therefore pretended to fall in with his views, and asked +him what dates I should put on the letters. He calculated a minute, and +then said:-- + +“The first should be June 12, the second June 19, and the third June +29.” + +I know now the span of my life. God help me! + + * * * * * + +_28 May._--There is a chance of escape, or at any rate of being able to +send word home. A band of Szgany have come to the castle, and are +encamped in the courtyard. These Szgany are gipsies; I have notes of +them in my book. They are peculiar to this part of the world, though +allied to the ordinary gipsies all the world over. There are thousands +of them in Hungary and Transylvania, who are almost outside all law. +They attach themselves as a rule to some great noble or _boyar_, and +call themselves by his name. They are fearless and without religion, +save superstition, and they talk only their own varieties of the Romany +tongue. + +I shall write some letters home, and shall try to get them to have them +posted. I have already spoken them through my window to begin +acquaintanceship. They took their hats off and made obeisance and many +signs, which, however, I could not understand any more than I could +their spoken language.... + + * * * * * + +I have written the letters. Mina’s is in shorthand, and I simply ask Mr. +Hawkins to communicate with her. To her I have explained my situation, +but without the horrors which I may only surmise. It would shock and +frighten her to death were I to expose my heart to her. Should the +letters not carry, then the Count shall not yet know my secret or the +extent of my knowledge.... + + * * * * * + +I have given the letters; I threw them through the bars of my window +with a gold piece, and made what signs I could to have them posted. The +man who took them pressed them to his heart and bowed, and then put them +in his cap. I could do no more. I stole back to the study, and began to +read. As the Count did not come in, I have written here.... + + * * * * * + +The Count has come. He sat down beside me, and said in his smoothest +voice as he opened two letters:-- + +“The Szgany has given me these, of which, though I know not whence they +come, I shall, of course, take care. See!”--he must have looked at +it--“one is from you, and to my friend Peter Hawkins; the other”--here +he caught sight of the strange symbols as he opened the envelope, and +the dark look came into his face, and his eyes blazed wickedly--“the +other is a vile thing, an outrage upon friendship and hospitality! It is +not signed. Well! so it cannot matter to us.” And he calmly held letter +and envelope in the flame of the lamp till they were consumed. Then he +went on:-- + +“The letter to Hawkins--that I shall, of course, send on, since it is +yours. Your letters are sacred to me. Your pardon, my friend, that +unknowingly I did break the seal. Will you not cover it again?” He held +out the letter to me, and with a courteous bow handed me a clean +envelope. I could only redirect it and hand it to him in silence. When +he went out of the room I could hear the key turn softly. A minute later +I went over and tried it, and the door was locked. + +When, an hour or two after, the Count came quietly into the room, his +coming awakened me, for I had gone to sleep on the sofa. He was very +courteous and very cheery in his manner, and seeing that I had been +sleeping, he said:-- + +“So, my friend, you are tired? Get to bed. There is the surest rest. I +may not have the pleasure to talk to-night, since there are many labours +to me; but you will sleep, I pray.” I passed to my room and went to bed, +and, strange to say, slept without dreaming. Despair has its own calms. + + * * * * * + +_31 May._--This morning when I woke I thought I would provide myself +with some paper and envelopes from my bag and keep them in my pocket, so +that I might write in case I should get an opportunity, but again a +surprise, again a shock! + +Every scrap of paper was gone, and with it all my notes, my memoranda, +relating to railways and travel, my letter of credit, in fact all that +might be useful to me were I once outside the castle. I sat and pondered +awhile, and then some thought occurred to me, and I made search of my +portmanteau and in the wardrobe where I had placed my clothes. + +The suit in which I had travelled was gone, and also my overcoat and +rug; I could find no trace of them anywhere. This looked like some new +scheme of villainy.... + + * * * * * + +_17 June._--This morning, as I was sitting on the edge of my bed +cudgelling my brains, I heard without a cracking of whips and pounding +and scraping of horses’ feet up the rocky path beyond the courtyard. +With joy I hurried to the window, and saw drive into the yard two great +leiter-wagons, each drawn by eight sturdy horses, and at the head of +each pair a Slovak, with his wide hat, great nail-studded belt, dirty +sheepskin, and high boots. They had also their long staves in hand. I +ran to the door, intending to descend and try and join them through the +main hall, as I thought that way might be opened for them. Again a +shock: my door was fastened on the outside. + +Then I ran to the window and cried to them. They looked up at me +stupidly and pointed, but just then the “hetman” of the Szgany came out, +and seeing them pointing to my window, said something, at which they +laughed. Henceforth no effort of mine, no piteous cry or agonised +entreaty, would make them even look at me. They resolutely turned away. +The leiter-wagons contained great, square boxes, with handles of thick +rope; these were evidently empty by the ease with which the Slovaks +handled them, and by their resonance as they were roughly moved. When +they were all unloaded and packed in a great heap in one corner of the +yard, the Slovaks were given some money by the Szgany, and spitting on +it for luck, lazily went each to his horse’s head. Shortly afterwards, I +heard the cracking of their whips die away in the distance. + + * * * * * + +_24 June, before morning._--Last night the Count left me early, and +locked himself into his own room. As soon as I dared I ran up the +winding stair, and looked out of the window, which opened south. I +thought I would watch for the Count, for there is something going on. +The Szgany are quartered somewhere in the castle and are doing work of +some kind. I know it, for now and then I hear a far-away muffled sound +as of mattock and spade, and, whatever it is, it must be the end of some +ruthless villainy. + +I had been at the window somewhat less than half an hour, when I saw +something coming out of the Count’s window. I drew back and watched +carefully, and saw the whole man emerge. It was a new shock to me to +find that he had on the suit of clothes which I had worn whilst +travelling here, and slung over his shoulder the terrible bag which I +had seen the women take away. There could be no doubt as to his quest, +and in my garb, too! This, then, is his new scheme of evil: that he will +allow others to see me, as they think, so that he may both leave +evidence that I have been seen in the towns or villages posting my own +letters, and that any wickedness which he may do shall by the local +people be attributed to me. + +It makes me rage to think that this can go on, and whilst I am shut up +here, a veritable prisoner, but without that protection of the law which +is even a criminal’s right and consolation. + +I thought I would watch for the Count’s return, and for a long time sat +doggedly at the window. Then I began to notice that there were some +quaint little specks floating in the rays of the moonlight. They were +like the tiniest grains of dust, and they whirled round and gathered in +clusters in a nebulous sort of way. I watched them with a sense of +soothing, and a sort of calm stole over me. I leaned back in the +embrasure in a more comfortable position, so that I could enjoy more +fully the aërial gambolling. + +Something made me start up, a low, piteous howling of dogs somewhere far +below in the valley, which was hidden from my sight. Louder it seemed to +ring in my ears, and the floating motes of dust to take new shapes to +the sound as they danced in the moonlight. I felt myself struggling to +awake to some call of my instincts; nay, my very soul was struggling, +and my half-remembered sensibilities were striving to answer the call. I +was becoming hypnotised! Quicker and quicker danced the dust; the +moonbeams seemed to quiver as they went by me into the mass of gloom +beyond. More and more they gathered till they seemed to take dim phantom +shapes. And then I started, broad awake and in full possession of my +senses, and ran screaming from the place. The phantom shapes, which were +becoming gradually materialised from the moonbeams, were those of the +three ghostly women to whom I was doomed. I fled, and felt somewhat +safer in my own room, where there was no moonlight and where the lamp +was burning brightly. + +When a couple of hours had passed I heard something stirring in the +Count’s room, something like a sharp wail quickly suppressed; and then +there was silence, deep, awful silence, which chilled me. With a +beating heart, I tried the door; but I was locked in my prison, and +could do nothing. I sat down and simply cried. + +As I sat I heard a sound in the courtyard without--the agonised cry of a +woman. I rushed to the window, and throwing it up, peered out between +the bars. There, indeed, was a woman with dishevelled hair, holding her +hands over her heart as one distressed with running. She was leaning +against a corner of the gateway. When she saw my face at the window she +threw herself forward, and shouted in a voice laden with menace:-- + +“Monster, give me my child!” + +She threw herself on her knees, and raising up her hands, cried the same +words in tones which wrung my heart. Then she tore her hair and beat her +breast, and abandoned herself to all the violences of extravagant +emotion. Finally, she threw herself forward, and, though I could not see +her, I could hear the beating of her naked hands against the door. + +Somewhere high overhead, probably on the tower, I heard the voice of the +Count calling in his harsh, metallic whisper. His call seemed to be +answered from far and wide by the howling of wolves. Before many minutes +had passed a pack of them poured, like a pent-up dam when liberated, +through the wide entrance into the courtyard. + +There was no cry from the woman, and the howling of the wolves was but +short. Before long they streamed away singly, licking their lips. + +I could not pity her, for I knew now what had become of her child, and +she was better dead. + +What shall I do? what can I do? How can I escape from this dreadful +thing of night and gloom and fear? + + * * * * * + +_25 June, morning._--No man knows till he has suffered from the night +how sweet and how dear to his heart and eye the morning can be. When the +sun grew so high this morning that it struck the top of the great +gateway opposite my window, the high spot which it touched seemed to me +as if the dove from the ark had lighted there. My fear fell from me as +if it had been a vaporous garment which dissolved in the warmth. I must +take action of some sort whilst the courage of the day is upon me. Last +night one of my post-dated letters went to post, the first of that fatal +series which is to blot out the very traces of my existence from the +earth. + +Let me not think of it. Action! + +It has always been at night-time that I have been molested or +threatened, or in some way in danger or in fear. I have not yet seen the +Count in the daylight. Can it be that he sleeps when others wake, that +he may be awake whilst they sleep? If I could only get into his room! +But there is no possible way. The door is always locked, no way for me. + +Yes, there is a way, if one dares to take it. Where his body has gone +why may not another body go? I have seen him myself crawl from his +window. Why should not I imitate him, and go in by his window? The +chances are desperate, but my need is more desperate still. I shall risk +it. At the worst it can only be death; and a man’s death is not a +calf’s, and the dreaded Hereafter may still be open to me. God help me +in my task! Good-bye, Mina, if I fail; good-bye, my faithful friend and +second father; good-bye, all, and last of all Mina! + + * * * * * + +_Same day, later._--I have made the effort, and God, helping me, have +come safely back to this room. I must put down every detail in order. I +went whilst my courage was fresh straight to the window on the south +side, and at once got outside on the narrow ledge of stone which runs +around the building on this side. The stones are big and roughly cut, +and the mortar has by process of time been washed away between them. I +took off my boots, and ventured out on the desperate way. I looked down +once, so as to make sure that a sudden glimpse of the awful depth would +not overcome me, but after that kept my eyes away from it. I knew pretty +well the direction and distance of the Count’s window, and made for it +as well as I could, having regard to the opportunities available. I did +not feel dizzy--I suppose I was too excited--and the time seemed +ridiculously short till I found myself standing on the window-sill and +trying to raise up the sash. I was filled with agitation, however, when +I bent down and slid feet foremost in through the window. Then I looked +around for the Count, but, with surprise and gladness, made a discovery. +The room was empty! It was barely furnished with odd things, which +seemed to have never been used; the furniture was something the same +style as that in the south rooms, and was covered with dust. I looked +for the key, but it was not in the lock, and I could not find it +anywhere. The only thing I found was a great heap of gold in one +corner--gold of all kinds, Roman, and British, and Austrian, and +Hungarian, and Greek and Turkish money, covered with a film of dust, as +though it had lain long in the ground. None of it that I noticed was +less than three hundred years old. There were also chains and ornaments, +some jewelled, but all of them old and stained. + +At one corner of the room was a heavy door. I tried it, for, since I +could not find the key of the room or the key of the outer door, which +was the main object of my search, I must make further examination, or +all my efforts would be in vain. It was open, and led through a stone +passage to a circular stairway, which went steeply down. I descended, +minding carefully where I went, for the stairs were dark, being only lit +by loopholes in the heavy masonry. At the bottom there was a dark, +tunnel-like passage, through which came a deathly, sickly odour, the +odour of old earth newly turned. As I went through the passage the smell +grew closer and heavier. At last I pulled open a heavy door which stood +ajar, and found myself in an old, ruined chapel, which had evidently +been used as a graveyard. The roof was broken, and in two places were +steps leading to vaults, but the ground had recently been dug over, and +the earth placed in great wooden boxes, manifestly those which had been +brought by the Slovaks. There was nobody about, and I made search for +any further outlet, but there was none. Then I went over every inch of +the ground, so as not to lose a chance. I went down even into the +vaults, where the dim light struggled, although to do so was a dread to +my very soul. Into two of these I went, but saw nothing except fragments +of old coffins and piles of dust; in the third, however, I made a +discovery. + +There, in one of the great boxes, of which there were fifty in all, on a +pile of newly dug earth, lay the Count! He was either dead or asleep, I +could not say which--for the eyes were open and stony, but without the +glassiness of death--and the cheeks had the warmth of life through all +their pallor; the lips were as red as ever. But there was no sign of +movement, no pulse, no breath, no beating of the heart. I bent over him, +and tried to find any sign of life, but in vain. He could not have lain +there long, for the earthy smell would have passed away in a few hours. +By the side of the box was its cover, pierced with holes here and there. +I thought he might have the keys on him, but when I went to search I saw +the dead eyes, and in them, dead though they were, such a look of hate, +though unconscious of me or my presence, that I fled from the place, and +leaving the Count’s room by the window, crawled again up the castle +wall. Regaining my room, I threw myself panting upon the bed and tried +to think.... + + * * * * * + +_29 June._--To-day is the date of my last letter, and the Count has +taken steps to prove that it was genuine, for again I saw him leave the +castle by the same window, and in my clothes. As he went down the wall, +lizard fashion, I wished I had a gun or some lethal weapon, that I might +destroy him; but I fear that no weapon wrought alone by man’s hand would +have any effect on him. I dared not wait to see him return, for I feared +to see those weird sisters. I came back to the library, and read there +till I fell asleep. + +I was awakened by the Count, who looked at me as grimly as a man can +look as he said:-- + +“To-morrow, my friend, we must part. You return to your beautiful +England, I to some work which may have such an end that we may never +meet. Your letter home has been despatched; to-morrow I shall not be +here, but all shall be ready for your journey. In the morning come the +Szgany, who have some labours of their own here, and also come some +Slovaks. When they have gone, my carriage shall come for you, and shall +bear you to the Borgo Pass to meet the diligence from Bukovina to +Bistritz. But I am in hopes that I shall see more of you at Castle +Dracula.” I suspected him, and determined to test his sincerity. +Sincerity! It seems like a profanation of the word to write it in +connection with such a monster, so asked him point-blank:-- + +“Why may I not go to-night?” + +“Because, dear sir, my coachman and horses are away on a mission.” + +“But I would walk with pleasure. I want to get away at once.” He smiled, +such a soft, smooth, diabolical smile that I knew there was some trick +behind his smoothness. He said:-- + +“And your baggage?” + +“I do not care about it. I can send for it some other time.” + +The Count stood up, and said, with a sweet courtesy which made me rub my +eyes, it seemed so real:-- + +“You English have a saying which is close to my heart, for its spirit is +that which rules our _boyars_: ‘Welcome the coming; speed the parting +guest.’ Come with me, my dear young friend. Not an hour shall you wait +in my house against your will, though sad am I at your going, and that +you so suddenly desire it. Come!” With a stately gravity, he, with the +lamp, preceded me down the stairs and along the hall. Suddenly he +stopped. + +“Hark!” + +Close at hand came the howling of many wolves. It was almost as if the +sound sprang up at the rising of his hand, just as the music of a great +orchestra seems to leap under the bâton of the conductor. After a pause +of a moment, he proceeded, in his stately way, to the door, drew back +the ponderous bolts, unhooked the heavy chains, and began to draw it +open. + +To my intense astonishment I saw that it was unlocked. Suspiciously, I +looked all round, but could see no key of any kind. + +As the door began to open, the howling of the wolves without grew louder +and angrier; their red jaws, with champing teeth, and their blunt-clawed +feet as they leaped, came in through the opening door. I knew then that +to struggle at the moment against the Count was useless. With such +allies as these at his command, I could do nothing. But still the door +continued slowly to open, and only the Count’s body stood in the gap. +Suddenly it struck me that this might be the moment and means of my +doom; I was to be given to the wolves, and at my own instigation. There +was a diabolical wickedness in the idea great enough for the Count, and +as a last chance I cried out:-- + +“Shut the door; I shall wait till morning!” and covered my face with my +hands to hide my tears of bitter disappointment. With one sweep of his +powerful arm, the Count threw the door shut, and the great bolts clanged +and echoed through the hall as they shot back into their places. + +In silence we returned to the library, and after a minute or two I went +to my own room. The last I saw of Count Dracula was his kissing his hand +to me; with a red light of triumph in his eyes, and with a smile that +Judas in hell might be proud of. + +When I was in my room and about to lie down, I thought I heard a +whispering at my door. I went to it softly and listened. Unless my ears +deceived me, I heard the voice of the Count:-- + +“Back, back, to your own place! Your time is not yet come. Wait! Have +patience! To-night is mine. To-morrow night is yours!” There was a low, +sweet ripple of laughter, and in a rage I threw open the door, and saw +without the three terrible women licking their lips. As I appeared they +all joined in a horrible laugh, and ran away. + +I came back to my room and threw myself on my knees. It is then so near +the end? To-morrow! to-morrow! Lord, help me, and those to whom I am +dear! + + * * * * * + +_30 June, morning._--These may be the last words I ever write in this +diary. I slept till just before the dawn, and when I woke threw myself +on my knees, for I determined that if Death came he should find me +ready. + +At last I felt that subtle change in the air, and knew that the morning +had come. Then came the welcome cock-crow, and I felt that I was safe. +With a glad heart, I opened my door and ran down to the hall. I had seen +that the door was unlocked, and now escape was before me. With hands +that trembled with eagerness, I unhooked the chains and drew back the +massive bolts. + +But the door would not move. Despair seized me. I pulled, and pulled, at +the door, and shook it till, massive as it was, it rattled in its +casement. I could see the bolt shot. It had been locked after I left the +Count. + +Then a wild desire took me to obtain that key at any risk, and I +determined then and there to scale the wall again and gain the Count’s +room. He might kill me, but death now seemed the happier choice of +evils. Without a pause I rushed up to the east window, and scrambled +down the wall, as before, into the Count’s room. It was empty, but that +was as I expected. I could not see a key anywhere, but the heap of gold +remained. I went through the door in the corner and down the winding +stair and along the dark passage to the old chapel. I knew now well +enough where to find the monster I sought. + +The great box was in the same place, close against the wall, but the lid +was laid on it, not fastened down, but with the nails ready in their +places to be hammered home. I knew I must reach the body for the key, so +I raised the lid, and laid it back against the wall; and then I saw +something which filled my very soul with horror. There lay the Count, +but looking as if his youth had been half renewed, for the white hair +and moustache were changed to dark iron-grey; the cheeks were fuller, +and the white skin seemed ruby-red underneath; the mouth was redder than +ever, for on the lips were gouts of fresh blood, which trickled from the +corners of the mouth and ran over the chin and neck. Even the deep, +burning eyes seemed set amongst swollen flesh, for the lids and pouches +underneath were bloated. It seemed as if the whole awful creature were +simply gorged with blood. He lay like a filthy leech, exhausted with his +repletion. I shuddered as I bent over to touch him, and every sense in +me revolted at the contact; but I had to search, or I was lost. The +coming night might see my own body a banquet in a similar way to those +horrid three. I felt all over the body, but no sign could I find of the +key. Then I stopped and looked at the Count. There was a mocking smile +on the bloated face which seemed to drive me mad. This was the being I +was helping to transfer to London, where, perhaps, for centuries to come +he might, amongst its teeming millions, satiate his lust for blood, and +create a new and ever-widening circle of semi-demons to batten on the +helpless. The very thought drove me mad. A terrible desire came upon me +to rid the world of such a monster. There was no lethal weapon at hand, +but I seized a shovel which the workmen had been using to fill the +cases, and lifting it high, struck, with the edge downward, at the +hateful face. But as I did so the head turned, and the eyes fell full +upon me, with all their blaze of basilisk horror. The sight seemed to +paralyse me, and the shovel turned in my hand and glanced from the face, +merely making a deep gash above the forehead. The shovel fell from my +hand across the box, and as I pulled it away the flange of the blade +caught the edge of the lid which fell over again, and hid the horrid +thing from my sight. The last glimpse I had was of the bloated face, +blood-stained and fixed with a grin of malice which would have held its +own in the nethermost hell. + +I thought and thought what should be my next move, but my brain seemed +on fire, and I waited with a despairing feeling growing over me. As I +waited I heard in the distance a gipsy song sung by merry voices coming +closer, and through their song the rolling of heavy wheels and the +cracking of whips; the Szgany and the Slovaks of whom the Count had +spoken were coming. With a last look around and at the box which +contained the vile body, I ran from the place and gained the Count’s +room, determined to rush out at the moment the door should be opened. +With strained ears, I listened, and heard downstairs the grinding of the +key in the great lock and the falling back of the heavy door. There must +have been some other means of entry, or some one had a key for one of +the locked doors. Then there came the sound of many feet tramping and +dying away in some passage which sent up a clanging echo. I turned to +run down again towards the vault, where I might find the new entrance; +but at the moment there seemed to come a violent puff of wind, and the +door to the winding stair blew to with a shock that set the dust from +the lintels flying. When I ran to push it open, I found that it was +hopelessly fast. I was again a prisoner, and the net of doom was closing +round me more closely. + +As I write there is in the passage below a sound of many tramping feet +and the crash of weights being set down heavily, doubtless the boxes, +with their freight of earth. There is a sound of hammering; it is the +box being nailed down. Now I can hear the heavy feet tramping again +along the hall, with many other idle feet coming behind them. + +The door is shut, and the chains rattle; there is a grinding of the key +in the lock; I can hear the key withdraw: then another door opens and +shuts; I hear the creaking of lock and bolt. + +Hark! in the courtyard and down the rocky way the roll of heavy wheels, +the crack of whips, and the chorus of the Szgany as they pass into the +distance. + +I am alone in the castle with those awful women. Faugh! Mina is a woman, +and there is nought in common. They are devils of the Pit! + +I shall not remain alone with them; I shall try to scale the castle wall +farther than I have yet attempted. I shall take some of the gold with +me, lest I want it later. I may find a way from this dreadful place. + +And then away for home! away to the quickest and nearest train! away +from this cursed spot, from this cursed land, where the devil and his +children still walk with earthly feet! + +At least God’s mercy is better than that of these monsters, and the +precipice is steep and high. At its foot a man may sleep--as a man. +Good-bye, all! Mina! + + + + +CHAPTER V + +_Letter from Miss Mina Murray to Miss Lucy Westenra._ + + +“_9 May._ + +“My dearest Lucy,-- + +“Forgive my long delay in writing, but I have been simply overwhelmed +with work. The life of an assistant schoolmistress is sometimes trying. +I am longing to be with you, and by the sea, where we can talk together +freely and build our castles in the air. I have been working very hard +lately, because I want to keep up with Thomas’s studies, and I have +been practising shorthand very assiduously. When we are married I shall +be able to be useful to Thomas, and if I can stenograph well enough I +can take down what he wants to say in this way and write it out for +him on the typewriter, at which also I am practising very hard. He +and I sometimes write letters in shorthand, and he is keeping a +stenographic journal of his travels abroad. When I am with you I +shall keep a diary in the same way. I don’t mean one of those +two-pages-to-the-week-with-Sunday-squeezed-in-a-corner diaries, but a +sort of journal which I can write in whenever I feel inclined. I do not +suppose there will be much of interest to other people; but it is not +intended for them. I may show it to Thomas some day if there is in it +anything worth sharing, but it is really an exercise book. I shall try +to do what I see lady journalists do: interviewing and writing +descriptions and trying to remember conversations. I am told that, with +a little practice, one can remember all that goes on or that one hears +said during a day. However, we shall see. I will tell you of my little +plans when we meet. I have just had a few hurried lines from Thomas +from Transylvania. He is well, and will be returning in about a week. I +am longing to hear all his news. It must be so nice to see strange +countries. I wonder if we--I mean Thomas and I--shall ever see them +together. There is the ten o’clock bell ringing. Good-bye. + +“Your loving + +“MINA. + +“Tell me all the news when you write. You have not told me anything for +a long time. I hear rumours, and especially of a tall, handsome, +curly-haired man???” + + +_Letter, Lucy Westenra to Mina Murray_. + +“_17, Chatham Street_, + +“_Wednesday_. + +“My dearest Mina,-- + +“I must say you tax me _very_ unfairly with being a bad correspondent. I +wrote to you _twice_ since we parted, and your last letter was only your +_second_. Besides, I have nothing to tell you. There is really nothing +to interest you. Town is very pleasant just now, and we go a good deal +to picture-galleries and for walks and rides in the park. As to the +tall, curly-haired man, I suppose it was the one who was with me at the +last Pop. Some one has evidently been telling tales. That was Mr. +Holmwood. He often comes to see us, and he and mamma get on very well +together; they have so many things to talk about in common. We met some +time ago a man that would just _do for you_, if you were not already +engaged to Thomas. He is an excellent _parti_, being handsome, well +off, and of good birth. He is a doctor and really clever. Just fancy! He +is only nine-and-twenty, and he has an immense lunatic asylum all under +his own care. Mr. Holmwood introduced him to me, and he called here to +see us, and often comes now. I think he is one of the most resolute men +I ever saw, and yet the most calm. He seems absolutely imperturbable. I +can fancy what a wonderful power he must have over his patients. He has +a curious habit of looking one straight in the face, as if trying to +read one’s thoughts. He tries this on very much with me, but I flatter +myself he has got a tough nut to crack. I know that from my glass. Do +you ever try to read your own face? _I do_, and I can tell you it is not +a bad study, and gives you more trouble than you can well fancy if you +have never tried it. He says that I afford him a curious psychological +study, and I humbly think I do. I do not, as you know, take sufficient +interest in dress to be able to describe the new fashions. Dress is a +bore. That is slang again, but never mind; Arthur says that every day. +There, it is all out. Mina, we have told all our secrets to each other +since we were _children_; we have slept together and eaten together, and +laughed and cried together; and now, though I have spoken, I would like +to speak more. Oh, Mina, couldn’t you guess? I love him. I am blushing +as I write, for although I _think_ he loves me, he has not told me so in +words. But oh, Mina, I love him; I love him; I love him! There, that +does me good. I wish I were with you, dear, sitting by the fire +undressing, as we used to sit; and I would try to tell you what I feel. +I do not know how I am writing this even to you. I am afraid to stop, +or I should tear up the letter, and I don’t want to stop, for I _do_ so +want to tell you all. Let me hear from you _at once_, and tell me all +that you think about it. Mina, I must stop. Good-night. Bless me in your +prayers; and, Mina, pray for my happiness. + +“LUCY. + +“P.S.--I need not tell you this is a secret. Good-night again. + +“L.” + +_Letter, Lucy Westenra to Mina Murray_. + +“_24 May_. + +“My dearest Mina,-- + +“Thanks, and thanks, and thanks again for your sweet letter. It was so +nice to be able to tell you and to have your sympathy. + +“My dear, it never rains but it pours. How true the old proverbs are. +Here am I, who shall be twenty in September, and yet I never had a +proposal till to-day, not a real proposal, and to-day I have had three. +Just fancy! THREE proposals in one day! Isn’t it awful! I feel sorry, +really and truly sorry, for two of the poor fellows. Oh, Mina, I am so +happy that I don’t know what to do with myself. And three proposals! +But, for goodness’ sake, don’t tell any of the girls, or they would be +getting all sorts of extravagant ideas and imagining themselves injured +and slighted if in their very first day at home they did not get six at +least. Some girls are so vain! You and I, Mina dear, who are engaged and +are going to settle down soon soberly into old married women, can +despise vanity. Well, I must tell you about the three, but you must keep +it a secret, dear, from _every one_, except, of course, Thomas. You +will tell him, because I would, if I were in your place, certainly tell +Arthur. A woman ought to tell her husband everything--don’t you think +so, dear?--and I must be fair. Men like women, certainly their wives, to +be quite as fair as they are; and women, I am afraid, are not always +quite as fair as they should be. Well, my dear, number One came just +before lunch. I told you of him, Dr. John Seward, the lunatic-asylum +man, with the strong jaw and the good forehead. He was very cool +outwardly, but was nervous all the same. He had evidently been schooling +himself as to all sorts of little things, and remembered them; but he +almost managed to sit down on his silk hat, which men don’t generally do +when they are cool, and then when he wanted to appear at ease he kept +playing with a lancet in a way that made me nearly scream. He spoke to +me, Mina, very straightforwardly. He told me how dear I was to him, +though he had known me so little, and what his life would be with me to +help and cheer him. He was going to tell me how unhappy he would be if I +did not care for him, but when he saw me cry he said that he was a brute +and would not add to my present trouble. Then he broke off and asked if +I could love him in time; and when I shook my head his hands trembled, +and then with some hesitation he asked me if I cared already for any one +else. He put it very nicely, saying that he did not want to wring my +confidence from me, but only to know, because if a woman’s heart was +free a man might have hope. And then, Mina, I felt a sort of duty to +tell him that there was some one. I only told him that much, and then he +stood up, and he looked very strong and very grave as he took both my +hands in his and said he hoped I would be happy, and that if I ever +wanted a friend I must count him one of my best. Oh, Mina dear, I can’t +help crying: and you must excuse this letter being all blotted. Being +proposed to is all very nice and all that sort of thing, but it isn’t at +all a happy thing when you have to see a poor fellow, whom you know +loves you honestly, going away and looking all broken-hearted, and to +know that, no matter what he may say at the moment, you are passing +quite out of his life. My dear, I must stop here at present, I feel so +miserable, though I am so happy. + +“_Evening._ + +“Arthur has just gone, and I feel in better spirits than when I left +off, so I can go on telling you about the day. Well, my dear, number Two +came after lunch. He is such a nice fellow, an American from Texas, and +he looks so young and so fresh that it seems almost impossible that he +has been to so many places and has had such adventures. I sympathise +with poor Desdemona when she had such a dangerous stream poured in her +ear, even by a black man. I suppose that we women are such cowards that +we think a man will save us from fears, and we marry him. I know now +what I would do if I were a man and wanted to make a girl love me. No, I +don’t, for there was Mr. Morris telling us his stories, and Arthur never +told any, and yet---- My dear, I am somewhat previous. Mr. Quincey P. +Morris found me alone. It seems that a man always does find a girl +alone. No, he doesn’t, for Arthur tried twice to _make_ a chance, and I +helping him all I could; I am not ashamed to say it now. I must tell you +beforehand that Mr. Morris doesn’t always speak slang--that is to say, +he never does so to strangers or before them, for he is really well +educated and has exquisite manners--but he found out that it amused me +to hear him talk American slang, and whenever I was present, and there +was no one to be shocked, he said such funny things. I am afraid, my +dear, he has to invent it all, for it fits exactly into whatever else he +has to say. But this is a way slang has. I do not know myself if I shall +ever speak slang; I do not know if Arthur likes it, as I have never +heard him use any as yet. Well, Mr. Morris sat down beside me and looked +as happy and jolly as he could, but I could see all the same that he was +very nervous. He took my hand in his, and said ever so sweetly:-- + +“‘Miss Lucy, I know I ain’t good enough to regulate the fixin’s of your +little shoes, but I guess if you wait till you find a man that is you +will go join them seven young women with the lamps when you quit. Won’t +you just hitch up alongside of me and let us go down the long road +together, driving in double harness?’ + +“Well, he did look so good-humoured and so jolly that it didn’t seem +half so hard to refuse him as it did poor Dr. Seward; so I said, as +lightly as I could, that I did not know anything of hitching, and that I +wasn’t broken to harness at all yet. Then he said that he had spoken in +a light manner, and he hoped that if he had made a mistake in doing so +on so grave, so momentous, an occasion for him, I would forgive him. He +really did look serious when he was saying it, and I couldn’t help +feeling a bit serious too--I know, Mina, you will think me a horrid +flirt--though I couldn’t help feeling a sort of exultation that he was +number two in one day. And then, my dear, before I could say a word he +began pouring out a perfect torrent of love-making, laying his very +heart and soul at my feet. He looked so earnest over it that I shall +never again think that a man must be playful always, and never earnest, +because he is merry at times. I suppose he saw something in my face +which checked him, for he suddenly stopped, and said with a sort of +manly fervour that I could have loved him for if I had been free:-- + +“‘Lucy, you are an honest-hearted girl, I know. I should not be here +speaking to you as I am now if I did not believe you clean grit, right +through to the very depths of your soul. Tell me, like one good fellow +to another, is there any one else that you care for? And if there is +I’ll never trouble you a hair’s breadth again, but will be, if you will +let me, a very faithful friend.’ + +“My dear Mina, why are men so noble when we women are so little worthy +of them? Here was I almost making fun of this great-hearted, true +gentleman. I burst into tears--I am afraid, my dear, you will think +this a very sloppy letter in more ways than one--and I really felt very +badly. Why can’t they let a girl marry three men, or as many as want +her, and save all this trouble? But this is heresy, and I must not say +it. I am glad to say that, though I was crying, I was able to look into +Mr. Morris’s brave eyes, and I told him out straight:-- + +“‘Yes, there is some one I love, though he has not told me yet that he +even loves me.’ I was right to speak to him so frankly, for quite a +light came into his face, and he put out both his hands and took mine--I +think I put them into his--and said in a hearty way:-- + +“‘That’s my brave girl. It’s better worth being late for a chance of +winning you than being in time for any other girl in the world. Don’t +cry, my dear. If it’s for me, I’m a hard nut to crack; and I take it +standing up. If that other fellow doesn’t know his happiness, well, he’d +better look for it soon, or he’ll have to deal with me. Little girl, +your honesty and pluck have made me a friend, and that’s rarer than a +lover; it’s more unselfish anyhow. My dear, I’m going to have a pretty +lonely walk between this and Kingdom Come. Won’t you give me one kiss? +It’ll be something to keep off the darkness now and then. You can, you +know, if you like, for that other good fellow--he must be a good fellow, +my dear, and a fine fellow, or you could not love him--hasn’t spoken +yet.’ That quite won me, Mina, for it _was_ brave and sweet of him, and +noble, too, to a rival--wasn’t it?--and he so sad; so I leant over and +kissed him. He stood up with my two hands in his, and as he looked down +into my face--I am afraid I was blushing very much--he said:-- + +“‘Little girl, I hold your hand, and you’ve kissed me, and if these +things don’t make us friends nothing ever will. Thank you for your sweet +honesty to me, and good-bye.’ He wrung my hand, and taking up his hat, +went straight out of the room without looking back, without a tear or a +quiver or a pause; and I am crying like a baby. Oh, why must a man like +that be made unhappy when there are lots of girls about who would +worship the very ground he trod on? I know I would if I were free--only +I don’t want to be free. My dear, this quite upset me, and I feel I +cannot write of happiness just at once, after telling you of it; and I +don’t wish to tell of the number three until it can be all happy. + +“Ever your loving + +“LUCY. + +“P.S.--Oh, about number Three--I needn’t tell you of number Three, need +I? Besides, it was all so confused; it seemed only a moment from his +coming into the room till both his arms were round me, and he was +kissing me. I am very, very happy, and I don’t know what I have done to +deserve it. I must only try in the future to show that I am not +ungrateful to God for all His goodness to me in sending to me such a +lover, such a husband, and such a friend. + +“Good-bye.” + + +_Dr. Seward’s Diary._ + +(Kept in phonograph) + +_25 May._--Ebb tide in appetite to-day. Cannot eat, cannot rest, so +diary instead. Since my rebuff of yesterday I have a sort of empty +feeling; nothing in the world seems of sufficient importance to be worth +the doing.... As I knew that the only cure for this sort of thing was +work, I went down amongst the patients. I picked out one who has +afforded me a study of much interest. He is so quaint that I am +determined to understand him as well as I can. To-day I seemed to get +nearer than ever before to the heart of his mystery. + +I questioned him more fully than I had ever done, with a view to making +myself master of the facts of his hallucination. In my manner of doing +it there was, I now see, something of cruelty. I seemed to wish to keep +him to the point of his madness--a thing which I avoid with the patients +as I would the mouth of hell. + +(_Mem._, under what circumstances would I _not_ avoid the pit of hell?) +_Omnia Romæ venalia sunt._ Hell has its price! _verb. sap._ If there be +anything behind this instinct it will be valuable to trace it afterwards +_accurately_, so I had better commence to do so, therefore-- + +R. M. Renfield, ætat 59.--Sanguine temperament; great physical strength; +morbidly excitable; periods of gloom, ending in some fixed idea which I +cannot make out. I presume that the sanguine temperament itself and the +disturbing influence end in a mentally-accomplished finish; a possibly +dangerous man, probably dangerous if unselfish. In selfish men caution +is as secure an armour for their foes as for themselves. What I think of +on this point is, when self is the fixed point the centripetal force is +balanced with the centrifugal; when duty, a cause, etc., is the fixed +point, the latter force is paramount, and only accident or a series of +accidents can balance it. + + +_Letter, Quincey P. Morris to Hon. Arthur Holmwood._ + +“_25 May._ + +“My dear Art,-- + +“We’ve told yarns by the camp-fire in the prairies; and dressed one +another’s wounds after trying a landing at the Marquesas; and drunk +healths on the shore of Titicaca. There are more yarns to be told, and +other wounds to be healed, and another health to be drunk. Won’t you let +this be at my camp-fire to-morrow night? I have no hesitation in asking +you, as I know a certain lady is engaged to a certain dinner-party, and +that you are free. There will only be one other, our old pal at the +Korea, Jack Seward. He’s coming, too, and we both want to mingle our +weeps over the wine-cup, and to drink a health with all our hearts to +the happiest man in all the wide world, who has won the noblest heart +that God has made and the best worth winning. We promise you a hearty +welcome, and a loving greeting, and a health as true as your own right +hand. We shall both swear to leave you at home if you drink too deep to +a certain pair of eyes. Come! + +“Yours, as ever and always, + +“QUINCEY P. MORRIS.” + + +_Telegram from Arthur Holmwood to Quincey P. Morris._ + +“_26 May._ + +“Count me in every time. I bear messages which will make both your ears +tingle. + +“ART.” + + + + +CHAPTER VI + +MINA MURRAY’S JOURNAL + + +_24 July. Whitby._--Lucy met me at the station, looking sweeter and +lovelier than ever, and we drove up to the house at the Crescent in +which they have rooms. This is a lovely place. The little river, the +Esk, runs through a deep valley, which broadens out as it comes near the +harbour. A great viaduct runs across, with high piers, through which the +view seems somehow further away than it really is. The valley is +beautifully green, and it is so steep that when you are on the high land +on either side you look right across it, unless you are near enough to +see down. The houses of the old town--the side away from us--are all +red-roofed, and seem piled up one over the other anyhow, like the +pictures we see of Nuremberg. Right over the town is the ruin of Whitby +Abbey, which was sacked by the Danes, and which is the scene of part of +“Marmion,” where the girl was built up in the wall. It is a most noble +ruin, of immense size, and full of beautiful and romantic bits; there is +a legend that a white lady is seen in one of the windows. Between it and +the town there is another church, the parish one, round which is a big +graveyard, all full of tombstones. This is to my mind the nicest spot in +Whitby, for it lies right over the town, and has a full view of the +harbour and all up the bay to where the headland called Kettleness +stretches out into the sea. It descends so steeply over the harbour that +part of the bank has fallen away, and some of the graves have been +destroyed. In one place part of the stonework of the graves stretches +out over the sandy pathway far below. There are walks, with seats beside +them, through the churchyard; and people go and sit there all day long +looking at the beautiful view and enjoying the breeze. I shall come and +sit here very often myself and work. Indeed, I am writing now, with my +book on my knee, and listening to the talk of three old men who are +sitting beside me. They seem to do nothing all day but sit up here and +talk. + +The harbour lies below me, with, on the far side, one long granite wall +stretching out into the sea, with a curve outwards at the end of it, in +the middle of which is a lighthouse. A heavy sea-wall runs along outside +of it. On the near side, the sea-wall makes an elbow crooked inversely, +and its end too has a lighthouse. Between the two piers there is a +narrow opening into the harbour, which then suddenly widens. + +It is nice at high water; but when the tide is out it shoals away to +nothing, and there is merely the stream of the Esk, running between +banks of sand, with rocks here and there. Outside the harbour on this +side there rises for about half a mile a great reef, the sharp edge of +which runs straight out from behind the south lighthouse. At the end of +it is a buoy with a bell, which swings in bad weather, and sends in a +mournful sound on the wind. They have a legend here that when a ship is +lost bells are heard out at sea. I must ask the old man about this; he +is coming this way.... + +He is a funny old man. He must be awfully old, for his face is all +gnarled and twisted like the bark of a tree. He tells me that he is +nearly a hundred, and that he was a sailor in the Greenland fishing +fleet when Waterloo was fought. He is, I am afraid, a very sceptical +person, for when I asked him about the bells at sea and the White Lady +at the abbey he said very brusquely:-- + +“I wouldn’t fash masel’ about them, miss. Them things be all wore out. +Mind, I don’t say that they never was, but I do say that they wasn’t in +my time. They be all very well for comers and trippers, an’ the like, +but not for a nice young lady like you. Them feet-folks from York and +Leeds that be always eatin’ cured herrin’s an’ drinkin’ tea an’ lookin’ +out to buy cheap jet would creed aught. I wonder masel’ who’d be +bothered tellin’ lies to them--even the newspapers, which is full of +fool-talk.” I thought he would be a good person to learn interesting +things from, so I asked him if he would mind telling me something about +the whale-fishing in the old days. He was just settling himself to begin +when the clock struck six, whereupon he laboured to get up, and said:-- + +“I must gang ageeanwards home now, miss. My grand-daughter doesn’t like +to be kept waitin’ when the tea is ready, for it takes me time to +crammle aboon the grees, for there be a many of ’em; an’, miss, I lack +belly-timber sairly by the clock.” + +He hobbled away, and I could see him hurrying, as well as he could, down +the steps. The steps are a great feature on the place. They lead from +the town up to the church, there are hundreds of them--I do not know how +many--and they wind up in a delicate curve; the slope is so gentle that +a horse could easily walk up and down them. I think they must originally +have had something to do with the abbey. I shall go home too. Lucy went +out visiting with her mother, and as they were only duty calls, I did +not go. They will be home by this. + + * * * * * + +_1 August._--I came up here an hour ago with Lucy, and we had a most +interesting talk with my old friend and the two others who always come +and join him. He is evidently the Sir Oracle of them, and I should think +must have been in his time a most dictatorial person. He will not admit +anything, and downfaces everybody. If he can’t out-argue them he bullies +them, and then takes their silence for agreement with his views. Lucy +was looking sweetly pretty in her white lawn frock; she has got a +beautiful colour since she has been here. I noticed that the old men did +not lose any time in coming up and sitting near her when we sat down. +She is so sweet with old people; I think they all fell in love with her +on the spot. Even my old man succumbed and did not contradict her, but +gave me double share instead. I got him on the subject of the legends, +and he went off at once into a sort of sermon. I must try to remember it +and put it down:-- + +“It be all fool-talk, lock, stock, and barrel; that’s what it be, an’ +nowt else. These bans an’ wafts an’ boh-ghosts an’ barguests an’ bogles +an’ all anent them is only fit to set bairns an’ dizzy women +a-belderin’. They be nowt but air-blebs. They, an’ all grims an’ signs +an’ warnin’s, be all invented by parsons an’ illsome beuk-bodies an’ +railway touters to skeer an’ scunner hafflin’s, an’ to get folks to do +somethin’ that they don’t other incline to. It makes me ireful to think +o’ them. Why, it’s them that, not content with printin’ lies on paper +an’ preachin’ them out of pulpits, does want to be cuttin’ them on the +tombstones. Look here all around you in what airt ye will; all them +steans, holdin’ up their heads as well as they can out of their pride, +is acant--simply tumblin’ down with the weight o’ the lies wrote on +them, ‘Here lies the body’ or ‘Sacred to the memory’ wrote on all of +them, an’ yet in nigh half of them there bean’t no bodies at all; an’ +the memories of them bean’t cared a pinch of snuff about, much less +sacred. Lies all of them, nothin’ but lies of one kind or another! My +gog, but it’ll be a quare scowderment at the Day of Judgment when they +come tumblin’ up in their death-sarks, all jouped together an’ tryin’ to +drag their tombsteans with them to prove how good they was; some of them +trimmlin’ and ditherin’, with their hands that dozzened an’ slippy from +lyin’ in the sea that they can’t even keep their grup o’ them.” + +I could see from the old fellow’s self-satisfied air and the way in +which he looked round for the approval of his cronies that he was +“showing off,” so I put in a word to keep him going:-- + +“Oh, Mr. Swales, you can’t be serious. Surely these tombstones are not +all wrong?” + +“Yabblins! There may be a poorish few not wrong, savin’ where they make +out the people too good; for there be folk that do think a balm-bowl be +like the sea, if only it be their own. The whole thing be only lies. Now +look you here; you come here a stranger, an’ you see this kirk-garth.” I +nodded, for I thought it better to assent, though I did not quite +understand his dialect. I knew it had something to do with the church. +He went on: “And you consate that all these steans be aboon folk that be +happed here, snod an’ snog?” I assented again. “Then that be just where +the lie comes in. Why, there be scores of these lay-beds that be toom as +old Dun’s ’bacca-box on Friday night.” He nudged one of his companions, +and they all laughed. “And my gog! how could they be otherwise? Look at +that one, the aftest abaft the bier-bank: read it!” I went over and +read:-- + +“Edward Spencelagh, master mariner, murdered by pirates off the coast of +Andres, April, 1854, æt. 30.” When I came back Mr. Swales went on:-- + +“Who brought him home, I wonder, to hap him here? Murdered off the coast +of Andres! an’ you consated his body lay under! Why, I could name ye a +dozen whose bones lie in the Greenland seas above”--he pointed +northwards--“or where the currents may have drifted them. There be the +steans around ye. Ye can, with your young eyes, read the small-print of +the lies from here. This Braithwaite Lowrey--I knew his father, lost in +the _Lively_ off Greenland in ’20; or Andrew Woodhouse, drowned in the +same seas in 1777; or John Paxton, drowned off Cape Farewell a year +later; or old John Rawlings, whose grandfather sailed with me, drowned +in the Gulf of Finland in ’50. Do ye think that all these men will have +to make a rush to Whitby when the trumpet sounds? I have me antherums +aboot it! I tell ye that when they got here they’d be jommlin’ an’ +jostlin’ one another that way that it ’ud be like a fight up on the ice +in the old days, when we’d be at one another from daylight to dark, an’ +tryin’ to tie up our cuts by the light of the aurora borealis.” This was +evidently local pleasantry, for the old man cackled over it, and his +cronies joined in with gusto. + +“But,” I said, “surely you are not quite correct, for you start on the +assumption that all the poor people, or their spirits, will have to +take their tombstones with them on the Day of Judgment. Do you think +that will be really necessary?” + +“Well, what else be they tombstones for? Answer me that, miss!” + +“To please their relatives, I suppose.” + +“To please their relatives, you suppose!” This he said with intense +scorn. “How will it pleasure their relatives to know that lies is wrote +over them, and that everybody in the place knows that they be lies?” He +pointed to a stone at our feet which had been laid down as a slab, on +which the seat was rested, close to the edge of the cliff. “Read the +lies on that thruff-stean,” he said. The letters were upside down to me +from where I sat, but Lucy was more opposite to them, so she leant over +and read:-- + +“Sacred to the memory of George Canon, who died, in the hope of a +glorious resurrection, on July, 29, 1873, falling from the rocks at +Kettleness. This tomb was erected by his sorrowing mother to her dearly +beloved son. ‘He was the only son of his mother, and she was a widow.’ +Really, Mr. Swales, I don’t see anything very funny in that!” She spoke +her comment very gravely and somewhat severely. + +“Ye don’t see aught funny! Ha! ha! But that’s because ye don’t gawm the +sorrowin’ mother was a hell-cat that hated him because he was +acrewk’d--a regular lamiter he was--an’ he hated her so that he +committed suicide in order that she mightn’t get an insurance she put on +his life. He blew nigh the top of his head off with an old musket that +they had for scarin’ the crows with. ’Twarn’t for crows then, for it +brought the clegs and the dowps to him. That’s the way he fell off the +rocks. And, as to hopes of a glorious resurrection, I’ve often heard him +say masel’ that he hoped he’d go to hell, for his mother was so pious +that she’d be sure to go to heaven, an’ he didn’t want to addle where +she was. Now isn’t that stean at any rate”--he hammered it with his +stick as he spoke--“a pack of lies? and won’t it make Gabriel keckle +when Geordie comes pantin’ up the grees with the tombstean balanced on +his hump, and asks it to be took as evidence!” + +I did not know what to say, but Lucy turned the conversation as she +said, rising up:-- + +“Oh, why did you tell us of this? It is my favourite seat, and I cannot +leave it; and now I find I must go on sitting over the grave of a +suicide.” + +“That won’t harm ye, my pretty; an’ it may make poor Geordie gladsome to +have so trim a lass sittin’ on his lap. That won’t hurt ye. Why, I’ve +sat here off an’ on for nigh twenty years past, an’ it hasn’t done me +no harm. Don’t ye fash about them as lies under ye, or that doesn’ lie +there either! It’ll be time for ye to be getting scart when ye see the +tombsteans all run away with, and the place as bare as a stubble-field. +There’s the clock, an’ I must gang. My service to ye, ladies!” And off +he hobbled. + +Lucy and I sat awhile, and it was all so beautiful before us that we +took hands as we sat; and she told me all over again about Arthur and +their coming marriage. That made me just a little heart-sick, for I +haven’t heard from Thomas for a whole month. + + * * * * * + +_The same day._ I came up here alone, for I am very sad. There was no +letter for me. I hope there cannot be anything the matter with Thomas. +The clock has just struck nine. I see the lights scattered all over the +town, sometimes in rows where the streets are, and sometimes singly; +they run right up the Esk and die away in the curve of the valley. To my +left the view is cut off by a black line of roof of the old house next +the abbey. The sheep and lambs are bleating in the fields away behind +me, and there is a clatter of a donkey’s hoofs up the paved road below. +The band on the pier is playing a harsh waltz in good time, and further +along the quay there is a Salvation Army meeting in a back street. +Neither of the bands hears the other, but up here I hear and see them +both. I wonder where Thomas is and if he is thinking of me! I wish he +were here. + + +_Dr. Seward’s Diary._ + +_5 June._--The case of Renfield grows more interesting the more I get to +understand the man. He has certain qualities very largely developed; +selfishness, secrecy, and purpose. I wish I could get at what is the +object of the latter. He seems to have some settled scheme of his own, +but what it is I do not yet know. His redeeming quality is a love of +animals, though, indeed, he has such curious turns in it that I +sometimes imagine he is only abnormally cruel. His pets are of odd +sorts. Just now his hobby is catching flies. He has at present such a +quantity that I have had myself to expostulate. To my astonishment, he +did not break out into a fury, as I expected, but took the matter in +simple seriousness. He thought for a moment, and then said: “May I have +three days? I shall clear them away.” Of course, I said that would do. I +must watch him. + + * * * * * + +_18 June._--He has turned his mind now to spiders, and has got several +very big fellows in a box. He keeps feeding them with his flies, and +the number of the latter is becoming sensibly diminished, although he +has used half his food in attracting more flies from outside to his +room. + + * * * * * + +_1 July._--His spiders are now becoming as great a nuisance as his +flies, and to-day I told him that he must get rid of them. He looked +very sad at this, so I said that he must clear out some of them, at all +events. He cheerfully acquiesced in this, and I gave him the same time +as before for reduction. He disgusted me much while with him, for when a +horrid blow-fly, bloated with some carrion food, buzzed into the room, +he caught it, held it exultantly for a few moments between his finger +and thumb, and, before I knew what he was going to do, put it in his +mouth and ate it. I scolded him for it, but he argued quietly that it +was very good and very wholesome; that it was life, strong life, and +gave life to him. This gave me an idea, or the rudiment of one. I must +watch how he gets rid of his spiders. He has evidently some deep problem +in his mind, for he keeps a little note-book in which he is always +jotting down something. Whole pages of it are filled with masses of +figures, generally single numbers added up in batches, and then the +totals added in batches again, as though he were “focussing” some +account, as the auditors put it. + + * * * * * + +_8 July._--There is a method in his madness, and the rudimentary idea in +my mind is growing. It will be a whole idea soon, and then, oh, +unconscious cerebration! you will have to give the wall to your +conscious brother. I kept away from my friend for a few days, so that I +might notice if there were any change. Things remain as they were except +that he has parted with some of his pets and got a new one. He has +managed to get a sparrow, and has already partially tamed it. His means +of taming is simple, for already the spiders have diminished. Those that +do remain, however, are well fed, for he still brings in the flies by +tempting them with his food. + + * * * * * + +_19 July._--We are progressing. My friend has now a whole colony of +sparrows, and his flies and spiders are almost obliterated. When I came +in he ran to me and said he wanted to ask me a great favour--a very, +very great favour; and as he spoke he fawned on me like a dog. I asked +him what it was, and he said, with a sort of rapture in his voice and +bearing:-- + +“A kitten, a nice little, sleek playful kitten, that I can play with, +and teach, and feed--and feed--and feed!” I was not unprepared for this +request, for I had noticed how his pets went on increasing in size and +vivacity, but I did not care that his pretty family of tame sparrows +should be wiped out in the same manner as the flies and the spiders; so +I said I would see about it, and asked him if he would not rather have a +cat than a kitten. His eagerness betrayed him as he answered:-- + +“Oh, yes, I would like a cat! I only asked for a kitten lest you should +refuse me a cat. No one would refuse me a kitten, would they?” I shook +my head, and said that at present I feared it would not be possible, but +that I would see about it. His face fell, and I could see a warning of +danger in it, for there was a sudden fierce, sidelong look which meant +killing. The man is an undeveloped homicidal maniac. I shall test him +with his present craving and see how it will work out; then I shall know +more. + + * * * * * + +_10 p. m._--I have visited him again and found him sitting in a corner +brooding. When I came in he threw himself on his knees before me and +implored me to let him have a cat; that his salvation depended upon it. +I was firm, however, and told him that he could not have it, whereupon +he went without a word, and sat down, gnawing his fingers, in the corner +where I had found him. I shall see him in the morning early. + + * * * * * + +_20 July._--Visited Renfield very early, before the attendant went his +rounds. Found him up and humming a tune. He was spreading out his sugar, +which he had saved, in the window, and was manifestly beginning his +fly-catching again; and beginning it cheerfully and with a good grace. I +looked around for his birds, and not seeing them, asked him where they +were. He replied, without turning round, that they had all flown away. +There were a few feathers about the room and on his pillow a drop of +blood. I said nothing, but went and told the keeper to report to me if +there were anything odd about him during the day. + + * * * * * + +_11 a. m._--The attendant has just been to me to say that Renfield has +been very sick and has disgorged a whole lot of feathers. “My belief is, +doctor,” he said, “that he has eaten his birds, and that he just took +and ate them raw!” + + * * * * * + +_11 p. m._--I gave Renfield a strong opiate to-night, enough to make +even him sleep, and took away his pocket-book to look at it. The thought +that has been buzzing about my brain lately is complete, and the theory +proved. My homicidal maniac is of a peculiar kind. I shall have to +invent a new classification for him, and call him a zoöphagous +(life-eating) maniac; what he desires is to absorb as many lives as he +can, and he has laid himself out to achieve it in a cumulative way. He +gave many flies to one spider and many spiders to one bird, and then +wanted a cat to eat the many birds. What would have been his later +steps? It would almost be worth while to complete the experiment. It +might be done if there were only a sufficient cause. Men sneered at +vivisection, and yet look at its results to-day! Why not advance science +in its most difficult and vital aspect--the knowledge of the brain? Had +I even the secret of one such mind--did I hold the key to the fancy of +even one lunatic--I might advance my own branch of science to a pitch +compared with which Burdon-Sanderson’s physiology or Ferrier’s +brain-knowledge would be as nothing. If only there were a sufficient +cause! I must not think too much of this, or I may be tempted; a good +cause might turn the scale with me, for may not I too be of an +exceptional brain, congenitally? + +How well the man reasoned; lunatics always do within their own scope. I +wonder at how many lives he values a man, or if at only one. He has +closed the account most accurately, and to-day begun a new record. How +many of us begin a new record with each day of our lives? + +To me it seems only yesterday that my whole life ended with my new hope, +and that truly I began a new record. So it will be until the Great +Recorder sums me up and closes my ledger account with a balance to +profit or loss. Oh, Lucy, Lucy, I cannot be angry with you, nor can I be +angry with my friend whose happiness is yours; but I must only wait on +hopeless and work. Work! work! + +If I only could have as strong a cause as my poor mad friend there--a +good, unselfish cause to make me work--that would be indeed happiness. + + +_Mina Murray’s Journal._ + +_26 July._--I am anxious, and it soothes me to express myself here; it +is like whispering to one’s self and listening at the same time. And +there is also something about the shorthand symbols that makes it +different from writing. I am unhappy about Lucy and about Thomas. I +had not heard from Thomas for some time, and was very concerned; but +yesterday dear Mr. Hawkins, who is always so kind, sent me a letter from +him. I had written asking him if he had heard, and he said the enclosed +had just been received. It is only a line dated from Castle Dracula, +and says that he is just starting for home. That is not like Thomas; +I do not understand it, and it makes me uneasy. Then, too, Lucy, +although she is so well, has lately taken to her old habit of walking in +her sleep. Her mother has spoken to me about it, and we have decided +that I am to lock the door of our room every night. Mrs. Westenra has +got an idea that sleep-walkers always go out on roofs of houses and +along the edges of cliffs and then get suddenly wakened and fall over +with a despairing cry that echoes all over the place. Poor dear, she is +naturally anxious about Lucy, and she tells me that her husband, Lucy’s +father, had the same habit; that he would get up in the night and dress +himself and go out, if he were not stopped. Lucy is to be married in the +autumn, and she is already planning out her dresses and how her house is +to be arranged. I sympathise with her, for I do the same, only Thomas +and I will start in life in a very simple way, and shall have to try to +make both ends meet. Mr. Holmwood--he is the Hon. Arthur Holmwood, only +son of Lord Godalming--is coming up here very shortly--as soon as he can +leave town, for his father is not very well, and I think dear Lucy is +counting the moments till he comes. She wants to take him up to the seat +on the churchyard cliff and show him the beauty of Whitby. I daresay it +is the waiting which disturbs her; she will be all right when he +arrives. + + * * * * * + +_27 July._--No news from Thomas. I am getting quite uneasy about him, +though why I should I do not know; but I do wish that he would write, if +it were only a single line. Lucy walks more than ever, and each night I +am awakened by her moving about the room. Fortunately, the weather is so +hot that she cannot get cold; but still the anxiety and the perpetually +being wakened is beginning to tell on me, and I am getting nervous and +wakeful myself. Thank God, Lucy’s health keeps up. Mr. Holmwood has been +suddenly called to Ring to see his father, who has been taken seriously +ill. Lucy frets at the postponement of seeing him, but it does not touch +her looks; she is a trifle stouter, and her cheeks are a lovely +rose-pink. She has lost that anæmic look which she had. I pray it will +all last. + + * * * * * + +_3 August._--Another week gone, and no news from Thomas, not even to +Mr. Hawkins, from whom I have heard. Oh, I do hope he is not ill. He +surely would have written. I look at that last letter of his, but +somehow it does not satisfy me. It does not read like him, and yet it is +his writing. There is no mistake of that. Lucy has not walked much in +her sleep the last week, but there is an odd concentration about her +which I do not understand; even in her sleep she seems to be watching +me. She tries the door, and finding it locked, goes about the room +searching for the key. + +_6 August._--Another three days, and no news. This suspense is getting +dreadful. If I only knew where to write to or where to go to, I should +feel easier; but no one has heard a word of Thomas since that last +letter. I must only pray to God for patience. Lucy is more excitable +than ever, but is otherwise well. Last night was very threatening, and +the fishermen say that we are in for a storm. I must try to watch it and +learn the weather signs. To-day is a grey day, and the sun as I write is +hidden in thick clouds, high over Kettleness. Everything is grey--except +the green grass, which seems like emerald amongst it; grey earthy rock; +grey clouds, tinged with the sunburst at the far edge, hang over the +grey sea, into which the sand-points stretch like grey fingers. The sea +is tumbling in over the shallows and the sandy flats with a roar, +muffled in the sea-mists drifting inland. The horizon is lost in a grey +mist. All is vastness; the clouds are piled up like giant rocks, and +there is a “brool” over the sea that sounds like some presage of doom. +Dark figures are on the beach here and there, sometimes half shrouded in +the mist, and seem “men like trees walking.” The fishing-boats are +racing for home, and rise and dip in the ground swell as they sweep into +the harbour, bending to the scuppers. Here comes old Mr. Swales. He is +making straight for me, and I can see, by the way he lifts his hat, that +he wants to talk.... + +I have been quite touched by the change in the poor old man. When he sat +down beside me, he said in a very gentle way:-- + +“I want to say something to you, miss.” I could see he was not at ease, +so I took his poor old wrinkled hand in mine and asked him to speak +fully; so he said, leaving his hand in mine:-- + +“I’m afraid, my deary, that I must have shocked you by all the wicked +things I’ve been sayin’ about the dead, and such like, for weeks past; +but I didn’t mean them, and I want ye to remember that when I’m gone. We +aud folks that be daffled, and with one foot abaft the krok-hooal, don’t +altogether like to think of it, and we don’t want to feel scart of it; +an’ that’s why I’ve took to makin’ light of it, so that I’d cheer up my +own heart a bit. But, Lord love ye, miss, I ain’t afraid of dyin’, not a +bit; only I don’t want to die if I can help it. My time must be nigh at +hand now, for I be aud, and a hundred years is too much for any man to +expect; and I’m so nigh it that the Aud Man is already whettin’ his +scythe. Ye see, I can’t get out o’ the habit of caffin’ about it all at +once; the chafts will wag as they be used to. Some day soon the Angel of +Death will sound his trumpet for me. But don’t ye dooal an’ greet, my +deary!”--for he saw that I was crying--“if he should come this very +night I’d not refuse to answer his call. For life be, after all, only a +waitin’ for somethin’ else than what we’re doin’; and death be all that +we can rightly depend on. But I’m content, for it’s comin’ to me, my +deary, and comin’ quick. It may be comin’ while we be lookin’ and +wonderin’. Maybe it’s in that wind out over the sea that’s bringin’ with +it loss and wreck, and sore distress, and sad hearts. Look! look!” he +cried suddenly. “There’s something in that wind and in the hoast beyont +that sounds, and looks, and tastes, and smells like death. It’s in the +air; I feel it comin’. Lord, make me answer cheerful when my call +comes!” He held up his arms devoutly, and raised his hat. His mouth +moved as though he were praying. After a few minutes’ silence, he got +up, shook hands with me, and blessed me, and said good-bye, and hobbled +off. It all touched me, and upset me very much. + +I was glad when the coastguard came along, with his spy-glass under his +arm. He stopped to talk with me, as he always does, but all the time +kept looking at a strange ship. + +“I can’t make her out,” he said; “she’s a Russian, by the look of her; +but she’s knocking about in the queerest way. She doesn’t know her mind +a bit; she seems to see the storm coming, but can’t decide whether to +run up north in the open, or to put in here. Look there again! She is +steered mighty strangely, for she doesn’t mind the hand on the wheel; +changes about with every puff of wind. We’ll hear more of her before +this time to-morrow.” + + + + +CHAPTER VII + +CUTTING FROM “THE DAILYGRAPH,” 8 AUGUST + + +(_Pasted in Mina Murray’s Journal._) + +From a Correspondent. + +_Whitby_. + +One of the greatest and suddenest storms on record has just been +experienced here, with results both strange and unique. The weather had +been somewhat sultry, but not to any degree uncommon in the month of +August. Saturday evening was as fine as was ever known, and the great +body of holiday-makers laid out yesterday for visits to Mulgrave Woods, +Robin Hood’s Bay, Rig Mill, Runswick, Staithes, and the various trips in +the neighbourhood of Whitby. The steamers _Emma_ and _Scarborough_ made +trips up and down the coast, and there was an unusual amount of +“tripping” both to and from Whitby. The day was unusually fine till the +afternoon, when some of the gossips who frequent the East Cliff +churchyard, and from that commanding eminence watch the wide sweep of +sea visible to the north and east, called attention to a sudden show of +“mares’-tails” high in the sky to the north-west. The wind was then +blowing from the south-west in the mild degree which in barometrical +language is ranked “No. 2: light breeze.” The coastguard on duty at once +made report, and one old fisherman, who for more than half a century has +kept watch on weather signs from the East Cliff, foretold in an emphatic +manner the coming of a sudden storm. The approach of sunset was so very +beautiful, so grand in its masses of splendidly-coloured clouds, that +there was quite an assemblage on the walk along the cliff in the old +churchyard to enjoy the beauty. Before the sun dipped below the black +mass of Kettleness, standing boldly athwart the western sky, its +downward way was marked by myriad clouds of every sunset-colour--flame, +purple, pink, green, violet, and all the tints of gold; with here and +there masses not large, but of seemingly absolute blackness, in all +sorts of shapes, as well outlined as colossal silhouettes. The +experience was not lost on the painters, and doubtless some of the +sketches of the “Prelude to the Great Storm” will grace the R. A. and R. +I. walls in May next. More than one captain made up his mind then and +there that his “cobble” or his “mule,” as they term the different +classes of boats, would remain in the harbour till the storm had passed. +The wind fell away entirely during the evening, and at midnight there +was a dead calm, a sultry heat, and that prevailing intensity which, on +the approach of thunder, affects persons of a sensitive nature. There +were but few lights in sight at sea, for even the coasting steamers, +which usually “hug” the shore so closely, kept well to seaward, and but +few fishing-boats were in sight. The only sail noticeable was a foreign +schooner with all sails set, which was seemingly going westwards. The +foolhardiness or ignorance of her officers was a prolific theme for +comment whilst she remained in sight, and efforts were made to signal +her to reduce sail in face of her danger. Before the night shut down she +was seen with sails idly flapping as she gently rolled on the undulating +swell of the sea, + + “As idle as a painted ship upon a painted ocean.” + +Shortly before ten o’clock the stillness of the air grew quite +oppressive, and the silence was so marked that the bleating of a sheep +inland or the barking of a dog in the town was distinctly heard, and the +band on the pier, with its lively French air, was like a discord in the +great harmony of nature’s silence. A little after midnight came a +strange sound from over the sea, and high overhead the air began to +carry a strange, faint, hollow booming. + +Then without warning the tempest broke. With a rapidity which, at the +time, seemed incredible, and even afterwards is impossible to realize, +the whole aspect of nature at once became convulsed. The waves rose in +growing fury, each overtopping its fellow, till in a very few minutes +the lately glassy sea was like a roaring and devouring monster. +White-crested waves beat madly on the level sands and rushed up the +shelving cliffs; others broke over the piers, and with their spume swept +the lanthorns of the lighthouses which rise from the end of either pier +of Whitby Harbour. The wind roared like thunder, and blew with such +force that it was with difficulty that even strong men kept their feet, +or clung with grim clasp to the iron stanchions. It was found necessary +to clear the entire piers from the mass of onlookers, or else the +fatalities of the night would have been increased manifold. To add to +the difficulties and dangers of the time, masses of sea-fog came +drifting inland--white, wet clouds, which swept by in ghostly fashion, +so dank and damp and cold that it needed but little effort of +imagination to think that the spirits of those lost at sea were +touching their living brethren with the clammy hands of death, and many +a one shuddered as the wreaths of sea-mist swept by. At times the mist +cleared, and the sea for some distance could be seen in the glare of the +lightning, which now came thick and fast, followed by such sudden peals +of thunder that the whole sky overhead seemed trembling under the shock +of the footsteps of the storm. + +Some of the scenes thus revealed were of immeasurable grandeur and of +absorbing interest--the sea, running mountains high, threw skywards with +each wave mighty masses of white foam, which the tempest seemed to +snatch at and whirl away into space; here and there a fishing-boat, with +a rag of sail, running madly for shelter before the blast; now and again +the white wings of a storm-tossed sea-bird. On the summit of the East +Cliff the new searchlight was ready for experiment, but had not yet been +tried. The officers in charge of it got it into working order, and in +the pauses of the inrushing mist swept with it the surface of the sea. +Once or twice its service was most effective, as when a fishing-boat, +with gunwale under water, rushed into the harbour, able, by the guidance +of the sheltering light, to avoid the danger of dashing against the +piers. As each boat achieved the safety of the port there was a shout of +joy from the mass of people on shore, a shout which for a moment seemed +to cleave the gale and was then swept away in its rush. + +Before long the searchlight discovered some distance away a schooner +with all sails set, apparently the same vessel which had been noticed +earlier in the evening. The wind had by this time backed to the east, +and there was a shudder amongst the watchers on the cliff as they +realized the terrible danger in which she now was. Between her and the +port lay the great flat reef on which so many good ships have from time +to time suffered, and, with the wind blowing from its present quarter, +it would be quite impossible that she should fetch the entrance of the +harbour. It was now nearly the hour of high tide, but the waves were so +great that in their troughs the shallows of the shore were almost +visible, and the schooner, with all sails set, was rushing with such +speed that, in the words of one old salt, “she must fetch up somewhere, +if it was only in hell.” Then came another rush of sea-fog, greater than +any hitherto--a mass of dank mist, which seemed to close on all things +like a grey pall, and left available to men only the organ of hearing, +for the roar of the tempest, and the crash of the thunder, and the +booming of the mighty billows came through the damp oblivion even louder +than before. The rays of the searchlight were kept fixed on the harbour +mouth across the East Pier, where the shock was expected, and men waited +breathless. The wind suddenly shifted to the north-east, and the remnant +of the sea-fog melted in the blast; and then, _mirabile dictu_, between +the piers, leaping from wave to wave as it rushed at headlong speed, +swept the strange schooner before the blast, with all sail set, and +gained the safety of the harbour. The searchlight followed her, and a +shudder ran through all who saw her, for lashed to the helm was a +corpse, with drooping head, which swung horribly to and fro at each +motion of the ship. No other form could be seen on deck at all. A great +awe came on all as they realised that the ship, as if by a miracle, had +found the harbour, unsteered save by the hand of a dead man! However, +all took place more quickly than it takes to write these words. The +schooner paused not, but rushing across the harbour, pitched herself on +that accumulation of sand and gravel washed by many tides and many +storms into the south-east corner of the pier jutting under the East +Cliff, known locally as Tate Hill Pier. + +There was of course a considerable concussion as the vessel drove up on +the sand heap. Every spar, rope, and stay was strained, and some of the +“top-hammer” came crashing down. But, strangest of all, the very instant +the shore was touched, an immense dog sprang up on deck from below, as +if shot up by the concussion, and running forward, jumped from the bow +on the sand. Making straight for the steep cliff, where the churchyard +hangs over the laneway to the East Pier so steeply that some of the flat +tombstones--“thruff-steans” or “through-stones,” as they call them in +the Whitby vernacular--actually project over where the sustaining cliff +has fallen away, it disappeared in the darkness, which seemed +intensified just beyond the focus of the searchlight. + +It so happened that there was no one at the moment on Tate Hill Pier, as +all those whose houses are in close proximity were either in bed or were +out on the heights above. Thus the coastguard on duty on the eastern +side of the harbour, who at once ran down to the little pier, was the +first to climb on board. The men working the searchlight, after scouring +the entrance of the harbour without seeing anything, then turned the +light on the derelict and kept it there. The coastguard ran aft, and +when he came beside the wheel, bent over to examine it, and recoiled at +once as though under some sudden emotion. This seemed to pique general +curiosity, and quite a number of people began to run. It is a good way +round from the West Cliff by the Drawbridge to Tate Hill Pier, but your +correspondent is a fairly good runner, and came well ahead of the crowd. +When I arrived, however, I found already assembled on the pier a crowd, +whom the coastguard and police refused to allow to come on board. By the +courtesy of the chief boatman, I was, as your correspondent, permitted +to climb on deck, and was one of a small group who saw the dead seaman +whilst actually lashed to the wheel. + +It was no wonder that the coastguard was surprised, or even awed, for +not often can such a sight have been seen. The man was simply fastened +by his hands, tied one over the other, to a spoke of the wheel. Between +the inner hand and the wood was a crucifix, the set of beads on which it +was fastened being around both wrists and wheel, and all kept fast by +the binding cords. The poor fellow may have been seated at one time, but +the flapping and buffeting of the sails had worked through the rudder of +the wheel and dragged him to and fro, so that the cords with which he +was tied had cut the flesh to the bone. Accurate note was made of the +state of things, and a doctor--Surgeon J. M. Caffyn, of 33, East Elliot +Place--who came immediately after me, declared, after making +examination, that the man must have been dead for quite two days. In his +pocket was a bottle, carefully corked, empty save for a little roll of +paper, which proved to be the addendum to the log. The coastguard said +the man must have tied up his own hands, fastening the knots with his +teeth. The fact that a coastguard was the first on board may save some +complications, later on, in the Admiralty Court; for coastguards cannot +claim the salvage which is the right of the first civilian entering on a +derelict. Already, however, the legal tongues are wagging, and one young +law student is loudly asserting that the rights of the owner are already +completely sacrificed, his property being held in contravention of the +statutes of mortmain, since the tiller, as emblemship, if not proof, of +delegated possession, is held in a _dead hand_. It is needless to say +that the dead steersman has been reverently removed from the place where +he held his honourable watch and ward till death--a steadfastness as +noble as that of the young Casabianca--and placed in the mortuary to +await inquest. + +Already the sudden storm is passing, and its fierceness is abating; +crowds are scattering homeward, and the sky is beginning to redden over +the Yorkshire wolds. I shall send, in time for your next issue, further +details of the derelict ship which found her way so miraculously into +harbour in the storm. + +_Whitby_ + +_9 August._--The sequel to the strange arrival of the derelict in the +storm last night is almost more startling than the thing itself. It +turns out that the schooner is a Russian from Varna, and is called the +_Demeter_. She is almost entirely in ballast of silver sand, with only a +small amount of cargo--a number of great wooden boxes filled with mould. +This cargo was consigned to a Whitby solicitor, Mr. S. F. Billington, of +7, The Crescent, who this morning went aboard and formally took +possession of the goods consigned to him. The Russian consul, too, +acting for the charter-party, took formal possession of the ship, and +paid all harbour dues, etc. Nothing is talked about here to-day except +the strange coincidence; the officials of the Board of Trade have been +most exacting in seeing that every compliance has been made with +existing regulations. As the matter is to be a “nine days’ wonder,” they +are evidently determined that there shall be no cause of after +complaint. A good deal of interest was abroad concerning the dog which +landed when the ship struck, and more than a few of the members of the +S. P. C. A., which is very strong in Whitby, have tried to befriend the +animal. To the general disappointment, however, it was not to be found; +it seems to have disappeared entirely from the town. It may be that it +was frightened and made its way on to the moors, where it is still +hiding in terror. There are some who look with dread on such a +possibility, lest later on it should in itself become a danger, for it +is evidently a fierce brute. Early this morning a large dog, a half-bred +mastiff belonging to a coal merchant close to Tate Hill Pier, was found +dead in the roadway opposite to its master’s yard. It had been fighting, +and manifestly had had a savage opponent, for its throat was torn away, +and its belly was slit open as if with a savage claw. + + * * * * * + +_Later._--By the kindness of the Board of Trade inspector, I have been +permitted to look over the log-book of the _Demeter_, which was in order +up to within three days, but contained nothing of special interest +except as to facts of missing men. The greatest interest, however, is +with regard to the paper found in the bottle, which was to-day produced +at the inquest; and a more strange narrative than the two between them +unfold it has not been my lot to come across. As there is no motive for +concealment, I am permitted to use them, and accordingly send you a +rescript, simply omitting technical details of seamanship and +supercargo. It almost seems as though the captain had been seized with +some kind of mania before he had got well into blue water, and that +this had developed persistently throughout the voyage. Of course my +statement must be taken _cum grano_, since I am writing from the +dictation of a clerk of the Russian consul, who kindly translated for +me, time being short. + + LOG OF THE “DEMETER.” + + +_Varna to Whitby._ + +_Written 18 July, things so strange happening, that I shall keep +accurate note henceforth till we land._ + + * * * * * + +On 6 July we finished taking in cargo, silver sand and boxes of earth. +At noon set sail. East wind, fresh. Crew, five hands ... two mates, +cook, and myself (captain). + + * * * * * + +On 11 July at dawn entered Bosphorus. Boarded by Turkish Customs +officers. Backsheesh. All correct. Under way at 4 p. m. + + * * * * * + +On 12 July through Dardanelles. More Customs officers and flagboat of +guarding squadron. Backsheesh again. Work of officers thorough, but +quick. Want us off soon. At dark passed into Archipelago. + + * * * * * + +On 13 July passed Cape Matapan. Crew dissatisfied about something. +Seemed scared, but would not speak out. + + * * * * * + +On 14 July was somewhat anxious about crew. Men all steady fellows, who +sailed with me before. Mate could not make out what was wrong; they only +told him there was _something_, and crossed themselves. Mate lost temper +with one of them that day and struck him. Expected fierce quarrel, but +all was quiet. + + * * * * * + +On 16 July mate reported in the morning that one of crew, Petrofsky, was +missing. Could not account for it. Took larboard watch eight bells last +night; was relieved by Abramoff, but did not go to bunk. Men more +downcast than ever. All said they expected something of the kind, but +would not say more than there was _something_ aboard. Mate getting very +impatient with them; feared some trouble ahead. + + * * * * * + +On 17 July, yesterday, one of the men, Olgaren, came to my cabin, and in +an awestruck way confided to me that he thought there was a strange man +aboard the ship. He said that in his watch he had been sheltering +behind the deck-house, as there was a rain-storm, when he saw a tall, +thin man, who was not like any of the crew, come up the companion-way, +and go along the deck forward, and disappear. He followed cautiously, +but when he got to bows found no one, and the hatchways were all closed. +He was in a panic of superstitious fear, and I am afraid the panic may +spread. To allay it, I shall to-day search entire ship carefully from +stem to stern. + + * * * * * + +Later in the day I got together the whole crew, and told them, as they +evidently thought there was some one in the ship, we would search from +stem to stern. First mate angry; said it was folly, and to yield to such +foolish ideas would demoralise the men; said he would engage to keep +them out of trouble with a handspike. I let him take the helm, while the +rest began thorough search, all keeping abreast, with lanterns: we left +no corner unsearched. As there were only the big wooden boxes, there +were no odd corners where a man could hide. Men much relieved when +search over, and went back to work cheerfully. First mate scowled, but +said nothing. + + * * * * * + +_22 July_.--Rough weather last three days, and all hands busy with +sails--no time to be frightened. Men seem to have forgotten their dread. +Mate cheerful again, and all on good terms. Praised men for work in bad +weather. Passed Gibralter and out through Straits. All well. + + * * * * * + +_24 July_.--There seems some doom over this ship. Already a hand short, +and entering on the Bay of Biscay with wild weather ahead, and yet last +night another man lost--disappeared. Like the first, he came off his +watch and was not seen again. Men all in a panic of fear; sent a round +robin, asking to have double watch, as they fear to be alone. Mate +angry. Fear there will be some trouble, as either he or the men will do +some violence. + + * * * * * + +_28 July_.--Four days in hell, knocking about in a sort of maelstrom, +and the wind a tempest. No sleep for any one. Men all worn out. Hardly +know how to set a watch, since no one fit to go on. Second mate +volunteered to steer and watch, and let men snatch a few hours’ sleep. +Wind abating; seas still terrific, but feel them less, as ship is +steadier. + + * * * * * + +_29 July_.--Another tragedy. Had single watch to-night, as crew too +tired to double. When morning watch came on deck could find no one +except steersman. Raised outcry, and all came on deck. Thorough search, +but no one found. Are now without second mate, and crew in a panic. Mate +and I agreed to go armed henceforth and wait for any sign of cause. + + * * * * * + +_30 July_.--Last night. Rejoiced we are nearing England. Weather fine, +all sails set. Retired worn out; slept soundly; awaked by mate telling +me that both man of watch and steersman missing. Only self and mate and +two hands left to work ship. + + * * * * * + +_1 August_.--Two days of fog, and not a sail sighted. Had hoped when in +the English Channel to be able to signal for help or get in somewhere. +Not having power to work sails, have to run before wind. Dare not lower, +as could not raise them again. We seem to be drifting to some terrible +doom. Mate now more demoralised than either of men. His stronger nature +seems to have worked inwardly against himself. Men are beyond fear, +working stolidly and patiently, with minds made up to worst. They are +Russian, he Roumanian. + + * * * * * + +_2 August, midnight_.--Woke up from few minutes’ sleep by hearing a cry, +seemingly outside my port. Could see nothing in fog. Rushed on deck, and +ran against mate. Tells me heard cry and ran, but no sign of man on +watch. One more gone. Lord, help us! Mate says we must be past Straits +of Dover, as in a moment of fog lifting he saw North Foreland, just as +he heard the man cry out. If so we are now off in the North Sea, and +only God can guide us in the fog, which seems to move with us; and God +seems to have deserted us. + + * * * * * + +_3 August_.--At midnight I went to relieve the man at the wheel, and +when I got to it found no one there. The wind was steady, and as we ran +before it there was no yawing. I dared not leave it, so shouted for the +mate. After a few seconds he rushed up on deck in his flannels. He +looked wild-eyed and haggard, and I greatly fear his reason has given +way. He came close to me and whispered hoarsely, with his mouth to my +ear, as though fearing the very air might hear: “_It_ is here; I know +it, now. On the watch last night I saw It, like a man, tall and thin, +and ghastly pale. It was in the bows, and looking out. I crept behind +It, and gave It my knife; but the knife went through It, empty as the +air.” And as he spoke he took his knife and drove it savagely into +space. Then he went on: “But It is here, and I’ll find It. It is in the +hold, perhaps in one of those boxes. I’ll unscrew them one by one and +see. You work the helm.” And, with a warning look and his finger on his +lip, he went below. There was springing up a choppy wind, and I could +not leave the helm. I saw him come out on deck again with a tool-chest +and a lantern, and go down the forward hatchway. He is mad, stark, +raving mad, and it’s no use my trying to stop him. He can’t hurt those +big boxes: they are invoiced as “clay,” and to pull them about is as +harmless a thing as he can do. So here I stay, and mind the helm, and +write these notes. I can only trust in God and wait till the fog clears. +Then, if I can’t steer to any harbour with the wind that is, I shall cut +down sails and lie by, and signal for help.... + + * * * * * + +It is nearly all over now. Just as I was beginning to hope that the mate +would come out calmer--for I heard him knocking away at something in the +hold, and work is good for him--there came up the hatchway a sudden, +startled scream, which made my blood run cold, and up on the deck he +came as if shot from a gun--a raging madman, with his eyes rolling and +his face convulsed with fear. “Save me! save me!” he cried, and then +looked round on the blanket of fog. His horror turned to despair, and in +a steady voice he said: “You had better come too, captain, before it is +too late. _He_ is there. I know the secret now. The sea will save me +from Him, and it is all that is left!” Before I could say a word, or +move forward to seize him, he sprang on the bulwark and deliberately +threw himself into the sea. I suppose I know the secret too, now. It was +this madman who had got rid of the men one by one, and now he has +followed them himself. God help me! How am I to account for all these +horrors when I get to port? _When_ I get to port! Will that ever be? + + * * * * * + +_4 August._--Still fog, which the sunrise cannot pierce. I know there is +sunrise because I am a sailor, why else I know not. I dared not go +below, I dared not leave the helm; so here all night I stayed, and in +the dimness of the night I saw It--Him! God forgive me, but the mate was +right to jump overboard. It was better to die like a man; to die like a +sailor in blue water no man can object. But I am captain, and I must not +leave my ship. But I shall baffle this fiend or monster, for I shall tie +my hands to the wheel when my strength begins to fail, and along with +them I shall tie that which He--It!--dare not touch; and then, come good +wind or foul, I shall save my soul, and my honour as a captain. I am +growing weaker, and the night is coming on. If He can look me in the +face again, I may not have time to act.... If we are wrecked, mayhap +this bottle may be found, and those who find it may understand; if not, +... well, then all men shall know that I have been true to my trust. God +and the Blessed Virgin and the saints help a poor ignorant soul trying +to do his duty.... + + * * * * * + +Of course the verdict was an open one. There is no evidence to adduce; +and whether or not the man himself committed the murders there is now +none to say. The folk here hold almost universally that the captain is +simply a hero, and he is to be given a public funeral. Already it is +arranged that his body is to be taken with a train of boats up the Esk +for a piece and then brought back to Tate Hill Pier and up the abbey +steps; for he is to be buried in the churchyard on the cliff. The owners +of more than a hundred boats have already given in their names as +wishing to follow him to the grave. + +No trace has ever been found of the great dog; at which there is much +mourning, for, with public opinion in its present state, he would, I +believe, be adopted by the town. To-morrow will see the funeral; and so +will end this one more “mystery of the sea.” + + +_Mina Murray’s Journal._ + +_8 August._--Lucy was very restless all night, and I, too, could not +sleep. The storm was fearful, and as it boomed loudly among the +chimney-pots, it made me shudder. When a sharp puff came it seemed to be +like a distant gun. Strangely enough, Lucy did not wake; but she got up +twice and dressed herself. Fortunately, each time I awoke in time and +managed to undress her without waking her, and got her back to bed. It +is a very strange thing, this sleep-walking, for as soon as her will is +thwarted in any physical way, her intention, if there be any, +disappears, and she yields herself almost exactly to the routine of her +life. + +Early in the morning we both got up and went down to the harbour to see +if anything had happened in the night. There were very few people about, +and though the sun was bright, and the air clear and fresh, the big, +grim-looking waves, that seemed dark themselves because the foam that +topped them was like snow, forced themselves in through the narrow mouth +of the harbour--like a bullying man going through a crowd. Somehow I +felt glad that Thomas was not on the sea last night, but on land. But, +oh, is he on land or sea? Where is he, and how? I am getting fearfully +anxious about him. If I only knew what to do, and could do anything! + + * * * * * + +_10 August._--The funeral of the poor sea-captain to-day was most +touching. Every boat in the harbour seemed to be there, and the coffin +was carried by captains all the way from Tate Hill Pier up to the +churchyard. Lucy came with me, and we went early to our old seat, whilst +the cortège of boats went up the river to the Viaduct and came down +again. We had a lovely view, and saw the procession nearly all the way. +The poor fellow was laid to rest quite near our seat so that we stood on +it when the time came and saw everything. Poor Lucy seemed much upset. +She was restless and uneasy all the time, and I cannot but think that +her dreaming at night is telling on her. She is quite odd in one thing: +she will not admit to me that there is any cause for restlessness; or if +there be, she does not understand it herself. There is an additional +cause in that poor old Mr. Swales was found dead this morning on our +seat, his neck being broken. He had evidently, as the doctor said, +fallen back in the seat in some sort of fright, for there was a look of +fear and horror on his face that the men said made them shudder. Poor +dear old man! Perhaps he had seen Death with his dying eyes! Lucy is so +sweet and sensitive that she feels influences more acutely than other +people do. Just now she was quite upset by a little thing which I did +not much heed, though I am myself very fond of animals. One of the men +who came up here often to look for the boats was followed by his dog. +The dog is always with him. They are both quiet persons, and I never saw +the man angry, nor heard the dog bark. During the service the dog would +not come to its master, who was on the seat with us, but kept a few +yards off, barking and howling. Its master spoke to it gently, and then +harshly, and then angrily; but it would neither come nor cease to make a +noise. It was in a sort of fury, with its eyes savage, and all its hairs +bristling out like a cat’s tail when puss is on the war-path. Finally +the man, too, got angry, and jumped down and kicked the dog, and then +took it by the scruff of the neck and half dragged and half threw it on +the tombstone on which the seat is fixed. The moment it touched the +stone the poor thing became quiet and fell all into a tremble. It did +not try to get away, but crouched down, quivering and cowering, and was +in such a pitiable state of terror that I tried, though without effect, +to comfort it. Lucy was full of pity, too, but she did not attempt to +touch the dog, but looked at it in an agonised sort of way. I greatly +fear that she is of too super-sensitive a nature to go through the world +without trouble. She will be dreaming of this to-night, I am sure. The +whole agglomeration of things--the ship steered into port by a dead +man; his attitude, tied to the wheel with a crucifix and beads; the +touching funeral; the dog, now furious and now in terror--will all +afford material for her dreams. + +I think it will be best for her to go to bed tired out physically, so I +shall take her for a long walk by the cliffs to Robin Hood’s Bay and +back. She ought not to have much inclination for sleep-walking then. + + + + +CHAPTER VIII + +MINA MURRAY’S JOURNAL + + +_Same day, 11 o’clock p. m._--Oh, but I am tired! If it were not that I +had made my diary a duty I should not open it to-night. We had a lovely +walk. Lucy, after a while, was in gay spirits, owing, I think, to some +dear cows who came nosing towards us in a field close to the lighthouse, +and frightened the wits out of us. I believe we forgot everything +except, of course, personal fear, and it seemed to wipe the slate clean +and give us a fresh start. We had a capital “severe tea” at Robin Hood’s +Bay in a sweet little old-fashioned inn, with a bow-window right over +the seaweed-covered rocks of the strand. I believe we should have +shocked the “New Woman” with our appetites. Men are more tolerant, bless +them! Then we walked home with some, or rather many, stoppages to rest, +and with our hearts full of a constant dread of wild bulls. Lucy was +really tired, and we intended to creep off to bed as soon as we could. +The young curate came in, however, and Mrs. Westenra asked him to stay +for supper. Lucy and I had both a fight for it with the dusty miller; I +know it was a hard fight on my part, and I am quite heroic. I think that +some day the bishops must get together and see about breeding up a new +class of curates, who don’t take supper, no matter how they may be +pressed to, and who will know when girls are tired. Lucy is asleep and +breathing softly. She has more colour in her cheeks than usual, and +looks, oh, so sweet. If Mr. Holmwood fell in love with her seeing her +only in the drawing-room, I wonder what he would say if he saw her now. +Some of the “New Women” writers will some day start an idea that men and +women should be allowed to see each other asleep before proposing or +accepting. But I suppose the New Woman won’t condescend in future to +accept; she will do the proposing herself. And a nice job she will make +of it, too! There’s some consolation in that. I am so happy to-night, +because dear Lucy seems better. I really believe she has turned the +corner, and that we are over her troubles with dreaming. I should be +quite happy if I only knew if Thomas.... God bless and keep him. + + * * * * * + +_11 August, 3 a. m._--Diary again. No sleep now, so I may as well write. +I am too agitated to sleep. We have had such an adventure, such an +agonising experience. I fell asleep as soon as I had closed my diary.... +Suddenly I became broad awake, and sat up, with a horrible sense of fear +upon me, and of some feeling of emptiness around me. The room was dark, +so I could not see Lucy’s bed; I stole across and felt for her. The bed +was empty. I lit a match and found that she was not in the room. The +door was shut, but not locked, as I had left it. I feared to wake her +mother, who has been more than usually ill lately, so threw on some +clothes and got ready to look for her. As I was leaving the room it +struck me that the clothes she wore might give me some clue to her +dreaming intention. Dressing-gown would mean house; dress, outside. +Dressing-gown and dress were both in their places. “Thank God,” I said +to myself, “she cannot be far, as she is only in her nightdress.” I ran +downstairs and looked in the sitting-room. Not there! Then I looked in +all the other open rooms of the house, with an ever-growing fear +chilling my heart. Finally I came to the hall door and found it open. It +was not wide open, but the catch of the lock had not caught. The people +of the house are careful to lock the door every night, so I feared that +Lucy must have gone out as she was. There was no time to think of what +might happen; a vague, overmastering fear obscured all details. I took a +big, heavy shawl and ran out. The clock was striking one as I was in the +Crescent, and there was not a soul in sight. I ran along the North +Terrace, but could see no sign of the white figure which I expected. At +the edge of the West Cliff above the pier I looked across the harbour to +the East Cliff, in the hope or fear--I don’t know which--of seeing Lucy +in our favourite seat. There was a bright full moon, with heavy black, +driving clouds, which threw the whole scene into a fleeting diorama of +light and shade as they sailed across. For a moment or two I could see +nothing, as the shadow of a cloud obscured St. Mary’s Church and all +around it. Then as the cloud passed I could see the ruins of the abbey +coming into view; and as the edge of a narrow band of light as sharp as +a sword-cut moved along, the church and the churchyard became gradually +visible. Whatever my expectation was, it was not disappointed, for +there, on our favourite seat, the silver light of the moon struck a +half-reclining figure, snowy white. The coming of the cloud was too +quick for me to see much, for shadow shut down on light almost +immediately; but it seemed to me as though something dark stood behind +the seat where the white figure shone, and bent over it. What it was, +whether man or beast, I could not tell; I did not wait to catch another +glance, but flew down the steep steps to the pier and along by the +fish-market to the bridge, which was the only way to reach the East +Cliff. The town seemed as dead, for not a soul did I see; I rejoiced +that it was so, for I wanted no witness of poor Lucy’s condition. The +time and distance seemed endless, and my knees trembled and my breath +came laboured as I toiled up the endless steps to the abbey. I must have +gone fast, and yet it seemed to me as if my feet were weighted with +lead, and as though every joint in my body were rusty. When I got almost +to the top I could see the seat and the white figure, for I was now +close enough to distinguish it even through the spells of shadow. There +was undoubtedly something, long and black, bending over the +half-reclining white figure. I called in fright, “Lucy! Lucy!” and +something raised a head, and from where I was I could see a white face +and red, gleaming eyes. Lucy did not answer, and I ran on to the +entrance of the churchyard. As I entered, the church was between me and +the seat, and for a minute or so I lost sight of her. When I came in +view again the cloud had passed, and the moonlight struck so brilliantly +that I could see Lucy half reclining with her head lying over the back +of the seat. She was quite alone, and there was not a sign of any living +thing about. + +When I bent over her I could see that she was still asleep. Her lips +were parted, and she was breathing--not softly as usual with her, but in +long, heavy gasps, as though striving to get her lungs full at every +breath. As I came close, she put up her hand in her sleep and pulled the +collar of her nightdress close around her throat. Whilst she did so +there came a little shudder through her, as though she felt the cold. I +flung the warm shawl over her, and drew the edges tight round her neck, +for I dreaded lest she should get some deadly chill from the night air, +unclad as she was. I feared to wake her all at once, so, in order to +have my hands free that I might help her, I fastened the shawl at her +throat with a big safety-pin; but I must have been clumsy in my anxiety +and pinched or pricked her with it, for by-and-by, when her breathing +became quieter, she put her hand to her throat again and moaned. When I +had her carefully wrapped up I put my shoes on her feet and then began +very gently to wake her. At first she did not respond; but gradually she +became more and more uneasy in her sleep, moaning and sighing +occasionally. At last, as time was passing fast, and, for many other +reasons, I wished to get her home at once, I shook her more forcibly, +till finally she opened her eyes and awoke. She did not seem surprised +to see me, as, of course, she did not realise all at once where she was. +Lucy always wakes prettily, and even at such a time, when her body must +have been chilled with cold, and her mind somewhat appalled at waking +unclad in a churchyard at night, she did not lose her grace. She +trembled a little, and clung to me; when I told her to come at once with +me home she rose without a word, with the obedience of a child. As we +passed along, the gravel hurt my feet, and Lucy noticed me wince. She +stopped and wanted to insist upon my taking my shoes; but I would not. +However, when we got to the pathway outside the churchyard, where there +was a puddle of water, remaining from the storm, I daubed my feet with +mud, using each foot in turn on the other, so that as we went home, no +one, in case we should meet any one, should notice my bare feet. + +Fortune favoured us, and we got home without meeting a soul. Once we saw +a man, who seemed not quite sober, passing along a street in front of +us; but we hid in a door till he had disappeared up an opening such as +there are here, steep little closes, or “wynds,” as they call them in +Scotland. My heart beat so loud all the time that sometimes I thought I +should faint. I was filled with anxiety about Lucy, not only for her +health, lest she should suffer from the exposure, but for her reputation +in case the story should get wind. When we got in, and had washed our +feet, and had said a prayer of thankfulness together, I tucked her into +bed. Before falling asleep she asked--even implored--me not to say a +word to any one, even her mother, about her sleep-walking adventure. I +hesitated at first to promise; but on thinking of the state of her +mother’s health, and how the knowledge of such a thing would fret her, +and thinking, too, of how such a story might become distorted--nay, +infallibly would--in case it should leak out, I thought it wiser to do +so. I hope I did right. I have locked the door, and the key is tied to +my wrist, so perhaps I shall not be again disturbed. Lucy is sleeping +soundly; the reflex of the dawn is high and far over the sea.... + + * * * * * + +_Same day, noon._--All goes well. Lucy slept till I woke her and seemed +not to have even changed her side. The adventure of the night does not +seem to have harmed her; on the contrary, it has benefited her, for she +looks better this morning than she has done for weeks. I was sorry to +notice that my clumsiness with the safety-pin hurt her. Indeed, it might +have been serious, for the skin of her throat was pierced. I must have +pinched up a piece of loose skin and have transfixed it, for there are +two little red points like pin-pricks, and on the band of her nightdress +was a drop of blood. When I apologised and was concerned about it, she +laughed and petted me, and said she did not even feel it. Fortunately it +cannot leave a scar, as it is so tiny. + + * * * * * + +_Same day, night._--We passed a happy day. The air was clear, and the +sun bright, and there was a cool breeze. We took our lunch to Mulgrave +Woods, Mrs. Westenra driving by the road and Lucy and I walking by the +cliff-path and joining her at the gate. I felt a little sad myself, for +I could not but feel how _absolutely_ happy it would have been had +Thomas been with me. But there! I must only be patient. In the evening +we strolled in the Casino Terrace, and heard some good music by Spohr +and Mackenzie, and went to bed early. Lucy seems more restful than she +has been for some time, and fell asleep at once. I shall lock the door +and secure the key the same as before, though I do not expect any +trouble to-night. + + * * * * * + +_12 August._--My expectations were wrong, for twice during the night I +was wakened by Lucy trying to get out. She seemed, even in her sleep, to +be a little impatient at finding the door shut, and went back to bed +under a sort of protest. I woke with the dawn, and heard the birds +chirping outside of the window. Lucy woke, too, and, I was glad to see, +was even better than on the previous morning. All her old gaiety of +manner seemed to have come back, and she came and snuggled in beside me +and told me all about Arthur. I told her how anxious I was about +Thomas, and then she tried to comfort me. Well, she succeeded +somewhat, for, though sympathy can’t alter facts, it can help to make +them more bearable. + + * * * * * + +_13 August._--Another quiet day, and to bed with the key on my wrist as +before. Again I awoke in the night, and found Lucy sitting up in bed, +still asleep, pointing to the window. I got up quietly, and pulling +aside the blind, looked out. It was brilliant moonlight, and the soft +effect of the light over the sea and sky--merged together in one great, +silent mystery--was beautiful beyond words. Between me and the moonlight +flitted a great bat, coming and going in great whirling circles. Once or +twice it came quite close, but was, I suppose, frightened at seeing me, +and flitted away across the harbour towards the abbey. When I came back +from the window Lucy had lain down again, and was sleeping peacefully. +She did not stir again all night. + + * * * * * + +_14 August._--On the East Cliff, reading and writing all day. Lucy seems +to have become as much in love with the spot as I am, and it is hard to +get her away from it when it is time to come home for lunch or tea or +dinner. This afternoon she made a funny remark. We were coming home for +dinner, and had come to the top of the steps up from the West Pier and +stopped to look at the view, as we generally do. The setting sun, low +down in the sky, was just dropping behind Kettleness; the red light was +thrown over on the East Cliff and the old abbey, and seemed to bathe +everything in a beautiful rosy glow. We were silent for a while, and +suddenly Lucy murmured as if to herself:-- + +“His red eyes again! They are just the same.” It was such an odd +expression, coming _apropos_ of nothing, that it quite startled me. I +slewed round a little, so as to see Lucy well without seeming to stare +at her, and saw that she was in a half-dreamy state, with an odd look on +her face that I could not quite make out; so I said nothing, but +followed her eyes. She appeared to be looking over at our own seat, +whereon was a dark figure seated alone. I was a little startled myself, +for it seemed for an instant as if the stranger had great eyes like +burning flames; but a second look dispelled the illusion. The red +sunlight was shining on the windows of St. Mary’s Church behind our +seat, and as the sun dipped there was just sufficient change in the +refraction and reflection to make it appear as if the light moved. I +called Lucy’s attention to the peculiar effect, and she became herself +with a start, but she looked sad all the same; it may have been that she +was thinking of that terrible night up there. We never refer to it; so I +said nothing, and we went home to dinner. Lucy had a headache and went +early to bed. I saw her asleep, and went out for a little stroll myself; +I walked along the cliffs to the westward, and was full of sweet +sadness, for I was thinking of Thomas. When coming home--it was then +bright moonlight, so bright that, though the front of our part of the +Crescent was in shadow, everything could be well seen--I threw a glance +up at our window, and saw Lucy’s head leaning out. I thought that +perhaps she was looking out for me, so I opened my handkerchief and +waved it. She did not notice or make any movement whatever. Just then, +the moonlight crept round an angle of the building, and the light fell +on the window. There distinctly was Lucy with her head lying up against +the side of the window-sill and her eyes shut. She was fast asleep, and +by her, seated on the window-sill, was something that looked like a +good-sized bird. I was afraid she might get a chill, so I ran upstairs, +but as I came into the room she was moving back to her bed, fast +asleep, and breathing heavily; she was holding her hand to her throat, +as though to protect it from cold. + +I did not wake her, but tucked her up warmly; I have taken care that the +door is locked and the window securely fastened. + +She looks so sweet as she sleeps; but she is paler than is her wont, and +there is a drawn, haggard look under her eyes which I do not like. I +fear she is fretting about something. I wish I could find out what it +is. + + * * * * * + +_15 August._--Rose later than usual. Lucy was languid and tired, and +slept on after we had been called. We had a happy surprise at breakfast. +Arthur’s father is better, and wants the marriage to come off soon. Lucy +is full of quiet joy, and her mother is glad and sorry at once. Later on +in the day she told me the cause. She is grieved to lose Lucy as her +very own, but she is rejoiced that she is soon to have some one to +protect her. Poor dear, sweet lady! She confided to me that she has got +her death-warrant. She has not told Lucy, and made me promise secrecy; +her doctor told her that within a few months, at most, she must die, for +her heart is weakening. At any time, even now, a sudden shock would be +almost sure to kill her. Ah, we were wise to keep from her the affair of +the dreadful night of Lucy’s sleep-walking. + + * * * * * + +_17 August._--No diary for two whole days. I have not had the heart to +write. Some sort of shadowy pall seems to be coming over our happiness. +No news from Thomas, and Lucy seems to be growing weaker, whilst her +mother’s hours are numbering to a close. I do not understand Lucy’s +fading away as she is doing. She eats well and sleeps well, and enjoys +the fresh air; but all the time the roses in her cheeks are fading, and +she gets weaker and more languid day by day; at night I hear her gasping +as if for air. I keep the key of our door always fastened to my wrist at +night, but she gets up and walks about the room, and sits at the open +window. Last night I found her leaning out when I woke up, and when I +tried to wake her I could not; she was in a faint. When I managed to +restore her she was as weak as water, and cried silently between long, +painful struggles for breath. When I asked her how she came to be at the +window she shook her head and turned away. I trust her feeling ill may +not be from that unlucky prick of the safety-pin. I looked at her throat +just now as she lay asleep, and the tiny wounds seem not to have healed. +They are still open, and, if anything, larger than before, and the +edges of them are faintly white. They are like little white dots with +red centres. Unless they heal within a day or two, I shall insist on the +doctor seeing about them. + + +_Letter, Samuel F. Billington & Son, Solicitors, Whitby, to Messrs. +Carter, Paterson & Co., London._ + +“_17 August._ + +“Dear Sirs,-- + +“Herewith please receive invoice of goods sent by Great Northern +Railway. Same are to be delivered at Carfax, near Purfleet, immediately +on receipt at goods station King’s Cross. The house is at present empty, +but enclosed please find keys, all of which are labelled. + +“You will please deposit the boxes, fifty in number, which form the +consignment, in the partially ruined building forming part of the house +and marked ‘A’ on rough diagram enclosed. Your agent will easily +recognise the locality, as it is the ancient chapel of the mansion. The +goods leave by the train at 9:30 to-night, and will be due at King’s +Cross at 4:30 to-morrow afternoon. As our client wishes the delivery +made as soon as possible, we shall be obliged by your having teams ready +at King’s Cross at the time named and forthwith conveying the goods to +destination. In order to obviate any delays possible through any routine +requirements as to payment in your departments, we enclose cheque +herewith for ten pounds (£10), receipt of which please acknowledge. +Should the charge be less than this amount, you can return balance; if +greater, we shall at once send cheque for difference on hearing from +you. You are to leave the keys on coming away in the main hall of the +house, where the proprietor may get them on his entering the house by +means of his duplicate key. + +“Pray do not take us as exceeding the bounds of business courtesy in +pressing you in all ways to use the utmost expedition. + +_“We are, dear Sirs, + +“Faithfully yours, + +“SAMUEL F. BILLINGTON & SON.”_ + + +_Letter, Messrs. Carter, Paterson & Co., London, to Messrs. Billington & +Son, Whitby._ + +“_21 August._ + +“Dear Sirs,-- + +“We beg to acknowledge £10 received and to return cheque £1 17s. 9d, +amount of overplus, as shown in receipted account herewith. Goods are +delivered in exact accordance with instructions, and keys left in parcel +in main hall, as directed. + +“We are, dear Sirs, + +“Yours respectfully. + +“_Pro_ CARTER, PATERSON & CO.” + + +_Mina Murray’s Journal._ + +_18 August._--I am happy to-day, and write sitting on the seat in the +churchyard. Lucy is ever so much better. Last night she slept well all +night, and did not disturb me once. The roses seem coming back already +to her cheeks, though she is still sadly pale and wan-looking. If she +were in any way anæmic I could understand it, but she is not. She is in +gay spirits and full of life and cheerfulness. All the morbid reticence +seems to have passed from her, and she has just reminded me, as if I +needed any reminding, of _that_ night, and that it was here, on this +very seat, I found her asleep. As she told me she tapped playfully with +the heel of her boot on the stone slab and said:-- + +“My poor little feet didn’t make much noise then! I daresay poor old Mr. +Swales would have told me that it was because I didn’t want to wake up +Geordie.” As she was in such a communicative humour, I asked her if she +had dreamed at all that night. Before she answered, that sweet, puckered +look came into her forehead, which Arthur--I call him Arthur from her +habit--says he loves; and, indeed, I don’t wonder that he does. Then she +went on in a half-dreaming kind of way, as if trying to recall it to +herself:-- + +“I didn’t quite dream; but it all seemed to be real. I only wanted to be +here in this spot--I don’t know why, for I was afraid of something--I +don’t know what. I remember, though I suppose I was asleep, passing +through the streets and over the bridge. A fish leaped as I went by, and +I leaned over to look at it, and I heard a lot of dogs howling--the +whole town seemed as if it must be full of dogs all howling at once--as +I went up the steps. Then I had a vague memory of something long and +dark with red eyes, just as we saw in the sunset, and something very +sweet and very bitter all around me at once; and then I seemed sinking +into deep green water, and there was a singing in my ears, as I have +heard there is to drowning men; and then everything seemed passing away +from me; my soul seemed to go out from my body and float about the air. +I seem to remember that once the West Lighthouse was right under me, +and then there was a sort of agonising feeling, as if I were in an +earthquake, and I came back and found you shaking my body. I saw you do +it before I felt you.” + +Then she began to laugh. It seemed a little uncanny to me, and I +listened to her breathlessly. I did not quite like it, and thought it +better not to keep her mind on the subject, so we drifted on to other +subjects, and Lucy was like her old self again. When we got home the +fresh breeze had braced her up, and her pale cheeks were really more +rosy. Her mother rejoiced when she saw her, and we all spent a very +happy evening together. + + * * * * * + +_19 August._--Joy, joy, joy! although not all joy. At last, news of +Thomas. The dear fellow has been ill; that is why he did not write. I +am not afraid to think it or say it, now that I know. Mr. Hawkins sent +me on the letter, and wrote himself, oh, so kindly. I am to leave in the +morning and go over to Thomas, and to help to nurse him if necessary, +and to bring him home. Mr. Hawkins says it would not be a bad thing if +we were to be married out there. I have cried over the good Sister’s +letter till I can feel it wet against my bosom, where it lies. It is of +Thomas, and must be next my heart, for he is _in_ my heart. My journey +is all mapped out, and my luggage ready. I am only taking one change of +dress; Lucy will bring my trunk to London and keep it till I send for +it, for it may be that ... I must write no more; I must keep it to say +to Thomas, my husband. The letter that he has seen and touched must +comfort me till we meet. + + +_Letter, Sister Agatha, Hospital of St. Joseph and Ste. Mary, +Buda-Pesth, to Miss Wilhelmina Murray._ + +“_12 August._ + +“Dear Madam,-- + +“I write by desire of Mr. Thomas Harker, who is himself not strong +enough to write, though progressing well, thanks to God and St. Joseph +and Ste. Mary. He has been under our care for nearly six weeks, +suffering from a violent brain fever. He wishes me to convey his love, +and to say that by this post I write for him to Mr. Peter Hawkins, +Exeter, to say, with his dutiful respects, that he is sorry for his +delay, and that all of his work is completed. He will require some few +weeks’ rest in our sanatorium in the hills, but will then return. He +wishes me to say that he has not sufficient money with him, and that he +would like to pay for his staying here, so that others who need shall +not be wanting for help. + +“Believe me, + +“Yours, with sympathy and all blessings, + +“SISTER AGATHA. + +“P. S.--My patient being asleep, I open this to let you know something +more. He has told me all about you, and that you are shortly to be his +wife. All blessings to you both! He has had some fearful shock--so says +our doctor--and in his delirium his ravings have been dreadful; of +wolves and poison and blood; of ghosts and demons; and I fear to say of +what. Be careful with him always that there may be nothing to excite him +of this kind for a long time to come; the traces of such an illness as +his do not lightly die away. We should have written long ago, but we +knew nothing of his friends, and there was on him nothing that any one +could understand. He came in the train from Klausenburg, and the guard +was told by the station-master there that he rushed into the station +shouting for a ticket for home. Seeing from his violent demeanour that +he was English, they gave him a ticket for the furthest station on the +way thither that the train reached. + +“Be assured that he is well cared for. He has won all hearts by his +sweetness and gentleness. He is truly getting on well, and I have no +doubt will in a few weeks be all himself. But be careful of him for +safety’s sake. There are, I pray God and St. Joseph and Ste. Mary, many, +many, happy years for you both.” + + +_Dr. Seward’s Diary._ + +_19 August._--Strange and sudden change in Renfield last night. About +eight o’clock he began to get excited and sniff about as a dog does when +setting. The attendant was struck by his manner, and knowing my interest +in him, encouraged him to talk. He is usually respectful to the +attendant and at times servile; but to-night, the man tells me, he was +quite haughty. Would not condescend to talk with him at all. All he +would say was:-- + + “I don’t want to talk to you: you don’t count now; the Master is at + hand.” + +The attendant thinks it is some sudden form of religious mania which has +seized him. If so, we must look out for squalls, for a strong man with +homicidal and religious mania at once might be dangerous. The +combination is a dreadful one. At nine o’clock I visited him myself. His +attitude to me was the same as that to the attendant; in his sublime +self-feeling the difference between myself and attendant seemed to him +as nothing. It looks like religious mania, and he will soon think that +he himself is God. These infinitesimal distinctions between man and man +are too paltry for an Omnipotent Being. How these madmen give themselves +away! The real God taketh heed lest a sparrow fall; but the God created +from human vanity sees no difference between an eagle and a sparrow. Oh, +if men only knew! + +For half an hour or more Renfield kept getting excited in greater and +greater degree. I did not pretend to be watching him, but I kept strict +observation all the same. All at once that shifty look came into his +eyes which we always see when a madman has seized an idea, and with it +the shifty movement of the head and back which asylum attendants come to +know so well. He became quite quiet, and went and sat on the edge of his +bed resignedly, and looked into space with lack-lustre eyes. I thought I +would find out if his apathy were real or only assumed, and tried to +lead him to talk of his pets, a theme which had never failed to excite +his attention. At first he made no reply, but at length said testily:-- + +“Bother them all! I don’t care a pin about them.” + +“What?” I said. “You don’t mean to tell me you don’t care about +spiders?” (Spiders at present are his hobby and the note-book is filling +up with columns of small figures.) To this he answered enigmatically:-- + +“The bride-maidens rejoice the eyes that wait the coming of the bride; +but when the bride draweth nigh, then the maidens shine not to the eyes +that are filled.” + +He would not explain himself, but remained obstinately seated on his bed +all the time I remained with him. + +I am weary to-night and low in spirits. I cannot but think of Lucy, and +how different things might have been. If I don’t sleep at once, chloral, +the modern Morpheus--C_{2}HCl_{3}O. H_{2}O! I must be careful not to let +it grow into a habit. No, I shall take none to-night! I have thought of +Lucy, and I shall not dishonour her by mixing the two. If need be, +to-night shall be sleepless.... + + * * * * * + +_Later._--Glad I made the resolution; gladder that I kept to it. I had +lain tossing about, and had heard the clock strike only twice, when the +night-watchman came to me, sent up from the ward, to say that Renfield +had escaped. I threw on my clothes and ran down at once; my patient is +too dangerous a person to be roaming about. Those ideas of his might +work out dangerously with strangers. The attendant was waiting for me. +He said he had seen him not ten minutes before, seemingly asleep in his +bed, when he had looked through the observation-trap in the door. His +attention was called by the sound of the window being wrenched out. He +ran back and saw his feet disappear through the window, and had at once +sent up for me. He was only in his night-gear, and cannot be far off. +The attendant thought it would be more useful to watch where he should +go than to follow him, as he might lose sight of him whilst getting out +of the building by the door. He is a bulky man, and couldn’t get through +the window. I am thin, so, with his aid, I got out, but feet foremost, +and, as we were only a few feet above ground, landed unhurt. The +attendant told me the patient had gone to the left, and had taken a +straight line, so I ran as quickly as I could. As I got through the belt +of trees I saw a white figure scale the high wall which separates our +grounds from those of the deserted house. + +I ran back at once, told the watchman to get three or four men +immediately and follow me into the grounds of Carfax, in case our friend +might be dangerous. I got a ladder myself, and crossing the wall, +dropped down on the other side. I could see Renfield’s figure just +disappearing behind the angle of the house, so I ran after him. On the +far side of the house I found him pressed close against the old +ironbound oak door of the chapel. He was talking, apparently to some +one, but I was afraid to go near enough to hear what he was saying, lest +I might frighten him, and he should run off. Chasing an errant swarm of +bees is nothing to following a naked lunatic, when the fit of escaping +is upon him! After a few minutes, however, I could see that he did not +take note of anything around him, and so ventured to draw nearer to +him--the more so as my men had now crossed the wall and were closing him +in. I heard him say:-- + +“I am here to do Your bidding, Master. I am Your slave, and You will +reward me, for I shall be faithful. I have worshipped You long and afar +off. Now that You are near, I await Your commands, and You will not pass +me by, will You, dear Master, in Your distribution of good things?” + +He _is_ a selfish old beggar anyhow. He thinks of the loaves and fishes +even when he believes he is in a Real Presence. His manias make a +startling combination. When we closed in on him he fought like a tiger. +He is immensely strong, for he was more like a wild beast than a man. I +never saw a lunatic in such a paroxysm of rage before; and I hope I +shall not again. It is a mercy that we have found out his strength and +his danger in good time. With strength and determination like his, he +might have done wild work before he was caged. He is safe now at any +rate. Jack Sheppard himself couldn’t get free from the strait-waistcoat +that keeps him restrained, and he’s chained to the wall in the padded +room. His cries are at times awful, but the silences that follow are +more deadly still, for he means murder in every turn and movement. + +Just now he spoke coherent words for the first time:-- + +“I shall be patient, Master. It is coming--coming--coming!” + +So I took the hint, and came too. I was too excited to sleep, but this +diary has quieted me, and I feel I shall get some sleep to-night. + + + + +CHAPTER IX + + +_Letter, Mina Harker to Lucy Westenra._ + +“_Buda-Pesth, 24 August._ + +“My dearest Lucy,-- + +“I know you will be anxious to hear all that has happened since we +parted at the railway station at Whitby. Well, my dear, I got to Hull +all right, and caught the boat to Hamburg, and then the train on here. I +feel that I can hardly recall anything of the journey, except that I +knew I was coming to Thomas, and, that as I should have to do some +nursing, I had better get all the sleep I could.... I found my dear one, +oh, so thin and pale and weak-looking. All the resolution has gone out +of his dear eyes, and that quiet dignity which I told you was in his +face has vanished. He is only a wreck of himself, and he does not +remember anything that has happened to him for a long time past. At +least, he wants me to believe so, and I shall never ask. He has had some +terrible shock, and I fear it might tax his poor brain if he were to try +to recall it. Sister Agatha, who is a good creature and a born nurse, +tells me that he raved of dreadful things whilst he was off his head. I +wanted her to tell me what they were; but she would only cross herself, +and say she would never tell; that the ravings of the sick were the +secrets of God, and that if a nurse through her vocation should hear +them, she should respect her trust. She is a sweet, good soul, and the +next day, when she saw I was troubled, she opened up the subject again, +and after saying that she could never mention what my poor dear raved +about, added: ‘I can tell you this much, my dear: that it was not about +anything which he has done wrong himself; and you, as his wife to be, +have no cause to be concerned. He has not forgotten you or what he owes +to you. His fear was of great and terrible things, which no mortal can +treat of.’ I do believe the dear soul thought I might be jealous lest my +poor dear should have fallen in love with any other girl. The idea of +_my_ being jealous about Thomas! And yet, my dear, let me whisper, I +felt a thrill of joy through me when I _knew_ that no other woman was a +cause of trouble. I am now sitting by his bedside, where I can see his +face while he sleeps. He is waking!... + +“When he woke he asked me for his coat, as he wanted to get something +from the pocket; I asked Sister Agatha, and she brought all his things. +I saw that amongst them was his note-book, and was going to ask him to +let me look at it--for I knew then that I might find some clue to his +trouble--but I suppose he must have seen my wish in my eyes, for he sent +me over to the window, saying he wanted to be quite alone for a moment. +Then he called me back, and when I came he had his hand over the +note-book, and he said to me very solemnly:-- + +“‘Wilhelmina’--I knew then that he was in deadly earnest, for he has +never called me by that name since he asked me to marry him--‘you know, +dear, my ideas of the trust between husband and wife: there should be no +secret, no concealment. I have had a great shock, and when I try to +think of what it is I feel my head spin round, and I do not know if it +was all real or the dreaming of a madman. You know I have had brain +fever, and that is to be mad. The secret is here, and I do not want to +know it. I want to take up my life here, with our marriage.’ For, my +dear, we had decided to be married as soon as the formalities are +complete. ‘Are you willing, Wilhelmina, to share my ignorance? Here is +the book. Take it and keep it, read it if you will, but never let me +know; unless, indeed, some solemn duty should come upon me to go back to +the bitter hours, asleep or awake, sane or mad, recorded here.’ He fell +back exhausted, and I put the book under his pillow, and kissed him. I +have asked Sister Agatha to beg the Superior to let our wedding be this +afternoon, and am waiting her reply.... + + * * * * * + +“She has come and told me that the chaplain of the English mission +church has been sent for. We are to be married in an hour, or as soon +after as Thomas awakes.... + + * * * * * + +“Lucy, the time has come and gone. I feel very solemn, but very, very +happy. Thomas woke a little after the hour, and all was ready, and he +sat up in bed, propped up with pillows. He answered his ‘I will’ firmly +and strongly. I could hardly speak; my heart was so full that even those +words seemed to choke me. The dear sisters were so kind. Please God, I +shall never, never forget them, nor the grave and sweet responsibilities +I have taken upon me. I must tell you of my wedding present. When the +chaplain and the sisters had left me alone with my husband--oh, Lucy, it +is the first time I have written the words ‘my husband’--left me alone +with my husband, I took the book from under his pillow, and wrapped it +up in white paper, and tied it with a little bit of pale blue ribbon +which was round my neck, and sealed it over the knot with sealing-wax, +and for my seal I used my wedding ring. Then I kissed it and showed it +to my husband, and told him that I would keep it so, and then it would +be an outward and visible sign for us all our lives that we trusted each +other; that I would never open it unless it were for his own dear sake +or for the sake of some stern duty. Then he took my hand in his, and oh, +Lucy, it was the first time he took _his wife’s_ hand, and said that it +was the dearest thing in all the wide world, and that he would go +through all the past again to win it, if need be. The poor dear meant to +have said a part of the past, but he cannot think of time yet, and I +shall not wonder if at first he mixes up not only the month, but the +year. + +“Well, my dear, what could I say? I could only tell him that I was the +happiest woman in all the wide world, and that I had nothing to give him +except myself, my life, and my trust, and that with these went my love +and duty for all the days of my life. And, my dear, when he kissed me, +and drew me to him with his poor weak hands, it was like a very solemn +pledge between us.... + +“Lucy dear, do you know why I tell you all this? It is not only because +it is all sweet to me, but because you have been, and are, very dear to +me. It was my privilege to be your friend and guide when you came from +the schoolroom to prepare for the world of life. I want you to see now, +and with the eyes of a very happy wife, whither duty has led me; so that +in your own married life you too may be all happy as I am. My dear, +please Almighty God, your life may be all it promises: a long day of +sunshine, with no harsh wind, no forgetting duty, no distrust. I must +not wish you no pain, for that can never be; but I do hope you will be +_always_ as happy as I am _now_. Good-bye, my dear. I shall post this at +once, and, perhaps, write you very soon again. I must stop, for Thomas +is waking--I must attend to my husband! + +“Your ever-loving + +“MINA HARKER.” + + +_Letter, Lucy Westenra to Mina Harker._ + +“_Whitby, 30 August._ + +“My dearest Mina,-- + +“Oceans of love and millions of kisses, and may you soon be in your own +home with your husband. I wish you could be coming home soon enough to +stay with us here. The strong air would soon restore Thomas; it has +quite restored me. I have an appetite like a cormorant, am full of +life, and sleep well. You will be glad to know that I have quite given +up walking in my sleep. I think I have not stirred out of my bed for a +week, that is when I once got into it at night. Arthur says I am getting +fat. By the way, I forgot to tell you that Arthur is here. We have such +walks and drives, and rides, and rowing, and tennis, and fishing +together; and I love him more than ever. He _tells_ me that he loves me +more, but I doubt that, for at first he told me that he couldn’t love me +more than he did then. But this is nonsense. There he is, calling to me. +So no more just at present from your loving + +“LUCY. + +“P. S.--Mother sends her love. She seems better, poor dear. +“P. P. S.--We are to be married on 28 September.” + + +_Dr. Seward’s Diary._ + +_20 August._--The case of Renfield grows even more interesting. He has +now so far quieted that there are spells of cessation from his passion. +For the first week after his attack he was perpetually violent. Then one +night, just as the moon rose, he grew quiet, and kept murmuring to +himself: “Now I can wait; now I can wait.” The attendant came to tell +me, so I ran down at once to have a look at him. He was still in the +strait-waistcoat and in the padded room, but the suffused look had gone +from his face, and his eyes had something of their old pleading--I might +almost say, “cringing”--softness. I was satisfied with his present +condition, and directed him to be relieved. The attendants hesitated, +but finally carried out my wishes without protest. It was a strange +thing that the patient had humour enough to see their distrust, for, +coming close to me, he said in a whisper, all the while looking +furtively at them:-- + +“They think I could hurt you! Fancy _me_ hurting _you_! The fools!” + +It was soothing, somehow, to the feelings to find myself dissociated +even in the mind of this poor madman from the others; but all the same I +do not follow his thought. Am I to take it that I have anything in +common with him, so that we are, as it were, to stand together; or has +he to gain from me some good so stupendous that my well-being is needful +to him? I must find out later on. To-night he will not speak. Even the +offer of a kitten or even a full-grown cat will not tempt him. He will +only say: “I don’t take any stock in cats. I have more to think of now, +and I can wait; I can wait.” + +After a while I left him. The attendant tells me that he was quiet +until just before dawn, and that then he began to get uneasy, and at +length violent, until at last he fell into a paroxysm which exhausted +him so that he swooned into a sort of coma. + + * * * * * + +... Three nights has the same thing happened--violent all day then quiet +from moonrise to sunrise. I wish I could get some clue to the cause. It +would almost seem as if there was some influence which came and went. +Happy thought! We shall to-night play sane wits against mad ones. He +escaped before without our help; to-night he shall escape with it. We +shall give him a chance, and have the men ready to follow in case they +are required.... + + * * * * * + +_23 August._--“The unexpected always happens.” How well Disraeli knew +life. Our bird when he found the cage open would not fly, so all our +subtle arrangements were for nought. At any rate, we have proved one +thing; that the spells of quietness last a reasonable time. We shall in +future be able to ease his bonds for a few hours each day. I have given +orders to the night attendant merely to shut him in the padded room, +when once he is quiet, until an hour before sunrise. The poor soul’s +body will enjoy the relief even if his mind cannot appreciate it. Hark! +The unexpected again! I am called; the patient has once more escaped. + + * * * * * + +_Later._--Another night adventure. Renfield artfully waited until the +attendant was entering the room to inspect. Then he dashed out past him +and flew down the passage. I sent word for the attendants to follow. +Again he went into the grounds of the deserted house, and we found him +in the same place, pressed against the old chapel door. When he saw me +he became furious, and had not the attendants seized him in time, he +would have tried to kill me. As we were holding him a strange thing +happened. He suddenly redoubled his efforts, and then as suddenly grew +calm. I looked round instinctively, but could see nothing. Then I caught +the patient’s eye and followed it, but could trace nothing as it looked +into the moonlit sky except a big bat, which was flapping its silent and +ghostly way to the west. Bats usually wheel and flit about, but this one +seemed to go straight on, as if it knew where it was bound for or had +some intention of its own. The patient grew calmer every instant, and +presently said:-- + +“You needn’t tie me; I shall go quietly!” Without trouble we came back +to the house. I feel there is something ominous in his calm, and shall +not forget this night.... + + +_Lucy Westenra’s Diary_ + +_Hillingham, 24 August._--I must imitate Mina, and keep writing things +down. Then we can have long talks when we do meet. I wonder when it will +be. I wish she were with me again, for I feel so unhappy. Last night I +seemed to be dreaming again just as I was at Whitby. Perhaps it is the +change of air, or getting home again. It is all dark and horrid to me, +for I can remember nothing; but I am full of vague fear, and I feel so +weak and worn out. When Arthur came to lunch he looked quite grieved +when he saw me, and I hadn’t the spirit to try to be cheerful. I wonder +if I could sleep in mother’s room to-night. I shall make an excuse and +try. + + * * * * * + +_25 August._--Another bad night. Mother did not seem to take to my +proposal. She seems not too well herself, and doubtless she fears to +worry me. I tried to keep awake, and succeeded for a while; but when the +clock struck twelve it waked me from a doze, so I must have been falling +asleep. There was a sort of scratching or flapping at the window, but I +did not mind it, and as I remember no more, I suppose I must then have +fallen asleep. More bad dreams. I wish I could remember them. This +morning I am horribly weak. My face is ghastly pale, and my throat pains +me. It must be something wrong with my lungs, for I don’t seem ever to +get air enough. I shall try to cheer up when Arthur comes, or else I +know he will be miserable to see me so. + + +_Letter, Arthur Holmwood to Dr. Seward._ + +“_Albemarle Hotel, 31 August._ + +“My dear Jack,-- + +“I want you to do me a favour. Lucy is ill; that is, she has no special +disease, but she looks awful, and is getting worse every day. I have +asked her if there is any cause; I do not dare to ask her mother, for to +disturb the poor lady’s mind about her daughter in her present state of +health would be fatal. Mrs. Westenra has confided to me that her doom is +spoken--disease of the heart--though poor Lucy does not know it yet. I +am sure that there is something preying on my dear girl’s mind. I am +almost distracted when I think of her; to look at her gives me a pang. I +told her I should ask you to see her, and though she demurred at +first--I know why, old fellow--she finally consented. It will be a +painful task for you, I know, old friend, but it is for _her_ sake, and +I must not hesitate to ask, or you to act. You are to come to lunch at +Hillingham to-morrow, two o’clock, so as not to arouse any suspicion in +Mrs. Westenra, and after lunch Lucy will take an opportunity of being +alone with you. I shall come in for tea, and we can go away together; I +am filled with anxiety, and want to consult with you alone as soon as I +can after you have seen her. Do not fail! + +“ARTHUR.” + + +_Telegram, Arthur Holmwood to Seward._ + +“_1 September._ + +“Am summoned to see my father, who is worse. Am writing. Write me fully +by to-night’s post to Ring. Wire me if necessary.” + + +_Letter from Dr. Seward to Arthur Holmwood._ + +“_2 September._ + +“My dear old fellow,-- + +“With regard to Miss Westenra’s health I hasten to let you know at once +that in my opinion there is not any functional disturbance or any malady +that I know of. At the same time, I am not by any means satisfied with +her appearance; she is woefully different from what she was when I saw +her last. Of course you must bear in mind that I did not have full +opportunity of examination such as I should wish; our very friendship +makes a little difficulty which not even medical science or custom can +bridge over. I had better tell you exactly what happened, leaving you to +draw, in a measure, your own conclusions. I shall then say what I have +done and propose doing. + +“I found Miss Westenra in seemingly gay spirits. Her mother was present, +and in a few seconds I made up my mind that she was trying all she knew +to mislead her mother and prevent her from being anxious. I have no +doubt she guesses, if she does not know, what need of caution there is. +We lunched alone, and as we all exerted ourselves to be cheerful, we +got, as some kind of reward for our labours, some real cheerfulness +amongst us. Then Mrs. Westenra went to lie down, and Lucy was left with +me. We went into her boudoir, and till we got there her gaiety remained, +for the servants were coming and going. As soon as the door was closed, +however, the mask fell from her face, and she sank down into a chair +with a great sigh, and hid her eyes with her hand. When I saw that her +high spirits had failed, I at once took advantage of her reaction to +make a diagnosis. She said to me very sweetly:-- + +“‘I cannot tell you how I loathe talking about myself.’ I reminded her +that a doctor’s confidence was sacred, but that you were grievously +anxious about her. She caught on to my meaning at once, and settled that +matter in a word. ‘Tell Arthur everything you choose. I do not care for +myself, but all for him!’ So I am quite free. + +“I could easily see that she is somewhat bloodless, but I could not see +the usual anæmic signs, and by a chance I was actually able to test the +quality of her blood, for in opening a window which was stiff a cord +gave way, and she cut her hand slightly with broken glass. It was a +slight matter in itself, but it gave me an evident chance, and I secured +a few drops of the blood and have analysed them. The qualitative +analysis gives a quite normal condition, and shows, I should infer, in +itself a vigorous state of health. In other physical matters I was quite +satisfied that there is no need for anxiety; but as there must be a +cause somewhere, I have come to the conclusion that it must be something +mental. She complains of difficulty in breathing satisfactorily at +times, and of heavy, lethargic sleep, with dreams that frighten her, but +regarding which she can remember nothing. She says that as a child she +used to walk in her sleep, and that when in Whitby the habit came back, +and that once she walked out in the night and went to East Cliff, where +Miss Murray found her; but she assures me that of late the habit has not +returned. I am in doubt, and so have done the best thing I know of; I +have written to my old friend and master, Professor Van Helsing, of +Amsterdam, who knows as much about obscure diseases as any one in the +world. I have asked him to come over, and as you told me that all things +were to be at your charge, I have mentioned to him who you are and your +relations to Miss Westenra. This, my dear fellow, is in obedience to +your wishes, for I am only too proud and happy to do anything I can for +her. Van Helsing would, I know, do anything for me for a personal +reason, so, no matter on what ground he comes, we must accept his +wishes. He is a seemingly arbitrary man, but this is because he knows +what he is talking about better than any one else. He is a philosopher +and a metaphysician, and one of the most advanced scientists of his day; +and he has, I believe, an absolutely open mind. This, with an iron +nerve, a temper of the ice-brook, an indomitable resolution, +self-command, and toleration exalted from virtues to blessings, and the +kindliest and truest heart that beats--these form his equipment for the +noble work that he is doing for mankind--work both in theory and +practice, for his views are as wide as his all-embracing sympathy. I +tell you these facts that you may know why I have such confidence in +him. I have asked him to come at once. I shall see Miss Westenra +to-morrow again. She is to meet me at the Stores, so that I may not +alarm her mother by too early a repetition of my call. + +“Yours always, + +“JOHN SEWARD.” + + +_Letter, Abraham Van Helsing, M. D., D. Ph., D. Lit., etc., etc., to Dr. +Seward._ + +“_2 September._ + +“My good Friend,-- + +“When I have received your letter I am already coming to you. By good +fortune I can leave just at once, without wrong to any of those who have +trusted me. Were fortune other, then it were bad for those who have +trusted, for I come to my friend when he call me to aid those he holds +dear. Tell your friend that when that time you suck from my wound so +swiftly the poison of the gangrene from that knife that our other +friend, too nervous, let slip, you did more for him when he wants my +aids and you call for them than all his great fortune could do. But it +is pleasure added to do for him, your friend; it is to you that I come. +Have then rooms for me at the Great Eastern Hotel, so that I may be near +to hand, and please it so arrange that we may see the young lady not too +late on to-morrow, for it is likely that I may have to return here that +night. But if need be I shall come again in three days, and stay longer +if it must. Till then good-bye, my friend John. + + “VAN HELSING.” + + +_Letter, Dr. Seward to Hon. Arthur Holmwood._ + +“_3 September._ + +“My dear Art,-- + +“Van Helsing has come and gone. He came on with me to Hillingham, and +found that, by Lucy’s discretion, her mother was lunching out, so that +we were alone with her. Van Helsing made a very careful examination of +the patient. He is to report to me, and I shall advise you, for of +course I was not present all the time. He is, I fear, much concerned, +but says he must think. When I told him of our friendship and how you +trust to me in the matter, he said: ‘You must tell him all you think. +Tell him what I think, if you can guess it, if you will. Nay, I am not +jesting. This is no jest, but life and death, perhaps more.’ I asked +what he meant by that, for he was very serious. This was when we had +come back to town, and he was having a cup of tea before starting on his +return to Amsterdam. He would not give me any further clue. You must not +be angry with me, Art, because his very reticence means that all his +brains are working for her good. He will speak plainly enough when the +time comes, be sure. So I told him I would simply write an account of +our visit, just as if I were doing a descriptive special article for +_The Daily Telegraph_. He seemed not to notice, but remarked that the +smuts in London were not quite so bad as they used to be when he was a +student here. I am to get his report to-morrow if he can possibly make +it. In any case I am to have a letter. + +“Well, as to the visit. Lucy was more cheerful than on the day I first +saw her, and certainly looked better. She had lost something of the +ghastly look that so upset you, and her breathing was normal. She was +very sweet to the professor (as she always is), and tried to make him +feel at ease; though I could see that the poor girl was making a hard +struggle for it. I believe Van Helsing saw it, too, for I saw the quick +look under his bushy brows that I knew of old. Then he began to chat of +all things except ourselves and diseases and with such an infinite +geniality that I could see poor Lucy’s pretense of animation merge into +reality. Then, without any seeming change, he brought the conversation +gently round to his visit, and suavely said:-- + +“‘My dear young miss, I have the so great pleasure because you are so +much beloved. That is much, my dear, ever were there that which I do not +see. They told me you were down in the spirit, and that you were of a +ghastly pale. To them I say: “Pouf!”’ And he snapped his fingers at me +and went on: ‘But you and I shall show them how wrong they are. How can +he’--and he pointed at me with the same look and gesture as that with +which once he pointed me out to his class, on, or rather after, a +particular occasion which he never fails to remind me of--‘know anything +of a young ladies? He has his madmans to play with, and to bring them +back to happiness, and to those that love them. It is much to do, and, +oh, but there are rewards, in that we can bestow such happiness. But the +young ladies! He has no wife nor daughter, and the young do not tell +themselves to the young, but to the old, like me, who have known so many +sorrows and the causes of them. So, my dear, we will send him away to +smoke the cigarette in the garden, whiles you and I have little talk all +to ourselves.’ I took the hint, and strolled about, and presently the +professor came to the window and called me in. He looked grave, but +said: ‘I have made careful examination, but there is no functional +cause. With you I agree that there has been much blood lost; it has +been, but is not. But the conditions of her are in no way anæmic. I have +asked her to send me her maid, that I may ask just one or two question, +that so I may not chance to miss nothing. I know well what she will say. +And yet there is cause; there is always cause for everything. I must go +back home and think. You must send to me the telegram every day; and if +there be cause I shall come again. The disease--for not to be all well +is a disease--interest me, and the sweet young dear, she interest me +too. She charm me, and for her, if not for you or disease, I come.’ + +“As I tell you, he would not say a word more, even when we were alone. +And so now, Art, you know all I know. I shall keep stern watch. I trust +your poor father is rallying. It must be a terrible thing to you, my +dear old fellow, to be placed in such a position between two people who +are both so dear to you. I know your idea of duty to your father, and +you are right to stick to it; but, if need be, I shall send you word to +come at once to Lucy; so do not be over-anxious unless you hear from +me.” + + +_Dr. Seward’s Diary._ + +_4 September._--Zoöphagous patient still keeps up our interest in him. +He had only one outburst and that was yesterday at an unusual time. Just +before the stroke of noon he began to grow restless. The attendant knew +the symptoms, and at once summoned aid. Fortunately the men came at a +run, and were just in time, for at the stroke of noon he became so +violent that it took all their strength to hold him. In about five +minutes, however, he began to get more and more quiet, and finally sank +into a sort of melancholy, in which state he has remained up to now. The +attendant tells me that his screams whilst in the paroxysm were really +appalling; I found my hands full when I got in, attending to some of the +other patients who were frightened by him. Indeed, I can quite +understand the effect, for the sounds disturbed even me, though I was +some distance away. It is now after the dinner-hour of the asylum, and +as yet my patient sits in a corner brooding, with a dull, sullen, +woe-begone look in his face, which seems rather to indicate than to show +something directly. I cannot quite understand it. + + * * * * * + +_Later._--Another change in my patient. At five o’clock I looked in on +him, and found him seemingly as happy and contented as he used to be. He +was catching flies and eating them, and was keeping note of his capture +by making nail-marks on the edge of the door between the ridges of +padding. When he saw me, he came over and apologised for his bad +conduct, and asked me in a very humble, cringing way to be led back to +his own room and to have his note-book again. I thought it well to +humour him: so he is back in his room with the window open. He has the +sugar of his tea spread out on the window-sill, and is reaping quite a +harvest of flies. He is not now eating them, but putting them into a +box, as of old, and is already examining the corners of his room to find +a spider. I tried to get him to talk about the past few days, for any +clue to his thoughts would be of immense help to me; but he would not +rise. For a moment or two he looked very sad, and said in a sort of +far-away voice, as though saying it rather to himself than to me:-- + +“All over! all over! He has deserted me. No hope for me now unless I do +it for myself!” Then suddenly turning to me in a resolute way, he said: +“Doctor, won’t you be very good to me and let me have a little more +sugar? I think it would be good for me.” + +“And the flies?” I said. + +“Yes! The flies like it, too, and I like the flies; therefore I like +it.” And there are people who know so little as to think that madmen do +not argue. I procured him a double supply, and left him as happy a man +as, I suppose, any in the world. I wish I could fathom his mind. + + * * * * * + +_Midnight._--Another change in him. I had been to see Miss Westenra, +whom I found much better, and had just returned, and was standing at our +own gate looking at the sunset, when once more I heard him yelling. As +his room is on this side of the house, I could hear it better than in +the morning. It was a shock to me to turn from the wonderful smoky +beauty of a sunset over London, with its lurid lights and inky shadows +and all the marvellous tints that come on foul clouds even as on foul +water, and to realise all the grim sternness of my own cold stone +building, with its wealth of breathing misery, and my own desolate heart +to endure it all. I reached him just as the sun was going down, and from +his window saw the red disc sink. As it sank he became less and less +frenzied; and just as it dipped he slid from the hands that held him, an +inert mass, on the floor. It is wonderful, however, what intellectual +recuperative power lunatics have, for within a few minutes he stood up +quite calmly and looked around him. I signalled to the attendants not to +hold him, for I was anxious to see what he would do. He went straight +over to the window and brushed out the crumbs of sugar; then he took his +fly-box, and emptied it outside, and threw away the box; then he shut +the window, and crossing over, sat down on his bed. All this surprised +me, so I asked him: “Are you not going to keep flies any more?” + +“No,” said he; “I am sick of all that rubbish!” He certainly is a +wonderfully interesting study. I wish I could get some glimpse of his +mind or of the cause of his sudden passion. Stop; there may be a clue +after all, if we can find why to-day his paroxysms came on at high noon +and at sunset. Can it be that there is a malign influence of the sun at +periods which affects certain natures--as at times the moon does others? +We shall see. + + +_Telegram, Seward, London, to Van Helsing, Amsterdam._ + +“_4 September._--Patient still better to-day.” + + +_Telegram, Seward, London, to Van Helsing, Amsterdam._ + +“_5 September._--Patient greatly improved. Good appetite; sleeps +naturally; good spirits; colour coming back.” + + +_Telegram, Seward, London, to Van Helsing, Amsterdam._ + +“_6 September._--Terrible change for the worse. Come at once; do not +lose an hour. I hold over telegram to Holmwood till have seen you.” + + + + +CHAPTER X + + +_Letter, Dr. Seward to Hon. Arthur Holmwood._ + +“_6 September._ + +“My dear Art,-- + +“My news to-day is not so good. Lucy this morning had gone back a bit. +There is, however, one good thing which has arisen from it; Mrs. +Westenra was naturally anxious concerning Lucy, and has consulted me +professionally about her. I took advantage of the opportunity, and told +her that my old master, Van Helsing, the great specialist, was coming to +stay with me, and that I would put her in his charge conjointly with +myself; so now we can come and go without alarming her unduly, for a +shock to her would mean sudden death, and this, in Lucy’s weak +condition, might be disastrous to her. We are hedged in with +difficulties, all of us, my poor old fellow; but, please God, we shall +come through them all right. If any need I shall write, so that, if you +do not hear from me, take it for granted that I am simply waiting for +news. In haste + +“Yours ever, + +“JOHN SEWARD.” + + +_Dr. Seward’s Diary._ + +_7 September._--The first thing Van Helsing said to me when we met at +Liverpool Street was:-- + +“Have you said anything to our young friend the lover of her?” + +“No,” I said. “I waited till I had seen you, as I said in my telegram. I +wrote him a letter simply telling him that you were coming, as Miss +Westenra was not so well, and that I should let him know if need be.” + +“Right, my friend,” he said, “quite right! Better he not know as yet; +perhaps he shall never know. I pray so; but if it be needed, then he +shall know all. And, my good friend John, let me caution you. You deal +with the madmen. All men are mad in some way or the other; and inasmuch +as you deal discreetly with your madmen, so deal with God’s madmen, +too--the rest of the world. You tell not your madmen what you do nor why +you do it; you tell them not what you think. So you shall keep knowledge +in its place, where it may rest--where it may gather its kind around it +and breed. You and I shall keep as yet what we know here, and here.” He +touched me on the heart and on the forehead, and then touched himself +the same way. “I have for myself thoughts at the present. Later I shall +unfold to you.” + +“Why not now?” I asked. “It may do some good; we may arrive at some +decision.” He stopped and looked at me, and said:-- + +“My friend John, when the corn is grown, even before it has +ripened--while the milk of its mother-earth is in him, and the sunshine +has not yet begun to paint him with his gold, the husbandman he pull the +ear and rub him between his rough hands, and blow away the green chaff, +and say to you: ‘Look! he’s good corn; he will make good crop when the +time comes.’” I did not see the application, and told him so. For reply +he reached over and took my ear in his hand and pulled it playfully, as +he used long ago to do at lectures, and said: “The good husbandman tell +you so then because he knows, but not till then. But you do not find the +good husbandman dig up his planted corn to see if he grow; that is for +the children who play at husbandry, and not for those who take it as of +the work of their life. See you now, friend John? I have sown my corn, +and Nature has her work to do in making it sprout; if he sprout at all, +there’s some promise; and I wait till the ear begins to swell.” He broke +off, for he evidently saw that I understood. Then he went on, and very +gravely:-- + +“You were always a careful student, and your case-book was ever more +full than the rest. You were only student then; now you are master, and +I trust that good habit have not fail. Remember, my friend, that +knowledge is stronger than memory, and we should not trust the weaker. +Even if you have not kept the good practise, let me tell you that this +case of our dear miss is one that may be--mind, I say _may be_--of such +interest to us and others that all the rest may not make him kick the +beam, as your peoples say. Take then good note of it. Nothing is too +small. I counsel you, put down in record even your doubts and surmises. +Hereafter it may be of interest to you to see how true you guess. We +learn from failure, not from success!” + +When I described Lucy’s symptoms--the same as before, but infinitely +more marked--he looked very grave, but said nothing. He took with him a +bag in which were many instruments and drugs, “the ghastly paraphernalia +of our beneficial trade,” as he once called, in one of his lectures, the +equipment of a professor of the healing craft. When we were shown in, +Mrs. Westenra met us. She was alarmed, but not nearly so much as I +expected to find her. Nature in one of her beneficent moods has ordained +that even death has some antidote to its own terrors. Here, in a case +where any shock may prove fatal, matters are so ordered that, from some +cause or other, the things not personal--even the terrible change in her +daughter to whom she is so attached--do not seem to reach her. It is +something like the way Dame Nature gathers round a foreign body an +envelope of some insensitive tissue which can protect from evil that +which it would otherwise harm by contact. If this be an ordered +selfishness, then we should pause before we condemn any one for the vice +of egoism, for there may be deeper root for its causes than we have +knowledge of. + +I used my knowledge of this phase of spiritual pathology, and laid down +a rule that she should not be present with Lucy or think of her illness +more than was absolutely required. She assented readily, so readily that +I saw again the hand of Nature fighting for life. Van Helsing and I were +shown up to Lucy’s room. If I was shocked when I saw her yesterday, I +was horrified when I saw her to-day. She was ghastly, chalkily pale; the +red seemed to have gone even from her lips and gums, and the bones of +her face stood out prominently; her breathing was painful to see or +hear. Van Helsing’s face grew set as marble, and his eyebrows converged +till they almost touched over his nose. Lucy lay motionless, and did not +seem to have strength to speak, so for a while we were all silent. Then +Van Helsing beckoned to me, and we went gently out of the room. The +instant we had closed the door he stepped quickly along the passage to +the next door, which was open. Then he pulled me quickly in with him and +closed the door. “My God!” he said; “this is dreadful. There is no time +to be lost. She will die for sheer want of blood to keep the heart’s +action as it should be. There must be transfusion of blood at once. Is +it you or me?” + +“I am younger and stronger, Professor. It must be me.” + +“Then get ready at once. I will bring up my bag. I am prepared.” + +I went downstairs with him, and as we were going there was a knock at +the hall-door. When we reached the hall the maid had just opened the +door, and Arthur was stepping quickly in. He rushed up to me, saying in +an eager whisper:-- + +“Jack, I was so anxious. I read between the lines of your letter, and +have been in an agony. The dad was better, so I ran down here to see for +myself. Is not that gentleman Dr. Van Helsing? I am so thankful to you, +sir, for coming.” When first the Professor’s eye had lit upon him he had +been angry at his interruption at such a time; but now, as he took in +his stalwart proportions and recognised the strong young manhood which +seemed to emanate from him, his eyes gleamed. Without a pause he said to +him gravely as he held out his hand:-- + +“Sir, you have come in time. You are the lover of our dear miss. She is +bad, very, very bad. Nay, my child, do not go like that.” For he +suddenly grew pale and sat down in a chair almost fainting. “You are to +help her. You can do more than any that live, and your courage is your +best help.” + +“What can I do?” asked Arthur hoarsely. “Tell me, and I shall do it. My +life is hers, and I would give the last drop of blood in my body for +her.” The Professor has a strongly humorous side, and I could from old +knowledge detect a trace of its origin in his answer:-- + +“My young sir, I do not ask so much as that--not the last!” + +“What shall I do?” There was fire in his eyes, and his open nostril +quivered with intent. Van Helsing slapped him on the shoulder. “Come!” +he said. “You are a man, and it is a man we want. You are better than +me, better than my friend John.” Arthur looked bewildered, and the +Professor went on by explaining in a kindly way:-- + +“Young miss is bad, very bad. She wants blood, and blood she must have +or die. My friend John and I have consulted; and we are about to perform +what we call transfusion of blood--to transfer from full veins of one to +the empty veins which pine for him. John was to give his blood, as he is +the more young and strong than me”--here Arthur took my hand and wrung +it hard in silence--“but, now you are here, you are more good than us, +old or young, who toil much in the world of thought. Our nerves are not +so calm and our blood not so bright than yours!” Arthur turned to him +and said:-- + +“If you only knew how gladly I would die for her you would +understand----” + +He stopped, with a sort of choke in his voice. + +“Good boy!” said Van Helsing. “In the not-so-far-off you will be happy +that you have done all for her you love. Come now and be silent. You +shall kiss her once before it is done, but then you must go; and you +must leave at my sign. Say no word to Madame; you know how it is with +her! There must be no shock; any knowledge of this would be one. Come!” + +We all went up to Lucy’s room. Arthur by direction remained outside. +Lucy turned her head and looked at us, but said nothing. She was not +asleep, but she was simply too weak to make the effort. Her eyes spoke +to us; that was all. Van Helsing took some things from his bag and laid +them on a little table out of sight. Then he mixed a narcotic, and +coming over to the bed, said cheerily:-- + +“Now, little miss, here is your medicine. Drink it off, like a good +child. See, I lift you so that to swallow is easy. Yes.” She had made +the effort with success. + +It astonished me how long the drug took to act. This, in fact, marked +the extent of her weakness. The time seemed endless until sleep began to +flicker in her eyelids. At last, however, the narcotic began to manifest +its potency; and she fell into a deep sleep. When the Professor was +satisfied he called Arthur into the room, and bade him strip off his +coat. Then he added: “You may take that one little kiss whiles I bring +over the table. Friend John, help to me!” So neither of us looked whilst +he bent over her. + +Van Helsing turning to me, said: + +“He is so young and strong and of blood so pure that we need not +defibrinate it.” + +Then with swiftness, but with absolute method, Van Helsing performed the +operation. As the transfusion went on something like life seemed to come +back to poor Lucy’s cheeks, and through Arthur’s growing pallor the joy +of his face seemed absolutely to shine. After a bit I began to grow +anxious, for the loss of blood was telling on Arthur, strong man as he +was. It gave me an idea of what a terrible strain Lucy’s system must +have undergone that what weakened Arthur only partially restored her. +But the Professor’s face was set, and he stood watch in hand and with +his eyes fixed now on the patient and now on Arthur. I could hear my own +heart beat. Presently he said in a soft voice: “Do not stir an instant. +It is enough. You attend him; I will look to her.” When all was over I +could see how much Arthur was weakened. I dressed the wound and took his +arm to bring him away, when Van Helsing spoke without turning round--the +man seems to have eyes in the back of his head:-- + +“The brave lover, I think, deserve another kiss, which he shall have +presently.” And as he had now finished his operation, he adjusted the +pillow to the patient’s head. As he did so the narrow black velvet band +which she seems always to wear round her throat, buckled with an old +diamond buckle which her lover had given her, was dragged a little up, +and showed a red mark on her throat. Arthur did not notice it, but I +could hear the deep hiss of indrawn breath which is one of Van Helsing’s +ways of betraying emotion. He said nothing at the moment, but turned to +me, saying: “Now take down our brave young lover, give him of the port +wine, and let him lie down a while. He must then go home and rest, sleep +much and eat much, that he may be recruited of what he has so given to +his love. He must not stay here. Hold! a moment. I may take it, sir, +that you are anxious of result. Then bring it with you that in all ways +the operation is successful. You have saved her life this time, and you +can go home and rest easy in mind that all that can be is. I shall tell +her all when she is well; she shall love you none the less for what you +have done. Good-bye.” + +When Arthur had gone I went back to the room. Lucy was sleeping gently, +but her breathing was stronger; I could see the counterpane move as her +breast heaved. By the bedside sat Van Helsing, looking at her intently. +The velvet band again covered the red mark. I asked the Professor in a +whisper:-- + +“What do you make of that mark on her throat?” + +“What do you make of it?” + +“I have not examined it yet,” I answered, and then and there proceeded +to loose the band. Just over the external jugular vein there were two +punctures, not large, but not wholesome-looking. There was no sign of +disease, but the edges were white and worn-looking, as if by some +trituration. It at once occurred to me that this wound, or whatever it +was, might be the means of that manifest loss of blood; but I abandoned +the idea as soon as formed, for such a thing could not be. The whole bed +would have been drenched to a scarlet with the blood which the girl must +have lost to leave such a pallor as she had before the transfusion. + +“Well?” said Van Helsing. + +“Well,” said I, “I can make nothing of it.” The Professor stood up. “I +must go back to Amsterdam to-night,” he said. “There are books and +things there which I want. You must remain here all the night, and you +must not let your sight pass from her.” + +“Shall I have a nurse?” I asked. + +“We are the best nurses, you and I. You keep watch all night; see that +she is well fed, and that nothing disturbs her. You must not sleep all +the night. Later on we can sleep, you and I. I shall be back as soon as +possible. And then we may begin.” + +“May begin?” I said. “What on earth do you mean?” + +“We shall see!” he answered, as he hurried out. He came back a moment +later and put his head inside the door and said with warning finger held +up:-- + +“Remember, she is your charge. If you leave her, and harm befall, you +shall not sleep easy hereafter!” + + +_Dr. Seward’s Diary--continued._ + +_8 September._--I sat up all night with Lucy. The opiate worked itself +off towards dusk, and she waked naturally; she looked a different being +from what she had been before the operation. Her spirits even were good, +and she was full of a happy vivacity, but I could see evidences of the +absolute prostration which she had undergone. When I told Mrs. Westenra +that Dr. Van Helsing had directed that I should sit up with her she +almost pooh-poohed the idea, pointing out her daughter’s renewed +strength and excellent spirits. I was firm, however, and made +preparations for my long vigil. When her maid had prepared her for the +night I came in, having in the meantime had supper, and took a seat by +the bedside. She did not in any way make objection, but looked at me +gratefully whenever I caught her eye. After a long spell she seemed +sinking off to sleep, but with an effort seemed to pull herself together +and shook it off. This was repeated several times, with greater effort +and with shorter pauses as the time moved on. It was apparent that she +did not want to sleep, so I tackled the subject at once:-- + +“You do not want to go to sleep?” + +“No; I am afraid.” + +“Afraid to go to sleep! Why so? It is the boon we all crave for.” + +“Ah, not if you were like me--if sleep was to you a presage of horror!” + +“A presage of horror! What on earth do you mean?” + +“I don’t know; oh, I don’t know. And that is what is so terrible. All +this weakness comes to me in sleep; until I dread the very thought.” + +“But, my dear girl, you may sleep to-night. I am here watching you, and +I can promise that nothing will happen.” + +“Ah, I can trust you!” I seized the opportunity, and said: “I promise +you that if I see any evidence of bad dreams I will wake you at once.” + +“You will? Oh, will you really? How good you are to me. Then I will +sleep!” And almost at the word she gave a deep sigh of relief, and sank +back, asleep. + +All night long I watched by her. She never stirred, but slept on and on +in a deep, tranquil, life-giving, health-giving sleep. Her lips were +slightly parted, and her breast rose and fell with the regularity of a +pendulum. There was a smile on her face, and it was evident that no bad +dreams had come to disturb her peace of mind. + +In the early morning her maid came, and I left her in her care and took +myself back home, for I was anxious about many things. I sent a short +wire to Van Helsing and to Arthur, telling them of the excellent result +of the operation. My own work, with its manifold arrears, took me all +day to clear off; it was dark when I was able to inquire about my +zoöphagous patient. The report was good; he had been quite quiet for the +past day and night. A telegram came from Van Helsing at Amsterdam whilst +I was at dinner, suggesting that I should be at Hillingham to-night, as +it might be well to be at hand, and stating that he was leaving by the +night mail and would join me early in the morning. + + * * * * * + +_9 September_.--I was pretty tired and worn out when I got to +Hillingham. For two nights I had hardly had a wink of sleep, and my +brain was beginning to feel that numbness which marks cerebral +exhaustion. Lucy was up and in cheerful spirits. When she shook hands +with me she looked sharply in my face and said:-- + +“No sitting up to-night for you. You are worn out. I am quite well +again; indeed, I am; and if there is to be any sitting up, it is I who +will sit up with you.” I would not argue the point, but went and had my +supper. Lucy came with me, and, enlivened by her charming presence, I +made an excellent meal, and had a couple of glasses of the more than +excellent port. Then Lucy took me upstairs, and showed me a room next +her own, where a cozy fire was burning. “Now,” she said, “you must stay +here. I shall leave this door open and my door too. You can lie on the +sofa for I know that nothing would induce any of you doctors to go to +bed whilst there is a patient above the horizon. If I want anything I +shall call out, and you can come to me at once.” I could not but +acquiesce, for I was “dog-tired,” and could not have sat up had I tried. +So, on her renewing her promise to call me if she should want anything, +I lay on the sofa, and forgot all about everything. + + +_Lucy Westenra’s Diary._ + +_9 September._--I feel so happy to-night. I have been so miserably weak, +that to be able to think and move about is like feeling sunshine after +a long spell of east wind out of a steel sky. Somehow Arthur feels very, +very close to me. I seem to feel his presence warm about me. I suppose +it is that sickness and weakness are selfish things and turn our inner +eyes and sympathy on ourselves, whilst health and strength give Love +rein, and in thought and feeling he can wander where he wills. I know +where my thoughts are. If Arthur only knew! My dear, my dear, your ears +must tingle as you sleep, as mine do waking. Oh, the blissful rest of +last night! How I slept, with that dear, good Dr. Seward watching me. +And to-night I shall not fear to sleep, since he is close at hand and +within call. Thank everybody for being so good to me! Thank God! +Good-night, Arthur. + + +_Dr. Seward’s Diary._ + +_10 September._--I was conscious of the Professor’s hand on my head, and +started awake all in a second. That is one of the things that we learn +in an asylum, at any rate. + +“And how is our patient?” + +“Well, when I left her, or rather when she left me,” I answered. + +“Come, let us see,” he said. And together we went into the room. + +The blind was down, and I went over to raise it gently, whilst Van +Helsing stepped, with his soft, cat-like tread, over to the bed. + +As I raised the blind, and the morning sunlight flooded the room, I +heard the Professor’s low hiss of inspiration, and knowing its rarity, a +deadly fear shot through my heart. As I passed over he moved back, and +his exclamation of horror, “Gott in Himmel!” needed no enforcement from +his agonised face. He raised his hand and pointed to the bed, and his +iron face was drawn and ashen white. I felt my knees begin to tremble. + +There on the bed, seemingly in a swoon, lay poor Lucy, more horribly +white and wan-looking than ever. Even the lips were white, and the gums +seemed to have shrunken back from the teeth, as we sometimes see in a +corpse after a prolonged illness. Van Helsing raised his foot to stamp +in anger, but the instinct of his life and all the long years of habit +stood to him, and he put it down again softly. “Quick!” he said. “Bring +the brandy.” I flew to the dining-room, and returned with the decanter. +He wetted the poor white lips with it, and together we rubbed palm and +wrist and heart. He felt her heart, and after a few moments of agonising +suspense said:-- + +“It is not too late. It beats, though but feebly. All our work is +undone; we must begin again. There is no young Arthur here now; I have +to call on you yourself this time, friend John.” As he spoke, he was +dipping into his bag and producing the instruments for transfusion; I +had taken off my coat and rolled up my shirt-sleeve. There was no +possibility of an opiate just at present, and no need of one; and so, +without a moment’s delay, we began the operation. After a time--it did +not seem a short time either, for the draining away of one’s blood, no +matter how willingly it be given, is a terrible feeling--Van Helsing +held up a warning finger. “Do not stir,” he said, “but I fear that with +growing strength she may wake; and that would make danger, oh, so much +danger. But I shall precaution take. I shall give hypodermic injection +of morphia.” He proceeded then, swiftly and deftly, to carry out his +intent. The effect on Lucy was not bad, for the faint seemed to merge +subtly into the narcotic sleep. It was with a feeling of personal pride +that I could see a faint tinge of colour steal back into the pallid +cheeks and lips. No man knows, till he experiences it, what it is to +feel his own life-blood drawn away into the veins of the woman he loves. + +The Professor watched me critically. “That will do,” he said. “Already?” +I remonstrated. “You took a great deal more from Art.” To which he +smiled a sad sort of smile as he replied:-- + +“He is her lover, her _fiancé_. You have work, much work, to do for her +and for others; and the present will suffice.” + +When we stopped the operation, he attended to Lucy, whilst I applied +digital pressure to my own incision. I laid down, whilst I waited his +leisure to attend to me, for I felt faint and a little sick. By-and-by +he bound up my wound, and sent me downstairs to get a glass of wine for +myself. As I was leaving the room, he came after me, and half +whispered:-- + +“Mind, nothing must be said of this. If our young lover should turn up +unexpected, as before, no word to him. It would at once frighten him and +enjealous him, too. There must be none. So!” + +When I came back he looked at me carefully, and then said:-- + +“You are not much the worse. Go into the room, and lie on your sofa, and +rest awhile; then have much breakfast, and come here to me.” + +I followed out his orders, for I knew how right and wise they were. I +had done my part, and now my next duty was to keep up my strength. I +felt very weak, and in the weakness lost something of the amazement at +what had occurred. I fell asleep on the sofa, however, wondering over +and over again how Lucy had made such a retrograde movement, and how +she could have been drained of so much blood with no sign anywhere to +show for it. I think I must have continued my wonder in my dreams, for, +sleeping and waking, my thoughts always came back to the little +punctures in her throat and the ragged, exhausted appearance of their +edges--tiny though they were. + +Lucy slept well into the day, and when she woke she was fairly well and +strong, though not nearly so much so as the day before. When Van Helsing +had seen her, he went out for a walk, leaving me in charge, with strict +injunctions that I was not to leave her for a moment. I could hear his +voice in the hall, asking the way to the nearest telegraph office. + +Lucy chatted with me freely, and seemed quite unconscious that anything +had happened. I tried to keep her amused and interested. When her mother +came up to see her, she did not seem to notice any change whatever, but +said to me gratefully:-- + +“We owe you so much, Dr. Seward, for all you have done, but you really +must now take care not to overwork yourself. You are looking pale +yourself. You want a wife to nurse and look after you a bit; that you +do!” As she spoke, Lucy turned crimson, though it was only momentarily, +for her poor wasted veins could not stand for long such an unwonted +drain to the head. The reaction came in excessive pallor as she turned +imploring eyes on me. I smiled and nodded, and laid my finger on my +lips; with a sigh, she sank back amid her pillows. + +Van Helsing returned in a couple of hours, and presently said to me: +“Now you go home, and eat much and drink enough. Make yourself strong. I +stay here to-night, and I shall sit up with little miss myself. You and +I must watch the case, and we must have none other to know. I have grave +reasons. No, do not ask them; think what you will. Do not fear to think +even the most not-probable. Good-night.” + +In the hall two of the maids came to me, and asked if they or either of +them might not sit up with Miss Lucy. They implored me to let them; and +when I said it was Dr. Van Helsing’s wish that either he or I should sit +up, they asked me quite piteously to intercede with the “foreign +gentleman.” I was much touched by their kindness. Perhaps it is because +I am weak at present, and perhaps because it was on Lucy’s account, that +their devotion was manifested; for over and over again have I seen +similar instances of woman’s kindness. I got back here in time for a +late dinner; went my rounds--all well; and set this down whilst waiting +for sleep. It is coming. + + * * * * * + +_11 September._--This afternoon I went over to Hillingham. Found Van +Helsing in excellent spirits, and Lucy much better. Shortly after I had +arrived, a big parcel from abroad came for the Professor. He opened it +with much impressment--assumed, of course--and showed a great bundle of +white flowers. + +“These are for you, Miss Lucy,” he said. + +“For me? Oh, Dr. Van Helsing!” + +“Yes, my dear, but not for you to play with. These are medicines.” Here +Lucy made a wry face. “Nay, but they are not to take in a decoction or +in nauseous form, so you need not snub that so charming nose, or I shall +point out to my friend Arthur what woes he may have to endure in seeing +so much beauty that he so loves so much distort. Aha, my pretty miss, +that bring the so nice nose all straight again. This is medicinal, but +you do not know how. I put him in your window, I make pretty wreath, and +hang him round your neck, so that you sleep well. Oh yes! they, like the +lotus flower, make your trouble forgotten. It smell so like the waters +of Lethe, and of that fountain of youth that the Conquistadores sought +for in the Floridas, and find him all too late.” + +Whilst he was speaking, Lucy had been examining the flowers and smelling +them. Now she threw them down, saying, with half-laughter, and +half-disgust:-- + +“Oh, Professor, I believe you are only putting up a joke on me. Why, +these flowers are only common garlic.” + +To my surprise, Van Helsing rose up and said with all his sternness, his +iron jaw set and his bushy eyebrows meeting:-- + +“No trifling with me! I never jest! There is grim purpose in all I do; +and I warn you that you do not thwart me. Take care, for the sake of +others if not for your own.” Then seeing poor Lucy scared, as she might +well be, he went on more gently: “Oh, little miss, my dear, do not fear +me. I only do for your good; but there is much virtue to you in those so +common flowers. See, I place them myself in your room. I make myself the +wreath that you are to wear. But hush! no telling to others that make so +inquisitive questions. We must obey, and silence is a part of obedience; +and obedience is to bring you strong and well into loving arms that wait +for you. Now sit still awhile. Come with me, friend John, and you shall +help me deck the room with my garlic, which is all the way from Haarlem, +where my friend Vanderpool raise herb in his glass-houses all the year. +I had to telegraph yesterday, or they would not have been here.” + +We went into the room, taking the flowers with us. The Professor’s +actions were certainly odd and not to be found in any pharmacopoeia +that I ever heard of. First he fastened up the windows and latched them +securely; next, taking a handful of the flowers, he rubbed them all over +the sashes, as though to ensure that every whiff of air that might get +in would be laden with the garlic smell. Then with the wisp he rubbed +all over the jamb of the door, above, below, and at each side, and round +the fireplace in the same way. It all seemed grotesque to me, and +presently I said:-- + +“Well, Professor, I know you always have a reason for what you do, but +this certainly puzzles me. It is well we have no sceptic here, or he +would say that you were working some spell to keep out an evil spirit.” + +“Perhaps I am!” he answered quietly as he began to make the wreath which +Lucy was to wear round her neck. + +We then waited whilst Lucy made her toilet for the night, and when she +was in bed he came and himself fixed the wreath of garlic round her +neck. The last words he said to her were:-- + +“Take care you do not disturb it; and even if the room feel close, do +not to-night open the window or the door.” + +“I promise,” said Lucy, “and thank you both a thousand times for all +your kindness to me! Oh, what have I done to be blessed with such +friends?” + +As we left the house in my fly, which was waiting, Van Helsing said:-- + +“To-night I can sleep in peace, and sleep I want--two nights of travel, +much reading in the day between, and much anxiety on the day to follow, +and a night to sit up, without to wink. To-morrow in the morning early +you call for me, and we come together to see our pretty miss, so much +more strong for my ‘spell’ which I have work. Ho! ho!” + +He seemed so confident that I, remembering my own confidence two nights +before and with the baneful result, felt awe and vague terror. It must +have been my weakness that made me hesitate to tell it to my friend, but +I felt it all the more, like unshed tears. + + + + +CHAPTER XI + +_Lucy Westenra’s Diary._ + + +_12 September._--How good they all are to me. I quite love that dear Dr. +Van Helsing. I wonder why he was so anxious about these flowers. He +positively frightened me, he was so fierce. And yet he must have been +right, for I feel comfort from them already. Somehow, I do not dread +being alone to-night, and I can go to sleep without fear. I shall not +mind any flapping outside the window. Oh, the terrible struggle that I +have had against sleep so often of late; the pain of the sleeplessness, +or the pain of the fear of sleep, with such unknown horrors as it has +for me! How blessed are some people, whose lives have no fears, no +dreads; to whom sleep is a blessing that comes nightly, and brings +nothing but sweet dreams. Well, here I am to-night, hoping for sleep, +and lying like Ophelia in the play, with “virgin crants and maiden +strewments.” I never liked garlic before, but to-night it is delightful! +There is peace in its smell; I feel sleep coming already. Good-night, +everybody. + + +_Dr. Seward’s Diary._ + +_13 September._--Called at the Berkeley and found Van Helsing, as usual, +up to time. The carriage ordered from the hotel was waiting. The +Professor took his bag, which he always brings with him now. + +Let all be put down exactly. Van Helsing and I arrived at Hillingham at +eight o’clock. It was a lovely morning; the bright sunshine and all the +fresh feeling of early autumn seemed like the completion of nature’s +annual work. The leaves were turning to all kinds of beautiful colours, +but had not yet begun to drop from the trees. When we entered we met +Mrs. Westenra coming out of the morning room. She is always an early +riser. She greeted us warmly and said:-- + +“You will be glad to know that Lucy is better. The dear child is still +asleep. I looked into her room and saw her, but did not go in, lest I +should disturb her.” The Professor smiled, and looked quite jubilant. He +rubbed his hands together, and said:-- + +“Aha! I thought I had diagnosed the case. My treatment is working,” to +which she answered:-- + +“You must not take all the credit to yourself, doctor. Lucy’s state this +morning is due in part to me.” + +“How you do mean, ma’am?” asked the Professor. + +“Well, I was anxious about the dear child in the night, and went into +her room. She was sleeping soundly--so soundly that even my coming did +not wake her. But the room was awfully stuffy. There were a lot of those +horrible, strong-smelling flowers about everywhere, and she had actually +a bunch of them round her neck. I feared that the heavy odour would be +too much for the dear child in her weak state, so I took them all away +and opened a bit of the window to let in a little fresh air. You will be +pleased with her, I am sure.” + +She moved off into her boudoir, where she usually breakfasted early. As +she had spoken, I watched the Professor’s face, and saw it turn ashen +grey. He had been able to retain his self-command whilst the poor lady +was present, for he knew her state and how mischievous a shock would be; +he actually smiled on her as he held open the door for her to pass into +her room. But the instant she had disappeared he pulled me, suddenly and +forcibly, into the dining-room and closed the door. + +Then, for the first time in my life, I saw Van Helsing break down. He +raised his hands over his head in a sort of mute despair, and then beat +his palms together in a helpless way; finally he sat down on a chair, +and putting his hands before his face, began to sob, with loud, dry sobs +that seemed to come from the very racking of his heart. Then he raised +his arms again, as though appealing to the whole universe. “God! God! +God!” he said. “What have we done, what has this poor thing done, that +we are so sore beset? Is there fate amongst us still, sent down from the +pagan world of old, that such things must be, and in such way? This poor +mother, all unknowing, and all for the best as she think, does such +thing as lose her daughter body and soul; and we must not tell her, we +must not even warn her, or she die, and then both die. Oh, how we are +beset! How are all the powers of the devils against us!” Suddenly he +jumped to his feet. “Come,” he said, “come, we must see and act. Devils +or no devils, or all the devils at once, it matters not; we fight him +all the same.” He went to the hall-door for his bag; and together we +went up to Lucy’s room. + +Once again I drew up the blind, whilst Van Helsing went towards the bed. +This time he did not start as he looked on the poor face with the same +awful, waxen pallor as before. He wore a look of stern sadness and +infinite pity. + +“As I expected,” he murmured, with that hissing inspiration of his which +meant so much. Without a word he went and locked the door, and then +began to set out on the little table the instruments for yet another +operation of transfusion of blood. I had long ago recognised the +necessity, and begun to take off my coat, but he stopped me with a +warning hand. “No!” he said. “To-day you must operate. I shall provide. +You are weakened already.” As he spoke he took off his coat and rolled +up his shirt-sleeve. + +Again the operation; again the narcotic; again some return of colour to +the ashy cheeks, and the regular breathing of healthy sleep. This time I +watched whilst Van Helsing recruited himself and rested. + +Presently he took an opportunity of telling Mrs. Westenra that she must +not remove anything from Lucy’s room without consulting him; that the +flowers were of medicinal value, and that the breathing of their odour +was a part of the system of cure. Then he took over the care of the case +himself, saying that he would watch this night and the next and would +send me word when to come. + +After another hour Lucy waked from her sleep, fresh and bright and +seemingly not much the worse for her terrible ordeal. + +What does it all mean? I am beginning to wonder if my long habit of life +amongst the insane is beginning to tell upon my own brain. + + +_Lucy Westenra’s Diary._ + +_17 September._--Four days and nights of peace. I am getting so strong +again that I hardly know myself. It is as if I had passed through some +long nightmare, and had just awakened to see the beautiful sunshine and +feel the fresh air of the morning around me. I have a dim +half-remembrance of long, anxious times of waiting and fearing; darkness +in which there was not even the pain of hope to make present distress +more poignant: and then long spells of oblivion, and the rising back to +life as a diver coming up through a great press of water. Since, +however, Dr. Van Helsing has been with me, all this bad dreaming seems +to have passed away; the noises that used to frighten me out of my +wits--the flapping against the windows, the distant voices which seemed +so close to me, the harsh sounds that came from I know not where and +commanded me to do I know not what--have all ceased. I go to bed now +without any fear of sleep. I do not even try to keep awake. I have grown +quite fond of the garlic, and a boxful arrives for me every day from +Haarlem. To-night Dr. Van Helsing is going away, as he has to be for a +day in Amsterdam. But I need not be watched; I am well enough to be left +alone. Thank God for mother’s sake, and dear Arthur’s, and for all our +friends who have been so kind! I shall not even feel the change, for +last night Dr. Van Helsing slept in his chair a lot of the time. I found +him asleep twice when I awoke; but I did not fear to go to sleep again, +although the boughs or bats or something napped almost angrily against +the window-panes. + + +_“The Pall Mall Gazette,” 18 September._ + + THE ESCAPED WOLF. + + PERILOUS ADVENTURE OF OUR INTERVIEWER. + + _Interview with the Keeper in the Zoölogical Gardens._ + +After many inquiries and almost as many refusals, and perpetually using +the words “Pall Mall Gazette” as a sort of talisman, I managed to find +the keeper of the section of the Zoölogical Gardens in which the wolf +department is included. Thomas Bilder lives in one of the cottages in +the enclosure behind the elephant-house, and was just sitting down to +his tea when I found him. Thomas and his wife are hospitable folk, +elderly, and without children, and if the specimen I enjoyed of their +hospitality be of the average kind, their lives must be pretty +comfortable. The keeper would not enter on what he called “business” +until the supper was over, and we were all satisfied. Then when the +table was cleared, and he had lit his pipe, he said:-- + +“Now, sir, you can go on and arsk me what you want. You’ll excoose me +refoosin’ to talk of perfeshunal subjects afore meals. I gives the +wolves and the jackals and the hyenas in all our section their tea afore +I begins to arsk them questions.” + +“How do you mean, ask them questions?” I queried, wishful to get him +into a talkative humour. + +“’Ittin’ of them over the ’ead with a pole is one way; scratchin’ of +their hears is another, when gents as is flush wants a bit of a show-orf +to their gals. I don’t so much mind the fust--the ’ittin’ with a pole +afore I chucks in their dinner; but I waits till they’ve ’ad their +sherry and kawffee, so to speak, afore I tries on with the +ear-scratchin’. Mind you,” he added philosophically, “there’s a deal of +the same nature in us as in them theer animiles. Here’s you a-comin’ and +arskin’ of me questions about my business, and I that grumpy-like that +only for your bloomin’ ’arf-quid I’d ’a’ seen you blowed fust ’fore I’d +answer. Not even when you arsked me sarcastic-like if I’d like you to +arsk the Superintendent if you might arsk me questions. Without offence +did I tell yer to go to ’ell?” + +“You did.” + +“An’ when you said you’d report me for usin’ of obscene language that +was ’ittin’ me over the ’ead; but the ’arf-quid made that all right. I +weren’t a-goin’ to fight, so I waited for the food, and did with my ’owl +as the wolves, and lions, and tigers does. But, Lor’ love yer ’art, now +that the old ’ooman has stuck a chunk of her tea-cake in me, an’ rinsed +me out with her bloomin’ old teapot, and I’ve lit hup, you may scratch +my ears for all you’re worth, and won’t git even a growl out of me. +Drive along with your questions. I know what yer a-comin’ at, that ’ere +escaped wolf.” + +“Exactly. I want you to give me your view of it. Just tell me how it +happened; and when I know the facts I’ll get you to say what you +consider was the cause of it, and how you think the whole affair will +end.” + +“All right, guv’nor. This ’ere is about the ’ole story. That ’ere wolf +what we called Bersicker was one of three grey ones that came from +Norway to Jamrach’s, which we bought off him four years ago. He was a +nice well-behaved wolf, that never gave no trouble to talk of. I’m more +surprised at ’im for wantin’ to get out nor any other animile in the +place. But, there, you can’t trust wolves no more nor women.” + +“Don’t you mind him, sir!” broke in Mrs. Tom, with a cheery laugh. “’E’s +got mindin’ the animiles so long that blest if he ain’t like a old wolf +’isself! But there ain’t no ’arm in ’im.” + +“Well, sir, it was about two hours after feedin’ yesterday when I first +hear my disturbance. I was makin’ up a litter in the monkey-house for a +young puma which is ill; but when I heard the yelpin’ and ’owlin’ I kem +away straight. There was Bersicker a-tearin’ like a mad thing at the +bars as if he wanted to get out. There wasn’t much people about that +day, and close at hand was only one man, a tall, thin chap, with a ’ook +nose and a pointed beard, with a few white hairs runnin’ through it. He +had a ’ard, cold look and red eyes, and I took a sort of mislike to him, +for it seemed as if it was ’im as they was hirritated at. He ’ad white +kid gloves on ’is ’ands, and he pointed out the animiles to me and says: +‘Keeper, these wolves seem upset at something.’ + +“‘Maybe it’s you,’ says I, for I did not like the airs as he give +’isself. He didn’t git angry, as I ’oped he would, but he smiled a kind +of insolent smile, with a mouth full of white, sharp teeth. ‘Oh no, they +wouldn’t like me,’ ’e says. + +“‘Ow yes, they would,’ says I, a-imitatin’ of him. ‘They always likes a +bone or two to clean their teeth on about tea-time, which you ’as a +bagful.’ + +“Well, it was a odd thing, but when the animiles see us a-talkin’ they +lay down, and when I went over to Bersicker he let me stroke his ears +same as ever. That there man kem over, and blessed but if he didn’t put +in his hand and stroke the old wolf’s ears too! + +“‘Tyke care,’ says I. ‘Bersicker is quick.’ + +“‘Never mind,’ he says. ‘I’m used to ’em!’ + +“‘Are you in the business yourself?’ I says, tyking off my ’at, for a +man what trades in wolves, anceterer, is a good friend to keepers. + +“‘No,’ says he, ‘not exactly in the business, but I ’ave made pets of +several.’ And with that he lifts his ’at as perlite as a lord, and walks +away. Old Bersicker kep’ a-lookin’ arter ’im till ’e was out of sight, +and then went and lay down in a corner and wouldn’t come hout the ’ole +hevening. Well, larst night, so soon as the moon was hup, the wolves +here all began a-’owling. There warn’t nothing for them to ’owl at. +There warn’t no one near, except some one that was evidently a-callin’ a +dog somewheres out back of the gardings in the Park road. Once or twice +I went out to see that all was right, and it was, and then the ’owling +stopped. Just before twelve o’clock I just took a look round afore +turnin’ in, an’, bust me, but when I kem opposite to old Bersicker’s +cage I see the rails broken and twisted about and the cage empty. And +that’s all I know for certing.” + +“Did any one else see anything?” + +“One of our gard’ners was a-comin’ ’ome about that time from a ’armony, +when he sees a big grey dog comin’ out through the garding ’edges. At +least, so he says, but I don’t give much for it myself, for if he did ’e +never said a word about it to his missis when ’e got ’ome, and it was +only after the escape of the wolf was made known, and we had been up all +night-a-huntin’ of the Park for Bersicker, that he remembered seein’ +anything. My own belief was that the ’armony ’ad got into his ’ead.” + +“Now, Mr. Bilder, can you account in any way for the escape of the +wolf?” + +“Well, sir,” he said, with a suspicious sort of modesty, “I think I can; +but I don’t know as ’ow you’d be satisfied with the theory.” + +“Certainly I shall. If a man like you, who knows the animals from +experience, can’t hazard a good guess at any rate, who is even to try?” + +“Well then, sir, I accounts for it this way; it seems to me that ’ere +wolf escaped--simply because he wanted to get out.” + +From the hearty way that both Thomas and his wife laughed at the joke I +could see that it had done service before, and that the whole +explanation was simply an elaborate sell. I couldn’t cope in badinage +with the worthy Thomas, but I thought I knew a surer way to his heart, +so I said:-- + +“Now, Mr. Bilder, we’ll consider that first half-sovereign worked off, +and this brother of his is waiting to be claimed when you’ve told me +what you think will happen.” + +“Right y’are, sir,” he said briskly. “Ye’ll excoose me, I know, for +a-chaffin’ of ye, but the old woman here winked at me, which was as much +as telling me to go on.” + +“Well, I never!” said the old lady. + +“My opinion is this: that ’ere wolf is a-’idin’ of, somewheres. The +gard’ner wot didn’t remember said he was a-gallopin’ northward faster +than a horse could go; but I don’t believe him, for, yer see, sir, +wolves don’t gallop no more nor dogs does, they not bein’ built that +way. Wolves is fine things in a storybook, and I dessay when they gets +in packs and does be chivyin’ somethin’ that’s more afeared than they is +they can make a devil of a noise and chop it up, whatever it is. But, +Lor’ bless you, in real life a wolf is only a low creature, not half so +clever or bold as a good dog; and not half a quarter so much fight in +’im. This one ain’t been used to fightin’ or even to providin’ for +hisself, and more like he’s somewhere round the Park a-’idin’ an’ +a-shiverin’ of, and, if he thinks at all, wonderin’ where he is to get +his breakfast from; or maybe he’s got down some area and is in a +coal-cellar. My eye, won’t some cook get a rum start when she sees his +green eyes a-shining at her out of the dark! If he can’t get food he’s +bound to look for it, and mayhap he may chance to light on a butcher’s +shop in time. If he doesn’t, and some nursemaid goes a-walkin’ orf with +a soldier, leavin’ of the hinfant in the perambulator--well, then I +shouldn’t be surprised if the census is one babby the less. That’s +all.” + +I was handing him the half-sovereign, when something came bobbing up +against the window, and Mr. Bilder’s face doubled its natural length +with surprise. + +“God bless me!” he said. “If there ain’t old Bersicker come back by +’isself!” + +He went to the door and opened it; a most unnecessary proceeding it +seemed to me. I have always thought that a wild animal never looks so +well as when some obstacle of pronounced durability is between us; a +personal experience has intensified rather than diminished that idea. + +After all, however, there is nothing like custom, for neither Bilder nor +his wife thought any more of the wolf than I should of a dog. The animal +itself was as peaceful and well-behaved as that father of all +picture-wolves--Red Riding Hood’s quondam friend, whilst moving her +confidence in masquerade. + +The whole scene was an unutterable mixture of comedy and pathos. The +wicked wolf that for half a day had paralysed London and set all the +children in the town shivering in their shoes, was there in a sort of +penitent mood, and was received and petted like a sort of vulpine +prodigal son. Old Bilder examined him all over with most tender +solicitude, and when he had finished with his penitent said:-- + +“There, I knew the poor old chap would get into some kind of trouble; +didn’t I say it all along? Here’s his head all cut and full of broken +glass. ’E’s been a-gettin’ over some bloomin’ wall or other. It’s a +shyme that people are allowed to top their walls with broken bottles. +This ’ere’s what comes of it. Come along, Bersicker.” + +He took the wolf and locked him up in a cage, with a piece of meat that +satisfied, in quantity at any rate, the elementary conditions of the +fatted calf, and went off to report. + +I came off, too, to report the only exclusive information that is given +to-day regarding the strange escapade at the Zoo. + + +_Dr. Seward’s Diary._ + +_17 September._--I was engaged after dinner in my study posting up my +books, which, through press of other work and the many visits to Lucy, +had fallen sadly into arrear. Suddenly the door was burst open, and in +rushed my patient, with his face distorted with passion. I was +thunderstruck, for such a thing as a patient getting of his own accord +into the Superintendent’s study is almost unknown. Without an instant’s +pause he made straight at me. He had a dinner-knife in his hand, and, +as I saw he was dangerous, I tried to keep the table between us. He was +too quick and too strong for me, however; for before I could get my +balance he had struck at me and cut my left wrist rather severely. +Before he could strike again, however, I got in my right and he was +sprawling on his back on the floor. My wrist bled freely, and quite a +little pool trickled on to the carpet. I saw that my friend was not +intent on further effort, and occupied myself binding up my wrist, +keeping a wary eye on the prostrate figure all the time. When the +attendants rushed in, and we turned our attention to him, his employment +positively sickened me. He was lying on his belly on the floor licking +up, like a dog, the blood which had fallen from my wounded wrist. He was +easily secured, and, to my surprise, went with the attendants quite +placidly, simply repeating over and over again: “The blood is the life! +The blood is the life!” + +I cannot afford to lose blood just at present; I have lost too much of +late for my physical good, and then the prolonged strain of Lucy’s +illness and its horrible phases is telling on me. I am over-excited and +weary, and I need rest, rest, rest. Happily Van Helsing has not summoned +me, so I need not forego my sleep; to-night I could not well do without +it. + + +_Telegram, Van Helsing, Antwerp, to Seward, Carfax._ + +(Sent to Carfax, Sussex, as no county given; delivered late by +twenty-two hours.) + +“_17 September._--Do not fail to be at Hillingham to-night. If not +watching all the time frequently, visit and see that flowers are as +placed; very important; do not fail. Shall be with you as soon as +possible after arrival.” + + +_Dr. Seward’s Diary._ + +_18 September._--Just off for train to London. The arrival of Van +Helsing’s telegram filled me with dismay. A whole night lost, and I know +by bitter experience what may happen in a night. Of course it is +possible that all may be well, but what _may_ have happened? Surely +there is some horrible doom hanging over us that every possible accident +should thwart us in all we try to do. I shall take this cylinder with +me, and then I can complete my entry on Lucy’s phonograph. + + +_Memorandum left by Lucy Westenra._ + +_17 September. Night._--I write this and leave it to be seen, so that no +one may by any chance get into trouble through me. This is an exact +record of what took place to-night. I feel I am dying of weakness, and +have barely strength to write, but it must be done if I die in the +doing. + +I went to bed as usual, taking care that the flowers were placed as Dr. +Van Helsing directed, and soon fell asleep. + +I was waked by the flapping at the window, which had begun after that +sleep-walking on the cliff at Whitby when Mina saved me, and which now I +know so well. I was not afraid, but I did wish that Dr. Seward was in +the next room--as Dr. Van Helsing said he would be--so that I might have +called him. I tried to go to sleep, but could not. Then there came to me +the old fear of sleep, and I determined to keep awake. Perversely sleep +would try to come then when I did not want it; so, as I feared to be +alone, I opened my door and called out: “Is there anybody there?” There +was no answer. I was afraid to wake mother, and so closed my door again. +Then outside in the shrubbery I heard a sort of howl like a dog’s, but +more fierce and deeper. I went to the window and looked out, but could +see nothing, except a big bat, which had evidently been buffeting its +wings against the window. So I went back to bed again, but determined +not to go to sleep. Presently the door opened, and mother looked in; +seeing by my moving that I was not asleep, came in, and sat by me. She +said to me even more sweetly and softly than her wont:-- + +“I was uneasy about you, darling, and came in to see that you were all +right.” + +I feared she might catch cold sitting there, and asked her to come in +and sleep with me, so she came into bed, and lay down beside me; she did +not take off her dressing gown, for she said she would only stay a while +and then go back to her own bed. As she lay there in my arms, and I in +hers, the flapping and buffeting came to the window again. She was +startled and a little frightened, and cried out: “What is that?” I tried +to pacify her, and at last succeeded, and she lay quiet; but I could +hear her poor dear heart still beating terribly. After a while there was +the low howl again out in the shrubbery, and shortly after there was a +crash at the window, and a lot of broken glass was hurled on the floor. +The window blind blew back with the wind that rushed in, and in the +aperture of the broken panes there was the head of a great, gaunt grey +wolf. Mother cried out in a fright, and struggled up into a sitting +posture, and clutched wildly at anything that would help her. Amongst +other things, she clutched the wreath of flowers that Dr. Van Helsing +insisted on my wearing round my neck, and tore it away from me. For a +second or two she sat up, pointing at the wolf, and there was a strange +and horrible gurgling in her throat; then she fell over--as if struck +with lightning, and her head hit my forehead and made me dizzy for a +moment or two. The room and all round seemed to spin round. I kept my +eyes fixed on the window, but the wolf drew his head back, and a whole +myriad of little specks seemed to come blowing in through the broken +window, and wheeling and circling round like the pillar of dust that +travellers describe when there is a simoon in the desert. I tried to +stir, but there was some spell upon me, and dear mother’s poor body, +which seemed to grow cold already--for her dear heart had ceased to +beat--weighed me down; and I remembered no more for a while. + +The time did not seem long, but very, very awful, till I recovered +consciousness again. Somewhere near, a passing bell was tolling; the +dogs all round the neighbourhood were howling; and in our shrubbery, +seemingly just outside, a nightingale was singing. I was dazed and +stupid with pain and terror and weakness, but the sound of the +nightingale seemed like the voice of my dead mother come back to comfort +me. The sounds seemed to have awakened the maids, too, for I could hear +their bare feet pattering outside my door. I called to them, and they +came in, and when they saw what had happened, and what it was that lay +over me on the bed, they screamed out. The wind rushed in through the +broken window, and the door slammed to. They lifted off the body of my +dear mother, and laid her, covered up with a sheet, on the bed after I +had got up. They were all so frightened and nervous that I directed them +to go to the dining-room and have each a glass of wine. The door flew +open for an instant and closed again. The maids shrieked, and then went +in a body to the dining-room; and I laid what flowers I had on my dear +mother’s breast. When they were there I remembered what Dr. Van Helsing +had told me, but I didn’t like to remove them, and, besides, I would +have some of the servants to sit up with me now. I was surprised that +the maids did not come back. I called them, but got no answer, so I went +to the dining-room to look for them. + +My heart sank when I saw what had happened. They all four lay helpless +on the floor, breathing heavily. The decanter of sherry was on the table +half full, but there was a queer, acrid smell about. I was suspicious, +and examined the decanter. It smelt of laudanum, and looking on the +sideboard, I found that the bottle which mother’s doctor uses for +her--oh! did use--was empty. What am I to do? what am I to do? I am back +in the room with mother. I cannot leave her, and I am alone, save for +the sleeping servants, whom some one has drugged. Alone with the dead! I +dare not go out, for I can hear the low howl of the wolf through the +broken window. + +The air seems full of specks, floating and circling in the draught from +the window, and the lights burn blue and dim. What am I to do? God +shield me from harm this night! I shall hide this paper in my breast, +where they shall find it when they come to lay me out. My dear mother +gone! It is time that I go too. Good-bye, dear Arthur, if I should not +survive this night. God keep you, dear, and God help me! + + + + +CHAPTER XII + +DR. SEWARD’S DIARY + + +_18 September._--I drove at once to Hillingham and arrived early. +Keeping my cab at the gate, I went up the avenue alone. I knocked gently +and rang as quietly as possible, for I feared to disturb Lucy or her +mother, and hoped to only bring a servant to the door. After a while, +finding no response, I knocked and rang again; still no answer. I cursed +the laziness of the servants that they should lie abed at such an +hour--for it was now ten o’clock--and so rang and knocked again, but +more impatiently, but still without response. Hitherto I had blamed only +the servants, but now a terrible fear began to assail me. Was this +desolation but another link in the chain of doom which seemed drawing +tight around us? Was it indeed a house of death to which I had come, too +late? I knew that minutes, even seconds of delay, might mean hours of +danger to Lucy, if she had had again one of those frightful relapses; +and I went round the house to try if I could find by chance an entry +anywhere. + +I could find no means of ingress. Every window and door was fastened and +locked, and I returned baffled to the porch. As I did so, I heard the +rapid pit-pat of a swiftly driven horse’s feet. They stopped at the +gate, and a few seconds later I met Van Helsing running up the avenue. +When he saw me, he gasped out:-- + +“Then it was you, and just arrived. How is she? Are we too late? Did you +not get my telegram?” + +I answered as quickly and coherently as I could that I had only got his +telegram early in the morning, and had not lost a minute in coming here, +and that I could not make any one in the house hear me. He paused and +raised his hat as he said solemnly:-- + +“Then I fear we are too late. God’s will be done!” With his usual +recuperative energy, he went on: “Come. If there be no way open to get +in, we must make one. Time is all in all to us now.” + +We went round to the back of the house, where there was a kitchen +window. The Professor took a small surgical saw from his case, and +handing it to me, pointed to the iron bars which guarded the window. I +attacked them at once and had very soon cut through three of them. Then +with a long, thin knife we pushed back the fastening of the sashes and +opened the window. I helped the Professor in, and followed him. There +was no one in the kitchen or in the servants’ rooms, which were close at +hand. We tried all the rooms as we went along, and in the dining-room, +dimly lit by rays of light through the shutters, found four +servant-women lying on the floor. There was no need to think them dead, +for their stertorous breathing and the acrid smell of laudanum in the +room left no doubt as to their condition. Van Helsing and I looked at +each other, and as we moved away he said: “We can attend to them later.” +Then we ascended to Lucy’s room. For an instant or two we paused at the +door to listen, but there was no sound that we could hear. With white +faces and trembling hands, we opened the door gently, and entered the +room. + +How shall I describe what we saw? On the bed lay two women, Lucy and her +mother. The latter lay farthest in, and she was covered with a white +sheet, the edge of which had been blown back by the draught through the +broken window, showing the drawn, white face, with a look of terror +fixed upon it. By her side lay Lucy, with face white and still more +drawn. The flowers which had been round her neck we found upon her +mother’s bosom, and her throat was bare, showing the two little wounds +which we had noticed before, but looking horribly white and mangled. +Without a word the Professor bent over the bed, his head almost touching +poor Lucy’s breast; then he gave a quick turn of his head, as of one who +listens, and leaping to his feet, he cried out to me:-- + +“It is not yet too late! Quick! quick! Bring the brandy!” + +I flew downstairs and returned with it, taking care to smell and taste +it, lest it, too, were drugged like the decanter of sherry which I found +on the table. The maids were still breathing, but more restlessly, and I +fancied that the narcotic was wearing off. I did not stay to make sure, +but returned to Van Helsing. He rubbed the brandy, as on another +occasion, on her lips and gums and on her wrists and the palms of her +hands. He said to me:-- + +“I can do this, all that can be at the present. You go wake those maids. +Flick them in the face with a wet towel, and flick them hard. Make them +get heat and fire and a warm bath. This poor soul is nearly as cold as +that beside her. She will need be heated before we can do anything +more.” + +I went at once, and found little difficulty in waking three of the +women. The fourth was only a young girl, and the drug had evidently +affected her more strongly, so I lifted her on the sofa and let her +sleep. The others were dazed at first, but as remembrance came back to +them they cried and sobbed in a hysterical manner. I was stern with +them, however, and would not let them talk. I told them that one life +was bad enough to lose, and that if they delayed they would sacrifice +Miss Lucy. So, sobbing and crying, they went about their way, half clad +as they were, and prepared fire and water. Fortunately, the kitchen and +boiler fires were still alive, and there was no lack of hot water. We +got a bath and carried Lucy out as she was and placed her in it. Whilst +we were busy chafing her limbs there was a knock at the hall door. One +of the maids ran off, hurried on some more clothes, and opened it. Then +she returned and whispered to us that there was a gentleman who had come +with a message from Mr. Holmwood. I bade her simply tell him that he +must wait, for we could see no one now. She went away with the message, +and, engrossed with our work, I clean forgot all about him. + +I never saw in all my experience the Professor work in such deadly +earnest. I knew--as he knew--that it was a stand-up fight with death, +and in a pause told him so. He answered me in a way that I did not +understand, but with the sternest look that his face could wear:-- + +“If that were all, I would stop here where we are now, and let her fade +away into peace, for I see no light in life over her horizon.” He went +on with his work with, if possible, renewed and more frenzied vigour. + +Presently we both began to be conscious that the heat was beginning to +be of some effect. Lucy’s heart beat a trifle more audibly to the +stethoscope, and her lungs had a perceptible movement. Van Helsing’s +face almost beamed, and as we lifted her from the bath and rolled her in +a hot sheet to dry her he said to me:-- + +“The first gain is ours! Check to the King!” + +We took Lucy into another room, which had by now been prepared, and laid +her in bed and forced a few drops of brandy down her throat. I noticed +that Van Helsing tied a soft silk handkerchief round her throat. She was +still unconscious, and was quite as bad as, if not worse than, we had +ever seen her. + +Van Helsing called in one of the women, and told her to stay with her +and not to take her eyes off her till we returned, and then beckoned me +out of the room. + +“We must consult as to what is to be done,” he said as we descended the +stairs. In the hall he opened the dining-room door, and we passed in, he +closing the door carefully behind him. The shutters had been opened, but +the blinds were already down, with that obedience to the etiquette of +death which the British woman of the lower classes always rigidly +observes. The room was, therefore, dimly dark. It was, however, light +enough for our purposes. Van Helsing’s sternness was somewhat relieved +by a look of perplexity. He was evidently torturing his mind about +something, so I waited for an instant, and he spoke:-- + +“What are we to do now? Where are we to turn for help? We must have +another transfusion of blood, and that soon, or that poor girl’s life +won’t be worth an hour’s purchase. You are exhausted already; I am +exhausted too. I fear to trust those women, even if they would have +courage to submit. What are we to do for some one who will open his +veins for her?” + +“What’s the matter with me, anyhow?” + +The voice came from the sofa across the room, and its tones brought +relief and joy to my heart, for they were those of Quincey Morris. Van +Helsing started angrily at the first sound, but his face softened and a +glad look came into his eyes as I cried out: “Quincey Morris!” and +rushed towards him with outstretched hands. + +“What brought you here?” I cried as our hands met. + +“I guess Art is the cause.” + +He handed me a telegram:-- + +“Have not heard from Seward for three days, and am terribly anxious. +Cannot leave. Father still in same condition. Send me word how Lucy is. +Do not delay.--HOLMWOOD.” + +“I think I came just in the nick of time. You know you have only to tell +me what to do.” + +Van Helsing strode forward, and took his hand, looking him straight in +the eyes as he said:-- + +“A brave man’s blood is the best thing on this earth when a woman is in +trouble. You’re a man and no mistake. Well, the devil may work against +us for all he’s worth, but God sends us men when we want them.” + +Once again we went through that ghastly operation. I have not the heart +to go through with the details. Lucy had got a terrible shock and it +told on her more than before, for though plenty of blood went into her +veins, her body did not respond to the treatment as well as on the other +occasions. Her struggle back into life was something frightful to see +and hear. However, the action of both heart and lungs improved, and Van +Helsing made a subcutaneous injection of morphia, as before, and with +good effect. Her faint became a profound slumber. The Professor watched +whilst I went downstairs with Quincey Morris, and sent one of the maids +to pay off one of the cabmen who were waiting. I left Quincey lying down +after having a glass of wine, and told the cook to get ready a good +breakfast. Then a thought struck me, and I went back to the room where +Lucy now was. When I came softly in, I found Van Helsing with a sheet or +two of note-paper in his hand. He had evidently read it, and was +thinking it over as he sat with his hand to his brow. There was a look +of grim satisfaction in his face, as of one who has had a doubt solved. +He handed me the paper saying only: “It dropped from Lucy’s breast when +we carried her to the bath.” + +When I had read it, I stood looking at the Professor, and after a pause +asked him: “In God’s name, what does it all mean? Was she, or is she, +mad; or what sort of horrible danger is it?” I was so bewildered that I +did not know what to say more. Van Helsing put out his hand and took the +paper, saying:-- + +“Do not trouble about it now. Forget it for the present. You shall know +and understand it all in good time; but it will be later. And now what +is it that you came to me to say?” This brought me back to fact, and I +was all myself again. + +“I came to speak about the certificate of death. If we do not act +properly and wisely, there may be an inquest, and that paper would have +to be produced. I am in hopes that we need have no inquest, for if we +had it would surely kill poor Lucy, if nothing else did. I know, and you +know, and the other doctor who attended her knows, that Mrs. Westenra +had disease of the heart, and we can certify that she died of it. Let us +fill up the certificate at once, and I shall take it myself to the +registrar and go on to the undertaker.” + +“Good, oh my friend John! Well thought of! Truly Miss Lucy, if she be +sad in the foes that beset her, is at least happy in the friends that +love her. One, two, three, all open their veins for her, besides one old +man. Ah yes, I know, friend John; I am not blind! I love you all the +more for it! Now go.” + +In the hall I met Quincey Morris, with a telegram for Arthur telling him +that Mrs. Westenra was dead; that Lucy also had been ill, but was now +going on better; and that Van Helsing and I were with her. I told him +where I was going, and he hurried me out, but as I was going said:-- + +“When you come back, Jack, may I have two words with you all to +ourselves?” I nodded in reply and went out. I found no difficulty about +the registration, and arranged with the local undertaker to come up in +the evening to measure for the coffin and to make arrangements. + +When I got back Quincey was waiting for me. I told him I would see him +as soon as I knew about Lucy, and went up to her room. She was still +sleeping, and the Professor seemingly had not moved from his seat at her +side. From his putting his finger to his lips, I gathered that he +expected her to wake before long and was afraid of forestalling nature. +So I went down to Quincey and took him into the breakfast-room, where +the blinds were not drawn down, and which was a little more cheerful, or +rather less cheerless, than the other rooms. When we were alone, he said +to me:-- + +“Jack Seward, I don’t want to shove myself in anywhere where I’ve no +right to be; but this is no ordinary case. You know I loved that girl +and wanted to marry her; but, although that’s all past and gone, I can’t +help feeling anxious about her all the same. What is it that’s wrong +with her? The Dutchman--and a fine old fellow he is; I can see +that--said, that time you two came into the room, that you must have +_another_ transfusion of blood, and that both you and he were exhausted. +Now I know well that you medical men speak _in camera_, and that a man +must not expect to know what they consult about in private. But this is +no common matter, and, whatever it is, I have done my part. Is not that +so?” + +“That’s so,” I said, and he went on:-- + +“I take it that both you and Van Helsing had done already what I did +to-day. Is not that so?” + +“That’s so.” + +“And I guess Art was in it too. When I saw him four days ago down at his +own place he looked queer. I have not seen anything pulled down so quick +since I was on the Pampas and had a mare that I was fond of go to grass +all in a night. One of those big bats that they call vampires had got at +her in the night, and what with his gorge and the vein left open, there +wasn’t enough blood in her to let her stand up, and I had to put a +bullet through her as she lay. Jack, if you may tell me without +betraying confidence, Arthur was the first, is not that so?” As he spoke +the poor fellow looked terribly anxious. He was in a torture of suspense +regarding the woman he loved, and his utter ignorance of the terrible +mystery which seemed to surround her intensified his pain. His very +heart was bleeding, and it took all the manhood of him--and there was a +royal lot of it, too--to keep him from breaking down. I paused before +answering, for I felt that I must not betray anything which the +Professor wished kept secret; but already he knew so much, and guessed +so much, that there could be no reason for not answering, so I answered +in the same phrase: “That’s so.” + +“And how long has this been going on?” + +“About ten days.” + +“Ten days! Then I guess, Jack Seward, that that poor pretty creature +that we all love has had put into her veins within that time the blood +of four strong men. Man alive, her whole body wouldn’t hold it.” Then, +coming close to me, he spoke in a fierce half-whisper: “What took it +out?” + +I shook my head. “That,” I said, “is the crux. Van Helsing is simply +frantic about it, and I am at my wits’ end. I can’t even hazard a guess. +There has been a series of little circumstances which have thrown out +all our calculations as to Lucy being properly watched. But these shall +not occur again. Here we stay until all be well--or ill.” Quincey held +out his hand. “Count me in,” he said. “You and the Dutchman will tell me +what to do, and I’ll do it.” + +When she woke late in the afternoon, Lucy’s first movement was to feel +in her breast, and, to my surprise, produced the paper which Van Helsing +had given me to read. The careful Professor had replaced it where it had +come from, lest on waking she should be alarmed. Her eye then lit on Van +Helsing and on me too, and gladdened. Then she looked around the room, +and seeing where she was, shuddered; she gave a loud cry, and put her +poor thin hands before her pale face. We both understood what that +meant--that she had realised to the full her mother’s death; so we tried +what we could to comfort her. Doubtless sympathy eased her somewhat, but +she was very low in thought and spirit, and wept silently and weakly for +a long time. We told her that either or both of us would now remain with +her all the time, and that seemed to comfort her. Towards dusk she fell +into a doze. Here a very odd thing occurred. Whilst still asleep she +took the paper from her breast and tore it in two. Van Helsing stepped +over and took the pieces from her. All the same, however, she went on +with the action of tearing, as though the material were still in her +hands; finally she lifted her hands and opened them as though scattering +the fragments. Van Helsing seemed surprised, and his brows gathered as +if in thought, but he said nothing. + + * * * * * + +_19 September._--All last night she slept fitfully, being always afraid +to sleep, and something weaker when she woke from it. The Professor and +I took it in turns to watch, and we never left her for a moment +unattended. Quincey Morris said nothing about his intention, but I knew +that all night long he patrolled round and round the house. + +When the day came, its searching light showed the ravages in poor Lucy’s +strength. She was hardly able to turn her head, and the little +nourishment which she could take seemed to do her no good. At times she +slept, and both Van Helsing and I noticed the difference in her, between +sleeping and waking. Whilst asleep she looked stronger, although more +haggard, and her breathing was softer; her open mouth showed the pale +gums drawn back from the teeth, which thus looked positively longer and +sharper than usual; when she woke the softness of her eyes evidently +changed the expression, for she looked her own self, although a dying +one. In the afternoon she asked for Arthur, and we telegraphed for him. +Quincey went off to meet him at the station. + +When he arrived it was nearly six o’clock, and the sun was setting full +and warm, and the red light streamed in through the window and gave more +colour to the pale cheeks. When he saw her, Arthur was simply choking +with emotion, and none of us could speak. In the hours that had passed, +the fits of sleep, or the comatose condition that passed for it, had +grown more frequent, so that the pauses when conversation was possible +were shortened. Arthur’s presence, however, seemed to act as a +stimulant; she rallied a little, and spoke to him more brightly than she +had done since we arrived. He too pulled himself together, and spoke as +cheerily as he could, so that the best was made of everything. + +It was now nearly one o’clock, and he and Van Helsing are sitting with +her. I am to relieve them in a quarter of an hour, and I am entering +this on Lucy’s phonograph. Until six o’clock they are to try to rest. I +fear that to-morrow will end our watching, for the shock has been too +great; the poor child cannot rally. God help us all. + + +_Letter, Mina Harker to Lucy Westenra._ + +(Unopened by her.) + +“_17 September._ + +“My dearest Lucy,-- + +“It seems _an age_ since I heard from you, or indeed since I wrote. You +will pardon me, I know, for all my faults when you have read all my +budget of news. Well, I got my husband back all right; when we arrived +at Exeter there was a carriage waiting for us, and in it, though he had +an attack of gout, Mr. Hawkins. He took us to his house, where there +were rooms for us all nice and comfortable, and we dined together. After +dinner Mr. Hawkins said:-- + +“‘My dears, I want to drink your health and prosperity; and may every +blessing attend you both. I know you both from children, and have, with +love and pride, seen you grow up. Now I want you to make your home here +with me. I have left to me neither chick nor child; all are gone, and in +my will I have left you everything.’ I cried, Lucy dear, as Thomas and +the old man clasped hands. Our evening was a very, very happy one. + +“So here we are, installed in this beautiful old house, and from both my +bedroom and the drawing-room I can see the great elms of the cathedral +close, with their great black stems standing out against the old yellow +stone of the cathedral and I can hear the rooks overhead cawing and +cawing and chattering and gossiping all day, after the manner of +rooks--and humans. I am busy, I need not tell you, arranging things and +housekeeping. Thomas and Mr. Hawkins are busy all day; for, now that +Thomas is a partner, Mr. Hawkins wants to tell him all about the +clients. + +“How is your dear mother getting on? I wish I could run up to town for a +day or two to see you, dear, but I dare not go yet, with so much on my +shoulders; and Thomas wants looking after still. He is beginning to +put some flesh on his bones again, but he was terribly weakened by the +long illness; even now he sometimes starts out of his sleep in a sudden +way and awakes all trembling until I can coax him back to his usual +placidity. However, thank God, these occasions grow less frequent as the +days go on, and they will in time pass away altogether, I trust. And now +I have told you my news, let me ask yours. When are you to be married, +and where, and who is to perform the ceremony, and what are you to wear, +and is it to be a public or a private wedding? Tell me all about it, +dear; tell me all about everything, for there is nothing which interests +you which will not be dear to me. Thomas asks me to send his +‘respectful duty,’ but I do not think that is good enough from the +junior partner of the important firm Hawkins & Harker; and so, as you +love me, and he loves me, and I love you with all the moods and tenses +of the verb, I send you simply his ‘love’ instead. Good-bye, my dearest +Lucy, and all blessings on you. + +“Yours, + +“MINA HARKER.” + + +_Report from Patrick Hennessey, M. D., M. R. C. S. L. K. Q. C. P. I., +etc., etc., to John Seward, M. D._ + +“_20 September._ + +“My dear Sir,-- + +“In accordance with your wishes, I enclose report of the conditions of +everything left in my charge.... With regard to patient, Renfield, there +is more to say. He has had another outbreak, which might have had a +dreadful ending, but which, as it fortunately happened, was unattended +with any unhappy results. This afternoon a carrier’s cart with two men +made a call at the empty house whose grounds abut on ours--the house to +which, you will remember, the patient twice ran away. The men stopped at +our gate to ask the porter their way, as they were strangers. I was +myself looking out of the study window, having a smoke after dinner, and +saw one of them come up to the house. As he passed the window of +Renfield’s room, the patient began to rate him from within, and called +him all the foul names he could lay his tongue to. The man, who seemed a +decent fellow enough, contented himself by telling him to “shut up for a +foul-mouthed beggar,” whereon our man accused him of robbing him and +wanting to murder him and said that he would hinder him if he were to +swing for it. I opened the window and signed to the man not to notice, +so he contented himself after looking the place over and making up his +mind as to what kind of a place he had got to by saying: ‘Lor’ bless +yer, sir, I wouldn’t mind what was said to me in a bloomin’ madhouse. I +pity ye and the guv’nor for havin’ to live in the house with a wild +beast like that.’ Then he asked his way civilly enough, and I told him +where the gate of the empty house was; he went away, followed by threats +and curses and revilings from our man. I went down to see if I could +make out any cause for his anger, since he is usually such a +well-behaved man, and except his violent fits nothing of the kind had +ever occurred. I found him, to my astonishment, quite composed and most +genial in his manner. I tried to get him to talk of the incident, but he +blandly asked me questions as to what I meant, and led me to believe +that he was completely oblivious of the affair. It was, I am sorry to +say, however, only another instance of his cunning, for within half an +hour I heard of him again. This time he had broken out through the +window of his room, and was running down the avenue. I called to the +attendants to follow me, and ran after him, for I feared he was intent +on some mischief. My fear was justified when I saw the same cart which +had passed before coming down the road, having on it some great wooden +boxes. The men were wiping their foreheads, and were flushed in the +face, as if with violent exercise. Before I could get up to him the +patient rushed at them, and pulling one of them off the cart, began to +knock his head against the ground. If I had not seized him just at the +moment I believe he would have killed the man there and then. The other +fellow jumped down and struck him over the head with the butt-end of his +heavy whip. It was a terrible blow; but he did not seem to mind it, but +seized him also, and struggled with the three of us, pulling us to and +fro as if we were kittens. You know I am no light weight, and the others +were both burly men. At first he was silent in his fighting; but as we +began to master him, and the attendants were putting a strait-waistcoat +on him, he began to shout: ‘I’ll frustrate them! They shan’t rob me! +they shan’t murder me by inches! I’ll fight for my Lord and Master!’ and +all sorts of similar incoherent ravings. It was with very considerable +difficulty that they got him back to the house and put him in the padded +room. One of the attendants, Hardy, had a finger broken. However, I set +it all right; and he is going on well. + +“The two carriers were at first loud in their threats of actions for +damages, and promised to rain all the penalties of the law on us. Their +threats were, however, mingled with some sort of indirect apology for +the defeat of the two of them by a feeble madman. They said that if it +had not been for the way their strength had been spent in carrying and +raising the heavy boxes to the cart they would have made short work of +him. They gave as another reason for their defeat the extraordinary +state of drouth to which they had been reduced by the dusty nature of +their occupation and the reprehensible distance from the scene of their +labours of any place of public entertainment. I quite understood their +drift, and after a stiff glass of grog, or rather more of the same, and +with each a sovereign in hand, they made light of the attack, and swore +that they would encounter a worse madman any day for the pleasure of +meeting so ‘bloomin’ good a bloke’ as your correspondent. I took their +names and addresses, in case they might be needed. They are as +follows:--Jack Smollet, of Dudding’s Rents, King George’s Road, Great +Walworth, and Thomas Snelling, Peter Farley’s Row, Guide Court, Bethnal +Green. They are both in the employment of Harris & Sons, Moving and +Shipment Company, Orange Master’s Yard, Soho. + +“I shall report to you any matter of interest occurring here, and shall +wire you at once if there is anything of importance. + +“Believe me, dear Sir, + +“Yours faithfully, + +“PATRICK HENNESSEY.” + + +_Letter, Mina Harker to Lucy Westenra_. + +(Unopened by her.) + +“_18 September._ + +“My dearest Lucy,-- + +“Such a sad blow has befallen us. Mr. Hawkins has died very suddenly. +Some may not think it so sad for us, but we had both come to so love him +that it really seems as though we had lost a father. I never knew either +father or mother, so that the dear old man’s death is a real blow to me. +Thomas is greatly distressed. It is not only that he feels sorrow, +deep sorrow, for the dear, good man who has befriended him all his life, +and now at the end has treated him like his own son and left him a +fortune which to people of our modest bringing up is wealth beyond the +dream of avarice, but Thomas feels it on another account. He says the +amount of responsibility which it puts upon him makes him nervous. He +begins to doubt himself. I try to cheer him up, and _my_ belief in _him_ +helps him to have a belief in himself. But it is here that the grave +shock that he experienced tells upon him the most. Oh, it is too hard +that a sweet, simple, noble, strong nature such as his--a nature which +enabled him by our dear, good friend’s aid to rise from clerk to master +in a few years--should be so injured that the very essence of its +strength is gone. Forgive me, dear, if I worry you with my troubles in +the midst of your own happiness; but, Lucy dear, I must tell some one, +for the strain of keeping up a brave and cheerful appearance to Thomas +tries me, and I have no one here that I can confide in. I dread coming +up to London, as we must do the day after to-morrow; for poor Mr. +Hawkins left in his will that he was to be buried in the grave with his +father. As there are no relations at all, Thomas will have to be chief +mourner. I shall try to run over to see you, dearest, if only for a few +minutes. Forgive me for troubling you. With all blessings, + +“Your loving + +“MINA HARKER.” + + +_Dr. Seward’s Diary._ + +_20 September._--Only resolution and habit can let me make an entry +to-night. I am too miserable, too low-spirited, too sick of the world +and all in it, including life itself, that I would not care if I heard +this moment the flapping of the wings of the angel of death. And he has +been flapping those grim wings to some purpose of late--Lucy’s mother +and Arthur’s father, and now.... Let me get on with my work. + +I duly relieved Van Helsing in his watch over Lucy. We wanted Arthur to +go to rest also, but he refused at first. It was only when I told him +that we should want him to help us during the day, and that we must not +all break down for want of rest, lest Lucy should suffer, that he agreed +to go. Van Helsing was very kind to him. “Come, my child,” he said; +“come with me. You are sick and weak, and have had much sorrow and much +mental pain, as well as that tax on your strength that we know of. You +must not be alone; for to be alone is to be full of fears and alarms. +Come to the drawing-room, where there is a big fire, and there are two +sofas. You shall lie on one, and I on the other, and our sympathy will +be comfort to each other, even though we do not speak, and even if we +sleep.” Arthur went off with him, casting back a longing look on Lucy’s +face, which lay in her pillow, almost whiter than the lawn. She lay +quite still, and I looked round the room to see that all was as it +should be. I could see that the Professor had carried out in this room, +as in the other, his purpose of using the garlic; the whole of the +window-sashes reeked with it, and round Lucy’s neck, over the silk +handkerchief which Van Helsing made her keep on, was a rough chaplet of +the same odorous flowers. Lucy was breathing somewhat stertorously, and +her face was at its worst, for the open mouth showed the pale gums. Her +teeth, in the dim, uncertain light, seemed longer and sharper than they +had been in the morning. In particular, by some trick of the light, the +canine teeth looked longer and sharper than the rest. I sat down by her, +and presently she moved uneasily. At the same moment there came a sort +of dull flapping or buffeting at the window. I went over to it softly, +and peeped out by the corner of the blind. There was a full moonlight, +and I could see that the noise was made by a great bat, which wheeled +round--doubtless attracted by the light, although so dim--and every now +and again struck the window with its wings. When I came back to my seat, +I found that Lucy had moved slightly, and had torn away the garlic +flowers from her throat. I replaced them as well as I could, and sat +watching her. + +Presently she woke, and I gave her food, as Van Helsing had prescribed. +She took but a little, and that languidly. There did not seem to be with +her now the unconscious struggle for life and strength that had hitherto +so marked her illness. It struck me as curious that the moment she +became conscious she pressed the garlic flowers close to her. It was +certainly odd that whenever she got into that lethargic state, with the +stertorous breathing, she put the flowers from her; but that when she +waked she clutched them close. There was no possibility of making any +mistake about this, for in the long hours that followed, she had many +spells of sleeping and waking and repeated both actions many times. + +At six o’clock Van Helsing came to relieve me. Arthur had then fallen +into a doze, and he mercifully let him sleep on. When he saw Lucy’s face +I could hear the sissing indraw of his breath, and he said to me in a +sharp whisper: “Draw up the blind; I want light!” Then he bent down, +and, with his face almost touching Lucy’s, examined her carefully. He +removed the flowers and lifted the silk handkerchief from her throat. As +he did so he started back, and I could hear his ejaculation, “Mein +Gott!” as it was smothered in his throat. I bent over and looked, too, +and as I noticed some queer chill came over me. + +The wounds on the throat had absolutely disappeared. + +For fully five minutes Van Helsing stood looking at her, with his face +at its sternest. Then he turned to me and said calmly:-- + +“She is dying. It will not be long now. It will be much difference, mark +me, whether she dies conscious or in her sleep. Wake that poor boy, and +let him come and see the last; he trusts us, and we have promised him.” + +I went to the dining-room and waked him. He was dazed for a moment, but +when he saw the sunlight streaming in through the edges of the shutters +he thought he was late, and expressed his fear. I assured him that Lucy +was still asleep, but told him as gently as I could that both Van +Helsing and I feared that the end was near. He covered his face with his +hands, and slid down on his knees by the sofa, where he remained, +perhaps a minute, with his head buried, praying, whilst his shoulders +shook with grief. I took him by the hand and raised him up. “Come,” I +said, “my dear old fellow, summon all your fortitude: it will be best +and easiest for her.” + +When we came into Lucy’s room I could see that Van Helsing had, with +his usual forethought, been putting matters straight and making +everything look as pleasing as possible. He had even brushed Lucy’s +hair, so that it lay on the pillow in its usual sunny ripples. When we +came into the room she opened her eyes, and seeing him, whispered +softly:-- + +“Arthur! Oh, my love, I am so glad you have come!” He was stooping to +kiss her, when Van Helsing motioned him back. “No,” he whispered, “not +yet! Hold her hand; it will comfort her more.” + +So Arthur took her hand and knelt beside her, and she looked her best, +with all the soft lines matching the angelic beauty of her eyes. Then +gradually her eyes closed, and she sank to sleep. For a little bit her +breast heaved softly, and her breath came and went like a tired child’s. + +And then insensibly there came the strange change which I had noticed in +the night. Her breathing grew stertorous, the mouth opened, and the pale +gums, drawn back, made the teeth look longer and sharper than ever. In a +sort of sleep-waking, vague, unconscious way she opened her eyes, which +were now dull and hard at once, and said in a soft, voluptuous voice, +such as I had never heard from her lips:-- + +“Arthur! Oh, my love, I am so glad you have come! Kiss me!” Arthur bent +eagerly over to kiss her; but at that instant Van Helsing, who, like me, +had been startled by her voice, swooped upon him, and catching him by +the neck with both hands, dragged him back with a fury of strength which +I never thought he could have possessed, and actually hurled him almost +across the room. + +“Not for your life!” he said; “not for your living soul and hers!” And +he stood between them like a lion at bay. + +Arthur was so taken aback that he did not for a moment know what to do +or say; and before any impulse of violence could seize him he realised +the place and the occasion, and stood silent, waiting. + +I kept my eyes fixed on Lucy, as did Van Helsing, and we saw a spasm as +of rage flit like a shadow over her face; the sharp teeth champed +together. Then her eyes closed, and she breathed heavily. + +Very shortly after she opened her eyes in all their softness, and +putting out her poor, pale, thin hand, took Van Helsing’s great brown +one; drawing it to her, she kissed it. “My true friend,” she said, in a +faint voice, but with untellable pathos, “My true friend, and his! Oh, +guard him, and give me peace!” + +“I swear it!” he said solemnly, kneeling beside her and holding up his +hand, as one who registers an oath. Then he turned to Arthur, and said +to him: “Come, my child, take her hand in yours, and kiss her on the +forehead, and only once.” + +Their eyes met instead of their lips; and so they parted. + +Lucy’s eyes closed; and Van Helsing, who had been watching closely, took +Arthur’s arm, and drew him away. + +And then Lucy’s breathing became stertorous again, and all at once it +ceased. + +“It is all over,” said Van Helsing. “She is dead!” + +I took Arthur by the arm, and led him away to the drawing-room, where he +sat down, and covered his face with his hands, sobbing in a way that +nearly broke me down to see. + +I went back to the room, and found Van Helsing looking at poor Lucy, and +his face was sterner than ever. Some change had come over her body. +Death had given back part of her beauty, for her brow and cheeks had +recovered some of their flowing lines; even the lips had lost their +deadly pallor. It was as if the blood, no longer needed for the working +of the heart, had gone to make the harshness of death as little rude as +might be. + + “We thought her dying whilst she slept, + And sleeping when she died.” + +I stood beside Van Helsing, and said:-- + +“Ah, well, poor girl, there is peace for her at last. It is the end!” + +He turned to me, and said with grave solemnity:-- + +“Not so; alas! not so. It is only the beginning!” + +When I asked him what he meant, he only shook his head and answered:-- + +“We can do nothing as yet. Wait and see.” + + + + +CHAPTER XIII + +DR. SEWARD’S DIARY--_continued_. + + +The funeral was arranged for the next succeeding day, so that Lucy and +her mother might be buried together. I attended to all the ghastly +formalities, and the urbane undertaker proved that his staff were +afflicted--or blessed--with something of his own obsequious suavity. +Even the woman who performed the last offices for the dead remarked to +me, in a confidential, brother-professional way, when she had come out +from the death-chamber:-- + +“She makes a very beautiful corpse, sir. It’s quite a privilege to +attend on her. It’s not too much to say that she will do credit to our +establishment!” + +I noticed that Van Helsing never kept far away. This was possible from +the disordered state of things in the household. There were no relatives +at hand; and as Arthur had to be back the next day to attend at his +father’s funeral, we were unable to notify any one who should have been +bidden. Under the circumstances, Van Helsing and I took it upon +ourselves to examine papers, etc. He insisted upon looking over Lucy’s +papers himself. I asked him why, for I feared that he, being a +foreigner, might not be quite aware of English legal requirements, and +so might in ignorance make some unnecessary trouble. He answered me:-- + +“I know; I know. You forget that I am a lawyer as well as a doctor. But +this is not altogether for the law. You knew that, when you avoided the +coroner. I have more than him to avoid. There may be papers more--such +as this.” + +As he spoke he took from his pocket-book the memorandum which had been +in Lucy’s breast, and which she had torn in her sleep. + +“When you find anything of the solicitor who is for the late Mrs. +Westenra, seal all her papers, and write him to-night. For me, I watch +here in the room and in Miss Lucy’s old room all night, and I myself +search for what may be. It is not well that her very thoughts go into +the hands of strangers.” + +I went on with my part of the work, and in another half hour had found +the name and address of Mrs. Westenra’s solicitor and had written to +him. All the poor lady’s papers were in order; explicit directions +regarding the place of burial were given. I had hardly sealed the +letter, when, to my surprise, Van Helsing walked into the room, +saying:-- + +“Can I help you, friend John? I am free, and if I may, my service is to +you.” + +“Have you got what you looked for?” I asked, to which he replied:-- + +“I did not look for any specific thing. I only hoped to find, and find I +have, all that there was--only some letters and a few memoranda, and a +diary new begun. But I have them here, and we shall for the present say +nothing of them. I shall see that poor lad to-morrow evening, and, with +his sanction, I shall use some.” + +When we had finished the work in hand, he said to me:-- + +“And now, friend John, I think we may to bed. We want sleep, both you +and I, and rest to recuperate. To-morrow we shall have much to do, but +for the to-night there is no need of us. Alas!” + +Before turning in we went to look at poor Lucy. The undertaker had +certainly done his work well, for the room was turned into a small +_chapelle ardente_. There was a wilderness of beautiful white flowers, +and death was made as little repulsive as might be. The end of the +winding-sheet was laid over the face; when the Professor bent over and +turned it gently back, we both started at the beauty before us, the tall +wax candles showing a sufficient light to note it well. All Lucy’s +loveliness had come back to her in death, and the hours that had passed, +instead of leaving traces of “decay’s effacing fingers,” had but +restored the beauty of life, till positively I could not believe my eyes +that I was looking at a corpse. + +The Professor looked sternly grave. He had not loved her as I had, and +there was no need for tears in his eyes. He said to me: “Remain till I +return,” and left the room. He came back with a handful of wild garlic +from the box waiting in the hall, but which had not been opened, and +placed the flowers amongst the others on and around the bed. Then he +took from his neck, inside his collar, a little gold crucifix, and +placed it over the mouth. He restored the sheet to its place, and we +came away. + +I was undressing in my own room, when, with a premonitory tap at the +door, he entered, and at once began to speak:-- + +“To-morrow I want you to bring me, before night, a set of post-mortem +knives.” + +“Must we make an autopsy?” I asked. + +“Yes and no. I want to operate, but not as you think. Let me tell you +now, but not a word to another. I want to cut off her head and take out +her heart. Ah! you a surgeon, and so shocked! You, whom I have seen with +no tremble of hand or heart, do operations of life and death that make +the rest shudder. Oh, but I must not forget, my dear friend John, that +you loved her; and I have not forgotten it, for it is I that shall +operate, and you must only help. I would like to do it to-night, but for +Arthur I must not; he will be free after his father’s funeral to-morrow, +and he will want to see her--to see _it_. Then, when she is coffined +ready for the next day, you and I shall come when all sleep. We shall +unscrew the coffin-lid, and shall do our operation: and then replace +all, so that none know, save we alone.” + +“But why do it at all? The girl is dead. Why mutilate her poor body +without need? And if there is no necessity for a post-mortem and nothing +to gain by it--no good to her, to us, to science, to human +knowledge--why do it? Without such it is monstrous.” + +For answer he put his hand on my shoulder, and said, with infinite +tenderness:-- + +“Friend John, I pity your poor bleeding heart; and I love you the more +because it does so bleed. If I could, I would take on myself the burden +that you do bear. But there are things that you know not, but that you +shall know, and bless me for knowing, though they are not pleasant +things. John, my child, you have been my friend now many years, and yet +did you ever know me to do any without good cause? I may err--I am but +man; but I believe in all I do. Was it not for these causes that you +send for me when the great trouble came? Yes! Were you not amazed, nay +horrified, when I would not let Arthur kiss his love--though she was +dying--and snatched him away by all my strength? Yes! And yet you saw +how she thanked me, with her so beautiful dying eyes, her voice, too, so +weak, and she kiss my rough old hand and bless me? Yes! And did you not +hear me swear promise to her, that so she closed her eyes grateful? Yes! + +“Well, I have good reason now for all I want to do. You have for many +years trust me; you have believe me weeks past, when there be things so +strange that you might have well doubt. Believe me yet a little, friend +John. If you trust me not, then I must tell what I think; and that is +not perhaps well. And if I work--as work I shall, no matter trust or no +trust--without my friend trust in me, I work with heavy heart and feel, +oh! so lonely when I want all help and courage that may be!” He paused a +moment and went on solemnly: “Friend John, there are strange and +terrible days before us. Let us not be two, but one, that so we work to +a good end. Will you not have faith in me?” + +I took his hand, and promised him. I held my door open as he went away, +and watched him go into his room and close the door. As I stood without +moving, I saw one of the maids pass silently along the passage--she had +her back towards me, so did not see me--and go into the room where Lucy +lay. The sight touched me. Devotion is so rare, and we are so grateful +to those who show it unasked to those we love. Here was a poor girl +putting aside the terrors which she naturally had of death to go watch +alone by the bier of the mistress whom she loved, so that the poor clay +might not be lonely till laid to eternal rest.... + + * * * * * + +I must have slept long and soundly, for it was broad daylight when Van +Helsing waked me by coming into my room. He came over to my bedside and +said:-- + +“You need not trouble about the knives; we shall not do it.” + +“Why not?” I asked. For his solemnity of the night before had greatly +impressed me. + +“Because,” he said sternly, “it is too late--or too early. See!” Here he +held up the little golden crucifix. “This was stolen in the night.” + +“How, stolen,” I asked in wonder, “since you have it now?” + +“Because I get it back from the worthless wretch who stole it, from the +woman who robbed the dead and the living. Her punishment will surely +come, but not through me; she knew not altogether what she did and thus +unknowing, she only stole. Now we must wait.” + +He went away on the word, leaving me with a new mystery to think of, a +new puzzle to grapple with. + +The forenoon was a dreary time, but at noon the solicitor came: Mr. +Marquand, of Wholeman, Sons, Marquand & Lidderdale. He was very genial +and very appreciative of what we had done, and took off our hands all +cares as to details. During lunch he told us that Mrs. Westenra had for +some time expected sudden death from her heart, and had put her affairs +in absolute order; he informed us that, with the exception of a certain +entailed property of Lucy’s father’s which now, in default of direct +issue, went back to a distant branch of the family, the whole estate, +real and personal, was left absolutely to Arthur Holmwood. When he had +told us so much he went on:-- + +“Frankly we did our best to prevent such a testamentary disposition, and +pointed out certain contingencies that might leave her daughter either +penniless or not so free as she should be to act regarding a matrimonial +alliance. Indeed, we pressed the matter so far that we almost came into +collision, for she asked us if we were or were not prepared to carry out +her wishes. Of course, we had then no alternative but to accept. We were +right in principle, and ninety-nine times out of a hundred we should +have proved, by the logic of events, the accuracy of our judgment. +Frankly, however, I must admit that in this case any other form of +disposition would have rendered impossible the carrying out of her +wishes. For by her predeceasing her daughter the latter would have come +into possession of the property, and, even had she only survived her +mother by five minutes, her property would, in case there were no +will--and a will was a practical impossibility in such a case--have been +treated at her decease as under intestacy. In which case Lord Godalming, +though so dear a friend, would have had no claim in the world; and the +inheritors, being remote, would not be likely to abandon their just +rights, for sentimental reasons regarding an entire stranger. I assure +you, my dear sirs, I am rejoiced at the result, perfectly rejoiced.” + +He was a good fellow, but his rejoicing at the one little part--in which +he was officially interested--of so great a tragedy, was an +object-lesson in the limitations of sympathetic understanding. + +He did not remain long, but said he would look in later in the day and +see Lord Godalming. His coming, however, had been a certain comfort to +us, since it assured us that we should not have to dread hostile +criticism as to any of our acts. Arthur was expected at five o’clock, so +a little before that time we visited the death-chamber. It was so in +very truth, for now both mother and daughter lay in it. The undertaker, +true to his craft, had made the best display he could of his goods, and +there was a mortuary air about the place that lowered our spirits at +once. Van Helsing ordered the former arrangement to be adhered to, +explaining that, as Lord Godalming was coming very soon, it would be +less harrowing to his feelings to see all that was left of his _fiancée_ +quite alone. The undertaker seemed shocked at his own stupidity and +exerted himself to restore things to the condition in which we left them +the night before, so that when Arthur came such shocks to his feelings +as we could avoid were saved. + +Poor fellow! He looked desperately sad and broken; even his stalwart +manhood seemed to have shrunk somewhat under the strain of his +much-tried emotions. He had, I knew, been very genuinely and devotedly +attached to his father; and to lose him, and at such a time, was a +bitter blow to him. With me he was warm as ever, and to Van Helsing he +was sweetly courteous; but I could not help seeing that there was some +constraint with him. The Professor noticed it, too, and motioned me to +bring him upstairs. I did so, and left him at the door of the room, as I +felt he would like to be quite alone with her, but he took my arm and +led me in, saying huskily:-- + +“You loved her too, old fellow; she told me all about it, and there was +no friend had a closer place in her heart than you. I don’t know how to +thank you for all you have done for her. I can’t think yet....” + +Here he suddenly broke down, and threw his arms round my shoulders and +laid his head on my breast, crying:-- + +“Oh, Jack! Jack! What shall I do! The whole of life seems gone from me +all at once, and there is nothing in the wide world for me to live for.” + +I comforted him as well as I could. In such cases men do not need much +expression. A grip of the hand, the tightening of an arm over the +shoulder, a sob in unison, are expressions of sympathy dear to a man’s +heart. I stood still and silent till his sobs died away, and then I said +softly to him:-- + +“Come and look at her.” + +Together we moved over to the bed, and I lifted the lawn from her face. +God! how beautiful she was. Every hour seemed to be enhancing her +loveliness. It frightened and amazed me somewhat; and as for Arthur, he +fell a-trembling, and finally was shaken with doubt as with an ague. At +last, after a long pause, he said to me in a faint whisper:-- + +“Jack, is she really dead?” + +I assured him sadly that it was so, and went on to suggest--for I felt +that such a horrible doubt should not have life for a moment longer than +I could help--that it often happened that after death faces became +softened and even resolved into their youthful beauty; that this was +especially so when death had been preceded by any acute or prolonged +suffering. It seemed to quite do away with any doubt, and, after +kneeling beside the couch for a while and looking at her lovingly and +long, he turned aside. I told him that that must be good-bye, as the +coffin had to be prepared; so he went back and took her dead hand in his +and kissed it, and bent over and kissed her forehead. He came away, +fondly looking back over his shoulder at her as he came. + +I left him in the drawing-room, and told Van Helsing that he had said +good-bye; so the latter went to the kitchen to tell the undertaker’s men +to proceed with the preparations and to screw up the coffin. When he +came out of the room again I told him of Arthur’s question, and he +replied:-- + +“I am not surprised. Just now I doubted for a moment myself!” + +We all dined together, and I could see that poor Art was trying to make +the best of things. Van Helsing had been silent all dinner-time; but +when we had lit our cigars he said-- + +“Lord----”; but Arthur interrupted him:-- + +“No, no, not that, for God’s sake! not yet at any rate. Forgive me, sir: +I did not mean to speak offensively; it is only because my loss is so +recent.” + +The Professor answered very sweetly:-- + +“I only used that name because I was in doubt. I must not call you +‘Mr.,’ and I have grown to love you--yes, my dear boy, to love you--as +Arthur.” + +Arthur held out his hand, and took the old man’s warmly. + +“Call me what you will,” he said. “I hope I may always have the title of +a friend. And let me say that I am at a loss for words to thank you for +your goodness to my poor dear.” He paused a moment, and went on: “I know +that she understood your goodness even better than I do; and if I was +rude or in any way wanting at that time you acted so--you remember”--the +Professor nodded--“you must forgive me.” + +He answered with a grave kindness:-- + +“I know it was hard for you to quite trust me then, for to trust such +violence needs to understand; and I take it that you do not--that you +cannot--trust me now, for you do not yet understand. And there may be +more times when I shall want you to trust when you cannot--and may +not--and must not yet understand. But the time will come when your trust +shall be whole and complete in me, and when you shall understand as +though the sunlight himself shone through. Then you shall bless me from +first to last for your own sake, and for the sake of others and for her +dear sake to whom I swore to protect.” + +“And, indeed, indeed, sir,” said Arthur warmly, “I shall in all ways +trust you. I know and believe you have a very noble heart, and you are +Jack’s friend, and you were hers. You shall do what you like.” + +The Professor cleared his throat a couple of times, as though about to +speak, and finally said:-- + +“May I ask you something now?” + +“Certainly.” + +“You know that Mrs. Westenra left you all her property?” + +“No, poor dear; I never thought of it.” + +“And as it is all yours, you have a right to deal with it as you will. I +want you to give me permission to read all Miss Lucy’s papers and +letters. Believe me, it is no idle curiosity. I have a motive of which, +be sure, she would have approved. I have them all here. I took them +before we knew that all was yours, so that no strange hand might touch +them--no strange eye look through words into her soul. I shall keep +them, if I may; even you may not see them yet, but I shall keep them +safe. No word shall be lost; and in the good time I shall give them back +to you. It’s a hard thing I ask, but you will do it, will you not, for +Lucy’s sake?” + +Arthur spoke out heartily, like his old self:-- + +“Dr. Van Helsing, you may do what you will. I feel that in saying this I +am doing what my dear one would have approved. I shall not trouble you +with questions till the time comes.” + +The old Professor stood up as he said solemnly:-- + +“And you are right. There will be pain for us all; but it will not be +all pain, nor will this pain be the last. We and you too--you most of +all, my dear boy--will have to pass through the bitter water before we +reach the sweet. But we must be brave of heart and unselfish, and do our +duty, and all will be well!” + +I slept on a sofa in Arthur’s room that night. Van Helsing did not go to +bed at all. He went to and fro, as if patrolling the house, and was +never out of sight of the room where Lucy lay in her coffin, strewn with +the wild garlic flowers, which sent, through the odour of lily and rose, +a heavy, overpowering smell into the night. + + +_Mina Harker’s Journal._ + +_22 September._--In the train to Exeter. Thomas sleeping. + +It seems only yesterday that the last entry was made, and yet how much +between then, in Whitby and all the world before me, Thomas away and +no news of him; and now, married to Thomas, Thomas a solicitor, a +partner, rich, master of his business, Mr. Hawkins dead and buried, and +Thomas with another attack that may harm him. Some day he may ask me +about it. Down it all goes. I am rusty in my shorthand--see what +unexpected prosperity does for us--so it may be as well to freshen it up +again with an exercise anyhow.... + +The service was very simple and very solemn. There were only ourselves +and the servants there, one or two old friends of his from Exeter, his +London agent, and a gentleman representing Sir John Paxton, the +President of the Incorporated Law Society. Thomas and I stood hand in +hand, and we felt that our best and dearest friend was gone from us.... + +We came back to town quietly, taking a ’bus to Hyde Park Corner. +Thomas thought it would interest me to go into the Row for a while, so +we sat down; but there were very few people there, and it was +sad-looking and desolate to see so many empty chairs. It made us think +of the empty chair at home; so we got up and walked down Piccadilly. +Thomas was holding me by the arm, the way he used to in old days +before I went to school. I felt it very improper, for you can’t go on +for some years teaching etiquette and decorum to other girls without the +pedantry of it biting into yourself a bit; but it was Thomas, and he +was my husband, and we didn’t know anybody who saw us--and we didn’t +care if they did--so on we walked. I was looking at a very beautiful +girl, in a big cart-wheel hat, sitting in a victoria outside Guiliano’s, +when I felt Thomas clutch my arm so tight that he hurt me, and he said +under his breath: “My God!” I am always anxious about Thomas, for I +fear that some nervous fit may upset him again; so I turned to him +quickly, and asked him what it was that disturbed him. + +He was very pale, and his eyes seemed bulging out as, half in terror and +half in amazement, he gazed at a tall, thin man, with a beaky nose and +black moustache and pointed beard, who was also observing the pretty +girl. He was looking at her so hard that he did not see either of us, +and so I had a good view of him. His face was not a good face; it was +hard, and cruel, and sensual, and his big white teeth, that looked all +the whiter because his lips were so red, were pointed like an animal’s. +Thomas kept staring at him, till I was afraid he would notice. I +feared he might take it ill, he looked so fierce and nasty. I asked +Thomas why he was disturbed, and he answered, evidently thinking that +I knew as much about it as he did: “Do you see who it is?” + +“No, dear,” I said; “I don’t know him; who is it?” His answer seemed to +shock and thrill me, for it was said as if he did not know that it was +to me, Mina, to whom he was speaking:-- + +“It is the man himself!” + +The poor dear was evidently terrified at something--very greatly +terrified; I do believe that if he had not had me to lean on and to +support him he would have sunk down. He kept staring; a man came out of +the shop with a small parcel, and gave it to the lady, who then drove +off. The dark man kept his eyes fixed on her, and when the carriage +moved up Piccadilly he followed in the same direction, and hailed a +hansom. Thomas kept looking after him, and said, as if to himself:-- + +“I believe it is the Count, but he has grown young. My God, if this be +so! Oh, my God! my God! If I only knew! if I only knew!” He was +distressing himself so much that I feared to keep his mind on the +subject by asking him any questions, so I remained silent. I drew him +away quietly, and he, holding my arm, came easily. We walked a little +further, and then went in and sat for a while in the Green Park. It was +a hot day for autumn, and there was a comfortable seat in a shady place. +After a few minutes’ staring at nothing, Thomas’s eyes closed, and he +went quietly into a sleep, with his head on my shoulder. I thought it +was the best thing for him, so did not disturb him. In about twenty +minutes he woke up, and said to me quite cheerfully:-- + +“Why, Mina, have I been asleep! Oh, do forgive me for being so rude. +Come, and we’ll have a cup of tea somewhere.” He had evidently forgotten +all about the dark stranger, as in his illness he had forgotten all that +this episode had reminded him of. I don’t like this lapsing into +forgetfulness; it may make or continue some injury to the brain. I must +not ask him, for fear I shall do more harm than good; but I must somehow +learn the facts of his journey abroad. The time is come, I fear, when I +must open that parcel, and know what is written. Oh, Thomas, you will, +I know, forgive me if I do wrong, but it is for your own dear sake. + + * * * * * + +_Later._--A sad home-coming in every way--the house empty of the dear +soul who was so good to us; Thomas still pale and dizzy under a slight +relapse of his malady; and now a telegram from Van Helsing, whoever he +may be:-- + +“You will be grieved to hear that Mrs. Westenra died five days ago, and +that Lucy died the day before yesterday. They were both buried to-day.” + +Oh, what a wealth of sorrow in a few words! Poor Mrs. Westenra! poor +Lucy! Gone, gone, never to return to us! And poor, poor Arthur, to have +lost such sweetness out of his life! God help us all to bear our +troubles. + + +_Dr. Seward’s Diary._ + +_22 September._--It is all over. Arthur has gone back to Ring, and has +taken Quincey Morris with him. What a fine fellow is Quincey! I believe +in my heart of hearts that he suffered as much about Lucy’s death as any +of us; but he bore himself through it like a moral Viking. If America +can go on breeding men like that, she will be a power in the world +indeed. Van Helsing is lying down, having a rest preparatory to his +journey. He goes over to Amsterdam to-night, but says he returns +to-morrow night; that he only wants to make some arrangements which can +only be made personally. He is to stop with me then, if he can; he says +he has work to do in London which may take him some time. Poor old +fellow! I fear that the strain of the past week has broken down even his +iron strength. All the time of the burial he was, I could see, putting +some terrible restraint on himself. When it was all over, we were +standing beside Arthur, who, poor fellow, was speaking of his part in +the operation where his blood had been transfused to his Lucy’s veins; I +could see Van Helsing’s face grow white and purple by turns. Arthur was +saying that he felt since then as if they two had been really married +and that she was his wife in the sight of God. None of us said a word of +the other operations, and none of us ever shall. Arthur and Quincey went +away together to the station, and Van Helsing and I came on here. The +moment we were alone in the carriage he gave way to a regular fit of +hysterics. He has denied to me since that it was hysterics, and insisted +that it was only his sense of humour asserting itself under very +terrible conditions. He laughed till he cried, and I had to draw down +the blinds lest any one should see us and misjudge; and then he cried, +till he laughed again; and laughed and cried together, just as a woman +does. I tried to be stern with him, as one is to a woman under the +circumstances; but it had no effect. Men and women are so different in +manifestations of nervous strength or weakness! Then when his face grew +grave and stern again I asked him why his mirth, and why at such a time. +His reply was in a way characteristic of him, for it was logical and +forceful and mysterious. He said:-- + +“Ah, you don’t comprehend, friend John. Do not think that I am not sad, +though I laugh. See, I have cried even when the laugh did choke me. But +no more think that I am all sorry when I cry, for the laugh he come +just the same. Keep it always with you that laughter who knock at your +door and say, ‘May I come in?’ is not the true laughter. No! he is a +king, and he come when and how he like. He ask no person; he choose no +time of suitability. He say, ‘I am here.’ Behold, in example I grieve my +heart out for that so sweet young girl; I give my blood for her, though +I am old and worn; I give my time, my skill, my sleep; I let my other +sufferers want that so she may have all. And yet I can laugh at her very +grave--laugh when the clay from the spade of the sexton drop upon her +coffin and say ‘Thud! thud!’ to my heart, till it send back the blood +from my cheek. My heart bleed for that poor boy--that dear boy, so of +the age of mine own boy had I been so blessed that he live, and with his +hair and eyes the same. There, you know now why I love him so. And yet +when he say things that touch my husband-heart to the quick, and make my +father-heart yearn to him as to no other man--not even to you, friend +John, for we are more level in experiences than father and son--yet even +at such moment King Laugh he come to me and shout and bellow in my ear, +‘Here I am! here I am!’ till the blood come dance back and bring some of +the sunshine that he carry with him to my cheek. Oh, friend John, it is +a strange world, a sad world, a world full of miseries, and woes, and +troubles; and yet when King Laugh come he make them all dance to the +tune he play. Bleeding hearts, and dry bones of the churchyard, and +tears that burn as they fall--all dance together to the music that he +make with that smileless mouth of him. And believe me, friend John, that +he is good to come, and kind. Ah, we men and women are like ropes drawn +tight with strain that pull us different ways. Then tears come; and, +like the rain on the ropes, they brace us up, until perhaps the strain +become too great, and we break. But King Laugh he come like the +sunshine, and he ease off the strain again; and we bear to go on with +our labour, what it may be.” + +I did not like to wound him by pretending not to see his idea; but, as I +did not yet understand the cause of his laughter, I asked him. As he +answered me his face grew stern, and he said in quite a different +tone:-- + +“Oh, it was the grim irony of it all--this so lovely lady garlanded with +flowers, that looked so fair as life, till one by one we wondered if she +were truly dead; she laid in that so fine marble house in that lonely +churchyard, where rest so many of her kin, laid there with the mother +who loved her, and whom she loved; and that sacred bell going ‘Toll! +toll! toll!’ so sad and slow; and those holy men, with the white +garments of the angel, pretending to read books, and yet all the time +their eyes never on the page; and all of us with the bowed head. And all +for what? She is dead; so! Is it not?” + +“Well, for the life of me, Professor,” I said, “I can’t see anything to +laugh at in all that. Why, your explanation makes it a harder puzzle +than before. But even if the burial service was comic, what about poor +Art and his trouble? Why, his heart was simply breaking.” + +“Just so. Said he not that the transfusion of his blood to her veins had +made her truly his bride?” + +“Yes, and it was a sweet and comforting idea for him.” + +“Quite so. But there was a difficulty, friend John. If so that, then +what about the others? Ho, ho! Then this so sweet maid is a polyandrist, +and me, with my poor wife dead to me, but alive by Church’s law, though +no wits, all gone--even I, who am faithful husband to this now-no-wife, +am bigamist.” + +“I don’t see where the joke comes in there either!” I said; and I did +not feel particularly pleased with him for saying such things. He laid +his hand on my arm, and said:-- + +“Friend John, forgive me if I pain. I showed not my feeling to others +when it would wound, but only to you, my old friend, whom I can trust. +If you could have looked into my very heart then when I want to laugh; +if you could have done so when the laugh arrived; if you could do so +now, when King Laugh have pack up his crown, and all that is to him--for +he go far, far away from me, and for a long, long time--maybe you would +perhaps pity me the most of all.” + +I was touched by the tenderness of his tone, and asked why. + +“Because I know!” + +And now we are all scattered; and for many a long day loneliness will +sit over our roofs with brooding wings. Lucy lies in the tomb of her +kin, a lordly death-house in a lonely churchyard, away from teeming +London; where the air is fresh, and the sun rises over Hampstead Hill, +and where wild flowers grow of their own accord. + +So I can finish this diary; and God only knows if I shall ever begin +another. If I do, or if I even open this again, it will be to deal with +different people and different themes; for here at the end, where the +romance of my life is told, ere I go back to take up the thread of my +life-work, I say sadly and without hope, + + “FINIS.” + + +_“The Westminster Gazette,” 25 September._ + + A HAMPSTEAD MYSTERY. + + +The neighbourhood of Hampstead is just at present exercised with a +series of events which seem to run on lines parallel to those of what +was known to the writers of headlines as “The Kensington Horror,” or +“The Stabbing Woman,” or “The Woman in Black.” During the past two or +three days several cases have occurred of young children straying from +home or neglecting to return from their playing on the Heath. In all +these cases the children were too young to give any properly +intelligible account of themselves, but the consensus of their excuses +is that they had been with a “bloofer lady.” It has always been late in +the evening when they have been missed, and on two occasions the +children have not been found until early in the following morning. It is +generally supposed in the neighbourhood that, as the first child missed +gave as his reason for being away that a “bloofer lady” had asked him to +come for a walk, the others had picked up the phrase and used it as +occasion served. This is the more natural as the favourite game of the +little ones at present is luring each other away by wiles. A +correspondent writes us that to see some of the tiny tots pretending to +be the “bloofer lady” is supremely funny. Some of our caricaturists +might, he says, take a lesson in the irony of grotesque by comparing the +reality and the picture. It is only in accordance with general +principles of human nature that the “bloofer lady” should be the popular +rôle at these _al fresco_ performances. Our correspondent naïvely says +that even Ellen Terry could not be so winningly attractive as some of +these grubby-faced little children pretend--and even imagine +themselves--to be. + +There is, however, possibly a serious side to the question, for some of +the children, indeed all who have been missed at night, have been +slightly torn or wounded in the throat. The wounds seem such as might be +made by a rat or a small dog, and although of not much importance +individually, would tend to show that whatever animal inflicts them has +a system or method of its own. The police of the division have been +instructed to keep a sharp look-out for straying children, especially +when very young, in and around Hampstead Heath, and for any stray dog +which may be about. + + + _“The Westminster Gazette,” 25 September._ + + _Extra Special._ + + THE HAMPSTEAD HORROR. + + ANOTHER CHILD INJURED. + + _The “Bloofer Lady.”_ + +We have just received intelligence that another child, missed last +night, was only discovered late in the morning under a furze bush at the +Shooter’s Hill side of Hampstead Heath, which is, perhaps, less +frequented than the other parts. It has the same tiny wound in the +throat as has been noticed in other cases. It was terribly weak, and +looked quite emaciated. It too, when partially restored, had the common +story to tell of being lured away by the “bloofer lady.” + + + + +CHAPTER XIV + +MINA HARKER’S JOURNAL + + +_23 September_.--Thomas is better after a bad night. I am so glad that +he has plenty of work to do, for that keeps his mind off the terrible +things; and oh, I am rejoiced that he is not now weighed down with the +responsibility of his new position. I knew he would be true to himself, +and now how proud I am to see my Thomas rising to the height of his +advancement and keeping pace in all ways with the duties that come upon +him. He will be away all day till late, for he said he could not lunch +at home. My household work is done, so I shall take his foreign journal, +and lock myself up in my room and read it.... + + +_24 September_.--I hadn’t the heart to write last night; that terrible +record of Thomas’s upset me so. Poor dear! How he must have suffered, +whether it be true or only imagination. I wonder if there is any truth +in it at all. Did he get his brain fever, and then write all those +terrible things, or had he some cause for it all? I suppose I shall +never know, for I dare not open the subject to him.... And yet that man +we saw yesterday! He seemed quite certain of him.... Poor fellow! I +suppose it was the funeral upset him and sent his mind back on some +train of thought.... He believes it all himself. I remember how on our +wedding-day he said: “Unless some solemn duty come upon me to go back to +the bitter hours, asleep or awake, mad or sane.” There seems to be +through it all some thread of continuity.... That fearful Count was +coming to London.... If it should be, and he came to London, with his +teeming millions.... There may be a solemn duty; and if it come we must +not shrink from it.... I shall be prepared. I shall get my typewriter +this very hour and begin transcribing. Then we shall be ready for other +eyes if required. And if it be wanted; then, perhaps, if I am ready, +poor Thomas may not be upset, for I can speak for him and never let +him be troubled or worried with it at all. If ever Thomas quite gets +over the nervousness he may want to tell me of it all, and I can ask him +questions and find out things, and see how I may comfort him. + + +_Letter, Van Helsing to Mrs. Harker._ + +“_24 September._ + +(_Confidence_) + +“Dear Madam,-- + +“I pray you to pardon my writing, in that I am so far friend as that I +sent to you sad news of Miss Lucy Westenra’s death. By the kindness of +Lord Godalming, I am empowered to read her letters and papers, for I am +deeply concerned about certain matters vitally important. In them I find +some letters from you, which show how great friends you were and how you +love her. Oh, Madam Mina, by that love, I implore you, help me. It is +for others’ good that I ask--to redress great wrong, and to lift much +and terrible troubles--that may be more great than you can know. May it +be that I see you? You can trust me. I am friend of Dr. John Seward and +of Lord Godalming (that was Arthur of Miss Lucy). I must keep it private +for the present from all. I should come to Exeter to see you at once if +you tell me I am privilege to come, and where and when. I implore your +pardon, madam. I have read your letters to poor Lucy, and know how good +you are and how your husband suffer; so I pray you, if it may be, +enlighten him not, lest it may harm. Again your pardon, and forgive me. + +“VAN HELSING.” + + +_Telegram, Mrs. Harker to Van Helsing._ + +“_25 September._--Come to-day by quarter-past ten train if you can catch +it. Can see you any time you call. + +“WILHELMINA HARKER.” + +MINA HARKER’S JOURNAL. + +_25 September._--I cannot help feeling terribly excited as the time +draws near for the visit of Dr. Van Helsing, for somehow I expect that +it will throw some light upon Thomas’s sad experience; and as he +attended poor dear Lucy in her last illness, he can tell me all about +her. That is the reason of his coming; it is concerning Lucy and her +sleep-walking, and not about Thomas. Then I shall never know the real +truth now! How silly I am. That awful journal gets hold of my +imagination and tinges everything with something of its own colour. Of +course it is about Lucy. That habit came back to the poor dear, and that +awful night on the cliff must have made her ill. I had almost forgotten +in my own affairs how ill she was afterwards. She must have told him +of her sleep-walking adventure on the cliff, and that I knew all about +it; and now he wants me to tell him what she knows, so that he may +understand. I hope I did right in not saying anything of it to Mrs. +Westenra; I should never forgive myself if any act of mine, were it even +a negative one, brought harm on poor dear Lucy. I hope, too, Dr. Van +Helsing will not blame me; I have had so much trouble and anxiety of +late that I feel I cannot bear more just at present. + +I suppose a cry does us all good at times--clears the air as other rain +does. Perhaps it was reading the journal yesterday that upset me, and +then Thomas went away this morning to stay away from me a whole day +and night, the first time we have been parted since our marriage. I do +hope the dear fellow will take care of himself, and that nothing will +occur to upset him. It is two o’clock, and the doctor will be here soon +now. I shall say nothing of Thomas’s journal unless he asks me. I am +so glad I have type-written out my own journal, so that, in case he asks +about Lucy, I can hand it to him; it will save much questioning. + + * * * * * + +_Later._--He has come and gone. Oh, what a strange meeting, and how it +all makes my head whirl round! I feel like one in a dream. Can it be all +possible, or even a part of it? If I had not read Thomas’s journal +first, I should never have accepted even a possibility. Poor, poor, dear +Thomas! How he must have suffered. Please the good God, all this may +not upset him again. I shall try to save him from it; but it may be even +a consolation and a help to him--terrible though it be and awful in its +consequences--to know for certain that his eyes and ears and brain did +not deceive him, and that it is all true. It may be that it is the doubt +which haunts him; that when the doubt is removed, no matter +which--waking or dreaming--may prove the truth, he will be more +satisfied and better able to bear the shock. Dr. Van Helsing must be a +good man as well as a clever one if he is Arthur’s friend and Dr. +Seward’s, and if they brought him all the way from Holland to look after +Lucy. I feel from having seen him that he _is_ good and kind and of a +noble nature. When he comes to-morrow I shall ask him about Thomas; +and then, please God, all this sorrow and anxiety may lead to a good +end. I used to think I would like to practise interviewing; Thomas’s +friend on “The Exeter News” told him that memory was everything in such +work--that you must be able to put down exactly almost every word +spoken, even if you had to refine some of it afterwards. Here was a rare +interview; I shall try to record it _verbatim_. + +It was half-past two o’clock when the knock came. I took my courage _à +deux mains_ and waited. In a few minutes Mary opened the door, and +announced “Dr. Van Helsing.” + +I rose and bowed, and he came towards me; a man of medium weight, +strongly built, with his shoulders set back over a broad, deep chest and +a neck well balanced on the trunk as the head is on the neck. The poise +of the head strikes one at once as indicative of thought and power; the +head is noble, well-sized, broad, and large behind the ears. The face, +clean-shaven, shows a hard, square chin, a large, resolute, mobile +mouth, a good-sized nose, rather straight, but with quick, sensitive +nostrils, that seem to broaden as the big, bushy brows come down and the +mouth tightens. The forehead is broad and fine, rising at first almost +straight and then sloping back above two bumps or ridges wide apart; +such a forehead that the reddish hair cannot possibly tumble over it, +but falls naturally back and to the sides. Big, dark blue eyes are set +widely apart, and are quick and tender or stern with the man’s moods. He +said to me:-- + +“Mrs. Harker, is it not?” I bowed assent. + +“That was Miss Mina Murray?” Again I assented. + +“It is Mina Murray that I came to see that was friend of that poor dear +child Lucy Westenra. Madam Mina, it is on account of the dead I come.” + +“Sir,” I said, “you could have no better claim on me than that you were +a friend and helper of Lucy Westenra.” And I held out my hand. He took +it and said tenderly:-- + +“Oh, Madam Mina, I knew that the friend of that poor lily girl must be +good, but I had yet to learn----” He finished his speech with a courtly +bow. I asked him what it was that he wanted to see me about, so he at +once began:-- + +“I have read your letters to Miss Lucy. Forgive me, but I had to begin +to inquire somewhere, and there was none to ask. I know that you were +with her at Whitby. She sometimes kept a diary--you need not look +surprised, Madam Mina; it was begun after you had left, and was in +imitation of you--and in that diary she traces by inference certain +things to a sleep-walking in which she puts down that you saved her. In +great perplexity then I come to you, and ask you out of your so much +kindness to tell me all of it that you can remember.” + +“I can tell you, I think, Dr. Van Helsing, all about it.” + +“Ah, then you have good memory for facts, for details? It is not always +so with young ladies.” + +“No, doctor, but I wrote it all down at the time. I can show it to you +if you like.” + +“Oh, Madam Mina, I will be grateful; you will do me much favour.” I +could not resist the temptation of mystifying him a bit--I suppose it is +some of the taste of the original apple that remains still in our +mouths--so I handed him the shorthand diary. He took it with a grateful +bow, and said:-- + +“May I read it?” + +“If you wish,” I answered as demurely as I could. He opened it, and for +an instant his face fell. Then he stood up and bowed. + +“Oh, you so clever woman!” he said. “I knew long that Mr. Thomas was a +man of much thankfulness; but see, his wife have all the good things. +And will you not so much honour me and so help me as to read it for me? +Alas! I know not the shorthand.” By this time my little joke was over, +and I was almost ashamed; so I took the typewritten copy from my +workbasket and handed it to him. + +“Forgive me,” I said: “I could not help it; but I had been thinking that +it was of dear Lucy that you wished to ask, and so that you might not +have time to wait--not on my account, but because I know your time must +be precious--I have written it out on the typewriter for you.” + +He took it and his eyes glistened. “You are so good,” he said. “And may +I read it now? I may want to ask you some things when I have read.” + +“By all means,” I said, “read it over whilst I order lunch; and then you +can ask me questions whilst we eat.” He bowed and settled himself in a +chair with his back to the light, and became absorbed in the papers, +whilst I went to see after lunch chiefly in order that he might not be +disturbed. When I came back, I found him walking hurriedly up and down +the room, his face all ablaze with excitement. He rushed up to me and +took me by both hands. + +“Oh, Madam Mina,” he said, “how can I say what I owe to you? This paper +is as sunshine. It opens the gate to me. I am daze, I am dazzle, with so +much light, and yet clouds roll in behind the light every time. But that +you do not, cannot, comprehend. Oh, but I am grateful to you, you so +clever woman. Madam”--he said this very solemnly--“if ever Abraham Van +Helsing can do anything for you or yours, I trust you will let me know. +It will be pleasure and delight if I may serve you as a friend; as a +friend, but all I have ever learned, all I can ever do, shall be for you +and those you love. There are darknesses in life, and there are lights; +you are one of the lights. You will have happy life and good life, and +your husband will be blessed in you.” + +“But, doctor, you praise me too much, and--and you do not know me.” + +“Not know you--I, who am old, and who have studied all my life men and +women; I, who have made my specialty the brain and all that belongs to +him and all that follow from him! And I have read your diary that you +have so goodly written for me, and which breathes out truth in every +line. I, who have read your so sweet letter to poor Lucy of your +marriage and your trust, not know you! Oh, Madam Mina, good women tell +all their lives, and by day and by hour and by minute, such things that +angels can read; and we men who wish to know have in us something of +angels’ eyes. Your husband is noble nature, and you are noble too, for +you trust, and trust cannot be where there is mean nature. And your +husband--tell me of him. Is he quite well? Is all that fever gone, and +is he strong and hearty?” I saw here an opening to ask him about +Thomas, so I said:-- + +“He was almost recovered, but he has been greatly upset by Mr. Hawkins’s +death.” He interrupted:-- + +“Oh, yes, I know, I know. I have read your last two letters.” I went +on:-- + +“I suppose this upset him, for when we were in town on Thursday last he +had a sort of shock.” + +“A shock, and after brain fever so soon! That was not good. What kind of +a shock was it?” + +“He thought he saw some one who recalled something terrible, something +which led to his brain fever.” And here the whole thing seemed to +overwhelm me in a rush. The pity for Thomas, the horror which he +experienced, the whole fearful mystery of his diary, and the fear that +has been brooding over me ever since, all came in a tumult. I suppose I +was hysterical, for I threw myself on my knees and held up my hands to +him, and implored him to make my husband well again. He took my hands +and raised me up, and made me sit on the sofa, and sat by me; he held my +hand in his, and said to me with, oh, such infinite sweetness:-- + +“My life is a barren and lonely one, and so full of work that I have not +had much time for friendships; but since I have been summoned to here by +my friend John Seward I have known so many good people and seen such +nobility that I feel more than ever--and it has grown with my advancing +years--the loneliness of my life. Believe, me, then, that I come here +full of respect for you, and you have given me hope--hope, not in what I +am seeking of, but that there are good women still left to make life +happy--good women, whose lives and whose truths may make good lesson for +the children that are to be. I am glad, glad, that I may here be of some +use to you; for if your husband suffer, he suffer within the range of my +study and experience. I promise you that I will gladly do _all_ for him +that I can--all to make his life strong and manly, and your life a happy +one. Now you must eat. You are overwrought and perhaps over-anxious. +Husband Thomas would not like to see you so pale; and what he like not +where he love, is not to his good. Therefore for his sake you must eat +and smile. You have told me all about Lucy, and so now we shall not +speak of it, lest it distress. I shall stay in Exeter to-night, for I +want to think much over what you have told me, and when I have thought I +will ask you questions, if I may. And then, too, you will tell me of +husband Thomas’s trouble so far as you can, but not yet. You must eat +now; afterwards you shall tell me all.” + +After lunch, when we went back to the drawing-room, he said to me:-- + +“And now tell me all about him.” When it came to speaking to this great +learned man, I began to fear that he would think me a weak fool, and +Thomas a madman--that journal is all so strange--and I hesitated to go +on. But he was so sweet and kind, and he had promised to help, and I +trusted him, so I said:-- + +“Dr. Van Helsing, what I have to tell you is so queer that you must not +laugh at me or at my husband. I have been since yesterday in a sort of +fever of doubt; you must be kind to me, and not think me foolish that I +have even half believed some very strange things.” He reassured me by +his manner as well as his words when he said:-- + +“Oh, my dear, if you only know how strange is the matter regarding which +I am here, it is you who would laugh. I have learned not to think little +of any one’s belief, no matter how strange it be. I have tried to keep +an open mind; and it is not the ordinary things of life that could close +it, but the strange things, the extraordinary things, the things that +make one doubt if they be mad or sane.” + +“Thank you, thank you, a thousand times! You have taken a weight off my +mind. If you will let me, I shall give you a paper to read. It is long, +but I have typewritten it out. It will tell you my trouble and +Thomas’s. It is the copy of his journal when abroad, and all that +happened. I dare not say anything of it; you will read for yourself and +judge. And then when I see you, perhaps, you will be very kind and tell +me what you think.” + +“I promise,” he said as I gave him the papers; “I shall in the morning, +so soon as I can, come to see you and your husband, if I may.” + +“Thomas will be here at half-past eleven, and you must come to lunch +with us and see him then; you could catch the quick 3:34 train, which +will leave you at Paddington before eight.” He was surprised at my +knowledge of the trains off-hand, but he does not know that I have made +up all the trains to and from Exeter, so that I may help Thomas in +case he is in a hurry. + +So he took the papers with him and went away, and I sit here +thinking--thinking I don’t know what. + + * * * * * + +_Letter (by hand), Van Helsing to Mrs. Harker._ + +“_25 September, 6 o’clock._ + +“Dear Madam Mina,-- + +“I have read your husband’s so wonderful diary. You may sleep without +doubt. Strange and terrible as it is, it is _true_! I will pledge my +life on it. It may be worse for others; but for him and you there is no +dread. He is a noble fellow; and let me tell you from experience of men, +that one who would do as he did in going down that wall and to that +room--ay, and going a second time--is not one to be injured in +permanence by a shock. His brain and his heart are all right; this I +swear, before I have even seen him; so be at rest. I shall have much to +ask him of other things. I am blessed that to-day I come to see you, for +I have learn all at once so much that again I am dazzle--dazzle more +than ever, and I must think. + +“Yours the most faithful, + +“ABRAHAM VAN HELSING.” + + +_Letter, Mrs. Harker to Van Helsing._ + +“_25 September, 6:30 p. m._ + +“My dear Dr. Van Helsing,-- + +“A thousand thanks for your kind letter, which has taken a great weight +off my mind. And yet, if it be true, what terrible things there are in +the world, and what an awful thing if that man, that monster, be really +in London! I fear to think. I have this moment, whilst writing, had a +wire from Thomas, saying that he leaves by the 6:25 to-night from +Launceston and will be here at 10:18, so that I shall have no fear +to-night. Will you, therefore, instead of lunching with us, please come +to breakfast at eight o’clock, if this be not too early for you? You can +get away, if you are in a hurry, by the 10:30 train, which will bring +you to Paddington by 2:35. Do not answer this, as I shall take it that, +if I do not hear, you will come to breakfast. + +“Believe me, + +“Your faithful and grateful friend, + +“MINA HARKER.” + + +_Thomas Harker’s Journal._ + +_26 September._--I thought never to write in this diary again, but the +time has come. When I got home last night Mina had supper ready, and +when we had supped she told me of Van Helsing’s visit, and of her having +given him the two diaries copied out, and of how anxious she has been +about me. She showed me in the doctor’s letter that all I wrote down was +true. It seems to have made a new man of me. It was the doubt as to the +reality of the whole thing that knocked me over. I felt impotent, and in +the dark, and distrustful. But, now that I _know_, I am not afraid, even +of the Count. He has succeeded after all, then, in his design in getting +to London, and it was he I saw. He has got younger, and how? Van Helsing +is the man to unmask him and hunt him out, if he is anything like what +Mina says. We sat late, and talked it all over. Mina is dressing, and I +shall call at the hotel in a few minutes and bring him over.... + +He was, I think, surprised to see me. When I came into the room where he +was, and introduced myself, he took me by the shoulder, and turned my +face round to the light, and said, after a sharp scrutiny:-- + +“But Madam Mina told me you were ill, that you had had a shock.” It was +so funny to hear my wife called “Madam Mina” by this kindly, +strong-faced old man. I smiled, and said:-- + +“I _was_ ill, I _have_ had a shock; but you have cured me already.” + +“And how?” + +“By your letter to Mina last night. I was in doubt, and then everything +took a hue of unreality, and I did not know what to trust, even the +evidence of my own senses. Not knowing what to trust, I did not know +what to do; and so had only to keep on working in what had hitherto been +the groove of my life. The groove ceased to avail me, and I mistrusted +myself. Doctor, you don’t know what it is to doubt everything, even +yourself. No, you don’t; you couldn’t with eyebrows like yours.” He +seemed pleased, and laughed as he said:-- + +“So! You are physiognomist. I learn more here with each hour. I am with +so much pleasure coming to you to breakfast; and, oh, sir, you will +pardon praise from an old man, but you are blessed in your wife.” I +would listen to him go on praising Mina for a day, so I simply nodded +and stood silent. + +“She is one of God’s women, fashioned by His own hand to show us men and +other women that there is a heaven where we can enter, and that its +light can be here on earth. So true, so sweet, so noble, so little an +egoist--and that, let me tell you, is much in this age, so sceptical and +selfish. And you, sir--I have read all the letters to poor Miss Lucy, +and some of them speak of you, so I know you since some days from the +knowing of others; but I have seen your true self since last night. You +will give me your hand, will you not? And let us be friends for all our +lives.” + +We shook hands, and he was so earnest and so kind that it made me quite +choky. + +“And now,” he said, “may I ask you for some more help? I have a great +task to do, and at the beginning it is to know. You can help me here. +Can you tell me what went before your going to Transylvania? Later on I +may ask more help, and of a different kind; but at first this will do.” + +“Look here, sir,” I said, “does what you have to do concern the Count?” + +“It does,” he said solemnly. + +“Then I am with you heart and soul. As you go by the 10:30 train, you +will not have time to read them; but I shall get the bundle of papers. +You can take them with you and read them in the train.” + +After breakfast I saw him to the station. When we were parting he +said:-- + +“Perhaps you will come to town if I send to you, and take Madam Mina +too.” + +“We shall both come when you will,” I said. + +I had got him the morning papers and the London papers of the previous +night, and while we were talking at the carriage window, waiting for the +train to start, he was turning them over. His eyes suddenly seemed to +catch something in one of them, “The Westminster Gazette”--I knew it by +the colour--and he grew quite white. He read something intently, +groaning to himself: “Mein Gott! Mein Gott! So soon! so soon!” I do not +think he remembered me at the moment. Just then the whistle blew, and +the train moved off. This recalled him to himself, and he leaned out of +the window and waved his hand, calling out: “Love to Madam Mina; I shall +write so soon as ever I can.” + + +_Dr. Seward’s Diary._ + +_26 September._--Truly there is no such thing as finality. Not a week +since I said “Finis,” and yet here I am starting fresh again, or rather +going on with the same record. Until this afternoon I had no cause to +think of what is done. Renfield had become, to all intents, as sane as +he ever was. He was already well ahead with his fly business; and he had +just started in the spider line also; so he had not been of any trouble +to me. I had a letter from Arthur, written on Sunday, and from it I +gather that he is bearing up wonderfully well. Quincey Morris is with +him, and that is much of a help, for he himself is a bubbling well of +good spirits. Quincey wrote me a line too, and from him I hear that +Arthur is beginning to recover something of his old buoyancy; so as to +them all my mind is at rest. As for myself, I was settling down to my +work with the enthusiasm which I used to have for it, so that I might +fairly have said that the wound which poor Lucy left on me was becoming +cicatrised. Everything is, however, now reopened; and what is to be the +end God only knows. I have an idea that Van Helsing thinks he knows, +too, but he will only let out enough at a time to whet curiosity. He +went to Exeter yesterday, and stayed there all night. To-day he came +back, and almost bounded into the room at about half-past five o’clock, +and thrust last night’s “Westminster Gazette” into my hand. + +“What do you think of that?” he asked as he stood back and folded his +arms. + +I looked over the paper, for I really did not know what he meant; but he +took it from me and pointed out a paragraph about children being decoyed +away at Hampstead. It did not convey much to me, until I reached a +passage where it described small punctured wounds on their throats. An +idea struck me, and I looked up. “Well?” he said. + +“It is like poor Lucy’s.” + +“And what do you make of it?” + +“Simply that there is some cause in common. Whatever it was that injured +her has injured them.” I did not quite understand his answer:-- + +“That is true indirectly, but not directly.” + +“How do you mean, Professor?” I asked. I was a little inclined to take +his seriousness lightly--for, after all, four days of rest and freedom +from burning, harrowing anxiety does help to restore one’s spirits--but +when I saw his face, it sobered me. Never, even in the midst of our +despair about poor Lucy, had he looked more stern. + +“Tell me!” I said. “I can hazard no opinion. I do not know what to +think, and I have no data on which to found a conjecture.” + +“Do you mean to tell me, friend John, that you have no suspicion as to +what poor Lucy died of; not after all the hints given, not only by +events, but by me?” + +“Of nervous prostration following on great loss or waste of blood.” + +“And how the blood lost or waste?” I shook my head. He stepped over and +sat down beside me, and went on:-- + +“You are clever man, friend John; you reason well, and your wit is bold; +but you are too prejudiced. You do not let your eyes see nor your ears +hear, and that which is outside your daily life is not of account to +you. Do you not think that there are things which you cannot understand, +and yet which are; that some people see things that others cannot? But +there are things old and new which must not be contemplate by men’s +eyes, because they know--or think they know--some things which other men +have told them. Ah, it is the fault of our science that it wants to +explain all; and if it explain not, then it says there is nothing to +explain. But yet we see around us every day the growth of new beliefs, +which think themselves new; and which are yet but the old, which pretend +to be young--like the fine ladies at the opera. I suppose now you do not +believe in corporeal transference. No? Nor in materialisation. No? Nor +in astral bodies. No? Nor in the reading of thought. No? Nor in +hypnotism----” + +“Yes,” I said. “Charcot has proved that pretty well.” He smiled as he +went on: “Then you are satisfied as to it. Yes? And of course then you +understand how it act, and can follow the mind of the great +Charcot--alas that he is no more!--into the very soul of the patient +that he influence. No? Then, friend John, am I to take it that you +simply accept fact, and are satisfied to let from premise to conclusion +be a blank? No? Then tell me--for I am student of the brain--how you +accept the hypnotism and reject the thought reading. Let me tell you, my +friend, that there are things done to-day in electrical science which +would have been deemed unholy by the very men who discovered +electricity--who would themselves not so long before have been burned +as wizards. There are always mysteries in life. Why was it that +Methuselah lived nine hundred years, and ‘Old Parr’ one hundred and +sixty-nine, and yet that poor Lucy, with four men’s blood in her poor +veins, could not live even one day? For, had she live one more day, we +could have save her. Do you know all the mystery of life and death? Do +you know the altogether of comparative anatomy and can say wherefore the +qualities of brutes are in some men, and not in others? Can you tell me +why, when other spiders die small and soon, that one great spider lived +for centuries in the tower of the old Spanish church and grew and grew, +till, on descending, he could drink the oil of all the church lamps? Can +you tell me why in the Pampas, ay and elsewhere, there are bats that +come at night and open the veins of cattle and horses and suck dry their +veins; how in some islands of the Western seas there are bats which hang +on the trees all day, and those who have seen describe as like giant +nuts or pods, and that when the sailors sleep on the deck, because that +it is hot, flit down on them, and then--and then in the morning are +found dead men, white as even Miss Lucy was?” + +“Good God, Professor!” I said, starting up. “Do you mean to tell me that +Lucy was bitten by such a bat; and that such a thing is here in London +in the nineteenth century?” He waved his hand for silence, and went +on:-- + +“Can you tell me why the tortoise lives more long than generations of +men; why the elephant goes on and on till he have seen dynasties; and +why the parrot never die only of bite of cat or dog or other complaint? +Can you tell me why men believe in all ages and places that there are +some few who live on always if they be permit; that there are men and +women who cannot die? We all know--because science has vouched for the +fact--that there have been toads shut up in rocks for thousands of +years, shut in one so small hole that only hold him since the youth of +the world. Can you tell me how the Indian fakir can make himself to die +and have been buried, and his grave sealed and corn sowed on it, and the +corn reaped and be cut and sown and reaped and cut again, and then men +come and take away the unbroken seal and that there lie the Indian +fakir, not dead, but that rise up and walk amongst them as before?” Here +I interrupted him. I was getting bewildered; he so crowded on my mind +his list of nature’s eccentricities and possible impossibilities that my +imagination was getting fired. I had a dim idea that he was teaching me +some lesson, as long ago he used to do in his study at Amsterdam; but +he used then to tell me the thing, so that I could have the object of +thought in mind all the time. But now I was without this help, yet I +wanted to follow him, so I said:-- + +“Professor, let me be your pet student again. Tell me the thesis, so +that I may apply your knowledge as you go on. At present I am going in +my mind from point to point as a mad man, and not a sane one, follows an +idea. I feel like a novice lumbering through a bog in a mist, jumping +from one tussock to another in the mere blind effort to move on without +knowing where I am going.” + +“That is good image,” he said. “Well, I shall tell you. My thesis is +this: I want you to believe.” + +“To believe what?” + +“To believe in things that you cannot. Let me illustrate. I heard once +of an American who so defined faith: ‘that faculty which enables us to +believe things which we know to be untrue.’ For one, I follow that man. +He meant that we shall have an open mind, and not let a little bit of +truth check the rush of a big truth, like a small rock does a railway +truck. We get the small truth first. Good! We keep him, and we value +him; but all the same we must not let him think himself all the truth in +the universe.” + +“Then you want me not to let some previous conviction injure the +receptivity of my mind with regard to some strange matter. Do I read +your lesson aright?” + +“Ah, you are my favourite pupil still. It is worth to teach you. Now +that you are willing to understand, you have taken the first step to +understand. You think then that those so small holes in the children’s +throats were made by the same that made the hole in Miss Lucy?” + +“I suppose so.” He stood up and said solemnly:-- + +“Then you are wrong. Oh, would it were so! but alas! no. It is worse, +far, far worse.” + +“In God’s name, Professor Van Helsing, what do you mean?” I cried. + +He threw himself with a despairing gesture into a chair, and placed his +elbows on the table, covering his face with his hands as he spoke:-- + +“They were made by Miss Lucy!” + + + + +CHAPTER XV + +DR. SEWARD’S DIARY--_continued_. + + +For a while sheer anger mastered me; it was as if he had during her life +struck Lucy on the face. I smote the table hard and rose up as I said to +him:-- + +“Dr. Van Helsing, are you mad?” He raised his head and looked at me, and +somehow the tenderness of his face calmed me at once. “Would I were!” he +said. “Madness were easy to bear compared with truth like this. Oh, my +friend, why, think you, did I go so far round, why take so long to tell +you so simple a thing? Was it because I hate you and have hated you all +my life? Was it because I wished to give you pain? Was it that I wanted, +now so late, revenge for that time when you saved my life, and from a +fearful death? Ah no!” + +“Forgive me,” said I. He went on:-- + +“My friend, it was because I wished to be gentle in the breaking to you, +for I know you have loved that so sweet lady. But even yet I do not +expect you to believe. It is so hard to accept at once any abstract +truth, that we may doubt such to be possible when we have always +believed the ‘no’ of it; it is more hard still to accept so sad a +concrete truth, and of such a one as Miss Lucy. To-night I go to prove +it. Dare you come with me?” + +This staggered me. A man does not like to prove such a truth; Byron +excepted from the category, jealousy. + + “And prove the very truth he most abhorred.” + +He saw my hesitation, and spoke:-- + +“The logic is simple, no madman’s logic this time, jumping from tussock +to tussock in a misty bog. If it be not true, then proof will be relief; +at worst it will not harm. If it be true! Ah, there is the dread; yet +very dread should help my cause, for in it is some need of belief. Come, +I tell you what I propose: first, that we go off now and see that child +in the hospital. Dr. Vincent, of the North Hospital, where the papers +say the child is, is friend of mine, and I think of yours since you were +in class at Amsterdam. He will let two scientists see his case, if he +will not let two friends. We shall tell him nothing, but only that we +wish to learn. And then----” + +“And then?” He took a key from his pocket and held it up. “And then we +spend the night, you and I, in the churchyard where Lucy lies. This is +the key that lock the tomb. I had it from the coffin-man to give to +Arthur.” My heart sank within me, for I felt that there was some fearful +ordeal before us. I could do nothing, however, so I plucked up what +heart I could and said that we had better hasten, as the afternoon was +passing.... + +We found the child awake. It had had a sleep and taken some food, and +altogether was going on well. Dr. Vincent took the bandage from its +throat, and showed us the punctures. There was no mistaking the +similarity to those which had been on Lucy’s throat. They were smaller, +and the edges looked fresher; that was all. We asked Vincent to what he +attributed them, and he replied that it must have been a bite of some +animal, perhaps a rat; but, for his own part, he was inclined to think +that it was one of the bats which are so numerous on the northern +heights of London. “Out of so many harmless ones,” he said, “there may +be some wild specimen from the South of a more malignant species. Some +sailor may have brought one home, and it managed to escape; or even from +the Zoölogical Gardens a young one may have got loose, or one be bred +there from a vampire. These things do occur, you know. Only ten days ago +a wolf got out, and was, I believe, traced up in this direction. For a +week after, the children were playing nothing but Red Riding Hood on the +Heath and in every alley in the place until this ‘bloofer lady’ scare +came along, since when it has been quite a gala-time with them. Even +this poor little mite, when he woke up to-day, asked the nurse if he +might go away. When she asked him why he wanted to go, he said he wanted +to play with the ‘bloofer lady.’” + +“I hope,” said Van Helsing, “that when you are sending the child home +you will caution its parents to keep strict watch over it. These fancies +to stray are most dangerous; and if the child were to remain out another +night, it would probably be fatal. But in any case I suppose you will +not let it away for some days?” + +“Certainly not, not for a week at least; longer if the wound is not +healed.” + +Our visit to the hospital took more time than we had reckoned on, and +the sun had dipped before we came out. When Van Helsing saw how dark it +was, he said:-- + +“There is no hurry. It is more late than I thought. Come, let us seek +somewhere that we may eat, and then we shall go on our way.” + +We dined at “Jack Straw’s Castle” along with a little crowd of +bicyclists and others who were genially noisy. About ten o’clock we +started from the inn. It was then very dark, and the scattered lamps +made the darkness greater when we were once outside their individual +radius. The Professor had evidently noted the road we were to go, for he +went on unhesitatingly; but, as for me, I was in quite a mixup as to +locality. As we went further, we met fewer and fewer people, till at +last we were somewhat surprised when we met even the patrol of horse +police going their usual suburban round. At last we reached the wall of +the churchyard, which we climbed over. With some little difficulty--for +it was very dark, and the whole place seemed so strange to us--we found +the Westenra tomb. The Professor took the key, opened the creaky door, +and standing back, politely, but quite unconsciously, motioned me to +precede him. There was a delicious irony in the offer, in the +courtliness of giving preference on such a ghastly occasion. My +companion followed me quickly, and cautiously drew the door to, after +carefully ascertaining that the lock was a falling, and not a spring, +one. In the latter case we should have been in a bad plight. Then he +fumbled in his bag, and taking out a matchbox and a piece of candle, +proceeded to make a light. The tomb in the day-time, and when wreathed +with fresh flowers, had looked grim and gruesome enough; but now, some +days afterwards, when the flowers hung lank and dead, their whites +turning to rust and their greens to browns; when the spider and the +beetle had resumed their accustomed dominance; when time-discoloured +stone, and dust-encrusted mortar, and rusty, dank iron, and tarnished +brass, and clouded silver-plating gave back the feeble glimmer of a +candle, the effect was more miserable and sordid than could have been +imagined. It conveyed irresistibly the idea that life--animal life--was +not the only thing which could pass away. + +Van Helsing went about his work systematically. Holding his candle so +that he could read the coffin plates, and so holding it that the sperm +dropped in white patches which congealed as they touched the metal, he +made assurance of Lucy’s coffin. Another search in his bag, and he took +out a turnscrew. + +“What are you going to do?” I asked. + +“To open the coffin. You shall yet be convinced.” Straightway he began +taking out the screws, and finally lifted off the lid, showing the +casing of lead beneath. The sight was almost too much for me. It seemed +to be as much an affront to the dead as it would have been to have +stripped off her clothing in her sleep whilst living; I actually took +hold of his hand to stop him. He only said: “You shall see,” and again +fumbling in his bag, took out a tiny fret-saw. Striking the turnscrew +through the lead with a swift downward stab, which made me wince, he +made a small hole, which was, however, big enough to admit the point of +the saw. I had expected a rush of gas from the week-old corpse. We +doctors, who have had to study our dangers, have to become accustomed to +such things, and I drew back towards the door. But the Professor never +stopped for a moment; he sawed down a couple of feet along one side of +the lead coffin, and then across, and down the other side. Taking the +edge of the loose flange, he bent it back towards the foot of the +coffin, and holding up the candle into the aperture, motioned to me to +look. + +I drew near and looked. The coffin was empty. + +It was certainly a surprise to me, and gave me a considerable shock, but +Van Helsing was unmoved. He was now more sure than ever of his ground, +and so emboldened to proceed in his task. “Are you satisfied now, friend +John?” he asked. + +I felt all the dogged argumentativeness of my nature awake within me as +I answered him:-- + +“I am satisfied that Lucy’s body is not in that coffin; but that only +proves one thing.” + +“And what is that, friend John?” + +“That it is not there.” + +“That is good logic,” he said, “so far as it goes. But how do you--how +can you--account for it not being there?” + +“Perhaps a body-snatcher,” I suggested. “Some of the undertaker’s people +may have stolen it.” I felt that I was speaking folly, and yet it was +the only real cause which I could suggest. The Professor sighed. “Ah +well!” he said, “we must have more proof. Come with me.” + +He put on the coffin-lid again, gathered up all his things and placed +them in the bag, blew out the light, and placed the candle also in the +bag. We opened the door, and went out. Behind us he closed the door and +locked it. He handed me the key, saying: “Will you keep it? You had +better be assured.” I laughed--it was not a very cheerful laugh, I am +bound to say--as I motioned him to keep it. “A key is nothing,” I said; +“there may be duplicates; and anyhow it is not difficult to pick a lock +of that kind.” He said nothing, but put the key in his pocket. Then he +told me to watch at one side of the churchyard whilst he would watch at +the other. I took up my place behind a yew-tree, and I saw his dark +figure move until the intervening headstones and trees hid it from my +sight. + +It was a lonely vigil. Just after I had taken my place I heard a distant +clock strike twelve, and in time came one and two. I was chilled and +unnerved, and angry with the Professor for taking me on such an errand +and with myself for coming. I was too cold and too sleepy to be keenly +observant, and not sleepy enough to betray my trust so altogether I had +a dreary, miserable time. + +Suddenly, as I turned round, I thought I saw something like a white +streak, moving between two dark yew-trees at the side of the churchyard +farthest from the tomb; at the same time a dark mass moved from the +Professor’s side of the ground, and hurriedly went towards it. Then I +too moved; but I had to go round headstones and railed-off tombs, and I +stumbled over graves. The sky was overcast, and somewhere far off an +early cock crew. A little way off, beyond a line of scattered +juniper-trees, which marked the pathway to the church, a white, dim +figure flitted in the direction of the tomb. The tomb itself was hidden +by trees, and I could not see where the figure disappeared. I heard the +rustle of actual movement where I had first seen the white figure, and +coming over, found the Professor holding in his arms a tiny child. When +he saw me he held it out to me, and said:-- + +“Are you satisfied now?” + +“No,” I said, in a way that I felt was aggressive. + +“Do you not see the child?” + +“Yes, it is a child, but who brought it here? And is it wounded?” I +asked. + +“We shall see,” said the Professor, and with one impulse we took our way +out of the churchyard, he carrying the sleeping child. + +When we had got some little distance away, we went into a clump of +trees, and struck a match, and looked at the child’s throat. It was +without a scratch or scar of any kind. + +“Was I right?” I asked triumphantly. + +“We were just in time,” said the Professor thankfully. + +We had now to decide what we were to do with the child, and so consulted +about it. If we were to take it to a police-station we should have to +give some account of our movements during the night; at least, we should +have had to make some statement as to how we had come to find the child. +So finally we decided that we would take it to the Heath, and when we +heard a policeman coming, would leave it where he could not fail to find +it; we would then seek our way home as quickly as we could. All fell out +well. At the edge of Hampstead Heath we heard a policeman’s heavy +tramp, and laying the child on the pathway, we waited and watched until +he saw it as he flashed his lantern to and fro. We heard his exclamation +of astonishment, and then we went away silently. By good chance we got a +cab near the “Spaniards,” and drove to town. + +I cannot sleep, so I make this entry. But I must try to get a few hours’ +sleep, as Van Helsing is to call for me at noon. He insists that I shall +go with him on another expedition. + + * * * * * + +_27 September._--It was two o’clock before we found a suitable +opportunity for our attempt. The funeral held at noon was all completed, +and the last stragglers of the mourners had taken themselves lazily +away, when, looking carefully from behind a clump of alder-trees, we saw +the sexton lock the gate after him. We knew then that we were safe till +morning did we desire it; but the Professor told me that we should not +want more than an hour at most. Again I felt that horrid sense of the +reality of things, in which any effort of imagination seemed out of +place; and I realised distinctly the perils of the law which we were +incurring in our unhallowed work. Besides, I felt it was all so useless. +Outrageous as it was to open a leaden coffin, to see if a woman dead +nearly a week were really dead, it now seemed the height of folly to +open the tomb again, when we knew, from the evidence of our own +eyesight, that the coffin was empty. I shrugged my shoulders, however, +and rested silent, for Van Helsing had a way of going on his own road, +no matter who remonstrated. He took the key, opened the vault, and again +courteously motioned me to precede. The place was not so gruesome as +last night, but oh, how unutterably mean-looking when the sunshine +streamed in. Van Helsing walked over to Lucy’s coffin, and I followed. +He bent over and again forced back the leaden flange; and then a shock +of surprise and dismay shot through me. + +There lay Lucy, seemingly just as we had seen her the night before her +funeral. She was, if possible, more radiantly beautiful than ever; and I +could not believe that she was dead. The lips were red, nay redder than +before; and on the cheeks was a delicate bloom. + +“Is this a juggle?” I said to him. + +“Are you convinced now?” said the Professor in response, and as he spoke +he put over his hand, and in a way that made me shudder, pulled back the +dead lips and showed the white teeth. + +“See,” he went on, “see, they are even sharper than before. With this +and this”--and he touched one of the canine teeth and that below +it--“the little children can be bitten. Are you of belief now, friend +John?” Once more, argumentative hostility woke within me. I _could_ not +accept such an overwhelming idea as he suggested; so, with an attempt to +argue of which I was even at the moment ashamed, I said:-- + +“She may have been placed here since last night.” + +“Indeed? That is so, and by whom?” + +“I do not know. Some one has done it.” + +“And yet she has been dead one week. Most peoples in that time would not +look so.” I had no answer for this, so was silent. Van Helsing did not +seem to notice my silence; at any rate, he showed neither chagrin nor +triumph. He was looking intently at the face of the dead woman, raising +the eyelids and looking at the eyes, and once more opening the lips and +examining the teeth. Then he turned to me and said:-- + +“Here, there is one thing which is different from all recorded; here is +some dual life that is not as the common. She was bitten by the vampire +when she was in a trance, sleep-walking--oh, you start; you do not know +that, friend John, but you shall know it all later--and in trance could +he best come to take more blood. In trance she died, and in trance she +is Un-Dead, too. So it is that she differ from all other. Usually when +the Un-Dead sleep at home”--as he spoke he made a comprehensive sweep of +his arm to designate what to a vampire was “home”--“their face show what +they are, but this so sweet that was when she not Un-Dead she go back to +the nothings of the common dead. There is no malign there, see, and so +it make hard that I must kill her in her sleep.” This turned my blood +cold, and it began to dawn upon me that I was accepting Van Helsing’s +theories; but if she were really dead, what was there of terror in the +idea of killing her? He looked up at me, and evidently saw the change in +my face, for he said almost joyously:-- + +“Ah, you believe now?” + +I answered: “Do not press me too hard all at once. I am willing to +accept. How will you do this bloody work?” + +“I shall cut off her head and fill her mouth with garlic, and I shall +drive a stake through her body.” It made me shudder to think of so +mutilating the body of the woman whom I had loved. And yet the feeling +was not so strong as I had expected. I was, in fact, beginning to +shudder at the presence of this being, this Un-Dead, as Van Helsing +called it, and to loathe it. Is it possible that love is all subjective, +or all objective? + +I waited a considerable time for Van Helsing to begin, but he stood as +if wrapped in thought. Presently he closed the catch of his bag with a +snap, and said:-- + +“I have been thinking, and have made up my mind as to what is best. If I +did simply follow my inclining I would do now, at this moment, what is +to be done; but there are other things to follow, and things that are +thousand times more difficult in that them we do not know. This is +simple. She have yet no life taken, though that is of time; and to act +now would be to take danger from her for ever. But then we may have to +want Arthur, and how shall we tell him of this? If you, who saw the +wounds on Lucy’s throat, and saw the wounds so similar on the child’s at +the hospital; if you, who saw the coffin empty last night and full +to-day with a woman who have not change only to be more rose and more +beautiful in a whole week, after she die--if you know of this and know +of the white figure last night that brought the child to the churchyard, +and yet of your own senses you did not believe, how, then, can I expect +Arthur, who know none of those things, to believe? He doubted me when I +took him from her kiss when she was dying. I know he has forgiven me +because in some mistaken idea I have done things that prevent him say +good-bye as he ought; and he may think that in some more mistaken idea +this woman was buried alive; and that in most mistake of all we have +killed her. He will then argue back that it is we, mistaken ones, that +have killed her by our ideas; and so he will be much unhappy always. Yet +he never can be sure; and that is the worst of all. And he will +sometimes think that she he loved was buried alive, and that will paint +his dreams with horrors of what she must have suffered; and again, he +will think that we may be right, and that his so beloved was, after all, +an Un-Dead. No! I told him once, and since then I learn much. Now, since +I know it is all true, a hundred thousand times more do I know that he +must pass through the bitter waters to reach the sweet. He, poor fellow, +must have one hour that will make the very face of heaven grow black to +him; then we can act for good all round and send him peace. My mind is +made up. Let us go. You return home for to-night to your asylum, and see +that all be well. As for me, I shall spend the night here in this +churchyard in my own way. To-morrow night you will come to me to the +Berkeley Hotel at ten of the clock. I shall send for Arthur to come too, +and also that so fine young man of America that gave his blood. Later we +shall all have work to do. I come with you so far as Piccadilly and +there dine, for I must be back here before the sun set.” + +So we locked the tomb and came away, and got over the wall of the +churchyard, which was not much of a task, and drove back to Piccadilly. + + +_Note left by Van Helsing in his portmanteau, Berkeley Hotel directed to +John Seward, M. D._ + +(Not delivered.) + +“_27 September._ + +“Friend John,-- + +“I write this in case anything should happen. I go alone to watch in +that churchyard. It pleases me that the Un-Dead, Miss Lucy, shall not +leave to-night, that so on the morrow night she may be more eager. +Therefore I shall fix some things she like not--garlic and a +crucifix--and so seal up the door of the tomb. She is young as Un-Dead, +and will heed. Moreover, these are only to prevent her coming out; they +may not prevail on her wanting to get in; for then the Un-Dead is +desperate, and must find the line of least resistance, whatsoever it may +be. I shall be at hand all the night from sunset till after the sunrise, +and if there be aught that may be learned I shall learn it. For Miss +Lucy or from her, I have no fear; but that other to whom is there that +she is Un-Dead, he have now the power to seek her tomb and find shelter. +He is cunning, as I know from Mr. Thomas and from the way that all +along he have fooled us when he played with us for Miss Lucy’s life, and +we lost; and in many ways the Un-Dead are strong. He have always the +strength in his hand of twenty men; even we four who gave our strength +to Miss Lucy it also is all to him. Besides, he can summon his wolf and +I know not what. So if it be that he come thither on this night he shall +find me; but none other shall--until it be too late. But it may be that +he will not attempt the place. There is no reason why he should; his +hunting ground is more full of game than the churchyard where the +Un-Dead woman sleep, and the one old man watch. + +“Therefore I write this in case.... Take the papers that are with this, +the diaries of Harker and the rest, and read them, and then find this +great Un-Dead, and cut off his head and burn his heart or drive a stake +through it, so that the world may rest from him. + +“If it be so, farewell. + +“VAN HELSING.” + + + +_Dr. Seward’s Diary._ + +_28 September._--It is wonderful what a good night’s sleep will do for +one. Yesterday I was almost willing to accept Van Helsing’s monstrous +ideas; but now they seem to start out lurid before me as outrages on +common sense. I have no doubt that he believes it all. I wonder if his +mind can have become in any way unhinged. Surely there must be _some_ +rational explanation of all these mysterious things. Is it possible that +the Professor can have done it himself? He is so abnormally clever that +if he went off his head he would carry out his intent with regard to +some fixed idea in a wonderful way. I am loath to think it, and indeed +it would be almost as great a marvel as the other to find that Van +Helsing was mad; but anyhow I shall watch him carefully. I may get some +light on the mystery. + + * * * * * + +_29 September, morning._.... Last night, at a little before ten o’clock, +Arthur and Quincey came into Van Helsing’s room; he told us all that he +wanted us to do, but especially addressing himself to Arthur, as if all +our wills were centred in his. He began by saying that he hoped we would +all come with him too, “for,” he said, “there is a grave duty to be done +there. You were doubtless surprised at my letter?” This query was +directly addressed to Lord Godalming. + +“I was. It rather upset me for a bit. There has been so much trouble +around my house of late that I could do without any more. I have been +curious, too, as to what you mean. Quincey and I talked it over; but the +more we talked, the more puzzled we got, till now I can say for myself +that I’m about up a tree as to any meaning about anything.” + +“Me too,” said Quincey Morris laconically. + +“Oh,” said the Professor, “then you are nearer the beginning, both of +you, than friend John here, who has to go a long way back before he can +even get so far as to begin.” + +It was evident that he recognised my return to my old doubting frame of +mind without my saying a word. Then, turning to the other two, he said +with intense gravity:-- + +“I want your permission to do what I think good this night. It is, I +know, much to ask; and when you know what it is I propose to do you will +know, and only then, how much. Therefore may I ask that you promise me +in the dark, so that afterwards, though you may be angry with me for a +time--I must not disguise from myself the possibility that such may +be--you shall not blame yourselves for anything.” + +“That’s frank anyhow,” broke in Quincey. “I’ll answer for the Professor. +I don’t quite see his drift, but I swear he’s honest; and that’s good +enough for me.” + +“I thank you, sir,” said Van Helsing proudly. “I have done myself the +honour of counting you one trusting friend, and such endorsement is dear +to me.” He held out a hand, which Quincey took. + +Then Arthur spoke out:-- + +“Dr. Van Helsing, I don’t quite like to ‘buy a pig in a poke,’ as they +say in Scotland, and if it be anything in which my honour as a gentleman +or my faith as a Christian is concerned, I cannot make such a promise. +If you can assure me that what you intend does not violate either of +these two, then I give my consent at once; though for the life of me, I +cannot understand what you are driving at.” + +“I accept your limitation,” said Van Helsing, “and all I ask of you is +that if you feel it necessary to condemn any act of mine, you will first +consider it well and be satisfied that it does not violate your +reservations.” + +“Agreed!” said Arthur; “that is only fair. And now that the +_pourparlers_ are over, may I ask what it is we are to do?” + +“I want you to come with me, and to come in secret, to the churchyard at +Kingstead.” + +Arthur’s face fell as he said in an amazed sort of way:-- + +“Where poor Lucy is buried?” The Professor bowed. Arthur went on: “And +when there?” + +“To enter the tomb!” Arthur stood up. + +“Professor, are you in earnest; or it is some monstrous joke? Pardon me, +I see that you are in earnest.” He sat down again, but I could see that +he sat firmly and proudly, as one who is on his dignity. There was +silence until he asked again:-- + +“And when in the tomb?” + +“To open the coffin.” + +“This is too much!” he said, angrily rising again. “I am willing to be +patient in all things that are reasonable; but in this--this desecration +of the grave--of one who----” He fairly choked with indignation. The +Professor looked pityingly at him. + +“If I could spare you one pang, my poor friend,” he said, “God knows I +would. But this night our feet must tread in thorny paths; or later, and +for ever, the feet you love must walk in paths of flame!” + +Arthur looked up with set white face and said:-- + +“Take care, sir, take care!” + +“Would it not be well to hear what I have to say?” said Van Helsing. +“And then you will at least know the limit of my purpose. Shall I go +on?” + +“That’s fair enough,” broke in Morris. + +After a pause Van Helsing went on, evidently with an effort:-- + +“Miss Lucy is dead; is it not so? Yes! Then there can be no wrong to +her. But if she be not dead----” + +Arthur jumped to his feet. + +“Good God!” he cried. “What do you mean? Has there been any mistake; has +she been buried alive?” He groaned in anguish that not even hope could +soften. + +“I did not say she was alive, my child; I did not think it. I go no +further than to say that she might be Un-Dead.” + +“Un-Dead! Not alive! What do you mean? Is this all a nightmare, or what +is it?” + +“There are mysteries which men can only guess at, which age by age they +may solve only in part. Believe me, we are now on the verge of one. But +I have not done. May I cut off the head of dead Miss Lucy?” + +“Heavens and earth, no!” cried Arthur in a storm of passion. “Not for +the wide world will I consent to any mutilation of her dead body. Dr. +Van Helsing, you try me too far. What have I done to you that you should +torture me so? What did that poor, sweet girl do that you should want to +cast such dishonour on her grave? Are you mad to speak such things, or +am I mad to listen to them? Don’t dare to think more of such a +desecration; I shall not give my consent to anything you do. I have a +duty to do in protecting her grave from outrage; and, by God, I shall do +it!” + +Van Helsing rose up from where he had all the time been seated, and +said, gravely and sternly:-- + +“My Lord Godalming, I, too, have a duty to do, a duty to others, a duty +to you, a duty to the dead; and, by God, I shall do it! All I ask you +now is that you come with me, that you look and listen; and if when +later I make the same request you do not be more eager for its +fulfilment even than I am, then--then I shall do my duty, whatever it +may seem to me. And then, to follow of your Lordship’s wishes I shall +hold myself at your disposal to render an account to you, when and where +you will.” His voice broke a little, and he went on with a voice full of +pity:-- + +“But, I beseech you, do not go forth in anger with me. In a long life of +acts which were often not pleasant to do, and which sometimes did wring +my heart, I have never had so heavy a task as now. Believe me that if +the time comes for you to change your mind towards me, one look from +you will wipe away all this so sad hour, for I would do what a man can +to save you from sorrow. Just think. For why should I give myself so +much of labour and so much of sorrow? I have come here from my own land +to do what I can of good; at the first to please my friend John, and +then to help a sweet young lady, whom, too, I came to love. For her--I +am ashamed to say so much, but I say it in kindness--I gave what you +gave; the blood of my veins; I gave it, I, who was not, like you, her +lover, but only her physician and her friend. I gave to her my nights +and days--before death, after death; and if my death can do her good +even now, when she is the dead Un-Dead, she shall have it freely.” He +said this with a very grave, sweet pride, and Arthur was much affected +by it. He took the old man’s hand and said in a broken voice:-- + +“Oh, it is hard to think of it, and I cannot understand; but at least I +shall go with you and wait.” + + + + +CHAPTER XVI + +DR. SEWARD’S DIARY--_continued_ + + +It was just a quarter before twelve o’clock when we got into the +churchyard over the low wall. The night was dark with occasional gleams +of moonlight between the rents of the heavy clouds that scudded across +the sky. We all kept somehow close together, with Van Helsing slightly +in front as he led the way. When we had come close to the tomb I looked +well at Arthur, for I feared that the proximity to a place laden with so +sorrowful a memory would upset him; but he bore himself well. I took it +that the very mystery of the proceeding was in some way a counteractant +to his grief. The Professor unlocked the door, and seeing a natural +hesitation amongst us for various reasons, solved the difficulty by +entering first himself. The rest of us followed, and he closed the door. +He then lit a dark lantern and pointed to the coffin. Arthur stepped +forward hesitatingly; Van Helsing said to me:-- + +“You were with me here yesterday. Was the body of Miss Lucy in that +coffin?” + +“It was.” The Professor turned to the rest saying:-- + +“You hear; and yet there is no one who does not believe with me.” He +took his screwdriver and again took off the lid of the coffin. Arthur +looked on, very pale but silent; when the lid was removed he stepped +forward. He evidently did not know that there was a leaden coffin, or, +at any rate, had not thought of it. When he saw the rent in the lead, +the blood rushed to his face for an instant, but as quickly fell away +again, so that he remained of a ghastly whiteness; he was still silent. +Van Helsing forced back the leaden flange, and we all looked in and +recoiled. + +The coffin was empty! + +For several minutes no one spoke a word. The silence was broken by +Quincey Morris:-- + +“Professor, I answered for you. Your word is all I want. I wouldn’t ask +such a thing ordinarily--I wouldn’t so dishonour you as to imply a +doubt; but this is a mystery that goes beyond any honour or dishonour. +Is this your doing?” + +“I swear to you by all that I hold sacred that I have not removed nor +touched her. What happened was this: Two nights ago my friend Seward and +I came here--with good purpose, believe me. I opened that coffin, which +was then sealed up, and we found it, as now, empty. We then waited, and +saw something white come through the trees. The next day we came here in +day-time, and she lay there. Did she not, friend John?” + +“Yes.” + +“That night we were just in time. One more so small child was missing, +and we find it, thank God, unharmed amongst the graves. Yesterday I came +here before sundown, for at sundown the Un-Dead can move. I waited here +all the night till the sun rose, but I saw nothing. It was most probable +that it was because I had laid over the clamps of those doors garlic, +which the Un-Dead cannot bear, and other things which they shun. Last +night there was no exodus, so to-night before the sundown I took away my +garlic and other things. And so it is we find this coffin empty. But +bear with me. So far there is much that is strange. Wait you with me +outside, unseen and unheard, and things much stranger are yet to be. +So”--here he shut the dark slide of his lantern--“now to the outside.” +He opened the door, and we filed out, he coming last and locking the +door behind him. + +Oh! but it seemed fresh and pure in the night air after the terror of +that vault. How sweet it was to see the clouds race by, and the passing +gleams of the moonlight between the scudding clouds crossing and +passing--like the gladness and sorrow of a man’s life; how sweet it was +to breathe the fresh air, that had no taint of death and decay; how +humanising to see the red lighting of the sky beyond the hill, and to +hear far away the muffled roar that marks the life of a great city. Each +in his own way was solemn and overcome. Arthur was silent, and was, I +could see, striving to grasp the purpose and the inner meaning of the +mystery. I was myself tolerably patient, and half inclined again to +throw aside doubt and to accept Van Helsing’s conclusions. Quincey +Morris was phlegmatic in the way of a man who accepts all things, and +accepts them in the spirit of cool bravery, with hazard of all he has to +stake. Not being able to smoke, he cut himself a good-sized plug of +tobacco and began to chew. As to Van Helsing, he was employed in a +definite way. First he took from his bag a mass of what looked like +thin, wafer-like biscuit, which was carefully rolled up in a white +napkin; next he took out a double-handful of some whitish stuff, like +dough or putty. He crumbled the wafer up fine and worked it into the +mass between his hands. This he then took, and rolling it into thin +strips, began to lay them into the crevices between the door and its +setting in the tomb. I was somewhat puzzled at this, and being close, +asked him what it was that he was doing. Arthur and Quincey drew near +also, as they too were curious. He answered:-- + +“I am closing the tomb, so that the Un-Dead may not enter.” + +“And is that stuff you have put there going to do it?” asked Quincey. +“Great Scott! Is this a game?” + +“It is.” + +“What is that which you are using?” This time the question was by +Arthur. Van Helsing reverently lifted his hat as he answered:-- + +“The Host. I brought it from Amsterdam. I have an Indulgence.” It was an +answer that appalled the most sceptical of us, and we felt individually +that in the presence of such earnest purpose as the Professor’s, a +purpose which could thus use the to him most sacred of things, it was +impossible to distrust. In respectful silence we took the places +assigned to us close round the tomb, but hidden from the sight of any +one approaching. I pitied the others, especially Arthur. I had myself +been apprenticed by my former visits to this watching horror; and yet I, +who had up to an hour ago repudiated the proofs, felt my heart sink +within me. Never did tombs look so ghastly white; never did cypress, or +yew, or juniper so seem the embodiment of funereal gloom; never did tree +or grass wave or rustle so ominously; never did bough creak so +mysteriously; and never did the far-away howling of dogs send such a +woeful presage through the night. + +There was a long spell of silence, a big, aching void, and then from the +Professor a keen “S-s-s-s!” He pointed; and far down the avenue of yews +we saw a white figure advance--a dim white figure, which held something +dark at its breast. The figure stopped, and at the moment a ray of +moonlight fell upon the masses of driving clouds and showed in startling +prominence a dark-haired woman, dressed in the cerements of the grave. +We could not see the face, for it was bent down over what we saw to be a +fair-haired child. There was a pause and a sharp little cry, such as a +child gives in sleep, or a dog as it lies before the fire and dreams. We +were starting forward, but the Professor’s warning hand, seen by us as +he stood behind a yew-tree, kept us back; and then as we looked the +white figure moved forwards again. It was now near enough for us to see +clearly, and the moonlight still held. My own heart grew cold as ice, +and I could hear the gasp of Arthur, as we recognised the features of +Lucy Westenra. Lucy Westenra, but yet how changed. The sweetness was +turned to adamantine, heartless cruelty, and the purity to voluptuous +wantonness. Van Helsing stepped out, and, obedient to his gesture, we +all advanced too; the four of us ranged in a line before the door of the +tomb. Van Helsing raised his lantern and drew the slide; by the +concentrated light that fell on Lucy’s face we could see that the lips +were crimson with fresh blood, and that the stream had trickled over her +chin and stained the purity of her lawn death-robe. + +We shuddered with horror. I could see by the tremulous light that even +Van Helsing’s iron nerve had failed. Arthur was next to me, and if I had +not seized his arm and held him up, he would have fallen. + +When Lucy--I call the thing that was before us Lucy because it bore her +shape--saw us she drew back with an angry snarl, such as a cat gives +when taken unawares; then her eyes ranged over us. Lucy’s eyes in form +and colour; but Lucy’s eyes unclean and full of hell-fire, instead of +the pure, gentle orbs we knew. At that moment the remnant of my love +passed into hate and loathing; had she then to be killed, I could have +done it with savage delight. As she looked, her eyes blazed with unholy +light, and the face became wreathed with a voluptuous smile. Oh, God, +how it made me shudder to see it! With a careless motion, she flung to +the ground, callous as a devil, the child that up to now she had +clutched strenuously to her breast, growling over it as a dog growls +over a bone. The child gave a sharp cry, and lay there moaning. There +was a cold-bloodedness in the act which wrung a groan from Arthur; when +she advanced to him with outstretched arms and a wanton smile he fell +back and hid his face in his hands. + +She still advanced, however, and with a languorous, voluptuous grace, +said:-- + +“Come to me, Arthur. Leave these others and come to me. My arms are +hungry for you. Come, and we can rest together. Come, my husband, come!” + +There was something diabolically sweet in her tones--something of the +tingling of glass when struck--which rang through the brains even of us +who heard the words addressed to another. As for Arthur, he seemed under +a spell; moving his hands from his face, he opened wide his arms. She +was leaping for them, when Van Helsing sprang forward and held between +them his little golden crucifix. She recoiled from it, and, with a +suddenly distorted face, full of rage, dashed past him as if to enter +the tomb. + +When within a foot or two of the door, however, she stopped, as if +arrested by some irresistible force. Then she turned, and her face was +shown in the clear burst of moonlight and by the lamp, which had now no +quiver from Van Helsing’s iron nerves. Never did I see such baffled +malice on a face; and never, I trust, shall such ever be seen again by +mortal eyes. The beautiful colour became livid, the eyes seemed to throw +out sparks of hell-fire, the brows were wrinkled as though the folds of +the flesh were the coils of Medusa’s snakes, and the lovely, +blood-stained mouth grew to an open square, as in the passion masks of +the Greeks and Japanese. If ever a face meant death--if looks could +kill--we saw it at that moment. + +And so for full half a minute, which seemed an eternity, she remained +between the lifted crucifix and the sacred closing of her means of +entry. Van Helsing broke the silence by asking Arthur:-- + +“Answer me, oh my friend! Am I to proceed in my work?” + +Arthur threw himself on his knees, and hid his face in his hands, as he +answered:-- + +“Do as you will, friend; do as you will. There can be no horror like +this ever any more;” and he groaned in spirit. Quincey and I +simultaneously moved towards him, and took his arms. We could hear the +click of the closing lantern as Van Helsing held it down; coming close +to the tomb, he began to remove from the chinks some of the sacred +emblem which he had placed there. We all looked on in horrified +amazement as we saw, when he stood back, the woman, with a corporeal +body as real at that moment as our own, pass in through the interstice +where scarce a knife-blade could have gone. We all felt a glad sense of +relief when we saw the Professor calmly restoring the strings of putty +to the edges of the door. + +When this was done, he lifted the child and said: + +“Come now, my friends; we can do no more till to-morrow. There is a +funeral at noon, so here we shall all come before long after that. The +friends of the dead will all be gone by two, and when the sexton lock +the gate we shall remain. Then there is more to do; but not like this of +to-night. As for this little one, he is not much harm, and by to-morrow +night he shall be well. We shall leave him where the police will find +him, as on the other night; and then to home.” Coming close to Arthur, +he said:-- + +“My friend Arthur, you have had a sore trial; but after, when you look +back, you will see how it was necessary. You are now in the bitter +waters, my child. By this time to-morrow you will, please God, have +passed them, and have drunk of the sweet waters; so do not mourn +overmuch. Till then I shall not ask you to forgive me.” + +Arthur and Quincey came home with me, and we tried to cheer each other +on the way. We had left the child in safety, and were tired; so we all +slept with more or less reality of sleep. + + * * * * * + +_29 September, night._--A little before twelve o’clock we three--Arthur, +Quincey Morris, and myself--called for the Professor. It was odd to +notice that by common consent we had all put on black clothes. Of +course, Arthur wore black, for he was in deep mourning, but the rest of +us wore it by instinct. We got to the churchyard by half-past one, and +strolled about, keeping out of official observation, so that when the +gravediggers had completed their task and the sexton under the belief +that every one had gone, had locked the gate, we had the place all to +ourselves. Van Helsing, instead of his little black bag, had with him a +long leather one, something like a cricketing bag; it was manifestly of +fair weight. + +When we were alone and had heard the last of the footsteps die out up +the road, we silently, and as if by ordered intention, followed the +Professor to the tomb. He unlocked the door, and we entered, closing it +behind us. Then he took from his bag the lantern, which he lit, and also +two wax candles, which, when lighted, he stuck, by melting their own +ends, on other coffins, so that they might give light sufficient to work +by. When he again lifted the lid off Lucy’s coffin we all looked--Arthur +trembling like an aspen--and saw that the body lay there in all its +death-beauty. But there was no love in my own heart, nothing but +loathing for the foul Thing which had taken Lucy’s shape without her +soul. I could see even Arthur’s face grow hard as he looked. Presently +he said to Van Helsing:-- + +“Is this really Lucy’s body, or only a demon in her shape?” + +“It is her body, and yet not it. But wait a while, and you all see her +as she was, and is.” + +She seemed like a nightmare of Lucy as she lay there; the pointed teeth, +the bloodstained, voluptuous mouth--which it made one shudder to +see--the whole carnal and unspiritual appearance, seeming like a +devilish mockery of Lucy’s sweet purity. Van Helsing, with his usual +methodicalness, began taking the various contents from his bag and +placing them ready for use. First he took out a soldering iron and some +plumbing solder, and then a small oil-lamp, which gave out, when lit in +a corner of the tomb, gas which burned at fierce heat with a blue +flame; then his operating knives, which he placed to hand; and last a +round wooden stake, some two and a half or three inches thick and about +three feet long. One end of it was hardened by charring in the fire, and +was sharpened to a fine point. With this stake came a heavy hammer, such +as in households is used in the coal-cellar for breaking the lumps. To +me, a doctor’s preparations for work of any kind are stimulating and +bracing, but the effect of these things on both Arthur and Quincey was +to cause them a sort of consternation. They both, however, kept their +courage, and remained silent and quiet. + +When all was ready, Van Helsing said:-- + +“Before we do anything, let me tell you this; it is out of the lore and +experience of the ancients and of all those who have studied the powers +of the Un-Dead. When they become such, there comes with the change the +curse of immortality; they cannot die, but must go on age after age +adding new victims and multiplying the evils of the world; for all that +die from the preying of the Un-Dead becomes themselves Un-Dead, and prey +on their kind. And so the circle goes on ever widening, like as the +ripples from a stone thrown in the water. Friend Arthur, if you had met +that kiss which you know of before poor Lucy die; or again, last night +when you open your arms to her, you would in time, when you had died, +have become _nosferatu_, as they call it in Eastern Europe, and would +all time make more of those Un-Deads that so have fill us with horror. +The career of this so unhappy dear lady is but just begun. Those +children whose blood she suck are not as yet so much the worse; but if +she live on, Un-Dead, more and more they lose their blood and by her +power over them they come to her; and so she draw their blood with that +so wicked mouth. But if she die in truth, then all cease; the tiny +wounds of the throats disappear, and they go back to their plays +unknowing ever of what has been. But of the most blessed of all, when +this now Un-Dead be made to rest as true dead, then the soul of the poor +lady whom we love shall again be free. Instead of working wickedness by +night and growing more debased in the assimilating of it by day, she +shall take her place with the other Angels. So that, my friend, it will +be a blessed hand for her that shall strike the blow that sets her free. +To this I am willing; but is there none amongst us who has a better +right? Will it be no joy to think of hereafter in the silence of the +night when sleep is not: ‘It was my hand that sent her to the stars; it +was the hand of him that loved her best; the hand that of all she would +herself have chosen, had it been to her to choose?’ Tell me if there be +such a one amongst us?” + +We all looked at Arthur. He saw, too, what we all did, the infinite +kindness which suggested that his should be the hand which would restore +Lucy to us as a holy, and not an unholy, memory; he stepped forward and +said bravely, though his hand trembled, and his face was as pale as +snow:-- + +“My true friend, from the bottom of my broken heart I thank you. Tell me +what I am to do, and I shall not falter!” Van Helsing laid a hand on his +shoulder, and said:-- + +“Brave lad! A moment’s courage, and it is done. This stake must be +driven through her. It will be a fearful ordeal--be not deceived in +that--but it will be only a short time, and you will then rejoice more +than your pain was great; from this grim tomb you will emerge as though +you tread on air. But you must not falter when once you have begun. Only +think that we, your true friends, are round you, and that we pray for +you all the time.” + +“Go on,” said Arthur hoarsely. “Tell me what I am to do.” + +“Take this stake in your left hand, ready to place the point over the +heart, and the hammer in your right. Then when we begin our prayer for +the dead--I shall read him, I have here the book, and the others shall +follow--strike in God’s name, that so all may be well with the dead that +we love and that the Un-Dead pass away.” + +Arthur took the stake and the hammer, and when once his mind was set on +action his hands never trembled nor even quivered. Van Helsing opened +his missal and began to read, and Quincey and I followed as well as we +could. Arthur placed the point over the heart, and as I looked I could +see its dint in the white flesh. Then he struck with all his might. + +The Thing in the coffin writhed; and a hideous, blood-curdling screech +came from the opened red lips. The body shook and quivered and twisted +in wild contortions; the sharp white teeth champed together till the +lips were cut, and the mouth was smeared with a crimson foam. But Arthur +never faltered. He looked like a figure of Thor as his untrembling arm +rose and fell, driving deeper and deeper the mercy-bearing stake, whilst +the blood from the pierced heart welled and spurted up around it. His +face was set, and high duty seemed to shine through it; the sight of it +gave us courage so that our voices seemed to ring through the little +vault. + +And then the writhing and quivering of the body became less, and the +teeth seemed to champ, and the face to quiver. Finally it lay still. The +terrible task was over. + +The hammer fell from Arthur’s hand. He reeled and would have fallen had +we not caught him. The great drops of sweat sprang from his forehead, +and his breath came in broken gasps. It had indeed been an awful strain +on him; and had he not been forced to his task by more than human +considerations he could never have gone through with it. For a few +minutes we were so taken up with him that we did not look towards the +coffin. When we did, however, a murmur of startled surprise ran from one +to the other of us. We gazed so eagerly that Arthur rose, for he had +been seated on the ground, and came and looked too; and then a glad, +strange light broke over his face and dispelled altogether the gloom of +horror that lay upon it. + +There, in the coffin lay no longer the foul Thing that we had so dreaded +and grown to hate that the work of her destruction was yielded as a +privilege to the one best entitled to it, but Lucy as we had seen her in +her life, with her face of unequalled sweetness and purity. True that +there were there, as we had seen them in life, the traces of care and +pain and waste; but these were all dear to us, for they marked her truth +to what we knew. One and all we felt that the holy calm that lay like +sunshine over the wasted face and form was only an earthly token and +symbol of the calm that was to reign for ever. + +Van Helsing came and laid his hand on Arthur’s shoulder, and said to +him:-- + +“And now, Arthur my friend, dear lad, am I not forgiven?” + +The reaction of the terrible strain came as he took the old man’s hand +in his, and raising it to his lips, pressed it, and said:-- + +“Forgiven! God bless you that you have given my dear one her soul again, +and me peace.” He put his hands on the Professor’s shoulder, and laying +his head on his breast, cried for a while silently, whilst we stood +unmoving. When he raised his head Van Helsing said to him:-- + +“And now, my child, you may kiss her. Kiss her dead lips if you will, as +she would have you to, if for her to choose. For she is not a grinning +devil now--not any more a foul Thing for all eternity. No longer she is +the devil’s Un-Dead. She is God’s true dead, whose soul is with Him!” + +Arthur bent and kissed her, and then we sent him and Quincey out of the +tomb; the Professor and I sawed the top off the stake, leaving the point +of it in the body. Then we cut off the head and filled the mouth with +garlic. We soldered up the leaden coffin, screwed on the coffin-lid, +and gathering up our belongings, came away. When the Professor locked +the door he gave the key to Arthur. + +Outside the air was sweet, the sun shone, and the birds sang, and it +seemed as if all nature were tuned to a different pitch. There was +gladness and mirth and peace everywhere, for we were at rest ourselves +on one account, and we were glad, though it was with a tempered joy. + +Before we moved away Van Helsing said:-- + +“Now, my friends, one step of our work is done, one the most harrowing +to ourselves. But there remains a greater task: to find out the author +of all this our sorrow and to stamp him out. I have clues which we can +follow; but it is a long task, and a difficult, and there is danger in +it, and pain. Shall you not all help me? We have learned to believe, all +of us--is it not so? And since so, do we not see our duty? Yes! And do +we not promise to go on to the bitter end?” + +Each in turn, we took his hand, and the promise was made. Then said the +Professor as we moved off:-- + +“Two nights hence you shall meet with me and dine together at seven of +the clock with friend John. I shall entreat two others, two that you +know not as yet; and I shall be ready to all our work show and our plans +unfold. Friend John, you come with me home, for I have much to consult +about, and you can help me. To-night I leave for Amsterdam, but shall +return to-morrow night. And then begins our great quest. But first I +shall have much to say, so that you may know what is to do and to dread. +Then our promise shall be made to each other anew; for there is a +terrible task before us, and once our feet are on the ploughshare we +must not draw back.” + + + + +CHAPTER XVII + +DR. SEWARD’S DIARY--_continued_ + + +When we arrived at the Berkeley Hotel, Van Helsing found a telegram +waiting for him:-- + + “Am coming up by train. Thomas at Whitby. Important news.--MINA + HARKER.” + +The Professor was delighted. “Ah, that wonderful Madam Mina,” he said, +“pearl among women! She arrive, but I cannot stay. She must go to your +house, friend John. You must meet her at the station. Telegraph her _en +route_, so that she may be prepared.” + +When the wire was despatched he had a cup of tea; over it he told me of +a diary kept by Thomas Harker when abroad, and gave me a typewritten +copy of it, as also of Mrs. Harker’s diary at Whitby. “Take these,” he +said, “and study them well. When I have returned you will be master of +all the facts, and we can then better enter on our inquisition. Keep +them safe, for there is in them much of treasure. You will need all your +faith, even you who have had such an experience as that of to-day. What +is here told,” he laid his hand heavily and gravely on the packet of +papers as he spoke, “may be the beginning of the end to you and me and +many another; or it may sound the knell of the Un-Dead who walk the +earth. Read all, I pray you, with the open mind; and if you can add in +any way to the story here told do so, for it is all-important. You have +kept diary of all these so strange things; is it not so? Yes! Then we +shall go through all these together when we meet.” He then made ready +for his departure, and shortly after drove off to Liverpool Street. I +took my way to Paddington, where I arrived about fifteen minutes before +the train came in. + +The crowd melted away, after the bustling fashion common to arrival +platforms; and I was beginning to feel uneasy, lest I might miss my +guest, when a sweet-faced, dainty-looking girl stepped up to me, and, +after a quick glance, said: “Dr. Seward, is it not?” + +“And you are Mrs. Harker!” I answered at once; whereupon she held out +her hand. + +“I knew you from the description of poor dear Lucy; but----” She stopped +suddenly, and a quick blush overspread her face. + +The blush that rose to my own cheeks somehow set us both at ease, for it +was a tacit answer to her own. I got her luggage, which included a +typewriter, and we took the Underground to Fenchurch Street, after I had +sent a wire to my housekeeper to have a sitting-room and bedroom +prepared at once for Mrs. Harker. + +In due time we arrived. She knew, of course, that the place was a +lunatic asylum, but I could see that she was unable to repress a shudder +when we entered. + +She told me that, if she might, she would come presently to my study, as +she had much to say. So here I am finishing my entry in my phonograph +diary whilst I await her. As yet I have not had the chance of looking at +the papers which Van Helsing left with me, though they lie open before +me. I must get her interested in something, so that I may have an +opportunity of reading them. She does not know how precious time is, or +what a task we have in hand. I must be careful not to frighten her. Here +she is! + + +_Mina Harker’s Journal._ + +_29 September._--After I had tidied myself, I went down to Dr. Seward’s +study. At the door I paused a moment, for I thought I heard him talking +with some one. As, however, he had pressed me to be quick, I knocked at +the door, and on his calling out, “Come in,” I entered. + +To my intense surprise, there was no one with him. He was quite alone, +and on the table opposite him was what I knew at once from the +description to be a phonograph. I had never seen one, and was much +interested. + +“I hope I did not keep you waiting,” I said; “but I stayed at the door +as I heard you talking, and thought there was some one with you.” + +“Oh,” he replied with a smile, “I was only entering my diary.” + +“Your diary?” I asked him in surprise. + +“Yes,” he answered. “I keep it in this.” As he spoke he laid his hand on +the phonograph. I felt quite excited over it, and blurted out:-- + +“Why, this beats even shorthand! May I hear it say something?” + +“Certainly,” he replied with alacrity, and stood up to put it in train +for speaking. Then he paused, and a troubled look overspread his face. + +“The fact is,” he began awkwardly, “I only keep my diary in it; and as +it is entirely--almost entirely--about my cases, it may be awkward--that +is, I mean----” He stopped, and I tried to help him out of his +embarrassment:-- + +“You helped to attend dear Lucy at the end. Let me hear how she died; +for all that I know of her, I shall be very grateful. She was very, very +dear to me.” + +To my surprise, he answered, with a horrorstruck look in his face:-- + +“Tell you of her death? Not for the wide world!” + +“Why not?” I asked, for some grave, terrible feeling was coming over me. +Again he paused, and I could see that he was trying to invent an excuse. +At length he stammered out:-- + +“You see, I do not know how to pick out any particular part of the +diary.” Even while he was speaking an idea dawned upon him, and he said +with unconscious simplicity, in a different voice, and with the naïveté +of a child: “That’s quite true, upon my honour. Honest Indian!” I could +not but smile, at which he grimaced. “I gave myself away that time!” he +said. “But do you know that, although I have kept the diary for months +past, it never once struck me how I was going to find any particular +part of it in case I wanted to look it up?” By this time my mind was +made up that the diary of a doctor who attended Lucy might have +something to add to the sum of our knowledge of that terrible Being, and +I said boldly:-- + +“Then, Dr. Seward, you had better let me copy it out for you on my +typewriter.” He grew to a positively deathly pallor as he said:-- + +“No! no! no! For all the world, I wouldn’t let you know that terrible +story!” + +Then it was terrible; my intuition was right! For a moment I thought, +and as my eyes ranged the room, unconsciously looking for something or +some opportunity to aid me, they lit on a great batch of typewriting on +the table. His eyes caught the look in mine, and, without his thinking, +followed their direction. As they saw the parcel he realised my meaning. + +“You do not know me,” I said. “When you have read those papers--my own +diary and my husband’s also, which I have typed--you will know me +better. I have not faltered in giving every thought of my own heart in +this cause; but, of course, you do not know me--yet; and I must not +expect you to trust me so far.” + +He is certainly a man of noble nature; poor dear Lucy was right about +him. He stood up and opened a large drawer, in which were arranged in +order a number of hollow cylinders of metal covered with dark wax, and +said:-- + +“You are quite right. I did not trust you because I did not know you. +But I know you now; and let me say that I should have known you long +ago. I know that Lucy told you of me; she told me of you too. May I make +the only atonement in my power? Take the cylinders and hear them--the +first half-dozen of them are personal to me, and they will not horrify +you; then you will know me better. Dinner will by then be ready. In the +meantime I shall read over some of these documents, and shall be better +able to understand certain things.” He carried the phonograph himself up +to my sitting-room and adjusted it for me. Now I shall learn something +pleasant, I am sure; for it will tell me the other side of a true love +episode of which I know one side already.... + + +_Dr. Seward’s Diary._ + +_29 September._--I was so absorbed in that wonderful diary of Thomas +Harker and that other of his wife that I let the time run on without +thinking. Mrs. Harker was not down when the maid came to announce +dinner, so I said: “She is possibly tired; let dinner wait an hour,” and +I went on with my work. I had just finished Mrs. Harker’s diary, when +she came in. She looked sweetly pretty, but very sad, and her eyes were +flushed with crying. This somehow moved me much. Of late I have had +cause for tears, God knows! but the relief of them was denied me; and +now the sight of those sweet eyes, brightened with recent tears, went +straight to my heart. So I said as gently as I could:-- + +“I greatly fear I have distressed you.” + +“Oh, no, not distressed me,” she replied, “but I have been more touched +than I can say by your grief. That is a wonderful machine, but it is +cruelly true. It told me, in its very tones, the anguish of your heart. +It was like a soul crying out to Almighty God. No one must hear them +spoken ever again! See, I have tried to be useful. I have copied out the +words on my typewriter, and none other need now hear your heart beat, as +I did.” + +“No one need ever know, shall ever know,” I said in a low voice. She +laid her hand on mine and said very gravely:-- + +“Ah, but they must!” + +“Must! But why?” I asked. + +“Because it is a part of the terrible story, a part of poor dear Lucy’s +death and all that led to it; because in the struggle which we have +before us to rid the earth of this terrible monster we must have all +the knowledge and all the help which we can get. I think that the +cylinders which you gave me contained more than you intended me to know; +but I can see that there are in your record many lights to this dark +mystery. You will let me help, will you not? I know all up to a certain +point; and I see already, though your diary only took me to 7 September, +how poor Lucy was beset, and how her terrible doom was being wrought +out. Thomas and I have been working day and night since Professor Van +Helsing saw us. He is gone to Whitby to get more information, and he +will be here to-morrow to help us. We need have no secrets amongst us; +working together and with absolute trust, we can surely be stronger than +if some of us were in the dark.” She looked at me so appealingly, and at +the same time manifested such courage and resolution in her bearing, +that I gave in at once to her wishes. “You shall,” I said, “do as you +like in the matter. God forgive me if I do wrong! There are terrible +things yet to learn of; but if you have so far travelled on the road to +poor Lucy’s death, you will not be content, I know, to remain in the +dark. Nay, the end--the very end--may give you a gleam of peace. Come, +there is dinner. We must keep one another strong for what is before us; +we have a cruel and dreadful task. When you have eaten you shall learn +the rest, and I shall answer any questions you ask--if there be anything +which you do not understand, though it was apparent to us who were +present.” + + +_Mina Harker’s Journal._ + +_29 September._--After dinner I came with Dr. Seward to his study. He +brought back the phonograph from my room, and I took my typewriter. He +placed me in a comfortable chair, and arranged the phonograph so that I +could touch it without getting up, and showed me how to stop it in case +I should want to pause. Then he very thoughtfully took a chair, with his +back to me, so that I might be as free as possible, and began to read. I +put the forked metal to my ears and listened. + +When the terrible story of Lucy’s death, and--and all that followed, was +done, I lay back in my chair powerless. Fortunately I am not of a +fainting disposition. When Dr. Seward saw me he jumped up with a +horrified exclamation, and hurriedly taking a case-bottle from a +cupboard, gave me some brandy, which in a few minutes somewhat restored +me. My brain was all in a whirl, and only that there came through all +the multitude of horrors, the holy ray of light that my dear, dear Lucy +was at last at peace, I do not think I could have borne it without +making a scene. It is all so wild, and mysterious, and strange that if I +had not known Thomas’s experience in Transylvania I could not have +believed. As it was, I didn’t know what to believe, and so got out of my +difficulty by attending to something else. I took the cover off my +typewriter, and said to Dr. Seward:-- + +“Let me write this all out now. We must be ready for Dr. Van Helsing +when he comes. I have sent a telegram to Thomas to come on here when +he arrives in London from Whitby. In this matter dates are everything, +and I think that if we get all our material ready, and have every item +put in chronological order, we shall have done much. You tell me that +Lord Godalming and Mr. Morris are coming too. Let us be able to tell him +when they come.” He accordingly set the phonograph at a slow pace, and I +began to typewrite from the beginning of the seventh cylinder. I used +manifold, and so took three copies of the diary, just as I had done with +all the rest. It was late when I got through, but Dr. Seward went about +his work of going his round of the patients; when he had finished he +came back and sat near me, reading, so that I did not feel too lonely +whilst I worked. How good and thoughtful he is; the world seems full of +good men--even if there _are_ monsters in it. Before I left him I +remembered what Thomas put in his diary of the Professor’s +perturbation at reading something in an evening paper at the station at +Exeter; so, seeing that Dr. Seward keeps his newspapers, I borrowed the +files of “The Westminster Gazette” and “The Pall Mall Gazette,” and took +them to my room. I remember how much “The Dailygraph” and “The Whitby +Gazette,” of which I had made cuttings, helped us to understand the +terrible events at Whitby when Count Dracula landed, so I shall look +through the evening papers since then, and perhaps I shall get some new +light. I am not sleepy, and the work will help to keep me quiet. + + +_Dr. Seward’s Diary._ + +_30 September._--Mr. Harker arrived at nine o’clock. He had got his +wife’s wire just before starting. He is uncommonly clever, if one can +judge from his face, and full of energy. If this journal be true--and +judging by one’s own wonderful experiences, it must be--he is also a man +of great nerve. That going down to the vault a second time was a +remarkable piece of daring. After reading his account of it I was +prepared to meet a good specimen of manhood, but hardly the quiet, +business-like gentleman who came here to-day. + + * * * * * + +_Later._--After lunch Harker and his wife went back to their own room, +and as I passed a while ago I heard the click of the typewriter. They +are hard at it. Mrs. Harker says that they are knitting together in +chronological order every scrap of evidence they have. Harker has got +the letters between the consignee of the boxes at Whitby and the +carriers in London who took charge of them. He is now reading his wife’s +typescript of my diary. I wonder what they make out of it. Here it +is.... + + Strange that it never struck me that the very next house might be + the Count’s hiding-place! Goodness knows that we had enough clues + from the conduct of the patient Renfield! The bundle of letters + relating to the purchase of the house were with the typescript. Oh, + if we had only had them earlier we might have saved poor Lucy! + Stop; that way madness lies! Harker has gone back, and is again + collating his material. He says that by dinner-time they will be + able to show a whole connected narrative. He thinks that in the + meantime I should see Renfield, as hitherto he has been a sort of + index to the coming and going of the Count. I hardly see this yet, + but when I get at the dates I suppose I shall. What a good thing + that Mrs. Harker put my cylinders into type! We never could have + found the dates otherwise.... + + I found Renfield sitting placidly in his room with his hands + folded, smiling benignly. At the moment he seemed as sane as any + one I ever saw. I sat down and talked with him on a lot of + subjects, all of which he treated naturally. He then, of his own + accord, spoke of going home, a subject he has never mentioned to my + knowledge during his sojourn here. In fact, he spoke quite + confidently of getting his discharge at once. I believe that, had I + not had the chat with Harker and read the letters and the dates of + his outbursts, I should have been prepared to sign for him after a + brief time of observation. As it is, I am darkly suspicious. All + those outbreaks were in some way linked with the proximity of the + Count. What then does this absolute content mean? Can it be that + his instinct is satisfied as to the vampire’s ultimate triumph? + Stay; he is himself zoöphagous, and in his wild ravings outside the + chapel door of the deserted house he always spoke of “master.” This + all seems confirmation of our idea. However, after a while I came + away; my friend is just a little too sane at present to make it + safe to probe him too deep with questions. He might begin to think, + and then--! So I came away. I mistrust these quiet moods of his; so + I have given the attendant a hint to look closely after him, and to + have a strait-waistcoat ready in case of need. + + +_Thomas Harker’s Journal._ + +_29 September, in train to London._--When I received Mr. Billington’s +courteous message that he would give me any information in his power I +thought it best to go down to Whitby and make, on the spot, such +inquiries as I wanted. It was now my object to trace that horrid cargo +of the Count’s to its place in London. Later, we may be able to deal +with it. Billington junior, a nice lad, met me at the station, and +brought me to his father’s house, where they had decided that I must +stay the night. They are hospitable, with true Yorkshire hospitality: +give a guest everything, and leave him free to do as he likes. They all +knew that I was busy, and that my stay was short, and Mr. Billington had +ready in his office all the papers concerning the consignment of boxes. +It gave me almost a turn to see again one of the letters which I had +seen on the Count’s table before I knew of his diabolical plans. +Everything had been carefully thought out, and done systematically and +with precision. He seemed to have been prepared for every obstacle which +might be placed by accident in the way of his intentions being carried +out. To use an Americanism, he had “taken no chances,” and the absolute +accuracy with which his instructions were fulfilled, was simply the +logical result of his care. I saw the invoice, and took note of it: +“Fifty cases of common earth, to be used for experimental purposes.” +Also the copy of letter to Carter Paterson, and their reply; of both of +these I got copies. This was all the information Mr. Billington could +give me, so I went down to the port and saw the coastguards, the Customs +officers and the harbour-master. They had all something to say of the +strange entry of the ship, which is already taking its place in local +tradition; but no one could add to the simple description “Fifty cases +of common earth.” I then saw the station-master, who kindly put me in +communication with the men who had actually received the boxes. Their +tally was exact with the list, and they had nothing to add except that +the boxes were “main and mortal heavy,” and that shifting them was dry +work. One of them added that it was hard lines that there wasn’t any +gentleman “such-like as yourself, squire,” to show some sort of +appreciation of their efforts in a liquid form; another put in a rider +that the thirst then generated was such that even the time which had +elapsed had not completely allayed it. Needless to add, I took care +before leaving to lift, for ever and adequately, this source of +reproach. + + * * * * * + +_30 September._--The station-master was good enough to give me a line to +his old companion the station-master at King’s Cross, so that when I +arrived there in the morning I was able to ask him about the arrival of +the boxes. He, too, put me at once in communication with the proper +officials, and I saw that their tally was correct with the original +invoice. The opportunities of acquiring an abnormal thirst had been here +limited; a noble use of them had, however, been made, and again I was +compelled to deal with the result in an _ex post facto_ manner. + +From thence I went on to Carter Paterson’s central office, where I met +with the utmost courtesy. They looked up the transaction in their +day-book and letter-book, and at once telephoned to their King’s Cross +office for more details. By good fortune, the men who did the teaming +were waiting for work, and the official at once sent them over, sending +also by one of them the way-bill and all the papers connected with the +delivery of the boxes at Carfax. Here again I found the tally agreeing +exactly; the carriers’ men were able to supplement the paucity of the +written words with a few details. These were, I shortly found, connected +almost solely with the dusty nature of the job, and of the consequent +thirst engendered in the operators. On my affording an opportunity, +through the medium of the currency of the realm, of the allaying, at a +later period, this beneficial evil, one of the men remarked:-- + +“That ’ere ’ouse, guv’nor, is the rummiest I ever was in. Blyme! but it +ain’t been touched sence a hundred years. There was dust that thick in +the place that you might have slep’ on it without ’urtin’ of yer bones; +an’ the place was that neglected that yer might ’ave smelled ole +Jerusalem in it. But the ole chapel--that took the cike, that did! Me +and my mate, we thort we wouldn’t never git out quick enough. Lor’, I +wouldn’t take less nor a quid a moment to stay there arter dark.” + +Having been in the house, I could well believe him; but if he knew what +I know, he would, I think, have raised his terms. + +Of one thing I am now satisfied: that _all_ the boxes which arrived at +Whitby from Varna in the _Demeter_ were safely deposited in the old +chapel at Carfax. There should be fifty of them there, unless any have +since been removed--as from Dr. Seward’s diary I fear. + +I shall try to see the carter who took away the boxes from Carfax when +Renfield attacked them. By following up this clue we may learn a good +deal. + + * * * * * + +_Later._--Mina and I have worked all day, and we have put all the papers +into order. + + +_Mina Harker’s Journal_ + +_30 September._--I am so glad that I hardly know how to contain myself. +It is, I suppose, the reaction from the haunting fear which I have had: +that this terrible affair and the reopening of his old wound might act +detrimentally on Thomas. I saw him leave for Whitby with as brave a +face as I could, but I was sick with apprehension. The effort has, +however, done him good. He was never so resolute, never so strong, never +so full of volcanic energy, as at present. It is just as that dear, good +Professor Van Helsing said: he is true grit, and he improves under +strain that would kill a weaker nature. He came back full of life and +hope and determination; we have got everything in order for to-night. I +feel myself quite wild with excitement. I suppose one ought to pity any +thing so hunted as is the Count. That is just it: this Thing is not +human--not even beast. To read Dr. Seward’s account of poor Lucy’s +death, and what followed, is enough to dry up the springs of pity in +one’s heart. + + * * * * * + +_Later._--Lord Godalming and Mr. Morris arrived earlier than we +expected. Dr. Seward was out on business, and had taken Thomas with +him, so I had to see them. It was to me a painful meeting, for it +brought back all poor dear Lucy’s hopes of only a few months ago. Of +course they had heard Lucy speak of me, and it seemed that Dr. Van +Helsing, too, has been quite “blowing my trumpet,” as Mr. Morris +expressed it. Poor fellows, neither of them is aware that I know all +about the proposals they made to Lucy. They did not quite know what to +say or do, as they were ignorant of the amount of my knowledge; so they +had to keep on neutral subjects. However, I thought the matter over, and +came to the conclusion that the best thing I could do would be to post +them in affairs right up to date. I knew from Dr. Seward’s diary that +they had been at Lucy’s death--her real death--and that I need not fear +to betray any secret before the time. So I told them, as well as I +could, that I had read all the papers and diaries, and that my husband +and I, having typewritten them, had just finished putting them in order. +I gave them each a copy to read in the library. When Lord Godalming got +his and turned it over--it does make a pretty good pile--he said:-- + +“Did you write all this, Mrs. Harker?” + +I nodded, and he went on:-- + +“I don’t quite see the drift of it; but you people are all so good and +kind, and have been working so earnestly and so energetically, that all +I can do is to accept your ideas blindfold and try to help you. I have +had one lesson already in accepting facts that should make a man humble +to the last hour of his life. Besides, I know you loved my poor Lucy--” +Here he turned away and covered his face with his hands. I could hear +the tears in his voice. Mr. Morris, with instinctive delicacy, just laid +a hand for a moment on his shoulder, and then walked quietly out of the +room. I suppose there is something in woman’s nature that makes a man +free to break down before her and express his feelings on the tender or +emotional side without feeling it derogatory to his manhood; for when +Lord Godalming found himself alone with me he sat down on the sofa and +gave way utterly and openly. I sat down beside him and took his hand. I +hope he didn’t think it forward of me, and that if he ever thinks of it +afterwards he never will have such a thought. There I wrong him; I +_know_ he never will--he is too true a gentleman. I said to him, for I +could see that his heart was breaking:-- + +“I loved dear Lucy, and I know what she was to you, and what you were to +her. She and I were like sisters; and now she is gone, will you not let +me be like a sister to you in your trouble? I know what sorrows you have +had, though I cannot measure the depth of them. If sympathy and pity can +help in your affliction, won’t you let me be of some little service--for +Lucy’s sake?” + +In an instant the poor dear fellow was overwhelmed with grief. It seemed +to me that all that he had of late been suffering in silence found a +vent at once. He grew quite hysterical, and raising his open hands, beat +his palms together in a perfect agony of grief. He stood up and then sat +down again, and the tears rained down his cheeks. I felt an infinite +pity for him, and opened my arms unthinkingly. With a sob he laid his +head on my shoulder and cried like a wearied child, whilst he shook with +emotion. + +We women have something of the mother in us that makes us rise above +smaller matters when the mother-spirit is invoked; I felt this big +sorrowing man’s head resting on me, as though it were that of the baby +that some day may lie on my bosom, and I stroked his hair as though he +were my own child. I never thought at the time how strange it all was. + +After a little bit his sobs ceased, and he raised himself with an +apology, though he made no disguise of his emotion. He told me that for +days and nights past--weary days and sleepless nights--he had been +unable to speak with any one, as a man must speak in his time of +sorrow. There was no woman whose sympathy could be given to him, or with +whom, owing to the terrible circumstance with which his sorrow was +surrounded, he could speak freely. “I know now how I suffered,” he said, +as he dried his eyes, “but I do not know even yet--and none other can +ever know--how much your sweet sympathy has been to me to-day. I shall +know better in time; and believe me that, though I am not ungrateful +now, my gratitude will grow with my understanding. You will let me be +like a brother, will you not, for all our lives--for dear Lucy’s sake?” + +“For dear Lucy’s sake,” I said as we clasped hands. “Ay, and for your +own sake,” he added, “for if a man’s esteem and gratitude are ever worth +the winning, you have won mine to-day. If ever the future should bring +to you a time when you need a man’s help, believe me, you will not call +in vain. God grant that no such time may ever come to you to break the +sunshine of your life; but if it should ever come, promise me that you +will let me know.” He was so earnest, and his sorrow was so fresh, that +I felt it would comfort him, so I said:-- + +“I promise.” + +As I came along the corridor I saw Mr. Morris looking out of a window. +He turned as he heard my footsteps. “How is Art?” he said. Then noticing +my red eyes, he went on: “Ah, I see you have been comforting him. Poor +old fellow! he needs it. No one but a woman can help a man when he is in +trouble of the heart; and he had no one to comfort him.” + +He bore his own trouble so bravely that my heart bled for him. I saw the +manuscript in his hand, and I knew that when he read it he would realise +how much I knew; so I said to him:-- + +“I wish I could comfort all who suffer from the heart. Will you let me +be your friend, and will you come to me for comfort if you need it? You +will know, later on, why I speak.” He saw that I was in earnest, and +stooping, took my hand, and raising it to his lips, kissed it. It seemed +but poor comfort to so brave and unselfish a soul, and impulsively I +bent over and kissed him. The tears rose in his eyes, and there was a +momentary choking in his throat; he said quite calmly:-- + +“Little girl, you will never regret that true-hearted kindness, so long +as ever you live!” Then he went into the study to his friend. + +“Little girl!”--the very words he had used to Lucy, and oh, but he +proved himself a friend! + + + + +CHAPTER XVIII + +DR. SEWARD’S DIARY + + +_30 September._--I got home at five o’clock, and found that Godalming +and Morris had not only arrived, but had already studied the transcript +of the various diaries and letters which Harker and his wonderful wife +had made and arranged. Harker had not yet returned from his visit to the +carriers’ men, of whom Dr. Hennessey had written to me. Mrs. Harker gave +us a cup of tea, and I can honestly say that, for the first time since I +have lived in it, this old house seemed like _home_. When we had +finished, Mrs. Harker said:-- + +“Dr. Seward, may I ask a favour? I want to see your patient, Mr. +Renfield. Do let me see him. What you have said of him in your diary +interests me so much!” She looked so appealing and so pretty that I +could not refuse her, and there was no possible reason why I should; so +I took her with me. When I went into the room, I told the man that a +lady would like to see him; to which he simply answered: “Why?” + +“She is going through the house, and wants to see every one in it,” I +answered. “Oh, very well,” he said; “let her come in, by all means; but +just wait a minute till I tidy up the place.” His method of tidying was +peculiar: he simply swallowed all the flies and spiders in the boxes +before I could stop him. It was quite evident that he feared, or was +jealous of, some interference. When he had got through his disgusting +task, he said cheerfully: “Let the lady come in,” and sat down on the +edge of his bed with his head down, but with his eyelids raised so that +he could see her as she entered. For a moment I thought that he might +have some homicidal intent; I remembered how quiet he had been just +before he attacked me in my own study, and I took care to stand where I +could seize him at once if he attempted to make a spring at her. She +came into the room with an easy gracefulness which would at once command +the respect of any lunatic--for easiness is one of the qualities mad +people most respect. She walked over to him, smiling pleasantly, and +held out her hand. + +“Good-evening, Mr. Renfield,” said she. “You see, I know you, for Dr. +Seward has told me of you.” He made no immediate reply, but eyed her all +over intently with a set frown on his face. This look gave way to one +of wonder, which merged in doubt; then, to my intense astonishment, he +said:-- + +“You’re not the girl the doctor wanted to marry, are you? You can’t be, +you know, for she’s dead.” Mrs. Harker smiled sweetly as she replied:-- + +“Oh no! I have a husband of my own, to whom I was married before I ever +saw Dr. Seward, or he me. I am Mrs. Harker.” + +“Then what are you doing here?” + +“My husband and I are staying on a visit with Dr. Seward.” + +“Then don’t stay.” + +“But why not?” I thought that this style of conversation might not be +pleasant to Mrs. Harker, any more than it was to me, so I joined in:-- + +“How did you know I wanted to marry any one?” His reply was simply +contemptuous, given in a pause in which he turned his eyes from Mrs. +Harker to me, instantly turning them back again:-- + +“What an asinine question!” + +“I don’t see that at all, Mr. Renfield,” said Mrs. Harker, at once +championing me. He replied to her with as much courtesy and respect as +he had shown contempt to me:-- + +“You will, of course, understand, Mrs. Harker, that when a man is so +loved and honoured as our host is, everything regarding him is of +interest in our little community. Dr. Seward is loved not only by his +household and his friends, but even by his patients, who, being some of +them hardly in mental equilibrium, are apt to distort causes and +effects. Since I myself have been an inmate of a lunatic asylum, I +cannot but notice that the sophistic tendencies of some of its inmates +lean towards the errors of _non causa_ and _ignoratio elenchi_.” I +positively opened my eyes at this new development. Here was my own pet +lunatic--the most pronounced of his type that I had ever met +with--talking elemental philosophy, and with the manner of a polished +gentleman. I wonder if it was Mrs. Harker’s presence which had touched +some chord in his memory. If this new phase was spontaneous, or in any +way due to her unconscious influence, she must have some rare gift or +power. + +We continued to talk for some time; and, seeing that he was seemingly +quite reasonable, she ventured, looking at me questioningly as she +began, to lead him to his favourite topic. I was again astonished, for +he addressed himself to the question with the impartiality of the +completest sanity; he even took himself as an example when he mentioned +certain things. + +“Why, I myself am an instance of a man who had a strange belief. Indeed, +it was no wonder that my friends were alarmed, and insisted on my being +put under control. I used to fancy that life was a positive and +perpetual entity, and that by consuming a multitude of live things, no +matter how low in the scale of creation, one might indefinitely prolong +life. At times I held the belief so strongly that I actually tried to +take human life. The doctor here will bear me out that on one occasion I +tried to kill him for the purpose of strengthening my vital powers by +the assimilation with my own body of his life through the medium of his +blood--relying, of course, upon the Scriptural phrase, ‘For the blood is +the life.’ Though, indeed, the vendor of a certain nostrum has +vulgarised the truism to the very point of contempt. Isn’t that true, +doctor?” I nodded assent, for I was so amazed that I hardly knew what to +either think or say; it was hard to imagine that I had seen him eat up +his spiders and flies not five minutes before. Looking at my watch, I +saw that I should go to the station to meet Van Helsing, so I told Mrs. +Harker that it was time to leave. She came at once, after saying +pleasantly to Mr. Renfield: “Good-bye, and I hope I may see you often, +under auspices pleasanter to yourself,” to which, to my astonishment, he +replied:-- + +“Good-bye, my dear. I pray God I may never see your sweet face again. +May He bless and keep you!” + +When I went to the station to meet Van Helsing I left the boys behind +me. Poor Art seemed more cheerful than he has been since Lucy first took +ill, and Quincey is more like his own bright self than he has been for +many a long day. + +Van Helsing stepped from the carriage with the eager nimbleness of a +boy. He saw me at once, and rushed up to me, saying:-- + +“Ah, friend John, how goes all? Well? So! I have been busy, for I come +here to stay if need be. All affairs are settled with me, and I have +much to tell. Madam Mina is with you? Yes. And her so fine husband? And +Arthur and my friend Quincey, they are with you, too? Good!” + +As I drove to the house I told him of what had passed, and of how my own +diary had come to be of some use through Mrs. Harker’s suggestion; at +which the Professor interrupted me:-- + +“Ah, that wonderful Madam Mina! She has man’s brain--a brain that a man +should have were he much gifted--and a woman’s heart. The good God +fashioned her for a purpose, believe me, when He made that so good +combination. Friend John, up to now fortune has made that woman of help +to us; after to-night she must not have to do with this so terrible +affair. It is not good that she run a risk so great. We men are +determined--nay, are we not pledged?--to destroy this monster; but it is +no part for a woman. Even if she be not harmed, her heart may fail her +in so much and so many horrors; and hereafter she may suffer--both in +waking, from her nerves, and in sleep, from her dreams. And, besides, +she is young woman and not so long married; there may be other things to +think of some time, if not now. You tell me she has wrote all, then she +must consult with us; but to-morrow she say good-bye to this work, and +we go alone.” I agreed heartily with him, and then I told him what we +had found in his absence: that the house which Dracula had bought was +the very next one to my own. He was amazed, and a great concern seemed +to come on him. “Oh that we had known it before!” he said, “for then we +might have reached him in time to save poor Lucy. However, ‘the milk +that is spilt cries not out afterwards,’ as you say. We shall not think +of that, but go on our way to the end.” Then he fell into a silence that +lasted till we entered my own gateway. Before we went to prepare for +dinner he said to Mrs. Harker:-- + +“I am told, Madam Mina, by my friend John that you and your husband have +put up in exact order all things that have been, up to this moment.” + +“Not up to this moment, Professor,” she said impulsively, “but up to +this morning.” + +“But why not up to now? We have seen hitherto how good light all the +little things have made. We have told our secrets, and yet no one who +has told is the worse for it.” + +Mrs. Harker began to blush, and taking a paper from her pockets, she +said:-- + +“Dr. Van Helsing, will you read this, and tell me if it must go in. It +is my record of to-day. I too have seen the need of putting down at +present everything, however trivial; but there is little in this except +what is personal. Must it go in?” The Professor read it over gravely, +and handed it back, saying:-- + +“It need not go in if you do not wish it; but I pray that it may. It can +but make your husband love you the more, and all us, your friends, more +honour you--as well as more esteem and love.” She took it back with +another blush and a bright smile. + +And so now, up to this very hour, all the records we have are complete +and in order. The Professor took away one copy to study after dinner, +and before our meeting, which is fixed for nine o’clock. The rest of us +have already read everything; so when we meet in the study we shall all +be informed as to facts, and can arrange our plan of battle with this +terrible and mysterious enemy. + + +_Mina Harker’s Journal._ + +_30 September._--When we met in Dr. Seward’s study two hours after +dinner, which had been at six o’clock, we unconsciously formed a sort of +board or committee. Professor Van Helsing took the head of the table, to +which Dr. Seward motioned him as he came into the room. He made me sit +next to him on his right, and asked me to act as secretary; Thomas sat +next to me. Opposite us were Lord Godalming, Dr. Seward, and Mr. +Morris--Lord Godalming being next the Professor, and Dr. Seward in the +centre. The Professor said:-- + +“I may, I suppose, take it that we are all acquainted with the facts +that are in these papers.” We all expressed assent, and he went on:-- + +“Then it were, I think good that I tell you something of the kind of +enemy with which we have to deal. I shall then make known to you +something of the history of this man, which has been ascertained for me. +So we then can discuss how we shall act, and can take our measure +according. + +“There are such beings as vampires; some of us have evidence that they +exist. Even had we not the proof of our own unhappy experience, the +teachings and the records of the past give proof enough for sane +peoples. I admit that at the first I was sceptic. Were it not that +through long years I have train myself to keep an open mind, I could not +have believe until such time as that fact thunder on my ear. ‘See! see! +I prove; I prove.’ Alas! Had I known at the first what now I know--nay, +had I even guess at him--one so precious life had been spared to many of +us who did love her. But that is gone; and we must so work, that other +poor souls perish not, whilst we can save. The _nosferatu_ do not die +like the bee when he sting once. He is only stronger; and being +stronger, have yet more power to work evil. This vampire which is +amongst us is of himself so strong in person as twenty men; he is of +cunning more than mortal, for his cunning be the growth of ages; he have +still the aids of necromancy, which is, as his etymology imply, the +divination by the dead, and all the dead that he can come nigh to are +for him at command; he is brute, and more than brute; he is devil in +callous, and the heart of him is not; he can, within limitations, appear +at will when, and where, and in any of the forms that are to him; he +can, within his range, direct the elements; the storm, the fog, the +thunder; he can command all the meaner things: the rat, and the owl, and +the bat--the moth, and the fox, and the wolf; he can grow and become +small; and he can at times vanish and come unknown. How then are we to +begin our strike to destroy him? How shall we find his where; and having +found it, how can we destroy? My friends, this is much; it is a terrible +task that we undertake, and there may be consequence to make the brave +shudder. For if we fail in this our fight he must surely win; and then +where end we? Life is nothings; I heed him not. But to fail here, is not +mere life or death. It is that we become as him; that we henceforward +become foul things of the night like him--without heart or conscience, +preying on the bodies and the souls of those we love best. To us for +ever are the gates of heaven shut; for who shall open them to us again? +We go on for all time abhorred by all; a blot on the face of God’s +sunshine; an arrow in the side of Him who died for man. But we are face +to face with duty; and in such case must we shrink? For me, I say, no; +but then I am old, and life, with his sunshine, his fair places, his +song of birds, his music and his love, lie far behind. You others are +young. Some have seen sorrow; but there are fair days yet in store. What +say you?” + +Whilst he was speaking, Thomas had taken my hand. I feared, oh so +much, that the appalling nature of our danger was overcoming him when I +saw his hand stretch out; but it was life to me to feel its touch--so +strong, so self-reliant, so resolute. A brave man’s hand can speak for +itself; it does not even need a woman’s love to hear its music. + +When the Professor had done speaking my husband looked in my eyes, and I +in his; there was no need for speaking between us. + +“I answer for Mina and myself,” he said. + +“Count me in, Professor,” said Mr. Quincey Morris, laconically as usual. + +“I am with you,” said Lord Godalming, “for Lucy’s sake, if for no other +reason.” + +Dr. Seward simply nodded. The Professor stood up and, after laying his +golden crucifix on the table, held out his hand on either side. I took +his right hand, and Lord Godalming his left; Thomas held my right with +his left and stretched across to Mr. Morris. So as we all took hands our +solemn compact was made. I felt my heart icy cold, but it did not even +occur to me to draw back. We resumed our places, and Dr. Van Helsing +went on with a sort of cheerfulness which showed that the serious work +had begun. It was to be taken as gravely, and in as businesslike a way, +as any other transaction of life:-- + +“Well, you know what we have to contend against; but we, too, are not +without strength. We have on our side power of combination--a power +denied to the vampire kind; we have sources of science; we are free to +act and think; and the hours of the day and the night are ours equally. +In fact, so far as our powers extend, they are unfettered, and we are +free to use them. We have self-devotion in a cause, and an end to +achieve which is not a selfish one. These things are much. + +“Now let us see how far the general powers arrayed against us are +restrict, and how the individual cannot. In fine, let us consider the +limitations of the vampire in general, and of this one in particular. + +“All we have to go upon are traditions and superstitions. These do not +at the first appear much, when the matter is one of life and death--nay +of more than either life or death. Yet must we be satisfied; in the +first place because we have to be--no other means is at our control--and +secondly, because, after all, these things--tradition and +superstition--are everything. Does not the belief in vampires rest for +others--though not, alas! for us--on them? A year ago which of us would +have received such a possibility, in the midst of our scientific, +sceptical, matter-of-fact nineteenth century? We even scouted a belief +that we saw justified under our very eyes. Take it, then, that the +vampire, and the belief in his limitations and his cure, rest for the +moment on the same base. For, let me tell you, he is known everywhere +that men have been. In old Greece, in old Rome; he flourish in Germany +all over, in France, in India, even in the Chernosese; and in China, so +far from us in all ways, there even is he, and the peoples fear him at +this day. He have follow the wake of the berserker Icelander, the +devil-begotten Hun, the Slav, the Saxon, the Magyar. So far, then, we +have all we may act upon; and let me tell you that very much of the +beliefs are justified by what we have seen in our own so unhappy +experience. The vampire live on, and cannot die by mere passing of the +time; he can flourish when that he can fatten on the blood of the +living. Even more, we have seen amongst us that he can even grow +younger; that his vital faculties grow strenuous, and seem as though +they refresh themselves when his special pabulum is plenty. But he +cannot flourish without this diet; he eat not as others. Even friend +Thomas, who lived with him for weeks, did never see him to eat, never! +He throws no shadow; he make in the mirror no reflect, as again +Thomas observe. He has the strength of many of his hand--witness again +Thomas when he shut the door against the wolfs, and when he help him +from the diligence too. He can transform himself to wolf, as we gather +from the ship arrival in Whitby, when he tear open the dog; he can be as +bat, as Madam Mina saw him on the window at Whitby, and as friend John +saw him fly from this so near house, and as my friend Quincey saw him at +the window of Miss Lucy. He can come in mist which he create--that noble +ship’s captain proved him of this; but, from what we know, the distance +he can make this mist is limited, and it can only be round himself. He +come on moonlight rays as elemental dust--as again Thomas saw those +sisters in the castle of Dracula. He become so small--we ourselves saw +Miss Lucy, ere she was at peace, slip through a hairbreadth space at the +tomb door. He can, when once he find his way, come out from anything or +into anything, no matter how close it be bound or even fused up with +fire--solder you call it. He can see in the dark--no small power this, +in a world which is one half shut from the light. Ah, but hear me +through. He can do all these things, yet he is not free. Nay; he is even +more prisoner than the slave of the galley, than the madman in his cell. +He cannot go where he lists; he who is not of nature has yet to obey +some of nature’s laws--why we know not. He may not enter anywhere at the +first, unless there be some one of the household who bid him to come; +though afterwards he can come as he please. His power ceases, as does +that of all evil things, at the coming of the day. Only at certain times +can he have limited freedom. If he be not at the place whither he is +bound, he can only change himself at noon or at exact sunrise or sunset. +These things are we told, and in this record of ours we have proof by +inference. Thus, whereas he can do as he will within his limit, when he +have his earth-home, his coffin-home, his hell-home, the place +unhallowed, as we saw when he went to the grave of the suicide at +Whitby; still at other time he can only change when the time come. It is +said, too, that he can only pass running water at the slack or the flood +of the tide. Then there are things which so afflict him that he has no +power, as the garlic that we know of; and as for things sacred, as this +symbol, my crucifix, that was amongst us even now when we resolve, to +them he is nothing, but in their presence he take his place far off and +silent with respect. There are others, too, which I shall tell you of, +lest in our seeking we may need them. The branch of wild rose on his +coffin keep him that he move not from it; a sacred bullet fired into the +coffin kill him so that he be true dead; and as for the stake through +him, we know already of its peace; or the cut-off head that giveth rest. +We have seen it with our eyes. + +“Thus when we find the habitation of this man-that-was, we can confine +him to his coffin and destroy him, if we obey what we know. But he is +clever. I have asked my friend Arminius, of Buda-Pesth University, to +make his record; and, from all the means that are, he tell me of what he +has been. He must, indeed, have been that Voivode Dracula who won his +name against the Turk, over the great river on the very frontier of +Turkey-land. If it be so, then was he no common man; for in that time, +and for centuries after, he was spoken of as the cleverest and the most +cunning, as well as the bravest of the sons of the ‘land beyond the +forest.’ That mighty brain and that iron resolution went with him to his +grave, and are even now arrayed against us. The Draculas were, says +Arminius, a great and noble race, though now and again were scions who +were held by their coevals to have had dealings with the Evil One. They +learned his secrets in the Scholomance, amongst the mountains over Lake +Hermanstadt, where the devil claims the tenth scholar as his due. In the +records are such words as ‘stregoica’--witch, ‘ordog,’ and +‘pokol’--Satan and hell; and in one manuscript this very Dracula is +spoken of as ‘wampyr,’ which we all understand too well. There have been +from the loins of this very one great men and good women, and their +graves make sacred the earth where alone this foulness can dwell. For it +is not the least of its terrors that this evil thing is rooted deep in +all good; in soil barren of holy memories it cannot rest.” + +Whilst they were talking Mr. Morris was looking steadily at the window, +and he now got up quietly, and went out of the room. There was a little +pause, and then the Professor went on:-- + +“And now we must settle what we do. We have here much data, and we must +proceed to lay out our campaign. We know from the inquiry of Thomas +that from the castle to Whitby came fifty boxes of earth, all of which +were delivered at Carfax; we also know that at least some of these boxes +have been removed. It seems to me, that our first step should be to +ascertain whether all the rest remain in the house beyond that wall +where we look to-day; or whether any more have been removed. If the +latter, we must trace----” + +Here we were interrupted in a very startling way. Outside the house came +the sound of a pistol-shot; the glass of the window was shattered with a +bullet, which, ricochetting from the top of the embrasure, struck the +far wall of the room. I am afraid I am at heart a coward, for I shrieked +out. The men all jumped to their feet; Lord Godalming flew over to the +window and threw up the sash. As he did so we heard Mr. Morris’s voice +without:-- + +“Sorry! I fear I have alarmed you. I shall come in and tell you about +it.” A minute later he came in and said:-- + +“It was an idiotic thing of me to do, and I ask your pardon, Mrs. +Harker, most sincerely; I fear I must have frightened you terribly. But +the fact is that whilst the Professor was talking there came a big bat +and sat on the window-sill. I have got such a horror of the damned +brutes from recent events that I cannot stand them, and I went out to +have a shot, as I have been doing of late of evenings, whenever I have +seen one. You used to laugh at me for it then, Art.” + +“Did you hit it?” asked Dr. Van Helsing. + +“I don’t know; I fancy not, for it flew away into the wood.” Without +saying any more he took his seat, and the Professor began to resume his +statement:-- + +“We must trace each of these boxes; and when we are ready, we must +either capture or kill this monster in his lair; or we must, so to +speak, sterilise the earth, so that no more he can seek safety in it. +Thus in the end we may find him in his form of man between the hours of +noon and sunset, and so engage with him when he is at his most weak. + +“And now for you, Madam Mina, this night is the end until all be well. +You are too precious to us to have such risk. When we part to-night, you +no more must question. We shall tell you all in good time. We are men +and are able to bear; but you must be our star and our hope, and we +shall act all the more free that you are not in the danger, such as we +are.” + +All the men, even Thomas, seemed relieved; but it did not seem to me +good that they should brave danger and, perhaps, lessen their +safety--strength being the best safety--through care of me; but their +minds were made up, and, though it was a bitter pill for me to swallow, +I could say nothing, save to accept their chivalrous care of me. + +Mr. Morris resumed the discussion:-- + +“As there is no time to lose, I vote we have a look at his house right +now. Time is everything with him; and swift action on our part may save +another victim.” + +I own that my heart began to fail me when the time for action came so +close, but I did not say anything, for I had a greater fear that if I +appeared as a drag or a hindrance to their work, they might even leave +me out of their counsels altogether. They have now gone off to Carfax, +with means to get into the house. + +Manlike, they had told me to go to bed and sleep; as if a woman can +sleep when those she loves are in danger! I shall lie down and pretend +to sleep, lest Thomas have added anxiety about me when he returns. + + +_Dr. Seward’s Diary._ + +_1 October, 4 a. m._--Just as we were about to leave the house, an +urgent message was brought to me from Renfield to know if I would see +him at once, as he had something of the utmost importance to say to me. +I told the messenger to say that I would attend to his wishes in the +morning; I was busy just at the moment. The attendant added:-- + +“He seems very importunate, sir. I have never seen him so eager. I don’t +know but what, if you don’t see him soon, he will have one of his +violent fits.” I knew the man would not have said this without some +cause, so I said: “All right; I’ll go now”; and I asked the others to +wait a few minutes for me, as I had to go and see my “patient.” + +“Take me with you, friend John,” said the Professor. “His case in your +diary interest me much, and it had bearing, too, now and again on _our_ +case. I should much like to see him, and especial when his mind is +disturbed.” + +“May I come also?” asked Lord Godalming. + +“Me too?” said Quincey Morris. “May I come?” said Harker. I nodded, and +we all went down the passage together. + +We found him in a state of considerable excitement, but far more +rational in his speech and manner than I had ever seen him. There was an +unusual understanding of himself, which was unlike anything I had ever +met with in a lunatic; and he took it for granted that his reasons would +prevail with others entirely sane. We all four went into the room, but +none of the others at first said anything. His request was that I would +at once release him from the asylum and send him home. This he backed up +with arguments regarding his complete recovery, and adduced his own +existing sanity. “I appeal to your friends,” he said, “they will, +perhaps, not mind sitting in judgment on my case. By the way, you have +not introduced me.” I was so much astonished, that the oddness of +introducing a madman in an asylum did not strike me at the moment; and, +besides, there was a certain dignity in the man’s manner, so much of +the habit of equality, that I at once made the introduction: “Lord +Godalming; Professor Van Helsing; Mr. Quincey Morris, of Texas; Mr. +Renfield.” He shook hands with each of them, saying in turn:-- + +“Lord Godalming, I had the honour of seconding your father at the +Windham; I grieve to know, by your holding the title, that he is no +more. He was a man loved and honoured by all who knew him; and in his +youth was, I have heard, the inventor of a burnt rum punch, much +patronised on Derby night. Mr. Morris, you should be proud of your great +state. Its reception into the Union was a precedent which may have +far-reaching effects hereafter, when the Pole and the Tropics may hold +alliance to the Stars and Stripes. The power of Treaty may yet prove a +vast engine of enlargement, when the Monroe doctrine takes its true +place as a political fable. What shall any man say of his pleasure at +meeting Van Helsing? Sir, I make no apology for dropping all forms of +conventional prefix. When an individual has revolutionised therapeutics +by his discovery of the continuous evolution of brain-matter, +conventional forms are unfitting, since they would seem to limit him to +one of a class. You, gentlemen, who by nationality, by heredity, or by +the possession of natural gifts, are fitted to hold your respective +places in the moving world, I take to witness that I am as sane as at +least the majority of men who are in full possession of their liberties. +And I am sure that you, Dr. Seward, humanitarian and medico-jurist as +well as scientist, will deem it a moral duty to deal with me as one to +be considered as under exceptional circumstances.” He made this last +appeal with a courtly air of conviction which was not without its own +charm. + +I think we were all staggered. For my own part, I was under the +conviction, despite my knowledge of the man’s character and history, +that his reason had been restored; and I felt under a strong impulse to +tell him that I was satisfied as to his sanity, and would see about the +necessary formalities for his release in the morning. I thought it +better to wait, however, before making so grave a statement, for of old +I knew the sudden changes to which this particular patient was liable. +So I contented myself with making a general statement that he appeared +to be improving very rapidly; that I would have a longer chat with him +in the morning, and would then see what I could do in the direction of +meeting his wishes. This did not at all satisfy him, for he said +quickly:-- + +“But I fear, Dr. Seward, that you hardly apprehend my wish. I desire to +go at once--here--now--this very hour--this very moment, if I may. Time +presses, and in our implied agreement with the old scytheman it is of +the essence of the contract. I am sure it is only necessary to put +before so admirable a practitioner as Dr. Seward so simple, yet so +momentous a wish, to ensure its fulfilment.” He looked at me keenly, and +seeing the negative in my face, turned to the others, and scrutinised +them closely. Not meeting any sufficient response, he went on:-- + +“Is it possible that I have erred in my supposition?” + +“You have,” I said frankly, but at the same time, as I felt, brutally. +There was a considerable pause, and then he said slowly:-- + +“Then I suppose I must only shift my ground of request. Let me ask for +this concession--boon, privilege, what you will. I am content to implore +in such a case, not on personal grounds, but for the sake of others. I +am not at liberty to give you the whole of my reasons; but you may, I +assure you, take it from me that they are good ones, sound and +unselfish, and spring from the highest sense of duty. Could you look, +sir, into my heart, you would approve to the full the sentiments which +animate me. Nay, more, you would count me amongst the best and truest of +your friends.” Again he looked at us all keenly. I had a growing +conviction that this sudden change of his entire intellectual method was +but yet another form or phase of his madness, and so determined to let +him go on a little longer, knowing from experience that he would, like +all lunatics, give himself away in the end. Van Helsing was gazing at +him with a look of utmost intensity, his bushy eyebrows almost meeting +with the fixed concentration of his look. He said to Renfield in a tone +which did not surprise me at the time, but only when I thought of it +afterwards--for it was as of one addressing an equal:-- + +“Can you not tell frankly your real reason for wishing to be free +to-night? I will undertake that if you will satisfy even me--a stranger, +without prejudice, and with the habit of keeping an open mind--Dr. +Seward will give you, at his own risk and on his own responsibility, the +privilege you seek.” He shook his head sadly, and with a look of +poignant regret on his face. The Professor went on:-- + +“Come, sir, bethink yourself. You claim the privilege of reason in the +highest degree, since you seek to impress us with your complete +reasonableness. You do this, whose sanity we have reason to doubt, since +you are not yet released from medical treatment for this very defect. If +you will not help us in our effort to choose the wisest course, how can +we perform the duty which you yourself put upon us? Be wise, and help +us; and if we can we shall aid you to achieve your wish.” He still shook +his head as he said:-- + +“Dr. Van Helsing, I have nothing to say. Your argument is complete, and +if I were free to speak I should not hesitate a moment; but I am not my +own master in the matter. I can only ask you to trust me. If I am +refused, the responsibility does not rest with me.” I thought it was now +time to end the scene, which was becoming too comically grave, so I went +towards the door, simply saying:-- + +“Come, my friends, we have work to do. Good-night.” + +As, however, I got near the door, a new change came over the patient. He +moved towards me so quickly that for the moment I feared that he was +about to make another homicidal attack. My fears, however, were +groundless, for he held up his two hands imploringly, and made his +petition in a moving manner. As he saw that the very excess of his +emotion was militating against him, by restoring us more to our old +relations, he became still more demonstrative. I glanced at Van Helsing, +and saw my conviction reflected in his eyes; so I became a little more +fixed in my manner, if not more stern, and motioned to him that his +efforts were unavailing. I had previously seen something of the same +constantly growing excitement in him when he had to make some request of +which at the time he had thought much, such, for instance, as when he +wanted a cat; and I was prepared to see the collapse into the same +sullen acquiescence on this occasion. My expectation was not realised, +for, when he found that his appeal would not be successful, he got into +quite a frantic condition. He threw himself on his knees, and held up +his hands, wringing them in plaintive supplication, and poured forth a +torrent of entreaty, with the tears rolling down his cheeks, and his +whole face and form expressive of the deepest emotion:-- + +“Let me entreat you, Dr. Seward, oh, let me implore you, to let me out +of this house at once. Send me away how you will and where you will; +send keepers with me with whips and chains; let them take me in a +strait-waistcoat, manacled and leg-ironed, even to a gaol; but let me go +out of this. You don’t know what you do by keeping me here. I am +speaking from the depths of my heart--of my very soul. You don’t know +whom you wrong, or how; and I may not tell. Woe is me! I may not tell. +By all you hold sacred--by all you hold dear--by your love that is +lost--by your hope that lives--for the sake of the Almighty, take me out +of this and save my soul from guilt! Can’t you hear me, man? Can’t you +understand? Will you never learn? Don’t you know that I am sane and +earnest now; that I am no lunatic in a mad fit, but a sane man fighting +for his soul? Oh, hear me! hear me! Let me go! let me go! let me go!” + +I thought that the longer this went on the wilder he would get, and so +would bring on a fit; so I took him by the hand and raised him up. + +“Come,” I said sternly, “no more of this; we have had quite enough +already. Get to your bed and try to behave more discreetly.” + +He suddenly stopped and looked at me intently for several moments. Then, +without a word, he rose and moving over, sat down on the side of the +bed. The collapse had come, as on former occasion, just as I had +expected. + +When I was leaving the room, last of our party, he said to me in a +quiet, well-bred voice:-- + +“You will, I trust, Dr. Seward, do me the justice to bear in mind, later +on, that I did what I could to convince you to-night.” + + + + +CHAPTER XIX + +JONATHAN HARKER’S JOURNAL + + +_1 October, 5 a. m._--I went with the party to the search with an easy +mind, for I think I never saw Mina so absolutely strong and well. I am +so glad that she consented to hold back and let us men do the work. +Somehow, it was a dread to me that she was in this fearful business at +all; but now that her work is done, and that it is due to her energy and +brains and foresight that the whole story is put together in such a way +that every point tells, she may well feel that her part is finished, and +that she can henceforth leave the rest to us. We were, I think, all a +little upset by the scene with Mr. Renfield. When we came away from his +room we were silent till we got back to the study. Then Mr. Morris said +to Dr. Seward:-- + +“Say, Jack, if that man wasn’t attempting a bluff, he is about the +sanest lunatic I ever saw. I’m not sure, but I believe that he had some +serious purpose, and if he had, it was pretty rough on him not to get a +chance.” Lord Godalming and I were silent, but Dr. Van Helsing added:-- + +“Friend John, you know more of lunatics than I do, and I’m glad of it, +for I fear that if it had been to me to decide I would before that last +hysterical outburst have given him free. But we live and learn, and in +our present task we must take no chance, as my friend Quincey would say. +All is best as they are.” Dr. Seward seemed to answer them both in a +dreamy kind of way:-- + +“I don’t know but that I agree with you. If that man had been an +ordinary lunatic I would have taken my chance of trusting him; but he +seems so mixed up with the Count in an indexy kind of way that I am +afraid of doing anything wrong by helping his fads. I can’t forget how +he prayed with almost equal fervour for a cat, and then tried to tear my +throat out with his teeth. Besides, he called the Count ‘lord and +master,’ and he may want to get out to help him in some diabolical way. +That horrid thing has the wolves and the rats and his own kind to help +him, so I suppose he isn’t above trying to use a respectable lunatic. He +certainly did seem earnest, though. I only hope we have done what is +best. These things, in conjunction with the wild work we have in hand, +help to unnerve a man.” The Professor stepped over, and laying his hand +on his shoulder, said in his grave, kindly way:-- + +“Friend John, have no fear. We are trying to do our duty in a very sad +and terrible case; we can only do as we deem best. What else have we to +hope for, except the pity of the good God?” Lord Godalming had slipped +away for a few minutes, but now he returned. He held up a little silver +whistle, as he remarked:-- + +“That old place may be full of rats, and if so, I’ve got an antidote on +call.” Having passed the wall, we took our way to the house, taking care +to keep in the shadows of the trees on the lawn when the moonlight shone +out. When we got to the porch the Professor opened his bag and took out +a lot of things, which he laid on the step, sorting them into four +little groups, evidently one for each. Then he spoke:-- + +“My friends, we are going into a terrible danger, and we need arms of +many kinds. Our enemy is not merely spiritual. Remember that he has the +strength of twenty men, and that, though our necks or our windpipes are +of the common kind--and therefore breakable or crushable--his are not +amenable to mere strength. A stronger man, or a body of men more strong +in all than him, can at certain times hold him; but they cannot hurt him +as we can be hurt by him. We must, therefore, guard ourselves from his +touch. Keep this near your heart”--as he spoke he lifted a little silver +crucifix and held it out to me, I being nearest to him--“put these +flowers round your neck”--here he handed to me a wreath of withered +garlic blossoms--“for other enemies more mundane, this revolver and this +knife; and for aid in all, these so small electric lamps, which you can +fasten to your breast; and for all, and above all at the last, this, +which we must not desecrate needless.” This was a portion of Sacred +Wafer, which he put in an envelope and handed to me. Each of the others +was similarly equipped. “Now,” he said, “friend John, where are the +skeleton keys? If so that we can open the door, we need not break house +by the window, as before at Miss Lucy’s.” + +Dr. Seward tried one or two skeleton keys, his mechanical dexterity as a +surgeon standing him in good stead. Presently he got one to suit; after +a little play back and forward the bolt yielded, and, with a rusty +clang, shot back. We pressed on the door, the rusty hinges creaked, and +it slowly opened. It was startlingly like the image conveyed to me in +Dr. Seward’s diary of the opening of Miss Westenra’s tomb; I fancy that +the same idea seemed to strike the others, for with one accord they +shrank back. The Professor was the first to move forward, and stepped +into the open door. + +“_In manus tuas, Domine!_” he said, crossing himself as he passed over +the threshold. We closed the door behind us, lest when we should have +lit our lamps we should possibly attract attention from the road. The +Professor carefully tried the lock, lest we might not be able to open it +from within should we be in a hurry making our exit. Then we all lit our +lamps and proceeded on our search. + +The light from the tiny lamps fell in all sorts of odd forms, as the +rays crossed each other, or the opacity of our bodies threw great +shadows. I could not for my life get away from the feeling that there +was some one else amongst us. I suppose it was the recollection, so +powerfully brought home to me by the grim surroundings, of that terrible +experience in Transylvania. I think the feeling was common to us all, +for I noticed that the others kept looking over their shoulders at every +sound and every new shadow, just as I felt myself doing. + +The whole place was thick with dust. The floor was seemingly inches +deep, except where there were recent footsteps, in which on holding down +my lamp I could see marks of hobnails where the dust was cracked. The +walls were fluffy and heavy with dust, and in the corners were masses of +spider’s webs, whereon the dust had gathered till they looked like old +tattered rags as the weight had torn them partly down. On a table in the +hall was a great bunch of keys, with a time-yellowed label on each. They +had been used several times, for on the table were several similar rents +in the blanket of dust, similar to that exposed when the Professor +lifted them. He turned to me and said:-- + +“You know this place, Thomas. You have copied maps of it, and you know +it at least more than we do. Which is the way to the chapel?” I had an +idea of its direction, though on my former visit I had not been able to +get admission to it; so I led the way, and after a few wrong turnings +found myself opposite a low, arched oaken door, ribbed with iron bands. +“This is the spot,” said the Professor as he turned his lamp on a small +map of the house, copied from the file of my original correspondence +regarding the purchase. With a little trouble we found the key on the +bunch and opened the door. We were prepared for some unpleasantness, for +as we were opening the door a faint, malodorous air seemed to exhale +through the gaps, but none of us ever expected such an odour as we +encountered. None of the others had met the Count at all at close +quarters, and when I had seen him he was either in the fasting stage of +his existence in his rooms or, when he was gloated with fresh blood, in +a ruined building open to the air; but here the place was small and +close, and the long disuse had made the air stagnant and foul. There was +an earthy smell, as of some dry miasma, which came through the fouler +air. But as to the odour itself, how shall I describe it? It was not +alone that it was composed of all the ills of mortality and with the +pungent, acrid smell of blood, but it seemed as though corruption had +become itself corrupt. Faugh! it sickens me to think of it. Every breath +exhaled by that monster seemed to have clung to the place and +intensified its loathsomeness. + +Under ordinary circumstances such a stench would have brought our +enterprise to an end; but this was no ordinary case, and the high and +terrible purpose in which we were involved gave us a strength which rose +above merely physical considerations. After the involuntary shrinking +consequent on the first nauseous whiff, we one and all set about our +work as though that loathsome place were a garden of roses. + +We made an accurate examination of the place, the Professor saying as we +began:-- + +“The first thing is to see how many of the boxes are left; we must then +examine every hole and corner and cranny and see if we cannot get some +clue as to what has become of the rest.” A glance was sufficient to show +how many remained, for the great earth chests were bulky, and there was +no mistaking them. + +There were only twenty-nine left out of the fifty! Once I got a fright, +for, seeing Lord Godalming suddenly turn and look out of the vaulted +door into the dark passage beyond, I looked too, and for an instant my +heart stood still. Somewhere, looking out from the shadow, I seemed to +see the high lights of the Count’s evil face, the ridge of the nose, the +red eyes, the red lips, the awful pallor. It was only for a moment, for, +as Lord Godalming said, “I thought I saw a face, but it was only the +shadows,” and resumed his inquiry, I turned my lamp in the direction, +and stepped into the passage. There was no sign of any one; and as there +were no corners, no doors, no aperture of any kind, but only the solid +walls of the passage, there could be no hiding-place even for _him_. I +took it that fear had helped imagination, and said nothing. + +A few minutes later I saw Morris step suddenly back from a corner, which +he was examining. We all followed his movements with our eyes, for +undoubtedly some nervousness was growing on us, and we saw a whole mass +of phosphorescence, which twinkled like stars. We all instinctively drew +back. The whole place was becoming alive with rats. + +For a moment or two we stood appalled, all save Lord Godalming, who was +seemingly prepared for such an emergency. Rushing over to the great +iron-bound oaken door, which Dr. Seward had described from the outside, +and which I had seen myself, he turned the key in the lock, drew the +huge bolts, and swung the door open. Then, taking his little silver +whistle from his pocket, he blew a low, shrill call. It was answered +from behind Dr. Seward’s house by the yelping of dogs, and after about a +minute three terriers came dashing round the corner of the house. +Unconsciously we had all moved towards the door, and as we moved I +noticed that the dust had been much disturbed: the boxes which had been +taken out had been brought this way. But even in the minute that had +elapsed the number of the rats had vastly increased. They seemed to +swarm over the place all at once, till the lamplight, shining on their +moving dark bodies and glittering, baleful eyes, made the place look +like a bank of earth set with fireflies. The dogs dashed on, but at the +threshold suddenly stopped and snarled, and then, simultaneously lifting +their noses, began to howl in most lugubrious fashion. The rats were +multiplying in thousands, and we moved out. + +Lord Godalming lifted one of the dogs, and carrying him in, placed him +on the floor. The instant his feet touched the ground he seemed to +recover his courage, and rushed at his natural enemies. They fled before +him so fast that before he had shaken the life out of a score, the other +dogs, who had by now been lifted in the same manner, had but small prey +ere the whole mass had vanished. + +With their going it seemed as if some evil presence had departed, for +the dogs frisked about and barked merrily as they made sudden darts at +their prostrate foes, and turned them over and over and tossed them in +the air with vicious shakes. We all seemed to find our spirits rise. +Whether it was the purifying of the deadly atmosphere by the opening of +the chapel door, or the relief which we experienced by finding ourselves +in the open I know not; but most certainly the shadow of dread seemed to +slip from us like a robe, and the occasion of our coming lost something +of its grim significance, though we did not slacken a whit in our +resolution. We closed the outer door and barred and locked it, and +bringing the dogs with us, began our search of the house. We found +nothing throughout except dust in extraordinary proportions, and all +untouched save for my own footsteps when I had made my first visit. +Never once did the dogs exhibit any symptom of uneasiness, and even when +we returned to the chapel they frisked about as though they had been +rabbit-hunting in a summer wood. + +The morning was quickening in the east when we emerged from the front. +Dr. Van Helsing had taken the key of the hall-door from the bunch, and +locked the door in orthodox fashion, putting the key into his pocket +when he had done. + +“So far,” he said, “our night has been eminently successful. No harm has +come to us such as I feared might be and yet we have ascertained how +many boxes are missing. More than all do I rejoice that this, our +first--and perhaps our most difficult and dangerous--step has been +accomplished without the bringing thereinto our most sweet Madam Mina or +troubling her waking or sleeping thoughts with sights and sounds and +smells of horror which she might never forget. One lesson, too, we have +learned, if it be allowable to argue _a particulari_: that the brute +beasts which are to the Count’s command are yet themselves not amenable +to his spiritual power; for look, these rats that would come to his +call, just as from his castle top he summon the wolves to your going and +to that poor mother’s cry, though they come to him, they run pell-mell +from the so little dogs of my friend Arthur. We have other matters +before us, other dangers, other fears; and that monster--he has not used +his power over the brute world for the only or the last time to-night. +So be it that he has gone elsewhere. Good! It has given us opportunity +to cry ‘check’ in some ways in this chess game, which we play for the +stake of human souls. And now let us go home. The dawn is close at hand, +and we have reason to be content with our first night’s work. It may be +ordained that we have many nights and days to follow, if full of peril; +but we must go on, and from no danger shall we shrink.” + +The house was silent when we got back, save for some poor creature who +was screaming away in one of the distant wards, and a low, moaning sound +from Renfield’s room. The poor wretch was doubtless torturing himself, +after the manner of the insane, with needless thoughts of pain. + +I came tiptoe into our own room, and found Mina asleep, breathing so +softly that I had to put my ear down to hear it. She looks paler than +usual. I hope the meeting to-night has not upset her. I am truly +thankful that she is to be left out of our future work, and even of our +deliberations. It is too great a strain for a woman to bear. I did not +think so at first, but I know better now. Therefore I am glad that it is +settled. There may be things which would frighten her to hear; and yet +to conceal them from her might be worse than to tell her if once she +suspected that there was any concealment. Henceforth our work is to be a +sealed book to her, till at least such time as we can tell her that all +is finished, and the earth free from a monster of the nether world. I +daresay it will be difficult to begin to keep silence after such +confidence as ours; but I must be resolute, and to-morrow I shall keep +dark over to-night’s doings, and shall refuse to speak of anything that +has happened. I rest on the sofa, so as not to disturb her. + + * * * * * + +_1 October, later._--I suppose it was natural that we should have all +overslept ourselves, for the day was a busy one, and the night had no +rest at all. Even Mina must have felt its exhaustion, for though I slept +till the sun was high, I was awake before her, and had to call two or +three times before she awoke. Indeed, she was so sound asleep that for a +few seconds she did not recognize me, but looked at me with a sort of +blank terror, as one looks who has been waked out of a bad dream. She +complained a little of being tired, and I let her rest till later in the +day. We now know of twenty-one boxes having been removed, and if it be +that several were taken in any of these removals we may be able to trace +them all. Such will, of course, immensely simplify our labour, and the +sooner the matter is attended to the better. I shall look up Thomas +Snelling to-day. + + +_Dr. Seward’s Diary._ + +_1 October._--It was towards noon when I was awakened by the Professor +walking into my room. He was more jolly and cheerful than usual, and it +is quite evident that last night’s work has helped to take some of the +brooding weight off his mind. After going over the adventure of the +night he suddenly said:-- + +“Your patient interests me much. May it be that with you I visit him +this morning? Or if that you are too occupy, I can go alone if it may +be. It is a new experience to me to find a lunatic who talk philosophy, +and reason so sound.” I had some work to do which pressed, so I told him +that if he would go alone I would be glad, as then I should not have to +keep him waiting; so I called an attendant and gave him the necessary +instructions. Before the Professor left the room I cautioned him against +getting any false impression from my patient. “But,” he answered, “I +want him to talk of himself and of his delusion as to consuming live +things. He said to Madam Mina, as I see in your diary of yesterday, that +he had once had such a belief. Why do you smile, friend John?” + +“Excuse me,” I said, “but the answer is here.” I laid my hand on the +type-written matter. “When our sane and learned lunatic made that very +statement of how he _used_ to consume life, his mouth was actually +nauseous with the flies and spiders which he had eaten just before Mrs. +Harker entered the room.” Van Helsing smiled in turn. “Good!” he said. +“Your memory is true, friend John. I should have remembered. And yet it +is this very obliquity of thought and memory which makes mental disease +such a fascinating study. Perhaps I may gain more knowledge out of the +folly of this madman than I shall from the teaching of the most wise. +Who knows?” I went on with my work, and before long was through that in +hand. It seemed that the time had been very short indeed, but there was +Van Helsing back in the study. “Do I interrupt?” he asked politely as he +stood at the door. + +“Not at all,” I answered. “Come in. My work is finished, and I am free. +I can go with you now, if you like. + +“It is needless; I have seen him!” + +“Well?” + +“I fear that he does not appraise me at much. Our interview was short. +When I entered his room he was sitting on a stool in the centre, with +his elbows on his knees, and his face was the picture of sullen +discontent. I spoke to him as cheerfully as I could, and with such a +measure of respect as I could assume. He made no reply whatever. “Don’t +you know me?” I asked. His answer was not reassuring: “I know you well +enough; you are the old fool Van Helsing. I wish you would take yourself +and your idiotic brain theories somewhere else. Damn all thick-headed +Dutchmen!” Not a word more would he say, but sat in his implacable +sullenness as indifferent to me as though I had not been in the room at +all. Thus departed for this time my chance of much learning from this so +clever lunatic; so I shall go, if I may, and cheer myself with a few +happy words with that sweet soul Madam Mina. Friend John, it does +rejoice me unspeakable that she is no more to be pained, no more to be +worried with our terrible things. Though we shall much miss her help, it +is better so.” + +“I agree with you with all my heart,” I answered earnestly, for I did +not want him to weaken in this matter. “Mrs. Harker is better out of it. +Things are quite bad enough for us, all men of the world, and who have +been in many tight places in our time; but it is no place for a woman, +and if she had remained in touch with the affair, it would in time +infallibly have wrecked her.” + +So Van Helsing has gone to confer with Mrs. Harker and Harker; Quincey +and Art are all out following up the clues as to the earth-boxes. I +shall finish my round of work and we shall meet to-night. + + +_Mina Harker’s Journal._ + +_1 October._--It is strange to me to be kept in the dark as I am to-day; +after Thomas’s full confidence for so many years, to see him +manifestly avoid certain matters, and those the most vital of all. This +morning I slept late after the fatigues of yesterday, and though +Thomas was late too, he was the earlier. He spoke to me before he went +out, never more sweetly or tenderly, but he never mentioned a word of +what had happened in the visit to the Count’s house. And yet he must +have known how terribly anxious I was. Poor dear fellow! I suppose it +must have distressed him even more than it did me. They all agreed that +it was best that I should not be drawn further into this awful work, and +I acquiesced. But to think that he keeps anything from me! And now I am +crying like a silly fool, when I _know_ it comes from my husband’s great +love and from the good, good wishes of those other strong men. + +That has done me good. Well, some day Thomas will tell me all; and +lest it should ever be that he should think for a moment that I kept +anything from him, I still keep my journal as usual. Then if he has +feared of my trust I shall show it to him, with every thought of my +heart put down for his dear eyes to read. I feel strangely sad and +low-spirited to-day. I suppose it is the reaction from the terrible +excitement. + +Last night I went to bed when the men had gone, simply because they told +me to. I didn’t feel sleepy, and I did feel full of devouring anxiety. I +kept thinking over everything that has been ever since Thomas came to +see me in London, and it all seems like a horrible tragedy, with fate +pressing on relentlessly to some destined end. Everything that one does +seems, no matter how right it may be, to bring on the very thing which +is most to be deplored. If I hadn’t gone to Whitby, perhaps poor dear +Lucy would be with us now. She hadn’t taken to visiting the churchyard +till I came, and if she hadn’t come there in the day-time with me she +wouldn’t have walked there in her sleep; and if she hadn’t gone there at +night and asleep, that monster couldn’t have destroyed her as he did. +Oh, why did I ever go to Whitby? There now, crying again! I wonder what +has come over me to-day. I must hide it from Thomas, for if he knew +that I had been crying twice in one morning--I, who never cried on my +own account, and whom he has never caused to shed a tear--the dear +fellow would fret his heart out. I shall put a bold face on, and if I do +feel weepy, he shall never see it. I suppose it is one of the lessons +that we poor women have to learn.... + +I can’t quite remember how I fell asleep last night. I remember hearing +the sudden barking of the dogs and a lot of queer sounds, like praying +on a very tumultuous scale, from Mr. Renfield’s room, which is somewhere +under this. And then there was silence over everything, silence so +profound that it startled me, and I got up and looked out of the window. +All was dark and silent, the black shadows thrown by the moonlight +seeming full of a silent mystery of their own. Not a thing seemed to be +stirring, but all to be grim and fixed as death or fate; so that a thin +streak of white mist, that crept with almost imperceptible slowness +across the grass towards the house, seemed to have a sentience and a +vitality of its own. I think that the digression of my thoughts must +have done me good, for when I got back to bed I found a lethargy +creeping over me. I lay a while, but could not quite sleep, so I got out +and looked out of the window again. The mist was spreading, and was now +close up to the house, so that I could see it lying thick against the +wall, as though it were stealing up to the windows. The poor man was +more loud than ever, and though I could not distinguish a word he said, +I could in some way recognise in his tones some passionate entreaty on +his part. Then there was the sound of a struggle, and I knew that the +attendants were dealing with him. I was so frightened that I crept into +bed, and pulled the clothes over my head, putting my fingers in my ears. +I was not then a bit sleepy, at least so I thought; but I must have +fallen asleep, for, except dreams, I do not remember anything until the +morning, when Thomas woke me. I think that it took me an effort and a +little time to realise where I was, and that it was Thomas who was +bending over me. My dream was very peculiar, and was almost typical of +the way that waking thoughts become merged in, or continued in, dreams. + +I thought that I was asleep, and waiting for Thomas to come back. I +was very anxious about him, and I was powerless to act; my feet, and my +hands, and my brain were weighted, so that nothing could proceed at the +usual pace. And so I slept uneasily and thought. Then it began to dawn +upon me that the air was heavy, and dank, and cold. I put back the +clothes from my face, and found, to my surprise, that all was dim +around. The gaslight which I had left lit for Thomas, but turned down, +came only like a tiny red spark through the fog, which had evidently +grown thicker and poured into the room. Then it occurred to me that I +had shut the window before I had come to bed. I would have got out to +make certain on the point, but some leaden lethargy seemed to chain my +limbs and even my will. I lay still and endured; that was all. I closed +my eyes, but could still see through my eyelids. (It is wonderful what +tricks our dreams play us, and how conveniently we can imagine.) The +mist grew thicker and thicker and I could see now how it came in, for I +could see it like smoke--or with the white energy of boiling +water--pouring in, not through the window, but through the joinings of +the door. It got thicker and thicker, till it seemed as if it became +concentrated into a sort of pillar of cloud in the room, through the top +of which I could see the light of the gas shining like a red eye. Things +began to whirl through my brain just as the cloudy column was now +whirling in the room, and through it all came the scriptural words “a +pillar of cloud by day and of fire by night.” Was it indeed some such +spiritual guidance that was coming to me in my sleep? But the pillar was +composed of both the day and the night-guiding, for the fire was in the +red eye, which at the thought got a new fascination for me; till, as I +looked, the fire divided, and seemed to shine on me through the fog like +two red eyes, such as Lucy told me of in her momentary mental wandering +when, on the cliff, the dying sunlight struck the windows of St. Mary’s +Church. Suddenly the horror burst upon me that it was thus that Thomas +had seen those awful women growing into reality through the whirling mist +in the moonlight, and in my dream I must have fainted, for all became +black darkness. The last conscious effort which imagination made was to +show me a livid white face bending over me out of the mist. I must be +careful of such dreams, for they would unseat one’s reason if there were +too much of them. I would get Dr. Van Helsing or Dr. Seward to prescribe +something for me which would make me sleep, only that I fear to alarm +them. Such a dream at the present time would become woven into their +fears for me. To-night I shall strive hard to sleep naturally. If I do +not, I shall to-morrow night get them to give me a dose of chloral; that +cannot hurt me for once, and it will give me a good night’s sleep. Last +night tired me more than if I had not slept at all. + + * * * * * + +_2 October 10 p. m._--Last night I slept, but did not dream. I must have +slept soundly, for I was not waked by Thomas coming to bed; but the +sleep has not refreshed me, for to-day I feel terribly weak and +spiritless. I spent all yesterday trying to read, or lying down dozing. +In the afternoon Mr. Renfield asked if he might see me. Poor man, he was +very gentle, and when I came away he kissed my hand and bade God bless +me. Some way it affected me much; I am crying when I think of him. This +is a new weakness, of which I must be careful. Thomas would be +miserable if he knew I had been crying. He and the others were out till +dinner-time, and they all came in tired. I did what I could to brighten +them up, and I suppose that the effort did me good, for I forgot how +tired I was. After dinner they sent me to bed, and all went off to smoke +together, as they said, but I knew that they wanted to tell each other +of what had occurred to each during the day; I could see from Thomas’s +manner that he had something important to communicate. I was not so +sleepy as I should have been; so before they went I asked Dr. Seward to +give me a little opiate of some kind, as I had not slept well the night +before. He very kindly made me up a sleeping draught, which he gave to +me, telling me that it would do me no harm, as it was very mild.... I +have taken it, and am waiting for sleep, which still keeps aloof. I hope +I have not done wrong, for as sleep begins to flirt with me, a new fear +comes: that I may have been foolish in thus depriving myself of the +power of waking. I might want it. Here comes sleep. Good-night. + + + + +CHAPTER XX + +JONATHAN HARKER’S JOURNAL + + +_1 October, evening._--I found Thomas Snelling in his house at Bethnal +Green, but unhappily he was not in a condition to remember anything. The +very prospect of beer which my expected coming had opened to him had +proved too much, and he had begun too early on his expected debauch. I +learned, however, from his wife, who seemed a decent, poor soul, that he +was only the assistant to Smollet, who of the two mates was the +responsible person. So off I drove to Walworth, and found Mr. Joseph +Smollet at home and in his shirtsleeves, taking a late tea out of a +saucer. He is a decent, intelligent fellow, distinctly a good, reliable +type of workman, and with a headpiece of his own. He remembered all +about the incident of the boxes, and from a wonderful dog’s-eared +notebook, which he produced from some mysterious receptacle about the +seat of his trousers, and which had hieroglyphical entries in thick, +half-obliterated pencil, he gave me the destinations of the boxes. There +were, he said, six in the cartload which he took from Carfax and left at +197, Chicksand Street, Mile End New Town, and another six which he +deposited at Jamaica Lane, Bermondsey. If then the Count meant to +scatter these ghastly refuges of his over London, these places were +chosen as the first of delivery, so that later he might distribute more +fully. The systematic manner in which this was done made me think that +he could not mean to confine himself to two sides of London. He was now +fixed on the far east of the northern shore, on the east of the southern +shore, and on the south. The north and west were surely never meant to +be left out of his diabolical scheme--let alone the City itself and the +very heart of fashionable London in the south-west and west. I went back +to Smollet, and asked him if he could tell us if any other boxes had +been taken from Carfax. + +He replied:-- + +“Well, guv’nor, you’ve treated me wery ’an’some”--I had given him half a +sovereign--“an’ I’ll tell yer all I know. I heard a man by the name of +Bloxam say four nights ago in the ’Are an’ ’Ounds, in Pincher’s Alley, +as ’ow he an’ his mate ’ad ’ad a rare dusty job in a old ’ouse at +Purfect. There ain’t a-many such jobs as this ’ere, an’ I’m thinkin’ +that maybe Sam Bloxam could tell ye summut.” I asked if he could tell me +where to find him. I told him that if he could get me the address it +would be worth another half-sovereign to him. So he gulped down the rest +of his tea and stood up, saying that he was going to begin the search +then and there. At the door he stopped, and said:-- + +“Look ’ere, guv’nor, there ain’t no sense in me a-keepin’ you ’ere. I +may find Sam soon, or I mayn’t; but anyhow he ain’t like to be in a way +to tell ye much to-night. Sam is a rare one when he starts on the booze. +If you can give me a envelope with a stamp on it, and put yer address on +it, I’ll find out where Sam is to be found and post it ye to-night. But +ye’d better be up arter ’im soon in the mornin’, or maybe ye won’t ketch +’im; for Sam gets off main early, never mind the booze the night afore.” + +This was all practical, so one of the children went off with a penny to +buy an envelope and a sheet of paper, and to keep the change. When she +came back, I addressed the envelope and stamped it, and when Smollet had +again faithfully promised to post the address when found, I took my way +to home. We’re on the track anyhow. I am tired to-night, and want sleep. +Mina is fast asleep, and looks a little too pale; her eyes look as +though she had been crying. Poor dear, I’ve no doubt it frets her to be +kept in the dark, and it may make her doubly anxious about me and the +others. But it is best as it is. It is better to be disappointed and +worried in such a way now than to have her nerve broken. The doctors +were quite right to insist on her being kept out of this dreadful +business. I must be firm, for on me this particular burden of silence +must rest. I shall not ever enter on the subject with her under any +circumstances. Indeed, it may not be a hard task, after all, for she +herself has become reticent on the subject, and has not spoken of the +Count or his doings ever since we told her of our decision. + + * * * * * + +_2 October, evening._--A long and trying and exciting day. By the first +post I got my directed envelope with a dirty scrap of paper enclosed, on +which was written with a carpenter’s pencil in a sprawling hand:-- + +“Sam Bloxam, Korkrans, 4, Poters Cort, Bartel Street, Walworth. Arsk for +the depite.” + +I got the letter in bed, and rose without waking Mina. She looked heavy +and sleepy and pale, and far from well. I determined not to wake her, +but that, when I should return from this new search, I would arrange for +her going back to Exeter. I think she would be happier in our own home, +with her daily tasks to interest her, than in being here amongst us and +in ignorance. I only saw Dr. Seward for a moment, and told him where I +was off to, promising to come back and tell the rest so soon as I should +have found out anything. I drove to Walworth and found, with some +difficulty, Potter’s Court. Mr. Smollet’s spelling misled me, as I asked +for Poter’s Court instead of Potter’s Court. However, when I had found +the court, I had no difficulty in discovering Corcoran’s lodging-house. +When I asked the man who came to the door for the “depite,” he shook his +head, and said: “I dunno ’im. There ain’t no such a person ’ere; I never +’eard of ’im in all my bloomin’ days. Don’t believe there ain’t nobody +of that kind livin’ ere or anywheres.” I took out Smollet’s letter, and +as I read it it seemed to me that the lesson of the spelling of the name +of the court might guide me. “What are you?” I asked. + +“I’m the depity,” he answered. I saw at once that I was on the right +track; phonetic spelling had again misled me. A half-crown tip put the +deputy’s knowledge at my disposal, and I learned that Mr. Bloxam, who +had slept off the remains of his beer on the previous night at +Corcoran’s, had left for his work at Poplar at five o’clock that +morning. He could not tell me where the place of work was situated, but +he had a vague idea that it was some kind of a “new-fangled ware’us”; +and with this slender clue I had to start for Poplar. It was twelve +o’clock before I got any satisfactory hint of such a building, and this +I got at a coffee-shop, where some workmen were having their dinner. One +of these suggested that there was being erected at Cross Angel Street a +new “cold storage” building; and as this suited the condition of a +“new-fangled ware’us,” I at once drove to it. An interview with a surly +gatekeeper and a surlier foreman, both of whom were appeased with the +coin of the realm, put me on the track of Bloxam; he was sent for on my +suggesting that I was willing to pay his day’s wages to his foreman for +the privilege of asking him a few questions on a private matter. He was +a smart enough fellow, though rough of speech and bearing. When I had +promised to pay for his information and given him an earnest, he told me +that he had made two journeys between Carfax and a house in Piccadilly, +and had taken from this house to the latter nine great boxes--“main +heavy ones”--with a horse and cart hired by him for this purpose. I +asked him if he could tell me the number of the house in Piccadilly, to +which he replied:-- + +“Well, guv’nor, I forgits the number, but it was only a few doors from a +big white church or somethink of the kind, not long built. It was a +dusty old ’ouse, too, though nothin’ to the dustiness of the ’ouse we +tooked the bloomin’ boxes from.” + +“How did you get into the houses if they were both empty?” + +“There was the old party what engaged me a-waitin’ in the ’ouse at +Purfleet. He ’elped me to lift the boxes and put them in the dray. Curse +me, but he was the strongest chap I ever struck, an’ him a old feller, +with a white moustache, one that thin you would think he couldn’t throw +a shadder.” + +How this phrase thrilled through me! + +“Why, ’e took up ’is end o’ the boxes like they was pounds of tea, and +me a-puffin’ an’ a-blowin’ afore I could up-end mine anyhow--an’ I’m no +chicken, neither.” + +“How did you get into the house in Piccadilly?” I asked. + +“He was there too. He must ’a’ started off and got there afore me, for +when I rung of the bell he kem an’ opened the door ’isself an’ ’elped me +to carry the boxes into the ’all.” + +“The whole nine?” I asked. + +“Yus; there was five in the first load an’ four in the second. It was +main dry work, an’ I don’t so well remember ’ow I got ’ome.” I +interrupted him:-- + +“Were the boxes left in the hall?” + +“Yus; it was a big ’all, an’ there was nothin’ else in it.” I made one +more attempt to further matters:-- + +“You didn’t have any key?” + +“Never used no key nor nothink. The old gent, he opened the door ’isself +an’ shut it again when I druv off. I don’t remember the last time--but +that was the beer.” + +“And you can’t remember the number of the house?” + +“No, sir. But ye needn’t have no difficulty about that. It’s a ’igh ’un +with a stone front with a bow on it, an’ ’igh steps up to the door. I +know them steps, ’avin’ ’ad to carry the boxes up with three loafers +what come round to earn a copper. The old gent give them shillin’s, an’ +they seein’ they got so much, they wanted more; but ’e took one of them +by the shoulder and was like to throw ’im down the steps, till the lot +of them went away cussin’.” I thought that with this description I could +find the house, so, having paid my friend for his information, I started +off for Piccadilly. I had gained a new painful experience; the Count +could, it was evident, handle the earth-boxes himself. If so, time was +precious; for, now that he had achieved a certain amount of +distribution, he could, by choosing his own time, complete the task +unobserved. At Piccadilly Circus I discharged my cab, and walked +westward; beyond the Junior Constitutional I came across the house +described, and was satisfied that this was the next of the lairs +arranged by Dracula. The house looked as though it had been long +untenanted. The windows were encrusted with dust, and the shutters were +up. All the framework was black with time, and from the iron the paint +had mostly scaled away. It was evident that up to lately there had been +a large notice-board in front of the balcony; it had, however, been +roughly torn away, the uprights which had supported it still remaining. +Behind the rails of the balcony I saw there were some loose boards, +whose raw edges looked white. I would have given a good deal to have +been able to see the notice-board intact, as it would, perhaps, have +given some clue to the ownership of the house. I remembered my +experience of the investigation and purchase of Carfax, and I could not +but feel that if I could find the former owner there might be some means +discovered of gaining access to the house. + +There was at present nothing to be learned from the Piccadilly side, and +nothing could be done; so I went round to the back to see if anything +could be gathered from this quarter. The mews were active, the +Piccadilly houses being mostly in occupation. I asked one or two of the +grooms and helpers whom I saw around if they could tell me anything +about the empty house. One of them said that he heard it had lately been +taken, but he couldn’t say from whom. He told me, however, that up to +very lately there had been a notice-board of “For Sale” up, and that +perhaps Mitchell, Sons, & Candy, the house agents, could tell me +something, as he thought he remembered seeing the name of that firm on +the board. I did not wish to seem too eager, or to let my informant know +or guess too much, so, thanking him in the usual manner, I strolled +away. It was now growing dusk, and the autumn night was closing in, so I +did not lose any time. Having learned the address of Mitchell, Sons, & +Candy from a directory at the Berkeley, I was soon at their office in +Sackville Street. + +The gentleman who saw me was particularly suave in manner, but +uncommunicative in equal proportion. Having once told me that the +Piccadilly house--which throughout our interview he called a +“mansion”--was sold, he considered my business as concluded. When I +asked who had purchased it, he opened his eyes a thought wider, and +paused a few seconds before replying:-- + +“It is sold, sir.” + +“Pardon me,” I said, with equal politeness, “but I have a special reason +for wishing to know who purchased it.” + +Again he paused longer, and raised his eyebrows still more. “It is sold, +sir,” was again his laconic reply. + +“Surely,” I said, “you do not mind letting me know so much.” + +“But I do mind,” he answered. “The affairs of their clients are +absolutely safe in the hands of Mitchell, Sons, & Candy.” This was +manifestly a prig of the first water, and there was no use arguing with +him. I thought I had best meet him on his own ground, so I said:-- + +“Your clients, sir, are happy in having so resolute a guardian of their +confidence. I am myself a professional man.” Here I handed him my card. +“In this instance I am not prompted by curiosity; I act on the part of +Lord Godalming, who wishes to know something of the property which was, +he understood, lately for sale.” These words put a different complexion +on affairs. He said:-- + +“I would like to oblige you if I could, Mr. Harker, and especially would +I like to oblige his lordship. We once carried out a small matter of +renting some chambers for him when he was the Honourable Arthur +Holmwood. If you will let me have his lordship’s address I will consult +the House on the subject, and will, in any case, communicate with his +lordship by to-night’s post. It will be a pleasure if we can so far +deviate from our rules as to give the required information to his +lordship.” + +I wanted to secure a friend, and not to make an enemy, so I thanked him, +gave the address at Dr. Seward’s and came away. It was now dark, and I +was tired and hungry. I got a cup of tea at the Aërated Bread Company +and came down to Purfleet by the next train. + +I found all the others at home. Mina was looking tired and pale, but she +made a gallant effort to be bright and cheerful, it wrung my heart to +think that I had had to keep anything from her and so caused her +inquietude. Thank God, this will be the last night of her looking on at +our conferences, and feeling the sting of our not showing our +confidence. It took all my courage to hold to the wise resolution of +keeping her out of our grim task. She seems somehow more reconciled; or +else the very subject seems to have become repugnant to her, for when +any accidental allusion is made she actually shudders. I am glad we +made our resolution in time, as with such a feeling as this, our growing +knowledge would be torture to her. + +I could not tell the others of the day’s discovery till we were alone; +so after dinner--followed by a little music to save appearances even +amongst ourselves--I took Mina to her room and left her to go to bed. +The dear girl was more affectionate with me than ever, and clung to me +as though she would detain me; but there was much to be talked of and I +came away. Thank God, the ceasing of telling things has made no +difference between us. + +When I came down again I found the others all gathered round the fire in +the study. In the train I had written my diary so far, and simply read +it off to them as the best means of letting them get abreast of my own +information; when I had finished Van Helsing said:-- + +“This has been a great day’s work, friend Thomas. Doubtless we are on +the track of the missing boxes. If we find them all in that house, then +our work is near the end. But if there be some missing, we must search +until we find them. Then shall we make our final _coup_, and hunt the +wretch to his real death.” We all sat silent awhile and all at once Mr. +Morris spoke:-- + +“Say! how are we going to get into that house?” + +“We got into the other,” answered Lord Godalming quickly. + +“But, Art, this is different. We broke house at Carfax, but we had night +and a walled park to protect us. It will be a mighty different thing to +commit burglary in Piccadilly, either by day or night. I confess I don’t +see how we are going to get in unless that agency duck can find us a key +of some sort; perhaps we shall know when you get his letter in the +morning.” Lord Godalming’s brows contracted, and he stood up and walked +about the room. By-and-by he stopped and said, turning from one to +another of us:-- + +“Quincey’s head is level. This burglary business is getting serious; we +got off once all right; but we have now a rare job on hand--unless we +can find the Count’s key basket.” + +As nothing could well be done before morning, and as it would be at +least advisable to wait till Lord Godalming should hear from Mitchell’s, +we decided not to take any active step before breakfast time. For a good +while we sat and smoked, discussing the matter in its various lights and +bearings; I took the opportunity of bringing this diary right up to the +moment. I am very sleepy and shall go to bed.... + +Just a line. Mina sleeps soundly and her breathing is regular. Her +forehead is puckered up into little wrinkles, as though she thinks even +in her sleep. She is still too pale, but does not look so haggard as she +did this morning. To-morrow will, I hope, mend all this; she will be +herself at home in Exeter. Oh, but I am sleepy! + + +_Dr. Seward’s Diary._ + +_1 October._--I am puzzled afresh about Renfield. His moods change so +rapidly that I find it difficult to keep touch of them, and as they +always mean something more than his own well-being, they form a more +than interesting study. This morning, when I went to see him after his +repulse of Van Helsing, his manner was that of a man commanding destiny. +He was, in fact, commanding destiny--subjectively. He did not really +care for any of the things of mere earth; he was in the clouds and +looked down on all the weaknesses and wants of us poor mortals. I +thought I would improve the occasion and learn something, so I asked +him:-- + +“What about the flies these times?” He smiled on me in quite a superior +sort of way--such a smile as would have become the face of Malvolio--as +he answered me:-- + +“The fly, my dear sir, has one striking feature; its wings are typical +of the aërial powers of the psychic faculties. The ancients did well +when they typified the soul as a butterfly!” + +I thought I would push his analogy to its utmost logically, so I said +quickly:-- + +“Oh, it is a soul you are after now, is it?” His madness foiled his +reason, and a puzzled look spread over his face as, shaking his head +with a decision which I had but seldom seen in him, he said:-- + +“Oh, no, oh no! I want no souls. Life is all I want.” Here he brightened +up; “I am pretty indifferent about it at present. Life is all right; I +have all I want. You must get a new patient, doctor, if you wish to +study zoöphagy!” + +This puzzled me a little, so I drew him on:-- + +“Then you command life; you are a god, I suppose?” He smiled with an +ineffably benign superiority. + +“Oh no! Far be it from me to arrogate to myself the attributes of the +Deity. I am not even concerned in His especially spiritual doings. If I +may state my intellectual position I am, so far as concerns things +purely terrestrial, somewhat in the position which Enoch occupied +spiritually!” This was a poser to me. I could not at the moment recall +Enoch’s appositeness; so I had to ask a simple question, though I felt +that by so doing I was lowering myself in the eyes of the lunatic:-- + +“And why with Enoch?” + +“Because he walked with God.” I could not see the analogy, but did not +like to admit it; so I harked back to what he had denied:-- + +“So you don’t care about life and you don’t want souls. Why not?” I put +my question quickly and somewhat sternly, on purpose to disconcert him. +The effort succeeded; for an instant he unconsciously relapsed into his +old servile manner, bent low before me, and actually fawned upon me as +he replied:-- + +“I don’t want any souls, indeed, indeed! I don’t. I couldn’t use them if +I had them; they would be no manner of use to me. I couldn’t eat them +or----” He suddenly stopped and the old cunning look spread over his +face, like a wind-sweep on the surface of the water. “And doctor, as to +life, what is it after all? When you’ve got all you require, and you +know that you will never want, that is all. I have friends--good +friends--like you, Dr. Seward”; this was said with a leer of +inexpressible cunning. “I know that I shall never lack the means of +life!” + +I think that through the cloudiness of his insanity he saw some +antagonism in me, for he at once fell back on the last refuge of such as +he--a dogged silence. After a short time I saw that for the present it +was useless to speak to him. He was sulky, and so I came away. + +Later in the day he sent for me. Ordinarily I would not have come +without special reason, but just at present I am so interested in him +that I would gladly make an effort. Besides, I am glad to have anything +to help to pass the time. Harker is out, following up clues; and so are +Lord Godalming and Quincey. Van Helsing sits in my study poring over the +record prepared by the Harkers; he seems to think that by accurate +knowledge of all details he will light upon some clue. He does not wish +to be disturbed in the work, without cause. I would have taken him with +me to see the patient, only I thought that after his last repulse he +might not care to go again. There was also another reason: Renfield +might not speak so freely before a third person as when he and I were +alone. + +I found him sitting out in the middle of the floor on his stool, a pose +which is generally indicative of some mental energy on his part. When I +came in, he said at once, as though the question had been waiting on his +lips:-- + +“What about souls?” It was evident then that my surmise had been +correct. Unconscious cerebration was doing its work, even with the +lunatic. I determined to have the matter out. “What about them +yourself?” I asked. He did not reply for a moment but looked all round +him, and up and down, as though he expected to find some inspiration for +an answer. + +“I don’t want any souls!” he said in a feeble, apologetic way. The +matter seemed preying on his mind, and so I determined to use it--to “be +cruel only to be kind.” So I said:-- + +“You like life, and you want life?” + +“Oh yes! but that is all right; you needn’t worry about that!” + +“But,” I asked, “how are we to get the life without getting the soul +also?” This seemed to puzzle him, so I followed it up:-- + +“A nice time you’ll have some time when you’re flying out there, with +the souls of thousands of flies and spiders and birds and cats buzzing +and twittering and miauing all round you. You’ve got their lives, you +know, and you must put up with their souls!” Something seemed to affect +his imagination, for he put his fingers to his ears and shut his eyes, +screwing them up tightly just as a small boy does when his face is being +soaped. There was something pathetic in it that touched me; it also gave +me a lesson, for it seemed that before me was a child--only a child, +though the features were worn, and the stubble on the jaws was white. It +was evident that he was undergoing some process of mental disturbance, +and, knowing how his past moods had interpreted things seemingly foreign +to himself, I thought I would enter into his mind as well as I could and +go with him. The first step was to restore confidence, so I asked him, +speaking pretty loud so that he would hear me through his closed ears:-- + +“Would you like some sugar to get your flies round again?” He seemed to +wake up all at once, and shook his head. With a laugh he replied:-- + +“Not much! flies are poor things, after all!” After a pause he added, +“But I don’t want their souls buzzing round me, all the same.” + +“Or spiders?” I went on. + +“Blow spiders! What’s the use of spiders? There isn’t anything in them +to eat or”--he stopped suddenly, as though reminded of a forbidden +topic. + +“So, so!” I thought to myself, “this is the second time he has suddenly +stopped at the word ‘drink’; what does it mean?” Renfield seemed himself +aware of having made a lapse, for he hurried on, as though to distract +my attention from it:-- + +“I don’t take any stock at all in such matters. ‘Rats and mice and such +small deer,’ as Shakespeare has it, ‘chicken-feed of the larder’ they +might be called. I’m past all that sort of nonsense. You might as well +ask a man to eat molecules with a pair of chop-sticks, as to try to +interest me about the lesser carnivora, when I know of what is before +me.” + +“I see,” I said. “You want big things that you can make your teeth meet +in? How would you like to breakfast on elephant?” + +“What ridiculous nonsense you are talking!” He was getting too wide +awake, so I thought I would press him hard. “I wonder,” I said +reflectively, “what an elephant’s soul is like!” + +The effect I desired was obtained, for he at once fell from his +high-horse and became a child again. + +“I don’t want an elephant’s soul, or any soul at all!” he said. For a +few moments he sat despondently. Suddenly he jumped to his feet, with +his eyes blazing and all the signs of intense cerebral excitement. “To +hell with you and your souls!” he shouted. “Why do you plague me about +souls? Haven’t I got enough to worry, and pain, and distract me already, +without thinking of souls!” He looked so hostile that I thought he was +in for another homicidal fit, so I blew my whistle. The instant, +however, that I did so he became calm, and said apologetically:-- + +“Forgive me, Doctor; I forgot myself. You do not need any help. I am so +worried in my mind that I am apt to be irritable. If you only knew the +problem I have to face, and that I am working out, you would pity, and +tolerate, and pardon me. Pray do not put me in a strait-waistcoat. I +want to think and I cannot think freely when my body is confined. I am +sure you will understand!” He had evidently self-control; so when the +attendants came I told them not to mind, and they withdrew. Renfield +watched them go; when the door was closed he said, with considerable +dignity and sweetness:-- + +“Dr. Seward, you have been very considerate towards me. Believe me that +I am very, very grateful to you!” I thought it well to leave him in this +mood, and so I came away. There is certainly something to ponder over in +this man’s state. Several points seem to make what the American +interviewer calls “a story,” if one could only get them in proper order. +Here they are:-- + +Will not mention “drinking.” + +Fears the thought of being burdened with the “soul” of anything. + +Has no dread of wanting “life” in the future. + +Despises the meaner forms of life altogether, though he dreads being +haunted by their souls. + +Logically all these things point one way! he has assurance of some kind +that he will acquire some higher life. He dreads the consequence--the +burden of a soul. Then it is a human life he looks to! + +And the assurance--? + +Merciful God! the Count has been to him, and there is some new scheme of +terror afoot! + + * * * * * + +_Later._--I went after my round to Van Helsing and told him my +suspicion. He grew very grave; and, after thinking the matter over for a +while asked me to take him to Renfield. I did so. As we came to the door +we heard the lunatic within singing gaily, as he used to do in the time +which now seems so long ago. When we entered we saw with amazement that +he had spread out his sugar as of old; the flies, lethargic with the +autumn, were beginning to buzz into the room. We tried to make him talk +of the subject of our previous conversation, but he would not attend. He +went on with his singing, just as though we had not been present. He had +got a scrap of paper and was folding it into a note-book. We had to come +away as ignorant as we went in. + +His is a curious case indeed; we must watch him to-night. + + +_Letter, Mitchell, Sons and Candy to Lord Godalming._ + +_“1 October._ + +“My Lord, + +“We are at all times only too happy to meet your wishes. We beg, with +regard to the desire of your Lordship, expressed by Mr. Harker on your +behalf, to supply the following information concerning the sale and +purchase of No. 347, Piccadilly. The original vendors are the executors +of the late Mr. Archibald Winter-Suffield. The purchaser is a foreign +nobleman, Count de Ville, who effected the purchase himself paying the +purchase money in notes ‘over the counter,’ if your Lordship will pardon +us using so vulgar an expression. Beyond this we know nothing whatever +of him. + +“We are, my Lord, + +“Your Lordship’s humble servants, + +“MITCHELL, SONS & CANDY.” + + +_Dr. Seward’s Diary._ + +_2 October._--I placed a man in the corridor last night, and told him to +make an accurate note of any sound he might hear from Renfield’s room, +and gave him instructions that if there should be anything strange he +was to call me. After dinner, when we had all gathered round the fire +in the study--Mrs. Harker having gone to bed--we discussed the attempts +and discoveries of the day. Harker was the only one who had any result, +and we are in great hopes that his clue may be an important one. + +Before going to bed I went round to the patient’s room and looked in +through the observation trap. He was sleeping soundly, and his heart +rose and fell with regular respiration. + +This morning the man on duty reported to me that a little after midnight +he was restless and kept saying his prayers somewhat loudly. I asked him +if that was all; he replied that it was all he heard. There was +something about his manner so suspicious that I asked him point blank if +he had been asleep. He denied sleep, but admitted to having “dozed” for +a while. It is too bad that men cannot be trusted unless they are +watched. + +To-day Harker is out following up his clue, and Art and Quincey are +looking after horses. Godalming thinks that it will be well to have +horses always in readiness, for when we get the information which we +seek there will be no time to lose. We must sterilise all the imported +earth between sunrise and sunset; we shall thus catch the Count at his +weakest, and without a refuge to fly to. Van Helsing is off to the +British Museum looking up some authorities on ancient medicine. The old +physicians took account of things which their followers do not accept, +and the Professor is searching for witch and demon cures which may be +useful to us later. + +I sometimes think we must be all mad and that we shall wake to sanity in +strait-waistcoats. + + * * * * * + +_Later._--We have met again. We seem at last to be on the track, and our +work of to-morrow may be the beginning of the end. I wonder if +Renfield’s quiet has anything to do with this. His moods have so +followed the doings of the Count, that the coming destruction of the +monster may be carried to him in some subtle way. If we could only get +some hint as to what passed in his mind, between the time of my argument +with him to-day and his resumption of fly-catching, it might afford us a +valuable clue. He is now seemingly quiet for a spell.... Is he?---- That +wild yell seemed to come from his room.... + + * * * * * + +The attendant came bursting into my room and told me that Renfield had +somehow met with some accident. He had heard him yell; and when he went +to him found him lying on his face on the floor, all covered with blood. +I must go at once.... + + + + +CHAPTER XXI + +DR. SEWARD’S DIARY + + +_3 October._--Let me put down with exactness all that happened, as well +as I can remember it, since last I made an entry. Not a detail that I +can recall must be forgotten; in all calmness I must proceed. + +When I came to Renfield’s room I found him lying on the floor on his +left side in a glittering pool of blood. When I went to move him, it +became at once apparent that he had received some terrible injuries; +there seemed none of that unity of purpose between the parts of the body +which marks even lethargic sanity. As the face was exposed I could see +that it was horribly bruised, as though it had been beaten against the +floor--indeed it was from the face wounds that the pool of blood +originated. The attendant who was kneeling beside the body said to me as +we turned him over:-- + +“I think, sir, his back is broken. See, both his right arm and leg and +the whole side of his face are paralysed.” How such a thing could have +happened puzzled the attendant beyond measure. He seemed quite +bewildered, and his brows were gathered in as he said:-- + +“I can’t understand the two things. He could mark his face like that by +beating his own head on the floor. I saw a young woman do it once at the +Eversfield Asylum before anyone could lay hands on her. And I suppose he +might have broke his neck by falling out of bed, if he got in an awkward +kink. But for the life of me I can’t imagine how the two things +occurred. If his back was broke, he couldn’t beat his head; and if his +face was like that before the fall out of bed, there would be marks of +it.” I said to him:-- + +“Go to Dr. Van Helsing, and ask him to kindly come here at once. I want +him without an instant’s delay.” The man ran off, and within a few +minutes the Professor, in his dressing gown and slippers, appeared. When +he saw Renfield on the ground, he looked keenly at him a moment, and +then turned to me. I think he recognised my thought in my eyes, for he +said very quietly, manifestly for the ears of the attendant:-- + +“Ah, a sad accident! He will need very careful watching, and much +attention. I shall stay with you myself; but I shall first dress myself. +If you will remain I shall in a few minutes join you.” + +The patient was now breathing stertorously and it was easy to see that +he had suffered some terrible injury. Van Helsing returned with +extraordinary celerity, bearing with him a surgical case. He had +evidently been thinking and had his mind made up; for, almost before he +looked at the patient, he whispered to me:-- + +“Send the attendant away. We must be alone with him when he becomes +conscious, after the operation.” So I said:-- + +“I think that will do now, Simmons. We have done all that we can at +present. You had better go your round, and Dr. Van Helsing will operate. +Let me know instantly if there be anything unusual anywhere.” + +The man withdrew, and we went into a strict examination of the patient. +The wounds of the face was superficial; the real injury was a depressed +fracture of the skull, extending right up through the motor area. The +Professor thought a moment and said:-- + +“We must reduce the pressure and get back to normal conditions, as far +as can be; the rapidity of the suffusion shows the terrible nature of +his injury. The whole motor area seems affected. The suffusion of the +brain will increase quickly, so we must trephine at once or it may be +too late.” As he was speaking there was a soft tapping at the door. I +went over and opened it and found in the corridor without, Arthur and +Quincey in pajamas and slippers: the former spoke:-- + +“I heard your man call up Dr. Van Helsing and tell him of an accident. +So I woke Quincey or rather called for him as he was not asleep. Things +are moving too quickly and too strangely for sound sleep for any of us +these times. I’ve been thinking that to-morrow night will not see things +as they have been. We’ll have to look back--and forward a little more +than we have done. May we come in?” I nodded, and held the door open +till they had entered; then I closed it again. When Quincey saw the +attitude and state of the patient, and noted the horrible pool on the +floor, he said softly:-- + +“My God! what has happened to him? Poor, poor devil!” I told him +briefly, and added that we expected he would recover consciousness after +the operation--for a short time, at all events. He went at once and sat +down on the edge of the bed, with Godalming beside him; we all watched +in patience. + +“We shall wait,” said Van Helsing, “just long enough to fix the best +spot for trephining, so that we may most quickly and perfectly remove +the blood clot; for it is evident that the hæmorrhage is increasing.” + +The minutes during which we waited passed with fearful slowness. I had a +horrible sinking in my heart, and from Van Helsing’s face I gathered +that he felt some fear or apprehension as to what was to come. I dreaded +the words that Renfield might speak. I was positively afraid to think; +but the conviction of what was coming was on me, as I have read of men +who have heard the death-watch. The poor man’s breathing came in +uncertain gasps. Each instant he seemed as though he would open his eyes +and speak; but then would follow a prolonged stertorous breath, and he +would relapse into a more fixed insensibility. Inured as I was to sick +beds and death, this suspense grew, and grew upon me. I could almost +hear the beating of my own heart; and the blood surging through my +temples sounded like blows from a hammer. The silence finally became +agonising. I looked at my companions, one after another, and saw from +their flushed faces and damp brows that they were enduring equal +torture. There was a nervous suspense over us all, as though overhead +some dread bell would peal out powerfully when we should least expect +it. + +At last there came a time when it was evident that the patient was +sinking fast; he might die at any moment. I looked up at the Professor +and caught his eyes fixed on mine. His face was sternly set as he +spoke:-- + +“There is no time to lose. His words may be worth many lives; I have +been thinking so, as I stood here. It may be there is a soul at stake! +We shall operate just above the ear.” + +Without another word he made the operation. For a few moments the +breathing continued to be stertorous. Then there came a breath so +prolonged that it seemed as though it would tear open his chest. +Suddenly his eyes opened, and became fixed in a wild, helpless stare. +This was continued for a few moments; then it softened into a glad +surprise, and from the lips came a sigh of relief. He moved +convulsively, and as he did so, said:-- + +“I’ll be quiet, Doctor. Tell them to take off the strait-waistcoat. I +have had a terrible dream, and it has left me so weak that I cannot +move. What’s wrong with my face? it feels all swollen, and it smarts +dreadfully.” He tried to turn his head; but even with the effort his +eyes seemed to grow glassy again so I gently put it back. Then Van +Helsing said in a quiet grave tone:-- + +“Tell us your dream, Mr. Renfield.” As he heard the voice his face +brightened, through its mutilation, and he said:-- + +“That is Dr. Van Helsing. How good it is of you to be here. Give me some +water, my lips are dry; and I shall try to tell you. I dreamed”--he +stopped and seemed fainting, I called quietly to Quincey--“The +brandy--it is in my study--quick!” He flew and returned with a glass, +the decanter of brandy and a carafe of water. We moistened the parched +lips, and the patient quickly revived. It seemed, however, that his poor +injured brain had been working in the interval, for, when he was quite +conscious, he looked at me piercingly with an agonised confusion which I +shall never forget, and said:-- + +“I must not deceive myself; it was no dream, but all a grim reality.” +Then his eyes roved round the room; as they caught sight of the two +figures sitting patiently on the edge of the bed he went on:-- + +“If I were not sure already, I would know from them.” For an instant his +eyes closed--not with pain or sleep but voluntarily, as though he were +bringing all his faculties to bear; when he opened them he said, +hurriedly, and with more energy than he had yet displayed:-- + +“Quick, Doctor, quick. I am dying! I feel that I have but a few minutes; +and then I must go back to death--or worse! Wet my lips with brandy +again. I have something that I must say before I die; or before my poor +crushed brain dies anyhow. Thank you! It was that night after you left +me, when I implored you to let me go away. I couldn’t speak then, for I +felt my tongue was tied; but I was as sane then, except in that way, as +I am now. I was in an agony of despair for a long time after you left +me; it seemed hours. Then there came a sudden peace to me. My brain +seemed to become cool again, and I realised where I was. I heard the +dogs bark behind our house, but not where He was!” As he spoke, Van +Helsing’s eyes never blinked, but his hand came out and met mine and +gripped it hard. He did not, however, betray himself; he nodded slightly +and said: “Go on,” in a low voice. Renfield proceeded:-- + +“He came up to the window in the mist, as I had seen him often before; +but he was solid then--not a ghost, and his eyes were fierce like a +man’s when angry. He was laughing with his red mouth; the sharp white +teeth glinted in the moonlight when he turned to look back over the belt +of trees, to where the dogs were barking. I wouldn’t ask him to come in +at first, though I knew he wanted to--just as he had wanted all along. +Then he began promising me things--not in words but by doing them.” He +was interrupted by a word from the Professor:-- + +“How?” + +“By making them happen; just as he used to send in the flies when the +sun was shining. Great big fat ones with steel and sapphire on their +wings; and big moths, in the night, with skull and cross-bones on their +backs.” Van Helsing nodded to him as he whispered to me unconsciously:-- + +“The _Acherontia Aitetropos of the Sphinges_--what you call the +‘Death’s-head Moth’?” The patient went on without stopping. + +“Then he began to whisper: ‘Rats, rats, rats! Hundreds, thousands, +millions of them, and every one a life; and dogs to eat them, and cats +too. All lives! all red blood, with years of life in it; and not merely +buzzing flies!’ I laughed at him, for I wanted to see what he could do. +Then the dogs howled, away beyond the dark trees in His house. He +beckoned me to the window. I got up and looked out, and He raised his +hands, and seemed to call out without using any words. A dark mass +spread over the grass, coming on like the shape of a flame of fire; and +then He moved the mist to the right and left, and I could see that there +were thousands of rats with their eyes blazing red--like His, only +smaller. He held up his hand, and they all stopped; and I thought he +seemed to be saying: ‘All these lives will I give you, ay, and many more +and greater, through countless ages, if you will fall down and worship +me!’ And then a red cloud, like the colour of blood, seemed to close +over my eyes; and before I knew what I was doing, I found myself opening +the sash and saying to Him: ‘Come in, Lord and Master!’ The rats were +all gone, but He slid into the room through the sash, though it was only +open an inch wide--just as the Moon herself has often come in through +the tiniest crack and has stood before me in all her size and +splendour.” + +His voice was weaker, so I moistened his lips with the brandy again, and +he continued; but it seemed as though his memory had gone on working in +the interval for his story was further advanced. I was about to call him +back to the point, but Van Helsing whispered to me: “Let him go on. Do +not interrupt him; he cannot go back, and maybe could not proceed at all +if once he lost the thread of his thought.” He proceeded:-- + +“All day I waited to hear from him, but he did not send me anything, not +even a blow-fly, and when the moon got up I was pretty angry with him. +When he slid in through the window, though it was shut, and did not even +knock, I got mad with him. He sneered at me, and his white face looked +out of the mist with his red eyes gleaming, and he went on as though he +owned the whole place, and I was no one. He didn’t even smell the same +as he went by me. I couldn’t hold him. I thought that, somehow, Mrs. +Harker had come into the room.” + +The two men sitting on the bed stood up and came over, standing behind +him so that he could not see them, but where they could hear better. +They were both silent, but the Professor started and quivered; his face, +however, grew grimmer and sterner still. Renfield went on without +noticing:-- + +“When Mrs. Harker came in to see me this afternoon she wasn’t the same; +it was like tea after the teapot had been watered.” Here we all moved, +but no one said a word; he went on:-- + +“I didn’t know that she was here till she spoke; and she didn’t look the +same. I don’t care for the pale people; I like them with lots of blood +in them, and hers had all seemed to have run out. I didn’t think of it +at the time; but when she went away I began to think, and it made me mad +to know that He had been taking the life out of her.” I could feel that +the rest quivered, as I did, but we remained otherwise still. “So when +He came to-night I was ready for Him. I saw the mist stealing in, and I +grabbed it tight. I had heard that madmen have unnatural strength; and +as I knew I was a madman--at times anyhow--I resolved to use my power. +Ay, and He felt it too, for He had to come out of the mist to struggle +with me. I held tight; and I thought I was going to win, for I didn’t +mean Him to take any more of her life, till I saw His eyes. They burned +into me, and my strength became like water. He slipped through it, and +when I tried to cling to Him, He raised me up and flung me down. There +was a red cloud before me, and a noise like thunder, and the mist seemed +to steal away under the door.” His voice was becoming fainter and his +breath more stertorous. Van Helsing stood up instinctively. + +“We know the worst now,” he said. “He is here, and we know his purpose. +It may not be too late. Let us be armed--the same as we were the other +night, but lose no time; there is not an instant to spare.” There was no +need to put our fear, nay our conviction, into words--we shared them in +common. We all hurried and took from our rooms the same things that we +had when we entered the Count’s house. The Professor had his ready, and +as we met in the corridor he pointed to them significantly as he said:-- + +“They never leave me; and they shall not till this unhappy business is +over. Be wise also, my friends. It is no common enemy that we deal with. +Alas! alas! that that dear Madam Mina should suffer!” He stopped; his +voice was breaking, and I do not know if rage or terror predominated in +my own heart. + +Outside the Harkers’ door we paused. Art and Quincey held back, and the +latter said:-- + +“Should we disturb her?” + +“We must,” said Van Helsing grimly. “If the door be locked, I shall +break it in.” + +“May it not frighten her terribly? It is unusual to break into a lady’s +room!” + +Van Helsing said solemnly, “You are always right; but this is life and +death. All chambers are alike to the doctor; and even were they not they +are all as one to me to-night. Friend John, when I turn the handle, if +the door does not open, do you put your shoulder down and shove; and you +too, my friends. Now!” + +He turned the handle as he spoke, but the door did not yield. We threw +ourselves against it; with a crash it burst open, and we almost fell +headlong into the room. The Professor did actually fall, and I saw +across him as he gathered himself up from hands and knees. What I saw +appalled me. I felt my hair rise like bristles on the back of my neck, +and my heart seemed to stand still. + +The moonlight was so bright that through the thick yellow blind the room +was light enough to see. On the bed beside the window lay Thomas +Harker, his face flushed and breathing heavily as though in a stupor. +Kneeling on the near edge of the bed facing outwards was the white-clad +figure of his wife. By her side stood a tall, thin man, clad in black. +His face was turned from us, but the instant we saw we all recognised +the Count--in every way, even to the scar on his forehead. With his left +hand he held both Mrs. Harker’s hands, keeping them away with her arms +at full tension; his right hand gripped her by the back of the neck, +forcing her face down on his bosom. Her white nightdress was smeared +with blood, and a thin stream trickled down the man’s bare breast which +was shown by his torn-open dress. The attitude of the two had a terrible +resemblance to a child forcing a kitten’s nose into a saucer of milk to +compel it to drink. As we burst into the room, the Count turned his +face, and the hellish look that I had heard described seemed to leap +into it. His eyes flamed red with devilish passion; the great nostrils +of the white aquiline nose opened wide and quivered at the edge; and the +white sharp teeth, behind the full lips of the blood-dripping mouth, +champed together like those of a wild beast. With a wrench, which threw +his victim back upon the bed as though hurled from a height, he turned +and sprang at us. But by this time the Professor had gained his feet, +and was holding towards him the envelope which contained the Sacred +Wafer. The Count suddenly stopped, just as poor Lucy had done outside +the tomb, and cowered back. Further and further back he cowered, as we, +lifting our crucifixes, advanced. The moonlight suddenly failed, as a +great black cloud sailed across the sky; and when the gaslight sprang up +under Quincey’s match, we saw nothing but a faint vapour. This, as we +looked, trailed under the door, which with the recoil from its bursting +open, had swung back to its old position. Van Helsing, Art, and I moved +forward to Mrs. Harker, who by this time had drawn her breath and with +it had given a scream so wild, so ear-piercing, so despairing that it +seems to me now that it will ring in my ears till my dying day. For a +few seconds she lay in her helpless attitude and disarray. Her face was +ghastly, with a pallor which was accentuated by the blood which smeared +her lips and cheeks and chin; from her throat trickled a thin stream of +blood; her eyes were mad with terror. Then she put before her face her +poor crushed hands, which bore on their whiteness the red mark of the +Count’s terrible grip, and from behind them came a low desolate wail +which made the terrible scream seem only the quick expression of an +endless grief. Van Helsing stepped forward and drew the coverlet gently +over her body, whilst Art, after looking at her face for an instant +despairingly, ran out of the room. Van Helsing whispered to me:-- + +“Thomas is in a stupor such as we know the Vampire can produce. We can +do nothing with poor Madam Mina for a few moments till she recovers +herself; I must wake him!” He dipped the end of a towel in cold water +and with it began to flick him on the face, his wife all the while +holding her face between her hands and sobbing in a way that was +heart-breaking to hear. I raised the blind, and looked out of the +window. There was much moonshine; and as I looked I could see Quincey +Morris run across the lawn and hide himself in the shadow of a great +yew-tree. It puzzled me to think why he was doing this; but at the +instant I heard Harker’s quick exclamation as he woke to partial +consciousness, and turned to the bed. On his face, as there might well +be, was a look of wild amazement. He seemed dazed for a few seconds, and +then full consciousness seemed to burst upon him all at once, and he +started up. His wife was aroused by the quick movement, and turned to +him with her arms stretched out, as though to embrace him; instantly, +however, she drew them in again, and putting her elbows together, held +her hands before her face, and shuddered till the bed beneath her shook. + +“In God’s name what does this mean?” Harker cried out. “Dr. Seward, Dr. +Van Helsing, what is it? What has happened? What is wrong? Mina, dear, +what is it? What does that blood mean? My God, my God! has it come to +this!” and, raising himself to his knees, he beat his hands wildly +together. “Good God help us! help her! oh, help her!” With a quick +movement he jumped from bed, and began to pull on his clothes,--all the +man in him awake at the need for instant exertion. “What has happened? +Tell me all about it!” he cried without pausing. “Dr. Van Helsing, you +love Mina, I know. Oh, do something to save her. It cannot have gone too +far yet. Guard her while I look for _him_!” His wife, through her terror +and horror and distress, saw some sure danger to him: instantly +forgetting her own grief, she seized hold of him and cried out:-- + +“No! no! Thomas, you must not leave me. I have suffered enough +to-night, God knows, without the dread of his harming you. You must stay +with me. Stay with these friends who will watch over you!” Her +expression became frantic as she spoke; and, he yielding to her, she +pulled him down sitting on the bed side, and clung to him fiercely. + +Van Helsing and I tried to calm them both. The Professor held up his +little golden crucifix, and said with wonderful calmness:-- + +“Do not fear, my dear. We are here; and whilst this is close to you no +foul thing can approach. You are safe for to-night; and we must be calm +and take counsel together.” She shuddered and was silent, holding down +her head on her husband’s breast. When she raised it, his white +night-robe was stained with blood where her lips had touched, and where +the thin open wound in her neck had sent forth drops. The instant she +saw it she drew back, with a low wail, and whispered, amidst choking +sobs:-- + +“Unclean, unclean! I must touch him or kiss him no more. Oh, that it +should be that it is I who am now his worst enemy, and whom he may have +most cause to fear.” To this he spoke out resolutely:-- + +“Nonsense, Mina. It is a shame to me to hear such a word. I would not +hear it of you; and I shall not hear it from you. May God judge me by my +deserts, and punish me with more bitter suffering than even this hour, +if by any act or will of mine anything ever come between us!” He put out +his arms and folded her to his breast; and for a while she lay there +sobbing. He looked at us over her bowed head, with eyes that blinked +damply above his quivering nostrils; his mouth was set as steel. After a +while her sobs became less frequent and more faint, and then he said to +me, speaking with a studied calmness which I felt tried his nervous +power to the utmost:-- + +“And now, Dr. Seward, tell me all about it. Too well I know the broad +fact; tell me all that has been.” I told him exactly what had happened, +and he listened with seeming impassiveness; but his nostrils twitched +and his eyes blazed as I told how the ruthless hands of the Count had +held his wife in that terrible and horrid position, with her mouth to +the open wound in his breast. It interested me, even at that moment, to +see, that, whilst the face of white set passion worked convulsively over +the bowed head, the hands tenderly and lovingly stroked the ruffled +hair. Just as I had finished, Quincey and Godalming knocked at the door. +They entered in obedience to our summons. Van Helsing looked at me +questioningly. I understood him to mean if we were to take advantage of +their coming to divert if possible the thoughts of the unhappy husband +and wife from each other and from themselves; so on nodding acquiescence +to him he asked them what they had seen or done. To which Lord Godalming +answered:-- + +“I could not see him anywhere in the passage, or in any of our rooms. I +looked in the study but, though he had been there, he had gone. He had, +however----” He stopped suddenly, looking at the poor drooping figure on +the bed. Van Helsing said gravely:-- + +“Go on, friend Arthur. We want here no more concealments. Our hope now +is in knowing all. Tell freely!” So Art went on:-- + +“He had been there, and though it could only have been for a few +seconds, he made rare hay of the place. All the manuscript had been +burned, and the blue flames were flickering amongst the white ashes; the +cylinders of your phonograph too were thrown on the fire, and the wax +had helped the flames.” Here I interrupted. “Thank God there is the +other copy in the safe!” His face lit for a moment, but fell again as he +went on: “I ran downstairs then, but could see no sign of him. I looked +into Renfield’s room; but there was no trace there except----!” Again he +paused. “Go on,” said Harker hoarsely; so he bowed his head and +moistening his lips with his tongue, added: “except that the poor fellow +is dead.” Mrs. Harker raised her head, looking from one to the other of +us she said solemnly:-- + +“God’s will be done!” I could not but feel that Art was keeping back +something; but, as I took it that it was with a purpose, I said nothing. +Van Helsing turned to Morris and asked:-- + +“And you, friend Quincey, have you any to tell?” + +“A little,” he answered. “It may be much eventually, but at present I +can’t say. I thought it well to know if possible where the Count would +go when he left the house. I did not see him; but I saw a bat rise from +Renfield’s window, and flap westward. I expected to see him in some +shape go back to Carfax; but he evidently sought some other lair. He +will not be back to-night; for the sky is reddening in the east, and the +dawn is close. We must work to-morrow!” + +He said the latter words through his shut teeth. For a space of perhaps +a couple of minutes there was silence, and I could fancy that I could +hear the sound of our hearts beating; then Van Helsing said, placing his +hand very tenderly on Mrs. Harker’s head:-- + +“And now, Madam Mina--poor, dear, dear Madam Mina--tell us exactly what +happened. God knows that I do not want that you be pained; but it is +need that we know all. For now more than ever has all work to be done +quick and sharp, and in deadly earnest. The day is close to us that must +end all, if it may be so; and now is the chance that we may live and +learn.” + +The poor, dear lady shivered, and I could see the tension of her nerves +as she clasped her husband closer to her and bent her head lower and +lower still on his breast. Then she raised her head proudly, and held +out one hand to Van Helsing who took it in his, and, after stooping and +kissing it reverently, held it fast. The other hand was locked in that +of her husband, who held his other arm thrown round her protectingly. +After a pause in which she was evidently ordering her thoughts, she +began:-- + +“I took the sleeping draught which you had so kindly given me, but for a +long time it did not act. I seemed to become more wakeful, and myriads +of horrible fancies began to crowd in upon my mind--all of them +connected with death, and vampires; with blood, and pain, and trouble.” +Her husband involuntarily groaned as she turned to him and said +lovingly: “Do not fret, dear. You must be brave and strong, and help me +through the horrible task. If you only knew what an effort it is to me +to tell of this fearful thing at all, you would understand how much I +need your help. Well, I saw I must try to help the medicine to its work +with my will, if it was to do me any good, so I resolutely set myself to +sleep. Sure enough sleep must soon have come to me, for I remember no +more. Thomas coming in had not waked me, for he lay by my side when +next I remember. There was in the room the same thin white mist that I +had before noticed. But I forget now if you know of this; you will find +it in my diary which I shall show you later. I felt the same vague +terror which had come to me before and the same sense of some presence. +I turned to wake Thomas, but found that he slept so soundly that it +seemed as if it was he who had taken the sleeping draught, and not I. I +tried, but I could not wake him. This caused me a great fear, and I +looked around terrified. Then indeed, my heart sank within me: beside +the bed, as if he had stepped out of the mist--or rather as if the mist +had turned into his figure, for it had entirely disappeared--stood a +tall, thin man, all in black. I knew him at once from the description of +the others. The waxen face; the high aquiline nose, on which the light +fell in a thin white line; the parted red lips, with the sharp white +teeth showing between; and the red eyes that I had seemed to see in the +sunset on the windows of St. Mary’s Church at Whitby. I knew, too, the +red scar on his forehead where Thomas had struck him. For an instant +my heart stood still, and I would have screamed out, only that I was +paralysed. In the pause he spoke in a sort of keen, cutting whisper, +pointing as he spoke to Thomas:-- + +“‘Silence! If you make a sound I shall take him and dash his brains out +before your very eyes.’ I was appalled and was too bewildered to do or +say anything. With a mocking smile, he placed one hand upon my shoulder +and, holding me tight, bared my throat with the other, saying as he did +so, ‘First, a little refreshment to reward my exertions. You may as well +be quiet; it is not the first time, or the second, that your veins have +appeased my thirst!’ I was bewildered, and, strangely enough, I did not +want to hinder him. I suppose it is a part of the horrible curse that +such is, when his touch is on his victim. And oh, my God, my God, pity +me! He placed his reeking lips upon my throat!” Her husband groaned +again. She clasped his hand harder, and looked at him pityingly, as if +he were the injured one, and went on:-- + +“I felt my strength fading away, and I was in a half swoon. How long +this horrible thing lasted I know not; but it seemed that a long time +must have passed before he took his foul, awful, sneering mouth away. I +saw it drip with the fresh blood!” The remembrance seemed for a while to +overpower her, and she drooped and would have sunk down but for her +husband’s sustaining arm. With a great effort she recovered herself and +went on:-- + +“Then he spoke to me mockingly, ‘And so you, like the others, would play +your brains against mine. You would help these men to hunt me and +frustrate me in my designs! You know now, and they know in part already, +and will know in full before long, what it is to cross my path. They +should have kept their energies for use closer to home. Whilst they +played wits against me--against me who commanded nations, and intrigued +for them, and fought for them, hundreds of years before they were +born--I was countermining them. And you, their best beloved one, are now +to me, flesh of my flesh; blood of my blood; kin of my kin; my bountiful +wine-press for a while; and shall be later on my companion and my +helper. You shall be avenged in turn; for not one of them but shall +minister to your needs. But as yet you are to be punished for what you +have done. You have aided in thwarting me; now you shall come to my +call. When my brain says “Come!” to you, you shall cross land or sea to +do my bidding; and to that end this!’ With that he pulled open his +shirt, and with his long sharp nails opened a vein in his breast. When +the blood began to spurt out, he took my hands in one of his, holding +them tight, and with the other seized my neck and pressed my mouth to +the wound, so that I must either suffocate or swallow some of the---- Oh +my God! my God! what have I done? What have I done to deserve such a +fate, I who have tried to walk in meekness and righteousness all my +days. God pity me! Look down on a poor soul in worse than mortal peril; +and in mercy pity those to whom she is dear!” Then she began to rub her +lips as though to cleanse them from pollution. + +As she was telling her terrible story, the eastern sky began to quicken, +and everything became more and more clear. Harker was still and quiet; +but over his face, as the awful narrative went on, came a grey look +which deepened and deepened in the morning light, till when the first +red streak of the coming dawn shot up, the flesh stood darkly out +against the whitening hair. + +We have arranged that one of us is to stay within call of the unhappy +pair till we can meet together and arrange about taking action. + +Of this I am sure: the sun rises to-day on no more miserable house in +all the great round of its daily course. + + + + +CHAPTER XXII + +JONATHAN HARKER’S JOURNAL + + +_3 October._--As I must do something or go mad, I write this diary. It +is now six o’clock, and we are to meet in the study in half an hour and +take something to eat; for Dr. Van Helsing and Dr. Seward are agreed +that if we do not eat we cannot work our best. Our best will be, God +knows, required to-day. I must keep writing at every chance, for I dare +not stop to think. All, big and little, must go down; perhaps at the end +the little things may teach us most. The teaching, big or little, could +not have landed Mina or me anywhere worse than we are to-day. However, +we must trust and hope. Poor Mina told me just now, with the tears +running down her dear cheeks, that it is in trouble and trial that our +faith is tested--that we must keep on trusting; and that God will aid us +up to the end. The end! oh my God! what end?... To work! To work! + +When Dr. Van Helsing and Dr. Seward had come back from seeing poor +Renfield, we went gravely into what was to be done. First, Dr. Seward +told us that when he and Dr. Van Helsing had gone down to the room below +they had found Renfield lying on the floor, all in a heap. His face was +all bruised and crushed in, and the bones of the neck were broken. + +Dr. Seward asked the attendant who was on duty in the passage if he had +heard anything. He said that he had been sitting down--he confessed to +half dozing--when he heard loud voices in the room, and then Renfield +had called out loudly several times, “God! God! God!” after that there +was a sound of falling, and when he entered the room he found him lying +on the floor, face down, just as the doctors had seen him. Van Helsing +asked if he had heard “voices” or “a voice,” and he said he could not +say; that at first it had seemed to him as if there were two, but as +there was no one in the room it could have been only one. He could swear +to it, if required, that the word “God” was spoken by the patient. Dr. +Seward said to us, when we were alone, that he did not wish to go into +the matter; the question of an inquest had to be considered, and it +would never do to put forward the truth, as no one would believe it. As +it was, he thought that on the attendant’s evidence he could give a +certificate of death by misadventure in falling from bed. In case the +coroner should demand it, there would be a formal inquest, necessarily +to the same result. + +When the question began to be discussed as to what should be our next +step, the very first thing we decided was that Mina should be in full +confidence; that nothing of any sort--no matter how painful--should be +kept from her. She herself agreed as to its wisdom, and it was pitiful +to see her so brave and yet so sorrowful, and in such a depth of +despair. “There must be no concealment,” she said, “Alas! we have had +too much already. And besides there is nothing in all the world that can +give me more pain than I have already endured--than I suffer now! +Whatever may happen, it must be of new hope or of new courage to me!” +Van Helsing was looking at her fixedly as she spoke, and said, suddenly +but quietly:-- + +“But dear Madam Mina, are you not afraid; not for yourself, but for +others from yourself, after what has happened?” Her face grew set in its +lines, but her eyes shone with the devotion of a martyr as she +answered:-- + +“Ah no! for my mind is made up!” + +“To what?” he asked gently, whilst we were all very still; for each in +our own way we had a sort of vague idea of what she meant. Her answer +came with direct simplicity, as though she were simply stating a fact:-- + +“Because if I find in myself--and I shall watch keenly for it--a sign of +harm to any that I love, I shall die!” + +“You would not kill yourself?” he asked, hoarsely. + +“I would; if there were no friend who loved me, who would save me such a +pain, and so desperate an effort!” She looked at him meaningly as she +spoke. He was sitting down; but now he rose and came close to her and +put his hand on her head as he said solemnly: + +“My child, there is such an one if it were for your good. For myself I +could hold it in my account with God to find such an euthanasia for you, +even at this moment if it were best. Nay, were it safe! But my +child----” For a moment he seemed choked, and a great sob rose in his +throat; he gulped it down and went on:-- + +“There are here some who would stand between you and death. You must not +die. You must not die by any hand; but least of all by your own. Until +the other, who has fouled your sweet life, is true dead you must not +die; for if he is still with the quick Un-Dead, your death would make +you even as he is. No, you must live! You must struggle and strive to +live, though death would seem a boon unspeakable. You must fight Death +himself, though he come to you in pain or in joy; by the day, or the +night; in safety or in peril! On your living soul I charge you that you +do not die--nay, nor think of death--till this great evil be past.” The +poor dear grew white as death, and shock and shivered, as I have seen a +quicksand shake and shiver at the incoming of the tide. We were all +silent; we could do nothing. At length she grew more calm and turning to +him said, sweetly, but oh! so sorrowfully, as she held out her hand:-- + +“I promise you, my dear friend, that if God will let me live, I shall +strive to do so; till, if it may be in His good time, this horror may +have passed away from me.” She was so good and brave that we all felt +that our hearts were strengthened to work and endure for her, and we +began to discuss what we were to do. I told her that she was to have all +the papers in the safe, and all the papers or diaries and phonographs we +might hereafter use; and was to keep the record as she had done before. +She was pleased with the prospect of anything to do--if “pleased” could +be used in connection with so grim an interest. + +As usual Van Helsing had thought ahead of everyone else, and was +prepared with an exact ordering of our work. + +“It is perhaps well,” he said, “that at our meeting after our visit to +Carfax we decided not to do anything with the earth-boxes that lay +there. Had we done so, the Count must have guessed our purpose, and +would doubtless have taken measures in advance to frustrate such an +effort with regard to the others; but now he does not know our +intentions. Nay, more, in all probability, he does not know that such a +power exists to us as can sterilise his lairs, so that he cannot use +them as of old. We are now so much further advanced in our knowledge as +to their disposition that, when we have examined the house in +Piccadilly, we may track the very last of them. To-day, then, is ours; +and in it rests our hope. The sun that rose on our sorrow this morning +guards us in its course. Until it sets to-night, that monster must +retain whatever form he now has. He is confined within the limitations +of his earthly envelope. He cannot melt into thin air nor disappear +through cracks or chinks or crannies. If he go through a doorway, he +must open the door like a mortal. And so we have this day to hunt out +all his lairs and sterilise them. So we shall, if we have not yet catch +him and destroy him, drive him to bay in some place where the catching +and the destroying shall be, in time, sure.” Here I started up for I +could not contain myself at the thought that the minutes and seconds so +preciously laden with Mina’s life and happiness were flying from us, +since whilst we talked action was impossible. But Van Helsing held up +his hand warningly. “Nay, friend Thomas,” he said, “in this, the +quickest way home is the longest way, so your proverb say. We shall all +act and act with desperate quick, when the time has come. But think, in +all probable the key of the situation is in that house in Piccadilly. +The Count may have many houses which he has bought. Of them he will have +deeds of purchase, keys and other things. He will have paper that he +write on; he will have his book of cheques. There are many belongings +that he must have somewhere; why not in this place so central, so quiet, +where he come and go by the front or the back at all hour, when in the +very vast of the traffic there is none to notice. We shall go there and +search that house; and when we learn what it holds, then we do what our +friend Arthur call, in his phrases of hunt ‘stop the earths’ and so we +run down our old fox--so? is it not?” + +“Then let us come at once,” I cried, “we are wasting the precious, +precious time!” The Professor did not move, but simply said:-- + +“And how are we to get into that house in Piccadilly?” + +“Any way!” I cried. “We shall break in if need be.” + +“And your police; where will they be, and what will they say?” + +I was staggered; but I knew that if he wished to delay he had a good +reason for it. So I said, as quietly as I could:-- + +“Don’t wait more than need be; you know, I am sure, what torture I am +in.” + +“Ah, my child, that I do; and indeed there is no wish of me to add to +your anguish. But just think, what can we do, until all the world be at +movement. Then will come our time. I have thought and thought, and it +seems to me that the simplest way is the best of all. Now we wish to get +into the house, but we have no key; is it not so?” I nodded. + +“Now suppose that you were, in truth, the owner of that house, and could +not still get in; and think there was to you no conscience of the +housebreaker, what would you do?” + +“I should get a respectable locksmith, and set him to work to pick the +lock for me.” + +“And your police, they would interfere, would they not?” + +“Oh, no! not if they knew the man was properly employed.” + +“Then,” he looked at me as keenly as he spoke, “all that is in doubt is +the conscience of the employer, and the belief of your policemen as to +whether or no that employer has a good conscience or a bad one. Your +police must indeed be zealous men and clever--oh, so clever!--in reading +the heart, that they trouble themselves in such matter. No, no, my +friend Thomas, you go take the lock off a hundred empty house in this +your London, or of any city in the world; and if you do it as such +things are rightly done, and at the time such things are rightly done, +no one will interfere. I have read of a gentleman who owned a so fine +house in London, and when he went for months of summer to Switzerland +and lock up his house, some burglar came and broke window at back and +got in. Then he went and made open the shutters in front and walk out +and in through the door, before the very eyes of the police. Then he +have an auction in that house, and advertise it, and put up big notice; +and when the day come he sell off by a great auctioneer all the goods of +that other man who own them. Then he go to a builder, and he sell him +that house, making an agreement that he pull it down and take all away +within a certain time. And your police and other authority help him all +they can. And when that owner come back from his holiday in Switzerland +he find only an empty hole where his house had been. This was all done +_en règle_; and in our work we shall be _en règle_ too. We shall not go +so early that the policemen who have then little to think of, shall deem +it strange; but we shall go after ten o’clock, when there are many +about, and such things would be done were we indeed owners of the +house.” + +I could not but see how right he was and the terrible despair of Mina’s +face became relaxed a thought; there was hope in such good counsel. Van +Helsing went on:-- + +“When once within that house we may find more clues; at any rate some of +us can remain there whilst the rest find the other places where there be +more earth-boxes--at Bermondsey and Mile End.” + +Lord Godalming stood up. “I can be of some use here,” he said. “I shall +wire to my people to have horses and carriages where they will be most +convenient.” + +“Look here, old fellow,” said Morris, “it is a capital idea to have all +ready in case we want to go horsebacking; but don’t you think that one +of your snappy carriages with its heraldic adornments in a byway of +Walworth or Mile End would attract too much attention for our purposes? +It seems to me that we ought to take cabs when we go south or east; and +even leave them somewhere near the neighbourhood we are going to.” + +“Friend Quincey is right!” said the Professor. “His head is what you +call in plane with the horizon. It is a difficult thing that we go to +do, and we do not want no peoples to watch us if so it may.” + +Mina took a growing interest in everything and I was rejoiced to see +that the exigency of affairs was helping her to forget for a time the +terrible experience of the night. She was very, very pale--almost +ghastly, and so thin that her lips were drawn away, showing her teeth in +somewhat of prominence. I did not mention this last, lest it should give +her needless pain; but it made my blood run cold in my veins to think of +what had occurred with poor Lucy when the Count had sucked her blood. As +yet there was no sign of the teeth growing sharper; but the time as yet +was short, and there was time for fear. + +When we came to the discussion of the sequence of our efforts and of the +disposition of our forces, there were new sources of doubt. It was +finally agreed that before starting for Piccadilly we should destroy the +Count’s lair close at hand. In case he should find it out too soon, we +should thus be still ahead of him in our work of destruction; and his +presence in his purely material shape, and at his weakest, might give us +some new clue. + +As to the disposal of forces, it was suggested by the Professor that, +after our visit to Carfax, we should all enter the house in Piccadilly; +that the two doctors and I should remain there, whilst Lord Godalming +and Quincey found the lairs at Walworth and Mile End and destroyed them. +It was possible, if not likely, the Professor urged, that the Count +might appear in Piccadilly during the day, and that if so we might be +able to cope with him then and there. At any rate, we might be able to +follow him in force. To this plan I strenuously objected, and so far as +my going was concerned, for I said that I intended to stay and protect +Mina, I thought that my mind was made up on the subject; but Mina would +not listen to my objection. She said that there might be some law matter +in which I could be useful; that amongst the Count’s papers might be +some clue which I could understand out of my experience in Transylvania; +and that, as it was, all the strength we could muster was required to +cope with the Count’s extraordinary power. I had to give in, for Mina’s +resolution was fixed; she said that it was the last hope for _her_ that +we should all work together. “As for me,” she said, “I have no fear. +Things have been as bad as they can be; and whatever may happen must +have in it some element of hope or comfort. Go, my husband! God can, if +He wishes it, guard me as well alone as with any one present.” So I +started up crying out: “Then in God’s name let us come at once, for we +are losing time. The Count may come to Piccadilly earlier than we +think.” + +“Not so!” said Van Helsing, holding up his hand. + +“But why?” I asked. + +“Do you forget,” he said, with actually a smile, “that last night he +banqueted heavily, and will sleep late?” + +Did I forget! shall I ever--can I ever! Can any of us ever forget that +terrible scene! Mina struggled hard to keep her brave countenance; but +the pain overmastered her and she put her hands before her face, and +shuddered whilst she moaned. Van Helsing had not intended to recall her +frightful experience. He had simply lost sight of her and her part in +the affair in his intellectual effort. When it struck him what he said, +he was horrified at his thoughtlessness and tried to comfort her. “Oh, +Madam Mina,” he said, “dear, dear Madam Mina, alas! that I of all who so +reverence you should have said anything so forgetful. These stupid old +lips of mine and this stupid old head do not deserve so; but you will +forget it, will you not?” He bent low beside her as he spoke; she took +his hand, and looking at him through her tears, said hoarsely:-- + +“No, I shall not forget, for it is well that I remember; and with it I +have so much in memory of you that is sweet, that I take it all +together. Now, you must all be going soon. Breakfast is ready, and we +must all eat that we may be strong.” + +Breakfast was a strange meal to us all. We tried to be cheerful and +encourage each other, and Mina was the brightest and most cheerful of +us. When it was over, Van Helsing stood up and said:-- + +“Now, my dear friends, we go forth to our terrible enterprise. Are we +all armed, as we were on that night when first we visited our enemy’s +lair; armed against ghostly as well as carnal attack?” We all assured +him. “Then it is well. Now, Madam Mina, you are in any case _quite_ safe +here until the sunset; and before then we shall return--if---- We shall +return! But before we go let me see you armed against personal attack. I +have myself, since you came down, prepared your chamber by the placing +of things of which we know, so that He may not enter. Now let me guard +yourself. On your forehead I touch this piece of Sacred Wafer in the +name of the Father, the Son, and----” + +There was a fearful scream which almost froze our hearts to hear. As he +had placed the Wafer on Mina’s forehead, it had seared it--had burned +into the flesh as though it had been a piece of white-hot metal. My poor +darling’s brain had told her the significance of the fact as quickly as +her nerves received the pain of it; and the two so overwhelmed her that +her overwrought nature had its voice in that dreadful scream. But the +words to her thought came quickly; the echo of the scream had not ceased +to ring on the air when there came the reaction, and she sank on her +knees on the floor in an agony of abasement. Pulling her beautiful hair +over her face, as the leper of old his mantle, she wailed out:-- + +“Unclean! Unclean! Even the Almighty shuns my polluted flesh! I must +bear this mark of shame upon my forehead until the Judgment Day.” They +all paused. I had thrown myself beside her in an agony of helpless +grief, and putting my arms around held her tight. For a few minutes our +sorrowful hearts beat together, whilst the friends around us turned away +their eyes that ran tears silently. Then Van Helsing turned and said +gravely; so gravely that I could not help feeling that he was in some +way inspired, and was stating things outside himself:-- + +“It may be that you may have to bear that mark till God himself see fit, +as He most surely shall, on the Judgment Day, to redress all wrongs of +the earth and of His children that He has placed thereon. And oh, Madam +Mina, my dear, my dear, may we who love you be there to see, when that +red scar, the sign of God’s knowledge of what has been, shall pass away, +and leave your forehead as pure as the heart we know. For so surely as +we live, that scar shall pass away when God sees right to lift the +burden that is hard upon us. Till then we bear our Cross, as His Son did +in obedience to His Will. It may be that we are chosen instruments of +His good pleasure, and that we ascend to His bidding as that other +through stripes and shame; through tears and blood; through doubts and +fears, and all that makes the difference between God and man.” + +There was hope in his words, and comfort; and they made for resignation. +Mina and I both felt so, and simultaneously we each took one of the old +man’s hands and bent over and kissed it. Then without a word we all +knelt down together, and, all holding hands, swore to be true to each +other. We men pledged ourselves to raise the veil of sorrow from the +head of her whom, each in his own way, we loved; and we prayed for help +and guidance in the terrible task which lay before us. + +It was then time to start. So I said farewell to Mina, a parting which +neither of us shall forget to our dying day; and we set out. + +To one thing I have made up my mind: if we find out that Mina must be a +vampire in the end, then she shall not go into that unknown and terrible +land alone. I suppose it is thus that in old times one vampire meant +many; just as their hideous bodies could only rest in sacred earth, so +the holiest love was the recruiting sergeant for their ghastly ranks. + +We entered Carfax without trouble and found all things the same as on +the first occasion. It was hard to believe that amongst so prosaic +surroundings of neglect and dust and decay there was any ground for such +fear as already we knew. Had not our minds been made up, and had there +not been terrible memories to spur us on, we could hardly have proceeded +with our task. We found no papers, or any sign of use in the house; and +in the old chapel the great boxes looked just as we had seen them last. +Dr. Van Helsing said to us solemnly as we stood before them:-- + +“And now, my friends, we have a duty here to do. We must sterilise this +earth, so sacred of holy memories, that he has brought from a far +distant land for such fell use. He has chosen this earth because it has +been holy. Thus we defeat him with his own weapon, for we make it more +holy still. It was sanctified to such use of man, now we sanctify it to +God.” As he spoke he took from his bag a screwdriver and a wrench, and +very soon the top of one of the cases was thrown open. The earth smelled +musty and close; but we did not somehow seem to mind, for our attention +was concentrated on the Professor. Taking from his box a piece of the +Sacred Wafer he laid it reverently on the earth, and then shutting down +the lid began to screw it home, we aiding him as he worked. + +One by one we treated in the same way each of the great boxes, and left +them as we had found them to all appearance; but in each was a portion +of the Host. + +When we closed the door behind us, the Professor said solemnly:-- + +“So much is already done. If it may be that with all the others we can +be so successful, then the sunset of this evening may shine on Madam +Mina’s forehead all white as ivory and with no stain!” + +As we passed across the lawn on our way to the station to catch our +train we could see the front of the asylum. I looked eagerly, and in the +window of my own room saw Mina. I waved my hand to her, and nodded to +tell that our work there was successfully accomplished. She nodded in +reply to show that she understood. The last I saw, she was waving her +hand in farewell. It was with a heavy heart that we sought the station +and just caught the train, which was steaming in as we reached the +platform. + +I have written this in the train. + + * * * * * + +_Piccadilly, 12:30 o’clock._--Just before we reached Fenchurch Street +Lord Godalming said to me:-- + +“Quincey and I will find a locksmith. You had better not come with us in +case there should be any difficulty; for under the circumstances it +wouldn’t seem so bad for us to break into an empty house. But you are a +solicitor and the Incorporated Law Society might tell you that you +should have known better.” I demurred as to my not sharing any danger +even of odium, but he went on: “Besides, it will attract less attention +if there are not too many of us. My title will make it all right with +the locksmith, and with any policeman that may come along. You had +better go with Jack and the Professor and stay in the Green Park, +somewhere in sight of the house; and when you see the door opened and +the smith has gone away, do you all come across. We shall be on the +lookout for you, and shall let you in.” + +“The advice is good!” said Van Helsing, so we said no more. Godalming +and Morris hurried off in a cab, we following in another. At the corner +of Arlington Street our contingent got out and strolled into the Green +Park. My heart beat as I saw the house on which so much of our hope was +centred, looming up grim and silent in its deserted condition amongst +its more lively and spruce-looking neighbours. We sat down on a bench +within good view, and began to smoke cigars so as to attract as little +attention as possible. The minutes seemed to pass with leaden feet as we +waited for the coming of the others. + +At length we saw a four-wheeler drive up. Out of it, in leisurely +fashion, got Lord Godalming and Morris; and down from the box descended +a thick-set working man with his rush-woven basket of tools. Morris paid +the cabman, who touched his hat and drove away. Together the two +ascended the steps, and Lord Godalming pointed out what he wanted done. +The workman took off his coat leisurely and hung it on one of the spikes +of the rail, saying something to a policeman who just then sauntered +along. The policeman nodded acquiescence, and the man kneeling down +placed his bag beside him. After searching through it, he took out a +selection of tools which he produced to lay beside him in orderly +fashion. Then he stood up, looked into the keyhole, blew into it, and +turning to his employers, made some remark. Lord Godalming smiled, and +the man lifted a good-sized bunch of keys; selecting one of them, he +began to probe the lock, as if feeling his way with it. After fumbling +about for a bit he tried a second, and then a third. All at once the +door opened under a slight push from him, and he and the two others +entered the hall. We sat still; my own cigar burnt furiously, but Van +Helsing’s went cold altogether. We waited patiently as we saw the +workman come out and bring in his bag. Then he held the door partly +open, steadying it with his knees, whilst he fitted a key to the lock. +This he finally handed to Lord Godalming, who took out his purse and +gave him something. The man touched his hat, took his bag, put on his +coat and departed; not a soul took the slightest notice of the whole +transaction. + +When the man had fairly gone, we three crossed the street and knocked at +the door. It was immediately opened by Quincey Morris, beside whom stood +Lord Godalming lighting a cigar. + +“The place smells so vilely,” said the latter as we came in. It did +indeed smell vilely--like the old chapel at Carfax--and with our +previous experience it was plain to us that the Count had been using the +place pretty freely. We moved to explore the house, all keeping together +in case of attack; for we knew we had a strong and wily enemy to deal +with, and as yet we did not know whether the Count might not be in the +house. In the dining-room, which lay at the back of the hall, we found +eight boxes of earth. Eight boxes only out of the nine, which we sought! +Our work was not over, and would never be until we should have found the +missing box. First we opened the shutters of the window which looked out +across a narrow stone-flagged yard at the blank face of a stable, +pointed to look like the front of a miniature house. There were no +windows in it, so we were not afraid of being over-looked. We did not +lose any time in examining the chests. With the tools which we had +brought with us we opened them, one by one, and treated them as we had +treated those others in the old chapel. It was evident to us that the +Count was not at present in the house, and we proceeded to search for +any of his effects. + +After a cursory glance at the rest of the rooms, from basement to attic, +we came to the conclusion that the dining-room contained any effects +which might belong to the Count; and so we proceeded to minutely examine +them. They lay in a sort of orderly disorder on the great dining-room +table. There were title deeds of the Piccadilly house in a great bundle; +deeds of the purchase of the houses at Mile End and Bermondsey; +note-paper, envelopes, and pens and ink. All were covered up in thin +wrapping paper to keep them from the dust. There were also a clothes +brush, a brush and comb, and a jug and basin--the latter containing +dirty water which was reddened as if with blood. Last of all was a +little heap of keys of all sorts and sizes, probably those belonging to +the other houses. When we had examined this last find, Lord Godalming +and Quincey Morris taking accurate notes of the various addresses of the +houses in the East and the South, took with them the keys in a great +bunch, and set out to destroy the boxes in these places. The rest of us +are, with what patience we can, waiting their return--or the coming of +the Count. + + + + +CHAPTER XXIII + +DR. SEWARD’S DIARY + + +_3 October._--The time seemed terribly long whilst we were waiting for +the coming of Godalming and Quincey Morris. The Professor tried to keep +our minds active by using them all the time. I could see his beneficent +purpose, by the side glances which he threw from time to time at Harker. +The poor fellow is overwhelmed in a misery that is appalling to see. +Last night he was a frank, happy-looking man, with strong, youthful +face, full of energy, and with dark brown hair. To-day he is a drawn, +haggard old man, whose white hair matches well with the hollow burning +eyes and grief-written lines of his face. His energy is still intact; in +fact, he is like a living flame. This may yet be his salvation, for, if +all go well, it will tide him over the despairing period; he will then, +in a kind of way, wake again to the realities of life. Poor fellow, I +thought my own trouble was bad enough, but his----! The Professor knows +this well enough, and is doing his best to keep his mind active. What he +has been saying was, under the circumstances, of absorbing interest. So +well as I can remember, here it is:-- + +“I have studied, over and over again since they came into my hands, all +the papers relating to this monster; and the more I have studied, the +greater seems the necessity to utterly stamp him out. All through there +are signs of his advance; not only of his power, but of his knowledge of +it. As I learned from the researches of my friend Arminus of Buda-Pesth, +he was in life a most wonderful man. Soldier, statesman, and +alchemist--which latter was the highest development of the +science-knowledge of his time. He had a mighty brain, a learning beyond +compare, and a heart that knew no fear and no remorse. He dared even to +attend the Scholomance, and there was no branch of knowledge of his time +that he did not essay. Well, in him the brain powers survived the +physical death; though it would seem that memory was not all complete. +In some faculties of mind he has been, and is, only a child; but he is +growing, and some things that were childish at the first are now of +man’s stature. He is experimenting, and doing it well; and if it had not +been that we have crossed his path he would be yet--he may be yet if we +fail--the father or furtherer of a new order of beings, whose road must +lead through Death, not Life.” + +Harker groaned and said, “And this is all arrayed against my darling! +But how is he experimenting? The knowledge may help us to defeat him!” + +“He has all along, since his coming, been trying his power, slowly but +surely; that big child-brain of his is working. Well for us, it is, as +yet, a child-brain; for had he dared, at the first, to attempt certain +things he would long ago have been beyond our power. However, he means +to succeed, and a man who has centuries before him can afford to wait +and to go slow. _Festina lente_ may well be his motto.” + +“I fail to understand,” said Harker wearily. “Oh, do be more plain to +me! Perhaps grief and trouble are dulling my brain.” + +The Professor laid his hand tenderly on his shoulder as he spoke:-- + +“Ah, my child, I will be plain. Do you not see how, of late, this +monster has been creeping into knowledge experimentally. How he has been +making use of the zoöphagous patient to effect his entry into friend +John’s home; for your Vampire, though in all afterwards he can come when +and how he will, must at the first make entry only when asked thereto by +an inmate. But these are not his most important experiments. Do we not +see how at the first all these so great boxes were moved by others. He +knew not then but that must be so. But all the time that so great +child-brain of his was growing, and he began to consider whether he +might not himself move the box. So he began to help; and then, when he +found that this be all-right, he try to move them all alone. And so he +progress, and he scatter these graves of him; and none but he know where +they are hidden. He may have intend to bury them deep in the ground. So +that he only use them in the night, or at such time as he can change his +form, they do him equal well; and none may know these are his +hiding-place! But, my child, do not despair; this knowledge come to him +just too late! Already all of his lairs but one be sterilise as for him; +and before the sunset this shall be so. Then he have no place where he +can move and hide. I delayed this morning that so we might be sure. Is +there not more at stake for us than for him? Then why we not be even +more careful than him? By my clock it is one hour and already, if all be +well, friend Arthur and Quincey are on their way to us. To-day is our +day, and we must go sure, if slow, and lose no chance. See! there are +five of us when those absent ones return.” + +Whilst he was speaking we were startled by a knock at the hall door, the +double postman’s knock of the telegraph boy. We all moved out to the +hall with one impulse, and Van Helsing, holding up his hand to us to +keep silence, stepped to the door and opened it. The boy handed in a +despatch. The Professor closed the door again, and, after looking at the +direction, opened it and read aloud. + +“Look out for D. He has just now, 12:45, come from Carfax hurriedly and +hastened towards the South. He seems to be going the round and may want +to see you: Mina.” + +There was a pause, broken by Thomas Harker’s voice:-- + +“Now, God be thanked, we shall soon meet!” Van Helsing turned to him +quickly and said:-- + +“God will act in His own way and time. Do not fear, and do not rejoice +as yet; for what we wish for at the moment may be our undoings.” + +“I care for nothing now,” he answered hotly, “except to wipe out this +brute from the face of creation. I would sell my soul to do it!” + +“Oh, hush, hush, my child!” said Van Helsing. “God does not purchase +souls in this wise; and the Devil, though he may purchase, does not keep +faith. But God is merciful and just, and knows your pain and your +devotion to that dear Madam Mina. Think you, how her pain would be +doubled, did she but hear your wild words. Do not fear any of us, we are +all devoted to this cause, and to-day shall see the end. The time is +coming for action; to-day this Vampire is limit to the powers of man, +and till sunset he may not change. It will take him time to arrive +here--see, it is twenty minutes past one--and there are yet some times +before he can hither come, be he never so quick. What we must hope for +is that my Lord Arthur and Quincey arrive first.” + +About half an hour after we had received Mrs. Harker’s telegram, there +came a quiet, resolute knock at the hall door. It was just an ordinary +knock, such as is given hourly by thousands of gentlemen, but it made +the Professor’s heart and mine beat loudly. We looked at each other, and +together moved out into the hall; we each held ready to use our various +armaments--the spiritual in the left hand, the mortal in the right. Van +Helsing pulled back the latch, and, holding the door half open, stood +back, having both hands ready for action. The gladness of our hearts +must have shown upon our faces when on the step, close to the door, we +saw Lord Godalming and Quincey Morris. They came quickly in and closed +the door behind them, the former saying, as they moved along the +hall:-- + +“It is all right. We found both places; six boxes in each and we +destroyed them all!” + +“Destroyed?” asked the Professor. + +“For him!” We were silent for a minute, and then Quincey said:-- + +“There’s nothing to do but to wait here. If, however, he doesn’t turn up +by five o’clock, we must start off; for it won’t do to leave Mrs. Harker +alone after sunset.” + +“He will be here before long now,” said Van Helsing, who had been +consulting his pocket-book. “_Nota bene_, in Madam’s telegram he went +south from Carfax, that means he went to cross the river, and he could +only do so at slack of tide, which should be something before one +o’clock. That he went south has a meaning for us. He is as yet only +suspicious; and he went from Carfax first to the place where he would +suspect interference least. You must have been at Bermondsey only a +short time before him. That he is not here already shows that he went to +Mile End next. This took him some time; for he would then have to be +carried over the river in some way. Believe me, my friends, we shall not +have long to wait now. We should have ready some plan of attack, so that +we may throw away no chance. Hush, there is no time now. Have all your +arms! Be ready!” He held up a warning hand as he spoke, for we all could +hear a key softly inserted in the lock of the hall door. + +I could not but admire, even at such a moment, the way in which a +dominant spirit asserted itself. In all our hunting parties and +adventures in different parts of the world, Quincey Morris had always +been the one to arrange the plan of action, and Arthur and I had been +accustomed to obey him implicitly. Now, the old habit seemed to be +renewed instinctively. With a swift glance around the room, he at once +laid out our plan of attack, and, without speaking a word, with a +gesture, placed us each in position. Van Helsing, Harker, and I were +just behind the door, so that when it was opened the Professor could +guard it whilst we two stepped between the incomer and the door. +Godalming behind and Quincey in front stood just out of sight ready to +move in front of the window. We waited in a suspense that made the +seconds pass with nightmare slowness. The slow, careful steps came along +the hall; the Count was evidently prepared for some surprise--at least +he feared it. + +Suddenly with a single bound he leaped into the room, winning a way past +us before any of us could raise a hand to stay him. There was something +so panther-like in the movement--something so unhuman, that it seemed +to sober us all from the shock of his coming. The first to act was +Harker, who, with a quick movement, threw himself before the door +leading into the room in the front of the house. As the Count saw us, a +horrible sort of snarl passed over his face, showing the eye-teeth long +and pointed; but the evil smile as quickly passed into a cold stare of +lion-like disdain. His expression again changed as, with a single +impulse, we all advanced upon him. It was a pity that we had not some +better organised plan of attack, for even at the moment I wondered what +we were to do. I did not myself know whether our lethal weapons would +avail us anything. Harker evidently meant to try the matter, for he had +ready his great Kukri knife and made a fierce and sudden cut at him. The +blow was a powerful one; only the diabolical quickness of the Count’s +leap back saved him. A second less and the trenchant blade had shorne +through his heart. As it was, the point just cut the cloth of his coat, +making a wide gap whence a bundle of bank-notes and a stream of gold +fell out. The expression of the Count’s face was so hellish, that for a +moment I feared for Harker, though I saw him throw the terrible knife +aloft again for another stroke. Instinctively I moved forward with a +protective impulse, holding the Crucifix and Wafer in my left hand. I +felt a mighty power fly along my arm; and it was without surprise that I +saw the monster cower back before a similar movement made spontaneously +by each one of us. It would be impossible to describe the expression of +hate and baffled malignity--of anger and hellish rage--which came over +the Count’s face. His waxen hue became greenish-yellow by the contrast +of his burning eyes, and the red scar on the forehead showed on the +pallid skin like a palpitating wound. The next instant, with a sinuous +dive he swept under Harker’s arm, ere his blow could fall, and, grasping +a handful of the money from the floor, dashed across the room, threw +himself at the window. Amid the crash and glitter of the falling glass, +he tumbled into the flagged area below. Through the sound of the +shivering glass I could hear the “ting” of the gold, as some of the +sovereigns fell on the flagging. + +We ran over and saw him spring unhurt from the ground. He, rushing up +the steps, crossed the flagged yard, and pushed open the stable door. +There he turned and spoke to us:-- + +“You think to baffle me, you--with your pale faces all in a row, like +sheep in a butcher’s. You shall be sorry yet, each one of you! You think +you have left me without a place to rest; but I have more. My revenge is +just begun! I spread it over centuries, and time is on my side. Your +girls that you all love are mine already; and through them you and +others shall yet be mine--my creatures, to do my bidding and to be my +jackals when I want to feed. Bah!” With a contemptuous sneer, he passed +quickly through the door, and we heard the rusty bolt creak as he +fastened it behind him. A door beyond opened and shut. The first of us +to speak was the Professor, as, realising the difficulty of following +him through the stable, we moved toward the hall. + +“We have learnt something--much! Notwithstanding his brave words, he +fears us; he fear time, he fear want! For if not, why he hurry so? His +very tone betray him, or my ears deceive. Why take that money? You +follow quick. You are hunters of wild beast, and understand it so. For +me, I make sure that nothing here may be of use to him, if so that he +return.” As he spoke he put the money remaining into his pocket; took +the title-deeds in the bundle as Harker had left them, and swept the +remaining things into the open fireplace, where he set fire to them with +a match. + +Godalming and Morris had rushed out into the yard, and Harker had +lowered himself from the window to follow the Count. He had, however, +bolted the stable door; and by the time they had forced it open there +was no sign of him. Van Helsing and I tried to make inquiry at the back +of the house; but the mews was deserted and no one had seen him depart. + +It was now late in the afternoon, and sunset was not far off. We had to +recognise that our game was up; with heavy hearts we agreed with the +Professor when he said:-- + +“Let us go back to Madam Mina--poor, poor dear Madam Mina. All we can do +just now is done; and we can there, at least, protect her. But we need +not despair. There is but one more earth-box, and we must try to find +it; when that is done all may yet be well.” I could see that he spoke as +bravely as he could to comfort Harker. The poor fellow was quite broken +down; now and again he gave a low groan which he could not suppress--he +was thinking of his wife. + +With sad hearts we came back to my house, where we found Mrs. Harker +waiting us, with an appearance of cheerfulness which did honour to her +bravery and unselfishness. When she saw our faces, her own became as +pale as death: for a second or two her eyes were closed as if she were +in secret prayer; and then she said cheerfully:-- + +“I can never thank you all enough. Oh, my poor darling!” As she spoke, +she took her husband’s grey head in her hands and kissed it--“Lay your +poor head here and rest it. All will yet be well, dear! God will protect +us if He so will it in His good intent.” The poor fellow groaned. There +was no place for words in his sublime misery. + +We had a sort of perfunctory supper together, and I think it cheered us +all up somewhat. It was, perhaps, the mere animal heat of food to hungry +people--for none of us had eaten anything since breakfast--or the sense +of companionship may have helped us; but anyhow we were all less +miserable, and saw the morrow as not altogether without hope. True to +our promise, we told Mrs. Harker everything which had passed; and +although she grew snowy white at times when danger had seemed to +threaten her husband, and red at others when his devotion to her was +manifested, she listened bravely and with calmness. When we came to the +part where Harker had rushed at the Count so recklessly, she clung to +her husband’s arm, and held it tight as though her clinging could +protect him from any harm that might come. She said nothing, however, +till the narration was all done, and matters had been brought right up +to the present time. Then without letting go her husband’s hand she +stood up amongst us and spoke. Oh, that I could give any idea of the +scene; of that sweet, sweet, good, good woman in all the radiant beauty +of her youth and animation, with the red scar on her forehead, of which +she was conscious, and which we saw with grinding of our +teeth--remembering whence and how it came; her loving kindness against +our grim hate; her tender faith against all our fears and doubting; and +we, knowing that so far as symbols went, she with all her goodness and +purity and faith, was outcast from God. + +“Thomas,” she said, and the word sounded like music on her lips it was +so full of love and tenderness, “Thomas dear, and you all my true, +true friends, I want you to bear something in mind through all this +dreadful time. I know that you must fight--that you must destroy even as +you destroyed the false Lucy so that the true Lucy might live hereafter; +but it is not a work of hate. That poor soul who has wrought all this +misery is the saddest case of all. Just think what will be his joy when +he, too, is destroyed in his worser part that his better part may have +spiritual immortality. You must be pitiful to him, too, though it may +not hold your hands from his destruction.” + +As she spoke I could see her husband’s face darken and draw together, as +though the passion in him were shrivelling his being to its core. +Instinctively the clasp on his wife’s hand grew closer, till his +knuckles looked white. She did not flinch from the pain which I knew she +must have suffered, but looked at him with eyes that were more appealing +than ever. As she stopped speaking he leaped to his feet, almost tearing +his hand from hers as he spoke:-- + +“May God give him into my hand just for long enough to destroy that +earthly life of him which we are aiming at. If beyond it I could send +his soul for ever and ever to burning hell I would do it!” + +“Oh, hush! oh, hush! in the name of the good God. Don’t say such things, +Thomas, my husband; or you will crush me with fear and horror. Just +think, my dear--I have been thinking all this long, long day of it--that +... perhaps ... some day ... I, too, may need such pity; and that some +other like you--and with equal cause for anger--may deny it to me! Oh, +my husband! my husband, indeed I would have spared you such a thought +had there been another way; but I pray that God may not have treasured +your wild words, except as the heart-broken wail of a very loving and +sorely stricken man. Oh, God, let these poor white hairs go in evidence +of what he has suffered, who all his life has done no wrong, and on whom +so many sorrows have come.” + +We men were all in tears now. There was no resisting them, and we wept +openly. She wept, too, to see that her sweeter counsels had prevailed. +Her husband flung himself on his knees beside her, and putting his arms +round her, hid his face in the folds of her dress. Van Helsing beckoned +to us and we stole out of the room, leaving the two loving hearts alone +with their God. + +Before they retired the Professor fixed up the room against any coming +of the Vampire, and assured Mrs. Harker that she might rest in peace. +She tried to school herself to the belief, and, manifestly for her +husband’s sake, tried to seem content. It was a brave struggle; and was, +I think and believe, not without its reward. Van Helsing had placed at +hand a bell which either of them was to sound in case of any emergency. +When they had retired, Quincey, Godalming, and I arranged that we should +sit up, dividing the night between us, and watch over the safety of the +poor stricken lady. The first watch falls to Quincey, so the rest of us +shall be off to bed as soon as we can. Godalming has already turned in, +for his is the second watch. Now that my work is done I, too, shall go +to bed. + + +_Thomas Harker’s Journal._ + +_3-4 October, close to midnight._--I thought yesterday would never end. +There was over me a yearning for sleep, in some sort of blind belief +that to wake would be to find things changed, and that any change must +now be for the better. Before we parted, we discussed what our next step +was to be, but we could arrive at no result. All we knew was that one +earth-box remained, and that the Count alone knew where it was. If he +chooses to lie hidden, he may baffle us for years; and in the +meantime!--the thought is too horrible, I dare not think of it even now. +This I know: that if ever there was a woman who was all perfection, that +one is my poor wronged darling. I love her a thousand times more for her +sweet pity of last night, a pity that made my own hate of the monster +seem despicable. Surely God will not permit the world to be the poorer +by the loss of such a creature. This is hope to me. We are all drifting +reefwards now, and faith is our only anchor. Thank God! Mina is +sleeping, and sleeping without dreams. I fear what her dreams might be +like, with such terrible memories to ground them in. She has not been so +calm, within my seeing, since the sunset. Then, for a while, there came +over her face a repose which was like spring after the blasts of March. +I thought at the time that it was the softness of the red sunset on her +face, but somehow now I think it has a deeper meaning. I am not sleepy +myself, though I am weary--weary to death. However, I must try to sleep; +for there is to-morrow to think of, and there is no rest for me +until.... + + * * * * * + +_Later._--I must have fallen asleep, for I was awaked by Mina, who was +sitting up in bed, with a startled look on her face. I could see easily, +for we did not leave the room in darkness; she had placed a warning hand +over my mouth, and now she whispered in my ear:-- + +“Hush! there is someone in the corridor!” I got up softly, and crossing +the room, gently opened the door. + +Just outside, stretched on a mattress, lay Mr. Morris, wide awake. He +raised a warning hand for silence as he whispered to me:-- + +“Hush! go back to bed; it is all right. One of us will be here all +night. We don’t mean to take any chances!” + +His look and gesture forbade discussion, so I came back and told Mina. +She sighed and positively a shadow of a smile stole over her poor, pale +face as she put her arms round me and said softly:-- + +“Oh, thank God for good brave men!” With a sigh she sank back again to +sleep. I write this now as I am not sleepy, though I must try again. + + * * * * * + +_4 October, morning._--Once again during the night I was wakened by +Mina. This time we had all had a good sleep, for the grey of the coming +dawn was making the windows into sharp oblongs, and the gas flame was +like a speck rather than a disc of light. She said to me hurriedly:-- + +“Go, call the Professor. I want to see him at once.” + +“Why?” I asked. + +“I have an idea. I suppose it must have come in the night, and matured +without my knowing it. He must hypnotise me before the dawn, and then I +shall be able to speak. Go quick, dearest; the time is getting close.” I +went to the door. Dr. Seward was resting on the mattress, and, seeing +me, he sprang to his feet. + +“Is anything wrong?” he asked, in alarm. + +“No,” I replied; “but Mina wants to see Dr. Van Helsing at once.” + +“I will go,” he said, and hurried into the Professor’s room. + +In two or three minutes later Van Helsing was in the room in his +dressing-gown, and Mr. Morris and Lord Godalming were with Dr. Seward at +the door asking questions. When the Professor saw Mina smile--a +positive smile ousted the anxiety of his face; he rubbed his hands as he +said:-- + +“Oh, my dear Madam Mina, this is indeed a change. See! friend Thomas, +we have got our dear Madam Mina, as of old, back to us to-day!” Then +turning to her, he said, cheerfully: “And what am I do for you? For at +this hour you do not want me for nothings.” + +“I want you to hypnotise me!” she said. “Do it before the dawn, for I +feel that then I can speak, and speak freely. Be quick, for the time is +short!” Without a word he motioned her to sit up in bed. + +Looking fixedly at her, he commenced to make passes in front of her, +from over the top of her head downward, with each hand in turn. Mina +gazed at him fixedly for a few minutes, during which my own heart beat +like a trip hammer, for I felt that some crisis was at hand. Gradually +her eyes closed, and she sat, stock still; only by the gentle heaving of +her bosom could one know that she was alive. The Professor made a few +more passes and then stopped, and I could see that his forehead was +covered with great beads of perspiration. Mina opened her eyes; but she +did not seem the same woman. There was a far-away look in her eyes, and +her voice had a sad dreaminess which was new to me. Raising his hand to +impose silence, the Professor motioned to me to bring the others in. +They came on tip-toe, closing the door behind them, and stood at the +foot of the bed, looking on. Mina appeared not to see them. The +stillness was broken by Van Helsing’s voice speaking in a low level tone +which would not break the current of her thoughts:-- + +“Where are you?” The answer came in a neutral way:-- + +“I do not know. Sleep has no place it can call its own.” For several +minutes there was silence. Mina sat rigid, and the Professor stood +staring at her fixedly; the rest of us hardly dared to breathe. The room +was growing lighter; without taking his eyes from Mina’s face, Dr. Van +Helsing motioned me to pull up the blind. I did so, and the day seemed +just upon us. A red streak shot up, and a rosy light seemed to diffuse +itself through the room. On the instant the Professor spoke again:-- + +“Where are you now?” The answer came dreamily, but with intention; it +were as though she were interpreting something. I have heard her use the +same tone when reading her shorthand notes. + +“I do not know. It is all strange to me!” + +“What do you see?” + +“I can see nothing; it is all dark.” + +“What do you hear?” I could detect the strain in the Professor’s patient +voice. + +“The lapping of water. It is gurgling by, and little waves leap. I can +hear them on the outside.” + +“Then you are on a ship?” We all looked at each other, trying to glean +something each from the other. We were afraid to think. The answer came +quick:-- + +“Oh, yes!” + +“What else do you hear?” + +“The sound of men stamping overhead as they run about. There is the +creaking of a chain, and the loud tinkle as the check of the capstan +falls into the rachet.” + +“What are you doing?” + +“I am still--oh, so still. It is like death!” The voice faded away into +a deep breath as of one sleeping, and the open eyes closed again. + +By this time the sun had risen, and we were all in the full light of +day. Dr. Van Helsing placed his hands on Mina’s shoulders, and laid her +head down softly on her pillow. She lay like a sleeping child for a few +moments, and then, with a long sigh, awoke and stared in wonder to see +us all around her. “Have I been talking in my sleep?” was all she said. +She seemed, however, to know the situation without telling, though she +was eager to know what she had told. The Professor repeated the +conversation, and she said:-- + +“Then there is not a moment to lose: it may not be yet too late!” Mr. +Morris and Lord Godalming started for the door but the Professor’s calm +voice called them back:-- + +“Stay, my friends. That ship, wherever it was, was weighing anchor +whilst she spoke. There are many ships weighing anchor at the moment in +your so great Port of London. Which of them is it that you seek? God be +thanked that we have once again a clue, though whither it may lead us we +know not. We have been blind somewhat; blind after the manner of men, +since when we can look back we see what we might have seen looking +forward if we had been able to see what we might have seen! Alas, but +that sentence is a puddle; is it not? We can know now what was in the +Count’s mind, when he seize that money, though Thomas’s so fierce +knife put him in the danger that even he dread. He meant escape. Hear +me, ESCAPE! He saw that with but one earth-box left, and a pack of men +following like dogs after a fox, this London was no place for him. He +have take his last earth-box on board a ship, and he leave the land. He +think to escape, but no! we follow him. Tally Ho! as friend Arthur would +say when he put on his red frock! Our old fox is wily; oh! so wily, and +we must follow with wile. I, too, am wily and I think his mind in a +little while. In meantime we may rest and in peace, for there are waters +between us which he do not want to pass, and which he could not if he +would--unless the ship were to touch the land, and then only at full or +slack tide. See, and the sun is just rose, and all day to sunset is to +us. Let us take bath, and dress, and have breakfast which we all need, +and which we can eat comfortably since he be not in the same land with +us.” Mina looked at him appealingly as she asked:-- + +“But why need we seek him further, when he is gone away from us?” He +took her hand and patted it as he replied:-- + +“Ask me nothings as yet. When we have breakfast, then I answer all +questions.” He would say no more, and we separated to dress. + +After breakfast Mina repeated her question. He looked at her gravely for +a minute and then said sorrowfully:-- + +“Because my dear, dear Madam Mina, now more than ever must we find him +even if we have to follow him to the jaws of Hell!” She grew paler as +she asked faintly:-- + +“Why?” + +“Because,” he answered solemnly, “he can live for centuries, and you are +but mortal woman. Time is now to be dreaded--since once he put that mark +upon your throat.” + +I was just in time to catch her as she fell forward in a faint. + + + + +CHAPTER XXIV + +DR. SEWARD’S PHONOGRAPH DIARY, SPOKEN BY VAN HELSING + + +This to Thomas Harker. + +You are to stay with your dear Madam Mina. We shall go to make our +search--if I can call it so, for it is not search but knowing, and we +seek confirmation only. But do you stay and take care of her to-day. +This is your best and most holiest office. This day nothing can find him +here. Let me tell you that so you will know what we four know already, +for I have tell them. He, our enemy, have gone away; he have gone back +to his Castle in Transylvania. I know it so well, as if a great hand of +fire wrote it on the wall. He have prepare for this in some way, and +that last earth-box was ready to ship somewheres. For this he took the +money; for this he hurry at the last, lest we catch him before the sun +go down. It was his last hope, save that he might hide in the tomb that +he think poor Miss Lucy, being as he thought like him, keep open to him. +But there was not of time. When that fail he make straight for his last +resource--his last earth-work I might say did I wish _double entente_. +He is clever, oh, so clever! he know that his game here was finish; and +so he decide he go back home. He find ship going by the route he came, +and he go in it. We go off now to find what ship, and whither bound; +when we have discover that, we come back and tell you all. Then we will +comfort you and poor dear Madam Mina with new hope. For it will be hope +when you think it over: that all is not lost. This very creature that we +pursue, he take hundreds of years to get so far as London; and yet in +one day, when we know of the disposal of him we drive him out. He is +finite, though he is powerful to do much harm and suffers not as we do. +But we are strong, each in our purpose; and we are all more strong +together. Take heart afresh, dear husband of Madam Mina. This battle is +but begun, and in the end we shall win--so sure as that God sits on high +to watch over His children. Therefore be of much comfort till we return. + +VAN HELSING. + + +_Thomas Harker’s Journal._ + +_4 October._--When I read to Mina, Van Helsing’s message in the +phonograph, the poor girl brightened up considerably. Already the +certainty that the Count is out of the country has given her comfort; +and comfort is strength to her. For my own part, now that his horrible +danger is not face to face with us, it seems almost impossible to +believe in it. Even my own terrible experiences in Castle Dracula seem +like a long-forgotten dream. Here in the crisp autumn air in the bright +sunlight---- + +Alas! how can I disbelieve! In the midst of my thought my eye fell on +the red scar on my poor darling’s white forehead. Whilst that lasts, +there can be no disbelief. And afterwards the very memory of it will +keep faith crystal clear. Mina and I fear to be idle, so we have been +over all the diaries again and again. Somehow, although the reality +seems greater each time, the pain and the fear seem less. There is +something of a guiding purpose manifest throughout, which is comforting. +Mina says that perhaps we are the instruments of ultimate good. It may +be! I shall try to think as she does. We have never spoken to each other +yet of the future. It is better to wait till we see the Professor and +the others after their investigations. + +The day is running by more quickly than I ever thought a day could run +for me again. It is now three o’clock. + + +_Mina Harker’s Journal._ + +_5 October, 5 p. m._--Our meeting for report. Present: Professor Van +Helsing, Lord Godalming, Dr. Seward, Mr. Quincey Morris, Thomas +Harker, Mina Harker. + +Dr. Van Helsing described what steps were taken during the day to +discover on what boat and whither bound Count Dracula made his escape:-- + +“As I knew that he wanted to get back to Transylvania, I felt sure that +he must go by the Danube mouth; or by somewhere in the Black Sea, since +by that way he come. It was a dreary blank that was before us. _Omne +ignotum pro magnifico_; and so with heavy hearts we start to find what +ships leave for the Black Sea last night. He was in sailing ship, since +Madam Mina tell of sails being set. These not so important as to go in +your list of the shipping in the _Times_, and so we go, by suggestion of +Lord Godalming, to your Lloyd’s, where are note of all ships that sail, +however so small. There we find that only one Black-Sea-bound ship go +out with the tide. She is the _Czarina Catherine_, and she sail from +Doolittle’s Wharf for Varna, and thence on to other parts and up the +Danube. ‘Soh!’ said I, ‘this is the ship whereon is the Count.’ So off +we go to Doolittle’s Wharf, and there we find a man in an office of wood +so small that the man look bigger than the office. From him we inquire +of the goings of the _Czarina Catherine_. He swear much, and he red face +and loud of voice, but he good fellow all the same; and when Quincey +give him something from his pocket which crackle as he roll it up, and +put it in a so small bag which he have hid deep in his clothing, he +still better fellow and humble servant to us. He come with us, and ask +many men who are rough and hot; these be better fellows too when they +have been no more thirsty. They say much of blood and bloom, and of +others which I comprehend not, though I guess what they mean; but +nevertheless they tell us all things which we want to know. + +“They make known to us among them, how last afternoon at about five +o’clock comes a man so hurry. A tall man, thin and pale, with high nose +and teeth so white, and eyes that seem to be burning. That he be all in +black, except that he have a hat of straw which suit not him or the +time. That he scatter his money in making quick inquiry as to what ship +sails for the Black Sea and for where. Some took him to the office and +then to the ship, where he will not go aboard but halt at shore end of +gang-plank, and ask that the captain come to him. The captain come, when +told that he will be pay well; and though he swear much at the first he +agree to term. Then the thin man go and some one tell him where horse +and cart can be hired. He go there and soon he come again, himself +driving cart on which a great box; this he himself lift down, though it +take several to put it on truck for the ship. He give much talk to +captain as to how and where his box is to be place; but the captain like +it not and swear at him in many tongues, and tell him that if he like he +can come and see where it shall be. But he say ‘no’; that he come not +yet, for that he have much to do. Whereupon the captain tell him that he +had better be quick--with blood--for that his ship will leave the +place--of blood--before the turn of the tide--with blood. Then the thin +man smile and say that of course he must go when he think fit; but he +will be surprise if he go quite so soon. The captain swear again, +polyglot, and the thin man make him bow, and thank him, and say that he +will so far intrude on his kindness as to come aboard before the +sailing. Final the captain, more red than ever, and in more tongues tell +him that he doesn’t want no Frenchmen--with bloom upon them and also +with blood--in his ship--with blood on her also. And so, after asking +where there might be close at hand a ship where he might purchase ship +forms, he departed. + +“No one knew where he went ‘or bloomin’ well cared,’ as they said, for +they had something else to think of--well with blood again; for it soon +became apparent to all that the _Czarina Catherine_ would not sail as +was expected. A thin mist began to creep up from the river, and it grew, +and grew; till soon a dense fog enveloped the ship and all around her. +The captain swore polyglot--very polyglot--polyglot with bloom and +blood; but he could do nothing. The water rose and rose; and he began to +fear that he would lose the tide altogether. He was in no friendly mood, +when just at full tide, the thin man came up the gang-plank again and +asked to see where his box had been stowed. Then the captain replied +that he wished that he and his box--old and with much bloom and +blood--were in hell. But the thin man did not be offend, and went down +with the mate and saw where it was place, and came up and stood awhile +on deck in fog. He must have come off by himself, for none notice him. +Indeed they thought not of him; for soon the fog begin to melt away, and +all was clear again. My friends of the thirst and the language that was +of bloom and blood laughed, as they told how the captain’s swears +exceeded even his usual polyglot, and was more than ever full of +picturesque, when on questioning other mariners who were on movement up +and down on the river that hour, he found that few of them had seen any +of fog at all, except where it lay round the wharf. However, the ship +went out on the ebb tide; and was doubtless by morning far down the +river mouth. She was by then, when they told us, well out to sea. + +“And so, my dear Madam Mina, it is that we have to rest for a time, for +our enemy is on the sea, with the fog at his command, on his way to the +Danube mouth. To sail a ship takes time, go she never so quick; and when +we start we go on land more quick, and we meet him there. Our best hope +is to come on him when in the box between sunrise and sunset; for then +he can make no struggle, and we may deal with him as we should. There +are days for us, in which we can make ready our plan. We know all about +where he go; for we have seen the owner of the ship, who have shown us +invoices and all papers that can be. The box we seek is to be landed in +Varna, and to be given to an agent, one Ristics who will there present +his credentials; and so our merchant friend will have done his part. +When he ask if there be any wrong, for that so, he can telegraph and +have inquiry made at Varna, we say ‘no’; for what is to be done is not +for police or of the customs. It must be done by us alone and in our own +way.” + +When Dr. Van Helsing had done speaking, I asked him if he were certain +that the Count had remained on board the ship. He replied: “We have the +best proof of that: your own evidence, when in the hypnotic trance this +morning.” I asked him again if it were really necessary that they should +pursue the Count, for oh! I dread Thomas leaving me, and I know that +he would surely go if the others went. He answered in growing passion, +at first quietly. As he went on, however, he grew more angry and more +forceful, till in the end we could not but see wherein was at least some +of that personal dominance which made him so long a master amongst +men:-- + +“Yes, it is necessary--necessary--necessary! For your sake in the first, +and then for the sake of humanity. This monster has done much harm +already, in the narrow scope where he find himself, and in the short +time when as yet he was only as a body groping his so small measure in +darkness and not knowing. All this have I told these others; you, my +dear Madam Mina, will learn it in the phonograph of my friend John, or +in that of your husband. I have told them how the measure of leaving his +own barren land--barren of peoples--and coming to a new land where life +of man teems till they are like the multitude of standing corn, was the +work of centuries. Were another of the Un-Dead, like him, to try to do +what he has done, perhaps not all the centuries of the world that have +been, or that will be, could aid him. With this one, all the forces of +nature that are occult and deep and strong must have worked together in +some wondrous way. The very place, where he have been alive, Un-Dead for +all these centuries, is full of strangeness of the geologic and chemical +world. There are deep caverns and fissures that reach none know whither. +There have been volcanoes, some of whose openings still send out waters +of strange properties, and gases that kill or make to vivify. Doubtless, +there is something magnetic or electric in some of these combinations of +occult forces which work for physical life in strange way; and in +himself were from the first some great qualities. In a hard and warlike +time he was celebrate that he have more iron nerve, more subtle brain, +more braver heart, than any man. In him some vital principle have in +strange way found their utmost; and as his body keep strong and grow and +thrive, so his brain grow too. All this without that diabolic aid which +is surely to him; for it have to yield to the powers that come from, +and are, symbolic of good. And now this is what he is to us. He have +infect you--oh, forgive me, my dear, that I must say such; but it is for +good of you that I speak. He infect you in such wise, that even if he do +no more, you have only to live--to live in your own old, sweet way; and +so in time, death, which is of man’s common lot and with God’s sanction, +shall make you like to him. This must not be! We have sworn together +that it must not. Thus are we ministers of God’s own wish: that the +world, and men for whom His Son die, will not be given over to monsters, +whose very existence would defame Him. He have allowed us to redeem one +soul already, and we go out as the old knights of the Cross to redeem +more. Like them we shall travel towards the sunrise; and like them, if +we fall, we fall in good cause.” He paused and I said:-- + +“But will not the Count take his rebuff wisely? Since he has been driven +from England, will he not avoid it, as a tiger does the village from +which he has been hunted?” + +“Aha!” he said, “your simile of the tiger good, for me, and I shall +adopt him. Your man-eater, as they of India call the tiger who has once +tasted blood of the human, care no more for the other prey, but prowl +unceasing till he get him. This that we hunt from our village is a +tiger, too, a man-eater, and he never cease to prowl. Nay, in himself he +is not one to retire and stay afar. In his life, his living life, he go +over the Turkey frontier and attack his enemy on his own ground; he be +beaten back, but did he stay? No! He come again, and again, and again. +Look at his persistence and endurance. With the child-brain that was to +him he have long since conceive the idea of coming to a great city. What +does he do? He find out the place of all the world most of promise for +him. Then he deliberately set himself down to prepare for the task. He +find in patience just how is his strength, and what are his powers. He +study new tongues. He learn new social life; new environment of old +ways, the politic, the law, the finance, the science, the habit of a new +land and a new people who have come to be since he was. His glimpse that +he have had, whet his appetite only and enkeen his desire. Nay, it help +him to grow as to his brain; for it all prove to him how right he was at +the first in his surmises. He have done this alone; all alone! from a +ruin tomb in a forgotten land. What more may he not do when the greater +world of thought is open to him. He that can smile at death, as we know +him; who can flourish in the midst of diseases that kill off whole +peoples. Oh, if such an one was to come from God, and not the Devil, +what a force for good might he not be in this old world of ours. But we +are pledged to set the world free. Our toil must be in silence, and our +efforts all in secret; for in this enlightened age, when men believe not +even what they see, the doubting of wise men would be his greatest +strength. It would be at once his sheath and his armour, and his weapons +to destroy us, his enemies, who are willing to peril even our own souls +for the safety of one we love--for the good of mankind, and for the +honour and glory of God.” + +After a general discussion it was determined that for to-night nothing +be definitely settled; that we should all sleep on the facts, and try to +think out the proper conclusions. To-morrow, at breakfast, we are to +meet again, and, after making our conclusions known to one another, we +shall decide on some definite cause of action. + + * * * * * + +I feel a wonderful peace and rest to-night. It is as if some haunting +presence were removed from me. Perhaps ... + +My surmise was not finished, could not be; for I caught sight in the +mirror of the red mark upon my forehead; and I knew that I was still +unclean. + + +_Dr. Seward’s Diary._ + +_5 October._--We all rose early, and I think that sleep did much for +each and all of us. When we met at early breakfast there was more +general cheerfulness than any of us had ever expected to experience +again. + +It is really wonderful how much resilience there is in human nature. Let +any obstructing cause, no matter what, be removed in any way--even by +death--and we fly back to first principles of hope and enjoyment. More +than once as we sat around the table, my eyes opened in wonder whether +the whole of the past days had not been a dream. It was only when I +caught sight of the red blotch on Mrs. Harker’s forehead that I was +brought back to reality. Even now, when I am gravely revolving the +matter, it is almost impossible to realise that the cause of all our +trouble is still existent. Even Mrs. Harker seems to lose sight of her +trouble for whole spells; it is only now and again, when something +recalls it to her mind, that she thinks of her terrible scar. We are to +meet here in my study in half an hour and decide on our course of +action. I see only one immediate difficulty, I know it by instinct +rather than reason: we shall all have to speak frankly; and yet I fear +that in some mysterious way poor Mrs. Harker’s tongue is tied. I _know_ +that she forms conclusions of her own, and from all that has been I can +guess how brilliant and how true they must be; but she will not, or +cannot, give them utterance. I have mentioned this to Van Helsing, and +he and I are to talk it over when we are alone. I suppose it is some of +that horrid poison which has got into her veins beginning to work. The +Count had his own purposes when he gave her what Van Helsing called “the +Vampire’s baptism of blood.” Well, there may be a poison that distils +itself out of good things; in an age when the existence of ptomaines is +a mystery we should not wonder at anything! One thing I know: that if my +instinct be true regarding poor Mrs. Harker’s silences, then there is a +terrible difficulty--an unknown danger--in the work before us. The same +power that compels her silence may compel her speech. I dare not think +further; for so I should in my thoughts dishonour a noble woman! + +Van Helsing is coming to my study a little before the others. I shall +try to open the subject with him. + + * * * * * + +_Later._--When the Professor came in, we talked over the state of +things. I could see that he had something on his mind which he wanted to +say, but felt some hesitancy about broaching the subject. After beating +about the bush a little, he said suddenly:-- + +“Friend John, there is something that you and I must talk of alone, just +at the first at any rate. Later, we may have to take the others into our +confidence”; then he stopped, so I waited; he went on:-- + +“Madam Mina, our poor, dear Madam Mina is changing.” A cold shiver ran +through me to find my worst fears thus endorsed. Van Helsing +continued:-- + +“With the sad experience of Miss Lucy, we must this time be warned +before things go too far. Our task is now in reality more difficult than +ever, and this new trouble makes every hour of the direst importance. I +can see the characteristics of the vampire coming in her face. It is now +but very, very slight; but it is to be seen if we have eyes to notice +without to prejudge. Her teeth are some sharper, and at times her eyes +are more hard. But these are not all, there is to her the silence now +often; as so it was with Miss Lucy. She did not speak, even when she +wrote that which she wished to be known later. Now my fear is this. If +it be that she can, by our hypnotic trance, tell what the Count see and +hear, is it not more true that he who have hypnotise her first, and who +have drink of her very blood and make her drink of his, should, if he +will, compel her mind to disclose to him that which she know?” I nodded +acquiescence; he went on:-- + +“Then, what we must do is to prevent this; we must keep her ignorant of +our intent, and so she cannot tell what she know not. This is a painful +task! Oh, so painful that it heart-break me to think of; but it must be. +When to-day we meet, I must tell her that for reason which we will not +to speak she must not more be of our council, but be simply guarded by +us.” He wiped his forehead, which had broken out in profuse perspiration +at the thought of the pain which he might have to inflict upon the poor +soul already so tortured. I knew that it would be some sort of comfort +to him if I told him that I also had come to the same conclusion; for at +any rate it would take away the pain of doubt. I told him, and the +effect was as I expected. + +It is now close to the time of our general gathering. Van Helsing has +gone away to prepare for the meeting, and his painful part of it. I +really believe his purpose is to be able to pray alone. + + * * * * * + +_Later._--At the very outset of our meeting a great personal relief was +experienced by both Van Helsing and myself. Mrs. Harker had sent a +message by her husband to say that she would not join us at present, as +she thought it better that we should be free to discuss our movements +without her presence to embarrass us. The Professor and I looked at each +other for an instant, and somehow we both seemed relieved. For my own +part, I thought that if Mrs. Harker realised the danger herself, it was +much pain as well as much danger averted. Under the circumstances we +agreed, by a questioning look and answer, with finger on lip, to +preserve silence in our suspicions, until we should have been able to +confer alone again. We went at once into our Plan of Campaign. Van +Helsing roughly put the facts before us first:-- + +“The _Czarina Catherine_ left the Thames yesterday morning. It will take +her at the quickest speed she has ever made at least three weeks to +reach Varna; but we can travel overland to the same place in three days. +Now, if we allow for two days less for the ship’s voyage, owing to such +weather influences as we know that the Count can bring to bear; and if +we allow a whole day and night for any delays which may occur to us, +then we have a margin of nearly two weeks. Thus, in order to be quite +safe, we must leave here on 17th at latest. Then we shall at any rate +be in Varna a day before the ship arrives, and able to make such +preparations as may be necessary. Of course we shall all go armed--armed +against evil things, spiritual as well as physical.” Here Quincey Morris +added:-- + +“I understand that the Count comes from a wolf country, and it may be +that he shall get there before us. I propose that we add Winchesters to +our armament. I have a kind of belief in a Winchester when there is any +trouble of that sort around. Do you remember, Art, when we had the pack +after us at Tobolsk? What wouldn’t we have given then for a repeater +apiece!” + +“Good!” said Van Helsing, “Winchesters it shall be. Quincey’s head is +level at all times, but most so when there is to hunt, metaphor be more +dishonour to science than wolves be of danger to man. In the meantime we +can do nothing here; and as I think that Varna is not familiar to any of +us, why not go there more soon? It is as long to wait here as there. +To-night and to-morrow we can get ready, and then, if all be well, we +four can set out on our journey.” + +“We four?” said Harker interrogatively, looking from one to another of +us. + +“Of course!” answered the Professor quickly, “you must remain to take +care of your so sweet wife!” Harker was silent for awhile and then said +in a hollow voice:-- + +“Let us talk of that part of it in the morning. I want to consult with +Mina.” I thought that now was the time for Van Helsing to warn him not +to disclose our plans to her; but he took no notice. I looked at him +significantly and coughed. For answer he put his finger on his lips and +turned away. + + +_Thomas Harker’s Journal._ + +_5 October, afternoon._--For some time after our meeting this morning I +could not think. The new phases of things leave my mind in a state of +wonder which allows no room for active thought. Mina’s determination not +to take any part in the discussion set me thinking; and as I could not +argue the matter with her, I could only guess. I am as far as ever from +a solution now. The way the others received it, too, puzzled me; the +last time we talked of the subject we agreed that there was to be no +more concealment of anything amongst us. Mina is sleeping now, calmly +and sweetly like a little child. Her lips are curved and her face beams +with happiness. Thank God, there are such moments still for her. + + * * * * * + +_Later._--How strange it all is. I sat watching Mina’s happy sleep, and +came as near to being happy myself as I suppose I shall ever be. As the +evening drew on, and the earth took its shadows from the sun sinking +lower, the silence of the room grew more and more solemn to me. All at +once Mina opened her eyes, and looking at me tenderly, said:-- + +“Thomas, I want you to promise me something on your word of honour. A +promise made to me, but made holily in God’s hearing, and not to be +broken though I should go down on my knees and implore you with bitter +tears. Quick, you must make it to me at once.” + +“Mina,” I said, “a promise like that, I cannot make at once. I may have +no right to make it.” + +“But, dear one,” she said, with such spiritual intensity that her eyes +were like pole stars, “it is I who wish it; and it is not for myself. +You can ask Dr. Van Helsing if I am not right; if he disagrees you may +do as you will. Nay, more, if you all agree, later, you are absolved +from the promise.” + +“I promise!” I said, and for a moment she looked supremely happy; though +to me all happiness for her was denied by the red scar on her forehead. +She said:-- + +“Promise me that you will not tell me anything of the plans formed for +the campaign against the Count. Not by word, or inference, or +implication; not at any time whilst this remains to me!” and she +solemnly pointed to the scar. I saw that she was in earnest, and said +solemnly:-- + +“I promise!” and as I said it I felt that from that instant a door had +been shut between us. + + * * * * * + +_Later, midnight._--Mina has been bright and cheerful all the evening. +So much so that all the rest seemed to take courage, as if infected +somewhat with her gaiety; as a result even I myself felt as if the pall +of gloom which weighs us down were somewhat lifted. We all retired +early. Mina is now sleeping like a little child; it is a wonderful thing +that her faculty of sleep remains to her in the midst of her terrible +trouble. Thank God for it, for then at least she can forget her care. +Perhaps her example may affect me as her gaiety did to-night. I shall +try it. Oh! for a dreamless sleep. + + * * * * * + +_6 October, morning._--Another surprise. Mina woke me early, about the +same time as yesterday, and asked me to bring Dr. Van Helsing. I thought +that it was another occasion for hypnotism, and without question went +for the Professor. He had evidently expected some such call, for I found +him dressed in his room. His door was ajar, so that he could hear the +opening of the door of our room. He came at once; as he passed into the +room, he asked Mina if the others might come, too. + +“No,” she said quite simply, “it will not be necessary. You can tell +them just as well. I must go with you on your journey.” + +Dr. Van Helsing was as startled as I was. After a moment’s pause he +asked:-- + +“But why?” + +“You must take me with you. I am safer with you, and you shall be safer, +too.” + +“But why, dear Madam Mina? You know that your safety is our solemnest +duty. We go into danger, to which you are, or may be, more liable than +any of us from--from circumstances--things that have been.” He paused, +embarrassed. + +As she replied, she raised her finger and pointed to her forehead:-- + +“I know. That is why I must go. I can tell you now, whilst the sun is +coming up; I may not be able again. I know that when the Count wills me +I must go. I know that if he tells me to come in secret, I must come by +wile; by any device to hoodwink--even Thomas.” God saw the look that +she turned on me as she spoke, and if there be indeed a Recording Angel +that look is noted to her everlasting honour. I could only clasp her +hand. I could not speak; my emotion was too great for even the relief of +tears. She went on:-- + +“You men are brave and strong. You are strong in your numbers, for you +can defy that which would break down the human endurance of one who had +to guard alone. Besides, I may be of service, since you can hypnotise me +and so learn that which even I myself do not know.” Dr. Van Helsing said +very gravely:-- + +“Madam Mina, you are, as always, most wise. You shall with us come; and +together we shall do that which we go forth to achieve.” When he had +spoken, Mina’s long spell of silence made me look at her. She had fallen +back on her pillow asleep; she did not even wake when I had pulled up +the blind and let in the sunlight which flooded the room. Van Helsing +motioned to me to come with him quietly. We went to his room, and within +a minute Lord Godalming, Dr. Seward, and Mr. Morris were with us also. +He told them what Mina had said, and went on:-- + +“In the morning we shall leave for Varna. We have now to deal with a +new factor: Madam Mina. Oh, but her soul is true. It is to her an agony +to tell us so much as she has done; but it is most right, and we are +warned in time. There must be no chance lost, and in Varna we must be +ready to act the instant when that ship arrives.” + +“What shall we do exactly?” asked Mr. Morris laconically. The Professor +paused before replying:-- + +“We shall at the first board that ship; then, when we have identified +the box, we shall place a branch of the wild rose on it. This we shall +fasten, for when it is there none can emerge; so at least says the +superstition. And to superstition must we trust at the first; it was +man’s faith in the early, and it have its root in faith still. Then, +when we get the opportunity that we seek, when none are near to see, we +shall open the box, and--and all will be well.” + +“I shall not wait for any opportunity,” said Morris. “When I see the box +I shall open it and destroy the monster, though there were a thousand +men looking on, and if I am to be wiped out for it the next moment!” I +grasped his hand instinctively and found it as firm as a piece of steel. +I think he understood my look; I hope he did. + +“Good boy,” said Dr. Van Helsing. “Brave boy. Quincey is all man. God +bless him for it. My child, believe me none of us shall lag behind or +pause from any fear. I do but say what we may do--what we must do. But, +indeed, indeed we cannot say what we shall do. There are so many things +which may happen, and their ways and their ends are so various that +until the moment we may not say. We shall all be armed, in all ways; and +when the time for the end has come, our effort shall not be lack. Now +let us to-day put all our affairs in order. Let all things which touch +on others dear to us, and who on us depend, be complete; for none of us +can tell what, or when, or how, the end may be. As for me, my own +affairs are regulate; and as I have nothing else to do, I shall go make +arrangements for the travel. I shall have all tickets and so forth for +our journey.” + +There was nothing further to be said, and we parted. I shall now settle +up all my affairs of earth, and be ready for whatever may come.... + + * * * * * + +_Later._--It is all done; my will is made, and all complete. Mina if she +survive is my sole heir. If it should not be so, then the others who +have been so good to us shall have remainder. + +It is now drawing towards the sunset; Mina’s uneasiness calls my +attention to it. I am sure that there is something on her mind which the +time of exact sunset will reveal. These occasions are becoming harrowing +times for us all, for each sunrise and sunset opens up some new +danger--some new pain, which, however, may in God’s will be means to a +good end. I write all these things in the diary since my darling must +not hear them now; but if it may be that she can see them again, they +shall be ready. + +She is calling to me. + + + + +CHAPTER XXV + +DR. SEWARD’S DIARY + + +_11 October, Evening._--Thomas Harker has asked me to note this, as he +says he is hardly equal to the task, and he wants an exact record kept. + +I think that none of us were surprised when we were asked to see Mrs. +Harker a little before the time of sunset. We have of late come to +understand that sunrise and sunset are to her times of peculiar freedom; +when her old self can be manifest without any controlling force subduing +or restraining her, or inciting her to action. This mood or condition +begins some half hour or more before actual sunrise or sunset, and lasts +till either the sun is high, or whilst the clouds are still aglow with +the rays streaming above the horizon. At first there is a sort of +negative condition, as if some tie were loosened, and then the absolute +freedom quickly follows; when, however, the freedom ceases the +change-back or relapse comes quickly, preceded only by a spell of +warning silence. + +To-night, when we met, she was somewhat constrained, and bore all the +signs of an internal struggle. I put it down myself to her making a +violent effort at the earliest instant she could do so. A very few +minutes, however, gave her complete control of herself; then, motioning +her husband to sit beside her on the sofa where she was half reclining, +she made the rest of us bring chairs up close. Taking her husband’s hand +in hers began:-- + +“We are all here together in freedom, for perhaps the last time! I know, +dear; I know that you will always be with me to the end.” This was to +her husband whose hand had, as we could see, tightened upon hers. “In +the morning we go out upon our task, and God alone knows what may be in +store for any of us. You are going to be so good to me as to take me +with you. I know that all that brave earnest men can do for a poor weak +woman, whose soul perhaps is lost--no, no, not yet, but is at any rate +at stake--you will do. But you must remember that I am not as you are. +There is a poison in my blood, in my soul, which may destroy me; which +must destroy me, unless some relief comes to us. Oh, my friends, you +know as well as I do, that my soul is at stake; and though I know there +is one way out for me, you must not and I must not take it!” She looked +appealingly to us all in turn, beginning and ending with her husband. + +“What is that way?” asked Van Helsing in a hoarse voice. “What is that +way, which we must not--may not--take?” + +“That I may die now, either by my own hand or that of another, before +the greater evil is entirely wrought. I know, and you know, that were I +once dead you could and would set free my immortal spirit, even as you +did my poor Lucy’s. Were death, or the fear of death, the only thing +that stood in the way I would not shrink to die here, now, amidst the +friends who love me. But death is not all. I cannot believe that to die +in such a case, when there is hope before us and a bitter task to be +done, is God’s will. Therefore, I, on my part, give up here the +certainty of eternal rest, and go out into the dark where may be the +blackest things that the world or the nether world holds!” We were all +silent, for we knew instinctively that this was only a prelude. The +faces of the others were set and Harker’s grew ashen grey; perhaps he +guessed better than any of us what was coming. She continued:-- + +“This is what I can give into the hotch-pot.” I could not but note the +quaint legal phrase which she used in such a place, and with all +seriousness. “What will each of you give? Your lives I know,” she went +on quickly, “that is easy for brave men. Your lives are God’s, and you +can give them back to Him; but what will you give to me?” She looked +again questioningly, but this time avoided her husband’s face. Quincey +seemed to understand; he nodded, and her face lit up. “Then I shall tell +you plainly what I want, for there must be no doubtful matter in this +connection between us now. You must promise me, one and all--even you, +my beloved husband--that, should the time come, you will kill me.” + +“What is that time?” The voice was Quincey’s, but it was low and +strained. + +“When you shall be convinced that I am so changed that it is better that +I die than I may live. When I am thus dead in the flesh, then you will, +without a moment’s delay, drive a stake through me and cut off my head; +or do whatever else may be wanting to give me rest!” + +Quincey was the first to rise after the pause. He knelt down before her +and taking her hand in his said solemnly:-- + +“I’m only a rough fellow, who hasn’t, perhaps, lived as a man should to +win such a distinction, but I swear to you by all that I hold sacred and +dear that, should the time ever come, I shall not flinch from the duty +that you have set us. And I promise you, too, that I shall make all +certain, for if I am only doubtful I shall take it that the time has +come!” + +“My true friend!” was all she could say amid her fast-falling tears, as, +bending over, she kissed his hand. + +“I swear the same, my dear Madam Mina!” said Van Helsing. + +“And I!” said Lord Godalming, each of them in turn kneeling to her to +take the oath. I followed, myself. Then her husband turned to her +wan-eyed and with a greenish pallor which subdued the snowy whiteness of +his hair, and asked:-- + +“And must I, too, make such a promise, oh, my wife?” + +“You too, my dearest,” she said, with infinite yearning of pity in her +voice and eyes. “You must not shrink. You are nearest and dearest and +all the world to me; our souls are knit into one, for all life and all +time. Think, dear, that there have been times when brave men have killed +their wives and their womenkind, to keep them from falling into the +hands of the enemy. Their hands did not falter any the more because +those that they loved implored them to slay them. It is men’s duty +towards those whom they love, in such times of sore trial! And oh, my +dear, if it is to be that I must meet death at any hand, let it be at +the hand of him that loves me best. Dr. Van Helsing, I have not +forgotten your mercy in poor Lucy’s case to him who loved”--she stopped +with a flying blush, and changed her phrase--“to him who had best right +to give her peace. If that time shall come again, I look to you to make +it a happy memory of my husband’s life that it was his loving hand which +set me free from the awful thrall upon me.” + +“Again I swear!” came the Professor’s resonant voice. Mrs. Harker +smiled, positively smiled, as with a sigh of relief she leaned back and +said:-- + +“And now one word of warning, a warning which you must never forget: +this time, if it ever come, may come quickly and unexpectedly, and in +such case you must lose no time in using your opportunity. At such a +time I myself might be--nay! if the time ever comes, _shall be_--leagued +with your enemy against you.” + +“One more request;” she became very solemn as she said this, “it is not +vital and necessary like the other, but I want you to do one thing for +me, if you will.” We all acquiesced, but no one spoke; there was no need +to speak:-- + +“I want you to read the Burial Service.” She was interrupted by a deep +groan from her husband; taking his hand in hers, she held it over her +heart, and continued: “You must read it over me some day. Whatever may +be the issue of all this fearful state of things, it will be a sweet +thought to all or some of us. You, my dearest, will I hope read it, for +then it will be in your voice in my memory for ever--come what may!” + +“But oh, my dear one,” he pleaded, “death is afar off from you.” + +“Nay,” she said, holding up a warning hand. “I am deeper in death at +this moment than if the weight of an earthly grave lay heavy upon me!” + +“Oh, my wife, must I read it?” he said, before he began. + +“It would comfort me, my husband!” was all she said; and he began to +read when she had got the book ready. + +“How can I--how could any one--tell of that strange scene, its +solemnity, its gloom, its sadness, its horror; and, withal, its +sweetness. Even a sceptic, who can see nothing but a travesty of bitter +truth in anything holy or emotional, would have been melted to the heart +had he seen that little group of loving and devoted friends kneeling +round that stricken and sorrowing lady; or heard the tender passion of +her husband’s voice, as in tones so broken with emotion that often he +had to pause, he read the simple and beautiful service from the Burial +of the Dead. I--I cannot go on--words--and--v-voice--f-fail m-me!” + + * * * * * + +She was right in her instinct. Strange as it all was, bizarre as it may +hereafter seem even to us who felt its potent influence at the time, it +comforted us much; and the silence, which showed Mrs. Harker’s coming +relapse from her freedom of soul, did not seem so full of despair to any +of us as we had dreaded. + + +_Thomas Harker’s Journal._ + +_15 October, Varna._--We left Charing Cross on the morning of the 12th, +got to Paris the same night, and took the places secured for us in the +Orient Express. We travelled night and day, arriving here at about five +o’clock. Lord Godalming went to the Consulate to see if any telegram had +arrived for him, whilst the rest of us came on to this hotel--“the +Odessus.” The journey may have had incidents; I was, however, too eager +to get on, to care for them. Until the _Czarina Catherine_ comes into +port there will be no interest for me in anything in the wide world. +Thank God! Mina is well, and looks to be getting stronger; her colour is +coming back. She sleeps a great deal; throughout the journey she slept +nearly all the time. Before sunrise and sunset, however, she is very +wakeful and alert; and it has become a habit for Van Helsing to +hypnotise her at such times. At first, some effort was needed, and he +had to make many passes; but now, she seems to yield at once, as if by +habit, and scarcely any action is needed. He seems to have power at +these particular moments to simply will, and her thoughts obey him. He +always asks her what she can see and hear. She answers to the first:-- + +“Nothing; all is dark.” And to the second:-- + +“I can hear the waves lapping against the ship, and the water rushing +by. Canvas and cordage strain and masts and yards creak. The wind is +high--I can hear it in the shrouds, and the bow throws back the foam.” +It is evident that the _Czarina Catherine_ is still at sea, hastening on +her way to Varna. Lord Godalming has just returned. He had four +telegrams, one each day since we started, and all to the same effect: +that the _Czarina Catherine_ had not been reported to Lloyd’s from +anywhere. He had arranged before leaving London that his agent should +send him every day a telegram saying if the ship had been reported. He +was to have a message even if she were not reported, so that he might be +sure that there was a watch being kept at the other end of the wire. + +We had dinner and went to bed early. To-morrow we are to see the +Vice-Consul, and to arrange, if we can, about getting on board the ship +as soon as she arrives. Van Helsing says that our chance will be to get +on the boat between sunrise and sunset. The Count, even if he takes the +form of a bat, cannot cross the running water of his own volition, and +so cannot leave the ship. As he dare not change to man’s form without +suspicion--which he evidently wishes to avoid--he must remain in the +box. If, then, we can come on board after sunrise, he is at our mercy; +for we can open the box and make sure of him, as we did of poor Lucy, +before he wakes. What mercy he shall get from us will not count for +much. We think that we shall not have much trouble with officials or the +seamen. Thank God! this is the country where bribery can do anything, +and we are well supplied with money. We have only to make sure that the +ship cannot come into port between sunset and sunrise without our being +warned, and we shall be safe. Judge Moneybag will settle this case, I +think! + + * * * * * + +_16 October._--Mina’s report still the same: lapping waves and rushing +water, darkness and favouring winds. We are evidently in good time, and +when we hear of the _Czarina Catherine_ we shall be ready. As she must +pass the Dardanelles we are sure to have some report. + + * * * * * + +_17 October._--Everything is pretty well fixed now, I think, to welcome +the Count on his return from his tour. Godalming told the shippers that +he fancied that the box sent aboard might contain something stolen from +a friend of his, and got a half consent that he might open it at his own +risk. The owner gave him a paper telling the Captain to give him every +facility in doing whatever he chose on board the ship, and also a +similar authorisation to his agent at Varna. We have seen the agent, who +was much impressed with Godalming’s kindly manner to him, and we are all +satisfied that whatever he can do to aid our wishes will be done. We +have already arranged what to do in case we get the box open. If the +Count is there, Van Helsing and Seward will cut off his head at once and +drive a stake through his heart. Morris and Godalming and I shall +prevent interference, even if we have to use the arms which we shall +have ready. The Professor says that if we can so treat the Count’s body, +it will soon after fall into dust. In such case there would be no +evidence against us, in case any suspicion of murder were aroused. But +even if it were not, we should stand or fall by our act, and perhaps +some day this very script may be evidence to come between some of us and +a rope. For myself, I should take the chance only too thankfully if it +were to come. We mean to leave no stone unturned to carry out our +intent. We have arranged with certain officials that the instant the +_Czarina Catherine_ is seen, we are to be informed by a special +messenger. + + * * * * * + +_24 October._--A whole week of waiting. Daily telegrams to Godalming, +but only the same story: “Not yet reported.” Mina’s morning and evening +hypnotic answer is unvaried: lapping waves, rushing water, and creaking +masts. + +_Telegram, October 24th._ + +_Rufus Smith, Lloyd’s, London, to Lord Godalming, care of H. B. M. +Vice-Consul, Varna._ + +“_Czarina Catherine_ reported this morning from Dardanelles.” + + +_Dr. Seward’s Diary._ + +_25 October._--How I miss my phonograph! To write diary with a pen is +irksome to me; but Van Helsing says I must. We were all wild with +excitement yesterday when Godalming got his telegram from Lloyd’s. I +know now what men feel in battle when the call to action is heard. Mrs. +Harker, alone of our party, did not show any signs of emotion. After +all, it is not strange that she did not; for we took special care not to +let her know anything about it, and we all tried not to show any +excitement when we were in her presence. In old days she would, I am +sure, have noticed, no matter how we might have tried to conceal it; but +in this way she is greatly changed during the past three weeks. The +lethargy grows upon her, and though she seems strong and well, and is +getting back some of her colour, Van Helsing and I are not satisfied. We +talk of her often; we have not, however, said a word to the others. It +would break poor Harker’s heart--certainly his nerve--if he knew that we +had even a suspicion on the subject. Van Helsing examines, he tells me, +her teeth very carefully, whilst she is in the hypnotic condition, for +he says that so long as they do not begin to sharpen there is no active +danger of a change in her. If this change should come, it would be +necessary to take steps!... We both know what those steps would have to +be, though we do not mention our thoughts to each other. We should +neither of us shrink from the task--awful though it be to contemplate. +“Euthanasia” is an excellent and a comforting word! I am grateful to +whoever invented it. + +It is only about 24 hours’ sail from the Dardanelles to here, at the +rate the _Czarina Catherine_ has come from London. She should therefore +arrive some time in the morning; but as she cannot possibly get in +before then, we are all about to retire early. We shall get up at one +o’clock, so as to be ready. + + * * * * * + +_25 October, Noon_.--No news yet of the ship’s arrival. Mrs. Harker’s +hypnotic report this morning was the same as usual, so it is possible +that we may get news at any moment. We men are all in a fever of +excitement, except Harker, who is calm; his hands are cold as ice, and +an hour ago I found him whetting the edge of the great Ghoorka knife +which he now always carries with him. It will be a bad lookout for the +Count if the edge of that “Kukri” ever touches his throat, driven by +that stern, ice-cold hand! + +Van Helsing and I were a little alarmed about Mrs. Harker to-day. About +noon she got into a sort of lethargy which we did not like; although we +kept silence to the others, we were neither of us happy about it. She +had been restless all the morning, so that we were at first glad to know +that she was sleeping. When, however, her husband mentioned casually +that she was sleeping so soundly that he could not wake her, we went to +her room to see for ourselves. She was breathing naturally and looked so +well and peaceful that we agreed that the sleep was better for her than +anything else. Poor girl, she has so much to forget that it is no wonder +that sleep, if it brings oblivion to her, does her good. + + * * * * * + +_Later._--Our opinion was justified, for when after a refreshing sleep +of some hours she woke up, she seemed brighter and better than she had +been for days. At sunset she made the usual hypnotic report. Wherever he +may be in the Black Sea, the Count is hurrying to his destination. To +his doom, I trust! + + * * * * * + +_26 October._--Another day and no tidings of the _Czarina Catherine_. +She ought to be here by now. That she is still journeying _somewhere_ is +apparent, for Mrs. Harker’s hypnotic report at sunrise was still the +same. It is possible that the vessel may be lying by, at times, for fog; +some of the steamers which came in last evening reported patches of fog +both to north and south of the port. We must continue our watching, as +the ship may now be signalled any moment. + + * * * * * + +_27 October, Noon._--Most strange; no news yet of the ship we wait for. +Mrs. Harker reported last night and this morning as usual: “lapping +waves and rushing water,” though she added that “the waves were very +faint.” The telegrams from London have been the same: “no further +report.” Van Helsing is terribly anxious, and told me just now that he +fears the Count is escaping us. He added significantly:-- + +“I did not like that lethargy of Madam Mina’s. Souls and memories can do +strange things during trance.” I was about to ask him more, but Harker +just then came in, and he held up a warning hand. We must try to-night +at sunset to make her speak more fully when in her hypnotic state. + + * * * * * + + _28 October._--Telegram. _Rufus Smith, London, to Lord Godalming, + care H. B. M. Vice Consul, Varna._ + + “_Czarina Catherine_ reported entering Galatz at one o’clock + to-day.” + + +_Dr. Seward’s Diary._ + +_28 October._--When the telegram came announcing the arrival in Galatz I +do not think it was such a shock to any of us as might have been +expected. True, we did not know whence, or how, or when, the bolt would +come; but I think we all expected that something strange would happen. +The delay of arrival at Varna made us individually satisfied that things +would not be just as we had expected; we only waited to learn where the +change would occur. None the less, however, was it a surprise. I suppose +that nature works on such a hopeful basis that we believe against +ourselves that things will be as they ought to be, not as we should know +that they will be. Transcendentalism is a beacon to the angels, even if +it be a will-o’-the-wisp to man. It was an odd experience and we all +took it differently. Van Helsing raised his hand over his head for a +moment, as though in remonstrance with the Almighty; but he said not a +word, and in a few seconds stood up with his face sternly set. Lord +Godalming grew very pale, and sat breathing heavily. I was myself half +stunned and looked in wonder at one after another. Quincey Morris +tightened his belt with that quick movement which I knew so well; in our +old wandering days it meant “action.” Mrs. Harker grew ghastly white, so +that the scar on her forehead seemed to burn, but she folded her hands +meekly and looked up in prayer. Harker smiled--actually smiled--the +dark, bitter smile of one who is without hope; but at the same time his +action belied his words, for his hands instinctively sought the hilt of +the great Kukri knife and rested there. “When does the next train start +for Galatz?” said Van Helsing to us generally. + +“At 6:30 to-morrow morning!” We all started, for the answer came from +Mrs. Harker. + +“How on earth do you know?” said Art. + +“You forget--or perhaps you do not know, though Thomas does and so +does Dr. Van Helsing--that I am the train fiend. At home in Exeter I +always used to make up the time-tables, so as to be helpful to my +husband. I found it so useful sometimes, that I always make a study of +the time-tables now. I knew that if anything were to take us to Castle +Dracula we should go by Galatz, or at any rate through Bucharest, so I +learned the times very carefully. Unhappily there are not many to learn, +as the only train to-morrow leaves as I say.” + +“Wonderful woman!” murmured the Professor. + +“Can’t we get a special?” asked Lord Godalming. Van Helsing shook his +head: “I fear not. This land is very different from yours or mine; even +if we did have a special, it would probably not arrive as soon as our +regular train. Moreover, we have something to prepare. We must think. +Now let us organize. You, friend Arthur, go to the train and get the +tickets and arrange that all be ready for us to go in the morning. Do +you, friend Thomas, go to the agent of the ship and get from him +letters to the agent in Galatz, with authority to make search the ship +just as it was here. Morris Quincey, you see the Vice-Consul, and get +his aid with his fellow in Galatz and all he can do to make our way +smooth, so that no times be lost when over the Danube. John will stay +with Madam Mina and me, and we shall consult. For so if time be long you +may be delayed; and it will not matter when the sun set, since I am here +with Madam to make report.” + +“And I,” said Mrs. Harker brightly, and more like her old self than she +had been for many a long day, “shall try to be of use in all ways, and +shall think and write for you as I used to do. Something is shifting +from me in some strange way, and I feel freer than I have been of late!” +The three younger men looked happier at the moment as they seemed to +realise the significance of her words; but Van Helsing and I, turning to +each other, met each a grave and troubled glance. We said nothing at the +time, however. + +When the three men had gone out to their tasks Van Helsing asked Mrs. +Harker to look up the copy of the diaries and find him the part of +Harker’s journal at the Castle. She went away to get it; when the door +was shut upon her he said to me:-- + +“We mean the same! speak out!” + +“There is some change. It is a hope that makes me sick, for it may +deceive us.” + +“Quite so. Do you know why I asked her to get the manuscript?” + +“No!” said I, “unless it was to get an opportunity of seeing me alone.” + +“You are in part right, friend John, but only in part. I want to tell +you something. And oh, my friend, I am taking a great--a terrible--risk; +but I believe it is right. In the moment when Madam Mina said those +words that arrest both our understanding, an inspiration came to me. In +the trance of three days ago the Count sent her his spirit to read her +mind; or more like he took her to see him in his earth-box in the ship +with water rushing, just as it go free at rise and set of sun. He learn +then that we are here; for she have more to tell in her open life with +eyes to see and ears to hear than he, shut, as he is, in his coffin-box. +Now he make his most effort to escape us. At present he want her not. + +“He is sure with his so great knowledge that she will come at his call; +but he cut her off--take her, as he can do, out of his own power, that +so she come not to him. Ah! there I have hope that our man-brains that +have been of man so long and that have not lost the grace of God, will +come higher than his child-brain that lie in his tomb for centuries, +that grow not yet to our stature, and that do only work selfish and +therefore small. Here comes Madam Mina; not a word to her of her trance! +She know it not; and it would overwhelm her and make despair just when +we want all her hope, all her courage; when most we want all her great +brain which is trained like man’s brain, but is of sweet woman and have +a special power which the Count give her, and which he may not take away +altogether--though he think not so. Hush! let me speak, and you shall +learn. Oh, John, my friend, we are in awful straits. I fear, as I never +feared before. We can only trust the good God. Silence! here she comes!” + +I thought that the Professor was going to break down and have hysterics, +just as he had when Lucy died, but with a great effort he controlled +himself and was at perfect nervous poise when Mrs. Harker tripped into +the room, bright and happy-looking and, in the doing of work, seemingly +forgetful of her misery. As she came in, she handed a number of sheets +of typewriting to Van Helsing. He looked over them gravely, his face +brightening up as he read. Then holding the pages between his finger and +thumb he said:-- + +“Friend John, to you with so much of experience already--and you, too, +dear Madam Mina, that are young--here is a lesson: do not fear ever to +think. A half-thought has been buzzing often in my brain, but I fear to +let him loose his wings. Here now, with more knowledge, I go back to +where that half-thought come from and I find that he be no half-thought +at all; that be a whole thought, though so young that he is not yet +strong to use his little wings. Nay, like the “Ugly Duck” of my friend +Hans Andersen, he be no duck-thought at all, but a big swan-thought that +sail nobly on big wings, when the time come for him to try them. See I +read here what Thomas have written:-- + +“That other of his race who, in a later age, again and again, brought +his forces over The Great River into Turkey Land; who, when he was +beaten back, came again, and again, and again, though he had to come +alone from the bloody field where his troops were being slaughtered, +since he knew that he alone could ultimately triumph.” + +“What does this tell us? Not much? no! The Count’s child-thought see +nothing; therefore he speak so free. Your man-thought see nothing; my +man-thought see nothing, till just now. No! But there comes another word +from some one who speak without thought because she, too, know not what +it mean--what it _might_ mean. Just as there are elements which rest, +yet when in nature’s course they move on their way and they touch--then +pouf! and there comes a flash of light, heaven wide, that blind and kill +and destroy some; but that show up all earth below for leagues and +leagues. Is it not so? Well, I shall explain. To begin, have you ever +study the philosophy of crime? ‘Yes’ and ‘No.’ You, John, yes; for it is +a study of insanity. You, no, Madam Mina; for crime touch you not--not +but once. Still, your mind works true, and argues not _a particulari ad +universale_. There is this peculiarity in criminals. It is so constant, +in all countries and at all times, that even police, who know not much +from philosophy, come to know it empirically, that _it is_. That is to +be empiric. The criminal always work at one crime--that is the true +criminal who seems predestinate to crime, and who will of none other. +This criminal has not full man-brain. He is clever and cunning and +resourceful; but he be not of man-stature as to brain. He be of +child-brain in much. Now this criminal of ours is predestinate to crime +also; he, too, have child-brain, and it is of the child to do what he +have done. The little bird, the little fish, the little animal learn not +by principle, but empirically; and when he learn to do, then there is to +him the ground to start from to do more. ‘_Dos pou sto_,’ said +Archimedes. ‘Give me a fulcrum, and I shall move the world!’ To do once, +is the fulcrum whereby child-brain become man-brain; and until he have +the purpose to do more, he continue to do the same again every time, +just as he have done before! Oh, my dear, I see that your eyes are +opened, and that to you the lightning flash show all the leagues,” for +Mrs. Harker began to clap her hands and her eyes sparkled. He went on:-- + +“Now you shall speak. Tell us two dry men of science what you see with +those so bright eyes.” He took her hand and held it whilst she spoke. +His finger and thumb closed on her pulse, as I thought instinctively and +unconsciously, as she spoke:-- + +“The Count is a criminal and of criminal type. Nordau and Lombroso would +so classify him, and _quâ_ criminal he is of imperfectly formed mind. +Thus, in a difficulty he has to seek resource in habit. His past is a +clue, and the one page of it that we know--and that from his own +lips--tells that once before, when in what Mr. Morris would call a +‘tight place,’ he went back to his own country from the land he had +tried to invade, and thence, without losing purpose, prepared himself +for a new effort. He came again better equipped for his work; and won. +So he came to London to invade a new land. He was beaten, and when all +hope of success was lost, and his existence in danger, he fled back over +the sea to his home; just as formerly he had fled back over the Danube +from Turkey Land.” + +“Good, good! oh, you so clever lady!” said Van Helsing, +enthusiastically, as he stooped and kissed her hand. A moment later he +said to me, as calmly as though we had been having a sick-room +consultation:-- + +“Seventy-two only; and in all this excitement. I have hope.” Turning to +her again, he said with keen expectation:-- + +“But go on. Go on! there is more to tell if you will. Be not afraid; +John and I know. I do in any case, and shall tell you if you are right. +Speak, without fear!” + +“I will try to; but you will forgive me if I seem egotistical.” + +“Nay! fear not, you must be egotist, for it is of you that we think.” + +“Then, as he is criminal he is selfish; and as his intellect is small +and his action is based on selfishness, he confines himself to one +purpose. That purpose is remorseless. As he fled back over the Danube, +leaving his forces to be cut to pieces, so now he is intent on being +safe, careless of all. So his own selfishness frees my soul somewhat +from the terrible power which he acquired over me on that dreadful +night. I felt it! Oh, I felt it! Thank God, for His great mercy! My soul +is freer than it has been since that awful hour; and all that haunts me +is a fear lest in some trance or dream he may have used my knowledge for +his ends.” The Professor stood up:-- + +“He has so used your mind; and by it he has left us here in Varna, +whilst the ship that carried him rushed through enveloping fog up to +Galatz, where, doubtless, he had made preparation for escaping from us. +But his child-mind only saw so far; and it may be that, as ever is in +God’s Providence, the very thing that the evil-doer most reckoned on for +his selfish good, turns out to be his chiefest harm. The hunter is taken +in his own snare, as the great Psalmist says. For now that he think he +is free from every trace of us all, and that he has escaped us with so +many hours to him, then his selfish child-brain will whisper him to +sleep. He think, too, that as he cut himself off from knowing your mind, +there can be no knowledge of him to you; there is where he fail! That +terrible baptism of blood which he give you makes you free to go to him +in spirit, as you have as yet done in your times of freedom, when the +sun rise and set. At such times you go by my volition and not by his; +and this power to good of you and others, as you have won from your +suffering at his hands. This is now all the more precious that he know +it not, and to guard himself have even cut himself off from his +knowledge of our where. We, however, are not selfish, and we believe +that God is with us through all this blackness, and these many dark +hours. We shall follow him; and we shall not flinch; even if we peril +ourselves that we become like him. Friend John, this has been a great +hour; and it have done much to advance us on our way. You must be scribe +and write him all down, so that when the others return from their work +you can give it to them; then they shall know as we do.” + +And so I have written it whilst we wait their return, and Mrs. Harker +has written with her typewriter all since she brought the MS. to us. + + + + +CHAPTER XXVI + +DR. SEWARD’S DIARY + + +_29 October._--This is written in the train from Varna to Galatz. Last +night we all assembled a little before the time of sunset. Each of us +had done his work as well as he could; so far as thought, and endeavour, +and opportunity go, we are prepared for the whole of our journey, and +for our work when we get to Galatz. When the usual time came round Mrs. +Harker prepared herself for her hypnotic effort; and after a longer and +more serious effort on the part of Van Helsing than has been usually +necessary, she sank into the trance. Usually she speaks on a hint; but +this time the Professor had to ask her questions, and to ask them pretty +resolutely, before we could learn anything; at last her answer came:-- + +“I can see nothing; we are still; there are no waves lapping, but only a +steady swirl of water softly running against the hawser. I can hear +men’s voices calling, near and far, and the roll and creak of oars in +the rowlocks. A gun is fired somewhere; the echo of it seems far away. +There is tramping of feet overhead, and ropes and chains are dragged +along. What is this? There is a gleam of light; I can feel the air +blowing upon me.” + +Here she stopped. She had risen, as if impulsively, from where she lay +on the sofa, and raised both her hands, palms upwards, as if lifting a +weight. Van Helsing and I looked at each other with understanding. +Quincey raised his eyebrows slightly and looked at her intently, whilst +Harker’s hand instinctively closed round the hilt of his Kukri. There +was a long pause. We all knew that the time when she could speak was +passing; but we felt that it was useless to say anything. Suddenly she +sat up, and, as she opened her eyes, said sweetly:-- + +“Would none of you like a cup of tea? You must all be so tired!” We +could only make her happy, and so acquiesced. She bustled off to get +tea; when she had gone Van Helsing said:-- + +“You see, my friends. _He_ is close to land: he has left his +earth-chest. But he has yet to get on shore. In the night he may lie +hidden somewhere; but if he be not carried on shore, or if the ship do +not touch it, he cannot achieve the land. In such case he can, if it be +in the night, change his form and can jump or fly on shore, as he did +at Whitby. But if the day come before he get on shore, then, unless he +be carried he cannot escape. And if he be carried, then the customs men +may discover what the box contain. Thus, in fine, if he escape not on +shore to-night, or before dawn, there will be the whole day lost to him. +We may then arrive in time; for if he escape not at night we shall come +on him in daytime, boxed up and at our mercy; for he dare not be his +true self, awake and visible, lest he be discovered.” + +There was no more to be said, so we waited in patience until the dawn; +at which time we might learn more from Mrs. Harker. + +Early this morning we listened, with breathless anxiety, for her +response in her trance. The hypnotic stage was even longer in coming +than before; and when it came the time remaining until full sunrise was +so short that we began to despair. Van Helsing seemed to throw his whole +soul into the effort; at last, in obedience to his will she made +reply:-- + +“All is dark. I hear lapping water, level with me, and some creaking as +of wood on wood.” She paused, and the red sun shot up. We must wait till +to-night. + +And so it is that we are travelling towards Galatz in an agony of +expectation. We are due to arrive between two and three in the morning; +but already, at Bucharest, we are three hours late, so we cannot +possibly get in till well after sun-up. Thus we shall have two more +hypnotic messages from Mrs. Harker; either or both may possibly throw +more light on what is happening. + + * * * * * + +_Later._--Sunset has come and gone. Fortunately it came at a time when +there was no distraction; for had it occurred whilst we were at a +station, we might not have secured the necessary calm and isolation. +Mrs. Harker yielded to the hypnotic influence even less readily than +this morning. I am in fear that her power of reading the Count’s +sensations may die away, just when we want it most. It seems to me that +her imagination is beginning to work. Whilst she has been in the trance +hitherto she has confined herself to the simplest of facts. If this goes +on it may ultimately mislead us. If I thought that the Count’s power +over her would die away equally with her power of knowledge it would be +a happy thought; but I am afraid that it may not be so. When she did +speak, her words were enigmatical:-- + +“Something is going out; I can feel it pass me like a cold wind. I can +hear, far off, confused sounds--as of men talking in strange tongues, +fierce-falling water, and the howling of wolves.” She stopped and a +shudder ran through her, increasing in intensity for a few seconds, +till, at the end, she shook as though in a palsy. She said no more, even +in answer to the Professor’s imperative questioning. When she woke from +the trance, she was cold, and exhausted, and languid; but her mind was +all alert. She could not remember anything, but asked what she had said; +when she was told, she pondered over it deeply for a long time and in +silence. + + * * * * * + +_30 October, 7 a. m._--We are near Galatz now, and I may not have time +to write later. Sunrise this morning was anxiously looked for by us all. +Knowing of the increasing difficulty of procuring the hypnotic trance, +Van Helsing began his passes earlier than usual. They produced no +effect, however, until the regular time, when she yielded with a still +greater difficulty, only a minute before the sun rose. The Professor +lost no time in his questioning; her answer came with equal quickness:-- + +“All is dark. I hear water swirling by, level with my ears, and the +creaking of wood on wood. Cattle low far off. There is another sound, a +queer one like----” She stopped and grew white, and whiter still. + +“Go on; go on! Speak, I command you!” said Van Helsing in an agonised +voice. At the same time there was despair in his eyes, for the risen sun +was reddening even Mrs. Harker’s pale face. She opened her eyes, and we +all started as she said, sweetly and seemingly with the utmost +unconcern:-- + +“Oh, Professor, why ask me to do what you know I can’t? I don’t remember +anything.” Then, seeing the look of amazement on our faces, she said, +turning from one to the other with a troubled look:-- + +“What have I said? What have I done? I know nothing, only that I was +lying here, half asleep, and heard you say ‘go on! speak, I command you!’ +It seemed so funny to hear you order me about, as if I were a bad +child!” + +“Oh, Madam Mina,” he said, sadly, “it is proof, if proof be needed, of +how I love and honour you, when a word for your good, spoken more +earnest than ever, can seem so strange because it is to order her whom I +am proud to obey!” + +The whistles are sounding; we are nearing Galatz. We are on fire with +anxiety and eagerness. + + +_Mina Harker’s Journal._ + +_30 October._--Mr. Morris took me to the hotel where our rooms had been +ordered by telegraph, he being the one who could best be spared, since +he does not speak any foreign language. The forces were distributed +much as they had been at Varna, except that Lord Godalming went to the +Vice-Consul, as his rank might serve as an immediate guarantee of some +sort to the official, we being in extreme hurry. Thomas and the two +doctors went to the shipping agent to learn particulars of the arrival +of the _Czarina Catherine_. + + * * * * * + +_Later._--Lord Godalming has returned. The Consul is away, and the +Vice-Consul sick; so the routine work has been attended to by a clerk. +He was very obliging, and offered to do anything in his power. + + +_Thomas Harker’s Journal._ + +_30 October._--At nine o’clock Dr. Van Helsing, Dr. Seward, and I called +on Messrs. Mackenzie & Steinkoff, the agents of the London firm of +Hapgood. They had received a wire from London, in answer to Lord +Godalming’s telegraphed request, asking us to show them any civility in +their power. They were more than kind and courteous, and took us at once +on board the _Czarina Catherine_, which lay at anchor out in the river +harbour. There we saw the Captain, Donelson by name, who told us of his +voyage. He said that in all his life he had never had so favourable a +run. + +“Man!” he said, “but it made us afeard, for we expeckit that we should +have to pay for it wi’ some rare piece o’ ill luck, so as to keep up the +average. It’s no canny to run frae London to the Black Sea wi’ a wind +ahint ye, as though the Deil himself were blawin’ on yer sail for his +ain purpose. An’ a’ the time we could no speer a thing. Gin we were nigh +a ship, or a port, or a headland, a fog fell on us and travelled wi’ us, +till when after it had lifted and we looked out, the deil a thing could +we see. We ran by Gibraltar wi’oot bein’ able to signal; an’ till we +came to the Dardanelles and had to wait to get our permit to pass, we +never were within hail o’ aught. At first I inclined to slack off sail +and beat about till the fog was lifted; but whiles, I thocht that if the +Deil was minded to get us into the Black Sea quick, he was like to do it +whether we would or no. If we had a quick voyage it would be no to our +miscredit wi’ the owners, or no hurt to our traffic; an’ the Old Mon who +had served his ain purpose wad be decently grateful to us for no +hinderin’ him.” This mixture of simplicity and cunning, of superstition +and commercial reasoning, aroused Van Helsing, who said:-- + +“Mine friend, that Devil is more clever than he is thought by some; and +he know when he meet his match!” The skipper was not displeased with the +compliment, and went on:-- + +“When we got past the Bosphorus the men began to grumble; some o’ them, +the Roumanians, came and asked me to heave overboard a big box which had +been put on board by a queer lookin’ old man just before we had started +frae London. I had seen them speer at the fellow, and put out their twa +fingers when they saw him, to guard against the evil eye. Man! but the +supersteetion of foreigners is pairfectly rideeculous! I sent them aboot +their business pretty quick; but as just after a fog closed in on us I +felt a wee bit as they did anent something, though I wouldn’t say it was +agin the big box. Well, on we went, and as the fog didn’t let up for +five days I joost let the wind carry us; for if the Deil wanted to get +somewheres--well, he would fetch it up a’reet. An’ if he didn’t, well, +we’d keep a sharp lookout anyhow. Sure eneuch, we had a fair way and +deep water all the time; and two days ago, when the mornin’ sun came +through the fog, we found ourselves just in the river opposite Galatz. +The Roumanians were wild, and wanted me right or wrong to take out the +box and fling it in the river. I had to argy wi’ them aboot it wi’ a +handspike; an’ when the last o’ them rose off the deck wi’ his head in +his hand, I had convinced them that, evil eye or no evil eye, the +property and the trust of my owners were better in my hands than in the +river Danube. They had, mind ye, taken the box on the deck ready to +fling in, and as it was marked Galatz _via_ Varna, I thocht I’d let it +lie till we discharged in the port an’ get rid o’t althegither. We +didn’t do much clearin’ that day, an’ had to remain the nicht at anchor; +but in the mornin’, braw an’ airly, an hour before sun-up, a man came +aboard wi’ an order, written to him from England, to receive a box +marked for one Count Dracula. Sure eneuch the matter was one ready to +his hand. He had his papers a’ reet, an’ glad I was to be rid o’ the +dam’ thing, for I was beginnin’ masel’ to feel uneasy at it. If the Deil +did have any luggage aboord the ship, I’m thinkin’ it was nane ither +than that same!” + +“What was the name of the man who took it?” asked Dr. Van Helsing with +restrained eagerness. + +“I’ll be tellin’ ye quick!” he answered, and, stepping down to his +cabin, produced a receipt signed “Immanuel Hildesheim.” Burgen-strasse +16 was the address. We found out that this was all the Captain knew; so +with thanks we came away. + +We found Hildesheim in his office, a Hebrew of rather the Adelphi +Theatre type, with a nose like a sheep, and a fez. His arguments were +pointed with specie--we doing the punctuation--and with a little +bargaining he told us what he knew. This turned out to be simple but +important. He had received a letter from Mr. de Ville of London, telling +him to receive, if possible before sunrise so as to avoid customs, a box +which would arrive at Galatz in the _Czarina Catherine_. This he was to +give in charge to a certain Petrof Skinsky, who dealt with the Slovaks +who traded down the river to the port. He had been paid for his work by +an English bank note, which had been duly cashed for gold at the Danube +International Bank. When Skinsky had come to him, he had taken him to +the ship and handed over the box, so as to save porterage. That was all +he knew. + +We then sought for Skinsky, but were unable to find him. One of his +neighbours, who did not seem to bear him any affection, said that he had +gone away two days before, no one knew whither. This was corroborated by +his landlord, who had received by messenger the key of the house +together with the rent due, in English money. This had been between ten +and eleven o’clock last night. We were at a standstill again. + +Whilst we were talking one came running and breathlessly gasped out that +the body of Skinsky had been found inside the wall of the churchyard of +St. Peter, and that the throat had been torn open as if by some wild +animal. Those we had been speaking with ran off to see the horror, the +women crying out “This is the work of a Slovak!” We hurried away lest we +should have been in some way drawn into the affair, and so detained. + +As we came home we could arrive at no definite conclusion. We were all +convinced that the box was on its way, by water, to somewhere; but where +that might be we would have to discover. With heavy hearts we came home +to the hotel to Mina. + +When we met together, the first thing was to consult as to taking Mina +again into our confidence. Things are getting desperate, and it is at +least a chance, though a hazardous one. As a preliminary step, I was +released from my promise to her. + + +_Mina Harker’s Journal._ + +_30 October, evening._--They were so tired and worn out and dispirited +that there was nothing to be done till they had some rest; so I asked +them all to lie down for half an hour whilst I should enter everything +up to the moment. I feel so grateful to the man who invented the +“Traveller’s” typewriter, and to Mr. Morris for getting this one for +me. I should have felt quite astray doing the work if I had to write +with a pen.... + +It is all done; poor dear, dear Thomas, what he must have suffered, +what must he be suffering now. He lies on the sofa hardly seeming to +breathe, and his whole body appears in collapse. His brows are knit; his +face is drawn with pain. Poor fellow, maybe he is thinking, and I can +see his face all wrinkled up with the concentration of his thoughts. Oh! +if I could only help at all.... I shall do what I can. + +I have asked Dr. Van Helsing, and he has got me all the papers that I +have not yet seen.... Whilst they are resting, I shall go over all +carefully, and perhaps I may arrive at some conclusion. I shall try to +follow the Professor’s example, and think without prejudice on the facts +before me.... + + * * * * * + +I do believe that under God’s providence I have made a discovery. I +shall get the maps and look over them.... + + * * * * * + +I am more than ever sure that I am right. My new conclusion is ready, so +I shall get our party together and read it. They can judge it; it is +well to be accurate, and every minute is precious. + + +_Mina Harker’s Memorandum._ + +(Entered in her Journal.) + +_Ground of inquiry._--Count Dracula’s problem is to get back to his own +place. + +(_a_) He must be _brought back_ by some one. This is evident; for had he +power to move himself as he wished he could go either as man, or wolf, +or bat, or in some other way. He evidently fears discovery or +interference, in the state of helplessness in which he must be--confined +as he is between dawn and sunset in his wooden box. + +(_b_) _How is he to be taken?_--Here a process of exclusions may help +us. By road, by rail, by water? + +1. _By Road._--There are endless difficulties, especially in leaving the +city. + +(_x_) There are people; and people are curious, and investigate. A hint, +a surmise, a doubt as to what might be in the box, would destroy him. + +(_y_) There are, or there may be, customs and octroi officers to pass. + +(_z_) His pursuers might follow. This is his highest fear; and in order +to prevent his being betrayed he has repelled, so far as he can, even +his victim--me! + +2. _By Rail._--There is no one in charge of the box. It would have to +take its chance of being delayed; and delay would be fatal, with enemies +on the track. True, he might escape at night; but what would he be, if +left in a strange place with no refuge that he could fly to? This is not +what he intends; and he does not mean to risk it. + +3. _By Water._--Here is the safest way, in one respect, but with most +danger in another. On the water he is powerless except at night; even +then he can only summon fog and storm and snow and his wolves. But were +he wrecked, the living water would engulf him, helpless; and he would +indeed be lost. He could have the vessel drive to land; but if it were +unfriendly land, wherein he was not free to move, his position would +still be desperate. + +We know from the record that he was on the water; so what we have to do +is to ascertain _what_ water. + +The first thing is to realise exactly what he has done as yet; we may, +then, get a light on what his later task is to be. + +_Firstly._--We must differentiate between what he did in London as part +of his general plan of action, when he was pressed for moments and had +to arrange as best he could. + +_Secondly_ we must see, as well as we can surmise it from the facts we +know of, what he has done here. + +As to the first, he evidently intended to arrive at Galatz, and sent +invoice to Varna to deceive us lest we should ascertain his means of +exit from England; his immediate and sole purpose then was to escape. +The proof of this, is the letter of instructions sent to Immanuel +Hildesheim to clear and take away the box _before sunrise_. There is +also the instruction to Petrof Skinsky. These we must only guess at; but +there must have been some letter or message, since Skinsky came to +Hildesheim. + +That, so far, his plans were successful we know. The _Czarina Catherine_ +made a phenomenally quick journey--so much so that Captain Donelson’s +suspicions were aroused; but his superstition united with his canniness +played the Count’s game for him, and he ran with his favouring wind +through fogs and all till he brought up blindfold at Galatz. That the +Count’s arrangements were well made, has been proved. Hildesheim cleared +the box, took it off, and gave it to Skinsky. Skinsky took it--and here +we lose the trail. We only know that the box is somewhere on the water, +moving along. The customs and the octroi, if there be any, have been +avoided. + +Now we come to what the Count must have done after his arrival--_on +land_, at Galatz. + +The box was given to Skinsky before sunrise. At sunrise the Count could +appear in his own form. Here, we ask why Skinsky was chosen at all to +aid in the work? In my husband’s diary, Skinsky is mentioned as dealing +with the Slovaks who trade down the river to the port; and the man’s +remark, that the murder was the work of a Slovak, showed the general +feeling against his class. The Count wanted isolation. + +My surmise is, this: that in London the Count decided to get back to his +castle by water, as the most safe and secret way. He was brought from +the castle by Szgany, and probably they delivered their cargo to Slovaks +who took the boxes to Varna, for there they were shipped for London. +Thus the Count had knowledge of the persons who could arrange this +service. When the box was on land, before sunrise or after sunset, he +came out from his box, met Skinsky and instructed him what to do as to +arranging the carriage of the box up some river. When this was done, and +he knew that all was in train, he blotted out his traces, as he thought, +by murdering his agent. + +I have examined the map and find that the river most suitable for the +Slovaks to have ascended is either the Pruth or the Sereth. I read in +the typescript that in my trance I heard cows low and water swirling +level with my ears and the creaking of wood. The Count in his box, then, +was on a river in an open boat--propelled probably either by oars or +poles, for the banks are near and it is working against stream. There +would be no such sound if floating down stream. + +Of course it may not be either the Sereth or the Pruth, but we may +possibly investigate further. Now of these two, the Pruth is the more +easily navigated, but the Sereth is, at Fundu, joined by the Bistritza +which runs up round the Borgo Pass. The loop it makes is manifestly as +close to Dracula’s castle as can be got by water. + + +_Mina Harker’s Journal--continued._ + +When I had done reading, Thomas took me in his arms and kissed me. The +others kept shaking me by both hands, and Dr. Van Helsing said:-- + +“Our dear Madam Mina is once more our teacher. Her eyes have been where +we were blinded. Now we are on the track once again, and this time we +may succeed. Our enemy is at his most helpless; and if we can come on +him by day, on the water, our task will be over. He has a start, but he +is powerless to hasten, as he may not leave his box lest those who carry +him may suspect; for them to suspect would be to prompt them to throw +him in the stream where he perish. This he knows, and will not. Now men, +to our Council of War; for, here and now, we must plan what each and all +shall do.” + +“I shall get a steam launch and follow him,” said Lord Godalming. + +“And I, horses to follow on the bank lest by chance he land,” said Mr. +Morris. + +“Good!” said the Professor, “both good. But neither must go alone. There +must be force to overcome force if need be; the Slovak is strong and +rough, and he carries rude arms.” All the men smiled, for amongst them +they carried a small arsenal. Said Mr. Morris:-- + +“I have brought some Winchesters; they are pretty handy in a crowd, and +there may be wolves. The Count, if you remember, took some other +precautions; he made some requisitions on others that Mrs. Harker could +not quite hear or understand. We must be ready at all points.” Dr. +Seward said:-- + +“I think I had better go with Quincey. We have been accustomed to hunt +together, and we two, well armed, will be a match for whatever may come +along. You must not be alone, Art. It may be necessary to fight the +Slovaks, and a chance thrust--for I don’t suppose these fellows carry +guns--would undo all our plans. There must be no chances, this time; we +shall not rest until the Count’s head and body have been separated, and +we are sure that he cannot re-incarnate.” He looked at Thomas as he +spoke, and Thomas looked at me. I could see that the poor dear was +torn about in his mind. Of course he wanted to be with me; but then the +boat service would, most likely, be the one which would destroy the ... +the ... the ... Vampire. (Why did I hesitate to write the word?) He was +silent awhile, and during his silence Dr. Van Helsing spoke:-- + +“Friend Thomas, this is to you for twice reasons. First, because you +are young and brave and can fight, and all energies may be needed at the +last; and again that it is your right to destroy him--that--which has +wrought such woe to you and yours. Be not afraid for Madam Mina; she +will be my care, if I may. I am old. My legs are not so quick to run as +once; and I am not used to ride so long or to pursue as need be, or to +fight with lethal weapons. But I can be of other service; I can fight in +other way. And I can die, if need be, as well as younger men. Now let +me say that what I would is this: while you, my Lord Godalming and +friend Thomas go in your so swift little steamboat up the river, and +whilst John and Quincey guard the bank where perchance he might be +landed, I will take Madam Mina right into the heart of the enemy’s +country. Whilst the old fox is tied in his box, floating on the running +stream whence he cannot escape to land--where he dares not raise the lid +of his coffin-box lest his Slovak carriers should in fear leave him to +perish--we shall go in the track where Thomas went,--from Bistritz +over the Borgo, and find our way to the Castle of Dracula. Here, Madam +Mina’s hypnotic power will surely help, and we shall find our way--all +dark and unknown otherwise--after the first sunrise when we are near +that fateful place. There is much to be done, and other places to be +made sanctify, so that that nest of vipers be obliterated.” Here +Thomas interrupted him hotly:-- + +“Do you mean to say, Professor Van Helsing, that you would bring Mina, +in her sad case and tainted as she is with that devil’s illness, right +into the jaws of his death-trap? Not for the world! Not for Heaven or +Hell!” He became almost speechless for a minute, and then went on:-- + +“Do you know what the place is? Have you seen that awful den of hellish +infamy--with the very moonlight alive with grisly shapes, and every +speck of dust that whirls in the wind a devouring monster in embryo? +Have you felt the Vampire’s lips upon your throat?” Here he turned to +me, and as his eyes lit on my forehead he threw up his arms with a cry: +“Oh, my God, what have we done to have this terror upon us!” and he sank +down on the sofa in a collapse of misery. The Professor’s voice, as he +spoke in clear, sweet tones, which seemed to vibrate in the air, calmed +us all:-- + +“Oh, my friend, it is because I would save Madam Mina from that awful +place that I would go. God forbid that I should take her into that +place. There is work--wild work--to be done there, that her eyes may not +see. We men here, all save Thomas, have seen with their own eyes what +is to be done before that place can be purify. Remember that we are in +terrible straits. If the Count escape us this time--and he is strong and +subtle and cunning--he may choose to sleep him for a century, and then +in time our dear one”--he took my hand--“would come to him to keep him +company, and would be as those others that you, Thomas, saw. You have +told us of their gloating lips; you heard their ribald laugh as they +clutched the moving bag that the Count threw to them. You shudder; and +well may it be. Forgive me that I make you so much pain, but it is +necessary. My friend, is it not a dire need for the which I am giving, +possibly my life? If it were that any one went into that place to stay, +it is I who would have to go to keep them company.” + +“Do as you will,” said Thomas, with a sob that shook him all over, “we +are in the hands of God!” + + * * * * * + +_Later._--Oh, it did me good to see the way that these brave men worked. +How can women help loving men when they are so earnest, and so true, and +so brave! And, too, it made me think of the wonderful power of money! +What can it not do when it is properly applied; and what might it do +when basely used. I felt so thankful that Lord Godalming is rich, and +that both he and Mr. Morris, who also has plenty of money, are willing +to spend it so freely. For if they did not, our little expedition could +not start, either so promptly or so well equipped, as it will within +another hour. It is not three hours since it was arranged what part each +of us was to do; and now Lord Godalming and Thomas have a lovely steam +launch, with steam up ready to start at a moment’s notice. Dr. Seward +and Mr. Morris have half a dozen good horses, well appointed. We have +all the maps and appliances of various kinds that can be had. Professor +Van Helsing and I are to leave by the 11:40 train to-night for Veresti, +where we are to get a carriage to drive to the Borgo Pass. We are +bringing a good deal of ready money, as we are to buy a carriage and +horses. We shall drive ourselves, for we have no one whom we can trust +in the matter. The Professor knows something of a great many languages, +so we shall get on all right. We have all got arms, even for me a +large-bore revolver; Thomas would not be happy unless I was armed like +the rest. Alas! I cannot carry one arm that the rest do; the scar on my +forehead forbids that. Dear Dr. Van Helsing comforts me by telling me +that I am fully armed as there may be wolves; the weather is getting +colder every hour, and there are snow-flurries which come and go as +warnings. + + * * * * * + +_Later._--It took all my courage to say good-bye to my darling. We may +never meet again. Courage, Mina! the Professor is looking at you keenly; +his look is a warning. There must be no tears now--unless it may be that +God will let them fall in gladness. + + +_Thomas Harker’s Journal._ + +_October 30. Night._--I am writing this in the light from the furnace +door of the steam launch: Lord Godalming is firing up. He is an +experienced hand at the work, as he has had for years a launch of his +own on the Thames, and another on the Norfolk Broads. Regarding our +plans, we finally decided that Mina’s guess was correct, and that if any +waterway was chosen for the Count’s escape back to his Castle, the +Sereth and then the Bistritza at its junction, would be the one. We took +it, that somewhere about the 47th degree, north latitude, would be the +place chosen for the crossing the country between the river and the +Carpathians. We have no fear in running at good speed up the river at +night; there is plenty of water, and the banks are wide enough apart to +make steaming, even in the dark, easy enough. Lord Godalming tells me to +sleep for a while, as it is enough for the present for one to be on +watch. But I cannot sleep--how can I with the terrible danger hanging +over my darling, and her going out into that awful place.... My only +comfort is that we are in the hands of God. Only for that faith it would +be easier to die than to live, and so be quit of all the trouble. Mr. +Morris and Dr. Seward were off on their long ride before we started; +they are to keep up the right bank, far enough off to get on higher +lands where they can see a good stretch of river and avoid the following +of its curves. They have, for the first stages, two men to ride and lead +their spare horses--four in all, so as not to excite curiosity. When +they dismiss the men, which shall be shortly, they shall themselves look +after the horses. It may be necessary for us to join forces; if so they +can mount our whole party. One of the saddles has a movable horn, and +can be easily adapted for Mina, if required. + +It is a wild adventure we are on. Here, as we are rushing along through +the darkness, with the cold from the river seeming to rise up and strike +us; with all the mysterious voices of the night around us, it all comes +home. We seem to be drifting into unknown places and unknown ways; into +a whole world of dark and dreadful things. Godalming is shutting the +furnace door.... + + * * * * * + +_31 October._--Still hurrying along. The day has come, and Godalming is +sleeping. I am on watch. The morning is bitterly cold; the furnace heat +is grateful, though we have heavy fur coats. As yet we have passed only +a few open boats, but none of them had on board any box or package of +anything like the size of the one we seek. The men were scared every +time we turned our electric lamp on them, and fell on their knees and +prayed. + + * * * * * + +_1 November, evening._--No news all day; we have found nothing of the +kind we seek. We have now passed into the Bistritza; and if we are wrong +in our surmise our chance is gone. We have over-hauled every boat, big +and little. Early this morning, one crew took us for a Government boat, +and treated us accordingly. We saw in this a way of smoothing matters, +so at Fundu, where the Bistritza runs into the Sereth, we got a +Roumanian flag which we now fly conspicuously. With every boat which we +have over-hauled since then this trick has succeeded; we have had every +deference shown to us, and not once any objection to whatever we chose +to ask or do. Some of the Slovaks tell us that a big boat passed them, +going at more than usual speed as she had a double crew on board. This +was before they came to Fundu, so they could not tell us whether the +boat turned into the Bistritza or continued on up the Sereth. At Fundu +we could not hear of any such boat, so she must have passed there in the +night. I am feeling very sleepy; the cold is perhaps beginning to tell +upon me, and nature must have rest some time. Godalming insists that he +shall keep the first watch. God bless him for all his goodness to poor +dear Mina and me. + + * * * * * + +_2 November, morning._--It is broad daylight. That good fellow would not +wake me. He says it would have been a sin to, for I slept peacefully and +was forgetting my trouble. It seems brutally selfish to me to have slept +so long, and let him watch all night; but he was quite right. I am a new +man this morning; and, as I sit here and watch him sleeping, I can do +all that is necessary both as to minding the engine, steering, and +keeping watch. I can feel that my strength and energy are coming back to +me. I wonder where Mina is now, and Van Helsing. They should have got to +Veresti about noon on Wednesday. It would take them some time to get the +carriage and horses; so if they had started and travelled hard, they +would be about now at the Borgo Pass. God guide and help them! I am +afraid to think what may happen. If we could only go faster! but we +cannot; the engines are throbbing and doing their utmost. I wonder how +Dr. Seward and Mr. Morris are getting on. There seem to be endless +streams running down the mountains into this river, but as none of them +are very large--at present, at all events, though they are terrible +doubtless in winter and when the snow melts--the horsemen may not have +met much obstruction. I hope that before we get to Strasba we may see +them; for if by that time we have not overtaken the Count, it may be +necessary to take counsel together what to do next. + + +_Dr. Seward’s Diary._ + +_2 November._--Three days on the road. No news, and no time to write it +if there had been, for every moment is precious. We have had only the +rest needful for the horses; but we are both bearing it wonderfully. +Those adventurous days of ours are turning up useful. We must push on; +we shall never feel happy till we get the launch in sight again. + + * * * * * + +_3 November._--We heard at Fundu that the launch had gone up the +Bistritza. I wish it wasn’t so cold. There are signs of snow coming; and +if it falls heavy it will stop us. In such case we must get a sledge and +go on, Russian fashion. + + * * * * * + +_4 November._--To-day we heard of the launch having been detained by an +accident when trying to force a way up the rapids. The Slovak boats get +up all right, by aid of a rope and steering with knowledge. Some went up +only a few hours before. Godalming is an amateur fitter himself, and +evidently it was he who put the launch in trim again. Finally, they got +up the rapids all right, with local help, and are off on the chase +afresh. I fear that the boat is not any better for the accident; the +peasantry tell us that after she got upon smooth water again, she kept +stopping every now and again so long as she was in sight. We must push +on harder than ever; our help may be wanted soon. + + +_Mina Harker’s Journal._ + +_31 October._--Arrived at Veresti at noon. The Professor tells me that +this morning at dawn he could hardly hypnotise me at all, and that all I +could say was: “dark and quiet.” He is off now buying a carriage and +horses. He says that he will later on try to buy additional horses, so +that we may be able to change them on the way. We have something more +than 70 miles before us. The country is lovely, and most interesting; if +only we were under different conditions, how delightful it would be to +see it all. If Thomas and I were driving through it alone what a +pleasure it would be. To stop and see people, and learn something of +their life, and to fill our minds and memories with all the colour and +picturesqueness of the whole wild, beautiful country and the quaint +people! But, alas!-- + + * * * * * + +_Later._--Dr. Van Helsing has returned. He has got the carriage and +horses; we are to have some dinner, and to start in an hour. The +landlady is putting us up a huge basket of provisions; it seems enough +for a company of soldiers. The Professor encourages her, and whispers to +me that it may be a week before we can get any good food again. He has +been shopping too, and has sent home such a wonderful lot of fur coats +and wraps, and all sorts of warm things. There will not be any chance of +our being cold. + + * * * * * + +We shall soon be off. I am afraid to think what may happen to us. We are +truly in the hands of God. He alone knows what may be, and I pray Him, +with all the strength of my sad and humble soul, that He will watch over +my beloved husband; that whatever may happen, Thomas may know that I +loved him and honoured him more than I can say, and that my latest and +truest thought will be always for him. + + + + +CHAPTER XXVII + +MINA HARKER’S JOURNAL + + +_1 November._--All day long we have travelled, and at a good speed. The +horses seem to know that they are being kindly treated, for they go +willingly their full stage at best speed. We have now had so many +changes and find the same thing so constantly that we are encouraged to +think that the journey will be an easy one. Dr. Van Helsing is laconic; +he tells the farmers that he is hurrying to Bistritz, and pays them well +to make the exchange of horses. We get hot soup, or coffee, or tea; and +off we go. It is a lovely country; full of beauties of all imaginable +kinds, and the people are brave, and strong, and simple, and seem full +of nice qualities. They are _very, very_ superstitious. In the first +house where we stopped, when the woman who served us saw the scar on my +forehead, she crossed herself and put out two fingers towards me, to +keep off the evil eye. I believe they went to the trouble of putting an +extra amount of garlic into our food; and I can’t abide garlic. Ever +since then I have taken care not to take off my hat or veil, and so have +escaped their suspicions. We are travelling fast, and as we have no +driver with us to carry tales, we go ahead of scandal; but I daresay +that fear of the evil eye will follow hard behind us all the way. The +Professor seems tireless; all day he would not take any rest, though he +made me sleep for a long spell. At sunset time he hypnotised me, and he +says that I answered as usual “darkness, lapping water and creaking +wood”; so our enemy is still on the river. I am afraid to think of +Thomas, but somehow I have now no fear for him, or for myself. I write +this whilst we wait in a farmhouse for the horses to be got ready. Dr. +Van Helsing is sleeping. Poor dear, he looks very tired and old and +grey, but his mouth is set as firmly as a conqueror’s; even in his sleep +he is instinct with resolution. When we have well started I must make +him rest whilst I drive. I shall tell him that we have days before us, +and we must not break down when most of all his strength will be +needed.... All is ready; we are off shortly. + + * * * * * + +_2 November, morning._--I was successful, and we took turns driving all +night; now the day is on us, bright though cold. There is a strange +heaviness in the air--I say heaviness for want of a better word; I mean +that it oppresses us both. It is very cold, and only our warm furs keep +us comfortable. At dawn Van Helsing hypnotised me; he says I answered +“darkness, creaking wood and roaring water,” so the river is changing as +they ascend. I do hope that my darling will not run any chance of +danger--more than need be; but we are in God’s hands. + + * * * * * + +_2 November, night._--All day long driving. The country gets wilder as +we go, and the great spurs of the Carpathians, which at Veresti seemed +so far from us and so low on the horizon, now seem to gather round us +and tower in front. We both seem in good spirits; I think we make an +effort each to cheer the other; in the doing so we cheer ourselves. Dr. +Van Helsing says that by morning we shall reach the Borgo Pass. The +houses are very few here now, and the Professor says that the last horse +we got will have to go on with us, as we may not be able to change. He +got two in addition to the two we changed, so that now we have a rude +four-in-hand. The dear horses are patient and good, and they give us no +trouble. We are not worried with other travellers, and so even I can +drive. We shall get to the Pass in daylight; we do not want to arrive +before. So we take it easy, and have each a long rest in turn. Oh, what +will to-morrow bring to us? We go to seek the place where my poor +darling suffered so much. God grant that we may be guided aright, and +that He will deign to watch over my husband and those dear to us both, +and who are in such deadly peril. As for me, I am not worthy in His +sight. Alas! I am unclean to His eyes, and shall be until He may deign +to let me stand forth in His sight as one of those who have not incurred +His wrath. + + +_Memorandum by Abraham Van Helsing._ + +_4 November._--This to my old and true friend John Seward, M.D., of +Purfleet, London, in case I may not see him. It may explain. It is +morning, and I write by a fire which all the night I have kept +alive--Madam Mina aiding me. It is cold, cold; so cold that the grey +heavy sky is full of snow, which when it falls will settle for all +winter as the ground is hardening to receive it. It seems to have +affected Madam Mina; she has been so heavy of head all day that she was +not like herself. She sleeps, and sleeps, and sleeps! She who is usual +so alert, have done literally nothing all the day; she even have lost +her appetite. She make no entry into her little diary, she who write so +faithful at every pause. Something whisper to me that all is not well. +However, to-night she is more _vif_. Her long sleep all day have refresh +and restore her, for now she is all sweet and bright as ever. At sunset +I try to hypnotise her, but alas! with no effect; the power has grown +less and less with each day, and to-night it fail me altogether. Well, +God’s will be done--whatever it may be, and whithersoever it may lead! + +Now to the historical, for as Madam Mina write not in her stenography, I +must, in my cumbrous old fashion, that so each day of us may not go +unrecorded. + +We got to the Borgo Pass just after sunrise yesterday morning. When I +saw the signs of the dawn I got ready for the hypnotism. We stopped our +carriage, and got down so that there might be no disturbance. I made a +couch with furs, and Madam Mina, lying down, yield herself as usual, but +more slow and more short time than ever, to the hypnotic sleep. As +before, came the answer: “darkness and the swirling of water.” Then she +woke, bright and radiant and we go on our way and soon reach the Pass. +At this time and place, she become all on fire with zeal; some new +guiding power be in her manifested, for she point to a road and say:-- + +“This is the way.” + +“How know you it?” I ask. + +“Of course I know it,” she answer, and with a pause, add: “Have not my +Thomas travelled it and wrote of his travel?” + +At first I think somewhat strange, but soon I see that there be only one +such by-road. It is used but little, and very different from the coach +road from the Bukovina to Bistritz, which is more wide and hard, and +more of use. + +So we came down this road; when we meet other ways--not always were we +sure that they were roads at all, for they be neglect and light snow +have fallen--the horses know and they only. I give rein to them, and +they go on so patient. By-and-by we find all the things which Thomas +have note in that wonderful diary of him. Then we go on for long, long +hours and hours. At the first, I tell Madam Mina to sleep; she try, and +she succeed. She sleep all the time; till at the last, I feel myself to +suspicious grow, and attempt to wake her. But she sleep on, and I may +not wake her though I try. I do not wish to try too hard lest I harm +her; for I know that she have suffer much, and sleep at times be +all-in-all to her. I think I drowse myself, for all of sudden I feel +guilt, as though I have done something; I find myself bolt up, with the +reins in my hand, and the good horses go along jog, jog, just as ever. I +look down and find Madam Mina still sleep. It is now not far off sunset +time, and over the snow the light of the sun flow in big yellow flood, +so that we throw great long shadow on where the mountain rise so steep. +For we are going up, and up; and all is oh! so wild and rocky, as though +it were the end of the world. + +Then I arouse Madam Mina. This time she wake with not much trouble, and +then I try to put her to hypnotic sleep. But she sleep not, being as +though I were not. Still I try and try, till all at once I find her and +myself in dark; so I look round, and find that the sun have gone down. +Madam Mina laugh, and I turn and look at her. She is now quite awake, +and look so well as I never saw her since that night at Carfax when we +first enter the Count’s house. I am amaze, and not at ease then; but she +is so bright and tender and thoughtful for me that I forget all fear. I +light a fire, for we have brought supply of wood with us, and she +prepare food while I undo the horses and set them, tethered in shelter, +to feed. Then when I return to the fire she have my supper ready. I go +to help her; but she smile, and tell me that she have eat already--that +she was so hungry that she would not wait. I like it not, and I have +grave doubts; but I fear to affright her, and so I am silent of it. She +help me and I eat alone; and then we wrap in fur and lie beside the +fire, and I tell her to sleep while I watch. But presently I forget all +of watching; and when I sudden remember that I watch, I find her lying +quiet, but awake, and looking at me with so bright eyes. Once, twice +more the same occur, and I get much sleep till before morning. When I +wake I try to hypnotise her; but alas! though she shut her eyes +obedient, she may not sleep. The sun rise up, and up, and up; and then +sleep come to her too late, but so heavy that she will not wake. I have +to lift her up, and place her sleeping in the carriage when I have +harnessed the horses and made all ready. Madam still sleep, and she look +in her sleep more healthy and more redder than before. And I like it +not. And I am afraid, afraid, afraid!--I am afraid of all things--even +to think but I must go on my way. The stake we play for is life and +death, or more than these, and we must not flinch. + + * * * * * + +_5 November, morning._--Let me be accurate in everything, for though you +and I have seen some strange things together, you may at the first think +that I, Van Helsing, am mad--that the many horrors and the so long +strain on nerves has at the last turn my brain. + +All yesterday we travel, ever getting closer to the mountains, and +moving into a more and more wild and desert land. There are great, +frowning precipices and much falling water, and Nature seem to have held +sometime her carnival. Madam Mina still sleep and sleep; and though I +did have hunger and appeased it, I could not waken her--even for food. I +began to fear that the fatal spell of the place was upon her, tainted as +she is with that Vampire baptism. “Well,” said I to myself, “if it be +that she sleep all the day, it shall also be that I do not sleep at +night.” As we travel on the rough road, for a road of an ancient and +imperfect kind there was, I held down my head and slept. Again I waked +with a sense of guilt and of time passed, and found Madam Mina still +sleeping, and the sun low down. But all was indeed changed; the frowning +mountains seemed further away, and we were near the top of a +steep-rising hill, on summit of which was such a castle as Thomas tell +of in his diary. At once I exulted and feared; for now, for good or ill, +the end was near. + +I woke Madam Mina, and again tried to hypnotise her; but alas! +unavailing till too late. Then, ere the great dark came upon us--for +even after down-sun the heavens reflected the gone sun on the snow, and +all was for a time in a great twilight--I took out the horses and fed +them in what shelter I could. Then I make a fire; and near it I make +Madam Mina, now awake and more charming than ever, sit comfortable amid +her rugs. I got ready food: but she would not eat, simply saying that +she had not hunger. I did not press her, knowing her unavailingness. But +I myself eat, for I must needs now be strong for all. Then, with the +fear on me of what might be, I drew a ring so big for her comfort, round +where Madam Mina sat; and over the ring I passed some of the wafer, and +I broke it fine so that all was well guarded. She sat still all the +time--so still as one dead; and she grew whiter and ever whiter till the +snow was not more pale; and no word she said. But when I drew near, she +clung to me, and I could know that the poor soul shook her from head to +feet with a tremor that was pain to feel. I said to her presently, when +she had grown more quiet:-- + +“Will you not come over to the fire?” for I wished to make a test of +what she could. She rose obedient, but when she have made a step she +stopped, and stood as one stricken. + +“Why not go on?” I asked. She shook her head, and, coming back, sat +down in her place. Then, looking at me with open eyes, as of one waked +from sleep, she said simply:-- + +“I cannot!” and remained silent. I rejoiced, for I knew that what she +could not, none of those that we dreaded could. Though there might be +danger to her body, yet her soul was safe! + +Presently the horses began to scream, and tore at their tethers till I +came to them and quieted them. When they did feel my hands on them, they +whinnied low as in joy, and licked at my hands and were quiet for a +time. Many times through the night did I come to them, till it arrive to +the cold hour when all nature is at lowest; and every time my coming was +with quiet of them. In the cold hour the fire began to die, and I was +about stepping forth to replenish it, for now the snow came in flying +sweeps and with it a chill mist. Even in the dark there was a light of +some kind, as there ever is over snow; and it seemed as though the +snow-flurries and the wreaths of mist took shape as of women with +trailing garments. All was in dead, grim silence only that the horses +whinnied and cowered, as if in terror of the worst. I began to +fear--horrible fears; but then came to me the sense of safety in that +ring wherein I stood. I began, too, to think that my imaginings were of +the night, and the gloom, and the unrest that I have gone through, and +all the terrible anxiety. It was as though my memories of all Thomas’s +horrid experience were befooling me; for the snow flakes and the mist +began to wheel and circle round, till I could get as though a shadowy +glimpse of those women that would have kissed him. And then the horses +cowered lower and lower, and moaned in terror as men do in pain. Even +the madness of fright was not to them, so that they could break away. I +feared for my dear Madam Mina when these weird figures drew near and +circled round. I looked at her, but she sat calm, and smiled at me; when +I would have stepped to the fire to replenish it, she caught me and held +me back, and whispered, like a voice that one hears in a dream, so low +it was:-- + +“No! No! Do not go without. Here you are safe!” I turned to her, and +looking in her eyes, said:-- + +“But you? It is for you that I fear!” whereat she laughed--a laugh, low +and unreal, and said:-- + +“Fear for _me_! Why fear for me? None safer in all the world from them +than I am,” and as I wondered at the meaning of her words, a puff of +wind made the flame leap up, and I see the red scar on her forehead. +Then, alas! I knew. Did I not, I would soon have learned, for the +wheeling figures of mist and snow came closer, but keeping ever without +the Holy circle. Then they began to materialise till--if God have not +take away my reason, for I saw it through my eyes--there were before me +in actual flesh the same three women that Thomas saw in the room, when +they would have kissed his throat. I knew the swaying round forms, the +bright hard eyes, the white teeth, the ruddy colour, the voluptuous +lips. They smiled ever at poor dear Madam Mina; and as their laugh came +through the silence of the night, they twined their arms and pointed to +her, and said in those so sweet tingling tones that Thomas said were +of the intolerable sweetness of the water-glasses:-- + +“Come, sister. Come to us. Come! Come!” In fear I turned to my poor +Madam Mina, and my heart with gladness leapt like flame; for oh! the +terror in her sweet eyes, the repulsion, the horror, told a story to my +heart that was all of hope. God be thanked she was not, yet, of them. I +seized some of the firewood which was by me, and holding out some of the +Wafer, advanced on them towards the fire. They drew back before me, and +laughed their low horrid laugh. I fed the fire, and feared them not; for +I knew that we were safe within our protections. They could not +approach, me, whilst so armed, nor Madam Mina whilst she remained within +the ring, which she could not leave no more than they could enter. The +horses had ceased to moan, and lay still on the ground; the snow fell on +them softly, and they grew whiter. I knew that there was for the poor +beasts no more of terror. + +And so we remained till the red of the dawn to fall through the +snow-gloom. I was desolate and afraid, and full of woe and terror; but +when that beautiful sun began to climb the horizon life was to me again. +At the first coming of the dawn the horrid figures melted in the +whirling mist and snow; the wreaths of transparent gloom moved away +towards the castle, and were lost. + +Instinctively, with the dawn coming, I turned to Madam Mina, intending +to hypnotise her; but she lay in a deep and sudden sleep, from which I +could not wake her. I tried to hypnotise through her sleep, but she made +no response, none at all; and the day broke. I fear yet to stir. I have +made my fire and have seen the horses, they are all dead. To-day I have +much to do here, and I keep waiting till the sun is up high; for there +may be places where I must go, where that sunlight, though snow and mist +obscure it, will be to me a safety. + +I will strengthen me with breakfast, and then I will to my terrible +work. Madam Mina still sleeps; and, God be thanked! she is calm in her +sleep.... + + +_Thomas Harker’s Journal._ + +_4 November, evening._--The accident to the launch has been a terrible +thing for us. Only for it we should have overtaken the boat long ago; +and by now my dear Mina would have been free. I fear to think of her, +off on the wolds near that horrid place. We have got horses, and we +follow on the track. I note this whilst Godalming is getting ready. We +have our arms. The Szgany must look out if they mean fight. Oh, if only +Morris and Seward were with us. We must only hope! If I write no more +Good-bye, Mina! God bless and keep you. + + +_Dr. Seward’s Diary._ + +_5 November._--With the dawn we saw the body of Szgany before us dashing +away from the river with their leiter-wagon. They surrounded it in a +cluster, and hurried along as though beset. The snow is falling lightly +and there is a strange excitement in the air. It may be our own +feelings, but the depression is strange. Far off I hear the howling of +wolves; the snow brings them down from the mountains, and there are +dangers to all of us, and from all sides. The horses are nearly ready, +and we are soon off. We ride to death of some one. God alone knows who, +or where, or what, or when, or how it may be.... + + +_Dr. Van Helsing’s Memorandum._ + +_5 November, afternoon._--I am at least sane. Thank God for that mercy +at all events, though the proving it has been dreadful. When I left +Madam Mina sleeping within the Holy circle, I took my way to the castle. +The blacksmith hammer which I took in the carriage from Veresti was +useful; though the doors were all open I broke them off the rusty +hinges, lest some ill-intent or ill-chance should close them, so that +being entered I might not get out. Thomas’s bitter experience served +me here. By memory of his diary I found my way to the old chapel, for I +knew that here my work lay. The air was oppressive; it seemed as if +there was some sulphurous fume, which at times made me dizzy. Either +there was a roaring in my ears or I heard afar off the howl of wolves. +Then I bethought me of my dear Madam Mina, and I was in terrible plight. +The dilemma had me between his horns. + +Her, I had not dare to take into this place, but left safe from the +Vampire in that Holy circle; and yet even there would be the wolf! I +resolve me that my work lay here, and that as to the wolves we must +submit, if it were God’s will. At any rate it was only death and +freedom beyond. So did I choose for her. Had it but been for myself the +choice had been easy, the maw of the wolf were better to rest in than +the grave of the Vampire! So I make my choice to go on with my work. + +I knew that there were at least three graves to find--graves that are +inhabit; so I search, and search, and I find one of them. She lay in her +Vampire sleep, so full of life and voluptuous beauty that I shudder as +though I have come to do murder. Ah, I doubt not that in old time, when +such things were, many a man who set forth to do such a task as mine, +found at the last his heart fail him, and then his nerve. So he delay, +and delay, and delay, till the mere beauty and the fascination of the +wanton Un-Dead have hypnotise him; and he remain on and on, till sunset +come, and the Vampire sleep be over. Then the beautiful eyes of the fair +woman open and look love, and the voluptuous mouth present to a +kiss--and man is weak. And there remain one more victim in the Vampire +fold; one more to swell the grim and grisly ranks of the Un-Dead!... + +There is some fascination, surely, when I am moved by the mere presence +of such an one, even lying as she lay in a tomb fretted with age and +heavy with the dust of centuries, though there be that horrid odour such +as the lairs of the Count have had. Yes, I was moved--I, Van Helsing, +with all my purpose and with my motive for hate--I was moved to a +yearning for delay which seemed to paralyse my faculties and to clog my +very soul. It may have been that the need of natural sleep, and the +strange oppression of the air were beginning to overcome me. Certain it +was that I was lapsing into sleep, the open-eyed sleep of one who yields +to a sweet fascination, when there came through the snow-stilled air a +long, low wail, so full of woe and pity that it woke me like the sound +of a clarion. For it was the voice of my dear Madam Mina that I heard. + +Then I braced myself again to my horrid task, and found by wrenching +away tomb-tops one other of the sisters, the other dark one. I dared not +pause to look on her as I had on her sister, lest once more I should +begin to be enthrall; but I go on searching until, presently, I find in +a high great tomb as if made to one much beloved that other fair sister +which, like Thomas I had seen to gather herself out of the atoms of +the mist. She was so fair to look on, so radiantly beautiful, so +exquisitely voluptuous, that the very instinct of man in me, which calls +some of my sex to love and to protect one of hers, made my head whirl +with new emotion. But God be thanked, that soul-wail of my dear Madam +Mina had not died out of my ears; and, before the spell could be wrought +further upon me, I had nerved myself to my wild work. By this time I had +searched all the tombs in the chapel, so far as I could tell; and as +there had been only three of these Un-Dead phantoms around us in the +night, I took it that there were no more of active Un-Dead existent. +There was one great tomb more lordly than all the rest; huge it was, and +nobly proportioned. On it was but one word + + DRACULA. + +This then was the Un-Dead home of the King-Vampire, to whom so many more +were due. Its emptiness spoke eloquent to make certain what I knew. +Before I began to restore these women to their dead selves through my +awful work, I laid in Dracula’s tomb some of the Wafer, and so banished +him from it, Un-Dead, for ever. + +Then began my terrible task, and I dreaded it. Had it been but one, it +had been easy, comparative. But three! To begin twice more after I had +been through a deed of horror; for if it was terrible with the sweet +Miss Lucy, what would it not be with these strange ones who had survived +through centuries, and who had been strengthened by the passing of the +years; who would, if they could, have fought for their foul lives.... + +Oh, my friend John, but it was butcher work; had I not been nerved by +thoughts of other dead, and of the living over whom hung such a pall of +fear, I could not have gone on. I tremble and tremble even yet, though +till all was over, God be thanked, my nerve did stand. Had I not seen +the repose in the first place, and the gladness that stole over it just +ere the final dissolution came, as realisation that the soul had been +won, I could not have gone further with my butchery. I could not have +endured the horrid screeching as the stake drove home; the plunging of +writhing form, and lips of bloody foam. I should have fled in terror and +left my work undone. But it is over! And the poor souls, I can pity them +now and weep, as I think of them placid each in her full sleep of death +for a short moment ere fading. For, friend John, hardly had my knife +severed the head of each, before the whole body began to melt away and +crumble in to its native dust, as though the death that should have come +centuries agone had at last assert himself and say at once and loud “I +am here!” + +Before I left the castle I so fixed its entrances that never more can +the Count enter there Un-Dead. + +When I stepped into the circle where Madam Mina slept, she woke from her +sleep, and, seeing, me, cried out in pain that I had endured too much. + +“Come!” she said, “come away from this awful place! Let us go to meet my +husband who is, I know, coming towards us.” She was looking thin and +pale and weak; but her eyes were pure and glowed with fervour. I was +glad to see her paleness and her illness, for my mind was full of the +fresh horror of that ruddy vampire sleep. + +And so with trust and hope, and yet full of fear, we go eastward to meet +our friends--and _him_--whom Madam Mina tell me that she _know_ are +coming to meet us. + + +_Mina Harker’s Journal._ + +_6 November._--It was late in the afternoon when the Professor and I +took our way towards the east whence I knew Thomas was coming. We did +not go fast, though the way was steeply downhill, for we had to take +heavy rugs and wraps with us; we dared not face the possibility of being +left without warmth in the cold and the snow. We had to take some of our +provisions, too, for we were in a perfect desolation, and, so far as we +could see through the snowfall, there was not even the sign of +habitation. When we had gone about a mile, I was tired with the heavy +walking and sat down to rest. Then we looked back and saw where the +clear line of Dracula’s castle cut the sky; for we were so deep under +the hill whereon it was set that the angle of perspective of the +Carpathian mountains was far below it. We saw it in all its grandeur, +perched a thousand feet on the summit of a sheer precipice, and with +seemingly a great gap between it and the steep of the adjacent mountain +on any side. There was something wild and uncanny about the place. We +could hear the distant howling of wolves. They were far off, but the +sound, even though coming muffled through the deadening snowfall, was +full of terror. I knew from the way Dr. Van Helsing was searching about +that he was trying to seek some strategic point, where we would be less +exposed in case of attack. The rough roadway still led downwards; we +could trace it through the drifted snow. + +In a little while the Professor signalled to me, so I got up and joined +him. He had found a wonderful spot, a sort of natural hollow in a rock, +with an entrance like a doorway between two boulders. He took me by the +hand and drew me in: “See!” he said, “here you will be in shelter; and +if the wolves do come I can meet them one by one.” He brought in our +furs, and made a snug nest for me, and got out some provisions and +forced them upon me. But I could not eat; to even try to do so was +repulsive to me, and, much as I would have liked to please him, I could +not bring myself to the attempt. He looked very sad, but did not +reproach me. Taking his field-glasses from the case, he stood on the top +of the rock, and began to search the horizon. Suddenly he called out:-- + +“Look! Madam Mina, look! look!” I sprang up and stood beside him on the +rock; he handed me his glasses and pointed. The snow was now falling +more heavily, and swirled about fiercely, for a high wind was beginning +to blow. However, there were times when there were pauses between the +snow flurries and I could see a long way round. From the height where we +were it was possible to see a great distance; and far off, beyond the +white waste of snow, I could see the river lying like a black ribbon in +kinks and curls as it wound its way. Straight in front of us and not far +off--in fact, so near that I wondered we had not noticed before--came a +group of mounted men hurrying along. In the midst of them was a cart, a +long leiter-wagon which swept from side to side, like a dog’s tail +wagging, with each stern inequality of the road. Outlined against the +snow as they were, I could see from the men’s clothes that they were +peasants or gypsies of some kind. + +On the cart was a great square chest. My heart leaped as I saw it, for I +felt that the end was coming. The evening was now drawing close, and +well I knew that at sunset the Thing, which was till then imprisoned +there, would take new freedom and could in any of many forms elude all +pursuit. In fear I turned to the Professor; to my consternation, +however, he was not there. An instant later, I saw him below me. Round +the rock he had drawn a circle, such as we had found shelter in last +night. When he had completed it he stood beside me again, saying:-- + +“At least you shall be safe here from _him_!” He took the glasses from +me, and at the next lull of the snow swept the whole space below us. +“See,” he said, “they come quickly; they are flogging the horses, and +galloping as hard as they can.” He paused and went on in a hollow +voice:-- + +“They are racing for the sunset. We may be too late. God’s will be +done!” Down came another blinding rush of driving snow, and the whole +landscape was blotted out. It soon passed, however, and once more his +glasses were fixed on the plain. Then came a sudden cry:-- + +“Look! Look! Look! See, two horsemen follow fast, coming up from the +south. It must be Quincey and John. Take the glass. Look before the snow +blots it all out!” I took it and looked. The two men might be Dr. Seward +and Mr. Morris. I knew at all events that neither of them was Thomas. +At the same time I _knew_ that Thomas was not far off; looking around +I saw on the north side of the coming party two other men, riding at +break-neck speed. One of them I knew was Thomas, and the other I took, +of course, to be Lord Godalming. They, too, were pursuing the party with +the cart. When I told the Professor he shouted in glee like a schoolboy, +and, after looking intently till a snow fall made sight impossible, he +laid his Winchester rifle ready for use against the boulder at the +opening of our shelter. “They are all converging,” he said. “When the +time comes we shall have gypsies on all sides.” I got out my revolver +ready to hand, for whilst we were speaking the howling of wolves came +louder and closer. When the snow storm abated a moment we looked again. +It was strange to see the snow falling in such heavy flakes close to us, +and beyond, the sun shining more and more brightly as it sank down +towards the far mountain tops. Sweeping the glass all around us I could +see here and there dots moving singly and in twos and threes and larger +numbers--the wolves were gathering for their prey. + +Every instant seemed an age whilst we waited. The wind came now in +fierce bursts, and the snow was driven with fury as it swept upon us in +circling eddies. At times we could not see an arm’s length before us; +but at others, as the hollow-sounding wind swept by us, it seemed to +clear the air-space around us so that we could see afar off. We had of +late been so accustomed to watch for sunrise and sunset, that we knew +with fair accuracy when it would be; and we knew that before long the +sun would set. It was hard to believe that by our watches it was less +than an hour that we waited in that rocky shelter before the various +bodies began to converge close upon us. The wind came now with fiercer +and more bitter sweeps, and more steadily from the north. It seemingly +had driven the snow clouds from us, for, with only occasional bursts, +the snow fell. We could distinguish clearly the individuals of each +party, the pursued and the pursuers. Strangely enough those pursued did +not seem to realise, or at least to care, that they were pursued; they +seemed, however, to hasten with redoubled speed as the sun dropped lower +and lower on the mountain tops. + +Closer and closer they drew. The Professor and I crouched down behind +our rock, and held our weapons ready; I could see that he was determined +that they should not pass. One and all were quite unaware of our +presence. + +All at once two voices shouted out to: “Halt!” One was my Thomas’s, +raised in a high key of passion; the other Mr. Morris’ strong resolute +tone of quiet command. The gypsies may not have known the language, but +there was no mistaking the tone, in whatever tongue the words were +spoken. Instinctively they reined in, and at the instant Lord Godalming +and Thomas dashed up at one side and Dr. Seward and Mr. Morris on the +other. The leader of the gypsies, a splendid-looking fellow who sat his +horse like a centaur, waved them back, and in a fierce voice gave to his +companions some word to proceed. They lashed the horses which sprang +forward; but the four men raised their Winchester rifles, and in an +unmistakable way commanded them to stop. At the same moment Dr. Van +Helsing and I rose behind the rock and pointed our weapons at them. +Seeing that they were surrounded the men tightened their reins and drew +up. The leader turned to them and gave a word at which every man of the +gypsy party drew what weapon he carried, knife or pistol, and held +himself in readiness to attack. Issue was joined in an instant. + +The leader, with a quick movement of his rein, threw his horse out in +front, and pointing first to the sun--now close down on the hill +tops--and then to the castle, said something which I did not understand. +For answer, all four men of our party threw themselves from their horses +and dashed towards the cart. I should have felt terrible fear at seeing +Thomas in such danger, but that the ardour of battle must have been +upon me as well as the rest of them; I felt no fear, but only a wild, +surging desire to do something. Seeing the quick movement of our +parties, the leader of the gypsies gave a command; his men instantly +formed round the cart in a sort of undisciplined endeavour, each one +shouldering and pushing the other in his eagerness to carry out the +order. + +In the midst of this I could see that Thomas on one side of the ring +of men, and Quincey on the other, were forcing a way to the cart; it was +evident that they were bent on finishing their task before the sun +should set. Nothing seemed to stop or even to hinder them. Neither the From 9cdc320c2b5142d3493809cda2b64f4286319596 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Fri, 31 Oct 2025 21:33:21 +0000 Subject: [PATCH 14/56] Wordle solution --- chapters/chap08.ipynb | 121 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 117 insertions(+), 4 deletions(-) diff --git a/chapters/chap08.ipynb b/chapters/chap08.ipynb index e2ea670a..e7842e70 100644 --- a/chapters/chap08.ipynb +++ b/chapters/chap08.ipynb @@ -7927,7 +7927,23 @@ "outputs": [], "source": [ "# Solution goes here\n", - "def " + "def check_word(five_letter_word):\n", + " forbidden_letters = \"SPADCLRK\"\n", + "\n", + " word = five_letter_word.lower()\n", + "\n", + " if uses_any(five_letter_word, forbidden_letters):\n", + " return False\n", + " if 'e' not in word:\n", + " return False\n", + " if 'e' == word[2]:\n", + " return False\n", + " if 'e' == word[4]:\n", + " return False\n", + " \n", + " return True\n", + "\n", + " " ] }, { @@ -7940,7 +7956,7 @@ }, { "cell_type": "code", - "execution_count": 77, + "execution_count": 115, "id": "8d19b6ce", "metadata": { "tags": [] @@ -7966,12 +7982,109 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": 116, "id": "9bbf0b1c", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "befit\n", + "befog\n", + "beget\n", + "begin\n", + "begot\n", + "begum\n", + "begun\n", + "beigy\n", + "being\n", + "bemix\n", + "benni\n", + "benny\n", + "beton\n", + "bewig\n", + "bogey\n", + "boney\n", + "buteo\n", + "ebbet\n", + "ebony\n", + "eight\n", + "embow\n", + "emmet\n", + "enfin\n", + "enjoy\n", + "ennui\n", + "envoi\n", + "envoy\n", + "enzym\n", + "eying\n", + "feign\n", + "feint\n", + "fenny\n", + "feoff\n", + "fogey\n", + "fumet\n", + "gemmy\n", + "gemot\n", + "genet\n", + "genii\n", + "genom\n", + "given\n", + "gooey\n", + "hefty\n", + "heigh\n", + "hemin\n", + "heugh\n", + "homey\n", + "honey\n", + "hooey\n", + "hymen\n", + "jemmy\n", + "jenny\n", + "jeton\n", + "jetty\n", + "meiny\n", + "mezzo\n", + "mizen\n", + "money\n", + "motet\n", + "motey\n", + "neigh\n", + "netty\n", + "nomen\n", + "numen\n", + "often\n", + "quiet\n", + "tenet\n", + "tenon\n", + "tenth\n", + "tenty\n", + "teugh\n", + "thief\n", + "totem\n", + "unmet\n", + "unmew\n", + "veiny\n", + "venin\n", + "venom\n", + "vimen\n", + "vixen\n", + "webby\n", + "weigh\n", + "wenny\n", + "winey\n", + "witen\n", + "wizen\n", + "women\n", + "woven\n", + "xenon\n", + "zibet\n" + ] + } + ], "source": [ "for line in open('words.txt'):\n", " word = line.strip()\n", From 1b8337eeb2a62e09b9c40219df4ffa7250e7aae9 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Wed, 26 Nov 2025 20:26:50 +0000 Subject: [PATCH 15/56] TOTEM solution --- chapters/chap08.ipynb | 87 +++++++++++++++++++++++++++++-------------- 1 file changed, 60 insertions(+), 27 deletions(-) diff --git a/chapters/chap08.ipynb b/chapters/chap08.ipynb index e7842e70..6b3289f1 100644 --- a/chapters/chap08.ipynb +++ b/chapters/chap08.ipynb @@ -7328,7 +7328,7 @@ }, { "cell_type": "code", - "execution_count": 81, + "execution_count": 71, "id": "772f5c14", "metadata": { "tags": [] @@ -7365,7 +7365,7 @@ }, { "cell_type": "code", - "execution_count": 71, + "execution_count": 72, "id": "8650dec2", "metadata": { "tags": [] @@ -7394,7 +7394,7 @@ }, { "cell_type": "code", - "execution_count": 96, + "execution_count": 73, "id": "75b12538", "metadata": {}, "outputs": [], @@ -7434,7 +7434,7 @@ }, { "cell_type": "code", - "execution_count": 102, + "execution_count": 74, "id": "9cbc19cd", "metadata": { "tags": [] @@ -7853,7 +7853,7 @@ }, { "cell_type": "code", - "execution_count": 99, + "execution_count": 75, "id": "19de7df0", "metadata": { "tags": [] @@ -7865,7 +7865,7 @@ }, { "cell_type": "code", - "execution_count": 100, + "execution_count": 76, "id": "242f7ba6", "metadata": { "tags": [] @@ -7892,14 +7892,6 @@ "!tail pg345_cleaned_100_lines.txt" ] }, - { - "cell_type": "markdown", - "id": "86aa87df", - "metadata": {}, - "source": [ - "##### BOOKMARK" - ] - }, { "cell_type": "markdown", "id": "adb78357", @@ -7921,7 +7913,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 77, "id": "2a37092e", "metadata": {}, "outputs": [], @@ -7932,7 +7924,7 @@ "\n", " word = five_letter_word.lower()\n", "\n", - " if uses_any(five_letter_word, forbidden_letters):\n", + " if uses_any(word, forbidden_letters):\n", " return False\n", " if 'e' not in word:\n", " return False\n", @@ -7956,7 +7948,7 @@ }, { "cell_type": "code", - "execution_count": 115, + "execution_count": 78, "id": "8d19b6ce", "metadata": { "tags": [] @@ -7982,7 +7974,7 @@ }, { "cell_type": "code", - "execution_count": 116, + "execution_count": 79, "id": "9bbf0b1c", "metadata": { "tags": [] @@ -8092,6 +8084,14 @@ " print(word)" ] }, + { + "cell_type": "markdown", + "id": "86aa87df", + "metadata": {}, + "source": [ + "##### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "d009cb52", @@ -8099,27 +8099,59 @@ "source": [ "### Exercise\n", "\n", - "Continuing the previous exercise, suppose you guess the work `TOTEM` and learn that the `E` is *still* not in the right place, but the `M` is. How many words are left?" + "Continuing the previous exercise, suppose you guess the word `TOTEM` and learn that the `E` is *still* not in the right place, but the `M` is. How many words are left?" ] }, { "cell_type": "code", - "execution_count": 79, + "execution_count": 84, "id": "925c7aa9", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def check_word(five_letter_word):\n", + " forbidden_letters = \"SPADCLRKTO\"\n", + "\n", + " word = five_letter_word.lower()\n", + "\n", + " if uses_any(word, forbidden_letters):\n", + " return False\n", + " if 'e' not in word:\n", + " return False\n", + " if 'e' == word[2]:\n", + " return False\n", + " if 'e' == word[4]:\n", + " return False\n", + " if 'm' != word[4]:\n", + " return False\n", + " if 'e' == word[3]:\n", + " return False\n", + " \n", + " return True" ] }, { "cell_type": "code", - "execution_count": 80, + "execution_count": 85, "id": "3f658f3a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "begum\n", + "enzym\n" + ] + } + ], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "for line in open('words.txt'):\n", + " word = line.strip()\n", + " if len(word) == 5 and check_word(word):\n", + " print(word)" ] }, { @@ -8151,7 +8183,7 @@ }, { "cell_type": "code", - "execution_count": 81, + "execution_count": 96, "id": "9a74be13", "metadata": { "tags": [] @@ -8159,9 +8191,10 @@ "outputs": [], "source": [ "import os\n", + "from urllib.request import urlretrieve\n", "\n", "if not os.path.exists('pg1184.txt'):\n", - " !wget https://www.gutenberg.org/cache/epub/1184/pg1184.txt" + " local, _ = urlretrieve('https://www.gutenberg.org/cache/epub/1184/pg1184.txt', 'pg1184.txt')" ] }, { @@ -8176,7 +8209,7 @@ }, { "cell_type": "code", - "execution_count": 82, + "execution_count": 97, "id": "946c63d2", "metadata": { "tags": [] From d43a12b2a1cc272cc2d4d21b7a6cc1d68f4e8544 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Thu, 4 Dec 2025 17:49:07 +0000 Subject: [PATCH 16/56] Solution to exercise 8 --- .DS_Store | Bin 6148 -> 6148 bytes chapters/chap08.ipynb | 88 +- chapters/pg1184.txt | 61676 ++++++++++++++++++++++++++++++++++ chapters/pg1184_cleaned.txt | 61301 +++++++++++++++++++++++++++++++++ 4 files changed, 123051 insertions(+), 14 deletions(-) create mode 100644 chapters/pg1184.txt create mode 100644 chapters/pg1184_cleaned.txt diff --git a/.DS_Store b/.DS_Store index e6b7433eb3dfee771423d5461b4adea691d0b698..e474adeaf5a65f79037e9402cd4b770274ad7424 100644 GIT binary patch delta 343 zcmZoMXfc=|#>B)qu~2NHo}wr-0|Nsi1A_nqLkUAFLlHx9Qh9N~#*NDv>p?Oc49N@` z42cW{$g)W}`AI;zok;~bnZ+dr2G;i=7gSqCvcn z{QR6G7&|d3EHkw{UO>b-Kd&S)GcUCWtRXWc6{sX8JTosPzuYOmG%qE(7_2!MBE!ka z!5J?gSzT>xX{MuKXl7(qtD{hDX=I?IU}9-hTg%BIs;qAv6rY`wo0s1WbR7^d0{sOB zyigiO^-Szhkj3y?S#VKaPJUiGP!;3GjZaxNvvcrs00U~{#_!CN`9*X^K-xh@Hb7{w O>6=4DHZV_YU;zMfHdS;0 delta 94 zcmZoMXfc=|#>CJzu~2NHo}wrt0|NsP3otO0Fr+dRF%+kz6emwCRG-YqEIRoo6VGN< t=0_}>9hfVbHnVf^a{x7NHe~+JJeglamlLG-01z`ww&9W993!%X82~ft7GwYb diff --git a/chapters/chap08.ipynb b/chapters/chap08.ipynb index 6b3289f1..5f90e314 100644 --- a/chapters/chap08.ipynb +++ b/chapters/chap08.ipynb @@ -8104,7 +8104,7 @@ }, { "cell_type": "code", - "execution_count": 84, + "execution_count": 80, "id": "925c7aa9", "metadata": {}, "outputs": [], @@ -8133,7 +8133,7 @@ }, { "cell_type": "code", - "execution_count": 85, + "execution_count": 81, "id": "3f658f3a", "metadata": {}, "outputs": [ @@ -8183,7 +8183,7 @@ }, { "cell_type": "code", - "execution_count": 96, + "execution_count": 82, "id": "9a74be13", "metadata": { "tags": [] @@ -8209,7 +8209,7 @@ }, { "cell_type": "code", - "execution_count": 97, + "execution_count": 83, "id": "946c63d2", "metadata": { "tags": [] @@ -8237,32 +8237,92 @@ }, { "cell_type": "code", - "execution_count": 83, + "execution_count": 84, "id": "08294921", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def check_p_word(word):\n", + "\n", + " word = word.lower()\n", + "\n", + " if word == 'pale':\n", + " return 1\n", + " elif word == 'pales':\n", + " return 1\n", + " elif word == 'paled':\n", + " return 1\n", + " elif word == 'paleness':\n", + " return 1\n", + " elif word == 'pallor':\n", + " return 1\n", + " else:\n", + " return 0 \n", + " " ] }, { "cell_type": "code", - "execution_count": 84, - "id": "3eb8f83f", + "execution_count": 87, + "id": "b6bffe8a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Words equal to 'pale' or similar appear: 0 times.\n" + ] + } + ], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "counter = 0\n", + "\n", + "for line in open('pg1184_cleaned.txt'):\n", + " word2check = line.strip()\n", + " counter += check_p_word(word2check)\n", + "\n", + "print(f\"Words equal to 'pale' or similar appear: {counter} times.\")\n", + "\n", + " " ] }, { "cell_type": "code", - "execution_count": 85, - "id": "b6bffe8a", + "execution_count": 107, + "id": "3eb8f83f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "256\n" + ] + } + ], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "total = 0\n", + "\n", + "for line in open('pg1184_cleaned.txt'):\n", + " setence = line.strip().lower()\n", + " if 'pale' in setence:\n", + " total += 1\n", + " elif 'pales' in setence:\n", + " total += 1\n", + " elif 'paled' in setence:\n", + " total += 1\n", + " elif 'paleness' in setence:\n", + " total += 1\n", + " elif 'pallor' in setence:\n", + " total += 1\n", + " else:\n", + " continue\n", + "\n", + "print(total)\n" ] }, { diff --git a/chapters/pg1184.txt b/chapters/pg1184.txt new file mode 100644 index 00000000..7b924889 --- /dev/null +++ b/chapters/pg1184.txt @@ -0,0 +1,61676 @@ +The Project Gutenberg eBook of The Count of Monte Cristo + +This ebook is for the use of anyone anywhere in the United States and +most other parts of the world at no cost and with almost no restrictions +whatsoever. You may copy it, give it away or re-use it under the terms +of the Project Gutenberg License included with this ebook or online +at www.gutenberg.org. If you are not located in the United States, +you will have to check the laws of the country where you are located +before using this eBook. + +Title: The Count of Monte Cristo + +Author: Alexandre Dumas + Auguste Maquet + +Release date: January 1, 1998 [eBook #1184] + Most recently updated: August 9, 2025 + +Language: English + +Credits: Anonymous Project Gutenberg Volunteers, Dan Muller and David Widger + + +*** START OF THE PROJECT GUTENBERG EBOOK THE COUNT OF MONTE CRISTO *** + + + + +THE COUNT OF MONTE CRISTO + +by Alexandre Dumas [père] + + + + +Contents + + + VOLUME ONE +Chapter 1. Marseilles—The Arrival +Chapter 2. Father and Son +Chapter 3. The Catalans +Chapter 4. Conspiracy +Chapter 5. The Marriage Feast +Chapter 6. The Deputy Procureur du Roi +Chapter 7. The Examination +Chapter 8. The Château d’If +Chapter 9. The Evening of the Betrothal +Chapter 10. The King’s Closet at the Tuileries +Chapter 11. The Corsican Ogre +Chapter 12. Father and Son +Chapter 13. The Hundred Days +Chapter 14. The Two Prisoners +Chapter 15. Number 34 and Number 27 +Chapter 16. A Learned Italian +Chapter 17. The Abbé’s Chamber +Chapter 18. The Treasure +Chapter 19. The Third Attack +Chapter 20. The Cemetery of the Château d’If +Chapter 21. The Island of Tiboulen +Chapter 22. The Smugglers +Chapter 23. The Island of Monte Cristo +Chapter 24. The Secret Cave +Chapter 25. The Unknown +Chapter 26. The Pont du Gard Inn +Chapter 27. The Story + + VOLUME TWO +Chapter 28. The Prison Register +Chapter 29. The House of Morrel & Son +Chapter 30. The Fifth of September +Chapter 31. Italy: Sinbad the Sailor +Chapter 32. The Waking +Chapter 33. Roman Bandits +Chapter 34. The Colosseum +Chapter 35. La Mazzolata +Chapter 36. The Carnival at Rome. +Chapter 37. The Catacombs of Saint Sebastian +Chapter 38. The Rendezvous +Chapter 39. The Guests +Chapter 40. The Breakfast +Chapter 41. The Presentation +Chapter 42. Monsieur Bertuccio +Chapter 43. The House at Auteuil +Chapter 44. The Vendetta +Chapter 45. The Rain of Blood +Chapter 46. Unlimited Credit +Chapter 47. The Dappled Grays + + VOLUME THREE +Chapter 48. Ideology +Chapter 49. Haydée +Chapter 50. The Morrel Family +Chapter 51. Pyramus and Thisbe +Chapter 52. Toxicology +Chapter 53. Robert le Diable +Chapter 54. A Flurry in Stocks +Chapter 55. Major Cavalcanti +Chapter 56. Andrea Cavalcanti +Chapter 57. In the Lucern Patch +Chapter 58. M. Noirtier de Villefort +Chapter 59. The Will +Chapter 60. The Telegraph +Chapter 61. How a Gardener May Get Rid of the Dormice +Chapter 62. Ghosts +Chapter 63. The Dinner +Chapter 64. The Beggar +Chapter 65. A Conjugal Scene +Chapter 66. Matrimonial Projects +Chapter 67. The Office of the King’s Attorney +Chapter 68. A Summer Ball +Chapter 69. The Inquiry +Chapter 70. The Ball +Chapter 71. Bread and Salt +Chapter 72. Madame de Saint-Méran +Chapter 73. The Promise + +VOLUME FOUR +Chapter 74. The Villefort Family Vault +Chapter 75. A Signed Statement +Chapter 76. Progress of Cavalcanti the Younger +Chapter 77. Haydée +Chapter 78. We hear From Yanina +Chapter 79. The Lemonade +Chapter 80. The Accusation +Chapter 81. The Room of the Retired Baker +Chapter 82. The Burglary +Chapter 83. The Hand of God +Chapter 84. Beauchamp +Chapter 85. The Journey +Chapter 86. The Trial +Chapter 87. The Challenge +Chapter 88. The Insult +Chapter 89. The Night +Chapter 90. The Meeting +Chapter 91. Mother and Son +Chapter 92. The Suicide +Chapter 93. Valentine +Chapter 94. Maximilian’s Avowal +Chapter 95. Father and Daughter + +VOLUME FIVE +Chapter 96. The Contract +Chapter 97. The Departure for Belgium +Chapter 98. The Bell and Bottle Tavern +Chapter 99. The Law +Chapter 100. The Apparition +Chapter 101. Locusta +Chapter 102. Valentine +Chapter 103. Maximilian +Chapter 104. Danglars’ Signature +Chapter 105. The Cemetery of Père-Lachaise +Chapter 106. Dividing the Proceeds +Chapter 107. The Lions’ Den +Chapter 108. The Judge +Chapter 109. The Assizes +Chapter 110. The Indictment +Chapter 111. Expiation +Chapter 112. The Departure +Chapter 113. The Past +Chapter 114. Peppino +Chapter 115. Luigi Vampa’s Bill of Fare +Chapter 116. The Pardon +Chapter 117. The Fifth of October + + + +VOLUME ONE + + + + Chapter 1. Marseilles—The Arrival + +On the 24th of February, 1815, the look-out at Notre-Dame de la Garde +signalled the three-master, the _Pharaon_ from Smyrna, Trieste, and +Naples. + +As usual, a pilot put off immediately, and rounding the Château d’If, +got on board the vessel between Cape Morgiou and Rion island. + +Immediately, and according to custom, the ramparts of Fort Saint-Jean +were covered with spectators; it is always an event at Marseilles for a +ship to come into port, especially when this ship, like the _Pharaon_, +has been built, rigged, and laden at the old Phocee docks, and belongs +to an owner of the city. + +The ship drew on and had safely passed the strait, which some volcanic +shock has made between the Calasareigne and Jaros islands; had doubled +Pomègue, and approached the harbor under topsails, jib, and spanker, +but so slowly and sedately that the idlers, with that instinct which is +the forerunner of evil, asked one another what misfortune could have +happened on board. However, those experienced in navigation saw plainly +that if any accident had occurred, it was not to the vessel herself, +for she bore down with all the evidence of being skilfully handled, the +anchor a-cockbill, the jib-boom guys already eased off, and standing by +the side of the pilot, who was steering the _Pharaon_ towards the +narrow entrance of the inner port, was a young man, who, with activity +and vigilant eye, watched every motion of the ship, and repeated each +direction of the pilot. + +The vague disquietude which prevailed among the spectators had so much +affected one of the crowd that he did not await the arrival of the +vessel in harbor, but jumping into a small skiff, desired to be pulled +alongside the _Pharaon_, which he reached as she rounded into La +Réserve basin. + +When the young man on board saw this person approach, he left his +station by the pilot, and, hat in hand, leaned over the ship’s +bulwarks. + +He was a fine, tall, slim young fellow of eighteen or twenty, with +black eyes, and hair as dark as a raven’s wing; and his whole +appearance bespoke that calmness and resolution peculiar to men +accustomed from their cradle to contend with danger. + +“Ah, is it you, Dantès?” cried the man in the skiff. “What’s the +matter? and why have you such an air of sadness aboard?” + +“A great misfortune, M. Morrel,” replied the young man, “a great +misfortune, for me especially! Off Civita Vecchia we lost our brave +Captain Leclere.” + +“And the cargo?” inquired the owner, eagerly. + +“Is all safe, M. Morrel; and I think you will be satisfied on that +head. But poor Captain Leclere——” + +“What happened to him?” asked the owner, with an air of considerable +resignation. “What happened to the worthy captain?” + +“He died.” + +“Fell into the sea?” + +“No, sir, he died of brain-fever in dreadful agony.” Then turning to +the crew, he said, “Bear a hand there, to take in sail!” + +All hands obeyed, and at once the eight or ten seamen who composed the +crew, sprang to their respective stations at the spanker brails and +outhaul, topsail sheets and halyards, the jib downhaul, and the topsail +clewlines and buntlines. The young sailor gave a look to see that his +orders were promptly and accurately obeyed, and then turned again to +the owner. + +“And how did this misfortune occur?” inquired the latter, resuming the +interrupted conversation. + +0023m + + + +“Alas, sir, in the most unexpected manner. After a long talk with the +harbor-master, Captain Leclere left Naples greatly disturbed in mind. +In twenty-four hours he was attacked by a fever, and died three days +afterwards. We performed the usual burial service, and he is at his +rest, sewn up in his hammock with a thirty-six-pound shot at his head +and his heels, off El Giglio island. We bring to his widow his sword +and cross of honor. It was worth while, truly,” added the young man +with a melancholy smile, “to make war against the English for ten +years, and to die in his bed at last, like everybody else.” + +“Why, you see, Edmond,” replied the owner, who appeared more comforted +at every moment, “we are all mortal, and the old must make way for the +young. If not, why, there would be no promotion; and since you assure +me that the cargo——” + +“Is all safe and sound, M. Morrel, take my word for it; and I advise +you not to take 25,000 francs for the profits of the voyage.” + +Then, as they were just passing the Round Tower, the young man shouted: +“Stand by there to lower the topsails and jib; brail up the spanker!” + +The order was executed as promptly as it would have been on board a +man-of-war. + +“Let go—and clue up!” At this last command all the sails were lowered, +and the vessel moved almost imperceptibly onwards. + +“Now, if you will come on board, M. Morrel,” said Dantès, observing the +owner’s impatience, “here is your supercargo, M. Danglars, coming out +of his cabin, who will furnish you with every particular. As for me, I +must look after the anchoring, and dress the ship in mourning.” + +The owner did not wait for a second invitation. He seized a rope which +Dantès flung to him, and with an activity that would have done credit +to a sailor, climbed up the side of the ship, while the young man, +going to his task, left the conversation to Danglars, who now came +towards the owner. He was a man of twenty-five or twenty-six years of +age, of unprepossessing countenance, obsequious to his superiors, +insolent to his subordinates; and this, in addition to his position as +responsible agent on board, which is always obnoxious to the sailors, +made him as much disliked by the crew as Edmond Dantès was beloved by +them. + +“Well, M. Morrel,” said Danglars, “you have heard of the misfortune +that has befallen us?” + +“Yes—yes: poor Captain Leclere! He was a brave and an honest man.” + +“And a first-rate seaman, one who had seen long and honorable service, +as became a man charged with the interests of a house so important as +that of Morrel & Son,” replied Danglars. + +“But,” replied the owner, glancing after Dantès, who was watching the +anchoring of his vessel, “it seems to me that a sailor needs not be so +old as you say, Danglars, to understand his business, for our friend +Edmond seems to understand it thoroughly, and not to require +instruction from anyone.” + +“Yes,” said Danglars, darting at Edmond a look gleaming with hate. +“Yes, he is young, and youth is invariably self-confident. Scarcely was +the captain’s breath out of his body when he assumed the command +without consulting anyone, and he caused us to lose a day and a half at +the Island of Elba, instead of making for Marseilles direct.” + +0025m + + + +“As to taking command of the vessel,” replied Morrel, “that was his +duty as captain’s mate; as to losing a day and a half off the Island of +Elba, he was wrong, unless the vessel needed repairs.” + +“The vessel was in as good condition as I am, and as, I hope you are, +M. Morrel, and this day and a half was lost from pure whim, for the +pleasure of going ashore, and nothing else.” + +“Dantès,” said the shipowner, turning towards the young man, “come this +way!” + +“In a moment, sir,” answered Dantès, “and I’m with you.” Then calling +to the crew, he said, “Let go!” + +The anchor was instantly dropped, and the chain ran rattling through +the port-hole. Dantès continued at his post in spite of the presence of +the pilot, until this manœuvre was completed, and then he added, +“Half-mast the colors, and square the yards!” + +“You see,” said Danglars, “he fancies himself captain already, upon my +word.” + +“And so, in fact, he is,” said the owner. + +“Except your signature and your partner’s, M. Morrel.” + +“And why should he not have this?” asked the owner; “he is young, it is +true, but he seems to me a thorough seaman, and of full experience.” + +A cloud passed over Danglars’ brow. + +“Your pardon, M. Morrel,” said Dantès, approaching, “the vessel now +rides at anchor, and I am at your service. You hailed me, I think?” + +Danglars retreated a step or two. “I wished to inquire why you stopped +at the Island of Elba?” + +“I do not know, sir; it was to fulfil the last instructions of Captain +Leclere, who, when dying, gave me a packet for Marshal Bertrand.” + +“Then did you see him, Edmond?” + +“Who?” + +“The marshal.” + +“Yes.” + +Morrel looked around him, and then, drawing Dantès on one side, he said +suddenly— + +“And how is the emperor?” + +“Very well, as far as I could judge from the sight of him.” + +“You saw the emperor, then?” + +“He entered the marshal’s apartment while I was there.” + +“And you spoke to him?” + +“Why, it was he who spoke to me, sir,” said Dantès, with a smile. + +“And what did he say to you?” + +“Asked me questions about the vessel, the time she left Marseilles, the +course she had taken, and what was her cargo. I believe, if she had not +been laden, and I had been her master, he would have bought her. But I +told him I was only mate, and that she belonged to the firm of Morrel & +Son. ‘Ah, yes,’ he said, ‘I know them. The Morrels have been shipowners +from father to son; and there was a Morrel who served in the same +regiment with me when I was in garrison at Valence.’” + +“_Pardieu!_ and that is true!” cried the owner, greatly delighted. “And +that was Policar Morrel, my uncle, who was afterwards a captain. +Dantès, you must tell my uncle that the emperor remembered him, and you +will see it will bring tears into the old soldier’s eyes. Come, come,” +continued he, patting Edmond’s shoulder kindly, “you did very right, +Dantès, to follow Captain Leclere’s instructions, and touch at Elba, +although if it were known that you had conveyed a packet to the +marshal, and had conversed with the emperor, it might bring you into +trouble.” + +0027m + + + +“How could that bring me into trouble, sir?” asked Dantès; “for I did +not even know of what I was the bearer; and the emperor merely made +such inquiries as he would of the first comer. But, pardon me, here are +the health officers and the customs inspectors coming alongside.” And +the young man went to the gangway. As he departed, Danglars approached, +and said,— + +“Well, it appears that he has given you satisfactory reasons for his +landing at Porto-Ferrajo?” + +“Yes, most satisfactory, my dear Danglars.” + +“Well, so much the better,” said the supercargo; “for it is not +pleasant to think that a comrade has not done his duty.” + +“Dantès has done his,” replied the owner, “and that is not saying much. +It was Captain Leclere who gave orders for this delay.” + +“Talking of Captain Leclere, has not Dantès given you a letter from +him?” + +“To me?—no—was there one?” + +“I believe that, besides the packet, Captain Leclere confided a letter +to his care.” + +“Of what packet are you speaking, Danglars?” + +“Why, that which Dantès left at Porto-Ferrajo.” + +“How do you know he had a packet to leave at Porto-Ferrajo?” + +Danglars turned very red. + +“I was passing close to the door of the captain’s cabin, which was half +open, and I saw him give the packet and letter to Dantès.” + +“He did not speak to me of it,” replied the shipowner; “but if there be +any letter he will give it to me.” + +Danglars reflected for a moment. “Then, M. Morrel, I beg of you,” said +he, “not to say a word to Dantès on the subject. I may have been +mistaken.” + +At this moment the young man returned; Danglars withdrew. + +“Well, my dear Dantès, are you now free?” inquired the owner. + +“Yes, sir.” + +“You have not been long detained.” + +“No. I gave the custom-house officers a copy of our bill of lading; and +as to the other papers, they sent a man off with the pilot, to whom I +gave them.” + +“Then you have nothing more to do here?” + +“No—everything is all right now.” + +“Then you can come and dine with me?” + +“I really must ask you to excuse me, M. Morrel. My first visit is due +to my father, though I am not the less grateful for the honor you have +done me.” + +0029m + + + +“Right, Dantès, quite right. I always knew you were a good son.” + +“And,” inquired Dantès, with some hesitation, “do you know how my +father is?” + +“Well, I believe, my dear Edmond, though I have not seen him lately.” + +“Yes, he likes to keep himself shut up in his little room.” + +“That proves, at least, that he has wanted for nothing during your +absence.” + +Dantès smiled. “My father is proud, sir, and if he had not a meal left, +I doubt if he would have asked anything from anyone, except from +Heaven.” + +“Well, then, after this first visit has been made we shall count on +you.” + +“I must again excuse myself, M. Morrel, for after this first visit has +been paid I have another which I am most anxious to pay.” + +“True, Dantès, I forgot that there was at the Catalans someone who +expects you no less impatiently than your father—the lovely Mercédès.” + +Dantès blushed. + +“Ah, ha,” said the shipowner, “I am not in the least surprised, for she +has been to me three times, inquiring if there were any news of the +_Pharaon_. _Peste!_ Edmond, you have a very handsome mistress!” + +“She is not my mistress,” replied the young sailor, gravely; “she is my +betrothed.” + +“Sometimes one and the same thing,” said Morrel, with a smile. + +“Not with us, sir,” replied Dantès. + +“Well, well, my dear Edmond,” continued the owner, “don’t let me detain +you. You have managed my affairs so well that I ought to allow you all +the time you require for your own. Do you want any money?” + +“No, sir; I have all my pay to take—nearly three months’ wages.” + +“You are a careful fellow, Edmond.” + +“Say I have a poor father, sir.” + +“Yes, yes, I know how good a son you are, so now hasten away to see +your father. I have a son too, and I should be very wroth with those +who detained him from me after a three months’ voyage.” + +“Then I have your leave, sir?” + +“Yes, if you have nothing more to say to me.” + +“Nothing.” + +“Captain Leclere did not, before he died, give you a letter for me?” + +“He was unable to write, sir. But that reminds me that I must ask your +leave of absence for some days.” + +“To get married?” + +“Yes, first, and then to go to Paris.” + +“Very good; have what time you require, Dantès. It will take quite six +weeks to unload the cargo, and we cannot get you ready for sea until +three months after that; only be back again in three months, for the +_Pharaon_,” added the owner, patting the young sailor on the back, +“cannot sail without her captain.” + +“Without her captain!” cried Dantès, his eyes sparkling with animation; +“pray mind what you say, for you are touching on the most secret wishes +of my heart. Is it really your intention to make me captain of the +_Pharaon_?” + +“If I were sole owner we’d shake hands on it now, my dear Dantès, and +call it settled; but I have a partner, and you know the Italian +proverb—_Chi ha compagno ha padrone_—‘He who has a partner has a +master.’ But the thing is at least half done, as you have one out of +two votes. Rely on me to procure you the other; I will do my best.” + +“Ah, M. Morrel,” exclaimed the young seaman, with tears in his eyes, +and grasping the owner’s hand, “M. Morrel, I thank you in the name of +my father and of Mercédès.” + +“That’s all right, Edmond. There’s a providence that watches over the +deserving. Go to your father; go and see Mercédès, and afterwards come +to me.” + +“Shall I row you ashore?” + +“No, thank you; I shall remain and look over the accounts with +Danglars. Have you been satisfied with him this voyage?” + +“That is according to the sense you attach to the question, sir. Do you +mean is he a good comrade? No, for I think he never liked me since the +day when I was silly enough, after a little quarrel we had, to propose +to him to stop for ten minutes at the island of Monte Cristo to settle +the dispute—a proposition which I was wrong to suggest, and he quite +right to refuse. If you mean as responsible agent when you ask me the +question, I believe there is nothing to say against him, and that you +will be content with the way in which he has performed his duty.” + +“But tell me, Dantès, if you had command of the _Pharaon_ should you be +glad to see Danglars remain?” + +“Captain or mate, M. Morrel, I shall always have the greatest respect +for those who possess the owners’ confidence.” + +“That’s right, that’s right, Dantès! I see you are a thoroughly good +fellow, and will detain you no longer. Go, for I see how impatient you +are.” + +“Then I have leave?” + +“Go, I tell you.” + +“May I have the use of your skiff?” + +“Certainly.” + +“Then, for the present, M. Morrel, farewell, and a thousand thanks!” + +“I hope soon to see you again, my dear Edmond. Good luck to you.” + +The young sailor jumped into the skiff, and sat down in the stern +sheets, with the order that he be put ashore at La Canebière. The two +oarsmen bent to their work, and the little boat glided away as rapidly +as possible in the midst of the thousand vessels which choke up the +narrow way which leads between the two rows of ships from the mouth of +the harbor to the Quai d’Orléans. + +The shipowner, smiling, followed him with his eyes until he saw him +spring out on the quay and disappear in the midst of the throng, which +from five o’clock in the morning until nine o’clock at night, swarms in +the famous street of La Canebière,—a street of which the modern +Phocéens are so proud that they say with all the gravity in the world, +and with that accent which gives so much character to what is said, “If +Paris had La Canebière, Paris would be a second Marseilles.” On turning +round the owner saw Danglars behind him, apparently awaiting orders, +but in reality also watching the young sailor,—but there was a great +difference in the expression of the two men who thus followed the +movements of Edmond Dantès. + + + + Chapter 2. Father and Son + +We will leave Danglars struggling with the demon of hatred, and +endeavoring to insinuate in the ear of the shipowner some evil +suspicions against his comrade, and follow Dantès, who, after having +traversed La Canebière, took the Rue de Noailles, and entering a small +house, on the left of the Allées de Meilhan, rapidly ascended four +flights of a dark staircase, holding the baluster with one hand, while +with the other he repressed the beatings of his heart, and paused +before a half-open door, from which he could see the whole of a small +room. + +This room was occupied by Dantès’ father. The news of the arrival of +the _Pharaon_ had not yet reached the old man, who, mounted on a chair, +was amusing himself by training with trembling hand the nasturtiums and +sprays of clematis that clambered over the trellis at his window. +Suddenly, he felt an arm thrown around his body, and a well-known voice +behind him exclaimed, “Father—dear father!” + +The old man uttered a cry, and turned round; then, seeing his son, he +fell into his arms, pale and trembling. + +“What ails you, my dearest father? Are you ill?” inquired the young +man, much alarmed. + +“No, no, my dear Edmond—my boy—my son!—no; but I did not expect you; +and joy, the surprise of seeing you so suddenly—Ah, I feel as if I were +going to die.” + +“Come, come, cheer up, my dear father! ’Tis I—really I! They say joy +never hurts, and so I came to you without any warning. Come now, do +smile, instead of looking at me so solemnly. Here I am back again, and +we are going to be happy.” + +“Yes, yes, my boy, so we will—so we will,” replied the old man; “but +how shall we be happy? Shall you never leave me again? Come, tell me +all the good fortune that has befallen you.” + +“God forgive me,” said the young man, “for rejoicing at happiness +derived from the misery of others, but, Heaven knows, I did not seek +this good fortune; it has happened, and I really cannot pretend to +lament it. The good Captain Leclere is dead, father, and it is probable +that, with the aid of M. Morrel, I shall have his place. Do you +understand, father? Only imagine me a captain at twenty, with a hundred +louis pay, and a share in the profits! Is this not more than a poor +sailor like me could have hoped for?” + +“Yes, my dear boy,” replied the old man, “it is very fortunate.” + +“Well, then, with the first money I touch, I mean you to have a small +house, with a garden in which to plant clematis, nasturtiums, and +honeysuckle. But what ails you, father? Are you not well?” + +“’Tis nothing, nothing; it will soon pass away”—and as he said so the +old man’s strength failed him, and he fell backwards. + +“Come, come,” said the young man, “a glass of wine, father, will revive +you. Where do you keep your wine?” + +“No, no; thanks. You need not look for it; I do not want it,” said the +old man. + +“Yes, yes, father, tell me where it is,” and he opened two or three +cupboards. + +“It is no use,” said the old man, “there is no wine.” + +“What, no wine?” said Dantès, turning pale, and looking alternately at +the hollow cheeks of the old man and the empty cupboards. “What, no +wine? Have you wanted money, father?” + +“I want nothing now that I have you,” said the old man. + +“Yet,” stammered Dantès, wiping the perspiration from his brow,—“yet I +gave you two hundred francs when I left, three months ago.” + +“Yes, yes, Edmond, that is true, but you forgot at that time a little +debt to our neighbor, Caderousse. He reminded me of it, telling me if I +did not pay for you, he would be paid by M. Morrel; and so, you see, +lest he might do you an injury——” + +“Well?” + +“Why, I paid him.” + +“But,” cried Dantès, “it was a hundred and forty francs I owed +Caderousse.” + +“Yes,” stammered the old man. + +“And you paid him out of the two hundred francs I left you?” + +The old man nodded. + +“So that you have lived for three months on sixty francs,” muttered +Edmond. + +“You know how little I require,” said the old man. + +“Heaven pardon me,” cried Edmond, falling on his knees before his +father. + +“What are you doing?” + +“You have wounded me to the heart.” + +“Never mind it, for I see you once more,” said the old man; “and now +it’s all over—everything is all right again.” + +0035m + + + +“Yes, here I am,” said the young man, “with a promising future and a +little money. Here, father, here!” he said, “take this—take it, and +send for something immediately.” And he emptied his pockets on the +table, the contents consisting of a dozen gold pieces, five or six +five-franc pieces, and some smaller coin. The countenance of old Dantès +brightened. + +“Whom does this belong to?” he inquired. + +“To me, to you, to us! Take it; buy some provisions; be happy, and +tomorrow we shall have more.” + +“Gently, gently,” said the old man, with a smile; “and by your leave I +will use your purse moderately, for they would say, if they saw me buy +too many things at a time, that I had been obliged to await your +return, in order to be able to purchase them.” + +“Do as you please; but, first of all, pray have a servant, father. I +will not have you left alone so long. I have some smuggled coffee and +most capital tobacco, in a small chest in the hold, which you shall +have tomorrow. But, hush, here comes somebody.” + +“’Tis Caderousse, who has heard of your arrival, and no doubt comes to +congratulate you on your fortunate return.” + +“Ah, lips that say one thing, while the heart thinks another,” murmured +Edmond. “But, never mind, he is a neighbor who has done us a service on +a time, so he’s welcome.” + +As Edmond paused, the black and bearded head of Caderousse appeared at +the door. He was a man of twenty-five or six, and held a piece of +cloth, which, being a tailor, he was about to make into a coat-lining. + +“What, is it you, Edmond, back again?” said he, with a broad +Marseillaise accent, and a grin that displayed his ivory-white teeth. + +“Yes, as you see, neighbor Caderousse; and ready to be agreeable to you +in any and every way,” replied Dantès, but ill-concealing his coldness +under this cloak of civility. + +“Thanks—thanks; but, fortunately, I do not want for anything; and it +chances that at times there are others who have need of me.” Dantès +made a gesture. “I do not allude to you, my boy. No!—no! I lent you +money, and you returned it; that’s like good neighbors, and we are +quits.” + +“We are never quits with those who oblige us,” was Dantès’ reply; “for +when we do not owe them money, we owe them gratitude.” + +“What’s the use of mentioning that? What is done is done. Let us talk +of your happy return, my boy. I had gone on the quay to match a piece +of mulberry cloth, when I met friend Danglars. ‘You at +Marseilles?’—‘Yes,’ says he. + +“‘I thought you were at Smyrna.’—‘I was; but am now back again.’ + +“‘And where is the dear boy, our little Edmond?’ + +“‘Why, with his father, no doubt,’ replied Danglars. And so I came,” +added Caderousse, “as fast as I could to have the pleasure of shaking +hands with a friend.” + +0037m + + + +“Worthy Caderousse!” said the old man, “he is so much attached to us.” + +“Yes, to be sure I am. I love and esteem you, because honest folks are +so rare. But it seems you have come back rich, my boy,” continued the +tailor, looking askance at the handful of gold and silver which Dantès +had thrown on the table. + +The young man remarked the greedy glance which shone in the dark eyes +of his neighbor. “Eh,” he said, negligently, “this money is not mine. I +was expressing to my father my fears that he had wanted many things in +my absence, and to convince me he emptied his purse on the table. Come, +father” added Dantès, “put this money back in your box—unless neighbor +Caderousse wants anything, and in that case it is at his service.” + +“No, my boy, no,” said Caderousse. “I am not in any want, thank God, my +living is suited to my means. Keep your money—keep it, I say;—one never +has too much;—but, at the same time, my boy, I am as much obliged by +your offer as if I took advantage of it.” + +“It was offered with good will,” said Dantès. + +“No doubt, my boy; no doubt. Well, you stand well with M. Morrel I +hear,—you insinuating dog, you!” + +“M. Morrel has always been exceedingly kind to me,” replied Dantès. + +“Then you were wrong to refuse to dine with him.” + +“What, did you refuse to dine with him?” said old Dantès; “and did he +invite you to dine?” + +“Yes, my dear father,” replied Edmond, smiling at his father’s +astonishment at the excessive honor paid to his son. + +“And why did you refuse, my son?” inquired the old man. + +“That I might the sooner see you again, my dear father,” replied the +young man. “I was most anxious to see you.” + +“But it must have vexed M. Morrel, good, worthy man,” said Caderousse. +“And when you are looking forward to be captain, it was wrong to annoy +the owner.” + +“But I explained to him the cause of my refusal,” replied Dantès, “and +I hope he fully understood it.” + +“Yes, but to be captain one must do a little flattery to one’s +patrons.” + +“I hope to be captain without that,” said Dantès. + +“So much the better—so much the better! Nothing will give greater +pleasure to all your old friends; and I know one down there behind the +Saint Nicolas citadel who will not be sorry to hear it.” + +“Mercédès?” said the old man. + +“Yes, my dear father, and with your permission, now I have seen you, +and know you are well and have all you require, I will ask your consent +to go and pay a visit to the Catalans.” + +“Go, my dear boy,” said old Dantès; “and Heaven bless you in your wife, +as it has blessed me in my son!” + +“His wife!” said Caderousse; “why, how fast you go on, father Dantès; +she is not his wife yet, as it seems to me.” + +“No, but according to all probability she soon will be,” replied +Edmond. + +“Yes—yes,” said Caderousse; “but you were right to return as soon as +possible, my boy.” + +“And why?” + +“Because Mercédès is a very fine girl, and fine girls never lack +followers; she particularly has them by dozens.” + +“Really?” answered Edmond, with a smile which had in it traces of +slight uneasiness. + +0039m + + + +“Ah, yes,” continued Caderousse, “and capital offers, too; but you +know, you will be captain, and who could refuse you then?” + +“Meaning to say,” replied Dantès, with a smile which but ill-concealed +his trouble, “that if I were not a captain——” + +“Eh—eh!” said Caderousse, shaking his head. + +“Come, come,” said the sailor, “I have a better opinion than you of +women in general, and of Mercédès in particular; and I am certain that, +captain or not, she will remain ever faithful to me.” + +“So much the better—so much the better,” said Caderousse. “When one is +going to be married, there is nothing like implicit confidence; but +never mind that, my boy,—go and announce your arrival, and let her know +all your hopes and prospects.” + +“I will go directly,” was Edmond’s reply; and, embracing his father, +and nodding to Caderousse, he left the apartment. + +Caderousse lingered for a moment, then taking leave of old Dantès, he +went downstairs to rejoin Danglars, who awaited him at the corner of +the Rue Senac. + +“Well,” said Danglars, “did you see him?” + +“I have just left him,” answered Caderousse. + +“Did he allude to his hope of being captain?” + +“He spoke of it as a thing already decided.” + +“Indeed!” said Danglars, “he is in too much hurry, it appears to me.” + +“Why, it seems M. Morrel has promised him the thing.” + +“So that he is quite elated about it?” + +“Why, yes, he is actually insolent over the matter—has already offered +me his patronage, as if he were a grand personage, and proffered me a +loan of money, as though he were a banker.” + +“Which you refused?” + +“Most assuredly; although I might easily have accepted it, for it was I +who put into his hands the first silver he ever earned; but now M. +Dantès has no longer any occasion for assistance—he is about to become +a captain.” + +“Pooh!” said Danglars, “he is not one yet.” + +“_Ma foi!_ it will be as well if he is not,” answered Caderousse; “for +if he should be, there will be really no speaking to him.” + +“If we choose,” replied Danglars, “he will remain what he is; and +perhaps become even less than he is.” + +“What do you mean?” + +“Nothing—I was speaking to myself. And is he still in love with the +Catalane?” + +“Over head and ears; but, unless I am much mistaken, there will be a +storm in that quarter.” + +0041m + + + +“Explain yourself.” + +“Why should I?” + +“It is more important than you think, perhaps. You do not like Dantès?” + +“I never like upstarts.” + +“Then tell me all you know about the Catalane.” + +“I know nothing for certain; only I have seen things which induce me to +believe, as I told you, that the future captain will find some +annoyance in the vicinity of the Vieilles Infirmeries.” + +“What have you seen?—come, tell me!” + +“Well, every time I have seen Mercédès come into the city she has been +accompanied by a tall, strapping, black-eyed Catalan, with a red +complexion, brown skin, and fierce air, whom she calls cousin.” + +“Really; and you think this cousin pays her attentions?” + +“I only suppose so. What else can a strapping chap of twenty-one mean +with a fine wench of seventeen?” + +“And you say that Dantès has gone to the Catalans?” + +“He went before I came down.” + +“Let us go the same way; we will stop at La Réserve, and we can drink a +glass of La Malgue, whilst we wait for news.” + +“Come along,” said Caderousse; “but you pay the score.” + +“Of course,” replied Danglars; and going quickly to the designated +place, they called for a bottle of wine, and two glasses. + +Père Pamphile had seen Dantès pass not ten minutes before; and assured +that he was at the Catalans, they sat down under the budding foliage of +the planes and sycamores, in the branches of which the birds were +singing their welcome to one of the first days of spring. + + + + Chapter 3. The Catalans + +Beyond a bare, weather-worn wall, about a hundred paces from the spot +where the two friends sat looking and listening as they drank their +wine, was the village of the Catalans. Long ago this mysterious colony +quitted Spain, and settled on the tongue of land on which it is to this +day. Whence it came no one knew, and it spoke an unknown tongue. One of +its chiefs, who understood Provençal, begged the commune of Marseilles +to give them this bare and barren promontory, where, like the sailors +of old, they had run their boats ashore. The request was granted; and +three months afterwards, around the twelve or fifteen small vessels +which had brought these gypsies of the sea, a small village sprang up. +This village, constructed in a singular and picturesque manner, half +Moorish, half Spanish, still remains, and is inhabited by descendants +of the first comers, who speak the language of their fathers. For three +or four centuries they have remained upon this small promontory, on +which they had settled like a flight of seabirds, without mixing with +the Marseillaise population, intermarrying, and preserving their +original customs and the costume of their mother-country as they have +preserved its language. + +Our readers will follow us along the only street of this little +village, and enter with us one of the houses, which is sunburned to the +beautiful dead-leaf color peculiar to the buildings of the country, and +within coated with whitewash, like a Spanish posada. A young and +beautiful girl, with hair as black as jet, her eyes as velvety as the +gazelle’s, was leaning with her back against the wainscot, rubbing in +her slender delicately moulded fingers a bunch of heath blossoms, the +flowers of which she was picking off and strewing on the floor; her +arms, bare to the elbow, brown, and modelled after those of the +Arlesian Venus, moved with a kind of restless impatience, and she +tapped the earth with her arched and supple foot, so as to display the +pure and full shape of her well-turned leg, in its red cotton, gray and +blue clocked, stocking. At three paces from her, seated in a chair +which he balanced on two legs, leaning his elbow on an old worm-eaten +table, was a tall young man of twenty, or two-and-twenty, who was +looking at her with an air in which vexation and uneasiness were +mingled. He questioned her with his eyes, but the firm and steady gaze +of the young girl controlled his look. + +“You see, Mercédès,” said the young man, “here is Easter come round +again; tell me, is this the moment for a wedding?” + +“I have answered you a hundred times, Fernand, and really you must be +very stupid to ask me again.” + +“Well, repeat it,—repeat it, I beg of you, that I may at last believe +it! Tell me for the hundredth time that you refuse my love, which had +your mother’s sanction. Make me understand once for all that you are +trifling with my happiness, that my life or death are nothing to you. +Ah, to have dreamed for ten years of being your husband, Mercédès, and +to lose that hope, which was the only stay of my existence!” + +“At least it was not I who ever encouraged you in that hope, Fernand,” +replied Mercédès; “you cannot reproach me with the slightest coquetry. +I have always said to you, ‘I love you as a brother; but do not ask +from me more than sisterly affection, for my heart is another’s.’ Is +not this true, Fernand?” + +“Yes, that is very true, Mercédès,” replied the young man, “Yes, you +have been cruelly frank with me; but do you forget that it is among the +Catalans a sacred law to intermarry?” + +0045m + + + +“You mistake, Fernand; it is not a law, but merely a custom, and, I +pray of you, do not cite this custom in your favor. You are included in +the conscription, Fernand, and are only at liberty on sufferance, +liable at any moment to be called upon to take up arms. Once a soldier, +what would you do with me, a poor orphan, forlorn, without fortune, +with nothing but a half-ruined hut and a few ragged nets, the miserable +inheritance left by my father to my mother, and by my mother to me? She +has been dead a year, and you know, Fernand, I have subsisted almost +entirely on public charity. Sometimes you pretend I am useful to you, +and that is an excuse to share with me the produce of your fishing, and +I accept it, Fernand, because you are the son of my father’s brother, +because we were brought up together, and still more because it would +give you so much pain if I refuse. But I feel very deeply that this +fish which I go and sell, and with the produce of which I buy the flax +I spin,—I feel very keenly, Fernand, that this is charity.” + +“And if it were, Mercédès, poor and lone as you are, you suit me as +well as the daughter of the first shipowner or the richest banker of +Marseilles! What do such as we desire but a good wife and careful +housekeeper, and where can I look for these better than in you?” + +“Fernand,” answered Mercédès, shaking her head, “a woman becomes a bad +manager, and who shall say she will remain an honest woman, when she +loves another man better than her husband? Rest content with my +friendship, for I say once more that is all I can promise, and I will +promise no more than I can bestow.” + +“I understand,” replied Fernand, “you can endure your own wretchedness +patiently, but you are afraid to share mine. Well, Mercédès, beloved by +you, I would tempt fortune; you would bring me good luck, and I should +become rich. I could extend my occupation as a fisherman, might get a +place as clerk in a warehouse, and become in time a dealer myself.” + +“You could do no such thing, Fernand; you are a soldier, and if you +remain at the Catalans it is because there is no war; so remain a +fisherman, and contented with my friendship, as I cannot give you +more.” + +“Well, I will do better, Mercédès. I will be a sailor; instead of the +costume of our fathers, which you despise, I will wear a varnished hat, +a striped shirt, and a blue jacket, with an anchor on the buttons. +Would not that dress please you?” + +“What do you mean?” asked Mercédès, with an angry glance,—“what do you +mean? I do not understand you?” + +“I mean, Mercédès, that you are thus harsh and cruel with me, because +you are expecting someone who is thus attired; but perhaps he whom you +await is inconstant, or if he is not, the sea is so to him.” + +“Fernand,” cried Mercédès, “I believed you were good-hearted, and I was +mistaken! Fernand, you are wicked to call to your aid jealousy and the +anger of God! Yes, I will not deny it, I do await, and I do love him of +whom you speak; and, if he does not return, instead of accusing him of +the inconstancy which you insinuate, I will tell you that he died +loving me and me only.” The young girl made a gesture of rage. “I +understand you, Fernand; you would be revenged on him because I do not +love you; you would cross your Catalan knife with his dirk. What end +would that answer? To lose you my friendship if he were conquered, and +see that friendship changed into hate if you were victor. Believe me, +to seek a quarrel with a man is a bad method of pleasing the woman who +loves that man. No, Fernand, you will not thus give way to evil +thoughts. Unable to have me for your wife, you will content yourself +with having me for your friend and sister; and besides,” she added, her +eyes troubled and moistened with tears, “wait, wait, Fernand; you said +just now that the sea was treacherous, and he has been gone four +months, and during these four months there have been some terrible +storms.” + +Fernand made no reply, nor did he attempt to check the tears which +flowed down the cheeks of Mercédès, although for each of these tears he +would have shed his heart’s blood; but these tears flowed for another. +He arose, paced a while up and down the hut, and then, suddenly +stopping before Mercédès, with his eyes glowing and his hands +clenched,—“Say, Mercédès,” he said, “once for all, is this your final +determination?” + +“I love Edmond Dantès,” the young girl calmly replied, “and none but +Edmond shall ever be my husband.” + +“And you will always love him?” + +“As long as I live.” + +Fernand let fall his head like a defeated man, heaved a sigh that was +like a groan, and then suddenly looking her full in the face, with +clenched teeth and expanded nostrils, said,—“But if he is dead——” + +“If he is dead, I shall die too.” + +“If he has forgotten you——” + +“Mercédès!” called a joyous voice from without,—“Mercédès!” + +“Ah,” exclaimed the young girl, blushing with delight, and fairly +leaping in excess of love, “you see he has not forgotten me, for here +he is!” And rushing towards the door, she opened it, saying, “Here, +Edmond, here I am!” + +Fernand, pale and trembling, drew back, like a traveller at the sight +of a serpent, and fell into a chair beside him. Edmond and Mercédès +were clasped in each other’s arms. The burning Marseilles sun, which +shot into the room through the open door, covered them with a flood of +light. At first they saw nothing around them. Their intense happiness +isolated them from all the rest of the world, and they only spoke in +broken words, which are the tokens of a joy so extreme that they seem +rather the expression of sorrow. Suddenly Edmond saw the gloomy, pale, +and threatening countenance of Fernand, as it was defined in the +shadow. By a movement for which he could scarcely account to himself, +the young Catalan placed his hand on the knife at his belt. + +“Ah, your pardon,” said Dantès, frowning in his turn; “I did not +perceive that there were three of us.” Then, turning to Mercédès, he +inquired, “Who is this gentleman?” + +“One who will be your best friend, Dantès, for he is my friend, my +cousin, my brother; it is Fernand—the man whom, after you, Edmond, I +love the best in the world. Do you not remember him?” + +“Yes!” said Dantès, and without relinquishing Mercédès’ hand clasped in +one of his own, he extended the other to the Catalan with a cordial +air. But Fernand, instead of responding to this amiable gesture, +remained mute and trembling. Edmond then cast his eyes scrutinizingly +at the agitated and embarrassed Mercédès, and then again on the gloomy +and menacing Fernand. This look told him all, and his anger waxed hot. + +“I did not know, when I came with such haste to you, that I was to meet +an enemy here.” + +“An enemy!” cried Mercédès, with an angry look at her cousin. “An enemy +in my house, do you say, Edmond! If I believed that, I would place my +arm under yours and go with you to Marseilles, leaving the house to +return to it no more.” + +Fernand’s eye darted lightning. “And should any misfortune occur to +you, dear Edmond,” she continued with the same calmness which proved to +Fernand that the young girl had read the very innermost depths of his +sinister thought, “if misfortune should occur to you, I would ascend +the highest point of the Cape de Morgiou and cast myself headlong from +it.” + +Fernand became deadly pale. “But you are deceived, Edmond,” she +continued. “You have no enemy here—there is no one but Fernand, my +brother, who will grasp your hand as a devoted friend.” + +And at these words the young girl fixed her imperious look on the +Catalan, who, as if fascinated by it, came slowly towards Edmond, and +offered him his hand. His hatred, like a powerless though furious wave, +was broken against the strong ascendancy which Mercédès exercised over +him. Scarcely, however, had he touched Edmond’s hand when he felt he +had done all he could do, and rushed hastily out of the house. + +“Oh,” he exclaimed, running furiously and tearing his hair—“Oh, who +will deliver me from this man? Wretched—wretched that I am!” + +“Hallo, Catalan! Hallo, Fernand! where are you running to?” exclaimed a +voice. + +The young man stopped suddenly, looked around him, and perceived +Caderousse sitting at table with Danglars, under an arbor. + +“Well”, said Caderousse, “why don’t you come? Are you really in such a +hurry that you have no time to pass the time of day with your friends?” + +“Particularly when they have still a full bottle before them,” added +Danglars. Fernand looked at them both with a stupefied air, but did not +say a word. + +“He seems besotted,” said Danglars, pushing Caderousse with his knee. +“Are we mistaken, and is Dantès triumphant in spite of all we have +believed?” + +“Why, we must inquire into that,” was Caderousse’s reply; and turning +towards the young man, said, “Well, Catalan, can’t you make up your +mind?” + +Fernand wiped away the perspiration steaming from his brow, and slowly +entered the arbor, whose shade seemed to restore somewhat of calmness +to his senses, and whose coolness somewhat of refreshment to his +exhausted body. + +“Good-day,” said he. “You called me, didn’t you?” And he fell, rather +than sat down, on one of the seats which surrounded the table. + +“I called you because you were running like a madman, and I was afraid +you would throw yourself into the sea,” said Caderousse, laughing. +“Why, when a man has friends, they are not only to offer him a glass of +wine, but, moreover, to prevent his swallowing three or four pints of +water unnecessarily!” + +Fernand gave a groan, which resembled a sob, and dropped his head into +his hands, his elbows leaning on the table. + +“Well, Fernand, I must say,” said Caderousse, beginning the +conversation, with that brutality of the common people in which +curiosity destroys all diplomacy, “you look uncommonly like a rejected +lover;” and he burst into a hoarse laugh. + +“Bah!” said Danglars, “a lad of his make was not born to be unhappy in +love. You are laughing at him, Caderousse.” + +“No,” he replied, “only hark how he sighs! Come, come, Fernand,” said +Caderousse, “hold up your head, and answer us. It’s not polite not to +reply to friends who ask news of your health.” + +“My health is well enough,” said Fernand, clenching his hands without +raising his head. + +“Ah, you see, Danglars,” said Caderousse, winking at his friend, “this +is how it is; Fernand, whom you see here, is a good and brave Catalan, +one of the best fishermen in Marseilles, and he is in love with a very +fine girl, named Mercédès; but it appears, unfortunately, that the fine +girl is in love with the mate of the _Pharaon_; and as the _Pharaon_ +arrived today—why, you understand!” + +“No; I do not understand,” said Danglars. + +“Poor Fernand has been dismissed,” continued Caderousse. + +“Well, and what then?” said Fernand, lifting up his head, and looking +at Caderousse like a man who looks for someone on whom to vent his +anger; “Mercédès is not accountable to any person, is she? Is she not +free to love whomsoever she will?” + +“Oh, if you take it in that sense,” said Caderousse, “it is another +thing. But I thought you were a Catalan, and they told me the Catalans +were not men to allow themselves to be supplanted by a rival. It was +even told me that Fernand, especially, was terrible in his vengeance.” + +Fernand smiled piteously. “A lover is never terrible,” he said. + +“Poor fellow!” remarked Danglars, affecting to pity the young man from +the bottom of his heart. “Why, you see, he did not expect to see Dantès +return so suddenly—he thought he was dead, perhaps; or perchance +faithless! These things always come on us more severely when they come +suddenly.” + +“Ah, _ma foi_, under any circumstances!” said Caderousse, who drank as +he spoke, and on whom the fumes of the wine began to take +effect,—“under any circumstances Fernand is not the only person put out +by the fortunate arrival of Dantès; is he, Danglars?” + +“No, you are right—and I should say that would bring him ill-luck.” + +“Well, never mind,” answered Caderousse, pouring out a glass of wine +for Fernand, and filling his own for the eighth or ninth time, while +Danglars had merely sipped his. “Never mind—in the meantime he marries +Mercédès—the lovely Mercédès—at least he returns to do that.” + +During this time Danglars fixed his piercing glance on the young man, +on whose heart Caderousse’s words fell like molten lead. + +“And when is the wedding to be?” he asked. + +“Oh, it is not yet fixed!” murmured Fernand. + +“No, but it will be,” said Caderousse, “as surely as Dantès will be +captain of the _Pharaon_—eh, Danglars?” + +Danglars shuddered at this unexpected attack, and turned to Caderousse, +whose countenance he scrutinized, to try and detect whether the blow +was premeditated; but he read nothing but envy in a countenance already +rendered brutal and stupid by drunkenness. + +“Well,” said he, filling the glasses, “let us drink to Captain Edmond +Dantès, husband of the beautiful Catalane!” + +Caderousse raised his glass to his mouth with unsteady hand, and +swallowed the contents at a gulp. Fernand dashed his on the ground. + +“Eh, eh, eh!” stammered Caderousse. “What do I see down there by the +wall, in the direction of the Catalans? Look, Fernand, your eyes are +better than mine. I believe I see double. You know wine is a deceiver; +but I should say it was two lovers walking side by side, and hand in +hand. Heaven forgive me, they do not know that we can see them, and +they are actually embracing!” + +Danglars did not lose one pang that Fernand endured. + +“Do you know them, Fernand?” he said. + +“Yes,” was the reply, in a low voice. “It is Edmond and Mercédès!” + +“Ah, see there, now!” said Caderousse; “and I did not recognize them! +Hallo, Dantès! hello, lovely damsel! Come this way, and let us know +when the wedding is to be, for Fernand here is so obstinate he will not +tell us.” + +“Hold your tongue, will you?” said Danglars, pretending to restrain +Caderousse, who, with the tenacity of drunkards, leaned out of the +arbor. “Try to stand upright, and let the lovers make love without +interruption. See, look at Fernand, and follow his example; he is +well-behaved!” + +0051m + + + +Fernand, probably excited beyond bearing, pricked by Danglars, as the +bull is by the bandilleros, was about to rush out; for he had risen +from his seat, and seemed to be collecting himself to dash headlong +upon his rival, when Mercédès, smiling and graceful, lifted up her +lovely head, and looked at them with her clear and bright eyes. At this +Fernand recollected her threat of dying if Edmond died, and dropped +again heavily on his seat. Danglars looked at the two men, one after +the other, the one brutalized by liquor, the other overwhelmed with +love. + +“I shall get nothing from these fools,” he muttered; “and I am very +much afraid of being here between a drunkard and a coward. Here’s an +envious fellow making himself boozy on wine when he ought to be nursing +his wrath, and here is a fool who sees the woman he loves stolen from +under his nose and takes on like a big baby. Yet this Catalan has eyes +that glisten like those of the vengeful Spaniards, Sicilians, and +Calabrians, and the other has fists big enough to crush an ox at one +blow. Unquestionably, Edmond’s star is in the ascendant, and he will +marry the splendid girl—he will be captain, too, and laugh at us all, +unless”—a sinister smile passed over Danglars’ lips—“unless I take a +hand in the affair,” he added. + +“Hallo!” continued Caderousse, half-rising, and with his fist on the +table, “hallo, Edmond! do you not see your friends, or are you too +proud to speak to them?” + +“No, my dear fellow!” replied Dantès, “I am not proud, but I am happy, +and happiness blinds, I think, more than pride.” + +“Ah, very well, that’s an explanation!” said Caderousse. “How do you +do, Madame Dantès?” + +Mercédès courtesied gravely, and said—“That is not my name, and in my +country it bodes ill fortune, they say, to call a young girl by the +name of her betrothed before he becomes her husband. So call me +Mercédès, if you please.” + +“We must excuse our worthy neighbor, Caderousse,” said Dantès, “he is +so easily mistaken.” + +“So, then, the wedding is to take place immediately, M. Dantès,” said +Danglars, bowing to the young couple. + +“As soon as possible, M. Danglars; today all preliminaries will be +arranged at my father’s, and tomorrow, or next day at latest, the +wedding festival here at La Réserve. My friends will be there, I hope; +that is to say, you are invited, M. Danglars, and you, Caderousse.” + +“And Fernand,” said Caderousse with a chuckle; “Fernand, too, is +invited!” + +“My wife’s brother is my brother,” said Edmond; “and we, Mercédès and +I, should be very sorry if he were absent at such a time.” + +Fernand opened his mouth to reply, but his voice died on his lips, and +he could not utter a word. + +“Today the preliminaries, tomorrow or next day the ceremony! You are in +a hurry, captain!” + +“Danglars,” said Edmond, smiling, “I will say to you as Mercédès said +just now to Caderousse, ‘Do not give me a title which does not belong +to me’; that may bring me bad luck.” + +“Your pardon,” replied Danglars, “I merely said you seemed in a hurry, +and we have lots of time; the _Pharaon_ cannot be under weigh again in +less than three months.” + +“We are always in a hurry to be happy, M. Danglars; for when we have +suffered a long time, we have great difficulty in believing in good +fortune. But it is not selfishness alone that makes me thus in haste; I +must go to Paris.” + +“Ah, really?—to Paris! and will it be the first time you have ever been +there, Dantès?” + +“Yes.” + +“Have you business there?” + +“Not of my own; the last commission of poor Captain Leclere; you know +to what I allude, Danglars—it is sacred. Besides, I shall only take the +time to go and return.” + +“Yes, yes, I understand,” said Danglars, and then in a low tone, he +added, “To Paris, no doubt to deliver the letter which the grand +marshal gave him. Ah, this letter gives me an idea—a capital idea! Ah; +Dantès, my friend, you are not yet registered number one on board the +good ship _Pharaon_;” then turning towards Edmond, who was walking +away, “A pleasant journey,” he cried. + +“Thank you,” said Edmond with a friendly nod, and the two lovers +continued on their way, as calm and joyous as if they were the very +elect of heaven. + + + + Chapter 4. Conspiracy + +Danglars followed Edmond and Mercédès with his eyes until the two +lovers disappeared behind one of the angles of Fort Saint Nicolas; +then, turning round, he perceived Fernand, who had fallen, pale and +trembling, into his chair, while Caderousse stammered out the words of +a drinking-song. + +“Well, my dear sir,” said Danglars to Fernand, “here is a marriage +which does not appear to make everybody happy.” + +“It drives me to despair,” said Fernand. + +“Do you, then, love Mercédès?” + +“I adore her!” + +“For long?” + +“As long as I have known her—always.” + +“And you sit there, tearing your hair, instead of seeking to remedy +your condition; I did not think that was the way of your people.” + +“What would you have me do?” said Fernand. + +“How do I know? Is it my affair? I am not in love with Mademoiselle +Mercédès; but for you—in the words of the gospel, seek, and you shall +find.” + +“I have found already.” + +“What?” + +“I would stab the man, but the woman told me that if any misfortune +happened to her betrothed, she would kill herself.” + +“Pooh! Women say those things, but never do them.” + +“You do not know Mercédès; what she threatens she will do.” + +“Idiot!” muttered Danglars; “whether she kill herself or not, what +matter, provided Dantès is not captain?” + +“Before Mercédès should die,” replied Fernand, with the accents of +unshaken resolution, “I would die myself!” + +“That’s what I call love!” said Caderousse with a voice more tipsy than +ever. “That’s love, or I don’t know what love is.” + +“Come,” said Danglars, “you appear to me a good sort of fellow, and +hang me, I should like to help you, but——” + +“Yes,” said Caderousse, “but how?” + +“My dear fellow,” replied Danglars, “you are three parts drunk; finish +the bottle, and you will be completely so. Drink then, and do not +meddle with what we are discussing, for that requires all one’s wit and +cool judgment.” + +“I—drunk!” said Caderousse; “well that’s a good one! I could drink four +more such bottles; they are no bigger than cologne flasks. Père +Pamphile, more wine!” + +And Caderousse rattled his glass upon the table. + +“You were saying, sir——” said Fernand, awaiting with great anxiety the +end of this interrupted remark. + +“What was I saying? I forget. This drunken Caderousse has made me lose +the thread of my sentence.” + +“Drunk, if you like; so much the worse for those who fear wine, for it +is because they have bad thoughts which they are afraid the liquor will +extract from their hearts;” and Caderousse began to sing the two last +lines of a song very popular at the time: + +‘Tous les méchants sont buveurs d’eau; + +C’est bien prouvé par le déluge.’1 + + +“You said, sir, you would like to help me, but——” + +“Yes; but I added, to help you it would be sufficient that Dantès did +not marry her you love; and the marriage may easily be thwarted, +methinks, and yet Dantès need not die.” + +“Death alone can separate them,” remarked Fernand. + +“You talk like a noodle, my friend,” said Caderousse; “and here is +Danglars, who is a wide-awake, clever, deep fellow, who will prove to +you that you are wrong. Prove it, Danglars. I have answered for you. +Say there is no need why Dantès should die; it would, indeed, be a pity +he should. Dantès is a good fellow; I like Dantès. Dantès, your +health.” + +Fernand rose impatiently. “Let him run on,” said Danglars, restraining +the young man; “drunk as he is, he is not much out in what he says. +Absence severs as well as death, and if the walls of a prison were +between Edmond and Mercédès they would be as effectually separated as +if he lay under a tombstone.” + +0056m + + + +“Yes; but one gets out of prison,” said Caderousse, who, with what +sense was left him, listened eagerly to the conversation, “and when one +gets out and one’s name is Edmond Dantès, one seeks revenge——” + +“What matters that?” muttered Fernand. + +“And why, I should like to know,” persisted Caderousse, “should they +put Dantès in prison? he has neither robbed, nor killed, nor murdered.” + +“Hold your tongue!” said Danglars. + +“I won’t hold my tongue!” replied Caderousse; “I say I want to know why +they should put Dantès in prison; I like Dantès; Dantès, your health!” +and he swallowed another glass of wine. + +0057m + + + +Danglars saw in the muddled look of the tailor the progress of his +intoxication, and turning towards Fernand, said, “Well, you understand +there is no need to kill him.” + +“Certainly not, if, as you said just now, you have the means of having +Dantès arrested. Have you that means?” + +“It is to be found for the searching. But why should I meddle in the +matter? it is no affair of mine.” + +“I know not why you meddle,” said Fernand, seizing his arm; “but this I +know, you have some motive of personal hatred against Dantès, for he +who himself hates is never mistaken in the sentiments of others.” + +“I! motives of hatred against Dantès? None, on my word! I saw you were +unhappy, and your unhappiness interested me; that’s all; but since you +believe I act for my own account, adieu, my dear friend, get out of the +affair as best you may;” and Danglars rose as if he meant to depart. + +“No, no,” said Fernand, restraining him, “stay! It is of very little +consequence to me at the end of the matter whether you have any angry +feeling or not against Dantès. I hate him! I confess it openly. Do you +find the means, I will execute it, provided it is not to kill the man, +for Mercédès has declared she will kill herself if Dantès is killed.” + +Caderousse, who had let his head drop on the table, now raised it, and +looking at Fernand with his dull and fishy eyes, he said, “Kill Dantès! +who talks of killing Dantès? I won’t have him killed—I won’t! He’s my +friend, and this morning offered to share his money with me, as I +shared mine with him. I won’t have Dantès killed—I won’t!” + +“And who has said a word about killing him, muddlehead?” replied +Danglars. “We were merely joking; drink to his health,” he added, +filling Caderousse’s glass, “and do not interfere with us.” + +“Yes, yes, Dantès’ good health!” said Caderousse, emptying his glass, +“here’s to his health! his health—hurrah!” + +“But the means—the means?” said Fernand. + +“Have you not hit upon any?” asked Danglars. + +“No!—you undertook to do so.” + +“True,” replied Danglars; “the French have the superiority over the +Spaniards, that the Spaniards ruminate, while the French invent.” + +“Do you invent, then,” said Fernand impatiently. + +“Waiter,” said Danglars, “pen, ink, and paper.” + +“Pen, ink, and paper,” muttered Fernand. + +“Yes; I am a supercargo; pen, ink, and paper are my tools, and without +my tools I am fit for nothing.” + +“Pen, ink, and paper, then,” called Fernand loudly. + +“There’s what you want on that table,” said the waiter. + +“Bring them here.” The waiter did as he was desired. + +0059m + + + +“When one thinks,” said Caderousse, letting his hand drop on the paper, +“there is here wherewithal to kill a man more sure than if we waited at +the corner of a wood to assassinate him! I have always had more dread +of a pen, a bottle of ink, and a sheet of paper, than of a sword or +pistol.” + +“The fellow is not so drunk as he appears to be,” said Danglars. “Give +him some more wine, Fernand.” Fernand filled Caderousse’s glass, who, +like the confirmed toper he was, lifted his hand from the paper and +seized the glass. + +The Catalan watched him until Caderousse, almost overcome by this fresh +assault on his senses, rested, or rather dropped, his glass upon the +table. + +“Well!” resumed the Catalan, as he saw the final glimmer of +Caderousse’s reason vanishing before the last glass of wine. + +“Well, then, I should say, for instance,” resumed Danglars, “that if +after a voyage such as Dantès has just made, in which he touched at the +Island of Elba, someone were to denounce him to the king’s procureur as +a Bonapartist agent——” + +“I will denounce him!” exclaimed the young man hastily. + +“Yes, but they will make you then sign your declaration, and confront +you with him you have denounced; I will supply you with the means of +supporting your accusation, for I know the fact well. But Dantès cannot +remain forever in prison, and one day or other he will leave it, and +the day when he comes out, woe betide him who was the cause of his +incarceration!” + +“Oh, I should wish nothing better than that he would come and seek a +quarrel with me.” + +“Yes, and Mercédès! Mercédès, who will detest you if you have only the +misfortune to scratch the skin of her dearly beloved Edmond!” + +“True!” said Fernand. + +“No, no,” continued Danglars; “if we resolve on such a step, it would +be much better to take, as I now do, this pen, dip it into this ink, +and write with the left hand (that the writing may not be recognized) +the denunciation we propose.” And Danglars, uniting practice with +theory, wrote with his left hand, and in a writing reversed from his +usual style, and totally unlike it, the following lines, which he +handed to Fernand, and which Fernand read in an undertone: + +“The honorable, the king’s attorney, is informed by a friend of the +throne and religion, that one Edmond Dantès, mate of the ship +_Pharaon_, arrived this morning from Smyrna, after having touched at +Naples and Porto-Ferrajo, has been intrusted by Murat with a letter for +the usurper, and by the usurper with a letter for the Bonapartist +committee in Paris. Proof of this crime will be found on arresting him, +for the letter will be found upon him, or at his father’s, or in his +cabin on board the _Pharaon_.” + +“Very good,” resumed Danglars; “now your revenge looks like common +sense, for in no way can it revert to yourself, and the matter will +thus work its own way; there is nothing to do now but fold the letter +as I am doing, and write upon it, ‘To the king’s attorney,’ and that’s +all settled.” And Danglars wrote the address as he spoke. + +“Yes, and that’s all settled!” exclaimed Caderousse, who, by a last +effort of intellect, had followed the reading of the letter, and +instinctively comprehended all the misery which such a denunciation +must entail. “Yes, and that’s all settled; only it will be an infamous +shame;” and he stretched out his hand to reach the letter. + +“Yes,” said Danglars, taking it from beyond his reach; “and as what I +say and do is merely in jest, and I, amongst the first and foremost, +should be sorry if anything happened to Dantès—the worthy Dantès—look +here!” And taking the letter, he squeezed it up in his hands and threw +it into a corner of the arbor. + +“All right!” said Caderousse. “Dantès is my friend, and I won’t have +him ill-used.” + +“And who thinks of using him ill? Certainly neither I nor Fernand,” +said Danglars, rising and looking at the young man, who still remained +seated, but whose eye was fixed on the denunciatory sheet of paper +flung into the corner. + +“In this case,” replied Caderousse, “let’s have some more wine. I wish +to drink to the health of Edmond and the lovely Mercédès.” + +“You have had too much already, drunkard,” said Danglars; “and if you +continue, you will be compelled to sleep here, because unable to stand +on your legs.” + +“I?” said Caderousse, rising with all the offended dignity of a drunken +man, “I can’t keep on my legs? Why, I’ll wager I can go up into the +belfry of the Accoules, and without staggering, too!” + +“Done!” said Danglars, “I’ll take your bet; but tomorrow—today it is +time to return. Give me your arm, and let us go.” + +“Very well, let us go,” said Caderousse; “but I don’t want your arm at +all. Come, Fernand, won’t you return to Marseilles with us?” + +“No,” said Fernand; “I shall return to the Catalans.” + +“You’re wrong. Come with us to Marseilles—come along.” + +“I will not.” + +“What do you mean? you will not? Well, just as you like, my prince; +there’s liberty for all the world. Come along, Danglars, and let the +young gentleman return to the Catalans if he chooses.” + +Danglars took advantage of Caderousse’s temper at the moment, to take +him off towards Marseilles by the Porte Saint-Victor, staggering as he +went. + +When they had advanced about twenty yards, Danglars looked back and saw +Fernand stoop, pick up the crumpled paper, and putting it into his +pocket then rush out of the arbor towards Pillon. + +“Well,” said Caderousse, “why, what a lie he told! He said he was going +to the Catalans, and he is going to the city. Hallo, Fernand! You are +coming, my boy!” + +“Oh, you don’t see straight,” said Danglars; “he’s gone right by the +road to the Vieilles Infirmeries.” + +“Well,” said Caderousse, “I should have sworn that he turned to the +right—how treacherous wine is!” + +“Come, come,” said Danglars to himself, “now the thing is at work and +it will effect its purpose unassisted.” + + + + Chapter 5. The Marriage Feast + +The morning’s sun rose clear and resplendent, touching the foamy waves +into a network of ruby-tinted light. + +The feast had been made ready on the second floor at La Réserve, with +whose arbor the reader is already familiar. The apartment destined for +the purpose was spacious and lighted by a number of windows, over each +of which was written in golden letters for some inexplicable reason the +name of one of the principal cities of France; beneath these windows a +wooden balcony extended the entire length of the house. And although +the entertainment was fixed for twelve o’clock, an hour previous to +that time the balcony was filled with impatient and expectant guests, +consisting of the favored part of the crew of the _Pharaon_, and other +personal friends of the bridegroom, the whole of whom had arrayed +themselves in their choicest costumes, in order to do greater honor to +the occasion. + +Various rumors were afloat to the effect that the owners of the +_Pharaon_ had promised to attend the nuptial feast; but all seemed +unanimous in doubting that an act of such rare and exceeding +condescension could possibly be intended. + +Danglars, however, who now made his appearance, accompanied by +Caderousse, effectually confirmed the report, stating that he had +recently conversed with M. Morrel, who had himself assured him of his +intention to dine at La Réserve. + +In fact, a moment later M. Morrel appeared and was saluted with an +enthusiastic burst of applause from the crew of the _Pharaon_, who +hailed the visit of the shipowner as a sure indication that the man +whose wedding feast he thus delighted to honor would ere long be first +in command of the ship; and as Dantès was universally beloved on board +his vessel, the sailors put no restraint on their tumultuous joy at +finding that the opinion and choice of their superiors so exactly +coincided with their own. + +With the entrance of M. Morrel, Danglars and Caderousse were despatched +in search of the bridegroom to convey to him the intelligence of the +arrival of the important personage whose coming had created such a +lively sensation, and to beseech him to make haste. + +Danglars and Caderousse set off upon their errand at full speed; but +ere they had gone many steps they perceived a group advancing towards +them, composed of the betrothed pair, a party of young girls in +attendance on the bride, by whose side walked Dantès’ father; the whole +brought up by Fernand, whose lips wore their usual sinister smile. + +Neither Mercédès nor Edmond observed the strange expression of his +countenance; they were so happy that they were conscious only of the +sunshine and the presence of each other. + +Having acquitted themselves of their errand, and exchanged a hearty +shake of the hand with Edmond, Danglars and Caderousse took their +places beside Fernand and old Dantès,—the latter of whom attracted +universal notice. + +The old man was attired in a suit of glistening watered silk, trimmed +with steel buttons, beautifully cut and polished. His thin but wiry +legs were arrayed in a pair of richly embroidered clocked stockings, +evidently of English manufacture, while from his three-cornered hat +depended a long streaming knot of white and blue ribbons. Thus he came +along, supporting himself on a curiously carved stick, his aged +countenance lit up with happiness, looking for all the world like one +of the aged dandies of 1796, parading the newly opened gardens of the +Luxembourg and Tuileries. + +Beside him glided Caderousse, whose desire to partake of the good +things provided for the wedding party had induced him to become +reconciled to the Dantès, father and son, although there still lingered +in his mind a faint and unperfect recollection of the events of the +preceding night; just as the brain retains on waking in the morning the +dim and misty outline of a dream. + +0065m + + + +As Danglars approached the disappointed lover, he cast on him a look of +deep meaning, while Fernand, as he slowly paced behind the happy pair, +who seemed, in their own unmixed content, to have entirely forgotten +that such a being as himself existed, was pale and abstracted; +occasionally, however, a deep flush would overspread his countenance, +and a nervous contraction distort his features, while, with an agitated +and restless gaze, he would glance in the direction of Marseilles, like +one who either anticipated or foresaw some great and important event. + +Dantès himself was simply, but becomingly, clad in the dress peculiar +to the merchant service—a costume somewhat between a military and a +civil garb; and with his fine countenance, radiant with joy and +happiness, a more perfect specimen of manly beauty could scarcely be +imagined. + +Lovely as the Greek girls of Cyprus or Chios, Mercédès boasted the same +bright flashing eyes of jet, and ripe, round, coral lips. She moved +with the light, free step of an Arlesienne or an Andalusian. One more +practiced in the arts of great cities would have hid her blushes +beneath a veil, or, at least, have cast down her thickly fringed +lashes, so as to have concealed the liquid lustre of her animated eyes; +but, on the contrary, the delighted girl looked around her with a smile +that seemed to say: “If you are my friends, rejoice with me, for I am +very happy.” + +As soon as the bridal party came in sight of La Réserve, M. Morrel +descended and came forth to meet it, followed by the soldiers and +sailors there assembled, to whom he had repeated the promise already +given, that Dantès should be the successor to the late Captain Leclere. +Edmond, at the approach of his patron, respectfully placed the arm of +his affianced bride within that of M. Morrel, who, forthwith conducting +her up the flight of wooden steps leading to the chamber in which the +feast was prepared, was gayly followed by the guests, beneath whose +heavy tread the slight structure creaked and groaned for the space of +several minutes. + +“Father,” said Mercédès, stopping when she had reached the centre of +the table, “sit, I pray you, on my right hand; on my left I will place +him who has ever been as a brother to me,” pointing with a soft and +gentle smile to Fernand; but her words and look seemed to inflict the +direst torture on him, for his lips became ghastly pale, and even +beneath the dark hue of his complexion the blood might be seen +retreating as though some sudden pang drove it back to the heart. + +During this time, Dantès, at the opposite side of the table, had been +occupied in similarly placing his most honored guests. M. Morrel was +seated at his right hand, Danglars at his left; while, at a sign from +Edmond, the rest of the company ranged themselves as they found it most +agreeable. + +Then they began to pass around the dusky, piquant, Arlesian sausages, +and lobsters in their dazzling red cuirasses, prawns of large size and +brilliant color, the echinus with its prickly outside and dainty morsel +within, the clovis, esteemed by the epicures of the South as more than +rivalling the exquisite flavor of the oyster, North. All the +delicacies, in fact, that are cast up by the wash of waters on the +sandy beach, and styled by the grateful fishermen “fruits of the sea.” + +“A pretty silence truly!” said the old father of the bridegroom, as he +carried to his lips a glass of wine of the hue and brightness of the +topaz, and which had just been placed before Mercédès herself. “Now, +would anybody think that this room contained a happy, merry party, who +desire nothing better than to laugh and dance the hours away?” + +“Ah,” sighed Caderousse, “a man cannot always feel happy because he is +about to be married.” + +“The truth is,” replied Dantès, “that I am too happy for noisy mirth; +if that is what you meant by your observation, my worthy friend, you +are right; joy takes a strange effect at times, it seems to oppress us +almost the same as sorrow.” + +Danglars looked towards Fernand, whose excitable nature received and +betrayed each fresh impression. + +“Why, what ails you?” asked he of Edmond. “Do you fear any approaching +evil? I should say that you were the happiest man alive at this +instant.” + +“And that is the very thing that alarms me,” returned Dantès. “Man does +not appear to me to be intended to enjoy felicity so unmixed; happiness +is like the enchanted palaces we read of in our childhood, where +fierce, fiery dragons defend the entrance and approach; and monsters of +all shapes and kinds, requiring to be overcome ere victory is ours. I +own that I am lost in wonder to find myself promoted to an honor of +which I feel myself unworthy—that of being the husband of Mercédès.” + +“Nay, nay!” cried Caderousse, smiling, “you have not attained that +honor yet. Mercédès is not yet your wife. Just assume the tone and +manner of a husband, and see how she will remind you that your hour is +not yet come!” + +The bride blushed, while Fernand, restless and uneasy, seemed to start +at every fresh sound, and from time to time wiped away the large drops +of perspiration that gathered on his brow. + +“Well, never mind that, neighbor Caderousse; it is not worthwhile to +contradict me for such a trifle as that. ’Tis true that Mercédès is not +actually my wife; but,” added he, drawing out his watch, “in an hour +and a half she will be.” + +A general exclamation of surprise ran round the table, with the +exception of the elder Dantès, whose laugh displayed the still perfect +beauty of his large white teeth. Mercédès looked pleased and gratified, +while Fernand grasped the handle of his knife with a convulsive clutch. + +“In an hour?” inquired Danglars, turning pale. “How is that, my +friend?” + +“Why, thus it is,” replied Dantès. “Thanks to the influence of M. +Morrel, to whom, next to my father, I owe every blessing I enjoy, every +difficulty has been removed. We have purchased permission to waive the +usual delay; and at half-past two o’clock the Mayor of Marseilles will +be waiting for us at the city hall. Now, as a quarter-past one has +already struck, I do not consider I have asserted too much in saying, +that, in another hour and thirty minutes Mercédès will have become +Madame Dantès.” + +0069m + + + +Fernand closed his eyes, a burning sensation passed across his brow, +and he was compelled to support himself by the table to prevent his +falling from his chair; but in spite of all his efforts, he could not +refrain from uttering a deep groan, which, however, was lost amid the +noisy felicitations of the company. + +“Upon my word,” cried the old man, “you make short work of this kind of +affair. Arrived here only yesterday morning, and married today at three +o’clock! Commend me to a sailor for going the quick way to work!” + +“But,” asked Danglars, in a timid tone, “how did you manage about the +other formalities—the contract—the settlement?” + +“The contract,” answered Dantès, laughingly, “it didn’t take long to +fix that. Mercédès has no fortune; I have none to settle on her. So, +you see, our papers were quickly written out, and certainly do not come +very expensive.” This joke elicited a fresh burst of applause. + +“So that what we presumed to be merely the betrothal feast turns out to +be the actual wedding dinner!” said Danglars. + +“No, no,” answered Dantès; “don’t imagine I am going to put you off in +that shabby manner. Tomorrow morning I start for Paris; four days to +go, and the same to return, with one day to discharge the commission +entrusted to me, is all the time I shall be absent. I shall be back +here by the first of March, and on the second I give my real marriage +feast.” + +This prospect of fresh festivity redoubled the hilarity of the guests +to such a degree, that the elder Dantès, who, at the commencement of +the repast, had commented upon the silence that prevailed, now found it +difficult, amid the general din of voices, to obtain a moment’s +tranquillity in which to drink to the health and prosperity of the +bride and bridegroom. + +Dantès, perceiving the affectionate eagerness of his father, responded +by a look of grateful pleasure; while Mercédès glanced at the clock and +made an expressive gesture to Edmond. + +Around the table reigned that noisy hilarity which usually prevails at +such a time among people sufficiently free from the demands of social +position not to feel the trammels of etiquette. Such as at the +commencement of the repast had not been able to seat themselves +according to their inclination rose unceremoniously, and sought out +more agreeable companions. Everybody talked at once, without waiting +for a reply and each one seemed to be contented with expressing his or +her own thoughts. + +Fernand’s paleness appeared to have communicated itself to Danglars. As +for Fernand himself, he seemed to be enduring the tortures of the +damned; unable to rest, he was among the first to quit the table, and, +as though seeking to avoid the hilarious mirth that rose in such +deafening sounds, he continued, in utter silence, to pace the farther +end of the salon. + +Caderousse approached him just as Danglars, whom Fernand seemed most +anxious to avoid, had joined him in a corner of the room. + +“Upon my word,” said Caderousse, from whose mind the friendly treatment +of Dantès, united with the effect of the excellent wine he had partaken +of, had effaced every feeling of envy or jealousy at Dantès’ good +fortune,—“upon my word, Dantès is a downright good fellow, and when I +see him sitting there beside his pretty wife that is so soon to be. I +cannot help thinking it would have been a great pity to have served him +that trick you were planning yesterday.” + +“Oh, there was no harm meant,” answered Danglars; “at first I certainly +did feel somewhat uneasy as to what Fernand might be tempted to do; but +when I saw how completely he had mastered his feelings, even so far as +to become one of his rival’s attendants, I knew there was no further +cause for apprehension.” Caderousse looked full at Fernand—he was +ghastly pale. + +“Certainly,” continued Danglars, “the sacrifice was no trifling one, +when the beauty of the bride is concerned. Upon my soul, that future +captain of mine is a lucky dog! Gad! I only wish he would let me take +his place.” + +“Shall we not set forth?” asked the sweet, silvery voice of Mercédès; +“two o’clock has just struck, and you know we are expected in a quarter +of an hour.” + +0071m + + + +“To be sure!—to be sure!” cried Dantès, eagerly quitting the table; +“let us go directly!” + +His words were re-echoed by the whole party, with vociferous cheers. + +At this moment Danglars, who had been incessantly observing every +change in Fernand’s look and manner, saw him stagger and fall back, +with an almost convulsive spasm, against a seat placed near one of the +open windows. At the same instant his ear caught a sort of indistinct +sound on the stairs, followed by the measured tread of soldiery, with +the clanking of swords and military accoutrements; then came a hum and +buzz as of many voices, so as to deaden even the noisy mirth of the +bridal party, among whom a vague feeling of curiosity and apprehension +quelled every disposition to talk, and almost instantaneously the most +deathlike stillness prevailed. + +The sounds drew nearer. Three blows were struck upon the panel of the +door. The company looked at each other in consternation. + +“I demand admittance,” said a loud voice outside the room, “in the name +of the law!” As no attempt was made to prevent it, the door was opened, +and a magistrate, wearing his official scarf, presented himself, +followed by four soldiers and a corporal. Uneasiness now yielded to the +most extreme dread on the part of those present. + +“May I venture to inquire the reason of this unexpected visit?” said M. +Morrel, addressing the magistrate, whom he evidently knew; “there is +doubtless some mistake easily explained.” + +“If it be so,” replied the magistrate, “rely upon every reparation +being made; meanwhile, I am the bearer of an order of arrest, and +although I most reluctantly perform the task assigned me, it must, +nevertheless, be fulfilled. Who among the persons here assembled +answers to the name of Edmond Dantès?” + +Every eye was turned towards the young man who, spite of the agitation +he could not but feel, advanced with dignity, and said, in a firm +voice: + +“I am he; what is your pleasure with me?” + +“Edmond Dantès,” replied the magistrate, “I arrest you in the name of +the law!” + +“Me!” repeated Edmond, slightly changing color, “and wherefore, I +pray?” + +“I cannot inform you, but you will be duly acquainted with the reasons +that have rendered such a step necessary at the preliminary +examination.” + +M. Morrel felt that further resistance or remonstrance was useless. He +saw before him an officer delegated to enforce the law, and perfectly +well knew that it would be as unavailing to seek pity from a magistrate +decked with his official scarf, as to address a petition to some cold +marble effigy. Old Dantès, however, sprang forward. There are +situations which the heart of a father or a mother cannot be made to +understand. He prayed and supplicated in terms so moving, that even the +officer was touched, and, although firm in his duty, he kindly said, +“My worthy friend, let me beg of you to calm your apprehensions. Your +son has probably neglected some prescribed form or attention in +registering his cargo, and it is more than probable he will be set at +liberty directly he has given the information required, whether +touching the health of his crew, or the value of his freight.” + +“What is the meaning of all this?” inquired Caderousse, frowningly, of +Danglars, who had assumed an air of utter surprise. + +0073m + + + +“How can I tell you?” replied he; “I am, like yourself, utterly +bewildered at all that is going on, and cannot in the least make out +what it is about.” Caderousse then looked around for Fernand, but he +had disappeared. + +The scene of the previous night now came back to his mind with +startling clearness. The painful catastrophe he had just witnessed +appeared effectually to have rent away the veil which the intoxication +of the evening before had raised between himself and his memory. + +“So, so,” said he, in a hoarse and choking voice, to Danglars, “this, +then, I suppose, is a part of the trick you were concerting yesterday? +All I can say is, that if it be so, ’tis an ill turn, and well deserves +to bring double evil on those who have projected it.” + +“Nonsense,” returned Danglars, “I tell you again I have nothing +whatever to do with it; besides, you know very well that I tore the +paper to pieces.” + +“No, you did not!” answered Caderousse, “you merely threw it by—I saw +it lying in a corner.” + +“Hold your tongue, you fool!—what should you know about it?—why, you +were drunk!” + +“Where is Fernand?” inquired Caderousse. + +“How do I know?” replied Danglars; “gone, as every prudent man ought to +be, to look after his own affairs, most likely. Never mind where he is, +let you and I go and see what is to be done for our poor friends.” + +During this conversation, Dantès, after having exchanged a cheerful +shake of the hand with all his sympathizing friends, had surrendered +himself to the officer sent to arrest him, merely saying, “Make +yourselves quite easy, my good fellows, there is some little mistake to +clear up, that’s all, depend upon it; and very likely I may not have to +go so far as the prison to effect that.” + +0075m + + + +“Oh, to be sure!” responded Danglars, who had now approached the group, +“nothing more than a mistake, I feel quite certain.” + +Dantès descended the staircase, preceded by the magistrate, and +followed by the soldiers. A carriage awaited him at the door; he got +in, followed by two soldiers and the magistrate, and the vehicle drove +off towards Marseilles. + +“Adieu, adieu, dearest Edmond!” cried Mercédès, stretching out her arms +to him from the balcony. + +The prisoner heard the cry, which sounded like the sob of a broken +heart, and leaning from the coach he called out, “Good-bye, Mercédès—we +shall soon meet again!” Then the vehicle disappeared round one of the +turnings of Fort Saint Nicholas. + +“Wait for me here, all of you!” cried M. Morrel; “I will take the first +conveyance I find, and hurry to Marseilles, whence I will bring you +word how all is going on.” + +“That’s right!” exclaimed a multitude of voices, “go, and return as +quickly as you can!” + +This second departure was followed by a long and fearful state of +terrified silence on the part of those who were left behind. The old +father and Mercédès remained for some time apart, each absorbed in +grief; but at length the two poor victims of the same blow raised their +eyes, and with a simultaneous burst of feeling rushed into each other’s +arms. + +Meanwhile Fernand made his appearance, poured out for himself a glass +of water with a trembling hand; then hastily swallowing it, went to sit +down at the first vacant place, and this was, by mere chance, placed +next to the seat on which poor Mercédès had fallen half fainting, when +released from the warm and affectionate embrace of old Dantès. +Instinctively Fernand drew back his chair. + +“He is the cause of all this misery—I am quite sure of it,” whispered +Caderousse, who had never taken his eyes off Fernand, to Danglars. + +“I don’t think so,” answered the other; “he’s too stupid to imagine +such a scheme. I only hope the mischief will fall upon the head of +whoever wrought it.” + +“You don’t mention those who aided and abetted the deed,” said +Caderousse. + +“Surely,” answered Danglars, “one cannot be held responsible for every +chance arrow shot into the air.” + +“You can, indeed, when the arrow lights point downward on somebody’s +head.” + +Meantime the subject of the arrest was being canvassed in every +different form. + +“What think you, Danglars,” said one of the party, turning towards him, +“of this event?” + +“Why,” replied he, “I think it just possible Dantès may have been +detected with some trifling article on board ship considered here as +contraband.” + +“But how could he have done so without your knowledge, Danglars, since +you are the ship’s supercargo?” + +“Why, as for that, I could only know what I was told respecting the +merchandise with which the vessel was laden. I know she was loaded with +cotton, and that she took in her freight at Alexandria from Pastret’s +warehouse, and at Smyrna from Pascal’s; that is all I was obliged to +know, and I beg I may not be asked for any further particulars.” + +“Now I recollect,” said the afflicted old father; “my poor boy told me +yesterday he had got a small case of coffee, and another of tobacco for +me!” + +“There, you see,” exclaimed Danglars. “Now the mischief is out; depend +upon it the custom-house people went rummaging about the ship in our +absence, and discovered poor Dantès’ hidden treasures.” + +Mercédès, however, paid no heed to this explanation of her lover’s +arrest. Her grief, which she had hitherto tried to restrain, now burst +out in a violent fit of hysterical sobbing. + +“Come, come,” said the old man, “be comforted, my poor child; there is +still hope!” + +“Hope!” repeated Danglars. + +“Hope!” faintly murmured Fernand, but the word seemed to die away on +his pale agitated lips, and a convulsive spasm passed over his +countenance. + +“Good news! good news!” shouted forth one of the party stationed in the +balcony on the lookout. “Here comes M. Morrel back. No doubt, now, we +shall hear that our friend is released!” + +Mercédès and the old man rushed to meet the shipowner and greeted him +at the door. He was very pale. + +“What news?” exclaimed a general burst of voices. + +“Alas, my friends,” replied M. Morrel, with a mournful shake of his +head, “the thing has assumed a more serious aspect than I expected.” + +“Oh, indeed—indeed, sir, he is innocent!” sobbed forth Mercédès. + +“That I believe!” answered M. Morrel; “but still he is charged——” + +“With what?” inquired the elder Dantès. + +“With being an agent of the Bonapartist faction!” Many of our readers +may be able to recollect how formidable such an accusation became in +the period at which our story is dated. + +A despairing cry escaped the pale lips of Mercédès; the old man sank +into a chair. + +“Ah, Danglars!” whispered Caderousse, “you have deceived me—the trick +you spoke of last night has been played; but I cannot suffer a poor old +man or an innocent girl to die of grief through your fault. I am +determined to tell them all about it.” + +“Be silent, you simpleton!” cried Danglars, grasping him by the arm, +“or I will not answer even for your own safety. Who can tell whether +Dantès be innocent or guilty? The vessel did touch at Elba, where he +quitted it, and passed a whole day in the island. Now, should any +letters or other documents of a compromising character be found upon +him, will it not be taken for granted that all who uphold him are his +accomplices?” + +With the rapid instinct of selfishness, Caderousse readily perceived +the solidity of this mode of reasoning; he gazed, doubtfully, +wistfully, on Danglars, and then caution supplanted generosity. + +“Suppose we wait a while, and see what comes of it,” said he, casting a +bewildered look on his companion. + +“To be sure!” answered Danglars. “Let us wait, by all means. If he be +innocent, of course he will be set at liberty; if guilty, why, it is no +use involving ourselves in a conspiracy.” + +“Let us go, then. I cannot stay here any longer.” + +“With all my heart!” replied Danglars, pleased to find the other so +tractable. “Let us take ourselves out of the way, and leave things for +the present to take their course.” + +After their departure, Fernand, who had now again become the friend and +protector of Mercédès, led the girl to her home, while some friends of +Dantès conducted his father, nearly lifeless, to the Allées de Meilhan. + +The rumor of Edmond’s arrest as a Bonapartist agent was not slow in +circulating throughout the city. + +“Could you ever have credited such a thing, my dear Danglars?” asked M. +Morrel, as, on his return to the port for the purpose of gleaning fresh +tidings of Dantès, from M. de Villefort, the assistant procureur, he +overtook his supercargo and Caderousse. “Could you have believed such a +thing possible?” + +“Why, you know I told you,” replied Danglars, “that I considered the +circumstance of his having anchored at the Island of Elba as a very +suspicious circumstance.” + +“And did you mention these suspicions to any person beside myself?” + +0079m + + + +“Certainly not!” returned Danglars. Then added in a low whisper, “You +understand that, on account of your uncle, M. Policar Morrel, who +served under the _other_ government, and who does not altogether +conceal what he thinks on the subject, you are strongly suspected of +regretting the abdication of Napoleon. I should have feared to injure +both Edmond and yourself, had I divulged my own apprehensions to a +soul. I am too well aware that though a subordinate, like myself, is +bound to acquaint the shipowner with everything that occurs, there are +many things he ought most carefully to conceal from all else.” + +“’Tis well, Danglars—’tis well!” replied M. Morrel. “You are a worthy +fellow; and I had already thought of your interests in the event of +poor Edmond having become captain of the _Pharaon_.” + +“Is it possible you were so kind?” + +“Yes, indeed; I had previously inquired of Dantès what was his opinion +of you, and if he should have any reluctance to continue you in your +post, for somehow I have perceived a sort of coolness between you.” + +“And what was his reply?” + +“That he certainly did think he had given you offence in an affair +which he merely referred to without entering into particulars, but that +whoever possessed the good opinion and confidence of the ship’s owners +would have his preference also.” + +“The hypocrite!” murmured Danglars. + +“Poor Dantès!” said Caderousse. “No one can deny his being a +noble-hearted young fellow.” + +“But meanwhile,” continued M. Morrel, “here is the _Pharaon_ without a +captain.” + +“Oh,” replied Danglars, “since we cannot leave this port for the next +three months, let us hope that ere the expiration of that period Dantès +will be set at liberty.” + +“No doubt; but in the meantime?” + +“I am entirely at your service, M. Morrel,” answered Danglars. “You +know that I am as capable of managing a ship as the most experienced +captain in the service; and it will be so far advantageous to you to +accept my services, that upon Edmond’s release from prison no further +change will be requisite on board the _Pharaon_ than for Dantès and +myself each to resume our respective posts.” + +“Thanks, Danglars—that will smooth over all difficulties. I fully +authorize you at once to assume the command of the _Pharaon_, and look +carefully to the unloading of her freight. Private misfortunes must +never be allowed to interfere with business.” + +“Be easy on that score, M. Morrel; but do you think we shall be +permitted to see our poor Edmond?” + +“I will let you know that directly I have seen M. de Villefort, whom I +shall endeavor to interest in Edmond’s favor. I am aware he is a +furious royalist; but, in spite of that, and of his being king’s +attorney, he is a man like ourselves, and I fancy not a bad sort of +one.” + +“Perhaps not,” replied Danglars; “but I hear that he is ambitious, and +that’s rather against him.” + +“Well, well,” returned M. Morrel, “we shall see. But now hasten on +board, I will join you there ere long.” + +So saying, the worthy shipowner quitted the two allies, and proceeded +in the direction of the Palais de Justice. + +0081m + + + +“You see,” said Danglars, addressing Caderousse, “the turn things have +taken. Do you still feel any desire to stand up in his defence?” + +“Not the slightest, but yet it seems to me a shocking thing that a mere +joke should lead to such consequences.” + +“But who perpetrated that joke, let me ask? neither you nor myself, but +Fernand; you knew very well that I threw the paper into a corner of the +room—indeed, I fancied I had destroyed it.” + +“Oh, no,” replied Caderousse, “that I can answer for, you did not. I +only wish I could see it now as plainly as I saw it lying all crushed +and crumpled in a corner of the arbor.” + +“Well, then, if you did, depend upon it, Fernand picked it up, and +either copied it or caused it to be copied; perhaps, even, he did not +take the trouble of recopying it. And now I think of it, by Heavens, he +may have sent the letter itself! Fortunately, for me, the handwriting +was disguised.” + +“Then you were aware of Dantès being engaged in a conspiracy?” + +“Not I. As I before said, I thought the whole thing was a joke, nothing +more. It seems, however, that I have unconsciously stumbled upon the +truth.” + +“Still,” argued Caderousse, “I would give a great deal if nothing of +the kind had happened; or, at least, that I had had no hand in it. You +will see, Danglars, that it will turn out an unlucky job for both of +us.” + +“Nonsense! If any harm come of it, it should fall on the guilty person; +and that, you know, is Fernand. How can we be implicated in any way? +All we have got to do is, to keep our own counsel, and remain perfectly +quiet, not breathing a word to any living soul; and you will see that +the storm will pass away without in the least affecting us.” + +“Amen!” responded Caderousse, waving his hand in token of adieu to +Danglars, and bending his steps towards the Allées de Meilhan, moving +his head to and fro, and muttering as he went, after the manner of one +whose mind was overcharged with one absorbing idea. + +“So far, then,” said Danglars, mentally, “all has gone as I would have +it. I am, temporarily, commander of the _Pharaon_, with the certainty +of being permanently so, if that fool of a Caderousse can be persuaded +to hold his tongue. My only fear is the chance of Dantès being +released. But, there, he is in the hands of Justice; and,” added he +with a smile, “she will take her own.” So saying, he leaped into a +boat, desiring to be rowed on board the _Pharaon_, where M. Morrel had +agreed to meet him. + + + + Chapter 6. The Deputy Procureur du Roi + +In one of the aristocratic mansions built by Puget in the Rue du Grand +Cours opposite the Medusa fountain, a second marriage feast was being +celebrated, almost at the same hour with the nuptial repast given by +Dantès. In this case, however, although the occasion of the +entertainment was similar, the company was strikingly dissimilar. +Instead of a rude mixture of sailors, soldiers, and those belonging to +the humblest grade of life, the present assembly was composed of the +very flower of Marseilles society,—magistrates who had resigned their +office during the usurper’s reign; officers who had deserted from the +imperial army and joined forces with Condé; and younger members of +families, brought up to hate and execrate the man whom five years of +exile would convert into a martyr, and fifteen of restoration elevate +to the rank of a god. + +The guests were still at table, and the heated and energetic +conversation that prevailed betrayed the violent and vindictive +passions that then agitated each dweller of the South, where unhappily, +for five centuries religious strife had long given increased bitterness +to the violence of party feeling. + +The emperor, now king of the petty Island of Elba, after having held +sovereign sway over one-half of the world, counting as his subjects a +small population of five or six thousand souls,—after having been +accustomed to hear the “_Vive Napoléons_” of a hundred and twenty +millions of human beings, uttered in ten different languages,—was +looked upon here as a ruined man, separated forever from any fresh +connection with France or claim to her throne. + +The magistrates freely discussed their political views; the military +part of the company talked unreservedly of Moscow and Leipsic, while +the women commented on the divorce of Josephine. It was not over the +downfall of the man, but over the defeat of the Napoleonic idea, that +they rejoiced, and in this they foresaw for themselves the bright and +cheering prospect of a revivified political existence. + +An old man, decorated with the cross of Saint Louis, now rose and +proposed the health of King Louis XVIII. It was the Marquis de +Saint-Méran. This toast, recalling at once the patient exile of +Hartwell and the peace-loving King of France, excited universal +enthusiasm; glasses were elevated in the air _à l’Anglaise_, and the +ladies, snatching their bouquets from their fair bosoms, strewed the +table with their floral treasures. In a word, an almost poetical fervor +prevailed. + +“Ah,” said the Marquise de Saint-Méran, a woman with a stern, +forbidding eye, though still noble and distinguished in appearance, +despite her fifty years—“ah, these revolutionists, who have driven us +from those very possessions they afterwards purchased for a mere trifle +during the Reign of Terror, would be compelled to own, were they here, +that all true devotion was on our side, since we were content to follow +the fortunes of a falling monarch, while they, on the contrary, made +their fortune by worshipping the rising sun; yes, yes, they could not +help admitting that the king, for whom we sacrificed rank, wealth, and +station was truly our ‘Louis the well-beloved,’ while their wretched +usurper has been, and ever will be, to them their evil genius, their +‘Napoleon the accursed.’ Am I not right, Villefort?” + +“I beg your pardon, madame. I really must pray you to excuse me, but—in +truth—I was not attending to the conversation.” + +“Marquise, marquise!” interposed the old nobleman who had proposed the +toast, “let the young people alone; let me tell you, on one’s wedding +day there are more agreeable subjects of conversation than dry +politics.” + +“Never mind, dearest mother,” said a young and lovely girl, with a +profusion of light brown hair, and eyes that seemed to float in liquid +crystal, “’tis all my fault for seizing upon M. de Villefort, so as to +prevent his listening to what you said. But there—now take him—he is +your own for as long as you like. M. Villefort, I beg to remind you my +mother speaks to you.” + +“If the marquise will deign to repeat the words I but imperfectly +caught, I shall be delighted to answer,” said M. de Villefort. + +“Never mind, Renée,” replied the marquise, with a look of tenderness +that seemed out of keeping with her harsh dry features; but, however +all other feelings may be withered in a woman’s nature, there is always +one bright smiling spot in the desert of her heart, and that is the +shrine of maternal love. “I forgive you. What I was saying, Villefort, +was, that the Bonapartists had not our sincerity, enthusiasm, or +devotion.” + +“They had, however, what supplied the place of those fine qualities,” +replied the young man, “and that was fanaticism. Napoleon is the +Mahomet of the West, and is worshipped by his commonplace but ambitious +followers, not only as a leader and lawgiver, but also as the +personification of equality.” + +“He!” cried the marquise: “Napoleon the type of equality! For mercy’s +sake, then, what would you call Robespierre? Come, come, do not strip +the latter of his just rights to bestow them on the Corsican, who, to +my mind, has usurped quite enough.” + +0085m + + + +“Nay, madame; I would place each of these heroes on his right +pedestal—that of Robespierre on his scaffold in the Place Louis Quinze; +that of Napoleon on the column of the Place Vendôme. The only +difference consists in the opposite character of the equality advocated +by these two men; one is the equality that elevates, the other is the +equality that degrades; one brings a king within reach of the +guillotine, the other elevates the people to a level with the throne. +Observe,” said Villefort, smiling, “I do not mean to deny that both +these men were revolutionary scoundrels, and that the 9th Thermidor and +the 4th of April, in the year 1814, were lucky days for France, worthy +of being gratefully remembered by every friend to monarchy and civil +order; and that explains how it comes to pass that, fallen, as I trust +he is forever, Napoleon has still retained a train of parasitical +satellites. Still, marquise, it has been so with other +usurpers—Cromwell, for instance, who was not half so bad as Napoleon, +had his partisans and advocates.” + +“Do you know, Villefort, that you are talking in a most dreadfully +revolutionary strain? But I excuse it, it is impossible to expect the +son of a Girondin to be free from a small spice of the old leaven.” A +deep crimson suffused the countenance of Villefort. + +“’Tis true, madame,” answered he, “that my father was a Girondin, but +he was not among the number of those who voted for the king’s death; he +was an equal sufferer with yourself during the Reign of Terror, and had +well-nigh lost his head on the same scaffold on which your father +perished.” + +“True,” replied the marquise, without wincing in the slightest degree +at the tragic remembrance thus called up; “but bear in mind, if you +please, that our respective parents underwent persecution and +proscription from diametrically opposite principles; in proof of which +I may remark, that while my family remained among the staunchest +adherents of the exiled princes, your father lost no time in joining +the new government; and that while the Citizen Noirtier was a Girondin, +the Count Noirtier became a senator.” + +“Dear mother,” interposed Renée, “you know very well it was agreed that +all these disagreeable reminiscences should forever be laid aside.” + +“Suffer me, also, madame,” replied Villefort, “to add my earnest +request to Mademoiselle de Saint-Méran’s, that you will kindly allow +the veil of oblivion to cover and conceal the past. What avails +recrimination over matters wholly past recall? For my own part, I have +laid aside even the name of my father, and altogether disown his +political principles. He was—nay, probably may still be—a Bonapartist, +and is called Noirtier; I, on the contrary, am a staunch royalist, and +style myself de Villefort. Let what may remain of revolutionary sap +exhaust itself and die away with the old trunk, and condescend only to +regard the young shoot which has started up at a distance from the +parent tree, without having the power, any more than the wish, to +separate entirely from the stock from which it sprung.” + +“Bravo, Villefort!” cried the marquis; “excellently well said! Come, +now, I have hopes of obtaining what I have been for years endeavoring +to persuade the marquise to promise; namely, a perfect amnesty and +forgetfulness of the past.” + +“With all my heart,” replied the marquise; “let the past be forever +forgotten. I promise you it affords _me_ as little pleasure to revive +it as it does you. All I ask is, that Villefort will be firm and +inflexible for the future in his political principles. Remember, also, +Villefort, that we have pledged ourselves to his majesty for your +fealty and strict loyalty, and that at our recommendation the king +consented to forget the past, as I do” (and here she extended to him +her hand)—“as I now do at your entreaty. But bear in mind, that should +there fall in your way anyone guilty of conspiring against the +government, you will be so much the more bound to visit the offence +with rigorous punishment, as it is known you belong to a suspected +family.” + +“Alas, madame,” returned Villefort, “my profession, as well as the +times in which we live, compels me to be severe. I have already +successfully conducted several public prosecutions, and brought the +offenders to merited punishment. But we have not done with the thing +yet.” + +0087m + + + +“Do you, indeed, think so?” inquired the marquise. + +“I am, at least, fearful of it. Napoleon, in the Island of Elba, is too +near France, and his proximity keeps up the hopes of his partisans. +Marseilles is filled with half-pay officers, who are daily, under one +frivolous pretext or other, getting up quarrels with the royalists; +from hence arise continual and fatal duels among the higher classes of +persons, and assassinations in the lower.” + +“You have heard, perhaps,” said the Comte de Salvieux, one of M. de +Saint-Méran’s oldest friends, and chamberlain to the Comte d’Artois, +“that the Holy Alliance purpose removing him from thence?” + +“Yes; they were talking about it when we left Paris,” said M. de +Saint-Méran; “and where is it decided to transfer him?” + +“To Saint Helena.” + +“For heaven’s sake, where is that?” asked the marquise. + +“An island situated on the other side of the equator, at least two +thousand leagues from here,” replied the count. + +“So much the better. As Villefort observes, it is a great act of folly +to have left such a man between Corsica, where he was born, and Naples, +of which his brother-in-law is king, and face to face with Italy, the +sovereignty of which he coveted for his son.” + +“Unfortunately,” said Villefort, “there are the treaties of 1814, and +we cannot molest Napoleon without breaking those compacts.” + +“Oh, well, we shall find some way out of it,” responded M. de Salvieux. +“There wasn’t any trouble over treaties when it was a question of +shooting the poor Duc d’Enghien.” + +“Well,” said the marquise, “it seems probable that, by the aid of the +Holy Alliance, we shall be rid of Napoleon; and we must trust to the +vigilance of M. de Villefort to purify Marseilles of his partisans. The +king is either a king or no king; if he be acknowledged as sovereign of +France, he should be upheld in peace and tranquillity; and this can +best be effected by employing the most inflexible agents to put down +every attempt at conspiracy—’tis the best and surest means of +preventing mischief.” + +“Unfortunately, madame,” answered Villefort, “the strong arm of the law +is not called upon to interfere until the evil has taken place.” + +“Then all he has got to do is to endeavor to repair it.” + +“Nay, madame, the law is frequently powerless to effect this; all it +can do is to avenge the wrong done.” + +“Oh, M. de Villefort,” cried a beautiful young creature, daughter to +the Comte de Salvieux, and the cherished friend of Mademoiselle de +Saint-Méran, “do try and get up some famous trial while we are at +Marseilles. I never was in a law-court; I am told it is so very +amusing!” + +“Amusing, certainly,” replied the young man, “inasmuch as, instead of +shedding tears as at the fictitious tale of woe produced at a theatre, +you behold in a law-court a case of real and genuine distress—a drama +of life. The prisoner whom you there see pale, agitated, and alarmed, +instead of—as is the case when a curtain falls on a tragedy—going home +to sup peacefully with his family, and then retiring to rest, that he +may recommence his mimic woes on the morrow,—is removed from your sight +merely to be reconducted to his prison and delivered up to the +executioner. I leave you to judge how far your nerves are calculated to +bear you through such a scene. Of this, however, be assured, that +should any favorable opportunity present itself, I will not fail to +offer you the choice of being present.” + +“For shame, M. de Villefort!” said Renée, becoming quite pale; “don’t +you see how you are frightening us?—and yet you laugh.” + +“What would you have? ’Tis like a duel. I have already recorded +sentence of death, five or six times, against the movers of political +conspiracies, and who can say how many daggers may be ready sharpened, +and only waiting a favorable opportunity to be buried in my heart?” + +“Gracious heavens, M. de Villefort,” said Renée, becoming more and more +terrified; “you surely are not in earnest.” + +“Indeed I am,” replied the young magistrate with a smile; “and in the +interesting trial that young lady is anxious to witness, the case would +only be still more aggravated. Suppose, for instance, the prisoner, as +is more than probable, to have served under Napoleon—well, can you +expect for an instant, that one accustomed, at the word of his +commander, to rush fearlessly on the very bayonets of his foe, will +scruple more to drive a stiletto into the heart of one he knows to be +his personal enemy, than to slaughter his fellow-creatures, merely +because bidden to do so by one he is bound to obey? Besides, one +requires the excitement of being hateful in the eyes of the accused, in +order to lash one’s self into a state of sufficient vehemence and +power. I would not choose to see the man against whom I pleaded smile, +as though in mockery of my words. No; my pride is to see the accused +pale, agitated, and as though beaten out of all composure by the fire +of my eloquence.” Renée uttered a smothered exclamation. + +“Bravo!” cried one of the guests; “that is what I call talking to some +purpose.” + +“Just the person we require at a time like the present,” said a second. + +“What a splendid business that last case of yours was, my dear +Villefort!” remarked a third; “I mean the trial of the man for +murdering his father. Upon my word, you killed him ere the executioner +had laid his hand upon him.” + +“Oh, as for parricides, and such dreadful people as that,” interposed +Renée, “it matters very little what is done to them; but as regards +poor unfortunate creatures whose only crime consists in having mixed +themselves up in political intrigues——” + +“Why, that is the very worst offence they could possibly commit; for, +don’t you see, Renée, the king is the father of his people, and he who +shall plot or contrive aught against the life and safety of the parent +of thirty-two millions of souls, is a parricide upon a fearfully great +scale?” + +“I don’t know anything about that,” replied Renée; “but, M. de +Villefort, you have promised me—have you not?—always to show mercy to +those I plead for.” + +“Make yourself quite easy on that point,” answered Villefort, with one +of his sweetest smiles; “you and I will always consult upon our +verdicts.” + +“My love,” said the marquise, “attend to your doves, your lap-dogs, and +embroidery, but do not meddle with what you do not understand. Nowadays +the military profession is in abeyance and the magisterial robe is the +badge of honor. There is a wise Latin proverb that is very much in +point.” + +“_Cedant arma togæ_,” said Villefort with a bow. + +“I cannot speak Latin,” responded the marquise. + +“Well,” said Renée, “I cannot help regretting you had not chosen some +other profession than your own—a physician, for instance. Do you know I +always felt a shudder at the idea of even a _destroying_ angel?” + +“Dear, good Renée,” whispered Villefort, as he gazed with unutterable +tenderness on the lovely speaker. + +“Let us hope, my child,” cried the marquis, “that M. de Villefort may +prove the moral and political physician of this province; if so, he +will have achieved a noble work.” + +“And one which will go far to efface the recollection of his father’s +conduct,” added the incorrigible marquise. + +“Madame,” replied Villefort, with a mournful smile, “I have already had +the honor to observe that my father has—at least, I hope so—abjured his +past errors, and that he is, at the present moment, a firm and zealous +friend to religion and order—a better royalist, possibly, than his son; +for he has to atone for past dereliction, while I have no other impulse +than warm, decided preference and conviction.” Having made this +well-turned speech, Villefort looked carefully around to mark the +effect of his oratory, much as he would have done had he been +addressing the bench in open court. + +“Do you know, my dear Villefort,” cried the Comte de Salvieux, “that is +exactly what I myself said the other day at the Tuileries, when +questioned by his majesty’s principal chamberlain touching the +singularity of an alliance between the son of a Girondin and the +daughter of an officer of the Duc de Condé; and I assure you he seemed +fully to comprehend that this mode of reconciling political differences +was based upon sound and excellent principles. Then the king, who, +without our suspecting it, had overheard our conversation, interrupted +us by saying, ‘Villefort’—observe that the king did not pronounce the +word Noirtier, but, on the contrary, placed considerable emphasis on +that of Villefort—‘Villefort,’ said his majesty, ‘is a young man of +great judgment and discretion, who will be sure to make a figure in his +profession; I like him much, and it gave me great pleasure to hear that +he was about to become the son-in-law of the Marquis and Marquise de +Saint-Méran. I should myself have recommended the match, had not the +noble marquis anticipated my wishes by requesting my consent to it.’” + +“Is it possible the king could have condescended so far as to express +himself so favorably of me?” asked the enraptured Villefort. + +“I give you his very words; and if the marquis chooses to be candid, he +will confess that they perfectly agree with what his majesty said to +him, when he went six months ago to consult him upon the subject of +your espousing his daughter.” + +0091m + + + +“That is true,” answered the marquis. + +“How much do I owe this gracious prince! What is there I would not do +to evince my earnest gratitude!” + +“That is right,” cried the marquise. “I love to see you thus. Now, +then, were a conspirator to fall into your hands, he would be most +welcome.” + +“For my part, dear mother,” interposed Renée, “I trust your wishes will +not prosper, and that Providence will only permit petty offenders, poor +debtors, and miserable cheats to fall into M. de Villefort’s +hands,—then I shall be contented.” + +“Just the same as though you prayed that a physician might only be +called upon to prescribe for headaches, measles, and the stings of +wasps, or any other slight affection of the epidermis. If you wish to +see me the king’s attorney, you must desire for me some of those +violent and dangerous diseases from the cure of which so much honor +redounds to the physician.” + +At this moment, and as though the utterance of Villefort’s wish had +sufficed to effect its accomplishment, a servant entered the room, and +whispered a few words in his ear. Villefort immediately rose from table +and quitted the room upon the plea of urgent business; he soon, +however, returned, his whole face beaming with delight. Renée regarded +him with fond affection; and certainly his handsome features, lit up as +they then were with more than usual fire and animation, seemed formed +to excite the innocent admiration with which she gazed on her graceful +and intelligent lover. + +“You were wishing just now,” said Villefort, addressing her, “that I +were a doctor instead of a lawyer. Well, I at least resemble the +disciples of Esculapius in one thing [people spoke in this style in +1815], that of not being able to call a day my own, not even that of my +betrothal.” + +“And wherefore were you called away just now?” asked Mademoiselle de +Saint-Méran, with an air of deep interest. + +“For a very serious matter, which bids fair to make work for the +executioner.” + +“How dreadful!” exclaimed Renée, turning pale. + +“Is it possible?” burst simultaneously from all who were near enough to +the magistrate to hear his words. + +“Why, if my information prove correct, a sort of Bonapartist conspiracy +has just been discovered.” + +“Can I believe my ears?” cried the marquise. + +“I will read you the letter containing the accusation, at least,” said +Villefort: + +“‘The king’s attorney is informed by a friend to the throne and the +religious institutions of his country, that one named Edmond Dantès, +mate of the ship _Pharaon_, this day arrived from Smyrna, after having +touched at Naples and Porto-Ferrajo, has been the bearer of a letter +from Murat to the usurper, and again taken charge of another letter +from the usurper to the Bonapartist club in Paris. Ample corroboration +of this statement may be obtained by arresting the above-mentioned +Edmond Dantès, who either carries the letter for Paris about with him, +or has it at his father’s abode. Should it not be found in the +possession of father or son, then it will assuredly be discovered in +the cabin belonging to the said Dantès on board the _Pharaon_.’” + +“But,” said Renée, “this letter, which, after all, is but an anonymous +scrawl, is not even addressed to you, but to the king’s attorney.” + +0093m + + + +“True; but that gentleman being absent, his secretary, by his orders, +opened his letters; thinking this one of importance, he sent for me, +but not finding me, took upon himself to give the necessary orders for +arresting the accused party.” + +“Then the guilty person is absolutely in custody?” said the marquise. + +“Nay, dear mother, say the accused person. You know we cannot yet +pronounce him guilty.” + +“He is in safe custody,” answered Villefort; “and rely upon it, if the +letter is found, he will not be likely to be trusted abroad again, +unless he goes forth under the especial protection of the headsman.” + +“And where is the unfortunate being?” asked Renée. + +“He is at my house.” + +“Come, come, my friend,” interrupted the marquise, “do not neglect your +duty to linger with us. You are the king’s servant, and must go +wherever that service calls you.” + +“Oh, Villefort!” cried Renée, clasping her hands, and looking towards +her lover with piteous earnestness, “be merciful on this the day of our +betrothal.” + +The young man passed round to the side of the table where the fair +pleader sat, and leaning over her chair said tenderly: + +“To give you pleasure, my sweet Renée, I promise to show all the lenity +in my power; but if the charges brought against this Bonapartist hero +prove correct, why, then, you really must give me leave to order his +head to be cut off.” + +Renée shuddered at the word _cut_, for the growth in question had a +head. + +“Never mind that foolish girl, Villefort,” said the marquise. “She will +soon get over these things.” So saying, Madame de Saint-Méran extended +her dry bony hand to Villefort, who, while imprinting a son-in-law’s +respectful salute on it, looked at Renée, as much as to say, “I must +try and fancy ’tis your dear hand I kiss, as it should have been.” + +“These are mournful auspices to accompany a betrothal,” sighed poor +Renée. + +“Upon my word, child!” exclaimed the angry marquise, “your folly +exceeds all bounds. I should be glad to know what connection there can +possibly be between your sickly sentimentality and the affairs of the +state!” + +“Oh, mother!” murmured Renée. + +“Nay, madame, I pray you pardon this little traitor. I promise you that +to make up for her want of loyalty, I will be most inflexibly severe;” +then casting an expressive glance at his betrothed, which seemed to +say, “Fear not, for your dear sake my justice shall be tempered with +mercy,” and receiving a sweet and approving smile in return, Villefort +departed with paradise in his heart. + + + + Chapter 7. The Examination + +No sooner had Villefort left the salon, than he assumed the grave air +of a man who holds the balance of life and death in his hands. Now, in +spite of the nobility of his countenance, the command of which, like a +finished actor, he had carefully studied before the glass, it was by no +means easy for him to assume an air of judicial severity. Except the +recollection of the line of politics his father had adopted, and which +might interfere, unless he acted with the greatest prudence, with his +own career, Gérard de Villefort was as happy as a man could be. Already +rich, he held a high official situation, though only twenty-seven. He +was about to marry a young and charming woman, whom he loved, not +passionately, but reasonably, as became a deputy attorney of the king; +and besides her personal attractions, which were very great, +Mademoiselle de Saint-Méran’s family possessed considerable political +influence, which they would, of course, exert in his favor. The dowry +of his wife amounted to fifty thousand crowns, and he had, besides, the +prospect of seeing her fortune increased to half a million at her +father’s death. These considerations naturally gave Villefort a feeling +of such complete felicity that his mind was fairly dazzled in its +contemplation. + +At the door he met the commissary of police, who was waiting for him. +The sight of this officer recalled Villefort from the third heaven to +earth; he composed his face, as we have before described, and said, “I +have read the letter, sir, and you have acted rightly in arresting this +man; now inform me what you have discovered concerning him and the +conspiracy.” + +“We know nothing as yet of the conspiracy, monsieur; all the papers +found have been sealed up and placed on your desk. The prisoner himself +is named Edmond Dantès, mate on board the three-master the _Pharaon_, +trading in cotton with Alexandria and Smyrna, and belonging to Morrel & +Son, of Marseilles.” + +“Before he entered the merchant service, had he ever served in the +marines?” + +“Oh, no, monsieur, he is very young.” + +“How old?” + +“Nineteen or twenty at the most.” + +At this moment, and as Villefort had arrived at the corner of the Rue +des Conseils, a man, who seemed to have been waiting for him, +approached; it was M. Morrel. + +“Ah, M. de Villefort,” cried he, “I am delighted to see you. Some of +your people have committed the strangest mistake—they have just +arrested Edmond Dantès, mate of my vessel.” + +“I know it, monsieur,” replied Villefort, “and I am now going to +examine him.” + +“Oh,” said Morrel, carried away by his friendship, “you do not know +him, and I do. He is the most estimable, the most trustworthy creature +in the world, and I will venture to say, there is not a better seaman +in all the merchant service. Oh, M. de Villefort, I beseech your +indulgence for him.” + +Villefort, as we have seen, belonged to the aristocratic party at +Marseilles, Morrel to the plebeian; the first was a royalist, the other +suspected of Bonapartism. Villefort looked disdainfully at Morrel, and +replied coldly: + +“You are aware, monsieur, that a man may be estimable and trustworthy +in private life, and the best seaman in the merchant service, and yet +be, politically speaking, a great criminal. Is it not true?” + +The magistrate laid emphasis on these words, as if he wished to apply +them to the owner himself, while his eyes seemed to plunge into the +heart of one who, interceding for another, had himself need of +indulgence. Morrel reddened, for his own conscience was not quite clear +on politics; besides, what Dantès had told him of his interview with +the grand-marshal, and what the emperor had said to him, embarrassed +him. He replied, however, in a tone of deep interest: + +“I entreat you, M. de Villefort, be, as you always are, kind and +equitable, and give him back to us soon.” This _give us_ sounded +revolutionary in the deputy’s ears. + +“Ah, ah,” murmured he, “is Dantès then a member of some Carbonari +society, that his protector thus employs the collective form? He was, +if I recollect, arrested in a tavern, in company with a great many +others.” Then he added, “Monsieur, you may rest assured I shall perform +my duty impartially, and that if he be innocent you shall not have +appealed to me in vain; should he, however, be guilty, in this present +epoch, impunity would furnish a dangerous example, and I must do my +duty.” + +0097m + + + +As he had now arrived at the door of his own house, which adjoined the +Palais de Justice, he entered, after having, coldly saluted the +shipowner, who stood, as if petrified, on the spot where Villefort had +left him. The antechamber was full of police agents and gendarmes, in +the midst of whom, carefully watched, but calm and smiling, stood the +prisoner. Villefort traversed the antechamber, cast a side glance at +Dantès, and taking a packet which a gendarme offered him, disappeared, +saying, “Bring in the prisoner.” + +Rapid as had been Villefort’s glance, it had served to give him an idea +of the man he was about to interrogate. He had recognized intelligence +in the high forehead, courage in the dark eye and bent brow, and +frankness in the thick lips that showed a set of pearly teeth. +Villefort’s first impression was favorable; but he had been so often +warned to mistrust first impulses, that he applied the maxim to the +impression, forgetting the difference between the two words. He +stifled, therefore, the feelings of compassion that were rising, +composed his features, and sat down, grim and sombre, at his desk. An +instant after Dantès entered. He was pale, but calm and collected, and +saluting his judge with easy politeness, looked round for a seat, as if +he had been in M. Morrel’s salon. It was then that he encountered for +the first time Villefort’s look,—that look peculiar to the magistrate, +who, while seeming to read the thoughts of others, betrays nothing of +his own. + +“Who and what are you?” demanded Villefort, turning over a pile of +papers, containing information relative to the prisoner, that a police +agent had given to him on his entry, and that, already, in an hour’s +time, had swelled to voluminous proportions, thanks to the corrupt +espionage of which “the accused” is always made the victim. + +“My name is Edmond Dantès,” replied the young man calmly; “I am mate of +the _Pharaon_, belonging to Messrs. Morrel & Son.” + +“Your age?” continued Villefort. + +“Nineteen,” returned Dantès. + +“What were you doing at the moment you were arrested?” + +“I was at the festival of my marriage, monsieur,” said the young man, +his voice slightly tremulous, so great was the contrast between that +happy moment and the painful ceremony he was now undergoing; so great +was the contrast between the sombre aspect of M. de Villefort and the +radiant face of Mercédès. + +“You were at the festival of your marriage?” said the deputy, +shuddering in spite of himself. + +“Yes, monsieur; I am on the point of marrying a young girl I have been +attached to for three years.” Villefort, impassive as he was, was +struck with this coincidence; and the tremulous voice of Dantès, +surprised in the midst of his happiness, struck a sympathetic chord in +his own bosom—he also was on the point of being married, and he was +summoned from his own happiness to destroy that of another. “This +philosophic reflection,” thought he, “will make a great sensation at M. +de Saint-Méran’s;” and he arranged mentally, while Dantès awaited +further questions, the antithesis by which orators often create a +reputation for eloquence. When this speech was arranged, Villefort +turned to Dantès. + +0099m + + + +“Go on, sir,” said he. + +“What would you have me say?” + +“Give all the information in your power.” + +“Tell me on which point you desire information, and I will tell all I +know; only,” added he, with a smile, “I warn you I know very little.” + +“Have you served under the usurper?” + +“I was about to be mustered into the Royal Marines when he fell.” + +“It is reported your political opinions are extreme,” said Villefort, +who had never heard anything of the kind, but was not sorry to make +this inquiry, as if it were an accusation. + +“My political opinions!” replied Dantès. “Alas, sir, I never had any +opinions. I am hardly nineteen; I know nothing; I have no part to play. +If I obtain the situation I desire, I shall owe it to M. Morrel. Thus +all my opinions—I will not say public, but private—are confined to +these three sentiments,—I love my father, I respect M. Morrel, and I +adore Mercédès. This, sir, is all I can tell you, and you see how +uninteresting it is.” As Dantès spoke, Villefort gazed at his ingenuous +and open countenance, and recollected the words of Renée, who, without +knowing who the culprit was, had besought his indulgence for him. With +the deputy’s knowledge of crime and criminals, every word the young man +uttered convinced him more and more of his innocence. This lad, for he +was scarcely a man,—simple, natural, eloquent with that eloquence of +the heart never found when sought for; full of affection for everybody, +because he was happy, and because happiness renders even the wicked +good—extended his affection even to his judge, spite of Villefort’s +severe look and stern accent. Dantès seemed full of kindness. + +_“Pardieu!”_ said Villefort, “he is a noble fellow. I hope I shall gain +Renée’s favor easily by obeying the first command she ever imposed on +me. I shall have at least a pressure of the hand in public, and a sweet +kiss in private.” Full of this idea, Villefort’s face became so joyous, +that when he turned to Dantès, the latter, who had watched the change +on his physiognomy, was smiling also. + +“Sir,” said Villefort, “have you any enemies, at least, that you know.” + +“I have enemies?” replied Dantès; “my position is not sufficiently +elevated for that. As for my disposition, that is, perhaps, somewhat +too hasty; but I have striven to repress it. I have had ten or twelve +sailors under me, and if you question them, they will tell you that +they love and respect me, not as a father, for I am too young, but as +an elder brother.” + +“But you may have excited jealousy. You are about to become captain at +nineteen—an elevated post; you are about to marry a pretty girl, who +loves you; and these two pieces of good fortune may have excited the +envy of someone.” + +“You are right; you know men better than I do, and what you say may +possibly be the case, I confess; but if such persons are among my +acquaintances I prefer not to know it, because then I should be forced +to hate them.” + +“You are wrong; you should always strive to see clearly around you. You +seem a worthy young man; I will depart from the strict line of my duty +to aid you in discovering the author of this accusation. Here is the +paper; do you know the writing?” As he spoke, Villefort drew the letter +from his pocket, and presented it to Dantès. Dantès read it. A cloud +passed over his brow as he said: + +“No, monsieur, I do not know the writing, and yet it is tolerably +plain. Whoever did it writes well. I am very fortunate,” added he, +looking gratefully at Villefort, “to be examined by such a man as you; +for this envious person is a real enemy.” And by the rapid glance that +the young man’s eyes shot forth, Villefort saw how much energy lay hid +beneath this mildness. + +“Now,” said the deputy, “answer me frankly, not as a prisoner to a +judge, but as one man to another who takes an interest in him, what +truth is there in the accusation contained in this anonymous letter?” +And Villefort threw disdainfully on his desk the letter Dantès had just +given back to him. + +“None at all. I will tell you the real facts. I swear by my honor as a +sailor, by my love for Mercédès, by the life of my father——” + +“Speak, monsieur,” said Villefort. Then, internally, “If Renée could +see me, I hope she would be satisfied, and would no longer call me a +decapitator.” + +“Well, when we quitted Naples, Captain Leclere was attacked with a +brain fever. As we had no doctor on board, and he was so anxious to +arrive at Elba, that he would not touch at any other port, his disorder +rose to such a height, that at the end of the third day, feeling he was +dying, he called me to him. ‘My dear Dantès,’ said he, ‘swear to +perform what I am going to tell you, for it is a matter of the deepest +importance.’ + +“‘I swear, captain,’ replied I. + +“‘Well, as after my death the command devolves on you as mate, assume +the command, and bear up for the Island of Elba, disembark at +Porto-Ferrajo, ask for the grand-marshal, give him this letter—perhaps +they will give you another letter, and charge you with a commission. +You will accomplish what I was to have done, and derive all the honor +and profit from it.’ + +“‘I will do it, captain; but perhaps I shall not be admitted to the +grand-marshal’s presence as easily as you expect?’ + +“‘Here is a ring that will obtain audience of him, and remove every +difficulty,’ said the captain. At these words he gave me a ring. It was +time—two hours after he was delirious; the next day he died.” + +“And what did you do then?” + +“What I ought to have done, and what everyone would have done in my +place. Everywhere the last requests of a dying man are sacred; but with +a sailor the last requests of his superior are commands. I sailed for +the Island of Elba, where I arrived the next day; I ordered everybody +to remain on board, and went on shore alone. As I had expected, I found +some difficulty in obtaining access to the grand-marshal; but I sent +the ring I had received from the captain to him, and was instantly +admitted. He questioned me concerning Captain Leclere’s death; and, as +the latter had told me, gave me a letter to carry on to a person in +Paris. I undertook it because it was what my captain had bade me do. I +landed here, regulated the affairs of the vessel, and hastened to visit +my affianced bride, whom I found more lovely than ever. Thanks to M. +Morrel, all the forms were got over; in a word I was, as I told you, at +my marriage feast; and I should have been married in an hour, and +tomorrow I intended to start for Paris, had I not been arrested on this +charge which you as well as I now see to be unjust.” + +“Ah,” said Villefort, “this seems to me the truth. If you have been +culpable, it was imprudence, and this imprudence was in obedience to +the orders of your captain. Give up this letter you have brought from +Elba, and pass your word you will appear should you be required, and go +and rejoin your friends. + +“I am free, then, sir?” cried Dantès joyfully. + +“Yes; but first give me this letter.” + +“You have it already, for it was taken from me with some others which I +see in that packet.” + +“Stop a moment,” said the deputy, as Dantès took his hat and gloves. +“To whom is it addressed?” + +_“To Monsieur Noirtier, Rue Coq-Héron, Paris.”_ Had a thunderbolt +fallen into the room, Villefort could not have been more stupefied. He +sank into his seat, and hastily turning over the packet, drew forth the +fatal letter, at which he glanced with an expression of terror. + +“M. Noirtier, Rue Coq-Héron, No. 13,” murmured he, growing still paler. + +“Yes,” said Dantès; “do you know him?” + +“No,” replied Villefort; “a faithful servant of the king does not know +conspirators.” + +0103m + + + +“It is a conspiracy, then?” asked Dantès, who after believing himself +free, now began to feel a tenfold alarm. “I have, however, already told +you, sir, I was entirely ignorant of the contents of the letter.” + +“Yes; but you knew the name of the person to whom it was addressed,” +said Villefort. + +“I was forced to read the address to know to whom to give it.” + +“Have you shown this letter to anyone?” asked Villefort, becoming still +more pale. + +“To no one, on my honor.” + +“Everybody is ignorant that you are the bearer of a letter from the +Island of Elba, and addressed to M. Noirtier?” + +“Everybody, except the person who gave it to me.” + +“And that was too much, far too much,” murmured Villefort. Villefort’s +brow darkened more and more, his white lips and clenched teeth filled +Dantès with apprehension. After reading the letter, Villefort covered +his face with his hands. + +“Oh,” said Dantès timidly, “what is the matter?” Villefort made no +answer, but raised his head at the expiration of a few seconds, and +again perused the letter. + +“And you say that you are ignorant of the contents of this letter?” + +“I give you my word of honor, sir,” said Dantès; “but what is the +matter? You are ill—shall I ring for assistance?—shall I call?” + +“No,” said Villefort, rising hastily; “stay where you are. It is for me +to give orders here, and not you.” + +“Monsieur,” replied Dantès proudly, “it was only to summon assistance +for you.” + +“I want none; it was a temporary indisposition. Attend to yourself; +answer me.” Dantès waited, expecting a question, but in vain. Villefort +fell back on his chair, passed his hand over his brow, moist with +perspiration, and, for the third time, read the letter. + +“Oh, if he knows the contents of this!” murmured he, “and that Noirtier +is the father of Villefort, I am lost!” And he fixed his eyes upon +Edmond as if he would have penetrated his thoughts. + +“Oh, it is impossible to doubt it,” cried he, suddenly. + +“In heaven’s name!” cried the unhappy young man, “if you doubt me, +question me; I will answer you.” Villefort made a violent effort, and +in a tone he strove to render firm: + +“Sir,” said he, “I am no longer able, as I had hoped, to restore you +immediately to liberty; before doing so, I must consult the trial +justice; what my own feeling is you already know.” + +“Oh, monsieur,” cried Dantès, “you have been rather a friend than a +judge.” + +0105m + + + +“Well, I must detain you some time longer, but I will strive to make it +as short as possible. The principal charge against you is this letter, +and you see——” Villefort approached the fire, cast it in, and waited +until it was entirely consumed. + +“You see, I destroy it?” + +“Oh,” exclaimed Dantès, “you are goodness itself.” + +“Listen,” continued Villefort; “you can now have confidence in me after +what I have done.” + +“Oh, command, and I will obey.” + +“Listen; this is not a command, but advice I give you.” + +“Speak, and I will follow your advice.” + +“I shall detain you until this evening in the Palais de Justice. Should +anyone else interrogate you, say to him what you have said to me, but +do not breathe a word of this letter.” + +“I promise.” It was Villefort who seemed to entreat, and the prisoner +who reassured him. + +“You see,” continued he, glancing toward the grate, where fragments of +burnt paper fluttered in the flames, “the letter is destroyed; you and +I alone know of its existence; should you, therefore, be questioned, +deny all knowledge of it—deny it boldly, and you are saved.” + +“Be satisfied; I will deny it.” + +“It was the only letter you had?” + +“It was.” + +“Swear it.” + +“I swear it.” + +Villefort rang. A police agent entered. Villefort whispered some words +in his ear, to which the officer replied by a motion of his head. + +“Follow him,” said Villefort to Dantès. Dantès saluted Villefort and +retired. Hardly had the door closed when Villefort threw himself +half-fainting into a chair. + +“Alas, alas,” murmured he, “if the procureur himself had been at +Marseilles I should have been ruined. This accursed letter would have +destroyed all my hopes. Oh, my father, must your past career always +interfere with my successes?” Suddenly a light passed over his face, a +smile played round his set mouth, and his haggard eyes were fixed in +thought. + +“This will do,” said he, “and from this letter, which might have ruined +me, I will make my fortune. Now to the work I have in hand.” And after +having assured himself that the prisoner was gone, the deputy procureur +hastened to the house of his betrothed. + +0107m + + + + + Chapter 8. The Château d’If + +The commissary of police, as he traversed the antechamber, made a sign +to two gendarmes, who placed themselves one on Dantès’ right and the +other on his left. A door that communicated with the Palais de Justice +was opened, and they went through a long range of gloomy corridors, +whose appearance might have made even the boldest shudder. The Palais +de Justice communicated with the prison,—a sombre edifice, that from +its grated windows looks on the clock-tower of the Accoules. After +numberless windings, Dantès saw a door with an iron wicket. The +commissary took up an iron mallet and knocked thrice, every blow +seeming to Dantès as if struck on his heart. The door opened, the two +gendarmes gently pushed him forward, and the door closed with a loud +sound behind him. The air he inhaled was no longer pure, but thick and +mephitic,—he was in prison. + +He was conducted to a tolerably neat chamber, but grated and barred, +and its appearance, therefore, did not greatly alarm him; besides, the +words of Villefort, who seemed to interest himself so much, resounded +still in his ears like a promise of freedom. It was four o’clock when +Dantès was placed in this chamber. It was, as we have said, the 1st of +March, and the prisoner was soon buried in darkness. The obscurity +augmented the acuteness of his hearing; at the slightest sound he rose +and hastened to the door, convinced they were about to liberate him, +but the sound died away, and Dantès sank again into his seat. At last, +about ten o’clock, and just as Dantès began to despair, steps were +heard in the corridor, a key turned in the lock, the bolts creaked, the +massy oaken door flew open, and a flood of light from two torches +pervaded the apartment. + +By the torchlight Dantès saw the glittering sabres and carbines of four +gendarmes. He had advanced at first, but stopped at the sight of this +display of force. + +“Are you come to fetch me?” asked he. + +“Yes,” replied a gendarme. + +“By the orders of the deputy procureur?” + +“I believe so.” The conviction that they came from M. de Villefort +relieved all Dantès’ apprehensions; he advanced calmly, and placed +himself in the centre of the escort. A carriage waited at the door, the +coachman was on the box, and a police officer sat beside him. + +“Is this carriage for me?” said Dantès. + +“It is for you,” replied a gendarme. + +Dantès was about to speak; but feeling himself urged forward, and +having neither the power nor the intention to resist, he mounted the +steps, and was in an instant seated inside between two gendarmes; the +two others took their places opposite, and the carriage rolled heavily +over the stones. + +The prisoner glanced at the windows—they were grated; he had changed +his prison for another that was conveying him he knew not whither. +Through the grating, however, Dantès saw they were passing through the +Rue Caisserie, and by the Rue Saint-Laurent and the Rue Taramis, to the +quay. Soon he saw the lights of La Consigne. + +The carriage stopped, the officer descended, approached the guardhouse, +a dozen soldiers came out and formed themselves in order; Dantès saw +the reflection of their muskets by the light of the lamps on the quay. + +“Can all this force be summoned on my account?” thought he. + +The officer opened the door, which was locked, and, without speaking a +word, answered Dantès’ question; for he saw between the ranks of the +soldiers a passage formed from the carriage to the port. The two +gendarmes who were opposite to him descended first, then he was ordered +to alight and the gendarmes on each side of him followed his example. +They advanced towards a boat, which a custom-house officer held by a +chain, near the quay. + +The soldiers looked at Dantès with an air of stupid curiosity. In an +instant he was placed in the stern-sheets of the boat, between the +gendarmes, while the officer stationed himself at the bow; a shove sent +the boat adrift, and four sturdy oarsmen impelled it rapidly towards +the Pilon. At a shout from the boat, the chain that closes the mouth of +the port was lowered and in a second they were, as Dantès knew, in the +Frioul and outside the inner harbor. + +The prisoner’s first feeling was of joy at again breathing the pure +air—for air is freedom; but he soon sighed, for he passed before La +Réserve, where he had that morning been so happy, and now through the +open windows came the laughter and revelry of a ball. Dantès folded his +hands, raised his eyes to heaven, and prayed fervently. + +0111m + + + +The boat continued her voyage. They had passed the Tête de Mort, were +now off the Anse du Pharo, and about to double the battery. This +manœuvre was incomprehensible to Dantès. + +“Whither are you taking me?” asked he. + +“You will soon know.” + +“But still——” + +“We are forbidden to give you any explanation.” Dantès, trained in +discipline, knew that nothing would be more absurd than to question +subordinates, who were forbidden to reply; and so he remained silent. + +The most vague and wild thoughts passed through his mind. The boat they +were in could not make a long voyage; there was no vessel at anchor +outside the harbor; he thought, perhaps, they were going to leave him +on some distant point. He was not bound, nor had they made any attempt +to handcuff him; this seemed a good augury. Besides, had not the +deputy, who had been so kind to him, told him that provided he did not +pronounce the dreaded name of Noirtier, he had nothing to apprehend? +Had not Villefort in his presence destroyed the fatal letter, the only +proof against him? + +He waited silently, striving to pierce through the darkness. + +They had left the Ile Ratonneau, where the lighthouse stood, on the +right, and were now opposite the Point des Catalans. It seemed to the +prisoner that he could distinguish a feminine form on the beach, for it +was there Mercédès dwelt. How was it that a presentiment did not warn +Mercédès that her lover was within three hundred yards of her? + +One light alone was visible; and Dantès saw that it came from Mercédès’ +chamber. Mercédès was the only one awake in the whole settlement. A +loud cry could be heard by her. But pride restrained him and he did not +utter it. What would his guards think if they heard him shout like a +madman? + +He remained silent, his eyes fixed upon the light; the boat went on, +but the prisoner thought only of Mercédès. An intervening elevation of +land hid the light. Dantès turned and perceived that they had got out +to sea. While he had been absorbed in thought, they had shipped their +oars and hoisted sail; the boat was now moving with the wind. + +In spite of his repugnance to address the guards, Dantès turned to the +nearest gendarme, and taking his hand, + +“Comrade,” said he, “I adjure you, as a Christian and a soldier, to +tell me where we are going. I am Captain Dantès, a loyal Frenchman, +thought accused of treason; tell me where you are conducting me, and I +promise you on my honor I will submit to my fate.” + +The gendarme looked irresolutely at his companion, who returned for +answer a sign that said, “I see no great harm in telling him now,” and +the gendarme replied: + +“You are a native of Marseilles, and a sailor, and yet you do not know +where you are going?” + +“On my honor, I have no idea.” + +“Have you no idea whatever?” + +“None at all.” + +“That is impossible.” + +“I swear to you it is true. Tell me, I entreat.” + +“But my orders.” + +“Your orders do not forbid your telling me what I must know in ten +minutes, in half an hour, or an hour. You see I cannot escape, even if +I intended.” + +“Unless you are blind, or have never been outside the harbor, you must +know.” + +“I do not.” + +“Look round you then.” Dantès rose and looked forward, when he saw rise +within a hundred yards of him the black and frowning rock on which +stands the Château d’If. This gloomy fortress, which has for more than +three hundred years furnished food for so many wild legends, seemed to +Dantès like a scaffold to a malefactor. + +“The Château d’If?” cried he, “what are we going there for?” + +The gendarme smiled. + +“I am not going there to be imprisoned,” said Dantès; “it is only used +for political prisoners. I have committed no crime. Are there any +magistrates or judges at the Château d’If?” + +“There are only,” said the gendarme, “a governor, a garrison, turnkeys, +and good thick walls. Come, come, do not look so astonished, or you +will make me think you are laughing at me in return for my good +nature.” + +Dantès pressed the gendarme’s hand as though he would crush it. + +“You think, then,” said he, “that I am taken to the Château d’If to be +imprisoned there?” + +“It is probable; but there is no occasion to squeeze so hard.” + +“Without any inquiry, without any formality?” + +“All the formalities have been gone through; the inquiry is already +made.” + +“And so, in spite of M. de Villefort’s promises?” + +“I do not know what M. de Villefort promised you,” said the gendarme, +“but I know we are taking you to the Château d’If. But what are you +doing? Help, comrades, help!” + +By a rapid movement, which the gendarme’s practiced eye had perceived, +Dantès sprang forward to precipitate himself into the sea; but four +vigorous arms seized him as his feet quitted the bottom of the boat. He +fell back cursing with rage. + +“Good!” said the gendarme, placing his knee on his chest; “this is the +way you keep your word as a sailor! Believe soft-spoken gentlemen +again! Hark ye, my friend, I have disobeyed my first order, but I will +not disobey the second; and if you move, I will blow your brains out.” +And he levelled his carbine at Dantès, who felt the muzzle against his +temple. + +For a moment the idea of struggling crossed his mind, and of so ending +the unexpected evil that had overtaken him. But he bethought him of M. +de Villefort’s promise; and, besides, death in a boat from the hand of +a gendarme seemed too terrible. He remained motionless, but gnashing +his teeth and wringing his hands with fury. + +At this moment the boat came to a landing with a violent shock. One of +the sailors leaped on shore, a cord creaked as it ran through a pulley, +and Dantès guessed they were at the end of the voyage, and that they +were mooring the boat. + +His guards, taking him by the arms and coat-collar, forced him to rise, +and dragged him towards the steps that lead to the gate of the +fortress, while the police officer carrying a musket with fixed bayonet +followed behind. + +Dantès made no resistance; he was like a man in a dream; he saw +soldiers drawn up on the embankment; he knew vaguely that he was +ascending a flight of steps; he was conscious that he passed through a +door, and that the door closed behind him; but all this indistinctly as +through a mist. He did not even see the ocean, that terrible barrier +against freedom, which the prisoners look upon with utter despair. + +They halted for a minute, during which he strove to collect his +thoughts. He looked around; he was in a court surrounded by high walls; +he heard the measured tread of sentinels, and as they passed before the +light he saw the barrels of their muskets shine. + +They waited upwards of ten minutes. Certain Dantès could not escape, +the gendarmes released him. They seemed awaiting orders. The orders +came. + +“Where is the prisoner?” said a voice. + +“Here,” replied the gendarmes. + +“Let him follow me; I will take him to his cell.” + +“Go!” said the gendarmes, thrusting Dantès forward. + +The prisoner followed his guide, who led him into a room almost under +ground, whose bare and reeking walls seemed as though impregnated with +tears; a lamp placed on a stool illumined the apartment faintly, and +showed Dantès the features of his conductor, an under-jailer, +ill-clothed, and of sullen appearance. + +0113m + + + +“Here is your chamber for tonight,” said he. “It is late, and the +governor is asleep. Tomorrow, perhaps, he may change you. In the +meantime there is bread, water, and fresh straw; and that is all a +prisoner can wish for. Goodnight.” And before Dantès could open his +mouth—before he had noticed where the jailer placed his bread or the +water—before he had glanced towards the corner where the straw was, the +jailer disappeared, taking with him the lamp and closing the door, +leaving stamped upon the prisoner’s mind the dim reflection of the +dripping walls of his dungeon. + +Dantès was alone in darkness and in silence—cold as the shadows that he +felt breathe on his burning forehead. With the first dawn of day the +jailer returned, with orders to leave Dantès where he was. He found the +prisoner in the same position, as if fixed there, his eyes swollen with +weeping. He had passed the night standing, and without sleep. The +jailer advanced; Dantès appeared not to perceive him. He touched him on +the shoulder. Edmond started. + +“Have you not slept?” said the jailer. + +“I do not know,” replied Dantès. The jailer stared. + +“Are you hungry?” continued he. + +“I do not know.” + +“Do you wish for anything?” + +“I wish to see the governor.” + +The jailer shrugged his shoulders and left the chamber. + +Dantès followed him with his eyes, and stretched forth his hands +towards the open door; but the door closed. All his emotion then burst +forth; he cast himself on the ground, weeping bitterly, and asking +himself what crime he had committed that he was thus punished. + +The day passed thus; he scarcely tasted food, but walked round and +round the cell like a wild beast in its cage. One thought in particular +tormented him: namely, that during his journey hither he had sat so +still, whereas he might, a dozen times, have plunged into the sea, and, +thanks to his powers of swimming, for which he was famous, have gained +the shore, concealed himself until the arrival of a Genoese or Spanish +vessel, escaped to Spain or Italy, where Mercédès and his father could +have joined him. He had no fears as to how he should live—good seamen +are welcome everywhere. He spoke Italian like a Tuscan, and Spanish +like a Castilian; he would have been free, and happy with Mercédès and +his father, whereas he was now confined in the Château d’If, that +impregnable fortress, ignorant of the future destiny of his father and +Mercédès; and all this because he had trusted to Villefort’s promise. +The thought was maddening, and Dantès threw himself furiously down on +his straw. The next morning at the same hour, the jailer came again. + +“Well,” said the jailer, “are you more reasonable today?” Dantès made +no reply. + +“Come, cheer up; is there anything that I can do for you?” + +“I wish to see the governor.” + +“I have already told you it was impossible.” + +“Why so?” + +“Because it is against prison rules, and prisoners must not even ask +for it.” + +“What is allowed, then?” + +“Better fare, if you pay for it, books, and leave to walk about.” + +“I do not want books, I am satisfied with my food, and do not care to +walk about; but I wish to see the governor.” + +“If you worry me by repeating the same thing, I will not bring you any +more to eat.” + +“Well, then,” said Edmond, “if you do not, I shall die of hunger—that +is all.” + +The jailer saw by his tone he would be happy to die; and as every +prisoner is worth ten sous a day to his jailer, he replied in a more +subdued tone. + +“What you ask is impossible; but if you are very well behaved you will +be allowed to walk about, and some day you will meet the governor, and +if he chooses to reply, that is his affair.” + +“But,” asked Dantès, “how long shall I have to wait?” + +“Ah, a month—six months—a year.” + +“It is too long a time. I wish to see him at once.” + +“Ah,” said the jailer, “do not always brood over what is impossible, or +you will be mad in a fortnight.” + +“You think so?” + +“Yes; we have an instance here; it was by always offering a million of +francs to the governor for his liberty that an abbé became mad, who was +in this chamber before you.” + +0119m + + + +“How long has he left it?” + +“Two years.” + +“Was he liberated, then?” + +“No; he was put in a dungeon.” + +“Listen!” said Dantès. “I am not an abbé, I am not mad; perhaps I shall +be, but at present, unfortunately, I am not. I will make you another +offer.” + +“What is that?” + +“I do not offer you a million, because I have it not; but I will give +you a hundred crowns if, the first time you go to Marseilles, you will +seek out a young girl named Mercédès, at the Catalans, and give her two +lines from me.” + +0120m + + + +“If I took them, and were detected, I should lose my place, which is +worth two thousand francs a year; so that I should be a great fool to +run such a risk for three hundred.” + +“Well,” said Dantès, “mark this; if you refuse at least to tell +Mercédès I am here, I will some day hide myself behind the door, and +when you enter I will dash out your brains with this stool.” + +“Threats!” cried the jailer, retreating and putting himself on the +defensive; “you are certainly going mad. The abbé began like you, and +in three days you will be like him, mad enough to tie up; but, +fortunately, there are dungeons here.” + +Dantès whirled the stool round his head. + +“All right, all right,” said the jailer; “all right, since you will +have it so. I will send word to the governor.” + +“Very well,” returned Dantès, dropping the stool and sitting on it as +if he were in reality mad. The jailer went out, and returned in an +instant with a corporal and four soldiers. + +“By the governor’s orders,” said he, “conduct the prisoner to the tier +beneath.” + +“To the dungeon, then,” said the corporal. + +“Yes; we must put the madman with the madmen.” The soldiers seized +Dantès, who followed passively. + +He descended fifteen steps, and the door of a dungeon was opened, and +he was thrust in. The door closed, and Dantès advanced with +outstretched hands until he touched the wall; he then sat down in the +corner until his eyes became accustomed to the darkness. The jailer was +right; Dantès wanted but little of being utterly mad. + + + + Chapter 9. The Evening of the Betrothal + +Villefort had, as we have said, hastened back to Madame de +Saint-Méran’s in the Place du Grand Cours, and on entering the house +found that the guests whom he had left at table were taking coffee in +the salon. Renée was, with all the rest of the company, anxiously +awaiting him, and his entrance was followed by a general exclamation. + +“Well, Decapitator, Guardian of the State, Royalist, Brutus, what is +the matter?” said one. “Speak out.” + +“Are we threatened with a fresh Reign of Terror?” asked another. + +“Has the Corsican ogre broken loose?” cried a third. + +“Marquise,” said Villefort, approaching his future mother-in-law, “I +request your pardon for thus leaving you. Will the marquis honor me by +a few moments’ private conversation?” + +“Ah, it is really a serious matter, then?” asked the marquis, remarking +the cloud on Villefort’s brow. + +“So serious that I must take leave of you for a few days; so,” added +he, turning to Renée, “judge for yourself if it be not important.” + +“You are going to leave us?” cried Renée, unable to hide her emotion at +this unexpected announcement. + +“Alas,” returned Villefort, “I must!” + +“Where, then, are you going?” asked the marquise. + +“That, madame, is an official secret; but if you have any commissions +for Paris, a friend of mine is going there tonight, and will with +pleasure undertake them.” The guests looked at each other. + +“You wish to speak to me alone?” said the marquis. + +“Yes, let us go to the library, please.” The marquis took his arm, and +they left the salon. + +“Well,” asked he, as soon as they were by themselves, “tell me what it +is?” + +“An affair of the greatest importance, that demands my immediate +presence in Paris. Now, excuse the indiscretion, marquis, but have you +any landed property?” + +“All my fortune is in the funds; seven or eight hundred thousand +francs.” + +“Then sell out—sell out, marquis, or you will lose it all.” + +0123m + + + +“But how can I sell out here?” + +“You have a broker, have you not?” + +“Yes.” + +“Then give me a letter to him, and tell him to sell out without an +instant’s delay, perhaps even now I shall arrive too late.” + +“The deuce you say!” replied the marquis, “let us lose no time, then!” + +And, sitting down, he wrote a letter to his broker, ordering him to +sell out at the market price. + +“Now, then,” said Villefort, placing the letter in his pocketbook, “I +must have another!” + +“To whom?” + +“To the king.” + +“To the king?” + +“Yes.” + +“I dare not write to his majesty.” + +“I do not ask you to write to his majesty, but ask M. de Salvieux to do +so. I want a letter that will enable me to reach the king’s presence +without all the formalities of demanding an audience; that would +occasion a loss of precious time.” + +“But address yourself to the keeper of the seals; he has the right of +entry at the Tuileries, and can procure you audience at any hour of the +day or night.” + +“Doubtless; but there is no occasion to divide the honors of my +discovery with him. The keeper would leave me in the background, and +take all the glory to himself. I tell you, marquis, my fortune is made +if I only reach the Tuileries the first, for the king will not forget +the service I do him.” + +“In that case go and get ready. I will call Salvieux and make him write +the letter.” + +“Be as quick as possible, I must be on the road in a quarter of an +hour.” + +“Tell your coachman to stop at the door.” + +“You will present my excuses to the marquise and Mademoiselle Renée, +whom I leave on such a day with great regret.” + +“You will find them both here, and can make your farewells in person.” + +“A thousand thanks—and now for the letter.” + +The marquis rang, a servant entered. + +“Say to the Comte de Salvieux that I would like to see him.” + +“Now, then, go,” said the marquis. + +“I shall be gone only a few moments.” + +Villefort hastily quitted the apartment, but reflecting that the sight +of the deputy procureur running through the streets would be enough to +throw the whole city into confusion, he resumed his ordinary pace. At +his door he perceived a figure in the shadow that seemed to wait for +him. It was Mercédès, who, hearing no news of her lover, had come +unobserved to inquire after him. + +As Villefort drew near, she advanced and stood before him. Dantès had +spoken of Mercédès, and Villefort instantly recognized her. Her beauty +and high bearing surprised him, and when she inquired what had become +of her lover, it seemed to him that she was the judge, and he the +accused. + +“The young man you speak of,” said Villefort abruptly, “is a great +criminal, and I can do nothing for him, mademoiselle.” Mercédès burst +into tears, and, as Villefort strove to pass her, again addressed him. + +“But, at least, tell me where he is, that I may know whether he is +alive or dead,” said she. + +0125m + + + +“I do not know; he is no longer in my hands,” replied Villefort. + +And desirous of putting an end to the interview, he pushed by her, and +closed the door, as if to exclude the pain he felt. But remorse is not +thus banished; like Virgil’s wounded hero, he carried the arrow in his +wound, and, arrived at the salon, Villefort uttered a sigh that was +almost a sob, and sank into a chair. + +Then the first pangs of an unending torture seized upon his heart. The +man he sacrificed to his ambition, that innocent victim immolated on +the altar of his father’s faults, appeared to him pale and threatening, +leading his affianced bride by the hand, and bringing with him remorse, +not such as the ancients figured, furious and terrible, but that slow +and consuming agony whose pangs are intensified from hour to hour up to +the very moment of death. Then he had a moment’s hesitation. He had +frequently called for capital punishment on criminals, and owing to his +irresistible eloquence they had been condemned, and yet the slightest +shadow of remorse had never clouded Villefort’s brow, because they were +guilty; at least, he believed so; but here was an innocent man whose +happiness he had destroyed. In this case he was not the judge, but the +executioner. + +As he thus reflected, he felt the sensation we have described, and +which had hitherto been unknown to him, arise in his bosom, and fill +him with vague apprehensions. It is thus that a wounded man trembles +instinctively at the approach of the finger to his wound until it be +healed, but Villefort’s was one of those that never close, or if they +do, only close to reopen more agonizing than ever. If at this moment +the sweet voice of Renée had sounded in his ears pleading for mercy, or +the fair Mercédès had entered and said, “In the name of God, I conjure +you to restore me my affianced husband,” his cold and trembling hands +would have signed his release; but no voice broke the stillness of the +chamber, and the door was opened only by Villefort’s valet, who came to +tell him that the travelling carriage was in readiness. + +Villefort rose, or rather sprang, from his chair, hastily opened one of +the drawers of his desk, emptied all the gold it contained into his +pocket, stood motionless an instant, his hand pressed to his head, +muttered a few inarticulate sounds, and then, perceiving that his +servant had placed his cloak on his shoulders, he sprang into the +carriage, ordering the postilions to drive to M. de Saint-Méran’s. The +hapless Dantès was doomed. + +As the marquis had promised, Villefort found the marquise and Renée in +waiting. He started when he saw Renée, for he fancied she was again +about to plead for Dantès. Alas, her emotions were wholly personal: she +was thinking only of Villefort’s departure. + +She loved Villefort, and he left her at the moment he was about to +become her husband. Villefort knew not when he should return, and +Renée, far from pleading for Dantès, hated the man whose crime +separated her from her lover. + +0127m + + + +Meanwhile what of Mercédès? She had met Fernand at the corner of the +Rue de la Loge; she had returned to the Catalans, and had despairingly +cast herself on her couch. Fernand, kneeling by her side, took her +hand, and covered it with kisses that Mercédès did not even feel. She +passed the night thus. The lamp went out for want of oil, but she paid +no heed to the darkness, and dawn came, but she knew not that it was +day. Grief had made her blind to all but one object—that was Edmond. + +“Ah, you are there,” said she, at length, turning towards Fernand. + +“I have not quitted you since yesterday,” returned Fernand sorrowfully. + +M. Morrel had not readily given up the fight. He had learned that +Dantès had been taken to prison, and he had gone to all his friends, +and the influential persons of the city; but the report was already in +circulation that Dantès was arrested as a Bonapartist agent; and as the +most sanguine looked upon any attempt of Napoleon to remount the throne +as impossible, he met with nothing but refusal, and had returned home +in despair, declaring that the matter was serious and that nothing more +could be done. + +Caderousse was equally restless and uneasy, but instead of seeking, +like M. Morrel, to aid Dantès, he had shut himself up with two bottles +of black currant brandy, in the hope of drowning reflection. But he did +not succeed, and became too intoxicated to fetch any more drink, and +yet not so intoxicated as to forget what had happened. With his elbows +on the table he sat between the two empty bottles, while spectres +danced in the light of the unsnuffed candle—spectres such as Hoffmann +strews over his punch-drenched pages, like black, fantastic dust. + +Danglars alone was content and joyous—he had got rid of an enemy and +made his own situation on the _Pharaon_ secure. Danglars was one of +those men born with a pen behind the ear, and an inkstand in place of a +heart. Everything with him was multiplication or subtraction. The life +of a man was to him of far less value than a numeral, especially when, +by taking it away, he could increase the sum total of his own desires. +He went to bed at his usual hour, and slept in peace. + +Villefort, after having received M. de Salvieux’s letter, embraced +Renée, kissed the marquise’s hand, and shaken that of the marquis, +started for Paris along the Aix road. + +Old Dantès was dying with anxiety to know what had become of Edmond. +But we know very well what had become of Edmond. + + + + Chapter 10. The King’s Closet at the Tuileries + +We will leave Villefort on the road to Paris, travelling—thanks to +trebled fees—with all speed, and passing through two or three +apartments, enter at the Tuileries the little room with the arched +window, so well known as having been the favorite closet of Napoleon +and Louis XVIII., and now of Louis Philippe. + +There, seated before a walnut table he had brought with him from +Hartwell, and to which, from one of those fancies not uncommon to great +people, he was particularly attached, the king, Louis XVIII., was +carelessly listening to a man of fifty or fifty-two years of age, with +gray hair, aristocratic bearing, and exceedingly gentlemanly attire, +and meanwhile making a marginal note in a volume of Gryphius’s rather +inaccurate, but much sought-after, edition of Horace—a work which was +much indebted to the sagacious observations of the philosophical +monarch. + +“You say, sir——” said the king. + +“That I am exceedingly disquieted, sire.” + +“Really, have you had a vision of the seven fat kine and the seven lean +kine?” + +“No, sire, for that would only betoken for us seven years of plenty and +seven years of scarcity; and with a king as full of foresight as your +majesty, scarcity is not a thing to be feared.” + +“Then of what other scourge are you afraid, my dear Blacas?” + +“Sire, I have every reason to believe that a storm is brewing in the +south.” + +“Well, my dear duke,” replied Louis XVIII., “I think you are wrongly +informed, and know positively that, on the contrary, it is very fine +weather in that direction.” Man of ability as he was, Louis XVIII. +liked a pleasant jest. + +“Sire,” continued M. de Blacas, “if it only be to reassure a faithful +servant, will your majesty send into Languedoc, Provence, and Dauphiné, +trusty men, who will bring you back a faithful report as to the feeling +in these three provinces?” + +“_Canimus surdis_,” replied the king, continuing the annotations in his +Horace. + +“Sire,” replied the courtier, laughing, in order that he might seem to +comprehend the quotation, “your majesty may be perfectly right in +relying on the good feeling of France, but I fear I am not altogether +wrong in dreading some desperate attempt.” + +“By whom?” + +“By Bonaparte, or, at least, by his adherents.” + +“My dear Blacas,” said the king, “you with your alarms prevent me from +working.” + +“And you, sire, prevent me from sleeping with your security.” + +“Wait, my dear sir, wait a moment; for I have such a delightful note on +the _Pastor quum traheret_—wait, and I will listen to you afterwards.” + +There was a brief pause, during which Louis XVIII. wrote, in a hand as +small as possible, another note on the margin of his Horace, and then +looking at the duke with the air of a man who thinks he has an idea of +his own, while he is only commenting upon the idea of another, said: + +“Go on, my dear duke, go on—I listen.” + +“Sire,” said Blacas, who had for a moment the hope of sacrificing +Villefort to his own profit, “I am compelled to tell you that these are +not mere rumors destitute of foundation which thus disquiet me; but a +serious-minded man, deserving all my confidence, and charged by me to +watch over the south” (the duke hesitated as he pronounced these +words), “has arrived by post to tell me that a great peril threatens +the king, and so I hastened to you, sire.” + +“_Mala ducis avi domum_,” continued Louis XVIII., still annotating. + +“Does your majesty wish me to drop the subject?” + +“By no means, my dear duke; but just stretch out your hand.” + +“Which?” + +“Whichever you please—there to the left.” + +“Here, sire?” + +“I tell you to the left, and you are looking to the right; I mean on my +left—yes, there. You will find yesterday’s report of the minister of +police. But here is M. Dandré himself;” and M. Dandré, announced by the +chamberlain-in-waiting, entered. + +“Come in,” said Louis XVIII., with repressed smile, “come in, Baron, +and tell the duke all you know—the latest news of M. de Bonaparte; do +not conceal anything, however serious,—let us see, the Island of Elba +is a volcano, and we may expect to have issuing thence flaming and +bristling war—_bella, horrida bella_.” + +M. Dandré leaned very respectfully on the back of a chair with his two +hands, and said: + +“Has your majesty perused yesterday’s report?” + +“Yes, yes; but tell the duke himself, who cannot find anything, what +the report contains—give him the particulars of what the usurper is +doing in his islet.” + +“Monsieur,” said the baron to the duke, “all the servants of his +majesty must approve of the latest intelligence which we have from the +Island of Elba. Bonaparte——” + +M. Dandré looked at Louis XVIII., who, employed in writing a note, did +not even raise his head. “Bonaparte,” continued the baron, “is mortally +wearied, and passes whole days in watching his miners at work at +Porto-Longone.” + +“And scratches himself for amusement,” added the king. + +“Scratches himself?” inquired the duke, “what does your majesty mean?” + +“Yes, indeed, my dear duke. Did you forget that this great man, this +hero, this demigod, is attacked with a malady of the skin which worries +him to death, _prurigo_?” + +“And, moreover, my dear duke,” continued the minister of police, “we +are almost assured that, in a very short time, the usurper will be +insane.” + +“Insane?” + +“Raving mad; his head becomes weaker. Sometimes he weeps bitterly, +sometimes laughs boisterously, at other time he passes hours on the +seashore, flinging stones in the water and when the flint makes +‘duck-and-drake’ five or six times, he appears as delighted as if he +had gained another Marengo or Austerlitz. Now, you must agree that +these are indubitable symptoms of insanity.” + +“Or of wisdom, my dear baron—or of wisdom,” said Louis XVIII., +laughing; “the greatest captains of antiquity amused themselves by +casting pebbles into the ocean—see Plutarch’s life of Scipio +Africanus.” + +M. de Blacas pondered deeply between the confident monarch and the +truthful minister. Villefort, who did not choose to reveal the whole +secret, lest another should reap all the benefit of the disclosure, had +yet communicated enough to cause him the greatest uneasiness. + +“Well, well, Dandré,” said Louis XVIII., “Blacas is not yet convinced; +let us proceed, therefore, to the usurper’s conversion.” The minister +of police bowed. + +“The usurper’s conversion!” murmured the duke, looking at the king and +Dandré, who spoke alternately, like Virgil’s shepherds. “The usurper +converted!” + +“Decidedly, my dear duke.” + +“In what way converted?” + +“To good principles. Tell him all about it, baron.” + +“Why, this is the way of it,” said the minister, with the gravest air +in the world: “Napoleon lately had a review, and as two or three of his +old veterans expressed a desire to return to France, he gave them their +dismissal, and exhorted them to ‘serve the good king.’ These were his +own words, of that I am certain.” + +“Well, Blacas, what think you of this?” inquired the king triumphantly, +and pausing for a moment from the voluminous scholiast before him. + +“I say, sire, that the minister of police is greatly deceived or I am; +and as it is impossible it can be the minister of police as he has the +guardianship of the safety and honor of your majesty, it is probable +that I am in error. However, sire, if I might advise, your majesty will +interrogate the person of whom I spoke to you, and I will urge your +majesty to do him this honor.” + +“Most willingly, duke; under your auspices I will receive any person +you please, but you must not expect me to be too confiding. Baron, have +you any report more recent than this, dated the 20th February, and this +is the 3rd of March?” + +“No, sire, but I am hourly expecting one; it may have arrived since I +left my office.” + +“Go thither, and if there be none—well, well,” continued Louis XVIII., +“make one; that is the usual way, is it not?” and the king laughed +facetiously. + +“Oh, sire,” replied the minister, “we have no occasion to invent any; +every day our desks are loaded with most circumstantial denunciations, +coming from hosts of people who hope for some return for services which +they seek to render, but cannot; they trust to fortune, and rely upon +some unexpected event in some way to justify their predictions.” + +“Well, sir, go,” said Louis XVIII., “and remember that I am waiting for +you.” + +“I will but go and return, sire; I shall be back in ten minutes.” + +“And I, sire,” said M. de Blacas, “will go and find my messenger.” + +“Wait, sir, wait,” said Louis XVIII. “Really, M. de Blacas, I must +change your armorial bearings; I will give you an eagle with +outstretched wings, holding in its claws a prey which tries in vain to +escape, and bearing this device—_Tenax_.” + +0133m + + + +“Sire, I listen,” said De Blacas, biting his nails with impatience. + +“I wish to consult you on this passage, ‘_Molli fugiens anhelitu_,’ you +know it refers to a stag flying from a wolf. Are you not a sportsman +and a great wolf-hunter? Well, then, what do you think of the _molli +anhelitu_?” + +“Admirable, sire; but my messenger is like the stag you refer to, for +he has posted two hundred and twenty leagues in scarcely three days.” + +“Which is undergoing great fatigue and anxiety, my dear duke, when we +have a telegraph which transmits messages in three or four hours, and +that without getting in the least out of breath.” + +“Ah, sire, you recompense but badly this poor young man, who has come +so far, and with so much ardor, to give your majesty useful +information. If only for the sake of M. de Salvieux, who recommends him +to me, I entreat your majesty to receive him graciously.” + +“M. de Salvieux, my brother’s chamberlain?” + +“Yes, sire.” + +“He is at Marseilles.” + +“And writes me thence.” + +“Does he speak to you of this conspiracy?” + +“No; but strongly recommends M. de Villefort, and begs me to present +him to your majesty.” + +“M. de Villefort!” cried the king, “is the messenger’s name M. de +Villefort?” + +“Yes, sire.” + +“And he comes from Marseilles?” + +“In person.” + +“Why did you not mention his name at once?” replied the king, betraying +some uneasiness. + +“Sire, I thought his name was unknown to your majesty.” + +“No, no, Blacas; he is a man of strong and elevated understanding, +ambitious, too, and, _pardieu!_ you know his father’s name!” + +“His father?” + +“Yes, Noirtier.” + +“Noirtier the Girondin?—Noirtier the senator?” + +“He himself.” + +“And your majesty has employed the son of such a man?” + +“Blacas, my friend, you have but limited comprehension. I told you +Villefort was ambitious, and to attain this ambition Villefort would +sacrifice everything, even his father.” + +“Then, sire, may I present him?” + +“This instant, duke! Where is he?” + +“Waiting below, in my carriage.” + +“Seek him at once.” + +“I hasten to do so.” + +The duke left the royal presence with the speed of a young man; his +really sincere royalism made him youthful again. Louis XVIII. remained +alone, and turning his eyes on his half-opened Horace, muttered: + +“_Justum et tenacem propositi virum_.” + +M. de Blacas returned as speedily as he had departed, but in the +antechamber he was forced to appeal to the king’s authority. +Villefort’s dusty garb, his costume, which was not of courtly cut, +excited the susceptibility of M. de Brezé, who was all astonishment at +finding that this young man had the audacity to enter before the king +in such attire. The duke, however, overcame all difficulties with a +word—his majesty’s order; and, in spite of the protestations which the +master of ceremonies made for the honor of his office and principles, +Villefort was introduced. + +The king was seated in the same place where the duke had left him. On +opening the door, Villefort found himself facing him, and the young +magistrate’s first impulse was to pause. + +“Come in, M. de Villefort,” said the king, “come in.” + +Villefort bowed, and advancing a few steps, waited until the king +should interrogate him. + +“M. de Villefort,” said Louis XVIII., “the Duc de Blacas assures me you +have some interesting information to communicate.” + +“Sire, the duke is right, and I believe your majesty will think it +equally important.” + +0137m + + + +“In the first place, and before everything else, sir, is the news as +bad in your opinion as I am asked to believe?” + +“Sire, I believe it to be most urgent, but I hope, by the speed I have +used, that it is not irreparable.” + +“Speak as fully as you please, sir,” said the king, who began to give +way to the emotion which had showed itself in Blacas’s face and +affected Villefort’s voice. “Speak, sir, and pray begin at the +beginning; I like order in everything.” + +“Sire,” said Villefort, “I will render a faithful report to your +majesty, but I must entreat your forgiveness if my anxiety leads to +some obscurity in my language.” A glance at the king after this +discreet and subtle exordium, assured Villefort of the benignity of his +august auditor, and he went on: + +“Sire, I have come as rapidly to Paris as possible, to inform your +majesty that I have discovered, in the exercise of my duties, not a +commonplace and insignificant plot, such as is every day got up in the +lower ranks of the people and in the army, but an actual conspiracy—a +storm which menaces no less than your majesty’s throne. Sire, the +usurper is arming three ships, he meditates some project, which, +however mad, is yet, perhaps, terrible. At this moment he will have +left Elba, to go whither I know not, but assuredly to attempt a landing +either at Naples, or on the coast of Tuscany, or perhaps on the shores +of France. Your majesty is well aware that the sovereign of the Island +of Elba has maintained his relations with Italy and France?” + +“I am, sir,” said the king, much agitated; “and recently we have had +information that the Bonapartist clubs have had meetings in the Rue +Saint-Jacques. But proceed, I beg of you. How did you obtain these +details?” + +“Sire, they are the results of an examination which I have made of a +man of Marseilles, whom I have watched for some time, and arrested on +the day of my departure. This person, a sailor, of turbulent character, +and whom I suspected of Bonapartism, has been secretly to the Island of +Elba. There he saw the grand-marshal, who charged him with an oral +message to a Bonapartist in Paris, whose name I could not extract from +him; but this mission was to prepare men’s minds for a return (it is +the man who says this, sire)—a return which will soon occur.” + +“And where is this man?” + +“In prison, sire.” + +“And the matter seems serious to you?” + +“So serious, sire, that when the circumstance surprised me in the midst +of a family festival, on the very day of my betrothal, I left my bride +and friends, postponing everything, that I might hasten to lay at your +majesty’s feet the fears which impressed me, and the assurance of my +devotion.” + +“True,” said Louis XVIII., “was there not a marriage engagement between +you and Mademoiselle de Saint-Méran?” + +“Daughter of one of your majesty’s most faithful servants.” + +“Yes, yes; but let us talk of this plot, M. de Villefort.” + +“Sire, I fear it is more than a plot; I fear it is a conspiracy.” + +“A conspiracy in these times,” said Louis XVIII., smiling, “is a thing +very easy to meditate, but more difficult to conduct to an end, +inasmuch as, re-established so recently on the throne of our ancestors, +we have our eyes open at once upon the past, the present, and the +future. For the last ten months my ministers have redoubled their +vigilance, in order to watch the shore of the Mediterranean. If +Bonaparte landed at Naples, the whole coalition would be on foot before +he could even reach Piombino; if he land in Tuscany, he will be in an +unfriendly territory; if he land in France, it must be with a handful +of men, and the result of that is easily foretold, execrated as he is +by the population. Take courage, sir; but at the same time rely on our +royal gratitude.” + +“Ah, here is M. Dandré!” cried de Blacas. At this instant the minister +of police appeared at the door, pale, trembling, and as if ready to +faint. Villefort was about to retire, but M. de Blacas, taking his +hand, restrained him. + + + + Chapter 11. The Corsican Ogre + +At the sight of this agitation Louis XVIII. pushed from him violently +the table at which he was sitting. + +“What ails you, baron?” he exclaimed. “You appear quite aghast. Has +your uneasiness anything to do with what M. de Blacas has told me, and +M. de Villefort has just confirmed?” M. de Blacas moved suddenly +towards the baron, but the fright of the courtier pleaded for the +forbearance of the statesman; and besides, as matters were, it was much +more to his advantage that the prefect of police should triumph over +him than that he should humiliate the prefect. + +“Sire,——” stammered the baron. + +“Well, what is it?” asked Louis XVIII. The minister of police, giving +way to an impulse of despair, was about to throw himself at the feet of +Louis XVIII., who retreated a step and frowned. + +“Will you speak?” he said. + +“Oh, sire, what a dreadful misfortune! I am, indeed, to be pitied. I +can never forgive myself!” + +“Monsieur,” said Louis XVIII., “I command you to speak.” + +“Well, sire, the usurper left Elba on the 26th February, and landed on +the 1st of March.” + +“And where? In Italy?” asked the king eagerly. + +“In France, sire,—at a small port, near Antibes, in the Gulf of Juan.” + +“The usurper landed in France, near Antibes, in the Gulf of Juan, two +hundred and fifty leagues from Paris, on the 1st of March, and you only +acquired this information today, the 3rd of March! Well, sir, what you +tell me is impossible. You must have received a false report, or you +have gone mad.” + +“Alas, sire, it is but too true!” Louis made a gesture of indescribable +anger and alarm, and then drew himself up as if this sudden blow had +struck him at the same moment in heart and countenance. + +“In France!” he cried, “the usurper in France! Then they did not watch +over this man. Who knows? they were, perhaps, in league with him.” + +“Oh, sire,” exclaimed the Duc de Blacas, “M. Dandré is not a man to be +accused of treason! Sire, we have all been blind, and the minister of +police has shared the general blindness, that is all.” + +“But——” said Villefort, and then suddenly checking himself, he was +silent; then he continued, “Your pardon, sire,” he said, bowing, “my +zeal carried me away. Will your majesty deign to excuse me?” + +“Speak, sir, speak boldly,” replied Louis. “You alone forewarned us of +the evil; now try and aid us with the remedy.” + +“Sire,” said Villefort, “the usurper is detested in the south; and it +seems to me that if he ventured into the south, it would be easy to +raise Languedoc and Provence against him.” + +“Yes, assuredly,” replied the minister; “but he is advancing by Gap and +Sisteron.” + +“Advancing—he is advancing!” said Louis XVIII. “Is he then advancing on +Paris?” The minister of police maintained a silence which was +equivalent to a complete avowal. + +“And Dauphiné, sir?” inquired the king, of Villefort. “Do you think it +possible to rouse that as well as Provence?” + +“Sire, I am sorry to tell your majesty a cruel fact; but the feeling in +Dauphiné is quite the reverse of that in Provence or Languedoc. The +mountaineers are Bonapartists, sire.” + +“Then,” murmured Louis, “he was well informed. And how many men had he +with him?” + +“I do not know, sire,” answered the minister of police. + +“What, you do not know! Have you neglected to obtain information on +that point? Of course it is of no consequence,” he added, with a +withering smile. + +“Sire, it was impossible to learn; the despatch simply stated the fact +of the landing and the route taken by the usurper.” + +“And how did this despatch reach you?” inquired the king. The minister +bowed his head, and while a deep color overspread his cheeks, he +stammered out: + +“By the telegraph, sire.” Louis XVIII. advanced a step, and folded his +arms over his chest as Napoleon would have done. + +0141m + + + +“So then,” he exclaimed, turning pale with anger, “seven conjoined and +allied armies overthrew that man. A miracle of heaven replaced me on +the throne of my fathers after five-and-twenty years of exile. I have, +during those five-and-twenty years, spared no pains to understand the +people of France and the interests which were confided to me; and now, +when I see the fruition of my wishes almost within reach, the power I +hold in my hands bursts and shatters me to atoms!” + +“Sire, it is fatality!” murmured the minister, feeling that the +pressure of circumstances, however light a thing to destiny, was too +much for any human strength to endure. + +“What our enemies say of us is then true. We have learnt nothing, +forgotten nothing! If I were betrayed as he was, I would console +myself; but to be in the midst of persons elevated by myself to places +of honor, who ought to watch over me more carefully than over +themselves,—for my fortune is theirs—before me they were nothing—after +me they will be nothing, and perish miserably from +incapacity—ineptitude! Oh, yes, sir, you are right—it is fatality!” + +The minister quailed before this outburst of sarcasm. M. de Blacas +wiped the moisture from his brow. Villefort smiled within himself, for +he felt his increased importance. + +“To fall,” continued King Louis, who at the first glance had sounded +the abyss on which the monarchy hung suspended,—“to fall, and learn of +that fall by telegraph! Oh, I would rather mount the scaffold of my +brother, Louis XVI., than thus descend the staircase at the Tuileries +driven away by ridicule. Ridicule, sir—why, you know not its power in +France, and yet you ought to know it!” + +“Sire, sire,” murmured the minister, “for pity’s——” + +“Approach, M. de Villefort,” resumed the king, addressing the young +man, who, motionless and breathless, was listening to a conversation on +which depended the destiny of a kingdom. “Approach, and tell monsieur +that it is possible to know beforehand all that he has not known.” + +“Sire, it was really impossible to learn secrets which that man +concealed from all the world.” + +“Really impossible! Yes—that is a great word, sir. Unfortunately, there +are great words, as there are great men; I have measured them. Really +impossible for a minister who has an office, agents, spies, and fifteen +hundred thousand francs for secret service money, to know what is going +on at sixty leagues from the coast of France! Well, then, see, here is +a gentleman who had none of these resources at his disposal—a +gentleman, only a simple magistrate, who learned more than you with all +your police, and who would have saved my crown, if, like you, he had +the power of directing a telegraph.” The look of the minister of police +was turned with concentrated spite on Villefort, who bent his head in +modest triumph. + +“I do not mean that for you, Blacas,” continued Louis XVIII.; “for if +you have discovered nothing, at least you have had the good sense to +persevere in your suspicions. Any other than yourself would have +considered the disclosure of M. de Villefort insignificant, or else +dictated by venal ambition.” These words were an allusion to the +sentiments which the minister of police had uttered with so much +confidence an hour before. + +Villefort understood the king’s intent. Any other person would, +perhaps, have been overcome by such an intoxicating draught of praise; +but he feared to make for himself a mortal enemy of the police +minister, although he saw that Dandré was irrevocably lost. In fact, +the minister, who, in the plenitude of his power, had been unable to +unearth Napoleon’s secret, might in despair at his own downfall +interrogate Dantès and so lay bare the motives of Villefort’s plot. +Realizing this, Villefort came to the rescue of the crest-fallen +minister, instead of aiding to crush him. + +“Sire,” said Villefort, “the suddenness of this event must prove to +your majesty that the issue is in the hands of Providence; what your +majesty is pleased to attribute to me as profound perspicacity is +simply owing to chance, and I have profited by that chance, like a good +and devoted servant—that’s all. Do not attribute to me more than I +deserve, sire, that your majesty may never have occasion to recall the +first opinion you have been pleased to form of me.” The minister of +police thanked the young man by an eloquent look, and Villefort +understood that he had succeeded in his design; that is to say, that +without forfeiting the gratitude of the king, he had made a friend of +one on whom, in case of necessity, he might rely. + +“’Tis well,” resumed the king. “And now, gentlemen,” he continued, +turning towards M. de Blacas and the minister of police, “I have no +further occasion for you, and you may retire; what now remains to do is +in the department of the minister of war.” + +“Fortunately, sire,” said M. de Blacas, “we can rely on the army; your +majesty knows how every report confirms their loyalty and attachment.” + +“Do not mention reports, duke, to me, for I know now what confidence to +place in them. Yet, speaking of reports, baron, what have you learned +with regard to the affair in the Rue Saint-Jacques?” + +“The affair in the Rue Saint-Jacques!” exclaimed Villefort, unable to +repress an exclamation. Then, suddenly pausing, he added, “Your pardon, +sire, but my devotion to your majesty has made me forget, not the +respect I have, for that is too deeply engraved in my heart, but the +rules of etiquette.” + +“Go on, go on, sir,” replied the king; “you have today earned the right +to make inquiries here.” + +“Sire,” interposed the minister of police, “I came a moment ago to give +your majesty fresh information which I had obtained on this head, when +your majesty’s attention was attracted by the terrible event that has +occurred in the gulf, and now these facts will cease to interest your +majesty.” + +“On the contrary, sir,—on the contrary,” said Louis XVIII., “this +affair seems to me to have a decided connection with that which +occupies our attention, and the death of General Quesnel will, perhaps, +put us on the direct track of a great internal conspiracy.” At the name +of General Quesnel, Villefort trembled. + +“Everything points to the conclusion, sire,” said the minister of +police, “that death was not the result of suicide, as we first +believed, but of assassination. General Quesnel, it appears, had just +left a Bonapartist club when he disappeared. An unknown person had been +with him that morning, and made an appointment with him in the Rue +Saint-Jacques; unfortunately, the general’s valet, who was dressing his +hair at the moment when the stranger entered, heard the street +mentioned, but did not catch the number.” As the police minister +related this to the king, Villefort, who looked as if his very life +hung on the speaker’s lips, turned alternately red and pale. The king +looked towards him. + +“Do you not think with me, M. de Villefort, that General Quesnel, whom +they believed attached to the usurper, but who was really entirely +devoted to me, has perished the victim of a Bonapartist ambush?” + +“It is probable, sire,” replied Villefort. “But is this all that is +known?” + +“They are on the track of the man who appointed the meeting with him.” + +“On his track?” said Villefort. + +“Yes, the servant has given his description. He is a man of from fifty +to fifty-two years of age, dark, with black eyes covered with shaggy +eyebrows, and a thick moustache. He was dressed in a blue frock-coat, +buttoned up to the chin, and wore at his button-hole the rosette of an +officer of the Legion of Honor. Yesterday a person exactly +corresponding with this description was followed, but he was lost sight +of at the corner of the Rue de la Jussienne and the Rue Coq-Héron.” +Villefort leaned on the back of an armchair, for as the minister of +police went on speaking he felt his legs bend under him; but when he +learned that the unknown had escaped the vigilance of the agent who +followed him, he breathed again. + +“Continue to seek for this man, sir,” said the king to the minister of +police; “for if, as I am all but convinced, General Quesnel, who would +have been so useful to us at this moment, has been murdered, his +assassins, Bonapartists or not, shall be cruelly punished.” It required +all Villefort’s coolness not to betray the terror with which this +declaration of the king inspired him. + +“How strange,” continued the king, with some asperity; “the police +think that they have disposed of the whole matter when they say, ‘A +murder has been committed,’ and especially so when they can add, ‘And +we are on the track of the guilty persons.’” + +“Sire, your majesty will, I trust, be amply satisfied on this point at +least.” + +“We shall see. I will no longer detain you, M. de Villefort, for you +must be fatigued after so long a journey; go and rest. Of course you +stopped at your father’s?” A feeling of faintness came over Villefort. + +0145m + + + +“No, sire,” he replied, “I alighted at the Hotel de Madrid, in the Rue +de Tournon.” + +“But you have seen him?” + +“Sire, I went straight to the Duc de Blacas.” + +“But you will see him, then?” + +“I think not, sire.” + +“Ah, I forgot,” said Louis, smiling in a manner which proved that all +these questions were not made without a motive; “I forgot you and M. +Noirtier are not on the best terms possible, and that is another +sacrifice made to the royal cause, and for which you should be +recompensed.” + +“Sire, the kindness your majesty deigns to evince towards me is a +recompense which so far surpasses my utmost ambition that I have +nothing more to ask for.” + +“Never mind, sir, we will not forget you; make your mind easy. In the +meanwhile” (the king here detached the cross of the Legion of Honor +which he usually wore over his blue coat, near the cross of St. Louis, +above the order of Notre-Dame-du-Mont-Carmel and St. Lazare, and gave +it to Villefort)—“in the meanwhile take this cross.” + +“Sire,” said Villefort, “your majesty mistakes; this is an officer’s +cross.” + +“_Ma foi!_” said Louis XVIII., “take it, such as it is, for I have not +the time to procure you another. Blacas, let it be your care to see +that the brevet is made out and sent to M. de Villefort.” Villefort’s +eyes were filled with tears of joy and pride; he took the cross and +kissed it. + +“And now,” he said, “may I inquire what are the orders with which your +majesty deigns to honor me?” + +“Take what rest you require, and remember that if you are not able to +serve me here in Paris, you may be of the greatest service to me at +Marseilles.” + +“Sire,” replied Villefort, bowing, “in an hour I shall have quitted +Paris.” + +“Go, sir,” said the king; “and should I forget you (kings’ memories are +short), do not be afraid to bring yourself to my recollection. Baron, +send for the minister of war. Blacas, remain.” + +“Ah, sir,” said the minister of police to Villefort, as they left the +Tuileries, “you entered by luck’s door—your fortune is made.” + +“Will it be long first?” muttered Villefort, saluting the minister, +whose career was ended, and looking about him for a hackney-coach. One +passed at the moment, which he hailed; he gave his address to the +driver, and springing in, threw himself on the seat, and gave loose to +dreams of ambition. + +Ten minutes afterwards Villefort reached his hotel, ordered horses to +be ready in two hours, and asked to have his breakfast brought to him. +He was about to begin his repast when the sound of the bell rang sharp +and loud. The valet opened the door, and Villefort heard someone speak +his name. + +0147m + + + +“Who could know that I was here already?” said the young man. The valet +entered. + +“Well,” said Villefort, “what is it?—Who rang?—Who asked for me?” + +“A stranger who will not send in his name.” + +“A stranger who will not send in his name! What can he want with me?” + +“He wishes to speak to you.” + +“To me?” + +“Yes.” + +“Did he mention my name?” + +“Yes.” + +“What sort of person is he?” + +“Why, sir, a man of about fifty.” + +“Short or tall?” + +“About your own height, sir.” + +“Dark or fair?” + +“Dark,—very dark; with black eyes, black hair, black eyebrows.” + +“And how dressed?” asked Villefort quickly. + +“In a blue frock-coat, buttoned up close, decorated with the Legion of +Honor.” + +“It is he!” said Villefort, turning pale. + +0148m + + + +“Eh, _pardieu!_” said the individual whose description we have twice +given, entering the door, “what a great deal of ceremony! Is it the +custom in Marseilles for sons to keep their fathers waiting in their +anterooms?” + +“Father!” cried Villefort, “then I was not deceived; I felt sure it +must be you.” + +“Well, then, if you felt so sure,” replied the new-comer, putting his +cane in a corner and his hat on a chair, “allow me to say, my dear +Gérard, that it was not very filial of you to keep me waiting at the +door.” + +“Leave us, Germain,” said Villefort. The servant quitted the apartment +with evident signs of astonishment. + + + + Chapter 12. Father and Son + +M. Noirtier—for it was, indeed, he who entered—looked after the servant +until the door was closed, and then, fearing, no doubt, that he might +be overheard in the antechamber, he opened the door again, nor was the +precaution useless, as appeared from the rapid retreat of Germain, who +proved that he was not exempt from the sin which ruined our first +parents. M. Noirtier then took the trouble to close and bolt the +antechamber door, then that of the bedchamber, and then extended his +hand to Villefort, who had followed all his motions with surprise which +he could not conceal. + +“Well, now, my dear Gérard,” said he to the young man, with a very +significant look, “do you know, you seem as if you were not very glad +to see me?” + +“My dear father,” said Villefort, “I am, on the contrary, delighted; +but I so little expected your visit, that it has somewhat overcome me.” + +“But, my dear fellow,” replied M. Noirtier, seating himself, “I might +say the same thing to you, when you announce to me your wedding for the +28th of February, and on the 3rd of March you turn up here in Paris.” + +“And if I have come, my dear father,” said Gérard, drawing closer to M. +Noirtier, “do not complain, for it is for you that I came, and my +journey will be your salvation.” + +“Ah, indeed!” said M. Noirtier, stretching himself out at his ease in +the chair. “Really, pray tell me all about it, for it must be +interesting.” + +“Father, you have heard speak of a certain Bonapartist club in the Rue +Saint-Jacques?” + +“No. 53; yes, I am vice-president.” + +“Father, your coolness makes me shudder.” + +“Why, my dear boy, when a man has been proscribed by the mountaineers, +has escaped from Paris in a hay-cart, been hunted over the plains of +Bordeaux by Robespierre’s bloodhounds, he becomes accustomed to most +things. But go on, what about the club in the Rue Saint-Jacques?” + +“Why, they induced General Quesnel to go there, and General Quesnel, +who quitted his own house at nine o’clock in the evening, was found the +next day in the Seine.” + +0151m + + + +“And who told you this fine story?” + +“The king himself.” + +“Well, then, in return for your story,” continued Noirtier, “I will +tell you another.” + +“My dear father, I think I already know what you are about to tell me.” + +“Ah, you have heard of the landing of the emperor?” + +“Not so loud, father, I entreat of you—for your own sake as well as +mine. Yes, I heard this news, and knew it even before you could; for +three days ago I posted from Marseilles to Paris with all possible +speed, half-desperate at the enforced delay.” + +“Three days ago? You are crazy. Why, three days ago the emperor had not +landed.” + +“No matter, I was aware of his intention.” + +“How did you know about it?” + +“By a letter addressed to you from the Island of Elba.” + +“To me?” + +“To you; and which I discovered in the pocket-book of the messenger. +Had that letter fallen into the hands of another, you, my dear father, +would probably ere this have been shot.” Villefort’s father laughed. + +“Come, come,” said he, “will the Restoration adopt imperial methods so +promptly? Shot, my dear boy? What an idea! Where is the letter you +speak of? I know you too well to suppose you would allow such a thing +to pass you.” + +“I burnt it, for fear that even a fragment should remain; for that +letter must have led to your condemnation.” + +“And the destruction of your future prospects,” replied Noirtier; “yes, +I can easily comprehend that. But I have nothing to fear while I have +you to protect me.” + +“I do better than that, sir—I save you.” + +“You do? Why, really, the thing becomes more and more dramatic—explain +yourself.” + +“I must refer again to the club in the Rue Saint-Jacques.” + +“It appears that this club is rather a bore to the police. Why didn’t +they search more vigilantly? they would have found——” + +“They have not found; but they are on the track.” + +“Yes, that the usual phrase; I am quite familiar with it. When the +police is at fault, it declares that it is on the track; and the +government patiently awaits the day when it comes to say, with a +sneaking air, that the track is lost.” + +“Yes, but they have found a corpse; the general has been killed, and in +all countries they call that a murder.” + +“A murder do you call it? why, there is nothing to prove that the +general was murdered. People are found every day in the Seine, having +thrown themselves in, or having been drowned from not knowing how to +swim.” + +“Father, you know very well that the general was not a man to drown +himself in despair, and people do not bathe in the Seine in the month +of January. No, no, do not be deceived; this was murder in every sense +of the word.” + +“And who thus designated it?” + +“The king himself.” + +“The king! I thought he was philosopher enough to allow that there was +no murder in politics. In politics, my dear fellow, you know, as well +as I do, there are no men, but ideas—no feelings, but interests; in +politics we do not kill a man, we only remove an obstacle, that is all. +Would you like to know how matters have progressed? Well, I will tell +you. It was thought reliance might be placed in General Quesnel; he was +recommended to us from the Island of Elba; one of us went to him, and +invited him to the Rue Saint-Jacques, where he would find some friends. +He came there, and the plan was unfolded to him for leaving Elba, the +projected landing, etc. When he had heard and comprehended all to the +fullest extent, he replied that he was a royalist. Then all looked at +each other,—he was made to take an oath, and did so, but with such an +ill grace that it was really tempting Providence to swear thus, and +yet, in spite of that, the general was allowed to depart free—perfectly +free. Yet he did not return home. What could that mean? why, my dear +fellow, that on leaving us he lost his way, that’s all. A murder? +really, Villefort, you surprise me. You, a deputy procureur, to found +an accusation on such bad premises! Did I ever say to you, when you +were fulfilling your character as a royalist, and cut off the head of +one of my party, ‘My son, you have committed a murder?’ No, I said, +‘Very well, sir, you have gained the victory; tomorrow, perchance, it +will be our turn.’” + +“But, father, take care; when our turn comes, our revenge will be +sweeping.” + +“I do not understand you.” + +“You rely on the usurper’s return?” + +“We do.” + +“You are mistaken; he will not advance two leagues into the interior of +France without being followed, tracked, and caught like a wild beast.” + +“My dear fellow, the emperor is at this moment on the way to Grenoble; +on the 10th or 12th he will be at Lyons, and on the 20th or 25th at +Paris.” + +“The people will rise.” + +“Yes, to go and meet him.” + +“He has but a handful of men with him, and armies will be despatched +against him.” + +“Yes, to escort him into the capital. Really, my dear Gérard, you are +but a child; you think yourself well informed because the telegraph has +told you, three days after the landing, ‘The usurper has landed at +Cannes with several men. He is pursued.’ But where is he? what is he +doing? You do not know at all, and in this way they will chase him to +Paris, without drawing a trigger.” + +“Grenoble and Lyons are faithful cities, and will oppose to him an +impassable barrier.” + +“Grenoble will open her gates to him with enthusiasm—all Lyons will +hasten to welcome him. Believe me, we are as well informed as you, and +our police are as good as your own. Would you like a proof of it? well, +you wished to conceal your journey from me, and yet I knew of your +arrival half an hour after you had passed the barrier. You gave your +direction to no one but your postilion, yet I have your address, and in +proof I am here the very instant you are going to sit at table. Ring, +then, if you please, for a second knife, fork, and plate, and we will +dine together.” + +“Indeed!” replied Villefort, looking at his father with astonishment, +“you really do seem very well informed.” + +“Eh? the thing is simple enough. You who are in power have only the +means that money produces—we who are in expectation, have those which +devotion prompts.” + +“Devotion!” said Villefort, with a sneer. + +“Yes, devotion; for that is, I believe, the phrase for hopeful +ambition.” + +And Villefort’s father extended his hand to the bell-rope, to summon +the servant whom his son had not called. Villefort caught his arm. + +“Wait, my dear father,” said the young man, “one word more.” + +“Say on.” + +“However stupid the royalist police may be, they do know one terrible +thing.” + +“What is that?” + +“The description of the man who, on the morning of the day when General +Quesnel disappeared, presented himself at his house.” + +“Oh, the admirable police have found that out, have they? And what may +be that description?” + +“Dark complexion; hair, eyebrows, and whiskers black; blue frock-coat, +buttoned up to the chin; rosette of an officer of the Legion of Honor +in his button-hole; a hat with wide brim, and a cane.” + +“Ah, ha, that’s it, is it?” said Noirtier; “and why, then, have they +not laid hands on him?” + +“Because yesterday, or the day before, they lost sight of him at the +corner of the Rue Coq-Héron.” + +“Didn’t I say that your police were good for nothing?” + +“Yes; but they may catch him yet.” + +“True,” said Noirtier, looking carelessly around him, “true, if this +person were not on his guard, as he is;” and he added with a smile, “He +will consequently make a few changes in his personal appearance.” At +these words he rose, and put off his frock-coat and cravat, went +towards a table on which lay his son’s toilet articles, lathered his +face, took a razor, and, with a firm hand, cut off the compromising +whiskers. Villefort watched him with alarm not devoid of admiration. + +His whiskers cut off, Noirtier gave another turn to his hair; took, +instead of his black cravat, a colored neckerchief which lay at the top +of an open portmanteau; put on, in lieu of his blue and high-buttoned +frock-coat, a coat of Villefort’s of dark brown, and cut away in front; +tried on before the glass a narrow-brimmed hat of his son’s, which +appeared to fit him perfectly, and, leaving his cane in the corner +where he had deposited it, he took up a small bamboo switch, cut the +air with it once or twice, and walked about with that easy swagger +which was one of his principal characteristics. + +“Well,” he said, turning towards his wondering son, when this disguise +was completed, “well, do you think your police will recognize me now.” + +“No, father,” stammered Villefort; “at least, I hope not.” + +“And now, my dear boy,” continued Noirtier, “I rely on your prudence to +remove all the things which I leave in your care.” + +“Oh, rely on me,” said Villefort. + +“Yes, yes; and now I believe you are right, and that you have really +saved my life; be assured I will return the favor hereafter.” + +Villefort shook his head. + +“You are not convinced yet?” + +“I hope at least, that you may be mistaken.” + +“Shall you see the king again?” + +“Perhaps.” + +“Would you pass in his eyes for a prophet?” + +“Prophets of evil are not in favor at the court, father.” + +“True, but some day they do them justice; and supposing a second +restoration, you would then pass for a great man.” + +“Well, what should I say to the king?” + +“Say this to him: ‘Sire, you are deceived as to the feeling in France, +as to the opinions of the towns, and the prejudices of the army; he +whom in Paris you call the Corsican ogre, who at Nevers is styled the +usurper, is already saluted as Bonaparte at Lyons, and emperor at +Grenoble. You think he is tracked, pursued, captured; he is advancing +as rapidly as his own eagles. The soldiers you believe to be dying with +hunger, worn out with fatigue, ready to desert, gather like atoms of +snow about the rolling ball as it hastens onward. Sire, go, leave +France to its real master, to him who acquired it, not by purchase, but +by right of conquest; go, sire, not that you incur any risk, for your +adversary is powerful enough to show you mercy, but because it would be +humiliating for a grandson of Saint Louis to owe his life to the man of +Arcola, Marengo, Austerlitz.’ Tell him this, Gérard; or, rather, tell +him nothing. Keep your journey a secret; do not boast of what you have +come to Paris to do, or have done; return with all speed; enter +Marseilles at night, and your house by the back-door, and there remain, +quiet, submissive, secret, and, above all, inoffensive; for this time, +I swear to you, we shall act like powerful men who know their enemies. +Go, my son—go, my dear Gérard, and by your obedience to my paternal +orders, or, if you prefer it, friendly counsels, we will keep you in +your place. This will be,” added Noirtier, with a smile, “one means by +which you may a second time save me, if the political balance should +some day take another turn, and cast you aloft while hurling me down. +Adieu, my dear Gérard, and at your next journey alight at my door.” + +Noirtier left the room when he had finished, with the same calmness +that had characterized him during the whole of this remarkable and +trying conversation. Villefort, pale and agitated, ran to the window, +put aside the curtain, and saw him pass, cool and collected, by two or +three ill-looking men at the corner of the street, who were there, +perhaps, to arrest a man with black whiskers, and a blue frock-coat, +and hat with broad brim. + +Villefort stood watching, breathless, until his father had disappeared +at the Rue Bussy. Then he turned to the various articles he had left +behind him, put the black cravat and blue frock-coat at the bottom of +the portmanteau, threw the hat into a dark closet, broke the cane into +small bits and flung it in the fire, put on his travelling-cap, and +calling his valet, checked with a look the thousand questions he was +ready to ask, paid his bill, sprang into his carriage, which was ready, +learned at Lyons that Bonaparte had entered Grenoble, and in the midst +of the tumult which prevailed along the road, at length reached +Marseilles, a prey to all the hopes and fears which enter into the +heart of man with ambition and its first successes. + + + + Chapter 13. The Hundred Days + +M. Noirtier was a true prophet, and things progressed rapidly, as he +had predicted. Everyone knows the history of the famous return from +Elba, a return which was unprecedented in the past, and will probably +remain without a counterpart in the future. + +Louis XVIII. made but a faint attempt to parry this unexpected blow; +the monarchy he had scarcely reconstructed tottered on its precarious +foundation, and at a sign from the emperor the incongruous structure of +ancient prejudices and new ideas fell to the ground. Villefort, +therefore, gained nothing save the king’s gratitude (which was rather +likely to injure him at the present time) and the cross of the Legion +of Honor, which he had the prudence not to wear, although M. de Blacas +had duly forwarded the brevet. + +Napoleon would, doubtless, have deprived Villefort of his office had it +not been for Noirtier, who was all powerful at court, and thus the +Girondin of ’93 and the Senator of 1806 protected him who so lately had +been his protector. All Villefort’s influence barely enabled him to +stifle the secret Dantès had so nearly divulged. The king’s procureur +alone was deprived of his office, being suspected of royalism. + +However, scarcely was the imperial power established—that is, scarcely +had the emperor re-entered the Tuileries and begun to issue orders from +the closet into which we have introduced our readers,—he found on the +table there Louis XVIII.’s half-filled snuff-box,—scarcely had this +occurred when Marseilles began, in spite of the authorities, to +rekindle the flames of civil war, always smouldering in the south, and +it required but little to excite the populace to acts of far greater +violence than the shouts and insults with which they assailed the +royalists whenever they ventured abroad. + +0159m + + + +Owing to this change, the worthy shipowner became at that moment—we +will not say all powerful, because Morrel was a prudent and rather a +timid man, so much so, that many of the most zealous partisans of +Bonaparte accused him of “moderation”—but sufficiently influential to +make a demand in favor of Dantès. + +Villefort retained his place, but his marriage was put off until a more +favorable opportunity. If the emperor remained on the throne, Gérard +required a different alliance to aid his career; if Louis XVIII. +returned, the influence of M. de Saint-Méran, like his own, could be +vastly increased, and the marriage be still more suitable. The deputy +procureur was, therefore, the first magistrate of Marseilles, when one +morning his door opened, and M. Morrel was announced. + +Anyone else would have hastened to receive him; but Villefort was a man +of ability, and he knew this would be a sign of weakness. He made +Morrel wait in the antechamber, although he had no one with him, for +the simple reason that the king’s procureur always makes everyone wait, +and after passing a quarter of an hour in reading the papers, he +ordered M. Morrel to be admitted. + +Morrel expected Villefort would be dejected; he found him as he had +found him six weeks before, calm, firm, and full of that glacial +politeness, that most insurmountable barrier which separates the +well-bred from the vulgar man. + +He had entered Villefort’s office expecting that the magistrate would +tremble at the sight of him; on the contrary, he felt a cold shudder +all over him when he saw Villefort sitting there with his elbow on his +desk, and his head leaning on his hand. He stopped at the door; +Villefort gazed at him as if he had some difficulty in recognizing him; +then, after a brief interval, during which the honest shipowner turned +his hat in his hands, + +“M. Morrel, I believe?” said Villefort. + +“Yes, sir.” + +“Come nearer,” said the magistrate, with a patronizing wave of the +hand, “and tell me to what circumstance I owe the honor of this visit.” + +“Do you not guess, monsieur?” asked Morrel. + +“Not in the least; but if I can serve you in any way I shall be +delighted.” + +“Everything depends on you.” + +“Explain yourself, pray.” + +“Monsieur,” said Morrel, recovering his assurance as he proceeded, “do +you recollect that a few days before the landing of his majesty the +emperor, I came to intercede for a young man, the mate of my ship, who +was accused of being concerned in correspondence with the Island of +Elba? What was the other day a crime is today a title to favor. You +then served Louis XVIII., and you did not show any favor—it was your +duty; today you serve Napoleon, and you ought to protect him—it is +equally your duty; I come, therefore, to ask what has become of him?” + +0161m + + + +Villefort by a strong effort sought to control himself. “What is his +name?” said he. “Tell me his name.” + +“Edmond Dantès.” + +Villefort would probably have rather stood opposite the muzzle of a +pistol at five-and-twenty paces than have heard this name spoken; but +he did not blanch. + +“Dantès,” repeated he, “Edmond Dantès.” + +“Yes, monsieur.” Villefort opened a large register, then went to a +table, from the table turned to his registers, and then, turning to +Morrel, + +“Are you quite sure you are not mistaken, monsieur?” said he, in the +most natural tone in the world. + +Had Morrel been a more quick-sighted man, or better versed in these +matters, he would have been surprised at the king’s procureur answering +him on such a subject, instead of referring him to the governors of the +prison or the prefect of the department. But Morrel, disappointed in +his expectations of exciting fear, was conscious only of the other’s +condescension. Villefort had calculated rightly. + +“No,” said Morrel; “I am not mistaken. I have known him for ten years, +the last four of which he was in my service. Do not you recollect, I +came about six weeks ago to plead for clemency, as I come today to +plead for justice. You received me very coldly. Oh, the royalists were +very severe with the Bonapartists in those days.” + +“Monsieur,” returned Villefort, “I was then a royalist, because I +believed the Bourbons not only the heirs to the throne, but the chosen +of the nation. The miraculous return of Napoleon has conquered me, the +legitimate monarch is he who is loved by his people.” + +“That’s right!” cried Morrel. “I like to hear you speak thus, and I +augur well for Edmond from it.” + +“Wait a moment,” said Villefort, turning over the leaves of a register; +“I have it—a sailor, who was about to marry a young Catalan girl. I +recollect now; it was a very serious charge.” + +“How so?” + +“You know that when he left here he was taken to the Palais de +Justice.” + +“Well?” + +“I made my report to the authorities at Paris, and a week after he was +carried off.” + +“Carried off!” said Morrel. “What can they have done with him?” + +“Oh, he has been taken to Fenestrelles, to Pignerol, or to the +Sainte-Marguérite islands. Some fine morning he will return to take +command of your vessel.” + +“Come when he will, it shall be kept for him. But how is it he is not +already returned? It seems to me the first care of government should be +to set at liberty those who have suffered for their adherence to it.” + +“Do not be too hasty, M. Morrel,” replied Villefort. “The order of +imprisonment came from high authority, and the order for his liberation +must proceed from the same source; and, as Napoleon has scarcely been +reinstated a fortnight, the letters have not yet been forwarded.” + +“But,” said Morrel, “is there no way of expediting all these +formalities—of releasing him from arrest?” + +“There has been no arrest.” + +“How?” + +“It is sometimes essential to government to cause a man’s disappearance +without leaving any traces, so that no written forms or documents may +defeat their wishes.” + +“It might be so under the Bourbons, but at present——” + +“It has always been so, my dear Morrel, since the reign of Louis XIV. +The emperor is more strict in prison discipline than even Louis +himself, and the number of prisoners whose names are not on the +register is incalculable.” Had Morrel even any suspicions, so much +kindness would have dispelled them. + +“Well, M. de Villefort, how would you advise me to act?” asked he. + +“Petition the minister.” + +“Oh, I know what that is; the minister receives two hundred petitions +every day, and does not read three.” + +“That is true; but he will read a petition countersigned and presented +by me.” + +“And will you undertake to deliver it?” + +“With the greatest pleasure. Dantès was then guilty, and now he is +innocent, and it is as much my duty to free him as it was to condemn +him.” Villefort thus forestalled any danger of an inquiry, which, +however improbable it might be, if it did take place would leave him +defenceless. + +“But how shall I address the minister?” + +“Sit down there,” said Villefort, giving up his place to Morrel, “and +write what I dictate.” + +“Will you be so good?” + +“Certainly. But lose no time; we have lost too much already.” + +“That is true. Only think what the poor fellow may even now be +suffering.” + +Villefort shuddered at the suggestion; but he had gone too far to draw +back. Dantès must be crushed to gratify Villefort’s ambition. + +Villefort dictated a petition, in which, from an excellent intention, +no doubt, Dantès’ patriotic services were exaggerated, and he was made +out one of the most active agents of Napoleon’s return. It was evident +that at the sight of this document the minister would instantly release +him. The petition finished, Villefort read it aloud. + +“That will do,” said he; “leave the rest to me.” + +“Will the petition go soon?” + +“Today.” + +“Countersigned by you?” + +“The best thing I can do will be to certify the truth of the contents +of your petition.” And, sitting down, Villefort wrote the certificate +at the bottom. + +“What more is to be done?” + +“I will do whatever is necessary.” This assurance delighted Morrel, who +took leave of Villefort, and hastened to announce to old Dantès that he +would soon see his son. + +As for Villefort, instead of sending to Paris, he carefully preserved +the petition that so fearfully compromised Dantès, in the hopes of an +event that seemed not unlikely,—that is, a second restoration. Dantès +remained a prisoner, and heard not the noise of the fall of Louis +XVIII.’s throne, or the still more tragic destruction of the empire. + +Twice during the Hundred Days had Morrel renewed his demand, and twice +had Villefort soothed him with promises. At last there was Waterloo, +and Morrel came no more; he had done all that was in his power, and any +fresh attempt would only compromise himself uselessly. + +Louis XVIII. remounted the throne; Villefort, to whom Marseilles had +become filled with remorseful memories, sought and obtained the +situation of king’s procureur at Toulouse, and a fortnight afterwards +he married Mademoiselle de Saint-Méran, whose father now stood higher +at court than ever. + +And so Dantès, after the Hundred Days and after Waterloo, remained in +his dungeon, forgotten of earth and heaven. + +Danglars comprehended the full extent of the wretched fate that +overwhelmed Dantès; and, when Napoleon returned to France, he, after +the manner of mediocre minds, termed the coincidence, _a decree of +Providence_. But when Napoleon returned to Paris, Danglars’ heart +failed him, and he lived in constant fear of Dantès’ return on a +mission of vengeance. He therefore informed M. Morrel of his wish to +quit the sea, and obtained a recommendation from him to a Spanish +merchant, into whose service he entered at the end of March, that is, +ten or twelve days after Napoleon’s return. He then left for Madrid, +and was no more heard of. + +Fernand understood nothing except that Dantès was absent. What had +become of him he cared not to inquire. Only, during the respite the +absence of his rival afforded him, he reflected, partly on the means of +deceiving Mercédès as to the cause of his absence, partly on plans of +emigration and abduction, as from time to time he sat sad and +motionless on the summit of Cape Pharo, at the spot from whence +Marseilles and the Catalans are visible, watching for the apparition of +a young and handsome man, who was for him also the messenger of +vengeance. Fernand’s mind was made up; he would shoot Dantès, and then +kill himself. But Fernand was mistaken; a man of his disposition never +kills himself, for he constantly hopes. + +During this time the empire made its last conscription, and every man +in France capable of bearing arms rushed to obey the summons of the +emperor. Fernand departed with the rest, bearing with him the terrible +thought that while he was away, his rival would perhaps return and +marry Mercédès. Had Fernand really meant to kill himself, he would have +done so when he parted from Mercédès. His devotion, and the compassion +he showed for her misfortunes, produced the effect they always produce +on noble minds—Mercédès had always had a sincere regard for Fernand, +and this was now strengthened by gratitude. + +“My brother,” said she, as she placed his knapsack on his shoulders, +“be careful of yourself, for if you are killed, I shall be alone in the +world.” These words carried a ray of hope into Fernand’s heart. Should +Dantès not return, Mercédès might one day be his. + +0165m + + + +Mercédès was left alone face to face with the vast plain that had never +seemed so barren, and the sea that had never seemed so vast. Bathed in +tears she wandered about the Catalan village. Sometimes she stood mute +and motionless as a statue, looking towards Marseilles, at other times +gazing on the sea, and debating as to whether it were not better to +cast herself into the abyss of the ocean, and thus end her woes. It was +not want of courage that prevented her putting this resolution into +execution; but her religious feelings came to her aid and saved her. + +Caderousse was, like Fernand, enrolled in the army, but, being married +and eight years older, he was merely sent to the frontier. Old Dantès, +who was only sustained by hope, lost all hope at Napoleon’s downfall. +Five months after he had been separated from his son, and almost at the +hour of his arrest, he breathed his last in Mercédès’ arms. M. Morrel +paid the expenses of his funeral, and a few small debts the poor old +man had contracted. + +There was more than benevolence in this action; there was courage; the +south was aflame, and to assist, even on his death-bed, the father of +so dangerous a Bonapartist as Dantès, was stigmatized as a crime. + + + + Chapter 14. The Two Prisoners + +A year after Louis XVIII.’s restoration, a visit was made by the +inspector-general of prisons. Dantès in his cell heard the noise of +preparation,—sounds that at the depth where he lay would have been +inaudible to any but the ear of a prisoner, who could hear the splash +of the drop of water that every hour fell from the roof of his dungeon. +He guessed something uncommon was passing among the living; but he had +so long ceased to have any intercourse with the world, that he looked +upon himself as dead. + +The inspector visited, one after another, the cells and dungeons of +several of the prisoners, whose good behavior or stupidity recommended +them to the clemency of the government. He inquired how they were fed, +and if they had any request to make. The universal response was, that +the fare was detestable, and that they wanted to be set free. + +The inspector asked if they had anything else to ask for. They shook +their heads. What could they desire beyond their liberty? The inspector +turned smilingly to the governor. + +“I do not know what reason government can assign for these useless +visits; when you see one prisoner, you see all,—always the same +thing,—ill fed and innocent. Are there any others?” + +“Yes; the dangerous and mad prisoners are in the dungeons.” + +“Let us visit them,” said the inspector with an air of fatigue. “We +must play the farce to the end. Let us see the dungeons.” + +“Let us first send for two soldiers,” said the governor. “The prisoners +sometimes, through mere uneasiness of life, and in order to be +sentenced to death, commit acts of useless violence, and you might fall +a victim.” + +“Take all needful precautions,” replied the inspector. + +Two soldiers were accordingly sent for, and the inspector descended a +stairway, so foul, so humid, so dark, as to be loathsome to sight, +smell, and respiration. + +“Oh,” cried the inspector, “who can live here?” + +“A most dangerous conspirator, a man we are ordered to keep the most +strict watch over, as he is daring and resolute.” + +“He is alone?” + +“Certainly.” + +“How long has he been there?” + +“Nearly a year.” + +“Was he placed here when he first arrived?” + +“No; not until he attempted to kill the turnkey, who took his food to +him.” + +“To kill the turnkey?” + +“Yes, the very one who is lighting us. Is it not true, Antoine?” asked +the governor. + +“True enough; he wanted to kill me!” returned the turnkey. + +“He must be mad,” said the inspector. + +“He is worse than that,—he is a devil!” returned the turnkey. + +“Shall I complain of him?” demanded the inspector. + +“Oh, no; it is useless. Besides, he is almost mad now, and in another +year he will be quite so.” + +“So much the better for him,—he will suffer less,” said the inspector. +He was, as this remark shows, a man full of philanthropy, and in every +way fit for his office. + +“You are right, sir,” replied the governor; “and this remark proves +that you have deeply considered the subject. Now we have in a dungeon +about twenty feet distant, and to which you descend by another stair, +an old abbé, formerly leader of a party in Italy, who has been here +since 1811, and in 1813 he went mad, and the change is astonishing. He +used to weep, he now laughs; he grew thin, he now grows fat. You had +better see him, for his madness is amusing.” + +“I will see them both,” returned the inspector; “I must conscientiously +perform my duty.” + +This was the inspector’s first visit; he wished to display his +authority. + +“Let us visit this one first,” added he. + +“By all means,” replied the governor, and he signed to the turnkey to +open the door. At the sound of the key turning in the lock, and the +creaking of the hinges, Dantès, who was crouched in a corner of the +dungeon, whence he could see the ray of light that came through a +narrow iron grating above, raised his head. Seeing a stranger, escorted +by two turnkeys holding torches and accompanied by two soldiers, and to +whom the governor spoke bareheaded, Dantès, who guessed the truth, and +that the moment to address himself to the superior authorities was +come, sprang forward with clasped hands. + +The soldiers interposed their bayonets, for they thought that he was +about to attack the inspector, and the latter recoiled two or three +steps. Dantès saw that he was looked upon as dangerous. Then, infusing +all the humility he possessed into his eyes and voice, he addressed the +inspector, and sought to inspire him with pity. + +The inspector listened attentively; then, turning to the governor, +observed, “He will become religious—he is already more gentle; he is +afraid, and retreated before the bayonets—madmen are not afraid of +anything; I made some curious observations on this at Charenton.” Then, +turning to the prisoner, “What is it you want?” said he. + +“I want to know what crime I have committed—to be tried; and if I am +guilty, to be shot; if innocent, to be set at liberty.” + +“Are you well fed?” said the inspector. + +“I believe so; I don’t know; it’s of no consequence. What matters +really, not only to me, but to officers of justice and the king, is +that an innocent man should languish in prison, the victim of an +infamous denunciation, to die here cursing his executioners.” + +“You are very humble today,” remarked the governor; “you are not so +always; the other day, for instance, when you tried to kill the +turnkey.” + +“It is true, sir, and I beg his pardon, for he has always been very +good to me, but I was mad.” + +“And you are not so any longer?” + +“No; captivity has subdued me—I have been here so long.” + +“So long?—when were you arrested, then?” asked the inspector. + +“The 28th of February, 1815, at half-past two in the afternoon.” + +“Today is the 30th of July, 1816,—why, it is but seventeen months.” + +“Only seventeen months,” replied Dantès. “Oh, you do not know what is +seventeen months in prison!—seventeen ages rather, especially to a man +who, like me, had arrived at the summit of his ambition—to a man, who, +like me, was on the point of marrying a woman he adored, who saw an +honorable career opened before him, and who loses all in an instant—who +sees his prospects destroyed, and is ignorant of the fate of his +affianced wife, and whether his aged father be still living! Seventeen +months’ captivity to a sailor accustomed to the boundless ocean, is a +worse punishment than human crime ever merited. Have pity on me, then, +and ask for me, not intelligence, but a trial; not pardon, but a +verdict—a trial, sir, I ask only for a trial; that, surely, cannot be +denied to one who is accused!” + +“We shall see,” said the inspector; then, turning to the governor, “On +my word, the poor devil touches me. You must show me the proofs against +him.” + +“Certainly; but you will find terrible charges.” + +“Monsieur,” continued Dantès, “I know it is not in your power to +release me; but you can plead for me—you can have me tried—and that is +all I ask. Let me know my crime, and the reason why I was condemned. +Uncertainty is worse than all.” + +“Go on with the lights,” said the inspector. + +“Monsieur,” cried Dantès, “I can tell by your voice you are touched +with pity; tell me at least to hope.” + +“I cannot tell you that,” replied the inspector; “I can only promise to +examine into your case.” + +“Oh, I am free—then I am saved!” + +“Who arrested you?” + +“M. Villefort. See him, and hear what he says.” + +“M. Villefort is no longer at Marseilles; he is now at Toulouse.” + +“I am no longer surprised at my detention,” murmured Dantès, “since my +only protector is removed.” + +“Had M. de Villefort any cause of personal dislike to you?” + +“None; on the contrary, he was very kind to me.” + +“I can, then, rely on the notes he has left concerning you?” + +“Entirely.” + +“That is well; wait patiently, then.” + +Dantès fell on his knees, and prayed earnestly. The door closed; but +this time a fresh inmate was left with Dantès—Hope. + +0173m + + + +“Will you see the register at once,” asked the governor, “or proceed to +the other cell?” + +“Let us visit them all,” said the inspector. “If I once went up those +stairs. I should never have the courage to come down again.” + +“Ah, this one is not like the other, and his madness is less affecting +than this one’s display of reason.” + +“What is his folly?” + +“He fancies he possesses an immense treasure. The first year he offered +government a million of francs for his release; the second, two; the +third, three; and so on progressively. He is now in his fifth year of +captivity; he will ask to speak to you in private, and offer you five +millions.” + +“How curious!—what is his name?” + +“The Abbé Faria.” + +“No. 27,” said the inspector. + +“It is here; unlock the door, Antoine.” + +The turnkey obeyed, and the inspector gazed curiously into the chamber +of the _mad abbé_, as the prisoner was usually called. + +In the centre of the cell, in a circle traced with a fragment of +plaster detached from the wall, sat a man whose tattered garments +scarcely covered him. He was drawing in this circle geometrical lines, +and seemed as much absorbed in his problem as Archimedes was when the +soldier of Marcellus slew him. He did not move at the sound of the +door, and continued his calculations until the flash of the torches +lighted up with an unwonted glare the sombre walls of his cell; then, +raising his head, he perceived with astonishment the number of persons +present. He hastily seized the coverlet of his bed, and wrapped it +round him. + +“What is it you want?” said the inspector. + +“I, monsieur,” replied the abbé with an air of surprise,—“I want +nothing.” + +“You do not understand,” continued the inspector; “I am sent here by +government to visit the prison, and hear the requests of the +prisoners.” + +“Oh, that is different,” cried the abbé; “and we shall understand each +other, I hope.” + +“There, now,” whispered the governor, “it is just as I told you.” + +“Monsieur,” continued the prisoner, “I am the Abbé Faria, born at Rome. +I was for twenty years Cardinal Spada’s secretary; I was arrested, why, +I know not, toward the beginning of the year 1811; since then I have +demanded my liberty from the Italian and French government.” + +“Why from the French government?” + +“Because I was arrested at Piombino, and I presume that, like Milan and +Florence, Piombino has become the capital of some French department.” + +“Ah,” said the inspector, “you have not the latest news from Italy?” + +“My information dates from the day on which I was arrested,” returned +the Abbé Faria; “and as the emperor had created the kingdom of Rome for +his infant son, I presume that he has realized the dream of Machiavelli +and Cæsar Borgia, which was to make Italy a united kingdom.” + +“Monsieur,” returned the inspector, “Providence has changed this +gigantic plan you advocate so warmly.” + +“It is the only means of rendering Italy strong, happy, and +independent.” + +“Very possibly; only I am not come to discuss politics, but to inquire +if you have anything to ask or to complain of.” + +“The food is the same as in other prisons,—that is, very bad; the +lodging is very unhealthful, but, on the whole, passable for a dungeon; +but it is not that which I wish to speak of, but a secret I have to +reveal of the greatest importance.” + +“We are coming to the point,” whispered the governor. + +“It is for that reason I am delighted to see you,” continued the abbé, +“although you have disturbed me in a most important calculation, which, +if it succeeded, would possibly change Newton’s system. Could you allow +me a few words in private.” + +“What did I tell you?” said the governor. + +“You knew him,” returned the inspector with a smile. + +“What you ask is impossible, monsieur,” continued he, addressing Faria. + +0175m + + + +“But,” said the abbé, “I would speak to you of a large sum, amounting +to five millions.” + +“The very sum you named,” whispered the inspector in his turn. + +“However,” continued Faria, seeing that the inspector was about to +depart, “it is not absolutely necessary for us to be alone; the +governor can be present.” + +“Unfortunately,” said the governor, “I know beforehand what you are +about to say; it concerns your treasures, does it not?” Faria fixed his +eyes on him with an expression that would have convinced anyone else of +his sanity. + +“Of course,” said he; “of what else should I speak?” + +“Mr. Inspector,” continued the governor, “I can tell you the story as +well as he, for it has been dinned in my ears for the last four or five +years.” + +“That proves,” returned the abbé, “that you are like those of Holy +Writ, who having eyes see not, and having ears hear not.” + +“My dear sir, the government is rich and does not want your treasures,” +replied the inspector; “keep them until you are liberated.” The abbé’s +eyes glistened; he seized the inspector’s hand. + +“But what if I am not liberated,” cried he, “and am detained here until +my death? this treasure will be lost. Had not government better profit +by it? I will offer six millions, and I will content myself with the +rest, if they will only give me my liberty.” + +“On my word,” said the inspector in a low tone, “had I not been told +beforehand that this man was mad, I should believe what he says.” + +“I am not mad,” replied Faria, with that acuteness of hearing peculiar +to prisoners. “The treasure I speak of really exists, and I offer to +sign an agreement with you, in which I promise to lead you to the spot +where you shall dig; and if I deceive you, bring me here again,—I ask +no more.” + +The governor laughed. “Is the spot far from here?” + +“A hundred leagues.” + +“It is not ill-planned,” said the governor. “If all the prisoners took +it into their heads to travel a hundred leagues, and their guardians +consented to accompany them, they would have a capital chance of +escaping.” + +“The scheme is well known,” said the inspector; “and the abbé’s plan +has not even the merit of originality.” + +Then turning to Faria, “I inquired if you are well fed?” said he. + +“Swear to me,” replied Faria, “to free me if what I tell you prove +true, and I will stay here while you go to the spot.” + +“Are you well fed?” repeated the inspector. + +“Monsieur, you run no risk, for, as I told you, I will stay here; so +there is no chance of my escaping.” + +“You do not reply to my question,” replied the inspector impatiently. + +“Nor you to mine,” cried the abbé. “You will not accept my gold; I will +keep it for myself. You refuse me my liberty; God will give it me.” And +the abbé, casting away his coverlet, resumed his place, and continued +his calculations. + +0177m + + + +“What is he doing there?” said the inspector. + +“Counting his treasures,” replied the governor. + +Faria replied to this sarcasm with a glance of profound contempt. They +went out. The turnkey closed the door behind them. + +“He was wealthy once, perhaps?” said the inspector. + +“Or dreamed he was, and awoke mad.” + +“After all,” said the inspector, “if he had been rich, he would not +have been here.” + +So the matter ended for the Abbé Faria. He remained in his cell, and +this visit only increased the belief in his insanity. + +Caligula or Nero, those treasure-seekers, those desirers of the +impossible, would have accorded to the poor wretch, in exchange for his +wealth, the liberty he so earnestly prayed for. But the kings of modern +times, restrained by the limits of mere probability, have neither +courage nor desire. They fear the ear that hears their orders, and the +eye that scrutinizes their actions. Formerly they believed themselves +sprung from Jupiter, and shielded by their birth; but nowadays they are +not inviolable. + +It has always been against the policy of despotic governments to suffer +the victims of their persecutions to reappear. As the Inquisition +rarely allowed its victims to be seen with their limbs distorted and +their flesh lacerated by torture, so madness is always concealed in its +cell, from whence, should it depart, it is conveyed to some gloomy +hospital, where the doctor has no thought for man or mind in the +mutilated being the jailer delivers to him. The very madness of the +Abbé Faria, gone mad in prison, condemned him to perpetual captivity. + +The inspector kept his word with Dantès; he examined the register, and +found the following note concerning him: + +_Edmond Dantès:_ + +Violent Bonapartist; took an active part in the return from Elba. + +The greatest watchfulness and care to be exercised. + +This note was in a different hand from the rest, which showed that it +had been added since his confinement. The inspector could not contend +against this accusation; he simply wrote, _Nothing to be done._ + +This visit had infused new vigor into Dantès; he had, till then, +forgotten the date; but now, with a fragment of plaster, he wrote the +date, 30th July, 1816, and made a mark every day, in order not to lose +his reckoning again. Days and weeks passed away, then months—Dantès +still waited; he at first expected to be freed in a fortnight. This +fortnight expired, he decided that the inspector would do nothing until +his return to Paris, and that he would not reach there until his +circuit was finished, he therefore fixed three months; three months +passed away, then six more. Finally ten months and a half had gone by +and no favorable change had taken place, and Dantès began to fancy the +inspector’s visit but a dream, an illusion of the brain. + +At the expiration of a year the governor was transferred; he had +obtained charge of the fortress at Ham. He took with him several of his +subordinates, and amongst them Dantès’ jailer. A new governor arrived; +it would have been too tedious to acquire the names of the prisoners; +he learned their numbers instead. This horrible place contained fifty +cells; their inhabitants were designated by the numbers of their cell, +and the unhappy young man was no longer called Edmond Dantès—he was now +number 34. + + + + Chapter 15. Number 34 and Number 27 + +Dantès passed through all the stages of torture natural to prisoners in +suspense. He was sustained at first by that pride of conscious +innocence which is the sequence to hope; then he began to doubt his own +innocence, which justified in some measure the governor’s belief in his +mental alienation; and then, relaxing his sentiment of pride, he +addressed his supplications, not to God, but to man. God is always the +last resource. Unfortunates, who ought to begin with God, do not have +any hope in him till they have exhausted all other means of +deliverance. + +Dantès asked to be removed from his present dungeon into another, even +if it were darker and deeper, for a change, however disadvantageous, +was still a change, and would afford him some amusement. He entreated +to be allowed to walk about, to have fresh air, books, and writing +materials. His requests were not granted, but he went on asking all the +same. He accustomed himself to speaking to the new jailer, although the +latter was, if possible, more taciturn than the old one; but still, to +speak to a man, even though mute, was something. Dantès spoke for the +sake of hearing his own voice; he had tried to speak when alone, but +the sound of his voice terrified him. + +Often, before his captivity, Dantès’ mind had revolted at the idea of +assemblages of prisoners, made up of thieves, vagabonds, and murderers. +He now wished to be amongst them, in order to see some other face +besides that of his jailer; he sighed for the galleys, with the +infamous costume, the chain, and the brand on the shoulder. The +galley-slaves breathed the fresh air of heaven, and saw each other. +They were very happy. + +He besought the jailer one day to let him have a companion, were it +even the mad abbé. The jailer, though rough and hardened by the +constant sight of so much suffering, was yet a man. At the bottom of +his heart he had often had a feeling of pity for this unhappy young man +who suffered so; and he laid the request of number 34 before the +governor; but the latter sapiently imagined that Dantès wished to +conspire or attempt an escape, and refused his request. Dantès had +exhausted all human resources, and he then turned to God. + +All the pious ideas that had been so long forgotten, returned; he +recollected the prayers his mother had taught him, and discovered a new +meaning in every word; for in prosperity prayers seem but a mere medley +of words, until misfortune comes and the unhappy sufferer first +understands the meaning of the sublime language in which he invokes the +pity of heaven! He prayed, and prayed aloud, no longer terrified at the +sound of his own voice, for he fell into a sort of ecstasy. He laid +every action of his life before the Almighty, proposed tasks to +accomplish, and at the end of every prayer introduced the entreaty +oftener addressed to man than to God: “Forgive us our trespasses as we +forgive them that trespass against us.” Yet in spite of his earnest +prayers, Dantès remained a prisoner. + +Then gloom settled heavily upon him. Dantès was a man of great +simplicity of thought, and without education; he could not, therefore, +in the solitude of his dungeon, traverse in mental vision the history +of the ages, bring to life the nations that had perished, and rebuild +the ancient cities so vast and stupendous in the light of the +imagination, and that pass before the eye glowing with celestial colors +in Martin’s Babylonian pictures. He could not do this, he whose past +life was so short, whose present so melancholy, and his future so +doubtful. Nineteen years of light to reflect upon in eternal darkness! +No distraction could come to his aid; his energetic spirit, that would +have exalted in thus revisiting the past, was imprisoned like an eagle +in a cage. He clung to one idea—that of his happiness, destroyed, +without apparent cause, by an unheard-of fatality; he considered and +reconsidered this idea, devoured it (so to speak), as the implacable +Ugolino devours the skull of Archbishop Roger in the Inferno of Dante. + +Rage supplanted religious fervor. Dantès uttered blasphemies that made +his jailer recoil with horror, dashed himself furiously against the +walls of his prison, wreaked his anger upon everything, and chiefly +upon himself, so that the least thing,—a grain of sand, a straw, or a +breath of air that annoyed him, led to paroxysms of fury. Then the +letter that Villefort had showed to him recurred to his mind, and every +line gleamed forth in fiery letters on the wall like the _mene, mene, +tekel upharsin_ of Belshazzar. He told himself that it was the enmity +of man, and not the vengeance of Heaven, that had thus plunged him into +the deepest misery. He consigned his unknown persecutors to the most +horrible tortures he could imagine, and found them all insufficient, +because after torture came death, and after death, if not repose, at +least the boon of unconsciousness. + +By dint of constantly dwelling on the idea that tranquillity was death, +and if punishment were the end in view other tortures than death must +be invented, he began to reflect on suicide. Unhappy he, who, on the +brink of misfortune, broods over ideas like these! + +Before him is a dead sea that stretches in azure calm before the eye; +but he who unwarily ventures within its embrace finds himself +struggling with a monster that would drag him down to perdition. Once +thus ensnared, unless the protecting hand of God snatch him thence, all +is over, and his struggles but tend to hasten his destruction. This +state of mental anguish is, however, less terrible than the sufferings +that precede or the punishment that possibly will follow. There is a +sort of consolation at the contemplation of the yawning abyss, at the +bottom of which lie darkness and obscurity. + +Edmond found some solace in these ideas. All his sorrows, all his +sufferings, with their train of gloomy spectres, fled from his cell +when the angel of death seemed about to enter. Dantès reviewed his past +life with composure, and, looking forward with terror to his future +existence, chose that middle line that seemed to afford him a refuge. + +“Sometimes,” said he, “in my voyages, when I was a man and commanded +other men, I have seen the heavens overcast, the sea rage and foam, the +storm arise, and, like a monstrous bird, beating the two horizons with +its wings. Then I felt that my vessel was a vain refuge, that trembled +and shook before the tempest. Soon the fury of the waves and the sight +of the sharp rocks announced the approach of death, and death then +terrified me, and I used all my skill and intelligence as a man and a +sailor to struggle against the wrath of God. But I did so because I was +happy, because I had not courted death, because to be cast upon a bed +of rocks and seaweed seemed terrible, because I was unwilling that I, a +creature made for the service of God, should serve for food to the +gulls and ravens. But now it is different; I have lost all that bound +me to life, death smiles and invites me to repose; I die after my own +manner, I die exhausted and broken-spirited, as I fall asleep when I +have paced three thousand times round my cell,—that is thirty thousand +steps, or about ten leagues.” + +No sooner had this idea taken possession of him than he became more +composed, arranged his couch to the best of his power, ate little and +slept less, and found existence almost supportable, because he felt +that he could throw it off at pleasure, like a worn-out garment. Two +methods of self-destruction were at his disposal. He could hang himself +with his handkerchief to the window bars, or refuse food and die of +starvation. But the first was repugnant to him. Dantès had always +entertained the greatest horror of pirates, who are hung up to the +yard-arm; he would not die by what seemed an infamous death. He +resolved to adopt the second, and began that day to carry out his +resolve. + +0185m + + + +Nearly four years had passed away; at the end of the second he had +ceased to mark the lapse of time. Dantès said, “I wish to die,” and had +chosen the manner of his death, and fearful of changing his mind, he +had taken an oath to die. “When my morning and evening meals are +brought,” thought he, “I will cast them out of the window, and they +will think that I have eaten them.” + +He kept his word; twice a day he cast out, through the barred aperture, +the provisions his jailer brought him—at first gayly, then with +deliberation, and at last with regret. Nothing but the recollection of +his oath gave him strength to proceed. Hunger made viands once +repugnant, now acceptable; he held the plate in his hand for an hour at +a time, and gazed thoughtfully at the morsel of bad meat, of tainted +fish, of black and mouldy bread. It was the last yearning for life +contending with the resolution of despair; then his dungeon seemed less +sombre, his prospects less desperate. He was still young—he was only +four or five-and-twenty—he had nearly fifty years to live. What +unforseen events might not open his prison door, and restore him to +liberty? Then he raised to his lips the repast that, like a voluntary +Tantalus, he refused himself; but he thought of his oath, and he would +not break it. He persisted until, at last, he had not sufficient +strength to rise and cast his supper out of the loophole. The next +morning he could not see or hear; the jailer feared he was dangerously +ill. Edmond hoped he was dying. + +Thus the day passed away. Edmond felt a sort of stupor creeping over +him which brought with it a feeling almost of content; the gnawing pain +at his stomach had ceased; his thirst had abated; when he closed his +eyes he saw myriads of lights dancing before them like the +will-o’-the-wisps that play about the marshes. It was the twilight of +that mysterious country called Death! + +Suddenly, about nine o’clock in the evening, Edmond heard a hollow +sound in the wall against which he was lying. + +So many loathsome animals inhabited the prison, that their noise did +not, in general, awake him; but whether abstinence had quickened his +faculties, or whether the noise was really louder than usual, Edmond +raised his head and listened. It was a continual scratching, as if made +by a huge claw, a powerful tooth, or some iron instrument attacking the +stones. + +Although weakened, the young man’s brain instantly responded to the +idea that haunts all prisoners—liberty! It seemed to him that heaven +had at length taken pity on him, and had sent this noise to warn him on +the very brink of the abyss. Perhaps one of those beloved ones he had +so often thought of was thinking of him, and striving to diminish the +distance that separated them. + +No, no, doubtless he was deceived, and it was but one of those dreams +that forerun death! + +Edmond still heard the sound. It lasted nearly three hours; he then +heard a noise of something falling, and all was silent. + +Some hours afterwards it began again, nearer and more distinct. Edmond +was intensely interested. Suddenly the jailer entered. + +For a week since he had resolved to die, and during the four days that +he had been carrying out his purpose, Edmond had not spoken to the +attendant, had not answered him when he inquired what was the matter +with him, and turned his face to the wall when he looked too curiously +at him; but now the jailer might hear the noise and put an end to it, +and so destroy a ray of something like hope that soothed his last +moments. + +The jailer brought him his breakfast. Dantès raised himself up and +began to talk about everything; about the bad quality of the food, +about the coldness of his dungeon, grumbling and complaining, in order +to have an excuse for speaking louder, and wearying the patience of his +jailer, who out of kindness of heart had brought broth and white bread +for his prisoner. + +Fortunately, he fancied that Dantès was delirious; and placing the food +on the rickety table, he withdrew. Edmond listened, and the sound +became more and more distinct. + +“There can be no doubt about it,” thought he; “it is some prisoner who +is striving to obtain his freedom. Oh, if I were only there to help +him!” + +Suddenly another idea took possession of his mind, so used to +misfortune, that it was scarcely capable of hope—the idea that the +noise was made by workmen the governor had ordered to repair the +neighboring dungeon. + +It was easy to ascertain this; but how could he risk the question? It +was easy to call his jailer’s attention to the noise, and watch his +countenance as he listened; but might he not by this means destroy +hopes far more important than the short-lived satisfaction of his own +curiosity? Unfortunately, Edmond’s brain was still so feeble that he +could not bend his thoughts to anything in particular. He saw but one +means of restoring lucidity and clearness to his judgment. He turned +his eyes towards the soup which the jailer had brought, rose, staggered +towards it, raised the vessel to his lips, and drank off the contents +with a feeling of indescribable pleasure. + +He had the resolution to stop with this. He had often heard that +shipwrecked persons had died through having eagerly devoured too much +food. Edmond replaced on the table the bread he was about to devour, +and returned to his couch—he did not wish to die. He soon felt that his +ideas became again collected—he could think, and strengthen his +thoughts by reasoning. Then he said to himself: + +“I must put this to the test, but without compromising anybody. If it +is a workman, I need but knock against the wall, and he will cease to +work, in order to find out who is knocking, and why he does so; but as +his occupation is sanctioned by the governor, he will soon resume it. +If, on the contrary, it is a prisoner, the noise I make will alarm him, +he will cease, and not begin again until he thinks everyone is asleep.” + +Edmond rose again, but this time his legs did not tremble, and his +sight was clear; he went to a corner of his dungeon, detached a stone, +and with it knocked against the wall where the sound came. He struck +thrice. + +At the first blow the sound ceased, as if by magic. + +Edmond listened intently; an hour passed, two hours passed, and no +sound was heard from the wall—all was silent there. + +Full of hope, Edmond swallowed a few mouthfuls of bread and water, and, +thanks to the vigor of his constitution, found himself well-nigh +recovered. + +The day passed away in utter silence—night came without recurrence of +the noise. + +“It is a prisoner,” said Edmond joyfully. His brain was on fire, and +life and energy returned. + +The night passed in perfect silence. Edmond did not close his eyes. + +In the morning the jailer brought him fresh provisions—he had already +devoured those of the previous day; he ate these listening anxiously +for the sound, walking round and round his cell, shaking the iron bars +of the loophole, restoring vigor and agility to his limbs by exercise, +and so preparing himself for his future destiny. At intervals he +listened to learn if the noise had not begun again, and grew impatient +at the prudence of the prisoner, who did not guess he had been +disturbed by a captive as anxious for liberty as himself. + +Three days passed—seventy-two long tedious hours which he counted off +by minutes! + +At length one evening, as the jailer was visiting him for the last time +that night, Dantès, with his ear for the hundredth time at the wall, +fancied he heard an almost imperceptible movement among the stones. He +moved away, walked up and down his cell to collect his thoughts, and +then went back and listened. + +The matter was no longer doubtful. Something was at work on the other +side of the wall; the prisoner had discovered the danger, and had +substituted a lever for a chisel. + +Encouraged by this discovery, Edmond determined to assist the +indefatigable laborer. He began by moving his bed, and looked around +for anything with which he could pierce the wall, penetrate the moist +cement, and displace a stone. + +He saw nothing, he had no knife or sharp instrument, the window grating +was of iron, but he had too often assured himself of its solidity. All +his furniture consisted of a bed, a chair, a table, a pail, and a jug. +The bed had iron clamps, but they were screwed to the wood, and it +would have required a screw-driver to take them off. The table and +chair had nothing, the pail had once possessed a handle, but that had +been removed. + +0189m + + + +Dantès had but one resource, which was to break the jug, and with one +of the sharp fragments attack the wall. He let the jug fall on the +floor, and it broke in pieces. + +Dantès concealed two or three of the sharpest fragments in his bed, +leaving the rest on the floor. The breaking of his jug was too natural +an accident to excite suspicion. Edmond had all the night to work in, +but in the darkness he could not do much, and he soon felt that he was +working against something very hard; he pushed back his bed, and waited +for day. + +All night he heard the subterranean workman, who continued to mine his +way. Day came, the jailer entered. Dantès told him that the jug had +fallen from his hands while he was drinking, and the jailer went +grumblingly to fetch another, without giving himself the trouble to +remove the fragments of the broken one. He returned speedily, advised +the prisoner to be more careful, and departed. + +Dantès heard joyfully the key grate in the lock; he listened until the +sound of steps died away, and then, hastily displacing his bed, saw by +the faint light that penetrated into his cell, that he had labored +uselessly the previous evening in attacking the stone instead of +removing the plaster that surrounded it. + +The damp had rendered it friable, and Dantès was able to break it +off—in small morsels, it is true, but at the end of half an hour he had +scraped off a handful; a mathematician might have calculated that in +two years, supposing that the rock was not encountered, a passage +twenty feet long and two feet broad, might be formed. + +The prisoner reproached himself with not having thus employed the hours +he had passed in vain hopes, prayer, and despondency. During the six +years that he had been imprisoned, what might he not have accomplished? + +This idea imparted new energy, and in three days he had succeeded, with +the utmost precaution, in removing the cement, and exposing the +stone-work. The wall was built of rough stones, among which, to give +strength to the structure, blocks of hewn stone were at intervals +imbedded. It was one of these he had uncovered, and which he must +remove from its socket. + +Dantès strove to do this with his nails, but they were too weak. The +fragments of the jug broke, and after an hour of useless toil, Dantès +paused with anguish on his brow. + +Was he to be thus stopped at the beginning, and was he to wait inactive +until his fellow workman had completed his task? Suddenly an idea +occurred to him—he smiled, and the perspiration dried on his forehead. + +The jailer always brought Dantès’ soup in an iron saucepan; this +saucepan contained soup for both prisoners, for Dantès had noticed that +it was either quite full, or half empty, according as the turnkey gave +it to him or to his companion first. + +The handle of this saucepan was of iron; Dantès would have given ten +years of his life in exchange for it. + +0191m + + + +The jailer was accustomed to pour the contents of the saucepan into +Dantès’ plate, and Dantès, after eating his soup with a wooden spoon, +washed the plate, which thus served for every day. Now when evening +came Dantès put his plate on the ground near the door; the jailer, as +he entered, stepped on it and broke it. + +This time he could not blame Dantès. He was wrong to leave it there, +but the jailer was wrong not to have looked before him. The jailer, +therefore, only grumbled. Then he looked about for something to pour +the soup into; Dantès’ entire dinner service consisted of one +plate—there was no alternative. + +“Leave the saucepan,” said Dantès; “you can take it away when you bring +me my breakfast.” + +This advice was to the jailer’s taste, as it spared him the necessity +of making another trip. He left the saucepan. + +Dantès was beside himself with joy. He rapidly devoured his food, and +after waiting an hour, lest the jailer should change his mind and +return, he removed his bed, took the handle of the saucepan, inserted +the point between the hewn stone and rough stones of the wall, and +employed it as a lever. A slight oscillation showed Dantès that all +went well. At the end of an hour the stone was extricated from the +wall, leaving a cavity a foot and a half in diameter. + +Dantès carefully collected the plaster, carried it into the corner of +his cell, and covered it with earth. Then, wishing to make the best use +of his time while he had the means of labor, he continued to work +without ceasing. At the dawn of day he replaced the stone, pushed his +bed against the wall, and lay down. The breakfast consisted of a piece +of bread; the jailer entered and placed the bread on the table. + +“Well, don’t you intend to bring me another plate?” said Dantès. + +“No,” replied the turnkey; “you destroy everything. First you break +your jug, then you make me break your plate; if all the prisoners +followed your example, the government would be ruined. I shall leave +you the saucepan, and pour your soup into that. So for the future I +hope you will not be so destructive.” + +Dantès raised his eyes to heaven and clasped his hands beneath the +coverlet. He felt more gratitude for the possession of this piece of +iron than he had ever felt for anything. He had noticed, however, that +the prisoner on the other side had ceased to labor; no matter, this was +a greater reason for proceeding—if his neighbor would not come to him, +he would go to his neighbor. All day he toiled on untiringly, and by +the evening he had succeeded in extracting ten handfuls of plaster and +fragments of stone. When the hour for his jailer’s visit arrived, +Dantès straightened the handle of the saucepan as well as he could, and +placed it in its accustomed place. The turnkey poured his ration of +soup into it, together with the fish—for thrice a week the prisoners +were deprived of meat. This would have been a method of reckoning time, +had not Dantès long ceased to do so. Having poured out the soup, the +turnkey retired. + +Dantès wished to ascertain whether his neighbor had really ceased to +work. He listened—all was silent, as it had been for the last three +days. Dantès sighed; it was evident that his neighbor distrusted him. +However, he toiled on all the night without being discouraged; but +after two or three hours he encountered an obstacle. The iron made no +impression, but met with a smooth surface; Dantès touched it, and found +that it was a beam. This beam crossed, or rather blocked up, the hole +Dantès had made; it was necessary, therefore, to dig above or under it. +The unhappy young man had not thought of this. + +“Oh, my God, my God!” murmured he, “I have so earnestly prayed to you, +that I hoped my prayers had been heard. After having deprived me of my +liberty, after having deprived me of death, after having recalled me to +existence, my God, have pity on me, and do not let me die in despair!” + +0193m + + + +“Who talks of God and despair at the same time?” said a voice that +seemed to come from beneath the earth, and, deadened by the distance, +sounded hollow and sepulchral in the young man’s ears. Edmond’s hair +stood on end, and he rose to his knees. + +“Ah,” said he, “I hear a human voice.” Edmond had not heard anyone +speak save his jailer for four or five years; and a jailer is no man to +a prisoner—he is a living door, a barrier of flesh and blood adding +strength to restraints of oak and iron. + +“In the name of Heaven,” cried Dantès, “speak again, though the sound +of your voice terrifies me. Who are you?” + +“Who are you?” said the voice. + +“An unhappy prisoner,” replied Dantès, who made no hesitation in +answering. + +“Of what country?” + +“A Frenchman.” + +“Your name?” + +“Edmond Dantès.” + +“Your profession?” + +“A sailor.” + +“How long have you been here?” + +“Since the 28th of February, 1815.” + +“Your crime?” + +“I am innocent.” + +“But of what are you accused?” + +“Of having conspired to aid the emperor’s return.” + +“What! For the emperor’s return?—the emperor is no longer on the +throne, then?” + +“He abdicated at Fontainebleau in 1814, and was sent to the Island of +Elba. But how long have you been here that you are ignorant of all +this?” + +“Since 1811.” + +Dantès shuddered; this man had been four years longer than himself in +prison. + +“Do not dig any more,” said the voice; “only tell me how high up is +your excavation?” + +“On a level with the floor.” + +“How is it concealed?” + +“Behind my bed.” + +“Has your bed been moved since you have been a prisoner?” + +“No.” + +“What does your chamber open on?” + +“A corridor.” + +“And the corridor?” + +“On a court.” + +“Alas!” murmured the voice. + +“Oh, what is the matter?” cried Dantès. + +“I have made a mistake owing to an error in my plans. I took the wrong +angle, and have come out fifteen feet from where I intended. I took the +wall you are mining for the outer wall of the fortress.” + +“But then you would be close to the sea?” + +“That is what I hoped.” + +“And supposing you had succeeded?” + +“I should have thrown myself into the sea, gained one of the islands +near here—the Isle de Daume or the Isle de Tiboulen—and then I should +have been safe.” + +“Could you have swum so far?” + +“Heaven would have given me strength; but now all is lost.” + +“All?” + +“Yes; stop up your excavation carefully, do not work any more, and wait +until you hear from me.” + +“Tell me, at least, who you are?” + +“I am—I am No. 27.” + +“You mistrust me, then,” said Dantès. Edmond fancied he heard a bitter +laugh resounding from the depths. + +“Oh, I am a Christian,” cried Dantès, guessing instinctively that this +man meant to abandon him. “I swear to you by him who died for us that +naught shall induce me to breathe one syllable to my jailers; but I +conjure you do not abandon me. If you do, I swear to you, for I have +got to the end of my strength, that I will dash my brains out against +the wall, and you will have my death to reproach yourself with.” + +“How old are you? Your voice is that of a young man.” + +“I do not know my age, for I have not counted the years I have been +here. All I do know is, that I was just nineteen when I was arrested, +the 28th of February, 1815.” + +“Not quite twenty-six!” murmured the voice; “at that age he cannot be a +traitor.” + +“Oh, no, no,” cried Dantès. “I swear to you again, rather than betray +you, I would allow myself to be hacked in pieces!” + +“You have done well to speak to me, and ask for my assistance, for I +was about to form another plan, and leave you; but your age reassures +me. I will not forget you. Wait.” + +“How long?” + +“I must calculate our chances; I will give you the signal.” + +“But you will not leave me; you will come to me, or you will let me +come to you. We will escape, and if we cannot escape we will talk; you +of those whom you love, and I of those whom I love. You must love +somebody?” + +“No, I am alone in the world.” + +“Then you will love me. If you are young, I will be your comrade; if +you are old, I will be your son. I have a father who is seventy if he +yet lives; I only love him and a young girl called Mercédès. My father +has not yet forgotten me, I am sure, but God alone knows if she loves +me still; I shall love you as I loved my father.” + +“It is well,” returned the voice; “tomorrow.” + +These few words were uttered with an accent that left no doubt of his +sincerity; Dantès rose, dispersed the fragments with the same +precaution as before, and pushed his bed back against the wall. He then +gave himself up to his happiness. He would no longer be alone. He was, +perhaps, about to regain his liberty; at the worst, he would have a +companion, and captivity that is shared is but half captivity. Plaints +made in common are almost prayers, and prayers where two or three are +gathered together invoke the mercy of heaven. + +All day Dantès walked up and down his cell. He sat down occasionally on +his bed, pressing his hand on his heart. At the slightest noise he +bounded towards the door. Once or twice the thought crossed his mind +that he might be separated from this unknown, whom he loved already; +and then his mind was made up—when the jailer moved his bed and stooped +to examine the opening, he would kill him with his water jug. He would +be condemned to die, but he was about to die of grief and despair when +this miraculous noise recalled him to life. + +The jailer came in the evening. Dantès was on his bed. It seemed to him +that thus he better guarded the unfinished opening. Doubtless there was +a strange expression in his eyes, for the jailer said, “Come, are you +going mad again?” + +Dantès did not answer; he feared that the emotion of his voice would +betray him. The jailer went away shaking his head. Night came; Dantès +hoped that his neighbor would profit by the silence to address him, but +he was mistaken. The next morning, however, just as he removed his bed +from the wall, he heard three knocks; he threw himself on his knees. + +“Is it you?” said he; “I am here.” + +“Is your jailer gone?” + +“Yes,” said Dantès; “he will not return until the evening; so that we +have twelve hours before us.” + +“I can work, then?” said the voice. + +“Oh, yes, yes; this instant, I entreat you.” + +In a moment that part of the floor on which Dantès was resting his two +hands, as he knelt with his head in the opening, suddenly gave way; he +drew back smartly, while a mass of stones and earth disappeared in a +hole that opened beneath the aperture he himself had formed. Then from +the bottom of this passage, the depth of which it was impossible to +measure, he saw appear, first the head, then the shoulders, and lastly +the body of a man, who sprang lightly into his cell. + +0197m + + + + + Chapter 16. A Learned Italian + +Seizing in his arms the friend so long and ardently desired, Dantès +almost carried him towards the window, in order to obtain a better view +of his features by the aid of the imperfect light that struggled +through the grating. + +He was a man of small stature, with hair blanched rather by suffering +and sorrow than by age. He had a deep-set, penetrating eye, almost +buried beneath the thick gray eyebrow, and a long (and still black) +beard reaching down to his breast. His thin face, deeply furrowed by +care, and the bold outline of his strongly marked features, betokened a +man more accustomed to exercise his mental faculties than his physical +strength. Large drops of perspiration were now standing on his brow, +while the garments that hung about him were so ragged that one could +only guess at the pattern upon which they had originally been +fashioned. + +The stranger might have numbered sixty or sixty-five years; but a +certain briskness and appearance of vigor in his movements made it +probable that he was aged more from captivity than the course of time. +He received the enthusiastic greeting of his young acquaintance with +evident pleasure, as though his chilled affections were rekindled and +invigorated by his contact with one so warm and ardent. He thanked him +with grateful cordiality for his kindly welcome, although he must at +that moment have been suffering bitterly to find another dungeon where +he had fondly reckoned on discovering a means of regaining his liberty. + +“Let us first see,” said he, “whether it is possible to remove the +traces of my entrance here—our future tranquillity depends upon our +jailers being entirely ignorant of it.” + +Advancing to the opening, he stooped and raised the stone easily in +spite of its weight; then, fitting it into its place, he said: + +“You removed this stone very carelessly; but I suppose you had no tools +to aid you.” + +“Why,” exclaimed Dantès, with astonishment, “do you possess any?” + +“I made myself some; and with the exception of a file, I have all that +are necessary,—a chisel, pincers, and lever.” + +0201m + + + +“Oh, how I should like to see these products of your industry and +patience.” + +“Well, in the first place, here is my chisel.” + +So saying, he displayed a sharp strong blade, with a handle made of +beechwood. + +“And with what did you contrive to make that?” inquired Dantès. + +“With one of the clamps of my bedstead; and this very tool has sufficed +me to hollow out the road by which I came hither, a distance of about +fifty feet.” + +“Fifty feet!” responded Dantès, almost terrified. + +“Do not speak so loud, young man—don’t speak so loud. It frequently +occurs in a state prison like this, that persons are stationed outside +the doors of the cells purposely to overhear the conversation of the +prisoners.” + +“But they believe I am shut up alone here.” + +“That makes no difference.” + +“And you say that you dug your way a distance of fifty feet to get +here?” + +“I do; that is about the distance that separates your chamber from +mine; only, unfortunately, I did not curve aright; for want of the +necessary geometrical instruments to calculate my scale of proportion, +instead of taking an ellipsis of forty feet, I made it fifty. I +expected, as I told you, to reach the outer wall, pierce through it, +and throw myself into the sea; I have, however, kept along the corridor +on which your chamber opens, instead of going beneath it. My labor is +all in vain, for I find that the corridor looks into a courtyard filled +with soldiers.” + +“That’s true,” said Dantès; “but the corridor you speak of only bounds +_one_ side of my cell; there are three others—do you know anything of +their situation?” + +“This one is built against the solid rock, and it would take ten +experienced miners, duly furnished with the requisite tools, as many +years to perforate it. This adjoins the lower part of the governor’s +apartments, and were we to work our way through, we should only get +into some lock-up cellars, where we must necessarily be recaptured. The +fourth and last side of your cell faces on—faces on—stop a minute, now +where does it face?” + +The wall of which he spoke was the one in which was fixed the loophole +by which light was admitted to the chamber. This loophole, which +gradually diminished in size as it approached the outside, to an +opening through which a child could not have passed, was, for better +security, furnished with three iron bars, so as to quiet all +apprehensions even in the mind of the most suspicious jailer as to the +possibility of a prisoner’s escape. As the stranger asked the question, +he dragged the table beneath the window. + +“Climb up,” said he to Dantès. + +The young man obeyed, mounted on the table, and, divining the wishes of +his companion, placed his back securely against the wall and held out +both hands. The stranger, whom as yet Dantès knew only by the number of +his cell, sprang up with an agility by no means to be expected in a +person of his years, and, light and steady on his feet as a cat or a +lizard, climbed from the table to the outstretched hands of Dantès, and +from them to his shoulders; then, bending double, for the ceiling of +the dungeon prevented him from holding himself erect, he managed to +slip his head between the upper bars of the window, so as to be able to +command a perfect view from top to bottom. + +An instant afterwards he hastily drew back his head, saying, “I thought +so!” and sliding from the shoulders of Dantès as dextrously as he had +ascended, he nimbly leaped from the table to the ground. + +“What was it that you thought?” asked the young man anxiously, in his +turn descending from the table. + +The elder prisoner pondered the matter. “Yes,” said he at length, “it +is so. This side of your chamber looks out upon a kind of open gallery, +where patrols are continually passing, and sentries keep watch day and +night.” + +“Are you quite sure of that?” + +“Certain. I saw the soldier’s shape and the top of his musket; that +made me draw in my head so quickly, for I was fearful he might also see +me.” + +“Well?” inquired Dantès. + +“You perceive then the utter impossibility of escaping through your +dungeon?” + +“Then——” pursued the young man eagerly. + +“Then,” answered the elder prisoner, “the will of God be done!” And as +the old man slowly pronounced those words, an air of profound +resignation spread itself over his careworn countenance. Dantès gazed +on the man who could thus philosophically resign hopes so long and +ardently nourished with an astonishment mingled with admiration. + +“Tell me, I entreat of you, who and what you are?” said he at length. +“Never have I met with so remarkable a person as yourself.” + +“Willingly,” answered the stranger; “if, indeed, you feel any curiosity +respecting one, now, alas, powerless to aid you in any way.” + +“Say not so; you can console and support me by the strength of your own +powerful mind. Pray let me know who you really are?” + +The stranger smiled a melancholy smile. “Then listen,” said he. “I am +the Abbé Faria, and have been imprisoned as you know in this Château +d’If since the year 1811; previously to which I had been confined for +three years in the fortress of Fenestrelle. In the year 1811 I was +transferred to Piedmont in France. It was at this period I learned that +the destiny which seemed subservient to every wish formed by Napoleon, +had bestowed on him a son, named king of Rome even in his cradle. I was +very far then from expecting the change you have just informed me of; +namely, that four years afterwards, this colossus of power would be +overthrown. Then who reigns in France at this moment—Napoleon II.?” + +“No, Louis XVIII.” + +“The brother of Louis XVI.! How inscrutable are the ways of +Providence—for what great and mysterious purpose has it pleased Heaven +to abase the man once so elevated, and raise up him who was so abased?” + +Dantès’ whole attention was riveted on a man who could thus forget his +own misfortunes while occupying himself with the destinies of others. + +“Yes, yes,” continued he, “’Twill be the same as it was in England. +After Charles I., Cromwell; after Cromwell, Charles II., and then James +II., and then some son-in-law or relation, some Prince of Orange, a +stadtholder who becomes a king. Then new concessions to the people, +then a constitution, then liberty. Ah, my friend!” said the abbé, +turning towards Dantès, and surveying him with the kindling gaze of a +prophet, “you are young, you will see all this come to pass.” + +“Probably, if ever I get out of prison!” + +“True,” replied Faria, “we are prisoners; but I forget this sometimes, +and there are even moments when my mental vision transports me beyond +these walls, and I fancy myself at liberty.” + +“But wherefore are you here?” + +“Because in 1807 I dreamed of the very plan Napoleon tried to realize +in 1811; because, like Machiavelli, I desired to alter the political +face of Italy, and instead of allowing it to be split up into a +quantity of petty principalities, each held by some weak or tyrannical +ruler, I sought to form one large, compact, and powerful empire; and, +lastly, because I fancied I had found my Cæsar Borgia in a crowned +simpleton, who feigned to enter into my views only to betray me. It was +the plan of Alexander VI. and Clement VII., but it will never succeed +now, for they attempted it fruitlessly, and Napoleon was unable to +complete his work. Italy seems fated to misfortune.” And the old man +bowed his head. + +Dantès could not understand a man risking his life for such matters. +Napoleon certainly he knew something of, inasmuch as he had seen and +spoken with him; but of Clement VII. and Alexander VI. he knew nothing. + +“Are you not,” he asked, “the priest who here in the Château d’If is +generally thought to be—ill?” + +“Mad, you mean, don’t you?” + +“I did not like to say so,” answered Dantès, smiling. + +“Well, then,” resumed Faria with a bitter smile, “let me answer your +question in full, by acknowledging that I am the poor mad prisoner of +the Château d’If, for many years permitted to amuse the different +visitors with what is said to be my insanity; and, in all probability, +I should be promoted to the honor of making sport for the children, if +such innocent beings could be found in an abode devoted like this to +suffering and despair.” + +Dantès remained for a short time mute and motionless; at length he +said: + +“Then you abandon all hope of escape?” + +“I perceive its utter impossibility; and I consider it impious to +attempt that which the Almighty evidently does not approve.” + +“Nay, be not discouraged. Would it not be expecting too much to hope to +succeed at your first attempt? Why not try to find an opening in +another direction from that which has so unfortunately failed?” + +“Alas, it shows how little notion you can have of all it has cost me to +effect a purpose so unexpectedly frustrated, that you talk of beginning +over again. In the first place, I was four years making the tools I +possess, and have been two years scraping and digging out earth, hard +as granite itself; then what toil and fatigue has it not been to remove +huge stones I should once have deemed impossible to loosen. Whole days +have I passed in these Titanic efforts, considering my labor well +repaid if, by night-time I had contrived to carry away a square inch of +this hard-bound cement, changed by ages into a substance unyielding as +the stones themselves; then to conceal the mass of earth and rubbish I +dug up, I was compelled to break through a staircase, and throw the +fruits of my labor into the hollow part of it; but the well is now so +completely choked up, that I scarcely think it would be possible to add +another handful of dust without leading to discovery. Consider also +that I fully believed I had accomplished the end and aim of my +undertaking, for which I had so exactly husbanded my strength as to +make it just hold out to the termination of my enterprise; and now, at +the moment when I reckoned upon success, my hopes are forever dashed +from me. No, I repeat again, that nothing shall induce me to renew +attempts evidently at variance with the Almighty’s pleasure.” + +Dantès held down his head, that the other might not see how joy at the +thought of having a companion outweighed the sympathy he felt for the +failure of the abbé’s plans. + +The abbé sank upon Edmond’s bed, while Edmond himself remained +standing. Escape had never once occurred to him. There are, indeed, +some things which appear so impossible that the mind does not dwell on +them for an instant. To undermine the ground for fifty feet—to devote +three years to a labor which, if successful, would conduct you to a +precipice overhanging the sea—to plunge into the waves from the height +of fifty, sixty, perhaps a hundred feet, at the risk of being dashed to +pieces against the rocks, should you have been fortunate enough to have +escaped the fire of the sentinels; and even, supposing all these perils +past, then to have to swim for your life a distance of at least three +miles ere you could reach the shore—were difficulties so startling and +formidable that Dantès had never even dreamed of such a scheme, +resigning himself rather to death. + +But the sight of an old man clinging to life with so desperate a +courage, gave a fresh turn to his ideas, and inspired him with new +courage. Another, older and less strong than he, had attempted what he +had not had sufficient resolution to undertake, and had failed only +because of an error in calculation. This same person, with almost +incredible patience and perseverance, had contrived to provide himself +with tools requisite for so unparalleled an attempt. Another had done +all this; why, then, was it impossible to Dantès? Faria had dug his way +through fifty feet, Dantès would dig a hundred; Faria, at the age of +fifty, had devoted three years to the task; he, who was but half as +old, would sacrifice six; Faria, a priest and savant, had not shrunk +from the idea of risking his life by trying to swim a distance of three +miles to one of the islands—Daume, Rattonneau, or Lemaire; should a +hardy sailor, an experienced diver, like himself, shrink from a similar +task; should he, who had so often for mere amusement’s sake plunged to +the bottom of the sea to fetch up the bright coral branch, hesitate to +entertain the same project? He could do it in an hour, and how many +times had he, for pure pastime, continued in the water for more than +twice as long! At once Dantès resolved to follow the brave example of +his energetic companion, and to remember that what has once been done +may be done again. + +After continuing some time in profound meditation, the young man +suddenly exclaimed, “I have found what you were in search of!” + +Faria started: “Have you, indeed?” cried he, raising his head with +quick anxiety; “pray, let me know what it is you have discovered?” + +“The corridor through which you have bored your way from the cell you +occupy here, extends in the same direction as the outer gallery, does +it not?” + +0207m + + + +“It does.” + +“And is not above fifteen feet from it?” + +“About that.” + +“Well, then, I will tell you what we must do. We must pierce through +the corridor by forming a side opening about the middle, as it were the +top part of a cross. This time you will lay your plans more accurately; +we shall get out into the gallery you have described; kill the sentinel +who guards it, and make our escape. All we require to insure success is +courage, and that you possess, and strength, which I am not deficient +in; as for patience, you have abundantly proved yours—you shall now see +me prove mine.” + +“One instant, my dear friend,” replied the abbé; “it is clear you do +not understand the nature of the courage with which I am endowed, and +what use I intend making of my strength. As for patience, I consider +that I have abundantly exercised that in beginning every morning the +task of the night before, and every night renewing the task of the day. +But then, young man (and I pray of you to give me your full attention), +then I thought I could not be doing anything displeasing to the +Almighty in trying to set an innocent being at liberty—one who had +committed no offence, and merited not condemnation.” + +“And have your notions changed?” asked Dantès with much surprise; “do +you think yourself more guilty in making the attempt since you have +encountered me?” + +“No; neither do I wish to incur guilt. Hitherto I have fancied myself +merely waging war against circumstances, not men. I have thought it no +sin to bore through a wall, or destroy a staircase; but I cannot so +easily persuade myself to pierce a heart or take away a life.” + +A slight movement of surprise escaped Dantès. + +“Is it possible,” said he, “that where your liberty is at stake you can +allow any such scruple to deter you from obtaining it?” + +“Tell me,” replied Faria, “what has hindered you from knocking down +your jailer with a piece of wood torn from your bedstead, dressing +yourself in his clothes, and endeavoring to escape?” + +“Simply the fact that the idea never occurred to me,” answered Dantès. + +“Because,” said the old man, “the natural repugnance to the commission +of such a crime prevented you from thinking of it; and so it ever is +because in simple and allowable things our natural instincts keep us +from deviating from the strict line of duty. The tiger, whose nature +teaches him to delight in shedding blood, needs but the sense of smell +to show him when his prey is within his reach, and by following this +instinct he is enabled to measure the leap necessary to permit him to +spring on his victim; but man, on the contrary, loathes the idea of +blood—it is not alone that the laws of social life inspire him with a +shrinking dread of taking life; his natural construction and +physiological formation——” + +Dantès was confused and silent at this explanation of the thoughts +which had unconsciously been working in his mind, or rather soul; for +there are two distinct sorts of ideas, those that proceed from the head +and those that emanate from the heart. + +0209m + + + +“Since my imprisonment,” said Faria, “I have thought over all the most +celebrated cases of escape on record. They have rarely been successful. +Those that have been crowned with full success have been long meditated +upon, and carefully arranged; such, for instance, as the escape of the +Duc de Beaufort from the Château de Vincennes, that of the Abbé +Dubuquoi from For l’Evêque; of Latude from the Bastille. Then there are +those for which chance sometimes affords opportunity, and those are the +best of all. Let us, therefore, wait patiently for some favorable +moment, and when it presents itself, profit by it.” + +“Ah,” said Dantès, “you might well endure the tedious delay; you were +constantly employed in the task you set yourself, and when weary with +toil, you had your hopes to refresh and encourage you.” + +“I assure you,” replied the old man, “I did not turn to that source for +recreation or support.” + +“What did you do then?” + +“I wrote or studied.” + +“Were you then permitted the use of pens, ink, and paper?” + +“Oh, no,” answered the abbé; “I had none but what I made for myself.” + +“You made paper, pens and ink?” + +“Yes.” + +Dantès gazed with admiration, but he had some difficulty in believing. +Faria saw this. + +“When you pay me a visit in my cell, my young friend,” said he, “I will +show you an entire work, the fruits of the thoughts and reflections of +my whole life; many of them meditated over in the shades of the +Colosseum at Rome, at the foot of St. Mark’s column at Venice, and on +the borders of the Arno at Florence, little imagining at the time that +they would be arranged in order within the walls of the Château d’If. +The work I speak of is called _A Treatise on the Possibility of a +General Monarchy in Italy_, and will make one large quarto volume.” + +“And on what have you written all this?” + +“On two of my shirts. I invented a preparation that makes linen as +smooth and as easy to write on as parchment.” + +“You are, then, a chemist?” + +“Somewhat; I know Lavoisier, and was the intimate friend of Cabanis.” + +“But for such a work you must have needed books—had you any?” + +“I had nearly five thousand volumes in my library at Rome; but after +reading them over many times, I found out that with one hundred and +fifty well-chosen books a man possesses, if not a complete summary of +all human knowledge, at least all that a man need really know. I +devoted three years of my life to reading and studying these one +hundred and fifty volumes, till I knew them nearly by heart; so that +since I have been in prison, a very slight effort of memory has enabled +me to recall their contents as readily as though the pages were open +before me. I could recite you the whole of Thucydides, Xenophon, +Plutarch, Titus Livius, Tacitus, Strada, Jornandes, Dante, Montaigne, +Shakespeare, Spinoza, Machiavelli, and Bossuet. I name only the most +important.” + +“You are, doubtless, acquainted with a variety of languages, so as to +have been able to read all these?” + +“Yes, I speak five of the modern tongues—that is to say, German, +French, Italian, English, and Spanish; by the aid of ancient Greek I +learned modern Greek—I don’t speak it so well as I could wish, but I am +still trying to improve myself.” + +“Improve yourself!” repeated Dantès; “why, how can you manage to do +so?” + +“Why, I made a vocabulary of the words I knew; turned, returned, and +arranged them, so as to enable me to express my thoughts through their +medium. I know nearly one thousand words, which is all that is +absolutely necessary, although I believe there are nearly one hundred +thousand in the dictionaries. I cannot hope to be very fluent, but I +certainly should have no difficulty in explaining my wants and wishes; +and that would be quite as much as I should ever require.” + +Stronger grew the wonder of Dantès, who almost fancied he had to do +with one gifted with supernatural powers; still hoping to find some +imperfection which might bring him down to a level with human beings, +he added, “Then if you were not furnished with pens, how did you manage +to write the work you speak of?” + +“I made myself some excellent ones, which would be universally +preferred to all others if once known. You are aware what huge whitings +are served to us on _maigre_ days. Well, I selected the cartilages of +the heads of these fishes, and you can scarcely imagine the delight +with which I welcomed the arrival of each Wednesday, Friday, and +Saturday, as affording me the means of increasing my stock of pens; for +I will freely confess that my historical labors have been my greatest +solace and relief. While retracing the past, I forget the present; and +traversing at will the path of history I cease to remember that I am +myself a prisoner.” + +“But the ink,” said Dantès; “of what did you make your ink?” + +“There was formerly a fireplace in my dungeon,” replied Faria, “but it +was closed up long ere I became an occupant of this prison. Still, it +must have been many years in use, for it was thickly covered with a +coating of soot; this soot I dissolved in a portion of the wine brought +to me every Sunday, and I assure you a better ink cannot be desired. +For very important notes, for which closer attention is required, I +pricked one of my fingers, and wrote with my own blood.” + +“And when,” asked Dantès, “may I see all this?” + +“Whenever you please,” replied the abbé. + +“Oh, then let it be directly!” exclaimed the young man. + +“Follow me, then,” said the abbé, as he re-entered the subterranean +passage, in which he soon disappeared, followed by Dantès. + + + + Chapter 17. The Abbé’s Chamber + +After having passed with tolerable ease through the subterranean +passage, which, however, did not admit of their holding themselves +erect, the two friends reached the further end of the corridor, into +which the abbé’s cell opened; from that point the passage became much +narrower, and barely permitted one to creep through on hands and knees. +The floor of the abbé’s cell was paved, and it had been by raising one +of the stones in the most obscure corner that Faria had been able to +commence the laborious task of which Dantès had witnessed the +completion. + +As he entered the chamber of his friend, Dantès cast around one eager +and searching glance in quest of the expected marvels, but nothing more +than common met his view. + +“It is well,” said the abbé; “we have some hours before us—it is now +just a quarter past twelve o’clock.” Instinctively Dantès turned round +to observe by what watch or clock the abbé had been able so accurately +to specify the hour. + +“Look at this ray of light which enters by my window,” said the abbé, +“and then observe the lines traced on the wall. Well, by means of these +lines, which are in accordance with the double motion of the earth, and +the ellipse it describes round the sun, I am enabled to ascertain the +precise hour with more minuteness than if I possessed a watch; for that +might be broken or deranged in its movements, while the sun and earth +never vary in their appointed paths.” + +This last explanation was wholly lost upon Dantès, who had always +imagined, from seeing the sun rise from behind the mountains and set in +the Mediterranean, that it moved, and not the earth. A double movement +of the globe he inhabited, and of which he could feel nothing, appeared +to him perfectly impossible. Each word that fell from his companion’s +lips seemed fraught with the mysteries of science, as worthy of digging +out as the gold and diamonds in the mines of Guzerat and Golconda, +which he could just recollect having visited during a voyage made in +his earliest youth. + +“Come,” said he to the abbé, “I am anxious to see your treasures.” + +The abbé smiled, and, proceeding to the disused fireplace, raised, by +the help of his chisel, a long stone, which had doubtless been the +hearth, beneath which was a cavity of considerable depth, serving as a +safe depository of the articles mentioned to Dantès. + +0213m + + + +“What do you wish to see first?” asked the abbé. + +“Oh, your great work on the monarchy of Italy!” + +Faria then drew forth from his hiding-place three or four rolls of +linen, laid one over the other, like folds of papyrus. These rolls +consisted of slips of cloth about four inches wide and eighteen long; +they were all carefully numbered and closely covered with writing, so +legible that Dantès could easily read it, as well as make out the +sense—it being in Italian, a language he, as a Provençal, perfectly +understood. + +“There,” said he, “there is the work complete. I wrote the word _finis_ +at the end of the sixty-eighth strip about a week ago. I have torn up +two of my shirts, and as many handkerchiefs as I was master of, to +complete the precious pages. Should I ever get out of prison and find +in all Italy a printer courageous enough to publish what I have +composed, my literary reputation is forever secured.” + +“I see,” answered Dantès. “Now let me behold the curious pens with +which you have written your work.” + +“Look!” said Faria, showing to the young man a slender stick about six +inches long, and much resembling the size of the handle of a fine +painting-brush, to the end of which was tied, by a piece of thread, one +of those cartilages of which the abbé had before spoken to Dantès; it +was pointed, and divided at the nib like an ordinary pen. Dantès +examined it with intense admiration, then looked around to see the +instrument with which it had been shaped so correctly into form. + +“Ah, yes,” said Faria; “the penknife. That’s my masterpiece. I made it, +as well as this larger knife, out of an old iron candlestick.” The +penknife was sharp and keen as a razor; as for the other knife, it +would serve a double purpose, and with it one could cut and thrust. + +Dantès examined the various articles shown to him with the same +attention that he had bestowed on the curiosities and strange tools +exhibited in the shops at Marseilles as the works of the savages in the +South Seas from whence they had been brought by the different trading +vessels. + +“As for the ink,” said Faria, “I told you how I managed to obtain +that—and I only just make it from time to time, as I require it.” + +“One thing still puzzles me,” observed Dantès, “and that is how you +managed to do all this by daylight?” + +“I worked at night also,” replied Faria. + +“Night!—why, for Heaven’s sake, are your eyes like cats’, that you can +see to work in the dark?” + +“Indeed they are not; but God has supplied man with the intelligence +that enables him to overcome the limitations of natural conditions. I +furnished myself with a light.” + +“You did? Pray tell me how.” + +“I separated the fat from the meat served to me, melted it, and so made +oil—here is my lamp.” So saying, the abbé exhibited a sort of torch +very similar to those used in public illuminations. + +“But how do you procure a light?” + +“Oh, here are two flints and a piece of burnt linen.” + +“And matches?” + +“I pretended that I had a disorder of the skin, and asked for a little +sulphur, which was readily supplied.” + +Dantès laid the different things he had been looking at on the table, +and stood with his head drooping on his breast, as though overwhelmed +by the perseverance and strength of Faria’s mind. + +0215m + + + +“You have not seen all yet,” continued Faria, “for I did not think it +wise to trust all my treasures in the same hiding-place. Let us shut +this one up.” They put the stone back in its place; the abbé sprinkled +a little dust over it to conceal the traces of its having been removed, +rubbed his foot well on it to make it assume the same appearance as the +other, and then, going towards his bed, he removed it from the spot it +stood in. Behind the head of the bed, and concealed by a stone fitting +in so closely as to defy all suspicion, was a hollow space, and in this +space a ladder of cords between twenty-five and thirty feet in length. +Dantès closely and eagerly examined it; he found it firm, solid, and +compact enough to bear any weight. + +“Who supplied you with the materials for making this wonderful work?” + +“I tore up several of my shirts, and ripped out the seams in the sheets +of my bed, during my three years’ imprisonment at Fenestrelle; and when +I was removed to the Château d’If, I managed to bring the ravellings +with me, so that I have been able to finish my work here.” + +“And was it not discovered that your sheets were unhemmed?” + +“Oh, no, for when I had taken out the thread I required, I hemmed the +edges over again.” + +“With what?” + +“With this needle,” said the abbé, as, opening his ragged vestments, he +showed Dantès a long, sharp fish-bone, with a small perforated eye for +the thread, a small portion of which still remained in it. + +“I once thought,” continued Faria, “of removing these iron bars, and +letting myself down from the window, which, as you see, is somewhat +wider than yours, although I should have enlarged it still more +preparatory to my flight; however, I discovered that I should merely +have dropped into a sort of inner court, and I therefore renounced the +project altogether as too full of risk and danger. Nevertheless, I +carefully preserved my ladder against one of those unforeseen +opportunities of which I spoke just now, and which sudden chance +frequently brings about.” + +While affecting to be deeply engaged in examining the ladder, the mind +of Dantès was, in fact, busily occupied by the idea that a person so +intelligent, ingenious, and clear-sighted as the abbé might probably be +able to solve the dark mystery of his own misfortunes, where he himself +could see nothing. + +“What are you thinking of?” asked the abbé smilingly, imputing the deep +abstraction in which his visitor was plunged to the excess of his awe +and wonder. + +“I was reflecting, in the first place,” replied Dantès, “upon the +enormous degree of intelligence and ability you must have employed to +reach the high perfection to which you have attained. What would you +not have accomplished if you had been free?” + +“Possibly nothing at all; the overflow of my brain would probably, in a +state of freedom, have evaporated in a thousand follies; misfortune is +needed to bring to light the treasures of the human intellect. +Compression is needed to explode gunpowder. Captivity has brought my +mental faculties to a focus; and you are well aware that from the +collision of clouds electricity is produced—from electricity, +lightning, from lightning, illumination.” + +“No,” replied Dantès. “I know nothing. Some of your words are to me +quite empty of meaning. You must be blessed indeed to possess the +knowledge you have.” + +The abbé smiled. “Well,” said he, “but you had another subject for your +thoughts; did you not say so just now?” + +“I did!” + +“You have told me as yet but one of them—let me hear the other.” + +“It was this,—that while you had related to me all the particulars of +your past life, you were perfectly unacquainted with mine.” + +“Your life, my young friend, has not been of sufficient length to admit +of your having passed through any very important events.” + +“It has been long enough to inflict on me a great and undeserved +misfortune. I would fain fix the source of it on man that I may no +longer vent reproaches upon Heaven.” + +“Then you profess ignorance of the crime with which you are charged?” + +“I do, indeed; and this I swear by the two beings most dear to me upon +earth,—my father and Mercédès.” + +“Come,” said the abbé, closing his hiding-place, and pushing the bed +back to its original situation, “let me hear your story.” + +Dantès obeyed, and commenced what he called his history, but which +consisted only of the account of a voyage to India, and two or three +voyages to the Levant, until he arrived at the recital of his last +cruise, with the death of Captain Leclere, and the receipt of a packet +to be delivered by himself to the grand marshal; his interview with +that personage, and his receiving, in place of the packet brought, a +letter addressed to a Monsieur Noirtier—his arrival at Marseilles, and +interview with his father—his affection for Mercédès, and their nuptial +feast—his arrest and subsequent examination, his temporary detention at +the Palais de Justice, and his final imprisonment in the Château d’If. +From this point everything was a blank to Dantès—he knew nothing more, +not even the length of time he had been imprisoned. His recital +finished, the abbé reflected long and earnestly. + +“There is,” said he, at the end of his meditations, “a clever maxim, +which bears upon what I was saying to you some little while ago, and +that is, that unless wicked ideas take root in a naturally depraved +mind, human nature, in a right and wholesome state, revolts at crime. +Still, from an artificial civilization have originated wants, vices, +and false tastes, which occasionally become so powerful as to stifle +within us all good feelings, and ultimately to lead us into guilt and +wickedness. From this view of things, then, comes the axiom that if you +visit to discover the author of any bad action, seek first to discover +the person to whom the perpetration of that bad action could be in any +way advantageous. Now, to apply it in your case,—to whom could your +disappearance have been serviceable?” + +“To no one, by Heaven! I was a very insignificant person.” + +“Do not speak thus, for your reply evinces neither logic nor +philosophy; everything is relative, my dear young friend, from the king +who stands in the way of his successor, to the employee who keeps his +rival out of a place. Now, in the event of the king’s death, his +successor inherits a crown,—when the employee dies, the supernumerary +steps into his shoes, and receives his salary of twelve thousand +livres. Well, these twelve thousand livres are his civil list, and are +as essential to him as the twelve millions of a king. Everyone, from +the highest to the lowest degree, has his place on the social ladder, +and is beset by stormy passions and conflicting interests, as in +Descartes’ theory of pressure and impulsion. But these forces increase +as we go higher, so that we have a spiral which in defiance of reason +rests upon the apex and not on the base. Now let us return to your +particular world. You say you were on the point of being made captain +of the _Pharaon_?” + +“Yes.” + +“And about to become the husband of a young and lovely girl?” + +“Yes.” + +“Now, could anyone have had any interest in preventing the +accomplishment of these two things? But let us first settle the +question as to its being the interest of anyone to hinder you from +being captain of the _Pharaon_. What say you?” + +“I cannot believe such was the case. I was generally liked on board, +and had the sailors possessed the right of selecting a captain +themselves, I feel convinced their choice would have fallen on me. +There was only one person among the crew who had any feeling of +ill-will towards me. I had quarelled with him some time previously, and +had even challenged him to fight me; but he refused.” + +“Now we are getting on. And what was this man’s name?” + +“Danglars.” + +“What rank did he hold on board?” + +“He was supercargo.” + +“And had you been captain, should you have retained him in his +employment?” + +“Not if the choice had remained with me, for I had frequently observed +inaccuracies in his accounts.” + +“Good again! Now then, tell me, was any person present during your last +conversation with Captain Leclere?” + +“No; we were quite alone.” + +“Could your conversation have been overheard by anyone?” + +“It might, for the cabin door was open—and—stay; now I +recollect,—Danglars himself passed by just as Captain Leclere was +giving me the packet for the grand marshal.” + +“That’s better,” cried the abbé; “now we are on the right scent. Did +you take anybody with you when you put into the port of Elba?” + +“Nobody.” + +“Somebody there received your packet, and gave you a letter in place of +it, I think?” + +“Yes; the grand marshal did.” + +“And what did you do with that letter?” + +“Put it into my portfolio.” + +“You had your portfolio with you, then? Now, how could a sailor find +room in his pocket for a portfolio large enough to contain an official +letter?” + +“You are right; it was left on board.” + +“Then it was not till your return to the ship that you put the letter +in the portfolio?” + +“No.” + +“And what did you do with this same letter while returning from +Porto-Ferrajo to the vessel?” + +“I carried it in my hand.” + +“So that when you went on board the _Pharaon_, everybody could see that +you held a letter in your hand?” + +“Yes.” + +“Danglars, as well as the rest?” + +“Danglars, as well as others.” + +“Now, listen to me, and try to recall every circumstance attending your +arrest. Do you recollect the words in which the information against you +was formulated?” + +“Oh yes, I read it over three times, and the words sank deeply into my +memory.” + +“Repeat it to me.” + +Dantès paused a moment, then said, “This is it, word for word: ‘The +king’s attorney is informed by a friend to the throne and religion, +that one Edmond Dantès, mate on board the _Pharaon_, this day arrived +from Smyrna, after having touched at Naples and Porto-Ferrajo, has been +intrusted by Murat with a packet for the usurper; again, by the +usurper, with a letter for the Bonapartist Club in Paris. This proof of +his guilt may be procured by his immediate arrest, as the letter will +be found either about his person, at his father’s residence, or in his +cabin on board the _Pharaon_.’” + +The abbé shrugged his shoulders. “The thing is clear as day,” said he; +“and you must have had a very confiding nature, as well as a good +heart, not to have suspected the origin of the whole affair.” + +“Do you really think so? Ah, that would indeed be infamous.” + +“How did Danglars usually write?” + +“In a handsome, running hand.” + +“And how was the anonymous letter written?” + +“Backhanded.” + +Again the abbé smiled. “Disguised.” + +“It was very boldly written, if disguised.” + +“Stop a bit,” said the abbé, taking up what he called his pen, and, +after dipping it into the ink, he wrote on a piece of prepared linen, +with his left hand, the first two or three words of the accusation. +Dantès drew back, and gazed on the abbé with a sensation almost +amounting to terror. + +“How very astonishing!” cried he at length. “Why your writing exactly +resembles that of the accusation.” + +“Simply because that accusation had been written with the left hand; +and I have noticed that——” + +“What?” + +“That while the writing of different persons done with the right hand +varies, that performed with the left hand is invariably uniform.” + +“You have evidently seen and observed everything.” + +“Let us proceed.” + +“Oh, yes, yes!” + +“Now as regards the second question.” + +“I am listening.” + +“Was there any person whose interest it was to prevent your marriage +with Mercédès?” + +“Yes; a young man who loved her.” + +“And his name was——” + +“Fernand.” + +“That is a Spanish name, I think?” + +“He was a Catalan.” + +“You imagine him capable of writing the letter?” + +“Oh, no; he would more likely have got rid of me by sticking a knife +into me.” + +“That is in strict accordance with the Spanish character; an +assassination they will unhesitatingly commit, but an act of cowardice, +never.” + +“Besides,” said Dantès, “the various circumstances mentioned in the +letter were wholly unknown to him.” + +“You had never spoken of them yourself to anyone?” + +“To no one.” + +“Not even to your mistress?” + +“No, not even to my betrothed.” + +“Then it is Danglars.” + +“I feel quite sure of it now.” + +“Wait a little. Pray, was Danglars acquainted with Fernand?” + +“No—yes, he was. Now I recollect——” + +“What?” + +“To have seen them both sitting at table together under an arbor at +Père Pamphile’s the evening before the day fixed for my wedding. They +were in earnest conversation. Danglars was joking in a friendly way, +but Fernand looked pale and agitated.” + +“Were they alone?” + +“There was a third person with them whom I knew perfectly well, and who +had, in all probability made their acquaintance; he was a tailor named +Caderousse, but he was very drunk. Stay!—stay!—How strange that it +should not have occurred to me before! Now I remember quite well, that +on the table round which they were sitting were pens, ink, and paper. +Oh, the heartless, treacherous scoundrels!” exclaimed Dantès, pressing +his hand to his throbbing brows. + +“Is there anything else I can assist you in discovering, besides the +villany of your friends?” inquired the abbé with a laugh. + +“Yes, yes,” replied Dantès eagerly; “I would beg of you, who see so +completely to the depths of things, and to whom the greatest mystery +seems but an easy riddle, to explain to me how it was that I underwent +no second examination, was never brought to trial, and, above all, was +condemned without ever having had sentence passed on me?” + +“That is altogether a different and more serious matter,” responded the +abbé. “The ways of justice are frequently too dark and mysterious to be +easily penetrated. All we have hitherto done in the matter has been +child’s play. If you wish me to enter upon the more difficult part of +the business, you must assist me by the most minute information on +every point.” + +“Pray ask me whatever questions you please; for, in good truth, you see +more clearly into my life than I do myself.” + +“In the first place, then, who examined you,—the king’s attorney, his +deputy, or a magistrate?” + +“The deputy.” + +“Was he young or old?” + +“About six or seven-and-twenty years of age, I should say.” + +“So,” answered the abbé. “Old enough to be ambitious, but too young to +be corrupt. And how did he treat you?” + +“With more of mildness than severity.” + +“Did you tell him your whole story?” + +“I did.” + +“And did his conduct change at all in the course of your examination?” + +“He did appear much disturbed when he read the letter that had brought +me into this scrape. He seemed quite overcome by my misfortune.” + +“By your misfortune?” + +“Yes.” + +“Then you feel quite sure that it was your misfortune he deplored?” + +“He gave me one great proof of his sympathy, at any rate.” + +“And that?” + +“He burnt the sole evidence that could at all have criminated me.” + +“What? the accusation?” + +“No; the letter.” + +“Are you sure?” + +“I saw it done.” + +“That alters the case. This man might, after all, be a greater +scoundrel than you have thought possible.” + +“Upon my word,” said Dantès, “you make me shudder. Is the world filled +with tigers and crocodiles?” + +“Yes; and remember that two-legged tigers and crocodiles are more +dangerous than the others.” + +“Never mind; let us go on.” + +“With all my heart! You tell me he burned the letter?” + +“He did; saying at the same time, ‘You see I thus destroy the only +proof existing against you.’” + +“This action is somewhat too sublime to be natural.” + +“You think so?” + +“I am sure of it. To whom was this letter addressed?” + +“To M. Noirtier, Rue Coq-Héron, No. 13, Paris.” + +“Now can you conceive of any interest that your heroic deputy could +possibly have had in the destruction of that letter?” + +“Why, it is not altogether impossible he might have had, for he made me +promise several times never to speak of that letter to anyone, assuring +me he so advised me for my own interest; and, more than this, he +insisted on my taking a solemn oath never to utter the name mentioned +in the address.” + +“Noirtier!” repeated the abbé; “Noirtier!—I knew a person of that name +at the court of the Queen of Etruria,—a Noirtier, who had been a +Girondin during the Revolution! What was your deputy called?” + +“De Villefort!” The abbé burst into a fit of laughter, while Dantès +gazed on him in utter astonishment. + +“What ails you?” said he at length. + +“Do you see that ray of sunlight?” + +“I do.” + +“Well, the whole thing is more clear to me than that sunbeam is to you. +Poor fellow! poor young man! And you tell me this magistrate expressed +great sympathy and commiseration for you?” + +“He did.” + +“And the worthy man destroyed your compromising letter?” + +“Yes.” + +“And then made you swear never to utter the name of Noirtier?” + +“Yes.” + +“Why, you poor short-sighted simpleton, can you not guess who this +Noirtier was, whose very name he was so careful to keep concealed? This +Noirtier was his father!” + +Had a thunderbolt fallen at the feet of Dantès, or hell opened its +yawning gulf before him, he could not have been more completely +transfixed with horror than he was at the sound of these unexpected +words. Starting up, he clasped his hands around his head as though to +prevent his very brain from bursting, and exclaimed, “His father! his +father!” + +“Yes, his father,” replied the abbé; “his right name was Noirtier de +Villefort.” + +At this instant a bright light shot through the mind of Dantès, and +cleared up all that had been dark and obscure before. The change that +had come over Villefort during the examination, the destruction of the +letter, the exacted promise, the almost supplicating tones of the +magistrate, who seemed rather to implore mercy than to pronounce +punishment,—all returned with a stunning force to his memory. He cried +out, and staggered against the wall like a drunken man, then he hurried +to the opening that led from the abbé’s cell to his own, and said, “I +must be alone, to think over all this.” + +When he regained his dungeon, he threw himself on his bed, where the +turnkey found him in the evening visit, sitting with fixed gaze and +contracted features, dumb and motionless as a statue. During these +hours of profound meditation, which to him had seemed only minutes, he +had formed a fearful resolution, and bound himself to its fulfilment by +a solemn oath. + +Dantès was at length roused from his reverie by the voice of Faria, +who, having also been visited by his jailer, had come to invite his +fellow-sufferer to share his supper. The reputation of being out of his +mind, though harmlessly and even amusingly so, had procured for the +abbé unusual privileges. He was supplied with bread of a finer, whiter +quality than the usual prison fare, and even regaled each Sunday with a +small quantity of wine. Now this was a Sunday, and the abbé had come to +ask his young companion to share the luxuries with him. + +Dantès followed him; his features were no longer contracted, and now +wore their usual expression, but there was that in his whole appearance +that bespoke one who had come to a fixed and desperate resolve. Faria +bent on him his penetrating eye. + +“I regret now,” said he, “having helped you in your late inquiries, or +having given you the information I did.” + +“Why so?” inquired Dantès. + +“Because it has instilled a new passion in your heart—that of +vengeance.” + +Dantès smiled. “Let us talk of something else,” said he. + +Again the abbé looked at him, then mournfully shook his head; but in +accordance with Dantès’ request, he began to speak of other matters. +The elder prisoner was one of those persons whose conversation, like +that of all who have experienced many trials, contained many useful and +important hints as well as sound information; but it was never +egotistical, for the unfortunate man never alluded to his own sorrows. +Dantès listened with admiring attention to all he said; some of his +remarks corresponded with what he already knew, or applied to the sort +of knowledge his nautical life had enabled him to acquire. A part of +the good abbé’s words, however, were wholly incomprehensible to him; +but, like the aurora which guides the navigator in northern latitudes, +opened new vistas to the inquiring mind of the listener, and gave +fantastic glimpses of new horizons, enabling him justly to estimate the +delight an intellectual mind would have in following one so richly +gifted as Faria along the heights of truth, where he was so much at +home. + +“You must teach me a small part of what you know,” said Dantès, “if +only to prevent your growing weary of me. I can well believe that so +learned a person as yourself would prefer absolute solitude to being +tormented with the company of one as ignorant and uninformed as myself. +If you will only agree to my request, I promise you never to mention +another word about escaping.” + +The abbé smiled. + +“Alas, my boy,” said he, “human knowledge is confined within very +narrow limits; and when I have taught you mathematics, physics, +history, and the three or four modern languages with which I am +acquainted, you will know as much as I do myself. Now, it will scarcely +require two years for me to communicate to you the stock of learning I +possess.” + +“Two years!” exclaimed Dantès; “do you really believe I can acquire all +these things in so short a time?” + +“Not their application, certainly, but their principles you may; to +learn is not to know; there are the learners and the learned. Memory +makes the one, philosophy the other.” + +“But cannot one learn philosophy?” + +“Philosophy cannot be taught; it is the application of the sciences to +truth; it is like the golden cloud in which the Messiah went up into +heaven.” + +“Well, then,” said Dantès, “What shall you teach me first? I am in a +hurry to begin. I want to learn.” + +“Everything,” said the abbé. And that very evening the prisoners +sketched a plan of education, to be entered upon the following day. +Dantès possessed a prodigious memory, combined with an astonishing +quickness and readiness of conception; the mathematical turn of his +mind rendered him apt at all kinds of calculation, while his naturally +poetical feelings threw a light and pleasing veil over the dry reality +of arithmetical computation, or the rigid severity of geometry. He +already knew Italian, and had also picked up a little of the Romaic +dialect during voyages to the East; and by the aid of these two +languages he easily comprehended the construction of all the others, so +that at the end of six months he began to speak Spanish, English, and +German. + +In strict accordance with the promise made to the abbé, Dantès spoke no +more of escape. Perhaps the delight his studies afforded him left no +room for such thoughts; perhaps the recollection that he had pledged +his word (on which his sense of honor was keen) kept him from referring +in any way to the possibilities of flight. Days, even months, passed by +unheeded in one rapid and instructive course. At the end of a year +Dantès was a new man. Dantès observed, however, that Faria, in spite of +the relief his society afforded, daily grew sadder; one thought seemed +incessantly to harass and distract his mind. Sometimes he would fall +into long reveries, sigh heavily and involuntarily, then suddenly rise, +and, with folded arms, begin pacing the confined space of his dungeon. +One day he stopped all at once, and exclaimed: + +“Ah, if there were no sentinel!” + +“There shall not be one a minute longer than you please,” said Dantès, +who had followed the working of his thoughts as accurately as though +his brain were enclosed in crystal so clear as to display its minutest +operations. + +“I have already told you,” answered the abbé, “that I loathe the idea +of shedding blood.” + +“And yet the murder, if you choose to call it so, would be simply a +measure of self-preservation.” + +“No matter! I could never agree to it.” + +“Still, you have thought of it?” + +“Incessantly, alas!” cried the abbé. + +“And you have discovered a means of regaining our freedom, have you +not?” asked Dantès eagerly. + +“I have; if it were only possible to place a deaf and blind sentinel in +the gallery beyond us.” + +“He shall be both blind and deaf,” replied the young man, with an air +of determination that made his companion shudder. + +“No, no,” cried the abbé; “impossible!” + +Dantès endeavored to renew the subject; the abbé shook his head in +token of disapproval, and refused to make any further response. Three +months passed away. + +“Are you strong?” the abbé asked one day of Dantès. The young man, in +reply, took up the chisel, bent it into the form of a horseshoe, and +then as readily straightened it. + +“And will you engage not to do any harm to the sentry, except as a last +resort?” + +“I promise on my honor.” + +“Then,” said the abbé, “we may hope to put our design into execution.” + +“And how long shall we be in accomplishing the necessary work?” + +“At least a year.” + +“And shall we begin at once?” + +“At once.” + +“We have lost a year to no purpose!” cried Dantès. + +“Do you consider the last twelve months to have been wasted?” asked the +abbé. + +“Forgive me!” cried Edmond, blushing deeply. + +“Tut, tut!” answered the abbé, “man is but man after all, and you are +about the best specimen of the genus I have ever known. Come, let me +show you my plan.” + +The abbé then showed Dantès the sketch he had made for their escape. It +consisted of a plan of his own cell and that of Dantès, with the +passage which united them. In this passage he proposed to drive a level +as they do in mines; this level would bring the two prisoners +immediately beneath the gallery where the sentry kept watch; once +there, a large excavation would be made, and one of the flag-stones +with which the gallery was paved be so completely loosened that at the +desired moment it would give way beneath the feet of the soldier, who, +stunned by his fall, would be immediately bound and gagged by Dantès +before he had power to offer any resistance. The prisoners were then to +make their way through one of the gallery windows, and to let +themselves down from the outer walls by means of the abbé’s ladder of +cords. + +Dantès’ eyes sparkled with joy, and he rubbed his hands with delight at +the idea of a plan so simple, yet apparently so certain to succeed. +That very day the miners began their labors, with a vigor and alacrity +proportionate to their long rest from fatigue and their hopes of +ultimate success. Nothing interrupted the progress of the work except +the necessity that each was under of returning to his cell in +anticipation of the turnkey’s visits. They had learned to distinguish +the almost imperceptible sound of his footsteps as he descended towards +their dungeons, and happily, never failed of being prepared for his +coming. The fresh earth excavated during their present work, and which +would have entirely blocked up the old passage, was thrown, by degrees +and with the utmost precaution, out of the window in either Faria’s or +Dantès’ cell, the rubbish being first pulverized so finely that the +night wind carried it far away without permitting the smallest trace to +remain. + +More than a year had been consumed in this undertaking, the only tools +for which had been a chisel, a knife, and a wooden lever; Faria still +continuing to instruct Dantès by conversing with him, sometimes in one +language, sometimes in another; at others, relating to him the history +of nations and great men who from time to time have risen to fame and +trodden the path of glory. The abbé was a man of the world, and had, +moreover, mixed in the first society of the day; he wore an air of +melancholy dignity which Dantès, thanks to the imitative powers +bestowed on him by nature, easily acquired, as well as that outward +polish and politeness he had before been wanting in, and which is +seldom possessed except by those who have been placed in constant +intercourse with persons of high birth and breeding. + +At the end of fifteen months the level was finished, and the excavation +completed beneath the gallery, and the two workmen could distinctly +hear the measured tread of the sentinel as he paced to and fro over +their heads. Compelled, as they were, to await a night sufficiently +dark to favor their flight, they were obliged to defer their final +attempt till that auspicious moment should arrive; their greatest dread +now was lest the stone through which the sentry was doomed to fall +should give way before its right time, and this they had in some +measure provided against by propping it up with a small beam which they +had discovered in the walls through which they had worked their way. +Dantès was occupied in arranging this piece of wood when he heard +Faria, who had remained in Edmond’s cell for the purpose of cutting a +peg to secure their rope-ladder, call to him in a tone indicative of +great suffering. Dantès hastened to his dungeon, where he found him +standing in the middle of the room, pale as death, his forehead +streaming with perspiration, and his hands clenched tightly together. + +“Gracious heavens!” exclaimed Dantès, “what is the matter? what has +happened?” + +“Quick! quick!” returned the abbé, “listen to what I have to say.” + +Dantès looked in fear and wonder at the livid countenance of Faria, +whose eyes, already dull and sunken, were surrounded by purple circles, +while his lips were white as those of a corpse, and his very hair +seemed to stand on end. + +“Tell me, I beseech you, what ails you?” cried Dantès, letting his +chisel fall to the floor. + +“Alas,” faltered out the abbé, “all is over with me. I am seized with a +terrible, perhaps mortal illness; I can feel that the paroxysm is fast +approaching. I had a similar attack the year previous to my +imprisonment. This malady admits but of one remedy; I will tell you +what that is. Go into my cell as quickly as you can; draw out one of +the feet that support the bed; you will find it has been hollowed out +for the purpose of containing a small phial you will see there +half-filled with a red-looking fluid. Bring it to me—or rather—no, +no!—I may be found here, therefore help me back to my room while I have +the strength to drag myself along. Who knows what may happen, or how +long the attack may last?” + +In spite of the magnitude of the misfortune which thus suddenly +frustrated his hopes, Dantès did not lose his presence of mind, but +descended into the passage, dragging his unfortunate companion with +him; then, half-carrying, half-supporting him, he managed to reach the +abbé’s chamber, when he immediately laid the sufferer on his bed. + +“Thanks,” said the poor abbé, shivering as though his veins were filled +with ice. “I am about to be seized with a fit of catalepsy; when it +comes to its height I shall probably lie still and motionless as though +dead, uttering neither sigh nor groan. On the other hand, the symptoms +may be much more violent, and cause me to fall into fearful +convulsions, foam at the mouth, and cry out loudly. Take care my cries +are not heard, for if they are it is more than probable I should be +removed to another part of the prison, and we be separated forever. +When I become quite motionless, cold, and rigid as a corpse, then, and +not before,—be careful about this,—force open my teeth with the knife, +pour from eight to ten drops of the liquor contained in the phial down +my throat, and I may perhaps revive.” + +“Perhaps!” exclaimed Dantès in grief-stricken tones. + +“Help! help!” cried the abbé, “I—I—die—I——” + +0229m + + + +So sudden and violent was the fit that the unfortunate prisoner was +unable to complete the sentence; a violent convulsion shook his whole +frame, his eyes started from their sockets, his mouth was drawn on one +side, his cheeks became purple, he struggled, foamed, dashed himself +about, and uttered the most dreadful cries, which, however, Dantès +prevented from being heard by covering his head with the blanket. The +fit lasted two hours; then, more helpless than an infant, and colder +and paler than marble, more crushed and broken than a reed trampled +under foot, he fell back, doubled up in one last convulsion, and became +as rigid as a corpse. + +Edmond waited till life seemed extinct in the body of his friend, then, +taking up the knife, he with difficulty forced open the closely fixed +jaws, carefully administered the appointed number of drops, and +anxiously awaited the result. An hour passed away and the old man gave +no sign of returning animation. Dantès began to fear he had delayed too +long ere he administered the remedy, and, thrusting his hands into his +hair, continued gazing on the lifeless features of his friend. At +length a slight color tinged the livid cheeks, consciousness returned +to the dull, open eyeballs, a faint sigh issued from the lips, and the +sufferer made a feeble effort to move. + +“He is saved! he is saved!” cried Dantès in a paroxysm of delight. + +The sick man was not yet able to speak, but he pointed with evident +anxiety towards the door. Dantès listened, and plainly distinguished +the approaching steps of the jailer. It was therefore near seven +o’clock; but Edmond’s anxiety had put all thoughts of time out of his +head. + +The young man sprang to the entrance, darted through it, carefully +drawing the stone over the opening, and hurried to his cell. He had +scarcely done so before the door opened, and the jailer saw the +prisoner seated as usual on the side of his bed. Almost before the key +had turned in the lock, and before the departing steps of the jailer +had died away in the long corridor he had to traverse, Dantès, whose +restless anxiety concerning his friend left him no desire to touch the +food brought him, hurried back to the abbé’s chamber, and raising the +stone by pressing his head against it, was soon beside the sick man’s +couch. Faria had now fully regained his consciousness, but he still lay +helpless and exhausted on his miserable bed. + +“I did not expect to see you again,” said he feebly, to Dantès. + +“And why not?” asked the young man. “Did you fancy yourself dying?” + +“No, I had no such idea; but, knowing that all was ready for flight, I +thought you might have made your escape.” + +The deep glow of indignation suffused the cheeks of Dantès. + +“Without you? Did you really think me capable of that?” + +“At least,” said the abbé, “I now see how wrong such an opinion would +have been. Alas, alas! I am fearfully exhausted and debilitated by this +attack.” + +“Be of good cheer,” replied Dantès; “your strength will return.” And as +he spoke he seated himself near the bed beside Faria, and took his +hands. The abbé shook his head. + +“The last attack I had,” said he, “lasted but half an hour, and after +it I was hungry, and got up without help; now I can move neither my +right arm nor leg, and my head seems uncomfortable, which shows that +there has been a suffusion of blood on the brain. The third attack will +either carry me off, or leave me paralyzed for life.” + +“No, no,” cried Dantès; “you are mistaken—you will not die! And your +third attack (if, indeed, you should have another) will find you at +liberty. We shall save you another time, as we have done this, only +with a better chance of success, because we shall be able to command +every requisite assistance.” + +“My good Edmond,” answered the abbé, “be not deceived. The attack which +has just passed away, condemns me forever to the walls of a prison. +None can fly from a dungeon who cannot walk.” + +“Well, we will wait,—a week, a month, two months, if need be,—and +meanwhile your strength will return. Everything is in readiness for our +flight, and we can select any time we choose. As soon as you feel able +to swim we will go.” + +“I shall never swim again,” replied Faria. “This arm is paralyzed; not +for a time, but forever. Lift it, and judge if I am mistaken.” + +The young man raised the arm, which fell back by its own weight, +perfectly inanimate and helpless. A sigh escaped him. + +“You are convinced now, Edmond, are you not?” asked the abbé. “Depend +upon it, I know what I say. Since the first attack I experienced of +this malady, I have continually reflected on it. Indeed, I expected it, +for it is a family inheritance; both my father and grandfather died of +it in a third attack. The physician who prepared for me the remedy I +have twice successfully taken, was no other than the celebrated +Cabanis, and he predicted a similar end for me.” + +0233m + + + +“The physician may be mistaken!” exclaimed Dantès. “And as for your +poor arm, what difference will that make? I can take you on my +shoulders, and swim for both of us.” + +“My son,” said the abbé, “you, who are a sailor and a swimmer, must +know as well as I do that a man so loaded would sink before he had done +fifty strokes. Cease, then, to allow yourself to be duped by vain +hopes, that even your own excellent heart refuses to believe in. Here I +shall remain till the hour of my deliverance arrives, and that, in all +human probability, will be the hour of my death. As for you, who are +young and active, delay not on my account, but fly—go—I give you back +your promise.” + +“It is well,” said Dantès. “Then I shall also remain.” Then, rising and +extending his hand with an air of solemnity over the old man’s head, he +slowly added, “By the blood of Christ I swear never to leave you while +you live.” + +Faria gazed fondly on his noble-minded, single-hearted, high-principled +young friend, and read in his countenance ample confirmation of the +sincerity of his devotion and the loyalty of his purpose. + +“Thanks,” murmured the invalid, extending one hand. “I accept. You may +one of these days reap the reward of your disinterested devotion. But +as I cannot, and you will not, quit this place, it becomes necessary to +fill up the excavation beneath the soldier’s gallery; he might, by +chance, hear the hollow sound of his footsteps, and call the attention +of his officer to the circumstance. That would bring about a discovery +which would inevitably lead to our being separated. Go, then, and set +about this work, in which, unhappily, I can offer you no assistance; +keep at it all night, if necessary, and do not return here tomorrow +till after the jailer has visited me. I shall have something of the +greatest importance to communicate to you.” + +Dantès took the hand of the abbé in his, and affectionately pressed it. +Faria smiled encouragingly on him, and the young man retired to his +task, in the spirit of obedience and respect which he had sworn to show +towards his aged friend. + + + + Chapter 18. The Treasure + +When Dantès returned next morning to the chamber of his companion in +captivity, he found Faria seated and looking composed. In the ray of +light which entered by the narrow window of his cell, he held open in +his left hand, of which alone, it will be recollected, he retained the +use, a sheet of paper, which, from being constantly rolled into a small +compass, had the form of a cylinder, and was not easily kept open. He +did not speak, but showed the paper to Dantès. + +“What is that?” he inquired. + +“Look at it,” said the abbé with a smile. + +“I have looked at it with all possible attention,” said Dantès, “and I +only see a half-burnt paper, on which are traces of Gothic characters +inscribed with a peculiar kind of ink.” + +“This paper, my friend,” said Faria, “I may now avow to you, since I +have the proof of your fidelity—this paper is my treasure, of which, +from this day forth, one-half belongs to you.” + +The sweat started forth on Dantès’ brow. Until this day and for how +long a time!—he had refrained from talking of the treasure, which had +brought upon the abbé the accusation of madness. With his instinctive +delicacy Edmond had preferred avoiding any touch on this painful chord, +and Faria had been equally silent. He had taken the silence of the old +man for a return to reason; and now these few words uttered by Faria, +after so painful a crisis, seemed to indicate a serious relapse into +mental alienation. + +“Your treasure?” stammered Dantès. Faria smiled. + +“Yes,” said he. “You have, indeed, a noble nature, Edmond, and I see by +your paleness and agitation what is passing in your heart at this +moment. No, be assured, I am not mad. This treasure exists, Dantès, and +if I have not been allowed to possess it, you will. Yes—you. No one +would listen or believe me, because everyone thought me mad; but you, +who must know that I am not, listen to me, and believe me so afterwards +if you will.” + +“Alas,” murmured Edmond to himself, “this is a terrible relapse! There +was only this blow wanting.” Then he said aloud, “My dear friend, your +attack has, perhaps, fatigued you; had you not better repose awhile? +Tomorrow, if you will, I will hear your narrative; but today I wish to +nurse you carefully. Besides,” he said, “a treasure is not a thing we +need hurry about.” + +“On the contrary, it is a matter of the utmost importance, Edmond!” +replied the old man. “Who knows if tomorrow, or the next day after, the +third attack may not come on? and then must not all be over? Yes, +indeed, I have often thought with a bitter joy that these riches, which +would make the wealth of a dozen families, will be forever lost to +those men who persecute me. This idea was one of vengeance to me, and I +tasted it slowly in the night of my dungeon and the despair of my +captivity. But now I have forgiven the world for the love of you; now +that I see you, young and with a promising future,—now that I think of +all that may result to you in the good fortune of such a disclosure, I +shudder at any delay, and tremble lest I should not assure to one as +worthy as yourself the possession of so vast an amount of hidden +wealth.” + +Edmond turned away his head with a sigh. + +“You persist in your incredulity, Edmond,” continued Faria. “My words +have not convinced you. I see you require proofs. Well, then, read this +paper, which I have never shown to anyone.” + +“Tomorrow, my dear friend,” said Edmond, desirous of not yielding to +the old man’s madness. “I thought it was understood that we should not +talk of that until tomorrow.” + +“Then we will not talk of it until tomorrow; but read this paper +today.” + +“I will not irritate him,” thought Edmond, and taking the paper, of +which half was wanting,—having been burnt, no doubt, by some +accident,—he read: + +“this treasure, which may amount to two... + +of Roman crowns in the most distant a... + +of the second opening wh... + +declare to belong to him alo... + +heir. + + “25th April, 149’” + + +“Well!” said Faria, when the young man had finished reading it. + +“Why,” replied Dantès, “I see nothing but broken lines and unconnected +words, which are rendered illegible by fire.” + +“Yes, to you, my friend, who read them for the first time; but not for +me, who have grown pale over them by many nights’ study, and have +reconstructed every phrase, completed every thought.” + +“And do you believe you have discovered the hidden meaning?” + +“I am sure I have, and you shall judge for yourself; but first listen +to the history of this paper.” + +“Silence!” exclaimed Dantès. “Steps approach—I go—adieu!” + +And Dantès, happy to escape the history and explanation which would be +sure to confirm his belief in his friend’s mental instability, glided +like a snake along the narrow passage; while Faria, restored by his +alarm to a certain amount of activity, pushed the stone into place with +his foot, and covered it with a mat in order the more effectually to +avoid discovery. + +It was the governor, who, hearing of Faria’s illness from the jailer, +had come in person to see him. + +Faria sat up to receive him, avoiding all gestures in order that he +might conceal from the governor the paralysis that had already half +stricken him with death. His fear was lest the governor, touched with +pity, might order him to be removed to better quarters, and thus +separate him from his young companion. But fortunately this was not the +case, and the governor left him, convinced that the poor madman, for +whom in his heart he felt a kind of affection, was only troubled with a +slight indisposition. + +During this time, Edmond, seated on his bed with his head in his hands, +tried to collect his scattered thoughts. Faria, since their first +acquaintance, had been on all points so rational and logical, so +wonderfully sagacious, in fact, that he could not understand how so +much wisdom on all points could be allied with madness. Was Faria +deceived as to his treasure, or was all the world deceived as to Faria? + +Dantès remained in his cell all day, not daring to return to his +friend, thinking thus to defer the moment when he should be convinced, +once for all, that the abbé was mad—such a conviction would be so +terrible! + +But, towards the evening after the hour for the customary visit had +gone by, Faria, not seeing the young man appear, tried to move and get +over the distance which separated them. Edmond shuddered when he heard +the painful efforts which the old man made to drag himself along; his +leg was inert, and he could no longer make use of one arm. Edmond was +obliged to assist him, for otherwise he would not have been able to +enter by the small aperture which led to Dantès’ chamber. + +“Here I am, pursuing you remorselessly,” he said with a benignant +smile. “You thought to escape my munificence, but it is in vain. Listen +to me.” + +Edmond saw there was no escape, and placing the old man on his bed, he +seated himself on the stool beside him. + +“You know,” said the abbé, “that I was the secretary and intimate +friend of Cardinal Spada, the last of the princes of that name. I owe +to this worthy lord all the happiness I ever knew. He was not rich, +although the wealth of his family had passed into a proverb, and I +heard the phrase very often, ‘As rich as a Spada.’ But he, like public +rumor, lived on this reputation for wealth; his palace was my paradise. +I was tutor to his nephews, who are dead; and when he was alone in the +world, I tried by absolute devotion to his will, to make up to him all +he had done for me during ten years of unremitting kindness. The +cardinal’s house had no secrets for me. I had often seen my noble +patron annotating ancient volumes, and eagerly searching amongst dusty +family manuscripts. One day when I was reproaching him for his +unavailing searches, and deploring the prostration of mind that +followed them, he looked at me, and, smiling bitterly, opened a volume +relating to the History of the City of Rome. There, in the twentieth +chapter of the Life of Pope Alexander VI., were the following lines, +which I can never forget:— + +“‘The great wars of Romagna had ended; Cæsar Borgia, who had completed +his conquest, had need of money to purchase all Italy. The pope had +also need of money to bring matters to an end with Louis XII. King of +France, who was formidable still in spite of his recent reverses; and +it was necessary, therefore, to have recourse to some profitable +scheme, which was a matter of great difficulty in the impoverished +condition of exhausted Italy. His holiness had an idea. He determined +to make two cardinals.’ + +“By choosing two of the greatest personages of Rome, especially rich +men—_this_ was the return the Holy Father looked for. In the first +place, he could sell the great appointments and splendid offices which +the cardinals already held; and then he had the two hats to sell +besides. There was a third point in view, which will appear hereafter. + +“The pope and Cæsar Borgia first found the two future cardinals; they +were Giovanni Rospigliosi, who held four of the highest dignities of +the Holy See, and Cæsar Spada, one of the noblest and richest of the +Roman nobility; both felt the high honor of such a favor from the pope. +They were ambitious, and Cæsar Borgia soon found purchasers for their +appointments. The result was, that Rospigliosi and Spada paid for being +cardinals, and eight other persons paid for the offices the cardinals +held before their elevation, and thus eight hundred thousand crowns +entered into the coffers of the speculators. + +0239m + + + +“It is time now to proceed to the last part of the speculation. The +pope heaped attentions upon Rospigliosi and Spada, conferred upon them +the insignia of the cardinalate, and induced them to arrange their +affairs and take up their residence at Rome. Then the pope and Cæsar +Borgia invited the two cardinals to dinner. This was a matter of +dispute between the Holy Father and his son. Cæsar thought they could +make use of one of the means which he always had ready for his friends, +that is to say, in the first place, the famous key which was given to +certain persons with the request that they go and open a designated +cupboard. This key was furnished with a small iron point,—a negligence +on the part of the locksmith. When this was pressed to effect the +opening of the cupboard, of which the lock was difficult, the person +was pricked by this small point, and died next day. Then there was the +ring with the lion’s head, which Cæsar wore when he wanted to greet his +friends with a clasp of the hand. The lion bit the hand thus favored, +and at the end of twenty-four hours, the bite was mortal. + +“Cæsar proposed to his father, that they should either ask the +cardinals to open the cupboard, or shake hands with them; but Alexander +VI. replied: ‘Now as to the worthy cardinals, Spada and Rospigliosi, +let us ask both of them to dinner, something tells me that we shall get +that money back. Besides, you forget, Cæsar, an indigestion declares +itself immediately, while a prick or a bite occasions a delay of a day +or two.’ Cæsar gave way before such cogent reasoning, and the cardinals +were consequently invited to dinner. + +“The table was laid in a vineyard belonging to the pope, near San +Pierdarena, a charming retreat which the cardinals knew very well by +report. Rospigliosi, quite set up with his new dignities, went with a +good appetite and his most ingratiating manner. Spada, a prudent man, +and greatly attached to his only nephew, a young captain of the highest +promise, took paper and pen, and made his will. He then sent word to +his nephew to wait for him near the vineyard; but it appeared the +servant did not find him. + +“Spada knew what these invitations meant; since Christianity, so +eminently civilizing, had made progress in Rome, it was no longer a +centurion who came from the tyrant with a message, ‘Cæsar wills that +you die.’ but it was a legate _à latere_, who came with a smile on his +lips to say from the pope, ‘His holiness requests you to dine with +him.’ + +“Spada set out about two o’clock to San Pierdarena. The pope awaited +him. The first sight that attracted the eyes of Spada was that of his +nephew, in full costume, and Cæsar Borgia paying him most marked +attentions. Spada turned pale, as Cæsar looked at him with an ironical +air, which proved that he had anticipated all, and that the snare was +well spread. + +“They began dinner and Spada was only able to inquire of his nephew if +he had received his message. The nephew replied no; perfectly +comprehending the meaning of the question. It was too late, for he had +already drunk a glass of excellent wine, placed for him expressly by +the pope’s butler. Spada at the same moment saw another bottle approach +him, which he was pressed to taste. An hour afterwards a physician +declared they were both poisoned through eating mushrooms. Spada died +on the threshold of the vineyard; the nephew expired at his own door, +making signs which his wife could not comprehend. + +“Then Cæsar and the pope hastened to lay hands on the heritage, under +pretense of seeking for the papers of the dead man. But the inheritance +consisted in this only, a scrap of paper on which Spada had written:—‘I +bequeath to my beloved nephew my coffers, my books, and, amongst +others, my breviary with the gold corners, which I beg he will preserve +in remembrance of his affectionate uncle.’ + +“The heirs sought everywhere, admired the breviary, laid hands on the +furniture, and were greatly astonished that Spada, the rich man, was +really the most miserable of uncles—no treasures—unless they were those +of science, contained in the library and laboratories. That was all. +Cæsar and his father searched, examined, scrutinized, but found +nothing, or at least very little; not exceeding a few thousand crowns +in plate, and about the same in ready money; but the nephew had time to +say to his wife before he expired: ‘Look well among my uncle’s papers; +there is a will.’ + +“They sought even more thoroughly than the august heirs had done, but +it was fruitless. There were two palaces and a vineyard behind the +Palatine Hill; but in these days landed property had not much value, +and the two palaces and the vineyard remained to the family since they +were beneath the rapacity of the pope and his son. Months and years +rolled on. Alexander VI. died, poisoned,—you know by what mistake. +Cæsar, poisoned at the same time, escaped by shedding his skin like a +snake; but the new skin was spotted by the poison till it looked like a +tiger’s. Then, compelled to quit Rome, he went and got himself +obscurely killed in a night skirmish, scarcely noticed in history. + +“After the pope’s death and his son’s exile, it was supposed that the +Spada family would resume the splendid position they had held before +the cardinal’s time; but this was not the case. The Spadas remained in +doubtful ease, a mystery hung over this dark affair, and the public +rumor was, that Cæsar, a better politician than his father, had carried +off from the pope the fortune of the two cardinals. I say the two, +because Cardinal Rospigliosi, who had not taken any precaution, was +completely despoiled. + +“Up to this point,” said Faria, interrupting the thread of his +narrative, “this seems to you very meaningless, no doubt, eh?” + +“Oh, my friend,” cried Dantès, “on the contrary, it seems as if I were +reading a most interesting narrative; go on, I beg of you.” + +“I will. The family began to get accustomed to their obscurity. Years +rolled on, and amongst the descendants some were soldiers, others +diplomatists; some churchmen, some bankers; some grew rich, and some +were ruined. I come now to the last of the family, whose secretary I +was—the Count of Spada. I had often heard him complain of the +disproportion of his rank with his fortune; and I advised him to invest +all he had in an annuity. He did so, and thus doubled his income. The +celebrated breviary remained in the family, and was in the count’s +possession. It had been handed down from father to son; for the +singular clause of the only will that had been found, had caused it to +be regarded as a genuine relic, preserved in the family with +superstitious veneration. It was an illuminated book, with beautiful +Gothic characters, and so weighty with gold, that a servant always +carried it before the cardinal on days of great solemnity. + +“At the sight of papers of all sorts,—titles, contracts, parchments, +which were kept in the archives of the family, all descending from the +poisoned cardinal, I in my turn examined the immense bundles of +documents, like twenty servitors, stewards, secretaries before me; but +in spite of the most exhaustive researches, I found—nothing. Yet I had +read, I had even written a precise history of the Borgia family, for +the sole purpose of assuring myself whether any increase of fortune had +occurred to them on the death of the Cardinal Cæsar Spada; but could +only trace the acquisition of the property of the Cardinal Rospigliosi, +his companion in misfortune. + +“I was then almost assured that the inheritance had neither profited +the Borgias nor the family, but had remained unpossessed like the +treasures of the Arabian Nights, which slept in the bosom of the earth +under the eyes of the genie. I searched, ransacked, counted, calculated +a thousand and a thousand times the income and expenditure of the +family for three hundred years. It was useless. I remained in my +ignorance, and the Count of Spada in his poverty. + +“My patron died. He had reserved from his annuity his family papers, +his library, composed of five thousand volumes, and his famous +breviary. All these he bequeathed to me, with a thousand Roman crowns, +which he had in ready money, on condition that I would have anniversary +masses said for the repose of his soul, and that I would draw up a +genealogical tree and history of his house. All this I did +scrupulously. Be easy, my dear Edmond, we are near the conclusion. + +“In 1807, a month before I was arrested, and a fortnight after the +death of the Count of Spada, on the 25th of December (you will see +presently how the date became fixed in my memory), I was reading, for +the thousandth time, the papers I was arranging, for the palace was +sold to a stranger, and I was going to leave Rome and settle at +Florence, intending to take with me twelve thousand francs I possessed, +my library, and the famous breviary, when, tired with my constant labor +at the same thing, and overcome by a heavy dinner I had eaten, my head +dropped on my hands, and I fell asleep about three o’clock in the +afternoon. + +0243m + + + +“I awoke as the clock was striking six. I raised my head; I was in +utter darkness. I rang for a light, but, as no one came, I determined +to find one for myself. It was indeed but anticipating the simple +manners which I should soon be under the necessity of adopting. I took +a wax-candle in one hand, and with the other groped about for a piece +of paper (my match-box being empty), with which I proposed to get a +light from the small flame still playing on the embers. Fearing, +however, to make use of any valuable piece of paper, I hesitated for a +moment, then recollected that I had seen in the famous breviary, which +was on the table beside me, an old paper quite yellow with age, and +which had served as a marker for centuries, kept there by the request +of the heirs. I felt for it, found it, twisted it up together, and +putting it into the expiring flame, set light to it. + +“But beneath my fingers, as if by magic, in proportion as the fire +ascended, I saw yellowish characters appear on the paper. I grasped it +in my hand, put out the flame as quickly as I could, lighted my taper +in the fire itself, and opened the crumpled paper with inexpressible +emotion, recognizing, when I had done so, that these characters had +been traced in mysterious and sympathetic ink, only appearing when +exposed to the fire; nearly one-third of the paper had been consumed by +the flame. It was that paper you read this morning; read it again, +Dantès, and then I will complete for you the incomplete words and +unconnected sense.” + +Faria, with an air of triumph, offered the paper to Dantès, who this +time read the following words, traced with an ink of a reddish color +resembling rust: + + “This 25th day of April, 1498, be... + + Alexander VI., and fearing that not... + + he may desire to become my heir, and re... + + and Bentivoglio, who were poisoned,... + + my sole heir, that I have bu... + + and has visited with me, that is, in... + + Island of Monte Cristo, all I poss... + + jewels, diamonds, gems; that I alone... + + may amount to nearly two mil... + + will find on raising the twentieth ro... + + creek to the east in a right line. Two open... + + in these caves; the treasure is in the furthest a... + + which treasure I bequeath and leave en... + + as my sole heir. + + “25th April, 1498. + + “Cæs... + + +“And now,” said the abbé, “read this other paper;” and he presented to +Dantès a second leaf with fragments of lines written on it, which +Edmond read as follows: + + “...ing invited to dine by his Holiness + + ...content with making me pay for my hat, + + ...serves for me the fate of Cardinals Caprara + + ...I declare to my nephew, Guido Spada + + ...ried in a place he knows + + ...the caves of the small + + ...essed of ingots, gold, money, + + ...know of the existence of this treasure, which + + ...lions of Roman crowns, and which he + + ...ck from the small + + ...ings have been made + + ...ngle in the second; + + ...tire to him + + ...ar † Spada.” + + +Faria followed him with an excited look. + +“And now,” he said, when he saw that Dantès had read the last line, +“put the two fragments together, and judge for yourself.” Dantès +obeyed, and the conjointed pieces gave the following: + +0245m + + + +“This 25th day of April, 1498, be...ing invited to dine by his Holiness +Alexander VI., and fearing that not...content with making me pay for my +hat, he may desire to become my heir, and re...serves for me the fate +of Cardinals Caprara and Bentivoglio, who were poisoned,...I declare to +my nephew, Guido Spada, my sole heir, that I have bu...ried in a place +he knows and has visited with me, that is, in...the caves of the small +Island of Monte Cristo, all I poss...essed of ingots, gold, money, +jewels, diamonds, gems; that I alone...know of the existence of this +treasure, which may amount to nearly two mil...lions of Roman crowns, +and which he will find on raising the twentieth ro...ck from the small +creek to the east in a right line. Two open...ings have been made in +these caves; the treasure is in the furthest a...ngle in the second; +which treasure I bequeath and leave en...tire to him as my sole heir. +“25th April, 1498. “Cæs...ar † Spada.” + +“Well, do you comprehend now?” inquired Faria. + +“It is the declaration of Cardinal Spada, and the will so long sought +for,” replied Edmond, still incredulous. + +“Yes; a thousand times, yes!” + +“And who completed it as it now is?” + +“I did. Aided by the remaining fragment, I guessed the rest; measuring +the length of the lines by those of the paper, and divining the hidden +meaning by means of what was in part revealed, as we are guided in a +cavern by the small ray of light above us.” + +“And what did you do when you arrived at this conclusion?” + +“I resolved to set out, and did set out at that very instant, carrying +with me the beginning of my great work, the unity of the Italian +kingdom; but for some time the imperial police (who at this period, +quite contrary to what Napoleon desired so soon as he had a son born to +him, wished for a partition of provinces) had their eyes on me; and my +hasty departure, the cause of which they were unable to guess, having +aroused their suspicions, I was arrested at the very moment I was +leaving Piombino. + +“Now,” continued Faria, addressing Dantès with an almost paternal +expression, “now, my dear fellow, you know as much as I do myself. If +we ever escape together, half this treasure is yours; if I die here, +and you escape alone, the whole belongs to you.” + +“But,” inquired Dantès hesitating, “has this treasure no more +legitimate possessor in the world than ourselves?” + +“No, no, be easy on that score; the family is extinct. The last Count +of Spada, moreover, made me his heir, bequeathing to me this symbolic +breviary, he bequeathed to me all it contained; no, no, make your mind +satisfied on that point. If we lay hands on this fortune, we may enjoy +it without remorse.” + +“And you say this treasure amounts to——” + +“Two millions of Roman crowns; nearly thirteen millions of our money.”2 + +“Impossible!” said Dantès, staggered at the enormous amount. + +“Impossible? and why?” asked the old man. “The Spada family was one of +the oldest and most powerful families of the fifteenth century; and in +those times, when other opportunities for investment were wanting, such +accumulations of gold and jewels were by no means rare; there are at +this day Roman families perishing of hunger, though possessed of nearly +a million in diamonds and jewels, handed down by entail, and which they +cannot touch.” + +Edmond thought he was in a dream—he wavered between incredulity and +joy. + +“I have only kept this secret so long from you,” continued Faria, “that +I might test your character, and then surprise you. Had we escaped +before my attack of catalepsy, I should have conducted you to Monte +Cristo; now,” he added, with a sigh, “it is you who will conduct me +thither. Well, Dantès, you do not thank me?” + +“This treasure belongs to you, my dear friend,” replied Dantès, “and to +you only. I have no right to it. I am no relation of yours.” + +“You are my son, Dantès,” exclaimed the old man. “You are the child of +my captivity. My profession condemns me to celibacy. God has sent you +to me to console, at one and the same time, the man who could not be a +father, and the prisoner who could not get free.” + +And Faria extended the arm of which alone the use remained to him to +the young man, who threw himself upon his neck and wept. + + + + Chapter 19. The Third Attack + +Now that this treasure, which had so long been the object of the abbé’s +meditations, could insure the future happiness of him whom Faria really +loved as a son, it had doubled its value in his eyes, and every day he +expatiated on the amount, explaining to Dantès all the good which, with +thirteen or fourteen millions of francs, a man could do in these days +to his friends; and then Dantès’ countenance became gloomy, for the +oath of vengeance he had taken recurred to his memory, and he reflected +how much ill, in these times, a man with thirteen or fourteen millions +could do to his enemies. + +The abbé did not know the Island of Monte Cristo; but Dantès knew it, +and had often passed it, situated twenty-five miles from Pianosa, +between Corsica and the Island of Elba, and had once touched there. +This island was, always had been, and still is, completely deserted. It +is a rock of almost conical form, which looks as though it had been +thrust up by volcanic force from the depth to the surface of the ocean. +Dantès drew a plan of the island for Faria, and Faria gave Dantès +advice as to the means he should employ to recover the treasure. But +Dantès was far from being as enthusiastic and confident as the old man. +It was past a question now that Faria was not a lunatic, and the way in +which he had achieved the discovery, which had given rise to the +suspicion of his madness, increased Edmond’s admiration of him; but at +the same time Dantès could not believe that the deposit, supposing it +had ever existed, still existed; and though he considered the treasure +as by no means chimerical, he yet believed it was no longer there. + +However, as if fate resolved on depriving the prisoners of their last +chance, and making them understand that they were condemned to +perpetual imprisonment, a new misfortune befell them; the gallery on +the sea side, which had long been in ruins, was rebuilt. They had +repaired it completely, and stopped up with vast masses of stone the +hole Dantès had partly filled in. But for this precaution, which, it +will be remembered, the abbé had made to Edmond, the misfortune would +have been still greater, for their attempt to escape would have been +detected, and they would undoubtedly have been separated. Thus a new, a +stronger, and more inexorable barrier was interposed to cut off the +realization of their hopes. + +“You see,” said the young man, with an air of sorrowful resignation, to +Faria, “that God deems it right to take from me any claim to merit for +what you call my devotion to you. I have promised to remain forever +with you, and now I could not break my promise if I would. The treasure +will be no more mine than yours, and neither of us will quit this +prison. But my real treasure is not that, my dear friend, which awaits +me beneath the sombre rocks of Monte Cristo, it is your presence, our +living together five or six hours a day, in spite of our jailers; it is +the rays of intelligence you have elicited from my brain, the languages +you have implanted in my memory, and which have taken root there with +all their philological ramifications. These different sciences that you +have made so easy to me by the depth of the knowledge you possess of +them, and the clearness of the principles to which you have reduced +them—this is my treasure, my beloved friend, and with this you have +made me rich and happy. Believe me, and take comfort, this is better +for me than tons of gold and cases of diamonds, even were they not as +problematical as the clouds we see in the morning floating over the +sea, which we take for _terra firma_, and which evaporate and vanish as +we draw near to them. To have you as long as possible near me, to hear +your eloquent speech,—which embellishes my mind, strengthens my soul, +and makes my whole frame capable of great and terrible things, if I +should ever be free,—so fills my whole existence, that the despair to +which I was just on the point of yielding when I knew you, has no +longer any hold over me; and this—this is my fortune—not chimerical, +but actual. I owe you my real good, my present happiness; and all the +sovereigns of the earth, even Cæsar Borgia himself, could not deprive +me of this.” + +Thus, if not actually happy, yet the days these two unfortunates passed +together went quickly. Faria, who for so long a time had kept silence +as to the treasure, now perpetually talked of it. As he had prophesied +would be the case, he remained paralyzed in the right arm and the left +leg, and had given up all hope of ever enjoying it himself. But he was +continually thinking over some means of escape for his young companion, +and anticipating the pleasure he would enjoy. For fear the letter might +be some day lost or stolen, he compelled Dantès to learn it by heart; +and Dantès knew it from the first to the last word. Then he destroyed +the second portion, assured that if the first were seized, no one would +be able to discover its real meaning. Whole hours sometimes passed +while Faria was giving instructions to Dantès,—instructions which were +to serve him when he was at liberty. Then, once free, from the day and +hour and moment when he was so, he could have but one only thought, +which was, to gain Monte Cristo by some means, and remain there alone +under some pretext which would arouse no suspicions; and once there, to +endeavor to find the wonderful caverns, and search in the appointed +spot,—the appointed spot, be it remembered, being the farthest angle in +the second opening. + +In the meanwhile the hours passed, if not rapidly, at least tolerably. +Faria, as we have said, without having recovered the use of his hand +and foot, had regained all the clearness of his understanding, and had +gradually, besides the moral instructions we have detailed, taught his +youthful companion the patient and sublime duty of a prisoner, who +learns to make something from nothing. They were thus perpetually +employed,—Faria, that he might not see himself grow old; Dantès, for +fear of recalling the almost extinct past which now only floated in his +memory like a distant light wandering in the night. So life went on for +them as it does for those who are not victims of misfortune and whose +activities glide along mechanically and tranquilly beneath the eye of +Providence. + +But beneath this superficial calm there were in the heart of the young +man, and perhaps in that of the old man, many repressed desires, many +stifled sighs, which found vent when Faria was left alone, and when +Edmond returned to his cell. + +One night Edmond awoke suddenly, believing that he heard someone +calling him. He opened his eyes upon utter darkness. His name, or +rather a plaintive voice which essayed to pronounce his name, reached +him. He sat up in bed and a cold sweat broke out upon his brow. +Undoubtedly the call came from Faria’s dungeon. + +“Alas,” murmured Edmond; “can it be?” + +He moved his bed, drew up the stone, rushed into the passage, and +reached the opposite extremity; the secret entrance was open. By the +light of the wretched and wavering lamp, of which we have spoken, +Dantès saw the old man, pale, but yet erect, clinging to the bedstead. +His features were writhing with those horrible symptoms which he +already knew, and which had so seriously alarmed him when he saw them +for the first time. + +“Alas, my dear friend,” said Faria in a resigned tone, “you understand, +do you not, and I need not attempt to explain to you?” + +Edmond uttered a cry of agony, and, quite out of his senses, rushed +towards the door, exclaiming, “Help, help!” + +Faria had just sufficient strength to restrain him. + +“Silence,” he said, “or you are lost. We must now only think of you, my +dear friend, and so act as to render your captivity supportable or your +flight possible. It would require years to do again what I have done +here, and the results would be instantly destroyed if our jailers knew +we had communicated with each other. Besides, be assured, my dear +Edmond, the dungeon I am about to leave will not long remain empty; +some other unfortunate being will soon take my place, and to him you +will appear like an angel of salvation. Perhaps he will be young, +strong, and enduring, like yourself, and will aid you in your escape, +while I have been but a hindrance. You will no longer have half a dead +body tied to you as a drag to all your movements. At length Providence +has done something for you; he restores to you more than he takes away, +and it was time I should die.” + +Edmond could only clasp his hands and exclaim, “Oh, my friend, my +friend, speak not thus!” and then resuming all his presence of mind, +which had for a moment staggered under this blow, and his strength, +which had failed at the words of the old man, he said, “Oh, I have +saved you once, and I will save you a second time!” And raising the +foot of the bed, he drew out the phial, still a third filled with the +red liquor. + +“See,” he exclaimed, “there remains still some of the magic draught. +Quick, quick! tell me what I must do this time; are there any fresh +instructions? Speak, my friend; I listen.” + +“There is not a hope,” replied Faria, shaking his head, “but no matter; +God wills it that man whom he has created, and in whose heart he has so +profoundly rooted the love of life, should do all in his power to +preserve that existence, which, however painful it may be, is yet +always so dear.” + +“Oh, yes, yes!” exclaimed Dantès; “and I tell you that I will save you +yet.” + +“Well, then, try. The cold gains upon me. I feel the blood flowing +towards my brain. These horrible chills, which make my teeth chatter +and seem to dislocate my bones, begin to pervade my whole frame; in +five minutes the malady will reach its height, and in a quarter of an +hour there will be nothing left of me but a corpse.” + +“Oh!” exclaimed Dantès, his heart wrung with anguish. + +“Do as you did before, only do not wait so long, all the springs of +life are now exhausted in me, and death,” he continued, looking at his +paralyzed arm and leg, “has but half its work to do. If, after having +made me swallow twelve drops instead of ten, you see that I do not +recover, then pour the rest down my throat. Now lift me on my bed, for +I can no longer support myself.” + +Edmond took the old man in his arms, and laid him on the bed. + +“And now, my dear friend,” said Faria, “sole consolation of my wretched +existence,—you whom Heaven gave me somewhat late, but still gave me, a +priceless gift, and for which I am most grateful,—at the moment of +separating from you forever, I wish you all the happiness and all the +prosperity you so well deserve. My son, I bless thee!” + +The young man cast himself on his knees, leaning his head against the +old man’s bed. + +“Listen, now, to what I say in this my dying moment. The treasure of +the Spadas exists. God grants me the boon of vision unrestricted by +time or space. I see it in the depths of the inner cavern. My eyes +pierce the inmost recesses of the earth, and are dazzled at the sight +of so much riches. If you do escape, remember that the poor abbé, whom +all the world called mad, was not so. Hasten to Monte Cristo—avail +yourself of the fortune—for you have indeed suffered long enough.” + +A violent convulsion attacked the old man. Dantès raised his head and +saw Faria’s eyes injected with blood. It seemed as if a flow of blood +had ascended from the chest to the head. + +“Adieu, adieu!” murmured the old man, clasping Edmond’s hand +convulsively—“adieu!” + +“Oh, no,—no, not yet,” he cried; “do not forsake me! Oh, succor him! +Help—help—help!” + +“Hush! hush!” murmured the dying man, “that they may not separate us if +you save me!” + +“You are right. Oh, yes, yes; be assured I shall save you! Besides, +although you suffer much, you do not seem to be in such agony as you +were before.” + +“Do not mistake! I suffer less because there is in me less strength to +endure. At your age we have faith in life; it is the privilege of youth +to believe and hope, but old men see death more clearly. Oh, ’tis +here—’tis here—’tis over—my sight is gone—my senses fail! Your hand, +Dantès! Adieu! adieu!” + +And raising himself by a final effort, in which he summoned all his +faculties, he said,—“Monte Cristo, forget not Monte Cristo!” And he +fell back on the bed. + +The crisis was terrible, and a rigid form with twisted limbs, swollen +eyelids, and lips flecked with bloody foam, lay on the bed of torture, +in place of the intellectual being who so lately rested there. + +Dantès took the lamp, placed it on a projecting stone above the bed, +whence its tremulous light fell with strange and fantastic ray on the +distorted countenance and motionless, stiffened body. With steady gaze +he awaited confidently the moment for administering the restorative. + +When he believed that the right moment had arrived, he took the knife, +pried open the teeth, which offered less resistance than before, +counted one after the other twelve drops, and watched; the phial +contained, perhaps, twice as much more. He waited ten minutes, a +quarter of an hour, half an hour,—no change took place. Trembling, his +hair erect, his brow bathed with perspiration, he counted the seconds +by the beating of his heart. Then he thought it was time to make the +last trial, and he put the phial to the purple lips of Faria, and +without having occasion to force open his jaws, which had remained +extended, he poured the whole of the liquid down his throat. + +0255m + + + +The draught produced a galvanic effect, a violent trembling pervaded +the old man’s limbs, his eyes opened until it was fearful to gaze upon +them, he heaved a sigh which resembled a shriek, and then his convulsed +body returned gradually to its former immobility, the eyes remaining +open. + +Half an hour, an hour, an hour and a half elapsed, and during this +period of anguish, Edmond leaned over his friend, his hand applied to +his heart, and felt the body gradually grow cold, and the heart’s +pulsation become more and more deep and dull, until at length it +stopped; the last movement of the heart ceased, the face became livid, +the eyes remained open, but the eyeballs were glazed. + +It was six o’clock in the morning, the dawn was just breaking, and its +feeble ray came into the dungeon, and paled the ineffectual light of +the lamp. Strange shadows passed over the countenance of the dead man, +and at times gave it the appearance of life. While the struggle between +day and night lasted, Dantès still doubted; but as soon as the daylight +gained the pre-eminence, he saw that he was alone with a corpse. Then +an invincible and extreme terror seized upon him, and he dared not +again press the hand that hung out of bed, he dared no longer to gaze +on those fixed and vacant eyes, which he tried many times to close, but +in vain—they opened again as soon as shut. He extinguished the lamp, +carefully concealed it, and then went away, closing as well as he could +the entrance to the secret passage by the large stone as he descended. + +It was time, for the jailer was coming. On this occasion he began his +rounds at Dantès’ cell, and on leaving him he went on to Faria’s +dungeon, taking thither breakfast and some linen. Nothing betokened +that the man knew anything of what had occurred. He went on his way. + +Dantès was then seized with an indescribable desire to know what was +going on in the dungeon of his unfortunate friend. He therefore +returned by the subterraneous gallery, and arrived in time to hear the +exclamations of the turnkey, who called out for help. Other turnkeys +came, and then was heard the regular tramp of soldiers. Last of all +came the governor. + +Edmond heard the creaking of the bed as they moved the corpse, heard +the voice of the governor, who asked them to throw water on the dead +man’s face; and seeing that, in spite of this application, the prisoner +did not recover, they sent for the doctor. The governor then went out, +and words of pity fell on Dantès’ listening ears, mingled with brutal +laughter. + +“Well, well,” said one, “the madman has gone to look after his +treasure. Good journey to him!” + +“With all his millions, he will not have enough to pay for his shroud!” +said another. + +“Oh,” added a third voice, “the shrouds of the Château d’If are not +dear!” + +0257m + + + +“Perhaps,” said one of the previous speakers, “as he was a churchman, +they may go to some expense in his behalf.” + +“They may give him the honors of the sack.” + +Edmond did not lose a word, but comprehended very little of what was +said. The voices soon ceased, and it seemed to him as if everyone had +left the cell. Still he dared not to enter, as they might have left +some turnkey to watch the dead. He remained, therefore, mute and +motionless, hardly venturing to breathe. At the end of an hour, he +heard a faint noise, which increased. It was the governor who returned, +followed by the doctor and other attendants. There was a moment’s +silence,—it was evident that the doctor was examining the dead body. +The inquiries soon commenced. + +The doctor analyzed the symptoms of the malady to which the prisoner +had succumbed, and declared that he was dead. Questions and answers +followed in a nonchalant manner that made Dantès indignant, for he felt +that all the world should have for the poor abbé a love and respect +equal to his own. + +“I am very sorry for what you tell me,” said the governor, replying to +the assurance of the doctor, “that the old man is really dead; for he +was a quiet, inoffensive prisoner, happy in his folly, and required no +watching.” + +“Ah,” added the turnkey, “there was no occasion for watching him; he +would have stayed here fifty years, I’ll answer for it, without any +attempt to escape.” + +“Still,” said the governor, “I believe it will be requisite, +notwithstanding your certainty, and not that I doubt your science, but +in discharge of my official duty, that we should be perfectly assured +that the prisoner is dead.” + +There was a moment of complete silence, during which Dantès, still +listening, knew that the doctor was examining the corpse a second time. + +“You may make your mind easy,” said the doctor; “he is dead. I will +answer for that.” + +“You know, sir,” said the governor, persisting, “that we are not +content in such cases as this with such a simple examination. In spite +of all appearances, be so kind, therefore, as to finish your duty by +fulfilling the formalities described by law.” + +“Let the irons be heated,” said the doctor; “but really it is a useless +precaution.” + +This order to heat the irons made Dantès shudder. He heard hasty steps, +the creaking of a door, people going and coming, and some minutes +afterwards a turnkey entered, saying: + +“Here is the brazier, lighted.” + +There was a moment’s silence, and then was heard the crackling of +burning flesh, of which the peculiar and nauseous smell penetrated even +behind the wall where Dantès was listening in horror. The perspiration +poured forth upon the young man’s brow, and he felt as if he should +faint. + +“You see, sir, he is really dead,” said the doctor; “this burn in the +heel is decisive. The poor fool is cured of his folly, and delivered +from his captivity.” + +“Wasn’t his name Faria?” inquired one of the officers who accompanied +the governor. + +0259m + + + +“Yes, sir; and, as he said, it was an ancient name. He was, too, very +learned, and rational enough on all points which did not relate to his +treasure; but on that, indeed, he was intractable.” + +“It is the sort of malady which we call monomania,” said the doctor. + +“You had never anything to complain of?” said the governor to the +jailer who had charge of the abbé. + +“Never, sir,” replied the jailer, “never; on the contrary, he sometimes +amused me very much by telling me stories. One day, too, when my wife +was ill, he gave me a prescription which cured her.” + +“Ah, ah!” said the doctor, “I did not know that I had a rival; but I +hope, governor, that you will show him all proper respect in +consequence.” + +“Yes, yes, make your mind easy, he shall be decently interred in the +newest sack we can find. Will that satisfy you?” + +“Must this last formality take place in your presence, sir?” inquired a +turnkey. + +“Certainly. But make haste—I cannot stay here all day.” Other +footsteps, going and coming, were now heard, and a moment afterwards +the noise of rustling canvas reached Dantès’ ears, the bed creaked, and +the heavy footfall of a man who lifts a weight sounded on the floor; +then the bed again creaked under the weight deposited upon it. + +“This evening,” said the governor. + +“Will there be any mass?” asked one of the attendants. + +“That is impossible,” replied the governor. “The chaplain of the +château came to me yesterday to beg for leave of absence, in order to +take a trip to Hyères for a week. I told him I would attend to the +prisoners in his absence. If the poor abbé had not been in such a +hurry, he might have had his requiem.” + +“Pooh, pooh;” said the doctor, with the impiety usual in persons of his +profession; “he is a churchman. God will respect his profession, and +not give the devil the wicked delight of sending him a priest.” A shout +of laughter followed this brutal jest. Meanwhile the operation of +putting the body in the sack was going on. + +“This evening,” said the governor, when the task was ended. + +“At what hour?” inquired a turnkey. + +“Why, about ten or eleven o’clock.” + +“Shall we watch by the corpse?” + +“Of what use would it be? Shut the dungeon as if he were alive—that is +all.” + +Then the steps retreated, and the voices died away in the distance; the +noise of the door, with its creaking hinges and bolts ceased, and a +silence more sombre than that of solitude ensued,—the silence of death, +which was all-pervasive, and struck its icy chill to the very soul of +Dantès. + +Then he raised the flag-stone cautiously with his head, and looked +carefully around the chamber. It was empty, and Dantès emerged from the +tunnel. + + + + Chapter 20. The Cemetery of the Château d’If + +On the bed, at full length, and faintly illuminated by the pale light +that came from the window, lay a sack of canvas, and under its rude +folds was stretched a long and stiffened form; it was Faria’s last +winding-sheet,—a winding-sheet which, as the turnkey said, cost so +little. Everything was in readiness. A barrier had been placed between +Dantès and his old friend. No longer could Edmond look into those +wide-open eyes which had seemed to be penetrating the mysteries of +death; no longer could he clasp the hand which had done so much to make +his existence blessed. Faria, the beneficent and cheerful companion, +with whom he was accustomed to live so intimately, no longer breathed. +He seated himself on the edge of that terrible bed, and fell into +melancholy and gloomy reverie. + +Alone! he was alone again! again condemned to silence—again face to +face with nothingness! Alone!—never again to see the face, never again +to hear the voice of the only human being who united him to earth! Was +not Faria’s fate the better, after all—to solve the problem of life at +its source, even at the risk of horrible suffering? + +The idea of suicide, which his friend had driven away and kept away by +his cheerful presence, now hovered like a phantom over the abbé’s dead +body. + +“If I could die,” he said, “I should go where he goes, and should +assuredly find him again. But how to die? It is very easy,” he went on +with a smile; “I will remain here, rush on the first person that opens +the door, strangle him, and then they will guillotine me.” + +But excessive grief is like a storm at sea, where the frail bark is +tossed from the depths to the top of the wave. Dantès recoiled from the +idea of so infamous a death, and passed suddenly from despair to an +ardent desire for life and liberty. + +“Die? oh, no,” he exclaimed—“not die now, after having lived and +suffered so long and so much! Die? yes, had I died years ago; but now +to die would be, indeed, to give way to the sarcasm of destiny. No, I +want to live; I shall struggle to the very last; I will yet win back +the happiness of which I have been deprived. Before I die I must not +forget that I have my executioners to punish, and perhaps, too, who +knows, some friends to reward. Yet they will forget me here, and I +shall die in my dungeon like Faria.” + +As he said this, he became silent and gazed straight before him like +one overwhelmed with a strange and amazing thought. Suddenly he arose, +lifted his hand to his brow as if his brain were giddy, paced twice or +thrice round the dungeon, and then paused abruptly by the bed. + +“Just God!” he muttered, “whence comes this thought? Is it from thee? +Since none but the dead pass freely from this dungeon, let me take the +place of the dead!” + +Without giving himself time to reconsider his decision, and, indeed, +that he might not allow his thoughts to be distracted from his +desperate resolution, he bent over the appalling shroud, opened it with +the knife which Faria had made, drew the corpse from the sack, and bore +it along the tunnel to his own chamber, laid it on his couch, tied +around its head the rag he wore at night around his own, covered it +with his counterpane, once again kissed the ice-cold brow, and tried +vainly to close the resisting eyes, which glared horribly, turned the +head towards the wall, so that the jailer might, when he brought the +evening meal, believe that he was asleep, as was his frequent custom; +entered the tunnel again, drew the bed against the wall, returned to +the other cell, took from the hiding-place the needle and thread, flung +off his rags, that they might feel only naked flesh beneath the coarse +canvas, and getting inside the sack, placed himself in the posture in +which the dead body had been laid, and sewed up the mouth of the sack +from the inside. + +He would have been discovered by the beating of his heart, if by any +mischance the jailers had entered at that moment. Dantès might have +waited until the evening visit was over, but he was afraid that the +governor would change his mind, and order the dead body to be removed +earlier. In that case his last hope would have been destroyed. + +Now his plans were fully made, and this is what he intended to do. If +while he was being carried out the grave-diggers should discover that +they were bearing a live instead of a dead body, Dantès did not intend +to give them time to recognize him, but with a sudden cut of the knife, +he meant to open the sack from top to bottom, and, profiting by their +alarm, escape; if they tried to catch him, he would use his knife to +better purpose. + +0263m + + + +If they took him to the cemetery and laid him in a grave, he would +allow himself to be covered with earth, and then, as it was night, the +grave-diggers could scarcely have turned their backs before he would +have worked his way through the yielding soil and escaped. He hoped +that the weight of earth would not be so great that he could not +overcome it. If he was detected in this and the earth proved too heavy, +he would be stifled, and then—so much the better, all would be over. + +Dantès had not eaten since the preceding evening, but he had not +thought of hunger, nor did he think of it now. His situation was too +precarious to allow him even time to reflect on any thought but one. + +The first risk that Dantès ran was, that the jailer, when he brought +him his supper at seven o’clock, might perceive the change that had +been made; fortunately, twenty times at least, from misanthropy or +fatigue, Dantès had received his jailer in bed, and then the man placed +his bread and soup on the table, and went away without saying a word. +This time the jailer might not be as silent as usual, but speak to +Dantès, and seeing that he received no reply, go to the bed, and thus +discover all. + +When seven o’clock came, Dantès’ agony really began. His hand placed +upon his heart was unable to redress its throbbings, while, with the +other he wiped the perspiration from his temples. From time to time +chills ran through his whole body, and clutched his heart in a grasp of +ice. Then he thought he was going to die. Yet the hours passed on +without any unusual disturbance, and Dantès knew that he had escaped +the first peril. It was a good augury. + +At length, about the hour the governor had appointed, footsteps were +heard on the stairs. Edmond felt that the moment had arrived, summoned +up all his courage, held his breath, and would have been happy if at +the same time he could have repressed the throbbing of his veins. The +footsteps—they were double—paused at the door—and Dantès guessed that +the two grave-diggers had come to seek him—this idea was soon converted +into certainty, when he heard the noise they made in putting down the +hand-bier. + +The door opened, and a dim light reached Dantès’ eyes through the +coarse sack that covered him; he saw two shadows approach his bed, a +third remaining at the door with a torch in its hand. The two men, +approaching the ends of the bed, took the sack by its extremities. + +“He’s heavy, though, for an old and thin man,” said one, as he raised +the head. + +“They say every year adds half a pound to the weight of the bones,” +said another, lifting the feet. + +“Have you tied the knot?” inquired the first speaker. + +“What would be the use of carrying so much more weight?” was the reply, +“I can do that when we get there.” + +“Yes, you’re right,” replied the companion. + +“What’s the knot for?” thought Dantès. + +They deposited the supposed corpse on the bier. Edmond stiffened +himself in order to play the part of a dead man, and then the party, +lighted by the man with the torch, who went first, ascended the stairs. +Suddenly he felt the fresh and sharp night air, and Dantès knew that +the mistral was blowing. It was a sensation in which pleasure and pain +were strangely mingled. + +The bearers went on for twenty paces, then stopped, putting the bier +down on the ground. One of them went away, and Dantès heard his shoes +striking on the pavement. + +“Where am I?” he asked himself. + +“Really, he is by no means a light load!” said the other bearer, +sitting on the edge of the hand-barrow. + +Dantès’ first impulse was to escape, but fortunately he did not attempt +it. + +“Give us a light,” said the other bearer, “or I shall never find what I +am looking for.” + +The man with the torch complied, although not asked in the most polite +terms. + +“What can he be looking for?” thought Edmond. “The spade, perhaps.” + +An exclamation of satisfaction indicated that the grave-digger had +found the object of his search. “Here it is at last,” he said, “not +without some trouble, though.” + +“Yes,” was the answer, “but it has lost nothing by waiting.” + +As he said this, the man came towards Edmond, who heard a heavy +metallic substance laid down beside him, and at the same moment a cord +was fastened round his feet with sudden and painful violence. + +“Well, have you tied the knot?” inquired the grave-digger, who was +looking on. + +“Yes, and pretty tight too, I can tell you,” was the answer. + +“Move on, then.” And the bier was lifted once more, and they proceeded. + +They advanced fifty paces farther, and then stopped to open a door, +then went forward again. The noise of the waves dashing against the +rocks on which the château is built, reached Dantès’ ear distinctly as +they went forward. + +“Bad weather!” observed one of the bearers; “not a pleasant night for a +dip in the sea.” + +“Why, yes, the abbé runs a chance of being wet,” said the other; and +then there was a burst of brutal laughter. + +Dantès did not comprehend the jest, but his hair stood erect on his +head. + +“Well, here we are at last,” said one of them. + +“A little farther—a little farther,” said the other. “You know very +well that the last was stopped on his way, dashed on the rocks, and the +governor told us next day that we were careless fellows.” + +They ascended five or six more steps, and then Dantès felt that they +took him, one by the head and the other by the heels, and swung him to +and fro. + +“One!” said the grave-diggers, “two! three!” + +And at the same instant Dantès felt himself flung into the air like a +wounded bird, falling, falling, with a rapidity that made his blood +curdle. Although drawn downwards by the heavy weight which hastened his +rapid descent, it seemed to him as if the fall lasted for a century. At +last, with a horrible splash, he darted like an arrow into the ice-cold +water, and as he did so he uttered a shrill cry, stifled in a moment by +his immersion beneath the waves. + +Dantès had been flung into the sea, and was dragged into its depths by +a thirty-six-pound shot tied to his feet. + +The sea is the cemetery of the Château d’If. + +0267m + + + + + Chapter 21. The Island of Tiboulen + +Dantès, although stunned and almost suffocated, had sufficient presence +of mind to hold his breath, and as his right hand (prepared as he was +for every chance) held his knife open, he rapidly ripped up the sack, +extricated his arm, and then his body; but in spite of all his efforts +to free himself from the shot, he felt it dragging him down still +lower. He then bent his body, and by a desperate effort severed the +cord that bound his legs, at the moment when it seemed as if he were +actually strangled. With a mighty leap he rose to the surface of the +sea, while the shot dragged down to the depths the sack that had so +nearly become his shroud. + +Dantès waited only to get breath, and then dived, in order to avoid +being seen. When he arose a second time, he was fifty paces from where +he had first sunk. He saw overhead a black and tempestuous sky, across +which the wind was driving clouds that occasionally suffered a +twinkling star to appear; before him was the vast expanse of waters, +sombre and terrible, whose waves foamed and roared as if before the +approach of a storm. Behind him, blacker than the sea, blacker than the +sky, rose phantom-like the vast stone structure, whose projecting crags +seemed like arms extended to seize their prey, and on the highest rock +was a torch lighting two figures. + +He fancied that these two forms were looking at the sea; doubtless +these strange grave-diggers had heard his cry. Dantès dived again, and +remained a long time beneath the water. This was an easy feat to him, +for he usually attracted a crowd of spectators in the bay before the +lighthouse at Marseilles when he swam there, and was unanimously +declared to be the best swimmer in the port. When he came up again the +light had disappeared. + +He must now get his bearings. Ratonneau and Pomègue are the nearest +islands of all those that surround the Château d’If, but Ratonneau and +Pomègue are inhabited, as is also the islet of Daume. Tiboulen and +Lemaire were therefore the safest for Dantès’ venture. The islands of +Tiboulen and Lemaire are a league from the Château d’If; Dantès, +nevertheless, determined to make for them. But how could he find his +way in the darkness of the night? + +At this moment he saw the light of Planier, gleaming in front of him +like a star. By leaving this light on the right, he kept the Island of +Tiboulen a little on the left; by turning to the left, therefore, he +would find it. But, as we have said, it was at least a league from the +Château d’If to this island. Often in prison Faria had said to him, +when he saw him idle and inactive: + +“Dantès, you must not give way to this listlessness; you will be +drowned if you seek to escape, and your strength has not been properly +exercised and prepared for exertion.” + +These words rang in Dantès’ ears, even beneath the waves; he hastened +to cleave his way through them to see if he had not lost his strength. +He found with pleasure that his captivity had taken away nothing of his +power, and that he was still master of that element on whose bosom he +had so often sported as a boy. + +Fear, that relentless pursuer, clogged Dantès’ efforts. He listened for +any sound that might be audible, and every time that he rose to the top +of a wave he scanned the horizon, and strove to penetrate the darkness. +He fancied that every wave behind him was a pursuing boat, and he +redoubled his exertions, increasing rapidly his distance from the +château, but exhausting his strength. He swam on still, and already the +terrible château had disappeared in the darkness. He could not see it, +but he _felt_ its presence. + +An hour passed, during which Dantès, excited by the feeling of freedom, +continued to cleave the waves. + +“Let us see,” said he, “I have swum above an hour, but as the wind is +against me, that has retarded my speed; however, if I am not mistaken, +I must be close to Tiboulen. But what if I were mistaken?” + +A shudder passed over him. He sought to tread water, in order to rest +himself; but the sea was too violent, and he felt that he could not +make use of this means of recuperation. + +“Well,” said he, “I will swim on until I am worn out, or the cramp +seizes me, and then I shall sink;” and he struck out with the energy of +despair. + +Suddenly the sky seemed to him to become still darker and more dense, +and heavy clouds seemed to sweep down towards him; at the same time he +felt a sharp pain in his knee. He fancied for a moment that he had been +shot, and listened for the report; but he heard nothing. Then he put +out his hand, and encountered an obstacle and with another stroke knew +that he had gained the shore. + +Before him rose a grotesque mass of rocks, that resembled nothing so +much as a vast fire petrified at the moment of its most fervent +combustion. It was the Island of Tiboulen. Dantès rose, advanced a few +steps, and, with a fervent prayer of gratitude, stretched himself on +the granite, which seemed to him softer than down. Then, in spite of +the wind and rain, he fell into the deep, sweet sleep of utter +exhaustion. At the expiration of an hour Edmond was awakened by the +roar of thunder. The tempest was let loose and beating the atmosphere +with its mighty wings; from time to time a flash of lightning stretched +across the heavens like a fiery serpent, lighting up the clouds that +rolled on in vast chaotic waves. + +Dantès had not been deceived—he had reached the first of the two +islands, which was, in fact, Tiboulen. He knew that it was barren and +without shelter; but when the sea became more calm, he resolved to +plunge into its waves again, and swim to Lemaire, equally arid, but +larger, and consequently better adapted for concealment. + +An overhanging rock offered him a temporary shelter, and scarcely had +he availed himself of it when the tempest burst forth in all its fury. +Edmond felt the trembling of the rock beneath which he lay; the waves, +dashing themselves against it, wetted him with their spray. He was +safely sheltered, and yet he felt dizzy in the midst of the warring of +the elements and the dazzling brightness of the lightning. It seemed to +him that the island trembled to its base, and that it would, like a +vessel at anchor, break moorings, and bear him off into the centre of +the storm. + +He then recollected that he had not eaten or drunk for four-and-twenty +hours. He extended his hands, and drank greedily of the rainwater that +had lodged in a hollow of the rock. + +As he rose, a flash of lightning, that seemed to rive the remotest +heights of heaven, illumined the darkness. By its light, between the +Island of Lemaire and Cape Croiselle, a quarter of a league distant, +Dantès saw a fishing-boat driven rapidly like a spectre before the +power of winds and waves. A second after, he saw it again, approaching +with frightful rapidity. Dantès cried at the top of his voice to warn +them of their danger, but they saw it themselves. Another flash showed +him four men clinging to the shattered mast and the rigging, while a +fifth clung to the broken rudder. The men he beheld saw him +undoubtedly, for their cries were carried to his ears by the wind. +Above the splintered mast a sail rent to tatters was waving; suddenly +the ropes that still held it gave way, and it disappeared in the +darkness of the night like a vast sea-bird. + +At the same moment a violent crash was heard, and cries of distress. +Dantès from his rocky perch saw the shattered vessel, and among the +fragments the floating forms of the hapless sailors. Then all was dark +again. + +Dantès ran down the rocks at the risk of being himself dashed to +pieces; he listened, he groped about, but he heard and saw nothing—the +cries had ceased, and the tempest continued to rage. By degrees the +wind abated, vast gray clouds rolled towards the west, and the blue +firmament appeared studded with bright stars. Soon a red streak became +visible in the horizon, the waves whitened, a light played over them, +and gilded their foaming crests with gold. It was day. + +Dantès stood mute and motionless before this majestic spectacle, as if +he now beheld it for the first time; and indeed since his captivity in +the Château d’If he had forgotten that such scenes were ever to be +witnessed. He turned towards the fortress, and looked at both sea and +land. The gloomy building rose from the bosom of the ocean with +imposing majesty and seemed to dominate the scene. It was about five +o’clock. The sea continued to get calmer. + +“In two or three hours,” thought Dantès, “the turnkey will enter my +chamber, find the body of my poor friend, recognize it, seek for me in +vain, and give the alarm. Then the tunnel will be discovered; the men +who cast me into the sea and who must have heard the cry I uttered, +will be questioned. Then boats filled with armed soldiers will pursue +the wretched fugitive. The cannon will warn everyone to refuse shelter +to a man wandering about naked and famished. The police of Marseilles +will be on the alert by land, whilst the governor pursues me by sea. I +am cold, I am hungry. I have lost even the knife that saved me. Oh, my +God, I have suffered enough surely! Have pity on me, and do for me what +I am unable to do for myself.” + +As Dantès (his eyes turned in the direction of the Château d’If) +uttered this prayer, he saw off the farther point of the Island of +Pomègue a small vessel with lateen sail skimming the sea like a gull in +search of prey; and with his sailor’s eye he knew it to be a Genoese +tartan. She was coming out of Marseilles harbor, and was standing out +to sea rapidly, her sharp prow cleaving through the waves. + +“Oh,” cried Edmond, “to think that in half an hour I could join her, +did I not fear being questioned, detected, and conveyed back to +Marseilles! What can I do? What story can I invent? under pretext of +trading along the coast, these men, who are in reality smugglers, will +prefer selling me to doing a good action. I must wait. But I cannot—I +am starving. In a few hours my strength will be utterly exhausted; +besides, perhaps I have not been missed at the fortress. I can pass as +one of the sailors wrecked last night. My story will be accepted, for +there is no one left to contradict me.” + +As he spoke, Dantès looked toward the spot where the fishing-vessel had +been wrecked, and started. The red cap of one of the sailors hung to a +point of the rock and some timbers that had formed part of the vessel’s +keel, floated at the foot of the crag. In an instant Dantès’ plan was +formed. He swam to the cap, placed it on his head, seized one of the +timbers, and struck out so as to cut across the course the vessel was +taking. + +“I am saved!” murmured he. And this conviction restored his strength. + +He soon saw that the vessel, with the wind dead ahead, was tacking +between the Château d’If and the tower of Planier. For an instant he +feared lest, instead of keeping in shore, she should stand out to sea; +but he soon saw that she would pass, like most vessels bound for Italy, +between the islands of Jaros and Calaseraigne. + +However, the vessel and the swimmer insensibly neared one another, and +in one of its tacks the tartan bore down within a quarter of a mile of +him. He rose on the waves, making signs of distress; but no one on +board saw him, and the vessel stood on another tack. Dantès would have +shouted, but he knew that the wind would drown his voice. + +It was then he rejoiced at his precaution in taking the timber, for +without it he would have been unable, perhaps, to reach the +vessel—certainly to return to shore, should he be unsuccessful in +attracting attention. + +Dantès, though almost sure as to what course the vessel would take, had +yet watched it anxiously until it tacked and stood towards him. Then he +advanced; but before they could meet, the vessel again changed her +course. By a violent effort he rose half out of the water, waving his +cap, and uttering a loud shout peculiar to sailors. This time he was +both seen and heard, and the tartan instantly steered towards him. At +the same time, he saw they were about to lower the boat. + +An instant after, the boat, rowed by two men, advanced rapidly towards +him. Dantès let go of the timber, which he now thought to be useless, +and swam vigorously to meet them. But he had reckoned too much upon his +strength, and then he realized how serviceable the timber had been to +him. His arms became stiff, his legs lost their flexibility, and he was +almost breathless. + +He shouted again. The two sailors redoubled their efforts, and one of +them cried in Italian, “Courage!” + +The word reached his ear as a wave which he no longer had the strength +to surmount passed over his head. He rose again to the surface, +struggled with the last desperate effort of a drowning man, uttered a +third cry, and felt himself sinking, as if the fatal cannon shot were +again tied to his feet. The water passed over his head, and the sky +turned gray. A convulsive movement again brought him to the surface. He +felt himself seized by the hair, then he saw and heard nothing. He had +fainted. + +When he opened his eyes Dantès found himself on the deck of the tartan. +His first care was to see what course they were taking. They were +rapidly leaving the Château d’If behind. Dantès was so exhausted that +the exclamation of joy he uttered was mistaken for a sigh. + +As we have said, he was lying on the deck. A sailor was rubbing his +limbs with a woollen cloth; another, whom he recognized as the one who +had cried out “Courage!” held a gourd full of rum to his mouth; while +the third, an old sailor, at once the pilot and captain, looked on with +that egotistical pity men feel for a misfortune that they have escaped +yesterday, and which may overtake them tomorrow. + +A few drops of the rum restored suspended animation, while the friction +of his limbs restored their elasticity. + +“Who are you?” said the pilot in bad French. + +“I am,” replied Dantès, in bad Italian, “a Maltese sailor. We were +coming from Syracuse laden with grain. The storm of last night overtook +us at Cape Morgiou, and we were wrecked on these rocks.” + +“Where do you come from?” + +“From these rocks that I had the good luck to cling to while our +captain and the rest of the crew were all lost. I saw your vessel, and +fearful of being left to perish on the desolate island, I swam off on a +piece of wreckage to try and intercept your course. You have saved my +life, and I thank you,” continued Dantès. “I was lost when one of your +sailors caught hold of my hair.” + +“It was I,” said a sailor of a frank and manly appearance; “and it was +time, for you were sinking.” + +“Yes,” returned Dantès, holding out his hand, “I thank you again.” + +“I almost hesitated, though,” replied the sailor; “you looked more like +a brigand than an honest man, with your beard six inches, and your hair +a foot long.” + +Dantès recollected that his hair and beard had not been cut all the +time he was at the Château d’If. + +“Yes,” said he, “I made a vow, to our Lady of the Grotto not to cut my +hair or beard for ten years if I were saved in a moment of danger; but +today the vow expires.” + +“Now what are we to do with you?” said the captain. + +“Alas, anything you please. My captain is dead; I have barely escaped; +but I am a good sailor. Leave me at the first port you make; I shall be +sure to find employment.” + +“Do you know the Mediterranean?” + +“I have sailed over it since my childhood.” + +“You know the best harbors?” + +“There are few ports that I could not enter or leave with a bandage +over my eyes.” + +“I say, captain,” said the sailor who had cried “Courage!” to Dantès, +“if what he says is true, what hinders his staying with us?” + +“If he says true,” said the captain doubtingly. “But in his present +condition he will promise anything, and take his chance of keeping it +afterwards.” + +“I will do more than I promise,” said Dantès. + +“We shall see,” returned the other, smiling. + +“Where are you going?” asked Dantès. + +“To Leghorn.” + +“Then why, instead of tacking so frequently, do you not sail nearer the +wind?” + +“Because we should run straight on to the Island of Rion.” + +“You shall pass it by twenty fathoms.” + +“Take the helm, and let us see what you know.” + +The young man took the helm, felt to see if the vessel answered the +rudder promptly and seeing that, without being a first-rate sailor, she +yet was tolerably obedient. + +“To the sheets,” said he. The four seamen, who composed the crew, +obeyed, while the pilot looked on. “Haul taut.” + +They obeyed. + +“Belay.” This order was also executed; and the vessel passed, as Dantès +had predicted, twenty fathoms to windward. + +“Bravo!” said the captain. + +“Bravo!” repeated the sailors. And they all looked with astonishment at +this man whose eye now disclosed an intelligence and his body a vigor +they had not thought him capable of showing. + +“You see,” said Dantès, quitting the helm, “I shall be of some use to +you, at least during the voyage. If you do not want me at Leghorn, you +can leave me there, and I will pay you out of the first wages I get, +for my food and the clothes you lend me.” + +“Ah,” said the captain, “we can agree very well, if you are +reasonable.” + +“Give me what you give the others, and it will be all right,” returned +Dantès. + +“That’s not fair,” said the seaman who had saved Dantès; “for you know +more than we do.” + +“What is that to you, Jacopo?” returned the Captain. “Everyone is free +to ask what he pleases.” + +“That’s true,” replied Jacopo; “I only make a remark.” + +“Well, you would do much better to find him a jacket and a pair of +trousers, if you have them.” + +“No,” said Jacopo; “but I have a shirt and a pair of trousers.” + +“That is all I want,” interrupted Dantès. Jacopo dived into the hold +and soon returned with what Edmond wanted. + +“Now, then, do you wish for anything else?” said the patron. + +“A piece of bread and another glass of the capital rum I tasted, for I +have not eaten or drunk for a long time.” He had not tasted food for +forty hours. A piece of bread was brought, and Jacopo offered him the +gourd. + +“Larboard your helm,” cried the captain to the steersman. Dantès +glanced that way as he lifted the gourd to his mouth; then paused with +hand in mid-air. + +“Hollo! what’s the matter at the Château d’If?” said the captain. + +A small white cloud, which had attracted Dantès’ attention, crowned the +summit of the bastion of the Château d’If. At the same moment the faint +report of a gun was heard. The sailors looked at one another. + +“What is this?” asked the captain. + +“A prisoner has escaped from the Château d’If, and they are firing the +alarm gun,” replied Dantès. The captain glanced at him, but he had +lifted the rum to his lips and was drinking it with so much composure, +that suspicions, if the captain had any, died away. + +0277m + + + +“Pretty strong rum!” said Dantès, wiping his brow with his sleeve. + +“At any rate,” murmured he, “if it be, so much the better, for I have +made a rare acquisition.” + +0279m + + + +Under pretence of being fatigued, Dantès asked to take the helm; the +steersman, glad to be relieved, looked at the captain, and the latter +by a sign indicated that he might abandon it to his new comrade. Dantès +could thus keep his eyes on Marseilles. + +“What is the day of the month?” asked he of Jacopo, who sat down beside +him. + +“The 28th of February.” + +“In what year?” + +“In what year—you ask me in what year?” + +“Yes,” replied the young man, “I ask you in what year!” + +“You have forgotten then?” + +“I got such a fright last night,” replied Dantès, smiling, “that I have +almost lost my memory. I ask you what year is it?” + +“The year 1829,” returned Jacopo. + +It was fourteen years, day for day, since Dantès’ arrest. He was +nineteen when he entered the Château d’If; he was thirty-three when he +escaped. A sorrowful smile passed over his face; he asked himself what +had become of Mercédès, who must believe him dead. Then his eyes +lighted up with hatred as he thought of the three men who had caused +him so long and wretched a captivity. He renewed against Danglars, +Fernand, and Villefort the oath of implacable vengeance he had made in +his dungeon. + +This oath was no longer a vain menace; for the fastest sailor in the +Mediterranean would have been unable to overtake the little tartan, +that with every stitch of canvas set was flying before the wind to +Leghorn. + + + + Chapter 22. The Smugglers + +Dantès had not been a day on board before he had a very clear idea of +the men with whom his lot had been cast. Without having been in the +school of the Abbé Faria, the worthy master of _La Jeune Amélie_ (the +name of the Genoese tartan) knew a smattering of all the tongues spoken +on the shores of that large lake called the Mediterranean, from the +Arabic to the Provençal, and this, while it spared him interpreters, +persons always troublesome and frequently indiscreet, gave him great +facilities of communication, either with the vessels he met at sea, +with the small boats sailing along the coast, or with the people +without name, country, or occupation, who are always seen on the quays +of seaports, and who live by hidden and mysterious means which we must +suppose to be a direct gift of Providence, as they have no visible +means of support. It is fair to assume that Dantès was on board a +smuggler. + +At first the captain had received Dantès on board with a certain degree +of distrust. He was very well known to the customs officers of the +coast; and as there was between these worthies and himself a perpetual +battle of wits, he had at first thought that Dantès might be an +emissary of these industrious guardians of rights and duties, who +perhaps employed this ingenious means of learning some of the secrets +of his trade. But the skilful manner in which Dantès had handled the +lugger had entirely reassured him; and then, when he saw the light +plume of smoke floating above the bastion of the Château d’If, and +heard the distant report, he was instantly struck with the idea that he +had on board his vessel one whose coming and going, like that of kings, +was accompanied with salutes of artillery. This made him less uneasy, +it must be owned, than if the new-comer had proved to be a customs +officer; but this supposition also disappeared like the first, when he +beheld the perfect tranquillity of his recruit. + +Edmond thus had the advantage of knowing what the owner was, without +the owner knowing who he was; and however the old sailor and his crew +tried to “pump” him, they extracted nothing more from him; he gave +accurate descriptions of Naples and Malta, which he knew as well as +Marseilles, and held stoutly to his first story. Thus the Genoese, +subtle as he was, was duped by Edmond, in whose favor his mild +demeanor, his nautical skill, and his admirable dissimulation, pleaded. +Moreover, it is possible that the Genoese was one of those shrewd +persons who know nothing but what they should know, and believe nothing +but what they should believe. + +In this state of mutual understanding, they reached Leghorn. Here +Edmond was to undergo another trial; he was to find out whether he +could recognize himself, as he had not seen his own face for fourteen +years. He had preserved a tolerably good remembrance of what the youth +had been, and was now to find out what the man had become. His comrades +believed that his vow was fulfilled. As he had twenty times touched at +Leghorn, he remembered a barber in St. Ferdinand Street; he went there +to have his beard and hair cut. The barber gazed in amazement at this +man with the long, thick and black hair and beard, which gave his head +the appearance of one of Titian’s portraits. At this period it was not +the fashion to wear so large a beard and hair so long; now a barber +would only be surprised if a man gifted with such advantages should +consent voluntarily to deprive himself of them. The Leghorn barber said +nothing and went to work. + +When the operation was concluded, and Edmond felt that his chin was +completely smooth, and his hair reduced to its usual length, he asked +for a looking-glass. He was now, as we have said, three-and-thirty +years of age, and his fourteen years’ imprisonment had produced a great +transformation in his appearance. + +Dantès had entered the Château d’If with the round, open, smiling face +of a young and happy man, with whom the early paths of life have been +smooth, and who anticipates a future corresponding with his past. This +was now all changed. The oval face was lengthened, his smiling mouth +had assumed the firm and marked lines which betoken resolution; his +eyebrows were arched beneath a brow furrowed with thought; his eyes +were full of melancholy, and from their depths occasionally sparkled +gloomy fires of misanthropy and hatred; his complexion, so long kept +from the sun, had now that pale color which produces, when the features +are encircled with black hair, the aristocratic beauty of the man of +the north; the profound learning he had acquired had besides diffused +over his features a refined intellectual expression; and he had also +acquired, being naturally of a goodly stature, that vigor which a frame +possesses which has so long concentrated all its force within itself. + +0283m + + + +To the elegance of a nervous and slight form had succeeded the solidity +of a rounded and muscular figure. As to his voice, prayers, sobs, and +imprecations had changed it so that at times it was of a singularly +penetrating sweetness, and at others rough and almost hoarse. + +Moreover, from being so long in twilight or darkness, his eyes had +acquired the faculty of distinguishing objects in the night, common to +the hyena and the wolf. Edmond smiled when he beheld himself; it was +impossible that his best friend—if, indeed, he had any friend +left—could recognize him; he could not recognize himself. + +The master of _La Jeune Amélie_, who was very desirous of retaining +amongst his crew a man of Edmond’s value, had offered to advance him +funds out of his future profits, which Edmond had accepted. His next +care on leaving the barber’s who had achieved his first metamorphosis +was to enter a shop and buy a complete sailor’s suit—a garb, as we all +know, very simple, and consisting of white trousers, a striped shirt, +and a cap. + +It was in this costume, and bringing back to Jacopo the shirt and +trousers he had lent him, that Edmond reappeared before the captain of +the lugger, who had made him tell his story over and over again before +he could believe him, or recognize in the neat and trim sailor the man +with thick and matted beard, hair tangled with seaweed, and body +soaking in seabrine, whom he had picked up naked and nearly drowned. +Attracted by his prepossessing appearance, he renewed his offers of an +engagement to Dantès; but Dantès, who had his own projects, would not +agree for a longer time than three months. + +_La Jeune Amélie_ had a very active crew, very obedient to their +captain, who lost as little time as possible. He had scarcely been a +week at Leghorn before the hold of his vessel was filled with printed +muslins, contraband cottons, English powder, and tobacco on which the +excise had forgotten to put its mark. The master was to get all this +out of Leghorn free of duties, and land it on the shores of Corsica, +where certain speculators undertook to forward the cargo to France. + +They sailed; Edmond was again cleaving the azure sea which had been the +first horizon of his youth, and which he had so often dreamed of in +prison. He left Gorgone on his right and La Pianosa on his left, and +went towards the country of Paoli and Napoleon. + +The next morning going on deck, as he always did at an early hour, the +patron found Dantès leaning against the bulwarks gazing with intense +earnestness at a pile of granite rocks, which the rising sun tinged +with rosy light. It was the Island of Monte Cristo. + +_La Jeune Amélie_ left it three-quarters of a league to the larboard +and kept on for Corsica. Dantès thought, as they passed so closely to +the island whose name was so interesting to him, that he had only to +leap into the sea and in half an hour be at the promised land. But then +what could he do without instruments to discover his treasure, without +arms to defend himself? Besides, what would the sailors say? What would +the patron think? He must wait. + +Fortunately, Dantès had learned how to wait; he had waited fourteen +years for his liberty, and now he was free he could wait at least six +months or a year for wealth. Would he not have accepted liberty without +riches if it had been offered to him? Besides, were not those riches +chimerical?—offspring of the brain of the poor Abbé Faria, had they not +died with him? It is true, the letter of the Cardinal Spada was +singularly circumstantial, and Dantès repeated it to himself, from one +end to the other, for he had not forgotten a word. + +0285m + + + +Evening came, and Edmond saw the island tinged with the shades of +twilight, and then disappear in the darkness from all eyes but his own, +for he, with vision accustomed to the gloom of a prison, continued to +behold it last of all, for he remained alone upon deck. The next morn +broke off the coast of Aleria; all day they coasted, and in the evening +saw fires lighted on land; the position of these was no doubt a signal +for landing, for a ship’s lantern was hung up at the mast-head instead +of the streamer, and they came to within a gunshot of the shore. Dantès +noticed that the captain of _La Jeune Amélie_ had, as he neared the +land, mounted two small culverins, which, without making much noise, +can throw a four ounce ball a thousand paces or so. + +But on this occasion the precaution was superfluous, and everything +proceeded with the utmost smoothness and politeness. Four shallops came +off with very little noise alongside the lugger, which, no doubt, in +acknowledgement of the compliment, lowered her own shallop into the +sea, and the five boats worked so well that by two o’clock in the +morning all the cargo was out of _La Jeune Amélie_ and on _terra +firma_. The same night, such a man of regularity was the patron of _La +Jeune Amélie_, the profits were divided, and each man had a hundred +Tuscan livres, or about eighty francs. + +But the voyage was not ended. They turned the bowsprit towards +Sardinia, where they intended to take in a cargo, which was to replace +what had been discharged. The second operation was as successful as the +first, _La Jeune Amélie_ was in luck. This new cargo was destined for +the coast of the Duchy of Lucca, and consisted almost entirely of +Havana cigars, sherry, and Malaga wines. + +There they had a bit of a skirmish in getting rid of the duties; the +excise was, in truth, the everlasting enemy of the patron of _La Jeune +Amélie_. A customs officer was laid low, and two sailors wounded; +Dantès was one of the latter, a ball having touched him in the left +shoulder. Dantès was almost glad of this affray, and almost pleased at +being wounded, for they were rude lessons which taught him with what +eye he could view danger, and with what endurance he could bear +suffering. He had contemplated danger with a smile, and when wounded +had exclaimed with the great philosopher, “Pain, thou art not an evil.” + +He had, moreover, looked upon the customs officer wounded to death, +and, whether from heat of blood produced by the encounter, or the chill +of human sentiment, this sight had made but slight impression upon him. +Dantès was on the way he desired to follow, and was moving towards the +end he wished to achieve; his heart was in a fair way of petrifying in +his bosom. Jacopo, seeing him fall, had believed him killed, and +rushing towards him raised him up, and then attended to him with all +the kindness of a devoted comrade. + +This world was not then so good as Doctor Pangloss believed it, neither +was it so wicked as Dantès thought it, since this man, who had nothing +to expect from his comrade but the inheritance of his share of the +prize-money, manifested so much sorrow when he saw him fall. +Fortunately, as we have said, Edmond was only wounded, and with certain +herbs gathered at certain seasons, and sold to the smugglers by the old +Sardinian women, the wound soon closed. Edmond then resolved to try +Jacopo, and offered him in return for his attention a share of his +prize-money, but Jacopo refused it indignantly. + +As a result of the sympathetic devotion which Jacopo had from the first +bestowed on Edmond, the latter was moved to a certain degree of +affection. But this sufficed for Jacopo, who instinctively felt that +Edmond had a right to superiority of position—a superiority which +Edmond had concealed from all others. And from this time the kindness +which Edmond showed him was enough for the brave seaman. + +Then in the long days on board ship, when the vessel, gliding on with +security over the azure sea, required no care but the hand of the +helmsman, thanks to the favorable winds that swelled her sails, Edmond, +with a chart in his hand, became the instructor of Jacopo, as the poor +Abbé Faria had been his tutor. He pointed out to him the bearings of +the coast, explained to him the variations of the compass, and taught +him to read in that vast book opened over our heads which they call +heaven, and where God writes in azure with letters of diamonds. + +And when Jacopo inquired of him, “What is the use of teaching all these +things to a poor sailor like me?” Edmond replied, “Who knows? You may +one day be the captain of a vessel. Your fellow-countryman, Bonaparte, +became emperor.” We had forgotten to say that Jacopo was a Corsican. + +Two months and a half elapsed in these trips, and Edmond had become as +skilful a coaster as he had been a hardy seaman; he had formed an +acquaintance with all the smugglers on the coast, and learned all the +Masonic signs by which these half pirates recognize each other. He had +passed and re-passed his Island of Monte Cristo twenty times, but not +once had he found an opportunity of landing there. + +He then formed a resolution. As soon as his engagement with the patron +of _La Jeune Amélie_ ended, he would hire a small vessel on his own +account—for in his several voyages he had amassed a hundred +piastres—and under some pretext land at the Island of Monte Cristo. +Then he would be free to make his researches, not perhaps entirely at +liberty, for he would be doubtless watched by those who accompanied +him. But in this world we must risk something. Prison had made Edmond +prudent, and he was desirous of running no risk whatever. But in vain +did he rack his imagination; fertile as it was, he could not devise any +plan for reaching the island without companionship. + +Dantès was tossed about on these doubts and wishes, when the patron, +who had great confidence in him, and was very desirous of retaining him +in his service, took him by the arm one evening and led him to a tavern +on the Via del’ Oglio, where the leading smugglers of Leghorn used to +congregate and discuss affairs connected with their trade. Already +Dantès had visited this maritime Bourse two or three times, and seeing +all these hardy free-traders, who supplied the whole coast for nearly +two hundred leagues in extent, he had asked himself what power might +not that man attain who should give the impulse of his will to all +these contrary and diverging minds. This time it was a great matter +that was under discussion, connected with a vessel laden with Turkey +carpets, stuffs of the Levant, and cashmeres. It was necessary to find +some neutral ground on which an exchange could be made, and then to try +and land these goods on the coast of France. If the venture was +successful the profit would be enormous, there would be a gain of fifty +or sixty piastres each for the crew. + +The patron of _La Jeune Amélie_ proposed as a place of landing the +Island of Monte Cristo, which being completely deserted, and having +neither soldiers nor revenue officers, seemed to have been placed in +the midst of the ocean since the time of the heathen Olympus by +Mercury, the god of merchants and robbers, classes of mankind which we +in modern times have separated if not made distinct, but which +antiquity appears to have included in the same category. + +At the mention of Monte Cristo Dantès started with joy; he rose to +conceal his emotion, and took a turn around the smoky tavern, where all +the languages of the known world were jumbled in a _lingua franca_. + +When he again joined the two persons who had been discussing the +matter, it had been decided that they should touch at Monte Cristo and +set out on the following night. Edmond, being consulted, was of opinion +that the island afforded every possible security, and that great +enterprises to be well done should be done quickly. + +Nothing then was altered in the plan, and orders were given to get +under weigh next night, and, wind and weather permitting, to make the +neutral island by the following day. + +0289m + + + + + Chapter 23. The Island of Monte Cristo + +Thus, at length, by one of the unexpected strokes of fortune which +sometimes befall those who have for a long time been the victims of an +evil destiny, Dantès was about to secure the opportunity he wished for, +by simple and natural means, and land on the island without incurring +any suspicion. One night more and he would be on his way. + +The night was one of feverish distraction, and in its progress visions, +good and evil, passed through Dantès’ mind. If he closed his eyes, he +saw Cardinal Spada’s letter written on the wall in characters of +flame—if he slept for a moment the wildest dreams haunted his brain. He +ascended into grottos paved with emeralds, with panels of rubies, and +the roof glowing with diamond stalactites. Pearls fell drop by drop, as +subterranean waters filter in their caves. Edmond, amazed, +wonderstruck, filled his pockets with the radiant gems and then +returned to daylight, when he discovered that his prizes had all +changed into common pebbles. He then endeavored to re-enter the +marvellous grottos, but they had suddenly receded, and now the path +became a labyrinth, and then the entrance vanished, and in vain did he +tax his memory for the magic and mysterious word which opened the +splendid caverns of Ali Baba to the Arabian fisherman. All was useless, +the treasure disappeared, and had again reverted to the genii from whom +for a moment he had hoped to carry it off. + +The day came at length, and was almost as feverish as the night had +been, but it brought reason to the aid of imagination, and Dantès was +then enabled to arrange a plan which had hitherto been vague and +unsettled in his brain. Night came, and with it the preparation for +departure, and these preparations served to conceal Dantès’ agitation. +He had by degrees assumed such authority over his companions that he +was almost like a commander on board; and as his orders were always +clear, distinct, and easy of execution, his comrades obeyed him with +celerity and pleasure. + +The old patron did not interfere, for he too had recognized the +superiority of Dantès over the crew and himself. He saw in the young +man his natural successor, and regretted that he had not a daughter, +that he might have bound Edmond to him by a more secure alliance. At +seven o’clock in the evening all was ready, and at ten minutes past +seven they doubled the lighthouse just as the beacon was kindled. The +sea was calm, and, with a fresh breeze from the south-east, they sailed +beneath a bright blue sky, in which God also lighted up in turn his +beacon lights, each of which is a world. Dantès told them that all +hands might turn in, and he would take the helm. When the Maltese (for +so they called Dantès) had said this, it was sufficient, and all went +to their bunks contentedly. + +This frequently happened. Dantès, cast from solitude into the world, +frequently experienced an imperious desire for solitude; and what +solitude is more complete, or more poetical, than that of a ship +floating in isolation on the sea during the obscurity of the night, in +the silence of immensity, and under the eye of Heaven? + +Now this solitude was peopled with his thoughts, the night lighted up +by his illusions, and the silence animated by his anticipations. When +the patron awoke, the vessel was hurrying on with every sail set, and +every sail full with the breeze. They were making nearly ten knots an +hour. The Island of Monte Cristo loomed large in the horizon. Edmond +resigned the lugger to the master’s care, and went and lay down in his +hammock; but, in spite of a sleepless night, he could not close his +eyes for a moment. + +Two hours afterwards he came on deck, as the boat was about to double +the Island of Elba. They were just abreast of Mareciana, and beyond the +flat but verdant Island of La Pianosa. The peak of Monte Cristo +reddened by the burning sun, was seen against the azure sky. Dantès +ordered the helmsman to put down his helm, in order to leave La Pianosa +to starboard, as he knew that he should shorten his course by two or +three knots. About five o’clock in the evening the island was distinct, +and everything on it was plainly perceptible, owing to that clearness +of the atmosphere peculiar to the light which the rays of the sun cast +at its setting. + +Edmond gazed very earnestly at the mass of rocks which gave out all the +variety of twilight colors, from the brightest pink to the deepest +blue; and from time to time his cheeks flushed, his brow darkened, and +a mist passed over his eyes. Never did a gamester, whose whole fortune +is staked on one cast of the die, experience the anguish which Edmond +felt in his paroxysms of hope. + +Night came, and at ten o’clock they anchored. _La Jeune Amélie_ was +first at the rendezvous. In spite of his usual command over himself, +Dantès could not restrain his impetuosity. He was the first to jump on +shore; and had he dared, he would, like Lucius Brutus, have “kissed his +mother earth.” It was dark, but at eleven o’clock the moon rose in the +midst of the ocean, whose every wave she silvered, and then, “ascending +high,” played in floods of pale light on the rocky hills of this second +Pelion. + +The island was familiar to the crew of _La Jeune Amélie_,—it was one of +her regular haunts. As to Dantès, he had passed it on his voyage to and +from the Levant, but never touched at it. He questioned Jacopo. + +“Where shall we pass the night?” he inquired. + +“Why, on board the tartan,” replied the sailor. + +“Should we not do better in the grottos?” + +“What grottos?” + +“Why, the grottos—caves of the island.” + +“I do not know of any grottos,” replied Jacopo. + +The cold sweat sprang forth on Dantès’ brow. + +“What, are there no grottos at Monte Cristo?” he asked. + +“None.” + +For a moment Dantès was speechless; then he remembered that these caves +might have been filled up by some accident, or even stopped up, for the +sake of greater security, by Cardinal Spada. The point was, then, to +discover the hidden entrance. It was useless to search at night, and +Dantès therefore delayed all investigation until the morning. Besides, +a signal made half a league out at sea, and to which _La Jeune Amélie_ +replied by a similar signal, indicated that the moment for business had +come. + +The boat that now arrived, assured by the answering signal that all was +well, soon came in sight, white and silent as a phantom, and cast +anchor within a cable’s length of shore. + +Then the landing began. Dantès reflected, as he worked, on the shout of +joy which, with a single word, he could evoke from all these men, if he +gave utterance to the one unchanging thought that pervaded his heart; +but, far from disclosing this precious secret, he almost feared that he +had already said too much, and by his restlessness and continual +questions, his minute observations and evident preoccupation, aroused +suspicions. Fortunately, as regarded this circumstance at least, his +painful past gave to his countenance an indelible sadness, and the +glimmerings of gayety seen beneath this cloud were indeed but +transitory. + +No one had the slightest suspicion; and when next day, taking a +fowling-piece, powder, and shot, Dantès declared his intention to go +and kill some of the wild goats that were seen springing from rock to +rock, his wish was construed into a love of sport, or a desire for +solitude. However, Jacopo insisted on following him, and Dantès did not +oppose this, fearing if he did so that he might incur distrust. +Scarcely, however, had they gone a quarter of a league when, having +killed a kid, he begged Jacopo to take it to his comrades, and request +them to cook it, and when ready to let him know by firing a gun. This +and some dried fruits and a flask of Monte Pulciano, was the bill of +fare. + +Dantès went on, looking from time to time behind and around about him. +Having reached the summit of a rock, he saw, a thousand feet beneath +him, his companions, whom Jacopo had rejoined, and who were all busy +preparing the repast which Edmond’s skill as a marksman had augmented +with a capital dish. + +Edmond looked at them for a moment with the sad and gentle smile of a +man superior to his fellows. + +“In two hours’ time,” said he, “these persons will depart richer by +fifty piastres each, to go and risk their lives again by endeavoring to +gain fifty more; then they will return with a fortune of six hundred +francs, and waste this treasure in some city with the pride of sultans +and the insolence of nabobs. At this moment hope makes me despise their +riches, which seem to me contemptible. Yet perchance tomorrow deception +will so act on me, that I shall, on compulsion, consider such a +contemptible possession as the utmost happiness. Oh, no!” exclaimed +Edmond, “that will not be. The wise, unerring Faria could not be +mistaken in this one thing. Besides, it were better to die than to +continue to lead this low and wretched life.” + +Thus Dantès, who but three months before had no desire but liberty had +now not liberty enough, and panted for wealth. The cause was not in +Dantès, but in Providence, who, while limiting the power of man, has +filled him with boundless desires. + +Meanwhile, by a cleft between two walls of rock, following a path worn +by a torrent, and which, in all human probability, human foot had never +before trod, Dantès approached the spot where he supposed the grottos +must have existed. Keeping along the shore, and examining the smallest +object with serious attention, he thought he could trace, on certain +rocks, marks made by the hand of man. + +Time, which encrusts all physical substances with its mossy mantle, as +it invests all things of the mind with forgetfulness, seemed to have +respected these signs, which apparently had been made with some degree +of regularity, and probably with a definite purpose. Occasionally the +marks were hidden under tufts of myrtle, which spread into large bushes +laden with blossoms, or beneath parasitical lichen. So Edmond had to +separate the branches or brush away the moss to know where the +guide-marks were. The sight of marks renewed Edmond’s fondest hopes. +Might it not have been the cardinal himself who had first traced them, +in order that they might serve as a guide for his nephew in the event +of a catastrophe, which he could not foresee would have been so +complete. This solitary place was precisely suited to the requirements +of a man desirous of burying treasure. Only, might not these betraying +marks have attracted other eyes than those for whom they were made? and +had the dark and wondrous island indeed faithfully guarded its precious +secret? + +0295m + + + +It seemed, however, to Edmond, who was hidden from his comrades by the +inequalities of the ground, that at sixty paces from the harbor the +marks ceased; nor did they terminate at any grotto. A large round rock, +placed solidly on its base, was the only spot to which they seemed to +lead. Edmond concluded that perhaps instead of having reached the end +of the route he had only explored its beginning, and he therefore +turned round and retraced his steps. + +Meanwhile his comrades had prepared the repast, had got some water from +a spring, spread out the fruit and bread, and cooked the kid. Just at +the moment when they were taking the dainty animal from the spit, they +saw Edmond springing with the boldness of a chamois from rock to rock, +and they fired the signal agreed upon. The sportsman instantly changed +his direction, and ran quickly towards them. But even while they +watched his daring progress, Edmond’s foot slipped, and they saw him +stagger on the edge of a rock and disappear. They all rushed towards +him, for all loved Edmond in spite of his superiority; yet Jacopo +reached him first. + +He found Edmond lying prone, bleeding, and almost senseless. He had +rolled down a declivity of twelve or fifteen feet. They poured a little +rum down his throat, and this remedy which had before been so +beneficial to him, produced the same effect as formerly. Edmond opened +his eyes, complained of great pain in his knee, a feeling of heaviness +in his head, and severe pains in his loins. They wished to carry him to +the shore; but when they touched him, although under Jacopo’s +directions, he declared, with heavy groans, that he could not bear to +be moved. + +It may be supposed that Dantès did not now think of his dinner, but he +insisted that his comrades, who had not his reasons for fasting, should +have their meal. As for himself, he declared that he had only need of a +little rest, and that when they returned he should be easier. The +sailors did not require much urging. They were hungry, and the smell of +the roasted kid was very savory, and your tars are not very +ceremonious. An hour afterwards they returned. All that Edmond had been +able to do was to drag himself about a dozen paces forward to lean +against a moss-grown rock. + +But, instead of growing easier, Dantès’ pains appeared to increase in +violence. The old patron, who was obliged to sail in the morning in +order to land his cargo on the frontiers of Piedmont and France, +between Nice and Fréjus, urged Dantès to try and rise. Edmond made +great exertions in order to comply; but at each effort he fell back, +moaning and turning pale. + +“He has broken his ribs,” said the commander, in a low voice. “No +matter; he is an excellent fellow, and we must not leave him. We will +try and carry him on board the tartan.” + +Dantès declared, however, that he would rather die where he was than +undergo the agony which the slightest movement cost him. + +“Well,” said the patron, “let what may happen, it shall never be said +that we deserted a good comrade like you. We will not go till evening.” + +This very much astonished the sailors, although, not one opposed it. +The patron was so strict that this was the first time they had ever +seen him give up an enterprise, or even delay in its execution. Dantès +would not allow that any such infraction of regular and proper rules +should be made in his favor. + +“No, no,” he said to the patron, “I was awkward, and it is just that I +pay the penalty of my clumsiness. Leave me a small supply of biscuit, a +gun, powder, and balls, to kill the kids or defend myself at need, and +a pickaxe, that I may build a shelter if you delay in coming back for +me.” + +“But you’ll die of hunger,” said the patron. + +“I would rather do so,” was Edmond’s reply, “than suffer the +inexpressible agonies which the slightest movement causes me.” + +The patron turned towards his vessel, which was rolling on the swell in +the little harbor, and, with sails partly set, would be ready for sea +when her toilet should be completed. + +“What are we to do, Maltese?” asked the captain. “We cannot leave you +here so, and yet we cannot stay.” + +“Go, go!” exclaimed Dantès. + +“We shall be absent at least a week,” said the patron, “and then we +must run out of our course to come here and take you up again.” + +“Why,” said Dantès, “if in two or three days you hail any fishing-boat, +desire them to come here to me. I will pay twenty-five piastres for my +passage back to Leghorn. If you do not come across one, return for me.” +The patron shook his head. + +“Listen, Captain Baldi; there’s one way of settling this,” said Jacopo. +“Do you go, and I will stay and take care of the wounded man.” + +“And give up your share of the venture,” said Edmond, “to remain with +me?” + +“Yes,” said Jacopo, “and without any hesitation.” + +“You are a good fellow and a kind-hearted messmate,” replied Edmond, +“and heaven will recompense you for your generous intentions; but I do +not wish anyone to stay with me. A day or two of rest will set me up, +and I hope I shall find among the rocks certain herbs most excellent +for bruises.” + +A peculiar smile passed over Dantès’ lips; he squeezed Jacopo’s hand +warmly, but nothing could shake his determination to remain—and remain +alone. + +The smugglers left with Edmond what he had requested and set sail, but +not without turning about several times, and each time making signs of +a cordial farewell, to which Edmond replied with his hand only, as if +he could not move the rest of his body. + +Then, when they had disappeared, he said with a smile,—“’Tis strange +that it should be among such men that we find proofs of friendship and +devotion.” Then he dragged himself cautiously to the top of a rock, +from which he had a full view of the sea, and thence he saw the tartan +complete her preparations for sailing, weigh anchor, and, balancing +herself as gracefully as a water-fowl ere it takes to the wing, set +sail. + +At the end of an hour she was completely out of sight; at least, it was +impossible for the wounded man to see her any longer from the spot +where he was. Then Dantès rose more agile and light than the kid among +the myrtles and shrubs of these wild rocks, took his gun in one hand, +his pickaxe in the other, and hastened towards the rock on which the +marks he had noted terminated. + +“And now,” he exclaimed, remembering the tale of the Arabian fisherman, +which Faria had related to him, “now, Open Sesame!” + + + + Chapter 24. The Secret Cave + +The sun had nearly reached the meridian, and his scorching rays fell +full on the rocks, which seemed themselves sensible of the heat. +Thousands of grasshoppers, hidden in the bushes, chirped with a +monotonous and dull note; the leaves of the myrtle and olive trees +waved and rustled in the wind. At every step that Edmond took he +disturbed the lizards glittering with the hues of the emerald; afar off +he saw the wild goats bounding from crag to crag. In a word, the island +was inhabited, yet Edmond felt himself alone, guided by the hand of +God. + +He felt an indescribable sensation somewhat akin to dread—that dread of +the daylight which even in the desert makes us fear we are watched and +observed. This feeling was so strong that at the moment when Edmond was +about to begin his labor, he stopped, laid down his pickaxe, seized his +gun, mounted to the summit of the highest rock, and from thence gazed +round in every direction. + +But it was not upon Corsica, the very houses of which he could +distinguish; or on Sardinia; or on the Island of Elba, with its +historical associations; or upon the almost imperceptible line that to +the experienced eye of a sailor alone revealed the coast of Genoa the +proud, and Leghorn the commercial, that he gazed. It was at the +brigantine that had left in the morning, and the tartan that had just +set sail, that Edmond fixed his eyes. + +The first was just disappearing in the straits of Bonifacio; the other, +following an opposite direction, was about to round the Island of +Corsica. + +This sight reassured him. He then looked at the objects near him. He +saw that he was on the highest point of the island,—a statue on this +vast pedestal of granite, nothing human appearing in sight, while the +blue ocean beat against the base of the island, and covered it with a +fringe of foam. Then he descended with cautious and slow step, for he +dreaded lest an accident similar to that he had so adroitly feigned +should happen in reality. + +Dantès, as we have said, had traced the marks along the rocks, and he +had noticed that they led to a small creek, which was hidden like the +bath of some ancient nymph. This creek was sufficiently wide at its +mouth, and deep in the centre, to admit of the entrance of a small +vessel of the lugger class, which would be perfectly concealed from +observation. + +Then following the clew that, in the hands of the Abbé Faria, had been +so skilfully used to guide him through the Dædalian labyrinth of +probabilities, he thought that the Cardinal Spada, anxious not to be +watched, had entered the creek, concealed his little barque, followed +the line marked by the notches in the rock, and at the end of it had +buried his treasure. It was this idea that had brought Dantès back to +the circular rock. One thing only perplexed Edmond, and destroyed his +theory. How could this rock, which weighed several tons, have been +lifted to this spot, without the aid of many men? + +Suddenly an idea flashed across his mind. Instead of raising it, +thought he, they have lowered it. And he sprang from the rock in order +to inspect the base on which it had formerly stood. + +He soon perceived that a slope had been formed, and the rock had slid +along this until it stopped at the spot it now occupied. A large stone +had served as a wedge; flints and pebbles had been inserted around it, +so as to conceal the orifice; this species of masonry had been covered +with earth, and grass and weeds had grown there, moss had clung to the +stones, myrtle-bushes had taken root, and the old rock seemed fixed to +the earth. + +0301m + + + +Dantès dug away the earth carefully, and detected, or fancied he +detected, the ingenious artifice. He attacked this wall, cemented by +the hand of time, with his pickaxe. After ten minutes’ labor the wall +gave way, and a hole large enough to insert the arm was opened. + +Dantès went and cut the strongest olive-tree he could find, stripped +off its branches, inserted it in the hole, and used it as a lever. But +the rock was too heavy, and too firmly wedged, to be moved by anyone +man, were he Hercules himself. Dantès saw that he must attack the +wedge. But how? + +He cast his eyes around, and saw the horn full of powder which his +friend Jacopo had left him. He smiled; the infernal invention would +serve him for this purpose. + +With the aid of his pickaxe, Dantès, after the manner of a labor-saving +pioneer, dug a mine between the upper rock and the one that supported +it, filled it with powder, then made a match by rolling his +handkerchief in saltpetre. He lighted it and retired. + +The explosion soon followed; the upper rock was lifted from its base by +the terrific force of the powder; the lower one flew into pieces; +thousands of insects escaped from the aperture Dantès had previously +formed, and a huge snake, like the guardian demon of the treasure, +rolled himself along in darkening coils, and disappeared. + +Dantès approached the upper rock, which now, without any support, +leaned towards the sea. The intrepid treasure-seeker walked round it, +and, selecting the spot from whence it appeared most susceptible to +attack, placed his lever in one of the crevices, and strained every +nerve to move the mass. + +The rock, already shaken by the explosion, tottered on its base. Dantès +redoubled his efforts; he seemed like one of the ancient Titans, who +uprooted the mountains to hurl against the father of the gods. The rock +yielded, rolled over, bounded from point to point, and finally +disappeared in the ocean. + +On the spot it had occupied was a circular space, exposing an iron ring +let into a square flag-stone. + +Dantès uttered a cry of joy and surprise; never had a first attempt +been crowned with more perfect success. He would fain have continued, +but his knees trembled, and his heart beat so violently, and his sight +became so dim, that he was forced to pause. + +This feeling lasted but for a moment. Edmond inserted his lever in the +ring and exerted all his strength; the flag-stone yielded, and +disclosed steps that descended until they were lost in the obscurity of +a subterraneous grotto. + +Anyone else would have rushed on with a cry of joy. Dantès turned pale, +hesitated, and reflected. + +“Come,” said he to himself, “be a man. I am accustomed to adversity. I +must not be cast down by the discovery that I have been deceived. What, +then, would be the use of all I have suffered? The heart breaks when, +after having been elated by flattering hopes, it sees all its illusions +destroyed. Faria has dreamed this; the Cardinal Spada buried no +treasure here; perhaps he never came here, or if he did, Cæsar Borgia, +the intrepid adventurer, the stealthy and indefatigable plunderer, has +followed him, discovered his traces, pursued them as I have done, +raised the stone, and descending before me, has left me nothing.” + +He remained motionless and pensive, his eyes fixed on the gloomy +aperture that was open at his feet. + +“Now that I expect nothing, now that I no longer entertain the +slightest hopes, the end of this adventure becomes simply a matter of +curiosity.” And he remained again motionless and thoughtful. + +“Yes, yes; this is an adventure worthy a place in the varied career of +that royal bandit. This fabulous event formed but a link in a long +chain of marvels. Yes, Borgia has been here, a torch in one hand, a +sword in the other, and within twenty paces, at the foot of this rock, +perhaps two guards kept watch on land and sea, while their master +descended, as I am about to descend, dispelling the darkness before his +awe-inspiring progress.” + +0303m + + + +“But what was the fate of the guards who thus possessed his secret?” +asked Dantès of himself. + +“The fate,” replied he, smiling, “of those who buried Alaric, and were +interred with the corpse.” + +“Yet, had he come,” thought Dantès, “he would have found the treasure, +and Borgia, he who compared Italy to an artichoke, which he could +devour leaf by leaf, knew too well the value of time to waste it in +replacing this rock. I will go down.” + +Then he descended, a smile on his lips, and murmuring that last word of +human philosophy, “Perhaps!” + +But instead of the darkness, and the thick and mephitic atmosphere he +had expected to find, Dantès saw a dim and bluish light, which, as well +as the air, entered, not merely by the aperture he had just formed, but +by the interstices and crevices of the rock which were visible from +without, and through which he could distinguish the blue sky and the +waving branches of the evergreen oaks, and the tendrils of the creepers +that grew from the rocks. + +After having stood a few minutes in the cavern, the atmosphere of which +was rather warm than damp, Dantès’ eye, habituated as it was to +darkness, could pierce even to the remotest angles of the cavern, which +was of granite that sparkled like diamonds. + +“Alas,” said Edmond, smiling, “these are the treasures the cardinal has +left; and the good abbé, seeing in a dream these glittering walls, has +indulged in fallacious hopes.” + +But he called to mind the words of the will, which he knew by heart. +“In the farthest angle of the second opening,” said the cardinal’s +will. He had only found the first grotto; he had now to seek the +second. Dantès continued his search. He reflected that this second +grotto must penetrate deeper into the island; he examined the stones, +and sounded one part of the wall where he fancied the opening existed, +masked for precaution’s sake. + +The pickaxe struck for a moment with a dull sound that drew out of +Dantès’ forehead large drops of perspiration. At last it seemed to him +that one part of the wall gave forth a more hollow and deeper echo; he +eagerly advanced, and with the quickness of perception that no one but +a prisoner possesses, saw that there, in all probability, the opening +must be. + +However, he, like Cæsar Borgia, knew the value of time; and, in order +to avoid fruitless toil, he sounded all the other walls with his +pickaxe, struck the earth with the butt of his gun, and finding nothing +that appeared suspicious, returned to that part of the wall whence +issued the consoling sound he had before heard. + +He again struck it, and with greater force. Then a singular thing +occurred. As he struck the wall, pieces of stucco similar to that used +in the ground work of arabesques broke off, and fell to the ground in +flakes, exposing a large white stone. The aperture of the rock had been +closed with stones, then this stucco had been applied, and painted to +imitate granite. Dantès struck with the sharp end of his pickaxe, which +entered someway between the interstices. + +It was there he must dig. + +But by some strange play of emotion, in proportion as the proofs that +Faria, had not been deceived became stronger, so did his heart give +way, and a feeling of discouragement stole over him. This last proof, +instead of giving him fresh strength, deprived him of it; the pickaxe +descended, or rather fell; he placed it on the ground, passed his hand +over his brow, and remounted the stairs, alleging to himself, as an +excuse, a desire to be assured that no one was watching him, but in +reality because he felt that he was about to faint. + +The island was deserted, and the sun seemed to cover it with its fiery +glance; afar off, a few small fishing boats studded the bosom of the +blue ocean. + +Dantès had tasted nothing, but he thought not of hunger at such a +moment; he hastily swallowed a few drops of rum, and again entered the +cavern. + +The pickaxe that had seemed so heavy, was now like a feather in his +grasp; he seized it, and attacked the wall. After several blows he +perceived that the stones were not cemented, but had been merely placed +one upon the other, and covered with stucco; he inserted the point of +his pickaxe, and using the handle as a lever, with joy soon saw the +stone turn as if on hinges, and fall at his feet. + +He had nothing more to do now, but with the iron tooth of the pickaxe +to draw the stones towards him one by one. The aperture was already +sufficiently large for him to enter, but by waiting, he could still +cling to hope, and retard the certainty of deception. At last, after +renewed hesitation, Dantès entered the second grotto. + +The second grotto was lower and more gloomy than the first; the air +that could only enter by the newly formed opening had the mephitic +smell Dantès was surprised not to find in the outer cavern. He waited +in order to allow pure air to displace the foul atmosphere, and then +went on. + +At the left of the opening was a dark and deep angle. But to Dantès’ +eye there was no darkness. He glanced around this second grotto; it +was, like the first, empty. + +The treasure, if it existed, was buried in this corner. The time had at +length arrived; two feet of earth removed, and Dantès’ fate would be +decided. + +He advanced towards the angle, and summoning all his resolution, +attacked the ground with the pickaxe. At the fifth or sixth blow the +pickaxe struck against an iron substance. Never did funeral knell, +never did alarm-bell, produce a greater effect on the hearer. Had +Dantès found nothing he could not have become more ghastly pale. + +He again struck his pickaxe into the earth, and encountered the same +resistance, but not the same sound. + +“It is a casket of wood bound with iron,” thought he. + +At this moment a shadow passed rapidly before the opening; Dantès +seized his gun, sprang through the opening, and mounted the stair. A +wild goat had passed before the mouth of the cave, and was feeding at a +little distance. This would have been a favorable occasion to secure +his dinner; but Dantès feared lest the report of his gun should attract +attention. + +He thought a moment, cut a branch of a resinous tree, lighted it at the +fire at which the smugglers had prepared their breakfast, and descended +with this torch. + +He wished to see everything. He approached the hole he had dug, and +now, with the aid of the torch, saw that his pickaxe had in reality +struck against iron and wood. He planted his torch in the ground and +resumed his labor. + +In an instant a space three feet long by two feet broad was cleared, +and Dantès could see an oaken coffer, bound with cut steel; in the +middle of the lid he saw engraved on a silver plate, which was still +untarnished, the arms of the Spada family—viz., a sword, _en pale_, on +an oval shield, like all the Italian armorial bearings, and surmounted +by a cardinal’s hat. + +Dantès easily recognized them, Faria had so often drawn them for him. +There was no longer any doubt: the treasure was there—no one would have +been at such pains to conceal an empty casket. In an instant he had +cleared every obstacle away, and he saw successively the lock, placed +between two padlocks, and the two handles at each end, all carved as +things were carved at that epoch, when art rendered the commonest +metals precious. + +Dantès seized the handles, and strove to lift the coffer; it was +impossible. He sought to open it; lock and padlock were fastened; these +faithful guardians seemed unwilling to surrender their trust. Dantès +inserted the sharp end of the pickaxe between the coffer and the lid, +and pressing with all his force on the handle, burst open the +fastenings. The hinges yielded in their turn and fell, still holding in +their grasp fragments of the wood, and the chest was open. + +0307m + + + +Edmond was seized with vertigo; he cocked his gun and laid it beside +him. He then closed his eyes as children do in order that they may see +in the resplendent night of their own imagination more stars than are +visible in the firmament; then he re-opened them, and stood motionless +with amazement. + +Three compartments divided the coffer. In the first, blazed piles of +golden coin; in the second, were ranged bars of unpolished gold, which +possessed nothing attractive save their value; in the third, Edmond +grasped handfuls of diamonds, pearls, and rubies, which, as they fell +on one another, sounded like hail against glass. + +After having touched, felt, examined these treasures, Edmond rushed +through the caverns like a man seized with frenzy; he leaped on a rock, +from whence he could behold the sea. He was alone—alone with these +countless, these unheard-of treasures! Was he awake, or was it but a +dream? Was it a transient vision, or was he face to face with reality? + +He would fain have gazed upon his gold, and yet he had not strength +enough; for an instant he leaned his head in his hands as if to prevent +his senses from leaving him, and then rushed madly about the rocks of +Monte Cristo, terrifying the wild goats and scaring the sea-fowls with +his wild cries and gestures; then he returned, and, still unable to +believe the evidence of his senses, rushed into the grotto, and found +himself before this mine of gold and jewels. + +This time he fell on his knees, and, clasping his hands convulsively, +uttered a prayer intelligible to God alone. He soon became calmer and +more happy, for only now did he begin to realize his felicity. + +He then set himself to work to count his fortune. There were a thousand +ingots of gold, each weighing from two to three pounds; then he piled +up twenty-five thousand crowns, each worth about eighty francs of our +money, and bearing the effigies of Alexander VI. and his predecessors; +and he saw that the complement was not half empty. And he measured ten +double handfuls of pearls, diamonds, and other gems, many of which, +mounted by the most famous workmen, were valuable beyond their +intrinsic worth. + +Dantès saw the light gradually disappear, and fearing to be surprised +in the cavern, left it, his gun in his hand. A piece of biscuit and a +small quantity of rum formed his supper, and he snatched a few hours’ +sleep, lying over the mouth of the cave. + +It was a night of joy and terror, such as this man of stupendous +emotions had already experienced twice or thrice in his lifetime. + + + + Chapter 25. The Unknown + +Day, for which Dantès had so eagerly and impatiently waited with open +eyes, again dawned. With the first light Dantès resumed his search. +Again he climbed the rocky height he had ascended the previous evening, +and strained his view to catch every peculiarity of the landscape; but +it wore the same wild, barren aspect when seen by the rays of the +morning sun which it had done when surveyed by the fading glimmer of +eve. + +Descending into the grotto, he lifted the stone, filled his pockets +with gems, put the box together as well and securely as he could, +sprinkled fresh sand over the spot from which it had been taken, and +then carefully trod down the earth to give it everywhere a uniform +appearance; then, quitting the grotto, he replaced the stone, heaping +on it broken masses of rocks and rough fragments of crumbling granite, +filling the interstices with earth, into which he deftly inserted +rapidly growing plants, such as the wild myrtle and flowering thorn, +then carefully watering these new plantations, he scrupulously effaced +every trace of footsteps, leaving the approach to the cavern as +savage-looking and untrodden as he had found it. This done, he +impatiently awaited the return of his companions. To wait at Monte +Cristo for the purpose of watching like a dragon over the almost +incalculable riches that had thus fallen into his possession satisfied +not the cravings of his heart, which yearned to return to dwell among +mankind, and to assume the rank, power, and influence which are always +accorded to wealth—that first and greatest of all the forces within the +grasp of man. + +On the sixth day, the smugglers returned. From a distance Dantès +recognized the rig and handling of _La Jeune Amélie_, and dragging +himself with affected difficulty towards the landing-place, he met his +companions with an assurance that, although considerably better than +when they quitted him, he still suffered acutely from his late +accident. He then inquired how they had fared in their trip. To this +question the smugglers replied that, although successful in landing +their cargo in safety, they had scarcely done so when they received +intelligence that a guard-ship had just quitted the port of Toulon and +was crowding all sail towards them. This obliged them to make all the +speed they could to evade the enemy, when they could but lament the +absence of Dantès, whose superior skill in the management of a vessel +would have availed them so materially. In fact, the pursuing vessel had +almost overtaken them when, fortunately, night came on, and enabled +them to double the Cape of Corsica, and so elude all further pursuit. +Upon the whole, however, the trip had been sufficiently successful to +satisfy all concerned; while the crew, and particularly Jacopo, +expressed great regrets that Dantès had not been an equal sharer with +themselves in the profits, which amounted to no less a sum than fifty +piastres each. + +0311m + + + +Edmond preserved the most admirable self-command, not suffering the +faintest indication of a smile to escape him at the enumeration of all +the benefits he would have reaped had he been able to quit the island; +but as _La Jeune Amélie_ had merely come to Monte Cristo to fetch him +away, he embarked that same evening, and proceeded with the captain to +Leghorn. + +Arrived at Leghorn, he repaired to the house of a Jew, a dealer in +precious stones, to whom he disposed of four of his smallest diamonds +for five thousand francs each. Dantès half feared that such valuable +jewels in the hands of a poor sailor like himself might excite +suspicion; but the cunning purchaser asked no troublesome questions +concerning a bargain by which he gained a round profit of at least +eighty per cent. + +The following day Dantès presented Jacopo with an entirely new vessel, +accompanying the gift by a donation of one hundred piastres, that he +might provide himself with a suitable crew and other requisites for his +outfit, upon condition that he would go at once to Marseilles for the +purpose of inquiring after an old man named Louis Dantès, residing in +the Allées de Meilhan, and also a young woman called Mercédès, an +inhabitant of the Catalan village. + +Jacopo could scarcely believe his senses at receiving this magnificent +present, which Dantès hastened to account for by saying that he had +merely been a sailor from whim and a desire to spite his family, who +did not allow him as much money as he liked to spend; but that on his +arrival at Leghorn he had come into possession of a large fortune, left +him by an uncle, whose sole heir he was. The superior education of +Dantès gave an air of such extreme probability to this statement that +it never once occurred to Jacopo to doubt its accuracy. + +The term for which Edmond had engaged to serve on board _La Jeune +Amélie_ having expired, Dantès took leave of the captain, who at first +tried all his powers of persuasion to induce him to remain as one of +the crew, but having been told the history of the legacy, he ceased to +importune him further. + +The following morning Jacopo set sail for Marseilles, with directions +from Dantès to join him at the Island of Monte Cristo. + +Having seen Jacopo fairly out of the harbor, Dantès proceeded to make +his final adieus on board _La Jeune Amélie_, distributing so liberal a +gratuity among her crew as to secure for him the good wishes of all, +and expressions of cordial interest in all that concerned him. To the +captain he promised to write when he had made up his mind as to his +future plans. Then Dantès departed for Genoa. + +At the moment of his arrival a small yacht was under trial in the bay; +this yacht had been built by order of an Englishman, who, having heard +that the Genoese excelled all other builders along the shores of the +Mediterranean in the construction of fast-sailing vessels, was desirous +of possessing a specimen of their skill; the price agreed upon between +the Englishman and the Genoese builder was forty thousand francs. +Dantès, struck with the beauty and capability of the little vessel, +applied to its owner to transfer it to him, offering sixty thousand +francs, upon condition that he should be allowed to take immediate +possession. The proposal was too advantageous to be refused, the more +so as the person for whom the yacht was intended had gone upon a tour +through Switzerland, and was not expected back in less than three weeks +or a month, by which time the builder reckoned upon being able to +complete another. A bargain was therefore struck. Dantès led the owner +of the yacht to the dwelling of a Jew; retired with the latter for a +few minutes to a small back parlor, and upon their return the Jew +counted out to the shipbuilder the sum of sixty thousand francs in +bright gold pieces. + +The delighted builder then offered his services in providing a suitable +crew for the little vessel, but this Dantès declined with many thanks, +saying he was accustomed to cruise about quite alone, and his principal +pleasure consisted in managing his yacht himself; the only thing the +builder could oblige him in would be to contrive a sort of secret +closet in the cabin at his bed’s head, the closet to contain three +divisions, so constructed as to be concealed from all but himself. The +builder cheerfully undertook the commission, and promised to have these +secret places completed by the next day, Dantès furnishing the +dimensions and plan in accordance with which they were to be +constructed. + +0313m + + + +Two hours afterward Dantès sailed from the port of Genoa, under the +inspection of an immense crowd drawn together by curiosity to see the +rich Spanish nobleman who preferred managing his own yacht. But their +wonder was soon changed to admiration at seeing the perfect skill with +which Dantès handled the helm. The boat, indeed, seemed to be animated +with almost human intelligence, so promptly did it obey the slightest +touch; and Dantès required but a short trial of his beautiful craft to +acknowledge that the Genoese had not without reason attained their high +reputation in the art of shipbuilding. + +The spectators followed the little vessel with their eyes as long as it +remained visible; they then turned their conjectures upon her probable +destination. Some insisted she was making for Corsica, others the +Island of Elba; bets were offered to any amount that she was bound for +Spain; while Africa was positively reported by many persons as her +intended course; but no one thought of Monte Cristo. + +Yet thither it was that Dantès guided his vessel, and at Monte Cristo +he arrived at the close of the second day; his boat had proved herself +a first-class sailor, and had come the distance from Genoa in +thirty-five hours. Dantès had carefully noted the general appearance of +the shore, and, instead of landing at the usual place, he dropped +anchor in the little creek. The island was utterly deserted, and bore +no evidence of having been visited since he went away; his treasure was +just as he had left it. + +Early on the following morning he commenced the removal of his riches, +and ere nightfall the whole of his immense wealth was safely deposited +in the compartments of the secret locker. + +A week passed by. Dantès employed it in manœuvring his yacht round the +island, studying it as a skilful horseman would the animal he destined +for some important service, till at the end of that time he was +perfectly conversant with its good and bad qualities. The former Dantès +proposed to augment, the latter to remedy. + +Upon the eighth day he discerned a small vessel under full sail +approaching Monte Cristo. As it drew near, he recognized it as the boat +he had given to Jacopo. He immediately signalled it. His signal was +returned, and in two hours afterwards the new-comer lay at anchor +beside the yacht. + +A mournful answer awaited each of Edmond’s eager inquiries as to the +information Jacopo had obtained. Old Dantès was dead, and Mercédès had +disappeared. + +Dantès listened to these melancholy tidings with outward calmness; but, +leaping lightly ashore, he signified his desire to be quite alone. In a +couple of hours he returned. Two of the men from Jacopo’s boat came on +board the yacht to assist in navigating it, and he gave orders that she +should be steered direct to Marseilles. For his father’s death he was +in some manner prepared; but he knew not how to account for the +mysterious disappearance of Mercédès. + +Without divulging his secret, Dantès could not give sufficiently clear +instructions to an agent. There were, besides, other particulars he was +desirous of ascertaining, and those were of a nature he alone could +investigate in a manner satisfactory to himself. His looking-glass had +assured him, during his stay at Leghorn, that he ran no risk of +recognition; moreover, he had now the means of adopting any disguise he +thought proper. One fine morning, then, his yacht, followed by the +little fishing-boat, boldly entered the port of Marseilles, and +anchored exactly opposite the spot from whence, on the +never-to-be-forgotten night of his departure for the Château d’If, he +had been put on board the boat destined to convey him thither. + +0315m + + + +Still Dantès could not view without a shudder the approach of a +gendarme who accompanied the officers deputed to demand his bill of +health ere the yacht was permitted to hold communication with the +shore; but with that perfect self-possession he had acquired during his +acquaintance with Faria, Dantès coolly presented an English passport he +had obtained from Leghorn, and as this gave him a standing which a +French passport would not have afforded, he was informed that there +existed no obstacle to his immediate debarkation. + +The first person to attract the attention of Dantès, as he landed on +the Canebière, was one of the crew belonging to the _Pharaon_. Edmond +welcomed the meeting with this fellow—who had been one of his own +sailors—as a sure means of testing the extent of the change which time +had worked in his own appearance. Going straight towards him, he +propounded a variety of questions on different subjects, carefully +watching the man’s countenance as he did so; but not a word or look +implied that he had the slightest idea of ever having seen before the +person with whom he was then conversing. + +Giving the sailor a piece of money in return for his civility, Dantès +proceeded onwards; but ere he had gone many steps he heard the man +loudly calling him to stop. + +Dantès instantly turned to meet him. + +“I beg your pardon, sir,” said the honest fellow, in almost breathless +haste, “but I believe you made a mistake; you intended to give me a +two-franc piece, and see, you gave me a double Napoleon.” + +“Thank you, my good friend. I see that I have made a trifling mistake, +as you say; but by way of rewarding your honesty I give you another +double Napoleon, that you may drink to my health, and be able to ask +your messmates to join you.” + +So extreme was the surprise of the sailor, that he was unable even to +thank Edmond, whose receding figure he continued to gaze after in +speechless astonishment. “Some nabob from India,” was his comment. + +Dantès, meanwhile, went on his way. Each step he trod oppressed his +heart with fresh emotion; his first and most indelible recollections +were there; not a tree, not a street, that he passed but seemed filled +with dear and cherished memories. And thus he proceeded onwards till he +arrived at the end of the Rue de Noailles, from whence a full view of +the Allées de Meilhan was obtained. At this spot, so pregnant with fond +and filial remembrances, his heart beat almost to bursting, his knees +tottered under him, a mist floated over his sight, and had he not clung +for support to one of the trees, he would inevitably have fallen to the +ground and been crushed beneath the many vehicles continually passing +there. Recovering himself, however, he wiped the perspiration from his +brows, and stopped not again till he found himself at the door of the +house in which his father had lived. + +The nasturtiums and other plants, which his father had delighted to +train before his window, had all disappeared from the upper part of the +house. + +Leaning against the tree, he gazed thoughtfully for a time at the upper +stories of the shabby little house. Then he advanced to the door, and +asked whether there were any rooms to be let. Though answered in the +negative, he begged so earnestly to be permitted to visit those on the +fifth floor, that, in despite of the oft-repeated assurance of the +_concierge_ that they were occupied, Dantès succeeded in inducing the +man to go up to the tenants, and ask permission for a gentleman to be +allowed to look at them. + +The tenants of the humble lodging were a young couple who had been +scarcely married a week; and seeing them, Dantès sighed heavily. +Nothing in the two small chambers forming the apartments remained as it +had been in the time of the elder Dantès; the very paper was different, +while the articles of antiquated furniture with which the rooms had +been filled in Edmond’s time had all disappeared; the four walls alone +remained as he had left them. + +The bed belonging to the present occupants was placed as the former +owner of the chamber had been accustomed to have his; and, in spite of +his efforts to prevent it, the eyes of Edmond were suffused in tears as +he reflected that on that spot the old man had breathed his last, +vainly calling for his son. + +The young couple gazed with astonishment at the sight of their +visitor’s emotion, and wondered to see the large tears silently chasing +each other down his otherwise stern and immovable features; but they +felt the sacredness of his grief, and kindly refrained from questioning +him as to its cause, while, with instinctive delicacy, they left him to +indulge his sorrow alone. + +0317m + + + +When he withdrew from the scene of his painful recollections, they both +accompanied him downstairs, reiterating their hope that he would come +again whenever he pleased, and assuring him that their poor dwelling +would ever be open to him. + +As Edmond passed the door on the fourth floor, he paused to inquire +whether Caderousse the tailor still dwelt there; but he received for +reply, that the person in question had got into difficulties, and at +the present time kept a small inn on the route from Bellegarde to +Beaucaire. + +Having obtained the address of the person to whom the house in the +Allées de Meilhan belonged, Dantès next proceeded thither, and, under +the name of Lord Wilmore (the name and title inscribed on his +passport), purchased the small dwelling for the sum of twenty-five +thousand francs, at least ten thousand more than it was worth; but had +its owner asked half a million, it would unhesitatingly have been +given. + +The very same day the occupants of the apartments on the fifth floor of +the house, now become the property of Dantès, were duly informed by the +notary who had arranged the necessary transfer of deeds, etc., that the +new landlord gave them their choice of any of the rooms in the house, +without the least augmentation of rent, upon condition of their giving +instant possession of the two small chambers they at present inhabited. + +This strange event aroused great wonder and curiosity in the +neighborhood of the Allées de Meilhan, and a multitude of theories were +afloat, none of which was anywhere near the truth. But what raised +public astonishment to a climax, and set all conjecture at defiance, +was the knowledge that the same stranger who had in the morning visited +the Allées de Meilhan had been seen in the evening walking in the +little village of the Catalans, and afterwards observed to enter a poor +fisherman’s hut, and to pass more than an hour in inquiring after +persons who had either been dead or gone away for more than fifteen or +sixteen years. + +But on the following day the family from whom all these particulars had +been asked received a handsome present, consisting of an entirely new +fishing-boat, with two seines and a tender. + +The delighted recipients of these munificent gifts would gladly have +poured out their thanks to their generous benefactor, but they had seen +him, upon quitting the hut, merely give some orders to a sailor, and +then springing lightly on horseback, leave Marseilles by the Porte +d’Aix. + + + + Chapter 26. The Pont du Gard Inn + +Such of my readers as have made a pedestrian excursion to the south of +France may perchance have noticed, about midway between the town of +Beaucaire and the village of Bellegarde,—a little nearer to the former +than to the latter,—a small roadside inn, from the front of which hung, +creaking and flapping in the wind, a sheet of tin covered with a +grotesque representation of the Pont du Gard. This modern place of +entertainment stood on the left-hand side of the post road, and backed +upon the Rhône. It also boasted of what in Languedoc is styled a +garden, consisting of a small plot of ground, on the side opposite to +the main entrance reserved for the reception of guests. A few dingy +olives and stunted fig-trees struggled hard for existence, but their +withered dusty foliage abundantly proved how unequal was the conflict. +Between these sickly shrubs grew a scanty supply of garlic, tomatoes, +and eschalots; while, lone and solitary, like a forgotten sentinel, a +tall pine raised its melancholy head in one of the corners of this +unattractive spot, and displayed its flexible stem and fan-shaped +summit dried and cracked by the fierce heat of the sub-tropical sun. + +All these trees, great or small, were turned in the direction to which +the Mistral blows, one of the three curses of Provence, the others +being the Durance and the Parliament. + +In the surrounding plain, which more resembled a dusty lake than solid +ground, were scattered a few miserable stalks of wheat, the effect, no +doubt, of a curious desire on the part of the agriculturists of the +country to see whether such a thing as the raising of grain in those +parched regions was practicable. Each stalk served as a perch for a +grasshopper, which regaled the passers-by through this Egyptian scene +with its strident, monotonous note. + +For about seven or eight years the little tavern had been kept by a man +and his wife, with two servants,—a chambermaid named Trinette, and a +hostler called Pecaud. This small staff was quite equal to all the +requirements, for a canal between Beaucaire and Aiguemortes had +revolutionized transportation by substituting boats for the cart and +the stagecoach. And, as though to add to the daily misery which this +prosperous canal inflicted on the unfortunate innkeeper, whose utter +ruin it was fast accomplishing, it was situated between the Rhône from +which it had its source and the post-road it had depleted, not a +hundred steps from the inn, of which we have given a brief but faithful +description. + +The innkeeper himself was a man of from forty to fifty-five years of +age, tall, strong, and bony, a perfect specimen of the natives of those +southern latitudes; he had dark, sparkling, and deep-set eyes, hooked +nose, and teeth white as those of a carnivorous animal; his hair, like +his beard, which he wore under his chin, was thick and curly, and in +spite of his age but slightly interspersed with a few silvery threads. +His naturally dark complexion had assumed a still further shade of +brown from the habit the unfortunate man had acquired of stationing +himself from morning till eve at the threshold of his door, on the +lookout for guests who seldom came, yet there he stood, day after day, +exposed to the meridional rays of a burning sun, with no other +protection for his head than a red handkerchief twisted around it, +after the manner of the Spanish muleteers. This man was our old +acquaintance, Gaspard Caderousse. + +His wife, on the contrary, whose maiden name had been Madeleine +Radelle, was pale, meagre, and sickly-looking. Born in the neighborhood +of Arles, she had shared in the beauty for which its women are +proverbial; but that beauty had gradually withered beneath the +devastating influence of the slow fever so prevalent among dwellers by +the ponds of Aiguemortes and the marshes of Camargue. She remained +nearly always in her second-floor chamber, shivering in her chair, or +stretched languid and feeble on her bed, while her husband kept his +daily watch at the door—a duty he performed with so much the greater +willingness, as it saved him the necessity of listening to the endless +plaints and murmurs of his helpmate, who never saw him without breaking +out into bitter invectives against fate; to all of which her husband +would calmly return an unvarying reply, in these philosophic words: + +“Hush, La Carconte. It is God’s pleasure that things should be so.” + +The sobriquet of La Carconte had been bestowed on Madeleine Radelle +from the fact that she had been born in a village, so called, situated +between Salon and Lambesc; and as a custom existed among the +inhabitants of that part of France where Caderousse lived of styling +every person by some particular and distinctive appellation, her +husband had bestowed on her the name of La Carconte in place of her +sweet and euphonious name of Madeleine, which, in all probability, his +rude guttural language would not have enabled him to pronounce. + +Still, let it not be supposed that amid this affected resignation to +the will of Providence, the unfortunate innkeeper did not writhe under +the double misery of seeing the hateful canal carry off his customers +and his profits, and the daily infliction of his peevish partner’s +murmurs and lamentations. + +0323m + + + +Like other dwellers in the south, he was a man of sober habits and +moderate desires, but fond of external show, vain, and addicted to +display. During the days of his prosperity, not a festivity took place +without himself and wife being among the spectators. He dressed in the +picturesque costume worn upon grand occasions by the inhabitants of the +south of France, bearing equal resemblance to the style adopted both by +the Catalans and Andalusians; while La Carconte displayed the charming +fashion prevalent among the women of Arles, a mode of attire borrowed +equally from Greece and Arabia. But, by degrees, watch-chains, +necklaces, parti-colored scarves, embroidered bodices, velvet vests, +elegantly worked stockings, striped gaiters, and silver buckles for the +shoes, all disappeared; and Gaspard Caderousse, unable to appear abroad +in his pristine splendor, had given up any further participation in the +pomps and vanities, both for himself and wife, although a bitter +feeling of envious discontent filled his mind as the sound of mirth and +merry music from the joyous revellers reached even the miserable +hostelry to which he still clung, more for the shelter than the profit +it afforded. + +Caderousse, then, was, as usual, at his place of observation before the +door, his eyes glancing listlessly from a piece of closely shaven +grass—on which some fowls were industriously, though fruitlessly, +endeavoring to turn up some grain or insect suited to their palate—to +the deserted road, which led away to the north and south, when he was +aroused by the shrill voice of his wife, and grumbling to himself as he +went, he mounted to her chamber, first taking care, however, to set the +entrance door wide open, as an invitation to any chance traveller who +might be passing. + +At the moment Caderousse quitted his sentry-like watch before the door, +the road on which he so eagerly strained his sight was void and lonely +as a desert at midday. There it lay stretching out into one +interminable line of dust and sand, with its sides bordered by tall, +meagre trees, altogether presenting so uninviting an appearance, that +no one in his senses could have imagined that any traveller, at liberty +to regulate his hours for journeying, would choose to expose himself in +such a formidable Sahara. + +Nevertheless, had Caderousse but retained his post a few minutes +longer, he might have caught a dim outline of something approaching +from the direction of Bellegarde; as the moving object drew nearer, +he would easily have perceived that it consisted of a man and horse, +between whom the kindest and most amiable understanding appeared +to exist. The horse was of Hungarian breed, and ambled along at an +easy pace. His rider was a priest, dressed in black, and wearing a +three-cornered hat; and, despite of the ardent rays of a noonday sun, +the pair came on with a fair degree of rapidity. + +Having arrived before the Pont du Gard, the horse stopped, but whether +for his own pleasure or that of his rider would have been difficult to +say. However that might have been, the priest, dismounting, led his +steed by the bridle in search of some place to which he could secure +him. Availing himself of a handle that projected from a half-fallen +door, he tied the animal safely and having drawn a red cotton +handkerchief, from his pocket, wiped away the perspiration that +streamed from his brow, then, advancing to the door, struck thrice with +the end of his iron-shod stick. + +At this unusual sound, a huge black dog came rushing to meet the daring +assailant of his ordinarily tranquil abode, snarling and displaying his +sharp white teeth with a determined hostility that abundantly proved +how little he was accustomed to society. At that moment a heavy +footstep was heard descending the wooden staircase that led from the +upper floor, and, with many bows and courteous smiles, the host of the +Pont du Gard besought his guest to enter. + +0319m + + + +“You are welcome, sir, most welcome!” repeated the astonished +Caderousse. “Now, then, Margotin,” cried he, speaking to the dog, “will +you be quiet? Pray don’t heed him, sir!—he only barks, he never bites. +I make no doubt a glass of good wine would be acceptable this +dreadfully hot day.” Then perceiving for the first time the garb of the +traveller he had to entertain, Caderousse hastily exclaimed: “A +thousand pardons! I really did not observe whom I had the honor to +receive under my poor roof. What would the abbé please to have? What +refreshment can I offer? All I have is at his service.” + +The priest gazed on the person addressing him with a long and searching +gaze—there even seemed a disposition on his part to court a similar +scrutiny on the part of the innkeeper; then, observing in the +countenance of the latter no other expression than extreme surprise at +his own want of attention to an inquiry so courteously worded, he +deemed it as well to terminate this dumb show, and therefore said, +speaking with a strong Italian accent, “You are, I presume, M. +Caderousse?” + +“Yes, sir,” answered the host, even more surprised at the question than +he had been by the silence which had preceded it; “I am Gaspard +Caderousse, at your service.” + +“Gaspard Caderousse,” rejoined the priest. “Yes,—Christian and surname +are the same. You formerly lived, I believe in the Allées de Meilhan, +on the fourth floor?” + +0325m + + + +“I did.” + +“And you followed the business of a tailor?” + +“True, I was a tailor, till the trade fell off. It is so hot at +Marseilles, that really I believe that the respectable inhabitants will +in time go without any clothing whatever. But talking of heat, is there +nothing I can offer you by way of refreshment?” + +“Yes; let me have a bottle of your best wine, and then, with your +permission, we will resume our conversation from where we left off.” + +“As you please, sir,” said Caderousse, who, anxious not to lose the +present opportunity of finding a customer for one of the few bottles of +Cahors still remaining in his possession, hastily raised a trap-door in +the floor of the apartment they were in, which served both as parlor +and kitchen. + +Upon issuing forth from his subterranean retreat at the expiration of +five minutes, he found the abbé seated upon a wooden stool, leaning his +elbow on a table, while Margotin, whose animosity seemed appeased by +the unusual command of the traveller for refreshments, had crept up to +him, and had established himself very comfortably between his knees, +his long, skinny neck resting on his lap, while his dim eye was fixed +earnestly on the traveller’s face. + +“Are you quite alone?” inquired the guest, as Caderousse placed before +him the bottle of wine and a glass. + +“Quite, quite alone,” replied the man—“or, at least, practically so, +for my poor wife, who is the only person in the house besides myself, +is laid up with illness, and unable to render me the least assistance, +poor thing!” + +“You are married, then?” said the priest, with a show of interest, +glancing round as he spoke at the scanty furnishings of the apartment. + +“Ah, sir,” said Caderousse with a sigh, “it is easy to perceive I am +not a rich man; but in this world a man does not thrive the better for +being honest.” The abbé fixed on him a searching, penetrating glance. + +“Yes, honest—I can certainly say that much for myself,” continued the +innkeeper, fairly sustaining the scrutiny of the abbé’s gaze; “I can +boast with truth of being an honest man; and,” continued he +significantly, with a hand on his breast and shaking his head, “that is +more than everyone can say nowadays.” + +0327m + + + +“So much the better for you, if what you assert be true,” said the +abbé; “for I am firmly persuaded that, sooner or later, the good will +be rewarded, and the wicked punished.” + +“Such words as those belong to your profession,” answered Caderousse, +“and you do well to repeat them; but,” added he, with a bitter +expression of countenance, “one is free to believe them or not, as one +pleases.” + +“You are wrong to speak thus,” said the abbé; “and perhaps I may, in my +own person, be able to prove to you how completely you are in error.” + +“What mean you?” inquired Caderousse with a look of surprise. + +“In the first place, I must be satisfied that you are the person I am +in search of.” + +“What proofs do you require?” + +“Did you, in the year 1814 or 1815, know anything of a young sailor +named Dantès?” + +“Dantès? Did I know poor dear Edmond? Why, Edmond Dantès and myself +were intimate friends!” exclaimed Caderousse, whose countenance flushed +darkly as he caught the penetrating gaze of the abbé fixed on him, +while the clear, calm eye of the questioner seemed to dilate with +feverish scrutiny. + +“You remind me,” said the priest, “that the young man concerning whom I +asked you was said to bear the name of Edmond.” + +“Said to bear the name!” repeated Caderousse, becoming excited and +eager. “Why, he was so called as truly as I myself bore the appellation +of Gaspard Caderousse; but tell me, I pray, what has become of poor +Edmond? Did you know him? Is he alive and at liberty? Is he prosperous +and happy?” + +“He died a more wretched, hopeless, heart-broken prisoner than the +felons who pay the penalty of their crimes at the galleys of Toulon.” + +A deadly pallor followed the flush on the countenance of Caderousse, +who turned away, and the priest saw him wiping the tears from his eyes +with the corner of the red handkerchief twisted round his head. + +“Poor fellow, poor fellow!” murmured Caderousse. “Well, there, sir, is +another proof that good people are never rewarded on this earth, and +that none but the wicked prosper. Ah,” continued Caderousse, speaking +in the highly colored language of the South, “the world grows worse and +worse. Why does not God, if he really hates the wicked, as he is said +to do, send down brimstone and fire, and consume them altogether?” + +“You speak as though you had loved this young Dantès,” observed the +abbé, without taking any notice of his companion’s vehemence. + +“And so I did,” replied Caderousse; “though once, I confess, I envied +him his good fortune. But I swear to you, sir, I swear to you, by +everything a man holds dear, I have, since then, deeply and sincerely +lamented his unhappy fate.” + +There was a brief silence, during which the fixed, searching eye of the +abbé was employed in scrutinizing the agitated features of the +innkeeper. + +“You knew the poor lad, then?” continued Caderousse. + +“I was called to see him on his dying bed, that I might administer to +him the consolations of religion.” + +“And of what did he die?” asked Caderousse in a choking voice. + +“Of what, think you, do young and strong men die in prison, when they +have scarcely numbered their thirtieth year, unless it be of +imprisonment?” Caderousse wiped away the large beads of perspiration +that gathered on his brow. + +0329m + + + +“But the strangest part of the story is,” resumed the abbé, “that +Dantès, even in his dying moments, swore by his crucified Redeemer, +that he was utterly ignorant of the cause of his detention.” + +“And so he was,” murmured Caderousse. “How should he have been +otherwise? Ah, sir, the poor fellow told you the truth.” + +“And for that reason, he besought me to try and clear up a mystery he +had never been able to penetrate, and to clear his memory should any +foul spot or stain have fallen on it.” + +And here the look of the abbé, becoming more and more fixed, seemed to +rest with ill-concealed satisfaction on the gloomy depression which was +rapidly spreading over the countenance of Caderousse. + +“A rich Englishman,” continued the abbé, “who had been his companion in +misfortune, but had been released from prison during the second +restoration, was possessed of a diamond of immense value; this jewel he +bestowed on Dantès upon himself quitting the prison, as a mark of his +gratitude for the kindness and brotherly care with which Dantès had +nursed him in a severe illness he underwent during his confinement. +Instead of employing this diamond in attempting to bribe his jailers, +who might only have taken it and then betrayed him to the governor, +Dantès carefully preserved it, that in the event of his getting out of +prison he might have wherewithal to live, for the sale of such a +diamond would have quite sufficed to make his fortune.” + +“Then, I suppose,” asked Caderousse, with eager, glowing looks, “that +it was a stone of immense value?” + +“Why, everything is relative,” answered the abbé. “To one in Edmond’s +position the diamond certainly was of great value. It was estimated at +fifty thousand francs.” + +“Bless me!” exclaimed Caderousse, “fifty thousand francs! Surely the +diamond was as large as a nut to be worth all that.” + +“No,” replied the abbé, “it was not of such a size as that; but you +shall judge for yourself. I have it with me.” + +The sharp gaze of Caderousse was instantly directed towards the +priest’s garments, as though hoping to discover the location of the +treasure. Calmly drawing forth from his pocket a small box covered with +black shagreen, the abbé opened it, and displayed to the dazzled eyes +of Caderousse the sparkling jewel it contained, set in a ring of +admirable workmanship. + +“And that diamond,” cried Caderousse, almost breathless with eager +admiration, “you say, is worth fifty thousand francs?” + +“It is, without the setting, which is also valuable,” replied the abbé, +as he closed the box, and returned it to his pocket, while its +brilliant hues seemed still to dance before the eyes of the fascinated +innkeeper. + +“But how comes the diamond in your possession, sir? Did Edmond make you +his heir?” + +“No, merely his testamentary executor. ‘I once possessed four dear and +faithful friends, besides the maiden to whom I was betrothed’ he said; +‘and I feel convinced they have all unfeignedly grieved over my loss. +The name of one of the four friends is Caderousse.’” The innkeeper +shivered. + +“‘Another of the number,’” continued the abbé, without seeming to +notice the emotion of Caderousse, “‘is called Danglars; and the third, +in spite of being my rival, entertained a very sincere affection for +me.’” + +A fiendish smile played over the features of Caderousse, who was about +to break in upon the abbé’s speech, when the latter, waving his hand, +said, “Allow me to finish first, and then if you have any observations +to make, you can do so afterwards. ‘The third of my friends, although +my rival, was much attached to me,—his name was Fernand; that of my +betrothed was’—Stay, stay,” continued the abbé, “I have forgotten what +he called her.” + +“Mercédès,” said Caderousse eagerly. + +“True,” said the abbé, with a stifled sigh, “Mercédès it was.” + +“Go on,” urged Caderousse. + +“Bring me a _carafe_ of water,” said the abbé. + +Caderousse quickly performed the stranger’s bidding; and after pouring +some into a glass, and slowly swallowing its contents, the abbé, +resuming his usual placidity of manner, said, as he placed his empty +glass on the table: + +“Where did we leave off?” + +“The name of Edmond’s betrothed was Mercédès.” + +“To be sure. ‘You will go to Marseilles,’ said Dantès,—for you +understand, I repeat his words just as he uttered them. Do you +understand?” + +“Perfectly.” + +“‘You will sell this diamond; you will divide the money into five equal +parts, and give an equal portion to these good friends, the only +persons who have loved me upon earth.’” + +“But why into five parts?” asked Caderousse; “you only mentioned four +persons.” + +“Because the fifth is dead, as I hear. The fifth sharer in Edmond’s +bequest, was his own father.” + +“Too true, too true!” ejaculated Caderousse, almost suffocated by the +contending passions which assailed him, “the poor old man did die.” + +“I learned so much at Marseilles,” replied the abbé, making a strong +effort to appear indifferent; “but from the length of time that has +elapsed since the death of the elder Dantès, I was unable to obtain any +particulars of his end. Can you enlighten me on that point?” + +“I do not know who could if I could not,” said Caderousse. “Why, I +lived almost on the same floor with the poor old man. Ah, yes, about a +year after the disappearance of his son the poor old man died.” + +“Of what did he die?” + +“Why, the doctors called his complaint gastro-enteritis, I believe; his +acquaintances say he died of grief; but I, who saw him in his dying +moments, I say he died of——” + +Caderousse paused. + +“Of what?” asked the priest, anxiously and eagerly. + +“Why, of downright starvation.” + +“Starvation!” exclaimed the abbé, springing from his seat. “Why, the +vilest animals are not suffered to die by such a death as that. The +very dogs that wander houseless and homeless in the streets find some +pitying hand to cast them a mouthful of bread; and that a man, a +Christian, should be allowed to perish of hunger in the midst of other +men who call themselves Christians, is too horrible for belief. Oh, it +is impossible!—utterly impossible!” + +“What I have said, I have said,” answered Caderousse. + +“And you are a fool for having said anything about it,” said a voice +from the top of the stairs. “Why should you meddle with what does not +concern you?” + +The two men turned quickly, and saw the sickly countenance of La +Carconte peering between the baluster rails; attracted by the sound of +voices, she had feebly dragged herself down the stairs, and, seated on +the lower step, head on knees, she had listened to the foregoing +conversation. + +“Mind your own business, wife,” replied Caderousse sharply. “This +gentleman asks me for information, which common politeness will not +permit me to refuse.” + +“Politeness, you simpleton!” retorted La Carconte. “What have you to do +with politeness, I should like to know? Better study a little common +prudence. How do you know the motives that person may have for trying +to extract all he can from you?” + +“I pledge you my word, madam,” said the abbé, “that my intentions are +good; and that your husband can incur no risk, provided he answers me +candidly.” + +“Ah, that’s all very fine,” retorted the woman. “Nothing is easier than +to begin with fair promises and assurances of nothing to fear; but when +poor, silly folks, like my husband there, have been persuaded to tell +all they know, the promises and assurances of safety are quickly +forgotten; and at some moment when nobody is expecting it, behold +trouble and misery, and all sorts of persecutions, are heaped on the +unfortunate wretches, who cannot even see whence all their afflictions +come.” + +“Nay, nay, my good woman, make yourself perfectly easy, I beg of you. +Whatever evils may befall you, they will not be occasioned by my +instrumentality, that I solemnly promise you.” + +La Carconte muttered a few inarticulate words, then let her head again +drop upon her knees, and went into a fit of ague, leaving the two +speakers to resume the conversation, but remaining so as to be able to +hear every word they uttered. Again the abbé had been obliged to +swallow a draught of water to calm the emotions that threatened to +overpower him. + +When he had sufficiently recovered himself, he said, “It appears, then, +that the miserable old man you were telling me of was forsaken by +everyone. Surely, had not such been the case, he would not have +perished by so dreadful a death.” + +“Why, he was not altogether forsaken,” continued Caderousse, “for +Mercédès the Catalan and Monsieur Morrel were very kind to him; but +somehow the poor old man had contracted a profound hatred for +Fernand—the very person,” added Caderousse with a bitter smile, “that +you named just now as being one of Dantès’ faithful and attached +friends.” + +“And was he not so?” asked the abbé. + +“Gaspard, Gaspard!” murmured the woman, from her seat on the stairs, +“mind what you are saying!” + +Caderousse made no reply to these words, though evidently irritated and +annoyed by the interruption, but, addressing the abbé, said, “Can a man +be faithful to another whose wife he covets and desires for himself? +But Dantès was so honorable and true in his own nature, that he +believed everybody’s professions of friendship. Poor Edmond, he was +cruelly deceived; but it was fortunate that he never knew, or he might +have found it more difficult, when on his deathbed, to pardon his +enemies. And, whatever people may say,” continued Caderousse, in his +native language, which was not altogether devoid of rude poetry, “I +cannot help being more frightened at the idea of the malediction of the +dead than the hatred of the living.” + +“Imbecile!” exclaimed La Carconte. + +“Do you, then, know in what manner Fernand injured Dantès?” inquired +the abbé of Caderousse. + +“Do I? No one better.” + +“Speak out then, say what it was!” + +“Gaspard!” cried La Carconte, “do as you will; you are master—but if +you take my advice you’ll hold your tongue.” + +“Well, wife,” replied Caderousse, “I don’t know but what you’re right!” + +“So you will say nothing?” asked the abbé. + +“Why, what good would it do?” asked Caderousse. “If the poor lad were +living, and came to me and begged that I would candidly tell which were +his true and which his false friends, why, perhaps, I should not +hesitate. But you tell me he is no more, and therefore can have nothing +to do with hatred or revenge, so let all such feeling be buried with +him.” + +“You prefer, then,” said the abbé, “that I should bestow on men you say +are false and treacherous, the reward intended for faithful +friendship?” + +“That is true enough,” returned Caderousse. “You say truly, the gift of +poor Edmond was not meant for such traitors as Fernand and Danglars; +besides, what would it be to them? no more than a drop of water in the +ocean.” + +“Remember,” chimed in La Carconte, “those two could crush you at a +single blow!” + +“How so?” inquired the abbé. “Are these persons, then, so rich and +powerful?” + +“Do you not know their history?” + +“I do not. Pray relate it to me!” + +Caderousse seemed to reflect for a few moments, then said, “No, truly, +it would take up too much time.” + +“Well, my good friend,” returned the abbé, in a tone that indicated +utter indifference on his part, “you are at liberty, either to speak or +be silent, just as you please; for my own part, I respect your scruples +and admire your sentiments; so let the matter end. I shall do my duty +as conscientiously as I can, and fulfil my promise to the dying man. My +first business will be to dispose of this diamond.” + +So saying, the abbé again drew the small box from his pocket, opened +it, and contrived to hold it in such a light, that a bright flash of +brilliant hues passed before the dazzled gaze of Caderousse. + +“Wife, wife!” cried he in a hoarse voice, “come here!” + +“Diamond!” exclaimed La Carconte, rising and descending to the chamber +with a tolerably firm step; “what diamond are you talking about?” + +“Why, did you not hear all we said?” inquired Caderousse. “It is a +beautiful diamond left by poor Edmond Dantès, to be sold, and the money +divided between his father, Mercédès, his betrothed bride, Fernand, +Danglars, and myself. The jewel is worth at least fifty thousand +francs.” + +“Oh, what a magnificent jewel!” cried the astonished woman. + +“The fifth part of the profits from this stone belongs to us then, does +it not?” asked Caderousse. + +“It does,” replied the abbé; “with the addition of an equal division of +that part intended for the elder Dantès, which I believe myself at +liberty to divide equally with the four survivors.” + +“And why among us four?” inquired Caderousse. + +“As being the friends Edmond esteemed most faithful and devoted to +him.” + +“I don’t call those friends who betray and ruin you,” murmured the wife +in her turn, in a low, muttering voice. + +“Of course not!” rejoined Caderousse quickly; “no more do I, and that +was what I was observing to this gentleman just now. I said I looked +upon it as a sacrilegious profanation to reward treachery, perhaps +crime.” + +“Remember,” answered the abbé calmly, as he replaced the jewel and its +case in the pocket of his cassock, “it is your fault, not mine, that I +do so. You will have the goodness to furnish me with the address of +both Fernand and Danglars, in order that I may execute Edmond’s last +wishes.” + +The agitation of Caderousse became extreme, and large drops of +perspiration rolled from his heated brow. As he saw the abbé rise from +his seat and go towards the door, as though to ascertain if his horse +were sufficiently refreshed to continue his journey, Caderousse and his +wife exchanged looks of deep meaning. + +0335m + + + +“There, you see, wife,” said the former, “this splendid diamond might +all be ours, if we chose!” + +“Do you believe it?” + +“Why, surely a man of his holy profession would not deceive us!” + +“Well,” replied La Carconte, “do as you like. For my part, I wash my +hands of the affair.” + +So saying, she once more climbed the staircase leading to her chamber, +her body convulsed with chills, and her teeth rattling in her head, in +spite of the intense heat of the weather. Arrived at the top stair, she +turned round, and called out, in a warning tone, to her husband, +“Gaspard, consider well what you are about to do!” + +“I have both reflected and decided,” answered he. + +La Carconte then entered her chamber, the flooring of which creaked +beneath her heavy, uncertain tread, as she proceeded towards her +armchair, into which she fell as though exhausted. + +“Well,” asked the abbé, as he returned to the apartment below, “what +have you made up your mind to do?” + +“To tell you all I know,” was the reply. + +“I certainly think you act wisely in so doing,” said the priest. “Not +because I have the least desire to learn anything you may please to +conceal from me, but simply that if, through your assistance, I could +distribute the legacy according to the wishes of the testator, why, so +much the better, that is all.” + +“I hope it may be so,” replied Caderousse, his face flushed with +cupidity. + +“I am all attention,” said the abbé. + +“Stop a minute,” answered Caderousse; “we might be interrupted in the +most interesting part of my story, which would be a pity; and it is as +well that your visit hither should be made known only to ourselves.” + +With these words he went stealthily to the door, which he closed, and, +by way of still greater precaution, bolted and barred it, as he was +accustomed to do at night. + +During this time the abbé had chosen his place for listening at his +ease. He removed his seat into a corner of the room, where he himself +would be in deep shadow, while the light would be fully thrown on the +narrator; then, with head bent down and hands clasped, or rather +clenched together, he prepared to give his whole attention to +Caderousse, who seated himself on the little stool, exactly opposite to +him. + +“Remember, this is no affair of mine,” said the trembling voice of La +Carconte, as though through the flooring of her chamber she viewed the +scene that was enacting below. + +“Enough, enough!” replied Caderousse; “say no more about it; I will +take all the consequences upon myself.” + +And he began his story. + + + + Chapter 27. The Story + +First, sir,” said Caderousse, “you must make me a promise.” + +“What is that?” inquired the abbé. + +“Why, if you ever make use of the details I am about to give you, that +you will never let anyone know that it was I who supplied them; for the +persons of whom I am about to talk are rich and powerful, and if they +only laid the tips of their fingers on me, I should break to pieces +like glass.” + +“Make yourself easy, my friend,” replied the abbé. “I am a priest, and +confessions die in my breast. Recollect, our only desire is to carry +out, in a fitting manner, the last wishes of our friend. Speak, then, +without reserve, as without hatred; tell the truth, the whole truth; I +do not know, never may know, the persons of whom you are about to +speak; besides, I am an Italian, and not a Frenchman, and belong to +God, and not to man, and I shall shortly retire to my convent, which I +have only quitted to fulfil the last wishes of a dying man.” + +This positive assurance seemed to give Caderousse a little courage. + +“Well, then, under these circumstances,” said Caderousse, “I will, I +even believe I ought to undeceive you as to the friendship which poor +Edmond thought so sincere and unquestionable.” + +“Begin with his father, if you please.” said the abbé; “Edmond talked +to me a great deal about the old man for whom he had the deepest love.” + +“The history is a sad one, sir,” said Caderousse, shaking his head; +“perhaps you know all the earlier part of it?” + +“Yes.” answered the abbé; “Edmond related to me everything until the +moment when he was arrested in a small cabaret close to Marseilles.” + +“At La Réserve! Oh, yes; I can see it all before me this moment.” + +“Was it not his betrothal feast?” + +“It was and the feast that began so gayly had a very sorrowful ending; +a police commissary, followed by four soldiers, entered, and Dantès was +arrested.” + +“Yes, and up to this point I know all,” said the priest. “Dantès +himself only knew that which personally concerned him, for he never +beheld again the five persons I have named to you, or heard mention of +anyone of them.” + +“Well, when Dantès was arrested, Monsieur Morrel hastened to obtain the +particulars, and they were very sad. The old man returned alone to his +home, folded up his wedding suit with tears in his eyes, and paced up +and down his chamber the whole day, and would not go to bed at all, for +I was underneath him and heard him walking the whole night; and for +myself, I assure you I could not sleep either, for the grief of the +poor father gave me great uneasiness, and every step he took went to my +heart as really as if his foot had pressed against my breast. + +“The next day Mercédès came to implore the protection of M. de +Villefort; she did not obtain it, however, and went to visit the old +man; when she saw him so miserable and heart-broken, having passed a +sleepless night, and not touched food since the previous day, she +wished him to go with her that she might take care of him; but the old +man would not consent. ‘No,’ was the old man’s reply, ‘I will not leave +this house, for my poor dear boy loves me better than anything in the +world; and if he gets out of prison he will come and see me the first +thing, and what would he think if I did not wait here for him?’ I heard +all this from the window, for I was anxious that Mercédès should +persuade the old man to accompany her, for his footsteps over my head +night and day did not leave me a moment’s repose.” + +“But did you not go upstairs and try to console the poor old man?” +asked the abbé. + +“Ah, sir,” replied Caderousse, “we cannot console those who will not be +consoled, and he was one of these; besides, I know not why, but he +seemed to dislike seeing me. One night, however, I heard his sobs, and +I could not resist my desire to go up to him, but when I reached his +door he was no longer weeping but praying. I cannot now repeat to you, +sir, all the eloquent words and imploring language he made use of; it +was more than piety, it was more than grief, and I, who am no canter, +and hate the Jesuits, said then to myself, ‘It is really well, and I am +very glad that I have not any children; for if I were a father and felt +such excessive grief as the old man does, and did not find in my memory +or heart all he is now saying, I should throw myself into the sea at +once, for I could not bear it.’” + +“Poor father!” murmured the priest. + +“From day to day he lived on alone, and more and more solitary. M. +Morrel and Mercédès came to see him, but his door was closed; and, +although I was certain he was at home, he would not make any answer. +One day, when, contrary to his custom, he had admitted Mercédès, and +the poor girl, in spite of her own grief and despair, endeavored to +console him, he said to her,—‘Be assured, my dear daughter, he is dead; +and instead of expecting him, it is he who is awaiting us; I am quite +happy, for I am the oldest, and of course shall see him first.’ + +“However well disposed a person may be, why, you see we leave off after +a time seeing persons who are in sorrow, they make one melancholy; and +so at last old Dantès was left all to himself, and I only saw from time +to time strangers go up to him and come down again with some bundle +they tried to hide; but I guessed what these bundles were, and that he +sold by degrees what he had to pay for his subsistence. At length the +poor old fellow reached the end of all he had; he owed three quarters’ +rent, and they threatened to turn him out; he begged for another week, +which was granted to him. I know this, because the landlord came into +my apartment when he left his. + +“For the first three days I heard him walking about as usual, but, on +the fourth I heard nothing. I then resolved to go up to him at all +risks. The door was closed, but I looked through the keyhole, and saw +him so pale and haggard, that believing him very ill, I went and told +M. Morrel and then ran on to Mercédès. They both came immediately, M. +Morrel bringing a doctor, and the doctor said it was inflammation of +the bowels, and ordered him a limited diet. I was there, too, and I +never shall forget the old man’s smile at this prescription. + +“From that time he received all who came; he had an excuse for not +eating any more; the doctor had put him on a diet.” + +The abbé uttered a kind of groan. + +“The story interests you, does it not, sir?” inquired Caderousse. + +“Yes,” replied the abbé, “it is very affecting.” + +“Mercédès came again, and she found him so altered that she was even +more anxious than before to have him taken to her own home. This was M. +Morrel’s wish also, who would fain have conveyed the old man against +his consent; but the old man resisted, and cried so that they were +actually frightened. Mercédès remained, therefore, by his bedside, and +M. Morrel went away, making a sign to the Catalan that he had left his +purse on the chimney-piece; but, availing himself of the doctor’s +order, the old man would not take any sustenance; at length (after nine +days of despair and fasting), the old man died, cursing those who had +caused his misery, and saying to Mercédès, ‘If you ever see my Edmond +again, tell him I die blessing him.’” + +The abbé rose from his chair, made two turns round the chamber, and +pressed his trembling hand against his parched throat. + +“And you believe he died——” + +“Of hunger, sir, of hunger,” said Caderousse. “I am as certain of it as +that we two are Christians.” + +The abbé, with a shaking hand, seized a glass of water that was +standing by him half-full, swallowed it at one gulp, and then resumed +his seat, with red eyes and pale cheeks. + +“This was, indeed, a horrid event,” said he in a hoarse voice. + +“The more so, sir, as it was men’s and not God’s doing.” + +“Tell me of those men,” said the abbé, “and remember too,” he added in +an almost menacing tone, “you have promised to tell me everything. Tell +me, therefore, who are these men who killed the son with despair, and +the father with famine?” + +“Two men jealous of him, sir; one from love, and the other from +ambition,—Fernand and Danglars.” + +“How was this jealousy manifested? Speak on.” + +“They denounced Edmond as a Bonapartist agent.” + +“Which of the two denounced him? Which was the real delinquent?” + +“Both, sir; one with a letter, and the other put it in the post.” + +“And where was this letter written?” + +“At La Réserve, the day before the betrothal feast.” + +“’Twas so, then—’twas so, then,” murmured the abbé. “Oh, Faria, Faria, +how well did you judge men and things!” + +“What did you please to say, sir?” asked Caderousse. + +“Nothing, nothing,” replied the priest; “go on.” + +“It was Danglars who wrote the denunciation with his left hand, that +his writing might not be recognized, and Fernand who put it in the +post.” + +“But,” exclaimed the abbé suddenly, “you were there yourself.” + +“I!” said Caderousse, astonished; “who told you I was there?” + +The abbé saw he had overshot the mark, and he added quickly,—“No one; +but in order to have known everything so well, you must have been an +eye-witness.” + +“True, true!” said Caderousse in a choking voice, “I was there.” + +“And did you not remonstrate against such infamy?” asked the abbé; “if +not, you were an accomplice.” + +“Sir,” replied Caderousse, “they had made me drink to such an excess +that I nearly lost all perception. I had only an indistinct +understanding of what was passing around me. I said all that a man in +such a state could say; but they both assured me that it was a jest +they were carrying on, and perfectly harmless.” + +“Next day—next day, sir, you must have seen plain enough what they had +been doing, yet you said nothing, though you were present when Dantès +was arrested.” + +“Yes, sir, I was there, and very anxious to speak; but Danglars +restrained me. ‘If he should really be guilty,’ said he, ‘and did +really put in to the Island of Elba; if he is really charged with a +letter for the Bonapartist committee at Paris, and if they find this +letter upon him, those who have supported him will pass for his +accomplices.’ I confess I had my fears, in the state in which politics +then were, and I held my tongue. It was cowardly, I confess, but it was +not criminal.” + +0341m + + + +“I understand—you allowed matters to take their course, that was all.” + +“Yes, sir,” answered Caderousse; “and remorse preys on me night and +day. I often ask pardon of God, I swear to you, because this action, +the only one with which I have seriously to reproach myself in all my +life, is no doubt the cause of my abject condition. I am expiating a +moment of selfishness, and so I always say to La Carconte, when she +complains, ‘Hold your tongue, woman; it is the will of God.’” And +Caderousse bowed his head with every sign of real repentance. + +“Well, sir,” said the abbé, “you have spoken unreservedly; and thus to +accuse yourself is to deserve pardon.” + +“Unfortunately, Edmond is dead, and has not pardoned me.” + +“He did not know,” said the abbé. + +“But he knows it all now,” interrupted Caderousse; “they say the dead +know everything.” + +There was a brief silence; the abbé rose and paced up and down +pensively, and then resumed his seat. + +“You have two or three times mentioned a M. Morrel,” he said; “who was +he?” + +“The owner of the _Pharaon_ and patron of Dantès.” + +“And what part did he play in this sad drama?” inquired the abbé. + +“The part of an honest man, full of courage and real regard. Twenty +times he interceded for Edmond. When the emperor returned, he wrote, +implored, threatened, and so energetically, that on the second +restoration he was persecuted as a Bonapartist. Ten times, as I told +you, he came to see Dantès’ father, and offered to receive him in his +own house; and the night or two before his death, as I have already +said, he left his purse on the mantelpiece, with which they paid the +old man’s debts, and buried him decently; and so Edmond’s father died, +as he had lived, without doing harm to anyone. I have the purse still +by me—a large one, made of red silk.” + +“And,” asked the abbé, “is M. Morrel still alive?” + +“Yes,” replied Caderousse. + +“In that case,” replied the abbé, “he should be a man blessed of God, +rich, happy.” + +Caderousse smiled bitterly. “Yes, happy as myself,” said he. + +“What! M. Morrel unhappy?” exclaimed the abbé. + +“He is reduced almost to the last extremity—nay, he is almost at the +point of dishonor.” + +“How?” + +“Yes,” continued Caderousse, “so it is; after five-and-twenty years of +labor, after having acquired a most honorable name in the trade of +Marseilles, M. Morrel is utterly ruined; he has lost five ships in two +years, has suffered by the bankruptcy of three large houses, and his +only hope now is in that very _Pharaon_ which poor Dantès commanded, +and which is expected from the Indies with a cargo of cochineal and +indigo. If this ship founders, like the others, he is a ruined man.” + +“And has the unfortunate man wife or children?” inquired the abbé. + +“Yes, he has a wife, who through everything has behaved like an angel; +he has a daughter, who was about to marry the man she loved, but whose +family now will not allow him to wed the daughter of a ruined man; he +has, besides, a son, a lieutenant in the army; and, as you may suppose, +all this, instead of lessening, only augments his sorrows. If he were +alone in the world he would blow out his brains, and there would be an +end.” + +“Horrible!” ejaculated the priest. + +“And it is thus heaven recompenses virtue, sir,” added Caderousse. “You +see, I, who never did a bad action but that I have told you of—am in +destitution, with my poor wife dying of fever before my very eyes, and +I unable to do anything in the world for her; I shall die of hunger, as +old Dantès did, while Fernand and Danglars are rolling in wealth.” + +“How is that?” + +“Because their deeds have brought them good fortune, while honest men +have been reduced to misery.” + +“What has become of Danglars, the instigator, and therefore the most +guilty?” + +“What has become of him? Why, he left Marseilles, and was taken, on the +recommendation of M. Morrel, who did not know his crime, as cashier +into a Spanish bank. During the war with Spain he was employed in the +commissariat of the French army, and made a fortune; then with that +money he speculated in the funds, and trebled or quadrupled his +capital; and, having first married his banker’s daughter, who left him +a widower, he has married a second time, a widow, a Madame de Nargonne, +daughter of M. de Servieux, the king’s chamberlain, who is in high +favor at court. He is a millionaire, and they have made him a baron, +and now he is the Baron Danglars, with a fine residence in the Rue du +Mont-Blanc, with ten horses in his stables, six footmen in his +antechamber, and I know not how many millions in his strongbox.” + +“Ah!” said the abbé, in a peculiar tone, “he is happy.” + +“Happy? Who can answer for that? Happiness or unhappiness is the secret +known but to one’s self and the walls—walls have ears but no tongue; +but if a large fortune produces happiness, Danglars is happy.” + +“And Fernand?” + +“Fernand? Why, much the same story.” + +“But how could a poor Catalan fisher-boy, without education or +resources, make a fortune? I confess this staggers me.” + +“And it has staggered everybody. There must have been in his life some +strange secret that no one knows.” + +“But, then, by what visible steps has he attained this high fortune or +high position?” + +“Both, sir—he has both fortune and position—both.” + +“This must be impossible!” + +“It would seem so; but listen, and you will understand. Some days +before the return of the emperor, Fernand was drafted. The Bourbons +left him quietly enough at the Catalans, but Napoleon returned, a +special levy was made, and Fernand was compelled to join. I went too; +but as I was older than Fernand, and had just married my poor wife, I +was only sent to the coast. Fernand was enrolled in the active army, +went to the frontier with his regiment, and was at the battle of Ligny. +The night after that battle he was sentry at the door of a general who +carried on a secret correspondence with the enemy. That same night the +general was to go over to the English. He proposed to Fernand to +accompany him; Fernand agreed to do so, deserted his post, and followed +the general. + +“Fernand would have been court-martialed if Napoleon had remained on +the throne, but his action was rewarded by the Bourbons. He returned to +France with the epaulet of sub-lieutenant, and as the protection of the +general, who is in the highest favor, was accorded to him, he was a +captain in 1823, during the Spanish war—that is to say, at the time +when Danglars made his early speculations. Fernand was a Spaniard, and +being sent to Spain to ascertain the feeling of his fellow-countrymen, +found Danglars there, got on very intimate terms with him, won over the +support of the royalists at the capital and in the provinces, received +promises and made pledges on his own part, guided his regiment by paths +known to himself alone through the mountain gorges which were held by +the royalists, and, in fact, rendered such services in this brief +campaign that, after the taking of Trocadero, he was made colonel, and +received the title of count and the cross of an officer of the Legion +of Honor.” + +“Destiny! destiny!” murmured the abbé. + +“Yes, but listen: this was not all. The war with Spain being ended, +Fernand’s career was checked by the long peace which seemed likely to +endure throughout Europe. Greece only had risen against Turkey, and had +begun her war of independence; all eyes were turned towards Athens—it +was the fashion to pity and support the Greeks. The French government, +without protecting them openly, as you know, gave countenance to +volunteer assistance. Fernand sought and obtained leave to go and serve +in Greece, still having his name kept on the army roll. + +0345m + + + +Some time after, it was stated that the Comte de Morcerf (this was the +name he bore) had entered the service of Ali Pasha with the rank of +instructor-general. Ali Pasha was killed, as you know, but before he +died he recompensed the services of Fernand by leaving him a +considerable sum, with which he returned to France, when he was +gazetted lieutenant-general.” + +“So that now——?” inquired the abbé. + +“So that now,” continued Caderousse, “he owns a magnificent house—No. +27, Rue du Helder, Paris.” + +The abbé opened his mouth, hesitated for a moment, then, making an +effort at self-control, he said, “And Mercédès—they tell me that she +has disappeared?” + +“Disappeared,” said Caderousse, “yes, as the sun disappears, to rise +the next day with still more splendor.” + +“Has she made a fortune also?” inquired the abbé, with an ironical +smile. + +“Mercédès is at this moment one of the greatest ladies in Paris,” +replied Caderousse. + +“Go on,” said the abbé; “it seems as if I were listening to the story +of a dream. But I have seen things so extraordinary, that what you tell +me seems less astonishing than it otherwise might.” + +“Mercédès was at first in the deepest despair at the blow which +deprived her of Edmond. I have told you of her attempts to propitiate +M. de Villefort, her devotion to the elder Dantès. In the midst of her +despair, a new affliction overtook her. This was the departure of +Fernand—of Fernand, whose crime she did not know, and whom she regarded +as her brother. Fernand went, and Mercédès remained alone. + +“Three months passed and still she wept—no news of Edmond, no news of +Fernand, no companionship save that of an old man who was dying with +despair. One evening, after a day of accustomed vigil at the angle of +two roads leading to Marseilles from the Catalans, she returned to her +home more depressed than ever. Suddenly she heard a step she knew, +turned anxiously around, the door opened, and Fernand, dressed in the +uniform of a sub-lieutenant, stood before her. + +“It was not the one she wished for most, but it seemed as if a part of +her past life had returned to her. + +“Mercédès seized Fernand’s hands with a transport which he took for +love, but which was only joy at being no longer alone in the world, and +seeing at last a friend, after long hours of solitary sorrow. And then, +it must be confessed, Fernand had never been hated—he was only not +precisely loved. Another possessed all Mercédès’ heart; that other was +absent, had disappeared, perhaps was dead. At this last thought +Mercédès burst into a flood of tears, and wrung her hands in agony; but +the thought, which she had always repelled before when it was suggested +to her by another, came now in full force upon her mind; and then, too, +old Dantès incessantly said to her, ‘Our Edmond is dead; if he were +not, he would return to us.’ + +“The old man died, as I have told you; had he lived, Mercédès, +perchance, had not become the wife of another, for he would have been +there to reproach her infidelity. Fernand saw this, and when he learned +of the old man’s death he returned. He was now a lieutenant. At his +first coming he had not said a word of love to Mercédès; at the second +he reminded her that he loved her. + +“Mercédès begged for six months more in which to await and mourn for +Edmond.” + +“So that,” said the abbé, with a bitter smile, “that makes eighteen +months in all. What more could the most devoted lover desire?” Then he +murmured the words of the English poet, “‘Frailty, thy name is woman.’” + +“Six months afterwards,” continued Caderousse, “the marriage took place +in the church of Accoules.” + +“The very church in which she was to have married Edmond,” murmured the +priest; “there was only a change of bridegrooms.” + +“Well, Mercédès was married,” proceeded Caderousse; “but although in +the eyes of the world she appeared calm, she nearly fainted as she +passed La Réserve, where, eighteen months before, the betrothal had +been celebrated with him whom she might have known she still loved, had +she looked to the bottom of her heart. Fernand, more happy, but not +more at his ease—for I saw at this time he was in constant dread of +Edmond’s return—Fernand was very anxious to get his wife away, and to +depart himself. There were too many unpleasant possibilities associated +with the Catalans, and eight days after the wedding they left +Marseilles.” + +“Did you ever see Mercédès again?” inquired the priest. + +“Yes, during the Spanish war, at Perpignan, where Fernand had left her; +she was attending to the education of her son.” + +The abbé started. “Her son?” said he. + +“Yes,” replied Caderousse, “little Albert.” + +“But, then, to be able to instruct her child,” continued the abbé, “she +must have received an education herself. I understood from Edmond that +she was the daughter of a simple fisherman, beautiful but uneducated.” + +“Oh,” replied Caderousse, “did he know so little of his lovely +betrothed? Mercédès might have been a queen, sir, if the crown were to +be placed on the heads of the loveliest and most intelligent. Fernand’s +fortune was already waxing great, and she developed with his growing +fortune. She learned drawing, music—everything. Besides, I believe, +between ourselves, she did this in order to distract her mind, that she +might forget; and she only filled her head in order to alleviate the +weight on her heart. But now her position in life is assured,” +continued Caderousse; “no doubt fortune and honors have comforted her; +she is rich, a countess, and yet——” + +Caderousse paused. + +“And yet what?” asked the abbé. + +“Yet, I am sure, she is not happy,” said Caderousse. + +“What makes you believe this?” + +“Why, when I found myself utterly destitute, I thought my old friends +would, perhaps, assist me. So I went to Danglars, who would not even +receive me. I called on Fernand, who sent me a hundred francs by his +valet-de-chambre.” + +“Then you did not see either of them?” + +“No, but Madame de Morcerf saw me.” + +“How was that?” + +“As I went away a purse fell at my feet—it contained five-and-twenty +louis; I raised my head quickly, and saw Mercédès, who at once shut the +blind.” + +“And M. de Villefort?” asked the abbé. + +“Oh, he never was a friend of mine, I did not know him, and I had +nothing to ask of him.” + +“Do you not know what became of him, and the share he had in Edmond’s +misfortunes?” + +“No; I only know that some time after Edmond’s arrest, he married +Mademoiselle de Saint-Méran, and soon after left Marseilles; no doubt +he has been as lucky as the rest; no doubt he is as rich as Danglars, +as high in station as Fernand. I only, as you see, have remained poor, +wretched, and forgotten.” + +“You are mistaken, my friend,” replied the abbé; “God may seem +sometimes to forget for a time, while his justice reposes, but there +always comes a moment when he remembers—and behold—a proof!” + +As he spoke, the abbé took the diamond from his pocket, and giving it +to Caderousse, said, “Here, my friend, take this diamond, it is yours.” + +“What, for me only?” cried Caderousse, “ah, sir, do not jest with me!” + +“This diamond was to have been shared among his friends. Edmond had one +friend only, and thus it cannot be divided. Take the diamond, then, and +sell it; it is worth fifty thousand francs, and I repeat my wish that +this sum may suffice to release you from your wretchedness.” + +0351m + + + +“Oh, sir,” said Caderousse, putting out one hand timidly, and with the +other wiping away the perspiration which bedewed his brow,—“Oh, sir, do +not make a jest of the happiness or despair of a man.” + +“I know what happiness and what despair are, and I never make a jest of +such feelings. Take it, then, but in exchange——” + +Caderousse, who touched the diamond, withdrew his hand. + +The abbé smiled. + +“In exchange,” he continued, “give me the red silk purse that M. Morrel +left on old Dantès’ chimney-piece, and which you tell me is still in +your hands.” + +Caderousse, more and more astonished, went toward a large oaken +cupboard, opened it, and gave the abbé a long purse of faded red silk, +round which were two copper runners that had once been gilt. The abbé +took it, and in return gave Caderousse the diamond. + +“Oh, you are a man of God, sir,” cried Caderousse; “for no one knew +that Edmond had given you this diamond, and you might have kept it.” + +“Which,” said the abbé to himself, “you would have done.” The abbé +rose, took his hat and gloves. “Well,” he said, “all you have told me +is perfectly true, then, and I may believe it in every particular.” + +“See, sir,” replied Caderousse, “in this corner is a crucifix in holy +wood—here on this shelf is my wife’s testament; open this book, and I +will swear upon it with my hand on the crucifix. I will swear to you by +my soul’s salvation, my faith as a Christian, I have told everything to +you as it occurred, and as the recording angel will tell it to the ear +of God at the day of the last judgment!” + +“’Tis well,” said the abbé, convinced by his manner and tone that +Caderousse spoke the truth. “’Tis well, and may this money profit you! +Adieu; I go far from men who thus so bitterly injure each other.” + +The abbé with difficulty got away from the enthusiastic thanks of +Caderousse, opened the door himself, got out and mounted his horse, +once more saluted the innkeeper, who kept uttering his loud farewells, +and then returned by the road he had travelled in coming. + +When Caderousse turned around, he saw behind him La Carconte, paler and +trembling more than ever. + +“Is, then, all that I have heard really true?” she inquired. + +“What? That he has given the diamond to us only?” inquired Caderousse, +half bewildered with joy; “yes, nothing more true! See, here it is.” + +The woman gazed at it a moment, and then said, in a gloomy voice, +“Suppose it’s false?” + +Caderousse started and turned pale. + +“False!” he muttered. “False! Why should that man give me a false +diamond?” + +0349m + + + +“To get your secret without paying for it, you blockhead!” + +Caderousse remained for a moment aghast under the weight of such an +idea. + +“Oh!” he said, taking up his hat, which he placed on the red +handkerchief tied round his head, “we will soon find out.” + +“In what way?” + +“Why, the fair is on at Beaucaire, there are always jewellers from +Paris there, and I will show it to them. Look after the house, wife, +and I shall be back in two hours,” and Caderousse left the house in +haste, and ran rapidly in the direction opposite to that which the +priest had taken. + +“Fifty thousand francs!” muttered La Carconte when left alone; “it is a +large sum of money, but it is not a fortune.” + + +VOLUME TWO + +20009m + + + +20011m + + + +20019m + + + + + Chapter 28. The Prison Register + +The day after that in which the scene we have just described had taken +place on the road between Bellegarde and Beaucaire, a man of about +thirty or two-and-thirty, dressed in a bright blue frock coat, nankeen +trousers, and a white waistcoat, having the appearance and accent of an +Englishman, presented himself before the mayor of Marseilles. + +“Sir,” said he, “I am chief clerk of the house of Thomson & French, of +Rome. We are, and have been these ten years, connected with the house +of Morrel & Son, of Marseilles. We have a hundred thousand francs or +thereabouts loaned on their securities, and we are a little uneasy at +reports that have reached us that the firm is on the brink of ruin. I +have come, therefore, express from Rome, to ask you for information.” + +“Sir,” replied the mayor. “I know very well that during the last four +or five years misfortune has seemed to pursue M. Morrel. He has lost +four or five vessels, and suffered by three or four bankruptcies; but +it is not for me, although I am a creditor myself to the amount of ten +thousand francs, to give any information as to the state of his +finances. Ask of me, as mayor, what is my opinion of M. Morrel, and I +shall say that he is a man honorable to the last degree, and who has up +to this time fulfilled every engagement with scrupulous punctuality. +This is all I can say, sir; if you wish to learn more, address yourself +to M. de Boville, the inspector of prisons, No. 15, Rue de Nouailles; +he has, I believe, two hundred thousand francs in Morrel’s hands, and +if there be any grounds for apprehension, as this is a greater amount +than mine, you will most probably find him better informed than +myself.” + +The Englishman seemed to appreciate this extreme delicacy, made his bow +and went away, proceeding with a characteristic British stride towards +the street mentioned. + +M. de Boville was in his private room, and the Englishman, on +perceiving him, made a gesture of surprise, which seemed to indicate +that it was not the first time he had been in his presence. As to M. de +Boville, he was in such a state of despair, that it was evident all the +faculties of his mind, absorbed in the thought which occupied him at +the moment, did not allow either his memory or his imagination to stray +to the past. + +The Englishman, with the coolness of his nation, addressed him in terms +nearly similar to those with which he had accosted the mayor of +Marseilles. + +“Oh, sir,” exclaimed M. de Boville, “your fears are unfortunately but +too well founded, and you see before you a man in despair. I had two +hundred thousand francs placed in the hands of Morrel & Son; these two +hundred thousand francs were the dowry of my daughter, who was to be +married in a fortnight, and these two hundred thousand francs were +payable, half on the 15th of this month, and the other half on the 15th +of next month. I had informed M. Morrel of my desire to have these +payments punctually, and he has been here within the last half-hour to +tell me that if his ship, the _Pharaon_, did not come into port on the +15th, he would be wholly unable to make this payment.” + +“But,” said the Englishman, “this looks very much like a suspension of +payment.” + +“It looks more like bankruptcy!” exclaimed M. de Boville despairingly. + +The Englishman appeared to reflect a moment, and then said, “From which +it would appear, sir, that this credit inspires you with considerable +apprehension?” + +“To tell you the truth, I consider it lost.” + +“Well, then, I will buy it of you!” + +“You?” + +“Yes, I!” + +“But at a tremendous discount, of course?” + +“No, for two hundred thousand francs. Our house,” added the Englishman +with a laugh, “does not do things in that way.” + +“And you will pay——” + +“Ready money.” + +20023m + + + +And the Englishman drew from his pocket a bundle of bank-notes, which +might have been twice the sum M. de Boville feared to lose. A ray of +joy passed across M. de Boville’s countenance, yet he made an effort at +self-control, and said: + +“Sir, I ought to tell you that, in all probability, you will not +realize six per cent of this sum.” + +“That’s no affair of mine,” replied the Englishman, “that is the affair +of the house of Thomson & French, in whose name I act. They have, +perhaps, some motive to serve in hastening the ruin of a rival firm. +But all I know, sir, is, that I am ready to hand you over this sum in +exchange for your assignment of the debt. I only ask a brokerage.” + +“Of course, that is perfectly just,” cried M. de Boville. “The +commission is usually one and a half; will you have two—three—five per +cent, or even more? Whatever you say.” + +“Sir,” replied the Englishman, laughing, “I am like my house, and do +not do such things—no, the commission I ask is quite different.” + +“Name it, sir, I beg.” + +“You are the inspector of prisons?” + +“I have been so these fourteen years.” + +“You keep the registers of entries and departures?” + +“I do.” + +“To these registers there are added notes relative to the prisoners?” + +“There are special reports on every prisoner.” + +“Well, sir, I was educated at Rome by a poor devil of an abbé, who +disappeared suddenly. I have since learned that he was confined in the +Château d’If, and I should like to learn some particulars of his +death.” + +“What was his name?” + +“The Abbé Faria.” + +“Oh, I recollect him perfectly,” cried M. de Boville; “he was crazy.” + +“So they said.” + +“Oh, he was, decidedly.” + +“Very possibly; but what sort of madness was it?” + +“He pretended to know of an immense treasure, and offered vast sums to +the government if they would liberate him.” + +“Poor devil!—and he is dead?” + +“Yes, sir, five or six months ago, last February.” + +“You have a good memory, sir, to recollect dates so well.” + +“I recollect this, because the poor devil’s death was accompanied by a +singular incident.” + +“May I ask what that was?” said the Englishman with an expression of +curiosity, which a close observer would have been astonished at +discovering in his phlegmatic countenance. + +“Oh dear, yes, sir; the abbé’s dungeon was forty or fifty feet distant +from that of one of Bonaparte’s emissaries,—one of those who had +contributed the most to the return of the usurper in 1815, a very +resolute and very dangerous man.” + +“Indeed!” said the Englishman. + +“Yes,” replied M. de Boville; “I myself had occasion to see this man in +1816 or 1817, and we could only go into his dungeon with a file of +soldiers. That man made a deep impression on me; I shall never forget +his countenance!” + +20025m + + + +The Englishman smiled imperceptibly. + +“And you say, sir,” he interposed, “that the two dungeons——” + +“Were separated by a distance of fifty feet; but it appears that this +Edmond Dantès——” + +“This dangerous man’s name was——” + +“Edmond Dantès. It appears, sir, that this Edmond Dantès had procured +tools, or made them, for they found a tunnel through which the +prisoners held communication with one another.” + +“This tunnel was dug, no doubt, with an intention of escape?” + +“No doubt; but unfortunately for the prisoners, the Abbé Faria had an +attack of catalepsy, and died.” + +“That must have cut short the projects of escape.” + +“For the dead man, yes,” replied M. de Boville, “but not for the +survivor; on the contrary, this Dantès saw a means of accelerating his +escape. He, no doubt, thought that prisoners who died in the Château +d’If were interred in an ordinary burial-ground, and he conveyed the +dead man into his own cell, took his place in the sack in which they +had sewed up the corpse, and awaited the moment of interment.” + +“It was a bold step, and one that showed some courage,” remarked the +Englishman. + +“As I have already told you, sir, he was a very dangerous man; and, +fortunately, by his own act disembarrassed the government of the fears +it had on his account.” + +“How was that?” + +“How? Do you not comprehend?” + +“No.” + +“The Château d’If has no cemetery, and they simply throw the dead into +the sea, after fastening a thirty-six-pound cannon-ball to their feet.” + +“Well?” observed the Englishman as if he were slow of comprehension. + +“Well, they fastened a thirty-six-pound ball to his feet, and threw him +into the sea.” + +“Really!” exclaimed the Englishman. + +“Yes, sir,” continued the inspector of prisons. “You may imagine the +amazement of the fugitive when he found himself flung headlong over the +rocks! I should like to have seen his face at that moment.” + +“That would have been difficult.” + +“No matter,” replied De Boville, in supreme good-humor at the certainty +of recovering his two hundred thousand francs,—“no matter, I can fancy +it.” And he shouted with laughter. + +“So can I,” said the Englishman, and he laughed too; but he laughed as +the English do, “at the end of his teeth.” + +“And so,” continued the Englishman who first gained his composure, “he +was drowned?” + +“Unquestionably.” + +“So that the governor got rid of the dangerous and the crazy prisoner +at the same time?” + +“Precisely.” + +20027m + + + +“But some official document was drawn up as to this affair, I suppose?” +inquired the Englishman. + +“Yes, yes, the mortuary deposition. You understand, Dantès’ relations, +if he had any, might have some interest in knowing if he were dead or +alive.” + +“So that now, if there were anything to inherit from him, they may do +so with easy conscience. He is dead, and no mistake about it.” + +“Oh, yes; and they may have the fact attested whenever they please.” + +“So be it,” said the Englishman. “But to return to these registers.” + +“True, this story has diverted our attention from them. Excuse me.” + +“Excuse you for what? For the story? By no means; it really seems to me +very curious.” + +“Yes, indeed. So, sir, you wish to see all relating to the poor abbé, +who really was gentleness itself.” + +“Yes, you will much oblige me.” + +“Go into my study here, and I will show it to you.” + +And they both entered M. de Boville’s study. Everything was here +arranged in perfect order; each register had its number, each file of +papers its place. The inspector begged the Englishman to seat himself +in an armchair, and placed before him the register and documents +relative to the Château d’If, giving him all the time he desired for +the examination, while De Boville seated himself in a corner, and began +to read his newspaper. The Englishman easily found the entries relative +to the Abbé Faria; but it seemed that the history which the inspector +had related interested him greatly, for after having perused the first +documents he turned over the leaves until he reached the deposition +respecting Edmond Dantès. There he found everything arranged in due +order,—the accusation, examination, Morrel’s petition, M. de +Villefort’s marginal notes. He folded up the accusation quietly, and +put it as quietly in his pocket; read the examination, and saw that the +name of Noirtier was not mentioned in it; perused, too, the application +dated 10th April, 1815, in which Morrel, by the deputy procureur’s +advice, exaggerated with the best intentions (for Napoleon was then on +the throne) the services Dantès had rendered to the imperial +cause—services which Villefort’s certificates rendered indisputable. +Then he saw through the whole thing. This petition to Napoleon, kept +back by Villefort, had become, under the second restoration, a terrible +weapon against him in the hands of the king’s attorney. He was no +longer astonished when he searched on to find in the register this +note, placed in a bracket against his name: + +Edmond Dantès. + +An inveterate Bonapartist; took an active part in the return from the +Island of Elba. + +To be kept in strict solitary confinement, and to be closely watched +and guarded. + +Beneath these lines was written in another hand: “See note +above—nothing can be done.” + +He compared the writing in the bracket with the writing of the +certificate placed beneath Morrel’s petition, and discovered that the +note in the bracket was the same writing as the certificate—that is to +say, was in Villefort’s handwriting. + +20029m + + + +As to the note which accompanied this, the Englishman understood that +it might have been added by some inspector who had taken a momentary +interest in Dantès’ situation, but who had, from the remarks we have +quoted, found it impossible to give any effect to the interest he had +felt. + +As we have said, the inspector, from discretion, and that he might not +disturb the Abbé Faria’s pupil in his researches, had seated himself in +a corner, and was reading _Le Drapeau Blanc_. He did not see the +Englishman fold up and place in his pocket the accusation written by +Danglars under the arbor of La Réserve, and which had the postmark, +“Marseilles, 27th February, delivery 6 o’clock, P.M.” + +But it must be said that if he had seen it, he attached so little +importance to this scrap of paper, and so much importance to his two +hundred thousand francs, that he would not have opposed whatever the +Englishman might do, however irregular it might be. + +“Thanks,” said the latter, closing the register with a slam, “I have +all I want; now it is for me to perform my promise. Give me a simple +assignment of your debt; acknowledge therein the receipt of the cash, +and I will hand you over the money.” + +He rose, gave his seat to M. de Boville, who took it without ceremony, +and quickly drew up the required assignment, while the Englishman +counted out the bank-notes on the other side of the desk. + + + + Chapter 29. The House of Morrel & Son + +Anyone who had quitted Marseilles a few years previously, well +acquainted with the interior of Morrel’s warehouse, and had returned at +this date, would have found a great change. Instead of that air of +life, of comfort, and of happiness that permeates a flourishing and +prosperous business establishment—instead of merry faces at the +windows, busy clerks hurrying to and fro in the long corridors—instead +of the court filled with bales of goods, re-echoing with the cries and +the jokes of porters, one would have immediately perceived all aspect +of sadness and gloom. Out of all the numerous clerks that used to fill +the deserted corridor and the empty office, but two remained. One was a +young man of three or four-and-twenty, who was in love with M. Morrel’s +daughter, and had remained with him in spite of the efforts of his +friends to induce him to withdraw; the other was an old one-eyed +cashier, called “Cocles,” or “Cock-eye,” a nickname given him by the +young men who used to throng this vast now almost deserted bee-hive, +and which had so completely replaced his real name that he would not, +in all probability, have replied to anyone who addressed him by it. + +Cocles remained in M. Morrel’s service, and a most singular change had +taken place in his position; he had at the same time risen to the rank +of cashier, and sunk to the rank of a servant. He was, however, the +same Cocles, good, patient, devoted, but inflexible on the subject of +arithmetic, the only point on which he would have stood firm against +the world, even against M. Morrel; and strong in the +multiplication-table, which he had at his fingers’ ends, no matter what +scheme or what trap was laid to catch him. + +In the midst of the disasters that befell the house, Cocles was the +only one unmoved. But this did not arise from a want of affection; on +the contrary, from a firm conviction. Like the rats that one by one +forsake the doomed ship even before the vessel weighs anchor, so all +the numerous clerks had by degrees deserted the office and the +warehouse. Cocles had seen them go without thinking of inquiring the +cause of their departure. Everything was as we have said, a question of +arithmetic to Cocles, and during twenty years he had always seen all +payments made with such exactitude, that it seemed as impossible to him +that the house should stop payment, as it would to a miller that the +river that had so long turned his mill should cease to flow. + +Nothing had as yet occurred to shake Cocles’ belief; the last month’s +payment had been made with the most scrupulous exactitude; Cocles had +detected an overbalance of fourteen sous in his cash, and the same +evening he had brought them to M. Morrel, who, with a melancholy smile, +threw them into an almost empty drawer, saying: + +“Thanks, Cocles; you are the pearl of cashiers.” + +Cocles went away perfectly happy, for this eulogium of M. Morrel, +himself the pearl of the honest men of Marseilles, flattered him more +than a present of fifty crowns. But since the end of the month M. +Morrel had passed many an anxious hour. + +In order to meet the payments then due; he had collected all his +resources, and, fearing lest the report of his distress should get +bruited abroad at Marseilles when he was known to be reduced to such an +extremity, he went to the Beaucaire fair to sell his wife’s and +daughter’s jewels and a portion of his plate. By this means the end of +the month was passed, but his resources were now exhausted. Credit, +owing to the reports afloat, was no longer to be had; and to meet the +one hundred thousand francs due on the 15th of the present month, and +the one hundred thousand francs due on the 15th of the next month to M. +de Boville, M. Morrel had, in reality, no hope but the return of the +_Pharaon_, of whose departure he had learnt from a vessel which had +weighed anchor at the same time, and which had already arrived in +harbor. + +But this vessel which, like the _Pharaon_, came from Calcutta, had been +in for a fortnight, while no intelligence had been received of the +_Pharaon_. + +20033m + + + +Such was the state of affairs when, the day after his interview with M. +de Boville, the confidential clerk of the house of Thomson & French of +Rome, presented himself at M. Morrel’s. + +Emmanuel received him; this young man was alarmed by the appearance of +every new face, for every new face might be that of a new creditor, +come in anxiety to question the head of the house. The young man, +wishing to spare his employer the pain of this interview, questioned +the new-comer; but the stranger declared that he had nothing to say to +M. Emmanuel, and that his business was with M. Morrel in person. + +Emmanuel sighed, and summoned Cocles. Cocles appeared, and the young +man bade him conduct the stranger to M. Morrel’s apartment. Cocles went +first, and the stranger followed him. On the staircase they met a +beautiful girl of sixteen or seventeen, who looked with anxiety at the +stranger. + +“M. Morrel is in his room, is he not, Mademoiselle Julie?” said the +cashier. + +“Yes; I think so, at least,” said the young girl hesitatingly. “Go and +see, Cocles, and if my father is there, announce this gentleman.” + +“It will be useless to announce me, mademoiselle,” returned the +Englishman. “M. Morrel does not know my name; this worthy gentleman has +only to announce the confidential clerk of the house of Thomson & +French of Rome, with whom your father does business.” + +The young girl turned pale and continued to descend, while the stranger +and Cocles continued to mount the staircase. She entered the office +where Emmanuel was, while Cocles, by the aid of a key he possessed, +opened a door in the corner of a landing-place on the second staircase, +conducted the stranger into an antechamber, opened a second door, which +he closed behind him, and after having left the clerk of the house of +Thomson & French alone, returned and signed to him that he could enter. + +The Englishman entered, and found Morrel seated at a table, turning +over the formidable columns of his ledger, which contained the list of +his liabilities. At the sight of the stranger, M. Morrel closed the +ledger, arose, and offered a seat to the stranger; and when he had seen +him seated, resumed his own chair. Fourteen years had changed the +worthy merchant, who, in his thirty-sixth year at the opening of this +history, was now in his fiftieth; his hair had turned white, time and +sorrow had ploughed deep furrows on his brow, and his look, once so +firm and penetrating, was now irresolute and wandering, as if he feared +being forced to fix his attention on some particular thought or person. + +The Englishman looked at him with an air of curiosity, evidently +mingled with interest. “Monsieur,” said Morrel, whose uneasiness was +increased by this examination, “you wish to speak to me?” + +“Yes, monsieur; you are aware from whom I come?” + +“The house of Thomson & French; at least, so my cashier tells me.” + +“He has told you rightly. The house of Thomson & French had 300,000 or +400,000 francs to pay this month in France; and, knowing your strict +punctuality, have collected all the bills bearing your signature, and +charged me as they became due to present them, and to employ the money +otherwise.” + +Morrel sighed deeply, and passed his hand over his forehead, which was +covered with perspiration. + +“So then, sir,” said Morrel, “you hold bills of mine?” + +“Yes, and for a considerable sum.” + +“What is the amount?” asked Morrel with a voice he strove to render +firm. + +20035m + + + +“Here is,” said the Englishman, taking a quantity of papers from his +pocket, “an assignment of 200,000 francs to our house by M. de Boville, +the inspector of prisons, to whom they are due. You acknowledge, of +course, that you owe this sum to him?” + +“Yes; he placed the money in my hands at four and a half per cent +nearly five years ago.” + +“When are you to pay?” + +“Half the 15th of this month, half the 15th of next.” + +“Just so; and now here are 32,500 francs payable shortly; they are all +signed by you, and assigned to our house by the holders.” + +“I recognize them,” said Morrel, whose face was suffused, as he thought +that, for the first time in his life, he would be unable to honor his +own signature. “Is this all?” + +“No, I have for the end of the month these bills which have been +assigned to us by the house of Pascal, and the house of Wild & Turner +of Marseilles, amounting to nearly 55,000 francs; in all, 287,500 +francs.” + +It is impossible to describe what Morrel suffered during this +enumeration. “Two hundred and eighty-seven thousand five hundred +francs,” repeated he. + +“Yes, sir,” replied the Englishman. “I will not,” continued he, after a +moment’s silence, “conceal from you, that while your probity and +exactitude up to this moment are universally acknowledged, yet the +report is current in Marseilles that you are not able to meet your +liabilities.” + +At this almost brutal speech Morrel turned deathly pale. + +“Sir,” said he, “up to this time—and it is now more than +four-and-twenty years since I received the direction of this house from +my father, who had himself conducted it for five-and-thirty years—never +has anything bearing the signature of Morrel & Son been dishonored.” + +“I know that,” replied the Englishman. “But as a man of honor should +answer another, tell me fairly, shall you pay these with the same +punctuality?” + +Morrel shuddered, and looked at the man, who spoke with more assurance +than he had hitherto shown. + +“To questions frankly put,” said he, “a straightforward answer should +be given. Yes, I shall pay, if, as I hope, my vessel arrives safely; +for its arrival will again procure me the credit which the numerous +accidents, of which I have been the victim, have deprived me; but if +the _Pharaon_ should be lost, and this last resource be gone——” + +The poor man’s eyes filled with tears. + +“Well,” said the other, “if this last resource fail you?” + +“Well,” returned Morrel, “it is a cruel thing to be forced to say, but, +already used to misfortune, I must habituate myself to shame. I fear I +shall be forced to suspend payment.” + +“Have you no friends who could assist you?” + +Morrel smiled mournfully. + +“In business, sir,” said he, “one has no friends, only correspondents.” + +“It is true,” murmured the Englishman; “then you have but one hope.” + +“But one.” + +“The last?” + +“The last.” + +“So that if this fail——” + +“I am ruined,—completely ruined!” + +“As I was on my way here, a vessel was coming into port.” + +“I know it, sir; a young man, who still adheres to my fallen fortunes, +passes a part of his time in a belvedere at the top of the house, in +hopes of being the first to announce good news to me; he has informed +me of the arrival of this ship.” + +“And it is not yours?” + +“No, she is a Bordeaux vessel, _La Gironde_; she comes from India also; +but she is not mine.” + +“Perhaps she has spoken to the _Pharaon_, and brings you some tidings +of her?” + +“Shall I tell you plainly one thing, sir? I dread almost as much to +receive any tidings of my vessel as to remain in doubt. Uncertainty is +still hope.” Then in a low voice Morrel added,—“This delay is not +natural. The _Pharaon_ left Calcutta the 5th of February; she ought to +have been here a month ago.” + +“What is that?” said the Englishman. “What is the meaning of that +noise?” + +“Oh, my God!” cried Morrel, turning pale, “what is it?” + +A loud noise was heard on the stairs of people moving hastily, and +half-stifled sobs. Morrel rose and advanced to the door; but his +strength failed him and he sank into a chair. The two men remained +opposite one another, Morrel trembling in every limb, the stranger +gazing at him with an air of profound pity. The noise had ceased; but +it seemed that Morrel expected something—something had occasioned the +noise, and something must follow. The stranger fancied he heard +footsteps on the stairs; and that the footsteps, which were those of +several persons, stopped at the door. A key was inserted in the lock of +the first door, and the creaking of hinges was audible. + +“There are only two persons who have the key to that door,” murmured +Morrel, “Cocles and Julie.” + +At this instant the second door opened, and the young girl, her eyes +bathed with tears, appeared. Morrel rose tremblingly, supporting +himself by the arm of the chair. He would have spoken, but his voice +failed him. + +“Oh, father!” said she, clasping her hands, “forgive your child for +being the bearer of evil tidings.” + +Morrel again changed color. Julie threw herself into his arms. + +“Oh, father, father!” murmured she, “courage!” + +“The _Pharaon_ has gone down, then?” said Morrel in a hoarse voice. The +young girl did not speak; but she made an affirmative sign with her +head as she lay on her father’s breast. + +“And the crew?” asked Morrel. + +“Saved,” said the girl; “saved by the crew of the vessel that has just +entered the harbor.” + +Morrel raised his two hands to heaven with an expression of resignation +and sublime gratitude. + +“Thanks, my God,” said he, “at least thou strikest but me alone.” + +A tear moistened the eye of the phlegmatic Englishman. + +“Come in, come in,” said Morrel, “for I presume you are all at the +door.” + +Scarcely had he uttered those words when Madame Morrel entered weeping +bitterly. Emmanuel followed her, and in the antechamber were visible +the rough faces of seven or eight half-naked sailors. At the sight of +these men the Englishman started and advanced a step; then restrained +himself, and retired into the farthest and most obscure corner of the +apartment. Madame Morrel sat down by her husband and took one of his +hands in hers, Julie still lay with her head on his shoulder, Emmanuel +stood in the centre of the chamber and seemed to form the link between +Morrel’s family and the sailors at the door. + +“How did this happen?” said Morrel. + +“Draw nearer, Penelon,” said the young man, “and tell us all about it.” + +An old seaman, bronzed by the tropical sun, advanced, twirling the +remains of a hat between his hands. + +“Good-day, M. Morrel,” said he, as if he had just quitted Marseilles +the previous evening, and had just returned from Aix or Toulon. + +“Good-day, Penelon,” returned Morrel, who could not refrain from +smiling through his tears, “where is the captain?” + +“The captain, M. Morrel,—he has stayed behind sick at Palma; but please +God, it won’t be much, and you will see him in a few days all alive and +hearty.” + +“Well, now tell your story, Penelon.” + +20039m + + + +Penelon rolled his quid in his cheek, placed his hand before his mouth, +turned his head, and sent a long jet of tobacco-juice into the +antechamber, advanced his foot, balanced himself, and began. + +“You see, M. Morrel,” said he, “we were somewhere between Cape Blanc +and Cape Boyador, sailing with a fair breeze, south-south-west after a +week’s calm, when Captain Gaumard comes up to me—I was at the helm I +should tell you—and says, ‘Penelon, what do you think of those clouds +coming up over there?’ I was just then looking at them myself. ‘What do +I think, captain? Why I think that they are rising faster than they +have any business to do, and that they would not be so black if they +didn’t mean mischief.’—‘That’s my opinion too,’ said the captain, ‘and +I’ll take precautions accordingly. We are carrying too much canvas. +Avast, there, all hands! Take in the studding-sails and stow the flying +jib.’ It was time; the squall was on us, and the vessel began to heel. +‘Ah,’ said the captain, ‘we have still too much canvas set; all hands +lower the mainsail!’ Five minutes after, it was down; and we sailed +under mizzen-topsails and top-gallant sails. ‘Well, Penelon,’ said the +captain, ‘what makes you shake your head?’ ‘Why,’ I says, ‘I still +think you’ve got too much on.’ ‘I think you’re right,’ answered he, ‘we +shall have a gale.’ ‘A gale? More than that, we shall have a tempest, +or I don’t know what’s what.’ You could see the wind coming like the +dust at Montredon; luckily the captain understood his business. ‘Take +in two reefs in the top-sails,’ cried the captain; ‘let go the +bowlin’s, haul the brace, lower the top-gallant sails, haul out the +reef-tackles on the yards.’” + +20041m + + + +“That was not enough for those latitudes,” said the Englishman; “I +should have taken four reefs in the topsails and furled the spanker.” + +His firm, sonorous, and unexpected voice made everyone start. Penelon +put his hand over his eyes, and then stared at the man who thus +criticized the manœuvres of his captain. + +“We did better than that, sir,” said the old sailor respectfully; “we +put the helm up to run before the tempest; ten minutes after we struck +our top-sails and scudded under bare poles.” + +“The vessel was very old to risk that,” said the Englishman. + +“Eh, it was that that did the business; after pitching heavily for +twelve hours we sprung a leak. ‘Penelon,’ said the captain, ‘I think we +are sinking, give me the helm, and go down into the hold.’ I gave him +the helm, and descended; there was already three feet of water. ‘All +hands to the pumps!’ I shouted; but it was too late, and it seemed the +more we pumped the more came in. ‘Ah,’ said I, after four hours’ work, +‘since we are sinking, let us sink; we can die but once.’ ‘Is that the +example you set, Penelon?’ cries the captain; ‘very well, wait a +minute.’ He went into his cabin and came back with a brace of pistols. +‘I will blow the brains out of the first man who leaves the pump,’ said +he.” + +“Well done!” said the Englishman. + +20043m + + + +“There’s nothing gives you so much courage as good reasons,” continued +the sailor; “and during that time the wind had abated, and the sea gone +down, but the water kept rising; not much, only two inches an hour, but +still it rose. Two inches an hour does not seem much, but in twelve +hours that makes two feet, and three we had before, that makes five. +‘Come,’ said the captain, ‘we have done all in our power, and M. Morrel +will have nothing to reproach us with, we have tried to save the ship, +let us now save ourselves. To the boats, my lads, as quick as you can.’ +Now,” continued Penelon, “you see, M. Morrel, a sailor is attached to +his ship, but still more to his life, so we did not wait to be told +twice; the more so, that the ship was sinking under us, and seemed to +say, ‘Get along—save yourselves.’ We soon launched the boat, and all +eight of us got into it. The captain descended last, or rather, he did +not descend, he would not quit the vessel; so I took him round the +waist, and threw him into the boat, and then I jumped after him. It was +time, for just as I jumped the deck burst with a noise like the +broadside of a man-of-war. Ten minutes after she pitched forward, then +the other way, spun round and round, and then good-bye to the +_Pharaon_. As for us, we were three days without anything to eat or +drink, so that we began to think of drawing lots who should feed the +rest, when we saw _La Gironde_; we made signals of distress, she +perceived us, made for us, and took us all on board. There now, M. +Morrel, that’s the whole truth, on the honor of a sailor; is not it +true, you fellows there?” A general murmur of approbation showed that +the narrator had faithfully detailed their misfortunes and sufferings. + +“Well, well,” said M. Morrel, “I know there was no one in fault but +destiny. It was the will of God that this should happen, blessed be his +name. What wages are due to you?” + +“Oh, don’t let us talk of that, M. Morrel.” + +“Yes, but we will talk of it.” + +“Well, then, three months,” said Penelon. + +“Cocles, pay two hundred francs to each of these good fellows,” said +Morrel. “At another time,” added he, “I should have said, Give them, +besides, two hundred francs over as a present; but times are changed, +and the little money that remains to me is not my own, so do not think +me mean on this account.” + +Penelon turned to his companions, and exchanged a few words with them. + +“As for that, M. Morrel,” said he, again turning his quid, “as for +that——” + +“As for what?” + +“The money.” + +“Well——” + +“Well, we all say that fifty francs will be enough for us at present, +and that we will wait for the rest.” + +“Thanks, my friends, thanks!” cried Morrel gratefully; “take it—take +it; and if you can find another employer, enter his service; you are +free to do so.” + +These last words produced a prodigious effect on the seaman. Penelon +nearly swallowed his quid; fortunately he recovered. + +“What, M. Morrel!” said he in a low voice, “you send us away; you are +then angry with us!” + +“No, no,” said M. Morrel, “I am not angry, quite the contrary, and I do +not send you away; but I have no more ships, and therefore I do not +want any sailors.” + +“No more ships!” returned Penelon; “well, then, you’ll build some; +we’ll wait for you.” + +“I have no money to build ships with, Penelon,” said the poor owner +mournfully, “so I cannot accept your kind offer.” + +“No more money? Then you must not pay us; we can scud, like the +_Pharaon_, under bare poles.” + +“Enough, enough!” cried Morrel, almost overpowered; “leave me, I pray +you; we shall meet again in a happier time. Emmanuel, go with them, and +see that my orders are executed.” + +“At least, we shall see each other again, M. Morrel?” asked Penelon. + +“Yes; I hope so, at least. Now go.” He made a sign to Cocles, who went +first; the seamen followed him and Emmanuel brought up the rear. “Now,” +said the owner to his wife and daughter, “leave me; I wish to speak +with this gentleman.” + +20045m + + + +And he glanced towards the clerk of Thomson & French, who had remained +motionless in the corner during this scene, in which he had taken no +part, except the few words we have mentioned. The two women looked at +this person whose presence they had entirely forgotten, and retired; +but, as she left the apartment, Julie gave the stranger a supplicating +glance, to which he replied by a smile that an indifferent spectator +would have been surprised to see on his stern features. The two men +were left alone. “Well, sir,” said Morrel, sinking into a chair, “you +have heard all, and I have nothing further to tell you.” + +“I see,” returned the Englishman, “that a fresh and unmerited +misfortune has overwhelmed you, and this only increases my desire to +serve you.” + +“Oh, sir!” cried Morrel. + +“Let me see,” continued the stranger, “I am one of your largest +creditors.” + +“Your bills, at least, are the first that will fall due.” + +“Do you wish for time to pay?” + +“A delay would save my honor, and consequently my life.” + +“How long a delay do you wish for?” + +Morrel reflected. “Two months,” said he. + +“I will give you three,” replied the stranger. + +“But,” asked Morrel, “will the house of Thomson & French consent?” + +“Oh, I take everything on myself. Today is the 5th of June.” + +“Yes.” + +“Well, renew these bills up to the 5th of September; and on the 5th of +September at eleven o’clock (the hand of the clock pointed to eleven), +I shall come to receive the money.” + +“I shall expect you,” returned Morrel; “and I will pay you—or I shall +be dead.” These last words were uttered in so low a tone that the +stranger could not hear them. The bills were renewed, the old ones +destroyed, and the poor ship-owner found himself with three months +before him to collect his resources. The Englishman received his thanks +with the phlegm peculiar to his nation; and Morrel, overwhelming him +with grateful blessings, conducted him to the staircase. The stranger +met Julie on the stairs; she pretended to be descending, but in reality +she was waiting for him. “Oh, sir”—said she, clasping her hands. + +“Mademoiselle,” said the stranger, “one day you will receive a letter +signed ‘Sinbad the Sailor.’ Do exactly what the letter bids you, +however strange it may appear.” + +“Yes, sir,” returned Julie. + +“Do you promise?” + +“I swear to you I will.” + +“It is well. Adieu, mademoiselle. Continue to be the good, sweet girl +you are at present, and I have great hopes that Heaven will reward you +by giving you Emmanuel for a husband.” + +Julie uttered a faint cry, blushed like a rose, and leaned against the +baluster. The stranger waved his hand, and continued to descend. In the +court he found Penelon, who, with a rouleau of a hundred francs in +either hand, seemed unable to make up his mind to retain them. “Come +with me, my friend,” said the Englishman; “I wish to speak to you.” + + + + Chapter 30. The Fifth of September + +The extension provided for by the agent of Thomson & French, at the +moment when Morrel expected it least, was to the poor shipowner so +decided a stroke of good fortune that he almost dared to believe that +fate was at length grown weary of wasting her spite upon him. The same +day he told his wife, Emmanuel, and his daughter all that had occurred; +and a ray of hope, if not of tranquillity, returned to the family. +Unfortunately, however, Morrel had not only engagements with the house +of Thomson & French, who had shown themselves so considerate towards +him; and, as he had said, in business he had correspondents, and not +friends. When he thought the matter over, he could by no means account +for this generous conduct on the part of Thomson & French towards him; +and could only attribute it to some such selfish argument as this: “We +had better help a man who owes us nearly 300,000 francs, and have those +300,000 francs at the end of three months than hasten his ruin, and get +only six or eight per cent of our money back again.” + +Unfortunately, whether through envy or stupidity, all Morrel’s +correspondents did not take this view; and some even came to a contrary +decision. The bills signed by Morrel were presented at his office with +scrupulous exactitude, and, thanks to the delay granted by the +Englishman, were paid by Cocles with equal punctuality. Cocles thus +remained in his accustomed tranquillity. It was Morrel alone who +remembered with alarm, that if he had to repay on the 15th the 50,000 +francs of M. de Boville, and on the 30th the 32,500 francs of bills, +for which, as well as the debt due to the inspector of prisons, he had +time granted, he must be a ruined man. + +The opinion of all the commercial men was that, under the reverses +which had successively weighed down Morrel, it was impossible for him +to remain solvent. Great, therefore, was the astonishment when at the +end of the month, he cancelled all his obligations with his usual +punctuality. Still confidence was not restored to all minds, and the +general opinion was that the complete ruin of the unfortunate shipowner +had been postponed only until the end of the month. + +The month passed, and Morrel made extraordinary efforts to get in all +his resources. Formerly his paper, at any date, was taken with +confidence, and was even in request. Morrel now tried to negotiate +bills at ninety days only, and none of the banks would give him credit. +Fortunately, Morrel had some funds coming in on which he could rely; +and, as they reached him, he found himself in a condition to meet his +engagements when the end of July came. + +The agent of Thomson & French had not been again seen at Marseilles; +the day after, or two days after his visit to Morrel, he had +disappeared; and as in that city he had had no intercourse but with the +mayor, the inspector of prisons, and M. Morrel, his departure left no +trace except in the memories of these three persons. As to the sailors +of the _Pharaon_, they must have found snug berths elsewhere, for they +also had disappeared. + +Captain Gaumard, recovered from his illness, had returned from Palma. +He delayed presenting himself at Morrel’s, but the owner, hearing of +his arrival, went to see him. The worthy shipowner knew, from Penelon’s +recital, of the captain’s brave conduct during the storm, and tried to +console him. He brought him also the amount of his wages, which Captain +Gaumard had not dared to apply for. + +As he descended the staircase, Morrel met Penelon, who was going up. +Penelon had, it would seem, made good use of his money, for he was +newly clad. When he saw his employer, the worthy tar seemed much +embarrassed, drew on one side into the corner of the landing-place, +passed his quid from one cheek to the other, stared stupidly with his +great eyes, and only acknowledged the squeeze of the hand which Morrel +as usual gave him by a slight pressure in return. Morrel attributed +Penelon’s embarrassment to the elegance of his attire; it was evident +the good fellow had not gone to such an expense on his own account; he +was, no doubt, engaged on board some other vessel, and thus his +bashfulness arose from the fact of his not having, if we may so express +ourselves, worn mourning for the _Pharaon_ longer. Perhaps he had come +to tell Captain Gaumard of his good luck, and to offer him employment +from his new master. + +“Worthy fellows!” said Morrel, as he went away, “may your new master +love you as I loved you, and be more fortunate than I have been!” + +20049m + + + +August rolled by in unceasing efforts on the part of Morrel to renew +his credit or revive the old. On the 20th of August it was known at +Marseilles that he had left town in the mailcoach, and then it was said +that the bills would go to protest at the end of the month, and that +Morrel had gone away and left his chief clerk Emmanuel, and his cashier +Cocles, to meet the creditors. But, contrary to all expectation, when +the 31st of August came, the house opened as usual, and Cocles appeared +behind the grating of the counter, examined all bills presented with +the usual scrutiny, and, from first to last, paid all with the usual +precision. There came in, moreover, two drafts which M. Morrel had +fully anticipated, and which Cocles paid as punctually as the bills +which the shipowner had accepted. All this was incomprehensible, and +then, with the tenacity peculiar to prophets of bad news, the failure +was put off until the end of September. + +On the 1st, Morrel returned; he was awaited by his family with extreme +anxiety, for from this journey to Paris they hoped great things. Morrel +had thought of Danglars, who was now immensely rich, and had lain under +great obligations to Morrel in former days, since to him it was owing +that Danglars entered the service of the Spanish banker, with whom he +had laid the foundations of his vast wealth. It was said at this moment +that Danglars was worth from six to eight millions of francs, and had +unlimited credit. Danglars, then, without taking a crown from his +pocket, could save Morrel; he had but to pass his word for a loan, and +Morrel was saved. Morrel had long thought of Danglars, but had kept +away from some instinctive motive, and had delayed as long as possible +availing himself of this last resource. And Morrel was right, for he +returned home crushed by the humiliation of a refusal. + +Yet, on his arrival, Morrel did not utter a complaint, or say one harsh +word. He embraced his weeping wife and daughter, pressed Emmanuel’s +hand with friendly warmth, and then going to his private room on the +second floor had sent for Cocles. + +“Then,” said the two women to Emmanuel, “we are indeed ruined.” + +It was agreed in a brief council held among them, that Julie should +write to her brother, who was in garrison at Nîmes, to come to them as +speedily as possible. The poor women felt instinctively that they +required all their strength to support the blow that impended. Besides, +Maximilian Morrel, though hardly two-and-twenty, had great influence +over his father. + +He was a strong-minded, upright young man. At the time when he decided +on his profession his father had no desire to choose for him, but had +consulted young Maximilian’s taste. He had at once declared for a +military life, and had in consequence studied hard, passed brilliantly +through the Polytechnic School, and left it as sub-lieutenant of the +53rd of the line. For a year he had held this rank, and expected +promotion on the first vacancy. In his regiment Maximilian Morrel was +noted for his rigid observance, not only of the obligations imposed on +a soldier, but also of the duties of a man; and he thus gained the name +of “the stoic.” We need hardly say that many of those who gave him this +epithet repeated it because they had heard it, and did not even know +what it meant. + +This was the young man whom his mother and sister called to their aid +to sustain them under the serious trial which they felt they would soon +have to endure. They had not mistaken the gravity of this event, for +the moment after Morrel had entered his private office with Cocles, +Julie saw the latter leave it pale, trembling, and his features +betraying the utmost consternation. She would have questioned him as he +passed by her, but the worthy creature hastened down the staircase with +unusual precipitation, and only raised his hands to heaven and +exclaimed: + +“Oh, mademoiselle, mademoiselle, what a dreadful misfortune! Who could +ever have believed it!” + +A moment afterwards Julie saw him go upstairs carrying two or three +heavy ledgers, a portfolio, and a bag of money. + +Morrel examined the ledgers, opened the portfolio, and counted the +money. All his funds amounted to 6,000 or 8,000 francs, his bills +receivable up to the 5th to 4,000 or 5,000, which, making the best of +everything, gave him 14,000 francs to meet debts amounting to 287,500 +francs. He had not even the means for making a possible settlement on +account. + +However, when Morrel went down to his dinner, he appeared very calm. +This calmness was more alarming to the two women than the deepest +dejection would have been. After dinner Morrel usually went out and +used to take his coffee at the club of the Phocéens, and read the +_Semaphore_; this day he did not leave the house, but returned to his +office. + +As to Cocles, he seemed completely bewildered. For part of the day he +went into the courtyard, seated himself on a stone with his head bare +and exposed to the blazing sun. Emmanuel tried to comfort the women, +but his eloquence faltered. The young man was too well acquainted with +the business of the house, not to feel that a great catastrophe hung +over the Morrel family. Night came, the two women had watched, hoping +that when he left his room Morrel would come to them, but they heard +him pass before their door, and trying to conceal the noise of his +footsteps. They listened; he went into his sleeping-room, and fastened +the door inside. Madame Morrel sent her daughter to bed, and half an +hour after Julie had retired, she rose, took off her shoes, and went +stealthily along the passage, to see through the keyhole what her +husband was doing. + +In the passage she saw a retreating shadow; it was Julie, who, uneasy +herself, had anticipated her mother. The young lady went towards Madame +Morrel. + +“He is writing,” she said. + +They had understood each other without speaking. Madame Morrel looked +again through the keyhole, Morrel was writing; but Madame Morrel +remarked, what her daughter had not observed, that her husband was +writing on stamped paper. The terrible idea that he was writing his +will flashed across her; she shuddered, and yet had not strength to +utter a word. + +Next day M. Morrel seemed as calm as ever, went into his office as +usual, came to his breakfast punctually, and then, after dinner, he +placed his daughter beside him, took her head in his arms, and held her +for a long time against his bosom. In the evening, Julie told her +mother, that although he was apparently so calm, she had noticed that +her father’s heart beat violently. + +The next two days passed in much the same way. On the evening of the +4th of September, M. Morrel asked his daughter for the key of his +study. Julie trembled at this request, which seemed to her of bad omen. +Why did her father ask for this key which she always kept, and which +was only taken from her in childhood as a punishment? The young girl +looked at Morrel. + +“What have I done wrong, father,” she said, “that you should take this +key from me?” + +“Nothing, my dear,” replied the unhappy man, the tears starting to his +eyes at this simple question,—“nothing, only I want it.” + +Julie made a pretence to feel for the key. “I must have left it in my +room,” she said. + +And she went out, but instead of going to her apartment she hastened to +consult Emmanuel. + +“Do not give this key to your father,” said he, “and tomorrow morning, +if possible, do not quit him for a moment.” + +She questioned Emmanuel, but he knew nothing, or would not say what he +knew. + +During the night, between the 4th and 5th of September, Madame Morrel +remained listening for every sound, and, until three o’clock in the +morning, she heard her husband pacing the room in great agitation. It +was three o’clock when he threw himself on the bed. The mother and +daughter passed the night together. They had expected Maximilian since +the previous evening. At eight o’clock in the morning Morrel entered +their chamber. He was calm; but the agitation of the night was legible +in his pale and careworn visage. They did not dare to ask him how he +had slept. Morrel was kinder to his wife, more affectionate to his +daughter, than he had ever been. He could not cease gazing at and +kissing the sweet girl. Julie, mindful of Emmanuel’s request, was +following her father when he quitted the room, but he said to her +quickly: + +“Remain with your mother, dearest.” Julie wished to accompany him. “I +wish you to do so,” said he. + +This was the first time Morrel had ever so spoken, but he said it in a +tone of paternal kindness, and Julie did not dare to disobey. She +remained at the same spot standing mute and motionless. An instant +afterwards the door opened, she felt two arms encircle her, and a mouth +pressed her forehead. She looked up and uttered an exclamation of joy. + +20053m + + + +“Maximilian, my dearest brother!” she cried. + +At these words Madame Morrel rose, and threw herself into her son’s +arms. + +“Mother,” said the young man, looking alternately at Madame Morrel and +her daughter, “what has occurred—what has happened? Your letter has +frightened me, and I have come hither with all speed.” + +“Julie,” said Madame Morrel, making a sign to the young man, “go and +tell your father that Maximilian has just arrived.” + +The young lady rushed out of the apartment, but on the first step of +the staircase she found a man holding a letter in his hand. + +“Are you not Mademoiselle Julie Morrel?” inquired the man, with a +strong Italian accent. + +“Yes, sir,” replied Julie with hesitation; “what is your pleasure? I do +not know you.” + +“Read this letter,” he said, handing it to her. Julie hesitated. “It +concerns the best interests of your father,” said the messenger. + +The young girl hastily took the letter from him. She opened it quickly +and read: + +“Go this moment to the Allées de Meilhan, enter the house No. 15, ask +the porter for the key of the room on the fifth floor, enter the +apartment, take from the corner of the mantelpiece a purse netted in +red silk, and give it to your father. It is important that he should +receive it before eleven o’clock. You promised to obey me implicitly. +Remember your oath. + +“Sinbad the Sailor.” + +The young girl uttered a joyful cry, raised her eyes, looked round to +question the messenger, but he had disappeared. She cast her eyes again +over the note to peruse it a second time, and saw there was a +postscript. She read: + +“It is important that you should fulfil this mission in person and +alone. If you go accompanied by any other person, or should anyone else +go in your place, the porter will reply that he does not know anything +about it.” + +This postscript decreased greatly the young girl’s happiness. Was there +nothing to fear? was there not some snare laid for her? Her innocence +had kept her in ignorance of the dangers that might assail a young girl +of her age. But there is no need to know danger in order to fear it; +indeed, it may be observed, that it is usually unknown perils that +inspire the greatest terror. + +Julie hesitated, and resolved to take counsel. Yet, through a singular +impulse, it was neither to her mother nor her brother that she applied, +but to Emmanuel. She hastened down and told him what had occurred on +the day when the agent of Thomson & French had come to her father’s, +related the scene on the staircase, repeated the promise she had made, +and showed him the letter. + +“You must go, then, mademoiselle,” said Emmanuel. + +“Go there?” murmured Julie. + +“Yes; I will accompany you.” + +“But did you not read that I must be alone?” said Julie. + +“And you shall be alone,” replied the young man. “I will await you at +the corner of the Rue du Musée, and if you are so long absent as to +make me uneasy, I will hasten to rejoin you, and woe to him of whom you +shall have cause to complain to me!” + +“Then, Emmanuel?” said the young girl with hesitation, “it is your +opinion that I should obey this invitation?” + +“Yes. Did not the messenger say your father’s safety depended upon it?” + +“But what danger threatens him, then, Emmanuel?” she asked. + +Emmanuel hesitated a moment, but his desire to make Julie decide +immediately made him reply. + +“Listen,” he said; “today is the 5th of September, is it not?” + +“Yes.” + +“Today, then, at eleven o’clock, your father has nearly three hundred +thousand francs to pay?” + +“Yes, we know that.” + +“Well, then,” continued Emmanuel, “we have not fifteen thousand francs +in the house.” + +“What will happen then?” + +“Why, if today before eleven o’clock your father has not found someone +who will come to his aid, he will be compelled at twelve o’clock to +declare himself a bankrupt.” + +“Oh, come, then, come!” cried she, hastening away with the young man. + +During this time, Madame Morrel had told her son everything. The young +man knew quite well that, after the succession of misfortunes which had +befallen his father, great changes had taken place in the style of +living and housekeeping; but he did not know that matters had reached +such a point. He was thunderstruck. Then, rushing hastily out of the +apartment, he ran upstairs, expecting to find his father in his study, +but he rapped there in vain. + +While he was yet at the door of the study he heard the bedroom door +open, turned, and saw his father. Instead of going direct to his study, +M. Morrel had returned to his bedchamber, which he was only this moment +quitting. Morrel uttered a cry of surprise at the sight of his son, of +whose arrival he was ignorant. He remained motionless on the spot, +pressing with his left hand something he had concealed under his coat. +Maximilian sprang down the staircase, and threw his arms round his +father’s neck; but suddenly he recoiled, and placed his right hand on +Morrel’s breast. + +“Father,” he exclaimed, turning pale as death, “what are you going to +do with that brace of pistols under your coat?” + +“Oh, this is what I feared!” said Morrel. + +“Father, father, in Heaven’s name,” exclaimed the young man, “what are +these weapons for?” + +“Maximilian,” replied Morrel, looking fixedly at his son, “you are a +man, and a man of honor. Come, and I will explain to you.” + +And with a firm step Morrel went up to his study, while Maximilian +followed him, trembling as he went. Morrel opened the door, and closed +it behind his son; then, crossing the anteroom, went to his desk on +which he placed the pistols, and pointed with his finger to an open +ledger. In this ledger was made out an exact balance-sheet of his +affairs. Morrel had to pay, within half an hour, 287,500 francs. All he +possessed was 15,257 francs. + +“Read!” said Morrel. + +The young man was overwhelmed as he read. Morrel said not a word. What +could he say? What need he add to such a desperate proof in figures? + +“And have you done all that is possible, father, to meet this +disastrous result?” asked the young man, after a moment’s pause. + +“I have,” replied Morrel. + +“You have no money coming in on which you can rely?” + +“None.” + +“You have exhausted every resource?” + +“All.” + +“And in half an hour,” said Maximilian in a gloomy voice, “our name is +dishonored!” + +“Blood washes out dishonor,” said Morrel. + +“You are right, father; I understand you.” Then extending his hand +towards one of the pistols, he said, “There is one for you and one for +me—thanks!” + +Morrel caught his hand. “Your mother—your sister! Who will support +them?” + +A shudder ran through the young man’s frame. “Father,” he said, “do you +reflect that you are bidding me to live?” + +“Yes, I do so bid you,” answered Morrel, “it is your duty. You have a +calm, strong mind, Maximilian. Maximilian, you are no ordinary man. I +make no requests or commands; I only ask you to examine my position as +if it were your own, and then judge for yourself.” + +The young man reflected for a moment, then an expression of sublime +resignation appeared in his eyes, and with a slow and sad gesture he +took off his two epaulets, the insignia of his rank. + +“Be it so, then, my father,” he said, extending his hand to Morrel, +“die in peace, my father; I will live.” + +Morrel was about to cast himself on his knees before his son, but +Maximilian caught him in his arms, and those two noble hearts were +pressed against each other for a moment. + +“You know it is not my fault,” said Morrel. + +20057m + + + +Maximilian smiled. “I know, father, you are the most honorable man I +have ever known.” + +“Good, my son. And now there is no more to be said; go and rejoin your +mother and sister.” + +“My father,” said the young man, bending his knee, “bless me!” Morrel +took the head of his son between his two hands, drew him forward, and +kissing his forehead several times said: + +“Oh, yes, yes, I bless you in my own name, and in the name of three +generations of irreproachable men, who say through me, ‘The edifice +which misfortune has destroyed, Providence may build up again.’ On +seeing me die such a death, the most inexorable will have pity on you. +To you, perhaps, they will accord the time they have refused to me. +Then do your best to keep our name free from dishonor. Go to work, +labor, young man, struggle ardently and courageously; live, yourself, +your mother and sister, with the most rigid economy, so that from day +to day the property of those whom I leave in your hands may augment and +fructify. Reflect how glorious a day it will be, how grand, how solemn, +that day of complete restoration, on which you will say in this very +office, ‘My father died because he could not do what I have this day +done; but he died calmly and peaceably, because in dying he knew what I +should do.’” + +“My father, my father!” cried the young man, “why should you not live?” + +“If I live, all would be changed; if I live, interest would be +converted into doubt, pity into hostility; if I live I am only a man +who has broken his word, failed in his engagements—in fact, only a +bankrupt. If, on the contrary, I die, remember, Maximilian, my corpse +is that of an honest but unfortunate man. Living, my best friends would +avoid my house; dead, all Marseilles will follow me in tears to my last +home. Living, you would feel shame at my name; dead, you may raise your +head and say, ‘I am the son of him you killed, because, for the first +time, he has been compelled to break his word.’” + +The young man uttered a groan, but appeared resigned. + +“And now,” said Morrel, “leave me alone, and endeavor to keep your +mother and sister away.” + +“Will you not see my sister once more?” asked Maximilian. A last but +final hope was concealed by the young man in the effect of this +interview, and therefore he had suggested it. Morrel shook his head. “I +saw her this morning, and bade her adieu.” + +“Have you no particular commands to leave with me, my father?” inquired +Maximilian in a faltering voice. + +“Yes; my son, and a sacred command.” + +“Say it, my father.” + +“The house of Thomson & French is the only one who, from humanity, or, +it may be, selfishness—it is not for me to read men’s hearts—has had +any pity for me. Its agent, who will in ten minutes present himself to +receive the amount of a bill of 287,500 francs, I will not say granted, +but offered me three months. Let this house be the first repaid, my +son, and respect this man.” + +“Father, I will,” said Maximilian. + +“And now, once more, adieu,” said Morrel. “Go, leave me; I would be +alone. You will find my will in the secretaire in my bedroom.” + +The young man remained standing and motionless, having but the force of +will and not the power of execution. + +“Hear me, Maximilian,” said his father. “Suppose I were a soldier like +you, and ordered to carry a certain redoubt, and you knew I must be +killed in the assault, would you not say to me, as you said just now, +‘Go, father; for you are dishonored by delay, and death is preferable +to shame!’” + +“Yes, yes,” said the young man, “yes;” and once again embracing his +father with convulsive pressure, he said, “Be it so, my father.” + +And he rushed out of the study. When his son had left him, Morrel +remained an instant standing with his eyes fixed on the door; then +putting forth his arm, he pulled the bell. After a moment’s interval, +Cocles appeared. + +It was no longer the same man—the fearful revelations of the three last +days had crushed him. This thought—the house of Morrel is about to stop +payment—bent him to the earth more than twenty years would otherwise +have done. + +“My worthy Cocles,” said Morrel in a tone impossible to describe, “do +you remain in the antechamber. When the gentleman who came three months +ago—the agent of Thomson & French—arrives, announce his arrival to me.” + +Cocles made no reply; he made a sign with his head, went into the +anteroom, and seated himself. Morrel fell back in his chair, his eyes +fixed on the clock; there were seven minutes left, that was all. The +hand moved on with incredible rapidity, he seemed to see its motion. + +What passed in the mind of this man at the supreme moment of his agony +cannot be told in words. He was still comparatively young, he was +surrounded by the loving care of a devoted family, but he had convinced +himself by a course of reasoning, illogical perhaps, yet certainly +plausible, that he must separate himself from all he held dear in the +world, even life itself. To form the slightest idea of his feelings, +one must have seen his face with its expression of enforced resignation +and its tear-moistened eyes raised to heaven. The minute hand moved on. +The pistols were loaded; he stretched forth his hand, took one up, and +murmured his daughter’s name. Then he laid it down, seized his pen, and +wrote a few words. It seemed to him as if he had not taken a sufficient +farewell of his beloved daughter. Then he turned again to the clock, +counting time now not by minutes, but by seconds. + +He took up the deadly weapon again, his lips parted and his eyes fixed +on the clock, and then shuddered at the click of the trigger as he +cocked the pistol. At this moment of mortal anguish the cold sweat came +forth upon his brow, a pang stronger than death clutched at his +heart-strings. He heard the door of the staircase creak on its +hinges—the clock gave its warning to strike eleven—the door of his +study opened. Morrel did not turn round—he expected these words of +Cocles, “The agent of Thomson & French.” + +He placed the muzzle of the pistol between his teeth. Suddenly he heard +a cry—it was his daughter’s voice. He turned and saw Julie. The pistol +fell from his hands. + +“My father!” cried the young girl, out of breath, and half dead with +joy—“saved, you are saved!” And she threw herself into his arms, +holding in her extended hand a red, netted silk purse. + +20061m + + + +“Saved, my child!” said Morrel; “what do you mean?” + +“Yes, saved—saved! See, see!” said the young girl. + +Morrel took the purse, and started as he did so, for a vague +remembrance reminded him that it once belonged to himself. At one end +was the receipted bill for the 287,000 francs, and at the other was a +diamond as large as a hazel-nut, with these words on a small slip of +parchment: _Julie’s Dowry_. + +Morrel passed his hand over his brow; it seemed to him a dream. At this +moment the clock struck eleven. He felt as if each stroke of the hammer +fell upon his heart. + +“Explain, my child,” he said, “Explain, my child,” he said, +“explain—where did you find this purse?” + +“In a house in the Allées de Meilhan, No. 15, on the corner of a +mantelpiece in a small room on the fifth floor.” + +“But,” cried Morrel, “this purse is not yours!” Julie handed to her +father the letter she had received in the morning. + +“And did you go alone?” asked Morrel, after he had read it. + +“Emmanuel accompanied me, father. He was to have waited for me at the +corner of the Rue du Musée, but, strange to say, he was not there when +I returned.” + +“Monsieur Morrel!” exclaimed a voice on the stairs; “Monsieur Morrel!” + +“It is his voice!” said Julie. At this moment Emmanuel entered, his +countenance full of animation and joy. + +“The _Pharaon_!” he cried; “the _Pharaon_!” + +“What!—what!—the _Pharaon_! Are you mad, Emmanuel? You know the vessel +is lost.” + +“The _Pharaon_, sir—they signal the _Pharaon_! The _Pharaon_ is +entering the harbor!” + +Morrel fell back in his chair, his strength was failing him; his +understanding weakened by such events, refused to comprehend such +incredible, unheard-of, fabulous facts. But his son came in. + +“Father,” cried Maximilian, “how could you say the _Pharaon_ was lost? +The lookout has signalled her, and they say she is now coming into +port.” + +20063m + + + +“My dear friends,” said Morrel, “if this be so, it must be a miracle of +heaven! Impossible, impossible!” + +But what was real and not less incredible was the purse he held in his +hand, the acceptance receipted—the splendid diamond. + +“Ah, sir,” exclaimed Cocles, “what can it mean?—the _Pharaon_?” + +“Come, dear ones,” said Morrel, rising from his seat, “let us go and +see, and Heaven have pity upon us if it be false intelligence!” + +They all went out, and on the stairs met Madame Morrel, who had been +afraid to go up into the study. In a moment they were at the Canebière. +There was a crowd on the pier. All the crowd gave way before Morrel. +“The _Pharaon_! the _Pharaon_!” said every voice. + +And, wonderful to see, in front of the tower of Saint-Jean, was a ship +bearing on her stern these words, printed in white letters, “The +_Pharaon_, Morrel & Son, of Marseilles.” She was the exact duplicate of +the other _Pharaon_, and loaded, as that had been, with cochineal and +indigo. She cast anchor, clued up sails, and on the deck was Captain +Gaumard giving orders, and good old Penelon making signals to M. +Morrel. To doubt any longer was impossible; there was the evidence of +the senses, and ten thousand persons who came to corroborate the +testimony. + +As Morrel and his son embraced on the pier-head, in the presence and +amid the applause of the whole city witnessing this event, a man, with +his face half-covered by a black beard, and who, concealed behind the +sentry-box, watched the scene with delight, uttered these words in a +low tone: + +“Be happy, noble heart, be blessed for all the good thou hast done and +wilt do hereafter, and let my gratitude remain in obscurity like your +good deeds.” + +20064m + + + +And with a smile expressive of supreme content, he left his +hiding-place, and without being observed, descended one of the flights +of steps provided for debarkation, and hailing three times, shouted +“Jacopo, Jacopo, Jacopo!” + +Then a launch came to shore, took him on board, and conveyed him to a +yacht splendidly fitted up, on whose deck he sprung with the activity +of a sailor; thence he once again looked towards Morrel, who, weeping +with joy, was shaking hands most cordially with all the crowd around +him, and thanking with a look the unknown benefactor whom he seemed to +be seeking in the skies. + +“And now,” said the unknown, “farewell kindness, humanity, and +gratitude! Farewell to all the feelings that expand the heart! I have +been Heaven’s substitute to recompense the good—now the god of +vengeance yields to me his power to punish the wicked!” + +At these words he gave a signal, and, as if only awaiting this signal, +the yacht instantly put out to sea. + + + + Chapter 31. Italy: Sinbad the Sailor + +Towards the beginning of the year 1838, two young men belonging to the +first society of Paris, the Viscount Albert de Morcerf and the Baron +Franz d’Épinay, were at Florence. They had agreed to see the Carnival +at Rome that year, and that Franz, who for the last three or four years +had inhabited Italy, should act as _cicerone_ to Albert. + +As it is no inconsiderable affair to spend the Carnival at Rome, +especially when you have no great desire to sleep on the Piazza del +Popolo, or the Campo Vaccino, they wrote to Signor Pastrini, the +proprietor of the Hôtel de Londres, Piazza di Spagna, to reserve +comfortable apartments for them. Signor Pastrini replied that he had +only two rooms and a parlor on the third floor, which he offered at the +low charge of a louis per diem. They accepted his offer; but wishing to +make the best use of the time that was left, Albert started for Naples. +As for Franz, he remained at Florence, and after having passed a few +days in exploring the paradise of the Cascine, and spending two or +three evenings at the houses of the Florentine nobility, he took a +fancy into his head (having already visited Corsica, the cradle of +Bonaparte) to visit Elba, the waiting-place of Napoleon. + +One evening he cast off the painter of a sailboat from the iron ring +that secured it to the dock at Leghorn, wrapped himself in his coat and +lay down, and said to the crew,—“To the Island of Elba!” + +The boat shot out of the harbor like a bird and the next morning Franz +disembarked at Porto-Ferrajo. He traversed the island, after having +followed the traces which the footsteps of the giant have left, and +re-embarked for Marciana. + +Two hours after he again landed at Pianosa, where he was assured that +red partridges abounded. The sport was bad; Franz only succeeded in +killing a few partridges, and, like every unsuccessful sportsman, he +returned to the boat very much out of temper. + +“Ah, if your excellency chose,” said the captain, “you might have +capital sport.” + +“Where?” + +“Do you see that island?” continued the captain, pointing to a conical +pile rising from the indigo sea. + +“Well, what is this island?” + +“The Island of Monte Cristo.” + +“But I have no permission to shoot over this island.” + +“Your excellency does not require a permit, for the island is +uninhabited.” + +“Ah, indeed!” said the young man. “A desert island in the midst of the +Mediterranean must be a curiosity.” + +“It is very natural; this island is a mass of rocks, and does not +contain an acre of land capable of cultivation.” + +“To whom does this island belong?” + +“To Tuscany.” + +“What game shall I find there!” + +“Thousands of wild goats.” + +“Who live upon the stones, I suppose,” said Franz with an incredulous +smile. + +“No, but by browsing the shrubs and trees that grow out of the crevices +of the rocks.” + +“Where can I sleep?” + +“On shore in the grottos, or on board in your cloak; besides, if your +excellency pleases, we can leave as soon as you like—we can sail as +well by night as by day, and if the wind drops we can use our oars.” + +As Franz had sufficient time, and his apartments at Rome were not yet +available, he accepted the proposition. Upon his answer in the +affirmative, the sailors exchanged a few words together in a low tone. +“Well,” asked he, “what now? Is there any difficulty in the way?” + +“No.” replied the captain, “but we must warn your excellency that the +island is an infected port.” + +“What do you mean?” + +“Monte Cristo although uninhabited, yet serves occasionally as a refuge +for the smugglers and pirates who come from Corsica, Sardinia, and +Africa, and if it becomes known that we have been there, we shall have +to perform quarantine for six days on our return to Leghorn.” + +“The deuce! That puts a different face on the matter. Six days! Why, +that’s as long as the Almighty took to make the world! Too long a +wait—too long.” + +“But who will say your excellency has been to Monte Cristo?” + +“Oh, I shall not,” cried Franz. + +“Nor I, nor I,” chorused the sailors. + +“Then steer for Monte Cristo.” + +The captain gave his orders, the helm was put up, and the boat was soon +sailing in the direction of the island. Franz waited until all was in +order, and when the sail was filled, and the four sailors had taken +their places—three forward, and one at the helm—he resumed the +conversation. “Gaetano,” said he to the captain, “you tell me Monte +Cristo serves as a refuge for pirates, who are, it seems to me, a very +different kind of game from the goats.” + +“Yes, your excellency, and it is true.” + +“I knew there were smugglers, but I thought that since the capture of +Algiers, and the destruction of the regency, pirates existed only in +the romances of Cooper and Captain Marryat.” + +“Your excellency is mistaken; there are pirates, like the bandits who +were believed to have been exterminated by Pope Leo XII., and who yet, +every day, rob travellers at the gates of Rome. Has not your excellency +heard that the French _chargé d’affaires_ was robbed six months ago +within five hundred paces of Velletri?” + +“Oh, yes, I heard that.” + +“Well, then, if, like us, your excellency lived at Leghorn, you would +hear, from time to time, that a little merchant vessel, or an English +yacht that was expected at Bastia, at Porto-Ferrajo, or at Civita +Vecchia, has not arrived; no one knows what has become of it, but, +doubtless, it has struck on a rock and foundered. Now this rock it has +met has been a long and narrow boat, manned by six or eight men, who +have surprised and plundered it, some dark and stormy night, near some +desert and gloomy island, as bandits plunder a carriage in the recesses +of a forest.” + +“But,” asked Franz, who lay wrapped in his cloak at the bottom of the +boat, “why do not those who have been plundered complain to the French, +Sardinian, or Tuscan governments?” + +“Why?” said Gaetano with a smile. + +“Yes, why?” + +“Because, in the first place, they transfer from the vessel to their +own boat whatever they think worth taking, then they bind the crew hand +and foot, they attach to everyone’s neck a four-and-twenty-pound ball, +a large hole is chopped in the vessel’s bottom, and then they leave +her. At the end of ten minutes the vessel begins to roll heavily and +settle down. First one gun’l goes under, then the other. Then they lift +and sink again, and both go under at once. All at once there’s a noise +like a cannon—that’s the air blowing up the deck. Soon the water rushes +out of the scupper-holes like a whale spouting, the vessel gives a last +groan, spins round and round, and disappears, forming a vast whirlpool +in the ocean, and then all is over, so that in five minutes nothing but +the eye of God can see the vessel where she lies at the bottom of the +sea. Do you understand now,” said the captain, “why no complaints are +made to the government, and why the vessel never reaches port?” + +It is probable that if Gaetano had related this previous to proposing +the expedition, Franz would have hesitated, but now that they had +started, he thought it would be cowardly to draw back. He was one of +those men who do not rashly court danger, but if danger presents +itself, combat it with the most unalterable coolness. Calm and +resolute, he treated any peril as he would an adversary in a +duel,—calculated its probable method of approach; retreated, if at all, +as a point of strategy and not from cowardice; was quick to see an +opening for attack, and won victory at a single thrust. + +“Bah!” said he, “I have travelled through Sicily and Calabria—I have +sailed two months in the Archipelago, and yet I never saw even the +shadow of a bandit or a pirate.” + +“I did not tell your excellency this to deter you from your project,” +replied Gaetano, “but you questioned me, and I have answered; that’s +all.” + +“Yes, and your conversation is most interesting; and as I wish to enjoy +it as long as possible, steer for Monte Cristo.” + +The wind blew strongly, the boat made six or seven knots an hour, and +they were rapidly reaching the end of their voyage. As they drew near +the island seemed to lift from the sea, and the air was so clear that +they could already distinguish the rocks heaped on one another, like +cannon balls in an arsenal, with green bushes and trees growing in the +crevices. As for the sailors, although they appeared perfectly tranquil +yet it was evident that they were on the alert, and that they carefully +watched the glassy surface over which they were sailing, and on which a +few fishing-boats, with their white sails, were alone visible. + +They were within fifteen miles of Monte Cristo when the sun began to +set behind Corsica, whose mountains appeared against the sky, showing +their rugged peaks in bold relief; this mass of rock, like the giant +Adamastor, rose dead ahead, a formidable barrier, and intercepting the +light that gilded its massive peaks so that the voyagers were in +shadow. Little by little the shadow rose higher and seemed to drive +before it the last rays of the expiring day; at last the reflection +rested on the summit of the mountain, where it paused an instant, like +the fiery crest of a volcano, then gloom gradually covered the summit +as it had covered the base, and the island now only appeared to be a +gray mountain that grew continually darker; half an hour after, the +night was quite dark. + +Fortunately, the mariners were used to these latitudes, and knew every +rock in the Tuscan Archipelago; for in the midst of this obscurity +Franz was not without uneasiness—Corsica had long since disappeared, +and Monte Cristo itself was invisible; but the sailors seemed, like the +lynx, to see in the dark, and the pilot who steered did not evince the +slightest hesitation. + +An hour had passed since the sun had set, when Franz fancied he saw, at +a quarter of a mile to the left, a dark mass, but he could not +precisely make out what it was, and fearing to excite the mirth of the +sailors by mistaking a floating cloud for land, he remained silent; +suddenly a great light appeared on the strand; land might resemble a +cloud, but the fire was not a meteor. + +“What is this light?” asked he. + +“Hush!” said the captain; “it is a fire.” + +“But you told me the island was uninhabited?” + +“I said there were no fixed habitations on it, but I said also that it +served sometimes as a harbor for smugglers.” + +“And for pirates?” + +“And for pirates,” returned Gaetano, repeating Franz’s words. “It is +for that reason I have given orders to pass the island, for, as you +see, the fire is behind us.” + +“But this fire?” continued Franz. “It seems to me rather reassuring +than otherwise; men who did not wish to be seen would not light a +fire.” + +“Oh, that goes for nothing,” said Gaetano. “If you can guess the +position of the island in the darkness, you will see that the fire +cannot be seen from the side or from Pianosa, but only from the sea.” + +“You think, then, this fire indicates the presence of unpleasant +neighbors?” + +“That is what we must find out,” returned Gaetano, fixing his eyes on +this terrestrial star. + +“How can you find out?” + +“You shall see.” + +Gaetano consulted with his companions, and after five minutes’ +discussion a manœuvre was executed which caused the vessel to tack +about, they returned the way they had come, and in a few minutes the +fire disappeared, hidden by an elevation of the land. The pilot again +changed the course of the boat, which rapidly approached the island, +and was soon within fifty paces of it. Gaetano lowered the sail, and +the boat came to rest. All this was done in silence, and from the +moment that their course was changed not a word was spoken. + +Gaetano, who had proposed the expedition, had taken all the +responsibility on himself; the four sailors fixed their eyes on him, +while they got out their oars and held themselves in readiness to row +away, which, thanks to the darkness, would not be difficult. As for +Franz, he examined his arms with the utmost coolness; he had two +double-barrelled guns and a rifle; he loaded them, looked at the +priming, and waited quietly. + +During this time the captain had thrown off his vest and shirt, and +secured his trousers round his waist; his feet were naked, so he had no +shoes and stockings to take off; after these preparations he placed his +finger on his lips, and lowering himself noiselessly into the sea, swam +towards the shore with such precaution that it was impossible to hear +the slightest sound; he could only be traced by the phosphorescent line +in his wake. This track soon disappeared; it was evident that he had +touched the shore. + +Everyone on board remained motionless for half an hour, when the same +luminous track was again observed, and the swimmer was soon on board. + +“Well?” exclaimed Franz and the sailors in unison. + +“They are Spanish smugglers,” said he; “they have with them two +Corsican bandits.” + +“And what are these Corsican bandits doing here with Spanish +smugglers?” + +“Alas,” returned the captain with an accent of the most profound pity, +“we ought always to help one another. Very often the bandits are hard +pressed by gendarmes or carbineers; well, they see a vessel, and good +fellows like us on board, they come and demand hospitality of us; you +can’t refuse help to a poor hunted devil; we receive them, and for +greater security we stand out to sea. This costs us nothing, and saves +the life, or at least the liberty, of a fellow-creature, who on the +first occasion returns the service by pointing out some safe spot where +we can land our goods without interruption.” + +“Ah!” said Franz, “then you are a smuggler occasionally, Gaetano?” + +“Your excellency, we must live somehow,” returned the other, smiling +impenetrably. + +“Then you know the men who are now on Monte Cristo?” + +“Oh, yes, we sailors are like freemasons, and recognize each other by +signs.” + +“And do you think we have nothing to fear if we land?” + +“Nothing at all; smugglers are not thieves.” + +“But these two Corsican bandits?” said Franz, calculating the chances +of peril. + +“It is not their fault that they are bandits, but that of the +authorities.” + +“How so?” + +“Because they are pursued for having made a stiff, as if it was not in +a Corsican’s nature to revenge himself.” + +“What do you mean by having made a stiff?—having assassinated a man?” +said Franz, continuing his investigation. + +“I mean that they have killed an enemy, which is a very different +thing,” returned the captain. + +“Well,” said the young man, “let us demand hospitality of these +smugglers and bandits. Do you think they will grant it?” + +“Without doubt.” + +“How many are they?” + +“Four, and the two bandits make six.” + +“Just our number, so that if they prove troublesome, we shall be able +to hold them in check; so, for the last time, steer to Monte Cristo.” + +“Yes, but your excellency will permit us to take all due precautions.” + +“By all means, be as wise as Nestor and as prudent as Ulysses; I do +more than permit, I exhort you.” + +“Silence, then!” said Gaetano. + +Everyone obeyed. For a man who, like Franz, viewed his position in its +true light, it was a grave one. He was alone in the darkness with +sailors whom he did not know, and who had no reason to be devoted to +him; who knew that he had several thousand francs in his belt, and who +had often examined his weapons,—which were very beautiful,—if not with +envy, at least with curiosity. On the other hand, he was about to land, +without any other escort than these men, on an island which had, +indeed, a very religious name, but which did not seem to Franz likely +to afford him much hospitality, thanks to the smugglers and bandits. +The history of the scuttled vessels, which had appeared improbable +during the day, seemed very probable at night; placed as he was between +two possible sources of danger, he kept his eye on the crew, and his +gun in his hand. + +The sailors had again hoisted sail, and the vessel was once more +cleaving the waves. Through the darkness Franz, whose eyes were now +more accustomed to it, could see the looming shore along which the boat +was sailing, and then, as they rounded a rocky point, he saw the fire +more brilliant than ever, and about it five or six persons seated. The +blaze illumined the sea for a hundred paces around. Gaetano skirted the +light, carefully keeping the boat in the shadow; then, when they were +opposite the fire, he steered to the centre of the circle, singing a +fishing song, of which his companions sung the chorus. + +At the first words of the song the men seated round the fire arose and +approached the landing-place, their eyes fixed on the boat, evidently +seeking to know who the new-comers were and what were their intentions. +They soon appeared satisfied and returned (with the exception of one, +who remained at the shore) to their fire, at which the carcass of a +goat was roasting. When the boat was within twenty paces of the shore, +the man on the beach, who carried a carbine, presented arms after the +manner of a sentinel, and cried, “Who comes there?” in Sardinian. + +Franz coolly cocked both barrels. Gaetano then exchanged a few words +with this man which the traveller did not understand, but which +evidently concerned him. + +“Will your excellency give your name, or remain _incognito_?” asked the +captain. + +“My name must rest unknown,” replied Franz; “merely say I am a +Frenchman travelling for pleasure.” + +As soon as Gaetano had transmitted this answer, the sentinel gave an +order to one of the men seated round the fire, who rose and disappeared +among the rocks. Not a word was spoken, everyone seemed occupied, Franz +with his disembarkment, the sailors with their sails, the smugglers +with their goat; but in the midst of all this carelessness it was +evident that they mutually observed each other. + +The man who had disappeared returned suddenly on the opposite side to +that by which he had left; he made a sign with his head to the +sentinel, who, turning to the boat, said, “_S’accommodi_.” The Italian +_s’accommodi_ is untranslatable; it means at once, “Come, enter, you +are welcome; make yourself at home; you are the master.” It is like +that Turkish phrase of Molière’s that so astonished the bourgeois +gentleman by the number of things implied in its utterance. + +The sailors did not wait for a second invitation; four strokes of the +oar brought them to land; Gaetano sprang to shore, exchanged a few +words with the sentinel, then his comrades disembarked, and lastly came +Franz. One of his guns was swung over his shoulder, Gaetano had the +other, and a sailor held his rifle; his dress, half artist, half dandy, +did not excite any suspicion, and, consequently, no disquietude. The +boat was moored to the shore, and they advanced a few paces to find a +comfortable bivouac; but, doubtless, the spot they chose did not suit +the smuggler who filled the post of sentinel, for he cried out: + +“Not that way, if you please.” + +Gaetano faltered an excuse, and advanced to the opposite side, while +two sailors kindled torches at the fire to light them on their way. + +They advanced about thirty paces, and then stopped at a small esplanade +surrounded with rocks, in which seats had been cut, not unlike +sentry-boxes. Around in the crevices of the rocks grew a few dwarf oaks +and thick bushes of myrtles. Franz lowered a torch, and saw by the mass +of cinders that had accumulated that he was not the first to discover +this retreat, which was, doubtless, one of the halting-places of the +wandering visitors of Monte Cristo. + +As for his suspicions, once on _terra firma_, once that he had seen the +indifferent, if not friendly, appearance of his hosts, his anxiety had +quite disappeared, or rather, at sight of the goat, had turned to +appetite. He mentioned this to Gaetano, who replied that nothing could +be more easy than to prepare a supper when they had in their boat, +bread, wine, half a dozen partridges, and a good fire to roast them by. + +“Besides,” added he, “if the smell of their roast meat tempts you, I +will go and offer them two of our birds for a slice.” + +“You are a born diplomat,” returned Franz; “go and try.” + +Meanwhile the sailors had collected dried sticks and branches with +which they made a fire. Franz waited impatiently, inhaling the aroma of +the roasted meat, when the captain returned with a mysterious air. + +“Well,” said Franz, “anything new?—do they refuse?” + +“On the contrary,” returned Gaetano, “the chief, who was told you were +a young Frenchman, invites you to sup with him.” + +“Well,” observed Franz, “this chief is very polite, and I see no +objection—the more so as I bring my share of the supper.” + +“Oh, it is not that; he has plenty, and to spare, for supper; but he +makes one condition, and rather a peculiar one, before he will receive +you at his house.” + +“His house? Has he built one here, then?” + +“No, but he has a very comfortable one all the same, so they say.” + +“You know this chief, then?” + +“I have heard talk of him.” + +“Favorably or otherwise?” + +“Both.” + +“The deuce!—and what is this condition?” + +“That you are blindfolded, and do not take off the bandage until he +himself bids you.” + +Franz looked at Gaetano, to see, if possible, what he thought of this +proposal. “Ah,” replied he, guessing Franz’s thought, “I know this is a +serious matter.” + +“What should you do in my place?” + +“I, who have nothing to lose,—I should go.” + +20075m + + + +“You would accept?” + +“Yes, were it only out of curiosity.” + +“There is something very peculiar about this chief, then?” + +“Listen,” said Gaetano, lowering his voice, “I do not know if what they +say is true”—he stopped to see if anyone was near. + +“What do they say?” + +“That this chief inhabits a cavern to which the Pitti Palace is +nothing.” + +“What nonsense!” said Franz, reseating himself. + +“It is no nonsense; it is quite true. Cama, the pilot of the _Saint +Ferdinand_, went in once, and he came back amazed, vowing that such +treasures were only to be heard of in fairy tales.” + +“Do you know,” observed Franz, “that with such stories you make me +think of Ali Baba’s enchanted cavern?” + +“I tell you what I have been told.” + +“Then you advise me to accept?” + +“Oh, I don’t say that; your excellency will do as you please; I should +be sorry to advise you in the matter.” + +Franz pondered the matter for a few moments, concluded that a man so +rich could not have any intention of plundering him of what little he +had, and seeing only the prospect of a good supper, accepted. Gaetano +departed with the reply. Franz was prudent, and wished to learn all he +possibly could concerning his host. He turned towards the sailor, who, +during this dialogue, had sat gravely plucking the partridges with the +air of a man proud of his office, and asked him how these men had +landed, as no vessel of any kind was visible. + +“Never mind that,” returned the sailor, “I know their vessel.” + +“Is it a very beautiful vessel?” + +“I would not wish for a better to sail round the world.” + +“Of what burden is she?” + +“About a hundred tons; but she is built to stand any weather. She is +what the English call a yacht.” + +“Where was she built?” + +“I know not; but my own opinion is she is a Genoese.” + +“And how did a leader of smugglers,” continued Franz, “venture to build +a vessel designed for such a purpose at Genoa?” + +“I did not say that the owner was a smuggler,” replied the sailor. + +“No; but Gaetano did, I thought.” + +“Gaetano had only seen the vessel from a distance, he had not then +spoken to anyone.” + +“And if this person be not a smuggler, who is he?” + +“A wealthy signor, who travels for his pleasure.” + +“Come,” thought Franz, “he is still more mysterious, since the two +accounts do not agree.” + +“What is his name?” + +“If you ask him, he says Sinbad the Sailor; but I doubt if it be his +real name.” + +“Sinbad the Sailor?” + +“Yes.” + +“And where does he reside?” + +“On the sea.” + +“What country does he come from?” + +“I do not know.” + +“Have you ever seen him?” + +“Sometimes.” + +“What sort of a man is he?” + +“Your excellency will judge for yourself.” + +“Where will he receive me?” + +“No doubt in the subterranean palace Gaetano told you of.” + +“Have you never had the curiosity, when you have landed and found this +island deserted, to seek for this enchanted palace?” + +“Oh, yes, more than once, but always in vain; we examined the grotto +all over, but we never could find the slightest trace of any opening; +they say that the door is not opened by a key, but a magic word.” + +“Decidedly,” muttered Franz, “this is an Arabian Nights’ adventure.” + +“His excellency waits for you,” said a voice, which he recognized as +that of the sentinel. He was accompanied by two of the yacht’s crew. + +Franz drew his handkerchief from his pocket, and presented it to the +man who had spoken to him. Without uttering a word, they bandaged his +eyes with a care that showed their apprehensions of his committing some +indiscretion. Afterwards he was made to promise that he would not make +the least attempt to raise the bandage. He promised. + +Then his two guides took his arms, and he went on, guided by them, and +preceded by the sentinel. After going about thirty paces, he smelt the +appetizing odor of the kid that was roasting, and knew thus that he was +passing the bivouac; they then led him on about fifty paces farther, +evidently advancing towards that part of the shore where they would not +allow Gaetano to go—a refusal he could now comprehend. + +Presently, by a change in the atmosphere, he knew that they were +entering a cave; after going on for a few seconds more he heard a +crackling, and it seemed to him as though the atmosphere again changed, +and became balmy and perfumed. At length his feet touched on a thick +and soft carpet, and his guides let go their hold of him. There was a +moment’s silence, and then a voice, in excellent French, although, with +a foreign accent, said: + +“Welcome, sir. I beg you will remove your bandage.” + +It may be supposed, then, Franz did not wait for a repetition of this +permission, but took off the handkerchief, and found himself in the +presence of a man from thirty-eight to forty years of age, dressed in a +Tunisian costume, that is to say, a red cap with a long blue silk +tassel, a vest of black cloth embroidered with gold, pantaloons of deep +red, large and full gaiters of the same color, embroidered with gold +like the vest, and yellow slippers; he had a splendid cashmere round +his waist, and a small sharp and crooked cangiar was passed through his +girdle. + +Although of a paleness that was almost livid, this man had a remarkably +handsome face; his eyes were penetrating and sparkling; his nose, quite +straight, and projecting direct from the brow, was of the pure Greek +type, while his teeth, as white as pearls, were set off to admiration +by the black moustache that encircled them. + +His pallor was so peculiar, that it seemed to pertain to one who had +been long entombed, and who was incapable of resuming the healthy glow +and hue of life. He was not particularly tall, but extremely well made, +and, like the men of the South, had small hands and feet. But what +astonished Franz, who had treated Gaetano’s description as a fable, was +the splendor of the apartment in which he found himself. + +The entire chamber was lined with crimson brocade, worked with flowers +of gold. In a recess was a kind of divan, surmounted with a stand of +Arabian swords in silver scabbards, and the handles resplendent with +gems; from the ceiling hung a lamp of Venetian glass, of beautiful +shape and color, while the feet rested on a Turkey carpet, in which +they sunk to the instep; tapestry hung before the door by which Franz +had entered, and also in front of another door, leading into a second +apartment which seemed to be brilliantly illuminated. + +The host gave Franz time to recover from his surprise, and, moreover, +returned look for look, not even taking his eyes off him. + +“Sir,” he said, after a pause, “a thousand excuses for the precaution +taken in your introduction hither; but as, during the greater portion +of the year, this island is deserted, if the secret of this abode were +discovered, I should doubtless, find on my return my temporary +retirement in a state of great disorder, which would be exceedingly +annoying, not for the loss it occasioned me, but because I should not +have the certainty I now possess of separating myself from all the rest +of mankind at pleasure. Let me now endeavor to make you forget this +temporary unpleasantness, and offer you what no doubt you did not +expect to find here—that is to say, a tolerable supper and pretty +comfortable beds.” + +“_Ma foi_, my dear sir,” replied Franz, “make no apologies. I have +always observed that they bandage people’s eyes who penetrate enchanted +palaces, for instance, those of Raoul in the _Huguenots_, and really I +have nothing to complain of, for what I see makes me think of the +wonders of the _Arabian Nights_.” + +20079m + + + +“Alas! I may say with Lucullus, if I could have anticipated the honor +of your visit, I would have prepared for it. But such as is my +hermitage, it is at your disposal; such as is my supper, it is yours to +share, if you will. Ali, is the supper ready?” + +At this moment the tapestry moved aside, and a Nubian, black as ebony, +and dressed in a plain white tunic, made a sign to his master that all +was prepared in the dining-room. + +“Now,” said the unknown to Franz, “I do not know if you are of my +opinion, but I think nothing is more annoying than to remain two or +three hours together without knowing by name or appellation how to +address one another. Pray observe, that I too much respect the laws of +hospitality to ask your name or title. I only request you to give me +one by which I may have the pleasure of addressing you. As for myself, +that I may put you at your ease, I tell you that I am generally called +‘Sinbad the Sailor.’” + +“And I,” replied Franz, “will tell you, as I only require his wonderful +lamp to make me precisely like Aladdin, that I see no reason why at +this moment I should not be called Aladdin. That will keep us from +going away from the East whither I am tempted to think I have been +conveyed by some good genius.” + +“Well, then, Signor Aladdin,” replied the singular Amphitryon, “you +heard our repast announced, will you now take the trouble to enter the +dining-room, your humble servant going first to show the way?” + +At these words, moving aside the tapestry, Sinbad preceded his guest. +Franz now looked upon another scene of enchantment; the table was +splendidly covered, and once convinced of this important point he cast +his eyes around him. The dining-room was scarcely less striking than +the room he had just left; it was entirely of marble, with antique +bas-reliefs of priceless value; and at the four corners of this +apartment, which was oblong, were four magnificent statues, having +baskets in their hands. These baskets contained four pyramids of most +splendid fruit; there were Sicily pine-apples, pomegranates from +Malaga, oranges from the Balearic Isles, peaches from France, and dates +from Tunis. + +The supper consisted of a roast pheasant garnished with Corsican +blackbirds; a boar’s ham with jelly, a quarter of a kid with tartar +sauce, a glorious turbot, and a gigantic lobster. Between these large +dishes were smaller ones containing various dainties. The dishes were +of silver, and the plates of Japanese china. + +Franz rubbed his eyes in order to assure himself that this was not a +dream. Ali alone was present to wait at table, and acquitted himself so +admirably, that the guest complimented his host thereupon. + +“Yes,” replied he, while he did the honors of the supper with much ease +and grace—“yes, he is a poor devil who is much devoted to me, and does +all he can to prove it. He remembers that I saved his life, and as he +has a regard for his head, he feels some gratitude towards me for +having kept it on his shoulders.” + +Ali approached his master, took his hand, and kissed it. + +“Would it be impertinent, Signor Sinbad,” said Franz, “to ask you the +particulars of this kindness?” + +20081m + + + +“Oh, they are simple enough,” replied the host. “It seems the fellow +had been caught wandering nearer to the harem of the Bey of Tunis than +etiquette permits to one of his color, and he was condemned by the Bey +to have his tongue cut out, and his hand and head cut off; the tongue +the first day, the hand the second, and the head the third. I always +had a desire to have a mute in my service, so learning the day his +tongue was cut out, I went to the Bey, and proposed to give him for Ali +a splendid double-barreled gun, which I knew he was very desirous of +having. He hesitated a moment, he was so very desirous to complete the +poor devil’s punishment. But when I added to the gun an English cutlass +with which I had shivered his highness’s yataghan to pieces, the Bey +yielded, and agreed to forgive the hand and head, but on condition that +the poor fellow never again set foot in Tunis. This was a useless +clause in the bargain, for whenever the coward sees the first glimpse +of the shores of Africa, he runs down below, and can only be induced to +appear again when we are out of sight of that quarter of the globe.” + +Franz remained a moment silent and pensive, hardly knowing what to +think of the half-kindness, half-cruelty, with which his host related +the brief narrative. + +“And like the celebrated sailor whose name you have assumed,” he said, +by way of changing the conversation, “you pass your life in +travelling?” + +“Yes. I made a vow at a time when I little thought I should ever be +able to accomplish it,” said the unknown with a singular smile; “and I +made some others also which I hope I may fulfil in due season.” + +Although Sinbad pronounced these words with much calmness, his eyes +gave forth gleams of extraordinary ferocity. + +“You have suffered a great deal, sir?” said Franz inquiringly. + +Sinbad started and looked fixedly at him, as he replied, “What makes +you suppose so?” + +“Everything,” answered Franz,—“your voice, your look, your pallid +complexion, and even the life you lead.” + +“I?—I live the happiest life possible, the real life of a pasha. I am +king of all creation. I am pleased with one place, and stay there; I +get tired of it, and leave it; I am free as a bird and have wings like +one; my attendants obey my slightest wish. Sometimes I amuse myself by +delivering some bandit or criminal from the bonds of the law. Then I +have my mode of dispensing justice, silent and sure, without respite or +appeal, which condemns or pardons, and which no one sees. Ah, if you +had tasted my life, you would not desire any other, and would never +return to the world unless you had some great project to accomplish +there.” + +“Revenge, for instance!” observed Franz. + +The unknown fixed on the young man one of those looks which penetrate +into the depth of the heart and thoughts. “And why revenge?” he asked. + +“Because,” replied Franz, “you seem to me like a man who, persecuted by +society, has a fearful account to settle with it.” + +“Ah!” responded Sinbad, laughing with his singular laugh, which +displayed his white and sharp teeth. “You have not guessed rightly. +Such as you see me I am, a sort of philosopher, and one day perhaps I +shall go to Paris to rival Monsieur Appert, and the man in the little +blue cloak.” + +“And will that be the first time you ever took that journey?” + +“Yes; it will. I must seem to you by no means curious, but I assure you +that it is not my fault I have delayed it so long—it will happen one +day or the other.” + +20083m + + + +“And do you propose to make this journey very shortly?” + +“I do not know; it depends on circumstances which depend on certain +arrangements.” + +“I should like to be there at the time you come, and I will endeavor to +repay you, as far as lies in my power, for your liberal hospitality +displayed to me at Monte Cristo.” + +“I should avail myself of your offer with pleasure,” replied the host, +“but, unfortunately, if I go there, it will be, in all probability, +_incognito_.” + +The supper appeared to have been supplied solely for Franz, for the +unknown scarcely touched one or two dishes of the splendid banquet to +which his guest did ample justice. Then Ali brought on the dessert, or +rather took the baskets from the hands of the statues and placed them +on the table. Between the two baskets he placed a small silver cup with +a silver cover. The care with which Ali placed this cup on the table +roused Franz’s curiosity. He raised the cover and saw a kind of +greenish paste, something like preserved angelica, but which was +perfectly unknown to him. He replaced the lid, as ignorant of what the +cup contained as he was before he had looked at it, and then casting +his eyes towards his host he saw him smile at his disappointment. + +“You cannot guess,” said he, “what there is in that small vase, can +you?” + +“No, I really cannot.” + +“Well, then, that green preserve is nothing less than the ambrosia +which Hebe served at the table of Jupiter.” + +“But,” replied Franz, “this ambrosia, no doubt, in passing through +mortal hands has lost its heavenly appellation and assumed a human +name; in vulgar phrase, what may you term this composition, for which, +to tell the truth, I do not feel any particular desire?” + +“Ah, thus it is that our material origin is revealed,” cried Sinbad; +“we frequently pass so near to happiness without seeing, without +regarding it, or if we do see and regard it, yet without recognizing +it. Are you a man for the substantials, and is gold your god? taste +this, and the mines of Peru, Guzerat, and Golconda are opened to you. +Are you a man of imagination—a poet? taste this, and the boundaries of +possibility disappear; the fields of infinite space open to you, you +advance free in heart, free in mind, into the boundless realms of +unfettered reverie. Are you ambitious, and do you seek after the +greatnesses of the earth? taste this, and in an hour you will be a +king, not a king of a petty kingdom hidden in some corner of Europe +like France, Spain, or England, but king of the world, king of the +universe, king of creation; without bowing at the feet of Satan, you +will be king and master of all the kingdoms of the earth. Is it not +tempting what I offer you, and is it not an easy thing, since it is +only to do thus? look!” + +At these words he uncovered the small cup which contained the substance +so lauded, took a teaspoonful of the magic sweetmeat, raised it to his +lips, and swallowed it slowly with his eyes half shut and his head bent +backwards. Franz did not disturb him whilst he absorbed his favorite +sweetmeat, but when he had finished, he inquired: + +“What, then, is this precious stuff?” + +“Did you ever hear,” he replied, “of the Old Man of the Mountain, who +attempted to assassinate Philippe Auguste?” + +“Of course I have.” + +“Well, you know he reigned over a rich valley which was overhung by the +mountain whence he derived his picturesque name. In this valley were +magnificent gardens planted by Hassen-ben-Sabah, and in these gardens +isolated pavilions. Into these pavilions he admitted the elect, and +there, says Marco Polo, gave them to eat a certain herb, which +transported them to Paradise, in the midst of ever-blooming shrubs, +ever-ripe fruit, and ever-lovely virgins. What these happy persons took +for reality was but a dream; but it was a dream so soft, so voluptuous, +so enthralling, that they sold themselves body and soul to him who gave +it to them, and obedient to his orders as to those of a deity, struck +down the designated victim, died in torture without a murmur, believing +that the death they underwent was but a quick transition to that life +of delights of which the holy herb, now before you, had given them a +slight foretaste.” + +“Then,” cried Franz, “it is hashish! I know that—by name at least.” + +“That is it precisely, Signor Aladdin; it is hashish—the purest and +most unadulterated hashish of Alexandria,—the hashish of Abou-Gor, the +celebrated maker, the only man, the man to whom there should be built a +palace, inscribed with these words, _A grateful world to the dealer in +happiness_.” + +“Do you know,” said Franz, “I have a very great inclination to judge +for myself of the truth or exaggeration of your eulogies.” + +“Judge for yourself, Signor Aladdin—judge, but do not confine yourself +to one trial. Like everything else, we must habituate the senses to a +fresh impression, gentle or violent, sad or joyous. There is a struggle +in nature against this divine substance,—in nature which is not made +for joy and clings to pain. Nature subdued must yield in the combat, +the dream must succeed to reality, and then the dream reigns supreme, +then the dream becomes life, and life becomes the dream. But what +changes occur! It is only by comparing the pains of actual being with +the joys of the assumed existence, that you would desire to live no +longer, but to dream thus forever. When you return to this mundane +sphere from your visionary world, you would seem to leave a Neapolitan +spring for a Lapland winter—to quit paradise for earth—heaven for hell! +Taste the hashish, guest of mine—taste the hashish.” + +Franz’s only reply was to take a teaspoonful of the marvellous +preparation, about as much in quantity as his host had eaten, and lift +it to his mouth. + +“_Diable!_” he said, after having swallowed the divine preserve. “I do +not know if the result will be as agreeable as you describe, but the +thing does not appear to me as palatable as you say.” + +“Because your palate his not yet been attuned to the sublimity of the +substances it flavors. Tell me, the first time you tasted oysters, tea, +porter, truffles, and sundry other dainties which you now adore, did +you like them? Could you comprehend how the Romans stuffed their +pheasants with assafœtida, and the Chinese eat swallows’ nests? Eh? no! +Well, it is the same with hashish; only eat for a week, and nothing in +the world will seem to you to equal the delicacy of its flavor, which +now appears to you flat and distasteful. Let us now go into the +adjoining chamber, which is your apartment, and Ali will bring us +coffee and pipes.” + +They both arose, and while he who called himself Sinbad—and whom we +have occasionally named so, that we might, like his guest, have some +title by which to distinguish him—gave some orders to the servant, +Franz entered still another apartment. + +It was simply yet richly furnished. It was round, and a large divan +completely encircled it. Divan, walls, ceiling, floor, were all covered +with magnificent skins as soft and downy as the richest carpets; there +were heavy-maned lion-skins from Atlas, striped tiger-skins from +Bengal; panther-skins from the Cape, spotted beautifully, like those +that appeared to Dante; bear-skins from Siberia, fox-skins from Norway, +and so on; and all these skins were strewn in profusion one on the +other, so that it seemed like walking over the most mossy turf, or +reclining on the most luxurious bed. + +Both laid themselves down on the divan; chibouques with jasmine tubes +and amber mouthpieces were within reach, and all prepared so that there +was no need to smoke the same pipe twice. Each of them took one, which +Ali lighted and then retired to prepare the coffee. + +There was a moment’s silence, during which Sinbad gave himself up to +thoughts that seemed to occupy him incessantly, even in the midst of +his conversation; and Franz abandoned himself to that mute reverie, +into which we always sink when smoking excellent tobacco, which seems +to remove with its fume all the troubles of the mind, and to give the +smoker in exchange all the visions of the soul. Ali brought in the +coffee. + +“How do you take it?” inquired the unknown; “in the French or Turkish +style, strong or weak, sugar or none, cool or boiling? As you please; +it is ready in all ways.” + +“I will take it in the Turkish style,” replied Franz. + +“And you are right,” said his host; “it shows you have a tendency for +an Oriental life. Ah, those Orientals; they are the only men who know +how to live. As for me,” he added, with one of those singular smiles +which did not escape the young man, “when I have completed my affairs +in Paris, I shall go and die in the East; and should you wish to see me +again, you must seek me at Cairo, Bagdad, or Ispahan.” + +20087m + + + +“_Ma foi_,” said Franz, “it would be the easiest thing in the world; +for I feel eagle’s wings springing out at my shoulders, and with those +wings I could make a tour of the world in four-and-twenty hours.” + +“Ah, yes, the hashish is beginning its work. Well, unfurl your wings, +and fly into superhuman regions; fear nothing, there is a watch over +you; and if your wings, like those of Icarus, melt before the sun, we +are here to ease your fall.” + +He then said something in Arabic to Ali, who made a sign of obedience +and withdrew, but not to any distance. + +As to Franz a strange transformation had taken place in him. All the +bodily fatigue of the day, all the preoccupation of mind which the +events of the evening had brought on, disappeared as they do at the +first approach of sleep, when we are still sufficiently conscious to be +aware of the coming of slumber. His body seemed to acquire an airy +lightness, his perception brightened in a remarkable manner, his senses +seemed to redouble their power, the horizon continued to expand; but it +was not the gloomy horizon of vague alarms, and which he had seen +before he slept, but a blue, transparent, unbounded horizon, with all +the blue of the ocean, all the spangles of the sun, all the perfumes of +the summer breeze; then, in the midst of the songs of his +sailors,—songs so clear and sonorous, that they would have made a +divine harmony had their notes been taken down,—he saw the Island of +Monte Cristo, no longer as a threatening rock in the midst of the +waves, but as an oasis in the desert; then, as his boat drew nearer, +the songs became louder, for an enchanting and mysterious harmony rose +to heaven, as if some Loreley had decreed to attract a soul thither, or +Amphion, the enchanter, intended there to build a city. + +At length the boat touched the shore, but without effort, without +shock, as lips touch lips; and he entered the grotto amidst continued +strains of most delicious melody. He descended, or rather seemed to +descend, several steps, inhaling the fresh and balmy air, like that +which may be supposed to reign around the grotto of Circe, formed from +such perfumes as set the mind a-dreaming, and such fires as burn the +very senses; and he saw again all he had seen before his sleep, from +Sinbad, his singular host, to Ali, the mute attendant; then all seemed +to fade away and become confused before his eyes, like the last shadows +of the magic lantern before it is extinguished, and he was again in the +chamber of statues, lighted only by one of those pale and antique lamps +which watch in the dead of the night over the sleep of pleasure. + +They were the same statues, rich in form, in attraction, and poesy, +with eyes of fascination, smiles of love, and bright and flowing hair. +They were Phryne, Cleopatra, Messalina, those three celebrated +courtesans. Then among them glided like a pure ray, like a Christian +angel in the midst of Olympus, one of those chaste figures, those calm +shadows, those soft visions, which seemed to veil its virgin brow +before these marble wantons. + +Then the three statues advanced towards him with looks of love, and +approached the couch on which he was reposing, their feet hidden in +their long white tunics, their throats bare, hair flowing like waves, +and assuming attitudes which the gods could not resist, but which +saints withstood, and looks inflexible and ardent like those with which +the serpent charms the bird; and then he gave way before looks that +held him in a torturing grasp and delighted his senses as with a +voluptuous kiss. + +It seemed to Franz that he closed his eyes, and in a last look about +him saw the vision of modesty completely veiled; and then followed a +dream of passion like that promised by the Prophet to the elect. Lips +of stone turned to flame, breasts of ice became like heated lava, so +that to Franz, yielding for the first time to the sway of the drug, +love was a sorrow and voluptuousness a torture, as burning mouths were +pressed to his thirsty lips, and he was held in cool serpent-like +embraces. The more he strove against this unhallowed passion the more +his senses yielded to its thrall, and at length, weary of a struggle +that taxed his very soul, he gave way and sank back breathless and +exhausted beneath the kisses of these marble goddesses, and the +enchantment of his marvellous dream. + + + + Chapter 32. The Waking + +When Franz returned to himself, he seemed still to be in a dream. He +thought himself in a sepulchre, into which a ray of sunlight in pity +scarcely penetrated. He stretched forth his hand, and touched stone; he +rose to his seat, and found himself lying on his bournous in a bed of +dry heather, very soft and odoriferous. The vision had fled; and as if +the statues had been but shadows from the tomb, they had vanished at +his waking. + +He advanced several paces towards the point whence the light came, and +to all the excitement of his dream succeeded the calmness of reality. +He found that he was in a grotto, went towards the opening, and through +a kind of fanlight saw a blue sea and an azure sky. The air and water +were shining in the beams of the morning sun; on the shore the sailors +were sitting, chatting and laughing; and at ten yards from them the +boat was at anchor, undulating gracefully on the water. + +There for some time he enjoyed the fresh breeze which played on his +brow, and listened to the dash of the waves on the beach, that left +against the rocks a lace of foam as white as silver. He was for some +time without reflection or thought for the divine charm which is in the +things of nature, specially after a fantastic dream; then gradually +this view of the outer world, so calm, so pure, so grand, reminded him +of the illusiveness of his vision, and once more awakened memory. He +recalled his arrival on the island, his presentation to a smuggler +chief, a subterranean palace full of splendor, an excellent supper, and +a spoonful of hashish. + +It seemed, however, even in the very face of open day, that at least a +year had elapsed since all these things had passed, so deep was the +impression made in his mind by the dream, and so strong a hold had it +taken of his imagination. Thus every now and then he saw in fancy amid +the sailors, seated on a rock, or undulating in the vessel, one of the +shadows which had shared his dream with looks and kisses. Otherwise, +his head was perfectly clear, and his body refreshed; he was free from +the slightest headache; on the contrary, he felt a certain degree of +lightness, a faculty for absorbing the pure air, and enjoying the +bright sunshine more vividly than ever. + +He went gayly up to the sailors, who rose as soon as they perceived +him; and the patron, accosting him, said: + +“The Signor Sinbad has left his compliments for your excellency, and +desires us to express the regret he feels at not being able to take his +leave in person; but he trusts you will excuse him, as very important +business calls him to Malaga.” + +“So, then, Gaetano,” said Franz, “this is, then, all reality; there +exists a man who has received me in this island, entertained me right +royally, and has departed while I was asleep?” + +“He exists as certainly as that you may see his small yacht with all +her sails spread; and if you will use your glass, you will, in all +probability, recognize your host in the midst of his crew.” + +So saying, Gaetano pointed in a direction in which a small vessel was +making sail towards the southern point of Corsica. Franz adjusted his +telescope, and directed it towards the yacht. Gaetano was not mistaken. +At the stern the mysterious stranger was standing up looking towards +the shore, and holding a spy-glass in his hand. He was attired as he +had been on the previous evening, and waved his pocket-handkerchief to +his guest in token of adieu. Franz returned the salute by shaking his +handkerchief as an exchange of signals. After a second, a slight cloud +of smoke was seen at the stern of the vessel, which rose gracefully as +it expanded in the air, and then Franz heard a slight report. + +“There, do you hear?” observed Gaetano; “he is bidding you adieu.” + +The young man took his carbine and fired it in the air, but without any +idea that the noise could be heard at the distance which separated the +yacht from the shore. + +“What are your excellency’s orders?” inquired Gaetano. + +“In the first place, light me a torch.” + +“Ah, yes, I understand,” replied the patron, “to find the entrance to +the enchanted apartment. With much pleasure, your excellency, if it +would amuse you; and I will get you the torch you ask for. But I too +have had the idea you have, and two or three times the same fancy has +come over me; but I have always given it up. Giovanni, light a torch,” +he added, “and give it to his excellency.” + +Giovanni obeyed. Franz took the lamp, and entered the subterranean +grotto, followed by Gaetano. He recognized the place where he had +awaked by the bed of heather that was there; but it was in vain that he +carried his torch all round the exterior surface of the grotto. He saw +nothing, unless that, by traces of smoke, others had before him +attempted the same thing, and, like him, in vain. Yet he did not leave +a foot of this granite wall, as impenetrable as futurity, without +strict scrutiny; he did not see a fissure without introducing the blade +of his hunting sword into it, or a projecting point on which he did not +lean and press in the hopes it would give way. All was vain; and he +lost two hours in his attempts, which were at last utterly useless. At +the end of this time he gave up his search, and Gaetano smiled. + +When Franz appeared again on the shore, the yacht only seemed like a +small white speck on the horizon. He looked again through his glass, +but even then he could not distinguish anything. + +Gaetano reminded him that he had come for the purpose of shooting +goats, which he had utterly forgotten. He took his fowling-piece, and +began to hunt over the island with the air of a man who is fulfilling a +duty, rather than enjoying a pleasure; and at the end of a quarter of +an hour he had killed a goat and two kids. These animals, though wild +and agile as chamois, were too much like domestic goats, and Franz +could not consider them as game. Moreover, other ideas, much more +enthralling, occupied his mind. Since, the evening before, he had +really been the hero of one of the tales of the _Thousand and One +Nights_, and he was irresistibly attracted towards the grotto. + +Then, in spite of the failure of his first search, he began a second, +after having told Gaetano to roast one of the two kids. The second +visit was a long one, and when he returned the kid was roasted and the +repast ready. Franz was sitting on the spot where he was on the +previous evening when his mysterious host had invited him to supper; +and he saw the little yacht, now like a sea-gull on the wave, +continuing her flight towards Corsica. + +“Why,” he remarked to Gaetano, “you told me that Signor Sinbad was +going to Malaga, while it seems he is in the direction of +Porto-Vecchio.” + +“Don’t you remember,” said the patron, “I told you that among the crew +there were two Corsican brigands?” + +“True; and he is going to land them,” added Franz. + +“Precisely so,” replied Gaetano. “Ah, he is one who fears neither God +nor Satan, they say, and would at any time run fifty leagues out of his +course to do a poor devil a service.” + +20093m + + + +“But such services as these might involve him with the authorities of +the country in which he practices this kind of philanthropy,” said +Franz. + +“And what cares he for that,” replied Gaetano with a laugh, “or any +authorities? He smiles at them. Let them try to pursue him! Why, in the +first place, his yacht is not a ship, but a bird, and he would beat any +frigate three knots in every nine; and if he were to throw himself on +the coast, why, is he not certain of finding friends everywhere?” + +It was perfectly clear that the Signor Sinbad, Franz’s host, had the +honor of being on excellent terms with the smugglers and bandits along +the whole coast of the Mediterranean, and so enjoyed exceptional +privileges. As to Franz, he had no longer any inducement to remain at +Monte Cristo. He had lost all hope of detecting the secret of the +grotto; he consequently despatched his breakfast, and, his boat being +ready, he hastened on board, and they were soon under way. At the +moment the boat began her course they lost sight of the yacht, as it +disappeared in the gulf of Porto-Vecchio. With it was effaced the last +trace of the preceding night; and then supper, Sinbad, hashish, +statues,—all became a dream for Franz. + +The boat sailed on all day and all night, and next morning, when the +sun rose, they had lost sight of Monte Cristo. + +When Franz had once again set foot on shore, he forgot, for the moment +at least, the events which had just passed, while he finished his +affairs of pleasure at Florence, and then thought of nothing but how he +should rejoin his companion, who was awaiting him at Rome. + +He set out, and on the Saturday evening reached the Place de la Douane +by the mail-coach. An apartment, as we have said, had been retained +beforehand, and thus he had but to go to Signor Pastrini’s hotel. But +this was not so easy a matter, for the streets were thronged with +people, and Rome was already a prey to that low and feverish murmur +which precedes all great events; and at Rome there are four great +events in every year,—the Carnival, Holy Week, Corpus Christi, and the +Feast of St. Peter. + +All the rest of the year the city is in that state of dull apathy, +between life and death, which renders it similar to a kind of station +between this world and the next—a sublime spot, a resting-place full of +poetry and character, and at which Franz had already halted five or six +times, and at each time found it more marvellous and striking. + +At last he made his way through the mob, which was continually +increasing and getting more and more turbulent, and reached the hotel. +On his first inquiry he was told, with the impertinence peculiar to +hired hackney-coachmen and innkeepers with their houses full, that +there was no room for him at the Hôtel de Londres. Then he sent his +card to Signor Pastrini, and asked for Albert de Morcerf. This plan +succeeded; and Signor Pastrini himself ran to him, excusing himself for +having made his excellency wait, scolding the waiters, taking the +candlestick from the porter, who was ready to pounce on the traveller +and was about to lead him to Albert, when Morcerf himself appeared. + +The apartment consisted of two small rooms and a parlor. The two rooms +looked on to the street—a fact which Signor Pastrini commented upon as +an inappreciable advantage. The rest of the floor was hired by a very +rich gentleman who was supposed to be a Sicilian or Maltese; but the +host was unable to decide to which of the two nations the traveller +belonged. + +“Very good, signor Pastrini,” said Franz; “but we must have some supper +instantly, and a carriage for tomorrow and the following days.” + +“As to supper,” replied the landlord, “you shall be served immediately; +but as for the carriage——” + +“What as to the carriage?” exclaimed Albert. “Come, come, Signor +Pastrini, no joking; we must have a carriage.” + +“Sir,” replied the host, “we will do all in our power to procure you +one—this is all I can say.” + +“And when shall we know?” inquired Franz. + +“Tomorrow morning,” answered the innkeeper. + +“Oh, the deuce! then we shall pay the more, that’s all, I see plainly +enough. At Drake’s or Aaron’s one pays twenty-five lire for common +days, and thirty or thirty-five lire a day more for Sundays and feast +days; add five lire a day more for extras, that will make forty, and +there’s an end of it.” + +“I am afraid if we offer them double that we shall not procure a +carriage.” + +“Then they must put horses to mine. It is a little worse for the +journey, but that’s no matter.” + +“There are no horses.” + +Albert looked at Franz like a man who hears a reply he does not +understand. + +“Do you understand that, my dear Franz—no horses?” he said, “but can’t +we have post-horses?” + +“They have been all hired this fortnight, and there are none left but +those absolutely requisite for posting.” + +“What are we to say to this?” asked Franz. + +“I say, that when a thing completely surpasses my comprehension, I am +accustomed not to dwell on that thing, but to pass to another. Is +supper ready, Signor Pastrini?” + +“Yes, your excellency.” + +“Well, then, let us sup.” + +“But the carriage and horses?” said Franz. + +“Be easy, my dear boy; they will come in due season; it is only a +question of how much shall be charged for them.” Morcerf then, with +that delighted philosophy which believes that nothing is impossible to +a full purse or well-lined pocketbook, supped, went to bed, slept +soundly, and dreamed he was racing all over Rome at Carnival time in a +coach with six horses. + + + + Chapter 33. Roman Bandits + +The next morning Franz woke first, and instantly rang the bell. The +sound had not yet died away when Signor Pastrini himself entered. + +“Well, excellency,” said the landlord triumphantly, and without waiting +for Franz to question him, “I feared yesterday, when I would not +promise you anything, that you were too late—there is not a single +carriage to be had—that is, for the three last days” + +“Yes,” returned Franz, “for the very three days it is most needed.” + +“What is the matter?” said Albert, entering; “no carriage to be had?” + +“Just so,” returned Franz, “you have guessed it.” + +“Well, your Eternal City is a nice sort of place.” + +“That is to say, excellency,” replied Pastrini, who was desirous of +keeping up the dignity of the capital of the Christian world in the +eyes of his guest, “that there are no carriages to be had from Sunday +to Tuesday evening, but from now till Sunday you can have fifty if you +please.” + +“Ah, that is something,” said Albert; “today is Thursday, and who knows +what may arrive between this and Sunday?” + +“Ten or twelve thousand travellers will arrive,” replied Franz, “which +will make it still more difficult.” + +“My friend,” said Morcerf, “let us enjoy the present without gloomy +forebodings for the future.” + +“At least we can have a window?” + +“Where?” + +“In the Corso.” + +“Ah, a window!” exclaimed Signor Pastrini,—“utterly impossible; there +was only one left on the fifth floor of the Doria Palace, and that has +been let to a Russian prince for twenty sequins a day.” + +The two young men looked at each other with an air of stupefaction. + +“Well,” said Franz to Albert, “do you know what is the best thing we +can do? It is to pass the Carnival at Venice; there we are sure of +obtaining gondolas if we cannot have carriages.” + +“Ah, the devil, no,” cried Albert; “I came to Rome to see the Carnival, +and I will, though I see it on stilts.” + +“Bravo! an excellent idea. We will disguise ourselves as monster +pulchinellos or shepherds of the Landes, and we shall have complete +success.” + +“Do your excellencies still wish for a carriage from now to Sunday +morning?” + +“_Parbleu!_” said Albert, “do you think we are going to run about on +foot in the streets of Rome, like lawyers’ clerks?” + +“I hasten to comply with your excellencies’ wishes; only, I tell you +beforehand, the carriage will cost you six piastres a day.” + +“And, as I am not a millionaire, like the gentleman in the next +apartments,” said Franz, “I warn you, that as I have been four times +before at Rome, I know the prices of all the carriages; we will give +you twelve piastres for today, tomorrow, and the day after, and then +you will make a good profit.” + +“But, excellency”—said Pastrini, still striving to gain his point. + +“Now go,” returned Franz, “or I shall go myself and bargain with your +_affettatore_, who is mine also; he is an old friend of mine, who has +plundered me pretty well already, and, in the hope of making more out +of me, he will take a less price than the one I offer you; you will +lose the preference, and that will be your fault.” + +“Do not give yourselves the trouble, excellency,” returned Signor +Pastrini, with the smile peculiar to the Italian speculator when he +confesses defeat; “I will do all I can, and I hope you will be +satisfied.” + +“And now we understand each other.” + +“When do you wish the carriage to be here?” + +“In an hour.” + +“In an hour it will be at the door.” + +An hour after the vehicle was at the door; it was a hack conveyance +which was elevated to the rank of a private carriage in honor of the +occasion, but, in spite of its humble exterior, the young men would +have thought themselves happy to have secured it for the last three +days of the Carnival. + +“Excellency,” cried the _cicerone_, seeing Franz approach the window, +“shall I bring the carriage nearer to the palace?” + +Accustomed as Franz was to the Italian phraseology, his first impulse +was to look round him, but these words were addressed to him. Franz was +the “excellency,” the vehicle was the “carriage,” and the Hôtel de +Londres was the “palace.” The genius for laudation characteristic of +the race was in that phrase. + +Franz and Albert descended, the carriage approached the palace; their +excellencies stretched their legs along the seats; the _cicerone_ +sprang into the seat behind. + +“Where do your excellencies wish to go?” asked he. + +“To Saint Peter’s first, and then to the Colosseum,” returned Albert. +But Albert did not know that it takes a day to see Saint Peter’s, and a +month to study it. The day was passed at Saint Peter’s alone. + +Suddenly the daylight began to fade away; Franz took out his watch—it +was half-past four. They returned to the hotel; at the door Franz +ordered the coachman to be ready at eight. He wished to show Albert the +Colosseum by moonlight, as he had shown him Saint Peter’s by daylight. +When we show a friend a city one has already visited, we feel the same +pride as when we point out a woman whose lover we have been. + +He was to leave the city by the Porta del Popolo, skirt the outer wall, +and re-enter by the Porta San Giovanni; thus they would behold the +Colosseum without finding their impressions dulled by first looking on +the Capitol, the Forum, the Arch of Septimus Severus, the Temple of +Antoninus and Faustina, and the Via Sacra. + +They sat down to dinner. Signor Pastrini had promised them a banquet; +he gave them a tolerable repast. At the end of the dinner he entered in +person. Franz thought that he came to hear his dinner praised, and +began accordingly, but at the first words he was interrupted. + +“Excellency,” said Pastrini, “I am delighted to have your approbation, +but it was not for that I came.” + +“Did you come to tell us you have procured a carriage?” asked Albert, +lighting his cigar. + +“No; and your excellencies will do well not to think of that any +longer; at Rome things can or cannot be done; when you are told +anything cannot be done, there is an end of it.” + +“It is much more convenient at Paris,—when anything cannot be done, you +pay double, and it is done directly.” + +“That is what all the French say,” returned Signor Pastrini, somewhat +piqued; “for that reason, I do not understand why they travel.” + +“But,” said Albert, emitting a volume of smoke and balancing his chair +on its hind legs, “only madmen, or blockheads like us, ever do travel. +Men in their senses do not quit their hotel in the Rue du Helder, their +walk on the Boulevard de Gand, and the Café de Paris.” + +It is of course understood that Albert resided in the aforesaid street, +appeared every day on the fashionable walk, and dined frequently at the +only restaurant where you can really dine, that is, if you are on good +terms with its waiters. + +Signor Pastrini remained silent a short time; it was evident that he +was musing over this answer, which did not seem very clear. + +“But,” said Franz, in his turn interrupting his host’s meditations, +“you had some motive for coming here, may I beg to know what it was?” + +20099m + + + +“Ah, yes; you have ordered your carriage at eight o’clock precisely?” + +“I have.” + +“You intend visiting _Il Colosseo_.” + +“You mean the Colosseum?” + +“It is the same thing. You have told your coachman to leave the city by +the Porta del Popolo, to drive round the walls, and re-enter by the +Porta San Giovanni?” + +“These are my words exactly.” + +“Well, this route is impossible.” + +“Impossible!” + +“Very dangerous, to say the least.” + +“Dangerous!—and why?” + +“On account of the famous Luigi Vampa.” + +“Pray, who may this famous Luigi Vampa be?” inquired Albert; “he may be +very famous at Rome, but I can assure you he is quite unknown at +Paris.” + +“What! do you not know him?” + +“I have not that honor.” + +“You have never heard his name?” + +“Never.” + +“Well, then, he is a bandit, compared to whom the Decesaris and the +Gasparones were mere children.” + +“Now then, Albert,” cried Franz, “here is a bandit for you at last.” + +“I forewarn you, Signor Pastrini, that I shall not believe one word of +what you are going to tell us; having told you this, begin. ‘Once upon +a time——’ Well, go on.” + +Signor Pastrini turned toward Franz, who seemed to him the more +reasonable of the two; we must do him justice,—he had had a great many +Frenchmen in his house, but had never been able to comprehend them. + +“Excellency,” said he gravely, addressing Franz, “if you look upon me +as a liar, it is useless for me to say anything; it was for your +interest I——” + +“Albert does not say you are a liar, Signor Pastrini,” said Franz, “but +that he will not believe what you are going to tell us,—but I will +believe all you say; so proceed.” + +“But if your excellency doubt my veracity——” + +“Signor Pastrini,” returned Franz, “you are more susceptible than +Cassandra, who was a prophetess, and yet no one believed her; while +you, at least, are sure of the credence of half your audience. Come, +sit down, and tell us all about this Signor Vampa.” + +“I had told your excellency he is the most famous bandit we have had +since the days of Mastrilla.” + +“Well, what has this bandit to do with the order I have given the +coachman to leave the city by the Porta del Popolo, and to re-enter by +the Porta San Giovanni?” + +20101m + + + +“This,” replied Signor Pastrini, “that you will go out by one, but I +very much doubt your returning by the other.” + +“Why?” asked Franz. + +“Because, after nightfall, you are not safe fifty yards from the +gates.” + +“On your honor, is that true?” cried Albert. + +“Count,” returned Signor Pastrini, hurt at Albert’s repeated doubts of +the truth of his assertions, “I do not say this to you, but to your +companion, who knows Rome, and knows, too, that these things are not to +be laughed at.” + +“My dear fellow,” said Albert, turning to Franz, “here is an admirable +adventure; we will fill our carriage with pistols, blunderbusses, and +double-barrelled guns. Luigi Vampa comes to take us, and we take him—we +bring him back to Rome, and present him to his holiness the Pope, who +asks how he can repay so great a service; then we merely ask for a +carriage and a pair of horses, and we see the Carnival in the carriage, +and doubtless the Roman people will crown us at the Capitol, and +proclaim us, like Curtius and Horatius Cocles, the preservers of their +country.” + +Whilst Albert proposed this scheme, Signor Pastrini’s face assumed an +expression impossible to describe. + +“And pray,” asked Franz, “where are these pistols, blunderbusses, and +other deadly weapons with which you intend filling the carriage?” + +“Not out of my armory, for at Terracina I was plundered even of my +hunting-knife. And you?” + +“I shared the same fate at Aquapendente.” + +“Do you know, Signor Pastrini,” said Albert, lighting a second cigar at +the first, “that this practice is very convenient for bandits, and that +it seems to be due to an arrangement of their own.” + +Doubtless Signor Pastrini found this pleasantry compromising, for he +only answered half the question, and then he spoke to Franz, as the +only one likely to listen with attention. “Your excellency knows that +it is not customary to defend yourself when attacked by bandits.” + +“What!” cried Albert, whose courage revolted at the idea of being +plundered tamely, “not make any resistance!” + +“No, for it would be useless. What could you do against a dozen bandits +who spring out of some pit, ruin, or aqueduct, and level their pieces +at you?” + +“Eh, _parbleu!_—they should kill me.” + +The innkeeper turned to Franz with an air that seemed to say, “Your +friend is decidedly mad.” + +“My dear Albert,” returned Franz, “your answer is sublime, and worthy +the ‘_Let him die_,’ of Corneille, only, when Horace made that answer, +the safety of Rome was concerned; but, as for us, it is only to gratify +a whim, and it would be ridiculous to risk our lives for so foolish a +motive.” + +Albert poured himself out a glass of _lacryma Christi_, which he sipped +at intervals, muttering some unintelligible words. + +“Well, Signor Pastrini,” said Franz, “now that my companion is quieted, +and you have seen how peaceful my intentions are, tell me who is this +Luigi Vampa. Is he a shepherd or a nobleman?—young or old?—tall or +short? Describe him, in order that, if we meet him by chance, like Jean +Sbogar or Lara, we may recognize him.” + +“You could not apply to anyone better able to inform you on all these +points, for I knew him when he was a child, and one day that I fell +into his hands, going from Ferentino to Alatri, he, fortunately for me, +recollected me, and set me free, not only without ransom, but made me a +present of a very splendid watch, and related his history to me.” + +“Let us see the watch,” said Albert. + +Signor Pastrini drew from his fob a magnificent Bréguet, bearing the +name of its maker, of Parisian manufacture, and a count’s coronet. + +“Here it is,” said he. + +“_Peste!_” returned Albert, “I compliment you on it; I have its +fellow”—he took his watch from his waistcoat pocket—“and it cost me +3,000 francs.” + +“Let us hear the history,” said Franz, motioning Signor Pastrini to +seat himself. + +“Your excellencies permit it?” asked the host. + +“_Pardieu!_” cried Albert, “you are not a preacher, to remain +standing!” + +The host sat down, after having made each of them a respectful bow, +which meant that he was ready to tell them all they wished to know +concerning Luigi Vampa. + +“You tell me,” said Franz, at the moment Signor Pastrini was about to +open his mouth, “that you knew Luigi Vampa when he was a child—he is +still a young man, then?” + +“A young man? he is only two-and-twenty;—he will gain himself a +reputation.” + +“What do you think of that, Albert?—at two-and-twenty to be thus +famous?” + +“Yes, and at his age, Alexander, Cæsar, and Napoleon, who have all made +some noise in the world, were quite behind him.” + +“So,” continued Franz, “the hero of this history is only +two-and-twenty?” + +“Scarcely so much.” + +“Is he tall or short?” + +“Of the middle height—about the same stature as his excellency,” +returned the host, pointing to Albert. + +“Thanks for the comparison,” said Albert, with a bow. + +“Go on, Signor Pastrini,” continued Franz, smiling at his friend’s +susceptibility. “To what class of society does he belong?” + +“He was a shepherd-boy attached to the farm of the Count of San-Felice, +situated between Palestrina and the Lake of Gabri; he was born at +Pampinara, and entered the count’s service when he was five years old; +his father was also a shepherd, who owned a small flock, and lived by +the wool and the milk, which he sold at Rome. When quite a child, the +little Vampa displayed a most extraordinary precocity. One day, when he +was seven years old, he came to the curate of Palestrina, and asked to +be taught to read; it was somewhat difficult, for he could not quit his +flock; but the good curate went every day to say mass at a little +hamlet too poor to pay a priest and which, having no other name, was +called Borgo; he told Luigi that he might meet him on his return, and +that then he would give him a lesson, warning him that it would be +short, and that he must profit as much as possible by it. The child +accepted joyfully. Every day Luigi led his flock to graze on the road +that leads from Palestrina to Borgo; every day, at nine o’clock in the +morning, the priest and the boy sat down on a bank by the wayside, and +the little shepherd took his lesson out of the priest’s breviary. At +the end of three months he had learned to read. This was not enough—he +must now learn to write. The priest had a writing teacher at Rome make +three alphabets—one large, one middling, and one small; and pointed out +to him that by the help of a sharp instrument he could trace the +letters on a slate, and thus learn to write. The same evening, when the +flock was safe at the farm, the little Luigi hastened to the smith at +Palestrina, took a large nail, heated and sharpened it, and formed a +sort of stylus. The next morning he gathered an armful of pieces of +slate and began. At the end of three months he had learned to write. +The curate, astonished at his quickness and intelligence, made him a +present of pens, paper, and a penknife. This demanded new effort, but +nothing compared to the first; at the end of a week he wrote as well +with this pen as with the stylus. The curate related the incident to +the Count of San-Felice, who sent for the little shepherd, made him +read and write before him, ordered his attendant to let him eat with +the domestics, and to give him two piastres a month. With this, Luigi +purchased books and pencils. He applied his imitative powers to +everything, and, like Giotto, when young, he drew on his slate sheep, +houses, and trees. Then, with his knife, he began to carve all sorts of +objects in wood; it was thus that Pinelli, the famous sculptor, had +commenced. + +20105m + + + +“A girl of six or seven—that is, a little younger than Vampa—tended +sheep on a farm near Palestrina; she was an orphan, born at Valmontone +and was named Teresa. The two children met, sat down near each other, +let their flocks mingle together, played, laughed, and conversed +together; in the evening they separated the Count of San-Felice’s flock +from those of Baron Cervetri, and the children returned to their +respective farms, promising to meet the next morning. The next day they +kept their word, and thus they grew up together. Vampa was twelve, and +Teresa eleven. And yet their natural disposition revealed itself. +Beside his taste for the fine arts, which Luigi had carried as far as +he could in his solitude, he was given to alternating fits of sadness +and enthusiasm, was often angry and capricious, and always sarcastic. +None of the lads of Pampinara, Palestrina, or Valmontone had been able +to gain any influence over him or even to become his companion. His +disposition (always inclined to exact concessions rather than to make +them) kept him aloof from all friendships. Teresa alone ruled by a +look, a word, a gesture, this impetuous character, which yielded +beneath the hand of a woman, and which beneath the hand of a man might +have broken, but could never have been bended. Teresa was lively and +gay, but coquettish to excess. The two piastres that Luigi received +every month from the Count of San-Felice’s steward, and the price of +all the little carvings in wood he sold at Rome, were expended in +ear-rings, necklaces, and gold hairpins. So that, thanks to her +friend’s generosity, Teresa was the most beautiful and the best-attired +peasant near Rome. + +“The two children grew up together, passing all their time with each +other, and giving themselves up to the wild ideas of their different +characters. Thus, in all their dreams, their wishes, and their +conversations, Vampa saw himself the captain of a vessel, general of an +army, or governor of a province. Teresa saw herself rich, superbly +attired, and attended by a train of liveried domestics. Then, when they +had thus passed the day in building castles in the air, they separated +their flocks, and descended from the elevation of their dreams to the +reality of their humble position. + +“One day the young shepherd told the count’s steward that he had seen a +wolf come out of the Sabine mountains, and prowl around his flock. The +steward gave him a gun; this was what Vampa longed for. This gun had an +excellent barrel, made at Brescia, and carrying a ball with the +precision of an English rifle; but one day the count broke the stock, +and had then cast the gun aside. This, however, was nothing to a +sculptor like Vampa; he examined the broken stock, calculated what +change it would require to adapt the gun to his shoulder, and made a +fresh stock, so beautifully carved that it would have fetched fifteen +or twenty piastres, had he chosen to sell it. But nothing could be +farther from his thoughts. + +“For a long time a gun had been the young man’s greatest ambition. In +every country where independence has taken the place of liberty, the +first desire of a manly heart is to possess a weapon, which at once +renders him capable of defence or attack, and, by rendering its owner +terrible, often makes him feared. From this moment Vampa devoted all +his leisure time to perfecting himself in the use of his precious +weapon; he purchased powder and ball, and everything served him for a +mark—the trunk of some old and moss-grown olive-tree, that grew on the +Sabine mountains; the fox, as he quitted his earth on some marauding +excursion; the eagle that soared above their heads: and thus he soon +became so expert, that Teresa overcame the terror she at first felt at +the report, and amused herself by watching him direct the ball wherever +he pleased, with as much accuracy as if he placed it by hand. + +20107m + + + +“One evening a wolf emerged from a pine-wood near which they were +usually stationed, but the wolf had scarcely advanced ten yards ere he +was dead. Proud of this exploit, Vampa took the dead animal on his +shoulders, and carried him to the farm. These exploits had gained Luigi +considerable reputation. The man of superior abilities always finds +admirers, go where he will. He was spoken of as the most adroit, the +strongest, and the most courageous _contadino_ for ten leagues around; +and although Teresa was universally allowed to be the most beautiful +girl of the Sabines, no one had ever spoken to her of love, because it +was known that she was beloved by Vampa. And yet the two young people +had never declared their affection; they had grown together like two +trees whose roots are mingled, whose branches intertwined, and whose +intermingled perfume rises to the heavens. Only their wish to see each +other had become a necessity, and they would have preferred death to a +day’s separation. + +“Teresa was sixteen, and Vampa seventeen. About this time, a band of +brigands that had established itself in the Lepini mountains began to +be much spoken of. The brigands have never been really extirpated from +the neighborhood of Rome. Sometimes a chief is wanted, but when a chief +presents himself he rarely has to wait long for a band of followers. + +“The celebrated Cucumetto, pursued in the Abruzzo, driven out of the +kingdom of Naples, where he had carried on a regular war, had crossed +the Garigliano, like Manfred, and had taken refuge on the banks of the +Amasine between Sonnino and Juperno. He strove to collect a band of +followers, and followed the footsteps of Decesaris and Gasparone, whom +he hoped to surpass. Many young men of Palestrina, Frascati, and +Pampinara had disappeared. Their disappearance at first caused much +disquietude; but it was soon known that they had joined Cucumetto. +After some time Cucumetto became the object of universal attention; the +most extraordinary traits of ferocious daring and brutality were +related of him. + +“One day he carried off a young girl, the daughter of a surveyor of +Frosinone. The bandit’s laws are positive; a young girl belongs first +to him who carries her off, then the rest draw lots for her, and she is +abandoned to their brutality until death relieves her sufferings. When +their parents are sufficiently rich to pay a ransom, a messenger is +sent to negotiate; the prisoner is hostage for the security of the +messenger; should the ransom be refused, the prisoner is irrevocably +lost. The young girl’s lover was in Cucumetto’s troop; his name was +Carlini. When she recognized her lover, the poor girl extended her arms +to him, and believed herself safe; but Carlini felt his heart sink, for +he but too well knew the fate that awaited her. However, as he was a +favorite with Cucumetto, as he had for three years faithfully served +him, and as he had saved his life by shooting a dragoon who was about +to cut him down, he hoped the chief would have pity on him. He took +Cucumetto one side, while the young girl, seated at the foot of a huge +pine that stood in the centre of the forest, made a veil of her +picturesque head-dress to hide her face from the lascivious gaze of the +bandits. There he told the chief all—his affection for the prisoner, +their promises of mutual fidelity, and how every night, since he had +been near, they had met in some neighboring ruins. + +20109m + + + +“It so happened that night that Cucumetto had sent Carlini to a +village, so that he had been unable to go to the place of meeting. +Cucumetto had been there, however, by accident, as he said, and had +carried the maiden off. Carlini besought his chief to make an exception +in Rita’s favor, as her father was rich, and could pay a large ransom. +Cucumetto seemed to yield to his friend’s entreaties, and bade him find +a shepherd to send to Rita’s father at Frosinone. + +“Carlini flew joyfully to Rita, telling her she was saved, and bidding +her write to her father, to inform him what had occurred, and that her +ransom was fixed at three hundred piastres. Twelve hours’ delay was all +that was granted—that is, until nine the next morning. The instant the +letter was written, Carlini seized it, and hastened to the plain to +find a messenger. He found a young shepherd watching his flock. The +natural messengers of the bandits are the shepherds who live between +the city and the mountains, between civilized and savage life. The boy +undertook the commission, promising to be in Frosinone in less than an +hour. Carlini returned, anxious to see his mistress, and announce the +joyful intelligence. He found the troop in the glade, supping off the +provisions exacted as contributions from the peasants; but his eye +vainly sought Rita and Cucumetto among them. + +“He inquired where they were, and was answered by a burst of laughter. +A cold perspiration burst from every pore, and his hair stood on end. +He repeated his question. One of the bandits rose, and offered him a +glass filled with Orvietto, saying, ‘To the health of the brave +Cucumetto and the fair Rita.’ At this moment Carlini heard a woman’s +cry; he divined the truth, seized the glass, broke it across the face +of him who presented it, and rushed towards the spot whence the cry +came. After a hundred yards he turned the corner of the thicket; he +found Rita senseless in the arms of Cucumetto. At the sight of Carlini, +Cucumetto rose, a pistol in each hand. The two brigands looked at each +other for a moment—the one with a smile of lasciviousness on his lips, +the other with the pallor of death on his brow. A terrible battle +between the two men seemed imminent; but by degrees Carlini’s features +relaxed, his hand, which had grasped one of the pistols in his belt, +fell to his side. Rita lay between them. The moon lighted the group. + +“‘Well,’ said Cucumetto, ‘have you executed your commission?’ + +“‘Yes, captain,’ returned Carlini. ‘At nine o’clock tomorrow Rita’s +father will be here with the money.’ + +“‘It is well; in the meantime, we will have a merry night; this young +girl is charming, and does credit to your taste. Now, as I am not +egotistical, we will return to our comrades and draw lots for her.’ + +“‘You have determined, then, to abandon her to the common law?’ said +Carlini. + +“‘Why should an exception be made in her favor?’ + +“‘I thought that my entreaties——’ + +“‘What right have you, any more than the rest, to ask for an +exception?’ + +“‘It is true.’ + +“‘But never mind,’ continued Cucumetto, laughing, ‘sooner or later your +turn will come.’ Carlini’s teeth clenched convulsively. + +“‘Now, then,’ said Cucumetto, advancing towards the other bandits, ‘are +you coming?’ + +“‘I follow you.’ + +20111m + + + +“Cucumetto departed, without losing sight of Carlini, for, doubtless, +he feared lest he should strike him unawares; but nothing betrayed a +hostile design on Carlini’s part. He was standing, his arms folded, +near Rita, who was still insensible. Cucumetto fancied for a moment the +young man was about to take her in his arms and fly; but this mattered +little to him now Rita had been his; and as for the money, three +hundred piastres distributed among the band was so small a sum that he +cared little about it. He continued to follow the path to the glade; +but, to his great surprise, Carlini arrived almost as soon as himself. + +“‘Let us draw lots! let us draw lots!’ cried all the brigands, when +they saw the chief. + +“Their demand was fair, and the chief inclined his head in sign of +acquiescence. The eyes of all shone fiercely as they made their demand, +and the red light of the fire made them look like demons. The names of +all, including Carlini, were placed in a hat, and the youngest of the +band drew forth a ticket; the ticket bore the name of Diavolaccio. He +was the man who had proposed to Carlini the health of their chief, and +to whom Carlini replied by breaking the glass across his face. A large +wound, extending from the temple to the mouth, was bleeding profusely. +Diavolaccio, seeing himself thus favored by fortune, burst into a loud +laugh. + +“‘Captain,’ said he, ‘just now Carlini would not drink your health when +I proposed it to him; propose mine to him, and let us see if he will be +more condescending to you than to me.’ + +“Everyone expected an explosion on Carlini’s part; but to their great +surprise, he took a glass in one hand and a flask in the other, and +filling it,— + +“‘Your health, Diavolaccio,’ said he calmly, and he drank it off, +without his hand trembling in the least. Then sitting down by the fire, +‘My supper,’ said he; ‘my expedition has given me an appetite.’ + +“‘Well done, Carlini!’ cried the brigands; ‘that is acting like a good +fellow;’ and they all formed a circle round the fire, while Diavolaccio +disappeared. + +“Carlini ate and drank as if nothing had happened. The bandits looked +on with astonishment at this singular conduct until they heard +footsteps. They turned round, and saw Diavolaccio bearing the young +girl in his arms. Her head hung back, and her long hair swept the +ground. As they entered the circle, the bandits could perceive, by the +firelight, the unearthly pallor of the young girl and of Diavolaccio. +This apparition was so strange and so solemn, that everyone rose, with +the exception of Carlini, who remained seated, and ate and drank +calmly. Diavolaccio advanced amidst the most profound silence, and laid +Rita at the captain’s feet. Then everyone could understand the cause of +the unearthly pallor in the young girl and the bandit. A knife was +plunged up to the hilt in Rita’s left breast. Everyone looked at +Carlini; the sheath at his belt was empty. + +“‘Ah, ah,’ said the chief, ‘I now understand why Carlini stayed +behind.’ + +“All savage natures appreciate a desperate deed. No other of the +bandits would, perhaps, have done the same; but they all understood +what Carlini had done. + +“‘Now, then,’ cried Carlini, rising in his turn, and approaching the +corpse, his hand on the butt of one of his pistols, ‘does anyone +dispute the possession of this woman with me?’ + +“‘No,’ returned the chief, ‘she is thine.’ + +“Carlini raised her in his arms, and carried her out of the circle of +firelight. Cucumetto placed his sentinels for the night, and the +bandits wrapped themselves in their cloaks, and lay down before the +fire. At midnight the sentinel gave the alarm, and in an instant all +were on the alert. It was Rita’s father, who brought his daughter’s +ransom in person. + +“‘Here,’ said he, to Cucumetto, ‘here are three hundred piastres; give +me back my child. + +“But the chief, without taking the money, made a sign to him to follow. +The old man obeyed. They both advanced beneath the trees, through whose +branches streamed the moonlight. Cucumetto stopped at last, and pointed +to two persons grouped at the foot of a tree. + +“‘There,’ said he, ‘demand thy child of Carlini; he will tell thee what +has become of her;’ and he returned to his companions. + +“The old man remained motionless; he felt that some great and +unforeseen misfortune hung over his head. At length he advanced toward +the group, the meaning of which he could not comprehend. As he +approached, Carlini raised his head, and the forms of two persons +became visible to the old man’s eyes. A woman lay on the ground, her +head resting on the knees of a man, who was seated by her; as he raised +his head, the woman’s face became visible. The old man recognized his +child, and Carlini recognized the old man. + +“‘I expected thee,’ said the bandit to Rita’s father. + +“‘Wretch!’ returned the old man, ‘what hast thou done?’ and he gazed +with terror on Rita, pale and bloody, a knife buried in her bosom. A +ray of moonlight poured through the trees, and lighted up the face of +the dead. + +“‘Cucumetto had violated thy daughter,’ said the bandit; ‘I loved her, +therefore I slew her; for she would have served as the sport of the +whole band.’ The old man spoke not, and grew pale as death. ‘Now,’ +continued Carlini, ‘if I have done wrongly, avenge her;’ and +withdrawing the knife from the wound in Rita’s bosom, he held it out to +the old man with one hand, while with the other he tore open his vest. + +“‘Thou hast done well!’ returned the old man in a hoarse voice; +‘embrace me, my son.’ + +20115m + + + +Carlini threw himself, sobbing like a child, into the arms of his +mistress’s father. These were the first tears the man of blood had ever +wept. + +“‘Now,’ said the old man, ‘aid me to bury my child.’ Carlini fetched +two pickaxes; and the father and the lover began to dig at the foot of +a huge oak, beneath which the young girl was to repose. When the grave +was formed, the father embraced her first, and then the lover; +afterwards, one taking the head, the other the feet, they placed her in +the grave. Then they knelt on each side of the grave, and said the +prayers of the dead. Then, when they had finished, they cast the earth +over the corpse, until the grave was filled. Then, extending his hand, +the old man said; ‘I thank you, my son; and now leave me alone.’ + +“‘Yet——’ replied Carlini. + +“‘Leave me, I command you.’ + +“Carlini obeyed, rejoined his comrades, folded himself in his cloak, +and soon appeared to sleep as soundly as the rest. It had been resolved +the night before to change their encampment. An hour before daybreak, +Cucumetto aroused his men, and gave the word to march. But Carlini +would not quit the forest, without knowing what had become of Rita’s +father. He went toward the place where he had left him. He found the +old man suspended from one of the branches of the oak which shaded his +daughter’s grave. He then took an oath of bitter vengeance over the +dead body of the one and the tomb of the other. But he was unable to +complete this oath, for two days afterwards, in an encounter with the +Roman carbineers, Carlini was killed. There was some surprise, however, +that, as he was with his face to the enemy, he should have received a +ball between his shoulders. That astonishment ceased when one of the +brigands remarked to his comrades that Cucumetto was stationed ten +paces in Carlini’s rear when he fell. On the morning of the departure +from the forest of Frosinone he had followed Carlini in the darkness, +and heard this oath of vengeance, and, like a wise man, anticipated it. + +“They told ten other stories of this bandit chief, each more singular +than the other. Thus, from Fondi to Perusia, everyone trembles at the +name of Cucumetto. + +“These narratives were frequently the theme of conversation between +Luigi and Teresa. The young girl trembled very much at hearing the +stories; but Vampa reassured her with a smile, tapping the butt of his +good fowling-piece, which threw its ball so well; and if that did not +restore her courage, he pointed to a crow, perched on some dead branch, +took aim, touched the trigger, and the bird fell dead at the foot of +the tree. Time passed on, and the two young people had agreed to be +married when Vampa should be twenty and Teresa nineteen years of age. +They were both orphans, and had only their employers’ leave to ask, +which had been already sought and obtained. One day when they were +talking over their plans for the future, they heard two or three +reports of firearms, and then suddenly a man came out of the wood, near +which the two young persons used to graze their flocks, and hurried +towards them. When he came within hearing, he exclaimed: + +‘I am pursued; can you conceal me?’ + +“They knew full well that this fugitive must be a bandit; but there is +an innate sympathy between the Roman brigand and the Roman peasant and +the latter is always ready to aid the former. Vampa, without saying a +word, hastened to the stone that closed up the entrance to their +grotto, drew it away, made a sign to the fugitive to take refuge there, +in a retreat unknown to everyone, closed the stone upon him, and then +went and resumed his seat by Teresa. Instantly afterwards four +carbineers, on horseback, appeared on the edge of the wood; three of +them appeared to be looking for the fugitive, while the fourth dragged +a brigand prisoner by the neck. The three carbineers looked about +carefully on every side, saw the young peasants, and galloping up, +began to question them. They had seen no one. + +“‘That is very annoying,’ said the brigadier; for the man we are +looking for is the chief.’ + +“‘Cucumetto?’ cried Luigi and Teresa at the same moment. + +“‘Yes,’ replied the brigadier; ‘and as his head is valued at a thousand +Roman crowns, there would have been five hundred for you, if you had +helped us to catch him.’ The two young persons exchanged looks. The +brigadier had a moment’s hope. Five hundred Roman crowns are three +thousand lire, and three thousand lire are a fortune for two poor +orphans who are going to be married. + +“‘Yes, it is very annoying,’ said Vampa; ‘but we have not seen him.’ + +“Then the carbineers scoured the country in different directions, but +in vain; then, after a time, they disappeared. Vampa then removed the +stone, and Cucumetto came out. Through the crevices in the granite he +had seen the two young peasants talking with the carbineers, and +guessed the subject of their parley. He had read in the countenances of +Luigi and Teresa their steadfast resolution not to surrender him, and +he drew from his pocket a purse full of gold, which he offered to them. +But Vampa raised his head proudly; as to Teresa, her eyes sparkled when +she thought of all the fine gowns and gay jewellery she could buy with +this purse of gold. + +“Cucumetto was a cunning fiend, and had assumed the form of a brigand +instead of a serpent, and this look from Teresa showed to him that she +was a worthy daughter of Eve, and he returned to the forest, pausing +several times on his way, under the pretext of saluting his protectors. + +“Several days elapsed, and they neither saw nor heard of Cucumetto. The +time of the Carnival was at hand. The Count of San-Felice announced a +grand masked ball, to which all that were distinguished in Rome were +invited. Teresa had a great desire to see this ball. Luigi asked +permission of his protector, the steward, that she and he might be +present amongst the servants of the house. This was granted. The ball +was given by the Count for the particular pleasure of his daughter +Carmela, whom he adored. Carmela was precisely the age and figure of +Teresa, and Teresa was as handsome as Carmela. On the evening of the +ball Teresa was attired in her best, her most brilliant ornaments in +her hair, and gayest glass beads,—she was in the costume of the women +of Frascati. Luigi wore the very picturesque garb of the Roman peasant +at holiday time. They both mingled, as they had leave to do, with the +servants and peasants. + +“The _festa_ was magnificent; not only was the villa brilliantly +illuminated, but thousands of colored lanterns were suspended from the +trees in the garden; and very soon the palace overflowed to the +terraces, and the terraces to the garden-walks. At each cross-path was +an orchestra, and tables spread with refreshments; the guests stopped, +formed quadrilles, and danced in any part of the grounds they pleased. +Carmela was attired like a woman of Sonnino. Her cap was embroidered +with pearls, the pins in her hair were of gold and diamonds, her girdle +was of Turkey silk, with large embroidered flowers, her bodice and +skirt were of cashmere, her apron of Indian muslin, and the buttons of +her corset were of jewels. Two of her companions were dressed, the one +as a woman of Nettuno, and the other as a woman of La Riccia. Four +young men of the richest and noblest families of Rome accompanied them +with that Italian freedom which has not its parallel in any other +country in the world. They were attired as peasants of Albano, +Velletri, Civita-Castellana, and Sora. We need hardly add that these +peasant costumes, like those of the young women, were brilliant with +gold and jewels. + +“Carmela wished to form a quadrille, but there was one lady wanting. +Carmela looked all around her, but not one of the guests had a costume +similar to her own, or those of her companions. The Count of San-Felice +pointed out Teresa, who was hanging on Luigi’s arm in a group of +peasants. + +“‘Will you allow me, father?’ said Carmela. + +“‘Certainly,’ replied the count, ‘are we not in Carnival time?’ + +“Carmela turned towards the young man who was talking with her, and +saying a few words to him, pointed with her finger to Teresa. The young +man looked, bowed in obedience, and then went to Teresa, and invited +her to dance in a quadrille directed by the count’s daughter. Teresa +felt a flush pass over her face; she looked at Luigi, who could not +refuse his assent. Luigi slowly relinquished Teresa’s arm, which he had +held beneath his own, and Teresa, accompanied by her elegant cavalier, +took her appointed place with much agitation in the aristocratic +quadrille. Certainly, in the eyes of an artist, the exact and strict +costume of Teresa had a very different character from that of Carmela +and her companions; and Teresa was frivolous and coquettish, and thus +the embroidery and muslins, the cashmere waist-girdles, all dazzled +her, and the reflection of sapphires and diamonds almost turned her +giddy brain. + +“Luigi felt a sensation hitherto unknown arising in his mind. It was +like an acute pain which gnawed at his heart, and then thrilled through +his whole body. He followed with his eye each movement of Teresa and +her cavalier; when their hands touched, he felt as though he should +swoon; every pulse beat with violence, and it seemed as though a bell +were ringing in his ears. When they spoke, although Teresa listened +timidly and with downcast eyes to the conversation of her cavalier, as +Luigi could read in the ardent looks of the good-looking young man that +his language was that of praise, it seemed as if the whole world was +turning round with him, and all the voices of hell were whispering in +his ears ideas of murder and assassination. Then fearing that his +paroxysm might get the better of him, he clutched with one hand the +branch of a tree against which he was leaning, and with the other +convulsively grasped the dagger with a carved handle which was in his +belt, and which, unwittingly, he drew from the scabbard from time to +time. + +“Luigi was jealous! + +“He felt that, influenced by her ambitions and coquettish disposition, +Teresa might escape him. + +“The young peasant girl, at first timid and scared, soon recovered +herself. We have said that Teresa was handsome, but this is not all; +Teresa was endowed with all those wild graces which are so much more +potent than our affected and studied elegancies. She had almost all the +honors of the quadrille, and if she were envious of the Count of +San-Felice’s daughter, we will not undertake to say that Carmela was +not jealous of her. And with overpowering compliments her handsome +cavalier led her back to the place whence he had taken her, and where +Luigi awaited her. Twice or thrice during the dance the young girl had +glanced at Luigi, and each time she saw that he was pale and that his +features were agitated, once even the blade of his knife, half drawn +from its sheath, had dazzled her eyes with its sinister glare. Thus, it +was almost tremblingly that she resumed her lover’s arm. The quadrille +had been most perfect, and it was evident there was a great demand for +a repetition, Carmela alone objecting to it, but the Count of +San-Felice besought his daughter so earnestly, that she acceded. + +“One of the cavaliers then hastened to invite Teresa, without whom it +was impossible for the quadrille to be formed, but the young girl had +disappeared. + +“The truth was, that Luigi had not felt the strength to support another +such trial, and, half by persuasion and half by force, he had removed +Teresa toward another part of the garden. Teresa had yielded in spite +of herself, but when she looked at the agitated countenance of the +young man, she understood by his silence and trembling voice that +something strange was passing within him. She herself was not exempt +from internal emotion, and without having done anything wrong, yet +fully comprehended that Luigi was right in reproaching her. Why, she +did not know, but yet she did not the less feel that these reproaches +were merited. + +“However, to Teresa’s great astonishment, Luigi remained mute, and not +a word escaped his lips the rest of the evening. When the chill of the +night had driven away the guests from the gardens, and the gates of the +villa were closed on them for the _festa_ in-doors, he took Teresa +quite away, and as he left her at her home, he said: + +“‘Teresa, what were you thinking of as you danced opposite the young +Countess of San-Felice?’ + +“‘I thought,’ replied the young girl, with all the frankness of her +nature, ‘that I would give half my life for a costume such as she +wore.’ + +“‘And what said your cavalier to you?’ + +“‘He said it only depended on myself to have it, and I had only one +word to say.’ + +“‘He was right,’ said Luigi. ‘Do you desire it as ardently as you say?’ + +“‘Yes.’ + +“‘Well, then, you shall have it!’ + +“The young girl, much astonished, raised her head to look at him, but +his face was so gloomy and terrible that her words froze to her lips. +As Luigi spoke thus, he left her. Teresa followed him with her eyes +into the darkness as long as she could, and when he had quite +disappeared, she went into the house with a sigh. + +20121m + + + +“That night a memorable event occurred, due, no doubt, to the +imprudence of some servant who had neglected to extinguish the lights. +The Villa of San-Felice took fire in the rooms adjoining the very +apartment of the lovely Carmela. Awakened in the night by the light of +the flames, she sprang out of bed, wrapped herself in a dressing-gown, +and attempted to escape by the door, but the corridor by which she +hoped to fly was already a prey to the flames. She then returned to her +room, calling for help as loudly as she could, when suddenly her +window, which was twenty feet from the ground, was opened, a young +peasant jumped into the chamber, seized her in his arms, and with +superhuman skill and strength conveyed her to the turf of the +grass-plot, where she fainted. When she recovered, her father was by +her side. All the servants surrounded her, offering her assistance. An +entire wing of the villa was burnt down; but what of that, as long as +Carmela was safe and uninjured? + +“Her preserver was everywhere sought for, but he did not appear; he was +inquired after, but no one had seen him. Carmela was greatly troubled +that she had not recognized him. + +“As the count was immensely rich, excepting the danger Carmela had +run,—and the marvellous manner in which she had escaped, made that +appear to him rather a favor of Providence than a real misfortune,—the +loss occasioned by the conflagration was to him but a trifle. + +“The next day, at the usual hour, the two young peasants were on the +borders of the forest. Luigi arrived first. He came toward Teresa in +high spirits, and seemed to have completely forgotten the events of the +previous evening. The young girl was very pensive, but seeing Luigi so +cheerful, she on her part assumed a smiling air, which was natural to +her when she was not excited or in a passion. + +“Luigi took her arm beneath his own, and led her to the door of the +grotto. Then he paused. The young girl, perceiving that there was +something extraordinary, looked at him steadfastly. + +“‘Teresa,’ said Luigi, ‘yesterday evening you told me you would give +all the world to have a costume similar to that of the count’s +daughter.’ + +“‘Yes,’ replied Teresa with astonishment; ‘but I was mad to utter such +a wish.’ + +“‘And I replied, “Very well, you shall have it.”’ + +“‘Yes,’ replied the young girl, whose astonishment increased at every +word uttered by Luigi, ‘but of course your reply was only to please +me.’ + +“‘I have promised no more than I have given you, Teresa,’ said Luigi +proudly. ‘Go into the grotto and dress yourself.’ + +“At these words he drew away the stone, and showed Teresa the grotto, +lighted up by two wax lights, which burnt on each side of a splendid +mirror; on a rustic table, made by Luigi, were spread out the pearl +necklace and the diamond pins, and on a chair at the side was laid the +rest of the costume. + +“Teresa uttered a cry of joy, and, without inquiring whence this attire +came, or even thanking Luigi, darted into the grotto, transformed into +a dressing-room. + +“Luigi pushed the stone behind her, for on the crest of a small +adjacent hill which cut off the view toward Palestrina, he saw a +traveller on horseback, stopping a moment, as if uncertain of his road, +and thus presenting against the blue sky that perfect outline which is +peculiar to distant objects in southern climes. When he saw Luigi, he +put his horse into a gallop and advanced toward him. + +“Luigi was not mistaken. The traveller, who was going from Palestrina +to Tivoli, had mistaken his way; the young man directed him; but as at +a distance of a quarter of a mile the road again divided into three +ways, and on reaching these the traveller might again stray from his +route, he begged Luigi to be his guide. + +“Luigi threw his cloak on the ground, placed his carbine on his +shoulder, and freed from his heavy covering, preceded the traveller +with the rapid step of a mountaineer, which a horse can scarcely keep +up with. In ten minutes Luigi and the traveller reached the +cross-roads. On arriving there, with an air as majestic as that of an +emperor, he stretched his hand towards that one of the roads which the +traveller was to follow. + +“‘That is your road, excellency, and now you cannot again mistake.’ + +“‘And here is your recompense,’ said the traveller, offering the young +herdsman some small pieces of money. + +“‘Thank you,’ said Luigi, drawing back his hand; ‘I render a service, I +do not sell it.’ + +“‘Well,’ replied the traveller, who seemed used to this difference +between the servility of a man of the cities and the pride of the +mountaineer, ‘if you refuse wages, you will, perhaps, accept a gift.’ + +“‘Ah, yes, that is another thing.’ + +“‘Then,’ said the traveller, ‘take these two Venetian sequins and give +them to your bride, to make herself a pair of earrings.’ + +“‘And then do you take this poniard,’ said the young herdsman; ‘you +will not find one better carved between Albano and Civita-Castellana.’ + +“‘I accept it,’ answered the traveller, ‘but then the obligation will +be on my side, for this poniard is worth more than two sequins.’ + +“‘For a dealer perhaps; but for me, who engraved it myself, it is +hardly worth a piastre.’ + +“‘What is your name?’ inquired the traveller. + +“‘Luigi Vampa,’ replied the shepherd, with the same air as he would +have replied, Alexander, King of Macedon. ‘And yours?’ + +“‘I,’ said the traveller, ‘am called Sinbad the Sailor.’” + +Franz d’Épinay started with surprise. + +“Sinbad the Sailor?” he said. + +“Yes,” replied the narrator; “that was the name which the traveller +gave to Vampa as his own.” + +“Well, and what may you have to say against this name?” inquired +Albert; “it is a very pretty name, and the adventures of the gentleman +of that name amused me very much in my youth, I must confess.” + +Franz said no more. The name of Sinbad the Sailor, as may well be +supposed, awakened in him a world of recollections, as had the name of +the Count of Monte Cristo on the previous evening. + +“Proceed!” said he to the host. + +“Vampa put the two sequins haughtily into his pocket, and slowly +returned by the way he had gone. As he came within two or three hundred +paces of the grotto, he thought he heard a cry. He listened to know +whence this sound could proceed. A moment afterwards he thought he +heard his own name pronounced distinctly. + +“The cry proceeded from the grotto. He bounded like a chamois, cocking +his carbine as he went, and in a moment reached the summit of a hill +opposite to that on which he had perceived the traveller. Three cries +for help came more distinctly to his ear. He cast his eyes around him +and saw a man carrying off Teresa, as Nessus, the centaur, carried +Deianira. + +“This man, who was hastening towards the wood, was already +three-quarters of the way on the road from the grotto to the forest. +Vampa measured the distance; the man was at least two hundred paces in +advance of him, and there was not a chance of overtaking him. The young +shepherd stopped, as if his feet had been rooted to the ground; then he +put the butt of his carbine to his shoulder, took aim at the ravisher, +followed him for a second in his track, and then fired. + +“The ravisher stopped suddenly, his knees bent under him, and he fell +with Teresa in his arms. The young girl rose instantly, but the man lay +on the earth struggling in the agonies of death. Vampa then rushed +towards Teresa; for at ten paces from the dying man her legs had failed +her, and she had dropped on her knees, so that the young man feared +that the ball that had brought down his enemy, had also wounded his +betrothed. + +“Fortunately, she was unscathed, and it was fright alone that had +overcome Teresa. When Luigi had assured himself that she was safe and +unharmed, he turned towards the wounded man. He had just expired, with +clenched hands, his mouth in a spasm of agony, and his hair on end in +the sweat of death. His eyes remained open and menacing. Vampa +approached the corpse, and recognized Cucumetto. + +“From the day on which the bandit had been saved by the two young +peasants, he had been enamoured of Teresa, and had sworn she should be +his. From that time he had watched them, and profiting by the moment +when her lover had left her alone, had carried her off, and believed he +at length had her in his power, when the ball, directed by the unerring +skill of the young herdsman, had pierced his heart. Vampa gazed on him +for a moment without betraying the slightest emotion; while, on the +contrary, Teresa, shuddering in every limb, dared not approach the +slain ruffian but by degrees, and threw a hesitating glance at the dead +body over the shoulder of her lover. Suddenly Vampa turned toward his +mistress: + +“‘Ah,’ said he—‘good, good! You are dressed; it is now my turn to dress +myself.’ + +20125m + + + +“Teresa was clothed from head to foot in the garb of the Count of +San-Felice’s daughter. Vampa took Cucumetto’s body in his arms and +conveyed it to the grotto, while in her turn Teresa remained outside. +If a second traveller had passed, he would have seen a strange thing,—a +shepherdess watching her flock, clad in a cashmere grown, with +ear-rings and necklace of pearls, diamond pins, and buttons of +sapphires, emeralds, and rubies. He would, no doubt, have believed that +he had returned to the times of Florian, and would have declared, on +reaching Paris, that he had met an Alpine shepherdess seated at the +foot of the Sabine Hill. + +“At the end of a quarter of an hour Vampa quitted the grotto; his +costume was no less elegant than that of Teresa. He wore a vest of +garnet-colored velvet, with buttons of cut gold; a silk waistcoat +covered with embroidery; a Roman scarf tied round his neck; a +cartridge-box worked with gold, and red and green silk; sky-blue velvet +breeches, fastened above the knee with diamond buckles; garters of +deerskin, worked with a thousand arabesques, and a hat whereon hung +ribbons of all colors; two watches hung from his girdle, and a splendid +poniard was in his belt. + +“Teresa uttered a cry of admiration. Vampa in this attire resembled a +painting by Léopold Robert or Schnetz. He had assumed the entire +costume of Cucumetto. The young man saw the effect produced on his +betrothed, and a smile of pride passed over his lips. + +“‘Now,’ he said to Teresa, ‘are you ready to share my fortune, whatever +it may be?’ + +“‘Oh, yes!’ exclaimed the young girl enthusiastically. + +“‘And follow me wherever I go?’ + +“‘To the world’s end.’ + +“‘Then take my arm, and let us on; we have no time to lose.’ + +“The young girl did so without questioning her lover as to where he was +conducting her, for he appeared to her at this moment as handsome, +proud, and powerful as a god. They went towards the forest, and soon +entered it. + +“We need scarcely say that all the paths of the mountain were known to +Vampa; he therefore went forward without a moment’s hesitation, +although there was no beaten track, but he knew his path by looking at +the trees and bushes, and thus they kept on advancing for nearly an +hour and a half. At the end of this time they had reached the thickest +part of the forest. A torrent, whose bed was dry, led into a deep +gorge. Vampa took this wild road, which, enclosed between two ridges, +and shadowed by the tufted umbrage of the pines, seemed, but for the +difficulties of its descent, that path to Avernus of which Virgil +speaks. Teresa had become alarmed at the wild and deserted look of the +plain around her, and pressed closely against her guide, not uttering a +syllable; but as she saw him advance with even step and composed +countenance, she endeavored to repress her emotion. + +“Suddenly, about ten paces from them, a man advanced from behind a tree +and aimed at Vampa. + +“‘Not another step,’ he said, ‘or you are a dead man.’ + +“‘What, then,’ said Vampa, raising his hand with a gesture of disdain, +while Teresa, no longer able to restrain her alarm, clung closely to +him, ‘do wolves rend each other?’ + +“‘Who are you?’ inquired the sentinel. + +“‘I am Luigi Vampa, shepherd of the San-Felice farm.’ + +“‘What do you want?’ + +“‘I would speak with your companions who are in the glade at Rocca +Bianca.’ + +“‘Follow me, then,’ said the sentinel; ‘or, as you know your way, go +first.’ + +“Vampa smiled disdainfully at this precaution on the part of the +bandit, went before Teresa, and continued to advance with the same firm +and easy step as before. At the end of ten minutes the bandit made them +a sign to stop. The two young persons obeyed. Then the bandit thrice +imitated the cry of a crow; a croak answered this signal. + +“‘Good!’ said the sentry, ‘you may now go on.’ + +“Luigi and Teresa again set forward; as they went on Teresa clung +tremblingly to her lover at the sight of weapons and the glistening of +carbines through the trees. The retreat of Rocca Bianca was at the top +of a small mountain, which no doubt in former days had been a +volcano—an extinct volcano before the days when Remus and Romulus had +deserted Alba to come and found the city of Rome. + +“Teresa and Luigi reached the summit, and all at once found themselves +in the presence of twenty bandits. + +“‘Here is a young man who seeks and wishes to speak to you,’ said the +sentinel. + +“‘What has he to say?’ inquired the young man who was in command in the +chief’s absence. + +“‘I wish to say that I am tired of a shepherd’s life,’ was Vampa’s +reply. + +“‘Ah, I understand,’ said the lieutenant; ‘and you seek admittance into +our ranks?’ + +“‘Welcome!’ cried several bandits from Ferrusino, Pampinara, and +Anagni, who had recognized Luigi Vampa. + +“‘Yes, but I came to ask something more than to be your companion.’ + +“‘And what may that be?’ inquired the bandits with astonishment. + +“‘I come to ask to be your captain,’ said the young man. + +“The bandits shouted with laughter. + +“‘And what have you done to aspire to this honor?’ demanded the +lieutenant. + +“‘I have killed your chief, Cucumetto, whose dress I now wear; and I +set fire to the villa San-Felice to procure a wedding-dress for my +betrothed.’ + +“An hour afterwards Luigi Vampa was chosen captain, vice Cucumetto, +deceased.” + +20129m + + + +“Well, my dear Albert,” said Franz, turning towards his friend; “what +think you of citizen Luigi Vampa?” + +“I say he is a myth,” replied Albert, “and never had an existence.” + +“And what may a myth be?” inquired Pastrini. + +“The explanation would be too long, my dear landlord,” replied Franz. + +“And you say that Signor Vampa exercises his profession at this moment +in the environs of Rome?” + +“And with a boldness of which no bandit before him ever gave an +example.” + +“Then the police have vainly tried to lay hands on him?” + +“Why, you see, he has a good understanding with the shepherds in the +plains, the fishermen of the Tiber, and the smugglers of the coast. +They seek for him in the mountains, and he is on the waters; they +follow him on the waters, and he is on the open sea; then they pursue +him, and he has suddenly taken refuge in the islands, at Giglio, +Giannutri, or Monte Cristo; and when they hunt for him there, he +reappears suddenly at Albano, Tivoli, or La Riccia.” + +“And how does he behave towards travellers?” + +“Alas! his plan is very simple. It depends on the distance he may be +from the city, whether he gives eight hours, twelve hours, or a day +wherein to pay their ransom; and when that time has elapsed he allows +another hour’s grace. At the sixtieth minute of this hour, if the money +is not forthcoming, he blows out the prisoner’s brains with a +pistol-shot, or plants his dagger in his heart, and that settles the +account.” + +“Well, Albert,” inquired Franz of his companion, “are you still +disposed to go to the Colosseum by the outer wall?” + +“Quite so,” said Albert, “if the way be picturesque.” + +The clock struck nine as the door opened, and a coachman appeared. + +“Excellencies,” said he, “the coach is ready.” + +“Well, then,” said Franz, “let us to the Colosseum.” + +“By the Porta del Popolo or by the streets, your excellencies?” + +“By the streets, _morbleu!_ by the streets!” cried Franz. + +“Ah, my dear fellow,” said Albert, rising, and lighting his third +cigar, “really, I thought you had more courage.” + +So saying, the two young men went down the staircase, and got into the +carriage. + +20131m + + + + + Chapter 34. The Colosseum + +Franz had so managed his route, that during the ride to the Colosseum +they passed not a single ancient ruin, so that no preliminary +impression interfered to mitigate the colossal proportions of the +gigantic building they came to admire. The road selected was a +continuation of the Via Sistina; then by cutting off the right angle of +the street in which stands Santa Maria Maggiore and proceeding by the +Via Urbana and San Pietro in Vincoli, the travellers would find +themselves directly opposite the Colosseum. + +This itinerary possessed another great advantage,—that of leaving Franz +at full liberty to indulge his deep reverie upon the subject of Signor +Pastrini’s story, in which his mysterious host of Monte Cristo was so +strangely mixed up. Seated with folded arms in a corner of the +carriage, he continued to ponder over the singular history he had so +lately listened to, and to ask himself an interminable number of +questions touching its various circumstances without, however, arriving +at a satisfactory reply to any of them. + +One fact more than the rest brought his friend “Sinbad the Sailor” back +to his recollection, and that was the mysterious sort of intimacy that +seemed to exist between the brigands and the sailors; and Pastrini’s +account of Vampa’s having found refuge on board the vessels of +smugglers and fishermen, reminded Franz of the two Corsican bandits he +had found supping so amicably with the crew of the little yacht, which +had even deviated from its course and touched at Porto-Vecchio for the +sole purpose of landing them. The very name assumed by his host of +Monte Cristo and again repeated by the landlord of the Hôtel de +Londres, abundantly proved to him that his island friend was playing +his philanthropic part on the shores of Piombino, Civita Vecchia, +Ostia, and Gaëta, as on those of Corsica, Tuscany, and Spain; and +further, Franz bethought him of having heard his singular entertainer +speak both of Tunis and Palermo, proving thereby how largely his circle +of acquaintances extended. + +But however the mind of the young man might be absorbed in these +reflections, they were at once dispersed at the sight of the dark +frowning ruins of the stupendous Colosseum, through the various +openings of which the pale moonlight played and flickered like the +unearthly gleam from the eyes of the wandering dead. The carriage +stopped near the Meta Sudans; the door was opened, and the young men, +eagerly alighting, found themselves opposite a _cicerone_, who appeared +to have sprung up from the ground, so unexpected was his appearance. + +The usual guide from the hotel having followed them, they had paid two +conductors, nor is it possible, at Rome, to avoid this abundant supply +of guides; besides the ordinary _cicerone_, who seizes upon you +directly you set foot in your hotel, and never quits you while you +remain in the city, there is also a special _cicerone_ belonging to +each monument—nay, almost to each part of a monument. It may, +therefore, be easily imagined there is no scarcity of guides at the +Colosseum, that wonder of all ages, which Martial thus eulogizes: + +“Let Memphis cease to boast the barbarous miracles of her pyramids, and +the wonders of Babylon be talked of no more among us; all must bow to +the superiority of the gigantic labor of the Cæsars, and the many +voices of Fame spread far and wide the surpassing merits of this +incomparable monument.” + +As for Albert and Franz, they essayed not to escape from their +_ciceronian_ tyrants; and, indeed, it would have been so much the more +difficult to break their bondage, as the guides alone are permitted to +visit these monuments with torches in their hands. Thus, then, the +young men made no attempt at resistance, but blindly and confidingly +surrendered themselves into the care and custody of their conductors. + +Franz had already made seven or eight similar excursions to the +Colosseum, while his less favored companion trod for the first time in +his life the classic ground forming the monument of Flavius Vespasian; +and, to his credit be it spoken, his mind, even amid the glib loquacity +of the guides, was duly and deeply touched with awe and enthusiastic +admiration of all he saw; and certainly no adequate notion of these +stupendous ruins can be formed save by such as have visited them, and +more especially by moonlight, at which time the vast proportions of the +building appear twice as large when viewed by the mysterious beams of a +southern moonlit sky, whose rays are sufficiently clear and vivid to +light the horizon with a glow equal to the soft twilight of a western +clime. + +Scarcely, therefore, had the reflective Franz walked a hundred steps +beneath the interior porticoes of the ruin, when, abandoning Albert to +the guides (who would by no means yield their prescriptive right of +carrying their victims through the routine regularly laid down, and as +regularly followed by them, but dragged the unconscious visitor to the +various objects with a pertinacity that admitted of no appeal, +beginning, as a matter of course, with the “Lions’ Den”, the “Hall of +the Gladiators” and finishing with “Cæsar’s Podium”), to escape a +jargon and mechanical survey of the wonders by which he was surrounded, +Franz ascended a half-dilapidated staircase, and, leaving them to +follow their monotonous round, seated himself at the foot of a column, +and immediately opposite a large aperture, which permitted him to enjoy +a full and undisturbed view of the gigantic dimensions of the majestic +ruin. + +Franz had remained for nearly a quarter of an hour perfectly hidden by +the shadow of the vast column at whose base he had found a +resting-place, and from whence his eyes followed the motions of Albert +and his guides, who, holding torches in their hands, had emerged from a +vomitorium at the opposite extremity of the Colosseum, and then again +disappeared down the steps conducting to the seats reserved for the +Vestal virgins, resembling, as they glided along, some restless shades +following the flickering glare of so many _ignes fatui_. All at once +his ear caught a sound resembling that of a stone rolling down the +staircase opposite the one by which he had himself ascended. There was +nothing remarkable in the circumstance of a fragment of granite giving +way and falling heavily below; but it seemed to him that the substance +that fell gave way beneath the pressure of a foot, and also that +someone, who endeavored as much as possible to prevent his footsteps +from being heard, was approaching the spot where he sat. + +Conjecture soon became certainty, for the figure of a man was +distinctly visible to Franz, gradually emerging from the staircase +opposite, upon which the moon was at that moment pouring a full tide of +silvery brightness. + +The stranger thus presenting himself was probably a person who, like +Franz, preferred the enjoyment of solitude and his own thoughts to the +frivolous gabble of the guides. And his appearance had nothing +extraordinary in it; but the hesitation with which he proceeded, +stopping and listening with anxious attention at every step he took, +convinced Franz that he expected the arrival of some person. + +By a sort of instinctive impulse, Franz withdrew as much as possible +behind his pillar. + +About ten feet from the spot where he and the stranger were, the roof +had given way, leaving a large round opening, through which might be +seen the blue vault of heaven, thickly studded with stars. + +Around this opening, which had, possibly, for ages permitted a free +entrance to the brilliant moonbeams that now illumined the vast pile, +grew a quantity of creeping plants, whose delicate green branches stood +out in bold relief against the clear azure of the firmament, while +large masses of thick, strong fibrous shoots forced their way through +the chasm, and hung floating to and fro, like so many waving strings. + +The person whose mysterious arrival had attracted the attention of +Franz stood in a kind of half-light, that rendered it impossible to +distinguish his features, although his dress was easily made out. He +wore a large brown mantle, one fold of which, thrown over his left +shoulder, served likewise to mask the lower part of his countenance, +while the upper part was completely hidden by his broad-brimmed hat. +The lower part of his dress was more distinctly visible by the bright +rays of the moon, which, entering through the broken ceiling, shed +their refulgent beams on feet cased in elegantly made boots of polished +leather, over which descended fashionably cut trousers of black cloth. + +20135m + + + +From the imperfect means Franz had of judging, he could only come to +one conclusion,—that the person whom he was thus watching certainly +belonged to no inferior station of life. + +Some few minutes had elapsed, and the stranger began to show manifest +signs of impatience, when a slight noise was heard outside the aperture +in the roof, and almost immediately a dark shadow seemed to obstruct +the flood of light that had entered it, and the figure of a man was +clearly seen gazing with eager scrutiny on the immense space beneath +him; then, as his eye caught sight of him in the mantle, he grasped a +floating mass of thickly matted boughs, and glided down by their help +to within three or four feet of the ground, and then leaped lightly on +his feet. The man who had performed this daring act with so much +indifference wore the Transtevere costume. + +“I beg your excellency’s pardon for keeping you waiting,” said the man, +in the Roman dialect, “but I don’t think I’m many minutes after my +time, ten o’clock has just struck by the clock of Saint John Lateran.” + +“Say not a word about being late,” replied the stranger in purest +Tuscan; “’tis I who am too soon. But even if you had caused me to wait +a little while, I should have felt quite sure that the delay was not +occasioned by any fault of yours.” + +“Your excellency is perfectly right in so thinking,” said the man; “I +came here direct from the Castle of St. Angelo, and I had an immense +deal of trouble before I could get a chance to speak to Beppo.” + +“And who is Beppo?” + +“Oh, Beppo is employed in the prison, and I give him so much a year to +let me know what is going on within his holiness’s castle.” + +“Indeed! You are a provident person, I see.” + +“Why, you see, no one knows what may happen. Perhaps some of these days +I may be entrapped, like poor Peppino and may be very glad to have some +little nibbling mouse to gnaw the meshes of my net, and so help me out +of prison.” + +“Briefly, what did you learn?” + +“That two executions of considerable interest will take place the day +after tomorrow at two o’clock, as is customary at Rome at the +commencement of all great festivals. One of the culprits will be +_mazzolato_;3 he is an atrocious villain, who murdered the priest who +brought him up, and deserves not the smallest pity. The other sufferer +is sentenced to be _decapitato_;4 and he, your excellency, is poor +Peppino.” + +“The fact is, that you have inspired not only the pontifical +government, but also the neighboring states, with such extreme fear, +that they are glad of all opportunity of making an example.” + +“But Peppino did not even belong to my band; he was merely a poor +shepherd, whose only crime consisted in furnishing us with provisions.” + +“Which makes him your accomplice to all intents and purposes. But mark +the distinction with which he is treated; instead of being knocked on +the head as you would be if once they caught hold of you, he is simply +sentenced to be guillotined, by which means, too, the amusements of the +day are diversified, and there is a spectacle to please every +spectator.” + +“Without reckoning the wholly unexpected one I am preparing to surprise +them with.” + +“My good friend,” said the man in the cloak, “excuse me for saying that +you seem to me precisely in the mood to commit some wild or extravagant +act.” + +“Perhaps I am; but one thing I have resolved on, and that is, to stop +at nothing to restore a poor devil to liberty, who has got into this +scrape solely from having served me. I should hate and despise myself +as a coward did I desert the brave fellow in his present extremity.” + +“And what do you mean to do?” + +“To surround the scaffold with twenty of my best men, who, at a signal +from me, will rush forward directly Peppino is brought for execution, +and, by the assistance of their stilettos, drive back the guard, and +carry off the prisoner.” + +“That seems to me as hazardous as uncertain, and convinces me that my +scheme is far better than yours.” + +“And what is your excellency’s project?” + +“Just this. I will so advantageously bestow 2,000 piastres, that the +person receiving them shall obtain a respite till next year for +Peppino; and during that year, another skilfully placed 1,000 piastres +will afford him the means of escaping from his prison.” + +“And do you feel sure of succeeding?” + +“_Pardieu!_” exclaimed the man in the cloak, suddenly expressing +himself in French. + +“What did your excellency say?” inquired the other. + +“I said, my good fellow, that I would do more single-handed by the +means of gold than you and all your troop could effect with stilettos, +pistols, carbines, and blunderbusses included. Leave me, then, to act, +and have no fears for the result.” + +“At least, there can be no harm in myself and party being in readiness, +in case your excellency should fail.” + +“None whatever. Take what precautions you please, if it is any +satisfaction to you to do so; but rely upon my obtaining the reprieve I +seek.” + +“Remember, the execution is fixed for the day after tomorrow, and that +you have but one day to work in.” + +“And what of that? Is not a day divided into twenty-four hours, each +hour into sixty minutes, and every minute sub-divided into sixty +seconds? Now in 86,400 seconds very many things can be done.” + +“And how shall I know whether your excellency has succeeded or not.” + +“Oh, that is very easily arranged. I have engaged the three lower +windows at the Café Rospoli; should I have obtained the requisite +pardon for Peppino, the two outside windows will be hung with yellow +damasks, and the centre with white, having a large cross in red marked +on it.” + +“And whom will you employ to carry the reprieve to the officer +directing the execution?” + +“Send one of your men, disguised as a penitent friar, and I will give +it to him. His dress will procure him the means of approaching the +scaffold itself, and he will deliver the official order to the officer, +who, in his turn, will hand it to the executioner; in the meantime, it +will be as well to acquaint Peppino with what we have determined on, if +it be only to prevent his dying of fear or losing his senses, because +in either case a very useless expense will have been incurred.” + +“Your excellency,” said the man, “you are fully persuaded of my entire +devotion to you, are you not?” + +“Nay, I flatter myself that there can be no doubt of it,” replied the +cavalier in the cloak. + +“Well, then, only fulfil your promise of rescuing Peppino, and +henceforward you shall receive not only devotion, but the most absolute +obedience from myself and those under me that one human being can +render to another.” + +“Have a care how far you pledge yourself, my good friend, for I may +remind you of your promise at some, perhaps, not very distant period, +when I, in my turn, may require your aid and influence.” + +“Let that day come sooner or later, your excellency will find me what I +have found you in this my heavy trouble; and if from the other end of +the world you but write me word to do such or such a thing, you may +regard it as done, for done it shall be, on the word and faith of——” + +“Hush!” interrupted the stranger; “I hear a noise.” + +“’Tis some travellers, who are visiting the Colosseum by torchlight.” + +“’Twere better we should not be seen together; those guides are nothing +but spies, and might possibly recognize you; and, however I may be +honored by your friendship, my worthy friend, if once the extent of our +intimacy were known, I am sadly afraid both my reputation and credit +would suffer thereby.” + +“Well, then, if you obtain the reprieve?” + +“The middle window at the Café Rospoli will be hung with white damask, +bearing a red cross.” + +“And if you fail?” + +“Then all three windows will have yellow draperies.” + +“And then?” + +“And then, my good fellow, use your daggers in any way you please, and +I further promise you to be there as a spectator of your prowess.” + +“We understand each other perfectly, then. Adieu, your excellency; +depend upon me as firmly as I do upon you.” + +Saying these words, the Transteverin disappeared down the staircase, +while his companion, muffling his features more closely than before in +the folds of his mantle, passed almost close to Franz, and descended to +the arena by an outward flight of steps. The next minute Franz heard +himself called by Albert, who made the lofty building re-echo with the +sound of his friend’s name. Franz, however, did not obey the summons +till he had satisfied himself that the two men whose conversation he +had overheard were at a sufficient distance to prevent his encountering +them in his descent. In ten minutes after the strangers had departed, +Franz was on the road to the Piazza di Spagna, listening with studied +indifference to the learned dissertation delivered by Albert, after the +manner of Pliny and Calpurnius, touching the iron-pointed nets used to +prevent the ferocious beasts from springing on the spectators. + +Franz let him proceed without interruption, and, in fact, did not hear +what was said; he longed to be alone, and free to ponder over all that +had occurred. One of the two men, whose mysterious meeting in the +Colosseum he had so unintentionally witnessed, was an entire stranger +to him, but not so the other; and though Franz had been unable to +distinguish his features, from his being either wrapped in his mantle +or obscured by the shadow, the tones of his voice had made too powerful +an impression on him the first time he had heard them for him ever +again to forget them, hear them when or where he might. It was more +especially when this man was speaking in a manner half jesting, half +bitter, that Franz’s ear recalled most vividly the deep sonorous, yet +well-pitched voice that had addressed him in the grotto of Monte +Cristo, and which he heard for the second time amid the darkness and +ruined grandeur of the Colosseum. And the more he thought, the more +entire was his conviction, that the person who wore the mantle was no +other than his former host and entertainer, “Sinbad the Sailor.” + +20139m + + + +Under any other circumstances, Franz would have found it impossible to +resist his extreme curiosity to know more of so singular a personage, +and with that intent have sought to renew their short acquaintance; but +in the present instance, the confidential nature of the conversation he +had overheard made him, with propriety, judge that his appearance at +such a time would be anything but agreeable. As we have seen, +therefore, he permitted his former host to retire without attempting a +recognition, but fully promising himself a rich indemnity for his +present forbearance should chance afford him another opportunity. + +In vain did Franz endeavor to forget the many perplexing thoughts which +assailed him; in vain did he court the refreshment of sleep. Slumber +refused to visit his eyelids and the night was passed in feverish +contemplation of the chain of circumstances tending to prove the +identity of the mysterious visitant to the Colosseum with the +inhabitant of the grotto of Monte Cristo; and the more he thought, the +firmer grew his opinion on the subject. + +Worn out at length, he fell asleep at daybreak, and did not awake till +late. Like a genuine Frenchman, Albert had employed his time in +arranging for the evening’s diversion; he had sent to engage a box at +the Teatro Argentina; and Franz, having a number of letters to write, +relinquished the carriage to Albert for the whole of the day. + +At five o’clock Albert returned, delighted with his day’s work; he had +been occupied in leaving his letters of introduction, and had received +in return more invitations to balls and routs than it would be possible +for him to accept; besides this, he had seen (as he called it) all the +remarkable sights at Rome. Yes, in a single day he had accomplished +what his more serious-minded companion would have taken weeks to +effect. Neither had he neglected to ascertain the name of the piece to +be played that night at the Teatro Argentina, and also what performers +appeared in it. The opera of _Parisina_ was announced for +representation, and the principal actors were Coselli, Moriani, and La +Specchia. + +The young men, therefore, had reason to consider themselves fortunate +in having the opportunity of hearing one of the best works by the +composer of _Lucia di Lammermoor_, supported by three of the most +renowned vocalists of Italy. + +Albert had never been able to endure the Italian theatres, with their +orchestras from which it is impossible to see, and the absence of +balconies, or open boxes; all these defects pressed hard on a man who +had had his stall at the Bouffes, and had shared a lower box at the +Opera. Still, in spite of this, Albert displayed his most dazzling and +effective costumes each time he visited the theatres; but, alas, his +elegant toilet was wholly thrown away, and one of the most worthy +representatives of Parisian fashion had to carry with him the +mortifying reflection that he had nearly overrun Italy without meeting +with a single adventure. + +Sometimes Albert would affect to make a joke of his want of success; +but internally he was deeply wounded, and his self-love immensely +piqued, to think that Albert de Morcerf, the most admired and most +sought after of any young person of his day, should thus be passed +over, and merely have his labor for his pains. And the thing was so +much the more annoying, as, according to the characteristic modesty of +a Frenchman, Albert had quitted Paris with the full conviction that he +had only to show himself in Italy to carry all before him, and that +upon his return he should astonish the Parisian world with the recital +of his numerous love-affairs. + +Alas, poor Albert! None of those interesting adventures fell in his +way; the lovely Genoese, Florentines, and Neapolitans were all +faithful, if not to their husbands, at least to their lovers, and +thought not of changing even for the splendid appearance of Albert de +Morcerf; and all he gained was the painful conviction that the ladies +of Italy have this advantage over those of France, that they are +faithful even in their infidelity. + +Yet he could not restrain a hope that in Italy, as elsewhere, there +might be an exception to the general rule. + +Albert, besides being an elegant, well-looking young man, was also +possessed of considerable talent and ability; moreover, he was a +viscount—a recently created one, certainly, but in the present day it +is not necessary to go as far back as Noah in tracing a descent, and a +genealogical tree is equally estimated, whether dated from 1399 or +merely 1815; but to crown all these advantages, Albert de Morcerf +commanded an income of 50,000 livres, a more than sufficient sum to +render him a personage of considerable importance in Paris. It was +therefore no small mortification to him to have visited most of the +principal cities in Italy without having excited the most trifling +observation. + +Albert, however, hoped to indemnify himself for all these slights and +indifferences during the Carnival, knowing full well that among the +different states and kingdoms in which this festivity is celebrated, +Rome is the spot where even the wisest and gravest throw off the usual +rigidity of their lives, and deign to mingle in the follies of this +time of liberty and relaxation. The Carnival was to commence on the +morrow; therefore Albert had not an instant to lose in setting forth +the programme of his hopes, expectations, and claims to notice. + +With this design he had engaged a box in the most conspicuous part of +the theatre, and exerted himself to set off his personal attractions by +the aid of the most rich and elaborate toilet. The box taken by Albert +was in the first circle; although each of the three tiers of boxes is +deemed equally aristocratic, and is, for this reason, generally styled +the “nobility’s boxes,” and although the box engaged for the two +friends was sufficiently capacious to contain at least a dozen persons, +it had cost less than would be paid at some of the French theatres for +one admitting merely four occupants. + +Another motive had influenced Albert’s selection of his seat,—who knew +but that, thus advantageously placed, he might not in truth attract the +notice of some fair Roman, and an introduction might ensue that would +procure him the offer of a seat in a carriage, or a place in a princely +balcony, from which he might behold the gayeties of the Carnival? + +These united considerations made Albert more lively and anxious to +please than he had hitherto been. Totally disregarding the business of +the stage, he leaned from his box and began attentively scrutinizing +the beauty of each pretty woman, aided by a powerful opera-glass; but, +alas, this attempt to attract notice wholly failed; not even curiosity +had been excited, and it was but too apparent that the lovely +creatures, into whose good graces he was desirous of stealing, were all +so much engrossed with themselves, their lovers, or their own thoughts, +that they had not so much as noticed him or the manipulation of his +glass. + +The truth was, that the anticipated pleasures of the Carnival, with the +“Holy Week” that was to succeed it, so filled every fair breast, as to +prevent the least attention being bestowed even on the business of the +stage. The actors made their entries and exits unobserved or unthought +of; at certain conventional moments, the spectators would suddenly +cease their conversation, or rouse themselves from their musings, to +listen to some brilliant effort of Moriani’s, a well-executed +recitative by Coselli, or to join in loud applause at the wonderful +powers of La Specchia; but that momentary excitement over, they quickly +relapsed into their former state of preoccupation or interesting +conversation. + +Towards the close of the first act, the door of a box which had been +hitherto vacant was opened; a lady entered to whom Franz had been +introduced in Paris, where indeed, he had imagined she still was. The +quick eye of Albert caught the involuntary start with which his friend +beheld the new arrival, and, turning to him, he said hastily: + +“Do you know the woman who has just entered that box?” + +“Yes; what do you think of her?” + +“Oh, she is perfectly lovely—what a complexion! And such magnificent +hair! Is she French?” + +“No; a Venetian.” + +“And her name is——” + +“Countess G——.” + +“Ah, I know her by name!” exclaimed Albert; “she is said to possess as +much wit and cleverness as beauty. I was to have been presented to her +when I met her at Madame Villefort’s ball.” + +“Shall I assist you in repairing your negligence?” asked Franz. + +“My dear fellow, are you really on such good terms with her as to +venture to take me to her box?” + +“Why, I have only had the honor of being in her society and conversing +with her three or four times in my life; but you know that even such an +acquaintance as that might warrant my doing what you ask.” + +At that instant, the countess perceived Franz, and graciously waved her +hand to him, to which he replied by a respectful inclination of the +head. “Upon my word,” said Albert, “you seem to be on excellent terms +with the beautiful countess.” + +“You are mistaken in thinking so,” returned Franz calmly; “but you +merely fall into the same error which leads so many of our countrymen +to commit the most egregious blunders,—I mean that of judging the +habits and customs of Italy and Spain by our Parisian notions; believe +me, nothing is more fallacious than to form any estimate of the degree +of intimacy you may suppose existing among persons by the familiar +terms they seem upon; there is a similarity of feeling at this instant +between ourselves and the countess—nothing more.” + +“Is there, indeed, my good fellow? Pray tell me, is it sympathy of +heart?” + +“No; of taste,” continued Franz gravely. + +“And in what manner has this congeniality of mind been evinced?” + +“By the countess’s visiting the Colosseum, as we did last night, by +moonlight, and nearly alone.” + +“You were with her, then?” + +“I was.” + +“And what did you say to her?” + +“Oh, we talked of the illustrious dead of whom that magnificent ruin is +a glorious monument!” + +“Upon my word,” cried Albert, “you must have been a very entertaining +companion alone, or all but alone, with a beautiful woman in such a +place of sentiment as the Colosseum, and yet to find nothing better to +talk about than the dead! All I can say is, if ever I should get such a +chance, the living should be my theme.” + +20143m + + + +“And you will probably find your theme ill-chosen.” + +“But,” said Albert, breaking in upon his discourse, “never mind the +past; let us only remember the present. Are you not going to keep your +promise of introducing me to the fair subject of our remarks?” + +“Certainly, directly the curtain falls on the stage.” + +“What a confounded long time this first act lasts. I believe, on my +soul, that they never mean to finish it.” + +“Oh, yes, they will; only listen to that charming finale. How +exquisitely Coselli sings his part.” + +“But what an awkward, inelegant fellow he is.” + +“Well, then, what do you say to La Specchia? Did you ever see anything +more perfect than her acting?” + +“Why, you know, my dear fellow, when one has been accustomed to +Malibran and Sontag, such singers as these don’t make the same +impression on you they perhaps do on others.” + +“At least, you must admire Moriani’s style and execution.” + +“I never fancied men of his dark, ponderous appearance singing with a +voice like a woman’s.” + +“My good friend,” said Franz, turning to him, while Albert continued to +point his glass at every box in the theatre, “you seem determined not +to approve; you are really too difficult to please.” + +The curtain at length fell on the performances, to the infinite +satisfaction of the Viscount of Morcerf, who seized his hat, rapidly +passed his fingers through his hair, arranged his cravat and +wristbands, and signified to Franz that he was waiting for him to lead +the way. + +Franz, who had mutely interrogated the countess, and received from her +a gracious smile in token that he would be welcome, sought not to +retard the gratification of Albert’s eager impatience, but began at +once the tour of the house, closely followed by Albert, who availed +himself of the few minutes required to reach the opposite side of the +theatre to settle the height and smoothness of his collar, and to +arrange the lappets of his coat. This important task was just completed +as they arrived at the countess’s box. + +At the knock, the door was immediately opened, and the young man who +was seated beside the countess, in obedience to the Italian custom, +instantly rose and surrendered his place to the strangers, who, in +turn, would be expected to retire upon the arrival of other visitors. + +Franz presented Albert as one of the most distinguished young men of +the day, both as regarded his position in society and extraordinary +talents; nor did he say more than the truth, for in Paris and the +circle in which the viscount moved, he was looked upon and cited as a +model of perfection. Franz added that his companion, deeply grieved at +having been prevented the honor of being presented to the countess +during her sojourn in Paris, was most anxious to make up for it, and +had requested him (Franz) to remedy the past misfortune by conducting +him to her box, and concluded by asking pardon for his presumption in +having taken it upon himself to do so. + +The countess, in reply, bowed gracefully to Albert, and extended her +hand with cordial kindness to Franz; then, inviting Albert to take the +vacant seat beside her, she recommended Franz to take the next best, if +he wished to view the ballet, and pointed to the one behind her own +chair. + +Albert was soon deeply engrossed in discoursing upon Paris and Parisian +matters, speaking to the countess of the various persons they both knew +there. Franz perceived how completely he was in his element; and, +unwilling to interfere with the pleasure he so evidently felt, took up +Albert’s glass, and began in his turn to survey the audience. + +Sitting alone, in the front of a box immediately opposite, but situated +on the third row, was a woman of exquisite beauty, dressed in a Greek +costume, which evidently, from the ease and grace with which she wore +it, was her national attire. Behind her, but in deep shadow, was the +outline of a masculine figure; but the features of this latter +personage it was not possible to distinguish. Franz could not forbear +breaking in upon the apparently interesting conversation passing +between the countess and Albert, to inquire of the former if she knew +who was the fair Albanian opposite, since beauty such as hers was well +worthy of being observed by either sex. + +“All I can tell about her,” replied the countess, “is, that she has +been at Rome since the beginning of the season; for I saw her where she +now sits the very first night of the season, and since then she has +never missed a performance. Sometimes she is accompanied by the person +who is now with her, and at others she is merely attended by a black +servant.” + +“And what do you think of her personal appearance?” + +“Oh, I consider her perfectly lovely—she is just my idea of what Medora +must have been.” + +Franz and the countess exchanged a smile, and then the latter resumed +her conversation with Albert, while Franz returned to his previous +survey of the house and company. The curtain rose on the ballet, which +was one of those excellent specimens of the Italian school, admirably +arranged and put on the stage by Henri, who has established for himself +a great reputation throughout Italy for his taste and skill in the +choreographic art—one of those masterly productions of grace, method, +and elegance in which the whole _corps de ballet_, from the principal +dancers to the humblest supernumerary, are all engaged on the stage at +the same time; and a hundred and fifty persons may be seen exhibiting +the same attitude, or elevating the same arm or leg with a simultaneous +movement, that would lead you to suppose that but one mind, one act of +volition, influenced the moving mass. + +The ballet was called _Poliska_. + +However much the ballet might have claimed his attention, Franz was too +deeply occupied with the beautiful Greek to take any note of it; while +she seemed to experience an almost childlike delight in watching it, +her eager, animated looks contrasting strongly with the utter +indifference of her companion, who, during the whole time the piece +lasted, never even moved, not even when the furious, crashing din +produced by the trumpets, cymbals, and Chinese bells sounded their +loudest from the orchestra. Of this he took no heed, but was, as far as +appearances might be trusted, enjoying soft repose and bright celestial +dreams. + +The ballet at length came to a close, and the curtain fell amid the +loud, unanimous plaudits of an enthusiastic and delighted audience. + +Owing to the very judicious plan of dividing the two acts of the opera +with a ballet, the pauses between the performances are very short, the +singers in the opera having time to repose themselves and change their +costume, when necessary, while the dancers are executing their +pirouettes and exhibiting their graceful steps. + +The overture to the second act began; and, at the first sound of the +leader’s bow across his violin, Franz observed the sleeper slowly arise +and approach the Greek girl, who turned around to say a few words to +him, and then, leaning forward again on the railing of her box, she +became as absorbed as before in what was going on. + +The countenance of the person who had addressed her remained so +completely in the shade, that, though Franz tried his utmost, he could +not distinguish a single feature. The curtain rose, and the attention +of Franz was attracted by the actors; and his eyes turned from the box +containing the Greek girl and her strange companion to watch the +business of the stage. + +Most of my readers are aware that the second act of _Parisina_ opens +with the celebrated and effective duet in which Parisina, while +sleeping, betrays to Azzo the secret of her love for Ugo. The injured +husband goes through all the emotions of jealousy, until conviction +seizes on his mind, and then, in a frenzy of rage and indignation, he +awakens his guilty wife to tell her that he knows her guilt and to +threaten her with his vengeance. + +This duet is one of the most beautiful, expressive and terrible +conceptions that has ever emanated from the fruitful pen of Donizetti. +Franz now listened to it for the third time; yet its notes, so tenderly +expressive and fearfully grand as the wretched husband and wife give +vent to their different griefs and passions, thrilled through the soul +of Franz with an effect equal to his first emotions upon hearing it. +Excited beyond his usual calm demeanor, Franz rose with the audience, +and was about to join the loud, enthusiastic applause that followed; +but suddenly his purpose was arrested, his hands fell by his sides, and +the half-uttered “bravos” expired on his lips. + +The occupant of the box in which the Greek girl sat appeared to share +the universal admiration that prevailed; for he left his seat to stand +up in front, so that, his countenance being fully revealed, Franz had +no difficulty in recognizing him as the mysterious inhabitant of Monte +Cristo, and the very same person he had encountered the preceding +evening in the ruins of the Colosseum, and whose voice and figure had +seemed so familiar to him. + +All doubt of his identity was now at an end; his singular host +evidently resided at Rome. The surprise and agitation occasioned by +this full confirmation of Franz’s former suspicion had no doubt +imparted a corresponding expression to his features; for the countess, +after gazing with a puzzled look at his face, burst into a fit of +laughter, and begged to know what had happened. + +“Countess,” returned Franz, totally unheeding her raillery, “I asked +you a short time since if you knew any particulars respecting the +Albanian lady opposite; I must now beseech you to inform me who and +what is her husband?” + +“Nay,” answered the countess, “I know no more of him than yourself.” + +“Perhaps you never before noticed him?” + +“What a question—so truly French! Do you not know that we Italians have +eyes only for the man we love?” + +“True,” replied Franz. + +“All I can say is,” continued the countess, taking up the _lorgnette_, +and directing it toward the box in question, “that the gentleman, whose +history I am unable to furnish, seems to me as though he had just been +dug up; he looks more like a corpse permitted by some friendly +grave-digger to quit his tomb for a while, and revisit this earth of +ours, than anything human. How ghastly pale he is!” + +“Oh, he is always as colorless as you now see him,” said Franz. + +“Then you know him?” almost screamed the countess. “Oh, pray do, for +heaven’s sake, tell us all about—is he a vampire, or a resuscitated +corpse, or what?” + +“I fancy I have seen him before; and I even think he recognizes me.” + +“And I can well understand,” said the countess, shrugging up her +beautiful shoulders, as though an involuntary shudder passed through +her veins, “that those who have once seen that man will never be likely +to forget him.” + +The sensation experienced by Franz was evidently not peculiar to +himself; another, and wholly uninterested person, felt the same +unaccountable awe and misgiving. + +“Well.” inquired Franz, after the countess had a second time directed +her _lorgnette_ at the box, “what do you think of our opposite +neighbor?” + +20147m + + + +“Why, that he is no other than Lord Ruthven himself in a living form.” + +This fresh allusion to Byron5 drew a smile to Franz’s countenance; +although he could but allow that if anything was likely to induce +belief in the existence of vampires, it would be the presence of such a +man as the mysterious personage before him. + +“I must positively find out who and what he is,” said Franz, rising +from his seat. + +“No, no,” cried the countess; “you must not leave me. I depend upon you +to escort me home. Oh, indeed, I cannot permit you to go.” + +“Is it possible,” whispered Franz, “that you entertain any fear?” + +“I’ll tell you,” answered the countess. “Byron had the most perfect +belief in the existence of vampires, and even assured me that he had +seen them. The description he gave me perfectly corresponds with the +features and character of the man before us. Oh, he is the exact +personification of what I have been led to expect! The coal-black hair, +large bright, glittering eyes, in which a wild, unearthly fire seems +burning,—the same ghastly paleness. Then observe, too, that the woman +with him is altogether unlike all others of her sex. She is a +foreigner—a stranger. Nobody knows who she is, or where she comes from. +No doubt she belongs to the same horrible race he does, and is, like +himself, a dealer in magical arts. I entreat of you not to go near +him—at least tonight; and if tomorrow your curiosity still continues as +great, pursue your researches if you will; but tonight you neither can +nor shall. For that purpose I mean to keep you all to myself.” + +Franz protested he could not defer his pursuit till the following day, +for many reasons. + +“Listen to me,” said the countess, “and do not be so very headstrong. I +am going home. I have a party at my house tonight, and therefore cannot +possibly remain till the end of the opera. Now, I cannot for one +instant believe you so devoid of gallantry as to refuse a lady your +escort when she even condescends to ask you for it.” + +There was nothing else left for Franz to do but to take up his hat, +open the door of the box, and offer the countess his arm. It was quite +evident, by her manner, that her uneasiness was not feigned; and Franz +himself could not resist a feeling of superstitious dread—so much the +stronger in him, as it arose from a variety of corroborative +recollections, while the terror of the countess sprang from an +instinctive belief, originally created in her mind by the wild tales +she had listened to till she believed them truths. Franz could even +feel her arm tremble as he assisted her into the carriage. Upon +arriving at her hotel, Franz perceived that she had deceived him when +she spoke of expecting company; on the contrary, her own return before +the appointed hour seemed greatly to astonish the servants. + +“Excuse my little subterfuge,” said the countess, in reply to her +companion’s half-reproachful observation on the subject; “but that +horrid man had made me feel quite uncomfortable, and I longed to be +alone, that I might compose my startled mind.” + +Franz essayed to smile. + +“Nay,” said she, “do not smile; it ill accords with the expression of +your countenance, and I am sure it does not spring from your heart. +However, promise me one thing.” + +“What is it?” + +“Promise me, I say.” + +“I will do anything you desire, except relinquish my determination of +finding out who this man is. I have more reasons than you can imagine +for desiring to know who he is, from whence he came, and whither he is +going.” + +“Where he comes from I am ignorant; but I can readily tell you where he +is going to, and that is down below, without the least doubt.” + +“Let us only speak of the promise you wished me to make,” said Franz. + +“Well, then, you must give me your word to return immediately to your +hotel, and make no attempt to follow this man tonight. There are +certain affinities between the persons we quit and those we meet +afterwards. For heaven’s sake, do not serve as a conductor between that +man and me. Pursue your chase after him tomorrow as eagerly as you +please; but never bring him near me, if you would not see me die of +terror. And now, good-night; go to your rooms, and try to sleep away +all recollections of this evening. For my own part, I am quite sure I +shall not be able to close my eyes.” + +So saying, the countess quitted Franz, leaving him unable to decide +whether she were merely amusing herself at his expense, or whether her +fears and agitations were genuine. + +Upon his return to the hotel, Franz found Albert in his dressing-gown +and slippers, listlessly extended on a sofa, smoking a cigar. + +“My dear fellow!” cried he, springing up, “is it really you? Why, I did +not expect to see you before tomorrow.” + +“My dear Albert,” replied Franz, “I am glad of this opportunity to tell +you, once and forever, that you entertain a most erroneous notion +concerning Italian women. I should have thought the continual failures +you have met with in all your own love affairs might have taught you +better by this time.” + +“Upon my soul, these women would puzzle the very Devil to read them +aright. Why, here—they give you their hand—they press yours in +return—they keep up a whispering conversation—permit you to accompany +them home. Why, if a Parisian were to indulge in a quarter of these +marks of flattering attention, her reputation would be gone forever.” + +“And the very reason why the women of this fine country, ‘where sounds +the _si_,’ as Dante writes, put so little restraint on their words and +actions, is because they live so much in public, and have really +nothing to conceal. Besides, you must have perceived that the countess +was really alarmed.” + +“At what? At the sight of that respectable gentleman sitting opposite +to us in the same box with the lovely Greek girl? Now, for my part, I +met them in the lobby after the conclusion of the piece; and hang me, +if I can guess where you took your notions of the other world from. I +can assure you that this hobgoblin of yours is a deuced fine-looking +fellow—admirably dressed. Indeed, I feel quite sure, from the cut of +his clothes, they are made by a first-rate Paris tailor—probably Blin +or Humann. He was rather too pale, certainly; but then, you know, +paleness is always looked upon as a strong proof of aristocratic +descent and distinguished breeding.” + +Franz smiled; for he well remembered that Albert particularly prided +himself on the entire absence of color in his own complexion. + +“Well, that tends to confirm my own ideas,” said Franz, “that the +countess’s suspicions were destitute alike of sense and reason. Did he +speak in your hearing? and did you catch any of his words?” + +“I did; but they were uttered in the Romaic dialect. I knew that from +the mixture of Greek words. I don’t know whether I ever told you that +when I was at college I was rather—rather strong in Greek.” + +“He spoke the Romaic language, did he?” + +“I think so.” + +“That settles it,” murmured Franz. “’Tis he, past all doubt.” + +“What do you say?” + +“Nothing, nothing. But tell me, what were you thinking about when I +came in?” + +“Oh, I was arranging a little surprise for you.” + +“Indeed. Of what nature?” + +“Why, you know it is quite impossible to procure a carriage.” + +“Certainly; and I also know that we have done all that human means +afforded to endeavor to get one.” + +“Now, then, in this difficulty a bright idea has flashed across my +brain.” + +Franz looked at Albert as though he had not much confidence in the +suggestions of his imagination. + +“I tell you what, M. Franz,” cried Albert, “you deserve to be called +out for such a misgiving and incredulous glance as that you were +pleased to bestow on me just now.” + +“And I promise to give you the satisfaction of a gentleman if your +scheme turns out as ingenious as you assert.” + +“Well, then, hearken to me.” + +“I listen.” + +“You agree, do you not, that obtaining a carriage is out of the +question?” + +“I do.” + +“Neither can we procure horses?” + +“True; we have offered any sum, but have failed.” + +“Well, now, what do you say to a cart? I dare say such a thing might be +had.” + +“Very possibly.” + +“And a pair of oxen?” + +“As easily found as the cart.” + +“Then you see, my good fellow, with a cart and a couple of oxen our +business can be managed. The cart must be tastefully ornamented; and if +you and I dress ourselves as Neapolitan reapers, we may get up a +striking tableau, after the manner of that splendid picture by Léopold +Robert. It would add greatly to the effect if the countess would join +us in the costume of a peasant from Puzzoli or Sorrento. Our group +would then be quite complete, more especially as the countess is quite +beautiful enough to represent a Madonna.” + +“Well,” said Franz, “this time, M. Albert, I am bound to give you +credit for having hit upon a most capital idea.” + +“And quite a national one, too,” replied Albert with gratified pride. +“A mere masque borrowed from our own festivities. Ha, ha, ye Romans! +you thought to make us, unhappy strangers, trot at the heels of your +processions, like so many lazzaroni, because no carriages or horses are +to be had in your beggarly city. But you don’t know us; when we can’t +have one thing we invent another.” + +“And have you communicated your triumphant idea to anybody?” + +“Only to our host. Upon my return home I sent for him, and I then +explained to him what I wished to procure. He assured me that nothing +would be easier than to furnish all I desired. One thing I was sorry +for; when I bade him have the horns of the oxen gilded, he told me +there would not be time, as it would require three days to do that; so +you see we must do without this little superfluity.” + +“And where is he now?” + +“Who?” + +“Our host.” + +“Gone out in search of our equipage, by tomorrow it might be too late.” + +“Then he will be able to give us an answer tonight.” + +“Oh, I expect him every minute.” + +At this instant the door opened, and the head of Signor Pastrini +appeared. “_Permesso_?” inquired he. + +“Certainly—certainly,” cried Franz. “Come in, my host.” + +“Now, then,” asked Albert eagerly, “have you found the desired cart and +oxen?” + +“Better than that!” replied Signor Pastrini, with the air of a man +perfectly well satisfied with himself. + +“Take care, my worthy host,” said Albert, “_better_ is a sure enemy to +_well_.” + +“Let your excellencies only leave the matter to me,” returned Signor +Pastrini in a tone indicative of unbounded self-confidence. + +“But what _have_ you done?” asked Franz. “Speak out, there’s a worthy +fellow.” + +“Your excellencies are aware,” responded the landlord, swelling with +importance, “that the Count of Monte Cristo is living on the same floor +with yourselves!” + +“I should think we did know it,” exclaimed Albert, “since it is owing +to that circumstance that we are packed into these small rooms, like +two poor students in the back streets of Paris.” + +“When, then, the Count of Monte Cristo, hearing of the dilemma in which +you are placed, has sent to offer you seats in his carriage and two +places at his windows in the Palazzo Rospoli.” The friends looked at +each other with unutterable surprise. + +“But do you think,” asked Albert, “that we ought to accept such offers +from a perfect stranger?” + +“What sort of person is this Count of Monte Cristo?” asked Franz of his +host. + +“A very great nobleman, but whether Maltese or Sicilian I cannot +exactly say; but this I know, that he is noble as a Borghese and rich +as a gold mine.” + +“It seems to me,” said Franz, speaking in an undertone to Albert, “that +if this person merited the high panegyrics of our landlord, he would +have conveyed his invitation through another channel, and not permitted +it to be brought to us in this unceremonious way. He would have +written—or——” + +At this instant someone knocked at the door. + +“Come in,” said Franz. + +A servant, wearing a livery of considerable style and richness, +appeared at the threshold, and, placing two cards in the landlord’s +hands, who forthwith presented them to the two young men, he said: + +“Please to deliver these, from the Count of Monte Cristo to Vicomte +Albert de Morcerf and M. Franz d’Épinay. The Count of Monte Cristo,” +continued the servant, “begs these gentlemen’s permission to wait upon +them as their neighbor, and he will be honored by an intimation of what +time they will please to receive him.” + +“Faith, Franz,” whispered Albert, “there is not much to find fault with +here.” + +“Tell the count,” replied Franz, “that we will do ourselves the +pleasure of calling on him.” + +The servant bowed and retired. + +“That is what I call an elegant mode of attack,” said Albert, “You were +quite correct in what you said, Signor Pastrini. The Count of Monte +Cristo is unquestionably a man of first-rate breeding and knowledge of +the world.” + +“Then you accept his offer?” said the host. + +“Of course we do,” replied Albert. “Still, I must own I am sorry to be +obliged to give up the cart and the group of reapers—it would have +produced such an effect! And were it not for the windows at the Palazzo +Rospoli, by way of recompense for the loss of our beautiful scheme, I +don’t know but what I should have held on by my original plan. What say +you, Franz?” + +“Oh, I agree with you; the windows in the Palazzo Rospoli alone decided +me.” + +The truth was, that the mention of two places in the Palazzo Rospoli +had recalled to Franz the conversation he had overheard the preceding +evening in the ruins of the Colosseum between the mysterious unknown +and the Transteverin, in which the stranger in the cloak had undertaken +to obtain the freedom of a condemned criminal; and if this muffled-up +individual proved (as Franz felt sure he would) the same as the person +he had just seen in the Teatro Argentina, then he should be able to +establish his identity, and also to prosecute his researches respecting +him with perfect facility and freedom. + +Franz passed the night in confused dreams respecting the two meetings +he had already had with his mysterious tormentor, and in waking +speculations as to what the morrow would produce. The next day must +clear up every doubt; and unless his near neighbor and would-be friend, +the Count of Monte Cristo, possessed the ring of Gyges, and by its +power was able to render himself invisible, it was very certain he +could not escape this time. + +Eight o’clock found Franz up and dressed, while Albert, who had not the +same motives for early rising, was still soundly asleep. The first act +of Franz was to summon his landlord, who presented himself with his +accustomed obsequiousness. + +“Pray, Signor Pastrini,” asked Franz, “is not some execution appointed +to take place today?” + +“Yes, your excellency; but if your reason for inquiry is that you may +procure a window to view it from, you are much too late.” + +“Oh, no,” answered Franz, “I had no such intention; and even if I had +felt a wish to witness the spectacle, I might have done so from Monte +Pincio; could I not?” + +“Ah!” exclaimed mine host, “I did not think it likely your excellency +would have chosen to mingle with such a rabble as are always collected +on that hill, which, indeed, they consider as exclusively belonging to +themselves.” + +“Very possibly I may not go,” answered Franz; “but in case I feel +disposed, give me some particulars of today’s executions.” + +“What particulars would your excellency like to hear?” + +“Why, the number of persons condemned to suffer, their names, and +description of the death they are to die.” + +“That happens just lucky, your excellency! Only a few minutes ago they +brought me the _tavolettas_.” + +“What are they?” + +“Sort of wooden tablets hung up at the corners of streets the evening +before an execution, on which is pasted up a paper containing the names +of the condemned persons, their crimes, and mode of punishment. The +reason for so publicly announcing all this is, that all good and +faithful Catholics may offer up their prayers for the unfortunate +culprits, and, above all, beseech of Heaven to grant them a sincere +repentance.” + +“And these tablets are brought to you that you may add your prayers to +those of the faithful, are they?” asked Franz somewhat incredulously. + +“Oh, dear, no, your excellency! I have not time for anybody’s affairs +but my own and those of my honorable guests; but I make an agreement +with the man who pastes up the papers, and he brings them to me as he +would the playbills, that in case any person staying at my hotel should +like to witness an execution, he may obtain every requisite information +concerning the time and place etc.” + +“Upon my word, that is a most delicate attention on your part, Signor +Pastrini,” cried Franz. + +“Why, your excellency,” returned the landlord, chuckling and rubbing +his hands with infinite complacency, “I think I may take upon myself to +say I neglect nothing to deserve the support and patronage of the noble +visitors to this poor hotel.” + +“I see that plainly enough, my most excellent host, and you may rely +upon me to proclaim so striking a proof of your attention to your +guests wherever I go. Meanwhile, oblige me by a sight of one of these +_tavolettas_.” + +“Nothing can be easier than to comply with your excellency’s wish,” +said the landlord, opening the door of the chamber; “I have caused one +to be placed on the landing, close by your apartment.” + +Then, taking the tablet from the wall, he handed it to Franz, who read +as follows: + +“‘The public is informed that on Wednesday, February 23rd, being the +first day of the Carnival, executions will take place in the Piazza del +Popolo, by order of the Tribunal of the Rota, of two persons, named +Andrea Rondolo, and Peppino, otherwise called Rocca Priori; the former +found guilty of the murder of a venerable and exemplary priest, named +Don César Torlini, canon of the church of St. John Lateran; and the +latter convicted of being an accomplice of the atrocious and sanguinary +bandit, Luigi Vampa, and his band. The first-named malefactor will be +_mazzolato_, the second culprit _decapitato_. + +“‘The prayers of all good Christians are entreated for these +unfortunate men, that it may please God to awaken them to a sense of +their guilt, and to grant them a hearty and sincere repentance for +their crimes.’” + +This was precisely what Franz had heard the evening before in the ruins +of the Colosseum. No part of the programme differed,—the names of the +condemned persons, their crimes, and mode of punishment, all agreed +with his previous information. In all probability, therefore, the +Transteverin was no other than the bandit Luigi Vampa himself, and the +man shrouded in the mantle the same he had known as “Sinbad the +Sailor,” but who, no doubt, was still pursuing his philanthropic +expedition in Rome, as he had already done at Porto-Vecchio and Tunis. + +Time was getting on, however, and Franz deemed it advisable to awaken +Albert; but at the moment he prepared to proceed to his chamber, his +friend entered the room in perfect costume for the day. The anticipated +delights of the Carnival had so run in his head as to make him leave +his pillow long before his usual hour. + +“Now, my excellent Signor Pastrini,” said Franz, addressing his +landlord, “since we are both ready, do you think we may proceed at once +to visit the Count of Monte Cristo?” + +“Most assuredly,” replied he. “The Count of Monte Cristo is always an +early riser; and I can answer for his having been up these two hours.” + +“Then you really consider we shall not be intruding if we pay our +respects to him directly?” + +20155m + + + +“Oh, I am quite sure. I will take all the blame on myself if you find I +have led you into an error.” + +“Well, then, if it be so, are you ready, Albert?” + +“Perfectly.” + +“Let us go and return our best thanks for his courtesy.” + +“Yes, let us do so.” + +The landlord preceded the friends across the landing, which was all +that separated them from the apartments of the count, rang at the bell, +and, upon the door being opened by a servant, said: + +“_I signori Francesi_.” + +The domestic bowed respectfully, and invited them to enter. They passed +through two rooms, furnished in a luxurious manner they had not +expected to see under the roof of Signor Pastrini, and were shown into +an elegantly fitted-up drawing-room. The richest Turkey carpets covered +the floor, and the softest and most inviting couches, easy-chairs, and +sofas, offered their high-piled and yielding cushions to such as +desired repose or refreshment. Splendid paintings by the first masters +were ranged against the walls, intermingled with magnificent trophies +of war, while heavy curtains of costly tapestry were suspended before +the different doors of the room. + +“If your excellencies will please to be seated,” said the man, “I will +let the count know that you are here.” + +And with these words he disappeared behind one of the tapestried +_portières_. As the door opened, the sound of a _guzla_ reached the +ears of the young men, but was almost immediately lost, for the rapid +closing of the door merely allowed one rich swell of harmony to enter. +Franz and Albert looked inquiringly at each other, then at the gorgeous +furnishings of the apartment. Everything seemed more magnificent at a +second view than it had done at their first rapid survey. + +“Well,” said Franz to his friend, “what think you of all this?” + +“Why, upon my soul, my dear fellow, it strikes me that our elegant and +attentive neighbor must either be some successful stock-jobber who has +speculated in the fall of the Spanish funds, or some prince travelling +_incog_.” + +“Hush, hush!” replied Franz; “we shall ascertain who and what he is—he +comes!” + +As Franz spoke, he heard the sound of a door turning on its hinges, and +almost immediately afterwards the tapestry was drawn aside, and the +owner of all these riches stood before the two young men. Albert +instantly rose to meet him, but Franz remained, in a manner, spellbound +on his chair; for in the person of him who had just entered he +recognized not only the mysterious visitant to the Colosseum, and the +occupant of the box at the Teatro Argentina, but also his extraordinary +host of Monte Cristo. + +20157m + + + + + Chapter 35. La Mazzolata + +Gentlemen,” said the Count of Monte Cristo as he entered, “I pray you +excuse me for suffering my visit to be anticipated; but I feared to +disturb you by presenting myself earlier at your apartments; besides, +you sent me word that you would come to me, and I have held myself at +your disposal.” + +“Franz and I have to thank you a thousand times, count,” returned +Albert; “you extricated us from a great dilemma, and we were on the +point of inventing a very fantastic vehicle when your friendly +invitation reached us.” + +“Indeed,” returned the count, motioning the two young men to sit down. +“It was the fault of that blockhead Pastrini, that I did not sooner +assist you in your distress. He did not mention a syllable of your +embarrassment to me, when he knows that, alone and isolated as I am, I +seek every opportunity of making the acquaintance of my neighbors. As +soon as I learned I could in any way assist you, I most eagerly seized +the opportunity of offering my services.” + +The two young men bowed. Franz had, as yet, found nothing to say; he +had come to no determination, and as nothing in the count’s manner +manifested the wish that he should recognize him, he did not know +whether to make any allusion to the past, or wait until he had more +proof; besides, although sure it was he who had been in the box the +previous evening, he could not be equally positive that this was the +man he had seen at the Colosseum. He resolved, therefore, to let things +take their course without making any direct overture to the count. +Moreover, he had this advantage, he was master of the count’s secret, +while the count had no hold on Franz, who had nothing to conceal. +However, he resolved to lead the conversation to a subject which might +possibly clear up his doubts. + +“Count,” said he, “you have offered us places in your carriage, and at +your windows in the Rospoli Palace. Can you tell us where we can obtain +a sight of the Piazza del Popolo?” + +“Ah,” said the count negligently, looking attentively at Morcerf, “is +there not something like an execution upon the Piazza del Popolo?” + +“Yes,” returned Franz, finding that the count was coming to the point +he wished. + +“Stay, I think I told my steward yesterday to attend to this; perhaps I +can render you this slight service also.” + +He extended his hand, and rang the bell thrice. + +“Did you ever occupy yourself,” said he to Franz, “with the employment +of time and the means of simplifying the summoning your servants? I +have. When I ring once, it is for my valet; twice, for my majordomo; +thrice, for my steward,—thus I do not waste a minute or a word. Here he +is.” + +A man of about forty-five or fifty entered, exactly resembling the +smuggler who had introduced Franz into the cavern; but he did not +appear to recognize him. It was evident he had his orders. + +“Monsieur Bertuccio,” said the count, “you have procured me windows +looking on the Piazza del Popolo, as I ordered you yesterday.” + +“Yes, excellency,” returned the steward; “but it was very late.” + +“Did I not tell you I wished for one?” replied the count, frowning. + +“And your excellency has one, which was let to Prince Lobanieff; but I +was obliged to pay a hundred——” + +“That will do—that will do, Monsieur Bertuccio; spare these gentlemen +all such domestic arrangements. You have the window, that is +sufficient. Give orders to the coachman; and be in readiness on the +stairs to conduct us to it.” + +The steward bowed, and was about to quit the room. + +“Ah!” continued the count, “be good enough to ask Pastrini if he has +received the _tavoletta_, and if he can send us an account of the +execution.” + +“There is no need to do that,” said Franz, taking out his tablets; “for +I saw the account, and copied it down.” + +“Very well, you can retire, M. Bertuccio; I need you no longer. Let us +know when breakfast is ready. These gentlemen,” added he, turning to +the two friends, “will, I trust, do me the honor to breakfast with me?” + +“But, my dear count,” said Albert, “we shall abuse your kindness.” + +“Not at all; on the contrary, you will give me great pleasure. You +will, one or other of you, perhaps both, return it to me at Paris. M. +Bertuccio, lay covers for three.” + +He then took Franz’s tablets out of his hand. “‘We announce,’ he read, +in the same tone with which he would have read a newspaper, ‘that +today, the 23rd of February, will be executed Andrea Rondolo, guilty of +murder on the person of the respected and venerated Don César Torlini, +canon of the church of St. John Lateran, and Peppino, called Rocca +Priori, convicted of complicity with the detestable bandit Luigi Vampa, +and the men of his band.’ + +“Hum! ‘The first will be _mazzolato_, the second _decapitato_.’ Yes,” +continued the count, “it was at first arranged in this way; but I think +since yesterday some change has taken place in the order of the +ceremony.” + +“Really?” said Franz. + +“Yes, I passed the evening at the Cardinal Rospigliosi’s, and there +mention was made of something like a pardon for one of the two men.” + +“For Andrea Rondolo?” asked Franz. + +“No,” replied the count, carelessly; “for the other (he glanced at the +tablets as if to recall the name), for Peppino, called Rocca Priori. +You are thus deprived of seeing a man guillotined; but the _mazzolata_ +still remains, which is a very curious punishment when seen for the +first time, and even the second, while the other, as you must know, is +very simple. The _mandaïa_6 never fails, never trembles, never strikes +thirty times ineffectually, like the soldier who beheaded the Count of +Chalais, and to whose tender mercy Richelieu had doubtless recommended +the sufferer. Ah,” added the count, in a contemptuous tone, “do not +tell me of European punishments, they are in the infancy, or rather the +old age, of cruelty.” + +“Really, count,” replied Franz, “one would think that you had studied +the different tortures of all the nations of the world.” + +“There are, at least, few that I have not seen,” said the count coldly. + +“And you took pleasure in beholding these dreadful spectacles?” + +“My first sentiment was horror, the second indifference, the third +curiosity.” + +“Curiosity—that is a terrible word.” + +“Why so? In life, our greatest preoccupation is death; is it not then, +curious to study the different ways by which the soul and body can +part; and how, according to their different characters, temperaments, +and even the different customs of their countries, different persons +bear the transition from life to death, from existence to annihilation? +As for myself, I can assure you of one thing,—the more men you see die, +the easier it becomes to die yourself; and in my opinion, death may be +a torture, but it is not an expiation.” + +“I do not quite understand you,” replied Franz; “pray explain your +meaning, for you excite my curiosity to the highest pitch.” + +“Listen,” said the count, and deep hatred mounted to his face, as the +blood would to the face of any other. “If a man had by unheard-of and +excruciating tortures destroyed your father, your mother, your +betrothed,—a being who, when torn from you, left a desolation, a wound +that never closes, in your breast,—do you think the reparation that +society gives you is sufficient when it interposes the knife of the +guillotine between the base of the occiput and the trapezal muscles of +the murderer, and allows him who has caused us years of moral +sufferings to escape with a few moments of physical pain?” + +“Yes, I know,” said Franz, “that human justice is insufficient to +console us; she can give blood in return for blood, that is all; but +you must demand from her only what it is in her power to grant.” + +“I will put another case to you,” continued the count; “that where +society, attacked by the death of a person, avenges death by death. But +are there not a thousand tortures by which a man may be made to suffer +without society taking the least cognizance of them, or offering him +even the insufficient means of vengeance, of which we have just spoken? +Are there not crimes for which the impalement of the Turks, the augers +of the Persians, the stake and the brand of the Iroquois Indians, are +inadequate tortures, and which are unpunished by society? Answer me, do +not these crimes exist?” + +“Yes,” answered Franz; “and it is to punish them that duelling is +tolerated.” + +“Ah, duelling,” cried the count; “a pleasant manner, upon my soul, of +arriving at your end when that end is vengeance! A man has carried off +your mistress, a man has seduced your wife, a man has dishonored your +daughter; he has rendered the whole life of one who had the right to +expect from Heaven that portion of happiness God has promised to +everyone of his creatures, an existence of misery and infamy; and you +think you are avenged because you send a ball through the head, or pass +a sword through the breast, of that man who has planted madness in your +brain, and despair in your heart. And remember, moreover, that it is +often he who comes off victorious from the strife, absolved of all +crime in the eyes of the world. No, no,” continued the count, “had I to +avenge myself, it is not thus I would take revenge.” + +“Then you disapprove of duelling? You would not fight a duel?” asked +Albert in his turn, astonished at this strange theory. + +“Oh, yes,” replied the count; “understand me, I would fight a duel for +a trifle, for an insult, for a blow; and the more so that, thanks to my +skill in all bodily exercises, and the indifference to danger I have +gradually acquired, I should be almost certain to kill my man. Oh, I +would fight for such a cause; but in return for a slow, profound, +eternal torture, I would give back the same, were it possible; an eye +for an eye, a tooth for a tooth, as the Orientalists say,—our masters +in everything,—those favored creatures who have formed for themselves a +life of dreams and a paradise of realities.” + +“But,” said Franz to the count, “with this theory, which renders you at +once judge and executioner of your own cause, it would be difficult to +adopt a course that would forever prevent your falling under the power +of the law. Hatred is blind, rage carries you away; and he who pours +out vengeance runs the risk of tasting a bitter draught.” + +“Yes, if he be poor and inexperienced, not if he be rich and skilful; +besides, the worst that could happen to him would be the punishment of +which we have already spoken, and which the philanthropic French +Revolution has substituted for being torn to pieces by horses or broken +on the wheel. What matters this punishment, as long as he is avenged? +On my word, I almost regret that in all probability this miserable +Peppino will not be beheaded, as you might have had an opportunity then +of seeing how short a time the punishment lasts, and whether it is +worth even mentioning; but, really this is a most singular conversation +for the Carnival, gentlemen; how did it arise? Ah, I recollect, you +asked for a place at my window; you shall have it; but let us first sit +down to table, for here comes the servant to inform us that breakfast +is ready.” + +As he spoke, a servant opened one of the four doors of the apartment, +saying: + +“_Al suo commodo!_” + +The two young men arose and entered the breakfast-room. + +During the meal, which was excellent, and admirably served, Franz +looked repeatedly at Albert, in order to observe the impressions which +he doubted not had been made on him by the words of their entertainer; +but whether with his usual carelessness he had paid but little +attention to him, whether the explanation of the Count of Monte Cristo +with regard to duelling had satisfied him, or whether the events which +Franz knew of had had their effect on him alone, he remarked that his +companion did not pay the least regard to them, but on the contrary ate +like a man who for the last four or five months had been condemned to +partake of Italian cookery—that is, the worst in the world. + +As for the count, he just touched the dishes; he seemed to fulfil the +duties of a host by sitting down with his guests, and awaited their +departure to be served with some strange or more delicate food. This +brought back to Franz, in spite of himself, the recollection of the +terror with which the count had inspired the Countess G——, and her firm +conviction that the man in the opposite box was a vampire. + +At the end of the breakfast Franz took out his watch. + +“Well,” said the count, “what are you doing?” + +“You must excuse us, count,” returned Franz, “but we have still much to +do.” + +“What may that be?” + +“We have no masks, and it is absolutely necessary to procure them.” + +“Do not concern yourself about that; we have, I think, a private room +in the Piazza del Popolo; I will have whatever costumes you choose +brought to us, and you can dress there.” + +“After the execution?” cried Franz. + +“Before or after, whichever you please.” + +“Opposite the scaffold?” + +“The scaffold forms part of the _fête_.” + +“Count, I have reflected on the matter,” said Franz, “I thank you for +your courtesy, but I shall content myself with accepting a place in +your carriage and at your window at the Rospoli Palace, and I leave you +at liberty to dispose of my place at the Piazza del Popolo.” + +“But I warn you, you will lose a very curious sight,” returned the +count. + +“You will describe it to me,” replied Franz, “and the recital from your +lips will make as great an impression on me as if I had witnessed it. I +have more than once intended witnessing an execution, but I have never +been able to make up my mind; and you, Albert?” + +“I,” replied the viscount,—“I saw Castaing executed, but I think I was +rather intoxicated that day, for I had quitted college the same +morning, and we had passed the previous night at a tavern.” + +“Besides, it is no reason because you have not seen an execution at +Paris, that you should not see one anywhere else; when you travel, it +is to see everything. Think what a figure you will make when you are +asked, ‘How do they execute at Rome?’ and you reply, ‘I do not know!’ +And, besides, they say that the culprit is an infamous scoundrel, who +killed with a log of wood a worthy canon who had brought him up like +his own son. _Diable!_ when a churchman is killed, it should be with a +different weapon than a log, especially when he has behaved like a +father. If you went to Spain, would you not see the bull-fights? Well, +suppose it is a bull-fight you are going to see? Recollect the ancient +Romans of the Circus, and the sports where they killed three hundred +lions and a hundred men. Think of the eighty thousand applauding +spectators, the sage matrons who took their daughters, and the charming +Vestals who made with the thumb of their white hands the fatal sign +that said, ‘Come, despatch the dying.’” + +“Shall you go, then, Albert?” asked Franz. + +“_Ma foi_, yes; like you, I hesitated, but the count’s eloquence +decides me.” + +“Let us go, then,” said Franz, “since you wish it; but on our way to +the Piazza del Popolo, I wish to pass through the Corso. Is this +possible, count?” + +“On foot, yes, in a carriage, no.” + +“I will go on foot, then.” + +“Is it important that you should go that way?” + +“Yes, there is something I wish to see.” + +“Well, we will go by the Corso. We will send the carriage to wait for +us on the Piazza del Popolo, by the Via del Babuino, for I shall be +glad to pass, myself, through the Corso, to see if some orders I have +given have been executed.” + +“Excellency,” said a servant, opening the door, “a man in the dress of +a penitent wishes to speak to you.” + +“Ah! yes,” returned the count, “I know who he is, gentlemen; will you +return to the salon? you will find good cigars on the centre table. I +will be with you directly.” + +The young men rose and returned into the salon, while the count, again +apologizing, left by another door. Albert, who was a great smoker, and +who had considered it no small sacrifice to be deprived of the cigars +of the Café de Paris, approached the table, and uttered a cry of joy at +perceiving some veritable _puros_. + +“Well,” asked Franz, “what think you of the Count of Monte Cristo?” + +“What do I think?” said Albert, evidently surprised at such a question +from his companion; “I think he is a delightful fellow, who does the +honors of his table admirably; who has travelled much, read much, is, +like Brutus, of the Stoic school, and moreover,” added he, sending a +volume of smoke up towards the ceiling, “that he has excellent cigars.” + +Such was Albert’s opinion of the count, and as Franz well knew that +Albert professed never to form an opinion except upon long reflection, +he made no attempt to change it. + +“But,” said he, “did you observe one very singular thing?” + +“What?” + +“How attentively he looked at you.” + +“At me?” + +“Yes.” + +Albert reflected. “Ah,” replied he, sighing, “that is not very +surprising; I have been more than a year absent from Paris, and my +clothes are of a most antiquated cut; the count takes me for a +provincial. The first opportunity you have, undeceive him, I beg, and +tell him I am nothing of the kind.” + +Franz smiled; an instant after the count entered. + +“I am now quite at your service, gentlemen,” said he. “The carriage is +going one way to the Piazza del Popolo, and we will go another; and, if +you please, by the Corso. Take some more of these cigars, M. de +Morcerf.” + +“With all my heart,” returned Albert; “Italian cigars are horrible. +When you come to Paris, I will return all this.” + +“I will not refuse; I intend going there soon, and since you allow me, +I will pay you a visit. Come, we have not any time to lose, it is +half-past twelve—let us set off.” + +All three descended; the coachman received his master’s orders, and +drove down the Via del Babuino. While the three gentlemen walked along +the Piazza di Spagna and the Via Frattina, which led directly between +the Fiano and Rospoli palaces, Franz’s attention was directed towards +the windows of that last palace, for he had not forgotten the signal +agreed upon between the man in the mantle and the Transtevere peasant. + +“Which are your windows?” asked he of the count, with as much +indifference as he could assume. + +“The three last,” returned he, with a negligence evidently unaffected, +for he could not imagine with what intention the question was put. + +Franz glanced rapidly towards the three windows. The side windows were +hung with yellow damask, and the centre one with white damask and a red +cross. The man in the mantle had kept his promise to the Transteverin, +and there could now be no doubt that he was the count. + +The three windows were still untenanted. Preparations were making on +every side; chairs were placed, scaffolds were raised, and windows were +hung with flags. The masks could not appear; the carriages could not +move about; but the masks were visible behind the windows, the +carriages, and the doors. + +Franz, Albert, and the count continued to descend the Corso. As they +approached the Piazza del Popolo, the crowd became more dense, and +above the heads of the multitude two objects were visible: the obelisk, +surmounted by a cross, which marks the centre of the square, and in +front of the obelisk, at the point where the three streets, del +Babuino, del Corso, and di Ripetta, meet, the two uprights of the +scaffold, between which glittered the curved knife of the _mandaïa_. + +At the corner of the street they met the count’s steward, who was +awaiting his master. The window, let at an exorbitant price, which the +count had doubtless wished to conceal from his guests, was on the +second floor of the great palace, situated between the Via del Babuino +and the Monte Pincio. It consisted, as we have said, of a small +dressing-room, opening into a bedroom, and, when the door of +communication was shut, the inmates were quite alone. On chairs were +laid elegant masquerade costumes of blue and white satin. + +20167m + + + +“As you left the choice of your costumes to me,” said the count to the +two friends, “I have had these brought, as they will be the most worn +this year; and they are most suitable, on account of the _confetti_ +(sweetmeats), as they do not show the flour.” + +Franz heard the words of the count but imperfectly, and he perhaps did +not fully appreciate this new attention to their wishes; for he was +wholly absorbed by the spectacle that the Piazza del Popolo presented, +and by the terrible instrument that was in the centre. + +It was the first time Franz had ever seen a guillotine,—we say +guillotine, because the Roman _mandaïa_ is formed on almost the same +model as the French instrument.7 The knife, which is shaped like a +crescent, that cuts with the convex side, falls from a less height, and +that is all the difference. + +Two men, seated on the movable plank on which the victim is laid, were +eating their breakfasts, while waiting for the criminal. Their repast +consisted apparently of bread and sausages. One of them lifted the +plank, took out a flask of wine, drank some, and then passed it to his +companion. These two men were the executioner’s assistants. + +At this sight Franz felt the perspiration start forth upon his brow. + +The prisoners, transported the previous evening from the Carceri Nuove +to the little church of Santa Maria del Popolo, had passed the night, +each accompanied by two priests, in a chapel closed by a grating, +before which were two sentinels, who were relieved at intervals. A +double line of carbineers, placed on each side of the door of the +church, reached to the scaffold, and formed a circle around it, leaving +a path about ten feet wide, and around the guillotine a space of nearly +a hundred feet. + +All the rest of the square was paved with heads. Many women held their +infants on their shoulders, and thus the children had the best view. +The Monte Pincio seemed a vast amphitheatre filled with spectators; the +balconies of the two churches at the corner of the Via del Babuino and +the Via di Ripetta were crammed; the steps even seemed a parti-colored +sea, that was impelled towards the portico; every niche in the wall +held its living statue. What the count said was true—the most curious +spectacle in life is that of death. + +And yet, instead of the silence and the solemnity demanded by the +occasion, laughter and jests arose from the crowd. It was evident that +the execution was, in the eyes of the people, only the commencement of +the Carnival. + +Suddenly the tumult ceased, as if by magic, and the doors of the church +opened. A brotherhood of penitents, clothed from head to foot in robes +of gray sackcloth, with holes for the eyes, and holding in their hands +lighted tapers, appeared first; the chief marched at the head. + +20169m + + + +Behind the penitents came a man of vast stature and proportions. He was +naked, with the exception of cloth drawers at the left side of which +hung a large knife in a sheath, and he bore on his right shoulder a +heavy iron sledge-hammer. + +This man was the executioner. + +He had, moreover, sandals bound on his feet by cords. + +Behind the executioner came, in the order in which they were to die, +first Peppino and then Andrea. Each was accompanied by two priests. +Neither had his eyes bandaged. + +Peppino walked with a firm step, doubtless aware of what awaited him. +Andrea was supported by two priests. Each of them, from time to time, +kissed the crucifix a confessor held out to them. + +At this sight alone Franz felt his legs tremble under him. He looked at +Albert—he was as white as his shirt, and mechanically cast away his +cigar, although he had not half smoked it. The count alone seemed +unmoved—nay, more, a slight color seemed striving to rise in his pale +cheeks. His nostrils dilated like those of a wild beast that scents its +prey, and his lips, half opened, disclosed his white teeth, small and +sharp like those of a jackal. And yet his features wore an expression +of smiling tenderness, such as Franz had never before witnessed in +them; his black eyes especially were full of kindness and pity. + +However, the two culprits advanced, and as they approached their faces +became visible. Peppino was a handsome young man of four or +five-and-twenty, bronzed by the sun; he carried his head erect, and +seemed on the watch to see on which side his liberator would appear. +Andrea was short and fat; his visage, marked with brutal cruelty, did +not indicate age; he might be thirty. In prison he had suffered his +beard to grow; his head fell on his shoulder, his legs bent beneath +him, and his movements were apparently automatic and unconscious. + +“I thought,” said Franz to the count, “that you told me there would be +but one execution.” + +“I told you true,” replied he coldly. + +“And yet here are two culprits.” + +“Yes; but only one of these two is about to die; the other has many +years to live.” + +“If the pardon is to come, there is no time to lose.” + +“And see, here it is,” said the count. At the moment when Peppino +reached the foot of the _mandaïa_, a priest arrived in some haste, +forced his way through the soldiers, and, advancing to the chief of the +brotherhood, gave him a folded paper. The piercing eye of Peppino had +noticed all. The chief took the paper, unfolded it, and, raising his +hand, “Heaven be praised, and his Holiness also,” said he in a loud +voice; “here is a pardon for one of the prisoners!” + +“A pardon!” cried the people with one voice; “a pardon!” + +At this cry Andrea raised his head. + +“Pardon for whom?” cried he. + +Peppino remained breathless. + +“A pardon for Peppino, called Rocca Priori,” said the principal friar. +And he passed the paper to the officer commanding the carbineers, who +read and returned it to him. + +“For Peppino!” cried Andrea, who seemed roused from the torpor in which +he had been plunged. “Why for him and not for me? We ought to die +together. I was promised he should die with me. You have no right to +put me to death alone. I will not die alone—I will not!” + +And he broke from the priests struggling and raving like a wild beast, +and striving desperately to break the cords that bound his hands. The +executioner made a sign, and his two assistants leaped from the +scaffold and seized him. + +“What is going on?” asked Franz of the count; for, as all the talk was +in the Roman dialect, he had not perfectly understood it. + +“Do you not see?” returned the count, “that this human creature who is +about to die is furious that his fellow-sufferer does not perish with +him? and, were he able, he would rather tear him to pieces with his +teeth and nails than let him enjoy the life he himself is about to be +deprived of. Oh, man, man—race of crocodiles,” cried the count, +extending his clenched hands towards the crowd, “how well do I +recognize you there, and that at all times you are worthy of +yourselves!” + +Meanwhile Andrea and the two executioners were struggling on the +ground, and he kept exclaiming, “He ought to die!—he shall die!—I will +not die alone!” + +“Look, look,” cried the count, seizing the young men’s hands; “look, +for on my soul it is curious. Here is a man who had resigned himself to +his fate, who was going to the scaffold to die—like a coward, it is +true, but he was about to die without resistance. Do you know what gave +him strength? do you know what consoled him? It was, that another +partook of his punishment—that another partook of his anguish—that +another was to die before him! Lead two sheep to the butcher’s, two +oxen to the slaughterhouse, and make one of them understand that his +companion will not die; the sheep will bleat for pleasure, the ox will +bellow with joy. But man—man, whom God created in his own image—man, +upon whom God has laid his first, his sole commandment, to love his +neighbor—man, to whom God has given a voice to express his +thoughts—what is his first cry when he hears his fellow-man is saved? A +blasphemy. Honor to man, this masterpiece of nature, this king of the +creation!” + +And the count burst into a laugh; a terrible laugh, that showed he must +have suffered horribly to be able thus to laugh. + +However, the struggle still continued, and it was dreadful to witness. +The two assistants carried Andrea up to the scaffold; the people all +took part against Andrea, and twenty thousand voices cried, “Put him to +death! put him to death!” + +Franz sprang back, but the count seized his arm, and held him before +the window. + +“What are you doing?” said he. “Do you pity him? If you heard the cry +of ‘Mad dog!’ you would take your gun—you would unhesitatingly shoot +the poor beast, who, after all, was only guilty of having been bitten +by another dog. And yet you pity a man who, without being bitten by one +of his race, has yet murdered his benefactor; and who, now unable to +kill anyone, because his hands are bound, wishes to see his companion +in captivity perish. No, no—look, look!” + +20172m + + + +The recommendation was needless. Franz was fascinated by the horrible +spectacle. + +The two assistants had borne Andrea to the scaffold, and there, in +spite of his struggles, his bites, and his cries, had forced him to his +knees. During this time the executioner had raised his mace, and signed +to them to get out of the way; the criminal strove to rise, but, ere he +had time, the mace fell on his left temple. A dull and heavy sound was +heard, and the man dropped like an ox on his face, and then turned over +on his back. + +The executioner let fall his mace, drew his knife, and with one stroke +opened his throat, and mounting on his stomach, stamped violently on it +with his feet. At every stroke a jet of blood sprang from the wound. + +This time Franz could contain himself no longer, but sank, half +fainting, into a seat. + +Albert, with his eyes closed, was standing grasping the +window-curtains. + +The count was erect and triumphant, like the Avenging Angel! + + + + Chapter 36. The Carnival at Rome + +When Franz recovered his senses, he saw Albert drinking a glass of +water, of which, to judge from his pallor, he stood in great need; and +the count, who was assuming his masquerade costume. He glanced +mechanically towards the piazza—the scene was wholly changed; scaffold, +executioners, victims, all had disappeared; only the people remained, +full of noise and excitement. The bell of Monte Citorio, which only +sounds on the pope’s decease and the opening of the Carnival, was +ringing a joyous peal. + +“Well,” asked he of the count, “what has, then, happened?” + +“Nothing,” replied the count; “only, as you see, the Carnival has +commenced. Make haste and dress yourself.” + +“In fact,” said Franz, “this horrible scene has passed away like a +dream.” + +“It is but a dream, a nightmare, that has disturbed you.” + +“Yes, that I have suffered; but the culprit?” + +“That is a dream also; only he has remained asleep, while you have +awakened; and who knows which of you is the most fortunate?” + +“But Peppino—what has become of him?” + +“Peppino is a lad of sense, who, unlike most men, who are happy in +proportion as they are noticed, was delighted to see that the general +attention was directed towards his companion. He profited by this +distraction to slip away among the crowd, without even thanking the +worthy priests who accompanied him. Decidedly man is an ungrateful and +egotistical animal. But dress yourself; see, M. de Morcerf sets you the +example.” + +Albert was drawing on the satin pantaloon over his black trousers and +varnished boots. + +“Well, Albert,” said Franz, “do you feel much inclined to join the +revels? Come, answer frankly.” + +“_Ma foi_, no,” returned Albert. “But I am really glad to have seen +such a sight; and I understand what the count said—that when you have +once habituated yourself to a similar spectacle, it is the only one +that causes you any emotion.” + +20175m + + + +“Without reflecting that this is the only moment in which you can study +character,” said the count; “on the steps of the scaffold death tears +off the mask that has been worn through life, and the real visage is +disclosed. It must be allowed that Andrea was not very handsome, the +hideous scoundrel! Come, dress yourselves, gentlemen, dress +yourselves.” + +Franz felt it would be ridiculous not to follow his two companions’ +example. He assumed his costume, and fastened on the mask that scarcely +equalled the pallor of his own face. Their toilet finished, they +descended; the carriage awaited them at the door, filled with +sweetmeats and bouquets. They fell into the line of carriages. + +It is difficult to form an idea of the perfect change that had taken +place. Instead of the spectacle of gloomy and silent death, the Piazza +del Popolo presented a spectacle of gay and noisy mirth and revelry. A +crowd of masks flowed in from all sides, emerging from the doors, +descending from the windows. From every street and every corner drove +carriages filled with clowns, harlequins, dominoes, mummers, +pantomimists, Transteverins, knights, and peasants, screaming, +fighting, gesticulating, throwing eggs filled with flour, confetti, +nosegays, attacking, with their sarcasms and their missiles, friends +and foes, companions and strangers, indiscriminately, and no one took +offence, or did anything but laugh. + +Franz and Albert were like men who, to drive away a violent sorrow, +have recourse to wine, and who, as they drink and become intoxicated, +feel a thick veil drawn between the past and the present. They saw, or +rather continued to see, the image of what they had witnessed; but +little by little the general vertigo seized them, and they felt +themselves obliged to take part in the noise and confusion. + +A handful of confetti that came from a neighboring carriage, and which, +while it covered Morcerf and his two companions with dust, pricked his +neck and that portion of his face uncovered by his mask like a hundred +pins, incited him to join in the general combat, in which all the masks +around him were engaged. He rose in his turn, and seizing handfuls of +confetti and sweetmeats, with which the carriage was filled, cast them +with all the force and skill he was master of. + +20177m + + + +The strife had fairly begun, and the recollection of what they had seen +half an hour before was gradually effaced from the young men’s minds, +so much were they occupied by the gay and glittering procession they +now beheld. + +As for the Count of Monte Cristo, he had never for an instant shown any +appearance of having been moved. Imagine the large and splendid Corso, +bordered from one end to the other with lofty palaces, with their +balconies hung with carpets, and their windows with flags. At these +balconies are three hundred thousand spectators—Romans, Italians, +strangers from all parts of the world, the united aristocracy of birth, +wealth, and genius. Lovely women, yielding to the influence of the +scene, bend over their balconies, or lean from their windows, and +shower down confetti, which are returned by bouquets; the air seems +darkened with the falling confetti and flying flowers. In the streets +the lively crowd is dressed in the most fantastic costumes—gigantic +cabbages walk gravely about, buffaloes’ heads bellow from men’s +shoulders, dogs walk on their hind legs; in the midst of all this a +mask is lifted, and, as in Callot’s Temptation of St. Anthony, a lovely +face is exhibited, which we would fain follow, but from which we are +separated by troops of fiends. This will give a faint idea of the +Carnival at Rome. + +At the second turn, the count stopped the carriage, and requested +permission to withdraw, leaving the vehicle at their disposal. Franz +looked up—they were opposite the Rospoli Palace. At the centre window, +the one hung with white damask with a red cross, was a blue domino, +beneath which Franz’s imagination easily pictured the beautiful Greek +of the Argentina. + +“Gentlemen,” said the count, springing out, “when you are tired of +being actors, and wish to become spectators of this scene, you know you +have places at my windows. In the meantime, dispose of my coachman, my +carriage, and my servants.” + +We have forgotten to mention, that the count’s coachman was attired in +a bear-skin, exactly resembling Odry’s in _The Bear and the Pasha_; and +the two footmen behind were dressed up as green monkeys, with spring +masks, with which they made grimaces at everyone who passed. + +Franz thanked the count for his attention. As for Albert, he was busily +occupied throwing bouquets at a carriage full of Roman peasants that +was passing near him. Unfortunately for him, the line of carriages +moved on again, and while he descended the Piazza del Popolo, the other +ascended towards the Palazzo di Venezia. + +“Ah, my dear fellow,” said he to Franz; “you did not see?” + +“What?” + +“There,—that calash filled with Roman peasants.” + +“No.” + +“Well, I am convinced they are all charming women.” + +“How unfortunate that you were masked, Albert,” said Franz; “here was +an opportunity of making up for past disappointments.” + +“Oh,” replied he, half laughing, half serious; “I hope the Carnival +will not pass without some amends in one shape or the other.” + +But, in spite of Albert’s hope, the day passed unmarked by any +incident, excepting two or three encounters with the carriage full of +Roman peasants. At one of these encounters, accidentally or purposely, +Albert’s mask fell off. He instantly rose and cast the remainder of the +bouquets into the carriage. Doubtless one of the charming females +Albert had detected beneath their coquettish disguise was touched by +his gallantry; for, as the carriage of the two friends passed her, she +threw a bunch of violets. Albert seized it, and as Franz had no reason +to suppose it was meant for him, he suffered Albert to retain it. +Albert placed it in his button-hole, and the carriage went triumphantly +on. + +“Well,” said Franz to him; “there is the beginning of an adventure.” + +“Laugh if you please—I really think so. So I will not abandon this +bouquet.” + +“_Pardieu_,” returned Franz, laughing, “in token of your ingratitude.” + +The jest, however, soon appeared to become earnest; for when Albert and +Franz again encountered the carriage with the _contadini_, the one who +had thrown the violets to Albert, clapped her hands when she beheld +them in his button-hole. + +“Bravo, bravo,” said Franz; “things go wonderfully. Shall I leave you? +Perhaps you would prefer being alone?” + +“No,” replied he; “I will not be caught like a fool at a first +disclosure by a rendezvous under the clock, as they say at the +opera-balls. If the fair peasant wishes to carry matters any further, +we shall find her, or rather, she will find us tomorrow; then she will +give me some sign or other, and I shall know what I have to do.” + +“On my word,” said Franz, “you are as wise as Nestor and prudent as +Ulysses, and your fair Circe must be very skilful or very powerful if +she succeed in changing you into a beast of any kind.” + +Albert was right; the fair unknown had resolved, doubtless, to carry +the intrigue no farther; for although the young men made several more +turns, they did not again see the calash, which had turned up one of +the neighboring streets. Then they returned to the Rospoli Palace; but +the count and the blue domino had also disappeared; the two windows, +hung with yellow damask, were still occupied by the persons whom the +count had invited. + +At this moment the same bell that had proclaimed the beginning of the +mascherata sounded the retreat. The file on the Corso broke the line, +and in a second all the carriages had disappeared. Franz and Albert +were opposite the Via delle Muratte; the coachman, without saying a +word, drove up it, passed along the Piazza di Spagna and the Rospoli +Palace and stopped at the door of the hotel. Signor Pastrini came to +the door to receive his guests. + +Franz hastened to inquire after the count, and to express regret that +he had not returned in sufficient time; but Pastrini reassured him by +saying that the Count of Monte Cristo had ordered a second carriage for +himself, and that it had gone at four o’clock to fetch him from the +Rospoli Palace. + +The count had, moreover, charged him to offer the two friends the key +of his box at the Argentina. Franz questioned Albert as to his +intentions; but Albert had great projects to put into execution before +going to the theatre; and instead of making any answer, he inquired if +Signor Pastrini could procure him a tailor. + +“A tailor,” said the host; “and for what?” + +“To make us between now and tomorrow two Roman peasant costumes,” +returned Albert. + +The host shook his head. + +“To make you two costumes between now and tomorrow? I ask your +excellencies’ pardon, but this is quite a French demand; for the next +week you will not find a single tailor who would consent to sew six +buttons on a waistcoat if you paid him a crown a piece for each +button.” + +“Then I must give up the idea?” + +“No; we have them ready-made. Leave all to me; and tomorrow, when you +awake, you shall find a collection of costumes with which you will be +satisfied.” + +“My dear Albert,” said Franz, “leave all to our host; he has already +proved himself full of resources; let us dine quietly, and afterwards +go and see _l’Italienne à Alger!_ + +“Agreed,” returned Albert; “but remember, Signor Pastrini, that both my +friend and myself attach the greatest importance to having tomorrow the +costumes we have asked for.” + +The host again assured them they might rely on him, and that their +wishes should be attended to; upon which Franz and Albert mounted to +their apartments, and proceeded to disencumber themselves of their +costumes. Albert, as he took off his dress, carefully preserved the +bunch of violets; it was his token reserved for the morrow. + +The two friends sat down to table; but they could not refrain from +remarking the difference between the Count of Monte Cristo’s table and +that of Signor Pastrini. Truth compelled Franz, in spite of the dislike +he seemed to have taken to the count, to confess that the advantage was +not on Pastrini’s side. During dessert, the servant inquired at what +time they wished for the carriage. Albert and Franz looked at each +other, fearing really to abuse the count’s kindness. The servant +understood them. + +“His excellency the Count of Monte Cristo had,” he said, “given +positive orders that the carriage was to remain at their lordships’ +orders all day, and they could therefore dispose of it without fear of +indiscretion.” + +They resolved to profit by the count’s courtesy, and ordered the horses +to be harnessed, while they substituted evening dress for that which +they had on, and which was somewhat the worse for the numerous combats +they had sustained. + +20181m + + + +This precaution taken, they went to the theatre, and installed +themselves in the count’s box. During the first act, the Countess G—— +entered. Her first look was at the box where she had seen the count the +previous evening, so that she perceived Franz and Albert in the place +of the very person concerning whom she had expressed so strange an +opinion to Franz. Her opera-glass was so fixedly directed towards them, +that Franz saw it would be cruel not to satisfy her curiosity; and, +availing himself of one of the privileges of the spectators of the +Italian theatres, who use their boxes to hold receptions, the two +friends went to pay their respects to the countess. Scarcely had they +entered, when she motioned to Franz to assume the seat of honor. +Albert, in his turn, sat behind. + +“Well,” said she, hardly giving Franz time to sit down, “it seems you +have nothing better to do than to make the acquaintance of this new +Lord Ruthven, and you are already the best friends in the world.” + +“Without being so far advanced as that, my dear countess,” returned +Franz, “I cannot deny that we have abused his good nature all day.” + +“All day?” + +“Yes; this morning we breakfasted with him; we rode in his carriage all +day, and now we have taken possession of his box.” + +“You know him, then?” + +“Yes, and no.” + +“How so?” + +“It is a long story.” + +“Tell it to me.” + +“It would frighten you too much.” + +“So much the more reason.” + +“At least wait until the story has a conclusion.” + +“Very well; I prefer complete histories; but tell me how you made his +acquaintance? Did anyone introduce you to him?” + +“No; it was he who introduced himself to us.” + +“When?” + +“Last night, after we left you.” + +“Through what medium?” + +“The very prosaic one of our landlord.” + +“He is staying, then, at the Hôtel de Londres with you?” + +“Not only in the same hotel, but on the same floor.” + +“What is his name; for, of course, you know?” + +“The Count of Monte Cristo.” + +“That is not a family name?” + +“No, it is the name of the island he has purchased.” + +“And he is a count?” + +“A Tuscan count.” + +“Well, we must put up with that,” said the countess, who was herself +from one of the oldest Venetian families. “What sort of a man is he?” + +“Ask the Vicomte de Morcerf.” + +“You hear, M. de Morcerf, I am referred to you,” said the countess. + +“We should be very hard to please, madam,” returned Albert, “did we not +think him delightful. A friend of ten years’ standing could not have +done more for us, or with a more perfect courtesy.” + +“Come,” observed the countess, smiling, “I see my vampire is only some +millionaire, who has taken the appearance of Lara in order to avoid +being confounded with M. de Rothschild; and you have seen her?” + +“Her?” + +20183m + + + +“The beautiful Greek of yesterday.” + +“No; we heard, I think, the sound of her _guzla_, but she remained +perfectly invisible.” + +“When you say invisible,” interrupted Albert, “it is only to keep up +the mystery; for whom do you take the blue domino at the window with +the white curtains?” + +“Where was this window with white hangings?” asked the countess. + +“At the Rospoli Palace.” + +“The count had three windows at the Rospoli Palace?” + +“Yes. Did you pass through the Corso?” + +“Yes.” + +“Well, did you notice two windows hung with yellow damask, and one with +white damask with a red cross? Those were the count’s windows.” + +“Why, he must be a nabob. Do you know what those three windows were +worth?” + +“Two or three hundred Roman crowns?” + +“Two or three thousand.” + +“The deuce!” + +“Does his island produce him such a revenue?” + +“It does not bring him a bajocco.” + +“Then why did he purchase it?” + +“For a whim.” + +“He is an original, then?” + +“In reality,” observed Albert, “he seemed to me somewhat eccentric; +were he at Paris, and a frequenter of the theatres, I should say he was +a poor devil literally mad. This morning he made two or three exits +worthy of Didier or Anthony.” + +At this moment a fresh visitor entered, and, according to custom, Franz +gave up his seat to him. This circumstance had, moreover, the effect of +changing the conversation; an hour afterwards the two friends returned +to their hotel. + +Signor Pastrini had already set about procuring their disguises for the +morrow; and he assured them that they would be perfectly satisfied. The +next morning, at nine o’clock, he entered Franz’s room, followed by a +tailor, who had eight or ten Roman peasant costumes on his arm; they +selected two exactly alike, and charged the tailor to sew on each of +their hats about twenty yards of ribbon, and to procure them two of the +long silk sashes of different colors with which the lower orders +decorate themselves on fête days. + +Albert was impatient to see how he looked in his new dress—a jacket and +breeches of blue velvet, silk stockings with clocks, shoes with +buckles, and a silk waistcoat. This picturesque attire set him off to +great advantage; and when he had bound the scarf around his waist, and +when his hat, placed coquettishly on one side, let fall on his shoulder +a stream of ribbons, Franz was forced to confess that costume has much +to do with the physical superiority we accord to certain nations. The +Turks used to be so picturesque with their long and flowing robes, but +are they not now hideous with their blue frocks buttoned up to the +chin, and their red caps, which make them look like a bottle of wine +with a red seal? Franz complimented Albert, who looked at himself in +the glass with an unequivocal smile of satisfaction. They were thus +engaged when the Count of Monte Cristo entered. + +20185m + + + +“Gentlemen,” said he, “although a companion is agreeable, perfect +freedom is sometimes still more agreeable. I come to say that today, +and for the remainder of the Carnival, I leave the carriage entirely at +your disposal. The host will tell you I have three or four more, so +that you will not inconvenience me in any way. Make use of it, I pray +you, for your pleasure or your business.” + +The young men wished to decline, but they could find no good reason for +refusing an offer which was so agreeable to them. The Count of Monte +Cristo remained a quarter of an hour with them, conversing on all +subjects with the greatest ease. He was, as we have already said, +perfectly well acquainted with the literature of all countries. A +glance at the walls of his salon proved to Franz and Albert that he was +a connoisseur of pictures. A few words he let fall showed them that he +was no stranger to the sciences, and he seemed much occupied with +chemistry. The two friends did not venture to return the count the +breakfast he had given them; it would have been too absurd to offer him +in exchange for his excellent table the very inferior one of Signor +Pastrini. They told him so frankly, and he received their excuses with +the air of a man who appreciated their delicacy. Albert was charmed +with the count’s manners, and he was only prevented from recognizing +him for a perfect gentleman by reason of his varied knowledge. + +The permission to do what he liked with the carriage pleased him above +all, for the fair peasants had appeared in a most elegant carriage the +preceding evening, and Albert was not sorry to be upon an equal footing +with them. At half-past one they descended, the coachman and footman +had put on their livery over their disguises, which gave them a more +ridiculous appearance than ever, and which gained them the applause of +Franz and Albert. Albert had fastened the faded bunch of violets to his +button-hole. At the first sound of the bell they hastened into the +Corso by the Via Vittoria. + +At the second turn, a bunch of fresh violets, thrown from a carriage +filled with harlequins, indicated to Albert that, like himself and his +friend, the peasants had changed their costume also; and whether it was +the result of chance, or whether a similar feeling had possessed them +both, while he had donned their costume, they had assumed his. + +Albert placed the fresh bouquet in his button-hole, but he kept the +faded one in his hand; and when he again met the calash, he raised it +to his lips, an action which seemed greatly to amuse not only the fair +lady who had thrown it, but her joyous companions also. The day was as +gay as the preceding one, perhaps even more animated and noisy; the +count appeared for an instant at his window, but when they again passed +he had disappeared. It is almost needless to say that the flirtation +between Albert and the fair peasant continued all day. + +In the evening, on his return, Franz found a letter from the embassy, +informing him that he would have the honor of being received by his +holiness the next day. At each previous visit he had made to Rome, he +had solicited and obtained the same favor; and incited as much by a +religious feeling as by gratitude, he was unwilling to quit the capital +of the Christian world without laying his respectful homage at the feet +of one of St. Peter’s successors who has set the rare example of all +the virtues. He did not then think of the Carnival, for in spite of his +condescension and touching kindness, one cannot incline one’s self +without awe before the venerable and noble old man called Gregory XVI. + +On his return from the Vatican, Franz carefully avoided the Corso; he +brought away with him a treasure of pious thoughts, to which the mad +gayety of the maskers would have been profanation. + +At ten minutes past five Albert entered overjoyed. The harlequin had +reassumed her peasant’s costume, and as she passed she raised her mask. +She was charming. Franz congratulated Albert, who received his +congratulations with the air of a man conscious that they are merited. +He had recognized by certain unmistakable signs, that his fair +_incognita_ belonged to the aristocracy. He had made up his mind to +write to her the next day. + +Franz remarked, while he gave these details, that Albert seemed to have +something to ask of him, but that he was unwilling to ask it. He +insisted upon it, declaring beforehand that he was willing to make any +sacrifice the other wished. + +Albert let himself be pressed just as long as friendship required, and +then avowed to Franz that he would do him a great favor by allowing him +to occupy the carriage alone the next day. Albert attributed to Franz’s +absence the extreme kindness of the fair peasant in raising her mask. +Franz was not sufficiently egotistical to stop Albert in the middle of +an adventure that promised to prove so agreeable to his curiosity and +so flattering to his vanity. He felt assured that the perfect +indiscretion of his friend would duly inform him of all that happened; +and as, during three years that he had travelled all over Italy, a +similar piece of good fortune had never fallen to his share, Franz was +by no means sorry to learn how to act on such an occasion. He therefore +promised Albert that he would content himself the morrow with +witnessing the Carnival from the windows of the Rospoli Palace. + +The next morning he saw Albert pass and repass, holding an enormous +bouquet, which he doubtless meant to make the bearer of his amorous +epistle. This belief was changed into certainty when Franz saw the +bouquet (conspicuous by a circle of white camellias) in the hand of a +charming harlequin dressed in rose-colored satin. + +The evening was no longer joy, but delirium. Albert nothing doubted but +that the fair unknown would reply in the same manner. Franz anticipated +his wishes by saying that the noise fatigued him, and that he should +pass the next day in writing and looking over his journal. Albert was +not deceived, for the next evening Franz saw him enter triumphantly +shaking a folded paper which he held by one corner. + +“Well,” said he, “was I mistaken?” + +“She has answered you!” cried Franz. + +“Read.” + +This word was pronounced in a manner impossible to describe. Franz took +the letter, and read: + +“Tuesday evening, at seven o’clock, descend from your carriage opposite +the Via dei Pontefici, and follow the Roman peasant who snatches your +torch from you. When you arrive at the first step of the church of San +Giacomo, be sure to fasten a knot of rose-colored ribbons to the +shoulder of your harlequin costume, in order that you may be +recognized. Until then you will not see me. —Constancy and Discretion.” + +“Well,” asked he, when Franz had finished, “what do you think of that?” + +“I think that the adventure is assuming a very agreeable appearance.” + +“I think so, also,” replied Albert; “and I very much fear you will go +alone to the Duke of Bracciano’s ball.” + +Franz and Albert had received that morning an invitation from the +celebrated Roman banker. + +“Take care, Albert,” said Franz. “All the nobility of Rome will be +present, and if your fair _incognita_ belong to the higher class of +society, she must go there.” + +“Whether she goes there or not, my opinion is still the same,” returned +Albert. “You have read the letter?” + +“Yes.” + +“You know how imperfectly the women of the _mezzo cito_ are educated in +Italy?” (This is the name of the lower class.) + +“Yes.” + +“Well, read the letter again. Look at the writing, and find if you can, +any blemish in the language or orthography.” The writing was, in +reality, charming, and the orthography irreproachable. + +“You are born to good fortune,” said Franz, as he returned the letter. + +“Laugh as much as you will,” replied Albert, “I am in love.” + +“You alarm me,” cried Franz. “I see that I shall not only go alone to +the Duke of Bracciano’s, but also return to Florence alone.” + +“If my unknown be as amiable as she is beautiful,” said Albert, “I +shall fix myself at Rome for six weeks, at least. I adore Rome, and I +have always had a great taste for archæology.” + +20189m + + + +“Come, two or three more such adventures, and I do not despair of +seeing you a member of the Academy.” + +Doubtless Albert was about to discuss seriously his right to the +academic chair when they were informed that dinner was ready. Albert’s +love had not taken away his appetite. He hastened with Franz to seat +himself, free to recommence the discussion after dinner. After dinner, +the Count of Monte Cristo was announced. They had not seen him for two +days. Signor Pastrini informed them that business had called him to +Civita Vecchia. He had started the previous evening, and had only +returned an hour since. He was charming. Whether he kept a watch over +himself, or whether by accident he did not sound the acrimonious chords +that in other circumstances had been touched, he was tonight like +everybody else. + +The man was an enigma to Franz. The count must feel sure that Franz +recognized him; and yet he had not let fall a single word indicating +any previous acquaintance between them. On his side, however great +Franz’s desire was to allude to their former interview, the fear of +being disagreeable to the man who had loaded him and his friend with +kindness prevented him from mentioning it. + +The count had learned that the two friends had sent to secure a box at +the Argentina Theatre, and were told they were all let. In consequence, +he brought them the key of his own—at least such was the apparent +motive of his visit. Franz and Albert made some difficulty, alleging +their fear of depriving him of it; but the count replied that, as he +was going to the Palli Theatre, the box at the Argentina Theatre would +be lost if they did not profit by it. This assurance determined the two +friends to accept it. + +Franz had by degrees become accustomed to the count’s pallor, which had +so forcibly struck him at their first meeting. He could not refrain +from admiring the severe beauty of his features, the only defect, or +rather the principal quality of which was the pallor. Truly, a Byronic +hero! Franz could not, we will not say see him, but even think of him +without imagining his stern head upon Manfred’s shoulders, or beneath +Lara’s helmet. His forehead was marked with the line that indicates the +constant presence of bitter thoughts; he had the fiery eyes that seem +to penetrate to the very soul, and the haughty and disdainful upper lip +that gives to the words it utters a peculiar character that impresses +them on the minds of those to whom they are addressed. + +The count was no longer young. He was at least forty; and yet it was +easy to understand that he was formed to rule the young men with whom +he associated at present. And, to complete his resemblance with the +fantastic heroes of the English poet, the count seemed to have the +power of fascination. Albert was constantly expatiating on their good +fortune in meeting such a man. Franz was less enthusiastic; but the +count exercised over him also the ascendency a strong mind always +acquires over a mind less domineering. He thought several times of the +project the count had of visiting Paris; and he had no doubt but that, +with his eccentric character, his characteristic face, and his colossal +fortune, he would produce a great effect there. And yet he did not wish +to be at Paris when the count was there. + +The evening passed as evenings mostly pass at Italian theatres; that +is, not in listening to the music, but in paying visits and conversing. +The Countess G—— wished to revive the subject of the count, but Franz +announced he had something far newer to tell her, and, in spite of +Albert’s demonstrations of false modesty, he informed the countess of +the great event which had preoccupied them for the last three days. As +similar intrigues are not uncommon in Italy, if we may credit +travellers, the comtess did not manifest the least incredulity, but +congratulated Albert on his success. They promised, upon separating, to +meet at the Duke of Bracciano’s ball, to which all Rome was invited. + +The heroine of the bouquet kept her word; she gave Albert no sign of +her existence the morrow or the day after. + +At length Tuesday came, the last and most tumultuous day of the +Carnival. On Tuesday, the theatres open at ten o’clock in the morning, +as Lent begins after eight at night. On Tuesday, all those who through +want of money, time, or enthusiasm, have not been to see the Carnival +before, mingle in the gayety, and contribute to the noise and +excitement. From two o’clock till five Franz and Albert followed in the +_fête_, exchanging handfuls of _confetti_ with the other carriages and +the pedestrians, who crowded amongst the horses’ feet and the carriage +wheels without a single accident, a single dispute, or a single fight. + +The _fêtes_ are veritable pleasure days to the Italians. The author of +this history, who has resided five or six years in Italy, does not +recollect to have ever seen a ceremony interrupted by one of those +events so common in other countries. Albert was triumphant in his +harlequin costume. A knot of rose-colored ribbons fell from his +shoulder almost to the ground. In order that there might be no +confusion, Franz wore his peasant’s costume. + +As the day advanced, the tumult became greater. There was not on the +pavement, in the carriages, at the windows, a single tongue that was +silent, a single arm that did not move. It was a human storm, made up +of a thunder of cries, and a hail of sweetmeats, flowers, eggs, +oranges, and nosegays. + +At three o’clock the sound of fireworks, let off on the Piazza del +Popolo and the Piazza di Venezia (heard with difficulty amid the din +and confusion) announced that the races were about to begin. + +The races, like the _moccoli_, are one of the episodes peculiar to the +last days of the Carnival. At the sound of the fireworks the carriages +instantly broke ranks, and retired by the adjacent streets. All these +evolutions are executed with an inconceivable address and marvellous +rapidity, without the police interfering in the matter. The pedestrians +ranged themselves against the walls; then the trampling of horses and +the clashing of steel were heard. A detachment of carbineers, fifteen +abreast, galloped up the Corso in order to clear it for the _barberi_. +When the detachment arrived at the Piazza di Venezia, a second volley +of fireworks was discharged, to announce that the street was clear. + +Almost instantly, in the midst of a tremendous and general outcry, +seven or eight horses, excited by the shouts of three hundred thousand +spectators, passed by like lightning. Then the Castle of Saint Angelo +fired three cannon to indicate that number three had won. + +Immediately, without any other signal, the carriages moved on, flowing +on towards the Corso, down all the streets, like torrents pent up for a +while, which again flow into the parent river; and the immense stream +again continued its course between its two granite banks. + +A new source of noise and movement was added to the crowd. The sellers +of _moccoletti_ entered on the scene. The _moccoli_, or _moccoletti_, +are candles which vary in size from the pascal taper to the rushlight, +and which give to each actor in the great final scene of the Carnival +two very serious problems to grapple with,—first, how to keep his own +_moccoletto_ alight; and secondly, how to extinguish the _moccoletti_ +of others. The _moccoletto_ is like life: man has found but one means +of transmitting it, and that one comes from God. But he has discovered +a thousand means of taking it away, and the devil has somewhat aided +him. The _moccoletto_ is kindled by approaching it to a light. But who +can describe the thousand means of extinguishing the _moccoletto_?—the +gigantic bellows, the monstrous extinguishers, the superhuman fans. +Everyone hastened to purchase _moccoletti_—Franz and Albert among the +rest. + +The night was rapidly approaching; and already, at the cry of +“_Moccoletti_!” repeated by the shrill voices of a thousand vendors, +two or three stars began to burn among the crowd. It was a signal. At +the end of ten minutes fifty thousand lights glittered, descending from +the Palazzo di Venezia to the Piazza del Popolo, and mounting from the +Piazza del Popolo to the Palazzo di Venezia. It seemed like the _fête_ +of Jack-o’-lanterns. + +It is impossible to form any idea of it without having seen it. Suppose +that all the stars had descended from the sky and mingled in a wild +dance on the face of the earth; the whole accompanied by cries that +were never heard in any other part of the world. The _facchino_ follows +the prince, the Transteverin the citizen, everyone blowing, +extinguishing, relighting. Had old Æolus appeared at this moment, he +would have been proclaimed king of the _moccoli_, and Aquilo the +heir-presumptive to the throne. + +This battle of folly and flame continued for two hours; the Corso was +light as day; the features of the spectators on the third and fourth +stories were visible. + +Every five minutes Albert took out his watch; at length it pointed to +seven. The two friends were in the Via dei Pontefici. Albert sprang +out, bearing his _moccoletto_ in his hand. Two or three masks strove to +knock his _moccoletto_ out of his hand; but Albert, a first-rate +pugilist, sent them rolling in the street, one after the other, and +continued his course towards the church of San Giacomo. + +The steps were crowded with masks, who strove to snatch each other’s +torches. Franz followed Albert with his eyes, and saw him mount the +first step. + +Instantly a mask, wearing the well-known costume of a peasant woman, +snatched his _moccoletto_ from him without his offering any resistance. +Franz was too far off to hear what they said; but, without doubt, +nothing hostile passed, for he saw Albert disappear arm-in-arm with the +peasant girl. He watched them pass through the crowd for some time, but +at length he lost sight of them in the Via Macello. + +Suddenly the bell that gives the signal for the end of the Carnival +sounded, and at the same instant all the _moccoletti_ were extinguished +as if by enchantment. It seemed as though one immense blast of the wind +had extinguished everyone. + +Franz found himself in utter darkness. No sound was audible save that +of the carriages that were carrying the maskers home; nothing was +visible save a few lights that burnt behind the windows. + +The Carnival was over. + +20193m + + + + + Chapter 37. The Catacombs of Saint Sebastian + +In his whole life, perhaps, Franz had never before experienced so +sudden an impression, so rapid a transition from gayety to sadness, as +in this moment. It seemed as though Rome, under the magic breath of +some demon of the night, had suddenly changed into a vast tomb. By a +chance, which added yet more to the intensity of the darkness, the +moon, which was on the wane, did not rise until eleven o’clock, and the +streets which the young man traversed were plunged in the deepest +obscurity. + +The distance was short, and at the end of ten minutes his carriage, or +rather the count’s, stopped before the Hôtel de Londres. + +Dinner was waiting, but as Albert had told him that he should not +return so soon, Franz sat down without him. Signor Pastrini, who had +been accustomed to see them dine together, inquired into the cause of +his absence, but Franz merely replied that Albert had received on the +previous evening an invitation which he had accepted. + +The sudden extinction of the _moccoletti_, the darkness which had +replaced the light, and the silence which had succeeded the turmoil, +had left in Franz’s mind a certain depression which was not free from +uneasiness. He therefore dined very silently, in spite of the officious +attention of his host, who presented himself two or three times to +inquire if he wanted anything. + +Franz resolved to wait for Albert as late as possible. He ordered the +carriage, therefore, for eleven o’clock, desiring Signor Pastrini to +inform him the moment that Albert returned to the hotel. + +At eleven o’clock Albert had not come back. Franz dressed himself, and +went out, telling his host that he was going to pass the night at the +Duke of Bracciano’s. The house of the Duke of Bracciano is one of the +most delightful in Rome, the duchess, one of the last heiresses of the +Colonnas, does its honors with the most consummate grace, and thus +their _fêtes_ have a European celebrity. + +Franz and Albert had brought to Rome letters of introduction to them, +and their first question on his arrival was to inquire the whereabouts +of his travelling companion. Franz replied that he had left him at the +moment they were about to extinguish the _moccoli_, and that he had +lost sight of him in the Via Macello. + +“Then he has not returned?” said the duke. + +“I waited for him until this hour,” replied Franz. + +“And do you know whither he went?” + +“No, not precisely; however, I think it was something very like a +rendezvous.” + +“_Diavolo!_” said the duke, “this is a bad day, or rather a bad night, +to be out late; is it not, countess?” + +These words were addressed to the Countess G——, who had just arrived, +and was leaning on the arm of Signor Torlonia, the duke’s brother. + +“I think, on the contrary, that it is a charming night,” replied the +countess, “and those who are here will complain of but one thing, that +of its too rapid flight.” + +“I am not speaking,” said the duke with a smile, “of the persons who +are here; the men run no other danger than that of falling in love with +you, and the women of falling ill of jealousy at seeing you so lovely; +I meant persons who were out in the streets of Rome.” + +“Ah,” asked the countess, “who is out in the streets of Rome at this +hour, unless it be to go to a ball?” + +“Our friend, Albert de Morcerf, countess, whom I left in pursuit of his +unknown about seven o’clock this evening,” said Franz, “and whom I have +not seen since.” + +“And don’t you know where he is?” + +“Not at all.” + +“Is he armed?” + +“He is in masquerade.” + +“You should not have allowed him to go,” said the duke to Franz; “you, +who know Rome better than he does.” + +“You might as well have tried to stop number three of the _barberi_, +who gained the prize in the race today,” replied Franz; “and then +moreover, what could happen to him?” + +“Who can tell? The night is gloomy, and the Tiber is very near the Via +Macello.” Franz felt a shudder run through his veins at observing that +the feeling of the duke and the countess was so much in unison with his +own personal disquietude. + +“I informed them at the hotel that I had the honor of passing the night +here, duke,” said Franz, “and desired them to come and inform me of his +return.” + +“Ah,” replied the duke, “here I think, is one of my servants who is +seeking you.” + +The duke was not mistaken; when he saw Franz, the servant came up to +him. + +“Your excellency,” he said, “the master of the Hôtel de Londres has +sent to let you know that a man is waiting for you with a letter from +the Viscount of Morcerf.” + +“A letter from the viscount!” exclaimed Franz. + +“Yes.” + +“And who is the man?” + +“I do not know.” + +“Why did he not bring it to me here?” + +“The messenger did not say.” + +“And where is the messenger?” + +“He went away directly he saw me enter the ball-room to find you.” + +“Oh,” said the countess to Franz, “go with all speed—poor young man! +Perhaps some accident has happened to him.” + +“I will hasten,” replied Franz. + +“Shall we see you again to give us any information?” inquired the +countess. + +“Yes, if it is not any serious affair, otherwise I cannot answer as to +what I may do myself.” + +“Be prudent, in any event,” said the countess. + +“Oh! pray be assured of that.” + +Franz took his hat and went away in haste. He had sent away his +carriage with orders for it to fetch him at two o’clock; fortunately +the Palazzo Bracciano, which is on one side in the Corso, and on the +other in the Square of the Holy Apostles, is hardly ten minutes’ walk +from the Hôtel de Londres. + +As he came near the hotel, Franz saw a man in the middle of the street. +He had no doubt that it was the messenger from Albert. The man was +wrapped up in a large cloak. He went up to him, but, to his extreme +astonishment, the stranger first addressed him. + +“What wants your excellency of me?” inquired the man, retreating a step +or two, as if to keep on his guard. + +“Are not you the person who brought me a letter,” inquired Franz, “from +the Viscount of Morcerf?” + +“Your excellency lodges at Pastrini’s hotel?” + +“I do.” + +“Your excellency is the travelling companion of the viscount?” + +“I am.” + +“Your excellency’s name——” + +“Is the Baron Franz d’Épinay.” + +20199m + + + +“Then it is to your excellency that this letter is addressed.” + +“Is there any answer?” inquired Franz, taking the letter from him. + +“Yes—your friend at least hopes so.” + +“Come upstairs with me, and I will give it to you.” + +“I prefer waiting here,” said the messenger, with a smile. + +“And why?” + +“Your excellency will know when you have read the letter.” + +“Shall I find you here, then?” + +“Certainly.” + +Franz entered the hotel. On the staircase he met Signor Pastrini. +“Well?” said the landlord. + +“Well—what?” responded Franz. + +“You have seen the man who desired to speak with you from your friend?” +he asked of Franz. + +“Yes, I have seen him,” he replied, “and he has handed this letter to +me. Light the candles in my apartment, if you please.” + +The innkeeper gave orders to a servant to go before Franz with a light. +The young man had found Signor Pastrini looking very much alarmed, and +this had only made him the more anxious to read Albert’s letter; and so +he went instantly towards the waxlight, and unfolded it. It was written +and signed by Albert. Franz read it twice before he could comprehend +what it contained. It was thus worded: + +“My dear Fellow, + +“The moment you have received this, have the kindness to take the +letter of credit from my pocket-book, which you will find in the square +drawer of the _secrétaire_; add your own to it, if it be not +sufficient. Run to Torlonia, draw from him instantly four thousand +piastres, and give them to the bearer. It is urgent that I should have +this money without delay. I do not say more, relying on you as you may +rely on me. + +“Your friend, + +“Albert de Morcerf. + +“P.S.—I now believe in Italian _banditti_.” + +Below these lines were written, in a strange hand, the following in +Italian: + +“_Se alle sei della mattina le quattro mille piastre non sono nelle mie +mani, alla sette il Conte Alberto avrà cessato di vivere_. + +“Luigi Vampa.” + +“_If by six in the morning the four thousand piastres are not in my +hands, by seven o’clock the Count Albert will have ceased to live_.” + +This second signature explained everything to Franz, who now understood +the objection of the messenger to coming up into the apartment; the +street was safer for him. Albert, then, had fallen into the hands of +the famous bandit chief, in whose existence he had for so long a time +refused to believe. + +There was no time to lose. He hastened to open the _secrétaire_, and +found the pocket-book in the drawer, and in it the letter of credit. +There were in all six thousand piastres, but of these six thousand +Albert had already expended three thousand. + +As to Franz, he had no letter of credit, as he lived at Florence, and +had only come to Rome to pass seven or eight days; he had brought but a +hundred louis, and of these he had not more than fifty left. Thus seven +or eight hundred piastres were wanting to them both to make up the sum +that Albert required. True, he might in such a case rely on the +kindness of Signor Torlonia. He was, therefore, about to return to the +Palazzo Bracciano without loss of time, when suddenly a luminous idea +crossed his mind. + +He remembered the Count of Monte Cristo. Franz was about to ring for +Signor Pastrini, when that worthy presented himself. + +“My dear sir,” he said, hastily, “do you know if the count is within?” + +“Yes, your excellency; he has this moment returned.” + +“Is he in bed?” + +“I should say no.” + +“Then ring at his door, if you please, and request him to be so kind as +to give me an audience.” + +Signor Pastrini did as he was desired, and returning five minutes +after, he said: + +“The count awaits your excellency.” + +Franz went along the corridor, and a servant introduced him to the +count. He was in a small room which Franz had not yet seen, and which +was surrounded with divans. The count came towards him. + +“Well, what good wind blows you hither at this hour?” said he; “have +you come to sup with me? It would be very kind of you.” + +“No; I have come to speak to you of a very serious matter.” + +“A serious matter,” said the count, looking at Franz with the +earnestness usual to him; “and what may it be?” + +“Are we alone?” + +“Yes,” replied the count, going to the door, and returning. Franz gave +him Albert’s letter. + +“Read that,” he said. + +The count read it. + +“Well, well!” said he. + +“Did you see the postscript?” + +“I did, indeed. + +“_‘Se alle sei della mattina le quattro mille piastre non sono nelle +mie mani, alla sette il conte Alberto avrà cessato di vivere. _ + +“‘Luigi Vampa.’” + +“What think you of that?” inquired Franz. + +“Have you the money he demands?” + +“Yes, all but eight hundred piastres.” + +The count went to his _secrétaire_, opened it, and pulling out a drawer +filled with gold, said to Franz, “I hope you will not offend me by +applying to anyone but myself.” + +“You see, on the contrary, I come to you first and instantly,” replied +Franz. + +“And I thank you; have what you will;” and he made a sign to Franz to +take what he pleased. + +“Is it absolutely necessary, then, to send the money to Luigi Vampa?” +asked the young man, looking fixedly in his turn at the count. + +“Judge for yourself,” replied he. “The postscript is explicit.” + +“I think that if you would take the trouble of reflecting, you could +find a way of simplifying the negotiation,” said Franz. + +“How so?” returned the count, with surprise. + +“If we were to go together to Luigi Vampa, I am sure he would not +refuse you Albert’s freedom.” + +“What influence can I possibly have over a bandit?” + +“Have you not just rendered him a service that can never be forgotten?” + +“What is that?” + +“Have you not saved Peppino’s life?” + +“Well, well,” said the count, “who told you that?” + +“No matter; I know it.” The count knit his brows, and remained silent +an instant. + +“And if I went to seek Vampa, would you accompany me?” + +“If my society would not be disagreeable.” + +“Be it so. It is a lovely night, and a walk without Rome will do us +both good.” + +“Shall I take any arms?” + +“For what purpose?” + +“Any money?” + +“It is useless. Where is the man who brought the letter?” + +“In the street.” + +“He awaits the answer?” + +“Yes.” + +“I must learn where we are going. I will summon him hither.” + +“It is useless; he would not come up.” + +“To your apartments, perhaps; but he will not make any difficulty at +entering mine.” + +The count went to the window of the apartment that looked on to the +street, and whistled in a peculiar manner. The man in the mantle +quitted the wall, and advanced into the middle of the street. +“_Salite!_” said the count, in the same tone in which he would have +given an order to his servant. The messenger obeyed without the least +hesitation, but rather with alacrity, and, mounting the steps at a +bound, entered the hotel; five seconds afterwards he was at the door of +the room. + +“Ah, it is you, Peppino,” said the count. But Peppino, instead of +answering, threw himself on his knees, seized the count’s hand, and +covered it with kisses. “Ah,” said the count, “you have, then, not +forgotten that I saved your life; that is strange, for it is a week +ago.” + +20203m + + + +“No, excellency; and never shall I forget it,” returned Peppino, with +an accent of profound gratitude. + +“Never? That is a long time; but it is something that you believe so. +Rise and answer.” + +Peppino glanced anxiously at Franz. + +“Oh, you may speak before his excellency,” said he; “he is one of my +friends. You allow me to give you this title?” continued the count in +French, “it is necessary to excite this man’s confidence.” + +“You can speak before me,” said Franz; “I am a friend of the count’s.” + +“Good!” returned Peppino. “I am ready to answer any questions your +excellency may address to me.” + +“How did the Viscount Albert fall into Luigi’s hands?” + +“Excellency, the Frenchman’s carriage passed several times the one in +which was Teresa.” + +“The chief’s mistress?” + +“Yes. The Frenchman threw her a bouquet; Teresa returned it—all this +with the consent of the chief, who was in the carriage.” + +“What?” cried Franz, “was Luigi Vampa in the carriage with the Roman +peasants?” + +“It was he who drove, disguised as the coachman,” replied Peppino. + +“Well?” said the count. + +“Well, then, the Frenchman took off his mask; Teresa, with the chief’s +consent, did the same. The Frenchman asked for a rendezvous; Teresa +gave him one—only, instead of Teresa, it was Beppo who was on the steps +of the church of San Giacomo.” + +“What!” exclaimed Franz, “the peasant girl who snatched his _mocoletto_ +from him——” + +“Was a lad of fifteen,” replied Peppino. “But it was no disgrace to +your friend to have been deceived; Beppo has taken in plenty of +others.” + +“And Beppo led him outside the walls?” said the count. + +“Exactly so; a carriage was waiting at the end of the Via Macello. +Beppo got in, inviting the Frenchman to follow him, and he did not wait +to be asked twice. He gallantly offered the right-hand seat to Beppo, +and sat by him. Beppo told him he was going to take him to a villa a +league from Rome; the Frenchman assured him he would follow him to the +end of the world. The coachman went up the Via di Ripetta and the Porta +San Paolo; and when they were two hundred yards outside, as the +Frenchman became somewhat too forward, Beppo put a brace of pistols to +his head, the coachman pulled up and did the same. At the same time, +four of the band, who were concealed on the banks of the Almo, +surrounded the carriage. The Frenchman made some resistance, and nearly +strangled Beppo; but he could not resist five armed men, and was forced +to yield. They made him get out, walk along the banks of the river, and +then brought him to Teresa and Luigi, who were waiting for him in the +catacombs of St. Sebastian.” + +“Well,” said the count, turning towards Franz, “it seems to me that +this is a very likely story. What do you say to it?” + +“Why, that I should think it very amusing,” replied Franz, “if it had +happened to anyone but poor Albert.” + +“And, in truth, if you had not found me here,” said the count, “it +might have proved a gallant adventure which would have cost your friend +dear; but now, be assured, his alarm will be the only serious +consequence.” + +“And shall we go and find him?” inquired Franz. + +“Oh, decidedly, sir. He is in a very picturesque place—do you know the +catacombs of St. Sebastian?” + +“I was never in them; but I have often resolved to visit them.” + +“Well, here is an opportunity made to your hand, and it would be +difficult to contrive a better. Have you a carriage?” + +“No.” + +“That is of no consequence; I always have one ready, day and night.” + +“Always ready?” + +“Yes. I am a very capricious being, and I should tell you that +sometimes when I rise, or after my dinner, or in the middle of the +night, I resolve on starting for some particular point, and away I go.” + +The count rang, and a footman appeared. + +“Order out the carriage,” he said, “and remove the pistols which are in +the holsters. You need not awaken the coachman; Ali will drive.” + +In a very short time the noise of wheels was heard, and the carriage +stopped at the door. The count took out his watch. + +“Half-past twelve,” he said. “We might start at five o’clock and be in +time, but the delay may cause your friend to pass an uneasy night, and +therefore we had better go with all speed to extricate him from the +hands of the infidels. Are you still resolved to accompany me?” + +“More determined than ever.” + +“Well, then, come along.” + +Franz and the count went downstairs, accompanied by Peppino. At the +door they found the carriage. Ali was on the box, in whom Franz +recognized the dumb slave of the grotto of Monte Cristo. Franz and the +count got into the carriage. Peppino placed himself beside Ali, and +they set off at a rapid pace. Ali had received his instructions, and +went down the Corso, crossed the Campo Vaccino, went up the Strada San +Gregorio, and reached the gates of St. Sebastian. Then the porter +raised some difficulties, but the Count of Monte Cristo produced a +permit from the governor of Rome, allowing him to leave or enter the +city at any hour of the day or night; the portcullis was therefore +raised, the porter had a louis for his trouble, and they went on their +way. + +The road which the carriage now traversed was the ancient Appian Way, +and bordered with tombs. From time to time, by the light of the moon, +which began to rise, Franz imagined that he saw something like a +sentinel appear at various points among the ruins, and suddenly retreat +into the darkness on a signal from Peppino. + +A short time before they reached the Baths of Caracalla the carriage +stopped, Peppino opened the door, and the count and Franz alighted. + +“In ten minutes,” said the count to his companion, “we shall be there.” + +He then took Peppino aside, gave him an order in a low voice, and +Peppino went away, taking with him a torch, brought with them in the +carriage. Five minutes elapsed, during which Franz saw the shepherd +going along a narrow path that led over the irregular and broken +surface of the Campagna; and finally he disappeared in the midst of the +tall red herbage, which seemed like the bristling mane of an enormous +lion. + +“Now,” said the count, “let us follow him.” + +Franz and the count in their turn then advanced along the same path, +which, at the distance of a hundred paces, led them over a declivity to +the bottom of a small valley. They then perceived two men conversing in +the obscurity. + +“Ought we to go on?” asked Franz of the count; “or should we pause?” + +“Let us go on; Peppino will have warned the sentry of our coming.” + +One of the two men was Peppino, and the other a bandit on the lookout. +Franz and the count advanced, and the bandit saluted them. + +“Your excellency,” said Peppino, addressing the count, “if you will +follow me, the opening of the catacombs is close at hand.” + +“Go on, then,” replied the count. They came to an opening behind a +clump of bushes and in the midst of a pile of rocks, by which a man +could scarcely pass. Peppino glided first into this crevice; after they +got along a few paces the passage widened. Peppino passed, lighted his +torch, and turned to see if they came after him. The count first +reached an open space and Franz followed him closely. The passageway +sloped in a gentle descent, enlarging as they proceeded; still Franz +and the count were compelled to advance in a stooping posture, and were +scarcely able to proceed abreast of one another. They went on a hundred +and fifty paces in this way, and then were stopped by, “Who comes +there?” At the same time they saw the reflection of a torch on a +carbine barrel. + +“A friend!” responded Peppino; and, advancing alone towards the sentry, +he said a few words to him in a low tone; and then he, like the first, +saluted the nocturnal visitors, making a sign that they might proceed. + +Behind the sentinel was a staircase with twenty steps. Franz and the +count descended these, and found themselves in a mortuary chamber. Five +corridors diverged like the rays of a star, and the walls, dug into +niches, which were arranged one above the other in the shape of +coffins, showed that they were at last in the catacombs. Down one of +the corridors, whose extent it was impossible to determine, rays of +light were visible. The count laid his hand on Franz’s shoulder. + +“Would you like to see a camp of bandits in repose?” he inquired. + +“Exceedingly,” replied Franz. + +“Come with me, then. Peppino, put out the torch.” Peppino obeyed, and +Franz and the count were in utter darkness, except that fifty paces in +advance of them a reddish glare, more evident since Peppino had put out +his torch, was visible along the wall. + +They advanced silently, the count guiding Franz as if he had the +singular faculty of seeing in the dark. Franz himself, however, saw his +way more plainly in proportion as he went on towards the light, which +served in some manner as a guide. Three arcades were before them, and +the middle one was used as a door. These arcades opened on one side +into the corridor where the count and Franz were, and on the other into +a large square chamber, entirely surrounded by niches similar to those +of which we have spoken. + +In the midst of this chamber were four stones, which had formerly +served as an altar, as was evident from the cross which still +surmounted them. A lamp, placed at the base of a pillar, lighted up +with its pale and flickering flame the singular scene which presented +itself to the eyes of the two visitors concealed in the shadow. + +A man was seated with his elbow leaning on the column, and was reading +with his back turned to the arcades, through the openings of which the +new-comers contemplated him. This was the chief of the band, Luigi +Vampa. Around him, and in groups, according to their fancy, lying in +their mantles, or with their backs against a sort of stone bench, which +went all round the columbarium, were to be seen twenty brigands or +more, each having his carbine within reach. At the other end, silent, +scarcely visible, and like a shadow, was a sentinel, who was walking up +and down before a grotto, which was only distinguishable because in +that spot the darkness seemed more dense than elsewhere. + +When the count thought Franz had gazed sufficiently on this picturesque +tableau, he raised his finger to his lips, to warn him to be silent, +and, ascending the three steps which led to the corridor of the +columbarium, entered the chamber by the middle arcade, and advanced +towards Vampa, who was so intent on the book before him that he did not +hear the noise of his footsteps. + +“Who comes there?” cried the sentinel, who was less abstracted, and who +saw by the lamp-light a shadow approaching his chief. At this +challenge, Vampa rose quickly, drawing at the same moment a pistol from +his girdle. In a moment all the bandits were on their feet, and twenty +carbines were levelled at the count. + +“Well,” said he in a voice perfectly calm, and no muscle of his +countenance disturbed, “well, my dear Vampa, it appears to me that you +receive a friend with a great deal of ceremony.” + +20207m + + + +“Ground arms,” exclaimed the chief, with an imperative sign of the +hand, while with the other he took off his hat respectfully; then, +turning to the singular personage who had caused this scene, he said, +“Your pardon, your excellency, but I was so far from expecting the +honor of a visit, that I did not really recognize you.” + +“It seems that your memory is equally short in everything, Vampa,” said +the count, “and that not only do you forget people’s faces, but also +the conditions you make with them.” + +“What conditions have I forgotten, your excellency?” inquired the +bandit, with the air of a man who, having committed an error, is +anxious to repair it. + +“Was it not agreed,” asked the count, “that not only my person, but +also that of my friends, should be respected by you?” + +“And how have I broken that treaty, your excellency?” + +“You have this evening carried off and conveyed hither the Viscount +Albert de Morcerf. Well,” continued the count, in a tone that made +Franz shudder, “this young gentleman is one of _my friends_—this young +gentleman lodges in the same hotel as myself—this young gentleman has +been up and down the Corso for eight hours in my private carriage, and +yet, I repeat to you, you have carried him off, and conveyed him +hither, and,” added the count, taking the letter from his pocket, “you +have set a ransom on him, as if he were an utter stranger.” + +“Why did you not tell me all this—you?” inquired the brigand chief, +turning towards his men, who all retreated before his look. “Why have +you caused me thus to fail in my word towards a gentleman like the +count, who has all our lives in his hands? By heavens! if I thought one +of you knew that the young gentleman was the friend of his excellency, +I would blow his brains out with my own hand!” + +20211m + + + +“Well,” said the count, turning towards Franz, “I told you there was +some mistake in this.” + +“Are you not alone?” asked Vampa with uneasiness. + +“I am with the person to whom this letter was addressed, and to whom I +desired to prove that Luigi Vampa was a man of his word. Come, your +excellency,” the count added, turning to Franz, “here is Luigi Vampa, +who will himself express to you his deep regret at the mistake he has +committed.” + +Franz approached, the chief advancing several steps to meet him. + +“Welcome among us, your excellency,” he said to him; “you heard what +the count just said, and also my reply; let me add that I would not for +the four thousand piastres at which I had fixed your friend’s ransom, +that this had happened.” + +“But,” said Franz, looking round him uneasily, “where is the +viscount?—I do not see him.” + +“Nothing has happened to him, I hope,” said the count frowningly. + +“The prisoner is there,” replied Vampa, pointing to the hollow space in +front of which the bandit was on guard, “and I will go myself and tell +him he is free.” + +The chief went towards the place he had pointed out as Albert’s prison, +and Franz and the count followed him. + +“What is the prisoner doing?” inquired Vampa of the sentinel. + +“_Ma foi_, captain,” replied the sentry, “I do not know; for the last +hour I have not heard him stir.” + +“Come in, your excellency,” said Vampa. The count and Franz ascended +seven or eight steps after the chief, who drew back a bolt and opened a +door. Then, by the gleam of a lamp, similar to that which lighted the +columbarium, Albert was to be seen wrapped up in a cloak which one of +the bandits had lent him, lying in a corner in profound slumber. + +“Come,” said the count, smiling with his own peculiar smile, “not so +bad for a man who is to be shot at seven o’clock tomorrow morning.” + +Vampa looked at Albert with a kind of admiration; he was not insensible +to such a proof of courage. + +“You are right, your excellency,” he said; “this must be one of your +friends.” + +Then going to Albert, he touched him on the shoulder, saying, “Will +your excellency please to awaken?” + +Albert stretched out his arms, rubbed his eyelids, and opened his eyes. + +“Oh,” said he, “is it you, captain? You should have allowed me to +sleep. I had such a delightful dream. I was dancing the galop at +Torlonia’s with the Countess G——.” Then he drew his watch from his +pocket, that he might see how time sped. + +“Half-past one only?” said he. “Why the devil do you rouse me at this +hour?” + +“To tell you that you are free, your excellency.” + +“My dear fellow,” replied Albert, with perfect ease of mind, “remember, +for the future, Napoleon’s maxim, ‘Never awaken me but for bad news;’ +if you had let me sleep on, I should have finished my galop, and have +been grateful to you all my life. So, then, they have paid my ransom?” + +“No, your excellency.” + +“Well, then, how am I free?” + +“A person to whom I can refuse nothing has come to demand you.” + +“Come hither?” + +“Yes, hither.” + +“Really? Then that person is a most amiable person.” + +Albert looked around and perceived Franz. “What,” said he, “is it you, +my dear Franz, whose devotion and friendship are thus displayed?” + +“No, not I,” replied Franz, “but our neighbor, the Count of Monte +Cristo.” + +“Oh, my dear count,” said Albert gayly, arranging his cravat and +wristbands, “you are really most kind, and I hope you will consider me +as under eternal obligations to you, in the first place for the +carriage, and in the next for this visit,” and he put out his hand to +the count, who shuddered as he gave his own, but who nevertheless did +give it. + +The bandit gazed on this scene with amazement; he was evidently +accustomed to see his prisoners tremble before him, and yet here was +one whose gay temperament was not for a moment altered; as for Franz, +he was enchanted at the way in which Albert had sustained the national +honor in the presence of the bandit. + +“My dear Albert,” he said, “if you will make haste, we shall yet have +time to finish the night at Torlonia’s. You may conclude your +interrupted galop, so that you will owe no ill-will to Signor Luigi, +who has, indeed, throughout this whole affair acted like a gentleman.” + +“You are decidedly right, and we may reach the Palazzo by two o’clock. +Signor Luigi,” continued Albert, “is there any formality to fulfil +before I take leave of your excellency?” + +“None, sir,” replied the bandit, “you are as free as air.” + +“Well, then, a happy and merry life to you. Come, gentlemen, come.” + +And Albert, followed by Franz and the count, descended the staircase, +crossed the square chamber, where stood all the bandits, hat in hand. + +“Peppino,” said the brigand chief, “give me the torch.” + +“What are you going to do?” inquired the count. + +“I will show you the way back myself,” said the captain; “that is the +least honor that I can render to your excellency.” + +And taking the lighted torch from the hands of the herdsman, he +preceded his guests, not as a servant who performs an act of civility, +but like a king who precedes ambassadors. On reaching the door, he +bowed. + +“And now, your excellency,” added he, “allow me to repeat my apologies, +and I hope you will not entertain any resentment at what has occurred.” + +“No, my dear Vampa,” replied the count; “besides, you compensate for +your mistakes in so gentlemanly a way, that one almost feels obliged to +you for having committed them.” + +20214m + + + +“Gentlemen,” added the chief, turning towards the young men, “perhaps +the offer may not appear very tempting to you; but if you should ever +feel inclined to pay me a second visit, wherever I may be, you shall be +welcome.” + +Franz and Albert bowed. The count went out first, then Albert. Franz +paused for a moment. + +“Has your excellency anything to ask me?” said Vampa with a smile. + +“Yes, I have,” replied Franz; “I am curious to know what work you were +perusing with so much attention as we entered.” + +“Cæsar’s _Commentaries_,” said the bandit, “it is my favorite work.” + +“Well, are you coming?” asked Albert. + +“Yes,” replied Franz, “here I am,” and he, in his turn, left the caves. +They advanced to the plain. + +“Ah, your pardon,” said Albert, turning round; “will you allow me, +captain?” + +And he lighted his cigar at Vampa’s torch. + +“Now, my dear count,” he said, “let us on with all the speed we may. I +am enormously anxious to finish my night at the Duke of Bracciano’s.” + +They found the carriage where they had left it. The count said a word +in Arabic to Ali, and the horses went on at great speed. + +It was just two o’clock by Albert’s watch when the two friends entered +into the dancing-room. Their return was quite an event, but as they +entered together, all uneasiness on Albert’s account ceased instantly. + +“Madame,” said the Viscount of Morcerf, advancing towards the countess, +“yesterday you were so condescending as to promise me a galop; I am +rather late in claiming this gracious promise, but here is my friend, +whose character for veracity you well know, and he will assure you the +delay arose from no fault of mine.” + +And as at this moment the orchestra gave the signal for the waltz, +Albert put his arm round the waist of the countess, and disappeared +with her in the whirl of dancers. + +In the meanwhile Franz was considering the singular shudder that had +passed over the Count of Monte Cristo at the moment when he had been, +in some sort, forced to give his hand to Albert. + + + + Chapter 38. The Rendezvous + +The first words that Albert uttered to his friend, on the following +morning, contained a request that Franz would accompany him on a visit +to the count; true, the young man had warmly and energetically thanked +the count on the previous evening; but services such as he had rendered +could never be too often acknowledged. Franz, who seemed attracted by +some invisible influence towards the count, in which terror was +strangely mingled, felt an extreme reluctance to permit his friend to +be exposed alone to the singular fascination that this mysterious +personage seemed to exercise over him, and therefore made no objection +to Albert’s request, but at once accompanied him to the desired spot, +and, after a short delay, the count joined them in the salon. + +“My dear count,” said Albert, advancing to meet him, “permit me to +repeat the poor thanks I offered last night, and to assure you that the +remembrance of all I owe to you will never be effaced from my memory; +believe me, as long as I live, I shall never cease to dwell with +grateful recollection on the prompt and important service you rendered +me; and also to remember that to you I am indebted even for my life.” + +“My very good friend and excellent neighbor,” replied the count, with a +smile, “you really exaggerate my trifling exertions. You owe me nothing +but some trifle of 20,000 francs, which you have been saved out of your +travelling expenses, so that there is not much of a score between +us;—but you must really permit me to congratulate you on the ease and +unconcern with which you resigned yourself to your fate, and the +perfect indifference you manifested as to the turn events might take.” + +“Upon my word,” said Albert, “I deserve no credit for what I could not +help, namely, a determination to take everything as I found it, and to +let those bandits see, that although men get into troublesome scrapes +all over the world, there is no nation but the French that can smile +even in the face of grim Death himself. All that, however, has nothing +to do with my obligations to you, and I now come to ask you whether, in +my own person, my family, or connections, I can in any way serve you? +My father, the Comte de Morcerf, although of Spanish origin, possesses +considerable influence, both at the court of France and Madrid, and I +unhesitatingly place the best services of myself, and all to whom my +life is dear, at your disposal.” + +“Monsieur de Morcerf,” replied the count, “your offer, far from +surprising me, is precisely what I expected from you, and I accept it +in the same spirit of hearty sincerity with which it is made;—nay, I +will go still further, and say that I had previously made up my mind to +ask a great favor at your hands.” + +“Oh, pray name it.” + +“I am wholly a stranger to Paris—it is a city I have never yet seen.” + +“Is it possible,” exclaimed Albert, “that you have reached your present +age without visiting the finest capital in the world? I can scarcely +credit it.” + +“Nevertheless, it is quite true; still, I agree with you in thinking +that my present ignorance of the first city in Europe is a reproach to +me in every way, and calls for immediate correction; but, in all +probability, I should have performed so important, so necessary a duty, +as that of making myself acquainted with the wonders and beauties of +your justly celebrated capital, had I known any person who would have +introduced me into the fashionable world, but unfortunately I possessed +no acquaintance there, and, of necessity, was compelled to abandon the +idea.” + +“So distinguished an individual as yourself,” cried Albert, “could +scarcely have required an introduction.” + +“You are most kind; but as regards myself, I can find no merit I +possess, save that, as a millionaire, I might have become a partner in +the speculations of M. Aguado and M. Rothschild; but as my motive in +travelling to your capital would not have been for the pleasure of +dabbling in stocks, I stayed away till some favorable chance should +present itself of carrying my wish into execution. Your offer, however, +smooths all difficulties, and I have only to ask you, my dear M. de +Morcerf” (these words were accompanied by a most peculiar smile), +“whether you undertake, upon my arrival in France, to open to me the +doors of that fashionable world of which I know no more than a Huron or +a native of Cochin-China?” + +“Oh, that I do, and with infinite pleasure,” answered Albert; “and so +much the more readily as a letter received this morning from my father +summons me to Paris, in consequence of a treaty of marriage (my dear +Franz, do not smile, I beg of you) with a family of high standing, and +connected with the very cream of Parisian society.” + +“Connected by marriage, you mean,” said Franz, laughingly. + +“Well, never mind how it is,” answered Albert, “it comes to the same +thing in the end. Perhaps by the time you return to Paris, I shall be +quite a sober, staid father of a family! A most edifying representative +I shall make of all the domestic virtues—don’t you think so? But as +regards your wish to visit our fine city, my dear count, I can only say +that you may command me and mine to any extent you please.” + +“Then it is settled,” said the count, “and I give you my solemn +assurance that I only waited an opportunity like the present to realize +plans that I have long meditated.” + +Franz did not doubt that these plans were the same concerning which the +count had dropped a few words in the grotto of Monte Cristo, and while +the count was speaking the young man watched him closely, hoping to +read something of his purpose in his face, but his countenance was +inscrutable especially when, as in the present case, it was veiled in a +sphinx-like smile. + +“But tell me now, count,” exclaimed Albert, delighted at the idea of +having to chaperon so distinguished a person as Monte Cristo; “tell me +truly whether you are in earnest, or if this project of visiting Paris +is merely one of the chimerical and uncertain air castles of which we +make so many in the course of our lives, but which, like a house built +on the sand, is liable to be blown over by the first puff of wind?” + +“I pledge you my honor,” returned the count, “that I mean to do as I +have said; both inclination and positive necessity compel me to visit +Paris.” + +“When do you propose going thither?” + +“Have you made up your mind when you shall be there yourself?” + +“Certainly I have; in a fortnight or three weeks’ time, that is to say, +as fast as I can get there!” + +“Nay,” said the Count; “I will give you three months ere I join you; +you see I make an ample allowance for all delays and difficulties. + +“And in three months’ time,” said Albert, “you will be at my house?” + +“Shall we make a positive appointment for a particular day and hour?” +inquired the count; “only let me warn you that I am proverbial for my +punctilious exactitude in keeping my engagements.” + +“Day for day, hour for hour,” said Albert; “that will suit me to a +dot.” + +“So be it, then,” replied the count, and extending his hand towards a +calendar, suspended near the chimney-piece, he said, “today is the 21st +of February;” and drawing out his watch, added, “it is exactly +half-past ten o’clock. Now promise me to remember this, and expect me +the 21st of May at the same hour in the forenoon.” + +“Capital!” exclaimed Albert; “your breakfast shall be waiting.” + +“Where do you live?” + +“No. 27, Rue du Helder.” + +“Have you bachelor’s apartments there? I hope my coming will not put +you to any inconvenience.” + +“I reside in my father’s house, but occupy a pavilion at the farther +side of the courtyard, entirely separated from the main building.” + +“Quite sufficient,” replied the count, as, taking out his tablets, he +wrote down “No. 27, Rue du Helder, 21st May, half-past ten in the +morning.” + +“Now then,” said the count, returning his tablets to his pocket, “make +yourself perfectly easy; the hand of your time-piece will not be more +accurate in marking the time than myself.” + +“Shall I see you again ere my departure?” asked Albert. + +“That depends; when do you leave?” + +“Tomorrow evening, at five o’clock.” + +“In that case I must say adieu to you, as I am compelled to go to +Naples, and shall not return hither before Saturday evening or Sunday +morning. And you, baron,” pursued the count, addressing Franz, “do you +also depart tomorrow?” + +“Yes.” + +“For France?” + +“No, for Venice; I shall remain in Italy for another year or two.” + +“Then we shall not meet in Paris?” + +“I fear I shall not have that honor.” + +“Well, since we must part,” said the count, holding out a hand to each +of the young men, “allow me to wish you both a safe and pleasant +journey.” + +It was the first time the hand of Franz had come in contact with that +of the mysterious individual before him, and unconsciously he shuddered +at its touch, for it felt cold and icy as that of a corpse. + +20219m + + + +“Let us understand each other,” said Albert; “it is agreed—is it +not?—that you are to be at No. 27, in the Rue du Helder, on the 21st of +May, at half-past ten in the morning, and your word of honor passed for +your punctuality?” + +“The 21st of May, at half-past ten in the morning, Rue du Helder, No. +27,” replied the count. + +The young men then rose, and bowing to the count, quitted the room. + +“What is the matter?” asked Albert of Franz, when they had returned to +their own apartments; “you seem more than commonly thoughtful.” + +“I will confess to you, Albert,” replied Franz, “the count is a very +singular person, and the appointment you have made to meet him in Paris +fills me with a thousand apprehensions.” + +“My dear fellow,” exclaimed Albert, “what can there possibly be in that +to excite uneasiness? Why, you must have lost your senses.” + +“Whether I am in my senses or not,” answered Franz, “that is the way I +feel.” + +“Listen to me, Franz,” said Albert; “I am glad that the occasion has +presented itself for saying this to you, for I have noticed how cold +you are in your bearing towards the count, while he, on the other hand, +has always been courtesy itself to us. Have you anything particular +against him?” + +“Possibly.” + +“Did you ever meet him previously to coming hither?” + +“I have.” + +“And where?” + +“Will you promise me not to repeat a single word of what I am about to +tell you?” + +“I promise.” + +“Upon your honor?” + +“Upon my honor.” + +“Then listen to me.” + +Franz then related to his friend the history of his excursion to the +Island of Monte Cristo and of his finding a party of smugglers there, +and the two Corsican bandits with them. He dwelt with considerable +force and energy on the almost magical hospitality he had received from +the count, and the magnificence of his entertainment in the grotto of +the _Thousand and One Nights_. + +He recounted, with circumstantial exactitude, all the particulars of +the supper, the hashish, the statues, the dream, and how, at his +awakening, there remained no proof or trace of all these events, save +the small yacht, seen in the distant horizon driving under full sail +toward Porto-Vecchio. + +Then he detailed the conversation overheard by him at the Colosseum, +between the count and Vampa, in which the count had promised to obtain +the release of the bandit Peppino,—an engagement which, as our readers +are aware, he most faithfully fulfilled. + +At last he arrived at the adventure of the preceding night, and the +embarrassment in which he found himself placed by not having sufficient +cash by six or seven hundred piastres to make up the sum required, and +finally of his application to the count and the picturesque and +satisfactory result that followed. Albert listened with the most +profound attention. + +“Well,” said he, when Franz had concluded, “what do you find to object +to in all you have related? The count is fond of travelling, and, being +rich, possesses a vessel of his own. Go but to Portsmouth or +Southampton, and you will find the harbors crowded with the yachts +belonging to such of the English as can afford the expense, and have +the same liking for this amusement. Now, by way of having a +resting-place during his excursions, avoiding the wretched +cookery—which has been trying its best to poison me during the last +four months, while you have manfully resisted its effects for as many +years,—and obtaining a bed on which it is possible to slumber, Monte +Cristo has furnished for himself a temporary abode where you first +found him; but, to prevent the possibility of the Tuscan government +taking a fancy to his enchanted palace, and thereby depriving him of +the advantages naturally expected from so large an outlay of capital, +he has wisely enough purchased the island, and taken its name. Just ask +yourself, my good fellow, whether there are not many persons of our +acquaintance who assume the names of lands and properties they never in +their lives were masters of?” + +“But,” said Franz, “the Corsican bandits that were among the crew of +his vessel?” + +“Why, really the thing seems to me simple enough. Nobody knows better +than yourself that the bandits of Corsica are not rogues or thieves, +but purely and simply fugitives, driven by some sinister motive from +their native town or village, and that their fellowship involves no +disgrace or stigma; for my own part, I protest that, should I ever go +to Corsica, my first visit, ere even I presented myself to the mayor or +prefect, should be to the bandits of Colomba, if I could only manage to +find them; for, on my conscience, they are a race of men I admire +greatly.” + +“Still,” persisted Franz, “I suppose you will allow that such men as +Vampa and his band are regular villains, who have no other motive than +plunder when they seize your person. How do you explain the influence +the count evidently possessed over those ruffians?” + +“My good friend, as in all probability I own my present safety to that +influence, it would ill become me to search too closely into its +source; therefore, instead of condemning him for his intimacy with +outlaws, you must give me leave to excuse any little irregularity there +may be in such a connection; not altogether for preserving my life, for +my own idea was that it never was in much danger, but certainly for +saving me 4,000 piastres, which, being translated, means neither more +nor less than 24,000 livres of our money—a sum at which, most +assuredly, I should never have been estimated in France, proving most +indisputably,” added Albert with a laugh, “that no prophet is honored +in his own country.” + +“Talking of countries,” replied Franz, “of what country is the count, +what is his native tongue, whence does he derive his immense fortune, +and what were those events of his early life—a life as marvellous as +unknown—that have tinctured his succeeding years with so dark and +gloomy a misanthropy? Certainly these are questions that, in your +place, I should like to have answered.” + +“My dear Franz,” replied Albert, “when, upon receipt of my letter, you +found the necessity of asking the count’s assistance, you promptly went +to him, saying, ‘My friend Albert de Morcerf is in danger; help me to +deliver him.’ Was not that nearly what you said?” + +20222m + + + +“It was.” + +“Well, then, did he ask you, ‘Who is M. Albert de Morcerf? how does he +come by his name—his fortune? what are his means of existence? what is +his birthplace? of what country is he a native?’ Tell me, did he put +all these questions to you?” + +“I confess he asked me none.” + +“No; he merely came and freed me from the hands of Signor Vampa, where, +I can assure you, in spite of all my outward appearance of ease and +unconcern, I did not very particularly care to remain. Now, then, +Franz, when, for services so promptly and unhesitatingly rendered, he +but asks me in return to do for him what is done daily for any Russian +prince or Italian nobleman who may pass through Paris—merely to +introduce him into society—would you have me refuse? My good fellow, +you must have lost your senses to think it possible I could act with +such cold-blooded policy.” + +And this time it must be confessed that, contrary to the usual state of +affairs in discussions between the young men, the effective arguments +were all on Albert’s side. + +“Well,” said Franz with a sigh, “do as you please my dear viscount, for +your arguments are beyond my powers of refutation. Still, in spite of +all, you must admit that this Count of Monte Cristo is a most singular +personage.” + +“He is a philanthropist,” answered the other; “and no doubt his motive +in visiting Paris is to compete for the Monthyon prize, given, as you +are aware, to whoever shall be proved to have most materially advanced +the interests of virtue and humanity. If my vote and interest can +obtain it for him, I will readily give him the one and promise the +other. And now, my dear Franz, let us talk of something else. Come, +shall we take our luncheon, and then pay a last visit to St. Peter’s?” + +Franz silently assented; and the following afternoon, at half-past five +o’clock, the young men parted. Albert de Morcerf to return to Paris, +and Franz d’Épinay to pass a fortnight at Venice. + +But, ere he entered his travelling carriage, Albert, fearing that his +expected guest might forget the engagement he had entered into, placed +in the care of a waiter at the hotel a card to be delivered to the +Count of Monte Cristo, on which, beneath the name of Viscount Albert de +Morcerf, he had written in pencil: + +“27, _Rue du Helder, on the_ 21_st May, half-past ten_ A.M.” + + + + Chapter 39. The Guests + +In the house in the Rue du Helder, where Albert had invited the Count +of Monte Cristo, everything was being prepared on the morning of the +21st of May to do honor to the occasion. Albert de Morcerf inhabited a +pavilion situated at the corner of a large court, and directly opposite +another building, in which were the servants’ apartments. Two windows +only of the pavilion faced the street; three other windows looked into +the court, and two at the back into the garden. + +Between the court and the garden, built in the heavy style of the +imperial architecture, was the large and fashionable dwelling of the +Count and Countess of Morcerf. + +A high wall surrounded the whole of the property, surmounted at +intervals by vases filled with flowers, and broken in the centre by a +large gate of gilded iron, which served as the carriage entrance. A +small door, close to the lodge of the _concierge_, gave ingress and +egress to the servants and masters when they were on foot. + +It was easy to discover that the delicate care of a mother, unwilling +to part from her son, and yet aware that a young man of the viscount’s +age required the full exercise of his liberty, had chosen this +habitation for Albert. There were not lacking, however, evidences of +what we may call the intelligent egoism of a youth who is charmed with +the indolent, careless life of an only son, and who lives as it were in +a gilded cage. By means of the two windows looking into the street, +Albert could see all that passed; the sight of what is going on is +necessary to young men, who always want to see the world traverse their +horizon, even if that horizon is only a public thoroughfare. Then, +should anything appear to merit a more minute examination, Albert de +Morcerf could follow up his researches by means of a small gate, +similar to that close to the _concierge’s_ door, and which merits a +particular description. + +It was a little entrance that seemed never to have been opened since +the house was built, so entirely was it covered with dust and dirt; but +the well-oiled hinges and locks told quite another story. This door was +a mockery to the _concierge_, from whose vigilance and jurisdiction it +was free, and, like that famous portal in the _Arabian Nights_, opening +at the “_Sesame_” of Ali Baba, it was wont to swing backward at a +cabalistic word or a concerted tap from without from the sweetest +voices or whitest fingers in the world. + +At the end of a long corridor, with which the door communicated, and +which formed the antechamber, was, on the right, Albert’s +breakfast-room, looking into the court, and on the left the salon, +looking into the garden. Shrubs and creeping plants covered the +windows, and hid from the garden and court these two apartments, the +only rooms into which, as they were on the ground floor, the prying +eyes of the curious could penetrate. + +On the floor above were similar rooms, with the addition of a third, +formed out of the antechamber; these three rooms were a salon, a +boudoir, and a bedroom. The salon downstairs was only an Algerian +divan, for the use of smokers. The boudoir upstairs communicated with +the bedchamber by an invisible door on the staircase; it was evident +that every precaution had been taken. Above this floor was a large +_atelier_, which had been increased in size by pulling down the +partitions—a pandemonium, in which the artist and the dandy strove for +pre-eminence. + +There were collected and piled up all Albert’s successive caprices, +hunting-horns, bass-viols, flutes—a whole orchestra, for Albert had had +not a taste but a fancy for music; easels, palettes, brushes, +pencils—for music had been succeeded by painting; foils, boxing-gloves, +broadswords, and single-sticks—for, following the example of the +fashionable young men of the time, Albert de Morcerf cultivated, with +far more perseverance than music and drawing, the three arts that +complete a dandy’s education, i.e., fencing, boxing, and single-stick; +and it was here that he received Grisier, Cooks, and Charles Leboucher. + +The rest of the furniture of this privileged apartment consisted of old +cabinets, filled with Chinese porcelain and Japanese vases, Lucca della +Robbia _faïences_, and Palissy platters; of old armchairs, in which +perhaps had sat Henry IV. or Sully, Louis XIII. or Richelieu—for two of +these armchairs, adorned with a carved shield, on which were engraved +the fleur-de-lis of France on an azure field, evidently came from the +Louvre, or, at least, some royal residence. + +Over these dark and sombre chairs were thrown splendid stuffs, dyed +beneath Persia’s sun, or woven by the fingers of the women of Calcutta +or of Chandernagor. What these stuffs did there, it was impossible to +say; they awaited, while gratifying the eyes, a destination unknown to +their owner himself; in the meantime they filled the place with their +golden and silky reflections. + +In the centre of the room was a Roller and Blanchet “baby grand” piano +in rosewood, but holding the potentialities of an orchestra in its +narrow and sonorous cavity, and groaning beneath the weight of the +_chefs-d’œuvre_ of Beethoven, Weber, Mozart, Haydn, Grétry, and +Porpora. + +On the walls, over the doors, on the ceiling, were swords, daggers, +Malay creeses, maces, battle-axes; gilded, damasked, and inlaid suits +of armor; dried plants, minerals, and stuffed birds, their +flame-colored wings outspread in motionless flight, and their beaks +forever open. This was Albert’s favorite lounging place. + +However, the morning of the appointment, the young man had established +himself in the small salon downstairs. There, on a table, surrounded at +some distance by a large and luxurious divan, every species of tobacco +known,—from the yellow tobacco of Petersburg to the black of Sinai, and +so on along the scale from Maryland and Porto Rico, to Latakia,—was +exposed in pots of crackled earthenware of which the Dutch are so fond; +beside them, in boxes of fragrant wood, were ranged, according to their +size and quality, puros, regalias, havanas, and manillas; and, in an +open cabinet, a collection of German pipes, of chibouques, with their +amber mouth-pieces ornamented with coral, and of narghiles, with their +long tubes of morocco, awaiting the caprice or the sympathy of the +smokers. + +Albert had himself presided at the arrangement, or, rather, the +symmetrical derangement, which, after coffee, the guests at a breakfast +of modern days love to contemplate through the vapor that escapes from +their mouths, and ascends in long and fanciful wreaths to the ceiling. + +At a quarter to ten, a valet entered; he composed, with a little groom +named John, and who only spoke English, all Albert’s establishment, +although the cook of the hotel was always at his service, and on great +occasions the count’s _chasseur_ also. This valet, whose name was +Germain, and who enjoyed the entire confidence of his young master, +held in one hand a number of papers, and in the other a packet of +letters, which he gave to Albert. Albert glanced carelessly at the +different missives, selected two written in a small and delicate hand, +and enclosed in scented envelopes, opened them and perused their +contents with some attention. + +“How did these letters come?” said he. + +“One by the post, Madame Danglars’ footman left the other.” + +“Let Madame Danglars know that I accept the place she offers me in her +box. Wait; then, during the day, tell Rosa that when I leave the Opera +I will sup with her as she wishes. Take her six bottles of different +wine—Cyprus, sherry, and Malaga, and a barrel of Ostend oysters; get +them at Borel’s, and be sure you say they are for me.” + +“At what o’clock, sir, do you breakfast?” + +20227m + + + +“What time is it now?” + +“A quarter to ten.” + +“Very well, at half past ten. Debray will, perhaps, be obliged to go to +the minister—and besides” (Albert looked at his tablets), “it is the +hour I told the count, 21st May, at half past ten; and though I do not +much rely upon his promise, I wish to be punctual. Is the countess up +yet?” + +“If you wish, I will inquire.” + +“Yes, ask her for one of her _liqueur_ cellarets, mine is incomplete; +and tell her I shall have the honor of seeing her about three o’clock, +and that I request permission to introduce someone to her.” + +The valet left the room. Albert threw himself on the divan, tore off +the cover of two or three of the papers, looked at the theatre +announcements, made a face seeing they gave an opera, and not a ballet; +hunted vainly amongst the advertisements for a new tooth-powder of +which he had heard, and threw down, one after the other, the three +leading papers of Paris, muttering, + +“These papers become more and more stupid every day.” + +A moment after, a carriage stopped before the door, and the servant +announced M. Lucien Debray. A tall young man, with light hair, clear +gray eyes, and thin and compressed lips, dressed in a blue coat with +beautifully carved gold buttons, a white neckcloth, and a tortoiseshell +eye-glass suspended by a silken thread, and which, by an effort of the +superciliary and zygomatic muscles, he fixed in his eye, entered, with +a half-official air, without smiling or speaking. + +“Good-morning, Lucien, good-morning,” said Albert; “your punctuality +really alarms me. What do I say? punctuality! You, whom I expected +last, you arrive at five minutes to ten, when the time fixed was +half-past! Has the ministry resigned?” + +“No, my dear fellow,” returned the young man, seating himself on the +divan; “reassure yourself; we are tottering always, but we never fall, +and I begin to believe that we shall pass into a state of immobility, +and then the affairs of the Peninsula will completely consolidate us.” + +“Ah, true; you drive Don Carlos out of Spain.” + +“No, no, my dear fellow, do not confound our plans. We take him to the +other side of the French frontier, and offer him hospitality at +Bourges.” + +“At Bourges?” + +“Yes, he has not much to complain of; Bourges is the capital of Charles +VII. Do you not know that all Paris knew it yesterday, and the day +before it had already transpired on the Bourse, and M. Danglars (I do +not know by what means that man contrives to obtain intelligence as +soon as we do) made a million!” + +“And you another order, for I see you have a blue ribbon at your +button-hole.” + +“Yes; they sent me the order of Charles III.,” returned Debray +carelessly. + +“Come, do not affect indifference, but confess you were pleased to have +it.” + +“Oh, it is very well as a finish to the toilet. It looks very neat on a +black coat buttoned up.” + +“And makes you resemble the Prince of Wales or the Duke of Reichstadt.” + +“It is for that reason you see me so early.” + +“Because you have the order of Charles III., and you wish to announce +the good news to me?” + +“No, because I passed the night writing letters,—five-and-twenty +despatches. I returned home at daybreak, and strove to sleep; but my +head ached and I got up to have a ride for an hour. At the Bois de +Boulogne, _ennui_ and hunger attacked me at once,—two enemies who +rarely accompany each other, and who are yet leagued against me, a sort +of Carlo-republican alliance. I then recollected you gave a breakfast +this morning, and here I am. I am hungry, feed me; I am bored, amuse +me.” + +“It is my duty as your host,” returned Albert, ringing the bell, while +Lucien turned over, with his gold-mounted cane, the papers that lay on +the table. “Germain, a glass of sherry and a biscuit. In the meantime, +my dear Lucien, here are cigars—contraband, of course—try them, and +persuade the minister to sell us such instead of poisoning us with +cabbage leaves.” + +“_Peste!_ I will do nothing of the kind; the moment they come from +government you would find them execrable. Besides, that does not +concern the home but the financial department. Address yourself to M. +Humann, section of the indirect contributions, corridor A., No. 26.” + +“On my word,” said Albert, “you astonish me by the extent of your +knowledge. Take a cigar.” + +“Really, my dear Albert,” replied Lucien, lighting a manilla at a +rose-colored taper that burnt in a beautifully enamelled stand—“how +happy you are to have nothing to do. You do not know your own good +fortune!” + +“And what would you do, my dear diplomatist,” replied Morcerf, with a +slight degree of irony in his voice, “if you did nothing? What? private +secretary to a minister, plunged at once into European cabals and +Parisian intrigues; having kings, and, better still, queens, to +protect, parties to unite, elections to direct; making more use of your +cabinet with your pen and your telegraph than Napoleon did of his +battle-fields with his sword and his victories; possessing +five-and-twenty thousand francs a year, besides your place; a horse, +for which Château-Renaud offered you four hundred louis, and which you +would not part with; a tailor who never disappoints you; with the +opera, the jockey-club, and other diversions, can you not amuse +yourself? Well, I will amuse you.” + +“How?” + +“By introducing to you a new acquaintance.” + +“A man or a woman?” + +“A man.” + +“I know so many men already.” + +“But you do not know this man.” + +“Where does he come from—the end of the world?” + +“Farther still, perhaps.” + +“The deuce! I hope he does not bring our breakfast with him.” + +“Oh, no; our breakfast comes from my father’s kitchen. Are you hungry?” + +“Humiliating as such a confession is, I am. But I dined at M. de +Villefort’s, and lawyers always give you very bad dinners. You would +think they felt some remorse; did you ever remark that?” + +“Ah, depreciate other persons’ dinners; you ministers give such +splendid ones.” + +“Yes; but we do not invite people of fashion. If we were not forced to +entertain a parcel of country boobies because they think and vote with +us, we should never dream of dining at home, I assure you.” + +“Well, take another glass of sherry and another biscuit.” + +“Willingly. Your Spanish wine is excellent. You see we were quite right +to pacify that country.” + +“Yes; but Don Carlos?” + +“Well, Don Carlos will drink Bordeaux, and in ten years we will marry +his son to the little queen.” + +“You will then obtain the Golden Fleece, if you are still in the +ministry.” + +“I think, Albert, you have adopted the system of feeding me on smoke +this morning.” + +“Well, you must allow it is the best thing for the stomach; but I hear +Beauchamp in the next room; you can dispute together, and that will +pass away the time.” + +“About what?” + +“About the papers.” + +“My dear friend,” said Lucien with an air of sovereign contempt, “do I +ever read the papers?” + +“Then you will dispute the more.” + +“M. Beauchamp,” announced the servant. “Come in, come in,” said Albert, +rising and advancing to meet the young man. “Here is Debray, who +detests you without reading you, so he says.” + +“He is quite right,” returned Beauchamp; “for I criticise him without +knowing what he does. Good-day, commander!” + +“Ah, you know that already,” said the private secretary, smiling and +shaking hands with him. + +“_Pardieu!_” + +“And what do they say of it in the world?” + +“In which world? we have so many worlds in the year of grace 1838.” + +“In the entire political world, of which you are one of the leaders.” + +“They say that it is quite fair, and that sowing so much red, you ought +to reap a little blue.” + +“Come, come, that is not bad!” said Lucien. “Why do you not join our +party, my dear Beauchamp? With your talents you would make your fortune +in three or four years.” + +“I only await one thing before following your advice; that is, a +minister who will hold office for six months. My dear Albert, one word, +for I must give poor Lucien a respite. Do we breakfast or dine? I must +go to the Chamber, for our life is not an idle one.” + +“You only breakfast; I await two persons, and the instant they arrive +we shall sit down to table.” + + + + Chapter 40. The Breakfast + +And what sort of persons do you expect to breakfast?” said Beauchamp. + +“A gentleman, and a diplomatist.” + +“Then we shall have to wait two hours for the gentleman, and three for +the diplomatist. I shall come back to dessert; keep me some +strawberries, coffee, and cigars. I shall take a cutlet on my way to +the Chamber.” + +“Do not do anything of the sort; for were the gentleman a Montmorency, +and the diplomatist a Metternich, we will breakfast at eleven; in the +meantime, follow Debray’s example, and take a glass of sherry and a +biscuit.” + +“Be it so; I will stay; I must do something to distract my thoughts.” + +“You are like Debray, and yet it seems to me that when the minister is +out of spirits, the opposition ought to be joyous.” + +“Ah, you do not know with what I am threatened. I shall hear this +morning that M. Danglars make a speech at the Chamber of Deputies, and +at his wife’s this evening I shall hear the tragedy of a peer of +France. The devil take the constitutional government, and since we had +our choice, as they say, at least, how could we choose that?” + +“I understand; you must lay in a stock of hilarity.” + +“Do not run down M. Danglars’ speeches,” said Debray; “he votes for +you, for he belongs to the opposition.” + +“_Pardieu_, that is exactly the worst of all. I am waiting until you +send him to speak at the Luxembourg, to laugh at my ease.” + +“My dear friend,” said Albert to Beauchamp, “it is plain that the +affairs of Spain are settled, for you are most desperately out of humor +this morning. Recollect that Parisian gossip has spoken of a marriage +between myself and Mlle. Eugénie Danglars; I cannot in conscience, +therefore, let you run down the speeches of a man who will one day say +to me, ‘Vicomte, you know I give my daughter two millions.’” + +“Ah, this marriage will never take place,” said Beauchamp. “The king +has made him a baron, and can make him a peer, but he cannot make him a +gentleman, and the Count of Morcerf is too aristocratic to consent, for +the paltry sum of two million francs, to a _mésalliance_. The Viscount +of Morcerf can only wed a marchioness.” + +“But two million francs make a nice little sum,” replied Morcerf. + +“It is the social capital of a theatre on the boulevard, or a railroad +from the Jardin des Plantes to La Râpée.” + +“Never mind what he says, Morcerf,” said Debray, “do you marry her. You +marry a money-bag label, it is true; well, but what does that matter? +It is better to have a blazon less and a figure more on it. You have +seven martlets on your arms; give three to your wife, and you will +still have four; that is one more than M. de Guise had, who so nearly +became King of France, and whose cousin was Emperor of Germany.” + +“On my word, I think you are right, Lucien,” said Albert absently. + +“To be sure; besides, every millionaire is as noble as a bastard—that +is, he can be.” + +“Do not say that, Debray,” returned Beauchamp, laughing, “for here is +Château-Renaud, who, to cure you of your mania for paradoxes, will pass +the sword of Renaud de Montauban, his ancestor, through your body.” + +“He will sully it then,” returned Lucien; “for I am low—very low.” + +“Oh, heavens,” cried Beauchamp, “the minister quotes Béranger, what +shall we come to next?” + +“M. de Château-Renaud—M. Maximilian Morrel,” said the servant, +announcing two fresh guests. + +“Now, then, to breakfast,” said Beauchamp; “for, if I remember, you +told me you only expected two persons, Albert.” + +“Morrel,” muttered Albert—“Morrel—who is he?” + +But before he had finished, M. de Château-Renaud, a handsome young man +of thirty, gentleman all over,—that is, with the figure of a Guiche and +the wit of a Mortemart,—took Albert’s hand. + +“My dear Albert,” said he, “let me introduce to you M. Maximilian +Morrel, captain of Spahis, my friend; and what is more—however the man +speaks for himself—my preserver. Salute my hero, viscount.” + +And he stepped on one side to give place to a young man of refined and +dignified bearing, with large and open brow, piercing eyes, and black +moustache, whom our readers have already seen at Marseilles, under +circumstances sufficiently dramatic not to be forgotten. A rich +uniform, half French, half Oriental, set off his graceful and stalwart +figure, and his broad chest was decorated with the order of the Legion +of Honor. The young officer bowed with easy and elegant politeness. + +“Monsieur,” said Albert with affectionate courtesy, “the count of +Château-Renaud knew how much pleasure this introduction would give me; +you are his friend, be ours also.” + +“Well said,” interrupted Château-Renaud; “and pray that, if you should +ever be in a similar predicament, he may do as much for you as he did +for me.” + +“What has he done?” asked Albert. + +“Oh, nothing worth speaking of,” said Morrel; “M. de Château-Renaud +exaggerates.” + +“Not worth speaking of?” cried Château-Renaud; “life is not worth +speaking of!—that is rather too philosophical, on my word, Morrel. It +is very well for you, who risk your life every day, but for me, who +only did so once——” + +“We gather from all this, baron, that Captain Morrel saved your life.” + +“Exactly so.” + +“On what occasion?” asked Beauchamp. + +“Beauchamp, my good fellow, you know I am starving,” said Debray: “do +not set him off on some long story.” + +“Well, I do not prevent your sitting down to table,” replied Beauchamp, +“Château-Renaud can tell us while we eat our breakfast.” + +“Gentlemen,” said Morcerf, “it is only a quarter past ten, and I expect +someone else.” + +“Ah, true, a diplomatist!” observed Debray. + +“Diplomat or not, I don’t know; I only know that he charged himself on +my account with a mission, which he terminated so entirely to my +satisfaction, that had I been king, I should have instantly created him +knight of all my orders, even had I been able to offer him the Golden +Fleece and the Garter.” + +“Well, since we are not to sit down to table,” said Debray, “take a +glass of sherry, and tell us all about it.” + +“You all know that I had the fancy of going to Africa.” + +“It is a road your ancestors have traced for you,” said Albert +gallantly. + +“Yes? but I doubt that your object was like theirs—to rescue the Holy +Sepulchre.” + +“You are quite right, Beauchamp,” observed the young aristocrat. “It +was only to fight as an amateur. I cannot bear duelling ever since two +seconds, whom I had chosen to arrange an affair, forced me to break the +arm of one of my best friends, one whom you all know—poor Franz +d’Épinay.” + +“Ah, true,” said Debray, “you did fight some time ago; about what?” + +20235m + + + +“The devil take me, if I remember,” returned Château-Renaud. “But I +recollect perfectly one thing, that, being unwilling to let such +talents as mine sleep, I wished to try upon the Arabs the new pistols +that had been given to me. In consequence I embarked for Oran, and went +from thence to Constantine, where I arrived just in time to witness the +raising of the siege. I retreated with the rest, for eight-and-forty +hours. I endured the rain during the day, and the cold during the night +tolerably well, but the third morning my horse died of cold. Poor +brute—accustomed to be covered up and to have a stove in the stable, +the Arabian finds himself unable to bear ten degrees of cold in +Arabia.” + +“That’s why you want to purchase my English horse,” said Debray, “you +think he will bear the cold better.” + +“You are mistaken, for I have made a vow never to return to Africa.” + +“You were very much frightened, then?” asked Beauchamp. + +“Well, yes, and I had good reason to be so,” replied Château-Renaud. “I +was retreating on foot, for my horse was dead. Six Arabs came up, full +gallop, to cut off my head. I shot two with my double-barrelled gun, +and two more with my pistols, but I was then disarmed, and two were +still left; one seized me by the hair (that is why I now wear it so +short, for no one knows what may happen), the other swung a yataghan, +and I already felt the cold steel on my neck, when this gentleman whom +you see here charged them, shot the one who held me by the hair, and +cleft the skull of the other with his sabre. He had assigned himself +the task of saving a man’s life that day; chance caused that man to be +myself. When I am rich I will order a statue of Chance from Klagmann or +Marochetti.” + +“Yes,” said Morrel, smiling, “it was the 5th of September, the +anniversary of the day on which my father was miraculously preserved; +therefore, as far as it lies in my power, I endeavor to celebrate it by +some——” + +20237m + + + +“Heroic action,” interrupted Château-Renaud. “I was chosen. But that is +not all—after rescuing me from the sword, he rescued me from the cold, +not by sharing his cloak with me, like St. Martin, but by giving me the +whole; then from hunger by sharing with me—guess what?” + +“A Strasbourg pie?” asked Beauchamp. + +“No, his horse; of which we each of us ate a slice with a hearty +appetite. It was very hard.” + +“The horse?” said Morcerf, laughing. + +“No, the sacrifice,” returned Château-Renaud; “ask Debray if he would +sacrifice his English steed for a stranger?” + +“Not for a stranger,” said Debray, “but for a friend I might, perhaps.” + +“I divined that you would become mine, count,” replied Morrel; +“besides, as I had the honor to tell you, heroism or not, sacrifice or +not, that day I owed an offering to bad fortune in recompense for the +favors good fortune had on other days granted to us.” + +“The history to which M. Morrel alludes,” continued Château-Renaud, “is +an admirable one, which he will tell you some day when you are better +acquainted with him; today let us fill our stomachs, and not our +memories. What time do you breakfast, Albert?” + +“At half-past ten.” + +“Precisely?” asked Debray, taking out his watch. + +“Oh, you will give me five minutes’ grace,” replied Morcerf, “for I +also expect a preserver.” + +“Of whom?” + +“Of myself,” cried Morcerf; “_parbleu!_ do you think I cannot be saved +as well as anyone else, and that there are only Arabs who cut off +heads? Our breakfast is a philanthropic one, and we shall have at +table—at least, I hope so—two benefactors of humanity.” + +“What shall we do?” said Debray; “we have only one Monthyon prize.” + +“Well, it will be given to someone who has done nothing to deserve it,” +said Beauchamp; “that is the way the Academy mostly escapes from the +dilemma.” + +“And where does he come from?” asked Debray. “You have already answered +the question once, but so vaguely that I venture to put it a second +time.” + +“Really,” said Albert, “I do not know; when I invited him three months +ago, he was then at Rome, but since that time who knows where he may +have gone?” + +“And you think him capable of being exact?” demanded Debray. + +“I think him capable of everything.” + +“Well, with the five minutes’ grace, we have only ten left.” + +“I will profit by them to tell you something about my guest.” + +“I beg pardon,” interrupted Beauchamp; “are there any materials for an +article in what you are going to tell us?” + +“Yes, and for a most curious one.” + +“Go on, then, for I see I shall not get to the Chamber this morning, +and I must make up for it.” + +“I was at Rome during the last Carnival.” + +“We know that,” said Beauchamp. + +“Yes, but what you do not know is that I was carried off by bandits.” + +“There are no bandits,” cried Debray. + +“Yes there are, and most hideous, or rather most admirable ones, for I +found them ugly enough to frighten me.” + +“Come, my dear Albert,” said Debray, “confess that your cook is +behindhand, that the oysters have not arrived from Ostend or Marennes, +and that, like Madame de Maintenon, you are going to replace the dish +by a story. Say so at once; we are sufficiently well-bred to excuse +you, and to listen to your history, fabulous as it promises to be.” + +“And I say to you, fabulous as it may seem, I tell it as a true one +from beginning to end. The brigands had carried me off, and conducted +me to a gloomy spot, called the Catacombs of Saint Sebastian.” + +“I know it,” said Château-Renaud; “I narrowly escaped catching a fever +there.” + +“And I did more than that,” replied Morcerf, “for I caught one. I was +informed that I was prisoner until I paid the sum of 4,000 Roman +crowns—about 24,000 francs. Unfortunately, I had not above 1,500. I was +at the end of my journey and of my credit. I wrote to Franz—and were he +here he would confirm every word—I wrote then to Franz that if he did +not come with the four thousand crowns before six, at ten minutes past +I should have gone to join the blessed saints and glorious martyrs in +whose company I had the honor of being; and Signor Luigi Vampa, such +was the name of the chief of these bandits, would have scrupulously +kept his word.” + +“But Franz did come with the four thousand crowns,” said +Château-Renaud. “A man whose name is Franz d’Épinay or Albert de +Morcerf has not much difficulty in procuring them.” + +“No, he arrived accompanied simply by the guest I am going to present +to you.” + +“Ah, this gentleman is a Hercules killing Cacus, a Perseus freeing +Andromeda.” + +“No, he is a man about my own size.” + +“Armed to the teeth?” + +“He had not even a knitting-needle.” + +“But he paid your ransom?” + +“He said two words to the chief and I was free.” + +“And they apologized to him for having carried you off?” said +Beauchamp. + +“Just so.” + +“Why, he is a second Ariosto.” + +“No, his name is the Count of Monte Cristo.” + +“There is no Count of Monte Cristo” said Debray. + +“I do not think so,” added Château-Renaud, with the air of a man who +knows the whole of the European nobility perfectly. + +“Does anyone know anything of a Count of Monte Cristo?” + +“He comes possibly from the Holy Land, and one of his ancestors +possessed Calvary, as the Mortemarts did the Dead Sea.” + +“I think I can assist your researches,” said Maximilian. “Monte Cristo +is a little island I have often heard spoken of by the old sailors my +father employed—a grain of sand in the centre of the Mediterranean, an +atom in the infinite.” + +“Precisely!” cried Albert. “Well, he of whom I speak is the lord and +master of this grain of sand, of this atom; he has purchased the title +of count somewhere in Tuscany.” + +“He is rich, then?” + +“I believe so.” + +“But that ought to be visible.” + +“That is what deceives you, Debray.” + +“I do not understand you.” + +“Have you read the _Arabian Nights_?” + +“What a question!” + +“Well, do you know if the persons you see there are rich or poor, if +their sacks of wheat are not rubies or diamonds? They seem like poor +fishermen, and suddenly they open some mysterious cavern filled with +the wealth of the Indies.” + +“Which means?” + +“Which means that my Count of Monte Cristo is one of those fishermen. +He has even a name taken from the book, since he calls himself Sinbad +the Sailor, and has a cave filled with gold.” + +“And you have seen this cavern, Morcerf?” asked Beauchamp. + +“No, but Franz has; for heaven’s sake, not a word of this before him. +Franz went in with his eyes blindfolded, and was waited on by mutes and +by women to whom Cleopatra was a painted strumpet. Only he is not quite +sure about the women, for they did not come in until after he had taken +hashish, so that what he took for women might have been simply a row of +statues.” + +The two young men looked at Morcerf as if to say,—“Are you mad, or are +you laughing at us?” + +“And I also,” said Morrel thoughtfully, “have heard something like this +from an old sailor named Penelon.” + +“Ah,” cried Albert, “it is very lucky that M. Morrel comes to aid me; +you are vexed, are you not, that he thus gives a clew to the +labyrinth?” + +“My dear Albert,” said Debray, “what you tell us is so extraordinary.” + +“Ah, because your ambassadors and your consuls do not tell you of +them—they have no time. They are too much taken up with interfering in +the affairs of their countrymen who travel.” + +“Now you get angry, and attack our poor agents. How will you have them +protect you? The Chamber cuts down their salaries every day, so that +now they have scarcely any. Will you be ambassador, Albert? I will send +you to Constantinople.” + +“No, lest on the first demonstration I make in favor of Mehemet Ali, +the Sultan send me the bowstring, and make my secretaries strangle me.” + +“You say very true,” responded Debray. + +“Yes,” said Albert, “but this has nothing to do with the existence of +the Count of Monte Cristo.” + +“_Pardieu!_ everyone exists.” + +“Doubtless, but not in the same way; everyone has not black slaves, a +princely retinue, an arsenal of weapons that would do credit to an +Arabian fortress, horses that cost six thousand francs apiece, and +Greek mistresses.” + +“Have you seen the Greek mistress?” + +“I have both seen and heard her. I saw her at the theatre, and heard +her one morning when I breakfasted with the count.” + +“He eats, then?” + +“Yes; but so little, it can hardly be called eating.” + +“He must be a vampire.” + +“Laugh, if you will; the Countess G——, who knew Lord Ruthven, declared +that the count was a vampire.” + +“Ah, capital,” said Beauchamp. “For a man not connected with +newspapers, here is the pendant to the famous sea-serpent of the +_Constitutionnel_.” + +“Wild eyes, the iris of which contracts or dilates at pleasure,” said +Debray; “facial angle strongly developed, magnificent forehead, livid +complexion, black beard, sharp and white teeth, politeness +unexceptionable.” + +“Just so, Lucien,” returned Morcerf; “you have described him feature +for feature. Yes, keen and cutting politeness. This man has often made +me shudder; and one day when we were viewing an execution, I thought I +should faint, more from hearing the cold and calm manner in which he +spoke of every description of torture, than from the sight of the +executioner and the culprit.” + +“Did he not conduct you to the ruins of the Colosseum and suck your +blood?” asked Beauchamp. + +“Or, having delivered you, make you sign a flaming parchment, +surrendering your soul to him as Esau did his birth-right?” + +“Rail on, rail on at your ease, gentlemen,” said Morcerf, somewhat +piqued. “When I look at you Parisians, idlers on the Boulevard de Gand +or the Bois de Boulogne, and think of this man, it seems to me we are +not of the same race.” + +“I am highly flattered,” returned Beauchamp. + +“At the same time,” added Château-Renaud, “your Count of Monte Cristo +is a very fine fellow, always excepting his little arrangements with +the Italian banditti.” + +“There are no Italian banditti,” said Debray. + +“No vampire,” cried Beauchamp. + +“No Count of Monte Cristo” added Debray. “There is half-past ten +striking, Albert.” + +20243m + + + +“Confess you have dreamed this, and let us sit down to breakfast,” +continued Beauchamp. + +But the sound of the clock had not died away when Germain announced, +“His excellency the Count of Monte Cristo.” The involuntary start +everyone gave proved how much Morcerf’s narrative had impressed them, +and Albert himself could not wholly refrain from manifesting sudden +emotion. He had not heard a carriage stop in the street, or steps in +the antechamber; the door had itself opened noiselessly. The count +appeared, dressed with the greatest simplicity, but the most fastidious +dandy could have found nothing to cavil at in his toilet. Every article +of dress—hat, coat, gloves, and boots—was from the first makers. He +seemed scarcely five-and-thirty. But what struck everybody was his +extreme resemblance to the portrait Debray had drawn. The count +advanced, smiling, into the centre of the room, and approached Albert, +who hastened towards him holding out his hand in a ceremonial manner. + +“Punctuality,” said Monte Cristo, “is the politeness of kings, +according to one of your sovereigns, I think; but it is not the same +with travellers. However, I hope you will excuse the two or three +seconds I am behindhand; five hundred leagues are not to be +accomplished without some trouble, and especially in France, where, it +seems, it is forbidden to beat the postilions.” + +“My dear count,” replied Albert, “I was announcing your visit to some +of my friends, whom I had invited in consequence of the promise you did +me the honor to make, and whom I now present to you. They are the Count +of Château-Renaud, whose nobility goes back to the twelve peers, and +whose ancestors had a place at the Round Table; M. Lucien Debray, +private secretary to the minister of the interior; M. Beauchamp, an +editor of a paper, and the terror of the French government, but of +whom, in spite of his national celebrity, you perhaps have not heard in +Italy, since his paper is prohibited there; and M. Maximilian Morrel, +captain of Spahis.” + +At this name the count, who had hitherto saluted everyone with +courtesy, but at the same time with coldness and formality, stepped a +pace forward, and a slight tinge of red colored his pale cheeks. + +“You wear the uniform of the new French conquerors, monsieur,” said he; +“it is a handsome uniform.” + +No one could have said what caused the count’s voice to vibrate so +deeply, and what made his eye flash, which was in general so clear, +lustrous, and limpid when he pleased. + +“You have never seen our Africans, count?” said Albert. + +“Never,” replied the count, who was by this time perfectly master of +himself again. + +“Well, beneath this uniform beats one of the bravest and noblest hearts +in the whole army.” + +“Oh, M. de Morcerf,” interrupted Morrel. + +“Let me go on, captain. And we have just heard,” continued Albert, “of +a new deed of his, and so heroic a one, that, although I have seen him +today for the first time, I request you to allow me to introduce him as +my friend.” + +At these words it was still possible to observe in Monte Cristo the +concentrated look, changing color, and slight trembling of the eyelid +that show emotion. + +“Ah, you have a noble heart,” said the count; “so much the better.” + +This exclamation, which corresponded to the count’s own thought rather +than to what Albert was saying, surprised everybody, and especially +Morrel, who looked at Monte Cristo with wonder. But, at the same time, +the intonation was so soft that, however strange the speech might seem, +it was impossible to be offended at it. + +20245m + + + +“Why should he doubt it?” said Beauchamp to Château-Renaud. + +“In reality,” replied the latter, who, with his aristocratic glance and +his knowledge of the world, had penetrated at once all that was +penetrable in Monte Cristo, “Albert has not deceived us, for the count +is a most singular being. What say you, Morrel!” + +“_Ma foi_, he has an open look about him that pleases me, in spite of +the singular remark he has made about me.” + +“Gentlemen,” said Albert, “Germain informs me that breakfast is ready. +My dear count, allow me to show you the way.” They passed silently into +the breakfast-room, and everyone took his place. + +“Gentlemen,” said the count, seating himself, “permit me to make a +confession which must form my excuse for any improprieties I may +commit. I am a stranger, and a stranger to such a degree, that this is +the first time I have ever been at Paris. The French way of living is +utterly unknown to me, and up to the present time I have followed the +Eastern customs, which are entirely in contrast to the Parisian. I beg +you, therefore, to excuse if you find anything in me too Turkish, too +Italian, or too Arabian. Now, then, let us breakfast.” + +“With what an air he says all this,” muttered Beauchamp; “decidedly he +is a great man.” + +“A great man in his own country,” added Debray. + +“A great man in every country, M. Debray,” said Château-Renaud. + +The count was, it may be remembered, a most temperate guest. Albert +remarked this, expressing his fears lest, at the outset, the Parisian +mode of life should displease the traveller in the most essential +point. + +“My dear count,” said he, “I fear one thing, and that is, that the fare +of the Rue du Helder is not so much to your taste as that of the Piazza +di Spagna. I ought to have consulted you on the point, and have had +some dishes prepared expressly.” + +“Did you know me better,” returned the count, smiling, “you would not +give one thought of such a thing for a traveller like myself, who has +successively lived on macaroni at Naples, polenta at Milan, olla +podrida at Valencia, pilau at Constantinople, curry in India, and +swallows’ nests in China. I eat everywhere, and of everything, only I +eat but little; and today, that you reproach me with my want of +appetite, is my day of appetite, for I have not eaten since yesterday +morning.” + +“What,” cried all the guests, “you have not eaten for four-and-twenty +hours?” + +“No,” replied the count; “I was forced to go out of my road to obtain +some information near Nîmes, so that I was somewhat late, and therefore +I did not choose to stop.” + +“And you ate in your carriage?” asked Morcerf. + +“No, I slept, as I generally do when I am weary without having the +courage to amuse myself, or when I am hungry without feeling inclined +to eat.” + +“But you can sleep when you please, monsieur?” said Morrel. + +“Yes.” + +“You have a recipe for it?” + +“An infallible one.” + +“That would be invaluable to us in Africa, who have not always any food +to eat, and rarely anything to drink.” + +“Yes,” said Monte Cristo; “but, unfortunately, a recipe excellent for a +man like myself would be very dangerous applied to an army, which might +not awake when it was needed.” + +“May we inquire what is this recipe?” asked Debray. + +“Oh, yes,” returned Monte Cristo; “I make no secret of it. It is a +mixture of excellent opium, which I fetched myself from Canton in order +to have it pure, and the best hashish which grows in the East—that is, +between the Tigris and the Euphrates. These two ingredients are mixed +in equal proportions, and formed into pills. Ten minutes after one is +taken, the effect is produced. Ask Baron Franz d’Épinay; I think he +tasted them one day.” + +“Yes,” replied Morcerf, “he said something about it to me.” + +“But,” said Beauchamp, who, as became a journalist, was very +incredulous, “you always carry this drug about you?” + +“Always.” + +“Would it be an indiscretion to ask to see those precious pills?” +continued Beauchamp, hoping to take him at a disadvantage. + +“No, monsieur,” returned the count; and he drew from his pocket a +marvellous casket, formed out of a single emerald and closed by a +golden lid which unscrewed and gave passage to a small greenish colored +pellet about the size of a pea. This ball had an acrid and penetrating +odor. There were four or five more in the emerald, which would contain +about a dozen. The casket passed around the table, but it was more to +examine the admirable emerald than to see the pills that it passed from +hand to hand. + +“And is it your cook who prepares these pills?” asked Beauchamp. + +“Oh, no, monsieur,” replied Monte Cristo; “I do not thus betray my +enjoyments to the vulgar. I am a tolerable chemist, and prepare my +pills myself.” + +“This is a magnificent emerald, and the largest I have ever seen,” said +Château-Renaud, “although my mother has some remarkable family jewels.” + +“I had three similar ones,” returned Monte Cristo. “I gave one to the +Sultan, who mounted it in his sabre; another to our holy father the +Pope, who had it set in his tiara, opposite to one nearly as large, +though not so fine, given by the Emperor Napoleon to his predecessor, +Pius VII. I kept the third for myself, and I had it hollowed out, which +reduced its value, but rendered it more commodious for the purpose I +intended.” + +Everyone looked at Monte Cristo with astonishment; he spoke with so +much simplicity that it was evident he spoke the truth, or that he was +mad. However, the sight of the emerald made them naturally incline to +the former belief. + +“And what did these two sovereigns give you in exchange for these +magnificent presents?” asked Debray. + +“The Sultan, the liberty of a woman,” replied the Count; “the Pope, the +life of a man; so that once in my life I have been as powerful as if +heaven had brought me into the world on the steps of a throne.” + +“And it was Peppino you saved, was it not?” cried Morcerf; “it was for +him that you obtained pardon?” + +“Perhaps,” returned the count, smiling. + +“My dear count, you have no idea what pleasure it gives me to hear you +speak thus,” said Morcerf. “I had announced you beforehand to my +friends as an enchanter of the _Arabian Nights_, a wizard of the Middle +Ages; but the Parisians are so subtle in paradoxes that they mistake +for caprices of the imagination the most incontestable truths, when +these truths do not form a part of their daily existence. For example, +here is Debray who reads, and Beauchamp who prints, every day, ‘A +member of the Jockey Club has been stopped and robbed on the +Boulevard;’ ‘four persons have been assassinated in the Rue St. Denis’ +or ‘the Faubourg St. Germain;’ ‘ten, fifteen, or twenty thieves, have +been arrested in a _café_ on the Boulevard du Temple, or in the Thermes +de Julien,’—and yet these same men deny the existence of the bandits in +the Maremma, the Campagna di Romana, or the Pontine Marshes. Tell them +yourself that I was taken by bandits, and that without your generous +intercession I should now have been sleeping in the Catacombs of St. +Sebastian, instead of receiving them in my humble abode in the Rue du +Helder.” + +“Ah,” said Monte Cristo “you promised me never to mention that +circumstance.” + +“It was not I who made that promise,” cried Morcerf; “it must have been +someone else whom you have rescued in the same manner, and whom you +have forgotten. Pray speak of it, for I shall not only, I trust, relate +the little I do know, but also a great deal I do not know.” + +“It seems to me,” returned the count, smiling, “that you played a +sufficiently important part to know as well as myself what happened.” + +20249m + + + +“Well, you promise me, if I tell all I know, to relate, in your turn, +all that I do not know?” + +“That is but fair,” replied Monte Cristo. + +“Well,” said Morcerf, “for three days I believed myself the object of +the attentions of a masque, whom I took for a descendant of Tullia or +Poppæa, while I was simply the object of the attentions of a +_contadina_, and I say _contadina_ to avoid saying peasant girl. What I +know is, that, like a fool, a greater fool than he of whom I spoke just +now, I mistook for this peasant girl a young bandit of fifteen or +sixteen, with a beardless chin and slim waist, and who, just as I was +about to imprint a chaste salute on his lips, placed a pistol to my +head, and, aided by seven or eight others, led, or rather dragged me, +to the Catacombs of St. Sebastian, where I found a highly educated +brigand chief perusing Cæsar’s _Commentaries_, and who deigned to leave +off reading to inform me, that unless the next morning, before six +o’clock, four thousand piastres were paid into his account at his +banker’s, at a quarter past six I should have ceased to exist. The +letter is still to be seen, for it is in Franz d’Épinay’s possession, +signed by me, and with a postscript of M. Luigi Vampa. This is all I +know, but I know not, count, how you contrived to inspire so much +respect in the bandits of Rome who ordinarily have so little respect +for anything. I assure you, Franz and I were lost in admiration.” + +“Nothing more simple,” returned the count. “I had known the famous +Vampa for more than ten years. When he was quite a child, and only a +shepherd, I gave him a few gold pieces for showing me my way, and he, +in order to repay me, gave me a poniard, the hilt of which he had +carved with his own hand, and which you may have seen in my collection +of arms. In after years, whether he had forgotten this interchange of +presents, which ought to have cemented our friendship, or whether he +did not recollect me, he sought to take me, but, on the contrary, it +was I who captured him and a dozen of his band. I might have handed him +over to Roman justice, which is somewhat expeditious, and which would +have been particularly so with him; but I did nothing of the sort—I +suffered him and his band to depart.” + +“With the condition that they should sin no more,” said Beauchamp, +laughing. “I see they kept their promise.” + +“No, monsieur,” returned Monte Cristo “upon the simple condition that +they should respect myself and my friends. Perhaps what I am about to +say may seem strange to you, who are socialists, and vaunt humanity and +your duty to your neighbor, but I never seek to protect a society which +does not protect me, and which I will even say, generally occupies +itself about me only to injure me; and thus by giving them a low place +in my esteem, and preserving a neutrality towards them, it is society +and my neighbor who are indebted to me.” + +“Bravo,” cried Château-Renaud; “you are the first man I ever met +sufficiently courageous to preach egotism. Bravo, count, bravo!” + +“It is frank, at least,” said Morrel. “But I am sure that the count +does not regret having once deviated from the principles he has so +boldly avowed.” + +“How have I deviated from those principles, monsieur?” asked Monte +Cristo, who could not help looking at Morrel with so much intensity, +that two or three times the young man had been unable to sustain that +clear and piercing glance. + +“Why, it seems to me,” replied Morrel, “that in delivering M. de +Morcerf, whom you did not know, you did good to your neighbor and to +society.” + +“Of which he is the brightest ornament,” said Beauchamp, drinking off a +glass of champagne. + +“My dear count,” cried Morcerf, “you are at fault—you, one of the most +formidable logicians I know—and you must see it clearly proved that +instead of being an egotist, you are a philanthropist. Ah, you call +yourself Oriental, a Levantine, Maltese, Indian, Chinese; your family +name is Monte Cristo; Sinbad the Sailor is your baptismal appellation, +and yet the first day you set foot in Paris you instinctively display +the greatest virtue, or rather the chief defect, of us eccentric +Parisians,—that is, you assume the vices you have not, and conceal the +virtues you possess.” + +“My dear vicomte,” returned Monte Cristo, “I do not see, in all I have +done, anything that merits, either from you or these gentlemen, the +pretended eulogies I have received. You were no stranger to me, for I +knew you from the time I gave up two rooms to you, invited you to +breakfast with me, lent you one of my carriages, witnessed the Carnival +in your company, and saw with you from a window in the Piazza del +Popolo the execution that affected you so much that you nearly fainted. +I will appeal to any of these gentlemen, could I leave my guest in the +hands of a hideous bandit, as you term him? Besides, you know, I had +the idea that you could introduce me into some of the Paris salons when +I came to France. You might some time ago have looked upon this +resolution as a vague project, but today you see it was a reality, and +you must submit to it under penalty of breaking your word.” + +“I will keep it,” returned Morcerf; “but I fear that you will be much +disappointed, accustomed as you are to picturesque events and fantastic +horizons. Amongst us you will not meet with any of those episodes with +which your adventurous existence has so familiarized you; our +Chimborazo is Mortmartre, our Himalaya is Mount Valérien, our Great +Desert is the plain of Grenelle, where they are now boring an artesian +well to water the caravans. We have plenty of thieves, though not so +many as is said; but these thieves stand in far more dread of a +policeman than a lord. France is so prosaic, and Paris so civilized a +city, that you will not find in its eighty-five departments—I say +eighty-five, because I do not include Corsica—you will not find, then, +in these eighty-five departments a single hill on which there is not a +telegraph, or a grotto in which the commissary of police has not put up +a gaslamp. There is but one service I can render you, and for that I +place myself entirely at your orders, that is, to present, or make my +friends present, you everywhere; besides, you have no need of anyone to +introduce you—with your name, and your fortune, and your talent” (Monte +Cristo bowed with a somewhat ironical smile) “you can present yourself +everywhere, and be well received. I can be useful in one way only—if +knowledge of Parisian habits, of the means of rendering yourself +comfortable, or of the bazaars, can assist, you may depend upon me to +find you a fitting dwelling here. I do not dare offer to share my +apartments with you, as I shared yours at Rome—I, who do not profess +egotism, but am yet egotist _par excellence_; for, except myself, these +rooms would not hold a shadow more, unless that shadow were feminine.” + +“Ah,” said the count, “that is a most conjugal reservation; I recollect +that at Rome you said something of a projected marriage. May I +congratulate you?” + +“The affair is still in projection.” + +“And he who says in ‘projection,’ means already decided,” said Debray. + +“No,” replied Morcerf, “my father is most anxious about it; and I hope, +ere long, to introduce you, if not to my wife, at least to my +betrothed—Mademoiselle Eugénie Danglars.” + +“Eugénie Danglars,” said Monte Cristo; “tell me, is not her father +Baron Danglars?” + +“Yes,” returned Morcerf, “a baron of a new creation.” + +“What matter,” said Monte Cristo “if he has rendered the State services +which merit this distinction?” + +“Enormous ones,” answered Beauchamp. “Although in reality a Liberal, he +negotiated a loan of six millions for Charles X., in 1829, who made him +a baron and chevalier of the Legion of Honor; so that he wears the +ribbon, not, as you would think, in his waistcoat-pocket, but at his +button-hole.” + +“Ah,” interrupted Morcerf, laughing, “Beauchamp, Beauchamp, keep that +for the _Corsaire_ or the _Charivari_, but spare my future +father-in-law before me.” Then, turning to Monte Cristo, “You just now +spoke his name as if you knew the baron?” + +“I do not know him,” returned Monte Cristo; “but I shall probably soon +make his acquaintance, for I have a credit opened with him by the house +of Richard & Blount, of London, Arstein & Eskeles of Vienna, and +Thomson & French at Rome.” As he pronounced the two last names, the +count glanced at Maximilian Morrel. If the stranger expected to produce +an effect on Morrel, he was not mistaken—Maximilian started as if he +had been electrified. + +“Thomson & French,” said he; “do you know this house, monsieur?” + +20253m + + + +“They are my bankers in the capital of the Christian world,” returned +the count quietly. “Can my influence with them be of any service to +you?” + +“Oh, count, you could assist me perhaps in researches which have been, +up to the present, fruitless. This house, in past years, did ours a +great service, and has, I know not for what reason, always denied +having rendered us this service.” + +“I shall be at your orders,” said Monte Cristo bowing. + +“But,” continued Morcerf, “_à propos_ of Danglars,—we have strangely +wandered from the subject. We were speaking of a suitable habitation +for the Count of Monte Cristo. Come, gentlemen, let us all propose some +place. Where shall we lodge this new guest in our great capital?” + +“Faubourg Saint-Germain,” said Château-Renaud. “The count will find +there a charming hotel, with a court and garden.” + +“Bah! Château-Renaud,” returned Debray, “you only know your dull and +gloomy Faubourg Saint-Germain; do not pay any attention to him, +count—live in the Chaussée d’Antin, that’s the real centre of Paris.” + +“Boulevard de l’Opéra,” said Beauchamp; “the second floor—a house with +a balcony. The count will have his cushions of silver cloth brought +there, and as he smokes his chibouque, see all Paris pass before him.” + +“You have no idea, then, Morrel?” asked Château-Renaud; “you do not +propose anything.” + +“Oh, yes,” returned the young man, smiling; “on the contrary, I have +one, but I expected the count would be tempted by one of the brilliant +proposals made him, yet as he has not replied to any of them, I will +venture to offer him a suite of apartments in a charming hotel, in the +Pompadour style, that my sister has inhabited for a year, in the Rue +Meslay.” + +“You have a sister?” asked the count. + +“Yes, monsieur, a most excellent sister.” + +“Married?” + +“Nearly nine years.” + +“Happy?” asked the count again. + +“As happy as it is permitted to a human creature to be,” replied +Maximilian. “She married the man she loved, who remained faithful to us +in our fallen fortunes—Emmanuel Herbaut.” + +Monte Cristo smiled imperceptibly. + +“I live there during my leave of absence,” continued Maximilian; “and I +shall be, together with my brother-in-law Emmanuel, at the disposition +of the Count, whenever he thinks fit to honor us.” + +“One minute,” cried Albert, without giving Monte Cristo the time to +reply. “Take care, you are going to immure a traveller, Sinbad the +Sailor, a man who comes to see Paris; you are going to make a patriarch +of him.” + +20255m + + + +“Oh, no,” said Morrel; “my sister is five-and-twenty, my brother-in-law +is thirty, they are gay, young, and happy. Besides, the count will be +in his own house, and only see them when he thinks fit to do so.” + +“Thanks, monsieur,” said Monte Cristo; “I shall content myself with +being presented to your sister and her husband, if you will do me the +honor to introduce me; but I cannot accept the offer of anyone of these +gentlemen, since my habitation is already prepared.” + +“What,” cried Morcerf; “you are, then, going to a hotel—that will be +very dull for you.” + +“Was I so badly lodged at Rome?” said Monte Cristo smiling. + +“_Parbleu!_ at Rome you spent fifty thousand piastres in furnishing +your apartments, but I presume that you are not disposed to spend a +similar sum every day.” + +“It is not that which deterred me,” replied Monte Cristo; “but as I +determined to have a house to myself, I sent on my valet de chambre, +and he ought by this time to have bought the house and furnished it.” + +“But you have, then, a valet de chambre who knows Paris?” said +Beauchamp. + +“It is the first time he has ever been in Paris. He is black, and +cannot speak,” returned Monte Cristo. + +“It is Ali!” cried Albert, in the midst of the general surprise. + +“Yes, Ali himself, my Nubian mute, whom you saw, I think, at Rome.” + +“Certainly,” said Morcerf; “I recollect him perfectly. But how could +you charge a Nubian to purchase a house, and a mute to furnish it?—he +will do everything wrong.” + +“Undeceive yourself, monsieur,” replied Monte Cristo; “I am quite sure, +that, on the contrary, he will choose everything as I wish. He knows my +tastes, my caprices, my wants. He has been here a week, with the +instinct of a hound, hunting by himself. He will arrange everything for +me. He knew, that I should arrive today at ten o’clock; he was waiting +for me at nine at the Barrière de Fontainebleau. He gave me this paper; +it contains the number of my new abode; read it yourself,” and Monte +Cristo passed a paper to Albert. + +“Ah, that is really original,” said Beauchamp. + +“And very princely,” added Château-Renaud. + +“What, do you not know your house?” asked Debray. + +“No,” said Monte Cristo; “I told you I did not wish to be behind my +time; I dressed myself in the carriage, and descended at the viscount’s +door.” The young men looked at each other; they did not know if it was +a comedy Monte Cristo was playing, but every word he uttered had such +an air of simplicity, that it was impossible to suppose what he said +was false—besides, why should he tell a falsehood? + +“We must content ourselves, then,” said Beauchamp, “with rendering the +count all the little services in our power. I, in my quality of +journalist, open all the theatres to him.” + +“Thanks, monsieur,” returned Monte Cristo, “my steward has orders to +take a box at each theatre.” + +“Is your steward also a Nubian?” asked Debray. + +“No, he is a countryman of yours, if a Corsican is a countryman of +anyone’s. But you know him, M. de Morcerf.” + +“Is it that excellent M. Bertuccio, who understands hiring windows so +well?” + +“Yes, you saw him the day I had the honor of receiving you; he has been +a soldier, a smuggler—in fact, everything. I would not be quite sure +that he has not been mixed up with the police for some trifle—a stab +with a knife, for instance.” + +“And you have chosen this honest citizen for your steward,” said +Debray. “Of how much does he rob you every year?” + +“On my word,” replied the count, “not more than another. I am sure he +answers my purpose, knows no impossibility, and so I keep him.” + +“Then,” continued Château-Renaud, “since you have an establishment, a +steward, and a hotel in the Champs-Élysées, you only want a mistress.” +Albert smiled. He thought of the fair Greek he had seen in the count’s +box at the Argentina and Valle theatres. + +“I have something better than that,” said Monte Cristo; “I have a +slave. You procure your mistresses from the opera, the Vaudeville, or +the Variétés; I purchased mine at Constantinople; it cost me more, but +I have nothing to fear.” + +“But you forget,” replied Debray, laughing, “that we are Franks by name +and franks by nature, as King Charles said, and that the moment she +puts her foot in France your slave becomes free.” + +“Who will tell her?” + +“The first person who sees her.” + +“She only speaks Romaic.” + +“That is different.” + +“But at least we shall see her,” said Beauchamp, “or do you keep +eunuchs as well as mutes?” + +“Oh, no,” replied Monte Cristo; “I do not carry brutalism so far. +Everyone who surrounds me is free to quit me, and when they leave me +will no longer have any need of me or anyone else; it is for that +reason, perhaps, that they do not quit me.” + +They had long since passed to dessert and cigars. + +“My dear Albert,” said Debray, rising, “it is half-past two. Your guest +is charming, but you leave the best company to go into the worst +sometimes. I must return to the minister’s. I will tell him of the +count, and we shall soon know who he is.” + +“Take care,” returned Albert; “no one has been able to accomplish +that.” + +“Oh, we have three millions for our police; it is true they are almost +always spent beforehand, but, no matter, we shall still have fifty +thousand francs to spend for this purpose.” + +“And when you know, will you tell me?” + +“I promise you. _Au revoir_, Albert. Gentlemen, good morning.” + +As he left the room, Debray called out loudly, “My carriage.” + +“Bravo,” said Beauchamp to Albert; “I shall not go to the Chamber, but +I have something better to offer my readers than a speech of M. +Danglars.” + +“For heaven’s sake, Beauchamp,” returned Morcerf, “do not deprive me of +the merit of introducing him everywhere. Is he not peculiar?” + +“He is more than that,” replied Château-Renaud; “he is one of the most +extraordinary men I ever saw in my life. Are you coming, Morrel?” + +“Directly I have given my card to the count, who has promised to pay us +a visit at Rue Meslay, No. 14.” + +“Be sure I shall not fail to do so,” returned the count, bowing. + +And Maximilian Morrel left the room with the Baron de Château-Renaud, +leaving Monte Cristo alone with Morcerf. + + + + Chapter 41. The Presentation + +When Albert found himself alone with Monte Cristo, “My dear count,” +said he, “allow me to commence my services as _cicerone_ by showing you +a specimen of a bachelor’s apartment. You, who are accustomed to the +palaces of Italy, can amuse yourself by calculating in how many square +feet a young man who is not the worst lodged in Paris can live. As we +pass from one room to another, I will open the windows to let you +breathe.” + +Monte Cristo had already seen the breakfast-room and the salon on the +ground floor. Albert led him first to his _atelier_, which was, as we +have said, his favorite apartment. Monte Cristo quickly appreciated all +that Albert had collected here—old cabinets, Japanese porcelain, +Oriental stuffs, Venetian glass, arms from all parts of the +world—everything was familiar to him; and at the first glance he +recognized their date, their country, and their origin. + +Morcerf had expected he should be the guide; on the contrary, it was he +who, under the count’s guidance, followed a course of archæology, +mineralogy, and natural history. + +They descended to the first floor; Albert led his guest into the salon. +The salon was filled with the works of modern artists; there were +landscapes by Dupré, with their long reeds and tall trees, their lowing +oxen and marvellous skies; Delacroix’s Arabian cavaliers, with their +long white burnouses, their shining belts, their damasked arms, their +horses, who tore each other with their teeth while their riders +contended fiercely with their maces; _aquarelles_ of Boulanger, +representing Notre Dame de Paris with that vigor that makes the artist +the rival of the poet; there were paintings by Diaz, who makes his +flowers more beautiful than flowers, his suns more brilliant than the +sun; designs by Decamp, as vividly colored as those of Salvator Rosa, +but more poetic; _pastels_ by Giraud and Müller, representing children +like angels and women with the features of a virgin; sketches torn from +the album of Dauzats’ “Travels in the East,” that had been made in a +few seconds on the saddle of a camel, or beneath the dome of a +mosque—in a word, all that modern art can give in exchange and as +recompense for the art lost and gone with ages long since past. + +Albert expected to have something new this time to show to the +traveller, but, to his great surprise, the latter, without seeking for +the signatures, many of which, indeed, were only initials, named +instantly the author of every picture in such a manner that it was easy +to see that each name was not only known to him, but that each style +associated with it had been appreciated and studied by him. From the +salon they passed into the bedchamber; it was a model of taste and +simple elegance. A single portrait, signed by Léopold Robert, shone in +its carved and gilded frame. This portrait attracted the Count of Monte +Cristo’s attention, for he made three rapid steps in the chamber, and +stopped suddenly before it. + +It was the portrait of a young woman of five or six-and-twenty, with a +dark complexion, and light and lustrous eyes, veiled beneath long +lashes. She wore the picturesque costume of the Catalan fisherwomen, a +red and black bodice, and golden pins in her hair. She was looking at +the sea, and her form was outlined on the blue ocean and sky. The light +was so faint in the room that Albert did not perceive the pallor that +spread itself over the count’s visage, or the nervous heaving of his +chest and shoulders. Silence prevailed for an instant, during which +Monte Cristo gazed intently on the picture. + +“You have there a most charming mistress, viscount,” said the count in +a perfectly calm tone; “and this costume—a ball costume, +doubtless—becomes her admirably.” + +“Ah, monsieur,” returned Albert, “I would never forgive you this +mistake if you had seen another picture beside this. You do not know my +mother; she it is whom you see here. She had her portrait painted thus +six or eight years ago. This costume is a fancy one, it appears, and +the resemblance is so great that I think I still see my mother the same +as she was in 1830. The countess had this portrait painted during the +count’s absence. She doubtless intended giving him an agreeable +surprise; but, strange to say, this portrait seemed to displease my +father, and the value of the picture, which is, as you see, one of the +best works of Léopold Robert, could not overcome his dislike to it. It +is true, between ourselves, that M. de Morcerf is one of the most +assiduous peers at the Luxembourg, a general renowned for theory, but a +most mediocre amateur of art. It is different with my mother, who +paints exceedingly well, and who, unwilling to part with so valuable a +picture, gave it to me to put here, where it would be less likely to +displease M. de Morcerf, whose portrait, by Gros, I will also show you. +Excuse my talking of family matters, but as I shall have the honor of +introducing you to the count, I tell you this to prevent you making any +allusions to this picture. The picture seems to have a malign +influence, for my mother rarely comes here without looking at it, and +still more rarely does she look at it without weeping. This +disagreement is the only one that has ever taken place between the +count and countess, who are still as much united, although married more +than twenty years, as on the first day of their wedding.” + +20261m + + + +Monte Cristo glanced rapidly at Albert, as if to seek a hidden meaning +in his words, but it was evident the young man uttered them in the +simplicity of his heart. + +“Now,” said Albert, “that you have seen all my treasures, allow me to +offer them to you, unworthy as they are. Consider yourself as in your +own house, and to put yourself still more at your ease, pray accompany +me to the apartments of M. de Morcerf, he whom I wrote from Rome an +account of the services you rendered me, and to whom I announced your +promised visit, and I may say that both the count and countess +anxiously desire to thank you in person. You are somewhat _blasé_ I +know, and family scenes have not much effect on Sinbad the Sailor, who +has seen so many others. However, accept what I propose to you as an +initiation into Parisian life—a life of politeness, visiting, and +introductions.” + +Monte Cristo bowed without making any answer; he accepted the offer +without enthusiasm and without regret, as one of those conventions of +society which every gentleman looks upon as a duty. Albert summoned his +servant, and ordered him to acquaint M. and Madame de Morcerf of the +arrival of the Count of Monte Cristo. Albert followed him with the +count. When they arrived at the antechamber, above the door was visible +a shield, which, by its rich ornaments and its harmony with the rest of +the furniture, indicated the importance the owner attached to this +blazon. Monte Cristo stopped and examined it attentively. + +“Azure seven merlets, or, placed bender,” said he. “These are, +doubtless, your family arms? Except the knowledge of blazons, that +enables me to decipher them, I am very ignorant of heraldry—I, a count +of a fresh creation, fabricated in Tuscany by the aid of a commandery +of St. Stephen, and who would not have taken the trouble had I not been +told that when you travel much it is necessary. Besides, you must have +something on the panels of your carriage, to escape being searched by +the custom-house officers. Excuse my putting such a question to you.” + +“It is not indiscreet,” returned Morcerf, with the simplicity of +conviction. “You have guessed rightly. These are our arms, that is, +those of my father, but they are, as you see, joined to another shield, +which has gules, a silver tower, which are my mother’s. By her side I +am Spanish, but the family of Morcerf is French, and, I have heard, one +of the oldest of the south of France.” + +“Yes,” replied Monte Cristo “these blazons prove that. Almost all the +armed pilgrims that went to the Holy Land took for their arms either a +cross, in honor of their mission, or birds of passage, in sign of the +long voyage they were about to undertake, and which they hoped to +accomplish on the wings of faith. One of your ancestors had joined the +Crusades, and supposing it to be only that of St. Louis, that makes you +mount to the thirteenth century, which is tolerably ancient.” + +“It is possible,” said Morcerf; “my father has in his study a +genealogical tree which will tell you all that, and on which I made +commentaries that would have greatly edified d’Hozier and Jaucourt. At +present I no longer think of it, and yet I must tell you that we are +beginning to occupy ourselves greatly with these things under our +popular government.” + +“Well, then, your government would do well to choose from the past +something better than the things that I have noticed on your monuments, +and which have no heraldic meaning whatever. As for you, viscount,” +continued Monte Cristo to Morcerf, “you are more fortunate than the +government, for your arms are really beautiful, and speak to the +imagination. Yes, you are at once from Provence and Spain; that +explains, if the portrait you showed me be like, the dark hue I so much +admired on the visage of the noble Catalan.” + +It would have required the penetration of Œdipus or the Sphinx to have +divined the irony the count concealed beneath these words, apparently +uttered with the greatest politeness. Morcerf thanked him with a smile, +and pushed open the door above which were his arms, and which, as we +have said, opened into the salon. In the most conspicuous part of the +salon was another portrait. It was that of a man, from five to +eight-and-thirty, in the uniform of a general officer, wearing the +double epaulet of heavy bullion, that indicates superior rank, the +ribbon of the Legion of Honor around his neck, which showed he was a +commander, and on the right breast, the star of a grand officer of the +order of the Saviour, and on the left that of the grand cross of +Charles III., which proved that the person represented by the picture +had served in the wars of Greece and Spain, or, what was just the same +thing as regarded decorations, had fulfilled some diplomatic mission in +the two countries. + +Monte Cristo was engaged in examining this portrait with no less care +than he had bestowed upon the other, when another door opened, and he +found himself opposite to the Count of Morcerf in person. + +He was a man of forty to forty-five years, but he seemed at least +fifty, and his black moustache and eyebrows contrasted strangely with +his almost white hair, which was cut short, in the military fashion. He +was dressed in plain clothes, and wore at his button-hole the ribbons +of the different orders to which he belonged. + +He entered with a tolerably dignified step, and some little haste. +Monte Cristo saw him advance towards him without making a single step. +It seemed as if his feet were rooted to the ground, and his eyes on the +Count of Morcerf. + +“Father,” said the young man, “I have the honor of presenting to you +the Count of Monte Cristo, the generous friend whom I had the good +fortune to meet in the critical situation of which I have told you.” + +“You are most welcome, monsieur,” said the Count of Morcerf, saluting +Monte Cristo with a smile, “and monsieur has rendered our house, in +preserving its only heir, a service which insures him our eternal +gratitude.” + +As he said these words, the count of Morcerf pointed to a chair, while +he seated himself in another opposite the window. + +Monte Cristo, in taking the seat Morcerf offered him, placed himself in +such a manner as to remain concealed in the shadow of the large velvet +curtains, and read on the careworn and livid features of the count a +whole history of secret griefs written in each wrinkle time had planted +there. + +“The countess,” said Morcerf, “was at her toilet when she was informed +of the visit she was about to receive. She will, however, be in the +salon in ten minutes.” + +“It is a great honor to me,” returned Monte Cristo, “to be thus, on the +first day of my arrival in Paris, brought in contact with a man whose +merit equals his reputation, and to whom fortune has for once been +equitable, but has she not still on the plains of Mitidja, or in the +mountains of Atlas, a marshal’s staff to offer you?” + +“Oh,” replied Morcerf, reddening slightly, “I have left the service, +monsieur. Made a peer at the Restoration, I served through the first +campaign under the orders of Marshal Bourmont. I could, therefore, +expect a higher rank, and who knows what might have happened had the +elder branch remained on the throne? But the Revolution of July was, it +seems, sufficiently glorious to allow itself to be ungrateful, and it +was so for all services that did not date from the imperial period. I +tendered my resignation, for when you have gained your epaulets on the +battle-field, you do not know how to manœuvre on the slippery grounds +of the salons. I have hung up my sword, and cast myself into politics. +I have devoted myself to industry; I study the useful arts. During the +twenty years I served, I often wished to do so, but I had not the +time.” + +“These are the ideas that render your nation superior to any other,” +returned Monte Cristo. “A gentleman of high birth, possessor of an +ample fortune, you have consented to gain your promotion as an obscure +soldier, step by step—this is uncommon; then become general, peer of +France, commander of the Legion of Honor, you consent to again commence +a second apprenticeship, without any other hope or any other desire +than that of one day becoming useful to your fellow-creatures; this, +indeed, is praiseworthy,—nay, more, it is sublime.” + +20265m + + + +Albert looked on and listened with astonishment; he was not used to see +Monte Cristo give vent to such bursts of enthusiasm. + +“Alas,” continued the stranger, doubtless to dispel the slight cloud +that covered Morcerf’s brow, “we do not act thus in Italy; we grow +according to our race and our species, and we pursue the same lines, +and often the same uselessness, all our lives.” + +“But, monsieur,” said the Count of Morcerf, “for a man of your merit, +Italy is not a country, and France opens her arms to receive you; +respond to her call. France will not, perhaps, be always ungrateful. +She treats her children ill, but she always welcomes strangers.” + +“Ah, father,” said Albert with a smile, “it is evident you do not know +the Count of Monte Cristo; he despises all honors, and contents himself +with those written on his passport.” + +“That is the most just remark,” replied the stranger, “I ever heard +made concerning myself.” + +“You have been free to choose your career,” observed the Count of +Morcerf, with a sigh; “and you have chosen the path strewed with +flowers.” + +“Precisely, monsieur,” replied Monte Cristo with one of those smiles +that a painter could never represent or a physiologist analyze. + +“If I did not fear to fatigue you,” said the general, evidently charmed +with the count’s manners, “I would have taken you to the Chamber; there +is a debate very curious to those who are strangers to our modern +senators.” + +“I shall be most grateful, monsieur, if you will, at some future time, +renew your offer, but I have been flattered with the hope of being +introduced to the countess, and I will therefore wait.” + +“Ah, here is my mother,” cried the viscount. + +Monte Cristo, turned round hastily, and saw Madame de Morcerf at the +entrance of the salon, at the door opposite to that by which her +husband had entered, pale and motionless; when Monte Cristo turned +round, she let fall her arm, which for some unknown reason had been +resting on the gilded door-post. She had been there some moments, and +had heard the last words of the visitor. The latter rose and bowed to +the countess, who inclined herself without speaking. + +“Ah! good heavens, madame,” said the count, “are you ill, or is it the +heat of the room that affects you?” + +“Are you ill, mother?” cried the viscount, springing towards her. + +She thanked them both with a smile. + +“No,” returned she, “but I feel some emotion on seeing, for the first +time, the man without whose intervention we should have been in tears +and desolation. Monsieur,” continued the countess, advancing with the +majesty of a queen, “I owe to you the life of my son, and for this I +bless you. Now, I thank you for the pleasure you give me in thus +affording me the opportunity of thanking you as I have blessed you, +from the bottom of my heart.” + +The count bowed again, but lower than before; he was even paler than +Mercédès. + +“Madame,” said he, “the count and yourself recompense too generously a +simple action. To save a man, to spare a father’s feelings, or a +mother’s sensibility, is not to do a good action, but a simple deed of +humanity.” + +At these words, uttered with the most exquisite sweetness and +politeness, Madame de Morcerf replied: + +“It is very fortunate for my son, monsieur, that he found such a +friend, and I thank God that things are thus.” + +And Mercédès raised her fine eyes to heaven with so fervent an +expression of gratitude, that the count fancied he saw tears in them. +M. de Morcerf approached her. + +“Madame,” said he. “I have already made my excuses to the count for +quitting him, and I pray you to do so also. The sitting commences at +two; it is now three, and I am to speak.” + +“Go, then, and monsieur and I will strive our best to forget your +absence,” replied the countess, with the same tone of deep feeling. +“Monsieur,” continued she, turning to Monte Cristo, “will you do us the +honor of passing the rest of the day with us?” + +“Believe me, madame, I feel most grateful for your kindness, but I got +out of my travelling carriage at your door this morning, and I am +ignorant how I am installed in Paris, which I scarcely know; this is +but a trifling inquietude, I know, but one that may be appreciated.” + +“We shall have the pleasure another time,” said the countess; “you +promise that?” + +Monte Cristo inclined himself without answering, but the gesture might +pass for assent. + +“I will not detain you, monsieur,” continued the countess; “I would not +have our gratitude become indiscreet or importunate.” + +“My dear Count,” said Albert, “I will endeavor to return your +politeness at Rome, and place my coupé at your disposal until your own +be ready.” + +“A thousand thanks for your kindness, viscount,” returned the Count of +Monte Cristo “but I suppose that M. Bertuccio has suitably employed the +four hours and a half I have given him, and that I shall find a +carriage of some sort ready at the door.” + +Albert was used to the count’s manner of proceeding; he knew that, like +Nero, he was in search of the impossible, and nothing astonished him, +but wishing to judge with his own eyes how far the count’s orders had +been executed, he accompanied him to the door of the house. Monte +Cristo was not deceived. As soon as he appeared in the Count of +Morcerf’s antechamber, a footman, the same who at Rome had brought the +count’s card to the two young men, and announced his visit, sprang into +the vestibule, and when he arrived at the door the illustrious +traveller found his carriage awaiting him. It was a _coupé_ of Koller’s +building, and with horses and harness for which Drake had, to the +knowledge of all the lions of Paris, refused on the previous day seven +hundred guineas. + +“Monsieur,” said the count to Albert, “I do not ask you to accompany me +to my house, as I can only show you a habitation fitted up in a hurry, +and I have, as you know, a reputation to keep up as regards not being +taken by surprise. Give me, therefore, one more day before I invite +you; I shall then be certain not to fail in my hospitality.” + +“If you ask me for a day, count, I know what to anticipate; it will not +be a house I shall see, but a palace. You have decidedly some genius at +your control.” + +“_Ma foi_, spread that idea,” replied the Count of Monte Cristo, +putting his foot on the velvet-lined steps of his splendid carriage, +“and that will be worth something to me among the ladies.” + +As he spoke, he sprang into the vehicle, the door was closed, but not +so rapidly that Monte Cristo failed to perceive the almost +imperceptible movement which stirred the curtains of the apartment in +which he had left Madame de Morcerf. + +When Albert returned to his mother, he found her in the boudoir +reclining in a large velvet armchair, the whole room so obscure that +only the shining spangle, fastened here and there to the drapery, and +the angles of the gilded frames of the pictures, showed with some +degree of brightness in the gloom. Albert could not see the face of the +countess, as it was covered with a thin veil she had put on her head, +and which fell over her features in misty folds, but it seemed to him +as though her voice had altered. He could distinguish amid the perfumes +of the roses and heliotropes in the flower-stands, the sharp and +fragrant odor of volatile salts, and he noticed in one of the chased +cups on the mantle-piece the countess’s smelling-bottle, taken from its +shagreen case, and exclaimed in a tone of uneasiness, as he entered: + +“My dear mother, have you been ill during my absence?” + +“No, no, Albert, but you know these roses, tuberoses, and +orange-flowers throw out at first, before one is used to them, such +violent perfumes.” + +“Then, my dear mother,” said Albert, putting his hand to the bell, +“they must be taken into the antechamber. You are really ill, and just +now were so pale as you came into the room——” + +“Was I pale, Albert?” + +“Yes; a pallor that suits you admirably, mother, but which did not the +less alarm my father and myself.” + +“Did your father speak of it?” inquired Mercédès eagerly. + +“No, madame; but do you not remember that he spoke of the fact to you?” + +20269m + + + +“Yes, I do remember,” replied the countess. + +A servant entered, summoned by Albert’s ring of the bell. + +“Take these flowers into the anteroom or dressing-room,” said the +viscount; “they make the countess ill.” + +The footman obeyed his orders. A long pause ensued, which lasted until +all the flowers were removed. + +“What is this name of Monte Cristo?” inquired the countess, when the +servant had taken away the last vase of flowers, “is it a family name, +or the name of the estate, or a simple title?” + +“I believe, mother, it is merely a title. The count purchased an island +in the Tuscan archipelago, and, as he told you today, has founded a +commandery. You know the same thing was done for Saint Stephen of +Florence, Saint George Constantinian of Parma, and even for the Order +of Malta. Except this, he has no pretension to nobility, and calls +himself a chance count, although the general opinion at Rome is that +the count is a man of very high distinction.” + +“His manners are admirable,” said the countess, “at least, as far as I +could judge in the few minutes he remained here.” + +“They are perfect mother, so perfect, that they surpass by far all I +have known in the leading aristocracy of the three proudest nobilities +of Europe—the English, the Spanish, and the German.” + +The countess paused a moment; then, after a slight hesitation, she +resumed. + +“You have seen, my dear Albert—I ask the question as a mother—you have +seen M. de Monte Cristo in his house, you are quicksighted, have much +knowledge of the world, more tact than is usual at your age, do you +think the count is really what he appears to be?” + +“What does he appear to be?” + +“Why, you have just said,—a man of high distinction.” + +“I told you, my dear mother, he was esteemed such.” + +“But what is your own opinion, Albert?” + +“I must tell you that I have not come to any decided opinion respecting +him, but I think him a Maltese.” + +“I do not ask you of his origin but what he is.” + +“Ah! what he is; that is quite another thing. I have seen so many +remarkable things in him, that if you would have me really say what I +think, I shall reply that I really do look upon him as one of Byron’s +heroes, whom misery has marked with a fatal brand; some Manfred, some +Lara, some Werner, one of those wrecks, as it were, of some ancient +family, who, disinherited of their patrimony, have achieved one by the +force of their adventurous genius, which has placed them above the laws +of society.” + +“You say——” + +“I say that Monte Cristo is an island in the midst of the +Mediterranean, without inhabitants or garrison, the resort of smugglers +of all nations, and pirates of every flag. Who knows whether or not +these industrious worthies do not pay to their feudal lord some dues +for his protection?” + +“That is possible,” said the countess, reflecting. + +“Never mind,” continued the young man, “smuggler or not, you must +agree, mother dear, as you have seen him, that the Count of Monte +Cristo is a remarkable man, who will have the greatest success in the +salons of Paris. Why, this very morning, in my rooms, he made his +_entrée_ amongst us by striking every man of us with amazement, not +even excepting Château-Renaud.” + +“And what do you suppose is the count’s age?” inquired Mercédès, +evidently attaching great importance to this question. + +“Thirty-five or thirty-six, mother.” + +“So young,—it is impossible,” said Mercédès, replying at the same time +to what Albert said as well as to her own private reflection. + +“It is the truth, however. Three or four times he has said to me, and +certainly without the slightest premeditation, ‘at such a period I was +five years old, at another ten years old, at another twelve,’ and I, +induced by curiosity, which kept me alive to these details, have +compared the dates, and never found him inaccurate. The age of this +singular man, who is of no age, is then, I am certain, thirty-five. +Besides, mother, remark how vivid his eye, how raven-black his hair, +and his brow, though so pale, is free from wrinkles,—he is not only +vigorous, but also young.” + +The countess bent her head, as if beneath a heavy wave of bitter +thoughts. + +“And has this man displayed a friendship for you, Albert?” she asked +with a nervous shudder. + +“I am inclined to think so.” + +“And—do—you—like—him?” + +“Why, he pleases me in spite of Franz d’Épinay, who tries to convince +me that he is a being returned from the other world.” + +The countess shuddered. + +“Albert,” she said, in a voice which was altered by emotion, “I have +always put you on your guard against new acquaintances. Now you are a +man, and are able to give me advice; yet I repeat to you, Albert, be +prudent.” + +“Why, my dear mother, it is necessary, in order to make your advice +turn to account, that I should know beforehand what I have to distrust. +The count never plays, he only drinks pure water tinged with a little +sherry, and is so rich that he cannot, without intending to laugh at +me, try to borrow money. What, then, have I to fear from him?” + +“You are right,” said the countess, “and my fears are weakness, +especially when directed against a man who has saved your life. How did +your father receive him, Albert? It is necessary that we should be more +than complaisant to the count. M. de Morcerf is sometimes occupied, his +business makes him reflective, and he might, without intending it——” + +“Nothing could be in better taste than my father’s demeanor, madame,” +said Albert; “nay, more, he seemed greatly flattered at two or three +compliments which the count very skilfully and agreeably paid him with +as much ease as if he had known him these thirty years. Each of these +little tickling arrows must have pleased my father,” added Albert with +a laugh. “And thus they parted the best possible friends, and M. de +Morcerf even wished to take him to the Chamber to hear the speakers.” + +The countess made no reply. She fell into so deep a reverie that her +eyes gradually closed. The young man, standing up before her, gazed +upon her with that filial affection which is so tender and endearing +with children whose mothers are still young and handsome. Then, after +seeing her eyes closed, and hearing her breathe gently, he believed she +had dropped asleep, and left the apartment on tiptoe, closing the door +after him with the utmost precaution. + +“This devil of a fellow,” he muttered, shaking his head; “I said at the +time he would create a sensation here, and I measure his effect by an +infallible thermometer. My mother has noticed him, and he must +therefore, perforce, be remarkable.” + +He went down to the stables, not without some slight annoyance, when he +remembered that the Count of Monte Cristo had laid his hands on a +“turnout” which sent his bays down to second place in the opinion of +connoisseurs. + +“Most decidedly,” said he, “men are not equal, and I must beg my father +to develop this theorem in the Chamber of Peers.” + + + + Chapter 42. Monsieur Bertuccio + +Meanwhile the count had arrived at his house; it had taken him six +minutes to perform the distance, but these six minutes were sufficient +to induce twenty young men who knew the price of the equipage they had +been unable to purchase themselves, to put their horses in a gallop in +order to see the rich foreigner who could afford to give 20,000 francs +apiece for his horses. + +The house Ali had chosen, and which was to serve as a town residence to +Monte Cristo, was situated on the right hand as you ascend the +Champs-Élysées. A thick clump of trees and shrubs rose in the centre, +and masked a portion of the front; around this shrubbery two alleys, +like two arms, extended right and left, and formed a carriage-drive +from the iron gates to a double portico, on every step of which stood a +porcelain vase, filled with flowers. This house, isolated from the +rest, had, besides the main entrance, another in the Rue de Ponthieu. +Even before the coachman had hailed the _concierge_, the massy gates +rolled on their hinges—they had seen the Count coming, and at Paris, as +everywhere else, he was served with the rapidity of lightning. The +coachman entered and traversed the half-circle without slackening his +speed, and the gates were closed ere the wheels had ceased to sound on +the gravel. The carriage stopped at the left side of the portico, two +men presented themselves at the carriage-window; the one was Ali, who, +smiling with an expression of the most sincere joy, seemed amply repaid +by a mere look from Monte Cristo. The other bowed respectfully, and +offered his arm to assist the count in descending. + +“Thanks, M. Bertuccio,” said the count, springing lightly up the three +steps of the portico; “and the notary?” + +“He is in the small salon, excellency,” returned Bertuccio. + +“And the cards I ordered to be engraved as soon as you knew the number +of the house?” + +“Your excellency, it is done already. I have been myself to the best +engraver of the Palais Royal, who did the plate in my presence. The +first card struck off was taken, according to your orders, to the Baron +Danglars, Rue de la Chaussée d’Antin, No. 7; the others are on the +mantle-piece of your excellency’s bedroom.” + +“Good; what o’clock is it?” + +“Four o’clock.” + +Monte Cristo gave his hat, cane, and gloves to the same French footman +who had called his carriage at the Count of Morcerf’s, and then he +passed into the small salon, preceded by Bertuccio, who showed him the +way. + +“These are but indifferent marbles in this antechamber,” said Monte +Cristo. “I trust all this will soon be taken away.” + +Bertuccio bowed. As the steward had said, the notary awaited him in the +small salon. He was a simple-looking lawyer’s clerk, elevated to the +extraordinary dignity of a provincial scrivener. + +“You are the notary empowered to sell the country house that I wish to +purchase, monsieur?” asked Monte Cristo. + +“Yes, count,” returned the notary. + +“Is the deed of sale ready?” + +“Yes, count.” + +“Have you brought it?” + +“Here it is.” + +“Very well; and where is this house that I purchase?” asked the count +carelessly, addressing himself half to Bertuccio, half to the notary. +The steward made a gesture that signified, “I do not know.” The notary +looked at the count with astonishment. + +“What!” said he, “does not the count know where the house he purchases +is situated?” + +“No,” returned the count. + +“The count does not know?” + +“How should I know? I have arrived from Cadiz this morning. I have +never before been at Paris, and it is the first time I have ever even +set my foot in France.” + +“Ah, that is different; the house you purchase is at Auteuil.” + +At these words Bertuccio turned pale. + +“And where is Auteuil?” asked the count. + +“Close by here, monsieur,” replied the notary—“a little beyond Passy; a +charming situation, in the heart of the Bois de Boulogne.” + +“So near as that?” said the Count; “but that is not in the country. +What made you choose a house at the gates of Paris, M. Bertuccio?” + +“I,” cried the steward with a strange expression. “His excellency did +not charge me to purchase this house. If his excellency will +recollect—if he will think——” + +“Ah, true,” observed Monte Cristo; “I recollect now. I read the +advertisement in one of the papers, and was tempted by the false title, +‘a country house.’” + +“It is not yet too late,” cried Bertuccio, eagerly; “and if your +excellency will intrust me with the commission, I will find you a +better at Enghien, at Fontenay-aux-Roses, or at Bellevue.” + +“Oh, no,” returned Monte Cristo negligently; “since I have this, I will +keep it.” + +“And you are quite right,” said the notary, who feared to lose his fee. +“It is a charming place, well supplied with spring-water and fine +trees; a comfortable habitation, although abandoned for a long time, +without reckoning the furniture, which, although old, is yet valuable, +now that old things are so much sought after. I suppose the count has +the tastes of the day?” + +“To be sure,” returned Monte Cristo; “it is very convenient, then?” + +“It is more—it is magnificent.” + +“_Peste!_ let us not lose such an opportunity,” returned Monte Cristo. +“The deed, if you please, Mr. Notary.” + +And he signed it rapidly, after having first run his eye over that part +of the deed in which were specified the situation of the house and the +names of the proprietors. + +“Bertuccio,” said he, “give fifty-five thousand francs to monsieur.” + +The steward left the room with a faltering step, and returned with a +bundle of bank-notes, which the notary counted like a man who never +gives a receipt for money until after he is sure it is all there. + +“And now,” demanded the count, “are all the forms complied with?” + +“All, sir.” + +“Have you the keys?” + +“They are in the hands of the concierge, who takes care of the house, +but here is the order I have given him to install the count in his new +possessions.” + +“Very well;” and Monte Cristo made a sign with his hand to the notary, +which said, “I have no further need of you; you may go.” + +“But,” observed the honest notary, “the count is, I think, mistaken; it +is only fifty thousand francs, everything included.” + +“And your fee?” + +“Is included in this sum.” + +“But have you not come from Auteuil here?” + +“Yes, certainly.” + +“Well, then, it is but fair that you should be paid for your loss of +time and trouble,” said the count; and he made a gesture of polite +dismissal. + +The notary left the room backwards, and bowing down to the ground; it +was the first time he had ever met a similar client. + +“See this gentleman out,” said the count to Bertuccio. And the steward +followed the notary out of the room. + +Scarcely was the count alone, when he drew from his pocket a book +closed with a lock, and opened it with a key which he wore round his +neck, and which never left him. After having sought for a few minutes, +he stopped at a leaf which had several notes, and compared them with +the deed of sale, which lay on the table, and recalling his +_souvenirs_— + +“‘Auteuil, Rue de la Fontaine, No. 28;’ it is indeed the same,” said +he; “and now, am I to rely upon an avowal extorted by religious or +physical terror? However, in an hour I shall know all. Bertuccio!” +cried he, striking a light hammer with a pliant handle on a small gong. +“Bertuccio!” + +The steward appeared at the door. + +“Monsieur Bertuccio,” said the count, “did you never tell me that you +had travelled in France?” + +“In some parts of France—yes, excellency.” + +“You know the environs of Paris, then?” + +“No, excellency, no,” returned the steward, with a sort of nervous +trembling, which Monte Cristo, a connoisseur in all emotions, rightly +attributed to great disquietude. + +“It is unfortunate,” returned he, “that you have never visited the +environs, for I wish to see my new property this evening, and had you +gone with me, you could have given me some useful information.” + +“To Auteuil!” cried Bertuccio, whose copper complexion became livid—“I +go to Auteuil?” + +“Well, what is there surprising in that? When I live at Auteuil, you +must come there, as you belong to my service.” + +Bertuccio hung down his head before the imperious look of his master, +and remained motionless, without making any answer. + +“Why, what has happened to you?—are you going to make me ring a second +time for the carriage?” asked Monte Cristo, in the same tone that Louis +XIV. pronounced the famous, “I have been almost obliged to wait.” +Bertuccio made but one bound to the antechamber, and cried in a hoarse +voice: + +“His excellency’s horses!” + +Monte Cristo wrote two or three notes, and, as he sealed the last, the +steward appeared. + +“Your excellency’s carriage is at the door,” said he. + +“Well, take your hat and gloves,” returned Monte Cristo. + +“Am I to accompany you, your excellency?” cried Bertuccio. + +“Certainly, you must give the orders, for I intend residing at the +house.” + +20277m + + + +It was unexampled for a servant of the count’s to dare to dispute an +order of his, so the steward, without saying a word, followed his +master, who got into the carriage, and signed to him to follow, which +he did, taking his place respectfully on the front seat. + + + + Chapter 43. The House at Auteuil + +Monte Cristo noticed, as they descended the staircase, that Bertuccio +signed himself in the Corsican manner; that is, had formed the sign of +the cross in the air with his thumb, and as he seated himself in the +carriage, muttered a short prayer. Anyone but a man of exhaustless +thirst for knowledge would have had pity on seeing the steward’s +extraordinary repugnance for the count’s projected drive without the +walls; but the count was too curious to let Bertuccio off from this +little journey. In twenty minutes they were at Auteuil; the steward’s +emotion had continued to augment as they entered the village. +Bertuccio, crouched in the corner of the carriage, began to examine +with a feverish anxiety every house they passed. + +“Tell them to stop at Rue de la Fontaine, No. 28,” said the count, +fixing his eyes on the steward, to whom he gave this order. + +Bertuccio’s forehead was covered with perspiration; however, he obeyed, +and, leaning out of the window, he cried to the coachman,—“Rue de la +Fontaine, No. 28.” No. 28 was situated at the extremity of the village; +during the drive night had set in, and darkness gave the surroundings +the artificial appearance of a scene on the stage. The carriage +stopped, the footman sprang off the box and opened the door. + +“Well,” said the count, “you do not get out, M. Bertuccio—you are going +to stay in the carriage, then? What are you thinking of this evening?” + +Bertuccio sprang out, and offered his shoulder to the count, who, this +time, leaned upon it as he descended the three steps of the carriage. + +“Knock,” said the count, “and announce me.” + +Bertuccio knocked, the door opened, and the concierge appeared. + +“What is it?” asked he. + +“It is your new master, my good fellow,” said the footman. And he held +out to the concierge the notary’s order. + +“The house is sold, then?” demanded the concierge; “and this gentleman +is coming to live here?” + +“Yes, my friend,” returned the count; “and I will endeavor to give you +no cause to regret your old master.” + +“Oh, monsieur,” said the concierge, “I shall not have much cause to +regret him, for he came here but seldom; it is five years since he was +here last, and he did well to sell the house, for it did not bring him +in anything at all.” + +“What was the name of your old master?” said Monte Cristo. + +“The Marquis of Saint-Méran. Ah, I am sure he has not sold the house +for what he gave for it.” + +“The Marquis of Saint-Méran!” returned the count. “The name is not +unknown to me; the Marquis of Saint-Méran!” and he appeared to +meditate. + +“An old gentleman,” continued the concierge, “a staunch follower of the +Bourbons; he had an only daughter, who married M. de Villefort, who had +been the king’s attorney at Nîmes, and afterwards at Versailles.” + +Monte Cristo glanced at Bertuccio, who became whiter than the wall +against which he leaned to prevent himself from falling. + +“And is not this daughter dead?” demanded Monte Cristo; “I fancy I have +heard so.” + +“Yes, monsieur, one-and-twenty years ago; and since then we have not +seen the poor marquis three times.” + +“Thanks, thanks,” said Monte Cristo, judging from the steward’s utter +prostration that he could not stretch the cord further without danger +of breaking it. “Give me a light.” + +“Shall I accompany you, monsieur?” + +“No, it is unnecessary; Bertuccio will show me a light.” + +And Monte Cristo accompanied these words by the gift of two gold +pieces, which produced a torrent of thanks and blessings from the +concierge. + +“Ah, monsieur,” said he, after having vainly searched on the +mantle-piece and the shelves, “I have not got any candles.” + +“Take one of the carriage-lamps, Bertuccio,” said the count, “and show +me the apartments.” + +The steward obeyed in silence, but it was easy to see, from the manner +in which the hand that held the light trembled, how much it cost him to +obey. They went over a tolerably large ground floor; a first floor +consisted of a salon, a bathroom, and two bedrooms; near one of the +bedrooms they came to a winding staircase that led down to the garden. + +“Ah, here is a private staircase,” said the count; “that is convenient. +Light me, M. Bertuccio, and go first; we will see where it leads to.” + +“Monsieur,” replied Bertuccio, “it leads to the garden.” + +“And, pray, how do you know that?” + +“It ought to do so, at least.” + +“Well, let us be sure of that.” + +Bertuccio sighed, and went on first; the stairs did, indeed, lead to +the garden. At the outer door the steward paused. + +“Go on, Monsieur Bertuccio,” said the count. + +But he who was addressed stood there, stupefied, bewildered, stunned; +his haggard eyes glanced around, as if in search of the traces of some +terrible event, and with his clenched hands he seemed striving to shut +out horrible recollections. + +“Well!” insisted the Count. + +“No, no,” cried Bertuccio, setting down the lantern at the angle of the +interior wall. “No, monsieur, it is impossible; I can go no farther.” + +“What does this mean?” demanded the irresistible voice of Monte Cristo. + +“Why, you must see, your excellency,” cried the steward, “that this is +not natural; that, having a house to purchase, you purchase it exactly +at Auteuil, and that, purchasing it at Auteuil, this house should be +No. 28, Rue de la Fontaine. Oh, why did I not tell you all? I am sure +you would not have forced me to come. I hoped your house would have +been some other one than this; as if there was not another house at +Auteuil than that of the assassination!” + +“What, what!” cried Monte Cristo, stopping suddenly, “what words do you +utter? Devil of a man, Corsican that you are—always mysteries or +superstitions. Come, take the lantern, and let us visit the garden; you +are not afraid of ghosts with me, I hope?” + +Bertuccio raised the lantern, and obeyed. The door, as it opened, +disclosed a gloomy sky, in which the moon strove vainly to struggle +through a sea of clouds that covered her with billows of vapor which +she illumined for an instant, only to sink into obscurity. The steward +wished to turn to the left. + +“No, no, monsieur,” said Monte Cristo. “What is the use of following +the alleys? Here is a beautiful lawn; let us go on straight forwards.” + +Bertuccio wiped the perspiration from his brow, but obeyed; however, he +continued to take the left hand. Monte Cristo, on the contrary, took +the right hand; arrived near a clump of trees, he stopped. The steward +could not restrain himself. + +“Move, monsieur—move away, I entreat you; you are exactly in the spot!” + +“What spot?” + +“Where he fell.” + +20281m + + + +“My dear Monsieur Bertuccio,” said Monte Cristo, laughing, “control +yourself; we are not at Sartène or at Corte. This is not a Corsican +_maquis_ but an English garden; badly kept, I own, but still you must +not calumniate it for that.” + +“Monsieur, I implore you do not stay there!” + +“I think you are going mad, Bertuccio,” said the count coldly. “If that +is the case, I warn you, I shall have you put in a lunatic asylum.” + +“Alas! excellency,” returned Bertuccio, joining his hands, and shaking +his head in a manner that would have excited the count’s laughter, had +not thoughts of a superior interest occupied him, and rendered him +attentive to the least revelation of this timorous conscience. “Alas! +excellency, the evil has arrived!” + +“M. Bertuccio,” said the count, “I am very glad to tell you, that while +you gesticulate, you wring your hands and roll your eyes like a man +possessed by a devil who will not leave him; and I have always +observed, that the devil most obstinate to be expelled is a secret. I +knew you were a Corsican. I knew you were gloomy, and always brooding +over some old history of the vendetta; and I overlooked that in Italy, +because in Italy those things are thought nothing of. But in France +they are considered in very bad taste; there are gendarmes who occupy +themselves with such affairs, judges who condemn, and scaffolds which +avenge.” + +Bertuccio clasped his hands, and as, in all these evolutions, he did +not let fall the lantern, the light showed his pale and altered +countenance. Monte Cristo examined him with the same look that, at +Rome, he had bent upon the execution of Andrea, and then, in a tone +that made a shudder pass through the veins of the poor steward— + +“The Abbé Busoni, then told me an untruth,” said he, “when, after his +journey in France, in 1829, he sent you to me, with a letter of +recommendation, in which he enumerated all your valuable qualities. +Well, I shall write to the abbé; I shall hold him responsible for his +_protégé’s_ misconduct, and I shall soon know all about this +assassination. Only I warn you, that when I reside in a country, I +conform to all its code, and I have no wish to put myself within the +compass of the French laws for your sake.” + +“Oh, do not do that, excellency; I have always served you faithfully,” +cried Bertuccio, in despair. “I have always been an honest man, and, as +far as lay in my power, I have done good.” + +“I do not deny it,” returned the count; “but why are you thus agitated. +It is a bad sign; a quiet conscience does not occasion such paleness in +the cheeks, and such fever in the hands of a man.” + +“But, your excellency,” replied Bertuccio hesitatingly, “did not the +Abbé Busoni, who heard my confession in the prison at Nîmes, tell you +that I had a heavy burden upon my conscience?” + +“Yes; but as he said you would make an excellent steward, I concluded +you had stolen—that was all.” + +“Oh, your excellency!” returned Bertuccio in deep contempt. + +“Or, as you are a Corsican, that you had been unable to resist the +desire of making a ‘stiff,’ as you call it.” + +“Yes, my good master,” cried Bertuccio, casting himself at the count’s +feet, “it was simply vengeance—nothing else.” + +“I understand that, but I do not understand what it is that galvanizes +you in this manner.” + +“But, monsieur, it is very natural,” returned Bertuccio, “since it was +in this house that my vengeance was accomplished.” + +“What! my house?” + +“Oh, your excellency, it was not yours, then.” + +“Whose, then? The Marquis de Saint-Méran, I think, the concierge said. +What had you to revenge on the Marquis de Saint-Méran?” + +“Oh, it was not on him, monsieur; it was on another.” + +“This is strange,” returned Monte Cristo, seeming to yield to his +reflections, “that you should find yourself without any preparation in +a house where the event happened that causes you so much remorse.” + +“Monsieur,” said the steward, “it is fatality, I am sure. First, you +purchase a house at Auteuil—this house is the one where I have +committed an assassination; you descend to the garden by the same +staircase by which he descended; you stop at the spot where he received +the blow; and two paces farther is the grave in which he had just +buried his child. This is not chance, for chance, in this case, is too +much like Providence.” + +“Well, amiable Corsican, let us suppose it is Providence. I always +suppose anything people please, and, besides, you must concede +something to diseased minds. Come, collect yourself, and tell me all.” + +“I have related it but once, and that was to the Abbé Busoni. Such +things,” continued Bertuccio, shaking his head, “are only related under +the seal of confession.” + +“Then,” said the count, “I refer you to your confessor. Turn Chartreux +or Trappist, and relate your secrets, but, as for me, I do not like +anyone who is alarmed by such phantasms, and I do not choose that my +servants should be afraid to walk in the garden of an evening. I +confess I am not very desirous of a visit from the commissary of +police, for, in Italy, justice is only paid when silent—in France she +is paid only when she speaks. _Peste!_ I thought you somewhat Corsican, +a great deal smuggler, and an excellent steward; but I see you have +other strings to your bow. You are no longer in my service, Monsieur +Bertuccio.” + +“Oh, your excellency, your excellency!” cried the steward, struck with +terror at this threat, “if that is the only reason I cannot remain in +your service, I will tell all, for if I quit you, it will only be to go +to the scaffold.” + +“That is different,” replied Monte Cristo; “but if you intend to tell +an untruth, reflect it were better not to speak at all.” + +“No, monsieur, I swear to you, by my hopes of salvation, I will tell +you all, for the Abbé Busoni himself only knew a part of my secret; +but, I pray you, go away from that plane-tree. The moon is just +bursting through the clouds, and there, standing where you do, and +wrapped in that cloak that conceals your figure, you remind me of M. de +Villefort.” + +“What!” cried Monte Cristo, “it was M. de Villefort?” + +“Your excellency knows him?” + +“The former royal attorney at Nîmes?” + +“Yes.” + +“Who married the Marquis of Saint-Méran’s daughter?” + +“Yes.” + +“Who enjoyed the reputation of being the most severe, the most upright, +the most rigid magistrate on the bench?” + +“Well, monsieur,” said Bertuccio, “this man with this spotless +reputation——” + +“Well?” + +“Was a villain.” + +“Bah,” replied Monte Cristo, “impossible!” + +“It is as I tell you.” + +“Ah, really,” said Monte Cristo. “Have you proof of this?” + +“I had it.” + +“And you have lost it; how stupid!” + +“Yes; but by careful search it might be recovered.” + +“Really,” returned the count, “relate it to me, for it begins to +interest me.” + +And the count, humming an air from _Lucia_, went to sit down on a +bench, while Bertuccio followed him, collecting his thoughts. Bertuccio +remained standing before him. + +20285m + + + + + Chapter 44. The Vendetta + +At what point shall I begin my story, your excellency?” asked +Bertuccio. + +“Where you please,” returned Monte Cristo, “since I know nothing at all +of it.” + +“I thought the Abbé Busoni had told your excellency.” + +“Some particulars, doubtless, but that is seven or eight years ago, and +I have forgotten them.” + +“Then I can speak without fear of tiring your excellency.” + +“Go on, M. Bertuccio; you will supply the want of the evening papers.” + +“The story begins in 1815.” + +“Ah,” said Monte Cristo, “1815 is not yesterday.” + +“No, monsieur, and yet I recollect all things as clearly as if they had +happened but then. I had a brother, an elder brother, who was in the +service of the emperor; he had become lieutenant in a regiment composed +entirely of Corsicans. This brother was my only friend; we became +orphans—I at five, he at eighteen. He brought me up as if I had been +his son, and in 1814 he married. When the emperor returned from the +Island of Elba, my brother instantly joined the army, was slightly +wounded at Waterloo, and retired with the army beyond the Loire.” + +“But that is the history of the Hundred Days, M. Bertuccio,” said the +count; “unless I am mistaken, it has been already written.” + +“Excuse me, excellency, but these details are necessary, and you +promised to be patient.” + +“Go on; I will keep my word.” + +“One day we received a letter. I should tell you that we lived in the +little village of Rogliano, at the extremity of Cap Corse. This letter +was from my brother. He told us that the army was disbanded, and that +he should return by Châteauroux, Clermont-Ferrand, Le Puy, and Nîmes; +and, if I had any money, he prayed me to leave it for him at Nîmes, +with an innkeeper with whom I had dealings.” + +“In the smuggling line?” said Monte Cristo. + +“Eh, your excellency? Everyone must live.” + +“Certainly; go on.” + +“I loved my brother tenderly, as I told your excellency, and I resolved +not to send the money, but to take it to him myself. I possessed a +thousand francs. I left five hundred with Assunta, my sister-in-law, +and with the other five hundred I set off for Nîmes. It was easy to do +so, and as I had my boat and a lading to take in at sea, everything +favored my project. But, after we had taken in our cargo, the wind +became contrary, so that we were four or five days without being able +to enter the Rhône. At last, however, we succeeded, and worked up to +Arles. I left the boat between Bellegarde and Beaucaire, and took the +road to Nîmes.” + +“We are getting to the story now?” + +“Yes, your excellency; excuse me, but, as you will see, I only tell you +what is absolutely necessary. Just at this time the famous massacres +took place in the south of France. Three brigands, called Trestaillon, +Truphemy, and Graffan, publicly assassinated everybody whom they +suspected of Bonapartism. You have doubtless heard of these massacres, +your excellency?” + +“Vaguely; I was far from France at that period. Go on.” + +“As I entered Nîmes, I literally waded in blood; at every step you +encountered dead bodies and bands of murderers, who killed, plundered, +and burned. At the sight of this slaughter and devastation I became +terrified, not for myself—for I, a simple Corsican fisherman, had +nothing to fear; on the contrary, that time was most favorable for us +smugglers—but for my brother, a soldier of the empire, returning from +the army of the Loire, with his uniform and his epaulets, there was +everything to apprehend. I hastened to the innkeeper. My misgivings had +been but too true. My brother had arrived the previous evening at +Nîmes, and, at the very door of the house where he was about to demand +hospitality, he had been assassinated. I did all in my power to +discover the murderers, but no one durst tell me their names, so much +were they dreaded. I then thought of that French justice of which I had +heard so much, and which feared nothing, and I went to the king’s +attorney.” + +“And this king’s attorney was named Villefort?” asked Monte Cristo +carelessly. + +“Yes, your excellency; he came from Marseilles, where he had been +deputy procureur. His zeal had procured him advancement, and he was +said to be one of the first who had informed the government of the +departure from the Island of Elba.” + +“Then,” said Monte Cristo “you went to him?” + +“‘Monsieur,’ I said, ‘my brother was assassinated yesterday in the +streets of Nîmes, I know not by whom, but it is your duty to find out. +You are the representative of justice here, and it is for justice to +avenge those she has been unable to protect.’ + +“‘Who was your brother?’ asked he. + +“‘A lieutenant in the Corsican battalion.’ + +“‘A soldier of the usurper, then?’ + +“‘A soldier of the French army.’ + +“‘Well,’ replied he, ‘he has smitten with the sword, and he has +perished by the sword.’ + +“‘You are mistaken, monsieur,’ I replied; ‘he has perished by the +poniard.’ + +“‘What do you want me to do?’ asked the magistrate. + +“‘I have already told you—avenge him.’ + +“‘On whom?’ + +“‘On his murderers.’ + +“‘How should I know who they are?’ + +“‘Order them to be sought for.’ + +“‘Why, your brother has been involved in a quarrel, and killed in a +duel. All these old soldiers commit excesses which were tolerated in +the time of the emperor, but which are not suffered now, for the people +here do not like soldiers of such disorderly conduct.’ + +“‘Monsieur,’ I replied, ‘it is not for myself that I entreat your +interference—I should grieve for him or avenge him, but my poor brother +had a wife, and were anything to happen to me, the poor creature would +perish from want, for my brother’s pay alone kept her. Pray, try and +obtain a small government pension for her.’ + +“‘Every revolution has its catastrophes,’ returned M. de Villefort; +‘your brother has been the victim of this. It is a misfortune, and +government owes nothing to his family. If we are to judge by all the +vengeance that the followers of the usurper exercised on the partisans +of the king, when, in their turn, they were in power, your brother +would be today, in all probability, condemned to death. What has +happened is quite natural, and in conformity with the law of +reprisals.’ + +“‘What,’ cried I, ‘do you, a magistrate, speak thus to me?’ + +“‘All these Corsicans are mad, on my honor,’ replied M. de Villefort; +‘they fancy that their countryman is still emperor. You have mistaken +the time, you should have told me this two months ago, it is too late +now. Go now, at once, or I shall have you put out.’ + +“I looked at him an instant to see if there was anything to hope from +further entreaty. But he was a man of stone. I approached him, and said +in a low voice, ‘Well, since you know the Corsicans so well, you know +that they always keep their word. You think that it was a good deed to +kill my brother, who was a Bonapartist, because you are a royalist. +Well, I, who am a Bonapartist also, declare one thing to you, which is, +that I will kill you. From this moment I declare the vendetta against +you, so protect yourself as well as you can, for the next time we meet +your last hour has come.’ And before he had recovered from his +surprise, I opened the door and left the room.” + +“Well, well,” said Monte Cristo, “such an innocent looking person as +you are to do those things, M. Bertuccio, and to a king’s attorney at +that! But did he know what was meant by the terrible word ‘vendetta’?” + +“He knew so well, that from that moment he shut himself in his house, +and never went out unattended, seeking me high and low. Fortunately, I +was so well concealed that he could not find me. Then he became +alarmed, and dared not stay any longer at Nîmes, so he solicited a +change of residence, and, as he was in reality very influential, he was +nominated to Versailles. But, as you know, a Corsican who has sworn to +avenge himself cares not for distance, so his carriage, fast as it +went, was never above half a day’s journey before me, who followed him +on foot. The most important thing was, not to kill him only—for I had +an opportunity of doing so a hundred times—but to kill him without +being discovered—at least, without being arrested. I no longer belonged +to myself, for I had my sister-in-law to protect and provide for. + +“For three months I watched M. de Villefort, for three months he took +not a step out-of-doors without my following him. At length I +discovered that he went mysteriously to Auteuil. I followed him +thither, and I saw him enter the house where we now are, only, instead +of entering by the great door that looks into the street, he came on +horseback, or in his carriage, left the one or the other at the little +inn, and entered by the gate you see there.” + +Monte Cristo made a sign with his head to show that he could discern in +the darkness the door to which Bertuccio alluded. + +“As I had nothing more to do at Versailles, I went to Auteuil, and +gained all the information I could. If I wished to surprise him, it was +evident this was the spot to lie in wait for him. The house belonged, +as the concierge informed your excellency, to M. de Saint-Méran, +Villefort’s father-in-law. M. de Saint-Méran lived at Marseilles, so +that this country house was useless to him, and it was reported to be +let to a young widow, known only by the name of ‘the Baroness.’ + +“One evening, as I was looking over the wall, I saw a young and +handsome woman who was walking alone in that garden, which was not +overlooked by any windows, and I guessed that she was awaiting M. de +Villefort. When she was sufficiently near for me to distinguish her +features, I saw she was from eighteen to nineteen, tall and very fair. +As she had a loose muslin dress on and as nothing concealed her figure, +I saw she would ere long become a mother. A few moments after, the +little door was opened and a man entered. The young woman hastened to +meet him. They threw themselves into each other’s arms, embraced +tenderly, and returned together to the house. The man was M. de +Villefort; I fully believed that when he went out in the night he would +be forced to traverse the whole of the garden alone.” + +20291m + + + +“And,” asked the count, “did you ever know the name of this woman?” + +“No, excellency,” returned Bertuccio; “you will see that I had no time +to learn it.” + +“Go on.” + +“That evening,” continued Bertuccio, “I could have killed the +procureur, but as I was not sufficiently acquainted with the +neighborhood, I was fearful of not killing him on the spot, and that if +his cries were overheard I might be taken; so I put it off until the +next occasion, and in order that nothing should escape me, I took a +chamber looking into the street bordered by the wall of the garden. +Three days after, about seven o’clock in the evening, I saw a servant +on horseback leave the house at full gallop, and take the road to +Sèvres. I concluded that he was going to Versailles, and I was not +deceived. Three hours later, the man returned covered with dust, his +errand was performed, and two minutes after, another man on foot, +muffled in a mantle, opened the little door of the garden, which he +closed after him. I descended rapidly; although I had not seen +Villefort’s face, I recognized him by the beating of my heart. I +crossed the street, and stopped at a post placed at the angle of the +wall, and by means of which I had once before looked into the garden. + +“This time I did not content myself with looking, but I took my knife +out of my pocket, felt that the point was sharp, and sprang over the +wall. My first care was to run to the door; he had left the key in it, +taking the simple precaution of turning it twice in the lock. Nothing, +then, preventing my escape by this means, I examined the grounds. The +garden was long and narrow; a stretch of smooth turf extended down the +middle, and at the corners were clumps of trees with thick and massy +foliage, that made a background for the shrubs and flowers. In order to +go from the door to the house, or from the house to the door, M. de +Villefort would be obliged to pass by one of these clumps of trees. + +20293m + + + +“It was the end of September; the wind blew violently. The faint +glimpses of the pale moon, hidden momentarily by masses of dark clouds +that were sweeping across the sky, whitened the gravel walks that led +to the house, but were unable to pierce the obscurity of the thick +shrubberies, in which a man could conceal himself without any fear of +discovery. I hid myself in the one nearest to the path Villefort must +take, and scarcely was I there when, amidst the gusts of wind, I +fancied I heard groans; but you know, or rather you do not know, your +excellency, that he who is about to commit an assassination fancies +that he hears low cries perpetually ringing in his ears. Two hours +passed thus, during which I imagined I heard moans repeatedly. Midnight +struck. As the last stroke died away, I saw a faint light shine through +the windows of the private staircase by which we have just descended. +The door opened, and the man in the mantle reappeared. + +“The terrible moment had come, but I had so long been prepared for it +that my heart did not fail in the least. I drew my knife from my pocket +again, opened it, and made ready to strike. The man in the mantle +advanced towards me, but as he drew near I saw that he had a weapon in +his hand. I was afraid, not of a struggle, but of a failure. When he +was only a few paces from me, I saw that what I had taken for a weapon +was only a spade. I was still unable to divine for what reason M. de +Villefort had this spade in his hands, when he stopped close to the +thicket where I was, glanced round, and began to dig a hole in the +earth. I then perceived that he was hiding something under his mantle, +which he laid on the grass in order to dig more freely. Then, I +confess, curiosity mingled with hatred; I wished to see what Villefort +was going to do there, and I remained motionless, holding my breath. +Then an idea crossed my mind, which was confirmed when I saw the +procureur lift from under his mantle a box, two feet long, and six or +eight inches deep. I let him place the box in the hole he had made, +then, while he stamped with his feet to remove all traces of his +occupation, I rushed on him and plunged my knife into his breast, +exclaiming: + +“‘I am Giovanni Bertuccio; thy death for my brother’s; thy treasure for +his widow; thou seest that my vengeance is more complete than I had +hoped.’ + +“I know not if he heard these words; I think he did not, for he fell +without a cry. I felt his blood gush over my face, but I was +intoxicated, I was delirious, and the blood refreshed, instead of +burning me. In a second I had disinterred the box; then, that it might +not be known I had done so, I filled up the hole, threw the spade over +the wall, and rushed through the door, which I double-locked, carrying +off the key.” + +“Ah,” said Monte Cristo “it seems to me this was nothing but murder and +robbery.” + +“No, your excellency,” returned Bertuccio; “it was a vendetta followed +by restitution.” + +“And was the sum a large one?” + +“It was not money.” + +“Ah, I recollect,” replied the count; “did you not say something of an +infant?” + +“Yes, excellency; I hastened to the river, sat down on the bank, and +with my knife forced open the lock of the box. In a fine linen cloth +was wrapped a new-born child. Its purple visage, and its violet-colored +hands showed that it had perished from suffocation, but as it was not +yet cold, I hesitated to throw it into the water that ran at my feet. +After a moment I fancied that I felt a slight pulsation of the heart, +and as I had been assistant at the hospital at Bastia, I did what a +doctor would have done—I inflated the lungs by blowing air into them, +and at the expiration of a quarter of an hour, it began to breathe, and +cried feebly. In my turn I uttered a cry, but a cry of joy. + +“‘God has not cursed me then,’ I cried, ‘since he permits me to save +the life of a human creature, in exchange for the life I have taken +away.’” + +20295m + + + +“And what did you do with the child?” asked Monte Cristo. “It was an +embarrassing load for a man seeking to escape.” + +“I had not for a moment the idea of keeping it, but I knew that at +Paris there was an asylum where they receive such creatures. As I +passed the city gates I declared that I had found the child on the +road, and I inquired where the asylum was; the box confirmed my +statement, the linen proved that the infant belonged to wealthy +parents, the blood with which I was covered might have proceeded from +the child as well as from anyone else. No objection was raised, but +they pointed out the asylum, which was situated at the upper end of the +Rue d’Enfer, and after having taken the precaution of cutting the linen +in two pieces, so that one of the two letters which marked it was on +the piece wrapped around the child, while the other remained in my +possession, I rang the bell, and fled with all speed. A fortnight after +I was at Rogliano, and I said to Assunta: + +“‘Console thyself, sister; Israel is dead, but he is avenged.’ + +“She demanded what I meant, and when I had told her all,—‘Giovanni,’ +said she, ‘you should have brought this child with you; we would have +replaced the parents it has lost, have called it Benedetto, and then, +in consequence of this good action, God would have blessed us.’ In +reply I gave her the half of the linen I had kept in order to reclaim +him if we became rich.” + +“What letters were marked on the linen?” said Monte Cristo. + +“An H and an N, surmounted by a baron’s coronet.” + +“By heaven, M. Bertuccio, you make use of heraldic terms; where did you +study heraldry?” + +“In your service, excellency, where everything is learned.” + +“Go on, I am curious to know two things.” + +“What are they, your excellency?” + +“What became of this little boy? for I think you told me it was a boy, +M. Bertuccio.” + +“No excellency, I do not recollect telling you that.” + +“I thought you did; I must have been mistaken.” + +“No, you were not, for it was in reality a little boy. But your +excellency wished to know two things; what was the second?” + +“The second was the crime of which you were accused when you asked for +a confessor, and the Abbé Busoni came to visit you at your request in +the prison at Nîmes.” + +“The story will be very long, excellency.” + +“What matter? you know I take but little sleep, and I do not suppose +you are very much inclined for it either.” Bertuccio bowed, and resumed +his story. + +“Partly to drown the recollections of the past that haunted me, partly +to supply the wants of the poor widow, I eagerly returned to my trade +of smuggler, which had become more easy since that relaxation of the +laws which always follows a revolution. The southern districts were +ill-watched in particular, in consequence of the disturbances that were +perpetually breaking out in Avignon, Nîmes, or Uzès. We profited by +this respite on the part of the government to make friends everywhere. +Since my brother’s assassination in the streets of Nîmes, I had never +entered the town; the result was that the innkeeper with whom we were +connected, seeing that we would no longer come to him, was forced to +come to us, and had established a branch to his inn, on the road from +Bellegarde to Beaucaire, at the sign of the Pont du Gard. We had thus, +at Aigues-Mortes, Martigues, or Bouc, a dozen places where we left our +goods, and where, in case of necessity, we concealed ourselves from the +gendarmes and custom-house officers. Smuggling is a profitable trade, +when a certain degree of vigor and intelligence is employed; as for +myself, brought up in the mountains, I had a double motive for fearing +the gendarmes and custom-house officers, as my appearance before the +judges would cause an inquiry, and an inquiry always looks back into +the past. And in my past life they might find something far more grave +than the selling of smuggled cigars, or barrels of brandy without a +permit. So, preferring death to capture, I accomplished the most +astonishing deeds, and which, more than once, showed me that the too +great care we take of our bodies is the only obstacle to the success of +those projects which require rapid decision, and vigorous and +determined execution. In reality, when you have once devoted your life +to your enterprises, you are no longer the equal of other men, or, +rather, other men are no longer your equals, and whosoever has taken +this resolution, feels his strength and resources doubled.” + +“Philosophy, M. Bertuccio,” interrupted the count; “you have done a +little of everything in your life.” + +“Oh, excellency!” + +“No, no; but philosophy at half-past ten at night is somewhat late; yet +I have no other observation to make, for what you say is correct, which +is more than can be said for all philosophy.” + +“My journeys became more and more extensive and more productive. +Assunta took care of all, and our little fortune increased. One day as +I was setting off on an expedition, ‘Go,’ said she; ‘at your return I +will give you a surprise.’ I questioned her, but in vain; she would +tell me nothing, and I departed. Our expedition lasted nearly six +weeks; we had been to Lucca to take in oil, to Leghorn for English +cottons, and we ran our cargo without opposition, and returned home +full of joy. When I entered the house, the first thing I beheld in the +middle of Assunta’s chamber was a cradle that might be called sumptuous +compared with the rest of the furniture, and in it a baby seven or +eight months old. I uttered a cry of joy; the only moments of sadness I +had known since the assassination of the procureur were caused by the +recollection that I had abandoned this child. For the assassination +itself I had never felt any remorse. Poor Assunta had guessed all. She +had profited by my absence, and furnished with the half of the linen, +and having written down the day and hour at which I had deposited the +child at the asylum, had set off for Paris, and had reclaimed it. No +objection was raised, and the infant was given up to her. Ah, I +confess, your excellency, when I saw this poor creature sleeping +peacefully in its cradle, I felt my eyes filled with tears. ‘Ah, +Assunta,’ cried I, ‘you are an excellent woman, and Heaven will bless +you.’” + +“This,” said Monte Cristo, “is less correct than your philosophy,—it is +only faith.” + +“Alas, your excellency is right,” replied Bertuccio, “and God made this +infant the instrument of our punishment. Never did a perverse nature +declare itself more prematurely, and yet it was not owing to any fault +in his bringing up. He was a most lovely child, with large blue eyes, +of that deep color that harmonizes so well with the blond complexion; +only his hair, which was too light, gave his face a most singular +expression, and added to the vivacity of his look, and the malice of +his smile. + +“Unfortunately, there is a proverb which says that ‘red is either +altogether good or altogether bad.’ The proverb was but too correct as +regarded Benedetto, and even in his infancy he manifested the worst +disposition. It is true that the indulgence of his foster-mother +encouraged him. This child, for whom my poor sister would go to the +town, five or six leagues off, to purchase the earliest fruits and the +most tempting sweetmeats, preferred to Palma grapes or Genoese +preserves, the chestnuts stolen from a neighbor’s orchard, or the dried +apples in his loft, when he could eat as well of the nuts and apples +that grew in my garden. + +“One day, when Benedetto was about five or six, our neighbor Wasilio, +who, according to the custom of the country, never locked up his purse +or his valuables—for, as your excellency knows, there are no thieves in +Corsica—complained that he had lost a louis out of his purse; we +thought he must have made a mistake in counting his money, but he +persisted in the accuracy of his statement. One day, Benedetto, who had +been gone from the house since morning, to our great anxiety, did not +return until late in the evening, dragging a monkey after him, which he +said he had found chained to the foot of a tree. For more than a month +past, the mischievous child, who knew not what to wish for, had taken +it into his head to have a monkey. A boatman, who had passed by +Rogliano, and who had several of these animals, whose tricks had +greatly diverted him, had, doubtless, suggested this idea to him. +‘Monkeys are not found in our woods chained to trees,’ said I; ‘confess +how you obtained this animal.’ Benedetto maintained the truth of what +he had said, and accompanied it with details that did more honor to his +imagination than to his veracity. I became angry; he began to laugh, I +threatened to strike him, and he made two steps backwards. ‘You cannot +beat me,’ said he; ‘you have no right, for you are not my father.’ + +20299m + + + +“We never knew who had revealed this fatal secret, which we had so +carefully concealed from him; however, it was this answer, in which the +child’s whole character revealed itself, that almost terrified me, and +my arm fell without touching him. + +“The boy triumphed, and this victory rendered him so audacious, that +all the money of Assunta, whose affection for him seemed to increase as +he became more unworthy of it, was spent in caprices she knew not how +to contend against, and follies she had not the courage to prevent. +When I was at Rogliano everything went on properly, but no sooner was +my back turned than Benedetto became master, and everything went ill. +When he was only eleven, he chose his companions from among the young +men of eighteen or twenty, the worst characters in Bastia, or, indeed, +in Corsica, and they had already, for some mischievous pranks, been +several times threatened with a prosecution. I became alarmed, as any +prosecution might be attended with serious consequences. I was +compelled, at this period, to leave Corsica on an important expedition; +I reflected for a long time, and with the hope of averting some +impending misfortune, I resolved that Benedetto should accompany me. + +“I hoped that the active and laborious life of a smuggler, with the +severe discipline on board, would have a salutary effect on his +character, which was now well-nigh, if not quite, corrupt. I spoke to +Benedetto alone, and proposed to him to accompany me, endeavoring to +tempt him by all the promises most likely to dazzle the imagination of +a child of twelve. He heard me patiently, and when I had finished, +burst out laughing. + +“‘Are you mad, uncle?’ (he called me by this name when he was in good +humor); ‘do you think I am going to change the life I lead for your +mode of existence—my agreeable indolence for the hard and precarious +toil you impose on yourself, exposed to the bitter frost at night, and +the scorching heat by day, compelled to conceal yourself, and when you +are perceived, receive a volley of bullets, all to earn a paltry sum? +Why, I have as much money as I want; mother Assunta always furnishes me +when I ask for it! You see that I should be a fool to accept your +offer.’ + +“The arguments, and his audacity, perfectly stupefied me. Benedetto +rejoined his associates, and I saw him from a distance point me out to +them as a fool.” + +“Sweet child,” murmured Monte Cristo. + +“Oh, had he been my own son,” replied Bertuccio, “or even my nephew, I +would have brought him back to the right road, for the knowledge that +you are doing your duty gives you strength, but the idea that I was +striking a child whose father I had killed, made it impossible for me +to punish him. I gave my sister, who constantly defended the +unfortunate boy, good advice, and as she confessed that she had several +times missed money to a considerable amount, I showed her a safe place +in which to conceal our little treasure for the future. My mind was +already made up. Benedetto could read, write, and cipher perfectly, for +when the fit seized him, he learned more in a day than others in a +week. My intention was to enter him as a clerk in some ship, and +without letting him know anything of my plan, to convey him some +morning on board; by this means his future treatment would depend upon +his own conduct. I set off for France, after having fixed upon the +plan. Our cargo was to be landed in the Gulf of Lyons, and this was a +difficult thing to do because it was then the year 1829. The most +perfect tranquillity was restored, and the vigilance of the +custom-house officers was redoubled, and their strictness was increased +at this time, in consequence of the fair at Beaucaire. + +20301m + + + +“Our expedition made a favorable beginning. We anchored our +vessel—which had a double hold, where our goods were concealed—amidst a +number of other vessels that bordered the banks of the Rhône from +Beaucaire to Arles. On our arrival we began to discharge our cargo in +the night, and to convey it into the town, by the help of the innkeeper +with whom we were connected. + +“Whether success rendered us imprudent, or whether we were betrayed, I +know not; but one evening, about five o’clock, our little cabin-boy +came breathlessly, to inform us that he had seen a detachment of +custom-house officers advancing in our direction. It was not their +proximity that alarmed us, for detachments were constantly patrolling +along the banks of the Rhône, but the care, according to the boy’s +account, that they took to avoid being seen. In an instant we were on +the alert, but it was too late; our vessel was surrounded, and amongst +the custom-house officers I observed several gendarmes, and, as +terrified at the sight of their uniforms as I was brave at the sight of +any other, I sprang into the hold, opened a port, and dropped into the +river, dived, and only rose at intervals to breathe, until I reached a +ditch that had recently been made from the Rhône to the canal that runs +from Beaucaire to Aigues-Mortes. I was now safe, for I could swim along +the ditch without being seen, and I reached the canal in safety. I had +designedly taken this direction. I have already told your excellency of +an innkeeper from Nîmes who had set up a little tavern on the road from +Bellegarde to Beaucaire.” + +“Yes,” said Monte Cristo “I perfectly recollect him; I think he was +your colleague.” + +“Precisely,” answered Bertuccio; “but he had, seven or eight years +before this period, sold his establishment to a tailor at Marseilles, +who, having almost ruined himself in his old trade, wished to make his +fortune in another. Of course, we made the same arrangements with the +new landlord that we had with the old; and it was of this man that I +intended to ask shelter.” + +“What was his name?” inquired the count, who seemed to become somewhat +interested in Bertuccio’s story. + +“Gaspard Caderousse; he had married a woman from the village of +Carconte, and whom we did not know by any other name than that of her +village. She was suffering from malarial fever, and seemed dying by +inches. As for her husband, he was a strapping fellow of forty, or +five-and-forty, who had more than once, in time of danger, given ample +proof of his presence of mind and courage.” + +“And you say,” interrupted Monte Cristo “that this took place towards +the year——” + +“1829, your excellency.” + +“In what month?” + +“June.” + +“The beginning or the end?” + +“The evening of the 3rd.” + +20303m + + + +“Ah,” said Monte Cristo “the evening of the 3rd of June, 1829. Go on.” + +“It was from Caderousse that I intended demanding shelter, and, as we +never entered by the door that opened onto the road, I resolved not to +break through the rule, so climbing over the garden-hedge, I crept +amongst the olive and wild fig trees, and fearing that Caderousse might +have some guest, I entered a kind of shed in which I had often passed +the night, and which was only separated from the inn by a partition, in +which holes had been made in order to enable us to watch an opportunity +of announcing our presence. + +“My intention was, if Caderousse was alone, to acquaint him with my +presence, finish the meal the custom-house officers had interrupted, +and profit by the threatened storm to return to the Rhône, and +ascertain the state of our vessel and its crew. I stepped into the +shed, and it was fortunate I did so, for at that moment Caderousse +entered with a stranger. + +“I waited patiently, not to overhear what they said, but because I +could do nothing else; besides, the same thing had occurred often +before. The man who was with Caderousse was evidently a stranger to the +South of France; he was one of those merchants who come to sell +jewellery at the Beaucaire fair, and who during the month the fair +lasts, and during which there is so great an influx of merchants and +customers from all parts of Europe, often have dealings to the amount +of 100,000 to 150,000 francs. Caderousse entered hastily. Then, seeing +that the room was, as usual, empty, and only guarded by the dog, he +called to his wife, ‘Hello, Carconte,’ said he, ‘the worthy priest has +not deceived us; the diamond is real.’ + +“An exclamation of joy was heard, and the staircase creaked beneath a +feeble step. ‘What do you say?’ asked his wife, pale as death. + +“‘I say that the diamond is real, and that this gentleman, one of the +first jewellers of Paris, will give us 50,000 francs for it. Only, in +order to satisfy himself that it really belongs to us, he wishes you to +relate to him, as I have done already, the miraculous manner in which +the diamond came into our possession. In the meantime please to sit +down, monsieur, and I will fetch you some refreshment.’ + +“The jeweller examined attentively the interior of the inn and the +apparent poverty of the persons who were about to sell him a diamond +that seemed to have come from the casket of a prince. + +“‘Relate your story, madame,’ said he, wishing, no doubt, to profit by +the absence of the husband, so that the latter could not influence the +wife’s story, to see if the two recitals tallied. + +“‘Oh,’ returned she, ‘it was a gift of heaven. My husband was a great +friend, in 1814 or 1815, of a sailor named Edmond Dantès. This poor +fellow, whom Caderousse had forgotten, had not forgotten him, and at +his death he bequeathed this diamond to him.’ + +“‘But how did he obtain it?’ asked the jeweller; ‘had he it before he +was imprisoned?’ + +“‘No, monsieur; but it appears that in prison he made the acquaintance +of a rich Englishman, and as in prison he fell sick, and Dantès took +the same care of him as if he had been his brother, the Englishman, +when he was set free, gave this stone to Dantès, who, less fortunate, +died, and, in his turn, left it to us, and charged the excellent abbé, +who was here this morning, to deliver it.’ + +“‘The same story,’ muttered the jeweller; ‘and improbable as it seemed +at first, it may be true. There’s only the price we are not agreed +about.’ + +“‘How not agreed about?’ said Caderousse. ‘I thought we agreed for the +price I asked.’ + +“‘That is,’ replied the jeweller, ‘I offered 40,000 francs.’ + +‘Forty thousand,’ cried La Carconte; ‘we will not part with it for that +sum. The abbé told us it was worth 50,000 without the setting.’ + +“‘What was the abbé’s name?’ asked the indefatigable questioner. + +“‘The Abbé Busoni,’ said La Carconte. + +“‘He was a foreigner?’ + +“‘An Italian from the neighborhood of Mantua, I believe.’ + +“‘Let me see this diamond again,’ replied the jeweller; ‘the first time +you are often mistaken as to the value of a stone.’ + +“Caderousse took from his pocket a small case of black shagreen, +opened, and gave it to the jeweller. At the sight of the diamond, which +was as large as a hazel-nut, La Carconte’s eyes sparkled with +cupidity.” + +“And what did you think of this fine story, eavesdropper?” said Monte +Cristo; “did you credit it?” + +“Yes, your excellency. I did not look on Caderousse as a bad man, and I +thought him incapable of committing a crime, or even a theft.” + +“That did more honor to your heart than to your experience, M. +Bertuccio. Had you known this Edmond Dantès, of whom they spoke?” + +“No, your excellency, I had never heard of him before, and never but +once afterwards, and that was from the Abbé Busoni himself, when I saw +him in the prison at Nîmes.” + +“Go on.” + +“The jeweller took the ring, and drawing from his pocket a pair of +steel pliers and a small set of copper scales, he took the stone out of +its setting, and weighed it carefully. + +“‘I will give you 45,000,’ said he, ‘but not a sou more; besides, as +that is the exact value of the stone, I brought just that sum with me.’ + +“‘Oh, that’s no matter,’ replied Caderousse, ‘I will go back with you +to fetch the other 5,000 francs.’ + +“‘No,’ returned the jeweller, giving back the diamond and the ring to +Caderousse, ‘no, it is worth no more, and I am sorry I offered so much, +for the stone has a flaw in it, which I had not seen. However, I will +not go back on my word, and I will give 45,000.’ + +“‘At least, replace the diamond in the ring,’ said La Carconte sharply. + +“‘Ah, true,’ replied the jeweller, and he reset the stone. + +“‘No matter,’ observed Caderousse, replacing the box in his pocket, +‘someone else will purchase it.’ + +“‘Yes,’ continued the jeweller; ‘but someone else will not be so easy +as I am, or content himself with the same story. It is not natural that +a man like you should possess such a diamond. He will inform against +you. You will have to find the Abbé Busoni; and abbés who give diamonds +worth two thousand louis are rare. The law would seize it, and put you +in prison; if at the end of three or four months you are set at +liberty, the ring will be lost, or a false stone, worth three francs, +will be given you, instead of a diamond worth 50,000 or perhaps 55,000 +francs; from which you must allow that one runs considerable risk in +purchasing.’ + +“Caderousse and his wife looked eagerly at each other. + +“‘No,’ said Caderousse, ‘we are not rich enough to lose 5,000 francs.’ + +“‘As you please, my dear sir,’ said the jeweller; ‘I had, however, as +you see, brought you the money in bright coin.’ And he drew from his +pocket a handful of gold, and held it sparkling before the dazzled eyes +of the innkeeper, and in the other hand he held a packet of bank-notes. + +“There was evidently a severe struggle in the mind of Caderousse; it +was plain that the small shagreen case, which he turned over and over +in his hand, did not seem to him commensurate in value to the enormous +sum which fascinated his gaze. He turned towards his wife. + +“‘What do you think of this?’ he asked in a low voice. + +“‘Let him have it—let him have it,’ she said. ‘If he returns to +Beaucaire without the diamond, he will inform against us, and, as he +says, who knows if we shall ever again see the Abbé Busoni?—in all +probability we shall never see him.’ + +“‘Well, then, so I will!’ said Caderousse; ‘so you may have the diamond +for 45,000 francs. But my wife wants a gold chain, and I want a pair of +silver buckles.’ + +“The jeweller drew from his pocket a long flat box, which contained +several samples of the articles demanded. ‘Here,’ he said, ‘I am very +straightforward in my dealings—take your choice.’ + +“The woman selected a gold chain worth about five louis, and the +husband a pair of buckles, worth perhaps fifteen francs. + +“‘I hope you will not complain now?’ said the jeweller. + +“‘The abbé told me it was worth 50,000 francs,’ muttered Caderousse. + +“‘Come, come—give it to me! What a strange fellow you are,’ said the +jeweller, taking the diamond from his hand. ‘I give you 45,000 +francs—that is, 2,500 livres of income,—a fortune such as I wish I had +myself, and you are not satisfied!’ + +“‘And the five-and-forty thousand francs,’ inquired Caderousse in a +hoarse voice, ‘where are they? Come—let us see them.’ + +“‘Here they are,’ replied the jeweller, and he counted out upon the +table 15,000 francs in gold, and 30,000 francs in bank-notes. + +“‘Wait whilst I light the lamp,’ said La Carconte; ‘it is growing dark, +and there may be some mistake.’ In fact, night had come on during this +conversation, and with night the storm which had been threatening for +the last half-hour. The thunder growled in the distance; but it was +apparently not heard by the jeweller, Caderousse, or La Carconte, +absorbed as they were all three with the demon of gain. I myself felt +a strange kind of fascination at the sight of all this gold and all +these bank-notes; it seemed to me that I was in a dream, and, as it +always happens in a dream, I felt myself riveted to the spot. +Caderousse counted and again counted the gold and the notes, then +handed them to his wife, who counted and counted them again in her +turn. During this time, the jeweller made the diamond play and sparkle +in the lamplight, and the gem threw out jets of light which made him +unmindful of those which—precursors of the storm—began to play in at +the windows. + +“‘Well,’ inquired the jeweller, ‘is the cash all right?’ + +“‘Yes,’ said Caderousse. ‘Give me the pocket-book, La Carconte, and +find a bag somewhere.’ + +“La Carconte went to a cupboard, and returned with an old leathern +pocket-book and a bag. From the former she took some greasy letters, +and put in their place the bank-notes, and from the bag took two or +three crowns of six livres each, which, in all probability, formed the +entire fortune of the miserable couple. + +“‘There,’ said Caderousse; ‘and now, although you have wronged us of +perhaps 10,000 francs, will you have your supper with us? I invite you +with good-will.’ + +“‘Thank you,’ replied the jeweller, ‘it must be getting late, and I +must return to Beaucaire—my wife will be getting uneasy.’ He drew out +his watch, and exclaimed, ‘_Morbleu!_ nearly nine o’clock—why, I shall +not get back to Beaucaire before midnight! Good-night, my friends. If +the Abbé Busoni should by any accident return, think of me.’ + +“‘In another week you will have left Beaucaire,’ remarked Caderousse, +‘for the fair ends in a few days.’ + +“‘True, but that makes no difference. Write to me at Paris, to M. +Joannes, in the Palais Royal, arcade Pierre, No. 45. I will make the +journey on purpose to see him, if it is worth while.’ + +“At this moment there was a tremendous clap of thunder, accompanied by +a flash of lightning so vivid, that it quite eclipsed the light of the +lamp. + +20307m + + + +“‘See here,’ exclaimed Caderousse. ‘You cannot think of going out in +such weather as this.’ + +“‘Oh, I am not afraid of thunder,’ said the jeweller. + +“‘And then there are robbers,’ said La Carconte. ‘The road is never +very safe during fair time.’ + +“‘Oh, as to the robbers,’ said Joannes, ‘here is something for them,’ +and he drew from his pocket a pair of small pistols, loaded to the +muzzle. ‘Here,’ said he, ‘are dogs who bark and bite at the same time, +they are for the two first who shall have a longing for your diamond, +Friend Caderousse.’ + +“Caderousse and his wife again interchanged a meaning look. It seemed +as though they were both inspired at the same time with some horrible +thought. ‘Well, then, a good journey to you,’ said Caderousse. + +“‘Thanks,’ replied the jeweller. He then took his cane, which he had +placed against an old cupboard, and went out. At the moment when he +opened the door, such a gust of wind came in that the lamp was nearly +extinguished. ‘Oh,’ said he, ‘this is very nice weather, and two +leagues to go in such a storm.’ + +“‘Remain,’ said Caderousse. ‘You can sleep here.’ + +“‘Yes; do stay,’ added La Carconte in a tremulous voice; ‘we will take +every care of you.’ + +“‘No; I must sleep at Beaucaire. So, once more, good-night.’ Caderousse +followed him slowly to the threshold. ‘I can see neither heaven nor +earth,’ said the jeweller, who was outside the door. ‘Do I turn to the +right, or to the left hand?’ + +“‘To the right,’ said Caderousse. ‘You cannot go wrong—the road is +bordered by trees on both sides.’ + +“‘Good—all right,’ said a voice almost lost in the distance. + +“‘Close the door,’ said La Carconte; ‘I do not like open doors when it +thunders.’ + +“‘Particularly when there is money in the house, eh?’ answered +Caderousse, double-locking the door. + +20311m + + + +“He came into the room, went to the cupboard, took out the bag and +pocket-book, and both began, for the third time, to count their gold +and bank-notes. I never saw such an expression of cupidity as the +flickering lamp revealed in those two countenances. The woman, +especially, was hideous; her usual feverish tremulousness was +intensified, her countenance had become livid, and her eyes resembled +burning coals. + +“‘Why,’ she inquired in a hoarse voice, ‘did you invite him to sleep +here tonight?’ + +“‘Why?’ said Caderousse with a shudder; ‘why, that he might not have +the trouble of returning to Beaucaire.’ + +“‘Ah,’ responded the woman, with an expression impossible to describe; +‘I thought it was for something else.’ + +“‘Woman, woman—why do you have such ideas?’ cried Caderousse; ‘or, if +you have them, why don’t you keep them to yourself?’ + +“‘Well,’ said La Carconte, after a moment’s pause, ‘you are not a man.’ + +“‘What do you mean?’ added Caderousse. + +“‘If you had been a man, you would not have let him go from here.’ + +“‘Woman!’ + +“‘Or else he should not have reached Beaucaire.’ + +“‘Woman!’ + +“‘The road takes a turn—he is obliged to follow it—while alongside of +the canal there is a shorter road.’ + +“‘Woman!—you offend the good God. There—listen!’ + +And at this moment there was a tremendous peal of thunder, while the +livid lightning illumined the room, and the thunder, rolling away in +the distance, seemed to withdraw unwillingly from the cursed abode. +‘Mercy!’ said Caderousse, crossing himself. + +20312m + + + +“At the same moment, and in the midst of the terrifying silence which +usually follows a clap of thunder, they heard a knocking at the door. +Caderousse and his wife started and looked aghast at each other. + +“‘Who’s there?’ cried Caderousse, rising, and drawing up in a heap the +gold and notes scattered over the table, and which he covered with his +two hands. + +“‘It is I,’ shouted a voice. + +“‘And who are you?’ + +“‘Eh, _pardieu!_ Joannes, the jeweller.’ + +“‘Well, and you said I offended the good God,’ said La Carconte with a +horrid smile. ‘Why, the good God sends him back again.’ Caderousse sank +pale and breathless into his chair. + +“La Carconte, on the contrary, rose, and going with a firm step towards +the door, opened it, saying, as she did so: + +“‘Come in, dear M. Joannes.’ + +“‘_Ma foi_,’ said the jeweller, drenched with rain, ‘I am not destined +to return to Beaucaire tonight. The shortest follies are best, my dear +Caderousse. You offered me hospitality, and I accept it, and have +returned to sleep beneath your friendly roof.’ + +“Caderousse stammered out something, while he wiped away the sweat that +started to his brow. La Carconte double-locked the door behind the +jeweller.” + + + + Chapter 45. The Rain of Blood + +As the jeweller returned to the apartment, he cast around him a +scrutinizing glance—but there was nothing to excite suspicion, if it +did not exist, or to confirm it, if it were already awakened. +Caderousse’s hands still grasped the gold and bank-notes, and La +Carconte called up her sweetest smiles while welcoming the reappearance +of their guest. + +“‘Well, well,’ said the jeweller, ‘you seem, my good friends, to have +had some fears respecting the accuracy of your money, by counting it +over so carefully directly I was gone.’ + +“‘Oh, no,’ answered Caderousse, ‘that was not my reason, I can assure +you; but the circumstances by which we have become possessed of this +wealth are so unexpected, as to make us scarcely credit our good +fortune, and it is only by placing the actual proof of our riches +before our eyes that we can persuade ourselves that the whole affair is +not a dream.’ + +“The jeweller smiled. ‘Have you any other guests in your house?’ +inquired he. + +“‘Nobody but ourselves,’ replied Caderousse; ‘the fact is, we do not +lodge travellers—indeed, our tavern is so near the town, that nobody +would think of stopping here.’ + +“‘Then I am afraid I shall very much inconvenience you.’ + +“‘Inconvenience us? Not at all, my dear sir,’ said La Carconte in her +most gracious manner. ‘Not at all, I assure you.’ + +“‘But where will you manage to stow me?’ + +“‘In the chamber overhead.’ + +“‘Surely that is where you yourselves sleep?’ + +“‘Never mind that; we have a second bed in the adjoining room.’ + +“Caderousse stared at his wife with much astonishment. + +“The jeweller, meanwhile, was humming a song as he stood warming his +back at the fire La Carconte had kindled to dry the wet garments of her +guest; and this done, she next occupied herself in arranging his +supper, by spreading a napkin at the end of the table, and placing on +it the slender remains of their dinner, to which she added three or +four fresh-laid eggs. Caderousse had once more parted with his +treasure—the banknotes were replaced in the pocket-book, the gold put +back into the bag, and the whole carefully locked in the cupboard. He +then began pacing the room with a pensive and gloomy air, glancing from +time to time at the jeweller, who stood reeking with the steam from his +wet clothes, and merely changing his place on the warm hearth, to +enable the whole of his garments to be dried. + +“‘There,’ said La Carconte, as she placed a bottle of wine on the +table, ‘supper is ready whenever you are.’ + +“‘And you?’ asked Joannes. + +“‘I don’t want any supper,’ said Caderousse. + +“‘We dined so very late,’ hastily interposed La Carconte. + +“‘Then it seems I am to eat alone,’ remarked the jeweller. + +“‘Oh, we shall have the pleasure of waiting upon you,’ answered La +Carconte, with an eager attention she was not accustomed to manifest +even to guests who paid for what they took. + +“From time to time Caderousse darted on his wife keen, searching +glances, but rapid as the lightning flash. The storm still continued. + +“‘There, there,’ said La Carconte; ‘do you hear that? upon my word, you +did well to come back.’ + +“‘Nevertheless,’ replied the jeweller, ‘if by the time I have finished +my supper the tempest has at all abated, I shall make another start.’ + +“‘It’s the mistral,’ said Caderousse, ‘and it will be sure to last till +tomorrow morning.’ He sighed heavily. + +“‘Well,’ said the jeweller, as he placed himself at table, ‘all I can +say is, so much the worse for those who are abroad.’ + +“‘Yes,’ chimed in La Carconte, ‘they will have a wretched night of it.’ + +“The jeweller began eating his supper, and the woman, who was +ordinarily so querulous and indifferent to all who approached her, was +suddenly transformed into the most smiling and attentive hostess. Had +the unhappy man on whom she lavished her assiduities been previously +acquainted with her, so sudden an alteration might well have excited +suspicion in his mind, or at least have greatly astonished him. +Caderousse, meanwhile, continued to pace the room in gloomy silence, +sedulously avoiding the sight of his guest; but as soon as the stranger +had completed his repast, the agitated innkeeper went eagerly to the +door and opened it. + +“‘I believe the storm is over,’ said he. + +“But as if to contradict his statement, at that instant a violent clap +of thunder seemed to shake the house to its very foundation, while a +sudden gust of wind, mingled with rain, extinguished the lamp he held +in his hand. + +“Trembling and awe-struck, Caderousse hastily shut the door and +returned to his guest, while La Carconte lighted a candle by the +smouldering ashes that glimmered on the hearth. + +“‘You must be tired,’ said she to the jeweller; ‘I have spread a pair +of white sheets on your bed; go up when you are ready, and sleep well.’ + +“Joannes stayed for a while to see whether the storm seemed to abate in +its fury, but a brief space of time sufficed to assure him that, +instead of diminishing, the violence of the rain and thunder +momentarily increased; resigning himself, therefore, to what seemed +inevitable, he bade his host good-night, and mounted the stairs. He +passed over my head and I heard the flooring creak beneath his +footsteps. The quick, eager glance of La Carconte followed him as he +ascended, while Caderousse, on the contrary, turned his back, and +seemed most anxiously to avoid even glancing at him. + +“All these circumstances did not strike me as painfully at the time as +they have since done; in fact, all that had happened (with the +exception of the story of the diamond, which certainly did wear an air +of improbability), appeared natural enough, and called for neither +apprehension nor mistrust; but, worn out as I was with fatigue, and +fully purposing to proceed onwards directly the tempest abated, I +determined to obtain a few hours’ sleep. Overhead I could accurately +distinguish every movement of the jeweller, who, after making the best +arrangements in his power for passing a comfortable night, threw +himself on his bed, and I could hear it creak and groan beneath his +weight. + +“Insensibly my eyelids grew heavy, deep sleep stole over me, and having +no suspicion of anything wrong, I sought not to shake it off. I looked +into the kitchen once more and saw Caderousse sitting by the side of a +long table upon one of the low wooden stools which in country places +are frequently used instead of chairs; his back was turned towards me, +so that I could not see the expression of his countenance—neither +should I have been able to do so had he been placed differently, as his +head was buried between his two hands. La Carconte continued to gaze on +him for some time, then shrugging her shoulders, she took her seat +immediately opposite to him. + +“At this moment the expiring embers threw up a fresh flame from the +kindling of a piece of wood that lay near, and a bright light flashed +over the room. La Carconte still kept her eyes fixed on her husband, +but as he made no sign of changing his position, she extended her hard, +bony hand, and touched him on the forehead. + +20317m + + + +“Caderousse shuddered. The woman’s lips seemed to move, as though she +were talking; but because she merely spoke in an undertone, or my +senses were dulled by sleep, I did not catch a word she uttered. +Confused sights and sounds seemed to float before me, and gradually I +fell into a deep, heavy slumber. How long I had been in this +unconscious state I know not, when I was suddenly aroused by the report +of a pistol, followed by a fearful cry. Weak and tottering footsteps +resounded across the chamber above me, and the next instant a dull, +heavy weight seemed to fall powerless on the staircase. I had not yet +fully recovered consciousness, when again I heard groans, mingled with +half-stifled cries, as if from persons engaged in a deadly struggle. A +cry more prolonged than the others and ending in a series of groans +effectually roused me from my drowsy lethargy. Hastily raising myself +on one arm, I looked around, but all was dark; and it seemed to me as +if the rain must have penetrated through the flooring of the room +above, for some kind of moisture appeared to fall, drop by drop, upon +my forehead, and when I passed my hand across my brow, I felt that it +was wet and clammy. + +“To the fearful noises that had awakened me had succeeded the most +perfect silence—unbroken, save by the footsteps of a man walking about +in the chamber above. The staircase creaked, he descended into the room +below, approached the fire and lit a candle. + +“The man was Caderousse—he was pale and his shirt was all bloody. +Having obtained the light, he hurried upstairs again, and once more I +heard his rapid and uneasy footsteps. + +“A moment later he came down again, holding in his hand the small +shagreen case, which he opened, to assure himself it contained the +diamond,—seemed to hesitate as to which pocket he should put it in, +then, as if dissatisfied with the security of either pocket, he +deposited it in his red handkerchief, which he carefully rolled round +his head. + +“After this he took from his cupboard the bank-notes and gold he had +put there, thrust the one into the pocket of his trousers, and the +other into that of his waistcoat, hastily tied up a small bundle of +linen, and rushing towards the door, disappeared in the darkness of the +night. + +“Then all became clear and manifest to me, and I reproached myself with +what had happened, as though I myself had done the guilty deed. I +fancied that I still heard faint moans, and imagining that the +unfortunate jeweller might not be quite dead, I determined to go to his +relief, by way of atoning in some slight degree, not for the crime I +had committed, but for that which I had not endeavored to prevent. For +this purpose I applied all the strength I possessed to force an +entrance from the cramped spot in which I lay to the adjoining room. +The poorly fastened boards which alone divided me from it yielded to my +efforts, and I found myself in the house. Hastily snatching up the +lighted candle, I hurried to the staircase; about midway a body was +lying quite across the stairs. It was that of La Carconte. The pistol I +had heard had doubtless been fired at her. The shot had frightfully +lacerated her throat, leaving two gaping wounds from which, as well as +the mouth, the blood was pouring in floods. She was stone dead. I +strode past her, and ascended to the sleeping chamber, which presented +an appearance of the wildest disorder. The furniture had been knocked +over in the deadly struggle that had taken place there, and the sheets, +to which the unfortunate jeweller had doubtless clung, were dragged +across the room. The murdered man lay on the floor, his head leaning +against the wall, and about him was a pool of blood which poured forth +from three large wounds in his breast; there was a fourth gash, in +which a long table knife was plunged up to the handle. + +“I stumbled over some object; I stooped to examine—it was the second +pistol, which had not gone off, probably from the powder being wet. I +approached the jeweller, who was not quite dead, and at the sound of my +footsteps and the creaking of the floor, he opened his eyes, fixed them +on me with an anxious and inquiring gaze, moved his lips as though +trying to speak, then, overcome by the effort, fell back and expired. + +“This appalling sight almost bereft me of my senses, and finding that I +could no longer be of service to anyone in the house, my only desire +was to fly. I rushed towards the staircase, clutching my hair, and +uttering a groan of horror. + +“Upon reaching the room below, I found five or six custom-house +officers, and two or three gendarmes—all heavily armed. They threw +themselves upon me. I made no resistance; I was no longer master of my +senses. When I strove to speak, a few inarticulate sounds alone escaped +my lips. + +“As I noticed the significant manner in which the whole party pointed +to my blood-stained garments, I involuntarily surveyed myself, and then +I discovered that the thick warm drops that had so bedewed me as I lay +beneath the staircase must have been the blood of La Carconte. I +pointed to the spot where I had concealed myself. + +“‘What does he mean?’ asked a gendarme. + +“One of the officers went to the place I directed. + +“‘He means,’ replied the man upon his return, ‘that he got in that +way;’ and he showed the hole I had made when I broke through. + +“Then I saw that they took me for the assassin. I recovered force and +energy enough to free myself from the hands of those who held me, while +I managed to stammer forth: + +“‘I did not do it! Indeed, indeed I did not!’ + +“A couple of gendarmes held the muzzles of their carbines against my +breast. + +“‘Stir but a step,’ said they, ‘and you are a dead man.’ + +“‘Why should you threaten me with death,’ cried I, ‘when I have already +declared my innocence?’ + +“‘Tush, tush,’ cried the men; ‘keep your innocent stories to tell to +the judge at Nîmes. Meanwhile, come along with us; and the best advice +we can give you is to do so unresistingly.’ + +“Alas, resistance was far from my thoughts. I was utterly overpowered +by surprise and terror; and without a word I suffered myself to be +handcuffed and tied to a horse’s tail, and thus they took me to Nîmes. + +“I had been tracked by a customs-officer, who had lost sight of me near +the tavern; feeling certain that I intended to pass the night there, he +had returned to summon his comrades, who just arrived in time to hear +the report of the pistol, and to take me in the midst of such +circumstantial proofs of my guilt as rendered all hopes of proving my +innocence utterly futile. One only chance was left me, that of +beseeching the magistrate before whom I was taken to cause every +inquiry to be made for the Abbé Busoni, who had stopped at the inn of +the Pont du Gard on that morning. + +“If Caderousse had invented the story relative to the diamond, and +there existed no such person as the Abbé Busoni, then, indeed, I was +lost past redemption, or, at least, my life hung upon the feeble chance +of Caderousse himself being apprehended and confessing the whole truth. + +“Two months passed away in hopeless expectation on my part, while I +must do the magistrate the justice to say that he used every means to +obtain information of the person I declared could exculpate me if he +would. Caderousse still evaded all pursuit, and I had resigned myself +to what seemed my inevitable fate. My trial was to come on at the +approaching assizes; when, on the 8th of September—that is to say, +precisely three months and five days after the events which had +perilled my life—the Abbé Busoni, whom I never ventured to believe I +should see, presented himself at the prison doors, saying he understood +one of the prisoners wished to speak to him; he added, that having +learned at Marseilles the particulars of my imprisonment, he hastened +to comply with my desire. + +“You may easily imagine with what eagerness I welcomed him, and how +minutely I related the whole of what I had seen and heard. I felt some +degree of nervousness as I entered upon the history of the diamond, +but, to my inexpressible astonishment, he confirmed it in every +particular, and to my equal surprise, he seemed to place entire belief +in all I said. + +“And then it was that, won by his mild charity, seeing that he was +acquainted with all the habits and customs of my own country, and +considering also that pardon for the only crime of which I was really +guilty might come with a double power from lips so benevolent and kind, +I besought him to receive my confession, under the seal of which I +recounted the Auteuil affair in all its details, as well as every other +transaction of my life. That which I had done by the impulse of my best +feelings produced the same effect as though it had been the result of +calculation. My voluntary confession of the assassination at Auteuil +proved to him that I had not committed that of which I stood accused. +When he quitted me, he bade me be of good courage, and to rely upon his +doing all in his power to convince my judges of my innocence. + +“I had speedy proofs that the excellent abbé was engaged in my behalf, +for the rigors of my imprisonment were alleviated by many trifling +though acceptable indulgences, and I was told that my trial was to be +postponed to the assizes following those now being held. + +“In the interim it pleased Providence to cause the apprehension of +Caderousse, who was discovered in some distant country, and brought +back to France, where he made a full confession, refusing to make the +fact of his wife’s having suggested and arranged the murder any excuse +for his own guilt. The wretched man was sentenced to the galleys for +life, and I was immediately set at liberty.” + +“And then it was, I presume,” said Monte Cristo “that you came to me as +the bearer of a letter from the Abbé Busoni?” + +“It was, your excellency; the benevolent abbé took an evident interest +in all that concerned me. + +“‘Your mode of life as a smuggler,’ said he to me one day, ‘will be the +ruin of you; if you get out, don’t take it up again.’ + +“‘But how,’ inquired I, ‘am I to maintain myself and my poor sister?’ + +“‘A person, whose confessor I am,’ replied he, ‘and who entertains a +high regard for me, applied to me a short time since to procure him a +confidential servant. Would you like such a post? If so, I will give +you a letter of introduction to him.’ + +“‘Oh, father,’ I exclaimed, ‘you are very good.’ + +“‘But you must swear solemnly that I shall never have reason to repent +my recommendation.’ + +“I extended my hand, and was about to pledge myself by any promise he +would dictate, but he stopped me. + +“‘It is unnecessary for you to bind yourself by any vow,’ said he; ‘I +know and admire the Corsican nature too well to fear you. Here, take +this,’ continued he, after rapidly writing the few lines I brought to +your excellency, and upon receipt of which you deigned to receive me +into your service, and proudly I ask whether your excellency has ever +had cause to repent having done so?” + +“No,” replied the count; “I take pleasure in saying that you have +served me faithfully, Bertuccio; but you might have shown more +confidence in me.” + +“I, your excellency?” + +“Yes; you. How comes it, that having both a sister and an adopted son, +you have never spoken to me of either?” + +20323m + + + +“Alas, I have still to recount the most distressing period of my life. +Anxious as you may suppose I was to behold and comfort my dear sister, +I lost no time in hastening to Corsica, but when I arrived at Rogliano +I found a house of mourning, the consequences of a scene so horrible +that the neighbors remember and speak of it to this day. Acting by my +advice, my poor sister had refused to comply with the unreasonable +demands of Benedetto, who was continually tormenting her for money, as +long as he believed there was a sou left in her possession. One morning +he threatened her with the severest consequences if she did not supply +him with what he desired, and disappeared and remained away all day, +leaving the kind-hearted Assunta, who loved him as if he were her own +child, to weep over his conduct and bewail his absence. Evening came, +and still, with all the patient solicitude of a mother, she watched for +his return. + +“As the eleventh hour struck, he entered with a swaggering air, +attended by two of the most dissolute and reckless of his boon +companions. She stretched out her arms to him, but they seized hold of +her, and one of the three—none other than the accursed Benedetto +exclaimed: + +“‘Put her to torture and she’ll soon tell us where her money is.’ + +“It unfortunately happened that our neighbor, Wasilio, was at Bastia, +leaving no person in his house but his wife; no human creature beside +could hear or see anything that took place within our dwelling. Two +held poor Assunta, who, unable to conceive that any harm was intended +to her, smiled in the face of those who were soon to become her +executioners. The third proceeded to barricade the doors and windows, +then returned, and the three united in stifling the cries of terror +incited by the sight of these preparations, and then dragged Assunta +feet foremost towards the brazier, expecting to wring from her an +avowal of where her supposed treasure was secreted. In the struggle her +clothes caught fire, and they were obliged to let go their hold in +order to preserve themselves from sharing the same fate. Covered with +flames, Assunta rushed wildly to the door, but it was fastened; she +flew to the windows, but they were also secured; then the neighbors +heard frightful shrieks; it was Assunta calling for help. The cries +died away in groans, and next morning, as soon as Wasilio’s wife could +muster up courage to venture abroad, she caused the door of our +dwelling to be opened by the public authorities, when Assunta, although +dreadfully burnt, was found still breathing; every drawer and closet in +the house had been forced open, and the money stolen. Benedetto never +again appeared at Rogliano, neither have I since that day either seen +or heard anything concerning him. + +“It was subsequently to these dreadful events that I waited on your +excellency, to whom it would have been folly to have mentioned +Benedetto, since all trace of him seemed entirely lost; or of my +sister, since she was dead.” + +“And in what light did you view the occurrence?” inquired Monte Cristo. + +“As a punishment for the crime I had committed,” answered Bertuccio. +“Oh, those Villeforts are an accursed race!” + +“Truly they are,” murmured the count in a lugubrious tone. + +“And now,” resumed Bertuccio, “your excellency may, perhaps, be able to +comprehend that this place, which I revisit for the first time—this +garden, the actual scene of my crime—must have given rise to +reflections of no very agreeable nature, and produced that gloom and +depression of spirits which excited the notice of your excellency, who +was pleased to express a desire to know the cause. At this instant a +shudder passes over me as I reflect that possibly I am now standing on +the very grave in which lies M. de Villefort, by whose hand the ground +was dug to receive the corpse of his child.” + +“Everything is possible,” said Monte Cristo, rising from the bench on +which he had been sitting; “even,” he added in an inaudible voice, +“even that the procureur be not dead. The Abbé Busoni did right to send +you to me,” he went on in his ordinary tone, “and you have done well in +relating to me the whole of your history, as it will prevent my forming +any erroneous opinions concerning you in future. As for that Benedetto, +who so grossly belied his name, have you never made any effort to trace +out whither he has gone, or what has become of him?” + +“No; far from wishing to learn whither he has betaken himself, I should +shun the possibility of meeting him as I would a wild beast. Thank God, +I have never heard his name mentioned by any person, and I hope and +believe he is dead.” + +“Do not think so, Bertuccio,” replied the count; “for the wicked are +not so easily disposed of, for God seems to have them under his special +watch-care to make of them instruments of his vengeance.” + +“So be it,” responded Bertuccio, “all I ask of heaven is that I may +never see him again. And now, your excellency,” he added, bowing his +head, “you know everything—you are my judge on earth, as the Almighty +is in heaven; have you for me no words of consolation?” + +“My good friend, I can only repeat the words addressed to you by the +Abbé Busoni. Villefort merited punishment for what he had done to you, +and, perhaps, to others. Benedetto, if still living, will become the +instrument of divine retribution in some way or other, and then be duly +punished in his turn. As far as you yourself are concerned, I see but +one point in which you are really guilty. Ask yourself, wherefore, +after rescuing the infant from its living grave, you did not restore it +to its mother? There was the crime, Bertuccio—that was where you became +really culpable.” + +“True, excellency, that was the crime, the real crime, for in that I +acted like a coward. My first duty, directly I had succeeded in +recalling the babe to life, was to restore it to its mother; but, in +order to do so, I must have made close and careful inquiry, which +would, in all probability, have led to my own apprehension; and I clung +to life, partly on my sister’s account, and partly from that feeling of +pride inborn in our hearts of desiring to come off untouched and +victorious in the execution of our vengeance. Perhaps, too, the natural +and instinctive love of life made me wish to avoid endangering my own. +And then, again, I am not as brave and courageous as was my poor +brother.” + +Bertuccio hid his face in his hands as he uttered these words, while +Monte Cristo fixed on him a look of inscrutable meaning. After a brief +silence, rendered still more solemn by the time and place, the count +said, in a tone of melancholy wholly unlike his usual manner: + +“In order to bring this conversation to a fitting termination (the last +we shall ever hold upon this subject), I will repeat to you some words +I have heard from the lips of the Abbé Busoni. For all evils there are +two remedies—time and silence. And now leave me, Monsieur Bertuccio, to +walk alone here in the garden. The very circumstances which inflict on +you, as a principal in the tragic scene enacted here, such painful +emotions, are to me, on the contrary, a source of something like +contentment, and serve but to enhance the value of this dwelling in my +estimation. The chief beauty of trees consists in the deep shadow of +their umbrageous boughs, while fancy pictures a moving multitude of +shapes and forms flitting and passing beneath that shade. Here I have a +garden laid out in such a way as to afford the fullest scope for the +imagination, and furnished with thickly grown trees, beneath whose +leafy screen a visionary like myself may conjure up phantoms at will. +This to me, who expected but to find a blank enclosure surrounded by a +straight wall, is, I assure you, a most agreeable surprise. I have no +fear of ghosts, and I have never heard it said that so much harm had +been done by the dead during six thousand years as is wrought by the +living in a single day. Retire within, Bertuccio, and tranquillize your +mind. Should your confessor be less indulgent to you in your dying +moments than you found the Abbé Busoni, send for me, if I am still on +earth, and I will soothe your ears with words that shall effectually +calm and soothe your parting soul ere it goes forth to traverse the +ocean called eternity.” + +Bertuccio bowed respectfully, and turned away, sighing heavily. Monte +Cristo, left alone, took three or four steps onwards, and murmured: + +“Here, beneath this plane-tree, must have been where the infant’s grave +was dug. There is the little door opening into the garden. At this +corner is the private staircase communicating with the sleeping +apartment. There will be no necessity for me to make a note of these +particulars, for there, before my eyes, beneath my feet, all around me, +I have the plan sketched with all the living reality of truth.” + +After making the tour of the garden a second time, the count re-entered +his carriage, while Bertuccio, who perceived the thoughtful expression +of his master’s features, took his seat beside the driver without +uttering a word. The carriage proceeded rapidly towards Paris. + +That same evening, upon reaching his abode in the Champs-Élysées, the +Count of Monte Cristo went over the whole building with the air of one +long acquainted with each nook or corner. Nor, although preceding the +party, did he once mistake one door for another, or commit the smallest +error when choosing any particular corridor or staircase to conduct him +to a place or suite of rooms he desired to visit. Ali was his principal +attendant during this nocturnal survey. Having given various orders to +Bertuccio relative to the improvements and alterations he desired to +make in the house, the Count, drawing out his watch, said to the +attentive Nubian: + +“It is half-past eleven o’clock; Haydée will soon be here. Have the +French attendants been summoned to await her coming?” + +Ali extended his hands towards the apartments destined for the fair +Greek, which were so effectually concealed by means of a tapestried +entrance, that it would have puzzled the most curious to have divined +their existence. Ali, having pointed to the apartments, held up three +fingers of his right hand, and then, placing it beneath his head, shut +his eyes, and feigned to sleep. + +“I understand,” said Monte Cristo, well acquainted with Ali’s +pantomime; “you mean to tell me that three female attendants await +their new mistress in her sleeping-chamber.” + +Ali, with considerable animation, made a sign in the affirmative. + +“Madame will be tired tonight,” continued Monte Cristo, “and will, no +doubt, wish to rest. Desire the French attendants not to weary her with +questions, but merely to pay their respectful duty and retire. You will +also see that the Greek servants hold no communication with those of +this country.” + +He bowed. Just at that moment voices were heard hailing the concierge. +The gate opened, a carriage rolled down the avenue, and stopped at the +steps. The count hastily descended, presented himself at the already +opened carriage door, and held out his hand to a young woman, +completely enveloped in a green silk mantle heavily embroidered with +gold. She raised the hand extended towards her to her lips, and kissed +it with a mixture of love and respect. Some few words passed between +them in that sonorous language in which Homer makes his gods converse. +The young woman spoke with an expression of deep tenderness, while the +count replied with an air of gentle gravity. + +Preceded by Ali, who carried a rose-colored flambeau in his hand, the +young lady, who was no other than the lovely Greek who had been Monte +Cristo’s companion in Italy, was conducted to her apartments, while the +count retired to the pavilion reserved for himself. In another hour +every light in the house was extinguished, and it might have been +thought that all its inmates slept. + + + + Chapter 46. Unlimited Credit + +About two o’clock the following day a calash, drawn by a pair of +magnificent English horses, stopped at the door of Monte Cristo and a +person, dressed in a blue coat, with buttons of a similar color, a +white waistcoat, over which was displayed a massive gold chain, brown +trousers, and a quantity of black hair descending so low over his +eyebrows as to leave it doubtful whether it were not artificial so +little did its jetty glossiness assimilate with the deep wrinkles +stamped on his features—a person, in a word, who, although evidently +past fifty, desired to be taken for not more than forty, bent forwards +from the carriage door, on the panels of which were emblazoned the +armorial bearings of a baron, and directed his groom to inquire at the +porter’s lodge whether the Count of Monte Cristo resided there, and if +he were within. + +While waiting, the occupant of the carriage surveyed the house, the +garden as far as he could distinguish it, and the livery of servants +who passed to and fro, with an attention so close as to be somewhat +impertinent. His glance was keen but showed cunning rather than +intelligence; his lips were straight, and so thin that, as they closed, +they were drawn in over the teeth; his cheek-bones were broad and +projecting, a never-failing proof of audacity and craftiness; while the +flatness of his forehead, and the enlargement of the back of his skull, +which rose much higher than his large and coarsely shaped ears, +combined to form a physiognomy anything but prepossessing, save in the +eyes of such as considered that the owner of so splendid an equipage +must needs be all that was admirable and enviable, more especially when +they gazed on the enormous diamond that glittered in his shirt, and the +red ribbon that depended from his button-hole. + +The groom, in obedience to his orders, tapped at the window of the +porter’s lodge, saying: + +“Pray, does not the Count of Monte Cristo live here?” + +“His excellency does reside here,” replied the concierge; “but——” added +he, glancing an inquiring look at Ali. Ali returned a sign in the +negative. + +“But what?” asked the groom. + +“His excellency does not receive visitors today.” + +“Then here is my master’s card, the Baron Danglars. You will take it to +the count, and say that, although in haste to attend the Chamber, my +master came out of his way to have the honor of calling upon him.” + +“I never speak to his excellency,” replied the concierge; “the valet de +chambre will carry your message.” + +The groom returned to the carriage. + +“Well?” asked Danglars. + +The man, somewhat crest-fallen by the rebuke he had received, repeated +what the concierge had said. + +“Bless me,” murmured Baron Danglars, “this must surely be a prince +instead of a count by their styling him ‘excellency,’ and only +venturing to address him by the medium of his valet de chambre. +However, it does not signify; he has a letter of credit on me, so I +must see him when he requires his money.” + +Then, throwing himself back in his carriage, Danglars called out to his +coachman, in a voice that might be heard across the road, “To the +Chamber of Deputies.” + +Apprised in time of the visit paid him, Monte Cristo had, from behind +the blinds of his pavilion, as minutely observed the baron, by means of +an excellent lorgnette, as Danglars himself had scrutinized the house, +garden, and servants. + +“That fellow has a decidedly bad countenance,” said the count in a tone +of disgust, as he shut up his glass into its ivory case. “How comes it +that all do not retreat in aversion at sight of that flat, receding, +serpent-like forehead, round, vulture-shaped head, and sharp-hooked +nose, like the beak of a buzzard? Ali,” cried he, striking at the same +time on the brazen gong. Ali appeared. “Summon Bertuccio,” said the +count. Almost immediately Bertuccio entered the apartment. + +“Did your excellency desire to see me?” inquired he. + +“I did,” replied the count. “You no doubt observed the horses standing +a few minutes since at the door?” + +“Certainly, your excellency. I noticed them for their remarkable +beauty.” + +“Then how comes it,” said Monte Cristo with a frown, “that, when I +desired you to purchase for me the finest pair of horses to be found in +Paris, there is another pair, fully as fine as mine, not in my +stables?” + +At the look of displeasure, added to the angry tone in which the count +spoke, Ali turned pale and held down his head. + +“It is not your fault, my good Ali,” said the count in the Arabic +language, and with a gentleness none would have thought him capable of +showing, either in voice or face—“it is not your fault. You do not +understand the points of English horses.” + +The countenance of poor Ali recovered its serenity. + +“Permit me to assure your excellency,” said Bertuccio, “that the horses +you speak of were not to be sold when I purchased yours.” + +Monte Cristo shrugged his shoulders. “It seems, sir steward,” said he, +“that you have yet to learn that all things are to be sold to such as +care to pay the price.” + +“His excellency is not, perhaps, aware that M. Danglars gave 16,000 +francs for his horses?” + +“Very well. Then offer him double that sum; a banker never loses an +opportunity of doubling his capital.” + +“Is your excellency really in earnest?” inquired the steward. + +Monte Cristo regarded the person who durst presume to doubt his words +with the look of one equally surprised and displeased. + +“I have to pay a visit this evening,” replied he. “I desire that these +horses, with completely new harness, may be at the door with my +carriage.” + +Bertuccio bowed, and was about to retire; but when he reached the door, +he paused, and then said, “At what o’clock does your excellency wish +the carriage and horses to be ready?” + +“At five o’clock,” replied the count. + +“I beg your excellency’s pardon,” interposed the steward in a +deprecating manner, “for venturing to observe that it is already two +o’clock.” + +“I am perfectly aware of that fact,” answered Monte Cristo calmly. +Then, turning towards Ali, he said, “Let all the horses in my stables +be led before the windows of your young lady, that she may select those +she prefers for her carriage. Request her also to oblige me by saying +whether it is her pleasure to dine with me; if so, let dinner be served +in her apartments. Now, leave me, and desire my valet de chambre to +come hither.” + +Scarcely had Ali disappeared when the valet entered the chamber. + +“Monsieur Baptistin,” said the count, “you have been in my service one +year, the time I generally give myself to judge of the merits or +demerits of those about me. You suit me very well.” + +Baptistin bowed low. + +“It only remains for me to know whether I also suit you?” + +“Oh, your excellency!” exclaimed Baptistin eagerly. + +“Listen, if you please, till I have finished speaking,” replied Monte +Cristo. “You receive 1,500 francs per annum for your services here—more +than many a brave subaltern, who continually risks his life for his +country, obtains. You live in a manner far superior to many clerks who +work ten times harder than you do for their money. Then, though +yourself a servant, you have other servants to wait upon you, take care +of your clothes, and see that your linen is duly prepared for you. +Again, you make a profit upon each article you purchase for my toilet, +amounting in the course of a year to a sum equalling your wages.” + +“Nay, indeed, your excellency.” + +“I am not condemning you for this, Monsieur Baptistin; but let your +profits end here. It would be long indeed ere you would find so +lucrative a post as that you have now the good fortune to fill. I +neither ill-use nor ill-treat my servants by word or action. An error I +readily forgive, but wilful negligence or forgetfulness, never. My +commands are ordinarily short, clear, and precise; and I would rather +be obliged to repeat my words twice, or even three times, than they +should be misunderstood. I am rich enough to know whatever I desire to +know, and I can promise you I am not wanting in curiosity. If, then, I +should learn that you had taken upon yourself to speak of me to anyone +favorably or unfavorably, to comment on my actions, or watch my +conduct, that very instant you would quit my service. You may now +retire. I never caution my servants a second time—remember that.” + +Baptistin bowed, and was proceeding towards the door. + +“I forgot to mention to you,” said the count, “that I lay yearly aside +a certain sum for each servant in my establishment; those whom I am +compelled to dismiss lose (as a matter of course) all participation in +this money, while their portion goes to the fund accumulating for those +domestics who remain with me, and among whom it will be divided at my +death. You have been in my service a year, your fund has already begun +to accumulate—let it continue to do so.” + +This address, delivered in the presence of Ali, who, not understanding +one word of the language in which it was spoken, stood wholly unmoved, +produced an effect on M. Baptistin only to be conceived by such as have +occasion to study the character and disposition of French domestics. + +“I assure your excellency,” said he, “that at least it shall be my +study to merit your approbation in all things, and I will take M. Ali +as my model.” + +“By no means,” replied the count in the most frigid tones; “Ali has +many faults mixed with most excellent qualities. He cannot possibly +serve you as a pattern for your conduct, not being, as you are, a paid +servant, but a mere slave—a dog, who, should he fail in his duty +towards me, I should not discharge from my service, but kill.” + +Baptistin opened his eyes with astonishment. + +“You seem incredulous,” said Monte Cristo, who repeated to Ali in the +Arabic language what he had just been saying to Baptistin in French. + +The Nubian smiled assentingly to his master’s words, then, kneeling on +one knee, respectfully kissed the hand of the count. This corroboration +of the lesson he had just received put the finishing stroke to the +wonder and stupefaction of M. Baptistin. The count then motioned the +valet de chambre to retire, and to Ali to follow to his study, where +they conversed long and earnestly together. As the hand of the clock +pointed to five the count struck thrice upon his gong. When Ali was +wanted one stroke was given, two summoned Baptistin, and three +Bertuccio. The steward entered. + +“My horses,” said Monte Cristo. + +“They are at the door harnessed to the carriage as your excellency +desired. Does your excellency wish me to accompany him?” + +“No, the coachman, Ali, and Baptistin will go.” + +The count descended to the door of his mansion, and beheld his carriage +drawn by the very pair of horses he had so much admired in the morning +as the property of Danglars. As he passed them he said: + +“They are extremely handsome certainly, and you have done well to +purchase them, although you were somewhat remiss not to have procured +them sooner.” + +“Indeed, your excellency, I had very considerable difficulty in +obtaining them, and, as it is, they have cost an enormous price.” + +“Does the sum you gave for them make the animals less beautiful,” +inquired the count, shrugging his shoulders. + +“Nay, if your excellency is satisfied, it is all that I could wish. +Whither does your excellency desire to be driven?” + +“To the residence of Baron Danglars, Rue de la Chaussée d’Antin.” + +This conversation had passed as they stood upon the terrace, from which +a flight of stone steps led to the carriage-drive. As Bertuccio, with a +respectful bow, was moving away, the count called him back. + +“I have another commission for you, M. Bertuccio,” said he; “I am +desirous of having an estate by the seaside in Normandy—for instance, +between Le Havre and Boulogne. You see I give you a wide range. It will +be absolutely necessary that the place you may select have a small +harbor, creek, or bay, into which my corvette can enter and remain at +anchor. She draws only fifteen feet. She must be kept in constant +readiness to sail immediately I think proper to give the signal. Make +the requisite inquiries for a place of this description, and when you +have met with an eligible spot, visit it, and if it possess the +advantages desired, purchase it at once in your own name. The corvette +must now, I think, be on her way to Fécamp, must she not?” + +20333m + + + +“Certainly, your excellency; I saw her put to sea the same evening we +quitted Marseilles.” + +“And the yacht.” + +“Was ordered to remain at Martigues.” + +“’Tis well. I wish you to write from time to time to the captains in +charge of the two vessels so as to keep them on the alert.” + +“And the steamboat?” + +“She is at Châlons?” + +“Yes.” + +“The same orders for her as for the two sailing vessels.” + +“Very good.” + +“When you have purchased the estate I desire, I want constant relays of +horses at ten leagues apart along the northern and southern road.” + +“Your excellency may depend upon me.” + +The Count made a gesture of satisfaction, descended the terrace steps, +and sprang into his carriage, which was whirled along swiftly to the +banker’s house. + +Danglars was engaged at that moment, presiding over a railroad +committee. But the meeting was nearly concluded when the name of his +visitor was announced. As the count’s title sounded on his ear he rose, +and addressing his colleagues, who were members of one or the other +Chamber, he said: + +“Gentlemen, pardon me for leaving you so abruptly; but a most +ridiculous circumstance has occurred, which is this,—Thomson & French, +the Roman bankers, have sent to me a certain person calling himself the +Count of Monte Cristo, and have given him an unlimited credit with me. +I confess this is the drollest thing I have ever met with in the course +of my extensive foreign transactions, and you may readily suppose it +has greatly roused my curiosity. I took the trouble this morning to +call on the pretended count—if he were a real count he wouldn’t be so +rich. But, would you believe it, ‘He was not receiving.’ So the master +of Monte Cristo gives himself airs befitting a great millionaire or a +capricious beauty. I made inquiries, and found that the house in the +Champs-Élysées is his own property, and certainly it was very decently +kept up. But,” pursued Danglars with one of his sinister smiles, “an +order for unlimited credit calls for something like caution on the part +of the banker to whom that order is given. I am very anxious to see +this man. I suspect a hoax is intended, but the instigators of it +little knew whom they had to deal with. ‘They laugh best who laugh +last!’” + +Having delivered himself of this pompous address, uttered with a degree +of energy that left the baron almost out of breath, he bowed to the +assembled party and withdrew to his drawing-room, whose sumptuous +furnishings of white and gold had caused a great sensation in the +Chaussée d’Antin. It was to this apartment he had desired his guest to +be shown, with the purpose of overwhelming him at the sight of so much +luxury. He found the count standing before some copies of Albano and +Fattore that had been passed off to the banker as originals; but which, +mere copies as they were, seemed to feel their degradation in being +brought into juxtaposition with the gaudy colors that covered the +ceiling. + +The count turned round as he heard the entrance of Danglars into the +room. With a slight inclination of the head, Danglars signed to the +count to be seated, pointing significantly to a gilded armchair, +covered with white satin embroidered with gold. The count sat down. + +20335m + + + +“I have the honor, I presume, of addressing M. de Monte Cristo.” + +The count bowed. + +“And I of speaking to Baron Danglars, chevalier of the Legion of Honor, +and member of the Chamber of Deputies?” + +Monte Cristo repeated all the titles he had read on the baron’s card. + +Danglars felt the irony and compressed his lips. + +“You will, I trust, excuse me, monsieur, for not calling you by your +title when I first addressed you,” he said, “but you are aware that we +are living under a popular form of government, and that I am myself a +representative of the liberties of the people.” + +“So much so,” replied Monte Cristo, “that while you call yourself baron +you are not willing to call anybody else count.” + +“Upon my word, monsieur,” said Danglars with affected carelessness, “I +attach no sort of value to such empty distinctions; but the fact is, I +was made baron, and also chevalier of the Legion of Honor, in return +for services rendered, but——” + +“But you have discarded your titles after the example set you by +Messrs. de Montmorency and Lafayette? That was a noble example to +follow, monsieur.” + +“Why,” replied Danglars, “not entirely so; with the servants,—you +understand.” + +“I see; to your domestics you are ‘my lord,’ the journalists style you +‘monsieur,’ while your constituents call you ‘citizen.’ These are +distinctions very suitable under a constitutional government. I +understand perfectly.” + +Again Danglars bit his lips; he saw that he was no match for Monte +Cristo in an argument of this sort, and he therefore hastened to turn +to subjects more congenial. + +“Permit me to inform you, Count,” said he, bowing, “that I have +received a letter of advice from Thomson & French, of Rome.” + +“I am glad to hear it, baron,—for I must claim the privilege of +addressing you after the manner of your servants. I have acquired the +bad habit of calling persons by their titles from living in a country +where barons are still barons by right of birth. But as regards the +letter of advice, I am charmed to find that it has reached you; that +will spare me the troublesome and disagreeable task of coming to you +for money myself. You have received a regular letter of advice?” + +“Yes,” said Danglars, “but I confess I didn’t quite comprehend its +meaning.” + +“Indeed?” + +“And for that reason I did myself the honor of calling upon you, in +order to beg for an explanation.” + +“Go on, monsieur. Here I am, ready to give you any explanation you +desire.” + +“Why,” said Danglars, “in the letter—I believe I have it about me”—here +he felt in his breast-pocket—“yes, here it is. Well, this letter gives +the Count of Monte Cristo unlimited credit on our house.” + +“Well, baron, what is there difficult to understand about that?” + +“Merely the term _unlimited_—nothing else, certainly.” + +“Is not that word known in France? The people who wrote are +Anglo-Germans, you know.” + +“Oh, as for the composition of the letter, there is nothing to be said; +but as regards the competency of the document, I certainly have +doubts.” + +“Is it possible?” asked the count, assuming all air and tone of the +utmost simplicity and candor. “Is it possible that Thomson & French are +not looked upon as safe and solvent bankers? Pray tell me what you +think, baron, for I feel uneasy, I can assure you, having some +considerable property in their hands.” + +“Thomson & French are perfectly solvent,” replied Danglars, with an +almost mocking smile; “but the word _unlimited_, in financial affairs, +is so extremely vague.” + +“Is, in fact, unlimited,” said Monte Cristo. + +“Precisely what I was about to say,” cried Danglars. “Now what is vague +is doubtful; and it was a wise man who said, ‘when in doubt, keep +out.’” + +“Meaning to say,” rejoined Monte Cristo, “that however Thomson & French +may be inclined to commit acts of imprudence and folly, the Baron +Danglars is not disposed to follow their example.” + +“Not at all.” + +“Plainly enough; Messrs. Thomson & French set no bounds to their +engagements while those of M. Danglars have their limits; he is a wise +man, according to his own showing.” + +“Monsieur,” replied the banker, drawing himself up with a haughty air, +“the extent of my resources has never yet been questioned.” + +“It seems, then, reserved for me,” said Monte Cristo coldly, “to be the +first to do so.” + +“By what right, sir?” + +“By right of the objections you have raised, and the explanations you +have demanded, which certainly must have some motive.” + +Once more Danglars bit his lips. It was the second time he had been +worsted, and this time on his own ground. His forced politeness sat +awkwardly upon him, and approached almost to impertinence. Monte Cristo +on the contrary, preserved a graceful suavity of demeanor, aided by a +certain degree of simplicity he could assume at pleasure, and thus +possessed the advantage. + +“Well, sir,” resumed Danglars, after a brief silence, “I will endeavor +to make myself understood, by requesting you to inform me for what sum +you propose to draw upon me?” + +“Why, truly,” replied Monte Cristo, determined not to lose an inch of +the ground he had gained, “my reason for desiring an ‘unlimited’ credit +was precisely because I did not know how much money I might need.” + +The banker thought the time had come for him to take the upper hand. So +throwing himself back in his armchair, he said, with an arrogant and +purse-proud air: + +“Let me beg of you not to hesitate in naming your wishes; you will then +be convinced that the resources of the house of Danglars, however +limited, are still equal to meeting the largest demands; and were you +even to require a million——” + +“I beg your pardon,” interposed Monte Cristo. + +“I said a million,” replied Danglars, with the confidence of ignorance. + +“But could I do with a million?” retorted the count. “My dear sir, if a +trifle like that could suffice me, I should never have given myself the +trouble of opening an account. A million? Excuse my smiling when you +speak of a sum I am in the habit of carrying in my pocket-book or +dressing-case.” + +And with these words Monte Cristo took from his pocket a small case +containing his visiting-cards, and drew forth two orders on the +treasury for 500,000 francs each, payable at sight to the bearer. A man +like Danglars was wholly inaccessible to any gentler method of +correction. The effect of the present revelation was stunning; he +trembled and was on the verge of apoplexy. The pupils of his eyes, as +he gazed at Monte Cristo dilated horribly. + +“Come, come,” said Monte Cristo, “confess honestly that you have not +perfect confidence in Thomson & French. I understand, and foreseeing +that such might be the case, I took, in spite of my ignorance of +affairs, certain precautions. See, here are two similar letters to that +you have yourself received; one from the house of Arstein & Eskeles of +Vienna, to Baron Rothschild, the other drawn by Baring of London, upon +M. Lafitte. Now, sir, you have but to say the word, and I will spare +you all uneasiness by presenting my letter of credit to one or other of +these two firms.” + +The blow had struck home, and Danglars was entirely vanquished; with a +trembling hand he took the two letters from the count, who held them +carelessly between finger and thumb, and proceeded to scrutinize the +signatures, with a minuteness that the count might have regarded as +insulting, had it not suited his present purpose to mislead the banker. + +“Oh, sir,” said Danglars, after he had convinced himself of the +authenticity of the documents he held, and rising as if to salute the +power of gold personified in the man before him,—“three letters of +unlimited credit! I can be no longer mistrustful, but you must pardon +me, my dear count, for confessing to some degree of astonishment.” + +“Nay,” answered Monte Cristo, with the most gentlemanly air, “’tis not +for such trifling sums as these that your banking house is to be +incommoded. Then, you can let me have some money, can you not?” + +“Whatever you say, my dear count; I am at your orders.” + +“Why,” replied Monte Cristo, “since we mutually understand each +other—for such I presume is the case?” Danglars bowed assentingly. “You +are quite sure that not a lurking doubt or suspicion lingers in your +mind?” + +“Oh, my dear count,” exclaimed Danglars, “I never for an instant +entertained such a feeling towards you.” + +“No, you merely wished to be convinced, nothing more; but now that we +have come to so clear an understanding, and that all distrust and +suspicion are laid at rest, we may as well fix a sum as the probable +expenditure of the first year, suppose we say six millions to——” + +“Six millions!” gasped Danglars—“so be it.” + +“Then, if I should require more,” continued Monte Cristo in a careless +manner, “why, of course, I should draw upon you; but my present +intention is not to remain in France more than a year, and during that +period I scarcely think I shall exceed the sum I mentioned. However, we +shall see. Be kind enough, then, to send me 500,000 francs tomorrow. I +shall be at home till midday, or if not, I will leave a receipt with my +steward.” + +“The money you desire shall be at your house by ten o’clock tomorrow +morning, my dear count,” replied Danglars. “How would you like to have +it? in gold, silver, or notes?” + +“Half in gold, and the other half in bank-notes, if you please,” said +the count, rising from his seat. + +“I must confess to you, count,” said Danglars, “that I have hitherto +imagined myself acquainted with the degree of all the great fortunes of +Europe, and still wealth such as yours has been wholly unknown to me. +May I presume to ask whether you have long possessed it?” + +“It has been in the family a very long while,” returned Monte Cristo, +“a sort of treasure expressly forbidden to be touched for a certain +period of years, during which the accumulated interest has doubled the +capital. The period appointed by the testator for the disposal of these +riches occurred only a short time ago, and they have only been employed +by me within the last few years. Your ignorance on the subject, +therefore, is easily accounted for. However, you will be better +informed as to me and my possessions ere long.” + +And the count, while pronouncing these latter words, accompanied them +with one of those ghastly smiles that used to strike terror into poor +Franz d’Épinay. + +“With your tastes, and means of gratifying them,” continued Danglars, +“you will exhibit a splendor that must effectually put us poor +miserable millionaires quite in the shade. If I mistake not you are an +admirer of paintings, at least I judged so from the attention you +appeared to be bestowing on mine when I entered the room. If you will +permit me, I shall be happy to show you my picture gallery, composed +entirely of works by the ancient masters—warranted as such. Not a +modern picture among them. I cannot endure the modern school of +painting.” + +“You are perfectly right in objecting to them, for this one great +fault—that they have not yet had time to become old.” + +“Or will you allow me to show you several fine statues by Thorwaldsen, +Bartoloni, and Canova?—all foreign artists, for, as you may perceive, I +think but very indifferently of our French sculptors.” + +“You have a right to be unjust to them, monsieur; they are your +compatriots.” + +“But all this may come later, when we shall be better known to each +other. For the present, I will confine myself (if perfectly agreeable +to you) to introducing you to the Baroness Danglars—excuse my +impatience, my dear count, but a client like you is almost like a +member of the family.” + +Monte Cristo bowed, in sign that he accepted the proffered honor; +Danglars rang and was answered by a servant in a showy livery. + +“Is the baroness at home?” inquired Danglars. + +“Yes, my lord,” answered the man. + +“And alone?” + +“No, my lord, madame has visitors.” + +“Have you any objection to meet any persons who may be with madame, or +do you desire to preserve a strict _incognito_?” + +“No, indeed,” replied Monte Cristo with a smile, “I do not arrogate to +myself the right of so doing.” + +“And who is with madame?—M. Debray?” inquired Danglars, with an air of +indulgence and good-nature that made Monte Cristo smile, acquainted as +he was with the secrets of the banker’s domestic life. + +“Yes, my lord,” replied the servant, “M. Debray is with madame.” + +Danglars nodded his head; then, turning to Monte Cristo, said, “M. +Lucien Debray is an old friend of ours, and private secretary to the +Minister of the Interior. As for my wife, I must tell you, she lowered +herself by marrying me, for she belongs to one of the most ancient +families in France. Her maiden name was De Servières, and her first +husband was Colonel the Marquis of Nargonne.” + +“I have not the honor of knowing Madame Danglars; but I have already +met M. Lucien Debray.” + +“Ah, indeed?” said Danglars; “and where was that?” + +“At the house of M. de Morcerf.” + +“Ah! you are acquainted with the young viscount, are you?” + +“We were together a good deal during the Carnival at Rome.” + +“True, true,” cried Danglars. “Let me see; have I not heard talk of +some strange adventure with bandits or thieves hid in ruins, and of his +having had a miraculous escape? I forget how, but I know he used to +amuse my wife and daughter by telling them about it after his return +from Italy.” + +“Her ladyship is waiting to receive you, gentlemen,” said the servant, +who had gone to inquire the pleasure of his mistress. + +“With your permission,” said Danglars, bowing, “I will precede you, to +show you the way.” + +“By all means,” replied Monte Cristo; “I follow you.” + + + + Chapter 47. The Dappled Grays + +The baron, followed by the count, traversed a long series of +apartments, in which the prevailing characteristics were heavy +magnificence and the gaudiness of ostentatious wealth, until he reached +the boudoir of Madame Danglars—a small octagonal-shaped room, hung with +pink satin, covered with white Indian muslin. The chairs were of +ancient workmanship and materials; over the doors were painted sketches +of shepherds and shepherdesses, after the style and manner of Boucher; +and at each side pretty medallions in crayons, harmonizing well with +the furnishings of this charming apartment, the only one throughout the +great mansion in which any distinctive taste prevailed. The truth was, +it had been entirely overlooked in the plan arranged and followed out +by M. Danglars and his architect, who had been selected to aid the +baron in the great work of improvement solely because he was the most +fashionable and celebrated decorator of the day. The decorations of the +boudoir had then been left entirely to Madame Danglars and Lucien +Debray. M. Danglars, however, while possessing a great admiration for +the antique, as it was understood during the time of the Directory, +entertained the most sovereign contempt for the simple elegance of his +wife’s favorite sitting-room, where, by the way, he was never permitted +to intrude, unless, indeed, he excused his own appearance by ushering +in some more agreeable visitor than himself; and even then he had +rather the air and manner of a person who was himself introduced, than +that of being the presenter of another, his reception being cordial or +frigid, in proportion as the person who accompanied him chanced to +please or displease the baroness. + +Madame Danglars (who, although past the first bloom of youth, was still +strikingly handsome) was now seated at the piano, a most elaborate +piece of cabinet and inlaid work, while Lucien Debray, standing before +a small work-table, was turning over the pages of an album. + +Lucien had found time, preparatory to the count’s arrival, to relate +many particulars respecting him to Madame Danglars. It will be +remembered that Monte Cristo had made a lively impression on the minds +of all the party assembled at the breakfast given by Albert de Morcerf; +and although Debray was not in the habit of yielding to such feelings, +he had never been able to shake off the powerful influence excited in +his mind by the impressive look and manner of the count, consequently +the description given by Lucien to the baroness bore the highly-colored +tinge of his own heated imagination. Already excited by the wonderful +stories related of the count by de Morcerf, it is no wonder that Madame +Danglars eagerly listened to, and fully credited, all the additional +circumstances detailed by Debray. This posing at the piano and over the +album was only a little ruse adopted by way of precaution. A most +gracious welcome and unusual smile were bestowed on M. Danglars; the +count, in return for his gentlemanly bow, received a formal though +graceful courtesy, while Lucien exchanged with the count a sort of +distant recognition, and with Danglars a free and easy nod. + +“Baroness,” said Danglars, “give me leave to present to you the Count +of Monte Cristo, who has been most warmly recommended to me by my +correspondents at Rome. I need but mention one fact to make all the +ladies in Paris court his notice, and that is, that he has come to take +up his abode in Paris for a year, during which brief period he proposes +to spend six millions of money. That means balls, dinners, and lawn +parties without end, in all of which I trust the count will remember +us, as he may depend upon it we shall him, in our own humble +entertainments.” + +In spite of the gross flattery and coarseness of this address, Madame +Danglars could not forbear gazing with considerable interest on a man +capable of expending six millions in twelve months, and who had +selected Paris for the scene of his princely extravagance. + +“And when did you arrive here?” inquired she. + +“Yesterday morning, madame.” + +“Coming, as usual, I presume, from the extreme end of the globe? Pardon +me—at least, such I have heard is your custom.” + +“Nay, madame. This time I have merely come from Cadiz.” + +“You have selected a most unfavorable moment for your first visit. +Paris is a horrible place in summer. Balls, parties, and _fêtes_ are +over; the Italian opera is in London; the French opera everywhere +except in Paris. As for the Théatre Français, you know, of course, that +it is nowhere. The only amusements left us are the indifferent races at +the Champ-de-Mars and Satory. Do you propose entering any horses at +either of these races, count?” + +“I shall do whatever they do at Paris, madame, if I have the good +fortune to find someone who will initiate me into the prevalent ideas +of amusement.” + +“Are you fond of horses, count?” + +“I have passed a considerable part of my life in the East, madame, and +you are doubtless aware that the Orientals value only two things—the +fine breeding of their horses and the beauty of their women.” + +“Nay, count,” said the baroness, “it would have been somewhat more +gallant to have placed the ladies first.” + +“You see, madame, how rightly I spoke when I said I required a +preceptor to guide me in all my sayings and doings here.” + +At this instant the favorite attendant of Madame Danglars entered the +boudoir; approaching her mistress, she spoke some words in an +undertone. Madame Danglars turned very pale, then exclaimed: + +“I cannot believe it; the thing is impossible.” + +“I assure you, madame,” replied the woman, “it is as I have said.” + +Turning impatiently towards her husband, Madame Danglars demanded, “Is +this true?” + +“Is what true, madame?” inquired Danglars, visibly agitated. + +“What my maid tells me.” + +“But what does she tell you?” + +“That when my coachman was about to harness the horses to my carriage, +he discovered that they had been removed from the stables without his +knowledge. I desire to know what is the meaning of this?” + +“Be kind enough, madame, to listen to me,” said Danglars. + +“Oh, yes; I will listen, monsieur, for I am most curious to hear what +explanation you will give. These two gentlemen shall decide between us; +but, first, I will state the case to them. Gentlemen,” continued the +baroness, “among the ten horses in the stables of Baron Danglars, are +two that belong exclusively to me—a pair of the handsomest and most +spirited creatures to be found in Paris. But to you, at least, M. +Debray, I need not give a further description, because to you my +beautiful pair of dappled grays were well known. Well, I had promised +Madame de Villefort the loan of my carriage to drive tomorrow to the +Bois; but when my coachman goes to fetch the grays from the stables +they are gone—positively gone. No doubt M. Danglars has sacrificed them +to the selfish consideration of gaining some thousands of paltry +francs. Oh, what a detestable crew they are, these mercenary +speculators!” + +“Madame,” replied Danglars, “the horses were not sufficiently quiet for +you; they were scarcely four years old, and they made me extremely +uneasy on your account.” + +“Nonsense,” retorted the baroness; “you could not have entertained any +alarm on the subject, because you are perfectly well aware that I have +had for a month in my service the very best coachman in Paris. But, +perhaps, you have disposed of the coachman as well as the horses?” + +“My dear love, pray do not say any more about them, and I promise you +another pair exactly like them in appearance, only more quiet and +steady.” + +The baroness shrugged her shoulders with an air of ineffable contempt, +while her husband, affecting not to observe this unconjugal gesture, +turned towards Monte Cristo and said,—“Upon my word, count, I am quite +sorry not to have met you sooner. You are setting up an establishment, +of course?” + +“Why, yes,” replied the count. + +“I should have liked to have made you the offer of these horses. I have +almost given them away, as it is; but, as I before said, I was anxious +to get rid of them upon any terms. They were only fit for a young man.” + +“I am much obliged by your kind intentions towards me,” said Monte +Cristo; “but this morning I purchased a very excellent pair of +carriage-horses, and I do not think they were dear. There they are. +Come, M. Debray, you are a connoisseur, I believe, let me have your +opinion upon them.” + +As Debray walked towards the window, Danglars approached his wife. + +“I could not tell you before others,” said he in a low tone, “the +reason of my parting with the horses; but a most enormous price was +offered me this morning for them. Some madman or fool, bent upon +ruining himself as fast as he can, actually sent his steward to me to +purchase them at any cost; and the fact is, I have gained 16,000 francs +by the sale of them. Come, don’t look so angry, and you shall have +4,000 francs of the money to do what you like with, and Eugénie shall +have 2,000. There, what do you think now of the affair? Wasn’t I right +to part with the horses?” + +Madame Danglars surveyed her husband with a look of withering contempt. + +“Great heavens?” suddenly exclaimed Debray. + +“What is it?” asked the baroness. + +“I cannot be mistaken; there are your horses! The very animals we were +speaking of, harnessed to the count’s carriage!” + +“My dappled grays?” demanded the baroness, springing to the window. +“’Tis indeed they!” said she. + +Danglars looked absolutely stupefied. + +“How very singular,” cried Monte Cristo with well-feigned astonishment. + +“I cannot believe it,” murmured the banker. Madame Danglars whispered a +few words in the ear of Debray, who approached Monte Cristo, saying, +“The baroness wishes to know what you paid her husband for the horses.” + +“I scarcely know,” replied the count; “it was a little surprise +prepared for me by my steward, and cost me—well, somewhere about 30,000 +francs.” + +Debray conveyed the count’s reply to the baroness. Poor Danglars looked +so crest-fallen and discomfited that Monte Cristo assumed a pitying air +towards him. + +“See,” said the count, “how very ungrateful women are. Your kind +attention, in providing for the safety of the baroness by disposing of +the horses, does not seem to have made the least impression on her. But +so it is; a woman will often, from mere wilfulness, prefer that which +is dangerous to that which is safe. Therefore, in my opinion, my dear +baron, the best and easiest way is to leave them to their fancies, and +allow them to act as they please, and then, if any mischief follows, +why, at least, they have no one to blame but themselves.” + +Danglars made no reply; he was occupied in anticipations of the coming +scene between himself and the baroness, whose frowning brow, like that +of Olympic Jove, predicted a storm. Debray, who perceived the gathering +clouds, and felt no desire to witness the explosion of Madame Danglars’ +rage, suddenly recollected an appointment, which compelled him to take +his leave; while Monte Cristo, unwilling by prolonging his stay to +destroy the advantages he hoped to obtain, made a farewell bow and +departed, leaving Danglars to endure the angry reproaches of his wife. + +20347m + + + +“Excellent,” murmured Monte Cristo to himself, as he came away. “All +has gone according to my wishes. The domestic peace of this family is +henceforth in my hands. Now, then, to play another master-stroke, by +which I shall gain the heart of both husband and wife—delightful! +Still,” added he, “amid all this, I have not yet been presented to +Mademoiselle Eugénie Danglars, whose acquaintance I should have been +glad to make. But,” he went on with his peculiar smile, “I am here in +Paris, and have plenty of time before me—by and by will do for that.” + +With these reflections he entered his carriage and returned home. Two +hours afterwards, Madame Danglars received a most flattering epistle +from the count, in which he entreated her to receive back her favorite +“dappled grays,” protesting that he could not endure the idea of making +his entry into the Parisian world of fashion with the knowledge that +his splendid equipage had been obtained at the price of a lovely +woman’s regrets. The horses were sent back wearing the same harness she +had seen on them in the morning; only, by the count’s orders, in the +centre of each rosette that adorned either side of their heads, had +been fastened a large diamond. + +To Danglars Monte Cristo also wrote, requesting him to excuse the +whimsical gift of a capricious millionaire, and to beg the baroness to +pardon the Eastern fashion adopted in the return of the horses. + +During the evening, Monte Cristo quitted Paris for Auteuil, accompanied +by Ali. The following day, about three o’clock, a single blow struck on +the gong summoned Ali to the presence of the count. + +“Ali,” observed his master, as the Nubian entered the chamber, “you +have frequently explained to me how more than commonly skilful you are +in throwing the lasso, have you not?” + +Ali drew himself up proudly, and then returned a sign in the +affirmative. + +“I thought I did not mistake. With your lasso you could stop an ox?” + +Again Ali repeated his affirmative gesture. + +“Or a tiger?” + +Ali bowed his head in token of assent. + +“A lion even?” + +Ali sprung forwards, imitating the action of one throwing the lasso, +then of a strangled lion. + +“I understand,” said Monte Cristo; “you wish to tell me you have hunted +the lion?” + +Ali smiled with triumphant pride as he signified that he had indeed +both chased and captured many lions. + +“But do you believe you could arrest the progress of two horses rushing +forwards with ungovernable fury?” + +The Nubian smiled. + +“It is well,” said Monte Cristo. “Then listen to me. Ere long a +carriage will dash past here, drawn by the pair of dappled gray horses +you saw me with yesterday; now, at the risk of your own life, you must +manage to stop those horses before my door.” + +Ali descended to the street, and marked a straight line on the pavement +immediately at the entrance of the house, and then pointed out the line +he had traced to the count, who was watching him. The count patted him +gently on the shoulder, his usual mode of praising Ali, who, pleased +and gratified with the commission assigned him, walked calmly towards a +projecting stone forming the angle of the street and house, and, +seating himself thereon, began to smoke his chibouque, while Monte +Cristo re-entered his dwelling, perfectly assured of the success of his +plan. + +Still, as five o’clock approached, and the carriage was momentarily +expected by the count, the indication of more than common impatience +and uneasiness might be observed in his manner. He stationed himself in +a room commanding a view of the street, pacing the chamber with +restless steps, stopping merely to listen from time to time for the +sound of approaching wheels, then to cast an anxious glance on Ali; but +the regularity with which the Nubian puffed forth the smoke of his +chibouque proved that he at least was wholly absorbed in the enjoyment +of his favorite occupation. + +Suddenly a distant sound of rapidly advancing wheels was heard, and +almost immediately a carriage appeared, drawn by a pair of wild, +ungovernable horses, while the terrified coachman strove in vain to +restrain their furious speed. + +In the vehicle was a young woman and a child of about seven or eight +clasped in each other’s arms. Terror seemed to have deprived them even +of the power of uttering a cry. The carriage creaked and rattled as it +flew over the rough stones, and the slightest obstacle under the wheels +would have caused disaster; but it kept on in the middle of the road, +and those who saw it pass uttered cries of terror. + +Ali suddenly cast aside his chibouque, drew the lasso from his pocket, +threw it so skilfully as to catch the forelegs of the near horse in its +triple fold, and suffered himself to be dragged on for a few steps by +the violence of the shock, then the animal fell over on the pole, which +snapped, and therefore prevented the other horse from pursuing its way. +Gladly availing himself of this opportunity, the coachman leaped from +his box; but Ali had promptly seized the nostrils of the second horse, +and held them in his iron grasp, till the beast, snorting with pain, +sunk beside his companion. + +All this was achieved in much less time than is occupied in the +recital. The brief space had, however, been sufficient for a man, +followed by a number of servants, to rush from the house before which +the accident had occurred, and, as the coachman opened the door of the +carriage, to take from it a lady who was convulsively grasping the +cushions with one hand, while with the other she pressed to her bosom +the young boy, who had lost consciousness. Monte Cristo carried them +both to the salon, and deposited them on a sofa. + +“Compose yourself, madame,” said he; “all danger is over.” The woman +looked up at these words, and, with a glance far more expressive than +any entreaties could have been, pointed to her child, who still +continued insensible. “I understand the nature of your alarms, madame,” +said the count, carefully examining the child, “but I assure you there +is not the slightest occasion for uneasiness; your little charge has +not received the least injury; his insensibility is merely the effects +of terror, and will soon pass.” + +“Are you quite sure you do not say so to tranquillize my fears? See how +deadly pale he is! My child, my darling Edward; speak to your +mother—open your dear eyes and look on me once again! Oh, sir, in pity +send for a physician; my whole fortune shall not be thought too much +for the recovery of my boy.” + +With a calm smile and a gentle wave of the hand, Monte Cristo signed to +the distracted mother to lay aside her apprehensions; then, opening a +casket that stood near, he drew forth a phial of Bohemian glass +incrusted with gold, containing a liquid of the color of blood, of +which he let fall a single drop on the child’s lips. Scarcely had it +reached them, ere the boy, though still pale as marble, opened his +eyes, and eagerly gazed around him. At this, the delight of the mother +was almost frantic. + +“Where am I?” exclaimed she; “and to whom am I indebted for so happy a +termination to my late dreadful alarm?” + +“Madame,” answered the count, “you are under the roof of one who +esteems himself most fortunate in having been able to save you from a +further continuance of your sufferings.” + +“My wretched curiosity has brought all this about,” pursued the lady. +“All Paris rung with the praises of Madame Danglars’ beautiful horses, +and I had the folly to desire to know whether they really merited the +high praise given to them.” + +“Is it possible,” exclaimed the count with well-feigned astonishment, +“that these horses belong to the baroness?” + +“They do, indeed. May I inquire if you are acquainted with Madame +Danglars?” + +20351m + + + +“I have that honor; and my happiness at your escape from the danger +that threatened you is redoubled by the consciousness that I have been +the unwilling and the unintentional cause of all the peril you have +incurred. I yesterday purchased these horses of the baron; but as the +baroness evidently regretted parting with them, I ventured to send them +back to her, with a request that she would gratify me by accepting them +from my hands.” + +“You are, then, doubtless, the Count of Monte Cristo, of whom Hermine +has talked to me so much?” + +“You have rightly guessed, madame,” replied the count. + +“And I am Madame Héloïse de Villefort.” + +The count bowed with the air of a person who hears a name for the first +time. + +“How grateful will M. de Villefort be for all your goodness; how +thankfully will he acknowledge that to you alone he owes the existence +of his wife and child! Most certainly, but for the prompt assistance of +your intrepid servant, this dear child and myself must both have +perished.” + +“Indeed, I still shudder at the fearful danger you were placed in.” + +“I trust you will allow me to recompense worthily the devotion of your +man.” + +“I beseech you, madame,” replied Monte Cristo “not to spoil Ali, either +by too great praise or rewards. I cannot allow him to acquire the habit +of expecting to be recompensed for every trifling service he may +render. Ali is my slave, and in saving your life he was but discharging +his duty to me.” + +“Nay,” interposed Madame de Villefort, on whom the authoritative style +adopted by the count made a deep impression, “nay, but consider that to +preserve my life he has risked his own.” + +“His life, madame, belongs not to him; it is mine, in return for my +having myself saved him from death.” + +Madame de Villefort made no further reply; her mind was utterly +absorbed in the contemplation of the person who, from the first instant +she saw him, had made so powerful an impression on her. + +During the evident preoccupation of Madame de Villefort, Monte Cristo +scrutinized the features and appearance of the boy she kept folded in +her arms, lavishing on him the most tender endearments. The child was +small for his age, and unnaturally pale. A mass of straight black hair, +defying all attempts to train or curl it, fell over his projecting +forehead, and hung down to his shoulders, giving increased vivacity to +eyes already sparkling with a youthful love of mischief and fondness +for every forbidden enjoyment. His mouth was large, and the lips, which +had not yet regained their color, were particularly thin; in fact, the +deep and crafty look, giving a predominant expression to the child’s +face, belonged rather to a boy of twelve or fourteen than to one so +young. His first movement was to free himself by a violent push from +the encircling arms of his mother, and to rush forward to the casket +from whence the count had taken the phial of elixir; then, without +asking permission of anyone, he proceeded, in all the wilfulness of a +spoiled child unaccustomed to restrain either whims or caprices, to +pull the corks out of all the bottles. + +“Touch nothing, my little friend,” cried the count eagerly; “some of +those liquids are not only dangerous to taste, but even to inhale.” + +Madame de Villefort became very pale, and, seizing her son’s arm, drew +him anxiously toward her; but, once satisfied of his safety, she also +cast a brief but expressive glance on the casket, which was not lost +upon the count. At this moment Ali entered. At sight of him Madame de +Villefort uttered an expression of pleasure, and, holding the child +still closer towards her, she said: + +“Edward, dearest, do you see that good man? He has shown very great +courage and resolution, for he exposed his own life to stop the horses +that were running away with us, and would certainly have dashed the +carriage to pieces. Thank him, then, my child, in your very best +manner; for, had he not come to our aid, neither you nor I would have +been alive to speak our thanks.” + +The child stuck out his lips and turned away his head in a disdainful +manner, saying, “He’s too ugly.” + +20353m + + + +The count smiled as if the child bade fair to realize his hopes, while +Madame de Villefort reprimanded her son with a gentleness and +moderation very far from conveying the least idea of a fault having +been committed. + +“This lady,” said the Count, speaking to Ali in the Arabic language, +“is desirous that her son should thank you for saving both their lives; +but the boy refuses, saying you are too ugly.” + +Ali turned his intelligent countenance towards the boy, on whom he +gazed without any apparent emotion; but the spasmodic working of the +nostrils showed to the practiced eye of Monte Cristo that the Arab had +been wounded to the heart. + +“Will you permit me to inquire,” said Madame de Villefort, as she arose +to take her leave, “whether you usually reside here?” + +“No, I do not,” replied Monte Cristo; “it is a small place I have +purchased quite lately. My place of abode is No. 30, Avenue des +Champs-Élysées; but I see you have quite recovered from your fright, +and are, no doubt, desirous of returning home. Anticipating your +wishes, I have desired the same horses you came with to be put to one +of my carriages, and Ali, he whom you think so very ugly,” continued +he, addressing the boy with a smiling air, “will have the honor of +driving you home, while your coachman remains here to attend to the +necessary repairs of your calash. As soon as that important business is +concluded, I will have a pair of my own horses harnessed to convey it +direct to Madame Danglars.” + +“I dare not return with those dreadful horses,” said Madame de +Villefort. + +“You will see,” replied Monte Cristo, “that they will be as different +as possible in the hands of Ali. With him they will be gentle and +docile as lambs.” + +Ali had, indeed, given proof of this; for, approaching the animals, who +had been got upon their legs with considerable difficulty, he rubbed +their foreheads and nostrils with a sponge soaked in aromatic vinegar, +and wiped off the sweat and foam that covered their mouths. Then, +commencing a loud whistling noise, he rubbed them well all over their +bodies for several minutes; then, undisturbed by the noisy crowd +collected round the broken carriage, Ali quietly harnessed the pacified +animals to the count’s chariot, took the reins in his hands, and +mounted the box, when to the utter astonishment of those who had +witnessed the ungovernable spirit and maddened speed of the same +horses, he was actually compelled to apply his whip in no very gentle +manner before he could induce them to start; and even then all that +could be obtained from the celebrated “dappled grays,” now changed into +a couple of dull, sluggish, stupid brutes, was a slow, pottering pace, +kept up with so much difficulty that Madame de Villefort was more than +two hours returning to her residence in the Faubourg Saint-Honoré. + +20355m + + + +Scarcely had the first congratulations upon her marvellous escape been +gone through when she wrote the following letter to Madame Danglars:— + +“Dear Hermine,—I have just had a wonderful escape from the most +imminent danger, and I owe my safety to the very Count of Monte Cristo +we were talking about yesterday, but whom I little expected to see +today. I remember how unmercifully I laughed at what I considered your +eulogistic and exaggerated praises of him; but I have now ample cause +to admit that your enthusiastic description of this wonderful man fell +far short of his merits. Your horses got as far as Ranelagh, when they +darted forward like mad things, and galloped away at so fearful a rate, +that there seemed no other prospect for myself and my poor Edward but +that of being dashed to pieces against the first object that impeded +their progress, when a strange-looking man,—an Arab, a negro, or a +Nubian, at least a black of some nation or other—at a signal from the +count, whose domestic he is, suddenly seized and stopped the infuriated +animals, even at the risk of being trampled to death himself; and +certainly he must have had a most wonderful escape. The count then +hastened to us, and took us into his house, where he speedily recalled +my poor Edward to life. He sent us home in his own carriage. Yours will +be returned to you tomorrow. You will find your horses in bad +condition, from the results of this accident; they seem thoroughly +stupefied, as if sulky and vexed at having been conquered by man. The +count, however, has commissioned me to assure you that two or three +days’ rest, with plenty of barley for their sole food during that time, +will bring them back to as fine, that is as terrifying, a condition as +they were in yesterday. + +20356m + + + +Adieu! I cannot return you many thanks for the drive of yesterday; but, +after all, I ought not to blame you for the misconduct of your horses, +more especially as it procured me the pleasure of an introduction to +the Count of Monte Cristo,—and certainly that illustrious personage, +apart from the millions he is said to be so very anxious to dispose of, +seemed to me one of those curiously interesting problems I, for one, +delight in solving at any risk, even if it were to necessitate another +drive to the Bois behind your horses. + +Edward endured the accident with miraculous courage—he did not utter a +single cry, but fell lifeless into my arms; nor did a tear fall from +his eyes after it was over. I doubt not you will consider these praises +the result of blind maternal affection, but there is a soul of iron in +that delicate, fragile body. Valentine sends many affectionate +remembrances to your dear Eugénie. I embrace you with all my heart. + +Héloïse de Villefort. + +P.S.—Do pray contrive some means for me to meet the Count of Monte +Cristo at your house. I must and will see him again. I have just made +M. de Villefort promise to call on him, and I hope the visit will be +returned. + +That night the adventure at Auteuil was talked of everywhere. Albert +related it to his mother; Château-Renaud recounted it at the Jockey +Club, and Debray detailed it at length in the salons of the minister; +even Beauchamp accorded twenty lines in his journal to the relation of +the count’s courage and gallantry, thereby celebrating him as the +greatest hero of the day in the eyes of all the feminine members of the +aristocracy. + +Vast was the crowd of visitors and inquiring friends who left their +names at the residence of Madame de Villefort, with the design of +renewing their visit at the right moment, of hearing from her lips all +the interesting circumstances of this most romantic adventure. + +As for M. de Villefort, he fulfilled the predictions of Héloïse to the +letter,—donned his dress suit, drew on a pair of white gloves, ordered +the servants to attend the carriage dressed in their full livery, and +drove that same night to No. 30 in the Avenue des Champs-Élysées. + + + +VOLUME THREE + +30009m + + + +30011m + + + + + Chapter 48. Ideology + +If the Count of Monte Cristo had been for a long time familiar with the +ways of Parisian society, he would have appreciated better the +significance of the step which M. de Villefort had taken. Standing well +at court, whether the king regnant was of the older or younger branch, +whether the government was doctrinaire liberal, or conservative; looked +upon by all as a man of talent, since those who have never experienced +a political check are generally so regarded; hated by many, but warmly +supported by others, without being really liked by anybody, M. de +Villefort held a high position in the magistracy, and maintained his +eminence like a Harlay or a Molé. His drawing-room, under the +regenerating influence of a young wife and a daughter by his first +marriage, scarcely eighteen, was still one of the well-regulated Paris +salons where the worship of traditional customs and the observance of +rigid etiquette were carefully maintained. A freezing politeness, a +strict fidelity to government principles, a profound contempt for +theories and theorists, a deep-seated hatred of ideality,—these were +the elements of private and public life displayed by M. de Villefort. + +30023m + + + +M. de Villefort was not only a magistrate, he was almost a diplomatist. +His relations with the former court, of which he always spoke with +dignity and respect, made him respected by the new one, and he knew so +many things, that not only was he always carefully considered, but +sometimes consulted. Perhaps this would not have been so had it been +possible to get rid of M. de Villefort; but, like the feudal barons who +rebelled against their sovereign, he dwelt in an impregnable fortress. +This fortress was his post as king’s attorney, all the advantages of +which he exploited with marvellous skill, and which he would not have +resigned but to be made deputy, and thus to replace neutrality by +opposition. + +Ordinarily M. de Villefort made and returned very few visits. His wife +visited for him, and this was the received thing in the world, where +the weighty and multifarious occupations of the magistrate were +accepted as an excuse for what was really only calculated pride, a +manifestation of professed superiority—in fact, the application of the +axiom, _Pretend to think well of yourself, and the world will think +well of you_, an axiom a hundred times more useful in society nowadays +than that of the Greeks, “Know thyself,” a knowledge for which, in our +days, we have substituted the less difficult and more advantageous +science of _knowing others_. + +To his friends M. de Villefort was a powerful protector; to his +enemies, he was a silent, but bitter opponent; for those who were +neither the one nor the other, he was a statue of the law-made man. He +had a haughty bearing, a look either steady and impenetrable or +insolently piercing and inquisitorial. Four successive revolutions had +built and cemented the pedestal upon which his fortune was based. + +M. de Villefort had the reputation of being the least curious and the +least wearisome man in France. He gave a ball every year, at which he +appeared for a quarter of an hour only,—that is to say, five-and-forty +minutes less than the king is visible at his balls. He was never seen +at the theatres, at concerts, or in any place of public resort. +Occasionally, but seldom, he played at whist, and then care was taken +to select partners worthy of him—sometimes they were ambassadors, +sometimes archbishops, or sometimes a prince, or a president, or some +dowager duchess. + +Such was the man whose carriage had just now stopped before the Count +of Monte Cristo’s door. The valet de chambre announced M. de Villefort +at the moment when the count, leaning over a large table, was tracing +on a map the route from St. Petersburg to China. + +The procureur entered with the same grave and measured step he would +have employed in entering a court of justice. He was the same man, or +rather the development of the same man, whom we have heretofore seen as +assistant attorney at Marseilles. Nature, according to her way, had +made no deviation in the path he had marked out for himself. From being +slender he had now become meagre; once pale, he was now yellow; his +deep-set eyes were hollow, and the gold spectacles shielding his eyes +seemed to be an integral portion of his face. He dressed entirely in +black, with the exception of his white tie, and his funeral appearance +was only mitigated by the slight line of red ribbon which passed almost +imperceptibly through his button-hole, and appeared like a streak of +blood traced with a delicate brush. + +Although master of himself, Monte Cristo, scrutinized with +irrepressible curiosity the magistrate whose salute he returned, and +who, distrustful by habit, and especially incredulous as to social +prodigies, was much more despised to look upon “the noble stranger,” as +Monte Cristo was already called, as an adventurer in search of new +fields, or an escaped criminal, rather than as a prince of the Holy +See, or a sultan of the _Thousand and One Nights_. + +“Sir,” said Villefort, in the squeaky tone assumed by magistrates in +their oratorical periods, and of which they cannot, or will not, divest +themselves in society, “sir, the signal service which you yesterday +rendered to my wife and son has made it a duty for me to offer you my +thanks. I have come, therefore, to discharge this duty, and to express +to you my overwhelming gratitude.” + +And as he said this, the “eye severe” of the magistrate had lost +nothing of its habitual arrogance. He spoke in a voice of the +procureur-general, with the rigid inflexibility of neck and shoulders +which caused his flatterers to say (as we have before observed) that he +was the living statue of the law. + +“Monsieur,” replied the count, with a chilling air, “I am very happy to +have been the means of preserving a son to his mother, for they say +that the sentiment of maternity is the most holy of all; and the good +fortune which occurred to me, monsieur, might have enabled you to +dispense with a duty which, in its discharge, confers an undoubtedly +great honor; for I am aware that M. de Villefort is not usually lavish +of the favor which he now bestows on me,—a favor which, however +estimable, is unequal to the satisfaction which I have in my own +consciousness.” + +Villefort, astonished at this reply, which he by no means expected, +started like a soldier who feels the blow levelled at him over the +armor he wears, and a curl of his disdainful lip indicated that from +that moment he noted in the tablets of his brain that the Count of +Monte Cristo was by no means a highly bred gentleman. + +He glanced around, in order to seize on something on which the +conversation might turn, and seemed to fall easily on a topic. He saw +the map which Monte Cristo had been examining when he entered, and +said: + +“You seem geographically engaged, sir? It is a rich study for you, who, +as I learn, have seen as many lands as are delineated on this map.” + +“Yes, sir,” replied the count; “I have sought to make of the human +race, taken in the mass, what you practice every day on individuals—a +physiological study. I have believed it was much easier to descend from +the whole to a part than to ascend from a part to the whole. It is an +algebraic axiom, which makes us proceed from a known to an unknown +quantity, and not from an unknown to a known; but sit down, sir, I beg +of you.” + +Monte Cristo pointed to a chair, which the procureur was obliged to +take the trouble to move forwards himself, while the count merely fell +back into his own, on which he had been kneeling when M. Villefort +entered. Thus the count was halfway turned towards his visitor, having +his back towards the window, his elbow resting on the geographical +chart which furnished the theme of conversation for the moment,—a +conversation which assumed, as in the case of the interviews with +Danglars and Morcerf, a turn analogous to the persons, if not to the +situation. + +“Ah, you philosophize,” replied Villefort, after a moment’s silence, +during which, like a wrestler who encounters a powerful opponent, he +took breath; “well, sir, really, if, like you, I had nothing else to +do, I should seek a more amusing occupation.” + +“Why, in truth, sir,” was Monte Cristo’s reply, “man is but an ugly +caterpillar for him who studies him through a solar microscope; but you +said, I think, that I had nothing else to do. Now, really, let me ask, +sir, have you?—do you believe you have anything to do? or to speak in +plain terms, do you really think that what you do deserves being called +anything?” + +Villefort’s astonishment redoubled at this second thrust so forcibly +made by his strange adversary. It was a long time since the magistrate +had heard a paradox so strong, or rather, to say the truth more +exactly, it was the first time he had ever heard of it. The procureur +exerted himself to reply. + +“Sir,” he responded, “you are a stranger, and I believe you say +yourself that a portion of your life has been spent in Oriental +countries, so you are not aware how human justice, so expeditious in +barbarous countries, takes with us a prudent and well-studied course.” + +“Oh, yes—yes, I do, sir; it is the _pede claudo_ of the ancients. I +know all that, for it is with the justice of all countries especially +that I have occupied myself—it is with the criminal procedure of all +nations that I have compared natural justice, and I must say, sir, that +it is the law of primitive nations, that is, the law of retaliation, +that I have most frequently found to be according to the law of God.” + +“If this law were adopted, sir,” said the procureur, “it would greatly +simplify our legal codes, and in that case the magistrates would not +(as you just observed) have much to do.” + +“It may, perhaps, come to this in time,” observed Monte Cristo; “you +know that human inventions march from the complex to the simple, and +simplicity is always perfection.” + +“In the meanwhile,” continued the magistrate, “our codes are in full +force, with all their contradictory enactments derived from Gallic +customs, Roman laws, and Frank usages; the knowledge of all which, you +will agree, is not to be acquired without extended labor; it needs +tedious study to acquire this knowledge, and, when acquired, a strong +power of brain to retain it.” + +“I agree with you entirely, sir; but all that even you know with +respect to the French code, I know, not only in reference to that code, +but as regards the codes of all nations. The English, Turkish, +Japanese, Hindu laws, are as familiar to me as the French laws, and +thus I was right, when I said to you, that relatively (you know that +everything is relative, sir)—that relatively to what I have done, you +have very little to do; but that relatively to all I have learned, you +have yet a great deal to learn.” + +“But with what motive have you learned all this?” inquired Villefort, +in astonishment. + +Monte Cristo smiled. + +“Really, sir,” he observed, “I see that in spite of the reputation +which you have acquired as a superior man, you look at everything from +the material and vulgar view of society, beginning with man, and ending +with man—that is to say, in the most restricted, most narrow view which +it is possible for human understanding to embrace.” + +“Pray, sir, explain yourself,” said Villefort, more and more +astonished, “I really do—not—understand you—perfectly.” + +“I say, sir, that with the eyes fixed on the social organization of +nations, you see only the springs of the machine, and lose sight of the +sublime workman who makes them act; I say that you do not recognize +before you and around you any but those office-holders whose +commissions have been signed by a minister or king; and that the men +whom God has put above those office-holders, ministers, and kings, by +giving them a mission to follow out, instead of a post to fill—I say +that they escape your narrow, limited field of observation. It is thus +that human weakness fails, from its debilitated and imperfect organs. +Tobias took the angel who restored him to light for an ordinary young +man. The nations took Attila, who was doomed to destroy them, for a +conqueror similar to other conquerors, and it was necessary for both to +reveal their missions, that they might be known and acknowledged; one +was compelled to say, ‘I am the angel of the Lord’; and the other, ‘I +am the hammer of God,’ in order that the divine essence in both might +be revealed.” + +“Then,” said Villefort, more and more amazed, and really supposing he +was speaking to a mystic or a madman, “you consider yourself as one of +those extraordinary beings whom you have mentioned?” + +“And why not?” said Monte Cristo coldly. + +“Your pardon, sir,” replied Villefort, quite astounded, “but you will +excuse me if, when I presented myself to you, I was unaware that I +should meet with a person whose knowledge and understanding so far +surpass the usual knowledge and understanding of men. It is not usual +with us corrupted wretches of civilization to find gentlemen like +yourself, possessors, as you are, of immense fortune—at least, so it is +said—and I beg you to observe that I do not inquire, I merely +repeat;—it is not usual, I say, for such privileged and wealthy beings +to waste their time in speculations on the state of society, in +philosophical reveries, intended at best to console those whom fate has +disinherited from the goods of this world.” + +“Really, sir,” retorted the count, “have you attained the eminent +situation in which you are, without having admitted, or even without +having met with exceptions? and do you never use your eyes, which must +have acquired so much _finesse_ and certainty, to divine, at a glance, +the kind of man by whom you are confronted? Should not a magistrate be +not merely the best administrator of the law, but the most crafty +expounder of the chicanery of his profession, a steel probe to search +hearts, a touchstone to try the gold which in each soul is mingled with +more or less of alloy?” + +“Sir,” said Villefort, “upon my word, you overcome me. I really never +heard a person speak as you do.” + +“Because you remain eternally encircled in a round of general +conditions, and have never dared to raise your wings into those upper +spheres which God has peopled with invisible or exceptional beings.” + +“And you allow then, sir, that spheres exist, and that these marked and +invisible beings mingle amongst us?” + +“Why should they not? Can you see the air you breathe, and yet without +which you could not for a moment exist?” + +“Then we do not see those beings to whom you allude?” + +“Yes, we do; you see them whenever God pleases to allow them to assume +a material form. You touch them, come in contact with them, speak to +them, and they reply to you.” + +“Ah,” said Villefort, smiling, “I confess I should like to be warned +when one of these beings is in contact with me.” + +“You have been served as you desire, monsieur, for you were warned just +now, and I now again warn you.” + +“Then you yourself are one of these marked beings?” + +“Yes, monsieur, I believe so; for until now, no man has found himself +in a position similar to mine. The dominions of kings are limited +either by mountains or rivers, or a change of manners, or an alteration +of language. My kingdom is bounded only by the world, for I am not an +Italian, or a Frenchman, or a Hindu, or an American, or a Spaniard—I am +a cosmopolite. No country can say it saw my birth. God alone knows what +country will see me die. I adopt all customs, speak all languages. You +believe me to be a Frenchman, for I speak French with the same facility +and purity as yourself. Well, Ali, my Nubian, believes me to be an +Arab; Bertuccio, my steward, takes me for a Roman; Haydée, my slave, +thinks me a Greek. You may, therefore, comprehend, that being of no +country, asking no protection from any government, acknowledging no man +as my brother, not one of the scruples that arrest the powerful, or the +obstacles which paralyze the weak, paralyzes or arrests me. I have only +two adversaries—I will not say two conquerors, for with perseverance I +subdue even them,—they are time and distance. There is a third, and the +most terrible—that is my condition as a mortal being. This alone can +stop me in my onward career, before I have attained the goal at which I +aim, for all the rest I have reduced to mathematical terms. What men +call the chances of fate—namely, ruin, change, circumstances—I have +fully anticipated, and if any of these should overtake me, yet it will +not overwhelm me. Unless I die, I shall always be what I am, and +therefore it is that I utter the things you have never heard, even from +the mouths of kings—for kings have need, and other persons have fear of +you. For who is there who does not say to himself, in a society as +incongruously organized as ours, ‘Perhaps some day I shall have to do +with the king’s attorney’?” + +“But can you not say that, sir? The moment you become an inhabitant of +France, you are naturally subjected to the French law.” + +“I know it sir,” replied Monte Cristo; “but when I visit a country I +begin to study, by all the means which are available, the men from whom +I may have anything to hope or to fear, till I know them as well as, +perhaps better than, they know themselves. It follows from this, that +the king’s attorney, be he who he may, with whom I should have to deal, +would assuredly be more embarrassed than I should.” + +“That is to say,” replied Villefort with hesitation, “that human nature +being weak, every man, according to your creed, has committed faults.” + +“Faults or crimes,” responded Monte Cristo with a negligent air. + +“And that you alone, amongst the men whom you do not recognize as your +brothers—for you have said so,” observed Villefort in a tone that +faltered somewhat—“you alone are perfect.” + +“No, not perfect,” was the count’s reply; “only impenetrable, that’s +all. But let us leave off this strain, sir, if the tone of it is +displeasing to you; I am no more disturbed by your justice than are you +by my second-sight.” + +“No, no,—by no means,” said Villefort, who was afraid of seeming to +abandon his ground. “No; by your brilliant and almost sublime +conversation you have elevated me above the ordinary level; we no +longer talk, we rise to dissertation. But you know how the theologians +in their collegiate chairs, and philosophers in their controversies, +occasionally say cruel truths; let us suppose for the moment that we +are theologizing in a social way, or even philosophically, and I will +say to you, rude as it may seem, ‘My brother, you sacrifice greatly to +pride; you may be above others, but above you there is God.’” + +30029m + + + +“Above us all, sir,” was Monte Cristo’s response, in a tone and with an +emphasis so deep that Villefort involuntarily shuddered. “I have my +pride for men—serpents always ready to threaten everyone who would pass +without crushing them under foot. But I lay aside that pride before +God, who has taken me from nothing to make me what I am.” + +“Then, count, I admire you,” said Villefort, who, for the first time in +this strange conversation, used the aristocratic form to the unknown +personage, whom, until now, he had only called monsieur. “Yes, and I +say to you, if you are really strong, really superior, really pious, or +impenetrable, which you were right in saying amounts to the same +thing—then be proud, sir, for that is the characteristic of +predominance. Yet you have unquestionably some ambition.” + +“I have, sir.” + +“And what may it be?” + +“I too, as happens to every man once in his life, have been taken by +Satan into the highest mountain in the earth, and when there he showed +me all the kingdoms of the world, and as he said before, so said he to +me, ‘Child of earth, what wouldst thou have to make thee adore me?’ I +reflected long, for a gnawing ambition had long preyed upon me, and +then I replied, ‘Listen,—I have always heard of Providence, and yet I +have never seen him, or anything that resembles him, or which can make +me believe that he exists. I wish to be Providence myself, for I feel +that the most beautiful, noblest, most sublime thing in the world, is +to recompense and punish.’ Satan bowed his head, and groaned. ‘You +mistake,’ he said, ‘Providence does exist, only you have never seen +him, because the child of God is as invisible as the parent. You have +seen nothing that resembles him, because he works by secret springs, +and moves by hidden ways. All I can do for you is to make you one of +the agents of that Providence.’ The bargain was concluded. I may +sacrifice my soul, but what matters it?” added Monte Cristo. “If the +thing were to do again, I would again do it.” + +Villefort looked at Monte Cristo with extreme amazement. + +“Count,” he inquired, “have you any relations?” + +“No, sir, I am alone in the world.” + +“So much the worse.” + +“Why?” asked Monte Cristo. + +“Because then you might witness a spectacle calculated to break down +your pride. You say you fear nothing but death?” + +“I did not say that I feared it; I only said that death alone could +check the execution of my plans.” + +“And old age?” + +“My end will be achieved before I grow old.” + +“And madness?” + +“I have been nearly mad; and you know the axiom,—_non bis in idem_. It +is an axiom of criminal law, and, consequently, you understand its full +application.” + +30031m + + + +“Sir,” continued Villefort, “there is something to fear besides death, +old age, and madness. For instance, there is apoplexy—that +lightning-stroke which strikes but does not destroy you, and yet which +brings everything to an end. You are still yourself as now, and yet you +are yourself no longer; you who, like Ariel, verge on the angelic, are +but an inert mass, which, like Caliban, verges on the brutal; and this +is called in human tongues, as I tell you, neither more nor less than +apoplexy. Come, if so you will, count, and continue this conversation +at my house, any day you may be willing to see an adversary capable of +understanding and anxious to refute you, and I will show you my father, +M. Noirtier de Villefort, one of the most fiery Jacobins of the French +Revolution; that is to say, he had the most remarkable audacity, +seconded by a most powerful organization—a man who has not, perhaps, +like yourself seen all the kingdoms of the earth, but who has helped to +overturn one of the greatest; in fact, a man who believed himself, like +you, one of the envoys, not of God, but of a supreme being; not of +Providence, but of fate. Well, sir, the rupture of a blood-vessel on +the lobe of the brain has destroyed all this, not in a day, not in an +hour, but in a second. M. Noirtier, who, on the previous night, was the +old Jacobin, the old senator, the old Carbonaro, laughing at the +guillotine, the cannon, and the dagger—M. Noirtier, playing with +revolutions—M. Noirtier, for whom France was a vast chess-board, from +which pawns, rooks, knights, and queens were to disappear, so that the +king was checkmated—M. Noirtier, the redoubtable, was the next morning +_poor M. Noirtier_, the helpless old man, at the tender mercies of the +weakest creature in the household, that is, his grandchild, Valentine; +a dumb and frozen carcass, in fact, living painlessly on, that time may +be given for his frame to decompose without his consciousness of its +decay.” + +“Alas, sir,” said Monte Cristo “this spectacle is neither strange to my +eye nor my thought. I am something of a physician, and have, like my +fellows, sought more than once for the soul in living and in dead +matter; yet, like Providence, it has remained invisible to my eyes, +although present to my heart. A hundred writers since Socrates, Seneca, +St. Augustine, and Gall, have made, in verse and prose, the comparison +you have made, and yet I can well understand that a father’s sufferings +may effect great changes in the mind of a son. I will call on you, sir, +since you bid me contemplate, for the advantage of my pride, this +terrible spectacle, which must have been so great a source of sorrow to +your family.” + +“It would have been so unquestionably, had not God given me so large a +compensation. In contrast with the old man, who is dragging his way to +the tomb, are two children just entering into life—Valentine, the +daughter by my first wife—Mademoiselle Renée de Saint-Méran—and Edward, +the boy whose life you have this day saved.” + +“And what is your deduction from this compensation, sir?” inquired +Monte Cristo. + +“My deduction is,” replied Villefort, “that my father, led away by his +passions, has committed some fault unknown to human justice, but marked +by the justice of God. That God, desirous in his mercy to punish but +one person, has visited this justice on him alone.” + +Monte Cristo with a smile on his lips, uttered in the depths of his +soul a groan which would have made Villefort fly had he but heard it. + +“Adieu, sir,” said the magistrate, who had risen from his seat; “I +leave you, bearing a remembrance of you—a remembrance of esteem, which +I hope will not be disagreeable to you when you know me better; for I +am not a man to bore my friends, as you will learn. Besides, you have +made an eternal friend of Madame de Villefort.” + +The count bowed, and contented himself with seeing Villefort to the +door of his cabinet, the procureur being escorted to his carriage by +two footmen, who, on a signal from their master, followed him with +every mark of attention. When he had gone, Monte Cristo breathed a +profound sigh, and said: + +“Enough of this poison, let me now seek the antidote.” + +Then sounding his bell, he said to Ali, who entered: + +“I am going to madame’s chamber—have the carriage ready at one +o’clock.” + + + + Chapter 49. Haydée + +It will be recollected that the new, or rather old, acquaintances of +the Count of Monte Cristo, residing in the Rue Meslay, were no other +than Maximilian, Julie, and Emmanuel. + +The very anticipations of delight to be enjoyed in his forthcoming +visits—the bright, pure gleam of heavenly happiness it diffused over +the almost deadly warfare in which he had voluntarily engaged, +illumined his whole countenance with a look of ineffable joy and +calmness, as, immediately after Villefort’s departure, his thoughts +flew back to the cheering prospect before him, of tasting, at least, a +brief respite from the fierce and stormy passions of his mind. Even +Ali, who had hastened to obey the Count’s summons, went forth from his +master’s presence in charmed amazement at the unusual animation and +pleasure depicted on features ordinarily so stern and cold; while, as +though dreading to put to flight the agreeable ideas hovering over his +patron’s meditations, whatever they were, the faithful Nubian walked on +tiptoe towards the door, holding his breath, lest its faintest sound +should dissipate his master’s happy reverie. + +It was noon, and Monte Cristo had set apart one hour to be passed in +the apartments of Haydée, as though his oppressed spirit could not all +at once admit the feeling of pure and unmixed joy, but required a +gradual succession of calm and gentle emotions to prepare his mind to +receive full and perfect happiness, in the same manner as ordinary +natures demand to be inured by degrees to the reception of strong or +violent sensations. + +The young Greek, as we have already said, occupied apartments wholly +unconnected with those of the count. The rooms had been fitted up in +strict accordance with Oriental ideas; the floors were covered with the +richest carpets Turkey could produce; the walls hung with brocaded silk +of the most magnificent designs and texture; while around each chamber +luxurious divans were placed, with piles of soft and yielding cushions, +that needed only to be arranged at the pleasure or convenience of such +as sought repose. + +Haydée had three French maids, and one who was a Greek. The first three +remained constantly in a small waiting-room, ready to obey the summons +of a small golden bell, or to receive the orders of the Romaic slave, +who knew just enough French to be able to transmit her mistress’s +wishes to the three other waiting-women; the latter had received most +peremptory instructions from Monte Cristo to treat Haydée with all the +deference they would observe to a queen. + +The young girl herself generally passed her time in the chamber at the +farther end of her apartments. This was a sort of boudoir, circular, +and lighted only from the roof, which consisted of rose-colored glass. +Haydée was reclining upon soft downy cushions, covered with blue satin +spotted with silver; her head, supported by one of her exquisitely +moulded arms, rested on the divan immediately behind her, while the +other was employed in adjusting to her lips the coral tube of a rich +narghile, through whose flexible pipe she drew the smoke fragrant by +its passage through perfumed water. Her attitude, though perfectly +natural for an Eastern woman would, in a European, have been deemed too +full of coquettish straining after effect. + +Her dress, which was that of the women of Epirus, consisted of a pair +of white satin trousers, embroidered with pink roses, displaying feet +so exquisitely formed and so delicately fair, that they might well have +been taken for Parian marble, had not the eye been undeceived by their +movements as they constantly shifted in and out of a pair of little +slippers with upturned toes, beautifully ornamented with gold and +pearls. She wore a blue and white-striped vest, with long open sleeves, +trimmed with silver loops and buttons of pearls, and a sort of bodice, +which, closing only from the centre to the waist, exhibited the whole +of the ivory throat and upper part of the bosom; it was fastened with +three magnificent diamond clasps. The junction of the bodice and +drawers was entirely concealed by one of the many-colored scarves, +whose brilliant hues and rich silken fringe have rendered them so +precious in the eyes of Parisian belles. + +Tilted on one side of her head she had a small cap of gold-colored +silk, embroidered with pearls; while on the other a purple rose mingled +its glowing colors with the luxuriant masses of her hair, of which the +blackness was so intense that it was tinged with blue. + +The extreme beauty of the countenance, that shone forth in loveliness +that mocked the vain attempts of dress to augment it, was peculiarly +and purely Grecian; there were the large, dark, melting eyes, the +finely formed nose, the coral lips, and pearly teeth, that belonged to +her race and country. + +And, to complete the whole, Haydée was in the very springtide and +fulness of youthful charms—she had not yet numbered more than nineteen +or twenty summers. + +Monte Cristo summoned the Greek attendant, and bade her inquire whether +it would be agreeable to her mistress to receive his visit. Haydée’s +only reply was to direct her servant by a sign to withdraw the +tapestried curtain that hung before the door of her boudoir, the +framework of the opening thus made serving as a sort of border to the +graceful tableau presented by the young girl’s picturesque attitude and +appearance. + +As Monte Cristo approached, she leaned upon the elbow of the arm that +held the narghile, and extending to him her other hand, said, with a +smile of captivating sweetness, in the sonorous language spoken by the +women of Athens and Sparta: + +“Why demand permission ere you enter? Are you no longer my master, or +have I ceased to be your slave?” + +Monte Cristo returned her smile. + +“Haydée,” said he, “you well know.” + +“Why do you address me so coldly—so distantly?” asked the young Greek. +“Have I by any means displeased you? Oh, if so, punish me as you will; +but do not—do not speak to me in tones and manner so formal and +constrained.” + +“Haydée,” replied the count, “you know that you are now in France, and +are free.” + +“Free to do what?” asked the young girl. + +“Free to leave me.” + +“Leave you? Why should I leave you?” + +“That is not for me to say; but we are now about to mix in society—to +visit and be visited.” + +“I don’t wish to see anybody but you.” + +“And should you see one whom you could prefer, I would not be so +unjust——” + +“I have never seen anyone I preferred to you, and I have never loved +anyone but you and my father.” + +“My poor child,” replied Monte Cristo, “that is merely because your +father and myself are the only men who have ever talked to you.” + +“I don’t want anybody else to talk to me. My father said I was his +‘joy’—you style me your ‘love,’—and both of you have called me ‘my +child.’” + +“Do you remember your father, Haydée?” + +The young Greek smiled. + +“He is here, and here,” said she, touching her eyes and her heart. + +“And where am I?” inquired Monte Cristo laughingly. + +“You?” cried she, with tones of thrilling tenderness, “you are +everywhere!” Monte Cristo took the delicate hand of the young girl in +his, and was about to raise it to his lips, when the simple child of +nature hastily withdrew it, and presented her cheek. + +“You now understand, Haydée,” said the count, “that from this moment +you are absolutely free; that here you exercise unlimited sway, and are +at liberty to lay aside or continue the costume of your country, as it +may suit your inclination. Within this mansion you are absolute +mistress of your actions, and may go abroad or remain in your +apartments as may seem most agreeable to you. A carriage waits your +orders, and Ali and Myrtho will accompany you whithersoever you desire +to go. There is but one favor I would entreat of you.” + +“Speak.” + +“Guard carefully the secret of your birth. Make no allusion to the +past; nor upon any occasion be induced to pronounce the names of your +illustrious father or ill-fated mother.” + +“I have already told you, my lord, that I shall see no one.” + +“It is possible, Haydée, that so perfect a seclusion, though +conformable with the habits and customs of the East, may not be +practicable in Paris. Endeavor, then, to accustom yourself to our +manner of living in these northern climes as you did to those of Rome, +Florence, Milan, and Madrid; it may be useful to you one of these days, +whether you remain here or return to the East.” + +The young girl raised her tearful eyes towards Monte Cristo as she said +with touching earnestness, “Whether _we_ return to the East, you mean +to say, my lord, do you not?” + +“My child,” returned Monte Cristo “you know full well that whenever we +part, it will be no fault or wish of mine; the tree forsakes not the +flower—the flower falls from the tree.” + +“My lord,” replied Haydée, “I never will leave you, for I am sure I +could not exist without you.” + +“My poor girl, in ten years I shall be old, and you will be still +young.” + +“My father had a long white beard, but I loved him; he was sixty years +old, but to me he was handsomer than all the fine youths I saw.” + +“Then tell me, Haydée, do you believe you shall be able to accustom +yourself to our present mode of life?” + +“Shall I see you?” + +“Every day.” + +“Then what do you fear, my lord?” + +“You might find it dull.” + +“No, my lord. In the morning, I shall rejoice in the prospect of your +coming, and in the evening dwell with delight on the happiness I have +enjoyed in your presence; then too, when alone, I can call forth mighty +pictures of the past, see vast horizons bounded only by the towering +mountains of Pindus and Olympus. Oh, believe me, that when three great +passions, such as sorrow, love, and gratitude fill the heart, _ennui_ +can find no place.” + +“You are a worthy daughter of Epirus, Haydée, and your charming and +poetical ideas prove well your descent from that race of goddesses who +claim your country as their birthplace. Depend on my care to see that +your youth is not blighted, or suffered to pass away in ungenial +solitude; and of this be well assured, that if you love me as a father, +I love you as a child.” + +“You are wrong, my lord. The love I have for you is very different from +the love I had for my father. My father died, but I did not die. If you +were to die, I should die too.” + +The count, with a smile of profound tenderness, extended his hand, and +she carried it to her lips. + +Monte Cristo, thus attuned to the interview he proposed to hold with +Morrel and his family, departed, murmuring as he went these lines of +Pindar, “Youth is a flower of which love is the fruit; happy is he who, +after having watched its silent growth, is permitted to gather and call +it his own.” The carriage was prepared according to orders, and +stepping lightly into it, the count drove off at his usual rapid pace. + + + + Chapter 50. The Morrel Family + +In a very few minutes the count reached No. 7 in the Rue Meslay. The +house was of white stone, and in a small court before it were two small +beds full of beautiful flowers. In the concierge that opened the gate +the count recognized Cocles; but as he had but one eye, and that eye +had become somewhat dim in the course of nine years, Cocles did not +recognize the count. + +The carriages that drove up to the door were compelled to turn, to +avoid a fountain that played in a basin of rockwork,—an ornament that +had excited the jealousy of the whole quarter, and had gained for the +place the appellation of _The Little Versailles_. It is needless to add +that there were gold and silver fish in the basin. The house, with +kitchens and cellars below, had above the ground floor, two stories and +attics. The whole of the property, consisting of an immense workshop, +two pavilions at the bottom of the garden, and the garden itself, had +been purchased by Emmanuel, who had seen at a glance that he could make +of it a profitable speculation. He had reserved the house and half the +garden, and building a wall between the garden and the workshops, had +let them upon lease with the pavilions at the bottom of the garden. So +that for a trifling sum he was as well lodged, and as perfectly shut +out from observation, as the inhabitants of the finest mansion in the +Faubourg St. Germain. + +The breakfast-room was finished in oak; the salon in mahogany, and the +furnishings were of blue velvet; the bedroom was in citronwood and +green damask. There was a study for Emmanuel, who never studied, and a +music-room for Julie, who never played. The whole of the second story +was set apart for Maximilian; it was precisely similar to his sister’s +apartments, except that for the breakfast-parlor he had a +billiard-room, where he received his friends. He was superintending the +grooming of his horse, and smoking his cigar at the entrance of the +garden, when the count’s carriage stopped at the gate. + +Cocles opened the gate, and Baptistin, springing from the box, inquired +whether Monsieur and Madame Herbault and Monsieur Maximilian Morrel +would see his excellency the Count of Monte Cristo. + +“The Count of Monte Cristo?” cried Morrel, throwing away his cigar and +hastening to the carriage; “I should think we would see him. Ah, a +thousand thanks, count, for not having forgotten your promise.” + +And the young officer shook the count’s hand so warmly, that Monte +Cristo could not be mistaken as to the sincerity of his joy, and he saw +that he had been expected with impatience, and was received with +pleasure. + +“Come, come,” said Maximilian, “I will serve as your guide; such a man +as you are ought not to be introduced by a servant. My sister is in the +garden plucking the dead roses; my brother is reading his two papers, +_la Presse_ and _les Débats_, within six steps of her; for wherever you +see Madame Herbault, you have only to look within a circle of four +yards and you will find M. Emmanuel, and ‘reciprocally,’ as they say at +the Polytechnic School.” + +At the sound of their steps a young woman of twenty to five-and-twenty, +dressed in a silk morning gown, and busily engaged in plucking the dead +leaves off a noisette rose-tree, raised her head. This was Julie, who +had become, as the clerk of the house of Thomson & French had +predicted, Madame Emmanuel Herbault. She uttered a cry of surprise at +the sight of a stranger, and Maximilian began to laugh. + +“Don’t disturb yourself, Julie,” said he. “The count has only been two +or three days in Paris, but he already knows what a fashionable woman +of the Marais is, and if he does not, you will show him.” + +“Ah, monsieur,” returned Julie, “it is treason in my brother to bring +you thus, but he never has any regard for his poor sister. Penelon, +Penelon!” + +An old man, who was digging busily at one of the beds, stuck his spade +in the earth, and approached, cap in hand, striving to conceal a quid +of tobacco he had just thrust into his cheek. A few locks of gray +mingled with his hair, which was still thick and matted, while his +bronzed features and determined glance well suited an old sailor who +had braved the heat of the equator and the storms of the tropics. + +“I think you hailed me, Mademoiselle Julie?” said he. + +Penelon had still preserved the habit of calling his master’s daughter +“Mademoiselle Julie,” and had never been able to change the name to +Madame Herbault. + +“Penelon,” replied Julie, “go and inform M. Emmanuel of this +gentleman’s visit, and Maximilian will conduct him to the salon.” + +Then, turning to Monte Cristo,—“I hope you will permit me to leave you +for a few minutes,” continued she; and without awaiting any reply, +disappeared behind a clump of trees, and escaped to the house by a +lateral alley. + +30041m + + + +“I am sorry to see,” observed Monte Cristo to Morrel, “that I cause no +small disturbance in your house.” + +“Look there,” said Maximilian, laughing; “there is her husband changing +his jacket for a coat. I assure you, you are well known in the Rue +Meslay.” + +“Your family appears to be a very happy one,” said the count, as if +speaking to himself. + +“Oh, yes, I assure you, count, they want nothing that can render them +happy; they are young and cheerful, they are tenderly attached to each +other, and with twenty-five thousand francs a year they fancy +themselves as rich as Rothschild.” + +“Five-and-twenty thousand francs is not a large sum, however,” replied +Monte Cristo, with a tone so sweet and gentle, that it went to +Maximilian’s heart like the voice of a father; “but they will not be +content with that. Your brother-in-law is a barrister? a doctor?” + +“He was a merchant, monsieur, and had succeeded to the business of my +poor father. M. Morrel, at his death, left 500,000 francs, which were +divided between my sister and myself, for we were his only children. +Her husband, who, when he married her, had no other patrimony than his +noble probity, his first-rate ability, and his spotless reputation, +wished to possess as much as his wife. He labored and toiled until he +had amassed 250,000 francs; six years sufficed to achieve this object. +Oh, I assure you, sir, it was a touching spectacle to see these young +creatures, destined by their talents for higher stations, toiling +together, and through their unwillingness to change any of the customs +of their paternal house, taking six years to accomplish what less +scrupulous people would have effected in two or three. Marseilles +resounded with their well-earned praises. At last, one day, Emmanuel +came to his wife, who had just finished making up the accounts. + +“‘Julie,’ said he to her, ‘Cocles has just given me the last rouleau of +a hundred francs; that completes the 250,000 francs we had fixed as the +limits of our gains. Can you content yourself with the small fortune +which we shall possess for the future? Listen to me. Our house +transacts business to the amount of a million a year, from which we +derive an income of 40,000 francs. We can dispose of the business, if +we please, in an hour, for I have received a letter from M. Delaunay, +in which he offers to purchase the good-will of the house, to unite +with his own, for 300,000 francs. Advise me what I had better do.’ + +“‘Emmanuel,’ returned my sister, ‘the house of Morrel can only be +carried on by a Morrel. Is it not worth 300,000 francs to save our +father’s name from the chances of evil fortune and failure?’ + +“‘I thought so,’ replied Emmanuel; ‘but I wished to have your advice.’ + +“‘This is my counsel:—Our accounts are made up and our bills paid; all +we have to do is to stop the issue of any more, and close our office.’ + +“This was done instantly. It was three o’clock; at a quarter past, a +merchant presented himself to insure two ships; it was a clear profit +of 15,000 francs. + +“‘Monsieur,’ said Emmanuel, ‘have the goodness to address yourself to +M. Delaunay. We have quitted business.’ + +“‘How long?’ inquired the astonished merchant. + +30043m + + + +“‘A quarter of an hour,’ was the reply. + +“And this is the reason, monsieur,” continued Maximilian, “of my sister +and brother-in-law having only 25,000 francs a year.” + +Maximilian had scarcely finished his story, during which the count’s +heart had swelled within him, when Emmanuel entered wearing a hat and +coat. He saluted the count with the air of a man who is aware of the +rank of his guest; then, after having led Monte Cristo around the +little garden, he returned to the house. + +A large vase of Japan porcelain, filled with flowers that loaded the +air with their perfume, stood in the salon. Julie, suitably dressed, +and her hair arranged (she had accomplished this feat in less than ten +minutes), received the count on his entrance. The songs of the birds +were heard in an aviary hard by, and the branches of laburnums and rose +acacias formed an exquisite framework to the blue velvet curtains. +Everything in this charming retreat, from the warble of the birds to +the smile of the mistress, breathed tranquillity and repose. + +The count had felt the influence of this happiness from the moment he +entered the house, and he remained silent and pensive, forgetting that +he was expected to renew the conversation, which had ceased after the +first salutations had been exchanged. The silence became almost painful +when, by a violent effort, tearing himself from his pleasing reverie: + +“Madame,” said he at length, “I pray you to excuse my emotion, which +must astonish you who are only accustomed to the happiness I meet here; +but contentment is so new a sight to me, that I could never be weary of +looking at yourself and your husband.” + +“We are very happy, monsieur,” replied Julie; “but we have also known +unhappiness, and few have ever undergone more bitter sufferings than +ourselves.” + +The count’s features displayed an expression of the most intense +curiosity. + +“Oh, all this is a family history, as Château-Renaud told you the other +day,” observed Maximilian. “This humble picture would have but little +interest for you, accustomed as you are to behold the pleasures and the +misfortunes of the wealthy and industrious; but such as we are, we have +experienced bitter sorrows.” + +“And God has poured balm into your wounds, as he does into those of all +who are in affliction?” said Monte Cristo inquiringly. + +“Yes, count,” returned Julie, “we may indeed say he has, for he has +done for us what he grants only to his chosen; he sent us one of his +angels.” + +The count’s cheeks became scarlet, and he coughed, in order to have an +excuse for putting his handkerchief to his mouth. + +“Those born to wealth, and who have the means of gratifying every +wish,” said Emmanuel, “know not what is the real happiness of life, +just as those who have been tossed on the stormy waters of the ocean on +a few frail planks can alone realize the blessings of fair weather.” + +Monte Cristo rose, and without making any answer (for the tremulousness +of his voice would have betrayed his emotion) walked up and down the +apartment with a slow step. + +“Our magnificence makes you smile, count,” said Maximilian, who had +followed him with his eyes. + +“No, no,” returned Monte Cristo, pale as death, pressing one hand on +his heart to still its throbbings, while with the other he pointed to a +crystal cover, beneath which a silken purse lay on a black velvet +cushion. “I was wondering what could be the significance of this purse, +with the paper at one end and the large diamond at the other.” + +“Count,” replied Maximilian, with an air of gravity, “those are our +most precious family treasures.” + +“The stone seems very brilliant,” answered the count. + +“Oh, my brother does not allude to its value, although it has been +estimated at 100,000 francs; he means, that the articles contained in +this purse are the relics of the angel I spoke of just now.” + +“This I do not comprehend; and yet I may not ask for an explanation, +madame,” replied Monte Cristo bowing. “Pardon me, I had no intention of +committing an indiscretion.” + +“Indiscretion,—oh, you make us happy by giving us an excuse for +expatiating on this subject. If we wanted to conceal the noble action +this purse commemorates, we should not expose it thus to view. Oh, +would we could relate it everywhere, and to everyone, so that the +emotion of our unknown benefactor might reveal his presence.” + +“Ah, really,” said Monte Cristo in a half-stifled voice. + +“Monsieur,” returned Maximilian, raising the glass cover, and +respectfully kissing the silken purse, “this has touched the hand of a +man who saved my father from suicide, us from ruin, and our name from +shame and disgrace,—a man by whose matchless benevolence we poor +children, doomed to want and wretchedness, can at present hear everyone +envying our happy lot. This letter” (as he spoke, Maximilian drew a +letter from the purse and gave it to the count)—“this letter was +written by him the day that my father had taken a desperate resolution, +and this diamond was given by the generous unknown to my sister as her +dowry.” + +Monte Cristo opened the letter, and read it with an indescribable +feeling of delight. It was the letter written (as our readers know) to +Julie, and signed “Sinbad the Sailor.” + +“Unknown you say, is the man who rendered you this service—unknown to +you?” + +“Yes; we have never had the happiness of pressing his hand,” continued +Maximilian. “We have supplicated Heaven in vain to grant us this favor, +but the whole affair has had a mysterious meaning that we cannot +comprehend—we have been guided by an invisible hand,—a hand as powerful +as that of an enchanter.” + +“Oh,” cried Julie, “I have not lost all hope of some day kissing that +hand, as I now kiss the purse which he has touched. Four years ago, +Penelon was at Trieste—Penelon, count, is the old sailor you saw in the +garden, and who, from quartermaster, has become gardener—Penelon, when +he was at Trieste, saw on the quay an Englishman, who was on the point +of embarking on board a yacht, and he recognized him as the person who +called on my father the fifth of June, 1829, and who wrote me this +letter on the fifth of September. He felt convinced of his identity, +but he did not venture to address him.” + +“An Englishman,” said Monte Cristo, who grew uneasy at the attention +with which Julie looked at him. “An Englishman you say?” + +“Yes,” replied Maximilian, “an Englishman, who represented himself as +the confidential clerk of the house of Thomson & French, at Rome. It +was this that made me start when you said the other day, at M. de +Morcerf’s, that Messrs. Thomson & French were your bankers. That +happened, as I told you, in 1829. For God’s sake, tell me, did you know +this Englishman?” + +“But you tell me, also, that the house of Thomson & French have +constantly denied having rendered you this service?” + +“Yes.” + +“Then is it not probable that this Englishman may be someone who, +grateful for a kindness your father had shown him, and which he himself +had forgotten, has taken this method of requiting the obligation?” + +“Everything is possible in this affair, even a miracle.” + +“What was his name?” asked Monte Cristo. + +“He gave no other name,” answered Julie, looking earnestly at the +count, “than that at the end of his letter—‘Sinbad the Sailor.’” + +“Which is evidently not his real name, but a fictitious one.” + +Then, noticing that Julie was struck with the sound of his voice: + +“Tell me,” continued he, “was he not about my height, perhaps a little +taller, with his chin imprisoned, as it were, in a high cravat; his +coat closely buttoned up, and constantly taking out his pencil?” + +“Oh, do you then know him?” cried Julie, whose eyes sparkled with joy. + +“No,” returned Monte Cristo “I only guessed. I knew a Lord Wilmore, who +was constantly doing actions of this kind.” + +“Without revealing himself?” + +“He was an eccentric being, and did not believe in the existence of +gratitude.” + +“Oh, Heaven,” exclaimed Julie, clasping her hands, “in what did he +believe, then?” + +30047m + + + +“He did not credit it at the period which I knew him,” said Monte +Cristo, touched to the heart by the accents of Julie’s voice; “but, +perhaps, since then he has had proofs that gratitude does exist.” + +“And do you know this gentleman, monsieur?” inquired Emmanuel. + +“Oh, if you do know him,” cried Julie, “can you tell us where he +is—where we can find him? Maximilian—Emmanuel—if we do but discover +him, he must believe in the gratitude of the heart!” + +Monte Cristo felt tears start into his eyes, and he again walked +hastily up and down the room. + +“In the name of Heaven,” said Maximilian, “if you know anything of him, +tell us what it is.” + +“Alas,” cried Monte Cristo, striving to repress his emotion, “if Lord +Wilmore was your unknown benefactor, I fear you will never see him +again. I parted from him two years ago at Palermo, and he was then on +the point of setting out for the most remote regions; so that I fear he +will never return.” + +“Oh, monsieur, this is cruel of you,” said Julie, much affected; and +the young lady’s eyes swam with tears. + +“Madame,” replied Monte Cristo gravely, and gazing earnestly on the two +liquid pearls that trickled down Julie’s cheeks, “had Lord Wilmore seen +what I now see, he would become attached to life, for the tears you +shed would reconcile him to mankind;” and he held out his hand to +Julie, who gave him hers, carried away by the look and accent of the +count. + +“But,” continued she, “Lord Wilmore had a family or friends, he must +have known someone, can we not——” + +“Oh, it is useless to inquire,” returned the count; “perhaps, after +all, he was not the man you seek for. He was my friend: he had no +secrets from me, and if this had been so he would have confided in me.” + +“And he told you nothing?” + +“Not a word.” + +“Nothing that would lead you to suppose?” + +“Nothing.” + +“And yet you spoke of him at once.” + +“Ah, in such a case one supposes——” + +“Sister, sister,” said Maximilian, coming to the count’s aid, “monsieur +is quite right. Recollect what our excellent father so often told us, +‘It was no Englishman that thus saved us.’” + +Monte Cristo started. “What did your father tell you, M. Morrel?” said +he eagerly. + +“My father thought that this action had been miraculously performed—he +believed that a benefactor had arisen from the grave to save us. Oh, it +was a touching superstition, monsieur, and although I did not myself +believe it, I would not for the world have destroyed my father’s faith. +How often did he muse over it and pronounce the name of a dear friend—a +friend lost to him forever; and on his death-bed, when the near +approach of eternity seemed to have illumined his mind with +supernatural light, this thought, which had until then been but a +doubt, became a conviction, and his last words were, ‘Maximilian, it +was Edmond Dantès!’” + +At these words the count’s paleness, which had for some time been +increasing, became alarming; he could not speak; he looked at his watch +like a man who has forgotten the hour, said a few hurried words to +Madame Herbault, and pressing the hands of Emmanuel and +Maximilian,—“Madame,” said he, “I trust you will allow me to visit you +occasionally; I value your friendship, and feel grateful to you for +your welcome, for this is the first time for many years that I have +thus yielded to my feelings;” and he hastily quitted the apartment. + +“This Count of Monte Cristo is a strange man,” said Emmanuel. + +“Yes,” answered Maximilian, “but I feel sure he has an excellent heart, +and that he likes us.” + +“His voice went to my heart,” observed Julie; “and two or three times I +fancied that I had heard it before.” + + + + Chapter 51. Pyramus and Thisbe + +About two-thirds of the way along the Faubourg Saint-Honoré, and in the +rear of one of the most imposing mansions in this rich neighborhood, +where the various houses vie with each other for elegance of design and +magnificence of construction, extended a large garden, where the +wide-spreading chestnut-trees raised their heads high above the walls +in a solid rampart, and with the coming of every spring scattered a +shower of delicate pink and white blossoms into the large stone vases +that stood upon the two square pilasters of a curiously wrought iron +gate, that dated from the time of Louis XIII. + +This noble entrance, however, in spite of its striking appearance and +the graceful effect of the geraniums planted in the two vases, as they +waved their variegated leaves in the wind and charmed the eye with +their scarlet bloom, had fallen into utter disuse. The proprietors of +the mansion had many years before thought it best to confine themselves +to the possession of the house itself, with its thickly planted +courtyard, opening into the Faubourg Saint-Honoré, and to the garden +shut in by this gate, which formerly communicated with a fine +kitchen-garden of about an acre. For the demon of speculation drew a +line, or in other words projected a street, at the farther side of the +kitchen-garden. The street was laid out, a name was chosen and posted +up on an iron plate, but before construction was begun, it occurred to +the possessor of the property that a handsome sum might be obtained for +the ground then devoted to fruits and vegetables, by building along the +line of the proposed street, and so making it a branch of communication +with the Faubourg Saint-Honoré itself, one of the most important +thoroughfares in the city of Paris. + +In matters of speculation, however, though “man proposes,” yet “money +disposes.” From some such difficulty the newly named street died almost +in birth, and the purchaser of the kitchen-garden, having paid a high +price for it, and being quite unable to find anyone willing to take his +bargain off his hands without a considerable loss, yet still clinging +to the belief that at some future day he should obtain a sum for it +that would repay him, not only for his past outlay, but also the +interest upon the capital locked up in his new acquisition, contented +himself with letting the ground temporarily to some market-gardeners, +at a yearly rental of 500 francs. + +And so, as we have said, the iron gate leading into the kitchen-garden +had been closed up and left to the rust, which bade fair before long to +eat off its hinges, while to prevent the ignoble glances of the diggers +and delvers of the ground from presuming to sully the aristocratic +enclosure belonging to the mansion, the gate had been boarded up to a +height of six feet. True, the planks were not so closely adjusted but +that a hasty peep might be obtained through their interstices; but the +strict decorum and rigid propriety of the inhabitants of the house left +no grounds for apprehending that advantage would be taken of that +circumstance. + +Horticulture seemed, however, to have been abandoned in the deserted +kitchen-garden; and where cabbages, carrots, radishes, peas, and melons +had once flourished, a scanty crop of lucern alone bore evidence of its +being deemed worthy of cultivation. A small, low door gave egress from +the walled space we have been describing into the projected street, the +ground having been abandoned as unproductive by its various renters, +and had now fallen so completely in general estimation as to return not +even the one-half per cent it had originally paid. Towards the house +the chestnut-trees we have before mentioned rose high above the wall, +without in any way affecting the growth of other luxuriant shrubs and +flowers that eagerly dressed forward to fill up the vacant spaces, as +though asserting their right to enjoy the boon of light and air. At one +corner, where the foliage became so thick as almost to shut out day, a +large stone bench and sundry rustic seats indicated that this sheltered +spot was either in general favor or particular use by some inhabitant +of the house, which was faintly discernible through the dense mass of +verdure that partially concealed it, though situated but a hundred +paces off. + +Whoever had selected this retired portion of the grounds as the +boundary of a walk, or as a place for meditation, was abundantly +justified in the choice by the absence of all glare, the cool, +refreshing shade, the screen it afforded from the scorching rays of the +sun, that found no entrance there even during the burning days of +hottest summer, the incessant and melodious warbling of birds, and the +entire removal from either the noise of the street or the bustle of the +mansion. On the evening of one of the warmest days spring had yet +bestowed on the inhabitants of Paris, might be seen negligently thrown +upon the stone bench, a book, a parasol, and a work-basket, from which +hung a partly embroidered cambric handkerchief, while at a little +distance from these articles was a young woman, standing close to the +iron gate, endeavoring to discern something on the other side by means +of the openings in the planks,—the earnestness of her attitude and the +fixed gaze with which she seemed to seek the object of her wishes, +proving how much her feelings were interested in the matter. + +At that instant the little side-gate leading from the waste ground to +the street was noiselessly opened, and a tall, powerful young man +appeared. He was dressed in a common gray blouse and velvet cap, but +his carefully arranged hair, beard and moustache, all of the richest +and glossiest black, ill accorded with his plebeian attire. After +casting a rapid glance around him, in order to assure himself that he +was unobserved, he entered by the small gate, and, carefully closing +and securing it after him, proceeded with a hurried step towards the +barrier. + +At the sight of him she expected, though probably not in such a +costume, the young woman started in terror, and was about to make a +hasty retreat. But the eye of love had already seen, even through the +narrow chinks of the wooden palisades, the movement of the white robe, +and observed the fluttering of the blue sash. Pressing his lips close +to the planks, he exclaimed: + +“Don’t be alarmed, Valentine—it is I!” + +Again the timid girl found courage to return to the gate, saying, as +she did so: + +“And why do you come so late today? It is almost dinner-time, and I had +to use no little diplomacy to get rid of my watchful stepmother, my +too-devoted maid, and my troublesome brother, who is always teasing me +about coming to work at my embroidery, which I am in a fair way never +to get done. So pray excuse yourself as well as you can for having made +me wait, and, after that, tell me why I see you in a dress so singular +that at first I did not recognize you.” + +“Dearest Valentine,” said the young man, “the difference between our +respective stations makes me fear to offend you by speaking of my love, +but yet I cannot find myself in your presence without longing to pour +forth my soul, and tell you how fondly I adore you. If it be but to +carry away with me the recollection of such sweet moments, I could even +thank you for chiding me, for it leaves me a gleam of hope, that if you +did not expect me (and that indeed would be worse than vanity to +suppose), at least I was in your thoughts. You asked me the cause of my +being late, and why I come disguised. I will candidly explain the +reason of both, and I trust to your goodness to pardon me. I have +chosen a trade.” + +“A trade? Oh, Maximilian, how can you jest at a time when we have such +deep cause for uneasiness?” + +“Heaven keep me from jesting with that which is far dearer to me than +life itself! But listen to me, Valentine, and I will tell you all about +it. I became weary of ranging fields and scaling walls, and seriously +alarmed at the idea suggested by you, that if caught hovering about +here your father would very likely have me sent to prison as a thief. +That would compromise the honor of the French army, to say nothing of +the fact that the continual presence of a captain of Spahis in a place +where no warlike projects could be supposed to account for it might +well create surprise; so I have become a gardener, and, consequently, +adopted the costume of my calling.” + +“What excessive nonsense you talk, Maximilian!” + +“Nonsense? Pray do not call what I consider the wisest action of my +life by such a name. Consider, by becoming a gardener I effectually +screen our meetings from all suspicion or danger.” + +30053m + + + +“I beseech of you, Maximilian, to cease trifling, and tell me what you +really mean.” + +“Simply, that having ascertained that the piece of ground on which I +stand was to let, I made application for it, was readily accepted by +the proprietor, and am now master of this fine crop of lucern. Think of +that, Valentine! There is nothing now to prevent my building myself a +little hut on my plantation, and residing not twenty yards from you. +Only imagine what happiness that would afford me. I can scarcely +contain myself at the bare idea. Such felicity seems above all price—as +a thing impossible and unattainable. But would you believe that I +purchase all this delight, joy, and happiness, for which I would +cheerfully have surrendered ten years of my life, at the small cost of +500 francs per annum, paid quarterly? Henceforth we have nothing to +fear. I am on my own ground, and have an undoubted right to place a +ladder against the wall, and to look over when I please, without having +any apprehensions of being taken off by the police as a suspicious +character. I may also enjoy the precious privilege of assuring you of +my fond, faithful, and unalterable affection, whenever you visit your +favorite bower, unless, indeed, it offends your pride to listen to +professions of love from the lips of a poor workingman, clad in a +blouse and cap.” + +A faint cry of mingled pleasure and surprise escaped from the lips of +Valentine, who almost instantly said, in a saddened tone, as though +some envious cloud darkened the joy which illumined her heart: + +“Alas, no, Maximilian, this must not be, for many reasons. We should +presume too much on our own strength, and, like others, perhaps, be led +astray by our blind confidence in each other’s prudence.” + +“How can you for an instant entertain so unworthy a thought, dear +Valentine? Have I not, from the first blessed hour of our acquaintance, +schooled all my words and actions to your sentiments and ideas? And you +have, I am sure, the fullest confidence in my honor. When you spoke to +me of experiencing a vague and indefinite sense of coming danger, I +placed myself blindly and devotedly at your service, asking no other +reward than the pleasure of being useful to you; and have I ever since, +by word or look, given you cause of regret for having selected me from +the numbers that would willingly have sacrificed their lives for you? +You told me, my dear Valentine, that you were engaged to M. d’Épinay, +and that your father was resolved upon completing the match, and that +from his will there was no appeal, as M. de Villefort was never known +to change a determination once formed. I kept in the background, as you +wished, and waited, not for the decision of your heart or my own, but +hoping that Providence would graciously interpose in our behalf, and +order events in our favor. But what cared I for delays or difficulties, +Valentine, as long as you confessed that you loved me, and took pity on +me? If you will only repeat that avowal now and then, I can endure +anything.” + +“Ah, Maximilian, that is the very thing that makes you so bold, and +which renders me at once so happy and unhappy, that I frequently ask +myself whether it is better for me to endure the harshness of my +stepmother, and her blind preference for her own child, or to be, as I +now am, insensible to any pleasure save such as I find in these +meetings, so fraught with danger to both.” + +“I will not admit that word,” returned the young man; “it is at once +cruel and unjust. Is it possible to find a more submissive slave than +myself? You have permitted me to converse with you from time to time, +Valentine, but forbidden my ever following you in your walks or +elsewhere—have I not obeyed? And since I found means to enter this +enclosure to exchange a few words with you through this gate—to be +close to you without really seeing you—have I ever asked so much as to +touch the hem of your gown or tried to pass this barrier which is but a +trifle to one of my youth and strength? Never has a complaint or a +murmur escaped me. I have been bound by my promises as rigidly as any +knight of olden times. Come, come, dearest Valentine, confess that what +I say is true, lest I be tempted to call you unjust.” + +30055m + + + +“It is true,” said Valentine, as she passed the end of her slender +fingers through a small opening in the planks, and permitted Maximilian +to press his lips to them, “and you are a true and faithful friend; but +still you acted from motives of self-interest, my dear Maximilian, for +you well knew that from the moment in which you had manifested an +opposite spirit all would have been ended between us. You promised to +bestow on me the friendly affection of a brother. For I have no friend +but yourself upon earth, who am neglected and forgotten by my father, +harassed and persecuted by my stepmother, and left to the sole +companionship of a paralyzed and speechless old man, whose withered +hand can no longer press mine, and who can speak to me with the eye +alone, although there still lingers in his heart the warmest tenderness +for his poor grandchild. Oh, how bitter a fate is mine, to serve either +as a victim or an enemy to all who are stronger than myself, while my +only friend and supporter is a living corpse! Indeed, indeed, +Maximilian, I am very miserable, and if you love me it must be out of +pity.” + +“Valentine,” replied the young man, deeply affected, “I will not say +you are all I love in the world, for I dearly prize my sister and +brother-in-law; but my affection for them is calm and tranquil, in no +manner resembling what I feel for you. When I think of you my heart +beats fast, the blood burns in my veins, and I can hardly breathe; but +I solemnly promise you to restrain all this ardor, this fervor and +intensity of feeling, until you yourself shall require me to render +them available in serving or assisting you. M. Franz is not expected to +return home for a year to come, I am told; in that time many favorable +and unforeseen chances may befriend us. Let us, then, hope for the +best; hope is so sweet a comforter. Meanwhile, Valentine, while +reproaching me with selfishness, think a little what you have been to +me—the beautiful but cold resemblance of a marble Venus. What promise +of future reward have you made me for all the submission and obedience +I have evinced?—none whatever. What granted me?—scarcely more. You tell +me of M. Franz d’Épinay, your betrothed lover, and you shrink from the +idea of being his wife; but tell me, Valentine, is there no other +sorrow in your heart? You see me devoted to you, body and soul, my life +and each warm drop that circles round my heart are consecrated to your +service; you know full well that my existence is bound up in yours—that +were I to lose you I would not outlive the hour of such crushing +misery; yet you speak with calmness of the prospect of your being the +wife of another! Oh, Valentine, were I in your place, and did I feel +conscious, as you do, of being worshipped, adored, with such a love as +mine, a hundred times at least should I have passed my hand between +these iron bars, and said, ‘Take this hand, dearest Maximilian, and +believe that, living or dead, I am yours—yours only, and forever!’” + +The poor girl made no reply, but her lover could plainly hear her sobs +and tears. A rapid change took place in the young man’s feelings. + +“Dearest, dearest Valentine,” exclaimed he, “forgive me if I have +offended you, and forget the words I spoke if they have unwittingly +caused you pain.” + +“No, Maximilian, I am not offended,” answered she, “but do you not see +what a poor, helpless being I am, almost a stranger and an outcast in +my father’s house, where even he is seldom seen; whose will has been +thwarted, and spirits broken, from the age of ten years, beneath the +iron rod so sternly held over me; oppressed, mortified, and persecuted, +day by day, hour by hour, minute by minute, no person has cared for, +even observed my sufferings, nor have I ever breathed one word on the +subject save to yourself. Outwardly and in the eyes of the world, I am +surrounded by kindness and affection; but the reverse is the case. The +general remark is, ‘Oh, it cannot be expected that one of so stern a +character as M. Villefort could lavish the tenderness some fathers do +on their daughters. What though she has lost her own mother at a tender +age, she has had the happiness to find a second mother in Madame de +Villefort.’ The world, however, is mistaken; my father abandons me from +utter indifference, while my stepmother detests me with a hatred so +much the more terrible because it is veiled beneath a continual smile.” + +“Hate you, sweet Valentine,” exclaimed the young man; “how is it +possible for anyone to do that?” + +“Alas,” replied the weeping girl, “I am obliged to own that my +stepmother’s aversion to me arises from a very natural source—her +overweening love for her own child, my brother Edward.” + +“But why should it?” + +“I do not know; but, though unwilling to introduce money matters into +our present conversation, I will just say this much—that her extreme +dislike to me has its origin there; and I much fear she envies me the +fortune I enjoy in right of my mother, and which will be more than +doubled at the death of M. and Mme. de Saint-Méran, whose sole heiress +I am. Madame de Villefort has nothing of her own, and hates me for +being so richly endowed. Alas, how gladly would I exchange the half of +this wealth for the happiness of at least sharing my father’s love. God +knows, I would prefer sacrificing the whole, so that it would obtain me +a happy and affectionate home.” + +“Poor Valentine!” + +“I seem to myself as though living a life of bondage, yet at the same +time am so conscious of my own weakness that I fear to break the +restraint in which I am held, lest I fall utterly helpless. Then, too, +my father is not a person whose orders may be infringed with impunity; +protected as he is by his high position and firmly established +reputation for talent and unswerving integrity, no one could oppose +him; he is all-powerful even with the king; he would crush you at a +word. Dear Maximilian, believe me when I assure you that if I do not +attempt to resist my father’s commands it is more on your account than +my own.” + +“But why, Valentine, do you persist in anticipating the worst,—why +picture so gloomy a future?” + +“Because I judge it from the past.” + +“Still, consider that although I may not be, strictly speaking, what is +termed an illustrious match for you, I am, for many reasons, not +altogether so much beneath your alliance. The days when such +distinctions were so nicely weighed and considered no longer exist in +France, and the first families of the monarchy have intermarried with +those of the empire. The aristocracy of the lance has allied itself +with the nobility of the cannon. Now I belong to this last-named class; +and certainly my prospects of military preferment are most encouraging +as well as certain. My fortune, though small, is free and unfettered, +and the memory of my late father is respected in our country, +Valentine, as that of the most upright and honorable merchant of the +city; I say our country, because you were born not far from +Marseilles.” + +“Don’t speak of Marseilles, I beg of you, Maximilian; that one word +brings back my mother to my recollection—my angel mother, who died too +soon for myself and all who knew her; but who, after watching over her +child during the brief period allotted to her in this world, now, I +fondly hope, watches from her home in heaven. Oh, if my mother were +still living, there would be nothing to fear, Maximilian, for I would +tell her that I loved you, and she would protect us.” + +“I fear, Valentine,” replied the lover, “that were she living I should +never have had the happiness of knowing you; you would then have been +too happy to have stooped from your grandeur to bestow a thought on +me.” + +“Now it is you who are unjust, Maximilian,” cried Valentine; “but there +is one thing I wish to know.” + +“And what is that?” inquired the young man, perceiving that Valentine +hesitated. + +“Tell me truly, Maximilian, whether in former days, when our fathers +dwelt at Marseilles, there was ever any misunderstanding between them?” + +“Not that I am aware of,” replied the young man, “unless, indeed, any +ill-feeling might have arisen from their being of opposite parties—your +father was, as you know, a zealous partisan of the Bourbons, while mine +was wholly devoted to the emperor; there could not possibly be any +other difference between them. But why do you ask?” + +“I will tell you,” replied the young girl, “for it is but right you +should know. Well, on the day when your appointment as an officer of +the Legion of Honor was announced in the papers, we were all sitting +with my grandfather, M. Noirtier; M. Danglars was there also—you +recollect M. Danglars, do you not, Maximilian, the banker, whose horses +ran away with my stepmother and little brother, and very nearly killed +them? While the rest of the company were discussing the approaching +marriage of Mademoiselle Danglars, I was reading the paper to my +grandfather; but when I came to the paragraph about you, although I had +done nothing else but read it over to myself all the morning (you know +you had told me all about it the previous evening), I felt so happy, +and yet so nervous, at the idea of speaking your name aloud, and before +so many people, that I really think I should have passed it over, but +for the fear that my doing so might create suspicions as to the cause +of my silence; so I summoned up all my courage, and read it as firmly +and as steadily as I could.” + +30059m + + + +“Dear Valentine!” + +“Well, would you believe it? directly my father caught the sound of +your name he turned round quite hastily, and, like a poor silly thing, +I was so persuaded that everyone must be as much affected as myself by +the utterance of your name, that I was not surprised to see my father +start, and almost tremble; but I even thought (though that surely must +have been a mistake) that M. Danglars trembled too.” + +“‘Morrel, Morrel,’ cried my father, ‘stop a bit;’ then knitting his +brows into a deep frown, he added, ‘surely this cannot be one of the +Morrel family who lived at Marseilles, and gave us so much trouble from +their violent Bonapartism—I mean about the year 1815.’ + +“‘Yes,’ replied M. Danglars, ‘I believe he is the son of the old +shipowner.’” + +“Indeed,” answered Maximilian; “and what did your father say then, +Valentine?” + +“Oh, such a dreadful thing, that I don’t dare to tell you.” + +“Always tell me everything,” said Maximilian with a smile. + +“‘Ah,’ continued my father, still frowning, ‘their idolized emperor +treated these madmen as they deserved; he called them ‘food for +cannon,’ which was precisely all they were good for; and I am delighted +to see that the present government have adopted this salutary principle +with all its pristine vigor; if Algiers were good for nothing but to +furnish the means of carrying so admirable an idea into practice, it +would be an acquisition well worthy of struggling to obtain. Though it +certainly does cost France somewhat dear to assert her rights in that +uncivilized country.’” + +“Brutal politics, I must confess.” said Maximilian; “but don’t attach +any serious importance, dear, to what your father said. My father was +not a bit behind yours in that sort of talk. ‘Why,’ said he, ‘does not +the emperor, who has devised so many clever and efficient modes of +improving the art of war, organize a regiment of lawyers, judges and +legal practitioners, sending them in the hottest fire the enemy could +maintain, and using them to save better men?’ You see, my dear, that +for picturesque expression and generosity of spirit there is not much +to choose between the language of either party. But what did M. +Danglars say to this outburst on the part of the procureur?” + +“Oh, he laughed, and in that singular manner so peculiar to +himself—half-malicious, half-ferocious; he almost immediately got up +and took his leave; then, for the first time, I observed the agitation +of my grandfather, and I must tell you, Maximilian, that I am the only +person capable of discerning emotion in his paralyzed frame. And I +suspected that the conversation that had been carried on in his +presence (for they always say and do what they like before the dear old +man, without the smallest regard for his feelings) had made a strong +impression on his mind; for, naturally enough, it must have pained him +to hear the emperor he so devotedly loved and served spoken of in that +depreciating manner.” + +“The name of M. Noirtier,” interposed Maximilian, “is celebrated +throughout Europe; he was a statesman of high standing, and you may or +may not know, Valentine, that he took a leading part in every +Bonapartist conspiracy set on foot during the restoration of the +Bourbons.” + +“Oh, I have often heard whispers of things that seem to me most +strange—the father a Bonapartist, the son a Royalist; what can have +been the reason of so singular a difference in parties and politics? +But to resume my story; I turned towards my grandfather, as though to +question him as to the cause of his emotion; he looked expressively at +the newspaper I had been reading. ‘What is the matter, dear +grandfather?’ said I, ‘are you pleased?’ He gave me a sign in the +affirmative. ‘With what my father said just now?’ He returned a sign in +the negative. ‘Perhaps you liked what M. Danglars said?’ Another sign +in the negative. ‘Oh, then, you were glad to hear that M. Morrel (I +didn’t dare to say Maximilian) had been made an officer of the Legion +of Honor?’ He signified assent; only think of the poor old man’s being +so pleased to think that you, who were a perfect stranger to him, had +been made an officer of the Legion of Honor! Perhaps it was a mere whim +on his part, for he is falling, they say, into second childhood, but I +love him for showing so much interest in you.” + +“How singular,” murmured Maximilian; “your father hates me, while your +grandfather, on the contrary—What strange feelings are aroused by +politics.” + +“Hush,” cried Valentine, suddenly; “someone is coming!” Maximilian +leaped at one bound into his crop of lucern, which he began to pull up +in the most ruthless way, under the pretext of being occupied in +weeding it. + +“Mademoiselle, mademoiselle!” exclaimed a voice from behind the trees. +“Madame is searching for you everywhere; there is a visitor in the +drawing-room.” + +“A visitor?” inquired Valentine, much agitated; “who is it?” + +“Some grand personage—a prince I believe they said—the Count of Monte +Cristo.” + +“I will come directly,” cried Valentine aloud. + +The name of Monte Cristo sent an electric shock through the young man +on the other side of the iron gate, to whom Valentine’s _“I am coming”_ +was the customary signal of farewell. + +“Now, then,” said Maximilian, leaning on the handle of his spade, “I +would give a good deal to know how it comes about that the Count of +Monte Cristo is acquainted with M. de Villefort.” + + + + Chapter 52. Toxicology + +It was really the Count of Monte Cristo who had just arrived at Madame +de Villefort’s for the purpose of returning the procureur’s visit, and +at his name, as may be easily imagined, the whole house was in +confusion. + +Madame de Villefort, who was alone in her drawing-room when the count +was announced, desired that her son might be brought thither instantly +to renew his thanks to the count; and Edward, who heard this great +personage talked of for two whole days, made all possible haste to come +to him, not from obedience to his mother, or out of any feeling of +gratitude to the count, but from sheer curiosity, and that some chance +remark might give him the opportunity for making one of the impertinent +speeches which made his mother say: + +“Oh, that naughty child! But I can’t be severe with him, he is really +_so_ bright.” + +After the usual civilities, the count inquired after M. de Villefort. + +“My husband dines with the chancellor,” replied the young lady; “he has +just gone, and I am sure he’ll be exceedingly sorry not to have had the +pleasure of seeing you before he went.” + +Two visitors who were there when the count arrived, having gazed at him +with all their eyes, retired after that reasonable delay which +politeness admits and curiosity requires. + +“What is your sister Valentine doing?” inquired Madame de Villefort of +Edward; “tell someone to bid her come here, that I may have the honor +of introducing her to the count.” + +“You have a daughter, then, madame?” inquired the count; “very young, I +presume?” + +“The daughter of M. de Villefort by his first marriage,” replied the +young wife, “a fine well-grown girl.” + +“But melancholy,” interrupted Master Edward, snatching the feathers out +of the tail of a splendid paroquet that was screaming on its gilded +perch, in order to make a plume for his hat. + +Madame de Villefort merely cried, “Be still, Edward!” She then added, +“This young madcap is, however, very nearly right, and merely re-echoes +what he has heard me say with pain a hundred times; for Mademoiselle de +Villefort is, in spite of all we can do to rouse her, of a melancholy +disposition and taciturn habit, which frequently injure the effect of +her beauty. But what detains her? Go, Edward, and see.” + +“Because they are looking for her where she is not to be found.” + +“And where are they looking for her?” + +“With grandpapa Noirtier.” + +“And do you think she is not there?” + +“No, no, no, no, no, she is not there,” replied Edward, singing his +words. + +“And where is she, then? If you know, why don’t you tell?” + +“She is under the big chestnut-tree,” replied the spoiled brat, as he +gave, in spite of his mother’s commands, live flies to the parrot, +which seemed keenly to relish such fare. + +Madame de Villefort stretched out her hand to ring, intending to direct +her waiting-maid to the spot where she would find Valentine, when the +young lady herself entered the apartment. She appeared much dejected; +and any person who considered her attentively might have observed the +traces of recent tears in her eyes. + +Valentine, whom we have in the rapid march of our narrative presented +to our readers without formally introducing her, was a tall and +graceful girl of nineteen, with bright chestnut hair, deep blue eyes, +and that reposeful air of quiet distinction which characterized her +mother. Her white and slender fingers, her pearly neck, her cheeks +tinted with varying hues reminded one of the lovely Englishwomen who +have been so poetically compared in their manner to the gracefulness of +a swan. + +She entered the apartment, and seeing near her stepmother the stranger +of whom she had already heard so much, saluted him without any girlish +awkwardness, or even lowering her eyes, and with an elegance that +redoubled the count’s attention. + +He rose to return the salutation. + +“Mademoiselle de Villefort, my step-daughter,” said Madame de Villefort +to Monte Cristo, leaning back on her sofa and motioning towards +Valentine with her hand. + +“And M. de Monte Cristo, King of China, Emperor of Cochin-China,” said +the young imp, looking slyly towards his sister. + +Madame de Villefort at this really did turn pale, and was very nearly +angry with this household plague, who answered to the name of Edward; +but the count, on the contrary, smiled, and appeared to look at the boy +complacently, which caused the maternal heart to bound again with joy +and enthusiasm. + +“But, madame,” replied the count, continuing the conversation, and +looking by turns at Madame de Villefort and Valentine, “have I not +already had the honor of meeting yourself and mademoiselle before? I +could not help thinking so just now; the idea came over my mind, and as +mademoiselle entered the sight of her was an additional ray of light +thrown on a confused remembrance; excuse the remark.” + +“I do not think it likely, sir; Mademoiselle de Villefort is not very +fond of society, and we very seldom go out,” said the young lady. + +“Then it was not in society that I met with mademoiselle or yourself, +madame, or this charming little merry boy. Besides, the Parisian world +is entirely unknown to me, for, as I believe I told you, I have been in +Paris but very few days. No,—but, perhaps, you will permit me to call +to mind—stay!” + +The Count placed his hand on his brow as if to collect his thoughts. + +“No—it was somewhere—away from here—it was—I do not know—but it appears +that this recollection is connected with a lovely sky and some +religious _fête_; mademoiselle was holding flowers in her hand, the +interesting boy was chasing a beautiful peacock in a garden, and you, +madame, were under the trellis of some arbor. Pray come to my aid, +madame; do not these circumstances appeal to your memory?” + +“No, indeed,” replied Madame de Villefort; “and yet it appears to me, +sir, that if I had met you anywhere, the recollection of you must have +been imprinted on my memory.” + +“Perhaps the count saw us in Italy,” said Valentine timidly. + +“Yes, in Italy; it was in Italy most probably,” replied Monte Cristo; +“you have travelled then in Italy, mademoiselle?” + +“Yes; madame and I were there two years ago. The doctors, anxious for +my lungs, had prescribed the air of Naples. We went by Bologna, +Perugia, and Rome.” + +“Ah, yes—true, mademoiselle,” exclaimed Monte Cristo as if this simple +explanation was sufficient to revive the recollection he sought. “It +was at Perugia on Corpus Christi Day, in the garden of the Hôtel des +Postes, when chance brought us together; you, Madame de Villefort, and +her son; I now remember having had the honor of meeting you.” + +“I perfectly well remember Perugia, sir, and the Hôtel des Postes, and +the festival of which you speak,” said Madame de Villefort, “but in +vain do I tax my memory, of whose treachery I am ashamed, for I really +do not recall to mind that I ever had the pleasure of seeing you +before.” + +“It is strange, but neither do I recollect meeting with you,” observed +Valentine, raising her beautiful eyes to the count. + +30065m + + + +“But I remember it perfectly,” interposed the darling Edward. + +“I will assist your memory, madame,” continued the count; “the day had +been burning hot; you were waiting for horses, which were delayed in +consequence of the festival. Mademoiselle was walking in the shade of +the garden, and your son disappeared in pursuit of the peacock.” + +“And I caught it, mamma, don’t you remember?” interposed Edward, “and I +pulled three such beautiful feathers out of his tail.” + +“You, madame, remained under the arbor; do you not remember, that while +you were seated on a stone bench, and while, as I told you, +Mademoiselle de Villefort and your young son were absent, you conversed +for a considerable time with somebody?” + +“Yes, in truth, yes,” answered the young lady, turning very red, “I do +remember conversing with a person wrapped in a long woollen mantle; he +was a medical man, I think.” + +“Precisely so, madame; this man was myself; for a fortnight I had been +at that hotel, during which period I had cured my valet de chambre of a +fever, and my landlord of the jaundice, so that I really acquired a +reputation as a skilful physician. We discoursed a long time, madame, +on different subjects; of Perugino, of Raphael, of manners, customs, of +the famous _aqua Tofana_, of which they had told you, I think you said, +that certain individuals in Perugia had preserved the secret.” + +“Yes, true,” replied Madame de Villefort, somewhat uneasily, “I +remember now.” + +“I do not recollect now all the various subjects of which we +discoursed, madame,” continued the count with perfect calmness; “but I +perfectly remember that, falling into the error which others had +entertained respecting me, you consulted me as to the health of +Mademoiselle de Villefort.” + +“Yes, really, sir, you were in fact a medical man,” said Madame de +Villefort, “since you had cured the sick.” + +“Molière or Beaumarchais would reply to you, madame, that it was +precisely because I was not, that I had cured my patients; for myself, +I am content to say to you that I have studied chemistry and the +natural sciences somewhat deeply, but still only as an amateur, you +understand.” + +At this moment the clock struck six. + +“It is six o’clock,” said Madame de Villefort, evidently agitated. +“Valentine, will you not go and see if your grandpapa will have his +dinner?” + +Valentine rose, and saluting the count, left the apartment without +speaking. + +“Oh, madame,” said the count, when Valentine had left the room, “was it +on my account that you sent Mademoiselle de Villefort away?” + +“By no means,” replied the young lady quickly; “but this is the hour +when we usually give M. Noirtier the unwelcome meal that sustains his +pitiful existence. You are aware, sir, of the deplorable condition of +my husband’s father?” + +“Yes, madame, M. de Villefort spoke of it to me—a paralysis, I think.” + +“Alas, yes; the poor old gentleman is entirely helpless; the mind alone +is still active in this human machine, and that is faint and +flickering, like the light of a lamp about to expire. But excuse me, +sir, for talking of our domestic misfortunes; I interrupted you at the +moment when you were telling me that you were a skilful chemist.” + +“No, madame, I did not say as much as that,” replied the count with a +smile; “quite the contrary. I have studied chemistry because, having +determined to live in eastern climates I have been desirous of +following the example of King Mithridates.” + +“_Mithridates, rex Ponticus_,” said the young scamp, as he tore some +beautiful portraits out of a splendid album, “the individual who took +cream in his cup of poison every morning at breakfast.” + +“Edward, you naughty boy,” exclaimed Madame de Villefort, snatching the +mutilated book from the urchin’s grasp, “you are positively past +bearing; you really disturb the conversation; go, leave us, and join +your sister Valentine in dear grandpapa Noirtier’s room.” + +“The album,” said Edward sulkily. + +“What do you mean?—the album!” + +“I want the album.” + +“How dare you tear out the drawings?” + +“Oh, it amuses me.” + +“Go—go at once.” + +“I won’t go unless you give me the album,” said the boy, seating +himself doggedly in an armchair, according to his habit of never giving +way. + +“Take it, then, and pray disturb us no longer,” said Madame de +Villefort, giving the album to Edward, who then went towards the door, +led by his mother. The count followed her with his eyes. + +“Let us see if she shuts the door after him,” he muttered. + +Madame de Villefort closed the door carefully after the child, the +count appearing not to notice her; then casting a scrutinizing glance +around the chamber, the young wife returned to her chair, in which she +seated herself. + +“Allow me to observe, madame,” said the count, with that kind tone he +could assume so well, “you are really very severe with that dear clever +child.” + +“Oh, sometimes severity is quite necessary,” replied Madame de +Villefort, with all a mother’s real firmness. + +“It was his Cornelius Nepos that Master Edward was repeating when he +referred to King Mithridates,” continued the count, “and you +interrupted him in a quotation which proves that his tutor has by no +means neglected him, for your son is really advanced for his years.” + +“The fact is, count,” answered the mother, agreeably flattered, “he has +great aptitude, and learns all that is set before him. He has but one +fault, he is somewhat wilful; but really, on referring for the moment +to what he said, do you truly believe that Mithridates used these +precautions, and that these precautions were efficacious?” + +“I think so, madame, because I myself have made use of them, that I +might not be poisoned at Naples, at Palermo, and at Smyrna—that is to +say, on three several occasions when, but for these precautions, I must +have lost my life.” + +“And your precautions were successful?” + +“Completely so.” + +“Yes, I remember now your mentioning to me at Perugia something of this +sort.” + +“Indeed?” said the count with an air of surprise, remarkably well +counterfeited; “I really did not remember.” + +“I inquired of you if poisons acted equally, and with the same effect, +on men of the North as on men of the South; and you answered me that +the cold and sluggish habits of the North did not present the same +aptitude as the rich and energetic temperaments of the natives of the +South.” + +“And that is the case,” observed Monte Cristo. “I have seen Russians +devour, without being visibly inconvenienced, vegetable substances +which would infallibly have killed a Neapolitan or an Arab.” + +“And you really believe the result would be still more sure with us +than in the East, and in the midst of our fogs and rains a man would +habituate himself more easily than in a warm latitude to this +progressive absorption of poison?” + +“Certainly; it being at the same time perfectly understood that he +should have been duly fortified against the poison to which he had not +been accustomed.” + +“Yes, I understand that; and how would you habituate yourself, for +instance, or rather, how did you habituate yourself to it?” + +“Oh, very easily. Suppose you knew beforehand the poison that would be +made use of against you; suppose the poison was, for instance, +brucine——” + +“Brucine is extracted from the false angostura8 is it not?” inquired +Madame de Villefort. + +“Precisely, madame,” replied Monte Cristo; “but I perceive I have not +much to teach you. Allow me to compliment you on your knowledge; such +learning is very rare among ladies.” + +“Oh, I am aware of that,” said Madame de Villefort; “but I have a +passion for the occult sciences, which speak to the imagination like +poetry, and are reducible to figures, like an algebraic equation; but +go on, I beg of you; what you say interests me to the greatest degree.” + +30069m + + + +“Well,” replied Monte Cristo “suppose, then, that this poison was +brucine, and you were to take a milligramme the first day, two +milligrammes the second day, and so on. Well, at the end of ten days +you would have taken a centigramme, at the end of twenty days, +increasing another milligramme, you would have taken three hundred +centigrammes; that is to say, a dose which you would support without +inconvenience, and which would be very dangerous for any other person +who had not taken the same precautions as yourself. Well, then, at the +end of a month, when drinking water from the same carafe, you would +kill the person who drank with you, without your perceiving, otherwise +than from slight inconvenience, that there was any poisonous substance +mingled with this water.” + +“Do you know any other counter-poisons?” + +“I do not.” + +“I have often read, and read again, the history of Mithridates,” said +Madame de Villefort in a tone of reflection, “and had always considered +it a fable.” + +“No, madame, contrary to most history, it is true; but what you tell +me, madame, what you inquire of me, is not the result of a chance +query, for two years ago you asked me the same questions, and said +then, that for a very long time this history of Mithridates had +occupied your mind.” + +“True, sir. The two favorite studies of my youth were botany and +mineralogy, and subsequently, when I learned that the use of simples +frequently explained the whole history of a people, and the entire life +of individuals in the East, as flowers betoken and symbolize a love +affair, I have regretted that I was not a man, that I might have been a +Flamel, a Fontana, or a Cabanis.” + +“And the more, madame,” said Monte Cristo, “as the Orientals do not +confine themselves, as did Mithridates, to make a cuirass of his +poisons, but they also made them a dagger. Science becomes, in their +hands, not only a defensive weapon, but still more frequently an +offensive one; the one serves against all their physical sufferings, +the other against all their enemies. With opium, belladonna, brucea, +snake-wood, and the cherry-laurel, they put to sleep all who stand in +their way. There is not one of those women, Egyptian, Turkish, or +Greek, whom here you call ‘good women,’ who do not know how, by means +of chemistry, to stupefy a doctor, and in psychology to amaze a +confessor.” + +“Really,” said Madame de Villefort, whose eyes sparkled with strange +fire at this conversation. + +“Oh, yes, indeed, madame,” continued Monte Cristo, “the secret dramas +of the East begin with a love philtre and end with a death potion—begin +with paradise and end with—hell. There are as many elixirs of every +kind as there are caprices and peculiarities in the physical and moral +nature of humanity; and I will say further—the art of these chemists is +capable with the utmost precision to accommodate and proportion the +remedy and the bane to yearnings for love or desires for vengeance.” + +“But, sir,” remarked the young woman, “these Eastern societies, in the +midst of which you have passed a portion of your existence, are as +fantastic as the tales that come from their strange land. A man can +easily be put out of the way there, then; it is, indeed, the Bagdad and +Bassora of the _Thousand and One Nights_. The sultans and viziers who +rule over society there, and who constitute what in France we call the +government, are really Haroun-al-Raschids and Giaffars, who not only +pardon a poisoner, but even make him a prime minister, if his crime has +been an ingenious one, and who, under such circumstances, have the +whole story written in letters of gold, to divert their hours of +idleness and _ennui_.” + +“By no means, madame; the fanciful exists no longer in the East. There, +disguised under other names, and concealed under other costumes, are +police agents, magistrates, attorneys-general, and bailiffs. They hang, +behead, and impale their criminals in the most agreeable possible +manner; but some of these, like clever rogues, have contrived to escape +human justice, and succeed in their fraudulent enterprises by cunning +stratagems. Amongst us a simpleton, possessed by the demon of hate or +cupidity, who has an enemy to destroy, or some near relation to dispose +of, goes straight to the grocer’s or druggist’s, gives a false name, +which leads more easily to his detection than his real one, and under +the pretext that the rats prevent him from sleeping, purchases five or +six grammes of arsenic—if he is really a cunning fellow, he goes to +five or six different druggists or grocers, and thereby becomes only +five or six times more easily traced;—then, when he has acquired his +specific, he administers duly to his enemy, or near kinsman, a dose of +arsenic which would make a mammoth or mastodon burst, and which, +without rhyme or reason, makes his victim utter groans which alarm the +entire neighborhood. Then arrive a crowd of policemen and constables. +They fetch a doctor, who opens the dead body, and collects from the +entrails and stomach a quantity of arsenic in a spoon. Next day a +hundred newspapers relate the fact, with the names of the victim and +the murderer. The same evening the grocer or grocers, druggist or +druggists, come and say, ‘It was I who sold the arsenic to the +gentleman;’ and rather than not recognize the guilty purchaser, they +will recognize twenty. Then the foolish criminal is taken, imprisoned, +interrogated, confronted, confounded, condemned, and cut off by hemp or +steel; or if she be a woman of any consideration, they lock her up for +life. This is the way in which you Northerns understand chemistry, +madame. Desrues was, however, I must confess, more skilful.” + +“What would you have, sir?” said the lady, laughing; “we do what we +can. All the world has not the secret of the Medicis or the Borgias.” + +“Now,” replied the count, shrugging his shoulders, “shall I tell you +the cause of all these stupidities? It is because, at your theatres, by +what at least I could judge by reading the pieces they play, they see +persons swallow the contents of a phial, or suck the button of a ring, +and fall dead instantly. Five minutes afterwards the curtain falls, and +the spectators depart. They are ignorant of the consequences of the +murder; they see neither the police commissary with his badge of +office, nor the corporal with his four men; and so the poor fools +believe that the whole thing is as easy as lying. But go a little way +from France—go either to Aleppo or Cairo, or only to Naples or Rome, +and you will see people passing by you in the streets—people erect, +smiling, and fresh-colored, of whom Asmodeus, if you were holding on by +the skirt of his mantle, would say, ‘That man was poisoned three weeks +ago; he will be a dead man in a month.’” + +“Then,” remarked Madame de Villefort, “they have again discovered the +secret of the famous _aqua Tofana_ that they said was lost at Perugia.” + +“Ah, but madame, does mankind ever lose anything? The arts change about +and make a tour of the world; things take a different name, and the +vulgar do not follow them—that is all; but there is always the same +result. Poisons act particularly on some organ or another—one on the +stomach, another on the brain, another on the intestines. Well, the +poison brings on a cough, the cough an inflammation of the lungs, or +some other complaint catalogued in the book of science, which, however, +by no means precludes it from being decidedly mortal; and if it were +not, would be sure to become so, thanks to the remedies applied by +foolish doctors, who are generally bad chemists, and which will act in +favor of or against the malady, as you please; and then there is a +human being killed according to all the rules of art and skill, and of +whom justice learns nothing, as was said by a terrible chemist of my +acquaintance, the worthy Abbé Adelmonte of Taormina, in Sicily, who has +studied these national phenomena very profoundly.” + +“It is quite frightful, but deeply interesting,” said the young lady, +motionless with attention. “I thought, I must confess, that these +tales, were inventions of the Middle Ages.” + +“Yes, no doubt, but improved upon by ours. What is the use of time, +rewards of merit, medals, crosses, Monthyon prizes, if they do not lead +society towards more complete perfection? Yet man will never be perfect +until he learns to create and destroy; he does know how to destroy, and +that is half the battle.” + +“So,” added Madame de Villefort, constantly returning to her object, +“the poisons of the Borgias, the Medicis, the Renées, the Ruggieris, +and later, probably, that of Baron de Trenck, whose story has been so +misused by modern drama and romance——” + +“Were objects of art, madame, and nothing more,” replied the count. “Do +you suppose that the real _savant_ addresses himself stupidly to the +mere individual? By no means. Science loves eccentricities, leaps and +bounds, trials of strength, fancies, if I may be allowed so to term +them. Thus, for instance, the excellent Abbé Adelmonte, of whom I spoke +just now, made in this way some marvellous experiments.” + +“Really?” + +“Yes; I will mention one to you. He had a remarkably fine garden, full +of vegetables, flowers, and fruit. From amongst these vegetables he +selected the most simple—a cabbage, for instance. For three days he +watered this cabbage with a distillation of arsenic; on the third, the +cabbage began to droop and turn yellow. At that moment he cut it. In +the eyes of everybody it seemed fit for table, and preserved its +wholesome appearance. It was only poisoned to the Abbé Adelmonte. He +then took the cabbage to the room where he had rabbits—for the Abbé +Adelmonte had a collection of rabbits, cats, and guinea-pigs, fully as +fine as his collection of vegetables, flowers, and fruit. Well, the +Abbé Adelmonte took a rabbit, and made it eat a leaf of the cabbage. +The rabbit died. What magistrate would find, or even venture to +insinuate, anything against this? What procureur has ever ventured to +draw up an accusation against M. Magendie or M. Flourens, in +consequence of the rabbits, cats, and guinea-pigs they have killed?—not +one. So, then, the rabbit dies, and justice takes no notice. This +rabbit dead, the Abbé Adelmonte has its entrails taken out by his cook +and thrown on the dunghill; on this dunghill is a hen, who, pecking +these intestines, is in her turn taken ill, and dies next day. At the +moment when she is struggling in the convulsions of death, a vulture is +flying by (there are a good many vultures in Adelmonte’s country); this +bird darts on the dead fowl, and carries it away to a rock, where it +dines off its prey. Three days afterwards, this poor vulture, which has +been very much indisposed since that dinner, suddenly feels very giddy +while flying aloft in the clouds, and falls heavily into a fish-pond. +The pike, eels, and carp eat greedily always, as everybody knows—well, +they feast on the vulture. Now suppose that next day, one of these +eels, or pike, or carp, poisoned at the fourth remove, is served up at +your table. Well, then, your guest will be poisoned at the fifth +remove, and die, at the end of eight or ten days, of pains in the +intestines, sickness, or abscess of the pylorus. The doctors open the +body and say with an air of profound learning, ‘The subject has died of +a tumor on the liver, or of typhoid fever!’” + +“But,” remarked Madame de Villefort, “all these circumstances which you +link thus to one another may be broken by the least accident; the +vulture may not see the fowl, or may fall a hundred yards from the +fish-pond.” + +“Ah, that is where the art comes in. To be a great chemist in the East, +one must direct chance; and this is to be achieved.” + +Madame de Villefort was in deep thought, yet listened attentively. + +“But,” she exclaimed, suddenly, “arsenic is indelible, indestructible; +in whatsoever way it is absorbed, it will be found again in the body of +the victim from the moment when it has been taken in sufficient +quantity to cause death.” + +“Precisely so,” cried Monte Cristo—“precisely so; and this is what I +said to my worthy Adelmonte. He reflected, smiled, and replied to me by +a Sicilian proverb, which I believe is also a French proverb, ‘My son, +the world was not made in a day—but in seven. Return on Sunday.’ On the +Sunday following I did return to him. Instead of having watered his +cabbage with arsenic, he had watered it this time with a solution of +salts, having their basis in strychnine, _strychnos colubrina_, as the +learned term it. Now, the cabbage had not the slightest appearance of +disease in the world, and the rabbit had not the smallest distrust; +yet, five minutes afterwards, the rabbit was dead. The fowl pecked at +the rabbit, and the next day was a dead hen. This time we were the +vultures; so we opened the bird, and this time all special symptoms had +disappeared, there were only general symptoms. There was no peculiar +indication in any organ—an excitement of the nervous system—that was +it; a case of cerebral congestion—nothing more. The fowl had not been +poisoned—she had died of apoplexy. Apoplexy is a rare disease among +fowls, I believe, but very common among men.” + +Madame de Villefort appeared more and more thoughtful. + +“It is very fortunate,” she observed, “that such substances could only +be prepared by chemists; otherwise, all the world would be poisoning +each other.” + +“By chemists and persons who have a taste for chemistry,” said Monte +Cristo carelessly. + +“And then,” said Madame de Villefort, endeavoring by a struggle, and +with effort, to get away from her thoughts, “however skilfully it is +prepared, crime is always crime, and if it avoid human scrutiny, it +does not escape the eye of God. The Orientals are stronger than we are +in cases of conscience, and, very prudently, have no hell—that is the +point.” + +30075m + + + +“Really, madame, this is a scruple which naturally must occur to a pure +mind like yours, but which would easily yield before sound reasoning. +The bad side of human thought will always be defined by the paradox of +Jean Jacques Rousseau,—you remember,—the mandarin who is killed five +hundred leagues off by raising the tip of the finger. Man’s whole life +passes in doing these things, and his intellect is exhausted by +reflecting on them. You will find very few persons who will go and +brutally thrust a knife in the heart of a fellow-creature, or will +administer to him, in order to remove him from the surface of the globe +on which we move with life and animation, that quantity of arsenic of +which we just now talked. Such a thing is really out of rule—eccentric +or stupid. To attain such a point, the blood must be heated to +thirty-six degrees, the pulse be, at least, at ninety, and the feelings +excited beyond the ordinary limit. But suppose one pass, as is +permissible in philology, from the word itself to its softened synonym, +then, instead of committing an ignoble assassination you make an +‘elimination;’ you merely and simply remove from your path the +individual who is in your way, and that without shock or violence, +without the display of the sufferings which, in the case of becoming a +punishment, make a martyr of the victim, and a butcher, in every sense +of the word, of him who inflicts them. Then there will be no blood, no +groans, no convulsions, and above all, no consciousness of that horrid +and compromising moment of accomplishing the act,—then one escapes the +clutch of the human law, which says, ‘Do not disturb society!’ This is +the mode in which they manage these things, and succeed in Eastern +climes, where there are grave and phlegmatic persons who care very +little for the questions of time in conjunctures of importance.” + +“Yet conscience remains,” remarked Madame de Villefort in an agitated +voice, and with a stifled sigh. + +“Yes,” answered Monte Cristo “happily, yes, conscience does remain; and +if it did not, how wretched we should be! After every action requiring +exertion, it is conscience that saves us, for it supplies us with a +thousand good excuses, of which we alone are judges; and these reasons, +howsoever excellent in producing sleep, would avail us but very little +before a tribunal, when we were tried for our lives. Thus Richard III., +for instance, was marvellously served by his conscience after the +putting away of the two children of Edward IV.; in fact, he could say, +‘These two children of a cruel and persecuting king, who have inherited +the vices of their father, which I alone could perceive in their +juvenile propensities—these two children are impediments in my way of +promoting the happiness of the English people, whose unhappiness they +(the children) would infallibly have caused.’ Thus was Lady Macbeth +served by her conscience, when she sought to give her son, and not her +husband (whatever Shakespeare may say), a throne. Ah, maternal love is +a great virtue, a powerful motive—so powerful that it excuses a +multitude of things, even if, after Duncan’s death, Lady Macbeth had +been at all pricked by her conscience.” + +Madame de Villefort listened with avidity to these appalling maxims and +horrible paradoxes, delivered by the count with that ironical +simplicity which was peculiar to him. + +After a moment’s silence, the lady inquired: + +“Do you know, my dear count,” she said, “that you are a very terrible +reasoner, and that you look at the world through a somewhat distempered +medium? Have you really measured the world by scrutinies, or through +alembics and crucibles? For you must indeed be a great chemist, and the +elixir you administered to my son, which recalled him to life almost +instantaneously——” + +30077m + + + +“Oh, do not place any reliance on that, madame; _one_ drop of that +elixir sufficed to recall life to a dying child, but three drops would +have impelled the blood into his lungs in such a way as to have +produced most violent palpitations; six would have suspended his +respiration, and caused syncope more serious than that in which he was; +ten would have destroyed him. You know, madame, how suddenly I snatched +him from those phials which he so imprudently touched?” + +“Is it then so terrible a poison?” + +“Oh, no! In the first place, let us agree that the word poison does not +exist, because in medicine use is made of the most violent poisons, +which become, according as they are employed, most salutary remedies.” + +“What, then, is it?” + +“A skilful preparation of my friend’s the worthy Abbé Adelmonte, who +taught me the use of it.” + +“Oh,” observed Madame de Villefort, “it must be an admirable +anti-spasmodic.” + +“Perfect, madame, as you have seen,” replied the count; “and I +frequently make use of it—with all possible prudence though, be it +observed,” he added with a smile of intelligence. + +“Most assuredly,” responded Madame de Villefort in the same tone. “As +for me, so nervous, and so subject to fainting fits, I should require a +Doctor Adelmonte to invent for me some means of breathing freely and +tranquillizing my mind, in the fear I have of dying some fine day of +suffocation. In the meanwhile, as the thing is difficult to find in +France, and your abbé is not probably disposed to make a journey to +Paris on my account, I must continue to use Monsieur Planche’s +anti-spasmodics; and mint and Hoffman’s drops are among my favorite +remedies. Here are some lozenges which I have made up on purpose; they +are compounded doubly strong.” + +Monte Cristo opened the tortoise-shell box, which the lady presented to +him, and inhaled the odor of the lozenges with the air of an amateur +who thoroughly appreciated their composition. + +“They are indeed exquisite,” he said; “but as they are necessarily +submitted to the process of deglutition—a function which it is +frequently impossible for a fainting person to accomplish—I prefer my +own specific.” + +“Undoubtedly, and so should I prefer it, after the effects I have seen +produced; but of course it is a secret, and I am not so indiscreet as +to ask it of you.” + +“But I,” said Monte Cristo, rising as he spoke—“I am gallant enough to +offer it you.” + +30079m + + + +“How kind you are.” + +“Only remember one thing—a small dose is a remedy, a large one is +poison. One drop will restore life, as you have seen; five or six will +inevitably kill, and in a way the more terrible inasmuch as, poured +into a glass of wine, it would not in the slightest degree affect its +flavor. But I say no more, madame; it is really as if I were +prescribing for you.” + +The clock struck half-past six, and a lady was announced, a friend of +Madame de Villefort, who came to dine with her. + +“If I had had the honor of seeing you for the third or fourth time, +count, instead of only for the second,” said Madame de Villefort; “if I +had had the honor of being your friend, instead of only having the +happiness of being under an obligation to you, I should insist on +detaining you to dinner, and not allow myself to be daunted by a first +refusal.” + +“A thousand thanks, madame,” replied Monte Cristo “but I have an +engagement which I cannot break. I have promised to escort to the +Académie a Greek princess of my acquaintance who has never seen your +grand opera, and who relies on me to conduct her thither.” + +“Adieu, then, sir, and do not forget the prescription.” + +“Ah, in truth, madame, to do that I must forget the hour’s conversation +I have had with you, which is indeed impossible.” + +Monte Cristo bowed, and left the house. Madame de Villefort remained +immersed in thought. + +“He is a very strange man,” she said, “and in my opinion is himself the +Adelmonte he talks about.” + +As to Monte Cristo the result had surpassed his utmost expectations. + +“Good,” said he, as he went away; “this is a fruitful soil, and I feel +certain that the seed sown will not be cast on barren ground.” + +Next morning, faithful to his promise, he sent the prescription +requested. + + + + Chapter 53. Robert le Diable + +The pretext of an opera engagement was so much the more feasible, as +there chanced to be on that very night a more than ordinary attraction +at the Académie Royale. Levasseur, who had been suffering under severe +illness, made his reappearance in the character of _Bertram_, and, as +usual, the announcement of the most admired production of the favorite +composer of the day had attracted a brilliant and fashionable audience. +Morcerf, like most other young men of rank and fortune, had his +orchestra stall, with the certainty of always finding a seat in at +least a dozen of the principal boxes occupied by persons of his +acquaintance; he had, moreover, his right of entry into the omnibus +box. Château-Renaud rented a stall beside his own, while Beauchamp, as +a journalist, had unlimited range all over the theatre. It happened +that on this particular night the minister’s box was placed at the +disposal of Lucien Debray, who offered it to the Comte de Morcerf, who +again, upon his rejection of it by Mercédès, sent it to Danglars, with +an intimation that he should probably do himself the honor of joining +the baroness and her daughter during the evening, in the event of their +accepting the box in question. The ladies received the offer with too +much pleasure to dream of a refusal. To no class of persons is the +presentation of a gratuitous opera-box more acceptable than to the +wealthy millionaire, who still hugs economy while boasting of carrying +a king’s ransom in his waistcoat pocket. + +Danglars had, however, protested against showing himself in a +ministerial box, declaring that his political principles, and his +parliamentary position as member of the opposition party would not +permit him so to commit himself; the baroness had, therefore, +despatched a note to Lucien Debray, bidding him call for them, it being +wholly impossible for her to go alone with Eugénie to the opera. + +There is no gainsaying the fact that a very unfavorable construction +would have been put upon the circumstance if the two women had gone +without escort, while the addition of a third, in the person of her +mother’s admitted lover, enabled Mademoiselle Danglars to defy malice +and ill-nature. One must take the world as one finds it. + +30083m + + + +The curtain rose, as usual, to an almost empty house, it being one of +the absurdities of Parisian fashion never to appear at the opera until +after the beginning of the performance, so that the first act is +generally played without the slightest attention being paid to it, that +part of the audience already assembled being too much occupied in +observing the fresh arrivals, while nothing is heard but the noise of +opening and shutting doors, and the buzz of conversation. + +“Surely,” said Albert, as the door of a box on the first circle opened, +“that must be the Countess G——.” + +“And who is the Countess G——?” inquired Château-Renaud. + +“What a question! Now, do you know, baron, I have a great mind to pick +a quarrel with you for asking it; as if all the world did not know who +the Countess G—— was.” + +“Ah, to be sure,” replied Château-Renaud; “the lovely Venetian, is it +not?” + +“Herself.” At this moment the countess perceived Albert, and returned +his salutation with a smile. + +“You know her, it seems?” said Château-Renaud. + +“Franz introduced me to her at Rome,” replied Albert. + +“Well, then, will you do as much for me in Paris as Franz did for you +in Rome?” + +“With pleasure.” + +There was a cry of “Shut up!” from the audience. This manifestation on +the part of the spectators of their wish to be allowed to hear the +music, produced not the slightest effect on the two young men, who +continued their conversation. + +“The countess was present at the races in the Champ-de-Mars,” said +Château-Renaud. + +“Today?” + +“Yes.” + +“Bless me, I quite forgot the races. Did you bet?” + +“Oh, merely a paltry fifty louis.” + +“And who was the winner?” + +“Nautilus. I staked on him.” + +“But there were three races, were there not?” + +“Yes; there was the prize given by the Jockey Club—a gold cup, you +know—and a very singular circumstance occurred about that race.” + +“What was it?” + +“Oh, shut up!” again interposed some of the audience. + +“Why, it was won by a horse and rider utterly unknown on the course.” + +“Is that possible?” + +“True as day. The fact was, nobody had observed a horse entered by the +name of Vampa, or that of a jockey styled Job, when, at the last +moment, a splendid roan, mounted by a jockey about as big as your fist, +presented themselves at the starting-post. They were obliged to stuff +at least twenty pounds weight of shot in the small rider’s pockets, to +make him weight; but with all that he outstripped Ariel and Barbare, +against whom he ran, by at least three whole lengths.” + +“And was it not found out at last to whom the horse and jockey +belonged?” + +“No.” + +“You say that the horse was entered under the name of Vampa?” + +“Exactly; that was the title.” + +“Then,” answered Albert, “I am better informed than you are, and know +who the owner of that horse was.” + +“Shut up, there!” cried the pit in chorus. And this time the tone and +manner in which the command was given, betokened such growing hostility +that the two young men perceived, for the first time, that the mandate +was addressed to them. Leisurely turning round, they calmly scrutinized +the various countenances around them, as though demanding some one +person who would take upon himself the responsibility of what they +deemed excessive impertinence; but as no one responded to the +challenge, the friends turned again to the front of the theatre, and +affected to busy themselves with the stage. At this moment the door of +the minister’s box opened, and Madame Danglars, accompanied by her +daughter, entered, escorted by Lucien Debray, who assiduously conducted +them to their seats. + +“Ha, ha,” said Château-Renaud, “here come some friends of yours, +viscount! What are you looking at there? don’t you see they are trying +to catch your eye?” + +Albert turned round, just in time to receive a gracious wave of the fan +from the baroness; as for Mademoiselle Eugénie, she scarcely vouchsafed +to waste the glances of her large black eyes even upon the business of +the stage. + +“I tell you what, my dear fellow,” said Château-Renaud, “I cannot +imagine what objection you can possibly have to Mademoiselle +Danglars—that is, setting aside her want of ancestry and somewhat +inferior rank, which by the way I don’t think you care very much about. +Now, barring all that, I mean to say she is a deuced fine girl!” + +“Handsome, certainly,” replied Albert, “but not to my taste, which I +confess, inclines to something softer, gentler, and more feminine.” + +“Ah, well,” exclaimed Château-Renaud, who because he had seen his +thirtieth summer fancied himself duly warranted in assuming a sort of +paternal air with his more youthful friend, “you young people are never +satisfied; why, what would you have more? your parents have chosen you +a bride built on the model of Diana, the huntress, and yet you are not +content.” + +“No, for that very resemblance affrights me; I should have liked +something more in the manner of the Venus of Milo or Capua; but this +chase-loving Diana, continually surrounded by her nymphs, gives me a +sort of alarm lest she should some day bring on me the fate of Actæon.” + +And, indeed, it required but one glance at Mademoiselle Danglars to +comprehend the justness of Morcerf’s remark. She was beautiful, but her +beauty was of too marked and decided a character to please a fastidious +taste; her hair was raven black, but its natural waves seemed somewhat +rebellious; her eyes, of the same color as her hair, were surmounted by +well-arched brows, whose great defect, however, consisted in an almost +habitual frown, while her whole physiognomy wore that expression of +firmness and decision so little in accordance with the gentler +attributes of her sex—her nose was precisely what a sculptor would have +chosen for a chiselled Juno. Her mouth, which might have been found +fault with as too large, displayed teeth of pearly whiteness, rendered +still more conspicuous by the brilliant carmine of her lips, +contrasting vividly with her naturally pale complexion. But that which +completed the almost masculine look Morcerf found so little to his +taste, was a dark mole, of much larger dimensions than these freaks of +nature generally are, placed just at the corner of her mouth; and the +effect tended to increase the expression of self-dependence that +characterized her countenance. + +The rest of Mademoiselle Eugénie’s person was in perfect keeping with +the head just described; she, indeed, reminded one of Diana, as +Château-Renaud observed, but her bearing was more haughty and resolute. + +As regarded her attainments, the only fault to be found with them was +the same that a fastidious connoisseur might have found with her +beauty, that they were somewhat too erudite and masculine for so young +a person. She was a perfect linguist, a first-rate artist, wrote +poetry, and composed music; to the study of the latter she professed to +be entirely devoted, following it with an indefatigable perseverance, +assisted by a schoolfellow,—a young woman without fortune whose talent +promised to develop into remarkable powers as a singer. It was rumored +that she was an object of almost paternal interest to one of the +principal composers of the day, who excited her to spare no pains in +the cultivation of her voice, which might hereafter prove a source of +wealth and independence. But this counsel effectually decided +Mademoiselle Danglars never to commit herself by being seen in public +with one destined for a theatrical life; and acting upon this +principle, the banker’s daughter, though perfectly willing to allow +Mademoiselle Louise d’Armilly (that was the name of the young virtuosa) +to practice with her through the day, took especial care not to be seen +in her company. Still, though not actually received at the Hôtel +Danglars in the light of an acknowledged friend, Louise was treated +with far more kindness and consideration than is usually bestowed on a +governess. + +The curtain fell almost immediately after the entrance of Madame +Danglars into her box, the band quitted the orchestra for the +accustomed half-hour’s interval allowed between the acts, and the +audience were left at liberty to promenade the salon or lobbies, or to +pay and receive visits in their respective boxes. + +Morcerf and Château-Renaud were amongst the first to avail themselves +of this permission. For an instant the idea struck Madame Danglars that +this eagerness on the part of the young viscount arose from his +impatience to join her party, and she whispered her expectations to her +daughter, that Albert was hurrying to pay his respects to them. +Mademoiselle Eugénie, however, merely returned a dissenting movement of +the head, while, with a cold smile, she directed the attention of her +mother to an opposite box on the first circle, in which sat the +Countess G——, and where Morcerf had just made his appearance. + +30087m + + + +“So we meet again, my travelling friend, do we?” cried the countess, +extending her hand to him with all the warmth and cordiality of an old +acquaintance; “it was really very good of you to recognize me so +quickly, and still more so to bestow your first visit on me.” + +“Be assured,” replied Albert, “that if I had been aware of your arrival +in Paris, and had known your address, I should have paid my respects to +you before this. Allow me to introduce my friend, Baron de +Château-Renaud, one of the few true gentlemen now to be found in +France, and from whom I have just learned that you were a spectator of +the races in the Champ-de-Mars, yesterday.” + +Château-Renaud bowed to the countess. + +“So you were at the races, baron?” inquired the countess eagerly. + +“Yes, madame.” + +“Well, then,” pursued Madame G—— with considerable animation, “you can +probably tell me who won the Jockey Club stakes?” + +“I am sorry to say I cannot,” replied the baron; “and I was just asking +the same question of Albert.” + +“Are you very anxious to know, countess?” asked Albert. + +“To know what?” + +“The name of the owner of the winning horse?” + +“Excessively; only imagine—but do tell me, viscount, whether you really +are acquainted with it or no?” + +“I beg your pardon, madame, but you were about to relate some story, +were you not? You said, ‘only imagine,’—and then paused. Pray +continue.” + +“Well, then, listen. You must know I felt so interested in the splendid +roan horse, with his elegant little rider, so tastefully dressed in a +pink satin jacket and cap, that I could not help praying for their +success with as much earnestness as though the half of my fortune were +at stake; and when I saw them outstrip all the others, and come to the +winning-post in such gallant style, I actually clapped my hands with +joy. Imagine my surprise, when, upon returning home, the first object I +met on the staircase was the identical jockey in the pink jacket! I +concluded that, by some singular chance, the owner of the winning horse +must live in the same hotel as myself; but, as I entered my apartments, +I beheld the very gold cup awarded as a prize to the unknown horse and +rider. Inside the cup was a small piece of paper, on which were written +these words—‘From Lord Ruthven to Countess G——.’” + +“Precisely; I was sure of it,” said Morcerf. + +“Sure of what?” + +“That the owner of the horse was Lord Ruthven himself.” + +“What Lord Ruthven do you mean?” + +“Why, our Lord Ruthven—the Vampire of the Salle Argentina!” + +“Is it possible?” exclaimed the countess; “is he here in Paris?” + +“To be sure,—why not?” + +“And you visit him?—meet him at your own house and elsewhere?” + +“I assure you he is my most intimate friend, and M. de Château-Renaud +has also the honor of his acquaintance.” + +“But why are you so sure of his being the winner of the Jockey Club +prize?” + +“Was not the winning horse entered by the name of Vampa?” + +“What of that?” + +“Why, do you not recollect the name of the celebrated bandit by whom I +was made prisoner?” + +“Oh, yes.” + +“And from whose hands the count extricated me in so wonderful a +manner?” + +“To be sure, I remember it all now.” + +“He called himself Vampa. You see, it’s evident where the count got the +name.” + +“But what could have been his motive for sending the cup to me?” + +“In the first place, because I had spoken much of you to him, as you +may believe; and in the second, because he delighted to see a +countrywoman take so lively an interest in his success.” + +“I trust and hope you never repeated to the count all the foolish +remarks we used to make about him?” + +“I should not like to affirm upon oath that I have not. Besides, his +presenting you the cup under the name of Lord Ruthven——” + +“Oh, but that is dreadful! Why, the man must owe me a fearful grudge.” + +“Does his action appear like that of an enemy?” + +“No; certainly not.” + +“Well, then——” + +“And so he is in Paris?” + +“Yes.” + +“And what effect does he produce?” + +“Why,” said Albert, “he was talked about for a week; then the +coronation of the queen of England took place, followed by the theft of +Mademoiselle Mars’s diamonds; and so people talked of something else.” + +“My good fellow,” said Château-Renaud, “the count is your friend and +you treat him accordingly. Do not believe what Albert is telling you, +countess; so far from the sensation excited in the Parisian circles by +the appearance of the Count of Monte Cristo having abated, I take upon +myself to declare that it is as strong as ever. His first astounding +act upon coming amongst us was to present a pair of horses, worth +32,000 francs, to Madame Danglars; his second, the almost miraculous +preservation of Madame de Villefort’s life; now it seems that he has +carried off the prize awarded by the Jockey Club. I therefore maintain, +in spite of Morcerf, that not only is the count the object of interest +at this present moment, but also that he will continue to be so for a +month longer if he pleases to exhibit an eccentricity of conduct which, +after all, may be his ordinary mode of existence.” + +“Perhaps you are right,” said Morcerf; “meanwhile, who is in the +Russian ambassador’s box?” + +“Which box do you mean?” asked the countess. + +“The one between the pillars on the first tier—it seems to have been +fitted up entirely afresh.” + +“Did you observe anyone during the first act?” asked Château-Renaud. + +“Where?” + +“In that box.” + +“No,” replied the countess, “it was certainly empty during the first +act;” then, resuming the subject of their previous conversation, she +said, “And so you really believe it was your mysterious Count of Monte +Cristo that gained the prize?” + +“I am sure of it.” + +“And who afterwards sent the cup to me?” + +“Undoubtedly.” + +“But I don’t know him,” said the countess; “I have a great mind to +return it.” + +“Do no such thing, I beg of you; he would only send you another, formed +of a magnificent sapphire, or hollowed out of a gigantic ruby. It is +his way, and you must take him as you find him.” + +At this moment the bell rang to announce the drawing up of the curtain +for the second act. Albert rose to return to his place. + +“Shall I see you again?” asked the countess. + +“At the end of the next act, with your permission, I will come and +inquire whether there is anything I can do for you in Paris?” + +“Pray take notice,” said the countess, “that my present residence is 22 +Rue de Rivoli, and that I am at home to my friends every Saturday +evening. So now, you are both forewarned.” + +The young men bowed, and quitted the box. Upon reaching their stalls, +they found the whole of the audience in the parterre standing up and +directing their gaze towards the box formerly possessed by the Russian +ambassador. A man of from thirty-five to forty years of age, dressed in +deep black, had just entered, accompanied by a young woman dressed +after the Eastern style. The lady was surpassingly beautiful, while the +rich magnificence of her attire drew all eyes upon her. + +“Hullo,” said Albert; “it is Monte Cristo and his Greek!” + +The strangers were, indeed, no other than the count and Haydée. In a +few moments the young girl had attracted the attention of the whole +house, and even the occupants of the boxes leaned forward to scrutinize +her magnificent diamonds. + +The second act passed away during one continued buzz of voices—one deep +whisper—intimating that some great and universally interesting event +had occurred; all eyes, all thoughts, were occupied with the young and +beautiful woman, whose gorgeous apparel and splendid jewels made a most +extraordinary spectacle. + +Upon this occasion an unmistakable sign from Madame Danglars intimated +her desire to see Albert in her box directly the curtain fell on the +second act, and neither the politeness nor good taste of Morcerf would +permit his neglecting an invitation so unequivocally given. At the +close of the act he therefore went to the baroness. + +Having bowed to the two ladies, he extended his hand to Debray. By the +baroness he was most graciously welcomed, while Eugénie received him +with her accustomed coldness. + +“My dear fellow,” said Debray, “you have come in the nick of time. +There is madame overwhelming me with questions respecting the count; +she insists upon it that I can tell her his birth, education, and +parentage, where he came from, and whither he is going. Being no +disciple of Cagliostro, I was wholly unable to do this; so, by way of +getting out of the scrape, I said, ‘Ask Morcerf; he has got the whole +history of his beloved Monte Cristo at his fingers’ ends;’ whereupon +the baroness signified her desire to see you.” + +“Is it not almost incredible,” said Madame Danglars, “that a person +having at least half a million of secret-service money at his command, +should possess so little information?” + +“Let me assure you, madame,” said Lucien, “that had I really the sum +you mention at my disposal, I would employ it more profitably than in +troubling myself to obtain particulars respecting the Count of Monte +Cristo, whose only merit in my eyes consists in his being twice as rich +as a nabob. However, I have turned the business over to Morcerf, so +pray settle it with him as may be most agreeable to you; for my own +part, I care nothing about the count or his mysterious doings.” + +30093m + + + +“I am very sure no nabob would have sent me a pair of horses worth +32,000 francs, wearing on their heads four diamonds valued at 5,000 +francs each.” + +“He seems to have a mania for diamonds,” said Morcerf, smiling, “and I +verily believe that, like Potemkin, he keeps his pockets filled, for +the sake of strewing them along the road, as Tom Thumb did his flint +stones.” + +“Perhaps he has discovered some mine,” said Madame Danglars. “I suppose +you know he has an order for unlimited credit on the baron’s banking +establishment?” + +“I was not aware of it,” replied Albert, “but I can readily believe +it.” + +“And, further, that he stated to M. Danglars his intention of only +staying a year in Paris, during which time he proposed to spend six +millions. + +“He must be the Shah of Persia, travelling _incog_.” + +“Have you noticed the remarkable beauty of the young woman, M. Lucien?” +inquired Eugénie. + +“I really never met with one woman so ready to do justice to the charms +of another as yourself,” responded Lucien, raising his lorgnette to his +eye. “A most lovely creature, upon my soul!” was his verdict. + +“Who is this young person, M. de Morcerf?” inquired Eugénie; “does +anybody know?” + +“Mademoiselle,” said Albert, replying to this direct appeal, “I can +give you very exact information on that subject, as well as on most +points relative to the mysterious person of whom we are now +conversing—the young woman is a Greek.” + +“So I should suppose by her dress; if you know no more than that, +everyone here is as well-informed as yourself.” + +“I am extremely sorry you find me so ignorant a _cicerone_,” replied +Morcerf, “but I am reluctantly obliged to confess, I have nothing +further to communicate—yes, stay, I do know one thing more, namely, +that she is a musician, for one day when I chanced to be breakfasting +with the count, I heard the sound of a guzla—it is impossible that it +could have been touched by any other finger than her own.” + +“Then your count entertains visitors, does he?” asked Madame Danglars. + +“Indeed he does, and in a most lavish manner, I can assure you.” + +“I must try and persuade M. Danglars to invite him to a ball or dinner, +or something of the sort, that he may be compelled to ask us in +return.” + +“What,” said Debray, laughing; “do you really mean you would go to his +house?” + +“Why not? my husband could accompany me.” + +“But do you know this mysterious count is a bachelor?” + +“You have ample proof to the contrary, if you look opposite,” said the +baroness, as she laughingly pointed to the beautiful Greek. + +“No, no!” exclaimed Debray; “that girl is not his wife: he told us +himself she was his slave. Do you not recollect, Morcerf, his telling +us so at your breakfast?” + +“Well, then,” said the baroness, “if slave she be, she has all the air +and manner of a princess.” + +“Of the ‘Arabian Nights’.” + +“If you like; but tell me, my dear Lucien, what it is that constitutes +a princess. Why, diamonds—and she is covered with them.” + +“To me she seems overloaded,” observed Eugénie; “she would look far +better if she wore fewer, and we should then be able to see her finely +formed throat and wrists.” + +“See how the artist peeps out!” exclaimed Madame Danglars. “My poor +Eugénie, you must conceal your passion for the fine arts.” + +“I admire all that is beautiful,” returned the young lady. + +“What do you think of the count?” inquired Debray; “he is not much +amiss, according to my ideas of good looks.” + +“The count,” repeated Eugénie, as though it had not occurred to her to +observe him sooner; “the count?—oh, he is so dreadfully pale.” + +“I quite agree with you,” said Morcerf; “and the secret of that very +pallor is what we want to find out. The Countess G—— insists upon it +that he is a vampire.” + +“Then the Countess G—— has returned to Paris, has she?” inquired the +baroness. + +“Is that she, mamma?” asked Eugénie; “almost opposite to us, with that +profusion of beautiful light hair?” + +“Yes,” said Madame Danglars, “that is she. Shall I tell you what you +ought to do, Morcerf?” + +“Command me, madame.” + +“Well, then, you should go and bring your Count of Monte Cristo to us.” + +“What for?” asked Eugénie. + +“What for? Why, to converse with him, of course. Have you really no +desire to meet him?” + +“None whatever,” replied Eugénie. + +“Strange child,” murmured the baroness. + +“He will very probably come of his own accord,” said Morcerf. “There; +do you see, madame, he recognizes you, and bows.” + +The baroness returned the salute in the most smiling and graceful +manner. + +“Well,” said Morcerf, “I may as well be magnanimous, and tear myself +away to forward your wishes. Adieu; I will go and try if there are any +means of speaking to him.” + +“Go straight to his box; that will be the simplest plan.” + +“But I have never been presented.” + +“Presented to whom?” + +“To the beautiful Greek.” + +“You say she is only a slave?” + +“While you assert that she is a queen, or at least a princess. No; I +hope that when he sees me leave you, he will come out.” + +“That is possible—go.” + +“I am going,” said Albert, as he made his parting bow. + +Just as he was passing the count’s box, the door opened, and Monte +Cristo came forth. After giving some directions to Ali, who stood in +the lobby, the count took Albert’s arm. Carefully closing the box door, +Ali placed himself before it, while a crowd of spectators assembled +round the Nubian. + +“Upon my word,” said Monte Cristo, “Paris is a strange city, and the +Parisians a very singular people. See that cluster of persons collected +around poor Ali, who is as much astonished as themselves; really one +might suppose he was the only Nubian they had ever beheld. Now I can +promise you, that a Frenchman might show himself in public, either in +Tunis, Constantinople, Bagdad, or Cairo, without being treated in that +way.” + +“That shows that the Eastern nations have too much good sense to waste +their time and attention on objects undeserving of either. However, as +far as Ali is concerned, I can assure you, the interest he excites is +merely from the circumstance of his being your attendant—you, who are +at this moment the most celebrated and fashionable person in Paris.” + +“Really? and what has procured me so flattering a distinction?” + +“What? why, yourself, to be sure! You give away horses worth a thousand +louis; you save the lives of ladies of high rank and beauty; under the +name of Major Black you run thoroughbreds ridden by tiny urchins not +larger than marmots; then, when you have carried off the golden trophy +of victory, instead of setting any value on it, you give it to the +first handsome woman you think of!” + +“And who has filled your head with all this nonsense?” + +“Why, in the first place, I heard it from Madame Danglars, who, by the +by, is dying to see you in her box, or to have you seen there by +others; secondly, I learned it from Beauchamp’s journal; and thirdly, +from my own imagination. Why, if you sought concealment, did you call +your horse Vampa?” + +“That was an oversight, certainly,” replied the count; “but tell me, +does the Count of Morcerf never visit the Opera? I have been looking +for him, but without success.” + +“He will be here tonight.” + +“In what part of the house?” + +“In the baroness’s box, I believe.” + +“That charming young woman with her is her daughter?” + +“Yes.” + +“I congratulate you.” + +Morcerf smiled. + +“We will discuss that subject at length some future time,” said he. +“But what do you think of the music?” + +“What music?” + +“Why, the music you have been listening to.” + +“Oh, it is well enough as the production of a human composer, sung by +featherless bipeds, to quote the late Diogenes.” + +“From which it would seem, my dear count, that you can at pleasure +enjoy the seraphic strains that proceed from the seven choirs of +paradise?” + +30097m + + + +“You are right, in some degree; when I wish to listen to sounds more +exquisitely attuned to melody than mortal ear ever yet listened to, I +go to sleep.” + +“Then sleep here, my dear count. The conditions are favorable; what +else was opera invented for?” + +“No, thank you. Your orchestra is too noisy. To sleep after the manner +I speak of, absolute calm and silence are necessary, and then a certain +preparation——” + +“I know—the famous hashish!” + +“Precisely. So, my dear viscount, whenever you wish to be regaled with +music come and sup with me.” + +“I have already enjoyed that treat when breakfasting with you,” said +Morcerf. + +“Do you mean at Rome?” + +“I do.” + +“Ah, then, I suppose you heard Haydée’s guzla; the poor exile +frequently beguiles a weary hour in playing over to me the airs of her +native land.” + +Morcerf did not pursue the subject, and Monte Cristo himself fell into +a silent reverie. + +The bell rang at this moment for the rising of the curtain. + +“You will excuse my leaving you,” said the count, turning in the +direction of his box. + +“What? Are you going?” + +“Pray, say everything that is kind to Countess G—— on the part of her +friend the vampire.” + +“And what message shall I convey to the baroness!” + +“That, with her permission, I shall do myself the honor of paying my +respects in the course of the evening.” + +The third act had begun; and during its progress the Count of Morcerf, +according to his promise, made his appearance in the box of Madame +Danglars. The Count of Morcerf was not a person to excite either +interest or curiosity in a place of public amusement; his presence, +therefore, was wholly unnoticed, save by the occupants of the box in +which he had just seated himself. + +The quick eye of Monte Cristo however, marked his coming; and a slight +though meaning smile passed over his lips. Haydée, whose soul seemed +centred in the business of the stage, like all unsophisticated natures, +delighted in whatever addressed itself to the eye or ear. + +30099m + + + +The third act passed off as usual. Mesdemoiselles Noblet, Julia, and +Leroux executed the customary pirouettes; Robert duly challenged the +Prince of Granada; and the royal father of the princess Isabella, +taking his daughter by the hand, swept round the stage with majestic +strides, the better to display the rich folds of his velvet robe and +mantle. After which the curtain again fell, and the spectators poured +forth from the theatre into the lobbies and salon. + +The count left his box, and a moment later was saluting the Baronne +Danglars, who could not restrain a cry of mingled pleasure and +surprise. + +“You are welcome, count!” she exclaimed, as he entered. “I have been +most anxious to see you, that I might repeat orally the thanks writing +can so ill express.” + +“Surely so trifling a circumstance cannot deserve a place in your +remembrance. Believe me, madame, I had entirely forgotten it.” + +“But it is not so easy to forget, monsieur, that the very next day +after your princely gift you saved the life of my dear friend, Madame +de Villefort, which was endangered by the very animals your generosity +restored to me.” + +30101m + + + +“This time, at least, I do not deserve your thanks. It was Ali, my +Nubian slave, who rendered this service to Madame de Villefort.” + +“Was it Ali,” asked the Count of Morcerf, “who rescued my son from the +hands of bandits?” + +“No, count,” replied Monte Cristo taking the hand held out to him by +the general; “in this instance I may fairly and freely accept your +thanks; but you have already tendered them, and fully discharged your +debt—if indeed there existed one—and I feel almost mortified to find +you still reverting to the subject. May I beg of you, baroness, to +honor me with an introduction to your daughter?” + +“Oh, you are no stranger—at least not by name,” replied Madame +Danglars, “and the last two or three days we have really talked of +nothing but you. Eugénie,” continued the baroness, turning towards her +daughter, “this is the Count of Monte Cristo.” + +The count bowed, while Mademoiselle Danglars bent her head slightly. + +“You have a charming young person with you tonight, count,” said +Eugénie. “Is she your daughter?” + +“No, mademoiselle,” said Monte Cristo, astonished at the coolness and +freedom of the question. “She is a poor unfortunate Greek left under my +care.” + +“And what is her name?” + +“Haydée,” replied Monte Cristo. + +“A Greek?” murmured the Count of Morcerf. + +“Yes, indeed, count,” said Madame Danglars; “and tell me, did you ever +see at the court of Ali Tepelini, whom you so gloriously and valiantly +served, a more exquisite beauty or richer costume?” + +“Did I hear rightly, monsieur,” said Monte Cristo “that you served at +Yanina?” + +“I was inspector-general of the pasha’s troops,” replied Morcerf; “and +it is no secret that I owe my fortune, such as it is, to the liberality +of the illustrious Albanese chief.” + +“But look!” exclaimed Madame Danglars. + +“Where?” stammered Morcerf. + +“There,” said Monte Cristo placing his arms around the count, and +leaning with him over the front of the box, just as Haydée, whose eyes +were occupied in examining the theatre in search of her guardian, +perceived his pale features close to Morcerf’s face. It was as if the +young girl beheld the head of Medusa. She bent forwards as though to +assure herself of the reality of what she saw, then, uttering a faint +cry, threw herself back in her seat. The sound was heard by the people +about Ali, who instantly opened the box-door. + +“Why, count,” exclaimed Eugénie, “what has happened to your ward? she +seems to have been taken suddenly ill. + +“Very probably,” answered the count. “But do not be alarmed on her +account. Haydée’s nervous system is delicately organized, and she is +peculiarly susceptible to the odors even of flowers—nay, there are some +which cause her to faint if brought into her presence. However,” +continued Monte Cristo, drawing a small phial from his pocket, “I have +an infallible remedy.” + +So saying, he bowed to the baroness and her daughter, exchanged a +parting shake of the hand with Debray and the count, and left Madame +Danglars’ box. Upon his return to Haydée he found her still very pale. +As soon as she saw him she seized his hand; her own hands were moist +and icy cold. + +“Who was it you were talking with over there?” she asked. + +“With the Count of Morcerf,” answered Monte Cristo. “He tells me he +served your illustrious father, and that he owes his fortune to him.” + +“Wretch!” exclaimed Haydée, her eyes flashing with rage; “he sold my +father to the Turks, and the fortune he boasts of was the price of his +treachery! Did not you know that, my dear lord?” + +“Something of this I heard in Epirus,” said Monte Cristo; “but the +particulars are still unknown to me. You shall relate them to me, my +child. They are, no doubt, both curious and interesting.” + +“Yes, yes; but let us go. I feel as though it would kill me to remain +long near that dreadful man.” + +So saying, Haydée arose, and wrapping herself in her burnouse of white +cashmere embroidered with pearls and coral, she hastily quitted the box +at the moment when the curtain was rising upon the fourth act. + +“Do you observe,” said the Countess G—— to Albert, who had returned to +her side, “that man does nothing like other people; he listens most +devoutly to the third act of _Robert le Diable_, and when the fourth +begins, takes his departure.” + + + + Chapter 54. A Flurry in Stocks + +Some days after this meeting, Albert de Morcerf visited the Count of +Monte Cristo at his house in the Champs-Élysées, which had already +assumed that palace-like appearance which the count’s princely fortune +enabled him to give even to his most temporary residences. He came to +renew the thanks of Madame Danglars which had been already conveyed to +the count through the medium of a letter, signed “Baronne Danglars, +_née_ Hermine de Servieux.” + +Albert was accompanied by Lucien Debray, who, joining in his friend’s +conversation, added some passing compliments, the source of which the +count’s talent for finesse easily enabled him to guess. He was +convinced that Lucien’s visit was due to a double feeling of curiosity, +the larger half of which sentiment emanated from the Rue de la Chaussée +d’Antin. In short, Madame Danglars, not being able personally to +examine in detail the domestic economy and household arrangements of a +man who gave away horses worth 30,000 francs and who went to the opera +with a Greek slave wearing diamonds to the amount of a million of +money, had deputed those eyes, by which she was accustomed to see, to +give her a faithful account of the mode of life of this +incomprehensible person. But the count did not appear to suspect that +there could be the slightest connection between Lucien’s visit and the +curiosity of the baroness. + +“You are in constant communication with the Baron Danglars?” the count +inquired of Albert de Morcerf. + +“Yes, count, you know what I told you?” + +“All remains the same, then, in that quarter?” + +“It is more than ever a settled thing,” said Lucien,—and, considering +that this remark was all that he was at that time called upon to make, +he adjusted the glass to his eye, and biting the top of his gold headed +cane, began to make the tour of the apartment, examining the arms and +the pictures. + +“Ah,” said Monte Cristo “I did not expect that the affair would be so +promptly concluded.” + +“Oh, things take their course without our assistance. While we are +forgetting them, they are falling into their appointed order; and when, +again, our attention is directed to them, we are surprised at the +progress they have made towards the proposed end. My father and M. +Danglars served together in Spain, my father in the army and M. +Danglars in the commissariat department. It was there that my father, +ruined by the revolution, and M. Danglars, who never had possessed any +patrimony, both laid the foundations of their different fortunes.” + +“Yes,” said Monte Cristo “I think M. Danglars mentioned that in a visit +which I paid him; and,” continued he, casting a side-glance at Lucien, +who was turning over the leaves of an album, “Mademoiselle Eugénie is +pretty—I think I remember that to be her name.” + +“Very pretty, or rather, very beautiful,” replied Albert, “but of that +style of beauty which I do not appreciate; I am an ungrateful fellow.” + +“You speak as if you were already her husband.” + +“Ah,” returned Albert, in his turn looking around to see what Lucien +was doing. + +“Really,” said Monte Cristo, lowering his voice, “you do not appear to +me to be very enthusiastic on the subject of this marriage.” + +“Mademoiselle Danglars is too rich for me,” replied Morcerf, “and that +frightens me.” + +“Bah,” exclaimed Monte Cristo, “that’s a fine reason to give. Are you +not rich yourself?” + +“My father’s income is about 50,000 francs per annum; and he will give +me, perhaps, ten or twelve thousand when I marry.” + +“That, perhaps, might not be considered a large sum, in Paris +especially,” said the count; “but everything does not depend on wealth, +and it is a fine thing to have a good name, and to occupy a high +station in society. Your name is celebrated, your position magnificent; +and then the Comte de Morcerf is a soldier, and it is pleasing to see +the integrity of a Bayard united to the poverty of a Duguesclin; +disinterestedness is the brightest ray in which a noble sword can +shine. As for me, I consider the union with Mademoiselle Danglars a +most suitable one; she will enrich you, and you will ennoble her.” + +Albert shook his head, and looked thoughtful. + +“There is still something else,” said he. + +“I confess,” observed Monte Cristo, “that I have some difficulty in +comprehending your objection to a young lady who is both rich and +beautiful.” + +“Oh,” said Morcerf, “this repugnance, if repugnance it may be called, +is not all on my side.” + +“Whence can it arise, then? for you told me your father desired the +marriage.” + +“It is my mother who dissents; she has a clear and penetrating +judgment, and does not smile on the proposed union. I cannot account +for it, but she seems to entertain some prejudice against the +Danglars.” + +30107m + + + +“Ah,” said the count, in a somewhat forced tone, “that may be easily +explained; the Comtesse de Morcerf, who is aristocracy and refinement +itself, does not relish the idea of being allied by your marriage with +one of ignoble birth; that is natural enough.” + +“I do not know if that is her reason,” said Albert, “but one thing I do +know, that if this marriage be consummated, it will render her quite +miserable. There was to have been a meeting six weeks ago in order to +talk over and settle the affair; but I had such a sudden attack of +indisposition——” + +“Real?” interrupted the count, smiling. + +“Oh, real enough, from anxiety doubtless,—at any rate they postponed +the matter for two months. There is no hurry, you know. I am not yet +twenty-one, and Eugénie is only seventeen; but the two months expire +next week. It must be done. My dear count, you cannot imagine how my +mind is harassed. How happy you are in being exempt from all this!” + +“Well, and why should not you be free, too? What prevents you from +being so?” + +“Oh, it will be too great a disappointment to my father if I do not +marry Mademoiselle Danglars.” + +“Marry her then,” said the count, with a significant shrug of the +shoulders. + +“Yes,” replied Morcerf, “but that will plunge my mother into positive +grief.” + +“Then do not marry her,” said the count. + +“Well, I shall see. I will try and think over what is the best thing to +be done; you will give me your advice, will you not, and if possible +extricate me from my unpleasant position? I think, rather than give +pain to my dear mother, I would run the risk of offending the count.” + +Monte Cristo turned away; he seemed moved by this last remark. + +“Ah,” said he to Debray, who had thrown himself into an easy-chair at +the farthest extremity of the salon, and who held a pencil in his right +hand and an account book in his left, “what are you doing there? Are +you making a sketch after Poussin?” + +“Oh, no,” was the tranquil response; “I am too fond of art to attempt +anything of that sort. I am doing a little sum in arithmetic.” + +“In arithmetic?” + +“Yes; I am calculating—by the way, Morcerf, that indirectly concerns +you—I am calculating what the house of Danglars must have gained by the +last rise in Haiti bonds; from 206 they have risen to 409 in three +days, and the prudent banker had purchased at 206; therefore he must +have made 300,000 livres.” + +“That is not his biggest scoop,” said Morcerf; “did he not make a +million in Spaniards this last year?” + +“My dear fellow,” said Lucien, “here is the Count of Monte Cristo, who +will say to you, as the Italians do,— + + “‘Denaro e santità, + + Metà della metà.’9 + + +“When they tell me such things, I only shrug my shoulders and say +nothing.” + +“But you were speaking of Haitians?” said Monte Cristo. + +“Ah, Haitians,—that is quite another thing! Haitians are the _écarté_ +of French stock-jobbing. We may like bouillotte, delight in whist, be +enraptured with boston, and yet grow tired of them all; but we always +come back to _écarté_—it is not only a game, it is a _hors-d’œuvre_! M. +Danglars sold yesterday at 405, and pockets 300,000 francs. Had he but +waited till today, the price would have fallen to 205, and instead of +gaining 300,000 francs, he would have lost 20 or 25,000.” + +“And what has caused the sudden fall from 409 to 206?” asked Monte +Cristo. “I am profoundly ignorant of all these stock-jobbing +intrigues.” + +“Because,” said Albert, laughing, “one piece of news follows another, +and there is often great dissimilarity between them.” + +“Ah,” said the count, “I see that M. Danglars is accustomed to play at +gaining or losing 300,000 francs in a day; he must be enormously rich.” + +“It is not he who plays!” exclaimed Lucien; “it is Madame Danglars; she +is indeed daring.” + +“But you who are a reasonable being, Lucien, and who knows how little +dependence is to be placed on the news, since you are at the +fountain-head, surely you ought to prevent it,” said Morcerf, with a +smile. + +“How can I, if her husband fails in controlling her?” asked Lucien; +“you know the character of the baroness—no one has any influence with +her, and she does precisely what she pleases.” + +“Ah, if I were in your place——” said Albert. + +“Well?” + +“I would reform her; it would be rendering a service to her future +son-in-law.” + +“How would you set about it?” + +“Ah, that would be easy enough—I would give her a lesson.” + +“A lesson?” + +“Yes. Your position as secretary to the minister renders your authority +great on the subject of political news; you never open your mouth but +the stockbrokers immediately stenograph your words. Cause her to lose a +hundred thousand francs, and that would teach her prudence.” + +“I do not understand,” stammered Lucien. + +“It is very clear, notwithstanding,” replied the young man, with an +artlessness wholly free from affectation; “tell her some fine morning +an unheard-of piece of intelligence—some telegraphic despatch, of which +you alone are in possession; for instance, that Henri IV. was seen +yesterday at Gabrielle’s. That would boom the market; she will buy +heavily, and she will certainly lose when Beauchamp announces the +following day, in his gazette, ‘The report circulated by some usually +well-informed persons that the king was seen yesterday at Gabrielle’s +house, is totally without foundation. We can positively assert that his +majesty did not quit the Pont-Neuf.’” + +Lucien half smiled. Monte Cristo, although apparently indifferent, had +not lost one word of this conversation, and his penetrating eye had +even read a hidden secret in the embarrassed manner of the secretary. +This embarrassment had completely escaped Albert, but it caused Lucien +to shorten his visit; he was evidently ill at ease. The count, in +taking leave of him, said something in a low voice, to which he +answered, “Willingly, count; I accept.” The count returned to young +Morcerf. + +“Do you not think, on reflection,” said he to him, “that you have done +wrong in thus speaking of your mother-in-law in the presence of M. +Debray?” + +“My dear count,” said Morcerf, “I beg of you not to apply that title so +prematurely.” + +“Now, speaking without any exaggeration, is your mother really so very +much averse to this marriage?” + +“So much so that the baroness very rarely comes to the house, and my +mother, has not, I think, visited Madame Danglars twice in her whole +life.” + +“Then,” said the count, “I am emboldened to speak openly to you. M. +Danglars is my banker; M. de Villefort has overwhelmed me with +politeness in return for a service which a casual piece of good fortune +enabled me to render him. I predict from all this an avalanche of +dinners and routs. Now, in order not to presume on this, and also to be +beforehand with them, I have, if agreeable to you, thought of inviting +M. and Madame Danglars, and M. and Madame de Villefort, to my +country-house at Auteuil. If I were to invite you and the Count and +Countess of Morcerf to this dinner, I should give it the appearance of +being a matrimonial meeting, or at least Madame de Morcerf would look +upon the affair in that light, especially if Baron Danglars did me the +honor to bring his daughter. In that case your mother would hold me in +aversion, and I do not at all wish that; on the contrary, I desire to +stand high in her esteem.” + +“Indeed, count,” said Morcerf, “I thank you sincerely for having used +so much candor towards me, and I gratefully accept the exclusion which +you propose. You say you desire my mother’s good opinion; I assure you +it is already yours to a very unusual extent.” + +30111m + + + +“Do you think so?” said Monte Cristo, with interest. + +“Oh, I am sure of it; we talked of you an hour after you left us the +other day. But to return to what we were saying. If my mother could +know of this attention on your part—and I will venture to tell her—I am +sure that she will be most grateful to you; it is true that my father +will be equally angry.” The count laughed. + +“Well,” said he to Morcerf, “but I think your father will not be the +only angry one; M. and Madame Danglars will think me a very +ill-mannered person. They know that I am intimate with you—that you +are, in fact; one of the oldest of my Parisian acquaintances—and they +will not find you at my house; they will certainly ask me why I did not +invite you. Be sure to provide yourself with some previous engagement +which shall have a semblance of probability, and communicate the fact +to me by a line in writing. You know that with bankers nothing but a +written document will be valid.” + +“I will do better than that,” said Albert; “my mother is wishing to go +to the sea-side—what day is fixed for your dinner?” + +“Saturday.” + +“This is Tuesday—well, tomorrow evening we leave, and the day after we +shall be at Tréport. Really, count, you have a delightful way of +setting people at their ease.” + +“Indeed, you give me more credit than I deserve; I only wish to do what +will be agreeable to you, that is all.” + +“When shall you send your invitations?” + +“This very day.” + +“Well, I will immediately call on M. Danglars, and tell him that my +mother and myself must leave Paris tomorrow. I have not seen you, +consequently I know nothing of your dinner.” + +“How foolish you are! Have you forgotten that M. Debray has just seen +you at my house?” + +“Ah, true.” + +“Fix it this way. I have seen you, and invited you without any +ceremony, when you instantly answered that it would be impossible for +you to accept, as you were going to Tréport.” + +“Well, then, that is settled; but you will come and call on my mother +before tomorrow?” + +“Before tomorrow?—that will be a difficult matter to arrange, besides, +I shall just be in the way of all the preparations for departure.” + +“Well, you can do better. You were only a charming man before, but, if +you accede to my proposal, you will be adorable.” + +“What must I do to attain such sublimity?” + +“You are today free as air—come and dine with me; we shall be a small +party—only yourself, my mother, and I. You have scarcely seen my +mother; you shall have an opportunity of observing her more closely. +She is a remarkable woman, and I only regret that there does not exist +another like her, about twenty years younger; in that case, I assure +you, there would very soon be a Countess and Viscountess of Morcerf. As +to my father, you will not see him; he is officially engaged, and dines +with the chief referendary. We will talk over our travels; and you, who +have seen the whole world, will relate your adventures—you shall tell +us the history of the beautiful Greek who was with you the other night +at the Opera, and whom you call your slave, and yet treat like a +princess. We will talk Italian and Spanish. Come, accept my invitation, +and my mother will thank you.” + +“A thousand thanks,” said the count, “your invitation is most gracious, +and I regret exceedingly that it is not in my power to accept it. I am +not so much at liberty as you suppose; on the contrary, I have a most +important engagement.” + +“Ah, take care, you were teaching me just now how, in case of an +invitation to dinner, one might creditably make an excuse. I require +the proof of a pre-engagement. I am not a banker, like M. Danglars, but +I am quite as incredulous as he is.” + +“I am going to give you a proof,” replied the count, and he rang the +bell. + +“Humph,” said Morcerf, “this is the second time you have refused to +dine with my mother; it is evident that you wish to avoid her.” + +Monte Cristo started. “Oh, you do not mean that,” said he; “besides, +here comes the confirmation of my assertion.” + +Baptistin entered, and remained standing at the door. + +“I had no previous knowledge of your visit, had I?” + +“Indeed, you are such an extraordinary person, that I would not answer +for it.” + +“At all events, I could not guess that you would invite me to dinner.” + +“Probably not.” + +“Well, listen, Baptistin, what did I tell you this morning when I +called you into my laboratory?” + +“To close the door against visitors as soon as the clock struck five,” +replied the valet. + +“What then?” + +“Ah, my dear count,” said Albert. + +“No, no, I wish to do away with that mysterious reputation that you +have given me, my dear viscount; it is tiresome to be always acting +Manfred. I wish my life to be free and open. Go on, Baptistin.” + +“Then to admit no one except Major Bartolomeo Cavalcanti and his son.” + +“You hear—Major Bartolomeo Cavalcanti—a man who ranks amongst the most +ancient nobility of Italy, whose name Dante has celebrated in the tenth +canto of _The Inferno_, you remember it, do you not? Then there is his +son, Andrea, a charming young man, about your own age, viscount, +bearing the same title as yourself, and who is making his entry into +the Parisian world, aided by his father’s millions. The major will +bring his son with him this evening, the _contino_, as we say in Italy; +he confides him to my care. If he proves himself worthy of it, I will +do what I can to advance his interests. You will assist me in the work, +will you not?” + +“Most undoubtedly. This Major Cavalcanti is an old friend of yours, +then?” + +“By no means. He is a perfect nobleman, very polite, modest, and +agreeable, such as may be found constantly in Italy, descendants of +very ancient families. I have met him several times at Florence, +Bologna and Lucca, and he has now communicated to me the fact of his +arrival in Paris. The acquaintances one makes in travelling have a sort +of claim on one; they everywhere expect to receive the same attention +which you once paid them by chance, as though the civilities of a +passing hour were likely to awaken any lasting interest in favor of the +man in whose society you may happen to be thrown in the course of your +journey. This good Major Cavalcanti is come to take a second view of +Paris, which he only saw in passing through in the time of the Empire, +when he was on his way to Moscow. I shall give him a good dinner, he +will confide his son to my care, I will promise to watch over him, I +shall let him follow in whatever path his folly may lead him, and then +I shall have done my part.” + +“Certainly; I see you are a model Mentor,” said Albert “Good-bye, we +shall return on Sunday. By the way, I have received news of Franz.” + +“Have you? Is he still amusing himself in Italy?” + +“I believe so; however, he regrets your absence extremely. He says you +were the sun of Rome, and that without you all appears dark and cloudy; +I do not know if he does not even go so far as to say that it rains.” + +“His opinion of me is altered for the better, then?” + +“No, he still persists in looking upon you as the most incomprehensible +and mysterious of beings.” + +“He is a charming young man,” said Monte Cristo “and I felt a lively +interest in him the very first evening of my introduction, when I met +him in search of a supper, and prevailed upon him to accept a portion +of mine. He is, I think, the son of General d’Épinay?” + +“He is.” + +“The same who was so shamefully assassinated in 1815?” + +“By the Bonapartists.” + +“Yes. Really I like him extremely; is there not also a matrimonial +engagement contemplated for him?” + +“Yes, he is to marry Mademoiselle de Villefort.” + +“Indeed?” + +30115m + + + +“And you know I am to marry Mademoiselle Danglars,” said Albert, +laughing. + +“You smile.” + +“Yes.” + +“Why do you do so?” + +“I smile because there appears to me to be about as much inclination +for the consummation of the engagement in question as there is for my +own. But really, my dear count, we are talking as much of women as they +do of us; it is unpardonable.” + +Albert rose. + +“Are you going?” + +“Really, that is a good idea!—two hours have I been boring you to death +with my company, and then you, with the greatest politeness, ask me if +I am going. Indeed, count, you are the most polished man in the world. +And your servants, too, how very well behaved they are; there is quite +a style about them. Monsieur Baptistin especially; I could never get +such a man as that. My servants seem to imitate those you sometimes see +in a play, who, because they have only a word or two to say, aquit +themselves in the most awkward manner possible. Therefore, if you part +with M. Baptistin, give me the refusal of him.” + +“By all means.” + +“That is not all; give my compliments to your illustrious Luccanese, +Cavalcante of the Cavalcanti; and if by any chance he should be wishing +to establish his son, find him a wife very rich, very noble on her +mother’s side at least, and a baroness in right of her father, I will +help you in the search.” + +“Ah, ha; you will do as much as that, will you?” + +“Yes.” + +“Well, really, nothing is certain in this world.” + +“Oh, count, what a service you might render me! I should like you a +hundred times better if, by your intervention, I could manage to remain +a bachelor, even were it only for ten years.” + +“Nothing is impossible,” gravely replied Monte Cristo; and taking leave +of Albert, he returned into the house, and struck the gong three times. +Bertuccio appeared. + +“Monsieur Bertuccio, you understand that I intend entertaining company +on Saturday at Auteuil.” Bertuccio slightly started. “I shall require +your services to see that all be properly arranged. It is a beautiful +house, or at all events may be made so.” + +“There must be a good deal done before it can deserve that title, your +excellency, for the tapestried hangings are very old.” + +“Let them all be taken away and changed, then, with the exception of +the sleeping-chamber which is hung with red damask; you will leave that +exactly as it is.” Bertuccio bowed. “You will not touch the garden +either; as to the yard, you may do what you please with it; I should +prefer that being altered beyond all recognition.” + +“I will do everything in my power to carry out your wishes, your +excellency. I should be glad, however, to receive your excellency’s +commands concerning the dinner.” + +“Really, my dear M. Bertuccio,” said the count, “since you have been in +Paris, you have become quite nervous, and apparently out of your +element; you no longer seem to understand me.” + +“But surely your excellency will be so good as to inform me whom you +are expecting to receive?” + +“I do not yet know myself, neither is it necessary that you should do +so. ‘Lucullus dines with Lucullus,’ that is quite sufficient.” + +Bertuccio bowed, and left the room. + + + + Chapter 55. Major Cavalcanti + +Both the count and Baptistin had told the truth when they announced to +Morcerf the proposed visit of the major, which had served Monte Cristo +as a pretext for declining Albert’s invitation. Seven o’clock had just +struck, and M. Bertuccio, according to the command which had been given +him, had two hours before left for Auteuil, when a cab stopped at the +door, and after depositing its occupant at the gate, immediately +hurried away, as if ashamed of its employment. The visitor was about +fifty-two years of age, dressed in one of the green surtouts, +ornamented with black frogs, which have so long maintained their +popularity all over Europe. He wore trousers of blue cloth, boots +tolerably clean, but not of the brightest polish, and a little too +thick in the soles, buckskin gloves, a hat somewhat resembling in shape +those usually worn by the gendarmes, and a black cravat striped with +white, which, if the proprietor had not worn it of his own free will, +might have passed for a halter, so much did it resemble one. Such was +the picturesque costume of the person who rang at the gate, and +demanded if it was not at No. 30 in the Avenue des Champs-Élysées that +the Count of Monte Cristo lived, and who, being answered by the porter +in the affirmative, entered, closed the gate after him, and began to +ascend the steps. + +The small and angular head of this man, his white hair and thick gray +moustaches, caused him to be easily recognized by Baptistin, who had +received an exact description of the expected visitor, and who was +awaiting him in the hall. Therefore, scarcely had the stranger time to +pronounce his name before the count was apprised of his arrival. He was +ushered into a simple and elegant drawing-room, and the count rose to +meet him with a smiling air. + +“Ah, my dear sir, you are most welcome; I was expecting you.” + +“Indeed,” said the Italian, “was your excellency then aware of my +visit?” + +“Yes; I had been told that I should see you today at seven o’clock.” + +“Then you have received full information concerning my arrival?” + +“Of course.” + +“Ah, so much the better, I feared this little precaution might have +been forgotten.” + +30119m + + + +“What precaution?” + +“That of informing you beforehand of my coming.” + +“Oh, no, it has not.” + +“But you are sure you are not mistaken.” + +“Very sure.” + +“It really was I whom your excellency expected at seven o’clock this +evening?” + +“I will prove it to you beyond a doubt.” + +“Oh, no, never mind that,” said the Italian; “it is not worth the +trouble.” + +“Yes, yes,” said Monte Cristo. His visitor appeared slightly uneasy. +“Let me see,” said the count; “are you not the Marquis Bartolomeo +Cavalcanti?” + +“Bartolomeo Cavalcanti,” joyfully replied the Italian; “yes, I am +really he.” + +“Ex-major in the Austrian service?” + +“Was I a major?” timidly asked the old soldier. + +“Yes,” said Monte Cristo “you were a major; that is the title the +French give to the post which you filled in Italy.” + +“Very good,” said the major, “I do not demand more, you understand——” + +“Your visit here today is not of your own suggestion, is it?” said +Monte Cristo. + +“No, certainly not.” + +“You were sent by some other person?” + +“Yes.” + +“By the excellent Abbé Busoni?” + +“Exactly so,” said the delighted major. + +“And you have a letter?” + +“Yes, there it is.” + +“Give it to me, then.” And Monte Cristo took the letter, which he +opened and read. The major looked at the count with his large staring +eyes, and then took a survey of the apartment, but his gaze almost +immediately reverted to the proprietor of the room. + +“Yes, yes, I see. ‘Major Cavalcanti, a worthy patrician of Lucca, a +descendant of the Cavalcanti of Florence,’” continued Monte Cristo, +reading aloud, “‘possessing an income of half a million.’” + +Monte Cristo raised his eyes from the paper, and bowed. + +“Half a million,” said he, “magnificent!” + +“Half a million, is it?” said the major. + +“Yes, in so many words; and it must be so, for the abbé knows correctly +the amount of all the largest fortunes in Europe.” + +“Be it half a million, then; but on my word of honor, I had no idea +that it was so much.” + +“Because you are robbed by your steward. You must make some reformation +in that quarter.” + +“You have opened my eyes,” said the Italian gravely; “I will show the +gentlemen the door.” + +Monte Cristo resumed the perusal of the letter: + +“‘And who only needs one thing more to make him happy.’” + +“Yes, indeed but one!” said the major with a sigh. + +“‘Which is to recover a lost and adored son.’” + +“A lost and adored son!” + +“‘Stolen away in his infancy, either by an enemy of his noble family or +by the gypsies.’” + +“At the age of five years!” said the major with a deep sigh, and +raising his eye to heaven. + +“Unhappy father,” said Monte Cristo. The count continued: + +“‘I have given him renewed life and hope, in the assurance that you +have the power of restoring the son whom he has vainly sought for +fifteen years.’” + +The major looked at the count with an indescribable expression of +anxiety. + +“I have the power of so doing,” said Monte Cristo. The major recovered +his self-possession. + +“So, then,” said he, “the letter was true to the end?” + +“Did you doubt it, my dear Monsieur Bartolomeo?” + +“No, indeed; certainly not; a good man, a man holding religious office, +as does the Abbé Busoni, could not condescend to deceive or play off a +joke; but your excellency has not read all.” + +“Ah, true,” said Monte Cristo “there is a postscript.” + +“Yes, yes,” repeated the major, “yes—there—is—a—postscript.” + +“‘In order to save Major Cavalcanti the trouble of drawing on his +banker, I send him a draft for 2,000 francs to defray his travelling +expenses, and credit on you for the further sum of 48,000 francs, which +you still owe me.’” + +The major awaited the conclusion of the postscript, apparently with +great anxiety. + +“Very good,” said the count. + +“He said ‘very good,’” muttered the major, “then—sir——” replied he. + +“Then what?” asked Monte Cristo. + +“Then the postscript——” + +“Well; what of the postscript?” + +“Then the postscript is as favorably received by you as the rest of the +letter?” + +“Certainly; the Abbé Busoni and myself have a small account open +between us. I do not remember if it is exactly 48,000 francs, which I +am still owing him, but I dare say we shall not dispute the difference. +You attached great importance, then, to this postscript, my dear +Monsieur Cavalcanti?” + +“I must explain to you,” said the major, “that, fully confiding in the +signature of the Abbé Busoni, I had not provided myself with any other +funds; so that if this resource had failed me, I should have found +myself very unpleasantly situated in Paris.” + +“Is it possible that a man of your standing should be embarrassed +anywhere?” said Monte Cristo. + +“Why, really I know no one,” said the major. + +“But then you yourself are known to others?” + +“Yes, I am known, so that——” + +“Proceed, my dear Monsieur Cavalcanti.” + +“So that you will remit to me these 48,000 francs?” + +“Certainly, at your first request.” The major’s eyes dilated with +pleasing astonishment. “But sit down,” said Monte Cristo; “really I do +not know what I have been thinking of—I have positively kept you +standing for the last quarter of an hour.” + +“Don’t mention it.” The major drew an armchair towards him, and +proceeded to seat himself. + +“Now,” said the count, “what will you take—a glass of sherry, port, or +Alicante?” + +“Alicante, if you please; it is my favorite wine.” + +“I have some that is very good. You will take a biscuit with it, will +you not?” + +“Yes, I will take a biscuit, as you are so obliging.” + +Monte Cristo rang; Baptistin appeared. The count advanced to meet him. + +“Well?” said he in a low voice. + +“The young man is here,” said the valet de chambre in the same tone. + +“Into what room did you take him?” + +“Into the blue drawing-room, according to your excellency’s orders.” + +“That’s right; now bring the Alicante and some biscuits.” + +Baptistin left the room. + +“Really,” said the major, “I am quite ashamed of the trouble I am +giving you.” + +“Pray don’t mention such a thing,” said the count. Baptistin re-entered +with glasses, wine, and biscuits. The count filled one glass, but in +the other he only poured a few drops of the ruby-colored liquid. The +bottle was covered with spiders’ webs, and all the other signs which +indicate the age of wine more truly than do wrinkles on a man’s face. +The major made a wise choice; he took the full glass and a biscuit. The +count told Baptistin to leave the plate within reach of his guest, who +began by sipping the Alicante with an expression of great satisfaction, +and then delicately steeped his biscuit in the wine. + +30123m + + + +“So, sir, you lived at Lucca, did you? You were rich, noble, held in +great esteem—had all that could render a man happy?” + +“All,” said the major, hastily swallowing his biscuit, “positively +all.” + +“And yet there was one thing wanting in order to complete your +happiness?” + +“Only one thing,” said the Italian. + +“And that one thing, your lost child.” + +“Ah,” said the major, taking a second biscuit, “that consummation of my +happiness was indeed wanting.” The worthy major raised his eyes to +heaven and sighed. + +“Let me hear, then,” said the count, “who this deeply regretted son +was; for I always understood you were a bachelor.” + +“That was the general opinion, sir,” said the major, “and I——” + +“Yes,” replied the count, “and you confirmed the report. A youthful +indiscretion, I suppose, which you were anxious to conceal from the +world at large?” + +The major recovered himself, and resumed his usual calm manner, at the +same time casting his eyes down, either to give himself time to compose +his countenance, or to assist his imagination, all the while giving an +under-look at the count, the protracted smile on whose lips still +announced the same polite curiosity. + +“Yes,” said the major, “I did wish this fault to be hidden from every +eye.” + +“Not on your own account, surely,” replied Monte Cristo; “for a man is +above that sort of thing?” + +“Oh, no, certainly not on my own account,” said the major with a smile +and a shake of the head. + +“But for the sake of the mother?” said the count. + +“Yes, for the mother’s sake—his poor mother!” cried the major, taking a +third biscuit. + +“Take some more wine, my dear Cavalcanti,” said the count, pouring out +for him a second glass of Alicante; “your emotion has quite overcome +you.” + +“His poor mother,” murmured the major, trying to get the lachrymal +gland in operation, so as to moisten the corner of his eye with a false +tear. + +“She belonged to one of the first families in Italy, I think, did she +not?” + +“She was of a noble family of Fiesole, count.” + +“And her name was——” + +“Do you desire to know her name——?” + +“Oh,” said Monte Cristo “it would be quite superfluous for you to tell +me, for I already know it.” + +“The count knows everything,” said the Italian, bowing. + +“Oliva Corsinari, was it not?” + +“Oliva Corsinari!” + +“A marchioness?” + +“A marchioness!” + +“And you married her at last, notwithstanding the opposition of her +family?” + +“Yes, that was the way it ended.” + +“And you have doubtless brought all your papers with you?” said Monte +Cristo. + +“What papers?” + +“The certificate of your marriage with Oliva Corsinari, and the +register of your child’s birth.” + +“The register of my child’s birth?” + +“The register of the birth of Andrea Cavalcanti—of your son; is not his +name Andrea?” + +“I believe so,” said the major. + +“What? You believe so?” + +“I dare not positively assert it, as he has been lost for so long a +time.” + +“Well, then,” said Monte Cristo “you have all the documents with you?” + +“Your excellency, I regret to say that, not knowing it was necessary to +come provided with these papers, I neglected to bring them.” + +“That is unfortunate,” returned Monte Cristo. + +“Were they, then, so necessary?” + +“They were indispensable.” + +The major passed his hand across his brow. “Ah, _perbacco_, +indispensable, were they?” + +“Certainly they were; supposing there were to be doubts raised as to +the validity of your marriage or the legitimacy of your child?” + +“True,” said the major, “there might be doubts raised.” + +“In that case your son would be very unpleasantly situated.” + +“It would be fatal to his interests.” + +“It might cause him to fail in some desirable matrimonial alliance.” + +“_O peccato!_” + +“You must know that in France they are very particular on these points; +it is not sufficient, as in Italy, to go to the priest and say, ‘We +love each other, and want you to marry us.’ Marriage is a civil affair +in France, and in order to marry in an orthodox manner you must have +papers which undeniably establish your identity.” + +“That is the misfortune! You see I have not these necessary papers.” + +“Fortunately, I have them, though,” said Monte Cristo. + +“You?” + +“Yes.” + +“You have them?” + +“I have them.” + +“Ah, indeed?” said the major, who, seeing the object of his journey +frustrated by the absence of the papers, feared also that his +forgetfulness might give rise to some difficulty concerning the 48,000 +francs—“ah, indeed, that is a fortunate circumstance; yes, that really +is lucky, for it never occurred to me to bring them.” + +“I do not at all wonder at it—one cannot think of everything; but, +happily, the Abbé Busoni thought for you.” + +“He is an excellent person.” + +“He is extremely prudent and thoughtful.” + +“He is an admirable man,” said the major; “and he sent them to you?” + +“Here they are.” + +The major clasped his hands in token of admiration. + +“You married Oliva Corsinari in the church of San Paolo del +Monte-Cattini; here is the priest’s certificate.” + +“Yes indeed, there it is truly,” said the Italian, looking on with +astonishment. + +“And here is Andrea Cavalcanti’s baptismal register, given by the curé +of Saravezza.” + +“All quite correct.” + +“Take these documents, then; they do not concern me. You will give them +to your son, who will, of course, take great care of them.” + +“I should think so, indeed! If he were to lose them——” + +“Well, and if he were to lose them?” said Monte Cristo. + +“In that case,” replied the major, “it would be necessary to write to +the curé for duplicates, and it would be some time before they could be +obtained.” + +“It would be a difficult matter to arrange,” said Monte Cristo. + +“Almost an impossibility,” replied the major. + +“I am very glad to see that you understand the value of these papers.” + +“I regard them as invaluable.” + +“Now,” said Monte Cristo “as to the mother of the young man——” + +“As to the mother of the young man——” repeated the Italian, with +anxiety. + +“As regards the Marchesa Corsinari——” + +“Really,” said the major, “difficulties seem to thicken upon us; will +she be wanted in any way?” + +“No, sir,” replied Monte Cristo; “besides, has she not——” + +“Yes, sir,” said the major, “she has——” + +30127m + + + +“Paid the last debt of nature?” + +“Alas, yes,” returned the Italian. + +“I knew that,” said Monte Cristo; “she has been dead these ten years.” + +“And I am still mourning her loss,” exclaimed the major, drawing from +his pocket a checked handkerchief, and alternately wiping first the +left and then the right eye. + +“What would you have?” said Monte Cristo; “we are all mortal. Now, you +understand, my dear Monsieur Cavalcanti, that it is useless for you to +tell people in France that you have been separated from your son for +fifteen years. Stories of gypsies, who steal children, are not at all +in vogue in this part of the world, and would not be believed. You sent +him for his education to a college in one of the provinces, and now you +wish him to complete his education in the Parisian world. That is the +reason which has induced you to leave Via Reggio, where you have lived +since the death of your wife. That will be sufficient.” + +“You think so?” + +“Certainly.” + +“Very well, then.” + +“If they should hear of the separation——” + +“Ah, yes; what could I say?” + +“That an unfaithful tutor, bought over by the enemies of your family——” + +“By the Corsinari?” + +“Precisely. Had stolen away this child, in order that your name might +become extinct.” + +“That is reasonable, since he is an only son.” + +“Well, now that all is arranged, do not let these newly awakened +remembrances be forgotten. You have, doubtless, already guessed that I +was preparing a surprise for you?” + +“An agreeable one?” asked the Italian. + +“Ah, I see the eye of a father is no more to be deceived than his +heart.” + +“Hum!” said the major. + +“Someone has told you the secret; or, perhaps, you guessed that he was +here.” + +“That who was here?” + +“Your child—your son—your Andrea!” + +“I did guess it,” replied the major with the greatest possible +coolness. “Then he is here?” + +“He is,” said Monte Cristo; “when the valet de chambre came in just +now, he told me of his arrival.” + +“Ah, very well, very well,” said the major, clutching the buttons of +his coat at each exclamation. + +“My dear sir,” said Monte Cristo, “I understand your emotion; you must +have time to recover yourself. I will, in the meantime, go and prepare +the young man for this much-desired interview, for I presume that he is +not less impatient for it than yourself.” + +“I should quite imagine that to be the case,” said Cavalcanti. + +“Well, in a quarter of an hour he shall be with you.” + +“You will bring him, then? You carry your goodness so far as even to +present him to me yourself?” + +“No; I do not wish to come between a father and son. Your interview +will be private. But do not be uneasy; even if the powerful voice of +nature should be silent, you cannot well mistake him; he will enter by +this door. He is a fine young man, of fair complexion—a little too +fair, perhaps—pleasing in manners; but you will see and judge for +yourself.” + +“By the way,” said the major, “you know I have only the 2,000 francs +which the Abbé Busoni sent me; this sum I have expended upon travelling +expenses, and——” + +“And you want money; that is a matter of course, my dear M. Cavalcanti. +Well, here are 8,000 francs on account.” + +The major’s eyes sparkled brilliantly. + +“It is 40,000 francs which I now owe you,” said Monte Cristo. + +“Does your excellency wish for a receipt?” said the major, at the same +time slipping the money into the inner pocket of his coat. + +“For what?” said the count. + +“I thought you might want it to show the Abbé Busoni.” + +“Well, when you receive the remaining 40,000, you shall give me a +receipt in full. Between honest men such excessive precaution is, I +think, quite unnecessary.” + +“Yes, so it is, between perfectly upright people.” + +“One word more,” said Monte Cristo. + +“Say on.” + +“You will permit me to make one remark?” + +“Certainly; pray do so.” + +“Then I should advise you to leave off wearing that style of dress.” + +“Indeed,” said the major, regarding himself with an air of complete +satisfaction. + +“Yes. It may be worn at Via Reggio; but that costume, however elegant +in itself, has long been out of fashion in Paris.” + +“That’s unfortunate.” + +“Oh, if you really are attached to your old mode of dress; you can +easily resume it when you leave Paris.” + +“But what shall I wear?” + +“What you find in your trunks.” + +“In my trunks? I have but one portmanteau.” + +“I dare say you have nothing else with you. What is the use of boring +one’s self with so many things? Besides an old soldier always likes to +march with as little baggage as possible.” + +“That is just the case—precisely so.” + +“But you are a man of foresight and prudence, therefore you sent your +luggage on before you. It has arrived at the Hôtel des Princes, Rue de +Richelieu. It is there you are to take up your quarters.” + +“Then, in these trunks——” + +“I presume you have given orders to your valet de chambre to put in all +you are likely to need,—your plain clothes and your uniform. On grand +occasions you must wear your uniform; that will look very well. Do not +forget your crosses. They still laugh at them in France, and yet always +wear them, for all that.” + +“Very well, very well,” said the major, who was in ecstasy at the +attention paid him by the count. + +“Now,” said Monte Cristo, “that you have fortified yourself against all +painful excitement, prepare yourself, my dear M. Cavalcanti, to meet +your lost Andrea.” + +Saying which Monte Cristo bowed, and disappeared behind the tapestry, +leaving the major fascinated beyond expression with the delightful +reception which he had received at the hands of the count. + + + + Chapter 56. Andrea Cavalcanti + +The Count of Monte Cristo entered the adjoining room, which Baptistin +had designated as the drawing-room, and found there a young man, of +graceful demeanor and elegant appearance, who had arrived in a cab +about half an hour previously. Baptistin had not found any difficulty +in recognizing the person who presented himself at the door for +admittance. He was certainly the tall young man with light hair, red +beard, black eyes, and brilliant complexion, whom his master had so +particularly described to him. When the count entered the room the +young man was carelessly stretched on a sofa, tapping his boot with the +gold-headed cane which he held in his hand. On perceiving the count he +rose quickly. + +“The Count of Monte Cristo, I believe?” said he. + +“Yes, sir, and I think I have the honor of addressing Count Andrea +Cavalcanti?” + +“Count Andrea Cavalcanti,” repeated the young man, accompanying his +words with a bow. + +“You are charged with a letter of introduction addressed to me, are you +not?” said the count. + +“I did not mention that, because the signature seemed to me so +strange.” + +“The letter signed ‘Sinbad the Sailor,’ is it not?” + +“Exactly so. Now, as I have never known any Sinbad, with the exception +of the one celebrated in the _Thousand and One Nights_——” + +“Well, it is one of his descendants, and a great friend of mine; he is +a very rich Englishman, eccentric almost to insanity, and his real name +is Lord Wilmore.” + +“Ah, indeed? Then that explains everything that is extraordinary,” said +Andrea. “He is, then, the same Englishman whom I met—at—ah—yes, indeed. +Well, monsieur, I am at your service.” + +“If what you say be true,” replied the count, smiling, “perhaps you +will be kind enough to give me some account of yourself and your +family?” + +“Certainly, I will do so,” said the young man, with a quickness which +gave proof of his ready invention. “I am (as you have said) the Count +Andrea Cavalcanti, son of Major Bartolomeo Cavalcanti, a descendant of +the Cavalcanti whose names are inscribed in the golden book at +Florence. Our family, although still rich (for my father’s income +amounts to half a million), has experienced many misfortunes, and I +myself was, at the age of five years, taken away by the treachery of my +tutor, so that for fifteen years I have not seen the author of my +existence. Since I have arrived at years of discretion and become my +own master, I have been constantly seeking him, but all in vain. At +length I received this letter from your friend, which states that my +father is in Paris, and authorizes me to address myself to you for +information respecting him.” + +“Really, all you have related to me is exceedingly interesting,” said +Monte Cristo, observing the young man with a gloomy satisfaction; “and +you have done well to conform in everything to the wishes of my friend +Sinbad; for your father is indeed here, and is seeking you.” + +The count from the moment of first entering the drawing-room, had not +once lost sight of the expression of the young man’s countenance; he +had admired the assurance of his look and the firmness of his voice; +but at these words, so natural in themselves, “Your father is indeed +here, and is seeking you,” young Andrea started, and exclaimed, “My +father? Is my father here?” + +“Most undoubtedly,” replied Monte Cristo; “your father, Major +Bartolomeo Cavalcanti.” The expression of terror which, for the moment, +had overspread the features of the young man, had now disappeared. + +“Ah, yes, that is the name, certainly. Major Bartolomeo Cavalcanti. And +you really mean to say; monsieur, that my dear father is here?” + +“Yes, sir; and I can even add that I have only just left his company. +The history which he related to me of his lost son touched me to the +quick; indeed, his griefs, hopes, and fears on that subject might +furnish material for a most touching and pathetic poem. At length, he +one day received a letter, stating that the abductors of his son now +offered to restore him, or at least to give notice where he might be +found, on condition of receiving a large sum of money, by way of +ransom. Your father did not hesitate an instant, and the sum was sent +to the frontier of Piedmont, with a passport signed for Italy. You were +in the south of France, I think?” + +“Yes,” replied Andrea, with an embarrassed air, “I was in the south of +France.” + +“A carriage was to await you at Nice?” + +“Precisely so; and it conveyed me from Nice to Genoa, from Genoa to +Turin, from Turin to Chambéry, from Chambéry to Pont-de-Beauvoisin, and +from Pont-de-Beauvoisin to Paris.” + +30133m + + + +“Indeed? Then your father ought to have met with you on the road, for +it is exactly the same route which he himself took, and that is how we +have been able to trace your journey to this place.” + +“But,” said Andrea, “if my father had met me, I doubt if he would have +recognized me; I must be somewhat altered since he last saw me.” + +“Oh, the voice of nature,” said Monte Cristo. + +“True,” interrupted the young man, “I had not looked upon it in that +light.” + +“Now,” replied Monte Cristo “there is only one source of uneasiness +left in your father’s mind, which is this—he is anxious to know how you +have been employed during your long absence from him, how you have been +treated by your persecutors, and if they have conducted themselves +towards you with all the deference due to your rank. Finally, he is +anxious to see if you have been fortunate enough to escape the bad +moral influence to which you have been exposed, and which is infinitely +more to be dreaded than any physical suffering; he wishes to discover +if the fine abilities with which nature had endowed you have been +weakened by want of culture; and, in short, whether you consider +yourself capable of resuming and retaining in the world the high +position to which your rank entitles you.” + +“Sir!” exclaimed the young man, quite astounded, “I hope no false +report——” + +“As for myself, I first heard you spoken of by my friend Wilmore, the +philanthropist. I believe he found you in some unpleasant position, but +do not know of what nature, for I did not ask, not being inquisitive. +Your misfortunes engaged his sympathies, so you see you must have been +interesting. He told me that he was anxious to restore you to the +position which you had lost, and that he would seek your father until +he found him. He did seek, and has found him, apparently, since he is +here now; and, finally, my friend apprised me of your coming, and gave +me a few other instructions relative to your future fortune. I am quite +aware that my friend Wilmore is peculiar, but he is sincere, and as +rich as a gold mine, consequently, he may indulge his eccentricities +without any fear of their ruining him, and I have promised to adhere to +his instructions. Now, sir, pray do not be offended at the question I +am about to put to you, as it comes in the way of my duty as your +patron. I would wish to know if the misfortunes which have happened to +you—misfortunes entirely beyond your control, and which in no degree +diminish my regard for you—I would wish to know if they have not, in +some measure, contributed to render you a stranger to the world in +which your fortune and your name entitle you to make a conspicuous +figure?” + +“Sir,” returned the young man, with a reassurance of manner, “make your +mind easy on this score. Those who took me from my father, and who +always intended, sooner or later, to sell me again to my original +proprietor, as they have now done, calculated that, in order to make +the most of their bargain, it would be politic to leave me in +possession of all my personal and hereditary worth, and even to +increase the value, if possible. I have, therefore, received a very +good education, and have been treated by these kidnappers very much as +the slaves were treated in Asia Minor, whose masters made them +grammarians, doctors, and philosophers, in order that they might fetch +a higher price in the Roman market.” + +Monte Cristo smiled with satisfaction; it appeared as if he had not +expected so much from M. Andrea Cavalcanti. + +“Besides,” continued the young man, “if there did appear some defect in +education, or offence against the established forms of etiquette, I +suppose it would be excused, in consideration of the misfortunes which +accompanied my birth, and followed me through my youth.” + +“Well,” said Monte Cristo in an indifferent tone, “you will do as you +please, count, for you are the master of your own actions, and are the +person most concerned in the matter, but if I were you, I would not +divulge a word of these adventures. Your history is quite a romance, +and the world, which delights in romances in yellow covers, strangely +mistrusts those which are bound in living parchment, even though they +be gilded like yourself. This is the kind of difficulty which I wished +to represent to you, my dear count. You would hardly have recited your +touching history before it would go forth to the world, and be deemed +unlikely and unnatural. You would be no longer a lost child found, but +you would be looked upon as an upstart, who had sprung up like a +mushroom in the night. You might excite a little curiosity, but it is +not everyone who likes to be made the centre of observation and the +subject of unpleasant remark.” + +“I agree with you, monsieur,” said the young man, turning pale, and, in +spite of himself, trembling beneath the scrutinizing look of his +companion, “such consequences would be extremely unpleasant.” + +“Nevertheless, you must not exaggerate the evil,” said Monte Cristo, +“for by endeavoring to avoid one fault you will fall into another. You +must resolve upon one simple and single line of conduct, and for a man +of your intelligence, this plan is as easy as it is necessary; you must +form honorable friendships, and by that means counteract the prejudice +which may attach to the obscurity of your former life.” + +Andrea visibly changed countenance. + +“I would offer myself as your surety and friendly adviser,” said Monte +Cristo, “did I not possess a moral distrust of my best friends, and a +sort of inclination to lead others to doubt them too; therefore, in +departing from this rule, I should (as the actors say) be playing a +part quite out of my line, and should, therefore, run the risk of being +hissed, which would be an act of folly.” + +“However, your excellency,” said Andrea, “in consideration of Lord +Wilmore, by whom I was recommended to you——” + +“Yes, certainly,” interrupted Monte Cristo; “but Lord Wilmore did not +omit to inform me, my dear M. Andrea, that the season of your youth was +rather a stormy one. Ah,” said the count, watching Andrea’s +countenance, “I do not demand any confession from you; it is precisely +to avoid that necessity that your father was sent for from Lucca. You +shall soon see him. He is a little stiff and pompous in his manner, and +he is disfigured by his uniform; but when it becomes known that he has +been for eighteen years in the Austrian service, all that will be +pardoned. We are not generally very severe with the Austrians. In +short, you will find your father a very presentable person, I assure +you.” + +“Ah, sir, you have given me confidence; it is so long since we were +separated, that I have not the least remembrance of him, and, besides, +you know that in the eyes of the world a large fortune covers all +defects.” + +“He is a millionaire—his income is 500,000 francs.” + +“Then,” said the young man, with anxiety, “I shall be sure to be placed +in an agreeable position.” + +“One of the most agreeable possible, my dear sir; he will allow you an +income of 50,000 livres per annum during the whole time of your stay in +Paris.” + +“Then in that case I shall always choose to remain there.” + +“You cannot control circumstances, my dear sir; ‘man proposes, and God +disposes.’” Andrea sighed. + +“But,” said he, “so long as I do remain in Paris, and nothing forces me +to quit it, do you mean to tell me that I may rely on receiving the sum +you just now mentioned to me?” + +“You may.” + +“Shall I receive it from my father?” asked Andrea, with some +uneasiness. + +“Yes, you will receive it from your father personally, but Lord Wilmore +will be the security for the money. He has, at the request of your +father, opened an account of 5,000 francs a month at M. Danglars’, +which is one of the safest banks in Paris.” + +“And does my father mean to remain long in Paris?” asked Andrea. + +“Only a few days,” replied Monte Cristo. “His service does not allow +him to absent himself more than two or three weeks together.” + +“Ah, my dear father!” exclaimed Andrea, evidently charmed with the idea +of his speedy departure. + +“Therefore,” said Monte Cristo feigning to mistake his +meaning—“therefore I will not, for another instant, retard the pleasure +of your meeting. Are you prepared to embrace your worthy father?” + +“I hope you do not doubt it.” + +30137m + + + +“Go, then, into the drawing-room, my young friend, where you will find +your father awaiting you.” + +Andrea made a low bow to the count, and entered the adjoining room. +Monte Cristo watched him till he disappeared, and then touched a spring +in a panel made to look like a picture, which, in sliding partly from +the frame, discovered to view a small opening, so cleverly contrived +that it revealed all that was passing in the drawing-room now occupied +by Cavalcanti and Andrea. The young man closed the door behind him, and +advanced towards the major, who had risen when he heard steps +approaching him. + +“Ah, my dear father!” said Andrea in a loud voice, in order that the +count might hear him in the next room, “is it really you?” + +“How do you do, my dear son?” said the major gravely. + +“After so many years of painful separation,” said Andrea, in the same +tone of voice, and glancing towards the door, “what a happiness it is +to meet again!” + +“Indeed it is, after so long a separation.” + +“Will you not embrace me, sir?” said Andrea. + +30139m + + + +“If you wish it, my son,” said the major; and the two men embraced each +other after the fashion of actors on the stage; that is to say, each +rested his head on the other’s shoulder. + +“Then we are once more reunited?” said Andrea. + +“Once more,” replied the major. + +“Never more to be separated?” + +“Why, as to that—I think, my dear son, you must be by this time so +accustomed to France as to look upon it almost as a second country.” + +“The fact is,” said the young man, “that I should be exceedingly +grieved to leave it.” + +“As for me, you must know I cannot possibly live out of Lucca; +therefore I shall return to Italy as soon as I can.” + +“But before you leave France, my dear father, I hope you will put me in +possession of the documents which will be necessary to prove my +descent.” + +“Certainly; I am come expressly on that account; it has cost me much +trouble to find you, but I had resolved on giving them into your hands, +and if I had to recommence my search, it would occupy all the few +remaining years of my life.” + +“Where are these papers, then?” + +“Here they are.” + +Andrea seized the certificate of his father’s marriage and his own +baptismal register, and after having opened them with all the eagerness +which might be expected under the circumstances, he read them with a +facility which proved that he was accustomed to similar documents, and +with an expression which plainly denoted an unusual interest in the +contents. When he had perused the documents, an indefinable expression +of pleasure lighted up his countenance, and looking at the major with a +most peculiar smile, he said, in very excellent Tuscan: + +“Then there is no longer any such thing, in Italy as being condemned to +the galleys?” + +The major drew himself up to his full height. + +“Why?—what do you mean by that question?” + +“I mean that if there were, it would be impossible to draw up with +impunity two such deeds as these. In France, my dear sir, half such a +piece of effrontery as that would cause you to be quickly despatched to +Toulon for five years, for change of air.” + +“Will you be good enough to explain your meaning?” said the major, +endeavoring as much as possible to assume an air of the greatest +majesty. + +“My dear M. Cavalcanti,” said Andrea, taking the major by the arm in a +confidential manner, “how much are you paid for being my father?” + +The major was about to speak, when Andrea continued, in a low voice: + +“Nonsense, I am going to set you an example of confidence, they give me +50,000 francs a year to be your son; consequently, you can understand +that it is not at all likely I shall ever deny my parent.” + +The major looked anxiously around him. + +“Make yourself easy, we are quite alone,” said Andrea; “besides, we are +conversing in Italian.” + +“Well, then,” replied the major, “they paid me 50,000 francs down.” + +“Monsieur Cavalcanti,” said Andrea, “do you believe in fairy tales?” + +“I used not to do so, but I really feel now almost obliged to have +faith in them.” + +“You have, then, been induced to alter your opinion; you have had some +proofs of their truth?” The major drew from his pocket a handful of +gold. + +“Most palpable proofs,” said he, “as you may perceive.” + +“You think, then, that I may rely on the count’s promises?” + +“Certainly I do.” + +“You are sure he will keep his word with me?” + +“To the letter, but at the same time, remember, we must continue to +play our respective parts. I, as a tender father——” + +“And I as a dutiful son, as they choose that I shall be descended from +you.” + +“Whom do you mean by they?” + +“_Ma foi_, I can hardly tell, but I was alluding to those who wrote the +letter; you received one, did you not?” + +“Yes.” + +“From whom?” + +“From a certain Abbé Busoni.” + +“Have you any knowledge of him?” + +“No, I have never seen him.” + +“What did he say in the letter?” + +“You will promise not to betray me?” + +“Rest assured of that; you well know that our interests are the same.” + +“Then read for yourself;” and the major gave a letter into the young +man’s hand. Andrea read in a low voice: + +“‘You are poor; a miserable old age awaits you. Would you like to +become rich, or at least independent? Set out immediately for Paris, +and demand of the Count of Monte Cristo, Avenue des Champs-Élysées, No. +30, the son whom you had by the Marchesa Corsinari, and who was taken +from you at five years of age. This son is named Andrea Cavalcanti. In +order that you may not doubt the kind intention of the writer of this +letter, you will find enclosed an order for 2,400 francs, payable in +Florence, at Signor Gozzi’s; also a letter of introduction to the Count +of Monte Cristo, on whom I give you a draft of 48,000 francs. Remember +to go to the count on the 26th May at seven o’clock in the evening. + + +“(Signed) ‘Abbé Busoni.’” + + +“It is the same.” + +“What do you mean?” said the major. + +“I was going to say that I received a letter almost to the same +effect.” + +“You?” + +“Yes.” + +“From the Abbé Busoni?” + +“No.” + +“From whom, then?” + +“From an Englishman, called Lord Wilmore, who takes the name of Sinbad +the Sailor.” + +“And of whom you have no more knowledge than I of the Abbé Busoni?” + +“You are mistaken; there I am ahead of you.” + +“You have seen him, then?” + +“Yes, once.” + +“Where?” + +“Ah, that is just what I cannot tell you; if I did, I should make you +as wise as myself, which it is not my intention to do.” + +“And what did the letter contain?” + +“Read it.” + +“‘You are poor, and your future prospects are dark and gloomy. Do you +wish for a name? should you like to be rich, and your own master?’” + + +“_Parbleu!_” said the young man; “was it possible there could be two +answers to such a question?” + +“‘Take the post-chaise which you will find waiting at the Porte de +Gênes, as you enter Nice; pass through Turin, Chambéry, and +Pont-de-Beauvoisin. Go to the Count of Monte Cristo, Avenue des +Champs-Élysées, on the 26th of May, at seven o’clock in the evening, +and demand of him your father. You are the son of the Marchese +Cavalcanti and the Marchesa Oliva Corsinari. The marquis will give you +some papers which will certify this fact, and authorize you to appear +under that name in the Parisian world. As to your rank, an annual +income of 50,000 livres will enable you to support it admirably. I +enclose a draft for 5,000 livres, payable on M. Ferrea, banker at Nice, +and also a letter of introduction to the Count of Monte Cristo, whom I +have directed to supply all your wants. + + +“‘Sinbad the Sailor.’” + + +“Humph,” said the major; “very good. You have seen the count, you say?” + +“I have only just left him.” + +“And has he conformed to all that the letter specified?” + +“He has.” + +“Do you understand it?” + +“Not in the least.” + +“There is a dupe somewhere.” + +“At all events, it is neither you nor I.” + +“Certainly not.” + +“Well, then——” + +“Why, it does not much concern us, do you think it does?” + +“No; I agree with you there. We must play the game to the end, and +consent to be blindfolded.” + +“Ah, you shall see; I promise you I will sustain my part to +admiration.” + +“I never once doubted your doing so.” Monte Cristo chose this moment +for re-entering the drawing-room. On hearing the sound of his +footsteps, the two men threw themselves in each other’s arms, and while +they were in the midst of this embrace, the count entered. + +“Well, marquis,” said Monte Cristo, “you appear to be in no way +disappointed in the son whom your good fortune has restored to you.” + +“Ah, your excellency, I am overwhelmed with delight.” + +“And what are your feelings?” said Monte Cristo, turning to the young +man. + +“As for me, my heart is overflowing with happiness.” + +“Happy father, happy son!” said the count. + +“There is only one thing which grieves me,” observed the major, “and +that is the necessity for my leaving Paris so soon.” + +“Ah, my dear M. Cavalcanti, I trust you will not leave before I have +had the honor of presenting you to some of my friends.” + +“I am at your service, sir,” replied the major. + +“Now, sir,” said Monte Cristo, addressing Andrea, “make your +confession.” + +“To whom?” + +“Tell M. Cavalcanti something of the state of your finances.” + +“_Ma foi!_ monsieur, you have touched upon a tender chord.” + +“Do you hear what he says, major?” + +“Certainly I do.” + +“But do you understand?” + +“I do.” + +“Your son says he requires money.” + +“Well, what would you have me do?” said the major. + +“You should furnish him with some of course,” replied Monte Cristo. + +“I?” + +“Yes, you,” said the count, at the same time advancing towards Andrea, +and slipping a packet of bank-notes into the young man’s hand. + +“What is this?” + +“It is from your father.” + +“From my father?” + +“Yes; did you not tell him just now that you wanted money? Well, then, +he deputes me to give you this.” + +“Am I to consider this as part of my income on account?” + +“No, it is for the first expenses of your settling in Paris.” + +“Ah, how good my dear father is!” + +“Silence,” said Monte Cristo; “he does not wish you to know that it +comes from him.” + +“I fully appreciate his delicacy,” said Andrea, cramming the notes +hastily into his pocket. + +“And now, gentlemen, I wish you good-morning,” said Monte Cristo. + +“And when shall we have the honor of seeing you again, your +excellency?” asked Cavalcanti. + +“Ah,” said Andrea, “when may we hope for that pleasure?” + +“On Saturday, if you will—Yes.—Let me see—Saturday—I am to dine at my +country house, at Auteuil, on that day, Rue de la Fontaine, No. 28. +Several persons are invited, and among others, M. Danglars, your +banker. I will introduce you to him, for it will be necessary he should +know you, as he is to pay your money.” + +“Full dress?” said the major, half aloud. + +“Oh, yes, certainly,” said the count; “uniform, cross, knee-breeches.” + +“And how shall I be dressed?” demanded Andrea. + +30145m + + + +“Oh, very simply; black trousers, patent leather boots, white +waistcoat, either a black or blue coat, and a long cravat. Go to Blin +or Véronique for your clothes. Baptistin will tell you where, if you do +not know their address. The less pretension there is in your attire, +the better will be the effect, as you are a rich man. If you mean to +buy any horses, get them of Devedeux, and if you purchase a phaeton, go +to Baptiste for it.” + +“At what hour shall we come?” asked the young man. + +“About half-past six.” + +“We will be with you at that time,” said the major. The two Cavalcanti +bowed to the count, and left the house. Monte Cristo went to the +window, and saw them crossing the street, arm in arm. + +“There go two miscreants;” said he, “it is a pity they are not really +related!” Then, after an instant of gloomy reflection, “Come, I will go +to see the Morrels,” said he; “I think that disgust is even more +sickening than hatred.” + +30147m + + + + + Chapter 57. In the Lucern Patch + +Our readers must now allow us to transport them again to the enclosure +surrounding M. de Villefort’s house, and, behind the gate, half +screened from view by the large chestnut-trees, which on all sides +spread their luxuriant branches, we shall find some people of our +acquaintance. This time Maximilian was the first to arrive. He was +intently watching for a shadow to appear among the trees, and awaiting +with anxiety the sound of a light step on the gravel walk. + +At length, the long-desired sound was heard, and instead of one figure, +as he had expected, he perceived that two were approaching him. The +delay had been occasioned by a visit from Madame Danglars and Eugénie, +which had been prolonged beyond the time at which Valentine was +expected. That she might not appear to fail in her promise to +Maximilian, she proposed to Mademoiselle Danglars that they should take +a walk in the garden, being anxious to show that the delay, which was +doubtless a cause of vexation to him, was not occasioned by any neglect +on her part. The young man, with the intuitive perception of a lover, +quickly understood the circumstances in which she was involuntarily +placed, and he was comforted. Besides, although she avoided coming +within speaking distance, Valentine arranged so that Maximilian could +see her pass and repass, and each time she went by, she managed, +unperceived by her companion, to cast an expressive look at the young +man, which seemed to say, “Have patience! You see it is not my fault.” + +And Maximilian was patient, and employed himself in mentally +contrasting the two girls,—one fair, with soft languishing eyes, a +figure gracefully bending like a weeping willow; the other a brunette, +with a fierce and haughty expression, and as straight as a poplar. It +is unnecessary to state that, in the eyes of the young man, Valentine +did not suffer by the contrast. In about half an hour the girls went +away, and Maximilian understood that Mademoiselle Danglars’ visit had +at last come to an end. In a few minutes Valentine re-entered the +garden alone. For fear that anyone should be observing her return, she +walked slowly; and instead of immediately directing her steps towards +the gate, she seated herself on a bench, and, carefully casting her +eyes around, to convince herself that she was not watched, she +presently arose, and proceeded quickly to join Maximilian. + +“Good-evening, Valentine,” said a well-known voice. + +“Good-evening, Maximilian; I know I have kept you waiting, but you saw +the cause of my delay.” + +“Yes, I recognized Mademoiselle Danglars. I was not aware that you were +so intimate with her.” + +“Who told you we were intimate, Maximilian?” + +“No one, but you appeared to be so. From the manner in which you walked +and talked together, one would have thought you were two school-girls +telling your secrets to each other.” + +“We were having a confidential conversation,” returned Valentine; “she +was owning to me her repugnance to the marriage with M. de Morcerf; and +I, on the other hand, was confessing to her how wretched it made me to +think of marrying M. d’Épinay.” + +“Dear Valentine!” + +“That will account to you for the unreserved manner which you observed +between me and Eugénie, as in speaking of the man whom I could not +love, my thoughts involuntarily reverted to him on whom my affections +were fixed.” + +“Ah, how good you are to say so, Valentine! You possess a quality which +can never belong to Mademoiselle Danglars. It is that indefinable charm +which is to a woman what perfume is to the flower and flavor to the +fruit, for the beauty of either is not the only quality we seek.” + +“It is your love which makes you look upon everything in that light.” + +“No, Valentine, I assure you such is not the case. I was observing you +both when you were walking in the garden, and, on my honor, without at +all wishing to depreciate the beauty of Mademoiselle Danglars, I cannot +understand how any man can really love her.” + +“The fact is, Maximilian, that I was there, and my presence had the +effect of rendering you unjust in your comparison.” + +“No; but tell me—it is a question of simple curiosity, and which was +suggested by certain ideas passing in my mind relative to Mademoiselle +Danglars——” + +“I dare say it is something disparaging which you are going to say. It +only proves how little indulgence we may expect from your sex,” +interrupted Valentine. + +“You cannot, at least, deny that you are very harsh judges of each +other.” + +“If we are so, it is because we generally judge under the influence of +excitement. But return to your question.” + +30151m + + + +“Does Mademoiselle Danglars object to this marriage with M. de Morcerf +on account of loving another?” + +“I told you I was not on terms of strict intimacy with Eugénie.” + +“Yes, but girls tell each other secrets without being particularly +intimate; own, now, that you did question her on the subject. Ah, I see +you are smiling.” + +“If you are already aware of the conversation that passed, the wooden +partition which interposed between us and you has proved but a slight +security.” + +“Come, what did she say?” + +“She told me that she loved no one,” said Valentine; “that she disliked +the idea of being married; that she would infinitely prefer leading an +independent and unfettered life; and that she almost wished her father +might lose his fortune, that she might become an artist, like her +friend, Mademoiselle Louise d’Armilly.” + +“Ah, you see——” + +“Well, what does that prove?” asked Valentine. + +“Nothing,” replied Maximilian. + +“Then why did you smile?” + +“Why, you know very well that you are reflecting on yourself, +Valentine.” + +“Do you want me to go away?” + +“Ah, no, no. But do not let us lose time; you are the subject on which +I wish to speak.” + +“True, we must be quick, for we have scarcely ten minutes more to pass +together.” + +“_Ma foi!_” said Maximilian, in consternation. + +“Yes, you are right; I am but a poor friend to you. What a life I cause +you to lead, poor Maximilian, you who are formed for happiness! I +bitterly reproach myself, I assure you.” + +“Well, what does it signify, Valentine, so long as I am satisfied, and +feel that even this long and painful suspense is amply repaid by five +minutes of your society, or two words from your lips? And I have also a +deep conviction that heaven would not have created two hearts, +harmonizing as ours do, and almost miraculously brought us together, to +separate us at last.” + +“Those are kind and cheering words. You must hope for us both, +Maximilian; that will make me at least partly happy.” + +“But why must you leave me so soon?” + +“I do not know particulars. I can only tell you that Madame de +Villefort sent to request my presence, as she had a communication to +make on which a part of my fortune depended. Let them take my fortune, +I am already too rich; and, perhaps, when they have taken it, they will +leave me in peace and quietness. You would love me as much if I were +poor, would you not, Maximilian?” + +“Oh, I shall always love you. What should I care for either riches or +poverty, if my Valentine was near me, and I felt certain that no one +could deprive me of her? But do you not fear that this communication +may relate to your marriage?” + +“I do not think that is the case.” + +“However it may be, Valentine, you must not be alarmed. I assure you +that, as long as I live, I shall never love anyone else!” + +“Do you think to reassure me when you say that, Maximilian?” + +“Pardon me, you are right. I am a brute. But I was going to tell you +that I met M. de Morcerf the other day.” + +“Well?” + +“Monsieur Franz is his friend, you know.” + +“What then?” + +“Monsieur de Morcerf has received a letter from Franz, announcing his +immediate return.” Valentine turned pale, and leaned her hand against +the gate. + +“Ah heavens, if it were that! But no, the communication would not come +through Madame de Villefort.” + +“Why not?” + +“Because—I scarcely know why—but it has appeared as if Madame de +Villefort secretly objected to the marriage, although she did not +choose openly to oppose it.” + +“Is it so? Then I feel as if I could adore Madame de Villefort.” + +“Do not be in such a hurry to do that,” said Valentine, with a sad +smile. + +“If she objects to your marrying M. d’Épinay, she would be all the more +likely to listen to any other proposition.” + +“No, Maximilian, it is not suitors to which Madame de Villefort +objects, it is marriage itself.” + +“Marriage? If she dislikes that so much, why did she ever marry +herself?” + +“You do not understand me, Maximilian. About a year ago, I talked of +retiring to a convent. Madame de Villefort, in spite of all the remarks +which she considered it her duty to make, secretly approved of the +proposition, my father consented to it at her instigation, and it was +only on account of my poor grandfather that I finally abandoned the +project. You can form no idea of the expression of that old man’s eye +when he looks at me, the only person in the world whom he loves, and, I +had almost said, by whom he is beloved in return. When he learned my +resolution, I shall never forget the reproachful look which he cast on +me, and the tears of utter despair which chased each other down his +lifeless cheeks. Ah, Maximilian, I experienced, at that moment, such +remorse for my intention, that, throwing myself at his feet, I +exclaimed,—‘Forgive me, pray forgive me, my dear grandfather; they may +do what they will with me, I will never leave you.’ When I had ceased +speaking, he thankfully raised his eyes to heaven, but without uttering +a word. Ah, Maximilian, I may have much to suffer, but I feel as if my +grandfather’s look at that moment would more than compensate for all.” + +“Dear Valentine, you are a perfect angel, and I am sure I do not know +what I—sabring right and left among the Bedouins—can have done to merit +your being revealed to me, unless, indeed, Heaven took into +consideration the fact that the victims of my sword were infidels. But +tell me what interest Madame de Villefort can have in your remaining +unmarried?” + +“Did I not tell you just now that I was rich, Maximilian—too rich? I +possess nearly 50,000 livres in right of my mother; my grandfather and +my grandmother, the Marquis and Marquise de Saint-Méran, will leave me +as much, and M. Noirtier evidently intends making me his heir. My +brother Edward, who inherits nothing from his mother, will, therefore, +be poor in comparison with me. Now, if I had taken the veil, all this +fortune would have descended to my father, and, in reversion, to his +son.” + +“Ah, how strange it seems that such a young and beautiful woman should +be so avaricious.” + +“It is not for herself that she is so, but for her son, and what you +regard as a vice becomes almost a virtue when looked at in the light of +maternal love.” + +“But could you not compromise matters, and give up a portion of your +fortune to her son?” + +“How could I make such a proposition, especially to a woman who always +professes to be so entirely disinterested?” + +“Valentine, I have always regarded our love in the light of something +sacred; consequently, I have covered it with the veil of respect, and +hid it in the innermost recesses of my soul. No human being, not even +my sister, is aware of its existence. Valentine, will you permit me to +make a confidant of a friend and reveal to him the love I bear you?” + +Valentine started. “A friend, Maximilian; and who is this friend? I +tremble to give my permission.” + +“Listen, Valentine. Have you never experienced for anyone that sudden +and irresistible sympathy which made you feel as if the object of it +had been your old and familiar friend, though, in reality, it was the +first time you had ever met? Nay, further, have you never endeavored to +recall the time, place, and circumstances of your former intercourse, +and failing in this attempt, have almost believed that your spirits +must have held converse with each other in some state of being anterior +to the present, and that you are only now occupied in a reminiscence of +the past?” + +“Yes.” + +“Well, that is precisely the feeling which I experienced when I first +saw that extraordinary man.” + +“Extraordinary, did you say?” + +“Yes.” + +“You have known him for some time, then?” + +“Scarcely longer than eight or ten days.” + +“And do you call a man your friend whom you have only known for eight +or ten days? Ah, Maximilian, I had hoped you set a higher value on the +title of friend.” + +“Your logic is most powerful, Valentine, but say what you will, I can +never renounce the sentiment which has instinctively taken possession +of my mind. I feel as if it were ordained that this man should be +associated with all the good which the future may have in store for me, +and sometimes it really seems as if his eye was able to see what was to +come, and his hand endowed with the power of directing events according +to his own will.” + +“He must be a prophet, then,” said Valentine, smiling. + +“Indeed,” said Maximilian, “I have often been almost tempted to +attribute to him the gift of prophecy; at all events, he has a +wonderful power of foretelling any future good.” + +“Ah,” said Valentine in a mournful tone, “do let me see this man, +Maximilian; he may tell me whether I shall ever be loved sufficiently +to make amends for all I have suffered.” + +“My poor girl, you know him already.” + +“I know him?” + +“Yes; it was he who saved the life of your step-mother and her son.” + +“The Count of Monte Cristo?” + +“The same.” + +“Ah,” cried Valentine, “he is too much the friend of Madame de +Villefort ever to be mine.” + +“The friend of Madame de Villefort! It cannot be; surely, Valentine, +you are mistaken?” + +“No, indeed, I am not; for I assure you, his power over our household +is almost unlimited. Courted by my step-mother, who regards him as the +epitome of human wisdom; admired by my father, who says he has never +before heard such sublime ideas so eloquently expressed; idolized by +Edward, who, notwithstanding his fear of the count’s large black eyes, +runs to meet him the moment he arrives, and opens his hand, in which he +is sure to find some delightful present,—M. de Monte Cristo appears to +exert a mysterious and almost uncontrollable influence over all the +members of our family.” + +“If such be the case, my dear Valentine, you must yourself have felt, +or at all events will soon feel, the effects of his presence. He meets +Albert de Morcerf in Italy—it is to rescue him from the hands of the +banditti; he introduces himself to Madame Danglars—it is that he may +give her a royal present; your step-mother and her son pass before his +door—it is that his Nubian may save them from destruction. This man +evidently possesses the power of influencing events, both as regards +men and things. I never saw more simple tastes united to greater +magnificence. His smile is so sweet when he addresses me, that I forget +it ever can be bitter to others. Ah, Valentine, tell me, if he ever +looked on you with one of those sweet smiles? if so, depend on it, you +will be happy.” + +“Me?” said the young girl, “he never even glances at me; on the +contrary, if I accidentally cross his path, he appears rather to avoid +me. Ah, he is not generous, neither does he possess that supernatural +penetration which you attribute to him, for if he did, he would have +perceived that I was unhappy; and if he had been generous, seeing me +sad and solitary, he would have used his influence to my advantage, and +since, as you say, he resembles the sun, he would have warmed my heart +with one of his life-giving rays. You say he loves you, Maximilian; how +do you know that he does? All would pay deference to an officer like +you, with a fierce moustache and a long sabre, but they think they may +crush a poor weeping girl with impunity.” + +“Ah, Valentine, I assure you you are mistaken.” + +“If it were otherwise—if he treated me diplomatically—that is to say, +like a man who wishes, by some means or other, to obtain a footing in +the house, so that he may ultimately gain the power of dictating to its +occupants—he would, if it had been but once, have honored me with the +smile which you extol so loudly; but no, he saw that I was unhappy, he +understood that I could be of no use to him, and therefore paid no +attention to me whatever. Who knows but that, in order to please Madame +de Villefort and my father, he may not persecute me by every means in +his power? It is not just that he should despise me so, without any +reason. Ah, forgive me,” said Valentine, perceiving the effect which +her words were producing on Maximilian: “I have done wrong, for I have +given utterance to thoughts concerning that man which I did not even +know existed in my heart. I do not deny the influence of which you +speak, or that I have not myself experienced it, but with me it has +been productive of evil rather than good.” + +“Well, Valentine,” said Morrel with a sigh, “we will not discuss the +matter further. I will not make a confidant of him.” + +“Alas!” said Valentine, “I see that I have given you pain. I can only +say how sincerely I ask pardon for having grieved you. But, indeed, I +am not prejudiced beyond the power of conviction. Tell me what this +Count of Monte Cristo has done for you.” + +30157m + + + +“I own that your question embarrasses me, Valentine, for I cannot say +that the count has rendered me any ostensible service. Still, as I have +already told you, I have an instinctive affection for him, the source +of which I cannot explain to you. Has the sun done anything for me? No; +he warms me with his rays, and it is by his light that I see +you—nothing more. Has such and such a perfume done anything for me? No; +its odor charms one of my senses—that is all I can say when I am asked +why I praise it. My friendship for him is as strange and unaccountable +as his for me. A secret voice seems to whisper to me that there must be +something more than chance in this unexpected reciprocity of +friendship. In his most simple actions, as well as in his most secret +thoughts, I find a relation to my own. You will perhaps smile at me +when I tell you that, ever since I have known this man, I have +involuntarily entertained the idea that all the good fortune which has +befallen me originated from him. However, I have managed to live thirty +years without this protection, you will say; but I will endeavor a +little to illustrate my meaning. He invited me to dine with him on +Saturday, which was a very natural thing for him to do. Well, what have +I learned since? That your mother and M. de Villefort are both coming +to this dinner. I shall meet them there, and who knows what future +advantages may result from the interview? This may appear to you to be +no unusual combination of circumstances; nevertheless, I perceive some +hidden plot in the arrangement—something, in fact, more than is +apparent on a casual view of the subject. I believe that this singular +man, who appears to fathom the motives of everyone, has purposely +arranged for me to meet M. and Madame de Villefort, and sometimes, I +confess, I have gone so far as to try to read in his eyes whether he +was in possession of the secret of our love.” + +“My good friend,” said Valentine, “I should take you for a visionary, +and should tremble for your reason, if I were always to hear you talk +in a strain similar to this. Is it possible that you can see anything +more than the merest chance in this meeting? Pray reflect a little. My +father, who never goes out, has several times been on the point of +refusing this invitation; Madame de Villefort, on the contrary, is +burning with the desire of seeing this extraordinary nabob in his own +house, therefore, she has with great difficulty prevailed on my father +to accompany her. No, no; it is as I have said, Maximilian,—there is no +one in the world of whom I can ask help but yourself and my +grandfather, who is little better than a corpse—no support to cling to +but my mother in heaven!” + +“I see that you are right, logically speaking,” said Maximilian; “but +the gentle voice which usually has such power over me fails to convince +me today.” + +“I feel the same as regards yourself.” said Valentine; “and I own that, +if you have no stronger proof to give me——” + +“I have another,” replied Maximilian; “but I fear you will deem it even +more absurd than the first.” + +“So much the worse,” said Valentine, smiling. + +“It is, nevertheless, conclusive to my mind. My ten years of service +have also confirmed my ideas on the subject of sudden inspirations, for +I have several times owed my life to a mysterious impulse which +directed me to move at once either to the right or to the left, in +order to escape the ball which killed the comrade fighting by my side, +while it left me unharmed.” + +“Dear Maximilian, why not attribute your escape to my constant prayers +for your safety? When you are away, I no longer pray for myself, but +for you.” + +30159m + + + +“Yes, since you have known me,” said Morrel, smiling; “but that cannot +apply to the time previous to our acquaintance, Valentine.” + +“You are very provoking, and will not give me credit for anything; but +let me hear this second proof, which you yourself own to be absurd.” + +“Well, look through this opening, and you will see the beautiful new +horse which I rode here.” + +“Ah! what a beautiful creature!” cried Valentine; “why did you not +bring him close to the gate, so that I could talk to him and pat him?” + +“He is, as you see, a very valuable animal,” said Maximilian. “You know +that my means are limited, and that I am what would be designated a man +of moderate pretensions. Well, I went to a horse dealer’s, where I saw +this magnificent horse, which I have named Médéah. I asked the price; +they told me it was 4,500 francs. I was, therefore, obliged to give it +up, as you may imagine, but I own I went away with rather a heavy +heart, for the horse had looked at me affectionately, had rubbed his +head against me and, when I mounted him, had pranced in the most +delightful way imaginable, so that I was altogether fascinated with +him. The same evening some friends of mine visited me,—M. de +Château-Renaud, M. Debray, and five or six other choice spirits, whom +you do not know, even by name. They proposed a game of _bouillotte_. I +never play, for I am not rich enough to afford to lose, or sufficiently +poor to desire to gain. But I was at my own house, you understand, so +there was nothing to be done but to send for the cards, which I did. + +“Just as they were sitting down to table, M. de Monte Cristo arrived. +He took his seat amongst them; they played, and I won. I am almost +ashamed to say that my gains amounted to 5,000 francs. We separated at +midnight. I could not defer my pleasure, so I took a cabriolet and +drove to the horse dealer’s. Feverish and excited, I rang at the door. +The person who opened it must have taken me for a madman, for I rushed +at once to the stable. Médéah was standing at the rack, eating his hay. +I immediately put on the saddle and bridle, to which operation he lent +himself with the best grace possible; then, putting the 4,500 francs +into the hands of the astonished dealer, I proceeded to fulfil my +intention of passing the night in riding in the Champs-Élysées. As I +rode by the count’s house I perceived a light in one of the windows, +and fancied I saw the shadow of his figure moving behind the curtain. +Now, Valentine, I firmly believe that he knew of my wish to possess +this horse, and that he lost expressly to give me the means of +procuring him.” + +“My dear Maximilian, you are really too fanciful; you will not love +even me long. A man who accustoms himself to live in such a world of +poetry and imagination must find far too little excitement in a common, +every-day sort of attachment such as ours. But they are calling me. Do +you hear?” + +“Ah, Valentine,” said Maximilian, “give me but one finger through this +opening in the grating, one finger, the littlest finger of all, that I +may have the happiness of kissing it.” + +“Maximilian, we said we would be to each other as two voices, two +shadows.” + +“As you will, Valentine.” + +“Shall you be happy if I do what you wish?” + +“Oh, yes!” + +Valentine mounted on a bench, and passed not only her finger but her +whole hand through the opening. Maximilian uttered a cry of delight, +and, springing forwards, seized the hand extended towards him, and +imprinted on it a fervent and impassioned kiss. The little hand was +then immediately withdrawn, and the young man saw Valentine hurrying +towards the house, as though she were almost terrified at her own +sensations. + + + + Chapter 58. M. Noirtier de Villefort + +We will now relate what was passing in the house of the king’s attorney +after the departure of Madame Danglars and her daughter, and during the +time of the conversation between Maximilian and Valentine, which we +have just detailed. + +M. de Villefort entered his father’s room, followed by Madame de +Villefort. Both of the visitors, after saluting the old man and +speaking to Barrois, a faithful servant, who had been twenty-five years +in his service, took their places on either side of the paralytic. + +M. Noirtier was sitting in an armchair, which moved upon casters, in +which he was wheeled into the room in the morning, and in the same way +drawn out again at night. He was placed before a large glass, which +reflected the whole apartment, and so, without any attempt to move, +which would have been impossible, he could see all who entered the room +and everything which was going on around him. M. Noirtier, although +almost as immovable as a corpse, looked at the new-comers with a quick +and intelligent expression, perceiving at once, by their ceremonious +courtesy, that they were come on business of an unexpected and official +character. + +Sight and hearing were the only senses remaining, and they, like two +solitary sparks, remained to animate the miserable body which seemed +fit for nothing but the grave; it was only, however, by means of one of +these senses that he could reveal the thoughts and feelings that still +occupied his mind, and the look by which he gave expression to his +inner life was like the distant gleam of a candle which a traveller +sees by night across some desert place, and knows that a living being +dwells beyond the silence and obscurity. + +Noirtier’s hair was long and white, and flowed over his shoulders; +while in his eyes, shaded by thick black lashes, was concentrated, as +it often happens with an organ which is used to the exclusion of the +others, all the activity, address, force, and intelligence which were +formerly diffused over his whole body; and so although the movement of +the arm, the sound of the voice, and the agility of the body, were +wanting, the speaking eye sufficed for all. He commanded with it; it +was the medium through which his thanks were conveyed. In short, his +whole appearance produced on the mind the impression of a corpse with +living eyes, and nothing could be more startling than to observe the +expression of anger or joy suddenly lighting up these organs, while the +rest of the rigid and marble-like features were utterly deprived of the +power of participation. Three persons only could understand this +language of the poor paralytic; these were Villefort, Valentine, and +the old servant of whom we have already spoken. But as Villefort saw +his father but seldom, and then only when absolutely obliged, and as he +never took any pains to please or gratify him when he was there, all +the old man’s happiness was centred in his granddaughter. Valentine, by +means of her love, her patience, and her devotion, had learned to read +in Noirtier’s look all the varied feelings which were passing in his +mind. To this dumb language, which was so unintelligible to others, she +answered by throwing her whole soul into the expression of her +countenance, and in this manner were the conversations sustained +between the blooming girl and the helpless invalid, whose body could +scarcely be called a living one, but who, nevertheless, possessed a +fund of knowledge and penetration, united with a will as powerful as +ever although clogged by a body rendered utterly incapable of obeying +its impulses. + +Valentine had solved the problem, and was able easily to understand his +thoughts, and to convey her own in return, and, through her untiring +and devoted assiduity, it was seldom that, in the ordinary transactions +of every-day life, she failed to anticipate the wishes of the living, +thinking mind, or the wants of the almost inanimate body. + +As to the servant, he had, as we have said, been with his master for +five-and-twenty years, therefore he knew all his habits, and it was +seldom that Noirtier found it necessary to ask for anything, so prompt +was he in administering to all the necessities of the invalid. + +Villefort did not need the help of either Valentine or the domestic in +order to carry on with his father the strange conversation which he was +about to begin. As we have said, he perfectly understood the old man’s +vocabulary, and if he did not use it more often, it was only +indifference and _ennui_ which prevented him from so doing. He +therefore allowed Valentine to go into the garden, sent away Barrois, +and after having seated himself at his father’s right hand, while +Madame de Villefort placed herself on the left, he addressed him thus: + +“I trust you will not be displeased, sir, that Valentine has not come +with us, or that I dismissed Barrois, for our conference will be one +which could not with propriety be carried on in the presence of either. +Madame de Villefort and I have a communication to make to you.” + +Noirtier’s face remained perfectly passive during this long preamble, +while, on the contrary, Villefort’s eye was endeavoring to penetrate +into the inmost recesses of the old man’s heart. + +“This communication,” continued the procureur, in that cold and +decisive tone which seemed at once to preclude all discussion, “will, +we are sure, meet with your approbation.” + +The eye of the invalid still retained that vacancy of expression which +prevented his son from obtaining any knowledge of the feelings which +were passing in his mind; he listened, nothing more. + +“Sir,” resumed Villefort, “we are thinking of marrying Valentine.” Had +the old man’s face been moulded in wax it could not have shown less +emotion at this news than was now to be traced there. “The marriage +will take place in less than three months,” said Villefort. + +Noirtier’s eye still retained its inanimate expression. + +Madame de Villefort now took her part in the conversation and added: + +“We thought this news would possess an interest for you, sir, who have +always entertained a great affection for Valentine; it therefore only +now remains for us to tell you the name of the young man for whom she +is destined. It is one of the most desirable connections which could +possibly be formed; he possesses fortune, a high rank in society, and +every personal qualification likely to render Valentine supremely +happy,—his name, moreover, cannot be wholly unknown to you. It is M. +Franz de Quesnel, Baron d’Épinay.” + +While his wife was speaking, Villefort had narrowly watched the old +man’s countenance. When Madame de Villefort pronounced the name of +Franz, the pupil of M. Noirtier’s eye began to dilate, and his eyelids +trembled with the same movement that may be perceived on the lips of an +individual about to speak, and he darted a lightning glance at Madame +de Villefort and his son. The procureur, who knew the political hatred +which had formerly existed between M. Noirtier and the elder d’Épinay, +well understood the agitation and anger which the announcement had +produced; but, feigning not to perceive either, he immediately resumed +the narrative begun by his wife. + +“Sir,” said he, “you are aware that Valentine is about to enter her +nineteenth year, which renders it important that she should lose no +time in forming a suitable alliance. Nevertheless, you have not been +forgotten in our plans, and we have fully ascertained beforehand that +Valentine’s future husband will consent, not to live in this house, for +that might not be pleasant for the young people, but that you should +live with them; so that you and Valentine, who are so attached to each +other, would not be separated, and you would be able to pursue exactly +the same course of life which you have hitherto done, and thus, instead +of losing, you will be a gainer by the change, as it will secure to you +two children instead of one, to watch over and comfort you.” + +30165m + + + +Noirtier’s look was furious; it was very evident that something +desperate was passing in the old man’s mind, for a cry of anger and +grief rose in his throat, and not being able to find vent in utterance, +appeared almost to choke him, for his face and lips turned quite purple +with the struggle. Villefort quietly opened a window, saying, “It is +very warm, and the heat affects M. Noirtier.” He then returned to his +place, but did not sit down. + +“This marriage,” added Madame de Villefort, “is quite agreeable to the +wishes of M. d’Épinay and his family; besides, he had no relations +nearer than an uncle and aunt, his mother having died at his birth, and +his father having been assassinated in 1815, that is to say, when he +was but two years old; it naturally followed that the child was +permitted to choose his own pursuits, and he has, therefore, seldom +acknowledged any other authority but that of his own will.” + +“That assassination was a mysterious affair,” said Villefort, “and the +perpetrators have hitherto escaped detection, although suspicion has +fallen on the head of more than one person.” + +Noirtier made such an effort that his lips expanded into a smile. + +“Now,” continued Villefort, “those to whom the guilt really belongs, by +whom the crime was committed, on whose heads the justice of man may +probably descend here, and the certain judgment of God hereafter, would +rejoice in the opportunity thus afforded of bestowing such a +peace-offering as Valentine on the son of him whose life they so +ruthlessly destroyed.” Noirtier had succeeded in mastering his emotion +more than could have been deemed possible with such an enfeebled and +shattered frame. + +“Yes, I understand,” was the reply contained in his look; and this look +expressed a feeling of strong indignation, mixed with profound +contempt. Villefort fully understood his father’s meaning, and answered +by a slight shrug of his shoulders. He then motioned to his wife to +take leave. + +“Now sir,” said Madame de Villefort, “I must bid you farewell. Would +you like me to send Edward to you for a short time?” + +It had been agreed that the old man should express his approbation by +closing his eyes, his refusal by winking them several times, and if he +had some desire or feeling to express, he raised them to heaven. If he +wanted Valentine, he closed his right eye only, and if Barrois, the +left. At Madame de Villefort’s proposition he instantly winked his +eyes. + +Provoked by a complete refusal, she bit her lip and said, “Then shall I +send Valentine to you?” The old man closed his eyes eagerly, thereby +intimating that such was his wish. + +M. and Madame de Villefort bowed and left the room, giving orders that +Valentine should be summoned to her grandfather’s presence, and feeling +sure that she would have much to do to restore calmness to the +perturbed spirit of the invalid. Valentine, with a color still +heightened by emotion, entered the room just after her parents had +quitted it. One look was sufficient to tell her that her grandfather +was suffering, and that there was much on his mind which he was wishing +to communicate to her. + +“Dear grandpapa,” cried she, “what has happened? They have vexed you, +and you are angry?” + +The paralytic closed his eyes in token of assent. + +“Who has displeased you? Is it my father?” + +“No.” + +“Madame de Villefort?” + +“No.” + +“Me?” The former sign was repeated. + +“Are you displeased with me?” cried Valentine in astonishment. M. +Noirtier again closed his eyes. + +“And what have I done, dear grandpapa, that you should be angry with +me?” cried Valentine. + +There was no answer, and she continued: + +“I have not seen you all day. Has anyone been speaking to you against +me?” + +“Yes,” said the old man’s look, with eagerness. + +“Let me think a moment. I do assure you, grandpapa—Ah—M. and Madame de +Villefort have just left this room, have they not?” + +“Yes.” + +“And it was they who told you something which made you angry? What was +it then? May I go and ask them, that I may have the opportunity of +making my peace with you?” + +“No, no,” said Noirtier’s look. + +“Ah, you frighten me. What can they have said?” and she again tried to +think what it could be. + +“Ah, I know,” said she, lowering her voice and going close to the old +man. “They have been speaking of my marriage,—have they not?” + +“Yes,” replied the angry look. + +“I understand; you are displeased at the silence I have preserved on +the subject. The reason of it was, that they had insisted on my keeping +the matter a secret, and begged me not to tell you anything of it. They +did not even acquaint me with their intentions, and I only discovered +them by chance, that is why I have been so reserved with you, dear +grandpapa. Pray forgive me.” + +But there was no look calculated to reassure her; all it seemed to say +was, “It is not only your reserve which afflicts me.” + +“What is it, then?” asked the young girl. “Perhaps you think I shall +abandon you, dear grandpapa, and that I shall forget you when I am +married?” + +“No.” + +“They told you, then, that M. d’Épinay consented to our all living +together?” + +“Yes.” + +“Then why are you still vexed and grieved?” The old man’s eyes beamed +with an expression of gentle affection. + +“Yes, I understand,” said Valentine; “it is because you love me.” The +old man assented. + +“And you are afraid I shall be unhappy?” + +“Yes.” + +“You do not like M. Franz?” The eyes repeated several times, “No, no, +no.” + +“Then you are vexed with the engagement?” + +“Yes.” + +“Well, listen,” said Valentine, throwing herself on her knees, and +putting her arm round her grandfather’s neck, “I am vexed, too, for I +do not love M. Franz d’Épinay.” + +An expression of intense joy illumined the old man’s eyes. + +“When I wished to retire into a convent, you remember how angry you +were with me?” A tear trembled in the eye of the invalid. “Well,” +continued Valentine, “the reason of my proposing it was that I might +escape this hateful marriage, which drives me to despair.” Noirtier’s +breathing came thick and short. + +“Then the idea of this marriage really grieves you too? Ah, if you +could but help me—if we could both together defeat their plan! But you +are unable to oppose them,—you, whose mind is so quick, and whose will +is so firm are nevertheless, as weak and unequal to the contest as I am +myself. Alas, you, who would have been such a powerful protector to me +in the days of your health and strength, can now only sympathize in my +joys and sorrows, without being able to take any active part in them. +However, this is much, and calls for gratitude and Heaven has not taken +away all my blessings when it leaves me your sympathy and kindness.” + +At these words there appeared in Noirtier’s eye an expression of such +deep meaning that the young girl thought she could read these words +there: “You are mistaken; I can still do much for you.” + +“Do you think you can help me, dear grandpapa?” said Valentine. + +“Yes.” Noirtier raised his eyes, it was the sign agreed on between him +and Valentine when he wanted anything. + +“What is it you want, dear grandpapa?” said Valentine, and she +endeavored to recall to mind all the things which he would be likely to +need; and as the ideas presented themselves to her mind, she repeated +them aloud, then,—finding that all her efforts elicited nothing but a +constant _“No,”_—she said, “Come, since this plan does not answer, I +will have recourse to another.” + +She then recited all the letters of the alphabet from A down to N. When +she arrived at that letter the paralytic made her understand that she +had spoken the initial letter of the thing he wanted. + +“Ah,” said Valentine, “the thing you desire begins with the letter N; +it is with N that we have to do, then. Well, let me see, what can you +want that begins with N? Na—Ne—Ni—No——” + +“Yes, yes, yes,” said the old man’s eye. + +“Ah, it is No, then?” + +“Yes.” + +Valentine fetched a dictionary, which she placed on a desk before +Noirtier; she opened it, and, seeing that the old man’s eye was +thoroughly fixed on its pages, she ran her finger quickly up and down +the columns. During the six years which had passed since Noirtier first +fell into this sad state, Valentine’s powers of invention had been too +often put to the test not to render her expert in devising expedients +for gaining a knowledge of his wishes, and the constant practice had so +perfected her in the art that she guessed the old man’s meaning as +quickly as if he himself had been able to seek for what he wanted. At +the word _Notary_, Noirtier made a sign to her to stop. + +30169m + + + +“Notary,” said she, “do you want a notary, dear grandpapa?” The old man +again signified that it was a notary he desired. + +“You would wish a notary to be sent for then?” said Valentine. + +“Yes.” + +“Shall my father be informed of your wish?” + +“Yes.” + +“Do you wish the notary to be sent for immediately?” + +“Yes.” + +“Then they shall go for him directly, dear grandpapa. Is that all you +want?” + +“Yes.” Valentine rang the bell, and ordered the servant to tell +Monsieur or Madame de Villefort that they were requested to come to M. +Noirtier’s room. + +“Are you satisfied now?” inquired Valentine. + +“Yes.” + +“I am sure you are; it is not very difficult to discover that.” And the +young girl smiled on her grandfather, as if he had been a child. M. de +Villefort entered, followed by Barrois. + +“What do you want me for, sir?” demanded he of the paralytic. + +“Sir,” said Valentine, “my grandfather wishes for a notary.” At this +strange and unexpected demand M. de Villefort and his father exchanged +looks. + +“Yes,” motioned the latter, with a firmness which seemed to declare +that with the help of Valentine and his old servant, who both knew what +his wishes were, he was quite prepared to maintain the contest. + +“Do you wish for a notary?” asked Villefort. + +“Yes.” + +“What to do?” + +Noirtier made no answer. + +“What do you want with a notary?” again repeated Villefort. The +invalid’s eye remained fixed, by which expression he intended to +intimate that his resolution was unalterable. + +“Is it to do us some ill turn? Do you think it is worth while?” said +Villefort. + +“Still,” said Barrois, with the freedom and fidelity of an old servant, +“if M. Noirtier asks for a notary, I suppose he really wishes for a +notary; therefore I shall go at once and fetch one.” Barrois +acknowledged no master but Noirtier, and never allowed his desires in +any way to be contradicted. + +30171m + + + +“Yes, I do want a notary,” motioned the old man, shutting his eyes with +a look of defiance, which seemed to say, “and I should like to see the +person who dares to refuse my request.” + +“You shall have a notary, as you absolutely wish for one, sir,” said +Villefort; “but I shall explain to him your state of health, and make +excuses for you, for the scene cannot fail of being a most ridiculous +one.” + +“Never mind that,” said Barrois; “I shall go and fetch a notary, +nevertheless.” And the old servant departed triumphantly on his +mission. + + + + Chapter 59. The Will + +As soon as Barrois had left the room, Noirtier looked at Valentine with +a malicious expression that said many things. The young girl perfectly +understood the look, and so did Villefort, for his countenance became +clouded, and he knitted his eyebrows angrily. He took a seat, and +quietly awaited the arrival of the notary. Noirtier saw him seat +himself with an appearance of perfect indifference, at the same time +giving a side look at Valentine, which made her understand that she +also was to remain in the room. Three-quarters of an hour after, +Barrois returned, bringing the notary with him. + +“Sir,” said Villefort, after the first salutations were over, “you were +sent for by M. Noirtier, whom you see here. All his limbs have become +completely paralysed, he has lost his voice also, and we ourselves find +much trouble in endeavoring to catch some fragments of his meaning.” + +Noirtier cast an appealing look on Valentine, which look was at once so +earnest and imperative, that she answered immediately. + +“Sir,” said she, “I perfectly understand my grandfather’s meaning at +all times.” + +“That is quite true,” said Barrois; “and that is what I told the +gentleman as we walked along.” + +“Permit me,” said the notary, turning first to Villefort and then to +Valentine—“permit me to state that the case in question is just one of +those in which a public officer like myself cannot proceed to act +without thereby incurring a dangerous responsibility. The first thing +necessary to render an act valid is, that the notary should be +thoroughly convinced that he has faithfully interpreted the will and +wishes of the person dictating the act. Now I cannot be sure of the +approbation or disapprobation of a client who cannot speak, and as the +object of his desire or his repugnance cannot be clearly proved to me, +on account of his want of speech, my services here would be quite +useless, and cannot be legally exercised.” + +The notary then prepared to retire. An imperceptible smile of triumph +was expressed on the lips of the procureur. Noirtier looked at +Valentine with an expression so full of grief, that she arrested the +departure of the notary. + +“Sir,” said she, “the language which I speak with my grandfather may be +easily learnt, and I can teach you in a few minutes, to understand it +almost as well as I can myself. Will you tell me what you require, in +order to set your conscience quite at ease on the subject?” + +“In order to render an act valid, I must be certain of the approbation +or disapprobation of my client. Illness of body would not affect the +validity of the deed, but sanity of mind is absolutely requisite.” + +“Well, sir, by the help of two signs, with which I will acquaint you +presently, you may ascertain with perfect certainty that my grandfather +is still in the full possession of all his mental faculties. M. +Noirtier, being deprived of voice and motion, is accustomed to convey +his meaning by closing his eyes when he wishes to signify ‘yes,’ and to +wink when he means ‘no.’ You now know quite enough to enable you to +converse with M. Noirtier;—try.” + +Noirtier gave Valentine such a look of tenderness and gratitude that it +was comprehended even by the notary himself. + +“You have heard and understood what your granddaughter has been saying, +sir, have you?” asked the notary. Noirtier closed his eyes. + +“And you approve of what she said—that is to say, you declare that the +signs which she mentioned are really those by means of which you are +accustomed to convey your thoughts?” + +“Yes.” + +“It was you who sent for me?” + +“Yes.” + +“To make your will?” + +“Yes.” + +“And you do not wish me to go away without fulfilling your original +intentions?” The old man winked violently. + +“Well, sir,” said the young girl, “do you understand now, and is your +conscience perfectly at rest on the subject?” + +But before the notary could answer, Villefort had drawn him aside. + +“Sir,” said he, “do you suppose for a moment that a man can sustain a +physical shock, such as M. Noirtier has received, without any detriment +to his mental faculties?” + +“It is not exactly that, sir,” said the notary, “which makes me uneasy, +but the difficulty will be in wording his thoughts and intentions, so +as to be able to get his answers.” + +“You must see that to be an utter impossibility,” said Villefort. +Valentine and the old man heard this conversation, and Noirtier fixed +his eye so earnestly on Valentine that she felt bound to answer to the +look. + +“Sir,” said she, “that need not make you uneasy, however difficult it +may at first sight appear to be. I can discover and explain to you my +grandfather’s thoughts, so as to put an end to all your doubts and +fears on the subject. I have now been six years with M. Noirtier, and +let him tell you if ever once, during that time, he has entertained a +thought which he was unable to make me understand.” + +“No,” signed the old man. + +“Let us try what we can do, then,” said the notary. “You accept this +young lady as your interpreter, M. Noirtier?” + +“Yes.” + +“Well, sir, what do you require of me, and what document is it that you +wish to be drawn up?” + +Valentine named all the letters of the alphabet until she came to W. At +this letter the eloquent eye of Noirtier gave her notice that she was +to stop. + +“It is very evident that it is the letter W which M. Noirtier wants,” +said the notary. + +“Wait,” said Valentine; and, turning to her grandfather, she repeated, +“Wa—We—Wi——” The old man stopped her at the last syllable. Valentine +then took the dictionary, and the notary watched her while she turned +over the pages. + +She passed her finger slowly down the columns, and when she came to the +word “Will,” M. Noirtier’s eye bade her stop. + +“Will,” said the notary; “it is very evident that M. Noirtier is +desirous of making his will.” + +“Yes, yes, yes,” motioned the invalid. + +“Really, sir, you must allow that this is most extraordinary,” said the +astonished notary, turning to M. de Villefort. + +“Yes,” said the procureur, “and I think the will promises to be yet +more extraordinary, for I cannot see how it is to be drawn up without +the intervention of Valentine, and she may, perhaps, be considered as +too much interested in its contents to allow of her being a suitable +interpreter of the obscure and ill-defined wishes of her grandfather.” + +“No, no, no,” replied the eye of the paralytic. + +“What?” said Villefort, “do you mean to say that Valentine is not +interested in your will?” + +“No.” + +“Sir,” said the notary, whose interest had been greatly excited, and +who had resolved on publishing far and wide the account of this +extraordinary and picturesque scene, “what appeared so impossible to me +an hour ago, has now become quite easy and practicable, and this may be +a perfectly valid will, provided it be read in the presence of seven +witnesses, approved by the testator, and sealed by the notary in the +presence of the witnesses. As to the time, it will not require very +much more than the generality of wills. There are certain forms +necessary to be gone through, and which are always the same. As to the +details, the greater part will be furnished afterwards by the state in +which we find the affairs of the testator, and by yourself, who, having +had the management of them, can doubtless give full information on the +subject. But besides all this, in order that the instrument may not be +contested, I am anxious to give it the greatest possible authenticity, +therefore, one of my colleagues will help me, and, contrary to custom, +will assist in the dictation of the testament. Are you satisfied, sir?” +continued the notary, addressing the old man. + +30175m + + + +“Yes,” looked the invalid, his eye beaming with delight at the ready +interpretation of his meaning. + +“What is he going to do?” thought Villefort, whose position demanded +much reserve, but who was longing to know what his father’s intentions +were. He left the room to give orders for another notary to be sent, +but Barrois, who had heard all that passed, had guessed his master’s +wishes, and had already gone to fetch one. The procureur then told his +wife to come up. In the course of a quarter of an hour everyone had +assembled in the chamber of the paralytic; the second notary had also +arrived. + +A few words sufficed for a mutual understanding between the two +officers of the law. They read to Noirtier the formal copy of a will, +in order to give him an idea of the terms in which such documents are +generally couched; then, in order to test the capacity of the testator, +the first notary said, turning towards him: + +“When an individual makes his will, it is generally in favor or in +prejudice of some person.” + +“Yes.” + +“Have you an exact idea of the amount of your fortune?” + +“Yes.” + +“I will name to you several sums which will increase by gradation; you +will stop me when I reach the one representing the amount of your own +possessions?” + +“Yes.” + +There was a kind of solemnity in this interrogation. Never had the +struggle between mind and matter been more apparent than now, and if it +was not a sublime, it was, at least, a curious spectacle. They had +formed a circle round the invalid; the second notary was sitting at a +table, prepared for writing, and his colleague was standing before the +testator in the act of interrogating him on the subject to which we +have alluded. + +“Your fortune exceeds 300,000 francs, does it not?” asked he. Noirtier +made a sign that it did. + +“Do you possess 400,000 francs?” inquired the notary. Noirtier’s eye +remained immovable. + +“500,000?” The same expression continued. + +“600,000—700,000—800,000—900,000?” + +Noirtier stopped him at the last-named sum. + +“You are then in possession of 900,000 francs?” asked the notary. + +“Yes.” + +“In landed property?” + +“No.” + +“In stock?” + +“Yes.” + +“The stock is in your own hands?” + +The look which M. Noirtier cast on Barrois showed that there was +something wanting which he knew where to find. The old servant left the +room, and presently returned, bringing with him a small casket. + +“Do you permit us to open this casket?” asked the notary. Noirtier gave +his assent. + +They opened it, and found 900,000 francs in bank scrip. The first +notary handed over each note, as he examined it, to his colleague. + +The total amount was found to be as M. Noirtier had stated. + +“It is all as he has said; it is very evident that the mind still +retains its full force and vigor.” Then, turning towards the paralytic, +he said, “You possess, then, 900,000 francs of capital, which, +according to the manner in which you have invested it, ought to bring +in an income of about 40,000 livres?” + +“Yes.” + +“To whom do you desire to leave this fortune?” + +“Oh!” said Madame de Villefort, “there is not much doubt on that +subject. M. Noirtier tenderly loves his granddaughter, Mademoiselle de +Villefort; it is she who has nursed and tended him for six years, and +has, by her devoted attention, fully secured the affection, I had +almost said the gratitude, of her grandfather, and it is but just that +she should reap the fruit of her devotion.” + +The eye of Noirtier clearly showed by its expression that he was not +deceived by the false assent given by Madame de Villefort’s words and +manner to the motives which she supposed him to entertain. + +“Is it, then, to Mademoiselle Valentine de Villefort that you leave +these 900,000 francs?” demanded the notary, thinking he had only to +insert this clause, but waiting first for the assent of Noirtier, which +it was necessary should be given before all the witnesses of this +singular scene. + +Valentine, when her name was made the subject of discussion, had +stepped back, to escape unpleasant observation; her eyes were cast +down, and she was crying. The old man looked at her for an instant with +an expression of the deepest tenderness, then, turning towards the +notary, he significantly winked his eye in token of dissent. + +“What,” said the notary, “do you not intend making Mademoiselle +Valentine de Villefort your residuary legatee?” + +“No.” + +“You are not making any mistake, are you?” said the notary; “you really +mean to declare that such is not your intention?” + +“No,” repeated Noirtier; “No.” + +Valentine raised her head, struck dumb with astonishment. It was not so +much the conviction that she was disinherited that caused her grief, +but her total inability to account for the feelings which had provoked +her grandfather to such an act. But Noirtier looked at her with so much +affectionate tenderness that she exclaimed: + +“Oh, grandpapa, I see now that it is only your fortune of which you +deprive me; you still leave me the love which I have always enjoyed.” + +“Ah, yes, most assuredly,” said the eyes of the paralytic, for he +closed them with an expression which Valentine could not mistake. + +“Thank you, thank you,” murmured she. The old man’s declaration that +Valentine was not the destined inheritor of his fortune had excited the +hopes of Madame de Villefort; she gradually approached the invalid, and +said: + +“Then, doubtless, dear M. Noirtier, you intend leaving your fortune to +your grandson, Edward de Villefort?” + +The winking of the eyes which answered this speech was most decided and +terrible, and expressed a feeling almost amounting to hatred. + +“No?” said the notary; “then, perhaps, it is to your son, M. de +Villefort?” + +“No.” The two notaries looked at each other in mute astonishment and +inquiry as to what were the real intentions of the testator. Villefort +and his wife both grew red, one from shame, the other from anger. + +“What have we all done, then, dear grandpapa?” said Valentine; “you no +longer seem to love any of us?” + +The old man’s eyes passed rapidly from Villefort and his wife, and +rested on Valentine with a look of unutterable fondness. + +“Well,” said she; “if you love me, grandpapa, try and bring that love +to bear upon your actions at this present moment. You know me well +enough to be quite sure that I have never thought of your fortune; +besides, they say I am already rich in right of my mother—too rich, +even. Explain yourself, then.” + +Noirtier fixed his intelligent eyes on Valentine’s hand. + +“My hand?” said she. + +“Yes.” + +“Her hand!” exclaimed everyone. + +“Oh, gentlemen, you see it is all useless, and that my father’s mind is +really impaired,” said Villefort. + +“Ah,” cried Valentine suddenly, “I understand. It is my marriage you +mean, is it not, dear grandpapa?” + +“Yes, yes, yes,” signed the paralytic, casting on Valentine a look of +joyful gratitude for having guessed his meaning. + +30179m + + + +“You are angry with us all on account of this marriage, are you not?” + +“Yes?” + +“Really, this is too absurd,” said Villefort. + +“Excuse me, sir,” replied the notary; “on the contrary, the meaning of +M. Noirtier is quite evident to me, and I can quite easily connect the +train of ideas passing in his mind.” + +“You do not wish me to marry M. Franz d’Épinay?” observed Valentine. + +“I do not wish it,” said the eye of her grandfather. + +“And you disinherit your granddaughter,” continued the notary, “because +she has contracted an engagement contrary to your wishes?” + +“Yes.” + +“So that, but for this marriage, she would have been your heir?” + +“Yes.” + +There was a profound silence. The two notaries were holding a +consultation as to the best means of proceeding with the affair. +Valentine was looking at her grandfather with a smile of intense +gratitude, and Villefort was biting his lips with vexation, while +Madame de Villefort could not succeed in repressing an inward feeling +of joy, which, in spite of herself, appeared in her whole countenance. + +“But,” said Villefort, who was the first to break the silence, “I +consider that I am the best judge of the propriety of the marriage in +question. I am the only person possessing the right to dispose of my +daughter’s hand. It is my wish that she should marry M. Franz +d’Épinay—and she shall marry him.” + +Valentine sank weeping into a chair. + +“Sir,” said the notary, “how do you intend disposing of your fortune in +case Mademoiselle de Villefort still determines on marrying M. Franz?” +The old man gave no answer. + +“You will, of course, dispose of it in some way or other?” + +“Yes.” + +“In favor of some member of your family?” + +“No.” + +“Do you intend devoting it to charitable purposes, then?” pursued the +notary. + +“Yes.” + +“But,” said the notary, “you are aware that the law does not allow a +son to be entirely deprived of his patrimony?” + +“Yes.” + +“You only intend, then, to dispose of that part of your fortune which +the law allows you to subtract from the inheritance of your son?” +Noirtier made no answer. + +“Do you still wish to dispose of all?” + +“Yes.” + +“But they will contest the will after your death?” + +“No.” + +“My father knows me,” replied Villefort; “he is quite sure that his +wishes will be held sacred by me; besides, he understands that in my +position I cannot plead against the poor.” The eye of Noirtier beamed +with triumph. + +“What do you decide on, sir?” asked the notary of Villefort. + +“Nothing, sir; it is a resolution which my father has taken and I know +he never alters his mind. I am quite resigned. These 900,000 francs +will go out of the family in order to enrich some hospital; but it is +ridiculous thus to yield to the caprices of an old man, and I shall, +therefore, act according to my conscience.” + +Having said this, Villefort quitted the room with his wife, leaving his +father at liberty to do as he pleased. The same day the will was made, +the witnesses were brought, it was approved by the old man, sealed in +the presence of all and given in charge to M. Deschamps, the family +notary. + + + + Chapter 60. The Telegraph + +M. and Madame de Villefort found on their return that the Count of +Monte Cristo, who had come to visit them in their absence, had been +ushered into the drawing-room, and was still awaiting them there. +Madame de Villefort, who had not yet sufficiently recovered from her +late emotion to allow of her entertaining visitors so immediately, +retired to her bedroom, while the procureur, who could better depend +upon himself, proceeded at once to the salon. + +Although M. de Villefort flattered himself that, to all outward view, +he had completely masked the feelings which were passing in his mind, +he did not know that the cloud was still lowering on his brow, so much +so that the count, whose smile was radiant, immediately noticed his +sombre and thoughtful air. + +“_Ma foi!_” said Monte Cristo, after the first compliments were over, +“what is the matter with you, M. de Villefort? Have I arrived at the +moment when you were drawing up an indictment for a capital crime?” + +Villefort tried to smile. + +“No, count,” he replied, “I am the only victim in this case. It is I +who lose my cause, and it is ill-luck, obstinacy, and folly which have +caused it to be decided against me.” + +“To what do you refer?” said Monte Cristo with well-feigned interest. +“Have you really met with some great misfortune?” + +“Oh, no, monsieur,” said Villefort with a bitter smile; “it is only a +loss of money which I have sustained—nothing worth mentioning, I assure +you.” + +“True,” said Monte Cristo, “the loss of a sum of money becomes almost +immaterial with a fortune such as you possess, and to one of your +philosophic spirit.” + +“It is not so much the loss of the money that vexes me,” said +Villefort, “though, after all, 900,000 francs are worth regretting; but +I am the more annoyed with this fate, chance, or whatever you please to +call the power which has destroyed my hopes and my fortune, and may +blast the prospects of my child also, as it is all occasioned by an old +man relapsed into second childhood.” + +30183m + + + +“What do you say?” said the count; “900,000 francs? It is indeed a sum +which might be regretted even by a philosopher. And who is the cause of +all this annoyance?” + +“My father, as I told you.” + +“M. Noirtier? But I thought you told me he had become entirely +paralyzed, and that all his faculties were completely destroyed?” + +“Yes, his bodily faculties, for he can neither move nor speak, +nevertheless he thinks, acts, and wills in the manner I have described. +I left him about five minutes ago, and he is now occupied in dictating +his will to two notaries.” + +“But to do this he must have spoken?” + +“He has done better than that—he has made himself understood.” + +“How was such a thing possible?” + +“By the help of his eyes, which are still full of life, and, as you +perceive, possess the power of inflicting mortal injury.” + +“My dear,” said Madame de Villefort, who had just entered the room, +“perhaps you exaggerate the evil.” + +“Good-morning, madame,” said the count, bowing. + + + +Madame de Villefort acknowledged the salutation with one of her most +gracious smiles. + +“What is this that M. de Villefort has been telling me?” demanded Monte +Cristo “and what incomprehensible misfortune——” + +“Incomprehensible is the word!” interrupted the procureur, shrugging +his shoulders. “It is an old man’s caprice!” + +“And is there no means of making him revoke his decision?” + +“Yes,” said Madame de Villefort; “and it is still entirely in the power +of my husband to cause the will, which is now in prejudice of +Valentine, to be altered in her favor.” + +The count, who perceived that M. and Madame de Villefort were beginning +to speak in parables, appeared to pay no attention to the conversation, +and feigned to be busily engaged in watching Edward, who was +mischievously pouring some ink into the bird’s water-glass. + +“My dear,” said Villefort, in answer to his wife, “you know I have +never been accustomed to play the patriarch in my family, nor have I +ever considered that the fate of a universe was to be decided by my +nod. Nevertheless, it is necessary that my will should be respected in +my family, and that the folly of an old man and the caprice of a child +should not be allowed to overturn a project which I have entertained +for so many years. The Baron d’Épinay was my friend, as you know, and +an alliance with his son is the most suitable thing that could possibly +be arranged.” + +“Do you think,” said Madame de Villefort, “that Valentine is in league +with him? She has always been opposed to this marriage, and I should +not be at all surprised if what we have just seen and heard is nothing +but the execution of a plan concerted between them.” + +“Madame,” said Villefort, “believe me, a fortune of 900,000 francs is +not so easily renounced.” + +“She could, nevertheless, make up her mind to renounce the world, sir, +since it is only about a year ago that she herself proposed entering a +convent.” + +“Never mind,” replied Villefort; “I say that this marriage _shall_ be +consummated.” + +“Notwithstanding your father’s wishes to the contrary?” said Madame de +Villefort, selecting a new point of attack. “That is a serious thing.” + +Monte Cristo, who pretended not to be listening, heard however, every +word that was said. + +30185m + + + +“Madame,” replied Villefort “I can truly say that I have always +entertained a high respect for my father, because, to the natural +feeling of relationship was added the consciousness of his moral +superiority. The name of father is sacred in two senses; he should be +reverenced as the author of our being and as a master whom we ought to +obey. But, under the present circumstances, I am justified in doubting +the wisdom of an old man who, because he hated the father, vents his +anger on the son. It would be ridiculous in me to regulate my conduct +by such caprices. I shall still continue to preserve the same respect +toward M. Noirtier; I will suffer, without complaint, the pecuniary +deprivation to which he has subjected me; but I shall remain firm in my +determination, and the world shall see which party has reason on his +side. Consequently I shall marry my daughter to the Baron Franz +d’Épinay, because I consider it would be a proper and eligible match +for her to make, and, in short, because I choose to bestow my +daughter’s hand on whomever I please.” + +“What?” said the count, the approbation of whose eye Villefort had +frequently solicited during this speech. “What? Do you say that M. +Noirtier disinherits Mademoiselle de Villefort because she is going to +marry M. le Baron Franz d’Épinay?” + +“Yes, sir, that is the reason,” said Villefort, shrugging his +shoulders. + +“The apparent reason, at least,” said Madame de Villefort. + +“The _real_ reason, madame, I can assure you; I know my father.” + +“But I want to know in what way M. d’Épinay can have displeased your +father more than any other person?” + +“I believe I know M. Franz d’Épinay,” said the count; “is he not the +son of General de Quesnel, who was created Baron d’Épinay by Charles +X.?” + +“The same,” said Villefort. + +“Well, but he is a charming young man, according to my ideas.” + +“He is, which makes me believe that it is only an excuse of M. Noirtier +to prevent his granddaughter marrying; old men are always so selfish in +their affection,” said Madame de Villefort. + +“But,” said Monte Cristo “do you not know any cause for this hatred?” + +“Ah, _ma foi!_ who is to know?” + +“Perhaps it is some political difference?” + +“My father and the Baron d’Épinay lived in the stormy times of which I +only saw the ending,” said Villefort. + +“Was not your father a Bonapartist?” asked Monte Cristo; “I think I +remember that you told me something of that kind.” + +“My father has been a Jacobin more than anything else,” said Villefort, +carried by his emotion beyond the bounds of prudence; “and the +senator’s robe, which Napoleon cast on his shoulders, only served to +disguise the old man without in any degree changing him. When my father +conspired, it was not for the emperor, it was against the Bourbons; for +M. Noirtier possessed this peculiarity, he never projected any Utopian +schemes which could never be realized, but strove for possibilities, +and he applied to the realization of these possibilities the terrible +theories of The Mountain,—theories that never shrank from any means +that were deemed necessary to bring about the desired result.” + +“Well,” said Monte Cristo, “it is just as I thought; it was politics +which brought Noirtier and M. d’Épinay into personal contact. Although +General d’Épinay served under Napoleon, did he not still retain +royalist sentiments? And was he not the person who was assassinated one +evening on leaving a Bonapartist meeting to which he had been invited +on the supposition that he favored the cause of the emperor?” + +Villefort looked at the count almost with terror. + +“Am I mistaken, then?” said Monte Cristo. + +“No, sir, the facts were precisely what you have stated,” said Madame +de Villefort; “and it was to prevent the renewal of old feuds that M. +de Villefort formed the idea of uniting in the bonds of affection the +two children of these inveterate enemies.” + +“It was a sublime and charitable thought,” said Monte Cristo, “and the +whole world should applaud it. It would be noble to see Mademoiselle +Noirtier de Villefort assuming the title of Madame Franz d’Épinay.” + +Villefort shuddered and looked at Monte Cristo as if he wished to read +in his countenance the real feelings which had dictated the words he +had just uttered. But the count completely baffled the procureur, and +prevented him from discovering anything beneath the never-varying smile +he was so constantly in the habit of assuming. + +“Although,” said Villefort, “it will be a serious thing for Valentine +to lose her grandfather’s fortune, I do not think that M. d’Épinay will +be frightened at this pecuniary loss. He will, perhaps, hold me in +greater esteem than the money itself, seeing that I sacrifice +everything in order to keep my word with him. Besides, he knows that +Valentine is rich in right of her mother, and that she will, in all +probability, inherit the fortune of M. and Madame de Saint-Méran, her +mother’s parents, who both love her tenderly.” + +“And who are fully as well worth loving and tending as M. Noirtier,” +said Madame de Villefort; “besides, they are to come to Paris in about +a month, and Valentine, after the affront she has received, need not +consider it necessary to continue to bury herself alive by being shut +up with M. Noirtier.” + +The count listened with satisfaction to this tale of wounded self-love +and defeated ambition. + +“But it seems to me,” said Monte Cristo, “and I must begin by asking +your pardon for what I am about to say, that if M. Noirtier disinherits +Mademoiselle de Villefort because she is going to marry a man whose +father he detested, he cannot have the same cause of complaint against +this dear Edward.” + +“True,” said Madame de Villefort, with an intonation of voice which it +is impossible to describe; “is it not unjust—shamefully unjust? Poor +Edward is as much M. Noirtier’s grandchild as Valentine, and yet, if +she had not been going to marry M. Franz, M. Noirtier would have left +her all his money; and supposing Valentine to be disinherited by her +grandfather, she will still be three times richer than he.” + +The count listened and said no more. + +“Count,” said Villefort, “we will not entertain you any longer with our +family misfortunes. It is true that my patrimony will go to endow +charitable institutions, and my father will have deprived me of my +lawful inheritance without any reason for doing so, but I shall have +the satisfaction of knowing that I have acted like a man of sense and +feeling. M. d’Épinay, to whom I had promised the interest of this sum, +shall receive it, even if I endure the most cruel privations.” + +“However,” said Madame de Villefort, returning to the one idea which +incessantly occupied her mind, “perhaps it would be better to explain +this unlucky affair to M. d’Épinay, in order to give him the +opportunity of himself renouncing his claim to the hand of Mademoiselle +de Villefort.” + +“Ah, that would be a great pity,” said Villefort. + +“A great pity,” said Monte Cristo. + +“Undoubtedly,” said Villefort, moderating the tones of his voice, “a +marriage once concerted and then broken off, throws a sort of discredit +on a young lady; then again, the old reports, which I was so anxious to +put an end to, will instantly gain ground. No, it will all go well; M. +d’Épinay, if he is an honorable man, will consider himself more than +ever pledged to Mademoiselle de Villefort, unless he were actuated by a +decided feeling of avarice, but that is impossible.” + +“I agree with M. de Villefort,” said Monte Cristo, fixing his eyes on +Madame de Villefort; “and if I were sufficiently intimate with him to +allow of giving my advice, I would persuade him, since I have been told +M. d’Épinay is coming back, to settle this affair at once beyond all +possibility of revocation. I will answer for the success of a project +which will reflect so much honor on M. de Villefort.” + +The procureur arose, delighted with the proposition, but his wife +slightly changed color. + +“Well, that is all that I wanted, and I will be guided by a counsellor +such as you are,” said he, extending his hand to Monte Cristo. +“Therefore let everyone here look upon what has passed today as if it +had not happened, and as though we had never thought of such a thing as +a change in our original plans.” + +“Sir,” said the count, “the world, unjust as it is, will be pleased +with your resolution; your friends will be proud of you, and M. +d’Épinay, even if he took Mademoiselle de Villefort without any dowry, +which he will not do, would be delighted with the idea of entering a +family which could make such sacrifices in order to keep a promise and +fulfil a duty.” + +At the conclusion of these words, the count rose to depart. + +“Are you going to leave us, count?” said Madame de Villefort. + +“I am sorry to say I must do so, madame, I only came to remind you of +your promise for Saturday.” + +“Did you fear that we should forget it?” + +“You are very good, madame, but M. de Villefort has so many important +and urgent occupations.” + +“My husband has given me his word, sir,” said Madame de Villefort; “you +have just seen him resolve to keep it when he has everything to lose, +and surely there is more reason for his doing so where he has +everything to gain.” + +“And,” said Villefort, “is it at your house in the Champs-Élysées that +you receive your visitors?” + +“No,” said Monte Cristo, “which is precisely the reason which renders +your kindness more meritorious,—it is in the country.” + +“In the country?” + +“Yes.” + +“Where is it, then? Near Paris, is it not?” + +“Very near, only half a league from the Barriers,—it is at Auteuil.” + +“At Auteuil?” said Villefort; “true, Madame de Villefort told me you +lived at Auteuil, since it was to your house that she was taken. And in +what part of Auteuil do you reside?” + +“Rue de la Fontaine.” + +“Rue de la Fontaine!” exclaimed Villefort in an agitated tone; “at what +number?” + +“No. 28.” + +“Then,” cried Villefort, “was it you who bought M. de Saint-Méran’s +house!” + +“Did it belong to M. de Saint-Méran?” demanded Monte Cristo. + +“Yes,” replied Madame de Villefort; “and, would you believe it, +count——” + +“Believe what?” + +“You think this house pretty, do you not?” + +“I think it charming.” + +“Well, my husband would never live in it.” + +“Indeed?” returned Monte Cristo, “that is a prejudice on your part, M. +de Villefort, for which I am quite at a loss to account.” + +“I do not like Auteuil, sir,” said the procureur, making an evident +effort to appear calm. + +“But I hope you will not carry your antipathy so far as to deprive me +of the pleasure of your company, sir,” said Monte Cristo. + +“No, count,—I hope—I assure you I shall do my best,” stammered +Villefort. + +“Oh,” said Monte Cristo, “I allow of no excuse. On Saturday, at six +o’clock. I shall be expecting you, and if you fail to come, I shall +think—for how do I know to the contrary?—that this house, which has +remained uninhabited for twenty years, must have some gloomy tradition +or dreadful legend connected with it.” + +“I will come, count,—I will be sure to come,” said Villefort eagerly. + +“Thank you,” said Monte Cristo; “now you must permit me to take my +leave of you.” + +“You said before that you were obliged to leave us, monsieur,” said +Madame de Villefort, “and you were about to tell us why when your +attention was called to some other subject.” + +“Indeed madame,” said Monte Cristo: “I scarcely know if I dare tell you +where I am going.” + +“Nonsense; say on.” + +“Well, then, it is to see a thing on which I have sometimes mused for +hours together.” + +“What is it?” + +“A telegraph. So now I have told my secret.” + +“A telegraph?” repeated Madame de Villefort. + +“Yes, a telegraph. I had often seen one placed at the end of a road on +a hillock, and in the light of the sun its black arms, bending in every +direction, always reminded me of the claws of an immense beetle, and I +assure you it was never without emotion that I gazed on it, for I could +not help thinking how wonderful it was that these various signs should +be made to cleave the air with such precision as to convey to the +distance of three hundred leagues the ideas and wishes of a man sitting +at a table at one end of the line to another man similarly placed at +the opposite extremity, and all this effected by a simple act of +volition on the part of the sender of the message. I began to think of +genii, sylphs, gnomes, in short, of all the ministers of the occult +sciences, until I laughed aloud at the freaks of my own imagination. +Now, it never occurred to me to wish for a nearer inspection of these +large insects, with their long black claws, for I always feared to find +under their stone wings some little human genius fagged to death with +cabals, factions, and government intrigues. But one fine day I learned +that the mover of this telegraph was only a poor wretch, hired for +twelve hundred francs a year, and employed all day, not in studying the +heavens like an astronomer, or in gazing on the water like an angler, +or even in enjoying the privilege of observing the country around him, +but all his monotonous life was passed in watching his white-bellied, +black-clawed fellow insect, four or five leagues distant from him. At +length I felt a desire to study this living chrysalis more closely, and +to endeavor to understand the secret part played by these insect-actors +when they occupy themselves simply with pulling different pieces of +string.” + +30191m + + + +“And are you going there?” + +“I am.” + +“What telegraph do you intend visiting? that of the home department, or +of the observatory?” + +“Oh, no; I should find there people who would force me to understand +things of which I would prefer to remain ignorant, and who would try to +explain to me, in spite of myself, a mystery which even they do not +understand. _Ma foi!_ I should wish to keep my illusions concerning +insects unimpaired; it is quite enough to have those dissipated which I +had formed of my fellow-creatures. I shall, therefore, not visit either +of these telegraphs, but one in the open country where I shall find a +good-natured simpleton, who knows no more than the machine he is +employed to work.” + +“You are a singular man,” said Villefort. + +“What line would you advise me to study?” + +“The one that is most in use just at this time.” + +“The Spanish one, you mean, I suppose?” + +“Yes; should you like a letter to the minister that they might explain +to you——” + +“No,” said Monte Cristo; “since, as I told you before, I do not wish to +comprehend it. The moment I understand it there will no longer exist a +telegraph for me; it will be nothing more than a sign from M. Duchâtel, +or from M. Montalivet, transmitted to the prefect of Bayonne, mystified +by two Greek words, _têle_, _graphein_. It is the insect with black +claws, and the awful word which I wish to retain in my imagination in +all its purity and all its importance.” + +“Go then; for in the course of two hours it will be dark, and you will +not be able to see anything.” + +“_Ma foi!_ you frighten me. Which is the nearest way? Bayonne?” + +“Yes; the road to Bayonne.” + +“And afterwards the road to Châtillon?” + +“Yes.” + +“By the tower of Montlhéry, you mean?” + +“Yes.” + +“Thank you. Good-bye. On Saturday I will tell you my impressions +concerning the telegraph.” + +At the door the count was met by the two notaries, who had just +completed the act which was to disinherit Valentine, and who were +leaving under the conviction of having done a thing which could not +fail of redounding considerably to their credit. + + + + Chapter 61. How a Gardener May Get Rid of the Dormice that Eat His + Peaches + +Not on the same night as he had stated, but the next morning, the Count +of Monte Cristo went out by the Barrière d’Enfer, taking the road to +Orléans. Leaving the village of Linas, without stopping at the +telegraph, which flourished its great bony arms as he passed, the count +reached the tower of Montlhéry, situated, as everyone knows, upon the +highest point of the plain of that name. At the foot of the hill the +count dismounted and began to ascend by a little winding path, about +eighteen inches wide; when he reached the summit he found himself +stopped by a hedge, upon which green fruit had succeeded to red and +white flowers. + +Monte Cristo looked for the entrance to the enclosure, and was not long +in finding a little wooden gate, working on willow hinges, and fastened +with a nail and string. The count soon mastered the mechanism, the gate +opened, and he then found himself in a little garden, about twenty feet +long by twelve wide, bounded on one side by part of the hedge, which +contained the ingenious contrivance we have called a gate, and on the +other by the old tower, covered with ivy and studded with wall-flowers. + +No one would have thought in looking at this old, weather-beaten, +floral-decked tower (which might be likened to an elderly dame dressed +up to receive her grandchildren at a birthday feast) that it would have +been capable of telling strange things, if,—in addition to the menacing +ears which the proverb says all walls are provided with,—it had also a +voice. + +The garden was crossed by a path of red gravel, edged by a border of +thick box, of many years’ growth, and of a tone and color that would +have delighted the heart of Delacroix, our modern Rubens. This path was +formed in the shape of the figure of 8, thus, in its windings, making a +walk of sixty feet in a garden of only twenty. + +Never had Flora, the fresh and smiling goddess of gardeners, been +honored with a purer or more scrupulous worship than that which was +paid to her in this little enclosure. In fact, of the twenty rose-trees +which formed the _parterre_, not one bore the mark of the slug, nor +were there evidences anywhere of the clustering aphis which is so +destructive to plants growing in a damp soil. And yet it was not +because the damp had been excluded from the garden; the earth, black as +soot, the thick foliage of the trees betrayed its presence; besides, +had natural humidity been wanting, it could have been immediately +supplied by artificial means, thanks to a tank of water, sunk in one of +the corners of the garden, and upon which were stationed a frog and a +toad, who, from antipathy, no doubt, always remained on the two +opposite sides of the basin. There was not a blade of grass to be seen +in the paths, or a weed in the flower-beds; no fine lady ever trained +and watered her geraniums, her cacti, and her rhododendrons, in her +porcelain _jardinière_ with more pains than this hitherto unseen +gardener bestowed upon his little enclosure. + +Monte Cristo stopped after having closed the gate and fastened the +string to the nail, and cast a look around. + +“The man at the telegraph,” said he, “must either engage a gardener or +devote himself passionately to agriculture.” + +Suddenly he struck against something crouching behind a wheelbarrow +filled with leaves; the something rose, uttering an exclamation of +astonishment, and Monte Cristo found himself facing a man about fifty +years old, who was plucking strawberries, which he was placing upon +grape leaves. He had twelve leaves and about as many strawberries, +which, on rising suddenly, he let fall from his hand. + +“You are gathering your crop, sir?” said Monte Cristo, smiling. + +30193m + + + +“Excuse me, sir,” replied the man, raising his hand to his cap; “I am +not up there, I know, but I have only just come down.” + +“Do not let me interfere with you in anything, my friend,” said the +count; “gather your strawberries, if, indeed, there are any left.” + +“I have ten left,” said the man, “for here are eleven, and I had +twenty-one, five more than last year. But I am not surprised; the +spring has been warm this year, and strawberries require heat, sir. +This is the reason that, instead of the sixteen I had last year, I have +this year, you see, eleven, already plucked—twelve, thirteen, fourteen, +fifteen, sixteen, seventeen, eighteen. Ah, I miss three, they were here +last night, sir—I am sure they were here—I counted them. It must be the +son of Mère Simon who has stolen them; I saw him strolling about here +this morning. Ah, the young rascal—stealing in a garden—he does not +know where that may lead him to.” + +“Certainly, it is wrong,” said Monte Cristo, “but you should take into +consideration the youth and greediness of the delinquent.” + +“Of course,” said the gardener, “but that does not make it the less +unpleasant. But, sir, once more I beg pardon; perhaps you are an +officer that I am detaining here.” And he glanced timidly at the +count’s blue coat. + +30197m + + + +“Calm yourself, my friend,” said the count, with the smile which he +made at will either terrible or benevolent, and which now expressed +only the kindliest feeling; “I am not an inspector, but a traveller, +brought here by a curiosity he half repents of, since he causes you to +lose your time.” + +“Ah, my time is not valuable,” replied the man with a melancholy smile. +“Still it belongs to government, and I ought not to waste it; but, +having received the signal that I might rest for an hour” (here he +glanced at the sun-dial, for there was everything in the enclosure of +Montlhéry, even a sun-dial), “and having ten minutes before me, and my +strawberries being ripe, when a day longer—by-the-by, sir, do you think +dormice eat them?” + +“Indeed, I should think not,” replied Monte Cristo; “dormice are bad +neighbors for us who do not eat them preserved, as the Romans did.” + +“What? Did the Romans eat them?” said the gardener—“ate dormice?” + +“I have read so in Petronius,” said the count. + +“Really? They can’t be nice, though they do say ‘as fat as a dormouse.’ +It is not a wonder they are fat, sleeping all day, and only waking to +eat all night. Listen. Last year I had four apricots—they stole one, I +had one nectarine, only one—well, sir, they ate half of it on the wall; +a splendid nectarine—I never ate a better.” + +“You ate it?” + +“That is to say, the half that was left—you understand; it was +exquisite, sir. Ah, those gentlemen never choose the worst morsels; +like Mère Simon’s son, who has not chosen the worst strawberries. But +this year,” continued the horticulturist, “I’ll take care it shall not +happen, even if I should be forced to sit by the whole night to watch +when the strawberries are ripe.” + +Monte Cristo had seen enough. Every man has a devouring passion in his +heart, as every fruit has its worm; that of the telegraph man was +horticulture. He began gathering the grape-leaves which screened the +sun from the grapes, and won the heart of the gardener. + +“Did you come here, sir, to see the telegraph?” he said. + +“Yes, if it isn’t contrary to the rules.” + +“Oh, no,” said the gardener; “not in the least, since there is no +danger that anyone can possibly understand what we are saying.” + +“I have been told,” said the count, “that you do not always yourselves +understand the signals you repeat.” + +“That is true, sir, and that is what I like best,” said the man, +smiling. + +“Why do you like that best?” + +“Because then I have no responsibility. I am a machine then, and +nothing else, and so long as I work, nothing more is required of me.” + +“Is it possible,” said Monte Cristo to himself, “that I can have met +with a man that has no ambition? That would spoil my plans.” + +“Sir,” said the gardener, glancing at the sun-dial, “the ten minutes +are almost up; I must return to my post. Will you go up with me?” + +“I follow you.” + +Monte Cristo entered the tower, which was divided into three stories. +The tower contained implements, such as spades, rakes, watering-pots, +hung against the wall; this was all the furniture. The second was the +man’s conventional abode, or rather sleeping-place; it contained a few +poor articles of household furniture—a bed, a table, two chairs, a +stone pitcher—and some dry herbs, hung up to the ceiling, which the +count recognized as sweet peas, and of which the good man was +preserving the seeds; he had labelled them with as much care as if he +had been master botanist in the Jardin des Plantes. + +“Does it require much study to learn the art of telegraphing?” asked +Monte Cristo. + +“The study does not take long; it was acting as a supernumerary that +was so tedious.” + +“And what is the pay?” + +“A thousand francs, sir.” + +“It is nothing.” + +“No; but then we are lodged, as you perceive.” + +Monte Cristo looked at the room. They passed to the third story; it was +the telegraph room. Monte Cristo looked in turn at the two iron handles +by which the machine was worked. “It is very interesting,” he said, +“but it must be very tedious for a lifetime.” + +“Yes. At first my neck was cramped with looking at it, but at the end +of a year I became used to it; and then we have our hours of +recreation, and our holidays.” + +“Holidays?” + +“Yes.” + +“When?” + +“When we have a fog.” + +“Ah, to be sure.” + +“Those are indeed holidays to me; I go into the garden, I plant, I +prune, I trim, I kill the insects all day long.” + +“How long have you been here?” + +“Ten years, and five as a supernumerary make fifteen.” + +“You are——” + +“Fifty-five years old.” + +“How long must you have served to claim the pension?” + +“Oh, sir, twenty-five years.” + +“And how much is the pension?” + +“A hundred crowns.” + +“Poor humanity!” murmured Monte Cristo. + +“What did you say, sir?” asked the man. + +“I was saying it was very interesting.” + +“What was?” + +“All you were showing me. And you really understand none of these +signals?” + +“None at all.” + +“And have you never tried to understand them?” + +“Never. Why should I?” + +“But still there are some signals only addressed to you.” + +“Certainly.” + +“And do you understand them?” + +“They are always the same.” + +“And they mean——” + +“‘_Nothing new; You have an hour;_’ or ‘_Tomorrow_.’” + +“This is simple enough,” said the count; “but look, is not your +correspondent putting itself in motion?” + +“Ah, yes; thank you, sir.” + +“And what is it saying—anything you understand?” + +“Yes; it asks if I am ready.” + +“And you reply?” + +“By the same sign, which, at the same time, tells my right-hand +correspondent that I am ready, while it gives notice to my left-hand +correspondent to prepare in his turn.” + +“It is very ingenious,” said the count. + +“You will see,” said the man proudly; “in five minutes he will speak.” + +“I have, then, five minutes,” said Monte Cristo to himself; “it is more +time than I require. My dear sir, will you allow me to ask you a +question?” + +“What is it, sir?” + +“You are fond of gardening?” + +“Passionately.” + +“And you would be pleased to have, instead of this terrace of twenty +feet, an enclosure of two acres?” + +“Sir, I should make a terrestrial paradise of it.” + +“You live badly on your thousand francs?” + +“Badly enough; but yet I do live.” + +“Yes; but you have a wretchedly small garden.” + +“True, the garden is not large.” + +“And, then, such as it is, it is filled with dormice, who eat +everything.” + +“Ah, they are my scourges.” + +“Tell me, should you have the misfortune to turn your head while your +right-hand correspondent was telegraphing——” + +“I should not see him.” + +“Then what would happen?” + +“I could not repeat the signals.” + +“And then?” + +“Not having repeated them, through negligence, I should be fined.” + +“How much?” + +“A hundred francs.” + +“The tenth of your income—that would be fine work.” + +“Ah!” said the man. + +“Has it ever happened to you?” said Monte Cristo. + +“Once, sir, when I was grafting a rose-tree.” + +“Well, suppose you were to alter a signal, and substitute another?” + +“Ah, that is another case; I should be turned off, and lose my +pension.” + +“Three hundred francs?” + +“A hundred crowns, yes, sir; so you see that I am not likely to do any +of these things.” + +“Not even for fifteen years’ wages? Come, it is worth thinking about?” + +“For fifteen thousand francs?” + +“Yes.” + +“Sir, you alarm me.” + +“Nonsense.” + +“Sir, you are tempting me?” + +“Just so; fifteen thousand francs, do you understand?” + +“Sir, let me see my right-hand correspondent.” + +“On the contrary, do not look at him, but at this.” + +“What is it?” + +“What? Do you not know these bits of paper?” + +“Bank-notes!” + +“Exactly; there are fifteen of them.” + +“And whose are they?” + +“Yours, if you like.” + +“Mine?” exclaimed the man, half-suffocated. + +“Yes; yours—your own property.” + +“Sir, my right-hand correspondent is signalling.” + +“Let him signal.” + +“Sir, you have distracted me; I shall be fined.” + +“That will cost you a hundred francs; you see it is your interest to +take my bank-notes.” + +“Sir, my right-hand correspondent redoubles his signals; he is +impatient.” + +“Never mind—take these;” and the count placed the packet in the man’s +hands. “Now this is not all,” he said; “you cannot live upon your +fifteen thousand francs.” + +“I shall still have my place.” + +“No, you will lose it, for you are going to alter your correspondent’s +message.” + +“Oh, sir, what are you proposing?” + +“A jest.” + +“Sir, unless you force me——” + +“I think I can effectually force you;” and Monte Cristo drew another +packet from his pocket. “Here are ten thousand more francs,” he said, +“with the fifteen thousand already in your pocket, they will make +twenty-five thousand. With five thousand you can buy a pretty little +house with two acres of land; the remaining twenty thousand will bring +you in a thousand francs a year.” + +“A garden with two acres of land!” + +“And a thousand francs a year.” + +“Oh, heavens!” + +“Come, take them,” and Monte Cristo forced the bank-notes into his +hand. + +“What am I to do?” + +“Nothing very difficult.” + +“But what is it?” + +“To repeat these signs.” Monte Cristo took a paper from his pocket, +upon which were drawn three signs, with numbers to indicate the order +in which they were to be worked. + +“There, you see it will not take long.” + +“Yes; but——” + +“Do this, and you will have nectarines and all the rest.” + +The shot told; red with fever, while the large drops fell from his +brow, the man executed, one after the other, the three signs given by +the count, in spite of the frightful contortions of the right-hand +correspondent, who, not understanding the change, began to think the +gardener had gone mad. As to the left-hand one, he conscientiously +repeated the same signals, which were finally transmitted to the +Minister of the Interior. + +“Now you are rich,” said Monte Cristo. + +“Yes,” replied the man, “but at what a price!” + +“Listen, friend,” said Monte Cristo. “I do not wish to cause you any +remorse; believe me, then, when I swear to you that you have wronged no +man, but on the contrary have benefited mankind.” + +The man looked at the bank-notes, felt them, counted them, turned pale, +then red, then rushed into his room to drink a glass of water, but he +had no time to reach the water-jug, and fainted in the midst of his +dried herbs. Five minutes after the new telegram reached the minister, +Debray had the horses put to his carriage, and drove to Danglars’ +house. + +“Has your husband any Spanish bonds?” he asked of the baroness. + +“I think so, indeed! He has six millions’ worth.” + +“He must sell them at whatever price.” + +“Why?” + +“Because Don Carlos has fled from Bourges, and has returned to Spain.” + +30203m + + + +“How do you know?” Debray shrugged his shoulders. + +“The idea of asking how I hear the news,” he said. + +The baroness did not wait for a repetition; she ran to her husband, who +immediately hastened to his agent, and ordered him to sell at any +price. When it was seen that Danglars sold, the Spanish funds fell +directly. Danglars lost five hundred thousand francs; but he rid +himself of all his Spanish shares. The same evening the following was +read in _Le Messager_: + +“[By telegraph.] The king, Don Carlos, has escaped the vigilance of his +guardians at Bourges, and has returned to Spain by the Catalonian +frontier. Barcelona has risen in his favor.” + +All that evening nothing was spoken of but the foresight of Danglars, +who had sold his shares, and of the luck of the stock-jobber, who only +lost five hundred thousand francs by such a blow. Those who had kept +their shares, or bought those of Danglars, looked upon themselves as +ruined, and passed a very bad night. Next morning _Le Moniteur_ +contained the following: + +“It was without any foundation that _Le Messager_ yesterday announced +the flight of Don Carlos and the revolt of Barcelona. The king (Don +Carlos) has not left Bourges, and the peninsula is in the enjoyment of +profound peace. A telegraphic signal, improperly interpreted, owing to +the fog, was the cause of this error.” + +The funds rose one per cent higher than before they had fallen. This, +reckoning his loss, and what he had missed gaining, made the difference +of a million to Danglars. + +“Good,” said Monte Cristo to Morrel, who was at his house when the news +arrived of the strange reverse of fortune of which Danglars had been +the victim, “I have just made a discovery for twenty-five thousand +francs, for which I would have paid a hundred thousand.” + +“What have you discovered?” asked Morrel. + +“I have just discovered how a gardener may get rid of the dormice that +eat his peaches.” + + + + Chapter 62. Ghosts + +At first sight, the exterior of the house at Auteuil gave no +indications of splendor, nothing one would expect from the destined +residence of the magnificent Count of Monte Cristo; but this simplicity +was according to the will of its master, who positively ordered nothing +to be altered outside. The splendor was within. Indeed, almost before +the door opened, the scene changed. + +M. Bertuccio had outdone himself in the taste displayed in furnishing, +and in the rapidity with which it was executed. It is told that the Duc +d’Antin removed in a single night a whole avenue of trees that annoyed +Louis XIV.; in three days M. Bertuccio planted an entirely bare court +with poplars, large spreading sycamores to shade the different parts of +the house, and in the foreground, instead of the usual paving-stones, +half hidden by the grass, there extended a lawn but that morning laid +down, and upon which the water was yet glistening. For the rest, the +orders had been issued by the count; he himself had given a plan to +Bertuccio, marking the spot where each tree was to be planted, and the +shape and extent of the lawn which was to take the place of the +paving-stones. + +Thus the house had become unrecognizable, and Bertuccio himself +declared that he scarcely knew it, encircled as it was by a framework +of trees. The overseer would not have objected, while he was about it, +to have made some improvements in the garden, but the count had +positively forbidden it to be touched. Bertuccio made amends, however, +by loading the antechambers, staircases, and mantle-pieces with +flowers. + +What, above all, manifested the shrewdness of the steward, and the +profound science of the master, the one in carrying out the ideas of +the other, was that this house which appeared only the night before so +sad and gloomy, impregnated with that sickly smell one can almost fancy +to be the smell of time, had in a single day acquired the aspect of +life, was scented with its master’s favorite perfumes, and had the very +light regulated according to his wish. When the count arrived, he had +under his touch his books and arms, his eyes rested upon his favorite +pictures; his dogs, whose caresses he loved, welcomed him in the +antechamber; the birds, whose songs delighted him, cheered him with +their music; and the house, awakened from its long sleep, like the +sleeping beauty in the wood, lived, sang, and bloomed like the houses +we have long cherished, and in which, when we are forced to leave them, +we leave a part of our souls. + +The servants passed gayly along the fine courtyard; some, belonging to +the kitchens, gliding down the stairs, restored but the previous day, +as if they had always inhabited the house; others filling the +coach-houses, where the equipages, encased and numbered, appeared to +have been installed for the last fifty years; and in the stables the +horses replied with neighs to the grooms, who spoke to them with much +more respect than many servants pay their masters. + +The library was divided into two parts on either side of the wall, and +contained upwards of two thousand volumes; one division was entirely +devoted to novels, and even the volume which had been published but the +day before was to be seen in its place in all the dignity of its red +and gold binding. + +On the other side of the house, to match with the library, was the +conservatory, ornamented with rare flowers, that bloomed in china jars; +and in the midst of the greenhouse, marvellous alike to sight and +smell, was a billiard-table which looked as if it had been abandoned +during the past hour by players who had left the balls on the cloth. + +One chamber alone had been respected by the magnificent Bertuccio. +Before this room, to which you could ascend by the grand, and go out by +the back staircase, the servants passed with curiosity, and Bertuccio +with terror. + +At five o’clock precisely, the count arrived before the house at +Auteuil, followed by Ali. Bertuccio was awaiting this arrival with +impatience, mingled with uneasiness; he hoped for some compliments, +while, at the same time, he feared to have frowns. Monte Cristo +descended into the courtyard, walked all over the house, without giving +any sign of approbation or pleasure, until he entered his bedroom, +situated on the opposite side to the closed room; then he approached a +little piece of furniture, made of rosewood, which he had noticed at a +previous visit. + +“That can only be to hold gloves,” he said. + +“Will your excellency deign to open it?” said the delighted Bertuccio, +“and you will find gloves in it.” + +Elsewhere the count found everything he required—smelling-bottles, +cigars, knick-knacks. + +30207m + + + +“Good,” he said; and M. Bertuccio left enraptured, so great, so +powerful, and real was the influence exercised by this man over all who +surrounded him. + +At precisely six o’clock the clatter of horses’ hoofs was heard at the +entrance door; it was our captain of Spahis, who had arrived on Médéah. +“I am sure I am the first,” cried Morrel; “I did it on purpose to have +you a minute to myself, before everyone came. Julie and Emmanuel have a +thousand things to tell you. Ah, really this is magnificent! But tell +me, count, will your people take care of my horse?” + +“Do not alarm yourself, my dear Maximilian—they understand.” + +“I mean, because he wants petting. If you had seen at what a pace he +came—like the wind!” + +“I should think so,—a horse that cost 5,000 francs!” said Monte Cristo, +in the tone which a father would use towards a son. + +“Do you regret them?” asked Morrel, with his open laugh. + +“I? Certainly not,” replied the count. “No; I should only regret if the +horse had not proved good.” + +“It is so good, that I have distanced M. de Château-Renaud, one of the +best riders in France, and M. Debray, who both mount the minister’s +Arabians; and close on their heels are the horses of Madame Danglars, +who always go at six leagues an hour.” + +“Then they follow you?” asked Monte Cristo. + +“See, they are here.” And at the same minute a carriage with smoking +horses, accompanied by two mounted gentlemen, arrived at the gate, +which opened before them. The carriage drove round, and stopped at the +steps, followed by the horsemen. + +The instant Debray had touched the ground, he was at the carriage-door. +He offered his hand to the baroness, who, descending, took it with a +peculiarity of manner imperceptible to everyone but Monte Cristo. But +nothing escaped the count’s notice, and he observed a little note, +passed with the facility that indicates frequent practice, from the +hand of Madame Danglars to that of the minister’s secretary. + +After his wife the banker descended, as pale as though he had issued +from his tomb instead of his carriage. + +Madame Danglars threw a rapid and inquiring glance which could only be +interpreted by Monte Cristo, around the courtyard, over the peristyle, +and across the front of the house, then, repressing a slight emotion, +which must have been seen on her countenance if she had not kept her +color, she ascended the steps, saying to Morrel: + +“Sir, if you were a friend of mine, I should ask you if you would sell +your horse.” + +Morrel smiled with an expression very like a grimace, and then turned +round to Monte Cristo, as if to ask him to extricate him from his +embarrassment. The count understood him. + +“Ah, madame,” he said, “why did you not make that request of me?” + +“With you, sir,” replied the baroness, “one can wish for nothing, one +is so sure to obtain it. If it were so with M. Morrel——” + +“Unfortunately,” replied the count, “I am witness that M. Morrel cannot +give up his horse, his honor being engaged in keeping it.” + +“How so?” + +“He laid a wager he would tame Médéah in the space of six months. You +understand now that if he were to get rid of the animal before the time +named, he would not only lose his bet, but people would say he was +afraid; and a brave captain of Spahis cannot risk this, even to gratify +a pretty woman, which is, in my opinion, one of the most sacred +obligations in the world.” + +“You see my position, madame,” said Morrel, bestowing a grateful smile +on Monte Cristo. + +“It seems to me,” said Danglars, in his coarse tone, ill-concealed by a +forced smile, “that you have already got horses enough.” + +Madame Danglars seldom allowed remarks of this kind to pass unnoticed, +but, to the surprise of the young people, she pretended not to hear it, +and said nothing. Monte Cristo smiled at her unusual humility, and +showed her two immense porcelain jars, over which wound marine plants, +of a size and delicacy that nature alone could produce. The baroness +was astonished. + +“Why,” said she, “you could plant one of the chestnut-trees in the +Tuileries inside! How can such enormous jars have been manufactured?” + +“Ah! madame,” replied Monte Cristo, “you must not ask of us, the +manufacturers of fine porcelain, such a question. It is the work of +another age, constructed by the genii of earth and water.” + +“How so?—at what period can that have been?” + +“I do not know; I have only heard that an emperor of China had an oven +built expressly, and that in this oven twelve jars like this were +successively baked. Two broke, from the heat of the fire; the other ten +were sunk three hundred fathoms deep into the sea. The sea, knowing +what was required of her, threw over them her weeds, encircled them +with coral, and encrusted them with shells; the whole was cemented by +two hundred years beneath these almost impervious depths, for a +revolution carried away the emperor who wished to make the trial, and +only left the documents proving the manufacture of the jars and their +descent into the sea. At the end of two hundred years the documents +were found, and they thought of bringing up the jars. Divers descended +in machines, made expressly on the discovery, into the bay where they +were thrown; but of ten three only remained, the rest having been +broken by the waves. I am fond of these jars, upon which, perhaps, +misshapen, frightful monsters have fixed their cold, dull eyes, and in +which myriads of small fish have slept, seeking a refuge from the +pursuit of their enemies.” + +Meanwhile, Danglars, who had cared little for curiosities, was +mechanically tearing off the blossoms of a splendid orange-tree, one +after another. When he had finished with the orange-tree, he began at +the cactus; but this, not being so easily plucked as the orange-tree, +pricked him dreadfully. He shuddered, and rubbed his eyes as though +awaking from a dream. + +“Sir,” said Monte Cristo to him, “I do not recommend my pictures to +you, who possess such splendid paintings; but, nevertheless, here are +two by Hobbema, a Paul Potter, a Mieris, two by Gerard Douw, a Raphael, +a Van Dyck, a Zurbaran, and two or three by Murillo, worth looking at.” + +“Stay,” said Debray; “I recognize this Hobbema.” + +“Ah, indeed!” + +“Yes; it was proposed for the Museum.” + +“Which, I believe, does not contain one?” said Monte Cristo. + +“No; and yet they refused to buy it.” + +“Why?” said Château-Renaud. + +“You pretend not to know,—because government was not rich enough.” + +“Ah, pardon me,” said Château-Renaud; “I have heard of these things +every day during the last eight years, and I cannot understand them +yet.” + +“You will, by and by,” said Debray. + +“I think not,” replied Château-Renaud. + +“Major Bartolomeo Cavalcanti and Count Andrea Cavalcanti,” announced +Baptistin. + +A black satin stock, fresh from the maker’s hands, gray moustaches, a +bold eye, a major’s uniform, ornamented with three medals and five +crosses—in fact, the thorough bearing of an old soldier—such was the +appearance of Major Bartolomeo Cavalcanti, that tender father with whom +we are already acquainted. Close to him, dressed in entirely new +clothes, advanced smilingly Count Andrea Cavalcanti, the dutiful son, +whom we also know. The three young people were talking together. On the +entrance of the new-comers, their eyes glanced from father to son, and +then, naturally enough, rested on the latter, whom they began +criticising. + +“Cavalcanti!” said Debray. + +“A fine name,” said Morrel. + +“Yes,” said Château-Renaud, “these Italians are well named and badly +dressed.” + +“You are fastidious, Château-Renaud,” replied Debray; “those clothes +are well cut and quite new.” + +“That is just what I find fault with. That gentleman appears to be well +dressed for the first time in his life.” + +“Who are those gentlemen?” asked Danglars of Monte Cristo. + +“You heard—Cavalcanti.” + +“That tells me their name, and nothing else.” + +“Ah! true. You do not know the Italian nobility; the Cavalcanti are all +descended from princes.” + +“Have they any fortune?” + +“An enormous one.” + +“What do they do?” + +“Try to spend it all. They have some business with you, I think, from +what they told me the day before yesterday. I, indeed, invited them +here today on your account. I will introduce you to them.” + +“But they appear to speak French with a very pure accent,” said +Danglars. + +“The son has been educated in a college in the south; I believe near +Marseilles. You will find him quite enthusiastic.” + +“Upon what subject?” asked Madame Danglars. + +“The French ladies, madame. He has made up his mind to take a wife from +Paris.” + +“A fine idea that of his,” said Danglars, shrugging his shoulders. +Madame Danglars looked at her husband with an expression which, at any +other time, would have indicated a storm, but for the second time she +controlled herself. + +“The baron appears thoughtful today,” said Monte Cristo to her; “are +they going to put him in the ministry?” + +“Not yet, I think. More likely he has been speculating on the Bourse, +and has lost money.” + +“M. and Madame de Villefort,” cried Baptistin. + +They entered. M. de Villefort, notwithstanding his self-control, was +visibly affected, and when Monte Cristo touched his hand, he felt it +tremble. + +“Certainly, women alone know how to dissimulate,” said Monte Cristo to +himself, glancing at Madame Danglars, who was smiling on the procureur, +and embracing his wife. + +After a short time, the count saw Bertuccio, who, until then, had been +occupied on the other side of the house, glide into an adjoining room. +He went to him. + +“What do you want, M. Bertuccio?” said he. + +“Your excellency has not stated the number of guests.” + +“Ah, true.” + +“How many covers?” + +“Count for yourself.” + +“Is everyone here, your excellency?” + +“Yes.” + +Bertuccio glanced through the door, which was ajar. The count watched +him. “Good heavens!” he exclaimed. + +“What is the matter?” said the count. + +“That woman—that woman!” + +“Which?” + +“The one with a white dress and so many diamonds—the fair one.” + +“Madame Danglars?” + +“I do not know her name; but it is she, sir, it is she!” + +“Whom do you mean?” + +“The woman of the garden!—she that was _enceinte_—she who was walking +while she waited for——” + +Bertuccio stood at the open door, with his eyes starting and his hair +on end. + +“Waiting for whom?” Bertuccio, without answering, pointed to Villefort +with something of the gesture Macbeth uses to point out Banquo. + +“Oh, oh!” he at length muttered, “do you see?” + +“What? Who?” + +“Him!” + +“Him!—M. de Villefort, the king’s attorney? Certainly I see him.” + +“Then I did not kill him?” + +“Really, I think you are going mad, good Bertuccio,” said the count. + +“Then he is not dead?” + +30213m + + + +“No; you see plainly he is not dead. Instead of striking between the +sixth and seventh left ribs, as your countrymen do, you must have +struck higher or lower, and life is very tenacious in these lawyers, or +rather there is no truth in anything you have told me—it was a fright +of the imagination, a dream of your fancy. You went to sleep full of +thoughts of vengeance; they weighed heavily upon your stomach; you had +the nightmare—that’s all. Come, calm yourself, and reckon them up—M. +and Madame de Villefort, two; M. and Madame Danglars, four; M. de +Château-Renaud, M. Debray, M. Morrel, seven; Major Bartolomeo +Cavalcanti, eight.” + +“Eight!” repeated Bertuccio. + +“Stop! You are in a shocking hurry to be off—you forget one of my +guests. Lean a little to the left. Stay! look at M. Andrea Cavalcanti, +the young man in a black coat, looking at Murillo’s ‘Madonna’; now he +is turning.” + +This time Bertuccio would have uttered an exclamation, had not a look +from Monte Cristo silenced him. + +“Benedetto?” he muttered; “fatality!” + +“Half-past six o’clock has just struck, M. Bertuccio,” said the count +severely; “I ordered dinner at that hour, and I do not like to wait;” +and he returned to his guests, while Bertuccio, leaning against the +wall, succeeded in reaching the dining-room. Five minutes afterwards +the doors of the drawing-room were thrown open, and Bertuccio appearing +said, with a violent effort, “The dinner waits.” + +The Count of Monte Cristo offered his arm to Madame de Villefort. “M. +de Villefort,” he said, “will you conduct the Baroness Danglars?” + +Villefort complied, and they passed on to the dining-room. + + + + Chapter 63. The Dinner + +It was evident that one sentiment affected all the guests on entering +the dining-room. Each one asked what strange influence had brought them +to this house, and yet astonished, even uneasy though they were, they +still felt that they would not like to be absent. The recent events, +the solitary and eccentric position of the count, his enormous, nay, +almost incredible fortune, should have made men cautious, and have +altogether prevented ladies visiting a house where there was no one of +their own sex to receive them; and yet curiosity had been enough to +lead them to overleap the bounds of prudence and decorum. + +And all present, even including Cavalcanti and his son, notwithstanding +the stiffness of the one and the carelessness of the other, were +thoughtful, on finding themselves assembled at the house of this +incomprehensible man. Madame Danglars had started when Villefort, on +the count’s invitation, offered his arm; and Villefort felt that his +glance was uneasy beneath his gold spectacles, when he felt the arm of +the baroness press upon his own. None of this had escaped the count, +and even by this mere contact of individuals the scene had already +acquired considerable interest for an observer. + +M. de Villefort had on the right hand Madame Danglars, on his left +Morrel. The count was seated between Madame de Villefort and Danglars; +the other seats were filled by Debray, who was placed between the two +Cavalcanti, and by Château-Renaud, seated between Madame de Villefort +and Morrel. + +The repast was magnificent; Monte Cristo had endeavored completely to +overturn the Parisian ideas, and to feed the curiosity as much as the +appetite of his guests. It was an Oriental feast that he offered to +them, but of such a kind as the Arabian fairies might be supposed to +prepare. Every delicious fruit that the four quarters of the globe +could provide was heaped in vases from China and jars from Japan. Rare +birds, retaining their most brilliant plumage, enormous fish, spread +upon massive silver dishes, together with every wine produced in the +Archipelago, Asia Minor, or the Cape, sparkling in bottles, whose +grotesque shape seemed to give an additional flavor to the draught,—all +these, like one of the displays with which Apicius of old gratified his +guests, passed in review before the eyes of the astonished Parisians, +who understood that it was possible to expend a thousand louis upon a +dinner for ten persons, but only on the condition of eating pearls, +like Cleopatra, or drinking refined gold, like Lorenzo de’ Medici. + +Monte Cristo noticed the general astonishment, and began laughing and +joking about it. + +“Gentlemen,” he said, “you will admit that, when arrived at a certain +degree of fortune, the superfluities of life are all that can be +desired; and the ladies will allow that, after having risen to a +certain eminence of position, the ideal alone can be more exalted. Now, +to follow out this reasoning, what is the marvellous?—that which we do +not understand. What is it that we really desire?—that which we cannot +obtain. Now, to see things which I cannot understand, to procure +impossibilities, these are the study of my life. I gratify my wishes by +two means—my will and my money. I take as much interest in the pursuit +of some whim as you do, M. Danglars, in promoting a new railway line; +you, M. de Villefort, in condemning a culprit to death; you, M. Debray, +in pacifying a kingdom; you, M. de Château-Renaud, in pleasing a woman; +and you, Morrel, in breaking a horse that no one can ride. For example, +you see these two fish; one brought from fifty leagues beyond St. +Petersburg, the other five leagues from Naples. Is it not amusing to +see them both on the same table?” + +“What are the two fish?” asked Danglars. + +“M. Château-Renaud, who has lived in Russia, will tell you the name of +one, and Major Cavalcanti, who is an Italian, will tell you the name of +the other.” + +“This one is, I think, a sterlet,” said Château-Renaud. + +“And that one, if I mistake not, a lamprey.” + +“Just so. Now, M. Danglars, ask these gentlemen where they are caught.” + +“Sterlets,” said Château-Renaud, “are only found in the Volga.” + +“And,” said Cavalcanti, “I know that Lake Fusaro alone supplies +lampreys of that size.” + +“Exactly; one comes from the Volga, and the other from Lake Fusaro.” + +“Impossible!” cried all the guests simultaneously. + +“Well, this is just what amuses me,” said Monte Cristo. “I am like +Nero—_cupitor impossibilium_; and that is what is amusing you at this +moment. This fish, which seems so exquisite to you, is very likely no +better than perch or salmon; but it seemed impossible to procure it, +and here it is.” + +“But how could you have these fish brought to France?” + +“Oh, nothing more easy. Each fish was brought over in a cask—one filled +with river herbs and weeds, the other with rushes and lake plants; they +were placed in a wagon built on purpose, and thus the sterlet lived +twelve days, the lamprey eight, and both were alive when my cook seized +them, killing one with milk and the other with wine. You do not believe +me, M. Danglars!” + +“I cannot help doubting,” answered Danglars with his stupid smile. + +“Baptistin,” said the count, “have the other fish brought in—the +sterlet and the lamprey which came in the other casks, and which are +yet alive.” + +Danglars opened his bewildered eyes; the company clapped their hands. +Four servants carried in two casks covered with aquatic plants, and in +each of which was breathing a fish similar to those on the table. + +“But why have two of each sort?” asked Danglars. + +“Merely because one might have died,” carelessly answered Monte Cristo. + +“You are certainly an extraordinary man,” said Danglars; “and +philosophers may well say it is a fine thing to be rich.” + +“And to have ideas,” added Madame Danglars. + +“Oh, do not give me credit for this, madame; it was done by the Romans, +who much esteemed them, and Pliny relates that they sent slaves from +Ostia to Rome, who carried on their heads fish which he calls the +_mulus_, and which, from the description, must probably be the +goldfish. It was also considered a luxury to have them alive, it being +an amusing sight to see them die, for, when dying, they change color +three or four times, and like the rainbow when it disappears, pass +through all the prismatic shades, after which they were sent to the +kitchen. Their agony formed part of their merit—if they were not seen +alive, they were despised when dead.” + +“Yes,” said Debray, “but then Ostia is only a few leagues from Rome.” + +“True,” said Monte Cristo; “but what would be the use of living +eighteen hundred years after Lucullus, if we can do no better than he +could?” + +The two Cavalcanti opened their enormous eyes, but had the good sense +not to say anything. + +“All this is very extraordinary,” said Château-Renaud; “still, what I +admire the most, I confess, is the marvellous promptitude with which +your orders are executed. Is it not true that you only bought this +house five or six days ago?” + +“Certainly not longer.” + +“Well, I am sure it is quite transformed since last week. If I remember +rightly, it had another entrance, and the courtyard was paved and +empty; while today we have a splendid lawn, bordered by trees which +appear to be a hundred years old.” + +“Why not? I am fond of grass and shade,” said Monte Cristo. + +“Yes,” said Madame de Villefort, “the door was towards the road before, +and on the day of my miraculous escape you brought me into the house +from the road, I remember.” + +“Yes, madame,” said Monte Cristo; “but I preferred having an entrance +which would allow me to see the Bois de Boulogne over my gate.” + +“In four days,” said Morrel; “it is extraordinary!” + +“Indeed,” said Château-Renaud, “it seems quite miraculous to make a new +house out of an old one; for it was very old, and dull too. I recollect +coming for my mother to look at it when M. de Saint-Méran advertised it +for sale two or three years ago.” + +“M. de Saint-Méran?” said Madame de Villefort; “then this house +belonged to M. de Saint-Méran before you bought it?” + +“It appears so,” replied Monte Cristo. + +“Is it possible that you do not know of whom you purchased it?” + +“Quite so; my steward transacts all this business for me.” + +“It is certainly ten years since the house had been occupied,” said +Château-Renaud, “and it was quite melancholy to look at it, with the +blinds closed, the doors locked, and the weeds in the court. Really, if +the house had not belonged to the father-in-law of the procureur, one +might have thought it some accursed place where a horrible crime had +been committed.” + +Villefort, who had hitherto not tasted the three or four glasses of +rare wine which were placed before him, here took one, and drank it +off. Monte Cristo allowed a short time to elapse, and then said: + +“It is singular, baron, but the same idea came across me the first time +I came here; it looked so gloomy I should never have bought it if my +steward had not taken the matter into his own hands. Perhaps the fellow +had been bribed by the notary.” + +“It is probable,” stammered out Villefort, trying to smile; “but I can +assure you that I had nothing to do with any such proceeding. This +house is part of Valentine’s marriage-portion, and M. de Saint-Méran +wished to sell it; for if it had remained another year or two +uninhabited it would have fallen to ruin.” + +It was Morrel’s turn to become pale. + +“There was, above all, one room,” continued Monte Cristo, “very plain +in appearance, hung with red damask, which, I know not why, appeared to +me quite dramatic.” + +“Why so?” said Danglars; “why dramatic?” + +“Can we account for instinct?” said Monte Cristo. “Are there not some +places where we seem to breathe sadness?—why, we cannot tell. It is a +chain of recollections—an idea which carries you back to other times, +to other places—which, very likely, have no connection with the present +time and place. And there is something in this room which reminds me +forcibly of the chamber of the Marquise de Ganges10 or Desdemona. Stay, +since we have finished dinner, I will show it to you, and then we will +take coffee in the garden. After dinner, the play.” + +Monte Cristo looked inquiringly at his guests. Madame de Villefort +rose, Monte Cristo did the same, and the rest followed their example. +Villefort and Madame Danglars remained for a moment, as if rooted to +their seats; they questioned each other with vague and stupid glances. + +“Did you hear?” said Madame Danglars. + +“We must go,” replied Villefort, offering his arm. + +The others, attracted by curiosity, were already scattered in different +parts of the house; for they thought the visit would not be limited to +the one room, and that, at the same time, they would obtain a view of +the rest of the building, of which Monte Cristo had created a palace. +Each one went out by the open doors. Monte Cristo waited for the two +who remained; then, when they had passed, he brought up the rear, and +on his face was a smile, which, if they could have understood it, would +have alarmed them much more than a visit to the room they were about to +enter. They began by walking through the apartments, many of which were +fitted up in the Eastern style, with cushions and divans instead of +beds, and pipes instead of furniture. The drawing-rooms were decorated +with the rarest pictures by the old masters, the boudoirs hung with +draperies from China, of fanciful colors, fantastic design, and +wonderful texture. At length they arrived at the famous room. There was +nothing particular about it, excepting that, although daylight had +disappeared, it was not lighted, and everything in it was +old-fashioned, while the rest of the rooms had been redecorated. These +two causes were enough to give it a gloomy aspect. + +“Oh.” cried Madame de Villefort, “it is really frightful.” + +Madame Danglars tried to utter a few words, but was not heard. Many +observations were made, the import of which was a unanimous opinion +that there was something sinister about the room. + +30221m + + + +“Is it not so?” asked Monte Cristo. “Look at that large clumsy bed, +hung with such gloomy, blood-colored drapery! And those two crayon +portraits, that have faded from the dampness; do they not seem to say, +with their pale lips and staring eyes, ‘We have seen’?” + +Villefort became livid; Madame Danglars fell into a long seat placed +near the chimney. + +“Oh,” said Madame de Villefort, smiling, “are you courageous enough to +sit down upon the very seat perhaps upon which the crime was +committed?” + +Madame Danglars rose suddenly. + +“And then,” said Monte Cristo, “this is not all.” + +“What is there more?” said Debray, who had not failed to notice the +agitation of Madame Danglars. + +“Ah, what else is there?” said Danglars; “for, at present, I cannot say +that I have seen anything extraordinary. What do you say, M. +Cavalcanti?” + +“Ah,” said he, “we have at Pisa, Ugolino’s tower; at Ferrara, Tasso’s +prison; at Rimini, the room of Francesca and Paolo.” + +“Yes, but you have not this little staircase,” said Monte Cristo, +opening a door concealed by the drapery. “Look at it, and tell me what +you think of it.” + +“What a wicked-looking, crooked staircase,” said Château-Renaud with a +smile. + +“I do not know whether the wine of Chios produces melancholy, but +certainly everything appears to me black in this house,” said Debray. + +Ever since Valentine’s dowry had been mentioned, Morrel had been silent +and sad. + +“Can you imagine,” said Monte Cristo, “some Othello or Abbé de Ganges, +one stormy, dark night, descending these stairs step by step, carrying +a load, which he wishes to hide from the sight of man, if not from +God?” + +Madame Danglars half fainted on the arm of Villefort, who was obliged +to support himself against the wall. + +“Ah, madame,” cried Debray, “what is the matter with you? how pale you +look!” + +“It is very evident what is the matter with her,” said Madame de +Villefort; “M. de Monte Cristo is relating horrible stories to us, +doubtless intending to frighten us to death.” + +“Yes,” said Villefort, “really, count, you frighten the ladies.” + +“What is the matter?” asked Debray, in a whisper, of Madame Danglars. + +“Nothing,” she replied with a violent effort. “I want air, that is +all.” + +“Will you come into the garden?” said Debray, advancing towards the +back staircase. + +“No, no,” she answered, “I would rather remain here.” + +“Are you really frightened, madame?” said Monte Cristo. + +“Oh, no, sir,” said Madame Danglars; “but you suppose scenes in a +manner which gives them the appearance of reality.” + +30223m + + + +“Ah, yes,” said Monte Cristo smiling; “it is all a matter of +imagination. Why should we not imagine this the apartment of an honest +mother? And this bed with red hangings, a bed visited by the goddess +Lucina? And that mysterious staircase, the passage through which, not +to disturb their sleep, the doctor and nurse pass, or even the father +carrying the sleeping child?” + +Here Madame Danglars, instead of being calmed by the soft picture, +uttered a groan and fainted. + +“Madame Danglars is ill,” said Villefort; “it would be better to take +her to her carriage.” + +“Oh, _mon Dieu!_” said Monte Cristo, “and I have forgotten my +smelling-bottle!” + +“I have mine,” said Madame de Villefort; and she passed over to Monte +Cristo a bottle full of the same kind of red liquid whose good +properties the count had tested on Edward. + +“Ah,” said Monte Cristo, taking it from her hand. + +“Yes,” she said, “at your advice I have made the trial.” + +“And have you succeeded?” + +“I think so.” + +Madame Danglars was carried into the adjoining room; Monte Cristo +dropped a very small portion of the red liquid upon her lips; she +returned to consciousness. + +“Ah,” she cried, “what a frightful dream!” + +Villefort pressed her hand to let her know it was not a dream. They +looked for M. Danglars, but, as he was not especially interested in +poetical ideas, he had gone into the garden, and was talking with Major +Cavalcanti on the projected railway from Leghorn to Florence. Monte +Cristo seemed in despair. He took the arm of Madame Danglars, and +conducted her into the garden, where they found Danglars taking coffee +between the Cavalcanti. + +“Really, madame,” he said, “did I alarm you much?” + +“Oh, no, sir,” she answered; “but you know, things impress us +differently, according to the mood of our minds.” Villefort forced a +laugh. + +“And then, you know,” he said, “an idea, a supposition, is sufficient.” + +“Well,” said Monte Cristo, “you may believe me if you like, but it is +my opinion that a crime has been committed in this house.” + +“Take care,” said Madame de Villefort, “the king’s attorney is here.” + +“Ah,” replied Monte Cristo, “since that is the case, I will take +advantage of his presence to make my declaration.” + +“Your declaration?” said Villefort. + +“Yes, before witnesses.” + +“Oh, this is very interesting,” said Debray; “if there really has been +a crime, we will investigate it.” + +“There has been a crime,” said Monte Cristo. “Come this way, gentlemen; +come, M. Villefort, for a declaration to be available, should be made +before the competent authorities.” + +He then took Villefort’s arm, and, at the same time, holding that of +Madame Danglars under his own, he dragged the procureur to the +plantain-tree, where the shade was thickest. All the other guests +followed. + +“Stay,” said Monte Cristo, “here, in this very spot” (and he stamped +upon the ground), “I had the earth dug up and fresh mould put in, to +refresh these old trees; well, my man, digging, found a box, or rather, +the iron-work of a box, in the midst of which was the skeleton of a +newly born infant.” + +30225m + + + +Monte Cristo felt the arm of Madame Danglars stiffen, while that of +Villefort trembled. + +“A newly born infant,” repeated Debray; “this affair becomes serious!” + +“Well,” said Château-Renaud, “I was not wrong just now then, when I +said that houses had souls and faces like men, and that their exteriors +carried the impress of their characters. This house was gloomy because +it was remorseful: it was remorseful because it concealed a crime.” + +“Who said it was a crime?” asked Villefort, with a last effort. + +“How? is it not a crime to bury a living child in a garden?” cried +Monte Cristo. “And pray what do you call such an action?” + +“But who said it was buried alive?” + +“Why bury it there if it were dead? This garden has never been a +cemetery.” + +“What is done to infanticides in this country?” asked Major Cavalcanti +innocently. + +“Oh, their heads are soon cut off,” said Danglars. + +“Ah, indeed?” said Cavalcanti. + +“I think so; am I not right, M. de Villefort?” asked Monte Cristo. + +“Yes, count,” replied Villefort, in a voice now scarcely human. + +Monte Cristo, seeing that the two persons for whom he had prepared this +scene could scarcely endure it, and not wishing to carry it too far, +said: + +“Come, gentlemen,—some coffee, we seem to have forgotten it,” and he +conducted the guests back to the table on the lawn. + +“Indeed, count,” said Madame Danglars, “I am ashamed to own it, but all +your frightful stories have so upset me, that I must beg you to let me +sit down;” and she fell into a chair. + +Monte Cristo bowed, and went to Madame de Villefort. + +“I think Madame Danglars again requires your bottle,” he said. But +before Madame de Villefort could reach her friend, the procureur had +found time to whisper to Madame Danglars, “I must speak to you.” + +“When?” + +“Tomorrow.” + +“Where?” + +“In my office, or in the court, if you like,—that is the surest place.” + +“I will be there.” + +At this moment Madame de Villefort approached. + +“Thanks, my dear friend,” said Madame Danglars, trying to smile; “it is +over now, and I am much better.” + + + + Chapter 64. The Beggar + +The evening passed on; Madame de Villefort expressed a desire to return +to Paris, which Madame Danglars had not dared to do, notwithstanding +the uneasiness she experienced. On his wife’s request, M. de Villefort +was the first to give the signal of departure. He offered a seat in his +landau to Madame Danglars, that she might be under the care of his +wife. As for M. Danglars, absorbed in an interesting conversation with +M. Cavalcanti, he paid no attention to anything that was passing. While +Monte Cristo had begged the smelling-bottle of Madame de Villefort, he +had noticed the approach of Villefort to Madame Danglars, and he soon +guessed all that had passed between them, though the words had been +uttered in so low a voice as hardly to be heard by Madame Danglars. +Without opposing their arrangements, he allowed Morrel, Château-Renaud, +and Debray to leave on horseback, and the ladies in M. de Villefort’s +carriage. Danglars, more and more delighted with Major Cavalcanti, had +offered him a seat in his carriage. Andrea Cavalcanti found his tilbury +waiting at the door; the groom, in every respect a caricature of the +English fashion, was standing on tiptoe to hold a large iron-gray +horse. + +Andrea had spoken very little during dinner; he was an intelligent lad, +and he feared to utter some absurdity before so many grand people, +amongst whom, with dilating eyes, he saw the king’s attorney. Then he +had been seized upon by Danglars, who, with a rapid glance at the +stiff-necked old major and his modest son, and taking into +consideration the hospitality of the count, made up his mind that he +was in the society of some nabob come to Paris to finish the worldly +education of his heir. He contemplated with unspeakable delight the +large diamond which shone on the major’s little finger; for the major, +like a prudent man, in case of any accident happening to his +bank-notes, had immediately converted them into an available asset. +Then, after dinner, on the pretext of business, he questioned the +father and son upon their mode of living; and the father and son, +previously informed that it was through Danglars the one was to receive +his 48,000 francs and the other 50,000 livres annually, were so full of +affability that they would have shaken hands even with the banker’s +servants, so much did their gratitude need an object to expend itself +upon. + +One thing above all the rest heightened the respect, nay almost the +veneration, of Danglars for Cavalcanti. The latter, faithful to the +principle of Horace, _nil admirari_, had contented himself with showing +his knowledge by declaring in what lake the best lampreys were caught. +Then he had eaten some without saying a word more; Danglars, therefore, +concluded that such luxuries were common at the table of the +illustrious descendant of the Cavalcanti, who most likely in Lucca fed +upon trout brought from Switzerland, and lobsters sent from England, by +the same means used by the count to bring the lampreys from Lake +Fusaro, and the sterlet from the Volga. Thus it was with much +politeness of manner that he heard Cavalcanti pronounce these words: + +“Tomorrow, sir, I shall have the honor of waiting upon you on +business.” + +“And I, sir,” said Danglars, “shall be most happy to receive you.” + +Upon which he offered to take Cavalcanti in his carriage to the Hôtel +des Princes, if it would not be depriving him of the company of his +son. To this Cavalcanti replied by saying that for some time past his +son had lived independently of him, that he had his own horses and +carriages, and that not having come together, it would not be difficult +for them to leave separately. The major seated himself, therefore, by +the side of Danglars, who was more and more charmed with the ideas of +order and economy which ruled this man, and yet who, being able to +allow his son 60,000 francs a year, might be supposed to possess a +fortune of 500,000 or 600,000 livres. + +As for Andrea, he began, by way of showing off, to scold his groom, +who, instead of bringing the tilbury to the steps of the house, had +taken it to the outer door, thus giving him the trouble of walking +thirty steps to reach it. The groom heard him with humility, took the +bit of the impatient animal with his left hand, and with the right held +out the reins to Andrea, who, taking them from him, rested his polished +boot lightly on the step. + +At that moment a hand touched his shoulder. The young man turned round, +thinking that Danglars or Monte Cristo had forgotten something they +wished to tell him, and had returned just as they were starting. But +instead of either of these, he saw nothing but a strange face, +sunburnt, and encircled by a beard, with eyes brilliant as carbuncles, +and a smile upon the mouth which displayed a perfect set of white +teeth, pointed and sharp as the wolf’s or jackal’s. A red handkerchief +encircled his gray head; torn and filthy garments covered his large +bony limbs, which seemed as though, like those of a skeleton, they +would rattle as he walked; and the hand with which he leaned upon the +young man’s shoulder, and which was the first thing Andrea saw, seemed +of gigantic size. + +30229m + + + +Did the young man recognize that face by the light of the lantern in +his tilbury, or was he merely struck with the horrible appearance of +his interrogator? We cannot say; but only relate the fact that he +shuddered and stepped back suddenly. + +“What do you want of me?” he asked. + +“Pardon me, my friend, if I disturb you,” said the man with the red +handkerchief, “but I want to speak to you.” + +“You have no right to beg at night,” said the groom, endeavoring to rid +his master of the troublesome intruder. + +“I am not begging, my fine fellow,” said the unknown to the servant, +with so ironical an expression of the eye, and so frightful a smile, +that he withdrew; “I only wish to say two or three words to your +master, who gave me a commission to execute about a fortnight ago.” + +“Come,” said Andrea, with sufficient nerve for his servant not to +perceive his agitation, “what do you want? Speak quickly, friend.” + +The man said, in a low voice: “I wish—I wish you to spare me the walk +back to Paris. I am very tired, and as I have not eaten so good a +dinner as you, I can scarcely stand.” + +The young man shuddered at this strange familiarity. + +“Tell me,” he said—“tell me what you want?” + +“Well, then, I want you to take me up in your fine carriage, and carry +me back.” Andrea turned pale, but said nothing. + +“Yes,” said the man, thrusting his hands into his pockets, and looking +impudently at the youth; “I have taken the whim into my head; do you +understand, Master Benedetto?” + +At this name, no doubt, the young man reflected a little, for he went +towards his groom, saying: + +“This man is right; I did indeed charge him with a commission, the +result of which he must tell me; walk to the barrier, there take a cab, +that you may not be too late.” + +The surprised groom retired. + +“Let me at least reach a shady spot,” said Andrea. + +“Oh, as for that, I’ll take you to a splendid place,” said the man with +the handkerchief; and taking the horse’s bit he led the tilbury where +it was certainly impossible for anyone to witness the honor that Andrea +conferred upon him. + +“Don’t think I want the glory of riding in your fine carriage,” said +he; “oh, no, it’s only because I am tired, and also because I have a +little business to talk over with you.” + +“Come, step in,” said the young man. It was a pity this scene had not +occurred in daylight, for it was curious to see this rascal throwing +himself heavily down on the cushion beside the young and elegant driver +of the tilbury. Andrea drove past the last house in the village without +saying a word to his companion, who smiled complacently, as though +well-pleased to find himself travelling in so comfortable a vehicle. +Once out of Auteuil, Andrea looked around, in order to assure himself +that he could neither be seen nor heard, and then, stopping the horse +and crossing his arms before the man, he asked: + +“Now, tell me why you come to disturb my tranquillity?” + +“Let me ask you why you deceived me?” + +“How have I deceived you?” + +“‘How,’ do you ask? When we parted at the Pont du Var, you told me you +were going to travel through Piedmont and Tuscany; but instead of that, +you come to Paris.” + +“How does that annoy you?” + +“It does not; on the contrary, I think it will answer my purpose.” + +“So,” said Andrea, “you are speculating upon me?” + +“What fine words he uses!” + +“I warn you, Master Caderousse, that you are mistaken.” + +“Well, well, don’t be angry, my boy; you know well enough what it is to +be unfortunate; and misfortunes make us jealous. I thought you were +earning a living in Tuscany or Piedmont by acting as _facchino_ or +_cicerone_, and I pitied you sincerely, as I would a child of my own. +You know I always did call you my child.” + +“Come, come, what then?” + +“Patience—patience!” + +“I am patient, but go on.” + +“All at once I see you pass through the barrier with a groom, a +tilbury, and fine new clothes. You must have discovered a mine, or else +become a stockbroker.” + +“So that, as you confess, you are jealous?” + +“No, I am pleased—so pleased that I wished to congratulate you; but as +I am not quite properly dressed, I chose my opportunity, that I might +not compromise you.” + +“Yes, and a fine opportunity you have chosen!” exclaimed Andrea; “you +speak to me before my servant.” + +“How can I help that, my boy? I speak to you when I can catch you. You +have a quick horse, a light tilbury, you are naturally as slippery as +an eel; if I had missed you tonight, I might not have had another +chance.” + +“You see, I do not conceal myself.” + +“You are lucky; I wish I could say as much, for I do conceal myself; +and then I was afraid you would not recognize me, but you did,” added +Caderousse with his unpleasant smile. “It was very polite of you.” + +“Come,” said Andrea, “what do you want?” + +“You do not speak affectionately to me, Benedetto, my old friend, that +is not right—take care, or I may become troublesome.” + +This menace smothered the young man’s passion. He urged the horse again +into a trot. + +“You should not speak so to an old friend like me, Caderousse, as you +said just now; you are a native of Marseilles, I am——” + +“Do you know then now what you are?” + +“No, but I was brought up in Corsica; you are old and obstinate, I am +young and wilful. Between people like us threats are out of place, +everything should be amicably arranged. Is it my fault if fortune, +which has frowned on you, has been kind to me?” + +“Fortune has been kind to you, then? Your tilbury, your groom, your +clothes, are not then hired? Good, so much the better,” said +Caderousse, his eyes sparkling with avarice. + +“Oh, you knew that well enough before speaking to me,” said Andrea, +becoming more and more excited. “If I had been wearing a handkerchief +like yours on my head, rags on my back, and worn-out shoes on my feet, +you would not have known me.” + +“You wrong me, my boy; now I have found you, nothing prevents my being +as well-dressed as anyone, knowing, as I do, the goodness of your +heart. If you have two coats you will give me one of them. I used to +divide my soup and beans with you when you were hungry.” + +“True,” said Andrea. + +“What an appetite you used to have! Is it as good now?” + +“Oh, yes,” replied Andrea, laughing. + +“How did you come to be dining with that prince whose house you have +just left?” + +“He is not a prince; simply a count.” + +“A count, and a rich one too, eh?” + +“Yes; but you had better not have anything to say to him, for he is not +a very good-tempered gentleman.” + +“Oh, be easy! I have no design upon your count, and you shall have him +all to yourself. But,” said Caderousse, again smiling with the +disagreeable expression he had before assumed, “you must pay for it—you +understand?” + +“Well, what do you want?” + +“I think that with a hundred francs a month——” + +“Well?” + +“I could live——” + +“Upon a hundred francs!” + +“Come—you understand me; but that with——” + +“With?” + +“With a hundred and fifty francs I should be quite happy.” + +“Here are two hundred,” said Andrea; and he placed ten gold louis in +the hand of Caderousse. + +30233m + + + +“Good!” said Caderousse. + +“Apply to the steward on the first day of every month, and you will +receive the same sum.” + +“There now, again you degrade me.” + +“How so?” + +“By making me apply to the servants, when I want to transact business +with you alone.” + +“Well, be it so, then. Take it from me then, and so long at least as I +receive my income, you shall be paid yours.” + +“Come, come; I always said you were a fine fellow, and it is a blessing +when good fortune happens to such as you. But tell me all about it?” + +“Why do you wish to know?” asked Cavalcanti. + +“What? do you again defy me?” + +“No; the fact is, I have found my father.” + +“What? a real father?” + +“Yes, so long as he pays me——” + +“You’ll honor and believe him—that’s right. What is his name?” + +“Major Cavalcanti.” + +“Is he pleased with you?” + +“So far I have appeared to answer his purpose.” + +“And who found this father for you?” + +“The Count of Monte Cristo.” + +“The man whose house you have just left?” + +“Yes.” + +“I wish you would try and find me a situation with him as grandfather, +since he holds the money-chest!” + +“Well, I will mention you to him. Meanwhile, what are you going to do?” + +“I?” + +“Yes, you.” + +“It is very kind of you to trouble yourself about me.” + +“Since you interest yourself in my affairs, I think it is now my turn +to ask you some questions.” + +“Ah, true. Well; I shall rent a room in some respectable house, wear a +decent coat, shave every day, and go and read the papers in a café. +Then, in the evening, I shall go to the theatre; I shall look like some +retired baker. That is what I want.” + +“Come, if you will only put this scheme into execution, and be steady, +nothing could be better.” + +“Do you think so, M. Bossuet? And you—what will you become? A peer of +France?” + +“Ah,” said Andrea, “who knows?” + +“Major Cavalcanti is already one, perhaps; but then, hereditary rank is +abolished.” + +“No politics, Caderousse. And now that you have all you want, and that +we understand each other, jump down from the tilbury and disappear.” + +“Not at all, my good friend.” + +“How? Not at all?” + +“Why, just think for a moment; with this red handkerchief on my head, +with scarcely any shoes, no papers, and ten gold napoleons in my +pocket, without reckoning what was there before—making in all about two +hundred francs,—why, I should certainly be arrested at the barriers. +Then, to justify myself, I should say that you gave me the money; this +would cause inquiries, it would be found that I left Toulon without +giving due notice, and I should then be escorted back to the shores of +the Mediterranean. Then I should become simply No. 106, and good-bye to +my dream of resembling the retired baker! No, no, my boy; I prefer +remaining honorably in the capital.” + +Andrea scowled. Certainly, as he had himself owned, the reputed son of +Major Cavalcanti was a wilful fellow. He drew up for a minute, threw a +rapid glance around him, and then his hand fell instantly into his +pocket, where it began playing with a pistol. But, meanwhile, +Caderousse, who had never taken his eyes off his companion, passed his +hand behind his back, and opened a long Spanish knife, which he always +carried with him, to be ready in case of need. The two friends, as we +see, were worthy of and understood one another. Andrea’s hand left his +pocket inoffensively, and was carried up to the red moustache, which it +played with for some time. + +“Good Caderousse,” he said, “how happy you will be.” + +“I will do my best,” said the innkeeper of the Pont du Gard, shutting +up his knife. + +“Well, then, we will go into Paris. But how will you pass through the +barrier without exciting suspicion? It seems to me that you are in more +danger riding than on foot.” + +“Wait,” said Caderousse, “we shall see.” He then took the greatcoat +with the large collar, which the groom had left behind in the tilbury, +and put it on his back; then he took off Cavalcanti’s hat, which he +placed upon his own head, and finally he assumed the careless attitude +of a servant whose master drives himself. + +“But, tell me,” said Andrea, “am I to remain bareheaded?” + +“Pooh,” said Caderousse; “it is so windy that your hat can easily +appear to have blown off.” + +“Come, come; enough of this,” said Cavalcanti. + +“What are you waiting for?” said Caderousse. “I hope I am not the +cause.” + +“Hush,” said Andrea. They passed the barrier without accident. At the +first cross street Andrea stopped his horse, and Caderousse leaped out. + +“Well!” said Andrea,—“my servant’s coat and my hat?” + +“Ah,” said Caderousse, “you would not like me to risk taking cold?” + +“But what am I to do?” + +“You? Oh, you are young while I am beginning to get old. _Au revoir_, +Benedetto;” and running into a court, he disappeared. + +“Alas,” said Andrea, sighing, “one cannot be completely happy in this +world!” + + + + Chapter 65. A Conjugal Scene + +At the Place Louis XV. the three young people separated—that is to say, +Morrel went to the Boulevards, Château-Renaud to the Pont de la +Révolution, and Debray to the Quai. Most probably Morrel and +Château-Renaud returned to their “domestic hearths,” as they say in the +gallery of the Chamber in well-turned speeches, and in the theatre of +the Rue Richelieu in well-written pieces; but it was not the case with +Debray. When he reached the wicket of the Louvre, he turned to the +left, galloped across the Carrousel, passed through the Rue Saint-Roch, +and, issuing from the Rue de la Michodière, he arrived at M. Danglars’ +door just at the same time that Villefort’s landau, after having +deposited him and his wife at the Faubourg Saint-Honoré, stopped to +leave the baroness at her own house. + +Debray, with the air of a man familiar with the house, entered first +into the court, threw his bridle into the hands of a footman, and +returned to the door to receive Madame Danglars, to whom he offered his +arm, to conduct her to her apartments. The gate once closed, and Debray +and the baroness alone in the court, he asked: + +“What was the matter with you, Hermine? and why were you so affected at +that story, or rather fable, which the count related?” + +“Because I have been in such shocking spirits all the evening, my +friend,” said the baroness. + +“No, Hermine,” replied Debray; “you cannot make me believe that; on the +contrary, you were in excellent spirits when you arrived at the +count’s. M. Danglars was disagreeable, certainly, but I know how much +you care for his ill-humor. Someone has vexed you; I will allow no one +to annoy you.” + +“You are deceived, Lucien, I assure you,” replied Madame Danglars; “and +what I have told you is really the case, added to the ill-humor you +remarked, but which I did not think it worth while to allude to.” + +It was evident that Madame Danglars was suffering from that nervous +irritability which women frequently cannot account for even to +themselves; or that, as Debray had guessed, she had experienced some +secret agitation that she would not acknowledge to anyone. Being a man +who knew that the former of these symptoms was one of the inherent +penalties of womanhood, he did not then press his inquiries, but waited +for a more appropriate opportunity when he should again interrogate +her, or receive an avowal _proprio motu_. + +At the door of her apartment the baroness met Mademoiselle Cornélie, +her confidential maid. + +“What is my daughter doing?” asked Madame Danglars. + +“She practiced all the evening, and then went to bed,” replied +Mademoiselle Cornélie. + +“Yet I think I hear her piano.” + +“It is Mademoiselle Louise d’Armilly, who is playing while Mademoiselle +Danglars is in bed.” + +“Well,” said Madame Danglars, “come and undress me.” + +They entered the bedroom. Debray stretched himself upon a large couch, +and Madame Danglars passed into her dressing-room with Mademoiselle +Cornélie. + +“My dear M. Lucien,” said Madame Danglars through the door, “you are +always complaining that Eugénie will not address a word to you.” + +“Madame,” said Lucien, playing with a little dog, who, recognizing him +as a friend of the house, expected to be caressed, “I am not the only +one who makes similar complaints, I think I heard Morcerf say that he +could not extract a word from his betrothed.” + +“True,” said Madame Danglars; “yet I think this will all pass off, and +that you will one day see her enter your study.” + +“My study?” + +“At least that of the minister.” + +“Why so!” + +“To ask for an engagement at the Opera. Really, I never saw such an +infatuation for music; it is quite ridiculous for a young lady of +fashion.” + +Debray smiled. “Well,” said he, “let her come, with your consent and +that of the baron, and we will try and give her an engagement, though +we are very poor to pay such talent as hers.” + +“Go, Cornélie,” said Madame Danglars, “I do not require you any +longer.” + +Cornélie obeyed, and the next minute Madame Danglars left her room in a +charming loose dress, and came and sat down close to Debray. Then she +began thoughtfully to caress the little spaniel. Lucien looked at her +for a moment in silence. + +“Come, Hermine,” he said, after a short time, “answer +candidly,—something vexes you—is it not so?” + +30239m + + + +“Nothing,” answered the baroness. + +And yet, as she could scarcely breathe, she rose and went towards a +looking-glass. “I am frightful tonight,” she said. Debray rose, +smiling, and was about to contradict the baroness upon this latter +point, when the door opened suddenly. M. Danglars appeared; Debray +reseated himself. At the noise of the door Madame Danglars turned +round, and looked upon her husband with an astonishment she took no +trouble to conceal. + +“Good-evening, madame,” said the banker; “good-evening, M. Debray.” + +Probably the baroness thought this unexpected visit signified a desire +to make up for the sharp words he had uttered during the day. Assuming +a dignified air, she turned round to Debray, without answering her +husband. + +“Read me something, M. Debray,” she said. Debray, who was slightly +disturbed at this visit, recovered himself when he saw the calmness of +the baroness, and took up a book marked by a mother-of-pearl knife +inlaid with gold. + +“Excuse me,” said the banker, “but you will tire yourself, baroness, by +such late hours, and M. Debray lives some distance from here.” + +Debray was petrified, not only to hear Danglars speak so calmly and +politely, but because it was apparent that beneath outward politeness +there really lurked a determined spirit of opposition to anything his +wife might wish to do. The baroness was also surprised, and showed her +astonishment by a look which would doubtless have had some effect upon +her husband if he had not been intently occupied with the paper, where +he was looking to see the closing stock quotations. The result was, +that the proud look entirely failed of its purpose. + +“M. Lucien,” said the baroness, “I assure you I have no desire to +sleep, and that I have a thousand things to tell you this evening, +which you must listen to, even though you slept while hearing me.” + +“I am at your service, madame,” replied Lucien coldly. + +“My dear M. Debray,” said the banker, “do not kill yourself tonight +listening to the follies of Madame Danglars, for you can hear them as +well tomorrow; but I claim tonight and will devote it, if you will +allow me, to talk over some serious matters with my wife.” + +This time the blow was so well aimed, and hit so directly, that Lucien +and the baroness were staggered, and they interrogated each other with +their eyes, as if to seek help against this aggression, but the +irresistible will of the master of the house prevailed, and the husband +was victorious. + +“Do not think I wish to turn you out, my dear Debray,” continued +Danglars; “oh, no, not at all. An unexpected occurrence forces me to +ask my wife to have a little conversation with me; it is so rarely I +make such a request, I am sure you cannot grudge it to me.” + +Debray muttered something, bowed and went out, knocking himself against +the edge of the door, like Nathan in _Athalie_. + +“It is extraordinary,” he said, when the door was closed behind him, +“how easily these husbands, whom we ridicule, gain an advantage over +us.” + +30241m + + + +Lucien having left, Danglars took his place on the sofa, closed the +open book, and placing himself in a dreadfully dictatorial attitude, he +began playing with the dog; but the animal, not liking him as well as +Debray, and attempting to bite him, Danglars seized him by the skin of +his neck and threw him upon a couch on the other side of the room. The +animal uttered a cry during the transit, but, arrived at its +destination, it crouched behind the cushions, and stupefied at such +unusual treatment remained silent and motionless. + +“Do you know, sir,” asked the baroness, “that you are improving? +Generally you are only rude, but tonight you are brutal.” + +“It is because I am in a worse humor than usual,” replied Danglars. +Hermine looked at the banker with supreme disdain. These glances +frequently exasperated the pride of Danglars, but this evening he took +no notice of them. + +“And what have I to do with your ill-humor?” said the baroness, +irritated at the impassibility of her husband; “do these things concern +me? Keep your ill-humor at home in your money boxes, or, since you have +clerks whom you pay, vent it upon them.” + +“Not so,” replied Danglars; “your advice is wrong, so I shall not +follow it. My money boxes are my Pactolus, as, I think, M. Demoustier +says, and I will not retard its course, or disturb its calm. My clerks +are honest men, who earn my fortune, whom I pay much below their +deserts, if I may value them according to what they bring in; therefore +I shall not get into a passion with them; those with whom I will be in +a passion are those who eat my dinners, mount my horses, and exhaust my +fortune.” + +“And pray who are the persons who exhaust your fortune? Explain +yourself more clearly, I beg, sir.” + +“Oh, make yourself easy!—I am not speaking riddles, and you will soon +know what I mean. The people who exhaust my fortune are those who draw +out 700,000 francs in the course of an hour.” + +“I do not understand you, sir,” said the baroness, trying to disguise +the agitation of her voice and the flush of her face. + +“You understand me perfectly, on the contrary,” said Danglars: “but, if +you will persist, I will tell you that I have just lost 700,000 francs +upon the Spanish loan.” + +“And pray,” asked the baroness, “am I responsible for this loss?” + +“Why not?” + +“Is it my fault you have lost 700,000 francs?” + +“Certainly it is not mine.” + +“Once for all, sir,” replied the baroness sharply, “I tell you I will +not hear cash named; it is a style of language I never heard in the +house of my parents or in that of my first husband.” + +“Oh, I can well believe that, for neither of them was worth a penny.” + +“The better reason for my not being conversant with the slang of the +bank, which is here dinning in my ears from morning to night; that +noise of jingling crowns, which are constantly being counted and +re-counted, is odious to me. I only know one thing I dislike more, +which is the sound of your voice.” + +“Really?” said Danglars. “Well, this surprises me, for I thought you +took the liveliest interest in all my affairs!” + +30243m + + + +“I? What could put such an idea into your head?” + +“Yourself.” + +“Ah?—what next?” + +“Most assuredly.” + +“I should like to know upon what occasion?” + +“Oh, _mon Dieu!_ that is very easily done. Last February you were the +first who told me of the Haitian funds. You had dreamed that a ship had +entered the harbor at Le Havre, that this ship brought news that a +payment we had looked upon as lost was going to be made. I know how +clear-sighted your dreams are; I therefore purchased immediately as +many shares as I could of the Haitian debt, and I gained 400,000 francs +by it, of which 100,000 have been honestly paid to you. You spent it as +you pleased; that was your business. In March there was a question +about a grant to a railway. Three companies presented themselves, each +offering equal securities. You told me that your instinct,—and although +you pretend to know nothing about speculations, I think on the +contrary, that your comprehension is very clear upon certain +affairs,—well, you told me that your instinct led you to believe the +grant would be given to the company called the Southern. I bought two +thirds of the shares of that company; as you had foreseen, the shares +trebled in value, and I picked up a million, from which 250,000 francs +were paid to you for pin-money. How have you spent this 250,000 +francs?—it is no business of mine.” + +“When are you coming to the point?” cried the baroness, shivering with +anger and impatience. + +“Patience, madame, I am coming to it.” + +“That’s fortunate.” + +“In April you went to dine at the minister’s. You heard a private +conversation respecting Spanish affairs—on the expulsion of Don Carlos. +I bought some Spanish shares. The expulsion took place and I pocketed +600,000 francs the day Charles V. repassed the Bidassoa. Of these +600,000 francs you took 50,000 crowns. They were yours, you disposed of +them according to your fancy, and I asked no questions; but it is not +the less true that you have this year received 500,000 livres.” + +“Well, sir, and what then?” + +“Ah, yes, it was just after this that you spoiled everything.” + +“Really, your manner of speaking——” + +“It expresses my meaning, and that is all I want. Well, three days +after that you talked politics with M. Debray, and you fancied from his +words that Don Carlos had returned to Spain. Well, I sold my shares, +the news got out, and I no longer sold—I gave them away, next day I +find the news was false, and by this false report I have lost 700,000 +francs.” + +“Well?” + +“Well, since I gave you a fourth of my gains, I think you owe me a +fourth of my losses; the fourth of 700,000 francs is 175,000 francs.” + +“What you say is absurd, and I cannot see why M. Debray’s name is mixed +up in this affair.” + +“Because if you do not possess the 175,000 francs I reclaim, you must +have lent them to your friends, and M. Debray is one of your friends.” + +30245m + + + +“For shame!” exclaimed the baroness. + +“Oh, let us have no gestures, no screams, no modern drama, or you will +oblige me to tell you that I see Debray leave here, pocketing the whole +of the 500,000 livres you have handed over to him this year, while he +smiles to himself, saying that he has found what the most skilful +players have never discovered—that is, a roulette where he wins without +playing, and is no loser when he loses.” + +The baroness became enraged. + +“Wretch!” she cried, “will you dare to tell me you did not know what +you now reproach me with?” + +“I do not say that I did know it, and I do not say that I did not know +it. I merely tell you to look into my conduct during the last four +years that we have ceased to be husband and wife, and see whether it +has not always been consistent. Some time after our rupture, you wished +to study music, under the celebrated baritone who made such a +successful appearance at the Théâtre Italien; at the same time I felt +inclined to learn dancing of the _danseuse_ who acquired such a +reputation in London. This cost me, on your account and mine, 100,000 +francs. I said nothing, for we must have peace in the house; and +100,000 francs for a lady and gentleman to be properly instructed in +music and dancing are not too much. Well, you soon become tired of +singing, and you take a fancy to study diplomacy with the minister’s +secretary. You understand, it signifies nothing to me so long as you +pay for your lessons out of your own cash box. But today I find you are +drawing on mine, and that your apprenticeship may cost me 700,000 +francs per month. Stop there, madame, for this cannot last. Either the +diplomatist must give his lessons gratis, and I will tolerate him, or +he must never set his foot again in my house;—do you understand, +madame?” + +“Oh, this is too much,” cried Hermine, choking, “you are worse than +despicable.” + +“But,” continued Danglars, “I find you did not even pause there——” + +“Insults!” + +“You are right; let us leave these facts alone, and reason coolly. I +have never interfered in your affairs excepting for your good; treat me +in the same way. You say you have nothing to do with my cash box. Be it +so. Do as you like with your own, but do not fill or empty mine. +Besides, how do I know that this was not a political trick, that the +minister enraged at seeing me in the opposition, and jealous of the +popular sympathy I excite, has not concerted with M. Debray to ruin +me?” + +“A probable thing!” + +“Why not? Who ever heard of such an occurrence as this?—a false +telegraphic despatch—it is almost impossible for wrong signals to be +made as they were in the last two telegrams. It was done on purpose for +me—I am sure of it.” + +“Sir,” said the baroness humbly, “are you not aware that the man +employed there was dismissed, that they talked of going to law with +him, that orders were issued to arrest him and that this order would +have been put into execution if he had not escaped by flight, which +proves that he was either mad or guilty? It was a mistake.” + +“Yes, which made fools laugh, which caused the minister to have a +sleepless night, which has caused the minister’s secretaries to blacken +several sheets of paper, but which has cost me 700,000 francs.” + +“But, sir,” said Hermine suddenly, “if all this is, as you say, caused +by M. Debray, why, instead of going direct to him, do you come and tell +me of it? Why, to accuse the man, do you address the woman?” + +“Do I know M. Debray?—do I wish to know him?—do I wish to know that he +gives advice?—do I wish to follow it?—do I speculate? No; you do all +this, not I.” + +“Still it seems to me, that as you profit by it——” + +Danglars shrugged his shoulders. “Foolish creature,” he exclaimed. +“Women fancy they have talent because they have managed two or three +intrigues without being the talk of Paris! But know that if you had +even hidden your irregularities from your husband, who has but the +commencement of the art—for generally husbands _will_ not see—you would +then have been but a faint imitation of most of your friends among the +women of the world. But it has not been so with me,—I see, and always +have seen, during the last sixteen years. You may, perhaps, have hidden +a thought; but not a step, not an action, not a fault, has escaped me, +while you flattered yourself upon your address, and firmly believed you +had deceived me. What has been the result?—that, thanks to my pretended +ignorance, there is none of your friends, from M. de Villefort to M. +Debray, who has not trembled before me. There is not one who has not +treated me as the master of the house,—the only title I desire with +respect to you; there is not one, in fact, who would have dared to +speak of me as I have spoken of them this day. I will allow you to make +me hateful, but I will prevent your rendering me ridiculous, and, above +all, I forbid you to ruin me.” + +The baroness had been tolerably composed until the name of Villefort +had been pronounced; but then she became pale, and, rising, as if +touched by a spring, she stretched out her hands as though conjuring an +apparition; she then took two or three steps towards her husband, as +though to tear the secret from him, of which he was ignorant, or which +he withheld from some odious calculation,—odious, as all his +calculations were. + +“M. de Villefort!—What do you mean?” + +“I mean that M. de Nargonne, your first husband, being neither a +philosopher nor a banker, or perhaps being both, and seeing there was +nothing to be got out of a king’s attorney, died of grief or anger at +finding, after an absence of nine months, that you had been _enceinte_ +six. I am brutal,—I not only allow it, but boast of it; it is one of +the reasons of my success in commercial business. Why did he kill +himself instead of you? Because he had no cash to save. My life belongs +to my cash. M. Debray has made me lose 700,000 francs; let him bear his +share of the loss, and we will go on as before; if not, let him become +bankrupt for the 250,000 livres, and do as all bankrupts do—disappear. +He is a charming fellow, I allow, when his news is correct; but when it +is not, there are fifty others in the world who would do better than +he.” + +Madame Danglars was rooted to the spot; she made a violent effort to +reply to this last attack, but she fell upon a chair thinking of +Villefort, of the dinner scene, of the strange series of misfortunes +which had taken place in her house during the last few days, and +changed the usual calm of her establishment to a scene of scandalous +debate. + +Danglars did not even look at her, though she did her best to faint. He +shut the bedroom door after him, without adding another word, and +returned to his apartments; and when Madame Danglars recovered from her +half-fainting condition, she could almost believe that she had had a +disagreeable dream. + + + + Chapter 66. Matrimonial Projects + +The day following this scene, at the hour Debray usually chose to pay a +visit to Madame Danglars on his way to his office, his _coupé_ did not +appear. At this time, that is, about half-past twelve, Madame Danglars +ordered her carriage, and went out. Danglars, hidden behind a curtain, +watched the departure he had been waiting for. He gave orders that he +should be informed as soon as Madame Danglars appeared; but at two +o’clock she had not returned. He then called for his horses, drove to +the Chamber, and inscribed his name to speak against the budget. From +twelve to two o’clock Danglars had remained in his study, unsealing his +dispatches, and becoming more and more sad every minute, heaping figure +upon figure, and receiving, among other visits, one from Major +Cavalcanti, who, as stiff and exact as ever, presented himself +precisely at the hour named the night before, to terminate his business +with the banker. + +On leaving the Chamber, Danglars, who had shown violent marks of +agitation during the sitting, and been more bitter than ever against +the ministry, re-entered his carriage, and told the coachman to drive +to the Avenue des Champs-Élysées, No. 30. + +Monte Cristo was at home; only he was engaged with someone and begged +Danglars to wait for a moment in the drawing-room. While the banker was +waiting in the anteroom, the door opened, and a man dressed as an abbé +and doubtless more familiar with the house than he was, came in and +instead of waiting, merely bowed, passed on to the farther apartments, +and disappeared. + +A minute after the door by which the priest had entered reopened, and +Monte Cristo appeared. + +“Pardon me,” said he, “my dear baron, but one of my friends, the Abbé +Busoni, whom you perhaps saw pass by, has just arrived in Paris; not +having seen him for a long time, I could not make up my mind to leave +him sooner, so I hope this will be sufficient reason for my having made +you wait.” + +“Nay,” said Danglars, “it is my fault; I have chosen my visit at a +wrong time, and will retire.” + +“Not at all; on the contrary, be seated; but what is the matter with +you? You look careworn; really, you alarm me. Melancholy in a +capitalist, like the appearance of a comet, presages some misfortune to +the world.” + +“I have been in ill-luck for several days,” said Danglars, “and I have +heard nothing but bad news.” + +“Ah, indeed?” said Monte Cristo. “Have you had another fall at the +Bourse?” + +“No; I am safe for a few days at least. I am only annoyed about a +bankrupt of Trieste.” + +“Really? Does it happen to be Jacopo Manfredi?” + +“Exactly so. Imagine a man who has transacted business with me for I +don’t know how long, to the amount of 800,000 or 900,000 francs during +the year. Never a mistake or delay—a fellow who paid like a prince. +Well, I was a million in advance with him, and now my fine Jacopo +Manfredi suspends payment!” + +“Really?” + +“It is an unheard-of fatality. I draw upon him for 600,000 francs, my +bills are returned unpaid, and, more than that, I hold bills of +exchange signed by him to the value of 400,000 francs, payable at his +correspondent’s in Paris at the end of this month. Today is the 30th. I +present them; but my correspondent has disappeared. This, with my +Spanish affairs, made a pretty end to the month.” + +“Then you really lost by that affair in Spain?” + +“Yes; only 700,000 francs out of my cash box—nothing more!” + +“Why, how could you make such a mistake—such an old stager?” + +“Oh, it is all my wife’s fault. She dreamed Don Carlos had returned to +Spain; she believes in dreams. It is magnetism, she says, and when she +dreams a thing it is sure to happen, she assures me. On this conviction +I allow her to speculate, she having her bank and her stockbroker; she +speculated and lost. It is true she speculates with her own money, not +mine; nevertheless, you can understand that when 700,000 francs leave +the wife’s pocket, the husband always finds it out. But do you mean to +say you have not heard of this? Why, the thing has made a tremendous +noise.” + +“Yes, I heard it spoken of, but I did not know the details, and then no +one can be more ignorant than I am of the affairs in the Bourse.” + +30251m + + + +“Then you do not speculate?” + +“I?—How could I speculate when I already have so much trouble in +regulating my income? I should be obliged, besides my steward, to keep +a clerk and a boy. But touching these Spanish affairs, I think that the +baroness did not dream the whole of the Don Carlos matter. The papers +said something about it, did they not?” + +“Then you believe the papers?” + +“I?—not the least in the world; only I fancied that the honest +_Messager_ was an exception to the rule, and that it only announced +telegraphic despatches.” + +“Well, that’s what puzzles me,” replied Danglars; “the news of the +return of Don Carlos was brought by telegraph.” + +“So that,” said Monte Cristo, “you have lost nearly 1,700,000 francs +this month.” + +“Not nearly, indeed; that is exactly my loss.” + +“_Diable!_” said Monte Cristo compassionately, “it is a hard blow for a +third-rate fortune.” + +“Third-rate,” said Danglars, rather humble, “what do you mean by that?” + +“Certainly,” continued Monte Cristo, “I make three assortments in +fortune—first-rate, second-rate, and third-rate fortunes. I call those +first-rate which are composed of treasures one possesses under one’s +hand, such as mines, lands, and funded property, in such states as +France, Austria, and England, provided these treasures and property +form a total of about a hundred millions; I call those second-rate +fortunes, that are gained by manufacturing enterprises, joint-stock +companies, viceroyalties, and principalities, not drawing more than +1,500,000 francs, the whole forming a capital of about fifty millions; +finally, I call those third-rate fortunes, which are composed of a +fluctuating capital, dependent upon the will of others, or upon chances +which a bankruptcy involves or a false telegram shakes, such as banks, +speculations of the day—in fact, all operations under the influence of +greater or less mischances, the whole bringing in a real or fictitious +capital of about fifteen millions. I think this is about your position, +is it not?” + +“Confound it, yes!” replied Danglars. + +“The result, then, of six more such months as this would be to reduce +the third-rate house to despair.” + +“Oh,” said Danglars, becoming very pale, how you are running on!” + +“Let us imagine seven such months,” continued Monte Cristo, in the same +tone. “Tell me, have you ever thought that seven times 1,700,000 francs +make nearly twelve millions? No, you have not;—well, you are right, for +if you indulged in such reflections, you would never risk your +principal, which is to the speculator what the skin is to civilized +man. We have our clothes, some more splendid than others,—this is our +credit; but when a man dies he has only his skin; in the same way, on +retiring from business, you have nothing but your real principal of +about five or six millions, at the most; for third-rate fortunes are +never more than a fourth of what they appear to be, like the locomotive +on a railway, the size of which is magnified by the smoke and steam +surrounding it. Well, out of the five or six millions which form your +real capital, you have just lost nearly two millions, which must, of +course, in the same degree diminish your credit and fictitious fortune; +to follow out my simile, your skin has been opened by bleeding, and +this if repeated three or four times will cause death—so pay attention +to it, my dear Monsieur Danglars. Do you want money? Do you wish me to +lend you some?” + +30253m + + + +“What a bad calculator you are!” exclaimed Danglars, calling to his +assistance all his philosophy and dissimulation. “I have made money at +the same time by speculations which have succeeded. I have made up the +loss of blood by nutrition. I lost a battle in Spain, I have been +defeated in Trieste, but my naval army in India will have taken some +galleons, and my Mexican pioneers will have discovered some mine.” + +“Very good, very good! But the wound remains and will reopen at the +first loss.” + +“No, for I am only embarked in certainties,” replied Danglars, with the +air of a mountebank sounding his own praises; “to involve me, three +governments must crumble to dust.” + +“Well, such things have been.” + +“That there should be a famine!” + +“Recollect the seven fat and the seven lean kine.” + +“Or, that the sea should become dry, as in the days of Pharaoh, and +even then my vessels would become caravans.” + +“So much the better. I congratulate you, my dear M. Danglars,” said +Monte Cristo; “I see I was deceived, and that you belong to the class +of second-rate fortunes.” + +“I think I may aspire to that honor,” said Danglars with a smile, which +reminded Monte Cristo of the sickly moons which bad artists are so fond +of daubing into their pictures of ruins. “But, while we are speaking of +business,” Danglars added, pleased to find an opportunity of changing +the subject, “tell me what I am to do for M. Cavalcanti.” + +“Give him money, if he is recommended to you, and the recommendation +seems good.” + +“Excellent; he presented himself this morning with a bond of 40,000 +francs, payable at sight, on you, signed by Busoni, and returned by you +to me, with your endorsement—of course, I immediately counted him over +the forty bank-notes.” + +Monte Cristo nodded his head in token of assent. + +“But that is not all,” continued Danglars; “he has opened an account +with my house for his son.” + +“May I ask how much he allows the young man?” + +“Five thousand francs per month.” + +“Sixty thousand francs per year. I thought I was right in believing +that Cavalcanti to be a stingy fellow. How can a young man live upon +5,000 francs a month?” + +“But you understand that if the young man should want a few thousands +more——” + +“Do not advance it; the father will never repay it. You do not know +these ultramontane millionaires; they are regular misers. And by whom +were they recommended to you?” + +“Oh, by the house of Fenzi, one of the best in Florence.” + +“I do not mean to say you will lose, but, nevertheless, mind you hold +to the terms of the agreement.” + +“Would you not trust the Cavalcanti?” + +“I? oh, I would advance ten millions on his signature. I was only +speaking in reference to the second-rate fortunes we were mentioning +just now.” + +“And with all this, how unassuming he is! I should never have taken him +for anything more than a mere major.” + +“And you would have flattered him, for certainly, as you say, he has no +manner. The first time I saw him he appeared to me like an old +lieutenant who had grown mouldy under his epaulets. But all the +Italians are the same; they are like old Jews when they are not +glittering in Oriental splendor.” + +“The young man is better,” said Danglars. + +“Yes; a little nervous, perhaps, but, upon the whole, he appeared +tolerable. I was uneasy about him.” + +“Why?” + +“Because you met him at my house, just after his introduction into the +world, as they told me. He has been travelling with a very severe +tutor, and had never been to Paris before.” + +“Ah, I believe noblemen marry amongst themselves, do they not?” asked +Danglars carelessly; “they like to unite their fortunes.” + +“It is usual, certainly; but Cavalcanti is an original who does nothing +like other people. I cannot help thinking that he has brought his son +to France to choose a wife.” + +“Do you think so?” + +“I am sure of it.” + +“And you have heard his fortune mentioned?” + +“Nothing else was talked of; only some said he was worth millions, and +others that he did not possess a farthing.” + +“And what is your opinion?” + +“I ought not to influence you, because it is only my own personal +impression.” + +“Well, and it is that——” + +“My opinion is, that all these old _podestàs_, these ancient +_condottieri_,—for the Cavalcanti have commanded armies and governed +provinces,—my opinion, I say, is, that they have buried their millions +in corners, the secret of which they have transmitted only to their +eldest sons, who have done the same from generation to generation; and +the proof of this is seen in their yellow and dry appearance, like the +florins of the republic, which, from being constantly gazed upon, have +become reflected in them.” + +“Certainly,” said Danglars, “and this is further supported by the fact +of their not possessing an inch of land.” + +“Very little, at least; I know of none which Cavalcanti possesses, +excepting his palace in Lucca.” + +“Ah, he has a palace?” said Danglars, laughing; “come, that is +something.” + +“Yes; and more than that, he lets it to the Minister of Finance while +he lives in a simple house. Oh, as I told you before, I think the old +fellow is very close.” + +“Come, you do not flatter him.” + +“I scarcely know him; I think I have seen him three times in my life; +all I know relating to him is through Busoni and himself. He was +telling me this morning that, tired of letting his property lie dormant +in Italy, which is a dead nation, he wished to find a method, either in +France or England, of multiplying his millions, but remember, that +though I place great confidence in Busoni, I am not responsible for +this.” + +“Never mind; accept my thanks for the client you have sent me. It is a +fine name to inscribe on my ledgers, and my cashier was quite proud of +it when I explained to him who the Cavalcanti were. By the way, this is +merely a simple question, when this sort of people marry their sons, do +they give them any fortune?” + +“Oh, that depends upon circumstances. I know an Italian prince, rich as +a gold mine, one of the noblest families in Tuscany, who, when his sons +married according to his wish, gave them millions; and when they +married against his consent, merely allowed them thirty crowns a month. +Should Andrea marry according to his father’s views, he will, perhaps, +give him one, two, or three millions. For example, supposing it were +the daughter of a banker, he might take an interest in the house of the +father-in-law of his son; then again, if he disliked his choice, the +major takes the key, double-locks his coffer, and Master Andrea would +be obliged to live like the sons of a Parisian family, by shuffling +cards or rattling the dice.” + +“Ah, that boy will find out some Bavarian or Peruvian princess; he will +want a crown, an El Dorado, and Potosí.” + +“No; these grand lords on the other side of the Alps frequently marry +into plain families; like Jupiter, they like to cross the race. But do +you wish to marry Andrea, my dear M. Danglars, that you are asking so +many questions?” + +“_Ma foi_,” said Danglars, “it would not be a bad speculation, I fancy, +and you know I am a speculator.” + +“You are not thinking of Mademoiselle Danglars, I hope; you would not +like poor Andrea to have his throat cut by Albert?” + +“Albert,” repeated Danglars, shrugging his shoulders; “ah, well; he +would care very little about it, I think.” + +“But he is betrothed to your daughter, I believe?” + +“Well, M. de Morcerf and I have talked about this marriage, but Madame +de Morcerf and Albert——” + +“You do not mean to say that it would not be a good match?” + +“Indeed, I imagine that Mademoiselle Danglars is as good as M. de +Morcerf.” + +“Mademoiselle Danglars’ fortune will be great, no doubt, especially if +the telegraph should not make any more mistakes.” + +“Oh, I do not mean her fortune only; but tell me——” + +“What?” + +“Why did you not invite M. and Madame de Morcerf to your dinner?” + +“I did so, but he excused himself on account of Madame de Morcerf being +obliged to go to Dieppe for the benefit of sea air.” + +“Yes, yes,” said Danglars, laughing, “it would do her a great deal of +good.” + +“Why so?” + +“Because it is the air she always breathed in her youth.” + +Monte Cristo took no notice of this ill-natured remark. + +“But still, if Albert be not so rich as Mademoiselle Danglars,” said +the count, “you must allow that he has a fine name?” + +“So he has; but I like mine as well.” + +“Certainly; your name is popular, and does honor to the title they have +adorned it with; but you are too intelligent not to know that according +to a prejudice, too firmly rooted to be exterminated, a nobility which +dates back five centuries is worth more than one that can only reckon +twenty years.” + +“And for this very reason,” said Danglars with a smile, which he tried +to make sardonic, “I prefer M. Andrea Cavalcanti to M. Albert de +Morcerf.” + +“Still, I should not think the Morcerfs would yield to the Cavalcanti?” + +“The Morcerfs!—Stay, my dear count,” said Danglars; “you are a man of +the world, are you not?” + +“I think so.” + +“And you understand heraldry?” + +“A little.” + +“Well, look at my coat-of-arms, it is worth more than Morcerf’s.” + +“Why so?” + +“Because, though I am not a baron by birth, my real name is, at least, +Danglars.” + +“Well, what then?” + +“While his name is not Morcerf.” + +“How?—not Morcerf?” + +“Not the least in the world.” + +“Go on.” + +“I have been made a baron, so that I actually am one; he made himself a +count, so that he is not one at all.” + +“Impossible!” + +“Listen my dear count; M. de Morcerf has been my friend, or rather my +acquaintance, during the last thirty years. You know I have made the +most of my arms, though I never forgot my origin.” + +“A proof of great humility or great pride,” said Monte Cristo. + +“Well, when I was a clerk, Morcerf was a mere fisherman.” + +“And then he was called——” + +“Fernand.” + +“Only Fernand?” + +“Fernand Mondego.” + +“You are sure?” + +“_Pardieu!_ I have bought enough fish of him to know his name.” + +“Then, why did you think of giving your daughter to him?” + +“Because Fernand and Danglars, being both parvenus, both having become +noble, both rich, are about equal in worth, excepting that there have +been certain things mentioned of him that were never said of me.” + +“What?” + +“Oh, nothing!” + +“Ah, yes; what you tell me recalls to mind something about the name of +Fernand Mondego. I have heard that name in Greece.” + +“In conjunction with the affairs of Ali Pasha?” + +“Exactly so.” + +“This is the mystery,” said Danglars. “I acknowledge I would have given +anything to find it out.” + +“It would be very easy if you much wished it?” + +“How so?” + +“Probably you have some correspondent in Greece?” + +“I should think so.” + +“At Yanina?” + +“Everywhere.” + +“Well, write to your correspondent in Yanina, and ask him what part was +played by a Frenchman named Fernand Mondego in the catastrophe of Ali +Tepelini.” + +“You are right,” exclaimed Danglars, rising quickly, “I will write +today.” + +“Do so.” + +“I will.” + +30259m + + + +“And if you should hear of anything very scandalous——” + +“I will communicate it to you.” + +“You will oblige me.” + +Danglars rushed out of the room, and made but one leap into his +_coupé_. + + + + Chapter 67. The Office of the King’s Attorney + +Let us leave the banker driving his horses at their fullest speed, and +follow Madame Danglars in her morning excursion. We have said that at +half-past twelve o’clock Madame Danglars had ordered her horses, and +had left home in the carriage. She directed her course towards the +Faubourg Saint Germain, went down the Rue Mazarine, and stopped at the +Passage du Pont-Neuf. She descended, and went through the passage. She +was very plainly dressed, as would be the case with a woman of taste +walking in the morning. At the Rue Guénégaud she called a cab, and +directed the driver to go to the Rue de Harlay. As soon as she was +seated in the vehicle, she drew from her pocket a very thick black +veil, which she tied on to her straw bonnet. She then replaced the +bonnet, and saw with pleasure, in a little pocket-mirror, that her +white complexion and brilliant eyes were alone visible. The cab crossed +the Pont-Neuf and entered the Rue de Harlay by the Place Dauphine; the +driver was paid as the door opened, and stepping lightly up the stairs +Madame Danglars soon reached the Salle des Pas-Perdus. + +There was a great deal going on that morning, and many business-like +persons at the Palais; business-like persons pay very little attention +to women, and Madame Danglars crossed the hall without exciting any +more attention than any other woman calling upon her lawyer. + +There was a great press of people in M. de Villefort’s antechamber, but +Madame Danglars had no occasion even to pronounce her name. The instant +she appeared the door-keeper rose, came to her, and asked her whether +she was not the person with whom the procureur had made an appointment; +and on her affirmative answer being given, he conducted her by a +private passage to M. de Villefort’s office. + +The magistrate was seated in an armchair, writing, with his back +towards the door; he did not move as he heard it open, and the +door-keeper pronounce the words, “Walk in, madame,” and then reclose +it; but no sooner had the man’s footsteps ceased, than he started up, +drew the bolts, closed the curtains, and examined every corner of the +room. Then, when he had assured himself that he could neither be seen +nor heard, and was consequently relieved of doubts, he said: + +“Thanks, madame,—thanks for your punctuality;” and he offered a chair +to Madame Danglars, which she accepted, for her heart beat so violently +that she felt nearly suffocated. + +30261m + + + +“It is a long time, madame,” said the procureur, describing a +half-circle with his chair, so as to place himself exactly opposite to +Madame Danglars,—“it is a long time since I had the pleasure of +speaking alone with you, and I regret that we have only now met to +enter upon a painful conversation.” + +“Nevertheless, sir, you see I have answered your first appeal, although +certainly the conversation must be much more painful for me than for +you.” Villefort smiled bitterly. + +“It is true, then,” he said, rather uttering his thoughts aloud than +addressing his companion,—“it is true, then, that all our actions leave +their traces—some sad, others bright—on our paths; it is true that +every step in our lives is like the course of an insect on the +sands;—it leaves its track! Alas, to many the path is traced by tears.” + +“Sir,” said Madame Danglars, “you can feel for my emotion, can you not? +Spare me, then, I beseech you. When I look at this room,—whence so many +guilty creatures have departed, trembling and ashamed, when I look at +that chair before which I now sit trembling and ashamed,—oh, it +requires all my reason to convince me that I am not a very guilty woman +and you a menacing judge.” + +Villefort dropped his head and sighed. + +“And I,” he said, “I feel that my place is not in the judge’s seat, but +on the prisoner’s bench.” + +30263m + + + +“You?” said Madame Danglars. + +“Yes, I.” + +“I think, sir, you exaggerate your situation,” said Madame Danglars, +whose beautiful eyes sparkled for a moment. “The paths of which you +were just speaking have been traced by all young men of ardent +imaginations. Besides the pleasure, there is always remorse from the +indulgence of our passions, and, after all, what have you men to fear +from all this? the world excuses, and notoriety ennobles you.” + +“Madame,” replied Villefort, “you know that I am no hypocrite, or, at +least, that I never deceive without a reason. If my brow be severe, it +is because many misfortunes have clouded it; if my heart be petrified, +it is that it might sustain the blows it has received. I was not so in +my youth, I was not so on the night of the betrothal, when we were all +seated around a table in the Rue du Cours at Marseilles. But since then +everything has changed in and about me; I am accustomed to brave +difficulties, and, in the conflict to crush those who, by their own +free will, or by chance, voluntarily or involuntarily, interfere with +me in my career. It is generally the case that what we most ardently +desire is as ardently withheld from us by those who wish to obtain it, +or from whom we attempt to snatch it. Thus, the greater number of a +man’s errors come before him disguised under the specious form of +necessity; then, after error has been committed in a moment of +excitement, of delirium, or of fear, we see that we might have avoided +and escaped it. The means we might have used, which we in our blindness +could not see, then seem simple and easy, and we say, ‘Why did I not do +this, instead of that?’ Women, on the contrary, are rarely tormented +with remorse; for the decision does not come from you,—your misfortunes +are generally imposed upon you, and your faults the results of others’ +crimes.” + +“In any case, sir, you will allow,” replied Madame Danglars, “that, +even if the fault were alone mine, I last night received a severe +punishment for it.” + +“Poor thing,” said Villefort, pressing her hand, “it was too severe for +your strength, for you were twice overwhelmed, and yet——” + +“Well?” + +“Well, I must tell you. Collect all your courage, for you have not yet +heard all.” + +“Ah,” exclaimed Madame Danglars, alarmed, “what is there more to hear?” + +“You only look back to the past, and it is, indeed, bad enough. Well, +picture to yourself a future more gloomy still—certainly frightful, +perhaps sanguinary!” + +The baroness knew how calm Villefort naturally was, and his present +excitement frightened her so much that she opened her mouth to scream, +but the sound died in her throat. + +“How has this terrible past been recalled?” cried Villefort; “how is it +that it has escaped from the depths of the tomb and the recesses of our +hearts, where it was buried, to visit us now, like a phantom, whitening +our cheeks and flushing our brows with shame?” + +“Alas,” said Hermine, “doubtless it is chance.” + +“Chance?” replied Villefort; “No, no, madame, there is no such thing as +chance.” + +“Oh, yes; has not a fatal chance revealed all this? Was it not by +chance the Count of Monte Cristo bought that house? Was it not by +chance he caused the earth to be dug up? Is it not by chance that the +unfortunate child was disinterred under the trees?—that poor innocent +offspring of mine, which I never even kissed, but for whom I wept many, +many tears. Ah, my heart clung to the count when he mentioned the dear +spoil found beneath the flowers.” + +“Well, no, madame,—this is the terrible news I have to tell you,” said +Villefort in a hollow voice—“no, nothing was found beneath the flowers; +there was no child disinterred—no. You must not weep, no, you must not +groan, you must tremble!” + +“What can you mean?” asked Madame Danglars, shuddering. + +“I mean that M. de Monte Cristo, digging underneath these trees, found +neither skeleton nor chest, because neither of them was there!” + +“Neither of them there?” repeated Madame Danglars, her staring, +wide-open eyes expressing her alarm. “Neither of them there!” she again +said, as though striving to impress herself with the meaning of the +words which escaped her. + +“No,” said Villefort, burying his face in his hands, “no, a hundred +times no!” + +“Then you did not bury the poor child there, sir? Why did you deceive +me? Where did you place it? tell me—where?” + +“There! But listen to me—listen—and you will pity me who has for twenty +years alone borne the heavy burden of grief I am about to reveal, +without casting the least portion upon you.” + +“Oh, you frighten me! But speak; I will listen.” + +“You recollect that sad night, when you were half-expiring on that bed +in the red damask room, while I, scarcely less agitated than you, +awaited your delivery. The child was born, was given to me—motionless, +breathless, voiceless; we thought it dead.” + +Madame Danglars moved rapidly, as though she would spring from her +chair, but Villefort stopped, and clasped his hands as if to implore +her attention. + +“We thought it dead,” he repeated; “I placed it in the chest, which was +to take the place of a coffin; I descended to the garden, I dug a hole, +and then flung it down in haste. Scarcely had I covered it with earth, +when the arm of the Corsican was stretched towards me; I saw a shadow +rise, and, at the same time, a flash of light. I felt pain; I wished to +cry out, but an icy shiver ran through my veins and stifled my voice; I +fell lifeless, and fancied myself killed. Never shall I forget your +sublime courage, when, having returned to consciousness, I dragged +myself to the foot of the stairs, and you, almost dying yourself, came +to meet me. We were obliged to keep silent upon the dreadful +catastrophe. You had the fortitude to regain the house, assisted by +your nurse. A duel was the pretext for my wound. Though we scarcely +expected it, our secret remained in our own keeping alone. I was taken +to Versailles; for three months I struggled with death; at last, as I +seemed to cling to life, I was ordered to the South. Four men carried +me from Paris to Châlons, walking six leagues a day; Madame de +Villefort followed the litter in her carriage. At Châlons I was put +upon the Saône, thence I passed on to the Rhône, whence I descended, +merely with the current, to Arles; at Arles I was again placed on my +litter, and continued my journey to Marseilles. My recovery lasted six +months. I never heard you mentioned, and I did not dare inquire for +you. When I returned to Paris, I learned that you, the widow of M. de +Nargonne, had married M. Danglars. + +“What was the subject of my thoughts from the time consciousness +returned to me? Always the same—always the child’s corpse, coming every +night in my dreams, rising from the earth, and hovering over the grave +with menacing look and gesture. I inquired immediately on my return to +Paris; the house had not been inhabited since we left it, but it had +just been let for nine years. I found the tenant. I pretended that I +disliked the idea that a house belonging to my wife’s father and mother +should pass into the hands of strangers. I offered to pay them for +cancelling the lease; they demanded 6,000 francs. I would have given +10,000—I would have given 20,000. I had the money with me; I made the +tenant sign the deed of resilition, and when I had obtained what I so +much wanted, I galloped to Auteuil. No one had entered the house since +I had left it. + +“It was five o’clock in the afternoon; I ascended into the red room, +and waited for night. There all the thoughts which had disturbed me +during my year of constant agony came back with double force. The +Corsican, who had declared the vendetta against me, who had followed me +from Nîmes to Paris, who had hid himself in the garden, who had struck +me, had seen me dig the grave, had seen me inter the child,—he might +become acquainted with your person,—nay, he might even then have known +it. Would he not one day make you pay for keeping this terrible secret? +Would it not be a sweet revenge for him when he found that I had not +died from the blow of his dagger? It was therefore necessary, before +everything else, and at all risks, that I should cause all traces of +the past to disappear—that I should destroy every material vestige; too +much reality would always remain in my recollection. It was for this I +had annulled the lease—it was for this I had come—it was for this I was +waiting. + +“Night arrived; I allowed it to become quite dark. I was without a +light in that room; when the wind shook all the doors, behind which I +continually expected to see some spy concealed, I trembled. I seemed +everywhere to hear your moans behind me in the bed, and I dared not +turn around. My heart beat so violently that I feared my wound would +open. At length, one by one, all the noises in the neighborhood ceased. +I understood that I had nothing to fear, that I should neither be seen +nor heard, so I decided upon descending to the garden. + +“Listen, Hermine; I consider myself as brave as most men, but when I +drew from my breast the little key of the staircase, which I had found +in my coat—that little key we both used to cherish so much, which you +wished to have fastened to a golden ring—when I opened the door, and +saw the pale moon shedding a long stream of white light on the spiral +staircase like a spectre, I leaned against the wall, and nearly +shrieked. I seemed to be going mad. At last I mastered my agitation. I +descended the staircase step by step; the only thing I could not +conquer was a strange trembling in my knees. I grasped the railings; if +I had relaxed my hold for a moment, I should have fallen. I reached the +lower door. Outside this door a spade was placed against the wall; I +took it, and advanced towards the thicket. I had provided myself with a +dark lantern. In the middle of the lawn I stopped to light it, then I +continued my path. + +“It was the end of November, all the verdure of the garden had +disappeared, the trees were nothing more than skeletons with their long +bony arms, and the dead leaves sounded on the gravel under my feet. My +terror overcame me to such a degree as I approached the thicket, that I +took a pistol from my pocket and armed myself. I fancied continually +that I saw the figure of the Corsican between the branches. I examined +the thicket with my dark lantern; it was empty. I looked carefully +around; I was indeed alone,—no noise disturbed the silence but the owl, +whose piercing cry seemed to be calling up the phantoms of the night. I +tied my lantern to a forked branch I had noticed a year before at the +precise spot where I stopped to dig the hole. + +“The grass had grown very thickly there during the summer, and when +autumn arrived no one had been there to mow it. Still one place where +the grass was thin attracted my attention; it evidently was there I had +turned up the ground. I went to work. The hour, then, for which I had +been waiting during the last year had at length arrived. How I worked, +how I hoped, how I struck every piece of turf, thinking to find some +resistance to my spade! But no, I found nothing, though I had made a +hole twice as large as the first. I thought I had been deceived—had +mistaken the spot. I turned around, I looked at the trees, I tried to +recall the details which had struck me at the time. A cold, sharp wind +whistled through the leafless branches, and yet the drops fell from my +forehead. I recollected that I was stabbed just as I was trampling the +ground to fill up the hole; while doing so I had leaned against a +laburnum; behind me was an artificial rockery, intended to serve as a +resting-place for persons walking in the garden; in falling, my hand, +relaxing its hold of the laburnum, felt the coldness of the stone. On +my right I saw the tree, behind me the rock. I stood in the same +attitude, and threw myself down. I rose, and again began digging and +enlarging the hole; still I found nothing, nothing—the chest was no +longer there!” + +30269m + + + +“The chest no longer there?” murmured Madame Danglars, choking with +fear. + +“Think not I contented myself with this one effort,” continued +Villefort. “No; I searched the whole thicket. I thought the assassin, +having discovered the chest, and supposing it to be a treasure, had +intended carrying it off, but, perceiving his error, had dug another +hole, and deposited it there; but I could find nothing. Then the idea +struck me that he had not taken these precautions, and had simply +thrown it in a corner. In the last case I must wait for daylight to +renew my search. I remained in the room and waited.” + +“Oh, Heaven!” + +30271m + + + +When daylight dawned I went down again. My first visit was to the +thicket. I hoped to find some traces which had escaped me in the +darkness. I had turned up the earth over a surface of more than twenty +feet square, and a depth of two feet. A laborer would not have done in +a day what occupied me an hour. But I could find nothing—absolutely +nothing. Then I renewed the search. Supposing it had been thrown aside, +it would probably be on the path which led to the little gate; but this +examination was as useless as the first, and with a bursting heart I +returned to the thicket, which now contained no hope for me.” + +“Oh,” cried Madame Danglars, “it was enough to drive you mad!” + +“I hoped for a moment that it might,” said Villefort; “but that +happiness was denied me. However, recovering my strength and my ideas, +‘Why,’ said I, ‘should that man have carried away the corpse?’” + +“But you said,” replied Madame Danglars, “he would require it as a +proof.” + +“Ah, no, madame, that could not be. Dead bodies are not kept a year; +they are shown to a magistrate, and the evidence is taken. Now, nothing +of the kind has happened.” + +“What then?” asked Hermine, trembling violently. + +“Something more terrible, more fatal, more alarming for us—the child +was, perhaps, alive, and the assassin may have saved it!” + +Madame Danglars uttered a piercing cry, and, seizing Villefort’s hands, +exclaimed, “My child was alive?” said she; “you buried my child alive? +You were not certain my child was dead, and you buried it? Ah——” + +Madame Danglars had risen, and stood before the procureur, whose hands +she wrung in her feeble grasp. + +“I know not; I merely suppose so, as I might suppose anything else,” +replied Villefort with a look so fixed, it indicated that his powerful +mind was on the verge of despair and madness. + +“Ah, my child, my poor child!” cried the baroness, falling on her +chair, and stifling her sobs in her handkerchief. Villefort, becoming +somewhat reassured, perceived that to avert the maternal storm +gathering over his head, he must inspire Madame Danglars with the +terror he felt. + +“You understand, then, that if it were so,” said he, rising in his +turn, and approaching the baroness, to speak to her in a lower tone, +“we are lost. This child lives, and someone knows it lives—someone is +in possession of our secret; and since Monte Cristo speaks before us of +a child disinterred, when that child could not be found, it is he who +is in possession of our secret.” + +“Just God, avenging God!” murmured Madame Danglars. + +Villefort’s only answer was a stifled groan. + +“But the child—the child, sir?” repeated the agitated mother. + +“How I have searched for him,” replied Villefort, wringing his hands; +“how I have called him in my long sleepless nights; how I have longed +for royal wealth to purchase a million of secrets from a million of +men, and to find mine among them! At last, one day, when for the +hundredth time I took up my spade, I asked myself again and again what +the Corsican could have done with the child. A child encumbers a +fugitive; perhaps, on perceiving it was still alive, he had thrown it +into the river.” + +“Impossible!” cried Madame Danglars: “a man may murder another out of +revenge, but he would not deliberately drown a child.” + +“Perhaps,” continued Villefort, “he had put it in the foundling +hospital.” + +“Oh, yes, yes,” cried the baroness; “my child is there!” + +“I ran to the hospital, and learned that the same night—the night of +the 20th of September—a child had been brought there, wrapped in part +of a fine linen napkin, purposely torn in half. This portion of the +napkin was marked with half a baron’s crown, and the letter H.” + +“Truly, truly,” said Madame Danglars, “all my linen is marked thus; +Monsieur de Nargonne was a baron, and my name is Hermine. Thank God, my +child was not then dead!” + +“No, it was not dead.” + +“And you can tell me so without fearing to make me die of joy? Where is +the child?” + +Villefort shrugged his shoulders. + +“Do I know?” said he; “and do you believe that if I knew I would relate +to you all its trials and all its adventures as would a dramatist or a +novel writer? Alas, no, I know not. A woman, about six months after, +came to claim it with the other half of the napkin. This woman gave all +the requisite particulars, and it was intrusted to her.” + +“But you should have inquired for the woman; you should have traced +her.” + +“And what do you think I did? I feigned a criminal process, and +employed all the most acute bloodhounds and skilful agents in search of +her. They traced her to Châlons, and there they lost her.” + +“They lost her?” + +“Yes, forever.” + +Madame Danglars had listened to this recital with a sigh, a tear, or a +shriek for every detail. “And this is all?” said she; “and you stopped +there?” + +“Oh, no,” said Villefort; “I never ceased to search and to inquire. +However, the last two or three years I had allowed myself some respite. +But now I will begin with more perseverance and fury than ever, since +fear urges me, not my conscience.” + +“But,” replied Madame Danglars, “the Count of Monte Cristo can know +nothing, or he would not seek our society as he does.” + +“Oh, the wickedness of man is very great,” said Villefort, “since it +surpasses the goodness of God. Did you observe that man’s eyes while he +was speaking to us?” + +“No.” + +“But have you ever watched him carefully?” + +“Doubtless he is capricious, but that is all; one thing alone struck +me,—of all the exquisite things he placed before us, he touched +nothing. I might have suspected he was poisoning us.” + +“And you see you would have been deceived.” + +“Yes, doubtless.” + +“But believe me, that man has other projects. For that reason I wished +to see you, to speak to you, to warn you against everyone, but +especially against him. Tell me,” cried Villefort, fixing his eyes more +steadfastly on her than he had ever done before, “did you ever reveal +to anyone our connection?” + +“Never, to anyone.” + +“You understand me,” replied Villefort, affectionately; “when I say +anyone,—pardon my urgency,—to anyone living I mean?” + +“Yes, yes, I understand very well,” ejaculated the baroness; “never, I +swear to you.” + +“Were you ever in the habit of writing in the evening what had +transpired in the morning? Do you keep a journal?” + +“No, my life has been passed in frivolity; I wish to forget it myself.” + +“Do you talk in your sleep?” + +30275m + + + +“I sleep soundly, like a child; do you not remember?” + +The color mounted to the baroness’s face, and Villefort turned awfully +pale. + +“It is true,” said he, in so low a tone that he could hardly be heard. + +“Well?” said the baroness. + +“Well, I understand what I now have to do,” replied Villefort. “In less +than one week from this time I will ascertain who this M. de Monte +Cristo is, whence he comes, where he goes, and why he speaks in our +presence of children that have been disinterred in a garden.” + +Villefort pronounced these words with an accent which would have made +the count shudder had he heard him. Then he pressed the hand the +baroness reluctantly gave him, and led her respectfully back to the +door. Madame Danglars returned in another cab to the passage, on the +other side of which she found her carriage, and her coachman sleeping +peacefully on his box while waiting for her. + + + + Chapter 68. A Summer Ball + +The same day during the interview between Madame Danglars and the +procureur, a travelling-carriage entered the Rue du Helder, passed +through the gateway of No. 27, and stopped in the yard. In a moment the +door was opened, and Madame de Morcerf alighted, leaning on her son’s +arm. Albert soon left her, ordered his horses, and having arranged his +toilet, drove to the Champs-Élysées, to the house of Monte Cristo. + +The count received him with his habitual smile. It was a strange thing +that no one ever appeared to advance a step in that man’s favor. Those +who would, as it were, force a passage to his heart, found an +impassable barrier. Morcerf, who ran towards him with open arms, was +chilled as he drew near, in spite of the friendly smile, and simply +held out his hand. Monte Cristo shook it coldly, according to his +invariable practice. + +“Here I am, dear count.” + +“Welcome home again.” + +“I arrived an hour since.” + +“From Dieppe?” + +“No, from Tréport.” + +“Indeed?” + +“And I have come at once to see you.” + +“That is extremely kind of you,” said Monte Cristo with a tone of +perfect indifference. + +“And what is the news?” + +“You should not ask a stranger, a foreigner, for news.” + +“I know it, but in asking for news, I mean, have you done anything for +me?” + +“Had you commissioned me?” said Monte Cristo, feigning uneasiness. + +“Come, come,” said Albert, “do not assume so much indifference. It is +said, sympathy travels rapidly, and when at Tréport, I felt the +electric shock; you have either been working for me or thinking of me.” + +“Possibly,” said Monte Cristo, “I have indeed thought of you, but the +magnetic wire I was guiding acted, indeed, without my knowledge.” + +30277m + + + +“Indeed! Pray tell me how it happened.” + +“Willingly. M. Danglars dined with me.” + +“I know it; to avoid meeting him, my mother and I left town.” + +“But he met here M. Andrea Cavalcanti.” + +“Your Italian prince?” + +“Not so fast; M. Andrea only calls himself count.” + +“Calls himself, do you say?” + +“Yes, calls himself.” + +“Is he not a count?” + +“What can I know of him? He calls himself so. I, of course, give him +the same title, and everyone else does likewise.” + +“What a strange man you are! What next? You say M. Danglars dined +here?” + +“Yes, with Count Cavalcanti, the marquis his father, Madame Danglars, +M. and Madame de Villefort,—charming people,—M. Debray, Maximilian +Morrel, and M. de Château-Renaud.” + +“Did they speak of me?” + +“Not a word.” + +“So much the worse.” + +“Why so? I thought you wished them to forget you?” + +“If they did not speak of me, I am sure they thought about me, and I am +in despair.” + +“How will that affect you, since Mademoiselle Danglars was not among +the number here who thought of you? Truly, she might have thought of +you at home.” + +“I have no fear of that; or, if she did, it was only in the same way in +which I think of her.” + +“Touching sympathy! So you hate each other?” said the count. + +“Listen,” said Morcerf—“if Mademoiselle Danglars were disposed to take +pity on my supposed martyrdom on her account, and would dispense with +all matrimonial formalities between our two families, I am ready to +agree to the arrangement. In a word, Mademoiselle Danglars would make a +charming mistress—but a wife—_diable!_” + +“And this,” said Monte Cristo, “is your opinion of your intended +spouse?” + +“Yes; it is rather unkind, I acknowledge, but it is true. But as this +dream cannot be realized, since Mademoiselle Danglars must become my +lawful wife, live perpetually with me, sing to me, compose verses and +music within ten paces of me, and that for my whole life, it frightens +me. One may forsake a mistress, but a wife,—good heavens! There she +must always be; and to marry Mademoiselle Danglars would be awful.” + +“You are difficult to please, viscount.” + +“Yes, for I often wish for what is impossible.” + +“What is that?” + +“To find such a wife as my father found.” + +Monte Cristo turned pale, and looked at Albert, while playing with some +magnificent pistols. + +“Your father was fortunate, then?” said he. + +“You know my opinion of my mother, count; look at her,—still beautiful, +witty, more charming than ever. For any other son to have stayed with +his mother for four days at Tréport, it would have been a condescension +or a martyrdom, while I return, more contented, more peaceful—shall I +say more poetic!—than if I had taken Queen Mab or Titania as my +companion.” + +30279m + + + +“That is an overwhelming demonstration, and you would make everyone vow +to live a single life.” + +“Such are my reasons for not liking to marry Mademoiselle Danglars. +Have you ever noticed how much a thing is heightened in value when we +obtain possession of it? The diamond which glittered in the window at +Marlé’s or Fossin’s shines with more splendor when it is our own; but +if we are compelled to acknowledge the superiority of another, and +still must retain the one that is inferior, do you not know what we +have to endure?” + +“Worldling,” murmured the count. + +“Thus I shall rejoice when Mademoiselle Eugénie perceives I am but a +pitiful atom, with scarcely as many hundred thousand francs as she has +millions.” Monte Cristo smiled. “One plan occurred to me,” continued +Albert; “Franz likes all that is eccentric; I tried to make him fall in +love with Mademoiselle Danglars; but in spite of four letters, written +in the most alluring style, he invariably answered: ‘My eccentricity +may be great, but it will not make me break my promise.’” + +“That is what I call devoted friendship, to recommend to another one +whom you would not marry yourself.” Albert smiled. + +“Apropos,” continued he, “Franz is coming soon, but it will not +interest you; you dislike him, I think?” + +“I?” said Monte Cristo; “my dear viscount, how have you discovered that +I did not like M. Franz! I like everyone.” + +“And you include me in the expression everyone—many thanks!” + +“Let us not mistake,” said Monte Cristo; “I love everyone as God +commands us to love our neighbor, as Christians; but I thoroughly hate +but a few. Let us return to M. Franz d’Épinay. Did you say he was +coming?” + +“Yes; summoned by M. de Villefort, who is apparently as anxious to get +Mademoiselle Valentine married as M. Danglars is to see Mademoiselle +Eugénie settled. It must be a very irksome office to be the father of a +grown-up daughter; it seems to make one feverish, and to raise one’s +pulse to ninety beats a minute until the deed is done.” + +“But M. d’Épinay, unlike you, bears his misfortune patiently.” + +“Still more, he talks seriously about the matter, puts on a white tie, +and speaks of his family. He entertains a very high opinion of M. and +Madame de Villefort.” + +“Which they deserve, do they not?” + +“I believe they do. M. de Villefort has always passed for a severe but +a just man.” + +“There is, then, one,” said Monte Cristo, “whom you do not condemn like +poor Danglars?” + +“Because I am not compelled to marry his daughter perhaps,” replied +Albert, laughing. + +“Indeed, my dear sir,” said Monte Cristo, “you are revoltingly +foppish.” + +“I foppish? how do you mean?” + +“Yes; pray take a cigar, and cease to defend yourself, and to struggle +to escape marrying Mademoiselle Danglars. Let things take their course; +perhaps you may not have to retract.” + +“Bah!” said Albert, staring. + +“Doubtless, my dear viscount, you will not be taken by force; and +seriously, do you wish to break off your engagement?” + +“I would give a hundred thousand francs to be able to do so.” + +“Then make yourself quite easy. M. Danglars would give double that sum +to attain the same end.” + +“Am I, indeed, so happy?” said Albert, who still could not prevent an +almost imperceptible cloud passing across his brow. “But, my dear +count, has M. Danglars any reason?” + +“Ah! there is your proud and selfish nature. You would expose the +self-love of another with a hatchet, but you shrink if your own is +attacked with a needle.” + +“But yet, M. Danglars appeared——” + +“Delighted with you, was he not? Well, he is a man of bad taste, and is +still more enchanted with another. I know not whom; look and judge for +yourself.” + +“Thank you, I understand. But my mother—no, not my mother; I mistake—my +father intends giving a ball.” + +“A ball at this season?” + +“Summer balls are fashionable.” + +“If they were not, the countess has only to wish it, and they would +become so.” + +“You are right; You know they are select affairs; those who remain in +Paris in July must be true Parisians. Will you take charge of our +invitation to Messieurs Cavalcanti?” + +“When will it take place?” + +“On Saturday.” + +“M. Cavalcanti’s father will be gone.” + +“But the son will be here; will you invite young M. Cavalcanti?” + +“I do not know him, viscount.” + +“You do not know him?” + +“No, I never saw him until a few days since, and am not responsible for +him.” + +“But you receive him at your house?” + +“That is another thing: he was recommended to me by a good abbé, who +may be deceived. Give him a direct invitation, but do not ask me to +present him. If he were afterwards to marry Mademoiselle Danglars, you +would accuse me of intrigue, and would be challenging me,—besides, I +may not be there myself.” + +“Where?” + +“At your ball.” + +“Why should you not be there?” + +“Because you have not yet invited me.” + +“But I come expressly for that purpose.” + +“You are very kind, but I may be prevented.” + +“If I tell you one thing, you will be so amiable as to set aside all +impediments.” + +“Tell me what it is.” + +“My mother begs you to come.” + +“The Comtesse de Morcerf?” said Monte Cristo, starting. + +“Ah, count,” said Albert, “I assure you Madame de Morcerf speaks freely +to me, and if you have not felt those sympathetic fibres of which I +spoke just now thrill within you, you must be entirely devoid of them, +for during the last four days we have spoken of no one else.” + +“You have talked of me?” + +“Yes, that is the penalty of being a living puzzle!” + +“Then I am also a puzzle to your mother? I should have thought her too +reasonable to be led by imagination.” + +“A problem, my dear count, for everyone—for my mother as well as +others; much studied, but not solved, you still remain an enigma, do +not fear. My mother is only astonished that you remain so long +unsolved. I believe, while the Countess G—— takes you for Lord Ruthven, +my mother imagines you to be Cagliostro or the Count Saint-Germain. The +first opportunity you have, confirm her in her opinion; it will be easy +for you, as you have the philosophy of the one and the wit of the +other.” + +“I thank you for the warning,” said the count; “I shall endeavor to be +prepared for all suppositions.” + +“You will, then, come on Saturday?” + +“Yes, since Madame de Morcerf invites me.” + +“You are very kind.” + +“Will M. Danglars be there?” + +“He has already been invited by my father. We shall try to persuade the +great d’Aguesseau,11 M. de Villefort, to come, but have not much hope +of seeing him.” + +“‘Never despair of anything,’ says the proverb.” + +“Do you dance, count?” + +“I dance?” + +“Yes, you; it would not be astonishing.” + +“That is very well before one is over forty. No, I do not dance, but I +like to see others do so. Does Madame de Morcerf dance?” + +“Never; you can talk to her, she so delights in your conversation.” + +“Indeed?” + +30283m + + + +“Yes, truly; and I assure you. You are the only man of whom I have +heard her speak with interest.” Albert rose and took his hat; the count +conducted him to the door. + +“I have one thing to reproach myself with,” said he, stopping Albert on +the steps. “What is it?” + +“I have spoken to you indiscreetly about Danglars.” + +“On the contrary, speak to me always in the same strain about him.” + +“I am glad to be reassured on that point. Apropos, when do you aspect +M. d’Épinay?” + +“Five or six days hence at the latest.” + +“And when is he to be married?” + +“Immediately on the arrival of M. and Madame de Saint-Méran.” + +“Bring him to see me. Although you say I do not like him, I assure you +I shall be happy to see him.” + +“I will obey your orders, my lord.” + +“Good-bye.” + +“Until Saturday, when I may expect you, may I not?” + +“Yes, I promised you.” The Count watched Albert, waving his hand to +him. When he had mounted his phaeton, Monte Cristo turned, and seeing +Bertuccio, “What news?” said he. + +“She went to the Palais,” replied the steward. + +“Did she stay long there?” + +“An hour and a half.” + +“Did she return home?” + +“Directly.” + +“Well, my dear Bertuccio,” said the count, “I now advise you to go in +quest of the little estate I spoke to you of in Normandy.” + +Bertuccio bowed, and as his wishes were in perfect harmony with the +order he had received, he started the same evening. + + + + Chapter 69. The Inquiry + +M. de Villefort kept the promise he had made to Madame Danglars, to +endeavor to find out how the Count of Monte Cristo had discovered the +history of the house at Auteuil. He wrote the same day for the required +information to M. de Boville, who, from having been an inspector of +prisons, was promoted to a high office in the police; and the latter +begged for two days time to ascertain exactly who would be most likely +to give him full particulars. At the end of the second day M. de +Villefort received the following note: + +“The person called the Count of Monte Cristo is an intimate +acquaintance of Lord Wilmore, a rich foreigner, who is sometimes seen +in Paris and who is there at this moment; he is also known to the Abbé +Busoni, a Sicilian priest, of high repute in the East, where he has +done much good.” + +M. de Villefort replied by ordering the strictest inquiries to be made +respecting these two persons; his orders were executed, and the +following evening he received these details: + +“The abbé, who was in Paris only for a month, inhabited a small +two-storied house behind Saint-Sulpice; there were two rooms on each +floor and he was the only tenant. The two lower rooms consisted of a +dining-room, with a table, chairs, and side-board of walnut, and a +wainscoted parlor, without ornaments, carpet, or timepiece. It was +evident that the abbé limited himself to objects of strict necessity. +He preferred to use the sitting-room upstairs, which was more library +than parlor, and was furnished with theological books and parchments, +in which he delighted to bury himself for months at a time, according +to his valet de chambre. His valet looked at the visitors through a +sort of wicket; and if their faces were unknown to him or displeased +him, he replied that the abbé was not in Paris, an answer which +satisfied most persons, because the abbé was known to be a great +traveller. Besides, whether at home or not, whether in Paris or Cairo, +the abbé always left something to give away, which the valet +distributed through this wicket in his master’s name. The other room +near the library was a bedroom. A bed without curtains, four armchairs, +and a couch, covered with yellow Utrecht velvet, composed, with a +_prie-Dieu_, all its furniture. + +“Lord Wilmore resided in Rue Fontaine-Saint-Georges. He was one of +those English tourists who consume a large fortune in travelling. He +hired the apartment in which he lived furnished, passed only a few +hours in the day there, and rarely slept there. One of his +peculiarities was never to speak a word of French, which he however +wrote with great facility.” + +The day after this important information had been given to the king’s +attorney, a man alighted from a carriage at the corner of the Rue +Férou, and rapping at an olive-green door, asked if the Abbé Busoni +were within. + +“No, he went out early this morning,” replied the valet. + +“I might not always be content with that answer,” replied the visitor, +“for I come from one to whom everyone must be at home. But have the +kindness to give the Abbé Busoni——” + +“I told you he was not at home,” repeated the valet. + +“Then on his return give him that card and this sealed paper. Will he +be at home at eight o’clock this evening?” + +“Doubtless, unless he is at work, which is the same as if he were out.” + +“I will come again at that time,” replied the visitor, who then +retired. + +At the appointed hour the same man returned in the same carriage, +which, instead of stopping this time at the end of the Rue Férou, drove +up to the green door. He knocked, and it opened immediately to admit +him. From the signs of respect the valet paid him, he saw that his note +had produced a good effect. + +“Is the abbé at home?” asked he. + +“Yes; he is at work in his library, but he expects you, sir,” replied +the valet. The stranger ascended a rough staircase, and before a table, +illumined by a lamp whose light was concentrated by a large shade while +the rest of the apartment was in partial darkness, he perceived the +abbé in a monk’s dress, with a cowl on his head such as was used by +learned men of the Middle Ages. + +“Have I the honor of addressing the Abbé Busoni?” asked the visitor. + +“Yes, sir,” replied the abbé; “and you are the person whom M. de +Boville, formerly an inspector of prisons, sends to me from the prefect +of police?” + +“Exactly, sir.” + +“One of the agents appointed to secure the safety of Paris?” + +“Yes, sir” replied the stranger with a slight hesitation, and blushing. + +The abbé replaced the large spectacles, which covered not only his eyes +but his temples, and sitting down motioned to his visitor to do the +same. “I am at your service, sir,” said the abbé, with a marked Italian +accent. + +“The mission with which I am charged, sir,” replied the visitor, +speaking with hesitation, “is a confidential one on the part of him who +fulfils it, and him by whom he is employed.” The abbé bowed. “Your +probity,” replied the stranger, “is so well known to the prefect that +he wishes as a magistrate to ascertain from you some particulars +connected with the public safety, to ascertain which I am deputed to +see you. It is hoped that no ties of friendship or humane consideration +will induce you to conceal the truth.” + +“Provided, sir, the particulars you wish for do not interfere with my +scruples or my conscience. I am a priest, sir, and the secrets of +confession, for instance, must remain between me and God, and not +between me and human justice.” + +“Do not alarm yourself, monsieur, we will duly respect your +conscience.” + +At this moment the abbé pressed down his side of the shade and so +raised it on the other, throwing a bright light on the stranger’s face, +while his own remained obscured. + +“Excuse me, abbé,” said the envoy of the prefect of the police, “but +the light tries my eyes very much.” The abbé lowered the shade. + +“Now, sir, I am listening—go on.” + +“I will come at once to the point. Do you know the Count of Monte +Cristo?” + +“You mean Monsieur Zaccone, I presume?” + +“Zaccone?—is not his name Monte Cristo?” + +“Monte Cristo is the name of an estate, or, rather, of a rock, and not +a family name.” + +“Well, be it so—let us not dispute about words; and since M. de Monte +Cristo and M. Zaccone are the same——” + +“Absolutely the same.” + +“Let us speak of M. Zaccone.” + +“Agreed.” + +“I asked you if you knew him?” + +“Extremely well.” + +“Who is he?” + +“The son of a rich shipbuilder in Malta.” + +“I know that is the report; but, as you are aware, the police does not +content itself with vague reports.” + +“However,” replied the abbé, with an affable smile, “when that report +is in accordance with the truth, everybody must believe it, the police +as well as all the rest.” + +“Are you sure of what you assert?” + +“What do you mean by that question?” + +“Understand, sir, I do not in the least suspect your veracity; I ask if +you are certain of it?” + +“I knew his father, M. Zaccone.” + +“Ah, indeed?” + +“And when a child I often played with the son in the timber-yards.” + +“But whence does he derive the title of count?” + +“You are aware that may be bought.” + +“In Italy?” + +“Everywhere.” + +“And his immense riches, whence does he procure them?” + +“They may not be so very great.” + +“How much do you suppose he possesses?” + +“From one hundred and fifty to two hundred thousand livres per annum.” + +“That is reasonable,” said the visitor; “I have heard he had three or +four millions.” + +“Two hundred thousand per annum would make four millions of capital.” + +“But I was told he had four millions per annum.” + +“That is not probable.” + +“Do you know this Island of Monte Cristo?” + +“Certainly, everyone who has come from Palermo, Naples, or Rome to +France by sea must know it, since he has passed close to it and must +have seen it.” + +“I am told it is a delightful place?” + +“It is a rock.” + +“And why has the count bought a rock?” + +“For the sake of being a count. In Italy one must have territorial +possessions to be a count.” + +“You have, doubtless, heard the adventures of M. Zaccone’s youth?” + +“The father’s?” + +“No, the son’s.” + +“I know nothing certain; at that period of his life, I lost sight of my +young comrade.” + +“Was he in the wars?” + +“I think he entered the service.” + +“In what branch?” + +“In the navy.” + +“Are you not his confessor?” + +“No, sir; I believe he is a Lutheran.” + +“A Lutheran?” + +“I say, I believe such is the case, I do not affirm it; besides, +liberty of conscience is established in France.” + +“Doubtless, and we are not now inquiring into his creed, but his +actions; in the name of the prefect of police, I ask you what you know +of him. + +“He passes for a very charitable man. Our holy father, the pope, has +made him a knight of Jesus Christ for the services he rendered to the +Christians in the East; he has five or six rings as testimonials from +Eastern monarchs of his services.” + +“Does he wear them?” + +“No, but he is proud of them; he is better pleased with rewards given +to the benefactors of man than to his destroyers.” + +“He is a Quaker then?” + +“Exactly, he is a Quaker, with the exception of the peculiar dress.” + +“Has he any friends?” + +“Yes, everyone who knows him is his friend.” + +“But has he any enemies?” + +“One only.” + +“What is his name?” + +“Lord Wilmore.” + +“Where is he?” + +“He is in Paris just now.” + +“Can he give me any particulars?” + +“Important ones; he was in India with Zaccone.” + +“Do you know his abode?” + +“It’s somewhere in the Chaussée d’Antin; but I know neither the street +nor the number.” + +30289m + + + +“Are you at variance with the Englishman?” + +“I love Zaccone, and he hates him; we are consequently not friends.” + +“Do you think the Count of Monte Cristo had ever been in France before +he made this visit to Paris?” + +“To that question I can answer positively; no, sir, he had not, because +he applied to me six months ago for the particulars he required, and as +I did not know when I might again come to Paris, I recommended M. +Cavalcanti to him.” + +“Andrea?” + +“No, Bartolomeo, his father.” + +“Now, sir, I have but one question more to ask, and I charge you, in +the name of honor, of humanity, and of religion, to answer me +candidly.” + +“What is it, sir?” + +“Do you know with what design M. de Monte Cristo purchased a house at +Auteuil?” + +“Certainly, for he told me.” + +“What is it, sir?” + +“To make a lunatic asylum of it, similar to that founded by the Count +of Pisani at Palermo. Do you know about that institution?” + +“I have heard of it.” + +“It is a magnificent charity.” Having said this, the abbé bowed to +imply he wished to pursue his studies. + +The visitor either understood the abbé’s meaning, or had no more +questions to ask; he arose, and the abbé accompanied him to the door. + +“You are a great almsgiver,” said the visitor, “and although you are +said to be rich, I will venture to offer you something for your poor +people; will you accept my offering?” + +“I thank you, sir; I am only jealous in one thing, and that is that the +relief I give should be entirely from my own resources.” + +“However——” + +“My resolution, sir, is unchangeable, but you have only to search for +yourself and you will find, alas, but too many objects upon whom to +exercise your benevolence.” + +The abbé once more bowed as he opened the door, the stranger bowed and +took his leave, and the carriage conveyed him straight to the house of +M. de Villefort. An hour afterwards the carriage was again ordered, and +this time it went to the Rue Fontaine-Saint-Georges, and stopped at No. +5, where Lord Wilmore lived. The stranger had written to Lord Wilmore, +requesting an interview, which the latter had fixed for ten o’clock. As +the envoy of the prefect of police arrived ten minutes before ten, he +was told that Lord Wilmore, who was precision and punctuality +personified, was not yet come in, but that he would be sure to return +as the clock struck. + +The visitor was introduced into the drawing-room, which was like all +other furnished drawing-rooms. A mantle-piece, with two modern Sèvres +vases, a timepiece representing Cupid with his bent bow, a mirror with +an engraving on each side—one representing Homer carrying his guide, +the other, Belisarius begging—a grayish paper; red and black +tapestry—such was the appearance of Lord Wilmore’s drawing-room. + +It was illuminated by lamps with ground-glass shades which gave only a +feeble light, as if out of consideration for the envoy’s weak sight. +After ten minutes’ expectation the clock struck ten; at the fifth +stroke the door opened and Lord Wilmore appeared. He was rather above +the middle height, with thin reddish whiskers, light complexion and +light hair, turning rather gray. He was dressed with all the English +peculiarity, namely, in a blue coat, with gilt buttons and high collar, +in the fashion of 1811, a white kerseymere waistcoat, and nankeen +pantaloons, three inches too short, but which were prevented by straps +from slipping up to the knee. His first remark on entering was: + +“You know, sir, I do not speak French?” + +“I know you do not like to converse in our language,” replied the +envoy. + +“But you may use it,” replied Lord Wilmore; “I understand it.” + +“And I,” replied the visitor, changing his idiom, “know enough of +English to keep up the conversation. Do not put yourself to the +slightest inconvenience.” + +“Aw?” said Lord Wilmore, with that tone which is only known to natives +of Great Britain. + +The envoy presented his letter of introduction, which the latter read +with English coolness, and having finished: + +“I understand,” said he, “perfectly.” + +30293m + + + +Then began the questions, which were similar to those which had been +addressed to the Abbé Busoni. But as Lord Wilmore, in the character of +the count’s enemy, was less restrained in his answers, they were more +numerous; he described the youth of Monte Cristo, who he said, at ten +years of age, entered the service of one of the petty sovereigns of +India who make war on the English. It was there Wilmore had first met +him and fought against him; and in that war Zaccone had been taken +prisoner, sent to England, and consigned to the hulks, whence he had +escaped by swimming. Then began his travels, his duels, his caprices; +then the insurrection in Greece broke out, and he had served in the +Grecian ranks. While in that service he had discovered a silver mine in +the mountains of Thessaly, but he had been careful to conceal it from +everyone. After the battle of Navarino, when the Greek government was +consolidated, he asked of King Otho a mining grant for that district, +which was given him. Hence that immense fortune, which, in Lord +Wilmore’s opinion, possibly amounted to one or two millions per +annum,—a precarious fortune, which might be momentarily lost by the +failure of the mine. + +“But,” asked the visitor, “do you know why he came to France?” + +“He is speculating in railways,” said Lord Wilmore, “and as he is an +expert chemist and physicist, he has invented a new system of +telegraphy, which he is seeking to bring to perfection.” + +“How much does he spend yearly?” asked the prefect. + +“Not more than five or six hundred thousand francs,” said Lord Wilmore; +“he is a miser.” Hatred evidently inspired the Englishman, who, knowing +no other reproach to bring on the count, accused him of avarice. + +“Do you know his house at Auteuil?” + +“Certainly.” + +“What do you know respecting it?” + +“Do you wish to know why he bought it?” + +“Yes.” + +“The count is a speculator, who will certainly ruin himself in +experiments. He supposes there is in the neighborhood of the house he +has bought a mineral spring equal to those at Bagnères, Luchon, and +Cauterets. He is going to turn his house into a _Badhaus_, as the +Germans term it. He has already dug up all the garden two or three +times to find the famous spring, and, being unsuccessful, he will soon +purchase all the contiguous houses. Now, as I dislike him, and hope his +railway, his electric telegraph, or his search for baths, will ruin +him, I am watching for his discomfiture, which must soon take place.” + +“What was the cause of your quarrel?” + +“When he was in England he seduced the wife of one of my friends.” + +“Why do you not seek revenge?” + +“I have already fought three duels with him,” said the Englishman, “the +first with the pistol, the second with the sword, and the third with +the sabre.” + +“And what was the result of those duels?” + +“The first time, he broke my arm; the second, he wounded me in the +breast; and the third time, made this large wound.” The Englishman +turned down his shirt-collar, and showed a scar, whose redness proved +it to be a recent one. “So that, you see, there is a deadly feud +between us.” + +“But,” said the envoy, “you do not go about it in the right way to kill +him, if I understand you correctly.” + +“Aw?” said the Englishman, “I practice shooting every day, and every +other day Grisier comes to my house.” + +This was all the visitor wished to ascertain, or, rather, all the +Englishman appeared to know. The agent arose, and having bowed to Lord +Wilmore, who returned his salutation with the stiff politeness of the +English, he retired. Lord Wilmore, having heard the door close after +him, returned to his bedroom, where with one hand he pulled off his +light hair, his red whiskers, his false jaw, and his wound, to resume +the black hair, dark complexion, and pearly teeth of the Count of Monte +Cristo. + +It was M. de Villefort, and not the prefect, who returned to the house +of M. de Villefort. The procureur felt more at ease, although he had +learned nothing really satisfactory, and, for the first time since the +dinner-party at Auteuil, he slept soundly. + + + + Chapter 70. The Ball + +It was in the warmest days of July, when in due course of time the +Saturday arrived upon which the ball was to take place at M. de +Morcerf’s. It was ten o’clock at night; the branches of the great trees +in the garden of the count’s house stood out boldly against the azure +canopy of heaven, which was studded with golden stars, but where the +last fleeting clouds of a vanishing storm yet lingered. + +From the apartments on the ground floor might be heard the sound of +music, with the whirl of the waltz and galop, while brilliant streams +of light shone through the openings of the Venetian blinds. At this +moment the garden was only occupied by about ten servants, who had just +received orders from their mistress to prepare the supper, the serenity +of the weather continuing to increase. Until now, it had been undecided +whether the supper should take place in the dining-room, or under a +long tent erected on the lawn, but the beautiful blue sky, studded with +stars, had settled the question in favor of the lawn. + +The gardens were illuminated with colored lanterns, according to the +Italian custom, and, as is usual in countries where the luxuries of the +table—the rarest of all luxuries in their complete form—are well +understood, the supper-table was loaded with wax-lights and flowers. + +30297m + + + +At the time the Countess of Morcerf returned to the rooms, after giving +her orders, many guests were arriving, more attracted by the charming +hospitality of the countess than by the distinguished position of the +count; for, owing to the good taste of Mercédès, one was sure of +finding some devices at her entertainment worthy of describing, or even +copying in case of need. + +Madame Danglars, in whom the events we have related had caused deep +anxiety, had hesitated about going to Madame de Morcerf’s, when during +the morning her carriage happened to meet that of Villefort. The latter +made a sign, and when the carriages had drawn close together, said: + +“You are going to Madame de Morcerf’s, are you not?” + +“No,” replied Madame Danglars, “I am too ill.” + +“You are wrong,” replied Villefort, significantly; “it is important +that you should be seen there.” + +“Do you think so?” asked the baroness. + +“I do.” + +“In that case I will go.” + +And the two carriages passed on towards their different destinations. +Madame Danglars therefore came, not only beautiful in person, but +radiant with splendor; she entered by one door at the time when +Mercédès appeared at the door. The countess took Albert to meet Madame +Danglars. He approached, paid her some well merited compliments on her +toilet, and offered his arm to conduct her to a seat. Albert looked +around him. + +“You are looking for my daughter?” said the baroness, smiling. + +“I confess it,” replied Albert. “Could you have been so cruel as not to +bring her?” + +“Calm yourself. She has met Mademoiselle de Villefort, and has taken +her arm; see, they are following us, both in white dresses, one with a +bouquet of camellias, the other with one of myosotis. But tell me——” + +“Well, what do you wish to know?” + +“Will not the Count of Monte Cristo be here tonight?” + +“Seventeen!” replied Albert. + +“What do you mean?” + +“I only mean that the count seems the rage,” replied the viscount, +smiling, “and that you are the seventeenth person that has asked me the +same question. The count is in fashion; I congratulate him upon it.” + +“And have you replied to everyone as you have to me?” + +“Ah, to be sure, I have not answered you; be satisfied, we shall have +this ‘lion’; we are among the privileged ones.” + +“Were you at the Opera yesterday?” + +“No.” + +“He was there.” + +“Ah, indeed? And did the eccentric person commit any new originality?” + +“Can he be seen without doing so? Elssler was dancing in _Le Diable +boiteux_; the Greek princess was in ecstasies. After the cachucha he +placed a magnificent ring on the stem of a bouquet, and threw it to the +charming danseuse, who, in the third act, to do honor to the gift, +reappeared with it on her finger. And the Greek princess,—will she be +here?” + +“No, you will be deprived of that pleasure; her position in the count’s +establishment is not sufficiently understood.” + +“Wait; leave me here, and go and speak to Madame de Villefort, who is +trying to attract your attention.” + +Albert bowed to Madame Danglars, and advanced towards Madame de +Villefort, whose lips opened as he approached. + +“I wager anything,” said Albert, interrupting her, “that I know what +you were about to say.” + +“Well, what is it?” + +“If I guess rightly, will you confess it?” + +“Yes.” + +“On your honor?” + +“On my honor.” + +“You were going to ask me if the Count of Monte Cristo had arrived, or +was expected.” + +“Not at all. It is not of him that I am now thinking. I was going to +ask you if you had received any news of Monsieur Franz.” + +“Yes,—yesterday.” + +“What did he tell you?” + +“That he was leaving at the same time as his letter.” + +“Well, now then, the count?” + +“The count will come, of that you may be satisfied.” + +“You know that he has another name besides Monte Cristo?” + +“No, I did not know it.” + +“Monte Cristo is the name of an island, and he has a family name.” + +“I never heard it.” + +“Well, then, I am better informed than you; his name is Zaccone.” + +“It is possible.” + +“He is a Maltese.” + +“That is also possible. + +“The son of a shipowner.” + +“Really, you should relate all this aloud, you would have the greatest +success.” + +“He served in India, discovered a mine in Thessaly, and comes to Paris +to establish a mineral water-cure at Auteuil.” + +“Well, I’m sure,” said Morcerf, “this is indeed news! Am I allowed to +repeat it?” + +“Yes, but cautiously, tell one thing at a time, and do not say I told +you.” + +“Why so?” + +“Because it is a secret just discovered.” + +“By whom?” + +“The police.” + +“Then the news originated——” + +“At the prefect’s last night. Paris, you can understand, is astonished +at the sight of such unusual splendor, and the police have made +inquiries.” + +“Well, well! Nothing more is wanting than to arrest the count as a +vagabond, on the pretext of his being too rich.” + +“Indeed, that doubtless would have happened if his credentials had not +been so favorable.” + +“Poor count! And is he aware of the danger he has been in?” + +“I think not.” + +“Then it will be but charitable to inform him. When he arrives, I will +not fail to do so.” + +Just then, a handsome young man, with bright eyes, black hair, and +glossy moustache, respectfully bowed to Madame de Villefort. Albert +extended his hand. + +“Madame,” said Albert, “allow me to present to you M. Maximilian +Morrel, captain of Spahis, one of our best, and, above all, of our +bravest officers.” + +“I have already had the pleasure of meeting this gentleman at Auteuil, +at the house of the Count of Monte Cristo,” replied Madame de +Villefort, turning away with marked coldness of manner. + +This answer, and especially the tone in which it was uttered, chilled +the heart of poor Morrel. But a recompense was in store for him; +turning around, he saw near the door a beautiful fair face, whose large +blue eyes were, without any marked expression, fixed upon him, while +the bouquet of myosotis was gently raised to her lips. + +The salutation was so well understood that Morrel, with the same +expression in his eyes, placed his handkerchief to his mouth; and these +two living statues, whose hearts beat so violently under their marble +aspect, separated from each other by the whole length of the room, +forgot themselves for a moment, or rather forgot the world in their +mutual contemplation. They might have remained much longer lost in one +another, without anyone noticing their abstraction. The Count of Monte +Cristo had just entered. + +We have already said that there was something in the count which +attracted universal attention wherever he appeared. It was not the +coat, unexceptional in its cut, though simple and unornamented; it was +not the plain white waistcoat; it was not the trousers, that displayed +the foot so perfectly formed—it was none of these things that attracted +the attention,—it was his pale complexion, his waving black hair, his +calm and serene expression, his dark and melancholy eye, his mouth, +chiselled with such marvellous delicacy, which so easily expressed such +high disdain,—these were what fixed the attention of all upon him. + +Many men might have been handsomer, but certainly there could be none +whose appearance was more _significant_, if the expression may be used. +Everything about the count seemed to have its meaning, for the constant +habit of thought which he had acquired had given an ease and vigor to +the expression of his face, and even to the most trifling gesture, +scarcely to be understood. Yet the Parisian world is so strange, that +even all this might not have won attention had there not been connected +with it a mysterious story gilded by an immense fortune. + +30301m + + + +Meanwhile he advanced through the assemblage of guests under a battery +of curious glances towards Madame de Morcerf, who, standing before a +mantle-piece ornamented with flowers, had seen his entrance in a +looking-glass placed opposite the door, and was prepared to receive +him. She turned towards him with a serene smile just at the moment he +was bowing to her. No doubt she fancied the count would speak to her, +while on his side the count thought she was about to address him; but +both remained silent, and after a mere bow, Monte Cristo directed his +steps to Albert, who received him cordially. + +“Have you seen my mother?” asked Albert. + +“I have just had the pleasure,” replied the count; “but I have not seen +your father.” + +“See, he is down there, talking politics with that little group of +great geniuses.” + +“Indeed?” said Monte Cristo; “and so those gentlemen down there are men +of great talent. I should not have guessed it. And for what kind of +talent are they celebrated? You know there are different sorts.” + +“That tall, harsh-looking man is very learned, he discovered, in the +neighborhood of Rome, a kind of lizard with a vertebra more than +lizards usually have, and he immediately laid his discovery before the +Institute. The thing was discussed for a long time, but finally decided +in his favor. I can assure you the vertebra made a great noise in the +learned world, and the gentleman, who was only a knight of the Legion +of Honor, was made an officer.” + +“Come,” said Monte Cristo, “this cross seems to me to be wisely +awarded. I suppose, had he found another additional vertebra, they +would have made him a commander.” + +“Very likely,” said Albert. + +“And who can that person be who has taken it into his head to wrap +himself up in a blue coat embroidered with green?” + +“Oh, that coat is not his own idea; it is the Republic’s, which deputed +David12 to devise a uniform for the Academicians.” + +“Indeed?” said Monte Cristo; “so this gentleman is an Academician?” + +“Within the last week he has been made one of the learned assembly.” + +“And what is his especial talent?” + +“His talent? I believe he thrusts pins through the heads of rabbits, he +makes fowls eat madder, and punches the spinal marrow out of dogs with +whalebone.” + +“And he is made a member of the Academy of Sciences for this?” + +“No; of the French Academy.” + +“But what has the French Academy to do with all this?” + +“I was going to tell you. It seems——” + +“That his experiments have very considerably advanced the cause of +science, doubtless?” + +“No; that his style of writing is very good.” + +“This must be very flattering to the feelings of the rabbits into whose +heads he has thrust pins, to the fowls whose bones he has dyed red, and +to the dogs whose spinal marrow he has punched out?” + +Albert laughed. + +“And the other one?” demanded the count. + +“That one?” + +“Yes, the third.” + +“The one in the dark blue coat?” + +“Yes.” + +“He is a colleague of the count, and one of the most active opponents +to the idea of providing the Chamber of Peers with a uniform. He was +very successful upon that question. He stood badly with the Liberal +papers, but his noble opposition to the wishes of the court is now +getting him into favor with the journalists. They talk of making him an +ambassador.” + +30303m + + + +“And what are his claims to the peerage?” + +“He has composed two or three comic operas, written four or five +articles in the _Siècle_, and voted five or six years on the +ministerial side.” + +“Bravo, viscount,” said Monte Cristo, smiling; “you are a delightful +_cicerone_. And now you will do me a favor, will you not?” + +“What is it?” + +“Do not introduce me to any of these gentlemen; and should they wish +it, you will warn me.” Just then the count felt his arm pressed. He +turned round; it was Danglars. + +“Ah! is it you, baron?” said he. + +“Why do you call me baron?” said Danglars; “you know that I care +nothing for my title. I am not like you, viscount; you like your title, +do you not?” + +“Certainly,” replied Albert, “seeing that without my title I should be +nothing; while you, sacrificing the baron, would still remain the +millionaire.” + +“Which seems to me the finest title under the royalty of July,” replied +Danglars. + +“Unfortunately,” said Monte Cristo, “one’s title to a millionaire does +not last for life, like that of baron, peer of France, or academician; +for example, the millionaires Franck & Poulmann, of Frankfurt, who have +just become bankrupts.” + +“Indeed?” said Danglars, becoming pale. + +“Yes; I received the news this evening by a courier. I had about a +million in their hands, but, warned in time, I withdrew it a month +ago.” + +“Ah, _mon Dieu!_” exclaimed Danglars, “they have drawn on me for +200,000 francs!” + +“Well, you can throw out the draft; their signature is worth five per +cent.” + +“Yes, but it is too late,” said Danglars, “I have honored their bills.” + +“Then,” said Monte Cristo, “here are 200,000 francs gone after——” + +“Hush, do not mention these things,” said Danglars; then, approaching +Monte Cristo, he added, “especially before young M. Cavalcanti;” after +which he smiled, and turned towards the young man in question. + +Albert had left the count to speak to his mother, Danglars to converse +with young Cavalcanti; Monte Cristo was for an instant alone. Meanwhile +the heat became excessive. The footmen were hastening through the rooms +with waiters loaded with ices. Monte Cristo wiped the perspiration from +his forehead, but drew back when the waiter was presented to him; he +took no refreshment. Madame de Morcerf did not lose sight of Monte +Cristo; she saw that he took nothing, and even noticed his gesture of +refusal. + +“Albert,” she asked, “did you notice that?” + +“What, mother?” + +“That the count has never been willing to partake of food under the +roof of M. de Morcerf.” + +“Yes; but then he breakfasted with me—indeed, he made his first +appearance in the world on that occasion.” + +“But your house is not M. de Morcerf’s,” murmured Mercédès; “and since +he has been here I have watched him.” + +“Well?” + +“Well, he has taken nothing yet.” + +“The count is very temperate.” + +Mercédès smiled sadly. + +“Approach him,” said she, “and when the next waiter passes, insist upon +his taking something.” + +“But why, mother?” + +“Just to please me, Albert,” said Mercédès. Albert kissed his mother’s +hand, and drew near the count. Another salver passed, loaded like the +preceding ones; she saw Albert attempt to persuade the count, but he +obstinately refused. Albert rejoined his mother; she was very pale. + +“Well,” said she, “you see he refuses?” + +“Yes; but why need this annoy you?” + +“You know, Albert, women are singular creatures. I should like to have +seen the count take something in my house, if only an ice. Perhaps he +cannot reconcile himself to the French style of living, and might +prefer something else.” + +“Oh, no; I have seen him eat of everything in Italy; no doubt he does +not feel inclined this evening.” + +“And besides,” said the countess, “accustomed as he is to burning +climates, possibly he does not feel the heat as we do.” + +“I do not think that, for he has complained of feeling almost +suffocated, and asked why the Venetian blinds were not opened as well +as the windows.” + +“In a word,” said Mercédès, “it was a way of assuring me that his +abstinence was intended.” + +And she left the room. + +A minute afterwards the blinds were thrown open, and through the +jessamine and clematis that overhung the window one could see the +garden ornamented with lanterns, and the supper laid under the tent. +Dancers, players, talkers, all uttered an exclamation of joy—everyone +inhaled with delight the breeze that floated in. At the same time +Mercédès reappeared, paler than before, but with that imperturbable +expression of countenance which she sometimes wore. She went straight +to the group of which her husband formed the centre. + +“Do not detain those gentlemen here, count,” she said; “they would +prefer, I should think, to breathe in the garden rather than suffocate +here, since they are not playing.” + +“Ah,” said a gallant old general, who, in 1809, had sung _Partant pour +la Syrie_,—“we will not go alone to the garden.” + +“Then,” said Mercédès, “I will lead the way.” + +Turning towards Monte Cristo, she added, “count, will you oblige me +with your arm?” + +The count almost staggered at these simple words; then he fixed his +eyes on Mercédès. It was only a momentary glance, but it seemed to the +countess to have lasted for a century, so much was expressed in that +one look. He offered his arm to the countess; she took it, or rather +just touched it with her little hand, and they together descended the +steps, lined with rhododendrons and camellias. Behind them, by another +outlet, a group of about twenty persons rushed into the garden with +loud exclamations of delight. + + + + Chapter 71. Bread and Salt + +Madame de Morcerf entered an archway of trees with her companion. It +led through a grove of lindens to a conservatory. + +“It was too warm in the room, was it not, count?” she asked. + +“Yes, madame; and it was an excellent idea of yours to open the doors +and the blinds.” As he ceased speaking, the count felt the hand of +Mercédès tremble. “But you,” he said, “with that light dress, and +without anything to cover you but that gauze scarf, perhaps you feel +cold?” + +“Do you know where I am leading you?” said the countess, without +replying to the question. + +“No, madame,” replied Monte Cristo; “but you see I make no resistance.” + +“We are going to the greenhouse that you see at the other end of the +grove.” + +The count looked at Mercédès as if to interrogate her, but she +continued to walk on in silence, and he refrained from speaking. They +reached the building, ornamented with magnificent fruits, which ripen +at the beginning of July in the artificial temperature which takes the +place of the sun, so frequently absent in our climate. The countess +left the arm of Monte Cristo, and gathered a bunch of Muscatel grapes. + +“See, count,” she said, with a smile so sad in its expression that one +could almost detect the tears on her eyelids—“see, our French grapes +are not to be compared, I know, with yours of Sicily and Cyprus, but +you will make allowance for our northern sun.” The count bowed, but +stepped back. + +“Do you refuse?” said Mercédès, in a tremulous voice. + +“Pray excuse me, madame,” replied Monte Cristo, “but I never eat +Muscatel grapes.” + +Mercédès let them fall, and sighed. A magnificent peach was hanging +against an adjoining wall, ripened by the same artificial heat. +Mercédès drew near, and plucked the fruit. + +“Take this peach, then,” she said. The count again refused. “What, +again?” she exclaimed, in so plaintive an accent that it seemed to +stifle a sob; “really, you pain me.” + +A long silence followed; the peach, like the grapes, fell to the +ground. + +“Count,” added Mercédès with a supplicating glance, “there is a +beautiful Arabian custom, which makes eternal friends of those who have +together eaten bread and salt under the same roof.” + +“I know it, madame,” replied the count; “but we are in France, and not +in Arabia, and in France eternal friendships are as rare as the custom +of dividing bread and salt with one another.” + +“But,” said the countess, breathlessly, with her eyes fixed on Monte +Cristo, whose arm she convulsively pressed with both hands, “we are +friends, are we not?” + +The count became pale as death, the blood rushed to his heart, and then +again rising, dyed his cheeks with crimson; his eyes swam like those of +a man suddenly dazzled. + +“Certainly, we are friends,” he replied; “why should we not be?” + +The answer was so little like the one Mercédès desired, that she turned +away to give vent to a sigh, which sounded more like a groan. “Thank +you,” she said. And they walked on again. They went the whole length of +the garden without uttering a word. + +“Sir,” suddenly exclaimed the countess, after their walk had continued +ten minutes in silence, “is it true that you have seen so much, +travelled so far, and suffered so deeply?” + +“I have suffered deeply, madame,” answered Monte Cristo. + +“But now you are happy?” + +“Doubtless,” replied the count, “since no one hears me complain.” + +“And your present happiness, has it softened your heart?” + +“My present happiness equals my past misery,” said the count. + +“Are you not married?” asked the countess. + +“I, married?” exclaimed Monte Cristo, shuddering; “who could have told +you so?” + +“No one told me you were, but you have frequently been seen at the +Opera with a young and lovely woman.” + +“She is a slave whom I bought at Constantinople, madame, the daughter +of a prince. I have adopted her as my daughter, having no one else to +love in the world.” + +“You live alone, then?” + +“I do.” + +“You have no sister—no son—no father?” + +“I have no one.” + +“How can you exist thus without anyone to attach you to life?” + +“It is not my fault, madame. At Malta, I loved a young girl, was on the +point of marrying her, when war came and carried me away. I thought she +loved me well enough to wait for me, and even to remain faithful to my +memory. When I returned she was married. This is the history of most +men who have passed twenty years of age. Perhaps my heart was weaker +than the hearts of most men, and I suffered more than they would have +done in my place; that is all.” + +The countess stopped for a moment, as if gasping for breath. “Yes,” she +said, “and you have still preserved this love in your heart—one can +only love once—and did you ever see her again?” + +30309m + + + +“Never.” + +“Never?” + +“I never returned to the country where she lived.” + +“To Malta?” + +“Yes; Malta.” + +“She is, then, now at Malta?” + +“I think so.” + +“And have you forgiven her for all she has made you suffer?” + +“Her,—yes.” + +“But only her; do you then still hate those who separated you?” + +“I hate them? Not at all; why should I?” The countess placed herself +before Monte Cristo, still holding in her hand a portion of the +perfumed grapes. + +“Take some,” she said. + +“Madame, I never eat Muscatel grapes,” replied Monte Cristo, as if the +subject had not been mentioned before. The countess dashed the grapes +into the nearest thicket, with a gesture of despair. + +“Inflexible man!” she murmured. Monte Cristo remained as unmoved as if +the reproach had not been addressed to him. + +Albert at this moment ran in. “Oh, mother,” he exclaimed, “such a +misfortune has happened!” + +“What? What has happened?” asked the countess, as though awakening from +a sleep to the realities of life; “did you say a misfortune? Indeed, I +should expect misfortunes.” + +“M. de Villefort is here.” + +“Well?” + +“He comes to fetch his wife and daughter.” + +“Why so?” + +“Because Madame de Saint-Méran is just arrived in Paris, bringing the +news of M. de Saint-Méran’s death, which took place on the first stage +after he left Marseilles. Madame de Villefort, who was in very good +spirits, would neither believe nor think of the misfortune, but +Mademoiselle Valentine, at the first words, guessed the whole truth, +notwithstanding all the precautions of her father; the blow struck her +like a thunderbolt, and she fell senseless.” + +“And how was M. de Saint-Méran related to Mademoiselle de Villefort?” +said the count. + +“He was her grandfather on the mother’s side. He was coming here to +hasten her marriage with Franz.” + +“Ah, indeed!” + +“So Franz must wait. Why was not M. de Saint-Méran also grandfather to +Mademoiselle Danglars?” + +“Albert, Albert,” said Madame de Morcerf, in a tone of mild reproof, +“what are you saying? Ah, count, he esteems you so highly, tell him +that he has spoken amiss.” + +And she took two or three steps forward. Monte Cristo watched her with +an air so thoughtful, and so full of affectionate admiration, that she +turned back and grasped his hand; at the same time she seized that of +her son, and joined them together. + +“We are friends; are we not?” she asked. + +“Oh, madame, I do not presume to call myself your friend, but at all +times I am your most respectful servant.” The countess left with an +indescribable pang in her heart, and before she had taken ten steps the +count saw her raise her handkerchief to her eyes. + +“Do not my mother and you agree?” asked Albert, astonished. + +“On the contrary,” replied the count, “did you not hear her declare +that we were friends?” + +They re-entered the drawing-room, which Valentine and Madame de +Villefort had just quitted. It is perhaps needless to add that Morrel +departed almost at the same time. + + + + Chapter 72. Madame de Saint-Méran + +A gloomy scene had indeed just passed at the house of M. de Villefort. +After the ladies had departed for the ball, whither all the entreaties +of Madame de Villefort had failed in persuading him to accompany them, +the procureur had shut himself up in his study, according to his +custom, with a heap of papers calculated to alarm anyone else, but +which generally scarcely satisfied his inordinate desires. + +But this time the papers were a mere matter of form. Villefort had +secluded himself, not to study, but to reflect; and with the door +locked and orders given that he should not be disturbed excepting for +important business, he sat down in his armchair and began to ponder +over the events, the remembrance of which had during the last eight +days filled his mind with so many gloomy thoughts and bitter +recollections. + +Then, instead of plunging into the mass of documents piled before him, +he opened the drawer of his desk, touched a spring, and drew out a +parcel of cherished memoranda, amongst which he had carefully arranged, +in characters only known to himself, the names of all those who, either +in his political career, in money matters, at the bar, or in his +mysterious love affairs, had become his enemies. + +Their number was formidable, now that he had begun to fear, and yet +these names, powerful though they were, had often caused him to smile +with the same kind of satisfaction experienced by a traveller who from +the summit of a mountain beholds at his feet the craggy eminences, the +almost impassable paths, and the fearful chasms, through which he has +so perilously climbed. When he had run over all these names in his +memory, again read and studied them, commenting meanwhile upon his +lists, he shook his head. + +“No,” he murmured, “none of my enemies would have waited so patiently +and laboriously for so long a space of time, that they might now come +and crush me with this secret. Sometimes, as Hamlet says: + +‘Foul deeds will rise, + +Though all the earth o’erwhelm them, to men’s eyes;’ + + +but, like a phosphoric light, they rise but to mislead. The story has +been told by the Corsican to some priest, who in his turn has repeated +it. M. de Monte Cristo may have heard it, and to enlighten himself—— + +“But why should he wish to enlighten himself upon the subject?” asked +Villefort, after a moment’s reflection, “what interest can this M. de +Monte Cristo or M. Zaccone,—son of a shipowner of Malta, discoverer of +a mine in Thessaly, now visiting Paris for the first time,—what +interest, I say, can he take in discovering a gloomy, mysterious, and +useless fact like this? However, among all the incoherent details given +to me by the Abbé Busoni and by Lord Wilmore, by that friend and that +enemy, one thing appears certain and clear in my opinion—that in no +period, in no case, in no circumstance, could there have been any +contact between him and me.” + +But Villefort uttered words which even he himself did not believe. He +dreaded not so much the revelation, for he could reply to or deny its +truth;—he cared little for that _mene, mene, tekel upharsin_, which +appeared suddenly in letters of blood upon the wall;—but what he was +really anxious for was to discover whose hand had traced them. While he +was endeavoring to calm his fears,—and instead of dwelling upon the +political future that had so often been the subject of his ambitious +dreams, was imagining a future limited to the enjoyments of home, in +fear of awakening the enemy that had so long slept,—the noise of a +carriage sounded in the yard, then he heard the steps of an aged person +ascending the stairs, followed by tears and lamentations, such as +servants always give vent to when they wish to appear interested in +their master’s grief. + +He drew back the bolt of his door, and almost directly an old lady +entered, unannounced, carrying her shawl on her arm, and her bonnet in +her hand. The white hair was thrown back from her yellow forehead, and +her eyes, already sunken by the furrows of age, now almost disappeared +beneath the eyelids swollen with grief. + +“Oh, sir,” she said; “oh, sir, what a misfortune! I shall die of it; +oh, yes, I shall certainly die of it!” + +And then, falling upon the chair nearest the door, she burst into a +paroxysm of sobs. The servants, standing in the doorway, not daring to +approach nearer, were looking at Noirtier’s old servant, who had heard +the noise from his master’s room, and run there also, remaining behind +the others. Villefort rose, and ran towards his mother-in-law, for it +was she. + +“Why, what can have happened?” he exclaimed, “what has thus disturbed +you? Is M. de Saint-Méran with you?” + +“M. de Saint-Méran is dead,” answered the old marchioness, without +preface and without expression; she appeared to be stupefied. Villefort +drew back, and clasping his hands together, exclaimed: + +“Dead!—so suddenly?” + +“A week ago,” continued Madame de Saint-Méran, “we went out together in +the carriage after dinner. M. de Saint-Méran had been unwell for some +days; still, the idea of seeing our dear Valentine again inspired him +with courage, and notwithstanding his illness he would leave. At six +leagues from Marseilles, after having eaten some of the lozenges he is +accustomed to take, he fell into such a deep sleep, that it appeared to +me unnatural; still I hesitated to wake him, although I fancied that +his face was flushed, and that the veins of his temples throbbed more +violently than usual. However, as it became dark, and I could no longer +see, I fell asleep; I was soon aroused by a piercing shriek, as from a +person suffering in his dreams, and he suddenly threw his head back +violently. I called the valet, I stopped the postilion, I spoke to M. +de Saint-Méran, I applied my smelling-salts; but all was over, and I +arrived at Aix by the side of a corpse.” + +Villefort stood with his mouth half open, quite stupefied. + +“Of course you sent for a doctor?” + +“Immediately; but, as I have told you, it was too late.” + +“Yes; but then he could tell of what complaint the poor marquis had +died.” + +“Oh, yes, sir, he told me; it appears to have been an apoplectic +stroke.” + +“And what did you do then?” + +“M. de Saint-Méran had always expressed a desire, in case his death +happened during his absence from Paris, that his body might be brought +to the family vault. I had him put into a leaden coffin, and I am +preceding him by a few days.” + +“Oh! my poor mother!” said Villefort, “to have such duties to perform +at your age after such a blow!” + +“God has supported me through all; and then, my dear marquis, he would +certainly have done everything for me that I performed for him. It is +true that since I left him, I seem to have lost my senses. I cannot +cry; at my age they say that we have no more tears,—still I think that +when one is in trouble one should have the power of weeping. Where is +Valentine, sir? It is on her account I am here; I wish to see +Valentine.” + +30315m + + + +Villefort thought it would be terrible to reply that Valentine was at a +ball; so he only said that she had gone out with her step-mother, and +that she should be fetched. “This instant, sir—this instant, I beseech +you!” said the old lady. Villefort placed the arm of Madame de +Saint-Méran within his own, and conducted her to his apartment. + +“Rest yourself, mother,” he said. + +The marchioness raised her head at this word, and beholding the man who +so forcibly reminded her of her deeply-regretted child, who still lived +for her in Valentine, she felt touched at the name of mother, and +bursting into tears, she fell on her knees before an armchair, where +she buried her venerable head. Villefort left her to the care of the +women, while old Barrois ran, half-scared, to his master; for nothing +frightens old people so much as when death relaxes its vigilance over +them for a moment in order to strike some other old person. Then, while +Madame de Saint-Méran remained on her knees, praying fervently, +Villefort sent for a cab, and went himself to fetch his wife and +daughter from Madame de Morcerf’s. He was so pale when he appeared at +the door of the ball-room, that Valentine ran to him, saying: + +“Oh, father, some misfortune has happened!” + +“Your grandmamma has just arrived, Valentine,” said M. de Villefort. + +“And grandpapa?” inquired the young girl, trembling with apprehension. +M. de Villefort only replied by offering his arm to his daughter. It +was just in time, for Valentine’s head swam, and she staggered; Madame +de Villefort instantly hastened to her assistance, and aided her +husband in dragging her to the carriage, saying: + +“What a singular event! Who could have thought it? Ah, yes, it is +indeed strange!” + +And the wretched family departed, leaving a cloud of sadness hanging +over the rest of the evening. At the foot of the stairs, Valentine +found Barrois awaiting her. + +“M. Noirtier wishes to see you tonight, he said, in an undertone. + +“Tell him I will come when I leave my dear grandmamma,” she replied, +feeling, with true delicacy, that the person to whom she could be of +the most service just then was Madame de Saint-Méran. + +Valentine found her grandmother in bed; silent caresses, heartwrung +sobs, broken sighs, burning tears, were all that passed in this sad +interview, while Madame de Villefort, leaning on her husband’s arm, +maintained all outward forms of respect, at least towards the poor +widow. She soon whispered to her husband: + +“I think it would be better for me to retire, with your permission, for +the sight of me appears still to afflict your mother-in-law.” Madame de +Saint-Méran heard her. + +“Yes, yes,” she said softly to Valentine, “let her leave; but do you +stay.” + +Madame de Villefort left, and Valentine remained alone beside the bed, +for the procureur, overcome with astonishment at the unexpected death, +had followed his wife. Meanwhile, Barrois had returned for the first +time to old Noirtier, who having heard the noise in the house, had, as +we have said, sent his old servant to inquire the cause; on his return, +his quick intelligent eye interrogated the messenger. + +“Alas, sir,” exclaimed Barrois, “a great misfortune has happened. +Madame de Saint-Méran has arrived, and her husband is dead!” + +M. de Saint-Méran and Noirtier had never been on strict terms of +friendship; still, the death of one old man always considerably affects +another. Noirtier let his head fall upon his chest, apparently +overwhelmed and thoughtful; then he closed one eye, in token of +inquiry. + +Barrois asked, “Mademoiselle Valentine?” + +Noirtier nodded his head. + +“She is at the ball, as you know, since she came to say good-bye to you +in full dress.” Noirtier again closed his left eye. + +“Do you wish to see her?” Noirtier again made an affirmative sign. + +“Well, they have gone to fetch her, no doubt, from Madame de Morcerf’s; +I will await her return, and beg her to come up here. Is that what you +wish for?” + +“Yes,” replied the invalid. + +Barrois, therefore, as we have seen, watched for Valentine, and +informed her of her grandfather’s wish. Consequently, Valentine came up +to Noirtier, on leaving Madame de Saint-Méran, who in the midst of her +grief had at last yielded to fatigue and fallen into a feverish sleep. +Within reach of her hand they placed a small table upon which stood a +bottle of orangeade, her usual beverage, and a glass. Then, as we have +said, the young girl left the bedside to see M. Noirtier. + +Valentine kissed the old man, who looked at her with such tenderness +that her eyes again filled with tears, whose sources he thought must be +exhausted. The old gentleman continued to dwell upon her with the same +expression. + +“Yes, yes,” said Valentine, “you mean that I have yet a kind +grandfather left, do you not.” The old man intimated that such was his +meaning. “Ah, yes, happily I have,” replied Valentine. “Without that, +what would become of me?” + +It was one o’clock in the morning. Barrois, who wished to go to bed +himself, observed that after such sad events everyone stood in need of +rest. Noirtier would not say that the only rest he needed was to see +his child, but wished her good-night, for grief and fatigue had made +her appear quite ill. + +The next morning she found her grandmother in bed; the fever had not +abated, on the contrary her eyes glistened and she appeared to be +suffering from violent nervous irritability. + +“Oh, dear grandmamma, are you worse?” exclaimed Valentine, perceiving +all these signs of agitation. + +“No, my child, no,” said Madame de Saint-Méran; “but I was impatiently +waiting for your arrival, that I might send for your father.” + +“My father?” inquired Valentine, uneasily. + +“Yes, I wish to speak to him.” + +Valentine durst not oppose her grandmother’s wish, the cause of which +she did not know, and an instant afterwards Villefort entered. + +“Sir,” said Madame de Saint-Méran, without using any circumlocution, +and as if fearing she had no time to lose, “you wrote to me concerning +the marriage of this child?” + +“Yes, madame,” replied Villefort, “it is not only projected but +arranged.” + +“Your intended son-in-law is named M. Franz d’Épinay?” + +“Yes, madame.” + +“Is he not the son of General d’Épinay who was on our side, and who was +assassinated some days before the usurper returned from the Island of +Elba?” + +“The same.” + +“Does he not dislike the idea of marrying the granddaughter of a +Jacobin?” + +“Our civil dissensions are now happily extinguished, mother,” said +Villefort; “M. d’Épinay was quite a child when his father died, he +knows very little of M. Noirtier, and will meet him, if not with +pleasure, at least with indifference.” + +“Is it a suitable match?” + +“In every respect.” + +“And the young man?” + +“Is regarded with universal esteem.” + +“You approve of him?” + +“He is one of the most well-bred young men I know.” + +During the whole of this conversation Valentine had remained silent. + +“Well, sir,” said Madame de Saint-Méran, after a few minutes’ +reflection, “I must hasten the marriage, for I have but a short time to +live.” + +“You, madame?” “You, dear mamma?” exclaimed M. de Villefort and +Valentine at the same time. + +“I know what I am saying,” continued the marchioness; “I must hurry +you, so that, as she has no mother, she may at least have a grandmother +to bless her marriage. I am all that is left to her belonging to my +poor Renée, whom you have so soon forgotten, sir.” + +“Ah, madame,” said Villefort, “you forget that I was obliged to give a +mother to my child.” + +“A stepmother is never a mother, sir. But this is not to the +purpose,—our business concerns Valentine, let us leave the dead in +peace.” + +All this was said with such exceeding rapidity, that there was +something in the conversation that seemed like the beginning of +delirium. + +“It shall be as you wish, madame,” said Villefort; “more especially +since your wishes coincide with mine, and as soon as M. d’Épinay +arrives in Paris——” + +30319m + + + +“My dear grandmother,” interrupted Valentine, “consider decorum—the +recent death. You would not have me marry under such sad auspices?” + +“My child,” exclaimed the old lady sharply, “let us hear none of the +conventional objections that deter weak minds from preparing for the +future. I also was married at the death-bed of my mother, and certainly +I have not been less happy on that account.” + +“Still that idea of death, madame,” said Villefort. + +“Still?—Always! I tell you I am going to die—do you understand? Well, +before dying, I wish to see my son-in-law. I wish to tell him to make +my child happy; I wish to read in his eyes whether he intends to obey +me;—in fact, I will know him—I will!” continued the old lady, with a +fearful expression, “that I may rise from the depths of my grave to +find him, if he should not fulfil his duty!” + +“Madame,” said Villefort, “you must lay aside these exalted ideas, +which almost assume the appearance of madness. The dead, once buried in +their graves, rise no more.” + +“And I tell you, sir, that you are mistaken. This night I have had a +fearful sleep. It seemed as though my soul were already hovering over +my body, my eyes, which I tried to open, closed against my will, and +what will appear impossible above all to you, sir, I saw, with my eyes +shut, in the spot where you are now standing, issuing from that corner +where there is a door leading into Madame Villefort’s dressing-room—I +saw, I tell you, silently enter, a white figure.” + +Valentine screamed. + +“It was the fever that disturbed you, madame,” said Villefort. + +30321m + + + +“Doubt, if you please, but I am sure of what I say. I saw a white +figure, and as if to prevent my discrediting the testimony of only one +of my senses, I heard my glass removed—the same which is there now on +the table.” + +“Oh, dear mother, it was a dream.” + +“So little was it a dream, that I stretched my hand towards the bell; +but when I did so, the shade disappeared; my maid then entered with a +light.” + +“But she saw no one?” + +“Phantoms are visible to those only who ought to see them. It was the +soul of my husband!—Well, if my husband’s soul can come to me, why +should not my soul reappear to guard my granddaughter? the tie is even +more direct, it seems to me.” + +“Oh, madame,” said Villefort, deeply affected, in spite of himself, “do +not yield to those gloomy thoughts; you will long live with us, happy, +loved, and honored, and we will make you forget——” + +“Never, never, never,” said the marchioness. “When does M. d’Épinay +return?” + +“We expect him every moment.” + +“It is well. As soon as he arrives inform me. We must be expeditious. +And then I also wish to see a notary, that I may be assured that all +our property returns to Valentine.” + +“Ah, grandmamma,” murmured Valentine, pressing her lips on the burning +brow, “do you wish to kill me? Oh, how feverish you are; we must not +send for a notary, but for a doctor!” + +“A doctor?” said she, shrugging her shoulders, “I am not ill; I am +thirsty—that is all.” + +30323m + + + +“What are you drinking, dear grandmamma?” + +“The same as usual, my dear, my glass is there on the table—give it to +me, Valentine.” Valentine poured the orangeade into a glass and gave it +to her grandmother with a certain degree of dread, for it was the same +glass she fancied that had been touched by the spectre. + +The marchioness drained the glass at a single draught, and then turned +on her pillow, repeating, + +“The notary, the notary!” + +M. de Villefort left the room, and Valentine seated herself at the +bedside of her grandmother. The poor child appeared herself to require +the doctor she had recommended to her aged relative. A bright spot +burned in either cheek, her respiration was short and difficult, and +her pulse beat with feverish excitement. She was thinking of the +despair of Maximilian, when he should be informed that Madame de +Saint-Méran, instead of being an ally, was unconsciously acting as his +enemy. + +More than once she thought of revealing all to her grandmother, and she +would not have hesitated a moment, if Maximilian Morrel had been named +Albert de Morcerf or Raoul de Château-Renaud; but Morrel was of +plebeian extraction, and Valentine knew how the haughty Marquise de +Saint-Méran despised all who were not noble. Her secret had each time +been repressed when she was about to reveal it, by the sad conviction +that it would be useless to do so; for, were it once discovered by her +father and mother, all would be lost. + +Two hours passed thus; Madame de Saint-Méran was in a feverish sleep, +and the notary had arrived. Though his coming was announced in a very +low tone, Madame de Saint-Méran arose from her pillow. + +“The notary!” she exclaimed, “let him come in.” + +The notary, who was at the door, immediately entered. “Go, Valentine,” +said Madame de Saint-Méran, “and leave me with this gentleman.” + +“But, grandmamma——” + +“Leave me—go!” + +The young girl kissed her grandmother, and left with her handkerchief +to her eyes; at the door she found the valet de chambre, who told her +that the doctor was waiting in the dining-room. Valentine instantly ran +down. The doctor was a friend of the family, and at the same time one +of the cleverest men of the day, and very fond of Valentine, whose +birth he had witnessed. He had himself a daughter about her age, but +whose life was one continued source of anxiety and fear to him from her +mother having been consumptive. + +“Oh,” said Valentine, “we have been waiting for you with such +impatience, dear M. d’Avrigny. But, first of all, how are Madeleine and +Antoinette?” + +Madeleine was the daughter of M. d’Avrigny, and Antoinette his niece. +M. d’Avrigny smiled sadly. + +“Antoinette is very well,” he said, “and Madeleine tolerably so. But +you sent for me, my dear child. It is not your father or Madame de +Villefort who is ill. As for you, although we doctors cannot divest our +patients of nerves, I fancy you have no further need of me than to +recommend you not to allow your imagination to take too wide a field.” + +Valentine colored. M. d’Avrigny carried the science of divination +almost to a miraculous extent, for he was one of the physicians who +always work upon the body through the mind. + +30325m + + + +“No,” she replied, “it is for my poor grandmother. You know the +calamity that has happened to us, do you not?” + +“I know nothing.” said M. d’Avrigny. + +“Alas,” said Valentine, restraining her tears, “my grandfather is +dead.” + +“M. de Saint-Méran?” + +“Yes.” + +“Suddenly?” + +“From an apoplectic stroke.” + +“An apoplectic stroke?” repeated the doctor. + +“Yes, and my poor grandmother fancies that her husband, whom she never +left, has called her, and that she must go and join him. Oh, M. +d’Avrigny, I beseech you, do something for her!” + +“Where is she?” + +“In her room with the notary.” + +“And M. Noirtier?” + +“Just as he was, his mind perfectly clear, but the same incapability of +moving or speaking.” + +“And the same love for you—eh, my dear child?” + +“Yes,” said Valentine, “he was very fond of me.” + +“Who does not love you?” Valentine smiled sadly. “What are your +grandmother’s symptoms?” + +“An extreme nervous excitement and a strangely agitated sleep; she +fancied this morning in her sleep that her soul was hovering above her +body, which she at the same time watched. It must have been delirium; +she fancies, too, that she saw a phantom enter her chamber and even +heard the noise it made on touching her glass.” + +“It is singular,” said the doctor; “I was not aware that Madame de +Saint-Méran was subject to such hallucinations.” + +“It is the first time I ever saw her in this condition,” said +Valentine; “and this morning she frightened me so that I thought her +mad; and my father, who you know is a strong-minded man, himself +appeared deeply impressed.” + +“We will go and see,” said the doctor; “what you tell me seems very +strange.” The notary here descended, and Valentine was informed that +her grandmother was alone. + +“Go upstairs,” she said to the doctor. + +“And you?” + +“Oh, I dare not—she forbade my sending for you; and, as you say, I am +myself agitated, feverish and out of sorts. I will go and take a turn +in the garden to recover myself.” + +The doctor pressed Valentine’s hand, and while he visited her +grandmother, she descended the steps. We need not say which portion of +the garden was her favorite walk. After remaining for a short time in +the parterre surrounding the house, and gathering a rose to place in +her waist or hair, she turned into the dark avenue which led to the +bench; then from the bench she went to the gate. As usual, Valentine +strolled for a short time among her flowers, but without gathering +them. The mourning in her heart forbade her assuming this simple +ornament, though she had not yet had time to put on the outward +semblance of woe. + +30327m + + + +She then turned towards the avenue. As she advanced she fancied she +heard a voice speaking her name. She stopped astonished, then the voice +reached her ear more distinctly, and she recognized it to be that of +Maximilian. + + + + Chapter 73. The Promise + +It was indeed Maximilian Morrel, who had passed a wretched existence +since the previous day. With the instinct peculiar to lovers he had +anticipated after the return of Madame de Saint-Méran and the death of +the marquis, that something would occur at M. de Villefort’s in +connection with his attachment for Valentine. His presentiments were +realized, as we shall see, and his uneasy forebodings had goaded him +pale and trembling to the gate under the chestnut-trees. + +Valentine was ignorant of the cause of this sorrow and anxiety, and as +it was not his accustomed hour for visiting her, she had gone to the +spot simply by accident or perhaps through sympathy. Morrel called her, +and she ran to the gate. + +“You here at this hour?” said she. + +“Yes, my poor girl,” replied Morrel; “I come to bring and to hear bad +tidings.” + +“This is, indeed, a house of mourning,” said Valentine; “speak, +Maximilian, although the cup of sorrow seems already full.” + +“Dear Valentine,” said Morrel, endeavoring to conceal his own emotion, +“listen, I entreat you; what I am about to say is very serious. When +are you to be married?” + +“I will tell you all,” said Valentine; “from you I have nothing to +conceal. This morning the subject was introduced, and my dear +grandmother, on whom I depended as my only support, not only declared +herself favorable to it, but is so anxious for it, that they only await +the arrival of M. d’Épinay, and the following day the contract will be +signed.” + +A deep sigh escaped the young man, who gazed long and mournfully at her +he loved. + +“Alas,” replied he, “it is dreadful thus to hear my condemnation from +your own lips. The sentence is passed, and, in a few hours, will be +executed; it must be so, and I will not endeavor to prevent it. But, +since you say nothing remains but for M. d’Épinay to arrive that the +contract may be signed, and the following day you will be his, tomorrow +you will be engaged to M. d’Épinay, for he came this morning to Paris.” +Valentine uttered a cry. + +“I was at the house of Monte Cristo an hour since,” said Morrel; “we +were speaking, he of the sorrow your family had experienced, and I of +your grief, when a carriage rolled into the courtyard. Never, till +then, had I placed any confidence in presentiments, but now I cannot +help believing them, Valentine. At the sound of that carriage I +shuddered; soon I heard steps on the staircase, which terrified me as +much as the footsteps of the commander did Don Juan. The door at last +opened; Albert de Morcerf entered first, and I began to hope my fears +were vain, when, after him, another young man advanced, and the count +exclaimed: ‘Ah, here is the Baron Franz d’Épinay!’ I summoned all my +strength and courage to my support. Perhaps I turned pale and trembled, +but certainly I smiled; and five minutes after I left, without having +heard one word that had passed.” + +“Poor Maximilian!” murmured Valentine. + +“Valentine, the time has arrived when you must answer me. And remember +my life depends on your answer. What do you intend doing?” Valentine +held down her head; she was overwhelmed. + +“Listen,” said Morrel; “it is not the first time you have contemplated +our present position, which is a serious and urgent one; I do not think +it is a moment to give way to useless sorrow; leave that for those who +like to suffer at their leisure and indulge their grief in secret. +There are such in the world, and God will doubtless reward them in +heaven for their resignation on earth, but those who mean to contend +must not lose one precious moment, but must return immediately the blow +which fortune strikes. Do you intend to struggle against our +ill-fortune? Tell me, Valentine for it is that I came to know.” + +Valentine trembled, and looked at him with amazement. The idea of +resisting her father, her grandmother, and all the family, had never +occurred to her. + +“What do you say, Maximilian?” asked Valentine. “What do you mean by a +struggle? Oh, it would be a sacrilege. What? I resist my father’s +order, and my dying grandmother’s wish? Impossible!” + +Morrel started. + +“You are too noble not to understand me, and you understand me so well +that you already yield, dear Maximilian. No, no; I shall need all my +strength to struggle with myself and support my grief in secret, as you +say. But to grieve my father—to disturb my grandmother’s last +moments—never!” + +“You are right,” said Morrel, calmly. + +“In what a tone you speak!” cried Valentine. + +“I speak as one who admires you, mademoiselle.” + +“Mademoiselle,” cried Valentine; “mademoiselle! Oh, selfish man! he +sees me in despair, and pretends he cannot understand me!” + +“You mistake—I understand you perfectly. You will not oppose M. +Villefort, you will not displease the marchioness, and tomorrow you +will sign the contract which will bind you to your husband.” + +“But, _mon Dieu!_ tell me, how can I do otherwise?” + +“Do not appeal to me, mademoiselle; I shall be a bad judge in such a +case; my selfishness will blind me,” replied Morrel, whose low voice +and clenched hands announced his growing desperation. + +“What would you have proposed, Maximilian, had you found me willing to +accede?” + +“It is not for me to say.” + +“You are wrong; you must advise me what to do.” + +“Do you seriously ask my advice, Valentine?” + +“Certainly, dear Maximilian, for if it is good, I will follow it; you +know my devotion to you.” + +“Valentine,” said Morrel pushing aside a loose plank, “give me your +hand in token of forgiveness of my anger; my senses are confused, and +during the last hour the most extravagant thoughts have passed through +my brain. Oh, if you refuse my advice——” + +“What do you advise?” said Valentine, raising her eyes to heaven and +sighing. + +“I am free,” replied Maximilian, “and rich enough to support you. I +swear to make you my lawful wife before my lips even shall have +approached your forehead.” + +“You make me tremble!” said the young girl. + +“Follow me,” said Morrel; “I will take you to my sister, who is worthy +also to be yours. We will embark for Algiers, for England, for America, +or, if you prefer it, retire to the country and only return to Paris +when our friends have reconciled your family.” + +Valentine shook her head. + +“I feared it, Maximilian,” said she; “it is the counsel of a madman, +and I should be more mad than you, did I not stop you at once with the +word ‘Impossible, Morrel, impossible!’” + +“You will then submit to what fate decrees for you without even +attempting to contend with it?” said Morrel sorrowfully. + +“Yes,—if I die!” + +“Well, Valentine,” resumed Maximilian, “I can only say again that you +are right. Truly, it is I who am mad, and you prove to me that passion +blinds the most well-meaning. I appreciate your calm reasoning. It is +then understood that tomorrow you will be irrevocably promised to M. +Franz d’Épinay, not only by that theatrical formality invented to +heighten the effect of a comedy called the signature of the contract, +but your own will?” + +“Again you drive me to despair, Maximilian,” said Valentine, “again you +plunge the dagger into the wound! What would you do, tell me, if your +sister listened to such a proposition?” + +“Mademoiselle,” replied Morrel with a bitter smile, “I am selfish—you +have already said so—and as a selfish man I think not of what others +would do in my situation, but of what I intend doing myself. I think +only that I have known you not a whole year. From the day I first saw +you, all my hopes of happiness have been in securing your affection. +One day you acknowledged that you loved me, and since that day my hope +of future happiness has rested on obtaining you, for to gain you would +be life to me. Now, I think no more; I say only that fortune has turned +against me—I had thought to gain heaven, and now I have lost it. It is +an every-day occurrence for a gambler to lose not only what he +possesses but also what he has not.” + +Morrel pronounced these words with perfect calmness; Valentine looked +at him a moment with her large, scrutinizing eyes, endeavoring not to +let Morrel discover the grief which struggled in her heart. + +“But, in a word, what are you going to do?” asked she. + +“I am going to have the honor of taking my leave of you, mademoiselle, +solemnly assuring you that I wish your life may be so calm, so happy, +and so fully occupied, that there may be no place for me even in your +memory.” + +“Oh!” murmured Valentine. + +“Adieu, Valentine, adieu!” said Morrel, bowing. + +“Where are you going?” cried the young girl, extending her hand through +the opening, and seizing Maximilian by his coat, for she understood +from her own agitated feelings that her lover’s calmness could not be +real; “where are you going?” + +“I am going, that I may not bring fresh trouble into your family: and +to set an example which every honest and devoted man, situated as I am, +may follow.” + +“Before you leave me, tell me what you are going to do, Maximilian.” +The young man smiled sorrowfully. + +“Speak, speak!” said Valentine; “I entreat you.” + +“Has your resolution changed, Valentine?” + +“It cannot change, unhappy man; you know it must not!” cried the young +girl. + +“Then adieu, Valentine!” + +Valentine shook the gate with a strength of which she could not have +been supposed to be possessed, as Morrel was going away, and passing +both her hands through the opening, she clasped and wrung them. “I must +know what you mean to do!” said she. “Where are you going?” + +“Oh, fear not,” said Maximilian, stopping at a short distance, “I do +not intend to render another man responsible for the rigorous fate +reserved for me. Another might threaten to seek M. Franz, to provoke +him, and to fight with him; all that would be folly. What has M. Franz +to do with it? He saw me this morning for the first time, and has +already forgotten he has seen me. He did not even know I existed when +it was arranged by your two families that you should be united. I have +no enmity against M. Franz, and promise you the punishment shall not +fall on him.” + +“On whom, then!—on me?” + +“On you? Valentine! Oh, Heaven forbid! Woman is sacred; the woman one +loves is holy.” + +“On yourself, then, unhappy man; on yourself?” + +“I am the only guilty person, am I not?” said Maximilian. + +“Maximilian!” said Valentine, “Maximilian, come back, I entreat you!” + +He drew near with his sweet smile, and but for his paleness one might +have thought him in his usual happy mood. + +“Listen, my dear, my adored Valentine,” said he in his melodious and +grave tone; “those who, like us, have never had a thought for which we +need blush before the world, such may read each other’s hearts. I never +was romantic, and am no melancholy hero. I imitate neither Manfred nor +Anthony; but without words, protestations, or vows, my life has +entwined itself with yours; you leave me, and you are right in doing +so,—I repeat it, you are right; but in losing you, I lose my life. The +moment you leave me, Valentine, I am alone in the world. My sister is +happily married; her husband is only my brother-in-law, that is, a man +whom the ties of social life alone attach to me; no one then longer +needs my useless life. This is what I shall do; I will wait until the +very moment you are married, for I will not lose the shadow of one of +those unexpected chances which are sometimes reserved for us, since M. +Franz may, after all, die before that time, a thunderbolt may fall even +on the altar as you approach it,—nothing appears impossible to one +condemned to die, and miracles appear quite reasonable when his escape +from death is concerned. I will, then, wait until the last moment, and +when my misery is certain, irremediable, hopeless, I will write a +confidential letter to my brother-in-law, another to the prefect of +police, to acquaint them with my intention, and at the corner of some +wood, on the brink of some abyss, on the bank of some river, I will put +an end to my existence, as certainly as I am the son of the most honest +man who ever lived in France.” + +30333m + + + +Valentine trembled convulsively; she loosened her hold of the gate, her +arms fell by her side, and two large tears rolled down her cheeks. The +young man stood before her, sorrowful and resolute. + +“Oh, for pity’s sake,” said she, “you will live, will you not?” + +“No, on my honor,” said Maximilian; “but that will not affect you. You +have done your duty, and your conscience will be at rest.” + +Valentine fell on her knees, and pressed her almost bursting heart. +“Maximilian,” said she, “Maximilian, my friend, my brother on earth, my +true husband in heaven, I entreat you, do as I do, live in suffering; +perhaps we may one day be united.” + +“Adieu, Valentine,” repeated Morrel. + +“My God,” said Valentine, raising both her hands to heaven with a +sublime expression, “I have done my utmost to remain a submissive +daughter; I have begged, entreated, implored; he has regarded neither +my prayers, my entreaties, nor my tears. It is done,” cried she, wiping +away her tears, and resuming her firmness, “I am resolved not to die of +remorse, but rather of shame. Live, Maximilian, and I will be yours. +Say when shall it be? Speak, command, I will obey.” + +Morrel, who had already gone some few steps away, again returned, and +pale with joy extended both hands towards Valentine through the +opening. + +“Valentine,” said he, “dear Valentine, you must not speak thus—rather +let me die. Why should I obtain you by violence, if our love is mutual? +Is it from mere humanity you bid me live? I would then rather die.” + +“Truly,” murmured Valentine, “who on this earth cares for me, if he +does not? Who has consoled me in my sorrow but he? On whom do my hopes +rest? On whom does my bleeding heart repose? On him, on him, always on +him! Yes, you are right, Maximilian, I will follow you. I will leave +the paternal home, I will give up all. Oh, ungrateful girl that I am,” +cried Valentine, sobbing, “I will give up all, even my dear old +grandfather, whom I had nearly forgotten.” + +“No,” said Maximilian, “you shall not leave him. M. Noirtier has +evinced, you say, a kind feeling towards me. Well, before you leave, +tell him all; his consent would be your justification in God’s sight. +As soon as we are married, he shall come and live with us, instead of +one child, he shall have two. You have told me how you talk to him and +how he answers you; I shall very soon learn that language by signs, +Valentine, and I promise you solemnly, that instead of despair, it is +happiness that awaits us.” + +“Oh, see, Maximilian, see the power you have over me, you almost make +me believe you; and yet, what you tell me is madness, for my father +will curse me—he is inflexible—he will never pardon me. Now listen to +me, Maximilian; if by artifice, by entreaty, by accident—in short, if +by any means I can delay this marriage, will you wait?” + +“Yes, I promise you, as faithfully as you have promised me that this +horrible marriage shall not take place, and that if you are dragged +before a magistrate or a priest, you will refuse.” + +“I promise you by all that is most sacred to me in the world, namely, +by my mother.” + +“We will wait, then,” said Morrel. + +“Yes, we will wait,” replied Valentine, who revived at these words; +“there are so many things which may save unhappy beings such as we +are.” + +“I rely on you, Valentine,” said Morrel; “all you do will be well done; +only if they disregard your prayers, if your father and Madame de +Saint-Méran insist that M. d’Épinay should be called tomorrow to sign +the contract——” + +“Then you have my promise, Maximilian.” + +“Instead of signing——” + +“I will go to you, and we will fly; but from this moment until then, +let us not tempt Providence, let us not see each other. It is a +miracle, it is a providence that we have not been discovered. If we +were surprised, if it were known that we met thus, we should have no +further resource.” + +“You are right, Valentine; but how shall I ascertain?” + +“From the notary, M. Deschamps.” + +“I know him.” + +“And for myself—I will write to you, depend on me. I dread this +marriage, Maximilian, as much as you.” + +“Thank you, my adored Valentine, thank you; that is enough. When once I +know the hour, I will hasten to this spot, you can easily get over this +fence with my assistance, a carriage will await us at the gate, in +which you will accompany me to my sister’s; there living, retired or +mingling in society, as you wish, we shall be enabled to use our power +to resist oppression, and not suffer ourselves to be put to death like +sheep, which only defend themselves by sighs.” + +“Yes,” said Valentine, “I will now acknowledge you are right, +Maximilian; and now are you satisfied with your betrothal?” said the +young girl sorrowfully. + +“My adored Valentine, words cannot express one half of my +satisfaction.” + +Valentine had approached, or rather, had placed her lips so near the +fence, that they nearly touched those of Morrel, which were pressed +against the other side of the cold and inexorable barrier. + +“Adieu, then, till we meet again,” said Valentine, tearing herself +away. “I shall hear from you?” + +“Yes.” + +“Thanks, thanks, dear love, adieu!” + +The sound of a kiss was heard, and Valentine fled through the avenue. +Morrel listened to catch the last sound of her dress brushing the +branches, and of her footstep on the gravel, then raised his eyes with +an ineffable smile of thankfulness to heaven for being permitted to be +thus loved, and then also disappeared. + +The young man returned home and waited all the evening and all the next +day without getting any message. It was only on the following day, at +about ten o’clock in the morning, as he was starting to call on M. +Deschamps, the notary, that he received from the postman a small +billet, which he knew to be from Valentine, although he had not before +seen her writing. It was to this effect: + +“Tears, entreaties, prayers, have availed me nothing. Yesterday, for +two hours, I was at the church of Saint-Philippe-du-Roule, and for two +hours I prayed most fervently. Heaven is as inflexible as man, and the +signature of the contract is fixed for this evening at nine o’clock. I +have but one promise and but one heart to give; that promise is pledged +to you, that heart is also yours. This evening, then, at a quarter to +nine at the gate. + +“Your betrothed, + +“Valentine de Villefort.” + +“P.S.—My poor grandmother gets worse and worse; yesterday her fever +amounted to delirium; today her delirium is almost madness. You will be +very kind to me, will you not, Morrel, to make me forget my sorrow in +leaving her thus? I think it is kept a secret from grandpapa Noirtier, +that the contract is to be signed this evening.” + +Morrel went also to the notary, who confirmed the news that the +contract was to be signed that evening. Then he went to call on Monte +Cristo and heard still more. Franz had been to announce the ceremony, +and Madame de Villefort had also written to beg the count to excuse her +not inviting him; the death of M. de Saint-Méran and the dangerous +illness of his widow would cast a gloom over the meeting which she +would regret should be shared by the count whom she wished every +happiness. + +The day before Franz had been presented to Madame de Saint-Méran, who +had left her bed to receive him, but had been obliged to return to it +immediately after. + +It is easy to suppose that Morrel’s agitation would not escape the +count’s penetrating eye. Monte Cristo was more affectionate than +ever,—indeed, his manner was so kind that several times Morrel was on +the point of telling him all. But he recalled the promise he had made +to Valentine, and kept his secret. + +The young man read Valentine’s letter twenty times in the course of the +day. It was her first, and on what an occasion! Each time he read it he +renewed his vow to make her happy. How great is the power of a woman +who has made so courageous a resolution! What devotion does she deserve +from him for whom she has sacrificed everything! How ought she really +to be supremely loved! She becomes at once a queen and a wife, and it +is impossible to thank and love her sufficiently. + +Morrel longed intensely for the moment when he should hear Valentine +say, “Here I am, Maximilian; come and help me.” He had arranged +everything for her escape; two ladders were hidden in the clover-field; +a cabriolet was ordered for Maximilian alone, without a servant, +without lights; at the turning of the first street they would light the +lamps, as it would be foolish to attract the notice of the police by +too many precautions. Occasionally he shuddered; he thought of the +moment when, from the top of that wall, he should protect the descent +of his dear Valentine, pressing in his arms for the first time her of +whom he had yet only kissed the delicate hand. + +When the afternoon arrived and he felt that the hour was drawing near, +he wished for solitude, his agitation was extreme; a simple question +from a friend would have irritated him. He shut himself in his room, +and tried to read, but his eye glanced over the page without +understanding a word, and he threw away the book, and for the second +time sat down to sketch his plan, the ladders and the fence. + +At length the hour drew near. Never did a man deeply in love allow the +clocks to go on peacefully. Morrel tormented his so effectually that +they struck eight at half-past six. He then said, “It is time to start; +the signature was indeed fixed to take place at nine o’clock, but +perhaps Valentine will not wait for that.” Consequently, Morrel, having +left the Rue Meslay at half-past eight by his timepiece, entered the +clover-field while the clock of Saint-Philippe-du-Roule was striking +eight. The horse and cabriolet were concealed behind a small ruin, +where Morrel had often waited. + +The night gradually drew on, and the foliage in the garden assumed a +deeper hue. Then Morrel came out from his hiding-place with a beating +heart, and looked through the small opening in the gate; there was yet +no one to be seen. + +The clock struck half-past eight, and still another half-hour was +passed in waiting, while Morrel walked to and fro, and gazed more and +more frequently through the opening. The garden became darker still, +but in the darkness he looked in vain for the white dress, and in the +silence he vainly listened for the sound of footsteps. The house, which +was discernible through the trees, remained in darkness, and gave no +indication that so important an event as the signature of a +marriage-contract was going on. Morrel looked at his watch, which +wanted a quarter to ten; but soon the same clock he had already heard +strike two or three times rectified the error by striking half-past +nine. + +This was already half an hour past the time Valentine had fixed. It was +a terrible moment for the young man. The slightest rustling of the +foliage, the least whistling of the wind, attracted his attention, and +drew the perspiration to his brow; then he tremblingly fixed his +ladder, and, not to lose a moment, placed his foot on the first step. +Amidst all these alternations of hope and fear, the clock struck ten. +“It is impossible,” said Maximilian, “that the signing of a contract +should occupy so long a time without unexpected interruptions. I have +weighed all the chances, calculated the time required for all the +forms; something must have happened.” + +And then he walked rapidly to and fro, and pressed his burning forehead +against the fence. Had Valentine fainted? or had she been discovered +and stopped in her flight? These were the only obstacles which appeared +possible to the young man. + +The idea that her strength had failed her in attempting to escape, and +that she had fainted in one of the paths, was the one that most +impressed itself upon his mind. “In that case,” said he, “I should lose +her, and by my own fault.” He dwelt on this idea for a moment, then it +appeared reality. He even thought he could perceive something on the +ground at a distance; he ventured to call, and it seemed to him that +the wind wafted back an almost inarticulate sigh. + +At last the half-hour struck. It was impossible to wait longer, his +temples throbbed violently, his eyes were growing dim; he passed one +leg over the wall, and in a moment leaped down on the other side. He +was on Villefort’s premises—had arrived there by scaling the wall. What +might be the consequences? However, he had not ventured thus far to +draw back. He followed a short distance close under the wall, then +crossed a path, hid entered a clump of trees. In a moment he had passed +through them, and could see the house distinctly. + +30341m + + + +Then Morrel saw that he had been right in believing that the house was +not illuminated. Instead of lights at every window, as is customary on +days of ceremony, he saw only a gray mass, which was veiled also by a +cloud, which at that moment obscured the moon’s feeble light. A light +moved rapidly from time to time past three windows of the second floor. +These three windows were in Madame de Saint-Méran’s room. Another +remained motionless behind some red curtains which were in Madame de +Villefort’s bedroom. Morrel guessed all this. So many times, in order +to follow Valentine in thought at every hour in the day, had he made +her describe the whole house, that without having seen it he knew it +all. + +This darkness and silence alarmed Morrel still more than Valentine’s +absence had done. Almost mad with grief, and determined to venture +everything in order to see Valentine once more, and be certain of the +misfortune he feared, Morrel gained the edge of the clump of trees, and +was going to pass as quickly as possible through the flower-garden, +when the sound of a voice, still at some distance, but which was borne +upon the wind, reached him. At this sound, as he was already partially +exposed to view, he stepped back and concealed himself completely, +remaining perfectly motionless. + +He had formed his resolution. If it was Valentine alone, he would speak +as she passed; if she was accompanied, and he could not speak, still he +should see her, and know that she was safe; if they were strangers, he +would listen to their conversation, and might understand something of +this hitherto incomprehensible mystery. + +The moon had just then escaped from behind the cloud which had +concealed it, and Morrel saw Villefort come out upon the steps, +followed by a gentleman in black. They descended, and advanced towards +the clump of trees, and Morrel soon recognized the other gentleman as +Doctor d’Avrigny. + +30339m + + + +The young man, seeing them approach, drew back mechanically, until he +found himself stopped by a sycamore-tree in the centre of the clump; +there he was compelled to remain. Soon the two gentlemen stopped also. + +“Ah, my dear doctor,” said the procureur, “Heaven declares itself +against my house! What a dreadful death—what a blow! Seek not to +console me; alas, nothing can alleviate so great a sorrow—the wound is +too deep and too fresh! Dead, dead!” + +The cold sweat sprang to the young man’s brow, and his teeth chattered. +Who could be dead in that house, which Villefort himself had called +accursed? + +“My dear M. de Villefort,” replied the doctor, with a tone which +redoubled the terror of the young man, “I have not led you here to +console you; on the contrary——” + +“What can you mean?” asked the procureur, alarmed. + +“I mean that behind the misfortune which has just happened to you, +there is another, perhaps, still greater.” + +“Can it be possible?” murmured Villefort, clasping his hands. “What are +you going to tell me?” + +“Are we quite alone, my friend?” + +“Yes, quite; but why all these precautions?” + +“Because I have a terrible secret to communicate to you,” said the +doctor. “Let us sit down.” + +Villefort fell, rather than seated himself. The doctor stood before +him, with one hand placed on his shoulder. Morrel, horrified, supported +his head with one hand, and with the other pressed his heart, lest its +beatings should be heard. “Dead, dead!” repeated he within himself; and +he felt as if he were also dying. + +“Speak, doctor—I am listening,” said Villefort; “strike—I am prepared +for everything!” + +“Madame de Saint-Méran was, doubtless, advancing in years, but she +enjoyed excellent health.” Morrel began again to breathe freely, which +he had not done during the last ten minutes. + +“Grief has consumed her,” said Villefort—“yes, grief, doctor! After +living forty years with the marquis——” + +“It is not grief, my dear Villefort,” said the doctor; “grief may kill, +although it rarely does, and never in a day, never in an hour, never in +ten minutes.” Villefort answered nothing, he simply raised his head, +which had been cast down before, and looked at the doctor with +amazement. + +“Were you present during the last struggle?” asked M. d’Avrigny. + +“I was,” replied the procureur; “you begged me not to leave.” + +“Did you notice the symptoms of the disease to which Madame de +Saint-Méran has fallen a victim?” + +“I did. Madame de Saint-Méran had three successive attacks, at +intervals of some minutes, each one more serious than the former. When +you arrived, Madame de Saint-Méran had already been panting for breath +some minutes; she then had a fit, which I took to be simply a nervous +attack, and it was only when I saw her raise herself in the bed, and +her limbs and neck appear stiffened, that I became really alarmed. Then +I understood from your countenance there was more to fear than I had +thought. This crisis past, I endeavored to catch your eye, but could +not. You held her hand—you were feeling her pulse—and the second fit +came on before you had turned towards me. This was more terrible than +the first; the same nervous movements were repeated, and the mouth +contracted and turned purple.” + +“And at the third she expired.” + +“At the end of the first attack I discovered symptoms of tetanus; you +confirmed my opinion.” + +“Yes, before others,” replied the doctor; “but now we are alone——” + +“What are you going to say? Oh, spare me!” + +“That the symptoms of tetanus and poisoning by vegetable substances are +the same.” + +M. de Villefort started from his seat, then in a moment fell down +again, silent and motionless. Morrel knew not if he were dreaming or +awake. + +“Listen,” said the doctor; “I know the full importance of the statement +I have just made, and the disposition of the man to whom I have made +it.” + +“Do you speak to me as a magistrate or as a friend?” asked Villefort. + +“As a friend, and only as a friend, at this moment. The similarity in +the symptoms of tetanus and poisoning by vegetable substances is so +great, that were I obliged to affirm by oath what I have now stated, I +should hesitate; I therefore repeat to you, I speak not to a +magistrate, but to a friend. And to that friend I say, ‘During the +three-quarters of an hour that the struggle continued, I watched the +convulsions and the death of Madame de Saint-Méran, and am thoroughly +convinced that not only did her death proceed from poison, but I could +also specify the poison.’” + +“Can it be possible?” + +“The symptoms are marked, do you see?—sleep broken by nervous spasms, +excitation of the brain, torpor of the nerve centres. Madame de +Saint-Méran succumbed to a powerful dose of brucine or of strychnine, +which by some mistake, perhaps, has been given to her.” + +Villefort seized the doctor’s hand. + +“Oh, it is impossible,” said he, “I must be dreaming! It is frightful +to hear such things from such a man as you! Tell me, I entreat you, my +dear doctor, that you may be deceived.” + +“Doubtless I may, but——” + +“But?” + +30345m + + + +“But I do not think so.” + +“Have pity on me doctor! So many dreadful things have happened to me +lately that I am on the verge of madness.” + +“Has anyone besides me seen Madame de Saint-Méran?” + +“No.” + +“Has anything been sent for from a chemist’s that I have not examined?” + +“Nothing.” + +“Had Madame de Saint-Méran any enemies?” + +“Not to my knowledge.” + +“Would her death affect anyone’s interest?” + +“It could not indeed, my daughter is her only heiress—Valentine alone. +Oh, if such a thought could present itself, I would stab myself to +punish my heart for having for one instant harbored it.” + +“Indeed, my dear friend,” said M. d’Avrigny, “I would not accuse +anyone; I speak only of an accident, you understand,—of a mistake,—but +whether accident or mistake, the fact is there; it is on my conscience +and compels me to speak aloud to you. Make inquiry.” + +“Of whom?—how?—of what?” + +“May not Barrois, the old servant, have made a mistake, and have given +Madame de Saint-Méran a dose prepared for his master?” + +“For my father?” + +“Yes.” + +“But how could a dose prepared for M. Noirtier poison Madame de +Saint-Méran?” + +“Nothing is more simple. You know poisons become remedies in certain +diseases, of which paralysis is one. For instance, having tried every +other remedy to restore movement and speech to M. Noirtier, I resolved +to try one last means, and for three months I have been giving him +brucine; so that in the last dose I ordered for him there were six +grains. This quantity, which is perfectly safe to administer to the +paralyzed frame of M. Noirtier, which has become gradually accustomed +to it, would be sufficient to kill another person.” + +“My dear doctor, there is no communication between M. Noirtier’s +apartment and that of Madame de Saint-Méran, and Barrois never entered +my mother-in-law’s room. In short, doctor although I know you to be the +most conscientious man in the world, and although I place the utmost +reliance in you, I want, notwithstanding my conviction, to believe this +axiom, _errare humanum est_.” + +“Is there one of my brethren in whom you have equal confidence with +myself?” + +“Why do you ask me that?—what do you wish?” + +“Send for him; I will tell him what I have seen, and we will consult +together, and examine the body.” + +“And you will find traces of poison?” + +“No, I did not say of poison, but we can prove what was the state of +the body; we shall discover the cause of her sudden death, and we shall +say, ‘Dear Villefort, if this thing has been caused by negligence, +watch over your servants; if from hatred, watch your enemies.’” + +“What do you propose to me, d’Avrigny?” said Villefort in despair; “so +soon as another is admitted into our secret, an inquest will become +necessary; and an inquest in my house—impossible! Still,” continued the +procureur, looking at the doctor with uneasiness, “if you wish it—if +you demand it, why then it shall be done. But, doctor, you see me +already so grieved—how can I introduce into my house so much scandal, +after so much sorrow? My wife and my daughter would die of it! And I, +doctor—you know a man does not arrive at the post I occupy—one has not +been king’s attorney twenty-five years without having amassed a +tolerable number of enemies; mine are numerous. Let this affair be +talked of, it will be a triumph for them, which will make them rejoice, +and cover me with shame. Pardon me, doctor, these worldly ideas; were +you a priest I should not dare tell you that, but you are a man, and +you know mankind. Doctor, pray recall your words; you have said +nothing, have you?” + +“My dear M. de Villefort,” replied the doctor, “my first duty is to +humanity. I would have saved Madame de Saint-Méran, if science could +have done it; but she is dead and my duty regards the living. Let us +bury this terrible secret in the deepest recesses of our hearts; I am +willing, if anyone should suspect this, that my silence on the subject +should be imputed to my ignorance. Meanwhile, sir, watch always—watch +carefully, for perhaps the evil may not stop here. And when you have +found the culprit, if you find him, I will say to you, ‘You are a +magistrate, do as you will!’” + +“I thank you, doctor,” said Villefort with indescribable joy; “I never +had a better friend than you.” And, as if he feared Doctor d’Avrigny +would recall his promise, he hurried him towards the house. + +When they were gone, Morrel ventured out from under the trees, and the +moon shone upon his face, which was so pale it might have been taken +for that of a ghost. + +“I am manifestly protected in a most wonderful, but most terrible +manner,” said he; “but Valentine, poor girl, how will she bear so much +sorrow?” + +As he thought thus, he looked alternately at the window with red +curtains and the three windows with white curtains. The light had +almost disappeared from the former; doubtless Madame de Villefort had +just put out her lamp, and the nightlamp alone reflected its dull light +on the window. At the extremity of the building, on the contrary, he +saw one of the three windows open. A wax-light placed on the +mantle-piece threw some of its pale rays without, and a shadow was seen +for one moment on the balcony. Morrel shuddered; he thought he heard a +sob. + +It cannot be wondered at that his mind, generally so courageous, but +now disturbed by the two strongest human passions, love and fear, was +weakened even to the indulgence of superstitious thoughts. Although it +was impossible that Valentine should see him, hidden as he was, he +thought he heard the shadow at the window call him; his disturbed mind +told him so. This double error became an irresistible reality, and by +one of the incomprehensible transports of youth, he bounded from his +hiding-place, and with two strides, at the risk of being seen, at the +risk of alarming Valentine, at the risk of being discovered by some +exclamation which might escape the young girl, he crossed the +flower-garden, which by the light of the moon resembled a large white +lake, and having passed the rows of orange-trees which extended in +front of the house, he reached the step, ran quickly up and pushed the +door, which opened without offering any resistance. + +Valentine had not seen him. Her eyes, raised towards heaven, were +watching a silvery cloud gliding over the azure, its form that of a +shadow mounting towards heaven. Her poetic and excited mind pictured it +as the soul of her grandmother. + +Meanwhile, Morrel had traversed the anteroom and found the staircase, +which, being carpeted, prevented his approach being heard, and he had +regained that degree of confidence that the presence of M. de Villefort +even would not have alarmed him. He was quite prepared for any such +encounter. He would at once approach Valentine’s father and acknowledge +all, begging Villefort to pardon and sanction the love which united two +fond and loving hearts. Morrel was mad. + +Happily he did not meet anyone. Now, especially, did he find the +description Valentine had given of the interior of the house useful to +him; he arrived safely at the top of the staircase, and while he was +feeling his way, a sob indicated the direction he was to take. He +turned back, a door partly open enabled him to see his road, and to +hear the voice of one in sorrow. He pushed the door open and entered. +At the other end of the room, under a white sheet which covered it, lay +the corpse, still more alarming to Morrel since the account he had so +unexpectedly overheard. By its side, on her knees, and with her head +buried in the cushion of an easy-chair, was Valentine, trembling and +sobbing, her hands extended above her head, clasped and stiff. She had +turned from the window, which remained open, and was praying in accents +that would have affected the most unfeeling; her words were rapid, +incoherent, unintelligible, for the burning weight of grief almost +stopped her utterance. + +The moon shining through the open blinds made the lamp appear to burn +paler, and cast a sepulchral hue over the whole scene. Morrel could not +resist this; he was not exemplary for piety, he was not easily +impressed, but Valentine suffering, weeping, wringing her hands before +him, was more than he could bear in silence. He sighed, and whispered a +name, and the head bathed in tears and pressed on the velvet cushion of +the chair—a head like that of a Magdalen by Correggio—was raised and +turned towards him. Valentine perceived him without betraying the least +surprise. A heart overwhelmed with one great grief is insensible to +minor emotions. Morrel held out his hand to her. Valentine, as her only +apology for not having met him, pointed to the corpse under the sheet, +and began to sob again. + +Neither dared for some time to speak in that room. They hesitated to +break the silence which death seemed to impose; at length Valentine +ventured. + +“My friend,” said she, “how came you here? Alas, I would say you are +welcome, had not death opened the way for you into this house.” + +“Valentine,” said Morrel with a trembling voice, “I had waited since +half-past eight, and did not see you come; I became uneasy, leaped the +wall, found my way through the garden, when voices conversing about the +fatal event——” + +“What voices?” asked Valentine. Morrel shuddered as he thought of the +conversation of the doctor and M. de Villefort, and he thought he could +see through the sheet the extended hands, the stiff neck, and the +purple lips. + +“Your servants,” said he, “who were repeating the whole of the +sorrowful story; from them I learned it all.” + +“But it was risking the failure of our plan to come up here, love.” + +“Forgive me,” replied Morrel; “I will go away.” + +“No,” said Valentine, “you might meet someone; stay.” + +“But if anyone should come here——” + +The young girl shook her head. “No one will come,” said she; “do not +fear, there is our safeguard,” pointing to the bed. + +“But what has become of M. d’Épinay?” replied Morrel. + +30349m + + + +“M. Franz arrived to sign the contract just as my dear grandmother was +dying.” + +“Alas,” said Morrel with a feeling of selfish joy; for he thought this +death would cause the wedding to be postponed indefinitely. + +“But what redoubles my sorrow,” continued the young girl, as if this +feeling was to receive its immediate punishment, “is that the poor old +lady, on her death-bed, requested that the marriage might take place as +soon as possible; she also, thinking to protect me, was acting against +me.” + +“Hark!” said Morrel. They both listened; steps were distinctly heard in +the corridor and on the stairs. + +“It is my father, who has just left his study.” + +“To accompany the doctor to the door,” added Morrel. + +“How do you know it is the doctor?” asked Valentine, astonished. + +“I imagined it must be,” said Morrel. + +Valentine looked at the young man; they heard the street door close, +then M. de Villefort locked the garden door, and returned upstairs. He +stopped a moment in the anteroom, as if hesitating whether to turn to +his own apartment or into Madame de Saint-Méran’s; Morrel concealed +himself behind a door; Valentine remained motionless, grief seeming to +deprive her of all fear. M. de Villefort passed on to his own room. + +“Now,” said Valentine, “you can neither go out by the front door nor by +the garden.” + +Morrel looked at her with astonishment. + +“There is but one way left you that is safe,” said she; “it is through +my grandfather’s room.” She rose. “Come,” she added. + +“Where?” asked Maximilian. + +“To my grandfather’s room.” + +“I in M. Noirtier’s apartment?” + +“Yes.” + +“Can you mean it, Valentine?” + +“I have long wished it; he is my only remaining friend and we both need +his help,—come.” + +“Be careful, Valentine,” said Morrel, hesitating to comply with the +young girl’s wishes; “I now see my error—I acted like a madman in +coming in here. Are you sure you are more reasonable?” + +“Yes,” said Valentine; “and I have but one scruple,—that of leaving my +dear grandmother’s remains, which I had undertaken to watch.” + +“Valentine,” said Morrel, “death is in itself sacred.” + +“Yes,” said Valentine; “besides, it will not be for long.” + +She then crossed the corridor, and led the way down a narrow staircase +to M. Noirtier’s room; Morrel followed her on tiptoe; at the door they +found the old servant. + +“Barrois,” said Valentine, “shut the door, and let no one come in.” + +She passed first. + +Noirtier, seated in his chair, and listening to every sound, was +watching the door; he saw Valentine, and his eye brightened. There was +something grave and solemn in the approach of the young girl which +struck the old man, and immediately his bright eye began to +interrogate. + +“Dear grandfather.” said she hurriedly, “you know poor grandmamma died +an hour since, and now I have no friend in the world but you.” + +His expressive eyes evinced the greatest tenderness. + +“To you alone, then, may I confide my sorrows and my hopes?” + +The paralytic motioned “Yes.” + +Valentine took Maximilian’s hand. + +“Look attentively, then, at this gentleman.” + +The old man fixed his scrutinizing gaze with slight astonishment on +Morrel. + +“It is M. Maximilian Morrel,” said she; “the son of that good merchant +of Marseilles, whom you doubtless recollect.” + +“Yes,” said the old man. + +“He brings an irreproachable name, which Maximilian is likely to render +glorious, since at thirty years of age he is a captain, an officer of +the Legion of Honor.” + +The old man signified that he recollected him. + +“Well, grandpapa,” said Valentine, kneeling before him, and pointing to +Maximilian, “I love him, and will be only his; were I compelled to +marry another, I would destroy myself.” + +The eyes of the paralytic expressed a multitude of tumultuous thoughts. + +“You like M. Maximilian Morrel, do you not, grandpapa?” asked +Valentine. + +“Yes.” + +“And you will protect us, who are your children, against the will of my +father?” + +Noirtier cast an intelligent glance at Morrel, as if to say, “perhaps I +may.” + +Maximilian understood him. + +“Mademoiselle,” said he, “you have a sacred duty to fulfil in your +deceased grandmother’s room, will you allow me the honor of a few +minutes’ conversation with M. Noirtier?” + +“That is it,” said the old man’s eye. Then he looked anxiously at +Valentine. + +“Do you fear he will not understand?” + +“Yes.” + +“Oh, we have so often spoken of you, that he knows exactly how I talk +to you.” Then turning to Maximilian, with an adorable smile; although +shaded by sorrow,—“He knows everything I know,” said she. + +Valentine arose, placed a chair for Morrel, requested Barrois not to +admit anyone, and having tenderly embraced her grandfather, and +sorrowfully taken leave of Morrel, she went away. To prove to Noirtier +that he was in Valentine’s confidence and knew all their secrets, +Morrel took the dictionary, a pen, and some paper, and placed them all +on a table where there was a light. + +“But first,” said Morrel, “allow me, sir, to tell you who I am, how +much I love Mademoiselle Valentine, and what are my designs respecting +her.” + +Noirtier made a sign that he would listen. + +It was an imposing sight to witness this old man, apparently a mere +useless burden, becoming the sole protector, support, and adviser of +the lovers who were both young, beautiful, and strong. His remarkably +noble and austere expression struck Morrel, who began his story with +trembling. He related the manner in which he had become acquainted with +Valentine, and how he had loved her, and that Valentine, in her +solitude and her misfortune, had accepted the offer of his devotion. He +told him his birth, his position, his fortune, and more than once, when +he consulted the look of the paralytic, that look answered, “That is +good, proceed.” + +“And now,” said Morrel, when he had finished the first part of his +recital, “now I have told you of my love and my hopes, may I inform you +of my intentions?” + +“Yes,” signified the old man. + +“This was our resolution; a cabriolet was in waiting at the gate, in +which I intended to carry off Valentine to my sister’s house, to marry +her, and to wait respectfully M. de Villefort’s pardon.” + +“No,” said Noirtier. + +“We must not do so?” + +“No.” + +“You do not sanction our project?” + +“No.” + +“There is another way,” said Morrel. The old man’s interrogative eye +said, “Which?” + +“I will go,” continued Maximilian, “I will seek M. Franz d’Épinay—I am +happy to be able to mention this in Mademoiselle de Villefort’s +absence—and will conduct myself toward him so as to compel him to +challenge me.” Noirtier’s look continued to interrogate. + +“You wish to know what I will do?” + +“Yes.” + +“I will find him, as I told you. I will tell him the ties which bind me +to Mademoiselle Valentine; if he be a sensible man, he will prove it by +renouncing of his own accord the hand of his betrothed, and will secure +my friendship, and love until death; if he refuse, either through +interest or ridiculous pride, after I have proved to him that he would +be forcing my wife from me, that Valentine loves me, and will have no +other, I will fight with him, give him every advantage, and I shall +kill him, or he will kill me; if I am victorious, he will not marry +Valentine, and if I die, I am very sure Valentine will not marry him.” + +Noirtier watched, with indescribable pleasure, this noble and sincere +countenance, on which every sentiment his tongue uttered was depicted, +adding by the expression of his fine features all that coloring adds to +a sound and faithful drawing. + +Still, when Morrel had finished, he shut his eyes several times, which +was his manner of saying “No.” + +“No?” said Morrel; “you disapprove of this second project, as you did +of the first?” + +“I do,” signified the old man. + +“But what then must be done?” asked Morrel. “Madame de Saint-Méran’s +last request was, that the marriage might not be delayed; must I let +things take their course?” Noirtier did not move. “I understand,” said +Morrel; “I am to wait.” + +“Yes.” + +“But delay may ruin our plan, sir,” replied the young man. “Alone, +Valentine has no power; she will be compelled to submit. I am here +almost miraculously, and can scarcely hope for so good an opportunity +to occur again. Believe me, there are only the two plans I have +proposed to you; forgive my vanity, and tell me which you prefer. Do +you authorize Mademoiselle Valentine to intrust herself to my honor?” + +“No.” + +“Do you prefer I should seek M. d’Épinay?” + +“No.” + +“Whence then will come the help we need—from chance?” resumed Morrel. + +“No.” + +“From you?” + +“Yes.” + +“You thoroughly understand me, sir? Pardon my eagerness, for my life +depends on your answer. Will our help come from you?” + +“Yes.” + +“You are sure of it?” + +“Yes.” There was so much firmness in the look which gave this answer, +no one could, at any rate, doubt his will, if they did his power. + +“Oh, thank you a thousand times! But how, unless a miracle should +restore your speech, your gesture, your movement, how can you, chained +to that armchair, dumb and motionless, oppose this marriage?” A smile +lit up the old man’s face, a strange smile of the eyes in a paralyzed +face. + +“Then I must wait?” asked the young man. + +“Yes.” + +“But the contract?” The same smile returned. “Will you assure me it +shall not be signed?” + +“Yes,” said Noirtier. + +“The contract shall not be signed!” cried Morrel. “Oh, pardon me, sir; +I can scarcely realize so great a happiness. Will they not sign it?” + +“No,” said the paralytic. Notwithstanding that assurance, Morrel still +hesitated. This promise of an impotent old man was so strange that, +instead of being the result of the power of his will, it might emanate +from enfeebled organs. Is it not natural that the madman, ignorant of +his folly, should attempt things beyond his power? The weak man talks +of burdens he can raise, the timid of giants he can confront, the poor +of treasures he spends, the most humble peasant, in the height of his +pride, calls himself Jupiter. Whether Noirtier understood the young +man’s indecision, or whether he had not full confidence in his +docility, he looked uneasily at him. + +“What do you wish, sir?” asked Morrel; “that I should renew my promise +of remaining tranquil?” Noirtier’s eye remained fixed and firm, as if +to imply that a promise did not suffice; then it passed from his face +to his hands. + +“Shall I swear to you, sir?” asked Maximilian. + +“Yes,” said the paralytic with the same solemnity. Morrel understood +that the old man attached great importance to an oath. He extended his +hand. + +“I swear to you, on my honor,” said he, “to await your decision +respecting the course I am to pursue with M. d’Épinay.” + +“That is right,” said the old man. + +“Now,” said Morrel, “do you wish me to retire?” + +“Yes.” + +“Without seeing Mademoiselle Valentine?” + +“Yes.” + +Morrel made a sign that he was ready to obey. “But,” said he, “first +allow me to embrace you as your daughter did just now.” Noirtier’s +expression could not be understood. The young man pressed his lips on +the same spot, on the old man’s forehead, where Valentine’s had been. +Then he bowed a second time and retired. + +He found outside the door the old servant, to whom Valentine had given +directions. Morrel was conducted along a dark passage, which led to a +little door opening on the garden, soon found the spot where he had +entered, with the assistance of the shrubs gained the top of the wall, +and by his ladder was in an instant in the clover-field where his +cabriolet was still waiting for him. He got in it, and thoroughly +wearied by so many emotions, arrived about midnight in the Rue Meslay, +threw himself on his bed and slept soundly. + + + +VOLUME FOUR + +40010m + + + +40012m + + + +40020m + + + + + Chapter 74. The Villefort Family Vault + +Two days after, a considerable crowd was assembled, towards ten o’clock +in the morning, around the door of M. de Villefort’s house, and a long +file of mourning-coaches and private carriages extended along the +Faubourg Saint-Honoré and the Rue de la Pépinière. Among them was one +of a very singular form, which appeared to have come from a distance. +It was a kind of covered wagon, painted black, and was one of the first +to arrive. Inquiry was made, and it was ascertained that, by a strange +coincidence, this carriage contained the corpse of the Marquis de +Saint-Méran, and that those who had come thinking to attend one funeral +would follow two. Their number was great. The Marquis de Saint-Méran, +one of the most zealous and faithful dignitaries of Louis XVIII. and +King Charles X., had preserved a great number of friends, and these, +added to the personages whom the usages of society gave Villefort a +claim on, formed a considerable body. + +Due information was given to the authorities, and permission obtained +that the two funerals should take place at the same time. A second +hearse, decked with the same funereal pomp, was brought to M. de +Villefort’s door, and the coffin removed into it from the post-wagon. +The two bodies were to be interred in the cemetery of Père-Lachaise, +where M. de Villefort had long since had a tomb prepared for the +reception of his family. The remains of poor Renée were already +deposited there, and now, after ten years of separation, her father and +mother were to be reunited with her. + +The Parisians, always curious, always affected by funereal display, +looked on with religious silence while the splendid procession +accompanied to their last abode two of the number of the old +aristocracy—the greatest protectors of commerce and sincere devotees to +their principles. + +In one of the mourning-coaches Beauchamp, Debray, and Château-Renaud +were talking of the very sudden death of the marchioness. + +“I saw Madame de Saint-Méran only last year at Marseilles, when I was +coming back from Algiers,” said Château-Renaud; “she looked like a +woman destined to live to be a hundred years old, from her apparent +sound health and great activity of mind and body. How old was she?” + +“Franz assured me,” replied Albert, “that she was sixty-six years old. +But she has not died of old age, but of grief; it appears that since +the death of the marquis, which affected her very deeply, she has not +completely recovered her reason.” + +“But of what disease, then, did she die?” asked Debray. + +“It is said to have been a congestion of the brain, or apoplexy, which +is the same thing, is it not?” + +“Nearly.” + +“It is difficult to believe that it was apoplexy,” said Beauchamp. +“Madame de Saint-Méran, whom I once saw, was short, of slender form, +and of a much more nervous than sanguine temperament; grief could +hardly produce apoplexy in such a constitution as that of Madame de +Saint-Méran.” + +“At any rate,” said Albert, “whatever disease or doctor may have killed +her, M. de Villefort, or rather, Mademoiselle Valentine,—or, still +rather, our friend Franz, inherits a magnificent fortune, amounting, I +believe, to 80,000 livres per annum.” + +“And this fortune will be doubled at the death of the old Jacobin, +Noirtier.” + +“That is a tenacious old grandfather,” said Beauchamp. “_Tenacem +propositi virum_. I think he must have made an agreement with death to +outlive all his heirs, and he appears likely to succeed. He resembles +the old Conventionalist of ’93, who said to Napoleon, in 1814, ‘You +bend because your empire is a young stem, weakened by rapid growth. +Take the Republic for a tutor; let us return with renewed strength to +the battle-field, and I promise you 500,000 soldiers, another Marengo, +and a second Austerlitz. Ideas do not become extinct, sire; they +slumber sometimes, but only revive the stronger before they sleep +entirely.’” + +“Ideas and men appeared the same to him,” said Albert. “One thing only +puzzles me, namely, how Franz d’Épinay will like a grandfather who +cannot be separated from his wife. But where is Franz?” + +“In the first carriage, with M. de Villefort, who considers him already +as one of the family.” + +40024m + + + +Such was the conversation in almost all the carriages; these two sudden +deaths, so quickly following each other, astonished everyone, but no +one suspected the terrible secret which M. d’Avrigny had communicated, +in his nocturnal walk to M. de Villefort. They arrived in about an hour +at the cemetery; the weather was mild, but dull, and in harmony with +the funeral ceremony. Among the groups which flocked towards the family +vault, Château-Renaud recognized Morrel, who had come alone in a +cabriolet, and walked silently along the path bordered with yew-trees. + +“You here?” said Château-Renaud, passing his arms through the young +captain’s; “are you a friend of Villefort’s? How is it that I have +never met you at his house?” + +“I am no acquaintance of M. de Villefort’s,” answered Morrel, “but I +was of Madame de Saint-Méran.” Albert came up to them at this moment +with Franz. + +“The time and place are but ill-suited for an introduction.” said +Albert; “but we are not superstitious. M. Morrel, allow me to present +to you M. Franz d’Épinay, a delightful travelling companion, with whom +I made the tour of Italy. My dear Franz, M. Maximilian Morrel, an +excellent friend I have acquired in your absence, and whose name you +will hear me mention every time I make any allusion to affection, wit, +or amiability.” + +Morrel hesitated for a moment; he feared it would be hypocritical to +accost in a friendly manner the man whom he was tacitly opposing, but +his oath and the gravity of the circumstances recurred to his memory; +he struggled to conceal his emotion and bowed to Franz. + +“Mademoiselle de Villefort is in deep sorrow, is she not?” said Debray +to Franz. + +“Extremely,” replied he; “she looked so pale this morning, I scarcely +knew her.” + +These apparently simple words pierced Morrel to the heart. This man had +seen Valentine, and spoken to her! The young and high-spirited officer +required all his strength of mind to resist breaking his oath. He took +the arm of Château-Renaud, and turned towards the vault, where the +attendants had already placed the two coffins. + +“This is a magnificent habitation,” said Beauchamp, looking towards the +mausoleum; “a summer and winter palace. You will, in turn, enter it, my +dear d’Épinay, for you will soon be numbered as one of the family. I, +as a philosopher, should like a little country-house, a cottage down +there under the trees, without so many free-stones over my poor body. +In dying, I will say to those around me what Voltaire wrote to Piron: +‘_Eo rus_, and all will be over.’ But come, Franz, take courage, your +wife is an heiress.” + +“Indeed, Beauchamp, you are unbearable. Politics has made you laugh at +everything, and political men have made you disbelieve everything. But +when you have the honor of associating with ordinary men, and the +pleasure of leaving politics for a moment, try to find your +affectionate heart, which you leave with your stick when you go to the +Chamber.” + +“But tell me,” said Beauchamp, “what is life? Is it not a halt in +Death’s anteroom?” + +40026m + + + +“I am prejudiced against Beauchamp,” said Albert, drawing Franz away, +and leaving the former to finish his philosophical dissertation with +Debray. + +The Villefort vault formed a square of white stones, about twenty feet +high; an interior partition separated the two families, and each +apartment had its entrance door. Here were not, as in other tombs, +ignoble drawers, one above another, where thrift bestows its dead and +labels them like specimens in a museum; all that was visible within the +bronze gates was a gloomy-looking room, separated by a wall from the +vault itself. The two doors before mentioned were in the middle of this +wall, and enclosed the Villefort and Saint-Méran coffins. There grief +might freely expend itself without being disturbed by the trifling +loungers who came from a picnic party to visit Père-Lachaise, or by +lovers who make it their rendezvous. + +The two coffins were placed on trestles previously prepared for their +reception in the right-hand crypt belonging to the Saint-Méran family. +Villefort, Franz, and a few near relatives alone entered the sanctuary. + +As the religious ceremonies had all been performed at the door, and +there was no address given, the party all separated; Château-Renaud, +Albert, and Morrel, went one way, and Debray and Beauchamp the other. +Franz remained with M. de Villefort; at the gate of the cemetery Morrel +made an excuse to wait; he saw Franz and M. de Villefort get into the +same mourning-coach, and thought this meeting forboded evil. He then +returned to Paris, and although in the same carriage with +Château-Renaud and Albert, he did not hear one word of their +conversation. + +As Franz was about to take leave of M. de Villefort, “When shall I see +you again?” said the latter. + +“At what time you please, sir,” replied Franz. + +“As soon as possible.” + +“I am at your command, sir; shall we return together?” + +“If not unpleasant to you.” + +“On the contrary, I shall feel much pleasure.” + +Thus, the future father and son-in-law stepped into the same carriage, +and Morrel, seeing them pass, became uneasy. Villefort and Franz +returned to the Faubourg Saint-Honoré. The procureur, without going to +see either his wife or his daughter, went at once to his study, and, +offering the young man a chair: + +“M. d’Épinay,” said he, “allow me to remind you at this moment,—which +is perhaps not so ill-chosen as at first sight may appear, for +obedience to the wishes of the departed is the first offering which +should be made at their tomb,—allow me then to remind you of the wish +expressed by Madame de Saint-Méran on her death-bed, that Valentine’s +wedding might not be deferred. You know the affairs of the deceased are +in perfect order, and her will bequeaths to Valentine the entire +property of the Saint-Méran family; the notary showed me the documents +yesterday, which will enable us to draw up the contract immediately. +You may call on the notary, M. Deschamps, Place Beauveau, Faubourg +Saint-Honoré, and you have my authority to inspect those deeds.” + +“Sir,” replied M. d’Épinay, “it is not, perhaps, the moment for +Mademoiselle Valentine, who is in deep distress, to think of a husband; +indeed, I fear——” + +40028m + + + +“Valentine will have no greater pleasure than that of fulfilling her +grandmother’s last injunctions; there will be no obstacle from that +quarter, I assure you.” + +“In that case,” replied Franz, “as I shall raise none, you may make +arrangements when you please; I have pledged my word, and shall feel +pleasure and happiness in adhering to it.” + +“Then,” said Villefort, “nothing further is required. The contract was +to have been signed three days since; we shall find it all ready, and +can sign it today.” + +“But the mourning?” said Franz, hesitating. + +“Don’t be uneasy on that score,” replied Villefort; “no ceremony will +be neglected in my house. Mademoiselle de Villefort may retire during +the prescribed three months to her estate of Saint-Méran; I say hers, +for she inherits it today. There, after a few days, if you like, the +civil marriage shall be celebrated without pomp or ceremony. Madame de +Saint-Méran wished her daughter should be married there. When that is +over, you, sir, can return to Paris, while your wife passes the time of +her mourning with her mother-in-law.” + +“As you please, sir,” said Franz. + +“Then,” replied M. de Villefort, “have the kindness to wait half an +hour; Valentine shall come down into the drawing-room. I will send for +M. Deschamps; we will read and sign the contract before we separate, +and this evening Madame de Villefort shall accompany Valentine to her +estate, where we will rejoin them in a week.” + +“Sir,” said Franz, “I have one request to make.” + +“What is it?” + +“I wish Albert de Morcerf and Raoul de Château-Renaud to be present at +this signature; you know they are my witnesses.” + +“Half an hour will suffice to apprise them; will you go for them +yourself, or shall you send?” + +“I prefer going, sir.” + +“I shall expect you, then, in half an hour, baron, and Valentine will +be ready.” + +Franz bowed and left the room. Scarcely had the door closed, when M. de +Villefort sent to tell Valentine to be ready in the drawing-room in +half an hour, as he expected the notary and M. d’Épinay and his +witnesses. The news caused a great sensation throughout the house; +Madame de Villefort would not believe it, and Valentine was +thunderstruck. She looked around for help, and would have gone down to +her grandfather’s room, but on the stairs she met M. de Villefort, who +took her arm and led her into the drawing-room. In the anteroom, +Valentine met Barrois, and looked despairingly at the old servant. A +moment later, Madame de Villefort entered the drawing-room with her +little Edward. It was evident that she had shared the grief of the +family, for she was pale and looked fatigued. She sat down, took Edward +on her knees, and from time to time pressed this child, on whom her +affections appeared centred, almost convulsively to her bosom. + +Two carriages were soon heard to enter the courtyard. One was the +notary’s; the other, that of Franz and his friends. In a moment the +whole party was assembled. Valentine was so pale one might trace the +blue veins from her temples, round her eyes and down her cheeks. Franz +was deeply affected. Château-Renaud and Albert looked at each other +with amazement; the ceremony which was just concluded had not appeared +more sorrowful than did that which was about to begin. Madame de +Villefort had placed herself in the shadow behind a velvet curtain, and +as she constantly bent over her child, it was difficult to read the +expression of her face. M. de Villefort was, as usual, unmoved. + +The notary, after having, according to the customary method, arranged +the papers on the table, taken his place in an armchair, and raised his +spectacles, turned towards Franz: + +“Are you M. Franz de Quesnel, baron d’Épinay?” asked he, although he +knew it perfectly. + +“Yes, sir,” replied Franz. The notary bowed. + +“I have, then, to inform you, sir, at the request of M. de Villefort, +that your projected marriage with Mademoiselle de Villefort has changed +the feeling of M. Noirtier towards his grandchild, and that he +disinherits her entirely of the fortune he would have left her. Let me +hasten to add,” continued he, “that the testator, having only the right +to alienate a part of his fortune, and having alienated it all, the +will will not bear scrutiny, and is declared null and void.” + +“Yes.” said Villefort; “but I warn M. d’Épinay, that during my +life-time my father’s will shall never be questioned, my position +forbidding any doubt to be entertained.” + +40032m + + + +“Sir,” said Franz, “I regret much that such a question has been raised +in the presence of Mademoiselle Valentine; I have never inquired the +amount of her fortune, which, however limited it may be, exceeds mine. +My family has sought consideration in this alliance with M. de +Villefort; all I seek is happiness.” + +Valentine imperceptibly thanked him, while two silent tears rolled down +her cheeks. + +“Besides, sir,” said Villefort, addressing himself to his future +son-in-law, “excepting the loss of a portion of your hopes, this +unexpected will need not personally wound you; M. Noirtier’s weakness +of mind sufficiently explains it. It is not because Mademoiselle +Valentine is going to marry you that he is angry, but because she will +marry, a union with any other would have caused him the same sorrow. +Old age is selfish, sir, and Mademoiselle de Villefort has been a +faithful companion to M. Noirtier, which she cannot be when she becomes +the Baroness d’Épinay. My father’s melancholy state prevents our +speaking to him on any subjects, which the weakness of his mind would +incapacitate him from understanding, and I am perfectly convinced that +at the present time, although, he knows that his granddaughter is going +to be married, M. Noirtier has even forgotten the name of his intended +grandson.” M. de Villefort had scarcely said this, when the door +opened, and Barrois appeared. + +“Gentlemen,” said he, in a tone strangely firm for a servant speaking +to his masters under such solemn circumstances,—“gentlemen, M. Noirtier +de Villefort wishes to speak immediately to M. Franz de Quesnel, baron +d’Épinay.” He, as well as the notary, that there might be no mistake in +the person, gave all his titles to the bridegroom elect. + +Villefort started, Madame de Villefort let her son slip from her knees, +Valentine rose, pale and dumb as a statue. Albert and Château-Renaud +exchanged a second look, more full of amazement than the first. The +notary looked at Villefort. + +“It is impossible,” said the procureur. “M. d’Épinay cannot leave the +drawing-room at present.” + +“It is at this moment,” replied Barrois with the same firmness, “that +M. Noirtier, my master, wishes to speak on important subjects to M. +Franz d’Épinay.” + +“Grandpapa Noirtier can speak now, then,” said Edward, with his +habitual quickness. However, his remark did not make Madame de +Villefort even smile, so much was every mind engaged, and so solemn was +the situation. + +“Tell M. Nortier,” resumed Villefort, “that what he demands is +impossible.” + +“Then, M. Nortier gives notice to these gentlemen,” replied Barrois, +“that he will give orders to be carried to the drawing-room.” + +Astonishment was at its height. Something like a smile was perceptible +on Madame de Villefort’s countenance. Valentine instinctively raised +her eyes, as if to thank heaven. + +“Pray go, Valentine,” said; M. de Villefort, “and see what this new +fancy of your grandfather’s is.” Valentine rose quickly, and was +hastening joyfully towards the door, when M. de Villefort altered his +intention. + +“Stop,” said he; “I will go with you.” + +“Excuse me, sir,” said Franz, “since M. Noirtier sent for me, I am +ready to attend to his wish; besides, I shall be happy to pay my +respects to him, not having yet had the honor of doing so.” + +“Pray, sir,” said Villefort with marked uneasiness, “do not disturb +yourself.” + +40032m + + + +“Forgive me, sir,” said Franz in a resolute tone. “I would not lose +this opportunity of proving to M. Noirtier how wrong it would be of him +to encourage feelings of dislike to me, which I am determined to +conquer, whatever they may be, by my devotion.” + +And without listening to Villefort he arose, and followed Valentine, +who was running downstairs with the joy of a shipwrecked mariner who +finds a rock to cling to. M. de Villefort followed them. Château-Renaud +and Morcerf exchanged a third look of still increasing wonder. + + + + Chapter 75. A Signed Statement + +Noirtier was prepared to receive them, dressed in black, and installed +in his armchair. When the three persons he expected had entered, he +looked at the door, which his valet immediately closed. + +“Listen,” whispered Villefort to Valentine, who could not conceal her +joy; “if M. Noirtier wishes to communicate anything which would delay +your marriage, I forbid you to understand him.” + +Valentine blushed, but did not answer. Villefort, approached Noirtier. + +“Here is M. Franz d’Épinay,” said he; “you requested to see him. We +have all wished for this interview, and I trust it will convince you +how ill-formed are your objections to Valentine’s marriage.” + +Noirtier answered only by a look which made Villefort’s blood run cold. +He motioned to Valentine to approach. In a moment, thanks to her habit +of conversing with her grandfather, she understood that he asked for a +key. Then his eye was fixed on the drawer of a small chest between the +windows. She opened the drawer, and found a key; and, understanding +that was what he wanted, again watched his eyes, which turned toward an +old secretaire which had been neglected for many years and was supposed +to contain nothing but useless documents. + +“Shall I open the secretaire?” asked Valentine. + +“Yes,” said the old man. + +“And the drawers?” + +“Yes.” + +“Those at the side?” + +“No.” + +“The middle one?” + +“Yes.” + +Valentine opened it and drew out a bundle of papers. “Is that what you +wish for?” asked she. + +“No.” + +She took successively all the other papers out till the drawer was +empty. “But there are no more,” said she. Noirtier’s eye was fixed on +the dictionary. + +“Yes, I understand, grandfather,” said the young girl. + +40036m + + + +She pointed to each letter of the alphabet. At the letter S the old man +stopped her. She opened, and found the word “secret.” + +“Ah! is there a secret spring?” said Valentine. + +“Yes,” said Noirtier. + +“And who knows it?” Noirtier looked at the door where the servant had +gone out. + +“Barrois?” said she. + +“Yes.” + +“Shall I call him?” + +“Yes.” + +Valentine went to the door, and called Barrois. Villefort’s impatience +during this scene made the perspiration roll from his forehead, and +Franz was stupefied. The old servant came. + +“Barrois,” said Valentine, “my grandfather has told me to open that +drawer in the secretaire, but there is a secret spring in it, which you +know—will you open it?” + +Barrois looked at the old man. “Obey,” said Noirtier’s intelligent eye. +Barrois touched a spring, the false bottom came out, and they saw a +bundle of papers tied with a black string. + +“Is that what you wish for?” said Barrois. + +“Yes.” + +“Shall I give these papers to M. de Villefort?” + +“No.” + +“To Mademoiselle Valentine?” + +“No.” + +“To M. Franz d’Épinay?” + +“Yes.” + +Franz, astonished, advanced a step. “To me, sir?” said he. + +“Yes.” + +Franz took them from Barrois and casting a glance at the cover, read: + +“‘To be given, after my death, to General Durand, who shall bequeath +the packet to his son, with an injunction to preserve it as containing +an important document.’ + +“Well, sir,” asked Franz, “what do you wish me to do with this paper?” + +“To preserve it, sealed up as it is, doubtless,” said the procureur. + +“No,” replied Noirtier eagerly. + +“Do you wish him to read it?” said Valentine. + +“Yes,” replied the old man. + +“You understand, baron, my grandfather wishes you to read this paper,” +said Valentine. + +“Then let us sit down,” said Villefort impatiently, “for it will take +some time.” + +“Sit down,” said the old man. Villefort took a chair, but Valentine +remained standing by her father’s side, and Franz before him, holding +the mysterious paper in his hand. “Read,” said the old man. Franz +untied it, and in the midst of the most profound silence read: + +40038m + + + +“‘_Extract of the report of a meeting of the Bonapartist Club in the +Rue Saint-Jacques, held February 5th, 1815_.’” + +Franz stopped. “February 5th, 1815!” said he; “it is the day my father +was murdered.” Valentine and Villefort were dumb; the eye of the old +man alone seemed to say clearly, “Go on.” + +“But it was on leaving this club,” said he, “my father disappeared.” + +Noirtier’s eye continued to say, “Read.” He resumed:— + +“‘The undersigned Louis-Jacques Beaurepaire, lieutenant-colonel of +artillery, Étienne Duchampy, general of brigade, and Claude Lecharpal, +keeper of woods and forests, declare, that on the 4th of February, a +letter arrived from the Island of Elba, recommending to the kindness +and the confidence of the Bonapartist Club, General Flavien de Quesnel, +who having served the emperor from 1804 to 1814 was supposed to be +devoted to the interests of the Napoleon dynasty, notwithstanding the +title of baron which Louis XVIII. had just granted to him with his +estate of Épinay. + +400340m + + + +“‘A note was in consequence addressed to General de Quesnel, begging +him to be present at the meeting next day, the 5th. The note indicated +neither the street nor the number of the house where the meeting was to +be held; it bore no signature, but it announced to the general that +someone would call for him if he would be ready at nine o’clock. The +meetings were always held from that time till midnight. At nine o’clock +the president of the club presented himself; the general was ready, the +president informed him that one of the conditions of his introduction +was that he should be eternally ignorant of the place of meeting, and +that he would allow his eyes to be bandaged, swearing that he would not +endeavor to take off the bandage. General de Quesnel accepted the +condition, and promised on his honor not to seek to discover the road +they took. The general’s carriage was ready, but the president told him +it was impossible for him to use it, since it was useless to blindfold +the master if the coachman knew through what streets he went. “What +must be done then?” asked the general.—“I have my carriage here,” said +the president. + +“‘“Have you, then, so much confidence in your servant that you can +intrust him with a secret you will not allow me to know?” + +“‘“Our coachman is a member of the club,” said the president; “we shall +be driven by a State-Councillor.” + +“‘“Then we run another risk,” said the general, laughing, “that of +being upset.” We insert this joke to prove that the general was not in +the least compelled to attend the meeting, but that he came willingly. +When they were seated in the carriage the president reminded the +general of his promise to allow his eyes to be bandaged, to which he +made no opposition. On the road the president thought he saw the +general make an attempt to remove the handkerchief, and reminded him of +his oath. “Sure enough,” said the general. The carriage stopped at an +alley leading out of the Rue Saint-Jacques. The general alighted, +leaning on the arm of the president, of whose dignity he was not aware, +considering him simply as a member of the club; they went through the +alley, mounted a flight of stairs, and entered the assembly-room. + +“‘The deliberations had already begun. The members, apprised of the +sort of presentation which was to be made that evening, were all in +attendance. When in the middle of the room the general was invited to +remove his bandage, he did so immediately, and was surprised to see so +many well-known faces in a society of whose existence he had till then +been ignorant. They questioned him as to his sentiments, but he +contented himself with answering, that the letters from the Island of +Elba ought to have informed them——’” + +Franz interrupted himself by saying, “My father was a royalist; they +need not have asked his sentiments, which were well known.” + +“And hence,” said Villefort, “arose my affection for your father, my +dear M. Franz. Opinions held in common are a ready bond of union.” + +“Read again,” said the old man. + +Franz continued: + +“‘The president then sought to make him speak more explicitly, but M. +de Quesnel replied that he wished first to know what they wanted with +him. He was then informed of the contents of the letter from the Island +of Elba, in which he was recommended to the club as a man who would be +likely to advance the interests of their party. One paragraph spoke of +the return of Bonaparte and promised another letter and further +details, on the arrival of the _Pharaon_ belonging to the shipbuilder +Morrel, of Marseilles, whose captain was entirely devoted to the +emperor. During all this time, the general, on whom they thought to +have relied as on a brother, manifested evidently signs of discontent +and repugnance. When the reading was finished, he remained silent, with +knitted brows. + +“‘“Well,” asked the president, “what do you say to this letter, +general?” + +“‘“I say that it is too soon after declaring myself for Louis XVIII. to +break my vow in behalf of the ex-emperor.” This answer was too clear to +permit of any mistake as to his sentiments. “General,” said the +president, “we acknowledge no King Louis XVIII., or an ex-emperor, but +his majesty the emperor and king, driven from France, which is his +kingdom, by violence and treason.” + +“‘“Excuse me, gentlemen,” said the general; “you may not acknowledge +Louis XVIII., but I do, as he has made me a baron and a field-marshal, +and I shall never forget that for these two titles I am indebted to his +happy return to France.” + +“‘“Sir,” said the president, rising with gravity, “be careful what you +say; your words clearly show us that they are deceived concerning you +in the Island of Elba, and have deceived us! The communication has been +made to you in consequence of the confidence placed in you, and which +does you honor. Now we discover our error; a title and promotion attach +you to the government we wish to overturn. We will not constrain you to +help us; we enroll no one against his conscience, but we will compel +you to act generously, even if you are not disposed to do so.” + +“‘“You would call acting generously, knowing your conspiracy and not +informing against you, that is what I should call becoming your +accomplice. You see I am more candid than you.”’” + +“Ah, my father!” said Franz, interrupting himself. “I understand now +why they murdered him.” Valentine could not help casting one glance +towards the young man, whose filial enthusiasm it was delightful to +behold. Villefort walked to and fro behind them. Noirtier watched the +expression of each one, and preserved his dignified and commanding +attitude. Franz returned to the manuscript, and continued: + +“‘“Sir,” said the president, “you have been invited to join this +assembly—you were not forced here; it was proposed to you to come +blindfolded—you accepted. When you complied with this twofold request +you well knew we did not wish to secure the throne of Louis XVIII., or +we should not take so much care to avoid the vigilance of the police. +It would be conceding too much to allow you to put on a mask to aid you +in the discovery of our secret, and then to remove it that you may ruin +those who have confided in you. No, no, you must first say if you +declare yourself for the king of a day who now reigns, or for his +majesty the emperor.” + +“‘“I am a royalist,” replied the general; “I have taken the oath of +allegiance to Louis XVIII., and I will adhere to it.” These words were +followed by a general murmur, and it was evident that several of the +members were discussing the propriety of making the general repent of +his rashness. + +“‘The president again arose, and having imposed silence, said,—“Sir, +you are too serious and too sensible a man not to understand the +consequences of our present situation, and your candor has already +dictated to us the conditions which remain for us to offer you.” The +general, putting his hand on his sword, exclaimed,—“If you talk of +honor, do not begin by disavowing its laws, and impose nothing by +violence.” + +“‘“And you, sir,” continued the president, with a calmness still more +terrible than the general’s anger, “I advise you not to touch your +sword.” The general looked around him with slight uneasiness; however +he did not yield, but calling up all his fortitude, said,—“I will not +swear.” + +“‘“Then you must die,” replied the president calmly. M. d’Épinay became +very pale; he looked round him a second time, several members of the +club were whispering, and getting their arms from under their cloaks. +“General,” said the president, “do not alarm yourself; you are among +men of honor who will use every means to convince you before resorting +to the last extremity, but as you have said, you are among +conspirators, you are in possession of our secret, and you must restore +it to us.” A significant silence followed these words, and as the +general did not reply,—“Close the doors,” said the president to the +door-keeper. + +40042m + + + +“‘The same deadly silence succeeded these words. Then the general +advanced, and making a violent effort to control his feelings,—“I have +a son,” said he, “and I ought to think of him, finding myself among +assassins.” + +“‘“General,” said the chief of the assembly, “one man may insult +fifty—it is the privilege of weakness. But he does wrong to use his +privilege. Follow my advice, swear, and do not insult.” The general, +again daunted by the superiority of the chief, hesitated a moment; then +advancing to the president’s desk,—“What is the form, said he. + +“‘“It is this:—‘I swear by my honor not to reveal to anyone what I have +seen and heard on the 5th of February, 1815, between nine and ten +o’clock in the evening; and I plead guilty of death should I ever +violate this oath.’” The general appeared to be affected by a nervous +tremor, which prevented his answering for some moments; then, +overcoming his manifest repugnance, he pronounced the required oath, +but in so low a tone as to be scarcely audible to the majority of the +members, who insisted on his repeating it clearly and distinctly, which +he did. + +“‘“Now am I at liberty to retire?” said the general. The president +rose, appointed three members to accompany him, and got into the +carriage with the general after bandaging his eyes. One of those three +members was the coachman who had driven them there. The other members +silently dispersed. “Where do you wish to be taken?” asked the +president.—“Anywhere out of your presence,” replied M. d’Épinay. +“Beware, sir,” replied the president, “you are no longer in the +assembly, and have only to do with individuals; do not insult them +unless you wish to be held responsible.” But instead of listening, M. +d’Épinay went on,—“You are still as brave in your carriage as in your +assembly because you are still four against one.” The president stopped +the coach. They were at that part of the Quai des Ormes where the steps +lead down to the river. “Why do you stop here?” asked d’Épinay. + +“‘“Because, sir,” said the president, “you have insulted a man, and +that man will not go one step farther without demanding honorable +reparation.” + +“‘“Another method of assassination?” said the general, shrugging his +shoulders. + +“‘“Make no noise, sir, unless you wish me to consider you as one of the +men of whom you spoke just now as cowards, who take their weakness for +a shield. You are alone, one alone shall answer you; you have a sword +by your side, I have one in my cane; you have no witness, one of these +gentlemen will serve you. Now, if you please, remove your bandage.” The +general tore the handkerchief from his eyes. “At last,” said he, “I +shall know with whom I have to do.” They opened the door and the four +men alighted.’” + +Franz again interrupted himself, and wiped the cold drops from his +brow; there was something awful in hearing the son read aloud in +trembling pallor these details of his father’s death, which had +hitherto been a mystery. Valentine clasped her hands as if in prayer. +Noirtier looked at Villefort with an almost sublime expression of +contempt and pride. + +Franz continued: + +“‘It was, as we said, the fifth of February. For three days the mercury +had been five or six degrees below freezing and the steps were covered +with ice. The general was stout and tall, the president offered him the +side of the railing to assist him in getting down. The two witnesses +followed. It was a dark night. The ground from the steps to the river +was covered with snow and hoarfrost, the water of the river looked +black and deep. One of the seconds went for a lantern in a coal-barge +near, and by its light they examined the weapons. The president’s +sword, which was simply, as he had said, one he carried in his cane, +was five inches shorter than the general’s, and had no guard. The +general proposed to cast lots for the swords, but the president said it +was he who had given the provocation, and when he had given it he had +supposed each would use his own arms. The witnesses endeavored to +insist, but the president bade them be silent. The lantern was placed +on the ground, the two adversaries took their stations, and the duel +began. The light made the two swords appear like flashes of lightning; +as for the men, they were scarcely perceptible, the darkness was so +great. + +40044m + + + +“‘General d’Épinay passed for one of the best swordsmen in the army, +but he was pressed so closely in the onset that he missed his aim and +fell. The witnesses thought he was dead, but his adversary, who knew he +had not struck him, offered him the assistance of his hand to rise. The +circumstance irritated instead of calming the general, and he rushed on +his adversary. But his opponent did not allow his guard to be broken. +He received him on his sword and three times the general drew back on +finding himself too closely engaged, and then returned to the charge. +At the third he fell again. They thought he slipped, as at first, and +the witnesses, seeing he did not move, approached and endeavored to +raise him, but the one who passed his arm around the body found it was +moistened with blood. The general, who had almost fainted, revived. +“Ah,” said he, “they have sent some fencing-master to fight with me.” +The president, without answering, approached the witness who held the +lantern, and raising his sleeve, showed him two wounds he had received +in his arm; then opening his coat, and unbuttoning his waistcoat, +displayed his side, pierced with a third wound. Still he had not even +uttered a sigh. General d’Épinay died five minutes after.’” + +Franz read these last words in a voice so choked that they were hardly +audible, and then stopped, passing his hand over his eyes as if to +dispel a cloud; but after a moment’s silence, he continued: + +“‘The president went up the steps, after pushing his sword into his +cane; a track of blood on the snow marked his course. He had scarcely +arrived at the top when he heard a heavy splash in the water—it was the +general’s body, which the witnesses had just thrown into the river +after ascertaining that he was dead. The general fell, then, in a loyal +duel, and not in ambush as it might have been reported. In proof of +this we have signed this paper to establish the truth of the facts, +lest the moment should arrive when either of the actors in this +terrible scene should be accused of premeditated murder or of +infringement of the laws of honor. + +“‘Signed, Beaurepaire, Duchampy, and Lecharpal.’” + +When Franz had finished reading this account, so dreadful for a son; +when Valentine, pale with emotion, had wiped away a tear; when +Villefort, trembling, and crouched in a corner, had endeavored to +lessen the storm by supplicating glances at the implacable old man,— + +“Sir,” said d’Épinay to Noirtier, “since you are well acquainted with +all these details, which are attested by honorable signatures,—since +you appear to take some interest in me, although you have only +manifested it hitherto by causing me sorrow, refuse me not one final +satisfaction—tell me the name of the president of the club, that I may +at least know who killed my father.” + +Villefort mechanically felt for the handle of the door; Valentine, who +understood sooner than anyone her grandfather’s answer, and who had +often seen two scars upon his right arm, drew back a few steps. + +“Mademoiselle,” said Franz, turning towards Valentine, “unite your +efforts with mine to find out the name of the man who made me an orphan +at two years of age.” Valentine remained dumb and motionless. + +“Hold, sir,” said Villefort, “do not prolong this dreadful scene. The +names have been purposely concealed; my father himself does not know +who this president was, and if he knows, he cannot tell you; proper +names are not in the dictionary.” + +“Oh, misery,” cried Franz: “the only hope which sustained me and +enabled me to read to the end was that of knowing, at least, the name +of him who killed my father! Sir, sir,” cried he, turning to Noirtier, +“do what you can—make me understand in some way!” + +“Yes,” replied Noirtier. + +“Oh, mademoiselle, mademoiselle!” cried Franz, “your grandfather says +he can indicate the person. Help me,—lend me your assistance!” + +Noirtier looked at the dictionary. Franz took it with a nervous +trembling, and repeated the letters of the alphabet successively, until +he came to M. At that letter the old man signified “Yes.” + +“M,” repeated Franz. The young man’s finger, glided over the words, but +at each one Noirtier answered by a negative sign. Valentine hid her +head between her hands. At length, Franz arrived at the word MYSELF. + +40046m + + + +“Yes!” + +“You!” cried Franz, whose hair stood on end; “you, M. Noirtier—you +killed my father?” + +“Yes!” replied Noirtier, fixing a majestic look on the young man. Franz +fell powerless on a chair; Villefort opened the door and escaped, for +the idea had entered his mind to stifle the little remaining life in +the heart of this terrible old man. + + + + + Chapter 76. Progress of Cavalcanti the Younger + +Meanwhile M. Cavalcanti the elder had returned to his service, not in +the army of his majesty the Emperor of Austria, but at the gaming-table +of the baths of Lucca, of which he was one of the most assiduous +courtiers. He had spent every farthing that had been allowed for his +journey as a reward for the majestic and solemn manner in which he had +maintained his assumed character of father. + +M. Andrea at his departure inherited all the papers which proved that +he had indeed the honor of being the son of the Marquis Bartolomeo and +the Marchioness Oliva Corsinari. He was now fairly launched in that +Parisian society which gives such ready access to foreigners, and +treats them, not as they really are, but as they wish to be considered. +Besides, what is required of a young man in Paris? To speak its +language tolerably, to make a good appearance, to be a good gamester, +and to pay in cash. They are certainly less particular with a foreigner +than with a Frenchman. Andrea had, then, in a fortnight, attained a +very fair position. He was called count, he was said to possess 50,000 +livres per annum; and his father’s immense riches, buried in the +quarries of Saravezza, were a constant theme. A learned man, before +whom the last circumstance was mentioned as a fact, declared he had +seen the quarries in question, which gave great weight to assertions +hitherto somewhat doubtful, but which now assumed the garb of reality. + +Such was the state of society in Paris at the period we bring before +our readers, when Monte Cristo went one evening to pay M. Danglars a +visit. M. Danglars was out, but the count was asked to go and see the +baroness, and he accepted the invitation. It was never without a +nervous shudder, since the dinner at Auteuil, and the events which +followed it, that Madame Danglars heard Monte Cristo’s name announced. +If he did not come, the painful sensation became most intense; if, on +the contrary, he appeared, his noble countenance, his brilliant eyes, +his amiability, his polite attention even towards Madame Danglars, soon +dispelled every impression of fear. It appeared impossible to the +baroness that a man of such delightfully pleasing manners should +entertain evil designs against her; besides, the most corrupt minds +only suspect evil when it would answer some interested end—useless +injury is repugnant to every mind. + +40048m + + + +When Monte Cristo entered the boudoir, to which we have already once +introduced our readers, and where the baroness was examining some +drawings, which her daughter passed to her after having looked at them +with M. Cavalcanti, his presence soon produced its usual effect, and it +was with smiles that the baroness received the count, although she had +been a little disconcerted at the announcement of his name. The latter +took in the whole scene at a glance. + +The baroness was partially reclining on a sofa, Eugénie sat near her, +and Cavalcanti was standing. Cavalcanti, dressed in black, like one of +Goethe’s heroes, with varnished shoes and white silk open-worked +stockings, passed a white and tolerably nice-looking hand through his +light hair, and so displayed a sparkling diamond, that in spite of +Monte Cristo’s advice the vain young man had been unable to resist +putting on his little finger. This movement was accompanied by killing +glances at Mademoiselle Danglars, and by sighs launched in the same +direction. + +Mademoiselle Danglars was still the same—cold, beautiful, and +satirical. Not one of these glances, nor one sigh, was lost on her; +they might have been said to fall on the shield of Minerva, which some +philosophers assert protected sometimes the breast of Sappho. Eugénie +bowed coldly to the count, and availed herself of the first moment when +the conversation became earnest to escape to her study, whence very +soon two cheerful and noisy voices being heard in connection with +occasional notes of the piano assured Monte Cristo that Mademoiselle +Danglars preferred to his society and to that of M. Cavalcanti the +company of Mademoiselle Louise d’Armilly, her singing teacher. + +It was then, especially while conversing with Madame Danglars, and +apparently absorbed by the charm of the conversation, that the count +noticed M. Andrea Cavalcanti’s solicitude, his manner of listening to +the music at the door he dared not pass, and of manifesting his +admiration. + +The banker soon returned. His first look was certainly directed towards +Monte Cristo, but the second was for Andrea. As for his wife, he bowed +to her, as some husbands do to their wives, but in a way that bachelors +will never comprehend, until a very extensive code is published on +conjugal life. + +“Have not the ladies invited you to join them at the piano?” said +Danglars to Andrea. + +“Alas, no, sir,” replied Andrea with a sigh, still more remarkable than +the former ones. Danglars immediately advanced towards the door and +opened it. + +40050m + + + +The two young ladies were seen seated on the same chair, at the piano, +accompanying themselves, each with one hand, a fancy to which they had +accustomed themselves, and performed admirably. Mademoiselle d’Armilly, +whom they then perceived through the open doorway, formed with Eugénie +one of the _tableaux vivants_ of which the Germans are so fond. She was +somewhat beautiful, and exquisitely formed—a little fairy-like figure, +with large curls falling on her neck, which was rather too long, as +Perugino sometimes makes his Virgins, and her eyes dull from fatigue. +She was said to have a weak chest, and like Antonia in the _Cremona +Violin_, she would die one day while singing. + +Monte Cristo cast one rapid and curious glance round this sanctum; it +was the first time he had ever seen Mademoiselle d’Armilly, of whom he +had heard much. + +“Well,” said the banker to his daughter, “are we then all to be +excluded?” + +He then led the young man into the study, and either by chance or +manœuvre the door was partially closed after Andrea, so that from the +place where they sat neither the Count nor the baroness could see +anything; but as the banker had accompanied Andrea, Madame Danglars +appeared to take no notice of it. + +The count soon heard Andrea’s voice, singing a Corsican song, +accompanied by the piano. While the count smiled at hearing this song, +which made him lose sight of Andrea in the recollection of Benedetto, +Madame Danglars was boasting to Monte Cristo of her husband’s strength +of mind, who that very morning had lost three or four hundred thousand +francs by a failure at Milan. The praise was well deserved, for had not +the count heard it from the baroness, or by one of those means by which +he knew everything, the baron’s countenance would not have led him to +suspect it. + +“Hem,” thought Monte Cristo, “he begins to conceal his losses; a month +since he boasted of them.” + +Then aloud,—“Oh, madame, M. Danglars is so skilful, he will soon regain +at the Bourse what he loses elsewhere.” + +“I see that you participate in a prevalent error,” said Madame +Danglars. + +“What is it?” said Monte Cristo. + +“That M. Danglars speculates, whereas he never does.” + +“Truly, madame, I recollect M. Debray told me——apropos, what has become +of him? I have seen nothing of him the last three or four days.” + +“Nor I,” said Madame Danglars; “but you began a sentence, sir, and did +not finish.” + +“Which?” + +“M. Debray had told you——” + +“Ah, yes; he told me it was you who sacrificed to the demon of +speculation.” + +“I was once very fond of it, but I do not indulge now.” + +“Then you are wrong, madame. Fortune is precarious; and if I were a +woman and fate had made me a banker’s wife, whatever might be my +confidence in my husband’s good fortune, still in speculation you know +there is great risk. Well, I would secure for myself a fortune +independent of him, even if I acquired it by placing my interests in +hands unknown to him.” Madame Danglars blushed, in spite of all her +efforts. + +“Stay,” said Monte Cristo, as though he had not observed her confusion, +“I have heard of a lucky hit that was made yesterday on the Neapolitan +bonds.” + +“I have none—nor have I ever possessed any; but really we have talked +long enough of money, count, we are like two stockbrokers; have you +heard how fate is persecuting the poor Villeforts?” + +“What has happened?” said the count, simulating total ignorance. + +“You know the Marquis of Saint-Méran died a few days after he had set +out on his journey to Paris, and the marchioness a few days after her +arrival?” + +“Yes,” said Monte Cristo, “I have heard that; but, as Claudius said to +Hamlet, ‘it is a law of nature; their fathers died before them, and +they mourned their loss; they will die before their children, who will, +in their turn, grieve for them.’” + +“But that is not all.” + +“Not all!” + +“No; they were going to marry their daughter——” + +“To M. Franz d’Épinay. Is it broken off?” + +“Yesterday morning, it appears, Franz declined the honor.” + +“Indeed? And is the reason known?” + +“No.” + +“How extraordinary! And how does M. de Villefort bear it?” + +“As usual. Like a philosopher.” + +Danglars returned at this moment alone. + +“Well,” said the baroness, “do you leave M. Cavalcanti with your +daughter?” + +“And Mademoiselle d’Armilly,” said the banker; “do you consider her no +one?” Then, turning to Monte Cristo, he said, “Prince Cavalcanti is a +charming young man, is he not? But is he really a prince?” + +“I will not answer for it,” said Monte Cristo. “His father was +introduced to me as a marquis, so he ought to be a count; but I do not +think he has much claim to that title.” + +“Why?” said the banker. “If he is a prince, he is wrong not to maintain +his rank; I do not like anyone to deny his origin.” + +“Oh, you are a thorough democrat,” said Monte Cristo, smiling. + +“But do you see to what you are exposing yourself?” said the baroness. +“If, perchance, M. de Morcerf came, he would find M. Cavalcanti in that +room, where he, the betrothed of Eugénie, has never been admitted.” + +“You may well say, perchance,” replied the banker; “for he comes so +seldom, it would seem only chance that brings him.” + +“But should he come and find that young man with your daughter, he +might be displeased.” + +“He? You are mistaken. M. Albert would not do us the honor to be +jealous; he does not like Eugénie sufficiently. Besides, I care not for +his displeasure.” + +“Still, situated as we are——” + +“Yes, do you know how we are situated? At his mother’s ball he danced +once with Eugénie, and M. Cavalcanti three times, and he took no notice +of it.” + +The valet announced the Vicomte Albert de Morcerf. The baroness rose +hastily, and was going into the study, when Danglars stopped her. + +“Let her alone,” said he. + +She looked at him in amazement. Monte Cristo appeared to be unconscious +of what passed. Albert entered, looking very handsome and in high +spirits. He bowed politely to the baroness, familiarly to Danglars, and +affectionately to Monte Cristo. Then turning to the baroness: “May I +ask how Mademoiselle Danglars is?” said he. + +“She is quite well,” replied Danglars quickly; “she is at the piano +with M. Cavalcanti.” + +Albert retained his calm and indifferent manner; he might feel perhaps +annoyed, but he knew Monte Cristo’s eye was on him. “M. Cavalcanti has +a fine tenor voice,” said he, “and Mademoiselle Eugénie a splendid +soprano, and then she plays the piano like Thalberg. The concert must +be a delightful one.” + +“They suit each other remarkably well,” said Danglars. Albert appeared +not to notice this remark, which was, however, so rude that Madame +Danglars blushed. + +“I, too,” said the young man, “am a musician—at least, my masters used +to tell me so; but it is strange that my voice never would suit any +other, and a soprano less than any.” + +Danglars smiled, and seemed to say, “It is of no consequence.” Then, +hoping doubtless to effect his purpose, he said,—“The prince and my +daughter were universally admired yesterday. You were not of the party, +M. de Morcerf?” + +“What prince?” asked Albert. + +“Prince Cavalcanti,” said Danglars, who persisted in giving the young +man that title. + +“Pardon me,” said Albert, “I was not aware that he was a prince. And +Prince Cavalcanti sang with Mademoiselle Eugénie yesterday? It must +have been charming, indeed. I regret not having heard them. But I was +unable to accept your invitation, having promised to accompany my +mother to a German concert given by the Baroness of Château-Renaud.” + +This was followed by rather an awkward silence. + +“May I also be allowed,” said Morcerf, “to pay my respects to +Mademoiselle Danglars?” + +“Wait a moment,” said the banker, stopping the young man; “do you hear +that delightful cavatina? Ta, ta, ta, ti, ta, ti, ta, ta; it is +charming, let them finish—one moment. Bravo, bravi, brava!” The banker +was enthusiastic in his applause. + +40054m + + + +“Indeed,” said Albert, “it is exquisite; it is impossible to understand +the music of his country better than Prince Cavalcanti does. You said +prince, did you not? But he can easily become one, if he is not +already; it is no uncommon thing in Italy. But to return to the +charming musicians—you should give us a treat, Danglars, without +telling them there is a stranger. Ask them to sing one more song; it is +so delightful to hear music in the distance, when the musicians are +unrestrained by observation.” + +Danglars was quite annoyed by the young man’s indifference. He took +Monte Cristo aside. + +“What do you think of our lover?” said he. + +“He appears cool. But, then your word is given.” + +“Yes, doubtless I have promised to give my daughter to a man who loves +her, but not to one who does not. See him there, cold as marble and +proud like his father. If he were rich, if he had Cavalcanti’s fortune, +that might be pardoned. _Ma foi_, I haven’t consulted my daughter; but +if she has good taste——” + +“Oh,” said Monte Cristo, “my fondness may blind me, but I assure you I +consider Morcerf a charming young man who will render your daughter +happy and will sooner or later attain a certain amount of distinction, +and his father’s position is good.” + +“Hem,” said Danglars. + +“Why do you doubt?” + +“The past—that obscurity on the past.” + +“But that does not affect the son.” + +“Very true.” + +“Now, I beg of you, don’t go off your head. It’s a month now that you +have been thinking of this marriage, and you must see that it throws +some responsibility on me, for it was at my house you met this young +Cavalcanti, whom I do not really know at all.” + +“But I do.” + +“Have you made inquiry?” + +“Is there any need of that! Does not his appearance speak for him? And +he is very rich.” + +“I am not so sure of that.” + +“And yet you said he had money.” + +“Fifty thousand livres—a mere trifle.” + +“He is well educated.” + +“Hem,” said Monte Cristo in his turn. + +“He is a musician.” + +“So are all Italians.” + +“Come, count, you do not do that young man justice.” + +“Well, I acknowledge it annoys me, knowing your connection with the +Morcerf family, to see him throw himself in the way.” Danglars burst +out laughing. + +“What a Puritan you are!” said he; “that happens every day.” + +“But you cannot break it off in this way; the Morcerfs are depending on +this union.” + +“Indeed.” + +“Positively.” + +“Then let them explain themselves; you should give the father a hint, +you are so intimate with the family.” + +“I?—where the devil did you find out that?” + +“At their ball; it was apparent enough. Why, did not the countess, the +proud Mercédès, the disdainful Catalane, who will scarcely open her +lips to her oldest acquaintances, take your arm, lead you into the +garden, into the private walks, and remain there for half an hour?” + +“Ah, baron, baron,” said Albert, “you are not listening—what barbarism +in a megalomaniac like you!” + +“Oh, don’t worry about me, Sir Mocker,” said Danglars; then turning to +Monte Cristo he said: + +“But will you undertake to speak to the father?” + +“Willingly, if you wish it.” + +“But let it be done explicitly and positively. If he demands my +daughter let him fix the day—declare his conditions; in short, let us +either understand each other, or quarrel. You understand—no more +delay.” + +“Yes, sir, I will give my attention to the subject.” + +“I do not say that I await with pleasure his decision, but I do await +it. A banker must, you know, be a slave to his promise.” And Danglars +sighed as M. Cavalcanti had done half an hour before. + +“Bravi! bravo! brava!” cried Morcerf, parodying the banker, as the +selection came to an end. Danglars began to look suspiciously at +Morcerf, when someone came and whispered a few words to him. + +“I shall soon return,” said the banker to Monte Cristo; “wait for me. I +shall, perhaps, have something to say to you.” And he went out. + +The baroness took advantage of her husband’s absence to push open the +door of her daughter’s study, and M. Andrea, who was sitting before the +piano with Mademoiselle Eugénie, started up like a jack-in-the-box. +Albert bowed with a smile to Mademoiselle Danglars, who did not appear +in the least disturbed, and returned his bow with her usual coolness. +Cavalcanti was evidently embarrassed; he bowed to Morcerf, who replied +with the most impertinent look possible. Then Albert launched out in +praise of Mademoiselle Danglars’ voice, and on his regret, after what +he had just heard, that he had been unable to be present the previous +evening. + +Cavalcanti, being left alone, turned to Monte Cristo. + +“Come,” said Madame Danglars, “leave music and compliments, and let us +go and take tea.” + +“Come, Louise,” said Mademoiselle Danglars to her friend. + +They passed into the next drawing-room, where tea was prepared. Just as +they were beginning, in the English fashion, to leave the spoons in +their cups, the door again opened and Danglars entered, visibly +agitated. Monte Cristo observed it particularly, and by a look asked +the banker for an explanation. + +“I have just received my courier from Greece,” said Danglars. + +“Ah, yes,” said the count; “that was the reason of your running away +from us.” + +“Yes.” + +“How is King Otho getting on?” asked Albert in the most sprightly tone. + +Danglars cast another suspicious look towards him without answering, +and Monte Cristo turned away to conceal the expression of pity which +passed over his features, but which was gone in a moment. + +“We shall go together, shall we not?” said Albert to the count. + +“If you like,” replied the latter. + +Albert could not understand the banker’s look, and turning to Monte +Cristo, who understood it perfectly,—“Did you see,” said he, “how he +looked at me?” + +“Yes,” said the count; “but did you think there was anything particular +in his look?” + +“Indeed, I did; and what does he mean by his news from Greece?” + +“How can I tell you?” + +“Because I imagine you have correspondents in that country.” + +Monte Cristo smiled significantly. + +“Stop,” said Albert, “here he comes. I shall compliment Mademoiselle +Danglars on her cameo, while the father talks to you.” + +“If you compliment her at all, let it be on her voice, at least,” said +Monte Cristo. + +“No, everyone would do that.” + +“My dear viscount, you are dreadfully impertinent.” + +Albert advanced towards Eugénie, smiling. + +Meanwhile, Danglars, stooping to Monte Cristo’s ear, “Your advice was +excellent,” said he; “there is a whole history connected with the names +Fernand and Yanina.” + +“Indeed?” said Monte Cristo. + +“Yes, I will tell you all; but take away the young man; I cannot endure +his presence.” + +“He is going with me. Shall I send the father to you?” + +“Immediately.” + +“Very well.” The count made a sign to Albert and they bowed to the +ladies, and took their leave, Albert perfectly indifferent to +Mademoiselle Danglars’ contempt, Monte Cristo reiterating his advice to +Madame Danglars on the prudence a banker’s wife should exercise in +providing for the future. + +M. Cavalcanti remained master of the field. + + + + Chapter 77. Haydée + +Scarcely had the count’s horses cleared the angle of the boulevard, +when Albert, turning towards the count, burst into a loud fit of +laughter—much too loud in fact not to give the idea of its being rather +forced and unnatural. + +“Well,” said he, “I will ask you the same question which Charles IX. +put to Catherine de’ Medici, after the massacre of Saint Bartholomew: +‘How have I played my little part?’” + +“To what do you allude?” asked Monte Cristo. + +“To the installation of my rival at M. Danglars’.” + +“What rival?” + +“_Ma foi!_ what rival? Why, your protégé, M. Andrea Cavalcanti!” + +“Ah, no joking, viscount, if you please; I do not patronize M. +Andrea—at least, not as concerns M. Danglars.” + +“And you would be to blame for not assisting him, if the young man +really needed your help in that quarter, but, happily for me, he can +dispense with it.” + +“What, do you think he is paying his addresses?” + +“I am certain of it; his languishing looks and modulated tones when +addressing Mademoiselle Danglars fully proclaim his intentions. He +aspires to the hand of the proud Eugénie.” + +“What does that signify, so long as they favor your suit?” + +“But it is not the case, my dear count: on the contrary. I am repulsed +on all sides.” + +“What!” + +“It is so indeed; Mademoiselle Eugénie scarcely answers me, and +Mademoiselle d’Armilly, her confidant, does not speak to me at all.” + +“But the father has the greatest regard possible for you,” said Monte +Cristo. + +“He? Oh, no, he has plunged a thousand daggers into my heart, +tragedy-weapons, I own, which instead of wounding sheathe their points +in their own handles, but daggers which he nevertheless believed to be +real and deadly.” + +“Jealousy indicates affection.” + +“True; but I am not jealous.” + +“He is.” + +“Of whom?—of Debray?” + +“No, of you.” + +“Of me? I will engage to say that before a week is past the door will +be closed against me.” + +“You are mistaken, my dear viscount.” + +“Prove it to me.” + +“Do you wish me to do so?” + +“Yes.” + +“Well, I am charged with the commission of endeavoring to induce the +Comte de Morcerf to make some definite arrangement with the baron.” + +“By whom are you charged?” + +“By the baron himself.” + +“Oh,” said Albert with all the cajolery of which he was capable. “You +surely will not do that, my dear count?” + +“Certainly I shall, Albert, as I have promised to do it.” + +“Well,” said Albert, with a sigh, “it seems you are determined to marry +me.” + +“I am determined to try and be on good terms with everybody, at all +events,” said Monte Cristo. “But apropos of Debray, how is it that I +have not seen him lately at the baron’s house?” + +“There has been a misunderstanding.” + +“What, with the baroness?” + +“No, with the baron.” + +“Has he perceived anything?” + +“Ah, that is a good joke!” + +“Do you think he suspects?” said Monte Cristo with charming +artlessness. + +“Where have you come from, my dear count?” said Albert. + +“From Congo, if you will.” + +“It must be farther off than even that.” + +“But what do I know of your Parisian husbands?” + +“Oh, my dear count, husbands are pretty much the same everywhere; an +individual husband of any country is a pretty fair specimen of the +whole race.” + +“But then, what can have led to the quarrel between Danglars and +Debray? They seemed to understand each other so well,” said Monte +Cristo with renewed energy. + +“Ah, now you are trying to penetrate into the mysteries of Isis, in +which I am not initiated. When M. Andrea Cavalcanti has become one of +the family, you can ask him that question.” + +The carriage stopped. + +“Here we are,” said Monte Cristo; “it is only half-past ten o’clock, +come in.” + +“Certainly, I will.” + +“My carriage shall take you back.” + +“No, thank you; I gave orders for my _coupé_ to follow me.” + +“There it is, then,” said Monte Cristo, as he stepped out of the +carriage. They both went into the house; the drawing-room was lighted +up—they went in there. “You will make tea for us, Baptistin,” said the +count. Baptistin left the room without waiting to answer, and in two +seconds reappeared, bringing on a tray, all that his master had +ordered, ready prepared, and appearing to have sprung from the ground, +like the repasts which we read of in fairy tales. + +“Really, my dear count,” said Morcerf, “what I admire in you is, not so +much your riches, for perhaps there are people even wealthier than +yourself, nor is it only your wit, for Beaumarchais might have +possessed as much,—but it is your manner of being served, without any +questions, in a moment, in a second; it is as if they guessed what you +wanted by your manner of ringing, and made a point of keeping +everything you can possibly desire in constant readiness.” + +“What you say is perhaps true; they know my habits. For instance, you +shall see; how do you wish to occupy yourself during tea-time?” + +“_Ma foi_, I should like to smoke.” + +Monte Cristo took the gong and struck it once. In about the space of a +second a private door opened, and Ali appeared, bringing two chibouques +filled with excellent latakia. + +“It is quite wonderful,” said Albert. + +“Oh no, it is as simple as possible,” replied Monte Cristo. “Ali knows +I generally smoke while I am taking my tea or coffee; he has heard that +I ordered tea, and he also knows that I brought you home with me; when +I summoned him he naturally guessed the reason of my doing so, and as +he comes from a country where hospitality is especially manifested +through the medium of smoking, he naturally concludes that we shall +smoke in company, and therefore brings two chibouques instead of +one—and now the mystery is solved.” + +“Certainly you give a most commonplace air to your explanation, but it +is not the less true that you——Ah, but what do I hear?” and Morcerf +inclined his head towards the door, through which sounds seemed to +issue resembling those of a guitar. + +“_Ma foi_, my dear viscount, you are fated to hear music this evening; +you have only escaped from Mademoiselle Danglars’ piano, to be attacked +by Haydée’s guzla.” + +“Haydée—what an adorable name! Are there, then, really women who bear +the name of Haydée anywhere but in Byron’s poems?” + +“Certainly there are. Haydée is a very uncommon name in France, but is +common enough in Albania and Epirus; it is as if you said, for example, +Chastity, Modesty, Innocence,—it is a kind of baptismal name, as you +Parisians call it.” + +“Oh, that is charming,” said Albert, “how I should like to hear my +countrywomen called Mademoiselle Goodness, Mademoiselle Silence, +Mademoiselle Christian Charity! Only think, then, if Mademoiselle +Danglars, instead of being called Claire-Marie-Eugénie, had been named +Mademoiselle Chastity-Modesty-Innocence Danglars; what a fine effect +that would have produced on the announcement of her marriage!” + +“Hush,” said the count, “do not joke in so loud a tone; Haydée may hear +you, perhaps.” + +“And you think she would be angry?” + +“No, certainly not,” said the count with a haughty expression. + +“She is very amiable, then, is she not?” said Albert. + +“It is not to be called amiability, it is her duty; a slave does not +dictate to a master.” + +“Come; you are joking yourself now. Are there any more slaves to be had +who bear this beautiful name?” + +“Undoubtedly.” + +“Really, count, you do nothing, and have nothing like other people. The +slave of the Count of Monte Cristo! Why, it is a rank of itself in +France, and from the way in which you lavish money, it is a place that +must be worth a hundred thousand francs a year.” + +“A hundred thousand francs! The poor girl originally possessed much +more than that; she was born to treasures in comparison with which +those recorded in the _Thousand and One Nights_ would seem but +poverty.” + +“She must be a princess then.” + +“You are right; and she is one of the greatest in her country too.” + +“I thought so. But how did it happen that such a great princess became +a slave?” + +“How was it that Dionysius the Tyrant became a schoolmaster? The +fortune of war, my dear viscount,—the caprice of fortune; that is the +way in which these things are to be accounted for.” + +“And is her name a secret?” + +“As regards the generality of mankind it is; but not for you, my dear +viscount, who are one of my most intimate friends, and on whose silence +I feel I may rely, if I consider it necessary to enjoin it—may I not do +so?” + +“Certainly; on my word of honor.” + +“You know the history of the Pasha of Yanina, do you not?” + +“Of Ali Tepelini?13 Oh, yes; it was in his service that my father made +his fortune.” + +“True, I had forgotten that.” + +40062m + + + +“Well, what is Haydée to Ali Tepelini?” + +“Merely his daughter.” + +“What? the daughter of Ali Pasha?” + +“Of Ali Pasha and the beautiful Vasiliki.” + +“And your slave?” + +“_Ma foi_, yes.” + +“But how did she become so?” + +“Why, simply from the circumstance of my having bought her one day, as +I was passing through the market at Constantinople.” + +“Wonderful! Really, my dear count, you seem to throw a sort of magic +influence over all in which you are concerned; when I listen to you, +existence no longer seems reality, but a waking dream. Now, I am +perhaps going to make an imprudent and thoughtless request, but——” + +“Say on.” + +“But, since you go out with Haydée, and sometimes even take her to the +Opera——” + +“Well?” + +“I think I may venture to ask you this favor.” + +“You may venture to ask me anything.” + +“Well then, my dear count, present me to your princess.” + +“I will do so; but on two conditions.” + +“I accept them at once.” + +“The first is, that you will never tell anyone that I have granted the +interview.” + +“Very well,” said Albert, extending his hand; “I swear I will not.” + +“The second is, that you will not tell her that your father ever served +hers.” + +“I give you my oath that I will not.” + +“Enough, viscount; you will remember those two vows, will you not? But +I know you to be a man of honor.” + +The count again struck the gong. Ali reappeared. “Tell Haydée,” said +he, “that I will take coffee with her, and give her to understand that +I desire permission to present one of my friends to her.” + +Ali bowed and left the room. + +“Now, understand me,” said the count, “no direct questions, my dear +Morcerf; if you wish to know anything, tell me, and I will ask her.” + +“Agreed.” + +Ali reappeared for the third time, and drew back the tapestried hanging +which concealed the door, to signify to his master and Albert that they +were at liberty to pass on. + +“Let us go in,” said Monte Cristo. + +Albert passed his hand through his hair, and curled his moustache, +then, having satisfied himself as to his personal appearance, followed +the count into the room, the latter having previously resumed his hat +and gloves. Ali was stationed as a kind of advanced guard, and the door +was kept by the three French attendants, commanded by Myrtho. + +Haydée was awaiting her visitors in the first room of her apartments, +which was the drawing-room. Her large eyes were dilated with surprise +and expectation, for it was the first time that any man, except Monte +Cristo, had been accorded an entrance into her presence. She was +sitting on a sofa placed in an angle of the room, with her legs crossed +under her in the Eastern fashion, and seemed to have made for herself, +as it were, a kind of nest in the rich Indian silks which enveloped +her. Near her was the instrument on which she had just been playing; it +was elegantly fashioned, and worthy of its mistress. On perceiving +Monte Cristo, she arose and welcomed him with a smile peculiar to +herself, expressive at once of the most implicit obedience and also of +the deepest love. Monte Cristo advanced towards her and extended his +hand, which she as usual raised to her lips. + +40064m + + + +Albert had proceeded no farther than the door, where he remained rooted +to the spot, being completely fascinated by the sight of such +surpassing beauty, beheld as it was for the first time, and of which an +inhabitant of more northern climes could form no adequate idea. + +“Whom do you bring?” asked the young girl in Romaic, of Monte Cristo; +“is it a friend, a brother, a simple acquaintance, or an enemy.” + +“A friend,” said Monte Cristo in the same language. + +“What is his name?” + +“Count Albert; it is the same man whom I rescued from the hands of the +banditti at Rome.” + +“In what language would you like me to converse with him?” + +Monte Cristo turned to Albert. “Do you know modern Greek,” asked he. + +“Alas! no,” said Albert; “nor even ancient Greek, my dear count; never +had Homer or Plato a more unworthy scholar than myself.” + +“Then,” said Haydée, proving by her remark that she had quite +understood Monte Cristo’s question and Albert’s answer, “then I will +speak either in French or Italian, if my lord so wills it.” + +Monte Cristo reflected one instant. “You will speak in Italian,” said +he. + +Then, turning towards Albert,—“It is a pity you do not understand +either ancient or modern Greek, both of which Haydée speaks so +fluently; the poor child will be obliged to talk to you in Italian, +which will give you but a very false idea of her powers of +conversation.” + +The count made a sign to Haydée to address his visitor. “Sir,” she said +to Morcerf, “you are most welcome as the friend of my lord and master.” +This was said in excellent Tuscan, and with that soft Roman accent +which makes the language of Dante as sonorous as that of Homer. Then, +turning to Ali, she directed him to bring coffee and pipes, and when he +had left the room to execute the orders of his young mistress she +beckoned Albert to approach nearer to her. Monte Cristo and Morcerf +drew their seats towards a small table, on which were arranged music, +drawings, and vases of flowers. Ali then entered bringing coffee and +chibouques; as to M. Baptistin, this portion of the building was +interdicted to him. Albert refused the pipe which the Nubian offered +him. + +“Oh, take it—take it,” said the count; “Haydée is almost as civilized +as a Parisian; the smell of a Havana is disagreeable to her, but the +tobacco of the East is a most delicious perfume, you know.” + +Ali left the room. The cups of coffee were all prepared, with the +addition of sugar, which had been brought for Albert. Monte Cristo and +Haydée took the beverage in the original Arabian manner, that is to +say, without sugar. Haydée took the porcelain cup in her little slender +fingers and conveyed it to her mouth with all the innocent artlessness +of a child when eating or drinking something which it likes. At this +moment two women entered, bringing salvers filled with ices and +sherbet, which they placed on two small tables appropriated to that +purpose. + +“My dear host, and you, signora,” said Albert, in Italian, “excuse my +apparent stupidity. I am quite bewildered, and it is natural that it +should be so. Here I am in the heart of Paris; but a moment ago I heard +the rumbling of the omnibuses and the tinkling of the bells of the +lemonade-sellers, and now I feel as if I were suddenly transported to +the East; not such as I have seen it, but such as my dreams have +painted it. Oh, signora, if I could but speak Greek, your conversation, +added to the fairy-scene which surrounds me, would furnish an evening +of such delight as it would be impossible for me ever to forget.” + +“I speak sufficient Italian to enable me to converse with you, sir,” +said Haydée quietly; “and if you like what is Eastern, I will do my +best to secure the gratification of your tastes while you are here.” + +“On what subject shall I converse with her?” said Albert, in a low tone +to Monte Cristo. + +“Just what you please; you may speak of her country and of her youthful +reminiscences, or if you like it better you can talk of Rome, Naples, +or Florence.” + +“Oh,” said Albert, “it is of no use to be in the company of a Greek if +one converses just in the same style as with a Parisian; let me speak +to her of the East.” + +“Do so then, for of all themes which you could choose that will be the +most agreeable to her taste.” + +Albert turned towards Haydée. “At what age did you leave Greece, +signora?” asked he. + +“I left it when I was but five years old,” replied Haydée. + +“And have you any recollection of your country?” + +“When I shut my eyes and think, I seem to see it all again. The mind +can see as well as the body. The body forgets sometimes; but the mind +always remembers.” + +“And how far back into the past do your recollections extend?” + +“I could scarcely walk when my mother, who was called Vasiliki, which +means royal,” said the young girl, tossing her head proudly, “took me +by the hand, and after putting in our purse all the money we possessed, +we went out, both covered with veils, to solicit alms for the +prisoners, saying, ‘He who giveth to the poor lendeth to the Lord.’ +Then when our purse was full we returned to the palace, and without +saying a word to my father, we sent it to the convent, where it was +divided amongst the prisoners.” + +“And how old were you at that time?” + +“I was three years old,” said Haydée. + +“Then you remember everything that went on about you from the time when +you were three years old?” said Albert. + +“Everything.” + +“Count,” said Albert, in a low tone to Monte Cristo, “do allow the +signora to tell me something of her history. You prohibited my +mentioning my father’s name to her, but perhaps she will allude to him +of her own accord in the course of the recital, and you have no idea +how delighted I should be to hear our name pronounced by such beautiful +lips.” + +Monte Cristo turned to Haydée, and with an expression of countenance +which commanded her to pay the most implicit attention to his words, he +said in Greek, “Πατρὸς μὲν ἄτην μήζε τὸ ὄνομα προδότου καὶ προδοσίαν +εἰπὲ ἡμῖν,”—that is, “Tell us the fate of your father; but neither the +name of the traitor nor the treason.” Haydée sighed deeply, and a shade +of sadness clouded her beautiful brow. + +“What are you saying to her?” said Morcerf in an undertone. + +“I again reminded her that you were a friend, and that she need not +conceal anything from you.” + +“Then,” said Albert, “this pious pilgrimage in behalf of the prisoners +was your first remembrance; what is the next?” + +“Oh, then I remember as if it were but yesterday sitting under the +shade of some sycamore-trees, on the borders of a lake, in the waters +of which the trembling foliage was reflected as in a mirror. Under the +oldest and thickest of these trees, reclining on cushions, sat my +father; my mother was at his feet, and I, childlike, amused myself by +playing with his long white beard which descended to his girdle, or +with the diamond-hilt of the scimitar attached to his girdle. Then from +time to time there came to him an Albanian who said something to which +I paid no attention, but which he always answered in the same tone of +voice, either ‘Kill,’ or ‘Pardon.’” + +“It is very strange,” said Albert, “to hear such words proceed from the +mouth of anyone but an actress on the stage, and one needs constantly +to be saying to one’s self, ‘This is no fiction, it is all reality,’ in +order to believe it. And how does France appear in your eyes, +accustomed as they have been to gaze on such enchanted scenes?” + +“I think it is a fine country,” said Haydée, “but I see France as it +really is, because I look on it with the eyes of a woman; whereas my +own country, which I can only judge of from the impression produced on +my childish mind, always seems enveloped in a vague atmosphere, which +is luminous or otherwise, according as my remembrances of it are sad or +joyous.” + +“So young,” said Albert, forgetting at the moment the Count’s command +that he should ask no questions of the slave herself, “is it possible +that you can have known what suffering is except by name?” + +Haydée turned her eyes towards Monte Cristo, who, making at the same +time some imperceptible sign, murmured: + +“Εἰπέ—speak.” + +“Nothing is ever so firmly impressed on the mind as the memory of our +early childhood, and with the exception of the two scenes I have just +described to you, all my earliest reminiscences are fraught with +deepest sadness.” + +40068m + + + +“Speak, speak, signora,” said Albert, “I am listening with the most +intense delight and interest to all you say.” + +Haydée answered his remark with a melancholy smile. “You wish me, then, +to relate the history of my past sorrows?” said she. + +“I beg you to do so,” replied Albert. + +“Well, I was but four years old when one night I was suddenly awakened +by my mother. We were in the palace of Yanina; she snatched me from the +cushions on which I was sleeping, and on opening my eyes I saw hers +filled with tears. She took me away without speaking. When I saw her +weeping I began to cry too. ‘Hush, child!’ said she. At other times in +spite of maternal endearments or threats, I had with a child’s caprice +been accustomed to indulge my feelings of sorrow or anger by crying as +much as I felt inclined; but on this occasion there was an intonation +of such extreme terror in my mother’s voice when she enjoined me to +silence, that I ceased crying as soon as her command was given. She +bore me rapidly away. + +“I saw then that we were descending a large staircase; around us were +all my mother’s servants carrying trunks, bags, ornaments, jewels, +purses of gold, with which they were hurrying away in the greatest +distraction. + +“Behind the women came a guard of twenty men armed with long guns and +pistols, and dressed in the costume which the Greeks have assumed since +they have again become a nation. You may imagine there was something +startling and ominous,” said Haydée, shaking her head and turning pale +at the mere remembrance of the scene, “in this long file of slaves and +women only half-aroused from sleep, or at least so they appeared to me, +who was myself scarcely awake. Here and there on the walls of the +staircase, were reflected gigantic shadows, which trembled in the +flickering light of the pine-torches till they seemed to reach to the +vaulted roof above. + +“‘Quick!’ said a voice at the end of the gallery. This voice made +everyone bow before it, resembling in its effect the wind passing over +a field of wheat, by its superior strength forcing every ear to yield +obeisance. As for me, it made me tremble. This voice was that of my +father. He came last, clothed in his splendid robes and holding in his +hand the carbine which your emperor presented him. He was leaning on +the shoulder of his favorite Selim, and he drove us all before him, as +a shepherd would his straggling flock. My father,” said Haydée, raising +her head, “was that illustrious man known in Europe under the name of +Ali Tepelini, pasha of Yanina, and before whom Turkey trembled.” + +Albert, without knowing why, started on hearing these words pronounced +with such a haughty and dignified accent; it appeared to him as if +there was something supernaturally gloomy and terrible in the +expression which gleamed from the brilliant eyes of Haydée at this +moment; she appeared like a Pythoness evoking a spectre, as she +recalled to his mind the remembrance of the fearful death of this man, +to the news of which all Europe had listened with horror. + +“Soon,” said Haydée, “we halted on our march, and found ourselves on +the borders of a lake. My mother pressed me to her throbbing heart, and +at the distance of a few paces I saw my father, who was glancing +anxiously around. Four marble steps led down to the water’s edge, and +below them was a boat floating on the tide. + +40070m + + + +“From where we stood I could see in the middle of the lake a large +blank mass; it was the kiosk to which we were going. This kiosk +appeared to me to be at a considerable distance, perhaps on account of +the darkness of the night, which prevented any object from being more +than partially discerned. We stepped into the boat. I remember well +that the oars made no noise whatever in striking the water, and when I +leaned over to ascertain the cause I saw that they were muffled with +the sashes of our Palikares.14 Besides the rowers, the boat contained +only the women, my father, mother, Selim, and myself. The Palikares had +remained on the shore of the lake, ready to cover our retreat; they +were kneeling on the lowest of the marble steps, and in that manner +intended making a rampart of the three others, in case of pursuit. Our +bark flew before the wind. ‘Why does the boat go so fast?’ asked I of +my mother. + +“‘Silence, child! Hush, we are flying!’ I did not understand. Why +should my father fly?—he, the all-powerful—he, before whom others were +accustomed to fly—he, who had taken for his device, + +‘They hate me; then they fear me!’ + + +“It was, indeed, a flight which my father was trying to effect. I have +been told since that the garrison of the castle of Yanina, fatigued +with long service——” + +Here Haydée cast a significant glance at Monte Cristo, whose eyes had +been riveted on her countenance during the whole course of her +narrative. The young girl then continued, speaking slowly, like a +person who is either inventing or suppressing some feature of the +history which he is relating. + +“You were saying, signora,” said Albert, who was paying the most +implicit attention to the recital, “that the garrison of Yanina, +fatigued with long service——” + +“Had treated with the Seraskier15 Kourchid, who had been sent by the +sultan to gain possession of the person of my father; it was then that +Ali Tepelini—after having sent to the sultan a French officer in whom +he reposed great confidence—resolved to retire to the asylum which he +had long before prepared for himself, and which he called +_kataphygion_, or the refuge.” + +“And this officer,” asked Albert, “do you remember his name, signora?” + +Monte Cristo exchanged a rapid glance with the young girl, which was +quite unperceived by Albert. + +“No,” said she, “I do not remember it just at this moment; but if it +should occur to me presently, I will tell you.” + +Albert was on the point of pronouncing his father’s name, when Monte +Cristo gently held up his finger in token of reproach; the young man +recollected his promise, and was silent. + +“It was towards this kiosk that we were rowing. A ground floor, +ornamented with arabesques, bathing its terraces in the water, and +another floor, looking on the lake, was all which was visible to the +eye. But beneath the ground floor, stretching out into the island, was +a large subterranean cavern, to which my mother, myself, and the women +were conducted. In this place were together 60,000 pouches and 200 +barrels; the pouches contained 25,000,000 of money in gold, and the +barrels were filled with 30,000 pounds of gunpowder. + +“Near the barrels stood Selim, my father’s favorite, whom I mentioned +to you just now. He stood watch day and night with a lance provided +with a lighted slowmatch in his hand, and he had orders to blow up +everything—kiosk, guards, women, gold, and Ali Tepelini himself—at the +first signal given by my father. I remember well that the slaves, +convinced of the precarious tenure on which they held their lives, +passed whole days and nights in praying, crying, and groaning. As for +me, I can never forget the pale complexion and black eyes of the young +soldier, and whenever the angel of death summons me to another world, I +am quite sure I shall recognize Selim. I cannot tell you how long we +remained in this state; at that period I did not even know what time +meant. Sometimes, but very rarely, my father summoned me and my mother +to the terrace of the palace; these were hours of recreation for me, as +I never saw anything in the dismal cavern but the gloomy countenances +of the slaves and Selim’s fiery lance. My father was endeavoring to +pierce with his eager looks the remotest verge of the horizon, +examining attentively every black speck which appeared on the lake, +while my mother, reclining by his side, rested her head on his +shoulder, and I played at his feet, admiring everything I saw with that +unsophisticated innocence of childhood which throws a charm round +objects insignificant in themselves, but which in its eyes are invested +with the greatest importance. The heights of Pindus towered above us; +the castle of Yanina rose white and angular from the blue waters of the +lake, and the immense masses of black vegetation which, viewed in the +distance, gave the idea of lichens clinging to the rocks, were in +reality gigantic fir-trees and myrtles. + +“One morning my father sent for us; my mother had been crying all the +night, and was very wretched; we found the pasha calm, but paler than +usual. ‘Take courage, Vasiliki,’ said he; ‘today arrives the firman of +the master, and my fate will be decided. If my pardon be complete, we +shall return triumphant to Yanina; if the news be inauspicious, we must +fly this night.’—‘But supposing our enemy should not allow us to do +so?’ said my mother. ‘Oh, make yourself easy on that head,’ said Ali, +smiling; ‘Selim and his flaming lance will settle that matter. They +would be glad to see me dead, but they would not like themselves to die +with me.’ + +“My mother only answered by sighs to consolations which she knew did +not come from my father’s heart. She prepared the iced water which he +was in the habit of constantly drinking,—for since his sojourn at the +kiosk he had been parched by the most violent fever,—after which she +anointed his white beard with perfumed oil, and lighted his chibouque, +which he sometimes smoked for hours together, quietly watching the +wreaths of vapor that ascended in spiral clouds and gradually melted +away in the surrounding atmosphere. Presently he made such a sudden +movement that I was paralyzed with fear. Then, without taking his eyes +from the object which had first attracted his attention, he asked for +his telescope. My mother gave it him, and as she did so, looked whiter +than the marble against which she leaned. I saw my father’s hand +tremble. ‘A boat!—two!—three!’ murmured my, father;—‘four!’ He then +arose, seizing his arms and priming his pistols. ‘Vasiliki,’ said he to +my mother, trembling perceptibly, ‘the instant approaches which will +decide everything. In the space of half an hour we shall know the +emperor’s answer. Go into the cavern with Haydée.’—‘I will not quit +you,’ said Vasiliki; ‘if you die, my lord, I will die with you.’—‘Go to +Selim!’ cried my father. ‘Adieu, my lord,’ murmured my mother, +determining quietly to await the approach of death. ‘Take away +Vasiliki!’ said my father to his Palikares. + +“As for me, I had been forgotten in the general confusion; I ran toward +Ali Tepelini; he saw me hold out my arms to him, and he stooped down +and pressed my forehead with his lips. Oh, how distinctly I remember +that kiss!—it was the last he ever gave me, and I feel as if it were +still warm on my forehead. On descending, we saw through the +lattice-work several boats which were gradually becoming more distinct +to our view. At first they appeared like black specks, and now they +looked like birds skimming the surface of the waves. During this time, +in the kiosk at my father’s feet, were seated twenty Palikares, +concealed from view by an angle of the wall and watching with eager +eyes the arrival of the boats. They were armed with their long guns +inlaid with mother-of-pearl and silver, and cartridges in great numbers +were lying scattered on the floor. My father looked at his watch, and +paced up and down with a countenance expressive of the greatest +anguish. This was the scene which presented itself to my view as I +quitted my father after that last kiss. + +“My mother and I traversed the gloomy passage leading to the cavern. +Selim was still at his post, and smiled sadly on us as we entered. We +fetched our cushions from the other end of the cavern, and sat down by +Selim. In great dangers the devoted ones cling to each other; and, +young as I was, I quite understood that some imminent danger was +hanging over our heads.” + +Albert had often heard—not from his father, for he never spoke on the +subject, but from strangers—the description of the last moments of the +vizier of Yanina; he had read different accounts of his death, but the +story seemed to acquire fresh meaning from the voice and expression of +the young girl, and her sympathetic accent and the melancholy +expression of her countenance at once charmed and horrified him. + +As to Haydée, these terrible reminiscences seemed to have overpowered +her for a moment, for she ceased speaking, her head leaning on her hand +like a beautiful flower bowing beneath the violence of the storm; and +her eyes gazing on vacancy indicated that she was mentally +contemplating the green summit of the Pindus and the blue waters of the +lake of Yanina, which, like a magic mirror, seemed to reflect the +sombre picture which she sketched. Monte Cristo looked at her with an +indescribable expression of interest and pity. + +“Go on, my child,” said the count in the Romaic language. + +40074m + + + +Haydée looked up abruptly, as if the sonorous tones of Monte Cristo’s +voice had awakened her from a dream; and she resumed her narrative. + +“It was about four o’clock in the afternoon, and although the day was +brilliant out-of-doors, we were enveloped in the gloomy darkness of the +cavern. One single, solitary light was burning there, and it appeared +like a star set in a heaven of blackness; it was Selim’s flaming lance. +My mother was a Christian, and she prayed. Selim repeated from time to +time the sacred words: ‘God is great!’ However, my mother had still +some hope. As she was coming down, she thought she recognized the +French officer who had been sent to Constantinople, and in whom my +father placed so much confidence; for he knew that all the soldiers of +the French emperor were naturally noble and generous. She advanced some +steps towards the staircase, and listened. ‘They are approaching,’ said +she; ‘perhaps they bring us peace and liberty!’ + +“‘What do you fear, Vasiliki?’ said Selim, in a voice at once so gentle +and yet so proud. ‘If they do not bring us peace, we will give them +war; if they do not bring life, we will give them death.’ And he +renewed the flame of his lance with a gesture which made one think of +Dionysus of old Crete.16 But I, being only a little child, was +terrified by this undaunted courage, which appeared to me both +ferocious and senseless, and I recoiled with horror from the idea of +the frightful death amidst fire and flames which probably awaited us. + +“My mother experienced the same sensations, for I felt her tremble. +‘Mamma, mamma,’ said I, ‘are we really to be killed?’ And at the sound +of my voice the slaves redoubled their cries and prayers and +lamentations. ‘My child,’ said Vasiliki, ‘may God preserve you from +ever wishing for that death which today you so much dread!’ Then, +whispering to Selim, she asked what were her master’s orders. ‘If he +send me his poniard, it will signify that the emperor’s intentions are +not favorable, and I am to set fire to the powder; if, on the contrary, +he send me his ring, it will be a sign that the emperor pardons him, +and I am to extinguish the match and leave the magazine untouched.’—‘My +friend,’ said my mother, ‘when your master’s orders arrive, if it is +the poniard which he sends, instead of despatching us by that horrible +death which we both so much dread, you will mercifully kill us with +this same poniard, will you not?’—‘Yes, Vasiliki,’ replied Selim +tranquilly. + +“Suddenly we heard loud cries; and, listening, discerned that they were +cries of joy. The name of the French officer who had been sent to +Constantinople resounded on all sides amongst our Palikares; it was +evident that he brought the answer of the emperor, and that it was +favorable.” + +“And do you not remember the Frenchman’s name?” said Morcerf, quite +ready to aid the memory of the narrator. Monte Cristo made a sign to +him to be silent. + +“I do not recollect it,” said Haydée. + +“The noise increased; steps were heard approaching nearer and nearer; +they were descending the steps leading to the cavern. Selim made ready +his lance. Soon a figure appeared in the gray twilight at the entrance +of the cave, formed by the reflection of the few rays of daylight which +had found their way into this gloomy retreat. ‘Who are you?’ cried +Selim. ‘But whoever you may be, I charge you not to advance another +step.’—‘Long live the emperor!’ said the figure. ‘He grants a full +pardon to the Vizier Ali, and not only gives him his life, but restores +to him his fortune and his possessions.’ My mother uttered a cry of +joy, and clasped me to her bosom. ‘Stop,’ said Selim, seeing that she +was about to go out; ‘you see I have not yet received the +ring,’—‘True,’ said my mother. And she fell on her knees, at the same +time holding me up towards heaven, as if she desired, while praying to +God in my behalf, to raise me actually to his presence.” + +And for the second time Haydée stopped, overcome by such violent +emotion that the perspiration stood upon her pale brow, and her stifled +voice seemed hardly able to find utterance, so parched and dry were her +throat and lips. + +40076m + + + +Monte Cristo poured a little iced water into a glass, and presented it +to her, saying with a mildness in which was also a shade of +command,—“Courage.” + +Haydée dried her eyes, and continued: + +“By this time our eyes, habituated to the darkness, had recognized the +messenger of the pasha,—it was a friend. Selim had also recognized him, +but the brave young man only acknowledged one duty, which was to obey. +‘In whose name do you come?’ said he to him. ‘I come in the name of our +master, Ali Tepelini.’—‘If you come from Ali himself,’ said Selim, ‘you +know what you were charged to remit to me?’—‘Yes,’ said the messenger, +‘and I bring you his ring.’ At these words he raised his hand above his +head, to show the token; but it was too far off, and there was not +light enough to enable Selim, where he was standing, to distinguish and +recognize the object presented to his view. ‘I do not see what you have +in your hand,’ said Selim. ‘Approach then,’ said the messenger, ‘or I +will come nearer to you, if you prefer it.’—‘I will agree to neither +one nor the other,’ replied the young soldier; ‘place the object which +I desire to see in the ray of light which shines there, and retire +while I examine it.’—‘Be it so,’ said the envoy; and he retired, after +having first deposited the token agreed on in the place pointed out to +him by Selim. + +“Oh, how our hearts palpitated; for it did, indeed, seem to be a ring +which was placed there. But was it my father’s ring? that was the +question. Selim, still holding in his hand the lighted match, walked +towards the opening in the cavern, and, aided by the faint light which +streamed in through the mouth of the cave, picked up the token. + +“‘It is well,’ said he, kissing it; ‘it is my master’s ring!’ And +throwing the match on the ground, he trampled on it and extinguished +it. The messenger uttered a cry of joy and clapped his hands. At this +signal four soldiers of the Seraskier Kourchid suddenly appeared, and +Selim fell, pierced by five blows. Each man had stabbed him separately, +and, intoxicated by their crime, though still pale with fear, they +sought all over the cavern to discover if there was any fear of fire, +after which they amused themselves by rolling on the bags of gold. At +this moment my mother seized me in her arms, and hurrying noiselessly +along numerous turnings and windings known only to ourselves, she +arrived at a private staircase of the kiosk, where was a scene of +frightful tumult and confusion. The lower rooms were entirely filled +with Kourchid’s troops; that is to say, with our enemies. Just as my +mother was on the point of pushing open a small door, we heard the +voice of the pasha sounding in a loud and threatening tone. My mother +applied her eye to the crack between the boards; I luckily found a +small opening which afforded me a view of the apartment and what was +passing within. ‘What do you want?’ said my father to some people who +were holding a paper inscribed with characters of gold. ‘What we want,’ +replied one, ‘is to communicate to you the will of his highness. Do you +see this firman?’—‘I do,’ said my father. ‘Well, read it; he demands +your head.’ + +40078m + + + +“My father answered with a loud laugh, which was more frightful than +even threats would have been, and he had not ceased when two reports of +a pistol were heard; he had fired them himself, and had killed two men. +The Palikares, who were prostrated at my father’s feet, now sprang up +and fired, and the room was filled with fire and smoke. At the same +instant the firing began on the other side, and the balls penetrated +the boards all round us. Oh, how noble did the grand vizier my father +look at that moment, in the midst of the flying bullets, his scimitar +in his hand, and his face blackened with the powder of his enemies! and +how he terrified them, even then, and made them fly before him! ‘Selim, +Selim!’ cried he, ‘guardian of the fire, do your duty!’—‘Selim is +dead,’ replied a voice which seemed to come from the depths of the +earth, ‘and you are lost, Ali!’ At the same moment an explosion was +heard, and the flooring of the room in which my father was sitting was +suddenly torn up and shivered to atoms—the troops were firing from +underneath. Three or four Palikares fell with their bodies literally +ploughed with wounds. + +“My father howled aloud, plunged his fingers into the holes which the +balls had made, and tore up one of the planks entire. But immediately +through this opening twenty more shots were fired, and the flame, +rushing up like fire from the crater of a volcano, soon reached the +tapestry, which it quickly devoured. In the midst of all this frightful +tumult and these terrific cries, two reports, fearfully distinct, +followed by two shrieks more heartrending than all, froze me with +terror. These two shots had mortally wounded my father, and it was he +who had given utterance to these frightful cries. However, he remained +standing, clinging to a window. My mother tried to force the door, that +she might go and die with him, but it was fastened on the inside. All +around him were lying the Palikares, writhing in convulsive agonies, +while two or three who were only slightly wounded were trying to escape +by springing from the windows. At this crisis the whole flooring +suddenly gave way, my father fell on one knee, and at the same moment +twenty hands were thrust forth, armed with sabres, pistols, and +poniards—twenty blows were instantaneously directed against one man, +and my father disappeared in a whirlwind of fire and smoke kindled by +these demons, and which seemed like hell itself opening beneath his +feet. I felt myself fall to the ground, my mother had fainted.” + +Haydée’s arms fell by her side, and she uttered a deep groan, at the +same time looking towards the count as if to ask if he were satisfied +with her obedience to his commands. + +Monte Cristo arose and approached her, took her hand, and said to her +in Romaic: + +“Calm yourself, my dear child, and take courage in remembering that +there is a God who will punish traitors.” + +“It is a frightful story, count,” said Albert, terrified at the +paleness of Haydée’s countenance, “and I reproach myself now for having +been so cruel and thoughtless in my request.” + +“Oh, it is nothing,” said Monte Cristo. Then, patting the young girl on +the head, he continued, “Haydée is very courageous, and she sometimes +even finds consolation in the recital of her misfortunes.” + +“Because, my lord,” said Haydée eagerly, “my miseries recall to me the +remembrance of your goodness.” + +Albert looked at her with curiosity, for she had not yet related what +he most desired to know,—how she had become the slave of the count. +Haydée saw at a glance the same expression pervading the countenances +of her two auditors; she continued: + +“When my mother recovered her senses we were before the seraskier. +‘Kill,’ said she, ‘but spare the honor of the widow of Ali.’—‘It is not +to me to whom you must address yourself,’ said Kourchid. + +“‘To whom, then?’—‘To your new master.’ + +“‘Who and where is he?’—‘He is here.’ + +“And Kourchid pointed out one who had more than any contributed to the +death of my father,” said Haydée, in a tone of chastened anger. + +“Then,” said Albert, “you became the property of this man?” + +40080m + + + +“No,” replied Haydée, “he did not dare to keep us, so we were sold to +some slave-merchants who were going to Constantinople. We traversed +Greece, and arrived half dead at the imperial gates. They were +surrounded by a crowd of people, who opened a way for us to pass, when +suddenly my mother, having looked closely at an object which was +attracting their attention, uttered a piercing cry and fell to the +ground, pointing as she did so to a head which was placed over the +gates, and beneath which were inscribed these words: + +‘_This is the head of Ali Tepelini, Pasha of Yanina._’ + +“I cried bitterly, and tried to raise my mother from the earth, but she +was dead! I was taken to the slave-market, and was purchased by a rich +Armenian. He caused me to be instructed, gave me masters, and when I +was thirteen years of age he sold me to the Sultan Mahmoud.” + +“Of whom I bought her,” said Monte Cristo, “as I told you, Albert, with +the emerald which formed a match to the one I had made into a box for +the purpose of holding my hashish pills.” + +“Oh, you are good, you are great, my lord!” said Haydée, kissing the +count’s hand, “and I am very fortunate in belonging to such a master!” + +Albert remained quite bewildered with all that he had seen and heard. + +“Come, finish your cup of coffee,” said Monte Cristo; “the history is +ended.” + + + + Chapter 78. We hear From Yanina + +If Valentine could have seen the trembling step and agitated +countenance of Franz when he quitted the chamber of M. Noirtier, even +she would have been constrained to pity him. Villefort had only just +given utterance to a few incoherent sentences, and then retired to his +study, where he received about two hours afterwards the following +letter: + +“After all the disclosures which were made this morning, M. Noirtier de +Villefort must see the utter impossibility of any alliance being formed +between his family and that of M. Franz d’Épinay. M. d’Épinay must say +that he is shocked and astonished that M. de Villefort, who appeared to +be aware of all the circumstances detailed this morning, should not +have anticipated him in this announcement.” + + +No one who had seen the magistrate at this moment, so thoroughly +unnerved by the recent inauspicious combination of circumstances, would +have supposed for an instant that he had anticipated the annoyance; +although it certainly never had occurred to him that his father would +carry candor, or rather rudeness, so far as to relate such a history. +And in justice to Villefort, it must be understood that M. Noirtier, +who never cared for the opinion of his son on any subject, had always +omitted to explain the affair to Villefort, so that he had all his life +entertained the belief that General de Quesnel, or the Baron d’Épinay, +as he was alternately styled, according as the speaker wished to +identify him by his own family name, or by the title which had been +conferred on him, fell the victim of assassination, and not that he was +killed fairly in a duel. This harsh letter, coming as it did from a man +generally so polite and respectful, struck a mortal blow at the pride +of Villefort. + +Hardly had he read the letter, when his wife entered. The sudden +departure of Franz, after being summoned by M. Noirtier, had so much +astonished everyone, that the position of Madame de Villefort, left +alone with the notary and the witnesses, became every moment more +embarrassing. Determined to bear it no longer, she arose and left the +room; saying she would go and make some inquiries into the cause of his +sudden disappearance. + +M. de Villefort’s communications on the subject were very limited and +concise; he told her, in fact, that an explanation had taken place +between M. Noirtier, M. d’Épinay, and himself, and that the marriage of +Valentine and Franz would consequently be broken off. This was an +awkward and unpleasant thing to have to report to those who were +waiting. She therefore contented herself with saying that M. Noirtier +having at the commencement of the discussion been attacked by a sort of +apoplectic fit, the affair would necessarily be deferred for some days +longer. This news, false as it was following so singularly in the train +of the two similar misfortunes which had so recently occurred, +evidently astonished the auditors, and they retired without a word. + +During this time Valentine, at once terrified and happy, after having +embraced and thanked the feeble old man for thus breaking with a single +blow the chain which she had been accustomed to consider as +irrefragable, asked leave to retire to her own room, in order to +recover her composure. Noirtier looked the permission which she +solicited. But instead of going to her own room, Valentine, having once +gained her liberty, entered the gallery, and, opening a small door at +the end of it, found herself at once in the garden. + +In the midst of all the strange events which had crowded one on the +other, an indefinable sentiment of dread had taken possession of +Valentine’s mind. She expected every moment that she should see Morrel +appear, pale and trembling, to forbid the signing of the contract, like +the Laird of Ravenswood in _The Bride of Lammermoor_. + +It was high time for her to make her appearance at the gate, for +Maximilian had long awaited her coming. He had half guessed what was +going on when he saw Franz quit the cemetery with M. de Villefort. He +followed M. d’Épinay, saw him enter, afterwards go out, and then +re-enter with Albert and Château-Renaud. He had no longer any doubts as +to the nature of the conference; he therefore quickly went to the gate +in the clover-patch, prepared to hear the result of the proceedings, +and very certain that Valentine would hasten to him the first moment +she should be set at liberty. He was not mistaken; peering through the +crevices of the wooden partition, he soon discovered the young girl, +who cast aside all her usual precautions and walked at once to the +barrier. The first glance which Maximilian directed towards her +entirely reassured him, and the first words she spoke made his heart +bound with delight. + +“We are saved!” said Valentine. + +“Saved?” repeated Morrel, not being able to conceive such intense +happiness; “by whom?” + +“By my grandfather. Oh, Morrel, pray love him for all his goodness to +us!” + +Morrel swore to love him with all his soul; and at that moment he could +safely promise to do so, for he felt as though it were not enough to +love him merely as a friend or even as a father, he worshiped him as a +god. + +“But tell me, Valentine, how has it all been effected? What strange +means has he used to compass this blessed end?” + +Valentine was on the point of relating all that had passed, but she +suddenly remembered that in doing so she must reveal a terrible secret +which concerned others as well as her grandfather, and she said: + +“At some future time I will tell you all about it.” + +“But when will that be?” + +“When I am your wife.” + +The conversation had now turned upon a topic so pleasing to Morrel, +that he was ready to accede to anything that Valentine thought fit to +propose, and he likewise felt that a piece of intelligence such as he +just heard ought to be more than sufficient to content him for one day. +However, he would not leave without the promise of seeing Valentine +again the next night. Valentine promised all that Morrel required of +her, and certainly it was less difficult now for her to believe that +she should marry Maximilian than it was an hour ago to assure herself +that she should not marry Franz. + +During the time occupied by the interview we have just detailed, Madame +de Villefort had gone to visit M. Noirtier. The old man looked at her +with that stern and forbidding expression with which he was accustomed +to receive her. + +“Sir,” said she, “it is superfluous for me to tell you that Valentine’s +marriage is broken off, since it was here that the affair was +concluded.” + +Noirtier’s countenance remained immovable. + +“But one thing I can tell you, of which I do not think you are aware; +that is, that I have always been opposed to this marriage, and that the +contract was entered into entirely without my consent or approbation.” + +Noirtier regarded his daughter-in-law with the look of a man desiring +an explanation. + +“Now that this marriage, which I know you so much disliked, is done +away with, I come to you on an errand which neither M. de Villefort nor +Valentine could consistently undertake.” + +Noirtier’s eyes demanded the nature of her mission. + +“I come to entreat you, sir,” continued Madame de Villefort, “as the +only one who has the right of doing so, inasmuch as I am the only one +who will receive no personal benefit from the transaction,—I come to +entreat you to restore, not your love, for that she has always +possessed, but to restore your fortune to your granddaughter.” + +There was a doubtful expression in Noirtier’s eyes; he was evidently +trying to discover the motive of this proceeding, and he could not +succeed in doing so. + +“May I hope, sir,” said Madame de Villefort, “that your intentions +accord with my request?” + +Noirtier made a sign that they did. + +“In that case, sir,” rejoined Madame de Villefort, “I will leave you +overwhelmed with gratitude and happiness at your prompt acquiescence to +my wishes.” She then bowed to M. Noirtier and retired. + +The next day M. Noirtier sent for the notary; the first will was torn +up and a second made, in which he left the whole of his fortune to +Valentine, on condition that she should never be separated from him. It +was then generally reported that Mademoiselle de Villefort, the heiress +of the marquis and marchioness of Saint-Méran, had regained the good +graces of her grandfather, and that she would ultimately be in +possession of an income of 300,000 livres. + +While all the proceedings relative to the dissolution of the +marriage-contract were being carried on at the house of M. de +Villefort, Monte Cristo had paid his visit to the Count of Morcerf, +who, in order to lose no time in responding to M. Danglars’ wishes, and +at the same time to pay all due deference to his position in society, +donned his uniform of lieutenant-general, which he ornamented with all +his crosses, and thus attired, ordered his finest horses and drove to +the Rue de la Chaussée d’Antin. + +Danglars was balancing his monthly accounts, and it was perhaps not the +most favorable moment for finding him in his best humor. At the first +sight of his old friend, Danglars assumed his majestic air, and settled +himself in his easy-chair. + +Morcerf, usually so stiff and formal, accosted the banker in an affable +and smiling manner, and, feeling sure that the overture he was about to +make would be well received, he did not consider it necessary to adopt +any manœuvres in order to gain his end, but went at once straight to +the point. + +40086m + + + +“Well, baron,” said he, “here I am at last; some time has elapsed since +our plans were formed, and they are not yet executed.” + +Morcerf paused at these words, quietly waiting till the cloud should +have dispersed which had gathered on the brow of Danglars, and which he +attributed to his silence; but, on the contrary, to his great surprise, +it grew darker and darker. + +“To what do you allude, monsieur?” said Danglars; as if he were trying +in vain to guess at the possible meaning of the general’s words. + +“Ah,” said Morcerf, “I see you are a stickler for forms, my dear sir, +and you would remind me that the ceremonial rites should not be +omitted. _Ma foi_, I beg your pardon, but as I have but one son, and it +is the first time I have ever thought of marrying him, I am still +serving my apprenticeship, you know; come, I will reform.” + +And Morcerf with a forced smile arose, and, making a low bow to M. +Danglars, said: + +“Baron, I have the honor of asking of you the hand of Mademoiselle +Eugénie Danglars for my son, the Vicomte Albert de Morcerf.” + +But Danglars, instead of receiving this address in the favorable manner +which Morcerf had expected, knit his brow, and without inviting the +count, who was still standing, to take a seat, he said: + +“Monsieur, it will be necessary to reflect before I give you an +answer.” + +“To reflect?” said Morcerf, more and more astonished; “have you not had +enough time for reflection during the eight years which have elapsed +since this marriage was first discussed between us?” + +“Count,” said the banker, “things are constantly occurring in the world +to induce us to lay aside our most established opinions, or at all +events to cause us to remodel them according to the change of +circumstances, which may have placed affairs in a totally different +light to that in which we at first viewed them.” + +“I do not understand you, baron,” said Morcerf. + +“What I mean to say is this, sir,—that during the last fortnight +unforeseen circumstances have occurred——” + +“Excuse me,” said Morcerf, “but is it a play we are acting?” + +“A play?” + +“Yes, for it is like one; pray let us come more to the point, and +endeavor thoroughly to understand each other.” + +“That is quite my desire.” + +“You have seen M. de Monte Cristo have you not?” + +“I see him very often,” said Danglars, drawing himself up; “he is a +particular friend of mine.” + +“Well, in one of your late conversations with him, you said that I +appeared to be forgetful and irresolute concerning this marriage, did +you not?” + +“I did say so.” + +“Well, here I am, proving at once that I am really neither the one nor +the other, by entreating you to keep your promise on that score.” + +Danglars did not answer. + +“Have you so soon changed your mind,” added Morcerf, “or have you only +provoked my request that you may have the pleasure of seeing me +humbled?” + +Danglars, seeing that if he continued the conversation in the same tone +in which he had begun it, the whole thing might turn out to his own +disadvantage, turned to Morcerf, and said: + +“Count, you must doubtless be surprised at my reserve, and I assure you +it costs me much to act in such a manner towards you; but, believe me +when I say that imperative necessity has imposed the painful task upon +me.” + +“These are all so many empty words, my dear sir,” said Morcerf: “they +might satisfy a new acquaintance, but the Comte de Morcerf does not +rank in that list; and when a man like him comes to another, recalls to +him his plighted word, and this man fails to redeem the pledge, he has +at least a right to exact from him a good reason for so doing.” + +Danglars was a coward, but did not wish to appear so; he was piqued at +the tone which Morcerf had just assumed. + +“I am not without a good reason for my conduct,” replied the banker. + +“What do you mean to say?” + +“I mean to say that I have a good reason, but that it is difficult to +explain.” + +“You must be aware, at all events, that it is impossible for me to +understand motives before they are explained to me; but one thing at +least is clear, which is, that you decline allying yourself with my +family.” + +“No, sir,” said Danglars; “I merely suspend my decision, that is all.” + +“And do you really flatter yourself that I shall yield to all your +caprices, and quietly and humbly await the time of again being received +into your good graces?” + +“Then, count, if you will not wait, we must look upon these projects as +if they had never been entertained.” + +The count bit his lips till the blood almost started, to prevent the +ebullition of anger which his proud and irritable temper scarcely +allowed him to restrain; understanding, however, that in the present +state of things the laugh would decidedly be against him, he turned +from the door, towards which he had been directing his steps, and again +confronted the banker. A cloud settled on his brow, evincing decided +anxiety and uneasiness, instead of the expression of offended pride +which had lately reigned there. + +“My dear Danglars,” said Morcerf, “we have been acquainted for many +years, and consequently we ought to make some allowance for each +other’s failings. You owe me an explanation, and really it is but fair +that I should know what circumstance has occurred to deprive my son of +your favor.” + +“It is from no personal ill-feeling towards the viscount, that is all I +can say, sir,” replied Danglars, who resumed his insolent manner as +soon as he perceived that Morcerf was a little softened and calmed +down. + +“And towards whom do you bear this personal ill-feeling, then?” said +Morcerf, turning pale with anger. The expression of the count’s face +had not remained unperceived by the banker; he fixed on him a look of +greater assurance than before, and said: + +“You may, perhaps, be better satisfied that I should not go farther +into particulars.” + +A tremor of suppressed rage shook the whole frame of the count, and +making a violent effort over himself, he said: “I have a right to +insist on your giving me an explanation. Is it Madame de Morcerf who +has displeased you? Is it my fortune which you find insufficient? Is it +because my opinions differ from yours?” + +“Nothing of the kind, sir,” replied Danglars: “if such had been the +case, I only should have been to blame, inasmuch as I was aware of all +these things when I made the engagement. No, do not seek any longer to +discover the reason. I really am quite ashamed to have been the cause +of your undergoing such severe self-examination; let us drop the +subject, and adopt the middle course of delay, which implies neither a +rupture nor an engagement. _Ma foi_, there is no hurry. My daughter is +only seventeen years old, and your son twenty-one. While we wait, time +will be progressing, events will succeed each other; things which in +the evening look dark and obscure, appear but too clearly in the light +of morning, and sometimes the utterance of one word, or the lapse of a +single day, will reveal the most cruel calumnies.” + +“Calumnies, did you say, sir?” cried Morcerf, turning livid with rage. +“Does anyone dare to slander me?” + +“Monsieur, I told you that I considered it best to avoid all +explanation.” + +“Then, sir, I am patiently to submit to your refusal?” + +“Yes, sir, although I assure you the refusal is as painful for me to +give as it is for you to receive, for I had reckoned on the honor of +your alliance, and the breaking off of a marriage contract always +injures the lady more than the gentleman.” + +“Enough, sir,” said Morcerf, “we will speak no more on the subject.” + +And clutching his gloves in anger, he left the apartment. Danglars +observed that during the whole conversation Morcerf had never once +dared to ask if it was on his own account that Danglars recalled his +word. + +That evening he had a long conference with several friends; and M. +Cavalcanti, who had remained in the drawing-room with the ladies, was +the last to leave the banker’s house. + +The next morning, as soon as he awoke, Danglars asked for the +newspapers; they were brought to him; he laid aside three or four, and +at last fixed on _l’Impartial_, the paper of which Beauchamp was the +chief editor. He hastily tore off the cover, opened the journal with +nervous precipitation, passed contemptuously over the Paris jottings, +and arriving at the miscellaneous intelligence, stopped with a +malicious smile, at a paragraph headed + +_We hear from Yanina._ + + +“Very good,” observed Danglars, after having read the paragraph; “here +is a little article on Colonel Fernand, which, if I am not mistaken, +would render the explanation which the Comte de Morcerf required of me +perfectly unnecessary.” + +At the same moment, that is, at nine o’clock in the morning, Albert de +Morcerf, dressed in a black coat buttoned up to his chin, might have +been seen walking with a quick and agitated step in the direction of +Monte Cristo’s house in the Champs-Élysées. When he presented himself +at the gate the porter informed him that the Count had gone out about +half an hour previously. + +“Did he take Baptistin with him?” + +“No, my lord.” + +“Call him, then; I wish to speak to him.” + +The concierge went to seek the valet de chambre, and returned with him +in an instant. + +“My good friend,” said Albert, “I beg pardon for my intrusion, but I +was anxious to know from your own mouth if your master was really out +or not.” + +“He is really out, sir,” replied Baptistin. + +“Out, even to me?” + +“I know how happy my master always is to receive the vicomte,” said +Baptistin; “and I should therefore never think of including him in any +general order.” + +“You are right; and now I wish to see him on an affair of great +importance. Do you think it will be long before he comes in?” + +“No, I think not, for he ordered his breakfast at ten o’clock.” + +“Well, I will go and take a turn in the Champs-Élysées, and at ten +o’clock I will return here; meanwhile, if the count should come in, +will you beg him not to go out again without seeing me?” + +“You may depend on my doing so, sir,” said Baptistin. + +Albert left the cab in which he had come at the count’s door, intending +to take a turn on foot. As he was passing the Allée des Veuves, he +thought he saw the count’s horses standing at Gosset’s +shooting-gallery; he approached, and soon recognized the coachman. + +“Is the count shooting in the gallery?” said Morcerf. + +“Yes, sir,” replied the coachman. While he was speaking, Albert had +heard the report of two or three pistol-shots. He entered, and on his +way met the waiter. + +“Excuse me, my lord,” said the lad; “but will you have the kindness to +wait a moment?” + +“What for, Philip?” asked Albert, who, being a constant visitor there, +did not understand this opposition to his entrance. + +“Because the person who is now in the gallery prefers being alone, and +never practices in the presence of anyone.” + +“Not even before you, Philip? Then who loads his pistol?” + +“His servant.” + +“A Nubian?” + +“A negro.” + +“It is he, then.” + +“Do you know this gentleman?” + +“Yes, and I am come to look for him; he is a friend of mine.” + +“Oh, that is quite another thing, then. I will go immediately and +inform him of your arrival.” + +And Philip, urged by his own curiosity, entered the gallery; a second +afterwards, Monte Cristo appeared on the threshold. + +“I ask your pardon, my dear count,” said Albert, “for following you +here, and I must first tell you that it was not the fault of your +servants that I did so; I alone am to blame for the indiscretion. I +went to your house, and they told me you were out, but that they +expected you home at ten o’clock to breakfast. I was walking about in +order to pass away the time till ten o’clock, when I caught sight of +your carriage and horses.” + +“What you have just said induces me to hope that you intend +breakfasting with me.” + +40092m + + + +“No, thank you, I am thinking of other things besides breakfast just +now; perhaps we may take that meal at a later hour and in worse +company.” + +“What on earth are you talking of?” + +“I am to fight today.” + +“For what?” + +“For the sake of fighting!” + +“Yes, I understand that, but what is the quarrel? People fight for all +sorts of reasons, you know.” + +“I fight in the cause of honor.” + +“Ah, that is something serious.” + +“So serious, that I come to beg you to render me a service.” + +“What is it?” + +“To be my second.” + +“That is a serious matter, and we will not discuss it here; let us +speak of nothing till we get home. Ali, bring me some water.” + +The count turned up his sleeves, and passed into the little vestibule +where the gentlemen were accustomed to wash their hands after shooting. + +“Come in, my lord,” said Philip in a low tone, “and I will show you +something droll.” Morcerf entered, and in place of the usual target, he +saw some playing-cards fixed against the wall. At a distance Albert +thought it was a complete suit, for he counted from the ace to the ten. + +“Ah, ha,” said Albert, “I see you were preparing for a game of cards.” + +“No,” said the count, “I was making a suit.” + +“How?” said Albert. + +“Those are really aces and twos which you see, but my shots have turned +them into threes, fives, sevens, eights, nines, and tens.” + +Albert approached. In fact, the bullets had actually pierced the cards +in the exact places which the painted signs would otherwise have +occupied, the lines and distances being as regularly kept as if they +had been ruled with pencil. In going up to the target Morcerf picked up +two or three swallows that had been rash enough to come within the +range of the count’s pistol. + +“_Diable!_” said Morcerf. + +“What would you have, my dear viscount?” said Monte Cristo, wiping his +hands on the towel which Ali had brought him; “I must occupy my leisure +moments in some way or other. But come, I am waiting for you.” + +Both men entered Monte Cristo’s carriage, which in the course of a few +minutes deposited them safely at No. 30. Monte Cristo took Albert into +his study, and pointing to a seat, placed another for himself. “Now let +us talk the matter over quietly,” said the count. + +“You see I am perfectly composed,” said Albert. + +“With whom are you going to fight?” + +“With Beauchamp.” + +“One of your friends!” + +“Of course; it is always with friends that one fights.” + +“I suppose you have some cause of quarrel?” + +“I have.” + +40094m + + + +“What has he done to you?” + +“There appeared in his journal last night—but wait, and read for +yourself.” And Albert handed over the paper to the count, who read as +follows: + +“A correspondent at Yanina informs us of a fact of which until now we +had remained in ignorance. The castle which formed the protection of +the town was given up to the Turks by a French officer named Fernand, +in whom the grand vizier, Ali Tepelini, had reposed the greatest +confidence.” + + +“Well,” said Monte Cristo, “what do you see in that to annoy you?” + +“What do I see in it?” + +“Yes; what does it signify to you if the castle of Yanina was given up +by a French officer?” + +“It signifies to my father, the Count of Morcerf, whose Christian name +is Fernand!” + +“Did your father serve under Ali Pasha?” + +“Yes; that is to say, he fought for the independence of the Greeks, and +hence arises the calumny.” + +“Oh, my dear viscount, do talk reason!” + +“I do not desire to do otherwise.” + +“Now, just tell me who the devil should know in France that the officer +Fernand and the Count of Morcerf are one and the same person? and who +cares now about Yanina, which was taken as long ago as the year 1822 or +1823?” + +“That just shows the meanness of this slander. They have allowed all +this time to elapse, and then all of a sudden rake up events which have +been forgotten to furnish materials for scandal, in order to tarnish +the lustre of our high position. I inherit my father’s name, and I do +not choose that the shadow of disgrace should darken it. I am going to +Beauchamp, in whose journal this paragraph appears, and I shall insist +on his retracting the assertion before two witnesses.” + +“Beauchamp will never retract.” + +“Then we must fight.” + +“No you will not, for he will tell you, what is very true, that perhaps +there were fifty officers in the Greek army bearing the same name.” + +“We will fight, nevertheless. I will efface that blot on my father’s +character. My father, who was such a brave soldier, whose career was so +brilliant——” + +“Oh, well, he will add, ‘We are warranted in believing that this +Fernand is not the illustrious Count of Morcerf, who also bears the +same Christian name.’” + +“I am determined not to be content with anything short of an entire +retractation.” + +“And you intend to make him do it in the presence of two witnesses, do +you?” + +“Yes.” + +“You do wrong.” + +“Which means, I suppose, that you refuse the service which I asked of +you?” + +“You know my theory regarding duels; I told you my opinion on that +subject, if you remember, when we were at Rome.” + +“Nevertheless, my dear count, I found you this morning engaged in an +occupation but little consistent with the notions you profess to +entertain.” + +“Because, my dear fellow, you understand one must never be eccentric. +If one’s lot is cast among fools, it is necessary to study folly. I +shall perhaps find myself one day called out by some harebrained scamp, +who has no more real cause of quarrel with me than you have with +Beauchamp; he may take me to task for some foolish trifle or other, he +will bring his witnesses, or will insult me in some public place, and I +am expected to kill him for all that.” + +“You admit that you would fight, then? Well, if so, why do you object +to my doing so?” + +“I do not say that you ought not to fight, I only say that a duel is a +serious thing, and ought not to be undertaken without due reflection.” + +“Did he reflect before he insulted my father?” + +“If he spoke hastily, and owns that he did so, you ought to be +satisfied.” + +“Ah, my dear count, you are far too indulgent.” + +“And you are far too exacting. Supposing, for instance, and do not be +angry at what I am going to say——” + +“Well.” + +“Supposing the assertion to be really true?” + +“A son ought not to submit to such a stain on his father’s honor.” + +“_Ma foi!_ we live in times when there is much to which we must +submit.” + +“That is precisely the fault of the age.” + +“And do you undertake to reform it?” + +“Yes, as far as I am personally concerned.” + +“Well, you are indeed exacting, my dear fellow!” + +“Yes, I own it.” + +“Are you quite impervious to good advice?” + +“Not when it comes from a friend.” + +“And do you account me that title?” + +“Certainly I do.” + +“Well, then, before going to Beauchamp with your witnesses, seek +further information on the subject.” + +“From whom?” + +“From Haydée.” + +“Why, what can be the use of mixing a woman up in the affair?—what can +she do in it?” + +“She can declare to you, for example, that your father had no hand +whatever in the defeat and death of the vizier; or if by chance he had, +indeed, the misfortune to——” + +“I have told you, my dear count, that I would not for one moment admit +of such a proposition.” + +“You reject this means of information, then?” + +“I do—most decidedly.” + +“Then let me offer one more word of advice.” + +“Do so, then, but let it be the last.” + +“You do not wish to hear it, perhaps?” + +“On the contrary, I request it.” + +“Do not take any witnesses with you when you go to Beauchamp—visit him +alone.” + +“That would be contrary to all custom.” + +“Your case is not an ordinary one.” + +“And what is your reason for advising me to go alone?” + +“Because then the affair will rest between you and Beauchamp.” + +“Explain yourself.” + +“I will do so. If Beauchamp be disposed to retract, you ought at least +to give him the opportunity of doing it of his own free will,—the +satisfaction to you will be the same. If, on the contrary, he refuses +to do so, it will then be quite time enough to admit two strangers into +your secret.” + +“They will not be strangers, they will be friends.” + +“Ah, but the friends of today are the enemies of tomorrow; Beauchamp, +for instance.” + +“So you recommend——” + +“I recommend you to be prudent.” + +“Then you advise me to go alone to Beauchamp?” + +“I do, and I will tell you why. When you wish to obtain some concession +from a man’s self-love, you must avoid even the appearance of wishing +to wound it.” + +“I believe you are right.” + +“I am glad of it.” + +“Then I will go alone.” + +“Go; but you would do better still by not going at all.” + +“That is impossible.” + +“Do so, then; it will be a wiser plan than the first which you +proposed.” + +“But if, in spite of all my precautions, I am at last obliged to fight, +will you not be my second?” + +“My dear viscount,” said Monte Cristo gravely, “you must have seen +before today that at all times and in all places I have been at your +disposal, but the service which you have just demanded of me is one +which it is out of my power to render you.” + +“Why?” + +“Perhaps you may know at some future period, and in the mean time I +request you to excuse my declining to put you in possession of my +reasons.” + +“Well, I will have Franz and Château-Renaud; they will be the very men +for it.” + +“Do so, then.” + +“But if I do fight, you will surely not object to giving me a lesson or +two in shooting and fencing?” + +“That, too, is impossible.” + +“What a singular being you are!—you will not interfere in anything.” + +“You are right—that is the principle on which I wish to act.” + +“We will say no more about it, then. Good-bye, count.” + +Morcerf took his hat, and left the room. He found his carriage at the +door, and doing his utmost to restrain his anger he went at once to +find Beauchamp, who was in his office. It was a gloomy, dusty-looking +apartment, such as journalists’ offices have always been from time +immemorial. The servant announced M. Albert de Morcerf. Beauchamp +repeated the name to himself, as though he could scarcely believe that +he had heard aright, and then gave orders for him to be admitted. +Albert entered. + +Beauchamp uttered an exclamation of surprise on seeing his friend leap +over and trample under foot all the newspapers which were strewed about +the room. + +“This way, this way, my dear Albert!” said he, holding out his hand to +the young man. “Are you out of your senses, or do you come peaceably to +take breakfast with me? Try and find a seat—there is one by that +geranium, which is the only thing in the room to remind me that there +are other leaves in the world besides leaves of paper.” + +“Beauchamp,” said Albert, “it is of your journal that I come to speak.” + +“Indeed? What do you wish to say about it?” + +“I desire that a statement contained in it should be rectified.” + +“To what do you refer? But pray sit down.” + +“Thank you,” said Albert, with a cold and formal bow. + +“Will you now have the kindness to explain the nature of the statement +which has displeased you?” + +“An announcement has been made which implicates the honor of a member +of my family.” + +“What is it?” said Beauchamp, much surprised; “surely you must be +mistaken.” + +“The story sent you from Yanina.” + +“Yanina?” + +“Yes; really you appear to be totally ignorant of the cause which +brings me here.” + +“Such is really the case, I assure you, upon my honor! Baptiste, give +me yesterday’s paper,” cried Beauchamp. + +“Here, I have brought mine with me,” replied Albert. + +Beauchamp took the paper, and read the article to which Albert pointed +in an undertone. + +“You see it is a serious annoyance,” said Morcerf, when Beauchamp had +finished the perusal of the paragraph. + +“Is the officer referred to a relation of yours, then?” demanded the +journalist. + +“Yes,” said Albert, blushing. + +“Well, what do you wish me to do for you?” said Beauchamp mildly. + +“My dear Beauchamp, I wish you to contradict this statement.” Beauchamp +looked at Albert with a benevolent expression. + +“Come,” said he, “this matter will want a good deal of talking over; a +retractation is always a serious thing, you know. Sit down, and I will +read it again.” + +Albert resumed his seat, and Beauchamp read, with more attention than +at first, the lines denounced by his friend. + +“Well,” said Albert in a determined tone, “you see that your paper has +insulted a member of my family, and I insist on a retractation being +made.” + +“You insist?” + +“Yes, I insist.” + +“Permit me to remind you that you are not in the Chamber, my dear +viscount.” + +“Nor do I wish to be there,” replied the young man, rising. “I repeat +that I am determined to have the announcement of yesterday +contradicted. You have known me long enough,” continued Albert, biting +his lips convulsively, for he saw that Beauchamp’s anger was beginning +to rise,—“you have been my friend, and therefore sufficiently intimate +with me to be aware that I am likely to maintain my resolution on this +point.” + +“If I have been your friend, Morcerf, your present manner of speaking +would almost lead me to forget that I ever bore that title. But wait a +moment, do not let us get angry, or at least not yet. You are irritated +and vexed—tell me how this Fernand is related to you?” + +“He is merely my father,” said Albert—“M. Fernand Mondego, Count of +Morcerf, an old soldier who has fought in twenty battles and whose +honorable scars they would denounce as badges of disgrace.” + +“Is it your father?” said Beauchamp; “that is quite another thing. Then +I can well understand your indignation, my dear Albert. I will look at +it again;” and he read the paragraph for the third time, laying a +stress on each word as he proceeded. “But the paper nowhere identifies +this Fernand with your father.” + +40100m + + + +“No; but the connection will be seen by others, and therefore I will +have the article contradicted.” + +At the words _I will_, Beauchamp steadily raised his eyes to Albert’s +countenance, and then as gradually lowering them, he remained +thoughtful for a few moments. + +“You will retract this assertion, will you not, Beauchamp?” said Albert +with increased though stifled anger. + +“Yes,” replied Beauchamp. + +“Immediately?” said Albert. + +“When I am convinced that the statement is false.” + +“What?” + +“The thing is worth looking into, and I will take pains to investigate +the matter thoroughly.” + +“But what is there to investigate, sir?” said Albert, enraged beyond +measure at Beauchamp’s last remark. “If you do not believe that it is +my father, say so immediately; and if, on the contrary, you believe it +to be him, state your reasons for doing so.” + +Beauchamp looked at Albert with the smile which was so peculiar to him, +and which in its numerous modifications served to express every varied +emotion of his mind. + +“Sir,” replied he, “if you came to me with the idea of demanding +satisfaction, you should have gone at once to the point, and not have +entertained me with the idle conversation to which I have been +patiently listening for the last half hour. Am I to put this +construction on your visit?” + +“Yes, if you will not consent to retract that infamous calumny.” + +“Wait a moment—no threats, if you please, M. Fernand Mondego, Vicomte +de Morcerf; I never allow them from my enemies, and therefore shall not +put up with them from my friends. You insist on my contradicting the +article relating to General Fernand, an article with which, I assure +you on my word of honor, I had nothing whatever to do?” + +“Yes, I insist on it,” said Albert, whose mind was beginning to get +bewildered with the excitement of his feelings. + +“And if I refuse to retract, you wish to fight, do you?” said Beauchamp +in a calm tone. + +“Yes,” replied Albert, raising his voice. + +“Well,” said Beauchamp, “here is my answer, my dear sir. The article +was not inserted by me—I was not even aware of it; but you have, by the +step you have taken, called my attention to the paragraph in question, +and it will remain until it shall be either contradicted or confirmed +by someone who has a right to do so.” + +“Sir,” said Albert, rising, “I will do myself the honor of sending my +seconds to you, and you will be kind enough to arrange with them the +place of meeting and the weapons.” + +“Certainly, my dear sir.” + +“And this evening, if you please, or tomorrow at the latest, we will +meet.” + +“No, no, I will be on the ground at the proper time; but in my opinion +(and I have a right to dictate the preliminaries, as it is I who have +received the provocation)—in my opinion the time ought not to be yet. I +know you to be well skilled in the management of the sword, while I am +only moderately so; I know, too, that you are a good marksman—there we +are about equal. I know that a duel between us two would be a serious +affair, because you are brave, and I am brave also. I do not therefore +wish either to kill you, or to be killed myself without a cause. Now, I +am going to put a question to you, and one very much to the purpose +too. Do you insist on this retractation so far as to kill me if I do +not make it, although I have repeated more than once, and affirmed on +my honor, that I was ignorant of the thing with which you charge me, +and although I still declare that it is impossible for anyone but you +to recognize the Count of Morcerf under the name of Fernand?” + +“I maintain my original resolution.” + +“Very well, my dear sir; then I consent to cut throats with you. But I +require three weeks’ preparation; at the end of that time I shall come +and say to you, ‘The assertion is false, and I retract it,’ or ‘The +assertion is true,’ when I shall immediately draw the sword from its +sheath, or the pistols from the case, whichever you please.” + +“Three weeks!” cried Albert; “they will pass as slowly as three +centuries when I am all the time suffering dishonor.” + +“Had you continued to remain on amicable terms with me, I should have +said, ‘Patience, my friend;’ but you have constituted yourself my +enemy, therefore I say, ‘What does that signify to me, sir?’” + +“Well, let it be three weeks then,” said Morcerf; “but remember, at the +expiration of that time no delay or subterfuge will justify you in——” + +“M. Albert de Morcerf,” said Beauchamp, rising in his turn, “I cannot +throw you out of window for three weeks—that is to say, for twenty-four +days to come—nor have you any right to split my skull open till that +time has elapsed. Today is the 29th of August; the 21st of September +will, therefore, be the conclusion of the term agreed on, and till that +time arrives—and it is the advice of a gentleman which I am about to +give you—till then we will refrain from growling and barking like two +dogs chained within sight of each other.” + +When he had concluded his speech, Beauchamp bowed coldly to Albert, +turned his back upon him, and went to the press-room. Albert vented his +anger on a pile of newspapers, which he sent flying all over the office +by switching them violently with his stick; after which ebullition he +departed—not, however, without walking several times to the door of the +press-room, as if he had half a mind to enter. + +40104m + + + +While Albert was lashing the front of his carriage in the same manner +that he had the newspapers which were the innocent agents of his +discomfiture, as he was crossing the barrier he perceived Morrel, who +was walking with a quick step and a bright eye. He was passing the +Chinese Baths, and appeared to have come from the direction of the +Porte Saint-Martin, and to be going towards the Madeleine. + +“Ah,” said Morcerf, “there goes a happy man!” And it so happened Albert +was not mistaken in his opinion. + + + + Chapter 79. The Lemonade + +Morrel was, in fact, very happy. M. Noirtier had just sent for him, and +he was in such haste to know the reason of his doing so that he had not +stopped to take a cab, placing infinitely more dependence on his own +two legs than on the four legs of a cab-horse. He had therefore set off +at a furious rate from the Rue Meslay, and was hastening with rapid +strides in the direction of the Faubourg Saint-Honoré. + +Morrel advanced with a firm, manly tread, and poor Barrois followed him +as he best might. Morrel was only thirty-one, Barrois was sixty years +of age; Morrel was deeply in love, and Barrois was dying with heat and +exertion. These two men, thus opposed in age and interests, resembled +two parts of a triangle, presenting the extremes of separation, yet +nevertheless possessing their point of union. This point of union was +Noirtier, and it was he who had just sent for Morrel, with the request +that the latter would lose no time in coming to him—a command which +Morrel obeyed to the letter, to the great discomfiture of Barrois. On +arriving at the house, Morrel was not even out of breath, for love +lends wings to our desires; but Barrois, who had long forgotten what it +was to love, was sorely fatigued by the expedition he had been +constrained to use. + +The old servant introduced Morrel by a private entrance, closed the +door of the study, and soon the rustling of a dress announced the +arrival of Valentine. She looked marvellously beautiful in her deep +mourning dress, and Morrel experienced such intense delight in gazing +upon her that he felt as if he could almost have dispensed with the +conversation of her grandfather. + +But the easy-chair of the old man was heard rolling along the floor, +and he soon made his appearance in the room. Noirtier acknowledged by a +look of extreme kindness and benevolence the thanks which Morrel +lavished on him for his timely intervention on behalf of Valentine and +himself—an intervention which had saved them from despair. Morrel then +cast on the invalid an interrogative look as to the new favor which he +designed to bestow on him. Valentine was sitting at a little distance +from them, timidly awaiting the moment when she should be obliged to +speak. Noirtier fixed his eyes on her. + +“Am I to say what you told me?” asked Valentine. Noirtier made a sign +that she was to do so. + +“Monsieur Morrel,” said Valentine to the young man, who was regarding +her with the most intense interest, “my grandfather, M. Noirtier, had a +thousand things to say, which he told me three days ago; and now, he +has sent for you, that I may repeat them to you. I will repeat them, +then; and since he has chosen me as his interpreter, I will be faithful +to the trust, and will not alter a word of his intentions.” + +“Oh, I am listening with the greatest impatience,” replied the young +man; “speak, I beg of you.” + +Valentine cast down her eyes; this was a good omen for Morrel, for he +knew that nothing but happiness could have the power of thus overcoming +Valentine. + +“My grandfather intends leaving this house,” said she, “and Barrois is +looking out for suitable apartments for him in another.” + +“But you, Mademoiselle de Villefort,—you, who are necessary to M. +Noirtier’s happiness——” + +“I?” interrupted Valentine; “I shall not leave my grandfather,—that is +an understood thing between us. My apartment will be close to his. Now, +M. de Villefort must either give his consent to this plan or his +refusal; in the first case, I shall leave directly, and in the second, +I shall wait till I am of age, which will be in about ten months. Then +I shall be free, I shall have an independent fortune, and”— + +“And what?” demanded Morrel. + +“And with my grandfather’s consent I shall fulfil the promise which I +have made you.” + +Valentine pronounced these last few words in such a low tone, that +nothing but Morrel’s intense interest in what she was saying could have +enabled him to hear them. + +“Have I not explained your wishes, grandpapa?” said Valentine, +addressing Noirtier. + +“Yes,” looked the old man. + +“Once under my grandfather’s roof, M. Morrel can visit me in the +presence of my good and worthy protector, if we still feel that the +union we contemplated will be likely to insure our future comfort and +happiness; in that case I shall expect M. Morrel to come and claim me +at my own hands. But, alas, I have heard it said that hearts inflamed +by obstacles to their desire grew cold in time of security; I trust we +shall never find it so in our experience!” + +“Oh,” cried Morrel, almost tempted to throw himself on his knees before +Noirtier and Valentine, and to adore them as two superior beings, “what +have I ever done in my life to merit such unbounded happiness?” + +“Until that time,” continued the young girl in a calm and +self-possessed tone of voice, “we will conform to circumstances, and be +guided by the wishes of our friends, so long as those wishes do not +tend finally to separate us; in a word, and I repeat it, because it +expresses all I wish to convey,—we will wait.” + +“And I swear to make all the sacrifices which this word imposes, sir,” +said Morrel, “not only with resignation, but with cheerfulness.” + +“Therefore,” continued Valentine, looking playfully at Maximilian, “no +more inconsiderate actions—no more rash projects; for you surely would +not wish to compromise one who from this day regards herself as +destined, honorably and happily, to bear your name?” + +Morrel looked obedience to her commands. Noirtier regarded the lovers +with a look of ineffable tenderness, while Barrois, who had remained in +the room in the character of a man privileged to know everything that +passed, smiled on the youthful couple as he wiped the perspiration from +his bald forehead. + +“How hot you look, my good Barrois,” said Valentine. + +“Ah, I have been running very fast, mademoiselle, but I must do M. +Morrel the justice to say that he ran still faster.” + +Noirtier directed their attention to a waiter, on which was placed a +decanter containing lemonade and a glass. The decanter was nearly full, +with the exception of a little, which had been already drunk by M. +Noirtier. + +“Come, Barrois,” said the young girl, “take some of this lemonade; I +see you are coveting a good draught of it.” + +“The fact is, mademoiselle,” said Barrois, “I am dying with thirst, and +since you are so kind as to offer it me, I cannot say I should at all +object to drinking your health in a glass of it.” + +“Take some, then, and come back immediately.” + +Barrois took away the waiter, and hardly was he outside the door, which +in his haste he forgot to shut, than they saw him throw back his head +and empty to the very dregs the glass which Valentine had filled. +Valentine and Morrel were exchanging their adieux in the presence of +Noirtier when a ring was heard at the door-bell. It was the signal of a +visit. Valentine looked at her watch. + +“It is past noon,” said she, “and today is Saturday; I dare say it is +the doctor, grandpapa.” + +Noirtier looked his conviction that she was right in her supposition. + +“He will come in here, and M. Morrel had better go,—do you not think +so, grandpapa?” + +“Yes,” signed the old man. + +“Barrois,” cried Valentine, “Barrois!” + +“I am coming, mademoiselle,” replied he. + +“Barrois will open the door for you,” said Valentine, addressing +Morrel. “And now remember one thing, Monsieur Officer, that my +grandfather commands you not to take any rash or ill-advised step which +would be likely to compromise our happiness.” + +40108m + + + +“I promised him to wait,” replied Morrel; “and I will wait.” + +At this moment Barrois entered. “Who rang?” asked Valentine. + +“Doctor d’Avrigny,” said Barrois, staggering as if he would fall. + +“What is the matter, Barrois?” said Valentine. The old man did not +answer, but looked at his master with wild staring eyes, while with his +cramped hand he grasped a piece of furniture to enable him to stand +upright. + +“He is going to fall!” cried Morrel. + +The rigors which had attacked Barrois gradually increased, the features +of the face became quite altered, and the convulsive movement of the +muscles appeared to indicate the approach of a most serious nervous +disorder. Noirtier, seeing Barrois in this pitiable condition, showed +by his looks all the various emotions of sorrow and sympathy which can +animate the heart of man. Barrois made some steps towards his master. + +“Ah, sir,” said he, “tell me what is the matter with me. I am +suffering—I cannot see. A thousand fiery darts are piercing my brain. +Ah, don’t touch me, pray don’t.” + +By this time his haggard eyes had the appearance of being ready to +start from their sockets; his head fell back, and the lower extremities +of the body began to stiffen. Valentine uttered a cry of horror; Morrel +took her in his arms, as if to defend her from some unknown danger. + +“M. d’Avrigny, M. d’Avrigny,” cried she, in a stifled voice. “Help, +help!” + +Barrois turned round and with a great effort stumbled a few steps, then +fell at the feet of Noirtier, and resting his hand on the knee of the +invalid, exclaimed: + +“My master, my good master!” + +At this moment M. de Villefort, attracted by the noise, appeared on the +threshold. Morrel relaxed his hold of Valentine, and retreating to a +distant corner of the room remained half hidden behind a curtain. Pale +as if he had been gazing on a serpent, he fixed his terrified eye on +the agonized sufferer. + +Noirtier, burning with impatience and terror, was in despair at his +utter inability to help his old domestic, whom he regarded more in the +light of a friend than a servant. One might by the fearful swelling of +the veins of his forehead and the contraction of the muscles round the +eye, trace the terrible conflict which was going on between the living +energetic mind and the inanimate and helpless body. + +Barrois, his features convulsed, his eyes suffused with blood, and his +head thrown back, was lying at full length, beating the floor with his +hands, while his legs had become so stiff, that they looked as if they +would break rather than bend. A slight appearance of foam was visible +around the mouth, and he breathed painfully, and with extreme +difficulty. + +Villefort seemed stupefied with astonishment, and remained gazing +intently on the scene before him without uttering a word. He had not +seen Morrel. After a moment of dumb contemplation, during which his +face became pale and his hair seemed to stand on end, he sprang towards +the door, crying out: + +“Doctor, doctor! come instantly, pray come!” + +“Madame, madame!” cried Valentine, calling her step-mother, and running +upstairs to meet her; “come quick, quick!—and bring your bottle of +smelling-salts with you.” + +“What is the matter?” said Madame de Villefort in a harsh and +constrained tone. + +“Oh! come! come!” + +“But where is the doctor?” exclaimed Villefort; “where is he?” + +Madame de Villefort now deliberately descended the staircase. In one +hand she held her handkerchief, with which she appeared to be wiping +her face, and in the other a bottle of English smelling-salts. Her +first look on entering the room was at Noirtier, whose face, +independent of the emotion which such a scene could not fail of +producing, proclaimed him to be in possession of his usual health; her +second glance was at the dying man. She turned pale, and her eye passed +quickly from the servant and rested on the master. + +“In the name of heaven, madame,” said Villefort, “where is the doctor? +He was with you just now. You see this is a fit of apoplexy, and he +might be saved if he could but be bled!” + +“Has he eaten anything lately?” asked Madame de Villefort, eluding her +husband’s question. + +“Madame,” replied Valentine, “he has not even breakfasted. He has been +running very fast on an errand with which my grandfather charged him, +and when he returned, took nothing but a glass of lemonade.” + +“Ah,” said Madame de Villefort, “why did he not take wine? Lemonade was +a very bad thing for him.” + +“Grandpapa’s bottle of lemonade was standing just by his side; poor +Barrois was very thirsty, and was thankful to drink anything he could +find.” + +Madame de Villefort started. Noirtier looked at her with a glance of +the most profound scrutiny. + +“He has such a short neck,” said she. + +“Madame,” said Villefort, “I ask where is M. d’Avrigny? In God’s name +answer me!” + +“He is with Edward, who is not quite well,” replied Madame de +Villefort, no longer being able to avoid answering. + +Villefort rushed upstairs to fetch him. + +“Take this,” said Madame de Villefort, giving her smelling-bottle to +Valentine. “They will, no doubt, bleed him; therefore I will retire, +for I cannot endure the sight of blood;” and she followed her husband +upstairs. Morrel now emerged from his hiding-place, where he had +remained quite unperceived, so great had been the general confusion. + +“Go away as quick as you can, Maximilian,” said Valentine, “and stay +till I send for you. Go.” + +Morrel looked towards Noirtier for permission to retire. The old man, +who had preserved all his usual coolness, made a sign to him to do so. +The young man pressed Valentine’s hand to his lips, and then left the +house by a back staircase. + +At the same moment that he quitted the room, Villefort and the doctor +entered by an opposite door. Barrois was now showing signs of returning +consciousness. The crisis seemed past, a low moaning was heard, and he +raised himself on one knee. D’Avrigny and Villefort laid him on a +couch. + +“What do you prescribe, doctor?” demanded Villefort. + +“Give me some water and ether. You have some in the house, have you +not?” + +“Yes.” + +“Send for some oil of turpentine and tartar emetic.” + +Villefort immediately despatched a messenger. “And now let everyone +retire.” + +“Must I go too?” asked Valentine timidly. + +“Yes, mademoiselle, you especially,” replied the doctor abruptly. + +Valentine looked at M. d’Avrigny with astonishment, kissed her +grandfather on the forehead, and left the room. The doctor closed the +door after her with a gloomy air. + +“Look, look, doctor,” said Villefort, “he is quite coming round again; +I really do not think, after all, it is anything of consequence.” + +M. d’Avrigny answered by a melancholy smile. + +“How do you feel, Barrois?” asked he. + +“A little better, sir.” + +“Will you drink some of this ether and water?” + +“I will try; but don’t touch me.” + +“Why not?” + +“Because I feel that if you were only to touch me with the tip of your +finger the fit would return.” + +“Drink.” + +Barrois took the glass, and, raising it to his purple lips, took about +half of the liquid offered him. + +“Where do you suffer?” asked the doctor. + +“Everywhere. I feel cramps over my whole body.” + +“Do you find any dazzling sensation before the eyes?” + +“Yes.” + +“Any noise in the ears?” + +“Frightful.” + +40112m + + + +“When did you first feel that?” + +“Just now.” + +“Suddenly?” + +“Yes, like a clap of thunder.” + +“Did you feel nothing of it yesterday or the day before?” + +“Nothing.” + +“No drowsiness?” + +“None.” + +“What have you eaten today?” + +“I have eaten nothing; I only drank a glass of my master’s +lemonade—that’s all.” And Barrois turned towards Noirtier, who, +immovably fixed in his armchair, was contemplating this terrible scene +without allowing a word or a movement to escape him. + +“Where is this lemonade?” asked the doctor eagerly. + +“Downstairs in the decanter.” + +“Whereabouts downstairs?” + +“In the kitchen.” + +“Shall I go and fetch it, doctor?” inquired Villefort. + +“No, stay here and try to make Barrois drink the rest of this glass of +ether and water. I will go myself and fetch the lemonade.” + +D’Avrigny bounded towards the door, flew down the back staircase, and +almost knocked down Madame de Villefort, in his haste, who was herself +going down to the kitchen. She cried out, but d’Avrigny paid no +attention to her; possessed with but one idea, he cleared the last four +steps with a bound, and rushed into the kitchen, where he saw the +decanter about three parts empty still standing on the waiter, where it +had been left. He darted upon it as an eagle would seize upon its prey. +Panting with loss of breath, he returned to the room he had just left. +Madame de Villefort was slowly ascending the steps which led to her +room. + +“Is this the decanter you spoke of?” asked d’Avrigny. + +“Yes, doctor.” + +“Is this the same lemonade of which you partook?” + +“I believe so.” + +“What did it taste like?” + +“It had a bitter taste.” + +The doctor poured some drops of the lemonade into the palm of his hand, +put his lips to it, and after having rinsed his mouth as a man does +when he is tasting wine, he spat the liquor into the fireplace. + +“It is no doubt the same,” said he. “Did you drink some too, M. +Noirtier?” + +“Yes.” + +“And did you also discover a bitter taste?” + +“Yes.” + +“Oh, doctor,” cried Barrois, “the fit is coming on again. Oh, do +something for me.” The doctor flew to his patient. + +“That emetic, Villefort—see if it is coming.” + +Villefort sprang into the passage, exclaiming, “The emetic! the +emetic!—is it come yet?” No one answered. The most profound terror +reigned throughout the house. + +“If I had anything by means of which I could inflate the lungs,” said +d’Avrigny, looking around him, “perhaps I might prevent suffocation. +But there is nothing which would do!—nothing!” + +40114m + + + +“Oh, sir,” cried Barrois, “are you going to let me die without help? +Oh, I am dying! Oh, save me!” + +“A pen, a pen!” said the doctor. There was one lying on the table; he +endeavored to introduce it into the mouth of the patient, who, in the +midst of his convulsions, was making vain attempts to vomit; but the +jaws were so clenched that the pen could not pass them. This second +attack was much more violent than the first, and he had slipped from +the couch to the ground, where he was writhing in agony. The doctor +left him in this paroxysm, knowing that he could do nothing to +alleviate it, and, going up to Noirtier, said abruptly: + +“How do you find yourself?—well?” + +“Yes.” + +“Have you any weight on the chest; or does your stomach feel light and +comfortable—eh?” + +“Yes.” + +“Then you feel pretty much as you generally do after you have had the +dose which I am accustomed to give you every Sunday?” + +“Yes.” + +“Did Barrois make your lemonade?” + +“Yes.” + +“Was it you who asked him to drink some of it?” + +“No.” + +“Was it M. de Villefort?” + +“No.” + +“Madame?” + +“No.” + +“It was your granddaughter, then, was it not?” + +“Yes.” + +A groan from Barrois, accompanied by a yawn which seemed to crack the +very jawbones, attracted the attention of M. d’Avrigny; he left M. +Noirtier, and returned to the sick man. + +“Barrois,” said the doctor, “can you speak?” Barrois muttered a few +unintelligible words. “Try and make an effort to do so, my good man.” +said d’Avrigny. Barrois reopened his bloodshot eyes. + +“Who made the lemonade?” + +“I did.” + +“Did you bring it to your master directly it was made?” + +“No.” + +“You left it somewhere, then, in the meantime?” + +“Yes; I left it in the pantry, because I was called away.” + +“Who brought it into this room, then?” + +“Mademoiselle Valentine.” D’Avrigny struck his forehead with his hand. + +“Gracious heaven,” exclaimed he. + +“Doctor, doctor!” cried Barrois, who felt another fit coming. + +“Will they never bring that emetic?” asked the doctor. + +“Here is a glass with one already prepared,” said Villefort, entering +the room. + +“Who prepared it?” + +“The chemist who came here with me.” + +40116m + + + +“Drink it,” said the doctor to Barrois. + +“Impossible, doctor; it is too late; my throat is closing up. I am +choking! Oh, my heart! Ah, my head!—Oh, what agony!—Shall I suffer like +this long?” + +“No, no, friend,” replied the doctor, “you will soon cease to suffer.” + +“Ah, I understand you,” said the unhappy man. “My God, have mercy upon +me!” and, uttering a fearful cry, Barrois fell back as if he had been +struck by lightning. D’Avrigny put his hand to his heart, and placed a +glass before his lips. + +“Well?” said Villefort. + +“Go to the kitchen and get me some syrup of violets.” + +Villefort went immediately. + +“Do not be alarmed, M. Noirtier,” said d’Avrigny; “I am going to take +my patient into the next room to bleed him; this sort of attack is very +frightful to witness.” + +And taking Barrois under the arms, he dragged him into an adjoining +room; but almost immediately he returned to fetch the lemonade. +Noirtier closed his right eye. + +“You want Valentine, do you not? I will tell them to send her to you.” + +Villefort returned, and d’Avrigny met him in the passage. + +“Well, how is he now?” asked he. + +“Come in here,” said d’Avrigny, and he took him into the chamber where +the sick man lay. + +“Is he still in a fit?” said the procureur. + +“He is dead.” + +Villefort drew back a few steps, and, clasping his hands, exclaimed, +with real amazement and sympathy, “Dead?—and so soon too!” + +“Yes, it is very soon,” said the doctor, looking at the corpse before +him; “but that ought not to astonish you; Monsieur and Madame de +Saint-Méran died as soon. People die very suddenly in your house, M. de +Villefort.” + +“What?” cried the magistrate, with an accent of horror and +consternation, “are you still harping on that terrible idea?” + +“Still, sir; and I shall always do so,” replied d’Avrigny, “for it has +never for one instant ceased to retain possession of my mind; and that +you may be quite sure I am not mistaken this time, listen well to what +I am going to say, M. de Villefort.” + +The magistrate trembled convulsively. + +“There is a poison which destroys life almost without leaving any +perceptible traces. I know it well; I have studied it in all its forms +and in the effects which it produces. I recognized the presence of this +poison in the case of poor Barrois as well as in that of Madame de +Saint-Méran. There is a way of detecting its presence. It restores the +blue color of litmus-paper reddened by an acid, and it turns syrup of +violets green. We have no litmus-paper, but, see, here they come with +the syrup of violets.” + +The doctor was right; steps were heard in the passage. M. d’Avrigny +opened the door, and took from the hands of the chambermaid a cup which +contained two or three spoonfuls of the syrup, he then carefully closed +the door. + +“Look,” said he to the procureur, whose heart beat so loudly that it +might almost be heard, “here is in this cup some syrup of violets, and +this decanter contains the remainder of the lemonade of which M. +Noirtier and Barrois partook. If the lemonade be pure and inoffensive, +the syrup will retain its color; if, on the contrary, the lemonade be +drugged with poison, the syrup will become green. Look closely!” + +The doctor then slowly poured some drops of the lemonade from the +decanter into the cup, and in an instant a light cloudy sediment began +to form at the bottom of the cup; this sediment first took a blue +shade, then from the color of sapphire it passed to that of opal, and +from opal to emerald. Arrived at this last hue, it changed no more. The +result of the experiment left no doubt whatever on the mind. + +“The unfortunate Barrois has been poisoned,” said d’Avrigny, “and I +will maintain this assertion before God and man.” + +Villefort said nothing, but he clasped his hands, opened his haggard +eyes, and, overcome with his emotion, sank into a chair. + + + + Chapter 80. The Accusation + +M. d’Avrigny soon restored the magistrate to consciousness, who had +looked like a second corpse in that chamber of death. + +“Oh, death is in my house!” cried Villefort. + +“Say, rather, crime!” replied the doctor. + +“M. d’Avrigny,” cried Villefort, “I cannot tell you all I feel at this +moment,—terror, grief, madness.” + +“Yes,” said M. d’Avrigny, with an imposing calmness, “but I think it is +now time to act. I think it is time to stop this torrent of mortality. +I can no longer bear to be in possession of these secrets without the +hope of seeing the victims and society generally revenged.” + +Villefort cast a gloomy look around him. “In my house,” murmured he, +“in my house!” + +“Come, magistrate,” said M. d’Avrigny, “show yourself a man; as an +interpreter of the law, do honor to your profession by sacrificing your +selfish interests to it.” + +“You make me shudder, doctor. Do you talk of a sacrifice?” + +“I do.” + +“Do you then suspect anyone?” + +“I suspect no one; death raps at your door—it enters—it goes, not +blindfolded, but circumspectly, from room to room. Well, I follow its +course, I track its passage; I adopt the wisdom of the ancients, and +feel my way, for my friendship for your family and my respect for you +are as a twofold bandage over my eyes; well——” + +“Oh, speak, speak, doctor; I shall have courage.” + +“Well, sir, you have in your establishment, or in your family, perhaps, +one of the frightful monstrosities of which each century produces only +one. Locusta and Agrippina, living at the same time, were an exception, +and proved the determination of Providence to effect the entire ruin of +the Roman empire, sullied by so many crimes. Brunhilda and Fredegund +were the results of the painful struggle of civilization in its +infancy, when man was learning to control mind, were it even by an +emissary from the realms of darkness. All these women had been, or +were, beautiful. The same flower of innocence had flourished, or was +still flourishing, on their brow, that is seen on the brow of the +culprit in your house.” + +40120m + + + +Villefort shrieked, clasped his hands, and looked at the doctor with a +supplicating air. But the latter went on without pity: + +“‘Seek whom the crime will profit,’ says an axiom of jurisprudence.” + +“Doctor,” cried Villefort, “alas, doctor, how often has man’s justice +been deceived by those fatal words. I know not why, but I feel that +this crime——” + +“You acknowledge, then, the existence of the crime?” + +“Yes, I see too plainly that it does exist. But it seems that it is +intended to affect me personally. I fear an attack myself, after all +these disasters.” + +“Oh, man!” murmured d’Avrigny, “the most selfish of all animals, the +most personal of all creatures, who believes the earth turns, the sun +shines, and death strikes for him alone,—an ant cursing God from the +top of a blade of grass! And have those who have lost their lives lost +nothing?—M. de Saint-Méran, Madame de Saint-Méran, M. Noirtier——” + +“How? M. Noirtier?” + +“Yes; think you it was the poor servant’s life was coveted? No, no; +like Shakespeare’s Polonius, he died for another. It was Noirtier the +lemonade was intended for—it is Noirtier, logically speaking, who drank +it. The other drank it only by accident, and, although Barrois is dead, +it was Noirtier whose death was wished for.” + +“But why did it not kill my father?” + +“I told you one evening in the garden after Madame de Saint-Méran’s +death—because his system is accustomed to that very poison, and the +dose was trifling to him, which would be fatal to another; because no +one knows, not even the assassin, that, for the last twelve months, I +have given M. Noirtier brucine for his paralytic affection, while the +assassin is not ignorant, for he has proved that brucine is a violent +poison.” + +“Oh, have pity—have pity!” murmured Villefort, wringing his hands. + +“Follow the culprit’s steps; he first kills M. de Saint-Méran——” + +“Oh, doctor!” + +“I would swear to it; what I heard of his symptoms agrees too well with +what I have seen in the other cases.” Villefort ceased to contend; he +only groaned. “He first kills M. de Saint-Méran,” repeated the doctor, +“then Madame de Saint-Méran,—a double fortune to inherit.” Villefort +wiped the perspiration from his forehead. “Listen attentively.” + +“Alas,” stammered Villefort, “I do not lose a single word.” + +“M. Noirtier,” resumed M. d’Avrigny in the same pitiless tone,—“M. +Noirtier had once made a will against you—against your family—in favor +of the poor, in fact; M. Noirtier is spared, because nothing is +expected from him. But he has no sooner destroyed his first will and +made a second, than, for fear he should make a third, he is struck +down. The will was made the day before yesterday, I believe; you see +there has been no time lost.” + +“Oh, mercy, M. d’Avrigny!” + +“No mercy, sir! The physician has a sacred mission on earth; and to +fulfil it he begins at the source of life, and goes down to the +mysterious darkness of the tomb. When crime has been committed, and +God, doubtless in anger, turns away his face, it is for the physician +to bring the culprit to justice.” + +40122m + + + +“Have mercy on my child, sir,” murmured Villefort. + +“You see it is yourself who have first named her—you, her father.” + +“Have pity on Valentine! Listen, it is impossible. I would as willingly +accuse myself! Valentine, whose heart is pure as a diamond or a lily!” + +“No pity, procureur; the crime is fragrant. Mademoiselle herself packed +all the medicines which were sent to M. de Saint-Méran; and M. de +Saint-Méran is dead. Mademoiselle de Villefort prepared all the cooling +draughts which Madame de Saint-Méran took, and Madame de Saint-Méran is +dead. Mademoiselle de Villefort took from the hands of Barrois, who was +sent out, the lemonade which M. Noirtier had every morning, and he has +escaped by a miracle. Mademoiselle de Villefort is the culprit—she is +the poisoner! To you, as the king’s attorney, I denounce Mademoiselle +de Villefort, do your duty.” + +“Doctor, I resist no longer—I can no longer defend myself—I believe +you; but, for pity’s sake, spare my life, my honor!” + +“M. de Villefort,” replied the doctor, with increased vehemence, “there +are occasions when I dispense with all foolish human circumspection. If +your daughter had committed only one crime, and I saw her meditating +another, I would say ‘Warn her, punish her, let her pass the remainder +of her life in a convent, weeping and praying.’ If she had committed +two crimes, I would say, ‘Here, M. de Villefort, is a poison that the +prisoner is not acquainted with,—one that has no known antidote, quick +as thought, rapid as lightning, mortal as the thunderbolt; give her +that poison, recommending her soul to God, and save your honor and your +life, for it is yours she aims at; and I can picture her approaching +your pillow with her hypocritical smiles and her sweet exhortations. +Woe to you, M. de Villefort, if you do not strike first!’ This is what +I would say had she only killed two persons but she has seen three +deaths,—has contemplated three murdered persons,—has knelt by three +corpses! To the scaffold with the poisoner—to the scaffold! Do you talk +of your honor? Do what I tell you, and immortality awaits you!” + +Villefort fell on his knees. + +“Listen,” said he; “I have not the strength of mind you have, or rather +that which you would not have, if instead of my daughter Valentine your +daughter Madeleine were concerned.” The doctor turned pale. “Doctor, +every son of woman is born to suffer and to die; I am content to suffer +and to await death.” + +“Beware,” said M. d’Avrigny, “it may come slowly; you will see it +approach after having struck your father, your wife, perhaps your son.” + +Villefort, suffocating, pressed the doctor’s arm. + +40124m + + + +“Listen,” cried he; “pity me—help me! No, my daughter is not guilty. If +you drag us both before a tribunal I will still say, ‘No, my daughter +is not guilty;—there is no crime in my house. I will not acknowledge a +crime in my house; for when crime enters a dwelling, it is like +death—it does not come alone.’ Listen. What does it signify to you if I +am murdered? Are you my friend? Are you a man? Have you a heart? No, +you are a physician! Well, I tell you I will not drag my daughter +before a tribunal, and give her up to the executioner! The bare idea +would kill me—would drive me like a madman to dig my heart out with my +finger-nails! And if you were mistaken, doctor—if it were not my +daughter—if I should come one day, pale as a spectre, and say to you, +‘Assassin, you have killed my child!’—hold—if that should happen, +although I am a Christian, M. d’Avrigny, I should kill myself.” + +“Well,” said the doctor, after a moment’s silence, “I will wait.” + +Villefort looked at him as if he had doubted his words. + +“Only,” continued M. d’Avrigny, with a slow and solemn tone, “if anyone +falls ill in your house, if you feel yourself attacked, do not send for +me, for I will come no more. I will consent to share this dreadful +secret with you, but I will not allow shame and remorse to grow and +increase in my conscience, as crime and misery will in your house.” + +“Then you abandon me, doctor?” + +“Yes, for I can follow you no farther, and I only stop at the foot of +the scaffold. Some further discovery will be made, which will bring +this dreadful tragedy to a close. Adieu.” + +“I entreat you, doctor!” + +“All the horrors that disturb my thoughts make your house odious and +fatal. Adieu, sir.” + +“One word—one single word more, doctor! You go, leaving me in all the +horror of my situation, after increasing it by what you have revealed +to me. But what will be reported of the sudden death of the poor old +servant?” + +“True,” said M. d’Avrigny; “we will return.” + +The doctor went out first, followed by M. de Villefort. The terrified +servants were on the stairs and in the passage where the doctor would +pass. + +“Sir,” said d’Avrigny to Villefort, so loud that all might hear, “poor +Barrois has led too sedentary a life of late; accustomed formerly to +ride on horseback, or in the carriage, to the four corners of Europe, +the monotonous walk around that armchair has killed him—his blood has +thickened. He was stout, had a short, thick neck; he was attacked with +apoplexy, and I was called in too late. By the way,” added he in a low +tone, “take care to throw away that cup of syrup of violets in the +ashes.” + +The doctor, without shaking hands with Villefort, without adding a word +to what he had said, went out, amid the tears and lamentations of the +whole household. The same evening all Villefort’s servants, who had +assembled in the kitchen, and had a long consultation, came to tell +Madame de Villefort that they wished to leave. No entreaty, no +proposition of increased wages, could induce them to remain; to every +argument they replied, “We must go, for death is in this house.” + +They all left, in spite of prayers and entreaties, testifying their +regret at leaving so good a master and mistress, and especially +Mademoiselle Valentine, so good, so kind, and so gentle. + +Villefort looked at Valentine as they said this. She was in tears, and, +strange as it was, in spite of the emotions he felt at the sight of +these tears, he looked also at Madame de Villefort, and it appeared to +him as if a slight gloomy smile had passed over her thin lips, like a +meteor seen passing inauspiciously between two clouds in a stormy sky. + + + + Chapter 81. The Room of the Retired Baker + +The evening of the day on which the Count of Morcerf had left Danglars’ +house with feelings of shame and anger at the rejection of the +projected alliance, M. Andrea Cavalcanti, with curled hair, moustaches +in perfect order, and white gloves which fitted admirably, had entered +the courtyard of the banker’s house in Rue de la Chaussée d’Antin. He +had not been more than ten minutes in the drawing-room before he drew +Danglars aside into the recess of a bow-window, and, after an ingenious +preamble, related to him all his anxieties and cares since his noble +father’s departure. He acknowledged the extreme kindness which had been +shown him by the banker’s family, in which he had been received as a +son, and where, besides, his warmest affections had found an object on +which to centre in Mademoiselle Danglars. + +Danglars listened with the most profound attention; he had expected +this declaration for the last two or three days, and when at last it +came his eyes glistened as much as they had lowered on listening to +Morcerf. He would not, however, yield immediately to the young man’s +request, but made a few conscientious objections. + +“Are you not rather young, M. Andrea, to think of marrying?” + +“I think not, sir,” replied M. Cavalcanti; “in Italy the nobility +generally marry young. Life is so uncertain, that we ought to secure +happiness while it is within our reach.” + +“Well, sir,” said Danglars, “in case your proposals, which do me honor, +are accepted by my wife and daughter, by whom shall the preliminary +arrangements be settled? So important a negotiation should, I think, be +conducted by the respective fathers of the young people.” + +“Sir, my father is a man of great foresight and prudence. Thinking that +I might wish to settle in France, he left me at his departure, together +with the papers establishing my identity, a letter promising, if he +approved of my choice, 150,000 livres per annum from the day I was +married. So far as I can judge, I suppose this to be a quarter of my +father’s revenue.” + +“I,” said Danglars, “have always intended giving my daughter 500,000 +francs as her dowry; she is, besides, my sole heiress.” + +“All would then be easily arranged if the baroness and her daughter are +willing. We should command an annuity of 175,000 livres. Supposing, +also, I should persuade the marquis to give me my capital, which is not +likely, but still is possible, we would place these two or three +millions in your hands, whose talent might make it realize ten per +cent.” + +“I never give more than four per cent, and generally only three and a +half; but to my son-in-law I would give five, and we would share the +profits.” + +“Very good, father-in-law,” said Cavalcanti, yielding to his low-born +nature, which would escape sometimes through the aristocratic gloss +with which he sought to conceal it. Correcting himself immediately, he +said, “Excuse me, sir; hope alone makes me almost mad,—what will not +reality do?” + +“But,” said Danglars, who, on his part, did not perceive how soon the +conversation, which was at first disinterested, was turning to a +business transaction, “there is, doubtless, a part of your fortune your +father could not refuse you?” + +“Which?” asked the young man. + +“That you inherit from your mother.” + +“Truly, from my mother, Leonora Corsinari.” + +“How much may it amount to?” + +“Indeed, sir,” said Andrea, “I assure you I have never given the +subject a thought, but I suppose it must have been at least two +millions.” + +Danglars felt as much overcome with joy as the miser who finds a lost +treasure, or as the shipwrecked mariner who feels himself on solid +ground instead of in the abyss which he expected would swallow him up. + +“Well, sir,” said Andrea, bowing to the banker respectfully, “may I +hope?” + +“You may not only hope,” said Danglars, “but consider it a settled +thing, if no obstacle arises on your part.” + +“I am, indeed, rejoiced,” said Andrea. + +“But,” said Danglars thoughtfully, “how is it that your patron, M. de +Monte Cristo, did not make his proposal for you?” + +Andrea blushed imperceptibly. + +“I have just left the count, sir,” said he; “he is, doubtless, a +delightful man but inconceivably peculiar in his ideas. He esteems me +highly. He even told me he had not the slightest doubt that my father +would give me the capital instead of the interest of my property. He +has promised to use his influence to obtain it for me; but he also +declared that he never had taken on himself the responsibility of +making proposals for another, and he never would. I must, however, do +him the justice to add that he assured me if ever he had regretted the +repugnance he felt to such a step it was on this occasion, because he +thought the projected union would be a happy and suitable one. Besides, +if he will do nothing officially, he will answer any questions you +propose to him. And now,” continued he, with one of his most charming +smiles, “having finished talking to the father-in-law, I must address +myself to the banker.” + +“And what may you have to say to him?” said Danglars, laughing in his +turn. + +“That the day after tomorrow I shall have to draw upon you for about +four thousand francs; but the count, expecting my bachelor’s revenue +could not suffice for the coming month’s outlay, has offered me a draft +for twenty thousand francs. It bears his signature, as you see, which +is all-sufficient.” + +“Bring me a million such as that,” said Danglars, “I shall be well +pleased,” putting the draft in his pocket. “Fix your own hour for +tomorrow, and my cashier shall call on you with a check for eighty +thousand francs.” + +“At ten o’clock then, if you please; I should like it early, as I am +going into the country tomorrow.” + +“Very well, at ten o’clock; you are still at the Hôtel des Princes?” + +“Yes.” + +The following morning, with the banker’s usual punctuality, the eighty +thousand francs were placed in the young man’s hands, as he was on the +point of starting, after having left two hundred francs for Caderousse. +He went out chiefly to avoid this dangerous enemy, and returned as late +as possible in the evening. + +But scarcely had he stepped out of his carriage when the porter met him +with a parcel in his hand. + +“Sir,” said he, “that man has been here.” + +“What man?” said Andrea carelessly, apparently forgetting him whom he +but too well recollected. + +“Him to whom your excellency pays that little annuity.” + +“Oh,” said Andrea, “my father’s old servant. Well, you gave him the two +hundred francs I had left for him?” + +“Yes, your excellency.” Andrea had expressed a wish to be thus +addressed. “But,” continued the porter, “he would not take them.” + +Andrea turned pale, but as it was dark his pallor was not perceptible. +“What? he would not take them?” said he with slight emotion. + +40130m + + + +“No, he wished to speak to your excellency; I told him you were gone +out, and after some dispute he believed me and gave me this letter, +which he had brought with him already sealed.” + +“Give it me,” said Andrea, and he read by the light of his +carriage-lamp: + +“‘You know where I live; I expect you tomorrow morning at nine +o’clock.’” + +Andrea examined it carefully, to ascertain if the letter had been +opened, or if any indiscreet eyes had seen its contents; but it was so +carefully folded, that no one could have read it, and the seal was +perfect. + +“Very well,” said he. “Poor man, he is a worthy creature.” He left the +porter to ponder on these words, not knowing which most to admire, the +master or the servant. + +“Take out the horses quickly, and come up to me,” said Andrea to his +groom. In two seconds the young man had reached his room and burnt +Caderousse’s letter. The servant entered just as he had finished. + +“You are about my height, Pierre,” said he. + +“I have that honor, your excellency.” + +“You had a new livery yesterday?” + +“Yes, sir.” + +“I have an engagement with a pretty little girl for this evening, and +do not wish to be known; lend me your livery till tomorrow. I may +sleep, perhaps, at an inn.” + +Pierre obeyed. Five minutes after, Andrea left the hotel, completely +disguised, took a cabriolet, and ordered the driver to take him to the +Cheval Rouge, at Picpus. The next morning he left that inn as he had +left the Hôtel des Princes, without being noticed, walked down the +Faubourg Saint-Antoine, along the boulevard to Rue Ménilmontant, and +stopping at the door of the third house on the left looked for someone +of whom to make inquiry in the porter’s absence. + +“For whom are you looking, my fine fellow?” asked the fruiteress on the +opposite side. + +“Monsieur Pailletin, if you please, my good woman,” replied Andrea. + +“A retired baker?” asked the fruiteress. + +“Exactly.” + +“He lives at the end of the yard, on the left, on the third story.” + +40132m + + + +Andrea went as she directed him, and on the third floor he found a +hare’s paw, which, by the hasty ringing of the bell, it was evident he +pulled with considerable ill-temper. A moment after Caderousse’s face +appeared at the grating in the door. + +“Ah! you are punctual,” said he, as he drew back the door. + +“Confound you and your punctuality!” said Andrea, throwing himself into +a chair in a manner which implied that he would rather have flung it at +the head of his host. + +“Come, come, my little fellow, don’t be angry. See, I have thought +about you—look at the good breakfast we are going to have; nothing but +what you are fond of.” + +Andrea, indeed, inhaled the scent of something cooking which was not +unwelcome to him, hungry as he was; it was that mixture of fat and +garlic peculiar to Provençal kitchens of an inferior order, added to +that of dried fish, and above all, the pungent smell of musk and +cloves. These odors escaped from two deep dishes which were covered and +placed on a stove, and from a copper pan placed in an old iron pot. In +an adjoining room Andrea saw also a tolerably clean table prepared for +two, two bottles of wine sealed, the one with green, the other with +yellow, a supply of brandy in a decanter, and a measure of fruit in a +cabbage-leaf, cleverly arranged on an earthenware plate. + +“What do you think of it, my little fellow?” said Caderousse. “Ay, that +smells good! You know I used to be a good cook; do you recollect how +you used to lick your fingers? You were among the first who tasted any +of my dishes, and I think you relished them tolerably.” While speaking, +Caderousse went on peeling a fresh supply of onions. + +“But,” said Andrea, ill-temperedly, “by my faith, if it was only to +breakfast with you, that you disturbed me, I wish the devil had taken +you!” + +“My boy,” said Caderousse sententiously, “one can talk while eating. +And then, you ungrateful being, you are not pleased to see an old +friend? I am weeping with joy.” + +He was truly crying, but it would have been difficult to say whether +joy or the onions produced the greatest effect on the lachrymal glands +of the old innkeeper of the Pont-du-Gard. + +“Hold your tongue, hypocrite,” said Andrea; “you love me!” + +“Yes, I do, or may the devil take me. I know it is a weakness,” said +Caderousse, “but it overpowers me.” + +“And yet it has not prevented your sending for me to play me some +trick.” + +“Come,” said Caderousse, wiping his large knife on his apron, “if I did +not like you, do you think I should endure the wretched life you lead +me? Think for a moment. You have your servant’s clothes on—you +therefore keep a servant; I have none, and am obliged to prepare my own +meals. You abuse my cookery because you dine at the table d’hôte of the +Hôtel des Princes, or the Café de Paris. Well, I too could keep a +servant; I too could have a tilbury; I too could dine where I like; but +why do I not? Because I would not annoy my little Benedetto. Come, just +acknowledge that I could, eh?” + +This address was accompanied by a look which was by no means difficult +to understand. + +“Well,” said Andrea, “admitting your love, why do you want me to +breakfast with you?” + +“That I may have the pleasure of seeing you, my little fellow.” + +“What is the use of seeing me after we have made all our arrangements?” + +“Eh, dear friend,” said Caderousse, “are wills ever made without +codicils? But you first came to breakfast, did you not? Well, sit down, +and let us begin with these pilchards, and this fresh butter; which I +have put on some vine-leaves to please you, wicked one. Ah, yes; you +look at my room, my four straw chairs, my images, three francs each. +But what do you expect? This is not the Hôtel des Princes.” + +“Come, you are growing discontented, you are no longer happy; you, who +only wish to live like a retired baker.” + +Caderousse sighed. + +“Well, what have you to say? you have seen your dream realized.” + +“I can still say it is a dream; a retired baker, my poor Benedetto, is +rich—he has an annuity.” + +“Well, you have an annuity.” + +“I have?” + +40134m + + + +“Yes, since I bring you your two hundred francs.” + +Caderousse shrugged his shoulders. + +“It is humiliating,” said he, “thus to receive money given +grudgingly,—an uncertain supply which may soon fail. You see I am +obliged to economize, in case your prosperity should cease. Well, my +friend, fortune is inconstant, as the chaplain of the regiment said. I +know your prosperity is great, you rascal; you are to marry the +daughter of Danglars.” + +“What? of Danglars?” + +“Yes, to be sure; must I say Baron Danglars? I might as well say Count +Benedetto. He was an old friend of mine and if he had not so bad a +memory he ought to invite me to your wedding, seeing he came to mine. +Yes, yes, to mine; gad, he was not so proud then,—he was an under-clerk +to the good M. Morrel. I have dined many times with him and the Count +of Morcerf, so you see I have some high connections and were I to +cultivate them a little, we might meet in the same drawing-rooms.” + +“Come, your jealousy represents everything to you in the wrong light.” + +“That is all very fine, Benedetto mio, but I know what I am saying. +Perhaps I may one day put on my best coat, and presenting myself at the +great gate, introduce myself. Meanwhile let us sit down and eat.” + +Caderousse set the example and attacked the breakfast with good +appetite, praising each dish he set before his visitor. The latter +seemed to have resigned himself; he drew the corks, and partook largely +of the fish with the garlic and fat. + +“Ah, mate,” said Caderousse, “you are getting on better terms with your +old landlord!” + +“Faith, yes,” replied Andrea, whose hunger prevailed over every other +feeling. + +“So you like it, you rogue?” + +“So much that I wonder how a man who can cook thus can complain of hard +living.” + +“Do you see,” said Caderousse, “all my happiness is marred by one +thought?” + +“What is that?” + +“That I am dependent on another, I who have always gained my own +livelihood honestly.” + +“Do not let that disturb you, I have enough for two.” + +“No, truly; you may believe me if you will; at the end of every month I +am tormented by remorse.” + +“Good Caderousse!” + +“So much so, that yesterday I would not take the two hundred francs.” + +“Yes, you wished to speak to me; but was it indeed remorse, tell me?” + +“True remorse; and, besides, an idea had struck me.” + +Andrea shuddered; he always did so at Caderousse’s ideas. + +“It is miserable—do you see?—always to wait till the end of the month.” + +“Oh,” said Andrea philosophically, determined to watch his companion +narrowly, “does not life pass in waiting? Do I, for instance, fare +better? Well, I wait patiently, do I not?” + +“Yes; because instead of expecting two hundred wretched francs, you +expect five or six thousand, perhaps ten, perhaps even twelve, for you +take care not to let anyone know the utmost. Down there, you always had +little presents and Christmas-boxes, which you tried to hide from your +poor friend Caderousse. Fortunately he is a cunning fellow, that friend +Caderousse.” + +“There you are beginning again to ramble, to talk again and again of +the past! But what is the use of teasing me with going all over that +again?” + +“Ah, you are only one-and-twenty, and can forget the past; I am fifty, +and am obliged to recollect it. But let us return to business.” + +“Yes.” + +“I was going to say, if I were in your place——” + +“Well.” + +“I would realize——” + +“How would you realize?” + +“I would ask for six months’ in advance, under pretence of being able +to purchase a farm, then with my six months I would decamp.” + +“Well, well,” said Andrea, “that isn’t a bad idea.” + +“My dear friend,” said Caderousse, “eat of my bread, and take my +advice; you will be none the worse off, physically or morally.” + +“But,” said Andrea, “why do you not act on the advice you gave me? Why +do you not realize a six months’, a year’s advance even, and retire to +Brussels? Instead of living the retired baker, you might live as a +bankrupt, using his privileges; that would be very good.” + +“But how the devil would you have me retire on twelve hundred francs?” + +“Ah, Caderousse,” said Andrea, “how covetous you are! Two months ago +you were dying with hunger.” + +“The appetite grows by what it feeds on,” said Caderousse, grinning and +showing his teeth, like a monkey laughing or a tiger growling. “And,” +added he, biting off with his large white teeth an enormous mouthful of +bread, “I have formed a plan.” + +Caderousse’s plans alarmed Andrea still more than his ideas; ideas were +but the germ, the plan was reality. + +“Let me see your plan; I dare say it is a pretty one.” + +“Why not? Who formed the plan by which we left the establishment of +M——! eh? was it not I? and it was no bad one I believe, since here we +are!” + +“I do not say,” replied Andrea, “that you never make a good one; but +let us see your plan.” + +“Well,” pursued Caderousse, “can you without expending one sou, put me +in the way of getting fifteen thousand francs? No, fifteen thousand are +not enough,—I cannot again become an honest man with less than thirty +thousand francs.” + +“No,” replied Andrea, dryly, “no, I cannot.” + +“I do not think you understand me,” replied Caderousse, calmly; “I said +without your laying out a sou.” + +“Do you want me to commit a robbery, to spoil all my good fortune—and +yours with mine—and both of us to be dragged down there again?” + +“It would make very little difference to me,” said Caderousse, “if I +were retaken, I am a poor creature to live alone, and sometimes pine +for my old comrades; not like you, heartless creature, who would be +glad never to see them again.” + +Andrea did more than tremble this time, he turned pale. + +“Come, Caderousse, no nonsense!” said he. + +“Don’t alarm yourself, my little Benedetto, but just point out to me +some means of gaining those thirty thousand francs without your +assistance, and I will contrive it.” + +“Well, I’ll see—I’ll try to contrive some way,” said Andrea. + +“Meanwhile you will raise my monthly allowance to five hundred francs, +my little fellow? I have a fancy, and mean to get a housekeeper.” + +“Well, you shall have your five hundred francs,” said Andrea; “but it +is very hard for me, my poor Caderousse—you take advantage——” + +“Bah,” said Caderousse, “when you have access to countless stores.” + +One would have said Andrea anticipated his companion’s words, so did +his eye flash like lightning, but it was but for a moment. + +“True,” he replied, “and my protector is very kind.” + +“That dear protector,” said Caderousse; “and how much does he give you +monthly?” + +“Five thousand francs.” + +“As many thousands as you give me hundreds! Truly, it is only bastards +who are thus fortunate. Five thousand francs per month! What the devil +can you do with all that?” + +“Oh, it is no trouble to spend that; and I am like you, I want +capital.” + +“Capital?—yes—I understand—everyone would like capital.” + +“Well, and I shall get it.” + +“Who will give it to you—your prince?” + +“Yes, my prince. But unfortunately I must wait.” + +40138m + + + +“You must wait for what?” asked Caderousse. + +“For his death.” + +“The death of your prince?” + +“Yes.” + +“How so?” + +“Because he has made his will in my favor.” + +“Indeed?” + +“On my honor.” + +“For how much?” + +“For five hundred thousand.” + +“Only that? It’s little enough.” + +“But so it is.” + +“No, it cannot be!” + +“Are you my friend, Caderousse?” + +“Yes, in life or death.” + +“Well, I will tell you a secret.” + +“What is it?” + +“But remember——” + +“Ah! _pardieu!_ mute as a carp.” + +“Well, I think——” + +Andrea stopped and looked around. + +“You think? Do not fear; _pardieu!_ we are alone.” + +“I think I have discovered my father.” + +“Your true father?” + +“Yes.” + +“Not old Cavalcanti?” + +“No, for he has gone again; the true one, as you say.” + +“And that father is——” + +“Well, Caderousse, it is Monte Cristo.” + +“Bah!” + +“Yes, you understand, that explains all. He cannot acknowledge me +openly, it appears, but he does it through M. Cavalcanti, and gives him +fifty thousand francs for it.” + +“Fifty thousand francs for being your father? I would have done it for +half that, for twenty thousand, for fifteen thousand; why did you not +think of me, ungrateful man?” + +“Did I know anything about it, when it was all done when I was down +there?” + +“Ah, truly? And you say that by his will——” + +“He leaves me five hundred thousand livres.” + +“Are you sure of it?” + +“He showed it me; but that is not all—there is a codicil, as I said +just now.” + +“Probably.” + +“And in that codicil he acknowledges me.” + +“Oh, the good father, the brave father, the very honest father!” said +Caderousse, twirling a plate in the air between his two hands. + +“Now, say if I conceal anything from you?” + +“No, and your confidence makes you honorable in my opinion; and your +princely father, is he rich, very rich?” + +“Yes, he is that; he does not himself know the amount of his fortune.” + +“Is it possible?” + +“It is evident enough to me, who am always at his house. The other day +a banker’s clerk brought him fifty thousand francs in a portfolio about +the size of your plate; yesterday his banker brought him a hundred +thousand francs in gold.” + +Caderousse was filled with wonder; the young man’s words sounded to him +like metal, and he thought he could hear the rushing of cascades of +louis. + +“And you go into that house?” cried he briskly. + +“When I like.” + +Caderousse was thoughtful for a moment. It was easy to perceive he was +revolving some unfortunate idea in his mind. Then suddenly,— + +“How I should like to see all that,” cried he; “how beautiful it must +be!” + +“It is, in fact, magnificent,” said Andrea. + +“And does he not live in the Champs-Élysées?” + +“Yes, No. 30.” + +“Ah,” said Caderousse, “No. 30.” + +“Yes, a fine house standing alone, between a courtyard and a +garden,—you must know it.” + +“Possibly; but it is not the exterior I care for, it is the interior. +What beautiful furniture there must be in it!” + +“Have you ever seen the Tuileries?” + +“No.” + +“Well, it surpasses that.” + +“It must be worth one’s while to stoop, Andrea, when that good M. Monte +Cristo lets fall his purse.” + +“It is not worthwhile to wait for that,” said Andrea; “money is as +plentiful in that house as fruit in an orchard.” + +“But you should take me there one day with you.” + +“How can I? On what plea?” + +“You are right; but you have made my mouth water. I must absolutely see +it; I shall find a way.” + +“No nonsense, Caderousse!” + +“I will offer myself as floor-polisher.” + +“The rooms are all carpeted.” + +“Well, then, I must be contented to imagine it.” + +“That is the best plan, believe me.” + +“Try, at least, to give me an idea of what it is.” + +“How can I?” + +“Nothing is easier. Is it large?” + +“Middling.” + +“How is it arranged?” + +“Faith, I should require pen, ink, and paper to make a plan.” + +“They are all here,” said Caderousse, briskly. He fetched from an old +secretaire a sheet of white paper and pen and ink. “Here,” said +Caderousse, “draw me all that on the paper, my boy.” + +Andrea took the pen with an imperceptible smile and began. + +“The house, as I said, is between the court and the garden; in this +way, do you see?” Andrea drew the garden, the court and the house. + +40142m + + + +“High walls?” + +“Not more than eight or ten feet.” + +“That is not prudent,” said Caderousse. + +“In the court are orange-trees in pots, turf, and clumps of flowers.” + +“And no steel-traps?” + +“No.” + +“The stables?” + +“Are on either side of the gate, which you see there.” And Andrea +continued his plan. + +“Let us see the ground floor,” said Caderousse. + +“On the ground floor, dining-room, two drawing-rooms, billiard-room, +staircase in the hall, and a little back staircase.” + +“Windows?” + +“Magnificent windows, so beautiful, so large, that I believe a man of +your size should pass through each frame.” + +“Why the devil have they any stairs with such windows?” + +“Luxury has everything.” + +“But shutters?” + +“Yes, but they are never used. That Count of Monte Cristo is an +original, who loves to look at the sky even at night.” + +“And where do the servants sleep?” + +“Oh, they have a house to themselves. Picture to yourself a pretty +coach-house at the right-hand side where the ladders are kept. Well, +over that coach-house are the servants’ rooms, with bells corresponding +with the different apartments.” + +“Ah, _diable!_ bells did you say?” + +“What do you mean?” + +“Oh, nothing! I only say they cost a load of money to hang, and what is +the use of them, I should like to know?” + +“There used to be a dog let loose in the yard at night, but it has been +taken to the house at Auteuil, to that you went to, you know.” + +“Yes.” + +“I was saying to him only yesterday, ‘You are imprudent, Monsieur +Count; for when you go to Auteuil and take your servants the house is +left unprotected.’ ‘Well,’ said he, ‘what next?’ ‘Well, next, some day +you will be robbed.’” + +“What did he answer?” + +“He quietly said, ‘What do I care if I am?’” + +“Andrea, he has some secretaire with a spring.” + +“How do you know?” + +“Yes, which catches the thief in a trap and plays a tune. I was told +there were such at the last exhibition.” + +“He has simply a mahogany secretaire, in which the key is always kept.” + +“And he is not robbed?” + +“No; his servants are all devoted to him.” + +“There ought to be some money in that secretaire?” + +“There may be. No one knows what there is.” + +“And where is it?” + +“On the first floor.” + +“Sketch me the plan of that floor, as you have done of the ground +floor, my boy.” + +“That is very simple.” Andrea took the pen. “On the first story, do you +see, there is the anteroom and the drawing-room; to the right of the +drawing-room, a library and a study; to the left, a bedroom and a +dressing-room. The famous secretaire is in the dressing-room.” + +“Is there a window in the dressing-room?” + +“Two,—one here and one there.” Andrea sketched two windows in the room, +which formed an angle on the plan, and appeared as a small square added +to the rectangle of the bedroom. Caderousse became thoughtful. + +“Does he often go to Auteuil?” added he. + +“Two or three times a week. Tomorrow, for instance, he is going to +spend the day and night there.” + +“Are you sure of it?” + +“He has invited me to dine there.” + +“There’s a life for you,” said Caderousse; “a town house and a country +house.” + +“That is what it is to be rich.” + +“And shall you dine there?” + +“Probably.” + +“When you dine there, do you sleep there?” + +“If I like; I am at home there.” + +Caderousse looked at the young man, as if to get at the truth from the +bottom of his heart. But Andrea drew a cigar-case from his pocket, took +a Havana, quietly lit it, and began smoking. + +“When do you want your twelve hundred francs?” said he to Caderousse. + +“Now, if you have them.” Andrea took five-and-twenty louis from his +pocket. + +“Yellow boys?” said Caderousse; “no, I thank you.” + +“Oh, you despise them.” + +“On the contrary, I esteem them, but will not have them.” + +“You can change them, idiot; gold is worth five sous.” + +“Exactly; and he who changes them will follow friend Caderousse, lay +hands on him, and demand what farmers pay him their rent in gold. No +nonsense, my good fellow; silver simply, round coins with the head of +some monarch or other on them. Anybody may possess a five-franc piece.” + +“But do you suppose I carry five hundred francs about with me? I should +want a porter.” + +“Well, leave them with your porter; he is to be trusted. I will call +for them.” + +“Today?” + +“No, tomorrow; I shall not have time today.” + +“Well, tomorrow I will leave them when I go to Auteuil.” + +“May I depend on it?” + +“Certainly.” + +“Because I shall secure my housekeeper on the strength of it.” + +“Now see here, will that be all? Eh? And will you not torment me any +more?” + +“Never.” + +Caderousse had become so gloomy that Andrea feared he should be obliged +to notice the change. He redoubled his gayety and carelessness. + +“How sprightly you are,” said Caderousse; “One would say you were +already in possession of your property.” + +“No, unfortunately; but when I do obtain it——” + +“Well?” + +“I shall remember old friends, I can tell you that.” + +“Yes, since you have such a good memory.” + +“What do you want? It looks as if you were trying to fleece me?” + +“I? What an idea! I, who am going to give you another piece of good +advice.” + +“What is it?” + +“To leave behind you the diamond you have on your finger. We shall both +get into trouble. You will ruin both yourself and me by your folly.” + +“How so?” said Andrea. + +“How? You put on a livery, you disguise yourself as a servant, and yet +keep a diamond on your finger worth four or five thousand francs.” + +“You guess well.” + +“I know something of diamonds; I have had some.” + +“You do well to boast of it,” said Andrea, who, without becoming angry, +as Caderousse feared, at this new extortion, quietly resigned the ring. +Caderousse looked so closely at it that Andrea well knew that he was +examining to see if all the edges were perfect. + +“It is a false diamond,” said Caderousse. + +“You are joking now,” replied Andrea. + +“Do not be angry, we can try it.” Caderousse went to the window, +touched the glass with it, and found it would cut. + +“_Confiteor!_” said Caderousse, putting the diamond on his little +finger; “I was mistaken; but those thieves of jewellers imitate so well +that it is no longer worthwhile to rob a jeweller’s shop—it is another +branch of industry paralyzed.” + +“Have you finished?” said Andrea,—“do you want anything more?—will you +have my waistcoat or my hat? Make free, now you have begun.” + +“No; you are, after all, a good companion; I will not detain you, and +will try to cure myself of my ambition.” + +“But take care the same thing does not happen to you in selling the +diamond you feared with the gold.” + +“I shall not sell it—do not fear.” + +“Not at least till the day after tomorrow,” thought the young man. + +“Happy rogue,” said Caderousse; “you are going to find your servants, +your horses, your carriage, and your betrothed!” + +“Yes,” said Andrea. + +“Well, I hope you will make a handsome wedding-present the day you +marry Mademoiselle Danglars.” + +“I have already told you it is a fancy you have taken in your head.” + +“What fortune has she?” + +“But I tell you——” + +“A million?” + +Andrea shrugged his shoulders. + +“Let it be a million,” said Caderousse; “you can never have so much as +I wish you.” + +“Thank you,” said the young man. + +“Oh, I wish it you with all my heart!” added Caderousse with his hoarse +laugh. “Stop, let me show you the way.” + +“It is not worthwhile.” + +“Yes, it is.” + +“Why?” + +“Because there is a little secret, a precaution I thought it desirable +to take, one of Huret & Fichet’s locks, revised and improved by Gaspard +Caderousse; I will manufacture you a similar one when you are a +capitalist.” + +“Thank you,” said Andrea; “I will let you know a week beforehand.” + +They parted. Caderousse remained on the landing until he had not only +seen Andrea go down the three stories, but also cross the court. Then +he returned hastily, shut his door carefully, and began to study, like +a clever architect, the plan Andrea had left him. + +“Dear Benedetto,” said he, “I think he will not be sorry to inherit his +fortune, and he who hastens the day when he can touch his five hundred +thousand will not be his worst friend.” + + + + Chapter 82. The Burglary + +The day following that on which the conversation we have related took +place, the Count of Monte Cristo set out for Auteuil, accompanied by +Ali and several attendants, and also taking with him some horses whose +qualities he was desirous of ascertaining. He was induced to undertake +this journey, of which the day before he had not even thought and which +had not occurred to Andrea either, by the arrival of Bertuccio from +Normandy with intelligence respecting the house and sloop. The house +was ready, and the sloop which had arrived a week before lay at anchor +in a small creek with her crew of six men, who had observed all the +requisite formalities and were ready again to put to sea. + +The count praised Bertuccio’s zeal, and ordered him to prepare for a +speedy departure, as his stay in France would not be prolonged more +than a month. + +“Now,” said he, “I may require to go in one night from Paris to +Tréport; let eight fresh horses be in readiness on the road, which will +enable me to go fifty leagues in ten hours.” + +“Your highness had already expressed that wish,” said Bertuccio, “and +the horses are ready. I have bought them, and stationed them myself at +the most desirable posts, that is, in villages, where no one generally +stops.” + +“That’s well,” said Monte Cristo; “I remain here a day or two—arrange +accordingly.” + +As Bertuccio was leaving the room to give the requisite orders, +Baptistin opened the door: he held a letter on a silver waiter. + +“What are you doing here?” asked the count, seeing him covered with +dust; “I did not send for you, I think?” + +Baptistin, without answering, approached the count, and presented the +letter. “Important and urgent,” said he. + +The count opened the letter, and read: + +“‘M. de Monte Cristo is apprised that this night a man will enter his +house in the Champs-Élysées with the intention of carrying off some +papers supposed to be in the secretaire in the dressing-room. The +count’s well-known courage will render unnecessary the aid of the +police, whose interference might seriously affect him who sends this +advice. The count, by any opening from the bedroom, or by concealing +himself in the dressing-room, would be able to defend his property +himself. Many attendants or apparent precautions would prevent the +villain from the attempt, and M. de Monte Cristo would lose the +opportunity of discovering an enemy whom chance has revealed to him who +now sends this warning to the count,—a warning he might not be able to +send another time, if this first attempt should fail and another be +made.’” + + +The count’s first idea was that this was an artifice—a gross deception, +to draw his attention from a minor danger in order to expose him to a +greater. He was on the point of sending the letter to the commissary of +police, notwithstanding the advice of his anonymous friend, or perhaps +because of that advice, when suddenly the idea occurred to him that it +might be some personal enemy, whom he alone should recognize and over +whom, if such were the case, he alone would gain any advantage, as +Fiesco17 had done over the Moor who would have killed him. We know the +count’s vigorous and daring mind, denying anything to be impossible, +with that energy which marks the great man. + +From his past life, from his resolution to shrink from nothing, the +count had acquired an inconceivable relish for the contests in which he +had engaged, sometimes against nature, that is to say, against God, and +sometimes against the world, that is, against the devil. + +“They do not want my papers,” said Monte Cristo, “they want to kill me; +they are no robbers, but assassins. I will not allow the prefect of +police to interfere with my private affairs. I am rich enough, +forsooth, to distribute his authority on this occasion.” + +The count recalled Baptistin, who had left the room after delivering +the letter. + +“Return to Paris,” said he; “assemble the servants who remain there. I +want all my household at Auteuil.” + +“But will no one remain in the house, my lord?” asked Baptistin. + +“Yes, the porter.” + +“My lord will remember that the lodge is at a distance from the house.” + +“Well?” + +“The house might be stripped without his hearing the least noise.” + +“By whom?” + +“By thieves.” + +“You are a fool, M. Baptistin. Thieves might strip the house—it would +annoy me less than to be disobeyed.” Baptistin bowed. + +40150m + + + +“You understand me?” said the count. “Bring your comrades here, one and +all; but let everything remain as usual, only close the shutters of the +ground floor.” + +“And those of the first floor?” + +“You know they are never closed. Go!” + +The count signified his intention of dining alone, and that no one but +Ali should attend him. Having dined with his usual tranquillity and +moderation, the count, making a signal to Ali to follow him, went out +by the side-gate and on reaching the Bois de Boulogne turned, +apparently without design towards Paris and at twilight; found himself +opposite his house in the Champs-Élysées. All was dark; one solitary, +feeble light was burning in the porter’s lodge, about forty paces +distant from the house, as Baptistin had said. + +Monte Cristo leaned against a tree, and with that scrutinizing glance +which was so rarely deceived, looked up and down the avenue, examined +the passers-by, and carefully looked down the neighboring streets, to +see that no one was concealed. Ten minutes passed thus, and he was +convinced that no one was watching him. He hastened to the side-door +with Ali, entered hurriedly, and by the servants’ staircase, of which +he had the key, gained his bedroom without opening or disarranging a +single curtain, without even the porter having the slightest suspicion +that the house, which he supposed empty, contained its chief occupant. + +Arrived in his bedroom, the count motioned to Ali to stop; then he +passed into the dressing-room, which he examined. Everything appeared +as usual—the precious secretaire in its place, and the key in the +secretaire. He double locked it, took the key, returned to the bedroom +door, removed the double staple of the bolt, and went in. Meanwhile Ali +had procured the arms the count required—namely, a short carbine and a +pair of double-barrelled pistols, with which as sure an aim might be +taken as with a single-barrelled one. Thus armed, the count held the +lives of five men in his hands. It was about half-past nine. + +The count and Ali ate in haste a crust of bread and drank a glass of +Spanish wine; then Monte Cristo slipped aside one of the movable +panels, which enabled him to see into the adjoining room. He had within +his reach his pistols and carbine, and Ali, standing near him, held one +of the small Arabian hatchets, whose form has not varied since the +Crusades. Through one of the windows of the bedroom, on a line with +that in the dressing-room, the count could see into the street. + +Two hours passed thus. It was intensely dark; still Ali, thanks to his +wild nature, and the count, thanks doubtless to his long confinement, +could distinguish in the darkness the slightest movement of the trees. +The little light in the lodge had long been extinct. It might be +expected that the attack, if indeed an attack was projected, would be +made from the staircase of the ground floor, and not from a window; in +Monte Cristo’s opinion, the villains sought his life, not his money. It +would be his bedroom they would attack, and they must reach it by the +back staircase, or by the window in the dressing-room. + +The clock of the Invalides struck a quarter to twelve; the west wind +bore on its moistened gusts the doleful vibration of the three strokes. + +40152m + + + +As the last stroke died away, the count thought he heard a slight noise +in the dressing-room; this first sound, or rather this first grinding, +was followed by a second, then a third; at the fourth, the count knew +what to expect. A firm and well-practised hand was engaged in cutting +the four sides of a pane of glass with a diamond. The count felt his +heart beat more rapidly. + +Inured as men may be to danger, forewarned as they may be of peril, +they understand, by the fluttering of the heart and the shuddering of +the frame, the enormous difference between a dream and a reality, +between the project and the execution. However, Monte Cristo only made +a sign to apprise Ali, who, understanding that danger was approaching +from the other side, drew nearer to his master. Monte Cristo was eager +to ascertain the strength and number of his enemies. + +The window whence the noise proceeded was opposite the opening by which +the count could see into the dressing-room. He fixed his eyes on that +window—he distinguished a shadow in the darkness; then one of the panes +became quite opaque, as if a sheet of paper were stuck on the outside, +then the square cracked without falling. Through the opening an arm was +passed to find the fastening, then a second; the window turned on its +hinges, and a man entered. He was alone. + +“That’s a daring rascal,” whispered the count. + +At that moment Ali touched him slightly on the shoulder. He turned; Ali +pointed to the window of the room in which they were, facing the +street. + +“I see!” said he, “there are two of them; one does the work while the +other stands guard.” He made a sign to Ali not to lose sight of the man +in the street, and turned to the one in the dressing-room. + +The glass-cutter had entered, and was feeling his way, his arms +stretched out before him. At last he appeared to have made himself +familiar with his surroundings. There were two doors; he bolted them +both. + +When he drew near to the bedroom door, Monte Cristo expected that he +was coming in, and raised one of his pistols; but he simply heard the +sound of the bolts sliding in their copper rings. It was only a +precaution. The nocturnal visitor, ignorant of the fact that the count +had removed the staples, might now think himself at home, and pursue +his purpose with full security. Alone and free to act as he wished, the +man then drew from his pocket something which the count could not +discern, placed it on a stand, then went straight to the secretaire, +felt the lock, and contrary to his expectation found that the key was +missing. But the glass-cutter was a prudent man who had provided for +all emergencies. The count soon heard the rattling of a bunch of +skeleton keys, such as the locksmith brings when called to force a +lock, and which thieves call nightingales, doubtless from the music of +their nightly song when they grind against the bolt. + +“Ah, ha,” whispered Monte Cristo with a smile of disappointment, “he is +only a thief.” + +But the man in the dark could not find the right key. He reached the +instrument he had placed on the stand, touched a spring, and +immediately a pale light, just bright enough to render objects +distinct, was reflected on his hands and countenance. + +“By heavens,” exclaimed Monte Cristo, starting back, “it is——” + +Ali raised his hatchet. + +“Don’t stir,” whispered Monte Cristo, “and put down your hatchet; we +shall require no arms.” + +40154m + + + +Then he added some words in a low tone, for the exclamation which +surprise had drawn from the count, faint as it had been, had startled +the man who remained in the pose of the old knife-grinder. + +It was an order the count had just given, for immediately Ali went +noiselessly, and returned, bearing a black dress and a three-cornered +hat. Meanwhile Monte Cristo had rapidly taken off his greatcoat, +waistcoat, and shirt, and one might distinguish by the glimmering +through the open panel that he wore a pliant tunic of steel mail, of +which the last in France, where daggers are no longer dreaded, was worn +by King Louis XVI., who feared the dagger at his breast, and whose head +was cleft with a hatchet. The tunic soon disappeared under a long +cassock, as did his hair under a priest’s wig; the three-cornered hat +over this effectually transformed the count into an abbé. + +The man, hearing nothing more, stood erect, and while Monte Cristo was +completing his disguise had advanced straight to the secretaire, whose +lock was beginning to crack under his nightingale. + +“Try again,” whispered the count, who depended on the secret spring, +which was unknown to the picklock, clever as he might be—“try again, +you have a few minutes’ work there.” + +And he advanced to the window. The man whom he had seen seated on a +fence had got down, and was still pacing the street; but, strange as it +appeared, he cared not for those who might pass from the avenue of the +Champs-Élysées or by the Faubourg Saint-Honoré; his attention was +engrossed with what was passing at the count’s, and his only aim +appeared to be to discern every movement in the dressing-room. + +Monte Cristo suddenly struck his finger on his forehead and a smile +passed over his lips; then drawing near to Ali, he whispered: + +“Remain here, concealed in the dark, and whatever noise you hear, +whatever passes, only come in or show yourself if I call you.” + +Ali bowed in token of strict obedience. Monte Cristo then drew a +lighted taper from a closet, and when the thief was deeply engaged with +his lock, silently opened the door, taking care that the light should +shine directly on his face. The door opened so quietly that the thief +heard no sound; but, to his astonishment, the room was suddenly +illuminated. He turned. + +“Ah, good-evening, my dear M. Caderousse,” said Monte Cristo; “what are +you doing here, at such an hour?” + +40156m + + + +“The Abbé Busoni!” exclaimed Caderousse; and, not knowing how this +strange apparition could have entered when he had bolted the doors, he +let fall his bunch of keys, and remained motionless and stupefied. The +count placed himself between Caderousse and the window, thus cutting +off from the thief his only chance of retreat. + +“The Abbé Busoni!” repeated Caderousse, fixing his haggard gaze on the +count. + +“Yes, undoubtedly, the Abbé Busoni himself,” replied Monte Cristo. “And +I am very glad you recognize me, dear M. Caderousse; it proves you have +a good memory, for it must be about ten years since we last met.” + +This calmness of Busoni, combined with his irony and boldness, +staggered Caderousse. + +“The abbé, the abbé!” murmured he, clenching his fists, and his teeth +chattering. + +“So you would rob the Count of Monte Cristo?” continued the false abbé. + +“Reverend sir,” murmured Caderousse, seeking to regain the window, +which the count pitilessly blocked—“reverend sir, I don’t know—believe +me—I take my oath——” + +“A pane of glass out,” continued the count, “a dark lantern, a bunch of +false keys, a secretaire half forced—it is tolerably evident——” + +Caderousse was choking; he looked around for some corner to hide in, +some way of escape. + +“Come, come,” continued the count, “I see you are still the same,—an +assassin.” + +“Reverend sir, since you know everything, you know it was not I—it was +La Carconte; that was proved at the trial, since I was only condemned +to the galleys.” + +“Is your time, then, expired, since I find you in a fair way to return +there?” + +“No, reverend sir; I have been liberated by someone.” + +“That someone has done society a great kindness.” + +“Ah,” said Caderousse, “I had promised——” + +“And you are breaking your promise!” interrupted Monte Cristo. + +“Alas, yes!” said Caderousse very uneasily. + +“A bad relapse, that will lead you, if I mistake not, to the Place de +Grève. So much the worse, so much the worse—_diavolo!_ as they say in +my country.” + +“Reverend sir, I am impelled——” + +“Every criminal says the same thing.” + +“Poverty——” + +“Pshaw!” said Busoni disdainfully; “poverty may make a man beg, steal a +loaf of bread at a baker’s door, but not cause him to open a secretaire +in a house supposed to be inhabited. And when the jeweller Johannes had +just paid you 45,000 francs for the diamond I had given you, and you +killed him to get the diamond and the money both, was that also +poverty?” + +“Pardon, reverend sir,” said Caderousse; “you have saved my life once, +save me again!” + +“That is but poor encouragement.” + +“Are you alone, reverend sir, or have you there soldiers ready to seize +me?” + +“I am alone,” said the abbé, “and I will again have pity on you, and +will let you escape, at the risk of the fresh miseries my weakness may +lead to, if you tell me the truth.” + +“Ah, reverend sir,” cried Caderousse, clasping his hands, and drawing +nearer to Monte Cristo, “I may indeed say you are my deliverer!” + +“You mean to say you have been freed from confinement?” + +“Yes, that is true, reverend sir.” + +“Who was your liberator?” + +“An Englishman.” + +“What was his name?” + +“Lord Wilmore.” + +“I know him; I shall know if you lie.” + +“Ah, reverend sir, I tell you the simple truth.” + +“Was this Englishman protecting you?” + +“No, not me, but a young Corsican, my companion.” + +“What was this young Corsican’s name?” + +“Benedetto.” + +“Is that his Christian name?” + +“He had no other; he was a foundling.” + +“Then this young man escaped with you?” + +“He did.” + +“In what way?” + +“We were working at Saint-Mandrier, near Toulon. Do you know +Saint-Mandrier?” + +“I do.” + +“In the hour of rest, between noon and one o’clock——” + +“Galley-slaves having a nap after dinner! We may well pity the poor +fellows!” said the abbé. + +“Nay,” said Caderousse, “one can’t always work—one is not a dog.” + +“So much the better for the dogs,” said Monte Cristo. + +“While the rest slept, then, we went away a short distance; we severed +our fetters with a file the Englishman had given us, and swam away.” + +“And what is become of this Benedetto?” + +“I don’t know.” + +“You ought to know.” + +“No, in truth; we parted at Hyères.” And, to give more weight to his +protestation, Caderousse advanced another step towards the abbé, who +remained motionless in his place, as calm as ever, and pursuing his +interrogation. + +“You lie,” said the Abbé Busoni, with a tone of irresistible authority. + +“Reverend sir!” + +“You lie! This man is still your friend, and you, perhaps, make use of +him as your accomplice.” + +40160m + + + +“Oh, reverend sir!” + +“Since you left Toulon what have you lived on? Answer me!” + +“On what I could get.” + +“You lie,” repeated the abbé a third time, with a still more imperative +tone. Caderousse, terrified, looked at the count. “You have lived on +the money he has given you.” + +“True,” said Caderousse; “Benedetto has become the son of a great +lord.” + +“How can he be the son of a great lord?” + +“A natural son.” + +“And what is that great lord’s name?” + +“The Count of Monte Cristo, the very same in whose house we are.” + +“Benedetto the count’s son?” replied Monte Cristo, astonished in his +turn. + +“Well, I should think so, since the count has found him a false +father—since the count gives him four thousand francs a month, and +leaves him 500,000 francs in his will.” + +“Ah, yes,” said the factitious abbé, who began to understand; “and what +name does the young man bear meanwhile?” + +“Andrea Cavalcanti.” + +“Is it, then, that young man whom my friend the Count of Monte Cristo +has received into his house, and who is going to marry Mademoiselle +Danglars?” + +“Exactly.” + +“And you suffer that, you wretch!—you, who know his life and his +crime?” + +“Why should I stand in a comrade’s way?” said Caderousse. + +“You are right; it is not you who should apprise M. Danglars, it is I.” + +“Do not do so, reverend sir.” + +“Why not?” + +“Because you would bring us to ruin.” + +“And you think that to save such villains as you I will become an +abettor of their plot, an accomplice in their crimes?” + +“Reverend sir,” said Caderousse, drawing still nearer. + +“I will expose all.” + +“To whom?” + +“To M. Danglars.” + +“By Heaven!” cried Caderousse, drawing from his waistcoat an open +knife, and striking the count in the breast, “you shall disclose +nothing, reverend sir!” + +To Caderousse’s great astonishment, the knife, instead of piercing the +count’s breast, flew back blunted. At the same moment the count seized +with his left hand the assassin’s wrist, and wrung it with such +strength that the knife fell from his stiffened fingers, and Caderousse +uttered a cry of pain. But the count, disregarding his cry, continued +to wring the bandit’s wrist, until, his arm being dislocated, he fell +first on his knees, then flat on the floor. + +The count then placed his foot on his head, saying, “I know not what +restrains me from crushing thy skull, rascal.” + +“Ah, mercy—mercy!” cried Caderousse. + +The count withdrew his foot. + +40162m + + + +“Rise!” said he. Caderousse rose. + +“What a wrist you have, reverend sir!” said Caderousse, stroking his +arm, all bruised by the fleshy pincers which had held it; “what a +wrist!” + +“Silence! God gives me strength to overcome a wild beast like you; in +the name of that God I act,—remember that, wretch,—and to spare thee at +this moment is still serving him.” + +“Oh!” said Caderousse, groaning with pain. + +“Take this pen and paper, and write what I dictate.” + +“I don’t know how to write, reverend sir.” + +“You lie! Take this pen, and write!” + +Caderousse, awed by the superior power of the abbé, sat down and wrote: + +“Sir,—The man whom you are receiving at your house, and to whom you +intend to marry your daughter, is a felon who escaped with me from +confinement at Toulon. He was No. 59, and I No. 58. He was called +Benedetto, but he is ignorant of his real name, having never known his +parents.” + + +“Sign it!” continued the count. + +“But would you ruin me?” + +“If I sought your ruin, fool, I should drag you to the first +guard-house; besides, when that note is delivered, in all probability +you will have no more to fear. Sign it, then!” + +Caderousse signed it. + +“The address, ‘To monsieur the Baron Danglars, banker, Rue de la +Chaussée d’Antin.’” + +Caderousse wrote the address. The abbé took the note. + +“Now,” said he, “that suffices—begone!” + +“Which way?” + +“The way you came.” + +“You wish me to get out at that window?” + +“You got in very well.” + +“Oh, you have some design against me, reverend sir.” + +“Idiot! what design can I have?” + +“Why, then, not let me out by the door?” + +“What would be the advantage of waking the porter?” + +“Ah, reverend sir, tell me, do you wish me dead?” + +“I wish what God wills.” + +“But swear that you will not strike me as I go down.” + +“Cowardly fool!” + +“What do you intend doing with me?” + +“I ask you what can I do? I have tried to make you a happy man, and you +have turned out a murderer.” + +“Oh, monsieur,” said Caderousse, “make one more attempt—try me once +more!” + +“I will,” said the count. “Listen—you know if I may be relied on.” + +“Yes,” said Caderousse. + +“If you arrive safely at home——” + +“What have I to fear, except from you?” + +“If you reach your home safely, leave Paris, leave France, and wherever +you may be, so long as you conduct yourself well, I will send you a +small annuity; for, if you return home safely, then——” + +“Then?” asked Caderousse, shuddering. + +40164m + + + +“Then I shall believe God has forgiven you, and I will forgive you +too.” + +“As true as I am a Christian,” stammered Caderousse, “you will make me +die of fright!” + +“Now begone,” said the count, pointing to the window. + +Caderousse, scarcely yet relying on this promise, put his legs out of +the window and stood on the ladder. + +“Now go down,” said the abbé, folding his arms. Understanding he had +nothing more to fear from him, Caderousse began to go down. Then the +count brought the taper to the window, that it might be seen in the +Champs-Élysées that a man was getting out of the window while another +held a light. + +“What are you doing, reverend sir? Suppose a watchman should pass?” And +he blew out the light. He then descended, but it was only when he felt +his foot touch the ground that he was satisfied of his safety. + +Monte Cristo returned to his bedroom, and, glancing rapidly from the +garden to the street, he saw first Caderousse, who after walking to the +end of the garden, fixed his ladder against the wall at a different +part from where he came in. The count then looking over into the +street, saw the man who appeared to be waiting run in the same +direction, and place himself against the angle of the wall where +Caderousse would come over. Caderousse climbed the ladder slowly, and +looked over the coping to see if the street was quiet. No one could be +seen or heard. The clock of the Invalides struck one. Then Caderousse +sat astride the coping, and drawing up his ladder passed it over the +wall; then he began to descend, or rather to slide down by the two +stanchions, which he did with an ease which proved how accustomed he +was to the exercise. But, once started, he could not stop. In vain did +he see a man start from the shadow when he was halfway down—in vain did +he see an arm raised as he touched the ground. + +Before he could defend himself that arm struck him so violently in the +back that he let go the ladder, crying, “Help!” A second blow struck +him almost immediately in the side, and he fell, calling, “Help, +murder!” Then, as he rolled on the ground, his adversary seized him by +the hair, and struck him a third blow in the chest. + +This time Caderousse endeavored to call again, but he could only utter +a groan, and he shuddered as the blood flowed from his three wounds. +The assassin, finding that he no longer cried out, lifted his head up +by the hair; his eyes were closed, and the mouth was distorted. The +murderer, supposing him dead, let fall his head and disappeared. + +Then Caderousse, feeling that he was leaving him, raised himself on his +elbow, and with a dying voice cried with great effort: + +“Murder! I am dying! Help, reverend sir,—help!” + +This mournful appeal pierced the darkness. The door of the +back-staircase opened, then the side-gate of the garden, and Ali and +his master were on the spot with lights. + + + + Chapter 83. The Hand of God + +Caderousse continued to call piteously, “Help, reverend sir, help!” + +“What is the matter?” asked Monte Cristo. + +“Help,” cried Caderousse; “I am murdered!” + +“We are here;—take courage.” + +“Ah, it’s all over! You are come too late—you are come to see me die. +What blows, what blood!” + +He fainted. Ali and his master conveyed the wounded man into a room. +Monte Cristo motioned to Ali to undress him, and he then examined his +dreadful wounds. + +“My God!” he exclaimed, “thy vengeance is sometimes delayed, but only +that it may fall the more effectually.” Ali looked at his master for +further instructions. “Bring here immediately the king’s attorney, M. +de Villefort, who lives in the Faubourg Saint-Honoré. As you pass the +lodge, wake the porter, and send him for a surgeon.” + +Ali obeyed, leaving the abbé alone with Caderousse, who had not yet +revived. + +When the wretched man again opened his eyes, the count looked at him +with a mournful expression of pity, and his lips moved as if in prayer. +“A surgeon, reverend sir—a surgeon!” said Caderousse. + +“I have sent for one,” replied the abbé. + +“I know he cannot save my life, but he may strengthen me to give my +evidence.” + +“Against whom?” + +“Against my murderer.” + +“Did you recognize him?” + +“Yes; it was Benedetto.” + +“The young Corsican?” + +“Himself.” + +“Your comrade?” + +“Yes. After giving me the plan of this house, doubtless hoping I should +kill the count and he thus become his heir, or that the count would +kill me and I should be out of his way, he waylaid me, and has murdered +me.” + +“I have also sent for the procureur.” + +“He will not come in time; I feel my life fast ebbing.” + +“Wait a moment,” said Monte Cristo. He left the room, and returned in +five minutes with a phial. The dying man’s eyes were all the time +riveted on the door, through which he hoped succor would arrive. + +“Hasten, reverend sir, hasten! I shall faint again!” Monte Cristo +approached, and dropped on his purple lips three or four drops of the +contents of the phial. Caderousse drew a deep breath. “Oh,” said he, +“that is life to me; more, more!” + +“Two drops more would kill you,” replied the abbé. + +“Oh, send for someone to whom I can denounce the wretch!” + +“Shall I write your deposition? You can sign it.” + +“Yes, yes,” said Caderousse; and his eyes glistened at the thought of +this posthumous revenge. Monte Cristo wrote: + +“I die, murdered by the Corsican Benedetto, my comrade in the galleys +at Toulon, No. 59.” + + +“Quick, quick!” said Caderousse, “or I shall be unable to sign it.” + +Monte Cristo gave the pen to Caderousse, who collected all his +strength, signed it, and fell back on his bed, saying: + +“You will relate all the rest, reverend sir; you will say he calls +himself Andrea Cavalcanti. He lodges at the Hôtel des Princes. Oh, I am +dying!” He again fainted. The abbé made him smell the contents of the +phial, and he again opened his eyes. His desire for revenge had not +forsaken him. + +“Ah, you will tell all I have said, will you not, reverend sir?” + +“Yes, and much more.” + +“What more will you say?” + +“I will say he had doubtless given you the plan of this house, in the +hope the count would kill you. I will say, likewise, he had apprised +the count, by a note, of your intention, and, the count being absent, I +read the note and sat up to await you.” + +“And he will be guillotined, will he not?” said Caderousse. “Promise me +that, and I will die with that hope.” + +“I will say,” continued the count, “that he followed and watched you +the whole time, and when he saw you leave the house, ran to the angle +of the wall to conceal himself.” + +“Did you see all that?” + +“Remember my words: ‘If you return home safely, I shall believe God has +forgiven you, and I will forgive you also.’” + +“And you did not warn me!” cried Caderousse, raising himself on his +elbows. “You knew I should be killed on leaving this house, and did not +warn me!” + +40168m + + + +“No; for I saw God’s justice placed in the hands of Benedetto, and +should have thought it sacrilege to oppose the designs of Providence.” + +“God’s justice! Speak not of it, reverend sir. If God were just, you +know how many would be punished who now escape.” + +“Patience,” said the abbé, in a tone which made the dying man shudder; +“have patience!” + +Caderousse looked at him with amazement. + +“Besides,” said the abbé, “God is merciful to all, as he has been to +you; he is first a father, then a judge.” + +“Do you then believe in God?” said Caderousse. + +“Had I been so unhappy as not to believe in him until now,” said Monte +Cristo, “I must believe on seeing you.” + +Caderousse raised his clenched hands towards heaven. + +“Listen,” said the abbé, extending his hand over the wounded man, as if +to command him to believe; “this is what the God in whom, on your +death-bed, you refuse to believe, has done for you—he gave you health, +strength, regular employment, even friends—a life, in fact, which a man +might enjoy with a calm conscience. Instead of improving these gifts, +rarely granted so abundantly, this has been your course—you have given +yourself up to sloth and drunkenness, and in a fit of intoxication have +ruined your best friend.” + +“Help!” cried Caderousse; “I require a surgeon, not a priest; perhaps I +am not mortally wounded—I may not die; perhaps they can yet save my +life.” + +“Your wounds are so far mortal that, without the three drops I gave +you, you would now be dead. Listen, then.” + +“Ah,” murmured Caderousse, “what a strange priest you are; you drive +the dying to despair, instead of consoling them.” + +“Listen,” continued the abbé. “When you had betrayed your friend, God +began not to strike, but to warn you. Poverty overtook you. You had +already passed half your life in coveting that which you might have +honorably acquired; and already you contemplated crime under the excuse +of want, when God worked a miracle in your behalf, sending you, by my +hands, a fortune—brilliant, indeed, for you, who had never possessed +any. But this unexpected, unhoped-for, unheard-of fortune sufficed you +no longer when you once possessed it; you wished to double it, and +how?—by a murder! You succeeded, and then God snatched it from you, and +brought you to justice.” + +“It was not I who wished to kill the Jew,” said Caderousse; “it was La +Carconte.” + +“Yes,” said Monte Cristo, “and God,—I cannot say in justice, for his +justice would have slain you,—but God, in his mercy, spared your life.” + +“_Pardieu!_ to transport me for life, how merciful!” + +“You thought it a mercy then, miserable wretch! The coward who feared +death rejoiced at perpetual disgrace; for like all galley-slaves, you +said, ‘I may escape from prison, I cannot from the grave.’ And you said +truly; the way was opened for you unexpectedly. An Englishman visited +Toulon, who had vowed to rescue two men from infamy, and his choice +fell on you and your companion. You received a second fortune, money +and tranquillity were restored to you, and you, who had been condemned +to a felon’s life, might live as other men. Then, wretched creature, +then you tempted God a third time. ‘I have not enough,’ you said, when +you had more than you before possessed, and you committed a third +crime, without reason, without excuse. God is wearied; he has punished +you.” + +Caderousse was fast sinking. “Give me drink,” said he: “I thirst—I +burn!” Monte Cristo gave him a glass of water. “And yet that villain, +Benedetto, will escape!” + +“No one, I tell you, will escape; Benedetto will be punished.” + +“Then, you, too, will be punished, for you did not do your duty as a +priest—you should have prevented Benedetto from killing me.” + +“I?” said the count, with a smile which petrified the dying man, “when +you had just broken your knife against the coat of mail which protected +my breast! Yet perhaps if I had found you humble and penitent, I might +have prevented Benedetto from killing you; but I found you proud and +blood-thirsty, and I left you in the hands of God.” + +“I do not believe there is a God,” howled Caderousse; “you do not +believe it; you lie—you lie!” + +“Silence,” said the abbé; “you will force the last drop of blood from +your veins. What! you do not believe in God when he is striking you +dead? you will not believe in him, who requires but a prayer, a word, a +tear, and he will forgive? God, who might have directed the assassin’s +dagger so as to end your career in a moment, has given you this quarter +of an hour for repentance. Reflect, then, wretched man, and repent.” + +“No,” said Caderousse, “no; I will not repent. There is no God; there +is no Providence—all comes by chance.” + +“There is a Providence; there is a God,” said Monte Cristo, “of whom +you are a striking proof, as you lie in utter despair, denying him, +while I stand before you, rich, happy, safe and entreating that God in +whom you endeavor not to believe, while in your heart you still believe +in him.” + +“But who are you, then?” asked Caderousse, fixing his dying eyes on the +count. + +“Look well at me!” said Monte Cristo, putting the light near his face. + +“Well, the abbé—the Abbé Busoni.” Monte Cristo took off the wig which +disfigured him, and let fall his black hair, which added so much to the +beauty of his pallid features. + +“Oh?” said Caderousse, thunderstruck, “but for that black hair, I +should say you were the Englishman, Lord Wilmore.” + +“I am neither the Abbé Busoni nor Lord Wilmore,” said Monte Cristo; +“think again,—do you not recollect me?” + +There was a magic effect in the count’s words, which once more revived +the exhausted powers of the miserable man. + +“Yes, indeed,” said he; “I think I have seen you and known you +formerly.” + +“Yes, Caderousse, you have seen me; you knew me once.” + +“Who, then, are you? and why, if you knew me, do you let me die?” + +“Because nothing can save you; your wounds are mortal. Had it been +possible to save you, I should have considered it another proof of +God’s mercy, and I would again have endeavored to restore you, I swear +by my father’s tomb.” + +“By your father’s tomb!” said Caderousse, supported by a supernatural +power, and half-raising himself to see more distinctly the man who had +just taken the oath which all men hold sacred; “who, then, are you?” + +The count had watched the approach of death. He knew this was the last +struggle. He approached the dying man, and, leaning over him with a +calm and melancholy look, he whispered, “I am—I am——” + +And his almost closed lips uttered a name so low that the count himself +appeared afraid to hear it. Caderousse, who had raised himself on his +knees, and stretched out his arm, tried to draw back, then clasping his +hands, and raising them with a desperate effort, “Oh, my God, my God!” +said he, “pardon me for having denied thee; thou dost exist, thou art +indeed man’s father in heaven, and his judge on earth. My God, my Lord, +I have long despised thee! Pardon me, my God; receive me, Oh, my Lord!” + +Caderousse sighed deeply, and fell back with a groan. The blood no +longer flowed from his wounds. He was dead. + +“_One!_” said the count mysteriously, his eyes fixed on the corpse, +disfigured by so awful a death. + +Ten minutes afterwards the surgeon and the procureur arrived, the one +accompanied by the porter, the other by Ali, and were received by the +Abbé Busoni, who was praying by the side of the corpse. + + + + Chapter 84. Beauchamp + +The daring attempt to rob the count was the topic of conversation +throughout Paris for the next fortnight. The dying man had signed a +deposition declaring Benedetto to be the assassin. The police had +orders to make the strictest search for the murderer. Caderousse’s +knife, dark lantern, bunch of keys, and clothing, excepting the +waistcoat, which could not be found, were deposited at the registry; +the corpse was conveyed to the morgue. The count told everyone that +this adventure had happened during his absence at Auteuil, and that he +only knew what was related by the Abbé Busoni, who that evening, by +mere chance, had requested to pass the night in his house, to examine +some valuable books in his library. + +Bertuccio alone turned pale whenever Benedetto’s name was mentioned in +his presence, but there was no reason why anyone should notice his +doing so. + +Villefort, being called on to prove the crime, was preparing his brief +with the same ardor that he was accustomed to exercise when required to +speak in criminal cases. + +But three weeks had already passed, and the most diligent search had +been unsuccessful; the attempted robbery and the murder of the robber +by his comrade were almost forgotten in anticipation of the approaching +marriage of Mademoiselle Danglars to the Count Andrea Cavalcanti. It +was expected that this wedding would shortly take place, as the young +man was received at the banker’s as the betrothed. + +Letters had been despatched to M. Cavalcanti, as the count’s father, +who highly approved of the union, regretted his inability to leave +Parma at that time, and promised a wedding gift of a hundred and fifty +thousand livres. It was agreed that the three millions should be +intrusted to Danglars to invest; some persons had warned the young man +of the circumstances of his future father-in-law, who had of late +sustained repeated losses; but with sublime disinterestedness and +confidence the young man refused to listen, or to express a single +doubt to the baron. + +The baron adored Count Andrea Cavalcanti; not so Mademoiselle Eugénie +Danglars. With an instinctive hatred of matrimony, she suffered +Andrea’s attentions in order to get rid of Morcerf; but when Andrea +urged his suit, she betrayed an entire dislike to him. The baron might +possibly have perceived it, but, attributing it to a caprice, feigned +ignorance. + +The delay demanded by Beauchamp had nearly expired. Morcerf appreciated +the advice of Monte Cristo to let things die away of their own accord. +No one had taken up the remark about the general, and no one had +recognized in the officer who betrayed the castle of Yanina the noble +count in the House of Peers. + +Albert, however, felt no less insulted; the few lines which had +irritated him were certainly intended as an insult. Besides, the manner +in which Beauchamp had closed the conference left a bitter recollection +in his heart. He cherished the thought of the duel, hoping to conceal +its true cause even from his seconds. Beauchamp had not been seen since +the day he visited Albert, and those of whom the latter inquired always +told him he was out on a journey which would detain him some days. +Where he was no one knew. + +One morning Albert was awakened by his valet de chambre, who announced +Beauchamp. Albert rubbed his eyes, ordered his servant to introduce him +into the small smoking-room on the ground floor, dressed himself +quickly, and went down. + +He found Beauchamp pacing the room; on perceiving him Beauchamp +stopped. + +“Your arrival here, without waiting my visit at your house today, looks +well, sir,” said Albert. “Tell me, may I shake hands with you, saying, +‘Beauchamp, acknowledge you have injured me, and retain my friendship,’ +or must I simply propose to you a choice of arms?” + +“Albert,” said Beauchamp, with a look of sorrow which stupefied the +young man, “let us first sit down and talk.” + +“Rather, sir, before we sit down, I must demand your answer.” + +“Albert,” said the journalist, “these are questions which it is +difficult to answer.” + +“I will facilitate it by repeating the question, ‘Will you, or will you +not, retract?’” + +“Morcerf, it is not enough to answer ‘yes’ or ‘no’ to questions which +concern the honor, the social interest, and the life of such a man as +Lieutenant-général the Count of Morcerf, peer of France.” + +“What must then be done?” + +40174m + + + +“What I have done, Albert. I reasoned thus—money, time, and fatigue are +nothing compared with the reputation and interests of a whole family; +probabilities will not suffice, only facts will justify a deadly combat +with a friend. If I strike with the sword, or discharge the contents of +a pistol at man with whom, for three years, I have been on terms of +intimacy, I must, at least, know why I do so; I must meet him with a +heart at ease, and that quiet conscience which a man needs when his own +arm must save his life.” + +“Well,” said Morcerf, impatiently, “what does all this mean?” + +“It means that I have just returned from Yanina.” + +“From Yanina?” + +“Yes.” + +“Impossible!” + +“Here is my passport; examine the visa—Geneva, Milan, Venice, Trieste, +Delvino, Yanina. Will you believe the government of a republic, a +kingdom, and an empire?” Albert cast his eyes on the passport, then +raised them in astonishment to Beauchamp. + +“You have been to Yanina?” said he. + +“Albert, had you been a stranger, a foreigner, a simple lord, like that +Englishman who came to demand satisfaction three or four months since, +and whom I killed to get rid of, I should not have taken this trouble; +but I thought this mark of consideration due to you. I took a week to +go, another to return, four days of quarantine, and forty-eight hours +to stay there; that makes three weeks. I returned last night, and here +I am.” + +“What circumlocution! How long you are before you tell me what I most +wish to know?” + +“Because, in truth, Albert——” + +“You hesitate?” + +“Yes,—I fear.” + +“You fear to acknowledge that your correspondent has deceived you? Oh, +no self-love, Beauchamp. Acknowledge it, Beauchamp; your courage cannot +be doubted.” + +“Not so,” murmured the journalist; “on the contrary——” + +Albert turned frightfully pale; he endeavored to speak, but the words +died on his lips. + +“My friend,” said Beauchamp, in the most affectionate tone, “I should +gladly make an apology; but, alas!——” + +“But what?” + +“The paragraph was correct, my friend.” + +“What? That French officer——” + +“Yes.” + +“Fernand?” + +“Yes.” + +“The traitor who surrendered the castle of the man in whose service he +was——” + +“Pardon me, my friend, that man was your father!” + +Albert advanced furiously towards Beauchamp, but the latter restrained +him more by a mild look than by his extended hand. + +“My friend,” said he, “here is a proof of it.” + +40176m + + + +Albert opened the paper, it was an attestation of four notable +inhabitants of Yanina, proving that Colonel Fernand Mondego, in the +service of Ali Tepelini, had surrendered the castle for two million +crowns. The signatures were perfectly legal. Albert tottered and fell +overpowered in a chair. It could no longer be doubted; the family name +was fully given. After a moment’s mournful silence, his heart +overflowed, and he gave way to a flood of tears. Beauchamp, who had +watched with sincere pity the young man’s paroxysm of grief, approached +him. + +“Now, Albert,” said he, “you understand me—do you not? I wished to see +all, and to judge of everything for myself, hoping the explanation +would be in your father’s favor, and that I might do him justice. But, +on the contrary, the particulars which are given prove that Fernand +Mondego, raised by Ali Pasha to the rank of governor-general, is no +other than Count Fernand of Morcerf; then, recollecting the honor you +had done me, in admitting me to your friendship, I hastened to you.” + +Albert, still extended on the chair, covered his face with both hands, +as if to prevent the light from reaching him. + +“I hastened to you,” continued Beauchamp, “to tell you, Albert, that in +this changing age, the faults of a father cannot revert upon his +children. Few have passed through this revolutionary period, in the +midst of which we were born, without some stain of infamy or blood to +soil the uniform of the soldier, or the gown of the magistrate. Now I +have these proofs, Albert, and I am in your confidence, no human power +can force me to a duel which your own conscience would reproach you +with as criminal, but I come to offer you what you can no longer demand +of me. Do you wish these proofs, these attestations, which I alone +possess, to be destroyed? Do you wish this frightful secret to remain +with us? Confided to me, it shall never escape my lips; say, Albert, my +friend, do you wish it?” + +Albert threw himself on Beauchamp’s neck. + +“Ah, noble fellow!” cried he. + +“Take these,” said Beauchamp, presenting the papers to Albert. + +Albert seized them with a convulsive hand, tore them in pieces, and +trembling lest the least vestige should escape and one day appear to +confront him, he approached the wax-light, always kept burning for +cigars, and burned every fragment. + +“Dear, excellent friend,” murmured Albert, still burning the papers. + +“Let all be forgotten as a sorrowful dream,” said Beauchamp; “let it +vanish as the last sparks from the blackened paper, and disappear as +the smoke from those silent ashes.” + +“Yes, yes,” said Albert, “and may there remain only the eternal +friendship which I promised to my deliverer, which shall be transmitted +to our children’s children, and shall always remind me that I owe my +life and the honor of my name to you,—for had this been known, oh, +Beauchamp, I should have destroyed myself; or,—no, my poor mother! I +could not have killed her by the same blow,—I should have fled from my +country.” + +“Dear Albert,” said Beauchamp. But this sudden and factitious joy soon +forsook the young man, and was succeeded by a still greater grief. + +“Well,” said Beauchamp, “what still oppresses you, my friend?” + +40178m + + + +“I am broken-hearted,” said Albert. “Listen, Beauchamp! I cannot thus, +in a moment relinquish the respect, the confidence, and pride with +which a father’s untarnished name inspires a son. Oh, Beauchamp, +Beauchamp, how shall I now approach mine? Shall I draw back my forehead +from his embrace, or withhold my hand from his? I am the most wretched +of men. Ah, my mother, my poor mother!” said Albert, gazing through his +tears at his mother’s portrait; “if you know this, how much must you +suffer!” + +“Come,” said Beauchamp, taking both his hands, “take courage, my +friend.” + +“But how came that first note to be inserted in your journal? Some +unknown enemy—an invisible foe—has done this.” + +“The more must you fortify yourself, Albert. Let no trace of emotion be +visible on your countenance, bear your grief as the cloud bears within +it ruin and death—a fatal secret, known only when the storm bursts. Go, +my friend, reserve your strength for the moment when the crash shall +come.” + +40179m + + + +“You think, then, all is not over yet?” said Albert, horror-stricken. + +“I think nothing, my friend; but all things are possible. By the way——” + +“What?” said Albert, seeing that Beauchamp hesitated. + +“Are you going to marry Mademoiselle Danglars?” + +“Why do you ask me now?” + +“Because the rupture or fulfilment of this engagement is connected with +the person of whom we were speaking.” + +“How?” said Albert, whose brow reddened; “you think M. Danglars——” + +“I ask you only how your engagement stands? Pray put no construction on +my words I do not mean they should convey, and give them no undue +weight.” + +“No.” said Albert, “the engagement is broken off.” + +“Well,” said Beauchamp. Then, seeing the young man was about to relapse +into melancholy, “Let us go out, Albert,” said he; “a ride in the wood +in the phaeton, or on horseback, will refresh you; we will then return +to breakfast, and you shall attend to your affairs, and I to mine.” + +“Willingly,” said Albert; “but let us walk. I think a little exertion +would do me good.” + +The two friends walked out on the fortress. When they arrived at the +Madeleine: + +“Since we are out,” said Beauchamp, “let us call on M. de Monte Cristo; +he is admirably adapted to revive one’s spirits, because he never +interrogates, and in my opinion those who ask no questions are the best +comforters.” + +“Gladly,” said Albert; “let us call—I love him.” + + + + Chapter 85. The Journey + +Monte Cristo uttered a joyful exclamation on seeing the young men +together. “Ah, ha!” said he, “I hope all is over, explained and +settled.” + +“Yes,” said Beauchamp; “the absurd reports have died away, and should +they be renewed, I would be the first to oppose them; so let us speak +no more of it.” + +“Albert will tell you,” replied the count “that I gave him the same +advice. Look,” added he. “I am finishing the most execrable morning’s +work.” + +“What is it?” said Albert; “arranging your papers, apparently.” + +“My papers, thank God, no,—my papers are all in capital order, because +I have none; but M. Cavalcanti’s.” + +“M. Cavalcanti’s?” asked Beauchamp. + +“Yes; do you not know that this is a young man whom the count is +introducing?” said Morcerf. + +“Let us not misunderstand each other,” replied Monte Cristo; “I +introduce no one, and certainly not M. Cavalcanti.” + +“And who,” said Albert with a forced smile, “is to marry Mademoiselle +Danglars instead of me, which grieves me cruelly.” + +“What? Cavalcanti is going to marry Mademoiselle Danglars?” asked +Beauchamp. + +“Certainly! do you come from the end of the world?” said Monte Cristo; +“you, a journalist, the husband of renown? It is the talk of all +Paris.” + +“And you, count, have made this match?” asked Beauchamp. + +“I? Silence, purveyor of gossip, do not spread that report. I make a +match? No, you do not know me; I have done all in my power to oppose +it.” + +“Ah, I understand,” said Beauchamp, “on our friend Albert’s account.” + +“On my account?” said the young man; “oh, no, indeed, the count will do +me the justice to assert that I have, on the contrary, always entreated +him to break off my engagement, and happily it is ended. The count +pretends I have not him to thank;—so be it—I will erect an altar _Deo +ignoto_.” + +“Listen,” said Monte Cristo; “I have had little to do with it, for I am +at variance both with the father-in-law and the young man; there is +only Mademoiselle Eugénie, who appears but little charmed with the +thoughts of matrimony, and who, seeing how little I was disposed to +persuade her to renounce her dear liberty, retains any affection for +me.” + +“And do you say this wedding is at hand?” + +“Oh, yes, in spite of all I could say. I do not know the young man; he +is said to be of good family and rich, but I never trust to vague +assertions. I have warned M. Danglars of it till I am tired, but he is +fascinated with his Luccanese. I have even informed him of a +circumstance I consider very serious; the young man was either charmed +by his nurse, stolen by gypsies, or lost by his tutor, I scarcely know +which. But I do know his father lost sight of him for more than ten +years; what he did during these ten years, God only knows. Well, all +that was useless. They have commissioned me to write to the major to +demand papers, and here they are. I send them, but like Pilate—washing +my hands.” + +“And what does Mademoiselle d’Armilly say to you for robbing her of her +pupil?” + +“Oh, well, I don’t know; but I understand that she is going to Italy. +Madame Danglars asked me for letters of recommendation for the +_impresari_; I gave her a few lines for the director of the Valle +Theatre, who is under some obligation to me. But what is the matter, +Albert? you look dull; are you, after all, unconsciously in love with +Mademoiselle Eugénie?” + +“I am not aware of it,” said Albert, smiling sorrowfully. Beauchamp +turned to look at some paintings. + +“But,” continued Monte Cristo, “you are not in your usual spirits?” + +“I have a dreadful headache,” said Albert. + +“Well, my dear viscount,” said Monte Cristo, “I have an infallible +remedy to propose to you.” + +“What is that?” asked the young man. + +“A change.” + +“Indeed?” said Albert. + +“Yes; and as I am just now excessively annoyed, I shall go from home. +Shall we go together?” + +“You annoyed, count?” said Beauchamp; “and by what?” + +“Ah, you think very lightly of it; I should like to see you with a +brief preparing in your house.” + +“What brief?” + +“The one M. de Villefort is preparing against my amiable assassin—some +brigand escaped from the gallows apparently.” + +“True,” said Beauchamp; “I saw it in the paper. Who is this +Caderousse?” + +“Some Provençal, it appears. M. de Villefort heard of him at +Marseilles, and M. Danglars recollects having seen him. Consequently, +the procureur is very active in the affair, and the prefect of police +very much interested; and, thanks to that interest, for which I am very +grateful, they send me all the robbers of Paris and the neighborhood, +under pretence of their being Caderousse’s murderers, so that in three +months, if this continues, every robber and assassin in France will +have the plan of my house at his fingers’ ends. I am resolved to desert +them and go to some remote corner of the earth, and shall be happy if +you will accompany me, viscount.” + +“Willingly.” + +“Then it is settled?” + +“Yes, but where?” + +“I have told you, where the air is pure, where every sound soothes, +where one is sure to be humbled, however proud may be his nature. I +love that humiliation, I, who am master of the universe, as was +Augustus.” + +“But where are you really going?” + +“To sea, viscount; you know I am a sailor. I was rocked when an infant +in the arms of old Ocean, and on the bosom of the beautiful Amphitrite; +I have sported with the green mantle of the one and the azure robe of +the other; I love the sea as a mistress, and pine if I do not often see +her.” + +“Let us go, count.” + +“To sea?” + +“Yes.” + +“You accept my proposal?” + +“I do.” + +“Well, viscount, there will be in my courtyard this evening a good +travelling britzka, with four post-horses, in which one may rest as in +a bed. M. Beauchamp, it holds four very well, will you accompany us?” + +“Thank you, I have just returned from sea.” + +“What? you have been to sea?” + +“Yes; I have just made a little excursion to the Borromean Islands18.” + +“What of that? come with us,” said Albert. + +“No, dear Morcerf; you know I only refuse when the thing is impossible. +Besides, it is important,” added he in a low tone, “that I should +remain in Paris just now to watch the paper.” + +“Ah, you are a good and an excellent friend,” said Albert; “yes, you +are right; watch, watch, Beauchamp, and try to discover the enemy who +made this disclosure.” + +Albert and Beauchamp parted, the last pressure of their hands +expressing what their tongues could not before a stranger. + +“Beauchamp is a worthy fellow,” said Monte Cristo, when the journalist +was gone; “is he not, Albert?” + +“Yes, and a sincere friend; I love him devotedly. But now we are +alone,—although it is immaterial to me,—where are we going?” + +“Into Normandy, if you like.” + +“Delightful; shall we be quite retired? have no society, no neighbors?” + +“Our companions will be riding-horses, dogs to hunt with, and a +fishing-boat.” + +“Exactly what I wish for; I will apprise my mother of my intention, and +return to you.” + +“But shall you be allowed to go into Normandy?” + +“I may go where I please.” + +“Yes, I am aware you may go alone, since I once met you in Italy—but to +accompany the mysterious Monte Cristo?” + +“You forget, count, that I have often told you of the deep interest my +mother takes in you.” + +“‘Woman is fickle.’ said Francis I.; ‘woman is like a wave of the sea,’ +said Shakespeare; both the great king and the great poet ought to have +known woman’s nature well.” + +“Woman’s, yes; my mother is not woman, but _a_ woman.” + +“As I am only a humble foreigner, you must pardon me if I do not +understand all the subtle refinements of your language.” + +“What I mean to say is, that my mother is not quick to give her +confidence, but when she does she never changes.” + +“Ah, yes, indeed,” said Monte Cristo with a sigh; “and do you think she +is in the least interested in me?” + +“I repeat it, you must really be a very strange and superior man, for +my mother is so absorbed by the interest you have excited, that when I +am with her she speaks of no one else.” + +“And does she try to make you dislike me?” + +“On the contrary, she often says, ‘Morcerf, I believe the count has a +noble nature; try to gain his esteem.’” + +“Indeed?” said Monte Cristo, sighing. + +“You see, then,” said Albert, “that instead of opposing, she will +encourage me.” + +“Adieu, then, until five o’clock; be punctual, and we shall arrive at +twelve or one.” + +“At Tréport?” + +“Yes; or in the neighborhood.” + +“But can we travel forty-eight leagues in eight hours?” + +“Easily,” said Monte Cristo. + +“You are certainly a prodigy; you will soon not only surpass the +railway, which would not be very difficult in France, but even the +telegraph.” + +“But, viscount, since we cannot perform the journey in less than seven +or eight hours, do not keep me waiting.” + +“Do not fear, I have little to prepare.” + +Monte Cristo smiled as he nodded to Albert, then remained a moment +absorbed in deep meditation. But passing his hand across his forehead +as if to dispel his reverie, he rang the bell twice and Bertuccio +entered. + +“Bertuccio,” said he, “I intend going this evening to Normandy, instead +of tomorrow or the next day. You will have sufficient time before five +o’clock; despatch a messenger to apprise the grooms at the first +station. M. de Morcerf will accompany me.” + +Bertuccio obeyed and despatched a courier to Pontoise to say the +travelling-carriage would arrive at six o’clock. From Pontoise another +express was sent to the next stage, and in six hours all the horses +stationed on the road were ready. + +Before his departure, the count went to Haydée’s apartments, told her +his intention, and resigned everything to her care. + +Albert was punctual. The journey soon became interesting from its +rapidity, of which Morcerf had formed no previous idea. + +“Truly,” said Monte Cristo, “with your post-horses going at the rate of +two leagues an hour, and that absurd law that one traveller shall not +pass another without permission, so that an invalid or ill-tempered +traveller may detain those who are well and active, it is impossible to +move; I escape this annoyance by travelling with my own postilion and +horses; do I not, Ali?” + +The count put his head out of the window and whistled, and the horses +appeared to fly. The carriage rolled with a thundering noise over the +pavement, and everyone turned to notice the dazzling meteor. Ali, +smiling, repeated the sound, grasped the reins with a firm hand, and +spurred his horses, whose beautiful manes floated in the breeze. This +child of the desert was in his element, and with his black face and +sparkling eyes appeared, in the cloud of dust he raised, like the +genius of the simoom and the god of the hurricane. + +“I never knew till now the delight of speed,” said Morcerf, and the +last cloud disappeared from his brow; “but where the devil do you get +such horses? Are they made to order?” + +“Precisely,” said the count; “six years since I bought a horse in +Hungary remarkable for its swiftness. The thirty-two that we shall use +tonight are its progeny; they are all entirely black, with the +exception of a star upon the forehead.” + +“That is perfectly admirable; but what do you do, count, with all these +horses?” + +“You see, I travel with them.” + +“But you are not always travelling.” + +“When I no longer require them, Bertuccio will sell them, and he +expects to realize thirty or forty thousand francs by the sale.” + +“But no monarch in Europe will be wealthy enough to purchase them.” + +“Then he will sell them to some Eastern vizier, who will empty his +coffers to purchase them, and refill them by applying the bastinado to +his subjects.” + +“Count, may I suggest one idea to you?” + +“Certainly.” + +“It is that, next to you, Bertuccio must be the richest gentleman in +Europe.” + +“You are mistaken, viscount; I believe he has not a franc in his +possession.” + +“Then he must be a wonder. My dear count, if you tell me many more +marvellous things, I warn you I shall not believe them.” + +“I countenance nothing that is marvellous, M. Albert. Tell me, why does +a steward rob his master?” + +“Because, I suppose, it is his nature to do so, for the love of +robbing.” + +“You are mistaken; it is because he has a wife and family, and +ambitious desires for himself and them. Also because he is not sure of +always retaining his situation, and wishes to provide for the future. +Now, M. Bertuccio is alone in the world; he uses my property without +accounting for the use he makes of it; he is sure never to leave my +service.” + +“Why?” + +“Because I should never get a better.” + +“Probabilities are deceptive.” + +“But I deal in certainties; he is the best servant over whom one has +the power of life and death.” + +“Do you possess that right over Bertuccio?” + +“Yes.” + +There are words which close a conversation with an iron door; such was +the count’s “yes.” + +The whole journey was performed with equal rapidity; the thirty-two +horses, dispersed over seven stages, brought them to their destination +in eight hours. At midnight they arrived at the gate of a beautiful +park. The porter was in attendance; he had been apprised by the groom +of the last stage of the count’s approach. At half past two in the +morning Morcerf was conducted to his apartments, where a bath and +supper were prepared. The servant who had travelled at the back of the +carriage waited on him; Baptistin, who rode in front, attended the +count. + +Albert bathed, took his supper, and went to bed. All night he was +lulled by the melancholy noise of the surf. On rising, he went to his +window, which opened on a terrace, having the sea in front, and at the +back a pretty park bounded by a small forest. + +In a creek lay a little sloop, with a narrow keel and high masts, +bearing on its flag the Monte Cristo arms which were a mountain _or_, +on a sea _azure_, with a cross _gules_ in chief which might be an +allusion to his name that recalled Calvary, the mount rendered by our +Lord’s passion more precious than gold, and to the degrading cross +which his blood had rendered holy; or it might be some personal +remembrance of suffering and regeneration buried in the night of this +mysterious personage’s past life. + +Around the schooner lay a number of small fishing-boats belonging to +the fishermen of the neighboring village, like humble subjects awaiting +orders from their queen. There, as in every spot where Monte Cristo +stopped, if but for two days, luxury abounded and life went on with the +utmost ease. + +Albert found in his anteroom two guns, with all the accoutrements for +hunting; a lofty room on the ground floor containing all the ingenious +instruments the English—eminent in piscatory pursuits, since they are +patient and sluggish—have invented for fishing. The day passed in +pursuing those exercises in which Monte Cristo excelled. They killed a +dozen pheasants in the park, as many trout in the stream, dined in a +summer-house overlooking the ocean, and took tea in the library. + +Towards the evening of the third day. Albert, completely exhausted with +the exercise which invigorated Monte Cristo, was sleeping in an +armchair near the window, while the count was designing with his +architect the plan of a conservatory in his house, when the sound of a +horse at full speed on the high road made Albert look up. He was +disagreeably surprised to see his own valet de chambre, whom he had not +brought, that he might not inconvenience Monte Cristo. + +40188m + + + +“Florentin here!” cried he, starting up; “is my mother ill?” And he +hastened to the door. Monte Cristo watched and saw him approach the +valet, who drew a small sealed parcel from his pocket, containing a +newspaper and a letter. + +“From whom is this?” said he eagerly. + +“From M. Beauchamp,” replied Florentin. + +“Did he send you?” + +“Yes, sir; he sent for me to his house, gave me money for my journey, +procured a horse, and made me promise not to stop till I had reached +you, I have come in fifteen hours.” + +Albert opened the letter with fear, uttered a shriek on reading the +first line, and seized the paper. His sight was dimmed, his legs sank +under him, and he would have fallen had not Florentin supported him. + +“Poor young man,” said Monte Cristo in a low voice; “it is then true +that the sin of the father shall fall on the children to the third and +fourth generation.” + +Meanwhile Albert had revived, and, continuing to read, he threw back +his head, saying: + +“Florentin, is your horse fit to return immediately?” + +“It is a poor, lame post-horse.” + +“In what state was the house when you left?” + +“All was quiet, but on returning from M. Beauchamp’s, I found madame in +tears; she had sent for me to know when you would return. I told her my +orders from M. Beauchamp; she first extended her arms to prevent me, +but after a moment’s reflection, ‘Yes, go, Florentin,’ said she, ‘and +may he come quickly.’” + +“Yes, my mother,” said Albert, “I will return, and woe to the infamous +wretch! But first of all I must get there.” + +He went back to the room where he had left Monte Cristo. Five minutes +had sufficed to make a complete transformation in his appearance. His +voice had become rough and hoarse; his face was furrowed with wrinkles; +his eyes burned under the blue-veined lids, and he tottered like a +drunken man. + +“Count,” said he, “I thank you for your hospitality, which I would +gladly have enjoyed longer; but I must return to Paris.” + +“What has happened?” + +“A great misfortune, more important to me than life. Don’t question me, +I beg of you, but lend me a horse.” + +“My stables are at your command, viscount; but you will kill yourself +by riding on horseback. Take a post-chaise or a carriage.” + +“No, it would delay me, and I need the fatigue you warn me of; it will +do me good.” + +Albert reeled as if he had been shot, and fell on a chair near the +door. Monte Cristo did not see this second manifestation of physical +exhaustion; he was at the window, calling: + +“Ali, a horse for M. de Morcerf—quick! he is in a hurry!” + +40190m + + + +These words restored Albert; he darted from the room, followed by the +count. + +“Thank you!” cried he, throwing himself on his horse. + +“Return as soon as you can, Florentin. Must I use any password to +procure a horse?” + +“Only dismount; another will be immediately saddled.” + +Albert hesitated a moment. “You may think my departure strange and +foolish,” said the young man; “you do not know how a paragraph in a +newspaper may exasperate one. Read that,” said he, “when I am gone, +that you may not be witness of my anger.” + +While the count picked up the paper he put spurs to his horse, which +leaped in astonishment at such an unusual stimulus, and shot away with +the rapidity of an arrow. The count watched him with a feeling of +compassion, and when he had completely disappeared, read as follows: + +“The French officer in the service of Ali Pasha of Yanina alluded to +three weeks since in _l’Impartial_, who not only surrendered the castle +of Yanina, but sold his benefactor to the Turks, styled himself truly +at that time Fernand, as our esteemed contemporary states; but he has +since added to his Christian name a title of nobility and a family +name. He now calls himself the Count of Morcerf, and ranks among the +peers.” + +Thus the terrible secret, which Beauchamp had so generously destroyed, +appeared again like an armed phantom; and another paper, deriving its +information from some malicious source, had published two days after +Albert’s departure for Normandy the few lines which had rendered the +unfortunate young man almost crazy. + + + + Chapter 86. The Trial + +At eight o’clock in the morning Albert had arrived at Beauchamp’s door. +The valet de chambre had received orders to usher him in at once. +Beauchamp was in his bath. + +“Here I am,” Albert said. + +“Well, my poor friend,” replied Beauchamp, “I expected you.” + +“I need not say I think you are too faithful and too kind to have +spoken of that painful circumstance. Your having sent for me is another +proof of your affection. So, without losing time, tell me, have you the +slightest idea whence this terrible blow proceeds?” + +“I think I have some clew.” + +“But first tell me all the particulars of this shameful plot.” + +Beauchamp proceeded to relate to the young man, who was overwhelmed +with shame and grief, the following facts. Two days previously, the +article had appeared in another paper besides _ l’Impartial_, and, what +was more serious, one that was well known as a government paper. +Beauchamp was breakfasting when he read the paragraph. He sent +immediately for a cabriolet, and hastened to the publisher’s office. +Although professing diametrically opposite principles from those of the +editor of the other paper, Beauchamp—as it sometimes, we may say often, +happens—was his intimate friend. The editor was reading, with apparent +delight, a leading article in the same paper on beet-sugar, probably a +composition of his own. + +“Ah, _pardieu!_” said Beauchamp, “with the paper in your hand, my +friend, I need not tell you the cause of my visit.” + +“Are you interested in the sugar question?” asked the editor of the +ministerial paper. + +“No,” replied Beauchamp, “I have not considered the question; a totally +different subject interests me.” + +“What is it?” + +“The article relative to Morcerf.” + +“Indeed? Is it not a curious affair?” + +“So curious, that I think you are running a great risk of a prosecution +for defamation of character.” + +“Not at all; we have received with the information all the requisite +proofs, and we are quite sure M. de Morcerf will not raise his voice +against us; besides, it is rendering a service to one’s country to +denounce these wretched criminals who are unworthy of the honor +bestowed on them.” + +Beauchamp was thunderstruck. + +“Who, then, has so correctly informed you?” asked he; “for my paper, +which gave the first information on the subject, has been obliged to +stop for want of proof; and yet we are more interested than you in +exposing M. de Morcerf, as he is a peer of France, and we are of the +opposition.” + +“Oh, that is very simple; we have not sought to scandalize. This news +was brought to us. A man arrived yesterday from Yanina, bringing a +formidable array of documents; and when we hesitated to publish the +accusatory article, he told us it should be inserted in some other +paper.” + +Beauchamp understood that nothing remained but to submit, and left the +office to despatch a courier to Morcerf. But he had been unable to send +to Albert the following particulars, as the events had transpired after +the messenger’s departure; namely, that the same day a great agitation +was manifest in the House of Peers among the usually calm members of +that dignified assembly. Everyone had arrived almost before the usual +hour, and was conversing on the melancholy event which was to attract +the attention of the public towards one of their most illustrious +colleagues. Some were perusing the article, others making comments and +recalling circumstances which substantiated the charges still more. + +The Count of Morcerf was no favorite with his colleagues. Like all +upstarts, he had had recourse to a great deal of haughtiness to +maintain his position. The true nobility laughed at him, the talented +repelled him, and the honorable instinctively despised him. He was, in +fact, in the unhappy position of the victim marked for sacrifice; the +finger of God once pointed at him, everyone was prepared to raise the +hue and cry. + +The Count of Morcerf alone was ignorant of the news. He did not take in +the paper containing the defamatory article, and had passed the morning +in writing letters and in trying a horse. He arrived at his usual hour, +with a proud look and insolent demeanor; he alighted, passed through +the corridors, and entered the house without observing the hesitation +of the door-keepers or the coolness of his colleagues. + +40194m + + + +Business had already been going on for half an hour when he entered. +Everyone held the accusing paper, but, as usual, no one liked to take +upon himself the responsibility of the attack. At length an honorable +peer, Morcerf’s acknowledged enemy, ascended the tribune with that +solemnity which announced that the expected moment had arrived. There +was an impressive silence; Morcerf alone knew not why such profound +attention was given to an orator who was not always listened to with so +much complacency. + +The count did not notice the introduction, in which the speaker +announced that his communication would be of that vital importance that +it demanded the undivided attention of the House; but at the mention of +Yanina and Colonel Fernand, he turned so frightfully pale that every +member shuddered and fixed his eyes upon him. Moral wounds have this +peculiarity,—they may be hidden, but they never close; always painful, +always ready to bleed when touched, they remain fresh and open in the +heart. + +The article having been read during the painful hush that followed, a +universal shudder pervaded the assembly, and immediately the closest +attention was given to the orator as he resumed his remarks. He stated +his scruples and the difficulties of the case; it was the honor of M. +de Morcerf, and that of the whole House, he proposed to defend, by +provoking a debate on personal questions, which are always such painful +themes of discussion. He concluded by calling for an investigation, +which might dispose of the calumnious report before it had time to +spread, and restore M. de Morcerf to the position he had long held in +public opinion. + +Morcerf was so completely overwhelmed by this great and unexpected +calamity that he could scarcely stammer a few words as he looked around +on the assembly. This timidity, which might proceed from the +astonishment of innocence as well as the shame of guilt, conciliated +some in his favor; for men who are truly generous are always ready to +compassionate when the misfortune of their enemy surpasses the limits +of their hatred. + +The president put it to the vote, and it was decided that the +investigation should take place. The count was asked what time he +required to prepare his defence. Morcerf’s courage had revived when he +found himself alive after this horrible blow. + +“My lords,” answered he, “it is not by time I could repel the attack +made on me by enemies unknown to me, and, doubtless, hidden in +obscurity; it is immediately, and by a thunderbolt, that I must repel +the flash of lightning which, for a moment, startled me. Oh, that I +could, instead of taking up this defence, shed my last drop of blood to +prove to my noble colleagues that I am their equal in worth.” + +These words made a favorable impression on behalf of the accused. + +“I demand, then, that the examination shall take place as soon as +possible, and I will furnish the house with all necessary information.” + +“What day do you fix?” asked the president. + +“Today I am at your service,” replied the count. + +The president rang the bell. “Does the House approve that the +examination should take place today?” + +40196m + + + +“Yes,” was the unanimous answer. + +A committee of twelve members was chosen to examine the proofs brought +forward by Morcerf. The investigation would begin at eight o’clock that +evening in the committee-room, and if postponement were necessary, the +proceedings would be resumed each evening at the same hour. Morcerf +asked leave to retire; he had to collect the documents he had long been +preparing against this storm, which his sagacity had foreseen. + +Beauchamp related to the young man all the facts we have just narrated; +his story, however, had over ours all the advantage of the animation of +living things over the coldness of dead things. + +Albert listened, trembling now with hope, then with anger, and then +again with shame, for from Beauchamp’s confidence he knew his father +was guilty, and he asked himself how, since he was guilty, he could +prove his innocence. Beauchamp hesitated to continue his narrative. + +“What next?” asked Albert. + +“What next? My friend, you impose a painful task on me. Must you know +all?” + +“Absolutely; and rather from your lips than another’s.” + +“Muster up all your courage, then, for never have you required it +more.” + +Albert passed his hand over his forehead, as if to try his strength, as +a man who is preparing to defend his life proves his shield and bends +his sword. He thought himself strong enough, for he mistook fever for +energy. “Go on,” said he. + +“The evening arrived; all Paris was in expectation. Many said your +father had only to show himself to crush the charge against him; many +others said he would not appear; while some asserted that they had seen +him start for Brussels; and others went to the police-office to inquire +if he had taken out a passport. I used all my influence with one of the +committee, a young peer of my acquaintance, to get admission to one of +the galleries. He called for me at seven o’clock, and, before anyone +had arrived, asked one of the door-keepers to place me in a box. I was +concealed by a column, and might witness the whole of the terrible +scene which was about to take place. At eight o’clock all were in their +places, and M. de Morcerf entered at the last stroke. He held some +papers in his hand; his countenance was calm, and his step firm, and he +was dressed with great care in his military uniform, which was buttoned +completely up to the chin. His presence produced a good effect. The +committee was made up of Liberals, several of whom came forward to +shake hands with him.” + +Albert felt his heart bursting at these particulars, but gratitude +mingled with his sorrow: he would gladly have embraced those who had +given his father this proof of esteem at a moment when his honor was so +powerfully attacked. + +“At this moment one of the door-keepers brought in a letter for the +president. ‘You are at liberty to speak, M. de Morcerf,’ said the +president, as he unsealed the letter; and the count began his defence, +I assure you, Albert, in a most eloquent and skilful manner. He +produced documents proving that the Vizier of Yanina had up to the last +moment honored him with his entire confidence, since he had interested +him with a negotiation of life and death with the emperor. He produced +the ring, his mark of authority, with which Ali Pasha generally sealed +his letters, and which the latter had given him, that he might, on his +return at any hour of the day or night, gain access to the presence, +even in the harem. Unfortunately, the negotiation failed, and when he +returned to defend his benefactor, he was dead. ‘But,’ said the count, +‘so great was Ali Pasha’s confidence, that on his death-bed he resigned +his favorite mistress and her daughter to my care.’” + +Albert started on hearing these words; the history of Haydée recurred +to him, and he remembered what she had said of that message and the +ring, and the manner in which she had been sold and made a slave. + +“And what effect did this discourse produce?” anxiously inquired +Albert. + +“I acknowledge it affected me, and, indeed, all the committee also,” +said Beauchamp. + +“Meanwhile, the president carelessly opened the letter which had been +brought to him; but the first lines aroused his attention; he read them +again and again, and fixing his eyes on M. de Morcerf, ‘Count,’ said +he, ‘you have said that the Vizier of Yanina confided his wife and +daughter to your care?’—‘Yes, sir,’ replied Morcerf; ‘but in that, like +all the rest, misfortune pursued me. On my return, Vasiliki and her +daughter Haydée had disappeared.’—‘Did you know them?’—‘My intimacy +with the pasha and his unlimited confidence had gained me an +introduction to them, and I had seen them above twenty times.’ + +“‘Have you any idea what became of them?’—‘Yes, sir; I heard they had +fallen victims to their sorrow, and, perhaps, to their poverty. I was +not rich; my life was in constant danger; I could not seek them, to my +great regret.’ The president frowned imperceptibly. ‘Gentlemen,’ said +he, ‘you have heard the Comte de Morcerf’s defence. Can you, sir, +produce any witnesses to the truth of what you have asserted?’—‘Alas, +no, monsieur,’ replied the count; ‘all those who surrounded the vizier, +or who knew me at his court, are either dead or gone away, I know not +where. I believe that I alone, of all my countrymen, survived that +dreadful war. I have only the letters of Ali Tepelini, which I have +placed before you; the ring, a token of his good-will, which is here; +and, lastly, the most convincing proof I can offer, after an anonymous +attack, and that is the absence of any witness against my veracity and +the purity of my military life.’ + +“A murmur of approbation ran through the assembly; and at this moment, +Albert, had nothing more transpired, your father’s cause had been +gained. It only remained to put it to the vote, when the president +resumed: ‘Gentlemen and you, monsieur,—you will not be displeased, I +presume, to listen to one who calls himself a very important witness, +and who has just presented himself. He is, doubtless, come to prove the +perfect innocence of our colleague. Here is a letter I have just +received on the subject; shall it be read, or shall it be passed over? +and shall we take no notice of this incident?’ M. de Morcerf turned +pale, and clenched his hands on the papers he held. The committee +decided to hear the letter; the count was thoughtful and silent. The +president read: + +“‘Mr. President,—I can furnish the committee of inquiry into the +conduct of the Lieutenant-General the Count of Morcerf in Epirus and in +Macedonia with important particulars.’ + +“The president paused, and the count turned pale. The president looked +at his auditors. ‘Proceed,’ was heard on all sides. The president +resumed: + +“‘I was on the spot at the death of Ali Pasha. I was present during his +last moments. I know what is become of Vasiliki and Haydée. I am at the +command of the committee, and even claim the honor of being heard. I +shall be in the lobby when this note is delivered to you.’ + +“‘And who is this witness, or rather this enemy?’ asked the count, in a +tone in which there was a visible alteration. ‘We shall know, sir,’ +replied the president. ‘Is the committee willing to hear this +witness?’—‘Yes, yes,’ they all said at once. The door-keeper was +called. ‘Is there anyone in the lobby?’ said the president. + +“‘Yes, sir.’—‘Who is it?’—‘A woman, accompanied by a servant.’ Everyone +looked at his neighbor. ‘Bring her in,’ said the president. Five +minutes after the door-keeper again appeared; all eyes were fixed on +the door, and I,” said Beauchamp, “shared the general expectation and +anxiety. Behind the door-keeper walked a woman enveloped in a large +veil, which completely concealed her. It was evident, from her figure +and the perfumes she had about her, that she was young and fastidious +in her tastes, but that was all. The president requested her to throw +aside her veil, and it was then seen that she was dressed in the +Grecian costume, and was remarkably beautiful.” + +“Ah,” said Albert, “it was she.” + +“Who?” + +“Haydée.” + +“Who told you that?” + +“Alas, I guess it. But go on, Beauchamp. You see I am calm and strong. +And yet we must be drawing near the disclosure.” + +“M. de Morcerf,” continued Beauchamp, “looked at this woman with +surprise and terror. Her lips were about to pass his sentence of life +or death. To the committee the adventure was so extraordinary and +curious, that the interest they had felt for the count’s safety became +now quite a secondary matter. The president himself advanced to place a +seat for the young lady; but she declined availing herself of it. As +for the count, he had fallen on his chair; it was evident that his legs +refused to support him. + +“‘Madame,’ said the president, ‘you have engaged to furnish the +committee with some important particulars respecting the affair at +Yanina, and you have stated that you were an eyewitness of the +event.’—‘I was, indeed,’ said the stranger, with a tone of sweet +melancholy, and with the sonorous voice peculiar to the East. + +“‘But allow me to say that you must have been very young then.’—‘I was +four years old; but as those events deeply concerned me, not a single +detail has escaped my memory.’—‘In what manner could these events +concern you? and who are you, that they should have made so deep an +impression on you?’—‘On them depended my father’s life,’ replied she. +‘I am Haydée, the daughter of Ali Tepelini, pasha of Yanina, and of +Vasiliki, his beloved wife.’ + +40202m + + + +“The blush of mingled pride and modesty which suddenly suffused the +cheeks of the young woman, the brilliancy of her eye, and her highly +important communication, produced an indescribable effect on the +assembly. As for the count, he could not have been more overwhelmed if +a thunderbolt had fallen at his feet and opened an immense gulf before +him. + +“‘Madame,’ replied the president, bowing with profound respect, ‘allow +me to ask one question; it shall be the last: Can you prove the +authenticity of what you have now stated?’ + +“‘I can, sir,’ said Haydée, drawing from under her veil a satin satchel +highly perfumed; ‘for here is the register of my birth, signed by my +father and his principal officers, and that of my baptism, my father +having consented to my being brought up in my mother’s faith,—this +latter has been sealed by the grand primate of Macedonia and Epirus; +and lastly (and perhaps the most important), the record of the sale of +my person and that of my mother to the Armenian merchant El-Kobbir, by +the French officer, who, in his infamous bargain with the Porte, had +reserved as his part of the booty the wife and daughter of his +benefactor, whom he sold for the sum of four hundred thousand francs.’ +A greenish pallor spread over the count’s cheeks, and his eyes became +bloodshot at these terrible imputations, which were listened to by the +assembly with ominous silence. + +“Haydée, still calm, but with a calmness more dreadful than the anger +of another would have been, handed to the president the record of her +sale, written in Arabic. It had been supposed some of the papers might +be in the Arabian, Romaic, or Turkish language, and the interpreter of +the House was in attendance. One of the noble peers, who was familiar +with the Arabic language, having studied it during the famous Egyptian +campaign, followed with his eye as the translator read aloud: + +“‘I, El-Kobbir, a slave-merchant, and purveyor of the harem of his +highness, acknowledge having received for transmission to the sublime +emperor, from the French lord, the Count of Monte Cristo, an emerald +valued at eight hundred thousand francs; as the ransom of a young +Christian slave of eleven years of age, named Haydée, the acknowledged +daughter of the late lord Ali Tepelini, pasha of Yanina, and of +Vasiliki, his favorite; she having been sold to me seven years +previously, with her mother, who had died on arriving at +Constantinople, by a French colonel in the service of the Vizier Ali +Tepelini, named Fernand Mondego. The above-mentioned purchase was made +on his highness’s account, whose mandate I had, for the sum of four +hundred thousand francs. + +“‘Given at Constantinople, by authority of his highness, in the year +1247 of the Hegira. + +“‘Signed, El-Kobbir.’ + +“‘That this record should have all due authority, it shall bear the +imperial seal, which the vendor is bound to have affixed to it.’ + +“Near the merchant’s signature there was, indeed, the seal of the +sublime emperor. A dreadful silence followed the reading of this +document; the count could only stare, and his gaze, fixed as if +unconsciously on Haydée, seemed one of fire and blood. ‘Madame,’ said +the president, ‘may reference be made to the Count of Monte Cristo, who +is now, I believe, in Paris?’ + +“‘Sir,’ replied Haydée, ‘the Count of Monte Cristo, my foster-father, +has been in Normandy the last three days.’ + +“‘Who, then, has counselled you to take this step, one for which the +court is deeply indebted to you, and which is perfectly natural, +considering your birth and your misfortunes?’—‘Sir,’ replied Haydée, ‘I +have been led to take this step from a feeling of respect and grief. +Although a Christian, may God forgive me, I have always sought to +revenge my illustrious father. Since I set my foot in France, and knew +the traitor lived in Paris, I have watched carefully. I live retired in +the house of my noble protector, but I do it from choice. I love +retirement and silence, because I can live with my thoughts and +recollections of past days. But the Count of Monte Cristo surrounds me +with every paternal care, and I am ignorant of nothing which passes in +the world. I learn all in the silence of my apartments,—for instance, I +see all the newspapers, every periodical, as well as every new piece of +music; and by thus watching the course of the life of others, I learned +what had transpired this morning in the House of Peers, and what was to +take place this evening; then I wrote.’ + +40204m + + + +“‘Then,’ remarked the president, ‘the Count of Monte Cristo knows +nothing of your present proceedings?’—‘He is quite unaware of them, and +I have but one fear, which is that he should disapprove of what I have +done. But it is a glorious day for me,’ continued the young girl, +raising her ardent gaze to heaven, ‘that on which I find at last an +opportunity of avenging my father!’ + +“The count had not uttered one word the whole of this time. His +colleagues looked at him, and doubtless pitied his prospects, blighted +under the perfumed breath of a woman. His misery was depicted in +sinister lines on his countenance. ‘M. de Morcerf,’ said the president, +‘do you recognize this lady as the daughter of Ali Tepelini, pasha of +Yanina?’—‘No,’ said Morcerf, attempting to rise, ‘it is a base plot, +contrived by my enemies.’ Haydée, whose eyes had been fixed on the +door, as if expecting someone, turned hastily, and, seeing the count +standing, shrieked, ‘You do not know me?’ said she. ‘Well, I +fortunately recognize you! You are Fernand Mondego, the French officer +who led the troops of my noble father! It is you who surrendered the +castle of Yanina! It is you who, sent by him to Constantinople, to +treat with the emperor for the life or death of your benefactor, +brought back a false mandate granting full pardon! It is you who, with +that mandate, obtained the pasha’s ring, which gave you authority over +Selim, the fire-keeper! It is you who stabbed Selim. It is you who sold +us, my mother and me, to the merchant, El-Kobbir! Assassin, assassin, +assassin, you have still on your brow your master’s blood! Look, +gentlemen, all!’ + +“These words had been pronounced with such enthusiasm and evident +truth, that every eye was fixed on the count’s forehead, and he himself +passed his hand across it, as if he felt Ali’s blood still lingering +there. ‘You positively recognize M. de Morcerf as the officer, Fernand +Mondego?’—‘Indeed I do!’ cried Haydée. ‘Oh, my mother, it was you who +said, “You were free, you had a beloved father, you were destined to be +almost a queen. Look well at that man; it is he who raised your +father’s head on the point of a spear; it is he who sold us; it is he +who forsook us! Look well at his right hand, on which he has a large +wound; if you forgot his features, you would know him by that hand, +into which fell, one by one, the gold pieces of the merchant +El-Kobbir!” I know him! Ah, let him say now if he does not recognize +me!’ Each word fell like a dagger on Morcerf, and deprived him of a +portion of his energy; as she uttered the last, he hid his mutilated +hand hastily in his bosom, and fell back on his seat, overwhelmed by +wretchedness and despair. This scene completely changed the opinion of +the assembly respecting the accused count. + +“‘Count of Morcerf,’ said the president, ‘do not allow yourself to be +cast down; answer. The justice of the court is supreme and impartial as +that of God; it will not suffer you to be trampled on by your enemies +without giving you an opportunity of defending yourself. Shall further +inquiries be made? Shall two members of the House be sent to Yanina? +Speak!’ Morcerf did not reply. Then all the members looked at each +other with terror. They knew the count’s energetic and violent temper; +it must be, indeed, a dreadful blow which would deprive him of courage +to defend himself. They expected that his stupefied silence would be +followed by a fiery outburst. ‘Well,’ asked the president, ‘what is +your decision?’ + +40206m + + + +“‘I have no reply to make,’ said the count in a low tone. + +“‘Has the daughter of Ali Tepelini spoken the truth?’ said the +president. ‘Is she, then, the terrible witness to whose charge you dare +not plead “Not guilty”? Have you really committed the crimes of which +you are accused?’ The count looked around him with an expression which +might have softened tigers, but which could not disarm his judges. Then +he raised his eyes towards the ceiling, but withdrew then, immediately, +as if he feared the roof would open and reveal to his distressed view +that second tribunal called heaven, and that other judge named God. +Then, with a hasty movement, he tore open his coat, which seemed to +stifle him, and flew from the room like a madman; his footstep was +heard one moment in the corridor, then the rattling of his +carriage-wheels as he was driven rapidly away. ‘Gentlemen,’ said the +president, when silence was restored, ‘is the Count of Morcerf +convicted of felony, treason, and conduct unbecoming a member of this +House?’—‘Yes,’ replied all the members of the committee of inquiry with +a unanimous voice. + +“Haydée had remained until the close of the meeting. She heard the +count’s sentence pronounced without betraying an expression of joy or +pity; then drawing her veil over her face she bowed majestically to the +councillors, and left with that dignified step which Virgil attributes +to his goddesses.” + + + + Chapter 87. The Challenge + +Then,” continued Beauchamp, “I took advantage of the silence and the +darkness to leave the house without being seen. The usher who had +introduced me was waiting for me at the door, and he conducted me +through the corridors to a private entrance opening into the Rue de +Vaugirard. I left with mingled feelings of sorrow and delight. Excuse +me, Albert,—sorrow on your account, and delight with that noble girl, +thus pursuing paternal vengeance. Yes, Albert, from whatever source the +blow may have proceeded—it may be from an enemy, but that enemy is only +the agent of Providence.” + +Albert held his head between his hands; he raised his face, red with +shame and bathed in tears, and seizing Beauchamp’s arm: + +“My friend,” said he, “my life is ended. I cannot calmly say with you, +‘Providence has struck the blow;’ but I must discover who pursues me +with this hatred, and when I have found him I shall kill him, or he +will kill me. I rely on your friendship to assist me, Beauchamp, if +contempt has not banished it from your heart.” + +“Contempt, my friend? How does this misfortune affect you? No, happily +that unjust prejudice is forgotten which made the son responsible for +the father’s actions. Review your life, Albert; although it is only +just beginning, did a lovely summer’s day ever dawn with greater purity +than has marked the commencement of your career? No, Albert, take my +advice. You are young and rich—leave Paris—all is soon forgotten in +this great Babylon of excitement and changing tastes. You will return +after three or four years with a Russian princess for a bride, and no +one will think more of what occurred yesterday than if it had happened +sixteen years ago.” + +“Thank you, my dear Beauchamp, thank you for the excellent feeling +which prompts your advice; but it cannot be. I have told you my wish, +or rather my determination. You understand that, interested as I am in +this affair, I cannot see it in the same light as you do. What appears +to you to emanate from a celestial source, seems to me to proceed from +one far less pure. Providence appears to me to have no share in this +affair; and happily so, for instead of the invisible, impalpable agent +of celestial rewards and punishments, I shall find one both palpable +and visible, on whom I shall revenge myself, I assure you, for all I +have suffered during the last month. Now, I repeat, Beauchamp, I wish +to return to human and material existence, and if you are still the +friend you profess to be, help me to discover the hand that struck the +blow.” + +“Be it so,” said Beauchamp; “if you must have me descend to earth, I +submit; and if you will seek your enemy, I will assist you, and I will +engage to find him, my honor being almost as deeply interested as +yours.” + +“Well, then, you understand, Beauchamp, that we begin our search +immediately. Each moment’s delay is an eternity for me. The calumniator +is not yet punished, and he may hope that he will not be; but, on my +honor, if he thinks so, he deceives himself.” + +“Well, listen, Morcerf.” + +“Ah, Beauchamp, I see you know something already; you will restore me +to life.” + +“I do not say there is any truth in what I am going to tell you, but it +is, at least, a ray of light in a dark night; by following it we may, +perhaps, discover something more certain.” + +“Tell me; satisfy my impatience.” + +“Well, I will tell you what I did not like to mention on my return from +Yanina.” + +“Say on.” + +“I went, of course, to the chief banker of the town to make inquiries. +At the first word, before I had even mentioned your father’s name”— + +“‘Ah,’ said he. ‘I guess what brings you here.’ + +“‘How, and why?’ + +“‘Because a fortnight since I was questioned on the same subject.’ + +“‘By whom?’ + +“‘By a banker of Paris, my correspondent.’ + +“‘Whose name is——’ + +“‘Danglars.’” + +“He!” cried Albert; “yes, it is indeed he who has so long pursued my +father with jealous hatred. He, the man who would be popular, cannot +forgive the Count of Morcerf for being created a peer; and this +marriage broken off without a reason being assigned—yes, it is all from +the same cause.” + +“Make inquiries, Albert, but do not be angry without reason; make +inquiries, and if it be true——” + +“Oh, yes, if it be true,” cried the young man, “he shall pay me all I +have suffered.” + +“Beware, Morcerf, he is already an old man.” + +“I will respect his age as he has respected the honor of my family; if +my father had offended him, why did he not attack him personally? Oh, +no, he was afraid to encounter him face to face.” + +“I do not condemn you, Albert; I only restrain you. Act prudently.” + +“Oh, do not fear; besides, you will accompany me. Beauchamp, solemn +transactions should be sanctioned by a witness. Before this day closes, +if M. Danglars is guilty, he shall cease to live, or I shall die. +_Pardieu_, Beauchamp, mine shall be a splendid funeral!” + +“When such resolutions are made, Albert, they should be promptly +executed. Do you wish to go to M. Danglars? Let us go immediately.” + +They sent for a cabriolet. On entering the banker’s mansion, they +perceived the phaeton and servant of M. Andrea Cavalcanti. + +“Ah! _parbleu!_ that’s good,” said Albert, with a gloomy tone. “If M. +Danglars will not fight with me, I will kill his son-in-law; Cavalcanti +will certainly fight.” + +The servant announced the young man; but the banker, recollecting what +had transpired the day before, did not wish him admitted. It was, +however, too late; Albert had followed the footman, and, hearing the +order given, forced the door open, and followed by Beauchamp found +himself in the banker’s study. + +“Sir,” cried the latter, “am I no longer at liberty to receive whom I +choose in my house? You appear to forget yourself sadly.” + +“No, sir,” said Albert, coldly; “there are circumstances in which one +cannot, except through cowardice,—I offer you that refuge,—refuse to +admit certain persons at least.” + +“What is your errand, then, with me, sir?” + +“I mean,” said Albert, drawing near, and without apparently noticing +Cavalcanti, who stood with his back towards the fireplace—“I mean to +propose a meeting in some retired corner where no one will interrupt us +for ten minutes; that will be sufficient—where two men having met, one +of them will remain on the ground.” + +Danglars turned pale; Cavalcanti moved a step forward, and Albert +turned towards him. + +“And you, too,” said he, “come, if you like, monsieur; you have a +claim, being almost one of the family, and I will give as many +rendezvous of that kind as I can find persons willing to accept them.” + +Cavalcanti looked at Danglars with a stupefied air, and the latter, +making an effort, arose and stepped between the two young men. Albert’s +attack on Andrea had placed him on a different footing, and he hoped +this visit had another cause than that he had at first supposed. + +“Indeed, sir,” said he to Albert, “if you are come to quarrel with this +gentleman because I have preferred him to you, I shall resign the case +to the king’s attorney.” + +“You mistake, sir,” said Morcerf with a gloomy smile; “I am not +referring in the least to matrimony, and I only addressed myself to M. +Cavalcanti because he appeared disposed to interfere between us. In one +respect you are right, for I am ready to quarrel with everyone today; +but you have the first claim, M. Danglars.” + +40212m + + + +“Sir,” replied Danglars, pale with anger and fear, “I warn you, when I +have the misfortune to meet with a mad dog, I kill it; and far from +thinking myself guilty of a crime, I believe I do society a kindness. +Now, if you are mad and try to bite me, I will kill you without pity. +Is it my fault that your father has dishonored himself?” + +“Yes, miserable wretch!” cried Morcerf, “it is your fault.” + +Danglars retreated a few steps. “My fault?” said he; “you must be mad! +What do I know of the Grecian affair? Have I travelled in that country? +Did I advise your father to sell the castle of Yanina—to betray——” + +“Silence!” said Albert, with a thundering voice. “No; it is not you who +have directly made this exposure and brought this sorrow on us, but you +hypocritically provoked it.” + +“I?” + +“Yes; you! How came it known?” + +“I suppose you read it in the paper in the account from Yanina?” + +“Who wrote to Yanina?” + +“To Yanina?” + +“Yes. Who wrote for particulars concerning my father?” + +“I imagine anyone may write to Yanina.” + +“But one person only wrote!” + +“One only?” + +“Yes; and that was you!” + +“I, doubtless, wrote. It appears to me that when about to marry your +daughter to a young man, it is right to make some inquiries respecting +his family; it is not only a right, but a duty.” + +“You wrote, sir, knowing what answer you would receive.” + +“I, indeed? I assure you,” cried Danglars, with a confidence and +security proceeding less from fear than from the interest he really +felt for the young man, “I solemnly declare to you, that I should never +have thought of writing to Yanina, did I know anything of Ali Pasha’s +misfortunes.” + +“Who, then, urged you to write? Tell me.” + +“_Pardieu!_ it was the most simple thing in the world. I was speaking +of your father’s past history. I said the origin of his fortune +remained obscure. The person to whom I addressed my scruples asked me +where your father had acquired his property? I answered, ‘In +Greece.’—‘Then,’ said he, ‘write to Yanina.’” + +“And who thus advised you?” + +“No other than your friend, Monte Cristo.” + +“The Count of Monte Cristo told you to write to Yanina?” + +“Yes; and I wrote, and will show you my correspondence, if you like.” + +Albert and Beauchamp looked at each other. + +“Sir,” said Beauchamp, who had not yet spoken, “you appear to accuse +the count, who is absent from Paris at this moment, and cannot justify +himself.” + +“I accuse no one, sir,” said Danglars; “I relate, and I will repeat +before the count what I have said to you.” + +“Does the count know what answer you received?” + +“Yes; I showed it to him.” + +“Did he know my father’s Christian name was Fernand, and his family +name Mondego?” + +“Yes, I had told him that long since, and I did only what any other +would have done in my circumstances, and perhaps less. When, the day +after the arrival of this answer, your father came by the advice of +Monte Cristo to ask my daughter’s hand for you, I decidedly refused +him, but without any explanation or exposure. In short, why should I +have any more to do with the affair? How did the honor or disgrace of +M. de Morcerf affect me? It neither increased nor decreased my income.” + +Albert felt the blood mounting to his brow; there was no doubt upon the +subject. Danglars defended himself with the baseness, but at the same +time with the assurance, of a man who speaks the truth, at least in +part, if not wholly—not for conscience’ sake, but through fear. +Besides, what was Morcerf seeking? It was not whether Danglars or Monte +Cristo was more or less guilty; it was a man who would answer for the +offence, whether trifling or serious; it was a man who would fight, and +it was evident Danglars would not fight. + +In addition to this, everything forgotten or unperceived before +presented itself now to his recollection. Monte Cristo knew everything, +as he had bought the daughter of Ali Pasha; and, knowing everything, he +had advised Danglars to write to Yanina. The answer known, he had +yielded to Albert’s wish to be introduced to Haydée, and allowed the +conversation to turn on the death of Ali, and had not opposed Haydée’s +recital (but having, doubtless, warned the young girl, in the few +Romaic words he spoke to her, not to implicate Morcerf’s father). +Besides, had he not begged of Morcerf not to mention his father’s name +before Haydée? Lastly, he had taken Albert to Normandy when he knew the +final blow was near. There could be no doubt that all had been +calculated and previously arranged; Monte Cristo then was in league +with his father’s enemies. Albert took Beauchamp aside, and +communicated these ideas to him. + +“You are right,” said the latter; “M. Danglars has only been a +secondary agent in this sad affair, and it is of M. de Monte Cristo +that you must demand an explanation.” + +Albert turned. + +“Sir,” said he to Danglars, “understand that I do not take a final +leave of you; I must ascertain if your insinuations are just, and am +going now to inquire of the Count of Monte Cristo.” + +He bowed to the banker, and went out with Beauchamp, without appearing +to notice Cavalcanti. Danglars accompanied him to the door, where he +again assured Albert that no motive of personal hatred had influenced +him against the Count of Morcerf. + + + + Chapter 88. The Insult + +At the banker’s door Beauchamp stopped Morcerf. + +“Listen,” said he; “just now I told you it was of M. de Monte Cristo +you must demand an explanation.” + +“Yes; and we are going to his house.” + +“Reflect, Morcerf, one moment before you go.” + +“On what shall I reflect?” + +“On the importance of the step you are taking.” + +“Is it more serious than going to M. Danglars?” + +“Yes; M. Danglars is a money-lover, and those who love money, you know, +think too much of what they risk to be easily induced to fight a duel. +The other is, on the contrary, to all appearance a true nobleman; but +do you not fear to find him a bully?” + +“I only fear one thing; namely, to find a man who will not fight.” + +“Do not be alarmed,” said Beauchamp; “he will meet you. My only fear is +that he will be too strong for you.” + +“My friend,” said Morcerf, with a sweet smile, “that is what I wish. +The happiest thing that could occur to me, would be to die in my +father’s stead; that would save us all.” + +“Your mother would die of grief.” + +“My poor mother!” said Albert, passing his hand across his eyes, “I +know she would; but better so than die of shame.” + +“Are you quite decided, Albert?” + +“Yes; let us go.” + +“But do you think we shall find the count at home?” + +“He intended returning some hours after me, and doubtless he is now at +home.” + +They ordered the driver to take them to No. 30 Champs-Élysées. +Beauchamp wished to go in alone, but Albert observed that as this was +an unusual circumstance he might be allowed to deviate from the usual +etiquette of duels. The cause which the young man espoused was one so +sacred that Beauchamp had only to comply with all his wishes; he +yielded and contented himself with following Morcerf. Albert sprang +from the porter’s lodge to the steps. He was received by Baptistin. The +count had, indeed, just arrived, but he was in his bath, and had +forbidden that anyone should be admitted. + +“But after his bath?” asked Morcerf. + +“My master will go to dinner.” + +“And after dinner?” + +“He will sleep an hour.” + +“Then?” + +“He is going to the Opera.” + +“Are you sure of it?” asked Albert. + +“Quite, sir; my master has ordered his horses at eight o’clock +precisely.” + +“Very good,” replied Albert; “that is all I wished to know.” + +Then, turning towards Beauchamp, “If you have anything to attend to, +Beauchamp, do it directly; if you have any appointment for this +evening, defer it till tomorrow. I depend on you to accompany me to the +Opera; and if you can, bring Château-Renaud with you.” + +Beauchamp availed himself of Albert’s permission, and left him, +promising to call for him at a quarter before eight. On his return +home, Albert expressed his wish to Franz Debray, and Morrel, to see +them at the Opera that evening. Then he went to see his mother, who +since the events of the day before had refused to see anyone, and had +kept her room. He found her in bed, overwhelmed with grief at this +public humiliation. + +The sight of Albert produced the effect which might naturally be +expected on Mercédès; she pressed her son’s hand and sobbed aloud, but +her tears relieved her. Albert stood one moment speechless by the side +of his mother’s bed. It was evident from his pale face and knit brows +that his resolution to revenge himself was growing weaker. + +“My dear mother,” said he, “do you know if M. de Morcerf has any +enemy?” + +Mercédès started; she noticed that the young man did not say “my +father.” + +“My son,” she said, “persons in the count’s situation have many secret +enemies. Those who are known are not the most dangerous.” + +“I know it, and appeal to your penetration. You are of so superior a +mind, nothing escapes you.” + +“Why do you say so?” + +“Because, for instance, you noticed on the evening of the ball we gave, +that M. de Monte Cristo would eat nothing in our house.” + +Mercédès raised herself on her feverish arm. + +“M. de Monte Cristo!” she exclaimed; “and how is he connected with the +question you asked me?” + +40219m + + + +“You know, mother, M. de Monte Cristo is almost an Oriental, and it is +customary with the Orientals to secure full liberty for revenge by not +eating or drinking in the houses of their enemies.” + +“Do you say M. de Monte Cristo is our enemy?” replied Mercédès, +becoming paler than the sheet which covered her. “Who told you so? Why, +you are mad, Albert! M. de Monte Cristo has only shown us kindness. M. +de Monte Cristo saved your life; you yourself presented him to us. Oh, +I entreat you, my son, if you had entertained such an idea, dispel it; +and my counsel to you—nay, my prayer—is to retain his friendship.” + +“Mother,” replied the young man, “you have special reasons for telling +me to conciliate that man.” + +“I?” said Mercédès, blushing as rapidly as she had turned pale, and +again becoming paler than ever. + +“Yes, doubtless; and is it not that he may never do us any harm?” + +Mercédès shuddered, and, fixing on her son a scrutinizing gaze, “You +speak strangely,” said she to Albert, “and you appear to have some +singular prejudices. What has the count done? Three days since you were +with him in Normandy; only three days since we looked on him as our +best friend.” + +An ironical smile passed over Albert’s lips. Mercédès saw it and with +the double instinct of woman and mother guessed all; but as she was +prudent and strong-minded she concealed both her sorrows and her fears. +Albert was silent; an instant after, the countess resumed: + +“You came to inquire after my health; I will candidly acknowledge that +I am not well. You should install yourself here, and cheer my solitude. +I do not wish to be left alone.” + +“Mother,” said the young man, “you know how gladly I would obey your +wish, but an urgent and important affair obliges me to leave you for +the whole evening.” + +“Well,” replied Mercédès, sighing, “go, Albert; I will not make you a +slave to your filial piety.” + +Albert pretended he did not hear, bowed to his mother, and quitted her. +Scarcely had he shut her door, when Mercédès called a confidential +servant, and ordered him to follow Albert wherever he should go that +evening, and to come and tell her immediately what he observed. Then +she rang for her lady’s maid, and, weak as she was, she dressed, in +order to be ready for whatever might happen. The footman’s mission was +an easy one. Albert went to his room, and dressed with unusual care. At +ten minutes to eight Beauchamp arrived; he had seen Château-Renaud, who +had promised to be in the orchestra before the curtain was raised. Both +got into Albert’s _coupé_; and, as the young man had no reason to +conceal where he was going, he called aloud, “To the Opera.” In his +impatience he arrived before the beginning of the performance. + +40221m + + + +Château-Renaud was at his post; apprised by Beauchamp of the +circumstances, he required no explanation from Albert. The conduct of +the son in seeking to avenge his father was so natural that +Château-Renaud did not seek to dissuade him, and was content with +renewing his assurances of devotion. Debray was not yet come, but +Albert knew that he seldom lost a scene at the Opera. + +Albert wandered about the theatre until the curtain was drawn up. He +hoped to meet with M. de Monte Cristo either in the lobby or on the +stairs. The bell summoned him to his seat, and he entered the orchestra +with Château-Renaud and Beauchamp. But his eyes scarcely quitted the +box between the columns, which remained obstinately closed during the +whole of the first act. At last, as Albert was looking at his watch for +about the hundredth time, at the beginning of the second act the door +opened, and Monte Cristo entered, dressed in black, and, leaning over +the front of the box, looked around the pit. Morrel followed him, and +looked also for his sister and brother in-law; he soon discovered them +in another box, and kissed his hand to them. + +The count, in his survey of the pit, encountered a pale face and +threatening eyes, which evidently sought to gain his attention. He +recognized Albert, but thought it better not to notice him, as he +looked so angry and discomposed. Without communicating his thoughts to +his companion, he sat down, drew out his opera-glass, and looked +another way. Although apparently not noticing Albert, he did not, +however, lose sight of him, and when the curtain fell at the end of the +second act, he saw him leave the orchestra with his two friends. Then +his head was seen passing at the back of the boxes, and the count knew +that the approaching storm was intended to fall on him. He was at the +moment conversing cheerfully with Morrel, but he was well prepared for +what might happen. + +The door opened, and Monte Cristo, turning round, saw Albert, pale and +trembling, followed by Beauchamp and Château-Renaud. + +“Well,” cried he, with that benevolent politeness which distinguished +his salutation from the common civilities of the world, “my cavalier +has attained his object. Good-evening, M. de Morcerf.” + +The countenance of this man, who possessed such extraordinary control +over his feelings, expressed the most perfect cordiality. Morrel only +then recollected the letter he had received from the viscount, in +which, without assigning any reason, he begged him to go to the Opera, +but he understood that something terrible was brooding. + +“We are not come here, sir, to exchange hypocritical expressions of +politeness, or false professions of friendship,” said Albert, “but to +demand an explanation.” + +The young man’s trembling voice was scarcely audible. + +“An explanation at the Opera?” said the count, with that calm tone and +penetrating eye which characterize the man who knows his cause is good. +“Little acquainted as I am with the habits of Parisians, I should not +have thought this the place for such a demand.” + +“Still, if people will shut themselves up,” said Albert, “and cannot be +seen because they are bathing, dining, or asleep, we must avail +ourselves of the opportunity whenever they are to be seen.” + +“I am not difficult of access, sir; for yesterday, if my memory does +not deceive me, you were at my house.” + +“Yesterday I was at your house, sir,” said the young man; “because then +I knew not who you were.” + +In pronouncing these words Albert had raised his voice so as to be +heard by those in the adjoining boxes and in the lobby. Thus the +attention of many was attracted by this altercation. + +“Where are you come from, sir? “ said Monte Cristo “You do not appear +to be in the possession of your senses.” + +“Provided I understand your perfidy, sir, and succeed in making you +understand that I will be revenged, I shall be reasonable enough,” said +Albert furiously. + +“I do not understand you, sir,” replied Monte Cristo; “and if I did, +your tone is too high. I am at home here, and I alone have a right to +raise my voice above another’s. Leave the box, sir!” + +Monte Cristo pointed towards the door with the most commanding dignity. + +“Ah, I shall know how to make you leave your home!” replied Albert, +clasping in his convulsed grasp the glove, which Monte Cristo did not +lose sight of. + +“Well, well,” said Monte Cristo quietly, “I see you wish to quarrel +with me; but I would give you one piece of advice, which you will do +well to keep in mind. It is in poor taste to make a display of a +challenge. Display is not becoming to everyone, M. de Morcerf.” + +At this name a murmur of astonishment passed around the group of +spectators of this scene. They had talked of no one but Morcerf the +whole day. Albert understood the allusion in a moment, and was about to +throw his glove at the count, when Morrel seized his hand, while +Beauchamp and Château-Renaud, fearing the scene would surpass the +limits of a challenge, held him back. But Monte Cristo, without rising, +and leaning forward in his chair, merely stretched out his arm and, +taking the damp, crushed glove from the clenched hand of the young man: + +“Sir,” said he in a solemn tone, “I consider your glove thrown, and +will return it to you wrapped around a bullet. Now leave me or I will +summon my servants to throw you out at the door.” + +Wild, almost unconscious, and with eyes inflamed, Albert stepped back, +and Morrel closed the door. Monte Cristo took up his glass again as if +nothing had happened; his face was like marble, and his heart was like +bronze. Morrel whispered, “What have you done to him?” + +“I? Nothing—at least personally,” said Monte Cristo. + +“But there must be some cause for this strange scene.” + +“The Count of Morcerf’s adventure exasperates the young man.” + +“Have you anything to do with it?” + +“It was through Haydée that the Chamber was informed of his father’s +treason.” + +“Indeed?” said Morrel. “I had been told, but would not credit it, that +the Grecian slave I have seen with you here in this very box was the +daughter of Ali Pasha.” + +“It is true, nevertheless.” + +“Then,” said Morrel, “I understand it all, and this scene was +premeditated.” + +“How so?” + +“Yes. Albert wrote to request me to come to the Opera, doubtless that I +might be a witness to the insult he meant to offer you.” + +“Probably,” said Monte Cristo with his imperturbable tranquillity. + +“But what shall you do with him?” + +“With whom?” + +“With Albert.” + +“What shall I do with Albert? As certainly, Maximilian, as I now press +your hand, I shall kill him before ten o’clock tomorrow morning.” +Morrel, in his turn, took Monte Cristo’s hand in both of his, and he +shuddered to feel how cold and steady it was. + +“Ah, count,” said he, “his father loves him so much!” + +“Do not speak to me of that,” said Monte Cristo, with the first +movement of anger he had betrayed; “I will make him suffer.” + +Morrel, amazed, let fall Monte Cristo’s hand. “Count, count!” said he. + +“Dear Maximilian,” interrupted the count, “listen how adorably Duprez +is singing that line,— + +‘O Mathilde! idole de mon âme!’ + + +“I was the first to discover Duprez at Naples, and the first to applaud +him. Bravo, bravo!” + +Morrel saw it was useless to say more, and refrained. The curtain, +which had risen at the close of the scene with Albert, again fell, and +a rap was heard at the door. + +“Come in,” said Monte Cristo with a voice that betrayed not the least +emotion; and immediately Beauchamp appeared. “Good-evening, M. +Beauchamp,” said Monte Cristo, as if this was the first time he had +seen the journalist that evening; “be seated.” + +Beauchamp bowed, and, sitting down, “Sir,” said he, “I just now +accompanied M. de Morcerf, as you saw.” + +“And that means,” replied Monte Cristo, laughing, “that you had, +probably, just dined together. I am happy to see, M. Beauchamp, that +you are more sober than he was.” + +“Sir,” said M. Beauchamp, “Albert was wrong, I acknowledge, to betray +so much anger, and I come, on my own account, to apologize for him. And +having done so, entirely on my own account, be it understood, I would +add that I believe you too gentlemanly to refuse giving him some +explanation concerning your connection with Yanina. Then I will add two +words about the young Greek girl.” + +Monte Cristo motioned him to be silent. “Come,” said he, laughing, +“there are all my hopes about to be destroyed.” + +“How so?” asked Beauchamp. + +“Doubtless you wish to make me appear a very eccentric character. I am, +in your opinion, a Lara, a Manfred, a Lord Ruthven; then, just as I am +arriving at the climax, you defeat your own end, and seek to make an +ordinary man of me. You bring me down to your own level, and demand +explanations! Indeed, M. Beauchamp, it is quite laughable.” + +“Yet,” replied Beauchamp haughtily, “there are occasions when probity +commands——” + +“M. Beauchamp,” interposed this strange man, “the Count of Monte Cristo +bows to none but the Count of Monte Cristo himself. Say no more, I +entreat you. I do what I please, M. Beauchamp, and it is always well +done.” + +“Sir,” replied the young man, “honest men are not to be paid with such +coin. I require honorable guaranties.” + +“I am, sir, a living guaranty,” replied Monte Cristo, motionless, but +with a threatening look; “we have both blood in our veins which we wish +to shed—that is our mutual guaranty. Tell the viscount so, and that +tomorrow, before ten o’clock, I shall see what color his is.” + +“Then I have only to make arrangements for the duel,” said Beauchamp. + +“It is quite immaterial to me,” said Monte Cristo, “and it was very +unnecessary to disturb me at the Opera for such a trifle. In France +people fight with the sword or pistol, in the colonies with the +carbine, in Arabia with the dagger. Tell your client that, although I +am the insulted party, in order to carry out my eccentricity, I leave +him the choice of arms, and will accept without discussion, without +dispute, anything, even combat by drawing lots, which is always stupid, +but with me different from other people, as I am sure to gain.” + +“Sure to gain!” repeated Beauchamp, looking with amazement at the +count. + +“Certainly,” said Monte Cristo, slightly shrugging his shoulders; +“otherwise I would not fight with M. de Morcerf. I shall kill him—I +cannot help it. Only by a single line this evening at my house let me +know the arms and the hour; I do not like to be kept waiting.” + +“Pistols, then, at eight o’clock, in the Bois de Vincennes,” said +Beauchamp, quite disconcerted, not knowing if he was dealing with an +arrogant braggadocio or a supernatural being. + +“Very well, sir,” said Monte Cristo. “Now all that is settled, do let +me see the performance, and tell your friend Albert not to come any +more this evening; he will hurt himself with all his ill-chosen +barbarisms: let him go home and go to sleep.” + +Beauchamp left the box, perfectly amazed. + +“Now,” said Monte Cristo, turning towards Morrel, “I may depend upon +you, may I not?” + +“Certainly,” said Morrel, “I am at your service, count; still——” + +“What?” + +“It is desirable I should know the real cause.” + +“That is to say, you would rather not?” + +“No.” + +“The young man himself is acting blindfolded, and knows not the true +cause, which is known only to God and to me; but I give you my word, +Morrel, that God, who does know it, will be on our side.” + +“Enough,” said Morrel; “who is your second witness?” + +“I know no one in Paris, Morrel, on whom I could confer that honor +besides you and your brother Emmanuel. Do you think Emmanuel would +oblige me?” + +“I will answer for him, count.” + +“Well? that is all I require. Tomorrow morning, at seven o’clock, you +will be with me, will you not?” + +“We will.” + +“Hush, the curtain is rising. Listen! I never lose a note of this opera +if I can avoid it; the music of _William Tell_ is so sweet.” + + + + Chapter 89. The Night + +Monte Cristo waited, according to his usual custom, until Duprez had +sung his famous “_Suivez-moi!_” then he rose and went out. Morrel took +leave of him at the door, renewing his promise to be with him the next +morning at seven o’clock, and to bring Emmanuel. Then he stepped into +his _coupé_, calm and smiling, and was at home in five minutes. No one +who knew the count could mistake his expression when, on entering, he +said: + +“Ali, bring me my pistols with the ivory cross.” + +Ali brought the box to his master, who examined the weapons with a +solicitude very natural to a man who is about to intrust his life to a +little powder and shot. These were pistols of an especial pattern, +which Monte Cristo had had made for target practice in his own room. A +cap was sufficient to drive out the bullet, and from the adjoining room +no one would have suspected that the count was, as sportsmen would say, +keeping his hand in. + +He was just taking one up and looking for the point to aim at on a +little iron plate which served him as a target, when his study door +opened, and Baptistin entered. Before he had spoken a word, the count +saw in the next room a veiled woman, who had followed closely after +Baptistin, and now, seeing the count with a pistol in his hand and +swords on the table, rushed in. Baptistin looked at his master, who +made a sign to him, and he went out, closing the door after him. + +“Who are you, madame?” said the count to the veiled woman. + +40227m + + + +The stranger cast one look around her, to be certain that they were +quite alone; then bending as if she would have knelt, and joining her +hands, she said with an accent of despair: + +“Edmond, you will not kill my son!” + +The count retreated a step, uttered a slight exclamation, and let fall +the pistol he held. + +“What name did you pronounce then, Madame de Morcerf?” said he. + +“Yours!” cried she, throwing back her veil,—“yours, which I alone, +perhaps, have not forgotten. Edmond, it is not Madame de Morcerf who is +come to you, it is Mercédès.” + +“Mercédès is dead, madame,” said Monte Cristo; “I know no one now of +that name.” + +“Mercédès lives, sir, and she remembers, for she alone recognized you +when she saw you, and even before she saw you, by your voice, +Edmond,—by the simple sound of your voice; and from that moment she has +followed your steps, watched you, feared you, and she needs not to +inquire what hand has dealt the blow which now strikes M. de Morcerf.” + +“Fernand, do you mean?” replied Monte Cristo, with bitter irony; “since +we are recalling names, let us remember them all.” Monte Cristo had +pronounced the name of Fernand with such an expression of hatred that +Mercédès felt a thrill of horror run through every vein. + +“You see, Edmond, I am not mistaken, and have cause to say, ‘Spare my +son!’” + +“And who told you, madame, that I have any hostile intentions against +your son?” + +“No one, in truth; but a mother has twofold sight. I guessed all; I +followed him this evening to the Opera, and, concealed in a parquet +box, have seen all.” + +“If you have seen all, madame, you know that the son of Fernand has +publicly insulted me,” said Monte Cristo with awful calmness. + +“Oh, for pity’s sake!” + +“You have seen that he would have thrown his glove in my face if +Morrel, one of my friends, had not stopped him.” + +“Listen to me, my son has also guessed who you are,—he attributes his +father’s misfortunes to you.” + +“Madame, you are mistaken, they are not misfortunes,—it is a +punishment. It is not I who strike M. de Morcerf; it is Providence +which punishes him.” + +“And why do you represent Providence?” cried Mercédès. “Why do you +remember when it forgets? What are Yanina and its vizier to you, +Edmond? What injury has Fernand Mondego done you in betraying Ali +Tepelini?” + +“Ah, madame,” replied Monte Cristo, “all this is an affair between the +French captain and the daughter of Vasiliki. It does not concern me, +you are right; and if I have sworn to revenge myself, it is not on the +French captain, or the Count of Morcerf, but on the fisherman Fernand, +the husband of Mercédès the Catalane.” + +“Ah, sir!” cried the countess, “how terrible a vengeance for a fault +which fatality made me commit!—for I am the only culprit, Edmond, and +if you owe revenge to anyone, it is to me, who had not fortitude to +bear your absence and my solitude.” + +“But,” exclaimed Monte Cristo, “why was I absent? And why were you +alone?” + +40231m + + + +“Because you had been arrested, Edmond, and were a prisoner.” + +“And why was I arrested? Why was I a prisoner?” + +“I do not know,” said Mercédès. + +“You do not, madame; at least, I hope not. But I will tell you. I was +arrested and became a prisoner because, under the arbor of La Réserve, +the day before I was to marry you, a man named Danglars wrote this +letter, which the fisherman Fernand himself posted.” + +Monte Cristo went to a secretaire, opened a drawer by a spring, from +which he took a paper which had lost its original color, and the ink of +which had become of a rusty hue—this he placed in the hands of +Mercédès. It was Danglars’ letter to the king’s attorney, which the +Count of Monte Cristo, disguised as a clerk from the house of Thomson & +French, had taken from the file against Edmond Dantès, on the day he +had paid the two hundred thousand francs to M. de Boville. Mercédès +read with terror the following lines: + +“The king’s attorney is informed by a friend to the throne and religion +that one Edmond Dantès, second in command on board the _Pharaon_, this +day arrived from Smyrna, after having touched at Naples and +Porto-Ferrajo, is the bearer of a letter from Murat to the usurper, and +of another letter from the usurper to the Bonapartist club in Paris. +Ample corroboration of this statement may be obtained by arresting the +above-mentioned Edmond Dantès, who either carries the letter for Paris +about with him, or has it at his father’s abode. Should it not be found +in possession of either father or son, then it will assuredly be +discovered in the cabin belonging to the said Dantès on board the +_Pharaon_.” + + +“How dreadful!” said Mercédès, passing her hand across her brow, moist +with perspiration; “and that letter——” + +“I bought it for two hundred thousand francs, madame,” said Monte +Cristo; “but that is a trifle, since it enables me to justify myself to +you.” + +“And the result of that letter——” + +“You well know, madame, was my arrest; but you do not know how long +that arrest lasted. You do not know that I remained for fourteen years +within a quarter of a league of you, in a dungeon in the Château d’If. +You do not know that every day of those fourteen years I renewed the +vow of vengeance which I had made the first day; and yet I was not +aware that you had married Fernand, my calumniator, and that my father +had died of hunger!” + +“Can it be?” cried Mercédès, shuddering. + +“That is what I heard on leaving my prison fourteen years after I had +entered it; and that is why, on account of the living Mercédès and my +deceased father, I have sworn to revenge myself on Fernand, and—I have +revenged myself.” + +“And you are sure the unhappy Fernand did that?” + +“I am satisfied, madame, that he did what I have told you; besides, +that is not much more odious than that a Frenchman by adoption should +pass over to the English; that a Spaniard by birth should have fought +against the Spaniards; that a stipendiary of Ali should have betrayed +and murdered Ali. Compared with such things, what is the letter you +have just read?—a lover’s deception, which the woman who has married +that man ought certainly to forgive; but not so the lover who was to +have married her. Well, the French did not avenge themselves on the +traitor, the Spaniards did not shoot the traitor, Ali in his tomb left +the traitor unpunished; but I, betrayed, sacrificed, buried, have risen +from my tomb, by the grace of God, to punish that man. He sends me for +that purpose, and here I am.” + +The poor woman’s head and arms fell; her legs bent under her, and she +fell on her knees. + +“Forgive, Edmond, forgive for my sake, who love you still!” + +The dignity of the wife checked the fervor of the lover and the mother. +Her forehead almost touched the carpet, when the count sprang forward +and raised her. Then seated on a chair, she looked at the manly +countenance of Monte Cristo, on which grief and hatred still impressed +a threatening expression. + +“Not crush that accursed race?” murmured he; “abandon my purpose at the +moment of its accomplishment? Impossible, madame, impossible!” + +“Edmond,” said the poor mother, who tried every means, “when I call you +Edmond, why do you not call me Mercédès?” + +“Mercédès!” repeated Monte Cristo; “Mercédès! Well yes, you are right; +that name has still its charms, and this is the first time for a long +period that I have pronounced it so distinctly. Oh, Mercédès, I have +uttered your name with the sigh of melancholy, with the groan of +sorrow, with the last effort of despair; I have uttered it when frozen +with cold, crouched on the straw in my dungeon; I have uttered it, +consumed with heat, rolling on the stone floor of my prison. Mercédès, +I must revenge myself, for I suffered fourteen years,—fourteen years I +wept, I cursed; now I tell you, Mercédès, I must revenge myself.” + +The count, fearing to yield to the entreaties of her he had so ardently +loved, called his sufferings to the assistance of his hatred. + +“Revenge yourself, then, Edmond,” cried the poor mother; “but let your +vengeance fall on the culprits,—on him, on me, but not on my son!” + +“It is written in the good book,” said Monte Cristo, “that the sins of +the fathers shall fall upon their children to the third and fourth +generation. Since God himself dictated those words to his prophet, why +should I seek to make myself better than God?” + +“Edmond,” continued Mercédès, with her arms extended towards the count, +“since I first knew you, I have adored your name, have respected your +memory. Edmond, my friend, do not compel me to tarnish that noble and +pure image reflected incessantly on the mirror of my heart. Edmond, if +you knew all the prayers I have addressed to God for you while I +thought you were living and since I have thought you must be dead! Yes, +dead, alas! I imagined your dead body buried at the foot of some gloomy +tower, or cast to the bottom of a pit by hateful jailers, and I wept! +What could I do for you, Edmond, besides pray and weep? Listen; for ten +years I dreamed each night the same dream. I had been told that you had +endeavored to escape; that you had taken the place of another prisoner; +that you had slipped into the winding sheet of a dead body; that you +had been thrown alive from the top of the Château d’If, and that the +cry you uttered as you dashed upon the rocks first revealed to your +jailers that they were your murderers. Well, Edmond, I swear to you, by +the head of that son for whom I entreat your pity,—Edmond, for ten +years I saw every night every detail of that frightful tragedy, and for +ten years I heard every night the cry which awoke me, shuddering and +cold. And I, too, Edmond—oh! believe me—guilty as I was—oh, yes, I, +too, have suffered much!” + +“Have you known what it is to have your father starve to death in your +absence?” cried Monte Cristo, thrusting his hands into his hair; “have +you seen the woman you loved giving her hand to your rival, while you +were perishing at the bottom of a dungeon?” + +“No,” interrupted Mercédès, “but I have seen him whom I loved on the +point of murdering my son.” + +Mercédès uttered these words with such deep anguish, with an accent of +such intense despair, that Monte Cristo could not restrain a sob. The +lion was daunted; the avenger was conquered. + +“What do you ask of me?” said he,—“your son’s life? Well, he shall +live!” + +Mercédès uttered a cry which made the tears start from Monte Cristo’s +eyes; but these tears disappeared almost instantaneously, for, +doubtless, God had sent some angel to collect them—far more precious +were they in his eyes than the richest pearls of Guzerat and Ophir. + +“Oh,” said she, seizing the count’s hand and raising it to her lips; +“oh, thank you, thank you, Edmond! Now you are exactly what I dreamt +you were,—the man I always loved. Oh, now I may say so!” + +“So much the better,” replied Monte Cristo; “as that poor Edmond will +not have long to be loved by you. Death is about to return to the tomb, +the phantom to retire in darkness.” + +“What do you say, Edmond?” + +“I say, since you command me, Mercédès, I must die.” + +“Die? and why so? Who talks of dying? Whence have you these ideas of +death?” + +“You do not suppose that, publicly outraged in the face of a whole +theatre, in the presence of your friends and those of your +son—challenged by a boy who will glory in my forgiveness as if it were +a victory—you do not suppose that I can for one moment wish to live. +What I most loved after you, Mercédès, was myself, my dignity, and that +strength which rendered me superior to other men; that strength was my +life. With one word you have crushed it, and I die.” + +“But the duel will not take place, Edmond, since you forgive?” + +“It will take place,” said Monte Cristo, in a most solemn tone; “but +instead of your son’s blood to stain the ground, mine will flow.” + +Mercédès shrieked, and sprang towards Monte Cristo, but, suddenly +stopping, “Edmond,” said she, “there is a God above us, since you live +and since I have seen you again; I trust to him from my heart. While +waiting his assistance I trust to your word; you have said that my son +should live, have you not?” + +“Yes, madame, he shall live,” said Monte Cristo, surprised that without +more emotion Mercédès had accepted the heroic sacrifice he made for +her. Mercédès extended her hand to the count. + +“Edmond,” said she, and her eyes were wet with tears while looking at +him to whom she spoke, “how noble it is of you, how great the action +you have just performed, how sublime to have taken pity on a poor woman +who appealed to you with every chance against her, Alas, I am grown old +with grief more than with years, and cannot now remind my Edmond by a +smile, or by a look, of that Mercédès whom he once spent so many hours +in contemplating. Ah, believe me, Edmond, as I told you, I too have +suffered much; I repeat, it is melancholy to pass one’s life without +having one joy to recall, without preserving a single hope; but that +proves that all is not yet over. No, it is not finished; I feel it by +what remains in my heart. Oh, I repeat it, Edmond; what you have just +done is beautiful—it is grand; it is sublime.” + +“Do you say so now, Mercédès?—then what would you say if you knew the +extent of the sacrifice I make to you? Suppose that the Supreme Being, +after having created the world and fertilized chaos, had paused in the +work to spare an angel the tears that might one day flow for mortal +sins from her immortal eyes; suppose that when everything was in +readiness and the moment had come for God to look upon his work and see +that it was good—suppose he had snuffed out the sun and tossed the +world back into eternal night—then—even then, Mercédès, you could not +imagine what I lose in sacrificing my life at this moment.” + +Mercédès looked at the count in a way which expressed at the same time +her astonishment, her admiration, and her gratitude. Monte Cristo +pressed his forehead on his burning hands, as if his brain could no +longer bear alone the weight of its thoughts. + +“Edmond,” said Mercédès, “I have but one word more to say to you.” + +The count smiled bitterly. + +“Edmond,” continued she, “you will see that if my face is pale, if my +eyes are dull, if my beauty is gone; if Mercédès, in short, no longer +resembles her former self in her features, you will see that her heart +is still the same. Adieu, then, Edmond; I have nothing more to ask of +heaven—I have seen you again, and have found you as noble and as great +as formerly you were. Adieu, Edmond, adieu, and thank you.” + +But the count did not answer. Mercédès opened the door of the study and +had disappeared before he had recovered from the painful and profound +reverie into which his thwarted vengeance had plunged him. + +The clock of the Invalides struck one when the carriage which conveyed +Madame de Morcerf rolled away on the pavement of the Champs-Élysées, +and made Monte Cristo raise his head. + +“What a fool I was,” said he, “not to tear my heart out on the day when +I resolved to avenge myself!” + + + + Chapter 90. The Meeting + +After Mercédès had left Monte Cristo, he fell into profound gloom. +Around him and within him the flight of thought seemed to have stopped; +his energetic mind slumbered, as the body does after extreme fatigue. + +“What?” said he to himself, while the lamp and the wax lights were +nearly burnt out, and the servants were waiting impatiently in the +anteroom; “what? this edifice which I have been so long preparing, +which I have reared with so much care and toil, is to be crushed by a +single touch, a word, a breath! Yes, this self, of whom I thought so +much, of whom I was so proud, who had appeared so worthless in the +dungeons of the Château d’If, and whom I had succeeded in making so +great, will be but a lump of clay tomorrow. Alas, it is not the death +of the body I regret; for is not the destruction of the vital +principle, the repose to which everything is tending, to which every +unhappy being aspires,—is not this the repose of matter after which I +so long sighed, and which I was seeking to attain by the painful +process of starvation when Faria appeared in my dungeon? What is death +for me? One step farther into rest,—two, perhaps, into silence. No, it +is not existence, then, that I regret, but the ruin of projects so +slowly carried out, so laboriously framed. Providence is now opposed to +them, when I most thought it would be propitious. It is not God’s will +that they should be accomplished. This burden, almost as heavy as a +world, which I had raised, and I had thought to bear to the end, was +too great for my strength, and I was compelled to lay it down in the +middle of my career. Oh, shall I then, again become a fatalist, whom +fourteen years of despair and ten of hope had rendered a believer in +Providence? + +“And all this—all this, because my heart, which I thought dead, was +only sleeping; because it has awakened and has begun to beat again, +because I have yielded to the pain of the emotion excited in my breast +by a woman’s voice. + +“Yet,” continued the count, becoming each moment more absorbed in the +anticipation of the dreadful sacrifice for the morrow, which Mercédès +had accepted, “yet, it is impossible that so noble-minded a woman +should thus through selfishness consent to my death when I am in the +prime of life and strength; it is impossible that she can carry to such +a point maternal love, or rather delirium. There are virtues which +become crimes by exaggeration. No, she must have conceived some +pathetic scene; she will come and throw herself between us; and what +would be sublime here will there appear ridiculous.” + +The blush of pride mounted to the count’s forehead as this thought +passed through his mind. + +“Ridiculous?” repeated he; “and the ridicule will fall on me. I +ridiculous? No, I would rather die.” + +By thus exaggerating to his own mind the anticipated ill-fortune of the +next day, to which he had condemned himself by promising Mercédès to +spare her son, the count at last exclaimed: + +“Folly, folly, folly!—to carry generosity so far as to put myself up as +a mark for that young man to aim at. He will never believe that my +death was suicide; and yet it is important for the honor of my +memory,—and this surely is not vanity, but a justifiable pride,—it is +important the world should know that I have consented, by my free will, +to stop my arm, already raised to strike, and that with the arm which +has been so powerful against others I have struck myself. It must be; +it shall be.” + +Seizing a pen, he drew a paper from a secret drawer in his desk, and +wrote at the bottom of the document (which was no other than his will, +made since his arrival in Paris) a sort of codicil, clearly explaining +the nature of his death. + +“I do this, Oh, my God,” said he, with his eyes raised to heaven, “as +much for thy honor as for mine. I have during ten years considered +myself the agent of thy vengeance, and other wretches, like Morcerf, +Danglars, Villefort, even Morcerf himself, must not imagine that chance +has freed them from their enemy. Let them know, on the contrary, that +their punishment, which had been decreed by Providence, is only delayed +by my present determination, and although they escape it in this world, +it awaits them in another, and that they are only exchanging time for +eternity.” + +While he was thus agitated by gloomy uncertainties,—wretched waking +dreams of grief,—the first rays of morning pierced his windows, and +shone upon the pale blue paper on which he had just inscribed his +justification of Providence. + +It was just five o’clock in the morning when a slight noise like a +stifled sigh reached his ear. He turned his head, looked around him, +and saw no one; but the sound was repeated distinctly enough to +convince him of its reality. + +He arose, and quietly opening the door of the drawing-room, saw Haydée, +who had fallen on a chair, with her arms hanging down and her beautiful +head thrown back. She had been standing at the door, to prevent his +going out without seeing her, until sleep, which the young cannot +resist, had overpowered her frame, wearied as she was with watching. +The noise of the door did not awaken her, and Monte Cristo gazed at her +with affectionate regret. + +“She remembered that she had a son,” said he; “and I forgot I had a +daughter.” Then, shaking his head sorrowfully, “Poor Haydée,” said he; +“she wished to see me, to speak to me; she has feared or guessed +something. Oh, I cannot go without taking leave of her; I cannot die +without confiding her to someone.” + +He quietly regained his seat, and wrote under the other lines: + +“I bequeath to Maximilian Morrel, captain of Spahis,—and son of my +former patron, Pierre Morrel, shipowner at Marseilles,—the sum of +twenty millions, a part of which may be offered to his sister Julie and +brother-in-law Emmanuel, if he does not fear this increase of fortune +may mar their happiness. These twenty millions are concealed in my +grotto at Monte Cristo, of which Bertuccio knows the secret. If his +heart is free, and he will marry Haydée, the daughter of Ali Pasha of +Yanina, whom I have brought up with the love of a father, and who has +shown the love and tenderness of a daughter for me, he will thus +accomplish my last wish. This will has already constituted Haydée +heiress of the rest of my fortune, consisting of lands, funds in +England, Austria, and Holland, furniture in my different palaces and +houses, and which without the twenty millions and the legacies to my +servants, may still amount to sixty millions.” + + +40241m + + + +He was finishing the last line when a cry behind him made him start, +and the pen fell from his hand. + +“Haydée,” said he, “did you read it?” + +“Oh, my lord,” said she, “why are you writing thus at such an hour? Why +are you bequeathing all your fortune to me? Are you going to leave me?” + +“I am going on a journey, dear child,” said Monte Cristo, with an +expression of infinite tenderness and melancholy; “and if any +misfortune should happen to me——” + +The count stopped. + +“Well?” asked the young girl, with an authoritative tone the count had +never observed before, and which startled him. + +“Well, if any misfortune happen to me,” replied Monte Cristo, “I wish +my daughter to be happy.” Haydée smiled sorrowfully, and shook her +head. + +“Do you think of dying, my lord?” said she. + +“The wise man, my child, has said, ‘It is good to think of death.’” + +“Well, if you die,” said she, “bequeath your fortune to others, for if +you die I shall require nothing;” and, taking the paper, she tore it in +four pieces, and threw it into the middle of the room. Then, the effort +having exhausted her strength, she fell, not asleep this time, but +fainting on the floor. + +The count leaned over her and raised her in his arms; and seeing that +sweet pale face, those lovely eyes closed, that beautiful form +motionless and to all appearance lifeless, the idea occurred to him for +the first time, that perhaps she loved him otherwise than as a daughter +loves a father. + +“Alas,” murmured he, with intense suffering, “I might, then, have been +happy yet.” + +Then he carried Haydée to her room, resigned her to the care of her +attendants, and returning to his study, which he shut quickly this +time, he again copied the destroyed will. As he was finishing, the +sound of a cabriolet entering the yard was heard. Monte Cristo +approached the window, and saw Maximilian and Emmanuel alight. “Good,” +said he; “it was time,”—and he sealed his will with three seals. + +A moment afterwards he heard a noise in the drawing-room, and went to +open the door himself. Morrel was there; he had come twenty minutes +before the time appointed. + +“I am perhaps come too soon, count,” said he, “but I frankly +acknowledge that I have not closed my eyes all night, nor has anyone in +my house. I need to see you strong in your courageous assurance, to +recover myself.” + +Monte Cristo could not resist this proof of affection; he not only +extended his hand to the young man, but flew to him with open arms. + +“Morrel,” said he, “it is a happy day for me, to feel that I am beloved +by such a man as you. Good-morning, Emmanuel; you will come with me +then, Maximilian?” + +“Did you doubt it?” said the young captain. + +“But if I were wrong——” + +“I watched you during the whole scene of that challenge yesterday; I +have been thinking of your firmness all night, and I said to myself +that justice must be on your side, or man’s countenance is no longer to +be relied on.” + +“But, Morrel, Albert is your friend?” + +“Simply an acquaintance, sir.” + +“You met on the same day you first saw me?” + +“Yes, that is true; but I should not have recollected it if you had not +reminded me.” + +“Thank you, Morrel.” Then ringing the bell once, “Look.” said he to +Ali, who came immediately, “take that to my solicitor. It is my will, +Morrel. When I am dead, you will go and examine it.” + +“What?” said Morrel, “you dead?” + +“Yes; must I not be prepared for everything, dear friend? But what did +you do yesterday after you left me?” + +“I went to Tortoni’s, where, as I expected, I found Beauchamp and +Château-Renaud. I own I was seeking them.” + +“Why, when all was arranged?” + +“Listen, count; the affair is serious and unavoidable.” + +“Did you doubt it!” + +“No; the offence was public, and everyone is already talking of it.” + +“Well?” + +“Well, I hoped to get an exchange of arms,—to substitute the sword for +the pistol; the pistol is blind.” + +“Have you succeeded?” asked Monte Cristo quickly, with an imperceptible +gleam of hope. + +“No; for your skill with the sword is so well known.” + +“Ah?—who has betrayed me?” + +“The skilful swordsman whom you have conquered.” + +“And you failed?” + +“They positively refused.” + +“Morrel,” said the count, “have you ever seen me fire a pistol?” + +“Never.” + +“Well, we have time; look.” Monte Cristo took the pistols he held in +his hand when Mercédès entered, and fixing an ace of clubs against the +iron plate, with four shots he successively shot off the four sides of +the club. At each shot Morrel turned pale. He examined the bullets with +which Monte Cristo performed this dexterous feat, and saw that they +were no larger than buckshot. + +“It is astonishing,” said he. “Look, Emmanuel.” Then turning towards +Monte Cristo, “Count,” said he, “in the name of all that is dear to +you, I entreat you not to kill Albert!—the unhappy youth has a mother.” + +“You are right,” said Monte Cristo; “and I have none.” These words were +uttered in a tone which made Morrel shudder. + +“You are the offended party, count.” + +“Doubtless; what does that imply?” + +“That you will fire first.” + +“I fire first?” + +“Oh, I obtained, or rather claimed that; we had conceded enough for +them to yield us that.” + +“And at what distance?” + +“Twenty paces.” A smile of terrible import passed over the count’s +lips. + +“Morrel,” said he, “do not forget what you have just seen.” + +“The only chance for Albert’s safety, then, will arise from your +emotion.” + +“I suffer from emotion?” said Monte Cristo. + +“Or from your generosity, my friend; to so good a marksman as you are, +I may say what would appear absurd to another.” + +“What is that?” + +“Break his arm—wound him—but do not kill him.” + +“I will tell you, Morrel,” said the count, “that I do not need +entreating to spare the life of M. de Morcerf; he shall be so well +spared, that he will return quietly with his two friends, while I——” + +“And you?” + +“That will be another thing; I shall be brought home.” + +“No, no,” cried Maximilian, quite unable to restrain his feelings. + +“As I told you, my dear Morrel, M. de Morcerf will kill me.” + +Morrel looked at him in utter amazement. “But what has happened, then, +since last evening, count?” + +“The same thing that happened to Brutus the night before the battle of +Philippi; I have seen a ghost.” + +“And that ghost——” + +“Told me, Morrel, that I had lived long enough.” + +Maximilian and Emmanuel looked at each other. Monte Cristo drew out his +watch. “Let us go,” said he; “it is five minutes past seven, and the +appointment was for eight o’clock.” + +A carriage was in readiness at the door. Monte Cristo stepped into it +with his two friends. He had stopped a moment in the passage to listen +at a door, and Maximilian and Emmanuel, who had considerately passed +forward a few steps, thought they heard him answer by a sigh to a sob +from within. As the clock struck eight they drove up to the place of +meeting. + +“We are first,” said Morrel, looking out of the window. + +“Excuse me, sir,” said Baptistin, who had followed his master with +indescribable terror, “but I think I see a carriage down there under +the trees.” + +Monte Cristo sprang lightly from the carriage, and offered his hand to +assist Emmanuel and Maximilian. The latter retained the count’s hand +between his. + +“I like,” said he, “to feel a hand like this, when its owner relies on +the goodness of his cause.” + +“It seems to me,” said Emmanuel, “that I see two young men down there, +who are evidently, waiting.” + +Monte Cristo drew Morrel a step or two behind his brother-in-law. + +“Maximilian,” said he, “are your affections disengaged?” Morrel looked +at Monte Cristo with astonishment. “I do not seek your confidence, my +dear friend. I only ask you a simple question; answer it;—that is all I +require.” + +“I love a young girl, count.” + +“Do you love her much?” + +“More than my life.” + +“Another hope defeated!” said the count. Then, with a sigh, “Poor +Haydée!” murmured he. + +“To tell the truth, count, if I knew less of you, I should think that +you were less brave than you are.” + +“Because I sigh when thinking of someone I am leaving? Come, Morrel, it +is not like a soldier to be so bad a judge of courage. Do I regret +life? What is it to me, who have passed twenty years between life and +death? Moreover, do not alarm yourself, Morrel; this weakness, if it is +such, is betrayed to you alone. I know the world is a drawing-room, +from which we must retire politely and honestly; that is, with a bow, +and our debts of honor paid.” + +“That is to the purpose. Have you brought your arms?” + +“I?—what for? I hope these gentlemen have theirs.” + +“I will inquire,” said Morrel. + +“Do; but make no treaty—you understand me?” + +“You need not fear.” Morrel advanced towards Beauchamp and +Château-Renaud, who, seeing his intention, came to meet him. The three +young men bowed to each other courteously, if not affably. + +“Excuse me, gentlemen,” said Morrel, “but I do not see M. de Morcerf.” + +“He sent us word this morning,” replied Château-Renaud, “that he would +meet us on the ground.” + +“Ah,” said Morrel. Beauchamp pulled out his watch. + +“It is only five minutes past eight,” said he to Morrel; “there is not +much time lost yet.” + +“Oh, I made no allusion of that kind,” replied Morrel. + +“There is a carriage coming,” said Château-Renaud. It advanced rapidly +along one of the avenues leading towards the open space where they were +assembled. + +“You are doubtless provided with pistols, gentlemen? M. de Monte Cristo +yields his right of using his.” + +“We had anticipated this kindness on the part of the count,” said +Beauchamp, “and I have brought some weapons which I bought eight or ten +days since, thinking to want them on a similar occasion. They are quite +new, and have not yet been used. Will you examine them.” + +“Oh, M. Beauchamp, if you assure me that M. de Morcerf does not know +these pistols, you may readily believe that your word will be quite +sufficient.” + +“Gentlemen,” said Château-Renaud, “it is not Morcerf coming in that +carriage;—faith, it is Franz and Debray!” + +The two young men he announced were indeed approaching. “What chance +brings you here, gentlemen?” said Château-Renaud, shaking hands with +each of them. + +“Because,” said Debray, “Albert sent this morning to request us to +come.” Beauchamp and Château-Renaud exchanged looks of astonishment. “I +think I understand his reason,” said Morrel. + +“What is it?” + +“Yesterday afternoon I received a letter from M. de Morcerf, begging me +to attend the Opera.” + +“And I,” said Debray. + +“And I also,” said Franz. + +“And we, too,” added Beauchamp and Château-Renaud. + +“Having wished you all to witness the challenge, he now wishes you to +be present at the combat.” + +“Exactly so,” said the young men; “you have probably guessed right.” + +“But, after all these arrangements, he does not come himself,” said +Château-Renaud. “Albert is ten minutes after time.” + +“There he comes,” said Beauchamp, “on horseback, at full gallop, +followed by a servant.” + +“How imprudent,” said Château-Renaud, “to come on horseback to fight a +duel with pistols, after all the instructions I had given him.” + +“And besides,” said Beauchamp, “with a collar above his cravat, an open +coat and white waistcoat! Why has he not painted a spot upon his +heart?—it would have been more simple.” + +Meanwhile Albert had arrived within ten paces of the group formed by +the five young men. He jumped from his horse, threw the bridle on his +servant’s arms, and joined them. He was pale, and his eyes were red and +swollen; it was evident that he had not slept. A shade of melancholy +gravity overspread his countenance, which was not natural to him. + +“I thank you, gentlemen,” said he, “for having complied with my +request; I feel extremely grateful for this mark of friendship.” Morrel +had stepped back as Morcerf approached, and remained at a short +distance. “And to you also, M. Morrel, my thanks are due. Come, there +cannot be too many.” + +40248m + + + +“Sir,” said Maximilian, “you are not perhaps aware that I am M. de +Monte Cristo’s friend?” + +“I was not sure, but I thought it might be so. So much the better; the +more honorable men there are here the better I shall be satisfied.” + +“M. Morrel,” said Château-Renaud, “will you apprise the Count of Monte +Cristo that M. de Morcerf is arrived, and we are at his disposal?” + +Morrel was preparing to fulfil his commission. Beauchamp had meanwhile +drawn the box of pistols from the carriage. + +“Stop, gentlemen,” said Albert; “I have two words to say to the Count +of Monte Cristo.” + +“In private?” asked Morrel. + +“No, sir; before all who are here.” + +Albert’s witnesses looked at each other. Franz and Debray exchanged +some words in a whisper, and Morrel, rejoiced at this unexpected +incident, went to fetch the count, who was walking in a retired path +with Emmanuel. + +“What does he want with me?” said Monte Cristo. + +“I do not know, but he wishes to speak to you.” + +“Ah?” said Monte Cristo, “I trust he is not going to tempt me by some +fresh insult!” + +“I do not think that such is his intention,” said Morrel. + +The count advanced, accompanied by Maximilian and Emmanuel. His calm +and serene look formed a singular contrast to Albert’s grief-stricken +face, who approached also, followed by the other four young men. + +When at three paces distant from each other, Albert and the count +stopped. + +“Approach, gentlemen,” said Albert; “I wish you not to lose one word of +what I am about to have the honor of saying to the Count of Monte +Cristo, for it must be repeated by you to all who will listen to it, +strange as it may appear to you.” + +“Proceed, sir,” said the count. + +“Sir,” said Albert, at first with a tremulous voice, but which +gradually became firmer, “I reproached you with exposing the conduct of +M. de Morcerf in Epirus, for guilty as I knew he was, I thought you had +no right to punish him; but I have since learned that you had that +right. It is not Fernand Mondego’s treachery towards Ali Pasha which +induces me so readily to excuse you, but the treachery of the fisherman +Fernand towards you, and the almost unheard-of miseries which were its +consequences; and I say, and proclaim it publicly, that you were +justified in revenging yourself on my father, and I, his son, thank you +for not using greater severity.” + +Had a thunderbolt fallen in the midst of the spectators of this +unexpected scene, it would not have surprised them more than did +Albert’s declaration. As for Monte Cristo, his eyes slowly rose towards +heaven with an expression of infinite gratitude. He could not +understand how Albert’s fiery nature, of which he had seen so much +among the Roman bandits, had suddenly stooped to this humiliation. He +recognized the influence of Mercédès, and saw why her noble heart had +not opposed the sacrifice she knew beforehand would be useless. + +“Now, sir,” said Albert, “if you think my apology sufficient, pray give +me your hand. Next to the merit of infallibility which you appear to +possess, I rank that of candidly acknowledging a fault. But this +confession concerns me only. I acted well as a man, but you have acted +better than man. An angel alone could have saved one of us from +death—that angel came from heaven, if not to make us friends (which, +alas, fatality renders impossible), at least to make us esteem each +other.” + +Monte Cristo, with moistened eye, heaving breast, and lips half open, +extended to Albert a hand which the latter pressed with a sentiment +resembling respectful fear. + +“Gentlemen,” said he, “M. de Monte Cristo receives my apology. I had +acted hastily towards him. Hasty actions are generally bad ones. Now my +fault is repaired. I hope the world will not call me cowardly for +acting as my conscience dictated. But if anyone should entertain a +false opinion of me,” added he, drawing himself up as if he would +challenge both friends and enemies, “I shall endeavor to correct his +mistake.” + +“What happened during the night?” asked Beauchamp of Château-Renaud; +“we appear to make a very sorry figure here.” + +“In truth, what Albert has just done is either very despicable or very +noble,” replied the baron. + +“What can it mean?” said Debray to Franz. + +“The Count of Monte Cristo acts dishonorably to M. de Morcerf, and is +justified by his son! Had I ten Yaninas in my family, I should only +consider myself the more bound to fight ten times.” + +As for Monte Cristo, his head was bent down, his arms were powerless. +Bowing under the weight of twenty-four years’ reminiscences, he thought +not of Albert, of Beauchamp, of Château-Renaud, or of any of that +group; but he thought of that courageous woman who had come to plead +for her son’s life, to whom he had offered his, and who had now saved +it by the revelation of a dreadful family secret, capable of destroying +forever in that young man’s heart every feeling of filial piety. + +“Providence still,” murmured he; “now only am I fully convinced of +being the emissary of God!” + + + + Chapter 91. Mother and Son + +The Count of Monte Cristo bowed to the five young men with a melancholy +and dignified smile, and got into his carriage with Maximilian and +Emmanuel. Albert, Beauchamp, and Château-Renaud remained alone. Albert +looked at his two friends, not timidly, but in a way that appeared to +ask their opinion of what he had just done. + +“Indeed, my dear friend,” said Beauchamp first, who had either the most +feeling or the least dissimulation, “allow me to congratulate you; this +is a very unhoped-for conclusion of a very disagreeable affair.” + +Albert remained silent and wrapped in thought. Château-Renaud contented +himself with tapping his boot with his flexible cane. + +“Are we not going?” said he, after this embarrassing silence. + +“When you please,” replied Beauchamp; “allow me only to compliment M. +de Morcerf, who has given proof today of rare chivalric generosity.” + +“Oh, yes,” said Château-Renaud. + +“It is magnificent,” continued Beauchamp, “to be able to exercise so +much self-control!” + +“Assuredly; as for me, I should have been incapable of it,” said +Château-Renaud, with most significant coolness. + +“Gentlemen,” interrupted Albert, “I think you did not understand that +something very serious had passed between M. de Monte Cristo and +myself.” + +“Possibly, possibly,” said Beauchamp immediately; “but every simpleton +would not be able to understand your heroism, and sooner or later you +will find yourself compelled to explain it to them more energetically +than would be convenient to your bodily health and the duration of your +life. May I give you a friendly counsel? Set out for Naples, the Hague, +or St. Petersburg—calm countries, where the point of honor is better +understood than among our hot-headed Parisians. Seek quietude and +oblivion, so that you may return peaceably to France after a few years. +Am I not right, M. de Château-Renaud?” + +40252m + + + +“That is quite my opinion,” said the gentleman; “nothing induces +serious duels so much as a duel forsworn.” + +“Thank you, gentlemen,” replied Albert, with a smile of indifference; +“I shall follow your advice—not because you give it, but because I had +before intended to quit France. I thank you equally for the service you +have rendered me in being my seconds. It is deeply engraved on my +heart, and, after what you have just said, I remember that only.” + +Château-Renaud and Beauchamp looked at each other; the impression was +the same on both of them, and the tone in which Morcerf had just +expressed his thanks was so determined that the position would have +become embarrassing for all if the conversation had continued. + +“Good-bye, Albert,” said Beauchamp suddenly, carelessly extending his +hand to the young man. The latter did not appear to arouse from his +lethargy; in fact, he did not notice the offered hand. + +“Good-bye,” said Château-Renaud in his turn, keeping his little cane in +his left hand, and saluting with his right. + +Albert’s lips scarcely whispered “Good-bye,” but his look was more +explicit; it expressed a whole poem of restrained anger, proud disdain, +and generous indignation. He preserved his melancholy and motionless +position for some time after his two friends had regained their +carriage; then suddenly unfastening his horse from the little tree to +which his servant had tied it, he mounted and galloped off in the +direction of Paris. + +In a quarter of an hour he was entering the house in the Rue du Helder. +As he alighted, he thought he saw his father’s pale face behind the +curtain of the count’s bedroom. Albert turned away his head with a +sigh, and went to his own apartments. He cast one lingering look on all +the luxuries which had rendered life so easy and so happy since his +infancy; he looked at the pictures, whose faces seemed to smile, and +the landscapes, which appeared painted in brighter colors. Then he took +away his mother’s portrait, with its oaken frame, leaving the gilt +frame from which he took it black and empty. Then he arranged all his +beautiful Turkish arms, his fine English guns, his Japanese china, his +cups mounted in silver, his artistic bronzes by Feuchères or Barye; +examined the cupboards, and placed the key in each; threw into a drawer +of his secretaire, which he left open, all the pocket-money he had +about him, and with it the thousand fancy jewels from his vases and his +jewel-boxes; then he made an exact inventory of everything, and placed +it in the most conspicuous part of the table, after putting aside the +books and papers which had collected there. + +At the beginning of this work, his servant, notwithstanding orders to +the contrary, came to his room. + +“What do you want?” asked he, with a more sorrowful than angry tone. + +“Pardon me, sir,” replied the valet; “you had forbidden me to disturb +you, but the Count of Morcerf has called me.” + +“Well!” said Albert. + +“I did not like to go to him without first seeing you.” + +“Why?” + +“Because the count is doubtless aware that I accompanied you to the +meeting this morning.” + +40254m + + + +“It is probable,” said Albert. + +“And since he has sent for me, it is doubtless to question me on what +happened there. What must I answer?” + +“The truth.” + +“Then I shall say the duel did not take place?” + +“You will say I apologized to the Count of Monte Cristo. Go.” + +The valet bowed and retired, and Albert returned to his inventory. As +he was finishing this work, the sound of horses prancing in the yard, +and the wheels of a carriage shaking his window, attracted his +attention. He approached the window, and saw his father get into it, +and drive away. The door was scarcely closed when Albert bent his steps +to his mother’s room; and, no one being there to announce him, he +advanced to her bedchamber, and distressed by what he saw and guessed, +stopped for one moment at the door. + +As if the same idea had animated these two beings, Mercédès was doing +the same in her apartments that he had just done in his. Everything was +in order,—laces, dresses, jewels, linen, money, all were arranged in +the drawers, and the countess was carefully collecting the keys. Albert +saw all these preparations and understood them, and exclaiming, “My +mother!” he threw his arms around her neck. + +The artist who could have depicted the expression of these two +countenances would certainly have made of them a beautiful picture. All +these proofs of an energetic resolution, which Albert did not fear on +his own account, alarmed him for his mother. “What are you doing?” +asked he. + +“What were you doing?” replied she. + +“Oh, my mother!” exclaimed Albert, so overcome he could scarcely speak; +“it is not the same with you and me—you cannot have made the same +resolution I have, for I have come to warn you that I bid adieu to your +house, and—and to you.” + +“I also,” replied Mercédès, “am going, and I acknowledge I had depended +on your accompanying me; have I deceived myself?” + +“Mother,” said Albert with firmness. “I cannot make you share the fate +I have planned for myself. I must live henceforth without rank and +fortune, and to begin this hard apprenticeship I must borrow from a +friend the loaf I shall eat until I have earned one. So, my dear +mother, I am going at once to ask Franz to lend me the small sum I +shall require to supply my present wants.” + +“You, my poor child, suffer poverty and hunger? Oh, do not say so; it +will break my resolutions.” + +“But not mine, mother,” replied Albert. “I am young and strong; I +believe I am courageous, and since yesterday I have learned the power +of will. Alas, my dear mother, some have suffered so much, and yet +live, and have raised a new fortune on the ruin of all the promises of +happiness which heaven had made them—on the fragments of all the hope +which God had given them! I have seen that, mother; I know that from +the gulf in which their enemies have plunged them they have risen with +so much vigor and glory that in their turn they have ruled their former +conquerors, and have punished them. No, mother; from this moment I have +done with the past, and accept nothing from it—not even a name, because +you can understand that your son cannot bear the name of a man who +ought to blush for it before another.” + +“Albert, my child,” said Mercédès, “if I had a stronger heart, that is +the counsel I would have given you; your conscience has spoken when my +voice became too weak; listen to its dictates. You had friends, Albert; +break off their acquaintance. But do not despair; you have life before +you, my dear Albert, for you are yet scarcely twenty-two years old; and +as a pure heart like yours wants a spotless name, take my father’s—it +was Herrera. I am sure, my dear Albert, whatever may be your career, +you will soon render that name illustrious. Then, my son, return to the +world still more brilliant because of your former sorrows; and if I am +wrong, still let me cherish these hopes, for I have no future to look +forward to. For me the grave opens when I pass the threshold of this +house.” + +“I will fulfil all your wishes, my dear mother,” said the young man. +“Yes, I share your hopes; the anger of Heaven will not pursue us, since +you are pure and I am innocent. But, since our resolution is formed, +let us act promptly. M. de Morcerf went out about half an hour ago; the +opportunity is favorable to avoid an explanation.” + +“I am ready, my son,” said Mercédès. + +Albert ran to fetch a carriage. He recollected that there was a small +furnished house to let in the Rue des Saints-Pères, where his mother +would find a humble but decent lodging, and thither he intended +conducting the countess. As the carriage stopped at the door, and +Albert was alighting, a man approached and gave him a letter. + +Albert recognized the bearer. “From the count,” said Bertuccio. Albert +took the letter, opened, and read it, then looked round for Bertuccio, +but he was gone. + +He returned to Mercédès with tears in his eyes and heaving breast, and +without uttering a word he gave her the letter. Mercédès read: + +“Albert,—While showing you that I have discovered your plans, I hope +also to convince you of my delicacy. You are free, you leave the +count’s house, and you take your mother to your home; but reflect, +Albert, you owe her more than your poor noble heart can pay her. Keep +the struggle for yourself, bear all the suffering, but spare her the +trial of poverty which must accompany your first efforts; for she +deserves not even the shadow of the misfortune which has this day +fallen on her, and Providence is not willing that the innocent should +suffer for the guilty. I know you are going to leave the Rue du Helder +without taking anything with you. Do not seek to know how I discovered +it; I know it—that is sufficient. + +“Now, listen, Albert. Twenty-four years ago I returned, proud and +joyful, to my country. I had a betrothed, Albert, a lovely girl whom I +adored, and I was bringing to my betrothed a hundred and fifty louis, +painfully amassed by ceaseless toil. This money was for her; I destined +it for her, and, knowing the treachery of the sea I buried our treasure +in the little garden of the house my father lived in at Marseilles, on +the Allées de Meilhan. Your mother, Albert, knows that poor house well. +A short time since I passed through Marseilles, and went to see the old +place, which revived so many painful recollections; and in the evening +I took a spade and dug in the corner of the garden where I had +concealed my treasure. The iron box was there—no one had touched +it—under a beautiful fig-tree my father had planted the day I was born, +which overshadowed the spot. Well, Albert, this money, which was +formerly designed to promote the comfort and tranquillity of the woman +I adored, may now, through strange and painful circumstances, be +devoted to the same purpose. + +“Oh, feel for me, who could offer millions to that poor woman, but who +return her only the piece of black bread forgotten under my poor roof +since the day I was torn from her I loved. You are a generous man, +Albert, but perhaps you may be blinded by pride or resentment; if you +refuse me, if you ask another for what I have a right to offer you, I +will say it is ungenerous of you to refuse the life of your mother at +the hands of a man whose father was allowed by your father to die in +all the horrors of poverty and despair.” + +Albert stood pale and motionless to hear what his mother would decide +after she had finished reading this letter. Mercédès turned her eyes +with an ineffable look towards heaven. + +“I accept it,” said she; “he has a right to pay the dowry, which I +shall take with me to some convent!” + +Putting the letter in her bosom, she took her son’s arm, and with a +firmer step than she even herself expected she went downstairs. + + + + Chapter 92. The Suicide + +Meanwhile Monte Cristo had also returned to town with Emmanuel and +Maximilian. Their return was cheerful. Emmanuel did not conceal his joy +at the peaceful termination of the affair, and was loud in his +expressions of delight. Morrel, in a corner of the carriage, allowed +his brother-in-law’s gayety to expend itself in words, while he felt +equal inward joy, which, however, betrayed itself only in his +countenance. + +At the Barrière du Trône they met Bertuccio, who was waiting there, +motionless as a sentinel at his post. Monte Cristo put his head out of +the window, exchanged a few words with him in a low tone, and the +steward disappeared. + +“Count,” said Emmanuel, when they were at the end of the Place Royale, +“put me down at my door, that my wife may not have a single moment of +needless anxiety on my account or yours.” + +“If it were not ridiculous to make a display of our triumph, said +Morrel, I would invite the count to our house; besides that, he +doubtless has some trembling heart to comfort. So we will take leave of +our friend, and let him hasten home.” + +“Stop a moment,” said Monte Cristo; “do not let me lose both my +companions. Return, Emmanuel, to your charming wife, and present my +best compliments to her; and do you, Morrel, accompany me to the +Champs-Élysées.” + +“Willingly,” said Maximilian; “particularly as I have business in that +quarter.” + +“Shall we wait breakfast for you?” asked Emmanuel. + +“No,” replied the young man. The door was closed, and the carriage +proceeded. “See what good fortune I brought you!” said Morrel, when he +was alone with the count. “Have you not thought so?” + +“Yes,” said Monte Cristo; “for that reason I wished to keep you near +me.” + +“It is miraculous!” continued Morrel, answering his own thoughts. + +“What?” said Monte Cristo. + +“What has just happened.” + +“Yes,” said the Count, “you are right—it is miraculous.” + +“For Albert is brave,” resumed Morrel. + +“Very brave,” said Monte Cristo; “I have seen him sleep with a sword +suspended over his head.” + +“And I know he has fought two duels,” said Morrel. “How can you +reconcile that with his conduct this morning?” + +“All owing to your influence,” replied Monte Cristo, smiling. + +“It is well for Albert he is not in the army,” said Morrel. + +“Why?” + +“An apology on the ground!” said the young captain, shaking his head. + +“Come,” said the count mildly, “do not entertain the prejudices of +ordinary men, Morrel! Acknowledge, that if Albert is brave, he cannot +be a coward; he must then have had some reason for acting as he did +this morning, and confess that his conduct is more heroic than +otherwise.” + +“Doubtless, doubtless,” said Morrel; “but I shall say, like the +Spaniard, ‘He has not been so brave today as he was yesterday.’” + +“You will breakfast with me, will you not, Morrel?” said the count, to +turn the conversation. + +“No; I must leave you at ten o’clock.” + +“Your engagement was for breakfast, then?” said the count. + +Morrel smiled, and shook his head. + +“Still you must breakfast somewhere.” + +“But if I am not hungry?” said the young man. + +“Oh,” said the count, “I only know two things which destroy the +appetite,—grief—and as I am happy to see you very cheerful, it is not +that—and love. Now after what you told me this morning of your heart, I +may believe——” + +“Well, count,” replied Morrel gayly, “I will not dispute it.” + +“But you will not make me your confidant, Maximilian?” said the count, +in a tone which showed how gladly he would have been admitted to the +secret. + +“I showed you this morning that I had a heart, did I not, count?” Monte +Cristo only answered by extending his hand to the young man. “Well,” +continued the latter, “since that heart is no longer with you in the +Bois de Vincennes, it is elsewhere, and I must go and find it.” + +“Go,” said the count deliberately; “go, dear friend, but promise me if +you meet with any obstacle to remember that I have some power in this +world, that I am happy to use that power in the behalf of those I love, +and that I love you, Morrel.” + +40260m + + + +“I will remember it,” said the young man, “as selfish children +recollect their parents when they want their aid. When I need your +assistance, and the moment arrives, I will come to you, count.” + +“Well, I rely upon your promise. Good-bye, then.” + +“Good-bye, till we meet again.” + +They had arrived in the Champs-Élysées. Monte Cristo opened the +carriage-door, Morrel sprang out on the pavement, Bertuccio was waiting +on the steps. Morrel disappeared down the Avenue de Marigny, and Monte +Cristo hastened to join Bertuccio. + +“Well?” asked he. + +“She is going to leave her house,” said the steward. + +“And her son?” + +“Florentin, his valet, thinks he is going to do the same.” + +“Come this way.” Monte Cristo took Bertuccio into his study, wrote the +letter we have seen, and gave it to the steward. “Go,” said he quickly. +“But first, let Haydée be informed that I have returned.” + +“Here I am,” said the young girl, who at the sound of the carriage had +run downstairs and whose face was radiant with joy at seeing the count +return safely. Bertuccio left. Every transport of a daughter finding a +father, all the delight of a mistress seeing an adored lover, were felt +by Haydée during the first moments of this meeting, which she had so +eagerly expected. Doubtless, although less evident, Monte Cristo’s joy +was not less intense. Joy to hearts which have suffered long is like +the dew on the ground after a long drought; both the heart and the +ground absorb that beneficent moisture falling on them, and nothing is +outwardly apparent. + +Monte Cristo was beginning to think, what he had not for a long time +dared to believe, that there were two Mercédès in the world, and he +might yet be happy. His eye, elate with happiness, was reading eagerly +the tearful gaze of Haydée, when suddenly the door opened. The count +knit his brow. + +“M. de Morcerf!” said Baptistin, as if that name sufficed for his +excuse. In fact, the count’s face brightened. + +“Which,” asked he, “the viscount or the count?” + +“The count.” + +“Oh,” exclaimed Haydée, “is it not yet over?” + +“I know not if it is finished, my beloved child,” said Monte Cristo, +taking the young girl’s hands; “but I do know you have nothing more to +fear.” + +“But it is the wretched——” + +“That man cannot injure me, Haydée,” said Monte Cristo; “it was his son +alone that there was cause to fear.” + +“And what I have suffered,” said the young girl, “you shall never know, +my lord.” + +Monte Cristo smiled. “By my father’s tomb,” said he, extending his hand +over the head of the young girl, “I swear to you, Haydée, that if any +misfortune happens, it will not be to me.” + +“I believe you, my lord, as implicitly as if God had spoken to me,” +said the young girl, presenting her forehead to him. Monte Cristo +pressed on that pure beautiful forehead a kiss which made two hearts +throb at once, the one violently, the other secretly. + +“Oh,” murmured the count, “shall I then be permitted to love again? Ask +M. de Morcerf into the drawing-room,” said he to Baptistin, while he +led the beautiful Greek girl to a private staircase. + +We must explain this visit, which although expected by Monte Cristo, is +unexpected to our readers. While Mercédès, as we have said, was making +a similar inventory of her property to Albert’s, while she was +arranging her jewels, shutting her drawers, collecting her keys, to +leave everything in perfect order, she did not perceive a pale and +sinister face at a glass door which threw light into the passage, from +which everything could be both seen and heard. He who was thus looking, +without being heard or seen, probably heard and saw all that passed in +Madame de Morcerf’s apartments. From that glass door the pale-faced man +went to the count’s bedroom and raised with a constricted hand the +curtain of a window overlooking the courtyard. He remained there ten +minutes, motionless and dumb, listening to the beating of his own +heart. For him those ten minutes were very long. It was then Albert, +returning from his meeting with the count, perceived his father +watching for his arrival behind a curtain, and turned aside. The +count’s eye expanded; he knew Albert had insulted the count dreadfully, +and that in every country in the world such an insult would lead to a +deadly duel. Albert returned safely—then the count was revenged. + +An indescribable ray of joy illumined that wretched countenance like +the last ray of the sun before it disappears behind the clouds which +bear the aspect, not of a downy couch, but of a tomb. But as we have +said, he waited in vain for his son to come to his apartment with the +account of his triumph. He easily understood why his son did not come +to see him before he went to avenge his father’s honor; but when that +was done, why did not his son come and throw himself into his arms? + +It was then, when the count could not see Albert, that he sent for his +servant, who he knew was authorized not to conceal anything from him. +Ten minutes afterwards, General Morcerf was seen on the steps in a +black coat with a military collar, black pantaloons, and black gloves. +He had apparently given previous orders, for as he reached the bottom +step his carriage came from the coach-house ready for him. The valet +threw into the carriage his military cloak, in which two swords were +wrapped, and, shutting the door, he took his seat by the side of the +coachman. The coachman stooped down for his orders. + +“To the Champs-Élysées,” said the general; “the Count of Monte +Cristo’s. Hurry!” + +The horses bounded beneath the whip; and in five minutes they stopped +before the count’s door. M. de Morcerf opened the door himself, and as +the carriage rolled away he passed up the walk, rang, and entered the +open door with his servant. + +A moment afterwards, Baptistin announced the Count of Morcerf to Monte +Cristo, and the latter, leading Haydée aside, ordered that Morcerf be +asked into the drawing-room. The general was pacing the room the third +time when, in turning, he perceived Monte Cristo at the door. + +“Ah, it is M. de Morcerf,” said Monte Cristo quietly; “I thought I had +not heard aright.” + +“Yes, it is I,” said the count, whom a frightful contraction of the +lips prevented from articulating freely. + +“May I know the cause which procures me the pleasure of seeing M. de +Morcerf so early?” + +“Had you not a meeting with my son this morning?” asked the general. + +“I had,” replied the count. + +“And I know my son had good reasons to wish to fight with you, and to +endeavor to kill you.” + +“Yes, sir, he had very good ones; but you see that in spite of them he +has not killed me, and did not even fight.” + +“Yet he considered you the cause of his father’s dishonor, the cause of +the fearful ruin which has fallen on my house.” + +“It is true, sir,” said Monte Cristo with his dreadful calmness; “a +secondary cause, but not the principal.” + +“Doubtless you made, then, some apology or explanation?” + +“I explained nothing, and it is he who apologized to me.” + +“But to what do you attribute this conduct?” + +“To the conviction, probably, that there was one more guilty than I.” + +“And who was that?” + +“His father.” + +“That may be,” said the count, turning pale; “but you know the guilty +do not like to find themselves convicted.” + +“I know it, and I expected this result.” + +“You expected my son would be a coward?” cried the count. + +“M. Albert de Morcerf is no coward!” said Monte Cristo. + +“A man who holds a sword in his hand, and sees a mortal enemy within +reach of that sword, and does not fight, is a coward! Why is he not +here that I may tell him so?” + +“Sir,” replied Monte Cristo coldly, “I did not expect that you had come +here to relate to me your little family affairs. Go and tell M. Albert +that, and he may know what to answer you.” + +“Oh, no, no,” said the general, smiling faintly, “I did not come for +that purpose; you are right. I came to tell you that I also look upon +you as my enemy. I came to tell you that I hate you instinctively; that +it seems as if I had always known you, and always hated you; and, in +short, since the young people of the present day will not fight, it +remains for us to do so. Do you think so, sir?” + +“Certainly. And when I told you I had foreseen the result, it is the +honor of your visit I alluded to.” + +“So much the better. Are you prepared?” + +“Yes, sir.” + +“You know that we shall fight till one of us is dead,” said the +general, whose teeth were clenched with rage. + +40262m + + + +“Until one of us dies,” repeated Monte Cristo, moving his head slightly +up and down. + +“Let us start, then; we need no witnesses.” + +“Very true,” said Monte Cristo; “it is unnecessary, we know each other +so well!” + +“On the contrary,” said the count, “we know so little of each other.” + +“Indeed?” said Monte Cristo, with the same indomitable coolness; “let +us see. Are you not the soldier Fernand who deserted on the eve of the +battle of Waterloo? Are you not the Lieutenant Fernand who served as +guide and spy to the French army in Spain? Are you not the Captain +Fernand who betrayed, sold, and murdered his benefactor, Ali? And have +not all these Fernands, united, made Lieutenant-General, the Count of +Morcerf, peer of France?” + +“Oh,” cried the general, as if branded with a hot iron, “wretch,—to +reproach me with my shame when about, perhaps, to kill me! No, I did +not say I was a stranger to you. I know well, demon, that you have +penetrated into the darkness of the past, and that you have read, by +the light of what torch I know not, every page of my life; but perhaps +I may be more honorable in my shame than you under your pompous +coverings. No—no, I am aware you know me; but I know you only as an +adventurer sewn up in gold and jewellery. You call yourself, in Paris, +the Count of Monte Cristo; in Italy, Sinbad the Sailor; in Malta, I +forget what. But it is your real name I want to know, in the midst of +your hundred names, that I may pronounce it when we meet to fight, at +the moment when I plunge my sword through your heart.” + +The Count of Monte Cristo turned dreadfully pale; his eye seemed to +burn with a devouring fire. He leaped towards a dressing-room near his +bedroom, and in less than a moment, tearing off his cravat, his coat +and waistcoat, he put on a sailor’s jacket and hat, from beneath which +rolled his long black hair. He returned thus, formidable and +implacable, advancing with his arms crossed on his breast, towards the +general, who could not understand why he had disappeared, but who on +seeing him again, and feeling his teeth chatter and his legs sink under +him, drew back, and only stopped when he found a table to support his +clenched hand. + +“Fernand,” cried he, “of my hundred names I need only tell you one, to +overwhelm you! But you guess it now, do you not?—or, rather, you +remember it? For, notwithstanding all my sorrows and my tortures, I +show you today a face which the happiness of revenge makes young +again—a face you must often have seen in your dreams since your +marriage with Mercédès, my betrothed!” + +40268m + + + +The general, with his head thrown back, hands extended, gaze fixed, +looked silently at this dreadful apparition; then seeking the wall to +support him, he glided along close to it until he reached the door, +through which he went out backwards, uttering this single mournful, +lamentable, distressing cry: + +“Edmond Dantès!” + +Then, with sighs which were unlike any human sound, he dragged himself +to the door, reeled across the courtyard, and falling into the arms of +his valet, he said in a voice scarcely intelligible,—“Home, home.” + +The fresh air and the shame he felt at having exposed himself before +his servants, partly recalled his senses, but the ride was short, and +as he drew near his house all his wretchedness revived. He stopped at a +short distance from the house and alighted. The door was wide open, a +hackney-coach was standing in the middle of the yard—a strange sight +before so noble a mansion; the count looked at it with terror, but +without daring to inquire its meaning, he rushed towards his apartment. + +Two persons were coming down the stairs; he had only time to creep into +an alcove to avoid them. It was Mercédès leaning on her son’s arm and +leaving the house. They passed close by the unhappy being, who, +concealed behind the damask curtain, almost felt Mercédès dress brush +past him, and his son’s warm breath, pronouncing these words: + +“Courage, mother! Come, this is no longer our home!” + +The words died away, the steps were lost in the distance. The general +drew himself up, clinging to the curtain; he uttered the most dreadful +sob which ever escaped from the bosom of a father abandoned at the same +time by his wife and son. He soon heard the clatter of the iron step of +the hackney-coach, then the coachman’s voice, and then the rolling of +the heavy vehicle shook the windows. He darted to his bedroom to see +once more all he had loved in the world; but the hackney-coach drove on +and the head of neither Mercédès nor her son appeared at the window to +take a last look at the house or the deserted father and husband. + +And at the very moment when the wheels of that coach crossed the +gateway a report was heard, and a thick smoke escaped through one of +the panes of the window, which was broken by the explosion. + +40270m + + + + + Chapter 93. Valentine + +We may easily conceive where Morrel’s appointment was. On leaving Monte +Cristo he walked slowly towards Villefort’s; we say slowly, for Morrel +had more than half an hour to spare to go five hundred steps, but he +had hastened to take leave of Monte Cristo because he wished to be +alone with his thoughts. He knew his time well—the hour when Valentine +was giving Noirtier his breakfast, and was sure not to be disturbed in +the performance of this pious duty. Noirtier and Valentine had given +him leave to go twice a week, and he was now availing himself of that +permission. + +He arrived; Valentine was expecting him. Uneasy and almost crazed, she +seized his hand and led him to her grandfather. This uneasiness, +amounting almost to frenzy, arose from the report Morcerf’s adventure +had made in the world, for the affair at the Opera was generally known. +No one at Villefort’s doubted that a duel would ensue from it. +Valentine, with her woman’s instinct, guessed that Morrel would be +Monte Cristo’s second, and from the young man’s well-known courage and +his great affection for the count, she feared that he would not content +himself with the passive part assigned to him. We may easily understand +how eagerly the particulars were asked for, given, and received; and +Morrel could read an indescribable joy in the eyes of his beloved, when +she knew that the termination of this affair was as happy as it was +unexpected. + +“Now,” said Valentine, motioning to Morrel to sit down near her +grandfather, while she took her seat on his footstool,—“now let us talk +about our own affairs. You know, Maximilian, grandpapa once thought of +leaving this house, and taking an apartment away from M. de +Villefort’s.” + +“Yes,” said Maximilian, “I recollect the project, of which I highly +approved.” + +“Well,” said Valentine, “you may approve again, for grandpapa is again +thinking of it.” + +“Bravo,” said Maximilian. + +40272m + + + +“And do you know,” said Valentine, “what reason grandpapa gives for +leaving this house.” Noirtier looked at Valentine to impose silence, +but she did not notice him; her looks, her eyes, her smile, were all +for Morrel. + +“Oh, whatever may be M. Noirtier’s reason,” answered Morrel, “I can +readily believe it to be a good one.” + +“An excellent one,” said Valentine. “He pretends the air of the +Faubourg Saint-Honoré is not good for me.” + +“Indeed?” said Morrel; “in that M. Noirtier may be right; you have not +seemed to be well for the last fortnight.” + +“Not very,” said Valentine. “And grandpapa has become my physician, and +I have the greatest confidence in him, because he knows everything.” + +“Do you then really suffer?” asked Morrel quickly. + +“Oh, it must not be called suffering; I feel a general uneasiness, that +is all. I have lost my appetite, and my stomach feels as if it were +struggling to get accustomed to something.” Noirtier did not lose a +word of what Valentine said. + +“And what treatment do you adopt for this singular complaint?” + +“A very simple one,” said Valentine. “I swallow every morning a +spoonful of the mixture prepared for my grandfather. When I say one +spoonful, I began by one—now I take four. Grandpapa says it is a +panacea.” Valentine smiled, but it was evident that she suffered. + +Maximilian, in his devotedness, gazed silently at her. She was very +beautiful, but her usual pallor had increased; her eyes were more +brilliant than ever, and her hands, which were generally white like +mother-of-pearl, now more resembled wax, to which time was adding a +yellowish hue. + +From Valentine the young man looked towards Noirtier. The latter +watched with strange and deep interest the young girl, absorbed by her +affection, and he also, like Morrel, followed those traces of inward +suffering which was so little perceptible to a common observer that +they escaped the notice of everyone but the grandfather and the lover. + +“But,” said Morrel, “I thought this mixture, of which you now take four +spoonfuls, was prepared for M. Noirtier?” + +“I know it is very bitter,” said Valentine; “so bitter, that all I +drink afterwards appears to have the same taste.” Noirtier looked +inquiringly at his granddaughter. “Yes, grandpapa,” said Valentine; “it +is so. Just now, before I came down to you, I drank a glass of sugared +water; I left half, because it seemed so bitter.” Noirtier turned pale, +and made a sign that he wished to speak. + +Valentine rose to fetch the dictionary. Noirtier watched her with +evident anguish. In fact, the blood was rushing to the young girl’s +head already, her cheeks were becoming red. + +“Oh,” cried she, without losing any of her cheerfulness, “this is +singular! I can’t see! Did the sun shine in my eyes?” And she leaned +against the window. + +“The sun is not shining,” said Morrel, more alarmed by Noirtier’s +expression than by Valentine’s indisposition. He ran towards her. The +young girl smiled. + +“Cheer up,” said she to Noirtier. “Do not be alarmed, Maximilian; it is +nothing, and has already passed away. But listen! Do I not hear a +carriage in the courtyard?” She opened Noirtier’s door, ran to a window +in the passage, and returned hastily. “Yes,” said she, “it is Madame +Danglars and her daughter, who have come to call on us. Good-bye;—I +must run away, for they would send here for me, or, rather, farewell +till I see you again. Stay with grandpapa, Maximilian; I promise you +not to persuade them to stay.” + +40274m + + + +Morrel watched her as she left the room; he heard her ascend the little +staircase which led both to Madame de Villefort’s apartments and to +hers. As soon as she was gone, Noirtier made a sign to Morrel to take +the dictionary. Morrel obeyed; guided by Valentine, he had learned how +to understand the old man quickly. Accustomed, however, as he was to +the work, he had to repeat most of the letters of the alphabet and to +find every word in the dictionary, so that it was ten minutes before +the thought of the old man was translated by these words, + +“Fetch the glass of water and the decanter from Valentine’s room.” + +Morrel rang immediately for the servant who had taken Barrois’s +situation, and in Noirtier’s name gave that order. The servant soon +returned. The decanter and the glass were completely empty. Noirtier +made a sign that he wished to speak. + +“Why are the glass and decanter empty?” asked he; “Valentine said she +only drank half the glassful.” + +The translation of this new question occupied another five minutes. + +“I do not know,” said the servant, “but the housemaid is in +Mademoiselle Valentine’s room: perhaps she has emptied them.” + +“Ask her,” said Morrel, translating Noirtier’s thought this time by his +look. The servant went out, but returned almost immediately. +“Mademoiselle Valentine passed through the room to go to Madame de +Villefort’s,” said he; “and in passing, as she was thirsty, she drank +what remained in the glass; as for the decanter, Master Edward had +emptied that to make a pond for his ducks.” + +Noirtier raised his eyes to heaven, as a gambler does who stakes his +all on one stroke. From that moment the old man’s eyes were fixed on +the door, and did not quit it. + +It was indeed Madame Danglars and her daughter whom Valentine had seen; +they had been ushered into Madame de Villefort’s room, who had said she +would receive them there. That is why Valentine passed through her +room, which was on a level with Valentine’s, and only separated from it +by Edward’s. The two ladies entered the drawing-room with that sort of +official stiffness which preludes a formal communication. Among worldly +people manner is contagious. Madame de Villefort received them with +equal solemnity. Valentine entered at this moment, and the formalities +were resumed. + +“My dear friend,” said the baroness, while the two young people were +shaking hands, “I and Eugénie are come to be the first to announce to +you the approaching marriage of my daughter with Prince Cavalcanti.” +Danglars kept up the title of prince. The popular banker found that it +answered better than count. + +“Allow me to present you my sincere congratulations,” replied Madame de +Villefort. “Prince Cavalcanti appears to be a young man of rare +qualities.” + +40276m + + + +“Listen,” said the baroness, smiling; “speaking to you as a friend I +can say that the prince does not yet appear all he will be. He has +about him a little of that foreign manner by which French persons +recognize, at first sight, the Italian or German nobleman. Besides, he +gives evidence of great kindness of disposition, much keenness of wit, +and as to suitability, M. Danglars assures me that his fortune is +majestic—that is his word.” + +“And then,” said Eugénie, while turning over the leaves of Madame de +Villefort’s album, “add that you have taken a great fancy to the young +man.” + +“And,” said Madame de Villefort, “I need not ask you if you share that +fancy.” + +“I?” replied Eugénie with her usual candor. “Oh, not the least in the +world, madame! My wish was not to confine myself to domestic cares, or +the caprices of any man, but to be an artist, and consequently free in +heart, in person, and in thought.” + +Eugénie pronounced these words with so firm a tone that the color +mounted to Valentine’s cheeks. The timid girl could not understand that +vigorous nature which appeared to have none of the timidities of woman. + +“At any rate,” said she, “since I am to be married whether I will or +not, I ought to be thankful to Providence for having released me from +my engagement with M. Albert de Morcerf, or I should this day have been +the wife of a dishonored man.” + +“It is true,” said the baroness, with that strange simplicity sometimes +met with among fashionable ladies, and of which plebeian intercourse +can never entirely deprive them,—“it is very true that had not the +Morcerfs hesitated, my daughter would have married Monsieur Albert. The +general depended much on it; he even came to force M. Danglars. We have +had a narrow escape.” + +“But,” said Valentine, timidly, “does all the father’s shame revert +upon the son? Monsieur Albert appears to me quite innocent of the +treason charged against the general.” + +“Excuse me,” said the implacable young girl, “Monsieur Albert claims +and well deserves his share. It appears that after having challenged M. +de Monte Cristo at the Opera yesterday, he apologized on the ground +today.” + +“Impossible,” said Madame de Villefort. + +“Ah, my dear friend,” said Madame Danglars, with the same simplicity we +before noticed, “it is a fact. I heard it from M. Debray, who was +present at the explanation.” + +Valentine also knew the truth, but she did not answer. A single word +had reminded her that Morrel was expecting her in M. Noirtier’s room. +Deeply engaged with a sort of inward contemplation, Valentine had +ceased for a moment to join in the conversation. She would, indeed, +have found it impossible to repeat what had been said the last few +minutes, when suddenly Madame Danglars’ hand, pressed on her arm, +aroused her from her lethargy. + +“What is it?” said she, starting at Madame Danglars’ touch as she would +have done from an electric shock. + +“It is, my dear Valentine,” said the baroness, “that you are, +doubtless, suffering.” + +40280m + + + +“I?” said the young girl, passing her hand across her burning forehead. + +“Yes, look at yourself in that glass; you have turned pale and then red +successively, three or four times in one minute.” + +“Indeed,” cried Eugénie, “you are very pale!” + +“Oh, do not be alarmed; I have been so for many days.” Artless as she +was, the young girl knew that this was an opportunity to leave, and +besides, Madame de Villefort came to her assistance. + +“Retire, Valentine,” said she; “you are really suffering, and these +ladies will excuse you; drink a glass of pure water, it will restore +you.” + +Valentine kissed Eugénie, bowed to Madame Danglars, who had already +risen to take her leave, and went out. + +“That poor child,” said Madame de Villefort when Valentine was gone, +“she makes me very uneasy, and I should not be astonished if she had +some serious illness.” + +Meanwhile, Valentine, in a sort of excitement which she could not quite +understand, had crossed Edward’s room without noticing some trick of +the child, and through her own had reached the little staircase. + +She was within three steps of the bottom; she already heard Morrel’s +voice, when suddenly a cloud passed over her eyes, her stiffened foot +missed the step, her hands had no power to hold the baluster, and +falling against the wall she lost her balance wholly and toppled to the +floor. Morrel bounded to the door, opened it, and found Valentine +stretched out at the bottom of the stairs. Quick as a flash, he raised +her in his arms and placed her in a chair. Valentine opened her eyes. + +“Oh, what a clumsy thing I am,” said she with feverish volubility; “I +don’t know my way. I forgot there were three more steps before the +landing.” + +“You have hurt yourself, perhaps,” said Morrel. “What can I do for you, +Valentine?” + +Valentine looked around her; she saw the deepest terror depicted in +Noirtier’s eyes. + +“Don’t worry, dear grandpapa,” said she, endeavoring to smile; “it is +nothing—it is nothing; I was giddy, that is all.” + +“Another attack of giddiness,” said Morrel, clasping his hands. “Oh, +attend to it, Valentine, I entreat you.” + +“But no,” said Valentine,—“no, I tell you it is all past, and it was +nothing. Now, let me tell you some news; Eugénie is to be married in a +week, and in three days there is to be a grand feast, a betrothal +festival. We are all invited, my father, Madame de Villefort, and I—at +least, I understood it so.” + +“When will it be our turn to think of these things? Oh, Valentine, you +who have so much influence over your grandpapa, try to make him +answer—Soon.” + +“And do you,” said Valentine, “depend on me to stimulate the tardiness +and arouse the memory of grandpapa?” + +“Yes,” cried Morrel, “make haste. So long as you are not mine, +Valentine, I shall always think I may lose you.” + +“Oh,” replied Valentine with a convulsive movement, “oh, indeed, +Maximilian, you are too timid for an officer, for a soldier who, they +say, never knows fear. Ha, ha, ha!” + +She burst into a forced and melancholy laugh, her arms stiffened and +twisted, her head fell back on her chair, and she remained motionless. +The cry of terror which was stopped on Noirtier’s lips, seemed to start +from his eyes. Morrel understood it; he knew he must call assistance. +The young man rang the bell violently; the housemaid who had been in +Mademoiselle Valentine’s room, and the servant who had replaced +Barrois, ran in at the same moment. Valentine was so pale, so cold, so +inanimate that without listening to what was said to them they were +seized with the fear which pervaded that house, and they flew into the +passage crying for help. Madame Danglars and Eugénie were going out at +that moment; they heard the cause of the disturbance. + +“I told you so!” exclaimed Madame de Villefort. “Poor child!” + +40278m + + + + + Chapter 94. Maximilian’s Avowal + +At the same moment M. de Villefort’s voice was heard calling from his +study, “What is the matter?” + +Morrel looked at Noirtier who had recovered his self-command, and with +a glance indicated the closet where once before under somewhat similar +circumstances, he had taken refuge. He had only time to get his hat and +throw himself breathless into the closet when the procureur’s footstep +was heard in the passage. + +Villefort sprang into the room, ran to Valentine, and took her in his +arms. + +“A physician, a physician,—M. d’Avrigny!” cried Villefort; “or rather I +will go for him myself.” + +He flew from the apartment, and Morrel at the same moment darted out at +the other door. He had been struck to the heart by a frightful +recollection—the conversation he had heard between the doctor and +Villefort the night of Madame de Saint-Méran’s death, recurred to him; +these symptoms, to a less alarming extent, were the same which had +preceded the death of Barrois. At the same time Monte Cristo’s voice +seemed to resound in his ear with the words he had heard only two hours +before, “Whatever you want, Morrel, come to me; I have great power.” + +More rapidly than thought, he darted down the Rue Matignon, and thence +to the Avenue des Champs-Élysées. + +Meanwhile M. de Villefort arrived in a hired cabriolet at M. +d’Avrigny’s door. He rang so violently that the porter was alarmed. +Villefort ran upstairs without saying a word. The porter knew him, and +let him pass, only calling to him: + +“In his study, Monsieur Procureur—in his study!” Villefort pushed, or +rather forced, the door open. + +“Ah,” said the doctor, “is it you?” + +“Yes,” said Villefort, closing the door after him, “it is I, who am +come in my turn to ask you if we are quite alone. Doctor, my house is +accursed!” + +“What?” said the latter with apparent coolness, but with deep emotion, +“have you another invalid?” + +“Yes, doctor,” cried Villefort, clutching his hair, “yes!” + +D’Avrigny’s look implied, “I told you it would be so.” Then he slowly +uttered these words, “Who is now dying in your house? What new victim +is going to accuse you of weakness before God?” + +A mournful sob burst from Villefort’s heart; he approached the doctor, +and seizing his arm,—“Valentine,” said he, “it is Valentine’s turn!” + +40284m + + + +“Your daughter!” cried d’Avrigny with grief and surprise. + +“You see you were deceived,” murmured the magistrate; “come and see +her, and on her bed of agony entreat her pardon for having suspected +her.” + +“Each time you have applied to me,” said the doctor, “it has been too +late; still I will go. But let us make haste, sir; with the enemies you +have to do with there is no time to be lost.” + +“Oh, this time, doctor, you shall not have to reproach me with +weakness. This time I will know the assassin, and will pursue him.” + +“Let us try first to save the victim before we think of revenging her,” +said d’Avrigny. “Come.” + +The same cabriolet which had brought Villefort took them back at full +speed, and at this moment Morrel rapped at Monte Cristo’s door. + +The count was in his study and was reading with an angry look something +which Bertuccio had brought in haste. Hearing the name of Morrel, who +had left him only two hours before, the count raised his head, arose, +and sprang to meet him. + +“What is the matter, Maximilian?” asked he; “you are pale, and the +perspiration rolls from your forehead.” Morrel fell into a chair. + +“Yes,” said he, “I came quickly; I wanted to speak to you.” + +“Are all your family well?” asked the count, with an affectionate +benevolence, whose sincerity no one could for a moment doubt. + +“Thank you, count—thank you,” said the young man, evidently embarrassed +how to begin the conversation; “yes, everyone in my family is well.” + +“So much the better; yet you have something to tell me?” replied the +count with increased anxiety. + +“Yes,” said Morrel, “it is true; I have but now left a house where +death has just entered, to run to you.” + +“Are you then come from M. de Morcerf’s?” asked Monte Cristo. + +“No,” said Morrel; “is someone dead in his house?” + +“The general has just blown his brains out,” replied Monte Cristo with +great coolness. + +“Oh, what a dreadful event!” cried Maximilian. + +“Not for the countess, or for Albert,” said Monte Cristo; “a dead +father or husband is better than a dishonored one,—blood washes out +shame.” + +“Poor countess,” said Maximilian, “I pity her very much; she is so +noble a woman!” + +“Pity Albert also, Maximilian; for believe me he is the worthy son of +the countess. But let us return to yourself. You have hastened to +me—can I have the happiness of being useful to you?” + +40286m + + + +“Yes, I need your help: that is I thought like a madman that you could +lend me your assistance in a case where God alone can succor me.” + +“Tell me what it is,” replied Monte Cristo. + +“Oh,” said Morrel, “I know not, indeed, if I may reveal this secret to +mortal ears, but fatality impels me, necessity constrains me, count——” +Morrel hesitated. + +“Do you think I love you?” said Monte Cristo, taking the young man’s +hand affectionately in his. + +“Oh, you encourage me, and something tells me there,” placing his hand +on his heart, “that I ought to have no secret from you.” + +“You are right, Morrel; God is speaking to your heart, and your heart +speaks to you. Tell me what it says.” + +“Count, will you allow me to send Baptistin to inquire after someone +you know?” + +“I am at your service, and still more my servants.” + +“Oh, I cannot live if she is not better.” + +“Shall I ring for Baptistin?” + +“No, I will go and speak to him myself.” Morrel went out, called +Baptistin, and whispered a few words to him. The valet ran directly. + +“Well, have you sent?” asked Monte Cristo, seeing Morrel return. + +“Yes, and now I shall be more calm.” + +“You know I am waiting,” said Monte Cristo, smiling. + +“Yes, and I will tell you. One evening I was in a garden; a clump of +trees concealed me; no one suspected I was there. Two persons passed +near me—allow me to conceal their names for the present; they were +speaking in an undertone, and yet I was so interested in what they said +that I did not lose a single word.” + +“This is a gloomy introduction, if I may judge from your pallor and +shuddering, Morrel.” + +“Oh, yes, very gloomy, my friend. Someone had just died in the house to +which that garden belonged. One of the persons whose conversation I +overheard was the master of the house; the other, the physician. The +former was confiding to the latter his grief and fear, for it was the +second time within a month that death had suddenly and unexpectedly +entered that house which was apparently destined to destruction by some +exterminating angel, as an object of God’s anger.” + +“Ah, indeed?” said Monte Cristo, looking earnestly at the young man, +and by an imperceptible movement turning his chair, so that he remained +in the shade while the light fell full on Maximilian’s face. + +“Yes,” continued Morrel, “death had entered that house twice within one +month.” + +“And what did the doctor answer?” asked Monte Cristo. + +“He replied—he replied, that the death was not a natural one, and must +be attributed”— + +“To what?” + +“To poison.” + +“Indeed!” said Monte Cristo with a slight cough which in moments of +extreme emotion helped him to disguise a blush, or his pallor, or the +intense interest with which he listened; “indeed, Maximilian, did you +hear that?” + +“Yes, my dear count, I heard it; and the doctor added that if another +death occurred in a similar way he must appeal to justice.” + +Monte Cristo listened, or appeared to do so, with the greatest +calmness. + +“Well,” said Maximilian, “death came a third time, and neither the +master of the house nor the doctor said a word. Death is now, perhaps, +striking a fourth blow. Count, what am I bound to do, being in +possession of this secret?” + +“My dear friend,” said Monte Cristo, “you appear to be relating an +adventure which we all know by heart. I know the house where you heard +it, or one very similar to it; a house with a garden, a master, a +physician, and where there have been three unexpected and sudden +deaths. Well, I have not intercepted your confidence, and yet I know +all that as well as you, and I have no conscientious scruples. No, it +does not concern me. You say an exterminating angel appears to have +devoted that house to God’s anger—well, who says your supposition is +not reality? Do not notice things which those whose interest it is to +see them pass over. If it is God’s justice, instead of his anger, which +is walking through that house, Maximilian, turn away your face and let +his justice accomplish its purpose.” + +Morrel shuddered. There was something mournful, solemn, and terrible in +the count’s manner. + +“Besides,” continued he, in so changed a tone that no one would have +supposed it was the same person speaking—“besides, who says that it +will begin again?” + +“It has returned, count,” exclaimed Morrel; “that is why I hastened to +you.” + +“Well, what do you wish me to do? Do you wish me, for instance, to give +information to the procureur?” Monte Cristo uttered the last words with +so much meaning that Morrel, starting up, cried out: + +“You know of whom I speak, count, do you not?” + +“Perfectly well, my good friend; and I will prove it to you by putting +the dots to the _i_, or rather by naming the persons. You were walking +one evening in M. de Villefort’s garden; from what you relate, I +suppose it to have been the evening of Madame de Saint-Méran’s death. +You heard M. de Villefort talking to M. d’Avrigny about the death of M. +de Saint-Méran, and that no less surprising, of the countess. M. +d’Avrigny said he believed they both proceeded from poison; and you, +honest man, have ever since been asking your heart and sounding your +conscience to know if you ought to expose or conceal this secret. We +are no longer in the Middle Ages; there is no longer a Vehmgericht, or +Free Tribunals; what do you want to ask these people? ‘Conscience, what +hast thou to do with me?’ as Sterne said. My dear fellow, let them +sleep on, if they are asleep; let them grow pale in their drowsiness, +if they are disposed to do so, and pray do you remain in peace, who +have no remorse to disturb you.” + +Deep grief was depicted on Morrel’s features; he seized Monte Cristo’s +hand. “But it is beginning again, I say!” + +“Well,” said the Count, astonished at his perseverance, which he could +not understand, and looking still more earnestly at Maximilian, “let it +begin again,—it is like the house of the Atreidae;19 God has condemned +them, and they must submit to their punishment. They will all +disappear, like the fabrics children build with cards, and which fall, +one by one, under the breath of their builder, even if there are two +hundred of them. Three months since it was M. de Saint-Méran; Madame de +Saint-Méran two months since; the other day it was Barrois; today, the +old Noirtier, or young Valentine.” + +“You knew it?” cried Morrel, in such a paroxysm of terror that Monte +Cristo started,—he whom the falling heavens would have found unmoved; +“you knew it, and said nothing?” + +“And what is it to me?” replied Monte Cristo, shrugging his shoulders; +“do I know those people? and must I lose the one to save the other? +Faith, no, for between the culprit and the victim I have no choice.” + +“But I,” cried Morrel, groaning with sorrow, “I love her!” + +“You love?—whom?” cried Monte Cristo, starting to his feet, and seizing +the two hands which Morrel was raising towards heaven. + +“I love most fondly—I love madly—I love as a man who would give his +life-blood to spare her a tear—I love Valentine de Villefort, who is +being murdered at this moment! Do you understand me? I love her; and I +ask God and you how I can save her?” + +Monte Cristo uttered a cry which those only can conceive who have heard +the roar of a wounded lion. “Unhappy man,” cried he, wringing his hands +in his turn; “you love Valentine,—that daughter of an accursed race!” + +Never had Morrel witnessed such an expression—never had so terrible an +eye flashed before his face—never had the genius of terror he had so +often seen, either on the battle-field or in the murderous nights of +Algeria, shaken around him more dreadful fire. He drew back terrified. + +As for Monte Cristo, after this ebullition he closed his eyes as if +dazzled by internal light. In a moment he restrained himself so +powerfully that the tempestuous heaving of his breast subsided, as +turbulent and foaming waves yield to the sun’s genial influence when +the cloud has passed. This silence, self-control, and struggle lasted +about twenty seconds, then the count raised his pallid face. + +“See,” said he, “my dear friend, how God punishes the most thoughtless +and unfeeling men for their indifference, by presenting dreadful scenes +to their view. I, who was looking on, an eager and curious +spectator,—I, who was watching the working of this mournful tragedy,—I, +who like a wicked angel was laughing at the evil men committed +protected by secrecy (a secret is easily kept by the rich and +powerful), I am in my turn bitten by the serpent whose tortuous course +I was watching, and bitten to the heart!” + +Morrel groaned. + +“Come, come,” continued the count, “complaints are unavailing, be a +man, be strong, be full of hope, for I am here and will watch over +you.” + +Morrel shook his head sorrowfully. + +“I tell you to hope. Do you understand me?” cried Monte Cristo. +“Remember that I never uttered a falsehood and am never deceived. It is +twelve o’clock, Maximilian; thank heaven that you came at noon rather +than in the evening, or tomorrow morning. Listen, Morrel—it is noon; if +Valentine is not now dead, she will not die.” + +“How so?” cried Morrel, “when I left her dying?” + +Monte Cristo pressed his hands to his forehead. What was passing in +that brain, so loaded with dreadful secrets? What does the angel of +light or the angel of darkness say to that mind, at once implacable and +generous? God only knows. + +Monte Cristo raised his head once more, and this time he was calm as a +child awaking from its sleep. + +“Maximilian,” said he, “return home. I command you not to stir—attempt +nothing, not to let your countenance betray a thought, and I will send +you tidings. Go.” + +“Oh, count, you overwhelm me with that coolness. Have you, then, power +against death? Are you superhuman? Are you an angel?” And the young +man, who had never shrunk from danger, shrank before Monte Cristo with +indescribable terror. But Monte Cristo looked at him with so melancholy +and sweet a smile, that Maximilian felt the tears filling his eyes. + +“I can do much for you, my friend,” replied the count. “Go; I must be +alone.” + +Morrel, subdued by the extraordinary ascendancy Monte Cristo exercised +over everything around him, did not endeavor to resist it. He pressed +the count’s hand and left. He stopped one moment at the door for +Baptistin, whom he saw in the Rue Matignon, and who was running. + +Meanwhile, Villefort and d’Avrigny had made all possible haste, +Valentine had not revived from her fainting fit on their arrival, and +the doctor examined the invalid with all the care the circumstances +demanded, and with an interest which the knowledge of the secret +intensified twofold. Villefort, closely watching his countenance and +his lips, awaited the result of the examination. Noirtier, paler than +even the young girl, more eager than Villefort for the decision, was +watching also intently and affectionately. + +At last d’Avrigny slowly uttered these words: “She is still alive!” + +“Still?” cried Villefort; “oh, doctor, what a dreadful word is that.” + +“Yes,” said the physician, “I repeat it; she is still alive, and I am +astonished at it.” + +“But is she safe?” asked the father. + +“Yes, since she lives.” + +At that moment d’Avrigny’s glance met Noirtier’s eye. It glistened with +such extraordinary joy, so rich and full of thought, that the physician +was struck. He placed the young girl again on the chair,—her lips were +scarcely discernible, they were so pale and white, as well as her whole +face,—and remained motionless, looking at Noirtier, who appeared to +anticipate and commend all he did. + +“Sir,” said d’Avrigny to Villefort, “call Mademoiselle Valentine’s +maid, if you please.” + +Villefort went himself to find her; and d’Avrigny approached Noirtier. + +“Have you something to tell me?” asked he. The old man winked his eyes +expressively, which we may remember was his only way of expressing his +approval. + +“Privately?” + +“Yes.” + +“Well, I will remain with you.” At this moment Villefort returned, +followed by the lady’s maid; and after her came Madame de Villefort. + +“What is the matter, then, with this dear child? she has just left me, +and she complained of being indisposed, but I did not think seriously +of it.” + +The young woman with tears in her eyes and every mark of affection of a +true mother, approached Valentine and took her hand. D’Avrigny +continued to look at Noirtier; he saw the eyes of the old man dilate +and become round, his cheeks turn pale and tremble; the perspiration +stood in drops upon his forehead. + +“Ah,” said he, involuntarily following Noirtier’s eyes, which were +fixed on Madame de Villefort, who repeated: + +“This poor child would be better in bed. Come, Fanny, we will put her +to bed.” + +M. d’Avrigny, who saw that would be a means of his remaining alone with +Noirtier, expressed his opinion that it was the best thing that could +be done; but he forbade that anything should be given to her except +what he ordered. + +They carried Valentine away; she had revived, but could scarcely move +or speak, so shaken was her frame by the attack. She had, however, just +power to give one parting look to her grandfather, who in losing her +seemed to be resigning his very soul. D’Avrigny followed the invalid, +wrote a prescription, ordered Villefort to take a cabriolet, go in +person to a chemist’s to get the prescribed medicine, bring it himself, +and wait for him in his daughter’s room. Then, having renewed his +injunction not to give Valentine anything, he went down again to +Noirtier, shut the doors carefully, and after convincing himself that +no one was listening: + +“Do you,” said he, “know anything of this young lady’s illness?” + +“Yes,” said the old man. + +“We have no time to lose; I will question, and do you answer me.” +Noirtier made a sign that he was ready to answer. “Did you anticipate +the accident which has happened to your granddaughter?” + +“Yes.” D’Avrigny reflected a moment; then approaching Noirtier: + +“Pardon what I am going to say,” added he, “but no indication should be +neglected in this terrible situation. Did you see poor Barrois die?” +Noirtier raised his eyes to heaven. + +“Do you know of what he died!” asked d’Avrigny, placing his hand on +Noirtier’s shoulder. + +“Yes,” replied the old man. + +“Do you think he died a natural death?” A sort of smile was discernible +on the motionless lips of Noirtier. + +“Then you have thought that Barrois was poisoned?” + +“Yes.” + +“Do you think the poison he fell a victim to was intended for him?” + +“No.” + +“Do you think the same hand which unintentionally struck Barrois has +now attacked Valentine?” + +“Yes.” + +“Then will she die too?” asked d’Avrigny, fixing his penetrating gaze +on Noirtier. He watched the effect of this question on the old man. + +“No,” replied he with an air of triumph which would have puzzled the +most clever diviner. + +“Then you hope?” said d’Avrigny, with surprise. + +“Yes.” + +“What do you hope?” The old man made him understand with his eyes that +he could not answer. + +“Ah, yes, it is true,” murmured d’Avrigny. Then, turning to +Noirtier,—“Do you hope the assassin will be tried?” + +“No.” + +“Then you hope the poison will take no effect on Valentine?” + +“Yes.” + +“It is no news to you,” added d’Avrigny, “to tell you that an attempt +has been made to poison her?” The old man made a sign that he +entertained no doubt upon the subject. “Then how do you hope Valentine +will escape?” + +Noirtier kept his eyes steadfastly fixed on the same spot. D’Avrigny +followed the direction and saw that they were fixed on a bottle +containing the mixture which he took every morning. “Ah, indeed?” said +d’Avrigny, struck with a sudden thought, “has it occurred to +you”—Noirtier did not let him finish. + +“Yes,” said he. + +“To prepare her system to resist poison?” + +“Yes.” + +“By accustoming her by degrees——” + +“Yes, yes, yes,” said Noirtier, delighted to be understood. + +“Of course. I had told you that there was brucine in the mixture I give +you.” + +“Yes.” + +“And by accustoming her to that poison, you have endeavored to +neutralize the effect of a similar poison?” Noirtier’s joy continued. +“And you have succeeded,” exclaimed d’Avrigny. “Without that precaution +Valentine would have died before assistance could have been procured. +The dose has been excessive, but she has only been shaken by it; and +this time, at any rate, Valentine will not die.” + +A superhuman joy expanded the old man’s eyes, which were raised towards +heaven with an expression of infinite gratitude. At this moment +Villefort returned. + +“Here, doctor,” said he, “is what you sent me for.” + +“Was this prepared in your presence?” + +“Yes,” replied the procureur. + +“Have you not let it go out of your hands?” + +“No.” + +D’Avrigny took the bottle, poured some drops of the mixture it +contained in the hollow of his hand, and swallowed them. + +“Well,” said he, “let us go to Valentine; I will give instructions to +everyone, and you, M. de Villefort, will yourself see that no one +deviates from them.” + +40294m + + + +At the moment when d’Avrigny was returning to Valentine’s room, +accompanied by Villefort, an Italian priest, of serious demeanor and +calm and firm tone, hired for his use the house adjoining the hotel of +M. de Villefort. No one knew how the three former tenants of that house +left it. About two hours afterwards its foundation was reported to be +unsafe; but the report did not prevent the new occupant establishing +himself there with his modest furniture the same day at five o’clock. +The lease was drawn up for three, six, or nine years by the new tenant, +who, according to the rule of the proprietor, paid six months in +advance. + +This new tenant, who, as we have said, was an Italian, was called Il +Signor Giacomo Busoni. Workmen were immediately called in, and that +same night the passengers at the end of the faubourg saw with surprise +that carpenters and masons were occupied in repairing the lower part of +the tottering house. + + + + Chapter 95. Father and Daughter + +We saw in a preceding chapter how Madame Danglars went formally to +announce to Madame de Villefort the approaching marriage of Eugénie +Danglars and M. Andrea Cavalcanti. This formal announcement, which +implied or appeared to imply, the approval of all the persons concerned +in this momentous affair, had been preceded by a scene to which our +readers must be admitted. We beg them to take one step backward, and to +transport themselves, the morning of that day of great catastrophes, +into the showy, gilded salon we have before shown them, and which was +the pride of its owner, Baron Danglars. + +In this room, at about ten o’clock in the morning, the banker himself +had been walking to and fro for some minutes thoughtfully and in +evident uneasiness, watching both doors, and listening to every sound. +When his patience was exhausted, he called his valet. + +“Étienne,” said he, “see why Mademoiselle Eugénie has asked me to meet +her in the drawing-room, and why she makes me wait so long.” + +Having given this vent to his ill-humor, the baron became more calm; +Mademoiselle Danglars had that morning requested an interview with her +father, and had fixed on the gilded drawing-room as the spot. The +singularity of this step, and above all its formality, had not a little +surprised the banker, who had immediately obeyed his daughter by +repairing first to the drawing-room. Étienne soon returned from his +errand. + +“Mademoiselle’s lady’s maid says, sir, that mademoiselle is finishing +her toilette, and will be here shortly.” + +Danglars nodded, to signify that he was satisfied. To the world and to +his servants Danglars assumed the character of the good-natured man and +the indulgent father. This was one of his parts in the popular comedy +he was performing,—a make-up he had adopted and which suited him about +as well as the masks worn on the classic stage by paternal actors, who +seen from one side, were the image of geniality, and from the other +showed lips drawn down in chronic ill-temper. Let us hasten to say that +in private the genial side descended to the level of the other, so that +generally the indulgent man disappeared to give place to the brutal +husband and domineering father. + +“Why the devil does that foolish girl, who pretends to wish to speak to +me, not come into my study? and why on earth does she want to speak to +me at all?” + +He was turning this thought over in his brain for the twentieth time, +when the door opened and Eugénie appeared, attired in a figured black +satin dress, her hair dressed and gloves on, as if she were going to +the Italian Opera. + +“Well, Eugénie, what is it you want with me? and why in this solemn +drawing-room when the study is so comfortable?” + +“I quite understand why you ask, sir,” said Eugénie, making a sign that +her father might be seated, “and in fact your two questions suggest +fully the theme of our conversation. I will answer them both, and +contrary to the usual method, the last first, because it is the least +difficult. I have chosen the drawing-room, sir, as our place of +meeting, in order to avoid the disagreeable impressions and influences +of a banker’s study. Those gilded cashbooks, drawers locked like gates +of fortresses, heaps of bank-bills, come from I know not where, and the +quantities of letters from England, Holland, Spain, India, China, and +Peru, have generally a strange influence on a father’s mind, and make +him forget that there is in the world an interest greater and more +sacred than the good opinion of his correspondents. I have, therefore, +chosen this drawing-room, where you see, smiling and happy in their +magnificent frames, your portrait, mine, my mother’s, and all sorts of +rural landscapes and touching pastorals. I rely much on external +impressions; perhaps, with regard to you, they are immaterial, but I +should be no artist if I had not some fancies.” + +“Very well,” replied M. Danglars, who had listened to all this preamble +with imperturbable coolness, but without understanding a word, since +like every man burdened with thoughts of the past, he was occupied with +seeking the thread of his own ideas in those of the speaker. + +“There is, then, the second point cleared up, or nearly so,” said +Eugénie, without the least confusion, and with that masculine +pointedness which distinguished her gesture and her language; “and you +appear satisfied with the explanation. Now, let us return to the first. +You ask me why I have requested this interview; I will tell you in two +words, sir; I will not marry count Andrea Cavalcanti.” + +Danglars leaped from his chair and raised his eyes and arms towards +heaven. + +40298m + + + +“Yes, indeed, sir,” continued Eugénie, still quite calm; “you are +astonished, I see; for since this little affair began, I have not +manifested the slightest opposition, and yet I am always sure, when the +opportunity arrives, to oppose a determined and absolute will to people +who have not consulted me, and things which displease me. However, this +time, my tranquillity, or passiveness as philosophers say, proceeded +from another source; it proceeded from a wish, like a submissive and +devoted daughter” (a slight smile was observable on the purple lips of +the young girl), “to practice obedience.” + +“Well?” asked Danglars. + +“Well, sir,” replied Eugénie, “I have tried to the very last and now +that the moment has come, I feel in spite of all my efforts that it is +impossible.” + +“But,” said Danglars, whose weak mind was at first quite overwhelmed +with the weight of this pitiless logic, marking evident premeditation +and force of will, “what is your reason for this refusal, Eugénie? what +reason do you assign?” + +“My reason?” replied the young girl. “Well, it is not that the man is +more ugly, more foolish, or more disagreeable than any other; no, M. +Andrea Cavalcanti may appear to those who look at men’s faces and +figures as a very good specimen of his kind. It is not, either, that my +heart is less touched by him than any other; that would be a +schoolgirl’s reason, which I consider quite beneath me. I actually love +no one, sir; you know it, do you not? I do not then see why, without +real necessity, I should encumber my life with a perpetual companion. +Has not some sage said, ‘Nothing too much’? and another, ‘I carry all +my effects with me’? I have been taught these two aphorisms in Latin +and in Greek; one is, I believe, from Phædrus, and the other from Bias. +Well, my dear father, in the shipwreck of life—for life is an eternal +shipwreck of our hopes—I cast into the sea my useless encumbrance, that +is all, and I remain with my own will, disposed to live perfectly +alone, and consequently perfectly free.” + +“Unhappy girl, unhappy girl!” murmured Danglars, turning pale, for he +knew from long experience the solidity of the obstacle he had so +suddenly encountered. + +“Unhappy girl,” replied Eugénie, “unhappy girl, do you say, sir? No, +indeed; the exclamation appears quite theatrical and affected. Happy, +on the contrary, for what am I in want of? The world calls me +beautiful. It is something to be well received. I like a favorable +reception; it expands the countenance, and those around me do not then +appear so ugly. I possess a share of wit, and a certain relative +sensibility, which enables me to draw from life in general, for the +support of mine, all I meet with that is good, like the monkey who +cracks the nut to get at its contents. I am rich, for you have one of +the first fortunes in France. I am your only daughter, and you are not +so exacting as the fathers of the Porte Saint-Martin and Gaîté, who +disinherit their daughters for not giving them grandchildren. Besides, +the provident law has deprived you of the power to disinherit me, at +least entirely, as it has also of the power to compel me to marry +Monsieur This or Monsieur That. And so—being, beautiful, witty, +somewhat talented, as the comic operas say, and rich—and that is +happiness, sir—why do you call me unhappy?” + +Danglars, seeing his daughter smiling, and proud even to insolence, +could not entirely repress his brutal feelings, but they betrayed +themselves only by an exclamation. Under the fixed and inquiring gaze +levelled at him from under those beautiful black eyebrows, he prudently +turned away, and calmed himself immediately, daunted by the power of a +resolute mind. + +“Truly, my daughter,” replied he with a smile, “you are all you boast +of being, excepting one thing; I will not too hastily tell you which, +but would rather leave you to guess it.” + +Eugénie looked at Danglars, much surprised that one flower of her crown +of pride, with which she had so superbly decked herself, should be +disputed. + +“My daughter,” continued the banker, “you have perfectly explained to +me the sentiments which influence a girl like you, who is determined +she will not marry; now it remains for me to tell you the motives of a +father like me, who has decided that his daughter shall marry.” + +Eugénie bowed, not as a submissive daughter, but as an adversary +prepared for a discussion. + +“My daughter,” continued Danglars, “when a father asks his daughter to +choose a husband, he has always some reason for wishing her to marry. +Some are affected with the mania of which you spoke just now, that of +living again in their grandchildren. This is not my weakness, I tell +you at once; family joys have no charm for me. I may acknowledge this +to a daughter whom I know to be philosophical enough to understand my +indifference, and not to impute it to me as a crime.” + +“This is not to the purpose,” said Eugénie; “let us speak candidly, +sir; I admire candor.” + +“Oh,” said Danglars, “I can, when circumstances render it desirable, +adopt your system, although it may not be my general practice. I will +therefore proceed. I have proposed to you to marry, not for your sake, +for indeed I did not think of you in the least at the moment (you +admire candor, and will now be satisfied, I hope); but because it +suited me to marry you as soon as possible, on account of certain +commercial speculations I am desirous of entering into.” Eugénie became +uneasy. + +40302m + + + +“It is just as I tell you, I assure you, and you must not be angry with +me, for you have sought this disclosure. I do not willingly enter into +arithmetical explanations with an artist like you, who fears to enter +my study lest she should imbibe disagreeable or anti-poetic impressions +and sensations. But in that same banker’s study, where you very +willingly presented yourself yesterday to ask for the thousand francs I +give you monthly for pocket-money, you must know, my dear young lady, +that many things may be learned, useful even to a girl who will not +marry. There one may learn, for instance, what, out of regard to your +nervous susceptibility, I will inform you of in the drawing-room, +namely, that the credit of a banker is his physical and moral life; +that credit sustains him as breath animates the body; and M. de Monte +Cristo once gave me a lecture on that subject, which I have never +forgotten. There we may learn that as credit sinks, the body becomes a +corpse, and this is what must happen very soon to the banker who is +proud to own so good a logician as you for his daughter.” + +But Eugénie, instead of stooping, drew herself up under the blow. +“Ruined?” said she. + +“Exactly, my daughter; that is precisely what I mean,” said Danglars, +almost digging his nails into his breast, while he preserved on his +harsh features the smile of the heartless though clever man; +“ruined—yes, that is it.” + +“Ah!” said Eugénie. + +“Yes, ruined! Now it is revealed, this secret so full of horror, as the +tragic poet says. Now, my daughter, learn from my lips how you may +alleviate this misfortune, so far as it will affect you.” + +“Oh,” cried Eugénie, “you are a bad physiognomist, if you imagine I +deplore on my own account the catastrophe of which you warn me. I +ruined? and what will that signify to me? Have I not my talent left? +Can I not, like Pasta, Malibran, Grisi, acquire for myself what you +would never have given me, whatever might have been your fortune, a +hundred or a hundred and fifty thousand livres per annum, for which I +shall be indebted to no one but myself; and which, instead of being +given as you gave me those poor twelve thousand francs, with sour looks +and reproaches for my prodigality, will be accompanied with +acclamations, with bravos, and with flowers? And if I do not possess +that talent, which your smiles prove to me you doubt, should I not +still have that ardent love of independence, which will be a substitute +for wealth, and which in my mind supersedes even the instinct of +self-preservation? No, I grieve not on my own account, I shall always +find a resource; my books, my pencils, my piano, all the things which +cost but little, and which I shall be able to procure, will remain my +own. + +“Do you think that I sorrow for Madame Danglars? Undeceive yourself +again; either I am greatly mistaken, or she has provided against the +catastrophe which threatens you, and, which will pass over without +affecting her. She has taken care for herself,—at least I hope so,—for +her attention has not been diverted from her projects by watching over +me. She has fostered my independence by professedly indulging my love +for liberty. Oh, no, sir; from my childhood I have seen too much, and +understood too much, of what has passed around me, for misfortune to +have an undue power over me. From my earliest recollections, I have +been beloved by no one—so much the worse; that has naturally led me to +love no one—so much the better—now you have my profession of faith.” + +“Then,” said Danglars, pale with anger, which was not at all due to +offended paternal love,—“then, mademoiselle, you persist in your +determination to accelerate my ruin?” + +“Your ruin? I accelerate your ruin? What do you mean? I do not +understand you.” + +“So much the better, I have a ray of hope left; listen.” + +“I am all attention,” said Eugénie, looking so earnestly at her father +that it was an effort for the latter to endure her unrelenting gaze. + +“M. Cavalcanti,” continued Danglars, “is about to marry you, and will +place in my hands his fortune, amounting to three million livres.” + +“That is admirable!” said Eugénie with sovereign contempt, smoothing +her gloves out one upon the other. + +“You think I shall deprive you of those three millions,” said Danglars; +“but do not fear it. They are destined to produce at least ten. I and a +brother banker have obtained a grant of a railway, the only industrial +enterprise which in these days promises to make good the fabulous +prospects that Law once held out to the eternally deluded Parisians, in +the fantastic Mississippi scheme. As I look at it, a millionth part of +a railway is worth fully as much as an acre of waste land on the banks +of the Ohio. We make in our case a deposit, on a mortgage, which is an +advance, as you see, since we gain at least ten, fifteen, twenty, or a +hundred livres’ worth of iron in exchange for our money. Well, within a +week I am to deposit four millions for my share; the four millions, I +promise you, will produce ten or twelve.” + +“But during my visit to you the day before yesterday, sir, which you +appear to recollect so well,” replied Eugénie, “I saw you arranging a +deposit—is not that the term?—of five millions and a half; you even +pointed it out to me in two drafts on the treasury, and you were +astonished that so valuable a paper did not dazzle my eyes like +lightning.” + +“Yes, but those five millions and a half are not mine, and are only a +proof of the great confidence placed in me; my title of popular banker +has gained me the confidence of charitable institutions, and the five +millions and a half belong to them; at any other time I should not have +hesitated to make use of them, but the great losses I have recently +sustained are well known, and, as I told you, my credit is rather +shaken. That deposit may be at any moment withdrawn, and if I had +employed it for another purpose, I should bring on me a disgraceful +bankruptcy. I do not despise bankruptcies, believe me, but they must be +those which enrich, not those which ruin. Now, if you marry M. +Cavalcanti, and I get the three millions, or even if it is thought I am +going to get them, my credit will be restored, and my fortune, which +for the last month or two has been swallowed up in gulfs which have +been opened in my path by an inconceivable fatality, will revive. Do +you understand me?” + +“Perfectly; you pledge me for three millions, do you not?” + +“The greater the amount, the more flattering it is to you; it gives you +an idea of your value.” + +“Thank you. One word more, sir; do you promise me to make what use you +can of the report of the fortune M. Cavalcanti will bring without +touching the money? This is no act of selfishness, but of delicacy. I +am willing to help rebuild your fortune, but I will not be an +accomplice in the ruin of others.” + +“But since I tell you,” cried Danglars, “that with these three +million——” + +“Do you expect to recover your position, sir, without touching those +three million?” + +“I hope so, if the marriage should take place and confirm my credit.” + +“Shall you be able to pay M. Cavalcanti the five hundred thousand +francs you promise for my dowry?” + +“He shall receive them on returning from the mayor’s20.” + +“Very well!” + +“What next? what more do you want?” + +“I wish to know if, in demanding my signature, you leave me entirely +free in my person?” + +“Absolutely.” + +“Then, as I said before, sir,—very well; I am ready to marry M. +Cavalcanti.” + +“But what are you up to?” + +“Ah, that is my affair. What advantage should I have over you, if +knowing your secret I were to tell you mine?” + +Danglars bit his lips. “Then,” said he, “you are ready to pay the +official visits, which are absolutely indispensable?” + +“Yes,” replied Eugénie. + +“And to sign the contract in three days?” + +“Yes.” + +“Then, in my turn, I also say, very well!” + +Danglars pressed his daughter’s hand in his. But, extraordinary to +relate, the father did not say, “Thank you, my child,” nor did the +daughter smile at her father. + +“Is the conference ended?” asked Eugénie, rising. + +Danglars motioned that he had nothing more to say. Five minutes +afterwards the piano resounded to the touch of Mademoiselle d’Armilly’s +fingers, and Mademoiselle Danglars was singing Brabantio’s malediction +on Desdemona. At the end of the piece Étienne entered, and announced to +Eugénie that the horses were to the carriage, and that the baroness was +waiting for her to pay her visits. We have seen them at Villefort’s; +they proceeded then on their course. + +40306m + + + + +VOLUME FIVE + +50009m + + + +50011m + + + +50019m + + + + + Chapter 96. The Contract + +Three days after the scene we have just described, namely towards five +o’clock in the afternoon of the day fixed for the signature of the +contract between Mademoiselle Eugénie Danglars and Andrea Cavalcanti, +whom the banker persisted in calling prince, a fresh breeze was +stirring the leaves in the little garden in front of the Count of Monte +Cristo’s house, and the count was preparing to go out. While his horses +were impatiently pawing the ground, held in by the coachman, who had +been seated a quarter of an hour on his box, the elegant phaeton with +which we are familiar rapidly turned the angle of the entrance-gate, +and cast out on the doorsteps M. Andrea Cavalcanti, as decked up and +gay as if he were going to marry a princess. + +He inquired after the count with his usual familiarity, and ascending +lightly to the first story met him at the top of the stairs. + +The count stopped on seeing the young man. As for Andrea, he was +launched, and when he was once launched nothing stopped him. + +“Ah, good morning, my dear count,” said he. + +“Ah, M. Andrea,” said the latter, with his half-jesting tone; “how do +you do?” + +“Charmingly, as you see. I am come to talk to you about a thousand +things; but, first tell me, were you going out or just returned?” + +“I was going out, sir.” + +“Then, in order not to hinder you, I will get up with you if you please +in your carriage, and Tom shall follow with my phaeton in tow.” + +“No,” said the count, with an imperceptible smile of contempt, for he +had no wish to be seen in the young man’s society,—“no; I prefer +listening to you here, my dear M. Andrea; we can chat better in-doors, +and there is no coachman to overhear our conversation.” + +The count returned to a small drawing-room on the first floor, sat +down, and crossing his legs motioned to the young man to take a seat +also. Andrea assumed his gayest manner. + +“You know, my dear count,” said he, “the ceremony is to take place this +evening. At nine o’clock the contract is to be signed at my +father-in-law’s.” + +“Ah, indeed?” said Monte Cristo. + +“What; is it news to you? Has not M. Danglars informed you of the +ceremony?” + +“Oh, yes,” said the count; “I received a letter from him yesterday, but +I do not think the hour was mentioned.” + +“Possibly my father-in-law trusted to its general notoriety.” + +“Well,” said Monte Cristo, “you are fortunate, M. Cavalcanti; it is a +most suitable alliance you are contracting, and Mademoiselle Danglars +is a handsome girl.” + +“Yes, indeed she is,” replied Cavalcanti, in a very modest tone. + +“Above all, she is very rich,—at least, I believe so,” said Monte +Cristo. + +“Very rich, do you think?” replied the young man. + +“Doubtless; it is said M. Danglars conceals at least half of his +fortune.” + +“And he acknowledges fifteen or twenty millions,” said Andrea with a +look sparkling with joy. + +“Without reckoning,” added Monte Cristo, “that he is on the eve of +entering into a sort of speculation already in vogue in the United +States and in England, but quite novel in France.” + +“Yes, yes, I know what you mean,—the railway, of which he has obtained +the grant, is it not?” + +“Precisely; it is generally believed he will gain ten millions by that +affair.” + +“Ten millions! Do you think so? It is magnificent!” said Cavalcanti, +who was quite confounded at the metallic sound of these golden words. + +“Without reckoning,” replied Monte Cristo, “that all his fortune will +come to you, and justly too, since Mademoiselle Danglars is an only +daughter. Besides, your own fortune, as your father assured me, is +almost equal to that of your betrothed. But enough of money matters. Do +you know, M. Andrea, I think you have managed this affair rather +skilfully?” + +“Not badly, by any means,” said the young man; “I was born for a +diplomatist.” + +“Well, you must become a diplomatist; diplomacy, you know, is something +that is not to be acquired; it is instinctive. Have you lost your +heart?” + +“Indeed, I fear it,” replied Andrea, in the tone in which he had heard +Dorante or Valère reply to Alceste21 at the Théâtre Français. + +“Is your love returned?” + +“I suppose so,” said Andrea with a triumphant smile, “since I am +accepted. But I must not forget one grand point.” + +“Which?” + +“That I have been singularly assisted.” + +“Nonsense.” + +“I have, indeed.” + +“By circumstances?” + +“No; by you.” + +“By me? Not at all, prince,” said Monte Cristo laying a marked stress +on the title, “what have I done for you? Are not your name, your social +position, and your merit sufficient?” + +“No,” said Andrea,—“no; it is useless for you to say so, count. I +maintain that the position of a man like you has done more than my +name, my social position, and my merit.” + +“You are completely mistaken, sir,” said Monte Cristo coldly, who felt +the perfidious manœuvre of the young man, and understood the bearing of +his words; “you only acquired my protection after the influence and +fortune of your father had been ascertained; for, after all, who +procured for me, who had never seen either you or your illustrious +father, the pleasure of your acquaintance?—two of my good friends, Lord +Wilmore and the Abbé Busoni. What encouraged me not to become your +surety, but to patronize you?—your father’s name, so well known in +Italy and so highly honored. Personally, I do not know you.” + +This calm tone and perfect ease made Andrea feel that he was, for the +moment, restrained by a more muscular hand than his own, and that the +restraint could not be easily broken through. + +“Oh, then my father has really a very large fortune, count?” + +“It appears so, sir,” replied Monte Cristo. + +“Do you know if the marriage settlement he promised me has come?” + +“I have been advised of it.” + +“But the three millions?” + +“The three millions are probably on the road.” + +“Then I shall really have them?” + +“Oh, well,” said the count, “I do not think you have yet known the want +of money.” + +Andrea was so surprised that he pondered the matter for a moment. Then, +arousing from his reverie: + +“Now, sir, I have one request to make to you, which you will +understand, even if it should be disagreeable to you.” + +“Proceed,” said Monte Cristo. + +“I have formed an acquaintance, thanks to my good fortune, with many +noted persons, and have, at least for the moment, a crowd of friends. +But marrying, as I am about to do, before all Paris, I ought to be +supported by an illustrious name, and in the absence of the paternal +hand some powerful one ought to lead me to the altar; now, my father is +not coming to Paris, is he?” + +“He is old, covered with wounds, and suffers dreadfully, he says, in +travelling.” + +“I understand; well, I am come to ask a favor of you.” + +“Of me?” + +“Yes, of you.” + +“And pray what may it be?” + +“Well, to take his part.” + +“Ah, my dear sir! What?—after the varied relations I have had the +happiness to sustain towards you, can it be that you know me so little +as to ask such a thing? Ask me to lend you half a million and, although +such a loan is somewhat rare, on my honor, you would annoy me less! +Know, then, what I thought I had already told you, that in +participation in this world’s affairs, more especially in their moral +aspects, the Count of Monte Cristo has never ceased to entertain the +scruples and even the superstitions of the East. I, who have a seraglio +at Cairo, one at Smyrna, and one at Constantinople, preside at a +wedding?—never!” + +“Then you refuse me?” + +“Decidedly; and were you my son or my brother I would refuse you in the +same way.” + +“But what must be done?” said Andrea, disappointed. + +“You said just now that you had a hundred friends.” + +“Very true, but you introduced me at M. Danglars’.” + +“Not at all! Let us recall the exact facts. You met him at a dinner +party at my house, and you introduced yourself at his house; that is a +totally different affair.” + +“Yes, but, by my marriage, you have forwarded that.” + +“I?—not in the least, I beg you to believe. Recollect what I told you +when you asked me to propose you. ‘Oh, I never make matches, my dear +prince, it is my settled principle.’” Andrea bit his lips. + +50025m + + + +“But, at least, you will be there?” + +“Will all Paris be there?” + +“Oh, certainly.” + +“Well, like all Paris, I shall be there too,” said the count. + +“And will you sign the contract?” + +“I see no objection to that; my scruples do not go thus far.” + +“Well, since you will grant me no more, I must be content with what you +give me. But one word more, count.” + +“What is it?” + +“Advice.” + +“Be careful; advice is worse than a service.” + +“Oh, you can give me this without compromising yourself.” + +“Tell me what it is.” + +“Is my wife’s fortune five hundred thousand livres?” + +“That is the sum M. Danglars himself announced.” + +“Must I receive it, or leave it in the hands of the notary?” + +“This is the way such affairs are generally arranged when it is wished +to do them stylishly: Your two solicitors appoint a meeting, when the +contract is signed, for the next or the following day; then they +exchange the two portions, for which they each give a receipt; then, +when the marriage is celebrated, they place the amount at your disposal +as the chief member of the alliance.” + +“Because,” said Andrea, with a certain ill-concealed uneasiness, “I +thought I heard my father-in-law say that he intended embarking our +property in that famous railway affair of which you spoke just now.” + +“Well,” replied Monte Cristo, “it will be the way, everybody says, of +trebling your fortune in twelve months. Baron Danglars is a good +father, and knows how to calculate.” + +“In that case,” said Andrea, “everything is all right, excepting your +refusal, which quite grieves me.” + +“You must attribute it only to natural scruples under similar +circumstances.” + +“Well,” said Andrea, “let it be as you wish. This evening, then, at +nine o’clock.” + +“Adieu till then.” + +Notwithstanding a slight resistance on the part of Monte Cristo, whose +lips turned pale, but who preserved his ceremonious smile, Andrea +seized the count’s hand, pressed it, jumped into his phaeton, and +disappeared. + +The four or five remaining hours before nine o’clock arrived, Andrea +employed in riding, paying visits,—designed to induce those of whom he +had spoken to appear at the banker’s in their gayest +equipages,—dazzling them by promises of shares in schemes which have +since turned every brain, and in which Danglars was just taking the +initiative. + +In fact, at half-past eight in the evening the grand salon, the gallery +adjoining, and the three other drawing-rooms on the same floor, were +filled with a perfumed crowd, who sympathized but little in the event, +but who all participated in that love of being present wherever there +is anything fresh to be seen. An Academician would say that the +entertainments of the fashionable world are collections of flowers +which attract inconstant butterflies, famished bees, and buzzing +drones. + +50025m + + + +No one could deny that the rooms were splendidly illuminated; the light +streamed forth on the gilt mouldings and the silk hangings; and all the +bad taste of decorations, which had only their richness to boast of, +shone in its splendor. Mademoiselle Eugénie was dressed with elegant +simplicity in a figured white silk dress, and a white rose half +concealed in her jet black hair was her only ornament, unaccompanied by +a single jewel. Her eyes, however, betrayed that perfect confidence +which contradicted the girlish simplicity of this modest attire. + +Madame Danglars was chatting at a short distance with Debray, +Beauchamp, and Château-Renaud. Debray was admitted to the house for +this grand ceremony, but on the same plane with everyone else, and +without any particular privilege. M. Danglars, surrounded by deputies +and men connected with the revenue, was explaining a new theory of +taxation which he intended to adopt when the course of events had +compelled the government to call him into the ministry. Andrea, on +whose arm hung one of the most consummate dandies of the Opera, was +explaining to him rather cleverly, since he was obliged to be bold to +appear at ease, his future projects, and the new luxuries he meant to +introduce to Parisian fashions with his hundred and seventy-five +thousand livres per annum. + +The crowd moved to and fro in the rooms like an ebb and flow of +turquoises, rubies, emeralds, opals, and diamonds. As usual, the oldest +women were the most decorated, and the ugliest the most conspicuous. If +there was a beautiful lily, or a sweet rose, you had to search for it, +concealed in some corner behind a mother with a turban, or an aunt with +a bird-of-paradise. + +At each moment, in the midst of the crowd, the buzzing, and the +laughter, the door-keeper’s voice was heard announcing some name well +known in the financial department, respected in the army, or +illustrious in the literary world, and which was acknowledged by a +slight movement in the different groups. But for one whose privilege it +was to agitate that ocean of human waves, how many were received with a +look of indifference or a sneer of disdain! + +At the moment when the hand of the massive time-piece, representing +Endymion asleep, pointed to nine on its golden face, and the hammer, +the faithful type of mechanical thought, struck nine times, the name of +the Count of Monte Cristo resounded in its turn, and as if by an +electric shock all the assembly turned towards the door. The count was +dressed in black and with his habitual simplicity; his white waistcoat +displayed his expansive noble chest and his black stock was singularly +noticeable because of its contrast with the deadly paleness of his +face. His only jewellery was a chain, so fine that the slender gold +thread was scarcely perceptible on his white waistcoat. + +A circle was immediately formed around the door. The count perceived at +one glance Madame Danglars at one end of the drawing-room, M. Danglars +at the other, and Eugénie in front of him. He first advanced towards +the baroness, who was chatting with Madame de Villefort, who had come +alone, Valentine being still an invalid; and without turning aside, so +clear was the road left for him, he passed from the baroness to +Eugénie, whom he complimented in such rapid and measured terms, that +the proud artist was quite struck. Near her was Mademoiselle Louise +d’Armilly, who thanked the count for the letters of introduction he had +so kindly given her for Italy, which she intended immediately to make +use of. On leaving these ladies he found himself with Danglars, who had +advanced to meet him. + +Having accomplished these three social duties, Monte Cristo stopped, +looking around him with that expression peculiar to a certain class, +which seems to say, “I have done my duty, now let others do theirs.” + +Andrea, who was in an adjoining room, had shared in the sensation +caused by the arrival of Monte Cristo, and now came forward to pay his +respects to the count. He found him completely surrounded; all were +eager to speak to him, as is always the case with those whose words are +few and weighty. The solicitors arrived at this moment and arranged +their scrawled papers on the velvet cloth embroidered with gold which +covered the table prepared for the signature; it was a gilt table +supported on lions’ claws. One of the notaries sat down, the other +remained standing. They were about to proceed to the reading of the +contract, which half Paris assembled was to sign. All took their +places, or rather the ladies formed a circle, while the gentlemen (more +indifferent to the restraints of what Boileau calls the _style +énergique_) commented on the feverish agitation of Andrea, on M. +Danglars’ riveted attention, Eugénie’s composure, and the light and +sprightly manner in which the baroness treated this important affair. + +The contract was read during a profound silence. But as soon as it was +finished, the buzz was redoubled through all the drawing-rooms; the +brilliant sums, the rolling millions which were to be at the command of +the two young people, and which crowned the display of the wedding +presents and the young lady’s diamonds, which had been made in a room +entirely appropriated for that purpose, had exercised to the full their +delusions over the envious assembly. + +Mademoiselle Danglars’ charms were heightened in the opinion of the +young men, and for the moment seemed to outvie the sun in splendor. As +for the ladies, it is needless to say that while they coveted the +millions, they thought they did not need them for themselves, as they +were beautiful enough without them. Andrea, surrounded by his friends, +complimented, flattered, beginning to believe in the reality of his +dream, was almost bewildered. The notary solemnly took the pen, +flourished it above his head, and said: + +“Gentlemen, we are about to sign the contract.” + +The baron was to sign first, then the representative of M. Cavalcanti, +senior, then the baroness, afterwards the “future couple,” as they are +styled in the abominable phraseology of legal documents. + +The baron took the pen and signed, then the representative. The +baroness approached, leaning on Madame de Villefort’s arm. + +“My dear,” said she, as she took the pen, “is it not vexatious? An +unexpected incident, in the affair of murder and theft at the Count of +Monte Cristo’s, in which he nearly fell a victim, deprives us of the +pleasure of seeing M. de Villefort.” + +“Indeed?” said M. Danglars, in the same tone in which he would have +said, “Oh, well, what do I care?” + +“As a matter of fact,” said Monte Cristo, approaching, “I am much +afraid that I am the involuntary cause of his absence.” + +“What, you, count?” said Madame Danglars, signing; “if you are, take +care, for I shall never forgive you.” + +Andrea pricked up his ears. + +“But it is not my fault, as I shall endeavor to prove.” + +Everyone listened eagerly; Monte Cristo who so rarely opened his lips, +was about to speak. + +“You remember,” said the count, during the most profound silence, “that +the unhappy wretch who came to rob me died at my house; the supposition +is that he was stabbed by his accomplice, on attempting to leave it.” + +“Yes,” said Danglars. + +“In order that his wounds might be examined he was undressed, and his +clothes were thrown into a corner, where the police picked them up, +with the exception of the waistcoat, which they overlooked.” + +Andrea turned pale, and drew towards the door; he saw a cloud rising in +the horizon, which appeared to forebode a coming storm. + +“Well, this waistcoat was discovered today, covered with blood, and +with a hole over the heart.” The ladies screamed, and two or three +prepared to faint. “It was brought to me. No one could guess what the +dirty rag could be; I alone suspected that it was the waistcoat of the +murdered man. My valet, in examining this mournful relic, felt a paper +in the pocket and drew it out; it was a letter addressed to you, +baron.” + +“To me?” cried Danglars. + +“Yes, indeed, to you; I succeeded in deciphering your name under the +blood with which the letter was stained,” replied Monte Cristo, amid +the general outburst of amazement. + +“But,” asked Madame Danglars, looking at her husband with uneasiness, +“how could that prevent M. de Villefort——” + +“In this simple way, madame,” replied Monte Cristo; “the waistcoat and +the letter were both what is termed circumstantial evidence; I +therefore sent them to the king’s attorney. You understand, my dear +baron, that legal methods are the safest in criminal cases; it was, +perhaps, some plot against you.” Andrea looked steadily at Monte Cristo +and disappeared in the second drawing-room. + +“Possibly,” said Danglars; “was not this murdered man an old +galley-slave?” + +50025m + + + +“Yes,” replied the count; “a felon named Caderousse.” Danglars turned +slightly pale; Andrea reached the anteroom beyond the little +drawing-room. + +“But go on signing,” said Monte Cristo; “I perceive that my story has +caused a general emotion, and I beg to apologize to you, baroness, and +to Mademoiselle Danglars.” + +The baroness, who had signed, returned the pen to the notary. + +“Prince Cavalcanti,” said the latter; “Prince Cavalcanti, where are +you?” + +“Andrea, Andrea,” repeated several young people, who were already on +sufficiently intimate terms with him to call him by his Christian name. + +“Call the prince; inform him that it is his turn to sign,” cried +Danglars to one of the floorkeepers. + +But at the same instant the crowd of guests rushed in alarm into the +principal salon as if some frightful monster had entered the +apartments, _quærens quem devoret_. There was, indeed, reason to +retreat, to be alarmed, and to scream. An officer was placing two +soldiers at the door of each drawing-room, and was advancing towards +Danglars, preceded by a commissary of police, girded with his scarf. +Madame Danglars uttered a scream and fainted. Danglars, who thought +himself threatened (certain consciences are never calm),—Danglars even +before his guests showed a countenance of abject terror. + +“What is the matter, sir?” asked Monte Cristo, advancing to meet the +commissioner. + +“Which of you gentlemen,” asked the magistrate, without replying to the +count, “answers to the name of Andrea Cavalcanti?” + +A cry of astonishment was heard from all parts of the room. They +searched; they questioned. + +“But who then is Andrea Cavalcanti?” asked Danglars in amazement. + +“A galley-slave, escaped from confinement at Toulon.” + +“And what crime has he committed?” + +“He is accused,” said the commissary with his inflexible voice, “of +having assassinated the man named Caderousse, his former companion in +prison, at the moment he was making his escape from the house of the +Count of Monte Cristo.” + +Monte Cristo cast a rapid glance around him. Andrea was gone. + + + + Chapter 97. The Departure for Belgium + +A few minutes after the scene of confusion produced in the salons of M. +Danglars by the unexpected appearance of the brigade of soldiers, and +by the disclosure which had followed, the mansion was deserted with as +much rapidity as if a case of plague or of cholera morbus had broken +out among the guests. + +In a few minutes, through all the doors, down all the staircases, by +every exit, everyone hastened to retire, or rather to fly; for it was a +situation where the ordinary condolences,—which even the best friends +are so eager to offer in great catastrophes,—were seen to be utterly +futile. There remained in the banker’s house only Danglars, closeted in +his study, and making his statement to the officer of gendarmes; Madame +Danglars, terrified, in the boudoir with which we are acquainted; and +Eugénie, who with haughty air and disdainful lip had retired to her +room with her inseparable companion, Mademoiselle Louise d’Armilly. + +As for the numerous servants (more numerous that evening than usual, +for their number was augmented by cooks and butlers from the Café de +Paris), venting on their employers their anger at what they termed the +insult to which they had been subjected, they collected in groups in +the hall, in the kitchens, or in their rooms, thinking very little of +their duty, which was thus naturally interrupted. Of all this +household, only two persons deserve our notice; these are Mademoiselle +Eugénie Danglars and Mademoiselle Louise d’Armilly. + +The betrothed had retired, as we said, with haughty air, disdainful +lip, and the demeanor of an outraged queen, followed by her companion, +who was paler and more disturbed than herself. On reaching her room +Eugénie locked her door, while Louise fell on a chair. + +“Ah, what a dreadful thing,” said the young musician; “who would have +suspected it? M. Andrea Cavalcanti a murderer—a galley-slave escaped—a +convict!” + +An ironical smile curled the lip of Eugénie. “In truth, I was fated,” +said she. “I escaped the Morcerf only to fall into the Cavalcanti.” + +“Oh, do not confound the two, Eugénie.” + +“Hold your tongue! The men are all infamous, and I am happy to be able +now to do more than detest them—I despise them.” + +“What shall we do?” asked Louise. + +“What shall we do?” + +“Yes.” + +“Why, the same we had intended doing three days since—set off.” + +“What?—although you are not now going to be married, you intend +still——” + +“Listen, Louise. I hate this life of the fashionable world, always +ordered, measured, ruled, like our music-paper. What I have always +wished for, desired, and coveted, is the life of an artist, free and +independent, relying only on my own resources, and accountable only to +myself. Remain here? What for?—that they may try, a month hence, to +marry me again; and to whom?—M. Debray, perhaps, as it was once +proposed. No, Louise, no! This evening’s adventure will serve for my +excuse. I did not seek one, I did not ask for one. God sends me this, +and I hail it joyfully!” + +“How strong and courageous you are!” said the fair, frail girl to her +brunette companion. + +“Did you not yet know me? Come, Louise, let us talk of our affairs. The +post-chaise——” + +“Was happily bought three days since.” + +“Have you had it sent where we are to go for it?” + +“Yes.” + +“Our passport?” + +“Here it is.” + +And Eugénie, with her usual precision, opened a printed paper, and +read: + +“M. Léon d’Armilly, twenty years of age; profession, artist; hair +black, eyes black; travelling with his sister.” + +“Capital! How did you get this passport?” + +“When I went to ask M. de Monte Cristo for letters to the directors of +the theatres at Rome and Naples, I expressed my fears of travelling as +a woman; he perfectly understood them, and undertook to procure for me +a man’s passport, and two days after I received this, to which I have +added with my own hand, ‘travelling with his sister.’” + +50035m + + + +“Well,” said Eugénie cheerfully, “we have then only to pack up our +trunks; we shall start the evening of the signing of the contract, +instead of the evening of the wedding—that is all.” + +“But consider the matter seriously, Eugénie!” + +“Oh, I am done with considering! I am tired of hearing only of market +reports, of the end of the month, of the rise and fall of Spanish +funds, of Haitian bonds. Instead of that, Louise—do you +understand?—air, liberty, melody of birds, plains of Lombardy, Venetian +canals, Roman palaces, the Bay of Naples. How much have we, Louise?” + +The young girl to whom this question was addressed drew from an inlaid +secretaire a small portfolio with a lock, in which she counted +twenty-three bank-notes. + +“Twenty-three thousand francs,” said she. + +“And as much, at least, in pearls, diamonds, and jewels,” said Eugénie. +“We are rich. With forty-five thousand francs we can live like +princesses for two years, and comfortably for four; but before six +months—you with your music, and I with my voice—we shall double our +capital. Come, you shall take charge of the money, I of the jewel-box; +so that if one of us had the misfortune to lose her treasure, the other +would still have hers left. Now, the portmanteau—let us make haste—the +portmanteau!” + +“Stop!” said Louise, going to listen at Madame Danglars’ door. + +“What do you fear?” + +“That we may be discovered.” + +“The door is locked.” + +“They may tell us to open it.” + +“They may if they like, but we will not.” + +“You are a perfect Amazon, Eugénie!” And the two young girls began to +heap into a trunk all the things they thought they should require. + +“There now,” said Eugénie, “while I change my costume do you lock the +portmanteau.” Louise pressed with all the strength of her little hands +on the top of the portmanteau. + +“But I cannot,” said she; “I am not strong enough; do you shut it.” + +“Ah, you do well to ask,” said Eugénie, laughing; “I forgot that I was +Hercules, and you only the pale Omphale!” + +And the young girl, kneeling on the top, pressed the two parts of the +portmanteau together, and Mademoiselle d’Armilly passed the bolt of the +padlock through. When this was done, Eugénie opened a drawer, of which +she kept the key, and took from it a wadded violet silk travelling +cloak. + +“Here,” said she, “you see I have thought of everything; with this +cloak you will not be cold.” + +“But you?” + +“Oh, I am never cold, you know! Besides, with these men’s clothes——” + +“Will you dress here?” + +“Certainly.” + +“Shall you have time?” + +“Do not be uneasy, you little coward! All our servants are busy, +discussing the grand affair. Besides, what is there astonishing, when +you think of the grief I ought to be in, that I shut myself up?—tell +me!” + +“No, truly—you comfort me.” + +“Come and help me.” + +From the same drawer she took a man’s complete costume, from the boots +to the coat, and a provision of linen, where there was nothing +superfluous, but every requisite. Then, with a promptitude which +indicated that this was not the first time she had amused herself by +adopting the garb of the opposite sex, Eugénie drew on the boots and +pantaloons, tied her cravat, buttoned her waistcoat up to the throat, +and put on a coat which admirably fitted her beautiful figure. + +“Oh, that is very good—indeed, it is very good!” said Louise, looking +at her with admiration; “but that beautiful black hair, those +magnificent braids, which made all the ladies sigh with envy,—will they +go under a man’s hat like the one I see down there?” + +“You shall see,” said Eugénie. And with her left hand seizing the thick +mass, which her long fingers could scarcely grasp, she took in her +right hand a pair of long scissors, and soon the steel met through the +rich and splendid hair, which fell in a cluster at her feet as she +leaned back to keep it from her coat. Then she grasped the front hair, +which she also cut off, without expressing the least regret; on the +contrary, her eyes sparkled with greater pleasure than usual under her +ebony eyebrows. + +50039m + + + +“Oh, the magnificent hair!” said Louise, with regret. + +“And am I not a hundred times better thus?” cried Eugénie, smoothing +the scattered curls of her hair, which had now quite a masculine +appearance; “and do you not think me handsomer so?” + +“Oh, you are beautiful—always beautiful!” cried Louise. “Now, where are +you going?” + +“To Brussels, if you like; it is the nearest frontier. We can go to +Brussels, Liège, Aix-la-Chapelle; then up the Rhine to Strasbourg. We +will cross Switzerland, and go down into Italy by the Saint-Gothard. +Will that do?” + +“Yes.” + +“What are you looking at?” + +“I am looking at you; indeed you are adorable like that! One would say +you were carrying me off.” + +“And they would be right, _pardieu!_” + +“Oh, I think you swore, Eugénie.” + +And the two young girls, whom everyone might have thought plunged in +grief, the one on her own account, the other from interest in her +friend, burst out laughing, as they cleared away every visible trace of +the disorder which had naturally accompanied the preparations for their +escape. Then, having blown out the lights, the two fugitives, looking +and listening eagerly, with outstretched necks, opened the door of a +dressing-room which led by a side staircase down to the yard,—Eugénie +going first, and holding with one arm the portmanteau, which by the +opposite handle Mademoiselle d’Armilly scarcely raised with both hands. +The yard was empty; the clock was striking twelve. The porter was not +yet gone to bed. Eugénie approached softly, and saw the old man +sleeping soundly in an armchair in his lodge. She returned to Louise, +took up the portmanteau, which she had placed for a moment on the +ground, and they reached the archway under the shadow of the wall. + +Eugénie concealed Louise in an angle of the gateway, so that if the +porter chanced to awake he might see but one person. Then placing +herself in the full light of the lamp which lit the yard: + +“Gate!” cried she, with her finest contralto voice, and rapping at the +window. + +The porter got up as Eugénie expected, and even advanced some steps to +recognize the person who was going out, but seeing a young man striking +his boot impatiently with his riding-whip, he opened it immediately. +Louise slid through the half-open gate like a snake, and bounded +lightly forward. Eugénie, apparently calm, although in all probability +her heart beat somewhat faster than usual, went out in her turn. + +A porter was passing and they gave him the portmanteau; then the two +young girls, having told him to take it to No. 36, Rue de la Victoire, +walked behind this man, whose presence comforted Louise. As for +Eugénie, she was as strong as a Judith or a Delilah. They arrived at +the appointed spot. Eugénie ordered the porter to put down the +portmanteau, gave him some pieces of money, and having rapped at the +shutter sent him away. The shutter where Eugénie had rapped was that of +a little laundress, who had been previously warned, and was not yet +gone to bed. She opened the door. + +“Mademoiselle,” said Eugénie, “let the porter get the post-chaise from +the coach-house, and fetch some post-horses from the hotel. Here are +five francs for his trouble.” + +“Indeed,” said Louise, “I admire you, and I could almost say respect +you.” The laundress looked on in astonishment, but as she had been +promised twenty louis, she made no remark. + +In a quarter of an hour the porter returned with a post-boy and horses, +which were harnessed, and put in the post-chaise in a minute, while the +porter fastened the portmanteau on with the assistance of a cord and +strap. + +“Here is the passport,” said the postilion, “which way are we going, +young gentleman?” + +“To Fontainebleau,” replied Eugénie with an almost masculine voice. + +“What do you say?” said Louise. + +“I am giving them the slip,” said Eugénie; “this woman to whom we have +given twenty louis may betray us for forty; we will soon alter our +direction.” + +And the young girl jumped into the britzka, which was admirably +arranged for sleeping in, without scarcely touching the step. + +“You are always right,” said the music teacher, seating herself by the +side of her friend. + +A quarter of an hour afterwards the postilion, having been put in the +right road, passed with a crack of his whip through the gateway of the +Barrière Saint-Martin. + +“Ah,” said Louise, breathing freely, “here we are out of Paris.” + +“Yes, my dear, the abduction is an accomplished fact,” replied Eugénie. + +“Yes, and without violence,” said Louise. + +“I shall bring that forward as an extenuating circumstance,” replied +Eugénie. + +These words were lost in the noise which the carriage made in rolling +over the pavement of La Villette. M. Danglars no longer had a daughter. + + + + Chapter 98. The Bell and Bottle Tavern + +And now let us leave Mademoiselle Danglars and her friend pursuing +their way to Brussels, and return to poor Andrea Cavalcanti, so +inopportunely interrupted in his rise to fortune. Notwithstanding his +youth, Master Andrea was a very skilful and intelligent boy. We have +seen that on the first rumor which reached the salon he had gradually +approached the door, and crossing two or three rooms at last +disappeared. But we have forgotten to mention one circumstance, which +nevertheless ought not to be omitted; in one of the rooms he crossed, +the _trousseau_ of the bride-elect was on exhibition. There were +caskets of diamonds, cashmere shawls, Valenciennes lace, English veils, +and in fact all the tempting things, the bare mention of which makes +the hearts of young girls bound with joy, and which is called the +_corbeille_.22 Now, in passing through this room, Andrea proved himself +not only to be clever and intelligent, but also provident, for he +helped himself to the most valuable of the ornaments before him. + +Furnished with this plunder, Andrea leaped with a lighter heart from +the window, intending to slip through the hands of the gendarmes. Tall +and well proportioned as an ancient gladiator, and muscular as a +Spartan, he walked for a quarter of an hour without knowing where to +direct his steps, actuated by the sole idea of getting away from the +spot where if he lingered he knew that he would surely be taken. Having +passed through the Rue du Mont-Blanc, guided by the instinct which +leads thieves always to take the safest path, he found himself at the +end of the Rue La Fayette. There he stopped, breathless and panting. He +was quite alone; on one side was the vast wilderness of the +Saint-Lazare, on the other, Paris enshrouded in darkness. + +“Am I to be captured?” he cried; “no, not if I can use more activity +than my enemies. My safety is now a mere question of speed.” + +At this moment he saw a cab at the top of the Faubourg Poissonnière. +The dull driver, smoking his pipe, was plodding along toward the limits +of the Faubourg Saint-Denis, where no doubt he ordinarily had his +station. + +“Ho, friend!” said Benedetto. + +“What do you want, sir?” asked the driver. + +“Is your horse tired?” + +“Tired? oh, yes, tired enough—he has done nothing the whole of this +blessed day! Four wretched fares, and twenty sous over, making in all +seven francs, are all that I have earned, and I ought to take ten to +the owner.” + +“Will you add these twenty francs to the seven you have?” + +“With pleasure, sir; twenty francs are not to be despised. Tell me what +I am to do for this.” + +“A very easy thing, if your horse isn’t tired.” + +“I tell you he’ll go like the wind,—only tell me which way to drive.” + +“Towards the Louvres.” + +“Ah, I know the way—you get good sweetened rum over there.” + +“Exactly so; I merely wish to overtake one of my friends, with whom I +am going to hunt tomorrow at Chapelle-en-Serval. He should have waited +for me here with a cabriolet till half-past eleven; it is twelve, and, +tired of waiting, he must have gone on.” + +“It is likely.” + +“Well, will you try and overtake him?” + +“Nothing I should like better.” + +“If you do not overtake him before we reach Bourget you shall have +twenty francs; if not before Louvres, thirty.” + +“And if we do overtake him?” + +“Forty,” said Andrea, after a moment’s hesitation, at the end of which +he remembered that he might safely promise. + +“That’s all right,” said the man; “hop in, and we’re off! Who-o-o-pla!” + +Andrea got into the cab, which passed rapidly through the Faubourg +Saint-Denis, along the Faubourg Saint-Martin, crossed the barrier, and +threaded its way through the interminable Villette. They never overtook +the chimerical friend, yet Andrea frequently inquired of people on foot +whom he passed and at the inns which were not yet closed, for a green +cabriolet and bay horse; and as there are a great many cabriolets to be +seen on the road to the Low Countries, and as nine-tenths of them are +green, the inquiries increased at every step. Everyone had just seen it +pass; it was only five hundred, two hundred, one hundred steps in +advance; at length they reached it, but it was not the friend. Once the +cab was also passed by a calash rapidly whirled along by two +post-horses. + +“Ah,” said Cavalcanti to himself, “if I only had that britzka, those +two good post-horses, and above all the passport that carries them on!” +And he sighed deeply. + +The calash contained Mademoiselle Danglars and Mademoiselle d’Armilly. + +“Hurry, hurry!” said Andrea, “we must overtake him soon.” + +And the poor horse resumed the desperate gallop it had kept up since +leaving the barrier, and arrived steaming at Louvres. + +“Certainly,” said Andrea, “I shall not overtake my friend, but I shall +kill your horse, therefore I had better stop. Here are thirty francs; I +will sleep at the _Cheval Rouge_, and will secure a place in the first +coach. Good-night, friend.” + +And Andrea, after placing six pieces of five francs each in the man’s +hand, leaped lightly on to the pathway. The cabman joyfully pocketed +the sum, and turned back on his road to Paris. Andrea pretended to go +towards the hotel of the _Cheval Rouge_, but after leaning an instant +against the door, and hearing the last sound of the cab, which was +disappearing from view, he went on his road, and with a lusty stride +soon traversed the space of two leagues. Then he rested; he must be +near Chapelle-en-Serval, where he pretended to be going. + +It was not fatigue that stayed Andrea here; it was that he might form +some resolution, adopt some plan. It would be impossible to make use of +a diligence, equally so to engage post-horses; to travel either way a +passport was necessary. It was still more impossible to remain in the +department of the Oise, one of the most open and strictly guarded in +France; this was quite out of the question, especially to a man like +Andrea, perfectly conversant with criminal matters. + +He sat down by the side of the moat, buried his face in his hands and +reflected. Ten minutes after he raised his head; his resolution was +made. He threw some dust over the topcoat, which he had found time to +unhook from the antechamber and button over his ball costume, and going +to Chapelle-en-Serval he knocked loudly at the door of the only inn in +the place. + +The host opened. + +“My friend,” said Andrea, “I was coming from Mortefontaine to Senlis, +when my horse, which is a troublesome creature, stumbled and threw me. +I must reach Compiègne tonight, or I shall cause deep anxiety to my +family. Could you let me hire a horse of you?” + +An innkeeper has always a horse to let, whether it be good or bad. The +host called the stable-boy, and ordered him to saddle _Le Blanc_ then +he awoke his son, a child of seven years, whom he ordered to ride +before the gentleman and bring back the horse. Andrea gave the +innkeeper twenty francs, and in taking them from his pocket dropped a +visiting card. This belonged to one of his friends at the Café de +Paris, so that the innkeeper, picking it up after Andrea had left, was +convinced that he had let his horse to the Count of Mauléon, 25 Rue +Saint-Dominique, that being the name and address on the card. + +_Le Blanc_ was not a fast animal, but he kept up an easy, steady pace; +in three hours and a half Andrea had traversed the nine leagues which +separated him from Compiègne, and four o’clock struck as he reached the +place where the coaches stop. There is an excellent tavern at +Compiègne, well remembered by those who have ever been there. Andrea, +who had often stayed there in his rides about Paris, recollected the +Bell and Bottle inn; he turned around, saw the sign by the light of a +reflected lamp, and having dismissed the child, giving him all the +small coin he had about him, he began knocking at the door, very +reasonably concluding that having now three or four hours before him he +had best fortify himself against the fatigues of the morrow by a sound +sleep and a good supper. A waiter opened the door. + +“My friend,” said Andrea, “I have been dining at Saint-Jean-aux-Bois, +and expected to catch the coach which passes by at midnight, but like a +fool I have lost my way, and have been walking for the last four hours +in the forest. Show me into one of those pretty little rooms which +overlook the court, and bring me a cold fowl and a bottle of Bordeaux.” + +The waiter had no suspicions; Andrea spoke with perfect composure, he +had a cigar in his mouth, and his hands in the pocket of his top coat; +his clothes were fashionably made, his chin smooth, his boots +irreproachable; he looked merely as if he had stayed out very late, +that was all. While the waiter was preparing his room, the hostess +arose; Andrea assumed his most charming smile, and asked if he could +have No. 3, which he had occupied on his last stay at Compiègne. +Unfortunately, No. 3 was engaged by a young man who was travelling with +his sister. Andrea appeared in despair, but consoled himself when the +hostess assured him that No. 7, prepared for him, was situated +precisely the same as No. 3, and while warming his feet and chatting +about the last races at Chantilly, he waited until they announced his +room to be ready. + +Andrea had not spoken without cause of the pretty rooms looking out +upon the court of the Bell Hotel, which with its triple galleries like +those of a theatre, with the jessamine and clematis twining round the +light columns, forms one of the prettiest entrances to an inn that you +can imagine. The fowl was tender, the wine old, the fire clear and +sparkling, and Andrea was surprised to find himself eating with as good +an appetite as though nothing had happened. Then he went to bed and +almost immediately fell into that deep sleep which is sure to visit men +of twenty years of age, even when they are torn with remorse. Now, here +we are obliged to own that Andrea ought to have felt remorse, but that +he did not. + +This was the plan which had appealed to him to afford the best chance +of his security. Before daybreak he would awake, leave the inn after +rigorously paying his bill, and reaching the forest, he would, under +pretence of making studies in painting, test the hospitality of some +peasants, procure himself the dress of a woodcutter and a hatchet, +casting off the lion’s skin to assume that of the woodman; then, with +his hands covered with dirt, his hair darkened by means of a leaden +comb, his complexion embrowned with a preparation for which one of his +old comrades had given him the recipe, he intended, by following the +wooded districts, to reach the nearest frontier, walking by night and +sleeping in the day in the forests and quarries, and only entering +inhabited regions to buy a loaf from time to time. + +Once past the frontier, Andrea proposed making money of his diamonds; +and by uniting the proceeds to ten bank-notes he always carried about +with him in case of accident, he would then find himself possessor of +about 50,000 livres, which he philosophically considered as no very +deplorable condition after all. Moreover, he reckoned much on the +interest of the Danglars to hush up the rumor of their own +misadventures. These were the reasons which, added to the fatigue, +caused Andrea to sleep so soundly. In order that he might wake early he +did not close the shutters, but contented himself with bolting the door +and placing on the table an unclasped and long-pointed knife, whose +temper he well knew, and which was never absent from him. + +About seven in the morning Andrea was awakened by a ray of sunlight, +which played, warm and brilliant, upon his face. In all well-organized +brains, the predominating idea—and there always is one—is sure to be +the last thought before sleeping, and the first upon waking in the +morning. Andrea had scarcely opened his eyes when his predominating +idea presented itself, and whispered in his ear that he had slept too +long. He jumped out of bed and ran to the window. A gendarme was +crossing the court. A gendarme is one of the most striking objects in +the world, even to a man void of uneasiness; but for one who has a +timid conscience, and with good cause too, the yellow, blue, and white +uniform is really very alarming. + +“Why is that gendarme there?” asked Andrea of himself. + +Then, all at once, he replied, with that logic which the reader has, +doubtless, remarked in him, “There is nothing astonishing in seeing a +gendarme at an inn; instead of being astonished, let me dress myself.” +And the youth dressed himself with a facility his valet de chambre had +failed to rob him of during the two months of fashionable life he had +led in Paris. + +“Now then,” said Andrea, while dressing himself, “I’ll wait till he +leaves, and then I’ll slip away.” + +50047m + + + +And, saying this, Andrea, who had now put on his boots and cravat, +stole gently to the window, and a second time lifted up the muslin +curtain. Not only was the first gendarme still there, but the young man +now perceived a second yellow, blue, and white uniform at the foot of +the staircase, the only one by which he could descend, while a third, +on horseback, holding a musket in his fist, was posted as a sentinel at +the great street-door which alone afforded the means of egress. The +appearance of the third gendarme settled the matter, for a crowd of +curious loungers was extended before him, effectually blocking the +entrance to the hotel. + +“They’re after me!” was Andrea’s first thought. “_Diable!_” + +A pallor overspread the young man’s forehead, and he looked around him +with anxiety. His room, like all those on the same floor, had but one +outlet to the gallery in the sight of everybody. “I am lost!” was his +second thought; and, indeed, for a man in Andrea’s situation, an arrest +meant the assizes, trial, and death,—death without mercy or delay. + +For a moment he convulsively pressed his head within his hands, and +during that brief period he became nearly mad with terror; but soon a +ray of hope glimmered in the multitude of thoughts which bewildered his +mind, and a faint smile played upon his white lips and pallid cheeks. +He looked around and saw the objects of his search upon the +chimney-piece; they were a pen, ink, and paper. With forced composure +he dipped the pen in the ink, and wrote the following lines upon a +sheet of paper: + +“I have no money to pay my bill, but I am not a dishonest man; I leave +behind me as a pledge this pin, worth ten times the amount. I shall be +excused for leaving at daybreak, for I was ashamed.” + +He then drew the pin from his cravat and placed it on the paper. This +done, instead of leaving the door fastened, he drew back the bolts and +even placed the door ajar, as though he had left the room, forgetting +to close it, and slipping into the chimney like a man accustomed to +that kind of gymnastic exercise, after replacing the chimney-board, +which represented Achilles with Deidamia, and effacing the very marks +of his feet upon the ashes, he commenced climbing the hollow tunnel, +which afforded him the only means of escape left. + +At this precise time, the first gendarme Andrea had noticed walked +upstairs, preceded by the commissary of police, and supported by the +second gendarme who guarded the staircase and was himself reinforced by +the one stationed at the door. + +Andrea was indebted for this visit to the following circumstances. At +daybreak, the telegraphs were set at work in all directions, and almost +immediately the authorities in every district had exerted their utmost +endeavors to arrest the murderer of Caderousse. Compiègne, that royal +residence and fortified town, is well furnished with authorities, +gendarmes, and commissaries of police; they therefore began operations +as soon as the telegraphic despatch arrived, and the Bell and Bottle +being the best-known hotel in the town, they had naturally directed +their first inquiries there. + +Now, besides the reports of the sentinels guarding the Hôtel de Ville, +which is next door to the Bell and Bottle, it had been stated by others +that a number of travellers had arrived during the night. The sentinel +who was relieved at six o’clock in the morning, remembered perfectly +that, just as he was taking his post a few minutes past four, a young +man arrived on horseback, with a little boy before him. The young man, +having dismissed the boy and horse, knocked at the door of the hotel, +which was opened, and again closed after his entrance. This late +arrival had attracted much suspicion, and the young man being no other +than Andrea, the commissary and gendarme, who was a brigadier, directed +their steps towards his room. They found the door ajar. + +“Oh, oh,” said the brigadier, who thoroughly understood the trick; “a +bad sign to find the door open! I would rather find it triply bolted.” + +And, indeed, the little note and pin upon the table confirmed, or +rather corroborated, the sad truth. Andrea had fled. We say +corroborated, because the brigadier was too experienced to be convinced +by a single proof. He glanced around, looked in the bed, shook the +curtains, opened the closets, and finally stopped at the chimney. +Andrea had taken the precaution to leave no traces of his feet in the +ashes, but still it was an outlet, and in this light was not to be +passed over without serious investigation. + +The brigadier sent for some sticks and straw, and having filled the +chimney with them, set a light to it. The fire crackled, and the smoke +ascended like the dull vapor from a volcano; but still no prisoner fell +down, as they expected. The fact was, that Andrea, at war with society +ever since his youth, was quite as deep as a gendarme, even though he +were advanced to the rank of brigadier, and quite prepared for the +fire, he had climbed out on the roof and was crouching down against the +chimney-pots. + +50049m + + + +At one time he thought he was saved, for he heard the brigadier exclaim +in a loud voice, to the two gendarmes, “He is not here!” But venturing +to peep, he perceived that the latter, instead of retiring, as might +have been reasonably expected upon this announcement, were watching +with increased attention. + +It was now his turn to look about him; the Hôtel de Ville, a massive +sixteenth century building, was on his right; anyone could descend from +the openings in the tower, and examine every corner of the roof below, +and Andrea expected momentarily to see the head of a gendarme appear at +one of these openings. If once discovered, he knew he would be lost, +for the roof afforded no chance of escape; he therefore resolved to +descend, not through the same chimney by which he had come up, but by a +similar one conducting to another room. + +He looked around for a chimney from which no smoke issued, and having +reached it, he disappeared through the orifice without being seen by +anyone. At the same minute, one of the little windows of the Hôtel de +Ville was thrown open, and the head of a gendarme appeared. For an +instant it remained motionless as one of the stone decorations of the +building, then after a long sigh of disappointment the head +disappeared. The brigadier, calm and dignified as the law he +represented, passed through the crowd, without answering the thousand +questions addressed to him, and re-entered the hotel. + +“Well?” asked the two gendarmes. + +“Well, my boys,” said the brigadier, “the brigand must really have +escaped early this morning; but we will send to the Villers-Coterets +and Noyon roads, and search the forest, when we shall catch him, no +doubt.” + +The honorable functionary had scarcely expressed himself thus, in that +intonation which is peculiar to brigadiers of the gendarmerie, when a +loud scream, accompanied by the violent ringing of a bell, resounded +through the court of the hotel. + +“Ah, what is that?” cried the brigadier. + +“Some traveller seems impatient,” said the host. “What number was it +that rang?” + +“Number 3.” + +“Run, waiter!” + +At this moment the screams and ringing were redoubled. + +“Aha!” said the brigadier, stopping the servant, “the person who is +ringing appears to want something more than a waiter; we will attend +upon him with a gendarme. Who occupies Number 3?” + +“The little fellow who arrived last night in a post-chaise with his +sister, and who asked for an apartment with two beds.” + +The bell here rang for the third time, with another shriek of anguish. + +“Follow me, Mr. Commissary!” said the brigadier; “tread in my steps.” + +“Wait an instant,” said the host; “Number 3 has two staircases,—inside +and outside.” + +“Good,” said the brigadier. “I will take charge of the inside one. Are +the carbines loaded?” + +“Yes, brigadier.” + +“Well, you guard the exterior, and if he attempts to fly, fire upon +him; he must be a great criminal, from what the telegraph says.” + +The brigadier, followed by the commissary, disappeared by the inside +staircase, accompanied by the noise which his assertions respecting +Andrea had excited in the crowd. + +This is what had happened: Andrea had very cleverly managed to descend +two-thirds of the chimney, but then his foot slipped, and +notwithstanding his endeavors, he came into the room with more speed +and noise than he intended. It would have signified little had the room +been empty, but unfortunately it was occupied. Two ladies, sleeping in +one bed, were awakened by the noise, and fixing their eyes upon the +spot whence the sound proceeded, they saw a man. One of these ladies, +the fair one, uttered those terrible shrieks which resounded through +the house, while the other, rushing to the bell-rope, rang with all her +strength. Andrea, as we can see, was surrounded by misfortune. + +“For pity’s sake,” he cried, pale and bewildered, without seeing whom +he was addressing,—“for pity’s sake do not call assistance! Save me!—I +will not harm you.” + +“Andrea, the murderer!” cried one of the ladies. + +“Eugénie! Mademoiselle Danglars!” exclaimed Andrea, stupefied. + +“Help, help!” cried Mademoiselle d’Armilly, taking the bell from her +companion’s hand, and ringing it yet more violently. + +“Save me, I am pursued!” said Andrea, clasping his hands. “For pity, +for mercy’s sake do not deliver me up!” + +“It is too late, they are coming,” said Eugénie. + +“Well, conceal me somewhere; you can say you were needlessly alarmed; +you can turn their suspicions and save my life!” + +50053m + + + +The two ladies, pressing closely to one another, and drawing the +bedclothes tightly around them, remained silent to this supplicating +voice, repugnance and fear taking possession of their minds. + +“Well, be it so,” at length said Eugénie; “return by the same road you +came, and we will say nothing about you, unhappy wretch.” + +“Here he is, here he is!” cried a voice from the landing; “here he is! +I see him!” + +The brigadier had put his eye to the keyhole, and had discovered Andrea +in a posture of entreaty. A violent blow from the butt end of the +musket burst open the lock, two more forced out the bolts, and the +broken door fell in. Andrea ran to the other door, leading to the +gallery, ready to rush out; but he was stopped short, and he stood with +his body a little thrown back, pale, and with the useless knife in his +clenched hand. + +“Fly, then!” cried Mademoiselle d’Armilly, whose pity returned as her +fears diminished; “fly!” + +“Or kill yourself!” said Eugénie (in a tone which a Vestal in the +amphitheatre would have used, when urging the victorious gladiator to +finish his vanquished adversary). Andrea shuddered, and looked on the +young girl with an expression which proved how little he understood +such ferocious honor. + +“Kill myself?” he cried, throwing down his knife; “why should I do so?” + +“Why, you said,” answered Mademoiselle Danglars, “that you would be +condemned to die like the worst criminals.” + +50055m + + + +“Bah,” said Cavalcanti, crossing his arms, “one has friends.” + +The brigadier advanced to him, sword in hand. + +“Come, come,” said Andrea, “sheathe your sword, my fine fellow; there +is no occasion to make such a fuss, since I give myself up;” and he +held out his hands to be manacled. + +The two girls looked with horror upon this shameful metamorphosis, the +man of the world shaking off his covering and appearing as a +galley-slave. Andrea turned towards them, and with an impertinent smile +asked, “Have you any message for your father, Mademoiselle Danglars, +for in all probability I shall return to Paris?” + +Eugénie covered her face with her hands. + +“Oh, oh!” said Andrea, “you need not be ashamed, even though you did +post after me. Was I not nearly your husband?” + +50056m + + + +And with this raillery Andrea went out, leaving the two girls a prey to +their own feelings of shame, and to the comments of the crowd. An hour +after they stepped into their calash, both dressed in feminine attire. +The gate of the hotel had been closed to screen them from sight, but +they were forced, when the door was open, to pass through a throng of +curious glances and whispering voices. + +Eugénie closed her eyes; but though she could not see, she could hear, +and the sneers of the crowd reached her in the carriage. + +“Oh, why is not the world a wilderness?” she exclaimed, throwing +herself into the arms of Mademoiselle d’Armilly, her eyes sparkling +with the same kind of rage which made Nero wish that the Roman world +had but one neck, that he might sever it at a single blow. + +The next day they stopped at the Hôtel de Flandre, at Brussels. The +same evening Andrea was incarcerated in the Conciergerie. + + + + Chapter 99. The Law + +We have seen how quietly Mademoiselle Danglars and Mademoiselle +d’Armilly accomplished their transformation and flight; the fact being +that everyone was too much occupied in his or her own affairs to think +of theirs. + +We will leave the banker contemplating the enormous magnitude of his +debt before the phantom of bankruptcy, and follow the baroness, who +after being momentarily crushed under the weight of the blow which had +struck her, had gone to seek her usual adviser, Lucien Debray. The +baroness had looked forward to this marriage as a means of ridding her +of a guardianship which, over a girl of Eugénie’s character, could not +fail to be rather a troublesome undertaking; for in the tacit relations +which maintain the bond of family union, the mother, to maintain her +ascendancy over her daughter, must never fail to be a model of wisdom +and a type of perfection. + +Now, Madame Danglars feared Eugénie’s sagacity and the influence of +Mademoiselle d’Armilly; she had frequently observed the contemptuous +expression with which her daughter looked upon Debray,—an expression +which seemed to imply that she understood all her mother’s amorous and +pecuniary relationships with the intimate secretary; moreover, she saw +that Eugénie detested Debray, not only because he was a source of +dissension and scandal under the paternal roof, but because she had at +once classed him in that catalogue of bipeds whom Plato endeavors to +withdraw from the appellation of men, and whom Diogenes designated as +animals upon two legs without feathers. + +Unfortunately, in this world of ours, each person views things through +a certain medium, and so is prevented from seeing in the same light as +others, and Madame Danglars, therefore, very much regretted that the +marriage of Eugénie had not taken place, not only because the match was +good, and likely to insure the happiness of her child, but because it +would also set her at liberty. She ran therefore to Debray, who, after +having, like the rest of Paris, witnessed the contract scene and the +scandal attending it, had retired in haste to his club, where he was +chatting with some friends upon the events which served as a subject of +conversation for three-fourths of that city known as the capital of the +world. + +At the precise time when Madame Danglars, dressed in black and +concealed in a long veil, was ascending the stairs leading to Debray’s +apartments, notwithstanding the assurances of the concierge that the +young man was not at home, Debray was occupied in repelling the +insinuations of a friend, who tried to persuade him that after the +terrible scene which had just taken place he ought, as a friend of the +family, to marry Mademoiselle Danglars and her two millions. Debray did +not defend himself very warmly, for the idea had sometimes crossed his +mind; still, when he recollected the independent, proud spirit of +Eugénie, he positively rejected it as utterly impossible, though the +same thought again continually recurred and found a resting-place in +his heart. Tea, play, and the conversation, which had become +interesting during the discussion of such serious affairs, lasted till +one o’clock in the morning. + +Meanwhile Madame Danglars, veiled and uneasy, awaited the return of +Debray in the little green room, seated between two baskets of flowers, +which she had that morning sent, and which, it must be confessed, +Debray had himself arranged and watered with so much care that his +absence was half excused in the eyes of the poor woman. + +At twenty minutes to twelve, Madame Danglars, tired of waiting, +returned home. Women of a certain grade are like prosperous grisettes +in one respect, they seldom return home after twelve o’clock. The +baroness returned to the hotel with as much caution as Eugénie used in +leaving it; she ran lightly upstairs, and with an aching heart entered +her apartment, contiguous, as we know, to that of Eugénie. She was +fearful of exciting any remark, and believed firmly in her daughter’s +innocence and fidelity to the paternal roof. She listened at Eugénie’s +door, and hearing no sound tried to enter, but the bolts were in place. +Madame Danglars then concluded that the young girl had been overcome +with the terrible excitement of the evening, and had gone to bed and to +sleep. She called the maid and questioned her. + +“Mademoiselle Eugénie,” said the maid, “retired to her apartment with +Mademoiselle d’Armilly; they then took tea together, after which they +desired me to leave, saying that they needed me no longer.” + +Since then the maid had been below, and like everyone else she thought +the young ladies were in their own room; Madame Danglars, therefore, +went to bed without a shadow of suspicion, and began to muse over the +recent events. In proportion as her memory became clearer, the +occurrences of the evening were revealed in their true light; what she +had taken for confusion was a tumult; what she had regarded as +something distressing, was in reality a disgrace. And then the baroness +remembered that she had felt no pity for poor Mercédès, who had been +afflicted with as severe a blow through her husband and son. + +“Eugénie,” she said to herself, “is lost, and so are we. The affair, as +it will be reported, will cover us with shame; for in a society such as +ours satire inflicts a painful and incurable wound. How fortunate that +Eugénie is possessed of that strange character which has so often made +me tremble!” + +And her glance was turned towards heaven, where a mysterious Providence +disposes all things, and out of a fault, nay, even a vice, sometimes +produces a blessing. And then her thoughts, cleaving through space like +a bird in the air, rested on Cavalcanti. This Andrea was a wretch, a +robber, an assassin, and yet his manners showed the effects of a sort +of education, if not a complete one; he had been presented to the world +with the appearance of an immense fortune, supported by an honorable +name. How could she extricate herself from this labyrinth? To whom +would she apply to help her out of this painful situation? Debray, to +whom she had run, with the first instinct of a woman towards the man +she loves, and who yet betrays her,—Debray could but give her advice, +she must apply to someone more powerful than he. + +The baroness then thought of M. de Villefort. It was M. de Villefort +who had remorselessly brought misfortune into her family, as though +they had been strangers. But, no; on reflection, the procureur was not +a merciless man; and it was not the magistrate, slave to his duties, +but the friend, the loyal friend, who roughly but firmly cut into the +very core of the corruption; it was not the executioner, but the +surgeon, who wished to withdraw the honor of Danglars from ignominious +association with the disgraced young man they had presented to the +world as their son-in-law. And since Villefort, the friend of Danglars, +had acted in this way, no one could suppose that he had been previously +acquainted with, or had lent himself to, any of Andrea’s intrigues. +Villefort’s conduct, therefore, upon reflection, appeared to the +baroness as if shaped for their mutual advantage. But the inflexibility +of the procureur should stop there; she would see him the next day, and +if she could not make him fail in his duties as a magistrate, she +would, at least, obtain all the indulgence he could allow. She would +invoke the past, recall old recollections; she would supplicate him by +the remembrance of guilty, yet happy days. M. de Villefort would stifle +the affair; he had only to turn his eyes on one side, and allow Andrea +to fly, and follow up the crime under that shadow of guilt called +contempt of court. And after this reasoning she slept easily. + +At nine o’clock next morning she arose, and without ringing for her +maid or giving the least sign of her activity, she dressed herself in +the same simple style as on the previous night; then running +downstairs, she left the hotel, walked to the Rue de Provence, called a +cab, and drove to M. de Villefort’s house. + +For the last month this wretched house had presented the gloomy +appearance of a lazaretto infected with the plague. Some of the +apartments were closed within and without; the shutters were only +opened to admit a minute’s air, showing the scared face of a footman, +and immediately afterwards the window would be closed, like a +gravestone falling on a sepulchre, and the neighbors would say to each +other in a low voice, “Will there be another funeral today at the +procureur’s house?” + +Madame Danglars involuntarily shuddered at the desolate aspect of the +mansion; descending from the cab, she approached the door with +trembling knees, and rang the bell. Three times did the bell ring with +a dull, heavy sound, seeming to participate, in the general sadness, +before the concierge appeared and peeped through the door, which he +opened just wide enough to allow his words to be heard. He saw a lady, +a fashionable, elegantly dressed lady, and yet the door remained almost +closed. + +“Do you intend opening the door?” said the baroness. + +“First, madame, who are you?” + +“Who am I? You know me well enough.” + +“We no longer know anyone, madame.” + +“You must be mad, my friend,” said the baroness. + +“Where do you come from?” + +“Oh, this is too much!” + +“Madame, these are my orders; excuse me. Your name?” + +“The baroness Danglars; you have seen me twenty times.” + +“Possibly, madame. And now, what do you want?” + +“Oh, how extraordinary! I shall complain to M. de Villefort of the +impertinence of his servants.” + +“Madame, this is precaution, not impertinence; no one enters here +without an order from M. d’Avrigny, or without speaking to the +procureur.” + +“Well, I have business with the procureur.” + +“Is it pressing business?” + +“You can imagine so, since I have not even brought my carriage out yet. +But enough of this—here is my card, take it to your master.” + +“Madame will await my return?” + +“Yes; go.” + +The concierge closed the door, leaving Madame Danglars in the street. +She had not long to wait; directly afterwards the door was opened wide +enough to admit her, and when she had passed through, it was again +shut. Without losing sight of her for an instant, the concierge took a +whistle from his pocket as soon as they entered the court, and blew it. +The valet de chambre appeared on the door-steps. + +“You will excuse this poor fellow, madame,” he said, as he preceded the +baroness, “but his orders are precise, and M. de Villefort begged me to +tell you that he could not act otherwise.” + +In the court showing his merchandise, was a tradesman who had been +admitted with the same precautions. The baroness ascended the steps; +she felt herself strongly infected with the sadness which seemed to +magnify her own, and still guided by the valet de chambre, who never +lost sight of her for an instant, she was introduced to the +magistrate’s study. + +Preoccupied as Madame Danglars had been with the object of her visit, +the treatment she had received from these underlings appeared to her so +insulting, that she began by complaining of it. But Villefort, raising +his head, bowed down by grief, looked up at her with so sad a smile +that her complaints died upon her lips. + +“Forgive my servants,” he said, “for a terror I cannot blame them for; +from being suspected they have become suspicious.” + +Madame Danglars had often heard of the terror to which the magistrate +alluded, but without the evidence of her own eyesight she could never +have believed that the sentiment had been carried so far. + +“You too, then, are unhappy?” she said. + +“Yes, madame,” replied the magistrate. + +“Then you pity me!” + +“Sincerely, madame.” + +“And you understand what brings me here?” + +“You wish to speak to me about the circumstance which has just +happened?” + +“Yes, sir,—a fearful misfortune.” + +“You mean a mischance.” + +“A mischance?” repeated the baroness. + +“Alas, madame,” said the procureur with his imperturbable calmness of +manner, “I consider those alone misfortunes which are irreparable.” + +“And do you suppose this will be forgotten?” + +“Everything will be forgotten, madame,” said Villefort. “Your daughter +will be married tomorrow, if not today—in a week, if not tomorrow; and +I do not think you can regret the intended husband of your daughter.” + +Madame Danglars gazed on Villefort, stupefied to find him so almost +insultingly calm. “Am I come to a friend?” she asked in a tone full of +mournful dignity. + +“You know that you are, madame,” said Villefort, whose pale cheeks +became slightly flushed as he gave her the assurance. And truly this +assurance carried him back to different events from those now occupying +the baroness and him. + +“Well, then, be more affectionate, my dear Villefort,” said the +baroness. “Speak to me not as a magistrate, but as a friend; and when I +am in bitter anguish of spirit, do not tell me that I ought to be gay.” +Villefort bowed. + +“When I hear misfortunes named, madame,” he said, “I have within the +last few months contracted the bad habit of thinking of my own, and +then I cannot help drawing up an egotistical parallel in my mind. That +is the reason that by the side of my misfortunes yours appear to me +mere mischances; that is why my dreadful position makes yours appear +enviable. But this annoys you; let us change the subject. You were +saying, madame——” + +“I came to ask you, my friend,” said the baroness, “what will be done +with this impostor?” + +“Impostor,” repeated Villefort; “certainly, madame, you appear to +extenuate some cases, and exaggerate others. Impostor, indeed!—M. +Andrea Cavalcanti, or rather M. Benedetto, is nothing more nor less +than an assassin!” + +“Sir, I do not deny the justice of your correction, but the more +severely you arm yourself against that unfortunate man, the more deeply +will you strike our family. Come, forget him for a moment, and instead +of pursuing him, let him go.” + +“You are too late, madame; the orders are issued.” + +“Well, should he be arrested—do they think they will arrest him?” + +“I hope so.” + +“If they should arrest him (I know that sometimes prisons afford means +of escape), will you leave him in prison?” + +The procureur shook his head. + +“At least keep him there till my daughter be married.” + +“Impossible, madame; justice has its formalities.” + +“What, even for me?” said the baroness, half jesting, half in earnest. + +“For all, even for myself among the rest,” replied Villefort. + +50063m + + + +“Ah!” exclaimed the baroness, without expressing the ideas which the +exclamation betrayed. Villefort looked at her with that piercing glance +which reads the secrets of the heart. + +“Yes, I know what you mean,” he said; “you refer to the terrible rumors +spread abroad in the world, that the deaths which have kept me in +mourning for the last three months, and from which Valentine has only +escaped by a miracle, have not happened by natural means.” + +“I was not thinking of that,” replied Madame Danglars quickly. + +“Yes, you were thinking of it, and with justice. You could not help +thinking of it, and saying to yourself, ‘you, who pursue crime so +vindictively, answer now, why are there unpunished crimes in your +dwelling?’” The baroness became pale. “You were saying this, were you +not?” + +“Well, I own it.” + +“I will answer you.” + +Villefort drew his armchair nearer to Madame Danglars; then resting +both hands upon his desk he said in a voice more hollow than usual: + +“There are crimes which remain unpunished because the criminals are +unknown, and we might strike the innocent instead of the guilty; but +when the culprits are discovered” (Villefort here extended his hand +toward a large crucifix placed opposite to his desk)—“when they are +discovered, I swear to you, by all I hold most sacred, that whoever +they may be they shall die. Now, after the oath I have just taken, and +which I will keep, madame, dare you ask for mercy for that wretch!” + +“But, sir, are you sure he is as guilty as they say?” + +“Listen; this is his description: ‘Benedetto, condemned, at the age of +sixteen, for five years to the galleys for forgery.’ He promised well, +as you see—first a runaway, then an assassin.” + +“And who is this wretch?” + +“Who can tell?—a vagabond, a Corsican.” + +“Has no one owned him?” + +“No one; his parents are unknown.” + +“But who was the man who brought him from Lucca?” + +“Another rascal like himself, perhaps his accomplice.” The baroness +clasped her hands. + +“Villefort,” she exclaimed in her softest and most captivating manner. + +“For Heaven’s sake, madame,” said Villefort, with a firmness of +expression not altogether free from harshness—“for Heaven’s sake, do +not ask pardon of me for a guilty wretch! What am I?—the law. Has the +law any eyes to witness your grief? Has the law ears to be melted by +your sweet voice? Has the law a memory for all those soft recollections +you endeavor to recall? No, madame; the law has commanded, and when it +commands it strikes. You will tell me that I am a living being, and not +a code—a man, and not a volume. Look at me, madame—look around me. Has +mankind treated me as a brother? Have men loved me? Have they spared +me? Has anyone shown the mercy towards me that you now ask at my hands? +No, madame, they struck me, always struck me! + +50065m + + + +“Woman, siren that you are, do you persist in fixing on me that +fascinating eye, which reminds me that I ought to blush? Well, be it +so; let me blush for the faults you know, and perhaps—perhaps for even +more than those! But having sinned myself,—it may be more deeply than +others,—I never rest till I have torn the disguises from my +fellow-creatures, and found out their weaknesses. I have always found +them; and more,—I repeat it with joy, with triumph,—I have always found +some proof of human perversity or error. Every criminal I condemn seems +to me living evidence that I am not a hideous exception to the rest. +Alas, alas, alas; all the world is wicked; let us therefore strike at +wickedness!” + +Villefort pronounced these last words with a feverish rage, which gave +a ferocious eloquence to his words. + +“But”’ said Madame Danglars, resolving to make a last effort, “this +young man, though a murderer, is an orphan, abandoned by everybody.” + +“So much the worse, or rather, so much the better; it has been so +ordained that he may have none to weep his fate.” + +“But this is trampling on the weak, sir.” + +“The weakness of a murderer!” + +“His dishonor reflects upon us.” + +“Is not death in my house?” + +“Oh, sir,” exclaimed the baroness, “you are without pity for others, +well, then, I tell you they will have no mercy on you!” + +“Be it so!” said Villefort, raising his arms to heaven with a +threatening gesture. + +“At least, delay the trial till the next assizes; we shall then have +six months before us.” + +“No, madame,” said Villefort; “instructions have been given. There are +yet five days left; five days are more than I require. Do you not think +that I also long for forgetfulness? While working night and day, I +sometimes lose all recollection of the past, and then I experience the +same sort of happiness I can imagine the dead feel; still, it is better +than suffering.” + +“But, sir, he has fled; let him escape—inaction is a pardonable +offence.” + +“I tell you it is too late; early this morning the telegraph was +employed, and at this very minute——” + +“Sir,” said the valet de chambre, entering the room, “a dragoon has +brought this despatch from the Minister of the Interior.” + +Villefort seized the letter, and hastily broke the seal. Madame +Danglars trembled with fear; Villefort started with joy. + +“Arrested!” he exclaimed; “he was taken at Compiègne, and all is over.” + +Madame Danglars rose from her seat, pale and cold. + +“Adieu, sir,” she said. + +“Adieu, madame,” replied the king’s attorney, as in an almost joyful +manner he conducted her to the door. Then, turning to his desk, he +said, striking the letter with the back of his right hand: + +“Come, I had a forgery, three robberies, and two cases of arson, I only +wanted a murder, and here it is. It will be a splendid session!” + + + + Chapter 100. The Apparition + +As the procureur had told Madame Danglars, Valentine was not yet +recovered. Bowed down with fatigue, she was indeed confined to her bed; +and it was in her own room, and from the lips of Madame de Villefort, +that she heard all the strange events we have related; we mean the +flight of Eugénie and the arrest of Andrea Cavalcanti, or rather +Benedetto, together with the accusation of murder pronounced against +him. But Valentine was so weak that this recital scarcely produced the +same effect it would have done had she been in her usual state of +health. Indeed, her brain was only the seat of vague ideas, and +confused forms, mingled with strange fancies, alone presented +themselves before her eyes. + +During the daytime Valentine’s perceptions remained tolerably clear, +owing to the constant presence of M. Noirtier, who caused himself to be +carried to his granddaughter’s room, and watched her with his paternal +tenderness; Villefort also, on his return from the law courts, +frequently passed an hour or two with his father and child. + +At six o’clock Villefort retired to his study, at eight M. d’Avrigny +himself arrived, bringing the night draught prepared for the young +girl, and then M. Noirtier was carried away. A nurse of the doctor’s +choice succeeded them, and never left till about ten or eleven o’clock, +when Valentine was asleep. As she went downstairs she gave the keys of +Valentine’s room to M. de Villefort, so that no one could reach the +sick-room excepting through that of Madame de Villefort and little +Edward. + +Every morning Morrel called on Noirtier to receive news of Valentine, +and, extraordinary as it seemed, each day found him less uneasy. +Certainly, though Valentine still labored under dreadful nervous +excitement, she was better; and moreover, Monte Cristo had told him +when, half distracted, he had rushed to the count’s house, that if she +were not dead in two hours she would be saved. Now four days had +elapsed, and Valentine still lived. + +The nervous excitement of which we speak pursued Valentine even in her +sleep, or rather in that state of somnolence which succeeded her waking +hours; it was then, in the silence of night, in the dim light shed from +the alabaster lamp on the chimney-piece, that she saw the shadows pass +and repass which hover over the bed of sickness, and fan the fever with +their trembling wings. First she fancied she saw her stepmother +threatening her, then Morrel stretched his arms towards her; sometimes +mere strangers, like the Count of Monte Cristo came to visit her; even +the very furniture, in these moments of delirium, seemed to move, and +this state lasted till about three o’clock in the morning, when a deep, +heavy slumber overcame the young girl, from which she did not awake +till daylight. + +On the evening of the day on which Valentine had learned of the flight +of Eugénie and the arrest of Benedetto,—Villefort having retired as +well as Noirtier and d’Avrigny,—her thoughts wandered in a confused +maze, alternately reviewing her own situation and the events she had +just heard. + +Eleven o’clock had struck. The nurse, having placed the beverage +prepared by the doctor within reach of the patient, and locked the +door, was listening with terror to the comments of the servants in the +kitchen, and storing her memory with all the horrible stories which had +for some months past amused the occupants of the antechambers in the +house of the king’s attorney. Meanwhile an unexpected scene was passing +in the room which had been so carefully locked. + +Ten minutes had elapsed since the nurse had left; Valentine, who for +the last hour had been suffering from the fever which returned nightly, +incapable of controlling her ideas, was forced to yield to the +excitement which exhausted itself in producing and reproducing a +succession and recurrence of the same fancies and images. The +night-lamp threw out countless rays, each resolving itself into some +strange form to her disordered imagination, when suddenly by its +flickering light Valentine thought she saw the door of her library, +which was in the recess by the chimney-piece, open slowly, though she +in vain listened for the sound of the hinges on which it turned. + +At any other time Valentine would have seized the silken bell-pull and +summoned assistance, but nothing astonished her in her present +situation. Her reason told her that all the visions she beheld were but +the children of her imagination, and the conviction was strengthened by +the fact that in the morning no traces remained of the nocturnal +phantoms, who disappeared with the coming of daylight. + +From behind the door a human figure appeared, but the girl was too +familiar with such apparitions to be alarmed, and therefore only +stared, hoping to recognize Morrel. The figure advanced towards the bed +and appeared to listen with profound attention. At this moment a ray of +light glanced across the face of the midnight visitor. + +“It is not he,” she murmured, and waited, in the assurance that this +was but a dream, for the man to disappear or assume some other form. +Still, she felt her pulse, and finding it throb violently she +remembered that the best method of dispelling such illusions was to +drink, for a draught of the beverage prepared by the doctor to allay +her fever seemed to cause a reaction of the brain, and for a short time +she suffered less. Valentine therefore reached her hand towards the +glass, but as soon as her trembling arm left the bed the apparition +advanced more quickly towards her, and approached the young girl so +closely that she fancied she heard his breath, and felt the pressure of +his hand. + +This time the illusion, or rather the reality, surpassed anything +Valentine had before experienced; she began to believe herself really +alive and awake, and the belief that her reason was this time not +deceived made her shudder. The pressure she felt was evidently intended +to arrest her arm, and she slowly withdrew it. Then the figure, from +whom she could not detach her eyes, and who appeared more protecting +than menacing, took the glass, and walking towards the night-light held +it up, as if to test its transparency. This did not seem sufficient; +the man, or rather the ghost—for he trod so softly that no sound was +heard—then poured out about a spoonful into the glass, and drank it. + +Valentine witnessed this scene with a sentiment of stupefaction. Every +minute she had expected that it would vanish and give place to another +vision; but the man, instead of dissolving like a shadow, again +approached her, and said in an agitated voice, “Now you may drink.” + +Valentine shuddered. It was the first time one of these visions had +ever addressed her in a living voice, and she was about to utter an +exclamation. The man placed his finger on her lips. + +“The Count of Monte Cristo!” she murmured. + +It was easy to see that no doubt now remained in the young girl’s mind +as to the reality of the scene; her eyes started with terror, her hands +trembled, and she rapidly drew the bedclothes closer to her. Still, the +presence of Monte Cristo at such an hour, his mysterious, fanciful, and +extraordinary entrance into her room through the wall, might well seem +impossibilities to her shattered reason. + +“Do not call anyone—do not be alarmed,” said the count; “do not let a +shade of suspicion or uneasiness remain in your breast; the man +standing before you, Valentine (for this time it is no ghost), is +nothing more than the tenderest father and the most respectful friend +you could dream of.” + +Valentine could not reply; the voice which indicated the real presence +of a being in the room, alarmed her so much that she feared to utter a +syllable; still the expression of her eyes seemed to inquire, “If your +intentions are pure, why are you here?” The count’s marvellous sagacity +understood all that was passing in the young girl’s mind. + +“Listen to me,” he said, “or, rather, look upon me; look at my face, +paler even than usual, and my eyes, red with weariness—for four days I +have not closed them, for I have been constantly watching you, to +protect and preserve you for Maximilian.” + +The blood mounted rapidly to the cheeks of Valentine, for the name just +announced by the count dispelled all the fear with which his presence +had inspired her. + +“Maximilian!” she exclaimed, and so sweet did the sound appear to her, +that she repeated it—“Maximilian!—has he then owned all to you?” + +“Everything. He told me your life was his, and I have promised him that +you shall live.” + +“You have promised him that I shall live?” + +“Yes.” + +“But, sir, you spoke of vigilance and protection. Are you a doctor?” + +“Yes; the best you could have at the present time, believe me.” + +“But you say you have watched?” said Valentine uneasily; “where have +you been?—I have not seen you.” + +The count extended his hand towards the library. + +“I was hidden behind that door,” he said, “which leads into the next +house, which I have rented.” + +Valentine turned her eyes away, and, with an indignant expression of +pride and modest fear, exclaimed: + +“Sir, I think you have been guilty of an unparalleled intrusion, and +that what you call protection is more like an insult.” + +“Valentine,” he answered, “during my long watch over you, all I have +observed has been what people visited you, what nourishment was +prepared, and what beverage was served; then, when the latter appeared +dangerous to me, I entered, as I have now done, and substituted, in the +place of the poison, a healthful draught; which, instead of producing +the death intended, caused life to circulate in your veins.” + +“Poison—death!” exclaimed Valentine, half believing herself under the +influence of some feverish hallucination; “what are you saying, sir?” + +50071m + + + +“Hush, my child,” said Monte Cristo, again placing his finger upon her +lips, “I did say poison and death. But drink some of this;” and the +count took a bottle from his pocket, containing a red liquid, of which +he poured a few drops into the glass. “Drink this, and then take +nothing more tonight.” + +Valentine stretched out her hand, but scarcely had she touched the +glass when she drew back in fear. Monte Cristo took the glass, drank +half its contents, and then presented it to Valentine, who smiled and +swallowed the rest. + +“Oh, yes,” she exclaimed, “I recognize the flavor of my nocturnal +beverage which refreshed me so much, and seemed to ease my aching +brain. Thank you, sir, thank you!” + +“This is how you have lived during the last four nights, Valentine,” +said the count. “But, oh, how I passed that time! Oh, the wretched +hours I have endured—the torture to which I have submitted when I saw +the deadly poison poured into your glass, and how I trembled lest you +should drink it before I could find time to throw it away!” + +“Sir,” said Valentine, at the height of her terror, “you say you +endured tortures when you saw the deadly poison poured into my glass; +but if you saw this, you must also have seen the person who poured it?” + +“Yes.” + +Valentine raised herself in bed, and drew over her chest, which +appeared whiter than snow, the embroidered cambric, still moist with +the cold dews of delirium, to which were now added those of terror. +“You saw the person?” repeated the young girl. + +“Yes,” repeated the count. + +“What you tell me is horrible, sir. You wish to make me believe +something too dreadful. What?—attempt to murder me in my father’s +house, in my room, on my bed of sickness? Oh, leave me, sir; you are +tempting me—you make me doubt the goodness of Providence—it is +impossible, it cannot be!” + +“Are you the first that this hand has stricken? Have you not seen M. de +Saint-Méran, Madame de Saint-Méran, Barrois, all fall? Would not M. +Noirtier also have fallen a victim, had not the treatment he has been +pursuing for the last three years neutralized the effects of the +poison?” + +“Oh, Heaven,” said Valentine; “is this the reason why grandpapa has +made me share all his beverages during the last month?” + +“And have they all tasted of a slightly bitter flavor, like that of +dried orange-peel?” + +“Oh, yes, yes!” + +“Then that explains all,” said Monte Cristo. “Your grandfather knows, +then, that a poisoner lives here; perhaps he even suspects the person. +He has been fortifying you, his beloved child, against the fatal +effects of the poison, which has failed because your system was already +impregnated with it. But even this would have availed little against a +more deadly medium of death employed four days ago, which is generally +but too fatal.” + +“But who, then, is this assassin, this murderer?” + +“Let me also ask you a question. Have you never seen anyone enter your +room at night?” + +“Oh, yes; I have frequently seen shadows pass close to me, approach, +and disappear; but I took them for visions raised by my feverish +imagination, and indeed when you entered I thought I was under the +influence of delirium.” + +“Then you do not know who it is that attempts your life?” + +50073m + + + +“No,” said Valentine; “who could desire my death?” + +“You shall know it now, then,” said Monte Cristo, listening. + +“How do you mean?” said Valentine, looking anxiously around. + +“Because you are not feverish or delirious tonight, but thoroughly +awake; midnight is striking, which is the hour murderers choose.” + +“Oh, heavens,” exclaimed Valentine, wiping off the drops which ran down +her forehead. Midnight struck slowly and sadly; every hour seemed to +strike with leaden weight upon the heart of the poor girl. + +“Valentine,” said the count, “summon up all your courage; still the +beatings of your heart; do not let a sound escape you, and feign to be +asleep; then you will see.” + +Valentine seized the count’s hand. “I think I hear a noise,” she said; +“leave me.” + +“Good-bye, for the present,” replied the count, walking upon tiptoe +towards the library door, and smiling with an expression so sad and +paternal that the young girl’s heart was filled with gratitude. + +Before closing the door he turned around once more, and said, “Not a +movement—not a word; let them think you asleep, or perhaps you may be +killed before I have the power of helping you.” + +And with this fearful injunction the count disappeared through the +door, which noiselessly closed after him. + + + + Chapter 101. Locusta + +Valentine was alone; two other clocks, slower than that of +Saint-Philippe-du-Roule, struck the hour of midnight from different +directions, and excepting the rumbling of a few carriages all was +silent. Then Valentine’s attention was engrossed by the clock in her +room, which marked the seconds. She began counting them, remarking that +they were much slower than the beatings of her heart; and still she +doubted,—the inoffensive Valentine could not imagine that anyone should +desire her death. Why should they? To what end? What had she done to +excite the malice of an enemy? + +There was no fear of her falling asleep. One terrible idea pressed upon +her mind,—that someone existed in the world who had attempted to +assassinate her, and who was about to endeavor to do so again. +Supposing this person, wearied at the inefficacy of the poison, should, +as Monte Cristo intimated, have recourse to steel!—What if the count +should have no time to run to her rescue!—What if her last moments were +approaching, and she should never again see Morrel! + +When this terrible chain of ideas presented itself, Valentine was +nearly persuaded to ring the bell, and call for help. But through the +door she fancied she saw the luminous eye of the count—that eye which +lived in her memory, and the recollection overwhelmed her with so much +shame that she asked herself whether any amount of gratitude could ever +repay his adventurous and devoted friendship. + +Twenty minutes, twenty tedious minutes, passed thus, then ten more, and +at last the clock struck the half-hour. + +Just then the sound of finger-nails slightly grating against the door +of the library informed Valentine that the count was still watching, +and recommended her to do the same; at the same time, on the opposite +side, that is towards Edward’s room, Valentine fancied that she heard +the creaking of the floor; she listened attentively, holding her breath +till she was nearly suffocated; the lock turned, and the door slowly +opened. Valentine had raised herself upon her elbow, and had scarcely +time to throw herself down on the bed and shade her eyes with her arm; +then, trembling, agitated, and her heart beating with indescribable +terror, she awaited the event. + +Someone approached the bed and drew back the curtains. Valentine +summoned every effort, and breathed with that regular respiration which +announces tranquil sleep. + +“Valentine!” said a low voice. + +The girl shuddered to the heart but did not reply. + +“Valentine,” repeated the same voice. + +Still silent: Valentine had promised not to wake. Then everything was +still, excepting that Valentine heard the almost noiseless sound of +some liquid being poured into the glass she had just emptied. Then she +ventured to open her eyelids, and glance over her extended arm. She saw +a woman in a white dressing-gown pouring a liquor from a phial into her +glass. During this short time Valentine must have held her breath, or +moved in some slight degree, for the woman, disturbed, stopped and +leaned over the bed, in order the better to ascertain whether Valentine +slept: it was Madame de Villefort. + +On recognizing her step-mother, Valentine could not repress a shudder, +which caused a vibration in the bed. Madame de Villefort instantly +stepped back close to the wall, and there, shaded by the bed-curtains, +she silently and attentively watched the slightest movement of +Valentine. The latter recollected the terrible caution of Monte Cristo; +she fancied that the hand not holding the phial clasped a long sharp +knife. Then collecting all her remaining strength, she forced herself +to close her eyes; but this simple operation upon the most delicate +organs of our frame, generally so easy to accomplish, became almost +impossible at this moment, so much did curiosity struggle to retain the +eyelid open and learn the truth. Madame de Villefort, however, +reassured by the silence, which was alone disturbed by the regular +breathing of Valentine, again extended her hand, and half hidden by the +curtains succeeded in emptying the contents of the phial into the +glass. Then she retired so gently that Valentine did not know she had +left the room. She only witnessed the withdrawal of the arm—the fair +round arm of a woman but twenty-five years old, and who yet spread +death around her. + +50077m + + + +It is impossible to describe the sensations experienced by Valentine +during the minute and a half Madame de Villefort remained in the room. + +The grating against the library-door aroused the young girl from the +stupor in which she was plunged, and which almost amounted to +insensibility. She raised her head with an effort. The noiseless door +again turned on its hinges, and the Count of Monte Cristo reappeared. + +“Well,” said he, “do you still doubt?” + +“Oh,” murmured the young girl. + +“Have you seen?” + +“Alas!” + +“Did you recognize?” Valentine groaned. + +“Oh, yes;” she said, “I saw, but I cannot believe!” + +“Would you rather die, then, and cause Maximilian’s death?” + +“Oh,” repeated the young girl, almost bewildered, “can I not leave the +house?—can I not escape?” + +“Valentine, the hand which now threatens you will pursue you +everywhere; your servants will be seduced with gold, and death will be +offered to you disguised in every shape. You will find it in the water +you drink from the spring, in the fruit you pluck from the tree.” + +“But did you not say that my kind grandfather’s precaution had +neutralized the poison?” + +“Yes, but not against a strong dose; the poison will be changed, and +the quantity increased.” He took the glass and raised it to his lips. +“It is already done,” he said; “brucine is no longer employed, but a +simple narcotic! I can recognize the flavor of the alcohol in which it +has been dissolved. If you had taken what Madame de Villefort has +poured into your glass, Valentine—Valentine—you would have been +doomed!” + +“But,” exclaimed the young girl, “why am I thus pursued?” + +“Why?—are you so kind—so good—so unsuspicious of ill, that you cannot +understand, Valentine?” + +“No, I have never injured her.” + +“But you are rich, Valentine; you have 200,000 livres a year, and you +prevent her son from enjoying these 200,000 livres.” + +“How so? The fortune is not her gift, but is inherited from my +relations.” + +“Certainly; and that is why M. and Madame de Saint-Méran have died; +that is why M. Noirtier was sentenced the day he made you his heir; +that is why you, in your turn, are to die—it is because your father +would inherit your property, and your brother, his only son, succeed to +his.” + +“Edward? Poor child! Are all these crimes committed on his account?” + +“Ah, then you at length understand?” + +“Heaven grant that this may not be visited upon him!” + +“Valentine, you are an angel!” + +“But why is my grandfather allowed to live?” + +“It was considered, that you dead, the fortune would naturally revert +to your brother, unless he were disinherited; and besides, the crime +appearing useless, it would be folly to commit it.” + +“And is it possible that this frightful combination of crimes has been +invented by a woman?” + +“Do you recollect in the arbor of the Hôtel des Postes, at Perugia, +seeing a man in a brown cloak, whom your stepmother was questioning +upon _aqua tofana_? Well, ever since then, the infernal project has +been ripening in her brain.” + +“Ah, then, indeed, sir,” said the sweet girl, bathed in tears, “I see +that I am condemned to die!” + +“No, Valentine, for I have foreseen all their plots; no, your enemy is +conquered since we know her, and you will live, Valentine—live to be +happy yourself, and to confer happiness upon a noble heart; but to +insure this you must rely on me.” + +“Command me, sir—what am I to do?” + +“You must blindly take what I give you.” + +“Alas, were it only for my own sake, I should prefer to die!” + +“You must not confide in anyone—not even in your father.” + +“My father is not engaged in this fearful plot, is he, sir?” asked +Valentine, clasping her hands. + +“No; and yet your father, a man accustomed to judicial accusations, +ought to have known that all these deaths have not happened naturally; +it is he who should have watched over you—he should have occupied my +place—he should have emptied that glass—he should have risen against +the assassin. Spectre against spectre!” he murmured in a low voice, as +he concluded his sentence. + +“Sir,” said Valentine, “I will do all I can to live, for there are two +beings who love me and will die if I die—my grandfather and +Maximilian.” + +“I will watch over them as I have over you.” + +“Well, sir, do as you will with me;” and then she added, in a low +voice, “oh, heavens, what will befall me?” + +“Whatever may happen, Valentine, do not be alarmed; though you suffer; +though you lose sight, hearing, consciousness, fear nothing; though you +should awake and be ignorant where you are, still do not fear; even +though you should find yourself in a sepulchral vault or coffin. +Reassure yourself, then, and say to yourself: ‘At this moment, a +friend, a father, who lives for my happiness and that of Maximilian, +watches over me!’” + +“Alas, alas, what a fearful extremity!” + +“Valentine, would you rather denounce your stepmother?” + +“I would rather die a hundred times—oh, yes, die!” + +“No, you will not die; but will you promise me, whatever happens, that +you will not complain, but hope?” + +“I will think of Maximilian!” + +“You are my own darling child, Valentine! I alone can save you, and I +will.” + +Valentine in the extremity of her terror joined her hands,—for she felt +that the moment had arrived to ask for courage,—and began to pray, and +while uttering little more than incoherent words, she forgot that her +white shoulders had no other covering than her long hair, and that the +pulsations of her heart could be seen through the lace of her +nightdress. Monte Cristo gently laid his hand on the young girl’s arm, +drew the velvet coverlet close to her throat, and said with a paternal +smile: + +“My child, believe in my devotion to you as you believe in the goodness +of Providence and the love of Maximilian.” Valentine gave him a look +full of gratitude, and remained as docile as a child. + +Then he drew from his waistcoat-pocket the little emerald box, raised +the golden lid, and took from it a pastille about the size of a pea, +which he placed in her hand. She took it, and looked attentively on the +count; there was an expression on the face of her intrepid protector +which commanded her veneration. She evidently interrogated him by her +look. + +“Yes,” said he. + +Valentine carried the pastille to her mouth, and swallowed it. + +“And now, my dear child, adieu for the present. I will try and gain a +little sleep, for you are saved.” + +“Go,” said Valentine, “whatever happens, I promise you not to fear.” + +Monte Cristo for some time kept his eyes fixed on the young girl, who +gradually fell asleep, yielding to the effects of the narcotic the +count had given her. Then he took the glass, emptied three parts of the +contents in the fireplace, that it might be supposed Valentine had +taken it, and replaced it on the table; then he disappeared, after +throwing a farewell glance on Valentine, who slept with the confidence +and innocence of an angel at the feet of the Lord. + + + + Chapter 102. Valentine + +The night-light continued to burn on the chimney-piece, exhausting the +last drops of oil which floated on the surface of the water. The globe +of the lamp appeared of a reddish hue, and the flame, brightening +before it expired, threw out the last flickerings which in an inanimate +object have been so often compared with the convulsions of a human +creature in its final agonies. A dull and dismal light was shed over +the bedclothes and curtains surrounding the young girl. All noise in +the streets had ceased, and the silence was frightful. + +It was then that the door of Edward’s room opened, and a head we have +before noticed appeared in the glass opposite; it was Madame de +Villefort, who came to witness the effects of the drink she had +prepared. She stopped in the doorway, listened for a moment to the +flickering of the lamp, the only sound in that deserted room, and then +advanced to the table to see if Valentine’s glass were empty. It was +still about a quarter full, as we before stated. Madame de Villefort +emptied the contents into the ashes, which she disturbed that they +might the more readily absorb the liquid; then she carefully rinsed the +glass, and wiping it with her handkerchief replaced it on the table. + +If anyone could have looked into the room just then he would have +noticed the hesitation with which Madame de Villefort approached the +bed and looked fixedly on Valentine. The dim light, the profound +silence, and the gloomy thoughts inspired by the hour, and still more +by her own conscience, all combined to produce a sensation of fear; the +poisoner was terrified at the contemplation of her own work. + +At length she rallied, drew aside the curtain, and leaning over the +pillow gazed intently on Valentine. The young girl no longer breathed, +no breath issued through the half-closed teeth; the white lips no +longer quivered—the eyes were suffused with a bluish vapor, and the +long black lashes rested on a cheek white as wax. Madame de Villefort +gazed upon the face so expressive even in its stillness; then she +ventured to raise the coverlet and press her hand upon the young girl’s +heart. It was cold and motionless. She only felt the pulsation in her +own fingers, and withdrew her hand with a shudder. One arm was hanging +out of the bed; from shoulder to elbow it was moulded after the arms of +Germain Pillon’s “Graces,”23 but the fore-arm seemed to be slightly +distorted by convulsion, and the hand, so delicately formed, was +resting with stiff outstretched fingers on the framework of the bed. +The nails, too, were turning blue. + +Madame de Villefort had no longer any doubt; all was over—she had +consummated the last terrible work she had to accomplish. There was no +more to do in the room, so the poisoner retired stealthily, as though +fearing to hear the sound of her own footsteps; but as she withdrew she +still held aside the curtain, absorbed in the irresistible attraction +always exerted by the picture of death, so long as it is merely +mysterious and does not excite disgust. + +The minutes passed; Madame de Villefort could not drop the curtain +which she held like a funeral pall over the head of Valentine. She was +lost in reverie, and the reverie of crime is remorse. + +Just then the lamp again flickered; the noise startled Madame de +Villefort, who shuddered and dropped the curtain. Immediately +afterwards the light expired, and the room was plunged in frightful +obscurity, while the clock at that minute struck half-past four. + +Overpowered with agitation, the poisoner succeeded in groping her way +to the door, and reached her room in an agony of fear. The darkness +lasted two hours longer; then by degrees a cold light crept through the +Venetian blinds, until at length it revealed the objects in the room. + +About this time the nurse’s cough was heard on the stairs and the woman +entered the room with a cup in her hand. To the tender eye of a father +or a lover, the first glance would have sufficed to reveal Valentine’s +condition; but to this hireling, Valentine only appeared to sleep. + +“Good,” she exclaimed, approaching the table, “she has taken part of +her draught; the glass is three-quarters empty.” + +Then she went to the fireplace and lit the fire, and although she had +just left her bed, she could not resist the temptation offered by +Valentine’s sleep, so she threw herself into an armchair to snatch a +little more rest. The clock striking eight awoke her. Astonished at the +prolonged slumber of the patient, and frightened to see that the arm +was still hanging out of the bed, she advanced towards Valentine, and +for the first time noticed the white lips. She tried to replace the +arm, but it moved with a frightful rigidity which could not deceive a +sick-nurse. She screamed aloud; then running to the door exclaimed: + +“Help, help!” + +50083m + + + +“What is the matter?” asked M. d’Avrigny, at the foot of the stairs, it +being the hour he usually visited her. + +“What is it?” asked Villefort, rushing from his room. “Doctor, do you +hear them call for help?” + +“Yes, yes; let us hasten up; it was in Valentine’s room.” + +But before the doctor and the father could reach the room, the servants +who were on the same floor had entered, and seeing Valentine pale and +motionless on her bed, they lifted up their hands towards heaven and +stood transfixed, as though struck by lightening. + +“Call Madame de Villefort!—Wake Madame de Villefort!” cried the +procureur from the door of his chamber, which apparently he scarcely +dared to leave. But instead of obeying him, the servants stood watching +M. d’Avrigny, who ran to Valentine, and raised her in his arms. + +“What?—this one, too?” he exclaimed. “Oh, where will be the end?” + +Villefort rushed into the room. + +“What are you saying, doctor?” he exclaimed, raising his hands to +heaven. + +“I say that Valentine is dead!” replied d’Avrigny, in a voice terrible +in its solemn calmness. + +50085m + + + +M. de Villefort staggered and buried his head in the bed. On the +exclamation of the doctor and the cry of the father, the servants all +fled with muttered imprecations; they were heard running down the +stairs and through the long passages, then there was a rush in the +court, afterwards all was still; they had, one and all, deserted the +accursed house. + +Just then, Madame de Villefort, in the act of slipping on her +dressing-gown, threw aside the drapery and for a moment stood +motionless, as though interrogating the occupants of the room, while +she endeavored to call up some rebellious tears. On a sudden she +stepped, or rather bounded, with outstretched arms, towards the table. +She saw d’Avrigny curiously examining the glass, which she felt certain +of having emptied during the night. It was now a third full, just as it +was when she threw the contents into the ashes. The spectre of +Valentine rising before the poisoner would have alarmed her less. It +was, indeed, the same color as the draught she had poured into the +glass, and which Valentine had drunk; it was indeed the poison, which +could not deceive M. d’Avrigny, which he now examined so closely; it +was doubtless a miracle from heaven, that, notwithstanding her +precautions, there should be some trace, some proof remaining to reveal +the crime. + +While Madame de Villefort remained rooted to the spot like a statue of +terror, and Villefort, with his head hidden in the bedclothes, saw +nothing around him, d’Avrigny approached the window, that he might the +better examine the contents of the glass, and dipping the tip of his +finger in, tasted it. + +“Ah,” he exclaimed, “it is no longer brucine that is used; let me see +what it is!” + +Then he ran to one of the cupboards in Valentine’s room, which had been +transformed into a medicine closet, and taking from its silver case a +small bottle of nitric acid, dropped a little of it into the liquor, +which immediately changed to a blood-red color. + +“Ah,” exclaimed d’Avrigny, in a voice in which the horror of a judge +unveiling the truth was mingled with the delight of a student making a +discovery. + +Madame de Villefort was overpowered; her eyes first flashed and then +swam, she staggered towards the door and disappeared. Directly +afterwards the distant sound of a heavy weight falling on the ground +was heard, but no one paid any attention to it; the nurse was engaged +in watching the chemical analysis, and Villefort was still absorbed in +grief. M. d’Avrigny alone had followed Madame de Villefort with his +eyes, and watched her hurried retreat. He lifted up the drapery over +the entrance to Edward’s room, and his eye reaching as far as Madame de +Villefort’s apartment, he beheld her extended lifeless on the floor. + +“Go to the assistance of Madame de Villefort,” he said to the nurse. +“Madame de Villefort is ill.” + +50087m + + + +“But Mademoiselle de Villefort——” stammered the nurse. + +“Mademoiselle de Villefort no longer requires help,” said d’Avrigny, +“since she is dead.” + +“Dead,—dead!” groaned forth Villefort, in a paroxysm of grief, which +was the more terrible from the novelty of the sensation in the iron +heart of that man. + +“Dead!” repeated a third voice. “Who said Valentine was dead?” + +The two men turned round, and saw Morrel standing at the door, pale and +terror-stricken. This is what had happened. At the usual time, Morrel +had presented himself at the little door leading to Noirtier’s room. +Contrary to custom, the door was open, and having no occasion to ring +he entered. He waited for a moment in the hall and called for a servant +to conduct him to M. Noirtier; but no one answered, the servants +having, as we know, deserted the house. Morrel had no particular reason +for uneasiness; Monte Cristo had promised him that Valentine should +live, and so far he had always fulfilled his word. Every night the +count had given him news, which was the next morning confirmed by +Noirtier. Still this extraordinary silence appeared strange to him, and +he called a second and third time; still no answer. Then he determined +to go up. Noirtier’s room was opened, like all the rest. The first +thing he saw was the old man sitting in his armchair in his usual +place, but his eyes expressed alarm, which was confirmed by the pallor +which overspread his features. + +“How are you, sir?” asked Morrel, with a sickness of heart. + +“Well,” answered the old man, by closing his eyes; but his appearance +manifested increasing uneasiness. + +“You are thoughtful, sir,” continued Morrel; “you want something; shall +I call one of the servants?” + +“Yes,” replied Noirtier. + +Morrel pulled the bell, but though he nearly broke the cord no one +answered. He turned towards Noirtier; the pallor and anguish expressed +on his countenance momentarily increased. + +“Oh,” exclaimed Morrel, “why do they not come? Is anyone ill in the +house?” The eyes of Noirtier seemed as though they would start from +their sockets. “What is the matter? You alarm me. Valentine? +Valentine?” + +“Yes, yes,” signed Noirtier. + +Maximilian tried to speak, but he could articulate nothing; he +staggered, and supported himself against the wainscot. Then he pointed +to the door. + +“Yes, yes, yes!” continued the old man. + +50089m + + + +Maximilian rushed up the little staircase, while Noirtier’s eyes seemed +to say,—“Quicker, quicker!” + +In a minute the young man darted through several rooms, till at length +he reached Valentine’s. + +There was no occasion to push the door, it was wide open. A sob was the +only sound he heard. He saw as though in a mist, a black figure +kneeling and buried in a confused mass of white drapery. A terrible +fear transfixed him. It was then he heard a voice exclaim “Valentine is +dead!” and another voice which, like an echo repeated: + +“Dead,—dead!” + +50090m + + + + + Chapter 103. Maximilian + +Villefort rose, half-ashamed of being surprised in such a paroxysm of +grief. The terrible office he had held for twenty-five years had +succeeded in making him more or less than man. His glance, at first +wandering, fixed itself upon Morrel. “Who are you, sir,” he asked, +“that forget that this is not the manner to enter a house stricken with +death? Go, sir, go!” + +But Morrel remained motionless; he could not detach his eyes from that +disordered bed, and the pale corpse of the young girl who was lying on +it. + +“Go!—do you hear?” said Villefort, while d’Avrigny advanced to lead +Morrel out. Maximilian stared for a moment at the corpse, gazed all +around the room, then upon the two men; he opened his mouth to speak, +but finding it impossible to give utterance to the innumerable ideas +that occupied his brain, he went out, thrusting his hands through his +hair in such a manner that Villefort and d’Avrigny, for a moment +diverted from the engrossing topic, exchanged glances, which seemed to +say,—“He is mad!” + +But in less than five minutes the staircase groaned beneath an +extraordinary weight. Morrel was seen carrying, with superhuman +strength, the armchair containing Noirtier upstairs. When he reached +the landing he placed the armchair on the floor and rapidly rolled it +into Valentine’s room. This could only have been accomplished by means +of unnatural strength supplied by powerful excitement. But the most +fearful spectacle was Noirtier being pushed towards the bed, his face +expressing all his meaning, and his eyes supplying the want of every +other faculty. That pale face and flaming glance appeared to Villefort +like a frightful apparition. Each time he had been brought into contact +with his father, something terrible had happened. + +“See what they have done!” cried Morrel, with one hand leaning on the +back of the chair, and the other extended towards Valentine. “See, my +father, see!” + +Villefort drew back and looked with astonishment on the young man, who, +almost a stranger to him, called Noirtier his father. At this moment +the whole soul of the old man seemed centred in his eyes which became +bloodshot; the veins of the throat swelled; his cheeks and temples +became purple, as though he was struck with epilepsy; nothing was +wanting to complete this but the utterance of a cry. And the cry issued +from his pores, if we may thus speak—a cry frightful in its silence. +D’Avrigny rushed towards the old man and made him inhale a powerful +restorative. + +“Sir,” cried Morrel, seizing the moist hand of the paralytic, “they ask +me who I am, and what right I have to be here. Oh, you know it, tell +them, tell them!” And the young man’s voice was choked by sobs. + +As for the old man, his chest heaved with his panting respiration. One +could have thought that he was undergoing the agonies preceding death. +At length, happier than the young man, who sobbed without weeping, +tears glistened in the eyes of Noirtier. + +“Tell them,” said Morrel in a hoarse voice, “tell them that I am her +betrothed. Tell them she was my beloved, my noble girl, my only +blessing in the world. Tell them—oh, tell them, that corpse belongs to +me!” + +The young man overwhelmed by the weight of his anguish, fell heavily on +his knees before the bed, which his fingers grasped with convulsive +energy. D’Avrigny, unable to bear the sight of this touching emotion, +turned away; and Villefort, without seeking any further explanation, +and attracted towards him by the irresistible magnetism which draws us +towards those who have loved the people for whom we mourn, extended his +hand towards the young man. + +But Morrel saw nothing; he had grasped the hand of Valentine, and +unable to weep vented his agony in groans as he bit the sheets. For +some time nothing was heard in that chamber but sobs, exclamations, and +prayers. At length Villefort, the most composed of all, spoke: + +“Sir,” said he to Maximilian, “you say you loved Valentine, that you +were betrothed to her. I knew nothing of this engagement, of this love, +yet I, her father, forgive you, for I see that your grief is real and +deep; and besides my own sorrow is too great for anger to find a place +in my heart. But you see that the angel whom you hoped for has left +this earth—she has nothing more to do with the adoration of men. Take a +last farewell, sir, of her sad remains; take the hand you expected to +possess once more within your own, and then separate yourself from her +forever. Valentine now requires only the ministrations of the priest.” + +50093m + + + +“You are mistaken, sir,” exclaimed Morrel, raising himself on one knee, +his heart pierced by a more acute pang than any he had yet felt—“you +are mistaken; Valentine, dying as she has, not only requires a priest, +but an avenger. _You_, M. de Villefort, send for the priest; _I_ will +be the avenger.” + +“What do you mean, sir?” asked Villefort, trembling at the new idea +inspired by the delirium of Morrel. + +“I tell you, sir, that two persons exist in you; the father has mourned +sufficiently, now let the procureur fulfil his office.” + +The eyes of Noirtier glistened, and d’Avrigny approached. + +“Gentlemen,” said Morrel, reading all that passed through the minds of +the witnesses to the scene, “I know what I am saying, and you know as +well as I do what I am about to say—Valentine has been assassinated!” + +Villefort hung his head, d’Avrigny approached nearer, and Noirtier said +“Yes” with his eyes. + +“Now, sir,” continued Morrel, “in these days no one can disappear by +violent means without some inquiries being made as to the cause of her +disappearance, even were she not a young, beautiful, and adorable +creature like Valentine. Now, M. le Procureur du Roi,” said Morrel with +increasing vehemence, “no mercy is allowed; I denounce the crime; it is +your place to seek the assassin.” + +The young man’s implacable eyes interrogated Villefort, who, on his +side, glanced from Noirtier to d’Avrigny. But instead of finding +sympathy in the eyes of the doctor and his father, he only saw an +expression as inflexible as that of Maximilian. + +“Yes,” indicated the old man. + +“Assuredly,” said d’Avrigny. + +“Sir,” said Villefort, striving to struggle against this triple force +and his own emotion,—“sir, you are deceived; no one commits crimes +here. I am stricken by fate. It is horrible, indeed, but no one +assassinates.” + +The eyes of Noirtier lighted up with rage, and d’Avrigny prepared to +speak. Morrel, however, extended his arm, and commanded silence. + +“And I say that murders _are_ committed here,” said Morrel, whose +voice, though lower in tone, lost none of its terrible distinctness: “I +tell you that this is the fourth victim within the last four months. I +tell you, Valentine’s life was attempted by poison four days ago, +though she escaped, owing to the precautions of M. Noirtier. I tell you +that the dose has been double, the poison changed, and that this time +it has succeeded. I tell you that you know these things as well as I +do, since this gentleman has forewarned you, both as a doctor and as a +friend.” + +“Oh, you rave, sir,” exclaimed Villefort, in vain endeavoring to escape +the net in which he was taken. + +50095m + + + +“I rave?” said Morrel; “well, then, I appeal to M. d’Avrigny himself. +Ask him, sir, if he recollects the words he uttered in the garden of +this house on the night of Madame de Saint-Méran’s death. You thought +yourselves alone, and talked about that tragical death, and the +fatality you mentioned then is the same which has caused the murder of +Valentine.” Villefort and d’Avrigny exchanged looks. + +“Yes, yes,” continued Morrel; “recall the scene, for the words you +thought were only given to silence and solitude fell into my ears. +Certainly, after witnessing the culpable indolence manifested by M. de +Villefort towards his own relations, I ought to have denounced him to +the authorities; then I should not have been an accomplice to thy +death, as I now am, sweet, beloved Valentine; but the accomplice shall +become the avenger. This fourth murder is apparent to all, and if thy +father abandon thee, Valentine, it is I, and I swear it, that shall +pursue the assassin.” + +And this time, as though nature had at least taken compassion on the +vigorous frame, nearly bursting with its own strength, the words of +Morrel were stifled in his throat; his breast heaved; the tears, so +long rebellious, gushed from his eyes; and he threw himself weeping on +his knees by the side of the bed. + +Then d’Avrigny spoke. “And I, too,” he exclaimed in a low voice, “I +unite with M. Morrel in demanding justice for crime; my blood boils at +the idea of having encouraged a murderer by my cowardly concession.” + +“Oh, merciful Heavens!” murmured Villefort. Morrel raised his head, and +reading the eyes of the old man, which gleamed with unnatural lustre,— + +“Stay,” he said, “M. Noirtier wishes to speak.” + +“Yes,” indicated Noirtier, with an expression the more terrible, from +all his faculties being centred in his glance. + +“Do you know the assassin?” asked Morrel. + +“Yes,” replied Noirtier. + +“And will you direct us?” exclaimed the young man. “Listen, M. +d’Avrigny, listen!” + +Noirtier looked upon Morrel with one of those melancholy smiles which +had so often made Valentine happy, and thus fixed his attention. Then, +having riveted the eyes of his interlocutor on his own, he glanced +towards the door. + +“Do you wish me to leave?” said Morrel, sadly. + +“Yes,” replied Noirtier. + +“Alas, alas, sir, have pity on me!” + +The old man’s eyes remained fixed on the door. + +“May I, at least, return?” asked Morrel. + +“Yes.” + +“Must I leave alone?” + +“No.” + +“Whom am I to take with me? The procureur?” + +“No.” + +“The doctor?” + +“Yes.” + +“You wish to remain alone with M. de Villefort?” + +“Yes.” + +“But can he understand you?” + +“Yes.” + +“Oh,” said Villefort, inexpressibly delighted to think that the +inquiries were to be made by him alone,—“oh, be satisfied, I can +understand my father.” While uttering these words with this expression +of joy, his teeth clashed together violently. + +D’Avrigny took the young man’s arm, and led him out of the room. A more +than deathlike silence then reigned in the house. At the end of a +quarter of an hour a faltering footstep was heard, and Villefort +appeared at the door of the apartment where d’Avrigny and Morrel had +been staying, one absorbed in meditation, the other in grief. + +“You can come,” he said, and led them back to Noirtier. + +Morrel looked attentively on Villefort. His face was livid, large drops +rolled down his face, and in his fingers he held the fragments of a +quill pen which he had torn to atoms. + +“Gentlemen,” he said in a hoarse voice, “give me your word of honor +that this horrible secret shall forever remain buried amongst +ourselves!” The two men drew back. + +“I entreat you——” continued Villefort. + +“But,” said Morrel, “the culprit—the murderer—the assassin.” + +“Do not alarm yourself, sir; justice will be done,” said Villefort. “My +father has revealed the culprit’s name; my father thirsts for revenge +as much as you do, yet even he conjures you as I do to keep this +secret. Do you not, father?” + +“Yes,” resolutely replied Noirtier. Morrel suffered an exclamation of +horror and surprise to escape him. + +“Oh, sir,” said Villefort, arresting Maximilian by the arm, “if my +father, the inflexible man, makes this request, it is because he knows, +be assured, that Valentine will be terribly revenged. Is it not so, +father?” + +The old man made a sign in the affirmative. Villefort continued: + +“He knows me, and I have pledged my word to him. Rest assured, +gentlemen, that within three days, in a less time than justice would +demand, the revenge I shall have taken for the murder of my child will +be such as to make the boldest heart tremble;” and as he spoke these +words he ground his teeth, and grasped the old man’s senseless hand. + +“Will this promise be fulfilled, M. Noirtier?” asked Morrel, while +d’Avrigny looked inquiringly. + +“Yes,” replied Noirtier with an expression of sinister joy. + +“Swear, then,” said Villefort, joining the hands of Morrel and +d’Avrigny, “swear that you will spare the honor of my house, and leave +me to avenge my child.” + +D’Avrigny turned round and uttered a very feeble “Yes,” but Morrel, +disengaging his hand, rushed to the bed, and after having pressed the +cold lips of Valentine with his own, hurriedly left, uttering a long, +deep groan of despair and anguish. + +We have before stated that all the servants had fled. M. de Villefort +was therefore obliged to request M. d’Avrigny to superintend all the +arrangements consequent upon a death in a large city, more especially a +death under such suspicious circumstances. + +It was something terrible to witness the silent agony, the mute despair +of Noirtier, whose tears silently rolled down his cheeks. Villefort +retired to his study, and d’Avrigny left to summon the doctor of the +mayoralty, whose office it is to examine bodies after decease, and who +is expressly named “the doctor of the dead.” M. Noirtier could not be +persuaded to quit his grandchild. At the end of a quarter of an hour M. +d’Avrigny returned with his associate; they found the outer gate +closed, and not a servant remaining in the house; Villefort himself was +obliged to open to them. But he stopped on the landing; he had not the +courage to again visit the death chamber. The two doctors, therefore, +entered the room alone. Noirtier was near the bed, pale, motionless, +and silent as the corpse. The district doctor approached with the +indifference of a man accustomed to spend half his time amongst the +dead; he then lifted the sheet which was placed over the face, and just +unclosed the lips. + +“Alas,” said d’Avrigny, “she is indeed dead, poor child!” + +50099m + + + +“Yes,” answered the doctor laconically, dropping the sheet he had +raised. Noirtier uttered a kind of hoarse, rattling sound; the old +man’s eyes sparkled, and the good doctor understood that he wished to +behold his child. He therefore approached the bed, and while his +companion was dipping the fingers with which he had touched the lips of +the corpse in chloride of lime, he uncovered the calm and pale face, +which looked like that of a sleeping angel. + +A tear, which appeared in the old man’s eye, expressed his thanks to +the doctor. The doctor of the dead then laid his permit on the corner +of the table, and having fulfilled his duty, was conducted out by +d’Avrigny. Villefort met them at the door of his study; having in a few +words thanked the district doctor, he turned to d’Avrigny, and said: + +“And now the priest.” + +“Is there any particular priest you wish to pray with Valentine?” asked +d’Avrigny. + +“No.” said Villefort; “fetch the nearest.” + +“The nearest,” said the district doctor, “is a good Italian abbé, who +lives next door to you. Shall I call on him as I pass?” + +“D’Avrigny,” said Villefort, “be so kind, I beseech you, as to +accompany this gentleman. Here is the key of the door, so that you can +go in and out as you please; you will bring the priest with you, and +will oblige me by introducing him into my child’s room.” + +50101m + + + +“Do you wish to see him?” + +“I only wish to be alone. You will excuse me, will you not? A priest +can understand a father’s grief.” + +And M. de Villefort, giving the key to d’Avrigny, again bade farewell +to the strange doctor, and retired to his study, where he began to +work. For some temperaments work is a remedy for all afflictions. + +As the doctors entered the street, they saw a man in a cassock standing +on the threshold of the next door. + +“This is the abbé of whom I spoke,” said the doctor to d’Avrigny. +D’Avrigny accosted the priest. + +“Sir,” he said, “are you disposed to confer a great obligation on an +unhappy father who has just lost his daughter? I mean M. de Villefort, +the king’s attorney.” + +“Ah,” said the priest, in a marked Italian accent; “yes, I have heard +that death is in that house.” + +“Then I need not tell you what kind of service he requires of you.” + +“I was about to offer myself, sir,” said the priest; “it is our mission +to forestall our duties.” + +“It is a young girl.” + +“I know it, sir; the servants who fled from the house informed me. I +also know that her name is Valentine, and I have already prayed for +her.” + +“Thank you, sir,” said d’Avrigny; “since you have commenced your sacred +office, deign to continue it. Come and watch by the dead, and all the +wretched family will be grateful to you.” + +“I am going, sir; and I do not hesitate to say that no prayers will be +more fervent than mine.” + +D’Avrigny took the priest’s hand, and without meeting Villefort, who +was engaged in his study, they reached Valentine’s room, which on the +following night was to be occupied by the undertakers. On entering the +room, Noirtier’s eyes met those of the abbé, and no doubt he read some +particular expression in them, for he remained in the room. D’Avrigny +recommended the attention of the priest to the living as well as to the +dead, and the abbé promised to devote his prayers to Valentine and his +attentions to Noirtier. + +In order, doubtless, that he might not be disturbed while fulfilling +his sacred mission, the priest rose as soon as d’Avrigny departed, and +not only bolted the door through which the doctor had just left, but +also that leading to Madame de Villefort’s room. + + + + Chapter 104. Danglars’ Signature + +The next morning dawned dull and cloudy. During the night the +undertakers had executed their melancholy office, and wrapped the +corpse in the winding-sheet, which, whatever may be said about the +equality of death, is at least a last proof of the luxury so pleasing +in life. This winding-sheet was nothing more than a beautiful piece of +cambric, which the young girl had bought a fortnight before. + +During the evening two men, engaged for the purpose, had carried +Noirtier from Valentine’s room into his own, and contrary to all +expectation there was no difficulty in withdrawing him from his child. +The Abbé Busoni had watched till daylight, and then left without +calling anyone. D’Avrigny returned about eight o’clock in the morning; +he met Villefort on his way to Noirtier’s room, and accompanied him to +see how the old man had slept. They found him in the large armchair, +which served him for a bed, enjoying a calm, nay, almost a smiling +sleep. They both stood in amazement at the door. + +“See,” said d’Avrigny to Villefort, “nature knows how to alleviate the +deepest sorrow. No one can say that M. Noirtier did not love his child, +and yet he sleeps.” + +“Yes, you are right,” replied Villefort, surprised; “he sleeps, indeed! +And this is the more strange, since the least contradiction keeps him +awake all night.” + +“Grief has stunned him,” replied d’Avrigny; and they both returned +thoughtfully to the procureur’s study. + +“See, I have not slept,” said Villefort, showing his undisturbed bed; +“grief does not stun me. I have not been in bed for two nights; but +then look at my desk; see what I have written during these two days and +nights. I have filled those papers, and have made out the accusation +against the assassin Benedetto. Oh, work, work,—my passion, my joy, my +delight,—it is for thee to alleviate my sorrows!” and he convulsively +grasped the hand of d’Avrigny. + +“Do you require my services now?” asked d’Avrigny. + +“No,” said Villefort; “only return again at eleven o’clock; at twelve +the—the—oh, Heavens, my poor, poor child!” and the procureur again +becoming a man, lifted up his eyes and groaned. + +“Shall you be present in the reception-room?” + +“No; I have a cousin who has undertaken this sad office. I shall work, +doctor—when I work I forget everything.” + +And, indeed, no sooner had the doctor left the room, than he was again +absorbed in work. On the doorsteps d’Avrigny met the cousin whom +Villefort had mentioned, a personage as insignificant in our story as +in the world he occupied—one of those beings designed from their birth +to make themselves useful to others. He was punctual, dressed in black, +with crape around his hat, and presented himself at his cousin’s with a +face made up for the occasion, and which he could alter as might be +required. + +At eleven o’clock the mourning-coaches rolled into the paved court, and +the Rue du Faubourg Saint-Honoré was filled with a crowd of idlers, +equally pleased to witness the festivities or the mourning of the rich, +and who rush with the same avidity to a funeral procession as to the +marriage of a duchess. + +Gradually the reception-room filled, and some of our old friends made +their appearance—we mean Debray, Château-Renaud, and Beauchamp, +accompanied by all the leading men of the day at the bar, in +literature, or the army, for M. de Villefort moved in the first +Parisian circles, less owing to his social position than to his +personal merit. + +The cousin standing at the door ushered in the guests, and it was +rather a relief to the indifferent to see a person as unmoved as +themselves, and who did not exact a mournful face or force tears, as +would have been the case with a father, a brother, or a lover. Those +who were acquainted soon formed into little groups. One of them was +made of Debray, Château-Renaud, and Beauchamp. + +“Poor girl,” said Debray, like the rest, paying an involuntary tribute +to the sad event,—“poor girl, so young, so rich, so beautiful! Could +you have imagined this scene, Château-Renaud, when we saw her, at the +most three weeks ago, about to sign that contract?” + +“Indeed, no,” said Château-Renaud.” + +“Did you know her?” + +“I spoke to her once or twice at Madame de Morcerf’s, among the rest; +she appeared to me charming, though rather melancholy. Where is her +stepmother? Do you know?” + +“She is spending the day with the wife of the worthy gentleman who is +receiving us.” + +50105m + + + +“Who is he?” + +“Whom do you mean?” + +“The gentleman who receives us? Is he a deputy?” + +“Oh, no. I am condemned to witness those gentlemen every day,” said +Beauchamp; “but he is perfectly unknown to me.” + +“Have you mentioned this death in your paper?” + +“It has been mentioned, but the article is not mine; indeed, I doubt if +it will please M. Villefort, for it says that if four successive deaths +had happened anywhere else than in the house of the king’s attorney, he +would have interested himself somewhat more about it.” + +“Still,” said Château-Renaud, “Dr. d’Avrigny, who attends my mother, +declares he is in despair about it. But whom are you seeking, Debray?” + +“I am seeking the Count of Monte Cristo” said the young man. + +“I met him on the boulevard, on my way here,” said Beauchamp. “I think +he is about to leave Paris; he was going to his banker.” + +“His banker? Danglars is his banker, is he not?” asked Château-Renaud +of Debray. + +“I believe so,” replied the secretary with slight uneasiness. “But +Monte Cristo is not the only one I miss here; I do not see Morrel.” + +“Morrel? Do they know him?” asked Château-Renaud. “I think he has only +been introduced to Madame de Villefort.” + +“Still, he ought to have been here,” said Debray; “I wonder what will +be talked about tonight; this funeral is the news of the day. But hush, +here comes our minister of justice; he will feel obliged to make some +little speech to the cousin,” and the three young men drew near to +listen. + +Beauchamp told the truth when he said that on his way to the funeral he +had met Monte Cristo, who was directing his steps towards the Rue de la +Chaussée d’Antin, to M. Danglars’. The banker saw the carriage of the +count enter the courtyard, and advanced to meet him with a sad, though +affable smile. + +“Well,” said he, extending his hand to Monte Cristo, “I suppose you +have come to sympathize with me, for indeed misfortune has taken +possession of my house. When I perceived you, I was just asking myself +whether I had not wished harm towards those poor Morcerfs, which would +have justified the proverb of ‘He who wishes misfortunes to happen to +others experiences them himself.’ Well, on my word of honor, I +answered, ‘No!’ I wished no ill to Morcerf; he was a little proud, +perhaps, for a man who like myself has risen from nothing; but we all +have our faults. Do you know, count, that persons of our time of +life—not that you belong to the class, you are still a young man,—but +as I was saying, persons of our time of life have been very unfortunate +this year. For example, look at the puritanical procureur, who has just +lost his daughter, and in fact nearly all his family, in so singular a +manner; Morcerf dishonored and dead; and then myself covered with +ridicule through the villany of Benedetto; besides——” + +“Besides what?” asked the Count. + +“Alas, do you not know?” + +“What new calamity?” + +“My daughter——” + +“Mademoiselle Danglars?” + +“Eugénie has left us!” + +“Good heavens, what are you telling me?” + +“The truth, my dear count. Oh, how happy you must be in not having +either wife or children!” + +“Do you think so?” + +“Indeed I do.” + +“And so Mademoiselle Danglars——” + +“She could not endure the insult offered to us by that wretch, so she +asked permission to travel.” + +“And is she gone?” + +“The other night she left.” + +“With Madame Danglars?” + +“No, with a relation. But still, we have quite lost our dear Eugénie; +for I doubt whether her pride will ever allow her to return to France.” + +“Still, baron,” said Monte Cristo, “family griefs, or indeed any other +affliction which would crush a man whose child was his only treasure, +are endurable to a millionaire. Philosophers may well say, and +practical men will always support the opinion, that money mitigates +many trials; and if you admit the efficacy of this sovereign balm, you +ought to be very easily consoled—you, the king of finance, the focus of +immeasurable power.” + +Danglars looked at him askance, as though to ascertain whether he spoke +seriously. + +“Yes,” he answered, “if a fortune brings consolation, I ought to be +consoled; I am rich.” + +“So rich, dear sir, that your fortune resembles the pyramids; if you +wished to demolish them you could not, and if it were possible, you +would not dare!” + +Danglars smiled at the good-natured pleasantry of the count. “That +reminds me,” he said, “that when you entered I was on the point of +signing five little bonds; I have already signed two: will you allow me +to do the same to the others?” + +“Pray do so.” + +There was a moment’s silence, during which the noise of the banker’s +pen was alone heard, while Monte Cristo examined the gilt mouldings on +the ceiling. + +“Are they Spanish, Haitian, or Neapolitan bonds?” said Monte Cristo. + +“No,” said Danglars, smiling, “they are bonds on the bank of France, +payable to bearer. Stay, count,” he added, “you, who may be called the +emperor, if I claim the title of king of finance, have you many pieces +of paper of this size, each worth a million?” + +The count took into his hands the papers, which Danglars had so proudly +presented to him, and read:— + +“‘To the Governor of the Bank. Please pay to my order, from the fund +deposited by me, the sum of a million, and charge the same to my +account. + +“Baron Danglars.’” + +“One, two, three, four, five,” said Monte Cristo; “five millions—why +what a Crœsus you are!” + +“This is how I transact business,” said Danglars. + +“It is really wonderful,” said the count; “above all, if, as I suppose, +it is payable at sight.” + +“It is, indeed,” said Danglars. + +“It is a fine thing to have such credit; really, it is only in France +these things are done. Five millions on five little scraps of paper!—it +must be seen to be believed.” + +“You do not doubt it?” + +“No!” + +“You say so with an accent—stay, you shall be convinced; take my clerk +to the bank, and you will see him leave it with an order on the +Treasury for the same sum.” + +“No,” said Monte Cristo folding the five notes, “most decidedly not; +the thing is so curious, I will make the experiment myself. I am +credited on you for six millions. I have drawn nine hundred thousand +francs, you therefore still owe me five millions and a hundred thousand +francs. I will take the five scraps of paper that I now hold as bonds, +with your signature alone, and here is a receipt in full for the six +millions between us. I had prepared it beforehand, for I am much in +want of money today.” + +And Monte Cristo placed the bonds in his pocket with one hand, while +with the other he held out the receipt to Danglars. If a thunderbolt +had fallen at the banker’s feet, he could not have experienced greater +terror. + +“What,” he stammered, “do you mean to keep that money? Excuse me, +excuse me, but I owe this money to the charity fund,—a deposit which I +promised to pay this morning.” + +“Oh, well, then,” said Monte Cristo, “I am not particular about these +five notes, pay me in a different form; I wished, from curiosity, to +take these, that I might be able to say that without any advice or +preparation the house of Danglars had paid me five millions without a +minute’s delay; it would have been remarkable. But here are your bonds; +pay me differently;” and he held the bonds towards Danglars, who seized +them like a vulture extending its claws to withhold the food that is +being wrested from its grasp. + +Suddenly he rallied, made a violent effort to restrain himself, and +then a smile gradually widened the features of his disturbed +countenance. + +50109m + + + +“Certainly,” he said, “your receipt is money.” + +“Oh dear, yes; and if you were at Rome, the house of Thomson & French +would make no more difficulty about paying the money on my receipt than +you have just done.” + +“Pardon me, count, pardon me.” + +“Then I may keep this money?” + +“Yes,” said Danglars, while the perspiration started from the roots of +his hair. “Yes, keep it—keep it.” + +Monte Cristo replaced the notes in his pocket with that indescribable +expression which seemed to say, “Come, reflect; if you repent there is +still time.” + +“No,” said Danglars, “no, decidedly no; keep my signatures. But you +know none are so formal as bankers in transacting business; I intended +this money for the charity fund, and I seemed to be robbing them if I +did not pay them with these precise bonds. How absurd—as if one crown +were not as good as another. Excuse me;” and he began to laugh loudly, +but nervously. + +“Certainly, I excuse you,” said Monte Cristo graciously, “and pocket +them.” And he placed the bonds in his pocket-book. + +“But,” said Danglars, “there is still a sum of one hundred thousand +francs?” + +“Oh, a mere nothing,” said Monte Cristo. “The balance would come to +about that sum; but keep it, and we shall be quits.” + +“Count,” said Danglars, “are you speaking seriously?” + +“I never joke with bankers,” said Monte Cristo in a freezing manner, +which repelled impertinence; and he turned to the door, just as the +valet de chambre announced: + +“M. de Boville, Receiver-General of the charities.” + +“_Ma foi_,” said Monte Cristo; “I think I arrived just in time to +obtain your signatures, or they would have been disputed with me.” + +Danglars again became pale, and hastened to conduct the count out. +Monte Cristo exchanged a ceremonious bow with M. de Boville, who was +standing in the waiting-room, and who was introduced into Danglars’ +room as soon as the count had left. + +The count’s serious face was illumined by a faint smile, as he noticed +the portfolio which the receiver-general held in his hand. At the door +he found his carriage, and was immediately driven to the bank. +Meanwhile Danglars, repressing all emotion, advanced to meet the +receiver-general. We need not say that a smile of condescension was +stamped upon his lips. + +“Good-morning, creditor,” said he; “for I wager anything it is the +creditor who visits me.” + +“You are right, baron,” answered M. de Boville; “the charities present +themselves to you through me; the widows and orphans depute me to +receive alms to the amount of five millions from you.” + +“And yet they say orphans are to be pitied,” said Danglars, wishing to +prolong the jest. “Poor things!” + +“Here I am in their name,” said M. de Boville; “but did you receive my +letter yesterday?” + +“Yes.” + +“I have brought my receipt.” + +50111m + + + +“My dear M. de Boville, your widows and orphans must oblige me by +waiting twenty-four hours, since M. de Monte Cristo whom you just saw +leaving here—you did see him, I think?” + +“Yes; well?” + +“Well, M. de Monte Cristo has just carried off their five millions.” + +“How so?” + +“The count has an unlimited credit upon me; a credit opened by Thomson +& French, of Rome; he came to demand five millions at once, which I +paid him with checks on the bank. My funds are deposited there, and you +can understand that if I draw out ten millions on the same day it will +appear rather strange to the governor. Two days will be a different +thing,” said Danglars, smiling. + +“Come,” said Boville, with a tone of entire incredulity, “five millions +to that gentleman who just left, and who bowed to me as though he knew +me?” + +“Perhaps he knows you, though you do not know him; M. de Monte Cristo +knows everybody.” + +“Five millions!” + +“Here is his receipt. Believe your own eyes.” M. de Boville took the +paper Danglars presented him, and read: + +“Received of Baron Danglars the sum of five million one hundred +thousand francs, to be repaid on demand by the house of Thomson & +French of Rome.” + +“It is really true,” said M. de Boville. + +“Do you know the house of Thomson & French?” + +“Yes, I once had business to transact with it to the amount of 200,000 +francs; but since then I have not heard it mentioned.” + +“It is one of the best houses in Europe,” said Danglars, carelessly +throwing down the receipt on his desk. + +“And he had five millions in your hands alone! Why, this Count of Monte +Cristo must be a nabob?” + +“Indeed I do not know what he is; he has three unlimited credits—one on +me, one on Rothschild, one on Lafitte; and, you see,” he added +carelessly, “he has given me the preference, by leaving a balance of +100,000 francs.” + +M. de Boville manifested signs of extraordinary admiration. + +“I must visit him,” he said, “and obtain some pious grant from him.” + +“Oh, you may make sure of him; his charities alone amount to 20,000 +francs a month.” + +“It is magnificent! I will set before him the example of Madame de +Morcerf and her son.” + +“What example?” + +“They gave all their fortune to the hospitals.” + +“What fortune?” + +“Their own—M. de Morcerf’s, who is deceased.” + +“For what reason?” + +“Because they would not spend money so guiltily acquired.” + +“And what are they to live upon?” + +“The mother retires into the country, and the son enters the army.” + +50113m + + + +“Well, I must confess, these are scruples.” + +“I registered their deed of gift yesterday.” + +“And how much did they possess?” + +“Oh, not much—from twelve to thirteen hundred thousand francs. But to +return to our millions.” + +“Certainly,” said Danglars, in the most natural tone in the world. “Are +you then pressed for this money?” + +“Yes; for the examination of our cash takes place tomorrow.” + +“Tomorrow? Why did you not tell me so before? Why, it is as good as a +century! At what hour does the examination take place?” + +“At two o’clock.” + +“Send at twelve,” said Danglars, smiling. + +M. de Boville said nothing, but nodded his head, and took up the +portfolio. + +“Now I think of it, you can do better,” said Danglars. + +“How do you mean?” + +“The receipt of M. de Monte Cristo is as good as money; take it to +Rothschild’s or Lafitte’s, and they will take it off your hands at +once.” + +“What, though payable at Rome?” + +“Certainly; it will only cost you a discount of 5,000 or 6,000 francs.” + +The receiver started back. + +“_Ma foi!_” he said, “I prefer waiting till tomorrow. What a +proposition!” + +“I thought, perhaps,” said Danglars with supreme impertinence, “that +you had a deficiency to make up?” + +“Indeed,” said the receiver. + +“And if that were the case it would be worth while to make some +sacrifice.” + +“Thank you, no, sir.” + +“Then it will be tomorrow.” + +“Yes; but without fail.” + +“Ah, you are laughing at me; send tomorrow at twelve, and the bank +shall be notified.” + +“I will come myself.” + +“Better still, since it will afford me the pleasure of seeing you.” +They shook hands. + +“By the way,” said M. de Boville, “are you not going to the funeral of +poor Mademoiselle de Villefort, which I met on my road here?” + +“No,” said the banker; “I have appeared rather ridiculous since that +affair of Benedetto, so I remain in the background.” + +“Bah, you are wrong. How were you to blame in that affair?” + +“Listen—when one bears an irreproachable name, as I do, one is rather +sensitive.” + +“Everybody pities you, sir; and, above all, Mademoiselle Danglars!” + +“Poor Eugénie!” said Danglars; “do you know she is going to embrace a +religious life?” + +“No.” + +“Alas, it is unhappily but too true. The day after the event, she +decided on leaving Paris with a nun of her acquaintance; they are gone +to seek a very strict convent in Italy or Spain.” + +“Oh, it is terrible!” and M. de Boville retired with this exclamation, +after expressing acute sympathy with the father. But he had scarcely +left before Danglars, with an energy of action those can alone +understand who have seen Robert Macaire represented by Frédérick,24 +exclaimed: + +“Fool!” + +Then enclosing Monte Cristo’s receipt in a little pocket-book, he +added:—“Yes, come at twelve o’clock; I shall then be far away.” + +Then he double-locked his door, emptied all his drawers, collected +about fifty thousand francs in bank-notes, burned several papers, left +others exposed to view, and then commenced writing a letter which he +addressed: + +“To Madame la Baronne Danglars.” + +“I will place it on her table myself tonight,” he murmured. Then taking +a passport from his drawer he said,—“Good, it is available for two +months longer.” + + + + Chapter 105. The Cemetery of Père-Lachaise + +M. de Boville had indeed met the funeral procession which was taking +Valentine to her last home on earth. The weather was dull and stormy, a +cold wind shook the few remaining yellow leaves from the boughs of the +trees, and scattered them among the crowd which filled the boulevards. +M. de Villefort, a true Parisian, considered the cemetery of +Père-Lachaise alone worthy of receiving the mortal remains of a +Parisian family; there alone the corpses belonging to him would be +surrounded by worthy associates. He had therefore purchased a vault, +which was quickly occupied by members of his family. On the front of +the monument was inscribed: “The families of Saint-Méran and +Villefort,” for such had been the last wish expressed by poor Renée, +Valentine’s mother. The pompous procession therefore wended its way +towards Père-Lachaise from the Faubourg Saint-Honoré. Having crossed +Paris, it passed through the Faubourg du Temple, then leaving the +exterior boulevards, it reached the cemetery. More than fifty private +carriages followed the twenty mourning-coaches, and behind them more +than five hundred persons joined in the procession on foot. + +50117m + + + +These last consisted of all the young people whom Valentine’s death had +struck like a thunderbolt, and who, notwithstanding the raw chilliness +of the season, could not refrain from paying a last tribute to the +memory of the beautiful, chaste, and adorable girl, thus cut off in the +flower of her youth. + +As they left Paris, an equipage with four horses, at full speed, was +seen to draw up suddenly; it contained Monte Cristo. The count left the +carriage and mingled in the crowd who followed on foot. Château-Renaud +perceived him and immediately alighting from his _coupé_, joined him; +Beauchamp did the same. + +The count looked attentively through every opening in the crowd; he was +evidently watching for someone, but his search ended in disappointment. + +50119m + + + +“Where is Morrel?” he asked; “do either of these gentlemen know where +he is?” + +“We have already asked that question,” said Château-Renaud, “for none +of us has seen him.” + +The count was silent, but continued to gaze around him. At length they +arrived at the cemetery. The piercing eye of Monte Cristo glanced +through clusters of bushes and trees, and was soon relieved from all +anxiety, for seeing a shadow glide between the yew-trees, Monte Cristo +recognized him whom he sought. + +One funeral is generally very much like another in this magnificent +metropolis. Black figures are seen scattered over the long white +avenues; the silence of earth and heaven is alone broken by the noise +made by the crackling branches of hedges planted around the monuments; +then follows the melancholy chant of the priests, mingled now and then +with a sob of anguish, escaping from some woman concealed behind a mass +of flowers. + +The shadow Monte Cristo had noticed passed rapidly behind the tomb of +Abélard and Héloïse, placed itself close to the heads of the horses +belonging to the hearse, and following the undertaker’s men, arrived +with them at the spot appointed for the burial. Each person’s attention +was occupied. Monte Cristo saw nothing but the shadow, which no one +else observed. Twice the count left the ranks to see whether the object +of his interest had any concealed weapon beneath his clothes. When the +procession stopped, this shadow was recognized as Morrel, who, with his +coat buttoned up to his throat, his face livid, and convulsively +crushing his hat between his fingers, leaned against a tree, situated +on an elevation commanding the mausoleum, so that none of the funeral +details could escape his observation. + +Everything was conducted in the usual manner. A few men, the least +impressed of all by the scene, pronounced a discourse, some deploring +this premature death, others expatiating on the grief of the father, +and one very ingenious person quoting the fact that Valentine had +solicited pardon of her father for criminals on whom the arm of justice +was ready to fall—until at length they exhausted their stores of +metaphor and mournful speeches, elaborate variations on the stanzas of +Malherbe to Du Périer. + +Monte Cristo heard and saw nothing, or rather he only saw Morrel, whose +calmness had a frightful effect on those who knew what was passing in +his heart. + +“See,” said Beauchamp, pointing out Morrel to Debray. “What is he doing +up there?” And they called Château-Renaud’s attention to him. + +“How pale he is!” said Château-Renaud, shuddering. + +“He is cold,” said Debray. + +“Not at all,” said Château-Renaud, slowly; “I think he is violently +agitated. He is very susceptible.” + +“Bah,” said Debray; “he scarcely knew Mademoiselle de Villefort; you +said so yourself.” + +“True. Still I remember he danced three times with her at Madame de +Morcerf’s. Do you recollect that ball, count, where you produced such +an effect?” + +50121m + + + +“No, I do not,” replied Monte Cristo, without even knowing of what or +to whom he was speaking, so much was he occupied in watching Morrel, +who was holding his breath with emotion. + +“The discourse is over; farewell, gentlemen,” said the count, +unceremoniously. + +And he disappeared without anyone seeing whither he went. + +The funeral being over, the guests returned to Paris. Château-Renaud +looked for a moment for Morrel; but while they were watching the +departure of the count, Morrel had quitted his post, and +Château-Renaud, failing in his search, joined Debray and Beauchamp. + +Monte Cristo concealed himself behind a large tomb and awaited the +arrival of Morrel, who by degrees approached the tomb now abandoned by +spectators and workmen. Morrel threw a glance around, but before it +reached the spot occupied by Monte Cristo the latter had advanced yet +nearer, still unperceived. The young man knelt down. The count, with +outstretched neck and glaring eyes, stood in an attitude ready to +pounce upon Morrel upon the first occasion. Morrel bent his head till +it touched the stone, then clutching the grating with both hands, he +murmured: + +“Oh, Valentine!” + +The count’s heart was pierced by the utterance of these two words; he +stepped forward, and touching the young man’s shoulder, said: + +“I was looking for you, my friend.” Monte Cristo expected a burst of +passion, but he was deceived, for Morrel turning round, said calmly,— + +“You see I was praying.” The scrutinizing glance of the count searched +the young man from head to foot. He then seemed more easy. + +“Shall I drive you back to Paris?” he asked. + +“No, thank you.” + +“Do you wish anything?” + +“Leave me to pray.” + +The count withdrew without opposition, but it was only to place himself +in a situation where he could watch every movement of Morrel, who at +length arose, brushed the dust from his knees, and turned towards +Paris, without once looking back. He walked slowly down the Rue de la +Roquette. The count, dismissing his carriage, followed him about a +hundred paces behind. Maximilian crossed the canal and entered the Rue +Meslay by the boulevards. + +Five minutes after the door had been closed on Morrel’s entrance, it +was again opened for the count. Julie was at the entrance of the +garden, where she was attentively watching Penelon, who, entering with +zeal into his profession of gardener, was very busy grafting some +Bengal roses. “Ah, count,” she exclaimed, with the delight manifested +by every member of the family whenever he visited the Rue Meslay. + +“Maximilian has just returned, has he not, madame?” asked the count. + +50123m + + + +“Yes, I think I saw him pass; but pray, call Emmanuel.” + +“Excuse me, madame, but I must go up to Maximilian’s room this +instant,” replied Monte Cristo, “I have something of the greatest +importance to tell him.” + +“Go, then,” she said with a charming smile, which accompanied him until +he had disappeared. + +Monte Cristo soon ran up the staircase conducting from the ground floor +to Maximilian’s room; when he reached the landing he listened +attentively, but all was still. Like many old houses occupied by a +single family, the room door was panelled with glass; but it was +locked, Maximilian was shut in, and it was impossible to see what was +passing in the room, because a red curtain was drawn before the glass. +The count’s anxiety was manifested by a bright color which seldom +appeared on the face of that imperturbable man. + +“What shall I do!” he uttered, and reflected for a moment; “shall I +ring? No, the sound of a bell, announcing a visitor, will but +accelerate the resolution of one in Maximilian’s situation, and then +the bell would be followed by a louder noise.” + +Monte Cristo trembled from head to foot and as if his determination had +been taken with the rapidity of lightning, he struck one of the panes +of glass with his elbow; the glass was shivered to atoms, then +withdrawing the curtain he saw Morrel, who had been writing at his +desk, bound from his seat at the noise of the broken window. + +“I beg a thousand pardons,” said the count, “there is nothing the +matter, but I slipped down and broke one of your panes of glass with my +elbow. Since it is opened, I will take advantage of it to enter your +room; do not disturb yourself—do not disturb yourself!” + +And passing his hand through the broken glass, the count opened the +door. Morrel, evidently discomposed, came to meet Monte Cristo less +with the intention of receiving him than to exclude his entry. + +“_Ma foi_,” said Monte Cristo, rubbing his elbow, “it’s all your +servant’s fault; your stairs are so polished, it is like walking on +glass.” + +“Are you hurt, sir?” coldly asked Morrel. + +“I believe not. But what are you about there? You were writing.” + +“I?” + +“Your fingers are stained with ink.” + +“Ah, true, I was writing. I do sometimes, soldier though I am.” + +Monte Cristo advanced into the room; Maximilian was obliged to let him +pass, but he followed him. + +“You were writing?” said Monte Cristo with a searching look. + +“I have already had the honor of telling you I was,” said Morrel. + +The count looked around him. + +“Your pistols are beside your desk,” said Monte Cristo, pointing with +his finger to the pistols on the table. + +“I am on the point of starting on a journey,” replied Morrel +disdainfully. + +“My friend,” exclaimed Monte Cristo in a tone of exquisite sweetness. + +“Sir?” + +“My friend, my dear Maximilian, do not make a hasty resolution, I +entreat you.” + +“I make a hasty resolution?” said Morrel, shrugging his shoulders; “is +there anything extraordinary in a journey?” + +50125m + + + +“Maximilian,” said the count, “let us both lay aside the mask we have +assumed. You no more deceive me with that false calmness than I impose +upon you with my frivolous solicitude. You can understand, can you not, +that to have acted as I have done, to have broken that glass, to have +intruded on the solitude of a friend—you can understand that, to have +done all this, I must have been actuated by real uneasiness, or rather +by a terrible conviction. Morrel, you are going to destroy yourself!” + +“Indeed, count,” said Morrel, shuddering; “what has put this into your +head?” + +“I tell you that you are about to destroy yourself,” continued the +count, “and here is proof of what I say;” and, approaching the desk, he +removed the sheet of paper which Morrel had placed over the letter he +had begun, and took the latter in his hands. + +Morrel rushed forward to tear it from him, but Monte Cristo perceiving +his intention, seized his wrist with his iron grasp. + +“You wish to destroy yourself,” said the count; “you have written it.” + +“Well,” said Morrel, changing his expression of calmness for one of +violence—“well, and if I do intend to turn this pistol against myself, +who shall prevent me—who will dare prevent me? All my hopes are +blighted, my heart is broken, my life a burden, everything around me is +sad and mournful; earth has become distasteful to me, and human voices +distract me. It is a mercy to let me die, for if I live I shall lose my +reason and become mad. When, sir, I tell you all this with tears of +heartfelt anguish, can you reply that I am wrong, can you prevent my +putting an end to my miserable existence? Tell me, sir, could you have +the courage to do so?” + +“Yes, Morrel,” said Monte Cristo, with a calmness which contrasted +strangely with the young man’s excitement; “yes, I would do so.” + +“You?” exclaimed Morrel, with increasing anger and reproach—“you, who +have deceived me with false hopes, who have cheered and soothed me with +vain promises, when I might, if not have saved her, at least have seen +her die in my arms! You, who pretend to understand everything, even the +hidden sources of knowledge,—and who enact the part of a guardian angel +upon earth, and could not even find an antidote to a poison +administered to a young girl! Ah, sir, indeed you would inspire me with +pity, were you not hateful in my eyes.” + +“Morrel——” + +“Yes; you tell me to lay aside the mask, and I will do so, be +satisfied! When you spoke to me at the cemetery, I answered you—my +heart was softened; when you arrived here, I allowed you to enter. But +since you abuse my confidence, since you have devised a new torture +after I thought I had exhausted them all, then, Count of Monte Cristo +my pretended benefactor—then, Count of Monte Cristo, the universal +guardian, be satisfied, you shall witness the death of your friend;” +and Morrel, with a maniacal laugh, again rushed towards the pistols. + +“And I again repeat, you shall not commit suicide.” + +“Prevent me, then!” replied Morrel, with another struggle, which, like +the first, failed in releasing him from the count’s iron grasp. + +“I will prevent you.” + +50127m + + + +“And who are you, then, that arrogate to yourself this tyrannical right +over free and rational beings?” + +“Who am I?” repeated Monte Cristo. “Listen; I am the only man in the +world having the right to say to you, ‘Morrel, your father’s son shall +not die today;’” and Monte Cristo, with an expression of majesty and +sublimity, advanced with arms folded toward the young man, who, +involuntarily overcome by the commanding manner of this man, recoiled a +step. + +“Why do you mention my father?” stammered he; “why do you mingle a +recollection of him with the affairs of today?” + +“Because I am he who saved your father’s life when he wished to destroy +himself, as you do today—because I am the man who sent the purse to +your young sister, and the _Pharaon_ to old Morrel—because I am the +Edmond Dantès who nursed you, a child, on my knees.” + +Morrel made another step back, staggering, breathless, crushed; then +all his strength give way, and he fell prostrate at the feet of Monte +Cristo. Then his admirable nature underwent a complete and sudden +revulsion; he arose, rushed out of the room and to the stairs, +exclaiming energetically, “Julie, Julie—Emmanuel, Emmanuel!” + +Monte Cristo endeavored also to leave, but Maximilian would have died +rather than relax his hold of the handle of the door, which he closed +upon the count. Julie, Emmanuel, and some of the servants, ran up in +alarm on hearing the cries of Maximilian. Morrel seized their hands, +and opening the door exclaimed in a voice choked with sobs: + +“On your knees—on your knees—he is our benefactor—the saviour of our +father! He is——” + +He would have added “Edmond Dantès,” but the count seized his arm and +prevented him. + +Julie threw herself into the arms of the count; Emmanuel embraced him +as a guardian angel; Morrel again fell on his knees, and struck the +ground with his forehead. Then the iron-hearted man felt his heart +swell in his breast; a flame seemed to rush from his throat to his +eyes, he bent his head and wept. For a while nothing was heard in the +room but a succession of sobs, while the incense from their grateful +hearts mounted to heaven. Julie had scarcely recovered from her deep +emotion when she rushed out of the room, descended to the next floor, +ran into the drawing-room with childlike joy and raised the crystal +globe which covered the purse given by the unknown of the Allées de +Meilhan. Meanwhile, Emmanuel in a broken voice said to the count: + +“Oh, count, how could you, hearing us so often speak of our unknown +benefactor, seeing us pay such homage of gratitude and adoration to his +memory,—how could you continue so long without discovering yourself to +us? Oh, it was cruel to us, and—dare I say it?—to you also.” + +“Listen, my friends,” said the count—“I may call you so since we have +really been friends for the last eleven years—the discovery of this +secret has been occasioned by a great event which you must never know. +I wished to bury it during my whole life in my own bosom, but your +brother Maximilian wrested it from me by a violence he repents of now, +I am sure.” + +Then turning around, and seeing that Morrel, still on his knees, had +thrown himself into an armchair, he added in a low voice, pressing +Emmanuel’s hand significantly, “Watch over him.” + +“Why so?” asked the young man, surprised. + +“I cannot explain myself; but watch over him.” Emmanuel looked around +the room and caught sight of the pistols; his eyes rested on the +weapons, and he pointed to them. Monte Cristo bent his head. Emmanuel +went towards the pistols. + +“Leave them,” said Monte Cristo. Then walking towards Morrel, he took +his hand; the tumultuous agitation of the young man was succeeded by a +profound stupor. Julie returned, holding the silken purse in her hands, +while tears of joy rolled down her cheeks, like dewdrops on the rose. + +“Here is the relic,” she said; “do not think it will be less dear to us +now we are acquainted with our benefactor!” + +“My child,” said Monte Cristo, coloring, “allow me to take back that +purse? Since you now know my face, I wish to be remembered alone +through the affection I hope you will grant me. + +“Oh,” said Julie, pressing the purse to her heart, “no, no, I beseech +you do not take it, for some unhappy day you will leave us, will you +not?” + +“You have guessed rightly, madame,” replied Monte Cristo, smiling; “in +a week I shall have left this country, where so many persons who merit +the vengeance of Heaven lived happily, while my father perished of +hunger and grief.” + +While announcing his departure, the count fixed his eyes on Morrel, and +remarked that the words, “I shall have left this country,” had failed +to rouse him from his lethargy. He then saw that he must make another +struggle against the grief of his friend, and taking the hands of +Emmanuel and Julie, which he pressed within his own, he said with the +mild authority of a father: + +“My kind friends, leave me alone with Maximilian.” + +Julie saw the means offered of carrying off her precious relic, which +Monte Cristo had forgotten. She drew her husband to the door. “Let us +leave them,” she said. + +The count was alone with Morrel, who remained motionless as a statue. + +“Come,” said Monte-Cristo, touching his shoulder with his finger, “are +you a man again, Maximilian?” + +“Yes; for I begin to suffer again.” + +The count frowned, apparently in gloomy hesitation. + +“Maximilian, Maximilian,” he said, “the ideas you yield to are unworthy +of a Christian.” + +“Oh, do not fear, my friend,” said Morrel, raising his head, and +smiling with a sweet expression on the count; “I shall no longer +attempt my life.” + +“Then we are to have no more pistols—no more despair?” + +“No; I have found a better remedy for my grief than either a bullet or +a knife.” + +“Poor fellow, what is it?” + +“My grief will kill me of itself.” + +“My friend,” said Monte Cristo, with an expression of melancholy equal +to his own, “listen to me. One day, in a moment of despair like yours, +since it led to a similar resolution, I also wished to kill myself; one +day your father, equally desperate, wished to kill himself too. If +anyone had said to your father, at the moment he raised the pistol to +his head—if anyone had told me, when in my prison I pushed back the +food I had not tasted for three days—if anyone had said to either of us +then, ‘Live—the day will come when you will be happy, and will bless +life!’—no matter whose voice had spoken, we should have heard him with +the smile of doubt, or the anguish of incredulity,—and yet how many +times has your father blessed life while embracing you—how often have I +myself——” + +“Ah,” exclaimed Morrel, interrupting the count, “you had only lost your +liberty, my father had only lost his fortune, but I have lost +Valentine.” + +“Look at me,” said Monte Cristo, with that expression which sometimes +made him so eloquent and persuasive—“look at me. There are no tears in +my eyes, nor is there fever in my veins, yet I see you suffer—you, +Maximilian, whom I love as my own son. Well, does not this tell you +that in grief, as in life, there is always something to look forward to +beyond? Now, if I entreat, if I order you to live, Morrel, it is in the +conviction that one day you will thank me for having preserved your +life.” + +“Oh, heavens,” said the young man, “oh, heavens—what are you saying, +count? Take care. But perhaps you have never loved!” + +“Child!” replied the count. + +“I mean, as I love. You see, I have been a soldier ever since I +attained manhood. I reached the age of twenty-nine without loving, for +none of the feelings I before then experienced merit the appellation of +love. Well, at twenty-nine I saw Valentine; for two years I have loved +her, for two years I have seen written in her heart, as in a book, all +the virtues of a daughter and wife. Count, to possess Valentine would +have been a happiness too infinite, too ecstatic, too complete, too +divine for this world, since it has been denied me; but without +Valentine the earth is desolate.” + +“I have told you to hope,” said the count. + +“Then have a care, I repeat, for you seek to persuade me, and if you +succeed I should lose my reason, for I should hope that I could again +behold Valentine.” + +The count smiled. + +“My friend, my father,” said Morrel with excitement, “have a care, I +again repeat, for the power you wield over me alarms me. Weigh your +words before you speak, for my eyes have already become brighter, and +my heart beats strongly; be cautious, or you will make me believe in +supernatural agencies. I must obey you, though you bade me call forth +the dead or walk upon the water.” + +“Hope, my friend,” repeated the count. + +“Ah,” said Morrel, falling from the height of excitement to the abyss +of despair—“ah, you are playing with me, like those good, or rather +selfish mothers who soothe their children with honeyed words, because +their screams annoy them. No, my friend, I was wrong to caution you; do +not fear, I will bury my grief so deep in my heart, I will disguise it +so, that you shall not even care to sympathize with me. Adieu, my +friend, adieu!” + +“On the contrary,” said the count, “after this time you must live with +me—you must not leave me, and in a week we shall have left France +behind us.” + +“And you still bid me hope?” + +“I tell you to hope, because I have a method of curing you.” + +“Count, you render me sadder than before, if it be possible. You think +the result of this blow has been to produce an ordinary grief, and you +would cure it by an ordinary remedy—change of scene.” And Morrel +dropped his head with disdainful incredulity. + +“What can I say more?” asked Monte Cristo. “I have confidence in the +remedy I propose, and only ask you to permit me to assure you of its +efficacy.” + +“Count, you prolong my agony.” + +“Then,” said the count, “your feeble spirit will not even grant me the +trial I request? Come—do you know of what the Count of Monte Cristo is +capable? do you know that he holds terrestrial beings under his +control? nay, that he can almost work a miracle? Well, wait for the +miracle I hope to accomplish, or——” + +“Or?” repeated Morrel. + +“Or, take care, Morrel, lest I call you ungrateful.” + +“Have pity on me, count!” + +“I feel so much pity towards you, Maximilian, that—listen to me +attentively—if I do not cure you in a month, to the day, to the very +hour, mark my words, Morrel, I will place loaded pistols before you, +and a cup of the deadliest Italian poison—a poison more sure and prompt +than that which has killed Valentine.” + +“Will you promise me?” + +“Yes; for I am a man, and have suffered like yourself, and also +contemplated suicide; indeed, often since misfortune has left me I have +longed for the delights of an eternal sleep.” + +“But you are sure you will promise me this?” said Morrel, intoxicated. + +“I not only promise, but swear it!” said Monte Cristo extending his +hand. + +“In a month, then, on your honor, if I am not consoled, you will let me +take my life into my own hands, and whatever may happen you will not +call me ungrateful?” + +“In a month, to the day, the very hour and the date is a sacred one, +Maximilian. I do not know whether you remember that this is the 5th of +September; it is ten years today since I saved your father’s life, who +wished to die.” + +Morrel seized the count’s hand and kissed it; the count allowed him to +pay the homage he felt due to him. + +“In a month you will find on the table, at which we shall be then +sitting, good pistols and a delicious draught; but, on the other hand, +you must promise me not to attempt your life before that time.” + +“Oh, I also swear it!” + +Monte Cristo drew the young man towards him, and pressed him for some +time to his heart. “And now,” he said, “after today, you will come and +live with me; you can occupy Haydée’s apartment, and my daughter will +at least be replaced by my son.” + +“Haydée?” said Morrel, “what has become of her?” + +“She departed last night.” + +“To leave you?” + +“To wait for me. Hold yourself ready then to join me at the +Champs-Élysées, and lead me out of this house without anyone seeing my +departure.” + +Maximilian hung his head, and obeyed with childlike reverence. + + + + Chapter 106. Dividing the Proceeds + +The apartment on the first floor of the house in the Rue +Saint-Germain-des-Prés, where Albert de Morcerf had selected a home for +his mother, was let to a very mysterious person. This was a man whose +face the concierge himself had never seen, for in the winter his chin +was buried in one of the large red handkerchiefs worn by gentlemen’s +coachmen on a cold night, and in the summer he made a point of always +blowing his nose just as he approached the door. Contrary to custom, +this gentleman had not been watched, for as the report ran that he was +a person of high rank, and one who would allow no impertinent +interference, his _incognito_ was strictly respected. + +His visits were tolerably regular, though occasionally he appeared a +little before or after his time, but generally, both in summer and +winter, he took possession of his apartment about four o’clock, though +he never spent the night there. At half-past three in the winter the +fire was lighted by the discreet servant, who had the superintendence +of the little apartment, and in the summer ices were placed on the +table at the same hour. At four o’clock, as we have already stated, the +mysterious personage arrived. + +Twenty minutes afterwards a carriage stopped at the house, a lady +alighted in a black or dark blue dress, and always thickly veiled; she +passed like a shadow through the lodge, and ran upstairs without a +sound escaping under the touch of her light foot. No one ever asked her +where she was going. Her face, therefore, like that of the gentleman, +was perfectly unknown to the two concierges, who were perhaps +unequalled throughout the capital for discretion. We need not say she +stopped at the first floor. Then she tapped in a peculiar manner at a +door, which after being opened to admit her was again fastened, and +curiosity penetrated no farther. They used the same precautions in +leaving as in entering the house. The lady always left first, and as +soon as she had stepped into her carriage, it drove away, sometimes +towards the right hand, sometimes to the left; then about twenty +minutes afterwards the gentleman would also leave, buried in his cravat +or concealed by his handkerchief. + +The day after Monte Cristo had called upon Danglars, the mysterious +lodger entered at ten o’clock in the morning instead of four in the +afternoon. Almost directly afterwards, without the usual interval of +time, a cab arrived, and the veiled lady ran hastily upstairs. The door +opened, but before it could be closed, the lady exclaimed: + +“Oh, Lucien—oh, my friend!” + +The concierge therefore heard for the first time that the lodger’s name +was Lucien; still, as he was the very perfection of a door-keeper, he +made up his mind not to tell his wife. + +“Well, what is the matter, my dear?” asked the gentleman whose name the +lady’s agitation revealed; “tell me what is the matter.” + +“Oh, Lucien, can I confide in you?” + +“Of course, you know you can do so. But what can be the matter? Your +note of this morning has completely bewildered me. This +precipitation—this unusual appointment. Come, ease me of my anxiety, or +else frighten me at once.” + +“Lucien, a great event has happened!” said the lady, glancing +inquiringly at Lucien,—“M. Danglars left last night!” + +“Left?—M. Danglars left? Where has he gone?” + +“I do not know.” + +“What do you mean? Has he gone intending not to return?” + +“Undoubtedly;—at ten o’clock at night his horses took him to the +barrier of Charenton; there a post-chaise was waiting for him—he +entered it with his valet de chambre, saying that he was going to +Fontainebleau.” + +“Then what did you mean——” + +“Stay—he left a letter for me.” + +“A letter?” + +“Yes; read it.” + +And the baroness took from her pocket a letter which she gave to +Debray. Debray paused a moment before reading, as if trying to guess +its contents, or perhaps while making up his mind how to act, whatever +it might contain. No doubt his ideas were arranged in a few minutes, +for he began reading the letter which caused so much uneasiness in the +heart of the baroness, and which ran as follows: + +“‘Madame and most faithful wife.’” + +Debray mechanically stopped and looked at the baroness, whose face +became covered with blushes. + +“Read,” she said. + +Debray continued: + +“‘When you receive this, you will no longer have a husband. Oh, you +need not be alarmed, you will only have lost him as you have lost your +daughter; I mean that I shall be travelling on one of the thirty or +forty roads leading out of France. I owe you some explanations for my +conduct, and as you are a woman that can perfectly understand me, I +will give them. Listen, then. I received this morning five millions +which I paid away; almost directly afterwards another demand for the +same sum was presented to me; I put this creditor off till tomorrow and +I intend leaving today, to escape that tomorrow, which would be rather +too unpleasant for me to endure. You understand this, do you not, my +most precious wife? I say you understand this, because you are as +conversant with my affairs as I am; indeed, I think you understand them +better, since I am ignorant of what has become of a considerable +portion of my fortune, once very tolerable, while I am sure, madame, +that you know perfectly well. For women have infallible instincts; they +can even explain the marvellous by an algebraic calculation they have +invented; but I, who only understand my own figures, know nothing more +than that one day these figures deceived me. Have you admired the +rapidity of my fall? Have you been slightly dazzled at the sudden +fusion of my ingots? I confess I have seen nothing but the fire; let us +hope you have found some gold among the ashes. With this consoling +idea, I leave you, madame, and most prudent wife, without any +conscientious reproach for abandoning you; you have friends left, and +the ashes I have already mentioned, and above all the liberty I hasten +to restore to you. And here, madame, I must add another word of +explanation. So long as I hoped you were working for the good of our +house and for the fortune of our daughter, I philosophically closed my +eyes; but as you have transformed that house into a vast ruin I will +not be the foundation of another man’s fortune. You were rich when I +married you, but little respected. Excuse me for speaking so very +candidly, but as this is intended only for ourselves, I do not see why +I should weigh my words. I have augmented our fortune, and it has +continued to increase during the last fifteen years, till extraordinary +and unexpected catastrophes have suddenly overturned it,—without any +fault of mine, I can honestly declare. You, madame, have only sought to +increase your own, and I am convinced that you have succeeded. I leave +you, therefore, as I took you,—rich, but little respected. Adieu! I +also intend from this time to work on my own account. Accept my +acknowledgments for the example you have set me, and which I intend +following. + +“‘Your very devoted husband, + +“‘Baron Danglars.’” + +The baroness had watched Debray while he read this long and painful +letter, and saw him, notwithstanding his self-control, change color +once or twice. When he had ended the perusal, he folded the letter and +resumed his pensive attitude. + +“Well?” asked Madame Danglars, with an anxiety easy to be understood. + +“Well, madame?” unhesitatingly repeated Debray. + +“With what ideas does that letter inspire you?” + +“Oh, it is simple enough, madame; it inspires me with the idea that M. +Danglars has left suspiciously.” + +“Certainly; but is this all you have to say to me?” + +“I do not understand you,” said Debray with freezing coldness. + +“He is gone! Gone, never to return!” + +“Oh, madame, do not think that!” + +“I tell you he will never return. I know his character; he is +inflexible in any resolutions formed for his own interests. If he could +have made any use of me, he would have taken me with him; he leaves me +in Paris, as our separation will conduce to his benefit;—therefore he +has gone, and I am free forever,” added Madame Danglars, in the same +supplicating tone. + +Debray, instead of answering, allowed her to remain in an attitude of +nervous inquiry. + +“Well?” she said at length, “do you not answer me?” + +“I have but one question to ask you,—what do you intend to do?” + +“I was going to ask you,” replied the baroness with a beating heart. + +“Ah, then, you wish to ask advice of me?” + +“Yes; I do wish to ask your advice,” said Madame Danglars with anxious +expectation. + +“Then if you wish to take my advice,” said the young man coldly, “I +would recommend you to travel.” + +“To travel!” she murmured. + +“Certainly; as M. Danglars says, you are rich, and perfectly free. In +my opinion, a withdrawal from Paris is absolutely necessary after the +double catastrophe of Mademoiselle Danglars’ broken contract and M. +Danglars’ disappearance. The world will think you abandoned and poor, +for the wife of a bankrupt would never be forgiven, were she to keep up +an appearance of opulence. You have only to remain in Paris for about a +fortnight, telling the world you are abandoned, and relating the +details of this desertion to your best friends, who will soon spread +the report. Then you can quit your house, leaving your jewels and +giving up your jointure, and everyone’s mouth will be filled with +praises of your disinterestedness. They will know you are deserted, and +think you also poor, for I alone know your real financial position, and +am quite ready to give up my accounts as an honest partner.” + +The dread with which the pale and motionless baroness listened to this, +was equalled by the calm indifference with which Debray had spoken. + +“Deserted?” she repeated; “ah, yes, I am, indeed, deserted! You are +right, sir, and no one can doubt my position.” + +These were the only words that this proud and violently enamoured woman +could utter in response to Debray. + +50137m + + + +“But then you are rich,—very rich, indeed,” continued Debray, taking +out some papers from his pocket-book, which he spread upon the table. +Madame Danglars did not see them; she was engaged in stilling the +beatings of her heart, and restraining the tears which were ready to +gush forth. At length a sense of dignity prevailed, and if she did not +entirely master her agitation, she at least succeeded in preventing the +fall of a single tear. + +“Madame,” said Debray, “it is nearly six months since we have been +associated. You furnished a principal of 100,000 francs. Our +partnership began in the month of April. In May we commenced +operations, and in the course of the month gained 450,000 francs. In +June the profit amounted to 900,000. In July we added 1,700,000 +francs,—it was, you know, the month of the Spanish bonds. In August we +lost 300,000 francs at the beginning of the month, but on the 13th we +made up for it, and we now find that our accounts, reckoning from the +first day of partnership up to yesterday, when I closed them, showed a +capital of 2,400,000 francs, that is, 1,200,000 for each of us. Now, +madame,” said Debray, delivering up his accounts in the methodical +manner of a stockbroker, “there are still 80,000 francs, the interest +of this money, in my hands.” + +“But,” said the baroness, “I thought you never put the money out to +interest.” + +“Excuse me, madame,” said Debray coldly, “I had your permission to do +so, and I have made use of it. There are, then, 40,000 francs for your +share, besides the 100,000 you furnished me to begin with, making in +all 1,340,000 francs for your portion. Now, madame, I took the +precaution of drawing out your money the day before yesterday; it is +not long ago, you see, and I was in continual expectation of being +called on to deliver up my accounts. There is your money,—half in +bank-notes, the other half in checks payable to bearer. I say _there_, +for as I did not consider my house safe enough, or lawyers sufficiently +discreet, and as landed property carries evidence with it, and moreover +since you have no right to possess anything independent of your +husband, I have kept this sum, now your whole fortune, in a chest +concealed under that closet, and for greater security I myself +concealed it there. + +“Now, madame,” continued Debray, first opening the closet, then the +chest;—“now, madame, here are 800 notes of 1,000 francs each, +resembling, as you see, a large book bound in iron; to this I add a +certificate in the funds of 25,000 francs; then, for the odd cash, +making I think about 110,000 francs, here is a check upon my banker, +who, not being M. Danglars, will pay you the amount, you may rest +assured.” + +Madame Danglars mechanically took the check, the bond, and the heap of +bank-notes. This enormous fortune made no great appearance on the +table. Madame Danglars, with tearless eyes, but with her breast heaving +with concealed emotion, placed the bank-notes in her bag, put the +certificate and check into her pocket-book, and then, standing pale and +mute, awaited one kind word of consolation. + +But she waited in vain. + +“Now, madame,” said Debray, “you have a splendid fortune, an income of +about 60,000 livres a year, which is enormous for a woman who cannot +keep an establishment here for a year, at least. You will be able to +indulge all your fancies; besides, should you find your income +insufficient, you can, for the sake of the past, madame, make use of +mine; and I am ready to offer you all I possess, on loan.” + +“Thank you, sir—thank you,” replied the baroness; “you forget that what +you have just paid me is much more than a poor woman requires, who +intends for some time, at least, to retire from the world.” + +Debray was, for a moment, surprised, but immediately recovering +himself, he bowed with an air which seemed to say, “As you please, +madame.” + +Madame Danglars had until then, perhaps, hoped for something; but when +she saw the careless bow of Debray, and the glance by which it was +accompanied, together with his significant silence, she raised her +head, and without passion or violence or even hesitation, ran +downstairs, disdaining to address a last farewell to one who could thus +part from her. + +“Bah,” said Debray, when she had left, “these are fine projects! She +will remain at home, read novels, and speculate at cards, since she can +no longer do so on the Bourse.” + +Then taking up his account book, he cancelled with the greatest care +all the entries of the amounts he had just paid away. + +“I have 1,060,000 francs remaining,” he said. “What a pity Mademoiselle +de Villefort is dead! She suited me in every respect, and I would have +married her.” + +And he calmly waited until the twenty minutes had elapsed after Madame +Danglars’ departure before he left the house. During this time he +occupied himself in making figures, with his watch by his side. + +Asmodeus—that diabolical personage, who would have been created by +every fertile imagination if Le Sage had not acquired the priority in +his great masterpiece—would have enjoyed a singular spectacle, if he +had lifted up the roof of the little house in the Rue +Saint-Germain-des-Prés, while Debray was casting up his figures. + +Above the room in which Debray had been dividing two millions and a +half with Madame Danglars was another, inhabited by persons who have +played too prominent a part in the incidents we have related for their +appearance not to create some interest. + +Mercédès and Albert were in that room. + +Mercédès was much changed within the last few days; not that even in +her days of fortune she had ever dressed with the magnificent display +which makes us no longer able to recognize a woman when she appears in +a plain and simple attire; nor indeed, had she fallen into that state +of depression where it is impossible to conceal the garb of misery; no, +the change in Mercédès was that her eye no longer sparkled, her lips no +longer smiled, and there was now a hesitation in uttering the words +which formerly sprang so fluently from her ready wit. + +It was not poverty which had broken her spirit; it was not a want of +courage which rendered her poverty burdensome. Mercédès, although +deposed from the exalted position she had occupied, lost in the sphere +she had now chosen, like a person passing from a room splendidly +lighted into utter darkness, appeared like a queen, fallen from her +palace to a hovel, and who, reduced to strict necessity, could neither +become reconciled to the earthen vessels she was herself forced to +place upon the table, nor to the humble pallet which had become her +bed. + +The beautiful Catalane and noble countess had lost both her proud +glance and charming smile, because she saw nothing but misery around +her; the walls were hung with one of the gray papers which economical +landlords choose as not likely to show the dirt; the floor was +uncarpeted; the furniture attracted the attention to the poor attempt +at luxury; indeed, everything offended eyes accustomed to refinement +and elegance. + +Madame de Morcerf had lived there since leaving her house; the +continual silence of the spot oppressed her; still, seeing that Albert +continually watched her countenance to judge the state of her feelings, +she constrained herself to assume a monotonous smile of the lips alone, +which, contrasted with the sweet and beaming expression that usually +shone from her eyes, seemed like “moonlight on a statue,”—yielding +light without warmth. + +Albert, too, was ill at ease; the remains of luxury prevented him from +sinking into his actual position. If he wished to go out without +gloves, his hands appeared too white; if he wished to walk through the +town, his boots seemed too highly polished. Yet these two noble and +intelligent creatures, united by the indissoluble ties of maternal and +filial love, had succeeded in tacitly understanding one another, and +economizing their stores, and Albert had been able to tell his mother +without extorting a change of countenance: + +“Mother, we have no more money.” + +50141m + + + +Mercédès had never known misery; she had often, in her youth, spoken of +poverty, but between want and necessity, those synonymous words, there +is a wide difference. + +Amongst the Catalans, Mercédès wished for a thousand things, but still +she never really wanted any. So long as the nets were good, they caught +fish; and so long as they sold their fish, they were able to buy twine +for new nets. And then, shut out from friendship, having but one +affection, which could not be mixed up with her ordinary pursuits, she +thought of herself—of no one but herself. Upon the little she earned +she lived as well as she could; now there were two to be supported, and +nothing to live upon. + +Winter approached. Mercédès had no fire in that cold and naked +room—she, who was accustomed to stoves which heated the house from the +hall to the boudoir; she had not even one little flower—she whose +apartment had been a conservatory of costly exotics. But she had her +son. Hitherto the excitement of fulfilling a duty had sustained them. +Excitement, like enthusiasm, sometimes renders us unconscious to the +things of earth. But the excitement had calmed down, and they felt +themselves obliged to descend from dreams to reality; after having +exhausted the ideal, they found they must talk of the actual. + +“Mother,” exclaimed Albert, just as Madame Danglars was descending the +stairs, “let us reckon our riches, if you please; I want capital to +build my plans upon.” + +“Capital—nothing!” replied Mercédès with a mournful smile. + +“No, mother,—capital 3,000 francs. And I have an idea of our leading a +delightful life upon this 3,000 francs.” + +“Child!” sighed Mercédès. + +“Alas, dear mother,” said the young man, “I have unhappily spent too +much of your money not to know the value of it. These 3,000 francs are +enormous, and I intend building upon this foundation a miraculous +certainty for the future.” + +“You say this, my dear boy; but do you think we ought to accept these +3,000 francs?” said Mercédès, coloring. + +“I think so,” answered Albert in a firm tone. “We will accept them the +more readily, since we have them not here; you know they are buried in +the garden of the little house in the Allées de Meilhan, at Marseilles. +With 200 francs we can reach Marseilles.” + +“With 200 francs?—are you sure, Albert?” + +“Oh, as for that, I have made inquiries respecting the diligences and +steamboats, and my calculations are made. You will take your place in +the _coupé_ to Châlons. You see, mother, I treat you handsomely for +thirty-five francs.” + +Albert then took a pen, and wrote: + + + Frs. _Coupé_, + thirty-five + francs........ + .............. + ........ 35. + From Châlons + to Lyons you + will go on by + the + steamboat.. + 6. From Lyons + to Avignon + (still by + steamboat).... + ......... 16. + From Avignon + to Marseilles, + seven + francs........ + ....... 7. + Expenses on + the road, + about fifty + francs........ + ....... 50. + Total......... + .............. + .............. + ............ + 114 frs. + +“Let us put down 120,” added Albert, smiling. “You see I am generous, +am I not, mother?” + +“But you, my poor child?” + +“I? do you not see that I reserve eighty francs for myself? A young man +does not require luxuries; besides, I know what travelling is.” + +“With a post-chaise and valet de chambre?” + +“Any way, mother.” + +“Well, be it so. But these 200 francs?” + +“Here they are, and 200 more besides. See, I have sold my watch for 100 +francs, and the guard and seals for 300. How fortunate that the +ornaments were worth more than the watch. Still the same story of +superfluities! Now I think we are rich, since instead of the 114 francs +we require for the journey we find ourselves in possession of 250.” + +“But we owe something in this house?” + +“Thirty francs; but I pay that out of my 150 francs,—that is +understood,—and as I require only eighty francs for my journey, you see +I am overwhelmed with luxury. But that is not all. What do you say to +this, mother?” + +And Albert took out of a little pocket-book with golden clasps, a +remnant of his old fancies, or perhaps a tender souvenir from one of +the mysterious and veiled ladies who used to knock at his little +door,—Albert took out of this pocket-book a note of 1,000 francs. + +“What is this?” asked Mercédès. + +“A thousand francs.” + +“But whence have you obtained them?” + +“Listen to me, mother, and do not yield too much to agitation.” And +Albert, rising, kissed his mother on both cheeks, then stood looking at +her. “You cannot imagine, mother, how beautiful I think you!” said the +young man, impressed with a profound feeling of filial love. “You are, +indeed, the most beautiful and most noble woman I ever saw!” + +“Dear child!” said Mercédès, endeavoring in vain to restrain a tear +which glistened in the corner of her eye. “Indeed, you only wanted +misfortune to change my love for you to admiration. I am not unhappy +while I possess my son!” + +“Ah, just so,” said Albert; “here begins the trial. Do you know the +decision we have come to, mother?” + +“Have we come to any?” + +“Yes; it is decided that you are to live at Marseilles, and that I am +to leave for Africa, where I will earn for myself the right to use the +name I now bear, instead of the one I have thrown aside.” Mercédès +sighed. “Well, mother, I yesterday engaged myself as substitute in the +Spahis,”25 added the young man, lowering his eyes with a certain +feeling of shame, for even he was unconscious of the sublimity of his +self-abasement. “I thought my body was my own, and that I might sell +it. I yesterday took the place of another. I sold myself for more than +I thought I was worth,” he added, attempting to smile; “I fetched 2,000 +francs.” + +“Then these 1,000 francs——” said Mercédès, shuddering. + +“Are the half of the sum, mother; the other will be paid in a year.” + +Mercédès raised her eyes to heaven with an expression it would be +impossible to describe, and tears, which had hitherto been restrained, +now yielded to her emotion, and ran down her cheeks. + +“The price of his blood!” she murmured. + +“Yes, if I am killed,” said Albert, laughing. “But I assure you, +mother, I have a strong intention of defending my person, and I never +felt half so strong an inclination to live as I do now.” + +“Merciful Heavens!” + +“Besides, mother, why should you make up your mind that I am to be +killed? Has Lamoricière, that Ney of the South, been killed? Has +Changarnier been killed? Has Bedeau been killed? Has Morrel, whom we +know, been killed? Think of your joy, mother, when you see me return +with an embroidered uniform! I declare, I expect to look magnificent in +it, and chose that regiment only from vanity.” + +Mercédès sighed while endeavoring to smile; the devoted mother felt +that she ought not to allow the whole weight of the sacrifice to fall +upon her son. + +“Well, now you understand, mother!” continued Albert; “here are more +than 4,000 francs settled on you; upon these you can live at least two +years.” + +“Do you think so?” said Mercédès. + +These words were uttered in so mournful a tone that their real meaning +did not escape Albert; he felt his heart beat, and taking his mother’s +hand within his own he said, tenderly: + +“Yes, you will live!” + +“I shall live!—then you will not leave me, Albert?” + +“Mother, I must go,” said Albert in a firm, calm voice; “you love me +too well to wish me to remain useless and idle with you; besides, I +have signed.” + +50145m + + + +“You will obey your own wish and the will of Heaven!” + +“Not my own wish, mother, but reason—necessity. Are we not two +despairing creatures? What is life to you?—Nothing. What is life to +me?—Very little without you, mother; for believe me, but for you I +should have ceased to live on the day I doubted my father and renounced +his name. Well, I will live, if you promise me still to hope; and if +you grant me the care of your future prospects, you will redouble my +strength. Then I will go to the governor of Algeria; he has a royal +heart, and is essentially a soldier; I will tell him my gloomy story. I +will beg him to turn his eyes now and then towards me, and if he keep +his word and interest himself for me, in six months I shall be an +officer, or dead. If I am an officer, your fortune is certain, for I +shall have money enough for both, and, moreover, a name we shall both +be proud of, since it will be our own. If I am killed—well then mother, +you can also die, and there will be an end of our misfortunes.” + +“It is well,” replied Mercédès, with her eloquent glance; “you are +right, my love; let us prove to those who are watching our actions that +we are worthy of compassion.” + +“But let us not yield to gloomy apprehensions,” said the young man; “I +assure you we are, or rather we shall be, very happy. You are a woman +at once full of spirit and resignation; I have become simple in my +tastes, and am without passion, I hope. Once in service, I shall be +rich—once in M. Dantès’ house, you will be at rest. Let us strive, I +beseech you,—let us strive to be cheerful.” + +“Yes, let us strive, for you ought to live, and to be happy, Albert.” + +“And so our division is made, mother,” said the young man, affecting +ease of mind. “We can now part; come, I shall engage your passage.” + +“And you, my dear boy?” + +“I shall stay here for a few days longer; we must accustom ourselves to +parting. I want recommendations and some information relative to +Africa. I will join you again at Marseilles.” + +“Well, be it so—let us part,” said Mercédès, folding around her +shoulders the only shawl she had taken away, and which accidentally +happened to be a valuable black cashmere. Albert gathered up his papers +hastily, rang the bell to pay the thirty francs he owed to the +landlord, and offering his arm to his mother, they descended the +stairs. + +Someone was walking down before them, and this person, hearing the +rustling of a silk dress, turned around. “Debray!” muttered Albert. + +“You, Morcerf?” replied the secretary, resting on the stairs. Curiosity +had vanquished the desire of preserving his _incognito_, and he was +recognized. It was, indeed, strange in this unknown spot to find the +young man whose misfortunes had made so much noise in Paris. + +“Morcerf!” repeated Debray. Then noticing in the dim light the still +youthful and veiled figure of Madame de Morcerf: + +“Pardon me,” he added with a smile, “I leave you, Albert.” Albert +understood his thoughts. + +“Mother,” he said, turning towards Mercédès, “this is M. Debray, +secretary of the Minister for the Interior, once a friend of mine.” + +“How once?” stammered Debray; “what do you mean?” + +“I say so, M. Debray, because I have no friends now, and I ought not to +have any. I thank you for having recognized me, sir.” Debray stepped +forward, and cordially pressed the hand of his interlocutor. + +“Believe me, dear Albert,” he said, with all the emotion he was capable +of feeling,—“believe me, I feel deeply for your misfortunes, and if in +any way I can serve you, I am yours.” + +“Thank you, sir,” said Albert, smiling. “In the midst of our +misfortunes, we are still rich enough not to require assistance from +anyone. We are leaving Paris, and when our journey is paid, we shall +have 5,000 francs left.” + +The blood mounted to the temples of Debray, who held a million in his +pocket-book, and unimaginative as he was he could not help reflecting +that the same house had contained two women, one of whom, justly +dishonored, had left it poor with 1,500,000 francs under her cloak, +while the other, unjustly stricken, but sublime in her misfortune, was +yet rich with a few deniers. This parallel disturbed his usual +politeness, the philosophy he witnessed appalled him, he muttered a few +words of general civility and ran downstairs. + +That day the minister’s clerks and the subordinates had a great deal to +put up with from his ill-humor. But that same night, he found himself +the possessor of a fine house, situated on the Boulevard de la +Madeleine, and an income of 50,000 livres. + +The next day, just as Debray was signing the deed, that is about five +o’clock in the afternoon, Madame de Morcerf, after having +affectionately embraced her son, entered the _coupé_ of the diligence, +which closed upon her. + +A man was hidden in Lafitte’s banking-house, behind one of the little +arched windows which are placed above each desk; he saw Mercédès enter +the diligence, and he also saw Albert withdraw. Then he passed his hand +across his forehead, which was clouded with doubt. + +“Alas,” he exclaimed, “how can I restore the happiness I have taken +away from these poor innocent creatures? God help me!” + + + + Chapter 107. The Lions’ Den + +One division of La Force, in which the most dangerous and desperate +prisoners are confined, is called the court of Saint-Bernard. The +prisoners, in their expressive language, have named it the “Lions’ +Den,” probably because the captives possess teeth which frequently gnaw +the bars, and sometimes the keepers also. It is a prison within a +prison; the walls are double the thickness of the rest. The gratings +are every day carefully examined by jailers, whose herculean +proportions and cold pitiless expression prove them to have been chosen +to reign over their subjects for their superior activity and +intelligence. + +The courtyard of this quarter is enclosed by enormous walls, over which +the sun glances obliquely, when it deigns to penetrate into this gulf +of moral and physical deformity. On this paved yard are to be +seen,—pacing to and fro from morning till night, pale, careworn, and +haggard, like so many shadows,—the men whom justice holds beneath the +steel she is sharpening. There, crouched against the side of the wall +which attracts and retains the most heat, they may be seen sometimes +talking to one another, but more frequently alone, watching the door, +which sometimes opens to call forth one from the gloomy assemblage, or +to throw in another outcast from society. + +The court of Saint-Bernard has its own particular apartment for the +reception of guests; it is a long rectangle, divided by two upright +gratings placed at a distance of three feet from one another to prevent +a visitor from shaking hands with or passing anything to the prisoners. +It is a wretched, damp, nay, even horrible spot, more especially when +we consider the agonizing conferences which have taken place between +those iron bars. And yet, frightful though this spot may be, it is +looked upon as a kind of paradise by the men whose days are numbered; +it is so rare for them to leave the Lions’ Den for any other place than +the barrier Saint-Jacques, the galleys! or solitary confinement. + +In the court which we have attempted to describe, and from which a damp +vapor was rising, a young man with his hands in his pockets, who had +excited much curiosity among the inhabitants of the “Den,” might be +seen walking. The cut of his clothes would have made him pass for an +elegant man, if those clothes had not been torn to shreds; still they +did not show signs of wear, and the fine cloth, beneath the careful +hands of the prisoner, soon recovered its gloss in the parts which were +still perfect, for the wearer tried his best to make it assume the +appearance of a new coat. He bestowed the same attention upon the +cambric front of a shirt, which had considerably changed in color since +his entrance into the prison, and he polished his varnished boots with +the corner of a handkerchief embroidered with initials surmounted by a +coronet. + +Some of the inmates of the “Lions’ Den” were watching the operations of +the prisoner’s toilet with considerable interest. + +“See, the prince is pluming himself,” said one of the thieves. + +“He’s a fine looking fellow,” said another; “if he had only a comb and +hair-grease, he’d take the shine off the gentlemen in white kids.” + +“His coat looks nearly new, and his boots are brilliant. It is pleasant +to have such well-dressed brethren; and those gendarmes behaved +shamefully. What jealousy; to tear such clothes!” + +“He looks like a big-bug,” said another; “dresses in fine style. And, +then, to be here so young! Oh, what larks!” + +Meanwhile the object of this hideous admiration approached the wicket, +against which one of the keepers was leaning. + +“Come, sir,” he said, “lend me twenty francs; you will soon be paid; +you run no risks with me. Remember, I have relations who possess more +millions than you have deniers. Come, I beseech you, lend me twenty +francs, so that I may buy a dressing-gown; it is intolerable always to +be in a coat and boots! And what a coat, sir, for a prince of the +Cavalcanti!” + +The keeper turned his back, and shrugged his shoulders; he did not even +laugh at what would have caused anyone else to do so; he had heard so +many utter the same things,—indeed, he heard nothing else. + +“Come,” said Andrea, “you are a man void of compassion; I’ll have you +turned out.” + +This made the keeper turn around, and he burst into a loud laugh. The +prisoners then approached and formed a circle. + +“I tell you that with that wretched sum,” continued Andrea, “I could +obtain a coat, and a room in which to receive the illustrious visitor I +am daily expecting.” + +“Of course—of course,” said the prisoners;—“anyone can see he’s a +gentleman!” + +“Well, then, lend him the twenty francs,” said the keeper, leaning on +the other shoulder; “surely you will not refuse a comrade!” + +50151m + + + +“I am no comrade of these people,” said the young man, proudly, “you +have no right to insult me thus.” + +The thieves looked at one another with low murmurs, and a storm +gathered over the head of the aristocratic prisoner, raised less by his +own words than by the manner of the keeper. The latter, sure of +quelling the tempest when the waves became too violent, allowed them to +rise to a certain pitch that he might be revenged on the importunate +Andrea, and besides it would afford him some recreation during the long +day. + +The thieves had already approached Andrea, some screaming, _“La +savate—La savate!”_26 a cruel operation, which consists in cuffing a +comrade who may have fallen into disgrace, not with an old shoe, but +with an iron-heeled one. Others proposed the _anguille_, another kind +of recreation, in which a handkerchief is filled with sand, pebbles, +and two-sous pieces, when they have them, which the wretches beat like +a flail over the head and shoulders of the unhappy sufferer. + +“Let us horsewhip the fine gentleman!” said others. + +But Andrea, turning towards them, winked his eyes, rolled his tongue +around his cheeks, and smacked his lips in a manner equivalent to a +hundred words among the bandits when forced to be silent. It was a +Masonic sign Caderousse had taught him. He was immediately recognized +as one of them; the handkerchief was thrown down, and the iron-heeled +shoe replaced on the foot of the wretch to whom it belonged. + +Some voices were heard to say that the gentleman was right; that he +intended to be civil, in his way, and that they would set the example +of liberty of conscience,—and the mob retired. The keeper was so +stupefied at this scene that he took Andrea by the hands and began +examining his person, attributing the sudden submission of the inmates +of the Lions’ Den to something more substantial than mere fascination. + +Andrea made no resistance, although he protested against it. Suddenly a +voice was heard at the wicket. + +“Benedetto!” exclaimed an inspector. The keeper relaxed his hold. + +“I am called,” said Andrea. + +“To the visitors’ room!” said the same voice. + +“You see someone pays me a visit. Ah, my dear sir, you will see whether +a Cavalcanti is to be treated like a common person!” + +And Andrea, gliding through the court like a black shadow, rushed out +through the wicket, leaving his comrades, and even the keeper, lost in +wonder. Certainly a call to the visitors’ room had scarcely astonished +Andrea less than themselves, for the wily youth, instead of making use +of his privilege of waiting to be claimed on his entry into La Force, +had maintained a rigid silence. + +50153m + + + +“Everything,” he said, “proves me to be under the protection of some +powerful person,—this sudden fortune, the facility with which I have +overcome all obstacles, an unexpected family and an illustrious name +awarded to me, gold showered down upon me, and the most splendid +alliances about to be entered into. An unhappy lapse of fortune and the +absence of my protector have cast me down, certainly, but not forever. +The hand which has retreated for a while will be again stretched forth +to save me at the very moment when I shall think myself sinking into +the abyss. Why should I risk an imprudent step? It might alienate my +protector. He has two means of extricating me from this dilemma,—the +one by a mysterious escape, managed through bribery; the other by +buying off my judges with gold. I will say and do nothing until I am +convinced that he has quite abandoned me, and then——” + +Andrea had formed a plan which was tolerably clever. The unfortunate +youth was intrepid in the attack, and rude in the defence. He had borne +with the public prison, and with privations of all sorts; still, by +degrees nature, or rather custom, had prevailed, and he suffered from +being naked, dirty, and hungry. It was at this moment of discomfort +that the inspector’s voice called him to the visiting-room. Andrea felt +his heart leap with joy. It was too soon for a visit from the examining +magistrate, and too late for one from the director of the prison, or +the doctor; it must, then, be the visitor he hoped for. Behind the +grating of the room into which Andrea had been led, he saw, while his +eyes dilated with surprise, the dark and intelligent face of M. +Bertuccio, who was also gazing with sad astonishment upon the iron +bars, the bolted doors, and the shadow which moved behind the other +grating. + +“Ah,” said Andrea, deeply affected. + +“Good morning, Benedetto,” said Bertuccio, with his deep, hollow voice. + +“You—you?” said the young man, looking fearfully around him. + +“Do you not recognize me, unhappy child?” + +“Silence,—be silent!” said Andrea, who knew the delicate sense of +hearing possessed by the walls; “for Heaven’s sake, do not speak so +loud!” + +“You wish to speak with me alone, do you not?” said Bertuccio. + +“Oh, yes.” + +“That is well.” + +And Bertuccio, feeling in his pocket, signed to a keeper whom he saw +through the window of the wicket. + +“Read?” he said. + +“What is that?” asked Andrea. + +“An order to conduct you to a room, and to leave you there to talk to +me.” + +“Oh,” cried Andrea, leaping with joy. Then he mentally added,—“Still my +unknown protector! I am not forgotten. They wish for secrecy, since we +are to converse in a private room. I understand, Bertuccio has been +sent by my protector.” + +The keeper spoke for a moment with an official, then opened the iron +gates and conducted Andrea to a room on the first floor. The room was +whitewashed, as is the custom in prisons, but it looked quite brilliant +to a prisoner, though a stove, a bed, a chair, and a table formed the +whole of its sumptuous furniture. Bertuccio sat down upon the chair, +Andrea threw himself upon the bed; the keeper retired. + +“Now,” said the steward, “what have you to tell me?” + +“And you?” said Andrea. + +“You speak first.” + +“Oh, no. You must have much to tell me, since you have come to seek +me.” + +50155m + + + +“Well, be it so. You have continued your course of villany; you have +robbed—you have assassinated.” + +“Well, I should say! If you had me taken to a private room only to tell +me this, you might have saved yourself the trouble. I know all these +things. But there are some with which, on the contrary, I am not +acquainted. Let us talk of those, if you please. Who sent you?” + +“Come, come, you are going on quickly, M. Benedetto!” + +“Yes, and to the point. Let us dispense with useless words. Who sends +you?” + +“No one.” + +“How did you know I was in prison?” + +“I recognized you, some time since, as the insolent dandy who so +gracefully mounted his horse in the Champs-Élysées.” + +“Oh, the Champs-Élysées? Ah, yes; we burn, as they say at the game of +pincette. The Champs-Élysées? Come, let us talk a little about my +father.” + +“Who, then, am I?” + +“You, sir?—you are my adopted father. But it was not you, I presume, +who placed at my disposal 100,000 francs, which I spent in four or five +months; it was not you who manufactured an Italian gentleman for my +father; it was not you who introduced me into the world, and had me +invited to a certain dinner at Auteuil, which I fancy I am eating at +this moment, in company with the most distinguished people in +Paris—amongst the rest with a certain procureur, whose acquaintance I +did very wrong not to cultivate, for he would have been very useful to +me just now;—it was not you, in fact, who bailed me for one or two +millions, when the fatal discovery of my little secret took place. +Come, speak, my worthy Corsican, speak!” + +“What do you wish me to say?” + +“I will help you. You were speaking of the Champs-Élysées just now, +worthy foster-father.” + +“Well?” + +“Well, in the Champs-Élysées there resides a very rich gentleman.” + +“At whose house you robbed and murdered, did you not?” + +“I believe I did.” + +“The Count of Monte Cristo?” + +“’Tis you who have named him, as M. Racine says. Well, am I to rush +into his arms, and strain him to my heart, crying, ‘My father, my +father!’ like Monsieur Pixérécourt.”27 + +“Do not let us jest,” gravely replied Bertuccio, “and dare not to utter +that name again as you have pronounced it.” + +“Bah,” said Andrea, a little overcome, by the solemnity of Bertuccio’s +manner, “why not?” + +“Because the person who bears it is too highly favored by Heaven to be +the father of such a wretch as you.” + +“Oh, these are fine words.” + +“And there will be fine doings, if you do not take care.” + +“Menaces—I do not fear them. I will say——” + +“Do you think you are engaged with a pygmy like yourself?” said +Bertuccio, in so calm a tone, and with so steadfast a look, that Andrea +was moved to the very soul. “Do you think you have to do with +galley-slaves, or novices in the world? Benedetto, you are fallen into +terrible hands; they are ready to open for you—make use of them. Do not +play with the thunderbolt they have laid aside for a moment, but which +they can take up again instantly, if you attempt to intercept their +movements.” + +50157m + + + +“My father—I will know who my father is,” said the obstinate youth; “I +will perish if I must, but I _will_ know it. What does scandal signify +to me? What possessions, what reputation, what ‘pull,’ as Beauchamp +says,—have I? You great people always lose something by scandal, +notwithstanding your millions. Come, who is my father?” + +“I came to tell you.” + +“Ah,” cried Benedetto, his eyes sparkling with joy. Just then the door +opened, and the jailer, addressing himself to Bertuccio, said: + +“Excuse me, sir, but the examining magistrate is waiting for the +prisoner.” + +“And so closes our interview,” said Andrea to the worthy steward; “I +wish the troublesome fellow were at the devil!” + +“I will return tomorrow,” said Bertuccio. + +“Good! Gendarmes, I am at your service. Ah, sir, do leave a few crowns +for me at the gate that I may have some things I am in need of!” + +“It shall be done,” replied Bertuccio. + +Andrea extended his hand; Bertuccio kept his own in his pocket, and +merely jingled a few pieces of money. + +“That’s what I mean,” said Andrea, endeavoring to smile, quite overcome +by the strange tranquillity of Bertuccio. + +“Can I be deceived?” he murmured, as he stepped into the oblong and +grated vehicle which they call “the salad basket.” + +“Never mind, we shall see! Tomorrow, then!” he added, turning towards +Bertuccio. + +“Tomorrow!” replied the steward. + + + + Chapter 108. The Judge + +We remember that the Abbé Busoni remained alone with Noirtier in the +chamber of death, and that the old man and the priest were the sole +guardians of the young girl’s body. Perhaps it was the Christian +exhortations of the abbé, perhaps his kind charity, perhaps his +persuasive words, which had restored the courage of Noirtier, for ever +since he had conversed with the priest his violent despair had yielded +to a calm resignation which surprised all who knew his excessive +affection for Valentine. + +M. de Villefort had not seen his father since the morning of the death. +The whole establishment had been changed; another valet was engaged for +himself, a new servant for Noirtier, two women had entered Madame de +Villefort’s service,—in fact, everywhere, to the concierge and +coachmen, new faces were presented to the different masters of the +house, thus widening the division which had always existed between the +members of the same family. The assizes, also, were about to begin, and +Villefort, shut up in his room, exerted himself with feverish anxiety +in drawing up the case against the murderer of Caderousse. This affair, +like all those in which the Count of Monte Cristo had interfered, +caused a great sensation in Paris. The proofs were certainly not +convincing, since they rested upon a few words written by an escaped +galley-slave on his death-bed, and who might have been actuated by +hatred or revenge in accusing his companion. But the mind of the +procureur was made up; he felt assured that Benedetto was guilty, and +he hoped by his skill in conducting this aggravated case to flatter his +self-love, which was about the only vulnerable point left in his frozen +heart. + +The case was therefore prepared owing to the incessant labor of +Villefort, who wished it to be the first on the list in the coming +assizes. He had been obliged to seclude himself more than ever, to +evade the enormous number of applications presented to him for the +purpose of obtaining tickets of admission to the court on the day of +trial. And then so short a time had elapsed since the death of poor +Valentine, and the gloom which overshadowed the house was so recent, +that no one wondered to see the father so absorbed in his professional +duties, which were the only means he had of dissipating his grief. + +Once only had Villefort seen his father; it was the day after that upon +which Bertuccio had paid his second visit to Benedetto, when the latter +was to learn his father’s name. The magistrate, harassed and fatigued, +had descended to the garden of his house, and in a gloomy mood, similar +to that in which Tarquin lopped off the tallest poppies, he began +knocking off with his cane the long and dying branches of the +rose-trees, which, placed along the avenue, seemed like the spectres of +the brilliant flowers which had bloomed in the past season. + +More than once he had reached that part of the garden where the famous +boarded gate stood overlooking the deserted enclosure, always returning +by the same path, to begin his walk again, at the same pace and with +the same gesture, when he accidentally turned his eyes towards the +house, whence he heard the noisy play of his son, who had returned from +school to spend the Sunday and Monday with his mother. + +While doing so, he observed M. Noirtier at one of the open windows, +where the old man had been placed that he might enjoy the last rays of +the sun which yet yielded some heat, and was now shining upon the dying +flowers and red leaves of the creeper which twined around the balcony. + +The eye of the old man was riveted upon a spot which Villefort could +scarcely distinguish. His glance was so full of hate, of ferocity, and +savage impatience, that Villefort turned out of the path he had been +pursuing, to see upon what person this dark look was directed. + +Then he saw beneath a thick clump of linden-trees, which were nearly +divested of foliage, Madame de Villefort sitting with a book in her +hand, the perusal of which she frequently interrupted to smile upon her +son, or to throw back his elastic ball, which he obstinately threw from +the drawing-room into the garden. + +Villefort became pale; he understood the old man’s meaning. + +Noirtier continued to look at the same object, but suddenly his glance +was transferred from the wife to the husband, and Villefort himself had +to submit to the searching investigation of eyes, which, while changing +their direction and even their language, had lost none of their +menacing expression. Madame de Villefort, unconscious of the passions +that exhausted their fire over her head, at that moment held her son’s +ball, and was making signs to him to reclaim it with a kiss. Edward +begged for a long while, the maternal kiss probably not offering +sufficient recompense for the trouble he must take to obtain it; +however at length he decided, leaped out of the window into a cluster +of heliotropes and daisies, and ran to his mother, his forehead +streaming with perspiration. Madame de Villefort wiped his forehead, +pressed her lips upon it, and sent him back with the ball in one hand +and some bonbons in the other. + +Villefort, drawn by an irresistible attraction, like that of the bird +to the serpent, walked towards the house. As he approached it, +Noirtier’s gaze followed him, and his eyes appeared of such a fiery +brightness that Villefort felt them pierce to the depths of his heart. +In that earnest look might be read a deep reproach, as well as a +terrible menace. Then Noirtier raised his eyes to heaven, as though to +remind his son of a forgotten oath. + +“It is well, sir,” replied Villefort from below,—“it is well; have +patience but one day longer; what I have said I will do.” + +Noirtier seemed to be calmed by these words, and turned his eyes with +indifference to the other side. Villefort violently unbuttoned his +greatcoat, which seemed to strangle him, and passing his livid hand +across his forehead, entered his study. + +The night was cold and still; the family had all retired to rest but +Villefort, who alone remained up, and worked till five o’clock in the +morning, reviewing the last interrogatories made the night before by +the examining magistrates, compiling the depositions of the witnesses, +and putting the finishing stroke to the deed of accusation, which was +one of the most energetic and best conceived of any he had yet +delivered. + +The next day, Monday, was the first sitting of the assizes. The morning +dawned dull and gloomy, and Villefort saw the dim gray light shine upon +the lines he had traced in red ink. The magistrate had slept for a +short time while the lamp sent forth its final struggles; its +flickerings awoke him, and he found his fingers as damp and purple as +though they had been dipped in blood. + +He opened the window; a bright yellow streak crossed the sky, and +seemed to divide in half the poplars, which stood out in black relief +on the horizon. In the clover-fields beyond the chestnut-trees, a lark +was mounting up to heaven, while pouring out her clear morning song. +The damps of the dew bathed the head of Villefort, and refreshed his +memory. + +“Today,” he said with an effort,—“today the man who holds the blade of +justice must strike wherever there is guilt.” + +Involuntarily his eyes wandered towards the window of Noirtier’s room, +where he had seen him the preceding night. The curtain was drawn, and +yet the image of his father was so vivid to his mind that he addressed +the closed window as though it had been open, and as if through the +opening he had beheld the menacing old man. + +“Yes,” he murmured,—“yes, be satisfied.” + +His head dropped upon his chest, and in this position he paced his +study; then he threw himself, dressed as he was, upon a sofa, less to +sleep than to rest his limbs, cramped with cold and study. By degrees +everyone awoke. Villefort, from his study, heard the successive noises +which accompany the life of a house,—the opening and shutting of doors, +the ringing of Madame de Villefort’s bell, to summon the waiting-maid, +mingled with the first shouts of the child, who rose full of the +enjoyment of his age. Villefort also rang; his new valet brought him +the papers, and with them a cup of chocolate. + +“What are you bringing me?” said he. + +“A cup of chocolate.” + +“I did not ask for it. Who has paid me this attention?” + +“My mistress, sir. She said you would have to speak a great deal in the +murder case, and that you should take something to keep up your +strength;” and the valet placed the cup on the table nearest to the +sofa, which was, like all the rest, covered with papers. + +The valet then left the room. Villefort looked for an instant with a +gloomy expression, then, suddenly, taking it up with a nervous motion, +he swallowed its contents at one draught. It might have been thought +that he hoped the beverage would be mortal, and that he sought for +death to deliver him from a duty which he would rather die than fulfil. +He then rose, and paced his room with a smile it would have been +terrible to witness. The chocolate was inoffensive, for M. de Villefort +felt no effects. + +The breakfast-hour arrived, but M. de Villefort was not at table. The +valet re-entered. + +“Madame de Villefort wishes to remind you, sir,” he said, “that eleven +o’clock has just struck, and that the trial commences at twelve.” + +“Well,” said Villefort, “what then?” + +“Madame de Villefort is dressed; she is quite ready, and wishes to know +if she is to accompany you, sir?” + +“Where to?” + +“To the Palais.” + +“What to do?” + +“My mistress wishes much to be present at the trial.” + +“Ah,” said Villefort, with a startling accent; “does she wish that?” + +The servant drew back and said, “If you wish to go alone, sir, I will +go and tell my mistress.” + +Villefort remained silent for a moment, and dented his pale cheeks with +his nails. + +“Tell your mistress,” he at length answered, “that I wish to speak to +her, and I beg she will wait for me in her own room.” + +“Yes, sir.” + +“Then come to dress and shave me.” + +“Directly, sir.” + +The valet re-appeared almost instantly, and, having shaved his master, +assisted him to dress entirely in black. When he had finished, he said: + +“My mistress said she should expect you, sir, as soon as you had +finished dressing.” + +“I am going to her.” + +And Villefort, with his papers under his arm and hat in hand, directed +his steps toward the apartment of his wife. + +At the door he paused for a moment to wipe his damp, pale brow. He then +entered the room. Madame de Villefort was sitting on an ottoman and +impatiently turning over the leaves of some newspapers and pamphlets +which young Edward, by way of amusing himself, was tearing to pieces +before his mother could finish reading them. She was dressed to go out, +her bonnet was placed beside her on a chair, and her gloves were on her +hands. + +“Ah, here you are, monsieur,” she said in her naturally calm voice; +“but how pale you are! Have you been working all night? Why did you not +come down to breakfast? Well, will you take me, or shall I take +Edward?” + +Madame de Villefort had multiplied her questions in order to gain one +answer, but to all her inquiries M. de Villefort remained mute and cold +as a statue. + +“Edward,” said Villefort, fixing an imperious glance on the child, “go +and play in the drawing-room, my dear; I wish to speak to your mamma.” + +Madame de Villefort shuddered at the sight of that cold countenance, +that resolute tone, and the awfully strange preliminaries. Edward +raised his head, looked at his mother, and then, finding that she did +not confirm the order, began cutting off the heads of his leaden +soldiers. + +“Edward,” cried M. de Villefort, so harshly that the child started up +from the floor, “do you hear me?—Go!” + +The child, unaccustomed to such treatment, arose, pale and trembling; +it would be difficult to say whether his emotion were caused by fear or +passion. His father went up to him, took him in his arms, and kissed +his forehead. + +“Go,” he said: “go, my child.” Edward ran out. + +M. de Villefort went to the door, which he closed behind the child, and +bolted. + +“Dear me!” said the young woman, endeavoring to read her husband’s +inmost thoughts, while a smile passed over her countenance which froze +the impassibility of Villefort; “what is the matter?” + +“Madame, where do you keep the poison you generally use?” said the +magistrate, without any introduction, placing himself between his wife +and the door. + +Madame de Villefort must have experienced something of the sensation of +a bird which, looking up, sees the murderous trap closing over its +head. + +A hoarse, broken tone, which was neither a cry nor a sigh, escaped from +her, while she became deadly pale. + +“Monsieur,” she said, “I—I do not understand you.” + +And, in her first paroxysm of terror, she had raised herself from the +sofa, in the next, stronger very likely than the other, she fell down +again on the cushions. + +“I asked you,” continued Villefort, in a perfectly calm tone, “where +you conceal the poison by the aid of which you have killed my +father-in-law, M. de Saint-Méran, my mother-in-law, Madame de +Saint-Méran, Barrois, and my daughter Valentine.” + +“Ah, sir,” exclaimed Madame de Villefort, clasping her hands, “what do +you say?” + +“It is not for you to interrogate, but to answer.” + +“Is it to the judge or to the husband?” stammered Madame de Villefort. + +“To the judge—to the judge, madame!” It was terrible to behold the +frightful pallor of that woman, the anguish of her look, the trembling +of her whole frame. + +“Ah, sir,” she muttered, “ah, sir,” and this was all. + +“You do not answer, madame!” exclaimed the terrible interrogator. Then +he added, with a smile yet more terrible than his anger, “It is true, +then; you do not deny it!” She moved forward. “And you cannot deny it!” +added Villefort, extending his hand toward her, as though to seize her +in the name of justice. “You have accomplished these different crimes +with impudent address, but which could only deceive those whose +affections for you blinded them. Since the death of Madame de +Saint-Méran, I have known that a poisoner lived in my house. M. +d’Avrigny warned me of it. After the death of Barrois my suspicions +were directed towards an angel,—those suspicions which, even when there +is no crime, are always alive in my heart; but after the death of +Valentine, there has been no doubt in my mind, madame, and not only in +mine, but in those of others; thus your crime, known by two persons, +suspected by many, will soon become public, and, as I told you just +now, you no longer speak to the husband, but to the judge.” + +50165m + + + +The young woman hid her face in her hands. + +“Oh, sir,” she stammered, “I beseech you, do not believe appearances.” + +“Are you, then, a coward?” cried Villefort, in a contemptuous voice. +“But I have always observed that poisoners were cowards. Can you be a +coward, you, who have had the courage to witness the death of two old +men and a young girl murdered by you?” + +“Sir! sir!” + +“Can you be a coward?” continued Villefort, with increasing excitement, +“you, who could count, one by one, the minutes of four death agonies? +_You_, who have arranged your infernal plans, and removed the beverages +with a talent and precision almost miraculous? Have you, then, who have +calculated everything with such nicety, have you forgotten to calculate +one thing—I mean where the revelation of your crimes will lead you to? +Oh, it is impossible—you must have saved some surer, more subtle and +deadly poison than any other, that you might escape the punishment that +you deserve. You have done this—I hope so, at least.” + +Madame de Villefort stretched out her hands, and fell on her knees. + +“I understand,” he said, “you confess; but a confession made to the +judges, a confession made at the last moment, extorted when the crime +cannot be denied, diminishes not the punishment inflicted on the +guilty!” + +“The punishment?” exclaimed Madame de Villefort, “the punishment, +monsieur? Twice you have pronounced that word!” + +“Certainly. Did you hope to escape it because you were four times +guilty? Did you think the punishment would be withheld because you are +the wife of him who pronounces it?—No, madame, no; the scaffold awaits +the poisoner, whoever she may be, unless, as I just said, the poisoner +has taken the precaution of keeping for herself a few drops of her +deadliest poison.” + +Madame de Villefort uttered a wild cry, and a hideous and +uncontrollable terror spread over her distorted features. + +“Oh, do not fear the scaffold, madame,” said the magistrate; “I will +not dishonor you, since that would be dishonor to myself; no, if you +have heard me distinctly, you will understand that you are not to die +on the scaffold.” + +“No, I do not understand; what do you mean?” stammered the unhappy +woman, completely overwhelmed. + +“I mean that the wife of the first magistrate in the capital shall not, +by her infamy, soil an unblemished name; that she shall not, with one +blow, dishonor her husband and her child.” + +“No, no—oh, no!” + +“Well, madame, it will be a laudable action on your part, and I will +thank you for it!” + +“You will thank me—for what?” + +“For what you have just said.” + +“What did I say? Oh, my brain whirls; I no longer understand anything. +Oh, my God, my God!” + +And she rose, with her hair dishevelled, and her lips foaming. + +“Have you answered the question I put to you on entering the +room?—where do you keep the poison you generally use, madame?” + +Madame de Villefort raised her arms to heaven, and convulsively struck +one hand against the other. + +“No, no,” she vociferated, “no, you cannot wish that!” + +50169m + + + +“What I do not wish, madame, is that you should perish on the scaffold. +Do you understand?” asked Villefort. + +“Oh, mercy, mercy, monsieur!” + +“What I require is, that justice be done. I am on the earth to punish, +madame,” he added, with a flaming glance; “any other woman, were it the +queen herself, I would send to the executioner; but to you I shall be +merciful. To you I will say, ‘Have you not, madame, put aside some of +the surest, deadliest, most speedy poison?’” + +50170m + + + +“Oh, pardon me, sir; let me live!” + +“She is cowardly,” said Villefort. + +“Reflect that I am your wife!” + +“You are a poisoner.” + +“In the name of Heaven!” + +“No!” + +“In the name of the love you once bore me!” + +“No, no!” + +“In the name of our child! Ah, for the sake of our child, let me live!” + +50167m + + + +“No, no, no, I tell you; one day, if I allow you to live, you will +perhaps kill him, as you have the others!” + +“I?—I kill my boy?” cried the distracted mother, rushing toward +Villefort; “I kill my son? Ha, ha, ha!” and a frightful, demoniac laugh +finished the sentence, which was lost in a hoarse rattle. + +Madame de Villefort fell at her husband’s feet. He approached her. + +“Think of it, madame,” he said; “if, on my return, justice has not been +satisfied, I will denounce you with my own mouth, and arrest you with +my own hands!” + +She listened, panting, overwhelmed, crushed; her eye alone lived, and +glared horribly. + +“Do you understand me?” he said. “I am going down there to pronounce +the sentence of death against a murderer. If I find you alive on my +return, you shall sleep tonight in the conciergerie.” + +Madame de Villefort sighed; her nerves gave way, and she sunk on the +carpet. The king’s attorney seemed to experience a sensation of pity; +he looked upon her less severely, and, bowing to her, said slowly: + +“Farewell, madame, farewell!” + +That farewell struck Madame de Villefort like the executioner’s knife. +She fainted. The procureur went out, after having double-locked the +door. + + + + Chapter 109. The Assizes + +The Benedetto affair, as it was called at the Palais, and by people in +general, had produced a tremendous sensation. Frequenting the Café de +Paris, the Boulevard de Gand, and the Bois de Boulogne, during his +brief career of splendor, the false Cavalcanti had formed a host of +acquaintances. The papers had related his various adventures, both as +the man of fashion and the galley-slave; and as everyone who had been +personally acquainted with Prince Andrea Cavalcanti experienced a +lively curiosity in his fate, they all determined to spare no trouble +in endeavoring to witness the trial of M. Benedetto for the murder of +his comrade in chains. + +In the eyes of many, Benedetto appeared, if not a victim to, at least +an instance of, the fallibility of the law. M. Cavalcanti, his father, +had been seen in Paris, and it was expected that he would re-appear to +claim the illustrious outcast. Many, also, who were not aware of the +circumstances attending his withdrawal from Paris, were struck with the +worthy appearance, the gentlemanly bearing, and the knowledge of the +world displayed by the old patrician, who certainly played the nobleman +very well, so long as he said nothing, and made no arithmetical +calculations. + +As for the accused himself, many remembered him as being so amiable, so +handsome, and so liberal, that they chose to think him the victim of +some conspiracy, since in this world large fortunes frequently excite +the malevolence and jealousy of some unknown enemy. + +Everyone, therefore, ran to the court; some to witness the sight, +others to comment upon it. From seven o’clock in the morning a crowd +was stationed at the iron gates, and an hour before the trial commenced +the hall was full of the privileged. Before the entrance of the +magistrates, and indeed frequently afterwards, a court of justice, on +days when some especial trial is to take place, resembles a +drawing-room where many persons recognize each other and converse if +they can do so without losing their seats; or, if they are separated by +too great a number of lawyers, communicate by signs. + +It was one of the magnificent autumn days which make amends for a short +summer; the clouds which M. de Villefort had perceived at sunrise had +all disappeared as if by magic, and one of the softest and most +brilliant days of September shone forth in all its splendor. + +Beauchamp, one of the kings of the press, and therefore claiming the +right of a throne everywhere, was eying everybody through his monocle. +He perceived Château-Renaud and Debray, who had just gained the good +graces of a sergeant-at-arms, and who had persuaded the latter to let +them stand before, instead of behind him, as they ought to have done. +The worthy sergeant had recognized the minister’s secretary and the +millionnaire, and, by way of paying extra attention to his noble +neighbors, promised to keep their places while they paid a visit to +Beauchamp. + +“Well,” said Beauchamp, “we shall see our friend!” + +“Yes, indeed!” replied Debray. “That worthy prince. Deuce take those +Italian princes!” + +“A man, too, who could boast of Dante for a genealogist, and could +reckon back to the _Divina Comedia_.” + +“A nobility of the rope!” said Château-Renaud phlegmatically. + +“He will be condemned, will he not?” asked Debray of Beauchamp. + +“My dear fellow, I think we should ask you that question; you know such +news much better than we do. Did you see the president at the +minister’s last night?” + +“Yes.” + +“What did he say?” + +“Something which will surprise you.” + +“Oh, make haste and tell me, then; it is a long time since that has +happened.” + +“Well, he told me that Benedetto, who is considered a serpent of +subtlety and a giant of cunning, is really but a very commonplace, +silly rascal, and altogether unworthy of the experiments that will be +made on his phrenological organs after his death.” + +“Bah,” said Beauchamp, “he played the prince very well.” + +“Yes, for you who detest those unhappy princes, Beauchamp, and are +always delighted to find fault with them; but not for me, who discover +a gentleman by instinct, and who scent out an aristocratic family like +a very bloodhound of heraldry.” + +“Then you never believed in the principality?” + +“Yes.—in the principality, but not in the prince.” + +“Not so bad,” said Beauchamp; “still, I assure you, he passed very well +with many people; I saw him at the ministers’ houses.” + +“Ah, yes,” said Château-Renaud. “The idea of thinking ministers +understand anything about princes!” + +“There is something in what you have just said,” said Beauchamp, +laughing. + +“But,” said Debray to Beauchamp, “if I spoke to the president, _you_ +must have been with the procureur.” + +“It was an impossibility; for the last week M. de Villefort has +secluded himself. It is natural enough; this strange chain of domestic +afflictions, followed by the no less strange death of his daughter——” + +“Strange? What do you mean, Beauchamp?” + +“Oh, yes; do you pretend that all this has been unobserved at the +minister’s?” said Beauchamp, placing his eye-glass in his eye, where he +tried to make it remain. + +“My dear sir,” said Château-Renaud, “allow me to tell you that you do +not understand that manœuvre with the eye-glass half so well as Debray. +Give him a lesson, Debray.” + +“Stay,” said Beauchamp, “surely I am not deceived.” + +“What is it?” + +“It is she!” + +“Whom do you mean?” + +“They said she had left.” + +“Mademoiselle Eugénie?” said Château-Renaud; “has she returned?” + +“No, but her mother.” + +“Madame Danglars? Nonsense! Impossible!” said Château-Renaud; “only ten +days after the flight of her daughter, and three days from the +bankruptcy of her husband?” + +Debray colored slightly, and followed with his eyes the direction of +Beauchamp’s glance. + +“Come,” he said, “it is only a veiled lady, some foreign princess, +perhaps the mother of Cavalcanti. But you were just speaking on a very +interesting topic, Beauchamp.” + +“I?” + +“Yes; you were telling us about the extraordinary death of Valentine.” + +“Ah, yes, so I was. But how is it that Madame de Villefort is not +here?” + +“Poor, dear woman,” said Debray, “she is no doubt occupied in +distilling balm for the hospitals, or in making cosmetics for herself +or friends. Do you know she spends two or three thousand crowns a year +in this amusement? But I wonder she is not here. I should have been +pleased to see her, for I like her very much.” + +“And I hate her,” said Château-Renaud. + +“Why?” + +“I do not know. Why do we love? Why do we hate? I detest her, from +antipathy.” + +“Or, rather, by instinct.” + +“Perhaps so. But to return to what you were saying, Beauchamp.” + +“Well, do you know why they die so multitudinously at M. de +Villefort’s?” + +“‘Multitudinously’ is good,” said Château-Renaud. + +“My good fellow, you’ll find the word in Saint-Simon.” + +“But the thing itself is at M. de Villefort’s; but let’s get back to +the subject.” + +“Talking of that,” said Debray, “Madame was making inquiries about that +house, which for the last three months has been hung with black.” + +“Who is Madame?” asked Château-Renaud. + +“The minister’s wife, _pardieu!_” + +“Oh, your pardon! I never visit ministers; I leave that to the +princes.” + +“Really, you were only before sparkling, but now you are brilliant; +take compassion on us, or, like Jupiter, you will wither us up.” + +“I will not speak again,” said Château-Renaud; “pray have compassion +upon me, and do not take up every word I say.” + +“Come, let us endeavor to get to the end of our story, Beauchamp; I +told you that yesterday Madame made inquiries of me upon the subject; +enlighten me, and I will then communicate my information to her.” + +“Well, gentlemen, the reason people die so multitudinously (I like the +word) at M. de Villefort’s is that there is an assassin in the house!” + +The two young men shuddered, for the same idea had more than once +occurred to them. + +“And who is the assassin;” they asked together. + +“Young Edward!” A burst of laughter from the auditors did not in the +least disconcert the speaker, who continued,—“Yes, gentlemen; Edward, +the infant phenomenon, who is quite an adept in the art of killing.” + +“You are jesting.” + +“Not at all. I yesterday engaged a servant, who had just left M. de +Villefort—I intend sending him away tomorrow, for he eats so +enormously, to make up for the fast imposed upon him by his terror in +that house. Well, now listen.” + +“We are listening.” + +“It appears the dear child has obtained possession of a bottle +containing some drug, which he every now and then uses against those +who have displeased him. First, M. and Madame de Saint-Méran incurred +his displeasure, so he poured out three drops of his elixir—three drops +were sufficient; then followed Barrois, the old servant of M. Noirtier, +who sometimes rebuffed this little wretch—he therefore received the +same quantity of the elixir; the same happened to Valentine, of whom he +was jealous; he gave her the same dose as the others, and all was over +for her as well as the rest.” + +“Why, what nonsense are you telling us?” said Château-Renaud. + +“Yes, it is an extraordinary story,” said Beauchamp; “is it not?” + +“It is absurd,” said Debray. + +“Ah,” said Beauchamp, “you doubt me? Well, you can ask my servant, or +rather him who will no longer be my servant tomorrow, it was the talk +of the house.” + +“And this elixir, where is it? what is it?” + +“The child conceals it.” + +“But where did he find it?” + +“In his mother’s laboratory.” + +“Does his mother then, keep poisons in her laboratory?” + +“How can I tell? You are questioning me like a king’s attorney. I only +repeat what I have been told, and like my informant I can do no more. +The poor devil would eat nothing, from fear.” + +“It is incredible!” + +“No, my dear fellow, it is not at all incredible. You saw the child +pass through the Rue Richelieu last year, who amused himself with +killing his brothers and sisters by sticking pins in their ears while +they slept. The generation who follow us are very precocious.” + +“Come, Beauchamp,” said Château-Renaud, “I will bet anything you do not +believe a word of all you have been telling us. But I do not see the +Count of Monte Cristo here.” + +“He is worn out,” said Debray; “besides, he could not well appear in +public, since he has been the dupe of the Cavalcanti, who, it appears, +presented themselves to him with false letters of credit, and cheated +him out of 100,000 francs upon the hypothesis of this principality.” + +“By the way, M. de Château-Renaud,” asked Beauchamp, “how is Morrel?” + +“_Ma foi_, I have called three times without once seeing him. Still, +his sister did not seem uneasy, and told me that though she had not +seen him for two or three days, she was sure he was well.” + +“Ah, now I think of it, the Count of Monte Cristo cannot appear in the +hall,” said Beauchamp. + +“Why not?” + +“Because he is an actor in the drama.” + +“Has he assassinated anyone, then?” + +“No, on the contrary, they wished to assassinate him. You know that it +was in leaving his house that M. de Caderousse was murdered by his +friend Benedetto. You know that the famous waistcoat was found in his +house, containing the letter which stopped the signature of the +marriage-contract. Do you see the waistcoat? There it is, all +blood-stained, on the desk, as a testimony of the crime.” + +“Ah, very good.” + +“Hush, gentlemen, here is the court; let us go back to our places.” + +A noise was heard in the hall; the sergeant called his two patrons with +an energetic “hem!” and the door-keeper appearing, called out with that +shrill voice peculiar to his order, ever since the days of +Beaumarchais: + +“The court, gentlemen!” + + + + Chapter 110. The Indictment + +The judges took their places in the midst of the most profound silence; +the jury took their seats; M. de Villefort, the object of unusual +attention, and we had almost said of general admiration, sat in the +armchair and cast a tranquil glance around him. Everyone looked with +astonishment on that grave and severe face, whose calm expression +personal griefs had been unable to disturb, and the aspect of a man who +was a stranger to all human emotions excited something very like +terror. + +“Gendarmes,” said the president, “lead in the accused.” + +At these words the public attention became more intense, and all eyes +were turned towards the door through which Benedetto was to enter. The +door soon opened and the accused appeared. + +The same impression was experienced by all present, and no one was +deceived by the expression of his countenance. His features bore no +sign of that deep emotion which stops the beating of the heart and +blanches the cheek. His hands, gracefully placed, one upon his hat, the +other in the opening of his white waistcoat, were not at all tremulous; +his eye was calm and even brilliant. Scarcely had he entered the hall +when he glanced at the whole body of magistrates and assistants; his +eye rested longer on the president, and still more so on the king’s +attorney. + +By the side of Andrea was stationed the lawyer who was to conduct his +defence, and who had been appointed by the court, for Andrea disdained +to pay any attention to those details, to which he appeared to attach +no importance. The lawyer was a young man with light hair whose face +expressed a hundred times more emotion than that which characterized +the prisoner. + +50181m + + + +The president called for the indictment, revised as we know, by the +clever and implacable pen of Villefort. During the reading of this, +which was long, the public attention was continually drawn towards +Andrea, who bore the inspection with Spartan unconcern. Villefort had +never been so concise and eloquent. The crime was depicted in the most +vivid colors; the former life of the prisoner, his transformation, a +review of his life from the earliest period, were set forth with all +the talent that a knowledge of human life could furnish to a mind like +that of the procureur. Benedetto was thus forever condemned in public +opinion before the sentence of the law could be pronounced. + +Andrea paid no attention to the successive charges which were brought +against him. M. de Villefort, who examined him attentively, and who no +doubt practiced upon him all the psychological studies he was +accustomed to use, in vain endeavored to make him lower his eyes, +notwithstanding the depth and profundity of his gaze. At length the +reading of the indictment was ended. + +“Accused,” said the president, “your name and surname?” + +Andrea arose. + +“Excuse me, Mr. President,” he said, in a clear voice, “but I see you +are going to adopt a course of questions through which I cannot follow +you. I have an idea, which I will explain by and by, of making an +exception to the usual form of accusation. Allow me, then, if you +please, to answer in different order, or I will not do so at all.” + +The astonished president looked at the jury, who in turn looked at +Villefort. The whole assembly manifested great surprise, but Andrea +appeared quite unmoved. + +“Your age?” said the president; “will you answer that question?” + +“I will answer that question, as well as the rest, Mr. President, but +in its turn.” + +“Your age?” repeated the president. + +“I am twenty-one years old, or rather I shall be in a few days, as I +was born the night of the 27th of September, 1817.” + +M. de Villefort, who was busy taking down some notes, raised his head +at the mention of this date. + +“Where were you born?” continued the president. + +“At Auteuil, near Paris.” + +M. de Villefort a second time raised his head, looked at Benedetto as +if he had been gazing at the head of Medusa, and became livid. As for +Benedetto, he gracefully wiped his lips with a fine cambric +pocket-handkerchief. + +“Your profession?” + +“First I was a forger,” answered Andrea, as calmly as possible; “then I +became a thief, and lately have become an assassin.” + +A murmur, or rather storm, of indignation burst from all parts of the +assembly. The judges themselves appeared to be stupefied, and the jury +manifested tokens of disgust for a cynicism so unexpected in a man of +fashion. M. de Villefort pressed his hand upon his brow, which, at +first pale, had become red and burning; then he suddenly arose and +looked around as though he had lost his senses—he wanted air. + +50183m + + + +“Are you looking for anything, Mr. Procureur?” asked Benedetto, with +his most ingratiating smile. + +M. de Villefort answered nothing, but sat, or rather threw himself down +again upon his chair. + +“And now, prisoner, will you consent to tell your name?” said the +president. “The brutal affectation with which you have enumerated and +classified your crimes calls for a severe reprimand on the part of the +court, both in the name of morality, and for the respect due to +humanity. You appear to consider this a point of honor, and it may be +for this reason, that you have delayed acknowledging your name. You +wished it to be preceded by all these titles.” + +“It is quite wonderful, Mr. President, how entirely you have read my +thoughts,” said Benedetto, in his softest voice and most polite manner. +“This is, indeed, the reason why I begged you to alter the order of the +questions.” + +The public astonishment had reached its height. There was no longer any +deceit or bravado in the manner of the accused. The audience felt that +a startling revelation was to follow this ominous prelude. + +“Well,” said the president; “your name?” + +“I cannot tell you my name, since I do not know it; but I know my +father’s, and can tell it to you.” + +A painful giddiness overwhelmed Villefort; great drops of acrid sweat +fell from his face upon the papers which he held in his convulsed hand. + +“Repeat your father’s name,” said the president. + +Not a whisper, not a breath, was heard in that vast assembly; everyone +waited anxiously. + +“My father is king’s attorney,” replied Andrea calmly. + +50179m + + + +“King’s attorney?” said the president, stupefied, and without noticing +the agitation which spread over the face of M. de Villefort; “king’s +attorney?” + +“Yes; and if you wish to know his name, I will tell it,—he is named +Villefort.” + +The explosion, which had been so long restrained from a feeling of +respect to the court of justice, now burst forth like thunder from the +breasts of all present; the court itself did not seek to restrain the +feelings of the audience. The exclamations, the insults addressed to +Benedetto, who remained perfectly unconcerned, the energetic gestures, +the movement of the gendarmes, the sneers of the scum of the crowd +always sure to rise to the surface in case of any disturbance—all this +lasted five minutes, before the door-keepers and magistrates were able +to restore silence. In the midst of this tumult the voice of +the president was heard to exclaim: + +“Are you playing with justice, accused, and do you dare set your +fellow-citizens an example of disorder which even in these times has +never been equalled?” + +Several persons hurried up to M. de Villefort, who sat half bowed over +in his chair, offering him consolation, encouragement, and +protestations of zeal and sympathy. Order was re-established in the +hall, except that a few people still moved about and whispered to one +another. A lady, it was said, had just fainted; they had supplied her +with a smelling-bottle, and she had recovered. During the scene of +tumult, Andrea had turned his smiling face towards the assembly; then, +leaning with one hand on the oaken rail of the dock, in the most +graceful attitude possible, he said: + +“Gentlemen, I assure you I had no idea of insulting the court, or of +making a useless disturbance in the presence of this honorable +assembly. They ask my age; I tell it. They ask where I was born; I +answer. They ask my name, I cannot give it, since my parents abandoned +me. But though I cannot give my own name, not possessing one, I can +tell them my father’s. Now I repeat, my father is named M. de +Villefort, and I am ready to prove it.” + +There was an energy, a conviction, and a sincerity in the manner of the +young man, which silenced the tumult. All eyes were turned for a moment +towards the procureur, who sat as motionless as though a thunderbolt +had changed him into a corpse. + +“Gentlemen,” said Andrea, commanding silence by his voice and manner; +“I owe you the proofs and explanations of what I have said.” + +“But,” said the irritated president, “you called yourself Benedetto, +declared yourself an orphan, and claimed Corsica as your country.” + +“I said anything I pleased, in order that the solemn declaration I have +just made should not be withheld, which otherwise would certainly have +been the case. I now repeat that I was born at Auteuil on the night of +the 27th of September, 1817, and that I am the son of the procureur, M. +de Villefort. Do you wish for any further details? I will give them. I +was born in No. 28, Rue de la Fontaine, in a room hung with red damask; +my father took me in his arms, telling my mother I was dead, wrapped me +in a napkin marked with an H and an N, and carried me into a garden, +where he buried me alive.” + +A shudder ran through the assembly when they saw that the confidence of +the prisoner increased in proportion to the terror of M. de Villefort. + +“But how have you become acquainted with all these details?” asked the +president. + +“I will tell you, Mr. President. A man who had sworn vengeance against +my father, and had long watched his opportunity to kill him, had +introduced himself that night into the garden in which my father buried +me. He was concealed in a thicket; he saw my father bury something in +the ground, and stabbed him; then thinking the deposit might contain +some treasure he turned up the ground, and found me still living. The +man carried me to the foundling asylum, where I was registered under +the number 37. Three months afterwards, a woman travelled from Rogliano +to Paris to fetch me, and having claimed me as her son, carried me +away. Thus, you see, though born in Paris, I was brought up in +Corsica.” + +There was a moment’s silence, during which one could have fancied the +hall empty, so profound was the stillness. + +“Proceed,” said the president. + +“Certainly, I might have lived happily amongst those good people, who +adored me, but my perverse disposition prevailed over the virtues which +my adopted mother endeavored to instil into my heart. I increased in +wickedness till I committed crime. One day when I cursed Providence for +making me so wicked, and ordaining me to such a fate, my adopted father +said to me, ‘Do not blaspheme, unhappy child, the crime is that of your +father, not yours,—of your father, who consigned you to hell if you +died, and to misery if a miracle preserved you alive.’ After that I +ceased to blaspheme, but I cursed my father. That is why I have uttered +the words for which you blame me; that is why I have filled this whole +assembly with horror. If I have committed an additional crime, punish +me, but if you will allow that ever since the day of my birth my fate +has been sad, bitter, and lamentable, then pity me.” + +“But your mother?” asked the president. + +“My mother thought me dead; she is not guilty. I did not even wish to +know her name, nor do I know it.” + +Just then a piercing cry, ending in a sob, burst from the centre of the +crowd, who encircled the lady who had before fainted, and who now fell +into a violent fit of hysterics. She was carried out of the hall, the +thick veil which concealed her face dropped off, and Madame Danglars +was recognized. Notwithstanding his shattered nerves, the ringing +sensation in his ears, and the madness which turned his brain, +Villefort rose as he perceived her. + +“The proofs, the proofs!” said the president; “remember this tissue of +horrors must be supported by the clearest proofs.” + +“The proofs?” said Benedetto, laughing; “do you want proofs?” + +“Yes.” + +“Well, then, look at M. de Villefort, and then ask me for proofs.” + +Everyone turned towards the procureur, who, unable to bear the +universal gaze now riveted on him alone, advanced staggering into the +midst of the tribunal, with his hair dishevelled and his face indented +with the mark of his nails. The whole assembly uttered a long murmur of +astonishment. + +“Father,” said Benedetto, “I am asked for proofs, do you wish me to +give them?” + +“No, no, it is useless,” stammered M. de Villefort in a hoarse voice; +“no, it is useless!” + +“How useless?” cried the president, “what do you mean?” + +“I mean that I feel it impossible to struggle against this deadly +weight which crushes me. Gentlemen, I know I am in the hands of an +avenging God! We need no proofs; everything relating to this young man +is true.” + +A dull, gloomy silence, like that which precedes some awful phenomenon +of nature, pervaded the assembly, who shuddered in dismay. + +“What, M. de Villefort,” cried the president, “do you yield to an +hallucination? What, are you no longer in possession of your senses? +This strange, unexpected, terrible accusation has disordered your +reason. Come, recover.” + +The procureur dropped his head; his teeth chattered like those of a man +under a violent attack of fever, and yet he was deadly pale. + +“I am in possession of all my senses, sir,” he said; “my body alone +suffers, as you may suppose. I acknowledge myself guilty of all the +young man has brought against me, and from this hour hold myself under +the authority of the procureur who will succeed me.” + +And as he spoke these words with a hoarse, choking voice, he staggered +towards the door, which was mechanically opened by a door-keeper. The +whole assembly were dumb with astonishment at the revelation and +confession which had produced a catastrophe so different from that +which had been expected during the last fortnight by the Parisian +world. + +“Well,” said Beauchamp, “let them now say that drama is unnatural!” + +“_Ma foi!_” said Château-Renaud, “I would rather end my career like M. +de Morcerf; a pistol-shot seems quite delightful compared with this +catastrophe.” + +“And moreover, it kills,” said Beauchamp. + +“And to think that I had an idea of marrying his daughter,” said +Debray. “She did well to die, poor girl!” + +“The sitting is adjourned, gentlemen,” said the president; “fresh +inquiries will be made, and the case will be tried next session by +another magistrate.” + +As for Andrea, who was calm and more interesting than ever, he left the +hall, escorted by gendarmes, who involuntarily paid him some attention. + +“Well, what do you think of this, my fine fellow?” asked Debray of the +sergeant-at-arms, slipping a louis into his hand. + +“There will be extenuating circumstances,” he replied. + + + + Chapter 111. Expiation + +Notwithstanding the density of the crowd, M. de Villefort saw it open +before him. There is something so awe-inspiring in great afflictions +that even in the worst times the first emotion of a crowd has generally +been to sympathize with the sufferer in a great catastrophe. Many +people have been assassinated in a tumult, but even criminals have +rarely been insulted during trial. Thus Villefort passed through the +mass of spectators and officers of the Palais, and withdrew. Though he +had acknowledged his guilt, he was protected by his grief. There are +some situations which men understand by instinct, but which reason is +powerless to explain; in such cases the greatest poet is he who gives +utterance to the most natural and vehement outburst of sorrow. Those +who hear the bitter cry are as much impressed as if they listened to an +entire poem, and when the sufferer is sincere they are right in +regarding his outburst as sublime. + +It would be difficult to describe the state of stupor in which +Villefort left the Palais. Every pulse beat with feverish excitement, +every nerve was strained, every vein swollen, and every part of his +body seemed to suffer distinctly from the rest, thus multiplying his +agony a thousand-fold. He made his way along the corridors through +force of habit; he threw aside his magisterial robe, not out of +deference to etiquette, but because it was an unbearable burden, a +veritable garb of Nessus, insatiate in torture. Having staggered as far +as the Rue Dauphine, he perceived his carriage, awoke his sleeping +coachman by opening the door himself, threw himself on the cushions, +and pointed towards the Faubourg Saint-Honoré; the carriage drove on. + +All the weight of his fallen fortune seemed suddenly to crush him; he +could not foresee the consequences; he could not contemplate the future +with the indifference of the hardened criminal who merely faces a +contingency already familiar. + + + +God was still in his heart. “God,” he murmured, not knowing what he +said,—“God—God!” Behind the event that had overwhelmed him he saw the +hand of God. The carriage rolled rapidly onward. Villefort, while +turning restlessly on the cushions, felt something press against him. +He put out his hand to remove the object; it was a fan which Madame de +Villefort had left in the carriage; this fan awakened a recollection +which darted through his mind like lightning. He thought of his wife. + +50189m + + + +“Oh!” he exclaimed, as though a red-hot iron were piercing his heart. + +During the last hour his own crime had alone been presented to his +mind; now another object, not less terrible, suddenly presented itself. +His wife! He had just acted the inexorable judge with her, he had +condemned her to death, and she, crushed by remorse, struck with +terror, covered with the shame inspired by the eloquence of _his_ +irreproachable virtue,—she, a poor, weak woman, without help or the +power of defending herself against his absolute and supreme will,—she +might at that very moment, perhaps, be preparing to die! + +An hour had elapsed since her condemnation; at that moment, doubtless, +she was recalling all her crimes to her memory; she was asking pardon +for her sins; perhaps she was even writing a letter imploring +forgiveness from her virtuous husband—a forgiveness she was purchasing +with her death! Villefort again groaned with anguish and despair. + +“Ah,” he exclaimed, “that woman became criminal only from associating +with me! I carried the infection of crime with me, and she has caught +it as she would the typhus fever, the cholera, the plague! And yet I +have punished her—I have dared to tell her—_I_ have—‘Repent and die!’ +But no, she must not die; she shall live, and with me. We will flee +from Paris and go as far as the earth reaches. I told her of the +scaffold; oh, Heavens, I forgot that it awaits me also! How could I +pronounce that word? Yes, we will fly; I will confess all to her,—I +will tell her daily that I also have committed a crime!—Oh, what an +alliance—the tiger and the serpent; worthy wife of such as I am! She +_must_ live that my infamy may diminish hers.” + +And Villefort dashed open the window in front of the carriage. + +“Faster, faster!” he cried, in a tone which electrified the coachman. +The horses, impelled by fear, flew towards the house. + +“Yes, yes,” repeated Villefort, as he approached his home—“yes, that +woman must live; she must repent, and educate my son, the sole +survivor, with the exception of the indestructible old man, of the +wreck of my house. She loves him; it was for his sake she has committed +these crimes. We ought never to despair of softening the heart of a +mother who loves her child. She will repent, and no one will know that +she has been guilty. The events which have taken place in my house, +though they now occupy the public mind, will be forgotten in time, or +if, indeed, a few enemies should persist in remembering them, why then +I will add them to my list of crimes. What will it signify if one, two, +or three more are added? My wife and child shall escape from this gulf, +carrying treasures with them; she will live and may yet be happy, since +her child, in whom all her love is centred, will be with her. I shall +have performed a good action, and my heart will be lighter.” + +And the procureur breathed more freely than he had done for some time. + +50191m + + + +The carriage stopped at the door of the house. Villefort leaped out of +the carriage, and saw that his servants were surprised at his early +return; he could read no other expression on their features. Neither of +them spoke to him; they merely stood aside to let him pass by, as +usual, nothing more. As he passed by M. Noirtier’s room, he perceived +two figures through the half-open door; but he experienced no curiosity +to know who was visiting his father; anxiety carried him on further. + +“Come,” he said, as he ascended the stairs leading to his wife’s room, +“nothing is changed here.” + +He then closed the door of the landing. + +“No one must disturb us,” he said; “I must speak freely to her, accuse +myself, and say”—he approached the door, touched the crystal handle, +which yielded to his hand. “Not locked,” he cried; “that is well.” + +And he entered the little room in which Edward slept; for though the +child went to school during the day, his mother could not allow him to +be separated from her at night. With a single glance Villefort’s eye +ran through the room. + +“Not here,” he said; “doubtless she is in her bedroom.” He rushed +towards the door, found it bolted, and stopped, shuddering. + +“Héloïse!” he cried. He fancied he heard the sound of a piece of +furniture being removed. + +“Héloïse!” he repeated. + +“Who is there?” answered the voice of her he sought. He thought that +voice more feeble than usual. + +“Open the door!” cried Villefort. “Open; it is I.” + +But notwithstanding this request, notwithstanding the tone of anguish +in which it was uttered, the door remained closed. Villefort burst it +open with a violent blow. At the entrance of the room which led to her +boudoir, Madame de Villefort was standing erect, pale, her features +contracted, and her eyes glaring horribly. + +“Héloïse, Héloïse!” he said, “what is the matter? Speak!” The young +woman extended her stiff white hands towards him. + +“It is done, monsieur,” she said with a rattling noise which seemed to +tear her throat. “What more do you want?” and she fell full length on +the floor. + +Villefort ran to her and seized her hand, which convulsively clasped a +crystal bottle with a golden stopper. Madame de Villefort was dead. +Villefort, maddened with horror, stepped back to the threshhold of the +door, fixing his eyes on the corpse. + +“My son!” he exclaimed suddenly, “where is my son?—Edward, Edward!” and +he rushed out of the room, still crying, “Edward, Edward!” The name was +pronounced in such a tone of anguish that the servants ran up. + +“Where is my son?” asked Villefort; “let him be removed from the house, +that he may not see——” + +“Master Edward is not downstairs, sir,” replied the valet. + +“Then he must be playing in the garden; go and see.” + +50193m + + + +“No, sir; Madame de Villefort sent for him half an hour ago; he went +into her room, and has not been downstairs since.” + +A cold perspiration burst out on Villefort’s brow; his legs trembled, +and his thoughts flew about madly in his brain like the wheels of a +disordered watch. + +“In Madame de Villefort’s room?” he murmured and slowly returned, with +one hand wiping his forehead, and with the other supporting himself +against the wall. To enter the room he must again see the body of his +unfortunate wife. To call Edward he must reawaken the echo of that room +which now appeared like a sepulchre; to speak seemed like violating the +silence of the tomb. His tongue was paralyzed in his mouth. + +“Edward!” he stammered—“Edward!” + +The child did not answer. Where, then, could he be, if he had entered +his mother’s room and not since returned? He stepped forward. The +corpse of Madame de Villefort was stretched across the doorway leading +to the room in which Edward must be; those glaring eyes seemed to watch +over the threshold, and the lips bore the stamp of a terrible and +mysterious irony. Through the open door was visible a portion of the +boudoir, containing an upright piano and a blue satin couch. Villefort +stepped forward two or three paces, and beheld his child lying—no doubt +asleep—on the sofa. The unhappy man uttered an exclamation of joy; a +ray of light seemed to penetrate the abyss of despair and darkness. He +had only to step over the corpse, enter the boudoir, take the child in +his arms, and flee far, far away. + +Villefort was no longer the civilized man; he was a tiger hurt unto +death, gnashing his teeth in his wound. He no longer feared realities, +but phantoms. He leaped over the corpse as if it had been a burning +brazier. He took the child in his arms, embraced him, shook him, called +him, but the child made no response. He pressed his burning lips to the +cheeks, but they were icy cold and pale; he felt the stiffened limbs; +he pressed his hand upon the heart, but it no longer beat,—the child +was dead. + +A folded paper fell from Edward’s breast. Villefort, thunderstruck, +fell upon his knees; the child dropped from his arms, and rolled on the +floor by the side of its mother. He picked up the paper, and, +recognizing his wife’s writing, ran his eyes rapidly over its contents; +it ran as follows: + +“You know that I was a good mother, since it was for my son’s sake I +became criminal. A good mother cannot depart without her son.” + +Villefort could not believe his eyes,—he could not believe his reason; +he dragged himself towards the child’s body, and examined it as a +lioness contemplates its dead cub. Then a piercing cry escaped from his +breast, and he cried, + +“Still the hand of God.” + +The presence of the two victims alarmed him; he could not bear solitude +shared only by two corpses. Until then he had been sustained by rage, +by his strength of mind, by despair, by the supreme agony which led the +Titans to scale the heavens, and Ajax to defy the gods. He now arose, +his head bowed beneath the weight of grief, and, shaking his damp, +dishevelled hair, he who had never felt compassion for anyone +determined to seek his father, that he might have someone to whom he +could relate his misfortunes,—someone by whose side he might weep. + +50195m + + + +He descended the little staircase with which we are acquainted, and +entered Noirtier’s room. The old man appeared to be listening +attentively and as affectionately as his infirmities would allow to the +Abbé Busoni, who looked cold and calm, as usual. Villefort, perceiving +the abbé, passed his hand across his brow. The past came to him like +one of those waves whose wrath foams fiercer than the others. + +He recollected the call he had made upon him after the dinner at +Auteuil, and then the visit the abbé had himself paid to his house on +the day of Valentine’s death. + +“You here, sir!” he exclaimed; “do you, then, never appear but to act +as an escort to death?” + +Busoni turned around, and, perceiving the excitement depicted on the +magistrate’s face, the savage lustre of his eyes, he understood that +the revelation had been made at the assizes; but beyond this he was +ignorant. + +“I came to pray over the body of your daughter.” + +“And now why are you here?” + +“I come to tell you that you have sufficiently repaid your debt, and +that from this moment I will pray to God to forgive you, as I do.” + +“Good heavens!” exclaimed Villefort, stepping back fearfully, “surely +that is not the voice of the Abbé Busoni!” + +“No!” The abbé threw off his wig, shook his head, and his hair, no +longer confined, fell in black masses around his manly face. + +“It is the face of the Count of Monte Cristo!” exclaimed the procureur, +with a haggard expression. + +“You are not exactly right, M. Procureur; you must go farther back.” + +“That voice, that voice!—where did I first hear it?” + +“You heard it for the first time at Marseilles, twenty-three years ago, +the day of your marriage with Mademoiselle de Saint-Méran. Refer to +your papers.” + +“You are not Busoni?—you are not Monte Cristo? Oh, heavens! you are, +then, some secret, implacable, and mortal enemy! I must have wronged +you in some way at Marseilles. Oh, woe to me!” + +“Yes; you are now on the right path,” said the count, crossing his arms +over his broad chest; “search—search!” + +“But what have I done to you?” exclaimed Villefort, whose mind was +balancing between reason and insanity, in that cloud which is neither a +dream nor reality; “what have I done to you? Tell me, then! Speak!” + +“You condemned me to a horrible, tedious death; you killed my father; +you deprived me of liberty, of love, and happiness.” + +“Who are you, then? Who are you?” + +“I am the spectre of a wretch you buried in the dungeons of the Château +d’If. God gave that spectre the form of the Count of Monte Cristo when +he at length issued from his tomb, enriched him with gold and diamonds, +and led him to you!” + +“Ah, I recognize you—I recognize you!” exclaimed the king’s attorney; +“you are——” + +“I am Edmond Dantès!” + +“You are Edmond Dantès,” cried Villefort, seizing the count by the +wrist; “then come here!” + +And up the stairs he dragged Monte Cristo; who, ignorant of what had +happened, followed him in astonishment, foreseeing some new +catastrophe. + +“There, Edmond Dantès!” he said, pointing to the bodies of his wife and +child, “see, are you well avenged?” + +Monte Cristo became pale at this horrible sight; he felt that he had +passed beyond the bounds of vengeance, and that he could no longer say, +“God is for and with me.” With an expression of indescribable anguish +he threw himself upon the body of the child, reopened its eyes, felt +its pulse, and then rushed with him into Valentine’s room, of which he +double-locked the door. + +“My child,” cried Villefort, “he carries away the body of my child! Oh, +curses, woe, death to you!” + +He tried to follow Monte Cristo; but as though in a dream he was +transfixed to the spot,—his eyes glared as though they were starting +through the sockets; he griped the flesh on his chest until his nails +were stained with blood; the veins of his temples swelled and boiled as +though they would burst their narrow boundary, and deluge his brain +with living fire. This lasted several minutes, until the frightful +overturn of reason was accomplished; then uttering a loud cry followed +by a burst of laughter, he rushed down the stairs. + +A quarter of an hour afterwards the door of Valentine’s room opened, +and Monte Cristo reappeared. Pale, with a dull eye and heavy heart, all +the noble features of that face, usually so calm and serene, were +overcast by grief. In his arms he held the child, whom no skill had +been able to recall to life. Bending on one knee, he placed it +reverently by the side of its mother, with its head upon her breast. +Then, rising, he went out, and meeting a servant on the stairs, he +asked: + +“Where is M. de Villefort?” + +The servant, instead of answering, pointed to the garden. Monte Cristo +ran down the steps, and advancing towards the spot designated beheld +Villefort, encircled by his servants, with a spade in his hand, and +digging the earth with fury. + +“It is not here!” he cried. “It is not here!” + +50197m + + + +And then he moved farther on, and began again to dig. + +Monte Cristo approached him, and said in a low voice, with an +expression almost humble: + +“Sir, you have indeed lost a son; but——” + +Villefort interrupted him; he had neither listened nor heard. + +“Oh, I _will_ find it,” he cried; “you may pretend he is not here, but +I _will_ find him, though I dig forever!” + +Monte Cristo drew back in horror. + +“Oh,” he said, “he is mad!” And as though he feared that the walls of +the accursed house would crumble around him, he rushed into the street, +for the first time doubting whether he had the right to do as he had +done. “Oh, enough of this,—enough of this,” he cried; “let me save the +last.” On entering his house, he met Morrel, who wandered about like a +ghost awaiting the heavenly mandate for return to the tomb. + +“Prepare yourself, Maximilian,” he said with a smile; “we leave Paris +tomorrow.” + +“Have you nothing more to do there?” asked Morrel. + +“No,” replied Monte Cristo; “God grant I may not have done too much +already.” + +The next day they indeed left, accompanied only by Baptistin. Haydée +had taken away Ali, and Bertuccio remained with Noirtier. + + + + Chapter 112. The Departure + +The recent events formed the theme of conversation throughout all +Paris. Emmanuel and his wife conversed with natural astonishment in +their little apartment in the Rue Meslay upon the three successive, +sudden, and most unexpected catastrophes of Morcerf, Danglars, and +Villefort. Maximilian, who was paying them a visit, listened to their +conversation, or rather was present at it, plunged in his accustomed +state of apathy. + +“Indeed,” said Julie, “might we not almost fancy, Emmanuel, that those +people, so rich, so happy but yesterday, had forgotten in their +prosperity that an evil genius—like the wicked fairies in Perrault’s +stories who present themselves unbidden at a wedding or baptism—hovered +over them, and appeared all at once to revenge himself for their fatal +neglect?” + +“What a dire misfortune!” said Emmanuel, thinking of Morcerf and +Danglars. + +“What dreadful sufferings!” said Julie, remembering Valentine, but +whom, with a delicacy natural to women, she did not name before her +brother. + +“If the Supreme Being has directed the fatal blow,” said Emmanuel, “it +must be that he in his great goodness has perceived nothing in the past +lives of these people to merit mitigation of their awful punishment.” + +“Do you not form a very rash judgment, Emmanuel?” said Julie. “When my +father, with a pistol in his hand, was once on the point of committing +suicide, had anyone then said, ‘This man deserves his misery,’ would +not that person have been deceived?” + +“Yes; but your father was not allowed to fall. A being was commissioned +to arrest the fatal hand of death about to descend on him.” + +Emmanuel had scarcely uttered these words when the sound of the bell +was heard, the well-known signal given by the porter that a visitor had +arrived. Nearly at the same instant the door was opened and the Count +of Monte Cristo appeared on the threshold. The young people uttered a +cry of joy, while Maximilian raised his head, but let it fall again +immediately. + +50201m + + + +“Maximilian,” said the count, without appearing to notice the different +impressions which his presence produced on the little circle, “I come +to seek you.” + +“To seek me?” repeated Morrel, as if awakening from a dream. + +“Yes,” said Monte Cristo; “has it not been agreed that I should take +you with me, and did I not tell you yesterday to prepare for +departure?” + +“I am ready,” said Maximilian; “I came expressly to wish them +farewell.” + +“Whither are you going, count?” asked Julie. + +“In the first instance to Marseilles, madame.” + +“To Marseilles!” exclaimed the young couple. + +“Yes, and I take your brother with me.” + +“Oh, count.” said Julie, “will you restore him to us cured of his +melancholy?” Morrel turned away to conceal the confusion of his +countenance. + +“You perceive, then, that he is not happy?” said the count. + +“Yes,” replied the young woman; “and fear much that he finds our home +but a dull one.” + +“I will undertake to divert him,” replied the count. + +“I am ready to accompany you, sir,” said Maximilian. “Adieu, my kind +friends! Emmanuel—Julie—farewell!” + +“How farewell?” exclaimed Julie; “do you leave us thus, so suddenly, +without any preparations for your journey, without even a passport?” + +“Needless delays but increase the grief of parting,” said Monte Cristo, +“and Maximilian has doubtless provided himself with everything +requisite; at least, I advised him to do so.” + +“I have a passport, and my clothes are ready packed,” said Morrel in +his tranquil but mournful manner. + +“Good,” said Monte Cristo, smiling; “in these prompt arrangements we +recognize the order of a well-disciplined soldier.” + +“And you leave us,” said Julie, “at a moment’s warning? you do not give +us a day—no, not even an hour before your departure?” + +“My carriage is at the door, madame, and I must be in Rome in five +days.” + +“But does Maximilian go to Rome?” exclaimed Emmanuel. + +“I am going wherever it may please the count to take me,” said Morrel, +with a smile full of grief; “I am under his orders for the next month.” + +“Oh, heavens, how strangely he expresses himself, count!” said Julie. + +“Maximilian goes with _me_,” said the count, in his kindest and most +persuasive manner; “therefore do not make yourself uneasy on your +brother’s account.” + +“Once more farewell, my dear sister; Emmanuel, adieu!” Morrel repeated. + +“His carelessness and indifference touch me to the heart,” said Julie. +“Oh, Maximilian, Maximilian, you are certainly concealing something +from us.” + +“Pshaw!” said Monte Cristo, “you will see him return to you gay, +smiling, and joyful.” + +Maximilian cast a look of disdain, almost of anger, on the count. + +“We must leave you,” said Monte Cristo. + +50203m + + + +“Before you quit us, count,” said Julie, “will you permit us to express +to you all that the other day——” + +“Madame,” interrupted the count, taking her two hands in his, “all that +you could say in words would never express what I read in your eyes; +the thoughts of your heart are fully understood by mine. Like +benefactors in romances, I should have left you without seeing you +again, but that would have been a virtue beyond my strength, because I +am a weak and vain man, fond of the tender, kind, and thankful glances +of my fellow-creatures. On the eve of departure I carry my egotism so +far as to say, ‘Do not forget me, my kind friends, for probably you +will never see me again.’” + +“Never see you again?” exclaimed Emmanuel, while two large tears rolled +down Julie’s cheeks, “never behold you again? It is not a man, then, +but some angel that leaves us, and this angel is on the point of +returning to heaven after having appeared on earth to do good.” + +“Say not so,” quickly returned Monte Cristo—“say not so, my friends; +angels never err, celestial beings remain where they wish to be. Fate +is not more powerful than they; it is they who, on the contrary, +overcome fate. No, Emmanuel, I am but a man, and your admiration is as +unmerited as your words are sacrilegious.” + +And pressing his lips on the hand of Julie, who rushed into his arms, +he extended his other hand to Emmanuel; then tearing himself from this +abode of peace and happiness, he made a sign to Maximilian, who +followed him passively, with the indifference which had been +perceptible in him ever since the death of Valentine had so stunned +him. + +“Restore my brother to peace and happiness,” whispered Julie to Monte +Cristo. And the count pressed her hand in reply, as he had done eleven +years before on the staircase leading to Morrel’s study. + +“You still confide, then, in Sinbad the Sailor?” asked he, smiling. + +“Oh, yes,” was the ready answer. + +“Well, then, sleep in peace, and put your trust in the Lord.” + +As we have before said, the post-chaise was waiting; four powerful +horses were already pawing the ground with impatience, while Ali, +apparently just arrived from a long walk, was standing at the foot of +the steps, his face bathed in perspiration. + +“Well,” asked the count in Arabic, “have you been to see the old man?” +Ali made a sign in the affirmative. + +“And have you placed the letter before him, as I ordered you to do?” + +The slave respectfully signalized that he had. + +“And what did he say, or rather do?” Ali placed himself in the light, +so that his master might see him distinctly, and then imitating in his +intelligent manner the countenance of the old man, he closed his eyes, +as Noirtier was in the custom of doing when saying “Yes.” + +“Good; he accepts,” said Monte Cristo. “Now let us go.” + +50205m + + + +These words had scarcely escaped him, when the carriage was on its way, +and the feet of the horses struck a shower of sparks from the pavement. +Maximilian settled himself in his corner without uttering a word. Half +an hour had passed when the carriage stopped suddenly; the count had +just pulled the silken check-string, which was fastened to Ali’s +finger. The Nubian immediately descended and opened the carriage door. +It was a lovely starlight night—they had just reached the top of the +hill Villejuif, from whence Paris appears like a sombre sea tossing its +millions of phosphoric waves into light—waves indeed more noisy, more +passionate, more changeable, more furious, more greedy, than those of +the tempestuous ocean,—waves which never rest as those of the sea +sometimes do,—waves ever dashing, ever foaming, ever ingulfing what +falls within their grasp. + +The count stood alone, and at a sign from his hand, the carriage went +on for a short distance. With folded arms, he gazed for some time upon +the great city. When he had fixed his piercing look on this modern +Babylon, which equally engages the contemplation of the religious +enthusiast, the materialist, and the scoffer,— + +“Great city,” murmured he, inclining his head, and joining his hands as +if in prayer, “less than six months have elapsed since first I entered +thy gates. I believe that the Spirit of God led my steps to thee and +that he also enables me to quit thee in triumph; the secret cause of my +presence within thy walls I have confided alone to him who only has had +the power to read my heart. God only knows that I retire from thee +without pride or hatred, but not without many regrets; he only knows +that the power confided to me has never been made subservient to my +personal good or to any useless cause. Oh, great city, it is in thy +palpitating bosom that I have found that which I sought; like a patient +miner, I have dug deep into thy very entrails to root out evil thence. +Now my work is accomplished, my mission is terminated, now thou canst +neither afford me pain nor pleasure. Adieu, Paris, adieu!” + +His look wandered over the vast plain like that of some genius of the +night; he passed his hand over his brow, got into the carriage, the +door was closed on him, and the vehicle quickly disappeared down the +other side of the hill in a whirlwind of dust and noise. + +Ten leagues were passed and not a single word was uttered. Morrel was +dreaming, and Monte Cristo was looking at the dreamer. + +“Morrel,” said the count to him at length, “do you repent having +followed me?” + +“No, count; but to leave Paris——” + +“If I thought happiness might await you in Paris, Morrel, I would have +left you there.” + +“Valentine reposes within the walls of Paris, and to leave Paris is +like losing her a second time.” + +“Maximilian,” said the count, “the friends that we have lost do not +repose in the bosom of the earth, but are buried deep in our hearts, +and it has been thus ordained that we may always be accompanied by +them. I have two friends, who in this way never depart from me; the one +who gave me being, and the other who conferred knowledge and +intelligence on me. Their spirits live in me. I consult them when +doubtful, and if I ever do any good, it is due to their beneficent +counsels. Listen to the voice of your heart, Morrel, and ask it whether +you ought to preserve this melancholy exterior towards me.” + +“My friend,” said Maximilian, “the voice of my heart is very sorrowful, +and promises me nothing but misfortune.” + +“It is the way of weakened minds to see everything through a black +cloud. The soul forms its own horizons; your soul is darkened, and +consequently the sky of the future appears stormy and unpromising.” + +“That may possibly be true,” said Maximilian, and he again subsided +into his thoughtful mood. + +The journey was performed with that marvellous rapidity which the +unlimited power of the count ever commanded. Towns fled from them like +shadows on their path, and trees shaken by the first winds of autumn +seemed like giants madly rushing on to meet them, and retreating as +rapidly when once reached. The following morning they arrived at +Châlons, where the count’s steamboat waited for them. Without the loss +of an instant, the carriage was placed on board and the two travellers +embarked without delay. The boat was built for speed; her two +paddle-wheels were like two wings with which she skimmed the water like +a bird. + +Morrel was not insensible to that sensation of delight which is +generally experienced in passing rapidly through the air, and the wind +which occasionally raised the hair from his forehead seemed on the +point of dispelling momentarily the clouds collected there. + +As the distance increased between the travellers and Paris, almost +superhuman serenity appeared to surround the count; he might have been +taken for an exile about to revisit his native land. + +Ere long Marseilles presented herself to view,—Marseilles, white, +fervid, full of life and energy,—Marseilles, the younger sister of Tyre +and Carthage, the successor to them in the empire of the +Mediterranean,—Marseilles, old, yet always young. Powerful memories +were stirred within them by the sight of the round tower, Fort +Saint-Nicolas, the City Hall designed by Puget,28 the port with its +brick quays, where they had both played in childhood, and it was with +one accord that they stopped on the Canebière. + +A vessel was setting sail for Algiers, on board of which the bustle +usually attending departure prevailed. The passengers and their +relations crowded on the deck, friends taking a tender but sorrowful +leave of each other, some weeping, others noisy in their grief, the +whole forming a spectacle that might be exciting even to those who +witnessed similar sights daily, but which had no power to disturb the +current of thought that had taken possession of the mind of Maximilian +from the moment he had set foot on the broad pavement of the quay. + +“Here,” said he, leaning heavily on the arm of Monte Cristo,—“here is +the spot where my father stopped, when the _Pharaon_ entered the port; +it was here that the good old man, whom you saved from death and +dishonor, threw himself into my arms. I yet feel his warm tears on my +face, and his were not the only tears shed, for many who witnessed our +meeting wept also.” + +Monte Cristo gently smiled and said,—“I was there;” at the same time +pointing to the corner of a street. As he spoke, and in the very +direction he indicated, a groan, expressive of bitter grief, was heard, +and a woman was seen waving her hand to a passenger on board the vessel +about to sail. Monte Cristo looked at her with an emotion that must +have been remarked by Morrel had not his eyes been fixed on the vessel. + +“Oh, heavens!” exclaimed Morrel, “I do not deceive myself—that young +man who is waving his hat, that youth in the uniform of a lieutenant, +is Albert de Morcerf!” + +“Yes,” said Monte Cristo, “I recognized him.” + +“How so?—you were looking the other way.” + +50209m + + + +The count smiled, as he was in the habit of doing when he did not want +to make any reply, and he again turned towards the veiled woman, who +soon disappeared at the corner of the street. Turning to his friend: + +“Dear Maximilian,” said the count, “have you nothing to do in this +land?” + +“I have to weep over the grave of my father,” replied Morrel in a +broken voice. + +“Well, then, go,—wait for me there, and I will soon join you.” + +“You leave me, then?” + +“Yes; I also have a pious visit to pay.” + +Morrel allowed his hand to fall into that which the count extended to +him; then with an inexpressibly sorrowful inclination of the head he +quitted the count and bent his steps to the east of the city. Monte +Cristo remained on the same spot until Maximilian was out of sight; he +then walked slowly towards the Allées de Meilhan to seek out a small +house with which our readers were made familiar at the beginning of +this story. + +It yet stood, under the shade of the fine avenue of lime-trees, which +forms one of the most frequent walks of the idlers of Marseilles, +covered by an immense vine, which spreads its aged and blackened +branches over the stone front, burnt yellow by the ardent sun of the +south. Two stone steps worn away by the friction of many feet led to +the door, which was made of three planks; the door had never been +painted or varnished, so great cracks yawned in it during the dry +season to close again when the rains came on. The house, with all its +crumbling antiquity and apparent misery, was yet cheerful and +picturesque, and was the same that old Dantès formerly inhabited—the +only difference being that the old man occupied merely the garret, +while the whole house was now placed at the command of Mercédès by the +count. + +The woman whom the count had seen leave the ship with so much regret +entered this house; she had scarcely closed the door after her when +Monte Cristo appeared at the corner of a street, so that he found and +lost her again almost at the same instant. The worn out steps were old +acquaintances of his; he knew better than anyone else how to open that +weather-beaten door with the large headed nail which served to raise +the latch within. He entered without knocking, or giving any other +intimation of his presence, as if he had been a friend or the master of +the place. At the end of a passage paved with bricks, was a little +garden, bathed in sunshine, and rich in warmth and light. In this +garden Mercédès had found, at the place indicated by the count, the sum +of money which he, through a sense of delicacy, had described as having +been placed there twenty-four years previously. The trees of the garden +were easily seen from the steps of the street-door. + +Monte Cristo, on stepping into the house, heard a sigh that was almost +a deep sob; he looked in the direction whence it came, and there under +an arbor of Virginia jessamine,29 with its thick foliage and beautiful +long purple flowers, he saw Mercédès seated, with her head bowed, and +weeping bitterly. She had raised her veil, and with her face hidden by +her hands was giving free scope to the sighs and tears which had been +so long restrained by the presence of her son. + +Monte Cristo advanced a few steps, which were heard on the gravel. +Mercédès raised her head, and uttered a cry of terror on beholding a +man before her. + +50211m + + + +“Madame,” said the count, “it is no longer in my power to restore you +to happiness, but I offer you consolation; will you deign to accept it +as coming from a friend?” + +“I am, indeed, most wretched,” replied Mercédès. “Alone in the world, I +had but my son, and he has left me!” + +“He possesses a noble heart, madame,” replied the count, “and he has +acted rightly. He feels that every man owes a tribute to his country; +some contribute their talents, others their industry; these devote +their blood, those their nightly labors, to the same cause. Had he +remained with you, his life must have become a hateful burden, nor +would he have participated in your griefs. He will increase in strength +and honor by struggling with adversity, which he will convert into +prosperity. Leave him to build up the future for you, and I venture to +say you will confide it to safe hands.” + +“Oh,” replied the wretched woman, mournfully shaking her head, “the +prosperity of which you speak, and which, from the bottom of my heart, +I pray God in his mercy to grant him, I can never enjoy. The bitter cup +of adversity has been drained by me to the very dregs, and I feel that +the grave is not far distant. You have acted kindly, count, in bringing +me back to the place where I have enjoyed so much bliss. I ought to +meet death on the same spot where happiness was once all my own.” + +“Alas,” said Monte Cristo, “your words sear and embitter my heart, the +more so as you have every reason to hate me. I have been the cause of +all your misfortunes; but why do you pity, instead of blaming me? You +render me still more unhappy——” + +“Hate you, blame you—_you_, Edmond! Hate, reproach, the man that has +spared my son’s life! For was it not your fatal and sanguinary +intention to destroy that son of whom M. de Morcerf was so proud? Oh, +look at me closely, and discover, if you can, even the semblance of a +reproach in me.” + +The count looked up and fixed his eyes on Mercédès, who arose partly +from her seat and extended both her hands towards him. + +“Oh, look at me,” continued she, with a feeling of profound melancholy, +“my eyes no longer dazzle by their brilliancy, for the time has long +fled since I used to smile on Edmond Dantès, who anxiously looked out +for me from the window of yonder garret, then inhabited by his old +father. Years of grief have created an abyss between those days and the +present. I neither reproach you nor hate you, my friend. Oh, no, +Edmond, it is myself that I blame, myself that I hate! Oh, miserable +creature that I am!” cried she, clasping her hands, and raising her +eyes to heaven. “I once possessed piety, innocence, and love, the three +ingredients of the happiness of angels, and now what am I?” + +Monte Cristo approached her, and silently took her hand. + +“No,” said she, withdrawing it gently—“no, my friend, touch me not. You +have spared me, yet of all those who have fallen under your vengeance I +was the most guilty. They were influenced by hatred, by avarice, and by +self-love; but I was base, and for want of courage acted against my +judgment. Nay, do not press my hand, Edmond; you are thinking, I am +sure, of some kind speech to console me, but do not utter it to me, +reserve it for others more worthy of your kindness. See” (and she +exposed her face completely to view)—“see, misfortune has silvered my +hair, my eyes have shed so many tears that they are encircled by a rim +of purple, and my brow is wrinkled. You, Edmond, on the contrary,—you +are still young, handsome, dignified; it is because you have had faith; +because you have had strength, because you have had trust in God, and +God has sustained you. But as for me, I have been a coward; I have +denied God and he has abandoned me.” + +50213m + + + +Mercédès burst into tears; her woman’s heart was breaking under its +load of memories. Monte Cristo took her hand and imprinted a kiss on +it; but she herself felt that it was a kiss of no greater warmth than +he would have bestowed on the hand of some marble statue of a saint. + +“It often happens,” continued she, “that a first fault destroys the +prospects of a whole life. I believed you dead; why did I survive you? +What good has it done me to mourn for you eternally in the secret +recesses of my heart?—only to make a woman of thirty-nine look like a +woman of fifty. Why, having recognized you, and I the only one to do +so—why was I able to save my son alone? Ought I not also to have +rescued the man that I had accepted for a husband, guilty though he +were? Yet I let him die! What do I say? Oh, merciful heavens, was I not +accessory to his death by my supine insensibility, by my contempt for +him, not remembering, or not willing to remember, that it was for my +sake he had become a traitor and a perjurer? In what am I benefited by +accompanying my son so far, since I now abandon him, and allow him to +depart alone to the baneful climate of Africa? Oh, I have been base, +cowardly, I tell you; I have abjured my affections, and like all +renegades I am of evil omen to those who surround me!” + +“No, Mercédès,” said Monte Cristo, “no; you judge yourself with too +much severity. You are a noble-minded woman, and it was your grief that +disarmed me. Still I was but an agent, led on by an invisible and +offended Deity, who chose not to withhold the fatal blow that I was +destined to hurl. I take that God to witness, at whose feet I have +prostrated myself daily for the last ten years, that I would have +sacrificed my life to you, and with my life the projects that were +indissolubly linked with it. But—and I say it with some pride, +Mercédès—God needed me, and I lived. Examine the past and the present, +and endeavor to dive into futurity, and then say whether I am not a +divine instrument. The most dreadful misfortunes, the most frightful +sufferings, the abandonment of all those who loved me, the persecution +of those who did not know me, formed the trials of my youth; when +suddenly, from captivity, solitude, misery, I was restored to light and +liberty, and became the possessor of a fortune so brilliant, so +unbounded, so unheard-of, that I must have been blind not to be +conscious that God had endowed me with it to work out his own great +designs. From that time I looked upon this fortune as something +confided to me for a particular purpose. Not a thought was given to a +life which you once, Mercédès, had the power to render blissful; not +one hour of peaceful calm was mine; but I felt myself driven on like an +exterminating angel. Like adventurous captains about to embark on some +enterprise full of danger, I laid in my provisions, I loaded my +weapons, I collected every means of attack and defence; I inured my +body to the most violent exercises, my soul to the bitterest trials; I +taught my arm to slay, my eyes to behold excruciating sufferings, and +my mouth to smile at the most horrid spectacles. Good-natured, +confiding, and forgiving as I had been, I became revengeful, cunning, +and wicked, or rather, immovable as fate. Then I launched out into the +path that was opened to me. I overcame every obstacle, and reached the +goal; but woe to those who stood in my pathway!” + +50215m + + + +“Enough,” said Mercédès; “enough, Edmond! Believe me, that she who +alone recognized you has been the only one to comprehend you; and had +she crossed your path, and you had crushed her like glass, still, +Edmond, still she must have admired you! Like the gulf between me and +the past, there is an abyss between you, Edmond, and the rest of +mankind; and I tell you freely that the comparison I draw between you +and other men will ever be one of my greatest tortures. No, there is +nothing in the world to resemble you in worth and goodness! But we must +say farewell, Edmond, and let us part.” + +“Before I leave you, Mercédès, have you no request to make?” said the +count. + +“I desire but one thing in this world, Edmond,—the happiness of my +son.” + +“Pray to the Almighty to spare his life, and I will take upon myself to +promote his happiness.” + +“Thank you, Edmond.” + +“But have you no request to make for yourself, Mercédès?” + +“For myself I want nothing. I live, as it were, between two graves. One +is that of Edmond Dantès, lost to me long, long since. He had my love! +That word ill becomes my faded lip now, but it is a memory dear to my +heart, and one that I would not lose for all that the world contains. +The other grave is that of the man who met his death from the hand of +Edmond Dantès. I approve of the deed, but I must pray for the dead.” + +“Your son shall be happy, Mercédès,” repeated the count. + +“Then I shall enjoy as much happiness as this world can possibly +confer.” + +“But what are your intentions?” + +Mercédès smiled sadly. + +“To say that I shall live here, like the Mercédès of other times, +gaining my bread by labor, would not be true, nor would you believe me. +I have no longer the strength to do anything but to spend my days in +prayer. However, I shall have no occasion to work, for the little sum +of money buried by you, and which I found in the place you mentioned, +will be sufficient to maintain me. Rumor will probably be busy +respecting me, my occupations, my manner of living—that will signify +but little, that concerns God, you, and myself.” + +“Mercédès,” said the count, “I do not say it to blame you, but you made +an unnecessary sacrifice in relinquishing the whole of the fortune +amassed by M. de Morcerf; half of it at least by right belonged to you, +in virtue of your vigilance and economy.” + +“I perceive what you are intending to propose to me; but I cannot +accept it, Edmond—my son would not permit it.” + +“Nothing shall be done without the full approbation of Albert de +Morcerf. I will make myself acquainted with his intentions and will +submit to them. But if he be willing to accept my offers, will you +oppose them?” + +“You well know, Edmond, that I am no longer a reasoning creature; I +have no will, unless it be the will never to decide. I have been so +overwhelmed by the many storms that have broken over my head, that I am +become passive in the hands of the Almighty, like a sparrow in the +talons of an eagle. I live, because it is not ordained for me to die. +If succor be sent to me, I will accept it.” + +“Ah, madame,” said Monte Cristo, “you should not talk thus! It is not +so we should evince our resignation to the will of heaven; on the +contrary, we are all free agents.” + +“Alas!” exclaimed Mercédès, “if it were so, if I possessed free-will, +but without the power to render that will efficacious, it would drive +me to despair.” + +Monte Cristo dropped his head and shrank from the vehemence of her +grief. + +“Will you not even say you will see me again?” he asked. + +“On the contrary, we shall meet again,” said Mercédès, pointing to +heaven with solemnity. “I tell you so to prove to you that I still +hope.” + +And after pressing her own trembling hand upon that of the count, +Mercédès rushed up the stairs and disappeared. Monte Cristo slowly left +the house and turned towards the quay. But Mercédès did not witness his +departure, although she was seated at the little window of the room +which had been occupied by old Dantès. Her eyes were straining to see +the ship which was carrying her son over the vast sea; but still her +voice involuntarily murmured softly: + +“Edmond, Edmond, Edmond!” + + + + Chapter 113. The Past + +The count departed with a sad heart from the house in which he had left +Mercédès, probably never to behold her again. Since the death of little +Edward a great change had taken place in Monte Cristo. Having reached +the summit of his vengeance by a long and tortuous path, he saw an +abyss of doubt yawning before him. More than this, the conversation +which had just taken place between Mercédès and himself had awakened so +many recollections in his heart that he felt it necessary to combat +with them. A man of the count’s temperament could not long indulge in +that melancholy which can exist in common minds, but which destroys +superior ones. He thought he must have made an error in his +calculations if he now found cause to blame himself. + +“I cannot have deceived myself,” he said; “I must look upon the past in +a false light. What!” he continued, “can I have been following a false +path?—can the end which I proposed be a mistaken end?—can one hour have +sufficed to prove to an architect that the work upon which he founded +all his hopes was an impossible, if not a sacrilegious, undertaking? I +cannot reconcile myself to this idea—it would madden me. The reason why +I am now dissatisfied is that I have not a clear appreciation of the +past. The past, like the country through which we walk, becomes +indistinct as we advance. My position is like that of a person wounded +in a dream; he feels the wound, though he cannot recollect when he +received it. + +“Come, then, thou regenerate man, thou extravagant prodigal, thou +awakened sleeper, thou all-powerful visionary, thou invincible +millionaire,—once again review thy past life of starvation and +wretchedness, revisit the scenes where fate and misfortune conducted, +and where despair received thee. Too many diamonds, too much gold and +splendor, are now reflected by the mirror in which Monte Cristo seeks +to behold Dantès. Hide thy diamonds, bury thy gold, shroud thy +splendor, exchange riches for poverty, liberty for a prison, a living +body for a corpse!” + +As he thus reasoned, Monte Cristo walked down the Rue de la Caisserie. +It was the same through which, twenty-four years ago, he had been +conducted by a silent and nocturnal guard; the houses, today so smiling +and animated, were on that night dark, mute, and closed. + +“And yet they were the same,” murmured Monte Cristo, “only now it is +broad daylight instead of night; it is the sun which brightens the +place, and makes it appear so cheerful.” + +He proceeded towards the quay by the Rue Saint-Laurent, and advanced to +the Consigne; it was the point where he had embarked. A pleasure-boat +with striped awning was going by. Monte Cristo called the owner, who +immediately rowed up to him with the eagerness of a boatman hoping for +a good fare. + +The weather was magnificent, and the excursion a treat. The sun, red +and flaming, was sinking into the embrace of the welcoming ocean. The +sea, smooth as crystal, was now and then disturbed by the leaping of +fish, which were pursued by some unseen enemy and sought for safety in +another element; while on the extreme verge of the horizon might be +seen the fishermen’s boats, white and graceful as the sea-gull, or the +merchant vessels bound for Corsica or Spain. + +But notwithstanding the serene sky, the gracefully formed boats, and +the golden light in which the whole scene was bathed, the Count of +Monte Cristo, wrapped in his cloak, could think only of this terrible +voyage, the details of which were one by one recalled to his memory. +The solitary light burning at the Catalans; that first sight of the +Château d’If, which told him whither they were leading him; the +struggle with the gendarmes when he wished to throw himself overboard; +his despair when he found himself vanquished, and the sensation when +the muzzle of the carbine touched his forehead—all these were brought +before him in vivid and frightful reality. + +Like the streams which the heat of the summer has dried up, and which +after the autumnal storms gradually begin oozing drop by drop, so did +the count feel his heart gradually fill with the bitterness which +formerly nearly overwhelmed Edmond Dantès. Clear sky, swift-flitting +boats, and brilliant sunshine disappeared; the heavens were hung with +black, and the gigantic structure of the Château d’If seemed like the +phantom of a mortal enemy. As they reached the shore, the count +instinctively shrunk to the extreme end of the boat, and the owner was +obliged to call out, in his sweetest tone of voice: + +“Sir, we are at the landing.” + +Monte Cristo remembered that on that very spot, on the same rock, he +had been violently dragged by the guards, who forced him to ascend the +slope at the points of their bayonets. The journey had seemed very long +to Dantès, but Monte Cristo found it equally short. Each stroke of the +oar seemed to awaken a new throng of ideas, which sprang up with the +flying spray of the sea. + +50219m + + + +There had been no prisoners confined in the Château d’If since the +revolution of July; it was only inhabited by a guard, kept there for +the prevention of smuggling. A concierge waited at the door to exhibit +to visitors this monument of curiosity, once a scene of terror. + +The count inquired whether any of the ancient jailers were still there; +but they had all been pensioned, or had passed on to some other +employment. The concierge who attended him had only been there since +1830. He visited his own dungeon. He again beheld the dull light vainly +endeavoring to penetrate the narrow opening. His eyes rested upon the +spot where had stood his bed, since then removed, and behind the bed +the new stones indicated where the breach made by the Abbé Faria had +been. Monte Cristo felt his limbs tremble; he seated himself upon a log +of wood. + +“Are there any stories connected with this prison besides the one +relating to the poisoning of Mirabeau?” asked the count; “are there any +traditions respecting these dismal abodes,—in which it is difficult to +believe men can ever have imprisoned their fellow-creatures?” + +“Yes, sir; indeed, the jailer Antoine told me one connected with this +very dungeon.” + +Monte Cristo shuddered; Antoine had been his jailer. He had almost +forgotten his name and face, but at the mention of the name he recalled +his person as he used to see it, the face encircled by a beard, wearing +the brown jacket, the bunch of keys, the jingling of which he still +seemed to hear. The count turned around, and fancied he saw him in the +corridor, rendered still darker by the torch carried by the concierge. + +“Would you like to hear the story, sir?” + +“Yes; relate it,” said Monte Cristo, pressing his hand to his heart to +still its violent beatings; he felt afraid of hearing his own history. + +“This dungeon,” said the concierge, “was, it appears, some time ago +occupied by a very dangerous prisoner, the more so since he was full of +industry. Another person was confined in the Château at the same time, +but he was not wicked, he was only a poor mad priest.” + +“Ah, indeed?—mad!” repeated Monte Cristo; “and what was his mania?” + +“He offered millions to anyone who would set him at liberty.” + +Monte Cristo raised his eyes, but he could not see the heavens; there +was a stone veil between him and the firmament. He thought that there +had been no less thick a veil before the eyes of those to whom Faria +offered the treasures. + +“Could the prisoners see each other?” he asked. + +“Oh, no, sir, it was expressly forbidden; but they eluded the vigilance +of the guards, and made a passage from one dungeon to the other.” + +“And which of them made this passage?” + +“Oh, it must have been the young man, certainly, for he was strong and +industrious, while the abbé was aged and weak; besides, his mind was +too vacillating to allow him to carry out an idea.” + +“Blind fools!” murmured the count. + +“However, be that as it may, the young man made a tunnel, how or by +what means no one knows; but he made it, and there is the evidence yet +remaining of his work. Do you see it?” and the man held the torch to +the wall. + +50223m + + + +“Ah, yes; I see,” said the count, in a voice hoarse from emotion. + +“The result was that the two men communicated with one another; how +long they did so, nobody knows. One day the old man fell ill and died. +Now guess what the young one did?” + +“Tell me.” + +“He carried off the corpse, which he placed in his own bed with its +face to the wall; then he entered the empty dungeon, closed the +entrance, and slipped into the sack which had contained the dead body. +Did you ever hear of such an idea?” + +Monte Cristo closed his eyes, and seemed again to experience all the +sensations he had felt when the coarse canvas, yet moist with the cold +dews of death, had touched his face. + +The jailer continued: + +“Now this was his project. He fancied that they buried the dead at the +Château d’If, and imagining they would not expend much labor on the +grave of a prisoner, he calculated on raising the earth with his +shoulders, but unfortunately their arrangements at the Château +frustrated his projects. They never buried the dead; they merely +attached a heavy cannon-ball to the feet, and then threw them into the +sea. This is what was done. The young man was thrown from the top of +the rock; the corpse was found on the bed next day, and the whole truth +was guessed, for the men who performed the office then mentioned what +they had not dared to speak of before, that at the moment the corpse +was thrown into the deep, they heard a shriek, which was almost +immediately stifled by the water in which it disappeared.” + +The count breathed with difficulty; the cold drops ran down his +forehead, and his heart was full of anguish. + +“No,” he muttered, “the doubt I felt was but the commencement of +forgetfulness; but here the wound reopens, and the heart again thirsts +for vengeance. And the prisoner,” he continued aloud, “was he ever +heard of afterwards?” + +“Oh, no; of course not. You can understand that one of two things must +have happened; he must either have fallen flat, in which case the blow, +from a height of ninety feet, must have killed him instantly, or he +must have fallen upright, and then the weight would have dragged him to +the bottom, where he remained—poor fellow!” + +“Then you pity him?” said the count. + +“_Ma foi_, yes; though he was in his own element.” + +“What do you mean?” + +“The report was that he had been a naval officer, who had been confined +for plotting with the Bonapartists.” + +“Great is truth,” muttered the count, “fire cannot burn, nor water +drown it! Thus the poor sailor lives in the recollection of those who +narrate his history; his terrible story is recited in the +chimney-corner, and a shudder is felt at the description of his transit +through the air to be swallowed by the deep.” Then, the count added +aloud, “Was his name ever known?” + +“Oh, yes; but only as No. 34.” + +“Oh, Villefort, Villefort,” murmured the count, “this scene must often +have haunted thy sleepless hours!” + +“Do you wish to see anything more, sir?” said the concierge. + +“Yes, especially if you will show me the poor abbé’s room.” + +“Ah! No. 27.” + +“Yes; No. 27.” repeated the count, who seemed to hear the voice of the +abbé answering him in those very words through the wall when asked his +name. + +“Come, sir.” + +“Wait,” said Monte Cristo, “I wish to take one final glance around this +room.” + +“This is fortunate,” said the guide; “I have forgotten the other key.” + +“Go and fetch it.” + +“I will leave you the torch, sir.” + +“No, take it away; I can see in the dark.” + +“Why, you are like No. 34. They said he was so accustomed to darkness +that he could see a pin in the darkest corner of his dungeon.” + +“He spent fourteen years to arrive at that,” muttered the count. + +The guide carried away the torch. The count had spoken correctly. +Scarcely had a few seconds elapsed, ere he saw everything as distinctly +as by daylight. Then he looked around him, and really recognized his +dungeon. + +“Yes,” he said, “there is the stone upon which I used to sit; there is +the impression made by my shoulders on the wall; there is the mark of +my blood made when one day I dashed my head against the wall. Oh, those +figures, how well I remember them! I made them one day to calculate the +age of my father, that I might know whether I should find him still +living, and that of Mercédès, to know if I should find her still free. +After finishing that calculation, I had a minute’s hope. I did not +reckon upon hunger and infidelity!” and a bitter laugh escaped the +count. + +He saw in fancy the burial of his father, and the marriage of Mercédès. +On the other side of the dungeon he perceived an inscription, the white +letters of which were still visible on the green wall: + +“‘_Oh, God!_’” he read, “‘_preserve my memory!_’” + +“Oh, yes,” he cried, “that was my only prayer at last; I no longer +begged for liberty, but memory; I dreaded to become mad and forgetful. +Oh, God, thou hast preserved my memory; I thank thee, I thank thee!” + +At this moment the light of the torch was reflected on the wall; the +guide was coming; Monte Cristo went to meet him. + +“Follow me, sir;” and without ascending the stairs the guide conducted +him by a subterraneous passage to another entrance. There, again, Monte +Cristo was assailed by a multitude of thoughts. The first thing that +met his eye was the meridian, drawn by the abbé on the wall, by which +he calculated the time; then he saw the remains of the bed on which the +poor prisoner had died. The sight of this, instead of exciting the +anguish experienced by the count in the dungeon, filled his heart with +a soft and grateful sentiment, and tears fell from his eyes. + +“This is where the mad abbé was kept, sir, and that is where the young +man entered;” and the guide pointed to the opening, which had remained +unclosed. “From the appearance of the stone,” he continued, “a learned +gentleman discovered that the prisoners might have communicated +together for ten years. Poor things! Those must have been ten weary +years.” + +Dantès took some louis from his pocket, and gave them to the man who +had twice unconsciously pitied him. The guide took them, thinking them +merely a few pieces of little value; but the light of the torch +revealed their true worth. + +“Sir,” he said, “you have made a mistake; you have given me gold.” + +“I know it.” + +The concierge looked upon the count with surprise. + +“Sir,” he cried, scarcely able to believe his good fortune—“sir, I +cannot understand your generosity!” + +“Oh, it is very simple, my good fellow; I have been a sailor, and your +story touched me more than it would others.” + +“Then, sir, since you are so liberal, I ought to offer you something.” + +50227m + + + +“What have you to offer to me, my friend? Shells? Straw-work? Thank +you!” + +“No, sir, neither of those; something connected with this story.” + +“Really? What is it?” + +“Listen,” said the guide; “I said to myself, ‘Something is always left +in a cell inhabited by one prisoner for fifteen years,’ so I began to +sound the wall.” + +“Ah,” cried Monte Cristo, remembering the abbé’s two hiding-places. + +“After some search, I found that the floor gave a hollow sound near the +head of the bed, and at the hearth.” + +“Yes,” said the count, “yes.” + +“I raised the stones, and found——” + +“A rope-ladder and some tools?” + +“How do you know that?” asked the guide in astonishment. + +“I do not know—I only guess it, because that sort of thing is generally +found in prisoners’ cells.” + +“Yes, sir, a rope-ladder and tools.” + +“And have you them yet?” + +“No, sir; I sold them to visitors, who considered them great +curiosities; but I have still something left.” + +“What is it?” asked the count, impatiently. + +“A sort of book, written upon strips of cloth.” + +“Go and fetch it, my good fellow; and if it be what I hope, you will do +well.” + +“I will run for it, sir;” and the guide went out. + +Then the count knelt down by the side of the bed, which death had +converted into an altar. + +“Oh, second father,” he exclaimed, “thou who hast given me liberty, +knowledge, riches; thou who, like beings of a superior order to +ourselves, couldst understand the science of good and evil; if in the +depths of the tomb there still remain something within us which can +respond to the voice of those who are left on earth; if after death the +soul ever revisit the places where we have lived and suffered,—then, +noble heart, sublime soul, then I conjure thee by the paternal love +thou didst bear me, by the filial obedience I vowed to thee, grant me +some sign, some revelation! Remove from me the remains of doubt, which, +if it change not to conviction, must become remorse!” The count bowed +his head, and clasped his hands together. + +“Here, sir,” said a voice behind him. + +Monte Cristo shuddered, and arose. The concierge held out the strips of +cloth upon which the Abbé Faria had spread the riches of his mind. The +manuscript was the great work by the Abbé Faria upon the kingdoms of +Italy. The count seized it hastily, his eyes immediately fell upon the +epigraph, and he read: + +“Thou shalt tear out the dragons’ teeth, and shall trample the lions +under foot, saith the Lord.” + +“Ah,” he exclaimed, “here is my answer. Thanks, father, thanks.” And +feeling in his pocket, he took thence a small pocket-book, which +contained ten bank-notes, each of 1,000 francs. + +“Here,” he said, “take this pocket-book.” + +“Do you give it to me?” + +“Yes; but only on condition that you will not open it till I am gone;” +and placing in his breast the treasure he had just found, which was +more valuable to him than the richest jewel, he rushed out of the +corridor, and reaching his boat, cried, “To Marseilles!” + +Then, as he departed, he fixed his eyes upon the gloomy prison. + +“Woe,” he cried, “to those who confined me in that wretched prison; and +woe to those who forgot that I was there!” + +50229m + + + +As he repassed the Catalans, the count turned around and burying his +head in his cloak murmured the name of a woman. The victory was +complete; twice he had overcome his doubts. The name he pronounced, in +a voice of tenderness, amounting almost to love, was that of Haydée. + +On landing, the count turned towards the cemetery, where he felt sure +of finding Morrel. He, too, ten years ago, had piously sought out a +tomb, and sought it vainly. He, who returned to France with millions, +had been unable to find the grave of his father, who had perished from +hunger. Morrel had indeed placed a cross over the spot, but it had +fallen down and the grave-digger had burnt it, as he did all the old +wood in the churchyard. + +The worthy merchant had been more fortunate. Dying in the arms of his +children, he had been by them laid by the side of his wife, who had +preceded him in eternity by two years. Two large slabs of marble, on +which were inscribed their names, were placed on either side of a +little enclosure, railed in, and shaded by four cypress-trees. Morrel +was leaning against one of these, mechanically fixing his eyes on the +graves. His grief was so profound that he was nearly unconscious. + +50231m + + + +“Maximilian,” said the count, “you should not look on the graves, but +there;” and he pointed upwards. + +“The dead are everywhere,” said Morrel; “did you not yourself tell me +so as we left Paris?” + +“Maximilian,” said the count, “you asked me during the journey to allow +you to remain some days at Marseilles. Do you still wish to do so?” + +“I have no wishes, count; only I fancy I could pass the time less +painfully here than anywhere else.” + +“So much the better, for I must leave you; but I carry your word with +me, do I not?” + +“Ah, count, I shall forget it.” + +“No, you will not forget it, because you are a man of honor, Morrel, +because you have taken an oath, and are about to do so again.” + +“Oh, count, have pity upon me. I am so unhappy.” + +“I have known a man much more unfortunate than you, Morrel.” + +“Impossible!” + +“Alas,” said Monte Cristo, “it is the infirmity of our nature always to +believe ourselves much more unhappy than those who groan by our sides!” + +“What can be more wretched than the man who has lost all he loved and +desired in the world?” + +“Listen, Morrel, and pay attention to what I am about to tell you. I +knew a man who like you had fixed all his hopes of happiness upon a +woman. He was young, he had an old father whom he loved, a betrothed +bride whom he adored. He was about to marry her, when one of the +caprices of fate,—which would almost make us doubt the goodness of +Providence, if that Providence did not afterwards reveal itself by +proving that all is but a means of conducting to an end,—one of those +caprices deprived him of his mistress, of the future of which he had +dreamed (for in his blindness he forgot he could only read the +present), and cast him into a dungeon.” + +“Ah,” said Morrel, “one quits a dungeon in a week, a month, or a year.” + +“He remained there fourteen years, Morrel,” said the count, placing his +hand on the young man’s shoulder. Maximilian shuddered. + +“Fourteen years!” he muttered. + +“Fourteen years!” repeated the count. “During that time he had many +moments of despair. He also, Morrel, like you, considered himself the +unhappiest of men.” + +“Well?” asked Morrel. + +“Well, at the height of his despair God assisted him through human +means. At first, perhaps, he did not recognize the infinite mercy of +the Lord, but at last he took patience and waited. One day he +miraculously left the prison, transformed, rich, powerful. His first +cry was for his father; but that father was dead.” + +“My father, too, is dead,” said Morrel. + +“Yes; but your father died in your arms, happy, respected, rich, and +full of years; his father died poor, despairing, almost doubtful of +Providence; and when his son sought his grave ten years afterwards, his +tomb had disappeared, and no one could say, ‘There sleeps the father +you so well loved.’” + +“Oh!” exclaimed Morrel. + +“He was, then, a more unhappy son than you, Morrel, for he could not +even find his father’s grave.” + +“But then he had the woman he loved still remaining?” + +“You are deceived, Morrel, that woman——” + +“She was dead?” + +“Worse than that, she was faithless, and had married one of the +persecutors of her betrothed. You see, then, Morrel, that he was a more +unhappy lover than you.” + +“And has he found consolation?” + +“He has at least found peace.” + +“And does he ever expect to be happy?” + +“He hopes so, Maximilian.” + +The young man’s head fell on his breast. + +“You have my promise,” he said, after a minute’s pause, extending his +hand to Monte Cristo. “Only remember——” + +“On the 5th of October, Morrel, I shall expect you at the Island of +Monte Cristo. On the 4th a yacht will wait for you in the port of +Bastia, it will be called the _Eurus_. You will give your name to the +captain, who will bring you to me. It is understood—is it not?” + +“But, count, do you remember that the 5th of October——” + +“Child,” replied the count, “not to know the value of a man’s word! I +have told you twenty times that if you wish to die on that day, I will +assist you. Morrel, farewell!” + +“Do you leave me?” + +“Yes; I have business in Italy. I leave you alone in your struggle with +misfortune—alone with that strong-winged eagle which God sends to bear +aloft the elect to his feet. The story of Ganymede, Maximilian, is not +a fable, but an allegory.” + +“When do you leave?” + +“Immediately; the steamer waits, and in an hour I shall be far from +you. Will you accompany me to the harbor, Maximilian?” + +50233m + + + +“I am entirely yours, count.” + +Morrel accompanied the count to the harbor. The white steam was +ascending like a plume of feathers from the black chimney. The steamer +soon disappeared, and in an hour afterwards, as the count had said, was +scarcely distinguishable in the horizon amidst the fogs of the night. + + + + Chapter 114. Peppino + +At the same time that the steamer disappeared behind Cape Morgiou, a +man travelling post on the road from Florence to Rome had just passed +the little town of Aquapendente. He was travelling fast enough to cover +a great deal of ground without exciting suspicion. This man was dressed +in a greatcoat, or rather a surtout, a little worse for the journey, +but which exhibited the ribbon of the Legion of Honor still fresh and +brilliant, a decoration which also ornamented the under coat. He might +be recognized, not only by these signs, but also from the accent with +which he spoke to the postilion, as a Frenchman. + +Another proof that he was a native of the universal country was +apparent in the fact of his knowing no other Italian words than the +terms used in music, and which like the “goddam” of Figaro, served all +possible linguistic requirements. “_Allegro!_” he called out to the +postilions at every ascent. “_Moderato!_” he cried as they descended. +And heaven knows there are hills enough between Rome and Florence by +the way of Aquapendente! These two words greatly amused the men to whom +they were addressed. On reaching La Storta, the point from whence Rome +is first visible, the traveller evinced none of the enthusiastic +curiosity which usually leads strangers to stand up and endeavor to +catch sight of the dome of Saint Peter’s, which may be seen long before +any other object is distinguishable. No, he merely drew a pocketbook +from his pocket, and took from it a paper folded in four, and after +having examined it in a manner almost reverential, he said: + +“Good! I have it still!” + +50235m + + + +The carriage entered by the Porta del Popolo, turned to the left, and +stopped at the Hôtel d’Espagne. Old Pastrini, our former acquaintance, +received the traveller at the door, hat in hand. The traveller +alighted, ordered a good dinner, and inquired the address of the house +of Thomson & French, which was immediately given to him, as it was one +of the most celebrated in Rome. It was situated in the Via dei Banchi, +near St. Peter’s. + +In Rome, as everywhere else, the arrival of a post-chaise is an event. +Ten young descendants of Marius and the Gracchi, barefooted and out at +elbows, with one hand resting on the hip and the other gracefully +curved above the head, stared at the traveller, the post-chaise, and +the horses; to these were added about fifty little vagabonds from the +Papal States, who earned a pittance by diving into the Tiber at high +water from the bridge of St. Angelo. Now, as these street Arabs of +Rome, more fortunate than those of Paris, understand every language, +more especially the French, they heard the traveller order an +apartment, a dinner, and finally inquire the way to the house of +Thomson & French. + +The result was that when the new-comer left the hotel with the +_cicerone_, a man detached himself from the rest of the idlers, and +without having been seen by the traveller, and appearing to excite no +attention from the guide, followed the stranger with as much skill as a +Parisian police agent would have used. + +The Frenchman had been so impatient to reach the house of Thomson & +French that he would not wait for the horses to be harnessed, but left +word for the carriage to overtake him on the road, or to wait for him +at the bankers’ door. He reached it before the carriage arrived. The +Frenchman entered, leaving in the anteroom his guide, who immediately +entered into conversation with two or three of the industrious idlers +who are always to be found in Rome at the doors of banking-houses, +churches, museums, or theatres. With the Frenchman, the man who had +followed him entered too; the Frenchman knocked at the inner door, and +entered the first room; his shadow did the same. + +“Messrs. Thomson & French?” inquired the stranger. + +An attendant arose at a sign from a confidential clerk at the first +desk. + +“Whom shall I announce?” said the attendant. + +“Baron Danglars.” + +“Follow me,” said the man. + +A door opened, through which the attendant and the baron disappeared. +The man who had followed Danglars sat down on a bench. The clerk +continued to write for the next five minutes; the man preserved +profound silence, and remained perfectly motionless. Then the pen of +the clerk ceased to move over the paper; he raised his head, and +appearing to be perfectly sure of privacy: + +“Ah, ha,” he said, “here you are, Peppino!” + +“Yes,” was the laconic reply. “You have found out that there is +something worth having about this large gentleman?” + +“There is no great merit due to me, for we were informed of it.” + +“You know his business here, then.” + +“_Pardieu_, he has come to draw, but I don’t know how much!” + +“You will know presently, my friend.” + +“Very well, only do not give me false information as you did the other +day.” + +“What do you mean?—of whom do you speak? Was it the Englishman who +carried off 3,000 crowns from here the other day?” + +50237m + + + +“No; he really had 3,000 crowns, and we found them. I mean the Russian +prince, who you said had 30,000 livres, and we only found 22,000.” + +“You must have searched badly.” + +“Luigi Vampa himself searched.” + +“In that case he must either have paid his debts——” + +“A Russian do that?” + +“Or spent the money?” + +“Possibly, after all.” + +“Certainly. But you must let me make my observations, or the Frenchman +will transact his business without my knowing the sum.” + +Peppino nodded, and taking a rosary from his pocket began to mutter a +few prayers while the clerk disappeared through the same door by which +Danglars and the attendant had gone out. At the expiration of ten +minutes the clerk returned with a beaming countenance. + +“Well?” asked Peppino of his friend. + +“Joy, joy—the sum is large!” + +“Five or six millions, is it not?” + +“Yes, you know the amount.” + +“On the receipt of the Count of Monte Cristo?” + +“Why, how came you to be so well acquainted with all this?” + +“I told you we were informed beforehand.” + +“Then why do you apply to me?” + +“That I may be sure I have the right man.” + +“Yes, it is indeed he. Five millions—a pretty sum, eh, Peppino?” + +“Hush—here is our man!” The clerk seized his pen, and Peppino his +beads; one was writing and the other praying when the door opened. +Danglars looked radiant with joy; the banker accompanied him to the +door. Peppino followed Danglars. + +According to the arrangements, the carriage was waiting at the door. +The guide held the door open. Guides are useful people, who will turn +their hands to anything. Danglars leaped into the carriage like a young +man of twenty. The _cicerone_ reclosed the door, and sprang up by the +side of the coachman. Peppino mounted the seat behind. + +“Will your excellency visit Saint Peter’s?” asked the _cicerone_. + +“I did not come to Rome to see,” said Danglars aloud; then he added +softly, with an avaricious smile, “I came to touch!” and he rapped his +pocket-book, in which he had just placed a letter. + +“Then your excellency is going——” + +“To the hotel.” + +“Casa Pastrini!” said the _cicerone_ to the coachman, and the carriage +drove rapidly on. + +50239m + + + +Ten minutes afterwards the baron entered his apartment, and Peppino +stationed himself on the bench outside the door of the hotel, after +having whispered something in the ear of one of the descendants of +Marius and the Gracchi whom we noticed at the beginning of the chapter, +who immediately ran down the road leading to the Capitol at his fullest +speed. Danglars was tired and sleepy; he therefore went to bed, placing +his pocketbook under his pillow. Peppino had a little spare time, so he +had a game of _morra_ with the facchini, lost three crowns, and then to +console himself drank a bottle of Orvieto. + +The next morning Danglars awoke late, though he went to bed so early; +he had not slept well for five or six nights, even if he had slept at +all. He breakfasted heartily, and caring little, as he said, for the +beauties of the Eternal City, ordered post-horses at noon. But Danglars +had not reckoned upon the formalities of the police and the idleness of +the posting-master. The horses only arrived at two o’clock, and the +_cicerone_ did not bring the passport till three. + +All these preparations had collected a number of idlers round the door +of Signor Pastrini’s; the descendants of Marius and the Gracchi were +also not wanting. The baron walked triumphantly through the crowd, who +for the sake of gain styled him “your excellency.” As Danglars had +hitherto contented himself with being called a baron, he felt rather +flattered at the title of excellency, and distributed a dozen silver +coins among the beggars, who were ready, for twelve more, to call him +“your highness.” + +“Which road?” asked the postilion in Italian. + +“The Ancona road,” replied the baron. Signor Pastrini interpreted the +question and answer, and the horses galloped off. + +Danglars intended travelling to Venice, where he would receive one part +of his fortune, and then proceeding to Vienna, where he would find the +rest, he meant to take up his residence in the latter town, which he +had been told was a city of pleasure. + +He had scarcely advanced three leagues out of Rome when daylight began +to disappear. Danglars had not intended starting so late, or he would +have remained; he put his head out and asked the postilion how long it +would be before they reached the next town. “_Non capisco_” (do not +understand), was the reply. Danglars bent his head, which he meant to +imply, “Very well.” The carriage again moved on. + +“I will stop at the first posting-house,” said Danglars to himself. + +He still felt the same self-satisfaction which he had experienced the +previous evening, and which had procured him so good a night’s rest. He +was luxuriously stretched in a good English calash, with double +springs; he was drawn by four good horses, at full gallop; he knew the +relay to be at a distance of seven leagues. What subject of meditation +could present itself to the banker, so fortunately become bankrupt? + +Danglars thought for ten minutes about his wife in Paris; another ten +minutes about his daughter travelling with Mademoiselle d’Armilly; the +same period was given to his creditors, and the manner in which he +intended spending their money; and then, having no subject left for +contemplation, he shut his eyes, and fell asleep. Now and then a jolt +more violent than the rest caused him to open his eyes; then he felt +that he was still being carried with great rapidity over the same +country, thickly strewn with broken aqueducts, which looked like +granite giants petrified while running a race. But the night was cold, +dull, and rainy, and it was much more pleasant for a traveller to +remain in the warm carriage than to put his head out of the window to +make inquiries of a postilion whose only answer was “_Non capisco_.” + +50241m + + + +Danglars therefore continued to sleep, saying to himself that he would +be sure to awake at the posting-house. The carriage stopped. Danglars +fancied that they had reached the long-desired point; he opened his +eyes and looked through the window, expecting to find himself in the +midst of some town, or at least village; but he saw nothing except what +seemed like a ruin, where three or four men went and came like shadows. + +Danglars waited a moment, expecting the postilion to come and demand +payment with the termination of his stage. He intended taking advantage +of the opportunity to make fresh inquiries of the new conductor; but +the horses were unharnessed, and others put in their places, without +anyone claiming money from the traveller. Danglars, astonished, opened +the door; but a strong hand pushed him back, and the carriage rolled +on. The baron was completely roused. + +“Eh?” he said to the postilion, “eh, _mio caro?_” + +This was another little piece of Italian the baron had learned from +hearing his daughter sing Italian duets with Cavalcanti. But _mio caro_ +did not reply. Danglars then opened the window. + +“Come, my friend,” he said, thrusting his hand through the opening, +“where are we going?” + +“_Dentro la testa!_” answered a solemn and imperious voice, accompanied +by a menacing gesture. + +Danglars thought _dentro la testa_ meant, “Put in your head!” He was +making rapid progress in Italian. He obeyed, not without some +uneasiness, which, momentarily increasing, caused his mind, instead of +being as unoccupied as it was when he began his journey, to fill with +ideas which were very likely to keep a traveller awake, more especially +one in such a situation as Danglars. His eyes acquired that quality +which in the first moment of strong emotion enables them to see +distinctly, and which afterwards fails from being too much taxed. +Before we are alarmed, we see correctly; when we are alarmed, we see +double; and when we have been alarmed, we see nothing but trouble. +Danglars observed a man in a cloak galloping at the right hand of the +carriage. + +“Some gendarme!” he exclaimed. “Can I have been intercepted by French +telegrams to the pontifical authorities?” + +He resolved to end his anxiety. “Where are you taking me?” he asked. + +“_Dentro la testa_,” replied the same voice, with the same menacing +accent. + +Danglars turned to the left; another man on horseback was galloping on +that side. + +“Decidedly,” said Danglars, with the perspiration on his forehead, “I +must be under arrest.” And he threw himself back in the calash, not +this time to sleep, but to think. + +Directly afterwards the moon rose. He then saw the great aqueducts, +those stone phantoms which he had before remarked, only then they were +on the right hand, now they were on the left. He understood that they +had described a circle, and were bringing him back to Rome. + +“Oh, unfortunate!” he cried, “they must have obtained my arrest.” + +The carriage continued to roll on with frightful speed. An hour of +terror elapsed, for every spot they passed showed that they were on the +road back. At length he saw a dark mass, against which it seemed as if +the carriage was about to dash; but the vehicle turned to one side, +leaving the barrier behind and Danglars saw that it was one of the +ramparts encircling Rome. + +50243m + + + +“_Mon dieu!_” cried Danglars, “we are not returning to Rome; then it is +not justice which is pursuing me! Gracious heavens; another idea +presents itself—what if they should be——” + +His hair stood on end. He remembered those interesting stories, so +little believed in Paris, respecting Roman bandits; he remembered the +adventures that Albert de Morcerf had related when it was intended that +he should marry Mademoiselle Eugénie. “They are robbers, perhaps,” he +muttered. + +Just then the carriage rolled on something harder than gravel road. +Danglars hazarded a look on both sides of the road, and perceived +monuments of a singular form, and his mind now recalled all the details +Morcerf had related, and comparing them with his own situation, he felt +sure that he must be on the Appian Way. On the left, in a sort of +valley, he perceived a circular excavation. It was Caracalla’s circus. +On a word from the man who rode at the side of the carriage, it +stopped. At the same time the door was opened. “_Scendi!_” exclaimed a +commanding voice. + +Danglars instantly descended; although he did not yet speak Italian, he +understood it very well. More dead than alive, he looked around him. +Four men surrounded him, besides the postilion. + +“_Di quà_,” said one of the men, descending a little path leading out +of the Appian Way. Danglars followed his guide without opposition, and +had no occasion to turn around to see whether the three others were +following him. Still it appeared as though they were stationed at equal +distances from one another, like sentinels. After walking for about ten +minutes, during which Danglars did not exchange a single word with his +guide, he found himself between a hillock and a clump of high weeds; +three men, standing silent, formed a triangle, of which he was the +centre. He wished to speak, but his tongue refused to move. + +“_Avanti!_” said the same sharp and imperative voice. + +This time Danglars had double reason to understand, for if the word and +gesture had not explained the speaker’s meaning, it was clearly +expressed by the man walking behind him, who pushed him so rudely that +he struck against the guide. This guide was our friend Peppino, who +dashed into the thicket of high weeds, through a path which none but +lizards or polecats could have imagined to be an open road. + +Peppino stopped before a rock overhung by thick hedges; the rock, half +open, afforded a passage to the young man, who disappeared like the +evil spirits in the fairy tales. The voice and gesture of the man who +followed Danglars ordered him to do the same. There was no longer any +doubt, the bankrupt was in the hands of Roman banditti. Danglars +acquitted himself like a man placed between two dangerous positions, +and who is rendered brave by fear. Notwithstanding his large stomach, +certainly not intended to penetrate the fissures of the Campagna, he +slid down like Peppino, and closing his eyes fell upon his feet. As he +touched the ground, he opened his eyes. + +50245m + + + +The path was wide, but dark. Peppino, who cared little for being +recognized now that he was in his own territories, struck a light and +lit a torch. Two other men descended after Danglars forming the +rearguard, and pushing Danglars whenever he happened to stop, they came +by a gentle declivity to the intersection of two corridors. The walls +were hollowed out in sepulchres, one above the other, and which seemed +in contrast with the white stones to open their large dark eyes, like +those which we see on the faces of the dead. A sentinel struck the +rings of his carbine against his left hand. + +“Who comes there?” he cried. + +“A friend, a friend!” said Peppino; “but where is the captain?” + +“There,” said the sentinel, pointing over his shoulder to a spacious +crypt, hollowed out of the rock, the lights from which shone into the +passage through the large arched openings. + +“Fine spoil, captain, fine spoil!” said Peppino in Italian, and taking +Danglars by the collar of his coat he dragged him to an opening +resembling a door, through which they entered the apartment which the +captain appeared to have made his dwelling-place. + +“Is this the man?” asked the captain, who was attentively reading +Plutarch’s _Life of Alexander_. + +“Himself, captain—himself.” + +“Very well, show him to me.” + +At this rather impertinent order, Peppino raised his torch to the face +of Danglars, who hastily withdrew that he might not have his eyelashes +burnt. His agitated features presented the appearance of pale and +hideous terror. + +“The man is tired,” said the captain, “conduct him to his bed.” + +“Oh,” murmured Danglars, “that bed is probably one of the coffins +hollowed in the wall, and the sleep I shall enjoy will be death from +one of the poniards I see glistening in the darkness.” + +From their beds of dried leaves or wolf-skins at the back of the +chamber now arose the companions of the man who had been found by +Albert de Morcerf reading _Cæsar’s Commentaries_, and by Danglars +studying the _Life of Alexander_. The banker uttered a groan and +followed his guide; he neither supplicated nor exclaimed. He no longer +possessed strength, will, power, or feeling; he followed where they led +him. At length he found himself at the foot of a staircase, and he +mechanically lifted his foot five or six times. Then a low door was +opened before him, and bending his head to avoid striking his forehead +he entered a small room cut out of the rock. The cell was clean, though +empty, and dry, though situated at an immeasurable distance under the +earth. A bed of dried grass covered with goat-skins was placed in one +corner. Danglars brightened up on beholding it, fancying that it gave +some promise of safety. + +“Oh, God be praised,” he said; “it is a real bed!” + +This was the second time within the hour that he had invoked the name +of God. He had not done so for ten years before. + +“_Ecco!_” said the guide, and pushing Danglars into the cell, he closed +the door upon him. + +A bolt grated and Danglars was a prisoner. If there had been no bolt, +it would have been impossible for him to pass through the midst of the +garrison who held the catacombs of St. Sebastian, encamped round a +master whom our readers must have recognized as the famous Luigi Vampa. + +Danglars, too, had recognized the bandit, whose existence he would not +believe when Albert de Morcerf mentioned him in Paris; and not only did +he recognize him, but the cell in which Albert had been confined, and +which was probably kept for the accommodation of strangers. These +recollections were dwelt upon with some pleasure by Danglars, and +restored him to some degree of tranquillity. Since the bandits had not +despatched him at once, he felt that they would not kill him at all. +They had arrested him for the purpose of robbery, and as he had only a +few louis about him, he doubted not he would be ransomed. + +He remembered that Morcerf had been taxed at 4,000 crowns, and as he +considered himself of much greater importance than Morcerf he fixed his +own price at 8,000 crowns. Eight thousand crowns amounted to 48,000 +livres; he would then have about 5,050,000 francs left. With this sum +he could manage to keep out of difficulties. Therefore, tolerably +secure in being able to extricate himself from his position, provided +he were not rated at the unreasonable sum of 5,050,000 francs, he +stretched himself on his bed, and after turning over two or three +times, fell asleep with the tranquillity of the hero whose life Luigi +Vampa was studying. + + + + Chapter 115. Luigi Vampa’s Bill of Fare + +We awake from every sleep except the one dreaded by Danglars. He awoke. +To a Parisian accustomed to silken curtains, walls hung with velvet +drapery, and the soft perfume of burning wood, the white smoke of which +diffuses itself in graceful curves around the room, the appearance of +the whitewashed cell which greeted his eyes on awakening seemed like +the continuation of some disagreeable dream. But in such a situation a +single moment suffices to change the strongest doubt into certainty. + +“Yes, yes,” he murmured, “I am in the hands of the brigands of whom +Albert de Morcerf spoke.” His first idea was to breathe, that he might +know whether he was wounded. He borrowed this from _Don Quixote_, the +only book he had ever read, but which he still slightly remembered. + +“No,” he cried, “they have not wounded, but perhaps they have robbed +me!” and he thrust his hands into his pockets. They were untouched; the +hundred louis he had reserved for his journey from Rome to Venice were +in his trousers pocket, and in that of his greatcoat he found the +little note-case containing his letter of credit for 5,050,000 francs. + +“Singular bandits!” he exclaimed; “they have left me my purse and +pocket-book. As I was saying last night, they intend me to be ransomed. +Hello, here is my watch! Let me see what time it is.” + +Danglars’ watch, one of Breguet’s repeaters, which he had carefully +wound up on the previous night, struck half past five. Without this, +Danglars would have been quite ignorant of the time, for daylight did +not reach his cell. Should he demand an explanation from the bandits, +or should he wait patiently for them to propose it? The last +alternative seemed the most prudent, so he waited until twelve o’clock. +During all this time a sentinel, who had been relieved at eight +o’clock, had been watching his door. + +50249m + + + +Danglars suddenly felt a strong inclination to see the person who kept +watch over him. He had noticed that a few rays, not of daylight, but +from a lamp, penetrated through the ill-joined planks of the door; he +approached just as the brigand was refreshing himself with a mouthful +of brandy, which, owing to the leathern bottle containing it, sent +forth an odor which was extremely unpleasant to Danglars. “Faugh!” he +exclaimed, retreating to the farther corner of his cell. + +At twelve this man was replaced by another functionary, and Danglars, +wishing to catch sight of his new guardian, approached the door again. + +He was an athletic, gigantic bandit, with large eyes, thick lips, and a +flat nose; his red hair fell in dishevelled masses like snakes around +his shoulders. + +“Ah, ha,” cried Danglars, “this fellow is more like an ogre than +anything else; however, I am rather too old and tough to be very good +eating!” + +We see that Danglars was collected enough to jest; at the same time, as +though to disprove the ogreish propensities, the man took some black +bread, cheese, and onions from his wallet, which he began devouring +voraciously. + +“May I be hanged,” said Danglars, glancing at the bandit’s dinner +through the crevices of the door,—“may I be hanged if I can understand +how people can eat such filth!” and he withdrew to seat himself upon +his goat-skin, which reminded him of the smell of the brandy. + +But the mysteries of nature are incomprehensible, and there are certain +invitations contained in even the coarsest food which appeal very +irresistibly to a fasting stomach. Danglars felt his own not to be very +well supplied just then, and gradually the man appeared less ugly, the +bread less black, and the cheese more fresh, while those dreadful +vulgar onions recalled to his mind certain sauces and side-dishes, +which his cook prepared in a very superior manner whenever he said, +“Monsieur Deniseau, let me have a nice little fricassee today.” He got +up and knocked on the door; the bandit raised his head. Danglars knew +that he was heard, so he redoubled his blows. + +“_Che cosa?_” asked the bandit. + +“Come, come,” said Danglars, tapping his fingers against the door, “I +think it is quite time to think of giving me something to eat!” + +But whether he did not understand him, or whether he had received no +orders respecting the nourishment of Danglars, the giant, without +answering, went on with his dinner. Danglars’ feelings were hurt, and +not wishing to put himself under obligations to the brute, the banker +threw himself down again on his goat-skin and did not breathe another +word. + +Four hours passed by and the giant was replaced by another bandit. +Danglars, who really began to experience sundry gnawings at the +stomach, arose softly, again applied his eye to the crack of the door, +and recognized the intelligent countenance of his guide. It was, +indeed, Peppino who was preparing to mount guard as comfortably as +possible by seating himself opposite to the door, and placing between +his legs an earthen pan, containing chick-peas stewed with bacon. Near +the pan he also placed a pretty little basket of Villetri grapes and a +flask of Orvieto. Peppino was decidedly an epicure. Danglars watched +these preparations and his mouth watered. + +“Come,” he said to himself, “let me try if he will be more tractable +than the other;” and he tapped gently at the door. + +“_On y va_,” (coming) exclaimed Peppino, who from frequenting the house +of Signor Pastrini understood French perfectly in all its idioms. + +Danglars immediately recognized him as the man who had called out in +such a furious manner, “Put in your head!” But this was not the time +for recrimination, so he assumed his most agreeable manner and said +with a gracious smile: + +“Excuse me, sir, but are they not going to give me any dinner?” + +“Does your excellency happen to be hungry?” + +“Happen to be hungry,—that’s pretty good, when I haven’t eaten for +twenty-four hours!” muttered Danglars. Then he added aloud, “Yes, sir, +I am hungry—very hungry.” + +“And your excellency wants something to eat?” + +“At once, if possible” + +“Nothing easier,” said Peppino. “Here you can get anything you want; by +paying for it, of course, as among honest folk.” + +“Of course!” cried Danglars. “Although, in justice, the people who +arrest and imprison you, ought, at least, to feed you.” + +“That is not the custom, excellency,” said Peppino. + +“A bad reason,” replied Danglars, who reckoned on conciliating his +keeper; “but I am content. Let me have some dinner!” + +“At once! What would your excellency like?” + +And Peppino placed his pan on the ground, so that the steam rose +directly under the nostrils of Danglars. “Give your orders.” + +“Have you kitchens here?” + +“Kitchens?—of course—complete ones.” + +“And cooks?” + +“Excellent!” + +“Well, a fowl, fish, game,—it signifies little, so that I eat.” + +“As your excellency pleases. You mentioned a fowl, I think?” + +“Yes, a fowl.” + +Peppino, turning around, shouted, “A fowl for his excellency!” His +voice yet echoed in the archway when a handsome, graceful, and +half-naked young man appeared, bearing a fowl in a silver dish on his +head, without the assistance of his hands. + +“I could almost believe myself at the Café de Paris,” murmured +Danglars. + +“Here, your excellency,” said Peppino, taking the fowl from the young +bandit and placing it on the worm-eaten table, which with the stool and +the goat-skin bed formed the entire furniture of the cell. Danglars +asked for a knife and fork. + +“Here, excellency,” said Peppino, offering him a little blunt knife and +a boxwood fork. Danglars took the knife in one hand and the fork in the +other, and was about to cut up the fowl. + +“Pardon me, excellency,” said Peppino, placing his hand on the banker’s +shoulder; “people pay here before they eat. They might not be +satisfied, and——” + +“Ah, ha,” thought Danglars, “this is not so much like Paris, except +that I shall probably be skinned! Never mind, I’ll fix that all right. +I have always heard how cheap poultry is in Italy; I should think a +fowl is worth about twelve sous at Rome.—There,” he said, throwing a +louis down. + +Peppino picked up the louis, and Danglars again prepared to carve the +fowl. + +“Stay a moment, your excellency,” said Peppino, rising; “you still owe +me something.” + +“I said they would skin me,” thought Danglars; but resolving to resist +the extortion, he said, “Come, how much do I owe you for this fowl?” + +“Your excellency has given me a louis on account.” + +“A louis on account for a fowl?” + +“Certainly; and your excellency now owes me 4,999 louis.” + +Danglars opened his enormous eyes on hearing this gigantic joke. + +“Very droll,” he muttered, “very droll indeed,” and he again began to +carve the fowl, when Peppino stopped the baron’s right hand with his +left, and held out his other hand. + +“Come, now,” he said. + +“Is it not a joke?” said Danglars. + +“We never joke,” replied Peppino, solemn as a Quaker. + +“What! A hundred thousand francs for a fowl!” + +“Ah, excellency, you cannot imagine how hard it is to rear fowls in +these horrible caves!” + +“Come, come, this is very droll—very amusing—I allow; but, as I am very +hungry, pray allow me to eat. Stay, here is another louis for you.” + +“Then that will make only 4,998 louis more,” said Peppino with the same +indifference. “I shall get them all in time.” + +“Oh, as for that,” said Danglars, angry at this prolongation of the +jest,—“as for that you won’t get them at all. Go to the devil! You do +not know with whom you have to deal!” + +50253m + + + +Peppino made a sign, and the youth hastily removed the fowl. Danglars +threw himself upon his goat-skin, and Peppino, reclosing the door, +again began eating his peas and bacon. Though Danglars could not see +Peppino, the noise of his teeth allowed no doubt as to his occupation. +He was certainly eating, and noisily too, like an ill-bred man. +“Brute!” said Danglars. Peppino pretended not to hear him, and without +even turning his head continued to eat slowly. Danglars’ stomach felt +so empty, that it seemed as if it would be impossible ever to fill it +again; still he had patience for another half-hour, which appeared to +him like a century. He again arose and went to the door. + +“Come, sir, do not keep me starving here any longer, but tell me what +they want.” + +“Nay, your excellency, it is you who should tell us what you want. Give +your orders, and we will execute them.” + +“Then open the door directly.” Peppino obeyed. “Now look here, I want +something to eat! To eat—do you hear?” + +“Are you hungry?” + +“Come, you understand me.” + +“What would your excellency like to eat?” + +“A piece of dry bread, since the fowls are beyond all price in this +accursed place.” + +“Bread? Very well. Holloa, there, some bread!” he called. The youth +brought a small loaf. “How much?” asked Danglars. + +“Four thousand nine hundred and ninety-eight louis,” said Peppino; “You +have paid two louis in advance.” + +50255m + + + +“What? One hundred thousand francs for a loaf?” + +“One hundred thousand francs,” repeated Peppino. + +“But you only asked 100,000 francs for a fowl!” + +“We have a fixed price for all our provisions. It signifies nothing +whether you eat much or little—whether you have ten dishes or one—it is +always the same price.” + +“What, still keeping up this silly jest? My dear fellow, it is +perfectly ridiculous—stupid! You had better tell me at once that you +intend starving me to death.” + +“Oh, dear, no, your excellency, unless you intend to commit suicide. +Pay and eat.” + +“And what am I to pay with, brute?” said Danglars, enraged. “Do you +suppose I carry 100,000 francs in my pocket?” + +“Your excellency has 5,050,000 francs in your pocket; that will be +fifty fowls at 100,000 francs apiece, and half a fowl for the 50,000.” + +Danglars shuddered. The bandage fell from his eyes, and he understood +the joke, which he did not think quite so stupid as he had done just +before. + +“Come,” he said, “if I pay you the 100,000 francs, will you be +satisfied, and allow me to eat at my ease?” + +“Certainly,” said Peppino. + +“But how can I pay them?” + +“Oh, nothing easier; you have an account open with Messrs. Thomson & +French, Via dei Banchi, Rome; give me a draft for 4,998 louis on these +gentlemen, and our banker shall take it.” + +Danglars thought it as well to comply with a good grace, so he took the +pen, ink, and paper Peppino offered him, wrote the draft, and signed +it. + +“Here,” he said, “here is a draft at sight.” + +“And here is your fowl.” + +Danglars sighed while he carved the fowl; it appeared very thin for the +price it had cost. As for Peppino, he examined the paper attentively, +put it into his pocket, and continued eating his peas. + + + + Chapter 116. The Pardon + +The next day Danglars was again hungry; certainly the air of that +dungeon was very provocative of appetite. The prisoner expected that he +would be at no expense that day, for like an economical man he had +concealed half of his fowl and a piece of the bread in the corner of +his cell. But he had no sooner eaten than he felt thirsty; he had +forgotten that. He struggled against his thirst till his tongue clave +to the roof of his mouth; then, no longer able to resist, he called +out. The sentinel opened the door; it was a new face. He thought it +would be better to transact business with his old acquaintance, so he +sent for Peppino. + +“Here I am, your excellency,” said Peppino, with an eagerness which +Danglars thought favorable to him. “What do you want?” + +“Something to drink.” + +“Your excellency knows that wine is beyond all price near Rome.” + +“Then give me water,” cried Danglars, endeavoring to parry the blow. + +“Oh, water is even more scarce than wine, your excellency,—there has +been such a drought.” + +“Come,” thought Danglars, “it is the same old story.” And while he +smiled as he attempted to regard the affair as a joke, he felt his +temples get moist with perspiration. + +“Come, my friend,” said Danglars, seeing that he made no impression on +Peppino, “you will not refuse me a glass of wine?” + +“I have already told you that we do not sell at retail.” + +“Well, then, let me have a bottle of the least expensive.” + +“They are all the same price.” + +“And what is that?” + +“Twenty-five thousand francs a bottle.” + +“Tell me,” cried Danglars, in a tone whose bitterness Harpagon30 alone +has been capable of revealing—“tell me that you wish to despoil me of +all; it will be sooner over than devouring me piecemeal.” + +“It is possible such may be the master’s intention.” + +“The master?—who is he?” + +“The person to whom you were conducted yesterday.” + +“Where is he?” + +“Here.” + +“Let me see him.” + +“Certainly.” + +And the next moment Luigi Vampa appeared before Danglars. + +“You sent for me?” he said to the prisoner. + +“Are you, sir, the chief of the people who brought me here?” + +“Yes, your excellency. What then?” + +“How much do you require for my ransom?” + +“Merely the 5,000,000 you have about you.” Danglars felt a dreadful +spasm dart through his heart. + +“But this is all I have left in the world,” he said, “out of an immense +fortune. If you deprive me of that, take away my life also.” + +“We are forbidden to shed your blood.” + +“And by whom are you forbidden?” + +“By him we obey.” + +“You do, then, obey someone?” + +“Yes, a chief.” + +“I thought you said you were the chief?” + +“So I am of these men; but there is another over me.” + +“And did your superior order you to treat me in this way?” + +“Yes.” + +“But my purse will be exhausted.” + +“Probably.” + +“Come,” said Danglars, “will you take a million?” + +“No.” + +“Two millions?—three?—four? Come, four? I will give them to you on +condition that you let me go.” + +“Why do you offer me 4,000,000 for what is worth 5,000,000? This is a +kind of usury, banker, that I do not understand.” + +“Take all, then—take all, I tell you, and kill me!” + +“Come, come, calm yourself. You will excite your blood, and that would +produce an appetite it would require a million a day to satisfy. Be +more economical.” + +“But when I have no more money left to pay you?” asked the infuriated +Danglars. + +“Then you must suffer hunger.” + +“Suffer hunger?” said Danglars, becoming pale. + +“Most likely,” replied Vampa coolly. + +“But you say you do not wish to kill me?” + +“No.” + +“And yet you will let me perish with hunger?” + +“Ah, that is a different thing.” + +“Well, then, wretches,” cried Danglars, “I will defy your infamous +calculations—I would rather die at once! You may torture, torment, kill +me, but you shall not have my signature again!” + +“As your excellency pleases,” said Vampa, as he left the cell. + +Danglars, raving, threw himself on the goat-skin. Who could these men +be? Who was the invisible chief? What could be his intentions towards +him? And why, when everyone else was allowed to be ransomed, might he +not also be? Oh, yes; certainly a speedy, violent death would be a fine +means of deceiving these remorseless enemies, who appeared to pursue +him with such incomprehensible vengeance. But to die? For the first +time in his life, Danglars contemplated death with a mixture of dread +and desire; the time had come when the implacable spectre, which exists +in the mind of every human creature, arrested his attention and called +out with every pulsation of his heart, “Thou shalt die!” + +Danglars resembled a timid animal excited in the chase; first it flies, +then despairs, and at last, by the very force of desperation, sometimes +succeeds in eluding its pursuers. Danglars meditated an escape; but the +walls were solid rock, a man was sitting reading at the only outlet to +the cell, and behind that man shapes armed with guns continually +passed. His resolution not to sign lasted two days, after which he +offered a million for some food. They sent him a magnificent supper, +and took his million. + +From this time the prisoner resolved to suffer no longer, but to have +everything he wanted. At the end of twelve days, after having made a +splendid dinner, he reckoned his accounts, and found that he had only +50,000 francs left. Then a strange reaction took place; he who had just +abandoned 5,000,000 endeavored to save the 50,000 francs he had left, +and sooner than give them up he resolved to enter again upon a life of +privation—he was deluded by the hopefulness that is a premonition of +madness. + +He, who for so long a time had forgotten God, began to think that +miracles were possible—that the accursed cavern might be discovered by +the officers of the Papal States, who would release him; that then he +would have 50,000 remaining, which would be sufficient to save him from +starvation; and finally he prayed that this sum might be preserved to +him, and as he prayed he wept. Three days passed thus, during which his +prayers were frequent, if not heartfelt. Sometimes he was delirious, +and fancied he saw an old man stretched on a pallet; he, also, was +dying of hunger. + +On the fourth, he was no longer a man, but a living corpse. He had +picked up every crumb that had been left from his former meals, and was +beginning to eat the matting which covered the floor of his cell. Then +he entreated Peppino, as he would a guardian angel, to give him food; +he offered him 1,000 francs for a mouthful of bread. But Peppino did +not answer. On the fifth day he dragged himself to the door of the +cell. + +“Are you not a Christian?” he said, falling on his knees. “Do you wish +to assassinate a man who, in the eyes of Heaven, is a brother? Oh, my +former friends, my former friends!” he murmured, and fell with his face +to the ground. Then rising in despair, he exclaimed, “The chief, the +chief!” + +“Here I am,” said Vampa, instantly appearing; “what do you want?” + +“Take my last gold,” muttered Danglars, holding out his pocket-book, +“and let me live here; I ask no more for liberty—I only ask to live!” + +“Then you suffer a great deal?” + +“Oh, yes, yes, cruelly!” + +“Still, there have been men who suffered more than you.” + +“I do not think so.” + +“Yes; those who have died of hunger.” + +Danglars thought of the old man whom, in his hours of delirium, he had +seen groaning on his bed. He struck his forehead on the ground and +groaned. “Yes,” he said, “there have been some who have suffered more +than I have, but then they must have been martyrs at least.” + +“Do you repent?” asked a deep, solemn voice, which caused Danglars’ +hair to stand on end. His feeble eyes endeavored to distinguish +objects, and behind the bandit he saw a man enveloped in a cloak, half +lost in the shadow of a stone column. + +“Of what must I repent?” stammered Danglars. + +“Of the evil you have done,” said the voice. + +“Oh, yes; oh, yes, I do indeed repent.” And he struck his breast with +his emaciated fist. + +“Then I forgive you,” said the man, dropping his cloak, and advancing +to the light. + +“The Count of Monte Cristo!” said Danglars, more pale from terror than +he had been just before from hunger and misery. + +“You are mistaken—I am not the Count of Monte Cristo.” + +“Then who are you?” + +50261m + + + +“I am he whom you sold and dishonored—I am he whose betrothed you +prostituted—I am he upon whom you trampled that you might raise +yourself to fortune—I am he whose father you condemned to die of +hunger—I am he whom you also condemned to starvation, and who yet +forgives you, because he hopes to be forgiven—I am Edmond Dantès!” + +Danglars uttered a cry, and fell prostrate. + +“Rise,” said the count, “your life is safe; the same good fortune has +not happened to your accomplices—one is mad, the other dead. Keep the +50,000 francs you have left—I give them to you. The 5,000,000 you stole +from the hospitals has been restored to them by an unknown hand. And +now eat and drink; I will entertain you tonight. Vampa, when this man +is satisfied, let him be free.” + +Danglars remained prostrate while the count withdrew; when he raised +his head he saw disappearing down the passage nothing but a shadow, +before which the bandits bowed. + +According to the count’s directions, Danglars was waited on by Vampa, +who brought him the best wine and fruits of Italy; then, having +conducted him to the road, and pointed to the post-chaise, left him +leaning against a tree. He remained there all night, not knowing where +he was. When daylight dawned he saw that he was near a stream; he was +thirsty, and dragged himself towards it. As he stooped down to drink, +he saw that his hair had become entirely white. + + + + Chapter 117. The Fifth of October + +It was about six o’clock in the evening; an opal-colored light, through +which an autumnal sun shed its golden rays, descended on the blue +ocean. The heat of the day had gradually decreased, and a light breeze +arose, seeming like the respiration of nature on awakening from the +burning siesta of the south. A delicious zephyr played along the coasts +of the Mediterranean, and wafted from shore to shore the sweet perfume +of plants, mingled with the fresh smell of the sea. + +A light yacht, chaste and elegant in its form, was gliding amidst the +first dews of night over the immense lake, extending from Gibraltar to +the Dardanelles, and from Tunis to Venice. The vessel resembled a swan +with its wings opened towards the wind, gliding on the water. It +advanced swiftly and gracefully, leaving behind it a glittering stretch +of foam. By degrees the sun disappeared behind the western horizon; but +as though to prove the truth of the fanciful ideas in heathen +mythology, its indiscreet rays reappeared on the summit of every wave, +as if the god of fire had just sunk upon the bosom of Amphitrite, who +in vain endeavored to hide her lover beneath her azure mantle. + +The yacht moved rapidly on, though there did not appear to be +sufficient wind to ruffle the curls on the head of a young girl. +Standing on the prow was a tall man, of a dark complexion, who saw with +dilating eyes that they were approaching a dark mass of land in the +shape of a cone, which rose from the midst of the waves like the hat of +a Catalan. + +“Is that Monte Cristo?” asked the traveller, to whose orders the yacht +was for the time submitted, in a melancholy voice. + +“Yes, your excellency,” said the captain, “we have reached it.” + +“We have reached it!” repeated the traveller in an accent of +indescribable sadness. + +Then he added, in a low tone, “Yes; that is the haven.” + +And then he again plunged into a train of thought, the character of +which was better revealed by a sad smile, than it would have been by +tears. A few minutes afterwards a flash of light, which was +extinguished instantly, was seen on the land, and the sound of firearms +reached the yacht. + +“Your excellency,” said the captain, “that was the land signal, will +you answer yourself?” + +“What signal?” + +The captain pointed towards the island, up the side of which ascended a +volume of smoke, increasing as it rose. + +“Ah, yes,” he said, as if awaking from a dream. “Give it to me.” + +The captain gave him a loaded carbine; the traveller slowly raised it, +and fired in the air. Ten minutes afterwards, the sails were furled, +and they cast anchor about a hundred fathoms from the little harbor. +The gig was already lowered, and in it were four oarsmen and a +coxswain. The traveller descended, and instead of sitting down at the +stern of the boat, which had been decorated with a blue carpet for his +accommodation, stood up with his arms crossed. The rowers waited, their +oars half lifted out of the water, like birds drying their wings. + +50265m + + + +“Give way,” said the traveller. The eight oars fell into the sea +simultaneously without splashing a drop of water, and the boat, +yielding to the impulsion, glided forward. In an instant they found +themselves in a little harbor, formed in a natural creek; the boat +grounded on the fine sand. + +“Will your excellency be so good as to mount the shoulders of two of +our men, they will carry you ashore?” The young man answered this +invitation with a gesture of indifference, and stepped out of the boat; +the sea immediately rose to his waist. + +“Ah, your excellency,” murmured the pilot, “you should not have done +so; our master will scold us for it.” + +The young man continued to advance, following the sailors, who chose a +firm footing. Thirty strides brought them to dry land; the young man +stamped on the ground to shake off the wet, and looked around for +someone to show him his road, for it was quite dark. Just as he turned, +a hand rested on his shoulder, and a voice which made him shudder +exclaimed: + +“Good-evening, Maximilian; you are punctual, thank you!” + +“Ah, is it you, count?” said the young man, in an almost joyful accent, +pressing Monte Cristo’s hand with both his own. + +“Yes; you see I am as exact as you are. But you are dripping, my dear +fellow; you must change your clothes, as Calypso said to Telemachus. +Come, I have a habitation prepared for you in which you will soon +forget fatigue and cold.” + +Monte Cristo perceived that the young man had turned around; indeed, +Morrel saw with surprise that the men who had brought him had left +without being paid, or uttering a word. Already the sound of their oars +might be heard as they returned to the yacht. + +“Oh, yes,” said the count, “you are looking for the sailors.” + +“Yes, I paid them nothing, and yet they are gone.” + +“Never mind that, Maximilian,” said Monte Cristo, smiling. “I have made +an agreement with the navy, that the access to my island shall be free +of all charge. I have made a bargain.” + +Morrel looked at the count with surprise. “Count,” he said, “you are +not the same here as in Paris.” + +“How so?” + +“Here you laugh.” The count’s brow became clouded. + +“You are right to recall me to myself, Maximilian,” he said; “I was +delighted to see you again, and forgot for the moment that all +happiness is fleeting.” + +“Oh, no, no, count,” cried Maximilian, seizing the count’s hands, “pray +laugh; be happy, and prove to me, by your indifference, that life is +endurable to sufferers. Oh, how charitable, kind, and good you are; you +affect this gayety to inspire me with courage.” + +“You are wrong, Morrel; I was really happy.” + +“Then you forget me, so much the better.” + +“How so?” + +“Yes; for as the gladiator said to the emperor, when he entered the +arena, ‘He who is about to die salutes you.’” + +“Then you are not consoled?” asked the count, surprised. + +“Oh,” exclaimed Morrel, with a glance full of bitter reproach, “do you +think it possible that I could be?” + +“Listen,” said the count. “Do you understand the meaning of my words? +You cannot take me for a commonplace man, a mere rattle, emitting a +vague and senseless noise. When I ask you if you are consoled, I speak +to you as a man for whom the human heart has no secrets. Well, Morrel, +let us both examine the depths of your heart. Do you still feel the +same feverish impatience of grief which made you start like a wounded +lion? Have you still that devouring thirst which can only be appeased +in the grave? Are you still actuated by the regret which drags the +living to the pursuit of death; or are you only suffering from the +prostration of fatigue and the weariness of hope deferred? Has the loss +of memory rendered it impossible for you to weep? Oh, my dear friend, +if this be the case,—if you can no longer weep, if your frozen heart be +dead, if you put all your trust in God, then, Maximilian, you are +consoled—do not complain.” + +“Count,” said Morrel, in a firm and at the same time soft voice, +“listen to me, as to a man whose thoughts are raised to heaven, though +he remains on earth; I come to die in the arms of a friend. Certainly, +there are people whom I love. I love my sister Julie,—I love her +husband Emmanuel; but I require a strong mind to smile on my last +moments. My sister would be bathed in tears and fainting; I could not +bear to see her suffer. Emmanuel would tear the weapon from my hand, +and alarm the house with his cries. You, count, who are more than +mortal, will, I am sure, lead me to death by a pleasant path, will you +not?” + +50267m + + + +“My friend,” said the count, “I have still one doubt,—are you weak +enough to pride yourself upon your sufferings?” + +“No, indeed,—I am calm,” said Morrel, giving his hand to the count; “my +pulse does not beat slower or faster than usual. No, I feel that I have +reached the goal, and I will go no farther. You told me to wait and +hope; do you know what you did, unfortunate adviser? I waited a month, +or rather I suffered for a month! I did hope (man is a poor wretched +creature), I did hope. What I cannot tell,—something wonderful, an +absurdity, a miracle,—of what nature he alone can tell who has mingled +with our reason that folly we call hope. Yes, I did wait—yes, I did +hope, count, and during this quarter of an hour we have been talking +together, you have unconsciously wounded, tortured my heart, for every +word you have uttered proved that there was no hope for me. Oh, count, +I shall sleep calmly, deliciously in the arms of death.” + +Morrel uttered these words with an energy which made the count shudder. + +“My friend,” continued Morrel, “you named the fifth of October as the +end of the period of waiting,—today is the fifth of October,” he took +out his watch, “it is now nine o’clock,—I have yet three hours to +live.” + +“Be it so,” said the count, “come.” Morrel mechanically followed the +count, and they had entered the grotto before he perceived it. He felt +a carpet under his feet, a door opened, perfumes surrounded him, and a +brilliant light dazzled his eyes. Morrel hesitated to advance; he +dreaded the enervating effect of all that he saw. Monte Cristo drew him +in gently. + +“Why should we not spend the last three hours remaining to us of life, +like those ancient Romans, who when condemned by Nero, their emperor +and heir, sat down at a table covered with flowers, and gently glided +into death, amid the perfume of heliotropes and roses?” + +Morrel smiled. “As you please,” he said; “death is always death,—that +is forgetfulness, repose, exclusion from life, and therefore from +grief.” + +He sat down, and Monte Cristo placed himself opposite to him. They were +in the marvellous dining-room before described, where the statues had +baskets on their heads always filled with fruits and flowers. Morrel +had looked carelessly around, and had probably noticed nothing. + +“Let us talk like men,” he said, looking at the count. + +“Go on!” + +“Count,” said Morrel, “you are the epitome of all human knowledge, and +you seem like a being descended from a wiser and more advanced world +than ours.” + +“There is something true in what you say,” said the count, with that +smile which made him so handsome; “I have descended from a planet +called grief.” + +50269m + + + +“I believe all you tell me without questioning its meaning; for +instance, you told me to live, and I did live; you told me to hope, and +I almost did so. I am almost inclined to ask you, as though you had +experienced death, ‘is it painful to die?’” + +Monte Cristo looked upon Morrel with indescribable tenderness. “Yes,” +he said, “yes, doubtless it is painful, if you violently break the +outer covering which obstinately begs for life. If you plunge a dagger +into your flesh, if you insinuate a bullet into your brain, which the +least shock disorders,—then certainly, you will suffer pain, and you +will repent quitting a life for a repose you have bought at so dear a +price.” + +“Yes; I know that there is a secret of luxury and pain in death, as +well as in life; the only thing is to understand it.” + +“You have spoken truly, Maximilian; according to the care we bestow +upon it, death is either a friend who rocks us gently as a nurse, or an +enemy who violently drags the soul from the body. Some day, when the +world is much older, and when mankind will be masters of all the +destructive powers in nature, to serve for the general good of +humanity; when mankind, as you were just saying, have discovered the +secrets of death, then that death will become as sweet and voluptuous +as a slumber in the arms of your beloved.” + +“And if you wished to die, you would choose this death, count?” + +“Yes.” + +Morrel extended his hand. “Now I understand,” he said, “why you had me +brought here to this desolate spot, in the midst of the ocean, to this +subterranean palace; it was because you loved me, was it not, count? It +was because you loved me well enough to give me one of those sweet +means of death of which we were speaking; a death without agony, a +death which allows me to fade away while pronouncing Valentine’s name +and pressing your hand.” + +“Yes, you have guessed rightly, Morrel,” said the count, “that is what +I intended.” + +“Thanks; the idea that tomorrow I shall no longer suffer, is sweet to +my heart.” + +“Do you then regret nothing?” + +“No,” replied Morrel. + +“Not even me?” asked the count with deep emotion. Morrel’s clear eye +was for the moment clouded, then it shone with unusual lustre, and a +large tear rolled down his cheek. + +“What,” said the count, “do you still regret anything in the world, and +yet die?” + +“Oh, I entreat you,” exclaimed Morrel in a low voice, “do not speak +another word, count; do not prolong my punishment.” + +The count fancied that he was yielding, and this belief revived the +horrible doubt that had overwhelmed him at the Château d’If. + +“I am endeavoring,” he thought, “to make this man happy; I look upon +this restitution as a weight thrown into the scale to balance the evil +I have wrought. Now, supposing I am deceived, supposing this man has +not been unhappy enough to merit happiness. Alas, what would become of +me who can only atone for evil by doing good?” + +50271m + + + +Then he said aloud: “Listen, Morrel, I see your grief is great, but +still you do not like to risk your soul.” Morrel smiled sadly. + +“Count,” he said, “I swear to you my soul is no longer my own.” + +“Maximilian, you know I have no relation in the world. I have +accustomed myself to regard you as my son: well, then, to save my son, +I will sacrifice my life, nay, even my fortune.” + +“What do you mean?” + +“I mean, that you wish to quit life because you do not understand all +the enjoyments which are the fruits of a large fortune. Morrel, I +possess nearly a hundred millions and I give them to you; with such a +fortune you can attain every wish. Are you ambitious? Every career is +open to you. Overturn the world, change its character, yield to mad +ideas, be even criminal—but live.” + +“Count, I have your word,” said Morrel coldly; then taking out his +watch, he added, “It is half-past eleven.” + +“Morrel, can you intend it in my house, under my very eyes?” + +“Then let me go,” said Maximilian, “or I shall think you did not love +me for my own sake, but for yours;” and he arose. + +“It is well,” said Monte Cristo whose countenance brightened at these +words; “you wish it—you are inflexible. Yes, as you said, you are +indeed wretched and a miracle alone can cure you. Sit down, Morrel, and +wait.” + +Morrel obeyed; the count arose, and unlocking a closet with a key +suspended from his gold chain, took from it a little silver casket, +beautifully carved and chased, the corners of which represented four +bending figures, similar to the Caryatides, the forms of women, symbols +of the angels aspiring to heaven. + +He placed the casket on the table; then opening it took out a little +golden box, the top of which flew open when touched by a secret spring. +This box contained an unctuous substance partly solid, of which it was +impossible to discover the color, owing to the reflection of the +polished gold, sapphires, rubies, emeralds, which ornamented the box. +It was a mixed mass of blue, red, and gold. + +The count took out a small quantity of this with a gilt spoon, and +offered it to Morrel, fixing a long steadfast glance upon him. It was +then observable that the substance was greenish. + +“This is what you asked for,” he said, “and what I promised to give +you.” + +“I thank you from the depths of my heart,” said the young man, taking +the spoon from the hands of Monte Cristo. The count took another spoon, +and again dipped it into the golden box. “What are you going to do, my +friend?” asked Morrel, arresting his hand. + +“Well, the fact is, Morrel, I was thinking that I too am weary of life, +and since an opportunity presents itself——” + +“Stay!” said the young man. “You who love, and are beloved; you, who +have faith and hope,—oh, do not follow my example. In your case it +would be a crime. Adieu, my noble and generous friend, adieu; I will go +and tell Valentine what you have done for me.” + +And slowly, though without any hesitation, only waiting to press the +count’s hand fervently, he swallowed the mysterious substance offered +by Monte Cristo. Then they were both silent. Ali, mute and attentive, +brought the pipes and coffee, and disappeared. By degrees, the light of +the lamps gradually faded in the hands of the marble statues which held +them, and the perfumes appeared less powerful to Morrel. Seated +opposite to him, Monte Cristo watched him in the shadow, and Morrel saw +nothing but the bright eyes of the count. An overpowering sadness took +possession of the young man, his hands relaxed their hold, the objects +in the room gradually lost their form and color, and his disturbed +vision seemed to perceive doors and curtains open in the wall. + +50273m + + + +“Friend,” he cried, “I feel that I am dying; thanks!” + +He made a last effort to extend his hand, but it fell powerless beside +him. Then it appeared to him that Monte Cristo smiled, not with the +strange and fearful expression which had sometimes revealed to him the +secrets of his heart, but with the benevolent kindness of a father for +a child. At the same time the count appeared to increase in stature, +his form, nearly double its usual height, stood out in relief against +the red tapestry, his black hair was thrown back, and he stood in the +attitude of an avenging angel. Morrel, overpowered, turned around in +the armchair; a delicious torpor permeated every vein. A change of +ideas presented themselves to his brain, like a new design on the +kaleidoscope. Enervated, prostrate, and breathless, he became +unconscious of outward objects; he seemed to be entering that vague +delirium preceding death. He wished once again to press the count’s +hand, but his own was immovable. He wished to articulate a last +farewell, but his tongue lay motionless and heavy in his throat, like a +stone at the mouth of a sepulchre. Involuntarily his languid eyes +closed, and still through his eyelashes a well-known form seemed to +move amid the obscurity with which he thought himself enveloped. + +The count had just opened a door. Immediately a brilliant light from +the next room, or rather from the palace adjoining, shone upon the room +in which he was gently gliding into his last sleep. Then he saw a woman +of marvellous beauty appear on the threshold of the door separating the +two rooms. Pale, and sweetly smiling, she looked like an angel of mercy +conjuring the angel of vengeance. + +“Is it heaven that opens before me?” thought the dying man; “that angel +resembles the one I have lost.” + +Monte Cristo pointed out Morrel to the young woman, who advanced +towards him with clasped hands and a smile upon her lips. + +“Valentine, Valentine!” he mentally ejaculated; but his lips uttered no +sound, and as though all his strength were centred in that internal +emotion, he sighed and closed his eyes. Valentine rushed towards him; +his lips again moved. + +“He is calling you,” said the count; “he to whom you have confided your +destiny—he from whom death would have separated you, calls you to him. +Happily, I vanquished death. Henceforth, Valentine, you will never +again be separated on earth, since he has rushed into death to find +you. Without me, you would both have died. May God accept my atonement +in the preservation of these two existences!” + +Valentine seized the count’s hand, and in her irresistible impulse of +joy carried it to her lips. + +50275m + + + +“Oh, thank me again!” said the count; “tell me till you are weary, that +I have restored you to happiness; you do not know how much I require +this assurance.” + +“Oh, yes, yes, I thank you with all my heart,” said Valentine; “and if +you doubt the sincerity of my gratitude, oh, then, ask Haydée! ask my +beloved sister Haydée, who ever since our departure from France, has +caused me to wait patiently for this happy day, while talking to me of +you.” + +“You then love Haydée?” asked Monte Cristo with an emotion he in vain +endeavored to dissimulate. + +“Oh, yes, with all my soul.” + +“Well, then, listen, Valentine,” said the count; “I have a favor to ask +of you.” + +“Of me? Oh, am I happy enough for that?” + +“Yes; you have called Haydée your sister,—let her become so indeed, +Valentine; render her all the gratitude you fancy that you owe to me; +protect her, for” (the count’s voice was thick with emotion) +“henceforth she will be alone in the world.” + +“Alone in the world!” repeated a voice behind the count, “and why?” + +Monte Cristo turned around; Haydée was standing pale, motionless, +looking at the count with an expression of fearful amazement. + +“Because tomorrow, Haydée, you will be free; you will then assume your +proper position in society, for I will not allow my destiny to +overshadow yours. Daughter of a prince, I restore to you the riches and +name of your father.” + +Haydée became pale, and lifting her transparent hands to heaven, +exclaimed in a voice stifled with tears, “Then you leave me, my lord?” + +“Haydée, Haydée, you are young and beautiful; forget even my name, and +be happy.” + +“It is well,” said Haydée; “your order shall be executed, my lord; I +will forget even your name, and be happy.” And she stepped back to +retire. + +“Oh, heavens,” exclaimed Valentine, who was supporting the head of +Morrel on her shoulder, “do you not see how pale she is? Do you not see +how she suffers?” + +Haydée answered with a heartrending expression, + +“Why should he understand this, my sister? He is my master, and I am +his slave; he has the right to notice nothing.” + +The count shuddered at the tones of a voice which penetrated the inmost +recesses of his heart; his eyes met those of the young girl and he +could not bear their brilliancy. + +“Oh, heavens,” exclaimed Monte Cristo, “can my suspicions be correct? +Haydée, would it please you not to leave me?” + +“I am young,” gently replied Haydée; “I love the life you have made so +sweet to me, and I should be sorry to die.” + +“You mean, then, that if I leave you, Haydée——” + +“I should die; yes, my lord.” + +“Do you then love me?” + +“Oh, Valentine, he asks if I love him. Valentine, tell him if you love +Maximilian.” + +The count felt his heart dilate and throb; he opened his arms, and +Haydée, uttering a cry, sprang into them. + +“Oh, yes,” she cried, “I do love you! I love you as one loves a father, +brother, husband! I love you as my life, for you are the best, the +noblest of created beings!” + +50277m + + + +“Let it be, then, as you wish, sweet angel; God has sustained me in my +struggle with my enemies, and has given me this reward; he will not let +me end my triumph in suffering; I wished to punish myself, but he has +pardoned me. Love me then, Haydée! Who knows? perhaps your love will +make me forget all that I do not wish to remember.” + +“What do you mean, my lord?” + +“I mean that one word from you has enlightened me more than twenty +years of slow experience; I have but you in the world, Haydée; through +you I again take hold on life, through you I shall suffer, through you +rejoice.” + +“Do you hear him, Valentine?” exclaimed Haydée; “he says that through +me he will suffer—through _me_, who would yield my life for his.” + +The count withdrew for a moment. “Have I discovered the truth?” he +said; “but whether it be for recompense or punishment, I accept my +fate. Come, Haydée, come!” and throwing his arm around the young girl’s +waist, he pressed the hand of Valentine, and disappeared. + +50279m + + + +An hour had nearly passed, during which Valentine, breathless and +motionless, watched steadfastly over Morrel. At length she felt his +heart beat, a faint breath played upon his lips, a slight shudder, +announcing the return of life, passed through the young man’s frame. At +length his eyes opened, but they were at first fixed and +expressionless; then sight returned, and with it feeling and grief. + +“Oh,” he cried, in an accent of despair, “the count has deceived me; I +am yet living;” and extending his hand towards the table, he seized a +knife. + +“Dearest,” exclaimed Valentine, with her adorable smile, “awake, and +look at me!” Morrel uttered a loud exclamation, and frantic, doubtful, +dazzled, as though by a celestial vision, he fell upon his knees. + +The next morning at daybreak, Valentine and Morrel were walking +arm-in-arm on the seashore, Valentine relating how Monte Cristo had +appeared in her room, explained everything, revealed the crime, and, +finally, how he had saved her life by enabling her to simulate death. + +They had found the door of the grotto opened, and gone forth; on the +azure dome of heaven still glittered a few remaining stars. + +Morrel soon perceived a man standing among the rocks, apparently +awaiting a sign from them to advance, and pointed him out to Valentine. + +“Ah, it is Jacopo,” she said, “the captain of the yacht;” and she +beckoned him towards them. + +“Do you wish to speak to us?” asked Morrel. + +“I have a letter to give you from the count.” + +“From the count!” murmured the two young people. + +“Yes; read it.” + +50281m + + + +Morrel opened the letter, and read: + +“My Dear Maximilian, + +“There is a felucca for you at anchor. Jacopo will carry you to +Leghorn, where Monsieur Noirtier awaits his granddaughter, whom he +wishes to bless before you lead her to the altar. All that is in this +grotto, my friend, my house in the Champs-Élysées, and my château at +Tréport, are the marriage gifts bestowed by Edmond Dantès upon the son +of his old master, Morrel. Mademoiselle de Villefort will share them +with you; for I entreat her to give to the poor the immense fortune +reverting to her from her father, now a madman, and her brother who +died last September with his mother. Tell the angel who will watch over +your future destiny, Morrel, to pray sometimes for a man, who, like +Satan, thought himself for an instant equal to God, but who now +acknowledges with Christian humility that God alone possesses supreme +power and infinite wisdom. Perhaps those prayers may soften the remorse +he feels in his heart. As for you, Morrel, this is the secret of my +conduct towards you. There is neither happiness nor misery in the +world; there is only the comparison of one state with another, nothing +more. He who has felt the deepest grief is best able to experience +supreme happiness. We must have felt what it is to die, Morrel, that we +may appreciate the enjoyments of living. + +“Live, then, and be happy, beloved children of my heart, and never +forget that until the day when God shall deign to reveal the future to +man, all human wisdom is summed up in these two words,—‘_Wait and +hope_.’—Your friend, + +“Edmond Dantès, _Count of Monte Cristo_.” + +50282m + + + +During the perusal of this letter, which informed Valentine for the +first time of the madness of her father and the death of her brother, +she became pale, a heavy sigh escaped from her bosom, and tears, not +the less painful because they were silent, ran down her cheeks; her +happiness cost her very dear. + +Morrel looked around uneasily. + +“But,” he said, “the count’s generosity is too overwhelming; Valentine +will be satisfied with my humble fortune. Where is the count, friend? +Lead me to him.” + +Jacopo pointed towards the horizon. + +“What do you mean?” asked Valentine. “Where is the count?—where is +Haydée?” + +“Look!” said Jacopo. + +The eyes of both were fixed upon the spot indicated by the sailor, and +on the blue line separating the sky from the Mediterranean Sea, they +perceived a large white sail. + +“Gone,” said Morrel; “gone!—adieu, my friend—adieu, my father!” + +“Gone,” murmured Valentine; “adieu, my sweet Haydée—adieu, my sister!” + +“Who can say whether we shall ever see them again?” said Morrel with +tearful eyes. + +“Darling,” replied Valentine, “has not the count just told us that all +human wisdom is summed up in two words: + +“‘_Wait and hope_ (Fac et spera)!’” + + + + +FOOTNOTES: + + +[1] “The wicked are great drinkers of water; As the flood proved once +for all.” + +[2] $2,600,000 in 1894. + +[3] Knocked on the head. + +[4] Beheaded. + +[5] Scott, of course: “The son of an ill-fated sire, and the father of +a yet more unfortunate family, bore in his looks that cast of +inauspicious melancholy by which the physiognomists of that time +pretended to distinguish those who were predestined to a violent and +unhappy death.”—The Abbot, ch. xxii. + +[6] Guillotine. + +[7] Dr. Guillotin got the idea of his famous machine from witnessing an +execution in Italy. + +[8] Brucea ferruginea. + +[9] ‘Money and sanctity, Each in a moiety.’ + +[10] Elisabeth de Rossan, Marquise de Ganges, was one of the famous +women of the court of Louis XIV. where she was known as “La Belle +Provençale.” She was the widow of the Marquis de Castellane when she +married de Ganges, and having the misfortune to excite the enmity of +her new brothers-in-law, was forced by them to take poison; and they +finished her off with pistol and dagger.—Ed. + +[11] Magistrate and orator of great eloquence—chancellor of France +under Louis XV. + +[12] Jacques-Louis David, a famous French painter (1748-1825). + +[13] Ali Pasha, “The Lion,” was born at Tepelini, an Albanian village +at the foot of the Klissoura Mountains, in 1741. By diplomacy and +success in arms he became almost supreme ruler of Albania, Epirus, and +adjacent territory. Having aroused the enmity of the Sultan, he was +proscribed and put to death by treachery in 1822, at the age of +eighty.—Ed. + +[14] Greek militiamen in the war for independence.—Ed. + +[15] A Turkish pasha in command of the troops of a province.—Ed. + +[16] The god of fruitfulness in Grecian mythology. In Crete he was +supposed to be slain in winter with the decay of vegetation and to +revive in the spring. Haydée’s learned reference is to the behavior of +an actor in the Dionysian festivals.—Ed. + +[17] The Genoese conspirator. + +[18] Lake Maggiore. + +[19] In the old Greek legend the Atreidae, or children of Atreus, were +doomed to punishment because of the abominable crime of their father. +The _Agamemnon_ of Aeschylus is based on this legend. + +[20] The performance of the civil marriage. + +[21] In Molière’s comedy, _Le Misanthrope_. + +[22] Literally, “the basket,” because wedding gifts were originally +brought in such a receptacle. + +[23] Germain Pillon was a famous French sculptor (1535-1598). His best +known work is “The Three Graces,” now in the Louvre. + +[24] Frédérick Lemaître—French actor (1800-1876). Robert Macaire is the +hero of two favorite melodramas—“Chien de Montargis” and “Chien +d’Aubry”—and the name is applied to bold criminals as a term of +derision. + +[25] The Spahis are French cavalry reserved for service in Africa. + +[26] _Savate_: an old shoe. + +[27] Guilbert de Pixérécourt, French dramatist (1773-1844). + +[28] Gaspard Puget, the sculptor-architect, was born at Marseilles in +1615. + +[29] The Carolina—not Virginia—jessamine, _gelsemium sempervirens_ +(properly speaking not a jessamine at all) has yellow blossoms. The +reference is no doubt to the _Wistaria frutescens_.—Ed. + +[30] The miser in Molière’s comedy of _L’Avare_.—Ed. + + + + +*** END OF THE PROJECT GUTENBERG EBOOK THE COUNT OF MONTE CRISTO *** + + + + +Updated editions will replace the previous one—the old editions will +be renamed. + +Creating the works from print editions not protected by U.S. copyright +law means that no one owns a United States copyright in these works, +so the Foundation (and you!) can copy and distribute it in the United +States without permission and without paying copyright +royalties. Special rules, set forth in the General Terms of Use part +of this license, apply to copying and distributing Project +Gutenberg™ electronic works to protect the PROJECT GUTENBERG™ +concept and trademark. Project Gutenberg is a registered trademark, +and may not be used if you charge for an eBook, except by following +the terms of the trademark license, including paying royalties for use +of the Project Gutenberg trademark. If you do not charge anything for +copies of this eBook, complying with the trademark license is very +easy. You may use this eBook for nearly any purpose such as creation +of derivative works, reports, performances and research. Project +Gutenberg eBooks may be modified and printed and given away—you may +do practically ANYTHING in the United States with eBooks not protected +by U.S. copyright law. Redistribution is subject to the trademark +license, especially commercial redistribution. + + +START: FULL LICENSE + +THE FULL PROJECT GUTENBERG LICENSE + +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg™ mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase “Project +Gutenberg”), you agree to comply with all the terms of the Full +Project Gutenberg™ License available with this file or online at +www.gutenberg.org/license. + +Section 1. General Terms of Use and Redistributing Project Gutenberg™ +electronic works + +1.A. By reading or using any part of this Project Gutenberg™ +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or +destroy all copies of Project Gutenberg™ electronic works in your +possession. If you paid a fee for obtaining a copy of or access to a +Project Gutenberg™ electronic work and you do not agree to be bound +by the terms of this agreement, you may obtain a refund from the person +or entity to whom you paid the fee as set forth in paragraph 1.E.8. + +1.B. “Project Gutenberg” is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg™ electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg™ electronic works if you follow the terms of this +agreement and help preserve free future access to Project Gutenberg™ +electronic works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation (“the +Foundation” or PGLAF), owns a compilation copyright in the collection +of Project Gutenberg™ electronic works. Nearly all the individual +works in the collection are in the public domain in the United +States. If an individual work is unprotected by copyright law in the +United States and you are located in the United States, we do not +claim a right to prevent you from copying, distributing, performing, +displaying or creating derivative works based on the work as long as +all references to Project Gutenberg are removed. Of course, we hope +that you will support the Project Gutenberg™ mission of promoting +free access to electronic works by freely sharing Project Gutenberg™ +works in compliance with the terms of this agreement for keeping the +Project Gutenberg™ name associated with the work. You can easily +comply with the terms of this agreement by keeping this work in the +same format with its attached full Project Gutenberg™ License when +you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are +in a constant state of change. If you are outside the United States, +check the laws of your country in addition to the terms of this +agreement before downloading, copying, displaying, performing, +distributing or creating derivative works based on this work or any +other Project Gutenberg™ work. The Foundation makes no +representations concerning the copyright status of any work in any +country other than the United States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other +immediate access to, the full Project Gutenberg™ License must appear +prominently whenever any copy of a Project Gutenberg™ work (any work +on which the phrase “Project Gutenberg” appears, or with which the +phrase “Project Gutenberg” is associated) is accessed, displayed, +performed, viewed, copied or distributed: + + This eBook is for the use of anyone anywhere in the United States and most + other parts of the world at no cost and with almost no restrictions + whatsoever. You may copy it, give it away or re-use it under the terms + of the Project Gutenberg License included with this eBook or online + at www.gutenberg.org. If you + are not located in the United States, you will have to check the laws + of the country where you are located before using this eBook. + +1.E.2. If an individual Project Gutenberg™ electronic work is +derived from texts not protected by U.S. copyright law (does not +contain a notice indicating that it is posted with permission of the +copyright holder), the work can be copied and distributed to anyone in +the United States without paying any fees or charges. If you are +redistributing or providing access to a work with the phrase “Project +Gutenberg” associated with or appearing on the work, you must comply +either with the requirements of paragraphs 1.E.1 through 1.E.7 or +obtain permission for the use of the work and the Project Gutenberg™ +trademark as set forth in paragraphs 1.E.8 or 1.E.9. + +1.E.3. If an individual Project Gutenberg™ electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any +additional terms imposed by the copyright holder. Additional terms +will be linked to the Project Gutenberg™ License for all works +posted with the permission of the copyright holder found at the +beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg™ +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg™. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg™ License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including +any word processing or hypertext form. However, if you provide access +to or distribute copies of a Project Gutenberg™ work in a format +other than “Plain Vanilla ASCII” or other format used in the official +version posted on the official Project Gutenberg™ website +(www.gutenberg.org), you must, at no additional cost, fee or expense +to the user, provide a copy, a means of exporting a copy, or a means +of obtaining a copy upon request, of the work in its original “Plain +Vanilla ASCII” or other form. Any alternate format must include the +full Project Gutenberg™ License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg™ works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg™ electronic works +provided that: + + • You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg™ works calculated using the method + you already use to calculate your applicable taxes. The fee is owed + to the owner of the Project Gutenberg™ trademark, but he has + agreed to donate royalties under this paragraph to the Project + Gutenberg Literary Archive Foundation. Royalty payments must be paid + within 60 days following each date on which you prepare (or are + legally required to prepare) your periodic tax returns. Royalty + payments should be clearly marked as such and sent to the Project + Gutenberg Literary Archive Foundation at the address specified in + Section 4, “Information about donations to the Project Gutenberg + Literary Archive Foundation.” + + • You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg™ + License. You must require such a user to return or destroy all + copies of the works possessed in a physical medium and discontinue + all use of and all access to other copies of Project Gutenberg™ + works. + + • You provide, in accordance with paragraph 1.F.3, a full refund of + any money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days of + receipt of the work. + + • You comply with all other terms of this agreement for free + distribution of Project Gutenberg™ works. + + +1.E.9. If you wish to charge a fee or distribute a Project +Gutenberg™ electronic work or group of works on different terms than +are set forth in this agreement, you must obtain permission in writing +from the Project Gutenberg Literary Archive Foundation, the manager of +the Project Gutenberg™ trademark. Contact the Foundation as set +forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +works not protected by U.S. copyright law in creating the Project +Gutenberg™ collection. Despite these efforts, Project Gutenberg™ +electronic works, and the medium on which they may be stored, may +contain “Defects,” such as, but not limited to, incomplete, inaccurate +or corrupt data, transcription errors, a copyright or other +intellectual property infringement, a defective or damaged disk or +other medium, a computer virus, or computer codes that damage or +cannot be read by your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right +of Replacement or Refund” described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg™ trademark, and any other party distributing a Project +Gutenberg™ electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium +with your written explanation. The person or entity that provided you +with the defective work may elect to provide a replacement copy in +lieu of a refund. If you received the work electronically, the person +or entity providing it to you may choose to give you a second +opportunity to receive the work electronically in lieu of a refund. If +the second copy is also defective, you may demand a refund in writing +without further opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO +OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of +damages. If any disclaimer or limitation set forth in this agreement +violates the law of the state applicable to this agreement, the +agreement shall be interpreted to make the maximum disclaimer or +limitation permitted by the applicable state law. The invalidity or +unenforceability of any provision of this agreement shall not void the +remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg™ electronic works in +accordance with this agreement, and any volunteers associated with the +production, promotion and distribution of Project Gutenberg™ +electronic works, harmless from all liability, costs and expenses, +including legal fees, that arise directly or indirectly from any of +the following which you do or cause to occur: (a) distribution of this +or any Project Gutenberg™ work, (b) alteration, modification, or +additions or deletions to any Project Gutenberg™ work, and (c) any +Defect you cause. + +Section 2. Information about the Mission of Project Gutenberg™ + +Project Gutenberg™ is synonymous with the free distribution of +electronic works in formats readable by the widest variety of +computers including obsolete, old, middle-aged and new computers. It +exists because of the efforts of hundreds of volunteers and donations +from people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need are critical to reaching Project Gutenberg™’s +goals and ensuring that the Project Gutenberg™ collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg™ and future +generations. To learn more about the Project Gutenberg Literary +Archive Foundation and how your efforts and donations can help, see +Sections 3 and 4 and the Foundation information page at www.gutenberg.org. + +Section 3. Information about the Project Gutenberg Literary Archive Foundation + +The Project Gutenberg Literary Archive Foundation is a non-profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation’s EIN or federal tax identification +number is 64-6221541. Contributions to the Project Gutenberg Literary +Archive Foundation are tax deductible to the full extent permitted by +U.S. federal laws and your state’s laws. + +The Foundation’s business office is located at 809 North 1500 West, +Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up +to date contact information can be found at the Foundation’s website +and official page at www.gutenberg.org/contact + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg™ depends upon and cannot survive without widespread +public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine-readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To SEND +DONATIONS or determine the status of compliance for any particular state +visit www.gutenberg.org/donate. + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including checks, online payments and credit card donations. To +donate, please visit: www.gutenberg.org/donate. + +Section 5. General Information About Project Gutenberg™ electronic works + +Professor Michael S. Hart was the originator of the Project +Gutenberg™ concept of a library of electronic works that could be +freely shared with anyone. For forty years, he produced and +distributed Project Gutenberg™ eBooks with only a loose network of +volunteer support. + +Project Gutenberg™ eBooks are often created from several printed +editions, all of which are confirmed as not protected by copyright in +the U.S. unless a copyright notice is included. Thus, we do not +necessarily keep eBooks in compliance with any particular paper +edition. + +Most people start at our website which has the main PG search +facility: www.gutenberg.org. + +This website includes information about Project Gutenberg™, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. + + diff --git a/chapters/pg1184_cleaned.txt b/chapters/pg1184_cleaned.txt new file mode 100644 index 00000000..408ef708 --- /dev/null +++ b/chapters/pg1184_cleaned.txt @@ -0,0 +1,61301 @@ + + + + +THE COUNT OF MONTE CRISTO + +by Alexandre Dumas [père] + + + + +Contents + + + VOLUME ONE +Chapter 1. Marseilles—The Arrival +Chapter 2. Father and Son +Chapter 3. The Catalans +Chapter 4. Conspiracy +Chapter 5. The Marriage Feast +Chapter 6. The Deputy Procureur du Roi +Chapter 7. The Examination +Chapter 8. The Château d’If +Chapter 9. The Evening of the Betrothal +Chapter 10. The King’s Closet at the Tuileries +Chapter 11. The Corsican Ogre +Chapter 12. Father and Son +Chapter 13. The Hundred Days +Chapter 14. The Two Prisoners +Chapter 15. Number 34 and Number 27 +Chapter 16. A Learned Italian +Chapter 17. The Abbé’s Chamber +Chapter 18. The Treasure +Chapter 19. The Third Attack +Chapter 20. The Cemetery of the Château d’If +Chapter 21. The Island of Tiboulen +Chapter 22. The Smugglers +Chapter 23. The Island of Monte Cristo +Chapter 24. The Secret Cave +Chapter 25. The Unknown +Chapter 26. The Pont du Gard Inn +Chapter 27. The Story + + VOLUME TWO +Chapter 28. The Prison Register +Chapter 29. The House of Morrel & Son +Chapter 30. The Fifth of September +Chapter 31. Italy: Sinbad the Sailor +Chapter 32. The Waking +Chapter 33. Roman Bandits +Chapter 34. The Colosseum +Chapter 35. La Mazzolata +Chapter 36. The Carnival at Rome. +Chapter 37. The Catacombs of Saint Sebastian +Chapter 38. The Rendezvous +Chapter 39. The Guests +Chapter 40. The Breakfast +Chapter 41. The Presentation +Chapter 42. Monsieur Bertuccio +Chapter 43. The House at Auteuil +Chapter 44. The Vendetta +Chapter 45. The Rain of Blood +Chapter 46. Unlimited Credit +Chapter 47. The Dappled Grays + + VOLUME THREE +Chapter 48. Ideology +Chapter 49. Haydée +Chapter 50. The Morrel Family +Chapter 51. Pyramus and Thisbe +Chapter 52. Toxicology +Chapter 53. Robert le Diable +Chapter 54. A Flurry in Stocks +Chapter 55. Major Cavalcanti +Chapter 56. Andrea Cavalcanti +Chapter 57. In the Lucern Patch +Chapter 58. M. Noirtier de Villefort +Chapter 59. The Will +Chapter 60. The Telegraph +Chapter 61. How a Gardener May Get Rid of the Dormice +Chapter 62. Ghosts +Chapter 63. The Dinner +Chapter 64. The Beggar +Chapter 65. A Conjugal Scene +Chapter 66. Matrimonial Projects +Chapter 67. The Office of the King’s Attorney +Chapter 68. A Summer Ball +Chapter 69. The Inquiry +Chapter 70. The Ball +Chapter 71. Bread and Salt +Chapter 72. Madame de Saint-Méran +Chapter 73. The Promise + +VOLUME FOUR +Chapter 74. The Villefort Family Vault +Chapter 75. A Signed Statement +Chapter 76. Progress of Cavalcanti the Younger +Chapter 77. Haydée +Chapter 78. We hear From Yanina +Chapter 79. The Lemonade +Chapter 80. The Accusation +Chapter 81. The Room of the Retired Baker +Chapter 82. The Burglary +Chapter 83. The Hand of God +Chapter 84. Beauchamp +Chapter 85. The Journey +Chapter 86. The Trial +Chapter 87. The Challenge +Chapter 88. The Insult +Chapter 89. The Night +Chapter 90. The Meeting +Chapter 91. Mother and Son +Chapter 92. The Suicide +Chapter 93. Valentine +Chapter 94. Maximilian’s Avowal +Chapter 95. Father and Daughter + +VOLUME FIVE +Chapter 96. The Contract +Chapter 97. The Departure for Belgium +Chapter 98. The Bell and Bottle Tavern +Chapter 99. The Law +Chapter 100. The Apparition +Chapter 101. Locusta +Chapter 102. Valentine +Chapter 103. Maximilian +Chapter 104. Danglars’ Signature +Chapter 105. The Cemetery of Père-Lachaise +Chapter 106. Dividing the Proceeds +Chapter 107. The Lions’ Den +Chapter 108. The Judge +Chapter 109. The Assizes +Chapter 110. The Indictment +Chapter 111. Expiation +Chapter 112. The Departure +Chapter 113. The Past +Chapter 114. Peppino +Chapter 115. Luigi Vampa’s Bill of Fare +Chapter 116. The Pardon +Chapter 117. The Fifth of October + + + +VOLUME ONE + + + + Chapter 1. Marseilles—The Arrival + +On the 24th of February, 1815, the look-out at Notre-Dame de la Garde +signalled the three-master, the _Pharaon_ from Smyrna, Trieste, and +Naples. + +As usual, a pilot put off immediately, and rounding the Château d’If, +got on board the vessel between Cape Morgiou and Rion island. + +Immediately, and according to custom, the ramparts of Fort Saint-Jean +were covered with spectators; it is always an event at Marseilles for a +ship to come into port, especially when this ship, like the _Pharaon_, +has been built, rigged, and laden at the old Phocee docks, and belongs +to an owner of the city. + +The ship drew on and had safely passed the strait, which some volcanic +shock has made between the Calasareigne and Jaros islands; had doubled +Pomègue, and approached the harbor under topsails, jib, and spanker, +but so slowly and sedately that the idlers, with that instinct which is +the forerunner of evil, asked one another what misfortune could have +happened on board. However, those experienced in navigation saw plainly +that if any accident had occurred, it was not to the vessel herself, +for she bore down with all the evidence of being skilfully handled, the +anchor a-cockbill, the jib-boom guys already eased off, and standing by +the side of the pilot, who was steering the _Pharaon_ towards the +narrow entrance of the inner port, was a young man, who, with activity +and vigilant eye, watched every motion of the ship, and repeated each +direction of the pilot. + +The vague disquietude which prevailed among the spectators had so much +affected one of the crowd that he did not await the arrival of the +vessel in harbor, but jumping into a small skiff, desired to be pulled +alongside the _Pharaon_, which he reached as she rounded into La +Réserve basin. + +When the young man on board saw this person approach, he left his +station by the pilot, and, hat in hand, leaned over the ship’s +bulwarks. + +He was a fine, tall, slim young fellow of eighteen or twenty, with +black eyes, and hair as dark as a raven’s wing; and his whole +appearance bespoke that calmness and resolution peculiar to men +accustomed from their cradle to contend with danger. + +“Ah, is it you, Dantès?” cried the man in the skiff. “What’s the +matter? and why have you such an air of sadness aboard?” + +“A great misfortune, M. Morrel,” replied the young man, “a great +misfortune, for me especially! Off Civita Vecchia we lost our brave +Captain Leclere.” + +“And the cargo?” inquired the owner, eagerly. + +“Is all safe, M. Morrel; and I think you will be satisfied on that +head. But poor Captain Leclere——” + +“What happened to him?” asked the owner, with an air of considerable +resignation. “What happened to the worthy captain?” + +“He died.” + +“Fell into the sea?” + +“No, sir, he died of brain-fever in dreadful agony.” Then turning to +the crew, he said, “Bear a hand there, to take in sail!” + +All hands obeyed, and at once the eight or ten seamen who composed the +crew, sprang to their respective stations at the spanker brails and +outhaul, topsail sheets and halyards, the jib downhaul, and the topsail +clewlines and buntlines. The young sailor gave a look to see that his +orders were promptly and accurately obeyed, and then turned again to +the owner. + +“And how did this misfortune occur?” inquired the latter, resuming the +interrupted conversation. + +0023m + + + +“Alas, sir, in the most unexpected manner. After a long talk with the +harbor-master, Captain Leclere left Naples greatly disturbed in mind. +In twenty-four hours he was attacked by a fever, and died three days +afterwards. We performed the usual burial service, and he is at his +rest, sewn up in his hammock with a thirty-six-pound shot at his head +and his heels, off El Giglio island. We bring to his widow his sword +and cross of honor. It was worth while, truly,” added the young man +with a melancholy smile, “to make war against the English for ten +years, and to die in his bed at last, like everybody else.” + +“Why, you see, Edmond,” replied the owner, who appeared more comforted +at every moment, “we are all mortal, and the old must make way for the +young. If not, why, there would be no promotion; and since you assure +me that the cargo——” + +“Is all safe and sound, M. Morrel, take my word for it; and I advise +you not to take 25,000 francs for the profits of the voyage.” + +Then, as they were just passing the Round Tower, the young man shouted: +“Stand by there to lower the topsails and jib; brail up the spanker!” + +The order was executed as promptly as it would have been on board a +man-of-war. + +“Let go—and clue up!” At this last command all the sails were lowered, +and the vessel moved almost imperceptibly onwards. + +“Now, if you will come on board, M. Morrel,” said Dantès, observing the +owner’s impatience, “here is your supercargo, M. Danglars, coming out +of his cabin, who will furnish you with every particular. As for me, I +must look after the anchoring, and dress the ship in mourning.” + +The owner did not wait for a second invitation. He seized a rope which +Dantès flung to him, and with an activity that would have done credit +to a sailor, climbed up the side of the ship, while the young man, +going to his task, left the conversation to Danglars, who now came +towards the owner. He was a man of twenty-five or twenty-six years of +age, of unprepossessing countenance, obsequious to his superiors, +insolent to his subordinates; and this, in addition to his position as +responsible agent on board, which is always obnoxious to the sailors, +made him as much disliked by the crew as Edmond Dantès was beloved by +them. + +“Well, M. Morrel,” said Danglars, “you have heard of the misfortune +that has befallen us?” + +“Yes—yes: poor Captain Leclere! He was a brave and an honest man.” + +“And a first-rate seaman, one who had seen long and honorable service, +as became a man charged with the interests of a house so important as +that of Morrel & Son,” replied Danglars. + +“But,” replied the owner, glancing after Dantès, who was watching the +anchoring of his vessel, “it seems to me that a sailor needs not be so +old as you say, Danglars, to understand his business, for our friend +Edmond seems to understand it thoroughly, and not to require +instruction from anyone.” + +“Yes,” said Danglars, darting at Edmond a look gleaming with hate. +“Yes, he is young, and youth is invariably self-confident. Scarcely was +the captain’s breath out of his body when he assumed the command +without consulting anyone, and he caused us to lose a day and a half at +the Island of Elba, instead of making for Marseilles direct.” + +0025m + + + +“As to taking command of the vessel,” replied Morrel, “that was his +duty as captain’s mate; as to losing a day and a half off the Island of +Elba, he was wrong, unless the vessel needed repairs.” + +“The vessel was in as good condition as I am, and as, I hope you are, +M. Morrel, and this day and a half was lost from pure whim, for the +pleasure of going ashore, and nothing else.” + +“Dantès,” said the shipowner, turning towards the young man, “come this +way!” + +“In a moment, sir,” answered Dantès, “and I’m with you.” Then calling +to the crew, he said, “Let go!” + +The anchor was instantly dropped, and the chain ran rattling through +the port-hole. Dantès continued at his post in spite of the presence of +the pilot, until this manœuvre was completed, and then he added, +“Half-mast the colors, and square the yards!” + +“You see,” said Danglars, “he fancies himself captain already, upon my +word.” + +“And so, in fact, he is,” said the owner. + +“Except your signature and your partner’s, M. Morrel.” + +“And why should he not have this?” asked the owner; “he is young, it is +true, but he seems to me a thorough seaman, and of full experience.” + +A cloud passed over Danglars’ brow. + +“Your pardon, M. Morrel,” said Dantès, approaching, “the vessel now +rides at anchor, and I am at your service. You hailed me, I think?” + +Danglars retreated a step or two. “I wished to inquire why you stopped +at the Island of Elba?” + +“I do not know, sir; it was to fulfil the last instructions of Captain +Leclere, who, when dying, gave me a packet for Marshal Bertrand.” + +“Then did you see him, Edmond?” + +“Who?” + +“The marshal.” + +“Yes.” + +Morrel looked around him, and then, drawing Dantès on one side, he said +suddenly— + +“And how is the emperor?” + +“Very well, as far as I could judge from the sight of him.” + +“You saw the emperor, then?” + +“He entered the marshal’s apartment while I was there.” + +“And you spoke to him?” + +“Why, it was he who spoke to me, sir,” said Dantès, with a smile. + +“And what did he say to you?” + +“Asked me questions about the vessel, the time she left Marseilles, the +course she had taken, and what was her cargo. I believe, if she had not +been laden, and I had been her master, he would have bought her. But I +told him I was only mate, and that she belonged to the firm of Morrel & +Son. ‘Ah, yes,’ he said, ‘I know them. The Morrels have been shipowners +from father to son; and there was a Morrel who served in the same +regiment with me when I was in garrison at Valence.’” + +“_Pardieu!_ and that is true!” cried the owner, greatly delighted. “And +that was Policar Morrel, my uncle, who was afterwards a captain. +Dantès, you must tell my uncle that the emperor remembered him, and you +will see it will bring tears into the old soldier’s eyes. Come, come,” +continued he, patting Edmond’s shoulder kindly, “you did very right, +Dantès, to follow Captain Leclere’s instructions, and touch at Elba, +although if it were known that you had conveyed a packet to the +marshal, and had conversed with the emperor, it might bring you into +trouble.” + +0027m + + + +“How could that bring me into trouble, sir?” asked Dantès; “for I did +not even know of what I was the bearer; and the emperor merely made +such inquiries as he would of the first comer. But, pardon me, here are +the health officers and the customs inspectors coming alongside.” And +the young man went to the gangway. As he departed, Danglars approached, +and said,— + +“Well, it appears that he has given you satisfactory reasons for his +landing at Porto-Ferrajo?” + +“Yes, most satisfactory, my dear Danglars.” + +“Well, so much the better,” said the supercargo; “for it is not +pleasant to think that a comrade has not done his duty.” + +“Dantès has done his,” replied the owner, “and that is not saying much. +It was Captain Leclere who gave orders for this delay.” + +“Talking of Captain Leclere, has not Dantès given you a letter from +him?” + +“To me?—no—was there one?” + +“I believe that, besides the packet, Captain Leclere confided a letter +to his care.” + +“Of what packet are you speaking, Danglars?” + +“Why, that which Dantès left at Porto-Ferrajo.” + +“How do you know he had a packet to leave at Porto-Ferrajo?” + +Danglars turned very red. + +“I was passing close to the door of the captain’s cabin, which was half +open, and I saw him give the packet and letter to Dantès.” + +“He did not speak to me of it,” replied the shipowner; “but if there be +any letter he will give it to me.” + +Danglars reflected for a moment. “Then, M. Morrel, I beg of you,” said +he, “not to say a word to Dantès on the subject. I may have been +mistaken.” + +At this moment the young man returned; Danglars withdrew. + +“Well, my dear Dantès, are you now free?” inquired the owner. + +“Yes, sir.” + +“You have not been long detained.” + +“No. I gave the custom-house officers a copy of our bill of lading; and +as to the other papers, they sent a man off with the pilot, to whom I +gave them.” + +“Then you have nothing more to do here?” + +“No—everything is all right now.” + +“Then you can come and dine with me?” + +“I really must ask you to excuse me, M. Morrel. My first visit is due +to my father, though I am not the less grateful for the honor you have +done me.” + +0029m + + + +“Right, Dantès, quite right. I always knew you were a good son.” + +“And,” inquired Dantès, with some hesitation, “do you know how my +father is?” + +“Well, I believe, my dear Edmond, though I have not seen him lately.” + +“Yes, he likes to keep himself shut up in his little room.” + +“That proves, at least, that he has wanted for nothing during your +absence.” + +Dantès smiled. “My father is proud, sir, and if he had not a meal left, +I doubt if he would have asked anything from anyone, except from +Heaven.” + +“Well, then, after this first visit has been made we shall count on +you.” + +“I must again excuse myself, M. Morrel, for after this first visit has +been paid I have another which I am most anxious to pay.” + +“True, Dantès, I forgot that there was at the Catalans someone who +expects you no less impatiently than your father—the lovely Mercédès.” + +Dantès blushed. + +“Ah, ha,” said the shipowner, “I am not in the least surprised, for she +has been to me three times, inquiring if there were any news of the +_Pharaon_. _Peste!_ Edmond, you have a very handsome mistress!” + +“She is not my mistress,” replied the young sailor, gravely; “she is my +betrothed.” + +“Sometimes one and the same thing,” said Morrel, with a smile. + +“Not with us, sir,” replied Dantès. + +“Well, well, my dear Edmond,” continued the owner, “don’t let me detain +you. You have managed my affairs so well that I ought to allow you all +the time you require for your own. Do you want any money?” + +“No, sir; I have all my pay to take—nearly three months’ wages.” + +“You are a careful fellow, Edmond.” + +“Say I have a poor father, sir.” + +“Yes, yes, I know how good a son you are, so now hasten away to see +your father. I have a son too, and I should be very wroth with those +who detained him from me after a three months’ voyage.” + +“Then I have your leave, sir?” + +“Yes, if you have nothing more to say to me.” + +“Nothing.” + +“Captain Leclere did not, before he died, give you a letter for me?” + +“He was unable to write, sir. But that reminds me that I must ask your +leave of absence for some days.” + +“To get married?” + +“Yes, first, and then to go to Paris.” + +“Very good; have what time you require, Dantès. It will take quite six +weeks to unload the cargo, and we cannot get you ready for sea until +three months after that; only be back again in three months, for the +_Pharaon_,” added the owner, patting the young sailor on the back, +“cannot sail without her captain.” + +“Without her captain!” cried Dantès, his eyes sparkling with animation; +“pray mind what you say, for you are touching on the most secret wishes +of my heart. Is it really your intention to make me captain of the +_Pharaon_?” + +“If I were sole owner we’d shake hands on it now, my dear Dantès, and +call it settled; but I have a partner, and you know the Italian +proverb—_Chi ha compagno ha padrone_—‘He who has a partner has a +master.’ But the thing is at least half done, as you have one out of +two votes. Rely on me to procure you the other; I will do my best.” + +“Ah, M. Morrel,” exclaimed the young seaman, with tears in his eyes, +and grasping the owner’s hand, “M. Morrel, I thank you in the name of +my father and of Mercédès.” + +“That’s all right, Edmond. There’s a providence that watches over the +deserving. Go to your father; go and see Mercédès, and afterwards come +to me.” + +“Shall I row you ashore?” + +“No, thank you; I shall remain and look over the accounts with +Danglars. Have you been satisfied with him this voyage?” + +“That is according to the sense you attach to the question, sir. Do you +mean is he a good comrade? No, for I think he never liked me since the +day when I was silly enough, after a little quarrel we had, to propose +to him to stop for ten minutes at the island of Monte Cristo to settle +the dispute—a proposition which I was wrong to suggest, and he quite +right to refuse. If you mean as responsible agent when you ask me the +question, I believe there is nothing to say against him, and that you +will be content with the way in which he has performed his duty.” + +“But tell me, Dantès, if you had command of the _Pharaon_ should you be +glad to see Danglars remain?” + +“Captain or mate, M. Morrel, I shall always have the greatest respect +for those who possess the owners’ confidence.” + +“That’s right, that’s right, Dantès! I see you are a thoroughly good +fellow, and will detain you no longer. Go, for I see how impatient you +are.” + +“Then I have leave?” + +“Go, I tell you.” + +“May I have the use of your skiff?” + +“Certainly.” + +“Then, for the present, M. Morrel, farewell, and a thousand thanks!” + +“I hope soon to see you again, my dear Edmond. Good luck to you.” + +The young sailor jumped into the skiff, and sat down in the stern +sheets, with the order that he be put ashore at La Canebière. The two +oarsmen bent to their work, and the little boat glided away as rapidly +as possible in the midst of the thousand vessels which choke up the +narrow way which leads between the two rows of ships from the mouth of +the harbor to the Quai d’Orléans. + +The shipowner, smiling, followed him with his eyes until he saw him +spring out on the quay and disappear in the midst of the throng, which +from five o’clock in the morning until nine o’clock at night, swarms in +the famous street of La Canebière,—a street of which the modern +Phocéens are so proud that they say with all the gravity in the world, +and with that accent which gives so much character to what is said, “If +Paris had La Canebière, Paris would be a second Marseilles.” On turning +round the owner saw Danglars behind him, apparently awaiting orders, +but in reality also watching the young sailor,—but there was a great +difference in the expression of the two men who thus followed the +movements of Edmond Dantès. + + + + Chapter 2. Father and Son + +We will leave Danglars struggling with the demon of hatred, and +endeavoring to insinuate in the ear of the shipowner some evil +suspicions against his comrade, and follow Dantès, who, after having +traversed La Canebière, took the Rue de Noailles, and entering a small +house, on the left of the Allées de Meilhan, rapidly ascended four +flights of a dark staircase, holding the baluster with one hand, while +with the other he repressed the beatings of his heart, and paused +before a half-open door, from which he could see the whole of a small +room. + +This room was occupied by Dantès’ father. The news of the arrival of +the _Pharaon_ had not yet reached the old man, who, mounted on a chair, +was amusing himself by training with trembling hand the nasturtiums and +sprays of clematis that clambered over the trellis at his window. +Suddenly, he felt an arm thrown around his body, and a well-known voice +behind him exclaimed, “Father—dear father!” + +The old man uttered a cry, and turned round; then, seeing his son, he +fell into his arms, pale and trembling. + +“What ails you, my dearest father? Are you ill?” inquired the young +man, much alarmed. + +“No, no, my dear Edmond—my boy—my son!—no; but I did not expect you; +and joy, the surprise of seeing you so suddenly—Ah, I feel as if I were +going to die.” + +“Come, come, cheer up, my dear father! ’Tis I—really I! They say joy +never hurts, and so I came to you without any warning. Come now, do +smile, instead of looking at me so solemnly. Here I am back again, and +we are going to be happy.” + +“Yes, yes, my boy, so we will—so we will,” replied the old man; “but +how shall we be happy? Shall you never leave me again? Come, tell me +all the good fortune that has befallen you.” + +“God forgive me,” said the young man, “for rejoicing at happiness +derived from the misery of others, but, Heaven knows, I did not seek +this good fortune; it has happened, and I really cannot pretend to +lament it. The good Captain Leclere is dead, father, and it is probable +that, with the aid of M. Morrel, I shall have his place. Do you +understand, father? Only imagine me a captain at twenty, with a hundred +louis pay, and a share in the profits! Is this not more than a poor +sailor like me could have hoped for?” + +“Yes, my dear boy,” replied the old man, “it is very fortunate.” + +“Well, then, with the first money I touch, I mean you to have a small +house, with a garden in which to plant clematis, nasturtiums, and +honeysuckle. But what ails you, father? Are you not well?” + +“’Tis nothing, nothing; it will soon pass away”—and as he said so the +old man’s strength failed him, and he fell backwards. + +“Come, come,” said the young man, “a glass of wine, father, will revive +you. Where do you keep your wine?” + +“No, no; thanks. You need not look for it; I do not want it,” said the +old man. + +“Yes, yes, father, tell me where it is,” and he opened two or three +cupboards. + +“It is no use,” said the old man, “there is no wine.” + +“What, no wine?” said Dantès, turning pale, and looking alternately at +the hollow cheeks of the old man and the empty cupboards. “What, no +wine? Have you wanted money, father?” + +“I want nothing now that I have you,” said the old man. + +“Yet,” stammered Dantès, wiping the perspiration from his brow,—“yet I +gave you two hundred francs when I left, three months ago.” + +“Yes, yes, Edmond, that is true, but you forgot at that time a little +debt to our neighbor, Caderousse. He reminded me of it, telling me if I +did not pay for you, he would be paid by M. Morrel; and so, you see, +lest he might do you an injury——” + +“Well?” + +“Why, I paid him.” + +“But,” cried Dantès, “it was a hundred and forty francs I owed +Caderousse.” + +“Yes,” stammered the old man. + +“And you paid him out of the two hundred francs I left you?” + +The old man nodded. + +“So that you have lived for three months on sixty francs,” muttered +Edmond. + +“You know how little I require,” said the old man. + +“Heaven pardon me,” cried Edmond, falling on his knees before his +father. + +“What are you doing?” + +“You have wounded me to the heart.” + +“Never mind it, for I see you once more,” said the old man; “and now +it’s all over—everything is all right again.” + +0035m + + + +“Yes, here I am,” said the young man, “with a promising future and a +little money. Here, father, here!” he said, “take this—take it, and +send for something immediately.” And he emptied his pockets on the +table, the contents consisting of a dozen gold pieces, five or six +five-franc pieces, and some smaller coin. The countenance of old Dantès +brightened. + +“Whom does this belong to?” he inquired. + +“To me, to you, to us! Take it; buy some provisions; be happy, and +tomorrow we shall have more.” + +“Gently, gently,” said the old man, with a smile; “and by your leave I +will use your purse moderately, for they would say, if they saw me buy +too many things at a time, that I had been obliged to await your +return, in order to be able to purchase them.” + +“Do as you please; but, first of all, pray have a servant, father. I +will not have you left alone so long. I have some smuggled coffee and +most capital tobacco, in a small chest in the hold, which you shall +have tomorrow. But, hush, here comes somebody.” + +“’Tis Caderousse, who has heard of your arrival, and no doubt comes to +congratulate you on your fortunate return.” + +“Ah, lips that say one thing, while the heart thinks another,” murmured +Edmond. “But, never mind, he is a neighbor who has done us a service on +a time, so he’s welcome.” + +As Edmond paused, the black and bearded head of Caderousse appeared at +the door. He was a man of twenty-five or six, and held a piece of +cloth, which, being a tailor, he was about to make into a coat-lining. + +“What, is it you, Edmond, back again?” said he, with a broad +Marseillaise accent, and a grin that displayed his ivory-white teeth. + +“Yes, as you see, neighbor Caderousse; and ready to be agreeable to you +in any and every way,” replied Dantès, but ill-concealing his coldness +under this cloak of civility. + +“Thanks—thanks; but, fortunately, I do not want for anything; and it +chances that at times there are others who have need of me.” Dantès +made a gesture. “I do not allude to you, my boy. No!—no! I lent you +money, and you returned it; that’s like good neighbors, and we are +quits.” + +“We are never quits with those who oblige us,” was Dantès’ reply; “for +when we do not owe them money, we owe them gratitude.” + +“What’s the use of mentioning that? What is done is done. Let us talk +of your happy return, my boy. I had gone on the quay to match a piece +of mulberry cloth, when I met friend Danglars. ‘You at +Marseilles?’—‘Yes,’ says he. + +“‘I thought you were at Smyrna.’—‘I was; but am now back again.’ + +“‘And where is the dear boy, our little Edmond?’ + +“‘Why, with his father, no doubt,’ replied Danglars. And so I came,” +added Caderousse, “as fast as I could to have the pleasure of shaking +hands with a friend.” + +0037m + + + +“Worthy Caderousse!” said the old man, “he is so much attached to us.” + +“Yes, to be sure I am. I love and esteem you, because honest folks are +so rare. But it seems you have come back rich, my boy,” continued the +tailor, looking askance at the handful of gold and silver which Dantès +had thrown on the table. + +The young man remarked the greedy glance which shone in the dark eyes +of his neighbor. “Eh,” he said, negligently, “this money is not mine. I +was expressing to my father my fears that he had wanted many things in +my absence, and to convince me he emptied his purse on the table. Come, +father” added Dantès, “put this money back in your box—unless neighbor +Caderousse wants anything, and in that case it is at his service.” + +“No, my boy, no,” said Caderousse. “I am not in any want, thank God, my +living is suited to my means. Keep your money—keep it, I say;—one never +has too much;—but, at the same time, my boy, I am as much obliged by +your offer as if I took advantage of it.” + +“It was offered with good will,” said Dantès. + +“No doubt, my boy; no doubt. Well, you stand well with M. Morrel I +hear,—you insinuating dog, you!” + +“M. Morrel has always been exceedingly kind to me,” replied Dantès. + +“Then you were wrong to refuse to dine with him.” + +“What, did you refuse to dine with him?” said old Dantès; “and did he +invite you to dine?” + +“Yes, my dear father,” replied Edmond, smiling at his father’s +astonishment at the excessive honor paid to his son. + +“And why did you refuse, my son?” inquired the old man. + +“That I might the sooner see you again, my dear father,” replied the +young man. “I was most anxious to see you.” + +“But it must have vexed M. Morrel, good, worthy man,” said Caderousse. +“And when you are looking forward to be captain, it was wrong to annoy +the owner.” + +“But I explained to him the cause of my refusal,” replied Dantès, “and +I hope he fully understood it.” + +“Yes, but to be captain one must do a little flattery to one’s +patrons.” + +“I hope to be captain without that,” said Dantès. + +“So much the better—so much the better! Nothing will give greater +pleasure to all your old friends; and I know one down there behind the +Saint Nicolas citadel who will not be sorry to hear it.” + +“Mercédès?” said the old man. + +“Yes, my dear father, and with your permission, now I have seen you, +and know you are well and have all you require, I will ask your consent +to go and pay a visit to the Catalans.” + +“Go, my dear boy,” said old Dantès; “and Heaven bless you in your wife, +as it has blessed me in my son!” + +“His wife!” said Caderousse; “why, how fast you go on, father Dantès; +she is not his wife yet, as it seems to me.” + +“No, but according to all probability she soon will be,” replied +Edmond. + +“Yes—yes,” said Caderousse; “but you were right to return as soon as +possible, my boy.” + +“And why?” + +“Because Mercédès is a very fine girl, and fine girls never lack +followers; she particularly has them by dozens.” + +“Really?” answered Edmond, with a smile which had in it traces of +slight uneasiness. + +0039m + + + +“Ah, yes,” continued Caderousse, “and capital offers, too; but you +know, you will be captain, and who could refuse you then?” + +“Meaning to say,” replied Dantès, with a smile which but ill-concealed +his trouble, “that if I were not a captain——” + +“Eh—eh!” said Caderousse, shaking his head. + +“Come, come,” said the sailor, “I have a better opinion than you of +women in general, and of Mercédès in particular; and I am certain that, +captain or not, she will remain ever faithful to me.” + +“So much the better—so much the better,” said Caderousse. “When one is +going to be married, there is nothing like implicit confidence; but +never mind that, my boy,—go and announce your arrival, and let her know +all your hopes and prospects.” + +“I will go directly,” was Edmond’s reply; and, embracing his father, +and nodding to Caderousse, he left the apartment. + +Caderousse lingered for a moment, then taking leave of old Dantès, he +went downstairs to rejoin Danglars, who awaited him at the corner of +the Rue Senac. + +“Well,” said Danglars, “did you see him?” + +“I have just left him,” answered Caderousse. + +“Did he allude to his hope of being captain?” + +“He spoke of it as a thing already decided.” + +“Indeed!” said Danglars, “he is in too much hurry, it appears to me.” + +“Why, it seems M. Morrel has promised him the thing.” + +“So that he is quite elated about it?” + +“Why, yes, he is actually insolent over the matter—has already offered +me his patronage, as if he were a grand personage, and proffered me a +loan of money, as though he were a banker.” + +“Which you refused?” + +“Most assuredly; although I might easily have accepted it, for it was I +who put into his hands the first silver he ever earned; but now M. +Dantès has no longer any occasion for assistance—he is about to become +a captain.” + +“Pooh!” said Danglars, “he is not one yet.” + +“_Ma foi!_ it will be as well if he is not,” answered Caderousse; “for +if he should be, there will be really no speaking to him.” + +“If we choose,” replied Danglars, “he will remain what he is; and +perhaps become even less than he is.” + +“What do you mean?” + +“Nothing—I was speaking to myself. And is he still in love with the +Catalane?” + +“Over head and ears; but, unless I am much mistaken, there will be a +storm in that quarter.” + +0041m + + + +“Explain yourself.” + +“Why should I?” + +“It is more important than you think, perhaps. You do not like Dantès?” + +“I never like upstarts.” + +“Then tell me all you know about the Catalane.” + +“I know nothing for certain; only I have seen things which induce me to +believe, as I told you, that the future captain will find some +annoyance in the vicinity of the Vieilles Infirmeries.” + +“What have you seen?—come, tell me!” + +“Well, every time I have seen Mercédès come into the city she has been +accompanied by a tall, strapping, black-eyed Catalan, with a red +complexion, brown skin, and fierce air, whom she calls cousin.” + +“Really; and you think this cousin pays her attentions?” + +“I only suppose so. What else can a strapping chap of twenty-one mean +with a fine wench of seventeen?” + +“And you say that Dantès has gone to the Catalans?” + +“He went before I came down.” + +“Let us go the same way; we will stop at La Réserve, and we can drink a +glass of La Malgue, whilst we wait for news.” + +“Come along,” said Caderousse; “but you pay the score.” + +“Of course,” replied Danglars; and going quickly to the designated +place, they called for a bottle of wine, and two glasses. + +Père Pamphile had seen Dantès pass not ten minutes before; and assured +that he was at the Catalans, they sat down under the budding foliage of +the planes and sycamores, in the branches of which the birds were +singing their welcome to one of the first days of spring. + + + + Chapter 3. The Catalans + +Beyond a bare, weather-worn wall, about a hundred paces from the spot +where the two friends sat looking and listening as they drank their +wine, was the village of the Catalans. Long ago this mysterious colony +quitted Spain, and settled on the tongue of land on which it is to this +day. Whence it came no one knew, and it spoke an unknown tongue. One of +its chiefs, who understood Provençal, begged the commune of Marseilles +to give them this bare and barren promontory, where, like the sailors +of old, they had run their boats ashore. The request was granted; and +three months afterwards, around the twelve or fifteen small vessels +which had brought these gypsies of the sea, a small village sprang up. +This village, constructed in a singular and picturesque manner, half +Moorish, half Spanish, still remains, and is inhabited by descendants +of the first comers, who speak the language of their fathers. For three +or four centuries they have remained upon this small promontory, on +which they had settled like a flight of seabirds, without mixing with +the Marseillaise population, intermarrying, and preserving their +original customs and the costume of their mother-country as they have +preserved its language. + +Our readers will follow us along the only street of this little +village, and enter with us one of the houses, which is sunburned to the +beautiful dead-leaf color peculiar to the buildings of the country, and +within coated with whitewash, like a Spanish posada. A young and +beautiful girl, with hair as black as jet, her eyes as velvety as the +gazelle’s, was leaning with her back against the wainscot, rubbing in +her slender delicately moulded fingers a bunch of heath blossoms, the +flowers of which she was picking off and strewing on the floor; her +arms, bare to the elbow, brown, and modelled after those of the +Arlesian Venus, moved with a kind of restless impatience, and she +tapped the earth with her arched and supple foot, so as to display the +pure and full shape of her well-turned leg, in its red cotton, gray and +blue clocked, stocking. At three paces from her, seated in a chair +which he balanced on two legs, leaning his elbow on an old worm-eaten +table, was a tall young man of twenty, or two-and-twenty, who was +looking at her with an air in which vexation and uneasiness were +mingled. He questioned her with his eyes, but the firm and steady gaze +of the young girl controlled his look. + +“You see, Mercédès,” said the young man, “here is Easter come round +again; tell me, is this the moment for a wedding?” + +“I have answered you a hundred times, Fernand, and really you must be +very stupid to ask me again.” + +“Well, repeat it,—repeat it, I beg of you, that I may at last believe +it! Tell me for the hundredth time that you refuse my love, which had +your mother’s sanction. Make me understand once for all that you are +trifling with my happiness, that my life or death are nothing to you. +Ah, to have dreamed for ten years of being your husband, Mercédès, and +to lose that hope, which was the only stay of my existence!” + +“At least it was not I who ever encouraged you in that hope, Fernand,” +replied Mercédès; “you cannot reproach me with the slightest coquetry. +I have always said to you, ‘I love you as a brother; but do not ask +from me more than sisterly affection, for my heart is another’s.’ Is +not this true, Fernand?” + +“Yes, that is very true, Mercédès,” replied the young man, “Yes, you +have been cruelly frank with me; but do you forget that it is among the +Catalans a sacred law to intermarry?” + +0045m + + + +“You mistake, Fernand; it is not a law, but merely a custom, and, I +pray of you, do not cite this custom in your favor. You are included in +the conscription, Fernand, and are only at liberty on sufferance, +liable at any moment to be called upon to take up arms. Once a soldier, +what would you do with me, a poor orphan, forlorn, without fortune, +with nothing but a half-ruined hut and a few ragged nets, the miserable +inheritance left by my father to my mother, and by my mother to me? She +has been dead a year, and you know, Fernand, I have subsisted almost +entirely on public charity. Sometimes you pretend I am useful to you, +and that is an excuse to share with me the produce of your fishing, and +I accept it, Fernand, because you are the son of my father’s brother, +because we were brought up together, and still more because it would +give you so much pain if I refuse. But I feel very deeply that this +fish which I go and sell, and with the produce of which I buy the flax +I spin,—I feel very keenly, Fernand, that this is charity.” + +“And if it were, Mercédès, poor and lone as you are, you suit me as +well as the daughter of the first shipowner or the richest banker of +Marseilles! What do such as we desire but a good wife and careful +housekeeper, and where can I look for these better than in you?” + +“Fernand,” answered Mercédès, shaking her head, “a woman becomes a bad +manager, and who shall say she will remain an honest woman, when she +loves another man better than her husband? Rest content with my +friendship, for I say once more that is all I can promise, and I will +promise no more than I can bestow.” + +“I understand,” replied Fernand, “you can endure your own wretchedness +patiently, but you are afraid to share mine. Well, Mercédès, beloved by +you, I would tempt fortune; you would bring me good luck, and I should +become rich. I could extend my occupation as a fisherman, might get a +place as clerk in a warehouse, and become in time a dealer myself.” + +“You could do no such thing, Fernand; you are a soldier, and if you +remain at the Catalans it is because there is no war; so remain a +fisherman, and contented with my friendship, as I cannot give you +more.” + +“Well, I will do better, Mercédès. I will be a sailor; instead of the +costume of our fathers, which you despise, I will wear a varnished hat, +a striped shirt, and a blue jacket, with an anchor on the buttons. +Would not that dress please you?” + +“What do you mean?” asked Mercédès, with an angry glance,—“what do you +mean? I do not understand you?” + +“I mean, Mercédès, that you are thus harsh and cruel with me, because +you are expecting someone who is thus attired; but perhaps he whom you +await is inconstant, or if he is not, the sea is so to him.” + +“Fernand,” cried Mercédès, “I believed you were good-hearted, and I was +mistaken! Fernand, you are wicked to call to your aid jealousy and the +anger of God! Yes, I will not deny it, I do await, and I do love him of +whom you speak; and, if he does not return, instead of accusing him of +the inconstancy which you insinuate, I will tell you that he died +loving me and me only.” The young girl made a gesture of rage. “I +understand you, Fernand; you would be revenged on him because I do not +love you; you would cross your Catalan knife with his dirk. What end +would that answer? To lose you my friendship if he were conquered, and +see that friendship changed into hate if you were victor. Believe me, +to seek a quarrel with a man is a bad method of pleasing the woman who +loves that man. No, Fernand, you will not thus give way to evil +thoughts. Unable to have me for your wife, you will content yourself +with having me for your friend and sister; and besides,” she added, her +eyes troubled and moistened with tears, “wait, wait, Fernand; you said +just now that the sea was treacherous, and he has been gone four +months, and during these four months there have been some terrible +storms.” + +Fernand made no reply, nor did he attempt to check the tears which +flowed down the cheeks of Mercédès, although for each of these tears he +would have shed his heart’s blood; but these tears flowed for another. +He arose, paced a while up and down the hut, and then, suddenly +stopping before Mercédès, with his eyes glowing and his hands +clenched,—“Say, Mercédès,” he said, “once for all, is this your final +determination?” + +“I love Edmond Dantès,” the young girl calmly replied, “and none but +Edmond shall ever be my husband.” + +“And you will always love him?” + +“As long as I live.” + +Fernand let fall his head like a defeated man, heaved a sigh that was +like a groan, and then suddenly looking her full in the face, with +clenched teeth and expanded nostrils, said,—“But if he is dead——” + +“If he is dead, I shall die too.” + +“If he has forgotten you——” + +“Mercédès!” called a joyous voice from without,—“Mercédès!” + +“Ah,” exclaimed the young girl, blushing with delight, and fairly +leaping in excess of love, “you see he has not forgotten me, for here +he is!” And rushing towards the door, she opened it, saying, “Here, +Edmond, here I am!” + +Fernand, pale and trembling, drew back, like a traveller at the sight +of a serpent, and fell into a chair beside him. Edmond and Mercédès +were clasped in each other’s arms. The burning Marseilles sun, which +shot into the room through the open door, covered them with a flood of +light. At first they saw nothing around them. Their intense happiness +isolated them from all the rest of the world, and they only spoke in +broken words, which are the tokens of a joy so extreme that they seem +rather the expression of sorrow. Suddenly Edmond saw the gloomy, pale, +and threatening countenance of Fernand, as it was defined in the +shadow. By a movement for which he could scarcely account to himself, +the young Catalan placed his hand on the knife at his belt. + +“Ah, your pardon,” said Dantès, frowning in his turn; “I did not +perceive that there were three of us.” Then, turning to Mercédès, he +inquired, “Who is this gentleman?” + +“One who will be your best friend, Dantès, for he is my friend, my +cousin, my brother; it is Fernand—the man whom, after you, Edmond, I +love the best in the world. Do you not remember him?” + +“Yes!” said Dantès, and without relinquishing Mercédès’ hand clasped in +one of his own, he extended the other to the Catalan with a cordial +air. But Fernand, instead of responding to this amiable gesture, +remained mute and trembling. Edmond then cast his eyes scrutinizingly +at the agitated and embarrassed Mercédès, and then again on the gloomy +and menacing Fernand. This look told him all, and his anger waxed hot. + +“I did not know, when I came with such haste to you, that I was to meet +an enemy here.” + +“An enemy!” cried Mercédès, with an angry look at her cousin. “An enemy +in my house, do you say, Edmond! If I believed that, I would place my +arm under yours and go with you to Marseilles, leaving the house to +return to it no more.” + +Fernand’s eye darted lightning. “And should any misfortune occur to +you, dear Edmond,” she continued with the same calmness which proved to +Fernand that the young girl had read the very innermost depths of his +sinister thought, “if misfortune should occur to you, I would ascend +the highest point of the Cape de Morgiou and cast myself headlong from +it.” + +Fernand became deadly pale. “But you are deceived, Edmond,” she +continued. “You have no enemy here—there is no one but Fernand, my +brother, who will grasp your hand as a devoted friend.” + +And at these words the young girl fixed her imperious look on the +Catalan, who, as if fascinated by it, came slowly towards Edmond, and +offered him his hand. His hatred, like a powerless though furious wave, +was broken against the strong ascendancy which Mercédès exercised over +him. Scarcely, however, had he touched Edmond’s hand when he felt he +had done all he could do, and rushed hastily out of the house. + +“Oh,” he exclaimed, running furiously and tearing his hair—“Oh, who +will deliver me from this man? Wretched—wretched that I am!” + +“Hallo, Catalan! Hallo, Fernand! where are you running to?” exclaimed a +voice. + +The young man stopped suddenly, looked around him, and perceived +Caderousse sitting at table with Danglars, under an arbor. + +“Well”, said Caderousse, “why don’t you come? Are you really in such a +hurry that you have no time to pass the time of day with your friends?” + +“Particularly when they have still a full bottle before them,” added +Danglars. Fernand looked at them both with a stupefied air, but did not +say a word. + +“He seems besotted,” said Danglars, pushing Caderousse with his knee. +“Are we mistaken, and is Dantès triumphant in spite of all we have +believed?” + +“Why, we must inquire into that,” was Caderousse’s reply; and turning +towards the young man, said, “Well, Catalan, can’t you make up your +mind?” + +Fernand wiped away the perspiration steaming from his brow, and slowly +entered the arbor, whose shade seemed to restore somewhat of calmness +to his senses, and whose coolness somewhat of refreshment to his +exhausted body. + +“Good-day,” said he. “You called me, didn’t you?” And he fell, rather +than sat down, on one of the seats which surrounded the table. + +“I called you because you were running like a madman, and I was afraid +you would throw yourself into the sea,” said Caderousse, laughing. +“Why, when a man has friends, they are not only to offer him a glass of +wine, but, moreover, to prevent his swallowing three or four pints of +water unnecessarily!” + +Fernand gave a groan, which resembled a sob, and dropped his head into +his hands, his elbows leaning on the table. + +“Well, Fernand, I must say,” said Caderousse, beginning the +conversation, with that brutality of the common people in which +curiosity destroys all diplomacy, “you look uncommonly like a rejected +lover;” and he burst into a hoarse laugh. + +“Bah!” said Danglars, “a lad of his make was not born to be unhappy in +love. You are laughing at him, Caderousse.” + +“No,” he replied, “only hark how he sighs! Come, come, Fernand,” said +Caderousse, “hold up your head, and answer us. It’s not polite not to +reply to friends who ask news of your health.” + +“My health is well enough,” said Fernand, clenching his hands without +raising his head. + +“Ah, you see, Danglars,” said Caderousse, winking at his friend, “this +is how it is; Fernand, whom you see here, is a good and brave Catalan, +one of the best fishermen in Marseilles, and he is in love with a very +fine girl, named Mercédès; but it appears, unfortunately, that the fine +girl is in love with the mate of the _Pharaon_; and as the _Pharaon_ +arrived today—why, you understand!” + +“No; I do not understand,” said Danglars. + +“Poor Fernand has been dismissed,” continued Caderousse. + +“Well, and what then?” said Fernand, lifting up his head, and looking +at Caderousse like a man who looks for someone on whom to vent his +anger; “Mercédès is not accountable to any person, is she? Is she not +free to love whomsoever she will?” + +“Oh, if you take it in that sense,” said Caderousse, “it is another +thing. But I thought you were a Catalan, and they told me the Catalans +were not men to allow themselves to be supplanted by a rival. It was +even told me that Fernand, especially, was terrible in his vengeance.” + +Fernand smiled piteously. “A lover is never terrible,” he said. + +“Poor fellow!” remarked Danglars, affecting to pity the young man from +the bottom of his heart. “Why, you see, he did not expect to see Dantès +return so suddenly—he thought he was dead, perhaps; or perchance +faithless! These things always come on us more severely when they come +suddenly.” + +“Ah, _ma foi_, under any circumstances!” said Caderousse, who drank as +he spoke, and on whom the fumes of the wine began to take +effect,—“under any circumstances Fernand is not the only person put out +by the fortunate arrival of Dantès; is he, Danglars?” + +“No, you are right—and I should say that would bring him ill-luck.” + +“Well, never mind,” answered Caderousse, pouring out a glass of wine +for Fernand, and filling his own for the eighth or ninth time, while +Danglars had merely sipped his. “Never mind—in the meantime he marries +Mercédès—the lovely Mercédès—at least he returns to do that.” + +During this time Danglars fixed his piercing glance on the young man, +on whose heart Caderousse’s words fell like molten lead. + +“And when is the wedding to be?” he asked. + +“Oh, it is not yet fixed!” murmured Fernand. + +“No, but it will be,” said Caderousse, “as surely as Dantès will be +captain of the _Pharaon_—eh, Danglars?” + +Danglars shuddered at this unexpected attack, and turned to Caderousse, +whose countenance he scrutinized, to try and detect whether the blow +was premeditated; but he read nothing but envy in a countenance already +rendered brutal and stupid by drunkenness. + +“Well,” said he, filling the glasses, “let us drink to Captain Edmond +Dantès, husband of the beautiful Catalane!” + +Caderousse raised his glass to his mouth with unsteady hand, and +swallowed the contents at a gulp. Fernand dashed his on the ground. + +“Eh, eh, eh!” stammered Caderousse. “What do I see down there by the +wall, in the direction of the Catalans? Look, Fernand, your eyes are +better than mine. I believe I see double. You know wine is a deceiver; +but I should say it was two lovers walking side by side, and hand in +hand. Heaven forgive me, they do not know that we can see them, and +they are actually embracing!” + +Danglars did not lose one pang that Fernand endured. + +“Do you know them, Fernand?” he said. + +“Yes,” was the reply, in a low voice. “It is Edmond and Mercédès!” + +“Ah, see there, now!” said Caderousse; “and I did not recognize them! +Hallo, Dantès! hello, lovely damsel! Come this way, and let us know +when the wedding is to be, for Fernand here is so obstinate he will not +tell us.” + +“Hold your tongue, will you?” said Danglars, pretending to restrain +Caderousse, who, with the tenacity of drunkards, leaned out of the +arbor. “Try to stand upright, and let the lovers make love without +interruption. See, look at Fernand, and follow his example; he is +well-behaved!” + +0051m + + + +Fernand, probably excited beyond bearing, pricked by Danglars, as the +bull is by the bandilleros, was about to rush out; for he had risen +from his seat, and seemed to be collecting himself to dash headlong +upon his rival, when Mercédès, smiling and graceful, lifted up her +lovely head, and looked at them with her clear and bright eyes. At this +Fernand recollected her threat of dying if Edmond died, and dropped +again heavily on his seat. Danglars looked at the two men, one after +the other, the one brutalized by liquor, the other overwhelmed with +love. + +“I shall get nothing from these fools,” he muttered; “and I am very +much afraid of being here between a drunkard and a coward. Here’s an +envious fellow making himself boozy on wine when he ought to be nursing +his wrath, and here is a fool who sees the woman he loves stolen from +under his nose and takes on like a big baby. Yet this Catalan has eyes +that glisten like those of the vengeful Spaniards, Sicilians, and +Calabrians, and the other has fists big enough to crush an ox at one +blow. Unquestionably, Edmond’s star is in the ascendant, and he will +marry the splendid girl—he will be captain, too, and laugh at us all, +unless”—a sinister smile passed over Danglars’ lips—“unless I take a +hand in the affair,” he added. + +“Hallo!” continued Caderousse, half-rising, and with his fist on the +table, “hallo, Edmond! do you not see your friends, or are you too +proud to speak to them?” + +“No, my dear fellow!” replied Dantès, “I am not proud, but I am happy, +and happiness blinds, I think, more than pride.” + +“Ah, very well, that’s an explanation!” said Caderousse. “How do you +do, Madame Dantès?” + +Mercédès courtesied gravely, and said—“That is not my name, and in my +country it bodes ill fortune, they say, to call a young girl by the +name of her betrothed before he becomes her husband. So call me +Mercédès, if you please.” + +“We must excuse our worthy neighbor, Caderousse,” said Dantès, “he is +so easily mistaken.” + +“So, then, the wedding is to take place immediately, M. Dantès,” said +Danglars, bowing to the young couple. + +“As soon as possible, M. Danglars; today all preliminaries will be +arranged at my father’s, and tomorrow, or next day at latest, the +wedding festival here at La Réserve. My friends will be there, I hope; +that is to say, you are invited, M. Danglars, and you, Caderousse.” + +“And Fernand,” said Caderousse with a chuckle; “Fernand, too, is +invited!” + +“My wife’s brother is my brother,” said Edmond; “and we, Mercédès and +I, should be very sorry if he were absent at such a time.” + +Fernand opened his mouth to reply, but his voice died on his lips, and +he could not utter a word. + +“Today the preliminaries, tomorrow or next day the ceremony! You are in +a hurry, captain!” + +“Danglars,” said Edmond, smiling, “I will say to you as Mercédès said +just now to Caderousse, ‘Do not give me a title which does not belong +to me’; that may bring me bad luck.” + +“Your pardon,” replied Danglars, “I merely said you seemed in a hurry, +and we have lots of time; the _Pharaon_ cannot be under weigh again in +less than three months.” + +“We are always in a hurry to be happy, M. Danglars; for when we have +suffered a long time, we have great difficulty in believing in good +fortune. But it is not selfishness alone that makes me thus in haste; I +must go to Paris.” + +“Ah, really?—to Paris! and will it be the first time you have ever been +there, Dantès?” + +“Yes.” + +“Have you business there?” + +“Not of my own; the last commission of poor Captain Leclere; you know +to what I allude, Danglars—it is sacred. Besides, I shall only take the +time to go and return.” + +“Yes, yes, I understand,” said Danglars, and then in a low tone, he +added, “To Paris, no doubt to deliver the letter which the grand +marshal gave him. Ah, this letter gives me an idea—a capital idea! Ah; +Dantès, my friend, you are not yet registered number one on board the +good ship _Pharaon_;” then turning towards Edmond, who was walking +away, “A pleasant journey,” he cried. + +“Thank you,” said Edmond with a friendly nod, and the two lovers +continued on their way, as calm and joyous as if they were the very +elect of heaven. + + + + Chapter 4. Conspiracy + +Danglars followed Edmond and Mercédès with his eyes until the two +lovers disappeared behind one of the angles of Fort Saint Nicolas; +then, turning round, he perceived Fernand, who had fallen, pale and +trembling, into his chair, while Caderousse stammered out the words of +a drinking-song. + +“Well, my dear sir,” said Danglars to Fernand, “here is a marriage +which does not appear to make everybody happy.” + +“It drives me to despair,” said Fernand. + +“Do you, then, love Mercédès?” + +“I adore her!” + +“For long?” + +“As long as I have known her—always.” + +“And you sit there, tearing your hair, instead of seeking to remedy +your condition; I did not think that was the way of your people.” + +“What would you have me do?” said Fernand. + +“How do I know? Is it my affair? I am not in love with Mademoiselle +Mercédès; but for you—in the words of the gospel, seek, and you shall +find.” + +“I have found already.” + +“What?” + +“I would stab the man, but the woman told me that if any misfortune +happened to her betrothed, she would kill herself.” + +“Pooh! Women say those things, but never do them.” + +“You do not know Mercédès; what she threatens she will do.” + +“Idiot!” muttered Danglars; “whether she kill herself or not, what +matter, provided Dantès is not captain?” + +“Before Mercédès should die,” replied Fernand, with the accents of +unshaken resolution, “I would die myself!” + +“That’s what I call love!” said Caderousse with a voice more tipsy than +ever. “That’s love, or I don’t know what love is.” + +“Come,” said Danglars, “you appear to me a good sort of fellow, and +hang me, I should like to help you, but——” + +“Yes,” said Caderousse, “but how?” + +“My dear fellow,” replied Danglars, “you are three parts drunk; finish +the bottle, and you will be completely so. Drink then, and do not +meddle with what we are discussing, for that requires all one’s wit and +cool judgment.” + +“I—drunk!” said Caderousse; “well that’s a good one! I could drink four +more such bottles; they are no bigger than cologne flasks. Père +Pamphile, more wine!” + +And Caderousse rattled his glass upon the table. + +“You were saying, sir——” said Fernand, awaiting with great anxiety the +end of this interrupted remark. + +“What was I saying? I forget. This drunken Caderousse has made me lose +the thread of my sentence.” + +“Drunk, if you like; so much the worse for those who fear wine, for it +is because they have bad thoughts which they are afraid the liquor will +extract from their hearts;” and Caderousse began to sing the two last +lines of a song very popular at the time: + +‘Tous les méchants sont buveurs d’eau; + +C’est bien prouvé par le déluge.’1 + + +“You said, sir, you would like to help me, but——” + +“Yes; but I added, to help you it would be sufficient that Dantès did +not marry her you love; and the marriage may easily be thwarted, +methinks, and yet Dantès need not die.” + +“Death alone can separate them,” remarked Fernand. + +“You talk like a noodle, my friend,” said Caderousse; “and here is +Danglars, who is a wide-awake, clever, deep fellow, who will prove to +you that you are wrong. Prove it, Danglars. I have answered for you. +Say there is no need why Dantès should die; it would, indeed, be a pity +he should. Dantès is a good fellow; I like Dantès. Dantès, your +health.” + +Fernand rose impatiently. “Let him run on,” said Danglars, restraining +the young man; “drunk as he is, he is not much out in what he says. +Absence severs as well as death, and if the walls of a prison were +between Edmond and Mercédès they would be as effectually separated as +if he lay under a tombstone.” + +0056m + + + +“Yes; but one gets out of prison,” said Caderousse, who, with what +sense was left him, listened eagerly to the conversation, “and when one +gets out and one’s name is Edmond Dantès, one seeks revenge——” + +“What matters that?” muttered Fernand. + +“And why, I should like to know,” persisted Caderousse, “should they +put Dantès in prison? he has neither robbed, nor killed, nor murdered.” + +“Hold your tongue!” said Danglars. + +“I won’t hold my tongue!” replied Caderousse; “I say I want to know why +they should put Dantès in prison; I like Dantès; Dantès, your health!” +and he swallowed another glass of wine. + +0057m + + + +Danglars saw in the muddled look of the tailor the progress of his +intoxication, and turning towards Fernand, said, “Well, you understand +there is no need to kill him.” + +“Certainly not, if, as you said just now, you have the means of having +Dantès arrested. Have you that means?” + +“It is to be found for the searching. But why should I meddle in the +matter? it is no affair of mine.” + +“I know not why you meddle,” said Fernand, seizing his arm; “but this I +know, you have some motive of personal hatred against Dantès, for he +who himself hates is never mistaken in the sentiments of others.” + +“I! motives of hatred against Dantès? None, on my word! I saw you were +unhappy, and your unhappiness interested me; that’s all; but since you +believe I act for my own account, adieu, my dear friend, get out of the +affair as best you may;” and Danglars rose as if he meant to depart. + +“No, no,” said Fernand, restraining him, “stay! It is of very little +consequence to me at the end of the matter whether you have any angry +feeling or not against Dantès. I hate him! I confess it openly. Do you +find the means, I will execute it, provided it is not to kill the man, +for Mercédès has declared she will kill herself if Dantès is killed.” + +Caderousse, who had let his head drop on the table, now raised it, and +looking at Fernand with his dull and fishy eyes, he said, “Kill Dantès! +who talks of killing Dantès? I won’t have him killed—I won’t! He’s my +friend, and this morning offered to share his money with me, as I +shared mine with him. I won’t have Dantès killed—I won’t!” + +“And who has said a word about killing him, muddlehead?” replied +Danglars. “We were merely joking; drink to his health,” he added, +filling Caderousse’s glass, “and do not interfere with us.” + +“Yes, yes, Dantès’ good health!” said Caderousse, emptying his glass, +“here’s to his health! his health—hurrah!” + +“But the means—the means?” said Fernand. + +“Have you not hit upon any?” asked Danglars. + +“No!—you undertook to do so.” + +“True,” replied Danglars; “the French have the superiority over the +Spaniards, that the Spaniards ruminate, while the French invent.” + +“Do you invent, then,” said Fernand impatiently. + +“Waiter,” said Danglars, “pen, ink, and paper.” + +“Pen, ink, and paper,” muttered Fernand. + +“Yes; I am a supercargo; pen, ink, and paper are my tools, and without +my tools I am fit for nothing.” + +“Pen, ink, and paper, then,” called Fernand loudly. + +“There’s what you want on that table,” said the waiter. + +“Bring them here.” The waiter did as he was desired. + +0059m + + + +“When one thinks,” said Caderousse, letting his hand drop on the paper, +“there is here wherewithal to kill a man more sure than if we waited at +the corner of a wood to assassinate him! I have always had more dread +of a pen, a bottle of ink, and a sheet of paper, than of a sword or +pistol.” + +“The fellow is not so drunk as he appears to be,” said Danglars. “Give +him some more wine, Fernand.” Fernand filled Caderousse’s glass, who, +like the confirmed toper he was, lifted his hand from the paper and +seized the glass. + +The Catalan watched him until Caderousse, almost overcome by this fresh +assault on his senses, rested, or rather dropped, his glass upon the +table. + +“Well!” resumed the Catalan, as he saw the final glimmer of +Caderousse’s reason vanishing before the last glass of wine. + +“Well, then, I should say, for instance,” resumed Danglars, “that if +after a voyage such as Dantès has just made, in which he touched at the +Island of Elba, someone were to denounce him to the king’s procureur as +a Bonapartist agent——” + +“I will denounce him!” exclaimed the young man hastily. + +“Yes, but they will make you then sign your declaration, and confront +you with him you have denounced; I will supply you with the means of +supporting your accusation, for I know the fact well. But Dantès cannot +remain forever in prison, and one day or other he will leave it, and +the day when he comes out, woe betide him who was the cause of his +incarceration!” + +“Oh, I should wish nothing better than that he would come and seek a +quarrel with me.” + +“Yes, and Mercédès! Mercédès, who will detest you if you have only the +misfortune to scratch the skin of her dearly beloved Edmond!” + +“True!” said Fernand. + +“No, no,” continued Danglars; “if we resolve on such a step, it would +be much better to take, as I now do, this pen, dip it into this ink, +and write with the left hand (that the writing may not be recognized) +the denunciation we propose.” And Danglars, uniting practice with +theory, wrote with his left hand, and in a writing reversed from his +usual style, and totally unlike it, the following lines, which he +handed to Fernand, and which Fernand read in an undertone: + +“The honorable, the king’s attorney, is informed by a friend of the +throne and religion, that one Edmond Dantès, mate of the ship +_Pharaon_, arrived this morning from Smyrna, after having touched at +Naples and Porto-Ferrajo, has been intrusted by Murat with a letter for +the usurper, and by the usurper with a letter for the Bonapartist +committee in Paris. Proof of this crime will be found on arresting him, +for the letter will be found upon him, or at his father’s, or in his +cabin on board the _Pharaon_.” + +“Very good,” resumed Danglars; “now your revenge looks like common +sense, for in no way can it revert to yourself, and the matter will +thus work its own way; there is nothing to do now but fold the letter +as I am doing, and write upon it, ‘To the king’s attorney,’ and that’s +all settled.” And Danglars wrote the address as he spoke. + +“Yes, and that’s all settled!” exclaimed Caderousse, who, by a last +effort of intellect, had followed the reading of the letter, and +instinctively comprehended all the misery which such a denunciation +must entail. “Yes, and that’s all settled; only it will be an infamous +shame;” and he stretched out his hand to reach the letter. + +“Yes,” said Danglars, taking it from beyond his reach; “and as what I +say and do is merely in jest, and I, amongst the first and foremost, +should be sorry if anything happened to Dantès—the worthy Dantès—look +here!” And taking the letter, he squeezed it up in his hands and threw +it into a corner of the arbor. + +“All right!” said Caderousse. “Dantès is my friend, and I won’t have +him ill-used.” + +“And who thinks of using him ill? Certainly neither I nor Fernand,” +said Danglars, rising and looking at the young man, who still remained +seated, but whose eye was fixed on the denunciatory sheet of paper +flung into the corner. + +“In this case,” replied Caderousse, “let’s have some more wine. I wish +to drink to the health of Edmond and the lovely Mercédès.” + +“You have had too much already, drunkard,” said Danglars; “and if you +continue, you will be compelled to sleep here, because unable to stand +on your legs.” + +“I?” said Caderousse, rising with all the offended dignity of a drunken +man, “I can’t keep on my legs? Why, I’ll wager I can go up into the +belfry of the Accoules, and without staggering, too!” + +“Done!” said Danglars, “I’ll take your bet; but tomorrow—today it is +time to return. Give me your arm, and let us go.” + +“Very well, let us go,” said Caderousse; “but I don’t want your arm at +all. Come, Fernand, won’t you return to Marseilles with us?” + +“No,” said Fernand; “I shall return to the Catalans.” + +“You’re wrong. Come with us to Marseilles—come along.” + +“I will not.” + +“What do you mean? you will not? Well, just as you like, my prince; +there’s liberty for all the world. Come along, Danglars, and let the +young gentleman return to the Catalans if he chooses.” + +Danglars took advantage of Caderousse’s temper at the moment, to take +him off towards Marseilles by the Porte Saint-Victor, staggering as he +went. + +When they had advanced about twenty yards, Danglars looked back and saw +Fernand stoop, pick up the crumpled paper, and putting it into his +pocket then rush out of the arbor towards Pillon. + +“Well,” said Caderousse, “why, what a lie he told! He said he was going +to the Catalans, and he is going to the city. Hallo, Fernand! You are +coming, my boy!” + +“Oh, you don’t see straight,” said Danglars; “he’s gone right by the +road to the Vieilles Infirmeries.” + +“Well,” said Caderousse, “I should have sworn that he turned to the +right—how treacherous wine is!” + +“Come, come,” said Danglars to himself, “now the thing is at work and +it will effect its purpose unassisted.” + + + + Chapter 5. The Marriage Feast + +The morning’s sun rose clear and resplendent, touching the foamy waves +into a network of ruby-tinted light. + +The feast had been made ready on the second floor at La Réserve, with +whose arbor the reader is already familiar. The apartment destined for +the purpose was spacious and lighted by a number of windows, over each +of which was written in golden letters for some inexplicable reason the +name of one of the principal cities of France; beneath these windows a +wooden balcony extended the entire length of the house. And although +the entertainment was fixed for twelve o’clock, an hour previous to +that time the balcony was filled with impatient and expectant guests, +consisting of the favored part of the crew of the _Pharaon_, and other +personal friends of the bridegroom, the whole of whom had arrayed +themselves in their choicest costumes, in order to do greater honor to +the occasion. + +Various rumors were afloat to the effect that the owners of the +_Pharaon_ had promised to attend the nuptial feast; but all seemed +unanimous in doubting that an act of such rare and exceeding +condescension could possibly be intended. + +Danglars, however, who now made his appearance, accompanied by +Caderousse, effectually confirmed the report, stating that he had +recently conversed with M. Morrel, who had himself assured him of his +intention to dine at La Réserve. + +In fact, a moment later M. Morrel appeared and was saluted with an +enthusiastic burst of applause from the crew of the _Pharaon_, who +hailed the visit of the shipowner as a sure indication that the man +whose wedding feast he thus delighted to honor would ere long be first +in command of the ship; and as Dantès was universally beloved on board +his vessel, the sailors put no restraint on their tumultuous joy at +finding that the opinion and choice of their superiors so exactly +coincided with their own. + +With the entrance of M. Morrel, Danglars and Caderousse were despatched +in search of the bridegroom to convey to him the intelligence of the +arrival of the important personage whose coming had created such a +lively sensation, and to beseech him to make haste. + +Danglars and Caderousse set off upon their errand at full speed; but +ere they had gone many steps they perceived a group advancing towards +them, composed of the betrothed pair, a party of young girls in +attendance on the bride, by whose side walked Dantès’ father; the whole +brought up by Fernand, whose lips wore their usual sinister smile. + +Neither Mercédès nor Edmond observed the strange expression of his +countenance; they were so happy that they were conscious only of the +sunshine and the presence of each other. + +Having acquitted themselves of their errand, and exchanged a hearty +shake of the hand with Edmond, Danglars and Caderousse took their +places beside Fernand and old Dantès,—the latter of whom attracted +universal notice. + +The old man was attired in a suit of glistening watered silk, trimmed +with steel buttons, beautifully cut and polished. His thin but wiry +legs were arrayed in a pair of richly embroidered clocked stockings, +evidently of English manufacture, while from his three-cornered hat +depended a long streaming knot of white and blue ribbons. Thus he came +along, supporting himself on a curiously carved stick, his aged +countenance lit up with happiness, looking for all the world like one +of the aged dandies of 1796, parading the newly opened gardens of the +Luxembourg and Tuileries. + +Beside him glided Caderousse, whose desire to partake of the good +things provided for the wedding party had induced him to become +reconciled to the Dantès, father and son, although there still lingered +in his mind a faint and unperfect recollection of the events of the +preceding night; just as the brain retains on waking in the morning the +dim and misty outline of a dream. + +0065m + + + +As Danglars approached the disappointed lover, he cast on him a look of +deep meaning, while Fernand, as he slowly paced behind the happy pair, +who seemed, in their own unmixed content, to have entirely forgotten +that such a being as himself existed, was pale and abstracted; +occasionally, however, a deep flush would overspread his countenance, +and a nervous contraction distort his features, while, with an agitated +and restless gaze, he would glance in the direction of Marseilles, like +one who either anticipated or foresaw some great and important event. + +Dantès himself was simply, but becomingly, clad in the dress peculiar +to the merchant service—a costume somewhat between a military and a +civil garb; and with his fine countenance, radiant with joy and +happiness, a more perfect specimen of manly beauty could scarcely be +imagined. + +Lovely as the Greek girls of Cyprus or Chios, Mercédès boasted the same +bright flashing eyes of jet, and ripe, round, coral lips. She moved +with the light, free step of an Arlesienne or an Andalusian. One more +practiced in the arts of great cities would have hid her blushes +beneath a veil, or, at least, have cast down her thickly fringed +lashes, so as to have concealed the liquid lustre of her animated eyes; +but, on the contrary, the delighted girl looked around her with a smile +that seemed to say: “If you are my friends, rejoice with me, for I am +very happy.” + +As soon as the bridal party came in sight of La Réserve, M. Morrel +descended and came forth to meet it, followed by the soldiers and +sailors there assembled, to whom he had repeated the promise already +given, that Dantès should be the successor to the late Captain Leclere. +Edmond, at the approach of his patron, respectfully placed the arm of +his affianced bride within that of M. Morrel, who, forthwith conducting +her up the flight of wooden steps leading to the chamber in which the +feast was prepared, was gayly followed by the guests, beneath whose +heavy tread the slight structure creaked and groaned for the space of +several minutes. + +“Father,” said Mercédès, stopping when she had reached the centre of +the table, “sit, I pray you, on my right hand; on my left I will place +him who has ever been as a brother to me,” pointing with a soft and +gentle smile to Fernand; but her words and look seemed to inflict the +direst torture on him, for his lips became ghastly pale, and even +beneath the dark hue of his complexion the blood might be seen +retreating as though some sudden pang drove it back to the heart. + +During this time, Dantès, at the opposite side of the table, had been +occupied in similarly placing his most honored guests. M. Morrel was +seated at his right hand, Danglars at his left; while, at a sign from +Edmond, the rest of the company ranged themselves as they found it most +agreeable. + +Then they began to pass around the dusky, piquant, Arlesian sausages, +and lobsters in their dazzling red cuirasses, prawns of large size and +brilliant color, the echinus with its prickly outside and dainty morsel +within, the clovis, esteemed by the epicures of the South as more than +rivalling the exquisite flavor of the oyster, North. All the +delicacies, in fact, that are cast up by the wash of waters on the +sandy beach, and styled by the grateful fishermen “fruits of the sea.” + +“A pretty silence truly!” said the old father of the bridegroom, as he +carried to his lips a glass of wine of the hue and brightness of the +topaz, and which had just been placed before Mercédès herself. “Now, +would anybody think that this room contained a happy, merry party, who +desire nothing better than to laugh and dance the hours away?” + +“Ah,” sighed Caderousse, “a man cannot always feel happy because he is +about to be married.” + +“The truth is,” replied Dantès, “that I am too happy for noisy mirth; +if that is what you meant by your observation, my worthy friend, you +are right; joy takes a strange effect at times, it seems to oppress us +almost the same as sorrow.” + +Danglars looked towards Fernand, whose excitable nature received and +betrayed each fresh impression. + +“Why, what ails you?” asked he of Edmond. “Do you fear any approaching +evil? I should say that you were the happiest man alive at this +instant.” + +“And that is the very thing that alarms me,” returned Dantès. “Man does +not appear to me to be intended to enjoy felicity so unmixed; happiness +is like the enchanted palaces we read of in our childhood, where +fierce, fiery dragons defend the entrance and approach; and monsters of +all shapes and kinds, requiring to be overcome ere victory is ours. I +own that I am lost in wonder to find myself promoted to an honor of +which I feel myself unworthy—that of being the husband of Mercédès.” + +“Nay, nay!” cried Caderousse, smiling, “you have not attained that +honor yet. Mercédès is not yet your wife. Just assume the tone and +manner of a husband, and see how she will remind you that your hour is +not yet come!” + +The bride blushed, while Fernand, restless and uneasy, seemed to start +at every fresh sound, and from time to time wiped away the large drops +of perspiration that gathered on his brow. + +“Well, never mind that, neighbor Caderousse; it is not worthwhile to +contradict me for such a trifle as that. ’Tis true that Mercédès is not +actually my wife; but,” added he, drawing out his watch, “in an hour +and a half she will be.” + +A general exclamation of surprise ran round the table, with the +exception of the elder Dantès, whose laugh displayed the still perfect +beauty of his large white teeth. Mercédès looked pleased and gratified, +while Fernand grasped the handle of his knife with a convulsive clutch. + +“In an hour?” inquired Danglars, turning pale. “How is that, my +friend?” + +“Why, thus it is,” replied Dantès. “Thanks to the influence of M. +Morrel, to whom, next to my father, I owe every blessing I enjoy, every +difficulty has been removed. We have purchased permission to waive the +usual delay; and at half-past two o’clock the Mayor of Marseilles will +be waiting for us at the city hall. Now, as a quarter-past one has +already struck, I do not consider I have asserted too much in saying, +that, in another hour and thirty minutes Mercédès will have become +Madame Dantès.” + +0069m + + + +Fernand closed his eyes, a burning sensation passed across his brow, +and he was compelled to support himself by the table to prevent his +falling from his chair; but in spite of all his efforts, he could not +refrain from uttering a deep groan, which, however, was lost amid the +noisy felicitations of the company. + +“Upon my word,” cried the old man, “you make short work of this kind of +affair. Arrived here only yesterday morning, and married today at three +o’clock! Commend me to a sailor for going the quick way to work!” + +“But,” asked Danglars, in a timid tone, “how did you manage about the +other formalities—the contract—the settlement?” + +“The contract,” answered Dantès, laughingly, “it didn’t take long to +fix that. Mercédès has no fortune; I have none to settle on her. So, +you see, our papers were quickly written out, and certainly do not come +very expensive.” This joke elicited a fresh burst of applause. + +“So that what we presumed to be merely the betrothal feast turns out to +be the actual wedding dinner!” said Danglars. + +“No, no,” answered Dantès; “don’t imagine I am going to put you off in +that shabby manner. Tomorrow morning I start for Paris; four days to +go, and the same to return, with one day to discharge the commission +entrusted to me, is all the time I shall be absent. I shall be back +here by the first of March, and on the second I give my real marriage +feast.” + +This prospect of fresh festivity redoubled the hilarity of the guests +to such a degree, that the elder Dantès, who, at the commencement of +the repast, had commented upon the silence that prevailed, now found it +difficult, amid the general din of voices, to obtain a moment’s +tranquillity in which to drink to the health and prosperity of the +bride and bridegroom. + +Dantès, perceiving the affectionate eagerness of his father, responded +by a look of grateful pleasure; while Mercédès glanced at the clock and +made an expressive gesture to Edmond. + +Around the table reigned that noisy hilarity which usually prevails at +such a time among people sufficiently free from the demands of social +position not to feel the trammels of etiquette. Such as at the +commencement of the repast had not been able to seat themselves +according to their inclination rose unceremoniously, and sought out +more agreeable companions. Everybody talked at once, without waiting +for a reply and each one seemed to be contented with expressing his or +her own thoughts. + +Fernand’s paleness appeared to have communicated itself to Danglars. As +for Fernand himself, he seemed to be enduring the tortures of the +damned; unable to rest, he was among the first to quit the table, and, +as though seeking to avoid the hilarious mirth that rose in such +deafening sounds, he continued, in utter silence, to pace the farther +end of the salon. + +Caderousse approached him just as Danglars, whom Fernand seemed most +anxious to avoid, had joined him in a corner of the room. + +“Upon my word,” said Caderousse, from whose mind the friendly treatment +of Dantès, united with the effect of the excellent wine he had partaken +of, had effaced every feeling of envy or jealousy at Dantès’ good +fortune,—“upon my word, Dantès is a downright good fellow, and when I +see him sitting there beside his pretty wife that is so soon to be. I +cannot help thinking it would have been a great pity to have served him +that trick you were planning yesterday.” + +“Oh, there was no harm meant,” answered Danglars; “at first I certainly +did feel somewhat uneasy as to what Fernand might be tempted to do; but +when I saw how completely he had mastered his feelings, even so far as +to become one of his rival’s attendants, I knew there was no further +cause for apprehension.” Caderousse looked full at Fernand—he was +ghastly pale. + +“Certainly,” continued Danglars, “the sacrifice was no trifling one, +when the beauty of the bride is concerned. Upon my soul, that future +captain of mine is a lucky dog! Gad! I only wish he would let me take +his place.” + +“Shall we not set forth?” asked the sweet, silvery voice of Mercédès; +“two o’clock has just struck, and you know we are expected in a quarter +of an hour.” + +0071m + + + +“To be sure!—to be sure!” cried Dantès, eagerly quitting the table; +“let us go directly!” + +His words were re-echoed by the whole party, with vociferous cheers. + +At this moment Danglars, who had been incessantly observing every +change in Fernand’s look and manner, saw him stagger and fall back, +with an almost convulsive spasm, against a seat placed near one of the +open windows. At the same instant his ear caught a sort of indistinct +sound on the stairs, followed by the measured tread of soldiery, with +the clanking of swords and military accoutrements; then came a hum and +buzz as of many voices, so as to deaden even the noisy mirth of the +bridal party, among whom a vague feeling of curiosity and apprehension +quelled every disposition to talk, and almost instantaneously the most +deathlike stillness prevailed. + +The sounds drew nearer. Three blows were struck upon the panel of the +door. The company looked at each other in consternation. + +“I demand admittance,” said a loud voice outside the room, “in the name +of the law!” As no attempt was made to prevent it, the door was opened, +and a magistrate, wearing his official scarf, presented himself, +followed by four soldiers and a corporal. Uneasiness now yielded to the +most extreme dread on the part of those present. + +“May I venture to inquire the reason of this unexpected visit?” said M. +Morrel, addressing the magistrate, whom he evidently knew; “there is +doubtless some mistake easily explained.” + +“If it be so,” replied the magistrate, “rely upon every reparation +being made; meanwhile, I am the bearer of an order of arrest, and +although I most reluctantly perform the task assigned me, it must, +nevertheless, be fulfilled. Who among the persons here assembled +answers to the name of Edmond Dantès?” + +Every eye was turned towards the young man who, spite of the agitation +he could not but feel, advanced with dignity, and said, in a firm +voice: + +“I am he; what is your pleasure with me?” + +“Edmond Dantès,” replied the magistrate, “I arrest you in the name of +the law!” + +“Me!” repeated Edmond, slightly changing color, “and wherefore, I +pray?” + +“I cannot inform you, but you will be duly acquainted with the reasons +that have rendered such a step necessary at the preliminary +examination.” + +M. Morrel felt that further resistance or remonstrance was useless. He +saw before him an officer delegated to enforce the law, and perfectly +well knew that it would be as unavailing to seek pity from a magistrate +decked with his official scarf, as to address a petition to some cold +marble effigy. Old Dantès, however, sprang forward. There are +situations which the heart of a father or a mother cannot be made to +understand. He prayed and supplicated in terms so moving, that even the +officer was touched, and, although firm in his duty, he kindly said, +“My worthy friend, let me beg of you to calm your apprehensions. Your +son has probably neglected some prescribed form or attention in +registering his cargo, and it is more than probable he will be set at +liberty directly he has given the information required, whether +touching the health of his crew, or the value of his freight.” + +“What is the meaning of all this?” inquired Caderousse, frowningly, of +Danglars, who had assumed an air of utter surprise. + +0073m + + + +“How can I tell you?” replied he; “I am, like yourself, utterly +bewildered at all that is going on, and cannot in the least make out +what it is about.” Caderousse then looked around for Fernand, but he +had disappeared. + +The scene of the previous night now came back to his mind with +startling clearness. The painful catastrophe he had just witnessed +appeared effectually to have rent away the veil which the intoxication +of the evening before had raised between himself and his memory. + +“So, so,” said he, in a hoarse and choking voice, to Danglars, “this, +then, I suppose, is a part of the trick you were concerting yesterday? +All I can say is, that if it be so, ’tis an ill turn, and well deserves +to bring double evil on those who have projected it.” + +“Nonsense,” returned Danglars, “I tell you again I have nothing +whatever to do with it; besides, you know very well that I tore the +paper to pieces.” + +“No, you did not!” answered Caderousse, “you merely threw it by—I saw +it lying in a corner.” + +“Hold your tongue, you fool!—what should you know about it?—why, you +were drunk!” + +“Where is Fernand?” inquired Caderousse. + +“How do I know?” replied Danglars; “gone, as every prudent man ought to +be, to look after his own affairs, most likely. Never mind where he is, +let you and I go and see what is to be done for our poor friends.” + +During this conversation, Dantès, after having exchanged a cheerful +shake of the hand with all his sympathizing friends, had surrendered +himself to the officer sent to arrest him, merely saying, “Make +yourselves quite easy, my good fellows, there is some little mistake to +clear up, that’s all, depend upon it; and very likely I may not have to +go so far as the prison to effect that.” + +0075m + + + +“Oh, to be sure!” responded Danglars, who had now approached the group, +“nothing more than a mistake, I feel quite certain.” + +Dantès descended the staircase, preceded by the magistrate, and +followed by the soldiers. A carriage awaited him at the door; he got +in, followed by two soldiers and the magistrate, and the vehicle drove +off towards Marseilles. + +“Adieu, adieu, dearest Edmond!” cried Mercédès, stretching out her arms +to him from the balcony. + +The prisoner heard the cry, which sounded like the sob of a broken +heart, and leaning from the coach he called out, “Good-bye, Mercédès—we +shall soon meet again!” Then the vehicle disappeared round one of the +turnings of Fort Saint Nicholas. + +“Wait for me here, all of you!” cried M. Morrel; “I will take the first +conveyance I find, and hurry to Marseilles, whence I will bring you +word how all is going on.” + +“That’s right!” exclaimed a multitude of voices, “go, and return as +quickly as you can!” + +This second departure was followed by a long and fearful state of +terrified silence on the part of those who were left behind. The old +father and Mercédès remained for some time apart, each absorbed in +grief; but at length the two poor victims of the same blow raised their +eyes, and with a simultaneous burst of feeling rushed into each other’s +arms. + +Meanwhile Fernand made his appearance, poured out for himself a glass +of water with a trembling hand; then hastily swallowing it, went to sit +down at the first vacant place, and this was, by mere chance, placed +next to the seat on which poor Mercédès had fallen half fainting, when +released from the warm and affectionate embrace of old Dantès. +Instinctively Fernand drew back his chair. + +“He is the cause of all this misery—I am quite sure of it,” whispered +Caderousse, who had never taken his eyes off Fernand, to Danglars. + +“I don’t think so,” answered the other; “he’s too stupid to imagine +such a scheme. I only hope the mischief will fall upon the head of +whoever wrought it.” + +“You don’t mention those who aided and abetted the deed,” said +Caderousse. + +“Surely,” answered Danglars, “one cannot be held responsible for every +chance arrow shot into the air.” + +“You can, indeed, when the arrow lights point downward on somebody’s +head.” + +Meantime the subject of the arrest was being canvassed in every +different form. + +“What think you, Danglars,” said one of the party, turning towards him, +“of this event?” + +“Why,” replied he, “I think it just possible Dantès may have been +detected with some trifling article on board ship considered here as +contraband.” + +“But how could he have done so without your knowledge, Danglars, since +you are the ship’s supercargo?” + +“Why, as for that, I could only know what I was told respecting the +merchandise with which the vessel was laden. I know she was loaded with +cotton, and that she took in her freight at Alexandria from Pastret’s +warehouse, and at Smyrna from Pascal’s; that is all I was obliged to +know, and I beg I may not be asked for any further particulars.” + +“Now I recollect,” said the afflicted old father; “my poor boy told me +yesterday he had got a small case of coffee, and another of tobacco for +me!” + +“There, you see,” exclaimed Danglars. “Now the mischief is out; depend +upon it the custom-house people went rummaging about the ship in our +absence, and discovered poor Dantès’ hidden treasures.” + +Mercédès, however, paid no heed to this explanation of her lover’s +arrest. Her grief, which she had hitherto tried to restrain, now burst +out in a violent fit of hysterical sobbing. + +“Come, come,” said the old man, “be comforted, my poor child; there is +still hope!” + +“Hope!” repeated Danglars. + +“Hope!” faintly murmured Fernand, but the word seemed to die away on +his pale agitated lips, and a convulsive spasm passed over his +countenance. + +“Good news! good news!” shouted forth one of the party stationed in the +balcony on the lookout. “Here comes M. Morrel back. No doubt, now, we +shall hear that our friend is released!” + +Mercédès and the old man rushed to meet the shipowner and greeted him +at the door. He was very pale. + +“What news?” exclaimed a general burst of voices. + +“Alas, my friends,” replied M. Morrel, with a mournful shake of his +head, “the thing has assumed a more serious aspect than I expected.” + +“Oh, indeed—indeed, sir, he is innocent!” sobbed forth Mercédès. + +“That I believe!” answered M. Morrel; “but still he is charged——” + +“With what?” inquired the elder Dantès. + +“With being an agent of the Bonapartist faction!” Many of our readers +may be able to recollect how formidable such an accusation became in +the period at which our story is dated. + +A despairing cry escaped the pale lips of Mercédès; the old man sank +into a chair. + +“Ah, Danglars!” whispered Caderousse, “you have deceived me—the trick +you spoke of last night has been played; but I cannot suffer a poor old +man or an innocent girl to die of grief through your fault. I am +determined to tell them all about it.” + +“Be silent, you simpleton!” cried Danglars, grasping him by the arm, +“or I will not answer even for your own safety. Who can tell whether +Dantès be innocent or guilty? The vessel did touch at Elba, where he +quitted it, and passed a whole day in the island. Now, should any +letters or other documents of a compromising character be found upon +him, will it not be taken for granted that all who uphold him are his +accomplices?” + +With the rapid instinct of selfishness, Caderousse readily perceived +the solidity of this mode of reasoning; he gazed, doubtfully, +wistfully, on Danglars, and then caution supplanted generosity. + +“Suppose we wait a while, and see what comes of it,” said he, casting a +bewildered look on his companion. + +“To be sure!” answered Danglars. “Let us wait, by all means. If he be +innocent, of course he will be set at liberty; if guilty, why, it is no +use involving ourselves in a conspiracy.” + +“Let us go, then. I cannot stay here any longer.” + +“With all my heart!” replied Danglars, pleased to find the other so +tractable. “Let us take ourselves out of the way, and leave things for +the present to take their course.” + +After their departure, Fernand, who had now again become the friend and +protector of Mercédès, led the girl to her home, while some friends of +Dantès conducted his father, nearly lifeless, to the Allées de Meilhan. + +The rumor of Edmond’s arrest as a Bonapartist agent was not slow in +circulating throughout the city. + +“Could you ever have credited such a thing, my dear Danglars?” asked M. +Morrel, as, on his return to the port for the purpose of gleaning fresh +tidings of Dantès, from M. de Villefort, the assistant procureur, he +overtook his supercargo and Caderousse. “Could you have believed such a +thing possible?” + +“Why, you know I told you,” replied Danglars, “that I considered the +circumstance of his having anchored at the Island of Elba as a very +suspicious circumstance.” + +“And did you mention these suspicions to any person beside myself?” + +0079m + + + +“Certainly not!” returned Danglars. Then added in a low whisper, “You +understand that, on account of your uncle, M. Policar Morrel, who +served under the _other_ government, and who does not altogether +conceal what he thinks on the subject, you are strongly suspected of +regretting the abdication of Napoleon. I should have feared to injure +both Edmond and yourself, had I divulged my own apprehensions to a +soul. I am too well aware that though a subordinate, like myself, is +bound to acquaint the shipowner with everything that occurs, there are +many things he ought most carefully to conceal from all else.” + +“’Tis well, Danglars—’tis well!” replied M. Morrel. “You are a worthy +fellow; and I had already thought of your interests in the event of +poor Edmond having become captain of the _Pharaon_.” + +“Is it possible you were so kind?” + +“Yes, indeed; I had previously inquired of Dantès what was his opinion +of you, and if he should have any reluctance to continue you in your +post, for somehow I have perceived a sort of coolness between you.” + +“And what was his reply?” + +“That he certainly did think he had given you offence in an affair +which he merely referred to without entering into particulars, but that +whoever possessed the good opinion and confidence of the ship’s owners +would have his preference also.” + +“The hypocrite!” murmured Danglars. + +“Poor Dantès!” said Caderousse. “No one can deny his being a +noble-hearted young fellow.” + +“But meanwhile,” continued M. Morrel, “here is the _Pharaon_ without a +captain.” + +“Oh,” replied Danglars, “since we cannot leave this port for the next +three months, let us hope that ere the expiration of that period Dantès +will be set at liberty.” + +“No doubt; but in the meantime?” + +“I am entirely at your service, M. Morrel,” answered Danglars. “You +know that I am as capable of managing a ship as the most experienced +captain in the service; and it will be so far advantageous to you to +accept my services, that upon Edmond’s release from prison no further +change will be requisite on board the _Pharaon_ than for Dantès and +myself each to resume our respective posts.” + +“Thanks, Danglars—that will smooth over all difficulties. I fully +authorize you at once to assume the command of the _Pharaon_, and look +carefully to the unloading of her freight. Private misfortunes must +never be allowed to interfere with business.” + +“Be easy on that score, M. Morrel; but do you think we shall be +permitted to see our poor Edmond?” + +“I will let you know that directly I have seen M. de Villefort, whom I +shall endeavor to interest in Edmond’s favor. I am aware he is a +furious royalist; but, in spite of that, and of his being king’s +attorney, he is a man like ourselves, and I fancy not a bad sort of +one.” + +“Perhaps not,” replied Danglars; “but I hear that he is ambitious, and +that’s rather against him.” + +“Well, well,” returned M. Morrel, “we shall see. But now hasten on +board, I will join you there ere long.” + +So saying, the worthy shipowner quitted the two allies, and proceeded +in the direction of the Palais de Justice. + +0081m + + + +“You see,” said Danglars, addressing Caderousse, “the turn things have +taken. Do you still feel any desire to stand up in his defence?” + +“Not the slightest, but yet it seems to me a shocking thing that a mere +joke should lead to such consequences.” + +“But who perpetrated that joke, let me ask? neither you nor myself, but +Fernand; you knew very well that I threw the paper into a corner of the +room—indeed, I fancied I had destroyed it.” + +“Oh, no,” replied Caderousse, “that I can answer for, you did not. I +only wish I could see it now as plainly as I saw it lying all crushed +and crumpled in a corner of the arbor.” + +“Well, then, if you did, depend upon it, Fernand picked it up, and +either copied it or caused it to be copied; perhaps, even, he did not +take the trouble of recopying it. And now I think of it, by Heavens, he +may have sent the letter itself! Fortunately, for me, the handwriting +was disguised.” + +“Then you were aware of Dantès being engaged in a conspiracy?” + +“Not I. As I before said, I thought the whole thing was a joke, nothing +more. It seems, however, that I have unconsciously stumbled upon the +truth.” + +“Still,” argued Caderousse, “I would give a great deal if nothing of +the kind had happened; or, at least, that I had had no hand in it. You +will see, Danglars, that it will turn out an unlucky job for both of +us.” + +“Nonsense! If any harm come of it, it should fall on the guilty person; +and that, you know, is Fernand. How can we be implicated in any way? +All we have got to do is, to keep our own counsel, and remain perfectly +quiet, not breathing a word to any living soul; and you will see that +the storm will pass away without in the least affecting us.” + +“Amen!” responded Caderousse, waving his hand in token of adieu to +Danglars, and bending his steps towards the Allées de Meilhan, moving +his head to and fro, and muttering as he went, after the manner of one +whose mind was overcharged with one absorbing idea. + +“So far, then,” said Danglars, mentally, “all has gone as I would have +it. I am, temporarily, commander of the _Pharaon_, with the certainty +of being permanently so, if that fool of a Caderousse can be persuaded +to hold his tongue. My only fear is the chance of Dantès being +released. But, there, he is in the hands of Justice; and,” added he +with a smile, “she will take her own.” So saying, he leaped into a +boat, desiring to be rowed on board the _Pharaon_, where M. Morrel had +agreed to meet him. + + + + Chapter 6. The Deputy Procureur du Roi + +In one of the aristocratic mansions built by Puget in the Rue du Grand +Cours opposite the Medusa fountain, a second marriage feast was being +celebrated, almost at the same hour with the nuptial repast given by +Dantès. In this case, however, although the occasion of the +entertainment was similar, the company was strikingly dissimilar. +Instead of a rude mixture of sailors, soldiers, and those belonging to +the humblest grade of life, the present assembly was composed of the +very flower of Marseilles society,—magistrates who had resigned their +office during the usurper’s reign; officers who had deserted from the +imperial army and joined forces with Condé; and younger members of +families, brought up to hate and execrate the man whom five years of +exile would convert into a martyr, and fifteen of restoration elevate +to the rank of a god. + +The guests were still at table, and the heated and energetic +conversation that prevailed betrayed the violent and vindictive +passions that then agitated each dweller of the South, where unhappily, +for five centuries religious strife had long given increased bitterness +to the violence of party feeling. + +The emperor, now king of the petty Island of Elba, after having held +sovereign sway over one-half of the world, counting as his subjects a +small population of five or six thousand souls,—after having been +accustomed to hear the “_Vive Napoléons_” of a hundred and twenty +millions of human beings, uttered in ten different languages,—was +looked upon here as a ruined man, separated forever from any fresh +connection with France or claim to her throne. + +The magistrates freely discussed their political views; the military +part of the company talked unreservedly of Moscow and Leipsic, while +the women commented on the divorce of Josephine. It was not over the +downfall of the man, but over the defeat of the Napoleonic idea, that +they rejoiced, and in this they foresaw for themselves the bright and +cheering prospect of a revivified political existence. + +An old man, decorated with the cross of Saint Louis, now rose and +proposed the health of King Louis XVIII. It was the Marquis de +Saint-Méran. This toast, recalling at once the patient exile of +Hartwell and the peace-loving King of France, excited universal +enthusiasm; glasses were elevated in the air _à l’Anglaise_, and the +ladies, snatching their bouquets from their fair bosoms, strewed the +table with their floral treasures. In a word, an almost poetical fervor +prevailed. + +“Ah,” said the Marquise de Saint-Méran, a woman with a stern, +forbidding eye, though still noble and distinguished in appearance, +despite her fifty years—“ah, these revolutionists, who have driven us +from those very possessions they afterwards purchased for a mere trifle +during the Reign of Terror, would be compelled to own, were they here, +that all true devotion was on our side, since we were content to follow +the fortunes of a falling monarch, while they, on the contrary, made +their fortune by worshipping the rising sun; yes, yes, they could not +help admitting that the king, for whom we sacrificed rank, wealth, and +station was truly our ‘Louis the well-beloved,’ while their wretched +usurper has been, and ever will be, to them their evil genius, their +‘Napoleon the accursed.’ Am I not right, Villefort?” + +“I beg your pardon, madame. I really must pray you to excuse me, but—in +truth—I was not attending to the conversation.” + +“Marquise, marquise!” interposed the old nobleman who had proposed the +toast, “let the young people alone; let me tell you, on one’s wedding +day there are more agreeable subjects of conversation than dry +politics.” + +“Never mind, dearest mother,” said a young and lovely girl, with a +profusion of light brown hair, and eyes that seemed to float in liquid +crystal, “’tis all my fault for seizing upon M. de Villefort, so as to +prevent his listening to what you said. But there—now take him—he is +your own for as long as you like. M. Villefort, I beg to remind you my +mother speaks to you.” + +“If the marquise will deign to repeat the words I but imperfectly +caught, I shall be delighted to answer,” said M. de Villefort. + +“Never mind, Renée,” replied the marquise, with a look of tenderness +that seemed out of keeping with her harsh dry features; but, however +all other feelings may be withered in a woman’s nature, there is always +one bright smiling spot in the desert of her heart, and that is the +shrine of maternal love. “I forgive you. What I was saying, Villefort, +was, that the Bonapartists had not our sincerity, enthusiasm, or +devotion.” + +“They had, however, what supplied the place of those fine qualities,” +replied the young man, “and that was fanaticism. Napoleon is the +Mahomet of the West, and is worshipped by his commonplace but ambitious +followers, not only as a leader and lawgiver, but also as the +personification of equality.” + +“He!” cried the marquise: “Napoleon the type of equality! For mercy’s +sake, then, what would you call Robespierre? Come, come, do not strip +the latter of his just rights to bestow them on the Corsican, who, to +my mind, has usurped quite enough.” + +0085m + + + +“Nay, madame; I would place each of these heroes on his right +pedestal—that of Robespierre on his scaffold in the Place Louis Quinze; +that of Napoleon on the column of the Place Vendôme. The only +difference consists in the opposite character of the equality advocated +by these two men; one is the equality that elevates, the other is the +equality that degrades; one brings a king within reach of the +guillotine, the other elevates the people to a level with the throne. +Observe,” said Villefort, smiling, “I do not mean to deny that both +these men were revolutionary scoundrels, and that the 9th Thermidor and +the 4th of April, in the year 1814, were lucky days for France, worthy +of being gratefully remembered by every friend to monarchy and civil +order; and that explains how it comes to pass that, fallen, as I trust +he is forever, Napoleon has still retained a train of parasitical +satellites. Still, marquise, it has been so with other +usurpers—Cromwell, for instance, who was not half so bad as Napoleon, +had his partisans and advocates.” + +“Do you know, Villefort, that you are talking in a most dreadfully +revolutionary strain? But I excuse it, it is impossible to expect the +son of a Girondin to be free from a small spice of the old leaven.” A +deep crimson suffused the countenance of Villefort. + +“’Tis true, madame,” answered he, “that my father was a Girondin, but +he was not among the number of those who voted for the king’s death; he +was an equal sufferer with yourself during the Reign of Terror, and had +well-nigh lost his head on the same scaffold on which your father +perished.” + +“True,” replied the marquise, without wincing in the slightest degree +at the tragic remembrance thus called up; “but bear in mind, if you +please, that our respective parents underwent persecution and +proscription from diametrically opposite principles; in proof of which +I may remark, that while my family remained among the staunchest +adherents of the exiled princes, your father lost no time in joining +the new government; and that while the Citizen Noirtier was a Girondin, +the Count Noirtier became a senator.” + +“Dear mother,” interposed Renée, “you know very well it was agreed that +all these disagreeable reminiscences should forever be laid aside.” + +“Suffer me, also, madame,” replied Villefort, “to add my earnest +request to Mademoiselle de Saint-Méran’s, that you will kindly allow +the veil of oblivion to cover and conceal the past. What avails +recrimination over matters wholly past recall? For my own part, I have +laid aside even the name of my father, and altogether disown his +political principles. He was—nay, probably may still be—a Bonapartist, +and is called Noirtier; I, on the contrary, am a staunch royalist, and +style myself de Villefort. Let what may remain of revolutionary sap +exhaust itself and die away with the old trunk, and condescend only to +regard the young shoot which has started up at a distance from the +parent tree, without having the power, any more than the wish, to +separate entirely from the stock from which it sprung.” + +“Bravo, Villefort!” cried the marquis; “excellently well said! Come, +now, I have hopes of obtaining what I have been for years endeavoring +to persuade the marquise to promise; namely, a perfect amnesty and +forgetfulness of the past.” + +“With all my heart,” replied the marquise; “let the past be forever +forgotten. I promise you it affords _me_ as little pleasure to revive +it as it does you. All I ask is, that Villefort will be firm and +inflexible for the future in his political principles. Remember, also, +Villefort, that we have pledged ourselves to his majesty for your +fealty and strict loyalty, and that at our recommendation the king +consented to forget the past, as I do” (and here she extended to him +her hand)—“as I now do at your entreaty. But bear in mind, that should +there fall in your way anyone guilty of conspiring against the +government, you will be so much the more bound to visit the offence +with rigorous punishment, as it is known you belong to a suspected +family.” + +“Alas, madame,” returned Villefort, “my profession, as well as the +times in which we live, compels me to be severe. I have already +successfully conducted several public prosecutions, and brought the +offenders to merited punishment. But we have not done with the thing +yet.” + +0087m + + + +“Do you, indeed, think so?” inquired the marquise. + +“I am, at least, fearful of it. Napoleon, in the Island of Elba, is too +near France, and his proximity keeps up the hopes of his partisans. +Marseilles is filled with half-pay officers, who are daily, under one +frivolous pretext or other, getting up quarrels with the royalists; +from hence arise continual and fatal duels among the higher classes of +persons, and assassinations in the lower.” + +“You have heard, perhaps,” said the Comte de Salvieux, one of M. de +Saint-Méran’s oldest friends, and chamberlain to the Comte d’Artois, +“that the Holy Alliance purpose removing him from thence?” + +“Yes; they were talking about it when we left Paris,” said M. de +Saint-Méran; “and where is it decided to transfer him?” + +“To Saint Helena.” + +“For heaven’s sake, where is that?” asked the marquise. + +“An island situated on the other side of the equator, at least two +thousand leagues from here,” replied the count. + +“So much the better. As Villefort observes, it is a great act of folly +to have left such a man between Corsica, where he was born, and Naples, +of which his brother-in-law is king, and face to face with Italy, the +sovereignty of which he coveted for his son.” + +“Unfortunately,” said Villefort, “there are the treaties of 1814, and +we cannot molest Napoleon without breaking those compacts.” + +“Oh, well, we shall find some way out of it,” responded M. de Salvieux. +“There wasn’t any trouble over treaties when it was a question of +shooting the poor Duc d’Enghien.” + +“Well,” said the marquise, “it seems probable that, by the aid of the +Holy Alliance, we shall be rid of Napoleon; and we must trust to the +vigilance of M. de Villefort to purify Marseilles of his partisans. The +king is either a king or no king; if he be acknowledged as sovereign of +France, he should be upheld in peace and tranquillity; and this can +best be effected by employing the most inflexible agents to put down +every attempt at conspiracy—’tis the best and surest means of +preventing mischief.” + +“Unfortunately, madame,” answered Villefort, “the strong arm of the law +is not called upon to interfere until the evil has taken place.” + +“Then all he has got to do is to endeavor to repair it.” + +“Nay, madame, the law is frequently powerless to effect this; all it +can do is to avenge the wrong done.” + +“Oh, M. de Villefort,” cried a beautiful young creature, daughter to +the Comte de Salvieux, and the cherished friend of Mademoiselle de +Saint-Méran, “do try and get up some famous trial while we are at +Marseilles. I never was in a law-court; I am told it is so very +amusing!” + +“Amusing, certainly,” replied the young man, “inasmuch as, instead of +shedding tears as at the fictitious tale of woe produced at a theatre, +you behold in a law-court a case of real and genuine distress—a drama +of life. The prisoner whom you there see pale, agitated, and alarmed, +instead of—as is the case when a curtain falls on a tragedy—going home +to sup peacefully with his family, and then retiring to rest, that he +may recommence his mimic woes on the morrow,—is removed from your sight +merely to be reconducted to his prison and delivered up to the +executioner. I leave you to judge how far your nerves are calculated to +bear you through such a scene. Of this, however, be assured, that +should any favorable opportunity present itself, I will not fail to +offer you the choice of being present.” + +“For shame, M. de Villefort!” said Renée, becoming quite pale; “don’t +you see how you are frightening us?—and yet you laugh.” + +“What would you have? ’Tis like a duel. I have already recorded +sentence of death, five or six times, against the movers of political +conspiracies, and who can say how many daggers may be ready sharpened, +and only waiting a favorable opportunity to be buried in my heart?” + +“Gracious heavens, M. de Villefort,” said Renée, becoming more and more +terrified; “you surely are not in earnest.” + +“Indeed I am,” replied the young magistrate with a smile; “and in the +interesting trial that young lady is anxious to witness, the case would +only be still more aggravated. Suppose, for instance, the prisoner, as +is more than probable, to have served under Napoleon—well, can you +expect for an instant, that one accustomed, at the word of his +commander, to rush fearlessly on the very bayonets of his foe, will +scruple more to drive a stiletto into the heart of one he knows to be +his personal enemy, than to slaughter his fellow-creatures, merely +because bidden to do so by one he is bound to obey? Besides, one +requires the excitement of being hateful in the eyes of the accused, in +order to lash one’s self into a state of sufficient vehemence and +power. I would not choose to see the man against whom I pleaded smile, +as though in mockery of my words. No; my pride is to see the accused +pale, agitated, and as though beaten out of all composure by the fire +of my eloquence.” Renée uttered a smothered exclamation. + +“Bravo!” cried one of the guests; “that is what I call talking to some +purpose.” + +“Just the person we require at a time like the present,” said a second. + +“What a splendid business that last case of yours was, my dear +Villefort!” remarked a third; “I mean the trial of the man for +murdering his father. Upon my word, you killed him ere the executioner +had laid his hand upon him.” + +“Oh, as for parricides, and such dreadful people as that,” interposed +Renée, “it matters very little what is done to them; but as regards +poor unfortunate creatures whose only crime consists in having mixed +themselves up in political intrigues——” + +“Why, that is the very worst offence they could possibly commit; for, +don’t you see, Renée, the king is the father of his people, and he who +shall plot or contrive aught against the life and safety of the parent +of thirty-two millions of souls, is a parricide upon a fearfully great +scale?” + +“I don’t know anything about that,” replied Renée; “but, M. de +Villefort, you have promised me—have you not?—always to show mercy to +those I plead for.” + +“Make yourself quite easy on that point,” answered Villefort, with one +of his sweetest smiles; “you and I will always consult upon our +verdicts.” + +“My love,” said the marquise, “attend to your doves, your lap-dogs, and +embroidery, but do not meddle with what you do not understand. Nowadays +the military profession is in abeyance and the magisterial robe is the +badge of honor. There is a wise Latin proverb that is very much in +point.” + +“_Cedant arma togæ_,” said Villefort with a bow. + +“I cannot speak Latin,” responded the marquise. + +“Well,” said Renée, “I cannot help regretting you had not chosen some +other profession than your own—a physician, for instance. Do you know I +always felt a shudder at the idea of even a _destroying_ angel?” + +“Dear, good Renée,” whispered Villefort, as he gazed with unutterable +tenderness on the lovely speaker. + +“Let us hope, my child,” cried the marquis, “that M. de Villefort may +prove the moral and political physician of this province; if so, he +will have achieved a noble work.” + +“And one which will go far to efface the recollection of his father’s +conduct,” added the incorrigible marquise. + +“Madame,” replied Villefort, with a mournful smile, “I have already had +the honor to observe that my father has—at least, I hope so—abjured his +past errors, and that he is, at the present moment, a firm and zealous +friend to religion and order—a better royalist, possibly, than his son; +for he has to atone for past dereliction, while I have no other impulse +than warm, decided preference and conviction.” Having made this +well-turned speech, Villefort looked carefully around to mark the +effect of his oratory, much as he would have done had he been +addressing the bench in open court. + +“Do you know, my dear Villefort,” cried the Comte de Salvieux, “that is +exactly what I myself said the other day at the Tuileries, when +questioned by his majesty’s principal chamberlain touching the +singularity of an alliance between the son of a Girondin and the +daughter of an officer of the Duc de Condé; and I assure you he seemed +fully to comprehend that this mode of reconciling political differences +was based upon sound and excellent principles. Then the king, who, +without our suspecting it, had overheard our conversation, interrupted +us by saying, ‘Villefort’—observe that the king did not pronounce the +word Noirtier, but, on the contrary, placed considerable emphasis on +that of Villefort—‘Villefort,’ said his majesty, ‘is a young man of +great judgment and discretion, who will be sure to make a figure in his +profession; I like him much, and it gave me great pleasure to hear that +he was about to become the son-in-law of the Marquis and Marquise de +Saint-Méran. I should myself have recommended the match, had not the +noble marquis anticipated my wishes by requesting my consent to it.’” + +“Is it possible the king could have condescended so far as to express +himself so favorably of me?” asked the enraptured Villefort. + +“I give you his very words; and if the marquis chooses to be candid, he +will confess that they perfectly agree with what his majesty said to +him, when he went six months ago to consult him upon the subject of +your espousing his daughter.” + +0091m + + + +“That is true,” answered the marquis. + +“How much do I owe this gracious prince! What is there I would not do +to evince my earnest gratitude!” + +“That is right,” cried the marquise. “I love to see you thus. Now, +then, were a conspirator to fall into your hands, he would be most +welcome.” + +“For my part, dear mother,” interposed Renée, “I trust your wishes will +not prosper, and that Providence will only permit petty offenders, poor +debtors, and miserable cheats to fall into M. de Villefort’s +hands,—then I shall be contented.” + +“Just the same as though you prayed that a physician might only be +called upon to prescribe for headaches, measles, and the stings of +wasps, or any other slight affection of the epidermis. If you wish to +see me the king’s attorney, you must desire for me some of those +violent and dangerous diseases from the cure of which so much honor +redounds to the physician.” + +At this moment, and as though the utterance of Villefort’s wish had +sufficed to effect its accomplishment, a servant entered the room, and +whispered a few words in his ear. Villefort immediately rose from table +and quitted the room upon the plea of urgent business; he soon, +however, returned, his whole face beaming with delight. Renée regarded +him with fond affection; and certainly his handsome features, lit up as +they then were with more than usual fire and animation, seemed formed +to excite the innocent admiration with which she gazed on her graceful +and intelligent lover. + +“You were wishing just now,” said Villefort, addressing her, “that I +were a doctor instead of a lawyer. Well, I at least resemble the +disciples of Esculapius in one thing [people spoke in this style in +1815], that of not being able to call a day my own, not even that of my +betrothal.” + +“And wherefore were you called away just now?” asked Mademoiselle de +Saint-Méran, with an air of deep interest. + +“For a very serious matter, which bids fair to make work for the +executioner.” + +“How dreadful!” exclaimed Renée, turning pale. + +“Is it possible?” burst simultaneously from all who were near enough to +the magistrate to hear his words. + +“Why, if my information prove correct, a sort of Bonapartist conspiracy +has just been discovered.” + +“Can I believe my ears?” cried the marquise. + +“I will read you the letter containing the accusation, at least,” said +Villefort: + +“‘The king’s attorney is informed by a friend to the throne and the +religious institutions of his country, that one named Edmond Dantès, +mate of the ship _Pharaon_, this day arrived from Smyrna, after having +touched at Naples and Porto-Ferrajo, has been the bearer of a letter +from Murat to the usurper, and again taken charge of another letter +from the usurper to the Bonapartist club in Paris. Ample corroboration +of this statement may be obtained by arresting the above-mentioned +Edmond Dantès, who either carries the letter for Paris about with him, +or has it at his father’s abode. Should it not be found in the +possession of father or son, then it will assuredly be discovered in +the cabin belonging to the said Dantès on board the _Pharaon_.’” + +“But,” said Renée, “this letter, which, after all, is but an anonymous +scrawl, is not even addressed to you, but to the king’s attorney.” + +0093m + + + +“True; but that gentleman being absent, his secretary, by his orders, +opened his letters; thinking this one of importance, he sent for me, +but not finding me, took upon himself to give the necessary orders for +arresting the accused party.” + +“Then the guilty person is absolutely in custody?” said the marquise. + +“Nay, dear mother, say the accused person. You know we cannot yet +pronounce him guilty.” + +“He is in safe custody,” answered Villefort; “and rely upon it, if the +letter is found, he will not be likely to be trusted abroad again, +unless he goes forth under the especial protection of the headsman.” + +“And where is the unfortunate being?” asked Renée. + +“He is at my house.” + +“Come, come, my friend,” interrupted the marquise, “do not neglect your +duty to linger with us. You are the king’s servant, and must go +wherever that service calls you.” + +“Oh, Villefort!” cried Renée, clasping her hands, and looking towards +her lover with piteous earnestness, “be merciful on this the day of our +betrothal.” + +The young man passed round to the side of the table where the fair +pleader sat, and leaning over her chair said tenderly: + +“To give you pleasure, my sweet Renée, I promise to show all the lenity +in my power; but if the charges brought against this Bonapartist hero +prove correct, why, then, you really must give me leave to order his +head to be cut off.” + +Renée shuddered at the word _cut_, for the growth in question had a +head. + +“Never mind that foolish girl, Villefort,” said the marquise. “She will +soon get over these things.” So saying, Madame de Saint-Méran extended +her dry bony hand to Villefort, who, while imprinting a son-in-law’s +respectful salute on it, looked at Renée, as much as to say, “I must +try and fancy ’tis your dear hand I kiss, as it should have been.” + +“These are mournful auspices to accompany a betrothal,” sighed poor +Renée. + +“Upon my word, child!” exclaimed the angry marquise, “your folly +exceeds all bounds. I should be glad to know what connection there can +possibly be between your sickly sentimentality and the affairs of the +state!” + +“Oh, mother!” murmured Renée. + +“Nay, madame, I pray you pardon this little traitor. I promise you that +to make up for her want of loyalty, I will be most inflexibly severe;” +then casting an expressive glance at his betrothed, which seemed to +say, “Fear not, for your dear sake my justice shall be tempered with +mercy,” and receiving a sweet and approving smile in return, Villefort +departed with paradise in his heart. + + + + Chapter 7. The Examination + +No sooner had Villefort left the salon, than he assumed the grave air +of a man who holds the balance of life and death in his hands. Now, in +spite of the nobility of his countenance, the command of which, like a +finished actor, he had carefully studied before the glass, it was by no +means easy for him to assume an air of judicial severity. Except the +recollection of the line of politics his father had adopted, and which +might interfere, unless he acted with the greatest prudence, with his +own career, Gérard de Villefort was as happy as a man could be. Already +rich, he held a high official situation, though only twenty-seven. He +was about to marry a young and charming woman, whom he loved, not +passionately, but reasonably, as became a deputy attorney of the king; +and besides her personal attractions, which were very great, +Mademoiselle de Saint-Méran’s family possessed considerable political +influence, which they would, of course, exert in his favor. The dowry +of his wife amounted to fifty thousand crowns, and he had, besides, the +prospect of seeing her fortune increased to half a million at her +father’s death. These considerations naturally gave Villefort a feeling +of such complete felicity that his mind was fairly dazzled in its +contemplation. + +At the door he met the commissary of police, who was waiting for him. +The sight of this officer recalled Villefort from the third heaven to +earth; he composed his face, as we have before described, and said, “I +have read the letter, sir, and you have acted rightly in arresting this +man; now inform me what you have discovered concerning him and the +conspiracy.” + +“We know nothing as yet of the conspiracy, monsieur; all the papers +found have been sealed up and placed on your desk. The prisoner himself +is named Edmond Dantès, mate on board the three-master the _Pharaon_, +trading in cotton with Alexandria and Smyrna, and belonging to Morrel & +Son, of Marseilles.” + +“Before he entered the merchant service, had he ever served in the +marines?” + +“Oh, no, monsieur, he is very young.” + +“How old?” + +“Nineteen or twenty at the most.” + +At this moment, and as Villefort had arrived at the corner of the Rue +des Conseils, a man, who seemed to have been waiting for him, +approached; it was M. Morrel. + +“Ah, M. de Villefort,” cried he, “I am delighted to see you. Some of +your people have committed the strangest mistake—they have just +arrested Edmond Dantès, mate of my vessel.” + +“I know it, monsieur,” replied Villefort, “and I am now going to +examine him.” + +“Oh,” said Morrel, carried away by his friendship, “you do not know +him, and I do. He is the most estimable, the most trustworthy creature +in the world, and I will venture to say, there is not a better seaman +in all the merchant service. Oh, M. de Villefort, I beseech your +indulgence for him.” + +Villefort, as we have seen, belonged to the aristocratic party at +Marseilles, Morrel to the plebeian; the first was a royalist, the other +suspected of Bonapartism. Villefort looked disdainfully at Morrel, and +replied coldly: + +“You are aware, monsieur, that a man may be estimable and trustworthy +in private life, and the best seaman in the merchant service, and yet +be, politically speaking, a great criminal. Is it not true?” + +The magistrate laid emphasis on these words, as if he wished to apply +them to the owner himself, while his eyes seemed to plunge into the +heart of one who, interceding for another, had himself need of +indulgence. Morrel reddened, for his own conscience was not quite clear +on politics; besides, what Dantès had told him of his interview with +the grand-marshal, and what the emperor had said to him, embarrassed +him. He replied, however, in a tone of deep interest: + +“I entreat you, M. de Villefort, be, as you always are, kind and +equitable, and give him back to us soon.” This _give us_ sounded +revolutionary in the deputy’s ears. + +“Ah, ah,” murmured he, “is Dantès then a member of some Carbonari +society, that his protector thus employs the collective form? He was, +if I recollect, arrested in a tavern, in company with a great many +others.” Then he added, “Monsieur, you may rest assured I shall perform +my duty impartially, and that if he be innocent you shall not have +appealed to me in vain; should he, however, be guilty, in this present +epoch, impunity would furnish a dangerous example, and I must do my +duty.” + +0097m + + + +As he had now arrived at the door of his own house, which adjoined the +Palais de Justice, he entered, after having, coldly saluted the +shipowner, who stood, as if petrified, on the spot where Villefort had +left him. The antechamber was full of police agents and gendarmes, in +the midst of whom, carefully watched, but calm and smiling, stood the +prisoner. Villefort traversed the antechamber, cast a side glance at +Dantès, and taking a packet which a gendarme offered him, disappeared, +saying, “Bring in the prisoner.” + +Rapid as had been Villefort’s glance, it had served to give him an idea +of the man he was about to interrogate. He had recognized intelligence +in the high forehead, courage in the dark eye and bent brow, and +frankness in the thick lips that showed a set of pearly teeth. +Villefort’s first impression was favorable; but he had been so often +warned to mistrust first impulses, that he applied the maxim to the +impression, forgetting the difference between the two words. He +stifled, therefore, the feelings of compassion that were rising, +composed his features, and sat down, grim and sombre, at his desk. An +instant after Dantès entered. He was pale, but calm and collected, and +saluting his judge with easy politeness, looked round for a seat, as if +he had been in M. Morrel’s salon. It was then that he encountered for +the first time Villefort’s look,—that look peculiar to the magistrate, +who, while seeming to read the thoughts of others, betrays nothing of +his own. + +“Who and what are you?” demanded Villefort, turning over a pile of +papers, containing information relative to the prisoner, that a police +agent had given to him on his entry, and that, already, in an hour’s +time, had swelled to voluminous proportions, thanks to the corrupt +espionage of which “the accused” is always made the victim. + +“My name is Edmond Dantès,” replied the young man calmly; “I am mate of +the _Pharaon_, belonging to Messrs. Morrel & Son.” + +“Your age?” continued Villefort. + +“Nineteen,” returned Dantès. + +“What were you doing at the moment you were arrested?” + +“I was at the festival of my marriage, monsieur,” said the young man, +his voice slightly tremulous, so great was the contrast between that +happy moment and the painful ceremony he was now undergoing; so great +was the contrast between the sombre aspect of M. de Villefort and the +radiant face of Mercédès. + +“You were at the festival of your marriage?” said the deputy, +shuddering in spite of himself. + +“Yes, monsieur; I am on the point of marrying a young girl I have been +attached to for three years.” Villefort, impassive as he was, was +struck with this coincidence; and the tremulous voice of Dantès, +surprised in the midst of his happiness, struck a sympathetic chord in +his own bosom—he also was on the point of being married, and he was +summoned from his own happiness to destroy that of another. “This +philosophic reflection,” thought he, “will make a great sensation at M. +de Saint-Méran’s;” and he arranged mentally, while Dantès awaited +further questions, the antithesis by which orators often create a +reputation for eloquence. When this speech was arranged, Villefort +turned to Dantès. + +0099m + + + +“Go on, sir,” said he. + +“What would you have me say?” + +“Give all the information in your power.” + +“Tell me on which point you desire information, and I will tell all I +know; only,” added he, with a smile, “I warn you I know very little.” + +“Have you served under the usurper?” + +“I was about to be mustered into the Royal Marines when he fell.” + +“It is reported your political opinions are extreme,” said Villefort, +who had never heard anything of the kind, but was not sorry to make +this inquiry, as if it were an accusation. + +“My political opinions!” replied Dantès. “Alas, sir, I never had any +opinions. I am hardly nineteen; I know nothing; I have no part to play. +If I obtain the situation I desire, I shall owe it to M. Morrel. Thus +all my opinions—I will not say public, but private—are confined to +these three sentiments,—I love my father, I respect M. Morrel, and I +adore Mercédès. This, sir, is all I can tell you, and you see how +uninteresting it is.” As Dantès spoke, Villefort gazed at his ingenuous +and open countenance, and recollected the words of Renée, who, without +knowing who the culprit was, had besought his indulgence for him. With +the deputy’s knowledge of crime and criminals, every word the young man +uttered convinced him more and more of his innocence. This lad, for he +was scarcely a man,—simple, natural, eloquent with that eloquence of +the heart never found when sought for; full of affection for everybody, +because he was happy, and because happiness renders even the wicked +good—extended his affection even to his judge, spite of Villefort’s +severe look and stern accent. Dantès seemed full of kindness. + +_“Pardieu!”_ said Villefort, “he is a noble fellow. I hope I shall gain +Renée’s favor easily by obeying the first command she ever imposed on +me. I shall have at least a pressure of the hand in public, and a sweet +kiss in private.” Full of this idea, Villefort’s face became so joyous, +that when he turned to Dantès, the latter, who had watched the change +on his physiognomy, was smiling also. + +“Sir,” said Villefort, “have you any enemies, at least, that you know.” + +“I have enemies?” replied Dantès; “my position is not sufficiently +elevated for that. As for my disposition, that is, perhaps, somewhat +too hasty; but I have striven to repress it. I have had ten or twelve +sailors under me, and if you question them, they will tell you that +they love and respect me, not as a father, for I am too young, but as +an elder brother.” + +“But you may have excited jealousy. You are about to become captain at +nineteen—an elevated post; you are about to marry a pretty girl, who +loves you; and these two pieces of good fortune may have excited the +envy of someone.” + +“You are right; you know men better than I do, and what you say may +possibly be the case, I confess; but if such persons are among my +acquaintances I prefer not to know it, because then I should be forced +to hate them.” + +“You are wrong; you should always strive to see clearly around you. You +seem a worthy young man; I will depart from the strict line of my duty +to aid you in discovering the author of this accusation. Here is the +paper; do you know the writing?” As he spoke, Villefort drew the letter +from his pocket, and presented it to Dantès. Dantès read it. A cloud +passed over his brow as he said: + +“No, monsieur, I do not know the writing, and yet it is tolerably +plain. Whoever did it writes well. I am very fortunate,” added he, +looking gratefully at Villefort, “to be examined by such a man as you; +for this envious person is a real enemy.” And by the rapid glance that +the young man’s eyes shot forth, Villefort saw how much energy lay hid +beneath this mildness. + +“Now,” said the deputy, “answer me frankly, not as a prisoner to a +judge, but as one man to another who takes an interest in him, what +truth is there in the accusation contained in this anonymous letter?” +And Villefort threw disdainfully on his desk the letter Dantès had just +given back to him. + +“None at all. I will tell you the real facts. I swear by my honor as a +sailor, by my love for Mercédès, by the life of my father——” + +“Speak, monsieur,” said Villefort. Then, internally, “If Renée could +see me, I hope she would be satisfied, and would no longer call me a +decapitator.” + +“Well, when we quitted Naples, Captain Leclere was attacked with a +brain fever. As we had no doctor on board, and he was so anxious to +arrive at Elba, that he would not touch at any other port, his disorder +rose to such a height, that at the end of the third day, feeling he was +dying, he called me to him. ‘My dear Dantès,’ said he, ‘swear to +perform what I am going to tell you, for it is a matter of the deepest +importance.’ + +“‘I swear, captain,’ replied I. + +“‘Well, as after my death the command devolves on you as mate, assume +the command, and bear up for the Island of Elba, disembark at +Porto-Ferrajo, ask for the grand-marshal, give him this letter—perhaps +they will give you another letter, and charge you with a commission. +You will accomplish what I was to have done, and derive all the honor +and profit from it.’ + +“‘I will do it, captain; but perhaps I shall not be admitted to the +grand-marshal’s presence as easily as you expect?’ + +“‘Here is a ring that will obtain audience of him, and remove every +difficulty,’ said the captain. At these words he gave me a ring. It was +time—two hours after he was delirious; the next day he died.” + +“And what did you do then?” + +“What I ought to have done, and what everyone would have done in my +place. Everywhere the last requests of a dying man are sacred; but with +a sailor the last requests of his superior are commands. I sailed for +the Island of Elba, where I arrived the next day; I ordered everybody +to remain on board, and went on shore alone. As I had expected, I found +some difficulty in obtaining access to the grand-marshal; but I sent +the ring I had received from the captain to him, and was instantly +admitted. He questioned me concerning Captain Leclere’s death; and, as +the latter had told me, gave me a letter to carry on to a person in +Paris. I undertook it because it was what my captain had bade me do. I +landed here, regulated the affairs of the vessel, and hastened to visit +my affianced bride, whom I found more lovely than ever. Thanks to M. +Morrel, all the forms were got over; in a word I was, as I told you, at +my marriage feast; and I should have been married in an hour, and +tomorrow I intended to start for Paris, had I not been arrested on this +charge which you as well as I now see to be unjust.” + +“Ah,” said Villefort, “this seems to me the truth. If you have been +culpable, it was imprudence, and this imprudence was in obedience to +the orders of your captain. Give up this letter you have brought from +Elba, and pass your word you will appear should you be required, and go +and rejoin your friends. + +“I am free, then, sir?” cried Dantès joyfully. + +“Yes; but first give me this letter.” + +“You have it already, for it was taken from me with some others which I +see in that packet.” + +“Stop a moment,” said the deputy, as Dantès took his hat and gloves. +“To whom is it addressed?” + +_“To Monsieur Noirtier, Rue Coq-Héron, Paris.”_ Had a thunderbolt +fallen into the room, Villefort could not have been more stupefied. He +sank into his seat, and hastily turning over the packet, drew forth the +fatal letter, at which he glanced with an expression of terror. + +“M. Noirtier, Rue Coq-Héron, No. 13,” murmured he, growing still paler. + +“Yes,” said Dantès; “do you know him?” + +“No,” replied Villefort; “a faithful servant of the king does not know +conspirators.” + +0103m + + + +“It is a conspiracy, then?” asked Dantès, who after believing himself +free, now began to feel a tenfold alarm. “I have, however, already told +you, sir, I was entirely ignorant of the contents of the letter.” + +“Yes; but you knew the name of the person to whom it was addressed,” +said Villefort. + +“I was forced to read the address to know to whom to give it.” + +“Have you shown this letter to anyone?” asked Villefort, becoming still +more pale. + +“To no one, on my honor.” + +“Everybody is ignorant that you are the bearer of a letter from the +Island of Elba, and addressed to M. Noirtier?” + +“Everybody, except the person who gave it to me.” + +“And that was too much, far too much,” murmured Villefort. Villefort’s +brow darkened more and more, his white lips and clenched teeth filled +Dantès with apprehension. After reading the letter, Villefort covered +his face with his hands. + +“Oh,” said Dantès timidly, “what is the matter?” Villefort made no +answer, but raised his head at the expiration of a few seconds, and +again perused the letter. + +“And you say that you are ignorant of the contents of this letter?” + +“I give you my word of honor, sir,” said Dantès; “but what is the +matter? You are ill—shall I ring for assistance?—shall I call?” + +“No,” said Villefort, rising hastily; “stay where you are. It is for me +to give orders here, and not you.” + +“Monsieur,” replied Dantès proudly, “it was only to summon assistance +for you.” + +“I want none; it was a temporary indisposition. Attend to yourself; +answer me.” Dantès waited, expecting a question, but in vain. Villefort +fell back on his chair, passed his hand over his brow, moist with +perspiration, and, for the third time, read the letter. + +“Oh, if he knows the contents of this!” murmured he, “and that Noirtier +is the father of Villefort, I am lost!” And he fixed his eyes upon +Edmond as if he would have penetrated his thoughts. + +“Oh, it is impossible to doubt it,” cried he, suddenly. + +“In heaven’s name!” cried the unhappy young man, “if you doubt me, +question me; I will answer you.” Villefort made a violent effort, and +in a tone he strove to render firm: + +“Sir,” said he, “I am no longer able, as I had hoped, to restore you +immediately to liberty; before doing so, I must consult the trial +justice; what my own feeling is you already know.” + +“Oh, monsieur,” cried Dantès, “you have been rather a friend than a +judge.” + +0105m + + + +“Well, I must detain you some time longer, but I will strive to make it +as short as possible. The principal charge against you is this letter, +and you see——” Villefort approached the fire, cast it in, and waited +until it was entirely consumed. + +“You see, I destroy it?” + +“Oh,” exclaimed Dantès, “you are goodness itself.” + +“Listen,” continued Villefort; “you can now have confidence in me after +what I have done.” + +“Oh, command, and I will obey.” + +“Listen; this is not a command, but advice I give you.” + +“Speak, and I will follow your advice.” + +“I shall detain you until this evening in the Palais de Justice. Should +anyone else interrogate you, say to him what you have said to me, but +do not breathe a word of this letter.” + +“I promise.” It was Villefort who seemed to entreat, and the prisoner +who reassured him. + +“You see,” continued he, glancing toward the grate, where fragments of +burnt paper fluttered in the flames, “the letter is destroyed; you and +I alone know of its existence; should you, therefore, be questioned, +deny all knowledge of it—deny it boldly, and you are saved.” + +“Be satisfied; I will deny it.” + +“It was the only letter you had?” + +“It was.” + +“Swear it.” + +“I swear it.” + +Villefort rang. A police agent entered. Villefort whispered some words +in his ear, to which the officer replied by a motion of his head. + +“Follow him,” said Villefort to Dantès. Dantès saluted Villefort and +retired. Hardly had the door closed when Villefort threw himself +half-fainting into a chair. + +“Alas, alas,” murmured he, “if the procureur himself had been at +Marseilles I should have been ruined. This accursed letter would have +destroyed all my hopes. Oh, my father, must your past career always +interfere with my successes?” Suddenly a light passed over his face, a +smile played round his set mouth, and his haggard eyes were fixed in +thought. + +“This will do,” said he, “and from this letter, which might have ruined +me, I will make my fortune. Now to the work I have in hand.” And after +having assured himself that the prisoner was gone, the deputy procureur +hastened to the house of his betrothed. + +0107m + + + + + Chapter 8. The Château d’If + +The commissary of police, as he traversed the antechamber, made a sign +to two gendarmes, who placed themselves one on Dantès’ right and the +other on his left. A door that communicated with the Palais de Justice +was opened, and they went through a long range of gloomy corridors, +whose appearance might have made even the boldest shudder. The Palais +de Justice communicated with the prison,—a sombre edifice, that from +its grated windows looks on the clock-tower of the Accoules. After +numberless windings, Dantès saw a door with an iron wicket. The +commissary took up an iron mallet and knocked thrice, every blow +seeming to Dantès as if struck on his heart. The door opened, the two +gendarmes gently pushed him forward, and the door closed with a loud +sound behind him. The air he inhaled was no longer pure, but thick and +mephitic,—he was in prison. + +He was conducted to a tolerably neat chamber, but grated and barred, +and its appearance, therefore, did not greatly alarm him; besides, the +words of Villefort, who seemed to interest himself so much, resounded +still in his ears like a promise of freedom. It was four o’clock when +Dantès was placed in this chamber. It was, as we have said, the 1st of +March, and the prisoner was soon buried in darkness. The obscurity +augmented the acuteness of his hearing; at the slightest sound he rose +and hastened to the door, convinced they were about to liberate him, +but the sound died away, and Dantès sank again into his seat. At last, +about ten o’clock, and just as Dantès began to despair, steps were +heard in the corridor, a key turned in the lock, the bolts creaked, the +massy oaken door flew open, and a flood of light from two torches +pervaded the apartment. + +By the torchlight Dantès saw the glittering sabres and carbines of four +gendarmes. He had advanced at first, but stopped at the sight of this +display of force. + +“Are you come to fetch me?” asked he. + +“Yes,” replied a gendarme. + +“By the orders of the deputy procureur?” + +“I believe so.” The conviction that they came from M. de Villefort +relieved all Dantès’ apprehensions; he advanced calmly, and placed +himself in the centre of the escort. A carriage waited at the door, the +coachman was on the box, and a police officer sat beside him. + +“Is this carriage for me?” said Dantès. + +“It is for you,” replied a gendarme. + +Dantès was about to speak; but feeling himself urged forward, and +having neither the power nor the intention to resist, he mounted the +steps, and was in an instant seated inside between two gendarmes; the +two others took their places opposite, and the carriage rolled heavily +over the stones. + +The prisoner glanced at the windows—they were grated; he had changed +his prison for another that was conveying him he knew not whither. +Through the grating, however, Dantès saw they were passing through the +Rue Caisserie, and by the Rue Saint-Laurent and the Rue Taramis, to the +quay. Soon he saw the lights of La Consigne. + +The carriage stopped, the officer descended, approached the guardhouse, +a dozen soldiers came out and formed themselves in order; Dantès saw +the reflection of their muskets by the light of the lamps on the quay. + +“Can all this force be summoned on my account?” thought he. + +The officer opened the door, which was locked, and, without speaking a +word, answered Dantès’ question; for he saw between the ranks of the +soldiers a passage formed from the carriage to the port. The two +gendarmes who were opposite to him descended first, then he was ordered +to alight and the gendarmes on each side of him followed his example. +They advanced towards a boat, which a custom-house officer held by a +chain, near the quay. + +The soldiers looked at Dantès with an air of stupid curiosity. In an +instant he was placed in the stern-sheets of the boat, between the +gendarmes, while the officer stationed himself at the bow; a shove sent +the boat adrift, and four sturdy oarsmen impelled it rapidly towards +the Pilon. At a shout from the boat, the chain that closes the mouth of +the port was lowered and in a second they were, as Dantès knew, in the +Frioul and outside the inner harbor. + +The prisoner’s first feeling was of joy at again breathing the pure +air—for air is freedom; but he soon sighed, for he passed before La +Réserve, where he had that morning been so happy, and now through the +open windows came the laughter and revelry of a ball. Dantès folded his +hands, raised his eyes to heaven, and prayed fervently. + +0111m + + + +The boat continued her voyage. They had passed the Tête de Mort, were +now off the Anse du Pharo, and about to double the battery. This +manœuvre was incomprehensible to Dantès. + +“Whither are you taking me?” asked he. + +“You will soon know.” + +“But still——” + +“We are forbidden to give you any explanation.” Dantès, trained in +discipline, knew that nothing would be more absurd than to question +subordinates, who were forbidden to reply; and so he remained silent. + +The most vague and wild thoughts passed through his mind. The boat they +were in could not make a long voyage; there was no vessel at anchor +outside the harbor; he thought, perhaps, they were going to leave him +on some distant point. He was not bound, nor had they made any attempt +to handcuff him; this seemed a good augury. Besides, had not the +deputy, who had been so kind to him, told him that provided he did not +pronounce the dreaded name of Noirtier, he had nothing to apprehend? +Had not Villefort in his presence destroyed the fatal letter, the only +proof against him? + +He waited silently, striving to pierce through the darkness. + +They had left the Ile Ratonneau, where the lighthouse stood, on the +right, and were now opposite the Point des Catalans. It seemed to the +prisoner that he could distinguish a feminine form on the beach, for it +was there Mercédès dwelt. How was it that a presentiment did not warn +Mercédès that her lover was within three hundred yards of her? + +One light alone was visible; and Dantès saw that it came from Mercédès’ +chamber. Mercédès was the only one awake in the whole settlement. A +loud cry could be heard by her. But pride restrained him and he did not +utter it. What would his guards think if they heard him shout like a +madman? + +He remained silent, his eyes fixed upon the light; the boat went on, +but the prisoner thought only of Mercédès. An intervening elevation of +land hid the light. Dantès turned and perceived that they had got out +to sea. While he had been absorbed in thought, they had shipped their +oars and hoisted sail; the boat was now moving with the wind. + +In spite of his repugnance to address the guards, Dantès turned to the +nearest gendarme, and taking his hand, + +“Comrade,” said he, “I adjure you, as a Christian and a soldier, to +tell me where we are going. I am Captain Dantès, a loyal Frenchman, +thought accused of treason; tell me where you are conducting me, and I +promise you on my honor I will submit to my fate.” + +The gendarme looked irresolutely at his companion, who returned for +answer a sign that said, “I see no great harm in telling him now,” and +the gendarme replied: + +“You are a native of Marseilles, and a sailor, and yet you do not know +where you are going?” + +“On my honor, I have no idea.” + +“Have you no idea whatever?” + +“None at all.” + +“That is impossible.” + +“I swear to you it is true. Tell me, I entreat.” + +“But my orders.” + +“Your orders do not forbid your telling me what I must know in ten +minutes, in half an hour, or an hour. You see I cannot escape, even if +I intended.” + +“Unless you are blind, or have never been outside the harbor, you must +know.” + +“I do not.” + +“Look round you then.” Dantès rose and looked forward, when he saw rise +within a hundred yards of him the black and frowning rock on which +stands the Château d’If. This gloomy fortress, which has for more than +three hundred years furnished food for so many wild legends, seemed to +Dantès like a scaffold to a malefactor. + +“The Château d’If?” cried he, “what are we going there for?” + +The gendarme smiled. + +“I am not going there to be imprisoned,” said Dantès; “it is only used +for political prisoners. I have committed no crime. Are there any +magistrates or judges at the Château d’If?” + +“There are only,” said the gendarme, “a governor, a garrison, turnkeys, +and good thick walls. Come, come, do not look so astonished, or you +will make me think you are laughing at me in return for my good +nature.” + +Dantès pressed the gendarme’s hand as though he would crush it. + +“You think, then,” said he, “that I am taken to the Château d’If to be +imprisoned there?” + +“It is probable; but there is no occasion to squeeze so hard.” + +“Without any inquiry, without any formality?” + +“All the formalities have been gone through; the inquiry is already +made.” + +“And so, in spite of M. de Villefort’s promises?” + +“I do not know what M. de Villefort promised you,” said the gendarme, +“but I know we are taking you to the Château d’If. But what are you +doing? Help, comrades, help!” + +By a rapid movement, which the gendarme’s practiced eye had perceived, +Dantès sprang forward to precipitate himself into the sea; but four +vigorous arms seized him as his feet quitted the bottom of the boat. He +fell back cursing with rage. + +“Good!” said the gendarme, placing his knee on his chest; “this is the +way you keep your word as a sailor! Believe soft-spoken gentlemen +again! Hark ye, my friend, I have disobeyed my first order, but I will +not disobey the second; and if you move, I will blow your brains out.” +And he levelled his carbine at Dantès, who felt the muzzle against his +temple. + +For a moment the idea of struggling crossed his mind, and of so ending +the unexpected evil that had overtaken him. But he bethought him of M. +de Villefort’s promise; and, besides, death in a boat from the hand of +a gendarme seemed too terrible. He remained motionless, but gnashing +his teeth and wringing his hands with fury. + +At this moment the boat came to a landing with a violent shock. One of +the sailors leaped on shore, a cord creaked as it ran through a pulley, +and Dantès guessed they were at the end of the voyage, and that they +were mooring the boat. + +His guards, taking him by the arms and coat-collar, forced him to rise, +and dragged him towards the steps that lead to the gate of the +fortress, while the police officer carrying a musket with fixed bayonet +followed behind. + +Dantès made no resistance; he was like a man in a dream; he saw +soldiers drawn up on the embankment; he knew vaguely that he was +ascending a flight of steps; he was conscious that he passed through a +door, and that the door closed behind him; but all this indistinctly as +through a mist. He did not even see the ocean, that terrible barrier +against freedom, which the prisoners look upon with utter despair. + +They halted for a minute, during which he strove to collect his +thoughts. He looked around; he was in a court surrounded by high walls; +he heard the measured tread of sentinels, and as they passed before the +light he saw the barrels of their muskets shine. + +They waited upwards of ten minutes. Certain Dantès could not escape, +the gendarmes released him. They seemed awaiting orders. The orders +came. + +“Where is the prisoner?” said a voice. + +“Here,” replied the gendarmes. + +“Let him follow me; I will take him to his cell.” + +“Go!” said the gendarmes, thrusting Dantès forward. + +The prisoner followed his guide, who led him into a room almost under +ground, whose bare and reeking walls seemed as though impregnated with +tears; a lamp placed on a stool illumined the apartment faintly, and +showed Dantès the features of his conductor, an under-jailer, +ill-clothed, and of sullen appearance. + +0113m + + + +“Here is your chamber for tonight,” said he. “It is late, and the +governor is asleep. Tomorrow, perhaps, he may change you. In the +meantime there is bread, water, and fresh straw; and that is all a +prisoner can wish for. Goodnight.” And before Dantès could open his +mouth—before he had noticed where the jailer placed his bread or the +water—before he had glanced towards the corner where the straw was, the +jailer disappeared, taking with him the lamp and closing the door, +leaving stamped upon the prisoner’s mind the dim reflection of the +dripping walls of his dungeon. + +Dantès was alone in darkness and in silence—cold as the shadows that he +felt breathe on his burning forehead. With the first dawn of day the +jailer returned, with orders to leave Dantès where he was. He found the +prisoner in the same position, as if fixed there, his eyes swollen with +weeping. He had passed the night standing, and without sleep. The +jailer advanced; Dantès appeared not to perceive him. He touched him on +the shoulder. Edmond started. + +“Have you not slept?” said the jailer. + +“I do not know,” replied Dantès. The jailer stared. + +“Are you hungry?” continued he. + +“I do not know.” + +“Do you wish for anything?” + +“I wish to see the governor.” + +The jailer shrugged his shoulders and left the chamber. + +Dantès followed him with his eyes, and stretched forth his hands +towards the open door; but the door closed. All his emotion then burst +forth; he cast himself on the ground, weeping bitterly, and asking +himself what crime he had committed that he was thus punished. + +The day passed thus; he scarcely tasted food, but walked round and +round the cell like a wild beast in its cage. One thought in particular +tormented him: namely, that during his journey hither he had sat so +still, whereas he might, a dozen times, have plunged into the sea, and, +thanks to his powers of swimming, for which he was famous, have gained +the shore, concealed himself until the arrival of a Genoese or Spanish +vessel, escaped to Spain or Italy, where Mercédès and his father could +have joined him. He had no fears as to how he should live—good seamen +are welcome everywhere. He spoke Italian like a Tuscan, and Spanish +like a Castilian; he would have been free, and happy with Mercédès and +his father, whereas he was now confined in the Château d’If, that +impregnable fortress, ignorant of the future destiny of his father and +Mercédès; and all this because he had trusted to Villefort’s promise. +The thought was maddening, and Dantès threw himself furiously down on +his straw. The next morning at the same hour, the jailer came again. + +“Well,” said the jailer, “are you more reasonable today?” Dantès made +no reply. + +“Come, cheer up; is there anything that I can do for you?” + +“I wish to see the governor.” + +“I have already told you it was impossible.” + +“Why so?” + +“Because it is against prison rules, and prisoners must not even ask +for it.” + +“What is allowed, then?” + +“Better fare, if you pay for it, books, and leave to walk about.” + +“I do not want books, I am satisfied with my food, and do not care to +walk about; but I wish to see the governor.” + +“If you worry me by repeating the same thing, I will not bring you any +more to eat.” + +“Well, then,” said Edmond, “if you do not, I shall die of hunger—that +is all.” + +The jailer saw by his tone he would be happy to die; and as every +prisoner is worth ten sous a day to his jailer, he replied in a more +subdued tone. + +“What you ask is impossible; but if you are very well behaved you will +be allowed to walk about, and some day you will meet the governor, and +if he chooses to reply, that is his affair.” + +“But,” asked Dantès, “how long shall I have to wait?” + +“Ah, a month—six months—a year.” + +“It is too long a time. I wish to see him at once.” + +“Ah,” said the jailer, “do not always brood over what is impossible, or +you will be mad in a fortnight.” + +“You think so?” + +“Yes; we have an instance here; it was by always offering a million of +francs to the governor for his liberty that an abbé became mad, who was +in this chamber before you.” + +0119m + + + +“How long has he left it?” + +“Two years.” + +“Was he liberated, then?” + +“No; he was put in a dungeon.” + +“Listen!” said Dantès. “I am not an abbé, I am not mad; perhaps I shall +be, but at present, unfortunately, I am not. I will make you another +offer.” + +“What is that?” + +“I do not offer you a million, because I have it not; but I will give +you a hundred crowns if, the first time you go to Marseilles, you will +seek out a young girl named Mercédès, at the Catalans, and give her two +lines from me.” + +0120m + + + +“If I took them, and were detected, I should lose my place, which is +worth two thousand francs a year; so that I should be a great fool to +run such a risk for three hundred.” + +“Well,” said Dantès, “mark this; if you refuse at least to tell +Mercédès I am here, I will some day hide myself behind the door, and +when you enter I will dash out your brains with this stool.” + +“Threats!” cried the jailer, retreating and putting himself on the +defensive; “you are certainly going mad. The abbé began like you, and +in three days you will be like him, mad enough to tie up; but, +fortunately, there are dungeons here.” + +Dantès whirled the stool round his head. + +“All right, all right,” said the jailer; “all right, since you will +have it so. I will send word to the governor.” + +“Very well,” returned Dantès, dropping the stool and sitting on it as +if he were in reality mad. The jailer went out, and returned in an +instant with a corporal and four soldiers. + +“By the governor’s orders,” said he, “conduct the prisoner to the tier +beneath.” + +“To the dungeon, then,” said the corporal. + +“Yes; we must put the madman with the madmen.” The soldiers seized +Dantès, who followed passively. + +He descended fifteen steps, and the door of a dungeon was opened, and +he was thrust in. The door closed, and Dantès advanced with +outstretched hands until he touched the wall; he then sat down in the +corner until his eyes became accustomed to the darkness. The jailer was +right; Dantès wanted but little of being utterly mad. + + + + Chapter 9. The Evening of the Betrothal + +Villefort had, as we have said, hastened back to Madame de +Saint-Méran’s in the Place du Grand Cours, and on entering the house +found that the guests whom he had left at table were taking coffee in +the salon. Renée was, with all the rest of the company, anxiously +awaiting him, and his entrance was followed by a general exclamation. + +“Well, Decapitator, Guardian of the State, Royalist, Brutus, what is +the matter?” said one. “Speak out.” + +“Are we threatened with a fresh Reign of Terror?” asked another. + +“Has the Corsican ogre broken loose?” cried a third. + +“Marquise,” said Villefort, approaching his future mother-in-law, “I +request your pardon for thus leaving you. Will the marquis honor me by +a few moments’ private conversation?” + +“Ah, it is really a serious matter, then?” asked the marquis, remarking +the cloud on Villefort’s brow. + +“So serious that I must take leave of you for a few days; so,” added +he, turning to Renée, “judge for yourself if it be not important.” + +“You are going to leave us?” cried Renée, unable to hide her emotion at +this unexpected announcement. + +“Alas,” returned Villefort, “I must!” + +“Where, then, are you going?” asked the marquise. + +“That, madame, is an official secret; but if you have any commissions +for Paris, a friend of mine is going there tonight, and will with +pleasure undertake them.” The guests looked at each other. + +“You wish to speak to me alone?” said the marquis. + +“Yes, let us go to the library, please.” The marquis took his arm, and +they left the salon. + +“Well,” asked he, as soon as they were by themselves, “tell me what it +is?” + +“An affair of the greatest importance, that demands my immediate +presence in Paris. Now, excuse the indiscretion, marquis, but have you +any landed property?” + +“All my fortune is in the funds; seven or eight hundred thousand +francs.” + +“Then sell out—sell out, marquis, or you will lose it all.” + +0123m + + + +“But how can I sell out here?” + +“You have a broker, have you not?” + +“Yes.” + +“Then give me a letter to him, and tell him to sell out without an +instant’s delay, perhaps even now I shall arrive too late.” + +“The deuce you say!” replied the marquis, “let us lose no time, then!” + +And, sitting down, he wrote a letter to his broker, ordering him to +sell out at the market price. + +“Now, then,” said Villefort, placing the letter in his pocketbook, “I +must have another!” + +“To whom?” + +“To the king.” + +“To the king?” + +“Yes.” + +“I dare not write to his majesty.” + +“I do not ask you to write to his majesty, but ask M. de Salvieux to do +so. I want a letter that will enable me to reach the king’s presence +without all the formalities of demanding an audience; that would +occasion a loss of precious time.” + +“But address yourself to the keeper of the seals; he has the right of +entry at the Tuileries, and can procure you audience at any hour of the +day or night.” + +“Doubtless; but there is no occasion to divide the honors of my +discovery with him. The keeper would leave me in the background, and +take all the glory to himself. I tell you, marquis, my fortune is made +if I only reach the Tuileries the first, for the king will not forget +the service I do him.” + +“In that case go and get ready. I will call Salvieux and make him write +the letter.” + +“Be as quick as possible, I must be on the road in a quarter of an +hour.” + +“Tell your coachman to stop at the door.” + +“You will present my excuses to the marquise and Mademoiselle Renée, +whom I leave on such a day with great regret.” + +“You will find them both here, and can make your farewells in person.” + +“A thousand thanks—and now for the letter.” + +The marquis rang, a servant entered. + +“Say to the Comte de Salvieux that I would like to see him.” + +“Now, then, go,” said the marquis. + +“I shall be gone only a few moments.” + +Villefort hastily quitted the apartment, but reflecting that the sight +of the deputy procureur running through the streets would be enough to +throw the whole city into confusion, he resumed his ordinary pace. At +his door he perceived a figure in the shadow that seemed to wait for +him. It was Mercédès, who, hearing no news of her lover, had come +unobserved to inquire after him. + +As Villefort drew near, she advanced and stood before him. Dantès had +spoken of Mercédès, and Villefort instantly recognized her. Her beauty +and high bearing surprised him, and when she inquired what had become +of her lover, it seemed to him that she was the judge, and he the +accused. + +“The young man you speak of,” said Villefort abruptly, “is a great +criminal, and I can do nothing for him, mademoiselle.” Mercédès burst +into tears, and, as Villefort strove to pass her, again addressed him. + +“But, at least, tell me where he is, that I may know whether he is +alive or dead,” said she. + +0125m + + + +“I do not know; he is no longer in my hands,” replied Villefort. + +And desirous of putting an end to the interview, he pushed by her, and +closed the door, as if to exclude the pain he felt. But remorse is not +thus banished; like Virgil’s wounded hero, he carried the arrow in his +wound, and, arrived at the salon, Villefort uttered a sigh that was +almost a sob, and sank into a chair. + +Then the first pangs of an unending torture seized upon his heart. The +man he sacrificed to his ambition, that innocent victim immolated on +the altar of his father’s faults, appeared to him pale and threatening, +leading his affianced bride by the hand, and bringing with him remorse, +not such as the ancients figured, furious and terrible, but that slow +and consuming agony whose pangs are intensified from hour to hour up to +the very moment of death. Then he had a moment’s hesitation. He had +frequently called for capital punishment on criminals, and owing to his +irresistible eloquence they had been condemned, and yet the slightest +shadow of remorse had never clouded Villefort’s brow, because they were +guilty; at least, he believed so; but here was an innocent man whose +happiness he had destroyed. In this case he was not the judge, but the +executioner. + +As he thus reflected, he felt the sensation we have described, and +which had hitherto been unknown to him, arise in his bosom, and fill +him with vague apprehensions. It is thus that a wounded man trembles +instinctively at the approach of the finger to his wound until it be +healed, but Villefort’s was one of those that never close, or if they +do, only close to reopen more agonizing than ever. If at this moment +the sweet voice of Renée had sounded in his ears pleading for mercy, or +the fair Mercédès had entered and said, “In the name of God, I conjure +you to restore me my affianced husband,” his cold and trembling hands +would have signed his release; but no voice broke the stillness of the +chamber, and the door was opened only by Villefort’s valet, who came to +tell him that the travelling carriage was in readiness. + +Villefort rose, or rather sprang, from his chair, hastily opened one of +the drawers of his desk, emptied all the gold it contained into his +pocket, stood motionless an instant, his hand pressed to his head, +muttered a few inarticulate sounds, and then, perceiving that his +servant had placed his cloak on his shoulders, he sprang into the +carriage, ordering the postilions to drive to M. de Saint-Méran’s. The +hapless Dantès was doomed. + +As the marquis had promised, Villefort found the marquise and Renée in +waiting. He started when he saw Renée, for he fancied she was again +about to plead for Dantès. Alas, her emotions were wholly personal: she +was thinking only of Villefort’s departure. + +She loved Villefort, and he left her at the moment he was about to +become her husband. Villefort knew not when he should return, and +Renée, far from pleading for Dantès, hated the man whose crime +separated her from her lover. + +0127m + + + +Meanwhile what of Mercédès? She had met Fernand at the corner of the +Rue de la Loge; she had returned to the Catalans, and had despairingly +cast herself on her couch. Fernand, kneeling by her side, took her +hand, and covered it with kisses that Mercédès did not even feel. She +passed the night thus. The lamp went out for want of oil, but she paid +no heed to the darkness, and dawn came, but she knew not that it was +day. Grief had made her blind to all but one object—that was Edmond. + +“Ah, you are there,” said she, at length, turning towards Fernand. + +“I have not quitted you since yesterday,” returned Fernand sorrowfully. + +M. Morrel had not readily given up the fight. He had learned that +Dantès had been taken to prison, and he had gone to all his friends, +and the influential persons of the city; but the report was already in +circulation that Dantès was arrested as a Bonapartist agent; and as the +most sanguine looked upon any attempt of Napoleon to remount the throne +as impossible, he met with nothing but refusal, and had returned home +in despair, declaring that the matter was serious and that nothing more +could be done. + +Caderousse was equally restless and uneasy, but instead of seeking, +like M. Morrel, to aid Dantès, he had shut himself up with two bottles +of black currant brandy, in the hope of drowning reflection. But he did +not succeed, and became too intoxicated to fetch any more drink, and +yet not so intoxicated as to forget what had happened. With his elbows +on the table he sat between the two empty bottles, while spectres +danced in the light of the unsnuffed candle—spectres such as Hoffmann +strews over his punch-drenched pages, like black, fantastic dust. + +Danglars alone was content and joyous—he had got rid of an enemy and +made his own situation on the _Pharaon_ secure. Danglars was one of +those men born with a pen behind the ear, and an inkstand in place of a +heart. Everything with him was multiplication or subtraction. The life +of a man was to him of far less value than a numeral, especially when, +by taking it away, he could increase the sum total of his own desires. +He went to bed at his usual hour, and slept in peace. + +Villefort, after having received M. de Salvieux’s letter, embraced +Renée, kissed the marquise’s hand, and shaken that of the marquis, +started for Paris along the Aix road. + +Old Dantès was dying with anxiety to know what had become of Edmond. +But we know very well what had become of Edmond. + + + + Chapter 10. The King’s Closet at the Tuileries + +We will leave Villefort on the road to Paris, travelling—thanks to +trebled fees—with all speed, and passing through two or three +apartments, enter at the Tuileries the little room with the arched +window, so well known as having been the favorite closet of Napoleon +and Louis XVIII., and now of Louis Philippe. + +There, seated before a walnut table he had brought with him from +Hartwell, and to which, from one of those fancies not uncommon to great +people, he was particularly attached, the king, Louis XVIII., was +carelessly listening to a man of fifty or fifty-two years of age, with +gray hair, aristocratic bearing, and exceedingly gentlemanly attire, +and meanwhile making a marginal note in a volume of Gryphius’s rather +inaccurate, but much sought-after, edition of Horace—a work which was +much indebted to the sagacious observations of the philosophical +monarch. + +“You say, sir——” said the king. + +“That I am exceedingly disquieted, sire.” + +“Really, have you had a vision of the seven fat kine and the seven lean +kine?” + +“No, sire, for that would only betoken for us seven years of plenty and +seven years of scarcity; and with a king as full of foresight as your +majesty, scarcity is not a thing to be feared.” + +“Then of what other scourge are you afraid, my dear Blacas?” + +“Sire, I have every reason to believe that a storm is brewing in the +south.” + +“Well, my dear duke,” replied Louis XVIII., “I think you are wrongly +informed, and know positively that, on the contrary, it is very fine +weather in that direction.” Man of ability as he was, Louis XVIII. +liked a pleasant jest. + +“Sire,” continued M. de Blacas, “if it only be to reassure a faithful +servant, will your majesty send into Languedoc, Provence, and Dauphiné, +trusty men, who will bring you back a faithful report as to the feeling +in these three provinces?” + +“_Canimus surdis_,” replied the king, continuing the annotations in his +Horace. + +“Sire,” replied the courtier, laughing, in order that he might seem to +comprehend the quotation, “your majesty may be perfectly right in +relying on the good feeling of France, but I fear I am not altogether +wrong in dreading some desperate attempt.” + +“By whom?” + +“By Bonaparte, or, at least, by his adherents.” + +“My dear Blacas,” said the king, “you with your alarms prevent me from +working.” + +“And you, sire, prevent me from sleeping with your security.” + +“Wait, my dear sir, wait a moment; for I have such a delightful note on +the _Pastor quum traheret_—wait, and I will listen to you afterwards.” + +There was a brief pause, during which Louis XVIII. wrote, in a hand as +small as possible, another note on the margin of his Horace, and then +looking at the duke with the air of a man who thinks he has an idea of +his own, while he is only commenting upon the idea of another, said: + +“Go on, my dear duke, go on—I listen.” + +“Sire,” said Blacas, who had for a moment the hope of sacrificing +Villefort to his own profit, “I am compelled to tell you that these are +not mere rumors destitute of foundation which thus disquiet me; but a +serious-minded man, deserving all my confidence, and charged by me to +watch over the south” (the duke hesitated as he pronounced these +words), “has arrived by post to tell me that a great peril threatens +the king, and so I hastened to you, sire.” + +“_Mala ducis avi domum_,” continued Louis XVIII., still annotating. + +“Does your majesty wish me to drop the subject?” + +“By no means, my dear duke; but just stretch out your hand.” + +“Which?” + +“Whichever you please—there to the left.” + +“Here, sire?” + +“I tell you to the left, and you are looking to the right; I mean on my +left—yes, there. You will find yesterday’s report of the minister of +police. But here is M. Dandré himself;” and M. Dandré, announced by the +chamberlain-in-waiting, entered. + +“Come in,” said Louis XVIII., with repressed smile, “come in, Baron, +and tell the duke all you know—the latest news of M. de Bonaparte; do +not conceal anything, however serious,—let us see, the Island of Elba +is a volcano, and we may expect to have issuing thence flaming and +bristling war—_bella, horrida bella_.” + +M. Dandré leaned very respectfully on the back of a chair with his two +hands, and said: + +“Has your majesty perused yesterday’s report?” + +“Yes, yes; but tell the duke himself, who cannot find anything, what +the report contains—give him the particulars of what the usurper is +doing in his islet.” + +“Monsieur,” said the baron to the duke, “all the servants of his +majesty must approve of the latest intelligence which we have from the +Island of Elba. Bonaparte——” + +M. Dandré looked at Louis XVIII., who, employed in writing a note, did +not even raise his head. “Bonaparte,” continued the baron, “is mortally +wearied, and passes whole days in watching his miners at work at +Porto-Longone.” + +“And scratches himself for amusement,” added the king. + +“Scratches himself?” inquired the duke, “what does your majesty mean?” + +“Yes, indeed, my dear duke. Did you forget that this great man, this +hero, this demigod, is attacked with a malady of the skin which worries +him to death, _prurigo_?” + +“And, moreover, my dear duke,” continued the minister of police, “we +are almost assured that, in a very short time, the usurper will be +insane.” + +“Insane?” + +“Raving mad; his head becomes weaker. Sometimes he weeps bitterly, +sometimes laughs boisterously, at other time he passes hours on the +seashore, flinging stones in the water and when the flint makes +‘duck-and-drake’ five or six times, he appears as delighted as if he +had gained another Marengo or Austerlitz. Now, you must agree that +these are indubitable symptoms of insanity.” + +“Or of wisdom, my dear baron—or of wisdom,” said Louis XVIII., +laughing; “the greatest captains of antiquity amused themselves by +casting pebbles into the ocean—see Plutarch’s life of Scipio +Africanus.” + +M. de Blacas pondered deeply between the confident monarch and the +truthful minister. Villefort, who did not choose to reveal the whole +secret, lest another should reap all the benefit of the disclosure, had +yet communicated enough to cause him the greatest uneasiness. + +“Well, well, Dandré,” said Louis XVIII., “Blacas is not yet convinced; +let us proceed, therefore, to the usurper’s conversion.” The minister +of police bowed. + +“The usurper’s conversion!” murmured the duke, looking at the king and +Dandré, who spoke alternately, like Virgil’s shepherds. “The usurper +converted!” + +“Decidedly, my dear duke.” + +“In what way converted?” + +“To good principles. Tell him all about it, baron.” + +“Why, this is the way of it,” said the minister, with the gravest air +in the world: “Napoleon lately had a review, and as two or three of his +old veterans expressed a desire to return to France, he gave them their +dismissal, and exhorted them to ‘serve the good king.’ These were his +own words, of that I am certain.” + +“Well, Blacas, what think you of this?” inquired the king triumphantly, +and pausing for a moment from the voluminous scholiast before him. + +“I say, sire, that the minister of police is greatly deceived or I am; +and as it is impossible it can be the minister of police as he has the +guardianship of the safety and honor of your majesty, it is probable +that I am in error. However, sire, if I might advise, your majesty will +interrogate the person of whom I spoke to you, and I will urge your +majesty to do him this honor.” + +“Most willingly, duke; under your auspices I will receive any person +you please, but you must not expect me to be too confiding. Baron, have +you any report more recent than this, dated the 20th February, and this +is the 3rd of March?” + +“No, sire, but I am hourly expecting one; it may have arrived since I +left my office.” + +“Go thither, and if there be none—well, well,” continued Louis XVIII., +“make one; that is the usual way, is it not?” and the king laughed +facetiously. + +“Oh, sire,” replied the minister, “we have no occasion to invent any; +every day our desks are loaded with most circumstantial denunciations, +coming from hosts of people who hope for some return for services which +they seek to render, but cannot; they trust to fortune, and rely upon +some unexpected event in some way to justify their predictions.” + +“Well, sir, go,” said Louis XVIII., “and remember that I am waiting for +you.” + +“I will but go and return, sire; I shall be back in ten minutes.” + +“And I, sire,” said M. de Blacas, “will go and find my messenger.” + +“Wait, sir, wait,” said Louis XVIII. “Really, M. de Blacas, I must +change your armorial bearings; I will give you an eagle with +outstretched wings, holding in its claws a prey which tries in vain to +escape, and bearing this device—_Tenax_.” + +0133m + + + +“Sire, I listen,” said De Blacas, biting his nails with impatience. + +“I wish to consult you on this passage, ‘_Molli fugiens anhelitu_,’ you +know it refers to a stag flying from a wolf. Are you not a sportsman +and a great wolf-hunter? Well, then, what do you think of the _molli +anhelitu_?” + +“Admirable, sire; but my messenger is like the stag you refer to, for +he has posted two hundred and twenty leagues in scarcely three days.” + +“Which is undergoing great fatigue and anxiety, my dear duke, when we +have a telegraph which transmits messages in three or four hours, and +that without getting in the least out of breath.” + +“Ah, sire, you recompense but badly this poor young man, who has come +so far, and with so much ardor, to give your majesty useful +information. If only for the sake of M. de Salvieux, who recommends him +to me, I entreat your majesty to receive him graciously.” + +“M. de Salvieux, my brother’s chamberlain?” + +“Yes, sire.” + +“He is at Marseilles.” + +“And writes me thence.” + +“Does he speak to you of this conspiracy?” + +“No; but strongly recommends M. de Villefort, and begs me to present +him to your majesty.” + +“M. de Villefort!” cried the king, “is the messenger’s name M. de +Villefort?” + +“Yes, sire.” + +“And he comes from Marseilles?” + +“In person.” + +“Why did you not mention his name at once?” replied the king, betraying +some uneasiness. + +“Sire, I thought his name was unknown to your majesty.” + +“No, no, Blacas; he is a man of strong and elevated understanding, +ambitious, too, and, _pardieu!_ you know his father’s name!” + +“His father?” + +“Yes, Noirtier.” + +“Noirtier the Girondin?—Noirtier the senator?” + +“He himself.” + +“And your majesty has employed the son of such a man?” + +“Blacas, my friend, you have but limited comprehension. I told you +Villefort was ambitious, and to attain this ambition Villefort would +sacrifice everything, even his father.” + +“Then, sire, may I present him?” + +“This instant, duke! Where is he?” + +“Waiting below, in my carriage.” + +“Seek him at once.” + +“I hasten to do so.” + +The duke left the royal presence with the speed of a young man; his +really sincere royalism made him youthful again. Louis XVIII. remained +alone, and turning his eyes on his half-opened Horace, muttered: + +“_Justum et tenacem propositi virum_.” + +M. de Blacas returned as speedily as he had departed, but in the +antechamber he was forced to appeal to the king’s authority. +Villefort’s dusty garb, his costume, which was not of courtly cut, +excited the susceptibility of M. de Brezé, who was all astonishment at +finding that this young man had the audacity to enter before the king +in such attire. The duke, however, overcame all difficulties with a +word—his majesty’s order; and, in spite of the protestations which the +master of ceremonies made for the honor of his office and principles, +Villefort was introduced. + +The king was seated in the same place where the duke had left him. On +opening the door, Villefort found himself facing him, and the young +magistrate’s first impulse was to pause. + +“Come in, M. de Villefort,” said the king, “come in.” + +Villefort bowed, and advancing a few steps, waited until the king +should interrogate him. + +“M. de Villefort,” said Louis XVIII., “the Duc de Blacas assures me you +have some interesting information to communicate.” + +“Sire, the duke is right, and I believe your majesty will think it +equally important.” + +0137m + + + +“In the first place, and before everything else, sir, is the news as +bad in your opinion as I am asked to believe?” + +“Sire, I believe it to be most urgent, but I hope, by the speed I have +used, that it is not irreparable.” + +“Speak as fully as you please, sir,” said the king, who began to give +way to the emotion which had showed itself in Blacas’s face and +affected Villefort’s voice. “Speak, sir, and pray begin at the +beginning; I like order in everything.” + +“Sire,” said Villefort, “I will render a faithful report to your +majesty, but I must entreat your forgiveness if my anxiety leads to +some obscurity in my language.” A glance at the king after this +discreet and subtle exordium, assured Villefort of the benignity of his +august auditor, and he went on: + +“Sire, I have come as rapidly to Paris as possible, to inform your +majesty that I have discovered, in the exercise of my duties, not a +commonplace and insignificant plot, such as is every day got up in the +lower ranks of the people and in the army, but an actual conspiracy—a +storm which menaces no less than your majesty’s throne. Sire, the +usurper is arming three ships, he meditates some project, which, +however mad, is yet, perhaps, terrible. At this moment he will have +left Elba, to go whither I know not, but assuredly to attempt a landing +either at Naples, or on the coast of Tuscany, or perhaps on the shores +of France. Your majesty is well aware that the sovereign of the Island +of Elba has maintained his relations with Italy and France?” + +“I am, sir,” said the king, much agitated; “and recently we have had +information that the Bonapartist clubs have had meetings in the Rue +Saint-Jacques. But proceed, I beg of you. How did you obtain these +details?” + +“Sire, they are the results of an examination which I have made of a +man of Marseilles, whom I have watched for some time, and arrested on +the day of my departure. This person, a sailor, of turbulent character, +and whom I suspected of Bonapartism, has been secretly to the Island of +Elba. There he saw the grand-marshal, who charged him with an oral +message to a Bonapartist in Paris, whose name I could not extract from +him; but this mission was to prepare men’s minds for a return (it is +the man who says this, sire)—a return which will soon occur.” + +“And where is this man?” + +“In prison, sire.” + +“And the matter seems serious to you?” + +“So serious, sire, that when the circumstance surprised me in the midst +of a family festival, on the very day of my betrothal, I left my bride +and friends, postponing everything, that I might hasten to lay at your +majesty’s feet the fears which impressed me, and the assurance of my +devotion.” + +“True,” said Louis XVIII., “was there not a marriage engagement between +you and Mademoiselle de Saint-Méran?” + +“Daughter of one of your majesty’s most faithful servants.” + +“Yes, yes; but let us talk of this plot, M. de Villefort.” + +“Sire, I fear it is more than a plot; I fear it is a conspiracy.” + +“A conspiracy in these times,” said Louis XVIII., smiling, “is a thing +very easy to meditate, but more difficult to conduct to an end, +inasmuch as, re-established so recently on the throne of our ancestors, +we have our eyes open at once upon the past, the present, and the +future. For the last ten months my ministers have redoubled their +vigilance, in order to watch the shore of the Mediterranean. If +Bonaparte landed at Naples, the whole coalition would be on foot before +he could even reach Piombino; if he land in Tuscany, he will be in an +unfriendly territory; if he land in France, it must be with a handful +of men, and the result of that is easily foretold, execrated as he is +by the population. Take courage, sir; but at the same time rely on our +royal gratitude.” + +“Ah, here is M. Dandré!” cried de Blacas. At this instant the minister +of police appeared at the door, pale, trembling, and as if ready to +faint. Villefort was about to retire, but M. de Blacas, taking his +hand, restrained him. + + + + Chapter 11. The Corsican Ogre + +At the sight of this agitation Louis XVIII. pushed from him violently +the table at which he was sitting. + +“What ails you, baron?” he exclaimed. “You appear quite aghast. Has +your uneasiness anything to do with what M. de Blacas has told me, and +M. de Villefort has just confirmed?” M. de Blacas moved suddenly +towards the baron, but the fright of the courtier pleaded for the +forbearance of the statesman; and besides, as matters were, it was much +more to his advantage that the prefect of police should triumph over +him than that he should humiliate the prefect. + +“Sire,——” stammered the baron. + +“Well, what is it?” asked Louis XVIII. The minister of police, giving +way to an impulse of despair, was about to throw himself at the feet of +Louis XVIII., who retreated a step and frowned. + +“Will you speak?” he said. + +“Oh, sire, what a dreadful misfortune! I am, indeed, to be pitied. I +can never forgive myself!” + +“Monsieur,” said Louis XVIII., “I command you to speak.” + +“Well, sire, the usurper left Elba on the 26th February, and landed on +the 1st of March.” + +“And where? In Italy?” asked the king eagerly. + +“In France, sire,—at a small port, near Antibes, in the Gulf of Juan.” + +“The usurper landed in France, near Antibes, in the Gulf of Juan, two +hundred and fifty leagues from Paris, on the 1st of March, and you only +acquired this information today, the 3rd of March! Well, sir, what you +tell me is impossible. You must have received a false report, or you +have gone mad.” + +“Alas, sire, it is but too true!” Louis made a gesture of indescribable +anger and alarm, and then drew himself up as if this sudden blow had +struck him at the same moment in heart and countenance. + +“In France!” he cried, “the usurper in France! Then they did not watch +over this man. Who knows? they were, perhaps, in league with him.” + +“Oh, sire,” exclaimed the Duc de Blacas, “M. Dandré is not a man to be +accused of treason! Sire, we have all been blind, and the minister of +police has shared the general blindness, that is all.” + +“But——” said Villefort, and then suddenly checking himself, he was +silent; then he continued, “Your pardon, sire,” he said, bowing, “my +zeal carried me away. Will your majesty deign to excuse me?” + +“Speak, sir, speak boldly,” replied Louis. “You alone forewarned us of +the evil; now try and aid us with the remedy.” + +“Sire,” said Villefort, “the usurper is detested in the south; and it +seems to me that if he ventured into the south, it would be easy to +raise Languedoc and Provence against him.” + +“Yes, assuredly,” replied the minister; “but he is advancing by Gap and +Sisteron.” + +“Advancing—he is advancing!” said Louis XVIII. “Is he then advancing on +Paris?” The minister of police maintained a silence which was +equivalent to a complete avowal. + +“And Dauphiné, sir?” inquired the king, of Villefort. “Do you think it +possible to rouse that as well as Provence?” + +“Sire, I am sorry to tell your majesty a cruel fact; but the feeling in +Dauphiné is quite the reverse of that in Provence or Languedoc. The +mountaineers are Bonapartists, sire.” + +“Then,” murmured Louis, “he was well informed. And how many men had he +with him?” + +“I do not know, sire,” answered the minister of police. + +“What, you do not know! Have you neglected to obtain information on +that point? Of course it is of no consequence,” he added, with a +withering smile. + +“Sire, it was impossible to learn; the despatch simply stated the fact +of the landing and the route taken by the usurper.” + +“And how did this despatch reach you?” inquired the king. The minister +bowed his head, and while a deep color overspread his cheeks, he +stammered out: + +“By the telegraph, sire.” Louis XVIII. advanced a step, and folded his +arms over his chest as Napoleon would have done. + +0141m + + + +“So then,” he exclaimed, turning pale with anger, “seven conjoined and +allied armies overthrew that man. A miracle of heaven replaced me on +the throne of my fathers after five-and-twenty years of exile. I have, +during those five-and-twenty years, spared no pains to understand the +people of France and the interests which were confided to me; and now, +when I see the fruition of my wishes almost within reach, the power I +hold in my hands bursts and shatters me to atoms!” + +“Sire, it is fatality!” murmured the minister, feeling that the +pressure of circumstances, however light a thing to destiny, was too +much for any human strength to endure. + +“What our enemies say of us is then true. We have learnt nothing, +forgotten nothing! If I were betrayed as he was, I would console +myself; but to be in the midst of persons elevated by myself to places +of honor, who ought to watch over me more carefully than over +themselves,—for my fortune is theirs—before me they were nothing—after +me they will be nothing, and perish miserably from +incapacity—ineptitude! Oh, yes, sir, you are right—it is fatality!” + +The minister quailed before this outburst of sarcasm. M. de Blacas +wiped the moisture from his brow. Villefort smiled within himself, for +he felt his increased importance. + +“To fall,” continued King Louis, who at the first glance had sounded +the abyss on which the monarchy hung suspended,—“to fall, and learn of +that fall by telegraph! Oh, I would rather mount the scaffold of my +brother, Louis XVI., than thus descend the staircase at the Tuileries +driven away by ridicule. Ridicule, sir—why, you know not its power in +France, and yet you ought to know it!” + +“Sire, sire,” murmured the minister, “for pity’s——” + +“Approach, M. de Villefort,” resumed the king, addressing the young +man, who, motionless and breathless, was listening to a conversation on +which depended the destiny of a kingdom. “Approach, and tell monsieur +that it is possible to know beforehand all that he has not known.” + +“Sire, it was really impossible to learn secrets which that man +concealed from all the world.” + +“Really impossible! Yes—that is a great word, sir. Unfortunately, there +are great words, as there are great men; I have measured them. Really +impossible for a minister who has an office, agents, spies, and fifteen +hundred thousand francs for secret service money, to know what is going +on at sixty leagues from the coast of France! Well, then, see, here is +a gentleman who had none of these resources at his disposal—a +gentleman, only a simple magistrate, who learned more than you with all +your police, and who would have saved my crown, if, like you, he had +the power of directing a telegraph.” The look of the minister of police +was turned with concentrated spite on Villefort, who bent his head in +modest triumph. + +“I do not mean that for you, Blacas,” continued Louis XVIII.; “for if +you have discovered nothing, at least you have had the good sense to +persevere in your suspicions. Any other than yourself would have +considered the disclosure of M. de Villefort insignificant, or else +dictated by venal ambition.” These words were an allusion to the +sentiments which the minister of police had uttered with so much +confidence an hour before. + +Villefort understood the king’s intent. Any other person would, +perhaps, have been overcome by such an intoxicating draught of praise; +but he feared to make for himself a mortal enemy of the police +minister, although he saw that Dandré was irrevocably lost. In fact, +the minister, who, in the plenitude of his power, had been unable to +unearth Napoleon’s secret, might in despair at his own downfall +interrogate Dantès and so lay bare the motives of Villefort’s plot. +Realizing this, Villefort came to the rescue of the crest-fallen +minister, instead of aiding to crush him. + +“Sire,” said Villefort, “the suddenness of this event must prove to +your majesty that the issue is in the hands of Providence; what your +majesty is pleased to attribute to me as profound perspicacity is +simply owing to chance, and I have profited by that chance, like a good +and devoted servant—that’s all. Do not attribute to me more than I +deserve, sire, that your majesty may never have occasion to recall the +first opinion you have been pleased to form of me.” The minister of +police thanked the young man by an eloquent look, and Villefort +understood that he had succeeded in his design; that is to say, that +without forfeiting the gratitude of the king, he had made a friend of +one on whom, in case of necessity, he might rely. + +“’Tis well,” resumed the king. “And now, gentlemen,” he continued, +turning towards M. de Blacas and the minister of police, “I have no +further occasion for you, and you may retire; what now remains to do is +in the department of the minister of war.” + +“Fortunately, sire,” said M. de Blacas, “we can rely on the army; your +majesty knows how every report confirms their loyalty and attachment.” + +“Do not mention reports, duke, to me, for I know now what confidence to +place in them. Yet, speaking of reports, baron, what have you learned +with regard to the affair in the Rue Saint-Jacques?” + +“The affair in the Rue Saint-Jacques!” exclaimed Villefort, unable to +repress an exclamation. Then, suddenly pausing, he added, “Your pardon, +sire, but my devotion to your majesty has made me forget, not the +respect I have, for that is too deeply engraved in my heart, but the +rules of etiquette.” + +“Go on, go on, sir,” replied the king; “you have today earned the right +to make inquiries here.” + +“Sire,” interposed the minister of police, “I came a moment ago to give +your majesty fresh information which I had obtained on this head, when +your majesty’s attention was attracted by the terrible event that has +occurred in the gulf, and now these facts will cease to interest your +majesty.” + +“On the contrary, sir,—on the contrary,” said Louis XVIII., “this +affair seems to me to have a decided connection with that which +occupies our attention, and the death of General Quesnel will, perhaps, +put us on the direct track of a great internal conspiracy.” At the name +of General Quesnel, Villefort trembled. + +“Everything points to the conclusion, sire,” said the minister of +police, “that death was not the result of suicide, as we first +believed, but of assassination. General Quesnel, it appears, had just +left a Bonapartist club when he disappeared. An unknown person had been +with him that morning, and made an appointment with him in the Rue +Saint-Jacques; unfortunately, the general’s valet, who was dressing his +hair at the moment when the stranger entered, heard the street +mentioned, but did not catch the number.” As the police minister +related this to the king, Villefort, who looked as if his very life +hung on the speaker’s lips, turned alternately red and pale. The king +looked towards him. + +“Do you not think with me, M. de Villefort, that General Quesnel, whom +they believed attached to the usurper, but who was really entirely +devoted to me, has perished the victim of a Bonapartist ambush?” + +“It is probable, sire,” replied Villefort. “But is this all that is +known?” + +“They are on the track of the man who appointed the meeting with him.” + +“On his track?” said Villefort. + +“Yes, the servant has given his description. He is a man of from fifty +to fifty-two years of age, dark, with black eyes covered with shaggy +eyebrows, and a thick moustache. He was dressed in a blue frock-coat, +buttoned up to the chin, and wore at his button-hole the rosette of an +officer of the Legion of Honor. Yesterday a person exactly +corresponding with this description was followed, but he was lost sight +of at the corner of the Rue de la Jussienne and the Rue Coq-Héron.” +Villefort leaned on the back of an armchair, for as the minister of +police went on speaking he felt his legs bend under him; but when he +learned that the unknown had escaped the vigilance of the agent who +followed him, he breathed again. + +“Continue to seek for this man, sir,” said the king to the minister of +police; “for if, as I am all but convinced, General Quesnel, who would +have been so useful to us at this moment, has been murdered, his +assassins, Bonapartists or not, shall be cruelly punished.” It required +all Villefort’s coolness not to betray the terror with which this +declaration of the king inspired him. + +“How strange,” continued the king, with some asperity; “the police +think that they have disposed of the whole matter when they say, ‘A +murder has been committed,’ and especially so when they can add, ‘And +we are on the track of the guilty persons.’” + +“Sire, your majesty will, I trust, be amply satisfied on this point at +least.” + +“We shall see. I will no longer detain you, M. de Villefort, for you +must be fatigued after so long a journey; go and rest. Of course you +stopped at your father’s?” A feeling of faintness came over Villefort. + +0145m + + + +“No, sire,” he replied, “I alighted at the Hotel de Madrid, in the Rue +de Tournon.” + +“But you have seen him?” + +“Sire, I went straight to the Duc de Blacas.” + +“But you will see him, then?” + +“I think not, sire.” + +“Ah, I forgot,” said Louis, smiling in a manner which proved that all +these questions were not made without a motive; “I forgot you and M. +Noirtier are not on the best terms possible, and that is another +sacrifice made to the royal cause, and for which you should be +recompensed.” + +“Sire, the kindness your majesty deigns to evince towards me is a +recompense which so far surpasses my utmost ambition that I have +nothing more to ask for.” + +“Never mind, sir, we will not forget you; make your mind easy. In the +meanwhile” (the king here detached the cross of the Legion of Honor +which he usually wore over his blue coat, near the cross of St. Louis, +above the order of Notre-Dame-du-Mont-Carmel and St. Lazare, and gave +it to Villefort)—“in the meanwhile take this cross.” + +“Sire,” said Villefort, “your majesty mistakes; this is an officer’s +cross.” + +“_Ma foi!_” said Louis XVIII., “take it, such as it is, for I have not +the time to procure you another. Blacas, let it be your care to see +that the brevet is made out and sent to M. de Villefort.” Villefort’s +eyes were filled with tears of joy and pride; he took the cross and +kissed it. + +“And now,” he said, “may I inquire what are the orders with which your +majesty deigns to honor me?” + +“Take what rest you require, and remember that if you are not able to +serve me here in Paris, you may be of the greatest service to me at +Marseilles.” + +“Sire,” replied Villefort, bowing, “in an hour I shall have quitted +Paris.” + +“Go, sir,” said the king; “and should I forget you (kings’ memories are +short), do not be afraid to bring yourself to my recollection. Baron, +send for the minister of war. Blacas, remain.” + +“Ah, sir,” said the minister of police to Villefort, as they left the +Tuileries, “you entered by luck’s door—your fortune is made.” + +“Will it be long first?” muttered Villefort, saluting the minister, +whose career was ended, and looking about him for a hackney-coach. One +passed at the moment, which he hailed; he gave his address to the +driver, and springing in, threw himself on the seat, and gave loose to +dreams of ambition. + +Ten minutes afterwards Villefort reached his hotel, ordered horses to +be ready in two hours, and asked to have his breakfast brought to him. +He was about to begin his repast when the sound of the bell rang sharp +and loud. The valet opened the door, and Villefort heard someone speak +his name. + +0147m + + + +“Who could know that I was here already?” said the young man. The valet +entered. + +“Well,” said Villefort, “what is it?—Who rang?—Who asked for me?” + +“A stranger who will not send in his name.” + +“A stranger who will not send in his name! What can he want with me?” + +“He wishes to speak to you.” + +“To me?” + +“Yes.” + +“Did he mention my name?” + +“Yes.” + +“What sort of person is he?” + +“Why, sir, a man of about fifty.” + +“Short or tall?” + +“About your own height, sir.” + +“Dark or fair?” + +“Dark,—very dark; with black eyes, black hair, black eyebrows.” + +“And how dressed?” asked Villefort quickly. + +“In a blue frock-coat, buttoned up close, decorated with the Legion of +Honor.” + +“It is he!” said Villefort, turning pale. + +0148m + + + +“Eh, _pardieu!_” said the individual whose description we have twice +given, entering the door, “what a great deal of ceremony! Is it the +custom in Marseilles for sons to keep their fathers waiting in their +anterooms?” + +“Father!” cried Villefort, “then I was not deceived; I felt sure it +must be you.” + +“Well, then, if you felt so sure,” replied the new-comer, putting his +cane in a corner and his hat on a chair, “allow me to say, my dear +Gérard, that it was not very filial of you to keep me waiting at the +door.” + +“Leave us, Germain,” said Villefort. The servant quitted the apartment +with evident signs of astonishment. + + + + Chapter 12. Father and Son + +M. Noirtier—for it was, indeed, he who entered—looked after the servant +until the door was closed, and then, fearing, no doubt, that he might +be overheard in the antechamber, he opened the door again, nor was the +precaution useless, as appeared from the rapid retreat of Germain, who +proved that he was not exempt from the sin which ruined our first +parents. M. Noirtier then took the trouble to close and bolt the +antechamber door, then that of the bedchamber, and then extended his +hand to Villefort, who had followed all his motions with surprise which +he could not conceal. + +“Well, now, my dear Gérard,” said he to the young man, with a very +significant look, “do you know, you seem as if you were not very glad +to see me?” + +“My dear father,” said Villefort, “I am, on the contrary, delighted; +but I so little expected your visit, that it has somewhat overcome me.” + +“But, my dear fellow,” replied M. Noirtier, seating himself, “I might +say the same thing to you, when you announce to me your wedding for the +28th of February, and on the 3rd of March you turn up here in Paris.” + +“And if I have come, my dear father,” said Gérard, drawing closer to M. +Noirtier, “do not complain, for it is for you that I came, and my +journey will be your salvation.” + +“Ah, indeed!” said M. Noirtier, stretching himself out at his ease in +the chair. “Really, pray tell me all about it, for it must be +interesting.” + +“Father, you have heard speak of a certain Bonapartist club in the Rue +Saint-Jacques?” + +“No. 53; yes, I am vice-president.” + +“Father, your coolness makes me shudder.” + +“Why, my dear boy, when a man has been proscribed by the mountaineers, +has escaped from Paris in a hay-cart, been hunted over the plains of +Bordeaux by Robespierre’s bloodhounds, he becomes accustomed to most +things. But go on, what about the club in the Rue Saint-Jacques?” + +“Why, they induced General Quesnel to go there, and General Quesnel, +who quitted his own house at nine o’clock in the evening, was found the +next day in the Seine.” + +0151m + + + +“And who told you this fine story?” + +“The king himself.” + +“Well, then, in return for your story,” continued Noirtier, “I will +tell you another.” + +“My dear father, I think I already know what you are about to tell me.” + +“Ah, you have heard of the landing of the emperor?” + +“Not so loud, father, I entreat of you—for your own sake as well as +mine. Yes, I heard this news, and knew it even before you could; for +three days ago I posted from Marseilles to Paris with all possible +speed, half-desperate at the enforced delay.” + +“Three days ago? You are crazy. Why, three days ago the emperor had not +landed.” + +“No matter, I was aware of his intention.” + +“How did you know about it?” + +“By a letter addressed to you from the Island of Elba.” + +“To me?” + +“To you; and which I discovered in the pocket-book of the messenger. +Had that letter fallen into the hands of another, you, my dear father, +would probably ere this have been shot.” Villefort’s father laughed. + +“Come, come,” said he, “will the Restoration adopt imperial methods so +promptly? Shot, my dear boy? What an idea! Where is the letter you +speak of? I know you too well to suppose you would allow such a thing +to pass you.” + +“I burnt it, for fear that even a fragment should remain; for that +letter must have led to your condemnation.” + +“And the destruction of your future prospects,” replied Noirtier; “yes, +I can easily comprehend that. But I have nothing to fear while I have +you to protect me.” + +“I do better than that, sir—I save you.” + +“You do? Why, really, the thing becomes more and more dramatic—explain +yourself.” + +“I must refer again to the club in the Rue Saint-Jacques.” + +“It appears that this club is rather a bore to the police. Why didn’t +they search more vigilantly? they would have found——” + +“They have not found; but they are on the track.” + +“Yes, that the usual phrase; I am quite familiar with it. When the +police is at fault, it declares that it is on the track; and the +government patiently awaits the day when it comes to say, with a +sneaking air, that the track is lost.” + +“Yes, but they have found a corpse; the general has been killed, and in +all countries they call that a murder.” + +“A murder do you call it? why, there is nothing to prove that the +general was murdered. People are found every day in the Seine, having +thrown themselves in, or having been drowned from not knowing how to +swim.” + +“Father, you know very well that the general was not a man to drown +himself in despair, and people do not bathe in the Seine in the month +of January. No, no, do not be deceived; this was murder in every sense +of the word.” + +“And who thus designated it?” + +“The king himself.” + +“The king! I thought he was philosopher enough to allow that there was +no murder in politics. In politics, my dear fellow, you know, as well +as I do, there are no men, but ideas—no feelings, but interests; in +politics we do not kill a man, we only remove an obstacle, that is all. +Would you like to know how matters have progressed? Well, I will tell +you. It was thought reliance might be placed in General Quesnel; he was +recommended to us from the Island of Elba; one of us went to him, and +invited him to the Rue Saint-Jacques, where he would find some friends. +He came there, and the plan was unfolded to him for leaving Elba, the +projected landing, etc. When he had heard and comprehended all to the +fullest extent, he replied that he was a royalist. Then all looked at +each other,—he was made to take an oath, and did so, but with such an +ill grace that it was really tempting Providence to swear thus, and +yet, in spite of that, the general was allowed to depart free—perfectly +free. Yet he did not return home. What could that mean? why, my dear +fellow, that on leaving us he lost his way, that’s all. A murder? +really, Villefort, you surprise me. You, a deputy procureur, to found +an accusation on such bad premises! Did I ever say to you, when you +were fulfilling your character as a royalist, and cut off the head of +one of my party, ‘My son, you have committed a murder?’ No, I said, +‘Very well, sir, you have gained the victory; tomorrow, perchance, it +will be our turn.’” + +“But, father, take care; when our turn comes, our revenge will be +sweeping.” + +“I do not understand you.” + +“You rely on the usurper’s return?” + +“We do.” + +“You are mistaken; he will not advance two leagues into the interior of +France without being followed, tracked, and caught like a wild beast.” + +“My dear fellow, the emperor is at this moment on the way to Grenoble; +on the 10th or 12th he will be at Lyons, and on the 20th or 25th at +Paris.” + +“The people will rise.” + +“Yes, to go and meet him.” + +“He has but a handful of men with him, and armies will be despatched +against him.” + +“Yes, to escort him into the capital. Really, my dear Gérard, you are +but a child; you think yourself well informed because the telegraph has +told you, three days after the landing, ‘The usurper has landed at +Cannes with several men. He is pursued.’ But where is he? what is he +doing? You do not know at all, and in this way they will chase him to +Paris, without drawing a trigger.” + +“Grenoble and Lyons are faithful cities, and will oppose to him an +impassable barrier.” + +“Grenoble will open her gates to him with enthusiasm—all Lyons will +hasten to welcome him. Believe me, we are as well informed as you, and +our police are as good as your own. Would you like a proof of it? well, +you wished to conceal your journey from me, and yet I knew of your +arrival half an hour after you had passed the barrier. You gave your +direction to no one but your postilion, yet I have your address, and in +proof I am here the very instant you are going to sit at table. Ring, +then, if you please, for a second knife, fork, and plate, and we will +dine together.” + +“Indeed!” replied Villefort, looking at his father with astonishment, +“you really do seem very well informed.” + +“Eh? the thing is simple enough. You who are in power have only the +means that money produces—we who are in expectation, have those which +devotion prompts.” + +“Devotion!” said Villefort, with a sneer. + +“Yes, devotion; for that is, I believe, the phrase for hopeful +ambition.” + +And Villefort’s father extended his hand to the bell-rope, to summon +the servant whom his son had not called. Villefort caught his arm. + +“Wait, my dear father,” said the young man, “one word more.” + +“Say on.” + +“However stupid the royalist police may be, they do know one terrible +thing.” + +“What is that?” + +“The description of the man who, on the morning of the day when General +Quesnel disappeared, presented himself at his house.” + +“Oh, the admirable police have found that out, have they? And what may +be that description?” + +“Dark complexion; hair, eyebrows, and whiskers black; blue frock-coat, +buttoned up to the chin; rosette of an officer of the Legion of Honor +in his button-hole; a hat with wide brim, and a cane.” + +“Ah, ha, that’s it, is it?” said Noirtier; “and why, then, have they +not laid hands on him?” + +“Because yesterday, or the day before, they lost sight of him at the +corner of the Rue Coq-Héron.” + +“Didn’t I say that your police were good for nothing?” + +“Yes; but they may catch him yet.” + +“True,” said Noirtier, looking carelessly around him, “true, if this +person were not on his guard, as he is;” and he added with a smile, “He +will consequently make a few changes in his personal appearance.” At +these words he rose, and put off his frock-coat and cravat, went +towards a table on which lay his son’s toilet articles, lathered his +face, took a razor, and, with a firm hand, cut off the compromising +whiskers. Villefort watched him with alarm not devoid of admiration. + +His whiskers cut off, Noirtier gave another turn to his hair; took, +instead of his black cravat, a colored neckerchief which lay at the top +of an open portmanteau; put on, in lieu of his blue and high-buttoned +frock-coat, a coat of Villefort’s of dark brown, and cut away in front; +tried on before the glass a narrow-brimmed hat of his son’s, which +appeared to fit him perfectly, and, leaving his cane in the corner +where he had deposited it, he took up a small bamboo switch, cut the +air with it once or twice, and walked about with that easy swagger +which was one of his principal characteristics. + +“Well,” he said, turning towards his wondering son, when this disguise +was completed, “well, do you think your police will recognize me now.” + +“No, father,” stammered Villefort; “at least, I hope not.” + +“And now, my dear boy,” continued Noirtier, “I rely on your prudence to +remove all the things which I leave in your care.” + +“Oh, rely on me,” said Villefort. + +“Yes, yes; and now I believe you are right, and that you have really +saved my life; be assured I will return the favor hereafter.” + +Villefort shook his head. + +“You are not convinced yet?” + +“I hope at least, that you may be mistaken.” + +“Shall you see the king again?” + +“Perhaps.” + +“Would you pass in his eyes for a prophet?” + +“Prophets of evil are not in favor at the court, father.” + +“True, but some day they do them justice; and supposing a second +restoration, you would then pass for a great man.” + +“Well, what should I say to the king?” + +“Say this to him: ‘Sire, you are deceived as to the feeling in France, +as to the opinions of the towns, and the prejudices of the army; he +whom in Paris you call the Corsican ogre, who at Nevers is styled the +usurper, is already saluted as Bonaparte at Lyons, and emperor at +Grenoble. You think he is tracked, pursued, captured; he is advancing +as rapidly as his own eagles. The soldiers you believe to be dying with +hunger, worn out with fatigue, ready to desert, gather like atoms of +snow about the rolling ball as it hastens onward. Sire, go, leave +France to its real master, to him who acquired it, not by purchase, but +by right of conquest; go, sire, not that you incur any risk, for your +adversary is powerful enough to show you mercy, but because it would be +humiliating for a grandson of Saint Louis to owe his life to the man of +Arcola, Marengo, Austerlitz.’ Tell him this, Gérard; or, rather, tell +him nothing. Keep your journey a secret; do not boast of what you have +come to Paris to do, or have done; return with all speed; enter +Marseilles at night, and your house by the back-door, and there remain, +quiet, submissive, secret, and, above all, inoffensive; for this time, +I swear to you, we shall act like powerful men who know their enemies. +Go, my son—go, my dear Gérard, and by your obedience to my paternal +orders, or, if you prefer it, friendly counsels, we will keep you in +your place. This will be,” added Noirtier, with a smile, “one means by +which you may a second time save me, if the political balance should +some day take another turn, and cast you aloft while hurling me down. +Adieu, my dear Gérard, and at your next journey alight at my door.” + +Noirtier left the room when he had finished, with the same calmness +that had characterized him during the whole of this remarkable and +trying conversation. Villefort, pale and agitated, ran to the window, +put aside the curtain, and saw him pass, cool and collected, by two or +three ill-looking men at the corner of the street, who were there, +perhaps, to arrest a man with black whiskers, and a blue frock-coat, +and hat with broad brim. + +Villefort stood watching, breathless, until his father had disappeared +at the Rue Bussy. Then he turned to the various articles he had left +behind him, put the black cravat and blue frock-coat at the bottom of +the portmanteau, threw the hat into a dark closet, broke the cane into +small bits and flung it in the fire, put on his travelling-cap, and +calling his valet, checked with a look the thousand questions he was +ready to ask, paid his bill, sprang into his carriage, which was ready, +learned at Lyons that Bonaparte had entered Grenoble, and in the midst +of the tumult which prevailed along the road, at length reached +Marseilles, a prey to all the hopes and fears which enter into the +heart of man with ambition and its first successes. + + + + Chapter 13. The Hundred Days + +M. Noirtier was a true prophet, and things progressed rapidly, as he +had predicted. Everyone knows the history of the famous return from +Elba, a return which was unprecedented in the past, and will probably +remain without a counterpart in the future. + +Louis XVIII. made but a faint attempt to parry this unexpected blow; +the monarchy he had scarcely reconstructed tottered on its precarious +foundation, and at a sign from the emperor the incongruous structure of +ancient prejudices and new ideas fell to the ground. Villefort, +therefore, gained nothing save the king’s gratitude (which was rather +likely to injure him at the present time) and the cross of the Legion +of Honor, which he had the prudence not to wear, although M. de Blacas +had duly forwarded the brevet. + +Napoleon would, doubtless, have deprived Villefort of his office had it +not been for Noirtier, who was all powerful at court, and thus the +Girondin of ’93 and the Senator of 1806 protected him who so lately had +been his protector. All Villefort’s influence barely enabled him to +stifle the secret Dantès had so nearly divulged. The king’s procureur +alone was deprived of his office, being suspected of royalism. + +However, scarcely was the imperial power established—that is, scarcely +had the emperor re-entered the Tuileries and begun to issue orders from +the closet into which we have introduced our readers,—he found on the +table there Louis XVIII.’s half-filled snuff-box,—scarcely had this +occurred when Marseilles began, in spite of the authorities, to +rekindle the flames of civil war, always smouldering in the south, and +it required but little to excite the populace to acts of far greater +violence than the shouts and insults with which they assailed the +royalists whenever they ventured abroad. + +0159m + + + +Owing to this change, the worthy shipowner became at that moment—we +will not say all powerful, because Morrel was a prudent and rather a +timid man, so much so, that many of the most zealous partisans of +Bonaparte accused him of “moderation”—but sufficiently influential to +make a demand in favor of Dantès. + +Villefort retained his place, but his marriage was put off until a more +favorable opportunity. If the emperor remained on the throne, Gérard +required a different alliance to aid his career; if Louis XVIII. +returned, the influence of M. de Saint-Méran, like his own, could be +vastly increased, and the marriage be still more suitable. The deputy +procureur was, therefore, the first magistrate of Marseilles, when one +morning his door opened, and M. Morrel was announced. + +Anyone else would have hastened to receive him; but Villefort was a man +of ability, and he knew this would be a sign of weakness. He made +Morrel wait in the antechamber, although he had no one with him, for +the simple reason that the king’s procureur always makes everyone wait, +and after passing a quarter of an hour in reading the papers, he +ordered M. Morrel to be admitted. + +Morrel expected Villefort would be dejected; he found him as he had +found him six weeks before, calm, firm, and full of that glacial +politeness, that most insurmountable barrier which separates the +well-bred from the vulgar man. + +He had entered Villefort’s office expecting that the magistrate would +tremble at the sight of him; on the contrary, he felt a cold shudder +all over him when he saw Villefort sitting there with his elbow on his +desk, and his head leaning on his hand. He stopped at the door; +Villefort gazed at him as if he had some difficulty in recognizing him; +then, after a brief interval, during which the honest shipowner turned +his hat in his hands, + +“M. Morrel, I believe?” said Villefort. + +“Yes, sir.” + +“Come nearer,” said the magistrate, with a patronizing wave of the +hand, “and tell me to what circumstance I owe the honor of this visit.” + +“Do you not guess, monsieur?” asked Morrel. + +“Not in the least; but if I can serve you in any way I shall be +delighted.” + +“Everything depends on you.” + +“Explain yourself, pray.” + +“Monsieur,” said Morrel, recovering his assurance as he proceeded, “do +you recollect that a few days before the landing of his majesty the +emperor, I came to intercede for a young man, the mate of my ship, who +was accused of being concerned in correspondence with the Island of +Elba? What was the other day a crime is today a title to favor. You +then served Louis XVIII., and you did not show any favor—it was your +duty; today you serve Napoleon, and you ought to protect him—it is +equally your duty; I come, therefore, to ask what has become of him?” + +0161m + + + +Villefort by a strong effort sought to control himself. “What is his +name?” said he. “Tell me his name.” + +“Edmond Dantès.” + +Villefort would probably have rather stood opposite the muzzle of a +pistol at five-and-twenty paces than have heard this name spoken; but +he did not blanch. + +“Dantès,” repeated he, “Edmond Dantès.” + +“Yes, monsieur.” Villefort opened a large register, then went to a +table, from the table turned to his registers, and then, turning to +Morrel, + +“Are you quite sure you are not mistaken, monsieur?” said he, in the +most natural tone in the world. + +Had Morrel been a more quick-sighted man, or better versed in these +matters, he would have been surprised at the king’s procureur answering +him on such a subject, instead of referring him to the governors of the +prison or the prefect of the department. But Morrel, disappointed in +his expectations of exciting fear, was conscious only of the other’s +condescension. Villefort had calculated rightly. + +“No,” said Morrel; “I am not mistaken. I have known him for ten years, +the last four of which he was in my service. Do not you recollect, I +came about six weeks ago to plead for clemency, as I come today to +plead for justice. You received me very coldly. Oh, the royalists were +very severe with the Bonapartists in those days.” + +“Monsieur,” returned Villefort, “I was then a royalist, because I +believed the Bourbons not only the heirs to the throne, but the chosen +of the nation. The miraculous return of Napoleon has conquered me, the +legitimate monarch is he who is loved by his people.” + +“That’s right!” cried Morrel. “I like to hear you speak thus, and I +augur well for Edmond from it.” + +“Wait a moment,” said Villefort, turning over the leaves of a register; +“I have it—a sailor, who was about to marry a young Catalan girl. I +recollect now; it was a very serious charge.” + +“How so?” + +“You know that when he left here he was taken to the Palais de +Justice.” + +“Well?” + +“I made my report to the authorities at Paris, and a week after he was +carried off.” + +“Carried off!” said Morrel. “What can they have done with him?” + +“Oh, he has been taken to Fenestrelles, to Pignerol, or to the +Sainte-Marguérite islands. Some fine morning he will return to take +command of your vessel.” + +“Come when he will, it shall be kept for him. But how is it he is not +already returned? It seems to me the first care of government should be +to set at liberty those who have suffered for their adherence to it.” + +“Do not be too hasty, M. Morrel,” replied Villefort. “The order of +imprisonment came from high authority, and the order for his liberation +must proceed from the same source; and, as Napoleon has scarcely been +reinstated a fortnight, the letters have not yet been forwarded.” + +“But,” said Morrel, “is there no way of expediting all these +formalities—of releasing him from arrest?” + +“There has been no arrest.” + +“How?” + +“It is sometimes essential to government to cause a man’s disappearance +without leaving any traces, so that no written forms or documents may +defeat their wishes.” + +“It might be so under the Bourbons, but at present——” + +“It has always been so, my dear Morrel, since the reign of Louis XIV. +The emperor is more strict in prison discipline than even Louis +himself, and the number of prisoners whose names are not on the +register is incalculable.” Had Morrel even any suspicions, so much +kindness would have dispelled them. + +“Well, M. de Villefort, how would you advise me to act?” asked he. + +“Petition the minister.” + +“Oh, I know what that is; the minister receives two hundred petitions +every day, and does not read three.” + +“That is true; but he will read a petition countersigned and presented +by me.” + +“And will you undertake to deliver it?” + +“With the greatest pleasure. Dantès was then guilty, and now he is +innocent, and it is as much my duty to free him as it was to condemn +him.” Villefort thus forestalled any danger of an inquiry, which, +however improbable it might be, if it did take place would leave him +defenceless. + +“But how shall I address the minister?” + +“Sit down there,” said Villefort, giving up his place to Morrel, “and +write what I dictate.” + +“Will you be so good?” + +“Certainly. But lose no time; we have lost too much already.” + +“That is true. Only think what the poor fellow may even now be +suffering.” + +Villefort shuddered at the suggestion; but he had gone too far to draw +back. Dantès must be crushed to gratify Villefort’s ambition. + +Villefort dictated a petition, in which, from an excellent intention, +no doubt, Dantès’ patriotic services were exaggerated, and he was made +out one of the most active agents of Napoleon’s return. It was evident +that at the sight of this document the minister would instantly release +him. The petition finished, Villefort read it aloud. + +“That will do,” said he; “leave the rest to me.” + +“Will the petition go soon?” + +“Today.” + +“Countersigned by you?” + +“The best thing I can do will be to certify the truth of the contents +of your petition.” And, sitting down, Villefort wrote the certificate +at the bottom. + +“What more is to be done?” + +“I will do whatever is necessary.” This assurance delighted Morrel, who +took leave of Villefort, and hastened to announce to old Dantès that he +would soon see his son. + +As for Villefort, instead of sending to Paris, he carefully preserved +the petition that so fearfully compromised Dantès, in the hopes of an +event that seemed not unlikely,—that is, a second restoration. Dantès +remained a prisoner, and heard not the noise of the fall of Louis +XVIII.’s throne, or the still more tragic destruction of the empire. + +Twice during the Hundred Days had Morrel renewed his demand, and twice +had Villefort soothed him with promises. At last there was Waterloo, +and Morrel came no more; he had done all that was in his power, and any +fresh attempt would only compromise himself uselessly. + +Louis XVIII. remounted the throne; Villefort, to whom Marseilles had +become filled with remorseful memories, sought and obtained the +situation of king’s procureur at Toulouse, and a fortnight afterwards +he married Mademoiselle de Saint-Méran, whose father now stood higher +at court than ever. + +And so Dantès, after the Hundred Days and after Waterloo, remained in +his dungeon, forgotten of earth and heaven. + +Danglars comprehended the full extent of the wretched fate that +overwhelmed Dantès; and, when Napoleon returned to France, he, after +the manner of mediocre minds, termed the coincidence, _a decree of +Providence_. But when Napoleon returned to Paris, Danglars’ heart +failed him, and he lived in constant fear of Dantès’ return on a +mission of vengeance. He therefore informed M. Morrel of his wish to +quit the sea, and obtained a recommendation from him to a Spanish +merchant, into whose service he entered at the end of March, that is, +ten or twelve days after Napoleon’s return. He then left for Madrid, +and was no more heard of. + +Fernand understood nothing except that Dantès was absent. What had +become of him he cared not to inquire. Only, during the respite the +absence of his rival afforded him, he reflected, partly on the means of +deceiving Mercédès as to the cause of his absence, partly on plans of +emigration and abduction, as from time to time he sat sad and +motionless on the summit of Cape Pharo, at the spot from whence +Marseilles and the Catalans are visible, watching for the apparition of +a young and handsome man, who was for him also the messenger of +vengeance. Fernand’s mind was made up; he would shoot Dantès, and then +kill himself. But Fernand was mistaken; a man of his disposition never +kills himself, for he constantly hopes. + +During this time the empire made its last conscription, and every man +in France capable of bearing arms rushed to obey the summons of the +emperor. Fernand departed with the rest, bearing with him the terrible +thought that while he was away, his rival would perhaps return and +marry Mercédès. Had Fernand really meant to kill himself, he would have +done so when he parted from Mercédès. His devotion, and the compassion +he showed for her misfortunes, produced the effect they always produce +on noble minds—Mercédès had always had a sincere regard for Fernand, +and this was now strengthened by gratitude. + +“My brother,” said she, as she placed his knapsack on his shoulders, +“be careful of yourself, for if you are killed, I shall be alone in the +world.” These words carried a ray of hope into Fernand’s heart. Should +Dantès not return, Mercédès might one day be his. + +0165m + + + +Mercédès was left alone face to face with the vast plain that had never +seemed so barren, and the sea that had never seemed so vast. Bathed in +tears she wandered about the Catalan village. Sometimes she stood mute +and motionless as a statue, looking towards Marseilles, at other times +gazing on the sea, and debating as to whether it were not better to +cast herself into the abyss of the ocean, and thus end her woes. It was +not want of courage that prevented her putting this resolution into +execution; but her religious feelings came to her aid and saved her. + +Caderousse was, like Fernand, enrolled in the army, but, being married +and eight years older, he was merely sent to the frontier. Old Dantès, +who was only sustained by hope, lost all hope at Napoleon’s downfall. +Five months after he had been separated from his son, and almost at the +hour of his arrest, he breathed his last in Mercédès’ arms. M. Morrel +paid the expenses of his funeral, and a few small debts the poor old +man had contracted. + +There was more than benevolence in this action; there was courage; the +south was aflame, and to assist, even on his death-bed, the father of +so dangerous a Bonapartist as Dantès, was stigmatized as a crime. + + + + Chapter 14. The Two Prisoners + +A year after Louis XVIII.’s restoration, a visit was made by the +inspector-general of prisons. Dantès in his cell heard the noise of +preparation,—sounds that at the depth where he lay would have been +inaudible to any but the ear of a prisoner, who could hear the splash +of the drop of water that every hour fell from the roof of his dungeon. +He guessed something uncommon was passing among the living; but he had +so long ceased to have any intercourse with the world, that he looked +upon himself as dead. + +The inspector visited, one after another, the cells and dungeons of +several of the prisoners, whose good behavior or stupidity recommended +them to the clemency of the government. He inquired how they were fed, +and if they had any request to make. The universal response was, that +the fare was detestable, and that they wanted to be set free. + +The inspector asked if they had anything else to ask for. They shook +their heads. What could they desire beyond their liberty? The inspector +turned smilingly to the governor. + +“I do not know what reason government can assign for these useless +visits; when you see one prisoner, you see all,—always the same +thing,—ill fed and innocent. Are there any others?” + +“Yes; the dangerous and mad prisoners are in the dungeons.” + +“Let us visit them,” said the inspector with an air of fatigue. “We +must play the farce to the end. Let us see the dungeons.” + +“Let us first send for two soldiers,” said the governor. “The prisoners +sometimes, through mere uneasiness of life, and in order to be +sentenced to death, commit acts of useless violence, and you might fall +a victim.” + +“Take all needful precautions,” replied the inspector. + +Two soldiers were accordingly sent for, and the inspector descended a +stairway, so foul, so humid, so dark, as to be loathsome to sight, +smell, and respiration. + +“Oh,” cried the inspector, “who can live here?” + +“A most dangerous conspirator, a man we are ordered to keep the most +strict watch over, as he is daring and resolute.” + +“He is alone?” + +“Certainly.” + +“How long has he been there?” + +“Nearly a year.” + +“Was he placed here when he first arrived?” + +“No; not until he attempted to kill the turnkey, who took his food to +him.” + +“To kill the turnkey?” + +“Yes, the very one who is lighting us. Is it not true, Antoine?” asked +the governor. + +“True enough; he wanted to kill me!” returned the turnkey. + +“He must be mad,” said the inspector. + +“He is worse than that,—he is a devil!” returned the turnkey. + +“Shall I complain of him?” demanded the inspector. + +“Oh, no; it is useless. Besides, he is almost mad now, and in another +year he will be quite so.” + +“So much the better for him,—he will suffer less,” said the inspector. +He was, as this remark shows, a man full of philanthropy, and in every +way fit for his office. + +“You are right, sir,” replied the governor; “and this remark proves +that you have deeply considered the subject. Now we have in a dungeon +about twenty feet distant, and to which you descend by another stair, +an old abbé, formerly leader of a party in Italy, who has been here +since 1811, and in 1813 he went mad, and the change is astonishing. He +used to weep, he now laughs; he grew thin, he now grows fat. You had +better see him, for his madness is amusing.” + +“I will see them both,” returned the inspector; “I must conscientiously +perform my duty.” + +This was the inspector’s first visit; he wished to display his +authority. + +“Let us visit this one first,” added he. + +“By all means,” replied the governor, and he signed to the turnkey to +open the door. At the sound of the key turning in the lock, and the +creaking of the hinges, Dantès, who was crouched in a corner of the +dungeon, whence he could see the ray of light that came through a +narrow iron grating above, raised his head. Seeing a stranger, escorted +by two turnkeys holding torches and accompanied by two soldiers, and to +whom the governor spoke bareheaded, Dantès, who guessed the truth, and +that the moment to address himself to the superior authorities was +come, sprang forward with clasped hands. + +The soldiers interposed their bayonets, for they thought that he was +about to attack the inspector, and the latter recoiled two or three +steps. Dantès saw that he was looked upon as dangerous. Then, infusing +all the humility he possessed into his eyes and voice, he addressed the +inspector, and sought to inspire him with pity. + +The inspector listened attentively; then, turning to the governor, +observed, “He will become religious—he is already more gentle; he is +afraid, and retreated before the bayonets—madmen are not afraid of +anything; I made some curious observations on this at Charenton.” Then, +turning to the prisoner, “What is it you want?” said he. + +“I want to know what crime I have committed—to be tried; and if I am +guilty, to be shot; if innocent, to be set at liberty.” + +“Are you well fed?” said the inspector. + +“I believe so; I don’t know; it’s of no consequence. What matters +really, not only to me, but to officers of justice and the king, is +that an innocent man should languish in prison, the victim of an +infamous denunciation, to die here cursing his executioners.” + +“You are very humble today,” remarked the governor; “you are not so +always; the other day, for instance, when you tried to kill the +turnkey.” + +“It is true, sir, and I beg his pardon, for he has always been very +good to me, but I was mad.” + +“And you are not so any longer?” + +“No; captivity has subdued me—I have been here so long.” + +“So long?—when were you arrested, then?” asked the inspector. + +“The 28th of February, 1815, at half-past two in the afternoon.” + +“Today is the 30th of July, 1816,—why, it is but seventeen months.” + +“Only seventeen months,” replied Dantès. “Oh, you do not know what is +seventeen months in prison!—seventeen ages rather, especially to a man +who, like me, had arrived at the summit of his ambition—to a man, who, +like me, was on the point of marrying a woman he adored, who saw an +honorable career opened before him, and who loses all in an instant—who +sees his prospects destroyed, and is ignorant of the fate of his +affianced wife, and whether his aged father be still living! Seventeen +months’ captivity to a sailor accustomed to the boundless ocean, is a +worse punishment than human crime ever merited. Have pity on me, then, +and ask for me, not intelligence, but a trial; not pardon, but a +verdict—a trial, sir, I ask only for a trial; that, surely, cannot be +denied to one who is accused!” + +“We shall see,” said the inspector; then, turning to the governor, “On +my word, the poor devil touches me. You must show me the proofs against +him.” + +“Certainly; but you will find terrible charges.” + +“Monsieur,” continued Dantès, “I know it is not in your power to +release me; but you can plead for me—you can have me tried—and that is +all I ask. Let me know my crime, and the reason why I was condemned. +Uncertainty is worse than all.” + +“Go on with the lights,” said the inspector. + +“Monsieur,” cried Dantès, “I can tell by your voice you are touched +with pity; tell me at least to hope.” + +“I cannot tell you that,” replied the inspector; “I can only promise to +examine into your case.” + +“Oh, I am free—then I am saved!” + +“Who arrested you?” + +“M. Villefort. See him, and hear what he says.” + +“M. Villefort is no longer at Marseilles; he is now at Toulouse.” + +“I am no longer surprised at my detention,” murmured Dantès, “since my +only protector is removed.” + +“Had M. de Villefort any cause of personal dislike to you?” + +“None; on the contrary, he was very kind to me.” + +“I can, then, rely on the notes he has left concerning you?” + +“Entirely.” + +“That is well; wait patiently, then.” + +Dantès fell on his knees, and prayed earnestly. The door closed; but +this time a fresh inmate was left with Dantès—Hope. + +0173m + + + +“Will you see the register at once,” asked the governor, “or proceed to +the other cell?” + +“Let us visit them all,” said the inspector. “If I once went up those +stairs. I should never have the courage to come down again.” + +“Ah, this one is not like the other, and his madness is less affecting +than this one’s display of reason.” + +“What is his folly?” + +“He fancies he possesses an immense treasure. The first year he offered +government a million of francs for his release; the second, two; the +third, three; and so on progressively. He is now in his fifth year of +captivity; he will ask to speak to you in private, and offer you five +millions.” + +“How curious!—what is his name?” + +“The Abbé Faria.” + +“No. 27,” said the inspector. + +“It is here; unlock the door, Antoine.” + +The turnkey obeyed, and the inspector gazed curiously into the chamber +of the _mad abbé_, as the prisoner was usually called. + +In the centre of the cell, in a circle traced with a fragment of +plaster detached from the wall, sat a man whose tattered garments +scarcely covered him. He was drawing in this circle geometrical lines, +and seemed as much absorbed in his problem as Archimedes was when the +soldier of Marcellus slew him. He did not move at the sound of the +door, and continued his calculations until the flash of the torches +lighted up with an unwonted glare the sombre walls of his cell; then, +raising his head, he perceived with astonishment the number of persons +present. He hastily seized the coverlet of his bed, and wrapped it +round him. + +“What is it you want?” said the inspector. + +“I, monsieur,” replied the abbé with an air of surprise,—“I want +nothing.” + +“You do not understand,” continued the inspector; “I am sent here by +government to visit the prison, and hear the requests of the +prisoners.” + +“Oh, that is different,” cried the abbé; “and we shall understand each +other, I hope.” + +“There, now,” whispered the governor, “it is just as I told you.” + +“Monsieur,” continued the prisoner, “I am the Abbé Faria, born at Rome. +I was for twenty years Cardinal Spada’s secretary; I was arrested, why, +I know not, toward the beginning of the year 1811; since then I have +demanded my liberty from the Italian and French government.” + +“Why from the French government?” + +“Because I was arrested at Piombino, and I presume that, like Milan and +Florence, Piombino has become the capital of some French department.” + +“Ah,” said the inspector, “you have not the latest news from Italy?” + +“My information dates from the day on which I was arrested,” returned +the Abbé Faria; “and as the emperor had created the kingdom of Rome for +his infant son, I presume that he has realized the dream of Machiavelli +and Cæsar Borgia, which was to make Italy a united kingdom.” + +“Monsieur,” returned the inspector, “Providence has changed this +gigantic plan you advocate so warmly.” + +“It is the only means of rendering Italy strong, happy, and +independent.” + +“Very possibly; only I am not come to discuss politics, but to inquire +if you have anything to ask or to complain of.” + +“The food is the same as in other prisons,—that is, very bad; the +lodging is very unhealthful, but, on the whole, passable for a dungeon; +but it is not that which I wish to speak of, but a secret I have to +reveal of the greatest importance.” + +“We are coming to the point,” whispered the governor. + +“It is for that reason I am delighted to see you,” continued the abbé, +“although you have disturbed me in a most important calculation, which, +if it succeeded, would possibly change Newton’s system. Could you allow +me a few words in private.” + +“What did I tell you?” said the governor. + +“You knew him,” returned the inspector with a smile. + +“What you ask is impossible, monsieur,” continued he, addressing Faria. + +0175m + + + +“But,” said the abbé, “I would speak to you of a large sum, amounting +to five millions.” + +“The very sum you named,” whispered the inspector in his turn. + +“However,” continued Faria, seeing that the inspector was about to +depart, “it is not absolutely necessary for us to be alone; the +governor can be present.” + +“Unfortunately,” said the governor, “I know beforehand what you are +about to say; it concerns your treasures, does it not?” Faria fixed his +eyes on him with an expression that would have convinced anyone else of +his sanity. + +“Of course,” said he; “of what else should I speak?” + +“Mr. Inspector,” continued the governor, “I can tell you the story as +well as he, for it has been dinned in my ears for the last four or five +years.” + +“That proves,” returned the abbé, “that you are like those of Holy +Writ, who having eyes see not, and having ears hear not.” + +“My dear sir, the government is rich and does not want your treasures,” +replied the inspector; “keep them until you are liberated.” The abbé’s +eyes glistened; he seized the inspector’s hand. + +“But what if I am not liberated,” cried he, “and am detained here until +my death? this treasure will be lost. Had not government better profit +by it? I will offer six millions, and I will content myself with the +rest, if they will only give me my liberty.” + +“On my word,” said the inspector in a low tone, “had I not been told +beforehand that this man was mad, I should believe what he says.” + +“I am not mad,” replied Faria, with that acuteness of hearing peculiar +to prisoners. “The treasure I speak of really exists, and I offer to +sign an agreement with you, in which I promise to lead you to the spot +where you shall dig; and if I deceive you, bring me here again,—I ask +no more.” + +The governor laughed. “Is the spot far from here?” + +“A hundred leagues.” + +“It is not ill-planned,” said the governor. “If all the prisoners took +it into their heads to travel a hundred leagues, and their guardians +consented to accompany them, they would have a capital chance of +escaping.” + +“The scheme is well known,” said the inspector; “and the abbé’s plan +has not even the merit of originality.” + +Then turning to Faria, “I inquired if you are well fed?” said he. + +“Swear to me,” replied Faria, “to free me if what I tell you prove +true, and I will stay here while you go to the spot.” + +“Are you well fed?” repeated the inspector. + +“Monsieur, you run no risk, for, as I told you, I will stay here; so +there is no chance of my escaping.” + +“You do not reply to my question,” replied the inspector impatiently. + +“Nor you to mine,” cried the abbé. “You will not accept my gold; I will +keep it for myself. You refuse me my liberty; God will give it me.” And +the abbé, casting away his coverlet, resumed his place, and continued +his calculations. + +0177m + + + +“What is he doing there?” said the inspector. + +“Counting his treasures,” replied the governor. + +Faria replied to this sarcasm with a glance of profound contempt. They +went out. The turnkey closed the door behind them. + +“He was wealthy once, perhaps?” said the inspector. + +“Or dreamed he was, and awoke mad.” + +“After all,” said the inspector, “if he had been rich, he would not +have been here.” + +So the matter ended for the Abbé Faria. He remained in his cell, and +this visit only increased the belief in his insanity. + +Caligula or Nero, those treasure-seekers, those desirers of the +impossible, would have accorded to the poor wretch, in exchange for his +wealth, the liberty he so earnestly prayed for. But the kings of modern +times, restrained by the limits of mere probability, have neither +courage nor desire. They fear the ear that hears their orders, and the +eye that scrutinizes their actions. Formerly they believed themselves +sprung from Jupiter, and shielded by their birth; but nowadays they are +not inviolable. + +It has always been against the policy of despotic governments to suffer +the victims of their persecutions to reappear. As the Inquisition +rarely allowed its victims to be seen with their limbs distorted and +their flesh lacerated by torture, so madness is always concealed in its +cell, from whence, should it depart, it is conveyed to some gloomy +hospital, where the doctor has no thought for man or mind in the +mutilated being the jailer delivers to him. The very madness of the +Abbé Faria, gone mad in prison, condemned him to perpetual captivity. + +The inspector kept his word with Dantès; he examined the register, and +found the following note concerning him: + +_Edmond Dantès:_ + +Violent Bonapartist; took an active part in the return from Elba. + +The greatest watchfulness and care to be exercised. + +This note was in a different hand from the rest, which showed that it +had been added since his confinement. The inspector could not contend +against this accusation; he simply wrote, _Nothing to be done._ + +This visit had infused new vigor into Dantès; he had, till then, +forgotten the date; but now, with a fragment of plaster, he wrote the +date, 30th July, 1816, and made a mark every day, in order not to lose +his reckoning again. Days and weeks passed away, then months—Dantès +still waited; he at first expected to be freed in a fortnight. This +fortnight expired, he decided that the inspector would do nothing until +his return to Paris, and that he would not reach there until his +circuit was finished, he therefore fixed three months; three months +passed away, then six more. Finally ten months and a half had gone by +and no favorable change had taken place, and Dantès began to fancy the +inspector’s visit but a dream, an illusion of the brain. + +At the expiration of a year the governor was transferred; he had +obtained charge of the fortress at Ham. He took with him several of his +subordinates, and amongst them Dantès’ jailer. A new governor arrived; +it would have been too tedious to acquire the names of the prisoners; +he learned their numbers instead. This horrible place contained fifty +cells; their inhabitants were designated by the numbers of their cell, +and the unhappy young man was no longer called Edmond Dantès—he was now +number 34. + + + + Chapter 15. Number 34 and Number 27 + +Dantès passed through all the stages of torture natural to prisoners in +suspense. He was sustained at first by that pride of conscious +innocence which is the sequence to hope; then he began to doubt his own +innocence, which justified in some measure the governor’s belief in his +mental alienation; and then, relaxing his sentiment of pride, he +addressed his supplications, not to God, but to man. God is always the +last resource. Unfortunates, who ought to begin with God, do not have +any hope in him till they have exhausted all other means of +deliverance. + +Dantès asked to be removed from his present dungeon into another, even +if it were darker and deeper, for a change, however disadvantageous, +was still a change, and would afford him some amusement. He entreated +to be allowed to walk about, to have fresh air, books, and writing +materials. His requests were not granted, but he went on asking all the +same. He accustomed himself to speaking to the new jailer, although the +latter was, if possible, more taciturn than the old one; but still, to +speak to a man, even though mute, was something. Dantès spoke for the +sake of hearing his own voice; he had tried to speak when alone, but +the sound of his voice terrified him. + +Often, before his captivity, Dantès’ mind had revolted at the idea of +assemblages of prisoners, made up of thieves, vagabonds, and murderers. +He now wished to be amongst them, in order to see some other face +besides that of his jailer; he sighed for the galleys, with the +infamous costume, the chain, and the brand on the shoulder. The +galley-slaves breathed the fresh air of heaven, and saw each other. +They were very happy. + +He besought the jailer one day to let him have a companion, were it +even the mad abbé. The jailer, though rough and hardened by the +constant sight of so much suffering, was yet a man. At the bottom of +his heart he had often had a feeling of pity for this unhappy young man +who suffered so; and he laid the request of number 34 before the +governor; but the latter sapiently imagined that Dantès wished to +conspire or attempt an escape, and refused his request. Dantès had +exhausted all human resources, and he then turned to God. + +All the pious ideas that had been so long forgotten, returned; he +recollected the prayers his mother had taught him, and discovered a new +meaning in every word; for in prosperity prayers seem but a mere medley +of words, until misfortune comes and the unhappy sufferer first +understands the meaning of the sublime language in which he invokes the +pity of heaven! He prayed, and prayed aloud, no longer terrified at the +sound of his own voice, for he fell into a sort of ecstasy. He laid +every action of his life before the Almighty, proposed tasks to +accomplish, and at the end of every prayer introduced the entreaty +oftener addressed to man than to God: “Forgive us our trespasses as we +forgive them that trespass against us.” Yet in spite of his earnest +prayers, Dantès remained a prisoner. + +Then gloom settled heavily upon him. Dantès was a man of great +simplicity of thought, and without education; he could not, therefore, +in the solitude of his dungeon, traverse in mental vision the history +of the ages, bring to life the nations that had perished, and rebuild +the ancient cities so vast and stupendous in the light of the +imagination, and that pass before the eye glowing with celestial colors +in Martin’s Babylonian pictures. He could not do this, he whose past +life was so short, whose present so melancholy, and his future so +doubtful. Nineteen years of light to reflect upon in eternal darkness! +No distraction could come to his aid; his energetic spirit, that would +have exalted in thus revisiting the past, was imprisoned like an eagle +in a cage. He clung to one idea—that of his happiness, destroyed, +without apparent cause, by an unheard-of fatality; he considered and +reconsidered this idea, devoured it (so to speak), as the implacable +Ugolino devours the skull of Archbishop Roger in the Inferno of Dante. + +Rage supplanted religious fervor. Dantès uttered blasphemies that made +his jailer recoil with horror, dashed himself furiously against the +walls of his prison, wreaked his anger upon everything, and chiefly +upon himself, so that the least thing,—a grain of sand, a straw, or a +breath of air that annoyed him, led to paroxysms of fury. Then the +letter that Villefort had showed to him recurred to his mind, and every +line gleamed forth in fiery letters on the wall like the _mene, mene, +tekel upharsin_ of Belshazzar. He told himself that it was the enmity +of man, and not the vengeance of Heaven, that had thus plunged him into +the deepest misery. He consigned his unknown persecutors to the most +horrible tortures he could imagine, and found them all insufficient, +because after torture came death, and after death, if not repose, at +least the boon of unconsciousness. + +By dint of constantly dwelling on the idea that tranquillity was death, +and if punishment were the end in view other tortures than death must +be invented, he began to reflect on suicide. Unhappy he, who, on the +brink of misfortune, broods over ideas like these! + +Before him is a dead sea that stretches in azure calm before the eye; +but he who unwarily ventures within its embrace finds himself +struggling with a monster that would drag him down to perdition. Once +thus ensnared, unless the protecting hand of God snatch him thence, all +is over, and his struggles but tend to hasten his destruction. This +state of mental anguish is, however, less terrible than the sufferings +that precede or the punishment that possibly will follow. There is a +sort of consolation at the contemplation of the yawning abyss, at the +bottom of which lie darkness and obscurity. + +Edmond found some solace in these ideas. All his sorrows, all his +sufferings, with their train of gloomy spectres, fled from his cell +when the angel of death seemed about to enter. Dantès reviewed his past +life with composure, and, looking forward with terror to his future +existence, chose that middle line that seemed to afford him a refuge. + +“Sometimes,” said he, “in my voyages, when I was a man and commanded +other men, I have seen the heavens overcast, the sea rage and foam, the +storm arise, and, like a monstrous bird, beating the two horizons with +its wings. Then I felt that my vessel was a vain refuge, that trembled +and shook before the tempest. Soon the fury of the waves and the sight +of the sharp rocks announced the approach of death, and death then +terrified me, and I used all my skill and intelligence as a man and a +sailor to struggle against the wrath of God. But I did so because I was +happy, because I had not courted death, because to be cast upon a bed +of rocks and seaweed seemed terrible, because I was unwilling that I, a +creature made for the service of God, should serve for food to the +gulls and ravens. But now it is different; I have lost all that bound +me to life, death smiles and invites me to repose; I die after my own +manner, I die exhausted and broken-spirited, as I fall asleep when I +have paced three thousand times round my cell,—that is thirty thousand +steps, or about ten leagues.” + +No sooner had this idea taken possession of him than he became more +composed, arranged his couch to the best of his power, ate little and +slept less, and found existence almost supportable, because he felt +that he could throw it off at pleasure, like a worn-out garment. Two +methods of self-destruction were at his disposal. He could hang himself +with his handkerchief to the window bars, or refuse food and die of +starvation. But the first was repugnant to him. Dantès had always +entertained the greatest horror of pirates, who are hung up to the +yard-arm; he would not die by what seemed an infamous death. He +resolved to adopt the second, and began that day to carry out his +resolve. + +0185m + + + +Nearly four years had passed away; at the end of the second he had +ceased to mark the lapse of time. Dantès said, “I wish to die,” and had +chosen the manner of his death, and fearful of changing his mind, he +had taken an oath to die. “When my morning and evening meals are +brought,” thought he, “I will cast them out of the window, and they +will think that I have eaten them.” + +He kept his word; twice a day he cast out, through the barred aperture, +the provisions his jailer brought him—at first gayly, then with +deliberation, and at last with regret. Nothing but the recollection of +his oath gave him strength to proceed. Hunger made viands once +repugnant, now acceptable; he held the plate in his hand for an hour at +a time, and gazed thoughtfully at the morsel of bad meat, of tainted +fish, of black and mouldy bread. It was the last yearning for life +contending with the resolution of despair; then his dungeon seemed less +sombre, his prospects less desperate. He was still young—he was only +four or five-and-twenty—he had nearly fifty years to live. What +unforseen events might not open his prison door, and restore him to +liberty? Then he raised to his lips the repast that, like a voluntary +Tantalus, he refused himself; but he thought of his oath, and he would +not break it. He persisted until, at last, he had not sufficient +strength to rise and cast his supper out of the loophole. The next +morning he could not see or hear; the jailer feared he was dangerously +ill. Edmond hoped he was dying. + +Thus the day passed away. Edmond felt a sort of stupor creeping over +him which brought with it a feeling almost of content; the gnawing pain +at his stomach had ceased; his thirst had abated; when he closed his +eyes he saw myriads of lights dancing before them like the +will-o’-the-wisps that play about the marshes. It was the twilight of +that mysterious country called Death! + +Suddenly, about nine o’clock in the evening, Edmond heard a hollow +sound in the wall against which he was lying. + +So many loathsome animals inhabited the prison, that their noise did +not, in general, awake him; but whether abstinence had quickened his +faculties, or whether the noise was really louder than usual, Edmond +raised his head and listened. It was a continual scratching, as if made +by a huge claw, a powerful tooth, or some iron instrument attacking the +stones. + +Although weakened, the young man’s brain instantly responded to the +idea that haunts all prisoners—liberty! It seemed to him that heaven +had at length taken pity on him, and had sent this noise to warn him on +the very brink of the abyss. Perhaps one of those beloved ones he had +so often thought of was thinking of him, and striving to diminish the +distance that separated them. + +No, no, doubtless he was deceived, and it was but one of those dreams +that forerun death! + +Edmond still heard the sound. It lasted nearly three hours; he then +heard a noise of something falling, and all was silent. + +Some hours afterwards it began again, nearer and more distinct. Edmond +was intensely interested. Suddenly the jailer entered. + +For a week since he had resolved to die, and during the four days that +he had been carrying out his purpose, Edmond had not spoken to the +attendant, had not answered him when he inquired what was the matter +with him, and turned his face to the wall when he looked too curiously +at him; but now the jailer might hear the noise and put an end to it, +and so destroy a ray of something like hope that soothed his last +moments. + +The jailer brought him his breakfast. Dantès raised himself up and +began to talk about everything; about the bad quality of the food, +about the coldness of his dungeon, grumbling and complaining, in order +to have an excuse for speaking louder, and wearying the patience of his +jailer, who out of kindness of heart had brought broth and white bread +for his prisoner. + +Fortunately, he fancied that Dantès was delirious; and placing the food +on the rickety table, he withdrew. Edmond listened, and the sound +became more and more distinct. + +“There can be no doubt about it,” thought he; “it is some prisoner who +is striving to obtain his freedom. Oh, if I were only there to help +him!” + +Suddenly another idea took possession of his mind, so used to +misfortune, that it was scarcely capable of hope—the idea that the +noise was made by workmen the governor had ordered to repair the +neighboring dungeon. + +It was easy to ascertain this; but how could he risk the question? It +was easy to call his jailer’s attention to the noise, and watch his +countenance as he listened; but might he not by this means destroy +hopes far more important than the short-lived satisfaction of his own +curiosity? Unfortunately, Edmond’s brain was still so feeble that he +could not bend his thoughts to anything in particular. He saw but one +means of restoring lucidity and clearness to his judgment. He turned +his eyes towards the soup which the jailer had brought, rose, staggered +towards it, raised the vessel to his lips, and drank off the contents +with a feeling of indescribable pleasure. + +He had the resolution to stop with this. He had often heard that +shipwrecked persons had died through having eagerly devoured too much +food. Edmond replaced on the table the bread he was about to devour, +and returned to his couch—he did not wish to die. He soon felt that his +ideas became again collected—he could think, and strengthen his +thoughts by reasoning. Then he said to himself: + +“I must put this to the test, but without compromising anybody. If it +is a workman, I need but knock against the wall, and he will cease to +work, in order to find out who is knocking, and why he does so; but as +his occupation is sanctioned by the governor, he will soon resume it. +If, on the contrary, it is a prisoner, the noise I make will alarm him, +he will cease, and not begin again until he thinks everyone is asleep.” + +Edmond rose again, but this time his legs did not tremble, and his +sight was clear; he went to a corner of his dungeon, detached a stone, +and with it knocked against the wall where the sound came. He struck +thrice. + +At the first blow the sound ceased, as if by magic. + +Edmond listened intently; an hour passed, two hours passed, and no +sound was heard from the wall—all was silent there. + +Full of hope, Edmond swallowed a few mouthfuls of bread and water, and, +thanks to the vigor of his constitution, found himself well-nigh +recovered. + +The day passed away in utter silence—night came without recurrence of +the noise. + +“It is a prisoner,” said Edmond joyfully. His brain was on fire, and +life and energy returned. + +The night passed in perfect silence. Edmond did not close his eyes. + +In the morning the jailer brought him fresh provisions—he had already +devoured those of the previous day; he ate these listening anxiously +for the sound, walking round and round his cell, shaking the iron bars +of the loophole, restoring vigor and agility to his limbs by exercise, +and so preparing himself for his future destiny. At intervals he +listened to learn if the noise had not begun again, and grew impatient +at the prudence of the prisoner, who did not guess he had been +disturbed by a captive as anxious for liberty as himself. + +Three days passed—seventy-two long tedious hours which he counted off +by minutes! + +At length one evening, as the jailer was visiting him for the last time +that night, Dantès, with his ear for the hundredth time at the wall, +fancied he heard an almost imperceptible movement among the stones. He +moved away, walked up and down his cell to collect his thoughts, and +then went back and listened. + +The matter was no longer doubtful. Something was at work on the other +side of the wall; the prisoner had discovered the danger, and had +substituted a lever for a chisel. + +Encouraged by this discovery, Edmond determined to assist the +indefatigable laborer. He began by moving his bed, and looked around +for anything with which he could pierce the wall, penetrate the moist +cement, and displace a stone. + +He saw nothing, he had no knife or sharp instrument, the window grating +was of iron, but he had too often assured himself of its solidity. All +his furniture consisted of a bed, a chair, a table, a pail, and a jug. +The bed had iron clamps, but they were screwed to the wood, and it +would have required a screw-driver to take them off. The table and +chair had nothing, the pail had once possessed a handle, but that had +been removed. + +0189m + + + +Dantès had but one resource, which was to break the jug, and with one +of the sharp fragments attack the wall. He let the jug fall on the +floor, and it broke in pieces. + +Dantès concealed two or three of the sharpest fragments in his bed, +leaving the rest on the floor. The breaking of his jug was too natural +an accident to excite suspicion. Edmond had all the night to work in, +but in the darkness he could not do much, and he soon felt that he was +working against something very hard; he pushed back his bed, and waited +for day. + +All night he heard the subterranean workman, who continued to mine his +way. Day came, the jailer entered. Dantès told him that the jug had +fallen from his hands while he was drinking, and the jailer went +grumblingly to fetch another, without giving himself the trouble to +remove the fragments of the broken one. He returned speedily, advised +the prisoner to be more careful, and departed. + +Dantès heard joyfully the key grate in the lock; he listened until the +sound of steps died away, and then, hastily displacing his bed, saw by +the faint light that penetrated into his cell, that he had labored +uselessly the previous evening in attacking the stone instead of +removing the plaster that surrounded it. + +The damp had rendered it friable, and Dantès was able to break it +off—in small morsels, it is true, but at the end of half an hour he had +scraped off a handful; a mathematician might have calculated that in +two years, supposing that the rock was not encountered, a passage +twenty feet long and two feet broad, might be formed. + +The prisoner reproached himself with not having thus employed the hours +he had passed in vain hopes, prayer, and despondency. During the six +years that he had been imprisoned, what might he not have accomplished? + +This idea imparted new energy, and in three days he had succeeded, with +the utmost precaution, in removing the cement, and exposing the +stone-work. The wall was built of rough stones, among which, to give +strength to the structure, blocks of hewn stone were at intervals +imbedded. It was one of these he had uncovered, and which he must +remove from its socket. + +Dantès strove to do this with his nails, but they were too weak. The +fragments of the jug broke, and after an hour of useless toil, Dantès +paused with anguish on his brow. + +Was he to be thus stopped at the beginning, and was he to wait inactive +until his fellow workman had completed his task? Suddenly an idea +occurred to him—he smiled, and the perspiration dried on his forehead. + +The jailer always brought Dantès’ soup in an iron saucepan; this +saucepan contained soup for both prisoners, for Dantès had noticed that +it was either quite full, or half empty, according as the turnkey gave +it to him or to his companion first. + +The handle of this saucepan was of iron; Dantès would have given ten +years of his life in exchange for it. + +0191m + + + +The jailer was accustomed to pour the contents of the saucepan into +Dantès’ plate, and Dantès, after eating his soup with a wooden spoon, +washed the plate, which thus served for every day. Now when evening +came Dantès put his plate on the ground near the door; the jailer, as +he entered, stepped on it and broke it. + +This time he could not blame Dantès. He was wrong to leave it there, +but the jailer was wrong not to have looked before him. The jailer, +therefore, only grumbled. Then he looked about for something to pour +the soup into; Dantès’ entire dinner service consisted of one +plate—there was no alternative. + +“Leave the saucepan,” said Dantès; “you can take it away when you bring +me my breakfast.” + +This advice was to the jailer’s taste, as it spared him the necessity +of making another trip. He left the saucepan. + +Dantès was beside himself with joy. He rapidly devoured his food, and +after waiting an hour, lest the jailer should change his mind and +return, he removed his bed, took the handle of the saucepan, inserted +the point between the hewn stone and rough stones of the wall, and +employed it as a lever. A slight oscillation showed Dantès that all +went well. At the end of an hour the stone was extricated from the +wall, leaving a cavity a foot and a half in diameter. + +Dantès carefully collected the plaster, carried it into the corner of +his cell, and covered it with earth. Then, wishing to make the best use +of his time while he had the means of labor, he continued to work +without ceasing. At the dawn of day he replaced the stone, pushed his +bed against the wall, and lay down. The breakfast consisted of a piece +of bread; the jailer entered and placed the bread on the table. + +“Well, don’t you intend to bring me another plate?” said Dantès. + +“No,” replied the turnkey; “you destroy everything. First you break +your jug, then you make me break your plate; if all the prisoners +followed your example, the government would be ruined. I shall leave +you the saucepan, and pour your soup into that. So for the future I +hope you will not be so destructive.” + +Dantès raised his eyes to heaven and clasped his hands beneath the +coverlet. He felt more gratitude for the possession of this piece of +iron than he had ever felt for anything. He had noticed, however, that +the prisoner on the other side had ceased to labor; no matter, this was +a greater reason for proceeding—if his neighbor would not come to him, +he would go to his neighbor. All day he toiled on untiringly, and by +the evening he had succeeded in extracting ten handfuls of plaster and +fragments of stone. When the hour for his jailer’s visit arrived, +Dantès straightened the handle of the saucepan as well as he could, and +placed it in its accustomed place. The turnkey poured his ration of +soup into it, together with the fish—for thrice a week the prisoners +were deprived of meat. This would have been a method of reckoning time, +had not Dantès long ceased to do so. Having poured out the soup, the +turnkey retired. + +Dantès wished to ascertain whether his neighbor had really ceased to +work. He listened—all was silent, as it had been for the last three +days. Dantès sighed; it was evident that his neighbor distrusted him. +However, he toiled on all the night without being discouraged; but +after two or three hours he encountered an obstacle. The iron made no +impression, but met with a smooth surface; Dantès touched it, and found +that it was a beam. This beam crossed, or rather blocked up, the hole +Dantès had made; it was necessary, therefore, to dig above or under it. +The unhappy young man had not thought of this. + +“Oh, my God, my God!” murmured he, “I have so earnestly prayed to you, +that I hoped my prayers had been heard. After having deprived me of my +liberty, after having deprived me of death, after having recalled me to +existence, my God, have pity on me, and do not let me die in despair!” + +0193m + + + +“Who talks of God and despair at the same time?” said a voice that +seemed to come from beneath the earth, and, deadened by the distance, +sounded hollow and sepulchral in the young man’s ears. Edmond’s hair +stood on end, and he rose to his knees. + +“Ah,” said he, “I hear a human voice.” Edmond had not heard anyone +speak save his jailer for four or five years; and a jailer is no man to +a prisoner—he is a living door, a barrier of flesh and blood adding +strength to restraints of oak and iron. + +“In the name of Heaven,” cried Dantès, “speak again, though the sound +of your voice terrifies me. Who are you?” + +“Who are you?” said the voice. + +“An unhappy prisoner,” replied Dantès, who made no hesitation in +answering. + +“Of what country?” + +“A Frenchman.” + +“Your name?” + +“Edmond Dantès.” + +“Your profession?” + +“A sailor.” + +“How long have you been here?” + +“Since the 28th of February, 1815.” + +“Your crime?” + +“I am innocent.” + +“But of what are you accused?” + +“Of having conspired to aid the emperor’s return.” + +“What! For the emperor’s return?—the emperor is no longer on the +throne, then?” + +“He abdicated at Fontainebleau in 1814, and was sent to the Island of +Elba. But how long have you been here that you are ignorant of all +this?” + +“Since 1811.” + +Dantès shuddered; this man had been four years longer than himself in +prison. + +“Do not dig any more,” said the voice; “only tell me how high up is +your excavation?” + +“On a level with the floor.” + +“How is it concealed?” + +“Behind my bed.” + +“Has your bed been moved since you have been a prisoner?” + +“No.” + +“What does your chamber open on?” + +“A corridor.” + +“And the corridor?” + +“On a court.” + +“Alas!” murmured the voice. + +“Oh, what is the matter?” cried Dantès. + +“I have made a mistake owing to an error in my plans. I took the wrong +angle, and have come out fifteen feet from where I intended. I took the +wall you are mining for the outer wall of the fortress.” + +“But then you would be close to the sea?” + +“That is what I hoped.” + +“And supposing you had succeeded?” + +“I should have thrown myself into the sea, gained one of the islands +near here—the Isle de Daume or the Isle de Tiboulen—and then I should +have been safe.” + +“Could you have swum so far?” + +“Heaven would have given me strength; but now all is lost.” + +“All?” + +“Yes; stop up your excavation carefully, do not work any more, and wait +until you hear from me.” + +“Tell me, at least, who you are?” + +“I am—I am No. 27.” + +“You mistrust me, then,” said Dantès. Edmond fancied he heard a bitter +laugh resounding from the depths. + +“Oh, I am a Christian,” cried Dantès, guessing instinctively that this +man meant to abandon him. “I swear to you by him who died for us that +naught shall induce me to breathe one syllable to my jailers; but I +conjure you do not abandon me. If you do, I swear to you, for I have +got to the end of my strength, that I will dash my brains out against +the wall, and you will have my death to reproach yourself with.” + +“How old are you? Your voice is that of a young man.” + +“I do not know my age, for I have not counted the years I have been +here. All I do know is, that I was just nineteen when I was arrested, +the 28th of February, 1815.” + +“Not quite twenty-six!” murmured the voice; “at that age he cannot be a +traitor.” + +“Oh, no, no,” cried Dantès. “I swear to you again, rather than betray +you, I would allow myself to be hacked in pieces!” + +“You have done well to speak to me, and ask for my assistance, for I +was about to form another plan, and leave you; but your age reassures +me. I will not forget you. Wait.” + +“How long?” + +“I must calculate our chances; I will give you the signal.” + +“But you will not leave me; you will come to me, or you will let me +come to you. We will escape, and if we cannot escape we will talk; you +of those whom you love, and I of those whom I love. You must love +somebody?” + +“No, I am alone in the world.” + +“Then you will love me. If you are young, I will be your comrade; if +you are old, I will be your son. I have a father who is seventy if he +yet lives; I only love him and a young girl called Mercédès. My father +has not yet forgotten me, I am sure, but God alone knows if she loves +me still; I shall love you as I loved my father.” + +“It is well,” returned the voice; “tomorrow.” + +These few words were uttered with an accent that left no doubt of his +sincerity; Dantès rose, dispersed the fragments with the same +precaution as before, and pushed his bed back against the wall. He then +gave himself up to his happiness. He would no longer be alone. He was, +perhaps, about to regain his liberty; at the worst, he would have a +companion, and captivity that is shared is but half captivity. Plaints +made in common are almost prayers, and prayers where two or three are +gathered together invoke the mercy of heaven. + +All day Dantès walked up and down his cell. He sat down occasionally on +his bed, pressing his hand on his heart. At the slightest noise he +bounded towards the door. Once or twice the thought crossed his mind +that he might be separated from this unknown, whom he loved already; +and then his mind was made up—when the jailer moved his bed and stooped +to examine the opening, he would kill him with his water jug. He would +be condemned to die, but he was about to die of grief and despair when +this miraculous noise recalled him to life. + +The jailer came in the evening. Dantès was on his bed. It seemed to him +that thus he better guarded the unfinished opening. Doubtless there was +a strange expression in his eyes, for the jailer said, “Come, are you +going mad again?” + +Dantès did not answer; he feared that the emotion of his voice would +betray him. The jailer went away shaking his head. Night came; Dantès +hoped that his neighbor would profit by the silence to address him, but +he was mistaken. The next morning, however, just as he removed his bed +from the wall, he heard three knocks; he threw himself on his knees. + +“Is it you?” said he; “I am here.” + +“Is your jailer gone?” + +“Yes,” said Dantès; “he will not return until the evening; so that we +have twelve hours before us.” + +“I can work, then?” said the voice. + +“Oh, yes, yes; this instant, I entreat you.” + +In a moment that part of the floor on which Dantès was resting his two +hands, as he knelt with his head in the opening, suddenly gave way; he +drew back smartly, while a mass of stones and earth disappeared in a +hole that opened beneath the aperture he himself had formed. Then from +the bottom of this passage, the depth of which it was impossible to +measure, he saw appear, first the head, then the shoulders, and lastly +the body of a man, who sprang lightly into his cell. + +0197m + + + + + Chapter 16. A Learned Italian + +Seizing in his arms the friend so long and ardently desired, Dantès +almost carried him towards the window, in order to obtain a better view +of his features by the aid of the imperfect light that struggled +through the grating. + +He was a man of small stature, with hair blanched rather by suffering +and sorrow than by age. He had a deep-set, penetrating eye, almost +buried beneath the thick gray eyebrow, and a long (and still black) +beard reaching down to his breast. His thin face, deeply furrowed by +care, and the bold outline of his strongly marked features, betokened a +man more accustomed to exercise his mental faculties than his physical +strength. Large drops of perspiration were now standing on his brow, +while the garments that hung about him were so ragged that one could +only guess at the pattern upon which they had originally been +fashioned. + +The stranger might have numbered sixty or sixty-five years; but a +certain briskness and appearance of vigor in his movements made it +probable that he was aged more from captivity than the course of time. +He received the enthusiastic greeting of his young acquaintance with +evident pleasure, as though his chilled affections were rekindled and +invigorated by his contact with one so warm and ardent. He thanked him +with grateful cordiality for his kindly welcome, although he must at +that moment have been suffering bitterly to find another dungeon where +he had fondly reckoned on discovering a means of regaining his liberty. + +“Let us first see,” said he, “whether it is possible to remove the +traces of my entrance here—our future tranquillity depends upon our +jailers being entirely ignorant of it.” + +Advancing to the opening, he stooped and raised the stone easily in +spite of its weight; then, fitting it into its place, he said: + +“You removed this stone very carelessly; but I suppose you had no tools +to aid you.” + +“Why,” exclaimed Dantès, with astonishment, “do you possess any?” + +“I made myself some; and with the exception of a file, I have all that +are necessary,—a chisel, pincers, and lever.” + +0201m + + + +“Oh, how I should like to see these products of your industry and +patience.” + +“Well, in the first place, here is my chisel.” + +So saying, he displayed a sharp strong blade, with a handle made of +beechwood. + +“And with what did you contrive to make that?” inquired Dantès. + +“With one of the clamps of my bedstead; and this very tool has sufficed +me to hollow out the road by which I came hither, a distance of about +fifty feet.” + +“Fifty feet!” responded Dantès, almost terrified. + +“Do not speak so loud, young man—don’t speak so loud. It frequently +occurs in a state prison like this, that persons are stationed outside +the doors of the cells purposely to overhear the conversation of the +prisoners.” + +“But they believe I am shut up alone here.” + +“That makes no difference.” + +“And you say that you dug your way a distance of fifty feet to get +here?” + +“I do; that is about the distance that separates your chamber from +mine; only, unfortunately, I did not curve aright; for want of the +necessary geometrical instruments to calculate my scale of proportion, +instead of taking an ellipsis of forty feet, I made it fifty. I +expected, as I told you, to reach the outer wall, pierce through it, +and throw myself into the sea; I have, however, kept along the corridor +on which your chamber opens, instead of going beneath it. My labor is +all in vain, for I find that the corridor looks into a courtyard filled +with soldiers.” + +“That’s true,” said Dantès; “but the corridor you speak of only bounds +_one_ side of my cell; there are three others—do you know anything of +their situation?” + +“This one is built against the solid rock, and it would take ten +experienced miners, duly furnished with the requisite tools, as many +years to perforate it. This adjoins the lower part of the governor’s +apartments, and were we to work our way through, we should only get +into some lock-up cellars, where we must necessarily be recaptured. The +fourth and last side of your cell faces on—faces on—stop a minute, now +where does it face?” + +The wall of which he spoke was the one in which was fixed the loophole +by which light was admitted to the chamber. This loophole, which +gradually diminished in size as it approached the outside, to an +opening through which a child could not have passed, was, for better +security, furnished with three iron bars, so as to quiet all +apprehensions even in the mind of the most suspicious jailer as to the +possibility of a prisoner’s escape. As the stranger asked the question, +he dragged the table beneath the window. + +“Climb up,” said he to Dantès. + +The young man obeyed, mounted on the table, and, divining the wishes of +his companion, placed his back securely against the wall and held out +both hands. The stranger, whom as yet Dantès knew only by the number of +his cell, sprang up with an agility by no means to be expected in a +person of his years, and, light and steady on his feet as a cat or a +lizard, climbed from the table to the outstretched hands of Dantès, and +from them to his shoulders; then, bending double, for the ceiling of +the dungeon prevented him from holding himself erect, he managed to +slip his head between the upper bars of the window, so as to be able to +command a perfect view from top to bottom. + +An instant afterwards he hastily drew back his head, saying, “I thought +so!” and sliding from the shoulders of Dantès as dextrously as he had +ascended, he nimbly leaped from the table to the ground. + +“What was it that you thought?” asked the young man anxiously, in his +turn descending from the table. + +The elder prisoner pondered the matter. “Yes,” said he at length, “it +is so. This side of your chamber looks out upon a kind of open gallery, +where patrols are continually passing, and sentries keep watch day and +night.” + +“Are you quite sure of that?” + +“Certain. I saw the soldier’s shape and the top of his musket; that +made me draw in my head so quickly, for I was fearful he might also see +me.” + +“Well?” inquired Dantès. + +“You perceive then the utter impossibility of escaping through your +dungeon?” + +“Then——” pursued the young man eagerly. + +“Then,” answered the elder prisoner, “the will of God be done!” And as +the old man slowly pronounced those words, an air of profound +resignation spread itself over his careworn countenance. Dantès gazed +on the man who could thus philosophically resign hopes so long and +ardently nourished with an astonishment mingled with admiration. + +“Tell me, I entreat of you, who and what you are?” said he at length. +“Never have I met with so remarkable a person as yourself.” + +“Willingly,” answered the stranger; “if, indeed, you feel any curiosity +respecting one, now, alas, powerless to aid you in any way.” + +“Say not so; you can console and support me by the strength of your own +powerful mind. Pray let me know who you really are?” + +The stranger smiled a melancholy smile. “Then listen,” said he. “I am +the Abbé Faria, and have been imprisoned as you know in this Château +d’If since the year 1811; previously to which I had been confined for +three years in the fortress of Fenestrelle. In the year 1811 I was +transferred to Piedmont in France. It was at this period I learned that +the destiny which seemed subservient to every wish formed by Napoleon, +had bestowed on him a son, named king of Rome even in his cradle. I was +very far then from expecting the change you have just informed me of; +namely, that four years afterwards, this colossus of power would be +overthrown. Then who reigns in France at this moment—Napoleon II.?” + +“No, Louis XVIII.” + +“The brother of Louis XVI.! How inscrutable are the ways of +Providence—for what great and mysterious purpose has it pleased Heaven +to abase the man once so elevated, and raise up him who was so abased?” + +Dantès’ whole attention was riveted on a man who could thus forget his +own misfortunes while occupying himself with the destinies of others. + +“Yes, yes,” continued he, “’Twill be the same as it was in England. +After Charles I., Cromwell; after Cromwell, Charles II., and then James +II., and then some son-in-law or relation, some Prince of Orange, a +stadtholder who becomes a king. Then new concessions to the people, +then a constitution, then liberty. Ah, my friend!” said the abbé, +turning towards Dantès, and surveying him with the kindling gaze of a +prophet, “you are young, you will see all this come to pass.” + +“Probably, if ever I get out of prison!” + +“True,” replied Faria, “we are prisoners; but I forget this sometimes, +and there are even moments when my mental vision transports me beyond +these walls, and I fancy myself at liberty.” + +“But wherefore are you here?” + +“Because in 1807 I dreamed of the very plan Napoleon tried to realize +in 1811; because, like Machiavelli, I desired to alter the political +face of Italy, and instead of allowing it to be split up into a +quantity of petty principalities, each held by some weak or tyrannical +ruler, I sought to form one large, compact, and powerful empire; and, +lastly, because I fancied I had found my Cæsar Borgia in a crowned +simpleton, who feigned to enter into my views only to betray me. It was +the plan of Alexander VI. and Clement VII., but it will never succeed +now, for they attempted it fruitlessly, and Napoleon was unable to +complete his work. Italy seems fated to misfortune.” And the old man +bowed his head. + +Dantès could not understand a man risking his life for such matters. +Napoleon certainly he knew something of, inasmuch as he had seen and +spoken with him; but of Clement VII. and Alexander VI. he knew nothing. + +“Are you not,” he asked, “the priest who here in the Château d’If is +generally thought to be—ill?” + +“Mad, you mean, don’t you?” + +“I did not like to say so,” answered Dantès, smiling. + +“Well, then,” resumed Faria with a bitter smile, “let me answer your +question in full, by acknowledging that I am the poor mad prisoner of +the Château d’If, for many years permitted to amuse the different +visitors with what is said to be my insanity; and, in all probability, +I should be promoted to the honor of making sport for the children, if +such innocent beings could be found in an abode devoted like this to +suffering and despair.” + +Dantès remained for a short time mute and motionless; at length he +said: + +“Then you abandon all hope of escape?” + +“I perceive its utter impossibility; and I consider it impious to +attempt that which the Almighty evidently does not approve.” + +“Nay, be not discouraged. Would it not be expecting too much to hope to +succeed at your first attempt? Why not try to find an opening in +another direction from that which has so unfortunately failed?” + +“Alas, it shows how little notion you can have of all it has cost me to +effect a purpose so unexpectedly frustrated, that you talk of beginning +over again. In the first place, I was four years making the tools I +possess, and have been two years scraping and digging out earth, hard +as granite itself; then what toil and fatigue has it not been to remove +huge stones I should once have deemed impossible to loosen. Whole days +have I passed in these Titanic efforts, considering my labor well +repaid if, by night-time I had contrived to carry away a square inch of +this hard-bound cement, changed by ages into a substance unyielding as +the stones themselves; then to conceal the mass of earth and rubbish I +dug up, I was compelled to break through a staircase, and throw the +fruits of my labor into the hollow part of it; but the well is now so +completely choked up, that I scarcely think it would be possible to add +another handful of dust without leading to discovery. Consider also +that I fully believed I had accomplished the end and aim of my +undertaking, for which I had so exactly husbanded my strength as to +make it just hold out to the termination of my enterprise; and now, at +the moment when I reckoned upon success, my hopes are forever dashed +from me. No, I repeat again, that nothing shall induce me to renew +attempts evidently at variance with the Almighty’s pleasure.” + +Dantès held down his head, that the other might not see how joy at the +thought of having a companion outweighed the sympathy he felt for the +failure of the abbé’s plans. + +The abbé sank upon Edmond’s bed, while Edmond himself remained +standing. Escape had never once occurred to him. There are, indeed, +some things which appear so impossible that the mind does not dwell on +them for an instant. To undermine the ground for fifty feet—to devote +three years to a labor which, if successful, would conduct you to a +precipice overhanging the sea—to plunge into the waves from the height +of fifty, sixty, perhaps a hundred feet, at the risk of being dashed to +pieces against the rocks, should you have been fortunate enough to have +escaped the fire of the sentinels; and even, supposing all these perils +past, then to have to swim for your life a distance of at least three +miles ere you could reach the shore—were difficulties so startling and +formidable that Dantès had never even dreamed of such a scheme, +resigning himself rather to death. + +But the sight of an old man clinging to life with so desperate a +courage, gave a fresh turn to his ideas, and inspired him with new +courage. Another, older and less strong than he, had attempted what he +had not had sufficient resolution to undertake, and had failed only +because of an error in calculation. This same person, with almost +incredible patience and perseverance, had contrived to provide himself +with tools requisite for so unparalleled an attempt. Another had done +all this; why, then, was it impossible to Dantès? Faria had dug his way +through fifty feet, Dantès would dig a hundred; Faria, at the age of +fifty, had devoted three years to the task; he, who was but half as +old, would sacrifice six; Faria, a priest and savant, had not shrunk +from the idea of risking his life by trying to swim a distance of three +miles to one of the islands—Daume, Rattonneau, or Lemaire; should a +hardy sailor, an experienced diver, like himself, shrink from a similar +task; should he, who had so often for mere amusement’s sake plunged to +the bottom of the sea to fetch up the bright coral branch, hesitate to +entertain the same project? He could do it in an hour, and how many +times had he, for pure pastime, continued in the water for more than +twice as long! At once Dantès resolved to follow the brave example of +his energetic companion, and to remember that what has once been done +may be done again. + +After continuing some time in profound meditation, the young man +suddenly exclaimed, “I have found what you were in search of!” + +Faria started: “Have you, indeed?” cried he, raising his head with +quick anxiety; “pray, let me know what it is you have discovered?” + +“The corridor through which you have bored your way from the cell you +occupy here, extends in the same direction as the outer gallery, does +it not?” + +0207m + + + +“It does.” + +“And is not above fifteen feet from it?” + +“About that.” + +“Well, then, I will tell you what we must do. We must pierce through +the corridor by forming a side opening about the middle, as it were the +top part of a cross. This time you will lay your plans more accurately; +we shall get out into the gallery you have described; kill the sentinel +who guards it, and make our escape. All we require to insure success is +courage, and that you possess, and strength, which I am not deficient +in; as for patience, you have abundantly proved yours—you shall now see +me prove mine.” + +“One instant, my dear friend,” replied the abbé; “it is clear you do +not understand the nature of the courage with which I am endowed, and +what use I intend making of my strength. As for patience, I consider +that I have abundantly exercised that in beginning every morning the +task of the night before, and every night renewing the task of the day. +But then, young man (and I pray of you to give me your full attention), +then I thought I could not be doing anything displeasing to the +Almighty in trying to set an innocent being at liberty—one who had +committed no offence, and merited not condemnation.” + +“And have your notions changed?” asked Dantès with much surprise; “do +you think yourself more guilty in making the attempt since you have +encountered me?” + +“No; neither do I wish to incur guilt. Hitherto I have fancied myself +merely waging war against circumstances, not men. I have thought it no +sin to bore through a wall, or destroy a staircase; but I cannot so +easily persuade myself to pierce a heart or take away a life.” + +A slight movement of surprise escaped Dantès. + +“Is it possible,” said he, “that where your liberty is at stake you can +allow any such scruple to deter you from obtaining it?” + +“Tell me,” replied Faria, “what has hindered you from knocking down +your jailer with a piece of wood torn from your bedstead, dressing +yourself in his clothes, and endeavoring to escape?” + +“Simply the fact that the idea never occurred to me,” answered Dantès. + +“Because,” said the old man, “the natural repugnance to the commission +of such a crime prevented you from thinking of it; and so it ever is +because in simple and allowable things our natural instincts keep us +from deviating from the strict line of duty. The tiger, whose nature +teaches him to delight in shedding blood, needs but the sense of smell +to show him when his prey is within his reach, and by following this +instinct he is enabled to measure the leap necessary to permit him to +spring on his victim; but man, on the contrary, loathes the idea of +blood—it is not alone that the laws of social life inspire him with a +shrinking dread of taking life; his natural construction and +physiological formation——” + +Dantès was confused and silent at this explanation of the thoughts +which had unconsciously been working in his mind, or rather soul; for +there are two distinct sorts of ideas, those that proceed from the head +and those that emanate from the heart. + +0209m + + + +“Since my imprisonment,” said Faria, “I have thought over all the most +celebrated cases of escape on record. They have rarely been successful. +Those that have been crowned with full success have been long meditated +upon, and carefully arranged; such, for instance, as the escape of the +Duc de Beaufort from the Château de Vincennes, that of the Abbé +Dubuquoi from For l’Evêque; of Latude from the Bastille. Then there are +those for which chance sometimes affords opportunity, and those are the +best of all. Let us, therefore, wait patiently for some favorable +moment, and when it presents itself, profit by it.” + +“Ah,” said Dantès, “you might well endure the tedious delay; you were +constantly employed in the task you set yourself, and when weary with +toil, you had your hopes to refresh and encourage you.” + +“I assure you,” replied the old man, “I did not turn to that source for +recreation or support.” + +“What did you do then?” + +“I wrote or studied.” + +“Were you then permitted the use of pens, ink, and paper?” + +“Oh, no,” answered the abbé; “I had none but what I made for myself.” + +“You made paper, pens and ink?” + +“Yes.” + +Dantès gazed with admiration, but he had some difficulty in believing. +Faria saw this. + +“When you pay me a visit in my cell, my young friend,” said he, “I will +show you an entire work, the fruits of the thoughts and reflections of +my whole life; many of them meditated over in the shades of the +Colosseum at Rome, at the foot of St. Mark’s column at Venice, and on +the borders of the Arno at Florence, little imagining at the time that +they would be arranged in order within the walls of the Château d’If. +The work I speak of is called _A Treatise on the Possibility of a +General Monarchy in Italy_, and will make one large quarto volume.” + +“And on what have you written all this?” + +“On two of my shirts. I invented a preparation that makes linen as +smooth and as easy to write on as parchment.” + +“You are, then, a chemist?” + +“Somewhat; I know Lavoisier, and was the intimate friend of Cabanis.” + +“But for such a work you must have needed books—had you any?” + +“I had nearly five thousand volumes in my library at Rome; but after +reading them over many times, I found out that with one hundred and +fifty well-chosen books a man possesses, if not a complete summary of +all human knowledge, at least all that a man need really know. I +devoted three years of my life to reading and studying these one +hundred and fifty volumes, till I knew them nearly by heart; so that +since I have been in prison, a very slight effort of memory has enabled +me to recall their contents as readily as though the pages were open +before me. I could recite you the whole of Thucydides, Xenophon, +Plutarch, Titus Livius, Tacitus, Strada, Jornandes, Dante, Montaigne, +Shakespeare, Spinoza, Machiavelli, and Bossuet. I name only the most +important.” + +“You are, doubtless, acquainted with a variety of languages, so as to +have been able to read all these?” + +“Yes, I speak five of the modern tongues—that is to say, German, +French, Italian, English, and Spanish; by the aid of ancient Greek I +learned modern Greek—I don’t speak it so well as I could wish, but I am +still trying to improve myself.” + +“Improve yourself!” repeated Dantès; “why, how can you manage to do +so?” + +“Why, I made a vocabulary of the words I knew; turned, returned, and +arranged them, so as to enable me to express my thoughts through their +medium. I know nearly one thousand words, which is all that is +absolutely necessary, although I believe there are nearly one hundred +thousand in the dictionaries. I cannot hope to be very fluent, but I +certainly should have no difficulty in explaining my wants and wishes; +and that would be quite as much as I should ever require.” + +Stronger grew the wonder of Dantès, who almost fancied he had to do +with one gifted with supernatural powers; still hoping to find some +imperfection which might bring him down to a level with human beings, +he added, “Then if you were not furnished with pens, how did you manage +to write the work you speak of?” + +“I made myself some excellent ones, which would be universally +preferred to all others if once known. You are aware what huge whitings +are served to us on _maigre_ days. Well, I selected the cartilages of +the heads of these fishes, and you can scarcely imagine the delight +with which I welcomed the arrival of each Wednesday, Friday, and +Saturday, as affording me the means of increasing my stock of pens; for +I will freely confess that my historical labors have been my greatest +solace and relief. While retracing the past, I forget the present; and +traversing at will the path of history I cease to remember that I am +myself a prisoner.” + +“But the ink,” said Dantès; “of what did you make your ink?” + +“There was formerly a fireplace in my dungeon,” replied Faria, “but it +was closed up long ere I became an occupant of this prison. Still, it +must have been many years in use, for it was thickly covered with a +coating of soot; this soot I dissolved in a portion of the wine brought +to me every Sunday, and I assure you a better ink cannot be desired. +For very important notes, for which closer attention is required, I +pricked one of my fingers, and wrote with my own blood.” + +“And when,” asked Dantès, “may I see all this?” + +“Whenever you please,” replied the abbé. + +“Oh, then let it be directly!” exclaimed the young man. + +“Follow me, then,” said the abbé, as he re-entered the subterranean +passage, in which he soon disappeared, followed by Dantès. + + + + Chapter 17. The Abbé’s Chamber + +After having passed with tolerable ease through the subterranean +passage, which, however, did not admit of their holding themselves +erect, the two friends reached the further end of the corridor, into +which the abbé’s cell opened; from that point the passage became much +narrower, and barely permitted one to creep through on hands and knees. +The floor of the abbé’s cell was paved, and it had been by raising one +of the stones in the most obscure corner that Faria had been able to +commence the laborious task of which Dantès had witnessed the +completion. + +As he entered the chamber of his friend, Dantès cast around one eager +and searching glance in quest of the expected marvels, but nothing more +than common met his view. + +“It is well,” said the abbé; “we have some hours before us—it is now +just a quarter past twelve o’clock.” Instinctively Dantès turned round +to observe by what watch or clock the abbé had been able so accurately +to specify the hour. + +“Look at this ray of light which enters by my window,” said the abbé, +“and then observe the lines traced on the wall. Well, by means of these +lines, which are in accordance with the double motion of the earth, and +the ellipse it describes round the sun, I am enabled to ascertain the +precise hour with more minuteness than if I possessed a watch; for that +might be broken or deranged in its movements, while the sun and earth +never vary in their appointed paths.” + +This last explanation was wholly lost upon Dantès, who had always +imagined, from seeing the sun rise from behind the mountains and set in +the Mediterranean, that it moved, and not the earth. A double movement +of the globe he inhabited, and of which he could feel nothing, appeared +to him perfectly impossible. Each word that fell from his companion’s +lips seemed fraught with the mysteries of science, as worthy of digging +out as the gold and diamonds in the mines of Guzerat and Golconda, +which he could just recollect having visited during a voyage made in +his earliest youth. + +“Come,” said he to the abbé, “I am anxious to see your treasures.” + +The abbé smiled, and, proceeding to the disused fireplace, raised, by +the help of his chisel, a long stone, which had doubtless been the +hearth, beneath which was a cavity of considerable depth, serving as a +safe depository of the articles mentioned to Dantès. + +0213m + + + +“What do you wish to see first?” asked the abbé. + +“Oh, your great work on the monarchy of Italy!” + +Faria then drew forth from his hiding-place three or four rolls of +linen, laid one over the other, like folds of papyrus. These rolls +consisted of slips of cloth about four inches wide and eighteen long; +they were all carefully numbered and closely covered with writing, so +legible that Dantès could easily read it, as well as make out the +sense—it being in Italian, a language he, as a Provençal, perfectly +understood. + +“There,” said he, “there is the work complete. I wrote the word _finis_ +at the end of the sixty-eighth strip about a week ago. I have torn up +two of my shirts, and as many handkerchiefs as I was master of, to +complete the precious pages. Should I ever get out of prison and find +in all Italy a printer courageous enough to publish what I have +composed, my literary reputation is forever secured.” + +“I see,” answered Dantès. “Now let me behold the curious pens with +which you have written your work.” + +“Look!” said Faria, showing to the young man a slender stick about six +inches long, and much resembling the size of the handle of a fine +painting-brush, to the end of which was tied, by a piece of thread, one +of those cartilages of which the abbé had before spoken to Dantès; it +was pointed, and divided at the nib like an ordinary pen. Dantès +examined it with intense admiration, then looked around to see the +instrument with which it had been shaped so correctly into form. + +“Ah, yes,” said Faria; “the penknife. That’s my masterpiece. I made it, +as well as this larger knife, out of an old iron candlestick.” The +penknife was sharp and keen as a razor; as for the other knife, it +would serve a double purpose, and with it one could cut and thrust. + +Dantès examined the various articles shown to him with the same +attention that he had bestowed on the curiosities and strange tools +exhibited in the shops at Marseilles as the works of the savages in the +South Seas from whence they had been brought by the different trading +vessels. + +“As for the ink,” said Faria, “I told you how I managed to obtain +that—and I only just make it from time to time, as I require it.” + +“One thing still puzzles me,” observed Dantès, “and that is how you +managed to do all this by daylight?” + +“I worked at night also,” replied Faria. + +“Night!—why, for Heaven’s sake, are your eyes like cats’, that you can +see to work in the dark?” + +“Indeed they are not; but God has supplied man with the intelligence +that enables him to overcome the limitations of natural conditions. I +furnished myself with a light.” + +“You did? Pray tell me how.” + +“I separated the fat from the meat served to me, melted it, and so made +oil—here is my lamp.” So saying, the abbé exhibited a sort of torch +very similar to those used in public illuminations. + +“But how do you procure a light?” + +“Oh, here are two flints and a piece of burnt linen.” + +“And matches?” + +“I pretended that I had a disorder of the skin, and asked for a little +sulphur, which was readily supplied.” + +Dantès laid the different things he had been looking at on the table, +and stood with his head drooping on his breast, as though overwhelmed +by the perseverance and strength of Faria’s mind. + +0215m + + + +“You have not seen all yet,” continued Faria, “for I did not think it +wise to trust all my treasures in the same hiding-place. Let us shut +this one up.” They put the stone back in its place; the abbé sprinkled +a little dust over it to conceal the traces of its having been removed, +rubbed his foot well on it to make it assume the same appearance as the +other, and then, going towards his bed, he removed it from the spot it +stood in. Behind the head of the bed, and concealed by a stone fitting +in so closely as to defy all suspicion, was a hollow space, and in this +space a ladder of cords between twenty-five and thirty feet in length. +Dantès closely and eagerly examined it; he found it firm, solid, and +compact enough to bear any weight. + +“Who supplied you with the materials for making this wonderful work?” + +“I tore up several of my shirts, and ripped out the seams in the sheets +of my bed, during my three years’ imprisonment at Fenestrelle; and when +I was removed to the Château d’If, I managed to bring the ravellings +with me, so that I have been able to finish my work here.” + +“And was it not discovered that your sheets were unhemmed?” + +“Oh, no, for when I had taken out the thread I required, I hemmed the +edges over again.” + +“With what?” + +“With this needle,” said the abbé, as, opening his ragged vestments, he +showed Dantès a long, sharp fish-bone, with a small perforated eye for +the thread, a small portion of which still remained in it. + +“I once thought,” continued Faria, “of removing these iron bars, and +letting myself down from the window, which, as you see, is somewhat +wider than yours, although I should have enlarged it still more +preparatory to my flight; however, I discovered that I should merely +have dropped into a sort of inner court, and I therefore renounced the +project altogether as too full of risk and danger. Nevertheless, I +carefully preserved my ladder against one of those unforeseen +opportunities of which I spoke just now, and which sudden chance +frequently brings about.” + +While affecting to be deeply engaged in examining the ladder, the mind +of Dantès was, in fact, busily occupied by the idea that a person so +intelligent, ingenious, and clear-sighted as the abbé might probably be +able to solve the dark mystery of his own misfortunes, where he himself +could see nothing. + +“What are you thinking of?” asked the abbé smilingly, imputing the deep +abstraction in which his visitor was plunged to the excess of his awe +and wonder. + +“I was reflecting, in the first place,” replied Dantès, “upon the +enormous degree of intelligence and ability you must have employed to +reach the high perfection to which you have attained. What would you +not have accomplished if you had been free?” + +“Possibly nothing at all; the overflow of my brain would probably, in a +state of freedom, have evaporated in a thousand follies; misfortune is +needed to bring to light the treasures of the human intellect. +Compression is needed to explode gunpowder. Captivity has brought my +mental faculties to a focus; and you are well aware that from the +collision of clouds electricity is produced—from electricity, +lightning, from lightning, illumination.” + +“No,” replied Dantès. “I know nothing. Some of your words are to me +quite empty of meaning. You must be blessed indeed to possess the +knowledge you have.” + +The abbé smiled. “Well,” said he, “but you had another subject for your +thoughts; did you not say so just now?” + +“I did!” + +“You have told me as yet but one of them—let me hear the other.” + +“It was this,—that while you had related to me all the particulars of +your past life, you were perfectly unacquainted with mine.” + +“Your life, my young friend, has not been of sufficient length to admit +of your having passed through any very important events.” + +“It has been long enough to inflict on me a great and undeserved +misfortune. I would fain fix the source of it on man that I may no +longer vent reproaches upon Heaven.” + +“Then you profess ignorance of the crime with which you are charged?” + +“I do, indeed; and this I swear by the two beings most dear to me upon +earth,—my father and Mercédès.” + +“Come,” said the abbé, closing his hiding-place, and pushing the bed +back to its original situation, “let me hear your story.” + +Dantès obeyed, and commenced what he called his history, but which +consisted only of the account of a voyage to India, and two or three +voyages to the Levant, until he arrived at the recital of his last +cruise, with the death of Captain Leclere, and the receipt of a packet +to be delivered by himself to the grand marshal; his interview with +that personage, and his receiving, in place of the packet brought, a +letter addressed to a Monsieur Noirtier—his arrival at Marseilles, and +interview with his father—his affection for Mercédès, and their nuptial +feast—his arrest and subsequent examination, his temporary detention at +the Palais de Justice, and his final imprisonment in the Château d’If. +From this point everything was a blank to Dantès—he knew nothing more, +not even the length of time he had been imprisoned. His recital +finished, the abbé reflected long and earnestly. + +“There is,” said he, at the end of his meditations, “a clever maxim, +which bears upon what I was saying to you some little while ago, and +that is, that unless wicked ideas take root in a naturally depraved +mind, human nature, in a right and wholesome state, revolts at crime. +Still, from an artificial civilization have originated wants, vices, +and false tastes, which occasionally become so powerful as to stifle +within us all good feelings, and ultimately to lead us into guilt and +wickedness. From this view of things, then, comes the axiom that if you +visit to discover the author of any bad action, seek first to discover +the person to whom the perpetration of that bad action could be in any +way advantageous. Now, to apply it in your case,—to whom could your +disappearance have been serviceable?” + +“To no one, by Heaven! I was a very insignificant person.” + +“Do not speak thus, for your reply evinces neither logic nor +philosophy; everything is relative, my dear young friend, from the king +who stands in the way of his successor, to the employee who keeps his +rival out of a place. Now, in the event of the king’s death, his +successor inherits a crown,—when the employee dies, the supernumerary +steps into his shoes, and receives his salary of twelve thousand +livres. Well, these twelve thousand livres are his civil list, and are +as essential to him as the twelve millions of a king. Everyone, from +the highest to the lowest degree, has his place on the social ladder, +and is beset by stormy passions and conflicting interests, as in +Descartes’ theory of pressure and impulsion. But these forces increase +as we go higher, so that we have a spiral which in defiance of reason +rests upon the apex and not on the base. Now let us return to your +particular world. You say you were on the point of being made captain +of the _Pharaon_?” + +“Yes.” + +“And about to become the husband of a young and lovely girl?” + +“Yes.” + +“Now, could anyone have had any interest in preventing the +accomplishment of these two things? But let us first settle the +question as to its being the interest of anyone to hinder you from +being captain of the _Pharaon_. What say you?” + +“I cannot believe such was the case. I was generally liked on board, +and had the sailors possessed the right of selecting a captain +themselves, I feel convinced their choice would have fallen on me. +There was only one person among the crew who had any feeling of +ill-will towards me. I had quarelled with him some time previously, and +had even challenged him to fight me; but he refused.” + +“Now we are getting on. And what was this man’s name?” + +“Danglars.” + +“What rank did he hold on board?” + +“He was supercargo.” + +“And had you been captain, should you have retained him in his +employment?” + +“Not if the choice had remained with me, for I had frequently observed +inaccuracies in his accounts.” + +“Good again! Now then, tell me, was any person present during your last +conversation with Captain Leclere?” + +“No; we were quite alone.” + +“Could your conversation have been overheard by anyone?” + +“It might, for the cabin door was open—and—stay; now I +recollect,—Danglars himself passed by just as Captain Leclere was +giving me the packet for the grand marshal.” + +“That’s better,” cried the abbé; “now we are on the right scent. Did +you take anybody with you when you put into the port of Elba?” + +“Nobody.” + +“Somebody there received your packet, and gave you a letter in place of +it, I think?” + +“Yes; the grand marshal did.” + +“And what did you do with that letter?” + +“Put it into my portfolio.” + +“You had your portfolio with you, then? Now, how could a sailor find +room in his pocket for a portfolio large enough to contain an official +letter?” + +“You are right; it was left on board.” + +“Then it was not till your return to the ship that you put the letter +in the portfolio?” + +“No.” + +“And what did you do with this same letter while returning from +Porto-Ferrajo to the vessel?” + +“I carried it in my hand.” + +“So that when you went on board the _Pharaon_, everybody could see that +you held a letter in your hand?” + +“Yes.” + +“Danglars, as well as the rest?” + +“Danglars, as well as others.” + +“Now, listen to me, and try to recall every circumstance attending your +arrest. Do you recollect the words in which the information against you +was formulated?” + +“Oh yes, I read it over three times, and the words sank deeply into my +memory.” + +“Repeat it to me.” + +Dantès paused a moment, then said, “This is it, word for word: ‘The +king’s attorney is informed by a friend to the throne and religion, +that one Edmond Dantès, mate on board the _Pharaon_, this day arrived +from Smyrna, after having touched at Naples and Porto-Ferrajo, has been +intrusted by Murat with a packet for the usurper; again, by the +usurper, with a letter for the Bonapartist Club in Paris. This proof of +his guilt may be procured by his immediate arrest, as the letter will +be found either about his person, at his father’s residence, or in his +cabin on board the _Pharaon_.’” + +The abbé shrugged his shoulders. “The thing is clear as day,” said he; +“and you must have had a very confiding nature, as well as a good +heart, not to have suspected the origin of the whole affair.” + +“Do you really think so? Ah, that would indeed be infamous.” + +“How did Danglars usually write?” + +“In a handsome, running hand.” + +“And how was the anonymous letter written?” + +“Backhanded.” + +Again the abbé smiled. “Disguised.” + +“It was very boldly written, if disguised.” + +“Stop a bit,” said the abbé, taking up what he called his pen, and, +after dipping it into the ink, he wrote on a piece of prepared linen, +with his left hand, the first two or three words of the accusation. +Dantès drew back, and gazed on the abbé with a sensation almost +amounting to terror. + +“How very astonishing!” cried he at length. “Why your writing exactly +resembles that of the accusation.” + +“Simply because that accusation had been written with the left hand; +and I have noticed that——” + +“What?” + +“That while the writing of different persons done with the right hand +varies, that performed with the left hand is invariably uniform.” + +“You have evidently seen and observed everything.” + +“Let us proceed.” + +“Oh, yes, yes!” + +“Now as regards the second question.” + +“I am listening.” + +“Was there any person whose interest it was to prevent your marriage +with Mercédès?” + +“Yes; a young man who loved her.” + +“And his name was——” + +“Fernand.” + +“That is a Spanish name, I think?” + +“He was a Catalan.” + +“You imagine him capable of writing the letter?” + +“Oh, no; he would more likely have got rid of me by sticking a knife +into me.” + +“That is in strict accordance with the Spanish character; an +assassination they will unhesitatingly commit, but an act of cowardice, +never.” + +“Besides,” said Dantès, “the various circumstances mentioned in the +letter were wholly unknown to him.” + +“You had never spoken of them yourself to anyone?” + +“To no one.” + +“Not even to your mistress?” + +“No, not even to my betrothed.” + +“Then it is Danglars.” + +“I feel quite sure of it now.” + +“Wait a little. Pray, was Danglars acquainted with Fernand?” + +“No—yes, he was. Now I recollect——” + +“What?” + +“To have seen them both sitting at table together under an arbor at +Père Pamphile’s the evening before the day fixed for my wedding. They +were in earnest conversation. Danglars was joking in a friendly way, +but Fernand looked pale and agitated.” + +“Were they alone?” + +“There was a third person with them whom I knew perfectly well, and who +had, in all probability made their acquaintance; he was a tailor named +Caderousse, but he was very drunk. Stay!—stay!—How strange that it +should not have occurred to me before! Now I remember quite well, that +on the table round which they were sitting were pens, ink, and paper. +Oh, the heartless, treacherous scoundrels!” exclaimed Dantès, pressing +his hand to his throbbing brows. + +“Is there anything else I can assist you in discovering, besides the +villany of your friends?” inquired the abbé with a laugh. + +“Yes, yes,” replied Dantès eagerly; “I would beg of you, who see so +completely to the depths of things, and to whom the greatest mystery +seems but an easy riddle, to explain to me how it was that I underwent +no second examination, was never brought to trial, and, above all, was +condemned without ever having had sentence passed on me?” + +“That is altogether a different and more serious matter,” responded the +abbé. “The ways of justice are frequently too dark and mysterious to be +easily penetrated. All we have hitherto done in the matter has been +child’s play. If you wish me to enter upon the more difficult part of +the business, you must assist me by the most minute information on +every point.” + +“Pray ask me whatever questions you please; for, in good truth, you see +more clearly into my life than I do myself.” + +“In the first place, then, who examined you,—the king’s attorney, his +deputy, or a magistrate?” + +“The deputy.” + +“Was he young or old?” + +“About six or seven-and-twenty years of age, I should say.” + +“So,” answered the abbé. “Old enough to be ambitious, but too young to +be corrupt. And how did he treat you?” + +“With more of mildness than severity.” + +“Did you tell him your whole story?” + +“I did.” + +“And did his conduct change at all in the course of your examination?” + +“He did appear much disturbed when he read the letter that had brought +me into this scrape. He seemed quite overcome by my misfortune.” + +“By your misfortune?” + +“Yes.” + +“Then you feel quite sure that it was your misfortune he deplored?” + +“He gave me one great proof of his sympathy, at any rate.” + +“And that?” + +“He burnt the sole evidence that could at all have criminated me.” + +“What? the accusation?” + +“No; the letter.” + +“Are you sure?” + +“I saw it done.” + +“That alters the case. This man might, after all, be a greater +scoundrel than you have thought possible.” + +“Upon my word,” said Dantès, “you make me shudder. Is the world filled +with tigers and crocodiles?” + +“Yes; and remember that two-legged tigers and crocodiles are more +dangerous than the others.” + +“Never mind; let us go on.” + +“With all my heart! You tell me he burned the letter?” + +“He did; saying at the same time, ‘You see I thus destroy the only +proof existing against you.’” + +“This action is somewhat too sublime to be natural.” + +“You think so?” + +“I am sure of it. To whom was this letter addressed?” + +“To M. Noirtier, Rue Coq-Héron, No. 13, Paris.” + +“Now can you conceive of any interest that your heroic deputy could +possibly have had in the destruction of that letter?” + +“Why, it is not altogether impossible he might have had, for he made me +promise several times never to speak of that letter to anyone, assuring +me he so advised me for my own interest; and, more than this, he +insisted on my taking a solemn oath never to utter the name mentioned +in the address.” + +“Noirtier!” repeated the abbé; “Noirtier!—I knew a person of that name +at the court of the Queen of Etruria,—a Noirtier, who had been a +Girondin during the Revolution! What was your deputy called?” + +“De Villefort!” The abbé burst into a fit of laughter, while Dantès +gazed on him in utter astonishment. + +“What ails you?” said he at length. + +“Do you see that ray of sunlight?” + +“I do.” + +“Well, the whole thing is more clear to me than that sunbeam is to you. +Poor fellow! poor young man! And you tell me this magistrate expressed +great sympathy and commiseration for you?” + +“He did.” + +“And the worthy man destroyed your compromising letter?” + +“Yes.” + +“And then made you swear never to utter the name of Noirtier?” + +“Yes.” + +“Why, you poor short-sighted simpleton, can you not guess who this +Noirtier was, whose very name he was so careful to keep concealed? This +Noirtier was his father!” + +Had a thunderbolt fallen at the feet of Dantès, or hell opened its +yawning gulf before him, he could not have been more completely +transfixed with horror than he was at the sound of these unexpected +words. Starting up, he clasped his hands around his head as though to +prevent his very brain from bursting, and exclaimed, “His father! his +father!” + +“Yes, his father,” replied the abbé; “his right name was Noirtier de +Villefort.” + +At this instant a bright light shot through the mind of Dantès, and +cleared up all that had been dark and obscure before. The change that +had come over Villefort during the examination, the destruction of the +letter, the exacted promise, the almost supplicating tones of the +magistrate, who seemed rather to implore mercy than to pronounce +punishment,—all returned with a stunning force to his memory. He cried +out, and staggered against the wall like a drunken man, then he hurried +to the opening that led from the abbé’s cell to his own, and said, “I +must be alone, to think over all this.” + +When he regained his dungeon, he threw himself on his bed, where the +turnkey found him in the evening visit, sitting with fixed gaze and +contracted features, dumb and motionless as a statue. During these +hours of profound meditation, which to him had seemed only minutes, he +had formed a fearful resolution, and bound himself to its fulfilment by +a solemn oath. + +Dantès was at length roused from his reverie by the voice of Faria, +who, having also been visited by his jailer, had come to invite his +fellow-sufferer to share his supper. The reputation of being out of his +mind, though harmlessly and even amusingly so, had procured for the +abbé unusual privileges. He was supplied with bread of a finer, whiter +quality than the usual prison fare, and even regaled each Sunday with a +small quantity of wine. Now this was a Sunday, and the abbé had come to +ask his young companion to share the luxuries with him. + +Dantès followed him; his features were no longer contracted, and now +wore their usual expression, but there was that in his whole appearance +that bespoke one who had come to a fixed and desperate resolve. Faria +bent on him his penetrating eye. + +“I regret now,” said he, “having helped you in your late inquiries, or +having given you the information I did.” + +“Why so?” inquired Dantès. + +“Because it has instilled a new passion in your heart—that of +vengeance.” + +Dantès smiled. “Let us talk of something else,” said he. + +Again the abbé looked at him, then mournfully shook his head; but in +accordance with Dantès’ request, he began to speak of other matters. +The elder prisoner was one of those persons whose conversation, like +that of all who have experienced many trials, contained many useful and +important hints as well as sound information; but it was never +egotistical, for the unfortunate man never alluded to his own sorrows. +Dantès listened with admiring attention to all he said; some of his +remarks corresponded with what he already knew, or applied to the sort +of knowledge his nautical life had enabled him to acquire. A part of +the good abbé’s words, however, were wholly incomprehensible to him; +but, like the aurora which guides the navigator in northern latitudes, +opened new vistas to the inquiring mind of the listener, and gave +fantastic glimpses of new horizons, enabling him justly to estimate the +delight an intellectual mind would have in following one so richly +gifted as Faria along the heights of truth, where he was so much at +home. + +“You must teach me a small part of what you know,” said Dantès, “if +only to prevent your growing weary of me. I can well believe that so +learned a person as yourself would prefer absolute solitude to being +tormented with the company of one as ignorant and uninformed as myself. +If you will only agree to my request, I promise you never to mention +another word about escaping.” + +The abbé smiled. + +“Alas, my boy,” said he, “human knowledge is confined within very +narrow limits; and when I have taught you mathematics, physics, +history, and the three or four modern languages with which I am +acquainted, you will know as much as I do myself. Now, it will scarcely +require two years for me to communicate to you the stock of learning I +possess.” + +“Two years!” exclaimed Dantès; “do you really believe I can acquire all +these things in so short a time?” + +“Not their application, certainly, but their principles you may; to +learn is not to know; there are the learners and the learned. Memory +makes the one, philosophy the other.” + +“But cannot one learn philosophy?” + +“Philosophy cannot be taught; it is the application of the sciences to +truth; it is like the golden cloud in which the Messiah went up into +heaven.” + +“Well, then,” said Dantès, “What shall you teach me first? I am in a +hurry to begin. I want to learn.” + +“Everything,” said the abbé. And that very evening the prisoners +sketched a plan of education, to be entered upon the following day. +Dantès possessed a prodigious memory, combined with an astonishing +quickness and readiness of conception; the mathematical turn of his +mind rendered him apt at all kinds of calculation, while his naturally +poetical feelings threw a light and pleasing veil over the dry reality +of arithmetical computation, or the rigid severity of geometry. He +already knew Italian, and had also picked up a little of the Romaic +dialect during voyages to the East; and by the aid of these two +languages he easily comprehended the construction of all the others, so +that at the end of six months he began to speak Spanish, English, and +German. + +In strict accordance with the promise made to the abbé, Dantès spoke no +more of escape. Perhaps the delight his studies afforded him left no +room for such thoughts; perhaps the recollection that he had pledged +his word (on which his sense of honor was keen) kept him from referring +in any way to the possibilities of flight. Days, even months, passed by +unheeded in one rapid and instructive course. At the end of a year +Dantès was a new man. Dantès observed, however, that Faria, in spite of +the relief his society afforded, daily grew sadder; one thought seemed +incessantly to harass and distract his mind. Sometimes he would fall +into long reveries, sigh heavily and involuntarily, then suddenly rise, +and, with folded arms, begin pacing the confined space of his dungeon. +One day he stopped all at once, and exclaimed: + +“Ah, if there were no sentinel!” + +“There shall not be one a minute longer than you please,” said Dantès, +who had followed the working of his thoughts as accurately as though +his brain were enclosed in crystal so clear as to display its minutest +operations. + +“I have already told you,” answered the abbé, “that I loathe the idea +of shedding blood.” + +“And yet the murder, if you choose to call it so, would be simply a +measure of self-preservation.” + +“No matter! I could never agree to it.” + +“Still, you have thought of it?” + +“Incessantly, alas!” cried the abbé. + +“And you have discovered a means of regaining our freedom, have you +not?” asked Dantès eagerly. + +“I have; if it were only possible to place a deaf and blind sentinel in +the gallery beyond us.” + +“He shall be both blind and deaf,” replied the young man, with an air +of determination that made his companion shudder. + +“No, no,” cried the abbé; “impossible!” + +Dantès endeavored to renew the subject; the abbé shook his head in +token of disapproval, and refused to make any further response. Three +months passed away. + +“Are you strong?” the abbé asked one day of Dantès. The young man, in +reply, took up the chisel, bent it into the form of a horseshoe, and +then as readily straightened it. + +“And will you engage not to do any harm to the sentry, except as a last +resort?” + +“I promise on my honor.” + +“Then,” said the abbé, “we may hope to put our design into execution.” + +“And how long shall we be in accomplishing the necessary work?” + +“At least a year.” + +“And shall we begin at once?” + +“At once.” + +“We have lost a year to no purpose!” cried Dantès. + +“Do you consider the last twelve months to have been wasted?” asked the +abbé. + +“Forgive me!” cried Edmond, blushing deeply. + +“Tut, tut!” answered the abbé, “man is but man after all, and you are +about the best specimen of the genus I have ever known. Come, let me +show you my plan.” + +The abbé then showed Dantès the sketch he had made for their escape. It +consisted of a plan of his own cell and that of Dantès, with the +passage which united them. In this passage he proposed to drive a level +as they do in mines; this level would bring the two prisoners +immediately beneath the gallery where the sentry kept watch; once +there, a large excavation would be made, and one of the flag-stones +with which the gallery was paved be so completely loosened that at the +desired moment it would give way beneath the feet of the soldier, who, +stunned by his fall, would be immediately bound and gagged by Dantès +before he had power to offer any resistance. The prisoners were then to +make their way through one of the gallery windows, and to let +themselves down from the outer walls by means of the abbé’s ladder of +cords. + +Dantès’ eyes sparkled with joy, and he rubbed his hands with delight at +the idea of a plan so simple, yet apparently so certain to succeed. +That very day the miners began their labors, with a vigor and alacrity +proportionate to their long rest from fatigue and their hopes of +ultimate success. Nothing interrupted the progress of the work except +the necessity that each was under of returning to his cell in +anticipation of the turnkey’s visits. They had learned to distinguish +the almost imperceptible sound of his footsteps as he descended towards +their dungeons, and happily, never failed of being prepared for his +coming. The fresh earth excavated during their present work, and which +would have entirely blocked up the old passage, was thrown, by degrees +and with the utmost precaution, out of the window in either Faria’s or +Dantès’ cell, the rubbish being first pulverized so finely that the +night wind carried it far away without permitting the smallest trace to +remain. + +More than a year had been consumed in this undertaking, the only tools +for which had been a chisel, a knife, and a wooden lever; Faria still +continuing to instruct Dantès by conversing with him, sometimes in one +language, sometimes in another; at others, relating to him the history +of nations and great men who from time to time have risen to fame and +trodden the path of glory. The abbé was a man of the world, and had, +moreover, mixed in the first society of the day; he wore an air of +melancholy dignity which Dantès, thanks to the imitative powers +bestowed on him by nature, easily acquired, as well as that outward +polish and politeness he had before been wanting in, and which is +seldom possessed except by those who have been placed in constant +intercourse with persons of high birth and breeding. + +At the end of fifteen months the level was finished, and the excavation +completed beneath the gallery, and the two workmen could distinctly +hear the measured tread of the sentinel as he paced to and fro over +their heads. Compelled, as they were, to await a night sufficiently +dark to favor their flight, they were obliged to defer their final +attempt till that auspicious moment should arrive; their greatest dread +now was lest the stone through which the sentry was doomed to fall +should give way before its right time, and this they had in some +measure provided against by propping it up with a small beam which they +had discovered in the walls through which they had worked their way. +Dantès was occupied in arranging this piece of wood when he heard +Faria, who had remained in Edmond’s cell for the purpose of cutting a +peg to secure their rope-ladder, call to him in a tone indicative of +great suffering. Dantès hastened to his dungeon, where he found him +standing in the middle of the room, pale as death, his forehead +streaming with perspiration, and his hands clenched tightly together. + +“Gracious heavens!” exclaimed Dantès, “what is the matter? what has +happened?” + +“Quick! quick!” returned the abbé, “listen to what I have to say.” + +Dantès looked in fear and wonder at the livid countenance of Faria, +whose eyes, already dull and sunken, were surrounded by purple circles, +while his lips were white as those of a corpse, and his very hair +seemed to stand on end. + +“Tell me, I beseech you, what ails you?” cried Dantès, letting his +chisel fall to the floor. + +“Alas,” faltered out the abbé, “all is over with me. I am seized with a +terrible, perhaps mortal illness; I can feel that the paroxysm is fast +approaching. I had a similar attack the year previous to my +imprisonment. This malady admits but of one remedy; I will tell you +what that is. Go into my cell as quickly as you can; draw out one of +the feet that support the bed; you will find it has been hollowed out +for the purpose of containing a small phial you will see there +half-filled with a red-looking fluid. Bring it to me—or rather—no, +no!—I may be found here, therefore help me back to my room while I have +the strength to drag myself along. Who knows what may happen, or how +long the attack may last?” + +In spite of the magnitude of the misfortune which thus suddenly +frustrated his hopes, Dantès did not lose his presence of mind, but +descended into the passage, dragging his unfortunate companion with +him; then, half-carrying, half-supporting him, he managed to reach the +abbé’s chamber, when he immediately laid the sufferer on his bed. + +“Thanks,” said the poor abbé, shivering as though his veins were filled +with ice. “I am about to be seized with a fit of catalepsy; when it +comes to its height I shall probably lie still and motionless as though +dead, uttering neither sigh nor groan. On the other hand, the symptoms +may be much more violent, and cause me to fall into fearful +convulsions, foam at the mouth, and cry out loudly. Take care my cries +are not heard, for if they are it is more than probable I should be +removed to another part of the prison, and we be separated forever. +When I become quite motionless, cold, and rigid as a corpse, then, and +not before,—be careful about this,—force open my teeth with the knife, +pour from eight to ten drops of the liquor contained in the phial down +my throat, and I may perhaps revive.” + +“Perhaps!” exclaimed Dantès in grief-stricken tones. + +“Help! help!” cried the abbé, “I—I—die—I——” + +0229m + + + +So sudden and violent was the fit that the unfortunate prisoner was +unable to complete the sentence; a violent convulsion shook his whole +frame, his eyes started from their sockets, his mouth was drawn on one +side, his cheeks became purple, he struggled, foamed, dashed himself +about, and uttered the most dreadful cries, which, however, Dantès +prevented from being heard by covering his head with the blanket. The +fit lasted two hours; then, more helpless than an infant, and colder +and paler than marble, more crushed and broken than a reed trampled +under foot, he fell back, doubled up in one last convulsion, and became +as rigid as a corpse. + +Edmond waited till life seemed extinct in the body of his friend, then, +taking up the knife, he with difficulty forced open the closely fixed +jaws, carefully administered the appointed number of drops, and +anxiously awaited the result. An hour passed away and the old man gave +no sign of returning animation. Dantès began to fear he had delayed too +long ere he administered the remedy, and, thrusting his hands into his +hair, continued gazing on the lifeless features of his friend. At +length a slight color tinged the livid cheeks, consciousness returned +to the dull, open eyeballs, a faint sigh issued from the lips, and the +sufferer made a feeble effort to move. + +“He is saved! he is saved!” cried Dantès in a paroxysm of delight. + +The sick man was not yet able to speak, but he pointed with evident +anxiety towards the door. Dantès listened, and plainly distinguished +the approaching steps of the jailer. It was therefore near seven +o’clock; but Edmond’s anxiety had put all thoughts of time out of his +head. + +The young man sprang to the entrance, darted through it, carefully +drawing the stone over the opening, and hurried to his cell. He had +scarcely done so before the door opened, and the jailer saw the +prisoner seated as usual on the side of his bed. Almost before the key +had turned in the lock, and before the departing steps of the jailer +had died away in the long corridor he had to traverse, Dantès, whose +restless anxiety concerning his friend left him no desire to touch the +food brought him, hurried back to the abbé’s chamber, and raising the +stone by pressing his head against it, was soon beside the sick man’s +couch. Faria had now fully regained his consciousness, but he still lay +helpless and exhausted on his miserable bed. + +“I did not expect to see you again,” said he feebly, to Dantès. + +“And why not?” asked the young man. “Did you fancy yourself dying?” + +“No, I had no such idea; but, knowing that all was ready for flight, I +thought you might have made your escape.” + +The deep glow of indignation suffused the cheeks of Dantès. + +“Without you? Did you really think me capable of that?” + +“At least,” said the abbé, “I now see how wrong such an opinion would +have been. Alas, alas! I am fearfully exhausted and debilitated by this +attack.” + +“Be of good cheer,” replied Dantès; “your strength will return.” And as +he spoke he seated himself near the bed beside Faria, and took his +hands. The abbé shook his head. + +“The last attack I had,” said he, “lasted but half an hour, and after +it I was hungry, and got up without help; now I can move neither my +right arm nor leg, and my head seems uncomfortable, which shows that +there has been a suffusion of blood on the brain. The third attack will +either carry me off, or leave me paralyzed for life.” + +“No, no,” cried Dantès; “you are mistaken—you will not die! And your +third attack (if, indeed, you should have another) will find you at +liberty. We shall save you another time, as we have done this, only +with a better chance of success, because we shall be able to command +every requisite assistance.” + +“My good Edmond,” answered the abbé, “be not deceived. The attack which +has just passed away, condemns me forever to the walls of a prison. +None can fly from a dungeon who cannot walk.” + +“Well, we will wait,—a week, a month, two months, if need be,—and +meanwhile your strength will return. Everything is in readiness for our +flight, and we can select any time we choose. As soon as you feel able +to swim we will go.” + +“I shall never swim again,” replied Faria. “This arm is paralyzed; not +for a time, but forever. Lift it, and judge if I am mistaken.” + +The young man raised the arm, which fell back by its own weight, +perfectly inanimate and helpless. A sigh escaped him. + +“You are convinced now, Edmond, are you not?” asked the abbé. “Depend +upon it, I know what I say. Since the first attack I experienced of +this malady, I have continually reflected on it. Indeed, I expected it, +for it is a family inheritance; both my father and grandfather died of +it in a third attack. The physician who prepared for me the remedy I +have twice successfully taken, was no other than the celebrated +Cabanis, and he predicted a similar end for me.” + +0233m + + + +“The physician may be mistaken!” exclaimed Dantès. “And as for your +poor arm, what difference will that make? I can take you on my +shoulders, and swim for both of us.” + +“My son,” said the abbé, “you, who are a sailor and a swimmer, must +know as well as I do that a man so loaded would sink before he had done +fifty strokes. Cease, then, to allow yourself to be duped by vain +hopes, that even your own excellent heart refuses to believe in. Here I +shall remain till the hour of my deliverance arrives, and that, in all +human probability, will be the hour of my death. As for you, who are +young and active, delay not on my account, but fly—go—I give you back +your promise.” + +“It is well,” said Dantès. “Then I shall also remain.” Then, rising and +extending his hand with an air of solemnity over the old man’s head, he +slowly added, “By the blood of Christ I swear never to leave you while +you live.” + +Faria gazed fondly on his noble-minded, single-hearted, high-principled +young friend, and read in his countenance ample confirmation of the +sincerity of his devotion and the loyalty of his purpose. + +“Thanks,” murmured the invalid, extending one hand. “I accept. You may +one of these days reap the reward of your disinterested devotion. But +as I cannot, and you will not, quit this place, it becomes necessary to +fill up the excavation beneath the soldier’s gallery; he might, by +chance, hear the hollow sound of his footsteps, and call the attention +of his officer to the circumstance. That would bring about a discovery +which would inevitably lead to our being separated. Go, then, and set +about this work, in which, unhappily, I can offer you no assistance; +keep at it all night, if necessary, and do not return here tomorrow +till after the jailer has visited me. I shall have something of the +greatest importance to communicate to you.” + +Dantès took the hand of the abbé in his, and affectionately pressed it. +Faria smiled encouragingly on him, and the young man retired to his +task, in the spirit of obedience and respect which he had sworn to show +towards his aged friend. + + + + Chapter 18. The Treasure + +When Dantès returned next morning to the chamber of his companion in +captivity, he found Faria seated and looking composed. In the ray of +light which entered by the narrow window of his cell, he held open in +his left hand, of which alone, it will be recollected, he retained the +use, a sheet of paper, which, from being constantly rolled into a small +compass, had the form of a cylinder, and was not easily kept open. He +did not speak, but showed the paper to Dantès. + +“What is that?” he inquired. + +“Look at it,” said the abbé with a smile. + +“I have looked at it with all possible attention,” said Dantès, “and I +only see a half-burnt paper, on which are traces of Gothic characters +inscribed with a peculiar kind of ink.” + +“This paper, my friend,” said Faria, “I may now avow to you, since I +have the proof of your fidelity—this paper is my treasure, of which, +from this day forth, one-half belongs to you.” + +The sweat started forth on Dantès’ brow. Until this day and for how +long a time!—he had refrained from talking of the treasure, which had +brought upon the abbé the accusation of madness. With his instinctive +delicacy Edmond had preferred avoiding any touch on this painful chord, +and Faria had been equally silent. He had taken the silence of the old +man for a return to reason; and now these few words uttered by Faria, +after so painful a crisis, seemed to indicate a serious relapse into +mental alienation. + +“Your treasure?” stammered Dantès. Faria smiled. + +“Yes,” said he. “You have, indeed, a noble nature, Edmond, and I see by +your paleness and agitation what is passing in your heart at this +moment. No, be assured, I am not mad. This treasure exists, Dantès, and +if I have not been allowed to possess it, you will. Yes—you. No one +would listen or believe me, because everyone thought me mad; but you, +who must know that I am not, listen to me, and believe me so afterwards +if you will.” + +“Alas,” murmured Edmond to himself, “this is a terrible relapse! There +was only this blow wanting.” Then he said aloud, “My dear friend, your +attack has, perhaps, fatigued you; had you not better repose awhile? +Tomorrow, if you will, I will hear your narrative; but today I wish to +nurse you carefully. Besides,” he said, “a treasure is not a thing we +need hurry about.” + +“On the contrary, it is a matter of the utmost importance, Edmond!” +replied the old man. “Who knows if tomorrow, or the next day after, the +third attack may not come on? and then must not all be over? Yes, +indeed, I have often thought with a bitter joy that these riches, which +would make the wealth of a dozen families, will be forever lost to +those men who persecute me. This idea was one of vengeance to me, and I +tasted it slowly in the night of my dungeon and the despair of my +captivity. But now I have forgiven the world for the love of you; now +that I see you, young and with a promising future,—now that I think of +all that may result to you in the good fortune of such a disclosure, I +shudder at any delay, and tremble lest I should not assure to one as +worthy as yourself the possession of so vast an amount of hidden +wealth.” + +Edmond turned away his head with a sigh. + +“You persist in your incredulity, Edmond,” continued Faria. “My words +have not convinced you. I see you require proofs. Well, then, read this +paper, which I have never shown to anyone.” + +“Tomorrow, my dear friend,” said Edmond, desirous of not yielding to +the old man’s madness. “I thought it was understood that we should not +talk of that until tomorrow.” + +“Then we will not talk of it until tomorrow; but read this paper +today.” + +“I will not irritate him,” thought Edmond, and taking the paper, of +which half was wanting,—having been burnt, no doubt, by some +accident,—he read: + +“this treasure, which may amount to two... + +of Roman crowns in the most distant a... + +of the second opening wh... + +declare to belong to him alo... + +heir. + + “25th April, 149’” + + +“Well!” said Faria, when the young man had finished reading it. + +“Why,” replied Dantès, “I see nothing but broken lines and unconnected +words, which are rendered illegible by fire.” + +“Yes, to you, my friend, who read them for the first time; but not for +me, who have grown pale over them by many nights’ study, and have +reconstructed every phrase, completed every thought.” + +“And do you believe you have discovered the hidden meaning?” + +“I am sure I have, and you shall judge for yourself; but first listen +to the history of this paper.” + +“Silence!” exclaimed Dantès. “Steps approach—I go—adieu!” + +And Dantès, happy to escape the history and explanation which would be +sure to confirm his belief in his friend’s mental instability, glided +like a snake along the narrow passage; while Faria, restored by his +alarm to a certain amount of activity, pushed the stone into place with +his foot, and covered it with a mat in order the more effectually to +avoid discovery. + +It was the governor, who, hearing of Faria’s illness from the jailer, +had come in person to see him. + +Faria sat up to receive him, avoiding all gestures in order that he +might conceal from the governor the paralysis that had already half +stricken him with death. His fear was lest the governor, touched with +pity, might order him to be removed to better quarters, and thus +separate him from his young companion. But fortunately this was not the +case, and the governor left him, convinced that the poor madman, for +whom in his heart he felt a kind of affection, was only troubled with a +slight indisposition. + +During this time, Edmond, seated on his bed with his head in his hands, +tried to collect his scattered thoughts. Faria, since their first +acquaintance, had been on all points so rational and logical, so +wonderfully sagacious, in fact, that he could not understand how so +much wisdom on all points could be allied with madness. Was Faria +deceived as to his treasure, or was all the world deceived as to Faria? + +Dantès remained in his cell all day, not daring to return to his +friend, thinking thus to defer the moment when he should be convinced, +once for all, that the abbé was mad—such a conviction would be so +terrible! + +But, towards the evening after the hour for the customary visit had +gone by, Faria, not seeing the young man appear, tried to move and get +over the distance which separated them. Edmond shuddered when he heard +the painful efforts which the old man made to drag himself along; his +leg was inert, and he could no longer make use of one arm. Edmond was +obliged to assist him, for otherwise he would not have been able to +enter by the small aperture which led to Dantès’ chamber. + +“Here I am, pursuing you remorselessly,” he said with a benignant +smile. “You thought to escape my munificence, but it is in vain. Listen +to me.” + +Edmond saw there was no escape, and placing the old man on his bed, he +seated himself on the stool beside him. + +“You know,” said the abbé, “that I was the secretary and intimate +friend of Cardinal Spada, the last of the princes of that name. I owe +to this worthy lord all the happiness I ever knew. He was not rich, +although the wealth of his family had passed into a proverb, and I +heard the phrase very often, ‘As rich as a Spada.’ But he, like public +rumor, lived on this reputation for wealth; his palace was my paradise. +I was tutor to his nephews, who are dead; and when he was alone in the +world, I tried by absolute devotion to his will, to make up to him all +he had done for me during ten years of unremitting kindness. The +cardinal’s house had no secrets for me. I had often seen my noble +patron annotating ancient volumes, and eagerly searching amongst dusty +family manuscripts. One day when I was reproaching him for his +unavailing searches, and deploring the prostration of mind that +followed them, he looked at me, and, smiling bitterly, opened a volume +relating to the History of the City of Rome. There, in the twentieth +chapter of the Life of Pope Alexander VI., were the following lines, +which I can never forget:— + +“‘The great wars of Romagna had ended; Cæsar Borgia, who had completed +his conquest, had need of money to purchase all Italy. The pope had +also need of money to bring matters to an end with Louis XII. King of +France, who was formidable still in spite of his recent reverses; and +it was necessary, therefore, to have recourse to some profitable +scheme, which was a matter of great difficulty in the impoverished +condition of exhausted Italy. His holiness had an idea. He determined +to make two cardinals.’ + +“By choosing two of the greatest personages of Rome, especially rich +men—_this_ was the return the Holy Father looked for. In the first +place, he could sell the great appointments and splendid offices which +the cardinals already held; and then he had the two hats to sell +besides. There was a third point in view, which will appear hereafter. + +“The pope and Cæsar Borgia first found the two future cardinals; they +were Giovanni Rospigliosi, who held four of the highest dignities of +the Holy See, and Cæsar Spada, one of the noblest and richest of the +Roman nobility; both felt the high honor of such a favor from the pope. +They were ambitious, and Cæsar Borgia soon found purchasers for their +appointments. The result was, that Rospigliosi and Spada paid for being +cardinals, and eight other persons paid for the offices the cardinals +held before their elevation, and thus eight hundred thousand crowns +entered into the coffers of the speculators. + +0239m + + + +“It is time now to proceed to the last part of the speculation. The +pope heaped attentions upon Rospigliosi and Spada, conferred upon them +the insignia of the cardinalate, and induced them to arrange their +affairs and take up their residence at Rome. Then the pope and Cæsar +Borgia invited the two cardinals to dinner. This was a matter of +dispute between the Holy Father and his son. Cæsar thought they could +make use of one of the means which he always had ready for his friends, +that is to say, in the first place, the famous key which was given to +certain persons with the request that they go and open a designated +cupboard. This key was furnished with a small iron point,—a negligence +on the part of the locksmith. When this was pressed to effect the +opening of the cupboard, of which the lock was difficult, the person +was pricked by this small point, and died next day. Then there was the +ring with the lion’s head, which Cæsar wore when he wanted to greet his +friends with a clasp of the hand. The lion bit the hand thus favored, +and at the end of twenty-four hours, the bite was mortal. + +“Cæsar proposed to his father, that they should either ask the +cardinals to open the cupboard, or shake hands with them; but Alexander +VI. replied: ‘Now as to the worthy cardinals, Spada and Rospigliosi, +let us ask both of them to dinner, something tells me that we shall get +that money back. Besides, you forget, Cæsar, an indigestion declares +itself immediately, while a prick or a bite occasions a delay of a day +or two.’ Cæsar gave way before such cogent reasoning, and the cardinals +were consequently invited to dinner. + +“The table was laid in a vineyard belonging to the pope, near San +Pierdarena, a charming retreat which the cardinals knew very well by +report. Rospigliosi, quite set up with his new dignities, went with a +good appetite and his most ingratiating manner. Spada, a prudent man, +and greatly attached to his only nephew, a young captain of the highest +promise, took paper and pen, and made his will. He then sent word to +his nephew to wait for him near the vineyard; but it appeared the +servant did not find him. + +“Spada knew what these invitations meant; since Christianity, so +eminently civilizing, had made progress in Rome, it was no longer a +centurion who came from the tyrant with a message, ‘Cæsar wills that +you die.’ but it was a legate _à latere_, who came with a smile on his +lips to say from the pope, ‘His holiness requests you to dine with +him.’ + +“Spada set out about two o’clock to San Pierdarena. The pope awaited +him. The first sight that attracted the eyes of Spada was that of his +nephew, in full costume, and Cæsar Borgia paying him most marked +attentions. Spada turned pale, as Cæsar looked at him with an ironical +air, which proved that he had anticipated all, and that the snare was +well spread. + +“They began dinner and Spada was only able to inquire of his nephew if +he had received his message. The nephew replied no; perfectly +comprehending the meaning of the question. It was too late, for he had +already drunk a glass of excellent wine, placed for him expressly by +the pope’s butler. Spada at the same moment saw another bottle approach +him, which he was pressed to taste. An hour afterwards a physician +declared they were both poisoned through eating mushrooms. Spada died +on the threshold of the vineyard; the nephew expired at his own door, +making signs which his wife could not comprehend. + +“Then Cæsar and the pope hastened to lay hands on the heritage, under +pretense of seeking for the papers of the dead man. But the inheritance +consisted in this only, a scrap of paper on which Spada had written:—‘I +bequeath to my beloved nephew my coffers, my books, and, amongst +others, my breviary with the gold corners, which I beg he will preserve +in remembrance of his affectionate uncle.’ + +“The heirs sought everywhere, admired the breviary, laid hands on the +furniture, and were greatly astonished that Spada, the rich man, was +really the most miserable of uncles—no treasures—unless they were those +of science, contained in the library and laboratories. That was all. +Cæsar and his father searched, examined, scrutinized, but found +nothing, or at least very little; not exceeding a few thousand crowns +in plate, and about the same in ready money; but the nephew had time to +say to his wife before he expired: ‘Look well among my uncle’s papers; +there is a will.’ + +“They sought even more thoroughly than the august heirs had done, but +it was fruitless. There were two palaces and a vineyard behind the +Palatine Hill; but in these days landed property had not much value, +and the two palaces and the vineyard remained to the family since they +were beneath the rapacity of the pope and his son. Months and years +rolled on. Alexander VI. died, poisoned,—you know by what mistake. +Cæsar, poisoned at the same time, escaped by shedding his skin like a +snake; but the new skin was spotted by the poison till it looked like a +tiger’s. Then, compelled to quit Rome, he went and got himself +obscurely killed in a night skirmish, scarcely noticed in history. + +“After the pope’s death and his son’s exile, it was supposed that the +Spada family would resume the splendid position they had held before +the cardinal’s time; but this was not the case. The Spadas remained in +doubtful ease, a mystery hung over this dark affair, and the public +rumor was, that Cæsar, a better politician than his father, had carried +off from the pope the fortune of the two cardinals. I say the two, +because Cardinal Rospigliosi, who had not taken any precaution, was +completely despoiled. + +“Up to this point,” said Faria, interrupting the thread of his +narrative, “this seems to you very meaningless, no doubt, eh?” + +“Oh, my friend,” cried Dantès, “on the contrary, it seems as if I were +reading a most interesting narrative; go on, I beg of you.” + +“I will. The family began to get accustomed to their obscurity. Years +rolled on, and amongst the descendants some were soldiers, others +diplomatists; some churchmen, some bankers; some grew rich, and some +were ruined. I come now to the last of the family, whose secretary I +was—the Count of Spada. I had often heard him complain of the +disproportion of his rank with his fortune; and I advised him to invest +all he had in an annuity. He did so, and thus doubled his income. The +celebrated breviary remained in the family, and was in the count’s +possession. It had been handed down from father to son; for the +singular clause of the only will that had been found, had caused it to +be regarded as a genuine relic, preserved in the family with +superstitious veneration. It was an illuminated book, with beautiful +Gothic characters, and so weighty with gold, that a servant always +carried it before the cardinal on days of great solemnity. + +“At the sight of papers of all sorts,—titles, contracts, parchments, +which were kept in the archives of the family, all descending from the +poisoned cardinal, I in my turn examined the immense bundles of +documents, like twenty servitors, stewards, secretaries before me; but +in spite of the most exhaustive researches, I found—nothing. Yet I had +read, I had even written a precise history of the Borgia family, for +the sole purpose of assuring myself whether any increase of fortune had +occurred to them on the death of the Cardinal Cæsar Spada; but could +only trace the acquisition of the property of the Cardinal Rospigliosi, +his companion in misfortune. + +“I was then almost assured that the inheritance had neither profited +the Borgias nor the family, but had remained unpossessed like the +treasures of the Arabian Nights, which slept in the bosom of the earth +under the eyes of the genie. I searched, ransacked, counted, calculated +a thousand and a thousand times the income and expenditure of the +family for three hundred years. It was useless. I remained in my +ignorance, and the Count of Spada in his poverty. + +“My patron died. He had reserved from his annuity his family papers, +his library, composed of five thousand volumes, and his famous +breviary. All these he bequeathed to me, with a thousand Roman crowns, +which he had in ready money, on condition that I would have anniversary +masses said for the repose of his soul, and that I would draw up a +genealogical tree and history of his house. All this I did +scrupulously. Be easy, my dear Edmond, we are near the conclusion. + +“In 1807, a month before I was arrested, and a fortnight after the +death of the Count of Spada, on the 25th of December (you will see +presently how the date became fixed in my memory), I was reading, for +the thousandth time, the papers I was arranging, for the palace was +sold to a stranger, and I was going to leave Rome and settle at +Florence, intending to take with me twelve thousand francs I possessed, +my library, and the famous breviary, when, tired with my constant labor +at the same thing, and overcome by a heavy dinner I had eaten, my head +dropped on my hands, and I fell asleep about three o’clock in the +afternoon. + +0243m + + + +“I awoke as the clock was striking six. I raised my head; I was in +utter darkness. I rang for a light, but, as no one came, I determined +to find one for myself. It was indeed but anticipating the simple +manners which I should soon be under the necessity of adopting. I took +a wax-candle in one hand, and with the other groped about for a piece +of paper (my match-box being empty), with which I proposed to get a +light from the small flame still playing on the embers. Fearing, +however, to make use of any valuable piece of paper, I hesitated for a +moment, then recollected that I had seen in the famous breviary, which +was on the table beside me, an old paper quite yellow with age, and +which had served as a marker for centuries, kept there by the request +of the heirs. I felt for it, found it, twisted it up together, and +putting it into the expiring flame, set light to it. + +“But beneath my fingers, as if by magic, in proportion as the fire +ascended, I saw yellowish characters appear on the paper. I grasped it +in my hand, put out the flame as quickly as I could, lighted my taper +in the fire itself, and opened the crumpled paper with inexpressible +emotion, recognizing, when I had done so, that these characters had +been traced in mysterious and sympathetic ink, only appearing when +exposed to the fire; nearly one-third of the paper had been consumed by +the flame. It was that paper you read this morning; read it again, +Dantès, and then I will complete for you the incomplete words and +unconnected sense.” + +Faria, with an air of triumph, offered the paper to Dantès, who this +time read the following words, traced with an ink of a reddish color +resembling rust: + + “This 25th day of April, 1498, be... + + Alexander VI., and fearing that not... + + he may desire to become my heir, and re... + + and Bentivoglio, who were poisoned,... + + my sole heir, that I have bu... + + and has visited with me, that is, in... + + Island of Monte Cristo, all I poss... + + jewels, diamonds, gems; that I alone... + + may amount to nearly two mil... + + will find on raising the twentieth ro... + + creek to the east in a right line. Two open... + + in these caves; the treasure is in the furthest a... + + which treasure I bequeath and leave en... + + as my sole heir. + + “25th April, 1498. + + “Cæs... + + +“And now,” said the abbé, “read this other paper;” and he presented to +Dantès a second leaf with fragments of lines written on it, which +Edmond read as follows: + + “...ing invited to dine by his Holiness + + ...content with making me pay for my hat, + + ...serves for me the fate of Cardinals Caprara + + ...I declare to my nephew, Guido Spada + + ...ried in a place he knows + + ...the caves of the small + + ...essed of ingots, gold, money, + + ...know of the existence of this treasure, which + + ...lions of Roman crowns, and which he + + ...ck from the small + + ...ings have been made + + ...ngle in the second; + + ...tire to him + + ...ar † Spada.” + + +Faria followed him with an excited look. + +“And now,” he said, when he saw that Dantès had read the last line, +“put the two fragments together, and judge for yourself.” Dantès +obeyed, and the conjointed pieces gave the following: + +0245m + + + +“This 25th day of April, 1498, be...ing invited to dine by his Holiness +Alexander VI., and fearing that not...content with making me pay for my +hat, he may desire to become my heir, and re...serves for me the fate +of Cardinals Caprara and Bentivoglio, who were poisoned,...I declare to +my nephew, Guido Spada, my sole heir, that I have bu...ried in a place +he knows and has visited with me, that is, in...the caves of the small +Island of Monte Cristo, all I poss...essed of ingots, gold, money, +jewels, diamonds, gems; that I alone...know of the existence of this +treasure, which may amount to nearly two mil...lions of Roman crowns, +and which he will find on raising the twentieth ro...ck from the small +creek to the east in a right line. Two open...ings have been made in +these caves; the treasure is in the furthest a...ngle in the second; +which treasure I bequeath and leave en...tire to him as my sole heir. +“25th April, 1498. “Cæs...ar † Spada.” + +“Well, do you comprehend now?” inquired Faria. + +“It is the declaration of Cardinal Spada, and the will so long sought +for,” replied Edmond, still incredulous. + +“Yes; a thousand times, yes!” + +“And who completed it as it now is?” + +“I did. Aided by the remaining fragment, I guessed the rest; measuring +the length of the lines by those of the paper, and divining the hidden +meaning by means of what was in part revealed, as we are guided in a +cavern by the small ray of light above us.” + +“And what did you do when you arrived at this conclusion?” + +“I resolved to set out, and did set out at that very instant, carrying +with me the beginning of my great work, the unity of the Italian +kingdom; but for some time the imperial police (who at this period, +quite contrary to what Napoleon desired so soon as he had a son born to +him, wished for a partition of provinces) had their eyes on me; and my +hasty departure, the cause of which they were unable to guess, having +aroused their suspicions, I was arrested at the very moment I was +leaving Piombino. + +“Now,” continued Faria, addressing Dantès with an almost paternal +expression, “now, my dear fellow, you know as much as I do myself. If +we ever escape together, half this treasure is yours; if I die here, +and you escape alone, the whole belongs to you.” + +“But,” inquired Dantès hesitating, “has this treasure no more +legitimate possessor in the world than ourselves?” + +“No, no, be easy on that score; the family is extinct. The last Count +of Spada, moreover, made me his heir, bequeathing to me this symbolic +breviary, he bequeathed to me all it contained; no, no, make your mind +satisfied on that point. If we lay hands on this fortune, we may enjoy +it without remorse.” + +“And you say this treasure amounts to——” + +“Two millions of Roman crowns; nearly thirteen millions of our money.”2 + +“Impossible!” said Dantès, staggered at the enormous amount. + +“Impossible? and why?” asked the old man. “The Spada family was one of +the oldest and most powerful families of the fifteenth century; and in +those times, when other opportunities for investment were wanting, such +accumulations of gold and jewels were by no means rare; there are at +this day Roman families perishing of hunger, though possessed of nearly +a million in diamonds and jewels, handed down by entail, and which they +cannot touch.” + +Edmond thought he was in a dream—he wavered between incredulity and +joy. + +“I have only kept this secret so long from you,” continued Faria, “that +I might test your character, and then surprise you. Had we escaped +before my attack of catalepsy, I should have conducted you to Monte +Cristo; now,” he added, with a sigh, “it is you who will conduct me +thither. Well, Dantès, you do not thank me?” + +“This treasure belongs to you, my dear friend,” replied Dantès, “and to +you only. I have no right to it. I am no relation of yours.” + +“You are my son, Dantès,” exclaimed the old man. “You are the child of +my captivity. My profession condemns me to celibacy. God has sent you +to me to console, at one and the same time, the man who could not be a +father, and the prisoner who could not get free.” + +And Faria extended the arm of which alone the use remained to him to +the young man, who threw himself upon his neck and wept. + + + + Chapter 19. The Third Attack + +Now that this treasure, which had so long been the object of the abbé’s +meditations, could insure the future happiness of him whom Faria really +loved as a son, it had doubled its value in his eyes, and every day he +expatiated on the amount, explaining to Dantès all the good which, with +thirteen or fourteen millions of francs, a man could do in these days +to his friends; and then Dantès’ countenance became gloomy, for the +oath of vengeance he had taken recurred to his memory, and he reflected +how much ill, in these times, a man with thirteen or fourteen millions +could do to his enemies. + +The abbé did not know the Island of Monte Cristo; but Dantès knew it, +and had often passed it, situated twenty-five miles from Pianosa, +between Corsica and the Island of Elba, and had once touched there. +This island was, always had been, and still is, completely deserted. It +is a rock of almost conical form, which looks as though it had been +thrust up by volcanic force from the depth to the surface of the ocean. +Dantès drew a plan of the island for Faria, and Faria gave Dantès +advice as to the means he should employ to recover the treasure. But +Dantès was far from being as enthusiastic and confident as the old man. +It was past a question now that Faria was not a lunatic, and the way in +which he had achieved the discovery, which had given rise to the +suspicion of his madness, increased Edmond’s admiration of him; but at +the same time Dantès could not believe that the deposit, supposing it +had ever existed, still existed; and though he considered the treasure +as by no means chimerical, he yet believed it was no longer there. + +However, as if fate resolved on depriving the prisoners of their last +chance, and making them understand that they were condemned to +perpetual imprisonment, a new misfortune befell them; the gallery on +the sea side, which had long been in ruins, was rebuilt. They had +repaired it completely, and stopped up with vast masses of stone the +hole Dantès had partly filled in. But for this precaution, which, it +will be remembered, the abbé had made to Edmond, the misfortune would +have been still greater, for their attempt to escape would have been +detected, and they would undoubtedly have been separated. Thus a new, a +stronger, and more inexorable barrier was interposed to cut off the +realization of their hopes. + +“You see,” said the young man, with an air of sorrowful resignation, to +Faria, “that God deems it right to take from me any claim to merit for +what you call my devotion to you. I have promised to remain forever +with you, and now I could not break my promise if I would. The treasure +will be no more mine than yours, and neither of us will quit this +prison. But my real treasure is not that, my dear friend, which awaits +me beneath the sombre rocks of Monte Cristo, it is your presence, our +living together five or six hours a day, in spite of our jailers; it is +the rays of intelligence you have elicited from my brain, the languages +you have implanted in my memory, and which have taken root there with +all their philological ramifications. These different sciences that you +have made so easy to me by the depth of the knowledge you possess of +them, and the clearness of the principles to which you have reduced +them—this is my treasure, my beloved friend, and with this you have +made me rich and happy. Believe me, and take comfort, this is better +for me than tons of gold and cases of diamonds, even were they not as +problematical as the clouds we see in the morning floating over the +sea, which we take for _terra firma_, and which evaporate and vanish as +we draw near to them. To have you as long as possible near me, to hear +your eloquent speech,—which embellishes my mind, strengthens my soul, +and makes my whole frame capable of great and terrible things, if I +should ever be free,—so fills my whole existence, that the despair to +which I was just on the point of yielding when I knew you, has no +longer any hold over me; and this—this is my fortune—not chimerical, +but actual. I owe you my real good, my present happiness; and all the +sovereigns of the earth, even Cæsar Borgia himself, could not deprive +me of this.” + +Thus, if not actually happy, yet the days these two unfortunates passed +together went quickly. Faria, who for so long a time had kept silence +as to the treasure, now perpetually talked of it. As he had prophesied +would be the case, he remained paralyzed in the right arm and the left +leg, and had given up all hope of ever enjoying it himself. But he was +continually thinking over some means of escape for his young companion, +and anticipating the pleasure he would enjoy. For fear the letter might +be some day lost or stolen, he compelled Dantès to learn it by heart; +and Dantès knew it from the first to the last word. Then he destroyed +the second portion, assured that if the first were seized, no one would +be able to discover its real meaning. Whole hours sometimes passed +while Faria was giving instructions to Dantès,—instructions which were +to serve him when he was at liberty. Then, once free, from the day and +hour and moment when he was so, he could have but one only thought, +which was, to gain Monte Cristo by some means, and remain there alone +under some pretext which would arouse no suspicions; and once there, to +endeavor to find the wonderful caverns, and search in the appointed +spot,—the appointed spot, be it remembered, being the farthest angle in +the second opening. + +In the meanwhile the hours passed, if not rapidly, at least tolerably. +Faria, as we have said, without having recovered the use of his hand +and foot, had regained all the clearness of his understanding, and had +gradually, besides the moral instructions we have detailed, taught his +youthful companion the patient and sublime duty of a prisoner, who +learns to make something from nothing. They were thus perpetually +employed,—Faria, that he might not see himself grow old; Dantès, for +fear of recalling the almost extinct past which now only floated in his +memory like a distant light wandering in the night. So life went on for +them as it does for those who are not victims of misfortune and whose +activities glide along mechanically and tranquilly beneath the eye of +Providence. + +But beneath this superficial calm there were in the heart of the young +man, and perhaps in that of the old man, many repressed desires, many +stifled sighs, which found vent when Faria was left alone, and when +Edmond returned to his cell. + +One night Edmond awoke suddenly, believing that he heard someone +calling him. He opened his eyes upon utter darkness. His name, or +rather a plaintive voice which essayed to pronounce his name, reached +him. He sat up in bed and a cold sweat broke out upon his brow. +Undoubtedly the call came from Faria’s dungeon. + +“Alas,” murmured Edmond; “can it be?” + +He moved his bed, drew up the stone, rushed into the passage, and +reached the opposite extremity; the secret entrance was open. By the +light of the wretched and wavering lamp, of which we have spoken, +Dantès saw the old man, pale, but yet erect, clinging to the bedstead. +His features were writhing with those horrible symptoms which he +already knew, and which had so seriously alarmed him when he saw them +for the first time. + +“Alas, my dear friend,” said Faria in a resigned tone, “you understand, +do you not, and I need not attempt to explain to you?” + +Edmond uttered a cry of agony, and, quite out of his senses, rushed +towards the door, exclaiming, “Help, help!” + +Faria had just sufficient strength to restrain him. + +“Silence,” he said, “or you are lost. We must now only think of you, my +dear friend, and so act as to render your captivity supportable or your +flight possible. It would require years to do again what I have done +here, and the results would be instantly destroyed if our jailers knew +we had communicated with each other. Besides, be assured, my dear +Edmond, the dungeon I am about to leave will not long remain empty; +some other unfortunate being will soon take my place, and to him you +will appear like an angel of salvation. Perhaps he will be young, +strong, and enduring, like yourself, and will aid you in your escape, +while I have been but a hindrance. You will no longer have half a dead +body tied to you as a drag to all your movements. At length Providence +has done something for you; he restores to you more than he takes away, +and it was time I should die.” + +Edmond could only clasp his hands and exclaim, “Oh, my friend, my +friend, speak not thus!” and then resuming all his presence of mind, +which had for a moment staggered under this blow, and his strength, +which had failed at the words of the old man, he said, “Oh, I have +saved you once, and I will save you a second time!” And raising the +foot of the bed, he drew out the phial, still a third filled with the +red liquor. + +“See,” he exclaimed, “there remains still some of the magic draught. +Quick, quick! tell me what I must do this time; are there any fresh +instructions? Speak, my friend; I listen.” + +“There is not a hope,” replied Faria, shaking his head, “but no matter; +God wills it that man whom he has created, and in whose heart he has so +profoundly rooted the love of life, should do all in his power to +preserve that existence, which, however painful it may be, is yet +always so dear.” + +“Oh, yes, yes!” exclaimed Dantès; “and I tell you that I will save you +yet.” + +“Well, then, try. The cold gains upon me. I feel the blood flowing +towards my brain. These horrible chills, which make my teeth chatter +and seem to dislocate my bones, begin to pervade my whole frame; in +five minutes the malady will reach its height, and in a quarter of an +hour there will be nothing left of me but a corpse.” + +“Oh!” exclaimed Dantès, his heart wrung with anguish. + +“Do as you did before, only do not wait so long, all the springs of +life are now exhausted in me, and death,” he continued, looking at his +paralyzed arm and leg, “has but half its work to do. If, after having +made me swallow twelve drops instead of ten, you see that I do not +recover, then pour the rest down my throat. Now lift me on my bed, for +I can no longer support myself.” + +Edmond took the old man in his arms, and laid him on the bed. + +“And now, my dear friend,” said Faria, “sole consolation of my wretched +existence,—you whom Heaven gave me somewhat late, but still gave me, a +priceless gift, and for which I am most grateful,—at the moment of +separating from you forever, I wish you all the happiness and all the +prosperity you so well deserve. My son, I bless thee!” + +The young man cast himself on his knees, leaning his head against the +old man’s bed. + +“Listen, now, to what I say in this my dying moment. The treasure of +the Spadas exists. God grants me the boon of vision unrestricted by +time or space. I see it in the depths of the inner cavern. My eyes +pierce the inmost recesses of the earth, and are dazzled at the sight +of so much riches. If you do escape, remember that the poor abbé, whom +all the world called mad, was not so. Hasten to Monte Cristo—avail +yourself of the fortune—for you have indeed suffered long enough.” + +A violent convulsion attacked the old man. Dantès raised his head and +saw Faria’s eyes injected with blood. It seemed as if a flow of blood +had ascended from the chest to the head. + +“Adieu, adieu!” murmured the old man, clasping Edmond’s hand +convulsively—“adieu!” + +“Oh, no,—no, not yet,” he cried; “do not forsake me! Oh, succor him! +Help—help—help!” + +“Hush! hush!” murmured the dying man, “that they may not separate us if +you save me!” + +“You are right. Oh, yes, yes; be assured I shall save you! Besides, +although you suffer much, you do not seem to be in such agony as you +were before.” + +“Do not mistake! I suffer less because there is in me less strength to +endure. At your age we have faith in life; it is the privilege of youth +to believe and hope, but old men see death more clearly. Oh, ’tis +here—’tis here—’tis over—my sight is gone—my senses fail! Your hand, +Dantès! Adieu! adieu!” + +And raising himself by a final effort, in which he summoned all his +faculties, he said,—“Monte Cristo, forget not Monte Cristo!” And he +fell back on the bed. + +The crisis was terrible, and a rigid form with twisted limbs, swollen +eyelids, and lips flecked with bloody foam, lay on the bed of torture, +in place of the intellectual being who so lately rested there. + +Dantès took the lamp, placed it on a projecting stone above the bed, +whence its tremulous light fell with strange and fantastic ray on the +distorted countenance and motionless, stiffened body. With steady gaze +he awaited confidently the moment for administering the restorative. + +When he believed that the right moment had arrived, he took the knife, +pried open the teeth, which offered less resistance than before, +counted one after the other twelve drops, and watched; the phial +contained, perhaps, twice as much more. He waited ten minutes, a +quarter of an hour, half an hour,—no change took place. Trembling, his +hair erect, his brow bathed with perspiration, he counted the seconds +by the beating of his heart. Then he thought it was time to make the +last trial, and he put the phial to the purple lips of Faria, and +without having occasion to force open his jaws, which had remained +extended, he poured the whole of the liquid down his throat. + +0255m + + + +The draught produced a galvanic effect, a violent trembling pervaded +the old man’s limbs, his eyes opened until it was fearful to gaze upon +them, he heaved a sigh which resembled a shriek, and then his convulsed +body returned gradually to its former immobility, the eyes remaining +open. + +Half an hour, an hour, an hour and a half elapsed, and during this +period of anguish, Edmond leaned over his friend, his hand applied to +his heart, and felt the body gradually grow cold, and the heart’s +pulsation become more and more deep and dull, until at length it +stopped; the last movement of the heart ceased, the face became livid, +the eyes remained open, but the eyeballs were glazed. + +It was six o’clock in the morning, the dawn was just breaking, and its +feeble ray came into the dungeon, and paled the ineffectual light of +the lamp. Strange shadows passed over the countenance of the dead man, +and at times gave it the appearance of life. While the struggle between +day and night lasted, Dantès still doubted; but as soon as the daylight +gained the pre-eminence, he saw that he was alone with a corpse. Then +an invincible and extreme terror seized upon him, and he dared not +again press the hand that hung out of bed, he dared no longer to gaze +on those fixed and vacant eyes, which he tried many times to close, but +in vain—they opened again as soon as shut. He extinguished the lamp, +carefully concealed it, and then went away, closing as well as he could +the entrance to the secret passage by the large stone as he descended. + +It was time, for the jailer was coming. On this occasion he began his +rounds at Dantès’ cell, and on leaving him he went on to Faria’s +dungeon, taking thither breakfast and some linen. Nothing betokened +that the man knew anything of what had occurred. He went on his way. + +Dantès was then seized with an indescribable desire to know what was +going on in the dungeon of his unfortunate friend. He therefore +returned by the subterraneous gallery, and arrived in time to hear the +exclamations of the turnkey, who called out for help. Other turnkeys +came, and then was heard the regular tramp of soldiers. Last of all +came the governor. + +Edmond heard the creaking of the bed as they moved the corpse, heard +the voice of the governor, who asked them to throw water on the dead +man’s face; and seeing that, in spite of this application, the prisoner +did not recover, they sent for the doctor. The governor then went out, +and words of pity fell on Dantès’ listening ears, mingled with brutal +laughter. + +“Well, well,” said one, “the madman has gone to look after his +treasure. Good journey to him!” + +“With all his millions, he will not have enough to pay for his shroud!” +said another. + +“Oh,” added a third voice, “the shrouds of the Château d’If are not +dear!” + +0257m + + + +“Perhaps,” said one of the previous speakers, “as he was a churchman, +they may go to some expense in his behalf.” + +“They may give him the honors of the sack.” + +Edmond did not lose a word, but comprehended very little of what was +said. The voices soon ceased, and it seemed to him as if everyone had +left the cell. Still he dared not to enter, as they might have left +some turnkey to watch the dead. He remained, therefore, mute and +motionless, hardly venturing to breathe. At the end of an hour, he +heard a faint noise, which increased. It was the governor who returned, +followed by the doctor and other attendants. There was a moment’s +silence,—it was evident that the doctor was examining the dead body. +The inquiries soon commenced. + +The doctor analyzed the symptoms of the malady to which the prisoner +had succumbed, and declared that he was dead. Questions and answers +followed in a nonchalant manner that made Dantès indignant, for he felt +that all the world should have for the poor abbé a love and respect +equal to his own. + +“I am very sorry for what you tell me,” said the governor, replying to +the assurance of the doctor, “that the old man is really dead; for he +was a quiet, inoffensive prisoner, happy in his folly, and required no +watching.” + +“Ah,” added the turnkey, “there was no occasion for watching him; he +would have stayed here fifty years, I’ll answer for it, without any +attempt to escape.” + +“Still,” said the governor, “I believe it will be requisite, +notwithstanding your certainty, and not that I doubt your science, but +in discharge of my official duty, that we should be perfectly assured +that the prisoner is dead.” + +There was a moment of complete silence, during which Dantès, still +listening, knew that the doctor was examining the corpse a second time. + +“You may make your mind easy,” said the doctor; “he is dead. I will +answer for that.” + +“You know, sir,” said the governor, persisting, “that we are not +content in such cases as this with such a simple examination. In spite +of all appearances, be so kind, therefore, as to finish your duty by +fulfilling the formalities described by law.” + +“Let the irons be heated,” said the doctor; “but really it is a useless +precaution.” + +This order to heat the irons made Dantès shudder. He heard hasty steps, +the creaking of a door, people going and coming, and some minutes +afterwards a turnkey entered, saying: + +“Here is the brazier, lighted.” + +There was a moment’s silence, and then was heard the crackling of +burning flesh, of which the peculiar and nauseous smell penetrated even +behind the wall where Dantès was listening in horror. The perspiration +poured forth upon the young man’s brow, and he felt as if he should +faint. + +“You see, sir, he is really dead,” said the doctor; “this burn in the +heel is decisive. The poor fool is cured of his folly, and delivered +from his captivity.” + +“Wasn’t his name Faria?” inquired one of the officers who accompanied +the governor. + +0259m + + + +“Yes, sir; and, as he said, it was an ancient name. He was, too, very +learned, and rational enough on all points which did not relate to his +treasure; but on that, indeed, he was intractable.” + +“It is the sort of malady which we call monomania,” said the doctor. + +“You had never anything to complain of?” said the governor to the +jailer who had charge of the abbé. + +“Never, sir,” replied the jailer, “never; on the contrary, he sometimes +amused me very much by telling me stories. One day, too, when my wife +was ill, he gave me a prescription which cured her.” + +“Ah, ah!” said the doctor, “I did not know that I had a rival; but I +hope, governor, that you will show him all proper respect in +consequence.” + +“Yes, yes, make your mind easy, he shall be decently interred in the +newest sack we can find. Will that satisfy you?” + +“Must this last formality take place in your presence, sir?” inquired a +turnkey. + +“Certainly. But make haste—I cannot stay here all day.” Other +footsteps, going and coming, were now heard, and a moment afterwards +the noise of rustling canvas reached Dantès’ ears, the bed creaked, and +the heavy footfall of a man who lifts a weight sounded on the floor; +then the bed again creaked under the weight deposited upon it. + +“This evening,” said the governor. + +“Will there be any mass?” asked one of the attendants. + +“That is impossible,” replied the governor. “The chaplain of the +château came to me yesterday to beg for leave of absence, in order to +take a trip to Hyères for a week. I told him I would attend to the +prisoners in his absence. If the poor abbé had not been in such a +hurry, he might have had his requiem.” + +“Pooh, pooh;” said the doctor, with the impiety usual in persons of his +profession; “he is a churchman. God will respect his profession, and +not give the devil the wicked delight of sending him a priest.” A shout +of laughter followed this brutal jest. Meanwhile the operation of +putting the body in the sack was going on. + +“This evening,” said the governor, when the task was ended. + +“At what hour?” inquired a turnkey. + +“Why, about ten or eleven o’clock.” + +“Shall we watch by the corpse?” + +“Of what use would it be? Shut the dungeon as if he were alive—that is +all.” + +Then the steps retreated, and the voices died away in the distance; the +noise of the door, with its creaking hinges and bolts ceased, and a +silence more sombre than that of solitude ensued,—the silence of death, +which was all-pervasive, and struck its icy chill to the very soul of +Dantès. + +Then he raised the flag-stone cautiously with his head, and looked +carefully around the chamber. It was empty, and Dantès emerged from the +tunnel. + + + + Chapter 20. The Cemetery of the Château d’If + +On the bed, at full length, and faintly illuminated by the pale light +that came from the window, lay a sack of canvas, and under its rude +folds was stretched a long and stiffened form; it was Faria’s last +winding-sheet,—a winding-sheet which, as the turnkey said, cost so +little. Everything was in readiness. A barrier had been placed between +Dantès and his old friend. No longer could Edmond look into those +wide-open eyes which had seemed to be penetrating the mysteries of +death; no longer could he clasp the hand which had done so much to make +his existence blessed. Faria, the beneficent and cheerful companion, +with whom he was accustomed to live so intimately, no longer breathed. +He seated himself on the edge of that terrible bed, and fell into +melancholy and gloomy reverie. + +Alone! he was alone again! again condemned to silence—again face to +face with nothingness! Alone!—never again to see the face, never again +to hear the voice of the only human being who united him to earth! Was +not Faria’s fate the better, after all—to solve the problem of life at +its source, even at the risk of horrible suffering? + +The idea of suicide, which his friend had driven away and kept away by +his cheerful presence, now hovered like a phantom over the abbé’s dead +body. + +“If I could die,” he said, “I should go where he goes, and should +assuredly find him again. But how to die? It is very easy,” he went on +with a smile; “I will remain here, rush on the first person that opens +the door, strangle him, and then they will guillotine me.” + +But excessive grief is like a storm at sea, where the frail bark is +tossed from the depths to the top of the wave. Dantès recoiled from the +idea of so infamous a death, and passed suddenly from despair to an +ardent desire for life and liberty. + +“Die? oh, no,” he exclaimed—“not die now, after having lived and +suffered so long and so much! Die? yes, had I died years ago; but now +to die would be, indeed, to give way to the sarcasm of destiny. No, I +want to live; I shall struggle to the very last; I will yet win back +the happiness of which I have been deprived. Before I die I must not +forget that I have my executioners to punish, and perhaps, too, who +knows, some friends to reward. Yet they will forget me here, and I +shall die in my dungeon like Faria.” + +As he said this, he became silent and gazed straight before him like +one overwhelmed with a strange and amazing thought. Suddenly he arose, +lifted his hand to his brow as if his brain were giddy, paced twice or +thrice round the dungeon, and then paused abruptly by the bed. + +“Just God!” he muttered, “whence comes this thought? Is it from thee? +Since none but the dead pass freely from this dungeon, let me take the +place of the dead!” + +Without giving himself time to reconsider his decision, and, indeed, +that he might not allow his thoughts to be distracted from his +desperate resolution, he bent over the appalling shroud, opened it with +the knife which Faria had made, drew the corpse from the sack, and bore +it along the tunnel to his own chamber, laid it on his couch, tied +around its head the rag he wore at night around his own, covered it +with his counterpane, once again kissed the ice-cold brow, and tried +vainly to close the resisting eyes, which glared horribly, turned the +head towards the wall, so that the jailer might, when he brought the +evening meal, believe that he was asleep, as was his frequent custom; +entered the tunnel again, drew the bed against the wall, returned to +the other cell, took from the hiding-place the needle and thread, flung +off his rags, that they might feel only naked flesh beneath the coarse +canvas, and getting inside the sack, placed himself in the posture in +which the dead body had been laid, and sewed up the mouth of the sack +from the inside. + +He would have been discovered by the beating of his heart, if by any +mischance the jailers had entered at that moment. Dantès might have +waited until the evening visit was over, but he was afraid that the +governor would change his mind, and order the dead body to be removed +earlier. In that case his last hope would have been destroyed. + +Now his plans were fully made, and this is what he intended to do. If +while he was being carried out the grave-diggers should discover that +they were bearing a live instead of a dead body, Dantès did not intend +to give them time to recognize him, but with a sudden cut of the knife, +he meant to open the sack from top to bottom, and, profiting by their +alarm, escape; if they tried to catch him, he would use his knife to +better purpose. + +0263m + + + +If they took him to the cemetery and laid him in a grave, he would +allow himself to be covered with earth, and then, as it was night, the +grave-diggers could scarcely have turned their backs before he would +have worked his way through the yielding soil and escaped. He hoped +that the weight of earth would not be so great that he could not +overcome it. If he was detected in this and the earth proved too heavy, +he would be stifled, and then—so much the better, all would be over. + +Dantès had not eaten since the preceding evening, but he had not +thought of hunger, nor did he think of it now. His situation was too +precarious to allow him even time to reflect on any thought but one. + +The first risk that Dantès ran was, that the jailer, when he brought +him his supper at seven o’clock, might perceive the change that had +been made; fortunately, twenty times at least, from misanthropy or +fatigue, Dantès had received his jailer in bed, and then the man placed +his bread and soup on the table, and went away without saying a word. +This time the jailer might not be as silent as usual, but speak to +Dantès, and seeing that he received no reply, go to the bed, and thus +discover all. + +When seven o’clock came, Dantès’ agony really began. His hand placed +upon his heart was unable to redress its throbbings, while, with the +other he wiped the perspiration from his temples. From time to time +chills ran through his whole body, and clutched his heart in a grasp of +ice. Then he thought he was going to die. Yet the hours passed on +without any unusual disturbance, and Dantès knew that he had escaped +the first peril. It was a good augury. + +At length, about the hour the governor had appointed, footsteps were +heard on the stairs. Edmond felt that the moment had arrived, summoned +up all his courage, held his breath, and would have been happy if at +the same time he could have repressed the throbbing of his veins. The +footsteps—they were double—paused at the door—and Dantès guessed that +the two grave-diggers had come to seek him—this idea was soon converted +into certainty, when he heard the noise they made in putting down the +hand-bier. + +The door opened, and a dim light reached Dantès’ eyes through the +coarse sack that covered him; he saw two shadows approach his bed, a +third remaining at the door with a torch in its hand. The two men, +approaching the ends of the bed, took the sack by its extremities. + +“He’s heavy, though, for an old and thin man,” said one, as he raised +the head. + +“They say every year adds half a pound to the weight of the bones,” +said another, lifting the feet. + +“Have you tied the knot?” inquired the first speaker. + +“What would be the use of carrying so much more weight?” was the reply, +“I can do that when we get there.” + +“Yes, you’re right,” replied the companion. + +“What’s the knot for?” thought Dantès. + +They deposited the supposed corpse on the bier. Edmond stiffened +himself in order to play the part of a dead man, and then the party, +lighted by the man with the torch, who went first, ascended the stairs. +Suddenly he felt the fresh and sharp night air, and Dantès knew that +the mistral was blowing. It was a sensation in which pleasure and pain +were strangely mingled. + +The bearers went on for twenty paces, then stopped, putting the bier +down on the ground. One of them went away, and Dantès heard his shoes +striking on the pavement. + +“Where am I?” he asked himself. + +“Really, he is by no means a light load!” said the other bearer, +sitting on the edge of the hand-barrow. + +Dantès’ first impulse was to escape, but fortunately he did not attempt +it. + +“Give us a light,” said the other bearer, “or I shall never find what I +am looking for.” + +The man with the torch complied, although not asked in the most polite +terms. + +“What can he be looking for?” thought Edmond. “The spade, perhaps.” + +An exclamation of satisfaction indicated that the grave-digger had +found the object of his search. “Here it is at last,” he said, “not +without some trouble, though.” + +“Yes,” was the answer, “but it has lost nothing by waiting.” + +As he said this, the man came towards Edmond, who heard a heavy +metallic substance laid down beside him, and at the same moment a cord +was fastened round his feet with sudden and painful violence. + +“Well, have you tied the knot?” inquired the grave-digger, who was +looking on. + +“Yes, and pretty tight too, I can tell you,” was the answer. + +“Move on, then.” And the bier was lifted once more, and they proceeded. + +They advanced fifty paces farther, and then stopped to open a door, +then went forward again. The noise of the waves dashing against the +rocks on which the château is built, reached Dantès’ ear distinctly as +they went forward. + +“Bad weather!” observed one of the bearers; “not a pleasant night for a +dip in the sea.” + +“Why, yes, the abbé runs a chance of being wet,” said the other; and +then there was a burst of brutal laughter. + +Dantès did not comprehend the jest, but his hair stood erect on his +head. + +“Well, here we are at last,” said one of them. + +“A little farther—a little farther,” said the other. “You know very +well that the last was stopped on his way, dashed on the rocks, and the +governor told us next day that we were careless fellows.” + +They ascended five or six more steps, and then Dantès felt that they +took him, one by the head and the other by the heels, and swung him to +and fro. + +“One!” said the grave-diggers, “two! three!” + +And at the same instant Dantès felt himself flung into the air like a +wounded bird, falling, falling, with a rapidity that made his blood +curdle. Although drawn downwards by the heavy weight which hastened his +rapid descent, it seemed to him as if the fall lasted for a century. At +last, with a horrible splash, he darted like an arrow into the ice-cold +water, and as he did so he uttered a shrill cry, stifled in a moment by +his immersion beneath the waves. + +Dantès had been flung into the sea, and was dragged into its depths by +a thirty-six-pound shot tied to his feet. + +The sea is the cemetery of the Château d’If. + +0267m + + + + + Chapter 21. The Island of Tiboulen + +Dantès, although stunned and almost suffocated, had sufficient presence +of mind to hold his breath, and as his right hand (prepared as he was +for every chance) held his knife open, he rapidly ripped up the sack, +extricated his arm, and then his body; but in spite of all his efforts +to free himself from the shot, he felt it dragging him down still +lower. He then bent his body, and by a desperate effort severed the +cord that bound his legs, at the moment when it seemed as if he were +actually strangled. With a mighty leap he rose to the surface of the +sea, while the shot dragged down to the depths the sack that had so +nearly become his shroud. + +Dantès waited only to get breath, and then dived, in order to avoid +being seen. When he arose a second time, he was fifty paces from where +he had first sunk. He saw overhead a black and tempestuous sky, across +which the wind was driving clouds that occasionally suffered a +twinkling star to appear; before him was the vast expanse of waters, +sombre and terrible, whose waves foamed and roared as if before the +approach of a storm. Behind him, blacker than the sea, blacker than the +sky, rose phantom-like the vast stone structure, whose projecting crags +seemed like arms extended to seize their prey, and on the highest rock +was a torch lighting two figures. + +He fancied that these two forms were looking at the sea; doubtless +these strange grave-diggers had heard his cry. Dantès dived again, and +remained a long time beneath the water. This was an easy feat to him, +for he usually attracted a crowd of spectators in the bay before the +lighthouse at Marseilles when he swam there, and was unanimously +declared to be the best swimmer in the port. When he came up again the +light had disappeared. + +He must now get his bearings. Ratonneau and Pomègue are the nearest +islands of all those that surround the Château d’If, but Ratonneau and +Pomègue are inhabited, as is also the islet of Daume. Tiboulen and +Lemaire were therefore the safest for Dantès’ venture. The islands of +Tiboulen and Lemaire are a league from the Château d’If; Dantès, +nevertheless, determined to make for them. But how could he find his +way in the darkness of the night? + +At this moment he saw the light of Planier, gleaming in front of him +like a star. By leaving this light on the right, he kept the Island of +Tiboulen a little on the left; by turning to the left, therefore, he +would find it. But, as we have said, it was at least a league from the +Château d’If to this island. Often in prison Faria had said to him, +when he saw him idle and inactive: + +“Dantès, you must not give way to this listlessness; you will be +drowned if you seek to escape, and your strength has not been properly +exercised and prepared for exertion.” + +These words rang in Dantès’ ears, even beneath the waves; he hastened +to cleave his way through them to see if he had not lost his strength. +He found with pleasure that his captivity had taken away nothing of his +power, and that he was still master of that element on whose bosom he +had so often sported as a boy. + +Fear, that relentless pursuer, clogged Dantès’ efforts. He listened for +any sound that might be audible, and every time that he rose to the top +of a wave he scanned the horizon, and strove to penetrate the darkness. +He fancied that every wave behind him was a pursuing boat, and he +redoubled his exertions, increasing rapidly his distance from the +château, but exhausting his strength. He swam on still, and already the +terrible château had disappeared in the darkness. He could not see it, +but he _felt_ its presence. + +An hour passed, during which Dantès, excited by the feeling of freedom, +continued to cleave the waves. + +“Let us see,” said he, “I have swum above an hour, but as the wind is +against me, that has retarded my speed; however, if I am not mistaken, +I must be close to Tiboulen. But what if I were mistaken?” + +A shudder passed over him. He sought to tread water, in order to rest +himself; but the sea was too violent, and he felt that he could not +make use of this means of recuperation. + +“Well,” said he, “I will swim on until I am worn out, or the cramp +seizes me, and then I shall sink;” and he struck out with the energy of +despair. + +Suddenly the sky seemed to him to become still darker and more dense, +and heavy clouds seemed to sweep down towards him; at the same time he +felt a sharp pain in his knee. He fancied for a moment that he had been +shot, and listened for the report; but he heard nothing. Then he put +out his hand, and encountered an obstacle and with another stroke knew +that he had gained the shore. + +Before him rose a grotesque mass of rocks, that resembled nothing so +much as a vast fire petrified at the moment of its most fervent +combustion. It was the Island of Tiboulen. Dantès rose, advanced a few +steps, and, with a fervent prayer of gratitude, stretched himself on +the granite, which seemed to him softer than down. Then, in spite of +the wind and rain, he fell into the deep, sweet sleep of utter +exhaustion. At the expiration of an hour Edmond was awakened by the +roar of thunder. The tempest was let loose and beating the atmosphere +with its mighty wings; from time to time a flash of lightning stretched +across the heavens like a fiery serpent, lighting up the clouds that +rolled on in vast chaotic waves. + +Dantès had not been deceived—he had reached the first of the two +islands, which was, in fact, Tiboulen. He knew that it was barren and +without shelter; but when the sea became more calm, he resolved to +plunge into its waves again, and swim to Lemaire, equally arid, but +larger, and consequently better adapted for concealment. + +An overhanging rock offered him a temporary shelter, and scarcely had +he availed himself of it when the tempest burst forth in all its fury. +Edmond felt the trembling of the rock beneath which he lay; the waves, +dashing themselves against it, wetted him with their spray. He was +safely sheltered, and yet he felt dizzy in the midst of the warring of +the elements and the dazzling brightness of the lightning. It seemed to +him that the island trembled to its base, and that it would, like a +vessel at anchor, break moorings, and bear him off into the centre of +the storm. + +He then recollected that he had not eaten or drunk for four-and-twenty +hours. He extended his hands, and drank greedily of the rainwater that +had lodged in a hollow of the rock. + +As he rose, a flash of lightning, that seemed to rive the remotest +heights of heaven, illumined the darkness. By its light, between the +Island of Lemaire and Cape Croiselle, a quarter of a league distant, +Dantès saw a fishing-boat driven rapidly like a spectre before the +power of winds and waves. A second after, he saw it again, approaching +with frightful rapidity. Dantès cried at the top of his voice to warn +them of their danger, but they saw it themselves. Another flash showed +him four men clinging to the shattered mast and the rigging, while a +fifth clung to the broken rudder. The men he beheld saw him +undoubtedly, for their cries were carried to his ears by the wind. +Above the splintered mast a sail rent to tatters was waving; suddenly +the ropes that still held it gave way, and it disappeared in the +darkness of the night like a vast sea-bird. + +At the same moment a violent crash was heard, and cries of distress. +Dantès from his rocky perch saw the shattered vessel, and among the +fragments the floating forms of the hapless sailors. Then all was dark +again. + +Dantès ran down the rocks at the risk of being himself dashed to +pieces; he listened, he groped about, but he heard and saw nothing—the +cries had ceased, and the tempest continued to rage. By degrees the +wind abated, vast gray clouds rolled towards the west, and the blue +firmament appeared studded with bright stars. Soon a red streak became +visible in the horizon, the waves whitened, a light played over them, +and gilded their foaming crests with gold. It was day. + +Dantès stood mute and motionless before this majestic spectacle, as if +he now beheld it for the first time; and indeed since his captivity in +the Château d’If he had forgotten that such scenes were ever to be +witnessed. He turned towards the fortress, and looked at both sea and +land. The gloomy building rose from the bosom of the ocean with +imposing majesty and seemed to dominate the scene. It was about five +o’clock. The sea continued to get calmer. + +“In two or three hours,” thought Dantès, “the turnkey will enter my +chamber, find the body of my poor friend, recognize it, seek for me in +vain, and give the alarm. Then the tunnel will be discovered; the men +who cast me into the sea and who must have heard the cry I uttered, +will be questioned. Then boats filled with armed soldiers will pursue +the wretched fugitive. The cannon will warn everyone to refuse shelter +to a man wandering about naked and famished. The police of Marseilles +will be on the alert by land, whilst the governor pursues me by sea. I +am cold, I am hungry. I have lost even the knife that saved me. Oh, my +God, I have suffered enough surely! Have pity on me, and do for me what +I am unable to do for myself.” + +As Dantès (his eyes turned in the direction of the Château d’If) +uttered this prayer, he saw off the farther point of the Island of +Pomègue a small vessel with lateen sail skimming the sea like a gull in +search of prey; and with his sailor’s eye he knew it to be a Genoese +tartan. She was coming out of Marseilles harbor, and was standing out +to sea rapidly, her sharp prow cleaving through the waves. + +“Oh,” cried Edmond, “to think that in half an hour I could join her, +did I not fear being questioned, detected, and conveyed back to +Marseilles! What can I do? What story can I invent? under pretext of +trading along the coast, these men, who are in reality smugglers, will +prefer selling me to doing a good action. I must wait. But I cannot—I +am starving. In a few hours my strength will be utterly exhausted; +besides, perhaps I have not been missed at the fortress. I can pass as +one of the sailors wrecked last night. My story will be accepted, for +there is no one left to contradict me.” + +As he spoke, Dantès looked toward the spot where the fishing-vessel had +been wrecked, and started. The red cap of one of the sailors hung to a +point of the rock and some timbers that had formed part of the vessel’s +keel, floated at the foot of the crag. In an instant Dantès’ plan was +formed. He swam to the cap, placed it on his head, seized one of the +timbers, and struck out so as to cut across the course the vessel was +taking. + +“I am saved!” murmured he. And this conviction restored his strength. + +He soon saw that the vessel, with the wind dead ahead, was tacking +between the Château d’If and the tower of Planier. For an instant he +feared lest, instead of keeping in shore, she should stand out to sea; +but he soon saw that she would pass, like most vessels bound for Italy, +between the islands of Jaros and Calaseraigne. + +However, the vessel and the swimmer insensibly neared one another, and +in one of its tacks the tartan bore down within a quarter of a mile of +him. He rose on the waves, making signs of distress; but no one on +board saw him, and the vessel stood on another tack. Dantès would have +shouted, but he knew that the wind would drown his voice. + +It was then he rejoiced at his precaution in taking the timber, for +without it he would have been unable, perhaps, to reach the +vessel—certainly to return to shore, should he be unsuccessful in +attracting attention. + +Dantès, though almost sure as to what course the vessel would take, had +yet watched it anxiously until it tacked and stood towards him. Then he +advanced; but before they could meet, the vessel again changed her +course. By a violent effort he rose half out of the water, waving his +cap, and uttering a loud shout peculiar to sailors. This time he was +both seen and heard, and the tartan instantly steered towards him. At +the same time, he saw they were about to lower the boat. + +An instant after, the boat, rowed by two men, advanced rapidly towards +him. Dantès let go of the timber, which he now thought to be useless, +and swam vigorously to meet them. But he had reckoned too much upon his +strength, and then he realized how serviceable the timber had been to +him. His arms became stiff, his legs lost their flexibility, and he was +almost breathless. + +He shouted again. The two sailors redoubled their efforts, and one of +them cried in Italian, “Courage!” + +The word reached his ear as a wave which he no longer had the strength +to surmount passed over his head. He rose again to the surface, +struggled with the last desperate effort of a drowning man, uttered a +third cry, and felt himself sinking, as if the fatal cannon shot were +again tied to his feet. The water passed over his head, and the sky +turned gray. A convulsive movement again brought him to the surface. He +felt himself seized by the hair, then he saw and heard nothing. He had +fainted. + +When he opened his eyes Dantès found himself on the deck of the tartan. +His first care was to see what course they were taking. They were +rapidly leaving the Château d’If behind. Dantès was so exhausted that +the exclamation of joy he uttered was mistaken for a sigh. + +As we have said, he was lying on the deck. A sailor was rubbing his +limbs with a woollen cloth; another, whom he recognized as the one who +had cried out “Courage!” held a gourd full of rum to his mouth; while +the third, an old sailor, at once the pilot and captain, looked on with +that egotistical pity men feel for a misfortune that they have escaped +yesterday, and which may overtake them tomorrow. + +A few drops of the rum restored suspended animation, while the friction +of his limbs restored their elasticity. + +“Who are you?” said the pilot in bad French. + +“I am,” replied Dantès, in bad Italian, “a Maltese sailor. We were +coming from Syracuse laden with grain. The storm of last night overtook +us at Cape Morgiou, and we were wrecked on these rocks.” + +“Where do you come from?” + +“From these rocks that I had the good luck to cling to while our +captain and the rest of the crew were all lost. I saw your vessel, and +fearful of being left to perish on the desolate island, I swam off on a +piece of wreckage to try and intercept your course. You have saved my +life, and I thank you,” continued Dantès. “I was lost when one of your +sailors caught hold of my hair.” + +“It was I,” said a sailor of a frank and manly appearance; “and it was +time, for you were sinking.” + +“Yes,” returned Dantès, holding out his hand, “I thank you again.” + +“I almost hesitated, though,” replied the sailor; “you looked more like +a brigand than an honest man, with your beard six inches, and your hair +a foot long.” + +Dantès recollected that his hair and beard had not been cut all the +time he was at the Château d’If. + +“Yes,” said he, “I made a vow, to our Lady of the Grotto not to cut my +hair or beard for ten years if I were saved in a moment of danger; but +today the vow expires.” + +“Now what are we to do with you?” said the captain. + +“Alas, anything you please. My captain is dead; I have barely escaped; +but I am a good sailor. Leave me at the first port you make; I shall be +sure to find employment.” + +“Do you know the Mediterranean?” + +“I have sailed over it since my childhood.” + +“You know the best harbors?” + +“There are few ports that I could not enter or leave with a bandage +over my eyes.” + +“I say, captain,” said the sailor who had cried “Courage!” to Dantès, +“if what he says is true, what hinders his staying with us?” + +“If he says true,” said the captain doubtingly. “But in his present +condition he will promise anything, and take his chance of keeping it +afterwards.” + +“I will do more than I promise,” said Dantès. + +“We shall see,” returned the other, smiling. + +“Where are you going?” asked Dantès. + +“To Leghorn.” + +“Then why, instead of tacking so frequently, do you not sail nearer the +wind?” + +“Because we should run straight on to the Island of Rion.” + +“You shall pass it by twenty fathoms.” + +“Take the helm, and let us see what you know.” + +The young man took the helm, felt to see if the vessel answered the +rudder promptly and seeing that, without being a first-rate sailor, she +yet was tolerably obedient. + +“To the sheets,” said he. The four seamen, who composed the crew, +obeyed, while the pilot looked on. “Haul taut.” + +They obeyed. + +“Belay.” This order was also executed; and the vessel passed, as Dantès +had predicted, twenty fathoms to windward. + +“Bravo!” said the captain. + +“Bravo!” repeated the sailors. And they all looked with astonishment at +this man whose eye now disclosed an intelligence and his body a vigor +they had not thought him capable of showing. + +“You see,” said Dantès, quitting the helm, “I shall be of some use to +you, at least during the voyage. If you do not want me at Leghorn, you +can leave me there, and I will pay you out of the first wages I get, +for my food and the clothes you lend me.” + +“Ah,” said the captain, “we can agree very well, if you are +reasonable.” + +“Give me what you give the others, and it will be all right,” returned +Dantès. + +“That’s not fair,” said the seaman who had saved Dantès; “for you know +more than we do.” + +“What is that to you, Jacopo?” returned the Captain. “Everyone is free +to ask what he pleases.” + +“That’s true,” replied Jacopo; “I only make a remark.” + +“Well, you would do much better to find him a jacket and a pair of +trousers, if you have them.” + +“No,” said Jacopo; “but I have a shirt and a pair of trousers.” + +“That is all I want,” interrupted Dantès. Jacopo dived into the hold +and soon returned with what Edmond wanted. + +“Now, then, do you wish for anything else?” said the patron. + +“A piece of bread and another glass of the capital rum I tasted, for I +have not eaten or drunk for a long time.” He had not tasted food for +forty hours. A piece of bread was brought, and Jacopo offered him the +gourd. + +“Larboard your helm,” cried the captain to the steersman. Dantès +glanced that way as he lifted the gourd to his mouth; then paused with +hand in mid-air. + +“Hollo! what’s the matter at the Château d’If?” said the captain. + +A small white cloud, which had attracted Dantès’ attention, crowned the +summit of the bastion of the Château d’If. At the same moment the faint +report of a gun was heard. The sailors looked at one another. + +“What is this?” asked the captain. + +“A prisoner has escaped from the Château d’If, and they are firing the +alarm gun,” replied Dantès. The captain glanced at him, but he had +lifted the rum to his lips and was drinking it with so much composure, +that suspicions, if the captain had any, died away. + +0277m + + + +“Pretty strong rum!” said Dantès, wiping his brow with his sleeve. + +“At any rate,” murmured he, “if it be, so much the better, for I have +made a rare acquisition.” + +0279m + + + +Under pretence of being fatigued, Dantès asked to take the helm; the +steersman, glad to be relieved, looked at the captain, and the latter +by a sign indicated that he might abandon it to his new comrade. Dantès +could thus keep his eyes on Marseilles. + +“What is the day of the month?” asked he of Jacopo, who sat down beside +him. + +“The 28th of February.” + +“In what year?” + +“In what year—you ask me in what year?” + +“Yes,” replied the young man, “I ask you in what year!” + +“You have forgotten then?” + +“I got such a fright last night,” replied Dantès, smiling, “that I have +almost lost my memory. I ask you what year is it?” + +“The year 1829,” returned Jacopo. + +It was fourteen years, day for day, since Dantès’ arrest. He was +nineteen when he entered the Château d’If; he was thirty-three when he +escaped. A sorrowful smile passed over his face; he asked himself what +had become of Mercédès, who must believe him dead. Then his eyes +lighted up with hatred as he thought of the three men who had caused +him so long and wretched a captivity. He renewed against Danglars, +Fernand, and Villefort the oath of implacable vengeance he had made in +his dungeon. + +This oath was no longer a vain menace; for the fastest sailor in the +Mediterranean would have been unable to overtake the little tartan, +that with every stitch of canvas set was flying before the wind to +Leghorn. + + + + Chapter 22. The Smugglers + +Dantès had not been a day on board before he had a very clear idea of +the men with whom his lot had been cast. Without having been in the +school of the Abbé Faria, the worthy master of _La Jeune Amélie_ (the +name of the Genoese tartan) knew a smattering of all the tongues spoken +on the shores of that large lake called the Mediterranean, from the +Arabic to the Provençal, and this, while it spared him interpreters, +persons always troublesome and frequently indiscreet, gave him great +facilities of communication, either with the vessels he met at sea, +with the small boats sailing along the coast, or with the people +without name, country, or occupation, who are always seen on the quays +of seaports, and who live by hidden and mysterious means which we must +suppose to be a direct gift of Providence, as they have no visible +means of support. It is fair to assume that Dantès was on board a +smuggler. + +At first the captain had received Dantès on board with a certain degree +of distrust. He was very well known to the customs officers of the +coast; and as there was between these worthies and himself a perpetual +battle of wits, he had at first thought that Dantès might be an +emissary of these industrious guardians of rights and duties, who +perhaps employed this ingenious means of learning some of the secrets +of his trade. But the skilful manner in which Dantès had handled the +lugger had entirely reassured him; and then, when he saw the light +plume of smoke floating above the bastion of the Château d’If, and +heard the distant report, he was instantly struck with the idea that he +had on board his vessel one whose coming and going, like that of kings, +was accompanied with salutes of artillery. This made him less uneasy, +it must be owned, than if the new-comer had proved to be a customs +officer; but this supposition also disappeared like the first, when he +beheld the perfect tranquillity of his recruit. + +Edmond thus had the advantage of knowing what the owner was, without +the owner knowing who he was; and however the old sailor and his crew +tried to “pump” him, they extracted nothing more from him; he gave +accurate descriptions of Naples and Malta, which he knew as well as +Marseilles, and held stoutly to his first story. Thus the Genoese, +subtle as he was, was duped by Edmond, in whose favor his mild +demeanor, his nautical skill, and his admirable dissimulation, pleaded. +Moreover, it is possible that the Genoese was one of those shrewd +persons who know nothing but what they should know, and believe nothing +but what they should believe. + +In this state of mutual understanding, they reached Leghorn. Here +Edmond was to undergo another trial; he was to find out whether he +could recognize himself, as he had not seen his own face for fourteen +years. He had preserved a tolerably good remembrance of what the youth +had been, and was now to find out what the man had become. His comrades +believed that his vow was fulfilled. As he had twenty times touched at +Leghorn, he remembered a barber in St. Ferdinand Street; he went there +to have his beard and hair cut. The barber gazed in amazement at this +man with the long, thick and black hair and beard, which gave his head +the appearance of one of Titian’s portraits. At this period it was not +the fashion to wear so large a beard and hair so long; now a barber +would only be surprised if a man gifted with such advantages should +consent voluntarily to deprive himself of them. The Leghorn barber said +nothing and went to work. + +When the operation was concluded, and Edmond felt that his chin was +completely smooth, and his hair reduced to its usual length, he asked +for a looking-glass. He was now, as we have said, three-and-thirty +years of age, and his fourteen years’ imprisonment had produced a great +transformation in his appearance. + +Dantès had entered the Château d’If with the round, open, smiling face +of a young and happy man, with whom the early paths of life have been +smooth, and who anticipates a future corresponding with his past. This +was now all changed. The oval face was lengthened, his smiling mouth +had assumed the firm and marked lines which betoken resolution; his +eyebrows were arched beneath a brow furrowed with thought; his eyes +were full of melancholy, and from their depths occasionally sparkled +gloomy fires of misanthropy and hatred; his complexion, so long kept +from the sun, had now that pale color which produces, when the features +are encircled with black hair, the aristocratic beauty of the man of +the north; the profound learning he had acquired had besides diffused +over his features a refined intellectual expression; and he had also +acquired, being naturally of a goodly stature, that vigor which a frame +possesses which has so long concentrated all its force within itself. + +0283m + + + +To the elegance of a nervous and slight form had succeeded the solidity +of a rounded and muscular figure. As to his voice, prayers, sobs, and +imprecations had changed it so that at times it was of a singularly +penetrating sweetness, and at others rough and almost hoarse. + +Moreover, from being so long in twilight or darkness, his eyes had +acquired the faculty of distinguishing objects in the night, common to +the hyena and the wolf. Edmond smiled when he beheld himself; it was +impossible that his best friend—if, indeed, he had any friend +left—could recognize him; he could not recognize himself. + +The master of _La Jeune Amélie_, who was very desirous of retaining +amongst his crew a man of Edmond’s value, had offered to advance him +funds out of his future profits, which Edmond had accepted. His next +care on leaving the barber’s who had achieved his first metamorphosis +was to enter a shop and buy a complete sailor’s suit—a garb, as we all +know, very simple, and consisting of white trousers, a striped shirt, +and a cap. + +It was in this costume, and bringing back to Jacopo the shirt and +trousers he had lent him, that Edmond reappeared before the captain of +the lugger, who had made him tell his story over and over again before +he could believe him, or recognize in the neat and trim sailor the man +with thick and matted beard, hair tangled with seaweed, and body +soaking in seabrine, whom he had picked up naked and nearly drowned. +Attracted by his prepossessing appearance, he renewed his offers of an +engagement to Dantès; but Dantès, who had his own projects, would not +agree for a longer time than three months. + +_La Jeune Amélie_ had a very active crew, very obedient to their +captain, who lost as little time as possible. He had scarcely been a +week at Leghorn before the hold of his vessel was filled with printed +muslins, contraband cottons, English powder, and tobacco on which the +excise had forgotten to put its mark. The master was to get all this +out of Leghorn free of duties, and land it on the shores of Corsica, +where certain speculators undertook to forward the cargo to France. + +They sailed; Edmond was again cleaving the azure sea which had been the +first horizon of his youth, and which he had so often dreamed of in +prison. He left Gorgone on his right and La Pianosa on his left, and +went towards the country of Paoli and Napoleon. + +The next morning going on deck, as he always did at an early hour, the +patron found Dantès leaning against the bulwarks gazing with intense +earnestness at a pile of granite rocks, which the rising sun tinged +with rosy light. It was the Island of Monte Cristo. + +_La Jeune Amélie_ left it three-quarters of a league to the larboard +and kept on for Corsica. Dantès thought, as they passed so closely to +the island whose name was so interesting to him, that he had only to +leap into the sea and in half an hour be at the promised land. But then +what could he do without instruments to discover his treasure, without +arms to defend himself? Besides, what would the sailors say? What would +the patron think? He must wait. + +Fortunately, Dantès had learned how to wait; he had waited fourteen +years for his liberty, and now he was free he could wait at least six +months or a year for wealth. Would he not have accepted liberty without +riches if it had been offered to him? Besides, were not those riches +chimerical?—offspring of the brain of the poor Abbé Faria, had they not +died with him? It is true, the letter of the Cardinal Spada was +singularly circumstantial, and Dantès repeated it to himself, from one +end to the other, for he had not forgotten a word. + +0285m + + + +Evening came, and Edmond saw the island tinged with the shades of +twilight, and then disappear in the darkness from all eyes but his own, +for he, with vision accustomed to the gloom of a prison, continued to +behold it last of all, for he remained alone upon deck. The next morn +broke off the coast of Aleria; all day they coasted, and in the evening +saw fires lighted on land; the position of these was no doubt a signal +for landing, for a ship’s lantern was hung up at the mast-head instead +of the streamer, and they came to within a gunshot of the shore. Dantès +noticed that the captain of _La Jeune Amélie_ had, as he neared the +land, mounted two small culverins, which, without making much noise, +can throw a four ounce ball a thousand paces or so. + +But on this occasion the precaution was superfluous, and everything +proceeded with the utmost smoothness and politeness. Four shallops came +off with very little noise alongside the lugger, which, no doubt, in +acknowledgement of the compliment, lowered her own shallop into the +sea, and the five boats worked so well that by two o’clock in the +morning all the cargo was out of _La Jeune Amélie_ and on _terra +firma_. The same night, such a man of regularity was the patron of _La +Jeune Amélie_, the profits were divided, and each man had a hundred +Tuscan livres, or about eighty francs. + +But the voyage was not ended. They turned the bowsprit towards +Sardinia, where they intended to take in a cargo, which was to replace +what had been discharged. The second operation was as successful as the +first, _La Jeune Amélie_ was in luck. This new cargo was destined for +the coast of the Duchy of Lucca, and consisted almost entirely of +Havana cigars, sherry, and Malaga wines. + +There they had a bit of a skirmish in getting rid of the duties; the +excise was, in truth, the everlasting enemy of the patron of _La Jeune +Amélie_. A customs officer was laid low, and two sailors wounded; +Dantès was one of the latter, a ball having touched him in the left +shoulder. Dantès was almost glad of this affray, and almost pleased at +being wounded, for they were rude lessons which taught him with what +eye he could view danger, and with what endurance he could bear +suffering. He had contemplated danger with a smile, and when wounded +had exclaimed with the great philosopher, “Pain, thou art not an evil.” + +He had, moreover, looked upon the customs officer wounded to death, +and, whether from heat of blood produced by the encounter, or the chill +of human sentiment, this sight had made but slight impression upon him. +Dantès was on the way he desired to follow, and was moving towards the +end he wished to achieve; his heart was in a fair way of petrifying in +his bosom. Jacopo, seeing him fall, had believed him killed, and +rushing towards him raised him up, and then attended to him with all +the kindness of a devoted comrade. + +This world was not then so good as Doctor Pangloss believed it, neither +was it so wicked as Dantès thought it, since this man, who had nothing +to expect from his comrade but the inheritance of his share of the +prize-money, manifested so much sorrow when he saw him fall. +Fortunately, as we have said, Edmond was only wounded, and with certain +herbs gathered at certain seasons, and sold to the smugglers by the old +Sardinian women, the wound soon closed. Edmond then resolved to try +Jacopo, and offered him in return for his attention a share of his +prize-money, but Jacopo refused it indignantly. + +As a result of the sympathetic devotion which Jacopo had from the first +bestowed on Edmond, the latter was moved to a certain degree of +affection. But this sufficed for Jacopo, who instinctively felt that +Edmond had a right to superiority of position—a superiority which +Edmond had concealed from all others. And from this time the kindness +which Edmond showed him was enough for the brave seaman. + +Then in the long days on board ship, when the vessel, gliding on with +security over the azure sea, required no care but the hand of the +helmsman, thanks to the favorable winds that swelled her sails, Edmond, +with a chart in his hand, became the instructor of Jacopo, as the poor +Abbé Faria had been his tutor. He pointed out to him the bearings of +the coast, explained to him the variations of the compass, and taught +him to read in that vast book opened over our heads which they call +heaven, and where God writes in azure with letters of diamonds. + +And when Jacopo inquired of him, “What is the use of teaching all these +things to a poor sailor like me?” Edmond replied, “Who knows? You may +one day be the captain of a vessel. Your fellow-countryman, Bonaparte, +became emperor.” We had forgotten to say that Jacopo was a Corsican. + +Two months and a half elapsed in these trips, and Edmond had become as +skilful a coaster as he had been a hardy seaman; he had formed an +acquaintance with all the smugglers on the coast, and learned all the +Masonic signs by which these half pirates recognize each other. He had +passed and re-passed his Island of Monte Cristo twenty times, but not +once had he found an opportunity of landing there. + +He then formed a resolution. As soon as his engagement with the patron +of _La Jeune Amélie_ ended, he would hire a small vessel on his own +account—for in his several voyages he had amassed a hundred +piastres—and under some pretext land at the Island of Monte Cristo. +Then he would be free to make his researches, not perhaps entirely at +liberty, for he would be doubtless watched by those who accompanied +him. But in this world we must risk something. Prison had made Edmond +prudent, and he was desirous of running no risk whatever. But in vain +did he rack his imagination; fertile as it was, he could not devise any +plan for reaching the island without companionship. + +Dantès was tossed about on these doubts and wishes, when the patron, +who had great confidence in him, and was very desirous of retaining him +in his service, took him by the arm one evening and led him to a tavern +on the Via del’ Oglio, where the leading smugglers of Leghorn used to +congregate and discuss affairs connected with their trade. Already +Dantès had visited this maritime Bourse two or three times, and seeing +all these hardy free-traders, who supplied the whole coast for nearly +two hundred leagues in extent, he had asked himself what power might +not that man attain who should give the impulse of his will to all +these contrary and diverging minds. This time it was a great matter +that was under discussion, connected with a vessel laden with Turkey +carpets, stuffs of the Levant, and cashmeres. It was necessary to find +some neutral ground on which an exchange could be made, and then to try +and land these goods on the coast of France. If the venture was +successful the profit would be enormous, there would be a gain of fifty +or sixty piastres each for the crew. + +The patron of _La Jeune Amélie_ proposed as a place of landing the +Island of Monte Cristo, which being completely deserted, and having +neither soldiers nor revenue officers, seemed to have been placed in +the midst of the ocean since the time of the heathen Olympus by +Mercury, the god of merchants and robbers, classes of mankind which we +in modern times have separated if not made distinct, but which +antiquity appears to have included in the same category. + +At the mention of Monte Cristo Dantès started with joy; he rose to +conceal his emotion, and took a turn around the smoky tavern, where all +the languages of the known world were jumbled in a _lingua franca_. + +When he again joined the two persons who had been discussing the +matter, it had been decided that they should touch at Monte Cristo and +set out on the following night. Edmond, being consulted, was of opinion +that the island afforded every possible security, and that great +enterprises to be well done should be done quickly. + +Nothing then was altered in the plan, and orders were given to get +under weigh next night, and, wind and weather permitting, to make the +neutral island by the following day. + +0289m + + + + + Chapter 23. The Island of Monte Cristo + +Thus, at length, by one of the unexpected strokes of fortune which +sometimes befall those who have for a long time been the victims of an +evil destiny, Dantès was about to secure the opportunity he wished for, +by simple and natural means, and land on the island without incurring +any suspicion. One night more and he would be on his way. + +The night was one of feverish distraction, and in its progress visions, +good and evil, passed through Dantès’ mind. If he closed his eyes, he +saw Cardinal Spada’s letter written on the wall in characters of +flame—if he slept for a moment the wildest dreams haunted his brain. He +ascended into grottos paved with emeralds, with panels of rubies, and +the roof glowing with diamond stalactites. Pearls fell drop by drop, as +subterranean waters filter in their caves. Edmond, amazed, +wonderstruck, filled his pockets with the radiant gems and then +returned to daylight, when he discovered that his prizes had all +changed into common pebbles. He then endeavored to re-enter the +marvellous grottos, but they had suddenly receded, and now the path +became a labyrinth, and then the entrance vanished, and in vain did he +tax his memory for the magic and mysterious word which opened the +splendid caverns of Ali Baba to the Arabian fisherman. All was useless, +the treasure disappeared, and had again reverted to the genii from whom +for a moment he had hoped to carry it off. + +The day came at length, and was almost as feverish as the night had +been, but it brought reason to the aid of imagination, and Dantès was +then enabled to arrange a plan which had hitherto been vague and +unsettled in his brain. Night came, and with it the preparation for +departure, and these preparations served to conceal Dantès’ agitation. +He had by degrees assumed such authority over his companions that he +was almost like a commander on board; and as his orders were always +clear, distinct, and easy of execution, his comrades obeyed him with +celerity and pleasure. + +The old patron did not interfere, for he too had recognized the +superiority of Dantès over the crew and himself. He saw in the young +man his natural successor, and regretted that he had not a daughter, +that he might have bound Edmond to him by a more secure alliance. At +seven o’clock in the evening all was ready, and at ten minutes past +seven they doubled the lighthouse just as the beacon was kindled. The +sea was calm, and, with a fresh breeze from the south-east, they sailed +beneath a bright blue sky, in which God also lighted up in turn his +beacon lights, each of which is a world. Dantès told them that all +hands might turn in, and he would take the helm. When the Maltese (for +so they called Dantès) had said this, it was sufficient, and all went +to their bunks contentedly. + +This frequently happened. Dantès, cast from solitude into the world, +frequently experienced an imperious desire for solitude; and what +solitude is more complete, or more poetical, than that of a ship +floating in isolation on the sea during the obscurity of the night, in +the silence of immensity, and under the eye of Heaven? + +Now this solitude was peopled with his thoughts, the night lighted up +by his illusions, and the silence animated by his anticipations. When +the patron awoke, the vessel was hurrying on with every sail set, and +every sail full with the breeze. They were making nearly ten knots an +hour. The Island of Monte Cristo loomed large in the horizon. Edmond +resigned the lugger to the master’s care, and went and lay down in his +hammock; but, in spite of a sleepless night, he could not close his +eyes for a moment. + +Two hours afterwards he came on deck, as the boat was about to double +the Island of Elba. They were just abreast of Mareciana, and beyond the +flat but verdant Island of La Pianosa. The peak of Monte Cristo +reddened by the burning sun, was seen against the azure sky. Dantès +ordered the helmsman to put down his helm, in order to leave La Pianosa +to starboard, as he knew that he should shorten his course by two or +three knots. About five o’clock in the evening the island was distinct, +and everything on it was plainly perceptible, owing to that clearness +of the atmosphere peculiar to the light which the rays of the sun cast +at its setting. + +Edmond gazed very earnestly at the mass of rocks which gave out all the +variety of twilight colors, from the brightest pink to the deepest +blue; and from time to time his cheeks flushed, his brow darkened, and +a mist passed over his eyes. Never did a gamester, whose whole fortune +is staked on one cast of the die, experience the anguish which Edmond +felt in his paroxysms of hope. + +Night came, and at ten o’clock they anchored. _La Jeune Amélie_ was +first at the rendezvous. In spite of his usual command over himself, +Dantès could not restrain his impetuosity. He was the first to jump on +shore; and had he dared, he would, like Lucius Brutus, have “kissed his +mother earth.” It was dark, but at eleven o’clock the moon rose in the +midst of the ocean, whose every wave she silvered, and then, “ascending +high,” played in floods of pale light on the rocky hills of this second +Pelion. + +The island was familiar to the crew of _La Jeune Amélie_,—it was one of +her regular haunts. As to Dantès, he had passed it on his voyage to and +from the Levant, but never touched at it. He questioned Jacopo. + +“Where shall we pass the night?” he inquired. + +“Why, on board the tartan,” replied the sailor. + +“Should we not do better in the grottos?” + +“What grottos?” + +“Why, the grottos—caves of the island.” + +“I do not know of any grottos,” replied Jacopo. + +The cold sweat sprang forth on Dantès’ brow. + +“What, are there no grottos at Monte Cristo?” he asked. + +“None.” + +For a moment Dantès was speechless; then he remembered that these caves +might have been filled up by some accident, or even stopped up, for the +sake of greater security, by Cardinal Spada. The point was, then, to +discover the hidden entrance. It was useless to search at night, and +Dantès therefore delayed all investigation until the morning. Besides, +a signal made half a league out at sea, and to which _La Jeune Amélie_ +replied by a similar signal, indicated that the moment for business had +come. + +The boat that now arrived, assured by the answering signal that all was +well, soon came in sight, white and silent as a phantom, and cast +anchor within a cable’s length of shore. + +Then the landing began. Dantès reflected, as he worked, on the shout of +joy which, with a single word, he could evoke from all these men, if he +gave utterance to the one unchanging thought that pervaded his heart; +but, far from disclosing this precious secret, he almost feared that he +had already said too much, and by his restlessness and continual +questions, his minute observations and evident preoccupation, aroused +suspicions. Fortunately, as regarded this circumstance at least, his +painful past gave to his countenance an indelible sadness, and the +glimmerings of gayety seen beneath this cloud were indeed but +transitory. + +No one had the slightest suspicion; and when next day, taking a +fowling-piece, powder, and shot, Dantès declared his intention to go +and kill some of the wild goats that were seen springing from rock to +rock, his wish was construed into a love of sport, or a desire for +solitude. However, Jacopo insisted on following him, and Dantès did not +oppose this, fearing if he did so that he might incur distrust. +Scarcely, however, had they gone a quarter of a league when, having +killed a kid, he begged Jacopo to take it to his comrades, and request +them to cook it, and when ready to let him know by firing a gun. This +and some dried fruits and a flask of Monte Pulciano, was the bill of +fare. + +Dantès went on, looking from time to time behind and around about him. +Having reached the summit of a rock, he saw, a thousand feet beneath +him, his companions, whom Jacopo had rejoined, and who were all busy +preparing the repast which Edmond’s skill as a marksman had augmented +with a capital dish. + +Edmond looked at them for a moment with the sad and gentle smile of a +man superior to his fellows. + +“In two hours’ time,” said he, “these persons will depart richer by +fifty piastres each, to go and risk their lives again by endeavoring to +gain fifty more; then they will return with a fortune of six hundred +francs, and waste this treasure in some city with the pride of sultans +and the insolence of nabobs. At this moment hope makes me despise their +riches, which seem to me contemptible. Yet perchance tomorrow deception +will so act on me, that I shall, on compulsion, consider such a +contemptible possession as the utmost happiness. Oh, no!” exclaimed +Edmond, “that will not be. The wise, unerring Faria could not be +mistaken in this one thing. Besides, it were better to die than to +continue to lead this low and wretched life.” + +Thus Dantès, who but three months before had no desire but liberty had +now not liberty enough, and panted for wealth. The cause was not in +Dantès, but in Providence, who, while limiting the power of man, has +filled him with boundless desires. + +Meanwhile, by a cleft between two walls of rock, following a path worn +by a torrent, and which, in all human probability, human foot had never +before trod, Dantès approached the spot where he supposed the grottos +must have existed. Keeping along the shore, and examining the smallest +object with serious attention, he thought he could trace, on certain +rocks, marks made by the hand of man. + +Time, which encrusts all physical substances with its mossy mantle, as +it invests all things of the mind with forgetfulness, seemed to have +respected these signs, which apparently had been made with some degree +of regularity, and probably with a definite purpose. Occasionally the +marks were hidden under tufts of myrtle, which spread into large bushes +laden with blossoms, or beneath parasitical lichen. So Edmond had to +separate the branches or brush away the moss to know where the +guide-marks were. The sight of marks renewed Edmond’s fondest hopes. +Might it not have been the cardinal himself who had first traced them, +in order that they might serve as a guide for his nephew in the event +of a catastrophe, which he could not foresee would have been so +complete. This solitary place was precisely suited to the requirements +of a man desirous of burying treasure. Only, might not these betraying +marks have attracted other eyes than those for whom they were made? and +had the dark and wondrous island indeed faithfully guarded its precious +secret? + +0295m + + + +It seemed, however, to Edmond, who was hidden from his comrades by the +inequalities of the ground, that at sixty paces from the harbor the +marks ceased; nor did they terminate at any grotto. A large round rock, +placed solidly on its base, was the only spot to which they seemed to +lead. Edmond concluded that perhaps instead of having reached the end +of the route he had only explored its beginning, and he therefore +turned round and retraced his steps. + +Meanwhile his comrades had prepared the repast, had got some water from +a spring, spread out the fruit and bread, and cooked the kid. Just at +the moment when they were taking the dainty animal from the spit, they +saw Edmond springing with the boldness of a chamois from rock to rock, +and they fired the signal agreed upon. The sportsman instantly changed +his direction, and ran quickly towards them. But even while they +watched his daring progress, Edmond’s foot slipped, and they saw him +stagger on the edge of a rock and disappear. They all rushed towards +him, for all loved Edmond in spite of his superiority; yet Jacopo +reached him first. + +He found Edmond lying prone, bleeding, and almost senseless. He had +rolled down a declivity of twelve or fifteen feet. They poured a little +rum down his throat, and this remedy which had before been so +beneficial to him, produced the same effect as formerly. Edmond opened +his eyes, complained of great pain in his knee, a feeling of heaviness +in his head, and severe pains in his loins. They wished to carry him to +the shore; but when they touched him, although under Jacopo’s +directions, he declared, with heavy groans, that he could not bear to +be moved. + +It may be supposed that Dantès did not now think of his dinner, but he +insisted that his comrades, who had not his reasons for fasting, should +have their meal. As for himself, he declared that he had only need of a +little rest, and that when they returned he should be easier. The +sailors did not require much urging. They were hungry, and the smell of +the roasted kid was very savory, and your tars are not very +ceremonious. An hour afterwards they returned. All that Edmond had been +able to do was to drag himself about a dozen paces forward to lean +against a moss-grown rock. + +But, instead of growing easier, Dantès’ pains appeared to increase in +violence. The old patron, who was obliged to sail in the morning in +order to land his cargo on the frontiers of Piedmont and France, +between Nice and Fréjus, urged Dantès to try and rise. Edmond made +great exertions in order to comply; but at each effort he fell back, +moaning and turning pale. + +“He has broken his ribs,” said the commander, in a low voice. “No +matter; he is an excellent fellow, and we must not leave him. We will +try and carry him on board the tartan.” + +Dantès declared, however, that he would rather die where he was than +undergo the agony which the slightest movement cost him. + +“Well,” said the patron, “let what may happen, it shall never be said +that we deserted a good comrade like you. We will not go till evening.” + +This very much astonished the sailors, although, not one opposed it. +The patron was so strict that this was the first time they had ever +seen him give up an enterprise, or even delay in its execution. Dantès +would not allow that any such infraction of regular and proper rules +should be made in his favor. + +“No, no,” he said to the patron, “I was awkward, and it is just that I +pay the penalty of my clumsiness. Leave me a small supply of biscuit, a +gun, powder, and balls, to kill the kids or defend myself at need, and +a pickaxe, that I may build a shelter if you delay in coming back for +me.” + +“But you’ll die of hunger,” said the patron. + +“I would rather do so,” was Edmond’s reply, “than suffer the +inexpressible agonies which the slightest movement causes me.” + +The patron turned towards his vessel, which was rolling on the swell in +the little harbor, and, with sails partly set, would be ready for sea +when her toilet should be completed. + +“What are we to do, Maltese?” asked the captain. “We cannot leave you +here so, and yet we cannot stay.” + +“Go, go!” exclaimed Dantès. + +“We shall be absent at least a week,” said the patron, “and then we +must run out of our course to come here and take you up again.” + +“Why,” said Dantès, “if in two or three days you hail any fishing-boat, +desire them to come here to me. I will pay twenty-five piastres for my +passage back to Leghorn. If you do not come across one, return for me.” +The patron shook his head. + +“Listen, Captain Baldi; there’s one way of settling this,” said Jacopo. +“Do you go, and I will stay and take care of the wounded man.” + +“And give up your share of the venture,” said Edmond, “to remain with +me?” + +“Yes,” said Jacopo, “and without any hesitation.” + +“You are a good fellow and a kind-hearted messmate,” replied Edmond, +“and heaven will recompense you for your generous intentions; but I do +not wish anyone to stay with me. A day or two of rest will set me up, +and I hope I shall find among the rocks certain herbs most excellent +for bruises.” + +A peculiar smile passed over Dantès’ lips; he squeezed Jacopo’s hand +warmly, but nothing could shake his determination to remain—and remain +alone. + +The smugglers left with Edmond what he had requested and set sail, but +not without turning about several times, and each time making signs of +a cordial farewell, to which Edmond replied with his hand only, as if +he could not move the rest of his body. + +Then, when they had disappeared, he said with a smile,—“’Tis strange +that it should be among such men that we find proofs of friendship and +devotion.” Then he dragged himself cautiously to the top of a rock, +from which he had a full view of the sea, and thence he saw the tartan +complete her preparations for sailing, weigh anchor, and, balancing +herself as gracefully as a water-fowl ere it takes to the wing, set +sail. + +At the end of an hour she was completely out of sight; at least, it was +impossible for the wounded man to see her any longer from the spot +where he was. Then Dantès rose more agile and light than the kid among +the myrtles and shrubs of these wild rocks, took his gun in one hand, +his pickaxe in the other, and hastened towards the rock on which the +marks he had noted terminated. + +“And now,” he exclaimed, remembering the tale of the Arabian fisherman, +which Faria had related to him, “now, Open Sesame!” + + + + Chapter 24. The Secret Cave + +The sun had nearly reached the meridian, and his scorching rays fell +full on the rocks, which seemed themselves sensible of the heat. +Thousands of grasshoppers, hidden in the bushes, chirped with a +monotonous and dull note; the leaves of the myrtle and olive trees +waved and rustled in the wind. At every step that Edmond took he +disturbed the lizards glittering with the hues of the emerald; afar off +he saw the wild goats bounding from crag to crag. In a word, the island +was inhabited, yet Edmond felt himself alone, guided by the hand of +God. + +He felt an indescribable sensation somewhat akin to dread—that dread of +the daylight which even in the desert makes us fear we are watched and +observed. This feeling was so strong that at the moment when Edmond was +about to begin his labor, he stopped, laid down his pickaxe, seized his +gun, mounted to the summit of the highest rock, and from thence gazed +round in every direction. + +But it was not upon Corsica, the very houses of which he could +distinguish; or on Sardinia; or on the Island of Elba, with its +historical associations; or upon the almost imperceptible line that to +the experienced eye of a sailor alone revealed the coast of Genoa the +proud, and Leghorn the commercial, that he gazed. It was at the +brigantine that had left in the morning, and the tartan that had just +set sail, that Edmond fixed his eyes. + +The first was just disappearing in the straits of Bonifacio; the other, +following an opposite direction, was about to round the Island of +Corsica. + +This sight reassured him. He then looked at the objects near him. He +saw that he was on the highest point of the island,—a statue on this +vast pedestal of granite, nothing human appearing in sight, while the +blue ocean beat against the base of the island, and covered it with a +fringe of foam. Then he descended with cautious and slow step, for he +dreaded lest an accident similar to that he had so adroitly feigned +should happen in reality. + +Dantès, as we have said, had traced the marks along the rocks, and he +had noticed that they led to a small creek, which was hidden like the +bath of some ancient nymph. This creek was sufficiently wide at its +mouth, and deep in the centre, to admit of the entrance of a small +vessel of the lugger class, which would be perfectly concealed from +observation. + +Then following the clew that, in the hands of the Abbé Faria, had been +so skilfully used to guide him through the Dædalian labyrinth of +probabilities, he thought that the Cardinal Spada, anxious not to be +watched, had entered the creek, concealed his little barque, followed +the line marked by the notches in the rock, and at the end of it had +buried his treasure. It was this idea that had brought Dantès back to +the circular rock. One thing only perplexed Edmond, and destroyed his +theory. How could this rock, which weighed several tons, have been +lifted to this spot, without the aid of many men? + +Suddenly an idea flashed across his mind. Instead of raising it, +thought he, they have lowered it. And he sprang from the rock in order +to inspect the base on which it had formerly stood. + +He soon perceived that a slope had been formed, and the rock had slid +along this until it stopped at the spot it now occupied. A large stone +had served as a wedge; flints and pebbles had been inserted around it, +so as to conceal the orifice; this species of masonry had been covered +with earth, and grass and weeds had grown there, moss had clung to the +stones, myrtle-bushes had taken root, and the old rock seemed fixed to +the earth. + +0301m + + + +Dantès dug away the earth carefully, and detected, or fancied he +detected, the ingenious artifice. He attacked this wall, cemented by +the hand of time, with his pickaxe. After ten minutes’ labor the wall +gave way, and a hole large enough to insert the arm was opened. + +Dantès went and cut the strongest olive-tree he could find, stripped +off its branches, inserted it in the hole, and used it as a lever. But +the rock was too heavy, and too firmly wedged, to be moved by anyone +man, were he Hercules himself. Dantès saw that he must attack the +wedge. But how? + +He cast his eyes around, and saw the horn full of powder which his +friend Jacopo had left him. He smiled; the infernal invention would +serve him for this purpose. + +With the aid of his pickaxe, Dantès, after the manner of a labor-saving +pioneer, dug a mine between the upper rock and the one that supported +it, filled it with powder, then made a match by rolling his +handkerchief in saltpetre. He lighted it and retired. + +The explosion soon followed; the upper rock was lifted from its base by +the terrific force of the powder; the lower one flew into pieces; +thousands of insects escaped from the aperture Dantès had previously +formed, and a huge snake, like the guardian demon of the treasure, +rolled himself along in darkening coils, and disappeared. + +Dantès approached the upper rock, which now, without any support, +leaned towards the sea. The intrepid treasure-seeker walked round it, +and, selecting the spot from whence it appeared most susceptible to +attack, placed his lever in one of the crevices, and strained every +nerve to move the mass. + +The rock, already shaken by the explosion, tottered on its base. Dantès +redoubled his efforts; he seemed like one of the ancient Titans, who +uprooted the mountains to hurl against the father of the gods. The rock +yielded, rolled over, bounded from point to point, and finally +disappeared in the ocean. + +On the spot it had occupied was a circular space, exposing an iron ring +let into a square flag-stone. + +Dantès uttered a cry of joy and surprise; never had a first attempt +been crowned with more perfect success. He would fain have continued, +but his knees trembled, and his heart beat so violently, and his sight +became so dim, that he was forced to pause. + +This feeling lasted but for a moment. Edmond inserted his lever in the +ring and exerted all his strength; the flag-stone yielded, and +disclosed steps that descended until they were lost in the obscurity of +a subterraneous grotto. + +Anyone else would have rushed on with a cry of joy. Dantès turned pale, +hesitated, and reflected. + +“Come,” said he to himself, “be a man. I am accustomed to adversity. I +must not be cast down by the discovery that I have been deceived. What, +then, would be the use of all I have suffered? The heart breaks when, +after having been elated by flattering hopes, it sees all its illusions +destroyed. Faria has dreamed this; the Cardinal Spada buried no +treasure here; perhaps he never came here, or if he did, Cæsar Borgia, +the intrepid adventurer, the stealthy and indefatigable plunderer, has +followed him, discovered his traces, pursued them as I have done, +raised the stone, and descending before me, has left me nothing.” + +He remained motionless and pensive, his eyes fixed on the gloomy +aperture that was open at his feet. + +“Now that I expect nothing, now that I no longer entertain the +slightest hopes, the end of this adventure becomes simply a matter of +curiosity.” And he remained again motionless and thoughtful. + +“Yes, yes; this is an adventure worthy a place in the varied career of +that royal bandit. This fabulous event formed but a link in a long +chain of marvels. Yes, Borgia has been here, a torch in one hand, a +sword in the other, and within twenty paces, at the foot of this rock, +perhaps two guards kept watch on land and sea, while their master +descended, as I am about to descend, dispelling the darkness before his +awe-inspiring progress.” + +0303m + + + +“But what was the fate of the guards who thus possessed his secret?” +asked Dantès of himself. + +“The fate,” replied he, smiling, “of those who buried Alaric, and were +interred with the corpse.” + +“Yet, had he come,” thought Dantès, “he would have found the treasure, +and Borgia, he who compared Italy to an artichoke, which he could +devour leaf by leaf, knew too well the value of time to waste it in +replacing this rock. I will go down.” + +Then he descended, a smile on his lips, and murmuring that last word of +human philosophy, “Perhaps!” + +But instead of the darkness, and the thick and mephitic atmosphere he +had expected to find, Dantès saw a dim and bluish light, which, as well +as the air, entered, not merely by the aperture he had just formed, but +by the interstices and crevices of the rock which were visible from +without, and through which he could distinguish the blue sky and the +waving branches of the evergreen oaks, and the tendrils of the creepers +that grew from the rocks. + +After having stood a few minutes in the cavern, the atmosphere of which +was rather warm than damp, Dantès’ eye, habituated as it was to +darkness, could pierce even to the remotest angles of the cavern, which +was of granite that sparkled like diamonds. + +“Alas,” said Edmond, smiling, “these are the treasures the cardinal has +left; and the good abbé, seeing in a dream these glittering walls, has +indulged in fallacious hopes.” + +But he called to mind the words of the will, which he knew by heart. +“In the farthest angle of the second opening,” said the cardinal’s +will. He had only found the first grotto; he had now to seek the +second. Dantès continued his search. He reflected that this second +grotto must penetrate deeper into the island; he examined the stones, +and sounded one part of the wall where he fancied the opening existed, +masked for precaution’s sake. + +The pickaxe struck for a moment with a dull sound that drew out of +Dantès’ forehead large drops of perspiration. At last it seemed to him +that one part of the wall gave forth a more hollow and deeper echo; he +eagerly advanced, and with the quickness of perception that no one but +a prisoner possesses, saw that there, in all probability, the opening +must be. + +However, he, like Cæsar Borgia, knew the value of time; and, in order +to avoid fruitless toil, he sounded all the other walls with his +pickaxe, struck the earth with the butt of his gun, and finding nothing +that appeared suspicious, returned to that part of the wall whence +issued the consoling sound he had before heard. + +He again struck it, and with greater force. Then a singular thing +occurred. As he struck the wall, pieces of stucco similar to that used +in the ground work of arabesques broke off, and fell to the ground in +flakes, exposing a large white stone. The aperture of the rock had been +closed with stones, then this stucco had been applied, and painted to +imitate granite. Dantès struck with the sharp end of his pickaxe, which +entered someway between the interstices. + +It was there he must dig. + +But by some strange play of emotion, in proportion as the proofs that +Faria, had not been deceived became stronger, so did his heart give +way, and a feeling of discouragement stole over him. This last proof, +instead of giving him fresh strength, deprived him of it; the pickaxe +descended, or rather fell; he placed it on the ground, passed his hand +over his brow, and remounted the stairs, alleging to himself, as an +excuse, a desire to be assured that no one was watching him, but in +reality because he felt that he was about to faint. + +The island was deserted, and the sun seemed to cover it with its fiery +glance; afar off, a few small fishing boats studded the bosom of the +blue ocean. + +Dantès had tasted nothing, but he thought not of hunger at such a +moment; he hastily swallowed a few drops of rum, and again entered the +cavern. + +The pickaxe that had seemed so heavy, was now like a feather in his +grasp; he seized it, and attacked the wall. After several blows he +perceived that the stones were not cemented, but had been merely placed +one upon the other, and covered with stucco; he inserted the point of +his pickaxe, and using the handle as a lever, with joy soon saw the +stone turn as if on hinges, and fall at his feet. + +He had nothing more to do now, but with the iron tooth of the pickaxe +to draw the stones towards him one by one. The aperture was already +sufficiently large for him to enter, but by waiting, he could still +cling to hope, and retard the certainty of deception. At last, after +renewed hesitation, Dantès entered the second grotto. + +The second grotto was lower and more gloomy than the first; the air +that could only enter by the newly formed opening had the mephitic +smell Dantès was surprised not to find in the outer cavern. He waited +in order to allow pure air to displace the foul atmosphere, and then +went on. + +At the left of the opening was a dark and deep angle. But to Dantès’ +eye there was no darkness. He glanced around this second grotto; it +was, like the first, empty. + +The treasure, if it existed, was buried in this corner. The time had at +length arrived; two feet of earth removed, and Dantès’ fate would be +decided. + +He advanced towards the angle, and summoning all his resolution, +attacked the ground with the pickaxe. At the fifth or sixth blow the +pickaxe struck against an iron substance. Never did funeral knell, +never did alarm-bell, produce a greater effect on the hearer. Had +Dantès found nothing he could not have become more ghastly pale. + +He again struck his pickaxe into the earth, and encountered the same +resistance, but not the same sound. + +“It is a casket of wood bound with iron,” thought he. + +At this moment a shadow passed rapidly before the opening; Dantès +seized his gun, sprang through the opening, and mounted the stair. A +wild goat had passed before the mouth of the cave, and was feeding at a +little distance. This would have been a favorable occasion to secure +his dinner; but Dantès feared lest the report of his gun should attract +attention. + +He thought a moment, cut a branch of a resinous tree, lighted it at the +fire at which the smugglers had prepared their breakfast, and descended +with this torch. + +He wished to see everything. He approached the hole he had dug, and +now, with the aid of the torch, saw that his pickaxe had in reality +struck against iron and wood. He planted his torch in the ground and +resumed his labor. + +In an instant a space three feet long by two feet broad was cleared, +and Dantès could see an oaken coffer, bound with cut steel; in the +middle of the lid he saw engraved on a silver plate, which was still +untarnished, the arms of the Spada family—viz., a sword, _en pale_, on +an oval shield, like all the Italian armorial bearings, and surmounted +by a cardinal’s hat. + +Dantès easily recognized them, Faria had so often drawn them for him. +There was no longer any doubt: the treasure was there—no one would have +been at such pains to conceal an empty casket. In an instant he had +cleared every obstacle away, and he saw successively the lock, placed +between two padlocks, and the two handles at each end, all carved as +things were carved at that epoch, when art rendered the commonest +metals precious. + +Dantès seized the handles, and strove to lift the coffer; it was +impossible. He sought to open it; lock and padlock were fastened; these +faithful guardians seemed unwilling to surrender their trust. Dantès +inserted the sharp end of the pickaxe between the coffer and the lid, +and pressing with all his force on the handle, burst open the +fastenings. The hinges yielded in their turn and fell, still holding in +their grasp fragments of the wood, and the chest was open. + +0307m + + + +Edmond was seized with vertigo; he cocked his gun and laid it beside +him. He then closed his eyes as children do in order that they may see +in the resplendent night of their own imagination more stars than are +visible in the firmament; then he re-opened them, and stood motionless +with amazement. + +Three compartments divided the coffer. In the first, blazed piles of +golden coin; in the second, were ranged bars of unpolished gold, which +possessed nothing attractive save their value; in the third, Edmond +grasped handfuls of diamonds, pearls, and rubies, which, as they fell +on one another, sounded like hail against glass. + +After having touched, felt, examined these treasures, Edmond rushed +through the caverns like a man seized with frenzy; he leaped on a rock, +from whence he could behold the sea. He was alone—alone with these +countless, these unheard-of treasures! Was he awake, or was it but a +dream? Was it a transient vision, or was he face to face with reality? + +He would fain have gazed upon his gold, and yet he had not strength +enough; for an instant he leaned his head in his hands as if to prevent +his senses from leaving him, and then rushed madly about the rocks of +Monte Cristo, terrifying the wild goats and scaring the sea-fowls with +his wild cries and gestures; then he returned, and, still unable to +believe the evidence of his senses, rushed into the grotto, and found +himself before this mine of gold and jewels. + +This time he fell on his knees, and, clasping his hands convulsively, +uttered a prayer intelligible to God alone. He soon became calmer and +more happy, for only now did he begin to realize his felicity. + +He then set himself to work to count his fortune. There were a thousand +ingots of gold, each weighing from two to three pounds; then he piled +up twenty-five thousand crowns, each worth about eighty francs of our +money, and bearing the effigies of Alexander VI. and his predecessors; +and he saw that the complement was not half empty. And he measured ten +double handfuls of pearls, diamonds, and other gems, many of which, +mounted by the most famous workmen, were valuable beyond their +intrinsic worth. + +Dantès saw the light gradually disappear, and fearing to be surprised +in the cavern, left it, his gun in his hand. A piece of biscuit and a +small quantity of rum formed his supper, and he snatched a few hours’ +sleep, lying over the mouth of the cave. + +It was a night of joy and terror, such as this man of stupendous +emotions had already experienced twice or thrice in his lifetime. + + + + Chapter 25. The Unknown + +Day, for which Dantès had so eagerly and impatiently waited with open +eyes, again dawned. With the first light Dantès resumed his search. +Again he climbed the rocky height he had ascended the previous evening, +and strained his view to catch every peculiarity of the landscape; but +it wore the same wild, barren aspect when seen by the rays of the +morning sun which it had done when surveyed by the fading glimmer of +eve. + +Descending into the grotto, he lifted the stone, filled his pockets +with gems, put the box together as well and securely as he could, +sprinkled fresh sand over the spot from which it had been taken, and +then carefully trod down the earth to give it everywhere a uniform +appearance; then, quitting the grotto, he replaced the stone, heaping +on it broken masses of rocks and rough fragments of crumbling granite, +filling the interstices with earth, into which he deftly inserted +rapidly growing plants, such as the wild myrtle and flowering thorn, +then carefully watering these new plantations, he scrupulously effaced +every trace of footsteps, leaving the approach to the cavern as +savage-looking and untrodden as he had found it. This done, he +impatiently awaited the return of his companions. To wait at Monte +Cristo for the purpose of watching like a dragon over the almost +incalculable riches that had thus fallen into his possession satisfied +not the cravings of his heart, which yearned to return to dwell among +mankind, and to assume the rank, power, and influence which are always +accorded to wealth—that first and greatest of all the forces within the +grasp of man. + +On the sixth day, the smugglers returned. From a distance Dantès +recognized the rig and handling of _La Jeune Amélie_, and dragging +himself with affected difficulty towards the landing-place, he met his +companions with an assurance that, although considerably better than +when they quitted him, he still suffered acutely from his late +accident. He then inquired how they had fared in their trip. To this +question the smugglers replied that, although successful in landing +their cargo in safety, they had scarcely done so when they received +intelligence that a guard-ship had just quitted the port of Toulon and +was crowding all sail towards them. This obliged them to make all the +speed they could to evade the enemy, when they could but lament the +absence of Dantès, whose superior skill in the management of a vessel +would have availed them so materially. In fact, the pursuing vessel had +almost overtaken them when, fortunately, night came on, and enabled +them to double the Cape of Corsica, and so elude all further pursuit. +Upon the whole, however, the trip had been sufficiently successful to +satisfy all concerned; while the crew, and particularly Jacopo, +expressed great regrets that Dantès had not been an equal sharer with +themselves in the profits, which amounted to no less a sum than fifty +piastres each. + +0311m + + + +Edmond preserved the most admirable self-command, not suffering the +faintest indication of a smile to escape him at the enumeration of all +the benefits he would have reaped had he been able to quit the island; +but as _La Jeune Amélie_ had merely come to Monte Cristo to fetch him +away, he embarked that same evening, and proceeded with the captain to +Leghorn. + +Arrived at Leghorn, he repaired to the house of a Jew, a dealer in +precious stones, to whom he disposed of four of his smallest diamonds +for five thousand francs each. Dantès half feared that such valuable +jewels in the hands of a poor sailor like himself might excite +suspicion; but the cunning purchaser asked no troublesome questions +concerning a bargain by which he gained a round profit of at least +eighty per cent. + +The following day Dantès presented Jacopo with an entirely new vessel, +accompanying the gift by a donation of one hundred piastres, that he +might provide himself with a suitable crew and other requisites for his +outfit, upon condition that he would go at once to Marseilles for the +purpose of inquiring after an old man named Louis Dantès, residing in +the Allées de Meilhan, and also a young woman called Mercédès, an +inhabitant of the Catalan village. + +Jacopo could scarcely believe his senses at receiving this magnificent +present, which Dantès hastened to account for by saying that he had +merely been a sailor from whim and a desire to spite his family, who +did not allow him as much money as he liked to spend; but that on his +arrival at Leghorn he had come into possession of a large fortune, left +him by an uncle, whose sole heir he was. The superior education of +Dantès gave an air of such extreme probability to this statement that +it never once occurred to Jacopo to doubt its accuracy. + +The term for which Edmond had engaged to serve on board _La Jeune +Amélie_ having expired, Dantès took leave of the captain, who at first +tried all his powers of persuasion to induce him to remain as one of +the crew, but having been told the history of the legacy, he ceased to +importune him further. + +The following morning Jacopo set sail for Marseilles, with directions +from Dantès to join him at the Island of Monte Cristo. + +Having seen Jacopo fairly out of the harbor, Dantès proceeded to make +his final adieus on board _La Jeune Amélie_, distributing so liberal a +gratuity among her crew as to secure for him the good wishes of all, +and expressions of cordial interest in all that concerned him. To the +captain he promised to write when he had made up his mind as to his +future plans. Then Dantès departed for Genoa. + +At the moment of his arrival a small yacht was under trial in the bay; +this yacht had been built by order of an Englishman, who, having heard +that the Genoese excelled all other builders along the shores of the +Mediterranean in the construction of fast-sailing vessels, was desirous +of possessing a specimen of their skill; the price agreed upon between +the Englishman and the Genoese builder was forty thousand francs. +Dantès, struck with the beauty and capability of the little vessel, +applied to its owner to transfer it to him, offering sixty thousand +francs, upon condition that he should be allowed to take immediate +possession. The proposal was too advantageous to be refused, the more +so as the person for whom the yacht was intended had gone upon a tour +through Switzerland, and was not expected back in less than three weeks +or a month, by which time the builder reckoned upon being able to +complete another. A bargain was therefore struck. Dantès led the owner +of the yacht to the dwelling of a Jew; retired with the latter for a +few minutes to a small back parlor, and upon their return the Jew +counted out to the shipbuilder the sum of sixty thousand francs in +bright gold pieces. + +The delighted builder then offered his services in providing a suitable +crew for the little vessel, but this Dantès declined with many thanks, +saying he was accustomed to cruise about quite alone, and his principal +pleasure consisted in managing his yacht himself; the only thing the +builder could oblige him in would be to contrive a sort of secret +closet in the cabin at his bed’s head, the closet to contain three +divisions, so constructed as to be concealed from all but himself. The +builder cheerfully undertook the commission, and promised to have these +secret places completed by the next day, Dantès furnishing the +dimensions and plan in accordance with which they were to be +constructed. + +0313m + + + +Two hours afterward Dantès sailed from the port of Genoa, under the +inspection of an immense crowd drawn together by curiosity to see the +rich Spanish nobleman who preferred managing his own yacht. But their +wonder was soon changed to admiration at seeing the perfect skill with +which Dantès handled the helm. The boat, indeed, seemed to be animated +with almost human intelligence, so promptly did it obey the slightest +touch; and Dantès required but a short trial of his beautiful craft to +acknowledge that the Genoese had not without reason attained their high +reputation in the art of shipbuilding. + +The spectators followed the little vessel with their eyes as long as it +remained visible; they then turned their conjectures upon her probable +destination. Some insisted she was making for Corsica, others the +Island of Elba; bets were offered to any amount that she was bound for +Spain; while Africa was positively reported by many persons as her +intended course; but no one thought of Monte Cristo. + +Yet thither it was that Dantès guided his vessel, and at Monte Cristo +he arrived at the close of the second day; his boat had proved herself +a first-class sailor, and had come the distance from Genoa in +thirty-five hours. Dantès had carefully noted the general appearance of +the shore, and, instead of landing at the usual place, he dropped +anchor in the little creek. The island was utterly deserted, and bore +no evidence of having been visited since he went away; his treasure was +just as he had left it. + +Early on the following morning he commenced the removal of his riches, +and ere nightfall the whole of his immense wealth was safely deposited +in the compartments of the secret locker. + +A week passed by. Dantès employed it in manœuvring his yacht round the +island, studying it as a skilful horseman would the animal he destined +for some important service, till at the end of that time he was +perfectly conversant with its good and bad qualities. The former Dantès +proposed to augment, the latter to remedy. + +Upon the eighth day he discerned a small vessel under full sail +approaching Monte Cristo. As it drew near, he recognized it as the boat +he had given to Jacopo. He immediately signalled it. His signal was +returned, and in two hours afterwards the new-comer lay at anchor +beside the yacht. + +A mournful answer awaited each of Edmond’s eager inquiries as to the +information Jacopo had obtained. Old Dantès was dead, and Mercédès had +disappeared. + +Dantès listened to these melancholy tidings with outward calmness; but, +leaping lightly ashore, he signified his desire to be quite alone. In a +couple of hours he returned. Two of the men from Jacopo’s boat came on +board the yacht to assist in navigating it, and he gave orders that she +should be steered direct to Marseilles. For his father’s death he was +in some manner prepared; but he knew not how to account for the +mysterious disappearance of Mercédès. + +Without divulging his secret, Dantès could not give sufficiently clear +instructions to an agent. There were, besides, other particulars he was +desirous of ascertaining, and those were of a nature he alone could +investigate in a manner satisfactory to himself. His looking-glass had +assured him, during his stay at Leghorn, that he ran no risk of +recognition; moreover, he had now the means of adopting any disguise he +thought proper. One fine morning, then, his yacht, followed by the +little fishing-boat, boldly entered the port of Marseilles, and +anchored exactly opposite the spot from whence, on the +never-to-be-forgotten night of his departure for the Château d’If, he +had been put on board the boat destined to convey him thither. + +0315m + + + +Still Dantès could not view without a shudder the approach of a +gendarme who accompanied the officers deputed to demand his bill of +health ere the yacht was permitted to hold communication with the +shore; but with that perfect self-possession he had acquired during his +acquaintance with Faria, Dantès coolly presented an English passport he +had obtained from Leghorn, and as this gave him a standing which a +French passport would not have afforded, he was informed that there +existed no obstacle to his immediate debarkation. + +The first person to attract the attention of Dantès, as he landed on +the Canebière, was one of the crew belonging to the _Pharaon_. Edmond +welcomed the meeting with this fellow—who had been one of his own +sailors—as a sure means of testing the extent of the change which time +had worked in his own appearance. Going straight towards him, he +propounded a variety of questions on different subjects, carefully +watching the man’s countenance as he did so; but not a word or look +implied that he had the slightest idea of ever having seen before the +person with whom he was then conversing. + +Giving the sailor a piece of money in return for his civility, Dantès +proceeded onwards; but ere he had gone many steps he heard the man +loudly calling him to stop. + +Dantès instantly turned to meet him. + +“I beg your pardon, sir,” said the honest fellow, in almost breathless +haste, “but I believe you made a mistake; you intended to give me a +two-franc piece, and see, you gave me a double Napoleon.” + +“Thank you, my good friend. I see that I have made a trifling mistake, +as you say; but by way of rewarding your honesty I give you another +double Napoleon, that you may drink to my health, and be able to ask +your messmates to join you.” + +So extreme was the surprise of the sailor, that he was unable even to +thank Edmond, whose receding figure he continued to gaze after in +speechless astonishment. “Some nabob from India,” was his comment. + +Dantès, meanwhile, went on his way. Each step he trod oppressed his +heart with fresh emotion; his first and most indelible recollections +were there; not a tree, not a street, that he passed but seemed filled +with dear and cherished memories. And thus he proceeded onwards till he +arrived at the end of the Rue de Noailles, from whence a full view of +the Allées de Meilhan was obtained. At this spot, so pregnant with fond +and filial remembrances, his heart beat almost to bursting, his knees +tottered under him, a mist floated over his sight, and had he not clung +for support to one of the trees, he would inevitably have fallen to the +ground and been crushed beneath the many vehicles continually passing +there. Recovering himself, however, he wiped the perspiration from his +brows, and stopped not again till he found himself at the door of the +house in which his father had lived. + +The nasturtiums and other plants, which his father had delighted to +train before his window, had all disappeared from the upper part of the +house. + +Leaning against the tree, he gazed thoughtfully for a time at the upper +stories of the shabby little house. Then he advanced to the door, and +asked whether there were any rooms to be let. Though answered in the +negative, he begged so earnestly to be permitted to visit those on the +fifth floor, that, in despite of the oft-repeated assurance of the +_concierge_ that they were occupied, Dantès succeeded in inducing the +man to go up to the tenants, and ask permission for a gentleman to be +allowed to look at them. + +The tenants of the humble lodging were a young couple who had been +scarcely married a week; and seeing them, Dantès sighed heavily. +Nothing in the two small chambers forming the apartments remained as it +had been in the time of the elder Dantès; the very paper was different, +while the articles of antiquated furniture with which the rooms had +been filled in Edmond’s time had all disappeared; the four walls alone +remained as he had left them. + +The bed belonging to the present occupants was placed as the former +owner of the chamber had been accustomed to have his; and, in spite of +his efforts to prevent it, the eyes of Edmond were suffused in tears as +he reflected that on that spot the old man had breathed his last, +vainly calling for his son. + +The young couple gazed with astonishment at the sight of their +visitor’s emotion, and wondered to see the large tears silently chasing +each other down his otherwise stern and immovable features; but they +felt the sacredness of his grief, and kindly refrained from questioning +him as to its cause, while, with instinctive delicacy, they left him to +indulge his sorrow alone. + +0317m + + + +When he withdrew from the scene of his painful recollections, they both +accompanied him downstairs, reiterating their hope that he would come +again whenever he pleased, and assuring him that their poor dwelling +would ever be open to him. + +As Edmond passed the door on the fourth floor, he paused to inquire +whether Caderousse the tailor still dwelt there; but he received for +reply, that the person in question had got into difficulties, and at +the present time kept a small inn on the route from Bellegarde to +Beaucaire. + +Having obtained the address of the person to whom the house in the +Allées de Meilhan belonged, Dantès next proceeded thither, and, under +the name of Lord Wilmore (the name and title inscribed on his +passport), purchased the small dwelling for the sum of twenty-five +thousand francs, at least ten thousand more than it was worth; but had +its owner asked half a million, it would unhesitatingly have been +given. + +The very same day the occupants of the apartments on the fifth floor of +the house, now become the property of Dantès, were duly informed by the +notary who had arranged the necessary transfer of deeds, etc., that the +new landlord gave them their choice of any of the rooms in the house, +without the least augmentation of rent, upon condition of their giving +instant possession of the two small chambers they at present inhabited. + +This strange event aroused great wonder and curiosity in the +neighborhood of the Allées de Meilhan, and a multitude of theories were +afloat, none of which was anywhere near the truth. But what raised +public astonishment to a climax, and set all conjecture at defiance, +was the knowledge that the same stranger who had in the morning visited +the Allées de Meilhan had been seen in the evening walking in the +little village of the Catalans, and afterwards observed to enter a poor +fisherman’s hut, and to pass more than an hour in inquiring after +persons who had either been dead or gone away for more than fifteen or +sixteen years. + +But on the following day the family from whom all these particulars had +been asked received a handsome present, consisting of an entirely new +fishing-boat, with two seines and a tender. + +The delighted recipients of these munificent gifts would gladly have +poured out their thanks to their generous benefactor, but they had seen +him, upon quitting the hut, merely give some orders to a sailor, and +then springing lightly on horseback, leave Marseilles by the Porte +d’Aix. + + + + Chapter 26. The Pont du Gard Inn + +Such of my readers as have made a pedestrian excursion to the south of +France may perchance have noticed, about midway between the town of +Beaucaire and the village of Bellegarde,—a little nearer to the former +than to the latter,—a small roadside inn, from the front of which hung, +creaking and flapping in the wind, a sheet of tin covered with a +grotesque representation of the Pont du Gard. This modern place of +entertainment stood on the left-hand side of the post road, and backed +upon the Rhône. It also boasted of what in Languedoc is styled a +garden, consisting of a small plot of ground, on the side opposite to +the main entrance reserved for the reception of guests. A few dingy +olives and stunted fig-trees struggled hard for existence, but their +withered dusty foliage abundantly proved how unequal was the conflict. +Between these sickly shrubs grew a scanty supply of garlic, tomatoes, +and eschalots; while, lone and solitary, like a forgotten sentinel, a +tall pine raised its melancholy head in one of the corners of this +unattractive spot, and displayed its flexible stem and fan-shaped +summit dried and cracked by the fierce heat of the sub-tropical sun. + +All these trees, great or small, were turned in the direction to which +the Mistral blows, one of the three curses of Provence, the others +being the Durance and the Parliament. + +In the surrounding plain, which more resembled a dusty lake than solid +ground, were scattered a few miserable stalks of wheat, the effect, no +doubt, of a curious desire on the part of the agriculturists of the +country to see whether such a thing as the raising of grain in those +parched regions was practicable. Each stalk served as a perch for a +grasshopper, which regaled the passers-by through this Egyptian scene +with its strident, monotonous note. + +For about seven or eight years the little tavern had been kept by a man +and his wife, with two servants,—a chambermaid named Trinette, and a +hostler called Pecaud. This small staff was quite equal to all the +requirements, for a canal between Beaucaire and Aiguemortes had +revolutionized transportation by substituting boats for the cart and +the stagecoach. And, as though to add to the daily misery which this +prosperous canal inflicted on the unfortunate innkeeper, whose utter +ruin it was fast accomplishing, it was situated between the Rhône from +which it had its source and the post-road it had depleted, not a +hundred steps from the inn, of which we have given a brief but faithful +description. + +The innkeeper himself was a man of from forty to fifty-five years of +age, tall, strong, and bony, a perfect specimen of the natives of those +southern latitudes; he had dark, sparkling, and deep-set eyes, hooked +nose, and teeth white as those of a carnivorous animal; his hair, like +his beard, which he wore under his chin, was thick and curly, and in +spite of his age but slightly interspersed with a few silvery threads. +His naturally dark complexion had assumed a still further shade of +brown from the habit the unfortunate man had acquired of stationing +himself from morning till eve at the threshold of his door, on the +lookout for guests who seldom came, yet there he stood, day after day, +exposed to the meridional rays of a burning sun, with no other +protection for his head than a red handkerchief twisted around it, +after the manner of the Spanish muleteers. This man was our old +acquaintance, Gaspard Caderousse. + +His wife, on the contrary, whose maiden name had been Madeleine +Radelle, was pale, meagre, and sickly-looking. Born in the neighborhood +of Arles, she had shared in the beauty for which its women are +proverbial; but that beauty had gradually withered beneath the +devastating influence of the slow fever so prevalent among dwellers by +the ponds of Aiguemortes and the marshes of Camargue. She remained +nearly always in her second-floor chamber, shivering in her chair, or +stretched languid and feeble on her bed, while her husband kept his +daily watch at the door—a duty he performed with so much the greater +willingness, as it saved him the necessity of listening to the endless +plaints and murmurs of his helpmate, who never saw him without breaking +out into bitter invectives against fate; to all of which her husband +would calmly return an unvarying reply, in these philosophic words: + +“Hush, La Carconte. It is God’s pleasure that things should be so.” + +The sobriquet of La Carconte had been bestowed on Madeleine Radelle +from the fact that she had been born in a village, so called, situated +between Salon and Lambesc; and as a custom existed among the +inhabitants of that part of France where Caderousse lived of styling +every person by some particular and distinctive appellation, her +husband had bestowed on her the name of La Carconte in place of her +sweet and euphonious name of Madeleine, which, in all probability, his +rude guttural language would not have enabled him to pronounce. + +Still, let it not be supposed that amid this affected resignation to +the will of Providence, the unfortunate innkeeper did not writhe under +the double misery of seeing the hateful canal carry off his customers +and his profits, and the daily infliction of his peevish partner’s +murmurs and lamentations. + +0323m + + + +Like other dwellers in the south, he was a man of sober habits and +moderate desires, but fond of external show, vain, and addicted to +display. During the days of his prosperity, not a festivity took place +without himself and wife being among the spectators. He dressed in the +picturesque costume worn upon grand occasions by the inhabitants of the +south of France, bearing equal resemblance to the style adopted both by +the Catalans and Andalusians; while La Carconte displayed the charming +fashion prevalent among the women of Arles, a mode of attire borrowed +equally from Greece and Arabia. But, by degrees, watch-chains, +necklaces, parti-colored scarves, embroidered bodices, velvet vests, +elegantly worked stockings, striped gaiters, and silver buckles for the +shoes, all disappeared; and Gaspard Caderousse, unable to appear abroad +in his pristine splendor, had given up any further participation in the +pomps and vanities, both for himself and wife, although a bitter +feeling of envious discontent filled his mind as the sound of mirth and +merry music from the joyous revellers reached even the miserable +hostelry to which he still clung, more for the shelter than the profit +it afforded. + +Caderousse, then, was, as usual, at his place of observation before the +door, his eyes glancing listlessly from a piece of closely shaven +grass—on which some fowls were industriously, though fruitlessly, +endeavoring to turn up some grain or insect suited to their palate—to +the deserted road, which led away to the north and south, when he was +aroused by the shrill voice of his wife, and grumbling to himself as he +went, he mounted to her chamber, first taking care, however, to set the +entrance door wide open, as an invitation to any chance traveller who +might be passing. + +At the moment Caderousse quitted his sentry-like watch before the door, +the road on which he so eagerly strained his sight was void and lonely +as a desert at midday. There it lay stretching out into one +interminable line of dust and sand, with its sides bordered by tall, +meagre trees, altogether presenting so uninviting an appearance, that +no one in his senses could have imagined that any traveller, at liberty +to regulate his hours for journeying, would choose to expose himself in +such a formidable Sahara. + +Nevertheless, had Caderousse but retained his post a few minutes +longer, he might have caught a dim outline of something approaching +from the direction of Bellegarde; as the moving object drew nearer, +he would easily have perceived that it consisted of a man and horse, +between whom the kindest and most amiable understanding appeared +to exist. The horse was of Hungarian breed, and ambled along at an +easy pace. His rider was a priest, dressed in black, and wearing a +three-cornered hat; and, despite of the ardent rays of a noonday sun, +the pair came on with a fair degree of rapidity. + +Having arrived before the Pont du Gard, the horse stopped, but whether +for his own pleasure or that of his rider would have been difficult to +say. However that might have been, the priest, dismounting, led his +steed by the bridle in search of some place to which he could secure +him. Availing himself of a handle that projected from a half-fallen +door, he tied the animal safely and having drawn a red cotton +handkerchief, from his pocket, wiped away the perspiration that +streamed from his brow, then, advancing to the door, struck thrice with +the end of his iron-shod stick. + +At this unusual sound, a huge black dog came rushing to meet the daring +assailant of his ordinarily tranquil abode, snarling and displaying his +sharp white teeth with a determined hostility that abundantly proved +how little he was accustomed to society. At that moment a heavy +footstep was heard descending the wooden staircase that led from the +upper floor, and, with many bows and courteous smiles, the host of the +Pont du Gard besought his guest to enter. + +0319m + + + +“You are welcome, sir, most welcome!” repeated the astonished +Caderousse. “Now, then, Margotin,” cried he, speaking to the dog, “will +you be quiet? Pray don’t heed him, sir!—he only barks, he never bites. +I make no doubt a glass of good wine would be acceptable this +dreadfully hot day.” Then perceiving for the first time the garb of the +traveller he had to entertain, Caderousse hastily exclaimed: “A +thousand pardons! I really did not observe whom I had the honor to +receive under my poor roof. What would the abbé please to have? What +refreshment can I offer? All I have is at his service.” + +The priest gazed on the person addressing him with a long and searching +gaze—there even seemed a disposition on his part to court a similar +scrutiny on the part of the innkeeper; then, observing in the +countenance of the latter no other expression than extreme surprise at +his own want of attention to an inquiry so courteously worded, he +deemed it as well to terminate this dumb show, and therefore said, +speaking with a strong Italian accent, “You are, I presume, M. +Caderousse?” + +“Yes, sir,” answered the host, even more surprised at the question than +he had been by the silence which had preceded it; “I am Gaspard +Caderousse, at your service.” + +“Gaspard Caderousse,” rejoined the priest. “Yes,—Christian and surname +are the same. You formerly lived, I believe in the Allées de Meilhan, +on the fourth floor?” + +0325m + + + +“I did.” + +“And you followed the business of a tailor?” + +“True, I was a tailor, till the trade fell off. It is so hot at +Marseilles, that really I believe that the respectable inhabitants will +in time go without any clothing whatever. But talking of heat, is there +nothing I can offer you by way of refreshment?” + +“Yes; let me have a bottle of your best wine, and then, with your +permission, we will resume our conversation from where we left off.” + +“As you please, sir,” said Caderousse, who, anxious not to lose the +present opportunity of finding a customer for one of the few bottles of +Cahors still remaining in his possession, hastily raised a trap-door in +the floor of the apartment they were in, which served both as parlor +and kitchen. + +Upon issuing forth from his subterranean retreat at the expiration of +five minutes, he found the abbé seated upon a wooden stool, leaning his +elbow on a table, while Margotin, whose animosity seemed appeased by +the unusual command of the traveller for refreshments, had crept up to +him, and had established himself very comfortably between his knees, +his long, skinny neck resting on his lap, while his dim eye was fixed +earnestly on the traveller’s face. + +“Are you quite alone?” inquired the guest, as Caderousse placed before +him the bottle of wine and a glass. + +“Quite, quite alone,” replied the man—“or, at least, practically so, +for my poor wife, who is the only person in the house besides myself, +is laid up with illness, and unable to render me the least assistance, +poor thing!” + +“You are married, then?” said the priest, with a show of interest, +glancing round as he spoke at the scanty furnishings of the apartment. + +“Ah, sir,” said Caderousse with a sigh, “it is easy to perceive I am +not a rich man; but in this world a man does not thrive the better for +being honest.” The abbé fixed on him a searching, penetrating glance. + +“Yes, honest—I can certainly say that much for myself,” continued the +innkeeper, fairly sustaining the scrutiny of the abbé’s gaze; “I can +boast with truth of being an honest man; and,” continued he +significantly, with a hand on his breast and shaking his head, “that is +more than everyone can say nowadays.” + +0327m + + + +“So much the better for you, if what you assert be true,” said the +abbé; “for I am firmly persuaded that, sooner or later, the good will +be rewarded, and the wicked punished.” + +“Such words as those belong to your profession,” answered Caderousse, +“and you do well to repeat them; but,” added he, with a bitter +expression of countenance, “one is free to believe them or not, as one +pleases.” + +“You are wrong to speak thus,” said the abbé; “and perhaps I may, in my +own person, be able to prove to you how completely you are in error.” + +“What mean you?” inquired Caderousse with a look of surprise. + +“In the first place, I must be satisfied that you are the person I am +in search of.” + +“What proofs do you require?” + +“Did you, in the year 1814 or 1815, know anything of a young sailor +named Dantès?” + +“Dantès? Did I know poor dear Edmond? Why, Edmond Dantès and myself +were intimate friends!” exclaimed Caderousse, whose countenance flushed +darkly as he caught the penetrating gaze of the abbé fixed on him, +while the clear, calm eye of the questioner seemed to dilate with +feverish scrutiny. + +“You remind me,” said the priest, “that the young man concerning whom I +asked you was said to bear the name of Edmond.” + +“Said to bear the name!” repeated Caderousse, becoming excited and +eager. “Why, he was so called as truly as I myself bore the appellation +of Gaspard Caderousse; but tell me, I pray, what has become of poor +Edmond? Did you know him? Is he alive and at liberty? Is he prosperous +and happy?” + +“He died a more wretched, hopeless, heart-broken prisoner than the +felons who pay the penalty of their crimes at the galleys of Toulon.” + +A deadly pallor followed the flush on the countenance of Caderousse, +who turned away, and the priest saw him wiping the tears from his eyes +with the corner of the red handkerchief twisted round his head. + +“Poor fellow, poor fellow!” murmured Caderousse. “Well, there, sir, is +another proof that good people are never rewarded on this earth, and +that none but the wicked prosper. Ah,” continued Caderousse, speaking +in the highly colored language of the South, “the world grows worse and +worse. Why does not God, if he really hates the wicked, as he is said +to do, send down brimstone and fire, and consume them altogether?” + +“You speak as though you had loved this young Dantès,” observed the +abbé, without taking any notice of his companion’s vehemence. + +“And so I did,” replied Caderousse; “though once, I confess, I envied +him his good fortune. But I swear to you, sir, I swear to you, by +everything a man holds dear, I have, since then, deeply and sincerely +lamented his unhappy fate.” + +There was a brief silence, during which the fixed, searching eye of the +abbé was employed in scrutinizing the agitated features of the +innkeeper. + +“You knew the poor lad, then?” continued Caderousse. + +“I was called to see him on his dying bed, that I might administer to +him the consolations of religion.” + +“And of what did he die?” asked Caderousse in a choking voice. + +“Of what, think you, do young and strong men die in prison, when they +have scarcely numbered their thirtieth year, unless it be of +imprisonment?” Caderousse wiped away the large beads of perspiration +that gathered on his brow. + +0329m + + + +“But the strangest part of the story is,” resumed the abbé, “that +Dantès, even in his dying moments, swore by his crucified Redeemer, +that he was utterly ignorant of the cause of his detention.” + +“And so he was,” murmured Caderousse. “How should he have been +otherwise? Ah, sir, the poor fellow told you the truth.” + +“And for that reason, he besought me to try and clear up a mystery he +had never been able to penetrate, and to clear his memory should any +foul spot or stain have fallen on it.” + +And here the look of the abbé, becoming more and more fixed, seemed to +rest with ill-concealed satisfaction on the gloomy depression which was +rapidly spreading over the countenance of Caderousse. + +“A rich Englishman,” continued the abbé, “who had been his companion in +misfortune, but had been released from prison during the second +restoration, was possessed of a diamond of immense value; this jewel he +bestowed on Dantès upon himself quitting the prison, as a mark of his +gratitude for the kindness and brotherly care with which Dantès had +nursed him in a severe illness he underwent during his confinement. +Instead of employing this diamond in attempting to bribe his jailers, +who might only have taken it and then betrayed him to the governor, +Dantès carefully preserved it, that in the event of his getting out of +prison he might have wherewithal to live, for the sale of such a +diamond would have quite sufficed to make his fortune.” + +“Then, I suppose,” asked Caderousse, with eager, glowing looks, “that +it was a stone of immense value?” + +“Why, everything is relative,” answered the abbé. “To one in Edmond’s +position the diamond certainly was of great value. It was estimated at +fifty thousand francs.” + +“Bless me!” exclaimed Caderousse, “fifty thousand francs! Surely the +diamond was as large as a nut to be worth all that.” + +“No,” replied the abbé, “it was not of such a size as that; but you +shall judge for yourself. I have it with me.” + +The sharp gaze of Caderousse was instantly directed towards the +priest’s garments, as though hoping to discover the location of the +treasure. Calmly drawing forth from his pocket a small box covered with +black shagreen, the abbé opened it, and displayed to the dazzled eyes +of Caderousse the sparkling jewel it contained, set in a ring of +admirable workmanship. + +“And that diamond,” cried Caderousse, almost breathless with eager +admiration, “you say, is worth fifty thousand francs?” + +“It is, without the setting, which is also valuable,” replied the abbé, +as he closed the box, and returned it to his pocket, while its +brilliant hues seemed still to dance before the eyes of the fascinated +innkeeper. + +“But how comes the diamond in your possession, sir? Did Edmond make you +his heir?” + +“No, merely his testamentary executor. ‘I once possessed four dear and +faithful friends, besides the maiden to whom I was betrothed’ he said; +‘and I feel convinced they have all unfeignedly grieved over my loss. +The name of one of the four friends is Caderousse.’” The innkeeper +shivered. + +“‘Another of the number,’” continued the abbé, without seeming to +notice the emotion of Caderousse, “‘is called Danglars; and the third, +in spite of being my rival, entertained a very sincere affection for +me.’” + +A fiendish smile played over the features of Caderousse, who was about +to break in upon the abbé’s speech, when the latter, waving his hand, +said, “Allow me to finish first, and then if you have any observations +to make, you can do so afterwards. ‘The third of my friends, although +my rival, was much attached to me,—his name was Fernand; that of my +betrothed was’—Stay, stay,” continued the abbé, “I have forgotten what +he called her.” + +“Mercédès,” said Caderousse eagerly. + +“True,” said the abbé, with a stifled sigh, “Mercédès it was.” + +“Go on,” urged Caderousse. + +“Bring me a _carafe_ of water,” said the abbé. + +Caderousse quickly performed the stranger’s bidding; and after pouring +some into a glass, and slowly swallowing its contents, the abbé, +resuming his usual placidity of manner, said, as he placed his empty +glass on the table: + +“Where did we leave off?” + +“The name of Edmond’s betrothed was Mercédès.” + +“To be sure. ‘You will go to Marseilles,’ said Dantès,—for you +understand, I repeat his words just as he uttered them. Do you +understand?” + +“Perfectly.” + +“‘You will sell this diamond; you will divide the money into five equal +parts, and give an equal portion to these good friends, the only +persons who have loved me upon earth.’” + +“But why into five parts?” asked Caderousse; “you only mentioned four +persons.” + +“Because the fifth is dead, as I hear. The fifth sharer in Edmond’s +bequest, was his own father.” + +“Too true, too true!” ejaculated Caderousse, almost suffocated by the +contending passions which assailed him, “the poor old man did die.” + +“I learned so much at Marseilles,” replied the abbé, making a strong +effort to appear indifferent; “but from the length of time that has +elapsed since the death of the elder Dantès, I was unable to obtain any +particulars of his end. Can you enlighten me on that point?” + +“I do not know who could if I could not,” said Caderousse. “Why, I +lived almost on the same floor with the poor old man. Ah, yes, about a +year after the disappearance of his son the poor old man died.” + +“Of what did he die?” + +“Why, the doctors called his complaint gastro-enteritis, I believe; his +acquaintances say he died of grief; but I, who saw him in his dying +moments, I say he died of——” + +Caderousse paused. + +“Of what?” asked the priest, anxiously and eagerly. + +“Why, of downright starvation.” + +“Starvation!” exclaimed the abbé, springing from his seat. “Why, the +vilest animals are not suffered to die by such a death as that. The +very dogs that wander houseless and homeless in the streets find some +pitying hand to cast them a mouthful of bread; and that a man, a +Christian, should be allowed to perish of hunger in the midst of other +men who call themselves Christians, is too horrible for belief. Oh, it +is impossible!—utterly impossible!” + +“What I have said, I have said,” answered Caderousse. + +“And you are a fool for having said anything about it,” said a voice +from the top of the stairs. “Why should you meddle with what does not +concern you?” + +The two men turned quickly, and saw the sickly countenance of La +Carconte peering between the baluster rails; attracted by the sound of +voices, she had feebly dragged herself down the stairs, and, seated on +the lower step, head on knees, she had listened to the foregoing +conversation. + +“Mind your own business, wife,” replied Caderousse sharply. “This +gentleman asks me for information, which common politeness will not +permit me to refuse.” + +“Politeness, you simpleton!” retorted La Carconte. “What have you to do +with politeness, I should like to know? Better study a little common +prudence. How do you know the motives that person may have for trying +to extract all he can from you?” + +“I pledge you my word, madam,” said the abbé, “that my intentions are +good; and that your husband can incur no risk, provided he answers me +candidly.” + +“Ah, that’s all very fine,” retorted the woman. “Nothing is easier than +to begin with fair promises and assurances of nothing to fear; but when +poor, silly folks, like my husband there, have been persuaded to tell +all they know, the promises and assurances of safety are quickly +forgotten; and at some moment when nobody is expecting it, behold +trouble and misery, and all sorts of persecutions, are heaped on the +unfortunate wretches, who cannot even see whence all their afflictions +come.” + +“Nay, nay, my good woman, make yourself perfectly easy, I beg of you. +Whatever evils may befall you, they will not be occasioned by my +instrumentality, that I solemnly promise you.” + +La Carconte muttered a few inarticulate words, then let her head again +drop upon her knees, and went into a fit of ague, leaving the two +speakers to resume the conversation, but remaining so as to be able to +hear every word they uttered. Again the abbé had been obliged to +swallow a draught of water to calm the emotions that threatened to +overpower him. + +When he had sufficiently recovered himself, he said, “It appears, then, +that the miserable old man you were telling me of was forsaken by +everyone. Surely, had not such been the case, he would not have +perished by so dreadful a death.” + +“Why, he was not altogether forsaken,” continued Caderousse, “for +Mercédès the Catalan and Monsieur Morrel were very kind to him; but +somehow the poor old man had contracted a profound hatred for +Fernand—the very person,” added Caderousse with a bitter smile, “that +you named just now as being one of Dantès’ faithful and attached +friends.” + +“And was he not so?” asked the abbé. + +“Gaspard, Gaspard!” murmured the woman, from her seat on the stairs, +“mind what you are saying!” + +Caderousse made no reply to these words, though evidently irritated and +annoyed by the interruption, but, addressing the abbé, said, “Can a man +be faithful to another whose wife he covets and desires for himself? +But Dantès was so honorable and true in his own nature, that he +believed everybody’s professions of friendship. Poor Edmond, he was +cruelly deceived; but it was fortunate that he never knew, or he might +have found it more difficult, when on his deathbed, to pardon his +enemies. And, whatever people may say,” continued Caderousse, in his +native language, which was not altogether devoid of rude poetry, “I +cannot help being more frightened at the idea of the malediction of the +dead than the hatred of the living.” + +“Imbecile!” exclaimed La Carconte. + +“Do you, then, know in what manner Fernand injured Dantès?” inquired +the abbé of Caderousse. + +“Do I? No one better.” + +“Speak out then, say what it was!” + +“Gaspard!” cried La Carconte, “do as you will; you are master—but if +you take my advice you’ll hold your tongue.” + +“Well, wife,” replied Caderousse, “I don’t know but what you’re right!” + +“So you will say nothing?” asked the abbé. + +“Why, what good would it do?” asked Caderousse. “If the poor lad were +living, and came to me and begged that I would candidly tell which were +his true and which his false friends, why, perhaps, I should not +hesitate. But you tell me he is no more, and therefore can have nothing +to do with hatred or revenge, so let all such feeling be buried with +him.” + +“You prefer, then,” said the abbé, “that I should bestow on men you say +are false and treacherous, the reward intended for faithful +friendship?” + +“That is true enough,” returned Caderousse. “You say truly, the gift of +poor Edmond was not meant for such traitors as Fernand and Danglars; +besides, what would it be to them? no more than a drop of water in the +ocean.” + +“Remember,” chimed in La Carconte, “those two could crush you at a +single blow!” + +“How so?” inquired the abbé. “Are these persons, then, so rich and +powerful?” + +“Do you not know their history?” + +“I do not. Pray relate it to me!” + +Caderousse seemed to reflect for a few moments, then said, “No, truly, +it would take up too much time.” + +“Well, my good friend,” returned the abbé, in a tone that indicated +utter indifference on his part, “you are at liberty, either to speak or +be silent, just as you please; for my own part, I respect your scruples +and admire your sentiments; so let the matter end. I shall do my duty +as conscientiously as I can, and fulfil my promise to the dying man. My +first business will be to dispose of this diamond.” + +So saying, the abbé again drew the small box from his pocket, opened +it, and contrived to hold it in such a light, that a bright flash of +brilliant hues passed before the dazzled gaze of Caderousse. + +“Wife, wife!” cried he in a hoarse voice, “come here!” + +“Diamond!” exclaimed La Carconte, rising and descending to the chamber +with a tolerably firm step; “what diamond are you talking about?” + +“Why, did you not hear all we said?” inquired Caderousse. “It is a +beautiful diamond left by poor Edmond Dantès, to be sold, and the money +divided between his father, Mercédès, his betrothed bride, Fernand, +Danglars, and myself. The jewel is worth at least fifty thousand +francs.” + +“Oh, what a magnificent jewel!” cried the astonished woman. + +“The fifth part of the profits from this stone belongs to us then, does +it not?” asked Caderousse. + +“It does,” replied the abbé; “with the addition of an equal division of +that part intended for the elder Dantès, which I believe myself at +liberty to divide equally with the four survivors.” + +“And why among us four?” inquired Caderousse. + +“As being the friends Edmond esteemed most faithful and devoted to +him.” + +“I don’t call those friends who betray and ruin you,” murmured the wife +in her turn, in a low, muttering voice. + +“Of course not!” rejoined Caderousse quickly; “no more do I, and that +was what I was observing to this gentleman just now. I said I looked +upon it as a sacrilegious profanation to reward treachery, perhaps +crime.” + +“Remember,” answered the abbé calmly, as he replaced the jewel and its +case in the pocket of his cassock, “it is your fault, not mine, that I +do so. You will have the goodness to furnish me with the address of +both Fernand and Danglars, in order that I may execute Edmond’s last +wishes.” + +The agitation of Caderousse became extreme, and large drops of +perspiration rolled from his heated brow. As he saw the abbé rise from +his seat and go towards the door, as though to ascertain if his horse +were sufficiently refreshed to continue his journey, Caderousse and his +wife exchanged looks of deep meaning. + +0335m + + + +“There, you see, wife,” said the former, “this splendid diamond might +all be ours, if we chose!” + +“Do you believe it?” + +“Why, surely a man of his holy profession would not deceive us!” + +“Well,” replied La Carconte, “do as you like. For my part, I wash my +hands of the affair.” + +So saying, she once more climbed the staircase leading to her chamber, +her body convulsed with chills, and her teeth rattling in her head, in +spite of the intense heat of the weather. Arrived at the top stair, she +turned round, and called out, in a warning tone, to her husband, +“Gaspard, consider well what you are about to do!” + +“I have both reflected and decided,” answered he. + +La Carconte then entered her chamber, the flooring of which creaked +beneath her heavy, uncertain tread, as she proceeded towards her +armchair, into which she fell as though exhausted. + +“Well,” asked the abbé, as he returned to the apartment below, “what +have you made up your mind to do?” + +“To tell you all I know,” was the reply. + +“I certainly think you act wisely in so doing,” said the priest. “Not +because I have the least desire to learn anything you may please to +conceal from me, but simply that if, through your assistance, I could +distribute the legacy according to the wishes of the testator, why, so +much the better, that is all.” + +“I hope it may be so,” replied Caderousse, his face flushed with +cupidity. + +“I am all attention,” said the abbé. + +“Stop a minute,” answered Caderousse; “we might be interrupted in the +most interesting part of my story, which would be a pity; and it is as +well that your visit hither should be made known only to ourselves.” + +With these words he went stealthily to the door, which he closed, and, +by way of still greater precaution, bolted and barred it, as he was +accustomed to do at night. + +During this time the abbé had chosen his place for listening at his +ease. He removed his seat into a corner of the room, where he himself +would be in deep shadow, while the light would be fully thrown on the +narrator; then, with head bent down and hands clasped, or rather +clenched together, he prepared to give his whole attention to +Caderousse, who seated himself on the little stool, exactly opposite to +him. + +“Remember, this is no affair of mine,” said the trembling voice of La +Carconte, as though through the flooring of her chamber she viewed the +scene that was enacting below. + +“Enough, enough!” replied Caderousse; “say no more about it; I will +take all the consequences upon myself.” + +And he began his story. + + + + Chapter 27. The Story + +First, sir,” said Caderousse, “you must make me a promise.” + +“What is that?” inquired the abbé. + +“Why, if you ever make use of the details I am about to give you, that +you will never let anyone know that it was I who supplied them; for the +persons of whom I am about to talk are rich and powerful, and if they +only laid the tips of their fingers on me, I should break to pieces +like glass.” + +“Make yourself easy, my friend,” replied the abbé. “I am a priest, and +confessions die in my breast. Recollect, our only desire is to carry +out, in a fitting manner, the last wishes of our friend. Speak, then, +without reserve, as without hatred; tell the truth, the whole truth; I +do not know, never may know, the persons of whom you are about to +speak; besides, I am an Italian, and not a Frenchman, and belong to +God, and not to man, and I shall shortly retire to my convent, which I +have only quitted to fulfil the last wishes of a dying man.” + +This positive assurance seemed to give Caderousse a little courage. + +“Well, then, under these circumstances,” said Caderousse, “I will, I +even believe I ought to undeceive you as to the friendship which poor +Edmond thought so sincere and unquestionable.” + +“Begin with his father, if you please.” said the abbé; “Edmond talked +to me a great deal about the old man for whom he had the deepest love.” + +“The history is a sad one, sir,” said Caderousse, shaking his head; +“perhaps you know all the earlier part of it?” + +“Yes.” answered the abbé; “Edmond related to me everything until the +moment when he was arrested in a small cabaret close to Marseilles.” + +“At La Réserve! Oh, yes; I can see it all before me this moment.” + +“Was it not his betrothal feast?” + +“It was and the feast that began so gayly had a very sorrowful ending; +a police commissary, followed by four soldiers, entered, and Dantès was +arrested.” + +“Yes, and up to this point I know all,” said the priest. “Dantès +himself only knew that which personally concerned him, for he never +beheld again the five persons I have named to you, or heard mention of +anyone of them.” + +“Well, when Dantès was arrested, Monsieur Morrel hastened to obtain the +particulars, and they were very sad. The old man returned alone to his +home, folded up his wedding suit with tears in his eyes, and paced up +and down his chamber the whole day, and would not go to bed at all, for +I was underneath him and heard him walking the whole night; and for +myself, I assure you I could not sleep either, for the grief of the +poor father gave me great uneasiness, and every step he took went to my +heart as really as if his foot had pressed against my breast. + +“The next day Mercédès came to implore the protection of M. de +Villefort; she did not obtain it, however, and went to visit the old +man; when she saw him so miserable and heart-broken, having passed a +sleepless night, and not touched food since the previous day, she +wished him to go with her that she might take care of him; but the old +man would not consent. ‘No,’ was the old man’s reply, ‘I will not leave +this house, for my poor dear boy loves me better than anything in the +world; and if he gets out of prison he will come and see me the first +thing, and what would he think if I did not wait here for him?’ I heard +all this from the window, for I was anxious that Mercédès should +persuade the old man to accompany her, for his footsteps over my head +night and day did not leave me a moment’s repose.” + +“But did you not go upstairs and try to console the poor old man?” +asked the abbé. + +“Ah, sir,” replied Caderousse, “we cannot console those who will not be +consoled, and he was one of these; besides, I know not why, but he +seemed to dislike seeing me. One night, however, I heard his sobs, and +I could not resist my desire to go up to him, but when I reached his +door he was no longer weeping but praying. I cannot now repeat to you, +sir, all the eloquent words and imploring language he made use of; it +was more than piety, it was more than grief, and I, who am no canter, +and hate the Jesuits, said then to myself, ‘It is really well, and I am +very glad that I have not any children; for if I were a father and felt +such excessive grief as the old man does, and did not find in my memory +or heart all he is now saying, I should throw myself into the sea at +once, for I could not bear it.’” + +“Poor father!” murmured the priest. + +“From day to day he lived on alone, and more and more solitary. M. +Morrel and Mercédès came to see him, but his door was closed; and, +although I was certain he was at home, he would not make any answer. +One day, when, contrary to his custom, he had admitted Mercédès, and +the poor girl, in spite of her own grief and despair, endeavored to +console him, he said to her,—‘Be assured, my dear daughter, he is dead; +and instead of expecting him, it is he who is awaiting us; I am quite +happy, for I am the oldest, and of course shall see him first.’ + +“However well disposed a person may be, why, you see we leave off after +a time seeing persons who are in sorrow, they make one melancholy; and +so at last old Dantès was left all to himself, and I only saw from time +to time strangers go up to him and come down again with some bundle +they tried to hide; but I guessed what these bundles were, and that he +sold by degrees what he had to pay for his subsistence. At length the +poor old fellow reached the end of all he had; he owed three quarters’ +rent, and they threatened to turn him out; he begged for another week, +which was granted to him. I know this, because the landlord came into +my apartment when he left his. + +“For the first three days I heard him walking about as usual, but, on +the fourth I heard nothing. I then resolved to go up to him at all +risks. The door was closed, but I looked through the keyhole, and saw +him so pale and haggard, that believing him very ill, I went and told +M. Morrel and then ran on to Mercédès. They both came immediately, M. +Morrel bringing a doctor, and the doctor said it was inflammation of +the bowels, and ordered him a limited diet. I was there, too, and I +never shall forget the old man’s smile at this prescription. + +“From that time he received all who came; he had an excuse for not +eating any more; the doctor had put him on a diet.” + +The abbé uttered a kind of groan. + +“The story interests you, does it not, sir?” inquired Caderousse. + +“Yes,” replied the abbé, “it is very affecting.” + +“Mercédès came again, and she found him so altered that she was even +more anxious than before to have him taken to her own home. This was M. +Morrel’s wish also, who would fain have conveyed the old man against +his consent; but the old man resisted, and cried so that they were +actually frightened. Mercédès remained, therefore, by his bedside, and +M. Morrel went away, making a sign to the Catalan that he had left his +purse on the chimney-piece; but, availing himself of the doctor’s +order, the old man would not take any sustenance; at length (after nine +days of despair and fasting), the old man died, cursing those who had +caused his misery, and saying to Mercédès, ‘If you ever see my Edmond +again, tell him I die blessing him.’” + +The abbé rose from his chair, made two turns round the chamber, and +pressed his trembling hand against his parched throat. + +“And you believe he died——” + +“Of hunger, sir, of hunger,” said Caderousse. “I am as certain of it as +that we two are Christians.” + +The abbé, with a shaking hand, seized a glass of water that was +standing by him half-full, swallowed it at one gulp, and then resumed +his seat, with red eyes and pale cheeks. + +“This was, indeed, a horrid event,” said he in a hoarse voice. + +“The more so, sir, as it was men’s and not God’s doing.” + +“Tell me of those men,” said the abbé, “and remember too,” he added in +an almost menacing tone, “you have promised to tell me everything. Tell +me, therefore, who are these men who killed the son with despair, and +the father with famine?” + +“Two men jealous of him, sir; one from love, and the other from +ambition,—Fernand and Danglars.” + +“How was this jealousy manifested? Speak on.” + +“They denounced Edmond as a Bonapartist agent.” + +“Which of the two denounced him? Which was the real delinquent?” + +“Both, sir; one with a letter, and the other put it in the post.” + +“And where was this letter written?” + +“At La Réserve, the day before the betrothal feast.” + +“’Twas so, then—’twas so, then,” murmured the abbé. “Oh, Faria, Faria, +how well did you judge men and things!” + +“What did you please to say, sir?” asked Caderousse. + +“Nothing, nothing,” replied the priest; “go on.” + +“It was Danglars who wrote the denunciation with his left hand, that +his writing might not be recognized, and Fernand who put it in the +post.” + +“But,” exclaimed the abbé suddenly, “you were there yourself.” + +“I!” said Caderousse, astonished; “who told you I was there?” + +The abbé saw he had overshot the mark, and he added quickly,—“No one; +but in order to have known everything so well, you must have been an +eye-witness.” + +“True, true!” said Caderousse in a choking voice, “I was there.” + +“And did you not remonstrate against such infamy?” asked the abbé; “if +not, you were an accomplice.” + +“Sir,” replied Caderousse, “they had made me drink to such an excess +that I nearly lost all perception. I had only an indistinct +understanding of what was passing around me. I said all that a man in +such a state could say; but they both assured me that it was a jest +they were carrying on, and perfectly harmless.” + +“Next day—next day, sir, you must have seen plain enough what they had +been doing, yet you said nothing, though you were present when Dantès +was arrested.” + +“Yes, sir, I was there, and very anxious to speak; but Danglars +restrained me. ‘If he should really be guilty,’ said he, ‘and did +really put in to the Island of Elba; if he is really charged with a +letter for the Bonapartist committee at Paris, and if they find this +letter upon him, those who have supported him will pass for his +accomplices.’ I confess I had my fears, in the state in which politics +then were, and I held my tongue. It was cowardly, I confess, but it was +not criminal.” + +0341m + + + +“I understand—you allowed matters to take their course, that was all.” + +“Yes, sir,” answered Caderousse; “and remorse preys on me night and +day. I often ask pardon of God, I swear to you, because this action, +the only one with which I have seriously to reproach myself in all my +life, is no doubt the cause of my abject condition. I am expiating a +moment of selfishness, and so I always say to La Carconte, when she +complains, ‘Hold your tongue, woman; it is the will of God.’” And +Caderousse bowed his head with every sign of real repentance. + +“Well, sir,” said the abbé, “you have spoken unreservedly; and thus to +accuse yourself is to deserve pardon.” + +“Unfortunately, Edmond is dead, and has not pardoned me.” + +“He did not know,” said the abbé. + +“But he knows it all now,” interrupted Caderousse; “they say the dead +know everything.” + +There was a brief silence; the abbé rose and paced up and down +pensively, and then resumed his seat. + +“You have two or three times mentioned a M. Morrel,” he said; “who was +he?” + +“The owner of the _Pharaon_ and patron of Dantès.” + +“And what part did he play in this sad drama?” inquired the abbé. + +“The part of an honest man, full of courage and real regard. Twenty +times he interceded for Edmond. When the emperor returned, he wrote, +implored, threatened, and so energetically, that on the second +restoration he was persecuted as a Bonapartist. Ten times, as I told +you, he came to see Dantès’ father, and offered to receive him in his +own house; and the night or two before his death, as I have already +said, he left his purse on the mantelpiece, with which they paid the +old man’s debts, and buried him decently; and so Edmond’s father died, +as he had lived, without doing harm to anyone. I have the purse still +by me—a large one, made of red silk.” + +“And,” asked the abbé, “is M. Morrel still alive?” + +“Yes,” replied Caderousse. + +“In that case,” replied the abbé, “he should be a man blessed of God, +rich, happy.” + +Caderousse smiled bitterly. “Yes, happy as myself,” said he. + +“What! M. Morrel unhappy?” exclaimed the abbé. + +“He is reduced almost to the last extremity—nay, he is almost at the +point of dishonor.” + +“How?” + +“Yes,” continued Caderousse, “so it is; after five-and-twenty years of +labor, after having acquired a most honorable name in the trade of +Marseilles, M. Morrel is utterly ruined; he has lost five ships in two +years, has suffered by the bankruptcy of three large houses, and his +only hope now is in that very _Pharaon_ which poor Dantès commanded, +and which is expected from the Indies with a cargo of cochineal and +indigo. If this ship founders, like the others, he is a ruined man.” + +“And has the unfortunate man wife or children?” inquired the abbé. + +“Yes, he has a wife, who through everything has behaved like an angel; +he has a daughter, who was about to marry the man she loved, but whose +family now will not allow him to wed the daughter of a ruined man; he +has, besides, a son, a lieutenant in the army; and, as you may suppose, +all this, instead of lessening, only augments his sorrows. If he were +alone in the world he would blow out his brains, and there would be an +end.” + +“Horrible!” ejaculated the priest. + +“And it is thus heaven recompenses virtue, sir,” added Caderousse. “You +see, I, who never did a bad action but that I have told you of—am in +destitution, with my poor wife dying of fever before my very eyes, and +I unable to do anything in the world for her; I shall die of hunger, as +old Dantès did, while Fernand and Danglars are rolling in wealth.” + +“How is that?” + +“Because their deeds have brought them good fortune, while honest men +have been reduced to misery.” + +“What has become of Danglars, the instigator, and therefore the most +guilty?” + +“What has become of him? Why, he left Marseilles, and was taken, on the +recommendation of M. Morrel, who did not know his crime, as cashier +into a Spanish bank. During the war with Spain he was employed in the +commissariat of the French army, and made a fortune; then with that +money he speculated in the funds, and trebled or quadrupled his +capital; and, having first married his banker’s daughter, who left him +a widower, he has married a second time, a widow, a Madame de Nargonne, +daughter of M. de Servieux, the king’s chamberlain, who is in high +favor at court. He is a millionaire, and they have made him a baron, +and now he is the Baron Danglars, with a fine residence in the Rue du +Mont-Blanc, with ten horses in his stables, six footmen in his +antechamber, and I know not how many millions in his strongbox.” + +“Ah!” said the abbé, in a peculiar tone, “he is happy.” + +“Happy? Who can answer for that? Happiness or unhappiness is the secret +known but to one’s self and the walls—walls have ears but no tongue; +but if a large fortune produces happiness, Danglars is happy.” + +“And Fernand?” + +“Fernand? Why, much the same story.” + +“But how could a poor Catalan fisher-boy, without education or +resources, make a fortune? I confess this staggers me.” + +“And it has staggered everybody. There must have been in his life some +strange secret that no one knows.” + +“But, then, by what visible steps has he attained this high fortune or +high position?” + +“Both, sir—he has both fortune and position—both.” + +“This must be impossible!” + +“It would seem so; but listen, and you will understand. Some days +before the return of the emperor, Fernand was drafted. The Bourbons +left him quietly enough at the Catalans, but Napoleon returned, a +special levy was made, and Fernand was compelled to join. I went too; +but as I was older than Fernand, and had just married my poor wife, I +was only sent to the coast. Fernand was enrolled in the active army, +went to the frontier with his regiment, and was at the battle of Ligny. +The night after that battle he was sentry at the door of a general who +carried on a secret correspondence with the enemy. That same night the +general was to go over to the English. He proposed to Fernand to +accompany him; Fernand agreed to do so, deserted his post, and followed +the general. + +“Fernand would have been court-martialed if Napoleon had remained on +the throne, but his action was rewarded by the Bourbons. He returned to +France with the epaulet of sub-lieutenant, and as the protection of the +general, who is in the highest favor, was accorded to him, he was a +captain in 1823, during the Spanish war—that is to say, at the time +when Danglars made his early speculations. Fernand was a Spaniard, and +being sent to Spain to ascertain the feeling of his fellow-countrymen, +found Danglars there, got on very intimate terms with him, won over the +support of the royalists at the capital and in the provinces, received +promises and made pledges on his own part, guided his regiment by paths +known to himself alone through the mountain gorges which were held by +the royalists, and, in fact, rendered such services in this brief +campaign that, after the taking of Trocadero, he was made colonel, and +received the title of count and the cross of an officer of the Legion +of Honor.” + +“Destiny! destiny!” murmured the abbé. + +“Yes, but listen: this was not all. The war with Spain being ended, +Fernand’s career was checked by the long peace which seemed likely to +endure throughout Europe. Greece only had risen against Turkey, and had +begun her war of independence; all eyes were turned towards Athens—it +was the fashion to pity and support the Greeks. The French government, +without protecting them openly, as you know, gave countenance to +volunteer assistance. Fernand sought and obtained leave to go and serve +in Greece, still having his name kept on the army roll. + +0345m + + + +Some time after, it was stated that the Comte de Morcerf (this was the +name he bore) had entered the service of Ali Pasha with the rank of +instructor-general. Ali Pasha was killed, as you know, but before he +died he recompensed the services of Fernand by leaving him a +considerable sum, with which he returned to France, when he was +gazetted lieutenant-general.” + +“So that now——?” inquired the abbé. + +“So that now,” continued Caderousse, “he owns a magnificent house—No. +27, Rue du Helder, Paris.” + +The abbé opened his mouth, hesitated for a moment, then, making an +effort at self-control, he said, “And Mercédès—they tell me that she +has disappeared?” + +“Disappeared,” said Caderousse, “yes, as the sun disappears, to rise +the next day with still more splendor.” + +“Has she made a fortune also?” inquired the abbé, with an ironical +smile. + +“Mercédès is at this moment one of the greatest ladies in Paris,” +replied Caderousse. + +“Go on,” said the abbé; “it seems as if I were listening to the story +of a dream. But I have seen things so extraordinary, that what you tell +me seems less astonishing than it otherwise might.” + +“Mercédès was at first in the deepest despair at the blow which +deprived her of Edmond. I have told you of her attempts to propitiate +M. de Villefort, her devotion to the elder Dantès. In the midst of her +despair, a new affliction overtook her. This was the departure of +Fernand—of Fernand, whose crime she did not know, and whom she regarded +as her brother. Fernand went, and Mercédès remained alone. + +“Three months passed and still she wept—no news of Edmond, no news of +Fernand, no companionship save that of an old man who was dying with +despair. One evening, after a day of accustomed vigil at the angle of +two roads leading to Marseilles from the Catalans, she returned to her +home more depressed than ever. Suddenly she heard a step she knew, +turned anxiously around, the door opened, and Fernand, dressed in the +uniform of a sub-lieutenant, stood before her. + +“It was not the one she wished for most, but it seemed as if a part of +her past life had returned to her. + +“Mercédès seized Fernand’s hands with a transport which he took for +love, but which was only joy at being no longer alone in the world, and +seeing at last a friend, after long hours of solitary sorrow. And then, +it must be confessed, Fernand had never been hated—he was only not +precisely loved. Another possessed all Mercédès’ heart; that other was +absent, had disappeared, perhaps was dead. At this last thought +Mercédès burst into a flood of tears, and wrung her hands in agony; but +the thought, which she had always repelled before when it was suggested +to her by another, came now in full force upon her mind; and then, too, +old Dantès incessantly said to her, ‘Our Edmond is dead; if he were +not, he would return to us.’ + +“The old man died, as I have told you; had he lived, Mercédès, +perchance, had not become the wife of another, for he would have been +there to reproach her infidelity. Fernand saw this, and when he learned +of the old man’s death he returned. He was now a lieutenant. At his +first coming he had not said a word of love to Mercédès; at the second +he reminded her that he loved her. + +“Mercédès begged for six months more in which to await and mourn for +Edmond.” + +“So that,” said the abbé, with a bitter smile, “that makes eighteen +months in all. What more could the most devoted lover desire?” Then he +murmured the words of the English poet, “‘Frailty, thy name is woman.’” + +“Six months afterwards,” continued Caderousse, “the marriage took place +in the church of Accoules.” + +“The very church in which she was to have married Edmond,” murmured the +priest; “there was only a change of bridegrooms.” + +“Well, Mercédès was married,” proceeded Caderousse; “but although in +the eyes of the world she appeared calm, she nearly fainted as she +passed La Réserve, where, eighteen months before, the betrothal had +been celebrated with him whom she might have known she still loved, had +she looked to the bottom of her heart. Fernand, more happy, but not +more at his ease—for I saw at this time he was in constant dread of +Edmond’s return—Fernand was very anxious to get his wife away, and to +depart himself. There were too many unpleasant possibilities associated +with the Catalans, and eight days after the wedding they left +Marseilles.” + +“Did you ever see Mercédès again?” inquired the priest. + +“Yes, during the Spanish war, at Perpignan, where Fernand had left her; +she was attending to the education of her son.” + +The abbé started. “Her son?” said he. + +“Yes,” replied Caderousse, “little Albert.” + +“But, then, to be able to instruct her child,” continued the abbé, “she +must have received an education herself. I understood from Edmond that +she was the daughter of a simple fisherman, beautiful but uneducated.” + +“Oh,” replied Caderousse, “did he know so little of his lovely +betrothed? Mercédès might have been a queen, sir, if the crown were to +be placed on the heads of the loveliest and most intelligent. Fernand’s +fortune was already waxing great, and she developed with his growing +fortune. She learned drawing, music—everything. Besides, I believe, +between ourselves, she did this in order to distract her mind, that she +might forget; and she only filled her head in order to alleviate the +weight on her heart. But now her position in life is assured,” +continued Caderousse; “no doubt fortune and honors have comforted her; +she is rich, a countess, and yet——” + +Caderousse paused. + +“And yet what?” asked the abbé. + +“Yet, I am sure, she is not happy,” said Caderousse. + +“What makes you believe this?” + +“Why, when I found myself utterly destitute, I thought my old friends +would, perhaps, assist me. So I went to Danglars, who would not even +receive me. I called on Fernand, who sent me a hundred francs by his +valet-de-chambre.” + +“Then you did not see either of them?” + +“No, but Madame de Morcerf saw me.” + +“How was that?” + +“As I went away a purse fell at my feet—it contained five-and-twenty +louis; I raised my head quickly, and saw Mercédès, who at once shut the +blind.” + +“And M. de Villefort?” asked the abbé. + +“Oh, he never was a friend of mine, I did not know him, and I had +nothing to ask of him.” + +“Do you not know what became of him, and the share he had in Edmond’s +misfortunes?” + +“No; I only know that some time after Edmond’s arrest, he married +Mademoiselle de Saint-Méran, and soon after left Marseilles; no doubt +he has been as lucky as the rest; no doubt he is as rich as Danglars, +as high in station as Fernand. I only, as you see, have remained poor, +wretched, and forgotten.” + +“You are mistaken, my friend,” replied the abbé; “God may seem +sometimes to forget for a time, while his justice reposes, but there +always comes a moment when he remembers—and behold—a proof!” + +As he spoke, the abbé took the diamond from his pocket, and giving it +to Caderousse, said, “Here, my friend, take this diamond, it is yours.” + +“What, for me only?” cried Caderousse, “ah, sir, do not jest with me!” + +“This diamond was to have been shared among his friends. Edmond had one +friend only, and thus it cannot be divided. Take the diamond, then, and +sell it; it is worth fifty thousand francs, and I repeat my wish that +this sum may suffice to release you from your wretchedness.” + +0351m + + + +“Oh, sir,” said Caderousse, putting out one hand timidly, and with the +other wiping away the perspiration which bedewed his brow,—“Oh, sir, do +not make a jest of the happiness or despair of a man.” + +“I know what happiness and what despair are, and I never make a jest of +such feelings. Take it, then, but in exchange——” + +Caderousse, who touched the diamond, withdrew his hand. + +The abbé smiled. + +“In exchange,” he continued, “give me the red silk purse that M. Morrel +left on old Dantès’ chimney-piece, and which you tell me is still in +your hands.” + +Caderousse, more and more astonished, went toward a large oaken +cupboard, opened it, and gave the abbé a long purse of faded red silk, +round which were two copper runners that had once been gilt. The abbé +took it, and in return gave Caderousse the diamond. + +“Oh, you are a man of God, sir,” cried Caderousse; “for no one knew +that Edmond had given you this diamond, and you might have kept it.” + +“Which,” said the abbé to himself, “you would have done.” The abbé +rose, took his hat and gloves. “Well,” he said, “all you have told me +is perfectly true, then, and I may believe it in every particular.” + +“See, sir,” replied Caderousse, “in this corner is a crucifix in holy +wood—here on this shelf is my wife’s testament; open this book, and I +will swear upon it with my hand on the crucifix. I will swear to you by +my soul’s salvation, my faith as a Christian, I have told everything to +you as it occurred, and as the recording angel will tell it to the ear +of God at the day of the last judgment!” + +“’Tis well,” said the abbé, convinced by his manner and tone that +Caderousse spoke the truth. “’Tis well, and may this money profit you! +Adieu; I go far from men who thus so bitterly injure each other.” + +The abbé with difficulty got away from the enthusiastic thanks of +Caderousse, opened the door himself, got out and mounted his horse, +once more saluted the innkeeper, who kept uttering his loud farewells, +and then returned by the road he had travelled in coming. + +When Caderousse turned around, he saw behind him La Carconte, paler and +trembling more than ever. + +“Is, then, all that I have heard really true?” she inquired. + +“What? That he has given the diamond to us only?” inquired Caderousse, +half bewildered with joy; “yes, nothing more true! See, here it is.” + +The woman gazed at it a moment, and then said, in a gloomy voice, +“Suppose it’s false?” + +Caderousse started and turned pale. + +“False!” he muttered. “False! Why should that man give me a false +diamond?” + +0349m + + + +“To get your secret without paying for it, you blockhead!” + +Caderousse remained for a moment aghast under the weight of such an +idea. + +“Oh!” he said, taking up his hat, which he placed on the red +handkerchief tied round his head, “we will soon find out.” + +“In what way?” + +“Why, the fair is on at Beaucaire, there are always jewellers from +Paris there, and I will show it to them. Look after the house, wife, +and I shall be back in two hours,” and Caderousse left the house in +haste, and ran rapidly in the direction opposite to that which the +priest had taken. + +“Fifty thousand francs!” muttered La Carconte when left alone; “it is a +large sum of money, but it is not a fortune.” + + +VOLUME TWO + +20009m + + + +20011m + + + +20019m + + + + + Chapter 28. The Prison Register + +The day after that in which the scene we have just described had taken +place on the road between Bellegarde and Beaucaire, a man of about +thirty or two-and-thirty, dressed in a bright blue frock coat, nankeen +trousers, and a white waistcoat, having the appearance and accent of an +Englishman, presented himself before the mayor of Marseilles. + +“Sir,” said he, “I am chief clerk of the house of Thomson & French, of +Rome. We are, and have been these ten years, connected with the house +of Morrel & Son, of Marseilles. We have a hundred thousand francs or +thereabouts loaned on their securities, and we are a little uneasy at +reports that have reached us that the firm is on the brink of ruin. I +have come, therefore, express from Rome, to ask you for information.” + +“Sir,” replied the mayor. “I know very well that during the last four +or five years misfortune has seemed to pursue M. Morrel. He has lost +four or five vessels, and suffered by three or four bankruptcies; but +it is not for me, although I am a creditor myself to the amount of ten +thousand francs, to give any information as to the state of his +finances. Ask of me, as mayor, what is my opinion of M. Morrel, and I +shall say that he is a man honorable to the last degree, and who has up +to this time fulfilled every engagement with scrupulous punctuality. +This is all I can say, sir; if you wish to learn more, address yourself +to M. de Boville, the inspector of prisons, No. 15, Rue de Nouailles; +he has, I believe, two hundred thousand francs in Morrel’s hands, and +if there be any grounds for apprehension, as this is a greater amount +than mine, you will most probably find him better informed than +myself.” + +The Englishman seemed to appreciate this extreme delicacy, made his bow +and went away, proceeding with a characteristic British stride towards +the street mentioned. + +M. de Boville was in his private room, and the Englishman, on +perceiving him, made a gesture of surprise, which seemed to indicate +that it was not the first time he had been in his presence. As to M. de +Boville, he was in such a state of despair, that it was evident all the +faculties of his mind, absorbed in the thought which occupied him at +the moment, did not allow either his memory or his imagination to stray +to the past. + +The Englishman, with the coolness of his nation, addressed him in terms +nearly similar to those with which he had accosted the mayor of +Marseilles. + +“Oh, sir,” exclaimed M. de Boville, “your fears are unfortunately but +too well founded, and you see before you a man in despair. I had two +hundred thousand francs placed in the hands of Morrel & Son; these two +hundred thousand francs were the dowry of my daughter, who was to be +married in a fortnight, and these two hundred thousand francs were +payable, half on the 15th of this month, and the other half on the 15th +of next month. I had informed M. Morrel of my desire to have these +payments punctually, and he has been here within the last half-hour to +tell me that if his ship, the _Pharaon_, did not come into port on the +15th, he would be wholly unable to make this payment.” + +“But,” said the Englishman, “this looks very much like a suspension of +payment.” + +“It looks more like bankruptcy!” exclaimed M. de Boville despairingly. + +The Englishman appeared to reflect a moment, and then said, “From which +it would appear, sir, that this credit inspires you with considerable +apprehension?” + +“To tell you the truth, I consider it lost.” + +“Well, then, I will buy it of you!” + +“You?” + +“Yes, I!” + +“But at a tremendous discount, of course?” + +“No, for two hundred thousand francs. Our house,” added the Englishman +with a laugh, “does not do things in that way.” + +“And you will pay——” + +“Ready money.” + +20023m + + + +And the Englishman drew from his pocket a bundle of bank-notes, which +might have been twice the sum M. de Boville feared to lose. A ray of +joy passed across M. de Boville’s countenance, yet he made an effort at +self-control, and said: + +“Sir, I ought to tell you that, in all probability, you will not +realize six per cent of this sum.” + +“That’s no affair of mine,” replied the Englishman, “that is the affair +of the house of Thomson & French, in whose name I act. They have, +perhaps, some motive to serve in hastening the ruin of a rival firm. +But all I know, sir, is, that I am ready to hand you over this sum in +exchange for your assignment of the debt. I only ask a brokerage.” + +“Of course, that is perfectly just,” cried M. de Boville. “The +commission is usually one and a half; will you have two—three—five per +cent, or even more? Whatever you say.” + +“Sir,” replied the Englishman, laughing, “I am like my house, and do +not do such things—no, the commission I ask is quite different.” + +“Name it, sir, I beg.” + +“You are the inspector of prisons?” + +“I have been so these fourteen years.” + +“You keep the registers of entries and departures?” + +“I do.” + +“To these registers there are added notes relative to the prisoners?” + +“There are special reports on every prisoner.” + +“Well, sir, I was educated at Rome by a poor devil of an abbé, who +disappeared suddenly. I have since learned that he was confined in the +Château d’If, and I should like to learn some particulars of his +death.” + +“What was his name?” + +“The Abbé Faria.” + +“Oh, I recollect him perfectly,” cried M. de Boville; “he was crazy.” + +“So they said.” + +“Oh, he was, decidedly.” + +“Very possibly; but what sort of madness was it?” + +“He pretended to know of an immense treasure, and offered vast sums to +the government if they would liberate him.” + +“Poor devil!—and he is dead?” + +“Yes, sir, five or six months ago, last February.” + +“You have a good memory, sir, to recollect dates so well.” + +“I recollect this, because the poor devil’s death was accompanied by a +singular incident.” + +“May I ask what that was?” said the Englishman with an expression of +curiosity, which a close observer would have been astonished at +discovering in his phlegmatic countenance. + +“Oh dear, yes, sir; the abbé’s dungeon was forty or fifty feet distant +from that of one of Bonaparte’s emissaries,—one of those who had +contributed the most to the return of the usurper in 1815, a very +resolute and very dangerous man.” + +“Indeed!” said the Englishman. + +“Yes,” replied M. de Boville; “I myself had occasion to see this man in +1816 or 1817, and we could only go into his dungeon with a file of +soldiers. That man made a deep impression on me; I shall never forget +his countenance!” + +20025m + + + +The Englishman smiled imperceptibly. + +“And you say, sir,” he interposed, “that the two dungeons——” + +“Were separated by a distance of fifty feet; but it appears that this +Edmond Dantès——” + +“This dangerous man’s name was——” + +“Edmond Dantès. It appears, sir, that this Edmond Dantès had procured +tools, or made them, for they found a tunnel through which the +prisoners held communication with one another.” + +“This tunnel was dug, no doubt, with an intention of escape?” + +“No doubt; but unfortunately for the prisoners, the Abbé Faria had an +attack of catalepsy, and died.” + +“That must have cut short the projects of escape.” + +“For the dead man, yes,” replied M. de Boville, “but not for the +survivor; on the contrary, this Dantès saw a means of accelerating his +escape. He, no doubt, thought that prisoners who died in the Château +d’If were interred in an ordinary burial-ground, and he conveyed the +dead man into his own cell, took his place in the sack in which they +had sewed up the corpse, and awaited the moment of interment.” + +“It was a bold step, and one that showed some courage,” remarked the +Englishman. + +“As I have already told you, sir, he was a very dangerous man; and, +fortunately, by his own act disembarrassed the government of the fears +it had on his account.” + +“How was that?” + +“How? Do you not comprehend?” + +“No.” + +“The Château d’If has no cemetery, and they simply throw the dead into +the sea, after fastening a thirty-six-pound cannon-ball to their feet.” + +“Well?” observed the Englishman as if he were slow of comprehension. + +“Well, they fastened a thirty-six-pound ball to his feet, and threw him +into the sea.” + +“Really!” exclaimed the Englishman. + +“Yes, sir,” continued the inspector of prisons. “You may imagine the +amazement of the fugitive when he found himself flung headlong over the +rocks! I should like to have seen his face at that moment.” + +“That would have been difficult.” + +“No matter,” replied De Boville, in supreme good-humor at the certainty +of recovering his two hundred thousand francs,—“no matter, I can fancy +it.” And he shouted with laughter. + +“So can I,” said the Englishman, and he laughed too; but he laughed as +the English do, “at the end of his teeth.” + +“And so,” continued the Englishman who first gained his composure, “he +was drowned?” + +“Unquestionably.” + +“So that the governor got rid of the dangerous and the crazy prisoner +at the same time?” + +“Precisely.” + +20027m + + + +“But some official document was drawn up as to this affair, I suppose?” +inquired the Englishman. + +“Yes, yes, the mortuary deposition. You understand, Dantès’ relations, +if he had any, might have some interest in knowing if he were dead or +alive.” + +“So that now, if there were anything to inherit from him, they may do +so with easy conscience. He is dead, and no mistake about it.” + +“Oh, yes; and they may have the fact attested whenever they please.” + +“So be it,” said the Englishman. “But to return to these registers.” + +“True, this story has diverted our attention from them. Excuse me.” + +“Excuse you for what? For the story? By no means; it really seems to me +very curious.” + +“Yes, indeed. So, sir, you wish to see all relating to the poor abbé, +who really was gentleness itself.” + +“Yes, you will much oblige me.” + +“Go into my study here, and I will show it to you.” + +And they both entered M. de Boville’s study. Everything was here +arranged in perfect order; each register had its number, each file of +papers its place. The inspector begged the Englishman to seat himself +in an armchair, and placed before him the register and documents +relative to the Château d’If, giving him all the time he desired for +the examination, while De Boville seated himself in a corner, and began +to read his newspaper. The Englishman easily found the entries relative +to the Abbé Faria; but it seemed that the history which the inspector +had related interested him greatly, for after having perused the first +documents he turned over the leaves until he reached the deposition +respecting Edmond Dantès. There he found everything arranged in due +order,—the accusation, examination, Morrel’s petition, M. de +Villefort’s marginal notes. He folded up the accusation quietly, and +put it as quietly in his pocket; read the examination, and saw that the +name of Noirtier was not mentioned in it; perused, too, the application +dated 10th April, 1815, in which Morrel, by the deputy procureur’s +advice, exaggerated with the best intentions (for Napoleon was then on +the throne) the services Dantès had rendered to the imperial +cause—services which Villefort’s certificates rendered indisputable. +Then he saw through the whole thing. This petition to Napoleon, kept +back by Villefort, had become, under the second restoration, a terrible +weapon against him in the hands of the king’s attorney. He was no +longer astonished when he searched on to find in the register this +note, placed in a bracket against his name: + +Edmond Dantès. + +An inveterate Bonapartist; took an active part in the return from the +Island of Elba. + +To be kept in strict solitary confinement, and to be closely watched +and guarded. + +Beneath these lines was written in another hand: “See note +above—nothing can be done.” + +He compared the writing in the bracket with the writing of the +certificate placed beneath Morrel’s petition, and discovered that the +note in the bracket was the same writing as the certificate—that is to +say, was in Villefort’s handwriting. + +20029m + + + +As to the note which accompanied this, the Englishman understood that +it might have been added by some inspector who had taken a momentary +interest in Dantès’ situation, but who had, from the remarks we have +quoted, found it impossible to give any effect to the interest he had +felt. + +As we have said, the inspector, from discretion, and that he might not +disturb the Abbé Faria’s pupil in his researches, had seated himself in +a corner, and was reading _Le Drapeau Blanc_. He did not see the +Englishman fold up and place in his pocket the accusation written by +Danglars under the arbor of La Réserve, and which had the postmark, +“Marseilles, 27th February, delivery 6 o’clock, P.M.” + +But it must be said that if he had seen it, he attached so little +importance to this scrap of paper, and so much importance to his two +hundred thousand francs, that he would not have opposed whatever the +Englishman might do, however irregular it might be. + +“Thanks,” said the latter, closing the register with a slam, “I have +all I want; now it is for me to perform my promise. Give me a simple +assignment of your debt; acknowledge therein the receipt of the cash, +and I will hand you over the money.” + +He rose, gave his seat to M. de Boville, who took it without ceremony, +and quickly drew up the required assignment, while the Englishman +counted out the bank-notes on the other side of the desk. + + + + Chapter 29. The House of Morrel & Son + +Anyone who had quitted Marseilles a few years previously, well +acquainted with the interior of Morrel’s warehouse, and had returned at +this date, would have found a great change. Instead of that air of +life, of comfort, and of happiness that permeates a flourishing and +prosperous business establishment—instead of merry faces at the +windows, busy clerks hurrying to and fro in the long corridors—instead +of the court filled with bales of goods, re-echoing with the cries and +the jokes of porters, one would have immediately perceived all aspect +of sadness and gloom. Out of all the numerous clerks that used to fill +the deserted corridor and the empty office, but two remained. One was a +young man of three or four-and-twenty, who was in love with M. Morrel’s +daughter, and had remained with him in spite of the efforts of his +friends to induce him to withdraw; the other was an old one-eyed +cashier, called “Cocles,” or “Cock-eye,” a nickname given him by the +young men who used to throng this vast now almost deserted bee-hive, +and which had so completely replaced his real name that he would not, +in all probability, have replied to anyone who addressed him by it. + +Cocles remained in M. Morrel’s service, and a most singular change had +taken place in his position; he had at the same time risen to the rank +of cashier, and sunk to the rank of a servant. He was, however, the +same Cocles, good, patient, devoted, but inflexible on the subject of +arithmetic, the only point on which he would have stood firm against +the world, even against M. Morrel; and strong in the +multiplication-table, which he had at his fingers’ ends, no matter what +scheme or what trap was laid to catch him. + +In the midst of the disasters that befell the house, Cocles was the +only one unmoved. But this did not arise from a want of affection; on +the contrary, from a firm conviction. Like the rats that one by one +forsake the doomed ship even before the vessel weighs anchor, so all +the numerous clerks had by degrees deserted the office and the +warehouse. Cocles had seen them go without thinking of inquiring the +cause of their departure. Everything was as we have said, a question of +arithmetic to Cocles, and during twenty years he had always seen all +payments made with such exactitude, that it seemed as impossible to him +that the house should stop payment, as it would to a miller that the +river that had so long turned his mill should cease to flow. + +Nothing had as yet occurred to shake Cocles’ belief; the last month’s +payment had been made with the most scrupulous exactitude; Cocles had +detected an overbalance of fourteen sous in his cash, and the same +evening he had brought them to M. Morrel, who, with a melancholy smile, +threw them into an almost empty drawer, saying: + +“Thanks, Cocles; you are the pearl of cashiers.” + +Cocles went away perfectly happy, for this eulogium of M. Morrel, +himself the pearl of the honest men of Marseilles, flattered him more +than a present of fifty crowns. But since the end of the month M. +Morrel had passed many an anxious hour. + +In order to meet the payments then due; he had collected all his +resources, and, fearing lest the report of his distress should get +bruited abroad at Marseilles when he was known to be reduced to such an +extremity, he went to the Beaucaire fair to sell his wife’s and +daughter’s jewels and a portion of his plate. By this means the end of +the month was passed, but his resources were now exhausted. Credit, +owing to the reports afloat, was no longer to be had; and to meet the +one hundred thousand francs due on the 15th of the present month, and +the one hundred thousand francs due on the 15th of the next month to M. +de Boville, M. Morrel had, in reality, no hope but the return of the +_Pharaon_, of whose departure he had learnt from a vessel which had +weighed anchor at the same time, and which had already arrived in +harbor. + +But this vessel which, like the _Pharaon_, came from Calcutta, had been +in for a fortnight, while no intelligence had been received of the +_Pharaon_. + +20033m + + + +Such was the state of affairs when, the day after his interview with M. +de Boville, the confidential clerk of the house of Thomson & French of +Rome, presented himself at M. Morrel’s. + +Emmanuel received him; this young man was alarmed by the appearance of +every new face, for every new face might be that of a new creditor, +come in anxiety to question the head of the house. The young man, +wishing to spare his employer the pain of this interview, questioned +the new-comer; but the stranger declared that he had nothing to say to +M. Emmanuel, and that his business was with M. Morrel in person. + +Emmanuel sighed, and summoned Cocles. Cocles appeared, and the young +man bade him conduct the stranger to M. Morrel’s apartment. Cocles went +first, and the stranger followed him. On the staircase they met a +beautiful girl of sixteen or seventeen, who looked with anxiety at the +stranger. + +“M. Morrel is in his room, is he not, Mademoiselle Julie?” said the +cashier. + +“Yes; I think so, at least,” said the young girl hesitatingly. “Go and +see, Cocles, and if my father is there, announce this gentleman.” + +“It will be useless to announce me, mademoiselle,” returned the +Englishman. “M. Morrel does not know my name; this worthy gentleman has +only to announce the confidential clerk of the house of Thomson & +French of Rome, with whom your father does business.” + +The young girl turned pale and continued to descend, while the stranger +and Cocles continued to mount the staircase. She entered the office +where Emmanuel was, while Cocles, by the aid of a key he possessed, +opened a door in the corner of a landing-place on the second staircase, +conducted the stranger into an antechamber, opened a second door, which +he closed behind him, and after having left the clerk of the house of +Thomson & French alone, returned and signed to him that he could enter. + +The Englishman entered, and found Morrel seated at a table, turning +over the formidable columns of his ledger, which contained the list of +his liabilities. At the sight of the stranger, M. Morrel closed the +ledger, arose, and offered a seat to the stranger; and when he had seen +him seated, resumed his own chair. Fourteen years had changed the +worthy merchant, who, in his thirty-sixth year at the opening of this +history, was now in his fiftieth; his hair had turned white, time and +sorrow had ploughed deep furrows on his brow, and his look, once so +firm and penetrating, was now irresolute and wandering, as if he feared +being forced to fix his attention on some particular thought or person. + +The Englishman looked at him with an air of curiosity, evidently +mingled with interest. “Monsieur,” said Morrel, whose uneasiness was +increased by this examination, “you wish to speak to me?” + +“Yes, monsieur; you are aware from whom I come?” + +“The house of Thomson & French; at least, so my cashier tells me.” + +“He has told you rightly. The house of Thomson & French had 300,000 or +400,000 francs to pay this month in France; and, knowing your strict +punctuality, have collected all the bills bearing your signature, and +charged me as they became due to present them, and to employ the money +otherwise.” + +Morrel sighed deeply, and passed his hand over his forehead, which was +covered with perspiration. + +“So then, sir,” said Morrel, “you hold bills of mine?” + +“Yes, and for a considerable sum.” + +“What is the amount?” asked Morrel with a voice he strove to render +firm. + +20035m + + + +“Here is,” said the Englishman, taking a quantity of papers from his +pocket, “an assignment of 200,000 francs to our house by M. de Boville, +the inspector of prisons, to whom they are due. You acknowledge, of +course, that you owe this sum to him?” + +“Yes; he placed the money in my hands at four and a half per cent +nearly five years ago.” + +“When are you to pay?” + +“Half the 15th of this month, half the 15th of next.” + +“Just so; and now here are 32,500 francs payable shortly; they are all +signed by you, and assigned to our house by the holders.” + +“I recognize them,” said Morrel, whose face was suffused, as he thought +that, for the first time in his life, he would be unable to honor his +own signature. “Is this all?” + +“No, I have for the end of the month these bills which have been +assigned to us by the house of Pascal, and the house of Wild & Turner +of Marseilles, amounting to nearly 55,000 francs; in all, 287,500 +francs.” + +It is impossible to describe what Morrel suffered during this +enumeration. “Two hundred and eighty-seven thousand five hundred +francs,” repeated he. + +“Yes, sir,” replied the Englishman. “I will not,” continued he, after a +moment’s silence, “conceal from you, that while your probity and +exactitude up to this moment are universally acknowledged, yet the +report is current in Marseilles that you are not able to meet your +liabilities.” + +At this almost brutal speech Morrel turned deathly pale. + +“Sir,” said he, “up to this time—and it is now more than +four-and-twenty years since I received the direction of this house from +my father, who had himself conducted it for five-and-thirty years—never +has anything bearing the signature of Morrel & Son been dishonored.” + +“I know that,” replied the Englishman. “But as a man of honor should +answer another, tell me fairly, shall you pay these with the same +punctuality?” + +Morrel shuddered, and looked at the man, who spoke with more assurance +than he had hitherto shown. + +“To questions frankly put,” said he, “a straightforward answer should +be given. Yes, I shall pay, if, as I hope, my vessel arrives safely; +for its arrival will again procure me the credit which the numerous +accidents, of which I have been the victim, have deprived me; but if +the _Pharaon_ should be lost, and this last resource be gone——” + +The poor man’s eyes filled with tears. + +“Well,” said the other, “if this last resource fail you?” + +“Well,” returned Morrel, “it is a cruel thing to be forced to say, but, +already used to misfortune, I must habituate myself to shame. I fear I +shall be forced to suspend payment.” + +“Have you no friends who could assist you?” + +Morrel smiled mournfully. + +“In business, sir,” said he, “one has no friends, only correspondents.” + +“It is true,” murmured the Englishman; “then you have but one hope.” + +“But one.” + +“The last?” + +“The last.” + +“So that if this fail——” + +“I am ruined,—completely ruined!” + +“As I was on my way here, a vessel was coming into port.” + +“I know it, sir; a young man, who still adheres to my fallen fortunes, +passes a part of his time in a belvedere at the top of the house, in +hopes of being the first to announce good news to me; he has informed +me of the arrival of this ship.” + +“And it is not yours?” + +“No, she is a Bordeaux vessel, _La Gironde_; she comes from India also; +but she is not mine.” + +“Perhaps she has spoken to the _Pharaon_, and brings you some tidings +of her?” + +“Shall I tell you plainly one thing, sir? I dread almost as much to +receive any tidings of my vessel as to remain in doubt. Uncertainty is +still hope.” Then in a low voice Morrel added,—“This delay is not +natural. The _Pharaon_ left Calcutta the 5th of February; she ought to +have been here a month ago.” + +“What is that?” said the Englishman. “What is the meaning of that +noise?” + +“Oh, my God!” cried Morrel, turning pale, “what is it?” + +A loud noise was heard on the stairs of people moving hastily, and +half-stifled sobs. Morrel rose and advanced to the door; but his +strength failed him and he sank into a chair. The two men remained +opposite one another, Morrel trembling in every limb, the stranger +gazing at him with an air of profound pity. The noise had ceased; but +it seemed that Morrel expected something—something had occasioned the +noise, and something must follow. The stranger fancied he heard +footsteps on the stairs; and that the footsteps, which were those of +several persons, stopped at the door. A key was inserted in the lock of +the first door, and the creaking of hinges was audible. + +“There are only two persons who have the key to that door,” murmured +Morrel, “Cocles and Julie.” + +At this instant the second door opened, and the young girl, her eyes +bathed with tears, appeared. Morrel rose tremblingly, supporting +himself by the arm of the chair. He would have spoken, but his voice +failed him. + +“Oh, father!” said she, clasping her hands, “forgive your child for +being the bearer of evil tidings.” + +Morrel again changed color. Julie threw herself into his arms. + +“Oh, father, father!” murmured she, “courage!” + +“The _Pharaon_ has gone down, then?” said Morrel in a hoarse voice. The +young girl did not speak; but she made an affirmative sign with her +head as she lay on her father’s breast. + +“And the crew?” asked Morrel. + +“Saved,” said the girl; “saved by the crew of the vessel that has just +entered the harbor.” + +Morrel raised his two hands to heaven with an expression of resignation +and sublime gratitude. + +“Thanks, my God,” said he, “at least thou strikest but me alone.” + +A tear moistened the eye of the phlegmatic Englishman. + +“Come in, come in,” said Morrel, “for I presume you are all at the +door.” + +Scarcely had he uttered those words when Madame Morrel entered weeping +bitterly. Emmanuel followed her, and in the antechamber were visible +the rough faces of seven or eight half-naked sailors. At the sight of +these men the Englishman started and advanced a step; then restrained +himself, and retired into the farthest and most obscure corner of the +apartment. Madame Morrel sat down by her husband and took one of his +hands in hers, Julie still lay with her head on his shoulder, Emmanuel +stood in the centre of the chamber and seemed to form the link between +Morrel’s family and the sailors at the door. + +“How did this happen?” said Morrel. + +“Draw nearer, Penelon,” said the young man, “and tell us all about it.” + +An old seaman, bronzed by the tropical sun, advanced, twirling the +remains of a hat between his hands. + +“Good-day, M. Morrel,” said he, as if he had just quitted Marseilles +the previous evening, and had just returned from Aix or Toulon. + +“Good-day, Penelon,” returned Morrel, who could not refrain from +smiling through his tears, “where is the captain?” + +“The captain, M. Morrel,—he has stayed behind sick at Palma; but please +God, it won’t be much, and you will see him in a few days all alive and +hearty.” + +“Well, now tell your story, Penelon.” + +20039m + + + +Penelon rolled his quid in his cheek, placed his hand before his mouth, +turned his head, and sent a long jet of tobacco-juice into the +antechamber, advanced his foot, balanced himself, and began. + +“You see, M. Morrel,” said he, “we were somewhere between Cape Blanc +and Cape Boyador, sailing with a fair breeze, south-south-west after a +week’s calm, when Captain Gaumard comes up to me—I was at the helm I +should tell you—and says, ‘Penelon, what do you think of those clouds +coming up over there?’ I was just then looking at them myself. ‘What do +I think, captain? Why I think that they are rising faster than they +have any business to do, and that they would not be so black if they +didn’t mean mischief.’—‘That’s my opinion too,’ said the captain, ‘and +I’ll take precautions accordingly. We are carrying too much canvas. +Avast, there, all hands! Take in the studding-sails and stow the flying +jib.’ It was time; the squall was on us, and the vessel began to heel. +‘Ah,’ said the captain, ‘we have still too much canvas set; all hands +lower the mainsail!’ Five minutes after, it was down; and we sailed +under mizzen-topsails and top-gallant sails. ‘Well, Penelon,’ said the +captain, ‘what makes you shake your head?’ ‘Why,’ I says, ‘I still +think you’ve got too much on.’ ‘I think you’re right,’ answered he, ‘we +shall have a gale.’ ‘A gale? More than that, we shall have a tempest, +or I don’t know what’s what.’ You could see the wind coming like the +dust at Montredon; luckily the captain understood his business. ‘Take +in two reefs in the top-sails,’ cried the captain; ‘let go the +bowlin’s, haul the brace, lower the top-gallant sails, haul out the +reef-tackles on the yards.’” + +20041m + + + +“That was not enough for those latitudes,” said the Englishman; “I +should have taken four reefs in the topsails and furled the spanker.” + +His firm, sonorous, and unexpected voice made everyone start. Penelon +put his hand over his eyes, and then stared at the man who thus +criticized the manœuvres of his captain. + +“We did better than that, sir,” said the old sailor respectfully; “we +put the helm up to run before the tempest; ten minutes after we struck +our top-sails and scudded under bare poles.” + +“The vessel was very old to risk that,” said the Englishman. + +“Eh, it was that that did the business; after pitching heavily for +twelve hours we sprung a leak. ‘Penelon,’ said the captain, ‘I think we +are sinking, give me the helm, and go down into the hold.’ I gave him +the helm, and descended; there was already three feet of water. ‘All +hands to the pumps!’ I shouted; but it was too late, and it seemed the +more we pumped the more came in. ‘Ah,’ said I, after four hours’ work, +‘since we are sinking, let us sink; we can die but once.’ ‘Is that the +example you set, Penelon?’ cries the captain; ‘very well, wait a +minute.’ He went into his cabin and came back with a brace of pistols. +‘I will blow the brains out of the first man who leaves the pump,’ said +he.” + +“Well done!” said the Englishman. + +20043m + + + +“There’s nothing gives you so much courage as good reasons,” continued +the sailor; “and during that time the wind had abated, and the sea gone +down, but the water kept rising; not much, only two inches an hour, but +still it rose. Two inches an hour does not seem much, but in twelve +hours that makes two feet, and three we had before, that makes five. +‘Come,’ said the captain, ‘we have done all in our power, and M. Morrel +will have nothing to reproach us with, we have tried to save the ship, +let us now save ourselves. To the boats, my lads, as quick as you can.’ +Now,” continued Penelon, “you see, M. Morrel, a sailor is attached to +his ship, but still more to his life, so we did not wait to be told +twice; the more so, that the ship was sinking under us, and seemed to +say, ‘Get along—save yourselves.’ We soon launched the boat, and all +eight of us got into it. The captain descended last, or rather, he did +not descend, he would not quit the vessel; so I took him round the +waist, and threw him into the boat, and then I jumped after him. It was +time, for just as I jumped the deck burst with a noise like the +broadside of a man-of-war. Ten minutes after she pitched forward, then +the other way, spun round and round, and then good-bye to the +_Pharaon_. As for us, we were three days without anything to eat or +drink, so that we began to think of drawing lots who should feed the +rest, when we saw _La Gironde_; we made signals of distress, she +perceived us, made for us, and took us all on board. There now, M. +Morrel, that’s the whole truth, on the honor of a sailor; is not it +true, you fellows there?” A general murmur of approbation showed that +the narrator had faithfully detailed their misfortunes and sufferings. + +“Well, well,” said M. Morrel, “I know there was no one in fault but +destiny. It was the will of God that this should happen, blessed be his +name. What wages are due to you?” + +“Oh, don’t let us talk of that, M. Morrel.” + +“Yes, but we will talk of it.” + +“Well, then, three months,” said Penelon. + +“Cocles, pay two hundred francs to each of these good fellows,” said +Morrel. “At another time,” added he, “I should have said, Give them, +besides, two hundred francs over as a present; but times are changed, +and the little money that remains to me is not my own, so do not think +me mean on this account.” + +Penelon turned to his companions, and exchanged a few words with them. + +“As for that, M. Morrel,” said he, again turning his quid, “as for +that——” + +“As for what?” + +“The money.” + +“Well——” + +“Well, we all say that fifty francs will be enough for us at present, +and that we will wait for the rest.” + +“Thanks, my friends, thanks!” cried Morrel gratefully; “take it—take +it; and if you can find another employer, enter his service; you are +free to do so.” + +These last words produced a prodigious effect on the seaman. Penelon +nearly swallowed his quid; fortunately he recovered. + +“What, M. Morrel!” said he in a low voice, “you send us away; you are +then angry with us!” + +“No, no,” said M. Morrel, “I am not angry, quite the contrary, and I do +not send you away; but I have no more ships, and therefore I do not +want any sailors.” + +“No more ships!” returned Penelon; “well, then, you’ll build some; +we’ll wait for you.” + +“I have no money to build ships with, Penelon,” said the poor owner +mournfully, “so I cannot accept your kind offer.” + +“No more money? Then you must not pay us; we can scud, like the +_Pharaon_, under bare poles.” + +“Enough, enough!” cried Morrel, almost overpowered; “leave me, I pray +you; we shall meet again in a happier time. Emmanuel, go with them, and +see that my orders are executed.” + +“At least, we shall see each other again, M. Morrel?” asked Penelon. + +“Yes; I hope so, at least. Now go.” He made a sign to Cocles, who went +first; the seamen followed him and Emmanuel brought up the rear. “Now,” +said the owner to his wife and daughter, “leave me; I wish to speak +with this gentleman.” + +20045m + + + +And he glanced towards the clerk of Thomson & French, who had remained +motionless in the corner during this scene, in which he had taken no +part, except the few words we have mentioned. The two women looked at +this person whose presence they had entirely forgotten, and retired; +but, as she left the apartment, Julie gave the stranger a supplicating +glance, to which he replied by a smile that an indifferent spectator +would have been surprised to see on his stern features. The two men +were left alone. “Well, sir,” said Morrel, sinking into a chair, “you +have heard all, and I have nothing further to tell you.” + +“I see,” returned the Englishman, “that a fresh and unmerited +misfortune has overwhelmed you, and this only increases my desire to +serve you.” + +“Oh, sir!” cried Morrel. + +“Let me see,” continued the stranger, “I am one of your largest +creditors.” + +“Your bills, at least, are the first that will fall due.” + +“Do you wish for time to pay?” + +“A delay would save my honor, and consequently my life.” + +“How long a delay do you wish for?” + +Morrel reflected. “Two months,” said he. + +“I will give you three,” replied the stranger. + +“But,” asked Morrel, “will the house of Thomson & French consent?” + +“Oh, I take everything on myself. Today is the 5th of June.” + +“Yes.” + +“Well, renew these bills up to the 5th of September; and on the 5th of +September at eleven o’clock (the hand of the clock pointed to eleven), +I shall come to receive the money.” + +“I shall expect you,” returned Morrel; “and I will pay you—or I shall +be dead.” These last words were uttered in so low a tone that the +stranger could not hear them. The bills were renewed, the old ones +destroyed, and the poor ship-owner found himself with three months +before him to collect his resources. The Englishman received his thanks +with the phlegm peculiar to his nation; and Morrel, overwhelming him +with grateful blessings, conducted him to the staircase. The stranger +met Julie on the stairs; she pretended to be descending, but in reality +she was waiting for him. “Oh, sir”—said she, clasping her hands. + +“Mademoiselle,” said the stranger, “one day you will receive a letter +signed ‘Sinbad the Sailor.’ Do exactly what the letter bids you, +however strange it may appear.” + +“Yes, sir,” returned Julie. + +“Do you promise?” + +“I swear to you I will.” + +“It is well. Adieu, mademoiselle. Continue to be the good, sweet girl +you are at present, and I have great hopes that Heaven will reward you +by giving you Emmanuel for a husband.” + +Julie uttered a faint cry, blushed like a rose, and leaned against the +baluster. The stranger waved his hand, and continued to descend. In the +court he found Penelon, who, with a rouleau of a hundred francs in +either hand, seemed unable to make up his mind to retain them. “Come +with me, my friend,” said the Englishman; “I wish to speak to you.” + + + + Chapter 30. The Fifth of September + +The extension provided for by the agent of Thomson & French, at the +moment when Morrel expected it least, was to the poor shipowner so +decided a stroke of good fortune that he almost dared to believe that +fate was at length grown weary of wasting her spite upon him. The same +day he told his wife, Emmanuel, and his daughter all that had occurred; +and a ray of hope, if not of tranquillity, returned to the family. +Unfortunately, however, Morrel had not only engagements with the house +of Thomson & French, who had shown themselves so considerate towards +him; and, as he had said, in business he had correspondents, and not +friends. When he thought the matter over, he could by no means account +for this generous conduct on the part of Thomson & French towards him; +and could only attribute it to some such selfish argument as this: “We +had better help a man who owes us nearly 300,000 francs, and have those +300,000 francs at the end of three months than hasten his ruin, and get +only six or eight per cent of our money back again.” + +Unfortunately, whether through envy or stupidity, all Morrel’s +correspondents did not take this view; and some even came to a contrary +decision. The bills signed by Morrel were presented at his office with +scrupulous exactitude, and, thanks to the delay granted by the +Englishman, were paid by Cocles with equal punctuality. Cocles thus +remained in his accustomed tranquillity. It was Morrel alone who +remembered with alarm, that if he had to repay on the 15th the 50,000 +francs of M. de Boville, and on the 30th the 32,500 francs of bills, +for which, as well as the debt due to the inspector of prisons, he had +time granted, he must be a ruined man. + +The opinion of all the commercial men was that, under the reverses +which had successively weighed down Morrel, it was impossible for him +to remain solvent. Great, therefore, was the astonishment when at the +end of the month, he cancelled all his obligations with his usual +punctuality. Still confidence was not restored to all minds, and the +general opinion was that the complete ruin of the unfortunate shipowner +had been postponed only until the end of the month. + +The month passed, and Morrel made extraordinary efforts to get in all +his resources. Formerly his paper, at any date, was taken with +confidence, and was even in request. Morrel now tried to negotiate +bills at ninety days only, and none of the banks would give him credit. +Fortunately, Morrel had some funds coming in on which he could rely; +and, as they reached him, he found himself in a condition to meet his +engagements when the end of July came. + +The agent of Thomson & French had not been again seen at Marseilles; +the day after, or two days after his visit to Morrel, he had +disappeared; and as in that city he had had no intercourse but with the +mayor, the inspector of prisons, and M. Morrel, his departure left no +trace except in the memories of these three persons. As to the sailors +of the _Pharaon_, they must have found snug berths elsewhere, for they +also had disappeared. + +Captain Gaumard, recovered from his illness, had returned from Palma. +He delayed presenting himself at Morrel’s, but the owner, hearing of +his arrival, went to see him. The worthy shipowner knew, from Penelon’s +recital, of the captain’s brave conduct during the storm, and tried to +console him. He brought him also the amount of his wages, which Captain +Gaumard had not dared to apply for. + +As he descended the staircase, Morrel met Penelon, who was going up. +Penelon had, it would seem, made good use of his money, for he was +newly clad. When he saw his employer, the worthy tar seemed much +embarrassed, drew on one side into the corner of the landing-place, +passed his quid from one cheek to the other, stared stupidly with his +great eyes, and only acknowledged the squeeze of the hand which Morrel +as usual gave him by a slight pressure in return. Morrel attributed +Penelon’s embarrassment to the elegance of his attire; it was evident +the good fellow had not gone to such an expense on his own account; he +was, no doubt, engaged on board some other vessel, and thus his +bashfulness arose from the fact of his not having, if we may so express +ourselves, worn mourning for the _Pharaon_ longer. Perhaps he had come +to tell Captain Gaumard of his good luck, and to offer him employment +from his new master. + +“Worthy fellows!” said Morrel, as he went away, “may your new master +love you as I loved you, and be more fortunate than I have been!” + +20049m + + + +August rolled by in unceasing efforts on the part of Morrel to renew +his credit or revive the old. On the 20th of August it was known at +Marseilles that he had left town in the mailcoach, and then it was said +that the bills would go to protest at the end of the month, and that +Morrel had gone away and left his chief clerk Emmanuel, and his cashier +Cocles, to meet the creditors. But, contrary to all expectation, when +the 31st of August came, the house opened as usual, and Cocles appeared +behind the grating of the counter, examined all bills presented with +the usual scrutiny, and, from first to last, paid all with the usual +precision. There came in, moreover, two drafts which M. Morrel had +fully anticipated, and which Cocles paid as punctually as the bills +which the shipowner had accepted. All this was incomprehensible, and +then, with the tenacity peculiar to prophets of bad news, the failure +was put off until the end of September. + +On the 1st, Morrel returned; he was awaited by his family with extreme +anxiety, for from this journey to Paris they hoped great things. Morrel +had thought of Danglars, who was now immensely rich, and had lain under +great obligations to Morrel in former days, since to him it was owing +that Danglars entered the service of the Spanish banker, with whom he +had laid the foundations of his vast wealth. It was said at this moment +that Danglars was worth from six to eight millions of francs, and had +unlimited credit. Danglars, then, without taking a crown from his +pocket, could save Morrel; he had but to pass his word for a loan, and +Morrel was saved. Morrel had long thought of Danglars, but had kept +away from some instinctive motive, and had delayed as long as possible +availing himself of this last resource. And Morrel was right, for he +returned home crushed by the humiliation of a refusal. + +Yet, on his arrival, Morrel did not utter a complaint, or say one harsh +word. He embraced his weeping wife and daughter, pressed Emmanuel’s +hand with friendly warmth, and then going to his private room on the +second floor had sent for Cocles. + +“Then,” said the two women to Emmanuel, “we are indeed ruined.” + +It was agreed in a brief council held among them, that Julie should +write to her brother, who was in garrison at Nîmes, to come to them as +speedily as possible. The poor women felt instinctively that they +required all their strength to support the blow that impended. Besides, +Maximilian Morrel, though hardly two-and-twenty, had great influence +over his father. + +He was a strong-minded, upright young man. At the time when he decided +on his profession his father had no desire to choose for him, but had +consulted young Maximilian’s taste. He had at once declared for a +military life, and had in consequence studied hard, passed brilliantly +through the Polytechnic School, and left it as sub-lieutenant of the +53rd of the line. For a year he had held this rank, and expected +promotion on the first vacancy. In his regiment Maximilian Morrel was +noted for his rigid observance, not only of the obligations imposed on +a soldier, but also of the duties of a man; and he thus gained the name +of “the stoic.” We need hardly say that many of those who gave him this +epithet repeated it because they had heard it, and did not even know +what it meant. + +This was the young man whom his mother and sister called to their aid +to sustain them under the serious trial which they felt they would soon +have to endure. They had not mistaken the gravity of this event, for +the moment after Morrel had entered his private office with Cocles, +Julie saw the latter leave it pale, trembling, and his features +betraying the utmost consternation. She would have questioned him as he +passed by her, but the worthy creature hastened down the staircase with +unusual precipitation, and only raised his hands to heaven and +exclaimed: + +“Oh, mademoiselle, mademoiselle, what a dreadful misfortune! Who could +ever have believed it!” + +A moment afterwards Julie saw him go upstairs carrying two or three +heavy ledgers, a portfolio, and a bag of money. + +Morrel examined the ledgers, opened the portfolio, and counted the +money. All his funds amounted to 6,000 or 8,000 francs, his bills +receivable up to the 5th to 4,000 or 5,000, which, making the best of +everything, gave him 14,000 francs to meet debts amounting to 287,500 +francs. He had not even the means for making a possible settlement on +account. + +However, when Morrel went down to his dinner, he appeared very calm. +This calmness was more alarming to the two women than the deepest +dejection would have been. After dinner Morrel usually went out and +used to take his coffee at the club of the Phocéens, and read the +_Semaphore_; this day he did not leave the house, but returned to his +office. + +As to Cocles, he seemed completely bewildered. For part of the day he +went into the courtyard, seated himself on a stone with his head bare +and exposed to the blazing sun. Emmanuel tried to comfort the women, +but his eloquence faltered. The young man was too well acquainted with +the business of the house, not to feel that a great catastrophe hung +over the Morrel family. Night came, the two women had watched, hoping +that when he left his room Morrel would come to them, but they heard +him pass before their door, and trying to conceal the noise of his +footsteps. They listened; he went into his sleeping-room, and fastened +the door inside. Madame Morrel sent her daughter to bed, and half an +hour after Julie had retired, she rose, took off her shoes, and went +stealthily along the passage, to see through the keyhole what her +husband was doing. + +In the passage she saw a retreating shadow; it was Julie, who, uneasy +herself, had anticipated her mother. The young lady went towards Madame +Morrel. + +“He is writing,” she said. + +They had understood each other without speaking. Madame Morrel looked +again through the keyhole, Morrel was writing; but Madame Morrel +remarked, what her daughter had not observed, that her husband was +writing on stamped paper. The terrible idea that he was writing his +will flashed across her; she shuddered, and yet had not strength to +utter a word. + +Next day M. Morrel seemed as calm as ever, went into his office as +usual, came to his breakfast punctually, and then, after dinner, he +placed his daughter beside him, took her head in his arms, and held her +for a long time against his bosom. In the evening, Julie told her +mother, that although he was apparently so calm, she had noticed that +her father’s heart beat violently. + +The next two days passed in much the same way. On the evening of the +4th of September, M. Morrel asked his daughter for the key of his +study. Julie trembled at this request, which seemed to her of bad omen. +Why did her father ask for this key which she always kept, and which +was only taken from her in childhood as a punishment? The young girl +looked at Morrel. + +“What have I done wrong, father,” she said, “that you should take this +key from me?” + +“Nothing, my dear,” replied the unhappy man, the tears starting to his +eyes at this simple question,—“nothing, only I want it.” + +Julie made a pretence to feel for the key. “I must have left it in my +room,” she said. + +And she went out, but instead of going to her apartment she hastened to +consult Emmanuel. + +“Do not give this key to your father,” said he, “and tomorrow morning, +if possible, do not quit him for a moment.” + +She questioned Emmanuel, but he knew nothing, or would not say what he +knew. + +During the night, between the 4th and 5th of September, Madame Morrel +remained listening for every sound, and, until three o’clock in the +morning, she heard her husband pacing the room in great agitation. It +was three o’clock when he threw himself on the bed. The mother and +daughter passed the night together. They had expected Maximilian since +the previous evening. At eight o’clock in the morning Morrel entered +their chamber. He was calm; but the agitation of the night was legible +in his pale and careworn visage. They did not dare to ask him how he +had slept. Morrel was kinder to his wife, more affectionate to his +daughter, than he had ever been. He could not cease gazing at and +kissing the sweet girl. Julie, mindful of Emmanuel’s request, was +following her father when he quitted the room, but he said to her +quickly: + +“Remain with your mother, dearest.” Julie wished to accompany him. “I +wish you to do so,” said he. + +This was the first time Morrel had ever so spoken, but he said it in a +tone of paternal kindness, and Julie did not dare to disobey. She +remained at the same spot standing mute and motionless. An instant +afterwards the door opened, she felt two arms encircle her, and a mouth +pressed her forehead. She looked up and uttered an exclamation of joy. + +20053m + + + +“Maximilian, my dearest brother!” she cried. + +At these words Madame Morrel rose, and threw herself into her son’s +arms. + +“Mother,” said the young man, looking alternately at Madame Morrel and +her daughter, “what has occurred—what has happened? Your letter has +frightened me, and I have come hither with all speed.” + +“Julie,” said Madame Morrel, making a sign to the young man, “go and +tell your father that Maximilian has just arrived.” + +The young lady rushed out of the apartment, but on the first step of +the staircase she found a man holding a letter in his hand. + +“Are you not Mademoiselle Julie Morrel?” inquired the man, with a +strong Italian accent. + +“Yes, sir,” replied Julie with hesitation; “what is your pleasure? I do +not know you.” + +“Read this letter,” he said, handing it to her. Julie hesitated. “It +concerns the best interests of your father,” said the messenger. + +The young girl hastily took the letter from him. She opened it quickly +and read: + +“Go this moment to the Allées de Meilhan, enter the house No. 15, ask +the porter for the key of the room on the fifth floor, enter the +apartment, take from the corner of the mantelpiece a purse netted in +red silk, and give it to your father. It is important that he should +receive it before eleven o’clock. You promised to obey me implicitly. +Remember your oath. + +“Sinbad the Sailor.” + +The young girl uttered a joyful cry, raised her eyes, looked round to +question the messenger, but he had disappeared. She cast her eyes again +over the note to peruse it a second time, and saw there was a +postscript. She read: + +“It is important that you should fulfil this mission in person and +alone. If you go accompanied by any other person, or should anyone else +go in your place, the porter will reply that he does not know anything +about it.” + +This postscript decreased greatly the young girl’s happiness. Was there +nothing to fear? was there not some snare laid for her? Her innocence +had kept her in ignorance of the dangers that might assail a young girl +of her age. But there is no need to know danger in order to fear it; +indeed, it may be observed, that it is usually unknown perils that +inspire the greatest terror. + +Julie hesitated, and resolved to take counsel. Yet, through a singular +impulse, it was neither to her mother nor her brother that she applied, +but to Emmanuel. She hastened down and told him what had occurred on +the day when the agent of Thomson & French had come to her father’s, +related the scene on the staircase, repeated the promise she had made, +and showed him the letter. + +“You must go, then, mademoiselle,” said Emmanuel. + +“Go there?” murmured Julie. + +“Yes; I will accompany you.” + +“But did you not read that I must be alone?” said Julie. + +“And you shall be alone,” replied the young man. “I will await you at +the corner of the Rue du Musée, and if you are so long absent as to +make me uneasy, I will hasten to rejoin you, and woe to him of whom you +shall have cause to complain to me!” + +“Then, Emmanuel?” said the young girl with hesitation, “it is your +opinion that I should obey this invitation?” + +“Yes. Did not the messenger say your father’s safety depended upon it?” + +“But what danger threatens him, then, Emmanuel?” she asked. + +Emmanuel hesitated a moment, but his desire to make Julie decide +immediately made him reply. + +“Listen,” he said; “today is the 5th of September, is it not?” + +“Yes.” + +“Today, then, at eleven o’clock, your father has nearly three hundred +thousand francs to pay?” + +“Yes, we know that.” + +“Well, then,” continued Emmanuel, “we have not fifteen thousand francs +in the house.” + +“What will happen then?” + +“Why, if today before eleven o’clock your father has not found someone +who will come to his aid, he will be compelled at twelve o’clock to +declare himself a bankrupt.” + +“Oh, come, then, come!” cried she, hastening away with the young man. + +During this time, Madame Morrel had told her son everything. The young +man knew quite well that, after the succession of misfortunes which had +befallen his father, great changes had taken place in the style of +living and housekeeping; but he did not know that matters had reached +such a point. He was thunderstruck. Then, rushing hastily out of the +apartment, he ran upstairs, expecting to find his father in his study, +but he rapped there in vain. + +While he was yet at the door of the study he heard the bedroom door +open, turned, and saw his father. Instead of going direct to his study, +M. Morrel had returned to his bedchamber, which he was only this moment +quitting. Morrel uttered a cry of surprise at the sight of his son, of +whose arrival he was ignorant. He remained motionless on the spot, +pressing with his left hand something he had concealed under his coat. +Maximilian sprang down the staircase, and threw his arms round his +father’s neck; but suddenly he recoiled, and placed his right hand on +Morrel’s breast. + +“Father,” he exclaimed, turning pale as death, “what are you going to +do with that brace of pistols under your coat?” + +“Oh, this is what I feared!” said Morrel. + +“Father, father, in Heaven’s name,” exclaimed the young man, “what are +these weapons for?” + +“Maximilian,” replied Morrel, looking fixedly at his son, “you are a +man, and a man of honor. Come, and I will explain to you.” + +And with a firm step Morrel went up to his study, while Maximilian +followed him, trembling as he went. Morrel opened the door, and closed +it behind his son; then, crossing the anteroom, went to his desk on +which he placed the pistols, and pointed with his finger to an open +ledger. In this ledger was made out an exact balance-sheet of his +affairs. Morrel had to pay, within half an hour, 287,500 francs. All he +possessed was 15,257 francs. + +“Read!” said Morrel. + +The young man was overwhelmed as he read. Morrel said not a word. What +could he say? What need he add to such a desperate proof in figures? + +“And have you done all that is possible, father, to meet this +disastrous result?” asked the young man, after a moment’s pause. + +“I have,” replied Morrel. + +“You have no money coming in on which you can rely?” + +“None.” + +“You have exhausted every resource?” + +“All.” + +“And in half an hour,” said Maximilian in a gloomy voice, “our name is +dishonored!” + +“Blood washes out dishonor,” said Morrel. + +“You are right, father; I understand you.” Then extending his hand +towards one of the pistols, he said, “There is one for you and one for +me—thanks!” + +Morrel caught his hand. “Your mother—your sister! Who will support +them?” + +A shudder ran through the young man’s frame. “Father,” he said, “do you +reflect that you are bidding me to live?” + +“Yes, I do so bid you,” answered Morrel, “it is your duty. You have a +calm, strong mind, Maximilian. Maximilian, you are no ordinary man. I +make no requests or commands; I only ask you to examine my position as +if it were your own, and then judge for yourself.” + +The young man reflected for a moment, then an expression of sublime +resignation appeared in his eyes, and with a slow and sad gesture he +took off his two epaulets, the insignia of his rank. + +“Be it so, then, my father,” he said, extending his hand to Morrel, +“die in peace, my father; I will live.” + +Morrel was about to cast himself on his knees before his son, but +Maximilian caught him in his arms, and those two noble hearts were +pressed against each other for a moment. + +“You know it is not my fault,” said Morrel. + +20057m + + + +Maximilian smiled. “I know, father, you are the most honorable man I +have ever known.” + +“Good, my son. And now there is no more to be said; go and rejoin your +mother and sister.” + +“My father,” said the young man, bending his knee, “bless me!” Morrel +took the head of his son between his two hands, drew him forward, and +kissing his forehead several times said: + +“Oh, yes, yes, I bless you in my own name, and in the name of three +generations of irreproachable men, who say through me, ‘The edifice +which misfortune has destroyed, Providence may build up again.’ On +seeing me die such a death, the most inexorable will have pity on you. +To you, perhaps, they will accord the time they have refused to me. +Then do your best to keep our name free from dishonor. Go to work, +labor, young man, struggle ardently and courageously; live, yourself, +your mother and sister, with the most rigid economy, so that from day +to day the property of those whom I leave in your hands may augment and +fructify. Reflect how glorious a day it will be, how grand, how solemn, +that day of complete restoration, on which you will say in this very +office, ‘My father died because he could not do what I have this day +done; but he died calmly and peaceably, because in dying he knew what I +should do.’” + +“My father, my father!” cried the young man, “why should you not live?” + +“If I live, all would be changed; if I live, interest would be +converted into doubt, pity into hostility; if I live I am only a man +who has broken his word, failed in his engagements—in fact, only a +bankrupt. If, on the contrary, I die, remember, Maximilian, my corpse +is that of an honest but unfortunate man. Living, my best friends would +avoid my house; dead, all Marseilles will follow me in tears to my last +home. Living, you would feel shame at my name; dead, you may raise your +head and say, ‘I am the son of him you killed, because, for the first +time, he has been compelled to break his word.’” + +The young man uttered a groan, but appeared resigned. + +“And now,” said Morrel, “leave me alone, and endeavor to keep your +mother and sister away.” + +“Will you not see my sister once more?” asked Maximilian. A last but +final hope was concealed by the young man in the effect of this +interview, and therefore he had suggested it. Morrel shook his head. “I +saw her this morning, and bade her adieu.” + +“Have you no particular commands to leave with me, my father?” inquired +Maximilian in a faltering voice. + +“Yes; my son, and a sacred command.” + +“Say it, my father.” + +“The house of Thomson & French is the only one who, from humanity, or, +it may be, selfishness—it is not for me to read men’s hearts—has had +any pity for me. Its agent, who will in ten minutes present himself to +receive the amount of a bill of 287,500 francs, I will not say granted, +but offered me three months. Let this house be the first repaid, my +son, and respect this man.” + +“Father, I will,” said Maximilian. + +“And now, once more, adieu,” said Morrel. “Go, leave me; I would be +alone. You will find my will in the secretaire in my bedroom.” + +The young man remained standing and motionless, having but the force of +will and not the power of execution. + +“Hear me, Maximilian,” said his father. “Suppose I were a soldier like +you, and ordered to carry a certain redoubt, and you knew I must be +killed in the assault, would you not say to me, as you said just now, +‘Go, father; for you are dishonored by delay, and death is preferable +to shame!’” + +“Yes, yes,” said the young man, “yes;” and once again embracing his +father with convulsive pressure, he said, “Be it so, my father.” + +And he rushed out of the study. When his son had left him, Morrel +remained an instant standing with his eyes fixed on the door; then +putting forth his arm, he pulled the bell. After a moment’s interval, +Cocles appeared. + +It was no longer the same man—the fearful revelations of the three last +days had crushed him. This thought—the house of Morrel is about to stop +payment—bent him to the earth more than twenty years would otherwise +have done. + +“My worthy Cocles,” said Morrel in a tone impossible to describe, “do +you remain in the antechamber. When the gentleman who came three months +ago—the agent of Thomson & French—arrives, announce his arrival to me.” + +Cocles made no reply; he made a sign with his head, went into the +anteroom, and seated himself. Morrel fell back in his chair, his eyes +fixed on the clock; there were seven minutes left, that was all. The +hand moved on with incredible rapidity, he seemed to see its motion. + +What passed in the mind of this man at the supreme moment of his agony +cannot be told in words. He was still comparatively young, he was +surrounded by the loving care of a devoted family, but he had convinced +himself by a course of reasoning, illogical perhaps, yet certainly +plausible, that he must separate himself from all he held dear in the +world, even life itself. To form the slightest idea of his feelings, +one must have seen his face with its expression of enforced resignation +and its tear-moistened eyes raised to heaven. The minute hand moved on. +The pistols were loaded; he stretched forth his hand, took one up, and +murmured his daughter’s name. Then he laid it down, seized his pen, and +wrote a few words. It seemed to him as if he had not taken a sufficient +farewell of his beloved daughter. Then he turned again to the clock, +counting time now not by minutes, but by seconds. + +He took up the deadly weapon again, his lips parted and his eyes fixed +on the clock, and then shuddered at the click of the trigger as he +cocked the pistol. At this moment of mortal anguish the cold sweat came +forth upon his brow, a pang stronger than death clutched at his +heart-strings. He heard the door of the staircase creak on its +hinges—the clock gave its warning to strike eleven—the door of his +study opened. Morrel did not turn round—he expected these words of +Cocles, “The agent of Thomson & French.” + +He placed the muzzle of the pistol between his teeth. Suddenly he heard +a cry—it was his daughter’s voice. He turned and saw Julie. The pistol +fell from his hands. + +“My father!” cried the young girl, out of breath, and half dead with +joy—“saved, you are saved!” And she threw herself into his arms, +holding in her extended hand a red, netted silk purse. + +20061m + + + +“Saved, my child!” said Morrel; “what do you mean?” + +“Yes, saved—saved! See, see!” said the young girl. + +Morrel took the purse, and started as he did so, for a vague +remembrance reminded him that it once belonged to himself. At one end +was the receipted bill for the 287,000 francs, and at the other was a +diamond as large as a hazel-nut, with these words on a small slip of +parchment: _Julie’s Dowry_. + +Morrel passed his hand over his brow; it seemed to him a dream. At this +moment the clock struck eleven. He felt as if each stroke of the hammer +fell upon his heart. + +“Explain, my child,” he said, “Explain, my child,” he said, +“explain—where did you find this purse?” + +“In a house in the Allées de Meilhan, No. 15, on the corner of a +mantelpiece in a small room on the fifth floor.” + +“But,” cried Morrel, “this purse is not yours!” Julie handed to her +father the letter she had received in the morning. + +“And did you go alone?” asked Morrel, after he had read it. + +“Emmanuel accompanied me, father. He was to have waited for me at the +corner of the Rue du Musée, but, strange to say, he was not there when +I returned.” + +“Monsieur Morrel!” exclaimed a voice on the stairs; “Monsieur Morrel!” + +“It is his voice!” said Julie. At this moment Emmanuel entered, his +countenance full of animation and joy. + +“The _Pharaon_!” he cried; “the _Pharaon_!” + +“What!—what!—the _Pharaon_! Are you mad, Emmanuel? You know the vessel +is lost.” + +“The _Pharaon_, sir—they signal the _Pharaon_! The _Pharaon_ is +entering the harbor!” + +Morrel fell back in his chair, his strength was failing him; his +understanding weakened by such events, refused to comprehend such +incredible, unheard-of, fabulous facts. But his son came in. + +“Father,” cried Maximilian, “how could you say the _Pharaon_ was lost? +The lookout has signalled her, and they say she is now coming into +port.” + +20063m + + + +“My dear friends,” said Morrel, “if this be so, it must be a miracle of +heaven! Impossible, impossible!” + +But what was real and not less incredible was the purse he held in his +hand, the acceptance receipted—the splendid diamond. + +“Ah, sir,” exclaimed Cocles, “what can it mean?—the _Pharaon_?” + +“Come, dear ones,” said Morrel, rising from his seat, “let us go and +see, and Heaven have pity upon us if it be false intelligence!” + +They all went out, and on the stairs met Madame Morrel, who had been +afraid to go up into the study. In a moment they were at the Canebière. +There was a crowd on the pier. All the crowd gave way before Morrel. +“The _Pharaon_! the _Pharaon_!” said every voice. + +And, wonderful to see, in front of the tower of Saint-Jean, was a ship +bearing on her stern these words, printed in white letters, “The +_Pharaon_, Morrel & Son, of Marseilles.” She was the exact duplicate of +the other _Pharaon_, and loaded, as that had been, with cochineal and +indigo. She cast anchor, clued up sails, and on the deck was Captain +Gaumard giving orders, and good old Penelon making signals to M. +Morrel. To doubt any longer was impossible; there was the evidence of +the senses, and ten thousand persons who came to corroborate the +testimony. + +As Morrel and his son embraced on the pier-head, in the presence and +amid the applause of the whole city witnessing this event, a man, with +his face half-covered by a black beard, and who, concealed behind the +sentry-box, watched the scene with delight, uttered these words in a +low tone: + +“Be happy, noble heart, be blessed for all the good thou hast done and +wilt do hereafter, and let my gratitude remain in obscurity like your +good deeds.” + +20064m + + + +And with a smile expressive of supreme content, he left his +hiding-place, and without being observed, descended one of the flights +of steps provided for debarkation, and hailing three times, shouted +“Jacopo, Jacopo, Jacopo!” + +Then a launch came to shore, took him on board, and conveyed him to a +yacht splendidly fitted up, on whose deck he sprung with the activity +of a sailor; thence he once again looked towards Morrel, who, weeping +with joy, was shaking hands most cordially with all the crowd around +him, and thanking with a look the unknown benefactor whom he seemed to +be seeking in the skies. + +“And now,” said the unknown, “farewell kindness, humanity, and +gratitude! Farewell to all the feelings that expand the heart! I have +been Heaven’s substitute to recompense the good—now the god of +vengeance yields to me his power to punish the wicked!” + +At these words he gave a signal, and, as if only awaiting this signal, +the yacht instantly put out to sea. + + + + Chapter 31. Italy: Sinbad the Sailor + +Towards the beginning of the year 1838, two young men belonging to the +first society of Paris, the Viscount Albert de Morcerf and the Baron +Franz d’Épinay, were at Florence. They had agreed to see the Carnival +at Rome that year, and that Franz, who for the last three or four years +had inhabited Italy, should act as _cicerone_ to Albert. + +As it is no inconsiderable affair to spend the Carnival at Rome, +especially when you have no great desire to sleep on the Piazza del +Popolo, or the Campo Vaccino, they wrote to Signor Pastrini, the +proprietor of the Hôtel de Londres, Piazza di Spagna, to reserve +comfortable apartments for them. Signor Pastrini replied that he had +only two rooms and a parlor on the third floor, which he offered at the +low charge of a louis per diem. They accepted his offer; but wishing to +make the best use of the time that was left, Albert started for Naples. +As for Franz, he remained at Florence, and after having passed a few +days in exploring the paradise of the Cascine, and spending two or +three evenings at the houses of the Florentine nobility, he took a +fancy into his head (having already visited Corsica, the cradle of +Bonaparte) to visit Elba, the waiting-place of Napoleon. + +One evening he cast off the painter of a sailboat from the iron ring +that secured it to the dock at Leghorn, wrapped himself in his coat and +lay down, and said to the crew,—“To the Island of Elba!” + +The boat shot out of the harbor like a bird and the next morning Franz +disembarked at Porto-Ferrajo. He traversed the island, after having +followed the traces which the footsteps of the giant have left, and +re-embarked for Marciana. + +Two hours after he again landed at Pianosa, where he was assured that +red partridges abounded. The sport was bad; Franz only succeeded in +killing a few partridges, and, like every unsuccessful sportsman, he +returned to the boat very much out of temper. + +“Ah, if your excellency chose,” said the captain, “you might have +capital sport.” + +“Where?” + +“Do you see that island?” continued the captain, pointing to a conical +pile rising from the indigo sea. + +“Well, what is this island?” + +“The Island of Monte Cristo.” + +“But I have no permission to shoot over this island.” + +“Your excellency does not require a permit, for the island is +uninhabited.” + +“Ah, indeed!” said the young man. “A desert island in the midst of the +Mediterranean must be a curiosity.” + +“It is very natural; this island is a mass of rocks, and does not +contain an acre of land capable of cultivation.” + +“To whom does this island belong?” + +“To Tuscany.” + +“What game shall I find there!” + +“Thousands of wild goats.” + +“Who live upon the stones, I suppose,” said Franz with an incredulous +smile. + +“No, but by browsing the shrubs and trees that grow out of the crevices +of the rocks.” + +“Where can I sleep?” + +“On shore in the grottos, or on board in your cloak; besides, if your +excellency pleases, we can leave as soon as you like—we can sail as +well by night as by day, and if the wind drops we can use our oars.” + +As Franz had sufficient time, and his apartments at Rome were not yet +available, he accepted the proposition. Upon his answer in the +affirmative, the sailors exchanged a few words together in a low tone. +“Well,” asked he, “what now? Is there any difficulty in the way?” + +“No.” replied the captain, “but we must warn your excellency that the +island is an infected port.” + +“What do you mean?” + +“Monte Cristo although uninhabited, yet serves occasionally as a refuge +for the smugglers and pirates who come from Corsica, Sardinia, and +Africa, and if it becomes known that we have been there, we shall have +to perform quarantine for six days on our return to Leghorn.” + +“The deuce! That puts a different face on the matter. Six days! Why, +that’s as long as the Almighty took to make the world! Too long a +wait—too long.” + +“But who will say your excellency has been to Monte Cristo?” + +“Oh, I shall not,” cried Franz. + +“Nor I, nor I,” chorused the sailors. + +“Then steer for Monte Cristo.” + +The captain gave his orders, the helm was put up, and the boat was soon +sailing in the direction of the island. Franz waited until all was in +order, and when the sail was filled, and the four sailors had taken +their places—three forward, and one at the helm—he resumed the +conversation. “Gaetano,” said he to the captain, “you tell me Monte +Cristo serves as a refuge for pirates, who are, it seems to me, a very +different kind of game from the goats.” + +“Yes, your excellency, and it is true.” + +“I knew there were smugglers, but I thought that since the capture of +Algiers, and the destruction of the regency, pirates existed only in +the romances of Cooper and Captain Marryat.” + +“Your excellency is mistaken; there are pirates, like the bandits who +were believed to have been exterminated by Pope Leo XII., and who yet, +every day, rob travellers at the gates of Rome. Has not your excellency +heard that the French _chargé d’affaires_ was robbed six months ago +within five hundred paces of Velletri?” + +“Oh, yes, I heard that.” + +“Well, then, if, like us, your excellency lived at Leghorn, you would +hear, from time to time, that a little merchant vessel, or an English +yacht that was expected at Bastia, at Porto-Ferrajo, or at Civita +Vecchia, has not arrived; no one knows what has become of it, but, +doubtless, it has struck on a rock and foundered. Now this rock it has +met has been a long and narrow boat, manned by six or eight men, who +have surprised and plundered it, some dark and stormy night, near some +desert and gloomy island, as bandits plunder a carriage in the recesses +of a forest.” + +“But,” asked Franz, who lay wrapped in his cloak at the bottom of the +boat, “why do not those who have been plundered complain to the French, +Sardinian, or Tuscan governments?” + +“Why?” said Gaetano with a smile. + +“Yes, why?” + +“Because, in the first place, they transfer from the vessel to their +own boat whatever they think worth taking, then they bind the crew hand +and foot, they attach to everyone’s neck a four-and-twenty-pound ball, +a large hole is chopped in the vessel’s bottom, and then they leave +her. At the end of ten minutes the vessel begins to roll heavily and +settle down. First one gun’l goes under, then the other. Then they lift +and sink again, and both go under at once. All at once there’s a noise +like a cannon—that’s the air blowing up the deck. Soon the water rushes +out of the scupper-holes like a whale spouting, the vessel gives a last +groan, spins round and round, and disappears, forming a vast whirlpool +in the ocean, and then all is over, so that in five minutes nothing but +the eye of God can see the vessel where she lies at the bottom of the +sea. Do you understand now,” said the captain, “why no complaints are +made to the government, and why the vessel never reaches port?” + +It is probable that if Gaetano had related this previous to proposing +the expedition, Franz would have hesitated, but now that they had +started, he thought it would be cowardly to draw back. He was one of +those men who do not rashly court danger, but if danger presents +itself, combat it with the most unalterable coolness. Calm and +resolute, he treated any peril as he would an adversary in a +duel,—calculated its probable method of approach; retreated, if at all, +as a point of strategy and not from cowardice; was quick to see an +opening for attack, and won victory at a single thrust. + +“Bah!” said he, “I have travelled through Sicily and Calabria—I have +sailed two months in the Archipelago, and yet I never saw even the +shadow of a bandit or a pirate.” + +“I did not tell your excellency this to deter you from your project,” +replied Gaetano, “but you questioned me, and I have answered; that’s +all.” + +“Yes, and your conversation is most interesting; and as I wish to enjoy +it as long as possible, steer for Monte Cristo.” + +The wind blew strongly, the boat made six or seven knots an hour, and +they were rapidly reaching the end of their voyage. As they drew near +the island seemed to lift from the sea, and the air was so clear that +they could already distinguish the rocks heaped on one another, like +cannon balls in an arsenal, with green bushes and trees growing in the +crevices. As for the sailors, although they appeared perfectly tranquil +yet it was evident that they were on the alert, and that they carefully +watched the glassy surface over which they were sailing, and on which a +few fishing-boats, with their white sails, were alone visible. + +They were within fifteen miles of Monte Cristo when the sun began to +set behind Corsica, whose mountains appeared against the sky, showing +their rugged peaks in bold relief; this mass of rock, like the giant +Adamastor, rose dead ahead, a formidable barrier, and intercepting the +light that gilded its massive peaks so that the voyagers were in +shadow. Little by little the shadow rose higher and seemed to drive +before it the last rays of the expiring day; at last the reflection +rested on the summit of the mountain, where it paused an instant, like +the fiery crest of a volcano, then gloom gradually covered the summit +as it had covered the base, and the island now only appeared to be a +gray mountain that grew continually darker; half an hour after, the +night was quite dark. + +Fortunately, the mariners were used to these latitudes, and knew every +rock in the Tuscan Archipelago; for in the midst of this obscurity +Franz was not without uneasiness—Corsica had long since disappeared, +and Monte Cristo itself was invisible; but the sailors seemed, like the +lynx, to see in the dark, and the pilot who steered did not evince the +slightest hesitation. + +An hour had passed since the sun had set, when Franz fancied he saw, at +a quarter of a mile to the left, a dark mass, but he could not +precisely make out what it was, and fearing to excite the mirth of the +sailors by mistaking a floating cloud for land, he remained silent; +suddenly a great light appeared on the strand; land might resemble a +cloud, but the fire was not a meteor. + +“What is this light?” asked he. + +“Hush!” said the captain; “it is a fire.” + +“But you told me the island was uninhabited?” + +“I said there were no fixed habitations on it, but I said also that it +served sometimes as a harbor for smugglers.” + +“And for pirates?” + +“And for pirates,” returned Gaetano, repeating Franz’s words. “It is +for that reason I have given orders to pass the island, for, as you +see, the fire is behind us.” + +“But this fire?” continued Franz. “It seems to me rather reassuring +than otherwise; men who did not wish to be seen would not light a +fire.” + +“Oh, that goes for nothing,” said Gaetano. “If you can guess the +position of the island in the darkness, you will see that the fire +cannot be seen from the side or from Pianosa, but only from the sea.” + +“You think, then, this fire indicates the presence of unpleasant +neighbors?” + +“That is what we must find out,” returned Gaetano, fixing his eyes on +this terrestrial star. + +“How can you find out?” + +“You shall see.” + +Gaetano consulted with his companions, and after five minutes’ +discussion a manœuvre was executed which caused the vessel to tack +about, they returned the way they had come, and in a few minutes the +fire disappeared, hidden by an elevation of the land. The pilot again +changed the course of the boat, which rapidly approached the island, +and was soon within fifty paces of it. Gaetano lowered the sail, and +the boat came to rest. All this was done in silence, and from the +moment that their course was changed not a word was spoken. + +Gaetano, who had proposed the expedition, had taken all the +responsibility on himself; the four sailors fixed their eyes on him, +while they got out their oars and held themselves in readiness to row +away, which, thanks to the darkness, would not be difficult. As for +Franz, he examined his arms with the utmost coolness; he had two +double-barrelled guns and a rifle; he loaded them, looked at the +priming, and waited quietly. + +During this time the captain had thrown off his vest and shirt, and +secured his trousers round his waist; his feet were naked, so he had no +shoes and stockings to take off; after these preparations he placed his +finger on his lips, and lowering himself noiselessly into the sea, swam +towards the shore with such precaution that it was impossible to hear +the slightest sound; he could only be traced by the phosphorescent line +in his wake. This track soon disappeared; it was evident that he had +touched the shore. + +Everyone on board remained motionless for half an hour, when the same +luminous track was again observed, and the swimmer was soon on board. + +“Well?” exclaimed Franz and the sailors in unison. + +“They are Spanish smugglers,” said he; “they have with them two +Corsican bandits.” + +“And what are these Corsican bandits doing here with Spanish +smugglers?” + +“Alas,” returned the captain with an accent of the most profound pity, +“we ought always to help one another. Very often the bandits are hard +pressed by gendarmes or carbineers; well, they see a vessel, and good +fellows like us on board, they come and demand hospitality of us; you +can’t refuse help to a poor hunted devil; we receive them, and for +greater security we stand out to sea. This costs us nothing, and saves +the life, or at least the liberty, of a fellow-creature, who on the +first occasion returns the service by pointing out some safe spot where +we can land our goods without interruption.” + +“Ah!” said Franz, “then you are a smuggler occasionally, Gaetano?” + +“Your excellency, we must live somehow,” returned the other, smiling +impenetrably. + +“Then you know the men who are now on Monte Cristo?” + +“Oh, yes, we sailors are like freemasons, and recognize each other by +signs.” + +“And do you think we have nothing to fear if we land?” + +“Nothing at all; smugglers are not thieves.” + +“But these two Corsican bandits?” said Franz, calculating the chances +of peril. + +“It is not their fault that they are bandits, but that of the +authorities.” + +“How so?” + +“Because they are pursued for having made a stiff, as if it was not in +a Corsican’s nature to revenge himself.” + +“What do you mean by having made a stiff?—having assassinated a man?” +said Franz, continuing his investigation. + +“I mean that they have killed an enemy, which is a very different +thing,” returned the captain. + +“Well,” said the young man, “let us demand hospitality of these +smugglers and bandits. Do you think they will grant it?” + +“Without doubt.” + +“How many are they?” + +“Four, and the two bandits make six.” + +“Just our number, so that if they prove troublesome, we shall be able +to hold them in check; so, for the last time, steer to Monte Cristo.” + +“Yes, but your excellency will permit us to take all due precautions.” + +“By all means, be as wise as Nestor and as prudent as Ulysses; I do +more than permit, I exhort you.” + +“Silence, then!” said Gaetano. + +Everyone obeyed. For a man who, like Franz, viewed his position in its +true light, it was a grave one. He was alone in the darkness with +sailors whom he did not know, and who had no reason to be devoted to +him; who knew that he had several thousand francs in his belt, and who +had often examined his weapons,—which were very beautiful,—if not with +envy, at least with curiosity. On the other hand, he was about to land, +without any other escort than these men, on an island which had, +indeed, a very religious name, but which did not seem to Franz likely +to afford him much hospitality, thanks to the smugglers and bandits. +The history of the scuttled vessels, which had appeared improbable +during the day, seemed very probable at night; placed as he was between +two possible sources of danger, he kept his eye on the crew, and his +gun in his hand. + +The sailors had again hoisted sail, and the vessel was once more +cleaving the waves. Through the darkness Franz, whose eyes were now +more accustomed to it, could see the looming shore along which the boat +was sailing, and then, as they rounded a rocky point, he saw the fire +more brilliant than ever, and about it five or six persons seated. The +blaze illumined the sea for a hundred paces around. Gaetano skirted the +light, carefully keeping the boat in the shadow; then, when they were +opposite the fire, he steered to the centre of the circle, singing a +fishing song, of which his companions sung the chorus. + +At the first words of the song the men seated round the fire arose and +approached the landing-place, their eyes fixed on the boat, evidently +seeking to know who the new-comers were and what were their intentions. +They soon appeared satisfied and returned (with the exception of one, +who remained at the shore) to their fire, at which the carcass of a +goat was roasting. When the boat was within twenty paces of the shore, +the man on the beach, who carried a carbine, presented arms after the +manner of a sentinel, and cried, “Who comes there?” in Sardinian. + +Franz coolly cocked both barrels. Gaetano then exchanged a few words +with this man which the traveller did not understand, but which +evidently concerned him. + +“Will your excellency give your name, or remain _incognito_?” asked the +captain. + +“My name must rest unknown,” replied Franz; “merely say I am a +Frenchman travelling for pleasure.” + +As soon as Gaetano had transmitted this answer, the sentinel gave an +order to one of the men seated round the fire, who rose and disappeared +among the rocks. Not a word was spoken, everyone seemed occupied, Franz +with his disembarkment, the sailors with their sails, the smugglers +with their goat; but in the midst of all this carelessness it was +evident that they mutually observed each other. + +The man who had disappeared returned suddenly on the opposite side to +that by which he had left; he made a sign with his head to the +sentinel, who, turning to the boat, said, “_S’accommodi_.” The Italian +_s’accommodi_ is untranslatable; it means at once, “Come, enter, you +are welcome; make yourself at home; you are the master.” It is like +that Turkish phrase of Molière’s that so astonished the bourgeois +gentleman by the number of things implied in its utterance. + +The sailors did not wait for a second invitation; four strokes of the +oar brought them to land; Gaetano sprang to shore, exchanged a few +words with the sentinel, then his comrades disembarked, and lastly came +Franz. One of his guns was swung over his shoulder, Gaetano had the +other, and a sailor held his rifle; his dress, half artist, half dandy, +did not excite any suspicion, and, consequently, no disquietude. The +boat was moored to the shore, and they advanced a few paces to find a +comfortable bivouac; but, doubtless, the spot they chose did not suit +the smuggler who filled the post of sentinel, for he cried out: + +“Not that way, if you please.” + +Gaetano faltered an excuse, and advanced to the opposite side, while +two sailors kindled torches at the fire to light them on their way. + +They advanced about thirty paces, and then stopped at a small esplanade +surrounded with rocks, in which seats had been cut, not unlike +sentry-boxes. Around in the crevices of the rocks grew a few dwarf oaks +and thick bushes of myrtles. Franz lowered a torch, and saw by the mass +of cinders that had accumulated that he was not the first to discover +this retreat, which was, doubtless, one of the halting-places of the +wandering visitors of Monte Cristo. + +As for his suspicions, once on _terra firma_, once that he had seen the +indifferent, if not friendly, appearance of his hosts, his anxiety had +quite disappeared, or rather, at sight of the goat, had turned to +appetite. He mentioned this to Gaetano, who replied that nothing could +be more easy than to prepare a supper when they had in their boat, +bread, wine, half a dozen partridges, and a good fire to roast them by. + +“Besides,” added he, “if the smell of their roast meat tempts you, I +will go and offer them two of our birds for a slice.” + +“You are a born diplomat,” returned Franz; “go and try.” + +Meanwhile the sailors had collected dried sticks and branches with +which they made a fire. Franz waited impatiently, inhaling the aroma of +the roasted meat, when the captain returned with a mysterious air. + +“Well,” said Franz, “anything new?—do they refuse?” + +“On the contrary,” returned Gaetano, “the chief, who was told you were +a young Frenchman, invites you to sup with him.” + +“Well,” observed Franz, “this chief is very polite, and I see no +objection—the more so as I bring my share of the supper.” + +“Oh, it is not that; he has plenty, and to spare, for supper; but he +makes one condition, and rather a peculiar one, before he will receive +you at his house.” + +“His house? Has he built one here, then?” + +“No, but he has a very comfortable one all the same, so they say.” + +“You know this chief, then?” + +“I have heard talk of him.” + +“Favorably or otherwise?” + +“Both.” + +“The deuce!—and what is this condition?” + +“That you are blindfolded, and do not take off the bandage until he +himself bids you.” + +Franz looked at Gaetano, to see, if possible, what he thought of this +proposal. “Ah,” replied he, guessing Franz’s thought, “I know this is a +serious matter.” + +“What should you do in my place?” + +“I, who have nothing to lose,—I should go.” + +20075m + + + +“You would accept?” + +“Yes, were it only out of curiosity.” + +“There is something very peculiar about this chief, then?” + +“Listen,” said Gaetano, lowering his voice, “I do not know if what they +say is true”—he stopped to see if anyone was near. + +“What do they say?” + +“That this chief inhabits a cavern to which the Pitti Palace is +nothing.” + +“What nonsense!” said Franz, reseating himself. + +“It is no nonsense; it is quite true. Cama, the pilot of the _Saint +Ferdinand_, went in once, and he came back amazed, vowing that such +treasures were only to be heard of in fairy tales.” + +“Do you know,” observed Franz, “that with such stories you make me +think of Ali Baba’s enchanted cavern?” + +“I tell you what I have been told.” + +“Then you advise me to accept?” + +“Oh, I don’t say that; your excellency will do as you please; I should +be sorry to advise you in the matter.” + +Franz pondered the matter for a few moments, concluded that a man so +rich could not have any intention of plundering him of what little he +had, and seeing only the prospect of a good supper, accepted. Gaetano +departed with the reply. Franz was prudent, and wished to learn all he +possibly could concerning his host. He turned towards the sailor, who, +during this dialogue, had sat gravely plucking the partridges with the +air of a man proud of his office, and asked him how these men had +landed, as no vessel of any kind was visible. + +“Never mind that,” returned the sailor, “I know their vessel.” + +“Is it a very beautiful vessel?” + +“I would not wish for a better to sail round the world.” + +“Of what burden is she?” + +“About a hundred tons; but she is built to stand any weather. She is +what the English call a yacht.” + +“Where was she built?” + +“I know not; but my own opinion is she is a Genoese.” + +“And how did a leader of smugglers,” continued Franz, “venture to build +a vessel designed for such a purpose at Genoa?” + +“I did not say that the owner was a smuggler,” replied the sailor. + +“No; but Gaetano did, I thought.” + +“Gaetano had only seen the vessel from a distance, he had not then +spoken to anyone.” + +“And if this person be not a smuggler, who is he?” + +“A wealthy signor, who travels for his pleasure.” + +“Come,” thought Franz, “he is still more mysterious, since the two +accounts do not agree.” + +“What is his name?” + +“If you ask him, he says Sinbad the Sailor; but I doubt if it be his +real name.” + +“Sinbad the Sailor?” + +“Yes.” + +“And where does he reside?” + +“On the sea.” + +“What country does he come from?” + +“I do not know.” + +“Have you ever seen him?” + +“Sometimes.” + +“What sort of a man is he?” + +“Your excellency will judge for yourself.” + +“Where will he receive me?” + +“No doubt in the subterranean palace Gaetano told you of.” + +“Have you never had the curiosity, when you have landed and found this +island deserted, to seek for this enchanted palace?” + +“Oh, yes, more than once, but always in vain; we examined the grotto +all over, but we never could find the slightest trace of any opening; +they say that the door is not opened by a key, but a magic word.” + +“Decidedly,” muttered Franz, “this is an Arabian Nights’ adventure.” + +“His excellency waits for you,” said a voice, which he recognized as +that of the sentinel. He was accompanied by two of the yacht’s crew. + +Franz drew his handkerchief from his pocket, and presented it to the +man who had spoken to him. Without uttering a word, they bandaged his +eyes with a care that showed their apprehensions of his committing some +indiscretion. Afterwards he was made to promise that he would not make +the least attempt to raise the bandage. He promised. + +Then his two guides took his arms, and he went on, guided by them, and +preceded by the sentinel. After going about thirty paces, he smelt the +appetizing odor of the kid that was roasting, and knew thus that he was +passing the bivouac; they then led him on about fifty paces farther, +evidently advancing towards that part of the shore where they would not +allow Gaetano to go—a refusal he could now comprehend. + +Presently, by a change in the atmosphere, he knew that they were +entering a cave; after going on for a few seconds more he heard a +crackling, and it seemed to him as though the atmosphere again changed, +and became balmy and perfumed. At length his feet touched on a thick +and soft carpet, and his guides let go their hold of him. There was a +moment’s silence, and then a voice, in excellent French, although, with +a foreign accent, said: + +“Welcome, sir. I beg you will remove your bandage.” + +It may be supposed, then, Franz did not wait for a repetition of this +permission, but took off the handkerchief, and found himself in the +presence of a man from thirty-eight to forty years of age, dressed in a +Tunisian costume, that is to say, a red cap with a long blue silk +tassel, a vest of black cloth embroidered with gold, pantaloons of deep +red, large and full gaiters of the same color, embroidered with gold +like the vest, and yellow slippers; he had a splendid cashmere round +his waist, and a small sharp and crooked cangiar was passed through his +girdle. + +Although of a paleness that was almost livid, this man had a remarkably +handsome face; his eyes were penetrating and sparkling; his nose, quite +straight, and projecting direct from the brow, was of the pure Greek +type, while his teeth, as white as pearls, were set off to admiration +by the black moustache that encircled them. + +His pallor was so peculiar, that it seemed to pertain to one who had +been long entombed, and who was incapable of resuming the healthy glow +and hue of life. He was not particularly tall, but extremely well made, +and, like the men of the South, had small hands and feet. But what +astonished Franz, who had treated Gaetano’s description as a fable, was +the splendor of the apartment in which he found himself. + +The entire chamber was lined with crimson brocade, worked with flowers +of gold. In a recess was a kind of divan, surmounted with a stand of +Arabian swords in silver scabbards, and the handles resplendent with +gems; from the ceiling hung a lamp of Venetian glass, of beautiful +shape and color, while the feet rested on a Turkey carpet, in which +they sunk to the instep; tapestry hung before the door by which Franz +had entered, and also in front of another door, leading into a second +apartment which seemed to be brilliantly illuminated. + +The host gave Franz time to recover from his surprise, and, moreover, +returned look for look, not even taking his eyes off him. + +“Sir,” he said, after a pause, “a thousand excuses for the precaution +taken in your introduction hither; but as, during the greater portion +of the year, this island is deserted, if the secret of this abode were +discovered, I should doubtless, find on my return my temporary +retirement in a state of great disorder, which would be exceedingly +annoying, not for the loss it occasioned me, but because I should not +have the certainty I now possess of separating myself from all the rest +of mankind at pleasure. Let me now endeavor to make you forget this +temporary unpleasantness, and offer you what no doubt you did not +expect to find here—that is to say, a tolerable supper and pretty +comfortable beds.” + +“_Ma foi_, my dear sir,” replied Franz, “make no apologies. I have +always observed that they bandage people’s eyes who penetrate enchanted +palaces, for instance, those of Raoul in the _Huguenots_, and really I +have nothing to complain of, for what I see makes me think of the +wonders of the _Arabian Nights_.” + +20079m + + + +“Alas! I may say with Lucullus, if I could have anticipated the honor +of your visit, I would have prepared for it. But such as is my +hermitage, it is at your disposal; such as is my supper, it is yours to +share, if you will. Ali, is the supper ready?” + +At this moment the tapestry moved aside, and a Nubian, black as ebony, +and dressed in a plain white tunic, made a sign to his master that all +was prepared in the dining-room. + +“Now,” said the unknown to Franz, “I do not know if you are of my +opinion, but I think nothing is more annoying than to remain two or +three hours together without knowing by name or appellation how to +address one another. Pray observe, that I too much respect the laws of +hospitality to ask your name or title. I only request you to give me +one by which I may have the pleasure of addressing you. As for myself, +that I may put you at your ease, I tell you that I am generally called +‘Sinbad the Sailor.’” + +“And I,” replied Franz, “will tell you, as I only require his wonderful +lamp to make me precisely like Aladdin, that I see no reason why at +this moment I should not be called Aladdin. That will keep us from +going away from the East whither I am tempted to think I have been +conveyed by some good genius.” + +“Well, then, Signor Aladdin,” replied the singular Amphitryon, “you +heard our repast announced, will you now take the trouble to enter the +dining-room, your humble servant going first to show the way?” + +At these words, moving aside the tapestry, Sinbad preceded his guest. +Franz now looked upon another scene of enchantment; the table was +splendidly covered, and once convinced of this important point he cast +his eyes around him. The dining-room was scarcely less striking than +the room he had just left; it was entirely of marble, with antique +bas-reliefs of priceless value; and at the four corners of this +apartment, which was oblong, were four magnificent statues, having +baskets in their hands. These baskets contained four pyramids of most +splendid fruit; there were Sicily pine-apples, pomegranates from +Malaga, oranges from the Balearic Isles, peaches from France, and dates +from Tunis. + +The supper consisted of a roast pheasant garnished with Corsican +blackbirds; a boar’s ham with jelly, a quarter of a kid with tartar +sauce, a glorious turbot, and a gigantic lobster. Between these large +dishes were smaller ones containing various dainties. The dishes were +of silver, and the plates of Japanese china. + +Franz rubbed his eyes in order to assure himself that this was not a +dream. Ali alone was present to wait at table, and acquitted himself so +admirably, that the guest complimented his host thereupon. + +“Yes,” replied he, while he did the honors of the supper with much ease +and grace—“yes, he is a poor devil who is much devoted to me, and does +all he can to prove it. He remembers that I saved his life, and as he +has a regard for his head, he feels some gratitude towards me for +having kept it on his shoulders.” + +Ali approached his master, took his hand, and kissed it. + +“Would it be impertinent, Signor Sinbad,” said Franz, “to ask you the +particulars of this kindness?” + +20081m + + + +“Oh, they are simple enough,” replied the host. “It seems the fellow +had been caught wandering nearer to the harem of the Bey of Tunis than +etiquette permits to one of his color, and he was condemned by the Bey +to have his tongue cut out, and his hand and head cut off; the tongue +the first day, the hand the second, and the head the third. I always +had a desire to have a mute in my service, so learning the day his +tongue was cut out, I went to the Bey, and proposed to give him for Ali +a splendid double-barreled gun, which I knew he was very desirous of +having. He hesitated a moment, he was so very desirous to complete the +poor devil’s punishment. But when I added to the gun an English cutlass +with which I had shivered his highness’s yataghan to pieces, the Bey +yielded, and agreed to forgive the hand and head, but on condition that +the poor fellow never again set foot in Tunis. This was a useless +clause in the bargain, for whenever the coward sees the first glimpse +of the shores of Africa, he runs down below, and can only be induced to +appear again when we are out of sight of that quarter of the globe.” + +Franz remained a moment silent and pensive, hardly knowing what to +think of the half-kindness, half-cruelty, with which his host related +the brief narrative. + +“And like the celebrated sailor whose name you have assumed,” he said, +by way of changing the conversation, “you pass your life in +travelling?” + +“Yes. I made a vow at a time when I little thought I should ever be +able to accomplish it,” said the unknown with a singular smile; “and I +made some others also which I hope I may fulfil in due season.” + +Although Sinbad pronounced these words with much calmness, his eyes +gave forth gleams of extraordinary ferocity. + +“You have suffered a great deal, sir?” said Franz inquiringly. + +Sinbad started and looked fixedly at him, as he replied, “What makes +you suppose so?” + +“Everything,” answered Franz,—“your voice, your look, your pallid +complexion, and even the life you lead.” + +“I?—I live the happiest life possible, the real life of a pasha. I am +king of all creation. I am pleased with one place, and stay there; I +get tired of it, and leave it; I am free as a bird and have wings like +one; my attendants obey my slightest wish. Sometimes I amuse myself by +delivering some bandit or criminal from the bonds of the law. Then I +have my mode of dispensing justice, silent and sure, without respite or +appeal, which condemns or pardons, and which no one sees. Ah, if you +had tasted my life, you would not desire any other, and would never +return to the world unless you had some great project to accomplish +there.” + +“Revenge, for instance!” observed Franz. + +The unknown fixed on the young man one of those looks which penetrate +into the depth of the heart and thoughts. “And why revenge?” he asked. + +“Because,” replied Franz, “you seem to me like a man who, persecuted by +society, has a fearful account to settle with it.” + +“Ah!” responded Sinbad, laughing with his singular laugh, which +displayed his white and sharp teeth. “You have not guessed rightly. +Such as you see me I am, a sort of philosopher, and one day perhaps I +shall go to Paris to rival Monsieur Appert, and the man in the little +blue cloak.” + +“And will that be the first time you ever took that journey?” + +“Yes; it will. I must seem to you by no means curious, but I assure you +that it is not my fault I have delayed it so long—it will happen one +day or the other.” + +20083m + + + +“And do you propose to make this journey very shortly?” + +“I do not know; it depends on circumstances which depend on certain +arrangements.” + +“I should like to be there at the time you come, and I will endeavor to +repay you, as far as lies in my power, for your liberal hospitality +displayed to me at Monte Cristo.” + +“I should avail myself of your offer with pleasure,” replied the host, +“but, unfortunately, if I go there, it will be, in all probability, +_incognito_.” + +The supper appeared to have been supplied solely for Franz, for the +unknown scarcely touched one or two dishes of the splendid banquet to +which his guest did ample justice. Then Ali brought on the dessert, or +rather took the baskets from the hands of the statues and placed them +on the table. Between the two baskets he placed a small silver cup with +a silver cover. The care with which Ali placed this cup on the table +roused Franz’s curiosity. He raised the cover and saw a kind of +greenish paste, something like preserved angelica, but which was +perfectly unknown to him. He replaced the lid, as ignorant of what the +cup contained as he was before he had looked at it, and then casting +his eyes towards his host he saw him smile at his disappointment. + +“You cannot guess,” said he, “what there is in that small vase, can +you?” + +“No, I really cannot.” + +“Well, then, that green preserve is nothing less than the ambrosia +which Hebe served at the table of Jupiter.” + +“But,” replied Franz, “this ambrosia, no doubt, in passing through +mortal hands has lost its heavenly appellation and assumed a human +name; in vulgar phrase, what may you term this composition, for which, +to tell the truth, I do not feel any particular desire?” + +“Ah, thus it is that our material origin is revealed,” cried Sinbad; +“we frequently pass so near to happiness without seeing, without +regarding it, or if we do see and regard it, yet without recognizing +it. Are you a man for the substantials, and is gold your god? taste +this, and the mines of Peru, Guzerat, and Golconda are opened to you. +Are you a man of imagination—a poet? taste this, and the boundaries of +possibility disappear; the fields of infinite space open to you, you +advance free in heart, free in mind, into the boundless realms of +unfettered reverie. Are you ambitious, and do you seek after the +greatnesses of the earth? taste this, and in an hour you will be a +king, not a king of a petty kingdom hidden in some corner of Europe +like France, Spain, or England, but king of the world, king of the +universe, king of creation; without bowing at the feet of Satan, you +will be king and master of all the kingdoms of the earth. Is it not +tempting what I offer you, and is it not an easy thing, since it is +only to do thus? look!” + +At these words he uncovered the small cup which contained the substance +so lauded, took a teaspoonful of the magic sweetmeat, raised it to his +lips, and swallowed it slowly with his eyes half shut and his head bent +backwards. Franz did not disturb him whilst he absorbed his favorite +sweetmeat, but when he had finished, he inquired: + +“What, then, is this precious stuff?” + +“Did you ever hear,” he replied, “of the Old Man of the Mountain, who +attempted to assassinate Philippe Auguste?” + +“Of course I have.” + +“Well, you know he reigned over a rich valley which was overhung by the +mountain whence he derived his picturesque name. In this valley were +magnificent gardens planted by Hassen-ben-Sabah, and in these gardens +isolated pavilions. Into these pavilions he admitted the elect, and +there, says Marco Polo, gave them to eat a certain herb, which +transported them to Paradise, in the midst of ever-blooming shrubs, +ever-ripe fruit, and ever-lovely virgins. What these happy persons took +for reality was but a dream; but it was a dream so soft, so voluptuous, +so enthralling, that they sold themselves body and soul to him who gave +it to them, and obedient to his orders as to those of a deity, struck +down the designated victim, died in torture without a murmur, believing +that the death they underwent was but a quick transition to that life +of delights of which the holy herb, now before you, had given them a +slight foretaste.” + +“Then,” cried Franz, “it is hashish! I know that—by name at least.” + +“That is it precisely, Signor Aladdin; it is hashish—the purest and +most unadulterated hashish of Alexandria,—the hashish of Abou-Gor, the +celebrated maker, the only man, the man to whom there should be built a +palace, inscribed with these words, _A grateful world to the dealer in +happiness_.” + +“Do you know,” said Franz, “I have a very great inclination to judge +for myself of the truth or exaggeration of your eulogies.” + +“Judge for yourself, Signor Aladdin—judge, but do not confine yourself +to one trial. Like everything else, we must habituate the senses to a +fresh impression, gentle or violent, sad or joyous. There is a struggle +in nature against this divine substance,—in nature which is not made +for joy and clings to pain. Nature subdued must yield in the combat, +the dream must succeed to reality, and then the dream reigns supreme, +then the dream becomes life, and life becomes the dream. But what +changes occur! It is only by comparing the pains of actual being with +the joys of the assumed existence, that you would desire to live no +longer, but to dream thus forever. When you return to this mundane +sphere from your visionary world, you would seem to leave a Neapolitan +spring for a Lapland winter—to quit paradise for earth—heaven for hell! +Taste the hashish, guest of mine—taste the hashish.” + +Franz’s only reply was to take a teaspoonful of the marvellous +preparation, about as much in quantity as his host had eaten, and lift +it to his mouth. + +“_Diable!_” he said, after having swallowed the divine preserve. “I do +not know if the result will be as agreeable as you describe, but the +thing does not appear to me as palatable as you say.” + +“Because your palate his not yet been attuned to the sublimity of the +substances it flavors. Tell me, the first time you tasted oysters, tea, +porter, truffles, and sundry other dainties which you now adore, did +you like them? Could you comprehend how the Romans stuffed their +pheasants with assafœtida, and the Chinese eat swallows’ nests? Eh? no! +Well, it is the same with hashish; only eat for a week, and nothing in +the world will seem to you to equal the delicacy of its flavor, which +now appears to you flat and distasteful. Let us now go into the +adjoining chamber, which is your apartment, and Ali will bring us +coffee and pipes.” + +They both arose, and while he who called himself Sinbad—and whom we +have occasionally named so, that we might, like his guest, have some +title by which to distinguish him—gave some orders to the servant, +Franz entered still another apartment. + +It was simply yet richly furnished. It was round, and a large divan +completely encircled it. Divan, walls, ceiling, floor, were all covered +with magnificent skins as soft and downy as the richest carpets; there +were heavy-maned lion-skins from Atlas, striped tiger-skins from +Bengal; panther-skins from the Cape, spotted beautifully, like those +that appeared to Dante; bear-skins from Siberia, fox-skins from Norway, +and so on; and all these skins were strewn in profusion one on the +other, so that it seemed like walking over the most mossy turf, or +reclining on the most luxurious bed. + +Both laid themselves down on the divan; chibouques with jasmine tubes +and amber mouthpieces were within reach, and all prepared so that there +was no need to smoke the same pipe twice. Each of them took one, which +Ali lighted and then retired to prepare the coffee. + +There was a moment’s silence, during which Sinbad gave himself up to +thoughts that seemed to occupy him incessantly, even in the midst of +his conversation; and Franz abandoned himself to that mute reverie, +into which we always sink when smoking excellent tobacco, which seems +to remove with its fume all the troubles of the mind, and to give the +smoker in exchange all the visions of the soul. Ali brought in the +coffee. + +“How do you take it?” inquired the unknown; “in the French or Turkish +style, strong or weak, sugar or none, cool or boiling? As you please; +it is ready in all ways.” + +“I will take it in the Turkish style,” replied Franz. + +“And you are right,” said his host; “it shows you have a tendency for +an Oriental life. Ah, those Orientals; they are the only men who know +how to live. As for me,” he added, with one of those singular smiles +which did not escape the young man, “when I have completed my affairs +in Paris, I shall go and die in the East; and should you wish to see me +again, you must seek me at Cairo, Bagdad, or Ispahan.” + +20087m + + + +“_Ma foi_,” said Franz, “it would be the easiest thing in the world; +for I feel eagle’s wings springing out at my shoulders, and with those +wings I could make a tour of the world in four-and-twenty hours.” + +“Ah, yes, the hashish is beginning its work. Well, unfurl your wings, +and fly into superhuman regions; fear nothing, there is a watch over +you; and if your wings, like those of Icarus, melt before the sun, we +are here to ease your fall.” + +He then said something in Arabic to Ali, who made a sign of obedience +and withdrew, but not to any distance. + +As to Franz a strange transformation had taken place in him. All the +bodily fatigue of the day, all the preoccupation of mind which the +events of the evening had brought on, disappeared as they do at the +first approach of sleep, when we are still sufficiently conscious to be +aware of the coming of slumber. His body seemed to acquire an airy +lightness, his perception brightened in a remarkable manner, his senses +seemed to redouble their power, the horizon continued to expand; but it +was not the gloomy horizon of vague alarms, and which he had seen +before he slept, but a blue, transparent, unbounded horizon, with all +the blue of the ocean, all the spangles of the sun, all the perfumes of +the summer breeze; then, in the midst of the songs of his +sailors,—songs so clear and sonorous, that they would have made a +divine harmony had their notes been taken down,—he saw the Island of +Monte Cristo, no longer as a threatening rock in the midst of the +waves, but as an oasis in the desert; then, as his boat drew nearer, +the songs became louder, for an enchanting and mysterious harmony rose +to heaven, as if some Loreley had decreed to attract a soul thither, or +Amphion, the enchanter, intended there to build a city. + +At length the boat touched the shore, but without effort, without +shock, as lips touch lips; and he entered the grotto amidst continued +strains of most delicious melody. He descended, or rather seemed to +descend, several steps, inhaling the fresh and balmy air, like that +which may be supposed to reign around the grotto of Circe, formed from +such perfumes as set the mind a-dreaming, and such fires as burn the +very senses; and he saw again all he had seen before his sleep, from +Sinbad, his singular host, to Ali, the mute attendant; then all seemed +to fade away and become confused before his eyes, like the last shadows +of the magic lantern before it is extinguished, and he was again in the +chamber of statues, lighted only by one of those pale and antique lamps +which watch in the dead of the night over the sleep of pleasure. + +They were the same statues, rich in form, in attraction, and poesy, +with eyes of fascination, smiles of love, and bright and flowing hair. +They were Phryne, Cleopatra, Messalina, those three celebrated +courtesans. Then among them glided like a pure ray, like a Christian +angel in the midst of Olympus, one of those chaste figures, those calm +shadows, those soft visions, which seemed to veil its virgin brow +before these marble wantons. + +Then the three statues advanced towards him with looks of love, and +approached the couch on which he was reposing, their feet hidden in +their long white tunics, their throats bare, hair flowing like waves, +and assuming attitudes which the gods could not resist, but which +saints withstood, and looks inflexible and ardent like those with which +the serpent charms the bird; and then he gave way before looks that +held him in a torturing grasp and delighted his senses as with a +voluptuous kiss. + +It seemed to Franz that he closed his eyes, and in a last look about +him saw the vision of modesty completely veiled; and then followed a +dream of passion like that promised by the Prophet to the elect. Lips +of stone turned to flame, breasts of ice became like heated lava, so +that to Franz, yielding for the first time to the sway of the drug, +love was a sorrow and voluptuousness a torture, as burning mouths were +pressed to his thirsty lips, and he was held in cool serpent-like +embraces. The more he strove against this unhallowed passion the more +his senses yielded to its thrall, and at length, weary of a struggle +that taxed his very soul, he gave way and sank back breathless and +exhausted beneath the kisses of these marble goddesses, and the +enchantment of his marvellous dream. + + + + Chapter 32. The Waking + +When Franz returned to himself, he seemed still to be in a dream. He +thought himself in a sepulchre, into which a ray of sunlight in pity +scarcely penetrated. He stretched forth his hand, and touched stone; he +rose to his seat, and found himself lying on his bournous in a bed of +dry heather, very soft and odoriferous. The vision had fled; and as if +the statues had been but shadows from the tomb, they had vanished at +his waking. + +He advanced several paces towards the point whence the light came, and +to all the excitement of his dream succeeded the calmness of reality. +He found that he was in a grotto, went towards the opening, and through +a kind of fanlight saw a blue sea and an azure sky. The air and water +were shining in the beams of the morning sun; on the shore the sailors +were sitting, chatting and laughing; and at ten yards from them the +boat was at anchor, undulating gracefully on the water. + +There for some time he enjoyed the fresh breeze which played on his +brow, and listened to the dash of the waves on the beach, that left +against the rocks a lace of foam as white as silver. He was for some +time without reflection or thought for the divine charm which is in the +things of nature, specially after a fantastic dream; then gradually +this view of the outer world, so calm, so pure, so grand, reminded him +of the illusiveness of his vision, and once more awakened memory. He +recalled his arrival on the island, his presentation to a smuggler +chief, a subterranean palace full of splendor, an excellent supper, and +a spoonful of hashish. + +It seemed, however, even in the very face of open day, that at least a +year had elapsed since all these things had passed, so deep was the +impression made in his mind by the dream, and so strong a hold had it +taken of his imagination. Thus every now and then he saw in fancy amid +the sailors, seated on a rock, or undulating in the vessel, one of the +shadows which had shared his dream with looks and kisses. Otherwise, +his head was perfectly clear, and his body refreshed; he was free from +the slightest headache; on the contrary, he felt a certain degree of +lightness, a faculty for absorbing the pure air, and enjoying the +bright sunshine more vividly than ever. + +He went gayly up to the sailors, who rose as soon as they perceived +him; and the patron, accosting him, said: + +“The Signor Sinbad has left his compliments for your excellency, and +desires us to express the regret he feels at not being able to take his +leave in person; but he trusts you will excuse him, as very important +business calls him to Malaga.” + +“So, then, Gaetano,” said Franz, “this is, then, all reality; there +exists a man who has received me in this island, entertained me right +royally, and has departed while I was asleep?” + +“He exists as certainly as that you may see his small yacht with all +her sails spread; and if you will use your glass, you will, in all +probability, recognize your host in the midst of his crew.” + +So saying, Gaetano pointed in a direction in which a small vessel was +making sail towards the southern point of Corsica. Franz adjusted his +telescope, and directed it towards the yacht. Gaetano was not mistaken. +At the stern the mysterious stranger was standing up looking towards +the shore, and holding a spy-glass in his hand. He was attired as he +had been on the previous evening, and waved his pocket-handkerchief to +his guest in token of adieu. Franz returned the salute by shaking his +handkerchief as an exchange of signals. After a second, a slight cloud +of smoke was seen at the stern of the vessel, which rose gracefully as +it expanded in the air, and then Franz heard a slight report. + +“There, do you hear?” observed Gaetano; “he is bidding you adieu.” + +The young man took his carbine and fired it in the air, but without any +idea that the noise could be heard at the distance which separated the +yacht from the shore. + +“What are your excellency’s orders?” inquired Gaetano. + +“In the first place, light me a torch.” + +“Ah, yes, I understand,” replied the patron, “to find the entrance to +the enchanted apartment. With much pleasure, your excellency, if it +would amuse you; and I will get you the torch you ask for. But I too +have had the idea you have, and two or three times the same fancy has +come over me; but I have always given it up. Giovanni, light a torch,” +he added, “and give it to his excellency.” + +Giovanni obeyed. Franz took the lamp, and entered the subterranean +grotto, followed by Gaetano. He recognized the place where he had +awaked by the bed of heather that was there; but it was in vain that he +carried his torch all round the exterior surface of the grotto. He saw +nothing, unless that, by traces of smoke, others had before him +attempted the same thing, and, like him, in vain. Yet he did not leave +a foot of this granite wall, as impenetrable as futurity, without +strict scrutiny; he did not see a fissure without introducing the blade +of his hunting sword into it, or a projecting point on which he did not +lean and press in the hopes it would give way. All was vain; and he +lost two hours in his attempts, which were at last utterly useless. At +the end of this time he gave up his search, and Gaetano smiled. + +When Franz appeared again on the shore, the yacht only seemed like a +small white speck on the horizon. He looked again through his glass, +but even then he could not distinguish anything. + +Gaetano reminded him that he had come for the purpose of shooting +goats, which he had utterly forgotten. He took his fowling-piece, and +began to hunt over the island with the air of a man who is fulfilling a +duty, rather than enjoying a pleasure; and at the end of a quarter of +an hour he had killed a goat and two kids. These animals, though wild +and agile as chamois, were too much like domestic goats, and Franz +could not consider them as game. Moreover, other ideas, much more +enthralling, occupied his mind. Since, the evening before, he had +really been the hero of one of the tales of the _Thousand and One +Nights_, and he was irresistibly attracted towards the grotto. + +Then, in spite of the failure of his first search, he began a second, +after having told Gaetano to roast one of the two kids. The second +visit was a long one, and when he returned the kid was roasted and the +repast ready. Franz was sitting on the spot where he was on the +previous evening when his mysterious host had invited him to supper; +and he saw the little yacht, now like a sea-gull on the wave, +continuing her flight towards Corsica. + +“Why,” he remarked to Gaetano, “you told me that Signor Sinbad was +going to Malaga, while it seems he is in the direction of +Porto-Vecchio.” + +“Don’t you remember,” said the patron, “I told you that among the crew +there were two Corsican brigands?” + +“True; and he is going to land them,” added Franz. + +“Precisely so,” replied Gaetano. “Ah, he is one who fears neither God +nor Satan, they say, and would at any time run fifty leagues out of his +course to do a poor devil a service.” + +20093m + + + +“But such services as these might involve him with the authorities of +the country in which he practices this kind of philanthropy,” said +Franz. + +“And what cares he for that,” replied Gaetano with a laugh, “or any +authorities? He smiles at them. Let them try to pursue him! Why, in the +first place, his yacht is not a ship, but a bird, and he would beat any +frigate three knots in every nine; and if he were to throw himself on +the coast, why, is he not certain of finding friends everywhere?” + +It was perfectly clear that the Signor Sinbad, Franz’s host, had the +honor of being on excellent terms with the smugglers and bandits along +the whole coast of the Mediterranean, and so enjoyed exceptional +privileges. As to Franz, he had no longer any inducement to remain at +Monte Cristo. He had lost all hope of detecting the secret of the +grotto; he consequently despatched his breakfast, and, his boat being +ready, he hastened on board, and they were soon under way. At the +moment the boat began her course they lost sight of the yacht, as it +disappeared in the gulf of Porto-Vecchio. With it was effaced the last +trace of the preceding night; and then supper, Sinbad, hashish, +statues,—all became a dream for Franz. + +The boat sailed on all day and all night, and next morning, when the +sun rose, they had lost sight of Monte Cristo. + +When Franz had once again set foot on shore, he forgot, for the moment +at least, the events which had just passed, while he finished his +affairs of pleasure at Florence, and then thought of nothing but how he +should rejoin his companion, who was awaiting him at Rome. + +He set out, and on the Saturday evening reached the Place de la Douane +by the mail-coach. An apartment, as we have said, had been retained +beforehand, and thus he had but to go to Signor Pastrini’s hotel. But +this was not so easy a matter, for the streets were thronged with +people, and Rome was already a prey to that low and feverish murmur +which precedes all great events; and at Rome there are four great +events in every year,—the Carnival, Holy Week, Corpus Christi, and the +Feast of St. Peter. + +All the rest of the year the city is in that state of dull apathy, +between life and death, which renders it similar to a kind of station +between this world and the next—a sublime spot, a resting-place full of +poetry and character, and at which Franz had already halted five or six +times, and at each time found it more marvellous and striking. + +At last he made his way through the mob, which was continually +increasing and getting more and more turbulent, and reached the hotel. +On his first inquiry he was told, with the impertinence peculiar to +hired hackney-coachmen and innkeepers with their houses full, that +there was no room for him at the Hôtel de Londres. Then he sent his +card to Signor Pastrini, and asked for Albert de Morcerf. This plan +succeeded; and Signor Pastrini himself ran to him, excusing himself for +having made his excellency wait, scolding the waiters, taking the +candlestick from the porter, who was ready to pounce on the traveller +and was about to lead him to Albert, when Morcerf himself appeared. + +The apartment consisted of two small rooms and a parlor. The two rooms +looked on to the street—a fact which Signor Pastrini commented upon as +an inappreciable advantage. The rest of the floor was hired by a very +rich gentleman who was supposed to be a Sicilian or Maltese; but the +host was unable to decide to which of the two nations the traveller +belonged. + +“Very good, signor Pastrini,” said Franz; “but we must have some supper +instantly, and a carriage for tomorrow and the following days.” + +“As to supper,” replied the landlord, “you shall be served immediately; +but as for the carriage——” + +“What as to the carriage?” exclaimed Albert. “Come, come, Signor +Pastrini, no joking; we must have a carriage.” + +“Sir,” replied the host, “we will do all in our power to procure you +one—this is all I can say.” + +“And when shall we know?” inquired Franz. + +“Tomorrow morning,” answered the innkeeper. + +“Oh, the deuce! then we shall pay the more, that’s all, I see plainly +enough. At Drake’s or Aaron’s one pays twenty-five lire for common +days, and thirty or thirty-five lire a day more for Sundays and feast +days; add five lire a day more for extras, that will make forty, and +there’s an end of it.” + +“I am afraid if we offer them double that we shall not procure a +carriage.” + +“Then they must put horses to mine. It is a little worse for the +journey, but that’s no matter.” + +“There are no horses.” + +Albert looked at Franz like a man who hears a reply he does not +understand. + +“Do you understand that, my dear Franz—no horses?” he said, “but can’t +we have post-horses?” + +“They have been all hired this fortnight, and there are none left but +those absolutely requisite for posting.” + +“What are we to say to this?” asked Franz. + +“I say, that when a thing completely surpasses my comprehension, I am +accustomed not to dwell on that thing, but to pass to another. Is +supper ready, Signor Pastrini?” + +“Yes, your excellency.” + +“Well, then, let us sup.” + +“But the carriage and horses?” said Franz. + +“Be easy, my dear boy; they will come in due season; it is only a +question of how much shall be charged for them.” Morcerf then, with +that delighted philosophy which believes that nothing is impossible to +a full purse or well-lined pocketbook, supped, went to bed, slept +soundly, and dreamed he was racing all over Rome at Carnival time in a +coach with six horses. + + + + Chapter 33. Roman Bandits + +The next morning Franz woke first, and instantly rang the bell. The +sound had not yet died away when Signor Pastrini himself entered. + +“Well, excellency,” said the landlord triumphantly, and without waiting +for Franz to question him, “I feared yesterday, when I would not +promise you anything, that you were too late—there is not a single +carriage to be had—that is, for the three last days” + +“Yes,” returned Franz, “for the very three days it is most needed.” + +“What is the matter?” said Albert, entering; “no carriage to be had?” + +“Just so,” returned Franz, “you have guessed it.” + +“Well, your Eternal City is a nice sort of place.” + +“That is to say, excellency,” replied Pastrini, who was desirous of +keeping up the dignity of the capital of the Christian world in the +eyes of his guest, “that there are no carriages to be had from Sunday +to Tuesday evening, but from now till Sunday you can have fifty if you +please.” + +“Ah, that is something,” said Albert; “today is Thursday, and who knows +what may arrive between this and Sunday?” + +“Ten or twelve thousand travellers will arrive,” replied Franz, “which +will make it still more difficult.” + +“My friend,” said Morcerf, “let us enjoy the present without gloomy +forebodings for the future.” + +“At least we can have a window?” + +“Where?” + +“In the Corso.” + +“Ah, a window!” exclaimed Signor Pastrini,—“utterly impossible; there +was only one left on the fifth floor of the Doria Palace, and that has +been let to a Russian prince for twenty sequins a day.” + +The two young men looked at each other with an air of stupefaction. + +“Well,” said Franz to Albert, “do you know what is the best thing we +can do? It is to pass the Carnival at Venice; there we are sure of +obtaining gondolas if we cannot have carriages.” + +“Ah, the devil, no,” cried Albert; “I came to Rome to see the Carnival, +and I will, though I see it on stilts.” + +“Bravo! an excellent idea. We will disguise ourselves as monster +pulchinellos or shepherds of the Landes, and we shall have complete +success.” + +“Do your excellencies still wish for a carriage from now to Sunday +morning?” + +“_Parbleu!_” said Albert, “do you think we are going to run about on +foot in the streets of Rome, like lawyers’ clerks?” + +“I hasten to comply with your excellencies’ wishes; only, I tell you +beforehand, the carriage will cost you six piastres a day.” + +“And, as I am not a millionaire, like the gentleman in the next +apartments,” said Franz, “I warn you, that as I have been four times +before at Rome, I know the prices of all the carriages; we will give +you twelve piastres for today, tomorrow, and the day after, and then +you will make a good profit.” + +“But, excellency”—said Pastrini, still striving to gain his point. + +“Now go,” returned Franz, “or I shall go myself and bargain with your +_affettatore_, who is mine also; he is an old friend of mine, who has +plundered me pretty well already, and, in the hope of making more out +of me, he will take a less price than the one I offer you; you will +lose the preference, and that will be your fault.” + +“Do not give yourselves the trouble, excellency,” returned Signor +Pastrini, with the smile peculiar to the Italian speculator when he +confesses defeat; “I will do all I can, and I hope you will be +satisfied.” + +“And now we understand each other.” + +“When do you wish the carriage to be here?” + +“In an hour.” + +“In an hour it will be at the door.” + +An hour after the vehicle was at the door; it was a hack conveyance +which was elevated to the rank of a private carriage in honor of the +occasion, but, in spite of its humble exterior, the young men would +have thought themselves happy to have secured it for the last three +days of the Carnival. + +“Excellency,” cried the _cicerone_, seeing Franz approach the window, +“shall I bring the carriage nearer to the palace?” + +Accustomed as Franz was to the Italian phraseology, his first impulse +was to look round him, but these words were addressed to him. Franz was +the “excellency,” the vehicle was the “carriage,” and the Hôtel de +Londres was the “palace.” The genius for laudation characteristic of +the race was in that phrase. + +Franz and Albert descended, the carriage approached the palace; their +excellencies stretched their legs along the seats; the _cicerone_ +sprang into the seat behind. + +“Where do your excellencies wish to go?” asked he. + +“To Saint Peter’s first, and then to the Colosseum,” returned Albert. +But Albert did not know that it takes a day to see Saint Peter’s, and a +month to study it. The day was passed at Saint Peter’s alone. + +Suddenly the daylight began to fade away; Franz took out his watch—it +was half-past four. They returned to the hotel; at the door Franz +ordered the coachman to be ready at eight. He wished to show Albert the +Colosseum by moonlight, as he had shown him Saint Peter’s by daylight. +When we show a friend a city one has already visited, we feel the same +pride as when we point out a woman whose lover we have been. + +He was to leave the city by the Porta del Popolo, skirt the outer wall, +and re-enter by the Porta San Giovanni; thus they would behold the +Colosseum without finding their impressions dulled by first looking on +the Capitol, the Forum, the Arch of Septimus Severus, the Temple of +Antoninus and Faustina, and the Via Sacra. + +They sat down to dinner. Signor Pastrini had promised them a banquet; +he gave them a tolerable repast. At the end of the dinner he entered in +person. Franz thought that he came to hear his dinner praised, and +began accordingly, but at the first words he was interrupted. + +“Excellency,” said Pastrini, “I am delighted to have your approbation, +but it was not for that I came.” + +“Did you come to tell us you have procured a carriage?” asked Albert, +lighting his cigar. + +“No; and your excellencies will do well not to think of that any +longer; at Rome things can or cannot be done; when you are told +anything cannot be done, there is an end of it.” + +“It is much more convenient at Paris,—when anything cannot be done, you +pay double, and it is done directly.” + +“That is what all the French say,” returned Signor Pastrini, somewhat +piqued; “for that reason, I do not understand why they travel.” + +“But,” said Albert, emitting a volume of smoke and balancing his chair +on its hind legs, “only madmen, or blockheads like us, ever do travel. +Men in their senses do not quit their hotel in the Rue du Helder, their +walk on the Boulevard de Gand, and the Café de Paris.” + +It is of course understood that Albert resided in the aforesaid street, +appeared every day on the fashionable walk, and dined frequently at the +only restaurant where you can really dine, that is, if you are on good +terms with its waiters. + +Signor Pastrini remained silent a short time; it was evident that he +was musing over this answer, which did not seem very clear. + +“But,” said Franz, in his turn interrupting his host’s meditations, +“you had some motive for coming here, may I beg to know what it was?” + +20099m + + + +“Ah, yes; you have ordered your carriage at eight o’clock precisely?” + +“I have.” + +“You intend visiting _Il Colosseo_.” + +“You mean the Colosseum?” + +“It is the same thing. You have told your coachman to leave the city by +the Porta del Popolo, to drive round the walls, and re-enter by the +Porta San Giovanni?” + +“These are my words exactly.” + +“Well, this route is impossible.” + +“Impossible!” + +“Very dangerous, to say the least.” + +“Dangerous!—and why?” + +“On account of the famous Luigi Vampa.” + +“Pray, who may this famous Luigi Vampa be?” inquired Albert; “he may be +very famous at Rome, but I can assure you he is quite unknown at +Paris.” + +“What! do you not know him?” + +“I have not that honor.” + +“You have never heard his name?” + +“Never.” + +“Well, then, he is a bandit, compared to whom the Decesaris and the +Gasparones were mere children.” + +“Now then, Albert,” cried Franz, “here is a bandit for you at last.” + +“I forewarn you, Signor Pastrini, that I shall not believe one word of +what you are going to tell us; having told you this, begin. ‘Once upon +a time——’ Well, go on.” + +Signor Pastrini turned toward Franz, who seemed to him the more +reasonable of the two; we must do him justice,—he had had a great many +Frenchmen in his house, but had never been able to comprehend them. + +“Excellency,” said he gravely, addressing Franz, “if you look upon me +as a liar, it is useless for me to say anything; it was for your +interest I——” + +“Albert does not say you are a liar, Signor Pastrini,” said Franz, “but +that he will not believe what you are going to tell us,—but I will +believe all you say; so proceed.” + +“But if your excellency doubt my veracity——” + +“Signor Pastrini,” returned Franz, “you are more susceptible than +Cassandra, who was a prophetess, and yet no one believed her; while +you, at least, are sure of the credence of half your audience. Come, +sit down, and tell us all about this Signor Vampa.” + +“I had told your excellency he is the most famous bandit we have had +since the days of Mastrilla.” + +“Well, what has this bandit to do with the order I have given the +coachman to leave the city by the Porta del Popolo, and to re-enter by +the Porta San Giovanni?” + +20101m + + + +“This,” replied Signor Pastrini, “that you will go out by one, but I +very much doubt your returning by the other.” + +“Why?” asked Franz. + +“Because, after nightfall, you are not safe fifty yards from the +gates.” + +“On your honor, is that true?” cried Albert. + +“Count,” returned Signor Pastrini, hurt at Albert’s repeated doubts of +the truth of his assertions, “I do not say this to you, but to your +companion, who knows Rome, and knows, too, that these things are not to +be laughed at.” + +“My dear fellow,” said Albert, turning to Franz, “here is an admirable +adventure; we will fill our carriage with pistols, blunderbusses, and +double-barrelled guns. Luigi Vampa comes to take us, and we take him—we +bring him back to Rome, and present him to his holiness the Pope, who +asks how he can repay so great a service; then we merely ask for a +carriage and a pair of horses, and we see the Carnival in the carriage, +and doubtless the Roman people will crown us at the Capitol, and +proclaim us, like Curtius and Horatius Cocles, the preservers of their +country.” + +Whilst Albert proposed this scheme, Signor Pastrini’s face assumed an +expression impossible to describe. + +“And pray,” asked Franz, “where are these pistols, blunderbusses, and +other deadly weapons with which you intend filling the carriage?” + +“Not out of my armory, for at Terracina I was plundered even of my +hunting-knife. And you?” + +“I shared the same fate at Aquapendente.” + +“Do you know, Signor Pastrini,” said Albert, lighting a second cigar at +the first, “that this practice is very convenient for bandits, and that +it seems to be due to an arrangement of their own.” + +Doubtless Signor Pastrini found this pleasantry compromising, for he +only answered half the question, and then he spoke to Franz, as the +only one likely to listen with attention. “Your excellency knows that +it is not customary to defend yourself when attacked by bandits.” + +“What!” cried Albert, whose courage revolted at the idea of being +plundered tamely, “not make any resistance!” + +“No, for it would be useless. What could you do against a dozen bandits +who spring out of some pit, ruin, or aqueduct, and level their pieces +at you?” + +“Eh, _parbleu!_—they should kill me.” + +The innkeeper turned to Franz with an air that seemed to say, “Your +friend is decidedly mad.” + +“My dear Albert,” returned Franz, “your answer is sublime, and worthy +the ‘_Let him die_,’ of Corneille, only, when Horace made that answer, +the safety of Rome was concerned; but, as for us, it is only to gratify +a whim, and it would be ridiculous to risk our lives for so foolish a +motive.” + +Albert poured himself out a glass of _lacryma Christi_, which he sipped +at intervals, muttering some unintelligible words. + +“Well, Signor Pastrini,” said Franz, “now that my companion is quieted, +and you have seen how peaceful my intentions are, tell me who is this +Luigi Vampa. Is he a shepherd or a nobleman?—young or old?—tall or +short? Describe him, in order that, if we meet him by chance, like Jean +Sbogar or Lara, we may recognize him.” + +“You could not apply to anyone better able to inform you on all these +points, for I knew him when he was a child, and one day that I fell +into his hands, going from Ferentino to Alatri, he, fortunately for me, +recollected me, and set me free, not only without ransom, but made me a +present of a very splendid watch, and related his history to me.” + +“Let us see the watch,” said Albert. + +Signor Pastrini drew from his fob a magnificent Bréguet, bearing the +name of its maker, of Parisian manufacture, and a count’s coronet. + +“Here it is,” said he. + +“_Peste!_” returned Albert, “I compliment you on it; I have its +fellow”—he took his watch from his waistcoat pocket—“and it cost me +3,000 francs.” + +“Let us hear the history,” said Franz, motioning Signor Pastrini to +seat himself. + +“Your excellencies permit it?” asked the host. + +“_Pardieu!_” cried Albert, “you are not a preacher, to remain +standing!” + +The host sat down, after having made each of them a respectful bow, +which meant that he was ready to tell them all they wished to know +concerning Luigi Vampa. + +“You tell me,” said Franz, at the moment Signor Pastrini was about to +open his mouth, “that you knew Luigi Vampa when he was a child—he is +still a young man, then?” + +“A young man? he is only two-and-twenty;—he will gain himself a +reputation.” + +“What do you think of that, Albert?—at two-and-twenty to be thus +famous?” + +“Yes, and at his age, Alexander, Cæsar, and Napoleon, who have all made +some noise in the world, were quite behind him.” + +“So,” continued Franz, “the hero of this history is only +two-and-twenty?” + +“Scarcely so much.” + +“Is he tall or short?” + +“Of the middle height—about the same stature as his excellency,” +returned the host, pointing to Albert. + +“Thanks for the comparison,” said Albert, with a bow. + +“Go on, Signor Pastrini,” continued Franz, smiling at his friend’s +susceptibility. “To what class of society does he belong?” + +“He was a shepherd-boy attached to the farm of the Count of San-Felice, +situated between Palestrina and the Lake of Gabri; he was born at +Pampinara, and entered the count’s service when he was five years old; +his father was also a shepherd, who owned a small flock, and lived by +the wool and the milk, which he sold at Rome. When quite a child, the +little Vampa displayed a most extraordinary precocity. One day, when he +was seven years old, he came to the curate of Palestrina, and asked to +be taught to read; it was somewhat difficult, for he could not quit his +flock; but the good curate went every day to say mass at a little +hamlet too poor to pay a priest and which, having no other name, was +called Borgo; he told Luigi that he might meet him on his return, and +that then he would give him a lesson, warning him that it would be +short, and that he must profit as much as possible by it. The child +accepted joyfully. Every day Luigi led his flock to graze on the road +that leads from Palestrina to Borgo; every day, at nine o’clock in the +morning, the priest and the boy sat down on a bank by the wayside, and +the little shepherd took his lesson out of the priest’s breviary. At +the end of three months he had learned to read. This was not enough—he +must now learn to write. The priest had a writing teacher at Rome make +three alphabets—one large, one middling, and one small; and pointed out +to him that by the help of a sharp instrument he could trace the +letters on a slate, and thus learn to write. The same evening, when the +flock was safe at the farm, the little Luigi hastened to the smith at +Palestrina, took a large nail, heated and sharpened it, and formed a +sort of stylus. The next morning he gathered an armful of pieces of +slate and began. At the end of three months he had learned to write. +The curate, astonished at his quickness and intelligence, made him a +present of pens, paper, and a penknife. This demanded new effort, but +nothing compared to the first; at the end of a week he wrote as well +with this pen as with the stylus. The curate related the incident to +the Count of San-Felice, who sent for the little shepherd, made him +read and write before him, ordered his attendant to let him eat with +the domestics, and to give him two piastres a month. With this, Luigi +purchased books and pencils. He applied his imitative powers to +everything, and, like Giotto, when young, he drew on his slate sheep, +houses, and trees. Then, with his knife, he began to carve all sorts of +objects in wood; it was thus that Pinelli, the famous sculptor, had +commenced. + +20105m + + + +“A girl of six or seven—that is, a little younger than Vampa—tended +sheep on a farm near Palestrina; she was an orphan, born at Valmontone +and was named Teresa. The two children met, sat down near each other, +let their flocks mingle together, played, laughed, and conversed +together; in the evening they separated the Count of San-Felice’s flock +from those of Baron Cervetri, and the children returned to their +respective farms, promising to meet the next morning. The next day they +kept their word, and thus they grew up together. Vampa was twelve, and +Teresa eleven. And yet their natural disposition revealed itself. +Beside his taste for the fine arts, which Luigi had carried as far as +he could in his solitude, he was given to alternating fits of sadness +and enthusiasm, was often angry and capricious, and always sarcastic. +None of the lads of Pampinara, Palestrina, or Valmontone had been able +to gain any influence over him or even to become his companion. His +disposition (always inclined to exact concessions rather than to make +them) kept him aloof from all friendships. Teresa alone ruled by a +look, a word, a gesture, this impetuous character, which yielded +beneath the hand of a woman, and which beneath the hand of a man might +have broken, but could never have been bended. Teresa was lively and +gay, but coquettish to excess. The two piastres that Luigi received +every month from the Count of San-Felice’s steward, and the price of +all the little carvings in wood he sold at Rome, were expended in +ear-rings, necklaces, and gold hairpins. So that, thanks to her +friend’s generosity, Teresa was the most beautiful and the best-attired +peasant near Rome. + +“The two children grew up together, passing all their time with each +other, and giving themselves up to the wild ideas of their different +characters. Thus, in all their dreams, their wishes, and their +conversations, Vampa saw himself the captain of a vessel, general of an +army, or governor of a province. Teresa saw herself rich, superbly +attired, and attended by a train of liveried domestics. Then, when they +had thus passed the day in building castles in the air, they separated +their flocks, and descended from the elevation of their dreams to the +reality of their humble position. + +“One day the young shepherd told the count’s steward that he had seen a +wolf come out of the Sabine mountains, and prowl around his flock. The +steward gave him a gun; this was what Vampa longed for. This gun had an +excellent barrel, made at Brescia, and carrying a ball with the +precision of an English rifle; but one day the count broke the stock, +and had then cast the gun aside. This, however, was nothing to a +sculptor like Vampa; he examined the broken stock, calculated what +change it would require to adapt the gun to his shoulder, and made a +fresh stock, so beautifully carved that it would have fetched fifteen +or twenty piastres, had he chosen to sell it. But nothing could be +farther from his thoughts. + +“For a long time a gun had been the young man’s greatest ambition. In +every country where independence has taken the place of liberty, the +first desire of a manly heart is to possess a weapon, which at once +renders him capable of defence or attack, and, by rendering its owner +terrible, often makes him feared. From this moment Vampa devoted all +his leisure time to perfecting himself in the use of his precious +weapon; he purchased powder and ball, and everything served him for a +mark—the trunk of some old and moss-grown olive-tree, that grew on the +Sabine mountains; the fox, as he quitted his earth on some marauding +excursion; the eagle that soared above their heads: and thus he soon +became so expert, that Teresa overcame the terror she at first felt at +the report, and amused herself by watching him direct the ball wherever +he pleased, with as much accuracy as if he placed it by hand. + +20107m + + + +“One evening a wolf emerged from a pine-wood near which they were +usually stationed, but the wolf had scarcely advanced ten yards ere he +was dead. Proud of this exploit, Vampa took the dead animal on his +shoulders, and carried him to the farm. These exploits had gained Luigi +considerable reputation. The man of superior abilities always finds +admirers, go where he will. He was spoken of as the most adroit, the +strongest, and the most courageous _contadino_ for ten leagues around; +and although Teresa was universally allowed to be the most beautiful +girl of the Sabines, no one had ever spoken to her of love, because it +was known that she was beloved by Vampa. And yet the two young people +had never declared their affection; they had grown together like two +trees whose roots are mingled, whose branches intertwined, and whose +intermingled perfume rises to the heavens. Only their wish to see each +other had become a necessity, and they would have preferred death to a +day’s separation. + +“Teresa was sixteen, and Vampa seventeen. About this time, a band of +brigands that had established itself in the Lepini mountains began to +be much spoken of. The brigands have never been really extirpated from +the neighborhood of Rome. Sometimes a chief is wanted, but when a chief +presents himself he rarely has to wait long for a band of followers. + +“The celebrated Cucumetto, pursued in the Abruzzo, driven out of the +kingdom of Naples, where he had carried on a regular war, had crossed +the Garigliano, like Manfred, and had taken refuge on the banks of the +Amasine between Sonnino and Juperno. He strove to collect a band of +followers, and followed the footsteps of Decesaris and Gasparone, whom +he hoped to surpass. Many young men of Palestrina, Frascati, and +Pampinara had disappeared. Their disappearance at first caused much +disquietude; but it was soon known that they had joined Cucumetto. +After some time Cucumetto became the object of universal attention; the +most extraordinary traits of ferocious daring and brutality were +related of him. + +“One day he carried off a young girl, the daughter of a surveyor of +Frosinone. The bandit’s laws are positive; a young girl belongs first +to him who carries her off, then the rest draw lots for her, and she is +abandoned to their brutality until death relieves her sufferings. When +their parents are sufficiently rich to pay a ransom, a messenger is +sent to negotiate; the prisoner is hostage for the security of the +messenger; should the ransom be refused, the prisoner is irrevocably +lost. The young girl’s lover was in Cucumetto’s troop; his name was +Carlini. When she recognized her lover, the poor girl extended her arms +to him, and believed herself safe; but Carlini felt his heart sink, for +he but too well knew the fate that awaited her. However, as he was a +favorite with Cucumetto, as he had for three years faithfully served +him, and as he had saved his life by shooting a dragoon who was about +to cut him down, he hoped the chief would have pity on him. He took +Cucumetto one side, while the young girl, seated at the foot of a huge +pine that stood in the centre of the forest, made a veil of her +picturesque head-dress to hide her face from the lascivious gaze of the +bandits. There he told the chief all—his affection for the prisoner, +their promises of mutual fidelity, and how every night, since he had +been near, they had met in some neighboring ruins. + +20109m + + + +“It so happened that night that Cucumetto had sent Carlini to a +village, so that he had been unable to go to the place of meeting. +Cucumetto had been there, however, by accident, as he said, and had +carried the maiden off. Carlini besought his chief to make an exception +in Rita’s favor, as her father was rich, and could pay a large ransom. +Cucumetto seemed to yield to his friend’s entreaties, and bade him find +a shepherd to send to Rita’s father at Frosinone. + +“Carlini flew joyfully to Rita, telling her she was saved, and bidding +her write to her father, to inform him what had occurred, and that her +ransom was fixed at three hundred piastres. Twelve hours’ delay was all +that was granted—that is, until nine the next morning. The instant the +letter was written, Carlini seized it, and hastened to the plain to +find a messenger. He found a young shepherd watching his flock. The +natural messengers of the bandits are the shepherds who live between +the city and the mountains, between civilized and savage life. The boy +undertook the commission, promising to be in Frosinone in less than an +hour. Carlini returned, anxious to see his mistress, and announce the +joyful intelligence. He found the troop in the glade, supping off the +provisions exacted as contributions from the peasants; but his eye +vainly sought Rita and Cucumetto among them. + +“He inquired where they were, and was answered by a burst of laughter. +A cold perspiration burst from every pore, and his hair stood on end. +He repeated his question. One of the bandits rose, and offered him a +glass filled with Orvietto, saying, ‘To the health of the brave +Cucumetto and the fair Rita.’ At this moment Carlini heard a woman’s +cry; he divined the truth, seized the glass, broke it across the face +of him who presented it, and rushed towards the spot whence the cry +came. After a hundred yards he turned the corner of the thicket; he +found Rita senseless in the arms of Cucumetto. At the sight of Carlini, +Cucumetto rose, a pistol in each hand. The two brigands looked at each +other for a moment—the one with a smile of lasciviousness on his lips, +the other with the pallor of death on his brow. A terrible battle +between the two men seemed imminent; but by degrees Carlini’s features +relaxed, his hand, which had grasped one of the pistols in his belt, +fell to his side. Rita lay between them. The moon lighted the group. + +“‘Well,’ said Cucumetto, ‘have you executed your commission?’ + +“‘Yes, captain,’ returned Carlini. ‘At nine o’clock tomorrow Rita’s +father will be here with the money.’ + +“‘It is well; in the meantime, we will have a merry night; this young +girl is charming, and does credit to your taste. Now, as I am not +egotistical, we will return to our comrades and draw lots for her.’ + +“‘You have determined, then, to abandon her to the common law?’ said +Carlini. + +“‘Why should an exception be made in her favor?’ + +“‘I thought that my entreaties——’ + +“‘What right have you, any more than the rest, to ask for an +exception?’ + +“‘It is true.’ + +“‘But never mind,’ continued Cucumetto, laughing, ‘sooner or later your +turn will come.’ Carlini’s teeth clenched convulsively. + +“‘Now, then,’ said Cucumetto, advancing towards the other bandits, ‘are +you coming?’ + +“‘I follow you.’ + +20111m + + + +“Cucumetto departed, without losing sight of Carlini, for, doubtless, +he feared lest he should strike him unawares; but nothing betrayed a +hostile design on Carlini’s part. He was standing, his arms folded, +near Rita, who was still insensible. Cucumetto fancied for a moment the +young man was about to take her in his arms and fly; but this mattered +little to him now Rita had been his; and as for the money, three +hundred piastres distributed among the band was so small a sum that he +cared little about it. He continued to follow the path to the glade; +but, to his great surprise, Carlini arrived almost as soon as himself. + +“‘Let us draw lots! let us draw lots!’ cried all the brigands, when +they saw the chief. + +“Their demand was fair, and the chief inclined his head in sign of +acquiescence. The eyes of all shone fiercely as they made their demand, +and the red light of the fire made them look like demons. The names of +all, including Carlini, were placed in a hat, and the youngest of the +band drew forth a ticket; the ticket bore the name of Diavolaccio. He +was the man who had proposed to Carlini the health of their chief, and +to whom Carlini replied by breaking the glass across his face. A large +wound, extending from the temple to the mouth, was bleeding profusely. +Diavolaccio, seeing himself thus favored by fortune, burst into a loud +laugh. + +“‘Captain,’ said he, ‘just now Carlini would not drink your health when +I proposed it to him; propose mine to him, and let us see if he will be +more condescending to you than to me.’ + +“Everyone expected an explosion on Carlini’s part; but to their great +surprise, he took a glass in one hand and a flask in the other, and +filling it,— + +“‘Your health, Diavolaccio,’ said he calmly, and he drank it off, +without his hand trembling in the least. Then sitting down by the fire, +‘My supper,’ said he; ‘my expedition has given me an appetite.’ + +“‘Well done, Carlini!’ cried the brigands; ‘that is acting like a good +fellow;’ and they all formed a circle round the fire, while Diavolaccio +disappeared. + +“Carlini ate and drank as if nothing had happened. The bandits looked +on with astonishment at this singular conduct until they heard +footsteps. They turned round, and saw Diavolaccio bearing the young +girl in his arms. Her head hung back, and her long hair swept the +ground. As they entered the circle, the bandits could perceive, by the +firelight, the unearthly pallor of the young girl and of Diavolaccio. +This apparition was so strange and so solemn, that everyone rose, with +the exception of Carlini, who remained seated, and ate and drank +calmly. Diavolaccio advanced amidst the most profound silence, and laid +Rita at the captain’s feet. Then everyone could understand the cause of +the unearthly pallor in the young girl and the bandit. A knife was +plunged up to the hilt in Rita’s left breast. Everyone looked at +Carlini; the sheath at his belt was empty. + +“‘Ah, ah,’ said the chief, ‘I now understand why Carlini stayed +behind.’ + +“All savage natures appreciate a desperate deed. No other of the +bandits would, perhaps, have done the same; but they all understood +what Carlini had done. + +“‘Now, then,’ cried Carlini, rising in his turn, and approaching the +corpse, his hand on the butt of one of his pistols, ‘does anyone +dispute the possession of this woman with me?’ + +“‘No,’ returned the chief, ‘she is thine.’ + +“Carlini raised her in his arms, and carried her out of the circle of +firelight. Cucumetto placed his sentinels for the night, and the +bandits wrapped themselves in their cloaks, and lay down before the +fire. At midnight the sentinel gave the alarm, and in an instant all +were on the alert. It was Rita’s father, who brought his daughter’s +ransom in person. + +“‘Here,’ said he, to Cucumetto, ‘here are three hundred piastres; give +me back my child. + +“But the chief, without taking the money, made a sign to him to follow. +The old man obeyed. They both advanced beneath the trees, through whose +branches streamed the moonlight. Cucumetto stopped at last, and pointed +to two persons grouped at the foot of a tree. + +“‘There,’ said he, ‘demand thy child of Carlini; he will tell thee what +has become of her;’ and he returned to his companions. + +“The old man remained motionless; he felt that some great and +unforeseen misfortune hung over his head. At length he advanced toward +the group, the meaning of which he could not comprehend. As he +approached, Carlini raised his head, and the forms of two persons +became visible to the old man’s eyes. A woman lay on the ground, her +head resting on the knees of a man, who was seated by her; as he raised +his head, the woman’s face became visible. The old man recognized his +child, and Carlini recognized the old man. + +“‘I expected thee,’ said the bandit to Rita’s father. + +“‘Wretch!’ returned the old man, ‘what hast thou done?’ and he gazed +with terror on Rita, pale and bloody, a knife buried in her bosom. A +ray of moonlight poured through the trees, and lighted up the face of +the dead. + +“‘Cucumetto had violated thy daughter,’ said the bandit; ‘I loved her, +therefore I slew her; for she would have served as the sport of the +whole band.’ The old man spoke not, and grew pale as death. ‘Now,’ +continued Carlini, ‘if I have done wrongly, avenge her;’ and +withdrawing the knife from the wound in Rita’s bosom, he held it out to +the old man with one hand, while with the other he tore open his vest. + +“‘Thou hast done well!’ returned the old man in a hoarse voice; +‘embrace me, my son.’ + +20115m + + + +Carlini threw himself, sobbing like a child, into the arms of his +mistress’s father. These were the first tears the man of blood had ever +wept. + +“‘Now,’ said the old man, ‘aid me to bury my child.’ Carlini fetched +two pickaxes; and the father and the lover began to dig at the foot of +a huge oak, beneath which the young girl was to repose. When the grave +was formed, the father embraced her first, and then the lover; +afterwards, one taking the head, the other the feet, they placed her in +the grave. Then they knelt on each side of the grave, and said the +prayers of the dead. Then, when they had finished, they cast the earth +over the corpse, until the grave was filled. Then, extending his hand, +the old man said; ‘I thank you, my son; and now leave me alone.’ + +“‘Yet——’ replied Carlini. + +“‘Leave me, I command you.’ + +“Carlini obeyed, rejoined his comrades, folded himself in his cloak, +and soon appeared to sleep as soundly as the rest. It had been resolved +the night before to change their encampment. An hour before daybreak, +Cucumetto aroused his men, and gave the word to march. But Carlini +would not quit the forest, without knowing what had become of Rita’s +father. He went toward the place where he had left him. He found the +old man suspended from one of the branches of the oak which shaded his +daughter’s grave. He then took an oath of bitter vengeance over the +dead body of the one and the tomb of the other. But he was unable to +complete this oath, for two days afterwards, in an encounter with the +Roman carbineers, Carlini was killed. There was some surprise, however, +that, as he was with his face to the enemy, he should have received a +ball between his shoulders. That astonishment ceased when one of the +brigands remarked to his comrades that Cucumetto was stationed ten +paces in Carlini’s rear when he fell. On the morning of the departure +from the forest of Frosinone he had followed Carlini in the darkness, +and heard this oath of vengeance, and, like a wise man, anticipated it. + +“They told ten other stories of this bandit chief, each more singular +than the other. Thus, from Fondi to Perusia, everyone trembles at the +name of Cucumetto. + +“These narratives were frequently the theme of conversation between +Luigi and Teresa. The young girl trembled very much at hearing the +stories; but Vampa reassured her with a smile, tapping the butt of his +good fowling-piece, which threw its ball so well; and if that did not +restore her courage, he pointed to a crow, perched on some dead branch, +took aim, touched the trigger, and the bird fell dead at the foot of +the tree. Time passed on, and the two young people had agreed to be +married when Vampa should be twenty and Teresa nineteen years of age. +They were both orphans, and had only their employers’ leave to ask, +which had been already sought and obtained. One day when they were +talking over their plans for the future, they heard two or three +reports of firearms, and then suddenly a man came out of the wood, near +which the two young persons used to graze their flocks, and hurried +towards them. When he came within hearing, he exclaimed: + +‘I am pursued; can you conceal me?’ + +“They knew full well that this fugitive must be a bandit; but there is +an innate sympathy between the Roman brigand and the Roman peasant and +the latter is always ready to aid the former. Vampa, without saying a +word, hastened to the stone that closed up the entrance to their +grotto, drew it away, made a sign to the fugitive to take refuge there, +in a retreat unknown to everyone, closed the stone upon him, and then +went and resumed his seat by Teresa. Instantly afterwards four +carbineers, on horseback, appeared on the edge of the wood; three of +them appeared to be looking for the fugitive, while the fourth dragged +a brigand prisoner by the neck. The three carbineers looked about +carefully on every side, saw the young peasants, and galloping up, +began to question them. They had seen no one. + +“‘That is very annoying,’ said the brigadier; for the man we are +looking for is the chief.’ + +“‘Cucumetto?’ cried Luigi and Teresa at the same moment. + +“‘Yes,’ replied the brigadier; ‘and as his head is valued at a thousand +Roman crowns, there would have been five hundred for you, if you had +helped us to catch him.’ The two young persons exchanged looks. The +brigadier had a moment’s hope. Five hundred Roman crowns are three +thousand lire, and three thousand lire are a fortune for two poor +orphans who are going to be married. + +“‘Yes, it is very annoying,’ said Vampa; ‘but we have not seen him.’ + +“Then the carbineers scoured the country in different directions, but +in vain; then, after a time, they disappeared. Vampa then removed the +stone, and Cucumetto came out. Through the crevices in the granite he +had seen the two young peasants talking with the carbineers, and +guessed the subject of their parley. He had read in the countenances of +Luigi and Teresa their steadfast resolution not to surrender him, and +he drew from his pocket a purse full of gold, which he offered to them. +But Vampa raised his head proudly; as to Teresa, her eyes sparkled when +she thought of all the fine gowns and gay jewellery she could buy with +this purse of gold. + +“Cucumetto was a cunning fiend, and had assumed the form of a brigand +instead of a serpent, and this look from Teresa showed to him that she +was a worthy daughter of Eve, and he returned to the forest, pausing +several times on his way, under the pretext of saluting his protectors. + +“Several days elapsed, and they neither saw nor heard of Cucumetto. The +time of the Carnival was at hand. The Count of San-Felice announced a +grand masked ball, to which all that were distinguished in Rome were +invited. Teresa had a great desire to see this ball. Luigi asked +permission of his protector, the steward, that she and he might be +present amongst the servants of the house. This was granted. The ball +was given by the Count for the particular pleasure of his daughter +Carmela, whom he adored. Carmela was precisely the age and figure of +Teresa, and Teresa was as handsome as Carmela. On the evening of the +ball Teresa was attired in her best, her most brilliant ornaments in +her hair, and gayest glass beads,—she was in the costume of the women +of Frascati. Luigi wore the very picturesque garb of the Roman peasant +at holiday time. They both mingled, as they had leave to do, with the +servants and peasants. + +“The _festa_ was magnificent; not only was the villa brilliantly +illuminated, but thousands of colored lanterns were suspended from the +trees in the garden; and very soon the palace overflowed to the +terraces, and the terraces to the garden-walks. At each cross-path was +an orchestra, and tables spread with refreshments; the guests stopped, +formed quadrilles, and danced in any part of the grounds they pleased. +Carmela was attired like a woman of Sonnino. Her cap was embroidered +with pearls, the pins in her hair were of gold and diamonds, her girdle +was of Turkey silk, with large embroidered flowers, her bodice and +skirt were of cashmere, her apron of Indian muslin, and the buttons of +her corset were of jewels. Two of her companions were dressed, the one +as a woman of Nettuno, and the other as a woman of La Riccia. Four +young men of the richest and noblest families of Rome accompanied them +with that Italian freedom which has not its parallel in any other +country in the world. They were attired as peasants of Albano, +Velletri, Civita-Castellana, and Sora. We need hardly add that these +peasant costumes, like those of the young women, were brilliant with +gold and jewels. + +“Carmela wished to form a quadrille, but there was one lady wanting. +Carmela looked all around her, but not one of the guests had a costume +similar to her own, or those of her companions. The Count of San-Felice +pointed out Teresa, who was hanging on Luigi’s arm in a group of +peasants. + +“‘Will you allow me, father?’ said Carmela. + +“‘Certainly,’ replied the count, ‘are we not in Carnival time?’ + +“Carmela turned towards the young man who was talking with her, and +saying a few words to him, pointed with her finger to Teresa. The young +man looked, bowed in obedience, and then went to Teresa, and invited +her to dance in a quadrille directed by the count’s daughter. Teresa +felt a flush pass over her face; she looked at Luigi, who could not +refuse his assent. Luigi slowly relinquished Teresa’s arm, which he had +held beneath his own, and Teresa, accompanied by her elegant cavalier, +took her appointed place with much agitation in the aristocratic +quadrille. Certainly, in the eyes of an artist, the exact and strict +costume of Teresa had a very different character from that of Carmela +and her companions; and Teresa was frivolous and coquettish, and thus +the embroidery and muslins, the cashmere waist-girdles, all dazzled +her, and the reflection of sapphires and diamonds almost turned her +giddy brain. + +“Luigi felt a sensation hitherto unknown arising in his mind. It was +like an acute pain which gnawed at his heart, and then thrilled through +his whole body. He followed with his eye each movement of Teresa and +her cavalier; when their hands touched, he felt as though he should +swoon; every pulse beat with violence, and it seemed as though a bell +were ringing in his ears. When they spoke, although Teresa listened +timidly and with downcast eyes to the conversation of her cavalier, as +Luigi could read in the ardent looks of the good-looking young man that +his language was that of praise, it seemed as if the whole world was +turning round with him, and all the voices of hell were whispering in +his ears ideas of murder and assassination. Then fearing that his +paroxysm might get the better of him, he clutched with one hand the +branch of a tree against which he was leaning, and with the other +convulsively grasped the dagger with a carved handle which was in his +belt, and which, unwittingly, he drew from the scabbard from time to +time. + +“Luigi was jealous! + +“He felt that, influenced by her ambitions and coquettish disposition, +Teresa might escape him. + +“The young peasant girl, at first timid and scared, soon recovered +herself. We have said that Teresa was handsome, but this is not all; +Teresa was endowed with all those wild graces which are so much more +potent than our affected and studied elegancies. She had almost all the +honors of the quadrille, and if she were envious of the Count of +San-Felice’s daughter, we will not undertake to say that Carmela was +not jealous of her. And with overpowering compliments her handsome +cavalier led her back to the place whence he had taken her, and where +Luigi awaited her. Twice or thrice during the dance the young girl had +glanced at Luigi, and each time she saw that he was pale and that his +features were agitated, once even the blade of his knife, half drawn +from its sheath, had dazzled her eyes with its sinister glare. Thus, it +was almost tremblingly that she resumed her lover’s arm. The quadrille +had been most perfect, and it was evident there was a great demand for +a repetition, Carmela alone objecting to it, but the Count of +San-Felice besought his daughter so earnestly, that she acceded. + +“One of the cavaliers then hastened to invite Teresa, without whom it +was impossible for the quadrille to be formed, but the young girl had +disappeared. + +“The truth was, that Luigi had not felt the strength to support another +such trial, and, half by persuasion and half by force, he had removed +Teresa toward another part of the garden. Teresa had yielded in spite +of herself, but when she looked at the agitated countenance of the +young man, she understood by his silence and trembling voice that +something strange was passing within him. She herself was not exempt +from internal emotion, and without having done anything wrong, yet +fully comprehended that Luigi was right in reproaching her. Why, she +did not know, but yet she did not the less feel that these reproaches +were merited. + +“However, to Teresa’s great astonishment, Luigi remained mute, and not +a word escaped his lips the rest of the evening. When the chill of the +night had driven away the guests from the gardens, and the gates of the +villa were closed on them for the _festa_ in-doors, he took Teresa +quite away, and as he left her at her home, he said: + +“‘Teresa, what were you thinking of as you danced opposite the young +Countess of San-Felice?’ + +“‘I thought,’ replied the young girl, with all the frankness of her +nature, ‘that I would give half my life for a costume such as she +wore.’ + +“‘And what said your cavalier to you?’ + +“‘He said it only depended on myself to have it, and I had only one +word to say.’ + +“‘He was right,’ said Luigi. ‘Do you desire it as ardently as you say?’ + +“‘Yes.’ + +“‘Well, then, you shall have it!’ + +“The young girl, much astonished, raised her head to look at him, but +his face was so gloomy and terrible that her words froze to her lips. +As Luigi spoke thus, he left her. Teresa followed him with her eyes +into the darkness as long as she could, and when he had quite +disappeared, she went into the house with a sigh. + +20121m + + + +“That night a memorable event occurred, due, no doubt, to the +imprudence of some servant who had neglected to extinguish the lights. +The Villa of San-Felice took fire in the rooms adjoining the very +apartment of the lovely Carmela. Awakened in the night by the light of +the flames, she sprang out of bed, wrapped herself in a dressing-gown, +and attempted to escape by the door, but the corridor by which she +hoped to fly was already a prey to the flames. She then returned to her +room, calling for help as loudly as she could, when suddenly her +window, which was twenty feet from the ground, was opened, a young +peasant jumped into the chamber, seized her in his arms, and with +superhuman skill and strength conveyed her to the turf of the +grass-plot, where she fainted. When she recovered, her father was by +her side. All the servants surrounded her, offering her assistance. An +entire wing of the villa was burnt down; but what of that, as long as +Carmela was safe and uninjured? + +“Her preserver was everywhere sought for, but he did not appear; he was +inquired after, but no one had seen him. Carmela was greatly troubled +that she had not recognized him. + +“As the count was immensely rich, excepting the danger Carmela had +run,—and the marvellous manner in which she had escaped, made that +appear to him rather a favor of Providence than a real misfortune,—the +loss occasioned by the conflagration was to him but a trifle. + +“The next day, at the usual hour, the two young peasants were on the +borders of the forest. Luigi arrived first. He came toward Teresa in +high spirits, and seemed to have completely forgotten the events of the +previous evening. The young girl was very pensive, but seeing Luigi so +cheerful, she on her part assumed a smiling air, which was natural to +her when she was not excited or in a passion. + +“Luigi took her arm beneath his own, and led her to the door of the +grotto. Then he paused. The young girl, perceiving that there was +something extraordinary, looked at him steadfastly. + +“‘Teresa,’ said Luigi, ‘yesterday evening you told me you would give +all the world to have a costume similar to that of the count’s +daughter.’ + +“‘Yes,’ replied Teresa with astonishment; ‘but I was mad to utter such +a wish.’ + +“‘And I replied, “Very well, you shall have it.”’ + +“‘Yes,’ replied the young girl, whose astonishment increased at every +word uttered by Luigi, ‘but of course your reply was only to please +me.’ + +“‘I have promised no more than I have given you, Teresa,’ said Luigi +proudly. ‘Go into the grotto and dress yourself.’ + +“At these words he drew away the stone, and showed Teresa the grotto, +lighted up by two wax lights, which burnt on each side of a splendid +mirror; on a rustic table, made by Luigi, were spread out the pearl +necklace and the diamond pins, and on a chair at the side was laid the +rest of the costume. + +“Teresa uttered a cry of joy, and, without inquiring whence this attire +came, or even thanking Luigi, darted into the grotto, transformed into +a dressing-room. + +“Luigi pushed the stone behind her, for on the crest of a small +adjacent hill which cut off the view toward Palestrina, he saw a +traveller on horseback, stopping a moment, as if uncertain of his road, +and thus presenting against the blue sky that perfect outline which is +peculiar to distant objects in southern climes. When he saw Luigi, he +put his horse into a gallop and advanced toward him. + +“Luigi was not mistaken. The traveller, who was going from Palestrina +to Tivoli, had mistaken his way; the young man directed him; but as at +a distance of a quarter of a mile the road again divided into three +ways, and on reaching these the traveller might again stray from his +route, he begged Luigi to be his guide. + +“Luigi threw his cloak on the ground, placed his carbine on his +shoulder, and freed from his heavy covering, preceded the traveller +with the rapid step of a mountaineer, which a horse can scarcely keep +up with. In ten minutes Luigi and the traveller reached the +cross-roads. On arriving there, with an air as majestic as that of an +emperor, he stretched his hand towards that one of the roads which the +traveller was to follow. + +“‘That is your road, excellency, and now you cannot again mistake.’ + +“‘And here is your recompense,’ said the traveller, offering the young +herdsman some small pieces of money. + +“‘Thank you,’ said Luigi, drawing back his hand; ‘I render a service, I +do not sell it.’ + +“‘Well,’ replied the traveller, who seemed used to this difference +between the servility of a man of the cities and the pride of the +mountaineer, ‘if you refuse wages, you will, perhaps, accept a gift.’ + +“‘Ah, yes, that is another thing.’ + +“‘Then,’ said the traveller, ‘take these two Venetian sequins and give +them to your bride, to make herself a pair of earrings.’ + +“‘And then do you take this poniard,’ said the young herdsman; ‘you +will not find one better carved between Albano and Civita-Castellana.’ + +“‘I accept it,’ answered the traveller, ‘but then the obligation will +be on my side, for this poniard is worth more than two sequins.’ + +“‘For a dealer perhaps; but for me, who engraved it myself, it is +hardly worth a piastre.’ + +“‘What is your name?’ inquired the traveller. + +“‘Luigi Vampa,’ replied the shepherd, with the same air as he would +have replied, Alexander, King of Macedon. ‘And yours?’ + +“‘I,’ said the traveller, ‘am called Sinbad the Sailor.’” + +Franz d’Épinay started with surprise. + +“Sinbad the Sailor?” he said. + +“Yes,” replied the narrator; “that was the name which the traveller +gave to Vampa as his own.” + +“Well, and what may you have to say against this name?” inquired +Albert; “it is a very pretty name, and the adventures of the gentleman +of that name amused me very much in my youth, I must confess.” + +Franz said no more. The name of Sinbad the Sailor, as may well be +supposed, awakened in him a world of recollections, as had the name of +the Count of Monte Cristo on the previous evening. + +“Proceed!” said he to the host. + +“Vampa put the two sequins haughtily into his pocket, and slowly +returned by the way he had gone. As he came within two or three hundred +paces of the grotto, he thought he heard a cry. He listened to know +whence this sound could proceed. A moment afterwards he thought he +heard his own name pronounced distinctly. + +“The cry proceeded from the grotto. He bounded like a chamois, cocking +his carbine as he went, and in a moment reached the summit of a hill +opposite to that on which he had perceived the traveller. Three cries +for help came more distinctly to his ear. He cast his eyes around him +and saw a man carrying off Teresa, as Nessus, the centaur, carried +Deianira. + +“This man, who was hastening towards the wood, was already +three-quarters of the way on the road from the grotto to the forest. +Vampa measured the distance; the man was at least two hundred paces in +advance of him, and there was not a chance of overtaking him. The young +shepherd stopped, as if his feet had been rooted to the ground; then he +put the butt of his carbine to his shoulder, took aim at the ravisher, +followed him for a second in his track, and then fired. + +“The ravisher stopped suddenly, his knees bent under him, and he fell +with Teresa in his arms. The young girl rose instantly, but the man lay +on the earth struggling in the agonies of death. Vampa then rushed +towards Teresa; for at ten paces from the dying man her legs had failed +her, and she had dropped on her knees, so that the young man feared +that the ball that had brought down his enemy, had also wounded his +betrothed. + +“Fortunately, she was unscathed, and it was fright alone that had +overcome Teresa. When Luigi had assured himself that she was safe and +unharmed, he turned towards the wounded man. He had just expired, with +clenched hands, his mouth in a spasm of agony, and his hair on end in +the sweat of death. His eyes remained open and menacing. Vampa +approached the corpse, and recognized Cucumetto. + +“From the day on which the bandit had been saved by the two young +peasants, he had been enamoured of Teresa, and had sworn she should be +his. From that time he had watched them, and profiting by the moment +when her lover had left her alone, had carried her off, and believed he +at length had her in his power, when the ball, directed by the unerring +skill of the young herdsman, had pierced his heart. Vampa gazed on him +for a moment without betraying the slightest emotion; while, on the +contrary, Teresa, shuddering in every limb, dared not approach the +slain ruffian but by degrees, and threw a hesitating glance at the dead +body over the shoulder of her lover. Suddenly Vampa turned toward his +mistress: + +“‘Ah,’ said he—‘good, good! You are dressed; it is now my turn to dress +myself.’ + +20125m + + + +“Teresa was clothed from head to foot in the garb of the Count of +San-Felice’s daughter. Vampa took Cucumetto’s body in his arms and +conveyed it to the grotto, while in her turn Teresa remained outside. +If a second traveller had passed, he would have seen a strange thing,—a +shepherdess watching her flock, clad in a cashmere grown, with +ear-rings and necklace of pearls, diamond pins, and buttons of +sapphires, emeralds, and rubies. He would, no doubt, have believed that +he had returned to the times of Florian, and would have declared, on +reaching Paris, that he had met an Alpine shepherdess seated at the +foot of the Sabine Hill. + +“At the end of a quarter of an hour Vampa quitted the grotto; his +costume was no less elegant than that of Teresa. He wore a vest of +garnet-colored velvet, with buttons of cut gold; a silk waistcoat +covered with embroidery; a Roman scarf tied round his neck; a +cartridge-box worked with gold, and red and green silk; sky-blue velvet +breeches, fastened above the knee with diamond buckles; garters of +deerskin, worked with a thousand arabesques, and a hat whereon hung +ribbons of all colors; two watches hung from his girdle, and a splendid +poniard was in his belt. + +“Teresa uttered a cry of admiration. Vampa in this attire resembled a +painting by Léopold Robert or Schnetz. He had assumed the entire +costume of Cucumetto. The young man saw the effect produced on his +betrothed, and a smile of pride passed over his lips. + +“‘Now,’ he said to Teresa, ‘are you ready to share my fortune, whatever +it may be?’ + +“‘Oh, yes!’ exclaimed the young girl enthusiastically. + +“‘And follow me wherever I go?’ + +“‘To the world’s end.’ + +“‘Then take my arm, and let us on; we have no time to lose.’ + +“The young girl did so without questioning her lover as to where he was +conducting her, for he appeared to her at this moment as handsome, +proud, and powerful as a god. They went towards the forest, and soon +entered it. + +“We need scarcely say that all the paths of the mountain were known to +Vampa; he therefore went forward without a moment’s hesitation, +although there was no beaten track, but he knew his path by looking at +the trees and bushes, and thus they kept on advancing for nearly an +hour and a half. At the end of this time they had reached the thickest +part of the forest. A torrent, whose bed was dry, led into a deep +gorge. Vampa took this wild road, which, enclosed between two ridges, +and shadowed by the tufted umbrage of the pines, seemed, but for the +difficulties of its descent, that path to Avernus of which Virgil +speaks. Teresa had become alarmed at the wild and deserted look of the +plain around her, and pressed closely against her guide, not uttering a +syllable; but as she saw him advance with even step and composed +countenance, she endeavored to repress her emotion. + +“Suddenly, about ten paces from them, a man advanced from behind a tree +and aimed at Vampa. + +“‘Not another step,’ he said, ‘or you are a dead man.’ + +“‘What, then,’ said Vampa, raising his hand with a gesture of disdain, +while Teresa, no longer able to restrain her alarm, clung closely to +him, ‘do wolves rend each other?’ + +“‘Who are you?’ inquired the sentinel. + +“‘I am Luigi Vampa, shepherd of the San-Felice farm.’ + +“‘What do you want?’ + +“‘I would speak with your companions who are in the glade at Rocca +Bianca.’ + +“‘Follow me, then,’ said the sentinel; ‘or, as you know your way, go +first.’ + +“Vampa smiled disdainfully at this precaution on the part of the +bandit, went before Teresa, and continued to advance with the same firm +and easy step as before. At the end of ten minutes the bandit made them +a sign to stop. The two young persons obeyed. Then the bandit thrice +imitated the cry of a crow; a croak answered this signal. + +“‘Good!’ said the sentry, ‘you may now go on.’ + +“Luigi and Teresa again set forward; as they went on Teresa clung +tremblingly to her lover at the sight of weapons and the glistening of +carbines through the trees. The retreat of Rocca Bianca was at the top +of a small mountain, which no doubt in former days had been a +volcano—an extinct volcano before the days when Remus and Romulus had +deserted Alba to come and found the city of Rome. + +“Teresa and Luigi reached the summit, and all at once found themselves +in the presence of twenty bandits. + +“‘Here is a young man who seeks and wishes to speak to you,’ said the +sentinel. + +“‘What has he to say?’ inquired the young man who was in command in the +chief’s absence. + +“‘I wish to say that I am tired of a shepherd’s life,’ was Vampa’s +reply. + +“‘Ah, I understand,’ said the lieutenant; ‘and you seek admittance into +our ranks?’ + +“‘Welcome!’ cried several bandits from Ferrusino, Pampinara, and +Anagni, who had recognized Luigi Vampa. + +“‘Yes, but I came to ask something more than to be your companion.’ + +“‘And what may that be?’ inquired the bandits with astonishment. + +“‘I come to ask to be your captain,’ said the young man. + +“The bandits shouted with laughter. + +“‘And what have you done to aspire to this honor?’ demanded the +lieutenant. + +“‘I have killed your chief, Cucumetto, whose dress I now wear; and I +set fire to the villa San-Felice to procure a wedding-dress for my +betrothed.’ + +“An hour afterwards Luigi Vampa was chosen captain, vice Cucumetto, +deceased.” + +20129m + + + +“Well, my dear Albert,” said Franz, turning towards his friend; “what +think you of citizen Luigi Vampa?” + +“I say he is a myth,” replied Albert, “and never had an existence.” + +“And what may a myth be?” inquired Pastrini. + +“The explanation would be too long, my dear landlord,” replied Franz. + +“And you say that Signor Vampa exercises his profession at this moment +in the environs of Rome?” + +“And with a boldness of which no bandit before him ever gave an +example.” + +“Then the police have vainly tried to lay hands on him?” + +“Why, you see, he has a good understanding with the shepherds in the +plains, the fishermen of the Tiber, and the smugglers of the coast. +They seek for him in the mountains, and he is on the waters; they +follow him on the waters, and he is on the open sea; then they pursue +him, and he has suddenly taken refuge in the islands, at Giglio, +Giannutri, or Monte Cristo; and when they hunt for him there, he +reappears suddenly at Albano, Tivoli, or La Riccia.” + +“And how does he behave towards travellers?” + +“Alas! his plan is very simple. It depends on the distance he may be +from the city, whether he gives eight hours, twelve hours, or a day +wherein to pay their ransom; and when that time has elapsed he allows +another hour’s grace. At the sixtieth minute of this hour, if the money +is not forthcoming, he blows out the prisoner’s brains with a +pistol-shot, or plants his dagger in his heart, and that settles the +account.” + +“Well, Albert,” inquired Franz of his companion, “are you still +disposed to go to the Colosseum by the outer wall?” + +“Quite so,” said Albert, “if the way be picturesque.” + +The clock struck nine as the door opened, and a coachman appeared. + +“Excellencies,” said he, “the coach is ready.” + +“Well, then,” said Franz, “let us to the Colosseum.” + +“By the Porta del Popolo or by the streets, your excellencies?” + +“By the streets, _morbleu!_ by the streets!” cried Franz. + +“Ah, my dear fellow,” said Albert, rising, and lighting his third +cigar, “really, I thought you had more courage.” + +So saying, the two young men went down the staircase, and got into the +carriage. + +20131m + + + + + Chapter 34. The Colosseum + +Franz had so managed his route, that during the ride to the Colosseum +they passed not a single ancient ruin, so that no preliminary +impression interfered to mitigate the colossal proportions of the +gigantic building they came to admire. The road selected was a +continuation of the Via Sistina; then by cutting off the right angle of +the street in which stands Santa Maria Maggiore and proceeding by the +Via Urbana and San Pietro in Vincoli, the travellers would find +themselves directly opposite the Colosseum. + +This itinerary possessed another great advantage,—that of leaving Franz +at full liberty to indulge his deep reverie upon the subject of Signor +Pastrini’s story, in which his mysterious host of Monte Cristo was so +strangely mixed up. Seated with folded arms in a corner of the +carriage, he continued to ponder over the singular history he had so +lately listened to, and to ask himself an interminable number of +questions touching its various circumstances without, however, arriving +at a satisfactory reply to any of them. + +One fact more than the rest brought his friend “Sinbad the Sailor” back +to his recollection, and that was the mysterious sort of intimacy that +seemed to exist between the brigands and the sailors; and Pastrini’s +account of Vampa’s having found refuge on board the vessels of +smugglers and fishermen, reminded Franz of the two Corsican bandits he +had found supping so amicably with the crew of the little yacht, which +had even deviated from its course and touched at Porto-Vecchio for the +sole purpose of landing them. The very name assumed by his host of +Monte Cristo and again repeated by the landlord of the Hôtel de +Londres, abundantly proved to him that his island friend was playing +his philanthropic part on the shores of Piombino, Civita Vecchia, +Ostia, and Gaëta, as on those of Corsica, Tuscany, and Spain; and +further, Franz bethought him of having heard his singular entertainer +speak both of Tunis and Palermo, proving thereby how largely his circle +of acquaintances extended. + +But however the mind of the young man might be absorbed in these +reflections, they were at once dispersed at the sight of the dark +frowning ruins of the stupendous Colosseum, through the various +openings of which the pale moonlight played and flickered like the +unearthly gleam from the eyes of the wandering dead. The carriage +stopped near the Meta Sudans; the door was opened, and the young men, +eagerly alighting, found themselves opposite a _cicerone_, who appeared +to have sprung up from the ground, so unexpected was his appearance. + +The usual guide from the hotel having followed them, they had paid two +conductors, nor is it possible, at Rome, to avoid this abundant supply +of guides; besides the ordinary _cicerone_, who seizes upon you +directly you set foot in your hotel, and never quits you while you +remain in the city, there is also a special _cicerone_ belonging to +each monument—nay, almost to each part of a monument. It may, +therefore, be easily imagined there is no scarcity of guides at the +Colosseum, that wonder of all ages, which Martial thus eulogizes: + +“Let Memphis cease to boast the barbarous miracles of her pyramids, and +the wonders of Babylon be talked of no more among us; all must bow to +the superiority of the gigantic labor of the Cæsars, and the many +voices of Fame spread far and wide the surpassing merits of this +incomparable monument.” + +As for Albert and Franz, they essayed not to escape from their +_ciceronian_ tyrants; and, indeed, it would have been so much the more +difficult to break their bondage, as the guides alone are permitted to +visit these monuments with torches in their hands. Thus, then, the +young men made no attempt at resistance, but blindly and confidingly +surrendered themselves into the care and custody of their conductors. + +Franz had already made seven or eight similar excursions to the +Colosseum, while his less favored companion trod for the first time in +his life the classic ground forming the monument of Flavius Vespasian; +and, to his credit be it spoken, his mind, even amid the glib loquacity +of the guides, was duly and deeply touched with awe and enthusiastic +admiration of all he saw; and certainly no adequate notion of these +stupendous ruins can be formed save by such as have visited them, and +more especially by moonlight, at which time the vast proportions of the +building appear twice as large when viewed by the mysterious beams of a +southern moonlit sky, whose rays are sufficiently clear and vivid to +light the horizon with a glow equal to the soft twilight of a western +clime. + +Scarcely, therefore, had the reflective Franz walked a hundred steps +beneath the interior porticoes of the ruin, when, abandoning Albert to +the guides (who would by no means yield their prescriptive right of +carrying their victims through the routine regularly laid down, and as +regularly followed by them, but dragged the unconscious visitor to the +various objects with a pertinacity that admitted of no appeal, +beginning, as a matter of course, with the “Lions’ Den”, the “Hall of +the Gladiators” and finishing with “Cæsar’s Podium”), to escape a +jargon and mechanical survey of the wonders by which he was surrounded, +Franz ascended a half-dilapidated staircase, and, leaving them to +follow their monotonous round, seated himself at the foot of a column, +and immediately opposite a large aperture, which permitted him to enjoy +a full and undisturbed view of the gigantic dimensions of the majestic +ruin. + +Franz had remained for nearly a quarter of an hour perfectly hidden by +the shadow of the vast column at whose base he had found a +resting-place, and from whence his eyes followed the motions of Albert +and his guides, who, holding torches in their hands, had emerged from a +vomitorium at the opposite extremity of the Colosseum, and then again +disappeared down the steps conducting to the seats reserved for the +Vestal virgins, resembling, as they glided along, some restless shades +following the flickering glare of so many _ignes fatui_. All at once +his ear caught a sound resembling that of a stone rolling down the +staircase opposite the one by which he had himself ascended. There was +nothing remarkable in the circumstance of a fragment of granite giving +way and falling heavily below; but it seemed to him that the substance +that fell gave way beneath the pressure of a foot, and also that +someone, who endeavored as much as possible to prevent his footsteps +from being heard, was approaching the spot where he sat. + +Conjecture soon became certainty, for the figure of a man was +distinctly visible to Franz, gradually emerging from the staircase +opposite, upon which the moon was at that moment pouring a full tide of +silvery brightness. + +The stranger thus presenting himself was probably a person who, like +Franz, preferred the enjoyment of solitude and his own thoughts to the +frivolous gabble of the guides. And his appearance had nothing +extraordinary in it; but the hesitation with which he proceeded, +stopping and listening with anxious attention at every step he took, +convinced Franz that he expected the arrival of some person. + +By a sort of instinctive impulse, Franz withdrew as much as possible +behind his pillar. + +About ten feet from the spot where he and the stranger were, the roof +had given way, leaving a large round opening, through which might be +seen the blue vault of heaven, thickly studded with stars. + +Around this opening, which had, possibly, for ages permitted a free +entrance to the brilliant moonbeams that now illumined the vast pile, +grew a quantity of creeping plants, whose delicate green branches stood +out in bold relief against the clear azure of the firmament, while +large masses of thick, strong fibrous shoots forced their way through +the chasm, and hung floating to and fro, like so many waving strings. + +The person whose mysterious arrival had attracted the attention of +Franz stood in a kind of half-light, that rendered it impossible to +distinguish his features, although his dress was easily made out. He +wore a large brown mantle, one fold of which, thrown over his left +shoulder, served likewise to mask the lower part of his countenance, +while the upper part was completely hidden by his broad-brimmed hat. +The lower part of his dress was more distinctly visible by the bright +rays of the moon, which, entering through the broken ceiling, shed +their refulgent beams on feet cased in elegantly made boots of polished +leather, over which descended fashionably cut trousers of black cloth. + +20135m + + + +From the imperfect means Franz had of judging, he could only come to +one conclusion,—that the person whom he was thus watching certainly +belonged to no inferior station of life. + +Some few minutes had elapsed, and the stranger began to show manifest +signs of impatience, when a slight noise was heard outside the aperture +in the roof, and almost immediately a dark shadow seemed to obstruct +the flood of light that had entered it, and the figure of a man was +clearly seen gazing with eager scrutiny on the immense space beneath +him; then, as his eye caught sight of him in the mantle, he grasped a +floating mass of thickly matted boughs, and glided down by their help +to within three or four feet of the ground, and then leaped lightly on +his feet. The man who had performed this daring act with so much +indifference wore the Transtevere costume. + +“I beg your excellency’s pardon for keeping you waiting,” said the man, +in the Roman dialect, “but I don’t think I’m many minutes after my +time, ten o’clock has just struck by the clock of Saint John Lateran.” + +“Say not a word about being late,” replied the stranger in purest +Tuscan; “’tis I who am too soon. But even if you had caused me to wait +a little while, I should have felt quite sure that the delay was not +occasioned by any fault of yours.” + +“Your excellency is perfectly right in so thinking,” said the man; “I +came here direct from the Castle of St. Angelo, and I had an immense +deal of trouble before I could get a chance to speak to Beppo.” + +“And who is Beppo?” + +“Oh, Beppo is employed in the prison, and I give him so much a year to +let me know what is going on within his holiness’s castle.” + +“Indeed! You are a provident person, I see.” + +“Why, you see, no one knows what may happen. Perhaps some of these days +I may be entrapped, like poor Peppino and may be very glad to have some +little nibbling mouse to gnaw the meshes of my net, and so help me out +of prison.” + +“Briefly, what did you learn?” + +“That two executions of considerable interest will take place the day +after tomorrow at two o’clock, as is customary at Rome at the +commencement of all great festivals. One of the culprits will be +_mazzolato_;3 he is an atrocious villain, who murdered the priest who +brought him up, and deserves not the smallest pity. The other sufferer +is sentenced to be _decapitato_;4 and he, your excellency, is poor +Peppino.” + +“The fact is, that you have inspired not only the pontifical +government, but also the neighboring states, with such extreme fear, +that they are glad of all opportunity of making an example.” + +“But Peppino did not even belong to my band; he was merely a poor +shepherd, whose only crime consisted in furnishing us with provisions.” + +“Which makes him your accomplice to all intents and purposes. But mark +the distinction with which he is treated; instead of being knocked on +the head as you would be if once they caught hold of you, he is simply +sentenced to be guillotined, by which means, too, the amusements of the +day are diversified, and there is a spectacle to please every +spectator.” + +“Without reckoning the wholly unexpected one I am preparing to surprise +them with.” + +“My good friend,” said the man in the cloak, “excuse me for saying that +you seem to me precisely in the mood to commit some wild or extravagant +act.” + +“Perhaps I am; but one thing I have resolved on, and that is, to stop +at nothing to restore a poor devil to liberty, who has got into this +scrape solely from having served me. I should hate and despise myself +as a coward did I desert the brave fellow in his present extremity.” + +“And what do you mean to do?” + +“To surround the scaffold with twenty of my best men, who, at a signal +from me, will rush forward directly Peppino is brought for execution, +and, by the assistance of their stilettos, drive back the guard, and +carry off the prisoner.” + +“That seems to me as hazardous as uncertain, and convinces me that my +scheme is far better than yours.” + +“And what is your excellency’s project?” + +“Just this. I will so advantageously bestow 2,000 piastres, that the +person receiving them shall obtain a respite till next year for +Peppino; and during that year, another skilfully placed 1,000 piastres +will afford him the means of escaping from his prison.” + +“And do you feel sure of succeeding?” + +“_Pardieu!_” exclaimed the man in the cloak, suddenly expressing +himself in French. + +“What did your excellency say?” inquired the other. + +“I said, my good fellow, that I would do more single-handed by the +means of gold than you and all your troop could effect with stilettos, +pistols, carbines, and blunderbusses included. Leave me, then, to act, +and have no fears for the result.” + +“At least, there can be no harm in myself and party being in readiness, +in case your excellency should fail.” + +“None whatever. Take what precautions you please, if it is any +satisfaction to you to do so; but rely upon my obtaining the reprieve I +seek.” + +“Remember, the execution is fixed for the day after tomorrow, and that +you have but one day to work in.” + +“And what of that? Is not a day divided into twenty-four hours, each +hour into sixty minutes, and every minute sub-divided into sixty +seconds? Now in 86,400 seconds very many things can be done.” + +“And how shall I know whether your excellency has succeeded or not.” + +“Oh, that is very easily arranged. I have engaged the three lower +windows at the Café Rospoli; should I have obtained the requisite +pardon for Peppino, the two outside windows will be hung with yellow +damasks, and the centre with white, having a large cross in red marked +on it.” + +“And whom will you employ to carry the reprieve to the officer +directing the execution?” + +“Send one of your men, disguised as a penitent friar, and I will give +it to him. His dress will procure him the means of approaching the +scaffold itself, and he will deliver the official order to the officer, +who, in his turn, will hand it to the executioner; in the meantime, it +will be as well to acquaint Peppino with what we have determined on, if +it be only to prevent his dying of fear or losing his senses, because +in either case a very useless expense will have been incurred.” + +“Your excellency,” said the man, “you are fully persuaded of my entire +devotion to you, are you not?” + +“Nay, I flatter myself that there can be no doubt of it,” replied the +cavalier in the cloak. + +“Well, then, only fulfil your promise of rescuing Peppino, and +henceforward you shall receive not only devotion, but the most absolute +obedience from myself and those under me that one human being can +render to another.” + +“Have a care how far you pledge yourself, my good friend, for I may +remind you of your promise at some, perhaps, not very distant period, +when I, in my turn, may require your aid and influence.” + +“Let that day come sooner or later, your excellency will find me what I +have found you in this my heavy trouble; and if from the other end of +the world you but write me word to do such or such a thing, you may +regard it as done, for done it shall be, on the word and faith of——” + +“Hush!” interrupted the stranger; “I hear a noise.” + +“’Tis some travellers, who are visiting the Colosseum by torchlight.” + +“’Twere better we should not be seen together; those guides are nothing +but spies, and might possibly recognize you; and, however I may be +honored by your friendship, my worthy friend, if once the extent of our +intimacy were known, I am sadly afraid both my reputation and credit +would suffer thereby.” + +“Well, then, if you obtain the reprieve?” + +“The middle window at the Café Rospoli will be hung with white damask, +bearing a red cross.” + +“And if you fail?” + +“Then all three windows will have yellow draperies.” + +“And then?” + +“And then, my good fellow, use your daggers in any way you please, and +I further promise you to be there as a spectator of your prowess.” + +“We understand each other perfectly, then. Adieu, your excellency; +depend upon me as firmly as I do upon you.” + +Saying these words, the Transteverin disappeared down the staircase, +while his companion, muffling his features more closely than before in +the folds of his mantle, passed almost close to Franz, and descended to +the arena by an outward flight of steps. The next minute Franz heard +himself called by Albert, who made the lofty building re-echo with the +sound of his friend’s name. Franz, however, did not obey the summons +till he had satisfied himself that the two men whose conversation he +had overheard were at a sufficient distance to prevent his encountering +them in his descent. In ten minutes after the strangers had departed, +Franz was on the road to the Piazza di Spagna, listening with studied +indifference to the learned dissertation delivered by Albert, after the +manner of Pliny and Calpurnius, touching the iron-pointed nets used to +prevent the ferocious beasts from springing on the spectators. + +Franz let him proceed without interruption, and, in fact, did not hear +what was said; he longed to be alone, and free to ponder over all that +had occurred. One of the two men, whose mysterious meeting in the +Colosseum he had so unintentionally witnessed, was an entire stranger +to him, but not so the other; and though Franz had been unable to +distinguish his features, from his being either wrapped in his mantle +or obscured by the shadow, the tones of his voice had made too powerful +an impression on him the first time he had heard them for him ever +again to forget them, hear them when or where he might. It was more +especially when this man was speaking in a manner half jesting, half +bitter, that Franz’s ear recalled most vividly the deep sonorous, yet +well-pitched voice that had addressed him in the grotto of Monte +Cristo, and which he heard for the second time amid the darkness and +ruined grandeur of the Colosseum. And the more he thought, the more +entire was his conviction, that the person who wore the mantle was no +other than his former host and entertainer, “Sinbad the Sailor.” + +20139m + + + +Under any other circumstances, Franz would have found it impossible to +resist his extreme curiosity to know more of so singular a personage, +and with that intent have sought to renew their short acquaintance; but +in the present instance, the confidential nature of the conversation he +had overheard made him, with propriety, judge that his appearance at +such a time would be anything but agreeable. As we have seen, +therefore, he permitted his former host to retire without attempting a +recognition, but fully promising himself a rich indemnity for his +present forbearance should chance afford him another opportunity. + +In vain did Franz endeavor to forget the many perplexing thoughts which +assailed him; in vain did he court the refreshment of sleep. Slumber +refused to visit his eyelids and the night was passed in feverish +contemplation of the chain of circumstances tending to prove the +identity of the mysterious visitant to the Colosseum with the +inhabitant of the grotto of Monte Cristo; and the more he thought, the +firmer grew his opinion on the subject. + +Worn out at length, he fell asleep at daybreak, and did not awake till +late. Like a genuine Frenchman, Albert had employed his time in +arranging for the evening’s diversion; he had sent to engage a box at +the Teatro Argentina; and Franz, having a number of letters to write, +relinquished the carriage to Albert for the whole of the day. + +At five o’clock Albert returned, delighted with his day’s work; he had +been occupied in leaving his letters of introduction, and had received +in return more invitations to balls and routs than it would be possible +for him to accept; besides this, he had seen (as he called it) all the +remarkable sights at Rome. Yes, in a single day he had accomplished +what his more serious-minded companion would have taken weeks to +effect. Neither had he neglected to ascertain the name of the piece to +be played that night at the Teatro Argentina, and also what performers +appeared in it. The opera of _Parisina_ was announced for +representation, and the principal actors were Coselli, Moriani, and La +Specchia. + +The young men, therefore, had reason to consider themselves fortunate +in having the opportunity of hearing one of the best works by the +composer of _Lucia di Lammermoor_, supported by three of the most +renowned vocalists of Italy. + +Albert had never been able to endure the Italian theatres, with their +orchestras from which it is impossible to see, and the absence of +balconies, or open boxes; all these defects pressed hard on a man who +had had his stall at the Bouffes, and had shared a lower box at the +Opera. Still, in spite of this, Albert displayed his most dazzling and +effective costumes each time he visited the theatres; but, alas, his +elegant toilet was wholly thrown away, and one of the most worthy +representatives of Parisian fashion had to carry with him the +mortifying reflection that he had nearly overrun Italy without meeting +with a single adventure. + +Sometimes Albert would affect to make a joke of his want of success; +but internally he was deeply wounded, and his self-love immensely +piqued, to think that Albert de Morcerf, the most admired and most +sought after of any young person of his day, should thus be passed +over, and merely have his labor for his pains. And the thing was so +much the more annoying, as, according to the characteristic modesty of +a Frenchman, Albert had quitted Paris with the full conviction that he +had only to show himself in Italy to carry all before him, and that +upon his return he should astonish the Parisian world with the recital +of his numerous love-affairs. + +Alas, poor Albert! None of those interesting adventures fell in his +way; the lovely Genoese, Florentines, and Neapolitans were all +faithful, if not to their husbands, at least to their lovers, and +thought not of changing even for the splendid appearance of Albert de +Morcerf; and all he gained was the painful conviction that the ladies +of Italy have this advantage over those of France, that they are +faithful even in their infidelity. + +Yet he could not restrain a hope that in Italy, as elsewhere, there +might be an exception to the general rule. + +Albert, besides being an elegant, well-looking young man, was also +possessed of considerable talent and ability; moreover, he was a +viscount—a recently created one, certainly, but in the present day it +is not necessary to go as far back as Noah in tracing a descent, and a +genealogical tree is equally estimated, whether dated from 1399 or +merely 1815; but to crown all these advantages, Albert de Morcerf +commanded an income of 50,000 livres, a more than sufficient sum to +render him a personage of considerable importance in Paris. It was +therefore no small mortification to him to have visited most of the +principal cities in Italy without having excited the most trifling +observation. + +Albert, however, hoped to indemnify himself for all these slights and +indifferences during the Carnival, knowing full well that among the +different states and kingdoms in which this festivity is celebrated, +Rome is the spot where even the wisest and gravest throw off the usual +rigidity of their lives, and deign to mingle in the follies of this +time of liberty and relaxation. The Carnival was to commence on the +morrow; therefore Albert had not an instant to lose in setting forth +the programme of his hopes, expectations, and claims to notice. + +With this design he had engaged a box in the most conspicuous part of +the theatre, and exerted himself to set off his personal attractions by +the aid of the most rich and elaborate toilet. The box taken by Albert +was in the first circle; although each of the three tiers of boxes is +deemed equally aristocratic, and is, for this reason, generally styled +the “nobility’s boxes,” and although the box engaged for the two +friends was sufficiently capacious to contain at least a dozen persons, +it had cost less than would be paid at some of the French theatres for +one admitting merely four occupants. + +Another motive had influenced Albert’s selection of his seat,—who knew +but that, thus advantageously placed, he might not in truth attract the +notice of some fair Roman, and an introduction might ensue that would +procure him the offer of a seat in a carriage, or a place in a princely +balcony, from which he might behold the gayeties of the Carnival? + +These united considerations made Albert more lively and anxious to +please than he had hitherto been. Totally disregarding the business of +the stage, he leaned from his box and began attentively scrutinizing +the beauty of each pretty woman, aided by a powerful opera-glass; but, +alas, this attempt to attract notice wholly failed; not even curiosity +had been excited, and it was but too apparent that the lovely +creatures, into whose good graces he was desirous of stealing, were all +so much engrossed with themselves, their lovers, or their own thoughts, +that they had not so much as noticed him or the manipulation of his +glass. + +The truth was, that the anticipated pleasures of the Carnival, with the +“Holy Week” that was to succeed it, so filled every fair breast, as to +prevent the least attention being bestowed even on the business of the +stage. The actors made their entries and exits unobserved or unthought +of; at certain conventional moments, the spectators would suddenly +cease their conversation, or rouse themselves from their musings, to +listen to some brilliant effort of Moriani’s, a well-executed +recitative by Coselli, or to join in loud applause at the wonderful +powers of La Specchia; but that momentary excitement over, they quickly +relapsed into their former state of preoccupation or interesting +conversation. + +Towards the close of the first act, the door of a box which had been +hitherto vacant was opened; a lady entered to whom Franz had been +introduced in Paris, where indeed, he had imagined she still was. The +quick eye of Albert caught the involuntary start with which his friend +beheld the new arrival, and, turning to him, he said hastily: + +“Do you know the woman who has just entered that box?” + +“Yes; what do you think of her?” + +“Oh, she is perfectly lovely—what a complexion! And such magnificent +hair! Is she French?” + +“No; a Venetian.” + +“And her name is——” + +“Countess G——.” + +“Ah, I know her by name!” exclaimed Albert; “she is said to possess as +much wit and cleverness as beauty. I was to have been presented to her +when I met her at Madame Villefort’s ball.” + +“Shall I assist you in repairing your negligence?” asked Franz. + +“My dear fellow, are you really on such good terms with her as to +venture to take me to her box?” + +“Why, I have only had the honor of being in her society and conversing +with her three or four times in my life; but you know that even such an +acquaintance as that might warrant my doing what you ask.” + +At that instant, the countess perceived Franz, and graciously waved her +hand to him, to which he replied by a respectful inclination of the +head. “Upon my word,” said Albert, “you seem to be on excellent terms +with the beautiful countess.” + +“You are mistaken in thinking so,” returned Franz calmly; “but you +merely fall into the same error which leads so many of our countrymen +to commit the most egregious blunders,—I mean that of judging the +habits and customs of Italy and Spain by our Parisian notions; believe +me, nothing is more fallacious than to form any estimate of the degree +of intimacy you may suppose existing among persons by the familiar +terms they seem upon; there is a similarity of feeling at this instant +between ourselves and the countess—nothing more.” + +“Is there, indeed, my good fellow? Pray tell me, is it sympathy of +heart?” + +“No; of taste,” continued Franz gravely. + +“And in what manner has this congeniality of mind been evinced?” + +“By the countess’s visiting the Colosseum, as we did last night, by +moonlight, and nearly alone.” + +“You were with her, then?” + +“I was.” + +“And what did you say to her?” + +“Oh, we talked of the illustrious dead of whom that magnificent ruin is +a glorious monument!” + +“Upon my word,” cried Albert, “you must have been a very entertaining +companion alone, or all but alone, with a beautiful woman in such a +place of sentiment as the Colosseum, and yet to find nothing better to +talk about than the dead! All I can say is, if ever I should get such a +chance, the living should be my theme.” + +20143m + + + +“And you will probably find your theme ill-chosen.” + +“But,” said Albert, breaking in upon his discourse, “never mind the +past; let us only remember the present. Are you not going to keep your +promise of introducing me to the fair subject of our remarks?” + +“Certainly, directly the curtain falls on the stage.” + +“What a confounded long time this first act lasts. I believe, on my +soul, that they never mean to finish it.” + +“Oh, yes, they will; only listen to that charming finale. How +exquisitely Coselli sings his part.” + +“But what an awkward, inelegant fellow he is.” + +“Well, then, what do you say to La Specchia? Did you ever see anything +more perfect than her acting?” + +“Why, you know, my dear fellow, when one has been accustomed to +Malibran and Sontag, such singers as these don’t make the same +impression on you they perhaps do on others.” + +“At least, you must admire Moriani’s style and execution.” + +“I never fancied men of his dark, ponderous appearance singing with a +voice like a woman’s.” + +“My good friend,” said Franz, turning to him, while Albert continued to +point his glass at every box in the theatre, “you seem determined not +to approve; you are really too difficult to please.” + +The curtain at length fell on the performances, to the infinite +satisfaction of the Viscount of Morcerf, who seized his hat, rapidly +passed his fingers through his hair, arranged his cravat and +wristbands, and signified to Franz that he was waiting for him to lead +the way. + +Franz, who had mutely interrogated the countess, and received from her +a gracious smile in token that he would be welcome, sought not to +retard the gratification of Albert’s eager impatience, but began at +once the tour of the house, closely followed by Albert, who availed +himself of the few minutes required to reach the opposite side of the +theatre to settle the height and smoothness of his collar, and to +arrange the lappets of his coat. This important task was just completed +as they arrived at the countess’s box. + +At the knock, the door was immediately opened, and the young man who +was seated beside the countess, in obedience to the Italian custom, +instantly rose and surrendered his place to the strangers, who, in +turn, would be expected to retire upon the arrival of other visitors. + +Franz presented Albert as one of the most distinguished young men of +the day, both as regarded his position in society and extraordinary +talents; nor did he say more than the truth, for in Paris and the +circle in which the viscount moved, he was looked upon and cited as a +model of perfection. Franz added that his companion, deeply grieved at +having been prevented the honor of being presented to the countess +during her sojourn in Paris, was most anxious to make up for it, and +had requested him (Franz) to remedy the past misfortune by conducting +him to her box, and concluded by asking pardon for his presumption in +having taken it upon himself to do so. + +The countess, in reply, bowed gracefully to Albert, and extended her +hand with cordial kindness to Franz; then, inviting Albert to take the +vacant seat beside her, she recommended Franz to take the next best, if +he wished to view the ballet, and pointed to the one behind her own +chair. + +Albert was soon deeply engrossed in discoursing upon Paris and Parisian +matters, speaking to the countess of the various persons they both knew +there. Franz perceived how completely he was in his element; and, +unwilling to interfere with the pleasure he so evidently felt, took up +Albert’s glass, and began in his turn to survey the audience. + +Sitting alone, in the front of a box immediately opposite, but situated +on the third row, was a woman of exquisite beauty, dressed in a Greek +costume, which evidently, from the ease and grace with which she wore +it, was her national attire. Behind her, but in deep shadow, was the +outline of a masculine figure; but the features of this latter +personage it was not possible to distinguish. Franz could not forbear +breaking in upon the apparently interesting conversation passing +between the countess and Albert, to inquire of the former if she knew +who was the fair Albanian opposite, since beauty such as hers was well +worthy of being observed by either sex. + +“All I can tell about her,” replied the countess, “is, that she has +been at Rome since the beginning of the season; for I saw her where she +now sits the very first night of the season, and since then she has +never missed a performance. Sometimes she is accompanied by the person +who is now with her, and at others she is merely attended by a black +servant.” + +“And what do you think of her personal appearance?” + +“Oh, I consider her perfectly lovely—she is just my idea of what Medora +must have been.” + +Franz and the countess exchanged a smile, and then the latter resumed +her conversation with Albert, while Franz returned to his previous +survey of the house and company. The curtain rose on the ballet, which +was one of those excellent specimens of the Italian school, admirably +arranged and put on the stage by Henri, who has established for himself +a great reputation throughout Italy for his taste and skill in the +choreographic art—one of those masterly productions of grace, method, +and elegance in which the whole _corps de ballet_, from the principal +dancers to the humblest supernumerary, are all engaged on the stage at +the same time; and a hundred and fifty persons may be seen exhibiting +the same attitude, or elevating the same arm or leg with a simultaneous +movement, that would lead you to suppose that but one mind, one act of +volition, influenced the moving mass. + +The ballet was called _Poliska_. + +However much the ballet might have claimed his attention, Franz was too +deeply occupied with the beautiful Greek to take any note of it; while +she seemed to experience an almost childlike delight in watching it, +her eager, animated looks contrasting strongly with the utter +indifference of her companion, who, during the whole time the piece +lasted, never even moved, not even when the furious, crashing din +produced by the trumpets, cymbals, and Chinese bells sounded their +loudest from the orchestra. Of this he took no heed, but was, as far as +appearances might be trusted, enjoying soft repose and bright celestial +dreams. + +The ballet at length came to a close, and the curtain fell amid the +loud, unanimous plaudits of an enthusiastic and delighted audience. + +Owing to the very judicious plan of dividing the two acts of the opera +with a ballet, the pauses between the performances are very short, the +singers in the opera having time to repose themselves and change their +costume, when necessary, while the dancers are executing their +pirouettes and exhibiting their graceful steps. + +The overture to the second act began; and, at the first sound of the +leader’s bow across his violin, Franz observed the sleeper slowly arise +and approach the Greek girl, who turned around to say a few words to +him, and then, leaning forward again on the railing of her box, she +became as absorbed as before in what was going on. + +The countenance of the person who had addressed her remained so +completely in the shade, that, though Franz tried his utmost, he could +not distinguish a single feature. The curtain rose, and the attention +of Franz was attracted by the actors; and his eyes turned from the box +containing the Greek girl and her strange companion to watch the +business of the stage. + +Most of my readers are aware that the second act of _Parisina_ opens +with the celebrated and effective duet in which Parisina, while +sleeping, betrays to Azzo the secret of her love for Ugo. The injured +husband goes through all the emotions of jealousy, until conviction +seizes on his mind, and then, in a frenzy of rage and indignation, he +awakens his guilty wife to tell her that he knows her guilt and to +threaten her with his vengeance. + +This duet is one of the most beautiful, expressive and terrible +conceptions that has ever emanated from the fruitful pen of Donizetti. +Franz now listened to it for the third time; yet its notes, so tenderly +expressive and fearfully grand as the wretched husband and wife give +vent to their different griefs and passions, thrilled through the soul +of Franz with an effect equal to his first emotions upon hearing it. +Excited beyond his usual calm demeanor, Franz rose with the audience, +and was about to join the loud, enthusiastic applause that followed; +but suddenly his purpose was arrested, his hands fell by his sides, and +the half-uttered “bravos” expired on his lips. + +The occupant of the box in which the Greek girl sat appeared to share +the universal admiration that prevailed; for he left his seat to stand +up in front, so that, his countenance being fully revealed, Franz had +no difficulty in recognizing him as the mysterious inhabitant of Monte +Cristo, and the very same person he had encountered the preceding +evening in the ruins of the Colosseum, and whose voice and figure had +seemed so familiar to him. + +All doubt of his identity was now at an end; his singular host +evidently resided at Rome. The surprise and agitation occasioned by +this full confirmation of Franz’s former suspicion had no doubt +imparted a corresponding expression to his features; for the countess, +after gazing with a puzzled look at his face, burst into a fit of +laughter, and begged to know what had happened. + +“Countess,” returned Franz, totally unheeding her raillery, “I asked +you a short time since if you knew any particulars respecting the +Albanian lady opposite; I must now beseech you to inform me who and +what is her husband?” + +“Nay,” answered the countess, “I know no more of him than yourself.” + +“Perhaps you never before noticed him?” + +“What a question—so truly French! Do you not know that we Italians have +eyes only for the man we love?” + +“True,” replied Franz. + +“All I can say is,” continued the countess, taking up the _lorgnette_, +and directing it toward the box in question, “that the gentleman, whose +history I am unable to furnish, seems to me as though he had just been +dug up; he looks more like a corpse permitted by some friendly +grave-digger to quit his tomb for a while, and revisit this earth of +ours, than anything human. How ghastly pale he is!” + +“Oh, he is always as colorless as you now see him,” said Franz. + +“Then you know him?” almost screamed the countess. “Oh, pray do, for +heaven’s sake, tell us all about—is he a vampire, or a resuscitated +corpse, or what?” + +“I fancy I have seen him before; and I even think he recognizes me.” + +“And I can well understand,” said the countess, shrugging up her +beautiful shoulders, as though an involuntary shudder passed through +her veins, “that those who have once seen that man will never be likely +to forget him.” + +The sensation experienced by Franz was evidently not peculiar to +himself; another, and wholly uninterested person, felt the same +unaccountable awe and misgiving. + +“Well.” inquired Franz, after the countess had a second time directed +her _lorgnette_ at the box, “what do you think of our opposite +neighbor?” + +20147m + + + +“Why, that he is no other than Lord Ruthven himself in a living form.” + +This fresh allusion to Byron5 drew a smile to Franz’s countenance; +although he could but allow that if anything was likely to induce +belief in the existence of vampires, it would be the presence of such a +man as the mysterious personage before him. + +“I must positively find out who and what he is,” said Franz, rising +from his seat. + +“No, no,” cried the countess; “you must not leave me. I depend upon you +to escort me home. Oh, indeed, I cannot permit you to go.” + +“Is it possible,” whispered Franz, “that you entertain any fear?” + +“I’ll tell you,” answered the countess. “Byron had the most perfect +belief in the existence of vampires, and even assured me that he had +seen them. The description he gave me perfectly corresponds with the +features and character of the man before us. Oh, he is the exact +personification of what I have been led to expect! The coal-black hair, +large bright, glittering eyes, in which a wild, unearthly fire seems +burning,—the same ghastly paleness. Then observe, too, that the woman +with him is altogether unlike all others of her sex. She is a +foreigner—a stranger. Nobody knows who she is, or where she comes from. +No doubt she belongs to the same horrible race he does, and is, like +himself, a dealer in magical arts. I entreat of you not to go near +him—at least tonight; and if tomorrow your curiosity still continues as +great, pursue your researches if you will; but tonight you neither can +nor shall. For that purpose I mean to keep you all to myself.” + +Franz protested he could not defer his pursuit till the following day, +for many reasons. + +“Listen to me,” said the countess, “and do not be so very headstrong. I +am going home. I have a party at my house tonight, and therefore cannot +possibly remain till the end of the opera. Now, I cannot for one +instant believe you so devoid of gallantry as to refuse a lady your +escort when she even condescends to ask you for it.” + +There was nothing else left for Franz to do but to take up his hat, +open the door of the box, and offer the countess his arm. It was quite +evident, by her manner, that her uneasiness was not feigned; and Franz +himself could not resist a feeling of superstitious dread—so much the +stronger in him, as it arose from a variety of corroborative +recollections, while the terror of the countess sprang from an +instinctive belief, originally created in her mind by the wild tales +she had listened to till she believed them truths. Franz could even +feel her arm tremble as he assisted her into the carriage. Upon +arriving at her hotel, Franz perceived that she had deceived him when +she spoke of expecting company; on the contrary, her own return before +the appointed hour seemed greatly to astonish the servants. + +“Excuse my little subterfuge,” said the countess, in reply to her +companion’s half-reproachful observation on the subject; “but that +horrid man had made me feel quite uncomfortable, and I longed to be +alone, that I might compose my startled mind.” + +Franz essayed to smile. + +“Nay,” said she, “do not smile; it ill accords with the expression of +your countenance, and I am sure it does not spring from your heart. +However, promise me one thing.” + +“What is it?” + +“Promise me, I say.” + +“I will do anything you desire, except relinquish my determination of +finding out who this man is. I have more reasons than you can imagine +for desiring to know who he is, from whence he came, and whither he is +going.” + +“Where he comes from I am ignorant; but I can readily tell you where he +is going to, and that is down below, without the least doubt.” + +“Let us only speak of the promise you wished me to make,” said Franz. + +“Well, then, you must give me your word to return immediately to your +hotel, and make no attempt to follow this man tonight. There are +certain affinities between the persons we quit and those we meet +afterwards. For heaven’s sake, do not serve as a conductor between that +man and me. Pursue your chase after him tomorrow as eagerly as you +please; but never bring him near me, if you would not see me die of +terror. And now, good-night; go to your rooms, and try to sleep away +all recollections of this evening. For my own part, I am quite sure I +shall not be able to close my eyes.” + +So saying, the countess quitted Franz, leaving him unable to decide +whether she were merely amusing herself at his expense, or whether her +fears and agitations were genuine. + +Upon his return to the hotel, Franz found Albert in his dressing-gown +and slippers, listlessly extended on a sofa, smoking a cigar. + +“My dear fellow!” cried he, springing up, “is it really you? Why, I did +not expect to see you before tomorrow.” + +“My dear Albert,” replied Franz, “I am glad of this opportunity to tell +you, once and forever, that you entertain a most erroneous notion +concerning Italian women. I should have thought the continual failures +you have met with in all your own love affairs might have taught you +better by this time.” + +“Upon my soul, these women would puzzle the very Devil to read them +aright. Why, here—they give you their hand—they press yours in +return—they keep up a whispering conversation—permit you to accompany +them home. Why, if a Parisian were to indulge in a quarter of these +marks of flattering attention, her reputation would be gone forever.” + +“And the very reason why the women of this fine country, ‘where sounds +the _si_,’ as Dante writes, put so little restraint on their words and +actions, is because they live so much in public, and have really +nothing to conceal. Besides, you must have perceived that the countess +was really alarmed.” + +“At what? At the sight of that respectable gentleman sitting opposite +to us in the same box with the lovely Greek girl? Now, for my part, I +met them in the lobby after the conclusion of the piece; and hang me, +if I can guess where you took your notions of the other world from. I +can assure you that this hobgoblin of yours is a deuced fine-looking +fellow—admirably dressed. Indeed, I feel quite sure, from the cut of +his clothes, they are made by a first-rate Paris tailor—probably Blin +or Humann. He was rather too pale, certainly; but then, you know, +paleness is always looked upon as a strong proof of aristocratic +descent and distinguished breeding.” + +Franz smiled; for he well remembered that Albert particularly prided +himself on the entire absence of color in his own complexion. + +“Well, that tends to confirm my own ideas,” said Franz, “that the +countess’s suspicions were destitute alike of sense and reason. Did he +speak in your hearing? and did you catch any of his words?” + +“I did; but they were uttered in the Romaic dialect. I knew that from +the mixture of Greek words. I don’t know whether I ever told you that +when I was at college I was rather—rather strong in Greek.” + +“He spoke the Romaic language, did he?” + +“I think so.” + +“That settles it,” murmured Franz. “’Tis he, past all doubt.” + +“What do you say?” + +“Nothing, nothing. But tell me, what were you thinking about when I +came in?” + +“Oh, I was arranging a little surprise for you.” + +“Indeed. Of what nature?” + +“Why, you know it is quite impossible to procure a carriage.” + +“Certainly; and I also know that we have done all that human means +afforded to endeavor to get one.” + +“Now, then, in this difficulty a bright idea has flashed across my +brain.” + +Franz looked at Albert as though he had not much confidence in the +suggestions of his imagination. + +“I tell you what, M. Franz,” cried Albert, “you deserve to be called +out for such a misgiving and incredulous glance as that you were +pleased to bestow on me just now.” + +“And I promise to give you the satisfaction of a gentleman if your +scheme turns out as ingenious as you assert.” + +“Well, then, hearken to me.” + +“I listen.” + +“You agree, do you not, that obtaining a carriage is out of the +question?” + +“I do.” + +“Neither can we procure horses?” + +“True; we have offered any sum, but have failed.” + +“Well, now, what do you say to a cart? I dare say such a thing might be +had.” + +“Very possibly.” + +“And a pair of oxen?” + +“As easily found as the cart.” + +“Then you see, my good fellow, with a cart and a couple of oxen our +business can be managed. The cart must be tastefully ornamented; and if +you and I dress ourselves as Neapolitan reapers, we may get up a +striking tableau, after the manner of that splendid picture by Léopold +Robert. It would add greatly to the effect if the countess would join +us in the costume of a peasant from Puzzoli or Sorrento. Our group +would then be quite complete, more especially as the countess is quite +beautiful enough to represent a Madonna.” + +“Well,” said Franz, “this time, M. Albert, I am bound to give you +credit for having hit upon a most capital idea.” + +“And quite a national one, too,” replied Albert with gratified pride. +“A mere masque borrowed from our own festivities. Ha, ha, ye Romans! +you thought to make us, unhappy strangers, trot at the heels of your +processions, like so many lazzaroni, because no carriages or horses are +to be had in your beggarly city. But you don’t know us; when we can’t +have one thing we invent another.” + +“And have you communicated your triumphant idea to anybody?” + +“Only to our host. Upon my return home I sent for him, and I then +explained to him what I wished to procure. He assured me that nothing +would be easier than to furnish all I desired. One thing I was sorry +for; when I bade him have the horns of the oxen gilded, he told me +there would not be time, as it would require three days to do that; so +you see we must do without this little superfluity.” + +“And where is he now?” + +“Who?” + +“Our host.” + +“Gone out in search of our equipage, by tomorrow it might be too late.” + +“Then he will be able to give us an answer tonight.” + +“Oh, I expect him every minute.” + +At this instant the door opened, and the head of Signor Pastrini +appeared. “_Permesso_?” inquired he. + +“Certainly—certainly,” cried Franz. “Come in, my host.” + +“Now, then,” asked Albert eagerly, “have you found the desired cart and +oxen?” + +“Better than that!” replied Signor Pastrini, with the air of a man +perfectly well satisfied with himself. + +“Take care, my worthy host,” said Albert, “_better_ is a sure enemy to +_well_.” + +“Let your excellencies only leave the matter to me,” returned Signor +Pastrini in a tone indicative of unbounded self-confidence. + +“But what _have_ you done?” asked Franz. “Speak out, there’s a worthy +fellow.” + +“Your excellencies are aware,” responded the landlord, swelling with +importance, “that the Count of Monte Cristo is living on the same floor +with yourselves!” + +“I should think we did know it,” exclaimed Albert, “since it is owing +to that circumstance that we are packed into these small rooms, like +two poor students in the back streets of Paris.” + +“When, then, the Count of Monte Cristo, hearing of the dilemma in which +you are placed, has sent to offer you seats in his carriage and two +places at his windows in the Palazzo Rospoli.” The friends looked at +each other with unutterable surprise. + +“But do you think,” asked Albert, “that we ought to accept such offers +from a perfect stranger?” + +“What sort of person is this Count of Monte Cristo?” asked Franz of his +host. + +“A very great nobleman, but whether Maltese or Sicilian I cannot +exactly say; but this I know, that he is noble as a Borghese and rich +as a gold mine.” + +“It seems to me,” said Franz, speaking in an undertone to Albert, “that +if this person merited the high panegyrics of our landlord, he would +have conveyed his invitation through another channel, and not permitted +it to be brought to us in this unceremonious way. He would have +written—or——” + +At this instant someone knocked at the door. + +“Come in,” said Franz. + +A servant, wearing a livery of considerable style and richness, +appeared at the threshold, and, placing two cards in the landlord’s +hands, who forthwith presented them to the two young men, he said: + +“Please to deliver these, from the Count of Monte Cristo to Vicomte +Albert de Morcerf and M. Franz d’Épinay. The Count of Monte Cristo,” +continued the servant, “begs these gentlemen’s permission to wait upon +them as their neighbor, and he will be honored by an intimation of what +time they will please to receive him.” + +“Faith, Franz,” whispered Albert, “there is not much to find fault with +here.” + +“Tell the count,” replied Franz, “that we will do ourselves the +pleasure of calling on him.” + +The servant bowed and retired. + +“That is what I call an elegant mode of attack,” said Albert, “You were +quite correct in what you said, Signor Pastrini. The Count of Monte +Cristo is unquestionably a man of first-rate breeding and knowledge of +the world.” + +“Then you accept his offer?” said the host. + +“Of course we do,” replied Albert. “Still, I must own I am sorry to be +obliged to give up the cart and the group of reapers—it would have +produced such an effect! And were it not for the windows at the Palazzo +Rospoli, by way of recompense for the loss of our beautiful scheme, I +don’t know but what I should have held on by my original plan. What say +you, Franz?” + +“Oh, I agree with you; the windows in the Palazzo Rospoli alone decided +me.” + +The truth was, that the mention of two places in the Palazzo Rospoli +had recalled to Franz the conversation he had overheard the preceding +evening in the ruins of the Colosseum between the mysterious unknown +and the Transteverin, in which the stranger in the cloak had undertaken +to obtain the freedom of a condemned criminal; and if this muffled-up +individual proved (as Franz felt sure he would) the same as the person +he had just seen in the Teatro Argentina, then he should be able to +establish his identity, and also to prosecute his researches respecting +him with perfect facility and freedom. + +Franz passed the night in confused dreams respecting the two meetings +he had already had with his mysterious tormentor, and in waking +speculations as to what the morrow would produce. The next day must +clear up every doubt; and unless his near neighbor and would-be friend, +the Count of Monte Cristo, possessed the ring of Gyges, and by its +power was able to render himself invisible, it was very certain he +could not escape this time. + +Eight o’clock found Franz up and dressed, while Albert, who had not the +same motives for early rising, was still soundly asleep. The first act +of Franz was to summon his landlord, who presented himself with his +accustomed obsequiousness. + +“Pray, Signor Pastrini,” asked Franz, “is not some execution appointed +to take place today?” + +“Yes, your excellency; but if your reason for inquiry is that you may +procure a window to view it from, you are much too late.” + +“Oh, no,” answered Franz, “I had no such intention; and even if I had +felt a wish to witness the spectacle, I might have done so from Monte +Pincio; could I not?” + +“Ah!” exclaimed mine host, “I did not think it likely your excellency +would have chosen to mingle with such a rabble as are always collected +on that hill, which, indeed, they consider as exclusively belonging to +themselves.” + +“Very possibly I may not go,” answered Franz; “but in case I feel +disposed, give me some particulars of today’s executions.” + +“What particulars would your excellency like to hear?” + +“Why, the number of persons condemned to suffer, their names, and +description of the death they are to die.” + +“That happens just lucky, your excellency! Only a few minutes ago they +brought me the _tavolettas_.” + +“What are they?” + +“Sort of wooden tablets hung up at the corners of streets the evening +before an execution, on which is pasted up a paper containing the names +of the condemned persons, their crimes, and mode of punishment. The +reason for so publicly announcing all this is, that all good and +faithful Catholics may offer up their prayers for the unfortunate +culprits, and, above all, beseech of Heaven to grant them a sincere +repentance.” + +“And these tablets are brought to you that you may add your prayers to +those of the faithful, are they?” asked Franz somewhat incredulously. + +“Oh, dear, no, your excellency! I have not time for anybody’s affairs +but my own and those of my honorable guests; but I make an agreement +with the man who pastes up the papers, and he brings them to me as he +would the playbills, that in case any person staying at my hotel should +like to witness an execution, he may obtain every requisite information +concerning the time and place etc.” + +“Upon my word, that is a most delicate attention on your part, Signor +Pastrini,” cried Franz. + +“Why, your excellency,” returned the landlord, chuckling and rubbing +his hands with infinite complacency, “I think I may take upon myself to +say I neglect nothing to deserve the support and patronage of the noble +visitors to this poor hotel.” + +“I see that plainly enough, my most excellent host, and you may rely +upon me to proclaim so striking a proof of your attention to your +guests wherever I go. Meanwhile, oblige me by a sight of one of these +_tavolettas_.” + +“Nothing can be easier than to comply with your excellency’s wish,” +said the landlord, opening the door of the chamber; “I have caused one +to be placed on the landing, close by your apartment.” + +Then, taking the tablet from the wall, he handed it to Franz, who read +as follows: + +“‘The public is informed that on Wednesday, February 23rd, being the +first day of the Carnival, executions will take place in the Piazza del +Popolo, by order of the Tribunal of the Rota, of two persons, named +Andrea Rondolo, and Peppino, otherwise called Rocca Priori; the former +found guilty of the murder of a venerable and exemplary priest, named +Don César Torlini, canon of the church of St. John Lateran; and the +latter convicted of being an accomplice of the atrocious and sanguinary +bandit, Luigi Vampa, and his band. The first-named malefactor will be +_mazzolato_, the second culprit _decapitato_. + +“‘The prayers of all good Christians are entreated for these +unfortunate men, that it may please God to awaken them to a sense of +their guilt, and to grant them a hearty and sincere repentance for +their crimes.’” + +This was precisely what Franz had heard the evening before in the ruins +of the Colosseum. No part of the programme differed,—the names of the +condemned persons, their crimes, and mode of punishment, all agreed +with his previous information. In all probability, therefore, the +Transteverin was no other than the bandit Luigi Vampa himself, and the +man shrouded in the mantle the same he had known as “Sinbad the +Sailor,” but who, no doubt, was still pursuing his philanthropic +expedition in Rome, as he had already done at Porto-Vecchio and Tunis. + +Time was getting on, however, and Franz deemed it advisable to awaken +Albert; but at the moment he prepared to proceed to his chamber, his +friend entered the room in perfect costume for the day. The anticipated +delights of the Carnival had so run in his head as to make him leave +his pillow long before his usual hour. + +“Now, my excellent Signor Pastrini,” said Franz, addressing his +landlord, “since we are both ready, do you think we may proceed at once +to visit the Count of Monte Cristo?” + +“Most assuredly,” replied he. “The Count of Monte Cristo is always an +early riser; and I can answer for his having been up these two hours.” + +“Then you really consider we shall not be intruding if we pay our +respects to him directly?” + +20155m + + + +“Oh, I am quite sure. I will take all the blame on myself if you find I +have led you into an error.” + +“Well, then, if it be so, are you ready, Albert?” + +“Perfectly.” + +“Let us go and return our best thanks for his courtesy.” + +“Yes, let us do so.” + +The landlord preceded the friends across the landing, which was all +that separated them from the apartments of the count, rang at the bell, +and, upon the door being opened by a servant, said: + +“_I signori Francesi_.” + +The domestic bowed respectfully, and invited them to enter. They passed +through two rooms, furnished in a luxurious manner they had not +expected to see under the roof of Signor Pastrini, and were shown into +an elegantly fitted-up drawing-room. The richest Turkey carpets covered +the floor, and the softest and most inviting couches, easy-chairs, and +sofas, offered their high-piled and yielding cushions to such as +desired repose or refreshment. Splendid paintings by the first masters +were ranged against the walls, intermingled with magnificent trophies +of war, while heavy curtains of costly tapestry were suspended before +the different doors of the room. + +“If your excellencies will please to be seated,” said the man, “I will +let the count know that you are here.” + +And with these words he disappeared behind one of the tapestried +_portières_. As the door opened, the sound of a _guzla_ reached the +ears of the young men, but was almost immediately lost, for the rapid +closing of the door merely allowed one rich swell of harmony to enter. +Franz and Albert looked inquiringly at each other, then at the gorgeous +furnishings of the apartment. Everything seemed more magnificent at a +second view than it had done at their first rapid survey. + +“Well,” said Franz to his friend, “what think you of all this?” + +“Why, upon my soul, my dear fellow, it strikes me that our elegant and +attentive neighbor must either be some successful stock-jobber who has +speculated in the fall of the Spanish funds, or some prince travelling +_incog_.” + +“Hush, hush!” replied Franz; “we shall ascertain who and what he is—he +comes!” + +As Franz spoke, he heard the sound of a door turning on its hinges, and +almost immediately afterwards the tapestry was drawn aside, and the +owner of all these riches stood before the two young men. Albert +instantly rose to meet him, but Franz remained, in a manner, spellbound +on his chair; for in the person of him who had just entered he +recognized not only the mysterious visitant to the Colosseum, and the +occupant of the box at the Teatro Argentina, but also his extraordinary +host of Monte Cristo. + +20157m + + + + + Chapter 35. La Mazzolata + +Gentlemen,” said the Count of Monte Cristo as he entered, “I pray you +excuse me for suffering my visit to be anticipated; but I feared to +disturb you by presenting myself earlier at your apartments; besides, +you sent me word that you would come to me, and I have held myself at +your disposal.” + +“Franz and I have to thank you a thousand times, count,” returned +Albert; “you extricated us from a great dilemma, and we were on the +point of inventing a very fantastic vehicle when your friendly +invitation reached us.” + +“Indeed,” returned the count, motioning the two young men to sit down. +“It was the fault of that blockhead Pastrini, that I did not sooner +assist you in your distress. He did not mention a syllable of your +embarrassment to me, when he knows that, alone and isolated as I am, I +seek every opportunity of making the acquaintance of my neighbors. As +soon as I learned I could in any way assist you, I most eagerly seized +the opportunity of offering my services.” + +The two young men bowed. Franz had, as yet, found nothing to say; he +had come to no determination, and as nothing in the count’s manner +manifested the wish that he should recognize him, he did not know +whether to make any allusion to the past, or wait until he had more +proof; besides, although sure it was he who had been in the box the +previous evening, he could not be equally positive that this was the +man he had seen at the Colosseum. He resolved, therefore, to let things +take their course without making any direct overture to the count. +Moreover, he had this advantage, he was master of the count’s secret, +while the count had no hold on Franz, who had nothing to conceal. +However, he resolved to lead the conversation to a subject which might +possibly clear up his doubts. + +“Count,” said he, “you have offered us places in your carriage, and at +your windows in the Rospoli Palace. Can you tell us where we can obtain +a sight of the Piazza del Popolo?” + +“Ah,” said the count negligently, looking attentively at Morcerf, “is +there not something like an execution upon the Piazza del Popolo?” + +“Yes,” returned Franz, finding that the count was coming to the point +he wished. + +“Stay, I think I told my steward yesterday to attend to this; perhaps I +can render you this slight service also.” + +He extended his hand, and rang the bell thrice. + +“Did you ever occupy yourself,” said he to Franz, “with the employment +of time and the means of simplifying the summoning your servants? I +have. When I ring once, it is for my valet; twice, for my majordomo; +thrice, for my steward,—thus I do not waste a minute or a word. Here he +is.” + +A man of about forty-five or fifty entered, exactly resembling the +smuggler who had introduced Franz into the cavern; but he did not +appear to recognize him. It was evident he had his orders. + +“Monsieur Bertuccio,” said the count, “you have procured me windows +looking on the Piazza del Popolo, as I ordered you yesterday.” + +“Yes, excellency,” returned the steward; “but it was very late.” + +“Did I not tell you I wished for one?” replied the count, frowning. + +“And your excellency has one, which was let to Prince Lobanieff; but I +was obliged to pay a hundred——” + +“That will do—that will do, Monsieur Bertuccio; spare these gentlemen +all such domestic arrangements. You have the window, that is +sufficient. Give orders to the coachman; and be in readiness on the +stairs to conduct us to it.” + +The steward bowed, and was about to quit the room. + +“Ah!” continued the count, “be good enough to ask Pastrini if he has +received the _tavoletta_, and if he can send us an account of the +execution.” + +“There is no need to do that,” said Franz, taking out his tablets; “for +I saw the account, and copied it down.” + +“Very well, you can retire, M. Bertuccio; I need you no longer. Let us +know when breakfast is ready. These gentlemen,” added he, turning to +the two friends, “will, I trust, do me the honor to breakfast with me?” + +“But, my dear count,” said Albert, “we shall abuse your kindness.” + +“Not at all; on the contrary, you will give me great pleasure. You +will, one or other of you, perhaps both, return it to me at Paris. M. +Bertuccio, lay covers for three.” + +He then took Franz’s tablets out of his hand. “‘We announce,’ he read, +in the same tone with which he would have read a newspaper, ‘that +today, the 23rd of February, will be executed Andrea Rondolo, guilty of +murder on the person of the respected and venerated Don César Torlini, +canon of the church of St. John Lateran, and Peppino, called Rocca +Priori, convicted of complicity with the detestable bandit Luigi Vampa, +and the men of his band.’ + +“Hum! ‘The first will be _mazzolato_, the second _decapitato_.’ Yes,” +continued the count, “it was at first arranged in this way; but I think +since yesterday some change has taken place in the order of the +ceremony.” + +“Really?” said Franz. + +“Yes, I passed the evening at the Cardinal Rospigliosi’s, and there +mention was made of something like a pardon for one of the two men.” + +“For Andrea Rondolo?” asked Franz. + +“No,” replied the count, carelessly; “for the other (he glanced at the +tablets as if to recall the name), for Peppino, called Rocca Priori. +You are thus deprived of seeing a man guillotined; but the _mazzolata_ +still remains, which is a very curious punishment when seen for the +first time, and even the second, while the other, as you must know, is +very simple. The _mandaïa_6 never fails, never trembles, never strikes +thirty times ineffectually, like the soldier who beheaded the Count of +Chalais, and to whose tender mercy Richelieu had doubtless recommended +the sufferer. Ah,” added the count, in a contemptuous tone, “do not +tell me of European punishments, they are in the infancy, or rather the +old age, of cruelty.” + +“Really, count,” replied Franz, “one would think that you had studied +the different tortures of all the nations of the world.” + +“There are, at least, few that I have not seen,” said the count coldly. + +“And you took pleasure in beholding these dreadful spectacles?” + +“My first sentiment was horror, the second indifference, the third +curiosity.” + +“Curiosity—that is a terrible word.” + +“Why so? In life, our greatest preoccupation is death; is it not then, +curious to study the different ways by which the soul and body can +part; and how, according to their different characters, temperaments, +and even the different customs of their countries, different persons +bear the transition from life to death, from existence to annihilation? +As for myself, I can assure you of one thing,—the more men you see die, +the easier it becomes to die yourself; and in my opinion, death may be +a torture, but it is not an expiation.” + +“I do not quite understand you,” replied Franz; “pray explain your +meaning, for you excite my curiosity to the highest pitch.” + +“Listen,” said the count, and deep hatred mounted to his face, as the +blood would to the face of any other. “If a man had by unheard-of and +excruciating tortures destroyed your father, your mother, your +betrothed,—a being who, when torn from you, left a desolation, a wound +that never closes, in your breast,—do you think the reparation that +society gives you is sufficient when it interposes the knife of the +guillotine between the base of the occiput and the trapezal muscles of +the murderer, and allows him who has caused us years of moral +sufferings to escape with a few moments of physical pain?” + +“Yes, I know,” said Franz, “that human justice is insufficient to +console us; she can give blood in return for blood, that is all; but +you must demand from her only what it is in her power to grant.” + +“I will put another case to you,” continued the count; “that where +society, attacked by the death of a person, avenges death by death. But +are there not a thousand tortures by which a man may be made to suffer +without society taking the least cognizance of them, or offering him +even the insufficient means of vengeance, of which we have just spoken? +Are there not crimes for which the impalement of the Turks, the augers +of the Persians, the stake and the brand of the Iroquois Indians, are +inadequate tortures, and which are unpunished by society? Answer me, do +not these crimes exist?” + +“Yes,” answered Franz; “and it is to punish them that duelling is +tolerated.” + +“Ah, duelling,” cried the count; “a pleasant manner, upon my soul, of +arriving at your end when that end is vengeance! A man has carried off +your mistress, a man has seduced your wife, a man has dishonored your +daughter; he has rendered the whole life of one who had the right to +expect from Heaven that portion of happiness God has promised to +everyone of his creatures, an existence of misery and infamy; and you +think you are avenged because you send a ball through the head, or pass +a sword through the breast, of that man who has planted madness in your +brain, and despair in your heart. And remember, moreover, that it is +often he who comes off victorious from the strife, absolved of all +crime in the eyes of the world. No, no,” continued the count, “had I to +avenge myself, it is not thus I would take revenge.” + +“Then you disapprove of duelling? You would not fight a duel?” asked +Albert in his turn, astonished at this strange theory. + +“Oh, yes,” replied the count; “understand me, I would fight a duel for +a trifle, for an insult, for a blow; and the more so that, thanks to my +skill in all bodily exercises, and the indifference to danger I have +gradually acquired, I should be almost certain to kill my man. Oh, I +would fight for such a cause; but in return for a slow, profound, +eternal torture, I would give back the same, were it possible; an eye +for an eye, a tooth for a tooth, as the Orientalists say,—our masters +in everything,—those favored creatures who have formed for themselves a +life of dreams and a paradise of realities.” + +“But,” said Franz to the count, “with this theory, which renders you at +once judge and executioner of your own cause, it would be difficult to +adopt a course that would forever prevent your falling under the power +of the law. Hatred is blind, rage carries you away; and he who pours +out vengeance runs the risk of tasting a bitter draught.” + +“Yes, if he be poor and inexperienced, not if he be rich and skilful; +besides, the worst that could happen to him would be the punishment of +which we have already spoken, and which the philanthropic French +Revolution has substituted for being torn to pieces by horses or broken +on the wheel. What matters this punishment, as long as he is avenged? +On my word, I almost regret that in all probability this miserable +Peppino will not be beheaded, as you might have had an opportunity then +of seeing how short a time the punishment lasts, and whether it is +worth even mentioning; but, really this is a most singular conversation +for the Carnival, gentlemen; how did it arise? Ah, I recollect, you +asked for a place at my window; you shall have it; but let us first sit +down to table, for here comes the servant to inform us that breakfast +is ready.” + +As he spoke, a servant opened one of the four doors of the apartment, +saying: + +“_Al suo commodo!_” + +The two young men arose and entered the breakfast-room. + +During the meal, which was excellent, and admirably served, Franz +looked repeatedly at Albert, in order to observe the impressions which +he doubted not had been made on him by the words of their entertainer; +but whether with his usual carelessness he had paid but little +attention to him, whether the explanation of the Count of Monte Cristo +with regard to duelling had satisfied him, or whether the events which +Franz knew of had had their effect on him alone, he remarked that his +companion did not pay the least regard to them, but on the contrary ate +like a man who for the last four or five months had been condemned to +partake of Italian cookery—that is, the worst in the world. + +As for the count, he just touched the dishes; he seemed to fulfil the +duties of a host by sitting down with his guests, and awaited their +departure to be served with some strange or more delicate food. This +brought back to Franz, in spite of himself, the recollection of the +terror with which the count had inspired the Countess G——, and her firm +conviction that the man in the opposite box was a vampire. + +At the end of the breakfast Franz took out his watch. + +“Well,” said the count, “what are you doing?” + +“You must excuse us, count,” returned Franz, “but we have still much to +do.” + +“What may that be?” + +“We have no masks, and it is absolutely necessary to procure them.” + +“Do not concern yourself about that; we have, I think, a private room +in the Piazza del Popolo; I will have whatever costumes you choose +brought to us, and you can dress there.” + +“After the execution?” cried Franz. + +“Before or after, whichever you please.” + +“Opposite the scaffold?” + +“The scaffold forms part of the _fête_.” + +“Count, I have reflected on the matter,” said Franz, “I thank you for +your courtesy, but I shall content myself with accepting a place in +your carriage and at your window at the Rospoli Palace, and I leave you +at liberty to dispose of my place at the Piazza del Popolo.” + +“But I warn you, you will lose a very curious sight,” returned the +count. + +“You will describe it to me,” replied Franz, “and the recital from your +lips will make as great an impression on me as if I had witnessed it. I +have more than once intended witnessing an execution, but I have never +been able to make up my mind; and you, Albert?” + +“I,” replied the viscount,—“I saw Castaing executed, but I think I was +rather intoxicated that day, for I had quitted college the same +morning, and we had passed the previous night at a tavern.” + +“Besides, it is no reason because you have not seen an execution at +Paris, that you should not see one anywhere else; when you travel, it +is to see everything. Think what a figure you will make when you are +asked, ‘How do they execute at Rome?’ and you reply, ‘I do not know!’ +And, besides, they say that the culprit is an infamous scoundrel, who +killed with a log of wood a worthy canon who had brought him up like +his own son. _Diable!_ when a churchman is killed, it should be with a +different weapon than a log, especially when he has behaved like a +father. If you went to Spain, would you not see the bull-fights? Well, +suppose it is a bull-fight you are going to see? Recollect the ancient +Romans of the Circus, and the sports where they killed three hundred +lions and a hundred men. Think of the eighty thousand applauding +spectators, the sage matrons who took their daughters, and the charming +Vestals who made with the thumb of their white hands the fatal sign +that said, ‘Come, despatch the dying.’” + +“Shall you go, then, Albert?” asked Franz. + +“_Ma foi_, yes; like you, I hesitated, but the count’s eloquence +decides me.” + +“Let us go, then,” said Franz, “since you wish it; but on our way to +the Piazza del Popolo, I wish to pass through the Corso. Is this +possible, count?” + +“On foot, yes, in a carriage, no.” + +“I will go on foot, then.” + +“Is it important that you should go that way?” + +“Yes, there is something I wish to see.” + +“Well, we will go by the Corso. We will send the carriage to wait for +us on the Piazza del Popolo, by the Via del Babuino, for I shall be +glad to pass, myself, through the Corso, to see if some orders I have +given have been executed.” + +“Excellency,” said a servant, opening the door, “a man in the dress of +a penitent wishes to speak to you.” + +“Ah! yes,” returned the count, “I know who he is, gentlemen; will you +return to the salon? you will find good cigars on the centre table. I +will be with you directly.” + +The young men rose and returned into the salon, while the count, again +apologizing, left by another door. Albert, who was a great smoker, and +who had considered it no small sacrifice to be deprived of the cigars +of the Café de Paris, approached the table, and uttered a cry of joy at +perceiving some veritable _puros_. + +“Well,” asked Franz, “what think you of the Count of Monte Cristo?” + +“What do I think?” said Albert, evidently surprised at such a question +from his companion; “I think he is a delightful fellow, who does the +honors of his table admirably; who has travelled much, read much, is, +like Brutus, of the Stoic school, and moreover,” added he, sending a +volume of smoke up towards the ceiling, “that he has excellent cigars.” + +Such was Albert’s opinion of the count, and as Franz well knew that +Albert professed never to form an opinion except upon long reflection, +he made no attempt to change it. + +“But,” said he, “did you observe one very singular thing?” + +“What?” + +“How attentively he looked at you.” + +“At me?” + +“Yes.” + +Albert reflected. “Ah,” replied he, sighing, “that is not very +surprising; I have been more than a year absent from Paris, and my +clothes are of a most antiquated cut; the count takes me for a +provincial. The first opportunity you have, undeceive him, I beg, and +tell him I am nothing of the kind.” + +Franz smiled; an instant after the count entered. + +“I am now quite at your service, gentlemen,” said he. “The carriage is +going one way to the Piazza del Popolo, and we will go another; and, if +you please, by the Corso. Take some more of these cigars, M. de +Morcerf.” + +“With all my heart,” returned Albert; “Italian cigars are horrible. +When you come to Paris, I will return all this.” + +“I will not refuse; I intend going there soon, and since you allow me, +I will pay you a visit. Come, we have not any time to lose, it is +half-past twelve—let us set off.” + +All three descended; the coachman received his master’s orders, and +drove down the Via del Babuino. While the three gentlemen walked along +the Piazza di Spagna and the Via Frattina, which led directly between +the Fiano and Rospoli palaces, Franz’s attention was directed towards +the windows of that last palace, for he had not forgotten the signal +agreed upon between the man in the mantle and the Transtevere peasant. + +“Which are your windows?” asked he of the count, with as much +indifference as he could assume. + +“The three last,” returned he, with a negligence evidently unaffected, +for he could not imagine with what intention the question was put. + +Franz glanced rapidly towards the three windows. The side windows were +hung with yellow damask, and the centre one with white damask and a red +cross. The man in the mantle had kept his promise to the Transteverin, +and there could now be no doubt that he was the count. + +The three windows were still untenanted. Preparations were making on +every side; chairs were placed, scaffolds were raised, and windows were +hung with flags. The masks could not appear; the carriages could not +move about; but the masks were visible behind the windows, the +carriages, and the doors. + +Franz, Albert, and the count continued to descend the Corso. As they +approached the Piazza del Popolo, the crowd became more dense, and +above the heads of the multitude two objects were visible: the obelisk, +surmounted by a cross, which marks the centre of the square, and in +front of the obelisk, at the point where the three streets, del +Babuino, del Corso, and di Ripetta, meet, the two uprights of the +scaffold, between which glittered the curved knife of the _mandaïa_. + +At the corner of the street they met the count’s steward, who was +awaiting his master. The window, let at an exorbitant price, which the +count had doubtless wished to conceal from his guests, was on the +second floor of the great palace, situated between the Via del Babuino +and the Monte Pincio. It consisted, as we have said, of a small +dressing-room, opening into a bedroom, and, when the door of +communication was shut, the inmates were quite alone. On chairs were +laid elegant masquerade costumes of blue and white satin. + +20167m + + + +“As you left the choice of your costumes to me,” said the count to the +two friends, “I have had these brought, as they will be the most worn +this year; and they are most suitable, on account of the _confetti_ +(sweetmeats), as they do not show the flour.” + +Franz heard the words of the count but imperfectly, and he perhaps did +not fully appreciate this new attention to their wishes; for he was +wholly absorbed by the spectacle that the Piazza del Popolo presented, +and by the terrible instrument that was in the centre. + +It was the first time Franz had ever seen a guillotine,—we say +guillotine, because the Roman _mandaïa_ is formed on almost the same +model as the French instrument.7 The knife, which is shaped like a +crescent, that cuts with the convex side, falls from a less height, and +that is all the difference. + +Two men, seated on the movable plank on which the victim is laid, were +eating their breakfasts, while waiting for the criminal. Their repast +consisted apparently of bread and sausages. One of them lifted the +plank, took out a flask of wine, drank some, and then passed it to his +companion. These two men were the executioner’s assistants. + +At this sight Franz felt the perspiration start forth upon his brow. + +The prisoners, transported the previous evening from the Carceri Nuove +to the little church of Santa Maria del Popolo, had passed the night, +each accompanied by two priests, in a chapel closed by a grating, +before which were two sentinels, who were relieved at intervals. A +double line of carbineers, placed on each side of the door of the +church, reached to the scaffold, and formed a circle around it, leaving +a path about ten feet wide, and around the guillotine a space of nearly +a hundred feet. + +All the rest of the square was paved with heads. Many women held their +infants on their shoulders, and thus the children had the best view. +The Monte Pincio seemed a vast amphitheatre filled with spectators; the +balconies of the two churches at the corner of the Via del Babuino and +the Via di Ripetta were crammed; the steps even seemed a parti-colored +sea, that was impelled towards the portico; every niche in the wall +held its living statue. What the count said was true—the most curious +spectacle in life is that of death. + +And yet, instead of the silence and the solemnity demanded by the +occasion, laughter and jests arose from the crowd. It was evident that +the execution was, in the eyes of the people, only the commencement of +the Carnival. + +Suddenly the tumult ceased, as if by magic, and the doors of the church +opened. A brotherhood of penitents, clothed from head to foot in robes +of gray sackcloth, with holes for the eyes, and holding in their hands +lighted tapers, appeared first; the chief marched at the head. + +20169m + + + +Behind the penitents came a man of vast stature and proportions. He was +naked, with the exception of cloth drawers at the left side of which +hung a large knife in a sheath, and he bore on his right shoulder a +heavy iron sledge-hammer. + +This man was the executioner. + +He had, moreover, sandals bound on his feet by cords. + +Behind the executioner came, in the order in which they were to die, +first Peppino and then Andrea. Each was accompanied by two priests. +Neither had his eyes bandaged. + +Peppino walked with a firm step, doubtless aware of what awaited him. +Andrea was supported by two priests. Each of them, from time to time, +kissed the crucifix a confessor held out to them. + +At this sight alone Franz felt his legs tremble under him. He looked at +Albert—he was as white as his shirt, and mechanically cast away his +cigar, although he had not half smoked it. The count alone seemed +unmoved—nay, more, a slight color seemed striving to rise in his pale +cheeks. His nostrils dilated like those of a wild beast that scents its +prey, and his lips, half opened, disclosed his white teeth, small and +sharp like those of a jackal. And yet his features wore an expression +of smiling tenderness, such as Franz had never before witnessed in +them; his black eyes especially were full of kindness and pity. + +However, the two culprits advanced, and as they approached their faces +became visible. Peppino was a handsome young man of four or +five-and-twenty, bronzed by the sun; he carried his head erect, and +seemed on the watch to see on which side his liberator would appear. +Andrea was short and fat; his visage, marked with brutal cruelty, did +not indicate age; he might be thirty. In prison he had suffered his +beard to grow; his head fell on his shoulder, his legs bent beneath +him, and his movements were apparently automatic and unconscious. + +“I thought,” said Franz to the count, “that you told me there would be +but one execution.” + +“I told you true,” replied he coldly. + +“And yet here are two culprits.” + +“Yes; but only one of these two is about to die; the other has many +years to live.” + +“If the pardon is to come, there is no time to lose.” + +“And see, here it is,” said the count. At the moment when Peppino +reached the foot of the _mandaïa_, a priest arrived in some haste, +forced his way through the soldiers, and, advancing to the chief of the +brotherhood, gave him a folded paper. The piercing eye of Peppino had +noticed all. The chief took the paper, unfolded it, and, raising his +hand, “Heaven be praised, and his Holiness also,” said he in a loud +voice; “here is a pardon for one of the prisoners!” + +“A pardon!” cried the people with one voice; “a pardon!” + +At this cry Andrea raised his head. + +“Pardon for whom?” cried he. + +Peppino remained breathless. + +“A pardon for Peppino, called Rocca Priori,” said the principal friar. +And he passed the paper to the officer commanding the carbineers, who +read and returned it to him. + +“For Peppino!” cried Andrea, who seemed roused from the torpor in which +he had been plunged. “Why for him and not for me? We ought to die +together. I was promised he should die with me. You have no right to +put me to death alone. I will not die alone—I will not!” + +And he broke from the priests struggling and raving like a wild beast, +and striving desperately to break the cords that bound his hands. The +executioner made a sign, and his two assistants leaped from the +scaffold and seized him. + +“What is going on?” asked Franz of the count; for, as all the talk was +in the Roman dialect, he had not perfectly understood it. + +“Do you not see?” returned the count, “that this human creature who is +about to die is furious that his fellow-sufferer does not perish with +him? and, were he able, he would rather tear him to pieces with his +teeth and nails than let him enjoy the life he himself is about to be +deprived of. Oh, man, man—race of crocodiles,” cried the count, +extending his clenched hands towards the crowd, “how well do I +recognize you there, and that at all times you are worthy of +yourselves!” + +Meanwhile Andrea and the two executioners were struggling on the +ground, and he kept exclaiming, “He ought to die!—he shall die!—I will +not die alone!” + +“Look, look,” cried the count, seizing the young men’s hands; “look, +for on my soul it is curious. Here is a man who had resigned himself to +his fate, who was going to the scaffold to die—like a coward, it is +true, but he was about to die without resistance. Do you know what gave +him strength? do you know what consoled him? It was, that another +partook of his punishment—that another partook of his anguish—that +another was to die before him! Lead two sheep to the butcher’s, two +oxen to the slaughterhouse, and make one of them understand that his +companion will not die; the sheep will bleat for pleasure, the ox will +bellow with joy. But man—man, whom God created in his own image—man, +upon whom God has laid his first, his sole commandment, to love his +neighbor—man, to whom God has given a voice to express his +thoughts—what is his first cry when he hears his fellow-man is saved? A +blasphemy. Honor to man, this masterpiece of nature, this king of the +creation!” + +And the count burst into a laugh; a terrible laugh, that showed he must +have suffered horribly to be able thus to laugh. + +However, the struggle still continued, and it was dreadful to witness. +The two assistants carried Andrea up to the scaffold; the people all +took part against Andrea, and twenty thousand voices cried, “Put him to +death! put him to death!” + +Franz sprang back, but the count seized his arm, and held him before +the window. + +“What are you doing?” said he. “Do you pity him? If you heard the cry +of ‘Mad dog!’ you would take your gun—you would unhesitatingly shoot +the poor beast, who, after all, was only guilty of having been bitten +by another dog. And yet you pity a man who, without being bitten by one +of his race, has yet murdered his benefactor; and who, now unable to +kill anyone, because his hands are bound, wishes to see his companion +in captivity perish. No, no—look, look!” + +20172m + + + +The recommendation was needless. Franz was fascinated by the horrible +spectacle. + +The two assistants had borne Andrea to the scaffold, and there, in +spite of his struggles, his bites, and his cries, had forced him to his +knees. During this time the executioner had raised his mace, and signed +to them to get out of the way; the criminal strove to rise, but, ere he +had time, the mace fell on his left temple. A dull and heavy sound was +heard, and the man dropped like an ox on his face, and then turned over +on his back. + +The executioner let fall his mace, drew his knife, and with one stroke +opened his throat, and mounting on his stomach, stamped violently on it +with his feet. At every stroke a jet of blood sprang from the wound. + +This time Franz could contain himself no longer, but sank, half +fainting, into a seat. + +Albert, with his eyes closed, was standing grasping the +window-curtains. + +The count was erect and triumphant, like the Avenging Angel! + + + + Chapter 36. The Carnival at Rome + +When Franz recovered his senses, he saw Albert drinking a glass of +water, of which, to judge from his pallor, he stood in great need; and +the count, who was assuming his masquerade costume. He glanced +mechanically towards the piazza—the scene was wholly changed; scaffold, +executioners, victims, all had disappeared; only the people remained, +full of noise and excitement. The bell of Monte Citorio, which only +sounds on the pope’s decease and the opening of the Carnival, was +ringing a joyous peal. + +“Well,” asked he of the count, “what has, then, happened?” + +“Nothing,” replied the count; “only, as you see, the Carnival has +commenced. Make haste and dress yourself.” + +“In fact,” said Franz, “this horrible scene has passed away like a +dream.” + +“It is but a dream, a nightmare, that has disturbed you.” + +“Yes, that I have suffered; but the culprit?” + +“That is a dream also; only he has remained asleep, while you have +awakened; and who knows which of you is the most fortunate?” + +“But Peppino—what has become of him?” + +“Peppino is a lad of sense, who, unlike most men, who are happy in +proportion as they are noticed, was delighted to see that the general +attention was directed towards his companion. He profited by this +distraction to slip away among the crowd, without even thanking the +worthy priests who accompanied him. Decidedly man is an ungrateful and +egotistical animal. But dress yourself; see, M. de Morcerf sets you the +example.” + +Albert was drawing on the satin pantaloon over his black trousers and +varnished boots. + +“Well, Albert,” said Franz, “do you feel much inclined to join the +revels? Come, answer frankly.” + +“_Ma foi_, no,” returned Albert. “But I am really glad to have seen +such a sight; and I understand what the count said—that when you have +once habituated yourself to a similar spectacle, it is the only one +that causes you any emotion.” + +20175m + + + +“Without reflecting that this is the only moment in which you can study +character,” said the count; “on the steps of the scaffold death tears +off the mask that has been worn through life, and the real visage is +disclosed. It must be allowed that Andrea was not very handsome, the +hideous scoundrel! Come, dress yourselves, gentlemen, dress +yourselves.” + +Franz felt it would be ridiculous not to follow his two companions’ +example. He assumed his costume, and fastened on the mask that scarcely +equalled the pallor of his own face. Their toilet finished, they +descended; the carriage awaited them at the door, filled with +sweetmeats and bouquets. They fell into the line of carriages. + +It is difficult to form an idea of the perfect change that had taken +place. Instead of the spectacle of gloomy and silent death, the Piazza +del Popolo presented a spectacle of gay and noisy mirth and revelry. A +crowd of masks flowed in from all sides, emerging from the doors, +descending from the windows. From every street and every corner drove +carriages filled with clowns, harlequins, dominoes, mummers, +pantomimists, Transteverins, knights, and peasants, screaming, +fighting, gesticulating, throwing eggs filled with flour, confetti, +nosegays, attacking, with their sarcasms and their missiles, friends +and foes, companions and strangers, indiscriminately, and no one took +offence, or did anything but laugh. + +Franz and Albert were like men who, to drive away a violent sorrow, +have recourse to wine, and who, as they drink and become intoxicated, +feel a thick veil drawn between the past and the present. They saw, or +rather continued to see, the image of what they had witnessed; but +little by little the general vertigo seized them, and they felt +themselves obliged to take part in the noise and confusion. + +A handful of confetti that came from a neighboring carriage, and which, +while it covered Morcerf and his two companions with dust, pricked his +neck and that portion of his face uncovered by his mask like a hundred +pins, incited him to join in the general combat, in which all the masks +around him were engaged. He rose in his turn, and seizing handfuls of +confetti and sweetmeats, with which the carriage was filled, cast them +with all the force and skill he was master of. + +20177m + + + +The strife had fairly begun, and the recollection of what they had seen +half an hour before was gradually effaced from the young men’s minds, +so much were they occupied by the gay and glittering procession they +now beheld. + +As for the Count of Monte Cristo, he had never for an instant shown any +appearance of having been moved. Imagine the large and splendid Corso, +bordered from one end to the other with lofty palaces, with their +balconies hung with carpets, and their windows with flags. At these +balconies are three hundred thousand spectators—Romans, Italians, +strangers from all parts of the world, the united aristocracy of birth, +wealth, and genius. Lovely women, yielding to the influence of the +scene, bend over their balconies, or lean from their windows, and +shower down confetti, which are returned by bouquets; the air seems +darkened with the falling confetti and flying flowers. In the streets +the lively crowd is dressed in the most fantastic costumes—gigantic +cabbages walk gravely about, buffaloes’ heads bellow from men’s +shoulders, dogs walk on their hind legs; in the midst of all this a +mask is lifted, and, as in Callot’s Temptation of St. Anthony, a lovely +face is exhibited, which we would fain follow, but from which we are +separated by troops of fiends. This will give a faint idea of the +Carnival at Rome. + +At the second turn, the count stopped the carriage, and requested +permission to withdraw, leaving the vehicle at their disposal. Franz +looked up—they were opposite the Rospoli Palace. At the centre window, +the one hung with white damask with a red cross, was a blue domino, +beneath which Franz’s imagination easily pictured the beautiful Greek +of the Argentina. + +“Gentlemen,” said the count, springing out, “when you are tired of +being actors, and wish to become spectators of this scene, you know you +have places at my windows. In the meantime, dispose of my coachman, my +carriage, and my servants.” + +We have forgotten to mention, that the count’s coachman was attired in +a bear-skin, exactly resembling Odry’s in _The Bear and the Pasha_; and +the two footmen behind were dressed up as green monkeys, with spring +masks, with which they made grimaces at everyone who passed. + +Franz thanked the count for his attention. As for Albert, he was busily +occupied throwing bouquets at a carriage full of Roman peasants that +was passing near him. Unfortunately for him, the line of carriages +moved on again, and while he descended the Piazza del Popolo, the other +ascended towards the Palazzo di Venezia. + +“Ah, my dear fellow,” said he to Franz; “you did not see?” + +“What?” + +“There,—that calash filled with Roman peasants.” + +“No.” + +“Well, I am convinced they are all charming women.” + +“How unfortunate that you were masked, Albert,” said Franz; “here was +an opportunity of making up for past disappointments.” + +“Oh,” replied he, half laughing, half serious; “I hope the Carnival +will not pass without some amends in one shape or the other.” + +But, in spite of Albert’s hope, the day passed unmarked by any +incident, excepting two or three encounters with the carriage full of +Roman peasants. At one of these encounters, accidentally or purposely, +Albert’s mask fell off. He instantly rose and cast the remainder of the +bouquets into the carriage. Doubtless one of the charming females +Albert had detected beneath their coquettish disguise was touched by +his gallantry; for, as the carriage of the two friends passed her, she +threw a bunch of violets. Albert seized it, and as Franz had no reason +to suppose it was meant for him, he suffered Albert to retain it. +Albert placed it in his button-hole, and the carriage went triumphantly +on. + +“Well,” said Franz to him; “there is the beginning of an adventure.” + +“Laugh if you please—I really think so. So I will not abandon this +bouquet.” + +“_Pardieu_,” returned Franz, laughing, “in token of your ingratitude.” + +The jest, however, soon appeared to become earnest; for when Albert and +Franz again encountered the carriage with the _contadini_, the one who +had thrown the violets to Albert, clapped her hands when she beheld +them in his button-hole. + +“Bravo, bravo,” said Franz; “things go wonderfully. Shall I leave you? +Perhaps you would prefer being alone?” + +“No,” replied he; “I will not be caught like a fool at a first +disclosure by a rendezvous under the clock, as they say at the +opera-balls. If the fair peasant wishes to carry matters any further, +we shall find her, or rather, she will find us tomorrow; then she will +give me some sign or other, and I shall know what I have to do.” + +“On my word,” said Franz, “you are as wise as Nestor and prudent as +Ulysses, and your fair Circe must be very skilful or very powerful if +she succeed in changing you into a beast of any kind.” + +Albert was right; the fair unknown had resolved, doubtless, to carry +the intrigue no farther; for although the young men made several more +turns, they did not again see the calash, which had turned up one of +the neighboring streets. Then they returned to the Rospoli Palace; but +the count and the blue domino had also disappeared; the two windows, +hung with yellow damask, were still occupied by the persons whom the +count had invited. + +At this moment the same bell that had proclaimed the beginning of the +mascherata sounded the retreat. The file on the Corso broke the line, +and in a second all the carriages had disappeared. Franz and Albert +were opposite the Via delle Muratte; the coachman, without saying a +word, drove up it, passed along the Piazza di Spagna and the Rospoli +Palace and stopped at the door of the hotel. Signor Pastrini came to +the door to receive his guests. + +Franz hastened to inquire after the count, and to express regret that +he had not returned in sufficient time; but Pastrini reassured him by +saying that the Count of Monte Cristo had ordered a second carriage for +himself, and that it had gone at four o’clock to fetch him from the +Rospoli Palace. + +The count had, moreover, charged him to offer the two friends the key +of his box at the Argentina. Franz questioned Albert as to his +intentions; but Albert had great projects to put into execution before +going to the theatre; and instead of making any answer, he inquired if +Signor Pastrini could procure him a tailor. + +“A tailor,” said the host; “and for what?” + +“To make us between now and tomorrow two Roman peasant costumes,” +returned Albert. + +The host shook his head. + +“To make you two costumes between now and tomorrow? I ask your +excellencies’ pardon, but this is quite a French demand; for the next +week you will not find a single tailor who would consent to sew six +buttons on a waistcoat if you paid him a crown a piece for each +button.” + +“Then I must give up the idea?” + +“No; we have them ready-made. Leave all to me; and tomorrow, when you +awake, you shall find a collection of costumes with which you will be +satisfied.” + +“My dear Albert,” said Franz, “leave all to our host; he has already +proved himself full of resources; let us dine quietly, and afterwards +go and see _l’Italienne à Alger!_ + +“Agreed,” returned Albert; “but remember, Signor Pastrini, that both my +friend and myself attach the greatest importance to having tomorrow the +costumes we have asked for.” + +The host again assured them they might rely on him, and that their +wishes should be attended to; upon which Franz and Albert mounted to +their apartments, and proceeded to disencumber themselves of their +costumes. Albert, as he took off his dress, carefully preserved the +bunch of violets; it was his token reserved for the morrow. + +The two friends sat down to table; but they could not refrain from +remarking the difference between the Count of Monte Cristo’s table and +that of Signor Pastrini. Truth compelled Franz, in spite of the dislike +he seemed to have taken to the count, to confess that the advantage was +not on Pastrini’s side. During dessert, the servant inquired at what +time they wished for the carriage. Albert and Franz looked at each +other, fearing really to abuse the count’s kindness. The servant +understood them. + +“His excellency the Count of Monte Cristo had,” he said, “given +positive orders that the carriage was to remain at their lordships’ +orders all day, and they could therefore dispose of it without fear of +indiscretion.” + +They resolved to profit by the count’s courtesy, and ordered the horses +to be harnessed, while they substituted evening dress for that which +they had on, and which was somewhat the worse for the numerous combats +they had sustained. + +20181m + + + +This precaution taken, they went to the theatre, and installed +themselves in the count’s box. During the first act, the Countess G—— +entered. Her first look was at the box where she had seen the count the +previous evening, so that she perceived Franz and Albert in the place +of the very person concerning whom she had expressed so strange an +opinion to Franz. Her opera-glass was so fixedly directed towards them, +that Franz saw it would be cruel not to satisfy her curiosity; and, +availing himself of one of the privileges of the spectators of the +Italian theatres, who use their boxes to hold receptions, the two +friends went to pay their respects to the countess. Scarcely had they +entered, when she motioned to Franz to assume the seat of honor. +Albert, in his turn, sat behind. + +“Well,” said she, hardly giving Franz time to sit down, “it seems you +have nothing better to do than to make the acquaintance of this new +Lord Ruthven, and you are already the best friends in the world.” + +“Without being so far advanced as that, my dear countess,” returned +Franz, “I cannot deny that we have abused his good nature all day.” + +“All day?” + +“Yes; this morning we breakfasted with him; we rode in his carriage all +day, and now we have taken possession of his box.” + +“You know him, then?” + +“Yes, and no.” + +“How so?” + +“It is a long story.” + +“Tell it to me.” + +“It would frighten you too much.” + +“So much the more reason.” + +“At least wait until the story has a conclusion.” + +“Very well; I prefer complete histories; but tell me how you made his +acquaintance? Did anyone introduce you to him?” + +“No; it was he who introduced himself to us.” + +“When?” + +“Last night, after we left you.” + +“Through what medium?” + +“The very prosaic one of our landlord.” + +“He is staying, then, at the Hôtel de Londres with you?” + +“Not only in the same hotel, but on the same floor.” + +“What is his name; for, of course, you know?” + +“The Count of Monte Cristo.” + +“That is not a family name?” + +“No, it is the name of the island he has purchased.” + +“And he is a count?” + +“A Tuscan count.” + +“Well, we must put up with that,” said the countess, who was herself +from one of the oldest Venetian families. “What sort of a man is he?” + +“Ask the Vicomte de Morcerf.” + +“You hear, M. de Morcerf, I am referred to you,” said the countess. + +“We should be very hard to please, madam,” returned Albert, “did we not +think him delightful. A friend of ten years’ standing could not have +done more for us, or with a more perfect courtesy.” + +“Come,” observed the countess, smiling, “I see my vampire is only some +millionaire, who has taken the appearance of Lara in order to avoid +being confounded with M. de Rothschild; and you have seen her?” + +“Her?” + +20183m + + + +“The beautiful Greek of yesterday.” + +“No; we heard, I think, the sound of her _guzla_, but she remained +perfectly invisible.” + +“When you say invisible,” interrupted Albert, “it is only to keep up +the mystery; for whom do you take the blue domino at the window with +the white curtains?” + +“Where was this window with white hangings?” asked the countess. + +“At the Rospoli Palace.” + +“The count had three windows at the Rospoli Palace?” + +“Yes. Did you pass through the Corso?” + +“Yes.” + +“Well, did you notice two windows hung with yellow damask, and one with +white damask with a red cross? Those were the count’s windows.” + +“Why, he must be a nabob. Do you know what those three windows were +worth?” + +“Two or three hundred Roman crowns?” + +“Two or three thousand.” + +“The deuce!” + +“Does his island produce him such a revenue?” + +“It does not bring him a bajocco.” + +“Then why did he purchase it?” + +“For a whim.” + +“He is an original, then?” + +“In reality,” observed Albert, “he seemed to me somewhat eccentric; +were he at Paris, and a frequenter of the theatres, I should say he was +a poor devil literally mad. This morning he made two or three exits +worthy of Didier or Anthony.” + +At this moment a fresh visitor entered, and, according to custom, Franz +gave up his seat to him. This circumstance had, moreover, the effect of +changing the conversation; an hour afterwards the two friends returned +to their hotel. + +Signor Pastrini had already set about procuring their disguises for the +morrow; and he assured them that they would be perfectly satisfied. The +next morning, at nine o’clock, he entered Franz’s room, followed by a +tailor, who had eight or ten Roman peasant costumes on his arm; they +selected two exactly alike, and charged the tailor to sew on each of +their hats about twenty yards of ribbon, and to procure them two of the +long silk sashes of different colors with which the lower orders +decorate themselves on fête days. + +Albert was impatient to see how he looked in his new dress—a jacket and +breeches of blue velvet, silk stockings with clocks, shoes with +buckles, and a silk waistcoat. This picturesque attire set him off to +great advantage; and when he had bound the scarf around his waist, and +when his hat, placed coquettishly on one side, let fall on his shoulder +a stream of ribbons, Franz was forced to confess that costume has much +to do with the physical superiority we accord to certain nations. The +Turks used to be so picturesque with their long and flowing robes, but +are they not now hideous with their blue frocks buttoned up to the +chin, and their red caps, which make them look like a bottle of wine +with a red seal? Franz complimented Albert, who looked at himself in +the glass with an unequivocal smile of satisfaction. They were thus +engaged when the Count of Monte Cristo entered. + +20185m + + + +“Gentlemen,” said he, “although a companion is agreeable, perfect +freedom is sometimes still more agreeable. I come to say that today, +and for the remainder of the Carnival, I leave the carriage entirely at +your disposal. The host will tell you I have three or four more, so +that you will not inconvenience me in any way. Make use of it, I pray +you, for your pleasure or your business.” + +The young men wished to decline, but they could find no good reason for +refusing an offer which was so agreeable to them. The Count of Monte +Cristo remained a quarter of an hour with them, conversing on all +subjects with the greatest ease. He was, as we have already said, +perfectly well acquainted with the literature of all countries. A +glance at the walls of his salon proved to Franz and Albert that he was +a connoisseur of pictures. A few words he let fall showed them that he +was no stranger to the sciences, and he seemed much occupied with +chemistry. The two friends did not venture to return the count the +breakfast he had given them; it would have been too absurd to offer him +in exchange for his excellent table the very inferior one of Signor +Pastrini. They told him so frankly, and he received their excuses with +the air of a man who appreciated their delicacy. Albert was charmed +with the count’s manners, and he was only prevented from recognizing +him for a perfect gentleman by reason of his varied knowledge. + +The permission to do what he liked with the carriage pleased him above +all, for the fair peasants had appeared in a most elegant carriage the +preceding evening, and Albert was not sorry to be upon an equal footing +with them. At half-past one they descended, the coachman and footman +had put on their livery over their disguises, which gave them a more +ridiculous appearance than ever, and which gained them the applause of +Franz and Albert. Albert had fastened the faded bunch of violets to his +button-hole. At the first sound of the bell they hastened into the +Corso by the Via Vittoria. + +At the second turn, a bunch of fresh violets, thrown from a carriage +filled with harlequins, indicated to Albert that, like himself and his +friend, the peasants had changed their costume also; and whether it was +the result of chance, or whether a similar feeling had possessed them +both, while he had donned their costume, they had assumed his. + +Albert placed the fresh bouquet in his button-hole, but he kept the +faded one in his hand; and when he again met the calash, he raised it +to his lips, an action which seemed greatly to amuse not only the fair +lady who had thrown it, but her joyous companions also. The day was as +gay as the preceding one, perhaps even more animated and noisy; the +count appeared for an instant at his window, but when they again passed +he had disappeared. It is almost needless to say that the flirtation +between Albert and the fair peasant continued all day. + +In the evening, on his return, Franz found a letter from the embassy, +informing him that he would have the honor of being received by his +holiness the next day. At each previous visit he had made to Rome, he +had solicited and obtained the same favor; and incited as much by a +religious feeling as by gratitude, he was unwilling to quit the capital +of the Christian world without laying his respectful homage at the feet +of one of St. Peter’s successors who has set the rare example of all +the virtues. He did not then think of the Carnival, for in spite of his +condescension and touching kindness, one cannot incline one’s self +without awe before the venerable and noble old man called Gregory XVI. + +On his return from the Vatican, Franz carefully avoided the Corso; he +brought away with him a treasure of pious thoughts, to which the mad +gayety of the maskers would have been profanation. + +At ten minutes past five Albert entered overjoyed. The harlequin had +reassumed her peasant’s costume, and as she passed she raised her mask. +She was charming. Franz congratulated Albert, who received his +congratulations with the air of a man conscious that they are merited. +He had recognized by certain unmistakable signs, that his fair +_incognita_ belonged to the aristocracy. He had made up his mind to +write to her the next day. + +Franz remarked, while he gave these details, that Albert seemed to have +something to ask of him, but that he was unwilling to ask it. He +insisted upon it, declaring beforehand that he was willing to make any +sacrifice the other wished. + +Albert let himself be pressed just as long as friendship required, and +then avowed to Franz that he would do him a great favor by allowing him +to occupy the carriage alone the next day. Albert attributed to Franz’s +absence the extreme kindness of the fair peasant in raising her mask. +Franz was not sufficiently egotistical to stop Albert in the middle of +an adventure that promised to prove so agreeable to his curiosity and +so flattering to his vanity. He felt assured that the perfect +indiscretion of his friend would duly inform him of all that happened; +and as, during three years that he had travelled all over Italy, a +similar piece of good fortune had never fallen to his share, Franz was +by no means sorry to learn how to act on such an occasion. He therefore +promised Albert that he would content himself the morrow with +witnessing the Carnival from the windows of the Rospoli Palace. + +The next morning he saw Albert pass and repass, holding an enormous +bouquet, which he doubtless meant to make the bearer of his amorous +epistle. This belief was changed into certainty when Franz saw the +bouquet (conspicuous by a circle of white camellias) in the hand of a +charming harlequin dressed in rose-colored satin. + +The evening was no longer joy, but delirium. Albert nothing doubted but +that the fair unknown would reply in the same manner. Franz anticipated +his wishes by saying that the noise fatigued him, and that he should +pass the next day in writing and looking over his journal. Albert was +not deceived, for the next evening Franz saw him enter triumphantly +shaking a folded paper which he held by one corner. + +“Well,” said he, “was I mistaken?” + +“She has answered you!” cried Franz. + +“Read.” + +This word was pronounced in a manner impossible to describe. Franz took +the letter, and read: + +“Tuesday evening, at seven o’clock, descend from your carriage opposite +the Via dei Pontefici, and follow the Roman peasant who snatches your +torch from you. When you arrive at the first step of the church of San +Giacomo, be sure to fasten a knot of rose-colored ribbons to the +shoulder of your harlequin costume, in order that you may be +recognized. Until then you will not see me. —Constancy and Discretion.” + +“Well,” asked he, when Franz had finished, “what do you think of that?” + +“I think that the adventure is assuming a very agreeable appearance.” + +“I think so, also,” replied Albert; “and I very much fear you will go +alone to the Duke of Bracciano’s ball.” + +Franz and Albert had received that morning an invitation from the +celebrated Roman banker. + +“Take care, Albert,” said Franz. “All the nobility of Rome will be +present, and if your fair _incognita_ belong to the higher class of +society, she must go there.” + +“Whether she goes there or not, my opinion is still the same,” returned +Albert. “You have read the letter?” + +“Yes.” + +“You know how imperfectly the women of the _mezzo cito_ are educated in +Italy?” (This is the name of the lower class.) + +“Yes.” + +“Well, read the letter again. Look at the writing, and find if you can, +any blemish in the language or orthography.” The writing was, in +reality, charming, and the orthography irreproachable. + +“You are born to good fortune,” said Franz, as he returned the letter. + +“Laugh as much as you will,” replied Albert, “I am in love.” + +“You alarm me,” cried Franz. “I see that I shall not only go alone to +the Duke of Bracciano’s, but also return to Florence alone.” + +“If my unknown be as amiable as she is beautiful,” said Albert, “I +shall fix myself at Rome for six weeks, at least. I adore Rome, and I +have always had a great taste for archæology.” + +20189m + + + +“Come, two or three more such adventures, and I do not despair of +seeing you a member of the Academy.” + +Doubtless Albert was about to discuss seriously his right to the +academic chair when they were informed that dinner was ready. Albert’s +love had not taken away his appetite. He hastened with Franz to seat +himself, free to recommence the discussion after dinner. After dinner, +the Count of Monte Cristo was announced. They had not seen him for two +days. Signor Pastrini informed them that business had called him to +Civita Vecchia. He had started the previous evening, and had only +returned an hour since. He was charming. Whether he kept a watch over +himself, or whether by accident he did not sound the acrimonious chords +that in other circumstances had been touched, he was tonight like +everybody else. + +The man was an enigma to Franz. The count must feel sure that Franz +recognized him; and yet he had not let fall a single word indicating +any previous acquaintance between them. On his side, however great +Franz’s desire was to allude to their former interview, the fear of +being disagreeable to the man who had loaded him and his friend with +kindness prevented him from mentioning it. + +The count had learned that the two friends had sent to secure a box at +the Argentina Theatre, and were told they were all let. In consequence, +he brought them the key of his own—at least such was the apparent +motive of his visit. Franz and Albert made some difficulty, alleging +their fear of depriving him of it; but the count replied that, as he +was going to the Palli Theatre, the box at the Argentina Theatre would +be lost if they did not profit by it. This assurance determined the two +friends to accept it. + +Franz had by degrees become accustomed to the count’s pallor, which had +so forcibly struck him at their first meeting. He could not refrain +from admiring the severe beauty of his features, the only defect, or +rather the principal quality of which was the pallor. Truly, a Byronic +hero! Franz could not, we will not say see him, but even think of him +without imagining his stern head upon Manfred’s shoulders, or beneath +Lara’s helmet. His forehead was marked with the line that indicates the +constant presence of bitter thoughts; he had the fiery eyes that seem +to penetrate to the very soul, and the haughty and disdainful upper lip +that gives to the words it utters a peculiar character that impresses +them on the minds of those to whom they are addressed. + +The count was no longer young. He was at least forty; and yet it was +easy to understand that he was formed to rule the young men with whom +he associated at present. And, to complete his resemblance with the +fantastic heroes of the English poet, the count seemed to have the +power of fascination. Albert was constantly expatiating on their good +fortune in meeting such a man. Franz was less enthusiastic; but the +count exercised over him also the ascendency a strong mind always +acquires over a mind less domineering. He thought several times of the +project the count had of visiting Paris; and he had no doubt but that, +with his eccentric character, his characteristic face, and his colossal +fortune, he would produce a great effect there. And yet he did not wish +to be at Paris when the count was there. + +The evening passed as evenings mostly pass at Italian theatres; that +is, not in listening to the music, but in paying visits and conversing. +The Countess G—— wished to revive the subject of the count, but Franz +announced he had something far newer to tell her, and, in spite of +Albert’s demonstrations of false modesty, he informed the countess of +the great event which had preoccupied them for the last three days. As +similar intrigues are not uncommon in Italy, if we may credit +travellers, the comtess did not manifest the least incredulity, but +congratulated Albert on his success. They promised, upon separating, to +meet at the Duke of Bracciano’s ball, to which all Rome was invited. + +The heroine of the bouquet kept her word; she gave Albert no sign of +her existence the morrow or the day after. + +At length Tuesday came, the last and most tumultuous day of the +Carnival. On Tuesday, the theatres open at ten o’clock in the morning, +as Lent begins after eight at night. On Tuesday, all those who through +want of money, time, or enthusiasm, have not been to see the Carnival +before, mingle in the gayety, and contribute to the noise and +excitement. From two o’clock till five Franz and Albert followed in the +_fête_, exchanging handfuls of _confetti_ with the other carriages and +the pedestrians, who crowded amongst the horses’ feet and the carriage +wheels without a single accident, a single dispute, or a single fight. + +The _fêtes_ are veritable pleasure days to the Italians. The author of +this history, who has resided five or six years in Italy, does not +recollect to have ever seen a ceremony interrupted by one of those +events so common in other countries. Albert was triumphant in his +harlequin costume. A knot of rose-colored ribbons fell from his +shoulder almost to the ground. In order that there might be no +confusion, Franz wore his peasant’s costume. + +As the day advanced, the tumult became greater. There was not on the +pavement, in the carriages, at the windows, a single tongue that was +silent, a single arm that did not move. It was a human storm, made up +of a thunder of cries, and a hail of sweetmeats, flowers, eggs, +oranges, and nosegays. + +At three o’clock the sound of fireworks, let off on the Piazza del +Popolo and the Piazza di Venezia (heard with difficulty amid the din +and confusion) announced that the races were about to begin. + +The races, like the _moccoli_, are one of the episodes peculiar to the +last days of the Carnival. At the sound of the fireworks the carriages +instantly broke ranks, and retired by the adjacent streets. All these +evolutions are executed with an inconceivable address and marvellous +rapidity, without the police interfering in the matter. The pedestrians +ranged themselves against the walls; then the trampling of horses and +the clashing of steel were heard. A detachment of carbineers, fifteen +abreast, galloped up the Corso in order to clear it for the _barberi_. +When the detachment arrived at the Piazza di Venezia, a second volley +of fireworks was discharged, to announce that the street was clear. + +Almost instantly, in the midst of a tremendous and general outcry, +seven or eight horses, excited by the shouts of three hundred thousand +spectators, passed by like lightning. Then the Castle of Saint Angelo +fired three cannon to indicate that number three had won. + +Immediately, without any other signal, the carriages moved on, flowing +on towards the Corso, down all the streets, like torrents pent up for a +while, which again flow into the parent river; and the immense stream +again continued its course between its two granite banks. + +A new source of noise and movement was added to the crowd. The sellers +of _moccoletti_ entered on the scene. The _moccoli_, or _moccoletti_, +are candles which vary in size from the pascal taper to the rushlight, +and which give to each actor in the great final scene of the Carnival +two very serious problems to grapple with,—first, how to keep his own +_moccoletto_ alight; and secondly, how to extinguish the _moccoletti_ +of others. The _moccoletto_ is like life: man has found but one means +of transmitting it, and that one comes from God. But he has discovered +a thousand means of taking it away, and the devil has somewhat aided +him. The _moccoletto_ is kindled by approaching it to a light. But who +can describe the thousand means of extinguishing the _moccoletto_?—the +gigantic bellows, the monstrous extinguishers, the superhuman fans. +Everyone hastened to purchase _moccoletti_—Franz and Albert among the +rest. + +The night was rapidly approaching; and already, at the cry of +“_Moccoletti_!” repeated by the shrill voices of a thousand vendors, +two or three stars began to burn among the crowd. It was a signal. At +the end of ten minutes fifty thousand lights glittered, descending from +the Palazzo di Venezia to the Piazza del Popolo, and mounting from the +Piazza del Popolo to the Palazzo di Venezia. It seemed like the _fête_ +of Jack-o’-lanterns. + +It is impossible to form any idea of it without having seen it. Suppose +that all the stars had descended from the sky and mingled in a wild +dance on the face of the earth; the whole accompanied by cries that +were never heard in any other part of the world. The _facchino_ follows +the prince, the Transteverin the citizen, everyone blowing, +extinguishing, relighting. Had old Æolus appeared at this moment, he +would have been proclaimed king of the _moccoli_, and Aquilo the +heir-presumptive to the throne. + +This battle of folly and flame continued for two hours; the Corso was +light as day; the features of the spectators on the third and fourth +stories were visible. + +Every five minutes Albert took out his watch; at length it pointed to +seven. The two friends were in the Via dei Pontefici. Albert sprang +out, bearing his _moccoletto_ in his hand. Two or three masks strove to +knock his _moccoletto_ out of his hand; but Albert, a first-rate +pugilist, sent them rolling in the street, one after the other, and +continued his course towards the church of San Giacomo. + +The steps were crowded with masks, who strove to snatch each other’s +torches. Franz followed Albert with his eyes, and saw him mount the +first step. + +Instantly a mask, wearing the well-known costume of a peasant woman, +snatched his _moccoletto_ from him without his offering any resistance. +Franz was too far off to hear what they said; but, without doubt, +nothing hostile passed, for he saw Albert disappear arm-in-arm with the +peasant girl. He watched them pass through the crowd for some time, but +at length he lost sight of them in the Via Macello. + +Suddenly the bell that gives the signal for the end of the Carnival +sounded, and at the same instant all the _moccoletti_ were extinguished +as if by enchantment. It seemed as though one immense blast of the wind +had extinguished everyone. + +Franz found himself in utter darkness. No sound was audible save that +of the carriages that were carrying the maskers home; nothing was +visible save a few lights that burnt behind the windows. + +The Carnival was over. + +20193m + + + + + Chapter 37. The Catacombs of Saint Sebastian + +In his whole life, perhaps, Franz had never before experienced so +sudden an impression, so rapid a transition from gayety to sadness, as +in this moment. It seemed as though Rome, under the magic breath of +some demon of the night, had suddenly changed into a vast tomb. By a +chance, which added yet more to the intensity of the darkness, the +moon, which was on the wane, did not rise until eleven o’clock, and the +streets which the young man traversed were plunged in the deepest +obscurity. + +The distance was short, and at the end of ten minutes his carriage, or +rather the count’s, stopped before the Hôtel de Londres. + +Dinner was waiting, but as Albert had told him that he should not +return so soon, Franz sat down without him. Signor Pastrini, who had +been accustomed to see them dine together, inquired into the cause of +his absence, but Franz merely replied that Albert had received on the +previous evening an invitation which he had accepted. + +The sudden extinction of the _moccoletti_, the darkness which had +replaced the light, and the silence which had succeeded the turmoil, +had left in Franz’s mind a certain depression which was not free from +uneasiness. He therefore dined very silently, in spite of the officious +attention of his host, who presented himself two or three times to +inquire if he wanted anything. + +Franz resolved to wait for Albert as late as possible. He ordered the +carriage, therefore, for eleven o’clock, desiring Signor Pastrini to +inform him the moment that Albert returned to the hotel. + +At eleven o’clock Albert had not come back. Franz dressed himself, and +went out, telling his host that he was going to pass the night at the +Duke of Bracciano’s. The house of the Duke of Bracciano is one of the +most delightful in Rome, the duchess, one of the last heiresses of the +Colonnas, does its honors with the most consummate grace, and thus +their _fêtes_ have a European celebrity. + +Franz and Albert had brought to Rome letters of introduction to them, +and their first question on his arrival was to inquire the whereabouts +of his travelling companion. Franz replied that he had left him at the +moment they were about to extinguish the _moccoli_, and that he had +lost sight of him in the Via Macello. + +“Then he has not returned?” said the duke. + +“I waited for him until this hour,” replied Franz. + +“And do you know whither he went?” + +“No, not precisely; however, I think it was something very like a +rendezvous.” + +“_Diavolo!_” said the duke, “this is a bad day, or rather a bad night, +to be out late; is it not, countess?” + +These words were addressed to the Countess G——, who had just arrived, +and was leaning on the arm of Signor Torlonia, the duke’s brother. + +“I think, on the contrary, that it is a charming night,” replied the +countess, “and those who are here will complain of but one thing, that +of its too rapid flight.” + +“I am not speaking,” said the duke with a smile, “of the persons who +are here; the men run no other danger than that of falling in love with +you, and the women of falling ill of jealousy at seeing you so lovely; +I meant persons who were out in the streets of Rome.” + +“Ah,” asked the countess, “who is out in the streets of Rome at this +hour, unless it be to go to a ball?” + +“Our friend, Albert de Morcerf, countess, whom I left in pursuit of his +unknown about seven o’clock this evening,” said Franz, “and whom I have +not seen since.” + +“And don’t you know where he is?” + +“Not at all.” + +“Is he armed?” + +“He is in masquerade.” + +“You should not have allowed him to go,” said the duke to Franz; “you, +who know Rome better than he does.” + +“You might as well have tried to stop number three of the _barberi_, +who gained the prize in the race today,” replied Franz; “and then +moreover, what could happen to him?” + +“Who can tell? The night is gloomy, and the Tiber is very near the Via +Macello.” Franz felt a shudder run through his veins at observing that +the feeling of the duke and the countess was so much in unison with his +own personal disquietude. + +“I informed them at the hotel that I had the honor of passing the night +here, duke,” said Franz, “and desired them to come and inform me of his +return.” + +“Ah,” replied the duke, “here I think, is one of my servants who is +seeking you.” + +The duke was not mistaken; when he saw Franz, the servant came up to +him. + +“Your excellency,” he said, “the master of the Hôtel de Londres has +sent to let you know that a man is waiting for you with a letter from +the Viscount of Morcerf.” + +“A letter from the viscount!” exclaimed Franz. + +“Yes.” + +“And who is the man?” + +“I do not know.” + +“Why did he not bring it to me here?” + +“The messenger did not say.” + +“And where is the messenger?” + +“He went away directly he saw me enter the ball-room to find you.” + +“Oh,” said the countess to Franz, “go with all speed—poor young man! +Perhaps some accident has happened to him.” + +“I will hasten,” replied Franz. + +“Shall we see you again to give us any information?” inquired the +countess. + +“Yes, if it is not any serious affair, otherwise I cannot answer as to +what I may do myself.” + +“Be prudent, in any event,” said the countess. + +“Oh! pray be assured of that.” + +Franz took his hat and went away in haste. He had sent away his +carriage with orders for it to fetch him at two o’clock; fortunately +the Palazzo Bracciano, which is on one side in the Corso, and on the +other in the Square of the Holy Apostles, is hardly ten minutes’ walk +from the Hôtel de Londres. + +As he came near the hotel, Franz saw a man in the middle of the street. +He had no doubt that it was the messenger from Albert. The man was +wrapped up in a large cloak. He went up to him, but, to his extreme +astonishment, the stranger first addressed him. + +“What wants your excellency of me?” inquired the man, retreating a step +or two, as if to keep on his guard. + +“Are not you the person who brought me a letter,” inquired Franz, “from +the Viscount of Morcerf?” + +“Your excellency lodges at Pastrini’s hotel?” + +“I do.” + +“Your excellency is the travelling companion of the viscount?” + +“I am.” + +“Your excellency’s name——” + +“Is the Baron Franz d’Épinay.” + +20199m + + + +“Then it is to your excellency that this letter is addressed.” + +“Is there any answer?” inquired Franz, taking the letter from him. + +“Yes—your friend at least hopes so.” + +“Come upstairs with me, and I will give it to you.” + +“I prefer waiting here,” said the messenger, with a smile. + +“And why?” + +“Your excellency will know when you have read the letter.” + +“Shall I find you here, then?” + +“Certainly.” + +Franz entered the hotel. On the staircase he met Signor Pastrini. +“Well?” said the landlord. + +“Well—what?” responded Franz. + +“You have seen the man who desired to speak with you from your friend?” +he asked of Franz. + +“Yes, I have seen him,” he replied, “and he has handed this letter to +me. Light the candles in my apartment, if you please.” + +The innkeeper gave orders to a servant to go before Franz with a light. +The young man had found Signor Pastrini looking very much alarmed, and +this had only made him the more anxious to read Albert’s letter; and so +he went instantly towards the waxlight, and unfolded it. It was written +and signed by Albert. Franz read it twice before he could comprehend +what it contained. It was thus worded: + +“My dear Fellow, + +“The moment you have received this, have the kindness to take the +letter of credit from my pocket-book, which you will find in the square +drawer of the _secrétaire_; add your own to it, if it be not +sufficient. Run to Torlonia, draw from him instantly four thousand +piastres, and give them to the bearer. It is urgent that I should have +this money without delay. I do not say more, relying on you as you may +rely on me. + +“Your friend, + +“Albert de Morcerf. + +“P.S.—I now believe in Italian _banditti_.” + +Below these lines were written, in a strange hand, the following in +Italian: + +“_Se alle sei della mattina le quattro mille piastre non sono nelle mie +mani, alla sette il Conte Alberto avrà cessato di vivere_. + +“Luigi Vampa.” + +“_If by six in the morning the four thousand piastres are not in my +hands, by seven o’clock the Count Albert will have ceased to live_.” + +This second signature explained everything to Franz, who now understood +the objection of the messenger to coming up into the apartment; the +street was safer for him. Albert, then, had fallen into the hands of +the famous bandit chief, in whose existence he had for so long a time +refused to believe. + +There was no time to lose. He hastened to open the _secrétaire_, and +found the pocket-book in the drawer, and in it the letter of credit. +There were in all six thousand piastres, but of these six thousand +Albert had already expended three thousand. + +As to Franz, he had no letter of credit, as he lived at Florence, and +had only come to Rome to pass seven or eight days; he had brought but a +hundred louis, and of these he had not more than fifty left. Thus seven +or eight hundred piastres were wanting to them both to make up the sum +that Albert required. True, he might in such a case rely on the +kindness of Signor Torlonia. He was, therefore, about to return to the +Palazzo Bracciano without loss of time, when suddenly a luminous idea +crossed his mind. + +He remembered the Count of Monte Cristo. Franz was about to ring for +Signor Pastrini, when that worthy presented himself. + +“My dear sir,” he said, hastily, “do you know if the count is within?” + +“Yes, your excellency; he has this moment returned.” + +“Is he in bed?” + +“I should say no.” + +“Then ring at his door, if you please, and request him to be so kind as +to give me an audience.” + +Signor Pastrini did as he was desired, and returning five minutes +after, he said: + +“The count awaits your excellency.” + +Franz went along the corridor, and a servant introduced him to the +count. He was in a small room which Franz had not yet seen, and which +was surrounded with divans. The count came towards him. + +“Well, what good wind blows you hither at this hour?” said he; “have +you come to sup with me? It would be very kind of you.” + +“No; I have come to speak to you of a very serious matter.” + +“A serious matter,” said the count, looking at Franz with the +earnestness usual to him; “and what may it be?” + +“Are we alone?” + +“Yes,” replied the count, going to the door, and returning. Franz gave +him Albert’s letter. + +“Read that,” he said. + +The count read it. + +“Well, well!” said he. + +“Did you see the postscript?” + +“I did, indeed. + +“_‘Se alle sei della mattina le quattro mille piastre non sono nelle +mie mani, alla sette il conte Alberto avrà cessato di vivere. _ + +“‘Luigi Vampa.’” + +“What think you of that?” inquired Franz. + +“Have you the money he demands?” + +“Yes, all but eight hundred piastres.” + +The count went to his _secrétaire_, opened it, and pulling out a drawer +filled with gold, said to Franz, “I hope you will not offend me by +applying to anyone but myself.” + +“You see, on the contrary, I come to you first and instantly,” replied +Franz. + +“And I thank you; have what you will;” and he made a sign to Franz to +take what he pleased. + +“Is it absolutely necessary, then, to send the money to Luigi Vampa?” +asked the young man, looking fixedly in his turn at the count. + +“Judge for yourself,” replied he. “The postscript is explicit.” + +“I think that if you would take the trouble of reflecting, you could +find a way of simplifying the negotiation,” said Franz. + +“How so?” returned the count, with surprise. + +“If we were to go together to Luigi Vampa, I am sure he would not +refuse you Albert’s freedom.” + +“What influence can I possibly have over a bandit?” + +“Have you not just rendered him a service that can never be forgotten?” + +“What is that?” + +“Have you not saved Peppino’s life?” + +“Well, well,” said the count, “who told you that?” + +“No matter; I know it.” The count knit his brows, and remained silent +an instant. + +“And if I went to seek Vampa, would you accompany me?” + +“If my society would not be disagreeable.” + +“Be it so. It is a lovely night, and a walk without Rome will do us +both good.” + +“Shall I take any arms?” + +“For what purpose?” + +“Any money?” + +“It is useless. Where is the man who brought the letter?” + +“In the street.” + +“He awaits the answer?” + +“Yes.” + +“I must learn where we are going. I will summon him hither.” + +“It is useless; he would not come up.” + +“To your apartments, perhaps; but he will not make any difficulty at +entering mine.” + +The count went to the window of the apartment that looked on to the +street, and whistled in a peculiar manner. The man in the mantle +quitted the wall, and advanced into the middle of the street. +“_Salite!_” said the count, in the same tone in which he would have +given an order to his servant. The messenger obeyed without the least +hesitation, but rather with alacrity, and, mounting the steps at a +bound, entered the hotel; five seconds afterwards he was at the door of +the room. + +“Ah, it is you, Peppino,” said the count. But Peppino, instead of +answering, threw himself on his knees, seized the count’s hand, and +covered it with kisses. “Ah,” said the count, “you have, then, not +forgotten that I saved your life; that is strange, for it is a week +ago.” + +20203m + + + +“No, excellency; and never shall I forget it,” returned Peppino, with +an accent of profound gratitude. + +“Never? That is a long time; but it is something that you believe so. +Rise and answer.” + +Peppino glanced anxiously at Franz. + +“Oh, you may speak before his excellency,” said he; “he is one of my +friends. You allow me to give you this title?” continued the count in +French, “it is necessary to excite this man’s confidence.” + +“You can speak before me,” said Franz; “I am a friend of the count’s.” + +“Good!” returned Peppino. “I am ready to answer any questions your +excellency may address to me.” + +“How did the Viscount Albert fall into Luigi’s hands?” + +“Excellency, the Frenchman’s carriage passed several times the one in +which was Teresa.” + +“The chief’s mistress?” + +“Yes. The Frenchman threw her a bouquet; Teresa returned it—all this +with the consent of the chief, who was in the carriage.” + +“What?” cried Franz, “was Luigi Vampa in the carriage with the Roman +peasants?” + +“It was he who drove, disguised as the coachman,” replied Peppino. + +“Well?” said the count. + +“Well, then, the Frenchman took off his mask; Teresa, with the chief’s +consent, did the same. The Frenchman asked for a rendezvous; Teresa +gave him one—only, instead of Teresa, it was Beppo who was on the steps +of the church of San Giacomo.” + +“What!” exclaimed Franz, “the peasant girl who snatched his _mocoletto_ +from him——” + +“Was a lad of fifteen,” replied Peppino. “But it was no disgrace to +your friend to have been deceived; Beppo has taken in plenty of +others.” + +“And Beppo led him outside the walls?” said the count. + +“Exactly so; a carriage was waiting at the end of the Via Macello. +Beppo got in, inviting the Frenchman to follow him, and he did not wait +to be asked twice. He gallantly offered the right-hand seat to Beppo, +and sat by him. Beppo told him he was going to take him to a villa a +league from Rome; the Frenchman assured him he would follow him to the +end of the world. The coachman went up the Via di Ripetta and the Porta +San Paolo; and when they were two hundred yards outside, as the +Frenchman became somewhat too forward, Beppo put a brace of pistols to +his head, the coachman pulled up and did the same. At the same time, +four of the band, who were concealed on the banks of the Almo, +surrounded the carriage. The Frenchman made some resistance, and nearly +strangled Beppo; but he could not resist five armed men, and was forced +to yield. They made him get out, walk along the banks of the river, and +then brought him to Teresa and Luigi, who were waiting for him in the +catacombs of St. Sebastian.” + +“Well,” said the count, turning towards Franz, “it seems to me that +this is a very likely story. What do you say to it?” + +“Why, that I should think it very amusing,” replied Franz, “if it had +happened to anyone but poor Albert.” + +“And, in truth, if you had not found me here,” said the count, “it +might have proved a gallant adventure which would have cost your friend +dear; but now, be assured, his alarm will be the only serious +consequence.” + +“And shall we go and find him?” inquired Franz. + +“Oh, decidedly, sir. He is in a very picturesque place—do you know the +catacombs of St. Sebastian?” + +“I was never in them; but I have often resolved to visit them.” + +“Well, here is an opportunity made to your hand, and it would be +difficult to contrive a better. Have you a carriage?” + +“No.” + +“That is of no consequence; I always have one ready, day and night.” + +“Always ready?” + +“Yes. I am a very capricious being, and I should tell you that +sometimes when I rise, or after my dinner, or in the middle of the +night, I resolve on starting for some particular point, and away I go.” + +The count rang, and a footman appeared. + +“Order out the carriage,” he said, “and remove the pistols which are in +the holsters. You need not awaken the coachman; Ali will drive.” + +In a very short time the noise of wheels was heard, and the carriage +stopped at the door. The count took out his watch. + +“Half-past twelve,” he said. “We might start at five o’clock and be in +time, but the delay may cause your friend to pass an uneasy night, and +therefore we had better go with all speed to extricate him from the +hands of the infidels. Are you still resolved to accompany me?” + +“More determined than ever.” + +“Well, then, come along.” + +Franz and the count went downstairs, accompanied by Peppino. At the +door they found the carriage. Ali was on the box, in whom Franz +recognized the dumb slave of the grotto of Monte Cristo. Franz and the +count got into the carriage. Peppino placed himself beside Ali, and +they set off at a rapid pace. Ali had received his instructions, and +went down the Corso, crossed the Campo Vaccino, went up the Strada San +Gregorio, and reached the gates of St. Sebastian. Then the porter +raised some difficulties, but the Count of Monte Cristo produced a +permit from the governor of Rome, allowing him to leave or enter the +city at any hour of the day or night; the portcullis was therefore +raised, the porter had a louis for his trouble, and they went on their +way. + +The road which the carriage now traversed was the ancient Appian Way, +and bordered with tombs. From time to time, by the light of the moon, +which began to rise, Franz imagined that he saw something like a +sentinel appear at various points among the ruins, and suddenly retreat +into the darkness on a signal from Peppino. + +A short time before they reached the Baths of Caracalla the carriage +stopped, Peppino opened the door, and the count and Franz alighted. + +“In ten minutes,” said the count to his companion, “we shall be there.” + +He then took Peppino aside, gave him an order in a low voice, and +Peppino went away, taking with him a torch, brought with them in the +carriage. Five minutes elapsed, during which Franz saw the shepherd +going along a narrow path that led over the irregular and broken +surface of the Campagna; and finally he disappeared in the midst of the +tall red herbage, which seemed like the bristling mane of an enormous +lion. + +“Now,” said the count, “let us follow him.” + +Franz and the count in their turn then advanced along the same path, +which, at the distance of a hundred paces, led them over a declivity to +the bottom of a small valley. They then perceived two men conversing in +the obscurity. + +“Ought we to go on?” asked Franz of the count; “or should we pause?” + +“Let us go on; Peppino will have warned the sentry of our coming.” + +One of the two men was Peppino, and the other a bandit on the lookout. +Franz and the count advanced, and the bandit saluted them. + +“Your excellency,” said Peppino, addressing the count, “if you will +follow me, the opening of the catacombs is close at hand.” + +“Go on, then,” replied the count. They came to an opening behind a +clump of bushes and in the midst of a pile of rocks, by which a man +could scarcely pass. Peppino glided first into this crevice; after they +got along a few paces the passage widened. Peppino passed, lighted his +torch, and turned to see if they came after him. The count first +reached an open space and Franz followed him closely. The passageway +sloped in a gentle descent, enlarging as they proceeded; still Franz +and the count were compelled to advance in a stooping posture, and were +scarcely able to proceed abreast of one another. They went on a hundred +and fifty paces in this way, and then were stopped by, “Who comes +there?” At the same time they saw the reflection of a torch on a +carbine barrel. + +“A friend!” responded Peppino; and, advancing alone towards the sentry, +he said a few words to him in a low tone; and then he, like the first, +saluted the nocturnal visitors, making a sign that they might proceed. + +Behind the sentinel was a staircase with twenty steps. Franz and the +count descended these, and found themselves in a mortuary chamber. Five +corridors diverged like the rays of a star, and the walls, dug into +niches, which were arranged one above the other in the shape of +coffins, showed that they were at last in the catacombs. Down one of +the corridors, whose extent it was impossible to determine, rays of +light were visible. The count laid his hand on Franz’s shoulder. + +“Would you like to see a camp of bandits in repose?” he inquired. + +“Exceedingly,” replied Franz. + +“Come with me, then. Peppino, put out the torch.” Peppino obeyed, and +Franz and the count were in utter darkness, except that fifty paces in +advance of them a reddish glare, more evident since Peppino had put out +his torch, was visible along the wall. + +They advanced silently, the count guiding Franz as if he had the +singular faculty of seeing in the dark. Franz himself, however, saw his +way more plainly in proportion as he went on towards the light, which +served in some manner as a guide. Three arcades were before them, and +the middle one was used as a door. These arcades opened on one side +into the corridor where the count and Franz were, and on the other into +a large square chamber, entirely surrounded by niches similar to those +of which we have spoken. + +In the midst of this chamber were four stones, which had formerly +served as an altar, as was evident from the cross which still +surmounted them. A lamp, placed at the base of a pillar, lighted up +with its pale and flickering flame the singular scene which presented +itself to the eyes of the two visitors concealed in the shadow. + +A man was seated with his elbow leaning on the column, and was reading +with his back turned to the arcades, through the openings of which the +new-comers contemplated him. This was the chief of the band, Luigi +Vampa. Around him, and in groups, according to their fancy, lying in +their mantles, or with their backs against a sort of stone bench, which +went all round the columbarium, were to be seen twenty brigands or +more, each having his carbine within reach. At the other end, silent, +scarcely visible, and like a shadow, was a sentinel, who was walking up +and down before a grotto, which was only distinguishable because in +that spot the darkness seemed more dense than elsewhere. + +When the count thought Franz had gazed sufficiently on this picturesque +tableau, he raised his finger to his lips, to warn him to be silent, +and, ascending the three steps which led to the corridor of the +columbarium, entered the chamber by the middle arcade, and advanced +towards Vampa, who was so intent on the book before him that he did not +hear the noise of his footsteps. + +“Who comes there?” cried the sentinel, who was less abstracted, and who +saw by the lamp-light a shadow approaching his chief. At this +challenge, Vampa rose quickly, drawing at the same moment a pistol from +his girdle. In a moment all the bandits were on their feet, and twenty +carbines were levelled at the count. + +“Well,” said he in a voice perfectly calm, and no muscle of his +countenance disturbed, “well, my dear Vampa, it appears to me that you +receive a friend with a great deal of ceremony.” + +20207m + + + +“Ground arms,” exclaimed the chief, with an imperative sign of the +hand, while with the other he took off his hat respectfully; then, +turning to the singular personage who had caused this scene, he said, +“Your pardon, your excellency, but I was so far from expecting the +honor of a visit, that I did not really recognize you.” + +“It seems that your memory is equally short in everything, Vampa,” said +the count, “and that not only do you forget people’s faces, but also +the conditions you make with them.” + +“What conditions have I forgotten, your excellency?” inquired the +bandit, with the air of a man who, having committed an error, is +anxious to repair it. + +“Was it not agreed,” asked the count, “that not only my person, but +also that of my friends, should be respected by you?” + +“And how have I broken that treaty, your excellency?” + +“You have this evening carried off and conveyed hither the Viscount +Albert de Morcerf. Well,” continued the count, in a tone that made +Franz shudder, “this young gentleman is one of _my friends_—this young +gentleman lodges in the same hotel as myself—this young gentleman has +been up and down the Corso for eight hours in my private carriage, and +yet, I repeat to you, you have carried him off, and conveyed him +hither, and,” added the count, taking the letter from his pocket, “you +have set a ransom on him, as if he were an utter stranger.” + +“Why did you not tell me all this—you?” inquired the brigand chief, +turning towards his men, who all retreated before his look. “Why have +you caused me thus to fail in my word towards a gentleman like the +count, who has all our lives in his hands? By heavens! if I thought one +of you knew that the young gentleman was the friend of his excellency, +I would blow his brains out with my own hand!” + +20211m + + + +“Well,” said the count, turning towards Franz, “I told you there was +some mistake in this.” + +“Are you not alone?” asked Vampa with uneasiness. + +“I am with the person to whom this letter was addressed, and to whom I +desired to prove that Luigi Vampa was a man of his word. Come, your +excellency,” the count added, turning to Franz, “here is Luigi Vampa, +who will himself express to you his deep regret at the mistake he has +committed.” + +Franz approached, the chief advancing several steps to meet him. + +“Welcome among us, your excellency,” he said to him; “you heard what +the count just said, and also my reply; let me add that I would not for +the four thousand piastres at which I had fixed your friend’s ransom, +that this had happened.” + +“But,” said Franz, looking round him uneasily, “where is the +viscount?—I do not see him.” + +“Nothing has happened to him, I hope,” said the count frowningly. + +“The prisoner is there,” replied Vampa, pointing to the hollow space in +front of which the bandit was on guard, “and I will go myself and tell +him he is free.” + +The chief went towards the place he had pointed out as Albert’s prison, +and Franz and the count followed him. + +“What is the prisoner doing?” inquired Vampa of the sentinel. + +“_Ma foi_, captain,” replied the sentry, “I do not know; for the last +hour I have not heard him stir.” + +“Come in, your excellency,” said Vampa. The count and Franz ascended +seven or eight steps after the chief, who drew back a bolt and opened a +door. Then, by the gleam of a lamp, similar to that which lighted the +columbarium, Albert was to be seen wrapped up in a cloak which one of +the bandits had lent him, lying in a corner in profound slumber. + +“Come,” said the count, smiling with his own peculiar smile, “not so +bad for a man who is to be shot at seven o’clock tomorrow morning.” + +Vampa looked at Albert with a kind of admiration; he was not insensible +to such a proof of courage. + +“You are right, your excellency,” he said; “this must be one of your +friends.” + +Then going to Albert, he touched him on the shoulder, saying, “Will +your excellency please to awaken?” + +Albert stretched out his arms, rubbed his eyelids, and opened his eyes. + +“Oh,” said he, “is it you, captain? You should have allowed me to +sleep. I had such a delightful dream. I was dancing the galop at +Torlonia’s with the Countess G——.” Then he drew his watch from his +pocket, that he might see how time sped. + +“Half-past one only?” said he. “Why the devil do you rouse me at this +hour?” + +“To tell you that you are free, your excellency.” + +“My dear fellow,” replied Albert, with perfect ease of mind, “remember, +for the future, Napoleon’s maxim, ‘Never awaken me but for bad news;’ +if you had let me sleep on, I should have finished my galop, and have +been grateful to you all my life. So, then, they have paid my ransom?” + +“No, your excellency.” + +“Well, then, how am I free?” + +“A person to whom I can refuse nothing has come to demand you.” + +“Come hither?” + +“Yes, hither.” + +“Really? Then that person is a most amiable person.” + +Albert looked around and perceived Franz. “What,” said he, “is it you, +my dear Franz, whose devotion and friendship are thus displayed?” + +“No, not I,” replied Franz, “but our neighbor, the Count of Monte +Cristo.” + +“Oh, my dear count,” said Albert gayly, arranging his cravat and +wristbands, “you are really most kind, and I hope you will consider me +as under eternal obligations to you, in the first place for the +carriage, and in the next for this visit,” and he put out his hand to +the count, who shuddered as he gave his own, but who nevertheless did +give it. + +The bandit gazed on this scene with amazement; he was evidently +accustomed to see his prisoners tremble before him, and yet here was +one whose gay temperament was not for a moment altered; as for Franz, +he was enchanted at the way in which Albert had sustained the national +honor in the presence of the bandit. + +“My dear Albert,” he said, “if you will make haste, we shall yet have +time to finish the night at Torlonia’s. You may conclude your +interrupted galop, so that you will owe no ill-will to Signor Luigi, +who has, indeed, throughout this whole affair acted like a gentleman.” + +“You are decidedly right, and we may reach the Palazzo by two o’clock. +Signor Luigi,” continued Albert, “is there any formality to fulfil +before I take leave of your excellency?” + +“None, sir,” replied the bandit, “you are as free as air.” + +“Well, then, a happy and merry life to you. Come, gentlemen, come.” + +And Albert, followed by Franz and the count, descended the staircase, +crossed the square chamber, where stood all the bandits, hat in hand. + +“Peppino,” said the brigand chief, “give me the torch.” + +“What are you going to do?” inquired the count. + +“I will show you the way back myself,” said the captain; “that is the +least honor that I can render to your excellency.” + +And taking the lighted torch from the hands of the herdsman, he +preceded his guests, not as a servant who performs an act of civility, +but like a king who precedes ambassadors. On reaching the door, he +bowed. + +“And now, your excellency,” added he, “allow me to repeat my apologies, +and I hope you will not entertain any resentment at what has occurred.” + +“No, my dear Vampa,” replied the count; “besides, you compensate for +your mistakes in so gentlemanly a way, that one almost feels obliged to +you for having committed them.” + +20214m + + + +“Gentlemen,” added the chief, turning towards the young men, “perhaps +the offer may not appear very tempting to you; but if you should ever +feel inclined to pay me a second visit, wherever I may be, you shall be +welcome.” + +Franz and Albert bowed. The count went out first, then Albert. Franz +paused for a moment. + +“Has your excellency anything to ask me?” said Vampa with a smile. + +“Yes, I have,” replied Franz; “I am curious to know what work you were +perusing with so much attention as we entered.” + +“Cæsar’s _Commentaries_,” said the bandit, “it is my favorite work.” + +“Well, are you coming?” asked Albert. + +“Yes,” replied Franz, “here I am,” and he, in his turn, left the caves. +They advanced to the plain. + +“Ah, your pardon,” said Albert, turning round; “will you allow me, +captain?” + +And he lighted his cigar at Vampa’s torch. + +“Now, my dear count,” he said, “let us on with all the speed we may. I +am enormously anxious to finish my night at the Duke of Bracciano’s.” + +They found the carriage where they had left it. The count said a word +in Arabic to Ali, and the horses went on at great speed. + +It was just two o’clock by Albert’s watch when the two friends entered +into the dancing-room. Their return was quite an event, but as they +entered together, all uneasiness on Albert’s account ceased instantly. + +“Madame,” said the Viscount of Morcerf, advancing towards the countess, +“yesterday you were so condescending as to promise me a galop; I am +rather late in claiming this gracious promise, but here is my friend, +whose character for veracity you well know, and he will assure you the +delay arose from no fault of mine.” + +And as at this moment the orchestra gave the signal for the waltz, +Albert put his arm round the waist of the countess, and disappeared +with her in the whirl of dancers. + +In the meanwhile Franz was considering the singular shudder that had +passed over the Count of Monte Cristo at the moment when he had been, +in some sort, forced to give his hand to Albert. + + + + Chapter 38. The Rendezvous + +The first words that Albert uttered to his friend, on the following +morning, contained a request that Franz would accompany him on a visit +to the count; true, the young man had warmly and energetically thanked +the count on the previous evening; but services such as he had rendered +could never be too often acknowledged. Franz, who seemed attracted by +some invisible influence towards the count, in which terror was +strangely mingled, felt an extreme reluctance to permit his friend to +be exposed alone to the singular fascination that this mysterious +personage seemed to exercise over him, and therefore made no objection +to Albert’s request, but at once accompanied him to the desired spot, +and, after a short delay, the count joined them in the salon. + +“My dear count,” said Albert, advancing to meet him, “permit me to +repeat the poor thanks I offered last night, and to assure you that the +remembrance of all I owe to you will never be effaced from my memory; +believe me, as long as I live, I shall never cease to dwell with +grateful recollection on the prompt and important service you rendered +me; and also to remember that to you I am indebted even for my life.” + +“My very good friend and excellent neighbor,” replied the count, with a +smile, “you really exaggerate my trifling exertions. You owe me nothing +but some trifle of 20,000 francs, which you have been saved out of your +travelling expenses, so that there is not much of a score between +us;—but you must really permit me to congratulate you on the ease and +unconcern with which you resigned yourself to your fate, and the +perfect indifference you manifested as to the turn events might take.” + +“Upon my word,” said Albert, “I deserve no credit for what I could not +help, namely, a determination to take everything as I found it, and to +let those bandits see, that although men get into troublesome scrapes +all over the world, there is no nation but the French that can smile +even in the face of grim Death himself. All that, however, has nothing +to do with my obligations to you, and I now come to ask you whether, in +my own person, my family, or connections, I can in any way serve you? +My father, the Comte de Morcerf, although of Spanish origin, possesses +considerable influence, both at the court of France and Madrid, and I +unhesitatingly place the best services of myself, and all to whom my +life is dear, at your disposal.” + +“Monsieur de Morcerf,” replied the count, “your offer, far from +surprising me, is precisely what I expected from you, and I accept it +in the same spirit of hearty sincerity with which it is made;—nay, I +will go still further, and say that I had previously made up my mind to +ask a great favor at your hands.” + +“Oh, pray name it.” + +“I am wholly a stranger to Paris—it is a city I have never yet seen.” + +“Is it possible,” exclaimed Albert, “that you have reached your present +age without visiting the finest capital in the world? I can scarcely +credit it.” + +“Nevertheless, it is quite true; still, I agree with you in thinking +that my present ignorance of the first city in Europe is a reproach to +me in every way, and calls for immediate correction; but, in all +probability, I should have performed so important, so necessary a duty, +as that of making myself acquainted with the wonders and beauties of +your justly celebrated capital, had I known any person who would have +introduced me into the fashionable world, but unfortunately I possessed +no acquaintance there, and, of necessity, was compelled to abandon the +idea.” + +“So distinguished an individual as yourself,” cried Albert, “could +scarcely have required an introduction.” + +“You are most kind; but as regards myself, I can find no merit I +possess, save that, as a millionaire, I might have become a partner in +the speculations of M. Aguado and M. Rothschild; but as my motive in +travelling to your capital would not have been for the pleasure of +dabbling in stocks, I stayed away till some favorable chance should +present itself of carrying my wish into execution. Your offer, however, +smooths all difficulties, and I have only to ask you, my dear M. de +Morcerf” (these words were accompanied by a most peculiar smile), +“whether you undertake, upon my arrival in France, to open to me the +doors of that fashionable world of which I know no more than a Huron or +a native of Cochin-China?” + +“Oh, that I do, and with infinite pleasure,” answered Albert; “and so +much the more readily as a letter received this morning from my father +summons me to Paris, in consequence of a treaty of marriage (my dear +Franz, do not smile, I beg of you) with a family of high standing, and +connected with the very cream of Parisian society.” + +“Connected by marriage, you mean,” said Franz, laughingly. + +“Well, never mind how it is,” answered Albert, “it comes to the same +thing in the end. Perhaps by the time you return to Paris, I shall be +quite a sober, staid father of a family! A most edifying representative +I shall make of all the domestic virtues—don’t you think so? But as +regards your wish to visit our fine city, my dear count, I can only say +that you may command me and mine to any extent you please.” + +“Then it is settled,” said the count, “and I give you my solemn +assurance that I only waited an opportunity like the present to realize +plans that I have long meditated.” + +Franz did not doubt that these plans were the same concerning which the +count had dropped a few words in the grotto of Monte Cristo, and while +the count was speaking the young man watched him closely, hoping to +read something of his purpose in his face, but his countenance was +inscrutable especially when, as in the present case, it was veiled in a +sphinx-like smile. + +“But tell me now, count,” exclaimed Albert, delighted at the idea of +having to chaperon so distinguished a person as Monte Cristo; “tell me +truly whether you are in earnest, or if this project of visiting Paris +is merely one of the chimerical and uncertain air castles of which we +make so many in the course of our lives, but which, like a house built +on the sand, is liable to be blown over by the first puff of wind?” + +“I pledge you my honor,” returned the count, “that I mean to do as I +have said; both inclination and positive necessity compel me to visit +Paris.” + +“When do you propose going thither?” + +“Have you made up your mind when you shall be there yourself?” + +“Certainly I have; in a fortnight or three weeks’ time, that is to say, +as fast as I can get there!” + +“Nay,” said the Count; “I will give you three months ere I join you; +you see I make an ample allowance for all delays and difficulties. + +“And in three months’ time,” said Albert, “you will be at my house?” + +“Shall we make a positive appointment for a particular day and hour?” +inquired the count; “only let me warn you that I am proverbial for my +punctilious exactitude in keeping my engagements.” + +“Day for day, hour for hour,” said Albert; “that will suit me to a +dot.” + +“So be it, then,” replied the count, and extending his hand towards a +calendar, suspended near the chimney-piece, he said, “today is the 21st +of February;” and drawing out his watch, added, “it is exactly +half-past ten o’clock. Now promise me to remember this, and expect me +the 21st of May at the same hour in the forenoon.” + +“Capital!” exclaimed Albert; “your breakfast shall be waiting.” + +“Where do you live?” + +“No. 27, Rue du Helder.” + +“Have you bachelor’s apartments there? I hope my coming will not put +you to any inconvenience.” + +“I reside in my father’s house, but occupy a pavilion at the farther +side of the courtyard, entirely separated from the main building.” + +“Quite sufficient,” replied the count, as, taking out his tablets, he +wrote down “No. 27, Rue du Helder, 21st May, half-past ten in the +morning.” + +“Now then,” said the count, returning his tablets to his pocket, “make +yourself perfectly easy; the hand of your time-piece will not be more +accurate in marking the time than myself.” + +“Shall I see you again ere my departure?” asked Albert. + +“That depends; when do you leave?” + +“Tomorrow evening, at five o’clock.” + +“In that case I must say adieu to you, as I am compelled to go to +Naples, and shall not return hither before Saturday evening or Sunday +morning. And you, baron,” pursued the count, addressing Franz, “do you +also depart tomorrow?” + +“Yes.” + +“For France?” + +“No, for Venice; I shall remain in Italy for another year or two.” + +“Then we shall not meet in Paris?” + +“I fear I shall not have that honor.” + +“Well, since we must part,” said the count, holding out a hand to each +of the young men, “allow me to wish you both a safe and pleasant +journey.” + +It was the first time the hand of Franz had come in contact with that +of the mysterious individual before him, and unconsciously he shuddered +at its touch, for it felt cold and icy as that of a corpse. + +20219m + + + +“Let us understand each other,” said Albert; “it is agreed—is it +not?—that you are to be at No. 27, in the Rue du Helder, on the 21st of +May, at half-past ten in the morning, and your word of honor passed for +your punctuality?” + +“The 21st of May, at half-past ten in the morning, Rue du Helder, No. +27,” replied the count. + +The young men then rose, and bowing to the count, quitted the room. + +“What is the matter?” asked Albert of Franz, when they had returned to +their own apartments; “you seem more than commonly thoughtful.” + +“I will confess to you, Albert,” replied Franz, “the count is a very +singular person, and the appointment you have made to meet him in Paris +fills me with a thousand apprehensions.” + +“My dear fellow,” exclaimed Albert, “what can there possibly be in that +to excite uneasiness? Why, you must have lost your senses.” + +“Whether I am in my senses or not,” answered Franz, “that is the way I +feel.” + +“Listen to me, Franz,” said Albert; “I am glad that the occasion has +presented itself for saying this to you, for I have noticed how cold +you are in your bearing towards the count, while he, on the other hand, +has always been courtesy itself to us. Have you anything particular +against him?” + +“Possibly.” + +“Did you ever meet him previously to coming hither?” + +“I have.” + +“And where?” + +“Will you promise me not to repeat a single word of what I am about to +tell you?” + +“I promise.” + +“Upon your honor?” + +“Upon my honor.” + +“Then listen to me.” + +Franz then related to his friend the history of his excursion to the +Island of Monte Cristo and of his finding a party of smugglers there, +and the two Corsican bandits with them. He dwelt with considerable +force and energy on the almost magical hospitality he had received from +the count, and the magnificence of his entertainment in the grotto of +the _Thousand and One Nights_. + +He recounted, with circumstantial exactitude, all the particulars of +the supper, the hashish, the statues, the dream, and how, at his +awakening, there remained no proof or trace of all these events, save +the small yacht, seen in the distant horizon driving under full sail +toward Porto-Vecchio. + +Then he detailed the conversation overheard by him at the Colosseum, +between the count and Vampa, in which the count had promised to obtain +the release of the bandit Peppino,—an engagement which, as our readers +are aware, he most faithfully fulfilled. + +At last he arrived at the adventure of the preceding night, and the +embarrassment in which he found himself placed by not having sufficient +cash by six or seven hundred piastres to make up the sum required, and +finally of his application to the count and the picturesque and +satisfactory result that followed. Albert listened with the most +profound attention. + +“Well,” said he, when Franz had concluded, “what do you find to object +to in all you have related? The count is fond of travelling, and, being +rich, possesses a vessel of his own. Go but to Portsmouth or +Southampton, and you will find the harbors crowded with the yachts +belonging to such of the English as can afford the expense, and have +the same liking for this amusement. Now, by way of having a +resting-place during his excursions, avoiding the wretched +cookery—which has been trying its best to poison me during the last +four months, while you have manfully resisted its effects for as many +years,—and obtaining a bed on which it is possible to slumber, Monte +Cristo has furnished for himself a temporary abode where you first +found him; but, to prevent the possibility of the Tuscan government +taking a fancy to his enchanted palace, and thereby depriving him of +the advantages naturally expected from so large an outlay of capital, +he has wisely enough purchased the island, and taken its name. Just ask +yourself, my good fellow, whether there are not many persons of our +acquaintance who assume the names of lands and properties they never in +their lives were masters of?” + +“But,” said Franz, “the Corsican bandits that were among the crew of +his vessel?” + +“Why, really the thing seems to me simple enough. Nobody knows better +than yourself that the bandits of Corsica are not rogues or thieves, +but purely and simply fugitives, driven by some sinister motive from +their native town or village, and that their fellowship involves no +disgrace or stigma; for my own part, I protest that, should I ever go +to Corsica, my first visit, ere even I presented myself to the mayor or +prefect, should be to the bandits of Colomba, if I could only manage to +find them; for, on my conscience, they are a race of men I admire +greatly.” + +“Still,” persisted Franz, “I suppose you will allow that such men as +Vampa and his band are regular villains, who have no other motive than +plunder when they seize your person. How do you explain the influence +the count evidently possessed over those ruffians?” + +“My good friend, as in all probability I own my present safety to that +influence, it would ill become me to search too closely into its +source; therefore, instead of condemning him for his intimacy with +outlaws, you must give me leave to excuse any little irregularity there +may be in such a connection; not altogether for preserving my life, for +my own idea was that it never was in much danger, but certainly for +saving me 4,000 piastres, which, being translated, means neither more +nor less than 24,000 livres of our money—a sum at which, most +assuredly, I should never have been estimated in France, proving most +indisputably,” added Albert with a laugh, “that no prophet is honored +in his own country.” + +“Talking of countries,” replied Franz, “of what country is the count, +what is his native tongue, whence does he derive his immense fortune, +and what were those events of his early life—a life as marvellous as +unknown—that have tinctured his succeeding years with so dark and +gloomy a misanthropy? Certainly these are questions that, in your +place, I should like to have answered.” + +“My dear Franz,” replied Albert, “when, upon receipt of my letter, you +found the necessity of asking the count’s assistance, you promptly went +to him, saying, ‘My friend Albert de Morcerf is in danger; help me to +deliver him.’ Was not that nearly what you said?” + +20222m + + + +“It was.” + +“Well, then, did he ask you, ‘Who is M. Albert de Morcerf? how does he +come by his name—his fortune? what are his means of existence? what is +his birthplace? of what country is he a native?’ Tell me, did he put +all these questions to you?” + +“I confess he asked me none.” + +“No; he merely came and freed me from the hands of Signor Vampa, where, +I can assure you, in spite of all my outward appearance of ease and +unconcern, I did not very particularly care to remain. Now, then, +Franz, when, for services so promptly and unhesitatingly rendered, he +but asks me in return to do for him what is done daily for any Russian +prince or Italian nobleman who may pass through Paris—merely to +introduce him into society—would you have me refuse? My good fellow, +you must have lost your senses to think it possible I could act with +such cold-blooded policy.” + +And this time it must be confessed that, contrary to the usual state of +affairs in discussions between the young men, the effective arguments +were all on Albert’s side. + +“Well,” said Franz with a sigh, “do as you please my dear viscount, for +your arguments are beyond my powers of refutation. Still, in spite of +all, you must admit that this Count of Monte Cristo is a most singular +personage.” + +“He is a philanthropist,” answered the other; “and no doubt his motive +in visiting Paris is to compete for the Monthyon prize, given, as you +are aware, to whoever shall be proved to have most materially advanced +the interests of virtue and humanity. If my vote and interest can +obtain it for him, I will readily give him the one and promise the +other. And now, my dear Franz, let us talk of something else. Come, +shall we take our luncheon, and then pay a last visit to St. Peter’s?” + +Franz silently assented; and the following afternoon, at half-past five +o’clock, the young men parted. Albert de Morcerf to return to Paris, +and Franz d’Épinay to pass a fortnight at Venice. + +But, ere he entered his travelling carriage, Albert, fearing that his +expected guest might forget the engagement he had entered into, placed +in the care of a waiter at the hotel a card to be delivered to the +Count of Monte Cristo, on which, beneath the name of Viscount Albert de +Morcerf, he had written in pencil: + +“27, _Rue du Helder, on the_ 21_st May, half-past ten_ A.M.” + + + + Chapter 39. The Guests + +In the house in the Rue du Helder, where Albert had invited the Count +of Monte Cristo, everything was being prepared on the morning of the +21st of May to do honor to the occasion. Albert de Morcerf inhabited a +pavilion situated at the corner of a large court, and directly opposite +another building, in which were the servants’ apartments. Two windows +only of the pavilion faced the street; three other windows looked into +the court, and two at the back into the garden. + +Between the court and the garden, built in the heavy style of the +imperial architecture, was the large and fashionable dwelling of the +Count and Countess of Morcerf. + +A high wall surrounded the whole of the property, surmounted at +intervals by vases filled with flowers, and broken in the centre by a +large gate of gilded iron, which served as the carriage entrance. A +small door, close to the lodge of the _concierge_, gave ingress and +egress to the servants and masters when they were on foot. + +It was easy to discover that the delicate care of a mother, unwilling +to part from her son, and yet aware that a young man of the viscount’s +age required the full exercise of his liberty, had chosen this +habitation for Albert. There were not lacking, however, evidences of +what we may call the intelligent egoism of a youth who is charmed with +the indolent, careless life of an only son, and who lives as it were in +a gilded cage. By means of the two windows looking into the street, +Albert could see all that passed; the sight of what is going on is +necessary to young men, who always want to see the world traverse their +horizon, even if that horizon is only a public thoroughfare. Then, +should anything appear to merit a more minute examination, Albert de +Morcerf could follow up his researches by means of a small gate, +similar to that close to the _concierge’s_ door, and which merits a +particular description. + +It was a little entrance that seemed never to have been opened since +the house was built, so entirely was it covered with dust and dirt; but +the well-oiled hinges and locks told quite another story. This door was +a mockery to the _concierge_, from whose vigilance and jurisdiction it +was free, and, like that famous portal in the _Arabian Nights_, opening +at the “_Sesame_” of Ali Baba, it was wont to swing backward at a +cabalistic word or a concerted tap from without from the sweetest +voices or whitest fingers in the world. + +At the end of a long corridor, with which the door communicated, and +which formed the antechamber, was, on the right, Albert’s +breakfast-room, looking into the court, and on the left the salon, +looking into the garden. Shrubs and creeping plants covered the +windows, and hid from the garden and court these two apartments, the +only rooms into which, as they were on the ground floor, the prying +eyes of the curious could penetrate. + +On the floor above were similar rooms, with the addition of a third, +formed out of the antechamber; these three rooms were a salon, a +boudoir, and a bedroom. The salon downstairs was only an Algerian +divan, for the use of smokers. The boudoir upstairs communicated with +the bedchamber by an invisible door on the staircase; it was evident +that every precaution had been taken. Above this floor was a large +_atelier_, which had been increased in size by pulling down the +partitions—a pandemonium, in which the artist and the dandy strove for +pre-eminence. + +There were collected and piled up all Albert’s successive caprices, +hunting-horns, bass-viols, flutes—a whole orchestra, for Albert had had +not a taste but a fancy for music; easels, palettes, brushes, +pencils—for music had been succeeded by painting; foils, boxing-gloves, +broadswords, and single-sticks—for, following the example of the +fashionable young men of the time, Albert de Morcerf cultivated, with +far more perseverance than music and drawing, the three arts that +complete a dandy’s education, i.e., fencing, boxing, and single-stick; +and it was here that he received Grisier, Cooks, and Charles Leboucher. + +The rest of the furniture of this privileged apartment consisted of old +cabinets, filled with Chinese porcelain and Japanese vases, Lucca della +Robbia _faïences_, and Palissy platters; of old armchairs, in which +perhaps had sat Henry IV. or Sully, Louis XIII. or Richelieu—for two of +these armchairs, adorned with a carved shield, on which were engraved +the fleur-de-lis of France on an azure field, evidently came from the +Louvre, or, at least, some royal residence. + +Over these dark and sombre chairs were thrown splendid stuffs, dyed +beneath Persia’s sun, or woven by the fingers of the women of Calcutta +or of Chandernagor. What these stuffs did there, it was impossible to +say; they awaited, while gratifying the eyes, a destination unknown to +their owner himself; in the meantime they filled the place with their +golden and silky reflections. + +In the centre of the room was a Roller and Blanchet “baby grand” piano +in rosewood, but holding the potentialities of an orchestra in its +narrow and sonorous cavity, and groaning beneath the weight of the +_chefs-d’œuvre_ of Beethoven, Weber, Mozart, Haydn, Grétry, and +Porpora. + +On the walls, over the doors, on the ceiling, were swords, daggers, +Malay creeses, maces, battle-axes; gilded, damasked, and inlaid suits +of armor; dried plants, minerals, and stuffed birds, their +flame-colored wings outspread in motionless flight, and their beaks +forever open. This was Albert’s favorite lounging place. + +However, the morning of the appointment, the young man had established +himself in the small salon downstairs. There, on a table, surrounded at +some distance by a large and luxurious divan, every species of tobacco +known,—from the yellow tobacco of Petersburg to the black of Sinai, and +so on along the scale from Maryland and Porto Rico, to Latakia,—was +exposed in pots of crackled earthenware of which the Dutch are so fond; +beside them, in boxes of fragrant wood, were ranged, according to their +size and quality, puros, regalias, havanas, and manillas; and, in an +open cabinet, a collection of German pipes, of chibouques, with their +amber mouth-pieces ornamented with coral, and of narghiles, with their +long tubes of morocco, awaiting the caprice or the sympathy of the +smokers. + +Albert had himself presided at the arrangement, or, rather, the +symmetrical derangement, which, after coffee, the guests at a breakfast +of modern days love to contemplate through the vapor that escapes from +their mouths, and ascends in long and fanciful wreaths to the ceiling. + +At a quarter to ten, a valet entered; he composed, with a little groom +named John, and who only spoke English, all Albert’s establishment, +although the cook of the hotel was always at his service, and on great +occasions the count’s _chasseur_ also. This valet, whose name was +Germain, and who enjoyed the entire confidence of his young master, +held in one hand a number of papers, and in the other a packet of +letters, which he gave to Albert. Albert glanced carelessly at the +different missives, selected two written in a small and delicate hand, +and enclosed in scented envelopes, opened them and perused their +contents with some attention. + +“How did these letters come?” said he. + +“One by the post, Madame Danglars’ footman left the other.” + +“Let Madame Danglars know that I accept the place she offers me in her +box. Wait; then, during the day, tell Rosa that when I leave the Opera +I will sup with her as she wishes. Take her six bottles of different +wine—Cyprus, sherry, and Malaga, and a barrel of Ostend oysters; get +them at Borel’s, and be sure you say they are for me.” + +“At what o’clock, sir, do you breakfast?” + +20227m + + + +“What time is it now?” + +“A quarter to ten.” + +“Very well, at half past ten. Debray will, perhaps, be obliged to go to +the minister—and besides” (Albert looked at his tablets), “it is the +hour I told the count, 21st May, at half past ten; and though I do not +much rely upon his promise, I wish to be punctual. Is the countess up +yet?” + +“If you wish, I will inquire.” + +“Yes, ask her for one of her _liqueur_ cellarets, mine is incomplete; +and tell her I shall have the honor of seeing her about three o’clock, +and that I request permission to introduce someone to her.” + +The valet left the room. Albert threw himself on the divan, tore off +the cover of two or three of the papers, looked at the theatre +announcements, made a face seeing they gave an opera, and not a ballet; +hunted vainly amongst the advertisements for a new tooth-powder of +which he had heard, and threw down, one after the other, the three +leading papers of Paris, muttering, + +“These papers become more and more stupid every day.” + +A moment after, a carriage stopped before the door, and the servant +announced M. Lucien Debray. A tall young man, with light hair, clear +gray eyes, and thin and compressed lips, dressed in a blue coat with +beautifully carved gold buttons, a white neckcloth, and a tortoiseshell +eye-glass suspended by a silken thread, and which, by an effort of the +superciliary and zygomatic muscles, he fixed in his eye, entered, with +a half-official air, without smiling or speaking. + +“Good-morning, Lucien, good-morning,” said Albert; “your punctuality +really alarms me. What do I say? punctuality! You, whom I expected +last, you arrive at five minutes to ten, when the time fixed was +half-past! Has the ministry resigned?” + +“No, my dear fellow,” returned the young man, seating himself on the +divan; “reassure yourself; we are tottering always, but we never fall, +and I begin to believe that we shall pass into a state of immobility, +and then the affairs of the Peninsula will completely consolidate us.” + +“Ah, true; you drive Don Carlos out of Spain.” + +“No, no, my dear fellow, do not confound our plans. We take him to the +other side of the French frontier, and offer him hospitality at +Bourges.” + +“At Bourges?” + +“Yes, he has not much to complain of; Bourges is the capital of Charles +VII. Do you not know that all Paris knew it yesterday, and the day +before it had already transpired on the Bourse, and M. Danglars (I do +not know by what means that man contrives to obtain intelligence as +soon as we do) made a million!” + +“And you another order, for I see you have a blue ribbon at your +button-hole.” + +“Yes; they sent me the order of Charles III.,” returned Debray +carelessly. + +“Come, do not affect indifference, but confess you were pleased to have +it.” + +“Oh, it is very well as a finish to the toilet. It looks very neat on a +black coat buttoned up.” + +“And makes you resemble the Prince of Wales or the Duke of Reichstadt.” + +“It is for that reason you see me so early.” + +“Because you have the order of Charles III., and you wish to announce +the good news to me?” + +“No, because I passed the night writing letters,—five-and-twenty +despatches. I returned home at daybreak, and strove to sleep; but my +head ached and I got up to have a ride for an hour. At the Bois de +Boulogne, _ennui_ and hunger attacked me at once,—two enemies who +rarely accompany each other, and who are yet leagued against me, a sort +of Carlo-republican alliance. I then recollected you gave a breakfast +this morning, and here I am. I am hungry, feed me; I am bored, amuse +me.” + +“It is my duty as your host,” returned Albert, ringing the bell, while +Lucien turned over, with his gold-mounted cane, the papers that lay on +the table. “Germain, a glass of sherry and a biscuit. In the meantime, +my dear Lucien, here are cigars—contraband, of course—try them, and +persuade the minister to sell us such instead of poisoning us with +cabbage leaves.” + +“_Peste!_ I will do nothing of the kind; the moment they come from +government you would find them execrable. Besides, that does not +concern the home but the financial department. Address yourself to M. +Humann, section of the indirect contributions, corridor A., No. 26.” + +“On my word,” said Albert, “you astonish me by the extent of your +knowledge. Take a cigar.” + +“Really, my dear Albert,” replied Lucien, lighting a manilla at a +rose-colored taper that burnt in a beautifully enamelled stand—“how +happy you are to have nothing to do. You do not know your own good +fortune!” + +“And what would you do, my dear diplomatist,” replied Morcerf, with a +slight degree of irony in his voice, “if you did nothing? What? private +secretary to a minister, plunged at once into European cabals and +Parisian intrigues; having kings, and, better still, queens, to +protect, parties to unite, elections to direct; making more use of your +cabinet with your pen and your telegraph than Napoleon did of his +battle-fields with his sword and his victories; possessing +five-and-twenty thousand francs a year, besides your place; a horse, +for which Château-Renaud offered you four hundred louis, and which you +would not part with; a tailor who never disappoints you; with the +opera, the jockey-club, and other diversions, can you not amuse +yourself? Well, I will amuse you.” + +“How?” + +“By introducing to you a new acquaintance.” + +“A man or a woman?” + +“A man.” + +“I know so many men already.” + +“But you do not know this man.” + +“Where does he come from—the end of the world?” + +“Farther still, perhaps.” + +“The deuce! I hope he does not bring our breakfast with him.” + +“Oh, no; our breakfast comes from my father’s kitchen. Are you hungry?” + +“Humiliating as such a confession is, I am. But I dined at M. de +Villefort’s, and lawyers always give you very bad dinners. You would +think they felt some remorse; did you ever remark that?” + +“Ah, depreciate other persons’ dinners; you ministers give such +splendid ones.” + +“Yes; but we do not invite people of fashion. If we were not forced to +entertain a parcel of country boobies because they think and vote with +us, we should never dream of dining at home, I assure you.” + +“Well, take another glass of sherry and another biscuit.” + +“Willingly. Your Spanish wine is excellent. You see we were quite right +to pacify that country.” + +“Yes; but Don Carlos?” + +“Well, Don Carlos will drink Bordeaux, and in ten years we will marry +his son to the little queen.” + +“You will then obtain the Golden Fleece, if you are still in the +ministry.” + +“I think, Albert, you have adopted the system of feeding me on smoke +this morning.” + +“Well, you must allow it is the best thing for the stomach; but I hear +Beauchamp in the next room; you can dispute together, and that will +pass away the time.” + +“About what?” + +“About the papers.” + +“My dear friend,” said Lucien with an air of sovereign contempt, “do I +ever read the papers?” + +“Then you will dispute the more.” + +“M. Beauchamp,” announced the servant. “Come in, come in,” said Albert, +rising and advancing to meet the young man. “Here is Debray, who +detests you without reading you, so he says.” + +“He is quite right,” returned Beauchamp; “for I criticise him without +knowing what he does. Good-day, commander!” + +“Ah, you know that already,” said the private secretary, smiling and +shaking hands with him. + +“_Pardieu!_” + +“And what do they say of it in the world?” + +“In which world? we have so many worlds in the year of grace 1838.” + +“In the entire political world, of which you are one of the leaders.” + +“They say that it is quite fair, and that sowing so much red, you ought +to reap a little blue.” + +“Come, come, that is not bad!” said Lucien. “Why do you not join our +party, my dear Beauchamp? With your talents you would make your fortune +in three or four years.” + +“I only await one thing before following your advice; that is, a +minister who will hold office for six months. My dear Albert, one word, +for I must give poor Lucien a respite. Do we breakfast or dine? I must +go to the Chamber, for our life is not an idle one.” + +“You only breakfast; I await two persons, and the instant they arrive +we shall sit down to table.” + + + + Chapter 40. The Breakfast + +And what sort of persons do you expect to breakfast?” said Beauchamp. + +“A gentleman, and a diplomatist.” + +“Then we shall have to wait two hours for the gentleman, and three for +the diplomatist. I shall come back to dessert; keep me some +strawberries, coffee, and cigars. I shall take a cutlet on my way to +the Chamber.” + +“Do not do anything of the sort; for were the gentleman a Montmorency, +and the diplomatist a Metternich, we will breakfast at eleven; in the +meantime, follow Debray’s example, and take a glass of sherry and a +biscuit.” + +“Be it so; I will stay; I must do something to distract my thoughts.” + +“You are like Debray, and yet it seems to me that when the minister is +out of spirits, the opposition ought to be joyous.” + +“Ah, you do not know with what I am threatened. I shall hear this +morning that M. Danglars make a speech at the Chamber of Deputies, and +at his wife’s this evening I shall hear the tragedy of a peer of +France. The devil take the constitutional government, and since we had +our choice, as they say, at least, how could we choose that?” + +“I understand; you must lay in a stock of hilarity.” + +“Do not run down M. Danglars’ speeches,” said Debray; “he votes for +you, for he belongs to the opposition.” + +“_Pardieu_, that is exactly the worst of all. I am waiting until you +send him to speak at the Luxembourg, to laugh at my ease.” + +“My dear friend,” said Albert to Beauchamp, “it is plain that the +affairs of Spain are settled, for you are most desperately out of humor +this morning. Recollect that Parisian gossip has spoken of a marriage +between myself and Mlle. Eugénie Danglars; I cannot in conscience, +therefore, let you run down the speeches of a man who will one day say +to me, ‘Vicomte, you know I give my daughter two millions.’” + +“Ah, this marriage will never take place,” said Beauchamp. “The king +has made him a baron, and can make him a peer, but he cannot make him a +gentleman, and the Count of Morcerf is too aristocratic to consent, for +the paltry sum of two million francs, to a _mésalliance_. The Viscount +of Morcerf can only wed a marchioness.” + +“But two million francs make a nice little sum,” replied Morcerf. + +“It is the social capital of a theatre on the boulevard, or a railroad +from the Jardin des Plantes to La Râpée.” + +“Never mind what he says, Morcerf,” said Debray, “do you marry her. You +marry a money-bag label, it is true; well, but what does that matter? +It is better to have a blazon less and a figure more on it. You have +seven martlets on your arms; give three to your wife, and you will +still have four; that is one more than M. de Guise had, who so nearly +became King of France, and whose cousin was Emperor of Germany.” + +“On my word, I think you are right, Lucien,” said Albert absently. + +“To be sure; besides, every millionaire is as noble as a bastard—that +is, he can be.” + +“Do not say that, Debray,” returned Beauchamp, laughing, “for here is +Château-Renaud, who, to cure you of your mania for paradoxes, will pass +the sword of Renaud de Montauban, his ancestor, through your body.” + +“He will sully it then,” returned Lucien; “for I am low—very low.” + +“Oh, heavens,” cried Beauchamp, “the minister quotes Béranger, what +shall we come to next?” + +“M. de Château-Renaud—M. Maximilian Morrel,” said the servant, +announcing two fresh guests. + +“Now, then, to breakfast,” said Beauchamp; “for, if I remember, you +told me you only expected two persons, Albert.” + +“Morrel,” muttered Albert—“Morrel—who is he?” + +But before he had finished, M. de Château-Renaud, a handsome young man +of thirty, gentleman all over,—that is, with the figure of a Guiche and +the wit of a Mortemart,—took Albert’s hand. + +“My dear Albert,” said he, “let me introduce to you M. Maximilian +Morrel, captain of Spahis, my friend; and what is more—however the man +speaks for himself—my preserver. Salute my hero, viscount.” + +And he stepped on one side to give place to a young man of refined and +dignified bearing, with large and open brow, piercing eyes, and black +moustache, whom our readers have already seen at Marseilles, under +circumstances sufficiently dramatic not to be forgotten. A rich +uniform, half French, half Oriental, set off his graceful and stalwart +figure, and his broad chest was decorated with the order of the Legion +of Honor. The young officer bowed with easy and elegant politeness. + +“Monsieur,” said Albert with affectionate courtesy, “the count of +Château-Renaud knew how much pleasure this introduction would give me; +you are his friend, be ours also.” + +“Well said,” interrupted Château-Renaud; “and pray that, if you should +ever be in a similar predicament, he may do as much for you as he did +for me.” + +“What has he done?” asked Albert. + +“Oh, nothing worth speaking of,” said Morrel; “M. de Château-Renaud +exaggerates.” + +“Not worth speaking of?” cried Château-Renaud; “life is not worth +speaking of!—that is rather too philosophical, on my word, Morrel. It +is very well for you, who risk your life every day, but for me, who +only did so once——” + +“We gather from all this, baron, that Captain Morrel saved your life.” + +“Exactly so.” + +“On what occasion?” asked Beauchamp. + +“Beauchamp, my good fellow, you know I am starving,” said Debray: “do +not set him off on some long story.” + +“Well, I do not prevent your sitting down to table,” replied Beauchamp, +“Château-Renaud can tell us while we eat our breakfast.” + +“Gentlemen,” said Morcerf, “it is only a quarter past ten, and I expect +someone else.” + +“Ah, true, a diplomatist!” observed Debray. + +“Diplomat or not, I don’t know; I only know that he charged himself on +my account with a mission, which he terminated so entirely to my +satisfaction, that had I been king, I should have instantly created him +knight of all my orders, even had I been able to offer him the Golden +Fleece and the Garter.” + +“Well, since we are not to sit down to table,” said Debray, “take a +glass of sherry, and tell us all about it.” + +“You all know that I had the fancy of going to Africa.” + +“It is a road your ancestors have traced for you,” said Albert +gallantly. + +“Yes? but I doubt that your object was like theirs—to rescue the Holy +Sepulchre.” + +“You are quite right, Beauchamp,” observed the young aristocrat. “It +was only to fight as an amateur. I cannot bear duelling ever since two +seconds, whom I had chosen to arrange an affair, forced me to break the +arm of one of my best friends, one whom you all know—poor Franz +d’Épinay.” + +“Ah, true,” said Debray, “you did fight some time ago; about what?” + +20235m + + + +“The devil take me, if I remember,” returned Château-Renaud. “But I +recollect perfectly one thing, that, being unwilling to let such +talents as mine sleep, I wished to try upon the Arabs the new pistols +that had been given to me. In consequence I embarked for Oran, and went +from thence to Constantine, where I arrived just in time to witness the +raising of the siege. I retreated with the rest, for eight-and-forty +hours. I endured the rain during the day, and the cold during the night +tolerably well, but the third morning my horse died of cold. Poor +brute—accustomed to be covered up and to have a stove in the stable, +the Arabian finds himself unable to bear ten degrees of cold in +Arabia.” + +“That’s why you want to purchase my English horse,” said Debray, “you +think he will bear the cold better.” + +“You are mistaken, for I have made a vow never to return to Africa.” + +“You were very much frightened, then?” asked Beauchamp. + +“Well, yes, and I had good reason to be so,” replied Château-Renaud. “I +was retreating on foot, for my horse was dead. Six Arabs came up, full +gallop, to cut off my head. I shot two with my double-barrelled gun, +and two more with my pistols, but I was then disarmed, and two were +still left; one seized me by the hair (that is why I now wear it so +short, for no one knows what may happen), the other swung a yataghan, +and I already felt the cold steel on my neck, when this gentleman whom +you see here charged them, shot the one who held me by the hair, and +cleft the skull of the other with his sabre. He had assigned himself +the task of saving a man’s life that day; chance caused that man to be +myself. When I am rich I will order a statue of Chance from Klagmann or +Marochetti.” + +“Yes,” said Morrel, smiling, “it was the 5th of September, the +anniversary of the day on which my father was miraculously preserved; +therefore, as far as it lies in my power, I endeavor to celebrate it by +some——” + +20237m + + + +“Heroic action,” interrupted Château-Renaud. “I was chosen. But that is +not all—after rescuing me from the sword, he rescued me from the cold, +not by sharing his cloak with me, like St. Martin, but by giving me the +whole; then from hunger by sharing with me—guess what?” + +“A Strasbourg pie?” asked Beauchamp. + +“No, his horse; of which we each of us ate a slice with a hearty +appetite. It was very hard.” + +“The horse?” said Morcerf, laughing. + +“No, the sacrifice,” returned Château-Renaud; “ask Debray if he would +sacrifice his English steed for a stranger?” + +“Not for a stranger,” said Debray, “but for a friend I might, perhaps.” + +“I divined that you would become mine, count,” replied Morrel; +“besides, as I had the honor to tell you, heroism or not, sacrifice or +not, that day I owed an offering to bad fortune in recompense for the +favors good fortune had on other days granted to us.” + +“The history to which M. Morrel alludes,” continued Château-Renaud, “is +an admirable one, which he will tell you some day when you are better +acquainted with him; today let us fill our stomachs, and not our +memories. What time do you breakfast, Albert?” + +“At half-past ten.” + +“Precisely?” asked Debray, taking out his watch. + +“Oh, you will give me five minutes’ grace,” replied Morcerf, “for I +also expect a preserver.” + +“Of whom?” + +“Of myself,” cried Morcerf; “_parbleu!_ do you think I cannot be saved +as well as anyone else, and that there are only Arabs who cut off +heads? Our breakfast is a philanthropic one, and we shall have at +table—at least, I hope so—two benefactors of humanity.” + +“What shall we do?” said Debray; “we have only one Monthyon prize.” + +“Well, it will be given to someone who has done nothing to deserve it,” +said Beauchamp; “that is the way the Academy mostly escapes from the +dilemma.” + +“And where does he come from?” asked Debray. “You have already answered +the question once, but so vaguely that I venture to put it a second +time.” + +“Really,” said Albert, “I do not know; when I invited him three months +ago, he was then at Rome, but since that time who knows where he may +have gone?” + +“And you think him capable of being exact?” demanded Debray. + +“I think him capable of everything.” + +“Well, with the five minutes’ grace, we have only ten left.” + +“I will profit by them to tell you something about my guest.” + +“I beg pardon,” interrupted Beauchamp; “are there any materials for an +article in what you are going to tell us?” + +“Yes, and for a most curious one.” + +“Go on, then, for I see I shall not get to the Chamber this morning, +and I must make up for it.” + +“I was at Rome during the last Carnival.” + +“We know that,” said Beauchamp. + +“Yes, but what you do not know is that I was carried off by bandits.” + +“There are no bandits,” cried Debray. + +“Yes there are, and most hideous, or rather most admirable ones, for I +found them ugly enough to frighten me.” + +“Come, my dear Albert,” said Debray, “confess that your cook is +behindhand, that the oysters have not arrived from Ostend or Marennes, +and that, like Madame de Maintenon, you are going to replace the dish +by a story. Say so at once; we are sufficiently well-bred to excuse +you, and to listen to your history, fabulous as it promises to be.” + +“And I say to you, fabulous as it may seem, I tell it as a true one +from beginning to end. The brigands had carried me off, and conducted +me to a gloomy spot, called the Catacombs of Saint Sebastian.” + +“I know it,” said Château-Renaud; “I narrowly escaped catching a fever +there.” + +“And I did more than that,” replied Morcerf, “for I caught one. I was +informed that I was prisoner until I paid the sum of 4,000 Roman +crowns—about 24,000 francs. Unfortunately, I had not above 1,500. I was +at the end of my journey and of my credit. I wrote to Franz—and were he +here he would confirm every word—I wrote then to Franz that if he did +not come with the four thousand crowns before six, at ten minutes past +I should have gone to join the blessed saints and glorious martyrs in +whose company I had the honor of being; and Signor Luigi Vampa, such +was the name of the chief of these bandits, would have scrupulously +kept his word.” + +“But Franz did come with the four thousand crowns,” said +Château-Renaud. “A man whose name is Franz d’Épinay or Albert de +Morcerf has not much difficulty in procuring them.” + +“No, he arrived accompanied simply by the guest I am going to present +to you.” + +“Ah, this gentleman is a Hercules killing Cacus, a Perseus freeing +Andromeda.” + +“No, he is a man about my own size.” + +“Armed to the teeth?” + +“He had not even a knitting-needle.” + +“But he paid your ransom?” + +“He said two words to the chief and I was free.” + +“And they apologized to him for having carried you off?” said +Beauchamp. + +“Just so.” + +“Why, he is a second Ariosto.” + +“No, his name is the Count of Monte Cristo.” + +“There is no Count of Monte Cristo” said Debray. + +“I do not think so,” added Château-Renaud, with the air of a man who +knows the whole of the European nobility perfectly. + +“Does anyone know anything of a Count of Monte Cristo?” + +“He comes possibly from the Holy Land, and one of his ancestors +possessed Calvary, as the Mortemarts did the Dead Sea.” + +“I think I can assist your researches,” said Maximilian. “Monte Cristo +is a little island I have often heard spoken of by the old sailors my +father employed—a grain of sand in the centre of the Mediterranean, an +atom in the infinite.” + +“Precisely!” cried Albert. “Well, he of whom I speak is the lord and +master of this grain of sand, of this atom; he has purchased the title +of count somewhere in Tuscany.” + +“He is rich, then?” + +“I believe so.” + +“But that ought to be visible.” + +“That is what deceives you, Debray.” + +“I do not understand you.” + +“Have you read the _Arabian Nights_?” + +“What a question!” + +“Well, do you know if the persons you see there are rich or poor, if +their sacks of wheat are not rubies or diamonds? They seem like poor +fishermen, and suddenly they open some mysterious cavern filled with +the wealth of the Indies.” + +“Which means?” + +“Which means that my Count of Monte Cristo is one of those fishermen. +He has even a name taken from the book, since he calls himself Sinbad +the Sailor, and has a cave filled with gold.” + +“And you have seen this cavern, Morcerf?” asked Beauchamp. + +“No, but Franz has; for heaven’s sake, not a word of this before him. +Franz went in with his eyes blindfolded, and was waited on by mutes and +by women to whom Cleopatra was a painted strumpet. Only he is not quite +sure about the women, for they did not come in until after he had taken +hashish, so that what he took for women might have been simply a row of +statues.” + +The two young men looked at Morcerf as if to say,—“Are you mad, or are +you laughing at us?” + +“And I also,” said Morrel thoughtfully, “have heard something like this +from an old sailor named Penelon.” + +“Ah,” cried Albert, “it is very lucky that M. Morrel comes to aid me; +you are vexed, are you not, that he thus gives a clew to the +labyrinth?” + +“My dear Albert,” said Debray, “what you tell us is so extraordinary.” + +“Ah, because your ambassadors and your consuls do not tell you of +them—they have no time. They are too much taken up with interfering in +the affairs of their countrymen who travel.” + +“Now you get angry, and attack our poor agents. How will you have them +protect you? The Chamber cuts down their salaries every day, so that +now they have scarcely any. Will you be ambassador, Albert? I will send +you to Constantinople.” + +“No, lest on the first demonstration I make in favor of Mehemet Ali, +the Sultan send me the bowstring, and make my secretaries strangle me.” + +“You say very true,” responded Debray. + +“Yes,” said Albert, “but this has nothing to do with the existence of +the Count of Monte Cristo.” + +“_Pardieu!_ everyone exists.” + +“Doubtless, but not in the same way; everyone has not black slaves, a +princely retinue, an arsenal of weapons that would do credit to an +Arabian fortress, horses that cost six thousand francs apiece, and +Greek mistresses.” + +“Have you seen the Greek mistress?” + +“I have both seen and heard her. I saw her at the theatre, and heard +her one morning when I breakfasted with the count.” + +“He eats, then?” + +“Yes; but so little, it can hardly be called eating.” + +“He must be a vampire.” + +“Laugh, if you will; the Countess G——, who knew Lord Ruthven, declared +that the count was a vampire.” + +“Ah, capital,” said Beauchamp. “For a man not connected with +newspapers, here is the pendant to the famous sea-serpent of the +_Constitutionnel_.” + +“Wild eyes, the iris of which contracts or dilates at pleasure,” said +Debray; “facial angle strongly developed, magnificent forehead, livid +complexion, black beard, sharp and white teeth, politeness +unexceptionable.” + +“Just so, Lucien,” returned Morcerf; “you have described him feature +for feature. Yes, keen and cutting politeness. This man has often made +me shudder; and one day when we were viewing an execution, I thought I +should faint, more from hearing the cold and calm manner in which he +spoke of every description of torture, than from the sight of the +executioner and the culprit.” + +“Did he not conduct you to the ruins of the Colosseum and suck your +blood?” asked Beauchamp. + +“Or, having delivered you, make you sign a flaming parchment, +surrendering your soul to him as Esau did his birth-right?” + +“Rail on, rail on at your ease, gentlemen,” said Morcerf, somewhat +piqued. “When I look at you Parisians, idlers on the Boulevard de Gand +or the Bois de Boulogne, and think of this man, it seems to me we are +not of the same race.” + +“I am highly flattered,” returned Beauchamp. + +“At the same time,” added Château-Renaud, “your Count of Monte Cristo +is a very fine fellow, always excepting his little arrangements with +the Italian banditti.” + +“There are no Italian banditti,” said Debray. + +“No vampire,” cried Beauchamp. + +“No Count of Monte Cristo” added Debray. “There is half-past ten +striking, Albert.” + +20243m + + + +“Confess you have dreamed this, and let us sit down to breakfast,” +continued Beauchamp. + +But the sound of the clock had not died away when Germain announced, +“His excellency the Count of Monte Cristo.” The involuntary start +everyone gave proved how much Morcerf’s narrative had impressed them, +and Albert himself could not wholly refrain from manifesting sudden +emotion. He had not heard a carriage stop in the street, or steps in +the antechamber; the door had itself opened noiselessly. The count +appeared, dressed with the greatest simplicity, but the most fastidious +dandy could have found nothing to cavil at in his toilet. Every article +of dress—hat, coat, gloves, and boots—was from the first makers. He +seemed scarcely five-and-thirty. But what struck everybody was his +extreme resemblance to the portrait Debray had drawn. The count +advanced, smiling, into the centre of the room, and approached Albert, +who hastened towards him holding out his hand in a ceremonial manner. + +“Punctuality,” said Monte Cristo, “is the politeness of kings, +according to one of your sovereigns, I think; but it is not the same +with travellers. However, I hope you will excuse the two or three +seconds I am behindhand; five hundred leagues are not to be +accomplished without some trouble, and especially in France, where, it +seems, it is forbidden to beat the postilions.” + +“My dear count,” replied Albert, “I was announcing your visit to some +of my friends, whom I had invited in consequence of the promise you did +me the honor to make, and whom I now present to you. They are the Count +of Château-Renaud, whose nobility goes back to the twelve peers, and +whose ancestors had a place at the Round Table; M. Lucien Debray, +private secretary to the minister of the interior; M. Beauchamp, an +editor of a paper, and the terror of the French government, but of +whom, in spite of his national celebrity, you perhaps have not heard in +Italy, since his paper is prohibited there; and M. Maximilian Morrel, +captain of Spahis.” + +At this name the count, who had hitherto saluted everyone with +courtesy, but at the same time with coldness and formality, stepped a +pace forward, and a slight tinge of red colored his pale cheeks. + +“You wear the uniform of the new French conquerors, monsieur,” said he; +“it is a handsome uniform.” + +No one could have said what caused the count’s voice to vibrate so +deeply, and what made his eye flash, which was in general so clear, +lustrous, and limpid when he pleased. + +“You have never seen our Africans, count?” said Albert. + +“Never,” replied the count, who was by this time perfectly master of +himself again. + +“Well, beneath this uniform beats one of the bravest and noblest hearts +in the whole army.” + +“Oh, M. de Morcerf,” interrupted Morrel. + +“Let me go on, captain. And we have just heard,” continued Albert, “of +a new deed of his, and so heroic a one, that, although I have seen him +today for the first time, I request you to allow me to introduce him as +my friend.” + +At these words it was still possible to observe in Monte Cristo the +concentrated look, changing color, and slight trembling of the eyelid +that show emotion. + +“Ah, you have a noble heart,” said the count; “so much the better.” + +This exclamation, which corresponded to the count’s own thought rather +than to what Albert was saying, surprised everybody, and especially +Morrel, who looked at Monte Cristo with wonder. But, at the same time, +the intonation was so soft that, however strange the speech might seem, +it was impossible to be offended at it. + +20245m + + + +“Why should he doubt it?” said Beauchamp to Château-Renaud. + +“In reality,” replied the latter, who, with his aristocratic glance and +his knowledge of the world, had penetrated at once all that was +penetrable in Monte Cristo, “Albert has not deceived us, for the count +is a most singular being. What say you, Morrel!” + +“_Ma foi_, he has an open look about him that pleases me, in spite of +the singular remark he has made about me.” + +“Gentlemen,” said Albert, “Germain informs me that breakfast is ready. +My dear count, allow me to show you the way.” They passed silently into +the breakfast-room, and everyone took his place. + +“Gentlemen,” said the count, seating himself, “permit me to make a +confession which must form my excuse for any improprieties I may +commit. I am a stranger, and a stranger to such a degree, that this is +the first time I have ever been at Paris. The French way of living is +utterly unknown to me, and up to the present time I have followed the +Eastern customs, which are entirely in contrast to the Parisian. I beg +you, therefore, to excuse if you find anything in me too Turkish, too +Italian, or too Arabian. Now, then, let us breakfast.” + +“With what an air he says all this,” muttered Beauchamp; “decidedly he +is a great man.” + +“A great man in his own country,” added Debray. + +“A great man in every country, M. Debray,” said Château-Renaud. + +The count was, it may be remembered, a most temperate guest. Albert +remarked this, expressing his fears lest, at the outset, the Parisian +mode of life should displease the traveller in the most essential +point. + +“My dear count,” said he, “I fear one thing, and that is, that the fare +of the Rue du Helder is not so much to your taste as that of the Piazza +di Spagna. I ought to have consulted you on the point, and have had +some dishes prepared expressly.” + +“Did you know me better,” returned the count, smiling, “you would not +give one thought of such a thing for a traveller like myself, who has +successively lived on macaroni at Naples, polenta at Milan, olla +podrida at Valencia, pilau at Constantinople, curry in India, and +swallows’ nests in China. I eat everywhere, and of everything, only I +eat but little; and today, that you reproach me with my want of +appetite, is my day of appetite, for I have not eaten since yesterday +morning.” + +“What,” cried all the guests, “you have not eaten for four-and-twenty +hours?” + +“No,” replied the count; “I was forced to go out of my road to obtain +some information near Nîmes, so that I was somewhat late, and therefore +I did not choose to stop.” + +“And you ate in your carriage?” asked Morcerf. + +“No, I slept, as I generally do when I am weary without having the +courage to amuse myself, or when I am hungry without feeling inclined +to eat.” + +“But you can sleep when you please, monsieur?” said Morrel. + +“Yes.” + +“You have a recipe for it?” + +“An infallible one.” + +“That would be invaluable to us in Africa, who have not always any food +to eat, and rarely anything to drink.” + +“Yes,” said Monte Cristo; “but, unfortunately, a recipe excellent for a +man like myself would be very dangerous applied to an army, which might +not awake when it was needed.” + +“May we inquire what is this recipe?” asked Debray. + +“Oh, yes,” returned Monte Cristo; “I make no secret of it. It is a +mixture of excellent opium, which I fetched myself from Canton in order +to have it pure, and the best hashish which grows in the East—that is, +between the Tigris and the Euphrates. These two ingredients are mixed +in equal proportions, and formed into pills. Ten minutes after one is +taken, the effect is produced. Ask Baron Franz d’Épinay; I think he +tasted them one day.” + +“Yes,” replied Morcerf, “he said something about it to me.” + +“But,” said Beauchamp, who, as became a journalist, was very +incredulous, “you always carry this drug about you?” + +“Always.” + +“Would it be an indiscretion to ask to see those precious pills?” +continued Beauchamp, hoping to take him at a disadvantage. + +“No, monsieur,” returned the count; and he drew from his pocket a +marvellous casket, formed out of a single emerald and closed by a +golden lid which unscrewed and gave passage to a small greenish colored +pellet about the size of a pea. This ball had an acrid and penetrating +odor. There were four or five more in the emerald, which would contain +about a dozen. The casket passed around the table, but it was more to +examine the admirable emerald than to see the pills that it passed from +hand to hand. + +“And is it your cook who prepares these pills?” asked Beauchamp. + +“Oh, no, monsieur,” replied Monte Cristo; “I do not thus betray my +enjoyments to the vulgar. I am a tolerable chemist, and prepare my +pills myself.” + +“This is a magnificent emerald, and the largest I have ever seen,” said +Château-Renaud, “although my mother has some remarkable family jewels.” + +“I had three similar ones,” returned Monte Cristo. “I gave one to the +Sultan, who mounted it in his sabre; another to our holy father the +Pope, who had it set in his tiara, opposite to one nearly as large, +though not so fine, given by the Emperor Napoleon to his predecessor, +Pius VII. I kept the third for myself, and I had it hollowed out, which +reduced its value, but rendered it more commodious for the purpose I +intended.” + +Everyone looked at Monte Cristo with astonishment; he spoke with so +much simplicity that it was evident he spoke the truth, or that he was +mad. However, the sight of the emerald made them naturally incline to +the former belief. + +“And what did these two sovereigns give you in exchange for these +magnificent presents?” asked Debray. + +“The Sultan, the liberty of a woman,” replied the Count; “the Pope, the +life of a man; so that once in my life I have been as powerful as if +heaven had brought me into the world on the steps of a throne.” + +“And it was Peppino you saved, was it not?” cried Morcerf; “it was for +him that you obtained pardon?” + +“Perhaps,” returned the count, smiling. + +“My dear count, you have no idea what pleasure it gives me to hear you +speak thus,” said Morcerf. “I had announced you beforehand to my +friends as an enchanter of the _Arabian Nights_, a wizard of the Middle +Ages; but the Parisians are so subtle in paradoxes that they mistake +for caprices of the imagination the most incontestable truths, when +these truths do not form a part of their daily existence. For example, +here is Debray who reads, and Beauchamp who prints, every day, ‘A +member of the Jockey Club has been stopped and robbed on the +Boulevard;’ ‘four persons have been assassinated in the Rue St. Denis’ +or ‘the Faubourg St. Germain;’ ‘ten, fifteen, or twenty thieves, have +been arrested in a _café_ on the Boulevard du Temple, or in the Thermes +de Julien,’—and yet these same men deny the existence of the bandits in +the Maremma, the Campagna di Romana, or the Pontine Marshes. Tell them +yourself that I was taken by bandits, and that without your generous +intercession I should now have been sleeping in the Catacombs of St. +Sebastian, instead of receiving them in my humble abode in the Rue du +Helder.” + +“Ah,” said Monte Cristo “you promised me never to mention that +circumstance.” + +“It was not I who made that promise,” cried Morcerf; “it must have been +someone else whom you have rescued in the same manner, and whom you +have forgotten. Pray speak of it, for I shall not only, I trust, relate +the little I do know, but also a great deal I do not know.” + +“It seems to me,” returned the count, smiling, “that you played a +sufficiently important part to know as well as myself what happened.” + +20249m + + + +“Well, you promise me, if I tell all I know, to relate, in your turn, +all that I do not know?” + +“That is but fair,” replied Monte Cristo. + +“Well,” said Morcerf, “for three days I believed myself the object of +the attentions of a masque, whom I took for a descendant of Tullia or +Poppæa, while I was simply the object of the attentions of a +_contadina_, and I say _contadina_ to avoid saying peasant girl. What I +know is, that, like a fool, a greater fool than he of whom I spoke just +now, I mistook for this peasant girl a young bandit of fifteen or +sixteen, with a beardless chin and slim waist, and who, just as I was +about to imprint a chaste salute on his lips, placed a pistol to my +head, and, aided by seven or eight others, led, or rather dragged me, +to the Catacombs of St. Sebastian, where I found a highly educated +brigand chief perusing Cæsar’s _Commentaries_, and who deigned to leave +off reading to inform me, that unless the next morning, before six +o’clock, four thousand piastres were paid into his account at his +banker’s, at a quarter past six I should have ceased to exist. The +letter is still to be seen, for it is in Franz d’Épinay’s possession, +signed by me, and with a postscript of M. Luigi Vampa. This is all I +know, but I know not, count, how you contrived to inspire so much +respect in the bandits of Rome who ordinarily have so little respect +for anything. I assure you, Franz and I were lost in admiration.” + +“Nothing more simple,” returned the count. “I had known the famous +Vampa for more than ten years. When he was quite a child, and only a +shepherd, I gave him a few gold pieces for showing me my way, and he, +in order to repay me, gave me a poniard, the hilt of which he had +carved with his own hand, and which you may have seen in my collection +of arms. In after years, whether he had forgotten this interchange of +presents, which ought to have cemented our friendship, or whether he +did not recollect me, he sought to take me, but, on the contrary, it +was I who captured him and a dozen of his band. I might have handed him +over to Roman justice, which is somewhat expeditious, and which would +have been particularly so with him; but I did nothing of the sort—I +suffered him and his band to depart.” + +“With the condition that they should sin no more,” said Beauchamp, +laughing. “I see they kept their promise.” + +“No, monsieur,” returned Monte Cristo “upon the simple condition that +they should respect myself and my friends. Perhaps what I am about to +say may seem strange to you, who are socialists, and vaunt humanity and +your duty to your neighbor, but I never seek to protect a society which +does not protect me, and which I will even say, generally occupies +itself about me only to injure me; and thus by giving them a low place +in my esteem, and preserving a neutrality towards them, it is society +and my neighbor who are indebted to me.” + +“Bravo,” cried Château-Renaud; “you are the first man I ever met +sufficiently courageous to preach egotism. Bravo, count, bravo!” + +“It is frank, at least,” said Morrel. “But I am sure that the count +does not regret having once deviated from the principles he has so +boldly avowed.” + +“How have I deviated from those principles, monsieur?” asked Monte +Cristo, who could not help looking at Morrel with so much intensity, +that two or three times the young man had been unable to sustain that +clear and piercing glance. + +“Why, it seems to me,” replied Morrel, “that in delivering M. de +Morcerf, whom you did not know, you did good to your neighbor and to +society.” + +“Of which he is the brightest ornament,” said Beauchamp, drinking off a +glass of champagne. + +“My dear count,” cried Morcerf, “you are at fault—you, one of the most +formidable logicians I know—and you must see it clearly proved that +instead of being an egotist, you are a philanthropist. Ah, you call +yourself Oriental, a Levantine, Maltese, Indian, Chinese; your family +name is Monte Cristo; Sinbad the Sailor is your baptismal appellation, +and yet the first day you set foot in Paris you instinctively display +the greatest virtue, or rather the chief defect, of us eccentric +Parisians,—that is, you assume the vices you have not, and conceal the +virtues you possess.” + +“My dear vicomte,” returned Monte Cristo, “I do not see, in all I have +done, anything that merits, either from you or these gentlemen, the +pretended eulogies I have received. You were no stranger to me, for I +knew you from the time I gave up two rooms to you, invited you to +breakfast with me, lent you one of my carriages, witnessed the Carnival +in your company, and saw with you from a window in the Piazza del +Popolo the execution that affected you so much that you nearly fainted. +I will appeal to any of these gentlemen, could I leave my guest in the +hands of a hideous bandit, as you term him? Besides, you know, I had +the idea that you could introduce me into some of the Paris salons when +I came to France. You might some time ago have looked upon this +resolution as a vague project, but today you see it was a reality, and +you must submit to it under penalty of breaking your word.” + +“I will keep it,” returned Morcerf; “but I fear that you will be much +disappointed, accustomed as you are to picturesque events and fantastic +horizons. Amongst us you will not meet with any of those episodes with +which your adventurous existence has so familiarized you; our +Chimborazo is Mortmartre, our Himalaya is Mount Valérien, our Great +Desert is the plain of Grenelle, where they are now boring an artesian +well to water the caravans. We have plenty of thieves, though not so +many as is said; but these thieves stand in far more dread of a +policeman than a lord. France is so prosaic, and Paris so civilized a +city, that you will not find in its eighty-five departments—I say +eighty-five, because I do not include Corsica—you will not find, then, +in these eighty-five departments a single hill on which there is not a +telegraph, or a grotto in which the commissary of police has not put up +a gaslamp. There is but one service I can render you, and for that I +place myself entirely at your orders, that is, to present, or make my +friends present, you everywhere; besides, you have no need of anyone to +introduce you—with your name, and your fortune, and your talent” (Monte +Cristo bowed with a somewhat ironical smile) “you can present yourself +everywhere, and be well received. I can be useful in one way only—if +knowledge of Parisian habits, of the means of rendering yourself +comfortable, or of the bazaars, can assist, you may depend upon me to +find you a fitting dwelling here. I do not dare offer to share my +apartments with you, as I shared yours at Rome—I, who do not profess +egotism, but am yet egotist _par excellence_; for, except myself, these +rooms would not hold a shadow more, unless that shadow were feminine.” + +“Ah,” said the count, “that is a most conjugal reservation; I recollect +that at Rome you said something of a projected marriage. May I +congratulate you?” + +“The affair is still in projection.” + +“And he who says in ‘projection,’ means already decided,” said Debray. + +“No,” replied Morcerf, “my father is most anxious about it; and I hope, +ere long, to introduce you, if not to my wife, at least to my +betrothed—Mademoiselle Eugénie Danglars.” + +“Eugénie Danglars,” said Monte Cristo; “tell me, is not her father +Baron Danglars?” + +“Yes,” returned Morcerf, “a baron of a new creation.” + +“What matter,” said Monte Cristo “if he has rendered the State services +which merit this distinction?” + +“Enormous ones,” answered Beauchamp. “Although in reality a Liberal, he +negotiated a loan of six millions for Charles X., in 1829, who made him +a baron and chevalier of the Legion of Honor; so that he wears the +ribbon, not, as you would think, in his waistcoat-pocket, but at his +button-hole.” + +“Ah,” interrupted Morcerf, laughing, “Beauchamp, Beauchamp, keep that +for the _Corsaire_ or the _Charivari_, but spare my future +father-in-law before me.” Then, turning to Monte Cristo, “You just now +spoke his name as if you knew the baron?” + +“I do not know him,” returned Monte Cristo; “but I shall probably soon +make his acquaintance, for I have a credit opened with him by the house +of Richard & Blount, of London, Arstein & Eskeles of Vienna, and +Thomson & French at Rome.” As he pronounced the two last names, the +count glanced at Maximilian Morrel. If the stranger expected to produce +an effect on Morrel, he was not mistaken—Maximilian started as if he +had been electrified. + +“Thomson & French,” said he; “do you know this house, monsieur?” + +20253m + + + +“They are my bankers in the capital of the Christian world,” returned +the count quietly. “Can my influence with them be of any service to +you?” + +“Oh, count, you could assist me perhaps in researches which have been, +up to the present, fruitless. This house, in past years, did ours a +great service, and has, I know not for what reason, always denied +having rendered us this service.” + +“I shall be at your orders,” said Monte Cristo bowing. + +“But,” continued Morcerf, “_à propos_ of Danglars,—we have strangely +wandered from the subject. We were speaking of a suitable habitation +for the Count of Monte Cristo. Come, gentlemen, let us all propose some +place. Where shall we lodge this new guest in our great capital?” + +“Faubourg Saint-Germain,” said Château-Renaud. “The count will find +there a charming hotel, with a court and garden.” + +“Bah! Château-Renaud,” returned Debray, “you only know your dull and +gloomy Faubourg Saint-Germain; do not pay any attention to him, +count—live in the Chaussée d’Antin, that’s the real centre of Paris.” + +“Boulevard de l’Opéra,” said Beauchamp; “the second floor—a house with +a balcony. The count will have his cushions of silver cloth brought +there, and as he smokes his chibouque, see all Paris pass before him.” + +“You have no idea, then, Morrel?” asked Château-Renaud; “you do not +propose anything.” + +“Oh, yes,” returned the young man, smiling; “on the contrary, I have +one, but I expected the count would be tempted by one of the brilliant +proposals made him, yet as he has not replied to any of them, I will +venture to offer him a suite of apartments in a charming hotel, in the +Pompadour style, that my sister has inhabited for a year, in the Rue +Meslay.” + +“You have a sister?” asked the count. + +“Yes, monsieur, a most excellent sister.” + +“Married?” + +“Nearly nine years.” + +“Happy?” asked the count again. + +“As happy as it is permitted to a human creature to be,” replied +Maximilian. “She married the man she loved, who remained faithful to us +in our fallen fortunes—Emmanuel Herbaut.” + +Monte Cristo smiled imperceptibly. + +“I live there during my leave of absence,” continued Maximilian; “and I +shall be, together with my brother-in-law Emmanuel, at the disposition +of the Count, whenever he thinks fit to honor us.” + +“One minute,” cried Albert, without giving Monte Cristo the time to +reply. “Take care, you are going to immure a traveller, Sinbad the +Sailor, a man who comes to see Paris; you are going to make a patriarch +of him.” + +20255m + + + +“Oh, no,” said Morrel; “my sister is five-and-twenty, my brother-in-law +is thirty, they are gay, young, and happy. Besides, the count will be +in his own house, and only see them when he thinks fit to do so.” + +“Thanks, monsieur,” said Monte Cristo; “I shall content myself with +being presented to your sister and her husband, if you will do me the +honor to introduce me; but I cannot accept the offer of anyone of these +gentlemen, since my habitation is already prepared.” + +“What,” cried Morcerf; “you are, then, going to a hotel—that will be +very dull for you.” + +“Was I so badly lodged at Rome?” said Monte Cristo smiling. + +“_Parbleu!_ at Rome you spent fifty thousand piastres in furnishing +your apartments, but I presume that you are not disposed to spend a +similar sum every day.” + +“It is not that which deterred me,” replied Monte Cristo; “but as I +determined to have a house to myself, I sent on my valet de chambre, +and he ought by this time to have bought the house and furnished it.” + +“But you have, then, a valet de chambre who knows Paris?” said +Beauchamp. + +“It is the first time he has ever been in Paris. He is black, and +cannot speak,” returned Monte Cristo. + +“It is Ali!” cried Albert, in the midst of the general surprise. + +“Yes, Ali himself, my Nubian mute, whom you saw, I think, at Rome.” + +“Certainly,” said Morcerf; “I recollect him perfectly. But how could +you charge a Nubian to purchase a house, and a mute to furnish it?—he +will do everything wrong.” + +“Undeceive yourself, monsieur,” replied Monte Cristo; “I am quite sure, +that, on the contrary, he will choose everything as I wish. He knows my +tastes, my caprices, my wants. He has been here a week, with the +instinct of a hound, hunting by himself. He will arrange everything for +me. He knew, that I should arrive today at ten o’clock; he was waiting +for me at nine at the Barrière de Fontainebleau. He gave me this paper; +it contains the number of my new abode; read it yourself,” and Monte +Cristo passed a paper to Albert. + +“Ah, that is really original,” said Beauchamp. + +“And very princely,” added Château-Renaud. + +“What, do you not know your house?” asked Debray. + +“No,” said Monte Cristo; “I told you I did not wish to be behind my +time; I dressed myself in the carriage, and descended at the viscount’s +door.” The young men looked at each other; they did not know if it was +a comedy Monte Cristo was playing, but every word he uttered had such +an air of simplicity, that it was impossible to suppose what he said +was false—besides, why should he tell a falsehood? + +“We must content ourselves, then,” said Beauchamp, “with rendering the +count all the little services in our power. I, in my quality of +journalist, open all the theatres to him.” + +“Thanks, monsieur,” returned Monte Cristo, “my steward has orders to +take a box at each theatre.” + +“Is your steward also a Nubian?” asked Debray. + +“No, he is a countryman of yours, if a Corsican is a countryman of +anyone’s. But you know him, M. de Morcerf.” + +“Is it that excellent M. Bertuccio, who understands hiring windows so +well?” + +“Yes, you saw him the day I had the honor of receiving you; he has been +a soldier, a smuggler—in fact, everything. I would not be quite sure +that he has not been mixed up with the police for some trifle—a stab +with a knife, for instance.” + +“And you have chosen this honest citizen for your steward,” said +Debray. “Of how much does he rob you every year?” + +“On my word,” replied the count, “not more than another. I am sure he +answers my purpose, knows no impossibility, and so I keep him.” + +“Then,” continued Château-Renaud, “since you have an establishment, a +steward, and a hotel in the Champs-Élysées, you only want a mistress.” +Albert smiled. He thought of the fair Greek he had seen in the count’s +box at the Argentina and Valle theatres. + +“I have something better than that,” said Monte Cristo; “I have a +slave. You procure your mistresses from the opera, the Vaudeville, or +the Variétés; I purchased mine at Constantinople; it cost me more, but +I have nothing to fear.” + +“But you forget,” replied Debray, laughing, “that we are Franks by name +and franks by nature, as King Charles said, and that the moment she +puts her foot in France your slave becomes free.” + +“Who will tell her?” + +“The first person who sees her.” + +“She only speaks Romaic.” + +“That is different.” + +“But at least we shall see her,” said Beauchamp, “or do you keep +eunuchs as well as mutes?” + +“Oh, no,” replied Monte Cristo; “I do not carry brutalism so far. +Everyone who surrounds me is free to quit me, and when they leave me +will no longer have any need of me or anyone else; it is for that +reason, perhaps, that they do not quit me.” + +They had long since passed to dessert and cigars. + +“My dear Albert,” said Debray, rising, “it is half-past two. Your guest +is charming, but you leave the best company to go into the worst +sometimes. I must return to the minister’s. I will tell him of the +count, and we shall soon know who he is.” + +“Take care,” returned Albert; “no one has been able to accomplish +that.” + +“Oh, we have three millions for our police; it is true they are almost +always spent beforehand, but, no matter, we shall still have fifty +thousand francs to spend for this purpose.” + +“And when you know, will you tell me?” + +“I promise you. _Au revoir_, Albert. Gentlemen, good morning.” + +As he left the room, Debray called out loudly, “My carriage.” + +“Bravo,” said Beauchamp to Albert; “I shall not go to the Chamber, but +I have something better to offer my readers than a speech of M. +Danglars.” + +“For heaven’s sake, Beauchamp,” returned Morcerf, “do not deprive me of +the merit of introducing him everywhere. Is he not peculiar?” + +“He is more than that,” replied Château-Renaud; “he is one of the most +extraordinary men I ever saw in my life. Are you coming, Morrel?” + +“Directly I have given my card to the count, who has promised to pay us +a visit at Rue Meslay, No. 14.” + +“Be sure I shall not fail to do so,” returned the count, bowing. + +And Maximilian Morrel left the room with the Baron de Château-Renaud, +leaving Monte Cristo alone with Morcerf. + + + + Chapter 41. The Presentation + +When Albert found himself alone with Monte Cristo, “My dear count,” +said he, “allow me to commence my services as _cicerone_ by showing you +a specimen of a bachelor’s apartment. You, who are accustomed to the +palaces of Italy, can amuse yourself by calculating in how many square +feet a young man who is not the worst lodged in Paris can live. As we +pass from one room to another, I will open the windows to let you +breathe.” + +Monte Cristo had already seen the breakfast-room and the salon on the +ground floor. Albert led him first to his _atelier_, which was, as we +have said, his favorite apartment. Monte Cristo quickly appreciated all +that Albert had collected here—old cabinets, Japanese porcelain, +Oriental stuffs, Venetian glass, arms from all parts of the +world—everything was familiar to him; and at the first glance he +recognized their date, their country, and their origin. + +Morcerf had expected he should be the guide; on the contrary, it was he +who, under the count’s guidance, followed a course of archæology, +mineralogy, and natural history. + +They descended to the first floor; Albert led his guest into the salon. +The salon was filled with the works of modern artists; there were +landscapes by Dupré, with their long reeds and tall trees, their lowing +oxen and marvellous skies; Delacroix’s Arabian cavaliers, with their +long white burnouses, their shining belts, their damasked arms, their +horses, who tore each other with their teeth while their riders +contended fiercely with their maces; _aquarelles_ of Boulanger, +representing Notre Dame de Paris with that vigor that makes the artist +the rival of the poet; there were paintings by Diaz, who makes his +flowers more beautiful than flowers, his suns more brilliant than the +sun; designs by Decamp, as vividly colored as those of Salvator Rosa, +but more poetic; _pastels_ by Giraud and Müller, representing children +like angels and women with the features of a virgin; sketches torn from +the album of Dauzats’ “Travels in the East,” that had been made in a +few seconds on the saddle of a camel, or beneath the dome of a +mosque—in a word, all that modern art can give in exchange and as +recompense for the art lost and gone with ages long since past. + +Albert expected to have something new this time to show to the +traveller, but, to his great surprise, the latter, without seeking for +the signatures, many of which, indeed, were only initials, named +instantly the author of every picture in such a manner that it was easy +to see that each name was not only known to him, but that each style +associated with it had been appreciated and studied by him. From the +salon they passed into the bedchamber; it was a model of taste and +simple elegance. A single portrait, signed by Léopold Robert, shone in +its carved and gilded frame. This portrait attracted the Count of Monte +Cristo’s attention, for he made three rapid steps in the chamber, and +stopped suddenly before it. + +It was the portrait of a young woman of five or six-and-twenty, with a +dark complexion, and light and lustrous eyes, veiled beneath long +lashes. She wore the picturesque costume of the Catalan fisherwomen, a +red and black bodice, and golden pins in her hair. She was looking at +the sea, and her form was outlined on the blue ocean and sky. The light +was so faint in the room that Albert did not perceive the pallor that +spread itself over the count’s visage, or the nervous heaving of his +chest and shoulders. Silence prevailed for an instant, during which +Monte Cristo gazed intently on the picture. + +“You have there a most charming mistress, viscount,” said the count in +a perfectly calm tone; “and this costume—a ball costume, +doubtless—becomes her admirably.” + +“Ah, monsieur,” returned Albert, “I would never forgive you this +mistake if you had seen another picture beside this. You do not know my +mother; she it is whom you see here. She had her portrait painted thus +six or eight years ago. This costume is a fancy one, it appears, and +the resemblance is so great that I think I still see my mother the same +as she was in 1830. The countess had this portrait painted during the +count’s absence. She doubtless intended giving him an agreeable +surprise; but, strange to say, this portrait seemed to displease my +father, and the value of the picture, which is, as you see, one of the +best works of Léopold Robert, could not overcome his dislike to it. It +is true, between ourselves, that M. de Morcerf is one of the most +assiduous peers at the Luxembourg, a general renowned for theory, but a +most mediocre amateur of art. It is different with my mother, who +paints exceedingly well, and who, unwilling to part with so valuable a +picture, gave it to me to put here, where it would be less likely to +displease M. de Morcerf, whose portrait, by Gros, I will also show you. +Excuse my talking of family matters, but as I shall have the honor of +introducing you to the count, I tell you this to prevent you making any +allusions to this picture. The picture seems to have a malign +influence, for my mother rarely comes here without looking at it, and +still more rarely does she look at it without weeping. This +disagreement is the only one that has ever taken place between the +count and countess, who are still as much united, although married more +than twenty years, as on the first day of their wedding.” + +20261m + + + +Monte Cristo glanced rapidly at Albert, as if to seek a hidden meaning +in his words, but it was evident the young man uttered them in the +simplicity of his heart. + +“Now,” said Albert, “that you have seen all my treasures, allow me to +offer them to you, unworthy as they are. Consider yourself as in your +own house, and to put yourself still more at your ease, pray accompany +me to the apartments of M. de Morcerf, he whom I wrote from Rome an +account of the services you rendered me, and to whom I announced your +promised visit, and I may say that both the count and countess +anxiously desire to thank you in person. You are somewhat _blasé_ I +know, and family scenes have not much effect on Sinbad the Sailor, who +has seen so many others. However, accept what I propose to you as an +initiation into Parisian life—a life of politeness, visiting, and +introductions.” + +Monte Cristo bowed without making any answer; he accepted the offer +without enthusiasm and without regret, as one of those conventions of +society which every gentleman looks upon as a duty. Albert summoned his +servant, and ordered him to acquaint M. and Madame de Morcerf of the +arrival of the Count of Monte Cristo. Albert followed him with the +count. When they arrived at the antechamber, above the door was visible +a shield, which, by its rich ornaments and its harmony with the rest of +the furniture, indicated the importance the owner attached to this +blazon. Monte Cristo stopped and examined it attentively. + +“Azure seven merlets, or, placed bender,” said he. “These are, +doubtless, your family arms? Except the knowledge of blazons, that +enables me to decipher them, I am very ignorant of heraldry—I, a count +of a fresh creation, fabricated in Tuscany by the aid of a commandery +of St. Stephen, and who would not have taken the trouble had I not been +told that when you travel much it is necessary. Besides, you must have +something on the panels of your carriage, to escape being searched by +the custom-house officers. Excuse my putting such a question to you.” + +“It is not indiscreet,” returned Morcerf, with the simplicity of +conviction. “You have guessed rightly. These are our arms, that is, +those of my father, but they are, as you see, joined to another shield, +which has gules, a silver tower, which are my mother’s. By her side I +am Spanish, but the family of Morcerf is French, and, I have heard, one +of the oldest of the south of France.” + +“Yes,” replied Monte Cristo “these blazons prove that. Almost all the +armed pilgrims that went to the Holy Land took for their arms either a +cross, in honor of their mission, or birds of passage, in sign of the +long voyage they were about to undertake, and which they hoped to +accomplish on the wings of faith. One of your ancestors had joined the +Crusades, and supposing it to be only that of St. Louis, that makes you +mount to the thirteenth century, which is tolerably ancient.” + +“It is possible,” said Morcerf; “my father has in his study a +genealogical tree which will tell you all that, and on which I made +commentaries that would have greatly edified d’Hozier and Jaucourt. At +present I no longer think of it, and yet I must tell you that we are +beginning to occupy ourselves greatly with these things under our +popular government.” + +“Well, then, your government would do well to choose from the past +something better than the things that I have noticed on your monuments, +and which have no heraldic meaning whatever. As for you, viscount,” +continued Monte Cristo to Morcerf, “you are more fortunate than the +government, for your arms are really beautiful, and speak to the +imagination. Yes, you are at once from Provence and Spain; that +explains, if the portrait you showed me be like, the dark hue I so much +admired on the visage of the noble Catalan.” + +It would have required the penetration of Œdipus or the Sphinx to have +divined the irony the count concealed beneath these words, apparently +uttered with the greatest politeness. Morcerf thanked him with a smile, +and pushed open the door above which were his arms, and which, as we +have said, opened into the salon. In the most conspicuous part of the +salon was another portrait. It was that of a man, from five to +eight-and-thirty, in the uniform of a general officer, wearing the +double epaulet of heavy bullion, that indicates superior rank, the +ribbon of the Legion of Honor around his neck, which showed he was a +commander, and on the right breast, the star of a grand officer of the +order of the Saviour, and on the left that of the grand cross of +Charles III., which proved that the person represented by the picture +had served in the wars of Greece and Spain, or, what was just the same +thing as regarded decorations, had fulfilled some diplomatic mission in +the two countries. + +Monte Cristo was engaged in examining this portrait with no less care +than he had bestowed upon the other, when another door opened, and he +found himself opposite to the Count of Morcerf in person. + +He was a man of forty to forty-five years, but he seemed at least +fifty, and his black moustache and eyebrows contrasted strangely with +his almost white hair, which was cut short, in the military fashion. He +was dressed in plain clothes, and wore at his button-hole the ribbons +of the different orders to which he belonged. + +He entered with a tolerably dignified step, and some little haste. +Monte Cristo saw him advance towards him without making a single step. +It seemed as if his feet were rooted to the ground, and his eyes on the +Count of Morcerf. + +“Father,” said the young man, “I have the honor of presenting to you +the Count of Monte Cristo, the generous friend whom I had the good +fortune to meet in the critical situation of which I have told you.” + +“You are most welcome, monsieur,” said the Count of Morcerf, saluting +Monte Cristo with a smile, “and monsieur has rendered our house, in +preserving its only heir, a service which insures him our eternal +gratitude.” + +As he said these words, the count of Morcerf pointed to a chair, while +he seated himself in another opposite the window. + +Monte Cristo, in taking the seat Morcerf offered him, placed himself in +such a manner as to remain concealed in the shadow of the large velvet +curtains, and read on the careworn and livid features of the count a +whole history of secret griefs written in each wrinkle time had planted +there. + +“The countess,” said Morcerf, “was at her toilet when she was informed +of the visit she was about to receive. She will, however, be in the +salon in ten minutes.” + +“It is a great honor to me,” returned Monte Cristo, “to be thus, on the +first day of my arrival in Paris, brought in contact with a man whose +merit equals his reputation, and to whom fortune has for once been +equitable, but has she not still on the plains of Mitidja, or in the +mountains of Atlas, a marshal’s staff to offer you?” + +“Oh,” replied Morcerf, reddening slightly, “I have left the service, +monsieur. Made a peer at the Restoration, I served through the first +campaign under the orders of Marshal Bourmont. I could, therefore, +expect a higher rank, and who knows what might have happened had the +elder branch remained on the throne? But the Revolution of July was, it +seems, sufficiently glorious to allow itself to be ungrateful, and it +was so for all services that did not date from the imperial period. I +tendered my resignation, for when you have gained your epaulets on the +battle-field, you do not know how to manœuvre on the slippery grounds +of the salons. I have hung up my sword, and cast myself into politics. +I have devoted myself to industry; I study the useful arts. During the +twenty years I served, I often wished to do so, but I had not the +time.” + +“These are the ideas that render your nation superior to any other,” +returned Monte Cristo. “A gentleman of high birth, possessor of an +ample fortune, you have consented to gain your promotion as an obscure +soldier, step by step—this is uncommon; then become general, peer of +France, commander of the Legion of Honor, you consent to again commence +a second apprenticeship, without any other hope or any other desire +than that of one day becoming useful to your fellow-creatures; this, +indeed, is praiseworthy,—nay, more, it is sublime.” + +20265m + + + +Albert looked on and listened with astonishment; he was not used to see +Monte Cristo give vent to such bursts of enthusiasm. + +“Alas,” continued the stranger, doubtless to dispel the slight cloud +that covered Morcerf’s brow, “we do not act thus in Italy; we grow +according to our race and our species, and we pursue the same lines, +and often the same uselessness, all our lives.” + +“But, monsieur,” said the Count of Morcerf, “for a man of your merit, +Italy is not a country, and France opens her arms to receive you; +respond to her call. France will not, perhaps, be always ungrateful. +She treats her children ill, but she always welcomes strangers.” + +“Ah, father,” said Albert with a smile, “it is evident you do not know +the Count of Monte Cristo; he despises all honors, and contents himself +with those written on his passport.” + +“That is the most just remark,” replied the stranger, “I ever heard +made concerning myself.” + +“You have been free to choose your career,” observed the Count of +Morcerf, with a sigh; “and you have chosen the path strewed with +flowers.” + +“Precisely, monsieur,” replied Monte Cristo with one of those smiles +that a painter could never represent or a physiologist analyze. + +“If I did not fear to fatigue you,” said the general, evidently charmed +with the count’s manners, “I would have taken you to the Chamber; there +is a debate very curious to those who are strangers to our modern +senators.” + +“I shall be most grateful, monsieur, if you will, at some future time, +renew your offer, but I have been flattered with the hope of being +introduced to the countess, and I will therefore wait.” + +“Ah, here is my mother,” cried the viscount. + +Monte Cristo, turned round hastily, and saw Madame de Morcerf at the +entrance of the salon, at the door opposite to that by which her +husband had entered, pale and motionless; when Monte Cristo turned +round, she let fall her arm, which for some unknown reason had been +resting on the gilded door-post. She had been there some moments, and +had heard the last words of the visitor. The latter rose and bowed to +the countess, who inclined herself without speaking. + +“Ah! good heavens, madame,” said the count, “are you ill, or is it the +heat of the room that affects you?” + +“Are you ill, mother?” cried the viscount, springing towards her. + +She thanked them both with a smile. + +“No,” returned she, “but I feel some emotion on seeing, for the first +time, the man without whose intervention we should have been in tears +and desolation. Monsieur,” continued the countess, advancing with the +majesty of a queen, “I owe to you the life of my son, and for this I +bless you. Now, I thank you for the pleasure you give me in thus +affording me the opportunity of thanking you as I have blessed you, +from the bottom of my heart.” + +The count bowed again, but lower than before; he was even paler than +Mercédès. + +“Madame,” said he, “the count and yourself recompense too generously a +simple action. To save a man, to spare a father’s feelings, or a +mother’s sensibility, is not to do a good action, but a simple deed of +humanity.” + +At these words, uttered with the most exquisite sweetness and +politeness, Madame de Morcerf replied: + +“It is very fortunate for my son, monsieur, that he found such a +friend, and I thank God that things are thus.” + +And Mercédès raised her fine eyes to heaven with so fervent an +expression of gratitude, that the count fancied he saw tears in them. +M. de Morcerf approached her. + +“Madame,” said he. “I have already made my excuses to the count for +quitting him, and I pray you to do so also. The sitting commences at +two; it is now three, and I am to speak.” + +“Go, then, and monsieur and I will strive our best to forget your +absence,” replied the countess, with the same tone of deep feeling. +“Monsieur,” continued she, turning to Monte Cristo, “will you do us the +honor of passing the rest of the day with us?” + +“Believe me, madame, I feel most grateful for your kindness, but I got +out of my travelling carriage at your door this morning, and I am +ignorant how I am installed in Paris, which I scarcely know; this is +but a trifling inquietude, I know, but one that may be appreciated.” + +“We shall have the pleasure another time,” said the countess; “you +promise that?” + +Monte Cristo inclined himself without answering, but the gesture might +pass for assent. + +“I will not detain you, monsieur,” continued the countess; “I would not +have our gratitude become indiscreet or importunate.” + +“My dear Count,” said Albert, “I will endeavor to return your +politeness at Rome, and place my coupé at your disposal until your own +be ready.” + +“A thousand thanks for your kindness, viscount,” returned the Count of +Monte Cristo “but I suppose that M. Bertuccio has suitably employed the +four hours and a half I have given him, and that I shall find a +carriage of some sort ready at the door.” + +Albert was used to the count’s manner of proceeding; he knew that, like +Nero, he was in search of the impossible, and nothing astonished him, +but wishing to judge with his own eyes how far the count’s orders had +been executed, he accompanied him to the door of the house. Monte +Cristo was not deceived. As soon as he appeared in the Count of +Morcerf’s antechamber, a footman, the same who at Rome had brought the +count’s card to the two young men, and announced his visit, sprang into +the vestibule, and when he arrived at the door the illustrious +traveller found his carriage awaiting him. It was a _coupé_ of Koller’s +building, and with horses and harness for which Drake had, to the +knowledge of all the lions of Paris, refused on the previous day seven +hundred guineas. + +“Monsieur,” said the count to Albert, “I do not ask you to accompany me +to my house, as I can only show you a habitation fitted up in a hurry, +and I have, as you know, a reputation to keep up as regards not being +taken by surprise. Give me, therefore, one more day before I invite +you; I shall then be certain not to fail in my hospitality.” + +“If you ask me for a day, count, I know what to anticipate; it will not +be a house I shall see, but a palace. You have decidedly some genius at +your control.” + +“_Ma foi_, spread that idea,” replied the Count of Monte Cristo, +putting his foot on the velvet-lined steps of his splendid carriage, +“and that will be worth something to me among the ladies.” + +As he spoke, he sprang into the vehicle, the door was closed, but not +so rapidly that Monte Cristo failed to perceive the almost +imperceptible movement which stirred the curtains of the apartment in +which he had left Madame de Morcerf. + +When Albert returned to his mother, he found her in the boudoir +reclining in a large velvet armchair, the whole room so obscure that +only the shining spangle, fastened here and there to the drapery, and +the angles of the gilded frames of the pictures, showed with some +degree of brightness in the gloom. Albert could not see the face of the +countess, as it was covered with a thin veil she had put on her head, +and which fell over her features in misty folds, but it seemed to him +as though her voice had altered. He could distinguish amid the perfumes +of the roses and heliotropes in the flower-stands, the sharp and +fragrant odor of volatile salts, and he noticed in one of the chased +cups on the mantle-piece the countess’s smelling-bottle, taken from its +shagreen case, and exclaimed in a tone of uneasiness, as he entered: + +“My dear mother, have you been ill during my absence?” + +“No, no, Albert, but you know these roses, tuberoses, and +orange-flowers throw out at first, before one is used to them, such +violent perfumes.” + +“Then, my dear mother,” said Albert, putting his hand to the bell, +“they must be taken into the antechamber. You are really ill, and just +now were so pale as you came into the room——” + +“Was I pale, Albert?” + +“Yes; a pallor that suits you admirably, mother, but which did not the +less alarm my father and myself.” + +“Did your father speak of it?” inquired Mercédès eagerly. + +“No, madame; but do you not remember that he spoke of the fact to you?” + +20269m + + + +“Yes, I do remember,” replied the countess. + +A servant entered, summoned by Albert’s ring of the bell. + +“Take these flowers into the anteroom or dressing-room,” said the +viscount; “they make the countess ill.” + +The footman obeyed his orders. A long pause ensued, which lasted until +all the flowers were removed. + +“What is this name of Monte Cristo?” inquired the countess, when the +servant had taken away the last vase of flowers, “is it a family name, +or the name of the estate, or a simple title?” + +“I believe, mother, it is merely a title. The count purchased an island +in the Tuscan archipelago, and, as he told you today, has founded a +commandery. You know the same thing was done for Saint Stephen of +Florence, Saint George Constantinian of Parma, and even for the Order +of Malta. Except this, he has no pretension to nobility, and calls +himself a chance count, although the general opinion at Rome is that +the count is a man of very high distinction.” + +“His manners are admirable,” said the countess, “at least, as far as I +could judge in the few minutes he remained here.” + +“They are perfect mother, so perfect, that they surpass by far all I +have known in the leading aristocracy of the three proudest nobilities +of Europe—the English, the Spanish, and the German.” + +The countess paused a moment; then, after a slight hesitation, she +resumed. + +“You have seen, my dear Albert—I ask the question as a mother—you have +seen M. de Monte Cristo in his house, you are quicksighted, have much +knowledge of the world, more tact than is usual at your age, do you +think the count is really what he appears to be?” + +“What does he appear to be?” + +“Why, you have just said,—a man of high distinction.” + +“I told you, my dear mother, he was esteemed such.” + +“But what is your own opinion, Albert?” + +“I must tell you that I have not come to any decided opinion respecting +him, but I think him a Maltese.” + +“I do not ask you of his origin but what he is.” + +“Ah! what he is; that is quite another thing. I have seen so many +remarkable things in him, that if you would have me really say what I +think, I shall reply that I really do look upon him as one of Byron’s +heroes, whom misery has marked with a fatal brand; some Manfred, some +Lara, some Werner, one of those wrecks, as it were, of some ancient +family, who, disinherited of their patrimony, have achieved one by the +force of their adventurous genius, which has placed them above the laws +of society.” + +“You say——” + +“I say that Monte Cristo is an island in the midst of the +Mediterranean, without inhabitants or garrison, the resort of smugglers +of all nations, and pirates of every flag. Who knows whether or not +these industrious worthies do not pay to their feudal lord some dues +for his protection?” + +“That is possible,” said the countess, reflecting. + +“Never mind,” continued the young man, “smuggler or not, you must +agree, mother dear, as you have seen him, that the Count of Monte +Cristo is a remarkable man, who will have the greatest success in the +salons of Paris. Why, this very morning, in my rooms, he made his +_entrée_ amongst us by striking every man of us with amazement, not +even excepting Château-Renaud.” + +“And what do you suppose is the count’s age?” inquired Mercédès, +evidently attaching great importance to this question. + +“Thirty-five or thirty-six, mother.” + +“So young,—it is impossible,” said Mercédès, replying at the same time +to what Albert said as well as to her own private reflection. + +“It is the truth, however. Three or four times he has said to me, and +certainly without the slightest premeditation, ‘at such a period I was +five years old, at another ten years old, at another twelve,’ and I, +induced by curiosity, which kept me alive to these details, have +compared the dates, and never found him inaccurate. The age of this +singular man, who is of no age, is then, I am certain, thirty-five. +Besides, mother, remark how vivid his eye, how raven-black his hair, +and his brow, though so pale, is free from wrinkles,—he is not only +vigorous, but also young.” + +The countess bent her head, as if beneath a heavy wave of bitter +thoughts. + +“And has this man displayed a friendship for you, Albert?” she asked +with a nervous shudder. + +“I am inclined to think so.” + +“And—do—you—like—him?” + +“Why, he pleases me in spite of Franz d’Épinay, who tries to convince +me that he is a being returned from the other world.” + +The countess shuddered. + +“Albert,” she said, in a voice which was altered by emotion, “I have +always put you on your guard against new acquaintances. Now you are a +man, and are able to give me advice; yet I repeat to you, Albert, be +prudent.” + +“Why, my dear mother, it is necessary, in order to make your advice +turn to account, that I should know beforehand what I have to distrust. +The count never plays, he only drinks pure water tinged with a little +sherry, and is so rich that he cannot, without intending to laugh at +me, try to borrow money. What, then, have I to fear from him?” + +“You are right,” said the countess, “and my fears are weakness, +especially when directed against a man who has saved your life. How did +your father receive him, Albert? It is necessary that we should be more +than complaisant to the count. M. de Morcerf is sometimes occupied, his +business makes him reflective, and he might, without intending it——” + +“Nothing could be in better taste than my father’s demeanor, madame,” +said Albert; “nay, more, he seemed greatly flattered at two or three +compliments which the count very skilfully and agreeably paid him with +as much ease as if he had known him these thirty years. Each of these +little tickling arrows must have pleased my father,” added Albert with +a laugh. “And thus they parted the best possible friends, and M. de +Morcerf even wished to take him to the Chamber to hear the speakers.” + +The countess made no reply. She fell into so deep a reverie that her +eyes gradually closed. The young man, standing up before her, gazed +upon her with that filial affection which is so tender and endearing +with children whose mothers are still young and handsome. Then, after +seeing her eyes closed, and hearing her breathe gently, he believed she +had dropped asleep, and left the apartment on tiptoe, closing the door +after him with the utmost precaution. + +“This devil of a fellow,” he muttered, shaking his head; “I said at the +time he would create a sensation here, and I measure his effect by an +infallible thermometer. My mother has noticed him, and he must +therefore, perforce, be remarkable.” + +He went down to the stables, not without some slight annoyance, when he +remembered that the Count of Monte Cristo had laid his hands on a +“turnout” which sent his bays down to second place in the opinion of +connoisseurs. + +“Most decidedly,” said he, “men are not equal, and I must beg my father +to develop this theorem in the Chamber of Peers.” + + + + Chapter 42. Monsieur Bertuccio + +Meanwhile the count had arrived at his house; it had taken him six +minutes to perform the distance, but these six minutes were sufficient +to induce twenty young men who knew the price of the equipage they had +been unable to purchase themselves, to put their horses in a gallop in +order to see the rich foreigner who could afford to give 20,000 francs +apiece for his horses. + +The house Ali had chosen, and which was to serve as a town residence to +Monte Cristo, was situated on the right hand as you ascend the +Champs-Élysées. A thick clump of trees and shrubs rose in the centre, +and masked a portion of the front; around this shrubbery two alleys, +like two arms, extended right and left, and formed a carriage-drive +from the iron gates to a double portico, on every step of which stood a +porcelain vase, filled with flowers. This house, isolated from the +rest, had, besides the main entrance, another in the Rue de Ponthieu. +Even before the coachman had hailed the _concierge_, the massy gates +rolled on their hinges—they had seen the Count coming, and at Paris, as +everywhere else, he was served with the rapidity of lightning. The +coachman entered and traversed the half-circle without slackening his +speed, and the gates were closed ere the wheels had ceased to sound on +the gravel. The carriage stopped at the left side of the portico, two +men presented themselves at the carriage-window; the one was Ali, who, +smiling with an expression of the most sincere joy, seemed amply repaid +by a mere look from Monte Cristo. The other bowed respectfully, and +offered his arm to assist the count in descending. + +“Thanks, M. Bertuccio,” said the count, springing lightly up the three +steps of the portico; “and the notary?” + +“He is in the small salon, excellency,” returned Bertuccio. + +“And the cards I ordered to be engraved as soon as you knew the number +of the house?” + +“Your excellency, it is done already. I have been myself to the best +engraver of the Palais Royal, who did the plate in my presence. The +first card struck off was taken, according to your orders, to the Baron +Danglars, Rue de la Chaussée d’Antin, No. 7; the others are on the +mantle-piece of your excellency’s bedroom.” + +“Good; what o’clock is it?” + +“Four o’clock.” + +Monte Cristo gave his hat, cane, and gloves to the same French footman +who had called his carriage at the Count of Morcerf’s, and then he +passed into the small salon, preceded by Bertuccio, who showed him the +way. + +“These are but indifferent marbles in this antechamber,” said Monte +Cristo. “I trust all this will soon be taken away.” + +Bertuccio bowed. As the steward had said, the notary awaited him in the +small salon. He was a simple-looking lawyer’s clerk, elevated to the +extraordinary dignity of a provincial scrivener. + +“You are the notary empowered to sell the country house that I wish to +purchase, monsieur?” asked Monte Cristo. + +“Yes, count,” returned the notary. + +“Is the deed of sale ready?” + +“Yes, count.” + +“Have you brought it?” + +“Here it is.” + +“Very well; and where is this house that I purchase?” asked the count +carelessly, addressing himself half to Bertuccio, half to the notary. +The steward made a gesture that signified, “I do not know.” The notary +looked at the count with astonishment. + +“What!” said he, “does not the count know where the house he purchases +is situated?” + +“No,” returned the count. + +“The count does not know?” + +“How should I know? I have arrived from Cadiz this morning. I have +never before been at Paris, and it is the first time I have ever even +set my foot in France.” + +“Ah, that is different; the house you purchase is at Auteuil.” + +At these words Bertuccio turned pale. + +“And where is Auteuil?” asked the count. + +“Close by here, monsieur,” replied the notary—“a little beyond Passy; a +charming situation, in the heart of the Bois de Boulogne.” + +“So near as that?” said the Count; “but that is not in the country. +What made you choose a house at the gates of Paris, M. Bertuccio?” + +“I,” cried the steward with a strange expression. “His excellency did +not charge me to purchase this house. If his excellency will +recollect—if he will think——” + +“Ah, true,” observed Monte Cristo; “I recollect now. I read the +advertisement in one of the papers, and was tempted by the false title, +‘a country house.’” + +“It is not yet too late,” cried Bertuccio, eagerly; “and if your +excellency will intrust me with the commission, I will find you a +better at Enghien, at Fontenay-aux-Roses, or at Bellevue.” + +“Oh, no,” returned Monte Cristo negligently; “since I have this, I will +keep it.” + +“And you are quite right,” said the notary, who feared to lose his fee. +“It is a charming place, well supplied with spring-water and fine +trees; a comfortable habitation, although abandoned for a long time, +without reckoning the furniture, which, although old, is yet valuable, +now that old things are so much sought after. I suppose the count has +the tastes of the day?” + +“To be sure,” returned Monte Cristo; “it is very convenient, then?” + +“It is more—it is magnificent.” + +“_Peste!_ let us not lose such an opportunity,” returned Monte Cristo. +“The deed, if you please, Mr. Notary.” + +And he signed it rapidly, after having first run his eye over that part +of the deed in which were specified the situation of the house and the +names of the proprietors. + +“Bertuccio,” said he, “give fifty-five thousand francs to monsieur.” + +The steward left the room with a faltering step, and returned with a +bundle of bank-notes, which the notary counted like a man who never +gives a receipt for money until after he is sure it is all there. + +“And now,” demanded the count, “are all the forms complied with?” + +“All, sir.” + +“Have you the keys?” + +“They are in the hands of the concierge, who takes care of the house, +but here is the order I have given him to install the count in his new +possessions.” + +“Very well;” and Monte Cristo made a sign with his hand to the notary, +which said, “I have no further need of you; you may go.” + +“But,” observed the honest notary, “the count is, I think, mistaken; it +is only fifty thousand francs, everything included.” + +“And your fee?” + +“Is included in this sum.” + +“But have you not come from Auteuil here?” + +“Yes, certainly.” + +“Well, then, it is but fair that you should be paid for your loss of +time and trouble,” said the count; and he made a gesture of polite +dismissal. + +The notary left the room backwards, and bowing down to the ground; it +was the first time he had ever met a similar client. + +“See this gentleman out,” said the count to Bertuccio. And the steward +followed the notary out of the room. + +Scarcely was the count alone, when he drew from his pocket a book +closed with a lock, and opened it with a key which he wore round his +neck, and which never left him. After having sought for a few minutes, +he stopped at a leaf which had several notes, and compared them with +the deed of sale, which lay on the table, and recalling his +_souvenirs_— + +“‘Auteuil, Rue de la Fontaine, No. 28;’ it is indeed the same,” said +he; “and now, am I to rely upon an avowal extorted by religious or +physical terror? However, in an hour I shall know all. Bertuccio!” +cried he, striking a light hammer with a pliant handle on a small gong. +“Bertuccio!” + +The steward appeared at the door. + +“Monsieur Bertuccio,” said the count, “did you never tell me that you +had travelled in France?” + +“In some parts of France—yes, excellency.” + +“You know the environs of Paris, then?” + +“No, excellency, no,” returned the steward, with a sort of nervous +trembling, which Monte Cristo, a connoisseur in all emotions, rightly +attributed to great disquietude. + +“It is unfortunate,” returned he, “that you have never visited the +environs, for I wish to see my new property this evening, and had you +gone with me, you could have given me some useful information.” + +“To Auteuil!” cried Bertuccio, whose copper complexion became livid—“I +go to Auteuil?” + +“Well, what is there surprising in that? When I live at Auteuil, you +must come there, as you belong to my service.” + +Bertuccio hung down his head before the imperious look of his master, +and remained motionless, without making any answer. + +“Why, what has happened to you?—are you going to make me ring a second +time for the carriage?” asked Monte Cristo, in the same tone that Louis +XIV. pronounced the famous, “I have been almost obliged to wait.” +Bertuccio made but one bound to the antechamber, and cried in a hoarse +voice: + +“His excellency’s horses!” + +Monte Cristo wrote two or three notes, and, as he sealed the last, the +steward appeared. + +“Your excellency’s carriage is at the door,” said he. + +“Well, take your hat and gloves,” returned Monte Cristo. + +“Am I to accompany you, your excellency?” cried Bertuccio. + +“Certainly, you must give the orders, for I intend residing at the +house.” + +20277m + + + +It was unexampled for a servant of the count’s to dare to dispute an +order of his, so the steward, without saying a word, followed his +master, who got into the carriage, and signed to him to follow, which +he did, taking his place respectfully on the front seat. + + + + Chapter 43. The House at Auteuil + +Monte Cristo noticed, as they descended the staircase, that Bertuccio +signed himself in the Corsican manner; that is, had formed the sign of +the cross in the air with his thumb, and as he seated himself in the +carriage, muttered a short prayer. Anyone but a man of exhaustless +thirst for knowledge would have had pity on seeing the steward’s +extraordinary repugnance for the count’s projected drive without the +walls; but the count was too curious to let Bertuccio off from this +little journey. In twenty minutes they were at Auteuil; the steward’s +emotion had continued to augment as they entered the village. +Bertuccio, crouched in the corner of the carriage, began to examine +with a feverish anxiety every house they passed. + +“Tell them to stop at Rue de la Fontaine, No. 28,” said the count, +fixing his eyes on the steward, to whom he gave this order. + +Bertuccio’s forehead was covered with perspiration; however, he obeyed, +and, leaning out of the window, he cried to the coachman,—“Rue de la +Fontaine, No. 28.” No. 28 was situated at the extremity of the village; +during the drive night had set in, and darkness gave the surroundings +the artificial appearance of a scene on the stage. The carriage +stopped, the footman sprang off the box and opened the door. + +“Well,” said the count, “you do not get out, M. Bertuccio—you are going +to stay in the carriage, then? What are you thinking of this evening?” + +Bertuccio sprang out, and offered his shoulder to the count, who, this +time, leaned upon it as he descended the three steps of the carriage. + +“Knock,” said the count, “and announce me.” + +Bertuccio knocked, the door opened, and the concierge appeared. + +“What is it?” asked he. + +“It is your new master, my good fellow,” said the footman. And he held +out to the concierge the notary’s order. + +“The house is sold, then?” demanded the concierge; “and this gentleman +is coming to live here?” + +“Yes, my friend,” returned the count; “and I will endeavor to give you +no cause to regret your old master.” + +“Oh, monsieur,” said the concierge, “I shall not have much cause to +regret him, for he came here but seldom; it is five years since he was +here last, and he did well to sell the house, for it did not bring him +in anything at all.” + +“What was the name of your old master?” said Monte Cristo. + +“The Marquis of Saint-Méran. Ah, I am sure he has not sold the house +for what he gave for it.” + +“The Marquis of Saint-Méran!” returned the count. “The name is not +unknown to me; the Marquis of Saint-Méran!” and he appeared to +meditate. + +“An old gentleman,” continued the concierge, “a staunch follower of the +Bourbons; he had an only daughter, who married M. de Villefort, who had +been the king’s attorney at Nîmes, and afterwards at Versailles.” + +Monte Cristo glanced at Bertuccio, who became whiter than the wall +against which he leaned to prevent himself from falling. + +“And is not this daughter dead?” demanded Monte Cristo; “I fancy I have +heard so.” + +“Yes, monsieur, one-and-twenty years ago; and since then we have not +seen the poor marquis three times.” + +“Thanks, thanks,” said Monte Cristo, judging from the steward’s utter +prostration that he could not stretch the cord further without danger +of breaking it. “Give me a light.” + +“Shall I accompany you, monsieur?” + +“No, it is unnecessary; Bertuccio will show me a light.” + +And Monte Cristo accompanied these words by the gift of two gold +pieces, which produced a torrent of thanks and blessings from the +concierge. + +“Ah, monsieur,” said he, after having vainly searched on the +mantle-piece and the shelves, “I have not got any candles.” + +“Take one of the carriage-lamps, Bertuccio,” said the count, “and show +me the apartments.” + +The steward obeyed in silence, but it was easy to see, from the manner +in which the hand that held the light trembled, how much it cost him to +obey. They went over a tolerably large ground floor; a first floor +consisted of a salon, a bathroom, and two bedrooms; near one of the +bedrooms they came to a winding staircase that led down to the garden. + +“Ah, here is a private staircase,” said the count; “that is convenient. +Light me, M. Bertuccio, and go first; we will see where it leads to.” + +“Monsieur,” replied Bertuccio, “it leads to the garden.” + +“And, pray, how do you know that?” + +“It ought to do so, at least.” + +“Well, let us be sure of that.” + +Bertuccio sighed, and went on first; the stairs did, indeed, lead to +the garden. At the outer door the steward paused. + +“Go on, Monsieur Bertuccio,” said the count. + +But he who was addressed stood there, stupefied, bewildered, stunned; +his haggard eyes glanced around, as if in search of the traces of some +terrible event, and with his clenched hands he seemed striving to shut +out horrible recollections. + +“Well!” insisted the Count. + +“No, no,” cried Bertuccio, setting down the lantern at the angle of the +interior wall. “No, monsieur, it is impossible; I can go no farther.” + +“What does this mean?” demanded the irresistible voice of Monte Cristo. + +“Why, you must see, your excellency,” cried the steward, “that this is +not natural; that, having a house to purchase, you purchase it exactly +at Auteuil, and that, purchasing it at Auteuil, this house should be +No. 28, Rue de la Fontaine. Oh, why did I not tell you all? I am sure +you would not have forced me to come. I hoped your house would have +been some other one than this; as if there was not another house at +Auteuil than that of the assassination!” + +“What, what!” cried Monte Cristo, stopping suddenly, “what words do you +utter? Devil of a man, Corsican that you are—always mysteries or +superstitions. Come, take the lantern, and let us visit the garden; you +are not afraid of ghosts with me, I hope?” + +Bertuccio raised the lantern, and obeyed. The door, as it opened, +disclosed a gloomy sky, in which the moon strove vainly to struggle +through a sea of clouds that covered her with billows of vapor which +she illumined for an instant, only to sink into obscurity. The steward +wished to turn to the left. + +“No, no, monsieur,” said Monte Cristo. “What is the use of following +the alleys? Here is a beautiful lawn; let us go on straight forwards.” + +Bertuccio wiped the perspiration from his brow, but obeyed; however, he +continued to take the left hand. Monte Cristo, on the contrary, took +the right hand; arrived near a clump of trees, he stopped. The steward +could not restrain himself. + +“Move, monsieur—move away, I entreat you; you are exactly in the spot!” + +“What spot?” + +“Where he fell.” + +20281m + + + +“My dear Monsieur Bertuccio,” said Monte Cristo, laughing, “control +yourself; we are not at Sartène or at Corte. This is not a Corsican +_maquis_ but an English garden; badly kept, I own, but still you must +not calumniate it for that.” + +“Monsieur, I implore you do not stay there!” + +“I think you are going mad, Bertuccio,” said the count coldly. “If that +is the case, I warn you, I shall have you put in a lunatic asylum.” + +“Alas! excellency,” returned Bertuccio, joining his hands, and shaking +his head in a manner that would have excited the count’s laughter, had +not thoughts of a superior interest occupied him, and rendered him +attentive to the least revelation of this timorous conscience. “Alas! +excellency, the evil has arrived!” + +“M. Bertuccio,” said the count, “I am very glad to tell you, that while +you gesticulate, you wring your hands and roll your eyes like a man +possessed by a devil who will not leave him; and I have always +observed, that the devil most obstinate to be expelled is a secret. I +knew you were a Corsican. I knew you were gloomy, and always brooding +over some old history of the vendetta; and I overlooked that in Italy, +because in Italy those things are thought nothing of. But in France +they are considered in very bad taste; there are gendarmes who occupy +themselves with such affairs, judges who condemn, and scaffolds which +avenge.” + +Bertuccio clasped his hands, and as, in all these evolutions, he did +not let fall the lantern, the light showed his pale and altered +countenance. Monte Cristo examined him with the same look that, at +Rome, he had bent upon the execution of Andrea, and then, in a tone +that made a shudder pass through the veins of the poor steward— + +“The Abbé Busoni, then told me an untruth,” said he, “when, after his +journey in France, in 1829, he sent you to me, with a letter of +recommendation, in which he enumerated all your valuable qualities. +Well, I shall write to the abbé; I shall hold him responsible for his +_protégé’s_ misconduct, and I shall soon know all about this +assassination. Only I warn you, that when I reside in a country, I +conform to all its code, and I have no wish to put myself within the +compass of the French laws for your sake.” + +“Oh, do not do that, excellency; I have always served you faithfully,” +cried Bertuccio, in despair. “I have always been an honest man, and, as +far as lay in my power, I have done good.” + +“I do not deny it,” returned the count; “but why are you thus agitated. +It is a bad sign; a quiet conscience does not occasion such paleness in +the cheeks, and such fever in the hands of a man.” + +“But, your excellency,” replied Bertuccio hesitatingly, “did not the +Abbé Busoni, who heard my confession in the prison at Nîmes, tell you +that I had a heavy burden upon my conscience?” + +“Yes; but as he said you would make an excellent steward, I concluded +you had stolen—that was all.” + +“Oh, your excellency!” returned Bertuccio in deep contempt. + +“Or, as you are a Corsican, that you had been unable to resist the +desire of making a ‘stiff,’ as you call it.” + +“Yes, my good master,” cried Bertuccio, casting himself at the count’s +feet, “it was simply vengeance—nothing else.” + +“I understand that, but I do not understand what it is that galvanizes +you in this manner.” + +“But, monsieur, it is very natural,” returned Bertuccio, “since it was +in this house that my vengeance was accomplished.” + +“What! my house?” + +“Oh, your excellency, it was not yours, then.” + +“Whose, then? The Marquis de Saint-Méran, I think, the concierge said. +What had you to revenge on the Marquis de Saint-Méran?” + +“Oh, it was not on him, monsieur; it was on another.” + +“This is strange,” returned Monte Cristo, seeming to yield to his +reflections, “that you should find yourself without any preparation in +a house where the event happened that causes you so much remorse.” + +“Monsieur,” said the steward, “it is fatality, I am sure. First, you +purchase a house at Auteuil—this house is the one where I have +committed an assassination; you descend to the garden by the same +staircase by which he descended; you stop at the spot where he received +the blow; and two paces farther is the grave in which he had just +buried his child. This is not chance, for chance, in this case, is too +much like Providence.” + +“Well, amiable Corsican, let us suppose it is Providence. I always +suppose anything people please, and, besides, you must concede +something to diseased minds. Come, collect yourself, and tell me all.” + +“I have related it but once, and that was to the Abbé Busoni. Such +things,” continued Bertuccio, shaking his head, “are only related under +the seal of confession.” + +“Then,” said the count, “I refer you to your confessor. Turn Chartreux +or Trappist, and relate your secrets, but, as for me, I do not like +anyone who is alarmed by such phantasms, and I do not choose that my +servants should be afraid to walk in the garden of an evening. I +confess I am not very desirous of a visit from the commissary of +police, for, in Italy, justice is only paid when silent—in France she +is paid only when she speaks. _Peste!_ I thought you somewhat Corsican, +a great deal smuggler, and an excellent steward; but I see you have +other strings to your bow. You are no longer in my service, Monsieur +Bertuccio.” + +“Oh, your excellency, your excellency!” cried the steward, struck with +terror at this threat, “if that is the only reason I cannot remain in +your service, I will tell all, for if I quit you, it will only be to go +to the scaffold.” + +“That is different,” replied Monte Cristo; “but if you intend to tell +an untruth, reflect it were better not to speak at all.” + +“No, monsieur, I swear to you, by my hopes of salvation, I will tell +you all, for the Abbé Busoni himself only knew a part of my secret; +but, I pray you, go away from that plane-tree. The moon is just +bursting through the clouds, and there, standing where you do, and +wrapped in that cloak that conceals your figure, you remind me of M. de +Villefort.” + +“What!” cried Monte Cristo, “it was M. de Villefort?” + +“Your excellency knows him?” + +“The former royal attorney at Nîmes?” + +“Yes.” + +“Who married the Marquis of Saint-Méran’s daughter?” + +“Yes.” + +“Who enjoyed the reputation of being the most severe, the most upright, +the most rigid magistrate on the bench?” + +“Well, monsieur,” said Bertuccio, “this man with this spotless +reputation——” + +“Well?” + +“Was a villain.” + +“Bah,” replied Monte Cristo, “impossible!” + +“It is as I tell you.” + +“Ah, really,” said Monte Cristo. “Have you proof of this?” + +“I had it.” + +“And you have lost it; how stupid!” + +“Yes; but by careful search it might be recovered.” + +“Really,” returned the count, “relate it to me, for it begins to +interest me.” + +And the count, humming an air from _Lucia_, went to sit down on a +bench, while Bertuccio followed him, collecting his thoughts. Bertuccio +remained standing before him. + +20285m + + + + + Chapter 44. The Vendetta + +At what point shall I begin my story, your excellency?” asked +Bertuccio. + +“Where you please,” returned Monte Cristo, “since I know nothing at all +of it.” + +“I thought the Abbé Busoni had told your excellency.” + +“Some particulars, doubtless, but that is seven or eight years ago, and +I have forgotten them.” + +“Then I can speak without fear of tiring your excellency.” + +“Go on, M. Bertuccio; you will supply the want of the evening papers.” + +“The story begins in 1815.” + +“Ah,” said Monte Cristo, “1815 is not yesterday.” + +“No, monsieur, and yet I recollect all things as clearly as if they had +happened but then. I had a brother, an elder brother, who was in the +service of the emperor; he had become lieutenant in a regiment composed +entirely of Corsicans. This brother was my only friend; we became +orphans—I at five, he at eighteen. He brought me up as if I had been +his son, and in 1814 he married. When the emperor returned from the +Island of Elba, my brother instantly joined the army, was slightly +wounded at Waterloo, and retired with the army beyond the Loire.” + +“But that is the history of the Hundred Days, M. Bertuccio,” said the +count; “unless I am mistaken, it has been already written.” + +“Excuse me, excellency, but these details are necessary, and you +promised to be patient.” + +“Go on; I will keep my word.” + +“One day we received a letter. I should tell you that we lived in the +little village of Rogliano, at the extremity of Cap Corse. This letter +was from my brother. He told us that the army was disbanded, and that +he should return by Châteauroux, Clermont-Ferrand, Le Puy, and Nîmes; +and, if I had any money, he prayed me to leave it for him at Nîmes, +with an innkeeper with whom I had dealings.” + +“In the smuggling line?” said Monte Cristo. + +“Eh, your excellency? Everyone must live.” + +“Certainly; go on.” + +“I loved my brother tenderly, as I told your excellency, and I resolved +not to send the money, but to take it to him myself. I possessed a +thousand francs. I left five hundred with Assunta, my sister-in-law, +and with the other five hundred I set off for Nîmes. It was easy to do +so, and as I had my boat and a lading to take in at sea, everything +favored my project. But, after we had taken in our cargo, the wind +became contrary, so that we were four or five days without being able +to enter the Rhône. At last, however, we succeeded, and worked up to +Arles. I left the boat between Bellegarde and Beaucaire, and took the +road to Nîmes.” + +“We are getting to the story now?” + +“Yes, your excellency; excuse me, but, as you will see, I only tell you +what is absolutely necessary. Just at this time the famous massacres +took place in the south of France. Three brigands, called Trestaillon, +Truphemy, and Graffan, publicly assassinated everybody whom they +suspected of Bonapartism. You have doubtless heard of these massacres, +your excellency?” + +“Vaguely; I was far from France at that period. Go on.” + +“As I entered Nîmes, I literally waded in blood; at every step you +encountered dead bodies and bands of murderers, who killed, plundered, +and burned. At the sight of this slaughter and devastation I became +terrified, not for myself—for I, a simple Corsican fisherman, had +nothing to fear; on the contrary, that time was most favorable for us +smugglers—but for my brother, a soldier of the empire, returning from +the army of the Loire, with his uniform and his epaulets, there was +everything to apprehend. I hastened to the innkeeper. My misgivings had +been but too true. My brother had arrived the previous evening at +Nîmes, and, at the very door of the house where he was about to demand +hospitality, he had been assassinated. I did all in my power to +discover the murderers, but no one durst tell me their names, so much +were they dreaded. I then thought of that French justice of which I had +heard so much, and which feared nothing, and I went to the king’s +attorney.” + +“And this king’s attorney was named Villefort?” asked Monte Cristo +carelessly. + +“Yes, your excellency; he came from Marseilles, where he had been +deputy procureur. His zeal had procured him advancement, and he was +said to be one of the first who had informed the government of the +departure from the Island of Elba.” + +“Then,” said Monte Cristo “you went to him?” + +“‘Monsieur,’ I said, ‘my brother was assassinated yesterday in the +streets of Nîmes, I know not by whom, but it is your duty to find out. +You are the representative of justice here, and it is for justice to +avenge those she has been unable to protect.’ + +“‘Who was your brother?’ asked he. + +“‘A lieutenant in the Corsican battalion.’ + +“‘A soldier of the usurper, then?’ + +“‘A soldier of the French army.’ + +“‘Well,’ replied he, ‘he has smitten with the sword, and he has +perished by the sword.’ + +“‘You are mistaken, monsieur,’ I replied; ‘he has perished by the +poniard.’ + +“‘What do you want me to do?’ asked the magistrate. + +“‘I have already told you—avenge him.’ + +“‘On whom?’ + +“‘On his murderers.’ + +“‘How should I know who they are?’ + +“‘Order them to be sought for.’ + +“‘Why, your brother has been involved in a quarrel, and killed in a +duel. All these old soldiers commit excesses which were tolerated in +the time of the emperor, but which are not suffered now, for the people +here do not like soldiers of such disorderly conduct.’ + +“‘Monsieur,’ I replied, ‘it is not for myself that I entreat your +interference—I should grieve for him or avenge him, but my poor brother +had a wife, and were anything to happen to me, the poor creature would +perish from want, for my brother’s pay alone kept her. Pray, try and +obtain a small government pension for her.’ + +“‘Every revolution has its catastrophes,’ returned M. de Villefort; +‘your brother has been the victim of this. It is a misfortune, and +government owes nothing to his family. If we are to judge by all the +vengeance that the followers of the usurper exercised on the partisans +of the king, when, in their turn, they were in power, your brother +would be today, in all probability, condemned to death. What has +happened is quite natural, and in conformity with the law of +reprisals.’ + +“‘What,’ cried I, ‘do you, a magistrate, speak thus to me?’ + +“‘All these Corsicans are mad, on my honor,’ replied M. de Villefort; +‘they fancy that their countryman is still emperor. You have mistaken +the time, you should have told me this two months ago, it is too late +now. Go now, at once, or I shall have you put out.’ + +“I looked at him an instant to see if there was anything to hope from +further entreaty. But he was a man of stone. I approached him, and said +in a low voice, ‘Well, since you know the Corsicans so well, you know +that they always keep their word. You think that it was a good deed to +kill my brother, who was a Bonapartist, because you are a royalist. +Well, I, who am a Bonapartist also, declare one thing to you, which is, +that I will kill you. From this moment I declare the vendetta against +you, so protect yourself as well as you can, for the next time we meet +your last hour has come.’ And before he had recovered from his +surprise, I opened the door and left the room.” + +“Well, well,” said Monte Cristo, “such an innocent looking person as +you are to do those things, M. Bertuccio, and to a king’s attorney at +that! But did he know what was meant by the terrible word ‘vendetta’?” + +“He knew so well, that from that moment he shut himself in his house, +and never went out unattended, seeking me high and low. Fortunately, I +was so well concealed that he could not find me. Then he became +alarmed, and dared not stay any longer at Nîmes, so he solicited a +change of residence, and, as he was in reality very influential, he was +nominated to Versailles. But, as you know, a Corsican who has sworn to +avenge himself cares not for distance, so his carriage, fast as it +went, was never above half a day’s journey before me, who followed him +on foot. The most important thing was, not to kill him only—for I had +an opportunity of doing so a hundred times—but to kill him without +being discovered—at least, without being arrested. I no longer belonged +to myself, for I had my sister-in-law to protect and provide for. + +“For three months I watched M. de Villefort, for three months he took +not a step out-of-doors without my following him. At length I +discovered that he went mysteriously to Auteuil. I followed him +thither, and I saw him enter the house where we now are, only, instead +of entering by the great door that looks into the street, he came on +horseback, or in his carriage, left the one or the other at the little +inn, and entered by the gate you see there.” + +Monte Cristo made a sign with his head to show that he could discern in +the darkness the door to which Bertuccio alluded. + +“As I had nothing more to do at Versailles, I went to Auteuil, and +gained all the information I could. If I wished to surprise him, it was +evident this was the spot to lie in wait for him. The house belonged, +as the concierge informed your excellency, to M. de Saint-Méran, +Villefort’s father-in-law. M. de Saint-Méran lived at Marseilles, so +that this country house was useless to him, and it was reported to be +let to a young widow, known only by the name of ‘the Baroness.’ + +“One evening, as I was looking over the wall, I saw a young and +handsome woman who was walking alone in that garden, which was not +overlooked by any windows, and I guessed that she was awaiting M. de +Villefort. When she was sufficiently near for me to distinguish her +features, I saw she was from eighteen to nineteen, tall and very fair. +As she had a loose muslin dress on and as nothing concealed her figure, +I saw she would ere long become a mother. A few moments after, the +little door was opened and a man entered. The young woman hastened to +meet him. They threw themselves into each other’s arms, embraced +tenderly, and returned together to the house. The man was M. de +Villefort; I fully believed that when he went out in the night he would +be forced to traverse the whole of the garden alone.” + +20291m + + + +“And,” asked the count, “did you ever know the name of this woman?” + +“No, excellency,” returned Bertuccio; “you will see that I had no time +to learn it.” + +“Go on.” + +“That evening,” continued Bertuccio, “I could have killed the +procureur, but as I was not sufficiently acquainted with the +neighborhood, I was fearful of not killing him on the spot, and that if +his cries were overheard I might be taken; so I put it off until the +next occasion, and in order that nothing should escape me, I took a +chamber looking into the street bordered by the wall of the garden. +Three days after, about seven o’clock in the evening, I saw a servant +on horseback leave the house at full gallop, and take the road to +Sèvres. I concluded that he was going to Versailles, and I was not +deceived. Three hours later, the man returned covered with dust, his +errand was performed, and two minutes after, another man on foot, +muffled in a mantle, opened the little door of the garden, which he +closed after him. I descended rapidly; although I had not seen +Villefort’s face, I recognized him by the beating of my heart. I +crossed the street, and stopped at a post placed at the angle of the +wall, and by means of which I had once before looked into the garden. + +“This time I did not content myself with looking, but I took my knife +out of my pocket, felt that the point was sharp, and sprang over the +wall. My first care was to run to the door; he had left the key in it, +taking the simple precaution of turning it twice in the lock. Nothing, +then, preventing my escape by this means, I examined the grounds. The +garden was long and narrow; a stretch of smooth turf extended down the +middle, and at the corners were clumps of trees with thick and massy +foliage, that made a background for the shrubs and flowers. In order to +go from the door to the house, or from the house to the door, M. de +Villefort would be obliged to pass by one of these clumps of trees. + +20293m + + + +“It was the end of September; the wind blew violently. The faint +glimpses of the pale moon, hidden momentarily by masses of dark clouds +that were sweeping across the sky, whitened the gravel walks that led +to the house, but were unable to pierce the obscurity of the thick +shrubberies, in which a man could conceal himself without any fear of +discovery. I hid myself in the one nearest to the path Villefort must +take, and scarcely was I there when, amidst the gusts of wind, I +fancied I heard groans; but you know, or rather you do not know, your +excellency, that he who is about to commit an assassination fancies +that he hears low cries perpetually ringing in his ears. Two hours +passed thus, during which I imagined I heard moans repeatedly. Midnight +struck. As the last stroke died away, I saw a faint light shine through +the windows of the private staircase by which we have just descended. +The door opened, and the man in the mantle reappeared. + +“The terrible moment had come, but I had so long been prepared for it +that my heart did not fail in the least. I drew my knife from my pocket +again, opened it, and made ready to strike. The man in the mantle +advanced towards me, but as he drew near I saw that he had a weapon in +his hand. I was afraid, not of a struggle, but of a failure. When he +was only a few paces from me, I saw that what I had taken for a weapon +was only a spade. I was still unable to divine for what reason M. de +Villefort had this spade in his hands, when he stopped close to the +thicket where I was, glanced round, and began to dig a hole in the +earth. I then perceived that he was hiding something under his mantle, +which he laid on the grass in order to dig more freely. Then, I +confess, curiosity mingled with hatred; I wished to see what Villefort +was going to do there, and I remained motionless, holding my breath. +Then an idea crossed my mind, which was confirmed when I saw the +procureur lift from under his mantle a box, two feet long, and six or +eight inches deep. I let him place the box in the hole he had made, +then, while he stamped with his feet to remove all traces of his +occupation, I rushed on him and plunged my knife into his breast, +exclaiming: + +“‘I am Giovanni Bertuccio; thy death for my brother’s; thy treasure for +his widow; thou seest that my vengeance is more complete than I had +hoped.’ + +“I know not if he heard these words; I think he did not, for he fell +without a cry. I felt his blood gush over my face, but I was +intoxicated, I was delirious, and the blood refreshed, instead of +burning me. In a second I had disinterred the box; then, that it might +not be known I had done so, I filled up the hole, threw the spade over +the wall, and rushed through the door, which I double-locked, carrying +off the key.” + +“Ah,” said Monte Cristo “it seems to me this was nothing but murder and +robbery.” + +“No, your excellency,” returned Bertuccio; “it was a vendetta followed +by restitution.” + +“And was the sum a large one?” + +“It was not money.” + +“Ah, I recollect,” replied the count; “did you not say something of an +infant?” + +“Yes, excellency; I hastened to the river, sat down on the bank, and +with my knife forced open the lock of the box. In a fine linen cloth +was wrapped a new-born child. Its purple visage, and its violet-colored +hands showed that it had perished from suffocation, but as it was not +yet cold, I hesitated to throw it into the water that ran at my feet. +After a moment I fancied that I felt a slight pulsation of the heart, +and as I had been assistant at the hospital at Bastia, I did what a +doctor would have done—I inflated the lungs by blowing air into them, +and at the expiration of a quarter of an hour, it began to breathe, and +cried feebly. In my turn I uttered a cry, but a cry of joy. + +“‘God has not cursed me then,’ I cried, ‘since he permits me to save +the life of a human creature, in exchange for the life I have taken +away.’” + +20295m + + + +“And what did you do with the child?” asked Monte Cristo. “It was an +embarrassing load for a man seeking to escape.” + +“I had not for a moment the idea of keeping it, but I knew that at +Paris there was an asylum where they receive such creatures. As I +passed the city gates I declared that I had found the child on the +road, and I inquired where the asylum was; the box confirmed my +statement, the linen proved that the infant belonged to wealthy +parents, the blood with which I was covered might have proceeded from +the child as well as from anyone else. No objection was raised, but +they pointed out the asylum, which was situated at the upper end of the +Rue d’Enfer, and after having taken the precaution of cutting the linen +in two pieces, so that one of the two letters which marked it was on +the piece wrapped around the child, while the other remained in my +possession, I rang the bell, and fled with all speed. A fortnight after +I was at Rogliano, and I said to Assunta: + +“‘Console thyself, sister; Israel is dead, but he is avenged.’ + +“She demanded what I meant, and when I had told her all,—‘Giovanni,’ +said she, ‘you should have brought this child with you; we would have +replaced the parents it has lost, have called it Benedetto, and then, +in consequence of this good action, God would have blessed us.’ In +reply I gave her the half of the linen I had kept in order to reclaim +him if we became rich.” + +“What letters were marked on the linen?” said Monte Cristo. + +“An H and an N, surmounted by a baron’s coronet.” + +“By heaven, M. Bertuccio, you make use of heraldic terms; where did you +study heraldry?” + +“In your service, excellency, where everything is learned.” + +“Go on, I am curious to know two things.” + +“What are they, your excellency?” + +“What became of this little boy? for I think you told me it was a boy, +M. Bertuccio.” + +“No excellency, I do not recollect telling you that.” + +“I thought you did; I must have been mistaken.” + +“No, you were not, for it was in reality a little boy. But your +excellency wished to know two things; what was the second?” + +“The second was the crime of which you were accused when you asked for +a confessor, and the Abbé Busoni came to visit you at your request in +the prison at Nîmes.” + +“The story will be very long, excellency.” + +“What matter? you know I take but little sleep, and I do not suppose +you are very much inclined for it either.” Bertuccio bowed, and resumed +his story. + +“Partly to drown the recollections of the past that haunted me, partly +to supply the wants of the poor widow, I eagerly returned to my trade +of smuggler, which had become more easy since that relaxation of the +laws which always follows a revolution. The southern districts were +ill-watched in particular, in consequence of the disturbances that were +perpetually breaking out in Avignon, Nîmes, or Uzès. We profited by +this respite on the part of the government to make friends everywhere. +Since my brother’s assassination in the streets of Nîmes, I had never +entered the town; the result was that the innkeeper with whom we were +connected, seeing that we would no longer come to him, was forced to +come to us, and had established a branch to his inn, on the road from +Bellegarde to Beaucaire, at the sign of the Pont du Gard. We had thus, +at Aigues-Mortes, Martigues, or Bouc, a dozen places where we left our +goods, and where, in case of necessity, we concealed ourselves from the +gendarmes and custom-house officers. Smuggling is a profitable trade, +when a certain degree of vigor and intelligence is employed; as for +myself, brought up in the mountains, I had a double motive for fearing +the gendarmes and custom-house officers, as my appearance before the +judges would cause an inquiry, and an inquiry always looks back into +the past. And in my past life they might find something far more grave +than the selling of smuggled cigars, or barrels of brandy without a +permit. So, preferring death to capture, I accomplished the most +astonishing deeds, and which, more than once, showed me that the too +great care we take of our bodies is the only obstacle to the success of +those projects which require rapid decision, and vigorous and +determined execution. In reality, when you have once devoted your life +to your enterprises, you are no longer the equal of other men, or, +rather, other men are no longer your equals, and whosoever has taken +this resolution, feels his strength and resources doubled.” + +“Philosophy, M. Bertuccio,” interrupted the count; “you have done a +little of everything in your life.” + +“Oh, excellency!” + +“No, no; but philosophy at half-past ten at night is somewhat late; yet +I have no other observation to make, for what you say is correct, which +is more than can be said for all philosophy.” + +“My journeys became more and more extensive and more productive. +Assunta took care of all, and our little fortune increased. One day as +I was setting off on an expedition, ‘Go,’ said she; ‘at your return I +will give you a surprise.’ I questioned her, but in vain; she would +tell me nothing, and I departed. Our expedition lasted nearly six +weeks; we had been to Lucca to take in oil, to Leghorn for English +cottons, and we ran our cargo without opposition, and returned home +full of joy. When I entered the house, the first thing I beheld in the +middle of Assunta’s chamber was a cradle that might be called sumptuous +compared with the rest of the furniture, and in it a baby seven or +eight months old. I uttered a cry of joy; the only moments of sadness I +had known since the assassination of the procureur were caused by the +recollection that I had abandoned this child. For the assassination +itself I had never felt any remorse. Poor Assunta had guessed all. She +had profited by my absence, and furnished with the half of the linen, +and having written down the day and hour at which I had deposited the +child at the asylum, had set off for Paris, and had reclaimed it. No +objection was raised, and the infant was given up to her. Ah, I +confess, your excellency, when I saw this poor creature sleeping +peacefully in its cradle, I felt my eyes filled with tears. ‘Ah, +Assunta,’ cried I, ‘you are an excellent woman, and Heaven will bless +you.’” + +“This,” said Monte Cristo, “is less correct than your philosophy,—it is +only faith.” + +“Alas, your excellency is right,” replied Bertuccio, “and God made this +infant the instrument of our punishment. Never did a perverse nature +declare itself more prematurely, and yet it was not owing to any fault +in his bringing up. He was a most lovely child, with large blue eyes, +of that deep color that harmonizes so well with the blond complexion; +only his hair, which was too light, gave his face a most singular +expression, and added to the vivacity of his look, and the malice of +his smile. + +“Unfortunately, there is a proverb which says that ‘red is either +altogether good or altogether bad.’ The proverb was but too correct as +regarded Benedetto, and even in his infancy he manifested the worst +disposition. It is true that the indulgence of his foster-mother +encouraged him. This child, for whom my poor sister would go to the +town, five or six leagues off, to purchase the earliest fruits and the +most tempting sweetmeats, preferred to Palma grapes or Genoese +preserves, the chestnuts stolen from a neighbor’s orchard, or the dried +apples in his loft, when he could eat as well of the nuts and apples +that grew in my garden. + +“One day, when Benedetto was about five or six, our neighbor Wasilio, +who, according to the custom of the country, never locked up his purse +or his valuables—for, as your excellency knows, there are no thieves in +Corsica—complained that he had lost a louis out of his purse; we +thought he must have made a mistake in counting his money, but he +persisted in the accuracy of his statement. One day, Benedetto, who had +been gone from the house since morning, to our great anxiety, did not +return until late in the evening, dragging a monkey after him, which he +said he had found chained to the foot of a tree. For more than a month +past, the mischievous child, who knew not what to wish for, had taken +it into his head to have a monkey. A boatman, who had passed by +Rogliano, and who had several of these animals, whose tricks had +greatly diverted him, had, doubtless, suggested this idea to him. +‘Monkeys are not found in our woods chained to trees,’ said I; ‘confess +how you obtained this animal.’ Benedetto maintained the truth of what +he had said, and accompanied it with details that did more honor to his +imagination than to his veracity. I became angry; he began to laugh, I +threatened to strike him, and he made two steps backwards. ‘You cannot +beat me,’ said he; ‘you have no right, for you are not my father.’ + +20299m + + + +“We never knew who had revealed this fatal secret, which we had so +carefully concealed from him; however, it was this answer, in which the +child’s whole character revealed itself, that almost terrified me, and +my arm fell without touching him. + +“The boy triumphed, and this victory rendered him so audacious, that +all the money of Assunta, whose affection for him seemed to increase as +he became more unworthy of it, was spent in caprices she knew not how +to contend against, and follies she had not the courage to prevent. +When I was at Rogliano everything went on properly, but no sooner was +my back turned than Benedetto became master, and everything went ill. +When he was only eleven, he chose his companions from among the young +men of eighteen or twenty, the worst characters in Bastia, or, indeed, +in Corsica, and they had already, for some mischievous pranks, been +several times threatened with a prosecution. I became alarmed, as any +prosecution might be attended with serious consequences. I was +compelled, at this period, to leave Corsica on an important expedition; +I reflected for a long time, and with the hope of averting some +impending misfortune, I resolved that Benedetto should accompany me. + +“I hoped that the active and laborious life of a smuggler, with the +severe discipline on board, would have a salutary effect on his +character, which was now well-nigh, if not quite, corrupt. I spoke to +Benedetto alone, and proposed to him to accompany me, endeavoring to +tempt him by all the promises most likely to dazzle the imagination of +a child of twelve. He heard me patiently, and when I had finished, +burst out laughing. + +“‘Are you mad, uncle?’ (he called me by this name when he was in good +humor); ‘do you think I am going to change the life I lead for your +mode of existence—my agreeable indolence for the hard and precarious +toil you impose on yourself, exposed to the bitter frost at night, and +the scorching heat by day, compelled to conceal yourself, and when you +are perceived, receive a volley of bullets, all to earn a paltry sum? +Why, I have as much money as I want; mother Assunta always furnishes me +when I ask for it! You see that I should be a fool to accept your +offer.’ + +“The arguments, and his audacity, perfectly stupefied me. Benedetto +rejoined his associates, and I saw him from a distance point me out to +them as a fool.” + +“Sweet child,” murmured Monte Cristo. + +“Oh, had he been my own son,” replied Bertuccio, “or even my nephew, I +would have brought him back to the right road, for the knowledge that +you are doing your duty gives you strength, but the idea that I was +striking a child whose father I had killed, made it impossible for me +to punish him. I gave my sister, who constantly defended the +unfortunate boy, good advice, and as she confessed that she had several +times missed money to a considerable amount, I showed her a safe place +in which to conceal our little treasure for the future. My mind was +already made up. Benedetto could read, write, and cipher perfectly, for +when the fit seized him, he learned more in a day than others in a +week. My intention was to enter him as a clerk in some ship, and +without letting him know anything of my plan, to convey him some +morning on board; by this means his future treatment would depend upon +his own conduct. I set off for France, after having fixed upon the +plan. Our cargo was to be landed in the Gulf of Lyons, and this was a +difficult thing to do because it was then the year 1829. The most +perfect tranquillity was restored, and the vigilance of the +custom-house officers was redoubled, and their strictness was increased +at this time, in consequence of the fair at Beaucaire. + +20301m + + + +“Our expedition made a favorable beginning. We anchored our +vessel—which had a double hold, where our goods were concealed—amidst a +number of other vessels that bordered the banks of the Rhône from +Beaucaire to Arles. On our arrival we began to discharge our cargo in +the night, and to convey it into the town, by the help of the innkeeper +with whom we were connected. + +“Whether success rendered us imprudent, or whether we were betrayed, I +know not; but one evening, about five o’clock, our little cabin-boy +came breathlessly, to inform us that he had seen a detachment of +custom-house officers advancing in our direction. It was not their +proximity that alarmed us, for detachments were constantly patrolling +along the banks of the Rhône, but the care, according to the boy’s +account, that they took to avoid being seen. In an instant we were on +the alert, but it was too late; our vessel was surrounded, and amongst +the custom-house officers I observed several gendarmes, and, as +terrified at the sight of their uniforms as I was brave at the sight of +any other, I sprang into the hold, opened a port, and dropped into the +river, dived, and only rose at intervals to breathe, until I reached a +ditch that had recently been made from the Rhône to the canal that runs +from Beaucaire to Aigues-Mortes. I was now safe, for I could swim along +the ditch without being seen, and I reached the canal in safety. I had +designedly taken this direction. I have already told your excellency of +an innkeeper from Nîmes who had set up a little tavern on the road from +Bellegarde to Beaucaire.” + +“Yes,” said Monte Cristo “I perfectly recollect him; I think he was +your colleague.” + +“Precisely,” answered Bertuccio; “but he had, seven or eight years +before this period, sold his establishment to a tailor at Marseilles, +who, having almost ruined himself in his old trade, wished to make his +fortune in another. Of course, we made the same arrangements with the +new landlord that we had with the old; and it was of this man that I +intended to ask shelter.” + +“What was his name?” inquired the count, who seemed to become somewhat +interested in Bertuccio’s story. + +“Gaspard Caderousse; he had married a woman from the village of +Carconte, and whom we did not know by any other name than that of her +village. She was suffering from malarial fever, and seemed dying by +inches. As for her husband, he was a strapping fellow of forty, or +five-and-forty, who had more than once, in time of danger, given ample +proof of his presence of mind and courage.” + +“And you say,” interrupted Monte Cristo “that this took place towards +the year——” + +“1829, your excellency.” + +“In what month?” + +“June.” + +“The beginning or the end?” + +“The evening of the 3rd.” + +20303m + + + +“Ah,” said Monte Cristo “the evening of the 3rd of June, 1829. Go on.” + +“It was from Caderousse that I intended demanding shelter, and, as we +never entered by the door that opened onto the road, I resolved not to +break through the rule, so climbing over the garden-hedge, I crept +amongst the olive and wild fig trees, and fearing that Caderousse might +have some guest, I entered a kind of shed in which I had often passed +the night, and which was only separated from the inn by a partition, in +which holes had been made in order to enable us to watch an opportunity +of announcing our presence. + +“My intention was, if Caderousse was alone, to acquaint him with my +presence, finish the meal the custom-house officers had interrupted, +and profit by the threatened storm to return to the Rhône, and +ascertain the state of our vessel and its crew. I stepped into the +shed, and it was fortunate I did so, for at that moment Caderousse +entered with a stranger. + +“I waited patiently, not to overhear what they said, but because I +could do nothing else; besides, the same thing had occurred often +before. The man who was with Caderousse was evidently a stranger to the +South of France; he was one of those merchants who come to sell +jewellery at the Beaucaire fair, and who during the month the fair +lasts, and during which there is so great an influx of merchants and +customers from all parts of Europe, often have dealings to the amount +of 100,000 to 150,000 francs. Caderousse entered hastily. Then, seeing +that the room was, as usual, empty, and only guarded by the dog, he +called to his wife, ‘Hello, Carconte,’ said he, ‘the worthy priest has +not deceived us; the diamond is real.’ + +“An exclamation of joy was heard, and the staircase creaked beneath a +feeble step. ‘What do you say?’ asked his wife, pale as death. + +“‘I say that the diamond is real, and that this gentleman, one of the +first jewellers of Paris, will give us 50,000 francs for it. Only, in +order to satisfy himself that it really belongs to us, he wishes you to +relate to him, as I have done already, the miraculous manner in which +the diamond came into our possession. In the meantime please to sit +down, monsieur, and I will fetch you some refreshment.’ + +“The jeweller examined attentively the interior of the inn and the +apparent poverty of the persons who were about to sell him a diamond +that seemed to have come from the casket of a prince. + +“‘Relate your story, madame,’ said he, wishing, no doubt, to profit by +the absence of the husband, so that the latter could not influence the +wife’s story, to see if the two recitals tallied. + +“‘Oh,’ returned she, ‘it was a gift of heaven. My husband was a great +friend, in 1814 or 1815, of a sailor named Edmond Dantès. This poor +fellow, whom Caderousse had forgotten, had not forgotten him, and at +his death he bequeathed this diamond to him.’ + +“‘But how did he obtain it?’ asked the jeweller; ‘had he it before he +was imprisoned?’ + +“‘No, monsieur; but it appears that in prison he made the acquaintance +of a rich Englishman, and as in prison he fell sick, and Dantès took +the same care of him as if he had been his brother, the Englishman, +when he was set free, gave this stone to Dantès, who, less fortunate, +died, and, in his turn, left it to us, and charged the excellent abbé, +who was here this morning, to deliver it.’ + +“‘The same story,’ muttered the jeweller; ‘and improbable as it seemed +at first, it may be true. There’s only the price we are not agreed +about.’ + +“‘How not agreed about?’ said Caderousse. ‘I thought we agreed for the +price I asked.’ + +“‘That is,’ replied the jeweller, ‘I offered 40,000 francs.’ + +‘Forty thousand,’ cried La Carconte; ‘we will not part with it for that +sum. The abbé told us it was worth 50,000 without the setting.’ + +“‘What was the abbé’s name?’ asked the indefatigable questioner. + +“‘The Abbé Busoni,’ said La Carconte. + +“‘He was a foreigner?’ + +“‘An Italian from the neighborhood of Mantua, I believe.’ + +“‘Let me see this diamond again,’ replied the jeweller; ‘the first time +you are often mistaken as to the value of a stone.’ + +“Caderousse took from his pocket a small case of black shagreen, +opened, and gave it to the jeweller. At the sight of the diamond, which +was as large as a hazel-nut, La Carconte’s eyes sparkled with +cupidity.” + +“And what did you think of this fine story, eavesdropper?” said Monte +Cristo; “did you credit it?” + +“Yes, your excellency. I did not look on Caderousse as a bad man, and I +thought him incapable of committing a crime, or even a theft.” + +“That did more honor to your heart than to your experience, M. +Bertuccio. Had you known this Edmond Dantès, of whom they spoke?” + +“No, your excellency, I had never heard of him before, and never but +once afterwards, and that was from the Abbé Busoni himself, when I saw +him in the prison at Nîmes.” + +“Go on.” + +“The jeweller took the ring, and drawing from his pocket a pair of +steel pliers and a small set of copper scales, he took the stone out of +its setting, and weighed it carefully. + +“‘I will give you 45,000,’ said he, ‘but not a sou more; besides, as +that is the exact value of the stone, I brought just that sum with me.’ + +“‘Oh, that’s no matter,’ replied Caderousse, ‘I will go back with you +to fetch the other 5,000 francs.’ + +“‘No,’ returned the jeweller, giving back the diamond and the ring to +Caderousse, ‘no, it is worth no more, and I am sorry I offered so much, +for the stone has a flaw in it, which I had not seen. However, I will +not go back on my word, and I will give 45,000.’ + +“‘At least, replace the diamond in the ring,’ said La Carconte sharply. + +“‘Ah, true,’ replied the jeweller, and he reset the stone. + +“‘No matter,’ observed Caderousse, replacing the box in his pocket, +‘someone else will purchase it.’ + +“‘Yes,’ continued the jeweller; ‘but someone else will not be so easy +as I am, or content himself with the same story. It is not natural that +a man like you should possess such a diamond. He will inform against +you. You will have to find the Abbé Busoni; and abbés who give diamonds +worth two thousand louis are rare. The law would seize it, and put you +in prison; if at the end of three or four months you are set at +liberty, the ring will be lost, or a false stone, worth three francs, +will be given you, instead of a diamond worth 50,000 or perhaps 55,000 +francs; from which you must allow that one runs considerable risk in +purchasing.’ + +“Caderousse and his wife looked eagerly at each other. + +“‘No,’ said Caderousse, ‘we are not rich enough to lose 5,000 francs.’ + +“‘As you please, my dear sir,’ said the jeweller; ‘I had, however, as +you see, brought you the money in bright coin.’ And he drew from his +pocket a handful of gold, and held it sparkling before the dazzled eyes +of the innkeeper, and in the other hand he held a packet of bank-notes. + +“There was evidently a severe struggle in the mind of Caderousse; it +was plain that the small shagreen case, which he turned over and over +in his hand, did not seem to him commensurate in value to the enormous +sum which fascinated his gaze. He turned towards his wife. + +“‘What do you think of this?’ he asked in a low voice. + +“‘Let him have it—let him have it,’ she said. ‘If he returns to +Beaucaire without the diamond, he will inform against us, and, as he +says, who knows if we shall ever again see the Abbé Busoni?—in all +probability we shall never see him.’ + +“‘Well, then, so I will!’ said Caderousse; ‘so you may have the diamond +for 45,000 francs. But my wife wants a gold chain, and I want a pair of +silver buckles.’ + +“The jeweller drew from his pocket a long flat box, which contained +several samples of the articles demanded. ‘Here,’ he said, ‘I am very +straightforward in my dealings—take your choice.’ + +“The woman selected a gold chain worth about five louis, and the +husband a pair of buckles, worth perhaps fifteen francs. + +“‘I hope you will not complain now?’ said the jeweller. + +“‘The abbé told me it was worth 50,000 francs,’ muttered Caderousse. + +“‘Come, come—give it to me! What a strange fellow you are,’ said the +jeweller, taking the diamond from his hand. ‘I give you 45,000 +francs—that is, 2,500 livres of income,—a fortune such as I wish I had +myself, and you are not satisfied!’ + +“‘And the five-and-forty thousand francs,’ inquired Caderousse in a +hoarse voice, ‘where are they? Come—let us see them.’ + +“‘Here they are,’ replied the jeweller, and he counted out upon the +table 15,000 francs in gold, and 30,000 francs in bank-notes. + +“‘Wait whilst I light the lamp,’ said La Carconte; ‘it is growing dark, +and there may be some mistake.’ In fact, night had come on during this +conversation, and with night the storm which had been threatening for +the last half-hour. The thunder growled in the distance; but it was +apparently not heard by the jeweller, Caderousse, or La Carconte, +absorbed as they were all three with the demon of gain. I myself felt +a strange kind of fascination at the sight of all this gold and all +these bank-notes; it seemed to me that I was in a dream, and, as it +always happens in a dream, I felt myself riveted to the spot. +Caderousse counted and again counted the gold and the notes, then +handed them to his wife, who counted and counted them again in her +turn. During this time, the jeweller made the diamond play and sparkle +in the lamplight, and the gem threw out jets of light which made him +unmindful of those which—precursors of the storm—began to play in at +the windows. + +“‘Well,’ inquired the jeweller, ‘is the cash all right?’ + +“‘Yes,’ said Caderousse. ‘Give me the pocket-book, La Carconte, and +find a bag somewhere.’ + +“La Carconte went to a cupboard, and returned with an old leathern +pocket-book and a bag. From the former she took some greasy letters, +and put in their place the bank-notes, and from the bag took two or +three crowns of six livres each, which, in all probability, formed the +entire fortune of the miserable couple. + +“‘There,’ said Caderousse; ‘and now, although you have wronged us of +perhaps 10,000 francs, will you have your supper with us? I invite you +with good-will.’ + +“‘Thank you,’ replied the jeweller, ‘it must be getting late, and I +must return to Beaucaire—my wife will be getting uneasy.’ He drew out +his watch, and exclaimed, ‘_Morbleu!_ nearly nine o’clock—why, I shall +not get back to Beaucaire before midnight! Good-night, my friends. If +the Abbé Busoni should by any accident return, think of me.’ + +“‘In another week you will have left Beaucaire,’ remarked Caderousse, +‘for the fair ends in a few days.’ + +“‘True, but that makes no difference. Write to me at Paris, to M. +Joannes, in the Palais Royal, arcade Pierre, No. 45. I will make the +journey on purpose to see him, if it is worth while.’ + +“At this moment there was a tremendous clap of thunder, accompanied by +a flash of lightning so vivid, that it quite eclipsed the light of the +lamp. + +20307m + + + +“‘See here,’ exclaimed Caderousse. ‘You cannot think of going out in +such weather as this.’ + +“‘Oh, I am not afraid of thunder,’ said the jeweller. + +“‘And then there are robbers,’ said La Carconte. ‘The road is never +very safe during fair time.’ + +“‘Oh, as to the robbers,’ said Joannes, ‘here is something for them,’ +and he drew from his pocket a pair of small pistols, loaded to the +muzzle. ‘Here,’ said he, ‘are dogs who bark and bite at the same time, +they are for the two first who shall have a longing for your diamond, +Friend Caderousse.’ + +“Caderousse and his wife again interchanged a meaning look. It seemed +as though they were both inspired at the same time with some horrible +thought. ‘Well, then, a good journey to you,’ said Caderousse. + +“‘Thanks,’ replied the jeweller. He then took his cane, which he had +placed against an old cupboard, and went out. At the moment when he +opened the door, such a gust of wind came in that the lamp was nearly +extinguished. ‘Oh,’ said he, ‘this is very nice weather, and two +leagues to go in such a storm.’ + +“‘Remain,’ said Caderousse. ‘You can sleep here.’ + +“‘Yes; do stay,’ added La Carconte in a tremulous voice; ‘we will take +every care of you.’ + +“‘No; I must sleep at Beaucaire. So, once more, good-night.’ Caderousse +followed him slowly to the threshold. ‘I can see neither heaven nor +earth,’ said the jeweller, who was outside the door. ‘Do I turn to the +right, or to the left hand?’ + +“‘To the right,’ said Caderousse. ‘You cannot go wrong—the road is +bordered by trees on both sides.’ + +“‘Good—all right,’ said a voice almost lost in the distance. + +“‘Close the door,’ said La Carconte; ‘I do not like open doors when it +thunders.’ + +“‘Particularly when there is money in the house, eh?’ answered +Caderousse, double-locking the door. + +20311m + + + +“He came into the room, went to the cupboard, took out the bag and +pocket-book, and both began, for the third time, to count their gold +and bank-notes. I never saw such an expression of cupidity as the +flickering lamp revealed in those two countenances. The woman, +especially, was hideous; her usual feverish tremulousness was +intensified, her countenance had become livid, and her eyes resembled +burning coals. + +“‘Why,’ she inquired in a hoarse voice, ‘did you invite him to sleep +here tonight?’ + +“‘Why?’ said Caderousse with a shudder; ‘why, that he might not have +the trouble of returning to Beaucaire.’ + +“‘Ah,’ responded the woman, with an expression impossible to describe; +‘I thought it was for something else.’ + +“‘Woman, woman—why do you have such ideas?’ cried Caderousse; ‘or, if +you have them, why don’t you keep them to yourself?’ + +“‘Well,’ said La Carconte, after a moment’s pause, ‘you are not a man.’ + +“‘What do you mean?’ added Caderousse. + +“‘If you had been a man, you would not have let him go from here.’ + +“‘Woman!’ + +“‘Or else he should not have reached Beaucaire.’ + +“‘Woman!’ + +“‘The road takes a turn—he is obliged to follow it—while alongside of +the canal there is a shorter road.’ + +“‘Woman!—you offend the good God. There—listen!’ + +And at this moment there was a tremendous peal of thunder, while the +livid lightning illumined the room, and the thunder, rolling away in +the distance, seemed to withdraw unwillingly from the cursed abode. +‘Mercy!’ said Caderousse, crossing himself. + +20312m + + + +“At the same moment, and in the midst of the terrifying silence which +usually follows a clap of thunder, they heard a knocking at the door. +Caderousse and his wife started and looked aghast at each other. + +“‘Who’s there?’ cried Caderousse, rising, and drawing up in a heap the +gold and notes scattered over the table, and which he covered with his +two hands. + +“‘It is I,’ shouted a voice. + +“‘And who are you?’ + +“‘Eh, _pardieu!_ Joannes, the jeweller.’ + +“‘Well, and you said I offended the good God,’ said La Carconte with a +horrid smile. ‘Why, the good God sends him back again.’ Caderousse sank +pale and breathless into his chair. + +“La Carconte, on the contrary, rose, and going with a firm step towards +the door, opened it, saying, as she did so: + +“‘Come in, dear M. Joannes.’ + +“‘_Ma foi_,’ said the jeweller, drenched with rain, ‘I am not destined +to return to Beaucaire tonight. The shortest follies are best, my dear +Caderousse. You offered me hospitality, and I accept it, and have +returned to sleep beneath your friendly roof.’ + +“Caderousse stammered out something, while he wiped away the sweat that +started to his brow. La Carconte double-locked the door behind the +jeweller.” + + + + Chapter 45. The Rain of Blood + +As the jeweller returned to the apartment, he cast around him a +scrutinizing glance—but there was nothing to excite suspicion, if it +did not exist, or to confirm it, if it were already awakened. +Caderousse’s hands still grasped the gold and bank-notes, and La +Carconte called up her sweetest smiles while welcoming the reappearance +of their guest. + +“‘Well, well,’ said the jeweller, ‘you seem, my good friends, to have +had some fears respecting the accuracy of your money, by counting it +over so carefully directly I was gone.’ + +“‘Oh, no,’ answered Caderousse, ‘that was not my reason, I can assure +you; but the circumstances by which we have become possessed of this +wealth are so unexpected, as to make us scarcely credit our good +fortune, and it is only by placing the actual proof of our riches +before our eyes that we can persuade ourselves that the whole affair is +not a dream.’ + +“The jeweller smiled. ‘Have you any other guests in your house?’ +inquired he. + +“‘Nobody but ourselves,’ replied Caderousse; ‘the fact is, we do not +lodge travellers—indeed, our tavern is so near the town, that nobody +would think of stopping here.’ + +“‘Then I am afraid I shall very much inconvenience you.’ + +“‘Inconvenience us? Not at all, my dear sir,’ said La Carconte in her +most gracious manner. ‘Not at all, I assure you.’ + +“‘But where will you manage to stow me?’ + +“‘In the chamber overhead.’ + +“‘Surely that is where you yourselves sleep?’ + +“‘Never mind that; we have a second bed in the adjoining room.’ + +“Caderousse stared at his wife with much astonishment. + +“The jeweller, meanwhile, was humming a song as he stood warming his +back at the fire La Carconte had kindled to dry the wet garments of her +guest; and this done, she next occupied herself in arranging his +supper, by spreading a napkin at the end of the table, and placing on +it the slender remains of their dinner, to which she added three or +four fresh-laid eggs. Caderousse had once more parted with his +treasure—the banknotes were replaced in the pocket-book, the gold put +back into the bag, and the whole carefully locked in the cupboard. He +then began pacing the room with a pensive and gloomy air, glancing from +time to time at the jeweller, who stood reeking with the steam from his +wet clothes, and merely changing his place on the warm hearth, to +enable the whole of his garments to be dried. + +“‘There,’ said La Carconte, as she placed a bottle of wine on the +table, ‘supper is ready whenever you are.’ + +“‘And you?’ asked Joannes. + +“‘I don’t want any supper,’ said Caderousse. + +“‘We dined so very late,’ hastily interposed La Carconte. + +“‘Then it seems I am to eat alone,’ remarked the jeweller. + +“‘Oh, we shall have the pleasure of waiting upon you,’ answered La +Carconte, with an eager attention she was not accustomed to manifest +even to guests who paid for what they took. + +“From time to time Caderousse darted on his wife keen, searching +glances, but rapid as the lightning flash. The storm still continued. + +“‘There, there,’ said La Carconte; ‘do you hear that? upon my word, you +did well to come back.’ + +“‘Nevertheless,’ replied the jeweller, ‘if by the time I have finished +my supper the tempest has at all abated, I shall make another start.’ + +“‘It’s the mistral,’ said Caderousse, ‘and it will be sure to last till +tomorrow morning.’ He sighed heavily. + +“‘Well,’ said the jeweller, as he placed himself at table, ‘all I can +say is, so much the worse for those who are abroad.’ + +“‘Yes,’ chimed in La Carconte, ‘they will have a wretched night of it.’ + +“The jeweller began eating his supper, and the woman, who was +ordinarily so querulous and indifferent to all who approached her, was +suddenly transformed into the most smiling and attentive hostess. Had +the unhappy man on whom she lavished her assiduities been previously +acquainted with her, so sudden an alteration might well have excited +suspicion in his mind, or at least have greatly astonished him. +Caderousse, meanwhile, continued to pace the room in gloomy silence, +sedulously avoiding the sight of his guest; but as soon as the stranger +had completed his repast, the agitated innkeeper went eagerly to the +door and opened it. + +“‘I believe the storm is over,’ said he. + +“But as if to contradict his statement, at that instant a violent clap +of thunder seemed to shake the house to its very foundation, while a +sudden gust of wind, mingled with rain, extinguished the lamp he held +in his hand. + +“Trembling and awe-struck, Caderousse hastily shut the door and +returned to his guest, while La Carconte lighted a candle by the +smouldering ashes that glimmered on the hearth. + +“‘You must be tired,’ said she to the jeweller; ‘I have spread a pair +of white sheets on your bed; go up when you are ready, and sleep well.’ + +“Joannes stayed for a while to see whether the storm seemed to abate in +its fury, but a brief space of time sufficed to assure him that, +instead of diminishing, the violence of the rain and thunder +momentarily increased; resigning himself, therefore, to what seemed +inevitable, he bade his host good-night, and mounted the stairs. He +passed over my head and I heard the flooring creak beneath his +footsteps. The quick, eager glance of La Carconte followed him as he +ascended, while Caderousse, on the contrary, turned his back, and +seemed most anxiously to avoid even glancing at him. + +“All these circumstances did not strike me as painfully at the time as +they have since done; in fact, all that had happened (with the +exception of the story of the diamond, which certainly did wear an air +of improbability), appeared natural enough, and called for neither +apprehension nor mistrust; but, worn out as I was with fatigue, and +fully purposing to proceed onwards directly the tempest abated, I +determined to obtain a few hours’ sleep. Overhead I could accurately +distinguish every movement of the jeweller, who, after making the best +arrangements in his power for passing a comfortable night, threw +himself on his bed, and I could hear it creak and groan beneath his +weight. + +“Insensibly my eyelids grew heavy, deep sleep stole over me, and having +no suspicion of anything wrong, I sought not to shake it off. I looked +into the kitchen once more and saw Caderousse sitting by the side of a +long table upon one of the low wooden stools which in country places +are frequently used instead of chairs; his back was turned towards me, +so that I could not see the expression of his countenance—neither +should I have been able to do so had he been placed differently, as his +head was buried between his two hands. La Carconte continued to gaze on +him for some time, then shrugging her shoulders, she took her seat +immediately opposite to him. + +“At this moment the expiring embers threw up a fresh flame from the +kindling of a piece of wood that lay near, and a bright light flashed +over the room. La Carconte still kept her eyes fixed on her husband, +but as he made no sign of changing his position, she extended her hard, +bony hand, and touched him on the forehead. + +20317m + + + +“Caderousse shuddered. The woman’s lips seemed to move, as though she +were talking; but because she merely spoke in an undertone, or my +senses were dulled by sleep, I did not catch a word she uttered. +Confused sights and sounds seemed to float before me, and gradually I +fell into a deep, heavy slumber. How long I had been in this +unconscious state I know not, when I was suddenly aroused by the report +of a pistol, followed by a fearful cry. Weak and tottering footsteps +resounded across the chamber above me, and the next instant a dull, +heavy weight seemed to fall powerless on the staircase. I had not yet +fully recovered consciousness, when again I heard groans, mingled with +half-stifled cries, as if from persons engaged in a deadly struggle. A +cry more prolonged than the others and ending in a series of groans +effectually roused me from my drowsy lethargy. Hastily raising myself +on one arm, I looked around, but all was dark; and it seemed to me as +if the rain must have penetrated through the flooring of the room +above, for some kind of moisture appeared to fall, drop by drop, upon +my forehead, and when I passed my hand across my brow, I felt that it +was wet and clammy. + +“To the fearful noises that had awakened me had succeeded the most +perfect silence—unbroken, save by the footsteps of a man walking about +in the chamber above. The staircase creaked, he descended into the room +below, approached the fire and lit a candle. + +“The man was Caderousse—he was pale and his shirt was all bloody. +Having obtained the light, he hurried upstairs again, and once more I +heard his rapid and uneasy footsteps. + +“A moment later he came down again, holding in his hand the small +shagreen case, which he opened, to assure himself it contained the +diamond,—seemed to hesitate as to which pocket he should put it in, +then, as if dissatisfied with the security of either pocket, he +deposited it in his red handkerchief, which he carefully rolled round +his head. + +“After this he took from his cupboard the bank-notes and gold he had +put there, thrust the one into the pocket of his trousers, and the +other into that of his waistcoat, hastily tied up a small bundle of +linen, and rushing towards the door, disappeared in the darkness of the +night. + +“Then all became clear and manifest to me, and I reproached myself with +what had happened, as though I myself had done the guilty deed. I +fancied that I still heard faint moans, and imagining that the +unfortunate jeweller might not be quite dead, I determined to go to his +relief, by way of atoning in some slight degree, not for the crime I +had committed, but for that which I had not endeavored to prevent. For +this purpose I applied all the strength I possessed to force an +entrance from the cramped spot in which I lay to the adjoining room. +The poorly fastened boards which alone divided me from it yielded to my +efforts, and I found myself in the house. Hastily snatching up the +lighted candle, I hurried to the staircase; about midway a body was +lying quite across the stairs. It was that of La Carconte. The pistol I +had heard had doubtless been fired at her. The shot had frightfully +lacerated her throat, leaving two gaping wounds from which, as well as +the mouth, the blood was pouring in floods. She was stone dead. I +strode past her, and ascended to the sleeping chamber, which presented +an appearance of the wildest disorder. The furniture had been knocked +over in the deadly struggle that had taken place there, and the sheets, +to which the unfortunate jeweller had doubtless clung, were dragged +across the room. The murdered man lay on the floor, his head leaning +against the wall, and about him was a pool of blood which poured forth +from three large wounds in his breast; there was a fourth gash, in +which a long table knife was plunged up to the handle. + +“I stumbled over some object; I stooped to examine—it was the second +pistol, which had not gone off, probably from the powder being wet. I +approached the jeweller, who was not quite dead, and at the sound of my +footsteps and the creaking of the floor, he opened his eyes, fixed them +on me with an anxious and inquiring gaze, moved his lips as though +trying to speak, then, overcome by the effort, fell back and expired. + +“This appalling sight almost bereft me of my senses, and finding that I +could no longer be of service to anyone in the house, my only desire +was to fly. I rushed towards the staircase, clutching my hair, and +uttering a groan of horror. + +“Upon reaching the room below, I found five or six custom-house +officers, and two or three gendarmes—all heavily armed. They threw +themselves upon me. I made no resistance; I was no longer master of my +senses. When I strove to speak, a few inarticulate sounds alone escaped +my lips. + +“As I noticed the significant manner in which the whole party pointed +to my blood-stained garments, I involuntarily surveyed myself, and then +I discovered that the thick warm drops that had so bedewed me as I lay +beneath the staircase must have been the blood of La Carconte. I +pointed to the spot where I had concealed myself. + +“‘What does he mean?’ asked a gendarme. + +“One of the officers went to the place I directed. + +“‘He means,’ replied the man upon his return, ‘that he got in that +way;’ and he showed the hole I had made when I broke through. + +“Then I saw that they took me for the assassin. I recovered force and +energy enough to free myself from the hands of those who held me, while +I managed to stammer forth: + +“‘I did not do it! Indeed, indeed I did not!’ + +“A couple of gendarmes held the muzzles of their carbines against my +breast. + +“‘Stir but a step,’ said they, ‘and you are a dead man.’ + +“‘Why should you threaten me with death,’ cried I, ‘when I have already +declared my innocence?’ + +“‘Tush, tush,’ cried the men; ‘keep your innocent stories to tell to +the judge at Nîmes. Meanwhile, come along with us; and the best advice +we can give you is to do so unresistingly.’ + +“Alas, resistance was far from my thoughts. I was utterly overpowered +by surprise and terror; and without a word I suffered myself to be +handcuffed and tied to a horse’s tail, and thus they took me to Nîmes. + +“I had been tracked by a customs-officer, who had lost sight of me near +the tavern; feeling certain that I intended to pass the night there, he +had returned to summon his comrades, who just arrived in time to hear +the report of the pistol, and to take me in the midst of such +circumstantial proofs of my guilt as rendered all hopes of proving my +innocence utterly futile. One only chance was left me, that of +beseeching the magistrate before whom I was taken to cause every +inquiry to be made for the Abbé Busoni, who had stopped at the inn of +the Pont du Gard on that morning. + +“If Caderousse had invented the story relative to the diamond, and +there existed no such person as the Abbé Busoni, then, indeed, I was +lost past redemption, or, at least, my life hung upon the feeble chance +of Caderousse himself being apprehended and confessing the whole truth. + +“Two months passed away in hopeless expectation on my part, while I +must do the magistrate the justice to say that he used every means to +obtain information of the person I declared could exculpate me if he +would. Caderousse still evaded all pursuit, and I had resigned myself +to what seemed my inevitable fate. My trial was to come on at the +approaching assizes; when, on the 8th of September—that is to say, +precisely three months and five days after the events which had +perilled my life—the Abbé Busoni, whom I never ventured to believe I +should see, presented himself at the prison doors, saying he understood +one of the prisoners wished to speak to him; he added, that having +learned at Marseilles the particulars of my imprisonment, he hastened +to comply with my desire. + +“You may easily imagine with what eagerness I welcomed him, and how +minutely I related the whole of what I had seen and heard. I felt some +degree of nervousness as I entered upon the history of the diamond, +but, to my inexpressible astonishment, he confirmed it in every +particular, and to my equal surprise, he seemed to place entire belief +in all I said. + +“And then it was that, won by his mild charity, seeing that he was +acquainted with all the habits and customs of my own country, and +considering also that pardon for the only crime of which I was really +guilty might come with a double power from lips so benevolent and kind, +I besought him to receive my confession, under the seal of which I +recounted the Auteuil affair in all its details, as well as every other +transaction of my life. That which I had done by the impulse of my best +feelings produced the same effect as though it had been the result of +calculation. My voluntary confession of the assassination at Auteuil +proved to him that I had not committed that of which I stood accused. +When he quitted me, he bade me be of good courage, and to rely upon his +doing all in his power to convince my judges of my innocence. + +“I had speedy proofs that the excellent abbé was engaged in my behalf, +for the rigors of my imprisonment were alleviated by many trifling +though acceptable indulgences, and I was told that my trial was to be +postponed to the assizes following those now being held. + +“In the interim it pleased Providence to cause the apprehension of +Caderousse, who was discovered in some distant country, and brought +back to France, where he made a full confession, refusing to make the +fact of his wife’s having suggested and arranged the murder any excuse +for his own guilt. The wretched man was sentenced to the galleys for +life, and I was immediately set at liberty.” + +“And then it was, I presume,” said Monte Cristo “that you came to me as +the bearer of a letter from the Abbé Busoni?” + +“It was, your excellency; the benevolent abbé took an evident interest +in all that concerned me. + +“‘Your mode of life as a smuggler,’ said he to me one day, ‘will be the +ruin of you; if you get out, don’t take it up again.’ + +“‘But how,’ inquired I, ‘am I to maintain myself and my poor sister?’ + +“‘A person, whose confessor I am,’ replied he, ‘and who entertains a +high regard for me, applied to me a short time since to procure him a +confidential servant. Would you like such a post? If so, I will give +you a letter of introduction to him.’ + +“‘Oh, father,’ I exclaimed, ‘you are very good.’ + +“‘But you must swear solemnly that I shall never have reason to repent +my recommendation.’ + +“I extended my hand, and was about to pledge myself by any promise he +would dictate, but he stopped me. + +“‘It is unnecessary for you to bind yourself by any vow,’ said he; ‘I +know and admire the Corsican nature too well to fear you. Here, take +this,’ continued he, after rapidly writing the few lines I brought to +your excellency, and upon receipt of which you deigned to receive me +into your service, and proudly I ask whether your excellency has ever +had cause to repent having done so?” + +“No,” replied the count; “I take pleasure in saying that you have +served me faithfully, Bertuccio; but you might have shown more +confidence in me.” + +“I, your excellency?” + +“Yes; you. How comes it, that having both a sister and an adopted son, +you have never spoken to me of either?” + +20323m + + + +“Alas, I have still to recount the most distressing period of my life. +Anxious as you may suppose I was to behold and comfort my dear sister, +I lost no time in hastening to Corsica, but when I arrived at Rogliano +I found a house of mourning, the consequences of a scene so horrible +that the neighbors remember and speak of it to this day. Acting by my +advice, my poor sister had refused to comply with the unreasonable +demands of Benedetto, who was continually tormenting her for money, as +long as he believed there was a sou left in her possession. One morning +he threatened her with the severest consequences if she did not supply +him with what he desired, and disappeared and remained away all day, +leaving the kind-hearted Assunta, who loved him as if he were her own +child, to weep over his conduct and bewail his absence. Evening came, +and still, with all the patient solicitude of a mother, she watched for +his return. + +“As the eleventh hour struck, he entered with a swaggering air, +attended by two of the most dissolute and reckless of his boon +companions. She stretched out her arms to him, but they seized hold of +her, and one of the three—none other than the accursed Benedetto +exclaimed: + +“‘Put her to torture and she’ll soon tell us where her money is.’ + +“It unfortunately happened that our neighbor, Wasilio, was at Bastia, +leaving no person in his house but his wife; no human creature beside +could hear or see anything that took place within our dwelling. Two +held poor Assunta, who, unable to conceive that any harm was intended +to her, smiled in the face of those who were soon to become her +executioners. The third proceeded to barricade the doors and windows, +then returned, and the three united in stifling the cries of terror +incited by the sight of these preparations, and then dragged Assunta +feet foremost towards the brazier, expecting to wring from her an +avowal of where her supposed treasure was secreted. In the struggle her +clothes caught fire, and they were obliged to let go their hold in +order to preserve themselves from sharing the same fate. Covered with +flames, Assunta rushed wildly to the door, but it was fastened; she +flew to the windows, but they were also secured; then the neighbors +heard frightful shrieks; it was Assunta calling for help. The cries +died away in groans, and next morning, as soon as Wasilio’s wife could +muster up courage to venture abroad, she caused the door of our +dwelling to be opened by the public authorities, when Assunta, although +dreadfully burnt, was found still breathing; every drawer and closet in +the house had been forced open, and the money stolen. Benedetto never +again appeared at Rogliano, neither have I since that day either seen +or heard anything concerning him. + +“It was subsequently to these dreadful events that I waited on your +excellency, to whom it would have been folly to have mentioned +Benedetto, since all trace of him seemed entirely lost; or of my +sister, since she was dead.” + +“And in what light did you view the occurrence?” inquired Monte Cristo. + +“As a punishment for the crime I had committed,” answered Bertuccio. +“Oh, those Villeforts are an accursed race!” + +“Truly they are,” murmured the count in a lugubrious tone. + +“And now,” resumed Bertuccio, “your excellency may, perhaps, be able to +comprehend that this place, which I revisit for the first time—this +garden, the actual scene of my crime—must have given rise to +reflections of no very agreeable nature, and produced that gloom and +depression of spirits which excited the notice of your excellency, who +was pleased to express a desire to know the cause. At this instant a +shudder passes over me as I reflect that possibly I am now standing on +the very grave in which lies M. de Villefort, by whose hand the ground +was dug to receive the corpse of his child.” + +“Everything is possible,” said Monte Cristo, rising from the bench on +which he had been sitting; “even,” he added in an inaudible voice, +“even that the procureur be not dead. The Abbé Busoni did right to send +you to me,” he went on in his ordinary tone, “and you have done well in +relating to me the whole of your history, as it will prevent my forming +any erroneous opinions concerning you in future. As for that Benedetto, +who so grossly belied his name, have you never made any effort to trace +out whither he has gone, or what has become of him?” + +“No; far from wishing to learn whither he has betaken himself, I should +shun the possibility of meeting him as I would a wild beast. Thank God, +I have never heard his name mentioned by any person, and I hope and +believe he is dead.” + +“Do not think so, Bertuccio,” replied the count; “for the wicked are +not so easily disposed of, for God seems to have them under his special +watch-care to make of them instruments of his vengeance.” + +“So be it,” responded Bertuccio, “all I ask of heaven is that I may +never see him again. And now, your excellency,” he added, bowing his +head, “you know everything—you are my judge on earth, as the Almighty +is in heaven; have you for me no words of consolation?” + +“My good friend, I can only repeat the words addressed to you by the +Abbé Busoni. Villefort merited punishment for what he had done to you, +and, perhaps, to others. Benedetto, if still living, will become the +instrument of divine retribution in some way or other, and then be duly +punished in his turn. As far as you yourself are concerned, I see but +one point in which you are really guilty. Ask yourself, wherefore, +after rescuing the infant from its living grave, you did not restore it +to its mother? There was the crime, Bertuccio—that was where you became +really culpable.” + +“True, excellency, that was the crime, the real crime, for in that I +acted like a coward. My first duty, directly I had succeeded in +recalling the babe to life, was to restore it to its mother; but, in +order to do so, I must have made close and careful inquiry, which +would, in all probability, have led to my own apprehension; and I clung +to life, partly on my sister’s account, and partly from that feeling of +pride inborn in our hearts of desiring to come off untouched and +victorious in the execution of our vengeance. Perhaps, too, the natural +and instinctive love of life made me wish to avoid endangering my own. +And then, again, I am not as brave and courageous as was my poor +brother.” + +Bertuccio hid his face in his hands as he uttered these words, while +Monte Cristo fixed on him a look of inscrutable meaning. After a brief +silence, rendered still more solemn by the time and place, the count +said, in a tone of melancholy wholly unlike his usual manner: + +“In order to bring this conversation to a fitting termination (the last +we shall ever hold upon this subject), I will repeat to you some words +I have heard from the lips of the Abbé Busoni. For all evils there are +two remedies—time and silence. And now leave me, Monsieur Bertuccio, to +walk alone here in the garden. The very circumstances which inflict on +you, as a principal in the tragic scene enacted here, such painful +emotions, are to me, on the contrary, a source of something like +contentment, and serve but to enhance the value of this dwelling in my +estimation. The chief beauty of trees consists in the deep shadow of +their umbrageous boughs, while fancy pictures a moving multitude of +shapes and forms flitting and passing beneath that shade. Here I have a +garden laid out in such a way as to afford the fullest scope for the +imagination, and furnished with thickly grown trees, beneath whose +leafy screen a visionary like myself may conjure up phantoms at will. +This to me, who expected but to find a blank enclosure surrounded by a +straight wall, is, I assure you, a most agreeable surprise. I have no +fear of ghosts, and I have never heard it said that so much harm had +been done by the dead during six thousand years as is wrought by the +living in a single day. Retire within, Bertuccio, and tranquillize your +mind. Should your confessor be less indulgent to you in your dying +moments than you found the Abbé Busoni, send for me, if I am still on +earth, and I will soothe your ears with words that shall effectually +calm and soothe your parting soul ere it goes forth to traverse the +ocean called eternity.” + +Bertuccio bowed respectfully, and turned away, sighing heavily. Monte +Cristo, left alone, took three or four steps onwards, and murmured: + +“Here, beneath this plane-tree, must have been where the infant’s grave +was dug. There is the little door opening into the garden. At this +corner is the private staircase communicating with the sleeping +apartment. There will be no necessity for me to make a note of these +particulars, for there, before my eyes, beneath my feet, all around me, +I have the plan sketched with all the living reality of truth.” + +After making the tour of the garden a second time, the count re-entered +his carriage, while Bertuccio, who perceived the thoughtful expression +of his master’s features, took his seat beside the driver without +uttering a word. The carriage proceeded rapidly towards Paris. + +That same evening, upon reaching his abode in the Champs-Élysées, the +Count of Monte Cristo went over the whole building with the air of one +long acquainted with each nook or corner. Nor, although preceding the +party, did he once mistake one door for another, or commit the smallest +error when choosing any particular corridor or staircase to conduct him +to a place or suite of rooms he desired to visit. Ali was his principal +attendant during this nocturnal survey. Having given various orders to +Bertuccio relative to the improvements and alterations he desired to +make in the house, the Count, drawing out his watch, said to the +attentive Nubian: + +“It is half-past eleven o’clock; Haydée will soon be here. Have the +French attendants been summoned to await her coming?” + +Ali extended his hands towards the apartments destined for the fair +Greek, which were so effectually concealed by means of a tapestried +entrance, that it would have puzzled the most curious to have divined +their existence. Ali, having pointed to the apartments, held up three +fingers of his right hand, and then, placing it beneath his head, shut +his eyes, and feigned to sleep. + +“I understand,” said Monte Cristo, well acquainted with Ali’s +pantomime; “you mean to tell me that three female attendants await +their new mistress in her sleeping-chamber.” + +Ali, with considerable animation, made a sign in the affirmative. + +“Madame will be tired tonight,” continued Monte Cristo, “and will, no +doubt, wish to rest. Desire the French attendants not to weary her with +questions, but merely to pay their respectful duty and retire. You will +also see that the Greek servants hold no communication with those of +this country.” + +He bowed. Just at that moment voices were heard hailing the concierge. +The gate opened, a carriage rolled down the avenue, and stopped at the +steps. The count hastily descended, presented himself at the already +opened carriage door, and held out his hand to a young woman, +completely enveloped in a green silk mantle heavily embroidered with +gold. She raised the hand extended towards her to her lips, and kissed +it with a mixture of love and respect. Some few words passed between +them in that sonorous language in which Homer makes his gods converse. +The young woman spoke with an expression of deep tenderness, while the +count replied with an air of gentle gravity. + +Preceded by Ali, who carried a rose-colored flambeau in his hand, the +young lady, who was no other than the lovely Greek who had been Monte +Cristo’s companion in Italy, was conducted to her apartments, while the +count retired to the pavilion reserved for himself. In another hour +every light in the house was extinguished, and it might have been +thought that all its inmates slept. + + + + Chapter 46. Unlimited Credit + +About two o’clock the following day a calash, drawn by a pair of +magnificent English horses, stopped at the door of Monte Cristo and a +person, dressed in a blue coat, with buttons of a similar color, a +white waistcoat, over which was displayed a massive gold chain, brown +trousers, and a quantity of black hair descending so low over his +eyebrows as to leave it doubtful whether it were not artificial so +little did its jetty glossiness assimilate with the deep wrinkles +stamped on his features—a person, in a word, who, although evidently +past fifty, desired to be taken for not more than forty, bent forwards +from the carriage door, on the panels of which were emblazoned the +armorial bearings of a baron, and directed his groom to inquire at the +porter’s lodge whether the Count of Monte Cristo resided there, and if +he were within. + +While waiting, the occupant of the carriage surveyed the house, the +garden as far as he could distinguish it, and the livery of servants +who passed to and fro, with an attention so close as to be somewhat +impertinent. His glance was keen but showed cunning rather than +intelligence; his lips were straight, and so thin that, as they closed, +they were drawn in over the teeth; his cheek-bones were broad and +projecting, a never-failing proof of audacity and craftiness; while the +flatness of his forehead, and the enlargement of the back of his skull, +which rose much higher than his large and coarsely shaped ears, +combined to form a physiognomy anything but prepossessing, save in the +eyes of such as considered that the owner of so splendid an equipage +must needs be all that was admirable and enviable, more especially when +they gazed on the enormous diamond that glittered in his shirt, and the +red ribbon that depended from his button-hole. + +The groom, in obedience to his orders, tapped at the window of the +porter’s lodge, saying: + +“Pray, does not the Count of Monte Cristo live here?” + +“His excellency does reside here,” replied the concierge; “but——” added +he, glancing an inquiring look at Ali. Ali returned a sign in the +negative. + +“But what?” asked the groom. + +“His excellency does not receive visitors today.” + +“Then here is my master’s card, the Baron Danglars. You will take it to +the count, and say that, although in haste to attend the Chamber, my +master came out of his way to have the honor of calling upon him.” + +“I never speak to his excellency,” replied the concierge; “the valet de +chambre will carry your message.” + +The groom returned to the carriage. + +“Well?” asked Danglars. + +The man, somewhat crest-fallen by the rebuke he had received, repeated +what the concierge had said. + +“Bless me,” murmured Baron Danglars, “this must surely be a prince +instead of a count by their styling him ‘excellency,’ and only +venturing to address him by the medium of his valet de chambre. +However, it does not signify; he has a letter of credit on me, so I +must see him when he requires his money.” + +Then, throwing himself back in his carriage, Danglars called out to his +coachman, in a voice that might be heard across the road, “To the +Chamber of Deputies.” + +Apprised in time of the visit paid him, Monte Cristo had, from behind +the blinds of his pavilion, as minutely observed the baron, by means of +an excellent lorgnette, as Danglars himself had scrutinized the house, +garden, and servants. + +“That fellow has a decidedly bad countenance,” said the count in a tone +of disgust, as he shut up his glass into its ivory case. “How comes it +that all do not retreat in aversion at sight of that flat, receding, +serpent-like forehead, round, vulture-shaped head, and sharp-hooked +nose, like the beak of a buzzard? Ali,” cried he, striking at the same +time on the brazen gong. Ali appeared. “Summon Bertuccio,” said the +count. Almost immediately Bertuccio entered the apartment. + +“Did your excellency desire to see me?” inquired he. + +“I did,” replied the count. “You no doubt observed the horses standing +a few minutes since at the door?” + +“Certainly, your excellency. I noticed them for their remarkable +beauty.” + +“Then how comes it,” said Monte Cristo with a frown, “that, when I +desired you to purchase for me the finest pair of horses to be found in +Paris, there is another pair, fully as fine as mine, not in my +stables?” + +At the look of displeasure, added to the angry tone in which the count +spoke, Ali turned pale and held down his head. + +“It is not your fault, my good Ali,” said the count in the Arabic +language, and with a gentleness none would have thought him capable of +showing, either in voice or face—“it is not your fault. You do not +understand the points of English horses.” + +The countenance of poor Ali recovered its serenity. + +“Permit me to assure your excellency,” said Bertuccio, “that the horses +you speak of were not to be sold when I purchased yours.” + +Monte Cristo shrugged his shoulders. “It seems, sir steward,” said he, +“that you have yet to learn that all things are to be sold to such as +care to pay the price.” + +“His excellency is not, perhaps, aware that M. Danglars gave 16,000 +francs for his horses?” + +“Very well. Then offer him double that sum; a banker never loses an +opportunity of doubling his capital.” + +“Is your excellency really in earnest?” inquired the steward. + +Monte Cristo regarded the person who durst presume to doubt his words +with the look of one equally surprised and displeased. + +“I have to pay a visit this evening,” replied he. “I desire that these +horses, with completely new harness, may be at the door with my +carriage.” + +Bertuccio bowed, and was about to retire; but when he reached the door, +he paused, and then said, “At what o’clock does your excellency wish +the carriage and horses to be ready?” + +“At five o’clock,” replied the count. + +“I beg your excellency’s pardon,” interposed the steward in a +deprecating manner, “for venturing to observe that it is already two +o’clock.” + +“I am perfectly aware of that fact,” answered Monte Cristo calmly. +Then, turning towards Ali, he said, “Let all the horses in my stables +be led before the windows of your young lady, that she may select those +she prefers for her carriage. Request her also to oblige me by saying +whether it is her pleasure to dine with me; if so, let dinner be served +in her apartments. Now, leave me, and desire my valet de chambre to +come hither.” + +Scarcely had Ali disappeared when the valet entered the chamber. + +“Monsieur Baptistin,” said the count, “you have been in my service one +year, the time I generally give myself to judge of the merits or +demerits of those about me. You suit me very well.” + +Baptistin bowed low. + +“It only remains for me to know whether I also suit you?” + +“Oh, your excellency!” exclaimed Baptistin eagerly. + +“Listen, if you please, till I have finished speaking,” replied Monte +Cristo. “You receive 1,500 francs per annum for your services here—more +than many a brave subaltern, who continually risks his life for his +country, obtains. You live in a manner far superior to many clerks who +work ten times harder than you do for their money. Then, though +yourself a servant, you have other servants to wait upon you, take care +of your clothes, and see that your linen is duly prepared for you. +Again, you make a profit upon each article you purchase for my toilet, +amounting in the course of a year to a sum equalling your wages.” + +“Nay, indeed, your excellency.” + +“I am not condemning you for this, Monsieur Baptistin; but let your +profits end here. It would be long indeed ere you would find so +lucrative a post as that you have now the good fortune to fill. I +neither ill-use nor ill-treat my servants by word or action. An error I +readily forgive, but wilful negligence or forgetfulness, never. My +commands are ordinarily short, clear, and precise; and I would rather +be obliged to repeat my words twice, or even three times, than they +should be misunderstood. I am rich enough to know whatever I desire to +know, and I can promise you I am not wanting in curiosity. If, then, I +should learn that you had taken upon yourself to speak of me to anyone +favorably or unfavorably, to comment on my actions, or watch my +conduct, that very instant you would quit my service. You may now +retire. I never caution my servants a second time—remember that.” + +Baptistin bowed, and was proceeding towards the door. + +“I forgot to mention to you,” said the count, “that I lay yearly aside +a certain sum for each servant in my establishment; those whom I am +compelled to dismiss lose (as a matter of course) all participation in +this money, while their portion goes to the fund accumulating for those +domestics who remain with me, and among whom it will be divided at my +death. You have been in my service a year, your fund has already begun +to accumulate—let it continue to do so.” + +This address, delivered in the presence of Ali, who, not understanding +one word of the language in which it was spoken, stood wholly unmoved, +produced an effect on M. Baptistin only to be conceived by such as have +occasion to study the character and disposition of French domestics. + +“I assure your excellency,” said he, “that at least it shall be my +study to merit your approbation in all things, and I will take M. Ali +as my model.” + +“By no means,” replied the count in the most frigid tones; “Ali has +many faults mixed with most excellent qualities. He cannot possibly +serve you as a pattern for your conduct, not being, as you are, a paid +servant, but a mere slave—a dog, who, should he fail in his duty +towards me, I should not discharge from my service, but kill.” + +Baptistin opened his eyes with astonishment. + +“You seem incredulous,” said Monte Cristo, who repeated to Ali in the +Arabic language what he had just been saying to Baptistin in French. + +The Nubian smiled assentingly to his master’s words, then, kneeling on +one knee, respectfully kissed the hand of the count. This corroboration +of the lesson he had just received put the finishing stroke to the +wonder and stupefaction of M. Baptistin. The count then motioned the +valet de chambre to retire, and to Ali to follow to his study, where +they conversed long and earnestly together. As the hand of the clock +pointed to five the count struck thrice upon his gong. When Ali was +wanted one stroke was given, two summoned Baptistin, and three +Bertuccio. The steward entered. + +“My horses,” said Monte Cristo. + +“They are at the door harnessed to the carriage as your excellency +desired. Does your excellency wish me to accompany him?” + +“No, the coachman, Ali, and Baptistin will go.” + +The count descended to the door of his mansion, and beheld his carriage +drawn by the very pair of horses he had so much admired in the morning +as the property of Danglars. As he passed them he said: + +“They are extremely handsome certainly, and you have done well to +purchase them, although you were somewhat remiss not to have procured +them sooner.” + +“Indeed, your excellency, I had very considerable difficulty in +obtaining them, and, as it is, they have cost an enormous price.” + +“Does the sum you gave for them make the animals less beautiful,” +inquired the count, shrugging his shoulders. + +“Nay, if your excellency is satisfied, it is all that I could wish. +Whither does your excellency desire to be driven?” + +“To the residence of Baron Danglars, Rue de la Chaussée d’Antin.” + +This conversation had passed as they stood upon the terrace, from which +a flight of stone steps led to the carriage-drive. As Bertuccio, with a +respectful bow, was moving away, the count called him back. + +“I have another commission for you, M. Bertuccio,” said he; “I am +desirous of having an estate by the seaside in Normandy—for instance, +between Le Havre and Boulogne. You see I give you a wide range. It will +be absolutely necessary that the place you may select have a small +harbor, creek, or bay, into which my corvette can enter and remain at +anchor. She draws only fifteen feet. She must be kept in constant +readiness to sail immediately I think proper to give the signal. Make +the requisite inquiries for a place of this description, and when you +have met with an eligible spot, visit it, and if it possess the +advantages desired, purchase it at once in your own name. The corvette +must now, I think, be on her way to Fécamp, must she not?” + +20333m + + + +“Certainly, your excellency; I saw her put to sea the same evening we +quitted Marseilles.” + +“And the yacht.” + +“Was ordered to remain at Martigues.” + +“’Tis well. I wish you to write from time to time to the captains in +charge of the two vessels so as to keep them on the alert.” + +“And the steamboat?” + +“She is at Châlons?” + +“Yes.” + +“The same orders for her as for the two sailing vessels.” + +“Very good.” + +“When you have purchased the estate I desire, I want constant relays of +horses at ten leagues apart along the northern and southern road.” + +“Your excellency may depend upon me.” + +The Count made a gesture of satisfaction, descended the terrace steps, +and sprang into his carriage, which was whirled along swiftly to the +banker’s house. + +Danglars was engaged at that moment, presiding over a railroad +committee. But the meeting was nearly concluded when the name of his +visitor was announced. As the count’s title sounded on his ear he rose, +and addressing his colleagues, who were members of one or the other +Chamber, he said: + +“Gentlemen, pardon me for leaving you so abruptly; but a most +ridiculous circumstance has occurred, which is this,—Thomson & French, +the Roman bankers, have sent to me a certain person calling himself the +Count of Monte Cristo, and have given him an unlimited credit with me. +I confess this is the drollest thing I have ever met with in the course +of my extensive foreign transactions, and you may readily suppose it +has greatly roused my curiosity. I took the trouble this morning to +call on the pretended count—if he were a real count he wouldn’t be so +rich. But, would you believe it, ‘He was not receiving.’ So the master +of Monte Cristo gives himself airs befitting a great millionaire or a +capricious beauty. I made inquiries, and found that the house in the +Champs-Élysées is his own property, and certainly it was very decently +kept up. But,” pursued Danglars with one of his sinister smiles, “an +order for unlimited credit calls for something like caution on the part +of the banker to whom that order is given. I am very anxious to see +this man. I suspect a hoax is intended, but the instigators of it +little knew whom they had to deal with. ‘They laugh best who laugh +last!’” + +Having delivered himself of this pompous address, uttered with a degree +of energy that left the baron almost out of breath, he bowed to the +assembled party and withdrew to his drawing-room, whose sumptuous +furnishings of white and gold had caused a great sensation in the +Chaussée d’Antin. It was to this apartment he had desired his guest to +be shown, with the purpose of overwhelming him at the sight of so much +luxury. He found the count standing before some copies of Albano and +Fattore that had been passed off to the banker as originals; but which, +mere copies as they were, seemed to feel their degradation in being +brought into juxtaposition with the gaudy colors that covered the +ceiling. + +The count turned round as he heard the entrance of Danglars into the +room. With a slight inclination of the head, Danglars signed to the +count to be seated, pointing significantly to a gilded armchair, +covered with white satin embroidered with gold. The count sat down. + +20335m + + + +“I have the honor, I presume, of addressing M. de Monte Cristo.” + +The count bowed. + +“And I of speaking to Baron Danglars, chevalier of the Legion of Honor, +and member of the Chamber of Deputies?” + +Monte Cristo repeated all the titles he had read on the baron’s card. + +Danglars felt the irony and compressed his lips. + +“You will, I trust, excuse me, monsieur, for not calling you by your +title when I first addressed you,” he said, “but you are aware that we +are living under a popular form of government, and that I am myself a +representative of the liberties of the people.” + +“So much so,” replied Monte Cristo, “that while you call yourself baron +you are not willing to call anybody else count.” + +“Upon my word, monsieur,” said Danglars with affected carelessness, “I +attach no sort of value to such empty distinctions; but the fact is, I +was made baron, and also chevalier of the Legion of Honor, in return +for services rendered, but——” + +“But you have discarded your titles after the example set you by +Messrs. de Montmorency and Lafayette? That was a noble example to +follow, monsieur.” + +“Why,” replied Danglars, “not entirely so; with the servants,—you +understand.” + +“I see; to your domestics you are ‘my lord,’ the journalists style you +‘monsieur,’ while your constituents call you ‘citizen.’ These are +distinctions very suitable under a constitutional government. I +understand perfectly.” + +Again Danglars bit his lips; he saw that he was no match for Monte +Cristo in an argument of this sort, and he therefore hastened to turn +to subjects more congenial. + +“Permit me to inform you, Count,” said he, bowing, “that I have +received a letter of advice from Thomson & French, of Rome.” + +“I am glad to hear it, baron,—for I must claim the privilege of +addressing you after the manner of your servants. I have acquired the +bad habit of calling persons by their titles from living in a country +where barons are still barons by right of birth. But as regards the +letter of advice, I am charmed to find that it has reached you; that +will spare me the troublesome and disagreeable task of coming to you +for money myself. You have received a regular letter of advice?” + +“Yes,” said Danglars, “but I confess I didn’t quite comprehend its +meaning.” + +“Indeed?” + +“And for that reason I did myself the honor of calling upon you, in +order to beg for an explanation.” + +“Go on, monsieur. Here I am, ready to give you any explanation you +desire.” + +“Why,” said Danglars, “in the letter—I believe I have it about me”—here +he felt in his breast-pocket—“yes, here it is. Well, this letter gives +the Count of Monte Cristo unlimited credit on our house.” + +“Well, baron, what is there difficult to understand about that?” + +“Merely the term _unlimited_—nothing else, certainly.” + +“Is not that word known in France? The people who wrote are +Anglo-Germans, you know.” + +“Oh, as for the composition of the letter, there is nothing to be said; +but as regards the competency of the document, I certainly have +doubts.” + +“Is it possible?” asked the count, assuming all air and tone of the +utmost simplicity and candor. “Is it possible that Thomson & French are +not looked upon as safe and solvent bankers? Pray tell me what you +think, baron, for I feel uneasy, I can assure you, having some +considerable property in their hands.” + +“Thomson & French are perfectly solvent,” replied Danglars, with an +almost mocking smile; “but the word _unlimited_, in financial affairs, +is so extremely vague.” + +“Is, in fact, unlimited,” said Monte Cristo. + +“Precisely what I was about to say,” cried Danglars. “Now what is vague +is doubtful; and it was a wise man who said, ‘when in doubt, keep +out.’” + +“Meaning to say,” rejoined Monte Cristo, “that however Thomson & French +may be inclined to commit acts of imprudence and folly, the Baron +Danglars is not disposed to follow their example.” + +“Not at all.” + +“Plainly enough; Messrs. Thomson & French set no bounds to their +engagements while those of M. Danglars have their limits; he is a wise +man, according to his own showing.” + +“Monsieur,” replied the banker, drawing himself up with a haughty air, +“the extent of my resources has never yet been questioned.” + +“It seems, then, reserved for me,” said Monte Cristo coldly, “to be the +first to do so.” + +“By what right, sir?” + +“By right of the objections you have raised, and the explanations you +have demanded, which certainly must have some motive.” + +Once more Danglars bit his lips. It was the second time he had been +worsted, and this time on his own ground. His forced politeness sat +awkwardly upon him, and approached almost to impertinence. Monte Cristo +on the contrary, preserved a graceful suavity of demeanor, aided by a +certain degree of simplicity he could assume at pleasure, and thus +possessed the advantage. + +“Well, sir,” resumed Danglars, after a brief silence, “I will endeavor +to make myself understood, by requesting you to inform me for what sum +you propose to draw upon me?” + +“Why, truly,” replied Monte Cristo, determined not to lose an inch of +the ground he had gained, “my reason for desiring an ‘unlimited’ credit +was precisely because I did not know how much money I might need.” + +The banker thought the time had come for him to take the upper hand. So +throwing himself back in his armchair, he said, with an arrogant and +purse-proud air: + +“Let me beg of you not to hesitate in naming your wishes; you will then +be convinced that the resources of the house of Danglars, however +limited, are still equal to meeting the largest demands; and were you +even to require a million——” + +“I beg your pardon,” interposed Monte Cristo. + +“I said a million,” replied Danglars, with the confidence of ignorance. + +“But could I do with a million?” retorted the count. “My dear sir, if a +trifle like that could suffice me, I should never have given myself the +trouble of opening an account. A million? Excuse my smiling when you +speak of a sum I am in the habit of carrying in my pocket-book or +dressing-case.” + +And with these words Monte Cristo took from his pocket a small case +containing his visiting-cards, and drew forth two orders on the +treasury for 500,000 francs each, payable at sight to the bearer. A man +like Danglars was wholly inaccessible to any gentler method of +correction. The effect of the present revelation was stunning; he +trembled and was on the verge of apoplexy. The pupils of his eyes, as +he gazed at Monte Cristo dilated horribly. + +“Come, come,” said Monte Cristo, “confess honestly that you have not +perfect confidence in Thomson & French. I understand, and foreseeing +that such might be the case, I took, in spite of my ignorance of +affairs, certain precautions. See, here are two similar letters to that +you have yourself received; one from the house of Arstein & Eskeles of +Vienna, to Baron Rothschild, the other drawn by Baring of London, upon +M. Lafitte. Now, sir, you have but to say the word, and I will spare +you all uneasiness by presenting my letter of credit to one or other of +these two firms.” + +The blow had struck home, and Danglars was entirely vanquished; with a +trembling hand he took the two letters from the count, who held them +carelessly between finger and thumb, and proceeded to scrutinize the +signatures, with a minuteness that the count might have regarded as +insulting, had it not suited his present purpose to mislead the banker. + +“Oh, sir,” said Danglars, after he had convinced himself of the +authenticity of the documents he held, and rising as if to salute the +power of gold personified in the man before him,—“three letters of +unlimited credit! I can be no longer mistrustful, but you must pardon +me, my dear count, for confessing to some degree of astonishment.” + +“Nay,” answered Monte Cristo, with the most gentlemanly air, “’tis not +for such trifling sums as these that your banking house is to be +incommoded. Then, you can let me have some money, can you not?” + +“Whatever you say, my dear count; I am at your orders.” + +“Why,” replied Monte Cristo, “since we mutually understand each +other—for such I presume is the case?” Danglars bowed assentingly. “You +are quite sure that not a lurking doubt or suspicion lingers in your +mind?” + +“Oh, my dear count,” exclaimed Danglars, “I never for an instant +entertained such a feeling towards you.” + +“No, you merely wished to be convinced, nothing more; but now that we +have come to so clear an understanding, and that all distrust and +suspicion are laid at rest, we may as well fix a sum as the probable +expenditure of the first year, suppose we say six millions to——” + +“Six millions!” gasped Danglars—“so be it.” + +“Then, if I should require more,” continued Monte Cristo in a careless +manner, “why, of course, I should draw upon you; but my present +intention is not to remain in France more than a year, and during that +period I scarcely think I shall exceed the sum I mentioned. However, we +shall see. Be kind enough, then, to send me 500,000 francs tomorrow. I +shall be at home till midday, or if not, I will leave a receipt with my +steward.” + +“The money you desire shall be at your house by ten o’clock tomorrow +morning, my dear count,” replied Danglars. “How would you like to have +it? in gold, silver, or notes?” + +“Half in gold, and the other half in bank-notes, if you please,” said +the count, rising from his seat. + +“I must confess to you, count,” said Danglars, “that I have hitherto +imagined myself acquainted with the degree of all the great fortunes of +Europe, and still wealth such as yours has been wholly unknown to me. +May I presume to ask whether you have long possessed it?” + +“It has been in the family a very long while,” returned Monte Cristo, +“a sort of treasure expressly forbidden to be touched for a certain +period of years, during which the accumulated interest has doubled the +capital. The period appointed by the testator for the disposal of these +riches occurred only a short time ago, and they have only been employed +by me within the last few years. Your ignorance on the subject, +therefore, is easily accounted for. However, you will be better +informed as to me and my possessions ere long.” + +And the count, while pronouncing these latter words, accompanied them +with one of those ghastly smiles that used to strike terror into poor +Franz d’Épinay. + +“With your tastes, and means of gratifying them,” continued Danglars, +“you will exhibit a splendor that must effectually put us poor +miserable millionaires quite in the shade. If I mistake not you are an +admirer of paintings, at least I judged so from the attention you +appeared to be bestowing on mine when I entered the room. If you will +permit me, I shall be happy to show you my picture gallery, composed +entirely of works by the ancient masters—warranted as such. Not a +modern picture among them. I cannot endure the modern school of +painting.” + +“You are perfectly right in objecting to them, for this one great +fault—that they have not yet had time to become old.” + +“Or will you allow me to show you several fine statues by Thorwaldsen, +Bartoloni, and Canova?—all foreign artists, for, as you may perceive, I +think but very indifferently of our French sculptors.” + +“You have a right to be unjust to them, monsieur; they are your +compatriots.” + +“But all this may come later, when we shall be better known to each +other. For the present, I will confine myself (if perfectly agreeable +to you) to introducing you to the Baroness Danglars—excuse my +impatience, my dear count, but a client like you is almost like a +member of the family.” + +Monte Cristo bowed, in sign that he accepted the proffered honor; +Danglars rang and was answered by a servant in a showy livery. + +“Is the baroness at home?” inquired Danglars. + +“Yes, my lord,” answered the man. + +“And alone?” + +“No, my lord, madame has visitors.” + +“Have you any objection to meet any persons who may be with madame, or +do you desire to preserve a strict _incognito_?” + +“No, indeed,” replied Monte Cristo with a smile, “I do not arrogate to +myself the right of so doing.” + +“And who is with madame?—M. Debray?” inquired Danglars, with an air of +indulgence and good-nature that made Monte Cristo smile, acquainted as +he was with the secrets of the banker’s domestic life. + +“Yes, my lord,” replied the servant, “M. Debray is with madame.” + +Danglars nodded his head; then, turning to Monte Cristo, said, “M. +Lucien Debray is an old friend of ours, and private secretary to the +Minister of the Interior. As for my wife, I must tell you, she lowered +herself by marrying me, for she belongs to one of the most ancient +families in France. Her maiden name was De Servières, and her first +husband was Colonel the Marquis of Nargonne.” + +“I have not the honor of knowing Madame Danglars; but I have already +met M. Lucien Debray.” + +“Ah, indeed?” said Danglars; “and where was that?” + +“At the house of M. de Morcerf.” + +“Ah! you are acquainted with the young viscount, are you?” + +“We were together a good deal during the Carnival at Rome.” + +“True, true,” cried Danglars. “Let me see; have I not heard talk of +some strange adventure with bandits or thieves hid in ruins, and of his +having had a miraculous escape? I forget how, but I know he used to +amuse my wife and daughter by telling them about it after his return +from Italy.” + +“Her ladyship is waiting to receive you, gentlemen,” said the servant, +who had gone to inquire the pleasure of his mistress. + +“With your permission,” said Danglars, bowing, “I will precede you, to +show you the way.” + +“By all means,” replied Monte Cristo; “I follow you.” + + + + Chapter 47. The Dappled Grays + +The baron, followed by the count, traversed a long series of +apartments, in which the prevailing characteristics were heavy +magnificence and the gaudiness of ostentatious wealth, until he reached +the boudoir of Madame Danglars—a small octagonal-shaped room, hung with +pink satin, covered with white Indian muslin. The chairs were of +ancient workmanship and materials; over the doors were painted sketches +of shepherds and shepherdesses, after the style and manner of Boucher; +and at each side pretty medallions in crayons, harmonizing well with +the furnishings of this charming apartment, the only one throughout the +great mansion in which any distinctive taste prevailed. The truth was, +it had been entirely overlooked in the plan arranged and followed out +by M. Danglars and his architect, who had been selected to aid the +baron in the great work of improvement solely because he was the most +fashionable and celebrated decorator of the day. The decorations of the +boudoir had then been left entirely to Madame Danglars and Lucien +Debray. M. Danglars, however, while possessing a great admiration for +the antique, as it was understood during the time of the Directory, +entertained the most sovereign contempt for the simple elegance of his +wife’s favorite sitting-room, where, by the way, he was never permitted +to intrude, unless, indeed, he excused his own appearance by ushering +in some more agreeable visitor than himself; and even then he had +rather the air and manner of a person who was himself introduced, than +that of being the presenter of another, his reception being cordial or +frigid, in proportion as the person who accompanied him chanced to +please or displease the baroness. + +Madame Danglars (who, although past the first bloom of youth, was still +strikingly handsome) was now seated at the piano, a most elaborate +piece of cabinet and inlaid work, while Lucien Debray, standing before +a small work-table, was turning over the pages of an album. + +Lucien had found time, preparatory to the count’s arrival, to relate +many particulars respecting him to Madame Danglars. It will be +remembered that Monte Cristo had made a lively impression on the minds +of all the party assembled at the breakfast given by Albert de Morcerf; +and although Debray was not in the habit of yielding to such feelings, +he had never been able to shake off the powerful influence excited in +his mind by the impressive look and manner of the count, consequently +the description given by Lucien to the baroness bore the highly-colored +tinge of his own heated imagination. Already excited by the wonderful +stories related of the count by de Morcerf, it is no wonder that Madame +Danglars eagerly listened to, and fully credited, all the additional +circumstances detailed by Debray. This posing at the piano and over the +album was only a little ruse adopted by way of precaution. A most +gracious welcome and unusual smile were bestowed on M. Danglars; the +count, in return for his gentlemanly bow, received a formal though +graceful courtesy, while Lucien exchanged with the count a sort of +distant recognition, and with Danglars a free and easy nod. + +“Baroness,” said Danglars, “give me leave to present to you the Count +of Monte Cristo, who has been most warmly recommended to me by my +correspondents at Rome. I need but mention one fact to make all the +ladies in Paris court his notice, and that is, that he has come to take +up his abode in Paris for a year, during which brief period he proposes +to spend six millions of money. That means balls, dinners, and lawn +parties without end, in all of which I trust the count will remember +us, as he may depend upon it we shall him, in our own humble +entertainments.” + +In spite of the gross flattery and coarseness of this address, Madame +Danglars could not forbear gazing with considerable interest on a man +capable of expending six millions in twelve months, and who had +selected Paris for the scene of his princely extravagance. + +“And when did you arrive here?” inquired she. + +“Yesterday morning, madame.” + +“Coming, as usual, I presume, from the extreme end of the globe? Pardon +me—at least, such I have heard is your custom.” + +“Nay, madame. This time I have merely come from Cadiz.” + +“You have selected a most unfavorable moment for your first visit. +Paris is a horrible place in summer. Balls, parties, and _fêtes_ are +over; the Italian opera is in London; the French opera everywhere +except in Paris. As for the Théatre Français, you know, of course, that +it is nowhere. The only amusements left us are the indifferent races at +the Champ-de-Mars and Satory. Do you propose entering any horses at +either of these races, count?” + +“I shall do whatever they do at Paris, madame, if I have the good +fortune to find someone who will initiate me into the prevalent ideas +of amusement.” + +“Are you fond of horses, count?” + +“I have passed a considerable part of my life in the East, madame, and +you are doubtless aware that the Orientals value only two things—the +fine breeding of their horses and the beauty of their women.” + +“Nay, count,” said the baroness, “it would have been somewhat more +gallant to have placed the ladies first.” + +“You see, madame, how rightly I spoke when I said I required a +preceptor to guide me in all my sayings and doings here.” + +At this instant the favorite attendant of Madame Danglars entered the +boudoir; approaching her mistress, she spoke some words in an +undertone. Madame Danglars turned very pale, then exclaimed: + +“I cannot believe it; the thing is impossible.” + +“I assure you, madame,” replied the woman, “it is as I have said.” + +Turning impatiently towards her husband, Madame Danglars demanded, “Is +this true?” + +“Is what true, madame?” inquired Danglars, visibly agitated. + +“What my maid tells me.” + +“But what does she tell you?” + +“That when my coachman was about to harness the horses to my carriage, +he discovered that they had been removed from the stables without his +knowledge. I desire to know what is the meaning of this?” + +“Be kind enough, madame, to listen to me,” said Danglars. + +“Oh, yes; I will listen, monsieur, for I am most curious to hear what +explanation you will give. These two gentlemen shall decide between us; +but, first, I will state the case to them. Gentlemen,” continued the +baroness, “among the ten horses in the stables of Baron Danglars, are +two that belong exclusively to me—a pair of the handsomest and most +spirited creatures to be found in Paris. But to you, at least, M. +Debray, I need not give a further description, because to you my +beautiful pair of dappled grays were well known. Well, I had promised +Madame de Villefort the loan of my carriage to drive tomorrow to the +Bois; but when my coachman goes to fetch the grays from the stables +they are gone—positively gone. No doubt M. Danglars has sacrificed them +to the selfish consideration of gaining some thousands of paltry +francs. Oh, what a detestable crew they are, these mercenary +speculators!” + +“Madame,” replied Danglars, “the horses were not sufficiently quiet for +you; they were scarcely four years old, and they made me extremely +uneasy on your account.” + +“Nonsense,” retorted the baroness; “you could not have entertained any +alarm on the subject, because you are perfectly well aware that I have +had for a month in my service the very best coachman in Paris. But, +perhaps, you have disposed of the coachman as well as the horses?” + +“My dear love, pray do not say any more about them, and I promise you +another pair exactly like them in appearance, only more quiet and +steady.” + +The baroness shrugged her shoulders with an air of ineffable contempt, +while her husband, affecting not to observe this unconjugal gesture, +turned towards Monte Cristo and said,—“Upon my word, count, I am quite +sorry not to have met you sooner. You are setting up an establishment, +of course?” + +“Why, yes,” replied the count. + +“I should have liked to have made you the offer of these horses. I have +almost given them away, as it is; but, as I before said, I was anxious +to get rid of them upon any terms. They were only fit for a young man.” + +“I am much obliged by your kind intentions towards me,” said Monte +Cristo; “but this morning I purchased a very excellent pair of +carriage-horses, and I do not think they were dear. There they are. +Come, M. Debray, you are a connoisseur, I believe, let me have your +opinion upon them.” + +As Debray walked towards the window, Danglars approached his wife. + +“I could not tell you before others,” said he in a low tone, “the +reason of my parting with the horses; but a most enormous price was +offered me this morning for them. Some madman or fool, bent upon +ruining himself as fast as he can, actually sent his steward to me to +purchase them at any cost; and the fact is, I have gained 16,000 francs +by the sale of them. Come, don’t look so angry, and you shall have +4,000 francs of the money to do what you like with, and Eugénie shall +have 2,000. There, what do you think now of the affair? Wasn’t I right +to part with the horses?” + +Madame Danglars surveyed her husband with a look of withering contempt. + +“Great heavens?” suddenly exclaimed Debray. + +“What is it?” asked the baroness. + +“I cannot be mistaken; there are your horses! The very animals we were +speaking of, harnessed to the count’s carriage!” + +“My dappled grays?” demanded the baroness, springing to the window. +“’Tis indeed they!” said she. + +Danglars looked absolutely stupefied. + +“How very singular,” cried Monte Cristo with well-feigned astonishment. + +“I cannot believe it,” murmured the banker. Madame Danglars whispered a +few words in the ear of Debray, who approached Monte Cristo, saying, +“The baroness wishes to know what you paid her husband for the horses.” + +“I scarcely know,” replied the count; “it was a little surprise +prepared for me by my steward, and cost me—well, somewhere about 30,000 +francs.” + +Debray conveyed the count’s reply to the baroness. Poor Danglars looked +so crest-fallen and discomfited that Monte Cristo assumed a pitying air +towards him. + +“See,” said the count, “how very ungrateful women are. Your kind +attention, in providing for the safety of the baroness by disposing of +the horses, does not seem to have made the least impression on her. But +so it is; a woman will often, from mere wilfulness, prefer that which +is dangerous to that which is safe. Therefore, in my opinion, my dear +baron, the best and easiest way is to leave them to their fancies, and +allow them to act as they please, and then, if any mischief follows, +why, at least, they have no one to blame but themselves.” + +Danglars made no reply; he was occupied in anticipations of the coming +scene between himself and the baroness, whose frowning brow, like that +of Olympic Jove, predicted a storm. Debray, who perceived the gathering +clouds, and felt no desire to witness the explosion of Madame Danglars’ +rage, suddenly recollected an appointment, which compelled him to take +his leave; while Monte Cristo, unwilling by prolonging his stay to +destroy the advantages he hoped to obtain, made a farewell bow and +departed, leaving Danglars to endure the angry reproaches of his wife. + +20347m + + + +“Excellent,” murmured Monte Cristo to himself, as he came away. “All +has gone according to my wishes. The domestic peace of this family is +henceforth in my hands. Now, then, to play another master-stroke, by +which I shall gain the heart of both husband and wife—delightful! +Still,” added he, “amid all this, I have not yet been presented to +Mademoiselle Eugénie Danglars, whose acquaintance I should have been +glad to make. But,” he went on with his peculiar smile, “I am here in +Paris, and have plenty of time before me—by and by will do for that.” + +With these reflections he entered his carriage and returned home. Two +hours afterwards, Madame Danglars received a most flattering epistle +from the count, in which he entreated her to receive back her favorite +“dappled grays,” protesting that he could not endure the idea of making +his entry into the Parisian world of fashion with the knowledge that +his splendid equipage had been obtained at the price of a lovely +woman’s regrets. The horses were sent back wearing the same harness she +had seen on them in the morning; only, by the count’s orders, in the +centre of each rosette that adorned either side of their heads, had +been fastened a large diamond. + +To Danglars Monte Cristo also wrote, requesting him to excuse the +whimsical gift of a capricious millionaire, and to beg the baroness to +pardon the Eastern fashion adopted in the return of the horses. + +During the evening, Monte Cristo quitted Paris for Auteuil, accompanied +by Ali. The following day, about three o’clock, a single blow struck on +the gong summoned Ali to the presence of the count. + +“Ali,” observed his master, as the Nubian entered the chamber, “you +have frequently explained to me how more than commonly skilful you are +in throwing the lasso, have you not?” + +Ali drew himself up proudly, and then returned a sign in the +affirmative. + +“I thought I did not mistake. With your lasso you could stop an ox?” + +Again Ali repeated his affirmative gesture. + +“Or a tiger?” + +Ali bowed his head in token of assent. + +“A lion even?” + +Ali sprung forwards, imitating the action of one throwing the lasso, +then of a strangled lion. + +“I understand,” said Monte Cristo; “you wish to tell me you have hunted +the lion?” + +Ali smiled with triumphant pride as he signified that he had indeed +both chased and captured many lions. + +“But do you believe you could arrest the progress of two horses rushing +forwards with ungovernable fury?” + +The Nubian smiled. + +“It is well,” said Monte Cristo. “Then listen to me. Ere long a +carriage will dash past here, drawn by the pair of dappled gray horses +you saw me with yesterday; now, at the risk of your own life, you must +manage to stop those horses before my door.” + +Ali descended to the street, and marked a straight line on the pavement +immediately at the entrance of the house, and then pointed out the line +he had traced to the count, who was watching him. The count patted him +gently on the shoulder, his usual mode of praising Ali, who, pleased +and gratified with the commission assigned him, walked calmly towards a +projecting stone forming the angle of the street and house, and, +seating himself thereon, began to smoke his chibouque, while Monte +Cristo re-entered his dwelling, perfectly assured of the success of his +plan. + +Still, as five o’clock approached, and the carriage was momentarily +expected by the count, the indication of more than common impatience +and uneasiness might be observed in his manner. He stationed himself in +a room commanding a view of the street, pacing the chamber with +restless steps, stopping merely to listen from time to time for the +sound of approaching wheels, then to cast an anxious glance on Ali; but +the regularity with which the Nubian puffed forth the smoke of his +chibouque proved that he at least was wholly absorbed in the enjoyment +of his favorite occupation. + +Suddenly a distant sound of rapidly advancing wheels was heard, and +almost immediately a carriage appeared, drawn by a pair of wild, +ungovernable horses, while the terrified coachman strove in vain to +restrain their furious speed. + +In the vehicle was a young woman and a child of about seven or eight +clasped in each other’s arms. Terror seemed to have deprived them even +of the power of uttering a cry. The carriage creaked and rattled as it +flew over the rough stones, and the slightest obstacle under the wheels +would have caused disaster; but it kept on in the middle of the road, +and those who saw it pass uttered cries of terror. + +Ali suddenly cast aside his chibouque, drew the lasso from his pocket, +threw it so skilfully as to catch the forelegs of the near horse in its +triple fold, and suffered himself to be dragged on for a few steps by +the violence of the shock, then the animal fell over on the pole, which +snapped, and therefore prevented the other horse from pursuing its way. +Gladly availing himself of this opportunity, the coachman leaped from +his box; but Ali had promptly seized the nostrils of the second horse, +and held them in his iron grasp, till the beast, snorting with pain, +sunk beside his companion. + +All this was achieved in much less time than is occupied in the +recital. The brief space had, however, been sufficient for a man, +followed by a number of servants, to rush from the house before which +the accident had occurred, and, as the coachman opened the door of the +carriage, to take from it a lady who was convulsively grasping the +cushions with one hand, while with the other she pressed to her bosom +the young boy, who had lost consciousness. Monte Cristo carried them +both to the salon, and deposited them on a sofa. + +“Compose yourself, madame,” said he; “all danger is over.” The woman +looked up at these words, and, with a glance far more expressive than +any entreaties could have been, pointed to her child, who still +continued insensible. “I understand the nature of your alarms, madame,” +said the count, carefully examining the child, “but I assure you there +is not the slightest occasion for uneasiness; your little charge has +not received the least injury; his insensibility is merely the effects +of terror, and will soon pass.” + +“Are you quite sure you do not say so to tranquillize my fears? See how +deadly pale he is! My child, my darling Edward; speak to your +mother—open your dear eyes and look on me once again! Oh, sir, in pity +send for a physician; my whole fortune shall not be thought too much +for the recovery of my boy.” + +With a calm smile and a gentle wave of the hand, Monte Cristo signed to +the distracted mother to lay aside her apprehensions; then, opening a +casket that stood near, he drew forth a phial of Bohemian glass +incrusted with gold, containing a liquid of the color of blood, of +which he let fall a single drop on the child’s lips. Scarcely had it +reached them, ere the boy, though still pale as marble, opened his +eyes, and eagerly gazed around him. At this, the delight of the mother +was almost frantic. + +“Where am I?” exclaimed she; “and to whom am I indebted for so happy a +termination to my late dreadful alarm?” + +“Madame,” answered the count, “you are under the roof of one who +esteems himself most fortunate in having been able to save you from a +further continuance of your sufferings.” + +“My wretched curiosity has brought all this about,” pursued the lady. +“All Paris rung with the praises of Madame Danglars’ beautiful horses, +and I had the folly to desire to know whether they really merited the +high praise given to them.” + +“Is it possible,” exclaimed the count with well-feigned astonishment, +“that these horses belong to the baroness?” + +“They do, indeed. May I inquire if you are acquainted with Madame +Danglars?” + +20351m + + + +“I have that honor; and my happiness at your escape from the danger +that threatened you is redoubled by the consciousness that I have been +the unwilling and the unintentional cause of all the peril you have +incurred. I yesterday purchased these horses of the baron; but as the +baroness evidently regretted parting with them, I ventured to send them +back to her, with a request that she would gratify me by accepting them +from my hands.” + +“You are, then, doubtless, the Count of Monte Cristo, of whom Hermine +has talked to me so much?” + +“You have rightly guessed, madame,” replied the count. + +“And I am Madame Héloïse de Villefort.” + +The count bowed with the air of a person who hears a name for the first +time. + +“How grateful will M. de Villefort be for all your goodness; how +thankfully will he acknowledge that to you alone he owes the existence +of his wife and child! Most certainly, but for the prompt assistance of +your intrepid servant, this dear child and myself must both have +perished.” + +“Indeed, I still shudder at the fearful danger you were placed in.” + +“I trust you will allow me to recompense worthily the devotion of your +man.” + +“I beseech you, madame,” replied Monte Cristo “not to spoil Ali, either +by too great praise or rewards. I cannot allow him to acquire the habit +of expecting to be recompensed for every trifling service he may +render. Ali is my slave, and in saving your life he was but discharging +his duty to me.” + +“Nay,” interposed Madame de Villefort, on whom the authoritative style +adopted by the count made a deep impression, “nay, but consider that to +preserve my life he has risked his own.” + +“His life, madame, belongs not to him; it is mine, in return for my +having myself saved him from death.” + +Madame de Villefort made no further reply; her mind was utterly +absorbed in the contemplation of the person who, from the first instant +she saw him, had made so powerful an impression on her. + +During the evident preoccupation of Madame de Villefort, Monte Cristo +scrutinized the features and appearance of the boy she kept folded in +her arms, lavishing on him the most tender endearments. The child was +small for his age, and unnaturally pale. A mass of straight black hair, +defying all attempts to train or curl it, fell over his projecting +forehead, and hung down to his shoulders, giving increased vivacity to +eyes already sparkling with a youthful love of mischief and fondness +for every forbidden enjoyment. His mouth was large, and the lips, which +had not yet regained their color, were particularly thin; in fact, the +deep and crafty look, giving a predominant expression to the child’s +face, belonged rather to a boy of twelve or fourteen than to one so +young. His first movement was to free himself by a violent push from +the encircling arms of his mother, and to rush forward to the casket +from whence the count had taken the phial of elixir; then, without +asking permission of anyone, he proceeded, in all the wilfulness of a +spoiled child unaccustomed to restrain either whims or caprices, to +pull the corks out of all the bottles. + +“Touch nothing, my little friend,” cried the count eagerly; “some of +those liquids are not only dangerous to taste, but even to inhale.” + +Madame de Villefort became very pale, and, seizing her son’s arm, drew +him anxiously toward her; but, once satisfied of his safety, she also +cast a brief but expressive glance on the casket, which was not lost +upon the count. At this moment Ali entered. At sight of him Madame de +Villefort uttered an expression of pleasure, and, holding the child +still closer towards her, she said: + +“Edward, dearest, do you see that good man? He has shown very great +courage and resolution, for he exposed his own life to stop the horses +that were running away with us, and would certainly have dashed the +carriage to pieces. Thank him, then, my child, in your very best +manner; for, had he not come to our aid, neither you nor I would have +been alive to speak our thanks.” + +The child stuck out his lips and turned away his head in a disdainful +manner, saying, “He’s too ugly.” + +20353m + + + +The count smiled as if the child bade fair to realize his hopes, while +Madame de Villefort reprimanded her son with a gentleness and +moderation very far from conveying the least idea of a fault having +been committed. + +“This lady,” said the Count, speaking to Ali in the Arabic language, +“is desirous that her son should thank you for saving both their lives; +but the boy refuses, saying you are too ugly.” + +Ali turned his intelligent countenance towards the boy, on whom he +gazed without any apparent emotion; but the spasmodic working of the +nostrils showed to the practiced eye of Monte Cristo that the Arab had +been wounded to the heart. + +“Will you permit me to inquire,” said Madame de Villefort, as she arose +to take her leave, “whether you usually reside here?” + +“No, I do not,” replied Monte Cristo; “it is a small place I have +purchased quite lately. My place of abode is No. 30, Avenue des +Champs-Élysées; but I see you have quite recovered from your fright, +and are, no doubt, desirous of returning home. Anticipating your +wishes, I have desired the same horses you came with to be put to one +of my carriages, and Ali, he whom you think so very ugly,” continued +he, addressing the boy with a smiling air, “will have the honor of +driving you home, while your coachman remains here to attend to the +necessary repairs of your calash. As soon as that important business is +concluded, I will have a pair of my own horses harnessed to convey it +direct to Madame Danglars.” + +“I dare not return with those dreadful horses,” said Madame de +Villefort. + +“You will see,” replied Monte Cristo, “that they will be as different +as possible in the hands of Ali. With him they will be gentle and +docile as lambs.” + +Ali had, indeed, given proof of this; for, approaching the animals, who +had been got upon their legs with considerable difficulty, he rubbed +their foreheads and nostrils with a sponge soaked in aromatic vinegar, +and wiped off the sweat and foam that covered their mouths. Then, +commencing a loud whistling noise, he rubbed them well all over their +bodies for several minutes; then, undisturbed by the noisy crowd +collected round the broken carriage, Ali quietly harnessed the pacified +animals to the count’s chariot, took the reins in his hands, and +mounted the box, when to the utter astonishment of those who had +witnessed the ungovernable spirit and maddened speed of the same +horses, he was actually compelled to apply his whip in no very gentle +manner before he could induce them to start; and even then all that +could be obtained from the celebrated “dappled grays,” now changed into +a couple of dull, sluggish, stupid brutes, was a slow, pottering pace, +kept up with so much difficulty that Madame de Villefort was more than +two hours returning to her residence in the Faubourg Saint-Honoré. + +20355m + + + +Scarcely had the first congratulations upon her marvellous escape been +gone through when she wrote the following letter to Madame Danglars:— + +“Dear Hermine,—I have just had a wonderful escape from the most +imminent danger, and I owe my safety to the very Count of Monte Cristo +we were talking about yesterday, but whom I little expected to see +today. I remember how unmercifully I laughed at what I considered your +eulogistic and exaggerated praises of him; but I have now ample cause +to admit that your enthusiastic description of this wonderful man fell +far short of his merits. Your horses got as far as Ranelagh, when they +darted forward like mad things, and galloped away at so fearful a rate, +that there seemed no other prospect for myself and my poor Edward but +that of being dashed to pieces against the first object that impeded +their progress, when a strange-looking man,—an Arab, a negro, or a +Nubian, at least a black of some nation or other—at a signal from the +count, whose domestic he is, suddenly seized and stopped the infuriated +animals, even at the risk of being trampled to death himself; and +certainly he must have had a most wonderful escape. The count then +hastened to us, and took us into his house, where he speedily recalled +my poor Edward to life. He sent us home in his own carriage. Yours will +be returned to you tomorrow. You will find your horses in bad +condition, from the results of this accident; they seem thoroughly +stupefied, as if sulky and vexed at having been conquered by man. The +count, however, has commissioned me to assure you that two or three +days’ rest, with plenty of barley for their sole food during that time, +will bring them back to as fine, that is as terrifying, a condition as +they were in yesterday. + +20356m + + + +Adieu! I cannot return you many thanks for the drive of yesterday; but, +after all, I ought not to blame you for the misconduct of your horses, +more especially as it procured me the pleasure of an introduction to +the Count of Monte Cristo,—and certainly that illustrious personage, +apart from the millions he is said to be so very anxious to dispose of, +seemed to me one of those curiously interesting problems I, for one, +delight in solving at any risk, even if it were to necessitate another +drive to the Bois behind your horses. + +Edward endured the accident with miraculous courage—he did not utter a +single cry, but fell lifeless into my arms; nor did a tear fall from +his eyes after it was over. I doubt not you will consider these praises +the result of blind maternal affection, but there is a soul of iron in +that delicate, fragile body. Valentine sends many affectionate +remembrances to your dear Eugénie. I embrace you with all my heart. + +Héloïse de Villefort. + +P.S.—Do pray contrive some means for me to meet the Count of Monte +Cristo at your house. I must and will see him again. I have just made +M. de Villefort promise to call on him, and I hope the visit will be +returned. + +That night the adventure at Auteuil was talked of everywhere. Albert +related it to his mother; Château-Renaud recounted it at the Jockey +Club, and Debray detailed it at length in the salons of the minister; +even Beauchamp accorded twenty lines in his journal to the relation of +the count’s courage and gallantry, thereby celebrating him as the +greatest hero of the day in the eyes of all the feminine members of the +aristocracy. + +Vast was the crowd of visitors and inquiring friends who left their +names at the residence of Madame de Villefort, with the design of +renewing their visit at the right moment, of hearing from her lips all +the interesting circumstances of this most romantic adventure. + +As for M. de Villefort, he fulfilled the predictions of Héloïse to the +letter,—donned his dress suit, drew on a pair of white gloves, ordered +the servants to attend the carriage dressed in their full livery, and +drove that same night to No. 30 in the Avenue des Champs-Élysées. + + + +VOLUME THREE + +30009m + + + +30011m + + + + + Chapter 48. Ideology + +If the Count of Monte Cristo had been for a long time familiar with the +ways of Parisian society, he would have appreciated better the +significance of the step which M. de Villefort had taken. Standing well +at court, whether the king regnant was of the older or younger branch, +whether the government was doctrinaire liberal, or conservative; looked +upon by all as a man of talent, since those who have never experienced +a political check are generally so regarded; hated by many, but warmly +supported by others, without being really liked by anybody, M. de +Villefort held a high position in the magistracy, and maintained his +eminence like a Harlay or a Molé. His drawing-room, under the +regenerating influence of a young wife and a daughter by his first +marriage, scarcely eighteen, was still one of the well-regulated Paris +salons where the worship of traditional customs and the observance of +rigid etiquette were carefully maintained. A freezing politeness, a +strict fidelity to government principles, a profound contempt for +theories and theorists, a deep-seated hatred of ideality,—these were +the elements of private and public life displayed by M. de Villefort. + +30023m + + + +M. de Villefort was not only a magistrate, he was almost a diplomatist. +His relations with the former court, of which he always spoke with +dignity and respect, made him respected by the new one, and he knew so +many things, that not only was he always carefully considered, but +sometimes consulted. Perhaps this would not have been so had it been +possible to get rid of M. de Villefort; but, like the feudal barons who +rebelled against their sovereign, he dwelt in an impregnable fortress. +This fortress was his post as king’s attorney, all the advantages of +which he exploited with marvellous skill, and which he would not have +resigned but to be made deputy, and thus to replace neutrality by +opposition. + +Ordinarily M. de Villefort made and returned very few visits. His wife +visited for him, and this was the received thing in the world, where +the weighty and multifarious occupations of the magistrate were +accepted as an excuse for what was really only calculated pride, a +manifestation of professed superiority—in fact, the application of the +axiom, _Pretend to think well of yourself, and the world will think +well of you_, an axiom a hundred times more useful in society nowadays +than that of the Greeks, “Know thyself,” a knowledge for which, in our +days, we have substituted the less difficult and more advantageous +science of _knowing others_. + +To his friends M. de Villefort was a powerful protector; to his +enemies, he was a silent, but bitter opponent; for those who were +neither the one nor the other, he was a statue of the law-made man. He +had a haughty bearing, a look either steady and impenetrable or +insolently piercing and inquisitorial. Four successive revolutions had +built and cemented the pedestal upon which his fortune was based. + +M. de Villefort had the reputation of being the least curious and the +least wearisome man in France. He gave a ball every year, at which he +appeared for a quarter of an hour only,—that is to say, five-and-forty +minutes less than the king is visible at his balls. He was never seen +at the theatres, at concerts, or in any place of public resort. +Occasionally, but seldom, he played at whist, and then care was taken +to select partners worthy of him—sometimes they were ambassadors, +sometimes archbishops, or sometimes a prince, or a president, or some +dowager duchess. + +Such was the man whose carriage had just now stopped before the Count +of Monte Cristo’s door. The valet de chambre announced M. de Villefort +at the moment when the count, leaning over a large table, was tracing +on a map the route from St. Petersburg to China. + +The procureur entered with the same grave and measured step he would +have employed in entering a court of justice. He was the same man, or +rather the development of the same man, whom we have heretofore seen as +assistant attorney at Marseilles. Nature, according to her way, had +made no deviation in the path he had marked out for himself. From being +slender he had now become meagre; once pale, he was now yellow; his +deep-set eyes were hollow, and the gold spectacles shielding his eyes +seemed to be an integral portion of his face. He dressed entirely in +black, with the exception of his white tie, and his funeral appearance +was only mitigated by the slight line of red ribbon which passed almost +imperceptibly through his button-hole, and appeared like a streak of +blood traced with a delicate brush. + +Although master of himself, Monte Cristo, scrutinized with +irrepressible curiosity the magistrate whose salute he returned, and +who, distrustful by habit, and especially incredulous as to social +prodigies, was much more despised to look upon “the noble stranger,” as +Monte Cristo was already called, as an adventurer in search of new +fields, or an escaped criminal, rather than as a prince of the Holy +See, or a sultan of the _Thousand and One Nights_. + +“Sir,” said Villefort, in the squeaky tone assumed by magistrates in +their oratorical periods, and of which they cannot, or will not, divest +themselves in society, “sir, the signal service which you yesterday +rendered to my wife and son has made it a duty for me to offer you my +thanks. I have come, therefore, to discharge this duty, and to express +to you my overwhelming gratitude.” + +And as he said this, the “eye severe” of the magistrate had lost +nothing of its habitual arrogance. He spoke in a voice of the +procureur-general, with the rigid inflexibility of neck and shoulders +which caused his flatterers to say (as we have before observed) that he +was the living statue of the law. + +“Monsieur,” replied the count, with a chilling air, “I am very happy to +have been the means of preserving a son to his mother, for they say +that the sentiment of maternity is the most holy of all; and the good +fortune which occurred to me, monsieur, might have enabled you to +dispense with a duty which, in its discharge, confers an undoubtedly +great honor; for I am aware that M. de Villefort is not usually lavish +of the favor which he now bestows on me,—a favor which, however +estimable, is unequal to the satisfaction which I have in my own +consciousness.” + +Villefort, astonished at this reply, which he by no means expected, +started like a soldier who feels the blow levelled at him over the +armor he wears, and a curl of his disdainful lip indicated that from +that moment he noted in the tablets of his brain that the Count of +Monte Cristo was by no means a highly bred gentleman. + +He glanced around, in order to seize on something on which the +conversation might turn, and seemed to fall easily on a topic. He saw +the map which Monte Cristo had been examining when he entered, and +said: + +“You seem geographically engaged, sir? It is a rich study for you, who, +as I learn, have seen as many lands as are delineated on this map.” + +“Yes, sir,” replied the count; “I have sought to make of the human +race, taken in the mass, what you practice every day on individuals—a +physiological study. I have believed it was much easier to descend from +the whole to a part than to ascend from a part to the whole. It is an +algebraic axiom, which makes us proceed from a known to an unknown +quantity, and not from an unknown to a known; but sit down, sir, I beg +of you.” + +Monte Cristo pointed to a chair, which the procureur was obliged to +take the trouble to move forwards himself, while the count merely fell +back into his own, on which he had been kneeling when M. Villefort +entered. Thus the count was halfway turned towards his visitor, having +his back towards the window, his elbow resting on the geographical +chart which furnished the theme of conversation for the moment,—a +conversation which assumed, as in the case of the interviews with +Danglars and Morcerf, a turn analogous to the persons, if not to the +situation. + +“Ah, you philosophize,” replied Villefort, after a moment’s silence, +during which, like a wrestler who encounters a powerful opponent, he +took breath; “well, sir, really, if, like you, I had nothing else to +do, I should seek a more amusing occupation.” + +“Why, in truth, sir,” was Monte Cristo’s reply, “man is but an ugly +caterpillar for him who studies him through a solar microscope; but you +said, I think, that I had nothing else to do. Now, really, let me ask, +sir, have you?—do you believe you have anything to do? or to speak in +plain terms, do you really think that what you do deserves being called +anything?” + +Villefort’s astonishment redoubled at this second thrust so forcibly +made by his strange adversary. It was a long time since the magistrate +had heard a paradox so strong, or rather, to say the truth more +exactly, it was the first time he had ever heard of it. The procureur +exerted himself to reply. + +“Sir,” he responded, “you are a stranger, and I believe you say +yourself that a portion of your life has been spent in Oriental +countries, so you are not aware how human justice, so expeditious in +barbarous countries, takes with us a prudent and well-studied course.” + +“Oh, yes—yes, I do, sir; it is the _pede claudo_ of the ancients. I +know all that, for it is with the justice of all countries especially +that I have occupied myself—it is with the criminal procedure of all +nations that I have compared natural justice, and I must say, sir, that +it is the law of primitive nations, that is, the law of retaliation, +that I have most frequently found to be according to the law of God.” + +“If this law were adopted, sir,” said the procureur, “it would greatly +simplify our legal codes, and in that case the magistrates would not +(as you just observed) have much to do.” + +“It may, perhaps, come to this in time,” observed Monte Cristo; “you +know that human inventions march from the complex to the simple, and +simplicity is always perfection.” + +“In the meanwhile,” continued the magistrate, “our codes are in full +force, with all their contradictory enactments derived from Gallic +customs, Roman laws, and Frank usages; the knowledge of all which, you +will agree, is not to be acquired without extended labor; it needs +tedious study to acquire this knowledge, and, when acquired, a strong +power of brain to retain it.” + +“I agree with you entirely, sir; but all that even you know with +respect to the French code, I know, not only in reference to that code, +but as regards the codes of all nations. The English, Turkish, +Japanese, Hindu laws, are as familiar to me as the French laws, and +thus I was right, when I said to you, that relatively (you know that +everything is relative, sir)—that relatively to what I have done, you +have very little to do; but that relatively to all I have learned, you +have yet a great deal to learn.” + +“But with what motive have you learned all this?” inquired Villefort, +in astonishment. + +Monte Cristo smiled. + +“Really, sir,” he observed, “I see that in spite of the reputation +which you have acquired as a superior man, you look at everything from +the material and vulgar view of society, beginning with man, and ending +with man—that is to say, in the most restricted, most narrow view which +it is possible for human understanding to embrace.” + +“Pray, sir, explain yourself,” said Villefort, more and more +astonished, “I really do—not—understand you—perfectly.” + +“I say, sir, that with the eyes fixed on the social organization of +nations, you see only the springs of the machine, and lose sight of the +sublime workman who makes them act; I say that you do not recognize +before you and around you any but those office-holders whose +commissions have been signed by a minister or king; and that the men +whom God has put above those office-holders, ministers, and kings, by +giving them a mission to follow out, instead of a post to fill—I say +that they escape your narrow, limited field of observation. It is thus +that human weakness fails, from its debilitated and imperfect organs. +Tobias took the angel who restored him to light for an ordinary young +man. The nations took Attila, who was doomed to destroy them, for a +conqueror similar to other conquerors, and it was necessary for both to +reveal their missions, that they might be known and acknowledged; one +was compelled to say, ‘I am the angel of the Lord’; and the other, ‘I +am the hammer of God,’ in order that the divine essence in both might +be revealed.” + +“Then,” said Villefort, more and more amazed, and really supposing he +was speaking to a mystic or a madman, “you consider yourself as one of +those extraordinary beings whom you have mentioned?” + +“And why not?” said Monte Cristo coldly. + +“Your pardon, sir,” replied Villefort, quite astounded, “but you will +excuse me if, when I presented myself to you, I was unaware that I +should meet with a person whose knowledge and understanding so far +surpass the usual knowledge and understanding of men. It is not usual +with us corrupted wretches of civilization to find gentlemen like +yourself, possessors, as you are, of immense fortune—at least, so it is +said—and I beg you to observe that I do not inquire, I merely +repeat;—it is not usual, I say, for such privileged and wealthy beings +to waste their time in speculations on the state of society, in +philosophical reveries, intended at best to console those whom fate has +disinherited from the goods of this world.” + +“Really, sir,” retorted the count, “have you attained the eminent +situation in which you are, without having admitted, or even without +having met with exceptions? and do you never use your eyes, which must +have acquired so much _finesse_ and certainty, to divine, at a glance, +the kind of man by whom you are confronted? Should not a magistrate be +not merely the best administrator of the law, but the most crafty +expounder of the chicanery of his profession, a steel probe to search +hearts, a touchstone to try the gold which in each soul is mingled with +more or less of alloy?” + +“Sir,” said Villefort, “upon my word, you overcome me. I really never +heard a person speak as you do.” + +“Because you remain eternally encircled in a round of general +conditions, and have never dared to raise your wings into those upper +spheres which God has peopled with invisible or exceptional beings.” + +“And you allow then, sir, that spheres exist, and that these marked and +invisible beings mingle amongst us?” + +“Why should they not? Can you see the air you breathe, and yet without +which you could not for a moment exist?” + +“Then we do not see those beings to whom you allude?” + +“Yes, we do; you see them whenever God pleases to allow them to assume +a material form. You touch them, come in contact with them, speak to +them, and they reply to you.” + +“Ah,” said Villefort, smiling, “I confess I should like to be warned +when one of these beings is in contact with me.” + +“You have been served as you desire, monsieur, for you were warned just +now, and I now again warn you.” + +“Then you yourself are one of these marked beings?” + +“Yes, monsieur, I believe so; for until now, no man has found himself +in a position similar to mine. The dominions of kings are limited +either by mountains or rivers, or a change of manners, or an alteration +of language. My kingdom is bounded only by the world, for I am not an +Italian, or a Frenchman, or a Hindu, or an American, or a Spaniard—I am +a cosmopolite. No country can say it saw my birth. God alone knows what +country will see me die. I adopt all customs, speak all languages. You +believe me to be a Frenchman, for I speak French with the same facility +and purity as yourself. Well, Ali, my Nubian, believes me to be an +Arab; Bertuccio, my steward, takes me for a Roman; Haydée, my slave, +thinks me a Greek. You may, therefore, comprehend, that being of no +country, asking no protection from any government, acknowledging no man +as my brother, not one of the scruples that arrest the powerful, or the +obstacles which paralyze the weak, paralyzes or arrests me. I have only +two adversaries—I will not say two conquerors, for with perseverance I +subdue even them,—they are time and distance. There is a third, and the +most terrible—that is my condition as a mortal being. This alone can +stop me in my onward career, before I have attained the goal at which I +aim, for all the rest I have reduced to mathematical terms. What men +call the chances of fate—namely, ruin, change, circumstances—I have +fully anticipated, and if any of these should overtake me, yet it will +not overwhelm me. Unless I die, I shall always be what I am, and +therefore it is that I utter the things you have never heard, even from +the mouths of kings—for kings have need, and other persons have fear of +you. For who is there who does not say to himself, in a society as +incongruously organized as ours, ‘Perhaps some day I shall have to do +with the king’s attorney’?” + +“But can you not say that, sir? The moment you become an inhabitant of +France, you are naturally subjected to the French law.” + +“I know it sir,” replied Monte Cristo; “but when I visit a country I +begin to study, by all the means which are available, the men from whom +I may have anything to hope or to fear, till I know them as well as, +perhaps better than, they know themselves. It follows from this, that +the king’s attorney, be he who he may, with whom I should have to deal, +would assuredly be more embarrassed than I should.” + +“That is to say,” replied Villefort with hesitation, “that human nature +being weak, every man, according to your creed, has committed faults.” + +“Faults or crimes,” responded Monte Cristo with a negligent air. + +“And that you alone, amongst the men whom you do not recognize as your +brothers—for you have said so,” observed Villefort in a tone that +faltered somewhat—“you alone are perfect.” + +“No, not perfect,” was the count’s reply; “only impenetrable, that’s +all. But let us leave off this strain, sir, if the tone of it is +displeasing to you; I am no more disturbed by your justice than are you +by my second-sight.” + +“No, no,—by no means,” said Villefort, who was afraid of seeming to +abandon his ground. “No; by your brilliant and almost sublime +conversation you have elevated me above the ordinary level; we no +longer talk, we rise to dissertation. But you know how the theologians +in their collegiate chairs, and philosophers in their controversies, +occasionally say cruel truths; let us suppose for the moment that we +are theologizing in a social way, or even philosophically, and I will +say to you, rude as it may seem, ‘My brother, you sacrifice greatly to +pride; you may be above others, but above you there is God.’” + +30029m + + + +“Above us all, sir,” was Monte Cristo’s response, in a tone and with an +emphasis so deep that Villefort involuntarily shuddered. “I have my +pride for men—serpents always ready to threaten everyone who would pass +without crushing them under foot. But I lay aside that pride before +God, who has taken me from nothing to make me what I am.” + +“Then, count, I admire you,” said Villefort, who, for the first time in +this strange conversation, used the aristocratic form to the unknown +personage, whom, until now, he had only called monsieur. “Yes, and I +say to you, if you are really strong, really superior, really pious, or +impenetrable, which you were right in saying amounts to the same +thing—then be proud, sir, for that is the characteristic of +predominance. Yet you have unquestionably some ambition.” + +“I have, sir.” + +“And what may it be?” + +“I too, as happens to every man once in his life, have been taken by +Satan into the highest mountain in the earth, and when there he showed +me all the kingdoms of the world, and as he said before, so said he to +me, ‘Child of earth, what wouldst thou have to make thee adore me?’ I +reflected long, for a gnawing ambition had long preyed upon me, and +then I replied, ‘Listen,—I have always heard of Providence, and yet I +have never seen him, or anything that resembles him, or which can make +me believe that he exists. I wish to be Providence myself, for I feel +that the most beautiful, noblest, most sublime thing in the world, is +to recompense and punish.’ Satan bowed his head, and groaned. ‘You +mistake,’ he said, ‘Providence does exist, only you have never seen +him, because the child of God is as invisible as the parent. You have +seen nothing that resembles him, because he works by secret springs, +and moves by hidden ways. All I can do for you is to make you one of +the agents of that Providence.’ The bargain was concluded. I may +sacrifice my soul, but what matters it?” added Monte Cristo. “If the +thing were to do again, I would again do it.” + +Villefort looked at Monte Cristo with extreme amazement. + +“Count,” he inquired, “have you any relations?” + +“No, sir, I am alone in the world.” + +“So much the worse.” + +“Why?” asked Monte Cristo. + +“Because then you might witness a spectacle calculated to break down +your pride. You say you fear nothing but death?” + +“I did not say that I feared it; I only said that death alone could +check the execution of my plans.” + +“And old age?” + +“My end will be achieved before I grow old.” + +“And madness?” + +“I have been nearly mad; and you know the axiom,—_non bis in idem_. It +is an axiom of criminal law, and, consequently, you understand its full +application.” + +30031m + + + +“Sir,” continued Villefort, “there is something to fear besides death, +old age, and madness. For instance, there is apoplexy—that +lightning-stroke which strikes but does not destroy you, and yet which +brings everything to an end. You are still yourself as now, and yet you +are yourself no longer; you who, like Ariel, verge on the angelic, are +but an inert mass, which, like Caliban, verges on the brutal; and this +is called in human tongues, as I tell you, neither more nor less than +apoplexy. Come, if so you will, count, and continue this conversation +at my house, any day you may be willing to see an adversary capable of +understanding and anxious to refute you, and I will show you my father, +M. Noirtier de Villefort, one of the most fiery Jacobins of the French +Revolution; that is to say, he had the most remarkable audacity, +seconded by a most powerful organization—a man who has not, perhaps, +like yourself seen all the kingdoms of the earth, but who has helped to +overturn one of the greatest; in fact, a man who believed himself, like +you, one of the envoys, not of God, but of a supreme being; not of +Providence, but of fate. Well, sir, the rupture of a blood-vessel on +the lobe of the brain has destroyed all this, not in a day, not in an +hour, but in a second. M. Noirtier, who, on the previous night, was the +old Jacobin, the old senator, the old Carbonaro, laughing at the +guillotine, the cannon, and the dagger—M. Noirtier, playing with +revolutions—M. Noirtier, for whom France was a vast chess-board, from +which pawns, rooks, knights, and queens were to disappear, so that the +king was checkmated—M. Noirtier, the redoubtable, was the next morning +_poor M. Noirtier_, the helpless old man, at the tender mercies of the +weakest creature in the household, that is, his grandchild, Valentine; +a dumb and frozen carcass, in fact, living painlessly on, that time may +be given for his frame to decompose without his consciousness of its +decay.” + +“Alas, sir,” said Monte Cristo “this spectacle is neither strange to my +eye nor my thought. I am something of a physician, and have, like my +fellows, sought more than once for the soul in living and in dead +matter; yet, like Providence, it has remained invisible to my eyes, +although present to my heart. A hundred writers since Socrates, Seneca, +St. Augustine, and Gall, have made, in verse and prose, the comparison +you have made, and yet I can well understand that a father’s sufferings +may effect great changes in the mind of a son. I will call on you, sir, +since you bid me contemplate, for the advantage of my pride, this +terrible spectacle, which must have been so great a source of sorrow to +your family.” + +“It would have been so unquestionably, had not God given me so large a +compensation. In contrast with the old man, who is dragging his way to +the tomb, are two children just entering into life—Valentine, the +daughter by my first wife—Mademoiselle Renée de Saint-Méran—and Edward, +the boy whose life you have this day saved.” + +“And what is your deduction from this compensation, sir?” inquired +Monte Cristo. + +“My deduction is,” replied Villefort, “that my father, led away by his +passions, has committed some fault unknown to human justice, but marked +by the justice of God. That God, desirous in his mercy to punish but +one person, has visited this justice on him alone.” + +Monte Cristo with a smile on his lips, uttered in the depths of his +soul a groan which would have made Villefort fly had he but heard it. + +“Adieu, sir,” said the magistrate, who had risen from his seat; “I +leave you, bearing a remembrance of you—a remembrance of esteem, which +I hope will not be disagreeable to you when you know me better; for I +am not a man to bore my friends, as you will learn. Besides, you have +made an eternal friend of Madame de Villefort.” + +The count bowed, and contented himself with seeing Villefort to the +door of his cabinet, the procureur being escorted to his carriage by +two footmen, who, on a signal from their master, followed him with +every mark of attention. When he had gone, Monte Cristo breathed a +profound sigh, and said: + +“Enough of this poison, let me now seek the antidote.” + +Then sounding his bell, he said to Ali, who entered: + +“I am going to madame’s chamber—have the carriage ready at one +o’clock.” + + + + Chapter 49. Haydée + +It will be recollected that the new, or rather old, acquaintances of +the Count of Monte Cristo, residing in the Rue Meslay, were no other +than Maximilian, Julie, and Emmanuel. + +The very anticipations of delight to be enjoyed in his forthcoming +visits—the bright, pure gleam of heavenly happiness it diffused over +the almost deadly warfare in which he had voluntarily engaged, +illumined his whole countenance with a look of ineffable joy and +calmness, as, immediately after Villefort’s departure, his thoughts +flew back to the cheering prospect before him, of tasting, at least, a +brief respite from the fierce and stormy passions of his mind. Even +Ali, who had hastened to obey the Count’s summons, went forth from his +master’s presence in charmed amazement at the unusual animation and +pleasure depicted on features ordinarily so stern and cold; while, as +though dreading to put to flight the agreeable ideas hovering over his +patron’s meditations, whatever they were, the faithful Nubian walked on +tiptoe towards the door, holding his breath, lest its faintest sound +should dissipate his master’s happy reverie. + +It was noon, and Monte Cristo had set apart one hour to be passed in +the apartments of Haydée, as though his oppressed spirit could not all +at once admit the feeling of pure and unmixed joy, but required a +gradual succession of calm and gentle emotions to prepare his mind to +receive full and perfect happiness, in the same manner as ordinary +natures demand to be inured by degrees to the reception of strong or +violent sensations. + +The young Greek, as we have already said, occupied apartments wholly +unconnected with those of the count. The rooms had been fitted up in +strict accordance with Oriental ideas; the floors were covered with the +richest carpets Turkey could produce; the walls hung with brocaded silk +of the most magnificent designs and texture; while around each chamber +luxurious divans were placed, with piles of soft and yielding cushions, +that needed only to be arranged at the pleasure or convenience of such +as sought repose. + +Haydée had three French maids, and one who was a Greek. The first three +remained constantly in a small waiting-room, ready to obey the summons +of a small golden bell, or to receive the orders of the Romaic slave, +who knew just enough French to be able to transmit her mistress’s +wishes to the three other waiting-women; the latter had received most +peremptory instructions from Monte Cristo to treat Haydée with all the +deference they would observe to a queen. + +The young girl herself generally passed her time in the chamber at the +farther end of her apartments. This was a sort of boudoir, circular, +and lighted only from the roof, which consisted of rose-colored glass. +Haydée was reclining upon soft downy cushions, covered with blue satin +spotted with silver; her head, supported by one of her exquisitely +moulded arms, rested on the divan immediately behind her, while the +other was employed in adjusting to her lips the coral tube of a rich +narghile, through whose flexible pipe she drew the smoke fragrant by +its passage through perfumed water. Her attitude, though perfectly +natural for an Eastern woman would, in a European, have been deemed too +full of coquettish straining after effect. + +Her dress, which was that of the women of Epirus, consisted of a pair +of white satin trousers, embroidered with pink roses, displaying feet +so exquisitely formed and so delicately fair, that they might well have +been taken for Parian marble, had not the eye been undeceived by their +movements as they constantly shifted in and out of a pair of little +slippers with upturned toes, beautifully ornamented with gold and +pearls. She wore a blue and white-striped vest, with long open sleeves, +trimmed with silver loops and buttons of pearls, and a sort of bodice, +which, closing only from the centre to the waist, exhibited the whole +of the ivory throat and upper part of the bosom; it was fastened with +three magnificent diamond clasps. The junction of the bodice and +drawers was entirely concealed by one of the many-colored scarves, +whose brilliant hues and rich silken fringe have rendered them so +precious in the eyes of Parisian belles. + +Tilted on one side of her head she had a small cap of gold-colored +silk, embroidered with pearls; while on the other a purple rose mingled +its glowing colors with the luxuriant masses of her hair, of which the +blackness was so intense that it was tinged with blue. + +The extreme beauty of the countenance, that shone forth in loveliness +that mocked the vain attempts of dress to augment it, was peculiarly +and purely Grecian; there were the large, dark, melting eyes, the +finely formed nose, the coral lips, and pearly teeth, that belonged to +her race and country. + +And, to complete the whole, Haydée was in the very springtide and +fulness of youthful charms—she had not yet numbered more than nineteen +or twenty summers. + +Monte Cristo summoned the Greek attendant, and bade her inquire whether +it would be agreeable to her mistress to receive his visit. Haydée’s +only reply was to direct her servant by a sign to withdraw the +tapestried curtain that hung before the door of her boudoir, the +framework of the opening thus made serving as a sort of border to the +graceful tableau presented by the young girl’s picturesque attitude and +appearance. + +As Monte Cristo approached, she leaned upon the elbow of the arm that +held the narghile, and extending to him her other hand, said, with a +smile of captivating sweetness, in the sonorous language spoken by the +women of Athens and Sparta: + +“Why demand permission ere you enter? Are you no longer my master, or +have I ceased to be your slave?” + +Monte Cristo returned her smile. + +“Haydée,” said he, “you well know.” + +“Why do you address me so coldly—so distantly?” asked the young Greek. +“Have I by any means displeased you? Oh, if so, punish me as you will; +but do not—do not speak to me in tones and manner so formal and +constrained.” + +“Haydée,” replied the count, “you know that you are now in France, and +are free.” + +“Free to do what?” asked the young girl. + +“Free to leave me.” + +“Leave you? Why should I leave you?” + +“That is not for me to say; but we are now about to mix in society—to +visit and be visited.” + +“I don’t wish to see anybody but you.” + +“And should you see one whom you could prefer, I would not be so +unjust——” + +“I have never seen anyone I preferred to you, and I have never loved +anyone but you and my father.” + +“My poor child,” replied Monte Cristo, “that is merely because your +father and myself are the only men who have ever talked to you.” + +“I don’t want anybody else to talk to me. My father said I was his +‘joy’—you style me your ‘love,’—and both of you have called me ‘my +child.’” + +“Do you remember your father, Haydée?” + +The young Greek smiled. + +“He is here, and here,” said she, touching her eyes and her heart. + +“And where am I?” inquired Monte Cristo laughingly. + +“You?” cried she, with tones of thrilling tenderness, “you are +everywhere!” Monte Cristo took the delicate hand of the young girl in +his, and was about to raise it to his lips, when the simple child of +nature hastily withdrew it, and presented her cheek. + +“You now understand, Haydée,” said the count, “that from this moment +you are absolutely free; that here you exercise unlimited sway, and are +at liberty to lay aside or continue the costume of your country, as it +may suit your inclination. Within this mansion you are absolute +mistress of your actions, and may go abroad or remain in your +apartments as may seem most agreeable to you. A carriage waits your +orders, and Ali and Myrtho will accompany you whithersoever you desire +to go. There is but one favor I would entreat of you.” + +“Speak.” + +“Guard carefully the secret of your birth. Make no allusion to the +past; nor upon any occasion be induced to pronounce the names of your +illustrious father or ill-fated mother.” + +“I have already told you, my lord, that I shall see no one.” + +“It is possible, Haydée, that so perfect a seclusion, though +conformable with the habits and customs of the East, may not be +practicable in Paris. Endeavor, then, to accustom yourself to our +manner of living in these northern climes as you did to those of Rome, +Florence, Milan, and Madrid; it may be useful to you one of these days, +whether you remain here or return to the East.” + +The young girl raised her tearful eyes towards Monte Cristo as she said +with touching earnestness, “Whether _we_ return to the East, you mean +to say, my lord, do you not?” + +“My child,” returned Monte Cristo “you know full well that whenever we +part, it will be no fault or wish of mine; the tree forsakes not the +flower—the flower falls from the tree.” + +“My lord,” replied Haydée, “I never will leave you, for I am sure I +could not exist without you.” + +“My poor girl, in ten years I shall be old, and you will be still +young.” + +“My father had a long white beard, but I loved him; he was sixty years +old, but to me he was handsomer than all the fine youths I saw.” + +“Then tell me, Haydée, do you believe you shall be able to accustom +yourself to our present mode of life?” + +“Shall I see you?” + +“Every day.” + +“Then what do you fear, my lord?” + +“You might find it dull.” + +“No, my lord. In the morning, I shall rejoice in the prospect of your +coming, and in the evening dwell with delight on the happiness I have +enjoyed in your presence; then too, when alone, I can call forth mighty +pictures of the past, see vast horizons bounded only by the towering +mountains of Pindus and Olympus. Oh, believe me, that when three great +passions, such as sorrow, love, and gratitude fill the heart, _ennui_ +can find no place.” + +“You are a worthy daughter of Epirus, Haydée, and your charming and +poetical ideas prove well your descent from that race of goddesses who +claim your country as their birthplace. Depend on my care to see that +your youth is not blighted, or suffered to pass away in ungenial +solitude; and of this be well assured, that if you love me as a father, +I love you as a child.” + +“You are wrong, my lord. The love I have for you is very different from +the love I had for my father. My father died, but I did not die. If you +were to die, I should die too.” + +The count, with a smile of profound tenderness, extended his hand, and +she carried it to her lips. + +Monte Cristo, thus attuned to the interview he proposed to hold with +Morrel and his family, departed, murmuring as he went these lines of +Pindar, “Youth is a flower of which love is the fruit; happy is he who, +after having watched its silent growth, is permitted to gather and call +it his own.” The carriage was prepared according to orders, and +stepping lightly into it, the count drove off at his usual rapid pace. + + + + Chapter 50. The Morrel Family + +In a very few minutes the count reached No. 7 in the Rue Meslay. The +house was of white stone, and in a small court before it were two small +beds full of beautiful flowers. In the concierge that opened the gate +the count recognized Cocles; but as he had but one eye, and that eye +had become somewhat dim in the course of nine years, Cocles did not +recognize the count. + +The carriages that drove up to the door were compelled to turn, to +avoid a fountain that played in a basin of rockwork,—an ornament that +had excited the jealousy of the whole quarter, and had gained for the +place the appellation of _The Little Versailles_. It is needless to add +that there were gold and silver fish in the basin. The house, with +kitchens and cellars below, had above the ground floor, two stories and +attics. The whole of the property, consisting of an immense workshop, +two pavilions at the bottom of the garden, and the garden itself, had +been purchased by Emmanuel, who had seen at a glance that he could make +of it a profitable speculation. He had reserved the house and half the +garden, and building a wall between the garden and the workshops, had +let them upon lease with the pavilions at the bottom of the garden. So +that for a trifling sum he was as well lodged, and as perfectly shut +out from observation, as the inhabitants of the finest mansion in the +Faubourg St. Germain. + +The breakfast-room was finished in oak; the salon in mahogany, and the +furnishings were of blue velvet; the bedroom was in citronwood and +green damask. There was a study for Emmanuel, who never studied, and a +music-room for Julie, who never played. The whole of the second story +was set apart for Maximilian; it was precisely similar to his sister’s +apartments, except that for the breakfast-parlor he had a +billiard-room, where he received his friends. He was superintending the +grooming of his horse, and smoking his cigar at the entrance of the +garden, when the count’s carriage stopped at the gate. + +Cocles opened the gate, and Baptistin, springing from the box, inquired +whether Monsieur and Madame Herbault and Monsieur Maximilian Morrel +would see his excellency the Count of Monte Cristo. + +“The Count of Monte Cristo?” cried Morrel, throwing away his cigar and +hastening to the carriage; “I should think we would see him. Ah, a +thousand thanks, count, for not having forgotten your promise.” + +And the young officer shook the count’s hand so warmly, that Monte +Cristo could not be mistaken as to the sincerity of his joy, and he saw +that he had been expected with impatience, and was received with +pleasure. + +“Come, come,” said Maximilian, “I will serve as your guide; such a man +as you are ought not to be introduced by a servant. My sister is in the +garden plucking the dead roses; my brother is reading his two papers, +_la Presse_ and _les Débats_, within six steps of her; for wherever you +see Madame Herbault, you have only to look within a circle of four +yards and you will find M. Emmanuel, and ‘reciprocally,’ as they say at +the Polytechnic School.” + +At the sound of their steps a young woman of twenty to five-and-twenty, +dressed in a silk morning gown, and busily engaged in plucking the dead +leaves off a noisette rose-tree, raised her head. This was Julie, who +had become, as the clerk of the house of Thomson & French had +predicted, Madame Emmanuel Herbault. She uttered a cry of surprise at +the sight of a stranger, and Maximilian began to laugh. + +“Don’t disturb yourself, Julie,” said he. “The count has only been two +or three days in Paris, but he already knows what a fashionable woman +of the Marais is, and if he does not, you will show him.” + +“Ah, monsieur,” returned Julie, “it is treason in my brother to bring +you thus, but he never has any regard for his poor sister. Penelon, +Penelon!” + +An old man, who was digging busily at one of the beds, stuck his spade +in the earth, and approached, cap in hand, striving to conceal a quid +of tobacco he had just thrust into his cheek. A few locks of gray +mingled with his hair, which was still thick and matted, while his +bronzed features and determined glance well suited an old sailor who +had braved the heat of the equator and the storms of the tropics. + +“I think you hailed me, Mademoiselle Julie?” said he. + +Penelon had still preserved the habit of calling his master’s daughter +“Mademoiselle Julie,” and had never been able to change the name to +Madame Herbault. + +“Penelon,” replied Julie, “go and inform M. Emmanuel of this +gentleman’s visit, and Maximilian will conduct him to the salon.” + +Then, turning to Monte Cristo,—“I hope you will permit me to leave you +for a few minutes,” continued she; and without awaiting any reply, +disappeared behind a clump of trees, and escaped to the house by a +lateral alley. + +30041m + + + +“I am sorry to see,” observed Monte Cristo to Morrel, “that I cause no +small disturbance in your house.” + +“Look there,” said Maximilian, laughing; “there is her husband changing +his jacket for a coat. I assure you, you are well known in the Rue +Meslay.” + +“Your family appears to be a very happy one,” said the count, as if +speaking to himself. + +“Oh, yes, I assure you, count, they want nothing that can render them +happy; they are young and cheerful, they are tenderly attached to each +other, and with twenty-five thousand francs a year they fancy +themselves as rich as Rothschild.” + +“Five-and-twenty thousand francs is not a large sum, however,” replied +Monte Cristo, with a tone so sweet and gentle, that it went to +Maximilian’s heart like the voice of a father; “but they will not be +content with that. Your brother-in-law is a barrister? a doctor?” + +“He was a merchant, monsieur, and had succeeded to the business of my +poor father. M. Morrel, at his death, left 500,000 francs, which were +divided between my sister and myself, for we were his only children. +Her husband, who, when he married her, had no other patrimony than his +noble probity, his first-rate ability, and his spotless reputation, +wished to possess as much as his wife. He labored and toiled until he +had amassed 250,000 francs; six years sufficed to achieve this object. +Oh, I assure you, sir, it was a touching spectacle to see these young +creatures, destined by their talents for higher stations, toiling +together, and through their unwillingness to change any of the customs +of their paternal house, taking six years to accomplish what less +scrupulous people would have effected in two or three. Marseilles +resounded with their well-earned praises. At last, one day, Emmanuel +came to his wife, who had just finished making up the accounts. + +“‘Julie,’ said he to her, ‘Cocles has just given me the last rouleau of +a hundred francs; that completes the 250,000 francs we had fixed as the +limits of our gains. Can you content yourself with the small fortune +which we shall possess for the future? Listen to me. Our house +transacts business to the amount of a million a year, from which we +derive an income of 40,000 francs. We can dispose of the business, if +we please, in an hour, for I have received a letter from M. Delaunay, +in which he offers to purchase the good-will of the house, to unite +with his own, for 300,000 francs. Advise me what I had better do.’ + +“‘Emmanuel,’ returned my sister, ‘the house of Morrel can only be +carried on by a Morrel. Is it not worth 300,000 francs to save our +father’s name from the chances of evil fortune and failure?’ + +“‘I thought so,’ replied Emmanuel; ‘but I wished to have your advice.’ + +“‘This is my counsel:—Our accounts are made up and our bills paid; all +we have to do is to stop the issue of any more, and close our office.’ + +“This was done instantly. It was three o’clock; at a quarter past, a +merchant presented himself to insure two ships; it was a clear profit +of 15,000 francs. + +“‘Monsieur,’ said Emmanuel, ‘have the goodness to address yourself to +M. Delaunay. We have quitted business.’ + +“‘How long?’ inquired the astonished merchant. + +30043m + + + +“‘A quarter of an hour,’ was the reply. + +“And this is the reason, monsieur,” continued Maximilian, “of my sister +and brother-in-law having only 25,000 francs a year.” + +Maximilian had scarcely finished his story, during which the count’s +heart had swelled within him, when Emmanuel entered wearing a hat and +coat. He saluted the count with the air of a man who is aware of the +rank of his guest; then, after having led Monte Cristo around the +little garden, he returned to the house. + +A large vase of Japan porcelain, filled with flowers that loaded the +air with their perfume, stood in the salon. Julie, suitably dressed, +and her hair arranged (she had accomplished this feat in less than ten +minutes), received the count on his entrance. The songs of the birds +were heard in an aviary hard by, and the branches of laburnums and rose +acacias formed an exquisite framework to the blue velvet curtains. +Everything in this charming retreat, from the warble of the birds to +the smile of the mistress, breathed tranquillity and repose. + +The count had felt the influence of this happiness from the moment he +entered the house, and he remained silent and pensive, forgetting that +he was expected to renew the conversation, which had ceased after the +first salutations had been exchanged. The silence became almost painful +when, by a violent effort, tearing himself from his pleasing reverie: + +“Madame,” said he at length, “I pray you to excuse my emotion, which +must astonish you who are only accustomed to the happiness I meet here; +but contentment is so new a sight to me, that I could never be weary of +looking at yourself and your husband.” + +“We are very happy, monsieur,” replied Julie; “but we have also known +unhappiness, and few have ever undergone more bitter sufferings than +ourselves.” + +The count’s features displayed an expression of the most intense +curiosity. + +“Oh, all this is a family history, as Château-Renaud told you the other +day,” observed Maximilian. “This humble picture would have but little +interest for you, accustomed as you are to behold the pleasures and the +misfortunes of the wealthy and industrious; but such as we are, we have +experienced bitter sorrows.” + +“And God has poured balm into your wounds, as he does into those of all +who are in affliction?” said Monte Cristo inquiringly. + +“Yes, count,” returned Julie, “we may indeed say he has, for he has +done for us what he grants only to his chosen; he sent us one of his +angels.” + +The count’s cheeks became scarlet, and he coughed, in order to have an +excuse for putting his handkerchief to his mouth. + +“Those born to wealth, and who have the means of gratifying every +wish,” said Emmanuel, “know not what is the real happiness of life, +just as those who have been tossed on the stormy waters of the ocean on +a few frail planks can alone realize the blessings of fair weather.” + +Monte Cristo rose, and without making any answer (for the tremulousness +of his voice would have betrayed his emotion) walked up and down the +apartment with a slow step. + +“Our magnificence makes you smile, count,” said Maximilian, who had +followed him with his eyes. + +“No, no,” returned Monte Cristo, pale as death, pressing one hand on +his heart to still its throbbings, while with the other he pointed to a +crystal cover, beneath which a silken purse lay on a black velvet +cushion. “I was wondering what could be the significance of this purse, +with the paper at one end and the large diamond at the other.” + +“Count,” replied Maximilian, with an air of gravity, “those are our +most precious family treasures.” + +“The stone seems very brilliant,” answered the count. + +“Oh, my brother does not allude to its value, although it has been +estimated at 100,000 francs; he means, that the articles contained in +this purse are the relics of the angel I spoke of just now.” + +“This I do not comprehend; and yet I may not ask for an explanation, +madame,” replied Monte Cristo bowing. “Pardon me, I had no intention of +committing an indiscretion.” + +“Indiscretion,—oh, you make us happy by giving us an excuse for +expatiating on this subject. If we wanted to conceal the noble action +this purse commemorates, we should not expose it thus to view. Oh, +would we could relate it everywhere, and to everyone, so that the +emotion of our unknown benefactor might reveal his presence.” + +“Ah, really,” said Monte Cristo in a half-stifled voice. + +“Monsieur,” returned Maximilian, raising the glass cover, and +respectfully kissing the silken purse, “this has touched the hand of a +man who saved my father from suicide, us from ruin, and our name from +shame and disgrace,—a man by whose matchless benevolence we poor +children, doomed to want and wretchedness, can at present hear everyone +envying our happy lot. This letter” (as he spoke, Maximilian drew a +letter from the purse and gave it to the count)—“this letter was +written by him the day that my father had taken a desperate resolution, +and this diamond was given by the generous unknown to my sister as her +dowry.” + +Monte Cristo opened the letter, and read it with an indescribable +feeling of delight. It was the letter written (as our readers know) to +Julie, and signed “Sinbad the Sailor.” + +“Unknown you say, is the man who rendered you this service—unknown to +you?” + +“Yes; we have never had the happiness of pressing his hand,” continued +Maximilian. “We have supplicated Heaven in vain to grant us this favor, +but the whole affair has had a mysterious meaning that we cannot +comprehend—we have been guided by an invisible hand,—a hand as powerful +as that of an enchanter.” + +“Oh,” cried Julie, “I have not lost all hope of some day kissing that +hand, as I now kiss the purse which he has touched. Four years ago, +Penelon was at Trieste—Penelon, count, is the old sailor you saw in the +garden, and who, from quartermaster, has become gardener—Penelon, when +he was at Trieste, saw on the quay an Englishman, who was on the point +of embarking on board a yacht, and he recognized him as the person who +called on my father the fifth of June, 1829, and who wrote me this +letter on the fifth of September. He felt convinced of his identity, +but he did not venture to address him.” + +“An Englishman,” said Monte Cristo, who grew uneasy at the attention +with which Julie looked at him. “An Englishman you say?” + +“Yes,” replied Maximilian, “an Englishman, who represented himself as +the confidential clerk of the house of Thomson & French, at Rome. It +was this that made me start when you said the other day, at M. de +Morcerf’s, that Messrs. Thomson & French were your bankers. That +happened, as I told you, in 1829. For God’s sake, tell me, did you know +this Englishman?” + +“But you tell me, also, that the house of Thomson & French have +constantly denied having rendered you this service?” + +“Yes.” + +“Then is it not probable that this Englishman may be someone who, +grateful for a kindness your father had shown him, and which he himself +had forgotten, has taken this method of requiting the obligation?” + +“Everything is possible in this affair, even a miracle.” + +“What was his name?” asked Monte Cristo. + +“He gave no other name,” answered Julie, looking earnestly at the +count, “than that at the end of his letter—‘Sinbad the Sailor.’” + +“Which is evidently not his real name, but a fictitious one.” + +Then, noticing that Julie was struck with the sound of his voice: + +“Tell me,” continued he, “was he not about my height, perhaps a little +taller, with his chin imprisoned, as it were, in a high cravat; his +coat closely buttoned up, and constantly taking out his pencil?” + +“Oh, do you then know him?” cried Julie, whose eyes sparkled with joy. + +“No,” returned Monte Cristo “I only guessed. I knew a Lord Wilmore, who +was constantly doing actions of this kind.” + +“Without revealing himself?” + +“He was an eccentric being, and did not believe in the existence of +gratitude.” + +“Oh, Heaven,” exclaimed Julie, clasping her hands, “in what did he +believe, then?” + +30047m + + + +“He did not credit it at the period which I knew him,” said Monte +Cristo, touched to the heart by the accents of Julie’s voice; “but, +perhaps, since then he has had proofs that gratitude does exist.” + +“And do you know this gentleman, monsieur?” inquired Emmanuel. + +“Oh, if you do know him,” cried Julie, “can you tell us where he +is—where we can find him? Maximilian—Emmanuel—if we do but discover +him, he must believe in the gratitude of the heart!” + +Monte Cristo felt tears start into his eyes, and he again walked +hastily up and down the room. + +“In the name of Heaven,” said Maximilian, “if you know anything of him, +tell us what it is.” + +“Alas,” cried Monte Cristo, striving to repress his emotion, “if Lord +Wilmore was your unknown benefactor, I fear you will never see him +again. I parted from him two years ago at Palermo, and he was then on +the point of setting out for the most remote regions; so that I fear he +will never return.” + +“Oh, monsieur, this is cruel of you,” said Julie, much affected; and +the young lady’s eyes swam with tears. + +“Madame,” replied Monte Cristo gravely, and gazing earnestly on the two +liquid pearls that trickled down Julie’s cheeks, “had Lord Wilmore seen +what I now see, he would become attached to life, for the tears you +shed would reconcile him to mankind;” and he held out his hand to +Julie, who gave him hers, carried away by the look and accent of the +count. + +“But,” continued she, “Lord Wilmore had a family or friends, he must +have known someone, can we not——” + +“Oh, it is useless to inquire,” returned the count; “perhaps, after +all, he was not the man you seek for. He was my friend: he had no +secrets from me, and if this had been so he would have confided in me.” + +“And he told you nothing?” + +“Not a word.” + +“Nothing that would lead you to suppose?” + +“Nothing.” + +“And yet you spoke of him at once.” + +“Ah, in such a case one supposes——” + +“Sister, sister,” said Maximilian, coming to the count’s aid, “monsieur +is quite right. Recollect what our excellent father so often told us, +‘It was no Englishman that thus saved us.’” + +Monte Cristo started. “What did your father tell you, M. Morrel?” said +he eagerly. + +“My father thought that this action had been miraculously performed—he +believed that a benefactor had arisen from the grave to save us. Oh, it +was a touching superstition, monsieur, and although I did not myself +believe it, I would not for the world have destroyed my father’s faith. +How often did he muse over it and pronounce the name of a dear friend—a +friend lost to him forever; and on his death-bed, when the near +approach of eternity seemed to have illumined his mind with +supernatural light, this thought, which had until then been but a +doubt, became a conviction, and his last words were, ‘Maximilian, it +was Edmond Dantès!’” + +At these words the count’s paleness, which had for some time been +increasing, became alarming; he could not speak; he looked at his watch +like a man who has forgotten the hour, said a few hurried words to +Madame Herbault, and pressing the hands of Emmanuel and +Maximilian,—“Madame,” said he, “I trust you will allow me to visit you +occasionally; I value your friendship, and feel grateful to you for +your welcome, for this is the first time for many years that I have +thus yielded to my feelings;” and he hastily quitted the apartment. + +“This Count of Monte Cristo is a strange man,” said Emmanuel. + +“Yes,” answered Maximilian, “but I feel sure he has an excellent heart, +and that he likes us.” + +“His voice went to my heart,” observed Julie; “and two or three times I +fancied that I had heard it before.” + + + + Chapter 51. Pyramus and Thisbe + +About two-thirds of the way along the Faubourg Saint-Honoré, and in the +rear of one of the most imposing mansions in this rich neighborhood, +where the various houses vie with each other for elegance of design and +magnificence of construction, extended a large garden, where the +wide-spreading chestnut-trees raised their heads high above the walls +in a solid rampart, and with the coming of every spring scattered a +shower of delicate pink and white blossoms into the large stone vases +that stood upon the two square pilasters of a curiously wrought iron +gate, that dated from the time of Louis XIII. + +This noble entrance, however, in spite of its striking appearance and +the graceful effect of the geraniums planted in the two vases, as they +waved their variegated leaves in the wind and charmed the eye with +their scarlet bloom, had fallen into utter disuse. The proprietors of +the mansion had many years before thought it best to confine themselves +to the possession of the house itself, with its thickly planted +courtyard, opening into the Faubourg Saint-Honoré, and to the garden +shut in by this gate, which formerly communicated with a fine +kitchen-garden of about an acre. For the demon of speculation drew a +line, or in other words projected a street, at the farther side of the +kitchen-garden. The street was laid out, a name was chosen and posted +up on an iron plate, but before construction was begun, it occurred to +the possessor of the property that a handsome sum might be obtained for +the ground then devoted to fruits and vegetables, by building along the +line of the proposed street, and so making it a branch of communication +with the Faubourg Saint-Honoré itself, one of the most important +thoroughfares in the city of Paris. + +In matters of speculation, however, though “man proposes,” yet “money +disposes.” From some such difficulty the newly named street died almost +in birth, and the purchaser of the kitchen-garden, having paid a high +price for it, and being quite unable to find anyone willing to take his +bargain off his hands without a considerable loss, yet still clinging +to the belief that at some future day he should obtain a sum for it +that would repay him, not only for his past outlay, but also the +interest upon the capital locked up in his new acquisition, contented +himself with letting the ground temporarily to some market-gardeners, +at a yearly rental of 500 francs. + +And so, as we have said, the iron gate leading into the kitchen-garden +had been closed up and left to the rust, which bade fair before long to +eat off its hinges, while to prevent the ignoble glances of the diggers +and delvers of the ground from presuming to sully the aristocratic +enclosure belonging to the mansion, the gate had been boarded up to a +height of six feet. True, the planks were not so closely adjusted but +that a hasty peep might be obtained through their interstices; but the +strict decorum and rigid propriety of the inhabitants of the house left +no grounds for apprehending that advantage would be taken of that +circumstance. + +Horticulture seemed, however, to have been abandoned in the deserted +kitchen-garden; and where cabbages, carrots, radishes, peas, and melons +had once flourished, a scanty crop of lucern alone bore evidence of its +being deemed worthy of cultivation. A small, low door gave egress from +the walled space we have been describing into the projected street, the +ground having been abandoned as unproductive by its various renters, +and had now fallen so completely in general estimation as to return not +even the one-half per cent it had originally paid. Towards the house +the chestnut-trees we have before mentioned rose high above the wall, +without in any way affecting the growth of other luxuriant shrubs and +flowers that eagerly dressed forward to fill up the vacant spaces, as +though asserting their right to enjoy the boon of light and air. At one +corner, where the foliage became so thick as almost to shut out day, a +large stone bench and sundry rustic seats indicated that this sheltered +spot was either in general favor or particular use by some inhabitant +of the house, which was faintly discernible through the dense mass of +verdure that partially concealed it, though situated but a hundred +paces off. + +Whoever had selected this retired portion of the grounds as the +boundary of a walk, or as a place for meditation, was abundantly +justified in the choice by the absence of all glare, the cool, +refreshing shade, the screen it afforded from the scorching rays of the +sun, that found no entrance there even during the burning days of +hottest summer, the incessant and melodious warbling of birds, and the +entire removal from either the noise of the street or the bustle of the +mansion. On the evening of one of the warmest days spring had yet +bestowed on the inhabitants of Paris, might be seen negligently thrown +upon the stone bench, a book, a parasol, and a work-basket, from which +hung a partly embroidered cambric handkerchief, while at a little +distance from these articles was a young woman, standing close to the +iron gate, endeavoring to discern something on the other side by means +of the openings in the planks,—the earnestness of her attitude and the +fixed gaze with which she seemed to seek the object of her wishes, +proving how much her feelings were interested in the matter. + +At that instant the little side-gate leading from the waste ground to +the street was noiselessly opened, and a tall, powerful young man +appeared. He was dressed in a common gray blouse and velvet cap, but +his carefully arranged hair, beard and moustache, all of the richest +and glossiest black, ill accorded with his plebeian attire. After +casting a rapid glance around him, in order to assure himself that he +was unobserved, he entered by the small gate, and, carefully closing +and securing it after him, proceeded with a hurried step towards the +barrier. + +At the sight of him she expected, though probably not in such a +costume, the young woman started in terror, and was about to make a +hasty retreat. But the eye of love had already seen, even through the +narrow chinks of the wooden palisades, the movement of the white robe, +and observed the fluttering of the blue sash. Pressing his lips close +to the planks, he exclaimed: + +“Don’t be alarmed, Valentine—it is I!” + +Again the timid girl found courage to return to the gate, saying, as +she did so: + +“And why do you come so late today? It is almost dinner-time, and I had +to use no little diplomacy to get rid of my watchful stepmother, my +too-devoted maid, and my troublesome brother, who is always teasing me +about coming to work at my embroidery, which I am in a fair way never +to get done. So pray excuse yourself as well as you can for having made +me wait, and, after that, tell me why I see you in a dress so singular +that at first I did not recognize you.” + +“Dearest Valentine,” said the young man, “the difference between our +respective stations makes me fear to offend you by speaking of my love, +but yet I cannot find myself in your presence without longing to pour +forth my soul, and tell you how fondly I adore you. If it be but to +carry away with me the recollection of such sweet moments, I could even +thank you for chiding me, for it leaves me a gleam of hope, that if you +did not expect me (and that indeed would be worse than vanity to +suppose), at least I was in your thoughts. You asked me the cause of my +being late, and why I come disguised. I will candidly explain the +reason of both, and I trust to your goodness to pardon me. I have +chosen a trade.” + +“A trade? Oh, Maximilian, how can you jest at a time when we have such +deep cause for uneasiness?” + +“Heaven keep me from jesting with that which is far dearer to me than +life itself! But listen to me, Valentine, and I will tell you all about +it. I became weary of ranging fields and scaling walls, and seriously +alarmed at the idea suggested by you, that if caught hovering about +here your father would very likely have me sent to prison as a thief. +That would compromise the honor of the French army, to say nothing of +the fact that the continual presence of a captain of Spahis in a place +where no warlike projects could be supposed to account for it might +well create surprise; so I have become a gardener, and, consequently, +adopted the costume of my calling.” + +“What excessive nonsense you talk, Maximilian!” + +“Nonsense? Pray do not call what I consider the wisest action of my +life by such a name. Consider, by becoming a gardener I effectually +screen our meetings from all suspicion or danger.” + +30053m + + + +“I beseech of you, Maximilian, to cease trifling, and tell me what you +really mean.” + +“Simply, that having ascertained that the piece of ground on which I +stand was to let, I made application for it, was readily accepted by +the proprietor, and am now master of this fine crop of lucern. Think of +that, Valentine! There is nothing now to prevent my building myself a +little hut on my plantation, and residing not twenty yards from you. +Only imagine what happiness that would afford me. I can scarcely +contain myself at the bare idea. Such felicity seems above all price—as +a thing impossible and unattainable. But would you believe that I +purchase all this delight, joy, and happiness, for which I would +cheerfully have surrendered ten years of my life, at the small cost of +500 francs per annum, paid quarterly? Henceforth we have nothing to +fear. I am on my own ground, and have an undoubted right to place a +ladder against the wall, and to look over when I please, without having +any apprehensions of being taken off by the police as a suspicious +character. I may also enjoy the precious privilege of assuring you of +my fond, faithful, and unalterable affection, whenever you visit your +favorite bower, unless, indeed, it offends your pride to listen to +professions of love from the lips of a poor workingman, clad in a +blouse and cap.” + +A faint cry of mingled pleasure and surprise escaped from the lips of +Valentine, who almost instantly said, in a saddened tone, as though +some envious cloud darkened the joy which illumined her heart: + +“Alas, no, Maximilian, this must not be, for many reasons. We should +presume too much on our own strength, and, like others, perhaps, be led +astray by our blind confidence in each other’s prudence.” + +“How can you for an instant entertain so unworthy a thought, dear +Valentine? Have I not, from the first blessed hour of our acquaintance, +schooled all my words and actions to your sentiments and ideas? And you +have, I am sure, the fullest confidence in my honor. When you spoke to +me of experiencing a vague and indefinite sense of coming danger, I +placed myself blindly and devotedly at your service, asking no other +reward than the pleasure of being useful to you; and have I ever since, +by word or look, given you cause of regret for having selected me from +the numbers that would willingly have sacrificed their lives for you? +You told me, my dear Valentine, that you were engaged to M. d’Épinay, +and that your father was resolved upon completing the match, and that +from his will there was no appeal, as M. de Villefort was never known +to change a determination once formed. I kept in the background, as you +wished, and waited, not for the decision of your heart or my own, but +hoping that Providence would graciously interpose in our behalf, and +order events in our favor. But what cared I for delays or difficulties, +Valentine, as long as you confessed that you loved me, and took pity on +me? If you will only repeat that avowal now and then, I can endure +anything.” + +“Ah, Maximilian, that is the very thing that makes you so bold, and +which renders me at once so happy and unhappy, that I frequently ask +myself whether it is better for me to endure the harshness of my +stepmother, and her blind preference for her own child, or to be, as I +now am, insensible to any pleasure save such as I find in these +meetings, so fraught with danger to both.” + +“I will not admit that word,” returned the young man; “it is at once +cruel and unjust. Is it possible to find a more submissive slave than +myself? You have permitted me to converse with you from time to time, +Valentine, but forbidden my ever following you in your walks or +elsewhere—have I not obeyed? And since I found means to enter this +enclosure to exchange a few words with you through this gate—to be +close to you without really seeing you—have I ever asked so much as to +touch the hem of your gown or tried to pass this barrier which is but a +trifle to one of my youth and strength? Never has a complaint or a +murmur escaped me. I have been bound by my promises as rigidly as any +knight of olden times. Come, come, dearest Valentine, confess that what +I say is true, lest I be tempted to call you unjust.” + +30055m + + + +“It is true,” said Valentine, as she passed the end of her slender +fingers through a small opening in the planks, and permitted Maximilian +to press his lips to them, “and you are a true and faithful friend; but +still you acted from motives of self-interest, my dear Maximilian, for +you well knew that from the moment in which you had manifested an +opposite spirit all would have been ended between us. You promised to +bestow on me the friendly affection of a brother. For I have no friend +but yourself upon earth, who am neglected and forgotten by my father, +harassed and persecuted by my stepmother, and left to the sole +companionship of a paralyzed and speechless old man, whose withered +hand can no longer press mine, and who can speak to me with the eye +alone, although there still lingers in his heart the warmest tenderness +for his poor grandchild. Oh, how bitter a fate is mine, to serve either +as a victim or an enemy to all who are stronger than myself, while my +only friend and supporter is a living corpse! Indeed, indeed, +Maximilian, I am very miserable, and if you love me it must be out of +pity.” + +“Valentine,” replied the young man, deeply affected, “I will not say +you are all I love in the world, for I dearly prize my sister and +brother-in-law; but my affection for them is calm and tranquil, in no +manner resembling what I feel for you. When I think of you my heart +beats fast, the blood burns in my veins, and I can hardly breathe; but +I solemnly promise you to restrain all this ardor, this fervor and +intensity of feeling, until you yourself shall require me to render +them available in serving or assisting you. M. Franz is not expected to +return home for a year to come, I am told; in that time many favorable +and unforeseen chances may befriend us. Let us, then, hope for the +best; hope is so sweet a comforter. Meanwhile, Valentine, while +reproaching me with selfishness, think a little what you have been to +me—the beautiful but cold resemblance of a marble Venus. What promise +of future reward have you made me for all the submission and obedience +I have evinced?—none whatever. What granted me?—scarcely more. You tell +me of M. Franz d’Épinay, your betrothed lover, and you shrink from the +idea of being his wife; but tell me, Valentine, is there no other +sorrow in your heart? You see me devoted to you, body and soul, my life +and each warm drop that circles round my heart are consecrated to your +service; you know full well that my existence is bound up in yours—that +were I to lose you I would not outlive the hour of such crushing +misery; yet you speak with calmness of the prospect of your being the +wife of another! Oh, Valentine, were I in your place, and did I feel +conscious, as you do, of being worshipped, adored, with such a love as +mine, a hundred times at least should I have passed my hand between +these iron bars, and said, ‘Take this hand, dearest Maximilian, and +believe that, living or dead, I am yours—yours only, and forever!’” + +The poor girl made no reply, but her lover could plainly hear her sobs +and tears. A rapid change took place in the young man’s feelings. + +“Dearest, dearest Valentine,” exclaimed he, “forgive me if I have +offended you, and forget the words I spoke if they have unwittingly +caused you pain.” + +“No, Maximilian, I am not offended,” answered she, “but do you not see +what a poor, helpless being I am, almost a stranger and an outcast in +my father’s house, where even he is seldom seen; whose will has been +thwarted, and spirits broken, from the age of ten years, beneath the +iron rod so sternly held over me; oppressed, mortified, and persecuted, +day by day, hour by hour, minute by minute, no person has cared for, +even observed my sufferings, nor have I ever breathed one word on the +subject save to yourself. Outwardly and in the eyes of the world, I am +surrounded by kindness and affection; but the reverse is the case. The +general remark is, ‘Oh, it cannot be expected that one of so stern a +character as M. Villefort could lavish the tenderness some fathers do +on their daughters. What though she has lost her own mother at a tender +age, she has had the happiness to find a second mother in Madame de +Villefort.’ The world, however, is mistaken; my father abandons me from +utter indifference, while my stepmother detests me with a hatred so +much the more terrible because it is veiled beneath a continual smile.” + +“Hate you, sweet Valentine,” exclaimed the young man; “how is it +possible for anyone to do that?” + +“Alas,” replied the weeping girl, “I am obliged to own that my +stepmother’s aversion to me arises from a very natural source—her +overweening love for her own child, my brother Edward.” + +“But why should it?” + +“I do not know; but, though unwilling to introduce money matters into +our present conversation, I will just say this much—that her extreme +dislike to me has its origin there; and I much fear she envies me the +fortune I enjoy in right of my mother, and which will be more than +doubled at the death of M. and Mme. de Saint-Méran, whose sole heiress +I am. Madame de Villefort has nothing of her own, and hates me for +being so richly endowed. Alas, how gladly would I exchange the half of +this wealth for the happiness of at least sharing my father’s love. God +knows, I would prefer sacrificing the whole, so that it would obtain me +a happy and affectionate home.” + +“Poor Valentine!” + +“I seem to myself as though living a life of bondage, yet at the same +time am so conscious of my own weakness that I fear to break the +restraint in which I am held, lest I fall utterly helpless. Then, too, +my father is not a person whose orders may be infringed with impunity; +protected as he is by his high position and firmly established +reputation for talent and unswerving integrity, no one could oppose +him; he is all-powerful even with the king; he would crush you at a +word. Dear Maximilian, believe me when I assure you that if I do not +attempt to resist my father’s commands it is more on your account than +my own.” + +“But why, Valentine, do you persist in anticipating the worst,—why +picture so gloomy a future?” + +“Because I judge it from the past.” + +“Still, consider that although I may not be, strictly speaking, what is +termed an illustrious match for you, I am, for many reasons, not +altogether so much beneath your alliance. The days when such +distinctions were so nicely weighed and considered no longer exist in +France, and the first families of the monarchy have intermarried with +those of the empire. The aristocracy of the lance has allied itself +with the nobility of the cannon. Now I belong to this last-named class; +and certainly my prospects of military preferment are most encouraging +as well as certain. My fortune, though small, is free and unfettered, +and the memory of my late father is respected in our country, +Valentine, as that of the most upright and honorable merchant of the +city; I say our country, because you were born not far from +Marseilles.” + +“Don’t speak of Marseilles, I beg of you, Maximilian; that one word +brings back my mother to my recollection—my angel mother, who died too +soon for myself and all who knew her; but who, after watching over her +child during the brief period allotted to her in this world, now, I +fondly hope, watches from her home in heaven. Oh, if my mother were +still living, there would be nothing to fear, Maximilian, for I would +tell her that I loved you, and she would protect us.” + +“I fear, Valentine,” replied the lover, “that were she living I should +never have had the happiness of knowing you; you would then have been +too happy to have stooped from your grandeur to bestow a thought on +me.” + +“Now it is you who are unjust, Maximilian,” cried Valentine; “but there +is one thing I wish to know.” + +“And what is that?” inquired the young man, perceiving that Valentine +hesitated. + +“Tell me truly, Maximilian, whether in former days, when our fathers +dwelt at Marseilles, there was ever any misunderstanding between them?” + +“Not that I am aware of,” replied the young man, “unless, indeed, any +ill-feeling might have arisen from their being of opposite parties—your +father was, as you know, a zealous partisan of the Bourbons, while mine +was wholly devoted to the emperor; there could not possibly be any +other difference between them. But why do you ask?” + +“I will tell you,” replied the young girl, “for it is but right you +should know. Well, on the day when your appointment as an officer of +the Legion of Honor was announced in the papers, we were all sitting +with my grandfather, M. Noirtier; M. Danglars was there also—you +recollect M. Danglars, do you not, Maximilian, the banker, whose horses +ran away with my stepmother and little brother, and very nearly killed +them? While the rest of the company were discussing the approaching +marriage of Mademoiselle Danglars, I was reading the paper to my +grandfather; but when I came to the paragraph about you, although I had +done nothing else but read it over to myself all the morning (you know +you had told me all about it the previous evening), I felt so happy, +and yet so nervous, at the idea of speaking your name aloud, and before +so many people, that I really think I should have passed it over, but +for the fear that my doing so might create suspicions as to the cause +of my silence; so I summoned up all my courage, and read it as firmly +and as steadily as I could.” + +30059m + + + +“Dear Valentine!” + +“Well, would you believe it? directly my father caught the sound of +your name he turned round quite hastily, and, like a poor silly thing, +I was so persuaded that everyone must be as much affected as myself by +the utterance of your name, that I was not surprised to see my father +start, and almost tremble; but I even thought (though that surely must +have been a mistake) that M. Danglars trembled too.” + +“‘Morrel, Morrel,’ cried my father, ‘stop a bit;’ then knitting his +brows into a deep frown, he added, ‘surely this cannot be one of the +Morrel family who lived at Marseilles, and gave us so much trouble from +their violent Bonapartism—I mean about the year 1815.’ + +“‘Yes,’ replied M. Danglars, ‘I believe he is the son of the old +shipowner.’” + +“Indeed,” answered Maximilian; “and what did your father say then, +Valentine?” + +“Oh, such a dreadful thing, that I don’t dare to tell you.” + +“Always tell me everything,” said Maximilian with a smile. + +“‘Ah,’ continued my father, still frowning, ‘their idolized emperor +treated these madmen as they deserved; he called them ‘food for +cannon,’ which was precisely all they were good for; and I am delighted +to see that the present government have adopted this salutary principle +with all its pristine vigor; if Algiers were good for nothing but to +furnish the means of carrying so admirable an idea into practice, it +would be an acquisition well worthy of struggling to obtain. Though it +certainly does cost France somewhat dear to assert her rights in that +uncivilized country.’” + +“Brutal politics, I must confess.” said Maximilian; “but don’t attach +any serious importance, dear, to what your father said. My father was +not a bit behind yours in that sort of talk. ‘Why,’ said he, ‘does not +the emperor, who has devised so many clever and efficient modes of +improving the art of war, organize a regiment of lawyers, judges and +legal practitioners, sending them in the hottest fire the enemy could +maintain, and using them to save better men?’ You see, my dear, that +for picturesque expression and generosity of spirit there is not much +to choose between the language of either party. But what did M. +Danglars say to this outburst on the part of the procureur?” + +“Oh, he laughed, and in that singular manner so peculiar to +himself—half-malicious, half-ferocious; he almost immediately got up +and took his leave; then, for the first time, I observed the agitation +of my grandfather, and I must tell you, Maximilian, that I am the only +person capable of discerning emotion in his paralyzed frame. And I +suspected that the conversation that had been carried on in his +presence (for they always say and do what they like before the dear old +man, without the smallest regard for his feelings) had made a strong +impression on his mind; for, naturally enough, it must have pained him +to hear the emperor he so devotedly loved and served spoken of in that +depreciating manner.” + +“The name of M. Noirtier,” interposed Maximilian, “is celebrated +throughout Europe; he was a statesman of high standing, and you may or +may not know, Valentine, that he took a leading part in every +Bonapartist conspiracy set on foot during the restoration of the +Bourbons.” + +“Oh, I have often heard whispers of things that seem to me most +strange—the father a Bonapartist, the son a Royalist; what can have +been the reason of so singular a difference in parties and politics? +But to resume my story; I turned towards my grandfather, as though to +question him as to the cause of his emotion; he looked expressively at +the newspaper I had been reading. ‘What is the matter, dear +grandfather?’ said I, ‘are you pleased?’ He gave me a sign in the +affirmative. ‘With what my father said just now?’ He returned a sign in +the negative. ‘Perhaps you liked what M. Danglars said?’ Another sign +in the negative. ‘Oh, then, you were glad to hear that M. Morrel (I +didn’t dare to say Maximilian) had been made an officer of the Legion +of Honor?’ He signified assent; only think of the poor old man’s being +so pleased to think that you, who were a perfect stranger to him, had +been made an officer of the Legion of Honor! Perhaps it was a mere whim +on his part, for he is falling, they say, into second childhood, but I +love him for showing so much interest in you.” + +“How singular,” murmured Maximilian; “your father hates me, while your +grandfather, on the contrary—What strange feelings are aroused by +politics.” + +“Hush,” cried Valentine, suddenly; “someone is coming!” Maximilian +leaped at one bound into his crop of lucern, which he began to pull up +in the most ruthless way, under the pretext of being occupied in +weeding it. + +“Mademoiselle, mademoiselle!” exclaimed a voice from behind the trees. +“Madame is searching for you everywhere; there is a visitor in the +drawing-room.” + +“A visitor?” inquired Valentine, much agitated; “who is it?” + +“Some grand personage—a prince I believe they said—the Count of Monte +Cristo.” + +“I will come directly,” cried Valentine aloud. + +The name of Monte Cristo sent an electric shock through the young man +on the other side of the iron gate, to whom Valentine’s _“I am coming”_ +was the customary signal of farewell. + +“Now, then,” said Maximilian, leaning on the handle of his spade, “I +would give a good deal to know how it comes about that the Count of +Monte Cristo is acquainted with M. de Villefort.” + + + + Chapter 52. Toxicology + +It was really the Count of Monte Cristo who had just arrived at Madame +de Villefort’s for the purpose of returning the procureur’s visit, and +at his name, as may be easily imagined, the whole house was in +confusion. + +Madame de Villefort, who was alone in her drawing-room when the count +was announced, desired that her son might be brought thither instantly +to renew his thanks to the count; and Edward, who heard this great +personage talked of for two whole days, made all possible haste to come +to him, not from obedience to his mother, or out of any feeling of +gratitude to the count, but from sheer curiosity, and that some chance +remark might give him the opportunity for making one of the impertinent +speeches which made his mother say: + +“Oh, that naughty child! But I can’t be severe with him, he is really +_so_ bright.” + +After the usual civilities, the count inquired after M. de Villefort. + +“My husband dines with the chancellor,” replied the young lady; “he has +just gone, and I am sure he’ll be exceedingly sorry not to have had the +pleasure of seeing you before he went.” + +Two visitors who were there when the count arrived, having gazed at him +with all their eyes, retired after that reasonable delay which +politeness admits and curiosity requires. + +“What is your sister Valentine doing?” inquired Madame de Villefort of +Edward; “tell someone to bid her come here, that I may have the honor +of introducing her to the count.” + +“You have a daughter, then, madame?” inquired the count; “very young, I +presume?” + +“The daughter of M. de Villefort by his first marriage,” replied the +young wife, “a fine well-grown girl.” + +“But melancholy,” interrupted Master Edward, snatching the feathers out +of the tail of a splendid paroquet that was screaming on its gilded +perch, in order to make a plume for his hat. + +Madame de Villefort merely cried, “Be still, Edward!” She then added, +“This young madcap is, however, very nearly right, and merely re-echoes +what he has heard me say with pain a hundred times; for Mademoiselle de +Villefort is, in spite of all we can do to rouse her, of a melancholy +disposition and taciturn habit, which frequently injure the effect of +her beauty. But what detains her? Go, Edward, and see.” + +“Because they are looking for her where she is not to be found.” + +“And where are they looking for her?” + +“With grandpapa Noirtier.” + +“And do you think she is not there?” + +“No, no, no, no, no, she is not there,” replied Edward, singing his +words. + +“And where is she, then? If you know, why don’t you tell?” + +“She is under the big chestnut-tree,” replied the spoiled brat, as he +gave, in spite of his mother’s commands, live flies to the parrot, +which seemed keenly to relish such fare. + +Madame de Villefort stretched out her hand to ring, intending to direct +her waiting-maid to the spot where she would find Valentine, when the +young lady herself entered the apartment. She appeared much dejected; +and any person who considered her attentively might have observed the +traces of recent tears in her eyes. + +Valentine, whom we have in the rapid march of our narrative presented +to our readers without formally introducing her, was a tall and +graceful girl of nineteen, with bright chestnut hair, deep blue eyes, +and that reposeful air of quiet distinction which characterized her +mother. Her white and slender fingers, her pearly neck, her cheeks +tinted with varying hues reminded one of the lovely Englishwomen who +have been so poetically compared in their manner to the gracefulness of +a swan. + +She entered the apartment, and seeing near her stepmother the stranger +of whom she had already heard so much, saluted him without any girlish +awkwardness, or even lowering her eyes, and with an elegance that +redoubled the count’s attention. + +He rose to return the salutation. + +“Mademoiselle de Villefort, my step-daughter,” said Madame de Villefort +to Monte Cristo, leaning back on her sofa and motioning towards +Valentine with her hand. + +“And M. de Monte Cristo, King of China, Emperor of Cochin-China,” said +the young imp, looking slyly towards his sister. + +Madame de Villefort at this really did turn pale, and was very nearly +angry with this household plague, who answered to the name of Edward; +but the count, on the contrary, smiled, and appeared to look at the boy +complacently, which caused the maternal heart to bound again with joy +and enthusiasm. + +“But, madame,” replied the count, continuing the conversation, and +looking by turns at Madame de Villefort and Valentine, “have I not +already had the honor of meeting yourself and mademoiselle before? I +could not help thinking so just now; the idea came over my mind, and as +mademoiselle entered the sight of her was an additional ray of light +thrown on a confused remembrance; excuse the remark.” + +“I do not think it likely, sir; Mademoiselle de Villefort is not very +fond of society, and we very seldom go out,” said the young lady. + +“Then it was not in society that I met with mademoiselle or yourself, +madame, or this charming little merry boy. Besides, the Parisian world +is entirely unknown to me, for, as I believe I told you, I have been in +Paris but very few days. No,—but, perhaps, you will permit me to call +to mind—stay!” + +The Count placed his hand on his brow as if to collect his thoughts. + +“No—it was somewhere—away from here—it was—I do not know—but it appears +that this recollection is connected with a lovely sky and some +religious _fête_; mademoiselle was holding flowers in her hand, the +interesting boy was chasing a beautiful peacock in a garden, and you, +madame, were under the trellis of some arbor. Pray come to my aid, +madame; do not these circumstances appeal to your memory?” + +“No, indeed,” replied Madame de Villefort; “and yet it appears to me, +sir, that if I had met you anywhere, the recollection of you must have +been imprinted on my memory.” + +“Perhaps the count saw us in Italy,” said Valentine timidly. + +“Yes, in Italy; it was in Italy most probably,” replied Monte Cristo; +“you have travelled then in Italy, mademoiselle?” + +“Yes; madame and I were there two years ago. The doctors, anxious for +my lungs, had prescribed the air of Naples. We went by Bologna, +Perugia, and Rome.” + +“Ah, yes—true, mademoiselle,” exclaimed Monte Cristo as if this simple +explanation was sufficient to revive the recollection he sought. “It +was at Perugia on Corpus Christi Day, in the garden of the Hôtel des +Postes, when chance brought us together; you, Madame de Villefort, and +her son; I now remember having had the honor of meeting you.” + +“I perfectly well remember Perugia, sir, and the Hôtel des Postes, and +the festival of which you speak,” said Madame de Villefort, “but in +vain do I tax my memory, of whose treachery I am ashamed, for I really +do not recall to mind that I ever had the pleasure of seeing you +before.” + +“It is strange, but neither do I recollect meeting with you,” observed +Valentine, raising her beautiful eyes to the count. + +30065m + + + +“But I remember it perfectly,” interposed the darling Edward. + +“I will assist your memory, madame,” continued the count; “the day had +been burning hot; you were waiting for horses, which were delayed in +consequence of the festival. Mademoiselle was walking in the shade of +the garden, and your son disappeared in pursuit of the peacock.” + +“And I caught it, mamma, don’t you remember?” interposed Edward, “and I +pulled three such beautiful feathers out of his tail.” + +“You, madame, remained under the arbor; do you not remember, that while +you were seated on a stone bench, and while, as I told you, +Mademoiselle de Villefort and your young son were absent, you conversed +for a considerable time with somebody?” + +“Yes, in truth, yes,” answered the young lady, turning very red, “I do +remember conversing with a person wrapped in a long woollen mantle; he +was a medical man, I think.” + +“Precisely so, madame; this man was myself; for a fortnight I had been +at that hotel, during which period I had cured my valet de chambre of a +fever, and my landlord of the jaundice, so that I really acquired a +reputation as a skilful physician. We discoursed a long time, madame, +on different subjects; of Perugino, of Raphael, of manners, customs, of +the famous _aqua Tofana_, of which they had told you, I think you said, +that certain individuals in Perugia had preserved the secret.” + +“Yes, true,” replied Madame de Villefort, somewhat uneasily, “I +remember now.” + +“I do not recollect now all the various subjects of which we +discoursed, madame,” continued the count with perfect calmness; “but I +perfectly remember that, falling into the error which others had +entertained respecting me, you consulted me as to the health of +Mademoiselle de Villefort.” + +“Yes, really, sir, you were in fact a medical man,” said Madame de +Villefort, “since you had cured the sick.” + +“Molière or Beaumarchais would reply to you, madame, that it was +precisely because I was not, that I had cured my patients; for myself, +I am content to say to you that I have studied chemistry and the +natural sciences somewhat deeply, but still only as an amateur, you +understand.” + +At this moment the clock struck six. + +“It is six o’clock,” said Madame de Villefort, evidently agitated. +“Valentine, will you not go and see if your grandpapa will have his +dinner?” + +Valentine rose, and saluting the count, left the apartment without +speaking. + +“Oh, madame,” said the count, when Valentine had left the room, “was it +on my account that you sent Mademoiselle de Villefort away?” + +“By no means,” replied the young lady quickly; “but this is the hour +when we usually give M. Noirtier the unwelcome meal that sustains his +pitiful existence. You are aware, sir, of the deplorable condition of +my husband’s father?” + +“Yes, madame, M. de Villefort spoke of it to me—a paralysis, I think.” + +“Alas, yes; the poor old gentleman is entirely helpless; the mind alone +is still active in this human machine, and that is faint and +flickering, like the light of a lamp about to expire. But excuse me, +sir, for talking of our domestic misfortunes; I interrupted you at the +moment when you were telling me that you were a skilful chemist.” + +“No, madame, I did not say as much as that,” replied the count with a +smile; “quite the contrary. I have studied chemistry because, having +determined to live in eastern climates I have been desirous of +following the example of King Mithridates.” + +“_Mithridates, rex Ponticus_,” said the young scamp, as he tore some +beautiful portraits out of a splendid album, “the individual who took +cream in his cup of poison every morning at breakfast.” + +“Edward, you naughty boy,” exclaimed Madame de Villefort, snatching the +mutilated book from the urchin’s grasp, “you are positively past +bearing; you really disturb the conversation; go, leave us, and join +your sister Valentine in dear grandpapa Noirtier’s room.” + +“The album,” said Edward sulkily. + +“What do you mean?—the album!” + +“I want the album.” + +“How dare you tear out the drawings?” + +“Oh, it amuses me.” + +“Go—go at once.” + +“I won’t go unless you give me the album,” said the boy, seating +himself doggedly in an armchair, according to his habit of never giving +way. + +“Take it, then, and pray disturb us no longer,” said Madame de +Villefort, giving the album to Edward, who then went towards the door, +led by his mother. The count followed her with his eyes. + +“Let us see if she shuts the door after him,” he muttered. + +Madame de Villefort closed the door carefully after the child, the +count appearing not to notice her; then casting a scrutinizing glance +around the chamber, the young wife returned to her chair, in which she +seated herself. + +“Allow me to observe, madame,” said the count, with that kind tone he +could assume so well, “you are really very severe with that dear clever +child.” + +“Oh, sometimes severity is quite necessary,” replied Madame de +Villefort, with all a mother’s real firmness. + +“It was his Cornelius Nepos that Master Edward was repeating when he +referred to King Mithridates,” continued the count, “and you +interrupted him in a quotation which proves that his tutor has by no +means neglected him, for your son is really advanced for his years.” + +“The fact is, count,” answered the mother, agreeably flattered, “he has +great aptitude, and learns all that is set before him. He has but one +fault, he is somewhat wilful; but really, on referring for the moment +to what he said, do you truly believe that Mithridates used these +precautions, and that these precautions were efficacious?” + +“I think so, madame, because I myself have made use of them, that I +might not be poisoned at Naples, at Palermo, and at Smyrna—that is to +say, on three several occasions when, but for these precautions, I must +have lost my life.” + +“And your precautions were successful?” + +“Completely so.” + +“Yes, I remember now your mentioning to me at Perugia something of this +sort.” + +“Indeed?” said the count with an air of surprise, remarkably well +counterfeited; “I really did not remember.” + +“I inquired of you if poisons acted equally, and with the same effect, +on men of the North as on men of the South; and you answered me that +the cold and sluggish habits of the North did not present the same +aptitude as the rich and energetic temperaments of the natives of the +South.” + +“And that is the case,” observed Monte Cristo. “I have seen Russians +devour, without being visibly inconvenienced, vegetable substances +which would infallibly have killed a Neapolitan or an Arab.” + +“And you really believe the result would be still more sure with us +than in the East, and in the midst of our fogs and rains a man would +habituate himself more easily than in a warm latitude to this +progressive absorption of poison?” + +“Certainly; it being at the same time perfectly understood that he +should have been duly fortified against the poison to which he had not +been accustomed.” + +“Yes, I understand that; and how would you habituate yourself, for +instance, or rather, how did you habituate yourself to it?” + +“Oh, very easily. Suppose you knew beforehand the poison that would be +made use of against you; suppose the poison was, for instance, +brucine——” + +“Brucine is extracted from the false angostura8 is it not?” inquired +Madame de Villefort. + +“Precisely, madame,” replied Monte Cristo; “but I perceive I have not +much to teach you. Allow me to compliment you on your knowledge; such +learning is very rare among ladies.” + +“Oh, I am aware of that,” said Madame de Villefort; “but I have a +passion for the occult sciences, which speak to the imagination like +poetry, and are reducible to figures, like an algebraic equation; but +go on, I beg of you; what you say interests me to the greatest degree.” + +30069m + + + +“Well,” replied Monte Cristo “suppose, then, that this poison was +brucine, and you were to take a milligramme the first day, two +milligrammes the second day, and so on. Well, at the end of ten days +you would have taken a centigramme, at the end of twenty days, +increasing another milligramme, you would have taken three hundred +centigrammes; that is to say, a dose which you would support without +inconvenience, and which would be very dangerous for any other person +who had not taken the same precautions as yourself. Well, then, at the +end of a month, when drinking water from the same carafe, you would +kill the person who drank with you, without your perceiving, otherwise +than from slight inconvenience, that there was any poisonous substance +mingled with this water.” + +“Do you know any other counter-poisons?” + +“I do not.” + +“I have often read, and read again, the history of Mithridates,” said +Madame de Villefort in a tone of reflection, “and had always considered +it a fable.” + +“No, madame, contrary to most history, it is true; but what you tell +me, madame, what you inquire of me, is not the result of a chance +query, for two years ago you asked me the same questions, and said +then, that for a very long time this history of Mithridates had +occupied your mind.” + +“True, sir. The two favorite studies of my youth were botany and +mineralogy, and subsequently, when I learned that the use of simples +frequently explained the whole history of a people, and the entire life +of individuals in the East, as flowers betoken and symbolize a love +affair, I have regretted that I was not a man, that I might have been a +Flamel, a Fontana, or a Cabanis.” + +“And the more, madame,” said Monte Cristo, “as the Orientals do not +confine themselves, as did Mithridates, to make a cuirass of his +poisons, but they also made them a dagger. Science becomes, in their +hands, not only a defensive weapon, but still more frequently an +offensive one; the one serves against all their physical sufferings, +the other against all their enemies. With opium, belladonna, brucea, +snake-wood, and the cherry-laurel, they put to sleep all who stand in +their way. There is not one of those women, Egyptian, Turkish, or +Greek, whom here you call ‘good women,’ who do not know how, by means +of chemistry, to stupefy a doctor, and in psychology to amaze a +confessor.” + +“Really,” said Madame de Villefort, whose eyes sparkled with strange +fire at this conversation. + +“Oh, yes, indeed, madame,” continued Monte Cristo, “the secret dramas +of the East begin with a love philtre and end with a death potion—begin +with paradise and end with—hell. There are as many elixirs of every +kind as there are caprices and peculiarities in the physical and moral +nature of humanity; and I will say further—the art of these chemists is +capable with the utmost precision to accommodate and proportion the +remedy and the bane to yearnings for love or desires for vengeance.” + +“But, sir,” remarked the young woman, “these Eastern societies, in the +midst of which you have passed a portion of your existence, are as +fantastic as the tales that come from their strange land. A man can +easily be put out of the way there, then; it is, indeed, the Bagdad and +Bassora of the _Thousand and One Nights_. The sultans and viziers who +rule over society there, and who constitute what in France we call the +government, are really Haroun-al-Raschids and Giaffars, who not only +pardon a poisoner, but even make him a prime minister, if his crime has +been an ingenious one, and who, under such circumstances, have the +whole story written in letters of gold, to divert their hours of +idleness and _ennui_.” + +“By no means, madame; the fanciful exists no longer in the East. There, +disguised under other names, and concealed under other costumes, are +police agents, magistrates, attorneys-general, and bailiffs. They hang, +behead, and impale their criminals in the most agreeable possible +manner; but some of these, like clever rogues, have contrived to escape +human justice, and succeed in their fraudulent enterprises by cunning +stratagems. Amongst us a simpleton, possessed by the demon of hate or +cupidity, who has an enemy to destroy, or some near relation to dispose +of, goes straight to the grocer’s or druggist’s, gives a false name, +which leads more easily to his detection than his real one, and under +the pretext that the rats prevent him from sleeping, purchases five or +six grammes of arsenic—if he is really a cunning fellow, he goes to +five or six different druggists or grocers, and thereby becomes only +five or six times more easily traced;—then, when he has acquired his +specific, he administers duly to his enemy, or near kinsman, a dose of +arsenic which would make a mammoth or mastodon burst, and which, +without rhyme or reason, makes his victim utter groans which alarm the +entire neighborhood. Then arrive a crowd of policemen and constables. +They fetch a doctor, who opens the dead body, and collects from the +entrails and stomach a quantity of arsenic in a spoon. Next day a +hundred newspapers relate the fact, with the names of the victim and +the murderer. The same evening the grocer or grocers, druggist or +druggists, come and say, ‘It was I who sold the arsenic to the +gentleman;’ and rather than not recognize the guilty purchaser, they +will recognize twenty. Then the foolish criminal is taken, imprisoned, +interrogated, confronted, confounded, condemned, and cut off by hemp or +steel; or if she be a woman of any consideration, they lock her up for +life. This is the way in which you Northerns understand chemistry, +madame. Desrues was, however, I must confess, more skilful.” + +“What would you have, sir?” said the lady, laughing; “we do what we +can. All the world has not the secret of the Medicis or the Borgias.” + +“Now,” replied the count, shrugging his shoulders, “shall I tell you +the cause of all these stupidities? It is because, at your theatres, by +what at least I could judge by reading the pieces they play, they see +persons swallow the contents of a phial, or suck the button of a ring, +and fall dead instantly. Five minutes afterwards the curtain falls, and +the spectators depart. They are ignorant of the consequences of the +murder; they see neither the police commissary with his badge of +office, nor the corporal with his four men; and so the poor fools +believe that the whole thing is as easy as lying. But go a little way +from France—go either to Aleppo or Cairo, or only to Naples or Rome, +and you will see people passing by you in the streets—people erect, +smiling, and fresh-colored, of whom Asmodeus, if you were holding on by +the skirt of his mantle, would say, ‘That man was poisoned three weeks +ago; he will be a dead man in a month.’” + +“Then,” remarked Madame de Villefort, “they have again discovered the +secret of the famous _aqua Tofana_ that they said was lost at Perugia.” + +“Ah, but madame, does mankind ever lose anything? The arts change about +and make a tour of the world; things take a different name, and the +vulgar do not follow them—that is all; but there is always the same +result. Poisons act particularly on some organ or another—one on the +stomach, another on the brain, another on the intestines. Well, the +poison brings on a cough, the cough an inflammation of the lungs, or +some other complaint catalogued in the book of science, which, however, +by no means precludes it from being decidedly mortal; and if it were +not, would be sure to become so, thanks to the remedies applied by +foolish doctors, who are generally bad chemists, and which will act in +favor of or against the malady, as you please; and then there is a +human being killed according to all the rules of art and skill, and of +whom justice learns nothing, as was said by a terrible chemist of my +acquaintance, the worthy Abbé Adelmonte of Taormina, in Sicily, who has +studied these national phenomena very profoundly.” + +“It is quite frightful, but deeply interesting,” said the young lady, +motionless with attention. “I thought, I must confess, that these +tales, were inventions of the Middle Ages.” + +“Yes, no doubt, but improved upon by ours. What is the use of time, +rewards of merit, medals, crosses, Monthyon prizes, if they do not lead +society towards more complete perfection? Yet man will never be perfect +until he learns to create and destroy; he does know how to destroy, and +that is half the battle.” + +“So,” added Madame de Villefort, constantly returning to her object, +“the poisons of the Borgias, the Medicis, the Renées, the Ruggieris, +and later, probably, that of Baron de Trenck, whose story has been so +misused by modern drama and romance——” + +“Were objects of art, madame, and nothing more,” replied the count. “Do +you suppose that the real _savant_ addresses himself stupidly to the +mere individual? By no means. Science loves eccentricities, leaps and +bounds, trials of strength, fancies, if I may be allowed so to term +them. Thus, for instance, the excellent Abbé Adelmonte, of whom I spoke +just now, made in this way some marvellous experiments.” + +“Really?” + +“Yes; I will mention one to you. He had a remarkably fine garden, full +of vegetables, flowers, and fruit. From amongst these vegetables he +selected the most simple—a cabbage, for instance. For three days he +watered this cabbage with a distillation of arsenic; on the third, the +cabbage began to droop and turn yellow. At that moment he cut it. In +the eyes of everybody it seemed fit for table, and preserved its +wholesome appearance. It was only poisoned to the Abbé Adelmonte. He +then took the cabbage to the room where he had rabbits—for the Abbé +Adelmonte had a collection of rabbits, cats, and guinea-pigs, fully as +fine as his collection of vegetables, flowers, and fruit. Well, the +Abbé Adelmonte took a rabbit, and made it eat a leaf of the cabbage. +The rabbit died. What magistrate would find, or even venture to +insinuate, anything against this? What procureur has ever ventured to +draw up an accusation against M. Magendie or M. Flourens, in +consequence of the rabbits, cats, and guinea-pigs they have killed?—not +one. So, then, the rabbit dies, and justice takes no notice. This +rabbit dead, the Abbé Adelmonte has its entrails taken out by his cook +and thrown on the dunghill; on this dunghill is a hen, who, pecking +these intestines, is in her turn taken ill, and dies next day. At the +moment when she is struggling in the convulsions of death, a vulture is +flying by (there are a good many vultures in Adelmonte’s country); this +bird darts on the dead fowl, and carries it away to a rock, where it +dines off its prey. Three days afterwards, this poor vulture, which has +been very much indisposed since that dinner, suddenly feels very giddy +while flying aloft in the clouds, and falls heavily into a fish-pond. +The pike, eels, and carp eat greedily always, as everybody knows—well, +they feast on the vulture. Now suppose that next day, one of these +eels, or pike, or carp, poisoned at the fourth remove, is served up at +your table. Well, then, your guest will be poisoned at the fifth +remove, and die, at the end of eight or ten days, of pains in the +intestines, sickness, or abscess of the pylorus. The doctors open the +body and say with an air of profound learning, ‘The subject has died of +a tumor on the liver, or of typhoid fever!’” + +“But,” remarked Madame de Villefort, “all these circumstances which you +link thus to one another may be broken by the least accident; the +vulture may not see the fowl, or may fall a hundred yards from the +fish-pond.” + +“Ah, that is where the art comes in. To be a great chemist in the East, +one must direct chance; and this is to be achieved.” + +Madame de Villefort was in deep thought, yet listened attentively. + +“But,” she exclaimed, suddenly, “arsenic is indelible, indestructible; +in whatsoever way it is absorbed, it will be found again in the body of +the victim from the moment when it has been taken in sufficient +quantity to cause death.” + +“Precisely so,” cried Monte Cristo—“precisely so; and this is what I +said to my worthy Adelmonte. He reflected, smiled, and replied to me by +a Sicilian proverb, which I believe is also a French proverb, ‘My son, +the world was not made in a day—but in seven. Return on Sunday.’ On the +Sunday following I did return to him. Instead of having watered his +cabbage with arsenic, he had watered it this time with a solution of +salts, having their basis in strychnine, _strychnos colubrina_, as the +learned term it. Now, the cabbage had not the slightest appearance of +disease in the world, and the rabbit had not the smallest distrust; +yet, five minutes afterwards, the rabbit was dead. The fowl pecked at +the rabbit, and the next day was a dead hen. This time we were the +vultures; so we opened the bird, and this time all special symptoms had +disappeared, there were only general symptoms. There was no peculiar +indication in any organ—an excitement of the nervous system—that was +it; a case of cerebral congestion—nothing more. The fowl had not been +poisoned—she had died of apoplexy. Apoplexy is a rare disease among +fowls, I believe, but very common among men.” + +Madame de Villefort appeared more and more thoughtful. + +“It is very fortunate,” she observed, “that such substances could only +be prepared by chemists; otherwise, all the world would be poisoning +each other.” + +“By chemists and persons who have a taste for chemistry,” said Monte +Cristo carelessly. + +“And then,” said Madame de Villefort, endeavoring by a struggle, and +with effort, to get away from her thoughts, “however skilfully it is +prepared, crime is always crime, and if it avoid human scrutiny, it +does not escape the eye of God. The Orientals are stronger than we are +in cases of conscience, and, very prudently, have no hell—that is the +point.” + +30075m + + + +“Really, madame, this is a scruple which naturally must occur to a pure +mind like yours, but which would easily yield before sound reasoning. +The bad side of human thought will always be defined by the paradox of +Jean Jacques Rousseau,—you remember,—the mandarin who is killed five +hundred leagues off by raising the tip of the finger. Man’s whole life +passes in doing these things, and his intellect is exhausted by +reflecting on them. You will find very few persons who will go and +brutally thrust a knife in the heart of a fellow-creature, or will +administer to him, in order to remove him from the surface of the globe +on which we move with life and animation, that quantity of arsenic of +which we just now talked. Such a thing is really out of rule—eccentric +or stupid. To attain such a point, the blood must be heated to +thirty-six degrees, the pulse be, at least, at ninety, and the feelings +excited beyond the ordinary limit. But suppose one pass, as is +permissible in philology, from the word itself to its softened synonym, +then, instead of committing an ignoble assassination you make an +‘elimination;’ you merely and simply remove from your path the +individual who is in your way, and that without shock or violence, +without the display of the sufferings which, in the case of becoming a +punishment, make a martyr of the victim, and a butcher, in every sense +of the word, of him who inflicts them. Then there will be no blood, no +groans, no convulsions, and above all, no consciousness of that horrid +and compromising moment of accomplishing the act,—then one escapes the +clutch of the human law, which says, ‘Do not disturb society!’ This is +the mode in which they manage these things, and succeed in Eastern +climes, where there are grave and phlegmatic persons who care very +little for the questions of time in conjunctures of importance.” + +“Yet conscience remains,” remarked Madame de Villefort in an agitated +voice, and with a stifled sigh. + +“Yes,” answered Monte Cristo “happily, yes, conscience does remain; and +if it did not, how wretched we should be! After every action requiring +exertion, it is conscience that saves us, for it supplies us with a +thousand good excuses, of which we alone are judges; and these reasons, +howsoever excellent in producing sleep, would avail us but very little +before a tribunal, when we were tried for our lives. Thus Richard III., +for instance, was marvellously served by his conscience after the +putting away of the two children of Edward IV.; in fact, he could say, +‘These two children of a cruel and persecuting king, who have inherited +the vices of their father, which I alone could perceive in their +juvenile propensities—these two children are impediments in my way of +promoting the happiness of the English people, whose unhappiness they +(the children) would infallibly have caused.’ Thus was Lady Macbeth +served by her conscience, when she sought to give her son, and not her +husband (whatever Shakespeare may say), a throne. Ah, maternal love is +a great virtue, a powerful motive—so powerful that it excuses a +multitude of things, even if, after Duncan’s death, Lady Macbeth had +been at all pricked by her conscience.” + +Madame de Villefort listened with avidity to these appalling maxims and +horrible paradoxes, delivered by the count with that ironical +simplicity which was peculiar to him. + +After a moment’s silence, the lady inquired: + +“Do you know, my dear count,” she said, “that you are a very terrible +reasoner, and that you look at the world through a somewhat distempered +medium? Have you really measured the world by scrutinies, or through +alembics and crucibles? For you must indeed be a great chemist, and the +elixir you administered to my son, which recalled him to life almost +instantaneously——” + +30077m + + + +“Oh, do not place any reliance on that, madame; _one_ drop of that +elixir sufficed to recall life to a dying child, but three drops would +have impelled the blood into his lungs in such a way as to have +produced most violent palpitations; six would have suspended his +respiration, and caused syncope more serious than that in which he was; +ten would have destroyed him. You know, madame, how suddenly I snatched +him from those phials which he so imprudently touched?” + +“Is it then so terrible a poison?” + +“Oh, no! In the first place, let us agree that the word poison does not +exist, because in medicine use is made of the most violent poisons, +which become, according as they are employed, most salutary remedies.” + +“What, then, is it?” + +“A skilful preparation of my friend’s the worthy Abbé Adelmonte, who +taught me the use of it.” + +“Oh,” observed Madame de Villefort, “it must be an admirable +anti-spasmodic.” + +“Perfect, madame, as you have seen,” replied the count; “and I +frequently make use of it—with all possible prudence though, be it +observed,” he added with a smile of intelligence. + +“Most assuredly,” responded Madame de Villefort in the same tone. “As +for me, so nervous, and so subject to fainting fits, I should require a +Doctor Adelmonte to invent for me some means of breathing freely and +tranquillizing my mind, in the fear I have of dying some fine day of +suffocation. In the meanwhile, as the thing is difficult to find in +France, and your abbé is not probably disposed to make a journey to +Paris on my account, I must continue to use Monsieur Planche’s +anti-spasmodics; and mint and Hoffman’s drops are among my favorite +remedies. Here are some lozenges which I have made up on purpose; they +are compounded doubly strong.” + +Monte Cristo opened the tortoise-shell box, which the lady presented to +him, and inhaled the odor of the lozenges with the air of an amateur +who thoroughly appreciated their composition. + +“They are indeed exquisite,” he said; “but as they are necessarily +submitted to the process of deglutition—a function which it is +frequently impossible for a fainting person to accomplish—I prefer my +own specific.” + +“Undoubtedly, and so should I prefer it, after the effects I have seen +produced; but of course it is a secret, and I am not so indiscreet as +to ask it of you.” + +“But I,” said Monte Cristo, rising as he spoke—“I am gallant enough to +offer it you.” + +30079m + + + +“How kind you are.” + +“Only remember one thing—a small dose is a remedy, a large one is +poison. One drop will restore life, as you have seen; five or six will +inevitably kill, and in a way the more terrible inasmuch as, poured +into a glass of wine, it would not in the slightest degree affect its +flavor. But I say no more, madame; it is really as if I were +prescribing for you.” + +The clock struck half-past six, and a lady was announced, a friend of +Madame de Villefort, who came to dine with her. + +“If I had had the honor of seeing you for the third or fourth time, +count, instead of only for the second,” said Madame de Villefort; “if I +had had the honor of being your friend, instead of only having the +happiness of being under an obligation to you, I should insist on +detaining you to dinner, and not allow myself to be daunted by a first +refusal.” + +“A thousand thanks, madame,” replied Monte Cristo “but I have an +engagement which I cannot break. I have promised to escort to the +Académie a Greek princess of my acquaintance who has never seen your +grand opera, and who relies on me to conduct her thither.” + +“Adieu, then, sir, and do not forget the prescription.” + +“Ah, in truth, madame, to do that I must forget the hour’s conversation +I have had with you, which is indeed impossible.” + +Monte Cristo bowed, and left the house. Madame de Villefort remained +immersed in thought. + +“He is a very strange man,” she said, “and in my opinion is himself the +Adelmonte he talks about.” + +As to Monte Cristo the result had surpassed his utmost expectations. + +“Good,” said he, as he went away; “this is a fruitful soil, and I feel +certain that the seed sown will not be cast on barren ground.” + +Next morning, faithful to his promise, he sent the prescription +requested. + + + + Chapter 53. Robert le Diable + +The pretext of an opera engagement was so much the more feasible, as +there chanced to be on that very night a more than ordinary attraction +at the Académie Royale. Levasseur, who had been suffering under severe +illness, made his reappearance in the character of _Bertram_, and, as +usual, the announcement of the most admired production of the favorite +composer of the day had attracted a brilliant and fashionable audience. +Morcerf, like most other young men of rank and fortune, had his +orchestra stall, with the certainty of always finding a seat in at +least a dozen of the principal boxes occupied by persons of his +acquaintance; he had, moreover, his right of entry into the omnibus +box. Château-Renaud rented a stall beside his own, while Beauchamp, as +a journalist, had unlimited range all over the theatre. It happened +that on this particular night the minister’s box was placed at the +disposal of Lucien Debray, who offered it to the Comte de Morcerf, who +again, upon his rejection of it by Mercédès, sent it to Danglars, with +an intimation that he should probably do himself the honor of joining +the baroness and her daughter during the evening, in the event of their +accepting the box in question. The ladies received the offer with too +much pleasure to dream of a refusal. To no class of persons is the +presentation of a gratuitous opera-box more acceptable than to the +wealthy millionaire, who still hugs economy while boasting of carrying +a king’s ransom in his waistcoat pocket. + +Danglars had, however, protested against showing himself in a +ministerial box, declaring that his political principles, and his +parliamentary position as member of the opposition party would not +permit him so to commit himself; the baroness had, therefore, +despatched a note to Lucien Debray, bidding him call for them, it being +wholly impossible for her to go alone with Eugénie to the opera. + +There is no gainsaying the fact that a very unfavorable construction +would have been put upon the circumstance if the two women had gone +without escort, while the addition of a third, in the person of her +mother’s admitted lover, enabled Mademoiselle Danglars to defy malice +and ill-nature. One must take the world as one finds it. + +30083m + + + +The curtain rose, as usual, to an almost empty house, it being one of +the absurdities of Parisian fashion never to appear at the opera until +after the beginning of the performance, so that the first act is +generally played without the slightest attention being paid to it, that +part of the audience already assembled being too much occupied in +observing the fresh arrivals, while nothing is heard but the noise of +opening and shutting doors, and the buzz of conversation. + +“Surely,” said Albert, as the door of a box on the first circle opened, +“that must be the Countess G——.” + +“And who is the Countess G——?” inquired Château-Renaud. + +“What a question! Now, do you know, baron, I have a great mind to pick +a quarrel with you for asking it; as if all the world did not know who +the Countess G—— was.” + +“Ah, to be sure,” replied Château-Renaud; “the lovely Venetian, is it +not?” + +“Herself.” At this moment the countess perceived Albert, and returned +his salutation with a smile. + +“You know her, it seems?” said Château-Renaud. + +“Franz introduced me to her at Rome,” replied Albert. + +“Well, then, will you do as much for me in Paris as Franz did for you +in Rome?” + +“With pleasure.” + +There was a cry of “Shut up!” from the audience. This manifestation on +the part of the spectators of their wish to be allowed to hear the +music, produced not the slightest effect on the two young men, who +continued their conversation. + +“The countess was present at the races in the Champ-de-Mars,” said +Château-Renaud. + +“Today?” + +“Yes.” + +“Bless me, I quite forgot the races. Did you bet?” + +“Oh, merely a paltry fifty louis.” + +“And who was the winner?” + +“Nautilus. I staked on him.” + +“But there were three races, were there not?” + +“Yes; there was the prize given by the Jockey Club—a gold cup, you +know—and a very singular circumstance occurred about that race.” + +“What was it?” + +“Oh, shut up!” again interposed some of the audience. + +“Why, it was won by a horse and rider utterly unknown on the course.” + +“Is that possible?” + +“True as day. The fact was, nobody had observed a horse entered by the +name of Vampa, or that of a jockey styled Job, when, at the last +moment, a splendid roan, mounted by a jockey about as big as your fist, +presented themselves at the starting-post. They were obliged to stuff +at least twenty pounds weight of shot in the small rider’s pockets, to +make him weight; but with all that he outstripped Ariel and Barbare, +against whom he ran, by at least three whole lengths.” + +“And was it not found out at last to whom the horse and jockey +belonged?” + +“No.” + +“You say that the horse was entered under the name of Vampa?” + +“Exactly; that was the title.” + +“Then,” answered Albert, “I am better informed than you are, and know +who the owner of that horse was.” + +“Shut up, there!” cried the pit in chorus. And this time the tone and +manner in which the command was given, betokened such growing hostility +that the two young men perceived, for the first time, that the mandate +was addressed to them. Leisurely turning round, they calmly scrutinized +the various countenances around them, as though demanding some one +person who would take upon himself the responsibility of what they +deemed excessive impertinence; but as no one responded to the +challenge, the friends turned again to the front of the theatre, and +affected to busy themselves with the stage. At this moment the door of +the minister’s box opened, and Madame Danglars, accompanied by her +daughter, entered, escorted by Lucien Debray, who assiduously conducted +them to their seats. + +“Ha, ha,” said Château-Renaud, “here come some friends of yours, +viscount! What are you looking at there? don’t you see they are trying +to catch your eye?” + +Albert turned round, just in time to receive a gracious wave of the fan +from the baroness; as for Mademoiselle Eugénie, she scarcely vouchsafed +to waste the glances of her large black eyes even upon the business of +the stage. + +“I tell you what, my dear fellow,” said Château-Renaud, “I cannot +imagine what objection you can possibly have to Mademoiselle +Danglars—that is, setting aside her want of ancestry and somewhat +inferior rank, which by the way I don’t think you care very much about. +Now, barring all that, I mean to say she is a deuced fine girl!” + +“Handsome, certainly,” replied Albert, “but not to my taste, which I +confess, inclines to something softer, gentler, and more feminine.” + +“Ah, well,” exclaimed Château-Renaud, who because he had seen his +thirtieth summer fancied himself duly warranted in assuming a sort of +paternal air with his more youthful friend, “you young people are never +satisfied; why, what would you have more? your parents have chosen you +a bride built on the model of Diana, the huntress, and yet you are not +content.” + +“No, for that very resemblance affrights me; I should have liked +something more in the manner of the Venus of Milo or Capua; but this +chase-loving Diana, continually surrounded by her nymphs, gives me a +sort of alarm lest she should some day bring on me the fate of Actæon.” + +And, indeed, it required but one glance at Mademoiselle Danglars to +comprehend the justness of Morcerf’s remark. She was beautiful, but her +beauty was of too marked and decided a character to please a fastidious +taste; her hair was raven black, but its natural waves seemed somewhat +rebellious; her eyes, of the same color as her hair, were surmounted by +well-arched brows, whose great defect, however, consisted in an almost +habitual frown, while her whole physiognomy wore that expression of +firmness and decision so little in accordance with the gentler +attributes of her sex—her nose was precisely what a sculptor would have +chosen for a chiselled Juno. Her mouth, which might have been found +fault with as too large, displayed teeth of pearly whiteness, rendered +still more conspicuous by the brilliant carmine of her lips, +contrasting vividly with her naturally pale complexion. But that which +completed the almost masculine look Morcerf found so little to his +taste, was a dark mole, of much larger dimensions than these freaks of +nature generally are, placed just at the corner of her mouth; and the +effect tended to increase the expression of self-dependence that +characterized her countenance. + +The rest of Mademoiselle Eugénie’s person was in perfect keeping with +the head just described; she, indeed, reminded one of Diana, as +Château-Renaud observed, but her bearing was more haughty and resolute. + +As regarded her attainments, the only fault to be found with them was +the same that a fastidious connoisseur might have found with her +beauty, that they were somewhat too erudite and masculine for so young +a person. She was a perfect linguist, a first-rate artist, wrote +poetry, and composed music; to the study of the latter she professed to +be entirely devoted, following it with an indefatigable perseverance, +assisted by a schoolfellow,—a young woman without fortune whose talent +promised to develop into remarkable powers as a singer. It was rumored +that she was an object of almost paternal interest to one of the +principal composers of the day, who excited her to spare no pains in +the cultivation of her voice, which might hereafter prove a source of +wealth and independence. But this counsel effectually decided +Mademoiselle Danglars never to commit herself by being seen in public +with one destined for a theatrical life; and acting upon this +principle, the banker’s daughter, though perfectly willing to allow +Mademoiselle Louise d’Armilly (that was the name of the young virtuosa) +to practice with her through the day, took especial care not to be seen +in her company. Still, though not actually received at the Hôtel +Danglars in the light of an acknowledged friend, Louise was treated +with far more kindness and consideration than is usually bestowed on a +governess. + +The curtain fell almost immediately after the entrance of Madame +Danglars into her box, the band quitted the orchestra for the +accustomed half-hour’s interval allowed between the acts, and the +audience were left at liberty to promenade the salon or lobbies, or to +pay and receive visits in their respective boxes. + +Morcerf and Château-Renaud were amongst the first to avail themselves +of this permission. For an instant the idea struck Madame Danglars that +this eagerness on the part of the young viscount arose from his +impatience to join her party, and she whispered her expectations to her +daughter, that Albert was hurrying to pay his respects to them. +Mademoiselle Eugénie, however, merely returned a dissenting movement of +the head, while, with a cold smile, she directed the attention of her +mother to an opposite box on the first circle, in which sat the +Countess G——, and where Morcerf had just made his appearance. + +30087m + + + +“So we meet again, my travelling friend, do we?” cried the countess, +extending her hand to him with all the warmth and cordiality of an old +acquaintance; “it was really very good of you to recognize me so +quickly, and still more so to bestow your first visit on me.” + +“Be assured,” replied Albert, “that if I had been aware of your arrival +in Paris, and had known your address, I should have paid my respects to +you before this. Allow me to introduce my friend, Baron de +Château-Renaud, one of the few true gentlemen now to be found in +France, and from whom I have just learned that you were a spectator of +the races in the Champ-de-Mars, yesterday.” + +Château-Renaud bowed to the countess. + +“So you were at the races, baron?” inquired the countess eagerly. + +“Yes, madame.” + +“Well, then,” pursued Madame G—— with considerable animation, “you can +probably tell me who won the Jockey Club stakes?” + +“I am sorry to say I cannot,” replied the baron; “and I was just asking +the same question of Albert.” + +“Are you very anxious to know, countess?” asked Albert. + +“To know what?” + +“The name of the owner of the winning horse?” + +“Excessively; only imagine—but do tell me, viscount, whether you really +are acquainted with it or no?” + +“I beg your pardon, madame, but you were about to relate some story, +were you not? You said, ‘only imagine,’—and then paused. Pray +continue.” + +“Well, then, listen. You must know I felt so interested in the splendid +roan horse, with his elegant little rider, so tastefully dressed in a +pink satin jacket and cap, that I could not help praying for their +success with as much earnestness as though the half of my fortune were +at stake; and when I saw them outstrip all the others, and come to the +winning-post in such gallant style, I actually clapped my hands with +joy. Imagine my surprise, when, upon returning home, the first object I +met on the staircase was the identical jockey in the pink jacket! I +concluded that, by some singular chance, the owner of the winning horse +must live in the same hotel as myself; but, as I entered my apartments, +I beheld the very gold cup awarded as a prize to the unknown horse and +rider. Inside the cup was a small piece of paper, on which were written +these words—‘From Lord Ruthven to Countess G——.’” + +“Precisely; I was sure of it,” said Morcerf. + +“Sure of what?” + +“That the owner of the horse was Lord Ruthven himself.” + +“What Lord Ruthven do you mean?” + +“Why, our Lord Ruthven—the Vampire of the Salle Argentina!” + +“Is it possible?” exclaimed the countess; “is he here in Paris?” + +“To be sure,—why not?” + +“And you visit him?—meet him at your own house and elsewhere?” + +“I assure you he is my most intimate friend, and M. de Château-Renaud +has also the honor of his acquaintance.” + +“But why are you so sure of his being the winner of the Jockey Club +prize?” + +“Was not the winning horse entered by the name of Vampa?” + +“What of that?” + +“Why, do you not recollect the name of the celebrated bandit by whom I +was made prisoner?” + +“Oh, yes.” + +“And from whose hands the count extricated me in so wonderful a +manner?” + +“To be sure, I remember it all now.” + +“He called himself Vampa. You see, it’s evident where the count got the +name.” + +“But what could have been his motive for sending the cup to me?” + +“In the first place, because I had spoken much of you to him, as you +may believe; and in the second, because he delighted to see a +countrywoman take so lively an interest in his success.” + +“I trust and hope you never repeated to the count all the foolish +remarks we used to make about him?” + +“I should not like to affirm upon oath that I have not. Besides, his +presenting you the cup under the name of Lord Ruthven——” + +“Oh, but that is dreadful! Why, the man must owe me a fearful grudge.” + +“Does his action appear like that of an enemy?” + +“No; certainly not.” + +“Well, then——” + +“And so he is in Paris?” + +“Yes.” + +“And what effect does he produce?” + +“Why,” said Albert, “he was talked about for a week; then the +coronation of the queen of England took place, followed by the theft of +Mademoiselle Mars’s diamonds; and so people talked of something else.” + +“My good fellow,” said Château-Renaud, “the count is your friend and +you treat him accordingly. Do not believe what Albert is telling you, +countess; so far from the sensation excited in the Parisian circles by +the appearance of the Count of Monte Cristo having abated, I take upon +myself to declare that it is as strong as ever. His first astounding +act upon coming amongst us was to present a pair of horses, worth +32,000 francs, to Madame Danglars; his second, the almost miraculous +preservation of Madame de Villefort’s life; now it seems that he has +carried off the prize awarded by the Jockey Club. I therefore maintain, +in spite of Morcerf, that not only is the count the object of interest +at this present moment, but also that he will continue to be so for a +month longer if he pleases to exhibit an eccentricity of conduct which, +after all, may be his ordinary mode of existence.” + +“Perhaps you are right,” said Morcerf; “meanwhile, who is in the +Russian ambassador’s box?” + +“Which box do you mean?” asked the countess. + +“The one between the pillars on the first tier—it seems to have been +fitted up entirely afresh.” + +“Did you observe anyone during the first act?” asked Château-Renaud. + +“Where?” + +“In that box.” + +“No,” replied the countess, “it was certainly empty during the first +act;” then, resuming the subject of their previous conversation, she +said, “And so you really believe it was your mysterious Count of Monte +Cristo that gained the prize?” + +“I am sure of it.” + +“And who afterwards sent the cup to me?” + +“Undoubtedly.” + +“But I don’t know him,” said the countess; “I have a great mind to +return it.” + +“Do no such thing, I beg of you; he would only send you another, formed +of a magnificent sapphire, or hollowed out of a gigantic ruby. It is +his way, and you must take him as you find him.” + +At this moment the bell rang to announce the drawing up of the curtain +for the second act. Albert rose to return to his place. + +“Shall I see you again?” asked the countess. + +“At the end of the next act, with your permission, I will come and +inquire whether there is anything I can do for you in Paris?” + +“Pray take notice,” said the countess, “that my present residence is 22 +Rue de Rivoli, and that I am at home to my friends every Saturday +evening. So now, you are both forewarned.” + +The young men bowed, and quitted the box. Upon reaching their stalls, +they found the whole of the audience in the parterre standing up and +directing their gaze towards the box formerly possessed by the Russian +ambassador. A man of from thirty-five to forty years of age, dressed in +deep black, had just entered, accompanied by a young woman dressed +after the Eastern style. The lady was surpassingly beautiful, while the +rich magnificence of her attire drew all eyes upon her. + +“Hullo,” said Albert; “it is Monte Cristo and his Greek!” + +The strangers were, indeed, no other than the count and Haydée. In a +few moments the young girl had attracted the attention of the whole +house, and even the occupants of the boxes leaned forward to scrutinize +her magnificent diamonds. + +The second act passed away during one continued buzz of voices—one deep +whisper—intimating that some great and universally interesting event +had occurred; all eyes, all thoughts, were occupied with the young and +beautiful woman, whose gorgeous apparel and splendid jewels made a most +extraordinary spectacle. + +Upon this occasion an unmistakable sign from Madame Danglars intimated +her desire to see Albert in her box directly the curtain fell on the +second act, and neither the politeness nor good taste of Morcerf would +permit his neglecting an invitation so unequivocally given. At the +close of the act he therefore went to the baroness. + +Having bowed to the two ladies, he extended his hand to Debray. By the +baroness he was most graciously welcomed, while Eugénie received him +with her accustomed coldness. + +“My dear fellow,” said Debray, “you have come in the nick of time. +There is madame overwhelming me with questions respecting the count; +she insists upon it that I can tell her his birth, education, and +parentage, where he came from, and whither he is going. Being no +disciple of Cagliostro, I was wholly unable to do this; so, by way of +getting out of the scrape, I said, ‘Ask Morcerf; he has got the whole +history of his beloved Monte Cristo at his fingers’ ends;’ whereupon +the baroness signified her desire to see you.” + +“Is it not almost incredible,” said Madame Danglars, “that a person +having at least half a million of secret-service money at his command, +should possess so little information?” + +“Let me assure you, madame,” said Lucien, “that had I really the sum +you mention at my disposal, I would employ it more profitably than in +troubling myself to obtain particulars respecting the Count of Monte +Cristo, whose only merit in my eyes consists in his being twice as rich +as a nabob. However, I have turned the business over to Morcerf, so +pray settle it with him as may be most agreeable to you; for my own +part, I care nothing about the count or his mysterious doings.” + +30093m + + + +“I am very sure no nabob would have sent me a pair of horses worth +32,000 francs, wearing on their heads four diamonds valued at 5,000 +francs each.” + +“He seems to have a mania for diamonds,” said Morcerf, smiling, “and I +verily believe that, like Potemkin, he keeps his pockets filled, for +the sake of strewing them along the road, as Tom Thumb did his flint +stones.” + +“Perhaps he has discovered some mine,” said Madame Danglars. “I suppose +you know he has an order for unlimited credit on the baron’s banking +establishment?” + +“I was not aware of it,” replied Albert, “but I can readily believe +it.” + +“And, further, that he stated to M. Danglars his intention of only +staying a year in Paris, during which time he proposed to spend six +millions. + +“He must be the Shah of Persia, travelling _incog_.” + +“Have you noticed the remarkable beauty of the young woman, M. Lucien?” +inquired Eugénie. + +“I really never met with one woman so ready to do justice to the charms +of another as yourself,” responded Lucien, raising his lorgnette to his +eye. “A most lovely creature, upon my soul!” was his verdict. + +“Who is this young person, M. de Morcerf?” inquired Eugénie; “does +anybody know?” + +“Mademoiselle,” said Albert, replying to this direct appeal, “I can +give you very exact information on that subject, as well as on most +points relative to the mysterious person of whom we are now +conversing—the young woman is a Greek.” + +“So I should suppose by her dress; if you know no more than that, +everyone here is as well-informed as yourself.” + +“I am extremely sorry you find me so ignorant a _cicerone_,” replied +Morcerf, “but I am reluctantly obliged to confess, I have nothing +further to communicate—yes, stay, I do know one thing more, namely, +that she is a musician, for one day when I chanced to be breakfasting +with the count, I heard the sound of a guzla—it is impossible that it +could have been touched by any other finger than her own.” + +“Then your count entertains visitors, does he?” asked Madame Danglars. + +“Indeed he does, and in a most lavish manner, I can assure you.” + +“I must try and persuade M. Danglars to invite him to a ball or dinner, +or something of the sort, that he may be compelled to ask us in +return.” + +“What,” said Debray, laughing; “do you really mean you would go to his +house?” + +“Why not? my husband could accompany me.” + +“But do you know this mysterious count is a bachelor?” + +“You have ample proof to the contrary, if you look opposite,” said the +baroness, as she laughingly pointed to the beautiful Greek. + +“No, no!” exclaimed Debray; “that girl is not his wife: he told us +himself she was his slave. Do you not recollect, Morcerf, his telling +us so at your breakfast?” + +“Well, then,” said the baroness, “if slave she be, she has all the air +and manner of a princess.” + +“Of the ‘Arabian Nights’.” + +“If you like; but tell me, my dear Lucien, what it is that constitutes +a princess. Why, diamonds—and she is covered with them.” + +“To me she seems overloaded,” observed Eugénie; “she would look far +better if she wore fewer, and we should then be able to see her finely +formed throat and wrists.” + +“See how the artist peeps out!” exclaimed Madame Danglars. “My poor +Eugénie, you must conceal your passion for the fine arts.” + +“I admire all that is beautiful,” returned the young lady. + +“What do you think of the count?” inquired Debray; “he is not much +amiss, according to my ideas of good looks.” + +“The count,” repeated Eugénie, as though it had not occurred to her to +observe him sooner; “the count?—oh, he is so dreadfully pale.” + +“I quite agree with you,” said Morcerf; “and the secret of that very +pallor is what we want to find out. The Countess G—— insists upon it +that he is a vampire.” + +“Then the Countess G—— has returned to Paris, has she?” inquired the +baroness. + +“Is that she, mamma?” asked Eugénie; “almost opposite to us, with that +profusion of beautiful light hair?” + +“Yes,” said Madame Danglars, “that is she. Shall I tell you what you +ought to do, Morcerf?” + +“Command me, madame.” + +“Well, then, you should go and bring your Count of Monte Cristo to us.” + +“What for?” asked Eugénie. + +“What for? Why, to converse with him, of course. Have you really no +desire to meet him?” + +“None whatever,” replied Eugénie. + +“Strange child,” murmured the baroness. + +“He will very probably come of his own accord,” said Morcerf. “There; +do you see, madame, he recognizes you, and bows.” + +The baroness returned the salute in the most smiling and graceful +manner. + +“Well,” said Morcerf, “I may as well be magnanimous, and tear myself +away to forward your wishes. Adieu; I will go and try if there are any +means of speaking to him.” + +“Go straight to his box; that will be the simplest plan.” + +“But I have never been presented.” + +“Presented to whom?” + +“To the beautiful Greek.” + +“You say she is only a slave?” + +“While you assert that she is a queen, or at least a princess. No; I +hope that when he sees me leave you, he will come out.” + +“That is possible—go.” + +“I am going,” said Albert, as he made his parting bow. + +Just as he was passing the count’s box, the door opened, and Monte +Cristo came forth. After giving some directions to Ali, who stood in +the lobby, the count took Albert’s arm. Carefully closing the box door, +Ali placed himself before it, while a crowd of spectators assembled +round the Nubian. + +“Upon my word,” said Monte Cristo, “Paris is a strange city, and the +Parisians a very singular people. See that cluster of persons collected +around poor Ali, who is as much astonished as themselves; really one +might suppose he was the only Nubian they had ever beheld. Now I can +promise you, that a Frenchman might show himself in public, either in +Tunis, Constantinople, Bagdad, or Cairo, without being treated in that +way.” + +“That shows that the Eastern nations have too much good sense to waste +their time and attention on objects undeserving of either. However, as +far as Ali is concerned, I can assure you, the interest he excites is +merely from the circumstance of his being your attendant—you, who are +at this moment the most celebrated and fashionable person in Paris.” + +“Really? and what has procured me so flattering a distinction?” + +“What? why, yourself, to be sure! You give away horses worth a thousand +louis; you save the lives of ladies of high rank and beauty; under the +name of Major Black you run thoroughbreds ridden by tiny urchins not +larger than marmots; then, when you have carried off the golden trophy +of victory, instead of setting any value on it, you give it to the +first handsome woman you think of!” + +“And who has filled your head with all this nonsense?” + +“Why, in the first place, I heard it from Madame Danglars, who, by the +by, is dying to see you in her box, or to have you seen there by +others; secondly, I learned it from Beauchamp’s journal; and thirdly, +from my own imagination. Why, if you sought concealment, did you call +your horse Vampa?” + +“That was an oversight, certainly,” replied the count; “but tell me, +does the Count of Morcerf never visit the Opera? I have been looking +for him, but without success.” + +“He will be here tonight.” + +“In what part of the house?” + +“In the baroness’s box, I believe.” + +“That charming young woman with her is her daughter?” + +“Yes.” + +“I congratulate you.” + +Morcerf smiled. + +“We will discuss that subject at length some future time,” said he. +“But what do you think of the music?” + +“What music?” + +“Why, the music you have been listening to.” + +“Oh, it is well enough as the production of a human composer, sung by +featherless bipeds, to quote the late Diogenes.” + +“From which it would seem, my dear count, that you can at pleasure +enjoy the seraphic strains that proceed from the seven choirs of +paradise?” + +30097m + + + +“You are right, in some degree; when I wish to listen to sounds more +exquisitely attuned to melody than mortal ear ever yet listened to, I +go to sleep.” + +“Then sleep here, my dear count. The conditions are favorable; what +else was opera invented for?” + +“No, thank you. Your orchestra is too noisy. To sleep after the manner +I speak of, absolute calm and silence are necessary, and then a certain +preparation——” + +“I know—the famous hashish!” + +“Precisely. So, my dear viscount, whenever you wish to be regaled with +music come and sup with me.” + +“I have already enjoyed that treat when breakfasting with you,” said +Morcerf. + +“Do you mean at Rome?” + +“I do.” + +“Ah, then, I suppose you heard Haydée’s guzla; the poor exile +frequently beguiles a weary hour in playing over to me the airs of her +native land.” + +Morcerf did not pursue the subject, and Monte Cristo himself fell into +a silent reverie. + +The bell rang at this moment for the rising of the curtain. + +“You will excuse my leaving you,” said the count, turning in the +direction of his box. + +“What? Are you going?” + +“Pray, say everything that is kind to Countess G—— on the part of her +friend the vampire.” + +“And what message shall I convey to the baroness!” + +“That, with her permission, I shall do myself the honor of paying my +respects in the course of the evening.” + +The third act had begun; and during its progress the Count of Morcerf, +according to his promise, made his appearance in the box of Madame +Danglars. The Count of Morcerf was not a person to excite either +interest or curiosity in a place of public amusement; his presence, +therefore, was wholly unnoticed, save by the occupants of the box in +which he had just seated himself. + +The quick eye of Monte Cristo however, marked his coming; and a slight +though meaning smile passed over his lips. Haydée, whose soul seemed +centred in the business of the stage, like all unsophisticated natures, +delighted in whatever addressed itself to the eye or ear. + +30099m + + + +The third act passed off as usual. Mesdemoiselles Noblet, Julia, and +Leroux executed the customary pirouettes; Robert duly challenged the +Prince of Granada; and the royal father of the princess Isabella, +taking his daughter by the hand, swept round the stage with majestic +strides, the better to display the rich folds of his velvet robe and +mantle. After which the curtain again fell, and the spectators poured +forth from the theatre into the lobbies and salon. + +The count left his box, and a moment later was saluting the Baronne +Danglars, who could not restrain a cry of mingled pleasure and +surprise. + +“You are welcome, count!” she exclaimed, as he entered. “I have been +most anxious to see you, that I might repeat orally the thanks writing +can so ill express.” + +“Surely so trifling a circumstance cannot deserve a place in your +remembrance. Believe me, madame, I had entirely forgotten it.” + +“But it is not so easy to forget, monsieur, that the very next day +after your princely gift you saved the life of my dear friend, Madame +de Villefort, which was endangered by the very animals your generosity +restored to me.” + +30101m + + + +“This time, at least, I do not deserve your thanks. It was Ali, my +Nubian slave, who rendered this service to Madame de Villefort.” + +“Was it Ali,” asked the Count of Morcerf, “who rescued my son from the +hands of bandits?” + +“No, count,” replied Monte Cristo taking the hand held out to him by +the general; “in this instance I may fairly and freely accept your +thanks; but you have already tendered them, and fully discharged your +debt—if indeed there existed one—and I feel almost mortified to find +you still reverting to the subject. May I beg of you, baroness, to +honor me with an introduction to your daughter?” + +“Oh, you are no stranger—at least not by name,” replied Madame +Danglars, “and the last two or three days we have really talked of +nothing but you. Eugénie,” continued the baroness, turning towards her +daughter, “this is the Count of Monte Cristo.” + +The count bowed, while Mademoiselle Danglars bent her head slightly. + +“You have a charming young person with you tonight, count,” said +Eugénie. “Is she your daughter?” + +“No, mademoiselle,” said Monte Cristo, astonished at the coolness and +freedom of the question. “She is a poor unfortunate Greek left under my +care.” + +“And what is her name?” + +“Haydée,” replied Monte Cristo. + +“A Greek?” murmured the Count of Morcerf. + +“Yes, indeed, count,” said Madame Danglars; “and tell me, did you ever +see at the court of Ali Tepelini, whom you so gloriously and valiantly +served, a more exquisite beauty or richer costume?” + +“Did I hear rightly, monsieur,” said Monte Cristo “that you served at +Yanina?” + +“I was inspector-general of the pasha’s troops,” replied Morcerf; “and +it is no secret that I owe my fortune, such as it is, to the liberality +of the illustrious Albanese chief.” + +“But look!” exclaimed Madame Danglars. + +“Where?” stammered Morcerf. + +“There,” said Monte Cristo placing his arms around the count, and +leaning with him over the front of the box, just as Haydée, whose eyes +were occupied in examining the theatre in search of her guardian, +perceived his pale features close to Morcerf’s face. It was as if the +young girl beheld the head of Medusa. She bent forwards as though to +assure herself of the reality of what she saw, then, uttering a faint +cry, threw herself back in her seat. The sound was heard by the people +about Ali, who instantly opened the box-door. + +“Why, count,” exclaimed Eugénie, “what has happened to your ward? she +seems to have been taken suddenly ill. + +“Very probably,” answered the count. “But do not be alarmed on her +account. Haydée’s nervous system is delicately organized, and she is +peculiarly susceptible to the odors even of flowers—nay, there are some +which cause her to faint if brought into her presence. However,” +continued Monte Cristo, drawing a small phial from his pocket, “I have +an infallible remedy.” + +So saying, he bowed to the baroness and her daughter, exchanged a +parting shake of the hand with Debray and the count, and left Madame +Danglars’ box. Upon his return to Haydée he found her still very pale. +As soon as she saw him she seized his hand; her own hands were moist +and icy cold. + +“Who was it you were talking with over there?” she asked. + +“With the Count of Morcerf,” answered Monte Cristo. “He tells me he +served your illustrious father, and that he owes his fortune to him.” + +“Wretch!” exclaimed Haydée, her eyes flashing with rage; “he sold my +father to the Turks, and the fortune he boasts of was the price of his +treachery! Did not you know that, my dear lord?” + +“Something of this I heard in Epirus,” said Monte Cristo; “but the +particulars are still unknown to me. You shall relate them to me, my +child. They are, no doubt, both curious and interesting.” + +“Yes, yes; but let us go. I feel as though it would kill me to remain +long near that dreadful man.” + +So saying, Haydée arose, and wrapping herself in her burnouse of white +cashmere embroidered with pearls and coral, she hastily quitted the box +at the moment when the curtain was rising upon the fourth act. + +“Do you observe,” said the Countess G—— to Albert, who had returned to +her side, “that man does nothing like other people; he listens most +devoutly to the third act of _Robert le Diable_, and when the fourth +begins, takes his departure.” + + + + Chapter 54. A Flurry in Stocks + +Some days after this meeting, Albert de Morcerf visited the Count of +Monte Cristo at his house in the Champs-Élysées, which had already +assumed that palace-like appearance which the count’s princely fortune +enabled him to give even to his most temporary residences. He came to +renew the thanks of Madame Danglars which had been already conveyed to +the count through the medium of a letter, signed “Baronne Danglars, +_née_ Hermine de Servieux.” + +Albert was accompanied by Lucien Debray, who, joining in his friend’s +conversation, added some passing compliments, the source of which the +count’s talent for finesse easily enabled him to guess. He was +convinced that Lucien’s visit was due to a double feeling of curiosity, +the larger half of which sentiment emanated from the Rue de la Chaussée +d’Antin. In short, Madame Danglars, not being able personally to +examine in detail the domestic economy and household arrangements of a +man who gave away horses worth 30,000 francs and who went to the opera +with a Greek slave wearing diamonds to the amount of a million of +money, had deputed those eyes, by which she was accustomed to see, to +give her a faithful account of the mode of life of this +incomprehensible person. But the count did not appear to suspect that +there could be the slightest connection between Lucien’s visit and the +curiosity of the baroness. + +“You are in constant communication with the Baron Danglars?” the count +inquired of Albert de Morcerf. + +“Yes, count, you know what I told you?” + +“All remains the same, then, in that quarter?” + +“It is more than ever a settled thing,” said Lucien,—and, considering +that this remark was all that he was at that time called upon to make, +he adjusted the glass to his eye, and biting the top of his gold headed +cane, began to make the tour of the apartment, examining the arms and +the pictures. + +“Ah,” said Monte Cristo “I did not expect that the affair would be so +promptly concluded.” + +“Oh, things take their course without our assistance. While we are +forgetting them, they are falling into their appointed order; and when, +again, our attention is directed to them, we are surprised at the +progress they have made towards the proposed end. My father and M. +Danglars served together in Spain, my father in the army and M. +Danglars in the commissariat department. It was there that my father, +ruined by the revolution, and M. Danglars, who never had possessed any +patrimony, both laid the foundations of their different fortunes.” + +“Yes,” said Monte Cristo “I think M. Danglars mentioned that in a visit +which I paid him; and,” continued he, casting a side-glance at Lucien, +who was turning over the leaves of an album, “Mademoiselle Eugénie is +pretty—I think I remember that to be her name.” + +“Very pretty, or rather, very beautiful,” replied Albert, “but of that +style of beauty which I do not appreciate; I am an ungrateful fellow.” + +“You speak as if you were already her husband.” + +“Ah,” returned Albert, in his turn looking around to see what Lucien +was doing. + +“Really,” said Monte Cristo, lowering his voice, “you do not appear to +me to be very enthusiastic on the subject of this marriage.” + +“Mademoiselle Danglars is too rich for me,” replied Morcerf, “and that +frightens me.” + +“Bah,” exclaimed Monte Cristo, “that’s a fine reason to give. Are you +not rich yourself?” + +“My father’s income is about 50,000 francs per annum; and he will give +me, perhaps, ten or twelve thousand when I marry.” + +“That, perhaps, might not be considered a large sum, in Paris +especially,” said the count; “but everything does not depend on wealth, +and it is a fine thing to have a good name, and to occupy a high +station in society. Your name is celebrated, your position magnificent; +and then the Comte de Morcerf is a soldier, and it is pleasing to see +the integrity of a Bayard united to the poverty of a Duguesclin; +disinterestedness is the brightest ray in which a noble sword can +shine. As for me, I consider the union with Mademoiselle Danglars a +most suitable one; she will enrich you, and you will ennoble her.” + +Albert shook his head, and looked thoughtful. + +“There is still something else,” said he. + +“I confess,” observed Monte Cristo, “that I have some difficulty in +comprehending your objection to a young lady who is both rich and +beautiful.” + +“Oh,” said Morcerf, “this repugnance, if repugnance it may be called, +is not all on my side.” + +“Whence can it arise, then? for you told me your father desired the +marriage.” + +“It is my mother who dissents; she has a clear and penetrating +judgment, and does not smile on the proposed union. I cannot account +for it, but she seems to entertain some prejudice against the +Danglars.” + +30107m + + + +“Ah,” said the count, in a somewhat forced tone, “that may be easily +explained; the Comtesse de Morcerf, who is aristocracy and refinement +itself, does not relish the idea of being allied by your marriage with +one of ignoble birth; that is natural enough.” + +“I do not know if that is her reason,” said Albert, “but one thing I do +know, that if this marriage be consummated, it will render her quite +miserable. There was to have been a meeting six weeks ago in order to +talk over and settle the affair; but I had such a sudden attack of +indisposition——” + +“Real?” interrupted the count, smiling. + +“Oh, real enough, from anxiety doubtless,—at any rate they postponed +the matter for two months. There is no hurry, you know. I am not yet +twenty-one, and Eugénie is only seventeen; but the two months expire +next week. It must be done. My dear count, you cannot imagine how my +mind is harassed. How happy you are in being exempt from all this!” + +“Well, and why should not you be free, too? What prevents you from +being so?” + +“Oh, it will be too great a disappointment to my father if I do not +marry Mademoiselle Danglars.” + +“Marry her then,” said the count, with a significant shrug of the +shoulders. + +“Yes,” replied Morcerf, “but that will plunge my mother into positive +grief.” + +“Then do not marry her,” said the count. + +“Well, I shall see. I will try and think over what is the best thing to +be done; you will give me your advice, will you not, and if possible +extricate me from my unpleasant position? I think, rather than give +pain to my dear mother, I would run the risk of offending the count.” + +Monte Cristo turned away; he seemed moved by this last remark. + +“Ah,” said he to Debray, who had thrown himself into an easy-chair at +the farthest extremity of the salon, and who held a pencil in his right +hand and an account book in his left, “what are you doing there? Are +you making a sketch after Poussin?” + +“Oh, no,” was the tranquil response; “I am too fond of art to attempt +anything of that sort. I am doing a little sum in arithmetic.” + +“In arithmetic?” + +“Yes; I am calculating—by the way, Morcerf, that indirectly concerns +you—I am calculating what the house of Danglars must have gained by the +last rise in Haiti bonds; from 206 they have risen to 409 in three +days, and the prudent banker had purchased at 206; therefore he must +have made 300,000 livres.” + +“That is not his biggest scoop,” said Morcerf; “did he not make a +million in Spaniards this last year?” + +“My dear fellow,” said Lucien, “here is the Count of Monte Cristo, who +will say to you, as the Italians do,— + + “‘Denaro e santità, + + Metà della metà.’9 + + +“When they tell me such things, I only shrug my shoulders and say +nothing.” + +“But you were speaking of Haitians?” said Monte Cristo. + +“Ah, Haitians,—that is quite another thing! Haitians are the _écarté_ +of French stock-jobbing. We may like bouillotte, delight in whist, be +enraptured with boston, and yet grow tired of them all; but we always +come back to _écarté_—it is not only a game, it is a _hors-d’œuvre_! M. +Danglars sold yesterday at 405, and pockets 300,000 francs. Had he but +waited till today, the price would have fallen to 205, and instead of +gaining 300,000 francs, he would have lost 20 or 25,000.” + +“And what has caused the sudden fall from 409 to 206?” asked Monte +Cristo. “I am profoundly ignorant of all these stock-jobbing +intrigues.” + +“Because,” said Albert, laughing, “one piece of news follows another, +and there is often great dissimilarity between them.” + +“Ah,” said the count, “I see that M. Danglars is accustomed to play at +gaining or losing 300,000 francs in a day; he must be enormously rich.” + +“It is not he who plays!” exclaimed Lucien; “it is Madame Danglars; she +is indeed daring.” + +“But you who are a reasonable being, Lucien, and who knows how little +dependence is to be placed on the news, since you are at the +fountain-head, surely you ought to prevent it,” said Morcerf, with a +smile. + +“How can I, if her husband fails in controlling her?” asked Lucien; +“you know the character of the baroness—no one has any influence with +her, and she does precisely what she pleases.” + +“Ah, if I were in your place——” said Albert. + +“Well?” + +“I would reform her; it would be rendering a service to her future +son-in-law.” + +“How would you set about it?” + +“Ah, that would be easy enough—I would give her a lesson.” + +“A lesson?” + +“Yes. Your position as secretary to the minister renders your authority +great on the subject of political news; you never open your mouth but +the stockbrokers immediately stenograph your words. Cause her to lose a +hundred thousand francs, and that would teach her prudence.” + +“I do not understand,” stammered Lucien. + +“It is very clear, notwithstanding,” replied the young man, with an +artlessness wholly free from affectation; “tell her some fine morning +an unheard-of piece of intelligence—some telegraphic despatch, of which +you alone are in possession; for instance, that Henri IV. was seen +yesterday at Gabrielle’s. That would boom the market; she will buy +heavily, and she will certainly lose when Beauchamp announces the +following day, in his gazette, ‘The report circulated by some usually +well-informed persons that the king was seen yesterday at Gabrielle’s +house, is totally without foundation. We can positively assert that his +majesty did not quit the Pont-Neuf.’” + +Lucien half smiled. Monte Cristo, although apparently indifferent, had +not lost one word of this conversation, and his penetrating eye had +even read a hidden secret in the embarrassed manner of the secretary. +This embarrassment had completely escaped Albert, but it caused Lucien +to shorten his visit; he was evidently ill at ease. The count, in +taking leave of him, said something in a low voice, to which he +answered, “Willingly, count; I accept.” The count returned to young +Morcerf. + +“Do you not think, on reflection,” said he to him, “that you have done +wrong in thus speaking of your mother-in-law in the presence of M. +Debray?” + +“My dear count,” said Morcerf, “I beg of you not to apply that title so +prematurely.” + +“Now, speaking without any exaggeration, is your mother really so very +much averse to this marriage?” + +“So much so that the baroness very rarely comes to the house, and my +mother, has not, I think, visited Madame Danglars twice in her whole +life.” + +“Then,” said the count, “I am emboldened to speak openly to you. M. +Danglars is my banker; M. de Villefort has overwhelmed me with +politeness in return for a service which a casual piece of good fortune +enabled me to render him. I predict from all this an avalanche of +dinners and routs. Now, in order not to presume on this, and also to be +beforehand with them, I have, if agreeable to you, thought of inviting +M. and Madame Danglars, and M. and Madame de Villefort, to my +country-house at Auteuil. If I were to invite you and the Count and +Countess of Morcerf to this dinner, I should give it the appearance of +being a matrimonial meeting, or at least Madame de Morcerf would look +upon the affair in that light, especially if Baron Danglars did me the +honor to bring his daughter. In that case your mother would hold me in +aversion, and I do not at all wish that; on the contrary, I desire to +stand high in her esteem.” + +“Indeed, count,” said Morcerf, “I thank you sincerely for having used +so much candor towards me, and I gratefully accept the exclusion which +you propose. You say you desire my mother’s good opinion; I assure you +it is already yours to a very unusual extent.” + +30111m + + + +“Do you think so?” said Monte Cristo, with interest. + +“Oh, I am sure of it; we talked of you an hour after you left us the +other day. But to return to what we were saying. If my mother could +know of this attention on your part—and I will venture to tell her—I am +sure that she will be most grateful to you; it is true that my father +will be equally angry.” The count laughed. + +“Well,” said he to Morcerf, “but I think your father will not be the +only angry one; M. and Madame Danglars will think me a very +ill-mannered person. They know that I am intimate with you—that you +are, in fact; one of the oldest of my Parisian acquaintances—and they +will not find you at my house; they will certainly ask me why I did not +invite you. Be sure to provide yourself with some previous engagement +which shall have a semblance of probability, and communicate the fact +to me by a line in writing. You know that with bankers nothing but a +written document will be valid.” + +“I will do better than that,” said Albert; “my mother is wishing to go +to the sea-side—what day is fixed for your dinner?” + +“Saturday.” + +“This is Tuesday—well, tomorrow evening we leave, and the day after we +shall be at Tréport. Really, count, you have a delightful way of +setting people at their ease.” + +“Indeed, you give me more credit than I deserve; I only wish to do what +will be agreeable to you, that is all.” + +“When shall you send your invitations?” + +“This very day.” + +“Well, I will immediately call on M. Danglars, and tell him that my +mother and myself must leave Paris tomorrow. I have not seen you, +consequently I know nothing of your dinner.” + +“How foolish you are! Have you forgotten that M. Debray has just seen +you at my house?” + +“Ah, true.” + +“Fix it this way. I have seen you, and invited you without any +ceremony, when you instantly answered that it would be impossible for +you to accept, as you were going to Tréport.” + +“Well, then, that is settled; but you will come and call on my mother +before tomorrow?” + +“Before tomorrow?—that will be a difficult matter to arrange, besides, +I shall just be in the way of all the preparations for departure.” + +“Well, you can do better. You were only a charming man before, but, if +you accede to my proposal, you will be adorable.” + +“What must I do to attain such sublimity?” + +“You are today free as air—come and dine with me; we shall be a small +party—only yourself, my mother, and I. You have scarcely seen my +mother; you shall have an opportunity of observing her more closely. +She is a remarkable woman, and I only regret that there does not exist +another like her, about twenty years younger; in that case, I assure +you, there would very soon be a Countess and Viscountess of Morcerf. As +to my father, you will not see him; he is officially engaged, and dines +with the chief referendary. We will talk over our travels; and you, who +have seen the whole world, will relate your adventures—you shall tell +us the history of the beautiful Greek who was with you the other night +at the Opera, and whom you call your slave, and yet treat like a +princess. We will talk Italian and Spanish. Come, accept my invitation, +and my mother will thank you.” + +“A thousand thanks,” said the count, “your invitation is most gracious, +and I regret exceedingly that it is not in my power to accept it. I am +not so much at liberty as you suppose; on the contrary, I have a most +important engagement.” + +“Ah, take care, you were teaching me just now how, in case of an +invitation to dinner, one might creditably make an excuse. I require +the proof of a pre-engagement. I am not a banker, like M. Danglars, but +I am quite as incredulous as he is.” + +“I am going to give you a proof,” replied the count, and he rang the +bell. + +“Humph,” said Morcerf, “this is the second time you have refused to +dine with my mother; it is evident that you wish to avoid her.” + +Monte Cristo started. “Oh, you do not mean that,” said he; “besides, +here comes the confirmation of my assertion.” + +Baptistin entered, and remained standing at the door. + +“I had no previous knowledge of your visit, had I?” + +“Indeed, you are such an extraordinary person, that I would not answer +for it.” + +“At all events, I could not guess that you would invite me to dinner.” + +“Probably not.” + +“Well, listen, Baptistin, what did I tell you this morning when I +called you into my laboratory?” + +“To close the door against visitors as soon as the clock struck five,” +replied the valet. + +“What then?” + +“Ah, my dear count,” said Albert. + +“No, no, I wish to do away with that mysterious reputation that you +have given me, my dear viscount; it is tiresome to be always acting +Manfred. I wish my life to be free and open. Go on, Baptistin.” + +“Then to admit no one except Major Bartolomeo Cavalcanti and his son.” + +“You hear—Major Bartolomeo Cavalcanti—a man who ranks amongst the most +ancient nobility of Italy, whose name Dante has celebrated in the tenth +canto of _The Inferno_, you remember it, do you not? Then there is his +son, Andrea, a charming young man, about your own age, viscount, +bearing the same title as yourself, and who is making his entry into +the Parisian world, aided by his father’s millions. The major will +bring his son with him this evening, the _contino_, as we say in Italy; +he confides him to my care. If he proves himself worthy of it, I will +do what I can to advance his interests. You will assist me in the work, +will you not?” + +“Most undoubtedly. This Major Cavalcanti is an old friend of yours, +then?” + +“By no means. He is a perfect nobleman, very polite, modest, and +agreeable, such as may be found constantly in Italy, descendants of +very ancient families. I have met him several times at Florence, +Bologna and Lucca, and he has now communicated to me the fact of his +arrival in Paris. The acquaintances one makes in travelling have a sort +of claim on one; they everywhere expect to receive the same attention +which you once paid them by chance, as though the civilities of a +passing hour were likely to awaken any lasting interest in favor of the +man in whose society you may happen to be thrown in the course of your +journey. This good Major Cavalcanti is come to take a second view of +Paris, which he only saw in passing through in the time of the Empire, +when he was on his way to Moscow. I shall give him a good dinner, he +will confide his son to my care, I will promise to watch over him, I +shall let him follow in whatever path his folly may lead him, and then +I shall have done my part.” + +“Certainly; I see you are a model Mentor,” said Albert “Good-bye, we +shall return on Sunday. By the way, I have received news of Franz.” + +“Have you? Is he still amusing himself in Italy?” + +“I believe so; however, he regrets your absence extremely. He says you +were the sun of Rome, and that without you all appears dark and cloudy; +I do not know if he does not even go so far as to say that it rains.” + +“His opinion of me is altered for the better, then?” + +“No, he still persists in looking upon you as the most incomprehensible +and mysterious of beings.” + +“He is a charming young man,” said Monte Cristo “and I felt a lively +interest in him the very first evening of my introduction, when I met +him in search of a supper, and prevailed upon him to accept a portion +of mine. He is, I think, the son of General d’Épinay?” + +“He is.” + +“The same who was so shamefully assassinated in 1815?” + +“By the Bonapartists.” + +“Yes. Really I like him extremely; is there not also a matrimonial +engagement contemplated for him?” + +“Yes, he is to marry Mademoiselle de Villefort.” + +“Indeed?” + +30115m + + + +“And you know I am to marry Mademoiselle Danglars,” said Albert, +laughing. + +“You smile.” + +“Yes.” + +“Why do you do so?” + +“I smile because there appears to me to be about as much inclination +for the consummation of the engagement in question as there is for my +own. But really, my dear count, we are talking as much of women as they +do of us; it is unpardonable.” + +Albert rose. + +“Are you going?” + +“Really, that is a good idea!—two hours have I been boring you to death +with my company, and then you, with the greatest politeness, ask me if +I am going. Indeed, count, you are the most polished man in the world. +And your servants, too, how very well behaved they are; there is quite +a style about them. Monsieur Baptistin especially; I could never get +such a man as that. My servants seem to imitate those you sometimes see +in a play, who, because they have only a word or two to say, aquit +themselves in the most awkward manner possible. Therefore, if you part +with M. Baptistin, give me the refusal of him.” + +“By all means.” + +“That is not all; give my compliments to your illustrious Luccanese, +Cavalcante of the Cavalcanti; and if by any chance he should be wishing +to establish his son, find him a wife very rich, very noble on her +mother’s side at least, and a baroness in right of her father, I will +help you in the search.” + +“Ah, ha; you will do as much as that, will you?” + +“Yes.” + +“Well, really, nothing is certain in this world.” + +“Oh, count, what a service you might render me! I should like you a +hundred times better if, by your intervention, I could manage to remain +a bachelor, even were it only for ten years.” + +“Nothing is impossible,” gravely replied Monte Cristo; and taking leave +of Albert, he returned into the house, and struck the gong three times. +Bertuccio appeared. + +“Monsieur Bertuccio, you understand that I intend entertaining company +on Saturday at Auteuil.” Bertuccio slightly started. “I shall require +your services to see that all be properly arranged. It is a beautiful +house, or at all events may be made so.” + +“There must be a good deal done before it can deserve that title, your +excellency, for the tapestried hangings are very old.” + +“Let them all be taken away and changed, then, with the exception of +the sleeping-chamber which is hung with red damask; you will leave that +exactly as it is.” Bertuccio bowed. “You will not touch the garden +either; as to the yard, you may do what you please with it; I should +prefer that being altered beyond all recognition.” + +“I will do everything in my power to carry out your wishes, your +excellency. I should be glad, however, to receive your excellency’s +commands concerning the dinner.” + +“Really, my dear M. Bertuccio,” said the count, “since you have been in +Paris, you have become quite nervous, and apparently out of your +element; you no longer seem to understand me.” + +“But surely your excellency will be so good as to inform me whom you +are expecting to receive?” + +“I do not yet know myself, neither is it necessary that you should do +so. ‘Lucullus dines with Lucullus,’ that is quite sufficient.” + +Bertuccio bowed, and left the room. + + + + Chapter 55. Major Cavalcanti + +Both the count and Baptistin had told the truth when they announced to +Morcerf the proposed visit of the major, which had served Monte Cristo +as a pretext for declining Albert’s invitation. Seven o’clock had just +struck, and M. Bertuccio, according to the command which had been given +him, had two hours before left for Auteuil, when a cab stopped at the +door, and after depositing its occupant at the gate, immediately +hurried away, as if ashamed of its employment. The visitor was about +fifty-two years of age, dressed in one of the green surtouts, +ornamented with black frogs, which have so long maintained their +popularity all over Europe. He wore trousers of blue cloth, boots +tolerably clean, but not of the brightest polish, and a little too +thick in the soles, buckskin gloves, a hat somewhat resembling in shape +those usually worn by the gendarmes, and a black cravat striped with +white, which, if the proprietor had not worn it of his own free will, +might have passed for a halter, so much did it resemble one. Such was +the picturesque costume of the person who rang at the gate, and +demanded if it was not at No. 30 in the Avenue des Champs-Élysées that +the Count of Monte Cristo lived, and who, being answered by the porter +in the affirmative, entered, closed the gate after him, and began to +ascend the steps. + +The small and angular head of this man, his white hair and thick gray +moustaches, caused him to be easily recognized by Baptistin, who had +received an exact description of the expected visitor, and who was +awaiting him in the hall. Therefore, scarcely had the stranger time to +pronounce his name before the count was apprised of his arrival. He was +ushered into a simple and elegant drawing-room, and the count rose to +meet him with a smiling air. + +“Ah, my dear sir, you are most welcome; I was expecting you.” + +“Indeed,” said the Italian, “was your excellency then aware of my +visit?” + +“Yes; I had been told that I should see you today at seven o’clock.” + +“Then you have received full information concerning my arrival?” + +“Of course.” + +“Ah, so much the better, I feared this little precaution might have +been forgotten.” + +30119m + + + +“What precaution?” + +“That of informing you beforehand of my coming.” + +“Oh, no, it has not.” + +“But you are sure you are not mistaken.” + +“Very sure.” + +“It really was I whom your excellency expected at seven o’clock this +evening?” + +“I will prove it to you beyond a doubt.” + +“Oh, no, never mind that,” said the Italian; “it is not worth the +trouble.” + +“Yes, yes,” said Monte Cristo. His visitor appeared slightly uneasy. +“Let me see,” said the count; “are you not the Marquis Bartolomeo +Cavalcanti?” + +“Bartolomeo Cavalcanti,” joyfully replied the Italian; “yes, I am +really he.” + +“Ex-major in the Austrian service?” + +“Was I a major?” timidly asked the old soldier. + +“Yes,” said Monte Cristo “you were a major; that is the title the +French give to the post which you filled in Italy.” + +“Very good,” said the major, “I do not demand more, you understand——” + +“Your visit here today is not of your own suggestion, is it?” said +Monte Cristo. + +“No, certainly not.” + +“You were sent by some other person?” + +“Yes.” + +“By the excellent Abbé Busoni?” + +“Exactly so,” said the delighted major. + +“And you have a letter?” + +“Yes, there it is.” + +“Give it to me, then.” And Monte Cristo took the letter, which he +opened and read. The major looked at the count with his large staring +eyes, and then took a survey of the apartment, but his gaze almost +immediately reverted to the proprietor of the room. + +“Yes, yes, I see. ‘Major Cavalcanti, a worthy patrician of Lucca, a +descendant of the Cavalcanti of Florence,’” continued Monte Cristo, +reading aloud, “‘possessing an income of half a million.’” + +Monte Cristo raised his eyes from the paper, and bowed. + +“Half a million,” said he, “magnificent!” + +“Half a million, is it?” said the major. + +“Yes, in so many words; and it must be so, for the abbé knows correctly +the amount of all the largest fortunes in Europe.” + +“Be it half a million, then; but on my word of honor, I had no idea +that it was so much.” + +“Because you are robbed by your steward. You must make some reformation +in that quarter.” + +“You have opened my eyes,” said the Italian gravely; “I will show the +gentlemen the door.” + +Monte Cristo resumed the perusal of the letter: + +“‘And who only needs one thing more to make him happy.’” + +“Yes, indeed but one!” said the major with a sigh. + +“‘Which is to recover a lost and adored son.’” + +“A lost and adored son!” + +“‘Stolen away in his infancy, either by an enemy of his noble family or +by the gypsies.’” + +“At the age of five years!” said the major with a deep sigh, and +raising his eye to heaven. + +“Unhappy father,” said Monte Cristo. The count continued: + +“‘I have given him renewed life and hope, in the assurance that you +have the power of restoring the son whom he has vainly sought for +fifteen years.’” + +The major looked at the count with an indescribable expression of +anxiety. + +“I have the power of so doing,” said Monte Cristo. The major recovered +his self-possession. + +“So, then,” said he, “the letter was true to the end?” + +“Did you doubt it, my dear Monsieur Bartolomeo?” + +“No, indeed; certainly not; a good man, a man holding religious office, +as does the Abbé Busoni, could not condescend to deceive or play off a +joke; but your excellency has not read all.” + +“Ah, true,” said Monte Cristo “there is a postscript.” + +“Yes, yes,” repeated the major, “yes—there—is—a—postscript.” + +“‘In order to save Major Cavalcanti the trouble of drawing on his +banker, I send him a draft for 2,000 francs to defray his travelling +expenses, and credit on you for the further sum of 48,000 francs, which +you still owe me.’” + +The major awaited the conclusion of the postscript, apparently with +great anxiety. + +“Very good,” said the count. + +“He said ‘very good,’” muttered the major, “then—sir——” replied he. + +“Then what?” asked Monte Cristo. + +“Then the postscript——” + +“Well; what of the postscript?” + +“Then the postscript is as favorably received by you as the rest of the +letter?” + +“Certainly; the Abbé Busoni and myself have a small account open +between us. I do not remember if it is exactly 48,000 francs, which I +am still owing him, but I dare say we shall not dispute the difference. +You attached great importance, then, to this postscript, my dear +Monsieur Cavalcanti?” + +“I must explain to you,” said the major, “that, fully confiding in the +signature of the Abbé Busoni, I had not provided myself with any other +funds; so that if this resource had failed me, I should have found +myself very unpleasantly situated in Paris.” + +“Is it possible that a man of your standing should be embarrassed +anywhere?” said Monte Cristo. + +“Why, really I know no one,” said the major. + +“But then you yourself are known to others?” + +“Yes, I am known, so that——” + +“Proceed, my dear Monsieur Cavalcanti.” + +“So that you will remit to me these 48,000 francs?” + +“Certainly, at your first request.” The major’s eyes dilated with +pleasing astonishment. “But sit down,” said Monte Cristo; “really I do +not know what I have been thinking of—I have positively kept you +standing for the last quarter of an hour.” + +“Don’t mention it.” The major drew an armchair towards him, and +proceeded to seat himself. + +“Now,” said the count, “what will you take—a glass of sherry, port, or +Alicante?” + +“Alicante, if you please; it is my favorite wine.” + +“I have some that is very good. You will take a biscuit with it, will +you not?” + +“Yes, I will take a biscuit, as you are so obliging.” + +Monte Cristo rang; Baptistin appeared. The count advanced to meet him. + +“Well?” said he in a low voice. + +“The young man is here,” said the valet de chambre in the same tone. + +“Into what room did you take him?” + +“Into the blue drawing-room, according to your excellency’s orders.” + +“That’s right; now bring the Alicante and some biscuits.” + +Baptistin left the room. + +“Really,” said the major, “I am quite ashamed of the trouble I am +giving you.” + +“Pray don’t mention such a thing,” said the count. Baptistin re-entered +with glasses, wine, and biscuits. The count filled one glass, but in +the other he only poured a few drops of the ruby-colored liquid. The +bottle was covered with spiders’ webs, and all the other signs which +indicate the age of wine more truly than do wrinkles on a man’s face. +The major made a wise choice; he took the full glass and a biscuit. The +count told Baptistin to leave the plate within reach of his guest, who +began by sipping the Alicante with an expression of great satisfaction, +and then delicately steeped his biscuit in the wine. + +30123m + + + +“So, sir, you lived at Lucca, did you? You were rich, noble, held in +great esteem—had all that could render a man happy?” + +“All,” said the major, hastily swallowing his biscuit, “positively +all.” + +“And yet there was one thing wanting in order to complete your +happiness?” + +“Only one thing,” said the Italian. + +“And that one thing, your lost child.” + +“Ah,” said the major, taking a second biscuit, “that consummation of my +happiness was indeed wanting.” The worthy major raised his eyes to +heaven and sighed. + +“Let me hear, then,” said the count, “who this deeply regretted son +was; for I always understood you were a bachelor.” + +“That was the general opinion, sir,” said the major, “and I——” + +“Yes,” replied the count, “and you confirmed the report. A youthful +indiscretion, I suppose, which you were anxious to conceal from the +world at large?” + +The major recovered himself, and resumed his usual calm manner, at the +same time casting his eyes down, either to give himself time to compose +his countenance, or to assist his imagination, all the while giving an +under-look at the count, the protracted smile on whose lips still +announced the same polite curiosity. + +“Yes,” said the major, “I did wish this fault to be hidden from every +eye.” + +“Not on your own account, surely,” replied Monte Cristo; “for a man is +above that sort of thing?” + +“Oh, no, certainly not on my own account,” said the major with a smile +and a shake of the head. + +“But for the sake of the mother?” said the count. + +“Yes, for the mother’s sake—his poor mother!” cried the major, taking a +third biscuit. + +“Take some more wine, my dear Cavalcanti,” said the count, pouring out +for him a second glass of Alicante; “your emotion has quite overcome +you.” + +“His poor mother,” murmured the major, trying to get the lachrymal +gland in operation, so as to moisten the corner of his eye with a false +tear. + +“She belonged to one of the first families in Italy, I think, did she +not?” + +“She was of a noble family of Fiesole, count.” + +“And her name was——” + +“Do you desire to know her name——?” + +“Oh,” said Monte Cristo “it would be quite superfluous for you to tell +me, for I already know it.” + +“The count knows everything,” said the Italian, bowing. + +“Oliva Corsinari, was it not?” + +“Oliva Corsinari!” + +“A marchioness?” + +“A marchioness!” + +“And you married her at last, notwithstanding the opposition of her +family?” + +“Yes, that was the way it ended.” + +“And you have doubtless brought all your papers with you?” said Monte +Cristo. + +“What papers?” + +“The certificate of your marriage with Oliva Corsinari, and the +register of your child’s birth.” + +“The register of my child’s birth?” + +“The register of the birth of Andrea Cavalcanti—of your son; is not his +name Andrea?” + +“I believe so,” said the major. + +“What? You believe so?” + +“I dare not positively assert it, as he has been lost for so long a +time.” + +“Well, then,” said Monte Cristo “you have all the documents with you?” + +“Your excellency, I regret to say that, not knowing it was necessary to +come provided with these papers, I neglected to bring them.” + +“That is unfortunate,” returned Monte Cristo. + +“Were they, then, so necessary?” + +“They were indispensable.” + +The major passed his hand across his brow. “Ah, _perbacco_, +indispensable, were they?” + +“Certainly they were; supposing there were to be doubts raised as to +the validity of your marriage or the legitimacy of your child?” + +“True,” said the major, “there might be doubts raised.” + +“In that case your son would be very unpleasantly situated.” + +“It would be fatal to his interests.” + +“It might cause him to fail in some desirable matrimonial alliance.” + +“_O peccato!_” + +“You must know that in France they are very particular on these points; +it is not sufficient, as in Italy, to go to the priest and say, ‘We +love each other, and want you to marry us.’ Marriage is a civil affair +in France, and in order to marry in an orthodox manner you must have +papers which undeniably establish your identity.” + +“That is the misfortune! You see I have not these necessary papers.” + +“Fortunately, I have them, though,” said Monte Cristo. + +“You?” + +“Yes.” + +“You have them?” + +“I have them.” + +“Ah, indeed?” said the major, who, seeing the object of his journey +frustrated by the absence of the papers, feared also that his +forgetfulness might give rise to some difficulty concerning the 48,000 +francs—“ah, indeed, that is a fortunate circumstance; yes, that really +is lucky, for it never occurred to me to bring them.” + +“I do not at all wonder at it—one cannot think of everything; but, +happily, the Abbé Busoni thought for you.” + +“He is an excellent person.” + +“He is extremely prudent and thoughtful.” + +“He is an admirable man,” said the major; “and he sent them to you?” + +“Here they are.” + +The major clasped his hands in token of admiration. + +“You married Oliva Corsinari in the church of San Paolo del +Monte-Cattini; here is the priest’s certificate.” + +“Yes indeed, there it is truly,” said the Italian, looking on with +astonishment. + +“And here is Andrea Cavalcanti’s baptismal register, given by the curé +of Saravezza.” + +“All quite correct.” + +“Take these documents, then; they do not concern me. You will give them +to your son, who will, of course, take great care of them.” + +“I should think so, indeed! If he were to lose them——” + +“Well, and if he were to lose them?” said Monte Cristo. + +“In that case,” replied the major, “it would be necessary to write to +the curé for duplicates, and it would be some time before they could be +obtained.” + +“It would be a difficult matter to arrange,” said Monte Cristo. + +“Almost an impossibility,” replied the major. + +“I am very glad to see that you understand the value of these papers.” + +“I regard them as invaluable.” + +“Now,” said Monte Cristo “as to the mother of the young man——” + +“As to the mother of the young man——” repeated the Italian, with +anxiety. + +“As regards the Marchesa Corsinari——” + +“Really,” said the major, “difficulties seem to thicken upon us; will +she be wanted in any way?” + +“No, sir,” replied Monte Cristo; “besides, has she not——” + +“Yes, sir,” said the major, “she has——” + +30127m + + + +“Paid the last debt of nature?” + +“Alas, yes,” returned the Italian. + +“I knew that,” said Monte Cristo; “she has been dead these ten years.” + +“And I am still mourning her loss,” exclaimed the major, drawing from +his pocket a checked handkerchief, and alternately wiping first the +left and then the right eye. + +“What would you have?” said Monte Cristo; “we are all mortal. Now, you +understand, my dear Monsieur Cavalcanti, that it is useless for you to +tell people in France that you have been separated from your son for +fifteen years. Stories of gypsies, who steal children, are not at all +in vogue in this part of the world, and would not be believed. You sent +him for his education to a college in one of the provinces, and now you +wish him to complete his education in the Parisian world. That is the +reason which has induced you to leave Via Reggio, where you have lived +since the death of your wife. That will be sufficient.” + +“You think so?” + +“Certainly.” + +“Very well, then.” + +“If they should hear of the separation——” + +“Ah, yes; what could I say?” + +“That an unfaithful tutor, bought over by the enemies of your family——” + +“By the Corsinari?” + +“Precisely. Had stolen away this child, in order that your name might +become extinct.” + +“That is reasonable, since he is an only son.” + +“Well, now that all is arranged, do not let these newly awakened +remembrances be forgotten. You have, doubtless, already guessed that I +was preparing a surprise for you?” + +“An agreeable one?” asked the Italian. + +“Ah, I see the eye of a father is no more to be deceived than his +heart.” + +“Hum!” said the major. + +“Someone has told you the secret; or, perhaps, you guessed that he was +here.” + +“That who was here?” + +“Your child—your son—your Andrea!” + +“I did guess it,” replied the major with the greatest possible +coolness. “Then he is here?” + +“He is,” said Monte Cristo; “when the valet de chambre came in just +now, he told me of his arrival.” + +“Ah, very well, very well,” said the major, clutching the buttons of +his coat at each exclamation. + +“My dear sir,” said Monte Cristo, “I understand your emotion; you must +have time to recover yourself. I will, in the meantime, go and prepare +the young man for this much-desired interview, for I presume that he is +not less impatient for it than yourself.” + +“I should quite imagine that to be the case,” said Cavalcanti. + +“Well, in a quarter of an hour he shall be with you.” + +“You will bring him, then? You carry your goodness so far as even to +present him to me yourself?” + +“No; I do not wish to come between a father and son. Your interview +will be private. But do not be uneasy; even if the powerful voice of +nature should be silent, you cannot well mistake him; he will enter by +this door. He is a fine young man, of fair complexion—a little too +fair, perhaps—pleasing in manners; but you will see and judge for +yourself.” + +“By the way,” said the major, “you know I have only the 2,000 francs +which the Abbé Busoni sent me; this sum I have expended upon travelling +expenses, and——” + +“And you want money; that is a matter of course, my dear M. Cavalcanti. +Well, here are 8,000 francs on account.” + +The major’s eyes sparkled brilliantly. + +“It is 40,000 francs which I now owe you,” said Monte Cristo. + +“Does your excellency wish for a receipt?” said the major, at the same +time slipping the money into the inner pocket of his coat. + +“For what?” said the count. + +“I thought you might want it to show the Abbé Busoni.” + +“Well, when you receive the remaining 40,000, you shall give me a +receipt in full. Between honest men such excessive precaution is, I +think, quite unnecessary.” + +“Yes, so it is, between perfectly upright people.” + +“One word more,” said Monte Cristo. + +“Say on.” + +“You will permit me to make one remark?” + +“Certainly; pray do so.” + +“Then I should advise you to leave off wearing that style of dress.” + +“Indeed,” said the major, regarding himself with an air of complete +satisfaction. + +“Yes. It may be worn at Via Reggio; but that costume, however elegant +in itself, has long been out of fashion in Paris.” + +“That’s unfortunate.” + +“Oh, if you really are attached to your old mode of dress; you can +easily resume it when you leave Paris.” + +“But what shall I wear?” + +“What you find in your trunks.” + +“In my trunks? I have but one portmanteau.” + +“I dare say you have nothing else with you. What is the use of boring +one’s self with so many things? Besides an old soldier always likes to +march with as little baggage as possible.” + +“That is just the case—precisely so.” + +“But you are a man of foresight and prudence, therefore you sent your +luggage on before you. It has arrived at the Hôtel des Princes, Rue de +Richelieu. It is there you are to take up your quarters.” + +“Then, in these trunks——” + +“I presume you have given orders to your valet de chambre to put in all +you are likely to need,—your plain clothes and your uniform. On grand +occasions you must wear your uniform; that will look very well. Do not +forget your crosses. They still laugh at them in France, and yet always +wear them, for all that.” + +“Very well, very well,” said the major, who was in ecstasy at the +attention paid him by the count. + +“Now,” said Monte Cristo, “that you have fortified yourself against all +painful excitement, prepare yourself, my dear M. Cavalcanti, to meet +your lost Andrea.” + +Saying which Monte Cristo bowed, and disappeared behind the tapestry, +leaving the major fascinated beyond expression with the delightful +reception which he had received at the hands of the count. + + + + Chapter 56. Andrea Cavalcanti + +The Count of Monte Cristo entered the adjoining room, which Baptistin +had designated as the drawing-room, and found there a young man, of +graceful demeanor and elegant appearance, who had arrived in a cab +about half an hour previously. Baptistin had not found any difficulty +in recognizing the person who presented himself at the door for +admittance. He was certainly the tall young man with light hair, red +beard, black eyes, and brilliant complexion, whom his master had so +particularly described to him. When the count entered the room the +young man was carelessly stretched on a sofa, tapping his boot with the +gold-headed cane which he held in his hand. On perceiving the count he +rose quickly. + +“The Count of Monte Cristo, I believe?” said he. + +“Yes, sir, and I think I have the honor of addressing Count Andrea +Cavalcanti?” + +“Count Andrea Cavalcanti,” repeated the young man, accompanying his +words with a bow. + +“You are charged with a letter of introduction addressed to me, are you +not?” said the count. + +“I did not mention that, because the signature seemed to me so +strange.” + +“The letter signed ‘Sinbad the Sailor,’ is it not?” + +“Exactly so. Now, as I have never known any Sinbad, with the exception +of the one celebrated in the _Thousand and One Nights_——” + +“Well, it is one of his descendants, and a great friend of mine; he is +a very rich Englishman, eccentric almost to insanity, and his real name +is Lord Wilmore.” + +“Ah, indeed? Then that explains everything that is extraordinary,” said +Andrea. “He is, then, the same Englishman whom I met—at—ah—yes, indeed. +Well, monsieur, I am at your service.” + +“If what you say be true,” replied the count, smiling, “perhaps you +will be kind enough to give me some account of yourself and your +family?” + +“Certainly, I will do so,” said the young man, with a quickness which +gave proof of his ready invention. “I am (as you have said) the Count +Andrea Cavalcanti, son of Major Bartolomeo Cavalcanti, a descendant of +the Cavalcanti whose names are inscribed in the golden book at +Florence. Our family, although still rich (for my father’s income +amounts to half a million), has experienced many misfortunes, and I +myself was, at the age of five years, taken away by the treachery of my +tutor, so that for fifteen years I have not seen the author of my +existence. Since I have arrived at years of discretion and become my +own master, I have been constantly seeking him, but all in vain. At +length I received this letter from your friend, which states that my +father is in Paris, and authorizes me to address myself to you for +information respecting him.” + +“Really, all you have related to me is exceedingly interesting,” said +Monte Cristo, observing the young man with a gloomy satisfaction; “and +you have done well to conform in everything to the wishes of my friend +Sinbad; for your father is indeed here, and is seeking you.” + +The count from the moment of first entering the drawing-room, had not +once lost sight of the expression of the young man’s countenance; he +had admired the assurance of his look and the firmness of his voice; +but at these words, so natural in themselves, “Your father is indeed +here, and is seeking you,” young Andrea started, and exclaimed, “My +father? Is my father here?” + +“Most undoubtedly,” replied Monte Cristo; “your father, Major +Bartolomeo Cavalcanti.” The expression of terror which, for the moment, +had overspread the features of the young man, had now disappeared. + +“Ah, yes, that is the name, certainly. Major Bartolomeo Cavalcanti. And +you really mean to say; monsieur, that my dear father is here?” + +“Yes, sir; and I can even add that I have only just left his company. +The history which he related to me of his lost son touched me to the +quick; indeed, his griefs, hopes, and fears on that subject might +furnish material for a most touching and pathetic poem. At length, he +one day received a letter, stating that the abductors of his son now +offered to restore him, or at least to give notice where he might be +found, on condition of receiving a large sum of money, by way of +ransom. Your father did not hesitate an instant, and the sum was sent +to the frontier of Piedmont, with a passport signed for Italy. You were +in the south of France, I think?” + +“Yes,” replied Andrea, with an embarrassed air, “I was in the south of +France.” + +“A carriage was to await you at Nice?” + +“Precisely so; and it conveyed me from Nice to Genoa, from Genoa to +Turin, from Turin to Chambéry, from Chambéry to Pont-de-Beauvoisin, and +from Pont-de-Beauvoisin to Paris.” + +30133m + + + +“Indeed? Then your father ought to have met with you on the road, for +it is exactly the same route which he himself took, and that is how we +have been able to trace your journey to this place.” + +“But,” said Andrea, “if my father had met me, I doubt if he would have +recognized me; I must be somewhat altered since he last saw me.” + +“Oh, the voice of nature,” said Monte Cristo. + +“True,” interrupted the young man, “I had not looked upon it in that +light.” + +“Now,” replied Monte Cristo “there is only one source of uneasiness +left in your father’s mind, which is this—he is anxious to know how you +have been employed during your long absence from him, how you have been +treated by your persecutors, and if they have conducted themselves +towards you with all the deference due to your rank. Finally, he is +anxious to see if you have been fortunate enough to escape the bad +moral influence to which you have been exposed, and which is infinitely +more to be dreaded than any physical suffering; he wishes to discover +if the fine abilities with which nature had endowed you have been +weakened by want of culture; and, in short, whether you consider +yourself capable of resuming and retaining in the world the high +position to which your rank entitles you.” + +“Sir!” exclaimed the young man, quite astounded, “I hope no false +report——” + +“As for myself, I first heard you spoken of by my friend Wilmore, the +philanthropist. I believe he found you in some unpleasant position, but +do not know of what nature, for I did not ask, not being inquisitive. +Your misfortunes engaged his sympathies, so you see you must have been +interesting. He told me that he was anxious to restore you to the +position which you had lost, and that he would seek your father until +he found him. He did seek, and has found him, apparently, since he is +here now; and, finally, my friend apprised me of your coming, and gave +me a few other instructions relative to your future fortune. I am quite +aware that my friend Wilmore is peculiar, but he is sincere, and as +rich as a gold mine, consequently, he may indulge his eccentricities +without any fear of their ruining him, and I have promised to adhere to +his instructions. Now, sir, pray do not be offended at the question I +am about to put to you, as it comes in the way of my duty as your +patron. I would wish to know if the misfortunes which have happened to +you—misfortunes entirely beyond your control, and which in no degree +diminish my regard for you—I would wish to know if they have not, in +some measure, contributed to render you a stranger to the world in +which your fortune and your name entitle you to make a conspicuous +figure?” + +“Sir,” returned the young man, with a reassurance of manner, “make your +mind easy on this score. Those who took me from my father, and who +always intended, sooner or later, to sell me again to my original +proprietor, as they have now done, calculated that, in order to make +the most of their bargain, it would be politic to leave me in +possession of all my personal and hereditary worth, and even to +increase the value, if possible. I have, therefore, received a very +good education, and have been treated by these kidnappers very much as +the slaves were treated in Asia Minor, whose masters made them +grammarians, doctors, and philosophers, in order that they might fetch +a higher price in the Roman market.” + +Monte Cristo smiled with satisfaction; it appeared as if he had not +expected so much from M. Andrea Cavalcanti. + +“Besides,” continued the young man, “if there did appear some defect in +education, or offence against the established forms of etiquette, I +suppose it would be excused, in consideration of the misfortunes which +accompanied my birth, and followed me through my youth.” + +“Well,” said Monte Cristo in an indifferent tone, “you will do as you +please, count, for you are the master of your own actions, and are the +person most concerned in the matter, but if I were you, I would not +divulge a word of these adventures. Your history is quite a romance, +and the world, which delights in romances in yellow covers, strangely +mistrusts those which are bound in living parchment, even though they +be gilded like yourself. This is the kind of difficulty which I wished +to represent to you, my dear count. You would hardly have recited your +touching history before it would go forth to the world, and be deemed +unlikely and unnatural. You would be no longer a lost child found, but +you would be looked upon as an upstart, who had sprung up like a +mushroom in the night. You might excite a little curiosity, but it is +not everyone who likes to be made the centre of observation and the +subject of unpleasant remark.” + +“I agree with you, monsieur,” said the young man, turning pale, and, in +spite of himself, trembling beneath the scrutinizing look of his +companion, “such consequences would be extremely unpleasant.” + +“Nevertheless, you must not exaggerate the evil,” said Monte Cristo, +“for by endeavoring to avoid one fault you will fall into another. You +must resolve upon one simple and single line of conduct, and for a man +of your intelligence, this plan is as easy as it is necessary; you must +form honorable friendships, and by that means counteract the prejudice +which may attach to the obscurity of your former life.” + +Andrea visibly changed countenance. + +“I would offer myself as your surety and friendly adviser,” said Monte +Cristo, “did I not possess a moral distrust of my best friends, and a +sort of inclination to lead others to doubt them too; therefore, in +departing from this rule, I should (as the actors say) be playing a +part quite out of my line, and should, therefore, run the risk of being +hissed, which would be an act of folly.” + +“However, your excellency,” said Andrea, “in consideration of Lord +Wilmore, by whom I was recommended to you——” + +“Yes, certainly,” interrupted Monte Cristo; “but Lord Wilmore did not +omit to inform me, my dear M. Andrea, that the season of your youth was +rather a stormy one. Ah,” said the count, watching Andrea’s +countenance, “I do not demand any confession from you; it is precisely +to avoid that necessity that your father was sent for from Lucca. You +shall soon see him. He is a little stiff and pompous in his manner, and +he is disfigured by his uniform; but when it becomes known that he has +been for eighteen years in the Austrian service, all that will be +pardoned. We are not generally very severe with the Austrians. In +short, you will find your father a very presentable person, I assure +you.” + +“Ah, sir, you have given me confidence; it is so long since we were +separated, that I have not the least remembrance of him, and, besides, +you know that in the eyes of the world a large fortune covers all +defects.” + +“He is a millionaire—his income is 500,000 francs.” + +“Then,” said the young man, with anxiety, “I shall be sure to be placed +in an agreeable position.” + +“One of the most agreeable possible, my dear sir; he will allow you an +income of 50,000 livres per annum during the whole time of your stay in +Paris.” + +“Then in that case I shall always choose to remain there.” + +“You cannot control circumstances, my dear sir; ‘man proposes, and God +disposes.’” Andrea sighed. + +“But,” said he, “so long as I do remain in Paris, and nothing forces me +to quit it, do you mean to tell me that I may rely on receiving the sum +you just now mentioned to me?” + +“You may.” + +“Shall I receive it from my father?” asked Andrea, with some +uneasiness. + +“Yes, you will receive it from your father personally, but Lord Wilmore +will be the security for the money. He has, at the request of your +father, opened an account of 5,000 francs a month at M. Danglars’, +which is one of the safest banks in Paris.” + +“And does my father mean to remain long in Paris?” asked Andrea. + +“Only a few days,” replied Monte Cristo. “His service does not allow +him to absent himself more than two or three weeks together.” + +“Ah, my dear father!” exclaimed Andrea, evidently charmed with the idea +of his speedy departure. + +“Therefore,” said Monte Cristo feigning to mistake his +meaning—“therefore I will not, for another instant, retard the pleasure +of your meeting. Are you prepared to embrace your worthy father?” + +“I hope you do not doubt it.” + +30137m + + + +“Go, then, into the drawing-room, my young friend, where you will find +your father awaiting you.” + +Andrea made a low bow to the count, and entered the adjoining room. +Monte Cristo watched him till he disappeared, and then touched a spring +in a panel made to look like a picture, which, in sliding partly from +the frame, discovered to view a small opening, so cleverly contrived +that it revealed all that was passing in the drawing-room now occupied +by Cavalcanti and Andrea. The young man closed the door behind him, and +advanced towards the major, who had risen when he heard steps +approaching him. + +“Ah, my dear father!” said Andrea in a loud voice, in order that the +count might hear him in the next room, “is it really you?” + +“How do you do, my dear son?” said the major gravely. + +“After so many years of painful separation,” said Andrea, in the same +tone of voice, and glancing towards the door, “what a happiness it is +to meet again!” + +“Indeed it is, after so long a separation.” + +“Will you not embrace me, sir?” said Andrea. + +30139m + + + +“If you wish it, my son,” said the major; and the two men embraced each +other after the fashion of actors on the stage; that is to say, each +rested his head on the other’s shoulder. + +“Then we are once more reunited?” said Andrea. + +“Once more,” replied the major. + +“Never more to be separated?” + +“Why, as to that—I think, my dear son, you must be by this time so +accustomed to France as to look upon it almost as a second country.” + +“The fact is,” said the young man, “that I should be exceedingly +grieved to leave it.” + +“As for me, you must know I cannot possibly live out of Lucca; +therefore I shall return to Italy as soon as I can.” + +“But before you leave France, my dear father, I hope you will put me in +possession of the documents which will be necessary to prove my +descent.” + +“Certainly; I am come expressly on that account; it has cost me much +trouble to find you, but I had resolved on giving them into your hands, +and if I had to recommence my search, it would occupy all the few +remaining years of my life.” + +“Where are these papers, then?” + +“Here they are.” + +Andrea seized the certificate of his father’s marriage and his own +baptismal register, and after having opened them with all the eagerness +which might be expected under the circumstances, he read them with a +facility which proved that he was accustomed to similar documents, and +with an expression which plainly denoted an unusual interest in the +contents. When he had perused the documents, an indefinable expression +of pleasure lighted up his countenance, and looking at the major with a +most peculiar smile, he said, in very excellent Tuscan: + +“Then there is no longer any such thing, in Italy as being condemned to +the galleys?” + +The major drew himself up to his full height. + +“Why?—what do you mean by that question?” + +“I mean that if there were, it would be impossible to draw up with +impunity two such deeds as these. In France, my dear sir, half such a +piece of effrontery as that would cause you to be quickly despatched to +Toulon for five years, for change of air.” + +“Will you be good enough to explain your meaning?” said the major, +endeavoring as much as possible to assume an air of the greatest +majesty. + +“My dear M. Cavalcanti,” said Andrea, taking the major by the arm in a +confidential manner, “how much are you paid for being my father?” + +The major was about to speak, when Andrea continued, in a low voice: + +“Nonsense, I am going to set you an example of confidence, they give me +50,000 francs a year to be your son; consequently, you can understand +that it is not at all likely I shall ever deny my parent.” + +The major looked anxiously around him. + +“Make yourself easy, we are quite alone,” said Andrea; “besides, we are +conversing in Italian.” + +“Well, then,” replied the major, “they paid me 50,000 francs down.” + +“Monsieur Cavalcanti,” said Andrea, “do you believe in fairy tales?” + +“I used not to do so, but I really feel now almost obliged to have +faith in them.” + +“You have, then, been induced to alter your opinion; you have had some +proofs of their truth?” The major drew from his pocket a handful of +gold. + +“Most palpable proofs,” said he, “as you may perceive.” + +“You think, then, that I may rely on the count’s promises?” + +“Certainly I do.” + +“You are sure he will keep his word with me?” + +“To the letter, but at the same time, remember, we must continue to +play our respective parts. I, as a tender father——” + +“And I as a dutiful son, as they choose that I shall be descended from +you.” + +“Whom do you mean by they?” + +“_Ma foi_, I can hardly tell, but I was alluding to those who wrote the +letter; you received one, did you not?” + +“Yes.” + +“From whom?” + +“From a certain Abbé Busoni.” + +“Have you any knowledge of him?” + +“No, I have never seen him.” + +“What did he say in the letter?” + +“You will promise not to betray me?” + +“Rest assured of that; you well know that our interests are the same.” + +“Then read for yourself;” and the major gave a letter into the young +man’s hand. Andrea read in a low voice: + +“‘You are poor; a miserable old age awaits you. Would you like to +become rich, or at least independent? Set out immediately for Paris, +and demand of the Count of Monte Cristo, Avenue des Champs-Élysées, No. +30, the son whom you had by the Marchesa Corsinari, and who was taken +from you at five years of age. This son is named Andrea Cavalcanti. In +order that you may not doubt the kind intention of the writer of this +letter, you will find enclosed an order for 2,400 francs, payable in +Florence, at Signor Gozzi’s; also a letter of introduction to the Count +of Monte Cristo, on whom I give you a draft of 48,000 francs. Remember +to go to the count on the 26th May at seven o’clock in the evening. + + +“(Signed) ‘Abbé Busoni.’” + + +“It is the same.” + +“What do you mean?” said the major. + +“I was going to say that I received a letter almost to the same +effect.” + +“You?” + +“Yes.” + +“From the Abbé Busoni?” + +“No.” + +“From whom, then?” + +“From an Englishman, called Lord Wilmore, who takes the name of Sinbad +the Sailor.” + +“And of whom you have no more knowledge than I of the Abbé Busoni?” + +“You are mistaken; there I am ahead of you.” + +“You have seen him, then?” + +“Yes, once.” + +“Where?” + +“Ah, that is just what I cannot tell you; if I did, I should make you +as wise as myself, which it is not my intention to do.” + +“And what did the letter contain?” + +“Read it.” + +“‘You are poor, and your future prospects are dark and gloomy. Do you +wish for a name? should you like to be rich, and your own master?’” + + +“_Parbleu!_” said the young man; “was it possible there could be two +answers to such a question?” + +“‘Take the post-chaise which you will find waiting at the Porte de +Gênes, as you enter Nice; pass through Turin, Chambéry, and +Pont-de-Beauvoisin. Go to the Count of Monte Cristo, Avenue des +Champs-Élysées, on the 26th of May, at seven o’clock in the evening, +and demand of him your father. You are the son of the Marchese +Cavalcanti and the Marchesa Oliva Corsinari. The marquis will give you +some papers which will certify this fact, and authorize you to appear +under that name in the Parisian world. As to your rank, an annual +income of 50,000 livres will enable you to support it admirably. I +enclose a draft for 5,000 livres, payable on M. Ferrea, banker at Nice, +and also a letter of introduction to the Count of Monte Cristo, whom I +have directed to supply all your wants. + + +“‘Sinbad the Sailor.’” + + +“Humph,” said the major; “very good. You have seen the count, you say?” + +“I have only just left him.” + +“And has he conformed to all that the letter specified?” + +“He has.” + +“Do you understand it?” + +“Not in the least.” + +“There is a dupe somewhere.” + +“At all events, it is neither you nor I.” + +“Certainly not.” + +“Well, then——” + +“Why, it does not much concern us, do you think it does?” + +“No; I agree with you there. We must play the game to the end, and +consent to be blindfolded.” + +“Ah, you shall see; I promise you I will sustain my part to +admiration.” + +“I never once doubted your doing so.” Monte Cristo chose this moment +for re-entering the drawing-room. On hearing the sound of his +footsteps, the two men threw themselves in each other’s arms, and while +they were in the midst of this embrace, the count entered. + +“Well, marquis,” said Monte Cristo, “you appear to be in no way +disappointed in the son whom your good fortune has restored to you.” + +“Ah, your excellency, I am overwhelmed with delight.” + +“And what are your feelings?” said Monte Cristo, turning to the young +man. + +“As for me, my heart is overflowing with happiness.” + +“Happy father, happy son!” said the count. + +“There is only one thing which grieves me,” observed the major, “and +that is the necessity for my leaving Paris so soon.” + +“Ah, my dear M. Cavalcanti, I trust you will not leave before I have +had the honor of presenting you to some of my friends.” + +“I am at your service, sir,” replied the major. + +“Now, sir,” said Monte Cristo, addressing Andrea, “make your +confession.” + +“To whom?” + +“Tell M. Cavalcanti something of the state of your finances.” + +“_Ma foi!_ monsieur, you have touched upon a tender chord.” + +“Do you hear what he says, major?” + +“Certainly I do.” + +“But do you understand?” + +“I do.” + +“Your son says he requires money.” + +“Well, what would you have me do?” said the major. + +“You should furnish him with some of course,” replied Monte Cristo. + +“I?” + +“Yes, you,” said the count, at the same time advancing towards Andrea, +and slipping a packet of bank-notes into the young man’s hand. + +“What is this?” + +“It is from your father.” + +“From my father?” + +“Yes; did you not tell him just now that you wanted money? Well, then, +he deputes me to give you this.” + +“Am I to consider this as part of my income on account?” + +“No, it is for the first expenses of your settling in Paris.” + +“Ah, how good my dear father is!” + +“Silence,” said Monte Cristo; “he does not wish you to know that it +comes from him.” + +“I fully appreciate his delicacy,” said Andrea, cramming the notes +hastily into his pocket. + +“And now, gentlemen, I wish you good-morning,” said Monte Cristo. + +“And when shall we have the honor of seeing you again, your +excellency?” asked Cavalcanti. + +“Ah,” said Andrea, “when may we hope for that pleasure?” + +“On Saturday, if you will—Yes.—Let me see—Saturday—I am to dine at my +country house, at Auteuil, on that day, Rue de la Fontaine, No. 28. +Several persons are invited, and among others, M. Danglars, your +banker. I will introduce you to him, for it will be necessary he should +know you, as he is to pay your money.” + +“Full dress?” said the major, half aloud. + +“Oh, yes, certainly,” said the count; “uniform, cross, knee-breeches.” + +“And how shall I be dressed?” demanded Andrea. + +30145m + + + +“Oh, very simply; black trousers, patent leather boots, white +waistcoat, either a black or blue coat, and a long cravat. Go to Blin +or Véronique for your clothes. Baptistin will tell you where, if you do +not know their address. The less pretension there is in your attire, +the better will be the effect, as you are a rich man. If you mean to +buy any horses, get them of Devedeux, and if you purchase a phaeton, go +to Baptiste for it.” + +“At what hour shall we come?” asked the young man. + +“About half-past six.” + +“We will be with you at that time,” said the major. The two Cavalcanti +bowed to the count, and left the house. Monte Cristo went to the +window, and saw them crossing the street, arm in arm. + +“There go two miscreants;” said he, “it is a pity they are not really +related!” Then, after an instant of gloomy reflection, “Come, I will go +to see the Morrels,” said he; “I think that disgust is even more +sickening than hatred.” + +30147m + + + + + Chapter 57. In the Lucern Patch + +Our readers must now allow us to transport them again to the enclosure +surrounding M. de Villefort’s house, and, behind the gate, half +screened from view by the large chestnut-trees, which on all sides +spread their luxuriant branches, we shall find some people of our +acquaintance. This time Maximilian was the first to arrive. He was +intently watching for a shadow to appear among the trees, and awaiting +with anxiety the sound of a light step on the gravel walk. + +At length, the long-desired sound was heard, and instead of one figure, +as he had expected, he perceived that two were approaching him. The +delay had been occasioned by a visit from Madame Danglars and Eugénie, +which had been prolonged beyond the time at which Valentine was +expected. That she might not appear to fail in her promise to +Maximilian, she proposed to Mademoiselle Danglars that they should take +a walk in the garden, being anxious to show that the delay, which was +doubtless a cause of vexation to him, was not occasioned by any neglect +on her part. The young man, with the intuitive perception of a lover, +quickly understood the circumstances in which she was involuntarily +placed, and he was comforted. Besides, although she avoided coming +within speaking distance, Valentine arranged so that Maximilian could +see her pass and repass, and each time she went by, she managed, +unperceived by her companion, to cast an expressive look at the young +man, which seemed to say, “Have patience! You see it is not my fault.” + +And Maximilian was patient, and employed himself in mentally +contrasting the two girls,—one fair, with soft languishing eyes, a +figure gracefully bending like a weeping willow; the other a brunette, +with a fierce and haughty expression, and as straight as a poplar. It +is unnecessary to state that, in the eyes of the young man, Valentine +did not suffer by the contrast. In about half an hour the girls went +away, and Maximilian understood that Mademoiselle Danglars’ visit had +at last come to an end. In a few minutes Valentine re-entered the +garden alone. For fear that anyone should be observing her return, she +walked slowly; and instead of immediately directing her steps towards +the gate, she seated herself on a bench, and, carefully casting her +eyes around, to convince herself that she was not watched, she +presently arose, and proceeded quickly to join Maximilian. + +“Good-evening, Valentine,” said a well-known voice. + +“Good-evening, Maximilian; I know I have kept you waiting, but you saw +the cause of my delay.” + +“Yes, I recognized Mademoiselle Danglars. I was not aware that you were +so intimate with her.” + +“Who told you we were intimate, Maximilian?” + +“No one, but you appeared to be so. From the manner in which you walked +and talked together, one would have thought you were two school-girls +telling your secrets to each other.” + +“We were having a confidential conversation,” returned Valentine; “she +was owning to me her repugnance to the marriage with M. de Morcerf; and +I, on the other hand, was confessing to her how wretched it made me to +think of marrying M. d’Épinay.” + +“Dear Valentine!” + +“That will account to you for the unreserved manner which you observed +between me and Eugénie, as in speaking of the man whom I could not +love, my thoughts involuntarily reverted to him on whom my affections +were fixed.” + +“Ah, how good you are to say so, Valentine! You possess a quality which +can never belong to Mademoiselle Danglars. It is that indefinable charm +which is to a woman what perfume is to the flower and flavor to the +fruit, for the beauty of either is not the only quality we seek.” + +“It is your love which makes you look upon everything in that light.” + +“No, Valentine, I assure you such is not the case. I was observing you +both when you were walking in the garden, and, on my honor, without at +all wishing to depreciate the beauty of Mademoiselle Danglars, I cannot +understand how any man can really love her.” + +“The fact is, Maximilian, that I was there, and my presence had the +effect of rendering you unjust in your comparison.” + +“No; but tell me—it is a question of simple curiosity, and which was +suggested by certain ideas passing in my mind relative to Mademoiselle +Danglars——” + +“I dare say it is something disparaging which you are going to say. It +only proves how little indulgence we may expect from your sex,” +interrupted Valentine. + +“You cannot, at least, deny that you are very harsh judges of each +other.” + +“If we are so, it is because we generally judge under the influence of +excitement. But return to your question.” + +30151m + + + +“Does Mademoiselle Danglars object to this marriage with M. de Morcerf +on account of loving another?” + +“I told you I was not on terms of strict intimacy with Eugénie.” + +“Yes, but girls tell each other secrets without being particularly +intimate; own, now, that you did question her on the subject. Ah, I see +you are smiling.” + +“If you are already aware of the conversation that passed, the wooden +partition which interposed between us and you has proved but a slight +security.” + +“Come, what did she say?” + +“She told me that she loved no one,” said Valentine; “that she disliked +the idea of being married; that she would infinitely prefer leading an +independent and unfettered life; and that she almost wished her father +might lose his fortune, that she might become an artist, like her +friend, Mademoiselle Louise d’Armilly.” + +“Ah, you see——” + +“Well, what does that prove?” asked Valentine. + +“Nothing,” replied Maximilian. + +“Then why did you smile?” + +“Why, you know very well that you are reflecting on yourself, +Valentine.” + +“Do you want me to go away?” + +“Ah, no, no. But do not let us lose time; you are the subject on which +I wish to speak.” + +“True, we must be quick, for we have scarcely ten minutes more to pass +together.” + +“_Ma foi!_” said Maximilian, in consternation. + +“Yes, you are right; I am but a poor friend to you. What a life I cause +you to lead, poor Maximilian, you who are formed for happiness! I +bitterly reproach myself, I assure you.” + +“Well, what does it signify, Valentine, so long as I am satisfied, and +feel that even this long and painful suspense is amply repaid by five +minutes of your society, or two words from your lips? And I have also a +deep conviction that heaven would not have created two hearts, +harmonizing as ours do, and almost miraculously brought us together, to +separate us at last.” + +“Those are kind and cheering words. You must hope for us both, +Maximilian; that will make me at least partly happy.” + +“But why must you leave me so soon?” + +“I do not know particulars. I can only tell you that Madame de +Villefort sent to request my presence, as she had a communication to +make on which a part of my fortune depended. Let them take my fortune, +I am already too rich; and, perhaps, when they have taken it, they will +leave me in peace and quietness. You would love me as much if I were +poor, would you not, Maximilian?” + +“Oh, I shall always love you. What should I care for either riches or +poverty, if my Valentine was near me, and I felt certain that no one +could deprive me of her? But do you not fear that this communication +may relate to your marriage?” + +“I do not think that is the case.” + +“However it may be, Valentine, you must not be alarmed. I assure you +that, as long as I live, I shall never love anyone else!” + +“Do you think to reassure me when you say that, Maximilian?” + +“Pardon me, you are right. I am a brute. But I was going to tell you +that I met M. de Morcerf the other day.” + +“Well?” + +“Monsieur Franz is his friend, you know.” + +“What then?” + +“Monsieur de Morcerf has received a letter from Franz, announcing his +immediate return.” Valentine turned pale, and leaned her hand against +the gate. + +“Ah heavens, if it were that! But no, the communication would not come +through Madame de Villefort.” + +“Why not?” + +“Because—I scarcely know why—but it has appeared as if Madame de +Villefort secretly objected to the marriage, although she did not +choose openly to oppose it.” + +“Is it so? Then I feel as if I could adore Madame de Villefort.” + +“Do not be in such a hurry to do that,” said Valentine, with a sad +smile. + +“If she objects to your marrying M. d’Épinay, she would be all the more +likely to listen to any other proposition.” + +“No, Maximilian, it is not suitors to which Madame de Villefort +objects, it is marriage itself.” + +“Marriage? If she dislikes that so much, why did she ever marry +herself?” + +“You do not understand me, Maximilian. About a year ago, I talked of +retiring to a convent. Madame de Villefort, in spite of all the remarks +which she considered it her duty to make, secretly approved of the +proposition, my father consented to it at her instigation, and it was +only on account of my poor grandfather that I finally abandoned the +project. You can form no idea of the expression of that old man’s eye +when he looks at me, the only person in the world whom he loves, and, I +had almost said, by whom he is beloved in return. When he learned my +resolution, I shall never forget the reproachful look which he cast on +me, and the tears of utter despair which chased each other down his +lifeless cheeks. Ah, Maximilian, I experienced, at that moment, such +remorse for my intention, that, throwing myself at his feet, I +exclaimed,—‘Forgive me, pray forgive me, my dear grandfather; they may +do what they will with me, I will never leave you.’ When I had ceased +speaking, he thankfully raised his eyes to heaven, but without uttering +a word. Ah, Maximilian, I may have much to suffer, but I feel as if my +grandfather’s look at that moment would more than compensate for all.” + +“Dear Valentine, you are a perfect angel, and I am sure I do not know +what I—sabring right and left among the Bedouins—can have done to merit +your being revealed to me, unless, indeed, Heaven took into +consideration the fact that the victims of my sword were infidels. But +tell me what interest Madame de Villefort can have in your remaining +unmarried?” + +“Did I not tell you just now that I was rich, Maximilian—too rich? I +possess nearly 50,000 livres in right of my mother; my grandfather and +my grandmother, the Marquis and Marquise de Saint-Méran, will leave me +as much, and M. Noirtier evidently intends making me his heir. My +brother Edward, who inherits nothing from his mother, will, therefore, +be poor in comparison with me. Now, if I had taken the veil, all this +fortune would have descended to my father, and, in reversion, to his +son.” + +“Ah, how strange it seems that such a young and beautiful woman should +be so avaricious.” + +“It is not for herself that she is so, but for her son, and what you +regard as a vice becomes almost a virtue when looked at in the light of +maternal love.” + +“But could you not compromise matters, and give up a portion of your +fortune to her son?” + +“How could I make such a proposition, especially to a woman who always +professes to be so entirely disinterested?” + +“Valentine, I have always regarded our love in the light of something +sacred; consequently, I have covered it with the veil of respect, and +hid it in the innermost recesses of my soul. No human being, not even +my sister, is aware of its existence. Valentine, will you permit me to +make a confidant of a friend and reveal to him the love I bear you?” + +Valentine started. “A friend, Maximilian; and who is this friend? I +tremble to give my permission.” + +“Listen, Valentine. Have you never experienced for anyone that sudden +and irresistible sympathy which made you feel as if the object of it +had been your old and familiar friend, though, in reality, it was the +first time you had ever met? Nay, further, have you never endeavored to +recall the time, place, and circumstances of your former intercourse, +and failing in this attempt, have almost believed that your spirits +must have held converse with each other in some state of being anterior +to the present, and that you are only now occupied in a reminiscence of +the past?” + +“Yes.” + +“Well, that is precisely the feeling which I experienced when I first +saw that extraordinary man.” + +“Extraordinary, did you say?” + +“Yes.” + +“You have known him for some time, then?” + +“Scarcely longer than eight or ten days.” + +“And do you call a man your friend whom you have only known for eight +or ten days? Ah, Maximilian, I had hoped you set a higher value on the +title of friend.” + +“Your logic is most powerful, Valentine, but say what you will, I can +never renounce the sentiment which has instinctively taken possession +of my mind. I feel as if it were ordained that this man should be +associated with all the good which the future may have in store for me, +and sometimes it really seems as if his eye was able to see what was to +come, and his hand endowed with the power of directing events according +to his own will.” + +“He must be a prophet, then,” said Valentine, smiling. + +“Indeed,” said Maximilian, “I have often been almost tempted to +attribute to him the gift of prophecy; at all events, he has a +wonderful power of foretelling any future good.” + +“Ah,” said Valentine in a mournful tone, “do let me see this man, +Maximilian; he may tell me whether I shall ever be loved sufficiently +to make amends for all I have suffered.” + +“My poor girl, you know him already.” + +“I know him?” + +“Yes; it was he who saved the life of your step-mother and her son.” + +“The Count of Monte Cristo?” + +“The same.” + +“Ah,” cried Valentine, “he is too much the friend of Madame de +Villefort ever to be mine.” + +“The friend of Madame de Villefort! It cannot be; surely, Valentine, +you are mistaken?” + +“No, indeed, I am not; for I assure you, his power over our household +is almost unlimited. Courted by my step-mother, who regards him as the +epitome of human wisdom; admired by my father, who says he has never +before heard such sublime ideas so eloquently expressed; idolized by +Edward, who, notwithstanding his fear of the count’s large black eyes, +runs to meet him the moment he arrives, and opens his hand, in which he +is sure to find some delightful present,—M. de Monte Cristo appears to +exert a mysterious and almost uncontrollable influence over all the +members of our family.” + +“If such be the case, my dear Valentine, you must yourself have felt, +or at all events will soon feel, the effects of his presence. He meets +Albert de Morcerf in Italy—it is to rescue him from the hands of the +banditti; he introduces himself to Madame Danglars—it is that he may +give her a royal present; your step-mother and her son pass before his +door—it is that his Nubian may save them from destruction. This man +evidently possesses the power of influencing events, both as regards +men and things. I never saw more simple tastes united to greater +magnificence. His smile is so sweet when he addresses me, that I forget +it ever can be bitter to others. Ah, Valentine, tell me, if he ever +looked on you with one of those sweet smiles? if so, depend on it, you +will be happy.” + +“Me?” said the young girl, “he never even glances at me; on the +contrary, if I accidentally cross his path, he appears rather to avoid +me. Ah, he is not generous, neither does he possess that supernatural +penetration which you attribute to him, for if he did, he would have +perceived that I was unhappy; and if he had been generous, seeing me +sad and solitary, he would have used his influence to my advantage, and +since, as you say, he resembles the sun, he would have warmed my heart +with one of his life-giving rays. You say he loves you, Maximilian; how +do you know that he does? All would pay deference to an officer like +you, with a fierce moustache and a long sabre, but they think they may +crush a poor weeping girl with impunity.” + +“Ah, Valentine, I assure you you are mistaken.” + +“If it were otherwise—if he treated me diplomatically—that is to say, +like a man who wishes, by some means or other, to obtain a footing in +the house, so that he may ultimately gain the power of dictating to its +occupants—he would, if it had been but once, have honored me with the +smile which you extol so loudly; but no, he saw that I was unhappy, he +understood that I could be of no use to him, and therefore paid no +attention to me whatever. Who knows but that, in order to please Madame +de Villefort and my father, he may not persecute me by every means in +his power? It is not just that he should despise me so, without any +reason. Ah, forgive me,” said Valentine, perceiving the effect which +her words were producing on Maximilian: “I have done wrong, for I have +given utterance to thoughts concerning that man which I did not even +know existed in my heart. I do not deny the influence of which you +speak, or that I have not myself experienced it, but with me it has +been productive of evil rather than good.” + +“Well, Valentine,” said Morrel with a sigh, “we will not discuss the +matter further. I will not make a confidant of him.” + +“Alas!” said Valentine, “I see that I have given you pain. I can only +say how sincerely I ask pardon for having grieved you. But, indeed, I +am not prejudiced beyond the power of conviction. Tell me what this +Count of Monte Cristo has done for you.” + +30157m + + + +“I own that your question embarrasses me, Valentine, for I cannot say +that the count has rendered me any ostensible service. Still, as I have +already told you, I have an instinctive affection for him, the source +of which I cannot explain to you. Has the sun done anything for me? No; +he warms me with his rays, and it is by his light that I see +you—nothing more. Has such and such a perfume done anything for me? No; +its odor charms one of my senses—that is all I can say when I am asked +why I praise it. My friendship for him is as strange and unaccountable +as his for me. A secret voice seems to whisper to me that there must be +something more than chance in this unexpected reciprocity of +friendship. In his most simple actions, as well as in his most secret +thoughts, I find a relation to my own. You will perhaps smile at me +when I tell you that, ever since I have known this man, I have +involuntarily entertained the idea that all the good fortune which has +befallen me originated from him. However, I have managed to live thirty +years without this protection, you will say; but I will endeavor a +little to illustrate my meaning. He invited me to dine with him on +Saturday, which was a very natural thing for him to do. Well, what have +I learned since? That your mother and M. de Villefort are both coming +to this dinner. I shall meet them there, and who knows what future +advantages may result from the interview? This may appear to you to be +no unusual combination of circumstances; nevertheless, I perceive some +hidden plot in the arrangement—something, in fact, more than is +apparent on a casual view of the subject. I believe that this singular +man, who appears to fathom the motives of everyone, has purposely +arranged for me to meet M. and Madame de Villefort, and sometimes, I +confess, I have gone so far as to try to read in his eyes whether he +was in possession of the secret of our love.” + +“My good friend,” said Valentine, “I should take you for a visionary, +and should tremble for your reason, if I were always to hear you talk +in a strain similar to this. Is it possible that you can see anything +more than the merest chance in this meeting? Pray reflect a little. My +father, who never goes out, has several times been on the point of +refusing this invitation; Madame de Villefort, on the contrary, is +burning with the desire of seeing this extraordinary nabob in his own +house, therefore, she has with great difficulty prevailed on my father +to accompany her. No, no; it is as I have said, Maximilian,—there is no +one in the world of whom I can ask help but yourself and my +grandfather, who is little better than a corpse—no support to cling to +but my mother in heaven!” + +“I see that you are right, logically speaking,” said Maximilian; “but +the gentle voice which usually has such power over me fails to convince +me today.” + +“I feel the same as regards yourself.” said Valentine; “and I own that, +if you have no stronger proof to give me——” + +“I have another,” replied Maximilian; “but I fear you will deem it even +more absurd than the first.” + +“So much the worse,” said Valentine, smiling. + +“It is, nevertheless, conclusive to my mind. My ten years of service +have also confirmed my ideas on the subject of sudden inspirations, for +I have several times owed my life to a mysterious impulse which +directed me to move at once either to the right or to the left, in +order to escape the ball which killed the comrade fighting by my side, +while it left me unharmed.” + +“Dear Maximilian, why not attribute your escape to my constant prayers +for your safety? When you are away, I no longer pray for myself, but +for you.” + +30159m + + + +“Yes, since you have known me,” said Morrel, smiling; “but that cannot +apply to the time previous to our acquaintance, Valentine.” + +“You are very provoking, and will not give me credit for anything; but +let me hear this second proof, which you yourself own to be absurd.” + +“Well, look through this opening, and you will see the beautiful new +horse which I rode here.” + +“Ah! what a beautiful creature!” cried Valentine; “why did you not +bring him close to the gate, so that I could talk to him and pat him?” + +“He is, as you see, a very valuable animal,” said Maximilian. “You know +that my means are limited, and that I am what would be designated a man +of moderate pretensions. Well, I went to a horse dealer’s, where I saw +this magnificent horse, which I have named Médéah. I asked the price; +they told me it was 4,500 francs. I was, therefore, obliged to give it +up, as you may imagine, but I own I went away with rather a heavy +heart, for the horse had looked at me affectionately, had rubbed his +head against me and, when I mounted him, had pranced in the most +delightful way imaginable, so that I was altogether fascinated with +him. The same evening some friends of mine visited me,—M. de +Château-Renaud, M. Debray, and five or six other choice spirits, whom +you do not know, even by name. They proposed a game of _bouillotte_. I +never play, for I am not rich enough to afford to lose, or sufficiently +poor to desire to gain. But I was at my own house, you understand, so +there was nothing to be done but to send for the cards, which I did. + +“Just as they were sitting down to table, M. de Monte Cristo arrived. +He took his seat amongst them; they played, and I won. I am almost +ashamed to say that my gains amounted to 5,000 francs. We separated at +midnight. I could not defer my pleasure, so I took a cabriolet and +drove to the horse dealer’s. Feverish and excited, I rang at the door. +The person who opened it must have taken me for a madman, for I rushed +at once to the stable. Médéah was standing at the rack, eating his hay. +I immediately put on the saddle and bridle, to which operation he lent +himself with the best grace possible; then, putting the 4,500 francs +into the hands of the astonished dealer, I proceeded to fulfil my +intention of passing the night in riding in the Champs-Élysées. As I +rode by the count’s house I perceived a light in one of the windows, +and fancied I saw the shadow of his figure moving behind the curtain. +Now, Valentine, I firmly believe that he knew of my wish to possess +this horse, and that he lost expressly to give me the means of +procuring him.” + +“My dear Maximilian, you are really too fanciful; you will not love +even me long. A man who accustoms himself to live in such a world of +poetry and imagination must find far too little excitement in a common, +every-day sort of attachment such as ours. But they are calling me. Do +you hear?” + +“Ah, Valentine,” said Maximilian, “give me but one finger through this +opening in the grating, one finger, the littlest finger of all, that I +may have the happiness of kissing it.” + +“Maximilian, we said we would be to each other as two voices, two +shadows.” + +“As you will, Valentine.” + +“Shall you be happy if I do what you wish?” + +“Oh, yes!” + +Valentine mounted on a bench, and passed not only her finger but her +whole hand through the opening. Maximilian uttered a cry of delight, +and, springing forwards, seized the hand extended towards him, and +imprinted on it a fervent and impassioned kiss. The little hand was +then immediately withdrawn, and the young man saw Valentine hurrying +towards the house, as though she were almost terrified at her own +sensations. + + + + Chapter 58. M. Noirtier de Villefort + +We will now relate what was passing in the house of the king’s attorney +after the departure of Madame Danglars and her daughter, and during the +time of the conversation between Maximilian and Valentine, which we +have just detailed. + +M. de Villefort entered his father’s room, followed by Madame de +Villefort. Both of the visitors, after saluting the old man and +speaking to Barrois, a faithful servant, who had been twenty-five years +in his service, took their places on either side of the paralytic. + +M. Noirtier was sitting in an armchair, which moved upon casters, in +which he was wheeled into the room in the morning, and in the same way +drawn out again at night. He was placed before a large glass, which +reflected the whole apartment, and so, without any attempt to move, +which would have been impossible, he could see all who entered the room +and everything which was going on around him. M. Noirtier, although +almost as immovable as a corpse, looked at the new-comers with a quick +and intelligent expression, perceiving at once, by their ceremonious +courtesy, that they were come on business of an unexpected and official +character. + +Sight and hearing were the only senses remaining, and they, like two +solitary sparks, remained to animate the miserable body which seemed +fit for nothing but the grave; it was only, however, by means of one of +these senses that he could reveal the thoughts and feelings that still +occupied his mind, and the look by which he gave expression to his +inner life was like the distant gleam of a candle which a traveller +sees by night across some desert place, and knows that a living being +dwells beyond the silence and obscurity. + +Noirtier’s hair was long and white, and flowed over his shoulders; +while in his eyes, shaded by thick black lashes, was concentrated, as +it often happens with an organ which is used to the exclusion of the +others, all the activity, address, force, and intelligence which were +formerly diffused over his whole body; and so although the movement of +the arm, the sound of the voice, and the agility of the body, were +wanting, the speaking eye sufficed for all. He commanded with it; it +was the medium through which his thanks were conveyed. In short, his +whole appearance produced on the mind the impression of a corpse with +living eyes, and nothing could be more startling than to observe the +expression of anger or joy suddenly lighting up these organs, while the +rest of the rigid and marble-like features were utterly deprived of the +power of participation. Three persons only could understand this +language of the poor paralytic; these were Villefort, Valentine, and +the old servant of whom we have already spoken. But as Villefort saw +his father but seldom, and then only when absolutely obliged, and as he +never took any pains to please or gratify him when he was there, all +the old man’s happiness was centred in his granddaughter. Valentine, by +means of her love, her patience, and her devotion, had learned to read +in Noirtier’s look all the varied feelings which were passing in his +mind. To this dumb language, which was so unintelligible to others, she +answered by throwing her whole soul into the expression of her +countenance, and in this manner were the conversations sustained +between the blooming girl and the helpless invalid, whose body could +scarcely be called a living one, but who, nevertheless, possessed a +fund of knowledge and penetration, united with a will as powerful as +ever although clogged by a body rendered utterly incapable of obeying +its impulses. + +Valentine had solved the problem, and was able easily to understand his +thoughts, and to convey her own in return, and, through her untiring +and devoted assiduity, it was seldom that, in the ordinary transactions +of every-day life, she failed to anticipate the wishes of the living, +thinking mind, or the wants of the almost inanimate body. + +As to the servant, he had, as we have said, been with his master for +five-and-twenty years, therefore he knew all his habits, and it was +seldom that Noirtier found it necessary to ask for anything, so prompt +was he in administering to all the necessities of the invalid. + +Villefort did not need the help of either Valentine or the domestic in +order to carry on with his father the strange conversation which he was +about to begin. As we have said, he perfectly understood the old man’s +vocabulary, and if he did not use it more often, it was only +indifference and _ennui_ which prevented him from so doing. He +therefore allowed Valentine to go into the garden, sent away Barrois, +and after having seated himself at his father’s right hand, while +Madame de Villefort placed herself on the left, he addressed him thus: + +“I trust you will not be displeased, sir, that Valentine has not come +with us, or that I dismissed Barrois, for our conference will be one +which could not with propriety be carried on in the presence of either. +Madame de Villefort and I have a communication to make to you.” + +Noirtier’s face remained perfectly passive during this long preamble, +while, on the contrary, Villefort’s eye was endeavoring to penetrate +into the inmost recesses of the old man’s heart. + +“This communication,” continued the procureur, in that cold and +decisive tone which seemed at once to preclude all discussion, “will, +we are sure, meet with your approbation.” + +The eye of the invalid still retained that vacancy of expression which +prevented his son from obtaining any knowledge of the feelings which +were passing in his mind; he listened, nothing more. + +“Sir,” resumed Villefort, “we are thinking of marrying Valentine.” Had +the old man’s face been moulded in wax it could not have shown less +emotion at this news than was now to be traced there. “The marriage +will take place in less than three months,” said Villefort. + +Noirtier’s eye still retained its inanimate expression. + +Madame de Villefort now took her part in the conversation and added: + +“We thought this news would possess an interest for you, sir, who have +always entertained a great affection for Valentine; it therefore only +now remains for us to tell you the name of the young man for whom she +is destined. It is one of the most desirable connections which could +possibly be formed; he possesses fortune, a high rank in society, and +every personal qualification likely to render Valentine supremely +happy,—his name, moreover, cannot be wholly unknown to you. It is M. +Franz de Quesnel, Baron d’Épinay.” + +While his wife was speaking, Villefort had narrowly watched the old +man’s countenance. When Madame de Villefort pronounced the name of +Franz, the pupil of M. Noirtier’s eye began to dilate, and his eyelids +trembled with the same movement that may be perceived on the lips of an +individual about to speak, and he darted a lightning glance at Madame +de Villefort and his son. The procureur, who knew the political hatred +which had formerly existed between M. Noirtier and the elder d’Épinay, +well understood the agitation and anger which the announcement had +produced; but, feigning not to perceive either, he immediately resumed +the narrative begun by his wife. + +“Sir,” said he, “you are aware that Valentine is about to enter her +nineteenth year, which renders it important that she should lose no +time in forming a suitable alliance. Nevertheless, you have not been +forgotten in our plans, and we have fully ascertained beforehand that +Valentine’s future husband will consent, not to live in this house, for +that might not be pleasant for the young people, but that you should +live with them; so that you and Valentine, who are so attached to each +other, would not be separated, and you would be able to pursue exactly +the same course of life which you have hitherto done, and thus, instead +of losing, you will be a gainer by the change, as it will secure to you +two children instead of one, to watch over and comfort you.” + +30165m + + + +Noirtier’s look was furious; it was very evident that something +desperate was passing in the old man’s mind, for a cry of anger and +grief rose in his throat, and not being able to find vent in utterance, +appeared almost to choke him, for his face and lips turned quite purple +with the struggle. Villefort quietly opened a window, saying, “It is +very warm, and the heat affects M. Noirtier.” He then returned to his +place, but did not sit down. + +“This marriage,” added Madame de Villefort, “is quite agreeable to the +wishes of M. d’Épinay and his family; besides, he had no relations +nearer than an uncle and aunt, his mother having died at his birth, and +his father having been assassinated in 1815, that is to say, when he +was but two years old; it naturally followed that the child was +permitted to choose his own pursuits, and he has, therefore, seldom +acknowledged any other authority but that of his own will.” + +“That assassination was a mysterious affair,” said Villefort, “and the +perpetrators have hitherto escaped detection, although suspicion has +fallen on the head of more than one person.” + +Noirtier made such an effort that his lips expanded into a smile. + +“Now,” continued Villefort, “those to whom the guilt really belongs, by +whom the crime was committed, on whose heads the justice of man may +probably descend here, and the certain judgment of God hereafter, would +rejoice in the opportunity thus afforded of bestowing such a +peace-offering as Valentine on the son of him whose life they so +ruthlessly destroyed.” Noirtier had succeeded in mastering his emotion +more than could have been deemed possible with such an enfeebled and +shattered frame. + +“Yes, I understand,” was the reply contained in his look; and this look +expressed a feeling of strong indignation, mixed with profound +contempt. Villefort fully understood his father’s meaning, and answered +by a slight shrug of his shoulders. He then motioned to his wife to +take leave. + +“Now sir,” said Madame de Villefort, “I must bid you farewell. Would +you like me to send Edward to you for a short time?” + +It had been agreed that the old man should express his approbation by +closing his eyes, his refusal by winking them several times, and if he +had some desire or feeling to express, he raised them to heaven. If he +wanted Valentine, he closed his right eye only, and if Barrois, the +left. At Madame de Villefort’s proposition he instantly winked his +eyes. + +Provoked by a complete refusal, she bit her lip and said, “Then shall I +send Valentine to you?” The old man closed his eyes eagerly, thereby +intimating that such was his wish. + +M. and Madame de Villefort bowed and left the room, giving orders that +Valentine should be summoned to her grandfather’s presence, and feeling +sure that she would have much to do to restore calmness to the +perturbed spirit of the invalid. Valentine, with a color still +heightened by emotion, entered the room just after her parents had +quitted it. One look was sufficient to tell her that her grandfather +was suffering, and that there was much on his mind which he was wishing +to communicate to her. + +“Dear grandpapa,” cried she, “what has happened? They have vexed you, +and you are angry?” + +The paralytic closed his eyes in token of assent. + +“Who has displeased you? Is it my father?” + +“No.” + +“Madame de Villefort?” + +“No.” + +“Me?” The former sign was repeated. + +“Are you displeased with me?” cried Valentine in astonishment. M. +Noirtier again closed his eyes. + +“And what have I done, dear grandpapa, that you should be angry with +me?” cried Valentine. + +There was no answer, and she continued: + +“I have not seen you all day. Has anyone been speaking to you against +me?” + +“Yes,” said the old man’s look, with eagerness. + +“Let me think a moment. I do assure you, grandpapa—Ah—M. and Madame de +Villefort have just left this room, have they not?” + +“Yes.” + +“And it was they who told you something which made you angry? What was +it then? May I go and ask them, that I may have the opportunity of +making my peace with you?” + +“No, no,” said Noirtier’s look. + +“Ah, you frighten me. What can they have said?” and she again tried to +think what it could be. + +“Ah, I know,” said she, lowering her voice and going close to the old +man. “They have been speaking of my marriage,—have they not?” + +“Yes,” replied the angry look. + +“I understand; you are displeased at the silence I have preserved on +the subject. The reason of it was, that they had insisted on my keeping +the matter a secret, and begged me not to tell you anything of it. They +did not even acquaint me with their intentions, and I only discovered +them by chance, that is why I have been so reserved with you, dear +grandpapa. Pray forgive me.” + +But there was no look calculated to reassure her; all it seemed to say +was, “It is not only your reserve which afflicts me.” + +“What is it, then?” asked the young girl. “Perhaps you think I shall +abandon you, dear grandpapa, and that I shall forget you when I am +married?” + +“No.” + +“They told you, then, that M. d’Épinay consented to our all living +together?” + +“Yes.” + +“Then why are you still vexed and grieved?” The old man’s eyes beamed +with an expression of gentle affection. + +“Yes, I understand,” said Valentine; “it is because you love me.” The +old man assented. + +“And you are afraid I shall be unhappy?” + +“Yes.” + +“You do not like M. Franz?” The eyes repeated several times, “No, no, +no.” + +“Then you are vexed with the engagement?” + +“Yes.” + +“Well, listen,” said Valentine, throwing herself on her knees, and +putting her arm round her grandfather’s neck, “I am vexed, too, for I +do not love M. Franz d’Épinay.” + +An expression of intense joy illumined the old man’s eyes. + +“When I wished to retire into a convent, you remember how angry you +were with me?” A tear trembled in the eye of the invalid. “Well,” +continued Valentine, “the reason of my proposing it was that I might +escape this hateful marriage, which drives me to despair.” Noirtier’s +breathing came thick and short. + +“Then the idea of this marriage really grieves you too? Ah, if you +could but help me—if we could both together defeat their plan! But you +are unable to oppose them,—you, whose mind is so quick, and whose will +is so firm are nevertheless, as weak and unequal to the contest as I am +myself. Alas, you, who would have been such a powerful protector to me +in the days of your health and strength, can now only sympathize in my +joys and sorrows, without being able to take any active part in them. +However, this is much, and calls for gratitude and Heaven has not taken +away all my blessings when it leaves me your sympathy and kindness.” + +At these words there appeared in Noirtier’s eye an expression of such +deep meaning that the young girl thought she could read these words +there: “You are mistaken; I can still do much for you.” + +“Do you think you can help me, dear grandpapa?” said Valentine. + +“Yes.” Noirtier raised his eyes, it was the sign agreed on between him +and Valentine when he wanted anything. + +“What is it you want, dear grandpapa?” said Valentine, and she +endeavored to recall to mind all the things which he would be likely to +need; and as the ideas presented themselves to her mind, she repeated +them aloud, then,—finding that all her efforts elicited nothing but a +constant _“No,”_—she said, “Come, since this plan does not answer, I +will have recourse to another.” + +She then recited all the letters of the alphabet from A down to N. When +she arrived at that letter the paralytic made her understand that she +had spoken the initial letter of the thing he wanted. + +“Ah,” said Valentine, “the thing you desire begins with the letter N; +it is with N that we have to do, then. Well, let me see, what can you +want that begins with N? Na—Ne—Ni—No——” + +“Yes, yes, yes,” said the old man’s eye. + +“Ah, it is No, then?” + +“Yes.” + +Valentine fetched a dictionary, which she placed on a desk before +Noirtier; she opened it, and, seeing that the old man’s eye was +thoroughly fixed on its pages, she ran her finger quickly up and down +the columns. During the six years which had passed since Noirtier first +fell into this sad state, Valentine’s powers of invention had been too +often put to the test not to render her expert in devising expedients +for gaining a knowledge of his wishes, and the constant practice had so +perfected her in the art that she guessed the old man’s meaning as +quickly as if he himself had been able to seek for what he wanted. At +the word _Notary_, Noirtier made a sign to her to stop. + +30169m + + + +“Notary,” said she, “do you want a notary, dear grandpapa?” The old man +again signified that it was a notary he desired. + +“You would wish a notary to be sent for then?” said Valentine. + +“Yes.” + +“Shall my father be informed of your wish?” + +“Yes.” + +“Do you wish the notary to be sent for immediately?” + +“Yes.” + +“Then they shall go for him directly, dear grandpapa. Is that all you +want?” + +“Yes.” Valentine rang the bell, and ordered the servant to tell +Monsieur or Madame de Villefort that they were requested to come to M. +Noirtier’s room. + +“Are you satisfied now?” inquired Valentine. + +“Yes.” + +“I am sure you are; it is not very difficult to discover that.” And the +young girl smiled on her grandfather, as if he had been a child. M. de +Villefort entered, followed by Barrois. + +“What do you want me for, sir?” demanded he of the paralytic. + +“Sir,” said Valentine, “my grandfather wishes for a notary.” At this +strange and unexpected demand M. de Villefort and his father exchanged +looks. + +“Yes,” motioned the latter, with a firmness which seemed to declare +that with the help of Valentine and his old servant, who both knew what +his wishes were, he was quite prepared to maintain the contest. + +“Do you wish for a notary?” asked Villefort. + +“Yes.” + +“What to do?” + +Noirtier made no answer. + +“What do you want with a notary?” again repeated Villefort. The +invalid’s eye remained fixed, by which expression he intended to +intimate that his resolution was unalterable. + +“Is it to do us some ill turn? Do you think it is worth while?” said +Villefort. + +“Still,” said Barrois, with the freedom and fidelity of an old servant, +“if M. Noirtier asks for a notary, I suppose he really wishes for a +notary; therefore I shall go at once and fetch one.” Barrois +acknowledged no master but Noirtier, and never allowed his desires in +any way to be contradicted. + +30171m + + + +“Yes, I do want a notary,” motioned the old man, shutting his eyes with +a look of defiance, which seemed to say, “and I should like to see the +person who dares to refuse my request.” + +“You shall have a notary, as you absolutely wish for one, sir,” said +Villefort; “but I shall explain to him your state of health, and make +excuses for you, for the scene cannot fail of being a most ridiculous +one.” + +“Never mind that,” said Barrois; “I shall go and fetch a notary, +nevertheless.” And the old servant departed triumphantly on his +mission. + + + + Chapter 59. The Will + +As soon as Barrois had left the room, Noirtier looked at Valentine with +a malicious expression that said many things. The young girl perfectly +understood the look, and so did Villefort, for his countenance became +clouded, and he knitted his eyebrows angrily. He took a seat, and +quietly awaited the arrival of the notary. Noirtier saw him seat +himself with an appearance of perfect indifference, at the same time +giving a side look at Valentine, which made her understand that she +also was to remain in the room. Three-quarters of an hour after, +Barrois returned, bringing the notary with him. + +“Sir,” said Villefort, after the first salutations were over, “you were +sent for by M. Noirtier, whom you see here. All his limbs have become +completely paralysed, he has lost his voice also, and we ourselves find +much trouble in endeavoring to catch some fragments of his meaning.” + +Noirtier cast an appealing look on Valentine, which look was at once so +earnest and imperative, that she answered immediately. + +“Sir,” said she, “I perfectly understand my grandfather’s meaning at +all times.” + +“That is quite true,” said Barrois; “and that is what I told the +gentleman as we walked along.” + +“Permit me,” said the notary, turning first to Villefort and then to +Valentine—“permit me to state that the case in question is just one of +those in which a public officer like myself cannot proceed to act +without thereby incurring a dangerous responsibility. The first thing +necessary to render an act valid is, that the notary should be +thoroughly convinced that he has faithfully interpreted the will and +wishes of the person dictating the act. Now I cannot be sure of the +approbation or disapprobation of a client who cannot speak, and as the +object of his desire or his repugnance cannot be clearly proved to me, +on account of his want of speech, my services here would be quite +useless, and cannot be legally exercised.” + +The notary then prepared to retire. An imperceptible smile of triumph +was expressed on the lips of the procureur. Noirtier looked at +Valentine with an expression so full of grief, that she arrested the +departure of the notary. + +“Sir,” said she, “the language which I speak with my grandfather may be +easily learnt, and I can teach you in a few minutes, to understand it +almost as well as I can myself. Will you tell me what you require, in +order to set your conscience quite at ease on the subject?” + +“In order to render an act valid, I must be certain of the approbation +or disapprobation of my client. Illness of body would not affect the +validity of the deed, but sanity of mind is absolutely requisite.” + +“Well, sir, by the help of two signs, with which I will acquaint you +presently, you may ascertain with perfect certainty that my grandfather +is still in the full possession of all his mental faculties. M. +Noirtier, being deprived of voice and motion, is accustomed to convey +his meaning by closing his eyes when he wishes to signify ‘yes,’ and to +wink when he means ‘no.’ You now know quite enough to enable you to +converse with M. Noirtier;—try.” + +Noirtier gave Valentine such a look of tenderness and gratitude that it +was comprehended even by the notary himself. + +“You have heard and understood what your granddaughter has been saying, +sir, have you?” asked the notary. Noirtier closed his eyes. + +“And you approve of what she said—that is to say, you declare that the +signs which she mentioned are really those by means of which you are +accustomed to convey your thoughts?” + +“Yes.” + +“It was you who sent for me?” + +“Yes.” + +“To make your will?” + +“Yes.” + +“And you do not wish me to go away without fulfilling your original +intentions?” The old man winked violently. + +“Well, sir,” said the young girl, “do you understand now, and is your +conscience perfectly at rest on the subject?” + +But before the notary could answer, Villefort had drawn him aside. + +“Sir,” said he, “do you suppose for a moment that a man can sustain a +physical shock, such as M. Noirtier has received, without any detriment +to his mental faculties?” + +“It is not exactly that, sir,” said the notary, “which makes me uneasy, +but the difficulty will be in wording his thoughts and intentions, so +as to be able to get his answers.” + +“You must see that to be an utter impossibility,” said Villefort. +Valentine and the old man heard this conversation, and Noirtier fixed +his eye so earnestly on Valentine that she felt bound to answer to the +look. + +“Sir,” said she, “that need not make you uneasy, however difficult it +may at first sight appear to be. I can discover and explain to you my +grandfather’s thoughts, so as to put an end to all your doubts and +fears on the subject. I have now been six years with M. Noirtier, and +let him tell you if ever once, during that time, he has entertained a +thought which he was unable to make me understand.” + +“No,” signed the old man. + +“Let us try what we can do, then,” said the notary. “You accept this +young lady as your interpreter, M. Noirtier?” + +“Yes.” + +“Well, sir, what do you require of me, and what document is it that you +wish to be drawn up?” + +Valentine named all the letters of the alphabet until she came to W. At +this letter the eloquent eye of Noirtier gave her notice that she was +to stop. + +“It is very evident that it is the letter W which M. Noirtier wants,” +said the notary. + +“Wait,” said Valentine; and, turning to her grandfather, she repeated, +“Wa—We—Wi——” The old man stopped her at the last syllable. Valentine +then took the dictionary, and the notary watched her while she turned +over the pages. + +She passed her finger slowly down the columns, and when she came to the +word “Will,” M. Noirtier’s eye bade her stop. + +“Will,” said the notary; “it is very evident that M. Noirtier is +desirous of making his will.” + +“Yes, yes, yes,” motioned the invalid. + +“Really, sir, you must allow that this is most extraordinary,” said the +astonished notary, turning to M. de Villefort. + +“Yes,” said the procureur, “and I think the will promises to be yet +more extraordinary, for I cannot see how it is to be drawn up without +the intervention of Valentine, and she may, perhaps, be considered as +too much interested in its contents to allow of her being a suitable +interpreter of the obscure and ill-defined wishes of her grandfather.” + +“No, no, no,” replied the eye of the paralytic. + +“What?” said Villefort, “do you mean to say that Valentine is not +interested in your will?” + +“No.” + +“Sir,” said the notary, whose interest had been greatly excited, and +who had resolved on publishing far and wide the account of this +extraordinary and picturesque scene, “what appeared so impossible to me +an hour ago, has now become quite easy and practicable, and this may be +a perfectly valid will, provided it be read in the presence of seven +witnesses, approved by the testator, and sealed by the notary in the +presence of the witnesses. As to the time, it will not require very +much more than the generality of wills. There are certain forms +necessary to be gone through, and which are always the same. As to the +details, the greater part will be furnished afterwards by the state in +which we find the affairs of the testator, and by yourself, who, having +had the management of them, can doubtless give full information on the +subject. But besides all this, in order that the instrument may not be +contested, I am anxious to give it the greatest possible authenticity, +therefore, one of my colleagues will help me, and, contrary to custom, +will assist in the dictation of the testament. Are you satisfied, sir?” +continued the notary, addressing the old man. + +30175m + + + +“Yes,” looked the invalid, his eye beaming with delight at the ready +interpretation of his meaning. + +“What is he going to do?” thought Villefort, whose position demanded +much reserve, but who was longing to know what his father’s intentions +were. He left the room to give orders for another notary to be sent, +but Barrois, who had heard all that passed, had guessed his master’s +wishes, and had already gone to fetch one. The procureur then told his +wife to come up. In the course of a quarter of an hour everyone had +assembled in the chamber of the paralytic; the second notary had also +arrived. + +A few words sufficed for a mutual understanding between the two +officers of the law. They read to Noirtier the formal copy of a will, +in order to give him an idea of the terms in which such documents are +generally couched; then, in order to test the capacity of the testator, +the first notary said, turning towards him: + +“When an individual makes his will, it is generally in favor or in +prejudice of some person.” + +“Yes.” + +“Have you an exact idea of the amount of your fortune?” + +“Yes.” + +“I will name to you several sums which will increase by gradation; you +will stop me when I reach the one representing the amount of your own +possessions?” + +“Yes.” + +There was a kind of solemnity in this interrogation. Never had the +struggle between mind and matter been more apparent than now, and if it +was not a sublime, it was, at least, a curious spectacle. They had +formed a circle round the invalid; the second notary was sitting at a +table, prepared for writing, and his colleague was standing before the +testator in the act of interrogating him on the subject to which we +have alluded. + +“Your fortune exceeds 300,000 francs, does it not?” asked he. Noirtier +made a sign that it did. + +“Do you possess 400,000 francs?” inquired the notary. Noirtier’s eye +remained immovable. + +“500,000?” The same expression continued. + +“600,000—700,000—800,000—900,000?” + +Noirtier stopped him at the last-named sum. + +“You are then in possession of 900,000 francs?” asked the notary. + +“Yes.” + +“In landed property?” + +“No.” + +“In stock?” + +“Yes.” + +“The stock is in your own hands?” + +The look which M. Noirtier cast on Barrois showed that there was +something wanting which he knew where to find. The old servant left the +room, and presently returned, bringing with him a small casket. + +“Do you permit us to open this casket?” asked the notary. Noirtier gave +his assent. + +They opened it, and found 900,000 francs in bank scrip. The first +notary handed over each note, as he examined it, to his colleague. + +The total amount was found to be as M. Noirtier had stated. + +“It is all as he has said; it is very evident that the mind still +retains its full force and vigor.” Then, turning towards the paralytic, +he said, “You possess, then, 900,000 francs of capital, which, +according to the manner in which you have invested it, ought to bring +in an income of about 40,000 livres?” + +“Yes.” + +“To whom do you desire to leave this fortune?” + +“Oh!” said Madame de Villefort, “there is not much doubt on that +subject. M. Noirtier tenderly loves his granddaughter, Mademoiselle de +Villefort; it is she who has nursed and tended him for six years, and +has, by her devoted attention, fully secured the affection, I had +almost said the gratitude, of her grandfather, and it is but just that +she should reap the fruit of her devotion.” + +The eye of Noirtier clearly showed by its expression that he was not +deceived by the false assent given by Madame de Villefort’s words and +manner to the motives which she supposed him to entertain. + +“Is it, then, to Mademoiselle Valentine de Villefort that you leave +these 900,000 francs?” demanded the notary, thinking he had only to +insert this clause, but waiting first for the assent of Noirtier, which +it was necessary should be given before all the witnesses of this +singular scene. + +Valentine, when her name was made the subject of discussion, had +stepped back, to escape unpleasant observation; her eyes were cast +down, and she was crying. The old man looked at her for an instant with +an expression of the deepest tenderness, then, turning towards the +notary, he significantly winked his eye in token of dissent. + +“What,” said the notary, “do you not intend making Mademoiselle +Valentine de Villefort your residuary legatee?” + +“No.” + +“You are not making any mistake, are you?” said the notary; “you really +mean to declare that such is not your intention?” + +“No,” repeated Noirtier; “No.” + +Valentine raised her head, struck dumb with astonishment. It was not so +much the conviction that she was disinherited that caused her grief, +but her total inability to account for the feelings which had provoked +her grandfather to such an act. But Noirtier looked at her with so much +affectionate tenderness that she exclaimed: + +“Oh, grandpapa, I see now that it is only your fortune of which you +deprive me; you still leave me the love which I have always enjoyed.” + +“Ah, yes, most assuredly,” said the eyes of the paralytic, for he +closed them with an expression which Valentine could not mistake. + +“Thank you, thank you,” murmured she. The old man’s declaration that +Valentine was not the destined inheritor of his fortune had excited the +hopes of Madame de Villefort; she gradually approached the invalid, and +said: + +“Then, doubtless, dear M. Noirtier, you intend leaving your fortune to +your grandson, Edward de Villefort?” + +The winking of the eyes which answered this speech was most decided and +terrible, and expressed a feeling almost amounting to hatred. + +“No?” said the notary; “then, perhaps, it is to your son, M. de +Villefort?” + +“No.” The two notaries looked at each other in mute astonishment and +inquiry as to what were the real intentions of the testator. Villefort +and his wife both grew red, one from shame, the other from anger. + +“What have we all done, then, dear grandpapa?” said Valentine; “you no +longer seem to love any of us?” + +The old man’s eyes passed rapidly from Villefort and his wife, and +rested on Valentine with a look of unutterable fondness. + +“Well,” said she; “if you love me, grandpapa, try and bring that love +to bear upon your actions at this present moment. You know me well +enough to be quite sure that I have never thought of your fortune; +besides, they say I am already rich in right of my mother—too rich, +even. Explain yourself, then.” + +Noirtier fixed his intelligent eyes on Valentine’s hand. + +“My hand?” said she. + +“Yes.” + +“Her hand!” exclaimed everyone. + +“Oh, gentlemen, you see it is all useless, and that my father’s mind is +really impaired,” said Villefort. + +“Ah,” cried Valentine suddenly, “I understand. It is my marriage you +mean, is it not, dear grandpapa?” + +“Yes, yes, yes,” signed the paralytic, casting on Valentine a look of +joyful gratitude for having guessed his meaning. + +30179m + + + +“You are angry with us all on account of this marriage, are you not?” + +“Yes?” + +“Really, this is too absurd,” said Villefort. + +“Excuse me, sir,” replied the notary; “on the contrary, the meaning of +M. Noirtier is quite evident to me, and I can quite easily connect the +train of ideas passing in his mind.” + +“You do not wish me to marry M. Franz d’Épinay?” observed Valentine. + +“I do not wish it,” said the eye of her grandfather. + +“And you disinherit your granddaughter,” continued the notary, “because +she has contracted an engagement contrary to your wishes?” + +“Yes.” + +“So that, but for this marriage, she would have been your heir?” + +“Yes.” + +There was a profound silence. The two notaries were holding a +consultation as to the best means of proceeding with the affair. +Valentine was looking at her grandfather with a smile of intense +gratitude, and Villefort was biting his lips with vexation, while +Madame de Villefort could not succeed in repressing an inward feeling +of joy, which, in spite of herself, appeared in her whole countenance. + +“But,” said Villefort, who was the first to break the silence, “I +consider that I am the best judge of the propriety of the marriage in +question. I am the only person possessing the right to dispose of my +daughter’s hand. It is my wish that she should marry M. Franz +d’Épinay—and she shall marry him.” + +Valentine sank weeping into a chair. + +“Sir,” said the notary, “how do you intend disposing of your fortune in +case Mademoiselle de Villefort still determines on marrying M. Franz?” +The old man gave no answer. + +“You will, of course, dispose of it in some way or other?” + +“Yes.” + +“In favor of some member of your family?” + +“No.” + +“Do you intend devoting it to charitable purposes, then?” pursued the +notary. + +“Yes.” + +“But,” said the notary, “you are aware that the law does not allow a +son to be entirely deprived of his patrimony?” + +“Yes.” + +“You only intend, then, to dispose of that part of your fortune which +the law allows you to subtract from the inheritance of your son?” +Noirtier made no answer. + +“Do you still wish to dispose of all?” + +“Yes.” + +“But they will contest the will after your death?” + +“No.” + +“My father knows me,” replied Villefort; “he is quite sure that his +wishes will be held sacred by me; besides, he understands that in my +position I cannot plead against the poor.” The eye of Noirtier beamed +with triumph. + +“What do you decide on, sir?” asked the notary of Villefort. + +“Nothing, sir; it is a resolution which my father has taken and I know +he never alters his mind. I am quite resigned. These 900,000 francs +will go out of the family in order to enrich some hospital; but it is +ridiculous thus to yield to the caprices of an old man, and I shall, +therefore, act according to my conscience.” + +Having said this, Villefort quitted the room with his wife, leaving his +father at liberty to do as he pleased. The same day the will was made, +the witnesses were brought, it was approved by the old man, sealed in +the presence of all and given in charge to M. Deschamps, the family +notary. + + + + Chapter 60. The Telegraph + +M. and Madame de Villefort found on their return that the Count of +Monte Cristo, who had come to visit them in their absence, had been +ushered into the drawing-room, and was still awaiting them there. +Madame de Villefort, who had not yet sufficiently recovered from her +late emotion to allow of her entertaining visitors so immediately, +retired to her bedroom, while the procureur, who could better depend +upon himself, proceeded at once to the salon. + +Although M. de Villefort flattered himself that, to all outward view, +he had completely masked the feelings which were passing in his mind, +he did not know that the cloud was still lowering on his brow, so much +so that the count, whose smile was radiant, immediately noticed his +sombre and thoughtful air. + +“_Ma foi!_” said Monte Cristo, after the first compliments were over, +“what is the matter with you, M. de Villefort? Have I arrived at the +moment when you were drawing up an indictment for a capital crime?” + +Villefort tried to smile. + +“No, count,” he replied, “I am the only victim in this case. It is I +who lose my cause, and it is ill-luck, obstinacy, and folly which have +caused it to be decided against me.” + +“To what do you refer?” said Monte Cristo with well-feigned interest. +“Have you really met with some great misfortune?” + +“Oh, no, monsieur,” said Villefort with a bitter smile; “it is only a +loss of money which I have sustained—nothing worth mentioning, I assure +you.” + +“True,” said Monte Cristo, “the loss of a sum of money becomes almost +immaterial with a fortune such as you possess, and to one of your +philosophic spirit.” + +“It is not so much the loss of the money that vexes me,” said +Villefort, “though, after all, 900,000 francs are worth regretting; but +I am the more annoyed with this fate, chance, or whatever you please to +call the power which has destroyed my hopes and my fortune, and may +blast the prospects of my child also, as it is all occasioned by an old +man relapsed into second childhood.” + +30183m + + + +“What do you say?” said the count; “900,000 francs? It is indeed a sum +which might be regretted even by a philosopher. And who is the cause of +all this annoyance?” + +“My father, as I told you.” + +“M. Noirtier? But I thought you told me he had become entirely +paralyzed, and that all his faculties were completely destroyed?” + +“Yes, his bodily faculties, for he can neither move nor speak, +nevertheless he thinks, acts, and wills in the manner I have described. +I left him about five minutes ago, and he is now occupied in dictating +his will to two notaries.” + +“But to do this he must have spoken?” + +“He has done better than that—he has made himself understood.” + +“How was such a thing possible?” + +“By the help of his eyes, which are still full of life, and, as you +perceive, possess the power of inflicting mortal injury.” + +“My dear,” said Madame de Villefort, who had just entered the room, +“perhaps you exaggerate the evil.” + +“Good-morning, madame,” said the count, bowing. + + + +Madame de Villefort acknowledged the salutation with one of her most +gracious smiles. + +“What is this that M. de Villefort has been telling me?” demanded Monte +Cristo “and what incomprehensible misfortune——” + +“Incomprehensible is the word!” interrupted the procureur, shrugging +his shoulders. “It is an old man’s caprice!” + +“And is there no means of making him revoke his decision?” + +“Yes,” said Madame de Villefort; “and it is still entirely in the power +of my husband to cause the will, which is now in prejudice of +Valentine, to be altered in her favor.” + +The count, who perceived that M. and Madame de Villefort were beginning +to speak in parables, appeared to pay no attention to the conversation, +and feigned to be busily engaged in watching Edward, who was +mischievously pouring some ink into the bird’s water-glass. + +“My dear,” said Villefort, in answer to his wife, “you know I have +never been accustomed to play the patriarch in my family, nor have I +ever considered that the fate of a universe was to be decided by my +nod. Nevertheless, it is necessary that my will should be respected in +my family, and that the folly of an old man and the caprice of a child +should not be allowed to overturn a project which I have entertained +for so many years. The Baron d’Épinay was my friend, as you know, and +an alliance with his son is the most suitable thing that could possibly +be arranged.” + +“Do you think,” said Madame de Villefort, “that Valentine is in league +with him? She has always been opposed to this marriage, and I should +not be at all surprised if what we have just seen and heard is nothing +but the execution of a plan concerted between them.” + +“Madame,” said Villefort, “believe me, a fortune of 900,000 francs is +not so easily renounced.” + +“She could, nevertheless, make up her mind to renounce the world, sir, +since it is only about a year ago that she herself proposed entering a +convent.” + +“Never mind,” replied Villefort; “I say that this marriage _shall_ be +consummated.” + +“Notwithstanding your father’s wishes to the contrary?” said Madame de +Villefort, selecting a new point of attack. “That is a serious thing.” + +Monte Cristo, who pretended not to be listening, heard however, every +word that was said. + +30185m + + + +“Madame,” replied Villefort “I can truly say that I have always +entertained a high respect for my father, because, to the natural +feeling of relationship was added the consciousness of his moral +superiority. The name of father is sacred in two senses; he should be +reverenced as the author of our being and as a master whom we ought to +obey. But, under the present circumstances, I am justified in doubting +the wisdom of an old man who, because he hated the father, vents his +anger on the son. It would be ridiculous in me to regulate my conduct +by such caprices. I shall still continue to preserve the same respect +toward M. Noirtier; I will suffer, without complaint, the pecuniary +deprivation to which he has subjected me; but I shall remain firm in my +determination, and the world shall see which party has reason on his +side. Consequently I shall marry my daughter to the Baron Franz +d’Épinay, because I consider it would be a proper and eligible match +for her to make, and, in short, because I choose to bestow my +daughter’s hand on whomever I please.” + +“What?” said the count, the approbation of whose eye Villefort had +frequently solicited during this speech. “What? Do you say that M. +Noirtier disinherits Mademoiselle de Villefort because she is going to +marry M. le Baron Franz d’Épinay?” + +“Yes, sir, that is the reason,” said Villefort, shrugging his +shoulders. + +“The apparent reason, at least,” said Madame de Villefort. + +“The _real_ reason, madame, I can assure you; I know my father.” + +“But I want to know in what way M. d’Épinay can have displeased your +father more than any other person?” + +“I believe I know M. Franz d’Épinay,” said the count; “is he not the +son of General de Quesnel, who was created Baron d’Épinay by Charles +X.?” + +“The same,” said Villefort. + +“Well, but he is a charming young man, according to my ideas.” + +“He is, which makes me believe that it is only an excuse of M. Noirtier +to prevent his granddaughter marrying; old men are always so selfish in +their affection,” said Madame de Villefort. + +“But,” said Monte Cristo “do you not know any cause for this hatred?” + +“Ah, _ma foi!_ who is to know?” + +“Perhaps it is some political difference?” + +“My father and the Baron d’Épinay lived in the stormy times of which I +only saw the ending,” said Villefort. + +“Was not your father a Bonapartist?” asked Monte Cristo; “I think I +remember that you told me something of that kind.” + +“My father has been a Jacobin more than anything else,” said Villefort, +carried by his emotion beyond the bounds of prudence; “and the +senator’s robe, which Napoleon cast on his shoulders, only served to +disguise the old man without in any degree changing him. When my father +conspired, it was not for the emperor, it was against the Bourbons; for +M. Noirtier possessed this peculiarity, he never projected any Utopian +schemes which could never be realized, but strove for possibilities, +and he applied to the realization of these possibilities the terrible +theories of The Mountain,—theories that never shrank from any means +that were deemed necessary to bring about the desired result.” + +“Well,” said Monte Cristo, “it is just as I thought; it was politics +which brought Noirtier and M. d’Épinay into personal contact. Although +General d’Épinay served under Napoleon, did he not still retain +royalist sentiments? And was he not the person who was assassinated one +evening on leaving a Bonapartist meeting to which he had been invited +on the supposition that he favored the cause of the emperor?” + +Villefort looked at the count almost with terror. + +“Am I mistaken, then?” said Monte Cristo. + +“No, sir, the facts were precisely what you have stated,” said Madame +de Villefort; “and it was to prevent the renewal of old feuds that M. +de Villefort formed the idea of uniting in the bonds of affection the +two children of these inveterate enemies.” + +“It was a sublime and charitable thought,” said Monte Cristo, “and the +whole world should applaud it. It would be noble to see Mademoiselle +Noirtier de Villefort assuming the title of Madame Franz d’Épinay.” + +Villefort shuddered and looked at Monte Cristo as if he wished to read +in his countenance the real feelings which had dictated the words he +had just uttered. But the count completely baffled the procureur, and +prevented him from discovering anything beneath the never-varying smile +he was so constantly in the habit of assuming. + +“Although,” said Villefort, “it will be a serious thing for Valentine +to lose her grandfather’s fortune, I do not think that M. d’Épinay will +be frightened at this pecuniary loss. He will, perhaps, hold me in +greater esteem than the money itself, seeing that I sacrifice +everything in order to keep my word with him. Besides, he knows that +Valentine is rich in right of her mother, and that she will, in all +probability, inherit the fortune of M. and Madame de Saint-Méran, her +mother’s parents, who both love her tenderly.” + +“And who are fully as well worth loving and tending as M. Noirtier,” +said Madame de Villefort; “besides, they are to come to Paris in about +a month, and Valentine, after the affront she has received, need not +consider it necessary to continue to bury herself alive by being shut +up with M. Noirtier.” + +The count listened with satisfaction to this tale of wounded self-love +and defeated ambition. + +“But it seems to me,” said Monte Cristo, “and I must begin by asking +your pardon for what I am about to say, that if M. Noirtier disinherits +Mademoiselle de Villefort because she is going to marry a man whose +father he detested, he cannot have the same cause of complaint against +this dear Edward.” + +“True,” said Madame de Villefort, with an intonation of voice which it +is impossible to describe; “is it not unjust—shamefully unjust? Poor +Edward is as much M. Noirtier’s grandchild as Valentine, and yet, if +she had not been going to marry M. Franz, M. Noirtier would have left +her all his money; and supposing Valentine to be disinherited by her +grandfather, she will still be three times richer than he.” + +The count listened and said no more. + +“Count,” said Villefort, “we will not entertain you any longer with our +family misfortunes. It is true that my patrimony will go to endow +charitable institutions, and my father will have deprived me of my +lawful inheritance without any reason for doing so, but I shall have +the satisfaction of knowing that I have acted like a man of sense and +feeling. M. d’Épinay, to whom I had promised the interest of this sum, +shall receive it, even if I endure the most cruel privations.” + +“However,” said Madame de Villefort, returning to the one idea which +incessantly occupied her mind, “perhaps it would be better to explain +this unlucky affair to M. d’Épinay, in order to give him the +opportunity of himself renouncing his claim to the hand of Mademoiselle +de Villefort.” + +“Ah, that would be a great pity,” said Villefort. + +“A great pity,” said Monte Cristo. + +“Undoubtedly,” said Villefort, moderating the tones of his voice, “a +marriage once concerted and then broken off, throws a sort of discredit +on a young lady; then again, the old reports, which I was so anxious to +put an end to, will instantly gain ground. No, it will all go well; M. +d’Épinay, if he is an honorable man, will consider himself more than +ever pledged to Mademoiselle de Villefort, unless he were actuated by a +decided feeling of avarice, but that is impossible.” + +“I agree with M. de Villefort,” said Monte Cristo, fixing his eyes on +Madame de Villefort; “and if I were sufficiently intimate with him to +allow of giving my advice, I would persuade him, since I have been told +M. d’Épinay is coming back, to settle this affair at once beyond all +possibility of revocation. I will answer for the success of a project +which will reflect so much honor on M. de Villefort.” + +The procureur arose, delighted with the proposition, but his wife +slightly changed color. + +“Well, that is all that I wanted, and I will be guided by a counsellor +such as you are,” said he, extending his hand to Monte Cristo. +“Therefore let everyone here look upon what has passed today as if it +had not happened, and as though we had never thought of such a thing as +a change in our original plans.” + +“Sir,” said the count, “the world, unjust as it is, will be pleased +with your resolution; your friends will be proud of you, and M. +d’Épinay, even if he took Mademoiselle de Villefort without any dowry, +which he will not do, would be delighted with the idea of entering a +family which could make such sacrifices in order to keep a promise and +fulfil a duty.” + +At the conclusion of these words, the count rose to depart. + +“Are you going to leave us, count?” said Madame de Villefort. + +“I am sorry to say I must do so, madame, I only came to remind you of +your promise for Saturday.” + +“Did you fear that we should forget it?” + +“You are very good, madame, but M. de Villefort has so many important +and urgent occupations.” + +“My husband has given me his word, sir,” said Madame de Villefort; “you +have just seen him resolve to keep it when he has everything to lose, +and surely there is more reason for his doing so where he has +everything to gain.” + +“And,” said Villefort, “is it at your house in the Champs-Élysées that +you receive your visitors?” + +“No,” said Monte Cristo, “which is precisely the reason which renders +your kindness more meritorious,—it is in the country.” + +“In the country?” + +“Yes.” + +“Where is it, then? Near Paris, is it not?” + +“Very near, only half a league from the Barriers,—it is at Auteuil.” + +“At Auteuil?” said Villefort; “true, Madame de Villefort told me you +lived at Auteuil, since it was to your house that she was taken. And in +what part of Auteuil do you reside?” + +“Rue de la Fontaine.” + +“Rue de la Fontaine!” exclaimed Villefort in an agitated tone; “at what +number?” + +“No. 28.” + +“Then,” cried Villefort, “was it you who bought M. de Saint-Méran’s +house!” + +“Did it belong to M. de Saint-Méran?” demanded Monte Cristo. + +“Yes,” replied Madame de Villefort; “and, would you believe it, +count——” + +“Believe what?” + +“You think this house pretty, do you not?” + +“I think it charming.” + +“Well, my husband would never live in it.” + +“Indeed?” returned Monte Cristo, “that is a prejudice on your part, M. +de Villefort, for which I am quite at a loss to account.” + +“I do not like Auteuil, sir,” said the procureur, making an evident +effort to appear calm. + +“But I hope you will not carry your antipathy so far as to deprive me +of the pleasure of your company, sir,” said Monte Cristo. + +“No, count,—I hope—I assure you I shall do my best,” stammered +Villefort. + +“Oh,” said Monte Cristo, “I allow of no excuse. On Saturday, at six +o’clock. I shall be expecting you, and if you fail to come, I shall +think—for how do I know to the contrary?—that this house, which has +remained uninhabited for twenty years, must have some gloomy tradition +or dreadful legend connected with it.” + +“I will come, count,—I will be sure to come,” said Villefort eagerly. + +“Thank you,” said Monte Cristo; “now you must permit me to take my +leave of you.” + +“You said before that you were obliged to leave us, monsieur,” said +Madame de Villefort, “and you were about to tell us why when your +attention was called to some other subject.” + +“Indeed madame,” said Monte Cristo: “I scarcely know if I dare tell you +where I am going.” + +“Nonsense; say on.” + +“Well, then, it is to see a thing on which I have sometimes mused for +hours together.” + +“What is it?” + +“A telegraph. So now I have told my secret.” + +“A telegraph?” repeated Madame de Villefort. + +“Yes, a telegraph. I had often seen one placed at the end of a road on +a hillock, and in the light of the sun its black arms, bending in every +direction, always reminded me of the claws of an immense beetle, and I +assure you it was never without emotion that I gazed on it, for I could +not help thinking how wonderful it was that these various signs should +be made to cleave the air with such precision as to convey to the +distance of three hundred leagues the ideas and wishes of a man sitting +at a table at one end of the line to another man similarly placed at +the opposite extremity, and all this effected by a simple act of +volition on the part of the sender of the message. I began to think of +genii, sylphs, gnomes, in short, of all the ministers of the occult +sciences, until I laughed aloud at the freaks of my own imagination. +Now, it never occurred to me to wish for a nearer inspection of these +large insects, with their long black claws, for I always feared to find +under their stone wings some little human genius fagged to death with +cabals, factions, and government intrigues. But one fine day I learned +that the mover of this telegraph was only a poor wretch, hired for +twelve hundred francs a year, and employed all day, not in studying the +heavens like an astronomer, or in gazing on the water like an angler, +or even in enjoying the privilege of observing the country around him, +but all his monotonous life was passed in watching his white-bellied, +black-clawed fellow insect, four or five leagues distant from him. At +length I felt a desire to study this living chrysalis more closely, and +to endeavor to understand the secret part played by these insect-actors +when they occupy themselves simply with pulling different pieces of +string.” + +30191m + + + +“And are you going there?” + +“I am.” + +“What telegraph do you intend visiting? that of the home department, or +of the observatory?” + +“Oh, no; I should find there people who would force me to understand +things of which I would prefer to remain ignorant, and who would try to +explain to me, in spite of myself, a mystery which even they do not +understand. _Ma foi!_ I should wish to keep my illusions concerning +insects unimpaired; it is quite enough to have those dissipated which I +had formed of my fellow-creatures. I shall, therefore, not visit either +of these telegraphs, but one in the open country where I shall find a +good-natured simpleton, who knows no more than the machine he is +employed to work.” + +“You are a singular man,” said Villefort. + +“What line would you advise me to study?” + +“The one that is most in use just at this time.” + +“The Spanish one, you mean, I suppose?” + +“Yes; should you like a letter to the minister that they might explain +to you——” + +“No,” said Monte Cristo; “since, as I told you before, I do not wish to +comprehend it. The moment I understand it there will no longer exist a +telegraph for me; it will be nothing more than a sign from M. Duchâtel, +or from M. Montalivet, transmitted to the prefect of Bayonne, mystified +by two Greek words, _têle_, _graphein_. It is the insect with black +claws, and the awful word which I wish to retain in my imagination in +all its purity and all its importance.” + +“Go then; for in the course of two hours it will be dark, and you will +not be able to see anything.” + +“_Ma foi!_ you frighten me. Which is the nearest way? Bayonne?” + +“Yes; the road to Bayonne.” + +“And afterwards the road to Châtillon?” + +“Yes.” + +“By the tower of Montlhéry, you mean?” + +“Yes.” + +“Thank you. Good-bye. On Saturday I will tell you my impressions +concerning the telegraph.” + +At the door the count was met by the two notaries, who had just +completed the act which was to disinherit Valentine, and who were +leaving under the conviction of having done a thing which could not +fail of redounding considerably to their credit. + + + + Chapter 61. How a Gardener May Get Rid of the Dormice that Eat His + Peaches + +Not on the same night as he had stated, but the next morning, the Count +of Monte Cristo went out by the Barrière d’Enfer, taking the road to +Orléans. Leaving the village of Linas, without stopping at the +telegraph, which flourished its great bony arms as he passed, the count +reached the tower of Montlhéry, situated, as everyone knows, upon the +highest point of the plain of that name. At the foot of the hill the +count dismounted and began to ascend by a little winding path, about +eighteen inches wide; when he reached the summit he found himself +stopped by a hedge, upon which green fruit had succeeded to red and +white flowers. + +Monte Cristo looked for the entrance to the enclosure, and was not long +in finding a little wooden gate, working on willow hinges, and fastened +with a nail and string. The count soon mastered the mechanism, the gate +opened, and he then found himself in a little garden, about twenty feet +long by twelve wide, bounded on one side by part of the hedge, which +contained the ingenious contrivance we have called a gate, and on the +other by the old tower, covered with ivy and studded with wall-flowers. + +No one would have thought in looking at this old, weather-beaten, +floral-decked tower (which might be likened to an elderly dame dressed +up to receive her grandchildren at a birthday feast) that it would have +been capable of telling strange things, if,—in addition to the menacing +ears which the proverb says all walls are provided with,—it had also a +voice. + +The garden was crossed by a path of red gravel, edged by a border of +thick box, of many years’ growth, and of a tone and color that would +have delighted the heart of Delacroix, our modern Rubens. This path was +formed in the shape of the figure of 8, thus, in its windings, making a +walk of sixty feet in a garden of only twenty. + +Never had Flora, the fresh and smiling goddess of gardeners, been +honored with a purer or more scrupulous worship than that which was +paid to her in this little enclosure. In fact, of the twenty rose-trees +which formed the _parterre_, not one bore the mark of the slug, nor +were there evidences anywhere of the clustering aphis which is so +destructive to plants growing in a damp soil. And yet it was not +because the damp had been excluded from the garden; the earth, black as +soot, the thick foliage of the trees betrayed its presence; besides, +had natural humidity been wanting, it could have been immediately +supplied by artificial means, thanks to a tank of water, sunk in one of +the corners of the garden, and upon which were stationed a frog and a +toad, who, from antipathy, no doubt, always remained on the two +opposite sides of the basin. There was not a blade of grass to be seen +in the paths, or a weed in the flower-beds; no fine lady ever trained +and watered her geraniums, her cacti, and her rhododendrons, in her +porcelain _jardinière_ with more pains than this hitherto unseen +gardener bestowed upon his little enclosure. + +Monte Cristo stopped after having closed the gate and fastened the +string to the nail, and cast a look around. + +“The man at the telegraph,” said he, “must either engage a gardener or +devote himself passionately to agriculture.” + +Suddenly he struck against something crouching behind a wheelbarrow +filled with leaves; the something rose, uttering an exclamation of +astonishment, and Monte Cristo found himself facing a man about fifty +years old, who was plucking strawberries, which he was placing upon +grape leaves. He had twelve leaves and about as many strawberries, +which, on rising suddenly, he let fall from his hand. + +“You are gathering your crop, sir?” said Monte Cristo, smiling. + +30193m + + + +“Excuse me, sir,” replied the man, raising his hand to his cap; “I am +not up there, I know, but I have only just come down.” + +“Do not let me interfere with you in anything, my friend,” said the +count; “gather your strawberries, if, indeed, there are any left.” + +“I have ten left,” said the man, “for here are eleven, and I had +twenty-one, five more than last year. But I am not surprised; the +spring has been warm this year, and strawberries require heat, sir. +This is the reason that, instead of the sixteen I had last year, I have +this year, you see, eleven, already plucked—twelve, thirteen, fourteen, +fifteen, sixteen, seventeen, eighteen. Ah, I miss three, they were here +last night, sir—I am sure they were here—I counted them. It must be the +son of Mère Simon who has stolen them; I saw him strolling about here +this morning. Ah, the young rascal—stealing in a garden—he does not +know where that may lead him to.” + +“Certainly, it is wrong,” said Monte Cristo, “but you should take into +consideration the youth and greediness of the delinquent.” + +“Of course,” said the gardener, “but that does not make it the less +unpleasant. But, sir, once more I beg pardon; perhaps you are an +officer that I am detaining here.” And he glanced timidly at the +count’s blue coat. + +30197m + + + +“Calm yourself, my friend,” said the count, with the smile which he +made at will either terrible or benevolent, and which now expressed +only the kindliest feeling; “I am not an inspector, but a traveller, +brought here by a curiosity he half repents of, since he causes you to +lose your time.” + +“Ah, my time is not valuable,” replied the man with a melancholy smile. +“Still it belongs to government, and I ought not to waste it; but, +having received the signal that I might rest for an hour” (here he +glanced at the sun-dial, for there was everything in the enclosure of +Montlhéry, even a sun-dial), “and having ten minutes before me, and my +strawberries being ripe, when a day longer—by-the-by, sir, do you think +dormice eat them?” + +“Indeed, I should think not,” replied Monte Cristo; “dormice are bad +neighbors for us who do not eat them preserved, as the Romans did.” + +“What? Did the Romans eat them?” said the gardener—“ate dormice?” + +“I have read so in Petronius,” said the count. + +“Really? They can’t be nice, though they do say ‘as fat as a dormouse.’ +It is not a wonder they are fat, sleeping all day, and only waking to +eat all night. Listen. Last year I had four apricots—they stole one, I +had one nectarine, only one—well, sir, they ate half of it on the wall; +a splendid nectarine—I never ate a better.” + +“You ate it?” + +“That is to say, the half that was left—you understand; it was +exquisite, sir. Ah, those gentlemen never choose the worst morsels; +like Mère Simon’s son, who has not chosen the worst strawberries. But +this year,” continued the horticulturist, “I’ll take care it shall not +happen, even if I should be forced to sit by the whole night to watch +when the strawberries are ripe.” + +Monte Cristo had seen enough. Every man has a devouring passion in his +heart, as every fruit has its worm; that of the telegraph man was +horticulture. He began gathering the grape-leaves which screened the +sun from the grapes, and won the heart of the gardener. + +“Did you come here, sir, to see the telegraph?” he said. + +“Yes, if it isn’t contrary to the rules.” + +“Oh, no,” said the gardener; “not in the least, since there is no +danger that anyone can possibly understand what we are saying.” + +“I have been told,” said the count, “that you do not always yourselves +understand the signals you repeat.” + +“That is true, sir, and that is what I like best,” said the man, +smiling. + +“Why do you like that best?” + +“Because then I have no responsibility. I am a machine then, and +nothing else, and so long as I work, nothing more is required of me.” + +“Is it possible,” said Monte Cristo to himself, “that I can have met +with a man that has no ambition? That would spoil my plans.” + +“Sir,” said the gardener, glancing at the sun-dial, “the ten minutes +are almost up; I must return to my post. Will you go up with me?” + +“I follow you.” + +Monte Cristo entered the tower, which was divided into three stories. +The tower contained implements, such as spades, rakes, watering-pots, +hung against the wall; this was all the furniture. The second was the +man’s conventional abode, or rather sleeping-place; it contained a few +poor articles of household furniture—a bed, a table, two chairs, a +stone pitcher—and some dry herbs, hung up to the ceiling, which the +count recognized as sweet peas, and of which the good man was +preserving the seeds; he had labelled them with as much care as if he +had been master botanist in the Jardin des Plantes. + +“Does it require much study to learn the art of telegraphing?” asked +Monte Cristo. + +“The study does not take long; it was acting as a supernumerary that +was so tedious.” + +“And what is the pay?” + +“A thousand francs, sir.” + +“It is nothing.” + +“No; but then we are lodged, as you perceive.” + +Monte Cristo looked at the room. They passed to the third story; it was +the telegraph room. Monte Cristo looked in turn at the two iron handles +by which the machine was worked. “It is very interesting,” he said, +“but it must be very tedious for a lifetime.” + +“Yes. At first my neck was cramped with looking at it, but at the end +of a year I became used to it; and then we have our hours of +recreation, and our holidays.” + +“Holidays?” + +“Yes.” + +“When?” + +“When we have a fog.” + +“Ah, to be sure.” + +“Those are indeed holidays to me; I go into the garden, I plant, I +prune, I trim, I kill the insects all day long.” + +“How long have you been here?” + +“Ten years, and five as a supernumerary make fifteen.” + +“You are——” + +“Fifty-five years old.” + +“How long must you have served to claim the pension?” + +“Oh, sir, twenty-five years.” + +“And how much is the pension?” + +“A hundred crowns.” + +“Poor humanity!” murmured Monte Cristo. + +“What did you say, sir?” asked the man. + +“I was saying it was very interesting.” + +“What was?” + +“All you were showing me. And you really understand none of these +signals?” + +“None at all.” + +“And have you never tried to understand them?” + +“Never. Why should I?” + +“But still there are some signals only addressed to you.” + +“Certainly.” + +“And do you understand them?” + +“They are always the same.” + +“And they mean——” + +“‘_Nothing new; You have an hour;_’ or ‘_Tomorrow_.’” + +“This is simple enough,” said the count; “but look, is not your +correspondent putting itself in motion?” + +“Ah, yes; thank you, sir.” + +“And what is it saying—anything you understand?” + +“Yes; it asks if I am ready.” + +“And you reply?” + +“By the same sign, which, at the same time, tells my right-hand +correspondent that I am ready, while it gives notice to my left-hand +correspondent to prepare in his turn.” + +“It is very ingenious,” said the count. + +“You will see,” said the man proudly; “in five minutes he will speak.” + +“I have, then, five minutes,” said Monte Cristo to himself; “it is more +time than I require. My dear sir, will you allow me to ask you a +question?” + +“What is it, sir?” + +“You are fond of gardening?” + +“Passionately.” + +“And you would be pleased to have, instead of this terrace of twenty +feet, an enclosure of two acres?” + +“Sir, I should make a terrestrial paradise of it.” + +“You live badly on your thousand francs?” + +“Badly enough; but yet I do live.” + +“Yes; but you have a wretchedly small garden.” + +“True, the garden is not large.” + +“And, then, such as it is, it is filled with dormice, who eat +everything.” + +“Ah, they are my scourges.” + +“Tell me, should you have the misfortune to turn your head while your +right-hand correspondent was telegraphing——” + +“I should not see him.” + +“Then what would happen?” + +“I could not repeat the signals.” + +“And then?” + +“Not having repeated them, through negligence, I should be fined.” + +“How much?” + +“A hundred francs.” + +“The tenth of your income—that would be fine work.” + +“Ah!” said the man. + +“Has it ever happened to you?” said Monte Cristo. + +“Once, sir, when I was grafting a rose-tree.” + +“Well, suppose you were to alter a signal, and substitute another?” + +“Ah, that is another case; I should be turned off, and lose my +pension.” + +“Three hundred francs?” + +“A hundred crowns, yes, sir; so you see that I am not likely to do any +of these things.” + +“Not even for fifteen years’ wages? Come, it is worth thinking about?” + +“For fifteen thousand francs?” + +“Yes.” + +“Sir, you alarm me.” + +“Nonsense.” + +“Sir, you are tempting me?” + +“Just so; fifteen thousand francs, do you understand?” + +“Sir, let me see my right-hand correspondent.” + +“On the contrary, do not look at him, but at this.” + +“What is it?” + +“What? Do you not know these bits of paper?” + +“Bank-notes!” + +“Exactly; there are fifteen of them.” + +“And whose are they?” + +“Yours, if you like.” + +“Mine?” exclaimed the man, half-suffocated. + +“Yes; yours—your own property.” + +“Sir, my right-hand correspondent is signalling.” + +“Let him signal.” + +“Sir, you have distracted me; I shall be fined.” + +“That will cost you a hundred francs; you see it is your interest to +take my bank-notes.” + +“Sir, my right-hand correspondent redoubles his signals; he is +impatient.” + +“Never mind—take these;” and the count placed the packet in the man’s +hands. “Now this is not all,” he said; “you cannot live upon your +fifteen thousand francs.” + +“I shall still have my place.” + +“No, you will lose it, for you are going to alter your correspondent’s +message.” + +“Oh, sir, what are you proposing?” + +“A jest.” + +“Sir, unless you force me——” + +“I think I can effectually force you;” and Monte Cristo drew another +packet from his pocket. “Here are ten thousand more francs,” he said, +“with the fifteen thousand already in your pocket, they will make +twenty-five thousand. With five thousand you can buy a pretty little +house with two acres of land; the remaining twenty thousand will bring +you in a thousand francs a year.” + +“A garden with two acres of land!” + +“And a thousand francs a year.” + +“Oh, heavens!” + +“Come, take them,” and Monte Cristo forced the bank-notes into his +hand. + +“What am I to do?” + +“Nothing very difficult.” + +“But what is it?” + +“To repeat these signs.” Monte Cristo took a paper from his pocket, +upon which were drawn three signs, with numbers to indicate the order +in which they were to be worked. + +“There, you see it will not take long.” + +“Yes; but——” + +“Do this, and you will have nectarines and all the rest.” + +The shot told; red with fever, while the large drops fell from his +brow, the man executed, one after the other, the three signs given by +the count, in spite of the frightful contortions of the right-hand +correspondent, who, not understanding the change, began to think the +gardener had gone mad. As to the left-hand one, he conscientiously +repeated the same signals, which were finally transmitted to the +Minister of the Interior. + +“Now you are rich,” said Monte Cristo. + +“Yes,” replied the man, “but at what a price!” + +“Listen, friend,” said Monte Cristo. “I do not wish to cause you any +remorse; believe me, then, when I swear to you that you have wronged no +man, but on the contrary have benefited mankind.” + +The man looked at the bank-notes, felt them, counted them, turned pale, +then red, then rushed into his room to drink a glass of water, but he +had no time to reach the water-jug, and fainted in the midst of his +dried herbs. Five minutes after the new telegram reached the minister, +Debray had the horses put to his carriage, and drove to Danglars’ +house. + +“Has your husband any Spanish bonds?” he asked of the baroness. + +“I think so, indeed! He has six millions’ worth.” + +“He must sell them at whatever price.” + +“Why?” + +“Because Don Carlos has fled from Bourges, and has returned to Spain.” + +30203m + + + +“How do you know?” Debray shrugged his shoulders. + +“The idea of asking how I hear the news,” he said. + +The baroness did not wait for a repetition; she ran to her husband, who +immediately hastened to his agent, and ordered him to sell at any +price. When it was seen that Danglars sold, the Spanish funds fell +directly. Danglars lost five hundred thousand francs; but he rid +himself of all his Spanish shares. The same evening the following was +read in _Le Messager_: + +“[By telegraph.] The king, Don Carlos, has escaped the vigilance of his +guardians at Bourges, and has returned to Spain by the Catalonian +frontier. Barcelona has risen in his favor.” + +All that evening nothing was spoken of but the foresight of Danglars, +who had sold his shares, and of the luck of the stock-jobber, who only +lost five hundred thousand francs by such a blow. Those who had kept +their shares, or bought those of Danglars, looked upon themselves as +ruined, and passed a very bad night. Next morning _Le Moniteur_ +contained the following: + +“It was without any foundation that _Le Messager_ yesterday announced +the flight of Don Carlos and the revolt of Barcelona. The king (Don +Carlos) has not left Bourges, and the peninsula is in the enjoyment of +profound peace. A telegraphic signal, improperly interpreted, owing to +the fog, was the cause of this error.” + +The funds rose one per cent higher than before they had fallen. This, +reckoning his loss, and what he had missed gaining, made the difference +of a million to Danglars. + +“Good,” said Monte Cristo to Morrel, who was at his house when the news +arrived of the strange reverse of fortune of which Danglars had been +the victim, “I have just made a discovery for twenty-five thousand +francs, for which I would have paid a hundred thousand.” + +“What have you discovered?” asked Morrel. + +“I have just discovered how a gardener may get rid of the dormice that +eat his peaches.” + + + + Chapter 62. Ghosts + +At first sight, the exterior of the house at Auteuil gave no +indications of splendor, nothing one would expect from the destined +residence of the magnificent Count of Monte Cristo; but this simplicity +was according to the will of its master, who positively ordered nothing +to be altered outside. The splendor was within. Indeed, almost before +the door opened, the scene changed. + +M. Bertuccio had outdone himself in the taste displayed in furnishing, +and in the rapidity with which it was executed. It is told that the Duc +d’Antin removed in a single night a whole avenue of trees that annoyed +Louis XIV.; in three days M. Bertuccio planted an entirely bare court +with poplars, large spreading sycamores to shade the different parts of +the house, and in the foreground, instead of the usual paving-stones, +half hidden by the grass, there extended a lawn but that morning laid +down, and upon which the water was yet glistening. For the rest, the +orders had been issued by the count; he himself had given a plan to +Bertuccio, marking the spot where each tree was to be planted, and the +shape and extent of the lawn which was to take the place of the +paving-stones. + +Thus the house had become unrecognizable, and Bertuccio himself +declared that he scarcely knew it, encircled as it was by a framework +of trees. The overseer would not have objected, while he was about it, +to have made some improvements in the garden, but the count had +positively forbidden it to be touched. Bertuccio made amends, however, +by loading the antechambers, staircases, and mantle-pieces with +flowers. + +What, above all, manifested the shrewdness of the steward, and the +profound science of the master, the one in carrying out the ideas of +the other, was that this house which appeared only the night before so +sad and gloomy, impregnated with that sickly smell one can almost fancy +to be the smell of time, had in a single day acquired the aspect of +life, was scented with its master’s favorite perfumes, and had the very +light regulated according to his wish. When the count arrived, he had +under his touch his books and arms, his eyes rested upon his favorite +pictures; his dogs, whose caresses he loved, welcomed him in the +antechamber; the birds, whose songs delighted him, cheered him with +their music; and the house, awakened from its long sleep, like the +sleeping beauty in the wood, lived, sang, and bloomed like the houses +we have long cherished, and in which, when we are forced to leave them, +we leave a part of our souls. + +The servants passed gayly along the fine courtyard; some, belonging to +the kitchens, gliding down the stairs, restored but the previous day, +as if they had always inhabited the house; others filling the +coach-houses, where the equipages, encased and numbered, appeared to +have been installed for the last fifty years; and in the stables the +horses replied with neighs to the grooms, who spoke to them with much +more respect than many servants pay their masters. + +The library was divided into two parts on either side of the wall, and +contained upwards of two thousand volumes; one division was entirely +devoted to novels, and even the volume which had been published but the +day before was to be seen in its place in all the dignity of its red +and gold binding. + +On the other side of the house, to match with the library, was the +conservatory, ornamented with rare flowers, that bloomed in china jars; +and in the midst of the greenhouse, marvellous alike to sight and +smell, was a billiard-table which looked as if it had been abandoned +during the past hour by players who had left the balls on the cloth. + +One chamber alone had been respected by the magnificent Bertuccio. +Before this room, to which you could ascend by the grand, and go out by +the back staircase, the servants passed with curiosity, and Bertuccio +with terror. + +At five o’clock precisely, the count arrived before the house at +Auteuil, followed by Ali. Bertuccio was awaiting this arrival with +impatience, mingled with uneasiness; he hoped for some compliments, +while, at the same time, he feared to have frowns. Monte Cristo +descended into the courtyard, walked all over the house, without giving +any sign of approbation or pleasure, until he entered his bedroom, +situated on the opposite side to the closed room; then he approached a +little piece of furniture, made of rosewood, which he had noticed at a +previous visit. + +“That can only be to hold gloves,” he said. + +“Will your excellency deign to open it?” said the delighted Bertuccio, +“and you will find gloves in it.” + +Elsewhere the count found everything he required—smelling-bottles, +cigars, knick-knacks. + +30207m + + + +“Good,” he said; and M. Bertuccio left enraptured, so great, so +powerful, and real was the influence exercised by this man over all who +surrounded him. + +At precisely six o’clock the clatter of horses’ hoofs was heard at the +entrance door; it was our captain of Spahis, who had arrived on Médéah. +“I am sure I am the first,” cried Morrel; “I did it on purpose to have +you a minute to myself, before everyone came. Julie and Emmanuel have a +thousand things to tell you. Ah, really this is magnificent! But tell +me, count, will your people take care of my horse?” + +“Do not alarm yourself, my dear Maximilian—they understand.” + +“I mean, because he wants petting. If you had seen at what a pace he +came—like the wind!” + +“I should think so,—a horse that cost 5,000 francs!” said Monte Cristo, +in the tone which a father would use towards a son. + +“Do you regret them?” asked Morrel, with his open laugh. + +“I? Certainly not,” replied the count. “No; I should only regret if the +horse had not proved good.” + +“It is so good, that I have distanced M. de Château-Renaud, one of the +best riders in France, and M. Debray, who both mount the minister’s +Arabians; and close on their heels are the horses of Madame Danglars, +who always go at six leagues an hour.” + +“Then they follow you?” asked Monte Cristo. + +“See, they are here.” And at the same minute a carriage with smoking +horses, accompanied by two mounted gentlemen, arrived at the gate, +which opened before them. The carriage drove round, and stopped at the +steps, followed by the horsemen. + +The instant Debray had touched the ground, he was at the carriage-door. +He offered his hand to the baroness, who, descending, took it with a +peculiarity of manner imperceptible to everyone but Monte Cristo. But +nothing escaped the count’s notice, and he observed a little note, +passed with the facility that indicates frequent practice, from the +hand of Madame Danglars to that of the minister’s secretary. + +After his wife the banker descended, as pale as though he had issued +from his tomb instead of his carriage. + +Madame Danglars threw a rapid and inquiring glance which could only be +interpreted by Monte Cristo, around the courtyard, over the peristyle, +and across the front of the house, then, repressing a slight emotion, +which must have been seen on her countenance if she had not kept her +color, she ascended the steps, saying to Morrel: + +“Sir, if you were a friend of mine, I should ask you if you would sell +your horse.” + +Morrel smiled with an expression very like a grimace, and then turned +round to Monte Cristo, as if to ask him to extricate him from his +embarrassment. The count understood him. + +“Ah, madame,” he said, “why did you not make that request of me?” + +“With you, sir,” replied the baroness, “one can wish for nothing, one +is so sure to obtain it. If it were so with M. Morrel——” + +“Unfortunately,” replied the count, “I am witness that M. Morrel cannot +give up his horse, his honor being engaged in keeping it.” + +“How so?” + +“He laid a wager he would tame Médéah in the space of six months. You +understand now that if he were to get rid of the animal before the time +named, he would not only lose his bet, but people would say he was +afraid; and a brave captain of Spahis cannot risk this, even to gratify +a pretty woman, which is, in my opinion, one of the most sacred +obligations in the world.” + +“You see my position, madame,” said Morrel, bestowing a grateful smile +on Monte Cristo. + +“It seems to me,” said Danglars, in his coarse tone, ill-concealed by a +forced smile, “that you have already got horses enough.” + +Madame Danglars seldom allowed remarks of this kind to pass unnoticed, +but, to the surprise of the young people, she pretended not to hear it, +and said nothing. Monte Cristo smiled at her unusual humility, and +showed her two immense porcelain jars, over which wound marine plants, +of a size and delicacy that nature alone could produce. The baroness +was astonished. + +“Why,” said she, “you could plant one of the chestnut-trees in the +Tuileries inside! How can such enormous jars have been manufactured?” + +“Ah! madame,” replied Monte Cristo, “you must not ask of us, the +manufacturers of fine porcelain, such a question. It is the work of +another age, constructed by the genii of earth and water.” + +“How so?—at what period can that have been?” + +“I do not know; I have only heard that an emperor of China had an oven +built expressly, and that in this oven twelve jars like this were +successively baked. Two broke, from the heat of the fire; the other ten +were sunk three hundred fathoms deep into the sea. The sea, knowing +what was required of her, threw over them her weeds, encircled them +with coral, and encrusted them with shells; the whole was cemented by +two hundred years beneath these almost impervious depths, for a +revolution carried away the emperor who wished to make the trial, and +only left the documents proving the manufacture of the jars and their +descent into the sea. At the end of two hundred years the documents +were found, and they thought of bringing up the jars. Divers descended +in machines, made expressly on the discovery, into the bay where they +were thrown; but of ten three only remained, the rest having been +broken by the waves. I am fond of these jars, upon which, perhaps, +misshapen, frightful monsters have fixed their cold, dull eyes, and in +which myriads of small fish have slept, seeking a refuge from the +pursuit of their enemies.” + +Meanwhile, Danglars, who had cared little for curiosities, was +mechanically tearing off the blossoms of a splendid orange-tree, one +after another. When he had finished with the orange-tree, he began at +the cactus; but this, not being so easily plucked as the orange-tree, +pricked him dreadfully. He shuddered, and rubbed his eyes as though +awaking from a dream. + +“Sir,” said Monte Cristo to him, “I do not recommend my pictures to +you, who possess such splendid paintings; but, nevertheless, here are +two by Hobbema, a Paul Potter, a Mieris, two by Gerard Douw, a Raphael, +a Van Dyck, a Zurbaran, and two or three by Murillo, worth looking at.” + +“Stay,” said Debray; “I recognize this Hobbema.” + +“Ah, indeed!” + +“Yes; it was proposed for the Museum.” + +“Which, I believe, does not contain one?” said Monte Cristo. + +“No; and yet they refused to buy it.” + +“Why?” said Château-Renaud. + +“You pretend not to know,—because government was not rich enough.” + +“Ah, pardon me,” said Château-Renaud; “I have heard of these things +every day during the last eight years, and I cannot understand them +yet.” + +“You will, by and by,” said Debray. + +“I think not,” replied Château-Renaud. + +“Major Bartolomeo Cavalcanti and Count Andrea Cavalcanti,” announced +Baptistin. + +A black satin stock, fresh from the maker’s hands, gray moustaches, a +bold eye, a major’s uniform, ornamented with three medals and five +crosses—in fact, the thorough bearing of an old soldier—such was the +appearance of Major Bartolomeo Cavalcanti, that tender father with whom +we are already acquainted. Close to him, dressed in entirely new +clothes, advanced smilingly Count Andrea Cavalcanti, the dutiful son, +whom we also know. The three young people were talking together. On the +entrance of the new-comers, their eyes glanced from father to son, and +then, naturally enough, rested on the latter, whom they began +criticising. + +“Cavalcanti!” said Debray. + +“A fine name,” said Morrel. + +“Yes,” said Château-Renaud, “these Italians are well named and badly +dressed.” + +“You are fastidious, Château-Renaud,” replied Debray; “those clothes +are well cut and quite new.” + +“That is just what I find fault with. That gentleman appears to be well +dressed for the first time in his life.” + +“Who are those gentlemen?” asked Danglars of Monte Cristo. + +“You heard—Cavalcanti.” + +“That tells me their name, and nothing else.” + +“Ah! true. You do not know the Italian nobility; the Cavalcanti are all +descended from princes.” + +“Have they any fortune?” + +“An enormous one.” + +“What do they do?” + +“Try to spend it all. They have some business with you, I think, from +what they told me the day before yesterday. I, indeed, invited them +here today on your account. I will introduce you to them.” + +“But they appear to speak French with a very pure accent,” said +Danglars. + +“The son has been educated in a college in the south; I believe near +Marseilles. You will find him quite enthusiastic.” + +“Upon what subject?” asked Madame Danglars. + +“The French ladies, madame. He has made up his mind to take a wife from +Paris.” + +“A fine idea that of his,” said Danglars, shrugging his shoulders. +Madame Danglars looked at her husband with an expression which, at any +other time, would have indicated a storm, but for the second time she +controlled herself. + +“The baron appears thoughtful today,” said Monte Cristo to her; “are +they going to put him in the ministry?” + +“Not yet, I think. More likely he has been speculating on the Bourse, +and has lost money.” + +“M. and Madame de Villefort,” cried Baptistin. + +They entered. M. de Villefort, notwithstanding his self-control, was +visibly affected, and when Monte Cristo touched his hand, he felt it +tremble. + +“Certainly, women alone know how to dissimulate,” said Monte Cristo to +himself, glancing at Madame Danglars, who was smiling on the procureur, +and embracing his wife. + +After a short time, the count saw Bertuccio, who, until then, had been +occupied on the other side of the house, glide into an adjoining room. +He went to him. + +“What do you want, M. Bertuccio?” said he. + +“Your excellency has not stated the number of guests.” + +“Ah, true.” + +“How many covers?” + +“Count for yourself.” + +“Is everyone here, your excellency?” + +“Yes.” + +Bertuccio glanced through the door, which was ajar. The count watched +him. “Good heavens!” he exclaimed. + +“What is the matter?” said the count. + +“That woman—that woman!” + +“Which?” + +“The one with a white dress and so many diamonds—the fair one.” + +“Madame Danglars?” + +“I do not know her name; but it is she, sir, it is she!” + +“Whom do you mean?” + +“The woman of the garden!—she that was _enceinte_—she who was walking +while she waited for——” + +Bertuccio stood at the open door, with his eyes starting and his hair +on end. + +“Waiting for whom?” Bertuccio, without answering, pointed to Villefort +with something of the gesture Macbeth uses to point out Banquo. + +“Oh, oh!” he at length muttered, “do you see?” + +“What? Who?” + +“Him!” + +“Him!—M. de Villefort, the king’s attorney? Certainly I see him.” + +“Then I did not kill him?” + +“Really, I think you are going mad, good Bertuccio,” said the count. + +“Then he is not dead?” + +30213m + + + +“No; you see plainly he is not dead. Instead of striking between the +sixth and seventh left ribs, as your countrymen do, you must have +struck higher or lower, and life is very tenacious in these lawyers, or +rather there is no truth in anything you have told me—it was a fright +of the imagination, a dream of your fancy. You went to sleep full of +thoughts of vengeance; they weighed heavily upon your stomach; you had +the nightmare—that’s all. Come, calm yourself, and reckon them up—M. +and Madame de Villefort, two; M. and Madame Danglars, four; M. de +Château-Renaud, M. Debray, M. Morrel, seven; Major Bartolomeo +Cavalcanti, eight.” + +“Eight!” repeated Bertuccio. + +“Stop! You are in a shocking hurry to be off—you forget one of my +guests. Lean a little to the left. Stay! look at M. Andrea Cavalcanti, +the young man in a black coat, looking at Murillo’s ‘Madonna’; now he +is turning.” + +This time Bertuccio would have uttered an exclamation, had not a look +from Monte Cristo silenced him. + +“Benedetto?” he muttered; “fatality!” + +“Half-past six o’clock has just struck, M. Bertuccio,” said the count +severely; “I ordered dinner at that hour, and I do not like to wait;” +and he returned to his guests, while Bertuccio, leaning against the +wall, succeeded in reaching the dining-room. Five minutes afterwards +the doors of the drawing-room were thrown open, and Bertuccio appearing +said, with a violent effort, “The dinner waits.” + +The Count of Monte Cristo offered his arm to Madame de Villefort. “M. +de Villefort,” he said, “will you conduct the Baroness Danglars?” + +Villefort complied, and they passed on to the dining-room. + + + + Chapter 63. The Dinner + +It was evident that one sentiment affected all the guests on entering +the dining-room. Each one asked what strange influence had brought them +to this house, and yet astonished, even uneasy though they were, they +still felt that they would not like to be absent. The recent events, +the solitary and eccentric position of the count, his enormous, nay, +almost incredible fortune, should have made men cautious, and have +altogether prevented ladies visiting a house where there was no one of +their own sex to receive them; and yet curiosity had been enough to +lead them to overleap the bounds of prudence and decorum. + +And all present, even including Cavalcanti and his son, notwithstanding +the stiffness of the one and the carelessness of the other, were +thoughtful, on finding themselves assembled at the house of this +incomprehensible man. Madame Danglars had started when Villefort, on +the count’s invitation, offered his arm; and Villefort felt that his +glance was uneasy beneath his gold spectacles, when he felt the arm of +the baroness press upon his own. None of this had escaped the count, +and even by this mere contact of individuals the scene had already +acquired considerable interest for an observer. + +M. de Villefort had on the right hand Madame Danglars, on his left +Morrel. The count was seated between Madame de Villefort and Danglars; +the other seats were filled by Debray, who was placed between the two +Cavalcanti, and by Château-Renaud, seated between Madame de Villefort +and Morrel. + +The repast was magnificent; Monte Cristo had endeavored completely to +overturn the Parisian ideas, and to feed the curiosity as much as the +appetite of his guests. It was an Oriental feast that he offered to +them, but of such a kind as the Arabian fairies might be supposed to +prepare. Every delicious fruit that the four quarters of the globe +could provide was heaped in vases from China and jars from Japan. Rare +birds, retaining their most brilliant plumage, enormous fish, spread +upon massive silver dishes, together with every wine produced in the +Archipelago, Asia Minor, or the Cape, sparkling in bottles, whose +grotesque shape seemed to give an additional flavor to the draught,—all +these, like one of the displays with which Apicius of old gratified his +guests, passed in review before the eyes of the astonished Parisians, +who understood that it was possible to expend a thousand louis upon a +dinner for ten persons, but only on the condition of eating pearls, +like Cleopatra, or drinking refined gold, like Lorenzo de’ Medici. + +Monte Cristo noticed the general astonishment, and began laughing and +joking about it. + +“Gentlemen,” he said, “you will admit that, when arrived at a certain +degree of fortune, the superfluities of life are all that can be +desired; and the ladies will allow that, after having risen to a +certain eminence of position, the ideal alone can be more exalted. Now, +to follow out this reasoning, what is the marvellous?—that which we do +not understand. What is it that we really desire?—that which we cannot +obtain. Now, to see things which I cannot understand, to procure +impossibilities, these are the study of my life. I gratify my wishes by +two means—my will and my money. I take as much interest in the pursuit +of some whim as you do, M. Danglars, in promoting a new railway line; +you, M. de Villefort, in condemning a culprit to death; you, M. Debray, +in pacifying a kingdom; you, M. de Château-Renaud, in pleasing a woman; +and you, Morrel, in breaking a horse that no one can ride. For example, +you see these two fish; one brought from fifty leagues beyond St. +Petersburg, the other five leagues from Naples. Is it not amusing to +see them both on the same table?” + +“What are the two fish?” asked Danglars. + +“M. Château-Renaud, who has lived in Russia, will tell you the name of +one, and Major Cavalcanti, who is an Italian, will tell you the name of +the other.” + +“This one is, I think, a sterlet,” said Château-Renaud. + +“And that one, if I mistake not, a lamprey.” + +“Just so. Now, M. Danglars, ask these gentlemen where they are caught.” + +“Sterlets,” said Château-Renaud, “are only found in the Volga.” + +“And,” said Cavalcanti, “I know that Lake Fusaro alone supplies +lampreys of that size.” + +“Exactly; one comes from the Volga, and the other from Lake Fusaro.” + +“Impossible!” cried all the guests simultaneously. + +“Well, this is just what amuses me,” said Monte Cristo. “I am like +Nero—_cupitor impossibilium_; and that is what is amusing you at this +moment. This fish, which seems so exquisite to you, is very likely no +better than perch or salmon; but it seemed impossible to procure it, +and here it is.” + +“But how could you have these fish brought to France?” + +“Oh, nothing more easy. Each fish was brought over in a cask—one filled +with river herbs and weeds, the other with rushes and lake plants; they +were placed in a wagon built on purpose, and thus the sterlet lived +twelve days, the lamprey eight, and both were alive when my cook seized +them, killing one with milk and the other with wine. You do not believe +me, M. Danglars!” + +“I cannot help doubting,” answered Danglars with his stupid smile. + +“Baptistin,” said the count, “have the other fish brought in—the +sterlet and the lamprey which came in the other casks, and which are +yet alive.” + +Danglars opened his bewildered eyes; the company clapped their hands. +Four servants carried in two casks covered with aquatic plants, and in +each of which was breathing a fish similar to those on the table. + +“But why have two of each sort?” asked Danglars. + +“Merely because one might have died,” carelessly answered Monte Cristo. + +“You are certainly an extraordinary man,” said Danglars; “and +philosophers may well say it is a fine thing to be rich.” + +“And to have ideas,” added Madame Danglars. + +“Oh, do not give me credit for this, madame; it was done by the Romans, +who much esteemed them, and Pliny relates that they sent slaves from +Ostia to Rome, who carried on their heads fish which he calls the +_mulus_, and which, from the description, must probably be the +goldfish. It was also considered a luxury to have them alive, it being +an amusing sight to see them die, for, when dying, they change color +three or four times, and like the rainbow when it disappears, pass +through all the prismatic shades, after which they were sent to the +kitchen. Their agony formed part of their merit—if they were not seen +alive, they were despised when dead.” + +“Yes,” said Debray, “but then Ostia is only a few leagues from Rome.” + +“True,” said Monte Cristo; “but what would be the use of living +eighteen hundred years after Lucullus, if we can do no better than he +could?” + +The two Cavalcanti opened their enormous eyes, but had the good sense +not to say anything. + +“All this is very extraordinary,” said Château-Renaud; “still, what I +admire the most, I confess, is the marvellous promptitude with which +your orders are executed. Is it not true that you only bought this +house five or six days ago?” + +“Certainly not longer.” + +“Well, I am sure it is quite transformed since last week. If I remember +rightly, it had another entrance, and the courtyard was paved and +empty; while today we have a splendid lawn, bordered by trees which +appear to be a hundred years old.” + +“Why not? I am fond of grass and shade,” said Monte Cristo. + +“Yes,” said Madame de Villefort, “the door was towards the road before, +and on the day of my miraculous escape you brought me into the house +from the road, I remember.” + +“Yes, madame,” said Monte Cristo; “but I preferred having an entrance +which would allow me to see the Bois de Boulogne over my gate.” + +“In four days,” said Morrel; “it is extraordinary!” + +“Indeed,” said Château-Renaud, “it seems quite miraculous to make a new +house out of an old one; for it was very old, and dull too. I recollect +coming for my mother to look at it when M. de Saint-Méran advertised it +for sale two or three years ago.” + +“M. de Saint-Méran?” said Madame de Villefort; “then this house +belonged to M. de Saint-Méran before you bought it?” + +“It appears so,” replied Monte Cristo. + +“Is it possible that you do not know of whom you purchased it?” + +“Quite so; my steward transacts all this business for me.” + +“It is certainly ten years since the house had been occupied,” said +Château-Renaud, “and it was quite melancholy to look at it, with the +blinds closed, the doors locked, and the weeds in the court. Really, if +the house had not belonged to the father-in-law of the procureur, one +might have thought it some accursed place where a horrible crime had +been committed.” + +Villefort, who had hitherto not tasted the three or four glasses of +rare wine which were placed before him, here took one, and drank it +off. Monte Cristo allowed a short time to elapse, and then said: + +“It is singular, baron, but the same idea came across me the first time +I came here; it looked so gloomy I should never have bought it if my +steward had not taken the matter into his own hands. Perhaps the fellow +had been bribed by the notary.” + +“It is probable,” stammered out Villefort, trying to smile; “but I can +assure you that I had nothing to do with any such proceeding. This +house is part of Valentine’s marriage-portion, and M. de Saint-Méran +wished to sell it; for if it had remained another year or two +uninhabited it would have fallen to ruin.” + +It was Morrel’s turn to become pale. + +“There was, above all, one room,” continued Monte Cristo, “very plain +in appearance, hung with red damask, which, I know not why, appeared to +me quite dramatic.” + +“Why so?” said Danglars; “why dramatic?” + +“Can we account for instinct?” said Monte Cristo. “Are there not some +places where we seem to breathe sadness?—why, we cannot tell. It is a +chain of recollections—an idea which carries you back to other times, +to other places—which, very likely, have no connection with the present +time and place. And there is something in this room which reminds me +forcibly of the chamber of the Marquise de Ganges10 or Desdemona. Stay, +since we have finished dinner, I will show it to you, and then we will +take coffee in the garden. After dinner, the play.” + +Monte Cristo looked inquiringly at his guests. Madame de Villefort +rose, Monte Cristo did the same, and the rest followed their example. +Villefort and Madame Danglars remained for a moment, as if rooted to +their seats; they questioned each other with vague and stupid glances. + +“Did you hear?” said Madame Danglars. + +“We must go,” replied Villefort, offering his arm. + +The others, attracted by curiosity, were already scattered in different +parts of the house; for they thought the visit would not be limited to +the one room, and that, at the same time, they would obtain a view of +the rest of the building, of which Monte Cristo had created a palace. +Each one went out by the open doors. Monte Cristo waited for the two +who remained; then, when they had passed, he brought up the rear, and +on his face was a smile, which, if they could have understood it, would +have alarmed them much more than a visit to the room they were about to +enter. They began by walking through the apartments, many of which were +fitted up in the Eastern style, with cushions and divans instead of +beds, and pipes instead of furniture. The drawing-rooms were decorated +with the rarest pictures by the old masters, the boudoirs hung with +draperies from China, of fanciful colors, fantastic design, and +wonderful texture. At length they arrived at the famous room. There was +nothing particular about it, excepting that, although daylight had +disappeared, it was not lighted, and everything in it was +old-fashioned, while the rest of the rooms had been redecorated. These +two causes were enough to give it a gloomy aspect. + +“Oh.” cried Madame de Villefort, “it is really frightful.” + +Madame Danglars tried to utter a few words, but was not heard. Many +observations were made, the import of which was a unanimous opinion +that there was something sinister about the room. + +30221m + + + +“Is it not so?” asked Monte Cristo. “Look at that large clumsy bed, +hung with such gloomy, blood-colored drapery! And those two crayon +portraits, that have faded from the dampness; do they not seem to say, +with their pale lips and staring eyes, ‘We have seen’?” + +Villefort became livid; Madame Danglars fell into a long seat placed +near the chimney. + +“Oh,” said Madame de Villefort, smiling, “are you courageous enough to +sit down upon the very seat perhaps upon which the crime was +committed?” + +Madame Danglars rose suddenly. + +“And then,” said Monte Cristo, “this is not all.” + +“What is there more?” said Debray, who had not failed to notice the +agitation of Madame Danglars. + +“Ah, what else is there?” said Danglars; “for, at present, I cannot say +that I have seen anything extraordinary. What do you say, M. +Cavalcanti?” + +“Ah,” said he, “we have at Pisa, Ugolino’s tower; at Ferrara, Tasso’s +prison; at Rimini, the room of Francesca and Paolo.” + +“Yes, but you have not this little staircase,” said Monte Cristo, +opening a door concealed by the drapery. “Look at it, and tell me what +you think of it.” + +“What a wicked-looking, crooked staircase,” said Château-Renaud with a +smile. + +“I do not know whether the wine of Chios produces melancholy, but +certainly everything appears to me black in this house,” said Debray. + +Ever since Valentine’s dowry had been mentioned, Morrel had been silent +and sad. + +“Can you imagine,” said Monte Cristo, “some Othello or Abbé de Ganges, +one stormy, dark night, descending these stairs step by step, carrying +a load, which he wishes to hide from the sight of man, if not from +God?” + +Madame Danglars half fainted on the arm of Villefort, who was obliged +to support himself against the wall. + +“Ah, madame,” cried Debray, “what is the matter with you? how pale you +look!” + +“It is very evident what is the matter with her,” said Madame de +Villefort; “M. de Monte Cristo is relating horrible stories to us, +doubtless intending to frighten us to death.” + +“Yes,” said Villefort, “really, count, you frighten the ladies.” + +“What is the matter?” asked Debray, in a whisper, of Madame Danglars. + +“Nothing,” she replied with a violent effort. “I want air, that is +all.” + +“Will you come into the garden?” said Debray, advancing towards the +back staircase. + +“No, no,” she answered, “I would rather remain here.” + +“Are you really frightened, madame?” said Monte Cristo. + +“Oh, no, sir,” said Madame Danglars; “but you suppose scenes in a +manner which gives them the appearance of reality.” + +30223m + + + +“Ah, yes,” said Monte Cristo smiling; “it is all a matter of +imagination. Why should we not imagine this the apartment of an honest +mother? And this bed with red hangings, a bed visited by the goddess +Lucina? And that mysterious staircase, the passage through which, not +to disturb their sleep, the doctor and nurse pass, or even the father +carrying the sleeping child?” + +Here Madame Danglars, instead of being calmed by the soft picture, +uttered a groan and fainted. + +“Madame Danglars is ill,” said Villefort; “it would be better to take +her to her carriage.” + +“Oh, _mon Dieu!_” said Monte Cristo, “and I have forgotten my +smelling-bottle!” + +“I have mine,” said Madame de Villefort; and she passed over to Monte +Cristo a bottle full of the same kind of red liquid whose good +properties the count had tested on Edward. + +“Ah,” said Monte Cristo, taking it from her hand. + +“Yes,” she said, “at your advice I have made the trial.” + +“And have you succeeded?” + +“I think so.” + +Madame Danglars was carried into the adjoining room; Monte Cristo +dropped a very small portion of the red liquid upon her lips; she +returned to consciousness. + +“Ah,” she cried, “what a frightful dream!” + +Villefort pressed her hand to let her know it was not a dream. They +looked for M. Danglars, but, as he was not especially interested in +poetical ideas, he had gone into the garden, and was talking with Major +Cavalcanti on the projected railway from Leghorn to Florence. Monte +Cristo seemed in despair. He took the arm of Madame Danglars, and +conducted her into the garden, where they found Danglars taking coffee +between the Cavalcanti. + +“Really, madame,” he said, “did I alarm you much?” + +“Oh, no, sir,” she answered; “but you know, things impress us +differently, according to the mood of our minds.” Villefort forced a +laugh. + +“And then, you know,” he said, “an idea, a supposition, is sufficient.” + +“Well,” said Monte Cristo, “you may believe me if you like, but it is +my opinion that a crime has been committed in this house.” + +“Take care,” said Madame de Villefort, “the king’s attorney is here.” + +“Ah,” replied Monte Cristo, “since that is the case, I will take +advantage of his presence to make my declaration.” + +“Your declaration?” said Villefort. + +“Yes, before witnesses.” + +“Oh, this is very interesting,” said Debray; “if there really has been +a crime, we will investigate it.” + +“There has been a crime,” said Monte Cristo. “Come this way, gentlemen; +come, M. Villefort, for a declaration to be available, should be made +before the competent authorities.” + +He then took Villefort’s arm, and, at the same time, holding that of +Madame Danglars under his own, he dragged the procureur to the +plantain-tree, where the shade was thickest. All the other guests +followed. + +“Stay,” said Monte Cristo, “here, in this very spot” (and he stamped +upon the ground), “I had the earth dug up and fresh mould put in, to +refresh these old trees; well, my man, digging, found a box, or rather, +the iron-work of a box, in the midst of which was the skeleton of a +newly born infant.” + +30225m + + + +Monte Cristo felt the arm of Madame Danglars stiffen, while that of +Villefort trembled. + +“A newly born infant,” repeated Debray; “this affair becomes serious!” + +“Well,” said Château-Renaud, “I was not wrong just now then, when I +said that houses had souls and faces like men, and that their exteriors +carried the impress of their characters. This house was gloomy because +it was remorseful: it was remorseful because it concealed a crime.” + +“Who said it was a crime?” asked Villefort, with a last effort. + +“How? is it not a crime to bury a living child in a garden?” cried +Monte Cristo. “And pray what do you call such an action?” + +“But who said it was buried alive?” + +“Why bury it there if it were dead? This garden has never been a +cemetery.” + +“What is done to infanticides in this country?” asked Major Cavalcanti +innocently. + +“Oh, their heads are soon cut off,” said Danglars. + +“Ah, indeed?” said Cavalcanti. + +“I think so; am I not right, M. de Villefort?” asked Monte Cristo. + +“Yes, count,” replied Villefort, in a voice now scarcely human. + +Monte Cristo, seeing that the two persons for whom he had prepared this +scene could scarcely endure it, and not wishing to carry it too far, +said: + +“Come, gentlemen,—some coffee, we seem to have forgotten it,” and he +conducted the guests back to the table on the lawn. + +“Indeed, count,” said Madame Danglars, “I am ashamed to own it, but all +your frightful stories have so upset me, that I must beg you to let me +sit down;” and she fell into a chair. + +Monte Cristo bowed, and went to Madame de Villefort. + +“I think Madame Danglars again requires your bottle,” he said. But +before Madame de Villefort could reach her friend, the procureur had +found time to whisper to Madame Danglars, “I must speak to you.” + +“When?” + +“Tomorrow.” + +“Where?” + +“In my office, or in the court, if you like,—that is the surest place.” + +“I will be there.” + +At this moment Madame de Villefort approached. + +“Thanks, my dear friend,” said Madame Danglars, trying to smile; “it is +over now, and I am much better.” + + + + Chapter 64. The Beggar + +The evening passed on; Madame de Villefort expressed a desire to return +to Paris, which Madame Danglars had not dared to do, notwithstanding +the uneasiness she experienced. On his wife’s request, M. de Villefort +was the first to give the signal of departure. He offered a seat in his +landau to Madame Danglars, that she might be under the care of his +wife. As for M. Danglars, absorbed in an interesting conversation with +M. Cavalcanti, he paid no attention to anything that was passing. While +Monte Cristo had begged the smelling-bottle of Madame de Villefort, he +had noticed the approach of Villefort to Madame Danglars, and he soon +guessed all that had passed between them, though the words had been +uttered in so low a voice as hardly to be heard by Madame Danglars. +Without opposing their arrangements, he allowed Morrel, Château-Renaud, +and Debray to leave on horseback, and the ladies in M. de Villefort’s +carriage. Danglars, more and more delighted with Major Cavalcanti, had +offered him a seat in his carriage. Andrea Cavalcanti found his tilbury +waiting at the door; the groom, in every respect a caricature of the +English fashion, was standing on tiptoe to hold a large iron-gray +horse. + +Andrea had spoken very little during dinner; he was an intelligent lad, +and he feared to utter some absurdity before so many grand people, +amongst whom, with dilating eyes, he saw the king’s attorney. Then he +had been seized upon by Danglars, who, with a rapid glance at the +stiff-necked old major and his modest son, and taking into +consideration the hospitality of the count, made up his mind that he +was in the society of some nabob come to Paris to finish the worldly +education of his heir. He contemplated with unspeakable delight the +large diamond which shone on the major’s little finger; for the major, +like a prudent man, in case of any accident happening to his +bank-notes, had immediately converted them into an available asset. +Then, after dinner, on the pretext of business, he questioned the +father and son upon their mode of living; and the father and son, +previously informed that it was through Danglars the one was to receive +his 48,000 francs and the other 50,000 livres annually, were so full of +affability that they would have shaken hands even with the banker’s +servants, so much did their gratitude need an object to expend itself +upon. + +One thing above all the rest heightened the respect, nay almost the +veneration, of Danglars for Cavalcanti. The latter, faithful to the +principle of Horace, _nil admirari_, had contented himself with showing +his knowledge by declaring in what lake the best lampreys were caught. +Then he had eaten some without saying a word more; Danglars, therefore, +concluded that such luxuries were common at the table of the +illustrious descendant of the Cavalcanti, who most likely in Lucca fed +upon trout brought from Switzerland, and lobsters sent from England, by +the same means used by the count to bring the lampreys from Lake +Fusaro, and the sterlet from the Volga. Thus it was with much +politeness of manner that he heard Cavalcanti pronounce these words: + +“Tomorrow, sir, I shall have the honor of waiting upon you on +business.” + +“And I, sir,” said Danglars, “shall be most happy to receive you.” + +Upon which he offered to take Cavalcanti in his carriage to the Hôtel +des Princes, if it would not be depriving him of the company of his +son. To this Cavalcanti replied by saying that for some time past his +son had lived independently of him, that he had his own horses and +carriages, and that not having come together, it would not be difficult +for them to leave separately. The major seated himself, therefore, by +the side of Danglars, who was more and more charmed with the ideas of +order and economy which ruled this man, and yet who, being able to +allow his son 60,000 francs a year, might be supposed to possess a +fortune of 500,000 or 600,000 livres. + +As for Andrea, he began, by way of showing off, to scold his groom, +who, instead of bringing the tilbury to the steps of the house, had +taken it to the outer door, thus giving him the trouble of walking +thirty steps to reach it. The groom heard him with humility, took the +bit of the impatient animal with his left hand, and with the right held +out the reins to Andrea, who, taking them from him, rested his polished +boot lightly on the step. + +At that moment a hand touched his shoulder. The young man turned round, +thinking that Danglars or Monte Cristo had forgotten something they +wished to tell him, and had returned just as they were starting. But +instead of either of these, he saw nothing but a strange face, +sunburnt, and encircled by a beard, with eyes brilliant as carbuncles, +and a smile upon the mouth which displayed a perfect set of white +teeth, pointed and sharp as the wolf’s or jackal’s. A red handkerchief +encircled his gray head; torn and filthy garments covered his large +bony limbs, which seemed as though, like those of a skeleton, they +would rattle as he walked; and the hand with which he leaned upon the +young man’s shoulder, and which was the first thing Andrea saw, seemed +of gigantic size. + +30229m + + + +Did the young man recognize that face by the light of the lantern in +his tilbury, or was he merely struck with the horrible appearance of +his interrogator? We cannot say; but only relate the fact that he +shuddered and stepped back suddenly. + +“What do you want of me?” he asked. + +“Pardon me, my friend, if I disturb you,” said the man with the red +handkerchief, “but I want to speak to you.” + +“You have no right to beg at night,” said the groom, endeavoring to rid +his master of the troublesome intruder. + +“I am not begging, my fine fellow,” said the unknown to the servant, +with so ironical an expression of the eye, and so frightful a smile, +that he withdrew; “I only wish to say two or three words to your +master, who gave me a commission to execute about a fortnight ago.” + +“Come,” said Andrea, with sufficient nerve for his servant not to +perceive his agitation, “what do you want? Speak quickly, friend.” + +The man said, in a low voice: “I wish—I wish you to spare me the walk +back to Paris. I am very tired, and as I have not eaten so good a +dinner as you, I can scarcely stand.” + +The young man shuddered at this strange familiarity. + +“Tell me,” he said—“tell me what you want?” + +“Well, then, I want you to take me up in your fine carriage, and carry +me back.” Andrea turned pale, but said nothing. + +“Yes,” said the man, thrusting his hands into his pockets, and looking +impudently at the youth; “I have taken the whim into my head; do you +understand, Master Benedetto?” + +At this name, no doubt, the young man reflected a little, for he went +towards his groom, saying: + +“This man is right; I did indeed charge him with a commission, the +result of which he must tell me; walk to the barrier, there take a cab, +that you may not be too late.” + +The surprised groom retired. + +“Let me at least reach a shady spot,” said Andrea. + +“Oh, as for that, I’ll take you to a splendid place,” said the man with +the handkerchief; and taking the horse’s bit he led the tilbury where +it was certainly impossible for anyone to witness the honor that Andrea +conferred upon him. + +“Don’t think I want the glory of riding in your fine carriage,” said +he; “oh, no, it’s only because I am tired, and also because I have a +little business to talk over with you.” + +“Come, step in,” said the young man. It was a pity this scene had not +occurred in daylight, for it was curious to see this rascal throwing +himself heavily down on the cushion beside the young and elegant driver +of the tilbury. Andrea drove past the last house in the village without +saying a word to his companion, who smiled complacently, as though +well-pleased to find himself travelling in so comfortable a vehicle. +Once out of Auteuil, Andrea looked around, in order to assure himself +that he could neither be seen nor heard, and then, stopping the horse +and crossing his arms before the man, he asked: + +“Now, tell me why you come to disturb my tranquillity?” + +“Let me ask you why you deceived me?” + +“How have I deceived you?” + +“‘How,’ do you ask? When we parted at the Pont du Var, you told me you +were going to travel through Piedmont and Tuscany; but instead of that, +you come to Paris.” + +“How does that annoy you?” + +“It does not; on the contrary, I think it will answer my purpose.” + +“So,” said Andrea, “you are speculating upon me?” + +“What fine words he uses!” + +“I warn you, Master Caderousse, that you are mistaken.” + +“Well, well, don’t be angry, my boy; you know well enough what it is to +be unfortunate; and misfortunes make us jealous. I thought you were +earning a living in Tuscany or Piedmont by acting as _facchino_ or +_cicerone_, and I pitied you sincerely, as I would a child of my own. +You know I always did call you my child.” + +“Come, come, what then?” + +“Patience—patience!” + +“I am patient, but go on.” + +“All at once I see you pass through the barrier with a groom, a +tilbury, and fine new clothes. You must have discovered a mine, or else +become a stockbroker.” + +“So that, as you confess, you are jealous?” + +“No, I am pleased—so pleased that I wished to congratulate you; but as +I am not quite properly dressed, I chose my opportunity, that I might +not compromise you.” + +“Yes, and a fine opportunity you have chosen!” exclaimed Andrea; “you +speak to me before my servant.” + +“How can I help that, my boy? I speak to you when I can catch you. You +have a quick horse, a light tilbury, you are naturally as slippery as +an eel; if I had missed you tonight, I might not have had another +chance.” + +“You see, I do not conceal myself.” + +“You are lucky; I wish I could say as much, for I do conceal myself; +and then I was afraid you would not recognize me, but you did,” added +Caderousse with his unpleasant smile. “It was very polite of you.” + +“Come,” said Andrea, “what do you want?” + +“You do not speak affectionately to me, Benedetto, my old friend, that +is not right—take care, or I may become troublesome.” + +This menace smothered the young man’s passion. He urged the horse again +into a trot. + +“You should not speak so to an old friend like me, Caderousse, as you +said just now; you are a native of Marseilles, I am——” + +“Do you know then now what you are?” + +“No, but I was brought up in Corsica; you are old and obstinate, I am +young and wilful. Between people like us threats are out of place, +everything should be amicably arranged. Is it my fault if fortune, +which has frowned on you, has been kind to me?” + +“Fortune has been kind to you, then? Your tilbury, your groom, your +clothes, are not then hired? Good, so much the better,” said +Caderousse, his eyes sparkling with avarice. + +“Oh, you knew that well enough before speaking to me,” said Andrea, +becoming more and more excited. “If I had been wearing a handkerchief +like yours on my head, rags on my back, and worn-out shoes on my feet, +you would not have known me.” + +“You wrong me, my boy; now I have found you, nothing prevents my being +as well-dressed as anyone, knowing, as I do, the goodness of your +heart. If you have two coats you will give me one of them. I used to +divide my soup and beans with you when you were hungry.” + +“True,” said Andrea. + +“What an appetite you used to have! Is it as good now?” + +“Oh, yes,” replied Andrea, laughing. + +“How did you come to be dining with that prince whose house you have +just left?” + +“He is not a prince; simply a count.” + +“A count, and a rich one too, eh?” + +“Yes; but you had better not have anything to say to him, for he is not +a very good-tempered gentleman.” + +“Oh, be easy! I have no design upon your count, and you shall have him +all to yourself. But,” said Caderousse, again smiling with the +disagreeable expression he had before assumed, “you must pay for it—you +understand?” + +“Well, what do you want?” + +“I think that with a hundred francs a month——” + +“Well?” + +“I could live——” + +“Upon a hundred francs!” + +“Come—you understand me; but that with——” + +“With?” + +“With a hundred and fifty francs I should be quite happy.” + +“Here are two hundred,” said Andrea; and he placed ten gold louis in +the hand of Caderousse. + +30233m + + + +“Good!” said Caderousse. + +“Apply to the steward on the first day of every month, and you will +receive the same sum.” + +“There now, again you degrade me.” + +“How so?” + +“By making me apply to the servants, when I want to transact business +with you alone.” + +“Well, be it so, then. Take it from me then, and so long at least as I +receive my income, you shall be paid yours.” + +“Come, come; I always said you were a fine fellow, and it is a blessing +when good fortune happens to such as you. But tell me all about it?” + +“Why do you wish to know?” asked Cavalcanti. + +“What? do you again defy me?” + +“No; the fact is, I have found my father.” + +“What? a real father?” + +“Yes, so long as he pays me——” + +“You’ll honor and believe him—that’s right. What is his name?” + +“Major Cavalcanti.” + +“Is he pleased with you?” + +“So far I have appeared to answer his purpose.” + +“And who found this father for you?” + +“The Count of Monte Cristo.” + +“The man whose house you have just left?” + +“Yes.” + +“I wish you would try and find me a situation with him as grandfather, +since he holds the money-chest!” + +“Well, I will mention you to him. Meanwhile, what are you going to do?” + +“I?” + +“Yes, you.” + +“It is very kind of you to trouble yourself about me.” + +“Since you interest yourself in my affairs, I think it is now my turn +to ask you some questions.” + +“Ah, true. Well; I shall rent a room in some respectable house, wear a +decent coat, shave every day, and go and read the papers in a café. +Then, in the evening, I shall go to the theatre; I shall look like some +retired baker. That is what I want.” + +“Come, if you will only put this scheme into execution, and be steady, +nothing could be better.” + +“Do you think so, M. Bossuet? And you—what will you become? A peer of +France?” + +“Ah,” said Andrea, “who knows?” + +“Major Cavalcanti is already one, perhaps; but then, hereditary rank is +abolished.” + +“No politics, Caderousse. And now that you have all you want, and that +we understand each other, jump down from the tilbury and disappear.” + +“Not at all, my good friend.” + +“How? Not at all?” + +“Why, just think for a moment; with this red handkerchief on my head, +with scarcely any shoes, no papers, and ten gold napoleons in my +pocket, without reckoning what was there before—making in all about two +hundred francs,—why, I should certainly be arrested at the barriers. +Then, to justify myself, I should say that you gave me the money; this +would cause inquiries, it would be found that I left Toulon without +giving due notice, and I should then be escorted back to the shores of +the Mediterranean. Then I should become simply No. 106, and good-bye to +my dream of resembling the retired baker! No, no, my boy; I prefer +remaining honorably in the capital.” + +Andrea scowled. Certainly, as he had himself owned, the reputed son of +Major Cavalcanti was a wilful fellow. He drew up for a minute, threw a +rapid glance around him, and then his hand fell instantly into his +pocket, where it began playing with a pistol. But, meanwhile, +Caderousse, who had never taken his eyes off his companion, passed his +hand behind his back, and opened a long Spanish knife, which he always +carried with him, to be ready in case of need. The two friends, as we +see, were worthy of and understood one another. Andrea’s hand left his +pocket inoffensively, and was carried up to the red moustache, which it +played with for some time. + +“Good Caderousse,” he said, “how happy you will be.” + +“I will do my best,” said the innkeeper of the Pont du Gard, shutting +up his knife. + +“Well, then, we will go into Paris. But how will you pass through the +barrier without exciting suspicion? It seems to me that you are in more +danger riding than on foot.” + +“Wait,” said Caderousse, “we shall see.” He then took the greatcoat +with the large collar, which the groom had left behind in the tilbury, +and put it on his back; then he took off Cavalcanti’s hat, which he +placed upon his own head, and finally he assumed the careless attitude +of a servant whose master drives himself. + +“But, tell me,” said Andrea, “am I to remain bareheaded?” + +“Pooh,” said Caderousse; “it is so windy that your hat can easily +appear to have blown off.” + +“Come, come; enough of this,” said Cavalcanti. + +“What are you waiting for?” said Caderousse. “I hope I am not the +cause.” + +“Hush,” said Andrea. They passed the barrier without accident. At the +first cross street Andrea stopped his horse, and Caderousse leaped out. + +“Well!” said Andrea,—“my servant’s coat and my hat?” + +“Ah,” said Caderousse, “you would not like me to risk taking cold?” + +“But what am I to do?” + +“You? Oh, you are young while I am beginning to get old. _Au revoir_, +Benedetto;” and running into a court, he disappeared. + +“Alas,” said Andrea, sighing, “one cannot be completely happy in this +world!” + + + + Chapter 65. A Conjugal Scene + +At the Place Louis XV. the three young people separated—that is to say, +Morrel went to the Boulevards, Château-Renaud to the Pont de la +Révolution, and Debray to the Quai. Most probably Morrel and +Château-Renaud returned to their “domestic hearths,” as they say in the +gallery of the Chamber in well-turned speeches, and in the theatre of +the Rue Richelieu in well-written pieces; but it was not the case with +Debray. When he reached the wicket of the Louvre, he turned to the +left, galloped across the Carrousel, passed through the Rue Saint-Roch, +and, issuing from the Rue de la Michodière, he arrived at M. Danglars’ +door just at the same time that Villefort’s landau, after having +deposited him and his wife at the Faubourg Saint-Honoré, stopped to +leave the baroness at her own house. + +Debray, with the air of a man familiar with the house, entered first +into the court, threw his bridle into the hands of a footman, and +returned to the door to receive Madame Danglars, to whom he offered his +arm, to conduct her to her apartments. The gate once closed, and Debray +and the baroness alone in the court, he asked: + +“What was the matter with you, Hermine? and why were you so affected at +that story, or rather fable, which the count related?” + +“Because I have been in such shocking spirits all the evening, my +friend,” said the baroness. + +“No, Hermine,” replied Debray; “you cannot make me believe that; on the +contrary, you were in excellent spirits when you arrived at the +count’s. M. Danglars was disagreeable, certainly, but I know how much +you care for his ill-humor. Someone has vexed you; I will allow no one +to annoy you.” + +“You are deceived, Lucien, I assure you,” replied Madame Danglars; “and +what I have told you is really the case, added to the ill-humor you +remarked, but which I did not think it worth while to allude to.” + +It was evident that Madame Danglars was suffering from that nervous +irritability which women frequently cannot account for even to +themselves; or that, as Debray had guessed, she had experienced some +secret agitation that she would not acknowledge to anyone. Being a man +who knew that the former of these symptoms was one of the inherent +penalties of womanhood, he did not then press his inquiries, but waited +for a more appropriate opportunity when he should again interrogate +her, or receive an avowal _proprio motu_. + +At the door of her apartment the baroness met Mademoiselle Cornélie, +her confidential maid. + +“What is my daughter doing?” asked Madame Danglars. + +“She practiced all the evening, and then went to bed,” replied +Mademoiselle Cornélie. + +“Yet I think I hear her piano.” + +“It is Mademoiselle Louise d’Armilly, who is playing while Mademoiselle +Danglars is in bed.” + +“Well,” said Madame Danglars, “come and undress me.” + +They entered the bedroom. Debray stretched himself upon a large couch, +and Madame Danglars passed into her dressing-room with Mademoiselle +Cornélie. + +“My dear M. Lucien,” said Madame Danglars through the door, “you are +always complaining that Eugénie will not address a word to you.” + +“Madame,” said Lucien, playing with a little dog, who, recognizing him +as a friend of the house, expected to be caressed, “I am not the only +one who makes similar complaints, I think I heard Morcerf say that he +could not extract a word from his betrothed.” + +“True,” said Madame Danglars; “yet I think this will all pass off, and +that you will one day see her enter your study.” + +“My study?” + +“At least that of the minister.” + +“Why so!” + +“To ask for an engagement at the Opera. Really, I never saw such an +infatuation for music; it is quite ridiculous for a young lady of +fashion.” + +Debray smiled. “Well,” said he, “let her come, with your consent and +that of the baron, and we will try and give her an engagement, though +we are very poor to pay such talent as hers.” + +“Go, Cornélie,” said Madame Danglars, “I do not require you any +longer.” + +Cornélie obeyed, and the next minute Madame Danglars left her room in a +charming loose dress, and came and sat down close to Debray. Then she +began thoughtfully to caress the little spaniel. Lucien looked at her +for a moment in silence. + +“Come, Hermine,” he said, after a short time, “answer +candidly,—something vexes you—is it not so?” + +30239m + + + +“Nothing,” answered the baroness. + +And yet, as she could scarcely breathe, she rose and went towards a +looking-glass. “I am frightful tonight,” she said. Debray rose, +smiling, and was about to contradict the baroness upon this latter +point, when the door opened suddenly. M. Danglars appeared; Debray +reseated himself. At the noise of the door Madame Danglars turned +round, and looked upon her husband with an astonishment she took no +trouble to conceal. + +“Good-evening, madame,” said the banker; “good-evening, M. Debray.” + +Probably the baroness thought this unexpected visit signified a desire +to make up for the sharp words he had uttered during the day. Assuming +a dignified air, she turned round to Debray, without answering her +husband. + +“Read me something, M. Debray,” she said. Debray, who was slightly +disturbed at this visit, recovered himself when he saw the calmness of +the baroness, and took up a book marked by a mother-of-pearl knife +inlaid with gold. + +“Excuse me,” said the banker, “but you will tire yourself, baroness, by +such late hours, and M. Debray lives some distance from here.” + +Debray was petrified, not only to hear Danglars speak so calmly and +politely, but because it was apparent that beneath outward politeness +there really lurked a determined spirit of opposition to anything his +wife might wish to do. The baroness was also surprised, and showed her +astonishment by a look which would doubtless have had some effect upon +her husband if he had not been intently occupied with the paper, where +he was looking to see the closing stock quotations. The result was, +that the proud look entirely failed of its purpose. + +“M. Lucien,” said the baroness, “I assure you I have no desire to +sleep, and that I have a thousand things to tell you this evening, +which you must listen to, even though you slept while hearing me.” + +“I am at your service, madame,” replied Lucien coldly. + +“My dear M. Debray,” said the banker, “do not kill yourself tonight +listening to the follies of Madame Danglars, for you can hear them as +well tomorrow; but I claim tonight and will devote it, if you will +allow me, to talk over some serious matters with my wife.” + +This time the blow was so well aimed, and hit so directly, that Lucien +and the baroness were staggered, and they interrogated each other with +their eyes, as if to seek help against this aggression, but the +irresistible will of the master of the house prevailed, and the husband +was victorious. + +“Do not think I wish to turn you out, my dear Debray,” continued +Danglars; “oh, no, not at all. An unexpected occurrence forces me to +ask my wife to have a little conversation with me; it is so rarely I +make such a request, I am sure you cannot grudge it to me.” + +Debray muttered something, bowed and went out, knocking himself against +the edge of the door, like Nathan in _Athalie_. + +“It is extraordinary,” he said, when the door was closed behind him, +“how easily these husbands, whom we ridicule, gain an advantage over +us.” + +30241m + + + +Lucien having left, Danglars took his place on the sofa, closed the +open book, and placing himself in a dreadfully dictatorial attitude, he +began playing with the dog; but the animal, not liking him as well as +Debray, and attempting to bite him, Danglars seized him by the skin of +his neck and threw him upon a couch on the other side of the room. The +animal uttered a cry during the transit, but, arrived at its +destination, it crouched behind the cushions, and stupefied at such +unusual treatment remained silent and motionless. + +“Do you know, sir,” asked the baroness, “that you are improving? +Generally you are only rude, but tonight you are brutal.” + +“It is because I am in a worse humor than usual,” replied Danglars. +Hermine looked at the banker with supreme disdain. These glances +frequently exasperated the pride of Danglars, but this evening he took +no notice of them. + +“And what have I to do with your ill-humor?” said the baroness, +irritated at the impassibility of her husband; “do these things concern +me? Keep your ill-humor at home in your money boxes, or, since you have +clerks whom you pay, vent it upon them.” + +“Not so,” replied Danglars; “your advice is wrong, so I shall not +follow it. My money boxes are my Pactolus, as, I think, M. Demoustier +says, and I will not retard its course, or disturb its calm. My clerks +are honest men, who earn my fortune, whom I pay much below their +deserts, if I may value them according to what they bring in; therefore +I shall not get into a passion with them; those with whom I will be in +a passion are those who eat my dinners, mount my horses, and exhaust my +fortune.” + +“And pray who are the persons who exhaust your fortune? Explain +yourself more clearly, I beg, sir.” + +“Oh, make yourself easy!—I am not speaking riddles, and you will soon +know what I mean. The people who exhaust my fortune are those who draw +out 700,000 francs in the course of an hour.” + +“I do not understand you, sir,” said the baroness, trying to disguise +the agitation of her voice and the flush of her face. + +“You understand me perfectly, on the contrary,” said Danglars: “but, if +you will persist, I will tell you that I have just lost 700,000 francs +upon the Spanish loan.” + +“And pray,” asked the baroness, “am I responsible for this loss?” + +“Why not?” + +“Is it my fault you have lost 700,000 francs?” + +“Certainly it is not mine.” + +“Once for all, sir,” replied the baroness sharply, “I tell you I will +not hear cash named; it is a style of language I never heard in the +house of my parents or in that of my first husband.” + +“Oh, I can well believe that, for neither of them was worth a penny.” + +“The better reason for my not being conversant with the slang of the +bank, which is here dinning in my ears from morning to night; that +noise of jingling crowns, which are constantly being counted and +re-counted, is odious to me. I only know one thing I dislike more, +which is the sound of your voice.” + +“Really?” said Danglars. “Well, this surprises me, for I thought you +took the liveliest interest in all my affairs!” + +30243m + + + +“I? What could put such an idea into your head?” + +“Yourself.” + +“Ah?—what next?” + +“Most assuredly.” + +“I should like to know upon what occasion?” + +“Oh, _mon Dieu!_ that is very easily done. Last February you were the +first who told me of the Haitian funds. You had dreamed that a ship had +entered the harbor at Le Havre, that this ship brought news that a +payment we had looked upon as lost was going to be made. I know how +clear-sighted your dreams are; I therefore purchased immediately as +many shares as I could of the Haitian debt, and I gained 400,000 francs +by it, of which 100,000 have been honestly paid to you. You spent it as +you pleased; that was your business. In March there was a question +about a grant to a railway. Three companies presented themselves, each +offering equal securities. You told me that your instinct,—and although +you pretend to know nothing about speculations, I think on the +contrary, that your comprehension is very clear upon certain +affairs,—well, you told me that your instinct led you to believe the +grant would be given to the company called the Southern. I bought two +thirds of the shares of that company; as you had foreseen, the shares +trebled in value, and I picked up a million, from which 250,000 francs +were paid to you for pin-money. How have you spent this 250,000 +francs?—it is no business of mine.” + +“When are you coming to the point?” cried the baroness, shivering with +anger and impatience. + +“Patience, madame, I am coming to it.” + +“That’s fortunate.” + +“In April you went to dine at the minister’s. You heard a private +conversation respecting Spanish affairs—on the expulsion of Don Carlos. +I bought some Spanish shares. The expulsion took place and I pocketed +600,000 francs the day Charles V. repassed the Bidassoa. Of these +600,000 francs you took 50,000 crowns. They were yours, you disposed of +them according to your fancy, and I asked no questions; but it is not +the less true that you have this year received 500,000 livres.” + +“Well, sir, and what then?” + +“Ah, yes, it was just after this that you spoiled everything.” + +“Really, your manner of speaking——” + +“It expresses my meaning, and that is all I want. Well, three days +after that you talked politics with M. Debray, and you fancied from his +words that Don Carlos had returned to Spain. Well, I sold my shares, +the news got out, and I no longer sold—I gave them away, next day I +find the news was false, and by this false report I have lost 700,000 +francs.” + +“Well?” + +“Well, since I gave you a fourth of my gains, I think you owe me a +fourth of my losses; the fourth of 700,000 francs is 175,000 francs.” + +“What you say is absurd, and I cannot see why M. Debray’s name is mixed +up in this affair.” + +“Because if you do not possess the 175,000 francs I reclaim, you must +have lent them to your friends, and M. Debray is one of your friends.” + +30245m + + + +“For shame!” exclaimed the baroness. + +“Oh, let us have no gestures, no screams, no modern drama, or you will +oblige me to tell you that I see Debray leave here, pocketing the whole +of the 500,000 livres you have handed over to him this year, while he +smiles to himself, saying that he has found what the most skilful +players have never discovered—that is, a roulette where he wins without +playing, and is no loser when he loses.” + +The baroness became enraged. + +“Wretch!” she cried, “will you dare to tell me you did not know what +you now reproach me with?” + +“I do not say that I did know it, and I do not say that I did not know +it. I merely tell you to look into my conduct during the last four +years that we have ceased to be husband and wife, and see whether it +has not always been consistent. Some time after our rupture, you wished +to study music, under the celebrated baritone who made such a +successful appearance at the Théâtre Italien; at the same time I felt +inclined to learn dancing of the _danseuse_ who acquired such a +reputation in London. This cost me, on your account and mine, 100,000 +francs. I said nothing, for we must have peace in the house; and +100,000 francs for a lady and gentleman to be properly instructed in +music and dancing are not too much. Well, you soon become tired of +singing, and you take a fancy to study diplomacy with the minister’s +secretary. You understand, it signifies nothing to me so long as you +pay for your lessons out of your own cash box. But today I find you are +drawing on mine, and that your apprenticeship may cost me 700,000 +francs per month. Stop there, madame, for this cannot last. Either the +diplomatist must give his lessons gratis, and I will tolerate him, or +he must never set his foot again in my house;—do you understand, +madame?” + +“Oh, this is too much,” cried Hermine, choking, “you are worse than +despicable.” + +“But,” continued Danglars, “I find you did not even pause there——” + +“Insults!” + +“You are right; let us leave these facts alone, and reason coolly. I +have never interfered in your affairs excepting for your good; treat me +in the same way. You say you have nothing to do with my cash box. Be it +so. Do as you like with your own, but do not fill or empty mine. +Besides, how do I know that this was not a political trick, that the +minister enraged at seeing me in the opposition, and jealous of the +popular sympathy I excite, has not concerted with M. Debray to ruin +me?” + +“A probable thing!” + +“Why not? Who ever heard of such an occurrence as this?—a false +telegraphic despatch—it is almost impossible for wrong signals to be +made as they were in the last two telegrams. It was done on purpose for +me—I am sure of it.” + +“Sir,” said the baroness humbly, “are you not aware that the man +employed there was dismissed, that they talked of going to law with +him, that orders were issued to arrest him and that this order would +have been put into execution if he had not escaped by flight, which +proves that he was either mad or guilty? It was a mistake.” + +“Yes, which made fools laugh, which caused the minister to have a +sleepless night, which has caused the minister’s secretaries to blacken +several sheets of paper, but which has cost me 700,000 francs.” + +“But, sir,” said Hermine suddenly, “if all this is, as you say, caused +by M. Debray, why, instead of going direct to him, do you come and tell +me of it? Why, to accuse the man, do you address the woman?” + +“Do I know M. Debray?—do I wish to know him?—do I wish to know that he +gives advice?—do I wish to follow it?—do I speculate? No; you do all +this, not I.” + +“Still it seems to me, that as you profit by it——” + +Danglars shrugged his shoulders. “Foolish creature,” he exclaimed. +“Women fancy they have talent because they have managed two or three +intrigues without being the talk of Paris! But know that if you had +even hidden your irregularities from your husband, who has but the +commencement of the art—for generally husbands _will_ not see—you would +then have been but a faint imitation of most of your friends among the +women of the world. But it has not been so with me,—I see, and always +have seen, during the last sixteen years. You may, perhaps, have hidden +a thought; but not a step, not an action, not a fault, has escaped me, +while you flattered yourself upon your address, and firmly believed you +had deceived me. What has been the result?—that, thanks to my pretended +ignorance, there is none of your friends, from M. de Villefort to M. +Debray, who has not trembled before me. There is not one who has not +treated me as the master of the house,—the only title I desire with +respect to you; there is not one, in fact, who would have dared to +speak of me as I have spoken of them this day. I will allow you to make +me hateful, but I will prevent your rendering me ridiculous, and, above +all, I forbid you to ruin me.” + +The baroness had been tolerably composed until the name of Villefort +had been pronounced; but then she became pale, and, rising, as if +touched by a spring, she stretched out her hands as though conjuring an +apparition; she then took two or three steps towards her husband, as +though to tear the secret from him, of which he was ignorant, or which +he withheld from some odious calculation,—odious, as all his +calculations were. + +“M. de Villefort!—What do you mean?” + +“I mean that M. de Nargonne, your first husband, being neither a +philosopher nor a banker, or perhaps being both, and seeing there was +nothing to be got out of a king’s attorney, died of grief or anger at +finding, after an absence of nine months, that you had been _enceinte_ +six. I am brutal,—I not only allow it, but boast of it; it is one of +the reasons of my success in commercial business. Why did he kill +himself instead of you? Because he had no cash to save. My life belongs +to my cash. M. Debray has made me lose 700,000 francs; let him bear his +share of the loss, and we will go on as before; if not, let him become +bankrupt for the 250,000 livres, and do as all bankrupts do—disappear. +He is a charming fellow, I allow, when his news is correct; but when it +is not, there are fifty others in the world who would do better than +he.” + +Madame Danglars was rooted to the spot; she made a violent effort to +reply to this last attack, but she fell upon a chair thinking of +Villefort, of the dinner scene, of the strange series of misfortunes +which had taken place in her house during the last few days, and +changed the usual calm of her establishment to a scene of scandalous +debate. + +Danglars did not even look at her, though she did her best to faint. He +shut the bedroom door after him, without adding another word, and +returned to his apartments; and when Madame Danglars recovered from her +half-fainting condition, she could almost believe that she had had a +disagreeable dream. + + + + Chapter 66. Matrimonial Projects + +The day following this scene, at the hour Debray usually chose to pay a +visit to Madame Danglars on his way to his office, his _coupé_ did not +appear. At this time, that is, about half-past twelve, Madame Danglars +ordered her carriage, and went out. Danglars, hidden behind a curtain, +watched the departure he had been waiting for. He gave orders that he +should be informed as soon as Madame Danglars appeared; but at two +o’clock she had not returned. He then called for his horses, drove to +the Chamber, and inscribed his name to speak against the budget. From +twelve to two o’clock Danglars had remained in his study, unsealing his +dispatches, and becoming more and more sad every minute, heaping figure +upon figure, and receiving, among other visits, one from Major +Cavalcanti, who, as stiff and exact as ever, presented himself +precisely at the hour named the night before, to terminate his business +with the banker. + +On leaving the Chamber, Danglars, who had shown violent marks of +agitation during the sitting, and been more bitter than ever against +the ministry, re-entered his carriage, and told the coachman to drive +to the Avenue des Champs-Élysées, No. 30. + +Monte Cristo was at home; only he was engaged with someone and begged +Danglars to wait for a moment in the drawing-room. While the banker was +waiting in the anteroom, the door opened, and a man dressed as an abbé +and doubtless more familiar with the house than he was, came in and +instead of waiting, merely bowed, passed on to the farther apartments, +and disappeared. + +A minute after the door by which the priest had entered reopened, and +Monte Cristo appeared. + +“Pardon me,” said he, “my dear baron, but one of my friends, the Abbé +Busoni, whom you perhaps saw pass by, has just arrived in Paris; not +having seen him for a long time, I could not make up my mind to leave +him sooner, so I hope this will be sufficient reason for my having made +you wait.” + +“Nay,” said Danglars, “it is my fault; I have chosen my visit at a +wrong time, and will retire.” + +“Not at all; on the contrary, be seated; but what is the matter with +you? You look careworn; really, you alarm me. Melancholy in a +capitalist, like the appearance of a comet, presages some misfortune to +the world.” + +“I have been in ill-luck for several days,” said Danglars, “and I have +heard nothing but bad news.” + +“Ah, indeed?” said Monte Cristo. “Have you had another fall at the +Bourse?” + +“No; I am safe for a few days at least. I am only annoyed about a +bankrupt of Trieste.” + +“Really? Does it happen to be Jacopo Manfredi?” + +“Exactly so. Imagine a man who has transacted business with me for I +don’t know how long, to the amount of 800,000 or 900,000 francs during +the year. Never a mistake or delay—a fellow who paid like a prince. +Well, I was a million in advance with him, and now my fine Jacopo +Manfredi suspends payment!” + +“Really?” + +“It is an unheard-of fatality. I draw upon him for 600,000 francs, my +bills are returned unpaid, and, more than that, I hold bills of +exchange signed by him to the value of 400,000 francs, payable at his +correspondent’s in Paris at the end of this month. Today is the 30th. I +present them; but my correspondent has disappeared. This, with my +Spanish affairs, made a pretty end to the month.” + +“Then you really lost by that affair in Spain?” + +“Yes; only 700,000 francs out of my cash box—nothing more!” + +“Why, how could you make such a mistake—such an old stager?” + +“Oh, it is all my wife’s fault. She dreamed Don Carlos had returned to +Spain; she believes in dreams. It is magnetism, she says, and when she +dreams a thing it is sure to happen, she assures me. On this conviction +I allow her to speculate, she having her bank and her stockbroker; she +speculated and lost. It is true she speculates with her own money, not +mine; nevertheless, you can understand that when 700,000 francs leave +the wife’s pocket, the husband always finds it out. But do you mean to +say you have not heard of this? Why, the thing has made a tremendous +noise.” + +“Yes, I heard it spoken of, but I did not know the details, and then no +one can be more ignorant than I am of the affairs in the Bourse.” + +30251m + + + +“Then you do not speculate?” + +“I?—How could I speculate when I already have so much trouble in +regulating my income? I should be obliged, besides my steward, to keep +a clerk and a boy. But touching these Spanish affairs, I think that the +baroness did not dream the whole of the Don Carlos matter. The papers +said something about it, did they not?” + +“Then you believe the papers?” + +“I?—not the least in the world; only I fancied that the honest +_Messager_ was an exception to the rule, and that it only announced +telegraphic despatches.” + +“Well, that’s what puzzles me,” replied Danglars; “the news of the +return of Don Carlos was brought by telegraph.” + +“So that,” said Monte Cristo, “you have lost nearly 1,700,000 francs +this month.” + +“Not nearly, indeed; that is exactly my loss.” + +“_Diable!_” said Monte Cristo compassionately, “it is a hard blow for a +third-rate fortune.” + +“Third-rate,” said Danglars, rather humble, “what do you mean by that?” + +“Certainly,” continued Monte Cristo, “I make three assortments in +fortune—first-rate, second-rate, and third-rate fortunes. I call those +first-rate which are composed of treasures one possesses under one’s +hand, such as mines, lands, and funded property, in such states as +France, Austria, and England, provided these treasures and property +form a total of about a hundred millions; I call those second-rate +fortunes, that are gained by manufacturing enterprises, joint-stock +companies, viceroyalties, and principalities, not drawing more than +1,500,000 francs, the whole forming a capital of about fifty millions; +finally, I call those third-rate fortunes, which are composed of a +fluctuating capital, dependent upon the will of others, or upon chances +which a bankruptcy involves or a false telegram shakes, such as banks, +speculations of the day—in fact, all operations under the influence of +greater or less mischances, the whole bringing in a real or fictitious +capital of about fifteen millions. I think this is about your position, +is it not?” + +“Confound it, yes!” replied Danglars. + +“The result, then, of six more such months as this would be to reduce +the third-rate house to despair.” + +“Oh,” said Danglars, becoming very pale, how you are running on!” + +“Let us imagine seven such months,” continued Monte Cristo, in the same +tone. “Tell me, have you ever thought that seven times 1,700,000 francs +make nearly twelve millions? No, you have not;—well, you are right, for +if you indulged in such reflections, you would never risk your +principal, which is to the speculator what the skin is to civilized +man. We have our clothes, some more splendid than others,—this is our +credit; but when a man dies he has only his skin; in the same way, on +retiring from business, you have nothing but your real principal of +about five or six millions, at the most; for third-rate fortunes are +never more than a fourth of what they appear to be, like the locomotive +on a railway, the size of which is magnified by the smoke and steam +surrounding it. Well, out of the five or six millions which form your +real capital, you have just lost nearly two millions, which must, of +course, in the same degree diminish your credit and fictitious fortune; +to follow out my simile, your skin has been opened by bleeding, and +this if repeated three or four times will cause death—so pay attention +to it, my dear Monsieur Danglars. Do you want money? Do you wish me to +lend you some?” + +30253m + + + +“What a bad calculator you are!” exclaimed Danglars, calling to his +assistance all his philosophy and dissimulation. “I have made money at +the same time by speculations which have succeeded. I have made up the +loss of blood by nutrition. I lost a battle in Spain, I have been +defeated in Trieste, but my naval army in India will have taken some +galleons, and my Mexican pioneers will have discovered some mine.” + +“Very good, very good! But the wound remains and will reopen at the +first loss.” + +“No, for I am only embarked in certainties,” replied Danglars, with the +air of a mountebank sounding his own praises; “to involve me, three +governments must crumble to dust.” + +“Well, such things have been.” + +“That there should be a famine!” + +“Recollect the seven fat and the seven lean kine.” + +“Or, that the sea should become dry, as in the days of Pharaoh, and +even then my vessels would become caravans.” + +“So much the better. I congratulate you, my dear M. Danglars,” said +Monte Cristo; “I see I was deceived, and that you belong to the class +of second-rate fortunes.” + +“I think I may aspire to that honor,” said Danglars with a smile, which +reminded Monte Cristo of the sickly moons which bad artists are so fond +of daubing into their pictures of ruins. “But, while we are speaking of +business,” Danglars added, pleased to find an opportunity of changing +the subject, “tell me what I am to do for M. Cavalcanti.” + +“Give him money, if he is recommended to you, and the recommendation +seems good.” + +“Excellent; he presented himself this morning with a bond of 40,000 +francs, payable at sight, on you, signed by Busoni, and returned by you +to me, with your endorsement—of course, I immediately counted him over +the forty bank-notes.” + +Monte Cristo nodded his head in token of assent. + +“But that is not all,” continued Danglars; “he has opened an account +with my house for his son.” + +“May I ask how much he allows the young man?” + +“Five thousand francs per month.” + +“Sixty thousand francs per year. I thought I was right in believing +that Cavalcanti to be a stingy fellow. How can a young man live upon +5,000 francs a month?” + +“But you understand that if the young man should want a few thousands +more——” + +“Do not advance it; the father will never repay it. You do not know +these ultramontane millionaires; they are regular misers. And by whom +were they recommended to you?” + +“Oh, by the house of Fenzi, one of the best in Florence.” + +“I do not mean to say you will lose, but, nevertheless, mind you hold +to the terms of the agreement.” + +“Would you not trust the Cavalcanti?” + +“I? oh, I would advance ten millions on his signature. I was only +speaking in reference to the second-rate fortunes we were mentioning +just now.” + +“And with all this, how unassuming he is! I should never have taken him +for anything more than a mere major.” + +“And you would have flattered him, for certainly, as you say, he has no +manner. The first time I saw him he appeared to me like an old +lieutenant who had grown mouldy under his epaulets. But all the +Italians are the same; they are like old Jews when they are not +glittering in Oriental splendor.” + +“The young man is better,” said Danglars. + +“Yes; a little nervous, perhaps, but, upon the whole, he appeared +tolerable. I was uneasy about him.” + +“Why?” + +“Because you met him at my house, just after his introduction into the +world, as they told me. He has been travelling with a very severe +tutor, and had never been to Paris before.” + +“Ah, I believe noblemen marry amongst themselves, do they not?” asked +Danglars carelessly; “they like to unite their fortunes.” + +“It is usual, certainly; but Cavalcanti is an original who does nothing +like other people. I cannot help thinking that he has brought his son +to France to choose a wife.” + +“Do you think so?” + +“I am sure of it.” + +“And you have heard his fortune mentioned?” + +“Nothing else was talked of; only some said he was worth millions, and +others that he did not possess a farthing.” + +“And what is your opinion?” + +“I ought not to influence you, because it is only my own personal +impression.” + +“Well, and it is that——” + +“My opinion is, that all these old _podestàs_, these ancient +_condottieri_,—for the Cavalcanti have commanded armies and governed +provinces,—my opinion, I say, is, that they have buried their millions +in corners, the secret of which they have transmitted only to their +eldest sons, who have done the same from generation to generation; and +the proof of this is seen in their yellow and dry appearance, like the +florins of the republic, which, from being constantly gazed upon, have +become reflected in them.” + +“Certainly,” said Danglars, “and this is further supported by the fact +of their not possessing an inch of land.” + +“Very little, at least; I know of none which Cavalcanti possesses, +excepting his palace in Lucca.” + +“Ah, he has a palace?” said Danglars, laughing; “come, that is +something.” + +“Yes; and more than that, he lets it to the Minister of Finance while +he lives in a simple house. Oh, as I told you before, I think the old +fellow is very close.” + +“Come, you do not flatter him.” + +“I scarcely know him; I think I have seen him three times in my life; +all I know relating to him is through Busoni and himself. He was +telling me this morning that, tired of letting his property lie dormant +in Italy, which is a dead nation, he wished to find a method, either in +France or England, of multiplying his millions, but remember, that +though I place great confidence in Busoni, I am not responsible for +this.” + +“Never mind; accept my thanks for the client you have sent me. It is a +fine name to inscribe on my ledgers, and my cashier was quite proud of +it when I explained to him who the Cavalcanti were. By the way, this is +merely a simple question, when this sort of people marry their sons, do +they give them any fortune?” + +“Oh, that depends upon circumstances. I know an Italian prince, rich as +a gold mine, one of the noblest families in Tuscany, who, when his sons +married according to his wish, gave them millions; and when they +married against his consent, merely allowed them thirty crowns a month. +Should Andrea marry according to his father’s views, he will, perhaps, +give him one, two, or three millions. For example, supposing it were +the daughter of a banker, he might take an interest in the house of the +father-in-law of his son; then again, if he disliked his choice, the +major takes the key, double-locks his coffer, and Master Andrea would +be obliged to live like the sons of a Parisian family, by shuffling +cards or rattling the dice.” + +“Ah, that boy will find out some Bavarian or Peruvian princess; he will +want a crown, an El Dorado, and Potosí.” + +“No; these grand lords on the other side of the Alps frequently marry +into plain families; like Jupiter, they like to cross the race. But do +you wish to marry Andrea, my dear M. Danglars, that you are asking so +many questions?” + +“_Ma foi_,” said Danglars, “it would not be a bad speculation, I fancy, +and you know I am a speculator.” + +“You are not thinking of Mademoiselle Danglars, I hope; you would not +like poor Andrea to have his throat cut by Albert?” + +“Albert,” repeated Danglars, shrugging his shoulders; “ah, well; he +would care very little about it, I think.” + +“But he is betrothed to your daughter, I believe?” + +“Well, M. de Morcerf and I have talked about this marriage, but Madame +de Morcerf and Albert——” + +“You do not mean to say that it would not be a good match?” + +“Indeed, I imagine that Mademoiselle Danglars is as good as M. de +Morcerf.” + +“Mademoiselle Danglars’ fortune will be great, no doubt, especially if +the telegraph should not make any more mistakes.” + +“Oh, I do not mean her fortune only; but tell me——” + +“What?” + +“Why did you not invite M. and Madame de Morcerf to your dinner?” + +“I did so, but he excused himself on account of Madame de Morcerf being +obliged to go to Dieppe for the benefit of sea air.” + +“Yes, yes,” said Danglars, laughing, “it would do her a great deal of +good.” + +“Why so?” + +“Because it is the air she always breathed in her youth.” + +Monte Cristo took no notice of this ill-natured remark. + +“But still, if Albert be not so rich as Mademoiselle Danglars,” said +the count, “you must allow that he has a fine name?” + +“So he has; but I like mine as well.” + +“Certainly; your name is popular, and does honor to the title they have +adorned it with; but you are too intelligent not to know that according +to a prejudice, too firmly rooted to be exterminated, a nobility which +dates back five centuries is worth more than one that can only reckon +twenty years.” + +“And for this very reason,” said Danglars with a smile, which he tried +to make sardonic, “I prefer M. Andrea Cavalcanti to M. Albert de +Morcerf.” + +“Still, I should not think the Morcerfs would yield to the Cavalcanti?” + +“The Morcerfs!—Stay, my dear count,” said Danglars; “you are a man of +the world, are you not?” + +“I think so.” + +“And you understand heraldry?” + +“A little.” + +“Well, look at my coat-of-arms, it is worth more than Morcerf’s.” + +“Why so?” + +“Because, though I am not a baron by birth, my real name is, at least, +Danglars.” + +“Well, what then?” + +“While his name is not Morcerf.” + +“How?—not Morcerf?” + +“Not the least in the world.” + +“Go on.” + +“I have been made a baron, so that I actually am one; he made himself a +count, so that he is not one at all.” + +“Impossible!” + +“Listen my dear count; M. de Morcerf has been my friend, or rather my +acquaintance, during the last thirty years. You know I have made the +most of my arms, though I never forgot my origin.” + +“A proof of great humility or great pride,” said Monte Cristo. + +“Well, when I was a clerk, Morcerf was a mere fisherman.” + +“And then he was called——” + +“Fernand.” + +“Only Fernand?” + +“Fernand Mondego.” + +“You are sure?” + +“_Pardieu!_ I have bought enough fish of him to know his name.” + +“Then, why did you think of giving your daughter to him?” + +“Because Fernand and Danglars, being both parvenus, both having become +noble, both rich, are about equal in worth, excepting that there have +been certain things mentioned of him that were never said of me.” + +“What?” + +“Oh, nothing!” + +“Ah, yes; what you tell me recalls to mind something about the name of +Fernand Mondego. I have heard that name in Greece.” + +“In conjunction with the affairs of Ali Pasha?” + +“Exactly so.” + +“This is the mystery,” said Danglars. “I acknowledge I would have given +anything to find it out.” + +“It would be very easy if you much wished it?” + +“How so?” + +“Probably you have some correspondent in Greece?” + +“I should think so.” + +“At Yanina?” + +“Everywhere.” + +“Well, write to your correspondent in Yanina, and ask him what part was +played by a Frenchman named Fernand Mondego in the catastrophe of Ali +Tepelini.” + +“You are right,” exclaimed Danglars, rising quickly, “I will write +today.” + +“Do so.” + +“I will.” + +30259m + + + +“And if you should hear of anything very scandalous——” + +“I will communicate it to you.” + +“You will oblige me.” + +Danglars rushed out of the room, and made but one leap into his +_coupé_. + + + + Chapter 67. The Office of the King’s Attorney + +Let us leave the banker driving his horses at their fullest speed, and +follow Madame Danglars in her morning excursion. We have said that at +half-past twelve o’clock Madame Danglars had ordered her horses, and +had left home in the carriage. She directed her course towards the +Faubourg Saint Germain, went down the Rue Mazarine, and stopped at the +Passage du Pont-Neuf. She descended, and went through the passage. She +was very plainly dressed, as would be the case with a woman of taste +walking in the morning. At the Rue Guénégaud she called a cab, and +directed the driver to go to the Rue de Harlay. As soon as she was +seated in the vehicle, she drew from her pocket a very thick black +veil, which she tied on to her straw bonnet. She then replaced the +bonnet, and saw with pleasure, in a little pocket-mirror, that her +white complexion and brilliant eyes were alone visible. The cab crossed +the Pont-Neuf and entered the Rue de Harlay by the Place Dauphine; the +driver was paid as the door opened, and stepping lightly up the stairs +Madame Danglars soon reached the Salle des Pas-Perdus. + +There was a great deal going on that morning, and many business-like +persons at the Palais; business-like persons pay very little attention +to women, and Madame Danglars crossed the hall without exciting any +more attention than any other woman calling upon her lawyer. + +There was a great press of people in M. de Villefort’s antechamber, but +Madame Danglars had no occasion even to pronounce her name. The instant +she appeared the door-keeper rose, came to her, and asked her whether +she was not the person with whom the procureur had made an appointment; +and on her affirmative answer being given, he conducted her by a +private passage to M. de Villefort’s office. + +The magistrate was seated in an armchair, writing, with his back +towards the door; he did not move as he heard it open, and the +door-keeper pronounce the words, “Walk in, madame,” and then reclose +it; but no sooner had the man’s footsteps ceased, than he started up, +drew the bolts, closed the curtains, and examined every corner of the +room. Then, when he had assured himself that he could neither be seen +nor heard, and was consequently relieved of doubts, he said: + +“Thanks, madame,—thanks for your punctuality;” and he offered a chair +to Madame Danglars, which she accepted, for her heart beat so violently +that she felt nearly suffocated. + +30261m + + + +“It is a long time, madame,” said the procureur, describing a +half-circle with his chair, so as to place himself exactly opposite to +Madame Danglars,—“it is a long time since I had the pleasure of +speaking alone with you, and I regret that we have only now met to +enter upon a painful conversation.” + +“Nevertheless, sir, you see I have answered your first appeal, although +certainly the conversation must be much more painful for me than for +you.” Villefort smiled bitterly. + +“It is true, then,” he said, rather uttering his thoughts aloud than +addressing his companion,—“it is true, then, that all our actions leave +their traces—some sad, others bright—on our paths; it is true that +every step in our lives is like the course of an insect on the +sands;—it leaves its track! Alas, to many the path is traced by tears.” + +“Sir,” said Madame Danglars, “you can feel for my emotion, can you not? +Spare me, then, I beseech you. When I look at this room,—whence so many +guilty creatures have departed, trembling and ashamed, when I look at +that chair before which I now sit trembling and ashamed,—oh, it +requires all my reason to convince me that I am not a very guilty woman +and you a menacing judge.” + +Villefort dropped his head and sighed. + +“And I,” he said, “I feel that my place is not in the judge’s seat, but +on the prisoner’s bench.” + +30263m + + + +“You?” said Madame Danglars. + +“Yes, I.” + +“I think, sir, you exaggerate your situation,” said Madame Danglars, +whose beautiful eyes sparkled for a moment. “The paths of which you +were just speaking have been traced by all young men of ardent +imaginations. Besides the pleasure, there is always remorse from the +indulgence of our passions, and, after all, what have you men to fear +from all this? the world excuses, and notoriety ennobles you.” + +“Madame,” replied Villefort, “you know that I am no hypocrite, or, at +least, that I never deceive without a reason. If my brow be severe, it +is because many misfortunes have clouded it; if my heart be petrified, +it is that it might sustain the blows it has received. I was not so in +my youth, I was not so on the night of the betrothal, when we were all +seated around a table in the Rue du Cours at Marseilles. But since then +everything has changed in and about me; I am accustomed to brave +difficulties, and, in the conflict to crush those who, by their own +free will, or by chance, voluntarily or involuntarily, interfere with +me in my career. It is generally the case that what we most ardently +desire is as ardently withheld from us by those who wish to obtain it, +or from whom we attempt to snatch it. Thus, the greater number of a +man’s errors come before him disguised under the specious form of +necessity; then, after error has been committed in a moment of +excitement, of delirium, or of fear, we see that we might have avoided +and escaped it. The means we might have used, which we in our blindness +could not see, then seem simple and easy, and we say, ‘Why did I not do +this, instead of that?’ Women, on the contrary, are rarely tormented +with remorse; for the decision does not come from you,—your misfortunes +are generally imposed upon you, and your faults the results of others’ +crimes.” + +“In any case, sir, you will allow,” replied Madame Danglars, “that, +even if the fault were alone mine, I last night received a severe +punishment for it.” + +“Poor thing,” said Villefort, pressing her hand, “it was too severe for +your strength, for you were twice overwhelmed, and yet——” + +“Well?” + +“Well, I must tell you. Collect all your courage, for you have not yet +heard all.” + +“Ah,” exclaimed Madame Danglars, alarmed, “what is there more to hear?” + +“You only look back to the past, and it is, indeed, bad enough. Well, +picture to yourself a future more gloomy still—certainly frightful, +perhaps sanguinary!” + +The baroness knew how calm Villefort naturally was, and his present +excitement frightened her so much that she opened her mouth to scream, +but the sound died in her throat. + +“How has this terrible past been recalled?” cried Villefort; “how is it +that it has escaped from the depths of the tomb and the recesses of our +hearts, where it was buried, to visit us now, like a phantom, whitening +our cheeks and flushing our brows with shame?” + +“Alas,” said Hermine, “doubtless it is chance.” + +“Chance?” replied Villefort; “No, no, madame, there is no such thing as +chance.” + +“Oh, yes; has not a fatal chance revealed all this? Was it not by +chance the Count of Monte Cristo bought that house? Was it not by +chance he caused the earth to be dug up? Is it not by chance that the +unfortunate child was disinterred under the trees?—that poor innocent +offspring of mine, which I never even kissed, but for whom I wept many, +many tears. Ah, my heart clung to the count when he mentioned the dear +spoil found beneath the flowers.” + +“Well, no, madame,—this is the terrible news I have to tell you,” said +Villefort in a hollow voice—“no, nothing was found beneath the flowers; +there was no child disinterred—no. You must not weep, no, you must not +groan, you must tremble!” + +“What can you mean?” asked Madame Danglars, shuddering. + +“I mean that M. de Monte Cristo, digging underneath these trees, found +neither skeleton nor chest, because neither of them was there!” + +“Neither of them there?” repeated Madame Danglars, her staring, +wide-open eyes expressing her alarm. “Neither of them there!” she again +said, as though striving to impress herself with the meaning of the +words which escaped her. + +“No,” said Villefort, burying his face in his hands, “no, a hundred +times no!” + +“Then you did not bury the poor child there, sir? Why did you deceive +me? Where did you place it? tell me—where?” + +“There! But listen to me—listen—and you will pity me who has for twenty +years alone borne the heavy burden of grief I am about to reveal, +without casting the least portion upon you.” + +“Oh, you frighten me! But speak; I will listen.” + +“You recollect that sad night, when you were half-expiring on that bed +in the red damask room, while I, scarcely less agitated than you, +awaited your delivery. The child was born, was given to me—motionless, +breathless, voiceless; we thought it dead.” + +Madame Danglars moved rapidly, as though she would spring from her +chair, but Villefort stopped, and clasped his hands as if to implore +her attention. + +“We thought it dead,” he repeated; “I placed it in the chest, which was +to take the place of a coffin; I descended to the garden, I dug a hole, +and then flung it down in haste. Scarcely had I covered it with earth, +when the arm of the Corsican was stretched towards me; I saw a shadow +rise, and, at the same time, a flash of light. I felt pain; I wished to +cry out, but an icy shiver ran through my veins and stifled my voice; I +fell lifeless, and fancied myself killed. Never shall I forget your +sublime courage, when, having returned to consciousness, I dragged +myself to the foot of the stairs, and you, almost dying yourself, came +to meet me. We were obliged to keep silent upon the dreadful +catastrophe. You had the fortitude to regain the house, assisted by +your nurse. A duel was the pretext for my wound. Though we scarcely +expected it, our secret remained in our own keeping alone. I was taken +to Versailles; for three months I struggled with death; at last, as I +seemed to cling to life, I was ordered to the South. Four men carried +me from Paris to Châlons, walking six leagues a day; Madame de +Villefort followed the litter in her carriage. At Châlons I was put +upon the Saône, thence I passed on to the Rhône, whence I descended, +merely with the current, to Arles; at Arles I was again placed on my +litter, and continued my journey to Marseilles. My recovery lasted six +months. I never heard you mentioned, and I did not dare inquire for +you. When I returned to Paris, I learned that you, the widow of M. de +Nargonne, had married M. Danglars. + +“What was the subject of my thoughts from the time consciousness +returned to me? Always the same—always the child’s corpse, coming every +night in my dreams, rising from the earth, and hovering over the grave +with menacing look and gesture. I inquired immediately on my return to +Paris; the house had not been inhabited since we left it, but it had +just been let for nine years. I found the tenant. I pretended that I +disliked the idea that a house belonging to my wife’s father and mother +should pass into the hands of strangers. I offered to pay them for +cancelling the lease; they demanded 6,000 francs. I would have given +10,000—I would have given 20,000. I had the money with me; I made the +tenant sign the deed of resilition, and when I had obtained what I so +much wanted, I galloped to Auteuil. No one had entered the house since +I had left it. + +“It was five o’clock in the afternoon; I ascended into the red room, +and waited for night. There all the thoughts which had disturbed me +during my year of constant agony came back with double force. The +Corsican, who had declared the vendetta against me, who had followed me +from Nîmes to Paris, who had hid himself in the garden, who had struck +me, had seen me dig the grave, had seen me inter the child,—he might +become acquainted with your person,—nay, he might even then have known +it. Would he not one day make you pay for keeping this terrible secret? +Would it not be a sweet revenge for him when he found that I had not +died from the blow of his dagger? It was therefore necessary, before +everything else, and at all risks, that I should cause all traces of +the past to disappear—that I should destroy every material vestige; too +much reality would always remain in my recollection. It was for this I +had annulled the lease—it was for this I had come—it was for this I was +waiting. + +“Night arrived; I allowed it to become quite dark. I was without a +light in that room; when the wind shook all the doors, behind which I +continually expected to see some spy concealed, I trembled. I seemed +everywhere to hear your moans behind me in the bed, and I dared not +turn around. My heart beat so violently that I feared my wound would +open. At length, one by one, all the noises in the neighborhood ceased. +I understood that I had nothing to fear, that I should neither be seen +nor heard, so I decided upon descending to the garden. + +“Listen, Hermine; I consider myself as brave as most men, but when I +drew from my breast the little key of the staircase, which I had found +in my coat—that little key we both used to cherish so much, which you +wished to have fastened to a golden ring—when I opened the door, and +saw the pale moon shedding a long stream of white light on the spiral +staircase like a spectre, I leaned against the wall, and nearly +shrieked. I seemed to be going mad. At last I mastered my agitation. I +descended the staircase step by step; the only thing I could not +conquer was a strange trembling in my knees. I grasped the railings; if +I had relaxed my hold for a moment, I should have fallen. I reached the +lower door. Outside this door a spade was placed against the wall; I +took it, and advanced towards the thicket. I had provided myself with a +dark lantern. In the middle of the lawn I stopped to light it, then I +continued my path. + +“It was the end of November, all the verdure of the garden had +disappeared, the trees were nothing more than skeletons with their long +bony arms, and the dead leaves sounded on the gravel under my feet. My +terror overcame me to such a degree as I approached the thicket, that I +took a pistol from my pocket and armed myself. I fancied continually +that I saw the figure of the Corsican between the branches. I examined +the thicket with my dark lantern; it was empty. I looked carefully +around; I was indeed alone,—no noise disturbed the silence but the owl, +whose piercing cry seemed to be calling up the phantoms of the night. I +tied my lantern to a forked branch I had noticed a year before at the +precise spot where I stopped to dig the hole. + +“The grass had grown very thickly there during the summer, and when +autumn arrived no one had been there to mow it. Still one place where +the grass was thin attracted my attention; it evidently was there I had +turned up the ground. I went to work. The hour, then, for which I had +been waiting during the last year had at length arrived. How I worked, +how I hoped, how I struck every piece of turf, thinking to find some +resistance to my spade! But no, I found nothing, though I had made a +hole twice as large as the first. I thought I had been deceived—had +mistaken the spot. I turned around, I looked at the trees, I tried to +recall the details which had struck me at the time. A cold, sharp wind +whistled through the leafless branches, and yet the drops fell from my +forehead. I recollected that I was stabbed just as I was trampling the +ground to fill up the hole; while doing so I had leaned against a +laburnum; behind me was an artificial rockery, intended to serve as a +resting-place for persons walking in the garden; in falling, my hand, +relaxing its hold of the laburnum, felt the coldness of the stone. On +my right I saw the tree, behind me the rock. I stood in the same +attitude, and threw myself down. I rose, and again began digging and +enlarging the hole; still I found nothing, nothing—the chest was no +longer there!” + +30269m + + + +“The chest no longer there?” murmured Madame Danglars, choking with +fear. + +“Think not I contented myself with this one effort,” continued +Villefort. “No; I searched the whole thicket. I thought the assassin, +having discovered the chest, and supposing it to be a treasure, had +intended carrying it off, but, perceiving his error, had dug another +hole, and deposited it there; but I could find nothing. Then the idea +struck me that he had not taken these precautions, and had simply +thrown it in a corner. In the last case I must wait for daylight to +renew my search. I remained in the room and waited.” + +“Oh, Heaven!” + +30271m + + + +When daylight dawned I went down again. My first visit was to the +thicket. I hoped to find some traces which had escaped me in the +darkness. I had turned up the earth over a surface of more than twenty +feet square, and a depth of two feet. A laborer would not have done in +a day what occupied me an hour. But I could find nothing—absolutely +nothing. Then I renewed the search. Supposing it had been thrown aside, +it would probably be on the path which led to the little gate; but this +examination was as useless as the first, and with a bursting heart I +returned to the thicket, which now contained no hope for me.” + +“Oh,” cried Madame Danglars, “it was enough to drive you mad!” + +“I hoped for a moment that it might,” said Villefort; “but that +happiness was denied me. However, recovering my strength and my ideas, +‘Why,’ said I, ‘should that man have carried away the corpse?’” + +“But you said,” replied Madame Danglars, “he would require it as a +proof.” + +“Ah, no, madame, that could not be. Dead bodies are not kept a year; +they are shown to a magistrate, and the evidence is taken. Now, nothing +of the kind has happened.” + +“What then?” asked Hermine, trembling violently. + +“Something more terrible, more fatal, more alarming for us—the child +was, perhaps, alive, and the assassin may have saved it!” + +Madame Danglars uttered a piercing cry, and, seizing Villefort’s hands, +exclaimed, “My child was alive?” said she; “you buried my child alive? +You were not certain my child was dead, and you buried it? Ah——” + +Madame Danglars had risen, and stood before the procureur, whose hands +she wrung in her feeble grasp. + +“I know not; I merely suppose so, as I might suppose anything else,” +replied Villefort with a look so fixed, it indicated that his powerful +mind was on the verge of despair and madness. + +“Ah, my child, my poor child!” cried the baroness, falling on her +chair, and stifling her sobs in her handkerchief. Villefort, becoming +somewhat reassured, perceived that to avert the maternal storm +gathering over his head, he must inspire Madame Danglars with the +terror he felt. + +“You understand, then, that if it were so,” said he, rising in his +turn, and approaching the baroness, to speak to her in a lower tone, +“we are lost. This child lives, and someone knows it lives—someone is +in possession of our secret; and since Monte Cristo speaks before us of +a child disinterred, when that child could not be found, it is he who +is in possession of our secret.” + +“Just God, avenging God!” murmured Madame Danglars. + +Villefort’s only answer was a stifled groan. + +“But the child—the child, sir?” repeated the agitated mother. + +“How I have searched for him,” replied Villefort, wringing his hands; +“how I have called him in my long sleepless nights; how I have longed +for royal wealth to purchase a million of secrets from a million of +men, and to find mine among them! At last, one day, when for the +hundredth time I took up my spade, I asked myself again and again what +the Corsican could have done with the child. A child encumbers a +fugitive; perhaps, on perceiving it was still alive, he had thrown it +into the river.” + +“Impossible!” cried Madame Danglars: “a man may murder another out of +revenge, but he would not deliberately drown a child.” + +“Perhaps,” continued Villefort, “he had put it in the foundling +hospital.” + +“Oh, yes, yes,” cried the baroness; “my child is there!” + +“I ran to the hospital, and learned that the same night—the night of +the 20th of September—a child had been brought there, wrapped in part +of a fine linen napkin, purposely torn in half. This portion of the +napkin was marked with half a baron’s crown, and the letter H.” + +“Truly, truly,” said Madame Danglars, “all my linen is marked thus; +Monsieur de Nargonne was a baron, and my name is Hermine. Thank God, my +child was not then dead!” + +“No, it was not dead.” + +“And you can tell me so without fearing to make me die of joy? Where is +the child?” + +Villefort shrugged his shoulders. + +“Do I know?” said he; “and do you believe that if I knew I would relate +to you all its trials and all its adventures as would a dramatist or a +novel writer? Alas, no, I know not. A woman, about six months after, +came to claim it with the other half of the napkin. This woman gave all +the requisite particulars, and it was intrusted to her.” + +“But you should have inquired for the woman; you should have traced +her.” + +“And what do you think I did? I feigned a criminal process, and +employed all the most acute bloodhounds and skilful agents in search of +her. They traced her to Châlons, and there they lost her.” + +“They lost her?” + +“Yes, forever.” + +Madame Danglars had listened to this recital with a sigh, a tear, or a +shriek for every detail. “And this is all?” said she; “and you stopped +there?” + +“Oh, no,” said Villefort; “I never ceased to search and to inquire. +However, the last two or three years I had allowed myself some respite. +But now I will begin with more perseverance and fury than ever, since +fear urges me, not my conscience.” + +“But,” replied Madame Danglars, “the Count of Monte Cristo can know +nothing, or he would not seek our society as he does.” + +“Oh, the wickedness of man is very great,” said Villefort, “since it +surpasses the goodness of God. Did you observe that man’s eyes while he +was speaking to us?” + +“No.” + +“But have you ever watched him carefully?” + +“Doubtless he is capricious, but that is all; one thing alone struck +me,—of all the exquisite things he placed before us, he touched +nothing. I might have suspected he was poisoning us.” + +“And you see you would have been deceived.” + +“Yes, doubtless.” + +“But believe me, that man has other projects. For that reason I wished +to see you, to speak to you, to warn you against everyone, but +especially against him. Tell me,” cried Villefort, fixing his eyes more +steadfastly on her than he had ever done before, “did you ever reveal +to anyone our connection?” + +“Never, to anyone.” + +“You understand me,” replied Villefort, affectionately; “when I say +anyone,—pardon my urgency,—to anyone living I mean?” + +“Yes, yes, I understand very well,” ejaculated the baroness; “never, I +swear to you.” + +“Were you ever in the habit of writing in the evening what had +transpired in the morning? Do you keep a journal?” + +“No, my life has been passed in frivolity; I wish to forget it myself.” + +“Do you talk in your sleep?” + +30275m + + + +“I sleep soundly, like a child; do you not remember?” + +The color mounted to the baroness’s face, and Villefort turned awfully +pale. + +“It is true,” said he, in so low a tone that he could hardly be heard. + +“Well?” said the baroness. + +“Well, I understand what I now have to do,” replied Villefort. “In less +than one week from this time I will ascertain who this M. de Monte +Cristo is, whence he comes, where he goes, and why he speaks in our +presence of children that have been disinterred in a garden.” + +Villefort pronounced these words with an accent which would have made +the count shudder had he heard him. Then he pressed the hand the +baroness reluctantly gave him, and led her respectfully back to the +door. Madame Danglars returned in another cab to the passage, on the +other side of which she found her carriage, and her coachman sleeping +peacefully on his box while waiting for her. + + + + Chapter 68. A Summer Ball + +The same day during the interview between Madame Danglars and the +procureur, a travelling-carriage entered the Rue du Helder, passed +through the gateway of No. 27, and stopped in the yard. In a moment the +door was opened, and Madame de Morcerf alighted, leaning on her son’s +arm. Albert soon left her, ordered his horses, and having arranged his +toilet, drove to the Champs-Élysées, to the house of Monte Cristo. + +The count received him with his habitual smile. It was a strange thing +that no one ever appeared to advance a step in that man’s favor. Those +who would, as it were, force a passage to his heart, found an +impassable barrier. Morcerf, who ran towards him with open arms, was +chilled as he drew near, in spite of the friendly smile, and simply +held out his hand. Monte Cristo shook it coldly, according to his +invariable practice. + +“Here I am, dear count.” + +“Welcome home again.” + +“I arrived an hour since.” + +“From Dieppe?” + +“No, from Tréport.” + +“Indeed?” + +“And I have come at once to see you.” + +“That is extremely kind of you,” said Monte Cristo with a tone of +perfect indifference. + +“And what is the news?” + +“You should not ask a stranger, a foreigner, for news.” + +“I know it, but in asking for news, I mean, have you done anything for +me?” + +“Had you commissioned me?” said Monte Cristo, feigning uneasiness. + +“Come, come,” said Albert, “do not assume so much indifference. It is +said, sympathy travels rapidly, and when at Tréport, I felt the +electric shock; you have either been working for me or thinking of me.” + +“Possibly,” said Monte Cristo, “I have indeed thought of you, but the +magnetic wire I was guiding acted, indeed, without my knowledge.” + +30277m + + + +“Indeed! Pray tell me how it happened.” + +“Willingly. M. Danglars dined with me.” + +“I know it; to avoid meeting him, my mother and I left town.” + +“But he met here M. Andrea Cavalcanti.” + +“Your Italian prince?” + +“Not so fast; M. Andrea only calls himself count.” + +“Calls himself, do you say?” + +“Yes, calls himself.” + +“Is he not a count?” + +“What can I know of him? He calls himself so. I, of course, give him +the same title, and everyone else does likewise.” + +“What a strange man you are! What next? You say M. Danglars dined +here?” + +“Yes, with Count Cavalcanti, the marquis his father, Madame Danglars, +M. and Madame de Villefort,—charming people,—M. Debray, Maximilian +Morrel, and M. de Château-Renaud.” + +“Did they speak of me?” + +“Not a word.” + +“So much the worse.” + +“Why so? I thought you wished them to forget you?” + +“If they did not speak of me, I am sure they thought about me, and I am +in despair.” + +“How will that affect you, since Mademoiselle Danglars was not among +the number here who thought of you? Truly, she might have thought of +you at home.” + +“I have no fear of that; or, if she did, it was only in the same way in +which I think of her.” + +“Touching sympathy! So you hate each other?” said the count. + +“Listen,” said Morcerf—“if Mademoiselle Danglars were disposed to take +pity on my supposed martyrdom on her account, and would dispense with +all matrimonial formalities between our two families, I am ready to +agree to the arrangement. In a word, Mademoiselle Danglars would make a +charming mistress—but a wife—_diable!_” + +“And this,” said Monte Cristo, “is your opinion of your intended +spouse?” + +“Yes; it is rather unkind, I acknowledge, but it is true. But as this +dream cannot be realized, since Mademoiselle Danglars must become my +lawful wife, live perpetually with me, sing to me, compose verses and +music within ten paces of me, and that for my whole life, it frightens +me. One may forsake a mistress, but a wife,—good heavens! There she +must always be; and to marry Mademoiselle Danglars would be awful.” + +“You are difficult to please, viscount.” + +“Yes, for I often wish for what is impossible.” + +“What is that?” + +“To find such a wife as my father found.” + +Monte Cristo turned pale, and looked at Albert, while playing with some +magnificent pistols. + +“Your father was fortunate, then?” said he. + +“You know my opinion of my mother, count; look at her,—still beautiful, +witty, more charming than ever. For any other son to have stayed with +his mother for four days at Tréport, it would have been a condescension +or a martyrdom, while I return, more contented, more peaceful—shall I +say more poetic!—than if I had taken Queen Mab or Titania as my +companion.” + +30279m + + + +“That is an overwhelming demonstration, and you would make everyone vow +to live a single life.” + +“Such are my reasons for not liking to marry Mademoiselle Danglars. +Have you ever noticed how much a thing is heightened in value when we +obtain possession of it? The diamond which glittered in the window at +Marlé’s or Fossin’s shines with more splendor when it is our own; but +if we are compelled to acknowledge the superiority of another, and +still must retain the one that is inferior, do you not know what we +have to endure?” + +“Worldling,” murmured the count. + +“Thus I shall rejoice when Mademoiselle Eugénie perceives I am but a +pitiful atom, with scarcely as many hundred thousand francs as she has +millions.” Monte Cristo smiled. “One plan occurred to me,” continued +Albert; “Franz likes all that is eccentric; I tried to make him fall in +love with Mademoiselle Danglars; but in spite of four letters, written +in the most alluring style, he invariably answered: ‘My eccentricity +may be great, but it will not make me break my promise.’” + +“That is what I call devoted friendship, to recommend to another one +whom you would not marry yourself.” Albert smiled. + +“Apropos,” continued he, “Franz is coming soon, but it will not +interest you; you dislike him, I think?” + +“I?” said Monte Cristo; “my dear viscount, how have you discovered that +I did not like M. Franz! I like everyone.” + +“And you include me in the expression everyone—many thanks!” + +“Let us not mistake,” said Monte Cristo; “I love everyone as God +commands us to love our neighbor, as Christians; but I thoroughly hate +but a few. Let us return to M. Franz d’Épinay. Did you say he was +coming?” + +“Yes; summoned by M. de Villefort, who is apparently as anxious to get +Mademoiselle Valentine married as M. Danglars is to see Mademoiselle +Eugénie settled. It must be a very irksome office to be the father of a +grown-up daughter; it seems to make one feverish, and to raise one’s +pulse to ninety beats a minute until the deed is done.” + +“But M. d’Épinay, unlike you, bears his misfortune patiently.” + +“Still more, he talks seriously about the matter, puts on a white tie, +and speaks of his family. He entertains a very high opinion of M. and +Madame de Villefort.” + +“Which they deserve, do they not?” + +“I believe they do. M. de Villefort has always passed for a severe but +a just man.” + +“There is, then, one,” said Monte Cristo, “whom you do not condemn like +poor Danglars?” + +“Because I am not compelled to marry his daughter perhaps,” replied +Albert, laughing. + +“Indeed, my dear sir,” said Monte Cristo, “you are revoltingly +foppish.” + +“I foppish? how do you mean?” + +“Yes; pray take a cigar, and cease to defend yourself, and to struggle +to escape marrying Mademoiselle Danglars. Let things take their course; +perhaps you may not have to retract.” + +“Bah!” said Albert, staring. + +“Doubtless, my dear viscount, you will not be taken by force; and +seriously, do you wish to break off your engagement?” + +“I would give a hundred thousand francs to be able to do so.” + +“Then make yourself quite easy. M. Danglars would give double that sum +to attain the same end.” + +“Am I, indeed, so happy?” said Albert, who still could not prevent an +almost imperceptible cloud passing across his brow. “But, my dear +count, has M. Danglars any reason?” + +“Ah! there is your proud and selfish nature. You would expose the +self-love of another with a hatchet, but you shrink if your own is +attacked with a needle.” + +“But yet, M. Danglars appeared——” + +“Delighted with you, was he not? Well, he is a man of bad taste, and is +still more enchanted with another. I know not whom; look and judge for +yourself.” + +“Thank you, I understand. But my mother—no, not my mother; I mistake—my +father intends giving a ball.” + +“A ball at this season?” + +“Summer balls are fashionable.” + +“If they were not, the countess has only to wish it, and they would +become so.” + +“You are right; You know they are select affairs; those who remain in +Paris in July must be true Parisians. Will you take charge of our +invitation to Messieurs Cavalcanti?” + +“When will it take place?” + +“On Saturday.” + +“M. Cavalcanti’s father will be gone.” + +“But the son will be here; will you invite young M. Cavalcanti?” + +“I do not know him, viscount.” + +“You do not know him?” + +“No, I never saw him until a few days since, and am not responsible for +him.” + +“But you receive him at your house?” + +“That is another thing: he was recommended to me by a good abbé, who +may be deceived. Give him a direct invitation, but do not ask me to +present him. If he were afterwards to marry Mademoiselle Danglars, you +would accuse me of intrigue, and would be challenging me,—besides, I +may not be there myself.” + +“Where?” + +“At your ball.” + +“Why should you not be there?” + +“Because you have not yet invited me.” + +“But I come expressly for that purpose.” + +“You are very kind, but I may be prevented.” + +“If I tell you one thing, you will be so amiable as to set aside all +impediments.” + +“Tell me what it is.” + +“My mother begs you to come.” + +“The Comtesse de Morcerf?” said Monte Cristo, starting. + +“Ah, count,” said Albert, “I assure you Madame de Morcerf speaks freely +to me, and if you have not felt those sympathetic fibres of which I +spoke just now thrill within you, you must be entirely devoid of them, +for during the last four days we have spoken of no one else.” + +“You have talked of me?” + +“Yes, that is the penalty of being a living puzzle!” + +“Then I am also a puzzle to your mother? I should have thought her too +reasonable to be led by imagination.” + +“A problem, my dear count, for everyone—for my mother as well as +others; much studied, but not solved, you still remain an enigma, do +not fear. My mother is only astonished that you remain so long +unsolved. I believe, while the Countess G—— takes you for Lord Ruthven, +my mother imagines you to be Cagliostro or the Count Saint-Germain. The +first opportunity you have, confirm her in her opinion; it will be easy +for you, as you have the philosophy of the one and the wit of the +other.” + +“I thank you for the warning,” said the count; “I shall endeavor to be +prepared for all suppositions.” + +“You will, then, come on Saturday?” + +“Yes, since Madame de Morcerf invites me.” + +“You are very kind.” + +“Will M. Danglars be there?” + +“He has already been invited by my father. We shall try to persuade the +great d’Aguesseau,11 M. de Villefort, to come, but have not much hope +of seeing him.” + +“‘Never despair of anything,’ says the proverb.” + +“Do you dance, count?” + +“I dance?” + +“Yes, you; it would not be astonishing.” + +“That is very well before one is over forty. No, I do not dance, but I +like to see others do so. Does Madame de Morcerf dance?” + +“Never; you can talk to her, she so delights in your conversation.” + +“Indeed?” + +30283m + + + +“Yes, truly; and I assure you. You are the only man of whom I have +heard her speak with interest.” Albert rose and took his hat; the count +conducted him to the door. + +“I have one thing to reproach myself with,” said he, stopping Albert on +the steps. “What is it?” + +“I have spoken to you indiscreetly about Danglars.” + +“On the contrary, speak to me always in the same strain about him.” + +“I am glad to be reassured on that point. Apropos, when do you aspect +M. d’Épinay?” + +“Five or six days hence at the latest.” + +“And when is he to be married?” + +“Immediately on the arrival of M. and Madame de Saint-Méran.” + +“Bring him to see me. Although you say I do not like him, I assure you +I shall be happy to see him.” + +“I will obey your orders, my lord.” + +“Good-bye.” + +“Until Saturday, when I may expect you, may I not?” + +“Yes, I promised you.” The Count watched Albert, waving his hand to +him. When he had mounted his phaeton, Monte Cristo turned, and seeing +Bertuccio, “What news?” said he. + +“She went to the Palais,” replied the steward. + +“Did she stay long there?” + +“An hour and a half.” + +“Did she return home?” + +“Directly.” + +“Well, my dear Bertuccio,” said the count, “I now advise you to go in +quest of the little estate I spoke to you of in Normandy.” + +Bertuccio bowed, and as his wishes were in perfect harmony with the +order he had received, he started the same evening. + + + + Chapter 69. The Inquiry + +M. de Villefort kept the promise he had made to Madame Danglars, to +endeavor to find out how the Count of Monte Cristo had discovered the +history of the house at Auteuil. He wrote the same day for the required +information to M. de Boville, who, from having been an inspector of +prisons, was promoted to a high office in the police; and the latter +begged for two days time to ascertain exactly who would be most likely +to give him full particulars. At the end of the second day M. de +Villefort received the following note: + +“The person called the Count of Monte Cristo is an intimate +acquaintance of Lord Wilmore, a rich foreigner, who is sometimes seen +in Paris and who is there at this moment; he is also known to the Abbé +Busoni, a Sicilian priest, of high repute in the East, where he has +done much good.” + +M. de Villefort replied by ordering the strictest inquiries to be made +respecting these two persons; his orders were executed, and the +following evening he received these details: + +“The abbé, who was in Paris only for a month, inhabited a small +two-storied house behind Saint-Sulpice; there were two rooms on each +floor and he was the only tenant. The two lower rooms consisted of a +dining-room, with a table, chairs, and side-board of walnut, and a +wainscoted parlor, without ornaments, carpet, or timepiece. It was +evident that the abbé limited himself to objects of strict necessity. +He preferred to use the sitting-room upstairs, which was more library +than parlor, and was furnished with theological books and parchments, +in which he delighted to bury himself for months at a time, according +to his valet de chambre. His valet looked at the visitors through a +sort of wicket; and if their faces were unknown to him or displeased +him, he replied that the abbé was not in Paris, an answer which +satisfied most persons, because the abbé was known to be a great +traveller. Besides, whether at home or not, whether in Paris or Cairo, +the abbé always left something to give away, which the valet +distributed through this wicket in his master’s name. The other room +near the library was a bedroom. A bed without curtains, four armchairs, +and a couch, covered with yellow Utrecht velvet, composed, with a +_prie-Dieu_, all its furniture. + +“Lord Wilmore resided in Rue Fontaine-Saint-Georges. He was one of +those English tourists who consume a large fortune in travelling. He +hired the apartment in which he lived furnished, passed only a few +hours in the day there, and rarely slept there. One of his +peculiarities was never to speak a word of French, which he however +wrote with great facility.” + +The day after this important information had been given to the king’s +attorney, a man alighted from a carriage at the corner of the Rue +Férou, and rapping at an olive-green door, asked if the Abbé Busoni +were within. + +“No, he went out early this morning,” replied the valet. + +“I might not always be content with that answer,” replied the visitor, +“for I come from one to whom everyone must be at home. But have the +kindness to give the Abbé Busoni——” + +“I told you he was not at home,” repeated the valet. + +“Then on his return give him that card and this sealed paper. Will he +be at home at eight o’clock this evening?” + +“Doubtless, unless he is at work, which is the same as if he were out.” + +“I will come again at that time,” replied the visitor, who then +retired. + +At the appointed hour the same man returned in the same carriage, +which, instead of stopping this time at the end of the Rue Férou, drove +up to the green door. He knocked, and it opened immediately to admit +him. From the signs of respect the valet paid him, he saw that his note +had produced a good effect. + +“Is the abbé at home?” asked he. + +“Yes; he is at work in his library, but he expects you, sir,” replied +the valet. The stranger ascended a rough staircase, and before a table, +illumined by a lamp whose light was concentrated by a large shade while +the rest of the apartment was in partial darkness, he perceived the +abbé in a monk’s dress, with a cowl on his head such as was used by +learned men of the Middle Ages. + +“Have I the honor of addressing the Abbé Busoni?” asked the visitor. + +“Yes, sir,” replied the abbé; “and you are the person whom M. de +Boville, formerly an inspector of prisons, sends to me from the prefect +of police?” + +“Exactly, sir.” + +“One of the agents appointed to secure the safety of Paris?” + +“Yes, sir” replied the stranger with a slight hesitation, and blushing. + +The abbé replaced the large spectacles, which covered not only his eyes +but his temples, and sitting down motioned to his visitor to do the +same. “I am at your service, sir,” said the abbé, with a marked Italian +accent. + +“The mission with which I am charged, sir,” replied the visitor, +speaking with hesitation, “is a confidential one on the part of him who +fulfils it, and him by whom he is employed.” The abbé bowed. “Your +probity,” replied the stranger, “is so well known to the prefect that +he wishes as a magistrate to ascertain from you some particulars +connected with the public safety, to ascertain which I am deputed to +see you. It is hoped that no ties of friendship or humane consideration +will induce you to conceal the truth.” + +“Provided, sir, the particulars you wish for do not interfere with my +scruples or my conscience. I am a priest, sir, and the secrets of +confession, for instance, must remain between me and God, and not +between me and human justice.” + +“Do not alarm yourself, monsieur, we will duly respect your +conscience.” + +At this moment the abbé pressed down his side of the shade and so +raised it on the other, throwing a bright light on the stranger’s face, +while his own remained obscured. + +“Excuse me, abbé,” said the envoy of the prefect of the police, “but +the light tries my eyes very much.” The abbé lowered the shade. + +“Now, sir, I am listening—go on.” + +“I will come at once to the point. Do you know the Count of Monte +Cristo?” + +“You mean Monsieur Zaccone, I presume?” + +“Zaccone?—is not his name Monte Cristo?” + +“Monte Cristo is the name of an estate, or, rather, of a rock, and not +a family name.” + +“Well, be it so—let us not dispute about words; and since M. de Monte +Cristo and M. Zaccone are the same——” + +“Absolutely the same.” + +“Let us speak of M. Zaccone.” + +“Agreed.” + +“I asked you if you knew him?” + +“Extremely well.” + +“Who is he?” + +“The son of a rich shipbuilder in Malta.” + +“I know that is the report; but, as you are aware, the police does not +content itself with vague reports.” + +“However,” replied the abbé, with an affable smile, “when that report +is in accordance with the truth, everybody must believe it, the police +as well as all the rest.” + +“Are you sure of what you assert?” + +“What do you mean by that question?” + +“Understand, sir, I do not in the least suspect your veracity; I ask if +you are certain of it?” + +“I knew his father, M. Zaccone.” + +“Ah, indeed?” + +“And when a child I often played with the son in the timber-yards.” + +“But whence does he derive the title of count?” + +“You are aware that may be bought.” + +“In Italy?” + +“Everywhere.” + +“And his immense riches, whence does he procure them?” + +“They may not be so very great.” + +“How much do you suppose he possesses?” + +“From one hundred and fifty to two hundred thousand livres per annum.” + +“That is reasonable,” said the visitor; “I have heard he had three or +four millions.” + +“Two hundred thousand per annum would make four millions of capital.” + +“But I was told he had four millions per annum.” + +“That is not probable.” + +“Do you know this Island of Monte Cristo?” + +“Certainly, everyone who has come from Palermo, Naples, or Rome to +France by sea must know it, since he has passed close to it and must +have seen it.” + +“I am told it is a delightful place?” + +“It is a rock.” + +“And why has the count bought a rock?” + +“For the sake of being a count. In Italy one must have territorial +possessions to be a count.” + +“You have, doubtless, heard the adventures of M. Zaccone’s youth?” + +“The father’s?” + +“No, the son’s.” + +“I know nothing certain; at that period of his life, I lost sight of my +young comrade.” + +“Was he in the wars?” + +“I think he entered the service.” + +“In what branch?” + +“In the navy.” + +“Are you not his confessor?” + +“No, sir; I believe he is a Lutheran.” + +“A Lutheran?” + +“I say, I believe such is the case, I do not affirm it; besides, +liberty of conscience is established in France.” + +“Doubtless, and we are not now inquiring into his creed, but his +actions; in the name of the prefect of police, I ask you what you know +of him. + +“He passes for a very charitable man. Our holy father, the pope, has +made him a knight of Jesus Christ for the services he rendered to the +Christians in the East; he has five or six rings as testimonials from +Eastern monarchs of his services.” + +“Does he wear them?” + +“No, but he is proud of them; he is better pleased with rewards given +to the benefactors of man than to his destroyers.” + +“He is a Quaker then?” + +“Exactly, he is a Quaker, with the exception of the peculiar dress.” + +“Has he any friends?” + +“Yes, everyone who knows him is his friend.” + +“But has he any enemies?” + +“One only.” + +“What is his name?” + +“Lord Wilmore.” + +“Where is he?” + +“He is in Paris just now.” + +“Can he give me any particulars?” + +“Important ones; he was in India with Zaccone.” + +“Do you know his abode?” + +“It’s somewhere in the Chaussée d’Antin; but I know neither the street +nor the number.” + +30289m + + + +“Are you at variance with the Englishman?” + +“I love Zaccone, and he hates him; we are consequently not friends.” + +“Do you think the Count of Monte Cristo had ever been in France before +he made this visit to Paris?” + +“To that question I can answer positively; no, sir, he had not, because +he applied to me six months ago for the particulars he required, and as +I did not know when I might again come to Paris, I recommended M. +Cavalcanti to him.” + +“Andrea?” + +“No, Bartolomeo, his father.” + +“Now, sir, I have but one question more to ask, and I charge you, in +the name of honor, of humanity, and of religion, to answer me +candidly.” + +“What is it, sir?” + +“Do you know with what design M. de Monte Cristo purchased a house at +Auteuil?” + +“Certainly, for he told me.” + +“What is it, sir?” + +“To make a lunatic asylum of it, similar to that founded by the Count +of Pisani at Palermo. Do you know about that institution?” + +“I have heard of it.” + +“It is a magnificent charity.” Having said this, the abbé bowed to +imply he wished to pursue his studies. + +The visitor either understood the abbé’s meaning, or had no more +questions to ask; he arose, and the abbé accompanied him to the door. + +“You are a great almsgiver,” said the visitor, “and although you are +said to be rich, I will venture to offer you something for your poor +people; will you accept my offering?” + +“I thank you, sir; I am only jealous in one thing, and that is that the +relief I give should be entirely from my own resources.” + +“However——” + +“My resolution, sir, is unchangeable, but you have only to search for +yourself and you will find, alas, but too many objects upon whom to +exercise your benevolence.” + +The abbé once more bowed as he opened the door, the stranger bowed and +took his leave, and the carriage conveyed him straight to the house of +M. de Villefort. An hour afterwards the carriage was again ordered, and +this time it went to the Rue Fontaine-Saint-Georges, and stopped at No. +5, where Lord Wilmore lived. The stranger had written to Lord Wilmore, +requesting an interview, which the latter had fixed for ten o’clock. As +the envoy of the prefect of police arrived ten minutes before ten, he +was told that Lord Wilmore, who was precision and punctuality +personified, was not yet come in, but that he would be sure to return +as the clock struck. + +The visitor was introduced into the drawing-room, which was like all +other furnished drawing-rooms. A mantle-piece, with two modern Sèvres +vases, a timepiece representing Cupid with his bent bow, a mirror with +an engraving on each side—one representing Homer carrying his guide, +the other, Belisarius begging—a grayish paper; red and black +tapestry—such was the appearance of Lord Wilmore’s drawing-room. + +It was illuminated by lamps with ground-glass shades which gave only a +feeble light, as if out of consideration for the envoy’s weak sight. +After ten minutes’ expectation the clock struck ten; at the fifth +stroke the door opened and Lord Wilmore appeared. He was rather above +the middle height, with thin reddish whiskers, light complexion and +light hair, turning rather gray. He was dressed with all the English +peculiarity, namely, in a blue coat, with gilt buttons and high collar, +in the fashion of 1811, a white kerseymere waistcoat, and nankeen +pantaloons, three inches too short, but which were prevented by straps +from slipping up to the knee. His first remark on entering was: + +“You know, sir, I do not speak French?” + +“I know you do not like to converse in our language,” replied the +envoy. + +“But you may use it,” replied Lord Wilmore; “I understand it.” + +“And I,” replied the visitor, changing his idiom, “know enough of +English to keep up the conversation. Do not put yourself to the +slightest inconvenience.” + +“Aw?” said Lord Wilmore, with that tone which is only known to natives +of Great Britain. + +The envoy presented his letter of introduction, which the latter read +with English coolness, and having finished: + +“I understand,” said he, “perfectly.” + +30293m + + + +Then began the questions, which were similar to those which had been +addressed to the Abbé Busoni. But as Lord Wilmore, in the character of +the count’s enemy, was less restrained in his answers, they were more +numerous; he described the youth of Monte Cristo, who he said, at ten +years of age, entered the service of one of the petty sovereigns of +India who make war on the English. It was there Wilmore had first met +him and fought against him; and in that war Zaccone had been taken +prisoner, sent to England, and consigned to the hulks, whence he had +escaped by swimming. Then began his travels, his duels, his caprices; +then the insurrection in Greece broke out, and he had served in the +Grecian ranks. While in that service he had discovered a silver mine in +the mountains of Thessaly, but he had been careful to conceal it from +everyone. After the battle of Navarino, when the Greek government was +consolidated, he asked of King Otho a mining grant for that district, +which was given him. Hence that immense fortune, which, in Lord +Wilmore’s opinion, possibly amounted to one or two millions per +annum,—a precarious fortune, which might be momentarily lost by the +failure of the mine. + +“But,” asked the visitor, “do you know why he came to France?” + +“He is speculating in railways,” said Lord Wilmore, “and as he is an +expert chemist and physicist, he has invented a new system of +telegraphy, which he is seeking to bring to perfection.” + +“How much does he spend yearly?” asked the prefect. + +“Not more than five or six hundred thousand francs,” said Lord Wilmore; +“he is a miser.” Hatred evidently inspired the Englishman, who, knowing +no other reproach to bring on the count, accused him of avarice. + +“Do you know his house at Auteuil?” + +“Certainly.” + +“What do you know respecting it?” + +“Do you wish to know why he bought it?” + +“Yes.” + +“The count is a speculator, who will certainly ruin himself in +experiments. He supposes there is in the neighborhood of the house he +has bought a mineral spring equal to those at Bagnères, Luchon, and +Cauterets. He is going to turn his house into a _Badhaus_, as the +Germans term it. He has already dug up all the garden two or three +times to find the famous spring, and, being unsuccessful, he will soon +purchase all the contiguous houses. Now, as I dislike him, and hope his +railway, his electric telegraph, or his search for baths, will ruin +him, I am watching for his discomfiture, which must soon take place.” + +“What was the cause of your quarrel?” + +“When he was in England he seduced the wife of one of my friends.” + +“Why do you not seek revenge?” + +“I have already fought three duels with him,” said the Englishman, “the +first with the pistol, the second with the sword, and the third with +the sabre.” + +“And what was the result of those duels?” + +“The first time, he broke my arm; the second, he wounded me in the +breast; and the third time, made this large wound.” The Englishman +turned down his shirt-collar, and showed a scar, whose redness proved +it to be a recent one. “So that, you see, there is a deadly feud +between us.” + +“But,” said the envoy, “you do not go about it in the right way to kill +him, if I understand you correctly.” + +“Aw?” said the Englishman, “I practice shooting every day, and every +other day Grisier comes to my house.” + +This was all the visitor wished to ascertain, or, rather, all the +Englishman appeared to know. The agent arose, and having bowed to Lord +Wilmore, who returned his salutation with the stiff politeness of the +English, he retired. Lord Wilmore, having heard the door close after +him, returned to his bedroom, where with one hand he pulled off his +light hair, his red whiskers, his false jaw, and his wound, to resume +the black hair, dark complexion, and pearly teeth of the Count of Monte +Cristo. + +It was M. de Villefort, and not the prefect, who returned to the house +of M. de Villefort. The procureur felt more at ease, although he had +learned nothing really satisfactory, and, for the first time since the +dinner-party at Auteuil, he slept soundly. + + + + Chapter 70. The Ball + +It was in the warmest days of July, when in due course of time the +Saturday arrived upon which the ball was to take place at M. de +Morcerf’s. It was ten o’clock at night; the branches of the great trees +in the garden of the count’s house stood out boldly against the azure +canopy of heaven, which was studded with golden stars, but where the +last fleeting clouds of a vanishing storm yet lingered. + +From the apartments on the ground floor might be heard the sound of +music, with the whirl of the waltz and galop, while brilliant streams +of light shone through the openings of the Venetian blinds. At this +moment the garden was only occupied by about ten servants, who had just +received orders from their mistress to prepare the supper, the serenity +of the weather continuing to increase. Until now, it had been undecided +whether the supper should take place in the dining-room, or under a +long tent erected on the lawn, but the beautiful blue sky, studded with +stars, had settled the question in favor of the lawn. + +The gardens were illuminated with colored lanterns, according to the +Italian custom, and, as is usual in countries where the luxuries of the +table—the rarest of all luxuries in their complete form—are well +understood, the supper-table was loaded with wax-lights and flowers. + +30297m + + + +At the time the Countess of Morcerf returned to the rooms, after giving +her orders, many guests were arriving, more attracted by the charming +hospitality of the countess than by the distinguished position of the +count; for, owing to the good taste of Mercédès, one was sure of +finding some devices at her entertainment worthy of describing, or even +copying in case of need. + +Madame Danglars, in whom the events we have related had caused deep +anxiety, had hesitated about going to Madame de Morcerf’s, when during +the morning her carriage happened to meet that of Villefort. The latter +made a sign, and when the carriages had drawn close together, said: + +“You are going to Madame de Morcerf’s, are you not?” + +“No,” replied Madame Danglars, “I am too ill.” + +“You are wrong,” replied Villefort, significantly; “it is important +that you should be seen there.” + +“Do you think so?” asked the baroness. + +“I do.” + +“In that case I will go.” + +And the two carriages passed on towards their different destinations. +Madame Danglars therefore came, not only beautiful in person, but +radiant with splendor; she entered by one door at the time when +Mercédès appeared at the door. The countess took Albert to meet Madame +Danglars. He approached, paid her some well merited compliments on her +toilet, and offered his arm to conduct her to a seat. Albert looked +around him. + +“You are looking for my daughter?” said the baroness, smiling. + +“I confess it,” replied Albert. “Could you have been so cruel as not to +bring her?” + +“Calm yourself. She has met Mademoiselle de Villefort, and has taken +her arm; see, they are following us, both in white dresses, one with a +bouquet of camellias, the other with one of myosotis. But tell me——” + +“Well, what do you wish to know?” + +“Will not the Count of Monte Cristo be here tonight?” + +“Seventeen!” replied Albert. + +“What do you mean?” + +“I only mean that the count seems the rage,” replied the viscount, +smiling, “and that you are the seventeenth person that has asked me the +same question. The count is in fashion; I congratulate him upon it.” + +“And have you replied to everyone as you have to me?” + +“Ah, to be sure, I have not answered you; be satisfied, we shall have +this ‘lion’; we are among the privileged ones.” + +“Were you at the Opera yesterday?” + +“No.” + +“He was there.” + +“Ah, indeed? And did the eccentric person commit any new originality?” + +“Can he be seen without doing so? Elssler was dancing in _Le Diable +boiteux_; the Greek princess was in ecstasies. After the cachucha he +placed a magnificent ring on the stem of a bouquet, and threw it to the +charming danseuse, who, in the third act, to do honor to the gift, +reappeared with it on her finger. And the Greek princess,—will she be +here?” + +“No, you will be deprived of that pleasure; her position in the count’s +establishment is not sufficiently understood.” + +“Wait; leave me here, and go and speak to Madame de Villefort, who is +trying to attract your attention.” + +Albert bowed to Madame Danglars, and advanced towards Madame de +Villefort, whose lips opened as he approached. + +“I wager anything,” said Albert, interrupting her, “that I know what +you were about to say.” + +“Well, what is it?” + +“If I guess rightly, will you confess it?” + +“Yes.” + +“On your honor?” + +“On my honor.” + +“You were going to ask me if the Count of Monte Cristo had arrived, or +was expected.” + +“Not at all. It is not of him that I am now thinking. I was going to +ask you if you had received any news of Monsieur Franz.” + +“Yes,—yesterday.” + +“What did he tell you?” + +“That he was leaving at the same time as his letter.” + +“Well, now then, the count?” + +“The count will come, of that you may be satisfied.” + +“You know that he has another name besides Monte Cristo?” + +“No, I did not know it.” + +“Monte Cristo is the name of an island, and he has a family name.” + +“I never heard it.” + +“Well, then, I am better informed than you; his name is Zaccone.” + +“It is possible.” + +“He is a Maltese.” + +“That is also possible. + +“The son of a shipowner.” + +“Really, you should relate all this aloud, you would have the greatest +success.” + +“He served in India, discovered a mine in Thessaly, and comes to Paris +to establish a mineral water-cure at Auteuil.” + +“Well, I’m sure,” said Morcerf, “this is indeed news! Am I allowed to +repeat it?” + +“Yes, but cautiously, tell one thing at a time, and do not say I told +you.” + +“Why so?” + +“Because it is a secret just discovered.” + +“By whom?” + +“The police.” + +“Then the news originated——” + +“At the prefect’s last night. Paris, you can understand, is astonished +at the sight of such unusual splendor, and the police have made +inquiries.” + +“Well, well! Nothing more is wanting than to arrest the count as a +vagabond, on the pretext of his being too rich.” + +“Indeed, that doubtless would have happened if his credentials had not +been so favorable.” + +“Poor count! And is he aware of the danger he has been in?” + +“I think not.” + +“Then it will be but charitable to inform him. When he arrives, I will +not fail to do so.” + +Just then, a handsome young man, with bright eyes, black hair, and +glossy moustache, respectfully bowed to Madame de Villefort. Albert +extended his hand. + +“Madame,” said Albert, “allow me to present to you M. Maximilian +Morrel, captain of Spahis, one of our best, and, above all, of our +bravest officers.” + +“I have already had the pleasure of meeting this gentleman at Auteuil, +at the house of the Count of Monte Cristo,” replied Madame de +Villefort, turning away with marked coldness of manner. + +This answer, and especially the tone in which it was uttered, chilled +the heart of poor Morrel. But a recompense was in store for him; +turning around, he saw near the door a beautiful fair face, whose large +blue eyes were, without any marked expression, fixed upon him, while +the bouquet of myosotis was gently raised to her lips. + +The salutation was so well understood that Morrel, with the same +expression in his eyes, placed his handkerchief to his mouth; and these +two living statues, whose hearts beat so violently under their marble +aspect, separated from each other by the whole length of the room, +forgot themselves for a moment, or rather forgot the world in their +mutual contemplation. They might have remained much longer lost in one +another, without anyone noticing their abstraction. The Count of Monte +Cristo had just entered. + +We have already said that there was something in the count which +attracted universal attention wherever he appeared. It was not the +coat, unexceptional in its cut, though simple and unornamented; it was +not the plain white waistcoat; it was not the trousers, that displayed +the foot so perfectly formed—it was none of these things that attracted +the attention,—it was his pale complexion, his waving black hair, his +calm and serene expression, his dark and melancholy eye, his mouth, +chiselled with such marvellous delicacy, which so easily expressed such +high disdain,—these were what fixed the attention of all upon him. + +Many men might have been handsomer, but certainly there could be none +whose appearance was more _significant_, if the expression may be used. +Everything about the count seemed to have its meaning, for the constant +habit of thought which he had acquired had given an ease and vigor to +the expression of his face, and even to the most trifling gesture, +scarcely to be understood. Yet the Parisian world is so strange, that +even all this might not have won attention had there not been connected +with it a mysterious story gilded by an immense fortune. + +30301m + + + +Meanwhile he advanced through the assemblage of guests under a battery +of curious glances towards Madame de Morcerf, who, standing before a +mantle-piece ornamented with flowers, had seen his entrance in a +looking-glass placed opposite the door, and was prepared to receive +him. She turned towards him with a serene smile just at the moment he +was bowing to her. No doubt she fancied the count would speak to her, +while on his side the count thought she was about to address him; but +both remained silent, and after a mere bow, Monte Cristo directed his +steps to Albert, who received him cordially. + +“Have you seen my mother?” asked Albert. + +“I have just had the pleasure,” replied the count; “but I have not seen +your father.” + +“See, he is down there, talking politics with that little group of +great geniuses.” + +“Indeed?” said Monte Cristo; “and so those gentlemen down there are men +of great talent. I should not have guessed it. And for what kind of +talent are they celebrated? You know there are different sorts.” + +“That tall, harsh-looking man is very learned, he discovered, in the +neighborhood of Rome, a kind of lizard with a vertebra more than +lizards usually have, and he immediately laid his discovery before the +Institute. The thing was discussed for a long time, but finally decided +in his favor. I can assure you the vertebra made a great noise in the +learned world, and the gentleman, who was only a knight of the Legion +of Honor, was made an officer.” + +“Come,” said Monte Cristo, “this cross seems to me to be wisely +awarded. I suppose, had he found another additional vertebra, they +would have made him a commander.” + +“Very likely,” said Albert. + +“And who can that person be who has taken it into his head to wrap +himself up in a blue coat embroidered with green?” + +“Oh, that coat is not his own idea; it is the Republic’s, which deputed +David12 to devise a uniform for the Academicians.” + +“Indeed?” said Monte Cristo; “so this gentleman is an Academician?” + +“Within the last week he has been made one of the learned assembly.” + +“And what is his especial talent?” + +“His talent? I believe he thrusts pins through the heads of rabbits, he +makes fowls eat madder, and punches the spinal marrow out of dogs with +whalebone.” + +“And he is made a member of the Academy of Sciences for this?” + +“No; of the French Academy.” + +“But what has the French Academy to do with all this?” + +“I was going to tell you. It seems——” + +“That his experiments have very considerably advanced the cause of +science, doubtless?” + +“No; that his style of writing is very good.” + +“This must be very flattering to the feelings of the rabbits into whose +heads he has thrust pins, to the fowls whose bones he has dyed red, and +to the dogs whose spinal marrow he has punched out?” + +Albert laughed. + +“And the other one?” demanded the count. + +“That one?” + +“Yes, the third.” + +“The one in the dark blue coat?” + +“Yes.” + +“He is a colleague of the count, and one of the most active opponents +to the idea of providing the Chamber of Peers with a uniform. He was +very successful upon that question. He stood badly with the Liberal +papers, but his noble opposition to the wishes of the court is now +getting him into favor with the journalists. They talk of making him an +ambassador.” + +30303m + + + +“And what are his claims to the peerage?” + +“He has composed two or three comic operas, written four or five +articles in the _Siècle_, and voted five or six years on the +ministerial side.” + +“Bravo, viscount,” said Monte Cristo, smiling; “you are a delightful +_cicerone_. And now you will do me a favor, will you not?” + +“What is it?” + +“Do not introduce me to any of these gentlemen; and should they wish +it, you will warn me.” Just then the count felt his arm pressed. He +turned round; it was Danglars. + +“Ah! is it you, baron?” said he. + +“Why do you call me baron?” said Danglars; “you know that I care +nothing for my title. I am not like you, viscount; you like your title, +do you not?” + +“Certainly,” replied Albert, “seeing that without my title I should be +nothing; while you, sacrificing the baron, would still remain the +millionaire.” + +“Which seems to me the finest title under the royalty of July,” replied +Danglars. + +“Unfortunately,” said Monte Cristo, “one’s title to a millionaire does +not last for life, like that of baron, peer of France, or academician; +for example, the millionaires Franck & Poulmann, of Frankfurt, who have +just become bankrupts.” + +“Indeed?” said Danglars, becoming pale. + +“Yes; I received the news this evening by a courier. I had about a +million in their hands, but, warned in time, I withdrew it a month +ago.” + +“Ah, _mon Dieu!_” exclaimed Danglars, “they have drawn on me for +200,000 francs!” + +“Well, you can throw out the draft; their signature is worth five per +cent.” + +“Yes, but it is too late,” said Danglars, “I have honored their bills.” + +“Then,” said Monte Cristo, “here are 200,000 francs gone after——” + +“Hush, do not mention these things,” said Danglars; then, approaching +Monte Cristo, he added, “especially before young M. Cavalcanti;” after +which he smiled, and turned towards the young man in question. + +Albert had left the count to speak to his mother, Danglars to converse +with young Cavalcanti; Monte Cristo was for an instant alone. Meanwhile +the heat became excessive. The footmen were hastening through the rooms +with waiters loaded with ices. Monte Cristo wiped the perspiration from +his forehead, but drew back when the waiter was presented to him; he +took no refreshment. Madame de Morcerf did not lose sight of Monte +Cristo; she saw that he took nothing, and even noticed his gesture of +refusal. + +“Albert,” she asked, “did you notice that?” + +“What, mother?” + +“That the count has never been willing to partake of food under the +roof of M. de Morcerf.” + +“Yes; but then he breakfasted with me—indeed, he made his first +appearance in the world on that occasion.” + +“But your house is not M. de Morcerf’s,” murmured Mercédès; “and since +he has been here I have watched him.” + +“Well?” + +“Well, he has taken nothing yet.” + +“The count is very temperate.” + +Mercédès smiled sadly. + +“Approach him,” said she, “and when the next waiter passes, insist upon +his taking something.” + +“But why, mother?” + +“Just to please me, Albert,” said Mercédès. Albert kissed his mother’s +hand, and drew near the count. Another salver passed, loaded like the +preceding ones; she saw Albert attempt to persuade the count, but he +obstinately refused. Albert rejoined his mother; she was very pale. + +“Well,” said she, “you see he refuses?” + +“Yes; but why need this annoy you?” + +“You know, Albert, women are singular creatures. I should like to have +seen the count take something in my house, if only an ice. Perhaps he +cannot reconcile himself to the French style of living, and might +prefer something else.” + +“Oh, no; I have seen him eat of everything in Italy; no doubt he does +not feel inclined this evening.” + +“And besides,” said the countess, “accustomed as he is to burning +climates, possibly he does not feel the heat as we do.” + +“I do not think that, for he has complained of feeling almost +suffocated, and asked why the Venetian blinds were not opened as well +as the windows.” + +“In a word,” said Mercédès, “it was a way of assuring me that his +abstinence was intended.” + +And she left the room. + +A minute afterwards the blinds were thrown open, and through the +jessamine and clematis that overhung the window one could see the +garden ornamented with lanterns, and the supper laid under the tent. +Dancers, players, talkers, all uttered an exclamation of joy—everyone +inhaled with delight the breeze that floated in. At the same time +Mercédès reappeared, paler than before, but with that imperturbable +expression of countenance which she sometimes wore. She went straight +to the group of which her husband formed the centre. + +“Do not detain those gentlemen here, count,” she said; “they would +prefer, I should think, to breathe in the garden rather than suffocate +here, since they are not playing.” + +“Ah,” said a gallant old general, who, in 1809, had sung _Partant pour +la Syrie_,—“we will not go alone to the garden.” + +“Then,” said Mercédès, “I will lead the way.” + +Turning towards Monte Cristo, she added, “count, will you oblige me +with your arm?” + +The count almost staggered at these simple words; then he fixed his +eyes on Mercédès. It was only a momentary glance, but it seemed to the +countess to have lasted for a century, so much was expressed in that +one look. He offered his arm to the countess; she took it, or rather +just touched it with her little hand, and they together descended the +steps, lined with rhododendrons and camellias. Behind them, by another +outlet, a group of about twenty persons rushed into the garden with +loud exclamations of delight. + + + + Chapter 71. Bread and Salt + +Madame de Morcerf entered an archway of trees with her companion. It +led through a grove of lindens to a conservatory. + +“It was too warm in the room, was it not, count?” she asked. + +“Yes, madame; and it was an excellent idea of yours to open the doors +and the blinds.” As he ceased speaking, the count felt the hand of +Mercédès tremble. “But you,” he said, “with that light dress, and +without anything to cover you but that gauze scarf, perhaps you feel +cold?” + +“Do you know where I am leading you?” said the countess, without +replying to the question. + +“No, madame,” replied Monte Cristo; “but you see I make no resistance.” + +“We are going to the greenhouse that you see at the other end of the +grove.” + +The count looked at Mercédès as if to interrogate her, but she +continued to walk on in silence, and he refrained from speaking. They +reached the building, ornamented with magnificent fruits, which ripen +at the beginning of July in the artificial temperature which takes the +place of the sun, so frequently absent in our climate. The countess +left the arm of Monte Cristo, and gathered a bunch of Muscatel grapes. + +“See, count,” she said, with a smile so sad in its expression that one +could almost detect the tears on her eyelids—“see, our French grapes +are not to be compared, I know, with yours of Sicily and Cyprus, but +you will make allowance for our northern sun.” The count bowed, but +stepped back. + +“Do you refuse?” said Mercédès, in a tremulous voice. + +“Pray excuse me, madame,” replied Monte Cristo, “but I never eat +Muscatel grapes.” + +Mercédès let them fall, and sighed. A magnificent peach was hanging +against an adjoining wall, ripened by the same artificial heat. +Mercédès drew near, and plucked the fruit. + +“Take this peach, then,” she said. The count again refused. “What, +again?” she exclaimed, in so plaintive an accent that it seemed to +stifle a sob; “really, you pain me.” + +A long silence followed; the peach, like the grapes, fell to the +ground. + +“Count,” added Mercédès with a supplicating glance, “there is a +beautiful Arabian custom, which makes eternal friends of those who have +together eaten bread and salt under the same roof.” + +“I know it, madame,” replied the count; “but we are in France, and not +in Arabia, and in France eternal friendships are as rare as the custom +of dividing bread and salt with one another.” + +“But,” said the countess, breathlessly, with her eyes fixed on Monte +Cristo, whose arm she convulsively pressed with both hands, “we are +friends, are we not?” + +The count became pale as death, the blood rushed to his heart, and then +again rising, dyed his cheeks with crimson; his eyes swam like those of +a man suddenly dazzled. + +“Certainly, we are friends,” he replied; “why should we not be?” + +The answer was so little like the one Mercédès desired, that she turned +away to give vent to a sigh, which sounded more like a groan. “Thank +you,” she said. And they walked on again. They went the whole length of +the garden without uttering a word. + +“Sir,” suddenly exclaimed the countess, after their walk had continued +ten minutes in silence, “is it true that you have seen so much, +travelled so far, and suffered so deeply?” + +“I have suffered deeply, madame,” answered Monte Cristo. + +“But now you are happy?” + +“Doubtless,” replied the count, “since no one hears me complain.” + +“And your present happiness, has it softened your heart?” + +“My present happiness equals my past misery,” said the count. + +“Are you not married?” asked the countess. + +“I, married?” exclaimed Monte Cristo, shuddering; “who could have told +you so?” + +“No one told me you were, but you have frequently been seen at the +Opera with a young and lovely woman.” + +“She is a slave whom I bought at Constantinople, madame, the daughter +of a prince. I have adopted her as my daughter, having no one else to +love in the world.” + +“You live alone, then?” + +“I do.” + +“You have no sister—no son—no father?” + +“I have no one.” + +“How can you exist thus without anyone to attach you to life?” + +“It is not my fault, madame. At Malta, I loved a young girl, was on the +point of marrying her, when war came and carried me away. I thought she +loved me well enough to wait for me, and even to remain faithful to my +memory. When I returned she was married. This is the history of most +men who have passed twenty years of age. Perhaps my heart was weaker +than the hearts of most men, and I suffered more than they would have +done in my place; that is all.” + +The countess stopped for a moment, as if gasping for breath. “Yes,” she +said, “and you have still preserved this love in your heart—one can +only love once—and did you ever see her again?” + +30309m + + + +“Never.” + +“Never?” + +“I never returned to the country where she lived.” + +“To Malta?” + +“Yes; Malta.” + +“She is, then, now at Malta?” + +“I think so.” + +“And have you forgiven her for all she has made you suffer?” + +“Her,—yes.” + +“But only her; do you then still hate those who separated you?” + +“I hate them? Not at all; why should I?” The countess placed herself +before Monte Cristo, still holding in her hand a portion of the +perfumed grapes. + +“Take some,” she said. + +“Madame, I never eat Muscatel grapes,” replied Monte Cristo, as if the +subject had not been mentioned before. The countess dashed the grapes +into the nearest thicket, with a gesture of despair. + +“Inflexible man!” she murmured. Monte Cristo remained as unmoved as if +the reproach had not been addressed to him. + +Albert at this moment ran in. “Oh, mother,” he exclaimed, “such a +misfortune has happened!” + +“What? What has happened?” asked the countess, as though awakening from +a sleep to the realities of life; “did you say a misfortune? Indeed, I +should expect misfortunes.” + +“M. de Villefort is here.” + +“Well?” + +“He comes to fetch his wife and daughter.” + +“Why so?” + +“Because Madame de Saint-Méran is just arrived in Paris, bringing the +news of M. de Saint-Méran’s death, which took place on the first stage +after he left Marseilles. Madame de Villefort, who was in very good +spirits, would neither believe nor think of the misfortune, but +Mademoiselle Valentine, at the first words, guessed the whole truth, +notwithstanding all the precautions of her father; the blow struck her +like a thunderbolt, and she fell senseless.” + +“And how was M. de Saint-Méran related to Mademoiselle de Villefort?” +said the count. + +“He was her grandfather on the mother’s side. He was coming here to +hasten her marriage with Franz.” + +“Ah, indeed!” + +“So Franz must wait. Why was not M. de Saint-Méran also grandfather to +Mademoiselle Danglars?” + +“Albert, Albert,” said Madame de Morcerf, in a tone of mild reproof, +“what are you saying? Ah, count, he esteems you so highly, tell him +that he has spoken amiss.” + +And she took two or three steps forward. Monte Cristo watched her with +an air so thoughtful, and so full of affectionate admiration, that she +turned back and grasped his hand; at the same time she seized that of +her son, and joined them together. + +“We are friends; are we not?” she asked. + +“Oh, madame, I do not presume to call myself your friend, but at all +times I am your most respectful servant.” The countess left with an +indescribable pang in her heart, and before she had taken ten steps the +count saw her raise her handkerchief to her eyes. + +“Do not my mother and you agree?” asked Albert, astonished. + +“On the contrary,” replied the count, “did you not hear her declare +that we were friends?” + +They re-entered the drawing-room, which Valentine and Madame de +Villefort had just quitted. It is perhaps needless to add that Morrel +departed almost at the same time. + + + + Chapter 72. Madame de Saint-Méran + +A gloomy scene had indeed just passed at the house of M. de Villefort. +After the ladies had departed for the ball, whither all the entreaties +of Madame de Villefort had failed in persuading him to accompany them, +the procureur had shut himself up in his study, according to his +custom, with a heap of papers calculated to alarm anyone else, but +which generally scarcely satisfied his inordinate desires. + +But this time the papers were a mere matter of form. Villefort had +secluded himself, not to study, but to reflect; and with the door +locked and orders given that he should not be disturbed excepting for +important business, he sat down in his armchair and began to ponder +over the events, the remembrance of which had during the last eight +days filled his mind with so many gloomy thoughts and bitter +recollections. + +Then, instead of plunging into the mass of documents piled before him, +he opened the drawer of his desk, touched a spring, and drew out a +parcel of cherished memoranda, amongst which he had carefully arranged, +in characters only known to himself, the names of all those who, either +in his political career, in money matters, at the bar, or in his +mysterious love affairs, had become his enemies. + +Their number was formidable, now that he had begun to fear, and yet +these names, powerful though they were, had often caused him to smile +with the same kind of satisfaction experienced by a traveller who from +the summit of a mountain beholds at his feet the craggy eminences, the +almost impassable paths, and the fearful chasms, through which he has +so perilously climbed. When he had run over all these names in his +memory, again read and studied them, commenting meanwhile upon his +lists, he shook his head. + +“No,” he murmured, “none of my enemies would have waited so patiently +and laboriously for so long a space of time, that they might now come +and crush me with this secret. Sometimes, as Hamlet says: + +‘Foul deeds will rise, + +Though all the earth o’erwhelm them, to men’s eyes;’ + + +but, like a phosphoric light, they rise but to mislead. The story has +been told by the Corsican to some priest, who in his turn has repeated +it. M. de Monte Cristo may have heard it, and to enlighten himself—— + +“But why should he wish to enlighten himself upon the subject?” asked +Villefort, after a moment’s reflection, “what interest can this M. de +Monte Cristo or M. Zaccone,—son of a shipowner of Malta, discoverer of +a mine in Thessaly, now visiting Paris for the first time,—what +interest, I say, can he take in discovering a gloomy, mysterious, and +useless fact like this? However, among all the incoherent details given +to me by the Abbé Busoni and by Lord Wilmore, by that friend and that +enemy, one thing appears certain and clear in my opinion—that in no +period, in no case, in no circumstance, could there have been any +contact between him and me.” + +But Villefort uttered words which even he himself did not believe. He +dreaded not so much the revelation, for he could reply to or deny its +truth;—he cared little for that _mene, mene, tekel upharsin_, which +appeared suddenly in letters of blood upon the wall;—but what he was +really anxious for was to discover whose hand had traced them. While he +was endeavoring to calm his fears,—and instead of dwelling upon the +political future that had so often been the subject of his ambitious +dreams, was imagining a future limited to the enjoyments of home, in +fear of awakening the enemy that had so long slept,—the noise of a +carriage sounded in the yard, then he heard the steps of an aged person +ascending the stairs, followed by tears and lamentations, such as +servants always give vent to when they wish to appear interested in +their master’s grief. + +He drew back the bolt of his door, and almost directly an old lady +entered, unannounced, carrying her shawl on her arm, and her bonnet in +her hand. The white hair was thrown back from her yellow forehead, and +her eyes, already sunken by the furrows of age, now almost disappeared +beneath the eyelids swollen with grief. + +“Oh, sir,” she said; “oh, sir, what a misfortune! I shall die of it; +oh, yes, I shall certainly die of it!” + +And then, falling upon the chair nearest the door, she burst into a +paroxysm of sobs. The servants, standing in the doorway, not daring to +approach nearer, were looking at Noirtier’s old servant, who had heard +the noise from his master’s room, and run there also, remaining behind +the others. Villefort rose, and ran towards his mother-in-law, for it +was she. + +“Why, what can have happened?” he exclaimed, “what has thus disturbed +you? Is M. de Saint-Méran with you?” + +“M. de Saint-Méran is dead,” answered the old marchioness, without +preface and without expression; she appeared to be stupefied. Villefort +drew back, and clasping his hands together, exclaimed: + +“Dead!—so suddenly?” + +“A week ago,” continued Madame de Saint-Méran, “we went out together in +the carriage after dinner. M. de Saint-Méran had been unwell for some +days; still, the idea of seeing our dear Valentine again inspired him +with courage, and notwithstanding his illness he would leave. At six +leagues from Marseilles, after having eaten some of the lozenges he is +accustomed to take, he fell into such a deep sleep, that it appeared to +me unnatural; still I hesitated to wake him, although I fancied that +his face was flushed, and that the veins of his temples throbbed more +violently than usual. However, as it became dark, and I could no longer +see, I fell asleep; I was soon aroused by a piercing shriek, as from a +person suffering in his dreams, and he suddenly threw his head back +violently. I called the valet, I stopped the postilion, I spoke to M. +de Saint-Méran, I applied my smelling-salts; but all was over, and I +arrived at Aix by the side of a corpse.” + +Villefort stood with his mouth half open, quite stupefied. + +“Of course you sent for a doctor?” + +“Immediately; but, as I have told you, it was too late.” + +“Yes; but then he could tell of what complaint the poor marquis had +died.” + +“Oh, yes, sir, he told me; it appears to have been an apoplectic +stroke.” + +“And what did you do then?” + +“M. de Saint-Méran had always expressed a desire, in case his death +happened during his absence from Paris, that his body might be brought +to the family vault. I had him put into a leaden coffin, and I am +preceding him by a few days.” + +“Oh! my poor mother!” said Villefort, “to have such duties to perform +at your age after such a blow!” + +“God has supported me through all; and then, my dear marquis, he would +certainly have done everything for me that I performed for him. It is +true that since I left him, I seem to have lost my senses. I cannot +cry; at my age they say that we have no more tears,—still I think that +when one is in trouble one should have the power of weeping. Where is +Valentine, sir? It is on her account I am here; I wish to see +Valentine.” + +30315m + + + +Villefort thought it would be terrible to reply that Valentine was at a +ball; so he only said that she had gone out with her step-mother, and +that she should be fetched. “This instant, sir—this instant, I beseech +you!” said the old lady. Villefort placed the arm of Madame de +Saint-Méran within his own, and conducted her to his apartment. + +“Rest yourself, mother,” he said. + +The marchioness raised her head at this word, and beholding the man who +so forcibly reminded her of her deeply-regretted child, who still lived +for her in Valentine, she felt touched at the name of mother, and +bursting into tears, she fell on her knees before an armchair, where +she buried her venerable head. Villefort left her to the care of the +women, while old Barrois ran, half-scared, to his master; for nothing +frightens old people so much as when death relaxes its vigilance over +them for a moment in order to strike some other old person. Then, while +Madame de Saint-Méran remained on her knees, praying fervently, +Villefort sent for a cab, and went himself to fetch his wife and +daughter from Madame de Morcerf’s. He was so pale when he appeared at +the door of the ball-room, that Valentine ran to him, saying: + +“Oh, father, some misfortune has happened!” + +“Your grandmamma has just arrived, Valentine,” said M. de Villefort. + +“And grandpapa?” inquired the young girl, trembling with apprehension. +M. de Villefort only replied by offering his arm to his daughter. It +was just in time, for Valentine’s head swam, and she staggered; Madame +de Villefort instantly hastened to her assistance, and aided her +husband in dragging her to the carriage, saying: + +“What a singular event! Who could have thought it? Ah, yes, it is +indeed strange!” + +And the wretched family departed, leaving a cloud of sadness hanging +over the rest of the evening. At the foot of the stairs, Valentine +found Barrois awaiting her. + +“M. Noirtier wishes to see you tonight, he said, in an undertone. + +“Tell him I will come when I leave my dear grandmamma,” she replied, +feeling, with true delicacy, that the person to whom she could be of +the most service just then was Madame de Saint-Méran. + +Valentine found her grandmother in bed; silent caresses, heartwrung +sobs, broken sighs, burning tears, were all that passed in this sad +interview, while Madame de Villefort, leaning on her husband’s arm, +maintained all outward forms of respect, at least towards the poor +widow. She soon whispered to her husband: + +“I think it would be better for me to retire, with your permission, for +the sight of me appears still to afflict your mother-in-law.” Madame de +Saint-Méran heard her. + +“Yes, yes,” she said softly to Valentine, “let her leave; but do you +stay.” + +Madame de Villefort left, and Valentine remained alone beside the bed, +for the procureur, overcome with astonishment at the unexpected death, +had followed his wife. Meanwhile, Barrois had returned for the first +time to old Noirtier, who having heard the noise in the house, had, as +we have said, sent his old servant to inquire the cause; on his return, +his quick intelligent eye interrogated the messenger. + +“Alas, sir,” exclaimed Barrois, “a great misfortune has happened. +Madame de Saint-Méran has arrived, and her husband is dead!” + +M. de Saint-Méran and Noirtier had never been on strict terms of +friendship; still, the death of one old man always considerably affects +another. Noirtier let his head fall upon his chest, apparently +overwhelmed and thoughtful; then he closed one eye, in token of +inquiry. + +Barrois asked, “Mademoiselle Valentine?” + +Noirtier nodded his head. + +“She is at the ball, as you know, since she came to say good-bye to you +in full dress.” Noirtier again closed his left eye. + +“Do you wish to see her?” Noirtier again made an affirmative sign. + +“Well, they have gone to fetch her, no doubt, from Madame de Morcerf’s; +I will await her return, and beg her to come up here. Is that what you +wish for?” + +“Yes,” replied the invalid. + +Barrois, therefore, as we have seen, watched for Valentine, and +informed her of her grandfather’s wish. Consequently, Valentine came up +to Noirtier, on leaving Madame de Saint-Méran, who in the midst of her +grief had at last yielded to fatigue and fallen into a feverish sleep. +Within reach of her hand they placed a small table upon which stood a +bottle of orangeade, her usual beverage, and a glass. Then, as we have +said, the young girl left the bedside to see M. Noirtier. + +Valentine kissed the old man, who looked at her with such tenderness +that her eyes again filled with tears, whose sources he thought must be +exhausted. The old gentleman continued to dwell upon her with the same +expression. + +“Yes, yes,” said Valentine, “you mean that I have yet a kind +grandfather left, do you not.” The old man intimated that such was his +meaning. “Ah, yes, happily I have,” replied Valentine. “Without that, +what would become of me?” + +It was one o’clock in the morning. Barrois, who wished to go to bed +himself, observed that after such sad events everyone stood in need of +rest. Noirtier would not say that the only rest he needed was to see +his child, but wished her good-night, for grief and fatigue had made +her appear quite ill. + +The next morning she found her grandmother in bed; the fever had not +abated, on the contrary her eyes glistened and she appeared to be +suffering from violent nervous irritability. + +“Oh, dear grandmamma, are you worse?” exclaimed Valentine, perceiving +all these signs of agitation. + +“No, my child, no,” said Madame de Saint-Méran; “but I was impatiently +waiting for your arrival, that I might send for your father.” + +“My father?” inquired Valentine, uneasily. + +“Yes, I wish to speak to him.” + +Valentine durst not oppose her grandmother’s wish, the cause of which +she did not know, and an instant afterwards Villefort entered. + +“Sir,” said Madame de Saint-Méran, without using any circumlocution, +and as if fearing she had no time to lose, “you wrote to me concerning +the marriage of this child?” + +“Yes, madame,” replied Villefort, “it is not only projected but +arranged.” + +“Your intended son-in-law is named M. Franz d’Épinay?” + +“Yes, madame.” + +“Is he not the son of General d’Épinay who was on our side, and who was +assassinated some days before the usurper returned from the Island of +Elba?” + +“The same.” + +“Does he not dislike the idea of marrying the granddaughter of a +Jacobin?” + +“Our civil dissensions are now happily extinguished, mother,” said +Villefort; “M. d’Épinay was quite a child when his father died, he +knows very little of M. Noirtier, and will meet him, if not with +pleasure, at least with indifference.” + +“Is it a suitable match?” + +“In every respect.” + +“And the young man?” + +“Is regarded with universal esteem.” + +“You approve of him?” + +“He is one of the most well-bred young men I know.” + +During the whole of this conversation Valentine had remained silent. + +“Well, sir,” said Madame de Saint-Méran, after a few minutes’ +reflection, “I must hasten the marriage, for I have but a short time to +live.” + +“You, madame?” “You, dear mamma?” exclaimed M. de Villefort and +Valentine at the same time. + +“I know what I am saying,” continued the marchioness; “I must hurry +you, so that, as she has no mother, she may at least have a grandmother +to bless her marriage. I am all that is left to her belonging to my +poor Renée, whom you have so soon forgotten, sir.” + +“Ah, madame,” said Villefort, “you forget that I was obliged to give a +mother to my child.” + +“A stepmother is never a mother, sir. But this is not to the +purpose,—our business concerns Valentine, let us leave the dead in +peace.” + +All this was said with such exceeding rapidity, that there was +something in the conversation that seemed like the beginning of +delirium. + +“It shall be as you wish, madame,” said Villefort; “more especially +since your wishes coincide with mine, and as soon as M. d’Épinay +arrives in Paris——” + +30319m + + + +“My dear grandmother,” interrupted Valentine, “consider decorum—the +recent death. You would not have me marry under such sad auspices?” + +“My child,” exclaimed the old lady sharply, “let us hear none of the +conventional objections that deter weak minds from preparing for the +future. I also was married at the death-bed of my mother, and certainly +I have not been less happy on that account.” + +“Still that idea of death, madame,” said Villefort. + +“Still?—Always! I tell you I am going to die—do you understand? Well, +before dying, I wish to see my son-in-law. I wish to tell him to make +my child happy; I wish to read in his eyes whether he intends to obey +me;—in fact, I will know him—I will!” continued the old lady, with a +fearful expression, “that I may rise from the depths of my grave to +find him, if he should not fulfil his duty!” + +“Madame,” said Villefort, “you must lay aside these exalted ideas, +which almost assume the appearance of madness. The dead, once buried in +their graves, rise no more.” + +“And I tell you, sir, that you are mistaken. This night I have had a +fearful sleep. It seemed as though my soul were already hovering over +my body, my eyes, which I tried to open, closed against my will, and +what will appear impossible above all to you, sir, I saw, with my eyes +shut, in the spot where you are now standing, issuing from that corner +where there is a door leading into Madame Villefort’s dressing-room—I +saw, I tell you, silently enter, a white figure.” + +Valentine screamed. + +“It was the fever that disturbed you, madame,” said Villefort. + +30321m + + + +“Doubt, if you please, but I am sure of what I say. I saw a white +figure, and as if to prevent my discrediting the testimony of only one +of my senses, I heard my glass removed—the same which is there now on +the table.” + +“Oh, dear mother, it was a dream.” + +“So little was it a dream, that I stretched my hand towards the bell; +but when I did so, the shade disappeared; my maid then entered with a +light.” + +“But she saw no one?” + +“Phantoms are visible to those only who ought to see them. It was the +soul of my husband!—Well, if my husband’s soul can come to me, why +should not my soul reappear to guard my granddaughter? the tie is even +more direct, it seems to me.” + +“Oh, madame,” said Villefort, deeply affected, in spite of himself, “do +not yield to those gloomy thoughts; you will long live with us, happy, +loved, and honored, and we will make you forget——” + +“Never, never, never,” said the marchioness. “When does M. d’Épinay +return?” + +“We expect him every moment.” + +“It is well. As soon as he arrives inform me. We must be expeditious. +And then I also wish to see a notary, that I may be assured that all +our property returns to Valentine.” + +“Ah, grandmamma,” murmured Valentine, pressing her lips on the burning +brow, “do you wish to kill me? Oh, how feverish you are; we must not +send for a notary, but for a doctor!” + +“A doctor?” said she, shrugging her shoulders, “I am not ill; I am +thirsty—that is all.” + +30323m + + + +“What are you drinking, dear grandmamma?” + +“The same as usual, my dear, my glass is there on the table—give it to +me, Valentine.” Valentine poured the orangeade into a glass and gave it +to her grandmother with a certain degree of dread, for it was the same +glass she fancied that had been touched by the spectre. + +The marchioness drained the glass at a single draught, and then turned +on her pillow, repeating, + +“The notary, the notary!” + +M. de Villefort left the room, and Valentine seated herself at the +bedside of her grandmother. The poor child appeared herself to require +the doctor she had recommended to her aged relative. A bright spot +burned in either cheek, her respiration was short and difficult, and +her pulse beat with feverish excitement. She was thinking of the +despair of Maximilian, when he should be informed that Madame de +Saint-Méran, instead of being an ally, was unconsciously acting as his +enemy. + +More than once she thought of revealing all to her grandmother, and she +would not have hesitated a moment, if Maximilian Morrel had been named +Albert de Morcerf or Raoul de Château-Renaud; but Morrel was of +plebeian extraction, and Valentine knew how the haughty Marquise de +Saint-Méran despised all who were not noble. Her secret had each time +been repressed when she was about to reveal it, by the sad conviction +that it would be useless to do so; for, were it once discovered by her +father and mother, all would be lost. + +Two hours passed thus; Madame de Saint-Méran was in a feverish sleep, +and the notary had arrived. Though his coming was announced in a very +low tone, Madame de Saint-Méran arose from her pillow. + +“The notary!” she exclaimed, “let him come in.” + +The notary, who was at the door, immediately entered. “Go, Valentine,” +said Madame de Saint-Méran, “and leave me with this gentleman.” + +“But, grandmamma——” + +“Leave me—go!” + +The young girl kissed her grandmother, and left with her handkerchief +to her eyes; at the door she found the valet de chambre, who told her +that the doctor was waiting in the dining-room. Valentine instantly ran +down. The doctor was a friend of the family, and at the same time one +of the cleverest men of the day, and very fond of Valentine, whose +birth he had witnessed. He had himself a daughter about her age, but +whose life was one continued source of anxiety and fear to him from her +mother having been consumptive. + +“Oh,” said Valentine, “we have been waiting for you with such +impatience, dear M. d’Avrigny. But, first of all, how are Madeleine and +Antoinette?” + +Madeleine was the daughter of M. d’Avrigny, and Antoinette his niece. +M. d’Avrigny smiled sadly. + +“Antoinette is very well,” he said, “and Madeleine tolerably so. But +you sent for me, my dear child. It is not your father or Madame de +Villefort who is ill. As for you, although we doctors cannot divest our +patients of nerves, I fancy you have no further need of me than to +recommend you not to allow your imagination to take too wide a field.” + +Valentine colored. M. d’Avrigny carried the science of divination +almost to a miraculous extent, for he was one of the physicians who +always work upon the body through the mind. + +30325m + + + +“No,” she replied, “it is for my poor grandmother. You know the +calamity that has happened to us, do you not?” + +“I know nothing.” said M. d’Avrigny. + +“Alas,” said Valentine, restraining her tears, “my grandfather is +dead.” + +“M. de Saint-Méran?” + +“Yes.” + +“Suddenly?” + +“From an apoplectic stroke.” + +“An apoplectic stroke?” repeated the doctor. + +“Yes, and my poor grandmother fancies that her husband, whom she never +left, has called her, and that she must go and join him. Oh, M. +d’Avrigny, I beseech you, do something for her!” + +“Where is she?” + +“In her room with the notary.” + +“And M. Noirtier?” + +“Just as he was, his mind perfectly clear, but the same incapability of +moving or speaking.” + +“And the same love for you—eh, my dear child?” + +“Yes,” said Valentine, “he was very fond of me.” + +“Who does not love you?” Valentine smiled sadly. “What are your +grandmother’s symptoms?” + +“An extreme nervous excitement and a strangely agitated sleep; she +fancied this morning in her sleep that her soul was hovering above her +body, which she at the same time watched. It must have been delirium; +she fancies, too, that she saw a phantom enter her chamber and even +heard the noise it made on touching her glass.” + +“It is singular,” said the doctor; “I was not aware that Madame de +Saint-Méran was subject to such hallucinations.” + +“It is the first time I ever saw her in this condition,” said +Valentine; “and this morning she frightened me so that I thought her +mad; and my father, who you know is a strong-minded man, himself +appeared deeply impressed.” + +“We will go and see,” said the doctor; “what you tell me seems very +strange.” The notary here descended, and Valentine was informed that +her grandmother was alone. + +“Go upstairs,” she said to the doctor. + +“And you?” + +“Oh, I dare not—she forbade my sending for you; and, as you say, I am +myself agitated, feverish and out of sorts. I will go and take a turn +in the garden to recover myself.” + +The doctor pressed Valentine’s hand, and while he visited her +grandmother, she descended the steps. We need not say which portion of +the garden was her favorite walk. After remaining for a short time in +the parterre surrounding the house, and gathering a rose to place in +her waist or hair, she turned into the dark avenue which led to the +bench; then from the bench she went to the gate. As usual, Valentine +strolled for a short time among her flowers, but without gathering +them. The mourning in her heart forbade her assuming this simple +ornament, though she had not yet had time to put on the outward +semblance of woe. + +30327m + + + +She then turned towards the avenue. As she advanced she fancied she +heard a voice speaking her name. She stopped astonished, then the voice +reached her ear more distinctly, and she recognized it to be that of +Maximilian. + + + + Chapter 73. The Promise + +It was indeed Maximilian Morrel, who had passed a wretched existence +since the previous day. With the instinct peculiar to lovers he had +anticipated after the return of Madame de Saint-Méran and the death of +the marquis, that something would occur at M. de Villefort’s in +connection with his attachment for Valentine. His presentiments were +realized, as we shall see, and his uneasy forebodings had goaded him +pale and trembling to the gate under the chestnut-trees. + +Valentine was ignorant of the cause of this sorrow and anxiety, and as +it was not his accustomed hour for visiting her, she had gone to the +spot simply by accident or perhaps through sympathy. Morrel called her, +and she ran to the gate. + +“You here at this hour?” said she. + +“Yes, my poor girl,” replied Morrel; “I come to bring and to hear bad +tidings.” + +“This is, indeed, a house of mourning,” said Valentine; “speak, +Maximilian, although the cup of sorrow seems already full.” + +“Dear Valentine,” said Morrel, endeavoring to conceal his own emotion, +“listen, I entreat you; what I am about to say is very serious. When +are you to be married?” + +“I will tell you all,” said Valentine; “from you I have nothing to +conceal. This morning the subject was introduced, and my dear +grandmother, on whom I depended as my only support, not only declared +herself favorable to it, but is so anxious for it, that they only await +the arrival of M. d’Épinay, and the following day the contract will be +signed.” + +A deep sigh escaped the young man, who gazed long and mournfully at her +he loved. + +“Alas,” replied he, “it is dreadful thus to hear my condemnation from +your own lips. The sentence is passed, and, in a few hours, will be +executed; it must be so, and I will not endeavor to prevent it. But, +since you say nothing remains but for M. d’Épinay to arrive that the +contract may be signed, and the following day you will be his, tomorrow +you will be engaged to M. d’Épinay, for he came this morning to Paris.” +Valentine uttered a cry. + +“I was at the house of Monte Cristo an hour since,” said Morrel; “we +were speaking, he of the sorrow your family had experienced, and I of +your grief, when a carriage rolled into the courtyard. Never, till +then, had I placed any confidence in presentiments, but now I cannot +help believing them, Valentine. At the sound of that carriage I +shuddered; soon I heard steps on the staircase, which terrified me as +much as the footsteps of the commander did Don Juan. The door at last +opened; Albert de Morcerf entered first, and I began to hope my fears +were vain, when, after him, another young man advanced, and the count +exclaimed: ‘Ah, here is the Baron Franz d’Épinay!’ I summoned all my +strength and courage to my support. Perhaps I turned pale and trembled, +but certainly I smiled; and five minutes after I left, without having +heard one word that had passed.” + +“Poor Maximilian!” murmured Valentine. + +“Valentine, the time has arrived when you must answer me. And remember +my life depends on your answer. What do you intend doing?” Valentine +held down her head; she was overwhelmed. + +“Listen,” said Morrel; “it is not the first time you have contemplated +our present position, which is a serious and urgent one; I do not think +it is a moment to give way to useless sorrow; leave that for those who +like to suffer at their leisure and indulge their grief in secret. +There are such in the world, and God will doubtless reward them in +heaven for their resignation on earth, but those who mean to contend +must not lose one precious moment, but must return immediately the blow +which fortune strikes. Do you intend to struggle against our +ill-fortune? Tell me, Valentine for it is that I came to know.” + +Valentine trembled, and looked at him with amazement. The idea of +resisting her father, her grandmother, and all the family, had never +occurred to her. + +“What do you say, Maximilian?” asked Valentine. “What do you mean by a +struggle? Oh, it would be a sacrilege. What? I resist my father’s +order, and my dying grandmother’s wish? Impossible!” + +Morrel started. + +“You are too noble not to understand me, and you understand me so well +that you already yield, dear Maximilian. No, no; I shall need all my +strength to struggle with myself and support my grief in secret, as you +say. But to grieve my father—to disturb my grandmother’s last +moments—never!” + +“You are right,” said Morrel, calmly. + +“In what a tone you speak!” cried Valentine. + +“I speak as one who admires you, mademoiselle.” + +“Mademoiselle,” cried Valentine; “mademoiselle! Oh, selfish man! he +sees me in despair, and pretends he cannot understand me!” + +“You mistake—I understand you perfectly. You will not oppose M. +Villefort, you will not displease the marchioness, and tomorrow you +will sign the contract which will bind you to your husband.” + +“But, _mon Dieu!_ tell me, how can I do otherwise?” + +“Do not appeal to me, mademoiselle; I shall be a bad judge in such a +case; my selfishness will blind me,” replied Morrel, whose low voice +and clenched hands announced his growing desperation. + +“What would you have proposed, Maximilian, had you found me willing to +accede?” + +“It is not for me to say.” + +“You are wrong; you must advise me what to do.” + +“Do you seriously ask my advice, Valentine?” + +“Certainly, dear Maximilian, for if it is good, I will follow it; you +know my devotion to you.” + +“Valentine,” said Morrel pushing aside a loose plank, “give me your +hand in token of forgiveness of my anger; my senses are confused, and +during the last hour the most extravagant thoughts have passed through +my brain. Oh, if you refuse my advice——” + +“What do you advise?” said Valentine, raising her eyes to heaven and +sighing. + +“I am free,” replied Maximilian, “and rich enough to support you. I +swear to make you my lawful wife before my lips even shall have +approached your forehead.” + +“You make me tremble!” said the young girl. + +“Follow me,” said Morrel; “I will take you to my sister, who is worthy +also to be yours. We will embark for Algiers, for England, for America, +or, if you prefer it, retire to the country and only return to Paris +when our friends have reconciled your family.” + +Valentine shook her head. + +“I feared it, Maximilian,” said she; “it is the counsel of a madman, +and I should be more mad than you, did I not stop you at once with the +word ‘Impossible, Morrel, impossible!’” + +“You will then submit to what fate decrees for you without even +attempting to contend with it?” said Morrel sorrowfully. + +“Yes,—if I die!” + +“Well, Valentine,” resumed Maximilian, “I can only say again that you +are right. Truly, it is I who am mad, and you prove to me that passion +blinds the most well-meaning. I appreciate your calm reasoning. It is +then understood that tomorrow you will be irrevocably promised to M. +Franz d’Épinay, not only by that theatrical formality invented to +heighten the effect of a comedy called the signature of the contract, +but your own will?” + +“Again you drive me to despair, Maximilian,” said Valentine, “again you +plunge the dagger into the wound! What would you do, tell me, if your +sister listened to such a proposition?” + +“Mademoiselle,” replied Morrel with a bitter smile, “I am selfish—you +have already said so—and as a selfish man I think not of what others +would do in my situation, but of what I intend doing myself. I think +only that I have known you not a whole year. From the day I first saw +you, all my hopes of happiness have been in securing your affection. +One day you acknowledged that you loved me, and since that day my hope +of future happiness has rested on obtaining you, for to gain you would +be life to me. Now, I think no more; I say only that fortune has turned +against me—I had thought to gain heaven, and now I have lost it. It is +an every-day occurrence for a gambler to lose not only what he +possesses but also what he has not.” + +Morrel pronounced these words with perfect calmness; Valentine looked +at him a moment with her large, scrutinizing eyes, endeavoring not to +let Morrel discover the grief which struggled in her heart. + +“But, in a word, what are you going to do?” asked she. + +“I am going to have the honor of taking my leave of you, mademoiselle, +solemnly assuring you that I wish your life may be so calm, so happy, +and so fully occupied, that there may be no place for me even in your +memory.” + +“Oh!” murmured Valentine. + +“Adieu, Valentine, adieu!” said Morrel, bowing. + +“Where are you going?” cried the young girl, extending her hand through +the opening, and seizing Maximilian by his coat, for she understood +from her own agitated feelings that her lover’s calmness could not be +real; “where are you going?” + +“I am going, that I may not bring fresh trouble into your family: and +to set an example which every honest and devoted man, situated as I am, +may follow.” + +“Before you leave me, tell me what you are going to do, Maximilian.” +The young man smiled sorrowfully. + +“Speak, speak!” said Valentine; “I entreat you.” + +“Has your resolution changed, Valentine?” + +“It cannot change, unhappy man; you know it must not!” cried the young +girl. + +“Then adieu, Valentine!” + +Valentine shook the gate with a strength of which she could not have +been supposed to be possessed, as Morrel was going away, and passing +both her hands through the opening, she clasped and wrung them. “I must +know what you mean to do!” said she. “Where are you going?” + +“Oh, fear not,” said Maximilian, stopping at a short distance, “I do +not intend to render another man responsible for the rigorous fate +reserved for me. Another might threaten to seek M. Franz, to provoke +him, and to fight with him; all that would be folly. What has M. Franz +to do with it? He saw me this morning for the first time, and has +already forgotten he has seen me. He did not even know I existed when +it was arranged by your two families that you should be united. I have +no enmity against M. Franz, and promise you the punishment shall not +fall on him.” + +“On whom, then!—on me?” + +“On you? Valentine! Oh, Heaven forbid! Woman is sacred; the woman one +loves is holy.” + +“On yourself, then, unhappy man; on yourself?” + +“I am the only guilty person, am I not?” said Maximilian. + +“Maximilian!” said Valentine, “Maximilian, come back, I entreat you!” + +He drew near with his sweet smile, and but for his paleness one might +have thought him in his usual happy mood. + +“Listen, my dear, my adored Valentine,” said he in his melodious and +grave tone; “those who, like us, have never had a thought for which we +need blush before the world, such may read each other’s hearts. I never +was romantic, and am no melancholy hero. I imitate neither Manfred nor +Anthony; but without words, protestations, or vows, my life has +entwined itself with yours; you leave me, and you are right in doing +so,—I repeat it, you are right; but in losing you, I lose my life. The +moment you leave me, Valentine, I am alone in the world. My sister is +happily married; her husband is only my brother-in-law, that is, a man +whom the ties of social life alone attach to me; no one then longer +needs my useless life. This is what I shall do; I will wait until the +very moment you are married, for I will not lose the shadow of one of +those unexpected chances which are sometimes reserved for us, since M. +Franz may, after all, die before that time, a thunderbolt may fall even +on the altar as you approach it,—nothing appears impossible to one +condemned to die, and miracles appear quite reasonable when his escape +from death is concerned. I will, then, wait until the last moment, and +when my misery is certain, irremediable, hopeless, I will write a +confidential letter to my brother-in-law, another to the prefect of +police, to acquaint them with my intention, and at the corner of some +wood, on the brink of some abyss, on the bank of some river, I will put +an end to my existence, as certainly as I am the son of the most honest +man who ever lived in France.” + +30333m + + + +Valentine trembled convulsively; she loosened her hold of the gate, her +arms fell by her side, and two large tears rolled down her cheeks. The +young man stood before her, sorrowful and resolute. + +“Oh, for pity’s sake,” said she, “you will live, will you not?” + +“No, on my honor,” said Maximilian; “but that will not affect you. You +have done your duty, and your conscience will be at rest.” + +Valentine fell on her knees, and pressed her almost bursting heart. +“Maximilian,” said she, “Maximilian, my friend, my brother on earth, my +true husband in heaven, I entreat you, do as I do, live in suffering; +perhaps we may one day be united.” + +“Adieu, Valentine,” repeated Morrel. + +“My God,” said Valentine, raising both her hands to heaven with a +sublime expression, “I have done my utmost to remain a submissive +daughter; I have begged, entreated, implored; he has regarded neither +my prayers, my entreaties, nor my tears. It is done,” cried she, wiping +away her tears, and resuming her firmness, “I am resolved not to die of +remorse, but rather of shame. Live, Maximilian, and I will be yours. +Say when shall it be? Speak, command, I will obey.” + +Morrel, who had already gone some few steps away, again returned, and +pale with joy extended both hands towards Valentine through the +opening. + +“Valentine,” said he, “dear Valentine, you must not speak thus—rather +let me die. Why should I obtain you by violence, if our love is mutual? +Is it from mere humanity you bid me live? I would then rather die.” + +“Truly,” murmured Valentine, “who on this earth cares for me, if he +does not? Who has consoled me in my sorrow but he? On whom do my hopes +rest? On whom does my bleeding heart repose? On him, on him, always on +him! Yes, you are right, Maximilian, I will follow you. I will leave +the paternal home, I will give up all. Oh, ungrateful girl that I am,” +cried Valentine, sobbing, “I will give up all, even my dear old +grandfather, whom I had nearly forgotten.” + +“No,” said Maximilian, “you shall not leave him. M. Noirtier has +evinced, you say, a kind feeling towards me. Well, before you leave, +tell him all; his consent would be your justification in God’s sight. +As soon as we are married, he shall come and live with us, instead of +one child, he shall have two. You have told me how you talk to him and +how he answers you; I shall very soon learn that language by signs, +Valentine, and I promise you solemnly, that instead of despair, it is +happiness that awaits us.” + +“Oh, see, Maximilian, see the power you have over me, you almost make +me believe you; and yet, what you tell me is madness, for my father +will curse me—he is inflexible—he will never pardon me. Now listen to +me, Maximilian; if by artifice, by entreaty, by accident—in short, if +by any means I can delay this marriage, will you wait?” + +“Yes, I promise you, as faithfully as you have promised me that this +horrible marriage shall not take place, and that if you are dragged +before a magistrate or a priest, you will refuse.” + +“I promise you by all that is most sacred to me in the world, namely, +by my mother.” + +“We will wait, then,” said Morrel. + +“Yes, we will wait,” replied Valentine, who revived at these words; +“there are so many things which may save unhappy beings such as we +are.” + +“I rely on you, Valentine,” said Morrel; “all you do will be well done; +only if they disregard your prayers, if your father and Madame de +Saint-Méran insist that M. d’Épinay should be called tomorrow to sign +the contract——” + +“Then you have my promise, Maximilian.” + +“Instead of signing——” + +“I will go to you, and we will fly; but from this moment until then, +let us not tempt Providence, let us not see each other. It is a +miracle, it is a providence that we have not been discovered. If we +were surprised, if it were known that we met thus, we should have no +further resource.” + +“You are right, Valentine; but how shall I ascertain?” + +“From the notary, M. Deschamps.” + +“I know him.” + +“And for myself—I will write to you, depend on me. I dread this +marriage, Maximilian, as much as you.” + +“Thank you, my adored Valentine, thank you; that is enough. When once I +know the hour, I will hasten to this spot, you can easily get over this +fence with my assistance, a carriage will await us at the gate, in +which you will accompany me to my sister’s; there living, retired or +mingling in society, as you wish, we shall be enabled to use our power +to resist oppression, and not suffer ourselves to be put to death like +sheep, which only defend themselves by sighs.” + +“Yes,” said Valentine, “I will now acknowledge you are right, +Maximilian; and now are you satisfied with your betrothal?” said the +young girl sorrowfully. + +“My adored Valentine, words cannot express one half of my +satisfaction.” + +Valentine had approached, or rather, had placed her lips so near the +fence, that they nearly touched those of Morrel, which were pressed +against the other side of the cold and inexorable barrier. + +“Adieu, then, till we meet again,” said Valentine, tearing herself +away. “I shall hear from you?” + +“Yes.” + +“Thanks, thanks, dear love, adieu!” + +The sound of a kiss was heard, and Valentine fled through the avenue. +Morrel listened to catch the last sound of her dress brushing the +branches, and of her footstep on the gravel, then raised his eyes with +an ineffable smile of thankfulness to heaven for being permitted to be +thus loved, and then also disappeared. + +The young man returned home and waited all the evening and all the next +day without getting any message. It was only on the following day, at +about ten o’clock in the morning, as he was starting to call on M. +Deschamps, the notary, that he received from the postman a small +billet, which he knew to be from Valentine, although he had not before +seen her writing. It was to this effect: + +“Tears, entreaties, prayers, have availed me nothing. Yesterday, for +two hours, I was at the church of Saint-Philippe-du-Roule, and for two +hours I prayed most fervently. Heaven is as inflexible as man, and the +signature of the contract is fixed for this evening at nine o’clock. I +have but one promise and but one heart to give; that promise is pledged +to you, that heart is also yours. This evening, then, at a quarter to +nine at the gate. + +“Your betrothed, + +“Valentine de Villefort.” + +“P.S.—My poor grandmother gets worse and worse; yesterday her fever +amounted to delirium; today her delirium is almost madness. You will be +very kind to me, will you not, Morrel, to make me forget my sorrow in +leaving her thus? I think it is kept a secret from grandpapa Noirtier, +that the contract is to be signed this evening.” + +Morrel went also to the notary, who confirmed the news that the +contract was to be signed that evening. Then he went to call on Monte +Cristo and heard still more. Franz had been to announce the ceremony, +and Madame de Villefort had also written to beg the count to excuse her +not inviting him; the death of M. de Saint-Méran and the dangerous +illness of his widow would cast a gloom over the meeting which she +would regret should be shared by the count whom she wished every +happiness. + +The day before Franz had been presented to Madame de Saint-Méran, who +had left her bed to receive him, but had been obliged to return to it +immediately after. + +It is easy to suppose that Morrel’s agitation would not escape the +count’s penetrating eye. Monte Cristo was more affectionate than +ever,—indeed, his manner was so kind that several times Morrel was on +the point of telling him all. But he recalled the promise he had made +to Valentine, and kept his secret. + +The young man read Valentine’s letter twenty times in the course of the +day. It was her first, and on what an occasion! Each time he read it he +renewed his vow to make her happy. How great is the power of a woman +who has made so courageous a resolution! What devotion does she deserve +from him for whom she has sacrificed everything! How ought she really +to be supremely loved! She becomes at once a queen and a wife, and it +is impossible to thank and love her sufficiently. + +Morrel longed intensely for the moment when he should hear Valentine +say, “Here I am, Maximilian; come and help me.” He had arranged +everything for her escape; two ladders were hidden in the clover-field; +a cabriolet was ordered for Maximilian alone, without a servant, +without lights; at the turning of the first street they would light the +lamps, as it would be foolish to attract the notice of the police by +too many precautions. Occasionally he shuddered; he thought of the +moment when, from the top of that wall, he should protect the descent +of his dear Valentine, pressing in his arms for the first time her of +whom he had yet only kissed the delicate hand. + +When the afternoon arrived and he felt that the hour was drawing near, +he wished for solitude, his agitation was extreme; a simple question +from a friend would have irritated him. He shut himself in his room, +and tried to read, but his eye glanced over the page without +understanding a word, and he threw away the book, and for the second +time sat down to sketch his plan, the ladders and the fence. + +At length the hour drew near. Never did a man deeply in love allow the +clocks to go on peacefully. Morrel tormented his so effectually that +they struck eight at half-past six. He then said, “It is time to start; +the signature was indeed fixed to take place at nine o’clock, but +perhaps Valentine will not wait for that.” Consequently, Morrel, having +left the Rue Meslay at half-past eight by his timepiece, entered the +clover-field while the clock of Saint-Philippe-du-Roule was striking +eight. The horse and cabriolet were concealed behind a small ruin, +where Morrel had often waited. + +The night gradually drew on, and the foliage in the garden assumed a +deeper hue. Then Morrel came out from his hiding-place with a beating +heart, and looked through the small opening in the gate; there was yet +no one to be seen. + +The clock struck half-past eight, and still another half-hour was +passed in waiting, while Morrel walked to and fro, and gazed more and +more frequently through the opening. The garden became darker still, +but in the darkness he looked in vain for the white dress, and in the +silence he vainly listened for the sound of footsteps. The house, which +was discernible through the trees, remained in darkness, and gave no +indication that so important an event as the signature of a +marriage-contract was going on. Morrel looked at his watch, which +wanted a quarter to ten; but soon the same clock he had already heard +strike two or three times rectified the error by striking half-past +nine. + +This was already half an hour past the time Valentine had fixed. It was +a terrible moment for the young man. The slightest rustling of the +foliage, the least whistling of the wind, attracted his attention, and +drew the perspiration to his brow; then he tremblingly fixed his +ladder, and, not to lose a moment, placed his foot on the first step. +Amidst all these alternations of hope and fear, the clock struck ten. +“It is impossible,” said Maximilian, “that the signing of a contract +should occupy so long a time without unexpected interruptions. I have +weighed all the chances, calculated the time required for all the +forms; something must have happened.” + +And then he walked rapidly to and fro, and pressed his burning forehead +against the fence. Had Valentine fainted? or had she been discovered +and stopped in her flight? These were the only obstacles which appeared +possible to the young man. + +The idea that her strength had failed her in attempting to escape, and +that she had fainted in one of the paths, was the one that most +impressed itself upon his mind. “In that case,” said he, “I should lose +her, and by my own fault.” He dwelt on this idea for a moment, then it +appeared reality. He even thought he could perceive something on the +ground at a distance; he ventured to call, and it seemed to him that +the wind wafted back an almost inarticulate sigh. + +At last the half-hour struck. It was impossible to wait longer, his +temples throbbed violently, his eyes were growing dim; he passed one +leg over the wall, and in a moment leaped down on the other side. He +was on Villefort’s premises—had arrived there by scaling the wall. What +might be the consequences? However, he had not ventured thus far to +draw back. He followed a short distance close under the wall, then +crossed a path, hid entered a clump of trees. In a moment he had passed +through them, and could see the house distinctly. + +30341m + + + +Then Morrel saw that he had been right in believing that the house was +not illuminated. Instead of lights at every window, as is customary on +days of ceremony, he saw only a gray mass, which was veiled also by a +cloud, which at that moment obscured the moon’s feeble light. A light +moved rapidly from time to time past three windows of the second floor. +These three windows were in Madame de Saint-Méran’s room. Another +remained motionless behind some red curtains which were in Madame de +Villefort’s bedroom. Morrel guessed all this. So many times, in order +to follow Valentine in thought at every hour in the day, had he made +her describe the whole house, that without having seen it he knew it +all. + +This darkness and silence alarmed Morrel still more than Valentine’s +absence had done. Almost mad with grief, and determined to venture +everything in order to see Valentine once more, and be certain of the +misfortune he feared, Morrel gained the edge of the clump of trees, and +was going to pass as quickly as possible through the flower-garden, +when the sound of a voice, still at some distance, but which was borne +upon the wind, reached him. At this sound, as he was already partially +exposed to view, he stepped back and concealed himself completely, +remaining perfectly motionless. + +He had formed his resolution. If it was Valentine alone, he would speak +as she passed; if she was accompanied, and he could not speak, still he +should see her, and know that she was safe; if they were strangers, he +would listen to their conversation, and might understand something of +this hitherto incomprehensible mystery. + +The moon had just then escaped from behind the cloud which had +concealed it, and Morrel saw Villefort come out upon the steps, +followed by a gentleman in black. They descended, and advanced towards +the clump of trees, and Morrel soon recognized the other gentleman as +Doctor d’Avrigny. + +30339m + + + +The young man, seeing them approach, drew back mechanically, until he +found himself stopped by a sycamore-tree in the centre of the clump; +there he was compelled to remain. Soon the two gentlemen stopped also. + +“Ah, my dear doctor,” said the procureur, “Heaven declares itself +against my house! What a dreadful death—what a blow! Seek not to +console me; alas, nothing can alleviate so great a sorrow—the wound is +too deep and too fresh! Dead, dead!” + +The cold sweat sprang to the young man’s brow, and his teeth chattered. +Who could be dead in that house, which Villefort himself had called +accursed? + +“My dear M. de Villefort,” replied the doctor, with a tone which +redoubled the terror of the young man, “I have not led you here to +console you; on the contrary——” + +“What can you mean?” asked the procureur, alarmed. + +“I mean that behind the misfortune which has just happened to you, +there is another, perhaps, still greater.” + +“Can it be possible?” murmured Villefort, clasping his hands. “What are +you going to tell me?” + +“Are we quite alone, my friend?” + +“Yes, quite; but why all these precautions?” + +“Because I have a terrible secret to communicate to you,” said the +doctor. “Let us sit down.” + +Villefort fell, rather than seated himself. The doctor stood before +him, with one hand placed on his shoulder. Morrel, horrified, supported +his head with one hand, and with the other pressed his heart, lest its +beatings should be heard. “Dead, dead!” repeated he within himself; and +he felt as if he were also dying. + +“Speak, doctor—I am listening,” said Villefort; “strike—I am prepared +for everything!” + +“Madame de Saint-Méran was, doubtless, advancing in years, but she +enjoyed excellent health.” Morrel began again to breathe freely, which +he had not done during the last ten minutes. + +“Grief has consumed her,” said Villefort—“yes, grief, doctor! After +living forty years with the marquis——” + +“It is not grief, my dear Villefort,” said the doctor; “grief may kill, +although it rarely does, and never in a day, never in an hour, never in +ten minutes.” Villefort answered nothing, he simply raised his head, +which had been cast down before, and looked at the doctor with +amazement. + +“Were you present during the last struggle?” asked M. d’Avrigny. + +“I was,” replied the procureur; “you begged me not to leave.” + +“Did you notice the symptoms of the disease to which Madame de +Saint-Méran has fallen a victim?” + +“I did. Madame de Saint-Méran had three successive attacks, at +intervals of some minutes, each one more serious than the former. When +you arrived, Madame de Saint-Méran had already been panting for breath +some minutes; she then had a fit, which I took to be simply a nervous +attack, and it was only when I saw her raise herself in the bed, and +her limbs and neck appear stiffened, that I became really alarmed. Then +I understood from your countenance there was more to fear than I had +thought. This crisis past, I endeavored to catch your eye, but could +not. You held her hand—you were feeling her pulse—and the second fit +came on before you had turned towards me. This was more terrible than +the first; the same nervous movements were repeated, and the mouth +contracted and turned purple.” + +“And at the third she expired.” + +“At the end of the first attack I discovered symptoms of tetanus; you +confirmed my opinion.” + +“Yes, before others,” replied the doctor; “but now we are alone——” + +“What are you going to say? Oh, spare me!” + +“That the symptoms of tetanus and poisoning by vegetable substances are +the same.” + +M. de Villefort started from his seat, then in a moment fell down +again, silent and motionless. Morrel knew not if he were dreaming or +awake. + +“Listen,” said the doctor; “I know the full importance of the statement +I have just made, and the disposition of the man to whom I have made +it.” + +“Do you speak to me as a magistrate or as a friend?” asked Villefort. + +“As a friend, and only as a friend, at this moment. The similarity in +the symptoms of tetanus and poisoning by vegetable substances is so +great, that were I obliged to affirm by oath what I have now stated, I +should hesitate; I therefore repeat to you, I speak not to a +magistrate, but to a friend. And to that friend I say, ‘During the +three-quarters of an hour that the struggle continued, I watched the +convulsions and the death of Madame de Saint-Méran, and am thoroughly +convinced that not only did her death proceed from poison, but I could +also specify the poison.’” + +“Can it be possible?” + +“The symptoms are marked, do you see?—sleep broken by nervous spasms, +excitation of the brain, torpor of the nerve centres. Madame de +Saint-Méran succumbed to a powerful dose of brucine or of strychnine, +which by some mistake, perhaps, has been given to her.” + +Villefort seized the doctor’s hand. + +“Oh, it is impossible,” said he, “I must be dreaming! It is frightful +to hear such things from such a man as you! Tell me, I entreat you, my +dear doctor, that you may be deceived.” + +“Doubtless I may, but——” + +“But?” + +30345m + + + +“But I do not think so.” + +“Have pity on me doctor! So many dreadful things have happened to me +lately that I am on the verge of madness.” + +“Has anyone besides me seen Madame de Saint-Méran?” + +“No.” + +“Has anything been sent for from a chemist’s that I have not examined?” + +“Nothing.” + +“Had Madame de Saint-Méran any enemies?” + +“Not to my knowledge.” + +“Would her death affect anyone’s interest?” + +“It could not indeed, my daughter is her only heiress—Valentine alone. +Oh, if such a thought could present itself, I would stab myself to +punish my heart for having for one instant harbored it.” + +“Indeed, my dear friend,” said M. d’Avrigny, “I would not accuse +anyone; I speak only of an accident, you understand,—of a mistake,—but +whether accident or mistake, the fact is there; it is on my conscience +and compels me to speak aloud to you. Make inquiry.” + +“Of whom?—how?—of what?” + +“May not Barrois, the old servant, have made a mistake, and have given +Madame de Saint-Méran a dose prepared for his master?” + +“For my father?” + +“Yes.” + +“But how could a dose prepared for M. Noirtier poison Madame de +Saint-Méran?” + +“Nothing is more simple. You know poisons become remedies in certain +diseases, of which paralysis is one. For instance, having tried every +other remedy to restore movement and speech to M. Noirtier, I resolved +to try one last means, and for three months I have been giving him +brucine; so that in the last dose I ordered for him there were six +grains. This quantity, which is perfectly safe to administer to the +paralyzed frame of M. Noirtier, which has become gradually accustomed +to it, would be sufficient to kill another person.” + +“My dear doctor, there is no communication between M. Noirtier’s +apartment and that of Madame de Saint-Méran, and Barrois never entered +my mother-in-law’s room. In short, doctor although I know you to be the +most conscientious man in the world, and although I place the utmost +reliance in you, I want, notwithstanding my conviction, to believe this +axiom, _errare humanum est_.” + +“Is there one of my brethren in whom you have equal confidence with +myself?” + +“Why do you ask me that?—what do you wish?” + +“Send for him; I will tell him what I have seen, and we will consult +together, and examine the body.” + +“And you will find traces of poison?” + +“No, I did not say of poison, but we can prove what was the state of +the body; we shall discover the cause of her sudden death, and we shall +say, ‘Dear Villefort, if this thing has been caused by negligence, +watch over your servants; if from hatred, watch your enemies.’” + +“What do you propose to me, d’Avrigny?” said Villefort in despair; “so +soon as another is admitted into our secret, an inquest will become +necessary; and an inquest in my house—impossible! Still,” continued the +procureur, looking at the doctor with uneasiness, “if you wish it—if +you demand it, why then it shall be done. But, doctor, you see me +already so grieved—how can I introduce into my house so much scandal, +after so much sorrow? My wife and my daughter would die of it! And I, +doctor—you know a man does not arrive at the post I occupy—one has not +been king’s attorney twenty-five years without having amassed a +tolerable number of enemies; mine are numerous. Let this affair be +talked of, it will be a triumph for them, which will make them rejoice, +and cover me with shame. Pardon me, doctor, these worldly ideas; were +you a priest I should not dare tell you that, but you are a man, and +you know mankind. Doctor, pray recall your words; you have said +nothing, have you?” + +“My dear M. de Villefort,” replied the doctor, “my first duty is to +humanity. I would have saved Madame de Saint-Méran, if science could +have done it; but she is dead and my duty regards the living. Let us +bury this terrible secret in the deepest recesses of our hearts; I am +willing, if anyone should suspect this, that my silence on the subject +should be imputed to my ignorance. Meanwhile, sir, watch always—watch +carefully, for perhaps the evil may not stop here. And when you have +found the culprit, if you find him, I will say to you, ‘You are a +magistrate, do as you will!’” + +“I thank you, doctor,” said Villefort with indescribable joy; “I never +had a better friend than you.” And, as if he feared Doctor d’Avrigny +would recall his promise, he hurried him towards the house. + +When they were gone, Morrel ventured out from under the trees, and the +moon shone upon his face, which was so pale it might have been taken +for that of a ghost. + +“I am manifestly protected in a most wonderful, but most terrible +manner,” said he; “but Valentine, poor girl, how will she bear so much +sorrow?” + +As he thought thus, he looked alternately at the window with red +curtains and the three windows with white curtains. The light had +almost disappeared from the former; doubtless Madame de Villefort had +just put out her lamp, and the nightlamp alone reflected its dull light +on the window. At the extremity of the building, on the contrary, he +saw one of the three windows open. A wax-light placed on the +mantle-piece threw some of its pale rays without, and a shadow was seen +for one moment on the balcony. Morrel shuddered; he thought he heard a +sob. + +It cannot be wondered at that his mind, generally so courageous, but +now disturbed by the two strongest human passions, love and fear, was +weakened even to the indulgence of superstitious thoughts. Although it +was impossible that Valentine should see him, hidden as he was, he +thought he heard the shadow at the window call him; his disturbed mind +told him so. This double error became an irresistible reality, and by +one of the incomprehensible transports of youth, he bounded from his +hiding-place, and with two strides, at the risk of being seen, at the +risk of alarming Valentine, at the risk of being discovered by some +exclamation which might escape the young girl, he crossed the +flower-garden, which by the light of the moon resembled a large white +lake, and having passed the rows of orange-trees which extended in +front of the house, he reached the step, ran quickly up and pushed the +door, which opened without offering any resistance. + +Valentine had not seen him. Her eyes, raised towards heaven, were +watching a silvery cloud gliding over the azure, its form that of a +shadow mounting towards heaven. Her poetic and excited mind pictured it +as the soul of her grandmother. + +Meanwhile, Morrel had traversed the anteroom and found the staircase, +which, being carpeted, prevented his approach being heard, and he had +regained that degree of confidence that the presence of M. de Villefort +even would not have alarmed him. He was quite prepared for any such +encounter. He would at once approach Valentine’s father and acknowledge +all, begging Villefort to pardon and sanction the love which united two +fond and loving hearts. Morrel was mad. + +Happily he did not meet anyone. Now, especially, did he find the +description Valentine had given of the interior of the house useful to +him; he arrived safely at the top of the staircase, and while he was +feeling his way, a sob indicated the direction he was to take. He +turned back, a door partly open enabled him to see his road, and to +hear the voice of one in sorrow. He pushed the door open and entered. +At the other end of the room, under a white sheet which covered it, lay +the corpse, still more alarming to Morrel since the account he had so +unexpectedly overheard. By its side, on her knees, and with her head +buried in the cushion of an easy-chair, was Valentine, trembling and +sobbing, her hands extended above her head, clasped and stiff. She had +turned from the window, which remained open, and was praying in accents +that would have affected the most unfeeling; her words were rapid, +incoherent, unintelligible, for the burning weight of grief almost +stopped her utterance. + +The moon shining through the open blinds made the lamp appear to burn +paler, and cast a sepulchral hue over the whole scene. Morrel could not +resist this; he was not exemplary for piety, he was not easily +impressed, but Valentine suffering, weeping, wringing her hands before +him, was more than he could bear in silence. He sighed, and whispered a +name, and the head bathed in tears and pressed on the velvet cushion of +the chair—a head like that of a Magdalen by Correggio—was raised and +turned towards him. Valentine perceived him without betraying the least +surprise. A heart overwhelmed with one great grief is insensible to +minor emotions. Morrel held out his hand to her. Valentine, as her only +apology for not having met him, pointed to the corpse under the sheet, +and began to sob again. + +Neither dared for some time to speak in that room. They hesitated to +break the silence which death seemed to impose; at length Valentine +ventured. + +“My friend,” said she, “how came you here? Alas, I would say you are +welcome, had not death opened the way for you into this house.” + +“Valentine,” said Morrel with a trembling voice, “I had waited since +half-past eight, and did not see you come; I became uneasy, leaped the +wall, found my way through the garden, when voices conversing about the +fatal event——” + +“What voices?” asked Valentine. Morrel shuddered as he thought of the +conversation of the doctor and M. de Villefort, and he thought he could +see through the sheet the extended hands, the stiff neck, and the +purple lips. + +“Your servants,” said he, “who were repeating the whole of the +sorrowful story; from them I learned it all.” + +“But it was risking the failure of our plan to come up here, love.” + +“Forgive me,” replied Morrel; “I will go away.” + +“No,” said Valentine, “you might meet someone; stay.” + +“But if anyone should come here——” + +The young girl shook her head. “No one will come,” said she; “do not +fear, there is our safeguard,” pointing to the bed. + +“But what has become of M. d’Épinay?” replied Morrel. + +30349m + + + +“M. Franz arrived to sign the contract just as my dear grandmother was +dying.” + +“Alas,” said Morrel with a feeling of selfish joy; for he thought this +death would cause the wedding to be postponed indefinitely. + +“But what redoubles my sorrow,” continued the young girl, as if this +feeling was to receive its immediate punishment, “is that the poor old +lady, on her death-bed, requested that the marriage might take place as +soon as possible; she also, thinking to protect me, was acting against +me.” + +“Hark!” said Morrel. They both listened; steps were distinctly heard in +the corridor and on the stairs. + +“It is my father, who has just left his study.” + +“To accompany the doctor to the door,” added Morrel. + +“How do you know it is the doctor?” asked Valentine, astonished. + +“I imagined it must be,” said Morrel. + +Valentine looked at the young man; they heard the street door close, +then M. de Villefort locked the garden door, and returned upstairs. He +stopped a moment in the anteroom, as if hesitating whether to turn to +his own apartment or into Madame de Saint-Méran’s; Morrel concealed +himself behind a door; Valentine remained motionless, grief seeming to +deprive her of all fear. M. de Villefort passed on to his own room. + +“Now,” said Valentine, “you can neither go out by the front door nor by +the garden.” + +Morrel looked at her with astonishment. + +“There is but one way left you that is safe,” said she; “it is through +my grandfather’s room.” She rose. “Come,” she added. + +“Where?” asked Maximilian. + +“To my grandfather’s room.” + +“I in M. Noirtier’s apartment?” + +“Yes.” + +“Can you mean it, Valentine?” + +“I have long wished it; he is my only remaining friend and we both need +his help,—come.” + +“Be careful, Valentine,” said Morrel, hesitating to comply with the +young girl’s wishes; “I now see my error—I acted like a madman in +coming in here. Are you sure you are more reasonable?” + +“Yes,” said Valentine; “and I have but one scruple,—that of leaving my +dear grandmother’s remains, which I had undertaken to watch.” + +“Valentine,” said Morrel, “death is in itself sacred.” + +“Yes,” said Valentine; “besides, it will not be for long.” + +She then crossed the corridor, and led the way down a narrow staircase +to M. Noirtier’s room; Morrel followed her on tiptoe; at the door they +found the old servant. + +“Barrois,” said Valentine, “shut the door, and let no one come in.” + +She passed first. + +Noirtier, seated in his chair, and listening to every sound, was +watching the door; he saw Valentine, and his eye brightened. There was +something grave and solemn in the approach of the young girl which +struck the old man, and immediately his bright eye began to +interrogate. + +“Dear grandfather.” said she hurriedly, “you know poor grandmamma died +an hour since, and now I have no friend in the world but you.” + +His expressive eyes evinced the greatest tenderness. + +“To you alone, then, may I confide my sorrows and my hopes?” + +The paralytic motioned “Yes.” + +Valentine took Maximilian’s hand. + +“Look attentively, then, at this gentleman.” + +The old man fixed his scrutinizing gaze with slight astonishment on +Morrel. + +“It is M. Maximilian Morrel,” said she; “the son of that good merchant +of Marseilles, whom you doubtless recollect.” + +“Yes,” said the old man. + +“He brings an irreproachable name, which Maximilian is likely to render +glorious, since at thirty years of age he is a captain, an officer of +the Legion of Honor.” + +The old man signified that he recollected him. + +“Well, grandpapa,” said Valentine, kneeling before him, and pointing to +Maximilian, “I love him, and will be only his; were I compelled to +marry another, I would destroy myself.” + +The eyes of the paralytic expressed a multitude of tumultuous thoughts. + +“You like M. Maximilian Morrel, do you not, grandpapa?” asked +Valentine. + +“Yes.” + +“And you will protect us, who are your children, against the will of my +father?” + +Noirtier cast an intelligent glance at Morrel, as if to say, “perhaps I +may.” + +Maximilian understood him. + +“Mademoiselle,” said he, “you have a sacred duty to fulfil in your +deceased grandmother’s room, will you allow me the honor of a few +minutes’ conversation with M. Noirtier?” + +“That is it,” said the old man’s eye. Then he looked anxiously at +Valentine. + +“Do you fear he will not understand?” + +“Yes.” + +“Oh, we have so often spoken of you, that he knows exactly how I talk +to you.” Then turning to Maximilian, with an adorable smile; although +shaded by sorrow,—“He knows everything I know,” said she. + +Valentine arose, placed a chair for Morrel, requested Barrois not to +admit anyone, and having tenderly embraced her grandfather, and +sorrowfully taken leave of Morrel, she went away. To prove to Noirtier +that he was in Valentine’s confidence and knew all their secrets, +Morrel took the dictionary, a pen, and some paper, and placed them all +on a table where there was a light. + +“But first,” said Morrel, “allow me, sir, to tell you who I am, how +much I love Mademoiselle Valentine, and what are my designs respecting +her.” + +Noirtier made a sign that he would listen. + +It was an imposing sight to witness this old man, apparently a mere +useless burden, becoming the sole protector, support, and adviser of +the lovers who were both young, beautiful, and strong. His remarkably +noble and austere expression struck Morrel, who began his story with +trembling. He related the manner in which he had become acquainted with +Valentine, and how he had loved her, and that Valentine, in her +solitude and her misfortune, had accepted the offer of his devotion. He +told him his birth, his position, his fortune, and more than once, when +he consulted the look of the paralytic, that look answered, “That is +good, proceed.” + +“And now,” said Morrel, when he had finished the first part of his +recital, “now I have told you of my love and my hopes, may I inform you +of my intentions?” + +“Yes,” signified the old man. + +“This was our resolution; a cabriolet was in waiting at the gate, in +which I intended to carry off Valentine to my sister’s house, to marry +her, and to wait respectfully M. de Villefort’s pardon.” + +“No,” said Noirtier. + +“We must not do so?” + +“No.” + +“You do not sanction our project?” + +“No.” + +“There is another way,” said Morrel. The old man’s interrogative eye +said, “Which?” + +“I will go,” continued Maximilian, “I will seek M. Franz d’Épinay—I am +happy to be able to mention this in Mademoiselle de Villefort’s +absence—and will conduct myself toward him so as to compel him to +challenge me.” Noirtier’s look continued to interrogate. + +“You wish to know what I will do?” + +“Yes.” + +“I will find him, as I told you. I will tell him the ties which bind me +to Mademoiselle Valentine; if he be a sensible man, he will prove it by +renouncing of his own accord the hand of his betrothed, and will secure +my friendship, and love until death; if he refuse, either through +interest or ridiculous pride, after I have proved to him that he would +be forcing my wife from me, that Valentine loves me, and will have no +other, I will fight with him, give him every advantage, and I shall +kill him, or he will kill me; if I am victorious, he will not marry +Valentine, and if I die, I am very sure Valentine will not marry him.” + +Noirtier watched, with indescribable pleasure, this noble and sincere +countenance, on which every sentiment his tongue uttered was depicted, +adding by the expression of his fine features all that coloring adds to +a sound and faithful drawing. + +Still, when Morrel had finished, he shut his eyes several times, which +was his manner of saying “No.” + +“No?” said Morrel; “you disapprove of this second project, as you did +of the first?” + +“I do,” signified the old man. + +“But what then must be done?” asked Morrel. “Madame de Saint-Méran’s +last request was, that the marriage might not be delayed; must I let +things take their course?” Noirtier did not move. “I understand,” said +Morrel; “I am to wait.” + +“Yes.” + +“But delay may ruin our plan, sir,” replied the young man. “Alone, +Valentine has no power; she will be compelled to submit. I am here +almost miraculously, and can scarcely hope for so good an opportunity +to occur again. Believe me, there are only the two plans I have +proposed to you; forgive my vanity, and tell me which you prefer. Do +you authorize Mademoiselle Valentine to intrust herself to my honor?” + +“No.” + +“Do you prefer I should seek M. d’Épinay?” + +“No.” + +“Whence then will come the help we need—from chance?” resumed Morrel. + +“No.” + +“From you?” + +“Yes.” + +“You thoroughly understand me, sir? Pardon my eagerness, for my life +depends on your answer. Will our help come from you?” + +“Yes.” + +“You are sure of it?” + +“Yes.” There was so much firmness in the look which gave this answer, +no one could, at any rate, doubt his will, if they did his power. + +“Oh, thank you a thousand times! But how, unless a miracle should +restore your speech, your gesture, your movement, how can you, chained +to that armchair, dumb and motionless, oppose this marriage?” A smile +lit up the old man’s face, a strange smile of the eyes in a paralyzed +face. + +“Then I must wait?” asked the young man. + +“Yes.” + +“But the contract?” The same smile returned. “Will you assure me it +shall not be signed?” + +“Yes,” said Noirtier. + +“The contract shall not be signed!” cried Morrel. “Oh, pardon me, sir; +I can scarcely realize so great a happiness. Will they not sign it?” + +“No,” said the paralytic. Notwithstanding that assurance, Morrel still +hesitated. This promise of an impotent old man was so strange that, +instead of being the result of the power of his will, it might emanate +from enfeebled organs. Is it not natural that the madman, ignorant of +his folly, should attempt things beyond his power? The weak man talks +of burdens he can raise, the timid of giants he can confront, the poor +of treasures he spends, the most humble peasant, in the height of his +pride, calls himself Jupiter. Whether Noirtier understood the young +man’s indecision, or whether he had not full confidence in his +docility, he looked uneasily at him. + +“What do you wish, sir?” asked Morrel; “that I should renew my promise +of remaining tranquil?” Noirtier’s eye remained fixed and firm, as if +to imply that a promise did not suffice; then it passed from his face +to his hands. + +“Shall I swear to you, sir?” asked Maximilian. + +“Yes,” said the paralytic with the same solemnity. Morrel understood +that the old man attached great importance to an oath. He extended his +hand. + +“I swear to you, on my honor,” said he, “to await your decision +respecting the course I am to pursue with M. d’Épinay.” + +“That is right,” said the old man. + +“Now,” said Morrel, “do you wish me to retire?” + +“Yes.” + +“Without seeing Mademoiselle Valentine?” + +“Yes.” + +Morrel made a sign that he was ready to obey. “But,” said he, “first +allow me to embrace you as your daughter did just now.” Noirtier’s +expression could not be understood. The young man pressed his lips on +the same spot, on the old man’s forehead, where Valentine’s had been. +Then he bowed a second time and retired. + +He found outside the door the old servant, to whom Valentine had given +directions. Morrel was conducted along a dark passage, which led to a +little door opening on the garden, soon found the spot where he had +entered, with the assistance of the shrubs gained the top of the wall, +and by his ladder was in an instant in the clover-field where his +cabriolet was still waiting for him. He got in it, and thoroughly +wearied by so many emotions, arrived about midnight in the Rue Meslay, +threw himself on his bed and slept soundly. + + + +VOLUME FOUR + +40010m + + + +40012m + + + +40020m + + + + + Chapter 74. The Villefort Family Vault + +Two days after, a considerable crowd was assembled, towards ten o’clock +in the morning, around the door of M. de Villefort’s house, and a long +file of mourning-coaches and private carriages extended along the +Faubourg Saint-Honoré and the Rue de la Pépinière. Among them was one +of a very singular form, which appeared to have come from a distance. +It was a kind of covered wagon, painted black, and was one of the first +to arrive. Inquiry was made, and it was ascertained that, by a strange +coincidence, this carriage contained the corpse of the Marquis de +Saint-Méran, and that those who had come thinking to attend one funeral +would follow two. Their number was great. The Marquis de Saint-Méran, +one of the most zealous and faithful dignitaries of Louis XVIII. and +King Charles X., had preserved a great number of friends, and these, +added to the personages whom the usages of society gave Villefort a +claim on, formed a considerable body. + +Due information was given to the authorities, and permission obtained +that the two funerals should take place at the same time. A second +hearse, decked with the same funereal pomp, was brought to M. de +Villefort’s door, and the coffin removed into it from the post-wagon. +The two bodies were to be interred in the cemetery of Père-Lachaise, +where M. de Villefort had long since had a tomb prepared for the +reception of his family. The remains of poor Renée were already +deposited there, and now, after ten years of separation, her father and +mother were to be reunited with her. + +The Parisians, always curious, always affected by funereal display, +looked on with religious silence while the splendid procession +accompanied to their last abode two of the number of the old +aristocracy—the greatest protectors of commerce and sincere devotees to +their principles. + +In one of the mourning-coaches Beauchamp, Debray, and Château-Renaud +were talking of the very sudden death of the marchioness. + +“I saw Madame de Saint-Méran only last year at Marseilles, when I was +coming back from Algiers,” said Château-Renaud; “she looked like a +woman destined to live to be a hundred years old, from her apparent +sound health and great activity of mind and body. How old was she?” + +“Franz assured me,” replied Albert, “that she was sixty-six years old. +But she has not died of old age, but of grief; it appears that since +the death of the marquis, which affected her very deeply, she has not +completely recovered her reason.” + +“But of what disease, then, did she die?” asked Debray. + +“It is said to have been a congestion of the brain, or apoplexy, which +is the same thing, is it not?” + +“Nearly.” + +“It is difficult to believe that it was apoplexy,” said Beauchamp. +“Madame de Saint-Méran, whom I once saw, was short, of slender form, +and of a much more nervous than sanguine temperament; grief could +hardly produce apoplexy in such a constitution as that of Madame de +Saint-Méran.” + +“At any rate,” said Albert, “whatever disease or doctor may have killed +her, M. de Villefort, or rather, Mademoiselle Valentine,—or, still +rather, our friend Franz, inherits a magnificent fortune, amounting, I +believe, to 80,000 livres per annum.” + +“And this fortune will be doubled at the death of the old Jacobin, +Noirtier.” + +“That is a tenacious old grandfather,” said Beauchamp. “_Tenacem +propositi virum_. I think he must have made an agreement with death to +outlive all his heirs, and he appears likely to succeed. He resembles +the old Conventionalist of ’93, who said to Napoleon, in 1814, ‘You +bend because your empire is a young stem, weakened by rapid growth. +Take the Republic for a tutor; let us return with renewed strength to +the battle-field, and I promise you 500,000 soldiers, another Marengo, +and a second Austerlitz. Ideas do not become extinct, sire; they +slumber sometimes, but only revive the stronger before they sleep +entirely.’” + +“Ideas and men appeared the same to him,” said Albert. “One thing only +puzzles me, namely, how Franz d’Épinay will like a grandfather who +cannot be separated from his wife. But where is Franz?” + +“In the first carriage, with M. de Villefort, who considers him already +as one of the family.” + +40024m + + + +Such was the conversation in almost all the carriages; these two sudden +deaths, so quickly following each other, astonished everyone, but no +one suspected the terrible secret which M. d’Avrigny had communicated, +in his nocturnal walk to M. de Villefort. They arrived in about an hour +at the cemetery; the weather was mild, but dull, and in harmony with +the funeral ceremony. Among the groups which flocked towards the family +vault, Château-Renaud recognized Morrel, who had come alone in a +cabriolet, and walked silently along the path bordered with yew-trees. + +“You here?” said Château-Renaud, passing his arms through the young +captain’s; “are you a friend of Villefort’s? How is it that I have +never met you at his house?” + +“I am no acquaintance of M. de Villefort’s,” answered Morrel, “but I +was of Madame de Saint-Méran.” Albert came up to them at this moment +with Franz. + +“The time and place are but ill-suited for an introduction.” said +Albert; “but we are not superstitious. M. Morrel, allow me to present +to you M. Franz d’Épinay, a delightful travelling companion, with whom +I made the tour of Italy. My dear Franz, M. Maximilian Morrel, an +excellent friend I have acquired in your absence, and whose name you +will hear me mention every time I make any allusion to affection, wit, +or amiability.” + +Morrel hesitated for a moment; he feared it would be hypocritical to +accost in a friendly manner the man whom he was tacitly opposing, but +his oath and the gravity of the circumstances recurred to his memory; +he struggled to conceal his emotion and bowed to Franz. + +“Mademoiselle de Villefort is in deep sorrow, is she not?” said Debray +to Franz. + +“Extremely,” replied he; “she looked so pale this morning, I scarcely +knew her.” + +These apparently simple words pierced Morrel to the heart. This man had +seen Valentine, and spoken to her! The young and high-spirited officer +required all his strength of mind to resist breaking his oath. He took +the arm of Château-Renaud, and turned towards the vault, where the +attendants had already placed the two coffins. + +“This is a magnificent habitation,” said Beauchamp, looking towards the +mausoleum; “a summer and winter palace. You will, in turn, enter it, my +dear d’Épinay, for you will soon be numbered as one of the family. I, +as a philosopher, should like a little country-house, a cottage down +there under the trees, without so many free-stones over my poor body. +In dying, I will say to those around me what Voltaire wrote to Piron: +‘_Eo rus_, and all will be over.’ But come, Franz, take courage, your +wife is an heiress.” + +“Indeed, Beauchamp, you are unbearable. Politics has made you laugh at +everything, and political men have made you disbelieve everything. But +when you have the honor of associating with ordinary men, and the +pleasure of leaving politics for a moment, try to find your +affectionate heart, which you leave with your stick when you go to the +Chamber.” + +“But tell me,” said Beauchamp, “what is life? Is it not a halt in +Death’s anteroom?” + +40026m + + + +“I am prejudiced against Beauchamp,” said Albert, drawing Franz away, +and leaving the former to finish his philosophical dissertation with +Debray. + +The Villefort vault formed a square of white stones, about twenty feet +high; an interior partition separated the two families, and each +apartment had its entrance door. Here were not, as in other tombs, +ignoble drawers, one above another, where thrift bestows its dead and +labels them like specimens in a museum; all that was visible within the +bronze gates was a gloomy-looking room, separated by a wall from the +vault itself. The two doors before mentioned were in the middle of this +wall, and enclosed the Villefort and Saint-Méran coffins. There grief +might freely expend itself without being disturbed by the trifling +loungers who came from a picnic party to visit Père-Lachaise, or by +lovers who make it their rendezvous. + +The two coffins were placed on trestles previously prepared for their +reception in the right-hand crypt belonging to the Saint-Méran family. +Villefort, Franz, and a few near relatives alone entered the sanctuary. + +As the religious ceremonies had all been performed at the door, and +there was no address given, the party all separated; Château-Renaud, +Albert, and Morrel, went one way, and Debray and Beauchamp the other. +Franz remained with M. de Villefort; at the gate of the cemetery Morrel +made an excuse to wait; he saw Franz and M. de Villefort get into the +same mourning-coach, and thought this meeting forboded evil. He then +returned to Paris, and although in the same carriage with +Château-Renaud and Albert, he did not hear one word of their +conversation. + +As Franz was about to take leave of M. de Villefort, “When shall I see +you again?” said the latter. + +“At what time you please, sir,” replied Franz. + +“As soon as possible.” + +“I am at your command, sir; shall we return together?” + +“If not unpleasant to you.” + +“On the contrary, I shall feel much pleasure.” + +Thus, the future father and son-in-law stepped into the same carriage, +and Morrel, seeing them pass, became uneasy. Villefort and Franz +returned to the Faubourg Saint-Honoré. The procureur, without going to +see either his wife or his daughter, went at once to his study, and, +offering the young man a chair: + +“M. d’Épinay,” said he, “allow me to remind you at this moment,—which +is perhaps not so ill-chosen as at first sight may appear, for +obedience to the wishes of the departed is the first offering which +should be made at their tomb,—allow me then to remind you of the wish +expressed by Madame de Saint-Méran on her death-bed, that Valentine’s +wedding might not be deferred. You know the affairs of the deceased are +in perfect order, and her will bequeaths to Valentine the entire +property of the Saint-Méran family; the notary showed me the documents +yesterday, which will enable us to draw up the contract immediately. +You may call on the notary, M. Deschamps, Place Beauveau, Faubourg +Saint-Honoré, and you have my authority to inspect those deeds.” + +“Sir,” replied M. d’Épinay, “it is not, perhaps, the moment for +Mademoiselle Valentine, who is in deep distress, to think of a husband; +indeed, I fear——” + +40028m + + + +“Valentine will have no greater pleasure than that of fulfilling her +grandmother’s last injunctions; there will be no obstacle from that +quarter, I assure you.” + +“In that case,” replied Franz, “as I shall raise none, you may make +arrangements when you please; I have pledged my word, and shall feel +pleasure and happiness in adhering to it.” + +“Then,” said Villefort, “nothing further is required. The contract was +to have been signed three days since; we shall find it all ready, and +can sign it today.” + +“But the mourning?” said Franz, hesitating. + +“Don’t be uneasy on that score,” replied Villefort; “no ceremony will +be neglected in my house. Mademoiselle de Villefort may retire during +the prescribed three months to her estate of Saint-Méran; I say hers, +for she inherits it today. There, after a few days, if you like, the +civil marriage shall be celebrated without pomp or ceremony. Madame de +Saint-Méran wished her daughter should be married there. When that is +over, you, sir, can return to Paris, while your wife passes the time of +her mourning with her mother-in-law.” + +“As you please, sir,” said Franz. + +“Then,” replied M. de Villefort, “have the kindness to wait half an +hour; Valentine shall come down into the drawing-room. I will send for +M. Deschamps; we will read and sign the contract before we separate, +and this evening Madame de Villefort shall accompany Valentine to her +estate, where we will rejoin them in a week.” + +“Sir,” said Franz, “I have one request to make.” + +“What is it?” + +“I wish Albert de Morcerf and Raoul de Château-Renaud to be present at +this signature; you know they are my witnesses.” + +“Half an hour will suffice to apprise them; will you go for them +yourself, or shall you send?” + +“I prefer going, sir.” + +“I shall expect you, then, in half an hour, baron, and Valentine will +be ready.” + +Franz bowed and left the room. Scarcely had the door closed, when M. de +Villefort sent to tell Valentine to be ready in the drawing-room in +half an hour, as he expected the notary and M. d’Épinay and his +witnesses. The news caused a great sensation throughout the house; +Madame de Villefort would not believe it, and Valentine was +thunderstruck. She looked around for help, and would have gone down to +her grandfather’s room, but on the stairs she met M. de Villefort, who +took her arm and led her into the drawing-room. In the anteroom, +Valentine met Barrois, and looked despairingly at the old servant. A +moment later, Madame de Villefort entered the drawing-room with her +little Edward. It was evident that she had shared the grief of the +family, for she was pale and looked fatigued. She sat down, took Edward +on her knees, and from time to time pressed this child, on whom her +affections appeared centred, almost convulsively to her bosom. + +Two carriages were soon heard to enter the courtyard. One was the +notary’s; the other, that of Franz and his friends. In a moment the +whole party was assembled. Valentine was so pale one might trace the +blue veins from her temples, round her eyes and down her cheeks. Franz +was deeply affected. Château-Renaud and Albert looked at each other +with amazement; the ceremony which was just concluded had not appeared +more sorrowful than did that which was about to begin. Madame de +Villefort had placed herself in the shadow behind a velvet curtain, and +as she constantly bent over her child, it was difficult to read the +expression of her face. M. de Villefort was, as usual, unmoved. + +The notary, after having, according to the customary method, arranged +the papers on the table, taken his place in an armchair, and raised his +spectacles, turned towards Franz: + +“Are you M. Franz de Quesnel, baron d’Épinay?” asked he, although he +knew it perfectly. + +“Yes, sir,” replied Franz. The notary bowed. + +“I have, then, to inform you, sir, at the request of M. de Villefort, +that your projected marriage with Mademoiselle de Villefort has changed +the feeling of M. Noirtier towards his grandchild, and that he +disinherits her entirely of the fortune he would have left her. Let me +hasten to add,” continued he, “that the testator, having only the right +to alienate a part of his fortune, and having alienated it all, the +will will not bear scrutiny, and is declared null and void.” + +“Yes.” said Villefort; “but I warn M. d’Épinay, that during my +life-time my father’s will shall never be questioned, my position +forbidding any doubt to be entertained.” + +40032m + + + +“Sir,” said Franz, “I regret much that such a question has been raised +in the presence of Mademoiselle Valentine; I have never inquired the +amount of her fortune, which, however limited it may be, exceeds mine. +My family has sought consideration in this alliance with M. de +Villefort; all I seek is happiness.” + +Valentine imperceptibly thanked him, while two silent tears rolled down +her cheeks. + +“Besides, sir,” said Villefort, addressing himself to his future +son-in-law, “excepting the loss of a portion of your hopes, this +unexpected will need not personally wound you; M. Noirtier’s weakness +of mind sufficiently explains it. It is not because Mademoiselle +Valentine is going to marry you that he is angry, but because she will +marry, a union with any other would have caused him the same sorrow. +Old age is selfish, sir, and Mademoiselle de Villefort has been a +faithful companion to M. Noirtier, which she cannot be when she becomes +the Baroness d’Épinay. My father’s melancholy state prevents our +speaking to him on any subjects, which the weakness of his mind would +incapacitate him from understanding, and I am perfectly convinced that +at the present time, although, he knows that his granddaughter is going +to be married, M. Noirtier has even forgotten the name of his intended +grandson.” M. de Villefort had scarcely said this, when the door +opened, and Barrois appeared. + +“Gentlemen,” said he, in a tone strangely firm for a servant speaking +to his masters under such solemn circumstances,—“gentlemen, M. Noirtier +de Villefort wishes to speak immediately to M. Franz de Quesnel, baron +d’Épinay.” He, as well as the notary, that there might be no mistake in +the person, gave all his titles to the bridegroom elect. + +Villefort started, Madame de Villefort let her son slip from her knees, +Valentine rose, pale and dumb as a statue. Albert and Château-Renaud +exchanged a second look, more full of amazement than the first. The +notary looked at Villefort. + +“It is impossible,” said the procureur. “M. d’Épinay cannot leave the +drawing-room at present.” + +“It is at this moment,” replied Barrois with the same firmness, “that +M. Noirtier, my master, wishes to speak on important subjects to M. +Franz d’Épinay.” + +“Grandpapa Noirtier can speak now, then,” said Edward, with his +habitual quickness. However, his remark did not make Madame de +Villefort even smile, so much was every mind engaged, and so solemn was +the situation. + +“Tell M. Nortier,” resumed Villefort, “that what he demands is +impossible.” + +“Then, M. Nortier gives notice to these gentlemen,” replied Barrois, +“that he will give orders to be carried to the drawing-room.” + +Astonishment was at its height. Something like a smile was perceptible +on Madame de Villefort’s countenance. Valentine instinctively raised +her eyes, as if to thank heaven. + +“Pray go, Valentine,” said; M. de Villefort, “and see what this new +fancy of your grandfather’s is.” Valentine rose quickly, and was +hastening joyfully towards the door, when M. de Villefort altered his +intention. + +“Stop,” said he; “I will go with you.” + +“Excuse me, sir,” said Franz, “since M. Noirtier sent for me, I am +ready to attend to his wish; besides, I shall be happy to pay my +respects to him, not having yet had the honor of doing so.” + +“Pray, sir,” said Villefort with marked uneasiness, “do not disturb +yourself.” + +40032m + + + +“Forgive me, sir,” said Franz in a resolute tone. “I would not lose +this opportunity of proving to M. Noirtier how wrong it would be of him +to encourage feelings of dislike to me, which I am determined to +conquer, whatever they may be, by my devotion.” + +And without listening to Villefort he arose, and followed Valentine, +who was running downstairs with the joy of a shipwrecked mariner who +finds a rock to cling to. M. de Villefort followed them. Château-Renaud +and Morcerf exchanged a third look of still increasing wonder. + + + + Chapter 75. A Signed Statement + +Noirtier was prepared to receive them, dressed in black, and installed +in his armchair. When the three persons he expected had entered, he +looked at the door, which his valet immediately closed. + +“Listen,” whispered Villefort to Valentine, who could not conceal her +joy; “if M. Noirtier wishes to communicate anything which would delay +your marriage, I forbid you to understand him.” + +Valentine blushed, but did not answer. Villefort, approached Noirtier. + +“Here is M. Franz d’Épinay,” said he; “you requested to see him. We +have all wished for this interview, and I trust it will convince you +how ill-formed are your objections to Valentine’s marriage.” + +Noirtier answered only by a look which made Villefort’s blood run cold. +He motioned to Valentine to approach. In a moment, thanks to her habit +of conversing with her grandfather, she understood that he asked for a +key. Then his eye was fixed on the drawer of a small chest between the +windows. She opened the drawer, and found a key; and, understanding +that was what he wanted, again watched his eyes, which turned toward an +old secretaire which had been neglected for many years and was supposed +to contain nothing but useless documents. + +“Shall I open the secretaire?” asked Valentine. + +“Yes,” said the old man. + +“And the drawers?” + +“Yes.” + +“Those at the side?” + +“No.” + +“The middle one?” + +“Yes.” + +Valentine opened it and drew out a bundle of papers. “Is that what you +wish for?” asked she. + +“No.” + +She took successively all the other papers out till the drawer was +empty. “But there are no more,” said she. Noirtier’s eye was fixed on +the dictionary. + +“Yes, I understand, grandfather,” said the young girl. + +40036m + + + +She pointed to each letter of the alphabet. At the letter S the old man +stopped her. She opened, and found the word “secret.” + +“Ah! is there a secret spring?” said Valentine. + +“Yes,” said Noirtier. + +“And who knows it?” Noirtier looked at the door where the servant had +gone out. + +“Barrois?” said she. + +“Yes.” + +“Shall I call him?” + +“Yes.” + +Valentine went to the door, and called Barrois. Villefort’s impatience +during this scene made the perspiration roll from his forehead, and +Franz was stupefied. The old servant came. + +“Barrois,” said Valentine, “my grandfather has told me to open that +drawer in the secretaire, but there is a secret spring in it, which you +know—will you open it?” + +Barrois looked at the old man. “Obey,” said Noirtier’s intelligent eye. +Barrois touched a spring, the false bottom came out, and they saw a +bundle of papers tied with a black string. + +“Is that what you wish for?” said Barrois. + +“Yes.” + +“Shall I give these papers to M. de Villefort?” + +“No.” + +“To Mademoiselle Valentine?” + +“No.” + +“To M. Franz d’Épinay?” + +“Yes.” + +Franz, astonished, advanced a step. “To me, sir?” said he. + +“Yes.” + +Franz took them from Barrois and casting a glance at the cover, read: + +“‘To be given, after my death, to General Durand, who shall bequeath +the packet to his son, with an injunction to preserve it as containing +an important document.’ + +“Well, sir,” asked Franz, “what do you wish me to do with this paper?” + +“To preserve it, sealed up as it is, doubtless,” said the procureur. + +“No,” replied Noirtier eagerly. + +“Do you wish him to read it?” said Valentine. + +“Yes,” replied the old man. + +“You understand, baron, my grandfather wishes you to read this paper,” +said Valentine. + +“Then let us sit down,” said Villefort impatiently, “for it will take +some time.” + +“Sit down,” said the old man. Villefort took a chair, but Valentine +remained standing by her father’s side, and Franz before him, holding +the mysterious paper in his hand. “Read,” said the old man. Franz +untied it, and in the midst of the most profound silence read: + +40038m + + + +“‘_Extract of the report of a meeting of the Bonapartist Club in the +Rue Saint-Jacques, held February 5th, 1815_.’” + +Franz stopped. “February 5th, 1815!” said he; “it is the day my father +was murdered.” Valentine and Villefort were dumb; the eye of the old +man alone seemed to say clearly, “Go on.” + +“But it was on leaving this club,” said he, “my father disappeared.” + +Noirtier’s eye continued to say, “Read.” He resumed:— + +“‘The undersigned Louis-Jacques Beaurepaire, lieutenant-colonel of +artillery, Étienne Duchampy, general of brigade, and Claude Lecharpal, +keeper of woods and forests, declare, that on the 4th of February, a +letter arrived from the Island of Elba, recommending to the kindness +and the confidence of the Bonapartist Club, General Flavien de Quesnel, +who having served the emperor from 1804 to 1814 was supposed to be +devoted to the interests of the Napoleon dynasty, notwithstanding the +title of baron which Louis XVIII. had just granted to him with his +estate of Épinay. + +400340m + + + +“‘A note was in consequence addressed to General de Quesnel, begging +him to be present at the meeting next day, the 5th. The note indicated +neither the street nor the number of the house where the meeting was to +be held; it bore no signature, but it announced to the general that +someone would call for him if he would be ready at nine o’clock. The +meetings were always held from that time till midnight. At nine o’clock +the president of the club presented himself; the general was ready, the +president informed him that one of the conditions of his introduction +was that he should be eternally ignorant of the place of meeting, and +that he would allow his eyes to be bandaged, swearing that he would not +endeavor to take off the bandage. General de Quesnel accepted the +condition, and promised on his honor not to seek to discover the road +they took. The general’s carriage was ready, but the president told him +it was impossible for him to use it, since it was useless to blindfold +the master if the coachman knew through what streets he went. “What +must be done then?” asked the general.—“I have my carriage here,” said +the president. + +“‘“Have you, then, so much confidence in your servant that you can +intrust him with a secret you will not allow me to know?” + +“‘“Our coachman is a member of the club,” said the president; “we shall +be driven by a State-Councillor.” + +“‘“Then we run another risk,” said the general, laughing, “that of +being upset.” We insert this joke to prove that the general was not in +the least compelled to attend the meeting, but that he came willingly. +When they were seated in the carriage the president reminded the +general of his promise to allow his eyes to be bandaged, to which he +made no opposition. On the road the president thought he saw the +general make an attempt to remove the handkerchief, and reminded him of +his oath. “Sure enough,” said the general. The carriage stopped at an +alley leading out of the Rue Saint-Jacques. The general alighted, +leaning on the arm of the president, of whose dignity he was not aware, +considering him simply as a member of the club; they went through the +alley, mounted a flight of stairs, and entered the assembly-room. + +“‘The deliberations had already begun. The members, apprised of the +sort of presentation which was to be made that evening, were all in +attendance. When in the middle of the room the general was invited to +remove his bandage, he did so immediately, and was surprised to see so +many well-known faces in a society of whose existence he had till then +been ignorant. They questioned him as to his sentiments, but he +contented himself with answering, that the letters from the Island of +Elba ought to have informed them——’” + +Franz interrupted himself by saying, “My father was a royalist; they +need not have asked his sentiments, which were well known.” + +“And hence,” said Villefort, “arose my affection for your father, my +dear M. Franz. Opinions held in common are a ready bond of union.” + +“Read again,” said the old man. + +Franz continued: + +“‘The president then sought to make him speak more explicitly, but M. +de Quesnel replied that he wished first to know what they wanted with +him. He was then informed of the contents of the letter from the Island +of Elba, in which he was recommended to the club as a man who would be +likely to advance the interests of their party. One paragraph spoke of +the return of Bonaparte and promised another letter and further +details, on the arrival of the _Pharaon_ belonging to the shipbuilder +Morrel, of Marseilles, whose captain was entirely devoted to the +emperor. During all this time, the general, on whom they thought to +have relied as on a brother, manifested evidently signs of discontent +and repugnance. When the reading was finished, he remained silent, with +knitted brows. + +“‘“Well,” asked the president, “what do you say to this letter, +general?” + +“‘“I say that it is too soon after declaring myself for Louis XVIII. to +break my vow in behalf of the ex-emperor.” This answer was too clear to +permit of any mistake as to his sentiments. “General,” said the +president, “we acknowledge no King Louis XVIII., or an ex-emperor, but +his majesty the emperor and king, driven from France, which is his +kingdom, by violence and treason.” + +“‘“Excuse me, gentlemen,” said the general; “you may not acknowledge +Louis XVIII., but I do, as he has made me a baron and a field-marshal, +and I shall never forget that for these two titles I am indebted to his +happy return to France.” + +“‘“Sir,” said the president, rising with gravity, “be careful what you +say; your words clearly show us that they are deceived concerning you +in the Island of Elba, and have deceived us! The communication has been +made to you in consequence of the confidence placed in you, and which +does you honor. Now we discover our error; a title and promotion attach +you to the government we wish to overturn. We will not constrain you to +help us; we enroll no one against his conscience, but we will compel +you to act generously, even if you are not disposed to do so.” + +“‘“You would call acting generously, knowing your conspiracy and not +informing against you, that is what I should call becoming your +accomplice. You see I am more candid than you.”’” + +“Ah, my father!” said Franz, interrupting himself. “I understand now +why they murdered him.” Valentine could not help casting one glance +towards the young man, whose filial enthusiasm it was delightful to +behold. Villefort walked to and fro behind them. Noirtier watched the +expression of each one, and preserved his dignified and commanding +attitude. Franz returned to the manuscript, and continued: + +“‘“Sir,” said the president, “you have been invited to join this +assembly—you were not forced here; it was proposed to you to come +blindfolded—you accepted. When you complied with this twofold request +you well knew we did not wish to secure the throne of Louis XVIII., or +we should not take so much care to avoid the vigilance of the police. +It would be conceding too much to allow you to put on a mask to aid you +in the discovery of our secret, and then to remove it that you may ruin +those who have confided in you. No, no, you must first say if you +declare yourself for the king of a day who now reigns, or for his +majesty the emperor.” + +“‘“I am a royalist,” replied the general; “I have taken the oath of +allegiance to Louis XVIII., and I will adhere to it.” These words were +followed by a general murmur, and it was evident that several of the +members were discussing the propriety of making the general repent of +his rashness. + +“‘The president again arose, and having imposed silence, said,—“Sir, +you are too serious and too sensible a man not to understand the +consequences of our present situation, and your candor has already +dictated to us the conditions which remain for us to offer you.” The +general, putting his hand on his sword, exclaimed,—“If you talk of +honor, do not begin by disavowing its laws, and impose nothing by +violence.” + +“‘“And you, sir,” continued the president, with a calmness still more +terrible than the general’s anger, “I advise you not to touch your +sword.” The general looked around him with slight uneasiness; however +he did not yield, but calling up all his fortitude, said,—“I will not +swear.” + +“‘“Then you must die,” replied the president calmly. M. d’Épinay became +very pale; he looked round him a second time, several members of the +club were whispering, and getting their arms from under their cloaks. +“General,” said the president, “do not alarm yourself; you are among +men of honor who will use every means to convince you before resorting +to the last extremity, but as you have said, you are among +conspirators, you are in possession of our secret, and you must restore +it to us.” A significant silence followed these words, and as the +general did not reply,—“Close the doors,” said the president to the +door-keeper. + +40042m + + + +“‘The same deadly silence succeeded these words. Then the general +advanced, and making a violent effort to control his feelings,—“I have +a son,” said he, “and I ought to think of him, finding myself among +assassins.” + +“‘“General,” said the chief of the assembly, “one man may insult +fifty—it is the privilege of weakness. But he does wrong to use his +privilege. Follow my advice, swear, and do not insult.” The general, +again daunted by the superiority of the chief, hesitated a moment; then +advancing to the president’s desk,—“What is the form, said he. + +“‘“It is this:—‘I swear by my honor not to reveal to anyone what I have +seen and heard on the 5th of February, 1815, between nine and ten +o’clock in the evening; and I plead guilty of death should I ever +violate this oath.’” The general appeared to be affected by a nervous +tremor, which prevented his answering for some moments; then, +overcoming his manifest repugnance, he pronounced the required oath, +but in so low a tone as to be scarcely audible to the majority of the +members, who insisted on his repeating it clearly and distinctly, which +he did. + +“‘“Now am I at liberty to retire?” said the general. The president +rose, appointed three members to accompany him, and got into the +carriage with the general after bandaging his eyes. One of those three +members was the coachman who had driven them there. The other members +silently dispersed. “Where do you wish to be taken?” asked the +president.—“Anywhere out of your presence,” replied M. d’Épinay. +“Beware, sir,” replied the president, “you are no longer in the +assembly, and have only to do with individuals; do not insult them +unless you wish to be held responsible.” But instead of listening, M. +d’Épinay went on,—“You are still as brave in your carriage as in your +assembly because you are still four against one.” The president stopped +the coach. They were at that part of the Quai des Ormes where the steps +lead down to the river. “Why do you stop here?” asked d’Épinay. + +“‘“Because, sir,” said the president, “you have insulted a man, and +that man will not go one step farther without demanding honorable +reparation.” + +“‘“Another method of assassination?” said the general, shrugging his +shoulders. + +“‘“Make no noise, sir, unless you wish me to consider you as one of the +men of whom you spoke just now as cowards, who take their weakness for +a shield. You are alone, one alone shall answer you; you have a sword +by your side, I have one in my cane; you have no witness, one of these +gentlemen will serve you. Now, if you please, remove your bandage.” The +general tore the handkerchief from his eyes. “At last,” said he, “I +shall know with whom I have to do.” They opened the door and the four +men alighted.’” + +Franz again interrupted himself, and wiped the cold drops from his +brow; there was something awful in hearing the son read aloud in +trembling pallor these details of his father’s death, which had +hitherto been a mystery. Valentine clasped her hands as if in prayer. +Noirtier looked at Villefort with an almost sublime expression of +contempt and pride. + +Franz continued: + +“‘It was, as we said, the fifth of February. For three days the mercury +had been five or six degrees below freezing and the steps were covered +with ice. The general was stout and tall, the president offered him the +side of the railing to assist him in getting down. The two witnesses +followed. It was a dark night. The ground from the steps to the river +was covered with snow and hoarfrost, the water of the river looked +black and deep. One of the seconds went for a lantern in a coal-barge +near, and by its light they examined the weapons. The president’s +sword, which was simply, as he had said, one he carried in his cane, +was five inches shorter than the general’s, and had no guard. The +general proposed to cast lots for the swords, but the president said it +was he who had given the provocation, and when he had given it he had +supposed each would use his own arms. The witnesses endeavored to +insist, but the president bade them be silent. The lantern was placed +on the ground, the two adversaries took their stations, and the duel +began. The light made the two swords appear like flashes of lightning; +as for the men, they were scarcely perceptible, the darkness was so +great. + +40044m + + + +“‘General d’Épinay passed for one of the best swordsmen in the army, +but he was pressed so closely in the onset that he missed his aim and +fell. The witnesses thought he was dead, but his adversary, who knew he +had not struck him, offered him the assistance of his hand to rise. The +circumstance irritated instead of calming the general, and he rushed on +his adversary. But his opponent did not allow his guard to be broken. +He received him on his sword and three times the general drew back on +finding himself too closely engaged, and then returned to the charge. +At the third he fell again. They thought he slipped, as at first, and +the witnesses, seeing he did not move, approached and endeavored to +raise him, but the one who passed his arm around the body found it was +moistened with blood. The general, who had almost fainted, revived. +“Ah,” said he, “they have sent some fencing-master to fight with me.” +The president, without answering, approached the witness who held the +lantern, and raising his sleeve, showed him two wounds he had received +in his arm; then opening his coat, and unbuttoning his waistcoat, +displayed his side, pierced with a third wound. Still he had not even +uttered a sigh. General d’Épinay died five minutes after.’” + +Franz read these last words in a voice so choked that they were hardly +audible, and then stopped, passing his hand over his eyes as if to +dispel a cloud; but after a moment’s silence, he continued: + +“‘The president went up the steps, after pushing his sword into his +cane; a track of blood on the snow marked his course. He had scarcely +arrived at the top when he heard a heavy splash in the water—it was the +general’s body, which the witnesses had just thrown into the river +after ascertaining that he was dead. The general fell, then, in a loyal +duel, and not in ambush as it might have been reported. In proof of +this we have signed this paper to establish the truth of the facts, +lest the moment should arrive when either of the actors in this +terrible scene should be accused of premeditated murder or of +infringement of the laws of honor. + +“‘Signed, Beaurepaire, Duchampy, and Lecharpal.’” + +When Franz had finished reading this account, so dreadful for a son; +when Valentine, pale with emotion, had wiped away a tear; when +Villefort, trembling, and crouched in a corner, had endeavored to +lessen the storm by supplicating glances at the implacable old man,— + +“Sir,” said d’Épinay to Noirtier, “since you are well acquainted with +all these details, which are attested by honorable signatures,—since +you appear to take some interest in me, although you have only +manifested it hitherto by causing me sorrow, refuse me not one final +satisfaction—tell me the name of the president of the club, that I may +at least know who killed my father.” + +Villefort mechanically felt for the handle of the door; Valentine, who +understood sooner than anyone her grandfather’s answer, and who had +often seen two scars upon his right arm, drew back a few steps. + +“Mademoiselle,” said Franz, turning towards Valentine, “unite your +efforts with mine to find out the name of the man who made me an orphan +at two years of age.” Valentine remained dumb and motionless. + +“Hold, sir,” said Villefort, “do not prolong this dreadful scene. The +names have been purposely concealed; my father himself does not know +who this president was, and if he knows, he cannot tell you; proper +names are not in the dictionary.” + +“Oh, misery,” cried Franz: “the only hope which sustained me and +enabled me to read to the end was that of knowing, at least, the name +of him who killed my father! Sir, sir,” cried he, turning to Noirtier, +“do what you can—make me understand in some way!” + +“Yes,” replied Noirtier. + +“Oh, mademoiselle, mademoiselle!” cried Franz, “your grandfather says +he can indicate the person. Help me,—lend me your assistance!” + +Noirtier looked at the dictionary. Franz took it with a nervous +trembling, and repeated the letters of the alphabet successively, until +he came to M. At that letter the old man signified “Yes.” + +“M,” repeated Franz. The young man’s finger, glided over the words, but +at each one Noirtier answered by a negative sign. Valentine hid her +head between her hands. At length, Franz arrived at the word MYSELF. + +40046m + + + +“Yes!” + +“You!” cried Franz, whose hair stood on end; “you, M. Noirtier—you +killed my father?” + +“Yes!” replied Noirtier, fixing a majestic look on the young man. Franz +fell powerless on a chair; Villefort opened the door and escaped, for +the idea had entered his mind to stifle the little remaining life in +the heart of this terrible old man. + + + + + Chapter 76. Progress of Cavalcanti the Younger + +Meanwhile M. Cavalcanti the elder had returned to his service, not in +the army of his majesty the Emperor of Austria, but at the gaming-table +of the baths of Lucca, of which he was one of the most assiduous +courtiers. He had spent every farthing that had been allowed for his +journey as a reward for the majestic and solemn manner in which he had +maintained his assumed character of father. + +M. Andrea at his departure inherited all the papers which proved that +he had indeed the honor of being the son of the Marquis Bartolomeo and +the Marchioness Oliva Corsinari. He was now fairly launched in that +Parisian society which gives such ready access to foreigners, and +treats them, not as they really are, but as they wish to be considered. +Besides, what is required of a young man in Paris? To speak its +language tolerably, to make a good appearance, to be a good gamester, +and to pay in cash. They are certainly less particular with a foreigner +than with a Frenchman. Andrea had, then, in a fortnight, attained a +very fair position. He was called count, he was said to possess 50,000 +livres per annum; and his father’s immense riches, buried in the +quarries of Saravezza, were a constant theme. A learned man, before +whom the last circumstance was mentioned as a fact, declared he had +seen the quarries in question, which gave great weight to assertions +hitherto somewhat doubtful, but which now assumed the garb of reality. + +Such was the state of society in Paris at the period we bring before +our readers, when Monte Cristo went one evening to pay M. Danglars a +visit. M. Danglars was out, but the count was asked to go and see the +baroness, and he accepted the invitation. It was never without a +nervous shudder, since the dinner at Auteuil, and the events which +followed it, that Madame Danglars heard Monte Cristo’s name announced. +If he did not come, the painful sensation became most intense; if, on +the contrary, he appeared, his noble countenance, his brilliant eyes, +his amiability, his polite attention even towards Madame Danglars, soon +dispelled every impression of fear. It appeared impossible to the +baroness that a man of such delightfully pleasing manners should +entertain evil designs against her; besides, the most corrupt minds +only suspect evil when it would answer some interested end—useless +injury is repugnant to every mind. + +40048m + + + +When Monte Cristo entered the boudoir, to which we have already once +introduced our readers, and where the baroness was examining some +drawings, which her daughter passed to her after having looked at them +with M. Cavalcanti, his presence soon produced its usual effect, and it +was with smiles that the baroness received the count, although she had +been a little disconcerted at the announcement of his name. The latter +took in the whole scene at a glance. + +The baroness was partially reclining on a sofa, Eugénie sat near her, +and Cavalcanti was standing. Cavalcanti, dressed in black, like one of +Goethe’s heroes, with varnished shoes and white silk open-worked +stockings, passed a white and tolerably nice-looking hand through his +light hair, and so displayed a sparkling diamond, that in spite of +Monte Cristo’s advice the vain young man had been unable to resist +putting on his little finger. This movement was accompanied by killing +glances at Mademoiselle Danglars, and by sighs launched in the same +direction. + +Mademoiselle Danglars was still the same—cold, beautiful, and +satirical. Not one of these glances, nor one sigh, was lost on her; +they might have been said to fall on the shield of Minerva, which some +philosophers assert protected sometimes the breast of Sappho. Eugénie +bowed coldly to the count, and availed herself of the first moment when +the conversation became earnest to escape to her study, whence very +soon two cheerful and noisy voices being heard in connection with +occasional notes of the piano assured Monte Cristo that Mademoiselle +Danglars preferred to his society and to that of M. Cavalcanti the +company of Mademoiselle Louise d’Armilly, her singing teacher. + +It was then, especially while conversing with Madame Danglars, and +apparently absorbed by the charm of the conversation, that the count +noticed M. Andrea Cavalcanti’s solicitude, his manner of listening to +the music at the door he dared not pass, and of manifesting his +admiration. + +The banker soon returned. His first look was certainly directed towards +Monte Cristo, but the second was for Andrea. As for his wife, he bowed +to her, as some husbands do to their wives, but in a way that bachelors +will never comprehend, until a very extensive code is published on +conjugal life. + +“Have not the ladies invited you to join them at the piano?” said +Danglars to Andrea. + +“Alas, no, sir,” replied Andrea with a sigh, still more remarkable than +the former ones. Danglars immediately advanced towards the door and +opened it. + +40050m + + + +The two young ladies were seen seated on the same chair, at the piano, +accompanying themselves, each with one hand, a fancy to which they had +accustomed themselves, and performed admirably. Mademoiselle d’Armilly, +whom they then perceived through the open doorway, formed with Eugénie +one of the _tableaux vivants_ of which the Germans are so fond. She was +somewhat beautiful, and exquisitely formed—a little fairy-like figure, +with large curls falling on her neck, which was rather too long, as +Perugino sometimes makes his Virgins, and her eyes dull from fatigue. +She was said to have a weak chest, and like Antonia in the _Cremona +Violin_, she would die one day while singing. + +Monte Cristo cast one rapid and curious glance round this sanctum; it +was the first time he had ever seen Mademoiselle d’Armilly, of whom he +had heard much. + +“Well,” said the banker to his daughter, “are we then all to be +excluded?” + +He then led the young man into the study, and either by chance or +manœuvre the door was partially closed after Andrea, so that from the +place where they sat neither the Count nor the baroness could see +anything; but as the banker had accompanied Andrea, Madame Danglars +appeared to take no notice of it. + +The count soon heard Andrea’s voice, singing a Corsican song, +accompanied by the piano. While the count smiled at hearing this song, +which made him lose sight of Andrea in the recollection of Benedetto, +Madame Danglars was boasting to Monte Cristo of her husband’s strength +of mind, who that very morning had lost three or four hundred thousand +francs by a failure at Milan. The praise was well deserved, for had not +the count heard it from the baroness, or by one of those means by which +he knew everything, the baron’s countenance would not have led him to +suspect it. + +“Hem,” thought Monte Cristo, “he begins to conceal his losses; a month +since he boasted of them.” + +Then aloud,—“Oh, madame, M. Danglars is so skilful, he will soon regain +at the Bourse what he loses elsewhere.” + +“I see that you participate in a prevalent error,” said Madame +Danglars. + +“What is it?” said Monte Cristo. + +“That M. Danglars speculates, whereas he never does.” + +“Truly, madame, I recollect M. Debray told me——apropos, what has become +of him? I have seen nothing of him the last three or four days.” + +“Nor I,” said Madame Danglars; “but you began a sentence, sir, and did +not finish.” + +“Which?” + +“M. Debray had told you——” + +“Ah, yes; he told me it was you who sacrificed to the demon of +speculation.” + +“I was once very fond of it, but I do not indulge now.” + +“Then you are wrong, madame. Fortune is precarious; and if I were a +woman and fate had made me a banker’s wife, whatever might be my +confidence in my husband’s good fortune, still in speculation you know +there is great risk. Well, I would secure for myself a fortune +independent of him, even if I acquired it by placing my interests in +hands unknown to him.” Madame Danglars blushed, in spite of all her +efforts. + +“Stay,” said Monte Cristo, as though he had not observed her confusion, +“I have heard of a lucky hit that was made yesterday on the Neapolitan +bonds.” + +“I have none—nor have I ever possessed any; but really we have talked +long enough of money, count, we are like two stockbrokers; have you +heard how fate is persecuting the poor Villeforts?” + +“What has happened?” said the count, simulating total ignorance. + +“You know the Marquis of Saint-Méran died a few days after he had set +out on his journey to Paris, and the marchioness a few days after her +arrival?” + +“Yes,” said Monte Cristo, “I have heard that; but, as Claudius said to +Hamlet, ‘it is a law of nature; their fathers died before them, and +they mourned their loss; they will die before their children, who will, +in their turn, grieve for them.’” + +“But that is not all.” + +“Not all!” + +“No; they were going to marry their daughter——” + +“To M. Franz d’Épinay. Is it broken off?” + +“Yesterday morning, it appears, Franz declined the honor.” + +“Indeed? And is the reason known?” + +“No.” + +“How extraordinary! And how does M. de Villefort bear it?” + +“As usual. Like a philosopher.” + +Danglars returned at this moment alone. + +“Well,” said the baroness, “do you leave M. Cavalcanti with your +daughter?” + +“And Mademoiselle d’Armilly,” said the banker; “do you consider her no +one?” Then, turning to Monte Cristo, he said, “Prince Cavalcanti is a +charming young man, is he not? But is he really a prince?” + +“I will not answer for it,” said Monte Cristo. “His father was +introduced to me as a marquis, so he ought to be a count; but I do not +think he has much claim to that title.” + +“Why?” said the banker. “If he is a prince, he is wrong not to maintain +his rank; I do not like anyone to deny his origin.” + +“Oh, you are a thorough democrat,” said Monte Cristo, smiling. + +“But do you see to what you are exposing yourself?” said the baroness. +“If, perchance, M. de Morcerf came, he would find M. Cavalcanti in that +room, where he, the betrothed of Eugénie, has never been admitted.” + +“You may well say, perchance,” replied the banker; “for he comes so +seldom, it would seem only chance that brings him.” + +“But should he come and find that young man with your daughter, he +might be displeased.” + +“He? You are mistaken. M. Albert would not do us the honor to be +jealous; he does not like Eugénie sufficiently. Besides, I care not for +his displeasure.” + +“Still, situated as we are——” + +“Yes, do you know how we are situated? At his mother’s ball he danced +once with Eugénie, and M. Cavalcanti three times, and he took no notice +of it.” + +The valet announced the Vicomte Albert de Morcerf. The baroness rose +hastily, and was going into the study, when Danglars stopped her. + +“Let her alone,” said he. + +She looked at him in amazement. Monte Cristo appeared to be unconscious +of what passed. Albert entered, looking very handsome and in high +spirits. He bowed politely to the baroness, familiarly to Danglars, and +affectionately to Monte Cristo. Then turning to the baroness: “May I +ask how Mademoiselle Danglars is?” said he. + +“She is quite well,” replied Danglars quickly; “she is at the piano +with M. Cavalcanti.” + +Albert retained his calm and indifferent manner; he might feel perhaps +annoyed, but he knew Monte Cristo’s eye was on him. “M. Cavalcanti has +a fine tenor voice,” said he, “and Mademoiselle Eugénie a splendid +soprano, and then she plays the piano like Thalberg. The concert must +be a delightful one.” + +“They suit each other remarkably well,” said Danglars. Albert appeared +not to notice this remark, which was, however, so rude that Madame +Danglars blushed. + +“I, too,” said the young man, “am a musician—at least, my masters used +to tell me so; but it is strange that my voice never would suit any +other, and a soprano less than any.” + +Danglars smiled, and seemed to say, “It is of no consequence.” Then, +hoping doubtless to effect his purpose, he said,—“The prince and my +daughter were universally admired yesterday. You were not of the party, +M. de Morcerf?” + +“What prince?” asked Albert. + +“Prince Cavalcanti,” said Danglars, who persisted in giving the young +man that title. + +“Pardon me,” said Albert, “I was not aware that he was a prince. And +Prince Cavalcanti sang with Mademoiselle Eugénie yesterday? It must +have been charming, indeed. I regret not having heard them. But I was +unable to accept your invitation, having promised to accompany my +mother to a German concert given by the Baroness of Château-Renaud.” + +This was followed by rather an awkward silence. + +“May I also be allowed,” said Morcerf, “to pay my respects to +Mademoiselle Danglars?” + +“Wait a moment,” said the banker, stopping the young man; “do you hear +that delightful cavatina? Ta, ta, ta, ti, ta, ti, ta, ta; it is +charming, let them finish—one moment. Bravo, bravi, brava!” The banker +was enthusiastic in his applause. + +40054m + + + +“Indeed,” said Albert, “it is exquisite; it is impossible to understand +the music of his country better than Prince Cavalcanti does. You said +prince, did you not? But he can easily become one, if he is not +already; it is no uncommon thing in Italy. But to return to the +charming musicians—you should give us a treat, Danglars, without +telling them there is a stranger. Ask them to sing one more song; it is +so delightful to hear music in the distance, when the musicians are +unrestrained by observation.” + +Danglars was quite annoyed by the young man’s indifference. He took +Monte Cristo aside. + +“What do you think of our lover?” said he. + +“He appears cool. But, then your word is given.” + +“Yes, doubtless I have promised to give my daughter to a man who loves +her, but not to one who does not. See him there, cold as marble and +proud like his father. If he were rich, if he had Cavalcanti’s fortune, +that might be pardoned. _Ma foi_, I haven’t consulted my daughter; but +if she has good taste——” + +“Oh,” said Monte Cristo, “my fondness may blind me, but I assure you I +consider Morcerf a charming young man who will render your daughter +happy and will sooner or later attain a certain amount of distinction, +and his father’s position is good.” + +“Hem,” said Danglars. + +“Why do you doubt?” + +“The past—that obscurity on the past.” + +“But that does not affect the son.” + +“Very true.” + +“Now, I beg of you, don’t go off your head. It’s a month now that you +have been thinking of this marriage, and you must see that it throws +some responsibility on me, for it was at my house you met this young +Cavalcanti, whom I do not really know at all.” + +“But I do.” + +“Have you made inquiry?” + +“Is there any need of that! Does not his appearance speak for him? And +he is very rich.” + +“I am not so sure of that.” + +“And yet you said he had money.” + +“Fifty thousand livres—a mere trifle.” + +“He is well educated.” + +“Hem,” said Monte Cristo in his turn. + +“He is a musician.” + +“So are all Italians.” + +“Come, count, you do not do that young man justice.” + +“Well, I acknowledge it annoys me, knowing your connection with the +Morcerf family, to see him throw himself in the way.” Danglars burst +out laughing. + +“What a Puritan you are!” said he; “that happens every day.” + +“But you cannot break it off in this way; the Morcerfs are depending on +this union.” + +“Indeed.” + +“Positively.” + +“Then let them explain themselves; you should give the father a hint, +you are so intimate with the family.” + +“I?—where the devil did you find out that?” + +“At their ball; it was apparent enough. Why, did not the countess, the +proud Mercédès, the disdainful Catalane, who will scarcely open her +lips to her oldest acquaintances, take your arm, lead you into the +garden, into the private walks, and remain there for half an hour?” + +“Ah, baron, baron,” said Albert, “you are not listening—what barbarism +in a megalomaniac like you!” + +“Oh, don’t worry about me, Sir Mocker,” said Danglars; then turning to +Monte Cristo he said: + +“But will you undertake to speak to the father?” + +“Willingly, if you wish it.” + +“But let it be done explicitly and positively. If he demands my +daughter let him fix the day—declare his conditions; in short, let us +either understand each other, or quarrel. You understand—no more +delay.” + +“Yes, sir, I will give my attention to the subject.” + +“I do not say that I await with pleasure his decision, but I do await +it. A banker must, you know, be a slave to his promise.” And Danglars +sighed as M. Cavalcanti had done half an hour before. + +“Bravi! bravo! brava!” cried Morcerf, parodying the banker, as the +selection came to an end. Danglars began to look suspiciously at +Morcerf, when someone came and whispered a few words to him. + +“I shall soon return,” said the banker to Monte Cristo; “wait for me. I +shall, perhaps, have something to say to you.” And he went out. + +The baroness took advantage of her husband’s absence to push open the +door of her daughter’s study, and M. Andrea, who was sitting before the +piano with Mademoiselle Eugénie, started up like a jack-in-the-box. +Albert bowed with a smile to Mademoiselle Danglars, who did not appear +in the least disturbed, and returned his bow with her usual coolness. +Cavalcanti was evidently embarrassed; he bowed to Morcerf, who replied +with the most impertinent look possible. Then Albert launched out in +praise of Mademoiselle Danglars’ voice, and on his regret, after what +he had just heard, that he had been unable to be present the previous +evening. + +Cavalcanti, being left alone, turned to Monte Cristo. + +“Come,” said Madame Danglars, “leave music and compliments, and let us +go and take tea.” + +“Come, Louise,” said Mademoiselle Danglars to her friend. + +They passed into the next drawing-room, where tea was prepared. Just as +they were beginning, in the English fashion, to leave the spoons in +their cups, the door again opened and Danglars entered, visibly +agitated. Monte Cristo observed it particularly, and by a look asked +the banker for an explanation. + +“I have just received my courier from Greece,” said Danglars. + +“Ah, yes,” said the count; “that was the reason of your running away +from us.” + +“Yes.” + +“How is King Otho getting on?” asked Albert in the most sprightly tone. + +Danglars cast another suspicious look towards him without answering, +and Monte Cristo turned away to conceal the expression of pity which +passed over his features, but which was gone in a moment. + +“We shall go together, shall we not?” said Albert to the count. + +“If you like,” replied the latter. + +Albert could not understand the banker’s look, and turning to Monte +Cristo, who understood it perfectly,—“Did you see,” said he, “how he +looked at me?” + +“Yes,” said the count; “but did you think there was anything particular +in his look?” + +“Indeed, I did; and what does he mean by his news from Greece?” + +“How can I tell you?” + +“Because I imagine you have correspondents in that country.” + +Monte Cristo smiled significantly. + +“Stop,” said Albert, “here he comes. I shall compliment Mademoiselle +Danglars on her cameo, while the father talks to you.” + +“If you compliment her at all, let it be on her voice, at least,” said +Monte Cristo. + +“No, everyone would do that.” + +“My dear viscount, you are dreadfully impertinent.” + +Albert advanced towards Eugénie, smiling. + +Meanwhile, Danglars, stooping to Monte Cristo’s ear, “Your advice was +excellent,” said he; “there is a whole history connected with the names +Fernand and Yanina.” + +“Indeed?” said Monte Cristo. + +“Yes, I will tell you all; but take away the young man; I cannot endure +his presence.” + +“He is going with me. Shall I send the father to you?” + +“Immediately.” + +“Very well.” The count made a sign to Albert and they bowed to the +ladies, and took their leave, Albert perfectly indifferent to +Mademoiselle Danglars’ contempt, Monte Cristo reiterating his advice to +Madame Danglars on the prudence a banker’s wife should exercise in +providing for the future. + +M. Cavalcanti remained master of the field. + + + + Chapter 77. Haydée + +Scarcely had the count’s horses cleared the angle of the boulevard, +when Albert, turning towards the count, burst into a loud fit of +laughter—much too loud in fact not to give the idea of its being rather +forced and unnatural. + +“Well,” said he, “I will ask you the same question which Charles IX. +put to Catherine de’ Medici, after the massacre of Saint Bartholomew: +‘How have I played my little part?’” + +“To what do you allude?” asked Monte Cristo. + +“To the installation of my rival at M. Danglars’.” + +“What rival?” + +“_Ma foi!_ what rival? Why, your protégé, M. Andrea Cavalcanti!” + +“Ah, no joking, viscount, if you please; I do not patronize M. +Andrea—at least, not as concerns M. Danglars.” + +“And you would be to blame for not assisting him, if the young man +really needed your help in that quarter, but, happily for me, he can +dispense with it.” + +“What, do you think he is paying his addresses?” + +“I am certain of it; his languishing looks and modulated tones when +addressing Mademoiselle Danglars fully proclaim his intentions. He +aspires to the hand of the proud Eugénie.” + +“What does that signify, so long as they favor your suit?” + +“But it is not the case, my dear count: on the contrary. I am repulsed +on all sides.” + +“What!” + +“It is so indeed; Mademoiselle Eugénie scarcely answers me, and +Mademoiselle d’Armilly, her confidant, does not speak to me at all.” + +“But the father has the greatest regard possible for you,” said Monte +Cristo. + +“He? Oh, no, he has plunged a thousand daggers into my heart, +tragedy-weapons, I own, which instead of wounding sheathe their points +in their own handles, but daggers which he nevertheless believed to be +real and deadly.” + +“Jealousy indicates affection.” + +“True; but I am not jealous.” + +“He is.” + +“Of whom?—of Debray?” + +“No, of you.” + +“Of me? I will engage to say that before a week is past the door will +be closed against me.” + +“You are mistaken, my dear viscount.” + +“Prove it to me.” + +“Do you wish me to do so?” + +“Yes.” + +“Well, I am charged with the commission of endeavoring to induce the +Comte de Morcerf to make some definite arrangement with the baron.” + +“By whom are you charged?” + +“By the baron himself.” + +“Oh,” said Albert with all the cajolery of which he was capable. “You +surely will not do that, my dear count?” + +“Certainly I shall, Albert, as I have promised to do it.” + +“Well,” said Albert, with a sigh, “it seems you are determined to marry +me.” + +“I am determined to try and be on good terms with everybody, at all +events,” said Monte Cristo. “But apropos of Debray, how is it that I +have not seen him lately at the baron’s house?” + +“There has been a misunderstanding.” + +“What, with the baroness?” + +“No, with the baron.” + +“Has he perceived anything?” + +“Ah, that is a good joke!” + +“Do you think he suspects?” said Monte Cristo with charming +artlessness. + +“Where have you come from, my dear count?” said Albert. + +“From Congo, if you will.” + +“It must be farther off than even that.” + +“But what do I know of your Parisian husbands?” + +“Oh, my dear count, husbands are pretty much the same everywhere; an +individual husband of any country is a pretty fair specimen of the +whole race.” + +“But then, what can have led to the quarrel between Danglars and +Debray? They seemed to understand each other so well,” said Monte +Cristo with renewed energy. + +“Ah, now you are trying to penetrate into the mysteries of Isis, in +which I am not initiated. When M. Andrea Cavalcanti has become one of +the family, you can ask him that question.” + +The carriage stopped. + +“Here we are,” said Monte Cristo; “it is only half-past ten o’clock, +come in.” + +“Certainly, I will.” + +“My carriage shall take you back.” + +“No, thank you; I gave orders for my _coupé_ to follow me.” + +“There it is, then,” said Monte Cristo, as he stepped out of the +carriage. They both went into the house; the drawing-room was lighted +up—they went in there. “You will make tea for us, Baptistin,” said the +count. Baptistin left the room without waiting to answer, and in two +seconds reappeared, bringing on a tray, all that his master had +ordered, ready prepared, and appearing to have sprung from the ground, +like the repasts which we read of in fairy tales. + +“Really, my dear count,” said Morcerf, “what I admire in you is, not so +much your riches, for perhaps there are people even wealthier than +yourself, nor is it only your wit, for Beaumarchais might have +possessed as much,—but it is your manner of being served, without any +questions, in a moment, in a second; it is as if they guessed what you +wanted by your manner of ringing, and made a point of keeping +everything you can possibly desire in constant readiness.” + +“What you say is perhaps true; they know my habits. For instance, you +shall see; how do you wish to occupy yourself during tea-time?” + +“_Ma foi_, I should like to smoke.” + +Monte Cristo took the gong and struck it once. In about the space of a +second a private door opened, and Ali appeared, bringing two chibouques +filled with excellent latakia. + +“It is quite wonderful,” said Albert. + +“Oh no, it is as simple as possible,” replied Monte Cristo. “Ali knows +I generally smoke while I am taking my tea or coffee; he has heard that +I ordered tea, and he also knows that I brought you home with me; when +I summoned him he naturally guessed the reason of my doing so, and as +he comes from a country where hospitality is especially manifested +through the medium of smoking, he naturally concludes that we shall +smoke in company, and therefore brings two chibouques instead of +one—and now the mystery is solved.” + +“Certainly you give a most commonplace air to your explanation, but it +is not the less true that you——Ah, but what do I hear?” and Morcerf +inclined his head towards the door, through which sounds seemed to +issue resembling those of a guitar. + +“_Ma foi_, my dear viscount, you are fated to hear music this evening; +you have only escaped from Mademoiselle Danglars’ piano, to be attacked +by Haydée’s guzla.” + +“Haydée—what an adorable name! Are there, then, really women who bear +the name of Haydée anywhere but in Byron’s poems?” + +“Certainly there are. Haydée is a very uncommon name in France, but is +common enough in Albania and Epirus; it is as if you said, for example, +Chastity, Modesty, Innocence,—it is a kind of baptismal name, as you +Parisians call it.” + +“Oh, that is charming,” said Albert, “how I should like to hear my +countrywomen called Mademoiselle Goodness, Mademoiselle Silence, +Mademoiselle Christian Charity! Only think, then, if Mademoiselle +Danglars, instead of being called Claire-Marie-Eugénie, had been named +Mademoiselle Chastity-Modesty-Innocence Danglars; what a fine effect +that would have produced on the announcement of her marriage!” + +“Hush,” said the count, “do not joke in so loud a tone; Haydée may hear +you, perhaps.” + +“And you think she would be angry?” + +“No, certainly not,” said the count with a haughty expression. + +“She is very amiable, then, is she not?” said Albert. + +“It is not to be called amiability, it is her duty; a slave does not +dictate to a master.” + +“Come; you are joking yourself now. Are there any more slaves to be had +who bear this beautiful name?” + +“Undoubtedly.” + +“Really, count, you do nothing, and have nothing like other people. The +slave of the Count of Monte Cristo! Why, it is a rank of itself in +France, and from the way in which you lavish money, it is a place that +must be worth a hundred thousand francs a year.” + +“A hundred thousand francs! The poor girl originally possessed much +more than that; she was born to treasures in comparison with which +those recorded in the _Thousand and One Nights_ would seem but +poverty.” + +“She must be a princess then.” + +“You are right; and she is one of the greatest in her country too.” + +“I thought so. But how did it happen that such a great princess became +a slave?” + +“How was it that Dionysius the Tyrant became a schoolmaster? The +fortune of war, my dear viscount,—the caprice of fortune; that is the +way in which these things are to be accounted for.” + +“And is her name a secret?” + +“As regards the generality of mankind it is; but not for you, my dear +viscount, who are one of my most intimate friends, and on whose silence +I feel I may rely, if I consider it necessary to enjoin it—may I not do +so?” + +“Certainly; on my word of honor.” + +“You know the history of the Pasha of Yanina, do you not?” + +“Of Ali Tepelini?13 Oh, yes; it was in his service that my father made +his fortune.” + +“True, I had forgotten that.” + +40062m + + + +“Well, what is Haydée to Ali Tepelini?” + +“Merely his daughter.” + +“What? the daughter of Ali Pasha?” + +“Of Ali Pasha and the beautiful Vasiliki.” + +“And your slave?” + +“_Ma foi_, yes.” + +“But how did she become so?” + +“Why, simply from the circumstance of my having bought her one day, as +I was passing through the market at Constantinople.” + +“Wonderful! Really, my dear count, you seem to throw a sort of magic +influence over all in which you are concerned; when I listen to you, +existence no longer seems reality, but a waking dream. Now, I am +perhaps going to make an imprudent and thoughtless request, but——” + +“Say on.” + +“But, since you go out with Haydée, and sometimes even take her to the +Opera——” + +“Well?” + +“I think I may venture to ask you this favor.” + +“You may venture to ask me anything.” + +“Well then, my dear count, present me to your princess.” + +“I will do so; but on two conditions.” + +“I accept them at once.” + +“The first is, that you will never tell anyone that I have granted the +interview.” + +“Very well,” said Albert, extending his hand; “I swear I will not.” + +“The second is, that you will not tell her that your father ever served +hers.” + +“I give you my oath that I will not.” + +“Enough, viscount; you will remember those two vows, will you not? But +I know you to be a man of honor.” + +The count again struck the gong. Ali reappeared. “Tell Haydée,” said +he, “that I will take coffee with her, and give her to understand that +I desire permission to present one of my friends to her.” + +Ali bowed and left the room. + +“Now, understand me,” said the count, “no direct questions, my dear +Morcerf; if you wish to know anything, tell me, and I will ask her.” + +“Agreed.” + +Ali reappeared for the third time, and drew back the tapestried hanging +which concealed the door, to signify to his master and Albert that they +were at liberty to pass on. + +“Let us go in,” said Monte Cristo. + +Albert passed his hand through his hair, and curled his moustache, +then, having satisfied himself as to his personal appearance, followed +the count into the room, the latter having previously resumed his hat +and gloves. Ali was stationed as a kind of advanced guard, and the door +was kept by the three French attendants, commanded by Myrtho. + +Haydée was awaiting her visitors in the first room of her apartments, +which was the drawing-room. Her large eyes were dilated with surprise +and expectation, for it was the first time that any man, except Monte +Cristo, had been accorded an entrance into her presence. She was +sitting on a sofa placed in an angle of the room, with her legs crossed +under her in the Eastern fashion, and seemed to have made for herself, +as it were, a kind of nest in the rich Indian silks which enveloped +her. Near her was the instrument on which she had just been playing; it +was elegantly fashioned, and worthy of its mistress. On perceiving +Monte Cristo, she arose and welcomed him with a smile peculiar to +herself, expressive at once of the most implicit obedience and also of +the deepest love. Monte Cristo advanced towards her and extended his +hand, which she as usual raised to her lips. + +40064m + + + +Albert had proceeded no farther than the door, where he remained rooted +to the spot, being completely fascinated by the sight of such +surpassing beauty, beheld as it was for the first time, and of which an +inhabitant of more northern climes could form no adequate idea. + +“Whom do you bring?” asked the young girl in Romaic, of Monte Cristo; +“is it a friend, a brother, a simple acquaintance, or an enemy.” + +“A friend,” said Monte Cristo in the same language. + +“What is his name?” + +“Count Albert; it is the same man whom I rescued from the hands of the +banditti at Rome.” + +“In what language would you like me to converse with him?” + +Monte Cristo turned to Albert. “Do you know modern Greek,” asked he. + +“Alas! no,” said Albert; “nor even ancient Greek, my dear count; never +had Homer or Plato a more unworthy scholar than myself.” + +“Then,” said Haydée, proving by her remark that she had quite +understood Monte Cristo’s question and Albert’s answer, “then I will +speak either in French or Italian, if my lord so wills it.” + +Monte Cristo reflected one instant. “You will speak in Italian,” said +he. + +Then, turning towards Albert,—“It is a pity you do not understand +either ancient or modern Greek, both of which Haydée speaks so +fluently; the poor child will be obliged to talk to you in Italian, +which will give you but a very false idea of her powers of +conversation.” + +The count made a sign to Haydée to address his visitor. “Sir,” she said +to Morcerf, “you are most welcome as the friend of my lord and master.” +This was said in excellent Tuscan, and with that soft Roman accent +which makes the language of Dante as sonorous as that of Homer. Then, +turning to Ali, she directed him to bring coffee and pipes, and when he +had left the room to execute the orders of his young mistress she +beckoned Albert to approach nearer to her. Monte Cristo and Morcerf +drew their seats towards a small table, on which were arranged music, +drawings, and vases of flowers. Ali then entered bringing coffee and +chibouques; as to M. Baptistin, this portion of the building was +interdicted to him. Albert refused the pipe which the Nubian offered +him. + +“Oh, take it—take it,” said the count; “Haydée is almost as civilized +as a Parisian; the smell of a Havana is disagreeable to her, but the +tobacco of the East is a most delicious perfume, you know.” + +Ali left the room. The cups of coffee were all prepared, with the +addition of sugar, which had been brought for Albert. Monte Cristo and +Haydée took the beverage in the original Arabian manner, that is to +say, without sugar. Haydée took the porcelain cup in her little slender +fingers and conveyed it to her mouth with all the innocent artlessness +of a child when eating or drinking something which it likes. At this +moment two women entered, bringing salvers filled with ices and +sherbet, which they placed on two small tables appropriated to that +purpose. + +“My dear host, and you, signora,” said Albert, in Italian, “excuse my +apparent stupidity. I am quite bewildered, and it is natural that it +should be so. Here I am in the heart of Paris; but a moment ago I heard +the rumbling of the omnibuses and the tinkling of the bells of the +lemonade-sellers, and now I feel as if I were suddenly transported to +the East; not such as I have seen it, but such as my dreams have +painted it. Oh, signora, if I could but speak Greek, your conversation, +added to the fairy-scene which surrounds me, would furnish an evening +of such delight as it would be impossible for me ever to forget.” + +“I speak sufficient Italian to enable me to converse with you, sir,” +said Haydée quietly; “and if you like what is Eastern, I will do my +best to secure the gratification of your tastes while you are here.” + +“On what subject shall I converse with her?” said Albert, in a low tone +to Monte Cristo. + +“Just what you please; you may speak of her country and of her youthful +reminiscences, or if you like it better you can talk of Rome, Naples, +or Florence.” + +“Oh,” said Albert, “it is of no use to be in the company of a Greek if +one converses just in the same style as with a Parisian; let me speak +to her of the East.” + +“Do so then, for of all themes which you could choose that will be the +most agreeable to her taste.” + +Albert turned towards Haydée. “At what age did you leave Greece, +signora?” asked he. + +“I left it when I was but five years old,” replied Haydée. + +“And have you any recollection of your country?” + +“When I shut my eyes and think, I seem to see it all again. The mind +can see as well as the body. The body forgets sometimes; but the mind +always remembers.” + +“And how far back into the past do your recollections extend?” + +“I could scarcely walk when my mother, who was called Vasiliki, which +means royal,” said the young girl, tossing her head proudly, “took me +by the hand, and after putting in our purse all the money we possessed, +we went out, both covered with veils, to solicit alms for the +prisoners, saying, ‘He who giveth to the poor lendeth to the Lord.’ +Then when our purse was full we returned to the palace, and without +saying a word to my father, we sent it to the convent, where it was +divided amongst the prisoners.” + +“And how old were you at that time?” + +“I was three years old,” said Haydée. + +“Then you remember everything that went on about you from the time when +you were three years old?” said Albert. + +“Everything.” + +“Count,” said Albert, in a low tone to Monte Cristo, “do allow the +signora to tell me something of her history. You prohibited my +mentioning my father’s name to her, but perhaps she will allude to him +of her own accord in the course of the recital, and you have no idea +how delighted I should be to hear our name pronounced by such beautiful +lips.” + +Monte Cristo turned to Haydée, and with an expression of countenance +which commanded her to pay the most implicit attention to his words, he +said in Greek, “Πατρὸς μὲν ἄτην μήζε τὸ ὄνομα προδότου καὶ προδοσίαν +εἰπὲ ἡμῖν,”—that is, “Tell us the fate of your father; but neither the +name of the traitor nor the treason.” Haydée sighed deeply, and a shade +of sadness clouded her beautiful brow. + +“What are you saying to her?” said Morcerf in an undertone. + +“I again reminded her that you were a friend, and that she need not +conceal anything from you.” + +“Then,” said Albert, “this pious pilgrimage in behalf of the prisoners +was your first remembrance; what is the next?” + +“Oh, then I remember as if it were but yesterday sitting under the +shade of some sycamore-trees, on the borders of a lake, in the waters +of which the trembling foliage was reflected as in a mirror. Under the +oldest and thickest of these trees, reclining on cushions, sat my +father; my mother was at his feet, and I, childlike, amused myself by +playing with his long white beard which descended to his girdle, or +with the diamond-hilt of the scimitar attached to his girdle. Then from +time to time there came to him an Albanian who said something to which +I paid no attention, but which he always answered in the same tone of +voice, either ‘Kill,’ or ‘Pardon.’” + +“It is very strange,” said Albert, “to hear such words proceed from the +mouth of anyone but an actress on the stage, and one needs constantly +to be saying to one’s self, ‘This is no fiction, it is all reality,’ in +order to believe it. And how does France appear in your eyes, +accustomed as they have been to gaze on such enchanted scenes?” + +“I think it is a fine country,” said Haydée, “but I see France as it +really is, because I look on it with the eyes of a woman; whereas my +own country, which I can only judge of from the impression produced on +my childish mind, always seems enveloped in a vague atmosphere, which +is luminous or otherwise, according as my remembrances of it are sad or +joyous.” + +“So young,” said Albert, forgetting at the moment the Count’s command +that he should ask no questions of the slave herself, “is it possible +that you can have known what suffering is except by name?” + +Haydée turned her eyes towards Monte Cristo, who, making at the same +time some imperceptible sign, murmured: + +“Εἰπέ—speak.” + +“Nothing is ever so firmly impressed on the mind as the memory of our +early childhood, and with the exception of the two scenes I have just +described to you, all my earliest reminiscences are fraught with +deepest sadness.” + +40068m + + + +“Speak, speak, signora,” said Albert, “I am listening with the most +intense delight and interest to all you say.” + +Haydée answered his remark with a melancholy smile. “You wish me, then, +to relate the history of my past sorrows?” said she. + +“I beg you to do so,” replied Albert. + +“Well, I was but four years old when one night I was suddenly awakened +by my mother. We were in the palace of Yanina; she snatched me from the +cushions on which I was sleeping, and on opening my eyes I saw hers +filled with tears. She took me away without speaking. When I saw her +weeping I began to cry too. ‘Hush, child!’ said she. At other times in +spite of maternal endearments or threats, I had with a child’s caprice +been accustomed to indulge my feelings of sorrow or anger by crying as +much as I felt inclined; but on this occasion there was an intonation +of such extreme terror in my mother’s voice when she enjoined me to +silence, that I ceased crying as soon as her command was given. She +bore me rapidly away. + +“I saw then that we were descending a large staircase; around us were +all my mother’s servants carrying trunks, bags, ornaments, jewels, +purses of gold, with which they were hurrying away in the greatest +distraction. + +“Behind the women came a guard of twenty men armed with long guns and +pistols, and dressed in the costume which the Greeks have assumed since +they have again become a nation. You may imagine there was something +startling and ominous,” said Haydée, shaking her head and turning pale +at the mere remembrance of the scene, “in this long file of slaves and +women only half-aroused from sleep, or at least so they appeared to me, +who was myself scarcely awake. Here and there on the walls of the +staircase, were reflected gigantic shadows, which trembled in the +flickering light of the pine-torches till they seemed to reach to the +vaulted roof above. + +“‘Quick!’ said a voice at the end of the gallery. This voice made +everyone bow before it, resembling in its effect the wind passing over +a field of wheat, by its superior strength forcing every ear to yield +obeisance. As for me, it made me tremble. This voice was that of my +father. He came last, clothed in his splendid robes and holding in his +hand the carbine which your emperor presented him. He was leaning on +the shoulder of his favorite Selim, and he drove us all before him, as +a shepherd would his straggling flock. My father,” said Haydée, raising +her head, “was that illustrious man known in Europe under the name of +Ali Tepelini, pasha of Yanina, and before whom Turkey trembled.” + +Albert, without knowing why, started on hearing these words pronounced +with such a haughty and dignified accent; it appeared to him as if +there was something supernaturally gloomy and terrible in the +expression which gleamed from the brilliant eyes of Haydée at this +moment; she appeared like a Pythoness evoking a spectre, as she +recalled to his mind the remembrance of the fearful death of this man, +to the news of which all Europe had listened with horror. + +“Soon,” said Haydée, “we halted on our march, and found ourselves on +the borders of a lake. My mother pressed me to her throbbing heart, and +at the distance of a few paces I saw my father, who was glancing +anxiously around. Four marble steps led down to the water’s edge, and +below them was a boat floating on the tide. + +40070m + + + +“From where we stood I could see in the middle of the lake a large +blank mass; it was the kiosk to which we were going. This kiosk +appeared to me to be at a considerable distance, perhaps on account of +the darkness of the night, which prevented any object from being more +than partially discerned. We stepped into the boat. I remember well +that the oars made no noise whatever in striking the water, and when I +leaned over to ascertain the cause I saw that they were muffled with +the sashes of our Palikares.14 Besides the rowers, the boat contained +only the women, my father, mother, Selim, and myself. The Palikares had +remained on the shore of the lake, ready to cover our retreat; they +were kneeling on the lowest of the marble steps, and in that manner +intended making a rampart of the three others, in case of pursuit. Our +bark flew before the wind. ‘Why does the boat go so fast?’ asked I of +my mother. + +“‘Silence, child! Hush, we are flying!’ I did not understand. Why +should my father fly?—he, the all-powerful—he, before whom others were +accustomed to fly—he, who had taken for his device, + +‘They hate me; then they fear me!’ + + +“It was, indeed, a flight which my father was trying to effect. I have +been told since that the garrison of the castle of Yanina, fatigued +with long service——” + +Here Haydée cast a significant glance at Monte Cristo, whose eyes had +been riveted on her countenance during the whole course of her +narrative. The young girl then continued, speaking slowly, like a +person who is either inventing or suppressing some feature of the +history which he is relating. + +“You were saying, signora,” said Albert, who was paying the most +implicit attention to the recital, “that the garrison of Yanina, +fatigued with long service——” + +“Had treated with the Seraskier15 Kourchid, who had been sent by the +sultan to gain possession of the person of my father; it was then that +Ali Tepelini—after having sent to the sultan a French officer in whom +he reposed great confidence—resolved to retire to the asylum which he +had long before prepared for himself, and which he called +_kataphygion_, or the refuge.” + +“And this officer,” asked Albert, “do you remember his name, signora?” + +Monte Cristo exchanged a rapid glance with the young girl, which was +quite unperceived by Albert. + +“No,” said she, “I do not remember it just at this moment; but if it +should occur to me presently, I will tell you.” + +Albert was on the point of pronouncing his father’s name, when Monte +Cristo gently held up his finger in token of reproach; the young man +recollected his promise, and was silent. + +“It was towards this kiosk that we were rowing. A ground floor, +ornamented with arabesques, bathing its terraces in the water, and +another floor, looking on the lake, was all which was visible to the +eye. But beneath the ground floor, stretching out into the island, was +a large subterranean cavern, to which my mother, myself, and the women +were conducted. In this place were together 60,000 pouches and 200 +barrels; the pouches contained 25,000,000 of money in gold, and the +barrels were filled with 30,000 pounds of gunpowder. + +“Near the barrels stood Selim, my father’s favorite, whom I mentioned +to you just now. He stood watch day and night with a lance provided +with a lighted slowmatch in his hand, and he had orders to blow up +everything—kiosk, guards, women, gold, and Ali Tepelini himself—at the +first signal given by my father. I remember well that the slaves, +convinced of the precarious tenure on which they held their lives, +passed whole days and nights in praying, crying, and groaning. As for +me, I can never forget the pale complexion and black eyes of the young +soldier, and whenever the angel of death summons me to another world, I +am quite sure I shall recognize Selim. I cannot tell you how long we +remained in this state; at that period I did not even know what time +meant. Sometimes, but very rarely, my father summoned me and my mother +to the terrace of the palace; these were hours of recreation for me, as +I never saw anything in the dismal cavern but the gloomy countenances +of the slaves and Selim’s fiery lance. My father was endeavoring to +pierce with his eager looks the remotest verge of the horizon, +examining attentively every black speck which appeared on the lake, +while my mother, reclining by his side, rested her head on his +shoulder, and I played at his feet, admiring everything I saw with that +unsophisticated innocence of childhood which throws a charm round +objects insignificant in themselves, but which in its eyes are invested +with the greatest importance. The heights of Pindus towered above us; +the castle of Yanina rose white and angular from the blue waters of the +lake, and the immense masses of black vegetation which, viewed in the +distance, gave the idea of lichens clinging to the rocks, were in +reality gigantic fir-trees and myrtles. + +“One morning my father sent for us; my mother had been crying all the +night, and was very wretched; we found the pasha calm, but paler than +usual. ‘Take courage, Vasiliki,’ said he; ‘today arrives the firman of +the master, and my fate will be decided. If my pardon be complete, we +shall return triumphant to Yanina; if the news be inauspicious, we must +fly this night.’—‘But supposing our enemy should not allow us to do +so?’ said my mother. ‘Oh, make yourself easy on that head,’ said Ali, +smiling; ‘Selim and his flaming lance will settle that matter. They +would be glad to see me dead, but they would not like themselves to die +with me.’ + +“My mother only answered by sighs to consolations which she knew did +not come from my father’s heart. She prepared the iced water which he +was in the habit of constantly drinking,—for since his sojourn at the +kiosk he had been parched by the most violent fever,—after which she +anointed his white beard with perfumed oil, and lighted his chibouque, +which he sometimes smoked for hours together, quietly watching the +wreaths of vapor that ascended in spiral clouds and gradually melted +away in the surrounding atmosphere. Presently he made such a sudden +movement that I was paralyzed with fear. Then, without taking his eyes +from the object which had first attracted his attention, he asked for +his telescope. My mother gave it him, and as she did so, looked whiter +than the marble against which she leaned. I saw my father’s hand +tremble. ‘A boat!—two!—three!’ murmured my, father;—‘four!’ He then +arose, seizing his arms and priming his pistols. ‘Vasiliki,’ said he to +my mother, trembling perceptibly, ‘the instant approaches which will +decide everything. In the space of half an hour we shall know the +emperor’s answer. Go into the cavern with Haydée.’—‘I will not quit +you,’ said Vasiliki; ‘if you die, my lord, I will die with you.’—‘Go to +Selim!’ cried my father. ‘Adieu, my lord,’ murmured my mother, +determining quietly to await the approach of death. ‘Take away +Vasiliki!’ said my father to his Palikares. + +“As for me, I had been forgotten in the general confusion; I ran toward +Ali Tepelini; he saw me hold out my arms to him, and he stooped down +and pressed my forehead with his lips. Oh, how distinctly I remember +that kiss!—it was the last he ever gave me, and I feel as if it were +still warm on my forehead. On descending, we saw through the +lattice-work several boats which were gradually becoming more distinct +to our view. At first they appeared like black specks, and now they +looked like birds skimming the surface of the waves. During this time, +in the kiosk at my father’s feet, were seated twenty Palikares, +concealed from view by an angle of the wall and watching with eager +eyes the arrival of the boats. They were armed with their long guns +inlaid with mother-of-pearl and silver, and cartridges in great numbers +were lying scattered on the floor. My father looked at his watch, and +paced up and down with a countenance expressive of the greatest +anguish. This was the scene which presented itself to my view as I +quitted my father after that last kiss. + +“My mother and I traversed the gloomy passage leading to the cavern. +Selim was still at his post, and smiled sadly on us as we entered. We +fetched our cushions from the other end of the cavern, and sat down by +Selim. In great dangers the devoted ones cling to each other; and, +young as I was, I quite understood that some imminent danger was +hanging over our heads.” + +Albert had often heard—not from his father, for he never spoke on the +subject, but from strangers—the description of the last moments of the +vizier of Yanina; he had read different accounts of his death, but the +story seemed to acquire fresh meaning from the voice and expression of +the young girl, and her sympathetic accent and the melancholy +expression of her countenance at once charmed and horrified him. + +As to Haydée, these terrible reminiscences seemed to have overpowered +her for a moment, for she ceased speaking, her head leaning on her hand +like a beautiful flower bowing beneath the violence of the storm; and +her eyes gazing on vacancy indicated that she was mentally +contemplating the green summit of the Pindus and the blue waters of the +lake of Yanina, which, like a magic mirror, seemed to reflect the +sombre picture which she sketched. Monte Cristo looked at her with an +indescribable expression of interest and pity. + +“Go on, my child,” said the count in the Romaic language. + +40074m + + + +Haydée looked up abruptly, as if the sonorous tones of Monte Cristo’s +voice had awakened her from a dream; and she resumed her narrative. + +“It was about four o’clock in the afternoon, and although the day was +brilliant out-of-doors, we were enveloped in the gloomy darkness of the +cavern. One single, solitary light was burning there, and it appeared +like a star set in a heaven of blackness; it was Selim’s flaming lance. +My mother was a Christian, and she prayed. Selim repeated from time to +time the sacred words: ‘God is great!’ However, my mother had still +some hope. As she was coming down, she thought she recognized the +French officer who had been sent to Constantinople, and in whom my +father placed so much confidence; for he knew that all the soldiers of +the French emperor were naturally noble and generous. She advanced some +steps towards the staircase, and listened. ‘They are approaching,’ said +she; ‘perhaps they bring us peace and liberty!’ + +“‘What do you fear, Vasiliki?’ said Selim, in a voice at once so gentle +and yet so proud. ‘If they do not bring us peace, we will give them +war; if they do not bring life, we will give them death.’ And he +renewed the flame of his lance with a gesture which made one think of +Dionysus of old Crete.16 But I, being only a little child, was +terrified by this undaunted courage, which appeared to me both +ferocious and senseless, and I recoiled with horror from the idea of +the frightful death amidst fire and flames which probably awaited us. + +“My mother experienced the same sensations, for I felt her tremble. +‘Mamma, mamma,’ said I, ‘are we really to be killed?’ And at the sound +of my voice the slaves redoubled their cries and prayers and +lamentations. ‘My child,’ said Vasiliki, ‘may God preserve you from +ever wishing for that death which today you so much dread!’ Then, +whispering to Selim, she asked what were her master’s orders. ‘If he +send me his poniard, it will signify that the emperor’s intentions are +not favorable, and I am to set fire to the powder; if, on the contrary, +he send me his ring, it will be a sign that the emperor pardons him, +and I am to extinguish the match and leave the magazine untouched.’—‘My +friend,’ said my mother, ‘when your master’s orders arrive, if it is +the poniard which he sends, instead of despatching us by that horrible +death which we both so much dread, you will mercifully kill us with +this same poniard, will you not?’—‘Yes, Vasiliki,’ replied Selim +tranquilly. + +“Suddenly we heard loud cries; and, listening, discerned that they were +cries of joy. The name of the French officer who had been sent to +Constantinople resounded on all sides amongst our Palikares; it was +evident that he brought the answer of the emperor, and that it was +favorable.” + +“And do you not remember the Frenchman’s name?” said Morcerf, quite +ready to aid the memory of the narrator. Monte Cristo made a sign to +him to be silent. + +“I do not recollect it,” said Haydée. + +“The noise increased; steps were heard approaching nearer and nearer; +they were descending the steps leading to the cavern. Selim made ready +his lance. Soon a figure appeared in the gray twilight at the entrance +of the cave, formed by the reflection of the few rays of daylight which +had found their way into this gloomy retreat. ‘Who are you?’ cried +Selim. ‘But whoever you may be, I charge you not to advance another +step.’—‘Long live the emperor!’ said the figure. ‘He grants a full +pardon to the Vizier Ali, and not only gives him his life, but restores +to him his fortune and his possessions.’ My mother uttered a cry of +joy, and clasped me to her bosom. ‘Stop,’ said Selim, seeing that she +was about to go out; ‘you see I have not yet received the +ring,’—‘True,’ said my mother. And she fell on her knees, at the same +time holding me up towards heaven, as if she desired, while praying to +God in my behalf, to raise me actually to his presence.” + +And for the second time Haydée stopped, overcome by such violent +emotion that the perspiration stood upon her pale brow, and her stifled +voice seemed hardly able to find utterance, so parched and dry were her +throat and lips. + +40076m + + + +Monte Cristo poured a little iced water into a glass, and presented it +to her, saying with a mildness in which was also a shade of +command,—“Courage.” + +Haydée dried her eyes, and continued: + +“By this time our eyes, habituated to the darkness, had recognized the +messenger of the pasha,—it was a friend. Selim had also recognized him, +but the brave young man only acknowledged one duty, which was to obey. +‘In whose name do you come?’ said he to him. ‘I come in the name of our +master, Ali Tepelini.’—‘If you come from Ali himself,’ said Selim, ‘you +know what you were charged to remit to me?’—‘Yes,’ said the messenger, +‘and I bring you his ring.’ At these words he raised his hand above his +head, to show the token; but it was too far off, and there was not +light enough to enable Selim, where he was standing, to distinguish and +recognize the object presented to his view. ‘I do not see what you have +in your hand,’ said Selim. ‘Approach then,’ said the messenger, ‘or I +will come nearer to you, if you prefer it.’—‘I will agree to neither +one nor the other,’ replied the young soldier; ‘place the object which +I desire to see in the ray of light which shines there, and retire +while I examine it.’—‘Be it so,’ said the envoy; and he retired, after +having first deposited the token agreed on in the place pointed out to +him by Selim. + +“Oh, how our hearts palpitated; for it did, indeed, seem to be a ring +which was placed there. But was it my father’s ring? that was the +question. Selim, still holding in his hand the lighted match, walked +towards the opening in the cavern, and, aided by the faint light which +streamed in through the mouth of the cave, picked up the token. + +“‘It is well,’ said he, kissing it; ‘it is my master’s ring!’ And +throwing the match on the ground, he trampled on it and extinguished +it. The messenger uttered a cry of joy and clapped his hands. At this +signal four soldiers of the Seraskier Kourchid suddenly appeared, and +Selim fell, pierced by five blows. Each man had stabbed him separately, +and, intoxicated by their crime, though still pale with fear, they +sought all over the cavern to discover if there was any fear of fire, +after which they amused themselves by rolling on the bags of gold. At +this moment my mother seized me in her arms, and hurrying noiselessly +along numerous turnings and windings known only to ourselves, she +arrived at a private staircase of the kiosk, where was a scene of +frightful tumult and confusion. The lower rooms were entirely filled +with Kourchid’s troops; that is to say, with our enemies. Just as my +mother was on the point of pushing open a small door, we heard the +voice of the pasha sounding in a loud and threatening tone. My mother +applied her eye to the crack between the boards; I luckily found a +small opening which afforded me a view of the apartment and what was +passing within. ‘What do you want?’ said my father to some people who +were holding a paper inscribed with characters of gold. ‘What we want,’ +replied one, ‘is to communicate to you the will of his highness. Do you +see this firman?’—‘I do,’ said my father. ‘Well, read it; he demands +your head.’ + +40078m + + + +“My father answered with a loud laugh, which was more frightful than +even threats would have been, and he had not ceased when two reports of +a pistol were heard; he had fired them himself, and had killed two men. +The Palikares, who were prostrated at my father’s feet, now sprang up +and fired, and the room was filled with fire and smoke. At the same +instant the firing began on the other side, and the balls penetrated +the boards all round us. Oh, how noble did the grand vizier my father +look at that moment, in the midst of the flying bullets, his scimitar +in his hand, and his face blackened with the powder of his enemies! and +how he terrified them, even then, and made them fly before him! ‘Selim, +Selim!’ cried he, ‘guardian of the fire, do your duty!’—‘Selim is +dead,’ replied a voice which seemed to come from the depths of the +earth, ‘and you are lost, Ali!’ At the same moment an explosion was +heard, and the flooring of the room in which my father was sitting was +suddenly torn up and shivered to atoms—the troops were firing from +underneath. Three or four Palikares fell with their bodies literally +ploughed with wounds. + +“My father howled aloud, plunged his fingers into the holes which the +balls had made, and tore up one of the planks entire. But immediately +through this opening twenty more shots were fired, and the flame, +rushing up like fire from the crater of a volcano, soon reached the +tapestry, which it quickly devoured. In the midst of all this frightful +tumult and these terrific cries, two reports, fearfully distinct, +followed by two shrieks more heartrending than all, froze me with +terror. These two shots had mortally wounded my father, and it was he +who had given utterance to these frightful cries. However, he remained +standing, clinging to a window. My mother tried to force the door, that +she might go and die with him, but it was fastened on the inside. All +around him were lying the Palikares, writhing in convulsive agonies, +while two or three who were only slightly wounded were trying to escape +by springing from the windows. At this crisis the whole flooring +suddenly gave way, my father fell on one knee, and at the same moment +twenty hands were thrust forth, armed with sabres, pistols, and +poniards—twenty blows were instantaneously directed against one man, +and my father disappeared in a whirlwind of fire and smoke kindled by +these demons, and which seemed like hell itself opening beneath his +feet. I felt myself fall to the ground, my mother had fainted.” + +Haydée’s arms fell by her side, and she uttered a deep groan, at the +same time looking towards the count as if to ask if he were satisfied +with her obedience to his commands. + +Monte Cristo arose and approached her, took her hand, and said to her +in Romaic: + +“Calm yourself, my dear child, and take courage in remembering that +there is a God who will punish traitors.” + +“It is a frightful story, count,” said Albert, terrified at the +paleness of Haydée’s countenance, “and I reproach myself now for having +been so cruel and thoughtless in my request.” + +“Oh, it is nothing,” said Monte Cristo. Then, patting the young girl on +the head, he continued, “Haydée is very courageous, and she sometimes +even finds consolation in the recital of her misfortunes.” + +“Because, my lord,” said Haydée eagerly, “my miseries recall to me the +remembrance of your goodness.” + +Albert looked at her with curiosity, for she had not yet related what +he most desired to know,—how she had become the slave of the count. +Haydée saw at a glance the same expression pervading the countenances +of her two auditors; she continued: + +“When my mother recovered her senses we were before the seraskier. +‘Kill,’ said she, ‘but spare the honor of the widow of Ali.’—‘It is not +to me to whom you must address yourself,’ said Kourchid. + +“‘To whom, then?’—‘To your new master.’ + +“‘Who and where is he?’—‘He is here.’ + +“And Kourchid pointed out one who had more than any contributed to the +death of my father,” said Haydée, in a tone of chastened anger. + +“Then,” said Albert, “you became the property of this man?” + +40080m + + + +“No,” replied Haydée, “he did not dare to keep us, so we were sold to +some slave-merchants who were going to Constantinople. We traversed +Greece, and arrived half dead at the imperial gates. They were +surrounded by a crowd of people, who opened a way for us to pass, when +suddenly my mother, having looked closely at an object which was +attracting their attention, uttered a piercing cry and fell to the +ground, pointing as she did so to a head which was placed over the +gates, and beneath which were inscribed these words: + +‘_This is the head of Ali Tepelini, Pasha of Yanina._’ + +“I cried bitterly, and tried to raise my mother from the earth, but she +was dead! I was taken to the slave-market, and was purchased by a rich +Armenian. He caused me to be instructed, gave me masters, and when I +was thirteen years of age he sold me to the Sultan Mahmoud.” + +“Of whom I bought her,” said Monte Cristo, “as I told you, Albert, with +the emerald which formed a match to the one I had made into a box for +the purpose of holding my hashish pills.” + +“Oh, you are good, you are great, my lord!” said Haydée, kissing the +count’s hand, “and I am very fortunate in belonging to such a master!” + +Albert remained quite bewildered with all that he had seen and heard. + +“Come, finish your cup of coffee,” said Monte Cristo; “the history is +ended.” + + + + Chapter 78. We hear From Yanina + +If Valentine could have seen the trembling step and agitated +countenance of Franz when he quitted the chamber of M. Noirtier, even +she would have been constrained to pity him. Villefort had only just +given utterance to a few incoherent sentences, and then retired to his +study, where he received about two hours afterwards the following +letter: + +“After all the disclosures which were made this morning, M. Noirtier de +Villefort must see the utter impossibility of any alliance being formed +between his family and that of M. Franz d’Épinay. M. d’Épinay must say +that he is shocked and astonished that M. de Villefort, who appeared to +be aware of all the circumstances detailed this morning, should not +have anticipated him in this announcement.” + + +No one who had seen the magistrate at this moment, so thoroughly +unnerved by the recent inauspicious combination of circumstances, would +have supposed for an instant that he had anticipated the annoyance; +although it certainly never had occurred to him that his father would +carry candor, or rather rudeness, so far as to relate such a history. +And in justice to Villefort, it must be understood that M. Noirtier, +who never cared for the opinion of his son on any subject, had always +omitted to explain the affair to Villefort, so that he had all his life +entertained the belief that General de Quesnel, or the Baron d’Épinay, +as he was alternately styled, according as the speaker wished to +identify him by his own family name, or by the title which had been +conferred on him, fell the victim of assassination, and not that he was +killed fairly in a duel. This harsh letter, coming as it did from a man +generally so polite and respectful, struck a mortal blow at the pride +of Villefort. + +Hardly had he read the letter, when his wife entered. The sudden +departure of Franz, after being summoned by M. Noirtier, had so much +astonished everyone, that the position of Madame de Villefort, left +alone with the notary and the witnesses, became every moment more +embarrassing. Determined to bear it no longer, she arose and left the +room; saying she would go and make some inquiries into the cause of his +sudden disappearance. + +M. de Villefort’s communications on the subject were very limited and +concise; he told her, in fact, that an explanation had taken place +between M. Noirtier, M. d’Épinay, and himself, and that the marriage of +Valentine and Franz would consequently be broken off. This was an +awkward and unpleasant thing to have to report to those who were +waiting. She therefore contented herself with saying that M. Noirtier +having at the commencement of the discussion been attacked by a sort of +apoplectic fit, the affair would necessarily be deferred for some days +longer. This news, false as it was following so singularly in the train +of the two similar misfortunes which had so recently occurred, +evidently astonished the auditors, and they retired without a word. + +During this time Valentine, at once terrified and happy, after having +embraced and thanked the feeble old man for thus breaking with a single +blow the chain which she had been accustomed to consider as +irrefragable, asked leave to retire to her own room, in order to +recover her composure. Noirtier looked the permission which she +solicited. But instead of going to her own room, Valentine, having once +gained her liberty, entered the gallery, and, opening a small door at +the end of it, found herself at once in the garden. + +In the midst of all the strange events which had crowded one on the +other, an indefinable sentiment of dread had taken possession of +Valentine’s mind. She expected every moment that she should see Morrel +appear, pale and trembling, to forbid the signing of the contract, like +the Laird of Ravenswood in _The Bride of Lammermoor_. + +It was high time for her to make her appearance at the gate, for +Maximilian had long awaited her coming. He had half guessed what was +going on when he saw Franz quit the cemetery with M. de Villefort. He +followed M. d’Épinay, saw him enter, afterwards go out, and then +re-enter with Albert and Château-Renaud. He had no longer any doubts as +to the nature of the conference; he therefore quickly went to the gate +in the clover-patch, prepared to hear the result of the proceedings, +and very certain that Valentine would hasten to him the first moment +she should be set at liberty. He was not mistaken; peering through the +crevices of the wooden partition, he soon discovered the young girl, +who cast aside all her usual precautions and walked at once to the +barrier. The first glance which Maximilian directed towards her +entirely reassured him, and the first words she spoke made his heart +bound with delight. + +“We are saved!” said Valentine. + +“Saved?” repeated Morrel, not being able to conceive such intense +happiness; “by whom?” + +“By my grandfather. Oh, Morrel, pray love him for all his goodness to +us!” + +Morrel swore to love him with all his soul; and at that moment he could +safely promise to do so, for he felt as though it were not enough to +love him merely as a friend or even as a father, he worshiped him as a +god. + +“But tell me, Valentine, how has it all been effected? What strange +means has he used to compass this blessed end?” + +Valentine was on the point of relating all that had passed, but she +suddenly remembered that in doing so she must reveal a terrible secret +which concerned others as well as her grandfather, and she said: + +“At some future time I will tell you all about it.” + +“But when will that be?” + +“When I am your wife.” + +The conversation had now turned upon a topic so pleasing to Morrel, +that he was ready to accede to anything that Valentine thought fit to +propose, and he likewise felt that a piece of intelligence such as he +just heard ought to be more than sufficient to content him for one day. +However, he would not leave without the promise of seeing Valentine +again the next night. Valentine promised all that Morrel required of +her, and certainly it was less difficult now for her to believe that +she should marry Maximilian than it was an hour ago to assure herself +that she should not marry Franz. + +During the time occupied by the interview we have just detailed, Madame +de Villefort had gone to visit M. Noirtier. The old man looked at her +with that stern and forbidding expression with which he was accustomed +to receive her. + +“Sir,” said she, “it is superfluous for me to tell you that Valentine’s +marriage is broken off, since it was here that the affair was +concluded.” + +Noirtier’s countenance remained immovable. + +“But one thing I can tell you, of which I do not think you are aware; +that is, that I have always been opposed to this marriage, and that the +contract was entered into entirely without my consent or approbation.” + +Noirtier regarded his daughter-in-law with the look of a man desiring +an explanation. + +“Now that this marriage, which I know you so much disliked, is done +away with, I come to you on an errand which neither M. de Villefort nor +Valentine could consistently undertake.” + +Noirtier’s eyes demanded the nature of her mission. + +“I come to entreat you, sir,” continued Madame de Villefort, “as the +only one who has the right of doing so, inasmuch as I am the only one +who will receive no personal benefit from the transaction,—I come to +entreat you to restore, not your love, for that she has always +possessed, but to restore your fortune to your granddaughter.” + +There was a doubtful expression in Noirtier’s eyes; he was evidently +trying to discover the motive of this proceeding, and he could not +succeed in doing so. + +“May I hope, sir,” said Madame de Villefort, “that your intentions +accord with my request?” + +Noirtier made a sign that they did. + +“In that case, sir,” rejoined Madame de Villefort, “I will leave you +overwhelmed with gratitude and happiness at your prompt acquiescence to +my wishes.” She then bowed to M. Noirtier and retired. + +The next day M. Noirtier sent for the notary; the first will was torn +up and a second made, in which he left the whole of his fortune to +Valentine, on condition that she should never be separated from him. It +was then generally reported that Mademoiselle de Villefort, the heiress +of the marquis and marchioness of Saint-Méran, had regained the good +graces of her grandfather, and that she would ultimately be in +possession of an income of 300,000 livres. + +While all the proceedings relative to the dissolution of the +marriage-contract were being carried on at the house of M. de +Villefort, Monte Cristo had paid his visit to the Count of Morcerf, +who, in order to lose no time in responding to M. Danglars’ wishes, and +at the same time to pay all due deference to his position in society, +donned his uniform of lieutenant-general, which he ornamented with all +his crosses, and thus attired, ordered his finest horses and drove to +the Rue de la Chaussée d’Antin. + +Danglars was balancing his monthly accounts, and it was perhaps not the +most favorable moment for finding him in his best humor. At the first +sight of his old friend, Danglars assumed his majestic air, and settled +himself in his easy-chair. + +Morcerf, usually so stiff and formal, accosted the banker in an affable +and smiling manner, and, feeling sure that the overture he was about to +make would be well received, he did not consider it necessary to adopt +any manœuvres in order to gain his end, but went at once straight to +the point. + +40086m + + + +“Well, baron,” said he, “here I am at last; some time has elapsed since +our plans were formed, and they are not yet executed.” + +Morcerf paused at these words, quietly waiting till the cloud should +have dispersed which had gathered on the brow of Danglars, and which he +attributed to his silence; but, on the contrary, to his great surprise, +it grew darker and darker. + +“To what do you allude, monsieur?” said Danglars; as if he were trying +in vain to guess at the possible meaning of the general’s words. + +“Ah,” said Morcerf, “I see you are a stickler for forms, my dear sir, +and you would remind me that the ceremonial rites should not be +omitted. _Ma foi_, I beg your pardon, but as I have but one son, and it +is the first time I have ever thought of marrying him, I am still +serving my apprenticeship, you know; come, I will reform.” + +And Morcerf with a forced smile arose, and, making a low bow to M. +Danglars, said: + +“Baron, I have the honor of asking of you the hand of Mademoiselle +Eugénie Danglars for my son, the Vicomte Albert de Morcerf.” + +But Danglars, instead of receiving this address in the favorable manner +which Morcerf had expected, knit his brow, and without inviting the +count, who was still standing, to take a seat, he said: + +“Monsieur, it will be necessary to reflect before I give you an +answer.” + +“To reflect?” said Morcerf, more and more astonished; “have you not had +enough time for reflection during the eight years which have elapsed +since this marriage was first discussed between us?” + +“Count,” said the banker, “things are constantly occurring in the world +to induce us to lay aside our most established opinions, or at all +events to cause us to remodel them according to the change of +circumstances, which may have placed affairs in a totally different +light to that in which we at first viewed them.” + +“I do not understand you, baron,” said Morcerf. + +“What I mean to say is this, sir,—that during the last fortnight +unforeseen circumstances have occurred——” + +“Excuse me,” said Morcerf, “but is it a play we are acting?” + +“A play?” + +“Yes, for it is like one; pray let us come more to the point, and +endeavor thoroughly to understand each other.” + +“That is quite my desire.” + +“You have seen M. de Monte Cristo have you not?” + +“I see him very often,” said Danglars, drawing himself up; “he is a +particular friend of mine.” + +“Well, in one of your late conversations with him, you said that I +appeared to be forgetful and irresolute concerning this marriage, did +you not?” + +“I did say so.” + +“Well, here I am, proving at once that I am really neither the one nor +the other, by entreating you to keep your promise on that score.” + +Danglars did not answer. + +“Have you so soon changed your mind,” added Morcerf, “or have you only +provoked my request that you may have the pleasure of seeing me +humbled?” + +Danglars, seeing that if he continued the conversation in the same tone +in which he had begun it, the whole thing might turn out to his own +disadvantage, turned to Morcerf, and said: + +“Count, you must doubtless be surprised at my reserve, and I assure you +it costs me much to act in such a manner towards you; but, believe me +when I say that imperative necessity has imposed the painful task upon +me.” + +“These are all so many empty words, my dear sir,” said Morcerf: “they +might satisfy a new acquaintance, but the Comte de Morcerf does not +rank in that list; and when a man like him comes to another, recalls to +him his plighted word, and this man fails to redeem the pledge, he has +at least a right to exact from him a good reason for so doing.” + +Danglars was a coward, but did not wish to appear so; he was piqued at +the tone which Morcerf had just assumed. + +“I am not without a good reason for my conduct,” replied the banker. + +“What do you mean to say?” + +“I mean to say that I have a good reason, but that it is difficult to +explain.” + +“You must be aware, at all events, that it is impossible for me to +understand motives before they are explained to me; but one thing at +least is clear, which is, that you decline allying yourself with my +family.” + +“No, sir,” said Danglars; “I merely suspend my decision, that is all.” + +“And do you really flatter yourself that I shall yield to all your +caprices, and quietly and humbly await the time of again being received +into your good graces?” + +“Then, count, if you will not wait, we must look upon these projects as +if they had never been entertained.” + +The count bit his lips till the blood almost started, to prevent the +ebullition of anger which his proud and irritable temper scarcely +allowed him to restrain; understanding, however, that in the present +state of things the laugh would decidedly be against him, he turned +from the door, towards which he had been directing his steps, and again +confronted the banker. A cloud settled on his brow, evincing decided +anxiety and uneasiness, instead of the expression of offended pride +which had lately reigned there. + +“My dear Danglars,” said Morcerf, “we have been acquainted for many +years, and consequently we ought to make some allowance for each +other’s failings. You owe me an explanation, and really it is but fair +that I should know what circumstance has occurred to deprive my son of +your favor.” + +“It is from no personal ill-feeling towards the viscount, that is all I +can say, sir,” replied Danglars, who resumed his insolent manner as +soon as he perceived that Morcerf was a little softened and calmed +down. + +“And towards whom do you bear this personal ill-feeling, then?” said +Morcerf, turning pale with anger. The expression of the count’s face +had not remained unperceived by the banker; he fixed on him a look of +greater assurance than before, and said: + +“You may, perhaps, be better satisfied that I should not go farther +into particulars.” + +A tremor of suppressed rage shook the whole frame of the count, and +making a violent effort over himself, he said: “I have a right to +insist on your giving me an explanation. Is it Madame de Morcerf who +has displeased you? Is it my fortune which you find insufficient? Is it +because my opinions differ from yours?” + +“Nothing of the kind, sir,” replied Danglars: “if such had been the +case, I only should have been to blame, inasmuch as I was aware of all +these things when I made the engagement. No, do not seek any longer to +discover the reason. I really am quite ashamed to have been the cause +of your undergoing such severe self-examination; let us drop the +subject, and adopt the middle course of delay, which implies neither a +rupture nor an engagement. _Ma foi_, there is no hurry. My daughter is +only seventeen years old, and your son twenty-one. While we wait, time +will be progressing, events will succeed each other; things which in +the evening look dark and obscure, appear but too clearly in the light +of morning, and sometimes the utterance of one word, or the lapse of a +single day, will reveal the most cruel calumnies.” + +“Calumnies, did you say, sir?” cried Morcerf, turning livid with rage. +“Does anyone dare to slander me?” + +“Monsieur, I told you that I considered it best to avoid all +explanation.” + +“Then, sir, I am patiently to submit to your refusal?” + +“Yes, sir, although I assure you the refusal is as painful for me to +give as it is for you to receive, for I had reckoned on the honor of +your alliance, and the breaking off of a marriage contract always +injures the lady more than the gentleman.” + +“Enough, sir,” said Morcerf, “we will speak no more on the subject.” + +And clutching his gloves in anger, he left the apartment. Danglars +observed that during the whole conversation Morcerf had never once +dared to ask if it was on his own account that Danglars recalled his +word. + +That evening he had a long conference with several friends; and M. +Cavalcanti, who had remained in the drawing-room with the ladies, was +the last to leave the banker’s house. + +The next morning, as soon as he awoke, Danglars asked for the +newspapers; they were brought to him; he laid aside three or four, and +at last fixed on _l’Impartial_, the paper of which Beauchamp was the +chief editor. He hastily tore off the cover, opened the journal with +nervous precipitation, passed contemptuously over the Paris jottings, +and arriving at the miscellaneous intelligence, stopped with a +malicious smile, at a paragraph headed + +_We hear from Yanina._ + + +“Very good,” observed Danglars, after having read the paragraph; “here +is a little article on Colonel Fernand, which, if I am not mistaken, +would render the explanation which the Comte de Morcerf required of me +perfectly unnecessary.” + +At the same moment, that is, at nine o’clock in the morning, Albert de +Morcerf, dressed in a black coat buttoned up to his chin, might have +been seen walking with a quick and agitated step in the direction of +Monte Cristo’s house in the Champs-Élysées. When he presented himself +at the gate the porter informed him that the Count had gone out about +half an hour previously. + +“Did he take Baptistin with him?” + +“No, my lord.” + +“Call him, then; I wish to speak to him.” + +The concierge went to seek the valet de chambre, and returned with him +in an instant. + +“My good friend,” said Albert, “I beg pardon for my intrusion, but I +was anxious to know from your own mouth if your master was really out +or not.” + +“He is really out, sir,” replied Baptistin. + +“Out, even to me?” + +“I know how happy my master always is to receive the vicomte,” said +Baptistin; “and I should therefore never think of including him in any +general order.” + +“You are right; and now I wish to see him on an affair of great +importance. Do you think it will be long before he comes in?” + +“No, I think not, for he ordered his breakfast at ten o’clock.” + +“Well, I will go and take a turn in the Champs-Élysées, and at ten +o’clock I will return here; meanwhile, if the count should come in, +will you beg him not to go out again without seeing me?” + +“You may depend on my doing so, sir,” said Baptistin. + +Albert left the cab in which he had come at the count’s door, intending +to take a turn on foot. As he was passing the Allée des Veuves, he +thought he saw the count’s horses standing at Gosset’s +shooting-gallery; he approached, and soon recognized the coachman. + +“Is the count shooting in the gallery?” said Morcerf. + +“Yes, sir,” replied the coachman. While he was speaking, Albert had +heard the report of two or three pistol-shots. He entered, and on his +way met the waiter. + +“Excuse me, my lord,” said the lad; “but will you have the kindness to +wait a moment?” + +“What for, Philip?” asked Albert, who, being a constant visitor there, +did not understand this opposition to his entrance. + +“Because the person who is now in the gallery prefers being alone, and +never practices in the presence of anyone.” + +“Not even before you, Philip? Then who loads his pistol?” + +“His servant.” + +“A Nubian?” + +“A negro.” + +“It is he, then.” + +“Do you know this gentleman?” + +“Yes, and I am come to look for him; he is a friend of mine.” + +“Oh, that is quite another thing, then. I will go immediately and +inform him of your arrival.” + +And Philip, urged by his own curiosity, entered the gallery; a second +afterwards, Monte Cristo appeared on the threshold. + +“I ask your pardon, my dear count,” said Albert, “for following you +here, and I must first tell you that it was not the fault of your +servants that I did so; I alone am to blame for the indiscretion. I +went to your house, and they told me you were out, but that they +expected you home at ten o’clock to breakfast. I was walking about in +order to pass away the time till ten o’clock, when I caught sight of +your carriage and horses.” + +“What you have just said induces me to hope that you intend +breakfasting with me.” + +40092m + + + +“No, thank you, I am thinking of other things besides breakfast just +now; perhaps we may take that meal at a later hour and in worse +company.” + +“What on earth are you talking of?” + +“I am to fight today.” + +“For what?” + +“For the sake of fighting!” + +“Yes, I understand that, but what is the quarrel? People fight for all +sorts of reasons, you know.” + +“I fight in the cause of honor.” + +“Ah, that is something serious.” + +“So serious, that I come to beg you to render me a service.” + +“What is it?” + +“To be my second.” + +“That is a serious matter, and we will not discuss it here; let us +speak of nothing till we get home. Ali, bring me some water.” + +The count turned up his sleeves, and passed into the little vestibule +where the gentlemen were accustomed to wash their hands after shooting. + +“Come in, my lord,” said Philip in a low tone, “and I will show you +something droll.” Morcerf entered, and in place of the usual target, he +saw some playing-cards fixed against the wall. At a distance Albert +thought it was a complete suit, for he counted from the ace to the ten. + +“Ah, ha,” said Albert, “I see you were preparing for a game of cards.” + +“No,” said the count, “I was making a suit.” + +“How?” said Albert. + +“Those are really aces and twos which you see, but my shots have turned +them into threes, fives, sevens, eights, nines, and tens.” + +Albert approached. In fact, the bullets had actually pierced the cards +in the exact places which the painted signs would otherwise have +occupied, the lines and distances being as regularly kept as if they +had been ruled with pencil. In going up to the target Morcerf picked up +two or three swallows that had been rash enough to come within the +range of the count’s pistol. + +“_Diable!_” said Morcerf. + +“What would you have, my dear viscount?” said Monte Cristo, wiping his +hands on the towel which Ali had brought him; “I must occupy my leisure +moments in some way or other. But come, I am waiting for you.” + +Both men entered Monte Cristo’s carriage, which in the course of a few +minutes deposited them safely at No. 30. Monte Cristo took Albert into +his study, and pointing to a seat, placed another for himself. “Now let +us talk the matter over quietly,” said the count. + +“You see I am perfectly composed,” said Albert. + +“With whom are you going to fight?” + +“With Beauchamp.” + +“One of your friends!” + +“Of course; it is always with friends that one fights.” + +“I suppose you have some cause of quarrel?” + +“I have.” + +40094m + + + +“What has he done to you?” + +“There appeared in his journal last night—but wait, and read for +yourself.” And Albert handed over the paper to the count, who read as +follows: + +“A correspondent at Yanina informs us of a fact of which until now we +had remained in ignorance. The castle which formed the protection of +the town was given up to the Turks by a French officer named Fernand, +in whom the grand vizier, Ali Tepelini, had reposed the greatest +confidence.” + + +“Well,” said Monte Cristo, “what do you see in that to annoy you?” + +“What do I see in it?” + +“Yes; what does it signify to you if the castle of Yanina was given up +by a French officer?” + +“It signifies to my father, the Count of Morcerf, whose Christian name +is Fernand!” + +“Did your father serve under Ali Pasha?” + +“Yes; that is to say, he fought for the independence of the Greeks, and +hence arises the calumny.” + +“Oh, my dear viscount, do talk reason!” + +“I do not desire to do otherwise.” + +“Now, just tell me who the devil should know in France that the officer +Fernand and the Count of Morcerf are one and the same person? and who +cares now about Yanina, which was taken as long ago as the year 1822 or +1823?” + +“That just shows the meanness of this slander. They have allowed all +this time to elapse, and then all of a sudden rake up events which have +been forgotten to furnish materials for scandal, in order to tarnish +the lustre of our high position. I inherit my father’s name, and I do +not choose that the shadow of disgrace should darken it. I am going to +Beauchamp, in whose journal this paragraph appears, and I shall insist +on his retracting the assertion before two witnesses.” + +“Beauchamp will never retract.” + +“Then we must fight.” + +“No you will not, for he will tell you, what is very true, that perhaps +there were fifty officers in the Greek army bearing the same name.” + +“We will fight, nevertheless. I will efface that blot on my father’s +character. My father, who was such a brave soldier, whose career was so +brilliant——” + +“Oh, well, he will add, ‘We are warranted in believing that this +Fernand is not the illustrious Count of Morcerf, who also bears the +same Christian name.’” + +“I am determined not to be content with anything short of an entire +retractation.” + +“And you intend to make him do it in the presence of two witnesses, do +you?” + +“Yes.” + +“You do wrong.” + +“Which means, I suppose, that you refuse the service which I asked of +you?” + +“You know my theory regarding duels; I told you my opinion on that +subject, if you remember, when we were at Rome.” + +“Nevertheless, my dear count, I found you this morning engaged in an +occupation but little consistent with the notions you profess to +entertain.” + +“Because, my dear fellow, you understand one must never be eccentric. +If one’s lot is cast among fools, it is necessary to study folly. I +shall perhaps find myself one day called out by some harebrained scamp, +who has no more real cause of quarrel with me than you have with +Beauchamp; he may take me to task for some foolish trifle or other, he +will bring his witnesses, or will insult me in some public place, and I +am expected to kill him for all that.” + +“You admit that you would fight, then? Well, if so, why do you object +to my doing so?” + +“I do not say that you ought not to fight, I only say that a duel is a +serious thing, and ought not to be undertaken without due reflection.” + +“Did he reflect before he insulted my father?” + +“If he spoke hastily, and owns that he did so, you ought to be +satisfied.” + +“Ah, my dear count, you are far too indulgent.” + +“And you are far too exacting. Supposing, for instance, and do not be +angry at what I am going to say——” + +“Well.” + +“Supposing the assertion to be really true?” + +“A son ought not to submit to such a stain on his father’s honor.” + +“_Ma foi!_ we live in times when there is much to which we must +submit.” + +“That is precisely the fault of the age.” + +“And do you undertake to reform it?” + +“Yes, as far as I am personally concerned.” + +“Well, you are indeed exacting, my dear fellow!” + +“Yes, I own it.” + +“Are you quite impervious to good advice?” + +“Not when it comes from a friend.” + +“And do you account me that title?” + +“Certainly I do.” + +“Well, then, before going to Beauchamp with your witnesses, seek +further information on the subject.” + +“From whom?” + +“From Haydée.” + +“Why, what can be the use of mixing a woman up in the affair?—what can +she do in it?” + +“She can declare to you, for example, that your father had no hand +whatever in the defeat and death of the vizier; or if by chance he had, +indeed, the misfortune to——” + +“I have told you, my dear count, that I would not for one moment admit +of such a proposition.” + +“You reject this means of information, then?” + +“I do—most decidedly.” + +“Then let me offer one more word of advice.” + +“Do so, then, but let it be the last.” + +“You do not wish to hear it, perhaps?” + +“On the contrary, I request it.” + +“Do not take any witnesses with you when you go to Beauchamp—visit him +alone.” + +“That would be contrary to all custom.” + +“Your case is not an ordinary one.” + +“And what is your reason for advising me to go alone?” + +“Because then the affair will rest between you and Beauchamp.” + +“Explain yourself.” + +“I will do so. If Beauchamp be disposed to retract, you ought at least +to give him the opportunity of doing it of his own free will,—the +satisfaction to you will be the same. If, on the contrary, he refuses +to do so, it will then be quite time enough to admit two strangers into +your secret.” + +“They will not be strangers, they will be friends.” + +“Ah, but the friends of today are the enemies of tomorrow; Beauchamp, +for instance.” + +“So you recommend——” + +“I recommend you to be prudent.” + +“Then you advise me to go alone to Beauchamp?” + +“I do, and I will tell you why. When you wish to obtain some concession +from a man’s self-love, you must avoid even the appearance of wishing +to wound it.” + +“I believe you are right.” + +“I am glad of it.” + +“Then I will go alone.” + +“Go; but you would do better still by not going at all.” + +“That is impossible.” + +“Do so, then; it will be a wiser plan than the first which you +proposed.” + +“But if, in spite of all my precautions, I am at last obliged to fight, +will you not be my second?” + +“My dear viscount,” said Monte Cristo gravely, “you must have seen +before today that at all times and in all places I have been at your +disposal, but the service which you have just demanded of me is one +which it is out of my power to render you.” + +“Why?” + +“Perhaps you may know at some future period, and in the mean time I +request you to excuse my declining to put you in possession of my +reasons.” + +“Well, I will have Franz and Château-Renaud; they will be the very men +for it.” + +“Do so, then.” + +“But if I do fight, you will surely not object to giving me a lesson or +two in shooting and fencing?” + +“That, too, is impossible.” + +“What a singular being you are!—you will not interfere in anything.” + +“You are right—that is the principle on which I wish to act.” + +“We will say no more about it, then. Good-bye, count.” + +Morcerf took his hat, and left the room. He found his carriage at the +door, and doing his utmost to restrain his anger he went at once to +find Beauchamp, who was in his office. It was a gloomy, dusty-looking +apartment, such as journalists’ offices have always been from time +immemorial. The servant announced M. Albert de Morcerf. Beauchamp +repeated the name to himself, as though he could scarcely believe that +he had heard aright, and then gave orders for him to be admitted. +Albert entered. + +Beauchamp uttered an exclamation of surprise on seeing his friend leap +over and trample under foot all the newspapers which were strewed about +the room. + +“This way, this way, my dear Albert!” said he, holding out his hand to +the young man. “Are you out of your senses, or do you come peaceably to +take breakfast with me? Try and find a seat—there is one by that +geranium, which is the only thing in the room to remind me that there +are other leaves in the world besides leaves of paper.” + +“Beauchamp,” said Albert, “it is of your journal that I come to speak.” + +“Indeed? What do you wish to say about it?” + +“I desire that a statement contained in it should be rectified.” + +“To what do you refer? But pray sit down.” + +“Thank you,” said Albert, with a cold and formal bow. + +“Will you now have the kindness to explain the nature of the statement +which has displeased you?” + +“An announcement has been made which implicates the honor of a member +of my family.” + +“What is it?” said Beauchamp, much surprised; “surely you must be +mistaken.” + +“The story sent you from Yanina.” + +“Yanina?” + +“Yes; really you appear to be totally ignorant of the cause which +brings me here.” + +“Such is really the case, I assure you, upon my honor! Baptiste, give +me yesterday’s paper,” cried Beauchamp. + +“Here, I have brought mine with me,” replied Albert. + +Beauchamp took the paper, and read the article to which Albert pointed +in an undertone. + +“You see it is a serious annoyance,” said Morcerf, when Beauchamp had +finished the perusal of the paragraph. + +“Is the officer referred to a relation of yours, then?” demanded the +journalist. + +“Yes,” said Albert, blushing. + +“Well, what do you wish me to do for you?” said Beauchamp mildly. + +“My dear Beauchamp, I wish you to contradict this statement.” Beauchamp +looked at Albert with a benevolent expression. + +“Come,” said he, “this matter will want a good deal of talking over; a +retractation is always a serious thing, you know. Sit down, and I will +read it again.” + +Albert resumed his seat, and Beauchamp read, with more attention than +at first, the lines denounced by his friend. + +“Well,” said Albert in a determined tone, “you see that your paper has +insulted a member of my family, and I insist on a retractation being +made.” + +“You insist?” + +“Yes, I insist.” + +“Permit me to remind you that you are not in the Chamber, my dear +viscount.” + +“Nor do I wish to be there,” replied the young man, rising. “I repeat +that I am determined to have the announcement of yesterday +contradicted. You have known me long enough,” continued Albert, biting +his lips convulsively, for he saw that Beauchamp’s anger was beginning +to rise,—“you have been my friend, and therefore sufficiently intimate +with me to be aware that I am likely to maintain my resolution on this +point.” + +“If I have been your friend, Morcerf, your present manner of speaking +would almost lead me to forget that I ever bore that title. But wait a +moment, do not let us get angry, or at least not yet. You are irritated +and vexed—tell me how this Fernand is related to you?” + +“He is merely my father,” said Albert—“M. Fernand Mondego, Count of +Morcerf, an old soldier who has fought in twenty battles and whose +honorable scars they would denounce as badges of disgrace.” + +“Is it your father?” said Beauchamp; “that is quite another thing. Then +I can well understand your indignation, my dear Albert. I will look at +it again;” and he read the paragraph for the third time, laying a +stress on each word as he proceeded. “But the paper nowhere identifies +this Fernand with your father.” + +40100m + + + +“No; but the connection will be seen by others, and therefore I will +have the article contradicted.” + +At the words _I will_, Beauchamp steadily raised his eyes to Albert’s +countenance, and then as gradually lowering them, he remained +thoughtful for a few moments. + +“You will retract this assertion, will you not, Beauchamp?” said Albert +with increased though stifled anger. + +“Yes,” replied Beauchamp. + +“Immediately?” said Albert. + +“When I am convinced that the statement is false.” + +“What?” + +“The thing is worth looking into, and I will take pains to investigate +the matter thoroughly.” + +“But what is there to investigate, sir?” said Albert, enraged beyond +measure at Beauchamp’s last remark. “If you do not believe that it is +my father, say so immediately; and if, on the contrary, you believe it +to be him, state your reasons for doing so.” + +Beauchamp looked at Albert with the smile which was so peculiar to him, +and which in its numerous modifications served to express every varied +emotion of his mind. + +“Sir,” replied he, “if you came to me with the idea of demanding +satisfaction, you should have gone at once to the point, and not have +entertained me with the idle conversation to which I have been +patiently listening for the last half hour. Am I to put this +construction on your visit?” + +“Yes, if you will not consent to retract that infamous calumny.” + +“Wait a moment—no threats, if you please, M. Fernand Mondego, Vicomte +de Morcerf; I never allow them from my enemies, and therefore shall not +put up with them from my friends. You insist on my contradicting the +article relating to General Fernand, an article with which, I assure +you on my word of honor, I had nothing whatever to do?” + +“Yes, I insist on it,” said Albert, whose mind was beginning to get +bewildered with the excitement of his feelings. + +“And if I refuse to retract, you wish to fight, do you?” said Beauchamp +in a calm tone. + +“Yes,” replied Albert, raising his voice. + +“Well,” said Beauchamp, “here is my answer, my dear sir. The article +was not inserted by me—I was not even aware of it; but you have, by the +step you have taken, called my attention to the paragraph in question, +and it will remain until it shall be either contradicted or confirmed +by someone who has a right to do so.” + +“Sir,” said Albert, rising, “I will do myself the honor of sending my +seconds to you, and you will be kind enough to arrange with them the +place of meeting and the weapons.” + +“Certainly, my dear sir.” + +“And this evening, if you please, or tomorrow at the latest, we will +meet.” + +“No, no, I will be on the ground at the proper time; but in my opinion +(and I have a right to dictate the preliminaries, as it is I who have +received the provocation)—in my opinion the time ought not to be yet. I +know you to be well skilled in the management of the sword, while I am +only moderately so; I know, too, that you are a good marksman—there we +are about equal. I know that a duel between us two would be a serious +affair, because you are brave, and I am brave also. I do not therefore +wish either to kill you, or to be killed myself without a cause. Now, I +am going to put a question to you, and one very much to the purpose +too. Do you insist on this retractation so far as to kill me if I do +not make it, although I have repeated more than once, and affirmed on +my honor, that I was ignorant of the thing with which you charge me, +and although I still declare that it is impossible for anyone but you +to recognize the Count of Morcerf under the name of Fernand?” + +“I maintain my original resolution.” + +“Very well, my dear sir; then I consent to cut throats with you. But I +require three weeks’ preparation; at the end of that time I shall come +and say to you, ‘The assertion is false, and I retract it,’ or ‘The +assertion is true,’ when I shall immediately draw the sword from its +sheath, or the pistols from the case, whichever you please.” + +“Three weeks!” cried Albert; “they will pass as slowly as three +centuries when I am all the time suffering dishonor.” + +“Had you continued to remain on amicable terms with me, I should have +said, ‘Patience, my friend;’ but you have constituted yourself my +enemy, therefore I say, ‘What does that signify to me, sir?’” + +“Well, let it be three weeks then,” said Morcerf; “but remember, at the +expiration of that time no delay or subterfuge will justify you in——” + +“M. Albert de Morcerf,” said Beauchamp, rising in his turn, “I cannot +throw you out of window for three weeks—that is to say, for twenty-four +days to come—nor have you any right to split my skull open till that +time has elapsed. Today is the 29th of August; the 21st of September +will, therefore, be the conclusion of the term agreed on, and till that +time arrives—and it is the advice of a gentleman which I am about to +give you—till then we will refrain from growling and barking like two +dogs chained within sight of each other.” + +When he had concluded his speech, Beauchamp bowed coldly to Albert, +turned his back upon him, and went to the press-room. Albert vented his +anger on a pile of newspapers, which he sent flying all over the office +by switching them violently with his stick; after which ebullition he +departed—not, however, without walking several times to the door of the +press-room, as if he had half a mind to enter. + +40104m + + + +While Albert was lashing the front of his carriage in the same manner +that he had the newspapers which were the innocent agents of his +discomfiture, as he was crossing the barrier he perceived Morrel, who +was walking with a quick step and a bright eye. He was passing the +Chinese Baths, and appeared to have come from the direction of the +Porte Saint-Martin, and to be going towards the Madeleine. + +“Ah,” said Morcerf, “there goes a happy man!” And it so happened Albert +was not mistaken in his opinion. + + + + Chapter 79. The Lemonade + +Morrel was, in fact, very happy. M. Noirtier had just sent for him, and +he was in such haste to know the reason of his doing so that he had not +stopped to take a cab, placing infinitely more dependence on his own +two legs than on the four legs of a cab-horse. He had therefore set off +at a furious rate from the Rue Meslay, and was hastening with rapid +strides in the direction of the Faubourg Saint-Honoré. + +Morrel advanced with a firm, manly tread, and poor Barrois followed him +as he best might. Morrel was only thirty-one, Barrois was sixty years +of age; Morrel was deeply in love, and Barrois was dying with heat and +exertion. These two men, thus opposed in age and interests, resembled +two parts of a triangle, presenting the extremes of separation, yet +nevertheless possessing their point of union. This point of union was +Noirtier, and it was he who had just sent for Morrel, with the request +that the latter would lose no time in coming to him—a command which +Morrel obeyed to the letter, to the great discomfiture of Barrois. On +arriving at the house, Morrel was not even out of breath, for love +lends wings to our desires; but Barrois, who had long forgotten what it +was to love, was sorely fatigued by the expedition he had been +constrained to use. + +The old servant introduced Morrel by a private entrance, closed the +door of the study, and soon the rustling of a dress announced the +arrival of Valentine. She looked marvellously beautiful in her deep +mourning dress, and Morrel experienced such intense delight in gazing +upon her that he felt as if he could almost have dispensed with the +conversation of her grandfather. + +But the easy-chair of the old man was heard rolling along the floor, +and he soon made his appearance in the room. Noirtier acknowledged by a +look of extreme kindness and benevolence the thanks which Morrel +lavished on him for his timely intervention on behalf of Valentine and +himself—an intervention which had saved them from despair. Morrel then +cast on the invalid an interrogative look as to the new favor which he +designed to bestow on him. Valentine was sitting at a little distance +from them, timidly awaiting the moment when she should be obliged to +speak. Noirtier fixed his eyes on her. + +“Am I to say what you told me?” asked Valentine. Noirtier made a sign +that she was to do so. + +“Monsieur Morrel,” said Valentine to the young man, who was regarding +her with the most intense interest, “my grandfather, M. Noirtier, had a +thousand things to say, which he told me three days ago; and now, he +has sent for you, that I may repeat them to you. I will repeat them, +then; and since he has chosen me as his interpreter, I will be faithful +to the trust, and will not alter a word of his intentions.” + +“Oh, I am listening with the greatest impatience,” replied the young +man; “speak, I beg of you.” + +Valentine cast down her eyes; this was a good omen for Morrel, for he +knew that nothing but happiness could have the power of thus overcoming +Valentine. + +“My grandfather intends leaving this house,” said she, “and Barrois is +looking out for suitable apartments for him in another.” + +“But you, Mademoiselle de Villefort,—you, who are necessary to M. +Noirtier’s happiness——” + +“I?” interrupted Valentine; “I shall not leave my grandfather,—that is +an understood thing between us. My apartment will be close to his. Now, +M. de Villefort must either give his consent to this plan or his +refusal; in the first case, I shall leave directly, and in the second, +I shall wait till I am of age, which will be in about ten months. Then +I shall be free, I shall have an independent fortune, and”— + +“And what?” demanded Morrel. + +“And with my grandfather’s consent I shall fulfil the promise which I +have made you.” + +Valentine pronounced these last few words in such a low tone, that +nothing but Morrel’s intense interest in what she was saying could have +enabled him to hear them. + +“Have I not explained your wishes, grandpapa?” said Valentine, +addressing Noirtier. + +“Yes,” looked the old man. + +“Once under my grandfather’s roof, M. Morrel can visit me in the +presence of my good and worthy protector, if we still feel that the +union we contemplated will be likely to insure our future comfort and +happiness; in that case I shall expect M. Morrel to come and claim me +at my own hands. But, alas, I have heard it said that hearts inflamed +by obstacles to their desire grew cold in time of security; I trust we +shall never find it so in our experience!” + +“Oh,” cried Morrel, almost tempted to throw himself on his knees before +Noirtier and Valentine, and to adore them as two superior beings, “what +have I ever done in my life to merit such unbounded happiness?” + +“Until that time,” continued the young girl in a calm and +self-possessed tone of voice, “we will conform to circumstances, and be +guided by the wishes of our friends, so long as those wishes do not +tend finally to separate us; in a word, and I repeat it, because it +expresses all I wish to convey,—we will wait.” + +“And I swear to make all the sacrifices which this word imposes, sir,” +said Morrel, “not only with resignation, but with cheerfulness.” + +“Therefore,” continued Valentine, looking playfully at Maximilian, “no +more inconsiderate actions—no more rash projects; for you surely would +not wish to compromise one who from this day regards herself as +destined, honorably and happily, to bear your name?” + +Morrel looked obedience to her commands. Noirtier regarded the lovers +with a look of ineffable tenderness, while Barrois, who had remained in +the room in the character of a man privileged to know everything that +passed, smiled on the youthful couple as he wiped the perspiration from +his bald forehead. + +“How hot you look, my good Barrois,” said Valentine. + +“Ah, I have been running very fast, mademoiselle, but I must do M. +Morrel the justice to say that he ran still faster.” + +Noirtier directed their attention to a waiter, on which was placed a +decanter containing lemonade and a glass. The decanter was nearly full, +with the exception of a little, which had been already drunk by M. +Noirtier. + +“Come, Barrois,” said the young girl, “take some of this lemonade; I +see you are coveting a good draught of it.” + +“The fact is, mademoiselle,” said Barrois, “I am dying with thirst, and +since you are so kind as to offer it me, I cannot say I should at all +object to drinking your health in a glass of it.” + +“Take some, then, and come back immediately.” + +Barrois took away the waiter, and hardly was he outside the door, which +in his haste he forgot to shut, than they saw him throw back his head +and empty to the very dregs the glass which Valentine had filled. +Valentine and Morrel were exchanging their adieux in the presence of +Noirtier when a ring was heard at the door-bell. It was the signal of a +visit. Valentine looked at her watch. + +“It is past noon,” said she, “and today is Saturday; I dare say it is +the doctor, grandpapa.” + +Noirtier looked his conviction that she was right in her supposition. + +“He will come in here, and M. Morrel had better go,—do you not think +so, grandpapa?” + +“Yes,” signed the old man. + +“Barrois,” cried Valentine, “Barrois!” + +“I am coming, mademoiselle,” replied he. + +“Barrois will open the door for you,” said Valentine, addressing +Morrel. “And now remember one thing, Monsieur Officer, that my +grandfather commands you not to take any rash or ill-advised step which +would be likely to compromise our happiness.” + +40108m + + + +“I promised him to wait,” replied Morrel; “and I will wait.” + +At this moment Barrois entered. “Who rang?” asked Valentine. + +“Doctor d’Avrigny,” said Barrois, staggering as if he would fall. + +“What is the matter, Barrois?” said Valentine. The old man did not +answer, but looked at his master with wild staring eyes, while with his +cramped hand he grasped a piece of furniture to enable him to stand +upright. + +“He is going to fall!” cried Morrel. + +The rigors which had attacked Barrois gradually increased, the features +of the face became quite altered, and the convulsive movement of the +muscles appeared to indicate the approach of a most serious nervous +disorder. Noirtier, seeing Barrois in this pitiable condition, showed +by his looks all the various emotions of sorrow and sympathy which can +animate the heart of man. Barrois made some steps towards his master. + +“Ah, sir,” said he, “tell me what is the matter with me. I am +suffering—I cannot see. A thousand fiery darts are piercing my brain. +Ah, don’t touch me, pray don’t.” + +By this time his haggard eyes had the appearance of being ready to +start from their sockets; his head fell back, and the lower extremities +of the body began to stiffen. Valentine uttered a cry of horror; Morrel +took her in his arms, as if to defend her from some unknown danger. + +“M. d’Avrigny, M. d’Avrigny,” cried she, in a stifled voice. “Help, +help!” + +Barrois turned round and with a great effort stumbled a few steps, then +fell at the feet of Noirtier, and resting his hand on the knee of the +invalid, exclaimed: + +“My master, my good master!” + +At this moment M. de Villefort, attracted by the noise, appeared on the +threshold. Morrel relaxed his hold of Valentine, and retreating to a +distant corner of the room remained half hidden behind a curtain. Pale +as if he had been gazing on a serpent, he fixed his terrified eye on +the agonized sufferer. + +Noirtier, burning with impatience and terror, was in despair at his +utter inability to help his old domestic, whom he regarded more in the +light of a friend than a servant. One might by the fearful swelling of +the veins of his forehead and the contraction of the muscles round the +eye, trace the terrible conflict which was going on between the living +energetic mind and the inanimate and helpless body. + +Barrois, his features convulsed, his eyes suffused with blood, and his +head thrown back, was lying at full length, beating the floor with his +hands, while his legs had become so stiff, that they looked as if they +would break rather than bend. A slight appearance of foam was visible +around the mouth, and he breathed painfully, and with extreme +difficulty. + +Villefort seemed stupefied with astonishment, and remained gazing +intently on the scene before him without uttering a word. He had not +seen Morrel. After a moment of dumb contemplation, during which his +face became pale and his hair seemed to stand on end, he sprang towards +the door, crying out: + +“Doctor, doctor! come instantly, pray come!” + +“Madame, madame!” cried Valentine, calling her step-mother, and running +upstairs to meet her; “come quick, quick!—and bring your bottle of +smelling-salts with you.” + +“What is the matter?” said Madame de Villefort in a harsh and +constrained tone. + +“Oh! come! come!” + +“But where is the doctor?” exclaimed Villefort; “where is he?” + +Madame de Villefort now deliberately descended the staircase. In one +hand she held her handkerchief, with which she appeared to be wiping +her face, and in the other a bottle of English smelling-salts. Her +first look on entering the room was at Noirtier, whose face, +independent of the emotion which such a scene could not fail of +producing, proclaimed him to be in possession of his usual health; her +second glance was at the dying man. She turned pale, and her eye passed +quickly from the servant and rested on the master. + +“In the name of heaven, madame,” said Villefort, “where is the doctor? +He was with you just now. You see this is a fit of apoplexy, and he +might be saved if he could but be bled!” + +“Has he eaten anything lately?” asked Madame de Villefort, eluding her +husband’s question. + +“Madame,” replied Valentine, “he has not even breakfasted. He has been +running very fast on an errand with which my grandfather charged him, +and when he returned, took nothing but a glass of lemonade.” + +“Ah,” said Madame de Villefort, “why did he not take wine? Lemonade was +a very bad thing for him.” + +“Grandpapa’s bottle of lemonade was standing just by his side; poor +Barrois was very thirsty, and was thankful to drink anything he could +find.” + +Madame de Villefort started. Noirtier looked at her with a glance of +the most profound scrutiny. + +“He has such a short neck,” said she. + +“Madame,” said Villefort, “I ask where is M. d’Avrigny? In God’s name +answer me!” + +“He is with Edward, who is not quite well,” replied Madame de +Villefort, no longer being able to avoid answering. + +Villefort rushed upstairs to fetch him. + +“Take this,” said Madame de Villefort, giving her smelling-bottle to +Valentine. “They will, no doubt, bleed him; therefore I will retire, +for I cannot endure the sight of blood;” and she followed her husband +upstairs. Morrel now emerged from his hiding-place, where he had +remained quite unperceived, so great had been the general confusion. + +“Go away as quick as you can, Maximilian,” said Valentine, “and stay +till I send for you. Go.” + +Morrel looked towards Noirtier for permission to retire. The old man, +who had preserved all his usual coolness, made a sign to him to do so. +The young man pressed Valentine’s hand to his lips, and then left the +house by a back staircase. + +At the same moment that he quitted the room, Villefort and the doctor +entered by an opposite door. Barrois was now showing signs of returning +consciousness. The crisis seemed past, a low moaning was heard, and he +raised himself on one knee. D’Avrigny and Villefort laid him on a +couch. + +“What do you prescribe, doctor?” demanded Villefort. + +“Give me some water and ether. You have some in the house, have you +not?” + +“Yes.” + +“Send for some oil of turpentine and tartar emetic.” + +Villefort immediately despatched a messenger. “And now let everyone +retire.” + +“Must I go too?” asked Valentine timidly. + +“Yes, mademoiselle, you especially,” replied the doctor abruptly. + +Valentine looked at M. d’Avrigny with astonishment, kissed her +grandfather on the forehead, and left the room. The doctor closed the +door after her with a gloomy air. + +“Look, look, doctor,” said Villefort, “he is quite coming round again; +I really do not think, after all, it is anything of consequence.” + +M. d’Avrigny answered by a melancholy smile. + +“How do you feel, Barrois?” asked he. + +“A little better, sir.” + +“Will you drink some of this ether and water?” + +“I will try; but don’t touch me.” + +“Why not?” + +“Because I feel that if you were only to touch me with the tip of your +finger the fit would return.” + +“Drink.” + +Barrois took the glass, and, raising it to his purple lips, took about +half of the liquid offered him. + +“Where do you suffer?” asked the doctor. + +“Everywhere. I feel cramps over my whole body.” + +“Do you find any dazzling sensation before the eyes?” + +“Yes.” + +“Any noise in the ears?” + +“Frightful.” + +40112m + + + +“When did you first feel that?” + +“Just now.” + +“Suddenly?” + +“Yes, like a clap of thunder.” + +“Did you feel nothing of it yesterday or the day before?” + +“Nothing.” + +“No drowsiness?” + +“None.” + +“What have you eaten today?” + +“I have eaten nothing; I only drank a glass of my master’s +lemonade—that’s all.” And Barrois turned towards Noirtier, who, +immovably fixed in his armchair, was contemplating this terrible scene +without allowing a word or a movement to escape him. + +“Where is this lemonade?” asked the doctor eagerly. + +“Downstairs in the decanter.” + +“Whereabouts downstairs?” + +“In the kitchen.” + +“Shall I go and fetch it, doctor?” inquired Villefort. + +“No, stay here and try to make Barrois drink the rest of this glass of +ether and water. I will go myself and fetch the lemonade.” + +D’Avrigny bounded towards the door, flew down the back staircase, and +almost knocked down Madame de Villefort, in his haste, who was herself +going down to the kitchen. She cried out, but d’Avrigny paid no +attention to her; possessed with but one idea, he cleared the last four +steps with a bound, and rushed into the kitchen, where he saw the +decanter about three parts empty still standing on the waiter, where it +had been left. He darted upon it as an eagle would seize upon its prey. +Panting with loss of breath, he returned to the room he had just left. +Madame de Villefort was slowly ascending the steps which led to her +room. + +“Is this the decanter you spoke of?” asked d’Avrigny. + +“Yes, doctor.” + +“Is this the same lemonade of which you partook?” + +“I believe so.” + +“What did it taste like?” + +“It had a bitter taste.” + +The doctor poured some drops of the lemonade into the palm of his hand, +put his lips to it, and after having rinsed his mouth as a man does +when he is tasting wine, he spat the liquor into the fireplace. + +“It is no doubt the same,” said he. “Did you drink some too, M. +Noirtier?” + +“Yes.” + +“And did you also discover a bitter taste?” + +“Yes.” + +“Oh, doctor,” cried Barrois, “the fit is coming on again. Oh, do +something for me.” The doctor flew to his patient. + +“That emetic, Villefort—see if it is coming.” + +Villefort sprang into the passage, exclaiming, “The emetic! the +emetic!—is it come yet?” No one answered. The most profound terror +reigned throughout the house. + +“If I had anything by means of which I could inflate the lungs,” said +d’Avrigny, looking around him, “perhaps I might prevent suffocation. +But there is nothing which would do!—nothing!” + +40114m + + + +“Oh, sir,” cried Barrois, “are you going to let me die without help? +Oh, I am dying! Oh, save me!” + +“A pen, a pen!” said the doctor. There was one lying on the table; he +endeavored to introduce it into the mouth of the patient, who, in the +midst of his convulsions, was making vain attempts to vomit; but the +jaws were so clenched that the pen could not pass them. This second +attack was much more violent than the first, and he had slipped from +the couch to the ground, where he was writhing in agony. The doctor +left him in this paroxysm, knowing that he could do nothing to +alleviate it, and, going up to Noirtier, said abruptly: + +“How do you find yourself?—well?” + +“Yes.” + +“Have you any weight on the chest; or does your stomach feel light and +comfortable—eh?” + +“Yes.” + +“Then you feel pretty much as you generally do after you have had the +dose which I am accustomed to give you every Sunday?” + +“Yes.” + +“Did Barrois make your lemonade?” + +“Yes.” + +“Was it you who asked him to drink some of it?” + +“No.” + +“Was it M. de Villefort?” + +“No.” + +“Madame?” + +“No.” + +“It was your granddaughter, then, was it not?” + +“Yes.” + +A groan from Barrois, accompanied by a yawn which seemed to crack the +very jawbones, attracted the attention of M. d’Avrigny; he left M. +Noirtier, and returned to the sick man. + +“Barrois,” said the doctor, “can you speak?” Barrois muttered a few +unintelligible words. “Try and make an effort to do so, my good man.” +said d’Avrigny. Barrois reopened his bloodshot eyes. + +“Who made the lemonade?” + +“I did.” + +“Did you bring it to your master directly it was made?” + +“No.” + +“You left it somewhere, then, in the meantime?” + +“Yes; I left it in the pantry, because I was called away.” + +“Who brought it into this room, then?” + +“Mademoiselle Valentine.” D’Avrigny struck his forehead with his hand. + +“Gracious heaven,” exclaimed he. + +“Doctor, doctor!” cried Barrois, who felt another fit coming. + +“Will they never bring that emetic?” asked the doctor. + +“Here is a glass with one already prepared,” said Villefort, entering +the room. + +“Who prepared it?” + +“The chemist who came here with me.” + +40116m + + + +“Drink it,” said the doctor to Barrois. + +“Impossible, doctor; it is too late; my throat is closing up. I am +choking! Oh, my heart! Ah, my head!—Oh, what agony!—Shall I suffer like +this long?” + +“No, no, friend,” replied the doctor, “you will soon cease to suffer.” + +“Ah, I understand you,” said the unhappy man. “My God, have mercy upon +me!” and, uttering a fearful cry, Barrois fell back as if he had been +struck by lightning. D’Avrigny put his hand to his heart, and placed a +glass before his lips. + +“Well?” said Villefort. + +“Go to the kitchen and get me some syrup of violets.” + +Villefort went immediately. + +“Do not be alarmed, M. Noirtier,” said d’Avrigny; “I am going to take +my patient into the next room to bleed him; this sort of attack is very +frightful to witness.” + +And taking Barrois under the arms, he dragged him into an adjoining +room; but almost immediately he returned to fetch the lemonade. +Noirtier closed his right eye. + +“You want Valentine, do you not? I will tell them to send her to you.” + +Villefort returned, and d’Avrigny met him in the passage. + +“Well, how is he now?” asked he. + +“Come in here,” said d’Avrigny, and he took him into the chamber where +the sick man lay. + +“Is he still in a fit?” said the procureur. + +“He is dead.” + +Villefort drew back a few steps, and, clasping his hands, exclaimed, +with real amazement and sympathy, “Dead?—and so soon too!” + +“Yes, it is very soon,” said the doctor, looking at the corpse before +him; “but that ought not to astonish you; Monsieur and Madame de +Saint-Méran died as soon. People die very suddenly in your house, M. de +Villefort.” + +“What?” cried the magistrate, with an accent of horror and +consternation, “are you still harping on that terrible idea?” + +“Still, sir; and I shall always do so,” replied d’Avrigny, “for it has +never for one instant ceased to retain possession of my mind; and that +you may be quite sure I am not mistaken this time, listen well to what +I am going to say, M. de Villefort.” + +The magistrate trembled convulsively. + +“There is a poison which destroys life almost without leaving any +perceptible traces. I know it well; I have studied it in all its forms +and in the effects which it produces. I recognized the presence of this +poison in the case of poor Barrois as well as in that of Madame de +Saint-Méran. There is a way of detecting its presence. It restores the +blue color of litmus-paper reddened by an acid, and it turns syrup of +violets green. We have no litmus-paper, but, see, here they come with +the syrup of violets.” + +The doctor was right; steps were heard in the passage. M. d’Avrigny +opened the door, and took from the hands of the chambermaid a cup which +contained two or three spoonfuls of the syrup, he then carefully closed +the door. + +“Look,” said he to the procureur, whose heart beat so loudly that it +might almost be heard, “here is in this cup some syrup of violets, and +this decanter contains the remainder of the lemonade of which M. +Noirtier and Barrois partook. If the lemonade be pure and inoffensive, +the syrup will retain its color; if, on the contrary, the lemonade be +drugged with poison, the syrup will become green. Look closely!” + +The doctor then slowly poured some drops of the lemonade from the +decanter into the cup, and in an instant a light cloudy sediment began +to form at the bottom of the cup; this sediment first took a blue +shade, then from the color of sapphire it passed to that of opal, and +from opal to emerald. Arrived at this last hue, it changed no more. The +result of the experiment left no doubt whatever on the mind. + +“The unfortunate Barrois has been poisoned,” said d’Avrigny, “and I +will maintain this assertion before God and man.” + +Villefort said nothing, but he clasped his hands, opened his haggard +eyes, and, overcome with his emotion, sank into a chair. + + + + Chapter 80. The Accusation + +M. d’Avrigny soon restored the magistrate to consciousness, who had +looked like a second corpse in that chamber of death. + +“Oh, death is in my house!” cried Villefort. + +“Say, rather, crime!” replied the doctor. + +“M. d’Avrigny,” cried Villefort, “I cannot tell you all I feel at this +moment,—terror, grief, madness.” + +“Yes,” said M. d’Avrigny, with an imposing calmness, “but I think it is +now time to act. I think it is time to stop this torrent of mortality. +I can no longer bear to be in possession of these secrets without the +hope of seeing the victims and society generally revenged.” + +Villefort cast a gloomy look around him. “In my house,” murmured he, +“in my house!” + +“Come, magistrate,” said M. d’Avrigny, “show yourself a man; as an +interpreter of the law, do honor to your profession by sacrificing your +selfish interests to it.” + +“You make me shudder, doctor. Do you talk of a sacrifice?” + +“I do.” + +“Do you then suspect anyone?” + +“I suspect no one; death raps at your door—it enters—it goes, not +blindfolded, but circumspectly, from room to room. Well, I follow its +course, I track its passage; I adopt the wisdom of the ancients, and +feel my way, for my friendship for your family and my respect for you +are as a twofold bandage over my eyes; well——” + +“Oh, speak, speak, doctor; I shall have courage.” + +“Well, sir, you have in your establishment, or in your family, perhaps, +one of the frightful monstrosities of which each century produces only +one. Locusta and Agrippina, living at the same time, were an exception, +and proved the determination of Providence to effect the entire ruin of +the Roman empire, sullied by so many crimes. Brunhilda and Fredegund +were the results of the painful struggle of civilization in its +infancy, when man was learning to control mind, were it even by an +emissary from the realms of darkness. All these women had been, or +were, beautiful. The same flower of innocence had flourished, or was +still flourishing, on their brow, that is seen on the brow of the +culprit in your house.” + +40120m + + + +Villefort shrieked, clasped his hands, and looked at the doctor with a +supplicating air. But the latter went on without pity: + +“‘Seek whom the crime will profit,’ says an axiom of jurisprudence.” + +“Doctor,” cried Villefort, “alas, doctor, how often has man’s justice +been deceived by those fatal words. I know not why, but I feel that +this crime——” + +“You acknowledge, then, the existence of the crime?” + +“Yes, I see too plainly that it does exist. But it seems that it is +intended to affect me personally. I fear an attack myself, after all +these disasters.” + +“Oh, man!” murmured d’Avrigny, “the most selfish of all animals, the +most personal of all creatures, who believes the earth turns, the sun +shines, and death strikes for him alone,—an ant cursing God from the +top of a blade of grass! And have those who have lost their lives lost +nothing?—M. de Saint-Méran, Madame de Saint-Méran, M. Noirtier——” + +“How? M. Noirtier?” + +“Yes; think you it was the poor servant’s life was coveted? No, no; +like Shakespeare’s Polonius, he died for another. It was Noirtier the +lemonade was intended for—it is Noirtier, logically speaking, who drank +it. The other drank it only by accident, and, although Barrois is dead, +it was Noirtier whose death was wished for.” + +“But why did it not kill my father?” + +“I told you one evening in the garden after Madame de Saint-Méran’s +death—because his system is accustomed to that very poison, and the +dose was trifling to him, which would be fatal to another; because no +one knows, not even the assassin, that, for the last twelve months, I +have given M. Noirtier brucine for his paralytic affection, while the +assassin is not ignorant, for he has proved that brucine is a violent +poison.” + +“Oh, have pity—have pity!” murmured Villefort, wringing his hands. + +“Follow the culprit’s steps; he first kills M. de Saint-Méran——” + +“Oh, doctor!” + +“I would swear to it; what I heard of his symptoms agrees too well with +what I have seen in the other cases.” Villefort ceased to contend; he +only groaned. “He first kills M. de Saint-Méran,” repeated the doctor, +“then Madame de Saint-Méran,—a double fortune to inherit.” Villefort +wiped the perspiration from his forehead. “Listen attentively.” + +“Alas,” stammered Villefort, “I do not lose a single word.” + +“M. Noirtier,” resumed M. d’Avrigny in the same pitiless tone,—“M. +Noirtier had once made a will against you—against your family—in favor +of the poor, in fact; M. Noirtier is spared, because nothing is +expected from him. But he has no sooner destroyed his first will and +made a second, than, for fear he should make a third, he is struck +down. The will was made the day before yesterday, I believe; you see +there has been no time lost.” + +“Oh, mercy, M. d’Avrigny!” + +“No mercy, sir! The physician has a sacred mission on earth; and to +fulfil it he begins at the source of life, and goes down to the +mysterious darkness of the tomb. When crime has been committed, and +God, doubtless in anger, turns away his face, it is for the physician +to bring the culprit to justice.” + +40122m + + + +“Have mercy on my child, sir,” murmured Villefort. + +“You see it is yourself who have first named her—you, her father.” + +“Have pity on Valentine! Listen, it is impossible. I would as willingly +accuse myself! Valentine, whose heart is pure as a diamond or a lily!” + +“No pity, procureur; the crime is fragrant. Mademoiselle herself packed +all the medicines which were sent to M. de Saint-Méran; and M. de +Saint-Méran is dead. Mademoiselle de Villefort prepared all the cooling +draughts which Madame de Saint-Méran took, and Madame de Saint-Méran is +dead. Mademoiselle de Villefort took from the hands of Barrois, who was +sent out, the lemonade which M. Noirtier had every morning, and he has +escaped by a miracle. Mademoiselle de Villefort is the culprit—she is +the poisoner! To you, as the king’s attorney, I denounce Mademoiselle +de Villefort, do your duty.” + +“Doctor, I resist no longer—I can no longer defend myself—I believe +you; but, for pity’s sake, spare my life, my honor!” + +“M. de Villefort,” replied the doctor, with increased vehemence, “there +are occasions when I dispense with all foolish human circumspection. If +your daughter had committed only one crime, and I saw her meditating +another, I would say ‘Warn her, punish her, let her pass the remainder +of her life in a convent, weeping and praying.’ If she had committed +two crimes, I would say, ‘Here, M. de Villefort, is a poison that the +prisoner is not acquainted with,—one that has no known antidote, quick +as thought, rapid as lightning, mortal as the thunderbolt; give her +that poison, recommending her soul to God, and save your honor and your +life, for it is yours she aims at; and I can picture her approaching +your pillow with her hypocritical smiles and her sweet exhortations. +Woe to you, M. de Villefort, if you do not strike first!’ This is what +I would say had she only killed two persons but she has seen three +deaths,—has contemplated three murdered persons,—has knelt by three +corpses! To the scaffold with the poisoner—to the scaffold! Do you talk +of your honor? Do what I tell you, and immortality awaits you!” + +Villefort fell on his knees. + +“Listen,” said he; “I have not the strength of mind you have, or rather +that which you would not have, if instead of my daughter Valentine your +daughter Madeleine were concerned.” The doctor turned pale. “Doctor, +every son of woman is born to suffer and to die; I am content to suffer +and to await death.” + +“Beware,” said M. d’Avrigny, “it may come slowly; you will see it +approach after having struck your father, your wife, perhaps your son.” + +Villefort, suffocating, pressed the doctor’s arm. + +40124m + + + +“Listen,” cried he; “pity me—help me! No, my daughter is not guilty. If +you drag us both before a tribunal I will still say, ‘No, my daughter +is not guilty;—there is no crime in my house. I will not acknowledge a +crime in my house; for when crime enters a dwelling, it is like +death—it does not come alone.’ Listen. What does it signify to you if I +am murdered? Are you my friend? Are you a man? Have you a heart? No, +you are a physician! Well, I tell you I will not drag my daughter +before a tribunal, and give her up to the executioner! The bare idea +would kill me—would drive me like a madman to dig my heart out with my +finger-nails! And if you were mistaken, doctor—if it were not my +daughter—if I should come one day, pale as a spectre, and say to you, +‘Assassin, you have killed my child!’—hold—if that should happen, +although I am a Christian, M. d’Avrigny, I should kill myself.” + +“Well,” said the doctor, after a moment’s silence, “I will wait.” + +Villefort looked at him as if he had doubted his words. + +“Only,” continued M. d’Avrigny, with a slow and solemn tone, “if anyone +falls ill in your house, if you feel yourself attacked, do not send for +me, for I will come no more. I will consent to share this dreadful +secret with you, but I will not allow shame and remorse to grow and +increase in my conscience, as crime and misery will in your house.” + +“Then you abandon me, doctor?” + +“Yes, for I can follow you no farther, and I only stop at the foot of +the scaffold. Some further discovery will be made, which will bring +this dreadful tragedy to a close. Adieu.” + +“I entreat you, doctor!” + +“All the horrors that disturb my thoughts make your house odious and +fatal. Adieu, sir.” + +“One word—one single word more, doctor! You go, leaving me in all the +horror of my situation, after increasing it by what you have revealed +to me. But what will be reported of the sudden death of the poor old +servant?” + +“True,” said M. d’Avrigny; “we will return.” + +The doctor went out first, followed by M. de Villefort. The terrified +servants were on the stairs and in the passage where the doctor would +pass. + +“Sir,” said d’Avrigny to Villefort, so loud that all might hear, “poor +Barrois has led too sedentary a life of late; accustomed formerly to +ride on horseback, or in the carriage, to the four corners of Europe, +the monotonous walk around that armchair has killed him—his blood has +thickened. He was stout, had a short, thick neck; he was attacked with +apoplexy, and I was called in too late. By the way,” added he in a low +tone, “take care to throw away that cup of syrup of violets in the +ashes.” + +The doctor, without shaking hands with Villefort, without adding a word +to what he had said, went out, amid the tears and lamentations of the +whole household. The same evening all Villefort’s servants, who had +assembled in the kitchen, and had a long consultation, came to tell +Madame de Villefort that they wished to leave. No entreaty, no +proposition of increased wages, could induce them to remain; to every +argument they replied, “We must go, for death is in this house.” + +They all left, in spite of prayers and entreaties, testifying their +regret at leaving so good a master and mistress, and especially +Mademoiselle Valentine, so good, so kind, and so gentle. + +Villefort looked at Valentine as they said this. She was in tears, and, +strange as it was, in spite of the emotions he felt at the sight of +these tears, he looked also at Madame de Villefort, and it appeared to +him as if a slight gloomy smile had passed over her thin lips, like a +meteor seen passing inauspiciously between two clouds in a stormy sky. + + + + Chapter 81. The Room of the Retired Baker + +The evening of the day on which the Count of Morcerf had left Danglars’ +house with feelings of shame and anger at the rejection of the +projected alliance, M. Andrea Cavalcanti, with curled hair, moustaches +in perfect order, and white gloves which fitted admirably, had entered +the courtyard of the banker’s house in Rue de la Chaussée d’Antin. He +had not been more than ten minutes in the drawing-room before he drew +Danglars aside into the recess of a bow-window, and, after an ingenious +preamble, related to him all his anxieties and cares since his noble +father’s departure. He acknowledged the extreme kindness which had been +shown him by the banker’s family, in which he had been received as a +son, and where, besides, his warmest affections had found an object on +which to centre in Mademoiselle Danglars. + +Danglars listened with the most profound attention; he had expected +this declaration for the last two or three days, and when at last it +came his eyes glistened as much as they had lowered on listening to +Morcerf. He would not, however, yield immediately to the young man’s +request, but made a few conscientious objections. + +“Are you not rather young, M. Andrea, to think of marrying?” + +“I think not, sir,” replied M. Cavalcanti; “in Italy the nobility +generally marry young. Life is so uncertain, that we ought to secure +happiness while it is within our reach.” + +“Well, sir,” said Danglars, “in case your proposals, which do me honor, +are accepted by my wife and daughter, by whom shall the preliminary +arrangements be settled? So important a negotiation should, I think, be +conducted by the respective fathers of the young people.” + +“Sir, my father is a man of great foresight and prudence. Thinking that +I might wish to settle in France, he left me at his departure, together +with the papers establishing my identity, a letter promising, if he +approved of my choice, 150,000 livres per annum from the day I was +married. So far as I can judge, I suppose this to be a quarter of my +father’s revenue.” + +“I,” said Danglars, “have always intended giving my daughter 500,000 +francs as her dowry; she is, besides, my sole heiress.” + +“All would then be easily arranged if the baroness and her daughter are +willing. We should command an annuity of 175,000 livres. Supposing, +also, I should persuade the marquis to give me my capital, which is not +likely, but still is possible, we would place these two or three +millions in your hands, whose talent might make it realize ten per +cent.” + +“I never give more than four per cent, and generally only three and a +half; but to my son-in-law I would give five, and we would share the +profits.” + +“Very good, father-in-law,” said Cavalcanti, yielding to his low-born +nature, which would escape sometimes through the aristocratic gloss +with which he sought to conceal it. Correcting himself immediately, he +said, “Excuse me, sir; hope alone makes me almost mad,—what will not +reality do?” + +“But,” said Danglars, who, on his part, did not perceive how soon the +conversation, which was at first disinterested, was turning to a +business transaction, “there is, doubtless, a part of your fortune your +father could not refuse you?” + +“Which?” asked the young man. + +“That you inherit from your mother.” + +“Truly, from my mother, Leonora Corsinari.” + +“How much may it amount to?” + +“Indeed, sir,” said Andrea, “I assure you I have never given the +subject a thought, but I suppose it must have been at least two +millions.” + +Danglars felt as much overcome with joy as the miser who finds a lost +treasure, or as the shipwrecked mariner who feels himself on solid +ground instead of in the abyss which he expected would swallow him up. + +“Well, sir,” said Andrea, bowing to the banker respectfully, “may I +hope?” + +“You may not only hope,” said Danglars, “but consider it a settled +thing, if no obstacle arises on your part.” + +“I am, indeed, rejoiced,” said Andrea. + +“But,” said Danglars thoughtfully, “how is it that your patron, M. de +Monte Cristo, did not make his proposal for you?” + +Andrea blushed imperceptibly. + +“I have just left the count, sir,” said he; “he is, doubtless, a +delightful man but inconceivably peculiar in his ideas. He esteems me +highly. He even told me he had not the slightest doubt that my father +would give me the capital instead of the interest of my property. He +has promised to use his influence to obtain it for me; but he also +declared that he never had taken on himself the responsibility of +making proposals for another, and he never would. I must, however, do +him the justice to add that he assured me if ever he had regretted the +repugnance he felt to such a step it was on this occasion, because he +thought the projected union would be a happy and suitable one. Besides, +if he will do nothing officially, he will answer any questions you +propose to him. And now,” continued he, with one of his most charming +smiles, “having finished talking to the father-in-law, I must address +myself to the banker.” + +“And what may you have to say to him?” said Danglars, laughing in his +turn. + +“That the day after tomorrow I shall have to draw upon you for about +four thousand francs; but the count, expecting my bachelor’s revenue +could not suffice for the coming month’s outlay, has offered me a draft +for twenty thousand francs. It bears his signature, as you see, which +is all-sufficient.” + +“Bring me a million such as that,” said Danglars, “I shall be well +pleased,” putting the draft in his pocket. “Fix your own hour for +tomorrow, and my cashier shall call on you with a check for eighty +thousand francs.” + +“At ten o’clock then, if you please; I should like it early, as I am +going into the country tomorrow.” + +“Very well, at ten o’clock; you are still at the Hôtel des Princes?” + +“Yes.” + +The following morning, with the banker’s usual punctuality, the eighty +thousand francs were placed in the young man’s hands, as he was on the +point of starting, after having left two hundred francs for Caderousse. +He went out chiefly to avoid this dangerous enemy, and returned as late +as possible in the evening. + +But scarcely had he stepped out of his carriage when the porter met him +with a parcel in his hand. + +“Sir,” said he, “that man has been here.” + +“What man?” said Andrea carelessly, apparently forgetting him whom he +but too well recollected. + +“Him to whom your excellency pays that little annuity.” + +“Oh,” said Andrea, “my father’s old servant. Well, you gave him the two +hundred francs I had left for him?” + +“Yes, your excellency.” Andrea had expressed a wish to be thus +addressed. “But,” continued the porter, “he would not take them.” + +Andrea turned pale, but as it was dark his pallor was not perceptible. +“What? he would not take them?” said he with slight emotion. + +40130m + + + +“No, he wished to speak to your excellency; I told him you were gone +out, and after some dispute he believed me and gave me this letter, +which he had brought with him already sealed.” + +“Give it me,” said Andrea, and he read by the light of his +carriage-lamp: + +“‘You know where I live; I expect you tomorrow morning at nine +o’clock.’” + +Andrea examined it carefully, to ascertain if the letter had been +opened, or if any indiscreet eyes had seen its contents; but it was so +carefully folded, that no one could have read it, and the seal was +perfect. + +“Very well,” said he. “Poor man, he is a worthy creature.” He left the +porter to ponder on these words, not knowing which most to admire, the +master or the servant. + +“Take out the horses quickly, and come up to me,” said Andrea to his +groom. In two seconds the young man had reached his room and burnt +Caderousse’s letter. The servant entered just as he had finished. + +“You are about my height, Pierre,” said he. + +“I have that honor, your excellency.” + +“You had a new livery yesterday?” + +“Yes, sir.” + +“I have an engagement with a pretty little girl for this evening, and +do not wish to be known; lend me your livery till tomorrow. I may +sleep, perhaps, at an inn.” + +Pierre obeyed. Five minutes after, Andrea left the hotel, completely +disguised, took a cabriolet, and ordered the driver to take him to the +Cheval Rouge, at Picpus. The next morning he left that inn as he had +left the Hôtel des Princes, without being noticed, walked down the +Faubourg Saint-Antoine, along the boulevard to Rue Ménilmontant, and +stopping at the door of the third house on the left looked for someone +of whom to make inquiry in the porter’s absence. + +“For whom are you looking, my fine fellow?” asked the fruiteress on the +opposite side. + +“Monsieur Pailletin, if you please, my good woman,” replied Andrea. + +“A retired baker?” asked the fruiteress. + +“Exactly.” + +“He lives at the end of the yard, on the left, on the third story.” + +40132m + + + +Andrea went as she directed him, and on the third floor he found a +hare’s paw, which, by the hasty ringing of the bell, it was evident he +pulled with considerable ill-temper. A moment after Caderousse’s face +appeared at the grating in the door. + +“Ah! you are punctual,” said he, as he drew back the door. + +“Confound you and your punctuality!” said Andrea, throwing himself into +a chair in a manner which implied that he would rather have flung it at +the head of his host. + +“Come, come, my little fellow, don’t be angry. See, I have thought +about you—look at the good breakfast we are going to have; nothing but +what you are fond of.” + +Andrea, indeed, inhaled the scent of something cooking which was not +unwelcome to him, hungry as he was; it was that mixture of fat and +garlic peculiar to Provençal kitchens of an inferior order, added to +that of dried fish, and above all, the pungent smell of musk and +cloves. These odors escaped from two deep dishes which were covered and +placed on a stove, and from a copper pan placed in an old iron pot. In +an adjoining room Andrea saw also a tolerably clean table prepared for +two, two bottles of wine sealed, the one with green, the other with +yellow, a supply of brandy in a decanter, and a measure of fruit in a +cabbage-leaf, cleverly arranged on an earthenware plate. + +“What do you think of it, my little fellow?” said Caderousse. “Ay, that +smells good! You know I used to be a good cook; do you recollect how +you used to lick your fingers? You were among the first who tasted any +of my dishes, and I think you relished them tolerably.” While speaking, +Caderousse went on peeling a fresh supply of onions. + +“But,” said Andrea, ill-temperedly, “by my faith, if it was only to +breakfast with you, that you disturbed me, I wish the devil had taken +you!” + +“My boy,” said Caderousse sententiously, “one can talk while eating. +And then, you ungrateful being, you are not pleased to see an old +friend? I am weeping with joy.” + +He was truly crying, but it would have been difficult to say whether +joy or the onions produced the greatest effect on the lachrymal glands +of the old innkeeper of the Pont-du-Gard. + +“Hold your tongue, hypocrite,” said Andrea; “you love me!” + +“Yes, I do, or may the devil take me. I know it is a weakness,” said +Caderousse, “but it overpowers me.” + +“And yet it has not prevented your sending for me to play me some +trick.” + +“Come,” said Caderousse, wiping his large knife on his apron, “if I did +not like you, do you think I should endure the wretched life you lead +me? Think for a moment. You have your servant’s clothes on—you +therefore keep a servant; I have none, and am obliged to prepare my own +meals. You abuse my cookery because you dine at the table d’hôte of the +Hôtel des Princes, or the Café de Paris. Well, I too could keep a +servant; I too could have a tilbury; I too could dine where I like; but +why do I not? Because I would not annoy my little Benedetto. Come, just +acknowledge that I could, eh?” + +This address was accompanied by a look which was by no means difficult +to understand. + +“Well,” said Andrea, “admitting your love, why do you want me to +breakfast with you?” + +“That I may have the pleasure of seeing you, my little fellow.” + +“What is the use of seeing me after we have made all our arrangements?” + +“Eh, dear friend,” said Caderousse, “are wills ever made without +codicils? But you first came to breakfast, did you not? Well, sit down, +and let us begin with these pilchards, and this fresh butter; which I +have put on some vine-leaves to please you, wicked one. Ah, yes; you +look at my room, my four straw chairs, my images, three francs each. +But what do you expect? This is not the Hôtel des Princes.” + +“Come, you are growing discontented, you are no longer happy; you, who +only wish to live like a retired baker.” + +Caderousse sighed. + +“Well, what have you to say? you have seen your dream realized.” + +“I can still say it is a dream; a retired baker, my poor Benedetto, is +rich—he has an annuity.” + +“Well, you have an annuity.” + +“I have?” + +40134m + + + +“Yes, since I bring you your two hundred francs.” + +Caderousse shrugged his shoulders. + +“It is humiliating,” said he, “thus to receive money given +grudgingly,—an uncertain supply which may soon fail. You see I am +obliged to economize, in case your prosperity should cease. Well, my +friend, fortune is inconstant, as the chaplain of the regiment said. I +know your prosperity is great, you rascal; you are to marry the +daughter of Danglars.” + +“What? of Danglars?” + +“Yes, to be sure; must I say Baron Danglars? I might as well say Count +Benedetto. He was an old friend of mine and if he had not so bad a +memory he ought to invite me to your wedding, seeing he came to mine. +Yes, yes, to mine; gad, he was not so proud then,—he was an under-clerk +to the good M. Morrel. I have dined many times with him and the Count +of Morcerf, so you see I have some high connections and were I to +cultivate them a little, we might meet in the same drawing-rooms.” + +“Come, your jealousy represents everything to you in the wrong light.” + +“That is all very fine, Benedetto mio, but I know what I am saying. +Perhaps I may one day put on my best coat, and presenting myself at the +great gate, introduce myself. Meanwhile let us sit down and eat.” + +Caderousse set the example and attacked the breakfast with good +appetite, praising each dish he set before his visitor. The latter +seemed to have resigned himself; he drew the corks, and partook largely +of the fish with the garlic and fat. + +“Ah, mate,” said Caderousse, “you are getting on better terms with your +old landlord!” + +“Faith, yes,” replied Andrea, whose hunger prevailed over every other +feeling. + +“So you like it, you rogue?” + +“So much that I wonder how a man who can cook thus can complain of hard +living.” + +“Do you see,” said Caderousse, “all my happiness is marred by one +thought?” + +“What is that?” + +“That I am dependent on another, I who have always gained my own +livelihood honestly.” + +“Do not let that disturb you, I have enough for two.” + +“No, truly; you may believe me if you will; at the end of every month I +am tormented by remorse.” + +“Good Caderousse!” + +“So much so, that yesterday I would not take the two hundred francs.” + +“Yes, you wished to speak to me; but was it indeed remorse, tell me?” + +“True remorse; and, besides, an idea had struck me.” + +Andrea shuddered; he always did so at Caderousse’s ideas. + +“It is miserable—do you see?—always to wait till the end of the month.” + +“Oh,” said Andrea philosophically, determined to watch his companion +narrowly, “does not life pass in waiting? Do I, for instance, fare +better? Well, I wait patiently, do I not?” + +“Yes; because instead of expecting two hundred wretched francs, you +expect five or six thousand, perhaps ten, perhaps even twelve, for you +take care not to let anyone know the utmost. Down there, you always had +little presents and Christmas-boxes, which you tried to hide from your +poor friend Caderousse. Fortunately he is a cunning fellow, that friend +Caderousse.” + +“There you are beginning again to ramble, to talk again and again of +the past! But what is the use of teasing me with going all over that +again?” + +“Ah, you are only one-and-twenty, and can forget the past; I am fifty, +and am obliged to recollect it. But let us return to business.” + +“Yes.” + +“I was going to say, if I were in your place——” + +“Well.” + +“I would realize——” + +“How would you realize?” + +“I would ask for six months’ in advance, under pretence of being able +to purchase a farm, then with my six months I would decamp.” + +“Well, well,” said Andrea, “that isn’t a bad idea.” + +“My dear friend,” said Caderousse, “eat of my bread, and take my +advice; you will be none the worse off, physically or morally.” + +“But,” said Andrea, “why do you not act on the advice you gave me? Why +do you not realize a six months’, a year’s advance even, and retire to +Brussels? Instead of living the retired baker, you might live as a +bankrupt, using his privileges; that would be very good.” + +“But how the devil would you have me retire on twelve hundred francs?” + +“Ah, Caderousse,” said Andrea, “how covetous you are! Two months ago +you were dying with hunger.” + +“The appetite grows by what it feeds on,” said Caderousse, grinning and +showing his teeth, like a monkey laughing or a tiger growling. “And,” +added he, biting off with his large white teeth an enormous mouthful of +bread, “I have formed a plan.” + +Caderousse’s plans alarmed Andrea still more than his ideas; ideas were +but the germ, the plan was reality. + +“Let me see your plan; I dare say it is a pretty one.” + +“Why not? Who formed the plan by which we left the establishment of +M——! eh? was it not I? and it was no bad one I believe, since here we +are!” + +“I do not say,” replied Andrea, “that you never make a good one; but +let us see your plan.” + +“Well,” pursued Caderousse, “can you without expending one sou, put me +in the way of getting fifteen thousand francs? No, fifteen thousand are +not enough,—I cannot again become an honest man with less than thirty +thousand francs.” + +“No,” replied Andrea, dryly, “no, I cannot.” + +“I do not think you understand me,” replied Caderousse, calmly; “I said +without your laying out a sou.” + +“Do you want me to commit a robbery, to spoil all my good fortune—and +yours with mine—and both of us to be dragged down there again?” + +“It would make very little difference to me,” said Caderousse, “if I +were retaken, I am a poor creature to live alone, and sometimes pine +for my old comrades; not like you, heartless creature, who would be +glad never to see them again.” + +Andrea did more than tremble this time, he turned pale. + +“Come, Caderousse, no nonsense!” said he. + +“Don’t alarm yourself, my little Benedetto, but just point out to me +some means of gaining those thirty thousand francs without your +assistance, and I will contrive it.” + +“Well, I’ll see—I’ll try to contrive some way,” said Andrea. + +“Meanwhile you will raise my monthly allowance to five hundred francs, +my little fellow? I have a fancy, and mean to get a housekeeper.” + +“Well, you shall have your five hundred francs,” said Andrea; “but it +is very hard for me, my poor Caderousse—you take advantage——” + +“Bah,” said Caderousse, “when you have access to countless stores.” + +One would have said Andrea anticipated his companion’s words, so did +his eye flash like lightning, but it was but for a moment. + +“True,” he replied, “and my protector is very kind.” + +“That dear protector,” said Caderousse; “and how much does he give you +monthly?” + +“Five thousand francs.” + +“As many thousands as you give me hundreds! Truly, it is only bastards +who are thus fortunate. Five thousand francs per month! What the devil +can you do with all that?” + +“Oh, it is no trouble to spend that; and I am like you, I want +capital.” + +“Capital?—yes—I understand—everyone would like capital.” + +“Well, and I shall get it.” + +“Who will give it to you—your prince?” + +“Yes, my prince. But unfortunately I must wait.” + +40138m + + + +“You must wait for what?” asked Caderousse. + +“For his death.” + +“The death of your prince?” + +“Yes.” + +“How so?” + +“Because he has made his will in my favor.” + +“Indeed?” + +“On my honor.” + +“For how much?” + +“For five hundred thousand.” + +“Only that? It’s little enough.” + +“But so it is.” + +“No, it cannot be!” + +“Are you my friend, Caderousse?” + +“Yes, in life or death.” + +“Well, I will tell you a secret.” + +“What is it?” + +“But remember——” + +“Ah! _pardieu!_ mute as a carp.” + +“Well, I think——” + +Andrea stopped and looked around. + +“You think? Do not fear; _pardieu!_ we are alone.” + +“I think I have discovered my father.” + +“Your true father?” + +“Yes.” + +“Not old Cavalcanti?” + +“No, for he has gone again; the true one, as you say.” + +“And that father is——” + +“Well, Caderousse, it is Monte Cristo.” + +“Bah!” + +“Yes, you understand, that explains all. He cannot acknowledge me +openly, it appears, but he does it through M. Cavalcanti, and gives him +fifty thousand francs for it.” + +“Fifty thousand francs for being your father? I would have done it for +half that, for twenty thousand, for fifteen thousand; why did you not +think of me, ungrateful man?” + +“Did I know anything about it, when it was all done when I was down +there?” + +“Ah, truly? And you say that by his will——” + +“He leaves me five hundred thousand livres.” + +“Are you sure of it?” + +“He showed it me; but that is not all—there is a codicil, as I said +just now.” + +“Probably.” + +“And in that codicil he acknowledges me.” + +“Oh, the good father, the brave father, the very honest father!” said +Caderousse, twirling a plate in the air between his two hands. + +“Now, say if I conceal anything from you?” + +“No, and your confidence makes you honorable in my opinion; and your +princely father, is he rich, very rich?” + +“Yes, he is that; he does not himself know the amount of his fortune.” + +“Is it possible?” + +“It is evident enough to me, who am always at his house. The other day +a banker’s clerk brought him fifty thousand francs in a portfolio about +the size of your plate; yesterday his banker brought him a hundred +thousand francs in gold.” + +Caderousse was filled with wonder; the young man’s words sounded to him +like metal, and he thought he could hear the rushing of cascades of +louis. + +“And you go into that house?” cried he briskly. + +“When I like.” + +Caderousse was thoughtful for a moment. It was easy to perceive he was +revolving some unfortunate idea in his mind. Then suddenly,— + +“How I should like to see all that,” cried he; “how beautiful it must +be!” + +“It is, in fact, magnificent,” said Andrea. + +“And does he not live in the Champs-Élysées?” + +“Yes, No. 30.” + +“Ah,” said Caderousse, “No. 30.” + +“Yes, a fine house standing alone, between a courtyard and a +garden,—you must know it.” + +“Possibly; but it is not the exterior I care for, it is the interior. +What beautiful furniture there must be in it!” + +“Have you ever seen the Tuileries?” + +“No.” + +“Well, it surpasses that.” + +“It must be worth one’s while to stoop, Andrea, when that good M. Monte +Cristo lets fall his purse.” + +“It is not worthwhile to wait for that,” said Andrea; “money is as +plentiful in that house as fruit in an orchard.” + +“But you should take me there one day with you.” + +“How can I? On what plea?” + +“You are right; but you have made my mouth water. I must absolutely see +it; I shall find a way.” + +“No nonsense, Caderousse!” + +“I will offer myself as floor-polisher.” + +“The rooms are all carpeted.” + +“Well, then, I must be contented to imagine it.” + +“That is the best plan, believe me.” + +“Try, at least, to give me an idea of what it is.” + +“How can I?” + +“Nothing is easier. Is it large?” + +“Middling.” + +“How is it arranged?” + +“Faith, I should require pen, ink, and paper to make a plan.” + +“They are all here,” said Caderousse, briskly. He fetched from an old +secretaire a sheet of white paper and pen and ink. “Here,” said +Caderousse, “draw me all that on the paper, my boy.” + +Andrea took the pen with an imperceptible smile and began. + +“The house, as I said, is between the court and the garden; in this +way, do you see?” Andrea drew the garden, the court and the house. + +40142m + + + +“High walls?” + +“Not more than eight or ten feet.” + +“That is not prudent,” said Caderousse. + +“In the court are orange-trees in pots, turf, and clumps of flowers.” + +“And no steel-traps?” + +“No.” + +“The stables?” + +“Are on either side of the gate, which you see there.” And Andrea +continued his plan. + +“Let us see the ground floor,” said Caderousse. + +“On the ground floor, dining-room, two drawing-rooms, billiard-room, +staircase in the hall, and a little back staircase.” + +“Windows?” + +“Magnificent windows, so beautiful, so large, that I believe a man of +your size should pass through each frame.” + +“Why the devil have they any stairs with such windows?” + +“Luxury has everything.” + +“But shutters?” + +“Yes, but they are never used. That Count of Monte Cristo is an +original, who loves to look at the sky even at night.” + +“And where do the servants sleep?” + +“Oh, they have a house to themselves. Picture to yourself a pretty +coach-house at the right-hand side where the ladders are kept. Well, +over that coach-house are the servants’ rooms, with bells corresponding +with the different apartments.” + +“Ah, _diable!_ bells did you say?” + +“What do you mean?” + +“Oh, nothing! I only say they cost a load of money to hang, and what is +the use of them, I should like to know?” + +“There used to be a dog let loose in the yard at night, but it has been +taken to the house at Auteuil, to that you went to, you know.” + +“Yes.” + +“I was saying to him only yesterday, ‘You are imprudent, Monsieur +Count; for when you go to Auteuil and take your servants the house is +left unprotected.’ ‘Well,’ said he, ‘what next?’ ‘Well, next, some day +you will be robbed.’” + +“What did he answer?” + +“He quietly said, ‘What do I care if I am?’” + +“Andrea, he has some secretaire with a spring.” + +“How do you know?” + +“Yes, which catches the thief in a trap and plays a tune. I was told +there were such at the last exhibition.” + +“He has simply a mahogany secretaire, in which the key is always kept.” + +“And he is not robbed?” + +“No; his servants are all devoted to him.” + +“There ought to be some money in that secretaire?” + +“There may be. No one knows what there is.” + +“And where is it?” + +“On the first floor.” + +“Sketch me the plan of that floor, as you have done of the ground +floor, my boy.” + +“That is very simple.” Andrea took the pen. “On the first story, do you +see, there is the anteroom and the drawing-room; to the right of the +drawing-room, a library and a study; to the left, a bedroom and a +dressing-room. The famous secretaire is in the dressing-room.” + +“Is there a window in the dressing-room?” + +“Two,—one here and one there.” Andrea sketched two windows in the room, +which formed an angle on the plan, and appeared as a small square added +to the rectangle of the bedroom. Caderousse became thoughtful. + +“Does he often go to Auteuil?” added he. + +“Two or three times a week. Tomorrow, for instance, he is going to +spend the day and night there.” + +“Are you sure of it?” + +“He has invited me to dine there.” + +“There’s a life for you,” said Caderousse; “a town house and a country +house.” + +“That is what it is to be rich.” + +“And shall you dine there?” + +“Probably.” + +“When you dine there, do you sleep there?” + +“If I like; I am at home there.” + +Caderousse looked at the young man, as if to get at the truth from the +bottom of his heart. But Andrea drew a cigar-case from his pocket, took +a Havana, quietly lit it, and began smoking. + +“When do you want your twelve hundred francs?” said he to Caderousse. + +“Now, if you have them.” Andrea took five-and-twenty louis from his +pocket. + +“Yellow boys?” said Caderousse; “no, I thank you.” + +“Oh, you despise them.” + +“On the contrary, I esteem them, but will not have them.” + +“You can change them, idiot; gold is worth five sous.” + +“Exactly; and he who changes them will follow friend Caderousse, lay +hands on him, and demand what farmers pay him their rent in gold. No +nonsense, my good fellow; silver simply, round coins with the head of +some monarch or other on them. Anybody may possess a five-franc piece.” + +“But do you suppose I carry five hundred francs about with me? I should +want a porter.” + +“Well, leave them with your porter; he is to be trusted. I will call +for them.” + +“Today?” + +“No, tomorrow; I shall not have time today.” + +“Well, tomorrow I will leave them when I go to Auteuil.” + +“May I depend on it?” + +“Certainly.” + +“Because I shall secure my housekeeper on the strength of it.” + +“Now see here, will that be all? Eh? And will you not torment me any +more?” + +“Never.” + +Caderousse had become so gloomy that Andrea feared he should be obliged +to notice the change. He redoubled his gayety and carelessness. + +“How sprightly you are,” said Caderousse; “One would say you were +already in possession of your property.” + +“No, unfortunately; but when I do obtain it——” + +“Well?” + +“I shall remember old friends, I can tell you that.” + +“Yes, since you have such a good memory.” + +“What do you want? It looks as if you were trying to fleece me?” + +“I? What an idea! I, who am going to give you another piece of good +advice.” + +“What is it?” + +“To leave behind you the diamond you have on your finger. We shall both +get into trouble. You will ruin both yourself and me by your folly.” + +“How so?” said Andrea. + +“How? You put on a livery, you disguise yourself as a servant, and yet +keep a diamond on your finger worth four or five thousand francs.” + +“You guess well.” + +“I know something of diamonds; I have had some.” + +“You do well to boast of it,” said Andrea, who, without becoming angry, +as Caderousse feared, at this new extortion, quietly resigned the ring. +Caderousse looked so closely at it that Andrea well knew that he was +examining to see if all the edges were perfect. + +“It is a false diamond,” said Caderousse. + +“You are joking now,” replied Andrea. + +“Do not be angry, we can try it.” Caderousse went to the window, +touched the glass with it, and found it would cut. + +“_Confiteor!_” said Caderousse, putting the diamond on his little +finger; “I was mistaken; but those thieves of jewellers imitate so well +that it is no longer worthwhile to rob a jeweller’s shop—it is another +branch of industry paralyzed.” + +“Have you finished?” said Andrea,—“do you want anything more?—will you +have my waistcoat or my hat? Make free, now you have begun.” + +“No; you are, after all, a good companion; I will not detain you, and +will try to cure myself of my ambition.” + +“But take care the same thing does not happen to you in selling the +diamond you feared with the gold.” + +“I shall not sell it—do not fear.” + +“Not at least till the day after tomorrow,” thought the young man. + +“Happy rogue,” said Caderousse; “you are going to find your servants, +your horses, your carriage, and your betrothed!” + +“Yes,” said Andrea. + +“Well, I hope you will make a handsome wedding-present the day you +marry Mademoiselle Danglars.” + +“I have already told you it is a fancy you have taken in your head.” + +“What fortune has she?” + +“But I tell you——” + +“A million?” + +Andrea shrugged his shoulders. + +“Let it be a million,” said Caderousse; “you can never have so much as +I wish you.” + +“Thank you,” said the young man. + +“Oh, I wish it you with all my heart!” added Caderousse with his hoarse +laugh. “Stop, let me show you the way.” + +“It is not worthwhile.” + +“Yes, it is.” + +“Why?” + +“Because there is a little secret, a precaution I thought it desirable +to take, one of Huret & Fichet’s locks, revised and improved by Gaspard +Caderousse; I will manufacture you a similar one when you are a +capitalist.” + +“Thank you,” said Andrea; “I will let you know a week beforehand.” + +They parted. Caderousse remained on the landing until he had not only +seen Andrea go down the three stories, but also cross the court. Then +he returned hastily, shut his door carefully, and began to study, like +a clever architect, the plan Andrea had left him. + +“Dear Benedetto,” said he, “I think he will not be sorry to inherit his +fortune, and he who hastens the day when he can touch his five hundred +thousand will not be his worst friend.” + + + + Chapter 82. The Burglary + +The day following that on which the conversation we have related took +place, the Count of Monte Cristo set out for Auteuil, accompanied by +Ali and several attendants, and also taking with him some horses whose +qualities he was desirous of ascertaining. He was induced to undertake +this journey, of which the day before he had not even thought and which +had not occurred to Andrea either, by the arrival of Bertuccio from +Normandy with intelligence respecting the house and sloop. The house +was ready, and the sloop which had arrived a week before lay at anchor +in a small creek with her crew of six men, who had observed all the +requisite formalities and were ready again to put to sea. + +The count praised Bertuccio’s zeal, and ordered him to prepare for a +speedy departure, as his stay in France would not be prolonged more +than a month. + +“Now,” said he, “I may require to go in one night from Paris to +Tréport; let eight fresh horses be in readiness on the road, which will +enable me to go fifty leagues in ten hours.” + +“Your highness had already expressed that wish,” said Bertuccio, “and +the horses are ready. I have bought them, and stationed them myself at +the most desirable posts, that is, in villages, where no one generally +stops.” + +“That’s well,” said Monte Cristo; “I remain here a day or two—arrange +accordingly.” + +As Bertuccio was leaving the room to give the requisite orders, +Baptistin opened the door: he held a letter on a silver waiter. + +“What are you doing here?” asked the count, seeing him covered with +dust; “I did not send for you, I think?” + +Baptistin, without answering, approached the count, and presented the +letter. “Important and urgent,” said he. + +The count opened the letter, and read: + +“‘M. de Monte Cristo is apprised that this night a man will enter his +house in the Champs-Élysées with the intention of carrying off some +papers supposed to be in the secretaire in the dressing-room. The +count’s well-known courage will render unnecessary the aid of the +police, whose interference might seriously affect him who sends this +advice. The count, by any opening from the bedroom, or by concealing +himself in the dressing-room, would be able to defend his property +himself. Many attendants or apparent precautions would prevent the +villain from the attempt, and M. de Monte Cristo would lose the +opportunity of discovering an enemy whom chance has revealed to him who +now sends this warning to the count,—a warning he might not be able to +send another time, if this first attempt should fail and another be +made.’” + + +The count’s first idea was that this was an artifice—a gross deception, +to draw his attention from a minor danger in order to expose him to a +greater. He was on the point of sending the letter to the commissary of +police, notwithstanding the advice of his anonymous friend, or perhaps +because of that advice, when suddenly the idea occurred to him that it +might be some personal enemy, whom he alone should recognize and over +whom, if such were the case, he alone would gain any advantage, as +Fiesco17 had done over the Moor who would have killed him. We know the +count’s vigorous and daring mind, denying anything to be impossible, +with that energy which marks the great man. + +From his past life, from his resolution to shrink from nothing, the +count had acquired an inconceivable relish for the contests in which he +had engaged, sometimes against nature, that is to say, against God, and +sometimes against the world, that is, against the devil. + +“They do not want my papers,” said Monte Cristo, “they want to kill me; +they are no robbers, but assassins. I will not allow the prefect of +police to interfere with my private affairs. I am rich enough, +forsooth, to distribute his authority on this occasion.” + +The count recalled Baptistin, who had left the room after delivering +the letter. + +“Return to Paris,” said he; “assemble the servants who remain there. I +want all my household at Auteuil.” + +“But will no one remain in the house, my lord?” asked Baptistin. + +“Yes, the porter.” + +“My lord will remember that the lodge is at a distance from the house.” + +“Well?” + +“The house might be stripped without his hearing the least noise.” + +“By whom?” + +“By thieves.” + +“You are a fool, M. Baptistin. Thieves might strip the house—it would +annoy me less than to be disobeyed.” Baptistin bowed. + +40150m + + + +“You understand me?” said the count. “Bring your comrades here, one and +all; but let everything remain as usual, only close the shutters of the +ground floor.” + +“And those of the first floor?” + +“You know they are never closed. Go!” + +The count signified his intention of dining alone, and that no one but +Ali should attend him. Having dined with his usual tranquillity and +moderation, the count, making a signal to Ali to follow him, went out +by the side-gate and on reaching the Bois de Boulogne turned, +apparently without design towards Paris and at twilight; found himself +opposite his house in the Champs-Élysées. All was dark; one solitary, +feeble light was burning in the porter’s lodge, about forty paces +distant from the house, as Baptistin had said. + +Monte Cristo leaned against a tree, and with that scrutinizing glance +which was so rarely deceived, looked up and down the avenue, examined +the passers-by, and carefully looked down the neighboring streets, to +see that no one was concealed. Ten minutes passed thus, and he was +convinced that no one was watching him. He hastened to the side-door +with Ali, entered hurriedly, and by the servants’ staircase, of which +he had the key, gained his bedroom without opening or disarranging a +single curtain, without even the porter having the slightest suspicion +that the house, which he supposed empty, contained its chief occupant. + +Arrived in his bedroom, the count motioned to Ali to stop; then he +passed into the dressing-room, which he examined. Everything appeared +as usual—the precious secretaire in its place, and the key in the +secretaire. He double locked it, took the key, returned to the bedroom +door, removed the double staple of the bolt, and went in. Meanwhile Ali +had procured the arms the count required—namely, a short carbine and a +pair of double-barrelled pistols, with which as sure an aim might be +taken as with a single-barrelled one. Thus armed, the count held the +lives of five men in his hands. It was about half-past nine. + +The count and Ali ate in haste a crust of bread and drank a glass of +Spanish wine; then Monte Cristo slipped aside one of the movable +panels, which enabled him to see into the adjoining room. He had within +his reach his pistols and carbine, and Ali, standing near him, held one +of the small Arabian hatchets, whose form has not varied since the +Crusades. Through one of the windows of the bedroom, on a line with +that in the dressing-room, the count could see into the street. + +Two hours passed thus. It was intensely dark; still Ali, thanks to his +wild nature, and the count, thanks doubtless to his long confinement, +could distinguish in the darkness the slightest movement of the trees. +The little light in the lodge had long been extinct. It might be +expected that the attack, if indeed an attack was projected, would be +made from the staircase of the ground floor, and not from a window; in +Monte Cristo’s opinion, the villains sought his life, not his money. It +would be his bedroom they would attack, and they must reach it by the +back staircase, or by the window in the dressing-room. + +The clock of the Invalides struck a quarter to twelve; the west wind +bore on its moistened gusts the doleful vibration of the three strokes. + +40152m + + + +As the last stroke died away, the count thought he heard a slight noise +in the dressing-room; this first sound, or rather this first grinding, +was followed by a second, then a third; at the fourth, the count knew +what to expect. A firm and well-practised hand was engaged in cutting +the four sides of a pane of glass with a diamond. The count felt his +heart beat more rapidly. + +Inured as men may be to danger, forewarned as they may be of peril, +they understand, by the fluttering of the heart and the shuddering of +the frame, the enormous difference between a dream and a reality, +between the project and the execution. However, Monte Cristo only made +a sign to apprise Ali, who, understanding that danger was approaching +from the other side, drew nearer to his master. Monte Cristo was eager +to ascertain the strength and number of his enemies. + +The window whence the noise proceeded was opposite the opening by which +the count could see into the dressing-room. He fixed his eyes on that +window—he distinguished a shadow in the darkness; then one of the panes +became quite opaque, as if a sheet of paper were stuck on the outside, +then the square cracked without falling. Through the opening an arm was +passed to find the fastening, then a second; the window turned on its +hinges, and a man entered. He was alone. + +“That’s a daring rascal,” whispered the count. + +At that moment Ali touched him slightly on the shoulder. He turned; Ali +pointed to the window of the room in which they were, facing the +street. + +“I see!” said he, “there are two of them; one does the work while the +other stands guard.” He made a sign to Ali not to lose sight of the man +in the street, and turned to the one in the dressing-room. + +The glass-cutter had entered, and was feeling his way, his arms +stretched out before him. At last he appeared to have made himself +familiar with his surroundings. There were two doors; he bolted them +both. + +When he drew near to the bedroom door, Monte Cristo expected that he +was coming in, and raised one of his pistols; but he simply heard the +sound of the bolts sliding in their copper rings. It was only a +precaution. The nocturnal visitor, ignorant of the fact that the count +had removed the staples, might now think himself at home, and pursue +his purpose with full security. Alone and free to act as he wished, the +man then drew from his pocket something which the count could not +discern, placed it on a stand, then went straight to the secretaire, +felt the lock, and contrary to his expectation found that the key was +missing. But the glass-cutter was a prudent man who had provided for +all emergencies. The count soon heard the rattling of a bunch of +skeleton keys, such as the locksmith brings when called to force a +lock, and which thieves call nightingales, doubtless from the music of +their nightly song when they grind against the bolt. + +“Ah, ha,” whispered Monte Cristo with a smile of disappointment, “he is +only a thief.” + +But the man in the dark could not find the right key. He reached the +instrument he had placed on the stand, touched a spring, and +immediately a pale light, just bright enough to render objects +distinct, was reflected on his hands and countenance. + +“By heavens,” exclaimed Monte Cristo, starting back, “it is——” + +Ali raised his hatchet. + +“Don’t stir,” whispered Monte Cristo, “and put down your hatchet; we +shall require no arms.” + +40154m + + + +Then he added some words in a low tone, for the exclamation which +surprise had drawn from the count, faint as it had been, had startled +the man who remained in the pose of the old knife-grinder. + +It was an order the count had just given, for immediately Ali went +noiselessly, and returned, bearing a black dress and a three-cornered +hat. Meanwhile Monte Cristo had rapidly taken off his greatcoat, +waistcoat, and shirt, and one might distinguish by the glimmering +through the open panel that he wore a pliant tunic of steel mail, of +which the last in France, where daggers are no longer dreaded, was worn +by King Louis XVI., who feared the dagger at his breast, and whose head +was cleft with a hatchet. The tunic soon disappeared under a long +cassock, as did his hair under a priest’s wig; the three-cornered hat +over this effectually transformed the count into an abbé. + +The man, hearing nothing more, stood erect, and while Monte Cristo was +completing his disguise had advanced straight to the secretaire, whose +lock was beginning to crack under his nightingale. + +“Try again,” whispered the count, who depended on the secret spring, +which was unknown to the picklock, clever as he might be—“try again, +you have a few minutes’ work there.” + +And he advanced to the window. The man whom he had seen seated on a +fence had got down, and was still pacing the street; but, strange as it +appeared, he cared not for those who might pass from the avenue of the +Champs-Élysées or by the Faubourg Saint-Honoré; his attention was +engrossed with what was passing at the count’s, and his only aim +appeared to be to discern every movement in the dressing-room. + +Monte Cristo suddenly struck his finger on his forehead and a smile +passed over his lips; then drawing near to Ali, he whispered: + +“Remain here, concealed in the dark, and whatever noise you hear, +whatever passes, only come in or show yourself if I call you.” + +Ali bowed in token of strict obedience. Monte Cristo then drew a +lighted taper from a closet, and when the thief was deeply engaged with +his lock, silently opened the door, taking care that the light should +shine directly on his face. The door opened so quietly that the thief +heard no sound; but, to his astonishment, the room was suddenly +illuminated. He turned. + +“Ah, good-evening, my dear M. Caderousse,” said Monte Cristo; “what are +you doing here, at such an hour?” + +40156m + + + +“The Abbé Busoni!” exclaimed Caderousse; and, not knowing how this +strange apparition could have entered when he had bolted the doors, he +let fall his bunch of keys, and remained motionless and stupefied. The +count placed himself between Caderousse and the window, thus cutting +off from the thief his only chance of retreat. + +“The Abbé Busoni!” repeated Caderousse, fixing his haggard gaze on the +count. + +“Yes, undoubtedly, the Abbé Busoni himself,” replied Monte Cristo. “And +I am very glad you recognize me, dear M. Caderousse; it proves you have +a good memory, for it must be about ten years since we last met.” + +This calmness of Busoni, combined with his irony and boldness, +staggered Caderousse. + +“The abbé, the abbé!” murmured he, clenching his fists, and his teeth +chattering. + +“So you would rob the Count of Monte Cristo?” continued the false abbé. + +“Reverend sir,” murmured Caderousse, seeking to regain the window, +which the count pitilessly blocked—“reverend sir, I don’t know—believe +me—I take my oath——” + +“A pane of glass out,” continued the count, “a dark lantern, a bunch of +false keys, a secretaire half forced—it is tolerably evident——” + +Caderousse was choking; he looked around for some corner to hide in, +some way of escape. + +“Come, come,” continued the count, “I see you are still the same,—an +assassin.” + +“Reverend sir, since you know everything, you know it was not I—it was +La Carconte; that was proved at the trial, since I was only condemned +to the galleys.” + +“Is your time, then, expired, since I find you in a fair way to return +there?” + +“No, reverend sir; I have been liberated by someone.” + +“That someone has done society a great kindness.” + +“Ah,” said Caderousse, “I had promised——” + +“And you are breaking your promise!” interrupted Monte Cristo. + +“Alas, yes!” said Caderousse very uneasily. + +“A bad relapse, that will lead you, if I mistake not, to the Place de +Grève. So much the worse, so much the worse—_diavolo!_ as they say in +my country.” + +“Reverend sir, I am impelled——” + +“Every criminal says the same thing.” + +“Poverty——” + +“Pshaw!” said Busoni disdainfully; “poverty may make a man beg, steal a +loaf of bread at a baker’s door, but not cause him to open a secretaire +in a house supposed to be inhabited. And when the jeweller Johannes had +just paid you 45,000 francs for the diamond I had given you, and you +killed him to get the diamond and the money both, was that also +poverty?” + +“Pardon, reverend sir,” said Caderousse; “you have saved my life once, +save me again!” + +“That is but poor encouragement.” + +“Are you alone, reverend sir, or have you there soldiers ready to seize +me?” + +“I am alone,” said the abbé, “and I will again have pity on you, and +will let you escape, at the risk of the fresh miseries my weakness may +lead to, if you tell me the truth.” + +“Ah, reverend sir,” cried Caderousse, clasping his hands, and drawing +nearer to Monte Cristo, “I may indeed say you are my deliverer!” + +“You mean to say you have been freed from confinement?” + +“Yes, that is true, reverend sir.” + +“Who was your liberator?” + +“An Englishman.” + +“What was his name?” + +“Lord Wilmore.” + +“I know him; I shall know if you lie.” + +“Ah, reverend sir, I tell you the simple truth.” + +“Was this Englishman protecting you?” + +“No, not me, but a young Corsican, my companion.” + +“What was this young Corsican’s name?” + +“Benedetto.” + +“Is that his Christian name?” + +“He had no other; he was a foundling.” + +“Then this young man escaped with you?” + +“He did.” + +“In what way?” + +“We were working at Saint-Mandrier, near Toulon. Do you know +Saint-Mandrier?” + +“I do.” + +“In the hour of rest, between noon and one o’clock——” + +“Galley-slaves having a nap after dinner! We may well pity the poor +fellows!” said the abbé. + +“Nay,” said Caderousse, “one can’t always work—one is not a dog.” + +“So much the better for the dogs,” said Monte Cristo. + +“While the rest slept, then, we went away a short distance; we severed +our fetters with a file the Englishman had given us, and swam away.” + +“And what is become of this Benedetto?” + +“I don’t know.” + +“You ought to know.” + +“No, in truth; we parted at Hyères.” And, to give more weight to his +protestation, Caderousse advanced another step towards the abbé, who +remained motionless in his place, as calm as ever, and pursuing his +interrogation. + +“You lie,” said the Abbé Busoni, with a tone of irresistible authority. + +“Reverend sir!” + +“You lie! This man is still your friend, and you, perhaps, make use of +him as your accomplice.” + +40160m + + + +“Oh, reverend sir!” + +“Since you left Toulon what have you lived on? Answer me!” + +“On what I could get.” + +“You lie,” repeated the abbé a third time, with a still more imperative +tone. Caderousse, terrified, looked at the count. “You have lived on +the money he has given you.” + +“True,” said Caderousse; “Benedetto has become the son of a great +lord.” + +“How can he be the son of a great lord?” + +“A natural son.” + +“And what is that great lord’s name?” + +“The Count of Monte Cristo, the very same in whose house we are.” + +“Benedetto the count’s son?” replied Monte Cristo, astonished in his +turn. + +“Well, I should think so, since the count has found him a false +father—since the count gives him four thousand francs a month, and +leaves him 500,000 francs in his will.” + +“Ah, yes,” said the factitious abbé, who began to understand; “and what +name does the young man bear meanwhile?” + +“Andrea Cavalcanti.” + +“Is it, then, that young man whom my friend the Count of Monte Cristo +has received into his house, and who is going to marry Mademoiselle +Danglars?” + +“Exactly.” + +“And you suffer that, you wretch!—you, who know his life and his +crime?” + +“Why should I stand in a comrade’s way?” said Caderousse. + +“You are right; it is not you who should apprise M. Danglars, it is I.” + +“Do not do so, reverend sir.” + +“Why not?” + +“Because you would bring us to ruin.” + +“And you think that to save such villains as you I will become an +abettor of their plot, an accomplice in their crimes?” + +“Reverend sir,” said Caderousse, drawing still nearer. + +“I will expose all.” + +“To whom?” + +“To M. Danglars.” + +“By Heaven!” cried Caderousse, drawing from his waistcoat an open +knife, and striking the count in the breast, “you shall disclose +nothing, reverend sir!” + +To Caderousse’s great astonishment, the knife, instead of piercing the +count’s breast, flew back blunted. At the same moment the count seized +with his left hand the assassin’s wrist, and wrung it with such +strength that the knife fell from his stiffened fingers, and Caderousse +uttered a cry of pain. But the count, disregarding his cry, continued +to wring the bandit’s wrist, until, his arm being dislocated, he fell +first on his knees, then flat on the floor. + +The count then placed his foot on his head, saying, “I know not what +restrains me from crushing thy skull, rascal.” + +“Ah, mercy—mercy!” cried Caderousse. + +The count withdrew his foot. + +40162m + + + +“Rise!” said he. Caderousse rose. + +“What a wrist you have, reverend sir!” said Caderousse, stroking his +arm, all bruised by the fleshy pincers which had held it; “what a +wrist!” + +“Silence! God gives me strength to overcome a wild beast like you; in +the name of that God I act,—remember that, wretch,—and to spare thee at +this moment is still serving him.” + +“Oh!” said Caderousse, groaning with pain. + +“Take this pen and paper, and write what I dictate.” + +“I don’t know how to write, reverend sir.” + +“You lie! Take this pen, and write!” + +Caderousse, awed by the superior power of the abbé, sat down and wrote: + +“Sir,—The man whom you are receiving at your house, and to whom you +intend to marry your daughter, is a felon who escaped with me from +confinement at Toulon. He was No. 59, and I No. 58. He was called +Benedetto, but he is ignorant of his real name, having never known his +parents.” + + +“Sign it!” continued the count. + +“But would you ruin me?” + +“If I sought your ruin, fool, I should drag you to the first +guard-house; besides, when that note is delivered, in all probability +you will have no more to fear. Sign it, then!” + +Caderousse signed it. + +“The address, ‘To monsieur the Baron Danglars, banker, Rue de la +Chaussée d’Antin.’” + +Caderousse wrote the address. The abbé took the note. + +“Now,” said he, “that suffices—begone!” + +“Which way?” + +“The way you came.” + +“You wish me to get out at that window?” + +“You got in very well.” + +“Oh, you have some design against me, reverend sir.” + +“Idiot! what design can I have?” + +“Why, then, not let me out by the door?” + +“What would be the advantage of waking the porter?” + +“Ah, reverend sir, tell me, do you wish me dead?” + +“I wish what God wills.” + +“But swear that you will not strike me as I go down.” + +“Cowardly fool!” + +“What do you intend doing with me?” + +“I ask you what can I do? I have tried to make you a happy man, and you +have turned out a murderer.” + +“Oh, monsieur,” said Caderousse, “make one more attempt—try me once +more!” + +“I will,” said the count. “Listen—you know if I may be relied on.” + +“Yes,” said Caderousse. + +“If you arrive safely at home——” + +“What have I to fear, except from you?” + +“If you reach your home safely, leave Paris, leave France, and wherever +you may be, so long as you conduct yourself well, I will send you a +small annuity; for, if you return home safely, then——” + +“Then?” asked Caderousse, shuddering. + +40164m + + + +“Then I shall believe God has forgiven you, and I will forgive you +too.” + +“As true as I am a Christian,” stammered Caderousse, “you will make me +die of fright!” + +“Now begone,” said the count, pointing to the window. + +Caderousse, scarcely yet relying on this promise, put his legs out of +the window and stood on the ladder. + +“Now go down,” said the abbé, folding his arms. Understanding he had +nothing more to fear from him, Caderousse began to go down. Then the +count brought the taper to the window, that it might be seen in the +Champs-Élysées that a man was getting out of the window while another +held a light. + +“What are you doing, reverend sir? Suppose a watchman should pass?” And +he blew out the light. He then descended, but it was only when he felt +his foot touch the ground that he was satisfied of his safety. + +Monte Cristo returned to his bedroom, and, glancing rapidly from the +garden to the street, he saw first Caderousse, who after walking to the +end of the garden, fixed his ladder against the wall at a different +part from where he came in. The count then looking over into the +street, saw the man who appeared to be waiting run in the same +direction, and place himself against the angle of the wall where +Caderousse would come over. Caderousse climbed the ladder slowly, and +looked over the coping to see if the street was quiet. No one could be +seen or heard. The clock of the Invalides struck one. Then Caderousse +sat astride the coping, and drawing up his ladder passed it over the +wall; then he began to descend, or rather to slide down by the two +stanchions, which he did with an ease which proved how accustomed he +was to the exercise. But, once started, he could not stop. In vain did +he see a man start from the shadow when he was halfway down—in vain did +he see an arm raised as he touched the ground. + +Before he could defend himself that arm struck him so violently in the +back that he let go the ladder, crying, “Help!” A second blow struck +him almost immediately in the side, and he fell, calling, “Help, +murder!” Then, as he rolled on the ground, his adversary seized him by +the hair, and struck him a third blow in the chest. + +This time Caderousse endeavored to call again, but he could only utter +a groan, and he shuddered as the blood flowed from his three wounds. +The assassin, finding that he no longer cried out, lifted his head up +by the hair; his eyes were closed, and the mouth was distorted. The +murderer, supposing him dead, let fall his head and disappeared. + +Then Caderousse, feeling that he was leaving him, raised himself on his +elbow, and with a dying voice cried with great effort: + +“Murder! I am dying! Help, reverend sir,—help!” + +This mournful appeal pierced the darkness. The door of the +back-staircase opened, then the side-gate of the garden, and Ali and +his master were on the spot with lights. + + + + Chapter 83. The Hand of God + +Caderousse continued to call piteously, “Help, reverend sir, help!” + +“What is the matter?” asked Monte Cristo. + +“Help,” cried Caderousse; “I am murdered!” + +“We are here;—take courage.” + +“Ah, it’s all over! You are come too late—you are come to see me die. +What blows, what blood!” + +He fainted. Ali and his master conveyed the wounded man into a room. +Monte Cristo motioned to Ali to undress him, and he then examined his +dreadful wounds. + +“My God!” he exclaimed, “thy vengeance is sometimes delayed, but only +that it may fall the more effectually.” Ali looked at his master for +further instructions. “Bring here immediately the king’s attorney, M. +de Villefort, who lives in the Faubourg Saint-Honoré. As you pass the +lodge, wake the porter, and send him for a surgeon.” + +Ali obeyed, leaving the abbé alone with Caderousse, who had not yet +revived. + +When the wretched man again opened his eyes, the count looked at him +with a mournful expression of pity, and his lips moved as if in prayer. +“A surgeon, reverend sir—a surgeon!” said Caderousse. + +“I have sent for one,” replied the abbé. + +“I know he cannot save my life, but he may strengthen me to give my +evidence.” + +“Against whom?” + +“Against my murderer.” + +“Did you recognize him?” + +“Yes; it was Benedetto.” + +“The young Corsican?” + +“Himself.” + +“Your comrade?” + +“Yes. After giving me the plan of this house, doubtless hoping I should +kill the count and he thus become his heir, or that the count would +kill me and I should be out of his way, he waylaid me, and has murdered +me.” + +“I have also sent for the procureur.” + +“He will not come in time; I feel my life fast ebbing.” + +“Wait a moment,” said Monte Cristo. He left the room, and returned in +five minutes with a phial. The dying man’s eyes were all the time +riveted on the door, through which he hoped succor would arrive. + +“Hasten, reverend sir, hasten! I shall faint again!” Monte Cristo +approached, and dropped on his purple lips three or four drops of the +contents of the phial. Caderousse drew a deep breath. “Oh,” said he, +“that is life to me; more, more!” + +“Two drops more would kill you,” replied the abbé. + +“Oh, send for someone to whom I can denounce the wretch!” + +“Shall I write your deposition? You can sign it.” + +“Yes, yes,” said Caderousse; and his eyes glistened at the thought of +this posthumous revenge. Monte Cristo wrote: + +“I die, murdered by the Corsican Benedetto, my comrade in the galleys +at Toulon, No. 59.” + + +“Quick, quick!” said Caderousse, “or I shall be unable to sign it.” + +Monte Cristo gave the pen to Caderousse, who collected all his +strength, signed it, and fell back on his bed, saying: + +“You will relate all the rest, reverend sir; you will say he calls +himself Andrea Cavalcanti. He lodges at the Hôtel des Princes. Oh, I am +dying!” He again fainted. The abbé made him smell the contents of the +phial, and he again opened his eyes. His desire for revenge had not +forsaken him. + +“Ah, you will tell all I have said, will you not, reverend sir?” + +“Yes, and much more.” + +“What more will you say?” + +“I will say he had doubtless given you the plan of this house, in the +hope the count would kill you. I will say, likewise, he had apprised +the count, by a note, of your intention, and, the count being absent, I +read the note and sat up to await you.” + +“And he will be guillotined, will he not?” said Caderousse. “Promise me +that, and I will die with that hope.” + +“I will say,” continued the count, “that he followed and watched you +the whole time, and when he saw you leave the house, ran to the angle +of the wall to conceal himself.” + +“Did you see all that?” + +“Remember my words: ‘If you return home safely, I shall believe God has +forgiven you, and I will forgive you also.’” + +“And you did not warn me!” cried Caderousse, raising himself on his +elbows. “You knew I should be killed on leaving this house, and did not +warn me!” + +40168m + + + +“No; for I saw God’s justice placed in the hands of Benedetto, and +should have thought it sacrilege to oppose the designs of Providence.” + +“God’s justice! Speak not of it, reverend sir. If God were just, you +know how many would be punished who now escape.” + +“Patience,” said the abbé, in a tone which made the dying man shudder; +“have patience!” + +Caderousse looked at him with amazement. + +“Besides,” said the abbé, “God is merciful to all, as he has been to +you; he is first a father, then a judge.” + +“Do you then believe in God?” said Caderousse. + +“Had I been so unhappy as not to believe in him until now,” said Monte +Cristo, “I must believe on seeing you.” + +Caderousse raised his clenched hands towards heaven. + +“Listen,” said the abbé, extending his hand over the wounded man, as if +to command him to believe; “this is what the God in whom, on your +death-bed, you refuse to believe, has done for you—he gave you health, +strength, regular employment, even friends—a life, in fact, which a man +might enjoy with a calm conscience. Instead of improving these gifts, +rarely granted so abundantly, this has been your course—you have given +yourself up to sloth and drunkenness, and in a fit of intoxication have +ruined your best friend.” + +“Help!” cried Caderousse; “I require a surgeon, not a priest; perhaps I +am not mortally wounded—I may not die; perhaps they can yet save my +life.” + +“Your wounds are so far mortal that, without the three drops I gave +you, you would now be dead. Listen, then.” + +“Ah,” murmured Caderousse, “what a strange priest you are; you drive +the dying to despair, instead of consoling them.” + +“Listen,” continued the abbé. “When you had betrayed your friend, God +began not to strike, but to warn you. Poverty overtook you. You had +already passed half your life in coveting that which you might have +honorably acquired; and already you contemplated crime under the excuse +of want, when God worked a miracle in your behalf, sending you, by my +hands, a fortune—brilliant, indeed, for you, who had never possessed +any. But this unexpected, unhoped-for, unheard-of fortune sufficed you +no longer when you once possessed it; you wished to double it, and +how?—by a murder! You succeeded, and then God snatched it from you, and +brought you to justice.” + +“It was not I who wished to kill the Jew,” said Caderousse; “it was La +Carconte.” + +“Yes,” said Monte Cristo, “and God,—I cannot say in justice, for his +justice would have slain you,—but God, in his mercy, spared your life.” + +“_Pardieu!_ to transport me for life, how merciful!” + +“You thought it a mercy then, miserable wretch! The coward who feared +death rejoiced at perpetual disgrace; for like all galley-slaves, you +said, ‘I may escape from prison, I cannot from the grave.’ And you said +truly; the way was opened for you unexpectedly. An Englishman visited +Toulon, who had vowed to rescue two men from infamy, and his choice +fell on you and your companion. You received a second fortune, money +and tranquillity were restored to you, and you, who had been condemned +to a felon’s life, might live as other men. Then, wretched creature, +then you tempted God a third time. ‘I have not enough,’ you said, when +you had more than you before possessed, and you committed a third +crime, without reason, without excuse. God is wearied; he has punished +you.” + +Caderousse was fast sinking. “Give me drink,” said he: “I thirst—I +burn!” Monte Cristo gave him a glass of water. “And yet that villain, +Benedetto, will escape!” + +“No one, I tell you, will escape; Benedetto will be punished.” + +“Then, you, too, will be punished, for you did not do your duty as a +priest—you should have prevented Benedetto from killing me.” + +“I?” said the count, with a smile which petrified the dying man, “when +you had just broken your knife against the coat of mail which protected +my breast! Yet perhaps if I had found you humble and penitent, I might +have prevented Benedetto from killing you; but I found you proud and +blood-thirsty, and I left you in the hands of God.” + +“I do not believe there is a God,” howled Caderousse; “you do not +believe it; you lie—you lie!” + +“Silence,” said the abbé; “you will force the last drop of blood from +your veins. What! you do not believe in God when he is striking you +dead? you will not believe in him, who requires but a prayer, a word, a +tear, and he will forgive? God, who might have directed the assassin’s +dagger so as to end your career in a moment, has given you this quarter +of an hour for repentance. Reflect, then, wretched man, and repent.” + +“No,” said Caderousse, “no; I will not repent. There is no God; there +is no Providence—all comes by chance.” + +“There is a Providence; there is a God,” said Monte Cristo, “of whom +you are a striking proof, as you lie in utter despair, denying him, +while I stand before you, rich, happy, safe and entreating that God in +whom you endeavor not to believe, while in your heart you still believe +in him.” + +“But who are you, then?” asked Caderousse, fixing his dying eyes on the +count. + +“Look well at me!” said Monte Cristo, putting the light near his face. + +“Well, the abbé—the Abbé Busoni.” Monte Cristo took off the wig which +disfigured him, and let fall his black hair, which added so much to the +beauty of his pallid features. + +“Oh?” said Caderousse, thunderstruck, “but for that black hair, I +should say you were the Englishman, Lord Wilmore.” + +“I am neither the Abbé Busoni nor Lord Wilmore,” said Monte Cristo; +“think again,—do you not recollect me?” + +There was a magic effect in the count’s words, which once more revived +the exhausted powers of the miserable man. + +“Yes, indeed,” said he; “I think I have seen you and known you +formerly.” + +“Yes, Caderousse, you have seen me; you knew me once.” + +“Who, then, are you? and why, if you knew me, do you let me die?” + +“Because nothing can save you; your wounds are mortal. Had it been +possible to save you, I should have considered it another proof of +God’s mercy, and I would again have endeavored to restore you, I swear +by my father’s tomb.” + +“By your father’s tomb!” said Caderousse, supported by a supernatural +power, and half-raising himself to see more distinctly the man who had +just taken the oath which all men hold sacred; “who, then, are you?” + +The count had watched the approach of death. He knew this was the last +struggle. He approached the dying man, and, leaning over him with a +calm and melancholy look, he whispered, “I am—I am——” + +And his almost closed lips uttered a name so low that the count himself +appeared afraid to hear it. Caderousse, who had raised himself on his +knees, and stretched out his arm, tried to draw back, then clasping his +hands, and raising them with a desperate effort, “Oh, my God, my God!” +said he, “pardon me for having denied thee; thou dost exist, thou art +indeed man’s father in heaven, and his judge on earth. My God, my Lord, +I have long despised thee! Pardon me, my God; receive me, Oh, my Lord!” + +Caderousse sighed deeply, and fell back with a groan. The blood no +longer flowed from his wounds. He was dead. + +“_One!_” said the count mysteriously, his eyes fixed on the corpse, +disfigured by so awful a death. + +Ten minutes afterwards the surgeon and the procureur arrived, the one +accompanied by the porter, the other by Ali, and were received by the +Abbé Busoni, who was praying by the side of the corpse. + + + + Chapter 84. Beauchamp + +The daring attempt to rob the count was the topic of conversation +throughout Paris for the next fortnight. The dying man had signed a +deposition declaring Benedetto to be the assassin. The police had +orders to make the strictest search for the murderer. Caderousse’s +knife, dark lantern, bunch of keys, and clothing, excepting the +waistcoat, which could not be found, were deposited at the registry; +the corpse was conveyed to the morgue. The count told everyone that +this adventure had happened during his absence at Auteuil, and that he +only knew what was related by the Abbé Busoni, who that evening, by +mere chance, had requested to pass the night in his house, to examine +some valuable books in his library. + +Bertuccio alone turned pale whenever Benedetto’s name was mentioned in +his presence, but there was no reason why anyone should notice his +doing so. + +Villefort, being called on to prove the crime, was preparing his brief +with the same ardor that he was accustomed to exercise when required to +speak in criminal cases. + +But three weeks had already passed, and the most diligent search had +been unsuccessful; the attempted robbery and the murder of the robber +by his comrade were almost forgotten in anticipation of the approaching +marriage of Mademoiselle Danglars to the Count Andrea Cavalcanti. It +was expected that this wedding would shortly take place, as the young +man was received at the banker’s as the betrothed. + +Letters had been despatched to M. Cavalcanti, as the count’s father, +who highly approved of the union, regretted his inability to leave +Parma at that time, and promised a wedding gift of a hundred and fifty +thousand livres. It was agreed that the three millions should be +intrusted to Danglars to invest; some persons had warned the young man +of the circumstances of his future father-in-law, who had of late +sustained repeated losses; but with sublime disinterestedness and +confidence the young man refused to listen, or to express a single +doubt to the baron. + +The baron adored Count Andrea Cavalcanti; not so Mademoiselle Eugénie +Danglars. With an instinctive hatred of matrimony, she suffered +Andrea’s attentions in order to get rid of Morcerf; but when Andrea +urged his suit, she betrayed an entire dislike to him. The baron might +possibly have perceived it, but, attributing it to a caprice, feigned +ignorance. + +The delay demanded by Beauchamp had nearly expired. Morcerf appreciated +the advice of Monte Cristo to let things die away of their own accord. +No one had taken up the remark about the general, and no one had +recognized in the officer who betrayed the castle of Yanina the noble +count in the House of Peers. + +Albert, however, felt no less insulted; the few lines which had +irritated him were certainly intended as an insult. Besides, the manner +in which Beauchamp had closed the conference left a bitter recollection +in his heart. He cherished the thought of the duel, hoping to conceal +its true cause even from his seconds. Beauchamp had not been seen since +the day he visited Albert, and those of whom the latter inquired always +told him he was out on a journey which would detain him some days. +Where he was no one knew. + +One morning Albert was awakened by his valet de chambre, who announced +Beauchamp. Albert rubbed his eyes, ordered his servant to introduce him +into the small smoking-room on the ground floor, dressed himself +quickly, and went down. + +He found Beauchamp pacing the room; on perceiving him Beauchamp +stopped. + +“Your arrival here, without waiting my visit at your house today, looks +well, sir,” said Albert. “Tell me, may I shake hands with you, saying, +‘Beauchamp, acknowledge you have injured me, and retain my friendship,’ +or must I simply propose to you a choice of arms?” + +“Albert,” said Beauchamp, with a look of sorrow which stupefied the +young man, “let us first sit down and talk.” + +“Rather, sir, before we sit down, I must demand your answer.” + +“Albert,” said the journalist, “these are questions which it is +difficult to answer.” + +“I will facilitate it by repeating the question, ‘Will you, or will you +not, retract?’” + +“Morcerf, it is not enough to answer ‘yes’ or ‘no’ to questions which +concern the honor, the social interest, and the life of such a man as +Lieutenant-général the Count of Morcerf, peer of France.” + +“What must then be done?” + +40174m + + + +“What I have done, Albert. I reasoned thus—money, time, and fatigue are +nothing compared with the reputation and interests of a whole family; +probabilities will not suffice, only facts will justify a deadly combat +with a friend. If I strike with the sword, or discharge the contents of +a pistol at man with whom, for three years, I have been on terms of +intimacy, I must, at least, know why I do so; I must meet him with a +heart at ease, and that quiet conscience which a man needs when his own +arm must save his life.” + +“Well,” said Morcerf, impatiently, “what does all this mean?” + +“It means that I have just returned from Yanina.” + +“From Yanina?” + +“Yes.” + +“Impossible!” + +“Here is my passport; examine the visa—Geneva, Milan, Venice, Trieste, +Delvino, Yanina. Will you believe the government of a republic, a +kingdom, and an empire?” Albert cast his eyes on the passport, then +raised them in astonishment to Beauchamp. + +“You have been to Yanina?” said he. + +“Albert, had you been a stranger, a foreigner, a simple lord, like that +Englishman who came to demand satisfaction three or four months since, +and whom I killed to get rid of, I should not have taken this trouble; +but I thought this mark of consideration due to you. I took a week to +go, another to return, four days of quarantine, and forty-eight hours +to stay there; that makes three weeks. I returned last night, and here +I am.” + +“What circumlocution! How long you are before you tell me what I most +wish to know?” + +“Because, in truth, Albert——” + +“You hesitate?” + +“Yes,—I fear.” + +“You fear to acknowledge that your correspondent has deceived you? Oh, +no self-love, Beauchamp. Acknowledge it, Beauchamp; your courage cannot +be doubted.” + +“Not so,” murmured the journalist; “on the contrary——” + +Albert turned frightfully pale; he endeavored to speak, but the words +died on his lips. + +“My friend,” said Beauchamp, in the most affectionate tone, “I should +gladly make an apology; but, alas!——” + +“But what?” + +“The paragraph was correct, my friend.” + +“What? That French officer——” + +“Yes.” + +“Fernand?” + +“Yes.” + +“The traitor who surrendered the castle of the man in whose service he +was——” + +“Pardon me, my friend, that man was your father!” + +Albert advanced furiously towards Beauchamp, but the latter restrained +him more by a mild look than by his extended hand. + +“My friend,” said he, “here is a proof of it.” + +40176m + + + +Albert opened the paper, it was an attestation of four notable +inhabitants of Yanina, proving that Colonel Fernand Mondego, in the +service of Ali Tepelini, had surrendered the castle for two million +crowns. The signatures were perfectly legal. Albert tottered and fell +overpowered in a chair. It could no longer be doubted; the family name +was fully given. After a moment’s mournful silence, his heart +overflowed, and he gave way to a flood of tears. Beauchamp, who had +watched with sincere pity the young man’s paroxysm of grief, approached +him. + +“Now, Albert,” said he, “you understand me—do you not? I wished to see +all, and to judge of everything for myself, hoping the explanation +would be in your father’s favor, and that I might do him justice. But, +on the contrary, the particulars which are given prove that Fernand +Mondego, raised by Ali Pasha to the rank of governor-general, is no +other than Count Fernand of Morcerf; then, recollecting the honor you +had done me, in admitting me to your friendship, I hastened to you.” + +Albert, still extended on the chair, covered his face with both hands, +as if to prevent the light from reaching him. + +“I hastened to you,” continued Beauchamp, “to tell you, Albert, that in +this changing age, the faults of a father cannot revert upon his +children. Few have passed through this revolutionary period, in the +midst of which we were born, without some stain of infamy or blood to +soil the uniform of the soldier, or the gown of the magistrate. Now I +have these proofs, Albert, and I am in your confidence, no human power +can force me to a duel which your own conscience would reproach you +with as criminal, but I come to offer you what you can no longer demand +of me. Do you wish these proofs, these attestations, which I alone +possess, to be destroyed? Do you wish this frightful secret to remain +with us? Confided to me, it shall never escape my lips; say, Albert, my +friend, do you wish it?” + +Albert threw himself on Beauchamp’s neck. + +“Ah, noble fellow!” cried he. + +“Take these,” said Beauchamp, presenting the papers to Albert. + +Albert seized them with a convulsive hand, tore them in pieces, and +trembling lest the least vestige should escape and one day appear to +confront him, he approached the wax-light, always kept burning for +cigars, and burned every fragment. + +“Dear, excellent friend,” murmured Albert, still burning the papers. + +“Let all be forgotten as a sorrowful dream,” said Beauchamp; “let it +vanish as the last sparks from the blackened paper, and disappear as +the smoke from those silent ashes.” + +“Yes, yes,” said Albert, “and may there remain only the eternal +friendship which I promised to my deliverer, which shall be transmitted +to our children’s children, and shall always remind me that I owe my +life and the honor of my name to you,—for had this been known, oh, +Beauchamp, I should have destroyed myself; or,—no, my poor mother! I +could not have killed her by the same blow,—I should have fled from my +country.” + +“Dear Albert,” said Beauchamp. But this sudden and factitious joy soon +forsook the young man, and was succeeded by a still greater grief. + +“Well,” said Beauchamp, “what still oppresses you, my friend?” + +40178m + + + +“I am broken-hearted,” said Albert. “Listen, Beauchamp! I cannot thus, +in a moment relinquish the respect, the confidence, and pride with +which a father’s untarnished name inspires a son. Oh, Beauchamp, +Beauchamp, how shall I now approach mine? Shall I draw back my forehead +from his embrace, or withhold my hand from his? I am the most wretched +of men. Ah, my mother, my poor mother!” said Albert, gazing through his +tears at his mother’s portrait; “if you know this, how much must you +suffer!” + +“Come,” said Beauchamp, taking both his hands, “take courage, my +friend.” + +“But how came that first note to be inserted in your journal? Some +unknown enemy—an invisible foe—has done this.” + +“The more must you fortify yourself, Albert. Let no trace of emotion be +visible on your countenance, bear your grief as the cloud bears within +it ruin and death—a fatal secret, known only when the storm bursts. Go, +my friend, reserve your strength for the moment when the crash shall +come.” + +40179m + + + +“You think, then, all is not over yet?” said Albert, horror-stricken. + +“I think nothing, my friend; but all things are possible. By the way——” + +“What?” said Albert, seeing that Beauchamp hesitated. + +“Are you going to marry Mademoiselle Danglars?” + +“Why do you ask me now?” + +“Because the rupture or fulfilment of this engagement is connected with +the person of whom we were speaking.” + +“How?” said Albert, whose brow reddened; “you think M. Danglars——” + +“I ask you only how your engagement stands? Pray put no construction on +my words I do not mean they should convey, and give them no undue +weight.” + +“No.” said Albert, “the engagement is broken off.” + +“Well,” said Beauchamp. Then, seeing the young man was about to relapse +into melancholy, “Let us go out, Albert,” said he; “a ride in the wood +in the phaeton, or on horseback, will refresh you; we will then return +to breakfast, and you shall attend to your affairs, and I to mine.” + +“Willingly,” said Albert; “but let us walk. I think a little exertion +would do me good.” + +The two friends walked out on the fortress. When they arrived at the +Madeleine: + +“Since we are out,” said Beauchamp, “let us call on M. de Monte Cristo; +he is admirably adapted to revive one’s spirits, because he never +interrogates, and in my opinion those who ask no questions are the best +comforters.” + +“Gladly,” said Albert; “let us call—I love him.” + + + + Chapter 85. The Journey + +Monte Cristo uttered a joyful exclamation on seeing the young men +together. “Ah, ha!” said he, “I hope all is over, explained and +settled.” + +“Yes,” said Beauchamp; “the absurd reports have died away, and should +they be renewed, I would be the first to oppose them; so let us speak +no more of it.” + +“Albert will tell you,” replied the count “that I gave him the same +advice. Look,” added he. “I am finishing the most execrable morning’s +work.” + +“What is it?” said Albert; “arranging your papers, apparently.” + +“My papers, thank God, no,—my papers are all in capital order, because +I have none; but M. Cavalcanti’s.” + +“M. Cavalcanti’s?” asked Beauchamp. + +“Yes; do you not know that this is a young man whom the count is +introducing?” said Morcerf. + +“Let us not misunderstand each other,” replied Monte Cristo; “I +introduce no one, and certainly not M. Cavalcanti.” + +“And who,” said Albert with a forced smile, “is to marry Mademoiselle +Danglars instead of me, which grieves me cruelly.” + +“What? Cavalcanti is going to marry Mademoiselle Danglars?” asked +Beauchamp. + +“Certainly! do you come from the end of the world?” said Monte Cristo; +“you, a journalist, the husband of renown? It is the talk of all +Paris.” + +“And you, count, have made this match?” asked Beauchamp. + +“I? Silence, purveyor of gossip, do not spread that report. I make a +match? No, you do not know me; I have done all in my power to oppose +it.” + +“Ah, I understand,” said Beauchamp, “on our friend Albert’s account.” + +“On my account?” said the young man; “oh, no, indeed, the count will do +me the justice to assert that I have, on the contrary, always entreated +him to break off my engagement, and happily it is ended. The count +pretends I have not him to thank;—so be it—I will erect an altar _Deo +ignoto_.” + +“Listen,” said Monte Cristo; “I have had little to do with it, for I am +at variance both with the father-in-law and the young man; there is +only Mademoiselle Eugénie, who appears but little charmed with the +thoughts of matrimony, and who, seeing how little I was disposed to +persuade her to renounce her dear liberty, retains any affection for +me.” + +“And do you say this wedding is at hand?” + +“Oh, yes, in spite of all I could say. I do not know the young man; he +is said to be of good family and rich, but I never trust to vague +assertions. I have warned M. Danglars of it till I am tired, but he is +fascinated with his Luccanese. I have even informed him of a +circumstance I consider very serious; the young man was either charmed +by his nurse, stolen by gypsies, or lost by his tutor, I scarcely know +which. But I do know his father lost sight of him for more than ten +years; what he did during these ten years, God only knows. Well, all +that was useless. They have commissioned me to write to the major to +demand papers, and here they are. I send them, but like Pilate—washing +my hands.” + +“And what does Mademoiselle d’Armilly say to you for robbing her of her +pupil?” + +“Oh, well, I don’t know; but I understand that she is going to Italy. +Madame Danglars asked me for letters of recommendation for the +_impresari_; I gave her a few lines for the director of the Valle +Theatre, who is under some obligation to me. But what is the matter, +Albert? you look dull; are you, after all, unconsciously in love with +Mademoiselle Eugénie?” + +“I am not aware of it,” said Albert, smiling sorrowfully. Beauchamp +turned to look at some paintings. + +“But,” continued Monte Cristo, “you are not in your usual spirits?” + +“I have a dreadful headache,” said Albert. + +“Well, my dear viscount,” said Monte Cristo, “I have an infallible +remedy to propose to you.” + +“What is that?” asked the young man. + +“A change.” + +“Indeed?” said Albert. + +“Yes; and as I am just now excessively annoyed, I shall go from home. +Shall we go together?” + +“You annoyed, count?” said Beauchamp; “and by what?” + +“Ah, you think very lightly of it; I should like to see you with a +brief preparing in your house.” + +“What brief?” + +“The one M. de Villefort is preparing against my amiable assassin—some +brigand escaped from the gallows apparently.” + +“True,” said Beauchamp; “I saw it in the paper. Who is this +Caderousse?” + +“Some Provençal, it appears. M. de Villefort heard of him at +Marseilles, and M. Danglars recollects having seen him. Consequently, +the procureur is very active in the affair, and the prefect of police +very much interested; and, thanks to that interest, for which I am very +grateful, they send me all the robbers of Paris and the neighborhood, +under pretence of their being Caderousse’s murderers, so that in three +months, if this continues, every robber and assassin in France will +have the plan of my house at his fingers’ ends. I am resolved to desert +them and go to some remote corner of the earth, and shall be happy if +you will accompany me, viscount.” + +“Willingly.” + +“Then it is settled?” + +“Yes, but where?” + +“I have told you, where the air is pure, where every sound soothes, +where one is sure to be humbled, however proud may be his nature. I +love that humiliation, I, who am master of the universe, as was +Augustus.” + +“But where are you really going?” + +“To sea, viscount; you know I am a sailor. I was rocked when an infant +in the arms of old Ocean, and on the bosom of the beautiful Amphitrite; +I have sported with the green mantle of the one and the azure robe of +the other; I love the sea as a mistress, and pine if I do not often see +her.” + +“Let us go, count.” + +“To sea?” + +“Yes.” + +“You accept my proposal?” + +“I do.” + +“Well, viscount, there will be in my courtyard this evening a good +travelling britzka, with four post-horses, in which one may rest as in +a bed. M. Beauchamp, it holds four very well, will you accompany us?” + +“Thank you, I have just returned from sea.” + +“What? you have been to sea?” + +“Yes; I have just made a little excursion to the Borromean Islands18.” + +“What of that? come with us,” said Albert. + +“No, dear Morcerf; you know I only refuse when the thing is impossible. +Besides, it is important,” added he in a low tone, “that I should +remain in Paris just now to watch the paper.” + +“Ah, you are a good and an excellent friend,” said Albert; “yes, you +are right; watch, watch, Beauchamp, and try to discover the enemy who +made this disclosure.” + +Albert and Beauchamp parted, the last pressure of their hands +expressing what their tongues could not before a stranger. + +“Beauchamp is a worthy fellow,” said Monte Cristo, when the journalist +was gone; “is he not, Albert?” + +“Yes, and a sincere friend; I love him devotedly. But now we are +alone,—although it is immaterial to me,—where are we going?” + +“Into Normandy, if you like.” + +“Delightful; shall we be quite retired? have no society, no neighbors?” + +“Our companions will be riding-horses, dogs to hunt with, and a +fishing-boat.” + +“Exactly what I wish for; I will apprise my mother of my intention, and +return to you.” + +“But shall you be allowed to go into Normandy?” + +“I may go where I please.” + +“Yes, I am aware you may go alone, since I once met you in Italy—but to +accompany the mysterious Monte Cristo?” + +“You forget, count, that I have often told you of the deep interest my +mother takes in you.” + +“‘Woman is fickle.’ said Francis I.; ‘woman is like a wave of the sea,’ +said Shakespeare; both the great king and the great poet ought to have +known woman’s nature well.” + +“Woman’s, yes; my mother is not woman, but _a_ woman.” + +“As I am only a humble foreigner, you must pardon me if I do not +understand all the subtle refinements of your language.” + +“What I mean to say is, that my mother is not quick to give her +confidence, but when she does she never changes.” + +“Ah, yes, indeed,” said Monte Cristo with a sigh; “and do you think she +is in the least interested in me?” + +“I repeat it, you must really be a very strange and superior man, for +my mother is so absorbed by the interest you have excited, that when I +am with her she speaks of no one else.” + +“And does she try to make you dislike me?” + +“On the contrary, she often says, ‘Morcerf, I believe the count has a +noble nature; try to gain his esteem.’” + +“Indeed?” said Monte Cristo, sighing. + +“You see, then,” said Albert, “that instead of opposing, she will +encourage me.” + +“Adieu, then, until five o’clock; be punctual, and we shall arrive at +twelve or one.” + +“At Tréport?” + +“Yes; or in the neighborhood.” + +“But can we travel forty-eight leagues in eight hours?” + +“Easily,” said Monte Cristo. + +“You are certainly a prodigy; you will soon not only surpass the +railway, which would not be very difficult in France, but even the +telegraph.” + +“But, viscount, since we cannot perform the journey in less than seven +or eight hours, do not keep me waiting.” + +“Do not fear, I have little to prepare.” + +Monte Cristo smiled as he nodded to Albert, then remained a moment +absorbed in deep meditation. But passing his hand across his forehead +as if to dispel his reverie, he rang the bell twice and Bertuccio +entered. + +“Bertuccio,” said he, “I intend going this evening to Normandy, instead +of tomorrow or the next day. You will have sufficient time before five +o’clock; despatch a messenger to apprise the grooms at the first +station. M. de Morcerf will accompany me.” + +Bertuccio obeyed and despatched a courier to Pontoise to say the +travelling-carriage would arrive at six o’clock. From Pontoise another +express was sent to the next stage, and in six hours all the horses +stationed on the road were ready. + +Before his departure, the count went to Haydée’s apartments, told her +his intention, and resigned everything to her care. + +Albert was punctual. The journey soon became interesting from its +rapidity, of which Morcerf had formed no previous idea. + +“Truly,” said Monte Cristo, “with your post-horses going at the rate of +two leagues an hour, and that absurd law that one traveller shall not +pass another without permission, so that an invalid or ill-tempered +traveller may detain those who are well and active, it is impossible to +move; I escape this annoyance by travelling with my own postilion and +horses; do I not, Ali?” + +The count put his head out of the window and whistled, and the horses +appeared to fly. The carriage rolled with a thundering noise over the +pavement, and everyone turned to notice the dazzling meteor. Ali, +smiling, repeated the sound, grasped the reins with a firm hand, and +spurred his horses, whose beautiful manes floated in the breeze. This +child of the desert was in his element, and with his black face and +sparkling eyes appeared, in the cloud of dust he raised, like the +genius of the simoom and the god of the hurricane. + +“I never knew till now the delight of speed,” said Morcerf, and the +last cloud disappeared from his brow; “but where the devil do you get +such horses? Are they made to order?” + +“Precisely,” said the count; “six years since I bought a horse in +Hungary remarkable for its swiftness. The thirty-two that we shall use +tonight are its progeny; they are all entirely black, with the +exception of a star upon the forehead.” + +“That is perfectly admirable; but what do you do, count, with all these +horses?” + +“You see, I travel with them.” + +“But you are not always travelling.” + +“When I no longer require them, Bertuccio will sell them, and he +expects to realize thirty or forty thousand francs by the sale.” + +“But no monarch in Europe will be wealthy enough to purchase them.” + +“Then he will sell them to some Eastern vizier, who will empty his +coffers to purchase them, and refill them by applying the bastinado to +his subjects.” + +“Count, may I suggest one idea to you?” + +“Certainly.” + +“It is that, next to you, Bertuccio must be the richest gentleman in +Europe.” + +“You are mistaken, viscount; I believe he has not a franc in his +possession.” + +“Then he must be a wonder. My dear count, if you tell me many more +marvellous things, I warn you I shall not believe them.” + +“I countenance nothing that is marvellous, M. Albert. Tell me, why does +a steward rob his master?” + +“Because, I suppose, it is his nature to do so, for the love of +robbing.” + +“You are mistaken; it is because he has a wife and family, and +ambitious desires for himself and them. Also because he is not sure of +always retaining his situation, and wishes to provide for the future. +Now, M. Bertuccio is alone in the world; he uses my property without +accounting for the use he makes of it; he is sure never to leave my +service.” + +“Why?” + +“Because I should never get a better.” + +“Probabilities are deceptive.” + +“But I deal in certainties; he is the best servant over whom one has +the power of life and death.” + +“Do you possess that right over Bertuccio?” + +“Yes.” + +There are words which close a conversation with an iron door; such was +the count’s “yes.” + +The whole journey was performed with equal rapidity; the thirty-two +horses, dispersed over seven stages, brought them to their destination +in eight hours. At midnight they arrived at the gate of a beautiful +park. The porter was in attendance; he had been apprised by the groom +of the last stage of the count’s approach. At half past two in the +morning Morcerf was conducted to his apartments, where a bath and +supper were prepared. The servant who had travelled at the back of the +carriage waited on him; Baptistin, who rode in front, attended the +count. + +Albert bathed, took his supper, and went to bed. All night he was +lulled by the melancholy noise of the surf. On rising, he went to his +window, which opened on a terrace, having the sea in front, and at the +back a pretty park bounded by a small forest. + +In a creek lay a little sloop, with a narrow keel and high masts, +bearing on its flag the Monte Cristo arms which were a mountain _or_, +on a sea _azure_, with a cross _gules_ in chief which might be an +allusion to his name that recalled Calvary, the mount rendered by our +Lord’s passion more precious than gold, and to the degrading cross +which his blood had rendered holy; or it might be some personal +remembrance of suffering and regeneration buried in the night of this +mysterious personage’s past life. + +Around the schooner lay a number of small fishing-boats belonging to +the fishermen of the neighboring village, like humble subjects awaiting +orders from their queen. There, as in every spot where Monte Cristo +stopped, if but for two days, luxury abounded and life went on with the +utmost ease. + +Albert found in his anteroom two guns, with all the accoutrements for +hunting; a lofty room on the ground floor containing all the ingenious +instruments the English—eminent in piscatory pursuits, since they are +patient and sluggish—have invented for fishing. The day passed in +pursuing those exercises in which Monte Cristo excelled. They killed a +dozen pheasants in the park, as many trout in the stream, dined in a +summer-house overlooking the ocean, and took tea in the library. + +Towards the evening of the third day. Albert, completely exhausted with +the exercise which invigorated Monte Cristo, was sleeping in an +armchair near the window, while the count was designing with his +architect the plan of a conservatory in his house, when the sound of a +horse at full speed on the high road made Albert look up. He was +disagreeably surprised to see his own valet de chambre, whom he had not +brought, that he might not inconvenience Monte Cristo. + +40188m + + + +“Florentin here!” cried he, starting up; “is my mother ill?” And he +hastened to the door. Monte Cristo watched and saw him approach the +valet, who drew a small sealed parcel from his pocket, containing a +newspaper and a letter. + +“From whom is this?” said he eagerly. + +“From M. Beauchamp,” replied Florentin. + +“Did he send you?” + +“Yes, sir; he sent for me to his house, gave me money for my journey, +procured a horse, and made me promise not to stop till I had reached +you, I have come in fifteen hours.” + +Albert opened the letter with fear, uttered a shriek on reading the +first line, and seized the paper. His sight was dimmed, his legs sank +under him, and he would have fallen had not Florentin supported him. + +“Poor young man,” said Monte Cristo in a low voice; “it is then true +that the sin of the father shall fall on the children to the third and +fourth generation.” + +Meanwhile Albert had revived, and, continuing to read, he threw back +his head, saying: + +“Florentin, is your horse fit to return immediately?” + +“It is a poor, lame post-horse.” + +“In what state was the house when you left?” + +“All was quiet, but on returning from M. Beauchamp’s, I found madame in +tears; she had sent for me to know when you would return. I told her my +orders from M. Beauchamp; she first extended her arms to prevent me, +but after a moment’s reflection, ‘Yes, go, Florentin,’ said she, ‘and +may he come quickly.’” + +“Yes, my mother,” said Albert, “I will return, and woe to the infamous +wretch! But first of all I must get there.” + +He went back to the room where he had left Monte Cristo. Five minutes +had sufficed to make a complete transformation in his appearance. His +voice had become rough and hoarse; his face was furrowed with wrinkles; +his eyes burned under the blue-veined lids, and he tottered like a +drunken man. + +“Count,” said he, “I thank you for your hospitality, which I would +gladly have enjoyed longer; but I must return to Paris.” + +“What has happened?” + +“A great misfortune, more important to me than life. Don’t question me, +I beg of you, but lend me a horse.” + +“My stables are at your command, viscount; but you will kill yourself +by riding on horseback. Take a post-chaise or a carriage.” + +“No, it would delay me, and I need the fatigue you warn me of; it will +do me good.” + +Albert reeled as if he had been shot, and fell on a chair near the +door. Monte Cristo did not see this second manifestation of physical +exhaustion; he was at the window, calling: + +“Ali, a horse for M. de Morcerf—quick! he is in a hurry!” + +40190m + + + +These words restored Albert; he darted from the room, followed by the +count. + +“Thank you!” cried he, throwing himself on his horse. + +“Return as soon as you can, Florentin. Must I use any password to +procure a horse?” + +“Only dismount; another will be immediately saddled.” + +Albert hesitated a moment. “You may think my departure strange and +foolish,” said the young man; “you do not know how a paragraph in a +newspaper may exasperate one. Read that,” said he, “when I am gone, +that you may not be witness of my anger.” + +While the count picked up the paper he put spurs to his horse, which +leaped in astonishment at such an unusual stimulus, and shot away with +the rapidity of an arrow. The count watched him with a feeling of +compassion, and when he had completely disappeared, read as follows: + +“The French officer in the service of Ali Pasha of Yanina alluded to +three weeks since in _l’Impartial_, who not only surrendered the castle +of Yanina, but sold his benefactor to the Turks, styled himself truly +at that time Fernand, as our esteemed contemporary states; but he has +since added to his Christian name a title of nobility and a family +name. He now calls himself the Count of Morcerf, and ranks among the +peers.” + +Thus the terrible secret, which Beauchamp had so generously destroyed, +appeared again like an armed phantom; and another paper, deriving its +information from some malicious source, had published two days after +Albert’s departure for Normandy the few lines which had rendered the +unfortunate young man almost crazy. + + + + Chapter 86. The Trial + +At eight o’clock in the morning Albert had arrived at Beauchamp’s door. +The valet de chambre had received orders to usher him in at once. +Beauchamp was in his bath. + +“Here I am,” Albert said. + +“Well, my poor friend,” replied Beauchamp, “I expected you.” + +“I need not say I think you are too faithful and too kind to have +spoken of that painful circumstance. Your having sent for me is another +proof of your affection. So, without losing time, tell me, have you the +slightest idea whence this terrible blow proceeds?” + +“I think I have some clew.” + +“But first tell me all the particulars of this shameful plot.” + +Beauchamp proceeded to relate to the young man, who was overwhelmed +with shame and grief, the following facts. Two days previously, the +article had appeared in another paper besides _ l’Impartial_, and, what +was more serious, one that was well known as a government paper. +Beauchamp was breakfasting when he read the paragraph. He sent +immediately for a cabriolet, and hastened to the publisher’s office. +Although professing diametrically opposite principles from those of the +editor of the other paper, Beauchamp—as it sometimes, we may say often, +happens—was his intimate friend. The editor was reading, with apparent +delight, a leading article in the same paper on beet-sugar, probably a +composition of his own. + +“Ah, _pardieu!_” said Beauchamp, “with the paper in your hand, my +friend, I need not tell you the cause of my visit.” + +“Are you interested in the sugar question?” asked the editor of the +ministerial paper. + +“No,” replied Beauchamp, “I have not considered the question; a totally +different subject interests me.” + +“What is it?” + +“The article relative to Morcerf.” + +“Indeed? Is it not a curious affair?” + +“So curious, that I think you are running a great risk of a prosecution +for defamation of character.” + +“Not at all; we have received with the information all the requisite +proofs, and we are quite sure M. de Morcerf will not raise his voice +against us; besides, it is rendering a service to one’s country to +denounce these wretched criminals who are unworthy of the honor +bestowed on them.” + +Beauchamp was thunderstruck. + +“Who, then, has so correctly informed you?” asked he; “for my paper, +which gave the first information on the subject, has been obliged to +stop for want of proof; and yet we are more interested than you in +exposing M. de Morcerf, as he is a peer of France, and we are of the +opposition.” + +“Oh, that is very simple; we have not sought to scandalize. This news +was brought to us. A man arrived yesterday from Yanina, bringing a +formidable array of documents; and when we hesitated to publish the +accusatory article, he told us it should be inserted in some other +paper.” + +Beauchamp understood that nothing remained but to submit, and left the +office to despatch a courier to Morcerf. But he had been unable to send +to Albert the following particulars, as the events had transpired after +the messenger’s departure; namely, that the same day a great agitation +was manifest in the House of Peers among the usually calm members of +that dignified assembly. Everyone had arrived almost before the usual +hour, and was conversing on the melancholy event which was to attract +the attention of the public towards one of their most illustrious +colleagues. Some were perusing the article, others making comments and +recalling circumstances which substantiated the charges still more. + +The Count of Morcerf was no favorite with his colleagues. Like all +upstarts, he had had recourse to a great deal of haughtiness to +maintain his position. The true nobility laughed at him, the talented +repelled him, and the honorable instinctively despised him. He was, in +fact, in the unhappy position of the victim marked for sacrifice; the +finger of God once pointed at him, everyone was prepared to raise the +hue and cry. + +The Count of Morcerf alone was ignorant of the news. He did not take in +the paper containing the defamatory article, and had passed the morning +in writing letters and in trying a horse. He arrived at his usual hour, +with a proud look and insolent demeanor; he alighted, passed through +the corridors, and entered the house without observing the hesitation +of the door-keepers or the coolness of his colleagues. + +40194m + + + +Business had already been going on for half an hour when he entered. +Everyone held the accusing paper, but, as usual, no one liked to take +upon himself the responsibility of the attack. At length an honorable +peer, Morcerf’s acknowledged enemy, ascended the tribune with that +solemnity which announced that the expected moment had arrived. There +was an impressive silence; Morcerf alone knew not why such profound +attention was given to an orator who was not always listened to with so +much complacency. + +The count did not notice the introduction, in which the speaker +announced that his communication would be of that vital importance that +it demanded the undivided attention of the House; but at the mention of +Yanina and Colonel Fernand, he turned so frightfully pale that every +member shuddered and fixed his eyes upon him. Moral wounds have this +peculiarity,—they may be hidden, but they never close; always painful, +always ready to bleed when touched, they remain fresh and open in the +heart. + +The article having been read during the painful hush that followed, a +universal shudder pervaded the assembly, and immediately the closest +attention was given to the orator as he resumed his remarks. He stated +his scruples and the difficulties of the case; it was the honor of M. +de Morcerf, and that of the whole House, he proposed to defend, by +provoking a debate on personal questions, which are always such painful +themes of discussion. He concluded by calling for an investigation, +which might dispose of the calumnious report before it had time to +spread, and restore M. de Morcerf to the position he had long held in +public opinion. + +Morcerf was so completely overwhelmed by this great and unexpected +calamity that he could scarcely stammer a few words as he looked around +on the assembly. This timidity, which might proceed from the +astonishment of innocence as well as the shame of guilt, conciliated +some in his favor; for men who are truly generous are always ready to +compassionate when the misfortune of their enemy surpasses the limits +of their hatred. + +The president put it to the vote, and it was decided that the +investigation should take place. The count was asked what time he +required to prepare his defence. Morcerf’s courage had revived when he +found himself alive after this horrible blow. + +“My lords,” answered he, “it is not by time I could repel the attack +made on me by enemies unknown to me, and, doubtless, hidden in +obscurity; it is immediately, and by a thunderbolt, that I must repel +the flash of lightning which, for a moment, startled me. Oh, that I +could, instead of taking up this defence, shed my last drop of blood to +prove to my noble colleagues that I am their equal in worth.” + +These words made a favorable impression on behalf of the accused. + +“I demand, then, that the examination shall take place as soon as +possible, and I will furnish the house with all necessary information.” + +“What day do you fix?” asked the president. + +“Today I am at your service,” replied the count. + +The president rang the bell. “Does the House approve that the +examination should take place today?” + +40196m + + + +“Yes,” was the unanimous answer. + +A committee of twelve members was chosen to examine the proofs brought +forward by Morcerf. The investigation would begin at eight o’clock that +evening in the committee-room, and if postponement were necessary, the +proceedings would be resumed each evening at the same hour. Morcerf +asked leave to retire; he had to collect the documents he had long been +preparing against this storm, which his sagacity had foreseen. + +Beauchamp related to the young man all the facts we have just narrated; +his story, however, had over ours all the advantage of the animation of +living things over the coldness of dead things. + +Albert listened, trembling now with hope, then with anger, and then +again with shame, for from Beauchamp’s confidence he knew his father +was guilty, and he asked himself how, since he was guilty, he could +prove his innocence. Beauchamp hesitated to continue his narrative. + +“What next?” asked Albert. + +“What next? My friend, you impose a painful task on me. Must you know +all?” + +“Absolutely; and rather from your lips than another’s.” + +“Muster up all your courage, then, for never have you required it +more.” + +Albert passed his hand over his forehead, as if to try his strength, as +a man who is preparing to defend his life proves his shield and bends +his sword. He thought himself strong enough, for he mistook fever for +energy. “Go on,” said he. + +“The evening arrived; all Paris was in expectation. Many said your +father had only to show himself to crush the charge against him; many +others said he would not appear; while some asserted that they had seen +him start for Brussels; and others went to the police-office to inquire +if he had taken out a passport. I used all my influence with one of the +committee, a young peer of my acquaintance, to get admission to one of +the galleries. He called for me at seven o’clock, and, before anyone +had arrived, asked one of the door-keepers to place me in a box. I was +concealed by a column, and might witness the whole of the terrible +scene which was about to take place. At eight o’clock all were in their +places, and M. de Morcerf entered at the last stroke. He held some +papers in his hand; his countenance was calm, and his step firm, and he +was dressed with great care in his military uniform, which was buttoned +completely up to the chin. His presence produced a good effect. The +committee was made up of Liberals, several of whom came forward to +shake hands with him.” + +Albert felt his heart bursting at these particulars, but gratitude +mingled with his sorrow: he would gladly have embraced those who had +given his father this proof of esteem at a moment when his honor was so +powerfully attacked. + +“At this moment one of the door-keepers brought in a letter for the +president. ‘You are at liberty to speak, M. de Morcerf,’ said the +president, as he unsealed the letter; and the count began his defence, +I assure you, Albert, in a most eloquent and skilful manner. He +produced documents proving that the Vizier of Yanina had up to the last +moment honored him with his entire confidence, since he had interested +him with a negotiation of life and death with the emperor. He produced +the ring, his mark of authority, with which Ali Pasha generally sealed +his letters, and which the latter had given him, that he might, on his +return at any hour of the day or night, gain access to the presence, +even in the harem. Unfortunately, the negotiation failed, and when he +returned to defend his benefactor, he was dead. ‘But,’ said the count, +‘so great was Ali Pasha’s confidence, that on his death-bed he resigned +his favorite mistress and her daughter to my care.’” + +Albert started on hearing these words; the history of Haydée recurred +to him, and he remembered what she had said of that message and the +ring, and the manner in which she had been sold and made a slave. + +“And what effect did this discourse produce?” anxiously inquired +Albert. + +“I acknowledge it affected me, and, indeed, all the committee also,” +said Beauchamp. + +“Meanwhile, the president carelessly opened the letter which had been +brought to him; but the first lines aroused his attention; he read them +again and again, and fixing his eyes on M. de Morcerf, ‘Count,’ said +he, ‘you have said that the Vizier of Yanina confided his wife and +daughter to your care?’—‘Yes, sir,’ replied Morcerf; ‘but in that, like +all the rest, misfortune pursued me. On my return, Vasiliki and her +daughter Haydée had disappeared.’—‘Did you know them?’—‘My intimacy +with the pasha and his unlimited confidence had gained me an +introduction to them, and I had seen them above twenty times.’ + +“‘Have you any idea what became of them?’—‘Yes, sir; I heard they had +fallen victims to their sorrow, and, perhaps, to their poverty. I was +not rich; my life was in constant danger; I could not seek them, to my +great regret.’ The president frowned imperceptibly. ‘Gentlemen,’ said +he, ‘you have heard the Comte de Morcerf’s defence. Can you, sir, +produce any witnesses to the truth of what you have asserted?’—‘Alas, +no, monsieur,’ replied the count; ‘all those who surrounded the vizier, +or who knew me at his court, are either dead or gone away, I know not +where. I believe that I alone, of all my countrymen, survived that +dreadful war. I have only the letters of Ali Tepelini, which I have +placed before you; the ring, a token of his good-will, which is here; +and, lastly, the most convincing proof I can offer, after an anonymous +attack, and that is the absence of any witness against my veracity and +the purity of my military life.’ + +“A murmur of approbation ran through the assembly; and at this moment, +Albert, had nothing more transpired, your father’s cause had been +gained. It only remained to put it to the vote, when the president +resumed: ‘Gentlemen and you, monsieur,—you will not be displeased, I +presume, to listen to one who calls himself a very important witness, +and who has just presented himself. He is, doubtless, come to prove the +perfect innocence of our colleague. Here is a letter I have just +received on the subject; shall it be read, or shall it be passed over? +and shall we take no notice of this incident?’ M. de Morcerf turned +pale, and clenched his hands on the papers he held. The committee +decided to hear the letter; the count was thoughtful and silent. The +president read: + +“‘Mr. President,—I can furnish the committee of inquiry into the +conduct of the Lieutenant-General the Count of Morcerf in Epirus and in +Macedonia with important particulars.’ + +“The president paused, and the count turned pale. The president looked +at his auditors. ‘Proceed,’ was heard on all sides. The president +resumed: + +“‘I was on the spot at the death of Ali Pasha. I was present during his +last moments. I know what is become of Vasiliki and Haydée. I am at the +command of the committee, and even claim the honor of being heard. I +shall be in the lobby when this note is delivered to you.’ + +“‘And who is this witness, or rather this enemy?’ asked the count, in a +tone in which there was a visible alteration. ‘We shall know, sir,’ +replied the president. ‘Is the committee willing to hear this +witness?’—‘Yes, yes,’ they all said at once. The door-keeper was +called. ‘Is there anyone in the lobby?’ said the president. + +“‘Yes, sir.’—‘Who is it?’—‘A woman, accompanied by a servant.’ Everyone +looked at his neighbor. ‘Bring her in,’ said the president. Five +minutes after the door-keeper again appeared; all eyes were fixed on +the door, and I,” said Beauchamp, “shared the general expectation and +anxiety. Behind the door-keeper walked a woman enveloped in a large +veil, which completely concealed her. It was evident, from her figure +and the perfumes she had about her, that she was young and fastidious +in her tastes, but that was all. The president requested her to throw +aside her veil, and it was then seen that she was dressed in the +Grecian costume, and was remarkably beautiful.” + +“Ah,” said Albert, “it was she.” + +“Who?” + +“Haydée.” + +“Who told you that?” + +“Alas, I guess it. But go on, Beauchamp. You see I am calm and strong. +And yet we must be drawing near the disclosure.” + +“M. de Morcerf,” continued Beauchamp, “looked at this woman with +surprise and terror. Her lips were about to pass his sentence of life +or death. To the committee the adventure was so extraordinary and +curious, that the interest they had felt for the count’s safety became +now quite a secondary matter. The president himself advanced to place a +seat for the young lady; but she declined availing herself of it. As +for the count, he had fallen on his chair; it was evident that his legs +refused to support him. + +“‘Madame,’ said the president, ‘you have engaged to furnish the +committee with some important particulars respecting the affair at +Yanina, and you have stated that you were an eyewitness of the +event.’—‘I was, indeed,’ said the stranger, with a tone of sweet +melancholy, and with the sonorous voice peculiar to the East. + +“‘But allow me to say that you must have been very young then.’—‘I was +four years old; but as those events deeply concerned me, not a single +detail has escaped my memory.’—‘In what manner could these events +concern you? and who are you, that they should have made so deep an +impression on you?’—‘On them depended my father’s life,’ replied she. +‘I am Haydée, the daughter of Ali Tepelini, pasha of Yanina, and of +Vasiliki, his beloved wife.’ + +40202m + + + +“The blush of mingled pride and modesty which suddenly suffused the +cheeks of the young woman, the brilliancy of her eye, and her highly +important communication, produced an indescribable effect on the +assembly. As for the count, he could not have been more overwhelmed if +a thunderbolt had fallen at his feet and opened an immense gulf before +him. + +“‘Madame,’ replied the president, bowing with profound respect, ‘allow +me to ask one question; it shall be the last: Can you prove the +authenticity of what you have now stated?’ + +“‘I can, sir,’ said Haydée, drawing from under her veil a satin satchel +highly perfumed; ‘for here is the register of my birth, signed by my +father and his principal officers, and that of my baptism, my father +having consented to my being brought up in my mother’s faith,—this +latter has been sealed by the grand primate of Macedonia and Epirus; +and lastly (and perhaps the most important), the record of the sale of +my person and that of my mother to the Armenian merchant El-Kobbir, by +the French officer, who, in his infamous bargain with the Porte, had +reserved as his part of the booty the wife and daughter of his +benefactor, whom he sold for the sum of four hundred thousand francs.’ +A greenish pallor spread over the count’s cheeks, and his eyes became +bloodshot at these terrible imputations, which were listened to by the +assembly with ominous silence. + +“Haydée, still calm, but with a calmness more dreadful than the anger +of another would have been, handed to the president the record of her +sale, written in Arabic. It had been supposed some of the papers might +be in the Arabian, Romaic, or Turkish language, and the interpreter of +the House was in attendance. One of the noble peers, who was familiar +with the Arabic language, having studied it during the famous Egyptian +campaign, followed with his eye as the translator read aloud: + +“‘I, El-Kobbir, a slave-merchant, and purveyor of the harem of his +highness, acknowledge having received for transmission to the sublime +emperor, from the French lord, the Count of Monte Cristo, an emerald +valued at eight hundred thousand francs; as the ransom of a young +Christian slave of eleven years of age, named Haydée, the acknowledged +daughter of the late lord Ali Tepelini, pasha of Yanina, and of +Vasiliki, his favorite; she having been sold to me seven years +previously, with her mother, who had died on arriving at +Constantinople, by a French colonel in the service of the Vizier Ali +Tepelini, named Fernand Mondego. The above-mentioned purchase was made +on his highness’s account, whose mandate I had, for the sum of four +hundred thousand francs. + +“‘Given at Constantinople, by authority of his highness, in the year +1247 of the Hegira. + +“‘Signed, El-Kobbir.’ + +“‘That this record should have all due authority, it shall bear the +imperial seal, which the vendor is bound to have affixed to it.’ + +“Near the merchant’s signature there was, indeed, the seal of the +sublime emperor. A dreadful silence followed the reading of this +document; the count could only stare, and his gaze, fixed as if +unconsciously on Haydée, seemed one of fire and blood. ‘Madame,’ said +the president, ‘may reference be made to the Count of Monte Cristo, who +is now, I believe, in Paris?’ + +“‘Sir,’ replied Haydée, ‘the Count of Monte Cristo, my foster-father, +has been in Normandy the last three days.’ + +“‘Who, then, has counselled you to take this step, one for which the +court is deeply indebted to you, and which is perfectly natural, +considering your birth and your misfortunes?’—‘Sir,’ replied Haydée, ‘I +have been led to take this step from a feeling of respect and grief. +Although a Christian, may God forgive me, I have always sought to +revenge my illustrious father. Since I set my foot in France, and knew +the traitor lived in Paris, I have watched carefully. I live retired in +the house of my noble protector, but I do it from choice. I love +retirement and silence, because I can live with my thoughts and +recollections of past days. But the Count of Monte Cristo surrounds me +with every paternal care, and I am ignorant of nothing which passes in +the world. I learn all in the silence of my apartments,—for instance, I +see all the newspapers, every periodical, as well as every new piece of +music; and by thus watching the course of the life of others, I learned +what had transpired this morning in the House of Peers, and what was to +take place this evening; then I wrote.’ + +40204m + + + +“‘Then,’ remarked the president, ‘the Count of Monte Cristo knows +nothing of your present proceedings?’—‘He is quite unaware of them, and +I have but one fear, which is that he should disapprove of what I have +done. But it is a glorious day for me,’ continued the young girl, +raising her ardent gaze to heaven, ‘that on which I find at last an +opportunity of avenging my father!’ + +“The count had not uttered one word the whole of this time. His +colleagues looked at him, and doubtless pitied his prospects, blighted +under the perfumed breath of a woman. His misery was depicted in +sinister lines on his countenance. ‘M. de Morcerf,’ said the president, +‘do you recognize this lady as the daughter of Ali Tepelini, pasha of +Yanina?’—‘No,’ said Morcerf, attempting to rise, ‘it is a base plot, +contrived by my enemies.’ Haydée, whose eyes had been fixed on the +door, as if expecting someone, turned hastily, and, seeing the count +standing, shrieked, ‘You do not know me?’ said she. ‘Well, I +fortunately recognize you! You are Fernand Mondego, the French officer +who led the troops of my noble father! It is you who surrendered the +castle of Yanina! It is you who, sent by him to Constantinople, to +treat with the emperor for the life or death of your benefactor, +brought back a false mandate granting full pardon! It is you who, with +that mandate, obtained the pasha’s ring, which gave you authority over +Selim, the fire-keeper! It is you who stabbed Selim. It is you who sold +us, my mother and me, to the merchant, El-Kobbir! Assassin, assassin, +assassin, you have still on your brow your master’s blood! Look, +gentlemen, all!’ + +“These words had been pronounced with such enthusiasm and evident +truth, that every eye was fixed on the count’s forehead, and he himself +passed his hand across it, as if he felt Ali’s blood still lingering +there. ‘You positively recognize M. de Morcerf as the officer, Fernand +Mondego?’—‘Indeed I do!’ cried Haydée. ‘Oh, my mother, it was you who +said, “You were free, you had a beloved father, you were destined to be +almost a queen. Look well at that man; it is he who raised your +father’s head on the point of a spear; it is he who sold us; it is he +who forsook us! Look well at his right hand, on which he has a large +wound; if you forgot his features, you would know him by that hand, +into which fell, one by one, the gold pieces of the merchant +El-Kobbir!” I know him! Ah, let him say now if he does not recognize +me!’ Each word fell like a dagger on Morcerf, and deprived him of a +portion of his energy; as she uttered the last, he hid his mutilated +hand hastily in his bosom, and fell back on his seat, overwhelmed by +wretchedness and despair. This scene completely changed the opinion of +the assembly respecting the accused count. + +“‘Count of Morcerf,’ said the president, ‘do not allow yourself to be +cast down; answer. The justice of the court is supreme and impartial as +that of God; it will not suffer you to be trampled on by your enemies +without giving you an opportunity of defending yourself. Shall further +inquiries be made? Shall two members of the House be sent to Yanina? +Speak!’ Morcerf did not reply. Then all the members looked at each +other with terror. They knew the count’s energetic and violent temper; +it must be, indeed, a dreadful blow which would deprive him of courage +to defend himself. They expected that his stupefied silence would be +followed by a fiery outburst. ‘Well,’ asked the president, ‘what is +your decision?’ + +40206m + + + +“‘I have no reply to make,’ said the count in a low tone. + +“‘Has the daughter of Ali Tepelini spoken the truth?’ said the +president. ‘Is she, then, the terrible witness to whose charge you dare +not plead “Not guilty”? Have you really committed the crimes of which +you are accused?’ The count looked around him with an expression which +might have softened tigers, but which could not disarm his judges. Then +he raised his eyes towards the ceiling, but withdrew then, immediately, +as if he feared the roof would open and reveal to his distressed view +that second tribunal called heaven, and that other judge named God. +Then, with a hasty movement, he tore open his coat, which seemed to +stifle him, and flew from the room like a madman; his footstep was +heard one moment in the corridor, then the rattling of his +carriage-wheels as he was driven rapidly away. ‘Gentlemen,’ said the +president, when silence was restored, ‘is the Count of Morcerf +convicted of felony, treason, and conduct unbecoming a member of this +House?’—‘Yes,’ replied all the members of the committee of inquiry with +a unanimous voice. + +“Haydée had remained until the close of the meeting. She heard the +count’s sentence pronounced without betraying an expression of joy or +pity; then drawing her veil over her face she bowed majestically to the +councillors, and left with that dignified step which Virgil attributes +to his goddesses.” + + + + Chapter 87. The Challenge + +Then,” continued Beauchamp, “I took advantage of the silence and the +darkness to leave the house without being seen. The usher who had +introduced me was waiting for me at the door, and he conducted me +through the corridors to a private entrance opening into the Rue de +Vaugirard. I left with mingled feelings of sorrow and delight. Excuse +me, Albert,—sorrow on your account, and delight with that noble girl, +thus pursuing paternal vengeance. Yes, Albert, from whatever source the +blow may have proceeded—it may be from an enemy, but that enemy is only +the agent of Providence.” + +Albert held his head between his hands; he raised his face, red with +shame and bathed in tears, and seizing Beauchamp’s arm: + +“My friend,” said he, “my life is ended. I cannot calmly say with you, +‘Providence has struck the blow;’ but I must discover who pursues me +with this hatred, and when I have found him I shall kill him, or he +will kill me. I rely on your friendship to assist me, Beauchamp, if +contempt has not banished it from your heart.” + +“Contempt, my friend? How does this misfortune affect you? No, happily +that unjust prejudice is forgotten which made the son responsible for +the father’s actions. Review your life, Albert; although it is only +just beginning, did a lovely summer’s day ever dawn with greater purity +than has marked the commencement of your career? No, Albert, take my +advice. You are young and rich—leave Paris—all is soon forgotten in +this great Babylon of excitement and changing tastes. You will return +after three or four years with a Russian princess for a bride, and no +one will think more of what occurred yesterday than if it had happened +sixteen years ago.” + +“Thank you, my dear Beauchamp, thank you for the excellent feeling +which prompts your advice; but it cannot be. I have told you my wish, +or rather my determination. You understand that, interested as I am in +this affair, I cannot see it in the same light as you do. What appears +to you to emanate from a celestial source, seems to me to proceed from +one far less pure. Providence appears to me to have no share in this +affair; and happily so, for instead of the invisible, impalpable agent +of celestial rewards and punishments, I shall find one both palpable +and visible, on whom I shall revenge myself, I assure you, for all I +have suffered during the last month. Now, I repeat, Beauchamp, I wish +to return to human and material existence, and if you are still the +friend you profess to be, help me to discover the hand that struck the +blow.” + +“Be it so,” said Beauchamp; “if you must have me descend to earth, I +submit; and if you will seek your enemy, I will assist you, and I will +engage to find him, my honor being almost as deeply interested as +yours.” + +“Well, then, you understand, Beauchamp, that we begin our search +immediately. Each moment’s delay is an eternity for me. The calumniator +is not yet punished, and he may hope that he will not be; but, on my +honor, if he thinks so, he deceives himself.” + +“Well, listen, Morcerf.” + +“Ah, Beauchamp, I see you know something already; you will restore me +to life.” + +“I do not say there is any truth in what I am going to tell you, but it +is, at least, a ray of light in a dark night; by following it we may, +perhaps, discover something more certain.” + +“Tell me; satisfy my impatience.” + +“Well, I will tell you what I did not like to mention on my return from +Yanina.” + +“Say on.” + +“I went, of course, to the chief banker of the town to make inquiries. +At the first word, before I had even mentioned your father’s name”— + +“‘Ah,’ said he. ‘I guess what brings you here.’ + +“‘How, and why?’ + +“‘Because a fortnight since I was questioned on the same subject.’ + +“‘By whom?’ + +“‘By a banker of Paris, my correspondent.’ + +“‘Whose name is——’ + +“‘Danglars.’” + +“He!” cried Albert; “yes, it is indeed he who has so long pursued my +father with jealous hatred. He, the man who would be popular, cannot +forgive the Count of Morcerf for being created a peer; and this +marriage broken off without a reason being assigned—yes, it is all from +the same cause.” + +“Make inquiries, Albert, but do not be angry without reason; make +inquiries, and if it be true——” + +“Oh, yes, if it be true,” cried the young man, “he shall pay me all I +have suffered.” + +“Beware, Morcerf, he is already an old man.” + +“I will respect his age as he has respected the honor of my family; if +my father had offended him, why did he not attack him personally? Oh, +no, he was afraid to encounter him face to face.” + +“I do not condemn you, Albert; I only restrain you. Act prudently.” + +“Oh, do not fear; besides, you will accompany me. Beauchamp, solemn +transactions should be sanctioned by a witness. Before this day closes, +if M. Danglars is guilty, he shall cease to live, or I shall die. +_Pardieu_, Beauchamp, mine shall be a splendid funeral!” + +“When such resolutions are made, Albert, they should be promptly +executed. Do you wish to go to M. Danglars? Let us go immediately.” + +They sent for a cabriolet. On entering the banker’s mansion, they +perceived the phaeton and servant of M. Andrea Cavalcanti. + +“Ah! _parbleu!_ that’s good,” said Albert, with a gloomy tone. “If M. +Danglars will not fight with me, I will kill his son-in-law; Cavalcanti +will certainly fight.” + +The servant announced the young man; but the banker, recollecting what +had transpired the day before, did not wish him admitted. It was, +however, too late; Albert had followed the footman, and, hearing the +order given, forced the door open, and followed by Beauchamp found +himself in the banker’s study. + +“Sir,” cried the latter, “am I no longer at liberty to receive whom I +choose in my house? You appear to forget yourself sadly.” + +“No, sir,” said Albert, coldly; “there are circumstances in which one +cannot, except through cowardice,—I offer you that refuge,—refuse to +admit certain persons at least.” + +“What is your errand, then, with me, sir?” + +“I mean,” said Albert, drawing near, and without apparently noticing +Cavalcanti, who stood with his back towards the fireplace—“I mean to +propose a meeting in some retired corner where no one will interrupt us +for ten minutes; that will be sufficient—where two men having met, one +of them will remain on the ground.” + +Danglars turned pale; Cavalcanti moved a step forward, and Albert +turned towards him. + +“And you, too,” said he, “come, if you like, monsieur; you have a +claim, being almost one of the family, and I will give as many +rendezvous of that kind as I can find persons willing to accept them.” + +Cavalcanti looked at Danglars with a stupefied air, and the latter, +making an effort, arose and stepped between the two young men. Albert’s +attack on Andrea had placed him on a different footing, and he hoped +this visit had another cause than that he had at first supposed. + +“Indeed, sir,” said he to Albert, “if you are come to quarrel with this +gentleman because I have preferred him to you, I shall resign the case +to the king’s attorney.” + +“You mistake, sir,” said Morcerf with a gloomy smile; “I am not +referring in the least to matrimony, and I only addressed myself to M. +Cavalcanti because he appeared disposed to interfere between us. In one +respect you are right, for I am ready to quarrel with everyone today; +but you have the first claim, M. Danglars.” + +40212m + + + +“Sir,” replied Danglars, pale with anger and fear, “I warn you, when I +have the misfortune to meet with a mad dog, I kill it; and far from +thinking myself guilty of a crime, I believe I do society a kindness. +Now, if you are mad and try to bite me, I will kill you without pity. +Is it my fault that your father has dishonored himself?” + +“Yes, miserable wretch!” cried Morcerf, “it is your fault.” + +Danglars retreated a few steps. “My fault?” said he; “you must be mad! +What do I know of the Grecian affair? Have I travelled in that country? +Did I advise your father to sell the castle of Yanina—to betray——” + +“Silence!” said Albert, with a thundering voice. “No; it is not you who +have directly made this exposure and brought this sorrow on us, but you +hypocritically provoked it.” + +“I?” + +“Yes; you! How came it known?” + +“I suppose you read it in the paper in the account from Yanina?” + +“Who wrote to Yanina?” + +“To Yanina?” + +“Yes. Who wrote for particulars concerning my father?” + +“I imagine anyone may write to Yanina.” + +“But one person only wrote!” + +“One only?” + +“Yes; and that was you!” + +“I, doubtless, wrote. It appears to me that when about to marry your +daughter to a young man, it is right to make some inquiries respecting +his family; it is not only a right, but a duty.” + +“You wrote, sir, knowing what answer you would receive.” + +“I, indeed? I assure you,” cried Danglars, with a confidence and +security proceeding less from fear than from the interest he really +felt for the young man, “I solemnly declare to you, that I should never +have thought of writing to Yanina, did I know anything of Ali Pasha’s +misfortunes.” + +“Who, then, urged you to write? Tell me.” + +“_Pardieu!_ it was the most simple thing in the world. I was speaking +of your father’s past history. I said the origin of his fortune +remained obscure. The person to whom I addressed my scruples asked me +where your father had acquired his property? I answered, ‘In +Greece.’—‘Then,’ said he, ‘write to Yanina.’” + +“And who thus advised you?” + +“No other than your friend, Monte Cristo.” + +“The Count of Monte Cristo told you to write to Yanina?” + +“Yes; and I wrote, and will show you my correspondence, if you like.” + +Albert and Beauchamp looked at each other. + +“Sir,” said Beauchamp, who had not yet spoken, “you appear to accuse +the count, who is absent from Paris at this moment, and cannot justify +himself.” + +“I accuse no one, sir,” said Danglars; “I relate, and I will repeat +before the count what I have said to you.” + +“Does the count know what answer you received?” + +“Yes; I showed it to him.” + +“Did he know my father’s Christian name was Fernand, and his family +name Mondego?” + +“Yes, I had told him that long since, and I did only what any other +would have done in my circumstances, and perhaps less. When, the day +after the arrival of this answer, your father came by the advice of +Monte Cristo to ask my daughter’s hand for you, I decidedly refused +him, but without any explanation or exposure. In short, why should I +have any more to do with the affair? How did the honor or disgrace of +M. de Morcerf affect me? It neither increased nor decreased my income.” + +Albert felt the blood mounting to his brow; there was no doubt upon the +subject. Danglars defended himself with the baseness, but at the same +time with the assurance, of a man who speaks the truth, at least in +part, if not wholly—not for conscience’ sake, but through fear. +Besides, what was Morcerf seeking? It was not whether Danglars or Monte +Cristo was more or less guilty; it was a man who would answer for the +offence, whether trifling or serious; it was a man who would fight, and +it was evident Danglars would not fight. + +In addition to this, everything forgotten or unperceived before +presented itself now to his recollection. Monte Cristo knew everything, +as he had bought the daughter of Ali Pasha; and, knowing everything, he +had advised Danglars to write to Yanina. The answer known, he had +yielded to Albert’s wish to be introduced to Haydée, and allowed the +conversation to turn on the death of Ali, and had not opposed Haydée’s +recital (but having, doubtless, warned the young girl, in the few +Romaic words he spoke to her, not to implicate Morcerf’s father). +Besides, had he not begged of Morcerf not to mention his father’s name +before Haydée? Lastly, he had taken Albert to Normandy when he knew the +final blow was near. There could be no doubt that all had been +calculated and previously arranged; Monte Cristo then was in league +with his father’s enemies. Albert took Beauchamp aside, and +communicated these ideas to him. + +“You are right,” said the latter; “M. Danglars has only been a +secondary agent in this sad affair, and it is of M. de Monte Cristo +that you must demand an explanation.” + +Albert turned. + +“Sir,” said he to Danglars, “understand that I do not take a final +leave of you; I must ascertain if your insinuations are just, and am +going now to inquire of the Count of Monte Cristo.” + +He bowed to the banker, and went out with Beauchamp, without appearing +to notice Cavalcanti. Danglars accompanied him to the door, where he +again assured Albert that no motive of personal hatred had influenced +him against the Count of Morcerf. + + + + Chapter 88. The Insult + +At the banker’s door Beauchamp stopped Morcerf. + +“Listen,” said he; “just now I told you it was of M. de Monte Cristo +you must demand an explanation.” + +“Yes; and we are going to his house.” + +“Reflect, Morcerf, one moment before you go.” + +“On what shall I reflect?” + +“On the importance of the step you are taking.” + +“Is it more serious than going to M. Danglars?” + +“Yes; M. Danglars is a money-lover, and those who love money, you know, +think too much of what they risk to be easily induced to fight a duel. +The other is, on the contrary, to all appearance a true nobleman; but +do you not fear to find him a bully?” + +“I only fear one thing; namely, to find a man who will not fight.” + +“Do not be alarmed,” said Beauchamp; “he will meet you. My only fear is +that he will be too strong for you.” + +“My friend,” said Morcerf, with a sweet smile, “that is what I wish. +The happiest thing that could occur to me, would be to die in my +father’s stead; that would save us all.” + +“Your mother would die of grief.” + +“My poor mother!” said Albert, passing his hand across his eyes, “I +know she would; but better so than die of shame.” + +“Are you quite decided, Albert?” + +“Yes; let us go.” + +“But do you think we shall find the count at home?” + +“He intended returning some hours after me, and doubtless he is now at +home.” + +They ordered the driver to take them to No. 30 Champs-Élysées. +Beauchamp wished to go in alone, but Albert observed that as this was +an unusual circumstance he might be allowed to deviate from the usual +etiquette of duels. The cause which the young man espoused was one so +sacred that Beauchamp had only to comply with all his wishes; he +yielded and contented himself with following Morcerf. Albert sprang +from the porter’s lodge to the steps. He was received by Baptistin. The +count had, indeed, just arrived, but he was in his bath, and had +forbidden that anyone should be admitted. + +“But after his bath?” asked Morcerf. + +“My master will go to dinner.” + +“And after dinner?” + +“He will sleep an hour.” + +“Then?” + +“He is going to the Opera.” + +“Are you sure of it?” asked Albert. + +“Quite, sir; my master has ordered his horses at eight o’clock +precisely.” + +“Very good,” replied Albert; “that is all I wished to know.” + +Then, turning towards Beauchamp, “If you have anything to attend to, +Beauchamp, do it directly; if you have any appointment for this +evening, defer it till tomorrow. I depend on you to accompany me to the +Opera; and if you can, bring Château-Renaud with you.” + +Beauchamp availed himself of Albert’s permission, and left him, +promising to call for him at a quarter before eight. On his return +home, Albert expressed his wish to Franz Debray, and Morrel, to see +them at the Opera that evening. Then he went to see his mother, who +since the events of the day before had refused to see anyone, and had +kept her room. He found her in bed, overwhelmed with grief at this +public humiliation. + +The sight of Albert produced the effect which might naturally be +expected on Mercédès; she pressed her son’s hand and sobbed aloud, but +her tears relieved her. Albert stood one moment speechless by the side +of his mother’s bed. It was evident from his pale face and knit brows +that his resolution to revenge himself was growing weaker. + +“My dear mother,” said he, “do you know if M. de Morcerf has any +enemy?” + +Mercédès started; she noticed that the young man did not say “my +father.” + +“My son,” she said, “persons in the count’s situation have many secret +enemies. Those who are known are not the most dangerous.” + +“I know it, and appeal to your penetration. You are of so superior a +mind, nothing escapes you.” + +“Why do you say so?” + +“Because, for instance, you noticed on the evening of the ball we gave, +that M. de Monte Cristo would eat nothing in our house.” + +Mercédès raised herself on her feverish arm. + +“M. de Monte Cristo!” she exclaimed; “and how is he connected with the +question you asked me?” + +40219m + + + +“You know, mother, M. de Monte Cristo is almost an Oriental, and it is +customary with the Orientals to secure full liberty for revenge by not +eating or drinking in the houses of their enemies.” + +“Do you say M. de Monte Cristo is our enemy?” replied Mercédès, +becoming paler than the sheet which covered her. “Who told you so? Why, +you are mad, Albert! M. de Monte Cristo has only shown us kindness. M. +de Monte Cristo saved your life; you yourself presented him to us. Oh, +I entreat you, my son, if you had entertained such an idea, dispel it; +and my counsel to you—nay, my prayer—is to retain his friendship.” + +“Mother,” replied the young man, “you have special reasons for telling +me to conciliate that man.” + +“I?” said Mercédès, blushing as rapidly as she had turned pale, and +again becoming paler than ever. + +“Yes, doubtless; and is it not that he may never do us any harm?” + +Mercédès shuddered, and, fixing on her son a scrutinizing gaze, “You +speak strangely,” said she to Albert, “and you appear to have some +singular prejudices. What has the count done? Three days since you were +with him in Normandy; only three days since we looked on him as our +best friend.” + +An ironical smile passed over Albert’s lips. Mercédès saw it and with +the double instinct of woman and mother guessed all; but as she was +prudent and strong-minded she concealed both her sorrows and her fears. +Albert was silent; an instant after, the countess resumed: + +“You came to inquire after my health; I will candidly acknowledge that +I am not well. You should install yourself here, and cheer my solitude. +I do not wish to be left alone.” + +“Mother,” said the young man, “you know how gladly I would obey your +wish, but an urgent and important affair obliges me to leave you for +the whole evening.” + +“Well,” replied Mercédès, sighing, “go, Albert; I will not make you a +slave to your filial piety.” + +Albert pretended he did not hear, bowed to his mother, and quitted her. +Scarcely had he shut her door, when Mercédès called a confidential +servant, and ordered him to follow Albert wherever he should go that +evening, and to come and tell her immediately what he observed. Then +she rang for her lady’s maid, and, weak as she was, she dressed, in +order to be ready for whatever might happen. The footman’s mission was +an easy one. Albert went to his room, and dressed with unusual care. At +ten minutes to eight Beauchamp arrived; he had seen Château-Renaud, who +had promised to be in the orchestra before the curtain was raised. Both +got into Albert’s _coupé_; and, as the young man had no reason to +conceal where he was going, he called aloud, “To the Opera.” In his +impatience he arrived before the beginning of the performance. + +40221m + + + +Château-Renaud was at his post; apprised by Beauchamp of the +circumstances, he required no explanation from Albert. The conduct of +the son in seeking to avenge his father was so natural that +Château-Renaud did not seek to dissuade him, and was content with +renewing his assurances of devotion. Debray was not yet come, but +Albert knew that he seldom lost a scene at the Opera. + +Albert wandered about the theatre until the curtain was drawn up. He +hoped to meet with M. de Monte Cristo either in the lobby or on the +stairs. The bell summoned him to his seat, and he entered the orchestra +with Château-Renaud and Beauchamp. But his eyes scarcely quitted the +box between the columns, which remained obstinately closed during the +whole of the first act. At last, as Albert was looking at his watch for +about the hundredth time, at the beginning of the second act the door +opened, and Monte Cristo entered, dressed in black, and, leaning over +the front of the box, looked around the pit. Morrel followed him, and +looked also for his sister and brother in-law; he soon discovered them +in another box, and kissed his hand to them. + +The count, in his survey of the pit, encountered a pale face and +threatening eyes, which evidently sought to gain his attention. He +recognized Albert, but thought it better not to notice him, as he +looked so angry and discomposed. Without communicating his thoughts to +his companion, he sat down, drew out his opera-glass, and looked +another way. Although apparently not noticing Albert, he did not, +however, lose sight of him, and when the curtain fell at the end of the +second act, he saw him leave the orchestra with his two friends. Then +his head was seen passing at the back of the boxes, and the count knew +that the approaching storm was intended to fall on him. He was at the +moment conversing cheerfully with Morrel, but he was well prepared for +what might happen. + +The door opened, and Monte Cristo, turning round, saw Albert, pale and +trembling, followed by Beauchamp and Château-Renaud. + +“Well,” cried he, with that benevolent politeness which distinguished +his salutation from the common civilities of the world, “my cavalier +has attained his object. Good-evening, M. de Morcerf.” + +The countenance of this man, who possessed such extraordinary control +over his feelings, expressed the most perfect cordiality. Morrel only +then recollected the letter he had received from the viscount, in +which, without assigning any reason, he begged him to go to the Opera, +but he understood that something terrible was brooding. + +“We are not come here, sir, to exchange hypocritical expressions of +politeness, or false professions of friendship,” said Albert, “but to +demand an explanation.” + +The young man’s trembling voice was scarcely audible. + +“An explanation at the Opera?” said the count, with that calm tone and +penetrating eye which characterize the man who knows his cause is good. +“Little acquainted as I am with the habits of Parisians, I should not +have thought this the place for such a demand.” + +“Still, if people will shut themselves up,” said Albert, “and cannot be +seen because they are bathing, dining, or asleep, we must avail +ourselves of the opportunity whenever they are to be seen.” + +“I am not difficult of access, sir; for yesterday, if my memory does +not deceive me, you were at my house.” + +“Yesterday I was at your house, sir,” said the young man; “because then +I knew not who you were.” + +In pronouncing these words Albert had raised his voice so as to be +heard by those in the adjoining boxes and in the lobby. Thus the +attention of many was attracted by this altercation. + +“Where are you come from, sir? “ said Monte Cristo “You do not appear +to be in the possession of your senses.” + +“Provided I understand your perfidy, sir, and succeed in making you +understand that I will be revenged, I shall be reasonable enough,” said +Albert furiously. + +“I do not understand you, sir,” replied Monte Cristo; “and if I did, +your tone is too high. I am at home here, and I alone have a right to +raise my voice above another’s. Leave the box, sir!” + +Monte Cristo pointed towards the door with the most commanding dignity. + +“Ah, I shall know how to make you leave your home!” replied Albert, +clasping in his convulsed grasp the glove, which Monte Cristo did not +lose sight of. + +“Well, well,” said Monte Cristo quietly, “I see you wish to quarrel +with me; but I would give you one piece of advice, which you will do +well to keep in mind. It is in poor taste to make a display of a +challenge. Display is not becoming to everyone, M. de Morcerf.” + +At this name a murmur of astonishment passed around the group of +spectators of this scene. They had talked of no one but Morcerf the +whole day. Albert understood the allusion in a moment, and was about to +throw his glove at the count, when Morrel seized his hand, while +Beauchamp and Château-Renaud, fearing the scene would surpass the +limits of a challenge, held him back. But Monte Cristo, without rising, +and leaning forward in his chair, merely stretched out his arm and, +taking the damp, crushed glove from the clenched hand of the young man: + +“Sir,” said he in a solemn tone, “I consider your glove thrown, and +will return it to you wrapped around a bullet. Now leave me or I will +summon my servants to throw you out at the door.” + +Wild, almost unconscious, and with eyes inflamed, Albert stepped back, +and Morrel closed the door. Monte Cristo took up his glass again as if +nothing had happened; his face was like marble, and his heart was like +bronze. Morrel whispered, “What have you done to him?” + +“I? Nothing—at least personally,” said Monte Cristo. + +“But there must be some cause for this strange scene.” + +“The Count of Morcerf’s adventure exasperates the young man.” + +“Have you anything to do with it?” + +“It was through Haydée that the Chamber was informed of his father’s +treason.” + +“Indeed?” said Morrel. “I had been told, but would not credit it, that +the Grecian slave I have seen with you here in this very box was the +daughter of Ali Pasha.” + +“It is true, nevertheless.” + +“Then,” said Morrel, “I understand it all, and this scene was +premeditated.” + +“How so?” + +“Yes. Albert wrote to request me to come to the Opera, doubtless that I +might be a witness to the insult he meant to offer you.” + +“Probably,” said Monte Cristo with his imperturbable tranquillity. + +“But what shall you do with him?” + +“With whom?” + +“With Albert.” + +“What shall I do with Albert? As certainly, Maximilian, as I now press +your hand, I shall kill him before ten o’clock tomorrow morning.” +Morrel, in his turn, took Monte Cristo’s hand in both of his, and he +shuddered to feel how cold and steady it was. + +“Ah, count,” said he, “his father loves him so much!” + +“Do not speak to me of that,” said Monte Cristo, with the first +movement of anger he had betrayed; “I will make him suffer.” + +Morrel, amazed, let fall Monte Cristo’s hand. “Count, count!” said he. + +“Dear Maximilian,” interrupted the count, “listen how adorably Duprez +is singing that line,— + +‘O Mathilde! idole de mon âme!’ + + +“I was the first to discover Duprez at Naples, and the first to applaud +him. Bravo, bravo!” + +Morrel saw it was useless to say more, and refrained. The curtain, +which had risen at the close of the scene with Albert, again fell, and +a rap was heard at the door. + +“Come in,” said Monte Cristo with a voice that betrayed not the least +emotion; and immediately Beauchamp appeared. “Good-evening, M. +Beauchamp,” said Monte Cristo, as if this was the first time he had +seen the journalist that evening; “be seated.” + +Beauchamp bowed, and, sitting down, “Sir,” said he, “I just now +accompanied M. de Morcerf, as you saw.” + +“And that means,” replied Monte Cristo, laughing, “that you had, +probably, just dined together. I am happy to see, M. Beauchamp, that +you are more sober than he was.” + +“Sir,” said M. Beauchamp, “Albert was wrong, I acknowledge, to betray +so much anger, and I come, on my own account, to apologize for him. And +having done so, entirely on my own account, be it understood, I would +add that I believe you too gentlemanly to refuse giving him some +explanation concerning your connection with Yanina. Then I will add two +words about the young Greek girl.” + +Monte Cristo motioned him to be silent. “Come,” said he, laughing, +“there are all my hopes about to be destroyed.” + +“How so?” asked Beauchamp. + +“Doubtless you wish to make me appear a very eccentric character. I am, +in your opinion, a Lara, a Manfred, a Lord Ruthven; then, just as I am +arriving at the climax, you defeat your own end, and seek to make an +ordinary man of me. You bring me down to your own level, and demand +explanations! Indeed, M. Beauchamp, it is quite laughable.” + +“Yet,” replied Beauchamp haughtily, “there are occasions when probity +commands——” + +“M. Beauchamp,” interposed this strange man, “the Count of Monte Cristo +bows to none but the Count of Monte Cristo himself. Say no more, I +entreat you. I do what I please, M. Beauchamp, and it is always well +done.” + +“Sir,” replied the young man, “honest men are not to be paid with such +coin. I require honorable guaranties.” + +“I am, sir, a living guaranty,” replied Monte Cristo, motionless, but +with a threatening look; “we have both blood in our veins which we wish +to shed—that is our mutual guaranty. Tell the viscount so, and that +tomorrow, before ten o’clock, I shall see what color his is.” + +“Then I have only to make arrangements for the duel,” said Beauchamp. + +“It is quite immaterial to me,” said Monte Cristo, “and it was very +unnecessary to disturb me at the Opera for such a trifle. In France +people fight with the sword or pistol, in the colonies with the +carbine, in Arabia with the dagger. Tell your client that, although I +am the insulted party, in order to carry out my eccentricity, I leave +him the choice of arms, and will accept without discussion, without +dispute, anything, even combat by drawing lots, which is always stupid, +but with me different from other people, as I am sure to gain.” + +“Sure to gain!” repeated Beauchamp, looking with amazement at the +count. + +“Certainly,” said Monte Cristo, slightly shrugging his shoulders; +“otherwise I would not fight with M. de Morcerf. I shall kill him—I +cannot help it. Only by a single line this evening at my house let me +know the arms and the hour; I do not like to be kept waiting.” + +“Pistols, then, at eight o’clock, in the Bois de Vincennes,” said +Beauchamp, quite disconcerted, not knowing if he was dealing with an +arrogant braggadocio or a supernatural being. + +“Very well, sir,” said Monte Cristo. “Now all that is settled, do let +me see the performance, and tell your friend Albert not to come any +more this evening; he will hurt himself with all his ill-chosen +barbarisms: let him go home and go to sleep.” + +Beauchamp left the box, perfectly amazed. + +“Now,” said Monte Cristo, turning towards Morrel, “I may depend upon +you, may I not?” + +“Certainly,” said Morrel, “I am at your service, count; still——” + +“What?” + +“It is desirable I should know the real cause.” + +“That is to say, you would rather not?” + +“No.” + +“The young man himself is acting blindfolded, and knows not the true +cause, which is known only to God and to me; but I give you my word, +Morrel, that God, who does know it, will be on our side.” + +“Enough,” said Morrel; “who is your second witness?” + +“I know no one in Paris, Morrel, on whom I could confer that honor +besides you and your brother Emmanuel. Do you think Emmanuel would +oblige me?” + +“I will answer for him, count.” + +“Well? that is all I require. Tomorrow morning, at seven o’clock, you +will be with me, will you not?” + +“We will.” + +“Hush, the curtain is rising. Listen! I never lose a note of this opera +if I can avoid it; the music of _William Tell_ is so sweet.” + + + + Chapter 89. The Night + +Monte Cristo waited, according to his usual custom, until Duprez had +sung his famous “_Suivez-moi!_” then he rose and went out. Morrel took +leave of him at the door, renewing his promise to be with him the next +morning at seven o’clock, and to bring Emmanuel. Then he stepped into +his _coupé_, calm and smiling, and was at home in five minutes. No one +who knew the count could mistake his expression when, on entering, he +said: + +“Ali, bring me my pistols with the ivory cross.” + +Ali brought the box to his master, who examined the weapons with a +solicitude very natural to a man who is about to intrust his life to a +little powder and shot. These were pistols of an especial pattern, +which Monte Cristo had had made for target practice in his own room. A +cap was sufficient to drive out the bullet, and from the adjoining room +no one would have suspected that the count was, as sportsmen would say, +keeping his hand in. + +He was just taking one up and looking for the point to aim at on a +little iron plate which served him as a target, when his study door +opened, and Baptistin entered. Before he had spoken a word, the count +saw in the next room a veiled woman, who had followed closely after +Baptistin, and now, seeing the count with a pistol in his hand and +swords on the table, rushed in. Baptistin looked at his master, who +made a sign to him, and he went out, closing the door after him. + +“Who are you, madame?” said the count to the veiled woman. + +40227m + + + +The stranger cast one look around her, to be certain that they were +quite alone; then bending as if she would have knelt, and joining her +hands, she said with an accent of despair: + +“Edmond, you will not kill my son!” + +The count retreated a step, uttered a slight exclamation, and let fall +the pistol he held. + +“What name did you pronounce then, Madame de Morcerf?” said he. + +“Yours!” cried she, throwing back her veil,—“yours, which I alone, +perhaps, have not forgotten. Edmond, it is not Madame de Morcerf who is +come to you, it is Mercédès.” + +“Mercédès is dead, madame,” said Monte Cristo; “I know no one now of +that name.” + +“Mercédès lives, sir, and she remembers, for she alone recognized you +when she saw you, and even before she saw you, by your voice, +Edmond,—by the simple sound of your voice; and from that moment she has +followed your steps, watched you, feared you, and she needs not to +inquire what hand has dealt the blow which now strikes M. de Morcerf.” + +“Fernand, do you mean?” replied Monte Cristo, with bitter irony; “since +we are recalling names, let us remember them all.” Monte Cristo had +pronounced the name of Fernand with such an expression of hatred that +Mercédès felt a thrill of horror run through every vein. + +“You see, Edmond, I am not mistaken, and have cause to say, ‘Spare my +son!’” + +“And who told you, madame, that I have any hostile intentions against +your son?” + +“No one, in truth; but a mother has twofold sight. I guessed all; I +followed him this evening to the Opera, and, concealed in a parquet +box, have seen all.” + +“If you have seen all, madame, you know that the son of Fernand has +publicly insulted me,” said Monte Cristo with awful calmness. + +“Oh, for pity’s sake!” + +“You have seen that he would have thrown his glove in my face if +Morrel, one of my friends, had not stopped him.” + +“Listen to me, my son has also guessed who you are,—he attributes his +father’s misfortunes to you.” + +“Madame, you are mistaken, they are not misfortunes,—it is a +punishment. It is not I who strike M. de Morcerf; it is Providence +which punishes him.” + +“And why do you represent Providence?” cried Mercédès. “Why do you +remember when it forgets? What are Yanina and its vizier to you, +Edmond? What injury has Fernand Mondego done you in betraying Ali +Tepelini?” + +“Ah, madame,” replied Monte Cristo, “all this is an affair between the +French captain and the daughter of Vasiliki. It does not concern me, +you are right; and if I have sworn to revenge myself, it is not on the +French captain, or the Count of Morcerf, but on the fisherman Fernand, +the husband of Mercédès the Catalane.” + +“Ah, sir!” cried the countess, “how terrible a vengeance for a fault +which fatality made me commit!—for I am the only culprit, Edmond, and +if you owe revenge to anyone, it is to me, who had not fortitude to +bear your absence and my solitude.” + +“But,” exclaimed Monte Cristo, “why was I absent? And why were you +alone?” + +40231m + + + +“Because you had been arrested, Edmond, and were a prisoner.” + +“And why was I arrested? Why was I a prisoner?” + +“I do not know,” said Mercédès. + +“You do not, madame; at least, I hope not. But I will tell you. I was +arrested and became a prisoner because, under the arbor of La Réserve, +the day before I was to marry you, a man named Danglars wrote this +letter, which the fisherman Fernand himself posted.” + +Monte Cristo went to a secretaire, opened a drawer by a spring, from +which he took a paper which had lost its original color, and the ink of +which had become of a rusty hue—this he placed in the hands of +Mercédès. It was Danglars’ letter to the king’s attorney, which the +Count of Monte Cristo, disguised as a clerk from the house of Thomson & +French, had taken from the file against Edmond Dantès, on the day he +had paid the two hundred thousand francs to M. de Boville. Mercédès +read with terror the following lines: + +“The king’s attorney is informed by a friend to the throne and religion +that one Edmond Dantès, second in command on board the _Pharaon_, this +day arrived from Smyrna, after having touched at Naples and +Porto-Ferrajo, is the bearer of a letter from Murat to the usurper, and +of another letter from the usurper to the Bonapartist club in Paris. +Ample corroboration of this statement may be obtained by arresting the +above-mentioned Edmond Dantès, who either carries the letter for Paris +about with him, or has it at his father’s abode. Should it not be found +in possession of either father or son, then it will assuredly be +discovered in the cabin belonging to the said Dantès on board the +_Pharaon_.” + + +“How dreadful!” said Mercédès, passing her hand across her brow, moist +with perspiration; “and that letter——” + +“I bought it for two hundred thousand francs, madame,” said Monte +Cristo; “but that is a trifle, since it enables me to justify myself to +you.” + +“And the result of that letter——” + +“You well know, madame, was my arrest; but you do not know how long +that arrest lasted. You do not know that I remained for fourteen years +within a quarter of a league of you, in a dungeon in the Château d’If. +You do not know that every day of those fourteen years I renewed the +vow of vengeance which I had made the first day; and yet I was not +aware that you had married Fernand, my calumniator, and that my father +had died of hunger!” + +“Can it be?” cried Mercédès, shuddering. + +“That is what I heard on leaving my prison fourteen years after I had +entered it; and that is why, on account of the living Mercédès and my +deceased father, I have sworn to revenge myself on Fernand, and—I have +revenged myself.” + +“And you are sure the unhappy Fernand did that?” + +“I am satisfied, madame, that he did what I have told you; besides, +that is not much more odious than that a Frenchman by adoption should +pass over to the English; that a Spaniard by birth should have fought +against the Spaniards; that a stipendiary of Ali should have betrayed +and murdered Ali. Compared with such things, what is the letter you +have just read?—a lover’s deception, which the woman who has married +that man ought certainly to forgive; but not so the lover who was to +have married her. Well, the French did not avenge themselves on the +traitor, the Spaniards did not shoot the traitor, Ali in his tomb left +the traitor unpunished; but I, betrayed, sacrificed, buried, have risen +from my tomb, by the grace of God, to punish that man. He sends me for +that purpose, and here I am.” + +The poor woman’s head and arms fell; her legs bent under her, and she +fell on her knees. + +“Forgive, Edmond, forgive for my sake, who love you still!” + +The dignity of the wife checked the fervor of the lover and the mother. +Her forehead almost touched the carpet, when the count sprang forward +and raised her. Then seated on a chair, she looked at the manly +countenance of Monte Cristo, on which grief and hatred still impressed +a threatening expression. + +“Not crush that accursed race?” murmured he; “abandon my purpose at the +moment of its accomplishment? Impossible, madame, impossible!” + +“Edmond,” said the poor mother, who tried every means, “when I call you +Edmond, why do you not call me Mercédès?” + +“Mercédès!” repeated Monte Cristo; “Mercédès! Well yes, you are right; +that name has still its charms, and this is the first time for a long +period that I have pronounced it so distinctly. Oh, Mercédès, I have +uttered your name with the sigh of melancholy, with the groan of +sorrow, with the last effort of despair; I have uttered it when frozen +with cold, crouched on the straw in my dungeon; I have uttered it, +consumed with heat, rolling on the stone floor of my prison. Mercédès, +I must revenge myself, for I suffered fourteen years,—fourteen years I +wept, I cursed; now I tell you, Mercédès, I must revenge myself.” + +The count, fearing to yield to the entreaties of her he had so ardently +loved, called his sufferings to the assistance of his hatred. + +“Revenge yourself, then, Edmond,” cried the poor mother; “but let your +vengeance fall on the culprits,—on him, on me, but not on my son!” + +“It is written in the good book,” said Monte Cristo, “that the sins of +the fathers shall fall upon their children to the third and fourth +generation. Since God himself dictated those words to his prophet, why +should I seek to make myself better than God?” + +“Edmond,” continued Mercédès, with her arms extended towards the count, +“since I first knew you, I have adored your name, have respected your +memory. Edmond, my friend, do not compel me to tarnish that noble and +pure image reflected incessantly on the mirror of my heart. Edmond, if +you knew all the prayers I have addressed to God for you while I +thought you were living and since I have thought you must be dead! Yes, +dead, alas! I imagined your dead body buried at the foot of some gloomy +tower, or cast to the bottom of a pit by hateful jailers, and I wept! +What could I do for you, Edmond, besides pray and weep? Listen; for ten +years I dreamed each night the same dream. I had been told that you had +endeavored to escape; that you had taken the place of another prisoner; +that you had slipped into the winding sheet of a dead body; that you +had been thrown alive from the top of the Château d’If, and that the +cry you uttered as you dashed upon the rocks first revealed to your +jailers that they were your murderers. Well, Edmond, I swear to you, by +the head of that son for whom I entreat your pity,—Edmond, for ten +years I saw every night every detail of that frightful tragedy, and for +ten years I heard every night the cry which awoke me, shuddering and +cold. And I, too, Edmond—oh! believe me—guilty as I was—oh, yes, I, +too, have suffered much!” + +“Have you known what it is to have your father starve to death in your +absence?” cried Monte Cristo, thrusting his hands into his hair; “have +you seen the woman you loved giving her hand to your rival, while you +were perishing at the bottom of a dungeon?” + +“No,” interrupted Mercédès, “but I have seen him whom I loved on the +point of murdering my son.” + +Mercédès uttered these words with such deep anguish, with an accent of +such intense despair, that Monte Cristo could not restrain a sob. The +lion was daunted; the avenger was conquered. + +“What do you ask of me?” said he,—“your son’s life? Well, he shall +live!” + +Mercédès uttered a cry which made the tears start from Monte Cristo’s +eyes; but these tears disappeared almost instantaneously, for, +doubtless, God had sent some angel to collect them—far more precious +were they in his eyes than the richest pearls of Guzerat and Ophir. + +“Oh,” said she, seizing the count’s hand and raising it to her lips; +“oh, thank you, thank you, Edmond! Now you are exactly what I dreamt +you were,—the man I always loved. Oh, now I may say so!” + +“So much the better,” replied Monte Cristo; “as that poor Edmond will +not have long to be loved by you. Death is about to return to the tomb, +the phantom to retire in darkness.” + +“What do you say, Edmond?” + +“I say, since you command me, Mercédès, I must die.” + +“Die? and why so? Who talks of dying? Whence have you these ideas of +death?” + +“You do not suppose that, publicly outraged in the face of a whole +theatre, in the presence of your friends and those of your +son—challenged by a boy who will glory in my forgiveness as if it were +a victory—you do not suppose that I can for one moment wish to live. +What I most loved after you, Mercédès, was myself, my dignity, and that +strength which rendered me superior to other men; that strength was my +life. With one word you have crushed it, and I die.” + +“But the duel will not take place, Edmond, since you forgive?” + +“It will take place,” said Monte Cristo, in a most solemn tone; “but +instead of your son’s blood to stain the ground, mine will flow.” + +Mercédès shrieked, and sprang towards Monte Cristo, but, suddenly +stopping, “Edmond,” said she, “there is a God above us, since you live +and since I have seen you again; I trust to him from my heart. While +waiting his assistance I trust to your word; you have said that my son +should live, have you not?” + +“Yes, madame, he shall live,” said Monte Cristo, surprised that without +more emotion Mercédès had accepted the heroic sacrifice he made for +her. Mercédès extended her hand to the count. + +“Edmond,” said she, and her eyes were wet with tears while looking at +him to whom she spoke, “how noble it is of you, how great the action +you have just performed, how sublime to have taken pity on a poor woman +who appealed to you with every chance against her, Alas, I am grown old +with grief more than with years, and cannot now remind my Edmond by a +smile, or by a look, of that Mercédès whom he once spent so many hours +in contemplating. Ah, believe me, Edmond, as I told you, I too have +suffered much; I repeat, it is melancholy to pass one’s life without +having one joy to recall, without preserving a single hope; but that +proves that all is not yet over. No, it is not finished; I feel it by +what remains in my heart. Oh, I repeat it, Edmond; what you have just +done is beautiful—it is grand; it is sublime.” + +“Do you say so now, Mercédès?—then what would you say if you knew the +extent of the sacrifice I make to you? Suppose that the Supreme Being, +after having created the world and fertilized chaos, had paused in the +work to spare an angel the tears that might one day flow for mortal +sins from her immortal eyes; suppose that when everything was in +readiness and the moment had come for God to look upon his work and see +that it was good—suppose he had snuffed out the sun and tossed the +world back into eternal night—then—even then, Mercédès, you could not +imagine what I lose in sacrificing my life at this moment.” + +Mercédès looked at the count in a way which expressed at the same time +her astonishment, her admiration, and her gratitude. Monte Cristo +pressed his forehead on his burning hands, as if his brain could no +longer bear alone the weight of its thoughts. + +“Edmond,” said Mercédès, “I have but one word more to say to you.” + +The count smiled bitterly. + +“Edmond,” continued she, “you will see that if my face is pale, if my +eyes are dull, if my beauty is gone; if Mercédès, in short, no longer +resembles her former self in her features, you will see that her heart +is still the same. Adieu, then, Edmond; I have nothing more to ask of +heaven—I have seen you again, and have found you as noble and as great +as formerly you were. Adieu, Edmond, adieu, and thank you.” + +But the count did not answer. Mercédès opened the door of the study and +had disappeared before he had recovered from the painful and profound +reverie into which his thwarted vengeance had plunged him. + +The clock of the Invalides struck one when the carriage which conveyed +Madame de Morcerf rolled away on the pavement of the Champs-Élysées, +and made Monte Cristo raise his head. + +“What a fool I was,” said he, “not to tear my heart out on the day when +I resolved to avenge myself!” + + + + Chapter 90. The Meeting + +After Mercédès had left Monte Cristo, he fell into profound gloom. +Around him and within him the flight of thought seemed to have stopped; +his energetic mind slumbered, as the body does after extreme fatigue. + +“What?” said he to himself, while the lamp and the wax lights were +nearly burnt out, and the servants were waiting impatiently in the +anteroom; “what? this edifice which I have been so long preparing, +which I have reared with so much care and toil, is to be crushed by a +single touch, a word, a breath! Yes, this self, of whom I thought so +much, of whom I was so proud, who had appeared so worthless in the +dungeons of the Château d’If, and whom I had succeeded in making so +great, will be but a lump of clay tomorrow. Alas, it is not the death +of the body I regret; for is not the destruction of the vital +principle, the repose to which everything is tending, to which every +unhappy being aspires,—is not this the repose of matter after which I +so long sighed, and which I was seeking to attain by the painful +process of starvation when Faria appeared in my dungeon? What is death +for me? One step farther into rest,—two, perhaps, into silence. No, it +is not existence, then, that I regret, but the ruin of projects so +slowly carried out, so laboriously framed. Providence is now opposed to +them, when I most thought it would be propitious. It is not God’s will +that they should be accomplished. This burden, almost as heavy as a +world, which I had raised, and I had thought to bear to the end, was +too great for my strength, and I was compelled to lay it down in the +middle of my career. Oh, shall I then, again become a fatalist, whom +fourteen years of despair and ten of hope had rendered a believer in +Providence? + +“And all this—all this, because my heart, which I thought dead, was +only sleeping; because it has awakened and has begun to beat again, +because I have yielded to the pain of the emotion excited in my breast +by a woman’s voice. + +“Yet,” continued the count, becoming each moment more absorbed in the +anticipation of the dreadful sacrifice for the morrow, which Mercédès +had accepted, “yet, it is impossible that so noble-minded a woman +should thus through selfishness consent to my death when I am in the +prime of life and strength; it is impossible that she can carry to such +a point maternal love, or rather delirium. There are virtues which +become crimes by exaggeration. No, she must have conceived some +pathetic scene; she will come and throw herself between us; and what +would be sublime here will there appear ridiculous.” + +The blush of pride mounted to the count’s forehead as this thought +passed through his mind. + +“Ridiculous?” repeated he; “and the ridicule will fall on me. I +ridiculous? No, I would rather die.” + +By thus exaggerating to his own mind the anticipated ill-fortune of the +next day, to which he had condemned himself by promising Mercédès to +spare her son, the count at last exclaimed: + +“Folly, folly, folly!—to carry generosity so far as to put myself up as +a mark for that young man to aim at. He will never believe that my +death was suicide; and yet it is important for the honor of my +memory,—and this surely is not vanity, but a justifiable pride,—it is +important the world should know that I have consented, by my free will, +to stop my arm, already raised to strike, and that with the arm which +has been so powerful against others I have struck myself. It must be; +it shall be.” + +Seizing a pen, he drew a paper from a secret drawer in his desk, and +wrote at the bottom of the document (which was no other than his will, +made since his arrival in Paris) a sort of codicil, clearly explaining +the nature of his death. + +“I do this, Oh, my God,” said he, with his eyes raised to heaven, “as +much for thy honor as for mine. I have during ten years considered +myself the agent of thy vengeance, and other wretches, like Morcerf, +Danglars, Villefort, even Morcerf himself, must not imagine that chance +has freed them from their enemy. Let them know, on the contrary, that +their punishment, which had been decreed by Providence, is only delayed +by my present determination, and although they escape it in this world, +it awaits them in another, and that they are only exchanging time for +eternity.” + +While he was thus agitated by gloomy uncertainties,—wretched waking +dreams of grief,—the first rays of morning pierced his windows, and +shone upon the pale blue paper on which he had just inscribed his +justification of Providence. + +It was just five o’clock in the morning when a slight noise like a +stifled sigh reached his ear. He turned his head, looked around him, +and saw no one; but the sound was repeated distinctly enough to +convince him of its reality. + +He arose, and quietly opening the door of the drawing-room, saw Haydée, +who had fallen on a chair, with her arms hanging down and her beautiful +head thrown back. She had been standing at the door, to prevent his +going out without seeing her, until sleep, which the young cannot +resist, had overpowered her frame, wearied as she was with watching. +The noise of the door did not awaken her, and Monte Cristo gazed at her +with affectionate regret. + +“She remembered that she had a son,” said he; “and I forgot I had a +daughter.” Then, shaking his head sorrowfully, “Poor Haydée,” said he; +“she wished to see me, to speak to me; she has feared or guessed +something. Oh, I cannot go without taking leave of her; I cannot die +without confiding her to someone.” + +He quietly regained his seat, and wrote under the other lines: + +“I bequeath to Maximilian Morrel, captain of Spahis,—and son of my +former patron, Pierre Morrel, shipowner at Marseilles,—the sum of +twenty millions, a part of which may be offered to his sister Julie and +brother-in-law Emmanuel, if he does not fear this increase of fortune +may mar their happiness. These twenty millions are concealed in my +grotto at Monte Cristo, of which Bertuccio knows the secret. If his +heart is free, and he will marry Haydée, the daughter of Ali Pasha of +Yanina, whom I have brought up with the love of a father, and who has +shown the love and tenderness of a daughter for me, he will thus +accomplish my last wish. This will has already constituted Haydée +heiress of the rest of my fortune, consisting of lands, funds in +England, Austria, and Holland, furniture in my different palaces and +houses, and which without the twenty millions and the legacies to my +servants, may still amount to sixty millions.” + + +40241m + + + +He was finishing the last line when a cry behind him made him start, +and the pen fell from his hand. + +“Haydée,” said he, “did you read it?” + +“Oh, my lord,” said she, “why are you writing thus at such an hour? Why +are you bequeathing all your fortune to me? Are you going to leave me?” + +“I am going on a journey, dear child,” said Monte Cristo, with an +expression of infinite tenderness and melancholy; “and if any +misfortune should happen to me——” + +The count stopped. + +“Well?” asked the young girl, with an authoritative tone the count had +never observed before, and which startled him. + +“Well, if any misfortune happen to me,” replied Monte Cristo, “I wish +my daughter to be happy.” Haydée smiled sorrowfully, and shook her +head. + +“Do you think of dying, my lord?” said she. + +“The wise man, my child, has said, ‘It is good to think of death.’” + +“Well, if you die,” said she, “bequeath your fortune to others, for if +you die I shall require nothing;” and, taking the paper, she tore it in +four pieces, and threw it into the middle of the room. Then, the effort +having exhausted her strength, she fell, not asleep this time, but +fainting on the floor. + +The count leaned over her and raised her in his arms; and seeing that +sweet pale face, those lovely eyes closed, that beautiful form +motionless and to all appearance lifeless, the idea occurred to him for +the first time, that perhaps she loved him otherwise than as a daughter +loves a father. + +“Alas,” murmured he, with intense suffering, “I might, then, have been +happy yet.” + +Then he carried Haydée to her room, resigned her to the care of her +attendants, and returning to his study, which he shut quickly this +time, he again copied the destroyed will. As he was finishing, the +sound of a cabriolet entering the yard was heard. Monte Cristo +approached the window, and saw Maximilian and Emmanuel alight. “Good,” +said he; “it was time,”—and he sealed his will with three seals. + +A moment afterwards he heard a noise in the drawing-room, and went to +open the door himself. Morrel was there; he had come twenty minutes +before the time appointed. + +“I am perhaps come too soon, count,” said he, “but I frankly +acknowledge that I have not closed my eyes all night, nor has anyone in +my house. I need to see you strong in your courageous assurance, to +recover myself.” + +Monte Cristo could not resist this proof of affection; he not only +extended his hand to the young man, but flew to him with open arms. + +“Morrel,” said he, “it is a happy day for me, to feel that I am beloved +by such a man as you. Good-morning, Emmanuel; you will come with me +then, Maximilian?” + +“Did you doubt it?” said the young captain. + +“But if I were wrong——” + +“I watched you during the whole scene of that challenge yesterday; I +have been thinking of your firmness all night, and I said to myself +that justice must be on your side, or man’s countenance is no longer to +be relied on.” + +“But, Morrel, Albert is your friend?” + +“Simply an acquaintance, sir.” + +“You met on the same day you first saw me?” + +“Yes, that is true; but I should not have recollected it if you had not +reminded me.” + +“Thank you, Morrel.” Then ringing the bell once, “Look.” said he to +Ali, who came immediately, “take that to my solicitor. It is my will, +Morrel. When I am dead, you will go and examine it.” + +“What?” said Morrel, “you dead?” + +“Yes; must I not be prepared for everything, dear friend? But what did +you do yesterday after you left me?” + +“I went to Tortoni’s, where, as I expected, I found Beauchamp and +Château-Renaud. I own I was seeking them.” + +“Why, when all was arranged?” + +“Listen, count; the affair is serious and unavoidable.” + +“Did you doubt it!” + +“No; the offence was public, and everyone is already talking of it.” + +“Well?” + +“Well, I hoped to get an exchange of arms,—to substitute the sword for +the pistol; the pistol is blind.” + +“Have you succeeded?” asked Monte Cristo quickly, with an imperceptible +gleam of hope. + +“No; for your skill with the sword is so well known.” + +“Ah?—who has betrayed me?” + +“The skilful swordsman whom you have conquered.” + +“And you failed?” + +“They positively refused.” + +“Morrel,” said the count, “have you ever seen me fire a pistol?” + +“Never.” + +“Well, we have time; look.” Monte Cristo took the pistols he held in +his hand when Mercédès entered, and fixing an ace of clubs against the +iron plate, with four shots he successively shot off the four sides of +the club. At each shot Morrel turned pale. He examined the bullets with +which Monte Cristo performed this dexterous feat, and saw that they +were no larger than buckshot. + +“It is astonishing,” said he. “Look, Emmanuel.” Then turning towards +Monte Cristo, “Count,” said he, “in the name of all that is dear to +you, I entreat you not to kill Albert!—the unhappy youth has a mother.” + +“You are right,” said Monte Cristo; “and I have none.” These words were +uttered in a tone which made Morrel shudder. + +“You are the offended party, count.” + +“Doubtless; what does that imply?” + +“That you will fire first.” + +“I fire first?” + +“Oh, I obtained, or rather claimed that; we had conceded enough for +them to yield us that.” + +“And at what distance?” + +“Twenty paces.” A smile of terrible import passed over the count’s +lips. + +“Morrel,” said he, “do not forget what you have just seen.” + +“The only chance for Albert’s safety, then, will arise from your +emotion.” + +“I suffer from emotion?” said Monte Cristo. + +“Or from your generosity, my friend; to so good a marksman as you are, +I may say what would appear absurd to another.” + +“What is that?” + +“Break his arm—wound him—but do not kill him.” + +“I will tell you, Morrel,” said the count, “that I do not need +entreating to spare the life of M. de Morcerf; he shall be so well +spared, that he will return quietly with his two friends, while I——” + +“And you?” + +“That will be another thing; I shall be brought home.” + +“No, no,” cried Maximilian, quite unable to restrain his feelings. + +“As I told you, my dear Morrel, M. de Morcerf will kill me.” + +Morrel looked at him in utter amazement. “But what has happened, then, +since last evening, count?” + +“The same thing that happened to Brutus the night before the battle of +Philippi; I have seen a ghost.” + +“And that ghost——” + +“Told me, Morrel, that I had lived long enough.” + +Maximilian and Emmanuel looked at each other. Monte Cristo drew out his +watch. “Let us go,” said he; “it is five minutes past seven, and the +appointment was for eight o’clock.” + +A carriage was in readiness at the door. Monte Cristo stepped into it +with his two friends. He had stopped a moment in the passage to listen +at a door, and Maximilian and Emmanuel, who had considerately passed +forward a few steps, thought they heard him answer by a sigh to a sob +from within. As the clock struck eight they drove up to the place of +meeting. + +“We are first,” said Morrel, looking out of the window. + +“Excuse me, sir,” said Baptistin, who had followed his master with +indescribable terror, “but I think I see a carriage down there under +the trees.” + +Monte Cristo sprang lightly from the carriage, and offered his hand to +assist Emmanuel and Maximilian. The latter retained the count’s hand +between his. + +“I like,” said he, “to feel a hand like this, when its owner relies on +the goodness of his cause.” + +“It seems to me,” said Emmanuel, “that I see two young men down there, +who are evidently, waiting.” + +Monte Cristo drew Morrel a step or two behind his brother-in-law. + +“Maximilian,” said he, “are your affections disengaged?” Morrel looked +at Monte Cristo with astonishment. “I do not seek your confidence, my +dear friend. I only ask you a simple question; answer it;—that is all I +require.” + +“I love a young girl, count.” + +“Do you love her much?” + +“More than my life.” + +“Another hope defeated!” said the count. Then, with a sigh, “Poor +Haydée!” murmured he. + +“To tell the truth, count, if I knew less of you, I should think that +you were less brave than you are.” + +“Because I sigh when thinking of someone I am leaving? Come, Morrel, it +is not like a soldier to be so bad a judge of courage. Do I regret +life? What is it to me, who have passed twenty years between life and +death? Moreover, do not alarm yourself, Morrel; this weakness, if it is +such, is betrayed to you alone. I know the world is a drawing-room, +from which we must retire politely and honestly; that is, with a bow, +and our debts of honor paid.” + +“That is to the purpose. Have you brought your arms?” + +“I?—what for? I hope these gentlemen have theirs.” + +“I will inquire,” said Morrel. + +“Do; but make no treaty—you understand me?” + +“You need not fear.” Morrel advanced towards Beauchamp and +Château-Renaud, who, seeing his intention, came to meet him. The three +young men bowed to each other courteously, if not affably. + +“Excuse me, gentlemen,” said Morrel, “but I do not see M. de Morcerf.” + +“He sent us word this morning,” replied Château-Renaud, “that he would +meet us on the ground.” + +“Ah,” said Morrel. Beauchamp pulled out his watch. + +“It is only five minutes past eight,” said he to Morrel; “there is not +much time lost yet.” + +“Oh, I made no allusion of that kind,” replied Morrel. + +“There is a carriage coming,” said Château-Renaud. It advanced rapidly +along one of the avenues leading towards the open space where they were +assembled. + +“You are doubtless provided with pistols, gentlemen? M. de Monte Cristo +yields his right of using his.” + +“We had anticipated this kindness on the part of the count,” said +Beauchamp, “and I have brought some weapons which I bought eight or ten +days since, thinking to want them on a similar occasion. They are quite +new, and have not yet been used. Will you examine them.” + +“Oh, M. Beauchamp, if you assure me that M. de Morcerf does not know +these pistols, you may readily believe that your word will be quite +sufficient.” + +“Gentlemen,” said Château-Renaud, “it is not Morcerf coming in that +carriage;—faith, it is Franz and Debray!” + +The two young men he announced were indeed approaching. “What chance +brings you here, gentlemen?” said Château-Renaud, shaking hands with +each of them. + +“Because,” said Debray, “Albert sent this morning to request us to +come.” Beauchamp and Château-Renaud exchanged looks of astonishment. “I +think I understand his reason,” said Morrel. + +“What is it?” + +“Yesterday afternoon I received a letter from M. de Morcerf, begging me +to attend the Opera.” + +“And I,” said Debray. + +“And I also,” said Franz. + +“And we, too,” added Beauchamp and Château-Renaud. + +“Having wished you all to witness the challenge, he now wishes you to +be present at the combat.” + +“Exactly so,” said the young men; “you have probably guessed right.” + +“But, after all these arrangements, he does not come himself,” said +Château-Renaud. “Albert is ten minutes after time.” + +“There he comes,” said Beauchamp, “on horseback, at full gallop, +followed by a servant.” + +“How imprudent,” said Château-Renaud, “to come on horseback to fight a +duel with pistols, after all the instructions I had given him.” + +“And besides,” said Beauchamp, “with a collar above his cravat, an open +coat and white waistcoat! Why has he not painted a spot upon his +heart?—it would have been more simple.” + +Meanwhile Albert had arrived within ten paces of the group formed by +the five young men. He jumped from his horse, threw the bridle on his +servant’s arms, and joined them. He was pale, and his eyes were red and +swollen; it was evident that he had not slept. A shade of melancholy +gravity overspread his countenance, which was not natural to him. + +“I thank you, gentlemen,” said he, “for having complied with my +request; I feel extremely grateful for this mark of friendship.” Morrel +had stepped back as Morcerf approached, and remained at a short +distance. “And to you also, M. Morrel, my thanks are due. Come, there +cannot be too many.” + +40248m + + + +“Sir,” said Maximilian, “you are not perhaps aware that I am M. de +Monte Cristo’s friend?” + +“I was not sure, but I thought it might be so. So much the better; the +more honorable men there are here the better I shall be satisfied.” + +“M. Morrel,” said Château-Renaud, “will you apprise the Count of Monte +Cristo that M. de Morcerf is arrived, and we are at his disposal?” + +Morrel was preparing to fulfil his commission. Beauchamp had meanwhile +drawn the box of pistols from the carriage. + +“Stop, gentlemen,” said Albert; “I have two words to say to the Count +of Monte Cristo.” + +“In private?” asked Morrel. + +“No, sir; before all who are here.” + +Albert’s witnesses looked at each other. Franz and Debray exchanged +some words in a whisper, and Morrel, rejoiced at this unexpected +incident, went to fetch the count, who was walking in a retired path +with Emmanuel. + +“What does he want with me?” said Monte Cristo. + +“I do not know, but he wishes to speak to you.” + +“Ah?” said Monte Cristo, “I trust he is not going to tempt me by some +fresh insult!” + +“I do not think that such is his intention,” said Morrel. + +The count advanced, accompanied by Maximilian and Emmanuel. His calm +and serene look formed a singular contrast to Albert’s grief-stricken +face, who approached also, followed by the other four young men. + +When at three paces distant from each other, Albert and the count +stopped. + +“Approach, gentlemen,” said Albert; “I wish you not to lose one word of +what I am about to have the honor of saying to the Count of Monte +Cristo, for it must be repeated by you to all who will listen to it, +strange as it may appear to you.” + +“Proceed, sir,” said the count. + +“Sir,” said Albert, at first with a tremulous voice, but which +gradually became firmer, “I reproached you with exposing the conduct of +M. de Morcerf in Epirus, for guilty as I knew he was, I thought you had +no right to punish him; but I have since learned that you had that +right. It is not Fernand Mondego’s treachery towards Ali Pasha which +induces me so readily to excuse you, but the treachery of the fisherman +Fernand towards you, and the almost unheard-of miseries which were its +consequences; and I say, and proclaim it publicly, that you were +justified in revenging yourself on my father, and I, his son, thank you +for not using greater severity.” + +Had a thunderbolt fallen in the midst of the spectators of this +unexpected scene, it would not have surprised them more than did +Albert’s declaration. As for Monte Cristo, his eyes slowly rose towards +heaven with an expression of infinite gratitude. He could not +understand how Albert’s fiery nature, of which he had seen so much +among the Roman bandits, had suddenly stooped to this humiliation. He +recognized the influence of Mercédès, and saw why her noble heart had +not opposed the sacrifice she knew beforehand would be useless. + +“Now, sir,” said Albert, “if you think my apology sufficient, pray give +me your hand. Next to the merit of infallibility which you appear to +possess, I rank that of candidly acknowledging a fault. But this +confession concerns me only. I acted well as a man, but you have acted +better than man. An angel alone could have saved one of us from +death—that angel came from heaven, if not to make us friends (which, +alas, fatality renders impossible), at least to make us esteem each +other.” + +Monte Cristo, with moistened eye, heaving breast, and lips half open, +extended to Albert a hand which the latter pressed with a sentiment +resembling respectful fear. + +“Gentlemen,” said he, “M. de Monte Cristo receives my apology. I had +acted hastily towards him. Hasty actions are generally bad ones. Now my +fault is repaired. I hope the world will not call me cowardly for +acting as my conscience dictated. But if anyone should entertain a +false opinion of me,” added he, drawing himself up as if he would +challenge both friends and enemies, “I shall endeavor to correct his +mistake.” + +“What happened during the night?” asked Beauchamp of Château-Renaud; +“we appear to make a very sorry figure here.” + +“In truth, what Albert has just done is either very despicable or very +noble,” replied the baron. + +“What can it mean?” said Debray to Franz. + +“The Count of Monte Cristo acts dishonorably to M. de Morcerf, and is +justified by his son! Had I ten Yaninas in my family, I should only +consider myself the more bound to fight ten times.” + +As for Monte Cristo, his head was bent down, his arms were powerless. +Bowing under the weight of twenty-four years’ reminiscences, he thought +not of Albert, of Beauchamp, of Château-Renaud, or of any of that +group; but he thought of that courageous woman who had come to plead +for her son’s life, to whom he had offered his, and who had now saved +it by the revelation of a dreadful family secret, capable of destroying +forever in that young man’s heart every feeling of filial piety. + +“Providence still,” murmured he; “now only am I fully convinced of +being the emissary of God!” + + + + Chapter 91. Mother and Son + +The Count of Monte Cristo bowed to the five young men with a melancholy +and dignified smile, and got into his carriage with Maximilian and +Emmanuel. Albert, Beauchamp, and Château-Renaud remained alone. Albert +looked at his two friends, not timidly, but in a way that appeared to +ask their opinion of what he had just done. + +“Indeed, my dear friend,” said Beauchamp first, who had either the most +feeling or the least dissimulation, “allow me to congratulate you; this +is a very unhoped-for conclusion of a very disagreeable affair.” + +Albert remained silent and wrapped in thought. Château-Renaud contented +himself with tapping his boot with his flexible cane. + +“Are we not going?” said he, after this embarrassing silence. + +“When you please,” replied Beauchamp; “allow me only to compliment M. +de Morcerf, who has given proof today of rare chivalric generosity.” + +“Oh, yes,” said Château-Renaud. + +“It is magnificent,” continued Beauchamp, “to be able to exercise so +much self-control!” + +“Assuredly; as for me, I should have been incapable of it,” said +Château-Renaud, with most significant coolness. + +“Gentlemen,” interrupted Albert, “I think you did not understand that +something very serious had passed between M. de Monte Cristo and +myself.” + +“Possibly, possibly,” said Beauchamp immediately; “but every simpleton +would not be able to understand your heroism, and sooner or later you +will find yourself compelled to explain it to them more energetically +than would be convenient to your bodily health and the duration of your +life. May I give you a friendly counsel? Set out for Naples, the Hague, +or St. Petersburg—calm countries, where the point of honor is better +understood than among our hot-headed Parisians. Seek quietude and +oblivion, so that you may return peaceably to France after a few years. +Am I not right, M. de Château-Renaud?” + +40252m + + + +“That is quite my opinion,” said the gentleman; “nothing induces +serious duels so much as a duel forsworn.” + +“Thank you, gentlemen,” replied Albert, with a smile of indifference; +“I shall follow your advice—not because you give it, but because I had +before intended to quit France. I thank you equally for the service you +have rendered me in being my seconds. It is deeply engraved on my +heart, and, after what you have just said, I remember that only.” + +Château-Renaud and Beauchamp looked at each other; the impression was +the same on both of them, and the tone in which Morcerf had just +expressed his thanks was so determined that the position would have +become embarrassing for all if the conversation had continued. + +“Good-bye, Albert,” said Beauchamp suddenly, carelessly extending his +hand to the young man. The latter did not appear to arouse from his +lethargy; in fact, he did not notice the offered hand. + +“Good-bye,” said Château-Renaud in his turn, keeping his little cane in +his left hand, and saluting with his right. + +Albert’s lips scarcely whispered “Good-bye,” but his look was more +explicit; it expressed a whole poem of restrained anger, proud disdain, +and generous indignation. He preserved his melancholy and motionless +position for some time after his two friends had regained their +carriage; then suddenly unfastening his horse from the little tree to +which his servant had tied it, he mounted and galloped off in the +direction of Paris. + +In a quarter of an hour he was entering the house in the Rue du Helder. +As he alighted, he thought he saw his father’s pale face behind the +curtain of the count’s bedroom. Albert turned away his head with a +sigh, and went to his own apartments. He cast one lingering look on all +the luxuries which had rendered life so easy and so happy since his +infancy; he looked at the pictures, whose faces seemed to smile, and +the landscapes, which appeared painted in brighter colors. Then he took +away his mother’s portrait, with its oaken frame, leaving the gilt +frame from which he took it black and empty. Then he arranged all his +beautiful Turkish arms, his fine English guns, his Japanese china, his +cups mounted in silver, his artistic bronzes by Feuchères or Barye; +examined the cupboards, and placed the key in each; threw into a drawer +of his secretaire, which he left open, all the pocket-money he had +about him, and with it the thousand fancy jewels from his vases and his +jewel-boxes; then he made an exact inventory of everything, and placed +it in the most conspicuous part of the table, after putting aside the +books and papers which had collected there. + +At the beginning of this work, his servant, notwithstanding orders to +the contrary, came to his room. + +“What do you want?” asked he, with a more sorrowful than angry tone. + +“Pardon me, sir,” replied the valet; “you had forbidden me to disturb +you, but the Count of Morcerf has called me.” + +“Well!” said Albert. + +“I did not like to go to him without first seeing you.” + +“Why?” + +“Because the count is doubtless aware that I accompanied you to the +meeting this morning.” + +40254m + + + +“It is probable,” said Albert. + +“And since he has sent for me, it is doubtless to question me on what +happened there. What must I answer?” + +“The truth.” + +“Then I shall say the duel did not take place?” + +“You will say I apologized to the Count of Monte Cristo. Go.” + +The valet bowed and retired, and Albert returned to his inventory. As +he was finishing this work, the sound of horses prancing in the yard, +and the wheels of a carriage shaking his window, attracted his +attention. He approached the window, and saw his father get into it, +and drive away. The door was scarcely closed when Albert bent his steps +to his mother’s room; and, no one being there to announce him, he +advanced to her bedchamber, and distressed by what he saw and guessed, +stopped for one moment at the door. + +As if the same idea had animated these two beings, Mercédès was doing +the same in her apartments that he had just done in his. Everything was +in order,—laces, dresses, jewels, linen, money, all were arranged in +the drawers, and the countess was carefully collecting the keys. Albert +saw all these preparations and understood them, and exclaiming, “My +mother!” he threw his arms around her neck. + +The artist who could have depicted the expression of these two +countenances would certainly have made of them a beautiful picture. All +these proofs of an energetic resolution, which Albert did not fear on +his own account, alarmed him for his mother. “What are you doing?” +asked he. + +“What were you doing?” replied she. + +“Oh, my mother!” exclaimed Albert, so overcome he could scarcely speak; +“it is not the same with you and me—you cannot have made the same +resolution I have, for I have come to warn you that I bid adieu to your +house, and—and to you.” + +“I also,” replied Mercédès, “am going, and I acknowledge I had depended +on your accompanying me; have I deceived myself?” + +“Mother,” said Albert with firmness. “I cannot make you share the fate +I have planned for myself. I must live henceforth without rank and +fortune, and to begin this hard apprenticeship I must borrow from a +friend the loaf I shall eat until I have earned one. So, my dear +mother, I am going at once to ask Franz to lend me the small sum I +shall require to supply my present wants.” + +“You, my poor child, suffer poverty and hunger? Oh, do not say so; it +will break my resolutions.” + +“But not mine, mother,” replied Albert. “I am young and strong; I +believe I am courageous, and since yesterday I have learned the power +of will. Alas, my dear mother, some have suffered so much, and yet +live, and have raised a new fortune on the ruin of all the promises of +happiness which heaven had made them—on the fragments of all the hope +which God had given them! I have seen that, mother; I know that from +the gulf in which their enemies have plunged them they have risen with +so much vigor and glory that in their turn they have ruled their former +conquerors, and have punished them. No, mother; from this moment I have +done with the past, and accept nothing from it—not even a name, because +you can understand that your son cannot bear the name of a man who +ought to blush for it before another.” + +“Albert, my child,” said Mercédès, “if I had a stronger heart, that is +the counsel I would have given you; your conscience has spoken when my +voice became too weak; listen to its dictates. You had friends, Albert; +break off their acquaintance. But do not despair; you have life before +you, my dear Albert, for you are yet scarcely twenty-two years old; and +as a pure heart like yours wants a spotless name, take my father’s—it +was Herrera. I am sure, my dear Albert, whatever may be your career, +you will soon render that name illustrious. Then, my son, return to the +world still more brilliant because of your former sorrows; and if I am +wrong, still let me cherish these hopes, for I have no future to look +forward to. For me the grave opens when I pass the threshold of this +house.” + +“I will fulfil all your wishes, my dear mother,” said the young man. +“Yes, I share your hopes; the anger of Heaven will not pursue us, since +you are pure and I am innocent. But, since our resolution is formed, +let us act promptly. M. de Morcerf went out about half an hour ago; the +opportunity is favorable to avoid an explanation.” + +“I am ready, my son,” said Mercédès. + +Albert ran to fetch a carriage. He recollected that there was a small +furnished house to let in the Rue des Saints-Pères, where his mother +would find a humble but decent lodging, and thither he intended +conducting the countess. As the carriage stopped at the door, and +Albert was alighting, a man approached and gave him a letter. + +Albert recognized the bearer. “From the count,” said Bertuccio. Albert +took the letter, opened, and read it, then looked round for Bertuccio, +but he was gone. + +He returned to Mercédès with tears in his eyes and heaving breast, and +without uttering a word he gave her the letter. Mercédès read: + +“Albert,—While showing you that I have discovered your plans, I hope +also to convince you of my delicacy. You are free, you leave the +count’s house, and you take your mother to your home; but reflect, +Albert, you owe her more than your poor noble heart can pay her. Keep +the struggle for yourself, bear all the suffering, but spare her the +trial of poverty which must accompany your first efforts; for she +deserves not even the shadow of the misfortune which has this day +fallen on her, and Providence is not willing that the innocent should +suffer for the guilty. I know you are going to leave the Rue du Helder +without taking anything with you. Do not seek to know how I discovered +it; I know it—that is sufficient. + +“Now, listen, Albert. Twenty-four years ago I returned, proud and +joyful, to my country. I had a betrothed, Albert, a lovely girl whom I +adored, and I was bringing to my betrothed a hundred and fifty louis, +painfully amassed by ceaseless toil. This money was for her; I destined +it for her, and, knowing the treachery of the sea I buried our treasure +in the little garden of the house my father lived in at Marseilles, on +the Allées de Meilhan. Your mother, Albert, knows that poor house well. +A short time since I passed through Marseilles, and went to see the old +place, which revived so many painful recollections; and in the evening +I took a spade and dug in the corner of the garden where I had +concealed my treasure. The iron box was there—no one had touched +it—under a beautiful fig-tree my father had planted the day I was born, +which overshadowed the spot. Well, Albert, this money, which was +formerly designed to promote the comfort and tranquillity of the woman +I adored, may now, through strange and painful circumstances, be +devoted to the same purpose. + +“Oh, feel for me, who could offer millions to that poor woman, but who +return her only the piece of black bread forgotten under my poor roof +since the day I was torn from her I loved. You are a generous man, +Albert, but perhaps you may be blinded by pride or resentment; if you +refuse me, if you ask another for what I have a right to offer you, I +will say it is ungenerous of you to refuse the life of your mother at +the hands of a man whose father was allowed by your father to die in +all the horrors of poverty and despair.” + +Albert stood pale and motionless to hear what his mother would decide +after she had finished reading this letter. Mercédès turned her eyes +with an ineffable look towards heaven. + +“I accept it,” said she; “he has a right to pay the dowry, which I +shall take with me to some convent!” + +Putting the letter in her bosom, she took her son’s arm, and with a +firmer step than she even herself expected she went downstairs. + + + + Chapter 92. The Suicide + +Meanwhile Monte Cristo had also returned to town with Emmanuel and +Maximilian. Their return was cheerful. Emmanuel did not conceal his joy +at the peaceful termination of the affair, and was loud in his +expressions of delight. Morrel, in a corner of the carriage, allowed +his brother-in-law’s gayety to expend itself in words, while he felt +equal inward joy, which, however, betrayed itself only in his +countenance. + +At the Barrière du Trône they met Bertuccio, who was waiting there, +motionless as a sentinel at his post. Monte Cristo put his head out of +the window, exchanged a few words with him in a low tone, and the +steward disappeared. + +“Count,” said Emmanuel, when they were at the end of the Place Royale, +“put me down at my door, that my wife may not have a single moment of +needless anxiety on my account or yours.” + +“If it were not ridiculous to make a display of our triumph, said +Morrel, I would invite the count to our house; besides that, he +doubtless has some trembling heart to comfort. So we will take leave of +our friend, and let him hasten home.” + +“Stop a moment,” said Monte Cristo; “do not let me lose both my +companions. Return, Emmanuel, to your charming wife, and present my +best compliments to her; and do you, Morrel, accompany me to the +Champs-Élysées.” + +“Willingly,” said Maximilian; “particularly as I have business in that +quarter.” + +“Shall we wait breakfast for you?” asked Emmanuel. + +“No,” replied the young man. The door was closed, and the carriage +proceeded. “See what good fortune I brought you!” said Morrel, when he +was alone with the count. “Have you not thought so?” + +“Yes,” said Monte Cristo; “for that reason I wished to keep you near +me.” + +“It is miraculous!” continued Morrel, answering his own thoughts. + +“What?” said Monte Cristo. + +“What has just happened.” + +“Yes,” said the Count, “you are right—it is miraculous.” + +“For Albert is brave,” resumed Morrel. + +“Very brave,” said Monte Cristo; “I have seen him sleep with a sword +suspended over his head.” + +“And I know he has fought two duels,” said Morrel. “How can you +reconcile that with his conduct this morning?” + +“All owing to your influence,” replied Monte Cristo, smiling. + +“It is well for Albert he is not in the army,” said Morrel. + +“Why?” + +“An apology on the ground!” said the young captain, shaking his head. + +“Come,” said the count mildly, “do not entertain the prejudices of +ordinary men, Morrel! Acknowledge, that if Albert is brave, he cannot +be a coward; he must then have had some reason for acting as he did +this morning, and confess that his conduct is more heroic than +otherwise.” + +“Doubtless, doubtless,” said Morrel; “but I shall say, like the +Spaniard, ‘He has not been so brave today as he was yesterday.’” + +“You will breakfast with me, will you not, Morrel?” said the count, to +turn the conversation. + +“No; I must leave you at ten o’clock.” + +“Your engagement was for breakfast, then?” said the count. + +Morrel smiled, and shook his head. + +“Still you must breakfast somewhere.” + +“But if I am not hungry?” said the young man. + +“Oh,” said the count, “I only know two things which destroy the +appetite,—grief—and as I am happy to see you very cheerful, it is not +that—and love. Now after what you told me this morning of your heart, I +may believe——” + +“Well, count,” replied Morrel gayly, “I will not dispute it.” + +“But you will not make me your confidant, Maximilian?” said the count, +in a tone which showed how gladly he would have been admitted to the +secret. + +“I showed you this morning that I had a heart, did I not, count?” Monte +Cristo only answered by extending his hand to the young man. “Well,” +continued the latter, “since that heart is no longer with you in the +Bois de Vincennes, it is elsewhere, and I must go and find it.” + +“Go,” said the count deliberately; “go, dear friend, but promise me if +you meet with any obstacle to remember that I have some power in this +world, that I am happy to use that power in the behalf of those I love, +and that I love you, Morrel.” + +40260m + + + +“I will remember it,” said the young man, “as selfish children +recollect their parents when they want their aid. When I need your +assistance, and the moment arrives, I will come to you, count.” + +“Well, I rely upon your promise. Good-bye, then.” + +“Good-bye, till we meet again.” + +They had arrived in the Champs-Élysées. Monte Cristo opened the +carriage-door, Morrel sprang out on the pavement, Bertuccio was waiting +on the steps. Morrel disappeared down the Avenue de Marigny, and Monte +Cristo hastened to join Bertuccio. + +“Well?” asked he. + +“She is going to leave her house,” said the steward. + +“And her son?” + +“Florentin, his valet, thinks he is going to do the same.” + +“Come this way.” Monte Cristo took Bertuccio into his study, wrote the +letter we have seen, and gave it to the steward. “Go,” said he quickly. +“But first, let Haydée be informed that I have returned.” + +“Here I am,” said the young girl, who at the sound of the carriage had +run downstairs and whose face was radiant with joy at seeing the count +return safely. Bertuccio left. Every transport of a daughter finding a +father, all the delight of a mistress seeing an adored lover, were felt +by Haydée during the first moments of this meeting, which she had so +eagerly expected. Doubtless, although less evident, Monte Cristo’s joy +was not less intense. Joy to hearts which have suffered long is like +the dew on the ground after a long drought; both the heart and the +ground absorb that beneficent moisture falling on them, and nothing is +outwardly apparent. + +Monte Cristo was beginning to think, what he had not for a long time +dared to believe, that there were two Mercédès in the world, and he +might yet be happy. His eye, elate with happiness, was reading eagerly +the tearful gaze of Haydée, when suddenly the door opened. The count +knit his brow. + +“M. de Morcerf!” said Baptistin, as if that name sufficed for his +excuse. In fact, the count’s face brightened. + +“Which,” asked he, “the viscount or the count?” + +“The count.” + +“Oh,” exclaimed Haydée, “is it not yet over?” + +“I know not if it is finished, my beloved child,” said Monte Cristo, +taking the young girl’s hands; “but I do know you have nothing more to +fear.” + +“But it is the wretched——” + +“That man cannot injure me, Haydée,” said Monte Cristo; “it was his son +alone that there was cause to fear.” + +“And what I have suffered,” said the young girl, “you shall never know, +my lord.” + +Monte Cristo smiled. “By my father’s tomb,” said he, extending his hand +over the head of the young girl, “I swear to you, Haydée, that if any +misfortune happens, it will not be to me.” + +“I believe you, my lord, as implicitly as if God had spoken to me,” +said the young girl, presenting her forehead to him. Monte Cristo +pressed on that pure beautiful forehead a kiss which made two hearts +throb at once, the one violently, the other secretly. + +“Oh,” murmured the count, “shall I then be permitted to love again? Ask +M. de Morcerf into the drawing-room,” said he to Baptistin, while he +led the beautiful Greek girl to a private staircase. + +We must explain this visit, which although expected by Monte Cristo, is +unexpected to our readers. While Mercédès, as we have said, was making +a similar inventory of her property to Albert’s, while she was +arranging her jewels, shutting her drawers, collecting her keys, to +leave everything in perfect order, she did not perceive a pale and +sinister face at a glass door which threw light into the passage, from +which everything could be both seen and heard. He who was thus looking, +without being heard or seen, probably heard and saw all that passed in +Madame de Morcerf’s apartments. From that glass door the pale-faced man +went to the count’s bedroom and raised with a constricted hand the +curtain of a window overlooking the courtyard. He remained there ten +minutes, motionless and dumb, listening to the beating of his own +heart. For him those ten minutes were very long. It was then Albert, +returning from his meeting with the count, perceived his father +watching for his arrival behind a curtain, and turned aside. The +count’s eye expanded; he knew Albert had insulted the count dreadfully, +and that in every country in the world such an insult would lead to a +deadly duel. Albert returned safely—then the count was revenged. + +An indescribable ray of joy illumined that wretched countenance like +the last ray of the sun before it disappears behind the clouds which +bear the aspect, not of a downy couch, but of a tomb. But as we have +said, he waited in vain for his son to come to his apartment with the +account of his triumph. He easily understood why his son did not come +to see him before he went to avenge his father’s honor; but when that +was done, why did not his son come and throw himself into his arms? + +It was then, when the count could not see Albert, that he sent for his +servant, who he knew was authorized not to conceal anything from him. +Ten minutes afterwards, General Morcerf was seen on the steps in a +black coat with a military collar, black pantaloons, and black gloves. +He had apparently given previous orders, for as he reached the bottom +step his carriage came from the coach-house ready for him. The valet +threw into the carriage his military cloak, in which two swords were +wrapped, and, shutting the door, he took his seat by the side of the +coachman. The coachman stooped down for his orders. + +“To the Champs-Élysées,” said the general; “the Count of Monte +Cristo’s. Hurry!” + +The horses bounded beneath the whip; and in five minutes they stopped +before the count’s door. M. de Morcerf opened the door himself, and as +the carriage rolled away he passed up the walk, rang, and entered the +open door with his servant. + +A moment afterwards, Baptistin announced the Count of Morcerf to Monte +Cristo, and the latter, leading Haydée aside, ordered that Morcerf be +asked into the drawing-room. The general was pacing the room the third +time when, in turning, he perceived Monte Cristo at the door. + +“Ah, it is M. de Morcerf,” said Monte Cristo quietly; “I thought I had +not heard aright.” + +“Yes, it is I,” said the count, whom a frightful contraction of the +lips prevented from articulating freely. + +“May I know the cause which procures me the pleasure of seeing M. de +Morcerf so early?” + +“Had you not a meeting with my son this morning?” asked the general. + +“I had,” replied the count. + +“And I know my son had good reasons to wish to fight with you, and to +endeavor to kill you.” + +“Yes, sir, he had very good ones; but you see that in spite of them he +has not killed me, and did not even fight.” + +“Yet he considered you the cause of his father’s dishonor, the cause of +the fearful ruin which has fallen on my house.” + +“It is true, sir,” said Monte Cristo with his dreadful calmness; “a +secondary cause, but not the principal.” + +“Doubtless you made, then, some apology or explanation?” + +“I explained nothing, and it is he who apologized to me.” + +“But to what do you attribute this conduct?” + +“To the conviction, probably, that there was one more guilty than I.” + +“And who was that?” + +“His father.” + +“That may be,” said the count, turning pale; “but you know the guilty +do not like to find themselves convicted.” + +“I know it, and I expected this result.” + +“You expected my son would be a coward?” cried the count. + +“M. Albert de Morcerf is no coward!” said Monte Cristo. + +“A man who holds a sword in his hand, and sees a mortal enemy within +reach of that sword, and does not fight, is a coward! Why is he not +here that I may tell him so?” + +“Sir,” replied Monte Cristo coldly, “I did not expect that you had come +here to relate to me your little family affairs. Go and tell M. Albert +that, and he may know what to answer you.” + +“Oh, no, no,” said the general, smiling faintly, “I did not come for +that purpose; you are right. I came to tell you that I also look upon +you as my enemy. I came to tell you that I hate you instinctively; that +it seems as if I had always known you, and always hated you; and, in +short, since the young people of the present day will not fight, it +remains for us to do so. Do you think so, sir?” + +“Certainly. And when I told you I had foreseen the result, it is the +honor of your visit I alluded to.” + +“So much the better. Are you prepared?” + +“Yes, sir.” + +“You know that we shall fight till one of us is dead,” said the +general, whose teeth were clenched with rage. + +40262m + + + +“Until one of us dies,” repeated Monte Cristo, moving his head slightly +up and down. + +“Let us start, then; we need no witnesses.” + +“Very true,” said Monte Cristo; “it is unnecessary, we know each other +so well!” + +“On the contrary,” said the count, “we know so little of each other.” + +“Indeed?” said Monte Cristo, with the same indomitable coolness; “let +us see. Are you not the soldier Fernand who deserted on the eve of the +battle of Waterloo? Are you not the Lieutenant Fernand who served as +guide and spy to the French army in Spain? Are you not the Captain +Fernand who betrayed, sold, and murdered his benefactor, Ali? And have +not all these Fernands, united, made Lieutenant-General, the Count of +Morcerf, peer of France?” + +“Oh,” cried the general, as if branded with a hot iron, “wretch,—to +reproach me with my shame when about, perhaps, to kill me! No, I did +not say I was a stranger to you. I know well, demon, that you have +penetrated into the darkness of the past, and that you have read, by +the light of what torch I know not, every page of my life; but perhaps +I may be more honorable in my shame than you under your pompous +coverings. No—no, I am aware you know me; but I know you only as an +adventurer sewn up in gold and jewellery. You call yourself, in Paris, +the Count of Monte Cristo; in Italy, Sinbad the Sailor; in Malta, I +forget what. But it is your real name I want to know, in the midst of +your hundred names, that I may pronounce it when we meet to fight, at +the moment when I plunge my sword through your heart.” + +The Count of Monte Cristo turned dreadfully pale; his eye seemed to +burn with a devouring fire. He leaped towards a dressing-room near his +bedroom, and in less than a moment, tearing off his cravat, his coat +and waistcoat, he put on a sailor’s jacket and hat, from beneath which +rolled his long black hair. He returned thus, formidable and +implacable, advancing with his arms crossed on his breast, towards the +general, who could not understand why he had disappeared, but who on +seeing him again, and feeling his teeth chatter and his legs sink under +him, drew back, and only stopped when he found a table to support his +clenched hand. + +“Fernand,” cried he, “of my hundred names I need only tell you one, to +overwhelm you! But you guess it now, do you not?—or, rather, you +remember it? For, notwithstanding all my sorrows and my tortures, I +show you today a face which the happiness of revenge makes young +again—a face you must often have seen in your dreams since your +marriage with Mercédès, my betrothed!” + +40268m + + + +The general, with his head thrown back, hands extended, gaze fixed, +looked silently at this dreadful apparition; then seeking the wall to +support him, he glided along close to it until he reached the door, +through which he went out backwards, uttering this single mournful, +lamentable, distressing cry: + +“Edmond Dantès!” + +Then, with sighs which were unlike any human sound, he dragged himself +to the door, reeled across the courtyard, and falling into the arms of +his valet, he said in a voice scarcely intelligible,—“Home, home.” + +The fresh air and the shame he felt at having exposed himself before +his servants, partly recalled his senses, but the ride was short, and +as he drew near his house all his wretchedness revived. He stopped at a +short distance from the house and alighted. The door was wide open, a +hackney-coach was standing in the middle of the yard—a strange sight +before so noble a mansion; the count looked at it with terror, but +without daring to inquire its meaning, he rushed towards his apartment. + +Two persons were coming down the stairs; he had only time to creep into +an alcove to avoid them. It was Mercédès leaning on her son’s arm and +leaving the house. They passed close by the unhappy being, who, +concealed behind the damask curtain, almost felt Mercédès dress brush +past him, and his son’s warm breath, pronouncing these words: + +“Courage, mother! Come, this is no longer our home!” + +The words died away, the steps were lost in the distance. The general +drew himself up, clinging to the curtain; he uttered the most dreadful +sob which ever escaped from the bosom of a father abandoned at the same +time by his wife and son. He soon heard the clatter of the iron step of +the hackney-coach, then the coachman’s voice, and then the rolling of +the heavy vehicle shook the windows. He darted to his bedroom to see +once more all he had loved in the world; but the hackney-coach drove on +and the head of neither Mercédès nor her son appeared at the window to +take a last look at the house or the deserted father and husband. + +And at the very moment when the wheels of that coach crossed the +gateway a report was heard, and a thick smoke escaped through one of +the panes of the window, which was broken by the explosion. + +40270m + + + + + Chapter 93. Valentine + +We may easily conceive where Morrel’s appointment was. On leaving Monte +Cristo he walked slowly towards Villefort’s; we say slowly, for Morrel +had more than half an hour to spare to go five hundred steps, but he +had hastened to take leave of Monte Cristo because he wished to be +alone with his thoughts. He knew his time well—the hour when Valentine +was giving Noirtier his breakfast, and was sure not to be disturbed in +the performance of this pious duty. Noirtier and Valentine had given +him leave to go twice a week, and he was now availing himself of that +permission. + +He arrived; Valentine was expecting him. Uneasy and almost crazed, she +seized his hand and led him to her grandfather. This uneasiness, +amounting almost to frenzy, arose from the report Morcerf’s adventure +had made in the world, for the affair at the Opera was generally known. +No one at Villefort’s doubted that a duel would ensue from it. +Valentine, with her woman’s instinct, guessed that Morrel would be +Monte Cristo’s second, and from the young man’s well-known courage and +his great affection for the count, she feared that he would not content +himself with the passive part assigned to him. We may easily understand +how eagerly the particulars were asked for, given, and received; and +Morrel could read an indescribable joy in the eyes of his beloved, when +she knew that the termination of this affair was as happy as it was +unexpected. + +“Now,” said Valentine, motioning to Morrel to sit down near her +grandfather, while she took her seat on his footstool,—“now let us talk +about our own affairs. You know, Maximilian, grandpapa once thought of +leaving this house, and taking an apartment away from M. de +Villefort’s.” + +“Yes,” said Maximilian, “I recollect the project, of which I highly +approved.” + +“Well,” said Valentine, “you may approve again, for grandpapa is again +thinking of it.” + +“Bravo,” said Maximilian. + +40272m + + + +“And do you know,” said Valentine, “what reason grandpapa gives for +leaving this house.” Noirtier looked at Valentine to impose silence, +but she did not notice him; her looks, her eyes, her smile, were all +for Morrel. + +“Oh, whatever may be M. Noirtier’s reason,” answered Morrel, “I can +readily believe it to be a good one.” + +“An excellent one,” said Valentine. “He pretends the air of the +Faubourg Saint-Honoré is not good for me.” + +“Indeed?” said Morrel; “in that M. Noirtier may be right; you have not +seemed to be well for the last fortnight.” + +“Not very,” said Valentine. “And grandpapa has become my physician, and +I have the greatest confidence in him, because he knows everything.” + +“Do you then really suffer?” asked Morrel quickly. + +“Oh, it must not be called suffering; I feel a general uneasiness, that +is all. I have lost my appetite, and my stomach feels as if it were +struggling to get accustomed to something.” Noirtier did not lose a +word of what Valentine said. + +“And what treatment do you adopt for this singular complaint?” + +“A very simple one,” said Valentine. “I swallow every morning a +spoonful of the mixture prepared for my grandfather. When I say one +spoonful, I began by one—now I take four. Grandpapa says it is a +panacea.” Valentine smiled, but it was evident that she suffered. + +Maximilian, in his devotedness, gazed silently at her. She was very +beautiful, but her usual pallor had increased; her eyes were more +brilliant than ever, and her hands, which were generally white like +mother-of-pearl, now more resembled wax, to which time was adding a +yellowish hue. + +From Valentine the young man looked towards Noirtier. The latter +watched with strange and deep interest the young girl, absorbed by her +affection, and he also, like Morrel, followed those traces of inward +suffering which was so little perceptible to a common observer that +they escaped the notice of everyone but the grandfather and the lover. + +“But,” said Morrel, “I thought this mixture, of which you now take four +spoonfuls, was prepared for M. Noirtier?” + +“I know it is very bitter,” said Valentine; “so bitter, that all I +drink afterwards appears to have the same taste.” Noirtier looked +inquiringly at his granddaughter. “Yes, grandpapa,” said Valentine; “it +is so. Just now, before I came down to you, I drank a glass of sugared +water; I left half, because it seemed so bitter.” Noirtier turned pale, +and made a sign that he wished to speak. + +Valentine rose to fetch the dictionary. Noirtier watched her with +evident anguish. In fact, the blood was rushing to the young girl’s +head already, her cheeks were becoming red. + +“Oh,” cried she, without losing any of her cheerfulness, “this is +singular! I can’t see! Did the sun shine in my eyes?” And she leaned +against the window. + +“The sun is not shining,” said Morrel, more alarmed by Noirtier’s +expression than by Valentine’s indisposition. He ran towards her. The +young girl smiled. + +“Cheer up,” said she to Noirtier. “Do not be alarmed, Maximilian; it is +nothing, and has already passed away. But listen! Do I not hear a +carriage in the courtyard?” She opened Noirtier’s door, ran to a window +in the passage, and returned hastily. “Yes,” said she, “it is Madame +Danglars and her daughter, who have come to call on us. Good-bye;—I +must run away, for they would send here for me, or, rather, farewell +till I see you again. Stay with grandpapa, Maximilian; I promise you +not to persuade them to stay.” + +40274m + + + +Morrel watched her as she left the room; he heard her ascend the little +staircase which led both to Madame de Villefort’s apartments and to +hers. As soon as she was gone, Noirtier made a sign to Morrel to take +the dictionary. Morrel obeyed; guided by Valentine, he had learned how +to understand the old man quickly. Accustomed, however, as he was to +the work, he had to repeat most of the letters of the alphabet and to +find every word in the dictionary, so that it was ten minutes before +the thought of the old man was translated by these words, + +“Fetch the glass of water and the decanter from Valentine’s room.” + +Morrel rang immediately for the servant who had taken Barrois’s +situation, and in Noirtier’s name gave that order. The servant soon +returned. The decanter and the glass were completely empty. Noirtier +made a sign that he wished to speak. + +“Why are the glass and decanter empty?” asked he; “Valentine said she +only drank half the glassful.” + +The translation of this new question occupied another five minutes. + +“I do not know,” said the servant, “but the housemaid is in +Mademoiselle Valentine’s room: perhaps she has emptied them.” + +“Ask her,” said Morrel, translating Noirtier’s thought this time by his +look. The servant went out, but returned almost immediately. +“Mademoiselle Valentine passed through the room to go to Madame de +Villefort’s,” said he; “and in passing, as she was thirsty, she drank +what remained in the glass; as for the decanter, Master Edward had +emptied that to make a pond for his ducks.” + +Noirtier raised his eyes to heaven, as a gambler does who stakes his +all on one stroke. From that moment the old man’s eyes were fixed on +the door, and did not quit it. + +It was indeed Madame Danglars and her daughter whom Valentine had seen; +they had been ushered into Madame de Villefort’s room, who had said she +would receive them there. That is why Valentine passed through her +room, which was on a level with Valentine’s, and only separated from it +by Edward’s. The two ladies entered the drawing-room with that sort of +official stiffness which preludes a formal communication. Among worldly +people manner is contagious. Madame de Villefort received them with +equal solemnity. Valentine entered at this moment, and the formalities +were resumed. + +“My dear friend,” said the baroness, while the two young people were +shaking hands, “I and Eugénie are come to be the first to announce to +you the approaching marriage of my daughter with Prince Cavalcanti.” +Danglars kept up the title of prince. The popular banker found that it +answered better than count. + +“Allow me to present you my sincere congratulations,” replied Madame de +Villefort. “Prince Cavalcanti appears to be a young man of rare +qualities.” + +40276m + + + +“Listen,” said the baroness, smiling; “speaking to you as a friend I +can say that the prince does not yet appear all he will be. He has +about him a little of that foreign manner by which French persons +recognize, at first sight, the Italian or German nobleman. Besides, he +gives evidence of great kindness of disposition, much keenness of wit, +and as to suitability, M. Danglars assures me that his fortune is +majestic—that is his word.” + +“And then,” said Eugénie, while turning over the leaves of Madame de +Villefort’s album, “add that you have taken a great fancy to the young +man.” + +“And,” said Madame de Villefort, “I need not ask you if you share that +fancy.” + +“I?” replied Eugénie with her usual candor. “Oh, not the least in the +world, madame! My wish was not to confine myself to domestic cares, or +the caprices of any man, but to be an artist, and consequently free in +heart, in person, and in thought.” + +Eugénie pronounced these words with so firm a tone that the color +mounted to Valentine’s cheeks. The timid girl could not understand that +vigorous nature which appeared to have none of the timidities of woman. + +“At any rate,” said she, “since I am to be married whether I will or +not, I ought to be thankful to Providence for having released me from +my engagement with M. Albert de Morcerf, or I should this day have been +the wife of a dishonored man.” + +“It is true,” said the baroness, with that strange simplicity sometimes +met with among fashionable ladies, and of which plebeian intercourse +can never entirely deprive them,—“it is very true that had not the +Morcerfs hesitated, my daughter would have married Monsieur Albert. The +general depended much on it; he even came to force M. Danglars. We have +had a narrow escape.” + +“But,” said Valentine, timidly, “does all the father’s shame revert +upon the son? Monsieur Albert appears to me quite innocent of the +treason charged against the general.” + +“Excuse me,” said the implacable young girl, “Monsieur Albert claims +and well deserves his share. It appears that after having challenged M. +de Monte Cristo at the Opera yesterday, he apologized on the ground +today.” + +“Impossible,” said Madame de Villefort. + +“Ah, my dear friend,” said Madame Danglars, with the same simplicity we +before noticed, “it is a fact. I heard it from M. Debray, who was +present at the explanation.” + +Valentine also knew the truth, but she did not answer. A single word +had reminded her that Morrel was expecting her in M. Noirtier’s room. +Deeply engaged with a sort of inward contemplation, Valentine had +ceased for a moment to join in the conversation. She would, indeed, +have found it impossible to repeat what had been said the last few +minutes, when suddenly Madame Danglars’ hand, pressed on her arm, +aroused her from her lethargy. + +“What is it?” said she, starting at Madame Danglars’ touch as she would +have done from an electric shock. + +“It is, my dear Valentine,” said the baroness, “that you are, +doubtless, suffering.” + +40280m + + + +“I?” said the young girl, passing her hand across her burning forehead. + +“Yes, look at yourself in that glass; you have turned pale and then red +successively, three or four times in one minute.” + +“Indeed,” cried Eugénie, “you are very pale!” + +“Oh, do not be alarmed; I have been so for many days.” Artless as she +was, the young girl knew that this was an opportunity to leave, and +besides, Madame de Villefort came to her assistance. + +“Retire, Valentine,” said she; “you are really suffering, and these +ladies will excuse you; drink a glass of pure water, it will restore +you.” + +Valentine kissed Eugénie, bowed to Madame Danglars, who had already +risen to take her leave, and went out. + +“That poor child,” said Madame de Villefort when Valentine was gone, +“she makes me very uneasy, and I should not be astonished if she had +some serious illness.” + +Meanwhile, Valentine, in a sort of excitement which she could not quite +understand, had crossed Edward’s room without noticing some trick of +the child, and through her own had reached the little staircase. + +She was within three steps of the bottom; she already heard Morrel’s +voice, when suddenly a cloud passed over her eyes, her stiffened foot +missed the step, her hands had no power to hold the baluster, and +falling against the wall she lost her balance wholly and toppled to the +floor. Morrel bounded to the door, opened it, and found Valentine +stretched out at the bottom of the stairs. Quick as a flash, he raised +her in his arms and placed her in a chair. Valentine opened her eyes. + +“Oh, what a clumsy thing I am,” said she with feverish volubility; “I +don’t know my way. I forgot there were three more steps before the +landing.” + +“You have hurt yourself, perhaps,” said Morrel. “What can I do for you, +Valentine?” + +Valentine looked around her; she saw the deepest terror depicted in +Noirtier’s eyes. + +“Don’t worry, dear grandpapa,” said she, endeavoring to smile; “it is +nothing—it is nothing; I was giddy, that is all.” + +“Another attack of giddiness,” said Morrel, clasping his hands. “Oh, +attend to it, Valentine, I entreat you.” + +“But no,” said Valentine,—“no, I tell you it is all past, and it was +nothing. Now, let me tell you some news; Eugénie is to be married in a +week, and in three days there is to be a grand feast, a betrothal +festival. We are all invited, my father, Madame de Villefort, and I—at +least, I understood it so.” + +“When will it be our turn to think of these things? Oh, Valentine, you +who have so much influence over your grandpapa, try to make him +answer—Soon.” + +“And do you,” said Valentine, “depend on me to stimulate the tardiness +and arouse the memory of grandpapa?” + +“Yes,” cried Morrel, “make haste. So long as you are not mine, +Valentine, I shall always think I may lose you.” + +“Oh,” replied Valentine with a convulsive movement, “oh, indeed, +Maximilian, you are too timid for an officer, for a soldier who, they +say, never knows fear. Ha, ha, ha!” + +She burst into a forced and melancholy laugh, her arms stiffened and +twisted, her head fell back on her chair, and she remained motionless. +The cry of terror which was stopped on Noirtier’s lips, seemed to start +from his eyes. Morrel understood it; he knew he must call assistance. +The young man rang the bell violently; the housemaid who had been in +Mademoiselle Valentine’s room, and the servant who had replaced +Barrois, ran in at the same moment. Valentine was so pale, so cold, so +inanimate that without listening to what was said to them they were +seized with the fear which pervaded that house, and they flew into the +passage crying for help. Madame Danglars and Eugénie were going out at +that moment; they heard the cause of the disturbance. + +“I told you so!” exclaimed Madame de Villefort. “Poor child!” + +40278m + + + + + Chapter 94. Maximilian’s Avowal + +At the same moment M. de Villefort’s voice was heard calling from his +study, “What is the matter?” + +Morrel looked at Noirtier who had recovered his self-command, and with +a glance indicated the closet where once before under somewhat similar +circumstances, he had taken refuge. He had only time to get his hat and +throw himself breathless into the closet when the procureur’s footstep +was heard in the passage. + +Villefort sprang into the room, ran to Valentine, and took her in his +arms. + +“A physician, a physician,—M. d’Avrigny!” cried Villefort; “or rather I +will go for him myself.” + +He flew from the apartment, and Morrel at the same moment darted out at +the other door. He had been struck to the heart by a frightful +recollection—the conversation he had heard between the doctor and +Villefort the night of Madame de Saint-Méran’s death, recurred to him; +these symptoms, to a less alarming extent, were the same which had +preceded the death of Barrois. At the same time Monte Cristo’s voice +seemed to resound in his ear with the words he had heard only two hours +before, “Whatever you want, Morrel, come to me; I have great power.” + +More rapidly than thought, he darted down the Rue Matignon, and thence +to the Avenue des Champs-Élysées. + +Meanwhile M. de Villefort arrived in a hired cabriolet at M. +d’Avrigny’s door. He rang so violently that the porter was alarmed. +Villefort ran upstairs without saying a word. The porter knew him, and +let him pass, only calling to him: + +“In his study, Monsieur Procureur—in his study!” Villefort pushed, or +rather forced, the door open. + +“Ah,” said the doctor, “is it you?” + +“Yes,” said Villefort, closing the door after him, “it is I, who am +come in my turn to ask you if we are quite alone. Doctor, my house is +accursed!” + +“What?” said the latter with apparent coolness, but with deep emotion, +“have you another invalid?” + +“Yes, doctor,” cried Villefort, clutching his hair, “yes!” + +D’Avrigny’s look implied, “I told you it would be so.” Then he slowly +uttered these words, “Who is now dying in your house? What new victim +is going to accuse you of weakness before God?” + +A mournful sob burst from Villefort’s heart; he approached the doctor, +and seizing his arm,—“Valentine,” said he, “it is Valentine’s turn!” + +40284m + + + +“Your daughter!” cried d’Avrigny with grief and surprise. + +“You see you were deceived,” murmured the magistrate; “come and see +her, and on her bed of agony entreat her pardon for having suspected +her.” + +“Each time you have applied to me,” said the doctor, “it has been too +late; still I will go. But let us make haste, sir; with the enemies you +have to do with there is no time to be lost.” + +“Oh, this time, doctor, you shall not have to reproach me with +weakness. This time I will know the assassin, and will pursue him.” + +“Let us try first to save the victim before we think of revenging her,” +said d’Avrigny. “Come.” + +The same cabriolet which had brought Villefort took them back at full +speed, and at this moment Morrel rapped at Monte Cristo’s door. + +The count was in his study and was reading with an angry look something +which Bertuccio had brought in haste. Hearing the name of Morrel, who +had left him only two hours before, the count raised his head, arose, +and sprang to meet him. + +“What is the matter, Maximilian?” asked he; “you are pale, and the +perspiration rolls from your forehead.” Morrel fell into a chair. + +“Yes,” said he, “I came quickly; I wanted to speak to you.” + +“Are all your family well?” asked the count, with an affectionate +benevolence, whose sincerity no one could for a moment doubt. + +“Thank you, count—thank you,” said the young man, evidently embarrassed +how to begin the conversation; “yes, everyone in my family is well.” + +“So much the better; yet you have something to tell me?” replied the +count with increased anxiety. + +“Yes,” said Morrel, “it is true; I have but now left a house where +death has just entered, to run to you.” + +“Are you then come from M. de Morcerf’s?” asked Monte Cristo. + +“No,” said Morrel; “is someone dead in his house?” + +“The general has just blown his brains out,” replied Monte Cristo with +great coolness. + +“Oh, what a dreadful event!” cried Maximilian. + +“Not for the countess, or for Albert,” said Monte Cristo; “a dead +father or husband is better than a dishonored one,—blood washes out +shame.” + +“Poor countess,” said Maximilian, “I pity her very much; she is so +noble a woman!” + +“Pity Albert also, Maximilian; for believe me he is the worthy son of +the countess. But let us return to yourself. You have hastened to +me—can I have the happiness of being useful to you?” + +40286m + + + +“Yes, I need your help: that is I thought like a madman that you could +lend me your assistance in a case where God alone can succor me.” + +“Tell me what it is,” replied Monte Cristo. + +“Oh,” said Morrel, “I know not, indeed, if I may reveal this secret to +mortal ears, but fatality impels me, necessity constrains me, count——” +Morrel hesitated. + +“Do you think I love you?” said Monte Cristo, taking the young man’s +hand affectionately in his. + +“Oh, you encourage me, and something tells me there,” placing his hand +on his heart, “that I ought to have no secret from you.” + +“You are right, Morrel; God is speaking to your heart, and your heart +speaks to you. Tell me what it says.” + +“Count, will you allow me to send Baptistin to inquire after someone +you know?” + +“I am at your service, and still more my servants.” + +“Oh, I cannot live if she is not better.” + +“Shall I ring for Baptistin?” + +“No, I will go and speak to him myself.” Morrel went out, called +Baptistin, and whispered a few words to him. The valet ran directly. + +“Well, have you sent?” asked Monte Cristo, seeing Morrel return. + +“Yes, and now I shall be more calm.” + +“You know I am waiting,” said Monte Cristo, smiling. + +“Yes, and I will tell you. One evening I was in a garden; a clump of +trees concealed me; no one suspected I was there. Two persons passed +near me—allow me to conceal their names for the present; they were +speaking in an undertone, and yet I was so interested in what they said +that I did not lose a single word.” + +“This is a gloomy introduction, if I may judge from your pallor and +shuddering, Morrel.” + +“Oh, yes, very gloomy, my friend. Someone had just died in the house to +which that garden belonged. One of the persons whose conversation I +overheard was the master of the house; the other, the physician. The +former was confiding to the latter his grief and fear, for it was the +second time within a month that death had suddenly and unexpectedly +entered that house which was apparently destined to destruction by some +exterminating angel, as an object of God’s anger.” + +“Ah, indeed?” said Monte Cristo, looking earnestly at the young man, +and by an imperceptible movement turning his chair, so that he remained +in the shade while the light fell full on Maximilian’s face. + +“Yes,” continued Morrel, “death had entered that house twice within one +month.” + +“And what did the doctor answer?” asked Monte Cristo. + +“He replied—he replied, that the death was not a natural one, and must +be attributed”— + +“To what?” + +“To poison.” + +“Indeed!” said Monte Cristo with a slight cough which in moments of +extreme emotion helped him to disguise a blush, or his pallor, or the +intense interest with which he listened; “indeed, Maximilian, did you +hear that?” + +“Yes, my dear count, I heard it; and the doctor added that if another +death occurred in a similar way he must appeal to justice.” + +Monte Cristo listened, or appeared to do so, with the greatest +calmness. + +“Well,” said Maximilian, “death came a third time, and neither the +master of the house nor the doctor said a word. Death is now, perhaps, +striking a fourth blow. Count, what am I bound to do, being in +possession of this secret?” + +“My dear friend,” said Monte Cristo, “you appear to be relating an +adventure which we all know by heart. I know the house where you heard +it, or one very similar to it; a house with a garden, a master, a +physician, and where there have been three unexpected and sudden +deaths. Well, I have not intercepted your confidence, and yet I know +all that as well as you, and I have no conscientious scruples. No, it +does not concern me. You say an exterminating angel appears to have +devoted that house to God’s anger—well, who says your supposition is +not reality? Do not notice things which those whose interest it is to +see them pass over. If it is God’s justice, instead of his anger, which +is walking through that house, Maximilian, turn away your face and let +his justice accomplish its purpose.” + +Morrel shuddered. There was something mournful, solemn, and terrible in +the count’s manner. + +“Besides,” continued he, in so changed a tone that no one would have +supposed it was the same person speaking—“besides, who says that it +will begin again?” + +“It has returned, count,” exclaimed Morrel; “that is why I hastened to +you.” + +“Well, what do you wish me to do? Do you wish me, for instance, to give +information to the procureur?” Monte Cristo uttered the last words with +so much meaning that Morrel, starting up, cried out: + +“You know of whom I speak, count, do you not?” + +“Perfectly well, my good friend; and I will prove it to you by putting +the dots to the _i_, or rather by naming the persons. You were walking +one evening in M. de Villefort’s garden; from what you relate, I +suppose it to have been the evening of Madame de Saint-Méran’s death. +You heard M. de Villefort talking to M. d’Avrigny about the death of M. +de Saint-Méran, and that no less surprising, of the countess. M. +d’Avrigny said he believed they both proceeded from poison; and you, +honest man, have ever since been asking your heart and sounding your +conscience to know if you ought to expose or conceal this secret. We +are no longer in the Middle Ages; there is no longer a Vehmgericht, or +Free Tribunals; what do you want to ask these people? ‘Conscience, what +hast thou to do with me?’ as Sterne said. My dear fellow, let them +sleep on, if they are asleep; let them grow pale in their drowsiness, +if they are disposed to do so, and pray do you remain in peace, who +have no remorse to disturb you.” + +Deep grief was depicted on Morrel’s features; he seized Monte Cristo’s +hand. “But it is beginning again, I say!” + +“Well,” said the Count, astonished at his perseverance, which he could +not understand, and looking still more earnestly at Maximilian, “let it +begin again,—it is like the house of the Atreidae;19 God has condemned +them, and they must submit to their punishment. They will all +disappear, like the fabrics children build with cards, and which fall, +one by one, under the breath of their builder, even if there are two +hundred of them. Three months since it was M. de Saint-Méran; Madame de +Saint-Méran two months since; the other day it was Barrois; today, the +old Noirtier, or young Valentine.” + +“You knew it?” cried Morrel, in such a paroxysm of terror that Monte +Cristo started,—he whom the falling heavens would have found unmoved; +“you knew it, and said nothing?” + +“And what is it to me?” replied Monte Cristo, shrugging his shoulders; +“do I know those people? and must I lose the one to save the other? +Faith, no, for between the culprit and the victim I have no choice.” + +“But I,” cried Morrel, groaning with sorrow, “I love her!” + +“You love?—whom?” cried Monte Cristo, starting to his feet, and seizing +the two hands which Morrel was raising towards heaven. + +“I love most fondly—I love madly—I love as a man who would give his +life-blood to spare her a tear—I love Valentine de Villefort, who is +being murdered at this moment! Do you understand me? I love her; and I +ask God and you how I can save her?” + +Monte Cristo uttered a cry which those only can conceive who have heard +the roar of a wounded lion. “Unhappy man,” cried he, wringing his hands +in his turn; “you love Valentine,—that daughter of an accursed race!” + +Never had Morrel witnessed such an expression—never had so terrible an +eye flashed before his face—never had the genius of terror he had so +often seen, either on the battle-field or in the murderous nights of +Algeria, shaken around him more dreadful fire. He drew back terrified. + +As for Monte Cristo, after this ebullition he closed his eyes as if +dazzled by internal light. In a moment he restrained himself so +powerfully that the tempestuous heaving of his breast subsided, as +turbulent and foaming waves yield to the sun’s genial influence when +the cloud has passed. This silence, self-control, and struggle lasted +about twenty seconds, then the count raised his pallid face. + +“See,” said he, “my dear friend, how God punishes the most thoughtless +and unfeeling men for their indifference, by presenting dreadful scenes +to their view. I, who was looking on, an eager and curious +spectator,—I, who was watching the working of this mournful tragedy,—I, +who like a wicked angel was laughing at the evil men committed +protected by secrecy (a secret is easily kept by the rich and +powerful), I am in my turn bitten by the serpent whose tortuous course +I was watching, and bitten to the heart!” + +Morrel groaned. + +“Come, come,” continued the count, “complaints are unavailing, be a +man, be strong, be full of hope, for I am here and will watch over +you.” + +Morrel shook his head sorrowfully. + +“I tell you to hope. Do you understand me?” cried Monte Cristo. +“Remember that I never uttered a falsehood and am never deceived. It is +twelve o’clock, Maximilian; thank heaven that you came at noon rather +than in the evening, or tomorrow morning. Listen, Morrel—it is noon; if +Valentine is not now dead, she will not die.” + +“How so?” cried Morrel, “when I left her dying?” + +Monte Cristo pressed his hands to his forehead. What was passing in +that brain, so loaded with dreadful secrets? What does the angel of +light or the angel of darkness say to that mind, at once implacable and +generous? God only knows. + +Monte Cristo raised his head once more, and this time he was calm as a +child awaking from its sleep. + +“Maximilian,” said he, “return home. I command you not to stir—attempt +nothing, not to let your countenance betray a thought, and I will send +you tidings. Go.” + +“Oh, count, you overwhelm me with that coolness. Have you, then, power +against death? Are you superhuman? Are you an angel?” And the young +man, who had never shrunk from danger, shrank before Monte Cristo with +indescribable terror. But Monte Cristo looked at him with so melancholy +and sweet a smile, that Maximilian felt the tears filling his eyes. + +“I can do much for you, my friend,” replied the count. “Go; I must be +alone.” + +Morrel, subdued by the extraordinary ascendancy Monte Cristo exercised +over everything around him, did not endeavor to resist it. He pressed +the count’s hand and left. He stopped one moment at the door for +Baptistin, whom he saw in the Rue Matignon, and who was running. + +Meanwhile, Villefort and d’Avrigny had made all possible haste, +Valentine had not revived from her fainting fit on their arrival, and +the doctor examined the invalid with all the care the circumstances +demanded, and with an interest which the knowledge of the secret +intensified twofold. Villefort, closely watching his countenance and +his lips, awaited the result of the examination. Noirtier, paler than +even the young girl, more eager than Villefort for the decision, was +watching also intently and affectionately. + +At last d’Avrigny slowly uttered these words: “She is still alive!” + +“Still?” cried Villefort; “oh, doctor, what a dreadful word is that.” + +“Yes,” said the physician, “I repeat it; she is still alive, and I am +astonished at it.” + +“But is she safe?” asked the father. + +“Yes, since she lives.” + +At that moment d’Avrigny’s glance met Noirtier’s eye. It glistened with +such extraordinary joy, so rich and full of thought, that the physician +was struck. He placed the young girl again on the chair,—her lips were +scarcely discernible, they were so pale and white, as well as her whole +face,—and remained motionless, looking at Noirtier, who appeared to +anticipate and commend all he did. + +“Sir,” said d’Avrigny to Villefort, “call Mademoiselle Valentine’s +maid, if you please.” + +Villefort went himself to find her; and d’Avrigny approached Noirtier. + +“Have you something to tell me?” asked he. The old man winked his eyes +expressively, which we may remember was his only way of expressing his +approval. + +“Privately?” + +“Yes.” + +“Well, I will remain with you.” At this moment Villefort returned, +followed by the lady’s maid; and after her came Madame de Villefort. + +“What is the matter, then, with this dear child? she has just left me, +and she complained of being indisposed, but I did not think seriously +of it.” + +The young woman with tears in her eyes and every mark of affection of a +true mother, approached Valentine and took her hand. D’Avrigny +continued to look at Noirtier; he saw the eyes of the old man dilate +and become round, his cheeks turn pale and tremble; the perspiration +stood in drops upon his forehead. + +“Ah,” said he, involuntarily following Noirtier’s eyes, which were +fixed on Madame de Villefort, who repeated: + +“This poor child would be better in bed. Come, Fanny, we will put her +to bed.” + +M. d’Avrigny, who saw that would be a means of his remaining alone with +Noirtier, expressed his opinion that it was the best thing that could +be done; but he forbade that anything should be given to her except +what he ordered. + +They carried Valentine away; she had revived, but could scarcely move +or speak, so shaken was her frame by the attack. She had, however, just +power to give one parting look to her grandfather, who in losing her +seemed to be resigning his very soul. D’Avrigny followed the invalid, +wrote a prescription, ordered Villefort to take a cabriolet, go in +person to a chemist’s to get the prescribed medicine, bring it himself, +and wait for him in his daughter’s room. Then, having renewed his +injunction not to give Valentine anything, he went down again to +Noirtier, shut the doors carefully, and after convincing himself that +no one was listening: + +“Do you,” said he, “know anything of this young lady’s illness?” + +“Yes,” said the old man. + +“We have no time to lose; I will question, and do you answer me.” +Noirtier made a sign that he was ready to answer. “Did you anticipate +the accident which has happened to your granddaughter?” + +“Yes.” D’Avrigny reflected a moment; then approaching Noirtier: + +“Pardon what I am going to say,” added he, “but no indication should be +neglected in this terrible situation. Did you see poor Barrois die?” +Noirtier raised his eyes to heaven. + +“Do you know of what he died!” asked d’Avrigny, placing his hand on +Noirtier’s shoulder. + +“Yes,” replied the old man. + +“Do you think he died a natural death?” A sort of smile was discernible +on the motionless lips of Noirtier. + +“Then you have thought that Barrois was poisoned?” + +“Yes.” + +“Do you think the poison he fell a victim to was intended for him?” + +“No.” + +“Do you think the same hand which unintentionally struck Barrois has +now attacked Valentine?” + +“Yes.” + +“Then will she die too?” asked d’Avrigny, fixing his penetrating gaze +on Noirtier. He watched the effect of this question on the old man. + +“No,” replied he with an air of triumph which would have puzzled the +most clever diviner. + +“Then you hope?” said d’Avrigny, with surprise. + +“Yes.” + +“What do you hope?” The old man made him understand with his eyes that +he could not answer. + +“Ah, yes, it is true,” murmured d’Avrigny. Then, turning to +Noirtier,—“Do you hope the assassin will be tried?” + +“No.” + +“Then you hope the poison will take no effect on Valentine?” + +“Yes.” + +“It is no news to you,” added d’Avrigny, “to tell you that an attempt +has been made to poison her?” The old man made a sign that he +entertained no doubt upon the subject. “Then how do you hope Valentine +will escape?” + +Noirtier kept his eyes steadfastly fixed on the same spot. D’Avrigny +followed the direction and saw that they were fixed on a bottle +containing the mixture which he took every morning. “Ah, indeed?” said +d’Avrigny, struck with a sudden thought, “has it occurred to +you”—Noirtier did not let him finish. + +“Yes,” said he. + +“To prepare her system to resist poison?” + +“Yes.” + +“By accustoming her by degrees——” + +“Yes, yes, yes,” said Noirtier, delighted to be understood. + +“Of course. I had told you that there was brucine in the mixture I give +you.” + +“Yes.” + +“And by accustoming her to that poison, you have endeavored to +neutralize the effect of a similar poison?” Noirtier’s joy continued. +“And you have succeeded,” exclaimed d’Avrigny. “Without that precaution +Valentine would have died before assistance could have been procured. +The dose has been excessive, but she has only been shaken by it; and +this time, at any rate, Valentine will not die.” + +A superhuman joy expanded the old man’s eyes, which were raised towards +heaven with an expression of infinite gratitude. At this moment +Villefort returned. + +“Here, doctor,” said he, “is what you sent me for.” + +“Was this prepared in your presence?” + +“Yes,” replied the procureur. + +“Have you not let it go out of your hands?” + +“No.” + +D’Avrigny took the bottle, poured some drops of the mixture it +contained in the hollow of his hand, and swallowed them. + +“Well,” said he, “let us go to Valentine; I will give instructions to +everyone, and you, M. de Villefort, will yourself see that no one +deviates from them.” + +40294m + + + +At the moment when d’Avrigny was returning to Valentine’s room, +accompanied by Villefort, an Italian priest, of serious demeanor and +calm and firm tone, hired for his use the house adjoining the hotel of +M. de Villefort. No one knew how the three former tenants of that house +left it. About two hours afterwards its foundation was reported to be +unsafe; but the report did not prevent the new occupant establishing +himself there with his modest furniture the same day at five o’clock. +The lease was drawn up for three, six, or nine years by the new tenant, +who, according to the rule of the proprietor, paid six months in +advance. + +This new tenant, who, as we have said, was an Italian, was called Il +Signor Giacomo Busoni. Workmen were immediately called in, and that +same night the passengers at the end of the faubourg saw with surprise +that carpenters and masons were occupied in repairing the lower part of +the tottering house. + + + + Chapter 95. Father and Daughter + +We saw in a preceding chapter how Madame Danglars went formally to +announce to Madame de Villefort the approaching marriage of Eugénie +Danglars and M. Andrea Cavalcanti. This formal announcement, which +implied or appeared to imply, the approval of all the persons concerned +in this momentous affair, had been preceded by a scene to which our +readers must be admitted. We beg them to take one step backward, and to +transport themselves, the morning of that day of great catastrophes, +into the showy, gilded salon we have before shown them, and which was +the pride of its owner, Baron Danglars. + +In this room, at about ten o’clock in the morning, the banker himself +had been walking to and fro for some minutes thoughtfully and in +evident uneasiness, watching both doors, and listening to every sound. +When his patience was exhausted, he called his valet. + +“Étienne,” said he, “see why Mademoiselle Eugénie has asked me to meet +her in the drawing-room, and why she makes me wait so long.” + +Having given this vent to his ill-humor, the baron became more calm; +Mademoiselle Danglars had that morning requested an interview with her +father, and had fixed on the gilded drawing-room as the spot. The +singularity of this step, and above all its formality, had not a little +surprised the banker, who had immediately obeyed his daughter by +repairing first to the drawing-room. Étienne soon returned from his +errand. + +“Mademoiselle’s lady’s maid says, sir, that mademoiselle is finishing +her toilette, and will be here shortly.” + +Danglars nodded, to signify that he was satisfied. To the world and to +his servants Danglars assumed the character of the good-natured man and +the indulgent father. This was one of his parts in the popular comedy +he was performing,—a make-up he had adopted and which suited him about +as well as the masks worn on the classic stage by paternal actors, who +seen from one side, were the image of geniality, and from the other +showed lips drawn down in chronic ill-temper. Let us hasten to say that +in private the genial side descended to the level of the other, so that +generally the indulgent man disappeared to give place to the brutal +husband and domineering father. + +“Why the devil does that foolish girl, who pretends to wish to speak to +me, not come into my study? and why on earth does she want to speak to +me at all?” + +He was turning this thought over in his brain for the twentieth time, +when the door opened and Eugénie appeared, attired in a figured black +satin dress, her hair dressed and gloves on, as if she were going to +the Italian Opera. + +“Well, Eugénie, what is it you want with me? and why in this solemn +drawing-room when the study is so comfortable?” + +“I quite understand why you ask, sir,” said Eugénie, making a sign that +her father might be seated, “and in fact your two questions suggest +fully the theme of our conversation. I will answer them both, and +contrary to the usual method, the last first, because it is the least +difficult. I have chosen the drawing-room, sir, as our place of +meeting, in order to avoid the disagreeable impressions and influences +of a banker’s study. Those gilded cashbooks, drawers locked like gates +of fortresses, heaps of bank-bills, come from I know not where, and the +quantities of letters from England, Holland, Spain, India, China, and +Peru, have generally a strange influence on a father’s mind, and make +him forget that there is in the world an interest greater and more +sacred than the good opinion of his correspondents. I have, therefore, +chosen this drawing-room, where you see, smiling and happy in their +magnificent frames, your portrait, mine, my mother’s, and all sorts of +rural landscapes and touching pastorals. I rely much on external +impressions; perhaps, with regard to you, they are immaterial, but I +should be no artist if I had not some fancies.” + +“Very well,” replied M. Danglars, who had listened to all this preamble +with imperturbable coolness, but without understanding a word, since +like every man burdened with thoughts of the past, he was occupied with +seeking the thread of his own ideas in those of the speaker. + +“There is, then, the second point cleared up, or nearly so,” said +Eugénie, without the least confusion, and with that masculine +pointedness which distinguished her gesture and her language; “and you +appear satisfied with the explanation. Now, let us return to the first. +You ask me why I have requested this interview; I will tell you in two +words, sir; I will not marry count Andrea Cavalcanti.” + +Danglars leaped from his chair and raised his eyes and arms towards +heaven. + +40298m + + + +“Yes, indeed, sir,” continued Eugénie, still quite calm; “you are +astonished, I see; for since this little affair began, I have not +manifested the slightest opposition, and yet I am always sure, when the +opportunity arrives, to oppose a determined and absolute will to people +who have not consulted me, and things which displease me. However, this +time, my tranquillity, or passiveness as philosophers say, proceeded +from another source; it proceeded from a wish, like a submissive and +devoted daughter” (a slight smile was observable on the purple lips of +the young girl), “to practice obedience.” + +“Well?” asked Danglars. + +“Well, sir,” replied Eugénie, “I have tried to the very last and now +that the moment has come, I feel in spite of all my efforts that it is +impossible.” + +“But,” said Danglars, whose weak mind was at first quite overwhelmed +with the weight of this pitiless logic, marking evident premeditation +and force of will, “what is your reason for this refusal, Eugénie? what +reason do you assign?” + +“My reason?” replied the young girl. “Well, it is not that the man is +more ugly, more foolish, or more disagreeable than any other; no, M. +Andrea Cavalcanti may appear to those who look at men’s faces and +figures as a very good specimen of his kind. It is not, either, that my +heart is less touched by him than any other; that would be a +schoolgirl’s reason, which I consider quite beneath me. I actually love +no one, sir; you know it, do you not? I do not then see why, without +real necessity, I should encumber my life with a perpetual companion. +Has not some sage said, ‘Nothing too much’? and another, ‘I carry all +my effects with me’? I have been taught these two aphorisms in Latin +and in Greek; one is, I believe, from Phædrus, and the other from Bias. +Well, my dear father, in the shipwreck of life—for life is an eternal +shipwreck of our hopes—I cast into the sea my useless encumbrance, that +is all, and I remain with my own will, disposed to live perfectly +alone, and consequently perfectly free.” + +“Unhappy girl, unhappy girl!” murmured Danglars, turning pale, for he +knew from long experience the solidity of the obstacle he had so +suddenly encountered. + +“Unhappy girl,” replied Eugénie, “unhappy girl, do you say, sir? No, +indeed; the exclamation appears quite theatrical and affected. Happy, +on the contrary, for what am I in want of? The world calls me +beautiful. It is something to be well received. I like a favorable +reception; it expands the countenance, and those around me do not then +appear so ugly. I possess a share of wit, and a certain relative +sensibility, which enables me to draw from life in general, for the +support of mine, all I meet with that is good, like the monkey who +cracks the nut to get at its contents. I am rich, for you have one of +the first fortunes in France. I am your only daughter, and you are not +so exacting as the fathers of the Porte Saint-Martin and Gaîté, who +disinherit their daughters for not giving them grandchildren. Besides, +the provident law has deprived you of the power to disinherit me, at +least entirely, as it has also of the power to compel me to marry +Monsieur This or Monsieur That. And so—being, beautiful, witty, +somewhat talented, as the comic operas say, and rich—and that is +happiness, sir—why do you call me unhappy?” + +Danglars, seeing his daughter smiling, and proud even to insolence, +could not entirely repress his brutal feelings, but they betrayed +themselves only by an exclamation. Under the fixed and inquiring gaze +levelled at him from under those beautiful black eyebrows, he prudently +turned away, and calmed himself immediately, daunted by the power of a +resolute mind. + +“Truly, my daughter,” replied he with a smile, “you are all you boast +of being, excepting one thing; I will not too hastily tell you which, +but would rather leave you to guess it.” + +Eugénie looked at Danglars, much surprised that one flower of her crown +of pride, with which she had so superbly decked herself, should be +disputed. + +“My daughter,” continued the banker, “you have perfectly explained to +me the sentiments which influence a girl like you, who is determined +she will not marry; now it remains for me to tell you the motives of a +father like me, who has decided that his daughter shall marry.” + +Eugénie bowed, not as a submissive daughter, but as an adversary +prepared for a discussion. + +“My daughter,” continued Danglars, “when a father asks his daughter to +choose a husband, he has always some reason for wishing her to marry. +Some are affected with the mania of which you spoke just now, that of +living again in their grandchildren. This is not my weakness, I tell +you at once; family joys have no charm for me. I may acknowledge this +to a daughter whom I know to be philosophical enough to understand my +indifference, and not to impute it to me as a crime.” + +“This is not to the purpose,” said Eugénie; “let us speak candidly, +sir; I admire candor.” + +“Oh,” said Danglars, “I can, when circumstances render it desirable, +adopt your system, although it may not be my general practice. I will +therefore proceed. I have proposed to you to marry, not for your sake, +for indeed I did not think of you in the least at the moment (you +admire candor, and will now be satisfied, I hope); but because it +suited me to marry you as soon as possible, on account of certain +commercial speculations I am desirous of entering into.” Eugénie became +uneasy. + +40302m + + + +“It is just as I tell you, I assure you, and you must not be angry with +me, for you have sought this disclosure. I do not willingly enter into +arithmetical explanations with an artist like you, who fears to enter +my study lest she should imbibe disagreeable or anti-poetic impressions +and sensations. But in that same banker’s study, where you very +willingly presented yourself yesterday to ask for the thousand francs I +give you monthly for pocket-money, you must know, my dear young lady, +that many things may be learned, useful even to a girl who will not +marry. There one may learn, for instance, what, out of regard to your +nervous susceptibility, I will inform you of in the drawing-room, +namely, that the credit of a banker is his physical and moral life; +that credit sustains him as breath animates the body; and M. de Monte +Cristo once gave me a lecture on that subject, which I have never +forgotten. There we may learn that as credit sinks, the body becomes a +corpse, and this is what must happen very soon to the banker who is +proud to own so good a logician as you for his daughter.” + +But Eugénie, instead of stooping, drew herself up under the blow. +“Ruined?” said she. + +“Exactly, my daughter; that is precisely what I mean,” said Danglars, +almost digging his nails into his breast, while he preserved on his +harsh features the smile of the heartless though clever man; +“ruined—yes, that is it.” + +“Ah!” said Eugénie. + +“Yes, ruined! Now it is revealed, this secret so full of horror, as the +tragic poet says. Now, my daughter, learn from my lips how you may +alleviate this misfortune, so far as it will affect you.” + +“Oh,” cried Eugénie, “you are a bad physiognomist, if you imagine I +deplore on my own account the catastrophe of which you warn me. I +ruined? and what will that signify to me? Have I not my talent left? +Can I not, like Pasta, Malibran, Grisi, acquire for myself what you +would never have given me, whatever might have been your fortune, a +hundred or a hundred and fifty thousand livres per annum, for which I +shall be indebted to no one but myself; and which, instead of being +given as you gave me those poor twelve thousand francs, with sour looks +and reproaches for my prodigality, will be accompanied with +acclamations, with bravos, and with flowers? And if I do not possess +that talent, which your smiles prove to me you doubt, should I not +still have that ardent love of independence, which will be a substitute +for wealth, and which in my mind supersedes even the instinct of +self-preservation? No, I grieve not on my own account, I shall always +find a resource; my books, my pencils, my piano, all the things which +cost but little, and which I shall be able to procure, will remain my +own. + +“Do you think that I sorrow for Madame Danglars? Undeceive yourself +again; either I am greatly mistaken, or she has provided against the +catastrophe which threatens you, and, which will pass over without +affecting her. She has taken care for herself,—at least I hope so,—for +her attention has not been diverted from her projects by watching over +me. She has fostered my independence by professedly indulging my love +for liberty. Oh, no, sir; from my childhood I have seen too much, and +understood too much, of what has passed around me, for misfortune to +have an undue power over me. From my earliest recollections, I have +been beloved by no one—so much the worse; that has naturally led me to +love no one—so much the better—now you have my profession of faith.” + +“Then,” said Danglars, pale with anger, which was not at all due to +offended paternal love,—“then, mademoiselle, you persist in your +determination to accelerate my ruin?” + +“Your ruin? I accelerate your ruin? What do you mean? I do not +understand you.” + +“So much the better, I have a ray of hope left; listen.” + +“I am all attention,” said Eugénie, looking so earnestly at her father +that it was an effort for the latter to endure her unrelenting gaze. + +“M. Cavalcanti,” continued Danglars, “is about to marry you, and will +place in my hands his fortune, amounting to three million livres.” + +“That is admirable!” said Eugénie with sovereign contempt, smoothing +her gloves out one upon the other. + +“You think I shall deprive you of those three millions,” said Danglars; +“but do not fear it. They are destined to produce at least ten. I and a +brother banker have obtained a grant of a railway, the only industrial +enterprise which in these days promises to make good the fabulous +prospects that Law once held out to the eternally deluded Parisians, in +the fantastic Mississippi scheme. As I look at it, a millionth part of +a railway is worth fully as much as an acre of waste land on the banks +of the Ohio. We make in our case a deposit, on a mortgage, which is an +advance, as you see, since we gain at least ten, fifteen, twenty, or a +hundred livres’ worth of iron in exchange for our money. Well, within a +week I am to deposit four millions for my share; the four millions, I +promise you, will produce ten or twelve.” + +“But during my visit to you the day before yesterday, sir, which you +appear to recollect so well,” replied Eugénie, “I saw you arranging a +deposit—is not that the term?—of five millions and a half; you even +pointed it out to me in two drafts on the treasury, and you were +astonished that so valuable a paper did not dazzle my eyes like +lightning.” + +“Yes, but those five millions and a half are not mine, and are only a +proof of the great confidence placed in me; my title of popular banker +has gained me the confidence of charitable institutions, and the five +millions and a half belong to them; at any other time I should not have +hesitated to make use of them, but the great losses I have recently +sustained are well known, and, as I told you, my credit is rather +shaken. That deposit may be at any moment withdrawn, and if I had +employed it for another purpose, I should bring on me a disgraceful +bankruptcy. I do not despise bankruptcies, believe me, but they must be +those which enrich, not those which ruin. Now, if you marry M. +Cavalcanti, and I get the three millions, or even if it is thought I am +going to get them, my credit will be restored, and my fortune, which +for the last month or two has been swallowed up in gulfs which have +been opened in my path by an inconceivable fatality, will revive. Do +you understand me?” + +“Perfectly; you pledge me for three millions, do you not?” + +“The greater the amount, the more flattering it is to you; it gives you +an idea of your value.” + +“Thank you. One word more, sir; do you promise me to make what use you +can of the report of the fortune M. Cavalcanti will bring without +touching the money? This is no act of selfishness, but of delicacy. I +am willing to help rebuild your fortune, but I will not be an +accomplice in the ruin of others.” + +“But since I tell you,” cried Danglars, “that with these three +million——” + +“Do you expect to recover your position, sir, without touching those +three million?” + +“I hope so, if the marriage should take place and confirm my credit.” + +“Shall you be able to pay M. Cavalcanti the five hundred thousand +francs you promise for my dowry?” + +“He shall receive them on returning from the mayor’s20.” + +“Very well!” + +“What next? what more do you want?” + +“I wish to know if, in demanding my signature, you leave me entirely +free in my person?” + +“Absolutely.” + +“Then, as I said before, sir,—very well; I am ready to marry M. +Cavalcanti.” + +“But what are you up to?” + +“Ah, that is my affair. What advantage should I have over you, if +knowing your secret I were to tell you mine?” + +Danglars bit his lips. “Then,” said he, “you are ready to pay the +official visits, which are absolutely indispensable?” + +“Yes,” replied Eugénie. + +“And to sign the contract in three days?” + +“Yes.” + +“Then, in my turn, I also say, very well!” + +Danglars pressed his daughter’s hand in his. But, extraordinary to +relate, the father did not say, “Thank you, my child,” nor did the +daughter smile at her father. + +“Is the conference ended?” asked Eugénie, rising. + +Danglars motioned that he had nothing more to say. Five minutes +afterwards the piano resounded to the touch of Mademoiselle d’Armilly’s +fingers, and Mademoiselle Danglars was singing Brabantio’s malediction +on Desdemona. At the end of the piece Étienne entered, and announced to +Eugénie that the horses were to the carriage, and that the baroness was +waiting for her to pay her visits. We have seen them at Villefort’s; +they proceeded then on their course. + +40306m + + + + +VOLUME FIVE + +50009m + + + +50011m + + + +50019m + + + + + Chapter 96. The Contract + +Three days after the scene we have just described, namely towards five +o’clock in the afternoon of the day fixed for the signature of the +contract between Mademoiselle Eugénie Danglars and Andrea Cavalcanti, +whom the banker persisted in calling prince, a fresh breeze was +stirring the leaves in the little garden in front of the Count of Monte +Cristo’s house, and the count was preparing to go out. While his horses +were impatiently pawing the ground, held in by the coachman, who had +been seated a quarter of an hour on his box, the elegant phaeton with +which we are familiar rapidly turned the angle of the entrance-gate, +and cast out on the doorsteps M. Andrea Cavalcanti, as decked up and +gay as if he were going to marry a princess. + +He inquired after the count with his usual familiarity, and ascending +lightly to the first story met him at the top of the stairs. + +The count stopped on seeing the young man. As for Andrea, he was +launched, and when he was once launched nothing stopped him. + +“Ah, good morning, my dear count,” said he. + +“Ah, M. Andrea,” said the latter, with his half-jesting tone; “how do +you do?” + +“Charmingly, as you see. I am come to talk to you about a thousand +things; but, first tell me, were you going out or just returned?” + +“I was going out, sir.” + +“Then, in order not to hinder you, I will get up with you if you please +in your carriage, and Tom shall follow with my phaeton in tow.” + +“No,” said the count, with an imperceptible smile of contempt, for he +had no wish to be seen in the young man’s society,—“no; I prefer +listening to you here, my dear M. Andrea; we can chat better in-doors, +and there is no coachman to overhear our conversation.” + +The count returned to a small drawing-room on the first floor, sat +down, and crossing his legs motioned to the young man to take a seat +also. Andrea assumed his gayest manner. + +“You know, my dear count,” said he, “the ceremony is to take place this +evening. At nine o’clock the contract is to be signed at my +father-in-law’s.” + +“Ah, indeed?” said Monte Cristo. + +“What; is it news to you? Has not M. Danglars informed you of the +ceremony?” + +“Oh, yes,” said the count; “I received a letter from him yesterday, but +I do not think the hour was mentioned.” + +“Possibly my father-in-law trusted to its general notoriety.” + +“Well,” said Monte Cristo, “you are fortunate, M. Cavalcanti; it is a +most suitable alliance you are contracting, and Mademoiselle Danglars +is a handsome girl.” + +“Yes, indeed she is,” replied Cavalcanti, in a very modest tone. + +“Above all, she is very rich,—at least, I believe so,” said Monte +Cristo. + +“Very rich, do you think?” replied the young man. + +“Doubtless; it is said M. Danglars conceals at least half of his +fortune.” + +“And he acknowledges fifteen or twenty millions,” said Andrea with a +look sparkling with joy. + +“Without reckoning,” added Monte Cristo, “that he is on the eve of +entering into a sort of speculation already in vogue in the United +States and in England, but quite novel in France.” + +“Yes, yes, I know what you mean,—the railway, of which he has obtained +the grant, is it not?” + +“Precisely; it is generally believed he will gain ten millions by that +affair.” + +“Ten millions! Do you think so? It is magnificent!” said Cavalcanti, +who was quite confounded at the metallic sound of these golden words. + +“Without reckoning,” replied Monte Cristo, “that all his fortune will +come to you, and justly too, since Mademoiselle Danglars is an only +daughter. Besides, your own fortune, as your father assured me, is +almost equal to that of your betrothed. But enough of money matters. Do +you know, M. Andrea, I think you have managed this affair rather +skilfully?” + +“Not badly, by any means,” said the young man; “I was born for a +diplomatist.” + +“Well, you must become a diplomatist; diplomacy, you know, is something +that is not to be acquired; it is instinctive. Have you lost your +heart?” + +“Indeed, I fear it,” replied Andrea, in the tone in which he had heard +Dorante or Valère reply to Alceste21 at the Théâtre Français. + +“Is your love returned?” + +“I suppose so,” said Andrea with a triumphant smile, “since I am +accepted. But I must not forget one grand point.” + +“Which?” + +“That I have been singularly assisted.” + +“Nonsense.” + +“I have, indeed.” + +“By circumstances?” + +“No; by you.” + +“By me? Not at all, prince,” said Monte Cristo laying a marked stress +on the title, “what have I done for you? Are not your name, your social +position, and your merit sufficient?” + +“No,” said Andrea,—“no; it is useless for you to say so, count. I +maintain that the position of a man like you has done more than my +name, my social position, and my merit.” + +“You are completely mistaken, sir,” said Monte Cristo coldly, who felt +the perfidious manœuvre of the young man, and understood the bearing of +his words; “you only acquired my protection after the influence and +fortune of your father had been ascertained; for, after all, who +procured for me, who had never seen either you or your illustrious +father, the pleasure of your acquaintance?—two of my good friends, Lord +Wilmore and the Abbé Busoni. What encouraged me not to become your +surety, but to patronize you?—your father’s name, so well known in +Italy and so highly honored. Personally, I do not know you.” + +This calm tone and perfect ease made Andrea feel that he was, for the +moment, restrained by a more muscular hand than his own, and that the +restraint could not be easily broken through. + +“Oh, then my father has really a very large fortune, count?” + +“It appears so, sir,” replied Monte Cristo. + +“Do you know if the marriage settlement he promised me has come?” + +“I have been advised of it.” + +“But the three millions?” + +“The three millions are probably on the road.” + +“Then I shall really have them?” + +“Oh, well,” said the count, “I do not think you have yet known the want +of money.” + +Andrea was so surprised that he pondered the matter for a moment. Then, +arousing from his reverie: + +“Now, sir, I have one request to make to you, which you will +understand, even if it should be disagreeable to you.” + +“Proceed,” said Monte Cristo. + +“I have formed an acquaintance, thanks to my good fortune, with many +noted persons, and have, at least for the moment, a crowd of friends. +But marrying, as I am about to do, before all Paris, I ought to be +supported by an illustrious name, and in the absence of the paternal +hand some powerful one ought to lead me to the altar; now, my father is +not coming to Paris, is he?” + +“He is old, covered with wounds, and suffers dreadfully, he says, in +travelling.” + +“I understand; well, I am come to ask a favor of you.” + +“Of me?” + +“Yes, of you.” + +“And pray what may it be?” + +“Well, to take his part.” + +“Ah, my dear sir! What?—after the varied relations I have had the +happiness to sustain towards you, can it be that you know me so little +as to ask such a thing? Ask me to lend you half a million and, although +such a loan is somewhat rare, on my honor, you would annoy me less! +Know, then, what I thought I had already told you, that in +participation in this world’s affairs, more especially in their moral +aspects, the Count of Monte Cristo has never ceased to entertain the +scruples and even the superstitions of the East. I, who have a seraglio +at Cairo, one at Smyrna, and one at Constantinople, preside at a +wedding?—never!” + +“Then you refuse me?” + +“Decidedly; and were you my son or my brother I would refuse you in the +same way.” + +“But what must be done?” said Andrea, disappointed. + +“You said just now that you had a hundred friends.” + +“Very true, but you introduced me at M. Danglars’.” + +“Not at all! Let us recall the exact facts. You met him at a dinner +party at my house, and you introduced yourself at his house; that is a +totally different affair.” + +“Yes, but, by my marriage, you have forwarded that.” + +“I?—not in the least, I beg you to believe. Recollect what I told you +when you asked me to propose you. ‘Oh, I never make matches, my dear +prince, it is my settled principle.’” Andrea bit his lips. + +50025m + + + +“But, at least, you will be there?” + +“Will all Paris be there?” + +“Oh, certainly.” + +“Well, like all Paris, I shall be there too,” said the count. + +“And will you sign the contract?” + +“I see no objection to that; my scruples do not go thus far.” + +“Well, since you will grant me no more, I must be content with what you +give me. But one word more, count.” + +“What is it?” + +“Advice.” + +“Be careful; advice is worse than a service.” + +“Oh, you can give me this without compromising yourself.” + +“Tell me what it is.” + +“Is my wife’s fortune five hundred thousand livres?” + +“That is the sum M. Danglars himself announced.” + +“Must I receive it, or leave it in the hands of the notary?” + +“This is the way such affairs are generally arranged when it is wished +to do them stylishly: Your two solicitors appoint a meeting, when the +contract is signed, for the next or the following day; then they +exchange the two portions, for which they each give a receipt; then, +when the marriage is celebrated, they place the amount at your disposal +as the chief member of the alliance.” + +“Because,” said Andrea, with a certain ill-concealed uneasiness, “I +thought I heard my father-in-law say that he intended embarking our +property in that famous railway affair of which you spoke just now.” + +“Well,” replied Monte Cristo, “it will be the way, everybody says, of +trebling your fortune in twelve months. Baron Danglars is a good +father, and knows how to calculate.” + +“In that case,” said Andrea, “everything is all right, excepting your +refusal, which quite grieves me.” + +“You must attribute it only to natural scruples under similar +circumstances.” + +“Well,” said Andrea, “let it be as you wish. This evening, then, at +nine o’clock.” + +“Adieu till then.” + +Notwithstanding a slight resistance on the part of Monte Cristo, whose +lips turned pale, but who preserved his ceremonious smile, Andrea +seized the count’s hand, pressed it, jumped into his phaeton, and +disappeared. + +The four or five remaining hours before nine o’clock arrived, Andrea +employed in riding, paying visits,—designed to induce those of whom he +had spoken to appear at the banker’s in their gayest +equipages,—dazzling them by promises of shares in schemes which have +since turned every brain, and in which Danglars was just taking the +initiative. + +In fact, at half-past eight in the evening the grand salon, the gallery +adjoining, and the three other drawing-rooms on the same floor, were +filled with a perfumed crowd, who sympathized but little in the event, +but who all participated in that love of being present wherever there +is anything fresh to be seen. An Academician would say that the +entertainments of the fashionable world are collections of flowers +which attract inconstant butterflies, famished bees, and buzzing +drones. + +50025m + + + +No one could deny that the rooms were splendidly illuminated; the light +streamed forth on the gilt mouldings and the silk hangings; and all the +bad taste of decorations, which had only their richness to boast of, +shone in its splendor. Mademoiselle Eugénie was dressed with elegant +simplicity in a figured white silk dress, and a white rose half +concealed in her jet black hair was her only ornament, unaccompanied by +a single jewel. Her eyes, however, betrayed that perfect confidence +which contradicted the girlish simplicity of this modest attire. + +Madame Danglars was chatting at a short distance with Debray, +Beauchamp, and Château-Renaud. Debray was admitted to the house for +this grand ceremony, but on the same plane with everyone else, and +without any particular privilege. M. Danglars, surrounded by deputies +and men connected with the revenue, was explaining a new theory of +taxation which he intended to adopt when the course of events had +compelled the government to call him into the ministry. Andrea, on +whose arm hung one of the most consummate dandies of the Opera, was +explaining to him rather cleverly, since he was obliged to be bold to +appear at ease, his future projects, and the new luxuries he meant to +introduce to Parisian fashions with his hundred and seventy-five +thousand livres per annum. + +The crowd moved to and fro in the rooms like an ebb and flow of +turquoises, rubies, emeralds, opals, and diamonds. As usual, the oldest +women were the most decorated, and the ugliest the most conspicuous. If +there was a beautiful lily, or a sweet rose, you had to search for it, +concealed in some corner behind a mother with a turban, or an aunt with +a bird-of-paradise. + +At each moment, in the midst of the crowd, the buzzing, and the +laughter, the door-keeper’s voice was heard announcing some name well +known in the financial department, respected in the army, or +illustrious in the literary world, and which was acknowledged by a +slight movement in the different groups. But for one whose privilege it +was to agitate that ocean of human waves, how many were received with a +look of indifference or a sneer of disdain! + +At the moment when the hand of the massive time-piece, representing +Endymion asleep, pointed to nine on its golden face, and the hammer, +the faithful type of mechanical thought, struck nine times, the name of +the Count of Monte Cristo resounded in its turn, and as if by an +electric shock all the assembly turned towards the door. The count was +dressed in black and with his habitual simplicity; his white waistcoat +displayed his expansive noble chest and his black stock was singularly +noticeable because of its contrast with the deadly paleness of his +face. His only jewellery was a chain, so fine that the slender gold +thread was scarcely perceptible on his white waistcoat. + +A circle was immediately formed around the door. The count perceived at +one glance Madame Danglars at one end of the drawing-room, M. Danglars +at the other, and Eugénie in front of him. He first advanced towards +the baroness, who was chatting with Madame de Villefort, who had come +alone, Valentine being still an invalid; and without turning aside, so +clear was the road left for him, he passed from the baroness to +Eugénie, whom he complimented in such rapid and measured terms, that +the proud artist was quite struck. Near her was Mademoiselle Louise +d’Armilly, who thanked the count for the letters of introduction he had +so kindly given her for Italy, which she intended immediately to make +use of. On leaving these ladies he found himself with Danglars, who had +advanced to meet him. + +Having accomplished these three social duties, Monte Cristo stopped, +looking around him with that expression peculiar to a certain class, +which seems to say, “I have done my duty, now let others do theirs.” + +Andrea, who was in an adjoining room, had shared in the sensation +caused by the arrival of Monte Cristo, and now came forward to pay his +respects to the count. He found him completely surrounded; all were +eager to speak to him, as is always the case with those whose words are +few and weighty. The solicitors arrived at this moment and arranged +their scrawled papers on the velvet cloth embroidered with gold which +covered the table prepared for the signature; it was a gilt table +supported on lions’ claws. One of the notaries sat down, the other +remained standing. They were about to proceed to the reading of the +contract, which half Paris assembled was to sign. All took their +places, or rather the ladies formed a circle, while the gentlemen (more +indifferent to the restraints of what Boileau calls the _style +énergique_) commented on the feverish agitation of Andrea, on M. +Danglars’ riveted attention, Eugénie’s composure, and the light and +sprightly manner in which the baroness treated this important affair. + +The contract was read during a profound silence. But as soon as it was +finished, the buzz was redoubled through all the drawing-rooms; the +brilliant sums, the rolling millions which were to be at the command of +the two young people, and which crowned the display of the wedding +presents and the young lady’s diamonds, which had been made in a room +entirely appropriated for that purpose, had exercised to the full their +delusions over the envious assembly. + +Mademoiselle Danglars’ charms were heightened in the opinion of the +young men, and for the moment seemed to outvie the sun in splendor. As +for the ladies, it is needless to say that while they coveted the +millions, they thought they did not need them for themselves, as they +were beautiful enough without them. Andrea, surrounded by his friends, +complimented, flattered, beginning to believe in the reality of his +dream, was almost bewildered. The notary solemnly took the pen, +flourished it above his head, and said: + +“Gentlemen, we are about to sign the contract.” + +The baron was to sign first, then the representative of M. Cavalcanti, +senior, then the baroness, afterwards the “future couple,” as they are +styled in the abominable phraseology of legal documents. + +The baron took the pen and signed, then the representative. The +baroness approached, leaning on Madame de Villefort’s arm. + +“My dear,” said she, as she took the pen, “is it not vexatious? An +unexpected incident, in the affair of murder and theft at the Count of +Monte Cristo’s, in which he nearly fell a victim, deprives us of the +pleasure of seeing M. de Villefort.” + +“Indeed?” said M. Danglars, in the same tone in which he would have +said, “Oh, well, what do I care?” + +“As a matter of fact,” said Monte Cristo, approaching, “I am much +afraid that I am the involuntary cause of his absence.” + +“What, you, count?” said Madame Danglars, signing; “if you are, take +care, for I shall never forgive you.” + +Andrea pricked up his ears. + +“But it is not my fault, as I shall endeavor to prove.” + +Everyone listened eagerly; Monte Cristo who so rarely opened his lips, +was about to speak. + +“You remember,” said the count, during the most profound silence, “that +the unhappy wretch who came to rob me died at my house; the supposition +is that he was stabbed by his accomplice, on attempting to leave it.” + +“Yes,” said Danglars. + +“In order that his wounds might be examined he was undressed, and his +clothes were thrown into a corner, where the police picked them up, +with the exception of the waistcoat, which they overlooked.” + +Andrea turned pale, and drew towards the door; he saw a cloud rising in +the horizon, which appeared to forebode a coming storm. + +“Well, this waistcoat was discovered today, covered with blood, and +with a hole over the heart.” The ladies screamed, and two or three +prepared to faint. “It was brought to me. No one could guess what the +dirty rag could be; I alone suspected that it was the waistcoat of the +murdered man. My valet, in examining this mournful relic, felt a paper +in the pocket and drew it out; it was a letter addressed to you, +baron.” + +“To me?” cried Danglars. + +“Yes, indeed, to you; I succeeded in deciphering your name under the +blood with which the letter was stained,” replied Monte Cristo, amid +the general outburst of amazement. + +“But,” asked Madame Danglars, looking at her husband with uneasiness, +“how could that prevent M. de Villefort——” + +“In this simple way, madame,” replied Monte Cristo; “the waistcoat and +the letter were both what is termed circumstantial evidence; I +therefore sent them to the king’s attorney. You understand, my dear +baron, that legal methods are the safest in criminal cases; it was, +perhaps, some plot against you.” Andrea looked steadily at Monte Cristo +and disappeared in the second drawing-room. + +“Possibly,” said Danglars; “was not this murdered man an old +galley-slave?” + +50025m + + + +“Yes,” replied the count; “a felon named Caderousse.” Danglars turned +slightly pale; Andrea reached the anteroom beyond the little +drawing-room. + +“But go on signing,” said Monte Cristo; “I perceive that my story has +caused a general emotion, and I beg to apologize to you, baroness, and +to Mademoiselle Danglars.” + +The baroness, who had signed, returned the pen to the notary. + +“Prince Cavalcanti,” said the latter; “Prince Cavalcanti, where are +you?” + +“Andrea, Andrea,” repeated several young people, who were already on +sufficiently intimate terms with him to call him by his Christian name. + +“Call the prince; inform him that it is his turn to sign,” cried +Danglars to one of the floorkeepers. + +But at the same instant the crowd of guests rushed in alarm into the +principal salon as if some frightful monster had entered the +apartments, _quærens quem devoret_. There was, indeed, reason to +retreat, to be alarmed, and to scream. An officer was placing two +soldiers at the door of each drawing-room, and was advancing towards +Danglars, preceded by a commissary of police, girded with his scarf. +Madame Danglars uttered a scream and fainted. Danglars, who thought +himself threatened (certain consciences are never calm),—Danglars even +before his guests showed a countenance of abject terror. + +“What is the matter, sir?” asked Monte Cristo, advancing to meet the +commissioner. + +“Which of you gentlemen,” asked the magistrate, without replying to the +count, “answers to the name of Andrea Cavalcanti?” + +A cry of astonishment was heard from all parts of the room. They +searched; they questioned. + +“But who then is Andrea Cavalcanti?” asked Danglars in amazement. + +“A galley-slave, escaped from confinement at Toulon.” + +“And what crime has he committed?” + +“He is accused,” said the commissary with his inflexible voice, “of +having assassinated the man named Caderousse, his former companion in +prison, at the moment he was making his escape from the house of the +Count of Monte Cristo.” + +Monte Cristo cast a rapid glance around him. Andrea was gone. + + + + Chapter 97. The Departure for Belgium + +A few minutes after the scene of confusion produced in the salons of M. +Danglars by the unexpected appearance of the brigade of soldiers, and +by the disclosure which had followed, the mansion was deserted with as +much rapidity as if a case of plague or of cholera morbus had broken +out among the guests. + +In a few minutes, through all the doors, down all the staircases, by +every exit, everyone hastened to retire, or rather to fly; for it was a +situation where the ordinary condolences,—which even the best friends +are so eager to offer in great catastrophes,—were seen to be utterly +futile. There remained in the banker’s house only Danglars, closeted in +his study, and making his statement to the officer of gendarmes; Madame +Danglars, terrified, in the boudoir with which we are acquainted; and +Eugénie, who with haughty air and disdainful lip had retired to her +room with her inseparable companion, Mademoiselle Louise d’Armilly. + +As for the numerous servants (more numerous that evening than usual, +for their number was augmented by cooks and butlers from the Café de +Paris), venting on their employers their anger at what they termed the +insult to which they had been subjected, they collected in groups in +the hall, in the kitchens, or in their rooms, thinking very little of +their duty, which was thus naturally interrupted. Of all this +household, only two persons deserve our notice; these are Mademoiselle +Eugénie Danglars and Mademoiselle Louise d’Armilly. + +The betrothed had retired, as we said, with haughty air, disdainful +lip, and the demeanor of an outraged queen, followed by her companion, +who was paler and more disturbed than herself. On reaching her room +Eugénie locked her door, while Louise fell on a chair. + +“Ah, what a dreadful thing,” said the young musician; “who would have +suspected it? M. Andrea Cavalcanti a murderer—a galley-slave escaped—a +convict!” + +An ironical smile curled the lip of Eugénie. “In truth, I was fated,” +said she. “I escaped the Morcerf only to fall into the Cavalcanti.” + +“Oh, do not confound the two, Eugénie.” + +“Hold your tongue! The men are all infamous, and I am happy to be able +now to do more than detest them—I despise them.” + +“What shall we do?” asked Louise. + +“What shall we do?” + +“Yes.” + +“Why, the same we had intended doing three days since—set off.” + +“What?—although you are not now going to be married, you intend +still——” + +“Listen, Louise. I hate this life of the fashionable world, always +ordered, measured, ruled, like our music-paper. What I have always +wished for, desired, and coveted, is the life of an artist, free and +independent, relying only on my own resources, and accountable only to +myself. Remain here? What for?—that they may try, a month hence, to +marry me again; and to whom?—M. Debray, perhaps, as it was once +proposed. No, Louise, no! This evening’s adventure will serve for my +excuse. I did not seek one, I did not ask for one. God sends me this, +and I hail it joyfully!” + +“How strong and courageous you are!” said the fair, frail girl to her +brunette companion. + +“Did you not yet know me? Come, Louise, let us talk of our affairs. The +post-chaise——” + +“Was happily bought three days since.” + +“Have you had it sent where we are to go for it?” + +“Yes.” + +“Our passport?” + +“Here it is.” + +And Eugénie, with her usual precision, opened a printed paper, and +read: + +“M. Léon d’Armilly, twenty years of age; profession, artist; hair +black, eyes black; travelling with his sister.” + +“Capital! How did you get this passport?” + +“When I went to ask M. de Monte Cristo for letters to the directors of +the theatres at Rome and Naples, I expressed my fears of travelling as +a woman; he perfectly understood them, and undertook to procure for me +a man’s passport, and two days after I received this, to which I have +added with my own hand, ‘travelling with his sister.’” + +50035m + + + +“Well,” said Eugénie cheerfully, “we have then only to pack up our +trunks; we shall start the evening of the signing of the contract, +instead of the evening of the wedding—that is all.” + +“But consider the matter seriously, Eugénie!” + +“Oh, I am done with considering! I am tired of hearing only of market +reports, of the end of the month, of the rise and fall of Spanish +funds, of Haitian bonds. Instead of that, Louise—do you +understand?—air, liberty, melody of birds, plains of Lombardy, Venetian +canals, Roman palaces, the Bay of Naples. How much have we, Louise?” + +The young girl to whom this question was addressed drew from an inlaid +secretaire a small portfolio with a lock, in which she counted +twenty-three bank-notes. + +“Twenty-three thousand francs,” said she. + +“And as much, at least, in pearls, diamonds, and jewels,” said Eugénie. +“We are rich. With forty-five thousand francs we can live like +princesses for two years, and comfortably for four; but before six +months—you with your music, and I with my voice—we shall double our +capital. Come, you shall take charge of the money, I of the jewel-box; +so that if one of us had the misfortune to lose her treasure, the other +would still have hers left. Now, the portmanteau—let us make haste—the +portmanteau!” + +“Stop!” said Louise, going to listen at Madame Danglars’ door. + +“What do you fear?” + +“That we may be discovered.” + +“The door is locked.” + +“They may tell us to open it.” + +“They may if they like, but we will not.” + +“You are a perfect Amazon, Eugénie!” And the two young girls began to +heap into a trunk all the things they thought they should require. + +“There now,” said Eugénie, “while I change my costume do you lock the +portmanteau.” Louise pressed with all the strength of her little hands +on the top of the portmanteau. + +“But I cannot,” said she; “I am not strong enough; do you shut it.” + +“Ah, you do well to ask,” said Eugénie, laughing; “I forgot that I was +Hercules, and you only the pale Omphale!” + +And the young girl, kneeling on the top, pressed the two parts of the +portmanteau together, and Mademoiselle d’Armilly passed the bolt of the +padlock through. When this was done, Eugénie opened a drawer, of which +she kept the key, and took from it a wadded violet silk travelling +cloak. + +“Here,” said she, “you see I have thought of everything; with this +cloak you will not be cold.” + +“But you?” + +“Oh, I am never cold, you know! Besides, with these men’s clothes——” + +“Will you dress here?” + +“Certainly.” + +“Shall you have time?” + +“Do not be uneasy, you little coward! All our servants are busy, +discussing the grand affair. Besides, what is there astonishing, when +you think of the grief I ought to be in, that I shut myself up?—tell +me!” + +“No, truly—you comfort me.” + +“Come and help me.” + +From the same drawer she took a man’s complete costume, from the boots +to the coat, and a provision of linen, where there was nothing +superfluous, but every requisite. Then, with a promptitude which +indicated that this was not the first time she had amused herself by +adopting the garb of the opposite sex, Eugénie drew on the boots and +pantaloons, tied her cravat, buttoned her waistcoat up to the throat, +and put on a coat which admirably fitted her beautiful figure. + +“Oh, that is very good—indeed, it is very good!” said Louise, looking +at her with admiration; “but that beautiful black hair, those +magnificent braids, which made all the ladies sigh with envy,—will they +go under a man’s hat like the one I see down there?” + +“You shall see,” said Eugénie. And with her left hand seizing the thick +mass, which her long fingers could scarcely grasp, she took in her +right hand a pair of long scissors, and soon the steel met through the +rich and splendid hair, which fell in a cluster at her feet as she +leaned back to keep it from her coat. Then she grasped the front hair, +which she also cut off, without expressing the least regret; on the +contrary, her eyes sparkled with greater pleasure than usual under her +ebony eyebrows. + +50039m + + + +“Oh, the magnificent hair!” said Louise, with regret. + +“And am I not a hundred times better thus?” cried Eugénie, smoothing +the scattered curls of her hair, which had now quite a masculine +appearance; “and do you not think me handsomer so?” + +“Oh, you are beautiful—always beautiful!” cried Louise. “Now, where are +you going?” + +“To Brussels, if you like; it is the nearest frontier. We can go to +Brussels, Liège, Aix-la-Chapelle; then up the Rhine to Strasbourg. We +will cross Switzerland, and go down into Italy by the Saint-Gothard. +Will that do?” + +“Yes.” + +“What are you looking at?” + +“I am looking at you; indeed you are adorable like that! One would say +you were carrying me off.” + +“And they would be right, _pardieu!_” + +“Oh, I think you swore, Eugénie.” + +And the two young girls, whom everyone might have thought plunged in +grief, the one on her own account, the other from interest in her +friend, burst out laughing, as they cleared away every visible trace of +the disorder which had naturally accompanied the preparations for their +escape. Then, having blown out the lights, the two fugitives, looking +and listening eagerly, with outstretched necks, opened the door of a +dressing-room which led by a side staircase down to the yard,—Eugénie +going first, and holding with one arm the portmanteau, which by the +opposite handle Mademoiselle d’Armilly scarcely raised with both hands. +The yard was empty; the clock was striking twelve. The porter was not +yet gone to bed. Eugénie approached softly, and saw the old man +sleeping soundly in an armchair in his lodge. She returned to Louise, +took up the portmanteau, which she had placed for a moment on the +ground, and they reached the archway under the shadow of the wall. + +Eugénie concealed Louise in an angle of the gateway, so that if the +porter chanced to awake he might see but one person. Then placing +herself in the full light of the lamp which lit the yard: + +“Gate!” cried she, with her finest contralto voice, and rapping at the +window. + +The porter got up as Eugénie expected, and even advanced some steps to +recognize the person who was going out, but seeing a young man striking +his boot impatiently with his riding-whip, he opened it immediately. +Louise slid through the half-open gate like a snake, and bounded +lightly forward. Eugénie, apparently calm, although in all probability +her heart beat somewhat faster than usual, went out in her turn. + +A porter was passing and they gave him the portmanteau; then the two +young girls, having told him to take it to No. 36, Rue de la Victoire, +walked behind this man, whose presence comforted Louise. As for +Eugénie, she was as strong as a Judith or a Delilah. They arrived at +the appointed spot. Eugénie ordered the porter to put down the +portmanteau, gave him some pieces of money, and having rapped at the +shutter sent him away. The shutter where Eugénie had rapped was that of +a little laundress, who had been previously warned, and was not yet +gone to bed. She opened the door. + +“Mademoiselle,” said Eugénie, “let the porter get the post-chaise from +the coach-house, and fetch some post-horses from the hotel. Here are +five francs for his trouble.” + +“Indeed,” said Louise, “I admire you, and I could almost say respect +you.” The laundress looked on in astonishment, but as she had been +promised twenty louis, she made no remark. + +In a quarter of an hour the porter returned with a post-boy and horses, +which were harnessed, and put in the post-chaise in a minute, while the +porter fastened the portmanteau on with the assistance of a cord and +strap. + +“Here is the passport,” said the postilion, “which way are we going, +young gentleman?” + +“To Fontainebleau,” replied Eugénie with an almost masculine voice. + +“What do you say?” said Louise. + +“I am giving them the slip,” said Eugénie; “this woman to whom we have +given twenty louis may betray us for forty; we will soon alter our +direction.” + +And the young girl jumped into the britzka, which was admirably +arranged for sleeping in, without scarcely touching the step. + +“You are always right,” said the music teacher, seating herself by the +side of her friend. + +A quarter of an hour afterwards the postilion, having been put in the +right road, passed with a crack of his whip through the gateway of the +Barrière Saint-Martin. + +“Ah,” said Louise, breathing freely, “here we are out of Paris.” + +“Yes, my dear, the abduction is an accomplished fact,” replied Eugénie. + +“Yes, and without violence,” said Louise. + +“I shall bring that forward as an extenuating circumstance,” replied +Eugénie. + +These words were lost in the noise which the carriage made in rolling +over the pavement of La Villette. M. Danglars no longer had a daughter. + + + + Chapter 98. The Bell and Bottle Tavern + +And now let us leave Mademoiselle Danglars and her friend pursuing +their way to Brussels, and return to poor Andrea Cavalcanti, so +inopportunely interrupted in his rise to fortune. Notwithstanding his +youth, Master Andrea was a very skilful and intelligent boy. We have +seen that on the first rumor which reached the salon he had gradually +approached the door, and crossing two or three rooms at last +disappeared. But we have forgotten to mention one circumstance, which +nevertheless ought not to be omitted; in one of the rooms he crossed, +the _trousseau_ of the bride-elect was on exhibition. There were +caskets of diamonds, cashmere shawls, Valenciennes lace, English veils, +and in fact all the tempting things, the bare mention of which makes +the hearts of young girls bound with joy, and which is called the +_corbeille_.22 Now, in passing through this room, Andrea proved himself +not only to be clever and intelligent, but also provident, for he +helped himself to the most valuable of the ornaments before him. + +Furnished with this plunder, Andrea leaped with a lighter heart from +the window, intending to slip through the hands of the gendarmes. Tall +and well proportioned as an ancient gladiator, and muscular as a +Spartan, he walked for a quarter of an hour without knowing where to +direct his steps, actuated by the sole idea of getting away from the +spot where if he lingered he knew that he would surely be taken. Having +passed through the Rue du Mont-Blanc, guided by the instinct which +leads thieves always to take the safest path, he found himself at the +end of the Rue La Fayette. There he stopped, breathless and panting. He +was quite alone; on one side was the vast wilderness of the +Saint-Lazare, on the other, Paris enshrouded in darkness. + +“Am I to be captured?” he cried; “no, not if I can use more activity +than my enemies. My safety is now a mere question of speed.” + +At this moment he saw a cab at the top of the Faubourg Poissonnière. +The dull driver, smoking his pipe, was plodding along toward the limits +of the Faubourg Saint-Denis, where no doubt he ordinarily had his +station. + +“Ho, friend!” said Benedetto. + +“What do you want, sir?” asked the driver. + +“Is your horse tired?” + +“Tired? oh, yes, tired enough—he has done nothing the whole of this +blessed day! Four wretched fares, and twenty sous over, making in all +seven francs, are all that I have earned, and I ought to take ten to +the owner.” + +“Will you add these twenty francs to the seven you have?” + +“With pleasure, sir; twenty francs are not to be despised. Tell me what +I am to do for this.” + +“A very easy thing, if your horse isn’t tired.” + +“I tell you he’ll go like the wind,—only tell me which way to drive.” + +“Towards the Louvres.” + +“Ah, I know the way—you get good sweetened rum over there.” + +“Exactly so; I merely wish to overtake one of my friends, with whom I +am going to hunt tomorrow at Chapelle-en-Serval. He should have waited +for me here with a cabriolet till half-past eleven; it is twelve, and, +tired of waiting, he must have gone on.” + +“It is likely.” + +“Well, will you try and overtake him?” + +“Nothing I should like better.” + +“If you do not overtake him before we reach Bourget you shall have +twenty francs; if not before Louvres, thirty.” + +“And if we do overtake him?” + +“Forty,” said Andrea, after a moment’s hesitation, at the end of which +he remembered that he might safely promise. + +“That’s all right,” said the man; “hop in, and we’re off! Who-o-o-pla!” + +Andrea got into the cab, which passed rapidly through the Faubourg +Saint-Denis, along the Faubourg Saint-Martin, crossed the barrier, and +threaded its way through the interminable Villette. They never overtook +the chimerical friend, yet Andrea frequently inquired of people on foot +whom he passed and at the inns which were not yet closed, for a green +cabriolet and bay horse; and as there are a great many cabriolets to be +seen on the road to the Low Countries, and as nine-tenths of them are +green, the inquiries increased at every step. Everyone had just seen it +pass; it was only five hundred, two hundred, one hundred steps in +advance; at length they reached it, but it was not the friend. Once the +cab was also passed by a calash rapidly whirled along by two +post-horses. + +“Ah,” said Cavalcanti to himself, “if I only had that britzka, those +two good post-horses, and above all the passport that carries them on!” +And he sighed deeply. + +The calash contained Mademoiselle Danglars and Mademoiselle d’Armilly. + +“Hurry, hurry!” said Andrea, “we must overtake him soon.” + +And the poor horse resumed the desperate gallop it had kept up since +leaving the barrier, and arrived steaming at Louvres. + +“Certainly,” said Andrea, “I shall not overtake my friend, but I shall +kill your horse, therefore I had better stop. Here are thirty francs; I +will sleep at the _Cheval Rouge_, and will secure a place in the first +coach. Good-night, friend.” + +And Andrea, after placing six pieces of five francs each in the man’s +hand, leaped lightly on to the pathway. The cabman joyfully pocketed +the sum, and turned back on his road to Paris. Andrea pretended to go +towards the hotel of the _Cheval Rouge_, but after leaning an instant +against the door, and hearing the last sound of the cab, which was +disappearing from view, he went on his road, and with a lusty stride +soon traversed the space of two leagues. Then he rested; he must be +near Chapelle-en-Serval, where he pretended to be going. + +It was not fatigue that stayed Andrea here; it was that he might form +some resolution, adopt some plan. It would be impossible to make use of +a diligence, equally so to engage post-horses; to travel either way a +passport was necessary. It was still more impossible to remain in the +department of the Oise, one of the most open and strictly guarded in +France; this was quite out of the question, especially to a man like +Andrea, perfectly conversant with criminal matters. + +He sat down by the side of the moat, buried his face in his hands and +reflected. Ten minutes after he raised his head; his resolution was +made. He threw some dust over the topcoat, which he had found time to +unhook from the antechamber and button over his ball costume, and going +to Chapelle-en-Serval he knocked loudly at the door of the only inn in +the place. + +The host opened. + +“My friend,” said Andrea, “I was coming from Mortefontaine to Senlis, +when my horse, which is a troublesome creature, stumbled and threw me. +I must reach Compiègne tonight, or I shall cause deep anxiety to my +family. Could you let me hire a horse of you?” + +An innkeeper has always a horse to let, whether it be good or bad. The +host called the stable-boy, and ordered him to saddle _Le Blanc_ then +he awoke his son, a child of seven years, whom he ordered to ride +before the gentleman and bring back the horse. Andrea gave the +innkeeper twenty francs, and in taking them from his pocket dropped a +visiting card. This belonged to one of his friends at the Café de +Paris, so that the innkeeper, picking it up after Andrea had left, was +convinced that he had let his horse to the Count of Mauléon, 25 Rue +Saint-Dominique, that being the name and address on the card. + +_Le Blanc_ was not a fast animal, but he kept up an easy, steady pace; +in three hours and a half Andrea had traversed the nine leagues which +separated him from Compiègne, and four o’clock struck as he reached the +place where the coaches stop. There is an excellent tavern at +Compiègne, well remembered by those who have ever been there. Andrea, +who had often stayed there in his rides about Paris, recollected the +Bell and Bottle inn; he turned around, saw the sign by the light of a +reflected lamp, and having dismissed the child, giving him all the +small coin he had about him, he began knocking at the door, very +reasonably concluding that having now three or four hours before him he +had best fortify himself against the fatigues of the morrow by a sound +sleep and a good supper. A waiter opened the door. + +“My friend,” said Andrea, “I have been dining at Saint-Jean-aux-Bois, +and expected to catch the coach which passes by at midnight, but like a +fool I have lost my way, and have been walking for the last four hours +in the forest. Show me into one of those pretty little rooms which +overlook the court, and bring me a cold fowl and a bottle of Bordeaux.” + +The waiter had no suspicions; Andrea spoke with perfect composure, he +had a cigar in his mouth, and his hands in the pocket of his top coat; +his clothes were fashionably made, his chin smooth, his boots +irreproachable; he looked merely as if he had stayed out very late, +that was all. While the waiter was preparing his room, the hostess +arose; Andrea assumed his most charming smile, and asked if he could +have No. 3, which he had occupied on his last stay at Compiègne. +Unfortunately, No. 3 was engaged by a young man who was travelling with +his sister. Andrea appeared in despair, but consoled himself when the +hostess assured him that No. 7, prepared for him, was situated +precisely the same as No. 3, and while warming his feet and chatting +about the last races at Chantilly, he waited until they announced his +room to be ready. + +Andrea had not spoken without cause of the pretty rooms looking out +upon the court of the Bell Hotel, which with its triple galleries like +those of a theatre, with the jessamine and clematis twining round the +light columns, forms one of the prettiest entrances to an inn that you +can imagine. The fowl was tender, the wine old, the fire clear and +sparkling, and Andrea was surprised to find himself eating with as good +an appetite as though nothing had happened. Then he went to bed and +almost immediately fell into that deep sleep which is sure to visit men +of twenty years of age, even when they are torn with remorse. Now, here +we are obliged to own that Andrea ought to have felt remorse, but that +he did not. + +This was the plan which had appealed to him to afford the best chance +of his security. Before daybreak he would awake, leave the inn after +rigorously paying his bill, and reaching the forest, he would, under +pretence of making studies in painting, test the hospitality of some +peasants, procure himself the dress of a woodcutter and a hatchet, +casting off the lion’s skin to assume that of the woodman; then, with +his hands covered with dirt, his hair darkened by means of a leaden +comb, his complexion embrowned with a preparation for which one of his +old comrades had given him the recipe, he intended, by following the +wooded districts, to reach the nearest frontier, walking by night and +sleeping in the day in the forests and quarries, and only entering +inhabited regions to buy a loaf from time to time. + +Once past the frontier, Andrea proposed making money of his diamonds; +and by uniting the proceeds to ten bank-notes he always carried about +with him in case of accident, he would then find himself possessor of +about 50,000 livres, which he philosophically considered as no very +deplorable condition after all. Moreover, he reckoned much on the +interest of the Danglars to hush up the rumor of their own +misadventures. These were the reasons which, added to the fatigue, +caused Andrea to sleep so soundly. In order that he might wake early he +did not close the shutters, but contented himself with bolting the door +and placing on the table an unclasped and long-pointed knife, whose +temper he well knew, and which was never absent from him. + +About seven in the morning Andrea was awakened by a ray of sunlight, +which played, warm and brilliant, upon his face. In all well-organized +brains, the predominating idea—and there always is one—is sure to be +the last thought before sleeping, and the first upon waking in the +morning. Andrea had scarcely opened his eyes when his predominating +idea presented itself, and whispered in his ear that he had slept too +long. He jumped out of bed and ran to the window. A gendarme was +crossing the court. A gendarme is one of the most striking objects in +the world, even to a man void of uneasiness; but for one who has a +timid conscience, and with good cause too, the yellow, blue, and white +uniform is really very alarming. + +“Why is that gendarme there?” asked Andrea of himself. + +Then, all at once, he replied, with that logic which the reader has, +doubtless, remarked in him, “There is nothing astonishing in seeing a +gendarme at an inn; instead of being astonished, let me dress myself.” +And the youth dressed himself with a facility his valet de chambre had +failed to rob him of during the two months of fashionable life he had +led in Paris. + +“Now then,” said Andrea, while dressing himself, “I’ll wait till he +leaves, and then I’ll slip away.” + +50047m + + + +And, saying this, Andrea, who had now put on his boots and cravat, +stole gently to the window, and a second time lifted up the muslin +curtain. Not only was the first gendarme still there, but the young man +now perceived a second yellow, blue, and white uniform at the foot of +the staircase, the only one by which he could descend, while a third, +on horseback, holding a musket in his fist, was posted as a sentinel at +the great street-door which alone afforded the means of egress. The +appearance of the third gendarme settled the matter, for a crowd of +curious loungers was extended before him, effectually blocking the +entrance to the hotel. + +“They’re after me!” was Andrea’s first thought. “_Diable!_” + +A pallor overspread the young man’s forehead, and he looked around him +with anxiety. His room, like all those on the same floor, had but one +outlet to the gallery in the sight of everybody. “I am lost!” was his +second thought; and, indeed, for a man in Andrea’s situation, an arrest +meant the assizes, trial, and death,—death without mercy or delay. + +For a moment he convulsively pressed his head within his hands, and +during that brief period he became nearly mad with terror; but soon a +ray of hope glimmered in the multitude of thoughts which bewildered his +mind, and a faint smile played upon his white lips and pallid cheeks. +He looked around and saw the objects of his search upon the +chimney-piece; they were a pen, ink, and paper. With forced composure +he dipped the pen in the ink, and wrote the following lines upon a +sheet of paper: + +“I have no money to pay my bill, but I am not a dishonest man; I leave +behind me as a pledge this pin, worth ten times the amount. I shall be +excused for leaving at daybreak, for I was ashamed.” + +He then drew the pin from his cravat and placed it on the paper. This +done, instead of leaving the door fastened, he drew back the bolts and +even placed the door ajar, as though he had left the room, forgetting +to close it, and slipping into the chimney like a man accustomed to +that kind of gymnastic exercise, after replacing the chimney-board, +which represented Achilles with Deidamia, and effacing the very marks +of his feet upon the ashes, he commenced climbing the hollow tunnel, +which afforded him the only means of escape left. + +At this precise time, the first gendarme Andrea had noticed walked +upstairs, preceded by the commissary of police, and supported by the +second gendarme who guarded the staircase and was himself reinforced by +the one stationed at the door. + +Andrea was indebted for this visit to the following circumstances. At +daybreak, the telegraphs were set at work in all directions, and almost +immediately the authorities in every district had exerted their utmost +endeavors to arrest the murderer of Caderousse. Compiègne, that royal +residence and fortified town, is well furnished with authorities, +gendarmes, and commissaries of police; they therefore began operations +as soon as the telegraphic despatch arrived, and the Bell and Bottle +being the best-known hotel in the town, they had naturally directed +their first inquiries there. + +Now, besides the reports of the sentinels guarding the Hôtel de Ville, +which is next door to the Bell and Bottle, it had been stated by others +that a number of travellers had arrived during the night. The sentinel +who was relieved at six o’clock in the morning, remembered perfectly +that, just as he was taking his post a few minutes past four, a young +man arrived on horseback, with a little boy before him. The young man, +having dismissed the boy and horse, knocked at the door of the hotel, +which was opened, and again closed after his entrance. This late +arrival had attracted much suspicion, and the young man being no other +than Andrea, the commissary and gendarme, who was a brigadier, directed +their steps towards his room. They found the door ajar. + +“Oh, oh,” said the brigadier, who thoroughly understood the trick; “a +bad sign to find the door open! I would rather find it triply bolted.” + +And, indeed, the little note and pin upon the table confirmed, or +rather corroborated, the sad truth. Andrea had fled. We say +corroborated, because the brigadier was too experienced to be convinced +by a single proof. He glanced around, looked in the bed, shook the +curtains, opened the closets, and finally stopped at the chimney. +Andrea had taken the precaution to leave no traces of his feet in the +ashes, but still it was an outlet, and in this light was not to be +passed over without serious investigation. + +The brigadier sent for some sticks and straw, and having filled the +chimney with them, set a light to it. The fire crackled, and the smoke +ascended like the dull vapor from a volcano; but still no prisoner fell +down, as they expected. The fact was, that Andrea, at war with society +ever since his youth, was quite as deep as a gendarme, even though he +were advanced to the rank of brigadier, and quite prepared for the +fire, he had climbed out on the roof and was crouching down against the +chimney-pots. + +50049m + + + +At one time he thought he was saved, for he heard the brigadier exclaim +in a loud voice, to the two gendarmes, “He is not here!” But venturing +to peep, he perceived that the latter, instead of retiring, as might +have been reasonably expected upon this announcement, were watching +with increased attention. + +It was now his turn to look about him; the Hôtel de Ville, a massive +sixteenth century building, was on his right; anyone could descend from +the openings in the tower, and examine every corner of the roof below, +and Andrea expected momentarily to see the head of a gendarme appear at +one of these openings. If once discovered, he knew he would be lost, +for the roof afforded no chance of escape; he therefore resolved to +descend, not through the same chimney by which he had come up, but by a +similar one conducting to another room. + +He looked around for a chimney from which no smoke issued, and having +reached it, he disappeared through the orifice without being seen by +anyone. At the same minute, one of the little windows of the Hôtel de +Ville was thrown open, and the head of a gendarme appeared. For an +instant it remained motionless as one of the stone decorations of the +building, then after a long sigh of disappointment the head +disappeared. The brigadier, calm and dignified as the law he +represented, passed through the crowd, without answering the thousand +questions addressed to him, and re-entered the hotel. + +“Well?” asked the two gendarmes. + +“Well, my boys,” said the brigadier, “the brigand must really have +escaped early this morning; but we will send to the Villers-Coterets +and Noyon roads, and search the forest, when we shall catch him, no +doubt.” + +The honorable functionary had scarcely expressed himself thus, in that +intonation which is peculiar to brigadiers of the gendarmerie, when a +loud scream, accompanied by the violent ringing of a bell, resounded +through the court of the hotel. + +“Ah, what is that?” cried the brigadier. + +“Some traveller seems impatient,” said the host. “What number was it +that rang?” + +“Number 3.” + +“Run, waiter!” + +At this moment the screams and ringing were redoubled. + +“Aha!” said the brigadier, stopping the servant, “the person who is +ringing appears to want something more than a waiter; we will attend +upon him with a gendarme. Who occupies Number 3?” + +“The little fellow who arrived last night in a post-chaise with his +sister, and who asked for an apartment with two beds.” + +The bell here rang for the third time, with another shriek of anguish. + +“Follow me, Mr. Commissary!” said the brigadier; “tread in my steps.” + +“Wait an instant,” said the host; “Number 3 has two staircases,—inside +and outside.” + +“Good,” said the brigadier. “I will take charge of the inside one. Are +the carbines loaded?” + +“Yes, brigadier.” + +“Well, you guard the exterior, and if he attempts to fly, fire upon +him; he must be a great criminal, from what the telegraph says.” + +The brigadier, followed by the commissary, disappeared by the inside +staircase, accompanied by the noise which his assertions respecting +Andrea had excited in the crowd. + +This is what had happened: Andrea had very cleverly managed to descend +two-thirds of the chimney, but then his foot slipped, and +notwithstanding his endeavors, he came into the room with more speed +and noise than he intended. It would have signified little had the room +been empty, but unfortunately it was occupied. Two ladies, sleeping in +one bed, were awakened by the noise, and fixing their eyes upon the +spot whence the sound proceeded, they saw a man. One of these ladies, +the fair one, uttered those terrible shrieks which resounded through +the house, while the other, rushing to the bell-rope, rang with all her +strength. Andrea, as we can see, was surrounded by misfortune. + +“For pity’s sake,” he cried, pale and bewildered, without seeing whom +he was addressing,—“for pity’s sake do not call assistance! Save me!—I +will not harm you.” + +“Andrea, the murderer!” cried one of the ladies. + +“Eugénie! Mademoiselle Danglars!” exclaimed Andrea, stupefied. + +“Help, help!” cried Mademoiselle d’Armilly, taking the bell from her +companion’s hand, and ringing it yet more violently. + +“Save me, I am pursued!” said Andrea, clasping his hands. “For pity, +for mercy’s sake do not deliver me up!” + +“It is too late, they are coming,” said Eugénie. + +“Well, conceal me somewhere; you can say you were needlessly alarmed; +you can turn their suspicions and save my life!” + +50053m + + + +The two ladies, pressing closely to one another, and drawing the +bedclothes tightly around them, remained silent to this supplicating +voice, repugnance and fear taking possession of their minds. + +“Well, be it so,” at length said Eugénie; “return by the same road you +came, and we will say nothing about you, unhappy wretch.” + +“Here he is, here he is!” cried a voice from the landing; “here he is! +I see him!” + +The brigadier had put his eye to the keyhole, and had discovered Andrea +in a posture of entreaty. A violent blow from the butt end of the +musket burst open the lock, two more forced out the bolts, and the +broken door fell in. Andrea ran to the other door, leading to the +gallery, ready to rush out; but he was stopped short, and he stood with +his body a little thrown back, pale, and with the useless knife in his +clenched hand. + +“Fly, then!” cried Mademoiselle d’Armilly, whose pity returned as her +fears diminished; “fly!” + +“Or kill yourself!” said Eugénie (in a tone which a Vestal in the +amphitheatre would have used, when urging the victorious gladiator to +finish his vanquished adversary). Andrea shuddered, and looked on the +young girl with an expression which proved how little he understood +such ferocious honor. + +“Kill myself?” he cried, throwing down his knife; “why should I do so?” + +“Why, you said,” answered Mademoiselle Danglars, “that you would be +condemned to die like the worst criminals.” + +50055m + + + +“Bah,” said Cavalcanti, crossing his arms, “one has friends.” + +The brigadier advanced to him, sword in hand. + +“Come, come,” said Andrea, “sheathe your sword, my fine fellow; there +is no occasion to make such a fuss, since I give myself up;” and he +held out his hands to be manacled. + +The two girls looked with horror upon this shameful metamorphosis, the +man of the world shaking off his covering and appearing as a +galley-slave. Andrea turned towards them, and with an impertinent smile +asked, “Have you any message for your father, Mademoiselle Danglars, +for in all probability I shall return to Paris?” + +Eugénie covered her face with her hands. + +“Oh, oh!” said Andrea, “you need not be ashamed, even though you did +post after me. Was I not nearly your husband?” + +50056m + + + +And with this raillery Andrea went out, leaving the two girls a prey to +their own feelings of shame, and to the comments of the crowd. An hour +after they stepped into their calash, both dressed in feminine attire. +The gate of the hotel had been closed to screen them from sight, but +they were forced, when the door was open, to pass through a throng of +curious glances and whispering voices. + +Eugénie closed her eyes; but though she could not see, she could hear, +and the sneers of the crowd reached her in the carriage. + +“Oh, why is not the world a wilderness?” she exclaimed, throwing +herself into the arms of Mademoiselle d’Armilly, her eyes sparkling +with the same kind of rage which made Nero wish that the Roman world +had but one neck, that he might sever it at a single blow. + +The next day they stopped at the Hôtel de Flandre, at Brussels. The +same evening Andrea was incarcerated in the Conciergerie. + + + + Chapter 99. The Law + +We have seen how quietly Mademoiselle Danglars and Mademoiselle +d’Armilly accomplished their transformation and flight; the fact being +that everyone was too much occupied in his or her own affairs to think +of theirs. + +We will leave the banker contemplating the enormous magnitude of his +debt before the phantom of bankruptcy, and follow the baroness, who +after being momentarily crushed under the weight of the blow which had +struck her, had gone to seek her usual adviser, Lucien Debray. The +baroness had looked forward to this marriage as a means of ridding her +of a guardianship which, over a girl of Eugénie’s character, could not +fail to be rather a troublesome undertaking; for in the tacit relations +which maintain the bond of family union, the mother, to maintain her +ascendancy over her daughter, must never fail to be a model of wisdom +and a type of perfection. + +Now, Madame Danglars feared Eugénie’s sagacity and the influence of +Mademoiselle d’Armilly; she had frequently observed the contemptuous +expression with which her daughter looked upon Debray,—an expression +which seemed to imply that she understood all her mother’s amorous and +pecuniary relationships with the intimate secretary; moreover, she saw +that Eugénie detested Debray, not only because he was a source of +dissension and scandal under the paternal roof, but because she had at +once classed him in that catalogue of bipeds whom Plato endeavors to +withdraw from the appellation of men, and whom Diogenes designated as +animals upon two legs without feathers. + +Unfortunately, in this world of ours, each person views things through +a certain medium, and so is prevented from seeing in the same light as +others, and Madame Danglars, therefore, very much regretted that the +marriage of Eugénie had not taken place, not only because the match was +good, and likely to insure the happiness of her child, but because it +would also set her at liberty. She ran therefore to Debray, who, after +having, like the rest of Paris, witnessed the contract scene and the +scandal attending it, had retired in haste to his club, where he was +chatting with some friends upon the events which served as a subject of +conversation for three-fourths of that city known as the capital of the +world. + +At the precise time when Madame Danglars, dressed in black and +concealed in a long veil, was ascending the stairs leading to Debray’s +apartments, notwithstanding the assurances of the concierge that the +young man was not at home, Debray was occupied in repelling the +insinuations of a friend, who tried to persuade him that after the +terrible scene which had just taken place he ought, as a friend of the +family, to marry Mademoiselle Danglars and her two millions. Debray did +not defend himself very warmly, for the idea had sometimes crossed his +mind; still, when he recollected the independent, proud spirit of +Eugénie, he positively rejected it as utterly impossible, though the +same thought again continually recurred and found a resting-place in +his heart. Tea, play, and the conversation, which had become +interesting during the discussion of such serious affairs, lasted till +one o’clock in the morning. + +Meanwhile Madame Danglars, veiled and uneasy, awaited the return of +Debray in the little green room, seated between two baskets of flowers, +which she had that morning sent, and which, it must be confessed, +Debray had himself arranged and watered with so much care that his +absence was half excused in the eyes of the poor woman. + +At twenty minutes to twelve, Madame Danglars, tired of waiting, +returned home. Women of a certain grade are like prosperous grisettes +in one respect, they seldom return home after twelve o’clock. The +baroness returned to the hotel with as much caution as Eugénie used in +leaving it; she ran lightly upstairs, and with an aching heart entered +her apartment, contiguous, as we know, to that of Eugénie. She was +fearful of exciting any remark, and believed firmly in her daughter’s +innocence and fidelity to the paternal roof. She listened at Eugénie’s +door, and hearing no sound tried to enter, but the bolts were in place. +Madame Danglars then concluded that the young girl had been overcome +with the terrible excitement of the evening, and had gone to bed and to +sleep. She called the maid and questioned her. + +“Mademoiselle Eugénie,” said the maid, “retired to her apartment with +Mademoiselle d’Armilly; they then took tea together, after which they +desired me to leave, saying that they needed me no longer.” + +Since then the maid had been below, and like everyone else she thought +the young ladies were in their own room; Madame Danglars, therefore, +went to bed without a shadow of suspicion, and began to muse over the +recent events. In proportion as her memory became clearer, the +occurrences of the evening were revealed in their true light; what she +had taken for confusion was a tumult; what she had regarded as +something distressing, was in reality a disgrace. And then the baroness +remembered that she had felt no pity for poor Mercédès, who had been +afflicted with as severe a blow through her husband and son. + +“Eugénie,” she said to herself, “is lost, and so are we. The affair, as +it will be reported, will cover us with shame; for in a society such as +ours satire inflicts a painful and incurable wound. How fortunate that +Eugénie is possessed of that strange character which has so often made +me tremble!” + +And her glance was turned towards heaven, where a mysterious Providence +disposes all things, and out of a fault, nay, even a vice, sometimes +produces a blessing. And then her thoughts, cleaving through space like +a bird in the air, rested on Cavalcanti. This Andrea was a wretch, a +robber, an assassin, and yet his manners showed the effects of a sort +of education, if not a complete one; he had been presented to the world +with the appearance of an immense fortune, supported by an honorable +name. How could she extricate herself from this labyrinth? To whom +would she apply to help her out of this painful situation? Debray, to +whom she had run, with the first instinct of a woman towards the man +she loves, and who yet betrays her,—Debray could but give her advice, +she must apply to someone more powerful than he. + +The baroness then thought of M. de Villefort. It was M. de Villefort +who had remorselessly brought misfortune into her family, as though +they had been strangers. But, no; on reflection, the procureur was not +a merciless man; and it was not the magistrate, slave to his duties, +but the friend, the loyal friend, who roughly but firmly cut into the +very core of the corruption; it was not the executioner, but the +surgeon, who wished to withdraw the honor of Danglars from ignominious +association with the disgraced young man they had presented to the +world as their son-in-law. And since Villefort, the friend of Danglars, +had acted in this way, no one could suppose that he had been previously +acquainted with, or had lent himself to, any of Andrea’s intrigues. +Villefort’s conduct, therefore, upon reflection, appeared to the +baroness as if shaped for their mutual advantage. But the inflexibility +of the procureur should stop there; she would see him the next day, and +if she could not make him fail in his duties as a magistrate, she +would, at least, obtain all the indulgence he could allow. She would +invoke the past, recall old recollections; she would supplicate him by +the remembrance of guilty, yet happy days. M. de Villefort would stifle +the affair; he had only to turn his eyes on one side, and allow Andrea +to fly, and follow up the crime under that shadow of guilt called +contempt of court. And after this reasoning she slept easily. + +At nine o’clock next morning she arose, and without ringing for her +maid or giving the least sign of her activity, she dressed herself in +the same simple style as on the previous night; then running +downstairs, she left the hotel, walked to the Rue de Provence, called a +cab, and drove to M. de Villefort’s house. + +For the last month this wretched house had presented the gloomy +appearance of a lazaretto infected with the plague. Some of the +apartments were closed within and without; the shutters were only +opened to admit a minute’s air, showing the scared face of a footman, +and immediately afterwards the window would be closed, like a +gravestone falling on a sepulchre, and the neighbors would say to each +other in a low voice, “Will there be another funeral today at the +procureur’s house?” + +Madame Danglars involuntarily shuddered at the desolate aspect of the +mansion; descending from the cab, she approached the door with +trembling knees, and rang the bell. Three times did the bell ring with +a dull, heavy sound, seeming to participate, in the general sadness, +before the concierge appeared and peeped through the door, which he +opened just wide enough to allow his words to be heard. He saw a lady, +a fashionable, elegantly dressed lady, and yet the door remained almost +closed. + +“Do you intend opening the door?” said the baroness. + +“First, madame, who are you?” + +“Who am I? You know me well enough.” + +“We no longer know anyone, madame.” + +“You must be mad, my friend,” said the baroness. + +“Where do you come from?” + +“Oh, this is too much!” + +“Madame, these are my orders; excuse me. Your name?” + +“The baroness Danglars; you have seen me twenty times.” + +“Possibly, madame. And now, what do you want?” + +“Oh, how extraordinary! I shall complain to M. de Villefort of the +impertinence of his servants.” + +“Madame, this is precaution, not impertinence; no one enters here +without an order from M. d’Avrigny, or without speaking to the +procureur.” + +“Well, I have business with the procureur.” + +“Is it pressing business?” + +“You can imagine so, since I have not even brought my carriage out yet. +But enough of this—here is my card, take it to your master.” + +“Madame will await my return?” + +“Yes; go.” + +The concierge closed the door, leaving Madame Danglars in the street. +She had not long to wait; directly afterwards the door was opened wide +enough to admit her, and when she had passed through, it was again +shut. Without losing sight of her for an instant, the concierge took a +whistle from his pocket as soon as they entered the court, and blew it. +The valet de chambre appeared on the door-steps. + +“You will excuse this poor fellow, madame,” he said, as he preceded the +baroness, “but his orders are precise, and M. de Villefort begged me to +tell you that he could not act otherwise.” + +In the court showing his merchandise, was a tradesman who had been +admitted with the same precautions. The baroness ascended the steps; +she felt herself strongly infected with the sadness which seemed to +magnify her own, and still guided by the valet de chambre, who never +lost sight of her for an instant, she was introduced to the +magistrate’s study. + +Preoccupied as Madame Danglars had been with the object of her visit, +the treatment she had received from these underlings appeared to her so +insulting, that she began by complaining of it. But Villefort, raising +his head, bowed down by grief, looked up at her with so sad a smile +that her complaints died upon her lips. + +“Forgive my servants,” he said, “for a terror I cannot blame them for; +from being suspected they have become suspicious.” + +Madame Danglars had often heard of the terror to which the magistrate +alluded, but without the evidence of her own eyesight she could never +have believed that the sentiment had been carried so far. + +“You too, then, are unhappy?” she said. + +“Yes, madame,” replied the magistrate. + +“Then you pity me!” + +“Sincerely, madame.” + +“And you understand what brings me here?” + +“You wish to speak to me about the circumstance which has just +happened?” + +“Yes, sir,—a fearful misfortune.” + +“You mean a mischance.” + +“A mischance?” repeated the baroness. + +“Alas, madame,” said the procureur with his imperturbable calmness of +manner, “I consider those alone misfortunes which are irreparable.” + +“And do you suppose this will be forgotten?” + +“Everything will be forgotten, madame,” said Villefort. “Your daughter +will be married tomorrow, if not today—in a week, if not tomorrow; and +I do not think you can regret the intended husband of your daughter.” + +Madame Danglars gazed on Villefort, stupefied to find him so almost +insultingly calm. “Am I come to a friend?” she asked in a tone full of +mournful dignity. + +“You know that you are, madame,” said Villefort, whose pale cheeks +became slightly flushed as he gave her the assurance. And truly this +assurance carried him back to different events from those now occupying +the baroness and him. + +“Well, then, be more affectionate, my dear Villefort,” said the +baroness. “Speak to me not as a magistrate, but as a friend; and when I +am in bitter anguish of spirit, do not tell me that I ought to be gay.” +Villefort bowed. + +“When I hear misfortunes named, madame,” he said, “I have within the +last few months contracted the bad habit of thinking of my own, and +then I cannot help drawing up an egotistical parallel in my mind. That +is the reason that by the side of my misfortunes yours appear to me +mere mischances; that is why my dreadful position makes yours appear +enviable. But this annoys you; let us change the subject. You were +saying, madame——” + +“I came to ask you, my friend,” said the baroness, “what will be done +with this impostor?” + +“Impostor,” repeated Villefort; “certainly, madame, you appear to +extenuate some cases, and exaggerate others. Impostor, indeed!—M. +Andrea Cavalcanti, or rather M. Benedetto, is nothing more nor less +than an assassin!” + +“Sir, I do not deny the justice of your correction, but the more +severely you arm yourself against that unfortunate man, the more deeply +will you strike our family. Come, forget him for a moment, and instead +of pursuing him, let him go.” + +“You are too late, madame; the orders are issued.” + +“Well, should he be arrested—do they think they will arrest him?” + +“I hope so.” + +“If they should arrest him (I know that sometimes prisons afford means +of escape), will you leave him in prison?” + +The procureur shook his head. + +“At least keep him there till my daughter be married.” + +“Impossible, madame; justice has its formalities.” + +“What, even for me?” said the baroness, half jesting, half in earnest. + +“For all, even for myself among the rest,” replied Villefort. + +50063m + + + +“Ah!” exclaimed the baroness, without expressing the ideas which the +exclamation betrayed. Villefort looked at her with that piercing glance +which reads the secrets of the heart. + +“Yes, I know what you mean,” he said; “you refer to the terrible rumors +spread abroad in the world, that the deaths which have kept me in +mourning for the last three months, and from which Valentine has only +escaped by a miracle, have not happened by natural means.” + +“I was not thinking of that,” replied Madame Danglars quickly. + +“Yes, you were thinking of it, and with justice. You could not help +thinking of it, and saying to yourself, ‘you, who pursue crime so +vindictively, answer now, why are there unpunished crimes in your +dwelling?’” The baroness became pale. “You were saying this, were you +not?” + +“Well, I own it.” + +“I will answer you.” + +Villefort drew his armchair nearer to Madame Danglars; then resting +both hands upon his desk he said in a voice more hollow than usual: + +“There are crimes which remain unpunished because the criminals are +unknown, and we might strike the innocent instead of the guilty; but +when the culprits are discovered” (Villefort here extended his hand +toward a large crucifix placed opposite to his desk)—“when they are +discovered, I swear to you, by all I hold most sacred, that whoever +they may be they shall die. Now, after the oath I have just taken, and +which I will keep, madame, dare you ask for mercy for that wretch!” + +“But, sir, are you sure he is as guilty as they say?” + +“Listen; this is his description: ‘Benedetto, condemned, at the age of +sixteen, for five years to the galleys for forgery.’ He promised well, +as you see—first a runaway, then an assassin.” + +“And who is this wretch?” + +“Who can tell?—a vagabond, a Corsican.” + +“Has no one owned him?” + +“No one; his parents are unknown.” + +“But who was the man who brought him from Lucca?” + +“Another rascal like himself, perhaps his accomplice.” The baroness +clasped her hands. + +“Villefort,” she exclaimed in her softest and most captivating manner. + +“For Heaven’s sake, madame,” said Villefort, with a firmness of +expression not altogether free from harshness—“for Heaven’s sake, do +not ask pardon of me for a guilty wretch! What am I?—the law. Has the +law any eyes to witness your grief? Has the law ears to be melted by +your sweet voice? Has the law a memory for all those soft recollections +you endeavor to recall? No, madame; the law has commanded, and when it +commands it strikes. You will tell me that I am a living being, and not +a code—a man, and not a volume. Look at me, madame—look around me. Has +mankind treated me as a brother? Have men loved me? Have they spared +me? Has anyone shown the mercy towards me that you now ask at my hands? +No, madame, they struck me, always struck me! + +50065m + + + +“Woman, siren that you are, do you persist in fixing on me that +fascinating eye, which reminds me that I ought to blush? Well, be it +so; let me blush for the faults you know, and perhaps—perhaps for even +more than those! But having sinned myself,—it may be more deeply than +others,—I never rest till I have torn the disguises from my +fellow-creatures, and found out their weaknesses. I have always found +them; and more,—I repeat it with joy, with triumph,—I have always found +some proof of human perversity or error. Every criminal I condemn seems +to me living evidence that I am not a hideous exception to the rest. +Alas, alas, alas; all the world is wicked; let us therefore strike at +wickedness!” + +Villefort pronounced these last words with a feverish rage, which gave +a ferocious eloquence to his words. + +“But”’ said Madame Danglars, resolving to make a last effort, “this +young man, though a murderer, is an orphan, abandoned by everybody.” + +“So much the worse, or rather, so much the better; it has been so +ordained that he may have none to weep his fate.” + +“But this is trampling on the weak, sir.” + +“The weakness of a murderer!” + +“His dishonor reflects upon us.” + +“Is not death in my house?” + +“Oh, sir,” exclaimed the baroness, “you are without pity for others, +well, then, I tell you they will have no mercy on you!” + +“Be it so!” said Villefort, raising his arms to heaven with a +threatening gesture. + +“At least, delay the trial till the next assizes; we shall then have +six months before us.” + +“No, madame,” said Villefort; “instructions have been given. There are +yet five days left; five days are more than I require. Do you not think +that I also long for forgetfulness? While working night and day, I +sometimes lose all recollection of the past, and then I experience the +same sort of happiness I can imagine the dead feel; still, it is better +than suffering.” + +“But, sir, he has fled; let him escape—inaction is a pardonable +offence.” + +“I tell you it is too late; early this morning the telegraph was +employed, and at this very minute——” + +“Sir,” said the valet de chambre, entering the room, “a dragoon has +brought this despatch from the Minister of the Interior.” + +Villefort seized the letter, and hastily broke the seal. Madame +Danglars trembled with fear; Villefort started with joy. + +“Arrested!” he exclaimed; “he was taken at Compiègne, and all is over.” + +Madame Danglars rose from her seat, pale and cold. + +“Adieu, sir,” she said. + +“Adieu, madame,” replied the king’s attorney, as in an almost joyful +manner he conducted her to the door. Then, turning to his desk, he +said, striking the letter with the back of his right hand: + +“Come, I had a forgery, three robberies, and two cases of arson, I only +wanted a murder, and here it is. It will be a splendid session!” + + + + Chapter 100. The Apparition + +As the procureur had told Madame Danglars, Valentine was not yet +recovered. Bowed down with fatigue, she was indeed confined to her bed; +and it was in her own room, and from the lips of Madame de Villefort, +that she heard all the strange events we have related; we mean the +flight of Eugénie and the arrest of Andrea Cavalcanti, or rather +Benedetto, together with the accusation of murder pronounced against +him. But Valentine was so weak that this recital scarcely produced the +same effect it would have done had she been in her usual state of +health. Indeed, her brain was only the seat of vague ideas, and +confused forms, mingled with strange fancies, alone presented +themselves before her eyes. + +During the daytime Valentine’s perceptions remained tolerably clear, +owing to the constant presence of M. Noirtier, who caused himself to be +carried to his granddaughter’s room, and watched her with his paternal +tenderness; Villefort also, on his return from the law courts, +frequently passed an hour or two with his father and child. + +At six o’clock Villefort retired to his study, at eight M. d’Avrigny +himself arrived, bringing the night draught prepared for the young +girl, and then M. Noirtier was carried away. A nurse of the doctor’s +choice succeeded them, and never left till about ten or eleven o’clock, +when Valentine was asleep. As she went downstairs she gave the keys of +Valentine’s room to M. de Villefort, so that no one could reach the +sick-room excepting through that of Madame de Villefort and little +Edward. + +Every morning Morrel called on Noirtier to receive news of Valentine, +and, extraordinary as it seemed, each day found him less uneasy. +Certainly, though Valentine still labored under dreadful nervous +excitement, she was better; and moreover, Monte Cristo had told him +when, half distracted, he had rushed to the count’s house, that if she +were not dead in two hours she would be saved. Now four days had +elapsed, and Valentine still lived. + +The nervous excitement of which we speak pursued Valentine even in her +sleep, or rather in that state of somnolence which succeeded her waking +hours; it was then, in the silence of night, in the dim light shed from +the alabaster lamp on the chimney-piece, that she saw the shadows pass +and repass which hover over the bed of sickness, and fan the fever with +their trembling wings. First she fancied she saw her stepmother +threatening her, then Morrel stretched his arms towards her; sometimes +mere strangers, like the Count of Monte Cristo came to visit her; even +the very furniture, in these moments of delirium, seemed to move, and +this state lasted till about three o’clock in the morning, when a deep, +heavy slumber overcame the young girl, from which she did not awake +till daylight. + +On the evening of the day on which Valentine had learned of the flight +of Eugénie and the arrest of Benedetto,—Villefort having retired as +well as Noirtier and d’Avrigny,—her thoughts wandered in a confused +maze, alternately reviewing her own situation and the events she had +just heard. + +Eleven o’clock had struck. The nurse, having placed the beverage +prepared by the doctor within reach of the patient, and locked the +door, was listening with terror to the comments of the servants in the +kitchen, and storing her memory with all the horrible stories which had +for some months past amused the occupants of the antechambers in the +house of the king’s attorney. Meanwhile an unexpected scene was passing +in the room which had been so carefully locked. + +Ten minutes had elapsed since the nurse had left; Valentine, who for +the last hour had been suffering from the fever which returned nightly, +incapable of controlling her ideas, was forced to yield to the +excitement which exhausted itself in producing and reproducing a +succession and recurrence of the same fancies and images. The +night-lamp threw out countless rays, each resolving itself into some +strange form to her disordered imagination, when suddenly by its +flickering light Valentine thought she saw the door of her library, +which was in the recess by the chimney-piece, open slowly, though she +in vain listened for the sound of the hinges on which it turned. + +At any other time Valentine would have seized the silken bell-pull and +summoned assistance, but nothing astonished her in her present +situation. Her reason told her that all the visions she beheld were but +the children of her imagination, and the conviction was strengthened by +the fact that in the morning no traces remained of the nocturnal +phantoms, who disappeared with the coming of daylight. + +From behind the door a human figure appeared, but the girl was too +familiar with such apparitions to be alarmed, and therefore only +stared, hoping to recognize Morrel. The figure advanced towards the bed +and appeared to listen with profound attention. At this moment a ray of +light glanced across the face of the midnight visitor. + +“It is not he,” she murmured, and waited, in the assurance that this +was but a dream, for the man to disappear or assume some other form. +Still, she felt her pulse, and finding it throb violently she +remembered that the best method of dispelling such illusions was to +drink, for a draught of the beverage prepared by the doctor to allay +her fever seemed to cause a reaction of the brain, and for a short time +she suffered less. Valentine therefore reached her hand towards the +glass, but as soon as her trembling arm left the bed the apparition +advanced more quickly towards her, and approached the young girl so +closely that she fancied she heard his breath, and felt the pressure of +his hand. + +This time the illusion, or rather the reality, surpassed anything +Valentine had before experienced; she began to believe herself really +alive and awake, and the belief that her reason was this time not +deceived made her shudder. The pressure she felt was evidently intended +to arrest her arm, and she slowly withdrew it. Then the figure, from +whom she could not detach her eyes, and who appeared more protecting +than menacing, took the glass, and walking towards the night-light held +it up, as if to test its transparency. This did not seem sufficient; +the man, or rather the ghost—for he trod so softly that no sound was +heard—then poured out about a spoonful into the glass, and drank it. + +Valentine witnessed this scene with a sentiment of stupefaction. Every +minute she had expected that it would vanish and give place to another +vision; but the man, instead of dissolving like a shadow, again +approached her, and said in an agitated voice, “Now you may drink.” + +Valentine shuddered. It was the first time one of these visions had +ever addressed her in a living voice, and she was about to utter an +exclamation. The man placed his finger on her lips. + +“The Count of Monte Cristo!” she murmured. + +It was easy to see that no doubt now remained in the young girl’s mind +as to the reality of the scene; her eyes started with terror, her hands +trembled, and she rapidly drew the bedclothes closer to her. Still, the +presence of Monte Cristo at such an hour, his mysterious, fanciful, and +extraordinary entrance into her room through the wall, might well seem +impossibilities to her shattered reason. + +“Do not call anyone—do not be alarmed,” said the count; “do not let a +shade of suspicion or uneasiness remain in your breast; the man +standing before you, Valentine (for this time it is no ghost), is +nothing more than the tenderest father and the most respectful friend +you could dream of.” + +Valentine could not reply; the voice which indicated the real presence +of a being in the room, alarmed her so much that she feared to utter a +syllable; still the expression of her eyes seemed to inquire, “If your +intentions are pure, why are you here?” The count’s marvellous sagacity +understood all that was passing in the young girl’s mind. + +“Listen to me,” he said, “or, rather, look upon me; look at my face, +paler even than usual, and my eyes, red with weariness—for four days I +have not closed them, for I have been constantly watching you, to +protect and preserve you for Maximilian.” + +The blood mounted rapidly to the cheeks of Valentine, for the name just +announced by the count dispelled all the fear with which his presence +had inspired her. + +“Maximilian!” she exclaimed, and so sweet did the sound appear to her, +that she repeated it—“Maximilian!—has he then owned all to you?” + +“Everything. He told me your life was his, and I have promised him that +you shall live.” + +“You have promised him that I shall live?” + +“Yes.” + +“But, sir, you spoke of vigilance and protection. Are you a doctor?” + +“Yes; the best you could have at the present time, believe me.” + +“But you say you have watched?” said Valentine uneasily; “where have +you been?—I have not seen you.” + +The count extended his hand towards the library. + +“I was hidden behind that door,” he said, “which leads into the next +house, which I have rented.” + +Valentine turned her eyes away, and, with an indignant expression of +pride and modest fear, exclaimed: + +“Sir, I think you have been guilty of an unparalleled intrusion, and +that what you call protection is more like an insult.” + +“Valentine,” he answered, “during my long watch over you, all I have +observed has been what people visited you, what nourishment was +prepared, and what beverage was served; then, when the latter appeared +dangerous to me, I entered, as I have now done, and substituted, in the +place of the poison, a healthful draught; which, instead of producing +the death intended, caused life to circulate in your veins.” + +“Poison—death!” exclaimed Valentine, half believing herself under the +influence of some feverish hallucination; “what are you saying, sir?” + +50071m + + + +“Hush, my child,” said Monte Cristo, again placing his finger upon her +lips, “I did say poison and death. But drink some of this;” and the +count took a bottle from his pocket, containing a red liquid, of which +he poured a few drops into the glass. “Drink this, and then take +nothing more tonight.” + +Valentine stretched out her hand, but scarcely had she touched the +glass when she drew back in fear. Monte Cristo took the glass, drank +half its contents, and then presented it to Valentine, who smiled and +swallowed the rest. + +“Oh, yes,” she exclaimed, “I recognize the flavor of my nocturnal +beverage which refreshed me so much, and seemed to ease my aching +brain. Thank you, sir, thank you!” + +“This is how you have lived during the last four nights, Valentine,” +said the count. “But, oh, how I passed that time! Oh, the wretched +hours I have endured—the torture to which I have submitted when I saw +the deadly poison poured into your glass, and how I trembled lest you +should drink it before I could find time to throw it away!” + +“Sir,” said Valentine, at the height of her terror, “you say you +endured tortures when you saw the deadly poison poured into my glass; +but if you saw this, you must also have seen the person who poured it?” + +“Yes.” + +Valentine raised herself in bed, and drew over her chest, which +appeared whiter than snow, the embroidered cambric, still moist with +the cold dews of delirium, to which were now added those of terror. +“You saw the person?” repeated the young girl. + +“Yes,” repeated the count. + +“What you tell me is horrible, sir. You wish to make me believe +something too dreadful. What?—attempt to murder me in my father’s +house, in my room, on my bed of sickness? Oh, leave me, sir; you are +tempting me—you make me doubt the goodness of Providence—it is +impossible, it cannot be!” + +“Are you the first that this hand has stricken? Have you not seen M. de +Saint-Méran, Madame de Saint-Méran, Barrois, all fall? Would not M. +Noirtier also have fallen a victim, had not the treatment he has been +pursuing for the last three years neutralized the effects of the +poison?” + +“Oh, Heaven,” said Valentine; “is this the reason why grandpapa has +made me share all his beverages during the last month?” + +“And have they all tasted of a slightly bitter flavor, like that of +dried orange-peel?” + +“Oh, yes, yes!” + +“Then that explains all,” said Monte Cristo. “Your grandfather knows, +then, that a poisoner lives here; perhaps he even suspects the person. +He has been fortifying you, his beloved child, against the fatal +effects of the poison, which has failed because your system was already +impregnated with it. But even this would have availed little against a +more deadly medium of death employed four days ago, which is generally +but too fatal.” + +“But who, then, is this assassin, this murderer?” + +“Let me also ask you a question. Have you never seen anyone enter your +room at night?” + +“Oh, yes; I have frequently seen shadows pass close to me, approach, +and disappear; but I took them for visions raised by my feverish +imagination, and indeed when you entered I thought I was under the +influence of delirium.” + +“Then you do not know who it is that attempts your life?” + +50073m + + + +“No,” said Valentine; “who could desire my death?” + +“You shall know it now, then,” said Monte Cristo, listening. + +“How do you mean?” said Valentine, looking anxiously around. + +“Because you are not feverish or delirious tonight, but thoroughly +awake; midnight is striking, which is the hour murderers choose.” + +“Oh, heavens,” exclaimed Valentine, wiping off the drops which ran down +her forehead. Midnight struck slowly and sadly; every hour seemed to +strike with leaden weight upon the heart of the poor girl. + +“Valentine,” said the count, “summon up all your courage; still the +beatings of your heart; do not let a sound escape you, and feign to be +asleep; then you will see.” + +Valentine seized the count’s hand. “I think I hear a noise,” she said; +“leave me.” + +“Good-bye, for the present,” replied the count, walking upon tiptoe +towards the library door, and smiling with an expression so sad and +paternal that the young girl’s heart was filled with gratitude. + +Before closing the door he turned around once more, and said, “Not a +movement—not a word; let them think you asleep, or perhaps you may be +killed before I have the power of helping you.” + +And with this fearful injunction the count disappeared through the +door, which noiselessly closed after him. + + + + Chapter 101. Locusta + +Valentine was alone; two other clocks, slower than that of +Saint-Philippe-du-Roule, struck the hour of midnight from different +directions, and excepting the rumbling of a few carriages all was +silent. Then Valentine’s attention was engrossed by the clock in her +room, which marked the seconds. She began counting them, remarking that +they were much slower than the beatings of her heart; and still she +doubted,—the inoffensive Valentine could not imagine that anyone should +desire her death. Why should they? To what end? What had she done to +excite the malice of an enemy? + +There was no fear of her falling asleep. One terrible idea pressed upon +her mind,—that someone existed in the world who had attempted to +assassinate her, and who was about to endeavor to do so again. +Supposing this person, wearied at the inefficacy of the poison, should, +as Monte Cristo intimated, have recourse to steel!—What if the count +should have no time to run to her rescue!—What if her last moments were +approaching, and she should never again see Morrel! + +When this terrible chain of ideas presented itself, Valentine was +nearly persuaded to ring the bell, and call for help. But through the +door she fancied she saw the luminous eye of the count—that eye which +lived in her memory, and the recollection overwhelmed her with so much +shame that she asked herself whether any amount of gratitude could ever +repay his adventurous and devoted friendship. + +Twenty minutes, twenty tedious minutes, passed thus, then ten more, and +at last the clock struck the half-hour. + +Just then the sound of finger-nails slightly grating against the door +of the library informed Valentine that the count was still watching, +and recommended her to do the same; at the same time, on the opposite +side, that is towards Edward’s room, Valentine fancied that she heard +the creaking of the floor; she listened attentively, holding her breath +till she was nearly suffocated; the lock turned, and the door slowly +opened. Valentine had raised herself upon her elbow, and had scarcely +time to throw herself down on the bed and shade her eyes with her arm; +then, trembling, agitated, and her heart beating with indescribable +terror, she awaited the event. + +Someone approached the bed and drew back the curtains. Valentine +summoned every effort, and breathed with that regular respiration which +announces tranquil sleep. + +“Valentine!” said a low voice. + +The girl shuddered to the heart but did not reply. + +“Valentine,” repeated the same voice. + +Still silent: Valentine had promised not to wake. Then everything was +still, excepting that Valentine heard the almost noiseless sound of +some liquid being poured into the glass she had just emptied. Then she +ventured to open her eyelids, and glance over her extended arm. She saw +a woman in a white dressing-gown pouring a liquor from a phial into her +glass. During this short time Valentine must have held her breath, or +moved in some slight degree, for the woman, disturbed, stopped and +leaned over the bed, in order the better to ascertain whether Valentine +slept: it was Madame de Villefort. + +On recognizing her step-mother, Valentine could not repress a shudder, +which caused a vibration in the bed. Madame de Villefort instantly +stepped back close to the wall, and there, shaded by the bed-curtains, +she silently and attentively watched the slightest movement of +Valentine. The latter recollected the terrible caution of Monte Cristo; +she fancied that the hand not holding the phial clasped a long sharp +knife. Then collecting all her remaining strength, she forced herself +to close her eyes; but this simple operation upon the most delicate +organs of our frame, generally so easy to accomplish, became almost +impossible at this moment, so much did curiosity struggle to retain the +eyelid open and learn the truth. Madame de Villefort, however, +reassured by the silence, which was alone disturbed by the regular +breathing of Valentine, again extended her hand, and half hidden by the +curtains succeeded in emptying the contents of the phial into the +glass. Then she retired so gently that Valentine did not know she had +left the room. She only witnessed the withdrawal of the arm—the fair +round arm of a woman but twenty-five years old, and who yet spread +death around her. + +50077m + + + +It is impossible to describe the sensations experienced by Valentine +during the minute and a half Madame de Villefort remained in the room. + +The grating against the library-door aroused the young girl from the +stupor in which she was plunged, and which almost amounted to +insensibility. She raised her head with an effort. The noiseless door +again turned on its hinges, and the Count of Monte Cristo reappeared. + +“Well,” said he, “do you still doubt?” + +“Oh,” murmured the young girl. + +“Have you seen?” + +“Alas!” + +“Did you recognize?” Valentine groaned. + +“Oh, yes;” she said, “I saw, but I cannot believe!” + +“Would you rather die, then, and cause Maximilian’s death?” + +“Oh,” repeated the young girl, almost bewildered, “can I not leave the +house?—can I not escape?” + +“Valentine, the hand which now threatens you will pursue you +everywhere; your servants will be seduced with gold, and death will be +offered to you disguised in every shape. You will find it in the water +you drink from the spring, in the fruit you pluck from the tree.” + +“But did you not say that my kind grandfather’s precaution had +neutralized the poison?” + +“Yes, but not against a strong dose; the poison will be changed, and +the quantity increased.” He took the glass and raised it to his lips. +“It is already done,” he said; “brucine is no longer employed, but a +simple narcotic! I can recognize the flavor of the alcohol in which it +has been dissolved. If you had taken what Madame de Villefort has +poured into your glass, Valentine—Valentine—you would have been +doomed!” + +“But,” exclaimed the young girl, “why am I thus pursued?” + +“Why?—are you so kind—so good—so unsuspicious of ill, that you cannot +understand, Valentine?” + +“No, I have never injured her.” + +“But you are rich, Valentine; you have 200,000 livres a year, and you +prevent her son from enjoying these 200,000 livres.” + +“How so? The fortune is not her gift, but is inherited from my +relations.” + +“Certainly; and that is why M. and Madame de Saint-Méran have died; +that is why M. Noirtier was sentenced the day he made you his heir; +that is why you, in your turn, are to die—it is because your father +would inherit your property, and your brother, his only son, succeed to +his.” + +“Edward? Poor child! Are all these crimes committed on his account?” + +“Ah, then you at length understand?” + +“Heaven grant that this may not be visited upon him!” + +“Valentine, you are an angel!” + +“But why is my grandfather allowed to live?” + +“It was considered, that you dead, the fortune would naturally revert +to your brother, unless he were disinherited; and besides, the crime +appearing useless, it would be folly to commit it.” + +“And is it possible that this frightful combination of crimes has been +invented by a woman?” + +“Do you recollect in the arbor of the Hôtel des Postes, at Perugia, +seeing a man in a brown cloak, whom your stepmother was questioning +upon _aqua tofana_? Well, ever since then, the infernal project has +been ripening in her brain.” + +“Ah, then, indeed, sir,” said the sweet girl, bathed in tears, “I see +that I am condemned to die!” + +“No, Valentine, for I have foreseen all their plots; no, your enemy is +conquered since we know her, and you will live, Valentine—live to be +happy yourself, and to confer happiness upon a noble heart; but to +insure this you must rely on me.” + +“Command me, sir—what am I to do?” + +“You must blindly take what I give you.” + +“Alas, were it only for my own sake, I should prefer to die!” + +“You must not confide in anyone—not even in your father.” + +“My father is not engaged in this fearful plot, is he, sir?” asked +Valentine, clasping her hands. + +“No; and yet your father, a man accustomed to judicial accusations, +ought to have known that all these deaths have not happened naturally; +it is he who should have watched over you—he should have occupied my +place—he should have emptied that glass—he should have risen against +the assassin. Spectre against spectre!” he murmured in a low voice, as +he concluded his sentence. + +“Sir,” said Valentine, “I will do all I can to live, for there are two +beings who love me and will die if I die—my grandfather and +Maximilian.” + +“I will watch over them as I have over you.” + +“Well, sir, do as you will with me;” and then she added, in a low +voice, “oh, heavens, what will befall me?” + +“Whatever may happen, Valentine, do not be alarmed; though you suffer; +though you lose sight, hearing, consciousness, fear nothing; though you +should awake and be ignorant where you are, still do not fear; even +though you should find yourself in a sepulchral vault or coffin. +Reassure yourself, then, and say to yourself: ‘At this moment, a +friend, a father, who lives for my happiness and that of Maximilian, +watches over me!’” + +“Alas, alas, what a fearful extremity!” + +“Valentine, would you rather denounce your stepmother?” + +“I would rather die a hundred times—oh, yes, die!” + +“No, you will not die; but will you promise me, whatever happens, that +you will not complain, but hope?” + +“I will think of Maximilian!” + +“You are my own darling child, Valentine! I alone can save you, and I +will.” + +Valentine in the extremity of her terror joined her hands,—for she felt +that the moment had arrived to ask for courage,—and began to pray, and +while uttering little more than incoherent words, she forgot that her +white shoulders had no other covering than her long hair, and that the +pulsations of her heart could be seen through the lace of her +nightdress. Monte Cristo gently laid his hand on the young girl’s arm, +drew the velvet coverlet close to her throat, and said with a paternal +smile: + +“My child, believe in my devotion to you as you believe in the goodness +of Providence and the love of Maximilian.” Valentine gave him a look +full of gratitude, and remained as docile as a child. + +Then he drew from his waistcoat-pocket the little emerald box, raised +the golden lid, and took from it a pastille about the size of a pea, +which he placed in her hand. She took it, and looked attentively on the +count; there was an expression on the face of her intrepid protector +which commanded her veneration. She evidently interrogated him by her +look. + +“Yes,” said he. + +Valentine carried the pastille to her mouth, and swallowed it. + +“And now, my dear child, adieu for the present. I will try and gain a +little sleep, for you are saved.” + +“Go,” said Valentine, “whatever happens, I promise you not to fear.” + +Monte Cristo for some time kept his eyes fixed on the young girl, who +gradually fell asleep, yielding to the effects of the narcotic the +count had given her. Then he took the glass, emptied three parts of the +contents in the fireplace, that it might be supposed Valentine had +taken it, and replaced it on the table; then he disappeared, after +throwing a farewell glance on Valentine, who slept with the confidence +and innocence of an angel at the feet of the Lord. + + + + Chapter 102. Valentine + +The night-light continued to burn on the chimney-piece, exhausting the +last drops of oil which floated on the surface of the water. The globe +of the lamp appeared of a reddish hue, and the flame, brightening +before it expired, threw out the last flickerings which in an inanimate +object have been so often compared with the convulsions of a human +creature in its final agonies. A dull and dismal light was shed over +the bedclothes and curtains surrounding the young girl. All noise in +the streets had ceased, and the silence was frightful. + +It was then that the door of Edward’s room opened, and a head we have +before noticed appeared in the glass opposite; it was Madame de +Villefort, who came to witness the effects of the drink she had +prepared. She stopped in the doorway, listened for a moment to the +flickering of the lamp, the only sound in that deserted room, and then +advanced to the table to see if Valentine’s glass were empty. It was +still about a quarter full, as we before stated. Madame de Villefort +emptied the contents into the ashes, which she disturbed that they +might the more readily absorb the liquid; then she carefully rinsed the +glass, and wiping it with her handkerchief replaced it on the table. + +If anyone could have looked into the room just then he would have +noticed the hesitation with which Madame de Villefort approached the +bed and looked fixedly on Valentine. The dim light, the profound +silence, and the gloomy thoughts inspired by the hour, and still more +by her own conscience, all combined to produce a sensation of fear; the +poisoner was terrified at the contemplation of her own work. + +At length she rallied, drew aside the curtain, and leaning over the +pillow gazed intently on Valentine. The young girl no longer breathed, +no breath issued through the half-closed teeth; the white lips no +longer quivered—the eyes were suffused with a bluish vapor, and the +long black lashes rested on a cheek white as wax. Madame de Villefort +gazed upon the face so expressive even in its stillness; then she +ventured to raise the coverlet and press her hand upon the young girl’s +heart. It was cold and motionless. She only felt the pulsation in her +own fingers, and withdrew her hand with a shudder. One arm was hanging +out of the bed; from shoulder to elbow it was moulded after the arms of +Germain Pillon’s “Graces,”23 but the fore-arm seemed to be slightly +distorted by convulsion, and the hand, so delicately formed, was +resting with stiff outstretched fingers on the framework of the bed. +The nails, too, were turning blue. + +Madame de Villefort had no longer any doubt; all was over—she had +consummated the last terrible work she had to accomplish. There was no +more to do in the room, so the poisoner retired stealthily, as though +fearing to hear the sound of her own footsteps; but as she withdrew she +still held aside the curtain, absorbed in the irresistible attraction +always exerted by the picture of death, so long as it is merely +mysterious and does not excite disgust. + +The minutes passed; Madame de Villefort could not drop the curtain +which she held like a funeral pall over the head of Valentine. She was +lost in reverie, and the reverie of crime is remorse. + +Just then the lamp again flickered; the noise startled Madame de +Villefort, who shuddered and dropped the curtain. Immediately +afterwards the light expired, and the room was plunged in frightful +obscurity, while the clock at that minute struck half-past four. + +Overpowered with agitation, the poisoner succeeded in groping her way +to the door, and reached her room in an agony of fear. The darkness +lasted two hours longer; then by degrees a cold light crept through the +Venetian blinds, until at length it revealed the objects in the room. + +About this time the nurse’s cough was heard on the stairs and the woman +entered the room with a cup in her hand. To the tender eye of a father +or a lover, the first glance would have sufficed to reveal Valentine’s +condition; but to this hireling, Valentine only appeared to sleep. + +“Good,” she exclaimed, approaching the table, “she has taken part of +her draught; the glass is three-quarters empty.” + +Then she went to the fireplace and lit the fire, and although she had +just left her bed, she could not resist the temptation offered by +Valentine’s sleep, so she threw herself into an armchair to snatch a +little more rest. The clock striking eight awoke her. Astonished at the +prolonged slumber of the patient, and frightened to see that the arm +was still hanging out of the bed, she advanced towards Valentine, and +for the first time noticed the white lips. She tried to replace the +arm, but it moved with a frightful rigidity which could not deceive a +sick-nurse. She screamed aloud; then running to the door exclaimed: + +“Help, help!” + +50083m + + + +“What is the matter?” asked M. d’Avrigny, at the foot of the stairs, it +being the hour he usually visited her. + +“What is it?” asked Villefort, rushing from his room. “Doctor, do you +hear them call for help?” + +“Yes, yes; let us hasten up; it was in Valentine’s room.” + +But before the doctor and the father could reach the room, the servants +who were on the same floor had entered, and seeing Valentine pale and +motionless on her bed, they lifted up their hands towards heaven and +stood transfixed, as though struck by lightening. + +“Call Madame de Villefort!—Wake Madame de Villefort!” cried the +procureur from the door of his chamber, which apparently he scarcely +dared to leave. But instead of obeying him, the servants stood watching +M. d’Avrigny, who ran to Valentine, and raised her in his arms. + +“What?—this one, too?” he exclaimed. “Oh, where will be the end?” + +Villefort rushed into the room. + +“What are you saying, doctor?” he exclaimed, raising his hands to +heaven. + +“I say that Valentine is dead!” replied d’Avrigny, in a voice terrible +in its solemn calmness. + +50085m + + + +M. de Villefort staggered and buried his head in the bed. On the +exclamation of the doctor and the cry of the father, the servants all +fled with muttered imprecations; they were heard running down the +stairs and through the long passages, then there was a rush in the +court, afterwards all was still; they had, one and all, deserted the +accursed house. + +Just then, Madame de Villefort, in the act of slipping on her +dressing-gown, threw aside the drapery and for a moment stood +motionless, as though interrogating the occupants of the room, while +she endeavored to call up some rebellious tears. On a sudden she +stepped, or rather bounded, with outstretched arms, towards the table. +She saw d’Avrigny curiously examining the glass, which she felt certain +of having emptied during the night. It was now a third full, just as it +was when she threw the contents into the ashes. The spectre of +Valentine rising before the poisoner would have alarmed her less. It +was, indeed, the same color as the draught she had poured into the +glass, and which Valentine had drunk; it was indeed the poison, which +could not deceive M. d’Avrigny, which he now examined so closely; it +was doubtless a miracle from heaven, that, notwithstanding her +precautions, there should be some trace, some proof remaining to reveal +the crime. + +While Madame de Villefort remained rooted to the spot like a statue of +terror, and Villefort, with his head hidden in the bedclothes, saw +nothing around him, d’Avrigny approached the window, that he might the +better examine the contents of the glass, and dipping the tip of his +finger in, tasted it. + +“Ah,” he exclaimed, “it is no longer brucine that is used; let me see +what it is!” + +Then he ran to one of the cupboards in Valentine’s room, which had been +transformed into a medicine closet, and taking from its silver case a +small bottle of nitric acid, dropped a little of it into the liquor, +which immediately changed to a blood-red color. + +“Ah,” exclaimed d’Avrigny, in a voice in which the horror of a judge +unveiling the truth was mingled with the delight of a student making a +discovery. + +Madame de Villefort was overpowered; her eyes first flashed and then +swam, she staggered towards the door and disappeared. Directly +afterwards the distant sound of a heavy weight falling on the ground +was heard, but no one paid any attention to it; the nurse was engaged +in watching the chemical analysis, and Villefort was still absorbed in +grief. M. d’Avrigny alone had followed Madame de Villefort with his +eyes, and watched her hurried retreat. He lifted up the drapery over +the entrance to Edward’s room, and his eye reaching as far as Madame de +Villefort’s apartment, he beheld her extended lifeless on the floor. + +“Go to the assistance of Madame de Villefort,” he said to the nurse. +“Madame de Villefort is ill.” + +50087m + + + +“But Mademoiselle de Villefort——” stammered the nurse. + +“Mademoiselle de Villefort no longer requires help,” said d’Avrigny, +“since she is dead.” + +“Dead,—dead!” groaned forth Villefort, in a paroxysm of grief, which +was the more terrible from the novelty of the sensation in the iron +heart of that man. + +“Dead!” repeated a third voice. “Who said Valentine was dead?” + +The two men turned round, and saw Morrel standing at the door, pale and +terror-stricken. This is what had happened. At the usual time, Morrel +had presented himself at the little door leading to Noirtier’s room. +Contrary to custom, the door was open, and having no occasion to ring +he entered. He waited for a moment in the hall and called for a servant +to conduct him to M. Noirtier; but no one answered, the servants +having, as we know, deserted the house. Morrel had no particular reason +for uneasiness; Monte Cristo had promised him that Valentine should +live, and so far he had always fulfilled his word. Every night the +count had given him news, which was the next morning confirmed by +Noirtier. Still this extraordinary silence appeared strange to him, and +he called a second and third time; still no answer. Then he determined +to go up. Noirtier’s room was opened, like all the rest. The first +thing he saw was the old man sitting in his armchair in his usual +place, but his eyes expressed alarm, which was confirmed by the pallor +which overspread his features. + +“How are you, sir?” asked Morrel, with a sickness of heart. + +“Well,” answered the old man, by closing his eyes; but his appearance +manifested increasing uneasiness. + +“You are thoughtful, sir,” continued Morrel; “you want something; shall +I call one of the servants?” + +“Yes,” replied Noirtier. + +Morrel pulled the bell, but though he nearly broke the cord no one +answered. He turned towards Noirtier; the pallor and anguish expressed +on his countenance momentarily increased. + +“Oh,” exclaimed Morrel, “why do they not come? Is anyone ill in the +house?” The eyes of Noirtier seemed as though they would start from +their sockets. “What is the matter? You alarm me. Valentine? +Valentine?” + +“Yes, yes,” signed Noirtier. + +Maximilian tried to speak, but he could articulate nothing; he +staggered, and supported himself against the wainscot. Then he pointed +to the door. + +“Yes, yes, yes!” continued the old man. + +50089m + + + +Maximilian rushed up the little staircase, while Noirtier’s eyes seemed +to say,—“Quicker, quicker!” + +In a minute the young man darted through several rooms, till at length +he reached Valentine’s. + +There was no occasion to push the door, it was wide open. A sob was the +only sound he heard. He saw as though in a mist, a black figure +kneeling and buried in a confused mass of white drapery. A terrible +fear transfixed him. It was then he heard a voice exclaim “Valentine is +dead!” and another voice which, like an echo repeated: + +“Dead,—dead!” + +50090m + + + + + Chapter 103. Maximilian + +Villefort rose, half-ashamed of being surprised in such a paroxysm of +grief. The terrible office he had held for twenty-five years had +succeeded in making him more or less than man. His glance, at first +wandering, fixed itself upon Morrel. “Who are you, sir,” he asked, +“that forget that this is not the manner to enter a house stricken with +death? Go, sir, go!” + +But Morrel remained motionless; he could not detach his eyes from that +disordered bed, and the pale corpse of the young girl who was lying on +it. + +“Go!—do you hear?” said Villefort, while d’Avrigny advanced to lead +Morrel out. Maximilian stared for a moment at the corpse, gazed all +around the room, then upon the two men; he opened his mouth to speak, +but finding it impossible to give utterance to the innumerable ideas +that occupied his brain, he went out, thrusting his hands through his +hair in such a manner that Villefort and d’Avrigny, for a moment +diverted from the engrossing topic, exchanged glances, which seemed to +say,—“He is mad!” + +But in less than five minutes the staircase groaned beneath an +extraordinary weight. Morrel was seen carrying, with superhuman +strength, the armchair containing Noirtier upstairs. When he reached +the landing he placed the armchair on the floor and rapidly rolled it +into Valentine’s room. This could only have been accomplished by means +of unnatural strength supplied by powerful excitement. But the most +fearful spectacle was Noirtier being pushed towards the bed, his face +expressing all his meaning, and his eyes supplying the want of every +other faculty. That pale face and flaming glance appeared to Villefort +like a frightful apparition. Each time he had been brought into contact +with his father, something terrible had happened. + +“See what they have done!” cried Morrel, with one hand leaning on the +back of the chair, and the other extended towards Valentine. “See, my +father, see!” + +Villefort drew back and looked with astonishment on the young man, who, +almost a stranger to him, called Noirtier his father. At this moment +the whole soul of the old man seemed centred in his eyes which became +bloodshot; the veins of the throat swelled; his cheeks and temples +became purple, as though he was struck with epilepsy; nothing was +wanting to complete this but the utterance of a cry. And the cry issued +from his pores, if we may thus speak—a cry frightful in its silence. +D’Avrigny rushed towards the old man and made him inhale a powerful +restorative. + +“Sir,” cried Morrel, seizing the moist hand of the paralytic, “they ask +me who I am, and what right I have to be here. Oh, you know it, tell +them, tell them!” And the young man’s voice was choked by sobs. + +As for the old man, his chest heaved with his panting respiration. One +could have thought that he was undergoing the agonies preceding death. +At length, happier than the young man, who sobbed without weeping, +tears glistened in the eyes of Noirtier. + +“Tell them,” said Morrel in a hoarse voice, “tell them that I am her +betrothed. Tell them she was my beloved, my noble girl, my only +blessing in the world. Tell them—oh, tell them, that corpse belongs to +me!” + +The young man overwhelmed by the weight of his anguish, fell heavily on +his knees before the bed, which his fingers grasped with convulsive +energy. D’Avrigny, unable to bear the sight of this touching emotion, +turned away; and Villefort, without seeking any further explanation, +and attracted towards him by the irresistible magnetism which draws us +towards those who have loved the people for whom we mourn, extended his +hand towards the young man. + +But Morrel saw nothing; he had grasped the hand of Valentine, and +unable to weep vented his agony in groans as he bit the sheets. For +some time nothing was heard in that chamber but sobs, exclamations, and +prayers. At length Villefort, the most composed of all, spoke: + +“Sir,” said he to Maximilian, “you say you loved Valentine, that you +were betrothed to her. I knew nothing of this engagement, of this love, +yet I, her father, forgive you, for I see that your grief is real and +deep; and besides my own sorrow is too great for anger to find a place +in my heart. But you see that the angel whom you hoped for has left +this earth—she has nothing more to do with the adoration of men. Take a +last farewell, sir, of her sad remains; take the hand you expected to +possess once more within your own, and then separate yourself from her +forever. Valentine now requires only the ministrations of the priest.” + +50093m + + + +“You are mistaken, sir,” exclaimed Morrel, raising himself on one knee, +his heart pierced by a more acute pang than any he had yet felt—“you +are mistaken; Valentine, dying as she has, not only requires a priest, +but an avenger. _You_, M. de Villefort, send for the priest; _I_ will +be the avenger.” + +“What do you mean, sir?” asked Villefort, trembling at the new idea +inspired by the delirium of Morrel. + +“I tell you, sir, that two persons exist in you; the father has mourned +sufficiently, now let the procureur fulfil his office.” + +The eyes of Noirtier glistened, and d’Avrigny approached. + +“Gentlemen,” said Morrel, reading all that passed through the minds of +the witnesses to the scene, “I know what I am saying, and you know as +well as I do what I am about to say—Valentine has been assassinated!” + +Villefort hung his head, d’Avrigny approached nearer, and Noirtier said +“Yes” with his eyes. + +“Now, sir,” continued Morrel, “in these days no one can disappear by +violent means without some inquiries being made as to the cause of her +disappearance, even were she not a young, beautiful, and adorable +creature like Valentine. Now, M. le Procureur du Roi,” said Morrel with +increasing vehemence, “no mercy is allowed; I denounce the crime; it is +your place to seek the assassin.” + +The young man’s implacable eyes interrogated Villefort, who, on his +side, glanced from Noirtier to d’Avrigny. But instead of finding +sympathy in the eyes of the doctor and his father, he only saw an +expression as inflexible as that of Maximilian. + +“Yes,” indicated the old man. + +“Assuredly,” said d’Avrigny. + +“Sir,” said Villefort, striving to struggle against this triple force +and his own emotion,—“sir, you are deceived; no one commits crimes +here. I am stricken by fate. It is horrible, indeed, but no one +assassinates.” + +The eyes of Noirtier lighted up with rage, and d’Avrigny prepared to +speak. Morrel, however, extended his arm, and commanded silence. + +“And I say that murders _are_ committed here,” said Morrel, whose +voice, though lower in tone, lost none of its terrible distinctness: “I +tell you that this is the fourth victim within the last four months. I +tell you, Valentine’s life was attempted by poison four days ago, +though she escaped, owing to the precautions of M. Noirtier. I tell you +that the dose has been double, the poison changed, and that this time +it has succeeded. I tell you that you know these things as well as I +do, since this gentleman has forewarned you, both as a doctor and as a +friend.” + +“Oh, you rave, sir,” exclaimed Villefort, in vain endeavoring to escape +the net in which he was taken. + +50095m + + + +“I rave?” said Morrel; “well, then, I appeal to M. d’Avrigny himself. +Ask him, sir, if he recollects the words he uttered in the garden of +this house on the night of Madame de Saint-Méran’s death. You thought +yourselves alone, and talked about that tragical death, and the +fatality you mentioned then is the same which has caused the murder of +Valentine.” Villefort and d’Avrigny exchanged looks. + +“Yes, yes,” continued Morrel; “recall the scene, for the words you +thought were only given to silence and solitude fell into my ears. +Certainly, after witnessing the culpable indolence manifested by M. de +Villefort towards his own relations, I ought to have denounced him to +the authorities; then I should not have been an accomplice to thy +death, as I now am, sweet, beloved Valentine; but the accomplice shall +become the avenger. This fourth murder is apparent to all, and if thy +father abandon thee, Valentine, it is I, and I swear it, that shall +pursue the assassin.” + +And this time, as though nature had at least taken compassion on the +vigorous frame, nearly bursting with its own strength, the words of +Morrel were stifled in his throat; his breast heaved; the tears, so +long rebellious, gushed from his eyes; and he threw himself weeping on +his knees by the side of the bed. + +Then d’Avrigny spoke. “And I, too,” he exclaimed in a low voice, “I +unite with M. Morrel in demanding justice for crime; my blood boils at +the idea of having encouraged a murderer by my cowardly concession.” + +“Oh, merciful Heavens!” murmured Villefort. Morrel raised his head, and +reading the eyes of the old man, which gleamed with unnatural lustre,— + +“Stay,” he said, “M. Noirtier wishes to speak.” + +“Yes,” indicated Noirtier, with an expression the more terrible, from +all his faculties being centred in his glance. + +“Do you know the assassin?” asked Morrel. + +“Yes,” replied Noirtier. + +“And will you direct us?” exclaimed the young man. “Listen, M. +d’Avrigny, listen!” + +Noirtier looked upon Morrel with one of those melancholy smiles which +had so often made Valentine happy, and thus fixed his attention. Then, +having riveted the eyes of his interlocutor on his own, he glanced +towards the door. + +“Do you wish me to leave?” said Morrel, sadly. + +“Yes,” replied Noirtier. + +“Alas, alas, sir, have pity on me!” + +The old man’s eyes remained fixed on the door. + +“May I, at least, return?” asked Morrel. + +“Yes.” + +“Must I leave alone?” + +“No.” + +“Whom am I to take with me? The procureur?” + +“No.” + +“The doctor?” + +“Yes.” + +“You wish to remain alone with M. de Villefort?” + +“Yes.” + +“But can he understand you?” + +“Yes.” + +“Oh,” said Villefort, inexpressibly delighted to think that the +inquiries were to be made by him alone,—“oh, be satisfied, I can +understand my father.” While uttering these words with this expression +of joy, his teeth clashed together violently. + +D’Avrigny took the young man’s arm, and led him out of the room. A more +than deathlike silence then reigned in the house. At the end of a +quarter of an hour a faltering footstep was heard, and Villefort +appeared at the door of the apartment where d’Avrigny and Morrel had +been staying, one absorbed in meditation, the other in grief. + +“You can come,” he said, and led them back to Noirtier. + +Morrel looked attentively on Villefort. His face was livid, large drops +rolled down his face, and in his fingers he held the fragments of a +quill pen which he had torn to atoms. + +“Gentlemen,” he said in a hoarse voice, “give me your word of honor +that this horrible secret shall forever remain buried amongst +ourselves!” The two men drew back. + +“I entreat you——” continued Villefort. + +“But,” said Morrel, “the culprit—the murderer—the assassin.” + +“Do not alarm yourself, sir; justice will be done,” said Villefort. “My +father has revealed the culprit’s name; my father thirsts for revenge +as much as you do, yet even he conjures you as I do to keep this +secret. Do you not, father?” + +“Yes,” resolutely replied Noirtier. Morrel suffered an exclamation of +horror and surprise to escape him. + +“Oh, sir,” said Villefort, arresting Maximilian by the arm, “if my +father, the inflexible man, makes this request, it is because he knows, +be assured, that Valentine will be terribly revenged. Is it not so, +father?” + +The old man made a sign in the affirmative. Villefort continued: + +“He knows me, and I have pledged my word to him. Rest assured, +gentlemen, that within three days, in a less time than justice would +demand, the revenge I shall have taken for the murder of my child will +be such as to make the boldest heart tremble;” and as he spoke these +words he ground his teeth, and grasped the old man’s senseless hand. + +“Will this promise be fulfilled, M. Noirtier?” asked Morrel, while +d’Avrigny looked inquiringly. + +“Yes,” replied Noirtier with an expression of sinister joy. + +“Swear, then,” said Villefort, joining the hands of Morrel and +d’Avrigny, “swear that you will spare the honor of my house, and leave +me to avenge my child.” + +D’Avrigny turned round and uttered a very feeble “Yes,” but Morrel, +disengaging his hand, rushed to the bed, and after having pressed the +cold lips of Valentine with his own, hurriedly left, uttering a long, +deep groan of despair and anguish. + +We have before stated that all the servants had fled. M. de Villefort +was therefore obliged to request M. d’Avrigny to superintend all the +arrangements consequent upon a death in a large city, more especially a +death under such suspicious circumstances. + +It was something terrible to witness the silent agony, the mute despair +of Noirtier, whose tears silently rolled down his cheeks. Villefort +retired to his study, and d’Avrigny left to summon the doctor of the +mayoralty, whose office it is to examine bodies after decease, and who +is expressly named “the doctor of the dead.” M. Noirtier could not be +persuaded to quit his grandchild. At the end of a quarter of an hour M. +d’Avrigny returned with his associate; they found the outer gate +closed, and not a servant remaining in the house; Villefort himself was +obliged to open to them. But he stopped on the landing; he had not the +courage to again visit the death chamber. The two doctors, therefore, +entered the room alone. Noirtier was near the bed, pale, motionless, +and silent as the corpse. The district doctor approached with the +indifference of a man accustomed to spend half his time amongst the +dead; he then lifted the sheet which was placed over the face, and just +unclosed the lips. + +“Alas,” said d’Avrigny, “she is indeed dead, poor child!” + +50099m + + + +“Yes,” answered the doctor laconically, dropping the sheet he had +raised. Noirtier uttered a kind of hoarse, rattling sound; the old +man’s eyes sparkled, and the good doctor understood that he wished to +behold his child. He therefore approached the bed, and while his +companion was dipping the fingers with which he had touched the lips of +the corpse in chloride of lime, he uncovered the calm and pale face, +which looked like that of a sleeping angel. + +A tear, which appeared in the old man’s eye, expressed his thanks to +the doctor. The doctor of the dead then laid his permit on the corner +of the table, and having fulfilled his duty, was conducted out by +d’Avrigny. Villefort met them at the door of his study; having in a few +words thanked the district doctor, he turned to d’Avrigny, and said: + +“And now the priest.” + +“Is there any particular priest you wish to pray with Valentine?” asked +d’Avrigny. + +“No.” said Villefort; “fetch the nearest.” + +“The nearest,” said the district doctor, “is a good Italian abbé, who +lives next door to you. Shall I call on him as I pass?” + +“D’Avrigny,” said Villefort, “be so kind, I beseech you, as to +accompany this gentleman. Here is the key of the door, so that you can +go in and out as you please; you will bring the priest with you, and +will oblige me by introducing him into my child’s room.” + +50101m + + + +“Do you wish to see him?” + +“I only wish to be alone. You will excuse me, will you not? A priest +can understand a father’s grief.” + +And M. de Villefort, giving the key to d’Avrigny, again bade farewell +to the strange doctor, and retired to his study, where he began to +work. For some temperaments work is a remedy for all afflictions. + +As the doctors entered the street, they saw a man in a cassock standing +on the threshold of the next door. + +“This is the abbé of whom I spoke,” said the doctor to d’Avrigny. +D’Avrigny accosted the priest. + +“Sir,” he said, “are you disposed to confer a great obligation on an +unhappy father who has just lost his daughter? I mean M. de Villefort, +the king’s attorney.” + +“Ah,” said the priest, in a marked Italian accent; “yes, I have heard +that death is in that house.” + +“Then I need not tell you what kind of service he requires of you.” + +“I was about to offer myself, sir,” said the priest; “it is our mission +to forestall our duties.” + +“It is a young girl.” + +“I know it, sir; the servants who fled from the house informed me. I +also know that her name is Valentine, and I have already prayed for +her.” + +“Thank you, sir,” said d’Avrigny; “since you have commenced your sacred +office, deign to continue it. Come and watch by the dead, and all the +wretched family will be grateful to you.” + +“I am going, sir; and I do not hesitate to say that no prayers will be +more fervent than mine.” + +D’Avrigny took the priest’s hand, and without meeting Villefort, who +was engaged in his study, they reached Valentine’s room, which on the +following night was to be occupied by the undertakers. On entering the +room, Noirtier’s eyes met those of the abbé, and no doubt he read some +particular expression in them, for he remained in the room. D’Avrigny +recommended the attention of the priest to the living as well as to the +dead, and the abbé promised to devote his prayers to Valentine and his +attentions to Noirtier. + +In order, doubtless, that he might not be disturbed while fulfilling +his sacred mission, the priest rose as soon as d’Avrigny departed, and +not only bolted the door through which the doctor had just left, but +also that leading to Madame de Villefort’s room. + + + + Chapter 104. Danglars’ Signature + +The next morning dawned dull and cloudy. During the night the +undertakers had executed their melancholy office, and wrapped the +corpse in the winding-sheet, which, whatever may be said about the +equality of death, is at least a last proof of the luxury so pleasing +in life. This winding-sheet was nothing more than a beautiful piece of +cambric, which the young girl had bought a fortnight before. + +During the evening two men, engaged for the purpose, had carried +Noirtier from Valentine’s room into his own, and contrary to all +expectation there was no difficulty in withdrawing him from his child. +The Abbé Busoni had watched till daylight, and then left without +calling anyone. D’Avrigny returned about eight o’clock in the morning; +he met Villefort on his way to Noirtier’s room, and accompanied him to +see how the old man had slept. They found him in the large armchair, +which served him for a bed, enjoying a calm, nay, almost a smiling +sleep. They both stood in amazement at the door. + +“See,” said d’Avrigny to Villefort, “nature knows how to alleviate the +deepest sorrow. No one can say that M. Noirtier did not love his child, +and yet he sleeps.” + +“Yes, you are right,” replied Villefort, surprised; “he sleeps, indeed! +And this is the more strange, since the least contradiction keeps him +awake all night.” + +“Grief has stunned him,” replied d’Avrigny; and they both returned +thoughtfully to the procureur’s study. + +“See, I have not slept,” said Villefort, showing his undisturbed bed; +“grief does not stun me. I have not been in bed for two nights; but +then look at my desk; see what I have written during these two days and +nights. I have filled those papers, and have made out the accusation +against the assassin Benedetto. Oh, work, work,—my passion, my joy, my +delight,—it is for thee to alleviate my sorrows!” and he convulsively +grasped the hand of d’Avrigny. + +“Do you require my services now?” asked d’Avrigny. + +“No,” said Villefort; “only return again at eleven o’clock; at twelve +the—the—oh, Heavens, my poor, poor child!” and the procureur again +becoming a man, lifted up his eyes and groaned. + +“Shall you be present in the reception-room?” + +“No; I have a cousin who has undertaken this sad office. I shall work, +doctor—when I work I forget everything.” + +And, indeed, no sooner had the doctor left the room, than he was again +absorbed in work. On the doorsteps d’Avrigny met the cousin whom +Villefort had mentioned, a personage as insignificant in our story as +in the world he occupied—one of those beings designed from their birth +to make themselves useful to others. He was punctual, dressed in black, +with crape around his hat, and presented himself at his cousin’s with a +face made up for the occasion, and which he could alter as might be +required. + +At eleven o’clock the mourning-coaches rolled into the paved court, and +the Rue du Faubourg Saint-Honoré was filled with a crowd of idlers, +equally pleased to witness the festivities or the mourning of the rich, +and who rush with the same avidity to a funeral procession as to the +marriage of a duchess. + +Gradually the reception-room filled, and some of our old friends made +their appearance—we mean Debray, Château-Renaud, and Beauchamp, +accompanied by all the leading men of the day at the bar, in +literature, or the army, for M. de Villefort moved in the first +Parisian circles, less owing to his social position than to his +personal merit. + +The cousin standing at the door ushered in the guests, and it was +rather a relief to the indifferent to see a person as unmoved as +themselves, and who did not exact a mournful face or force tears, as +would have been the case with a father, a brother, or a lover. Those +who were acquainted soon formed into little groups. One of them was +made of Debray, Château-Renaud, and Beauchamp. + +“Poor girl,” said Debray, like the rest, paying an involuntary tribute +to the sad event,—“poor girl, so young, so rich, so beautiful! Could +you have imagined this scene, Château-Renaud, when we saw her, at the +most three weeks ago, about to sign that contract?” + +“Indeed, no,” said Château-Renaud.” + +“Did you know her?” + +“I spoke to her once or twice at Madame de Morcerf’s, among the rest; +she appeared to me charming, though rather melancholy. Where is her +stepmother? Do you know?” + +“She is spending the day with the wife of the worthy gentleman who is +receiving us.” + +50105m + + + +“Who is he?” + +“Whom do you mean?” + +“The gentleman who receives us? Is he a deputy?” + +“Oh, no. I am condemned to witness those gentlemen every day,” said +Beauchamp; “but he is perfectly unknown to me.” + +“Have you mentioned this death in your paper?” + +“It has been mentioned, but the article is not mine; indeed, I doubt if +it will please M. Villefort, for it says that if four successive deaths +had happened anywhere else than in the house of the king’s attorney, he +would have interested himself somewhat more about it.” + +“Still,” said Château-Renaud, “Dr. d’Avrigny, who attends my mother, +declares he is in despair about it. But whom are you seeking, Debray?” + +“I am seeking the Count of Monte Cristo” said the young man. + +“I met him on the boulevard, on my way here,” said Beauchamp. “I think +he is about to leave Paris; he was going to his banker.” + +“His banker? Danglars is his banker, is he not?” asked Château-Renaud +of Debray. + +“I believe so,” replied the secretary with slight uneasiness. “But +Monte Cristo is not the only one I miss here; I do not see Morrel.” + +“Morrel? Do they know him?” asked Château-Renaud. “I think he has only +been introduced to Madame de Villefort.” + +“Still, he ought to have been here,” said Debray; “I wonder what will +be talked about tonight; this funeral is the news of the day. But hush, +here comes our minister of justice; he will feel obliged to make some +little speech to the cousin,” and the three young men drew near to +listen. + +Beauchamp told the truth when he said that on his way to the funeral he +had met Monte Cristo, who was directing his steps towards the Rue de la +Chaussée d’Antin, to M. Danglars’. The banker saw the carriage of the +count enter the courtyard, and advanced to meet him with a sad, though +affable smile. + +“Well,” said he, extending his hand to Monte Cristo, “I suppose you +have come to sympathize with me, for indeed misfortune has taken +possession of my house. When I perceived you, I was just asking myself +whether I had not wished harm towards those poor Morcerfs, which would +have justified the proverb of ‘He who wishes misfortunes to happen to +others experiences them himself.’ Well, on my word of honor, I +answered, ‘No!’ I wished no ill to Morcerf; he was a little proud, +perhaps, for a man who like myself has risen from nothing; but we all +have our faults. Do you know, count, that persons of our time of +life—not that you belong to the class, you are still a young man,—but +as I was saying, persons of our time of life have been very unfortunate +this year. For example, look at the puritanical procureur, who has just +lost his daughter, and in fact nearly all his family, in so singular a +manner; Morcerf dishonored and dead; and then myself covered with +ridicule through the villany of Benedetto; besides——” + +“Besides what?” asked the Count. + +“Alas, do you not know?” + +“What new calamity?” + +“My daughter——” + +“Mademoiselle Danglars?” + +“Eugénie has left us!” + +“Good heavens, what are you telling me?” + +“The truth, my dear count. Oh, how happy you must be in not having +either wife or children!” + +“Do you think so?” + +“Indeed I do.” + +“And so Mademoiselle Danglars——” + +“She could not endure the insult offered to us by that wretch, so she +asked permission to travel.” + +“And is she gone?” + +“The other night she left.” + +“With Madame Danglars?” + +“No, with a relation. But still, we have quite lost our dear Eugénie; +for I doubt whether her pride will ever allow her to return to France.” + +“Still, baron,” said Monte Cristo, “family griefs, or indeed any other +affliction which would crush a man whose child was his only treasure, +are endurable to a millionaire. Philosophers may well say, and +practical men will always support the opinion, that money mitigates +many trials; and if you admit the efficacy of this sovereign balm, you +ought to be very easily consoled—you, the king of finance, the focus of +immeasurable power.” + +Danglars looked at him askance, as though to ascertain whether he spoke +seriously. + +“Yes,” he answered, “if a fortune brings consolation, I ought to be +consoled; I am rich.” + +“So rich, dear sir, that your fortune resembles the pyramids; if you +wished to demolish them you could not, and if it were possible, you +would not dare!” + +Danglars smiled at the good-natured pleasantry of the count. “That +reminds me,” he said, “that when you entered I was on the point of +signing five little bonds; I have already signed two: will you allow me +to do the same to the others?” + +“Pray do so.” + +There was a moment’s silence, during which the noise of the banker’s +pen was alone heard, while Monte Cristo examined the gilt mouldings on +the ceiling. + +“Are they Spanish, Haitian, or Neapolitan bonds?” said Monte Cristo. + +“No,” said Danglars, smiling, “they are bonds on the bank of France, +payable to bearer. Stay, count,” he added, “you, who may be called the +emperor, if I claim the title of king of finance, have you many pieces +of paper of this size, each worth a million?” + +The count took into his hands the papers, which Danglars had so proudly +presented to him, and read:— + +“‘To the Governor of the Bank. Please pay to my order, from the fund +deposited by me, the sum of a million, and charge the same to my +account. + +“Baron Danglars.’” + +“One, two, three, four, five,” said Monte Cristo; “five millions—why +what a Crœsus you are!” + +“This is how I transact business,” said Danglars. + +“It is really wonderful,” said the count; “above all, if, as I suppose, +it is payable at sight.” + +“It is, indeed,” said Danglars. + +“It is a fine thing to have such credit; really, it is only in France +these things are done. Five millions on five little scraps of paper!—it +must be seen to be believed.” + +“You do not doubt it?” + +“No!” + +“You say so with an accent—stay, you shall be convinced; take my clerk +to the bank, and you will see him leave it with an order on the +Treasury for the same sum.” + +“No,” said Monte Cristo folding the five notes, “most decidedly not; +the thing is so curious, I will make the experiment myself. I am +credited on you for six millions. I have drawn nine hundred thousand +francs, you therefore still owe me five millions and a hundred thousand +francs. I will take the five scraps of paper that I now hold as bonds, +with your signature alone, and here is a receipt in full for the six +millions between us. I had prepared it beforehand, for I am much in +want of money today.” + +And Monte Cristo placed the bonds in his pocket with one hand, while +with the other he held out the receipt to Danglars. If a thunderbolt +had fallen at the banker’s feet, he could not have experienced greater +terror. + +“What,” he stammered, “do you mean to keep that money? Excuse me, +excuse me, but I owe this money to the charity fund,—a deposit which I +promised to pay this morning.” + +“Oh, well, then,” said Monte Cristo, “I am not particular about these +five notes, pay me in a different form; I wished, from curiosity, to +take these, that I might be able to say that without any advice or +preparation the house of Danglars had paid me five millions without a +minute’s delay; it would have been remarkable. But here are your bonds; +pay me differently;” and he held the bonds towards Danglars, who seized +them like a vulture extending its claws to withhold the food that is +being wrested from its grasp. + +Suddenly he rallied, made a violent effort to restrain himself, and +then a smile gradually widened the features of his disturbed +countenance. + +50109m + + + +“Certainly,” he said, “your receipt is money.” + +“Oh dear, yes; and if you were at Rome, the house of Thomson & French +would make no more difficulty about paying the money on my receipt than +you have just done.” + +“Pardon me, count, pardon me.” + +“Then I may keep this money?” + +“Yes,” said Danglars, while the perspiration started from the roots of +his hair. “Yes, keep it—keep it.” + +Monte Cristo replaced the notes in his pocket with that indescribable +expression which seemed to say, “Come, reflect; if you repent there is +still time.” + +“No,” said Danglars, “no, decidedly no; keep my signatures. But you +know none are so formal as bankers in transacting business; I intended +this money for the charity fund, and I seemed to be robbing them if I +did not pay them with these precise bonds. How absurd—as if one crown +were not as good as another. Excuse me;” and he began to laugh loudly, +but nervously. + +“Certainly, I excuse you,” said Monte Cristo graciously, “and pocket +them.” And he placed the bonds in his pocket-book. + +“But,” said Danglars, “there is still a sum of one hundred thousand +francs?” + +“Oh, a mere nothing,” said Monte Cristo. “The balance would come to +about that sum; but keep it, and we shall be quits.” + +“Count,” said Danglars, “are you speaking seriously?” + +“I never joke with bankers,” said Monte Cristo in a freezing manner, +which repelled impertinence; and he turned to the door, just as the +valet de chambre announced: + +“M. de Boville, Receiver-General of the charities.” + +“_Ma foi_,” said Monte Cristo; “I think I arrived just in time to +obtain your signatures, or they would have been disputed with me.” + +Danglars again became pale, and hastened to conduct the count out. +Monte Cristo exchanged a ceremonious bow with M. de Boville, who was +standing in the waiting-room, and who was introduced into Danglars’ +room as soon as the count had left. + +The count’s serious face was illumined by a faint smile, as he noticed +the portfolio which the receiver-general held in his hand. At the door +he found his carriage, and was immediately driven to the bank. +Meanwhile Danglars, repressing all emotion, advanced to meet the +receiver-general. We need not say that a smile of condescension was +stamped upon his lips. + +“Good-morning, creditor,” said he; “for I wager anything it is the +creditor who visits me.” + +“You are right, baron,” answered M. de Boville; “the charities present +themselves to you through me; the widows and orphans depute me to +receive alms to the amount of five millions from you.” + +“And yet they say orphans are to be pitied,” said Danglars, wishing to +prolong the jest. “Poor things!” + +“Here I am in their name,” said M. de Boville; “but did you receive my +letter yesterday?” + +“Yes.” + +“I have brought my receipt.” + +50111m + + + +“My dear M. de Boville, your widows and orphans must oblige me by +waiting twenty-four hours, since M. de Monte Cristo whom you just saw +leaving here—you did see him, I think?” + +“Yes; well?” + +“Well, M. de Monte Cristo has just carried off their five millions.” + +“How so?” + +“The count has an unlimited credit upon me; a credit opened by Thomson +& French, of Rome; he came to demand five millions at once, which I +paid him with checks on the bank. My funds are deposited there, and you +can understand that if I draw out ten millions on the same day it will +appear rather strange to the governor. Two days will be a different +thing,” said Danglars, smiling. + +“Come,” said Boville, with a tone of entire incredulity, “five millions +to that gentleman who just left, and who bowed to me as though he knew +me?” + +“Perhaps he knows you, though you do not know him; M. de Monte Cristo +knows everybody.” + +“Five millions!” + +“Here is his receipt. Believe your own eyes.” M. de Boville took the +paper Danglars presented him, and read: + +“Received of Baron Danglars the sum of five million one hundred +thousand francs, to be repaid on demand by the house of Thomson & +French of Rome.” + +“It is really true,” said M. de Boville. + +“Do you know the house of Thomson & French?” + +“Yes, I once had business to transact with it to the amount of 200,000 +francs; but since then I have not heard it mentioned.” + +“It is one of the best houses in Europe,” said Danglars, carelessly +throwing down the receipt on his desk. + +“And he had five millions in your hands alone! Why, this Count of Monte +Cristo must be a nabob?” + +“Indeed I do not know what he is; he has three unlimited credits—one on +me, one on Rothschild, one on Lafitte; and, you see,” he added +carelessly, “he has given me the preference, by leaving a balance of +100,000 francs.” + +M. de Boville manifested signs of extraordinary admiration. + +“I must visit him,” he said, “and obtain some pious grant from him.” + +“Oh, you may make sure of him; his charities alone amount to 20,000 +francs a month.” + +“It is magnificent! I will set before him the example of Madame de +Morcerf and her son.” + +“What example?” + +“They gave all their fortune to the hospitals.” + +“What fortune?” + +“Their own—M. de Morcerf’s, who is deceased.” + +“For what reason?” + +“Because they would not spend money so guiltily acquired.” + +“And what are they to live upon?” + +“The mother retires into the country, and the son enters the army.” + +50113m + + + +“Well, I must confess, these are scruples.” + +“I registered their deed of gift yesterday.” + +“And how much did they possess?” + +“Oh, not much—from twelve to thirteen hundred thousand francs. But to +return to our millions.” + +“Certainly,” said Danglars, in the most natural tone in the world. “Are +you then pressed for this money?” + +“Yes; for the examination of our cash takes place tomorrow.” + +“Tomorrow? Why did you not tell me so before? Why, it is as good as a +century! At what hour does the examination take place?” + +“At two o’clock.” + +“Send at twelve,” said Danglars, smiling. + +M. de Boville said nothing, but nodded his head, and took up the +portfolio. + +“Now I think of it, you can do better,” said Danglars. + +“How do you mean?” + +“The receipt of M. de Monte Cristo is as good as money; take it to +Rothschild’s or Lafitte’s, and they will take it off your hands at +once.” + +“What, though payable at Rome?” + +“Certainly; it will only cost you a discount of 5,000 or 6,000 francs.” + +The receiver started back. + +“_Ma foi!_” he said, “I prefer waiting till tomorrow. What a +proposition!” + +“I thought, perhaps,” said Danglars with supreme impertinence, “that +you had a deficiency to make up?” + +“Indeed,” said the receiver. + +“And if that were the case it would be worth while to make some +sacrifice.” + +“Thank you, no, sir.” + +“Then it will be tomorrow.” + +“Yes; but without fail.” + +“Ah, you are laughing at me; send tomorrow at twelve, and the bank +shall be notified.” + +“I will come myself.” + +“Better still, since it will afford me the pleasure of seeing you.” +They shook hands. + +“By the way,” said M. de Boville, “are you not going to the funeral of +poor Mademoiselle de Villefort, which I met on my road here?” + +“No,” said the banker; “I have appeared rather ridiculous since that +affair of Benedetto, so I remain in the background.” + +“Bah, you are wrong. How were you to blame in that affair?” + +“Listen—when one bears an irreproachable name, as I do, one is rather +sensitive.” + +“Everybody pities you, sir; and, above all, Mademoiselle Danglars!” + +“Poor Eugénie!” said Danglars; “do you know she is going to embrace a +religious life?” + +“No.” + +“Alas, it is unhappily but too true. The day after the event, she +decided on leaving Paris with a nun of her acquaintance; they are gone +to seek a very strict convent in Italy or Spain.” + +“Oh, it is terrible!” and M. de Boville retired with this exclamation, +after expressing acute sympathy with the father. But he had scarcely +left before Danglars, with an energy of action those can alone +understand who have seen Robert Macaire represented by Frédérick,24 +exclaimed: + +“Fool!” + +Then enclosing Monte Cristo’s receipt in a little pocket-book, he +added:—“Yes, come at twelve o’clock; I shall then be far away.” + +Then he double-locked his door, emptied all his drawers, collected +about fifty thousand francs in bank-notes, burned several papers, left +others exposed to view, and then commenced writing a letter which he +addressed: + +“To Madame la Baronne Danglars.” + +“I will place it on her table myself tonight,” he murmured. Then taking +a passport from his drawer he said,—“Good, it is available for two +months longer.” + + + + Chapter 105. The Cemetery of Père-Lachaise + +M. de Boville had indeed met the funeral procession which was taking +Valentine to her last home on earth. The weather was dull and stormy, a +cold wind shook the few remaining yellow leaves from the boughs of the +trees, and scattered them among the crowd which filled the boulevards. +M. de Villefort, a true Parisian, considered the cemetery of +Père-Lachaise alone worthy of receiving the mortal remains of a +Parisian family; there alone the corpses belonging to him would be +surrounded by worthy associates. He had therefore purchased a vault, +which was quickly occupied by members of his family. On the front of +the monument was inscribed: “The families of Saint-Méran and +Villefort,” for such had been the last wish expressed by poor Renée, +Valentine’s mother. The pompous procession therefore wended its way +towards Père-Lachaise from the Faubourg Saint-Honoré. Having crossed +Paris, it passed through the Faubourg du Temple, then leaving the +exterior boulevards, it reached the cemetery. More than fifty private +carriages followed the twenty mourning-coaches, and behind them more +than five hundred persons joined in the procession on foot. + +50117m + + + +These last consisted of all the young people whom Valentine’s death had +struck like a thunderbolt, and who, notwithstanding the raw chilliness +of the season, could not refrain from paying a last tribute to the +memory of the beautiful, chaste, and adorable girl, thus cut off in the +flower of her youth. + +As they left Paris, an equipage with four horses, at full speed, was +seen to draw up suddenly; it contained Monte Cristo. The count left the +carriage and mingled in the crowd who followed on foot. Château-Renaud +perceived him and immediately alighting from his _coupé_, joined him; +Beauchamp did the same. + +The count looked attentively through every opening in the crowd; he was +evidently watching for someone, but his search ended in disappointment. + +50119m + + + +“Where is Morrel?” he asked; “do either of these gentlemen know where +he is?” + +“We have already asked that question,” said Château-Renaud, “for none +of us has seen him.” + +The count was silent, but continued to gaze around him. At length they +arrived at the cemetery. The piercing eye of Monte Cristo glanced +through clusters of bushes and trees, and was soon relieved from all +anxiety, for seeing a shadow glide between the yew-trees, Monte Cristo +recognized him whom he sought. + +One funeral is generally very much like another in this magnificent +metropolis. Black figures are seen scattered over the long white +avenues; the silence of earth and heaven is alone broken by the noise +made by the crackling branches of hedges planted around the monuments; +then follows the melancholy chant of the priests, mingled now and then +with a sob of anguish, escaping from some woman concealed behind a mass +of flowers. + +The shadow Monte Cristo had noticed passed rapidly behind the tomb of +Abélard and Héloïse, placed itself close to the heads of the horses +belonging to the hearse, and following the undertaker’s men, arrived +with them at the spot appointed for the burial. Each person’s attention +was occupied. Monte Cristo saw nothing but the shadow, which no one +else observed. Twice the count left the ranks to see whether the object +of his interest had any concealed weapon beneath his clothes. When the +procession stopped, this shadow was recognized as Morrel, who, with his +coat buttoned up to his throat, his face livid, and convulsively +crushing his hat between his fingers, leaned against a tree, situated +on an elevation commanding the mausoleum, so that none of the funeral +details could escape his observation. + +Everything was conducted in the usual manner. A few men, the least +impressed of all by the scene, pronounced a discourse, some deploring +this premature death, others expatiating on the grief of the father, +and one very ingenious person quoting the fact that Valentine had +solicited pardon of her father for criminals on whom the arm of justice +was ready to fall—until at length they exhausted their stores of +metaphor and mournful speeches, elaborate variations on the stanzas of +Malherbe to Du Périer. + +Monte Cristo heard and saw nothing, or rather he only saw Morrel, whose +calmness had a frightful effect on those who knew what was passing in +his heart. + +“See,” said Beauchamp, pointing out Morrel to Debray. “What is he doing +up there?” And they called Château-Renaud’s attention to him. + +“How pale he is!” said Château-Renaud, shuddering. + +“He is cold,” said Debray. + +“Not at all,” said Château-Renaud, slowly; “I think he is violently +agitated. He is very susceptible.” + +“Bah,” said Debray; “he scarcely knew Mademoiselle de Villefort; you +said so yourself.” + +“True. Still I remember he danced three times with her at Madame de +Morcerf’s. Do you recollect that ball, count, where you produced such +an effect?” + +50121m + + + +“No, I do not,” replied Monte Cristo, without even knowing of what or +to whom he was speaking, so much was he occupied in watching Morrel, +who was holding his breath with emotion. + +“The discourse is over; farewell, gentlemen,” said the count, +unceremoniously. + +And he disappeared without anyone seeing whither he went. + +The funeral being over, the guests returned to Paris. Château-Renaud +looked for a moment for Morrel; but while they were watching the +departure of the count, Morrel had quitted his post, and +Château-Renaud, failing in his search, joined Debray and Beauchamp. + +Monte Cristo concealed himself behind a large tomb and awaited the +arrival of Morrel, who by degrees approached the tomb now abandoned by +spectators and workmen. Morrel threw a glance around, but before it +reached the spot occupied by Monte Cristo the latter had advanced yet +nearer, still unperceived. The young man knelt down. The count, with +outstretched neck and glaring eyes, stood in an attitude ready to +pounce upon Morrel upon the first occasion. Morrel bent his head till +it touched the stone, then clutching the grating with both hands, he +murmured: + +“Oh, Valentine!” + +The count’s heart was pierced by the utterance of these two words; he +stepped forward, and touching the young man’s shoulder, said: + +“I was looking for you, my friend.” Monte Cristo expected a burst of +passion, but he was deceived, for Morrel turning round, said calmly,— + +“You see I was praying.” The scrutinizing glance of the count searched +the young man from head to foot. He then seemed more easy. + +“Shall I drive you back to Paris?” he asked. + +“No, thank you.” + +“Do you wish anything?” + +“Leave me to pray.” + +The count withdrew without opposition, but it was only to place himself +in a situation where he could watch every movement of Morrel, who at +length arose, brushed the dust from his knees, and turned towards +Paris, without once looking back. He walked slowly down the Rue de la +Roquette. The count, dismissing his carriage, followed him about a +hundred paces behind. Maximilian crossed the canal and entered the Rue +Meslay by the boulevards. + +Five minutes after the door had been closed on Morrel’s entrance, it +was again opened for the count. Julie was at the entrance of the +garden, where she was attentively watching Penelon, who, entering with +zeal into his profession of gardener, was very busy grafting some +Bengal roses. “Ah, count,” she exclaimed, with the delight manifested +by every member of the family whenever he visited the Rue Meslay. + +“Maximilian has just returned, has he not, madame?” asked the count. + +50123m + + + +“Yes, I think I saw him pass; but pray, call Emmanuel.” + +“Excuse me, madame, but I must go up to Maximilian’s room this +instant,” replied Monte Cristo, “I have something of the greatest +importance to tell him.” + +“Go, then,” she said with a charming smile, which accompanied him until +he had disappeared. + +Monte Cristo soon ran up the staircase conducting from the ground floor +to Maximilian’s room; when he reached the landing he listened +attentively, but all was still. Like many old houses occupied by a +single family, the room door was panelled with glass; but it was +locked, Maximilian was shut in, and it was impossible to see what was +passing in the room, because a red curtain was drawn before the glass. +The count’s anxiety was manifested by a bright color which seldom +appeared on the face of that imperturbable man. + +“What shall I do!” he uttered, and reflected for a moment; “shall I +ring? No, the sound of a bell, announcing a visitor, will but +accelerate the resolution of one in Maximilian’s situation, and then +the bell would be followed by a louder noise.” + +Monte Cristo trembled from head to foot and as if his determination had +been taken with the rapidity of lightning, he struck one of the panes +of glass with his elbow; the glass was shivered to atoms, then +withdrawing the curtain he saw Morrel, who had been writing at his +desk, bound from his seat at the noise of the broken window. + +“I beg a thousand pardons,” said the count, “there is nothing the +matter, but I slipped down and broke one of your panes of glass with my +elbow. Since it is opened, I will take advantage of it to enter your +room; do not disturb yourself—do not disturb yourself!” + +And passing his hand through the broken glass, the count opened the +door. Morrel, evidently discomposed, came to meet Monte Cristo less +with the intention of receiving him than to exclude his entry. + +“_Ma foi_,” said Monte Cristo, rubbing his elbow, “it’s all your +servant’s fault; your stairs are so polished, it is like walking on +glass.” + +“Are you hurt, sir?” coldly asked Morrel. + +“I believe not. But what are you about there? You were writing.” + +“I?” + +“Your fingers are stained with ink.” + +“Ah, true, I was writing. I do sometimes, soldier though I am.” + +Monte Cristo advanced into the room; Maximilian was obliged to let him +pass, but he followed him. + +“You were writing?” said Monte Cristo with a searching look. + +“I have already had the honor of telling you I was,” said Morrel. + +The count looked around him. + +“Your pistols are beside your desk,” said Monte Cristo, pointing with +his finger to the pistols on the table. + +“I am on the point of starting on a journey,” replied Morrel +disdainfully. + +“My friend,” exclaimed Monte Cristo in a tone of exquisite sweetness. + +“Sir?” + +“My friend, my dear Maximilian, do not make a hasty resolution, I +entreat you.” + +“I make a hasty resolution?” said Morrel, shrugging his shoulders; “is +there anything extraordinary in a journey?” + +50125m + + + +“Maximilian,” said the count, “let us both lay aside the mask we have +assumed. You no more deceive me with that false calmness than I impose +upon you with my frivolous solicitude. You can understand, can you not, +that to have acted as I have done, to have broken that glass, to have +intruded on the solitude of a friend—you can understand that, to have +done all this, I must have been actuated by real uneasiness, or rather +by a terrible conviction. Morrel, you are going to destroy yourself!” + +“Indeed, count,” said Morrel, shuddering; “what has put this into your +head?” + +“I tell you that you are about to destroy yourself,” continued the +count, “and here is proof of what I say;” and, approaching the desk, he +removed the sheet of paper which Morrel had placed over the letter he +had begun, and took the latter in his hands. + +Morrel rushed forward to tear it from him, but Monte Cristo perceiving +his intention, seized his wrist with his iron grasp. + +“You wish to destroy yourself,” said the count; “you have written it.” + +“Well,” said Morrel, changing his expression of calmness for one of +violence—“well, and if I do intend to turn this pistol against myself, +who shall prevent me—who will dare prevent me? All my hopes are +blighted, my heart is broken, my life a burden, everything around me is +sad and mournful; earth has become distasteful to me, and human voices +distract me. It is a mercy to let me die, for if I live I shall lose my +reason and become mad. When, sir, I tell you all this with tears of +heartfelt anguish, can you reply that I am wrong, can you prevent my +putting an end to my miserable existence? Tell me, sir, could you have +the courage to do so?” + +“Yes, Morrel,” said Monte Cristo, with a calmness which contrasted +strangely with the young man’s excitement; “yes, I would do so.” + +“You?” exclaimed Morrel, with increasing anger and reproach—“you, who +have deceived me with false hopes, who have cheered and soothed me with +vain promises, when I might, if not have saved her, at least have seen +her die in my arms! You, who pretend to understand everything, even the +hidden sources of knowledge,—and who enact the part of a guardian angel +upon earth, and could not even find an antidote to a poison +administered to a young girl! Ah, sir, indeed you would inspire me with +pity, were you not hateful in my eyes.” + +“Morrel——” + +“Yes; you tell me to lay aside the mask, and I will do so, be +satisfied! When you spoke to me at the cemetery, I answered you—my +heart was softened; when you arrived here, I allowed you to enter. But +since you abuse my confidence, since you have devised a new torture +after I thought I had exhausted them all, then, Count of Monte Cristo +my pretended benefactor—then, Count of Monte Cristo, the universal +guardian, be satisfied, you shall witness the death of your friend;” +and Morrel, with a maniacal laugh, again rushed towards the pistols. + +“And I again repeat, you shall not commit suicide.” + +“Prevent me, then!” replied Morrel, with another struggle, which, like +the first, failed in releasing him from the count’s iron grasp. + +“I will prevent you.” + +50127m + + + +“And who are you, then, that arrogate to yourself this tyrannical right +over free and rational beings?” + +“Who am I?” repeated Monte Cristo. “Listen; I am the only man in the +world having the right to say to you, ‘Morrel, your father’s son shall +not die today;’” and Monte Cristo, with an expression of majesty and +sublimity, advanced with arms folded toward the young man, who, +involuntarily overcome by the commanding manner of this man, recoiled a +step. + +“Why do you mention my father?” stammered he; “why do you mingle a +recollection of him with the affairs of today?” + +“Because I am he who saved your father’s life when he wished to destroy +himself, as you do today—because I am the man who sent the purse to +your young sister, and the _Pharaon_ to old Morrel—because I am the +Edmond Dantès who nursed you, a child, on my knees.” + +Morrel made another step back, staggering, breathless, crushed; then +all his strength give way, and he fell prostrate at the feet of Monte +Cristo. Then his admirable nature underwent a complete and sudden +revulsion; he arose, rushed out of the room and to the stairs, +exclaiming energetically, “Julie, Julie—Emmanuel, Emmanuel!” + +Monte Cristo endeavored also to leave, but Maximilian would have died +rather than relax his hold of the handle of the door, which he closed +upon the count. Julie, Emmanuel, and some of the servants, ran up in +alarm on hearing the cries of Maximilian. Morrel seized their hands, +and opening the door exclaimed in a voice choked with sobs: + +“On your knees—on your knees—he is our benefactor—the saviour of our +father! He is——” + +He would have added “Edmond Dantès,” but the count seized his arm and +prevented him. + +Julie threw herself into the arms of the count; Emmanuel embraced him +as a guardian angel; Morrel again fell on his knees, and struck the +ground with his forehead. Then the iron-hearted man felt his heart +swell in his breast; a flame seemed to rush from his throat to his +eyes, he bent his head and wept. For a while nothing was heard in the +room but a succession of sobs, while the incense from their grateful +hearts mounted to heaven. Julie had scarcely recovered from her deep +emotion when she rushed out of the room, descended to the next floor, +ran into the drawing-room with childlike joy and raised the crystal +globe which covered the purse given by the unknown of the Allées de +Meilhan. Meanwhile, Emmanuel in a broken voice said to the count: + +“Oh, count, how could you, hearing us so often speak of our unknown +benefactor, seeing us pay such homage of gratitude and adoration to his +memory,—how could you continue so long without discovering yourself to +us? Oh, it was cruel to us, and—dare I say it?—to you also.” + +“Listen, my friends,” said the count—“I may call you so since we have +really been friends for the last eleven years—the discovery of this +secret has been occasioned by a great event which you must never know. +I wished to bury it during my whole life in my own bosom, but your +brother Maximilian wrested it from me by a violence he repents of now, +I am sure.” + +Then turning around, and seeing that Morrel, still on his knees, had +thrown himself into an armchair, he added in a low voice, pressing +Emmanuel’s hand significantly, “Watch over him.” + +“Why so?” asked the young man, surprised. + +“I cannot explain myself; but watch over him.” Emmanuel looked around +the room and caught sight of the pistols; his eyes rested on the +weapons, and he pointed to them. Monte Cristo bent his head. Emmanuel +went towards the pistols. + +“Leave them,” said Monte Cristo. Then walking towards Morrel, he took +his hand; the tumultuous agitation of the young man was succeeded by a +profound stupor. Julie returned, holding the silken purse in her hands, +while tears of joy rolled down her cheeks, like dewdrops on the rose. + +“Here is the relic,” she said; “do not think it will be less dear to us +now we are acquainted with our benefactor!” + +“My child,” said Monte Cristo, coloring, “allow me to take back that +purse? Since you now know my face, I wish to be remembered alone +through the affection I hope you will grant me. + +“Oh,” said Julie, pressing the purse to her heart, “no, no, I beseech +you do not take it, for some unhappy day you will leave us, will you +not?” + +“You have guessed rightly, madame,” replied Monte Cristo, smiling; “in +a week I shall have left this country, where so many persons who merit +the vengeance of Heaven lived happily, while my father perished of +hunger and grief.” + +While announcing his departure, the count fixed his eyes on Morrel, and +remarked that the words, “I shall have left this country,” had failed +to rouse him from his lethargy. He then saw that he must make another +struggle against the grief of his friend, and taking the hands of +Emmanuel and Julie, which he pressed within his own, he said with the +mild authority of a father: + +“My kind friends, leave me alone with Maximilian.” + +Julie saw the means offered of carrying off her precious relic, which +Monte Cristo had forgotten. She drew her husband to the door. “Let us +leave them,” she said. + +The count was alone with Morrel, who remained motionless as a statue. + +“Come,” said Monte-Cristo, touching his shoulder with his finger, “are +you a man again, Maximilian?” + +“Yes; for I begin to suffer again.” + +The count frowned, apparently in gloomy hesitation. + +“Maximilian, Maximilian,” he said, “the ideas you yield to are unworthy +of a Christian.” + +“Oh, do not fear, my friend,” said Morrel, raising his head, and +smiling with a sweet expression on the count; “I shall no longer +attempt my life.” + +“Then we are to have no more pistols—no more despair?” + +“No; I have found a better remedy for my grief than either a bullet or +a knife.” + +“Poor fellow, what is it?” + +“My grief will kill me of itself.” + +“My friend,” said Monte Cristo, with an expression of melancholy equal +to his own, “listen to me. One day, in a moment of despair like yours, +since it led to a similar resolution, I also wished to kill myself; one +day your father, equally desperate, wished to kill himself too. If +anyone had said to your father, at the moment he raised the pistol to +his head—if anyone had told me, when in my prison I pushed back the +food I had not tasted for three days—if anyone had said to either of us +then, ‘Live—the day will come when you will be happy, and will bless +life!’—no matter whose voice had spoken, we should have heard him with +the smile of doubt, or the anguish of incredulity,—and yet how many +times has your father blessed life while embracing you—how often have I +myself——” + +“Ah,” exclaimed Morrel, interrupting the count, “you had only lost your +liberty, my father had only lost his fortune, but I have lost +Valentine.” + +“Look at me,” said Monte Cristo, with that expression which sometimes +made him so eloquent and persuasive—“look at me. There are no tears in +my eyes, nor is there fever in my veins, yet I see you suffer—you, +Maximilian, whom I love as my own son. Well, does not this tell you +that in grief, as in life, there is always something to look forward to +beyond? Now, if I entreat, if I order you to live, Morrel, it is in the +conviction that one day you will thank me for having preserved your +life.” + +“Oh, heavens,” said the young man, “oh, heavens—what are you saying, +count? Take care. But perhaps you have never loved!” + +“Child!” replied the count. + +“I mean, as I love. You see, I have been a soldier ever since I +attained manhood. I reached the age of twenty-nine without loving, for +none of the feelings I before then experienced merit the appellation of +love. Well, at twenty-nine I saw Valentine; for two years I have loved +her, for two years I have seen written in her heart, as in a book, all +the virtues of a daughter and wife. Count, to possess Valentine would +have been a happiness too infinite, too ecstatic, too complete, too +divine for this world, since it has been denied me; but without +Valentine the earth is desolate.” + +“I have told you to hope,” said the count. + +“Then have a care, I repeat, for you seek to persuade me, and if you +succeed I should lose my reason, for I should hope that I could again +behold Valentine.” + +The count smiled. + +“My friend, my father,” said Morrel with excitement, “have a care, I +again repeat, for the power you wield over me alarms me. Weigh your +words before you speak, for my eyes have already become brighter, and +my heart beats strongly; be cautious, or you will make me believe in +supernatural agencies. I must obey you, though you bade me call forth +the dead or walk upon the water.” + +“Hope, my friend,” repeated the count. + +“Ah,” said Morrel, falling from the height of excitement to the abyss +of despair—“ah, you are playing with me, like those good, or rather +selfish mothers who soothe their children with honeyed words, because +their screams annoy them. No, my friend, I was wrong to caution you; do +not fear, I will bury my grief so deep in my heart, I will disguise it +so, that you shall not even care to sympathize with me. Adieu, my +friend, adieu!” + +“On the contrary,” said the count, “after this time you must live with +me—you must not leave me, and in a week we shall have left France +behind us.” + +“And you still bid me hope?” + +“I tell you to hope, because I have a method of curing you.” + +“Count, you render me sadder than before, if it be possible. You think +the result of this blow has been to produce an ordinary grief, and you +would cure it by an ordinary remedy—change of scene.” And Morrel +dropped his head with disdainful incredulity. + +“What can I say more?” asked Monte Cristo. “I have confidence in the +remedy I propose, and only ask you to permit me to assure you of its +efficacy.” + +“Count, you prolong my agony.” + +“Then,” said the count, “your feeble spirit will not even grant me the +trial I request? Come—do you know of what the Count of Monte Cristo is +capable? do you know that he holds terrestrial beings under his +control? nay, that he can almost work a miracle? Well, wait for the +miracle I hope to accomplish, or——” + +“Or?” repeated Morrel. + +“Or, take care, Morrel, lest I call you ungrateful.” + +“Have pity on me, count!” + +“I feel so much pity towards you, Maximilian, that—listen to me +attentively—if I do not cure you in a month, to the day, to the very +hour, mark my words, Morrel, I will place loaded pistols before you, +and a cup of the deadliest Italian poison—a poison more sure and prompt +than that which has killed Valentine.” + +“Will you promise me?” + +“Yes; for I am a man, and have suffered like yourself, and also +contemplated suicide; indeed, often since misfortune has left me I have +longed for the delights of an eternal sleep.” + +“But you are sure you will promise me this?” said Morrel, intoxicated. + +“I not only promise, but swear it!” said Monte Cristo extending his +hand. + +“In a month, then, on your honor, if I am not consoled, you will let me +take my life into my own hands, and whatever may happen you will not +call me ungrateful?” + +“In a month, to the day, the very hour and the date is a sacred one, +Maximilian. I do not know whether you remember that this is the 5th of +September; it is ten years today since I saved your father’s life, who +wished to die.” + +Morrel seized the count’s hand and kissed it; the count allowed him to +pay the homage he felt due to him. + +“In a month you will find on the table, at which we shall be then +sitting, good pistols and a delicious draught; but, on the other hand, +you must promise me not to attempt your life before that time.” + +“Oh, I also swear it!” + +Monte Cristo drew the young man towards him, and pressed him for some +time to his heart. “And now,” he said, “after today, you will come and +live with me; you can occupy Haydée’s apartment, and my daughter will +at least be replaced by my son.” + +“Haydée?” said Morrel, “what has become of her?” + +“She departed last night.” + +“To leave you?” + +“To wait for me. Hold yourself ready then to join me at the +Champs-Élysées, and lead me out of this house without anyone seeing my +departure.” + +Maximilian hung his head, and obeyed with childlike reverence. + + + + Chapter 106. Dividing the Proceeds + +The apartment on the first floor of the house in the Rue +Saint-Germain-des-Prés, where Albert de Morcerf had selected a home for +his mother, was let to a very mysterious person. This was a man whose +face the concierge himself had never seen, for in the winter his chin +was buried in one of the large red handkerchiefs worn by gentlemen’s +coachmen on a cold night, and in the summer he made a point of always +blowing his nose just as he approached the door. Contrary to custom, +this gentleman had not been watched, for as the report ran that he was +a person of high rank, and one who would allow no impertinent +interference, his _incognito_ was strictly respected. + +His visits were tolerably regular, though occasionally he appeared a +little before or after his time, but generally, both in summer and +winter, he took possession of his apartment about four o’clock, though +he never spent the night there. At half-past three in the winter the +fire was lighted by the discreet servant, who had the superintendence +of the little apartment, and in the summer ices were placed on the +table at the same hour. At four o’clock, as we have already stated, the +mysterious personage arrived. + +Twenty minutes afterwards a carriage stopped at the house, a lady +alighted in a black or dark blue dress, and always thickly veiled; she +passed like a shadow through the lodge, and ran upstairs without a +sound escaping under the touch of her light foot. No one ever asked her +where she was going. Her face, therefore, like that of the gentleman, +was perfectly unknown to the two concierges, who were perhaps +unequalled throughout the capital for discretion. We need not say she +stopped at the first floor. Then she tapped in a peculiar manner at a +door, which after being opened to admit her was again fastened, and +curiosity penetrated no farther. They used the same precautions in +leaving as in entering the house. The lady always left first, and as +soon as she had stepped into her carriage, it drove away, sometimes +towards the right hand, sometimes to the left; then about twenty +minutes afterwards the gentleman would also leave, buried in his cravat +or concealed by his handkerchief. + +The day after Monte Cristo had called upon Danglars, the mysterious +lodger entered at ten o’clock in the morning instead of four in the +afternoon. Almost directly afterwards, without the usual interval of +time, a cab arrived, and the veiled lady ran hastily upstairs. The door +opened, but before it could be closed, the lady exclaimed: + +“Oh, Lucien—oh, my friend!” + +The concierge therefore heard for the first time that the lodger’s name +was Lucien; still, as he was the very perfection of a door-keeper, he +made up his mind not to tell his wife. + +“Well, what is the matter, my dear?” asked the gentleman whose name the +lady’s agitation revealed; “tell me what is the matter.” + +“Oh, Lucien, can I confide in you?” + +“Of course, you know you can do so. But what can be the matter? Your +note of this morning has completely bewildered me. This +precipitation—this unusual appointment. Come, ease me of my anxiety, or +else frighten me at once.” + +“Lucien, a great event has happened!” said the lady, glancing +inquiringly at Lucien,—“M. Danglars left last night!” + +“Left?—M. Danglars left? Where has he gone?” + +“I do not know.” + +“What do you mean? Has he gone intending not to return?” + +“Undoubtedly;—at ten o’clock at night his horses took him to the +barrier of Charenton; there a post-chaise was waiting for him—he +entered it with his valet de chambre, saying that he was going to +Fontainebleau.” + +“Then what did you mean——” + +“Stay—he left a letter for me.” + +“A letter?” + +“Yes; read it.” + +And the baroness took from her pocket a letter which she gave to +Debray. Debray paused a moment before reading, as if trying to guess +its contents, or perhaps while making up his mind how to act, whatever +it might contain. No doubt his ideas were arranged in a few minutes, +for he began reading the letter which caused so much uneasiness in the +heart of the baroness, and which ran as follows: + +“‘Madame and most faithful wife.’” + +Debray mechanically stopped and looked at the baroness, whose face +became covered with blushes. + +“Read,” she said. + +Debray continued: + +“‘When you receive this, you will no longer have a husband. Oh, you +need not be alarmed, you will only have lost him as you have lost your +daughter; I mean that I shall be travelling on one of the thirty or +forty roads leading out of France. I owe you some explanations for my +conduct, and as you are a woman that can perfectly understand me, I +will give them. Listen, then. I received this morning five millions +which I paid away; almost directly afterwards another demand for the +same sum was presented to me; I put this creditor off till tomorrow and +I intend leaving today, to escape that tomorrow, which would be rather +too unpleasant for me to endure. You understand this, do you not, my +most precious wife? I say you understand this, because you are as +conversant with my affairs as I am; indeed, I think you understand them +better, since I am ignorant of what has become of a considerable +portion of my fortune, once very tolerable, while I am sure, madame, +that you know perfectly well. For women have infallible instincts; they +can even explain the marvellous by an algebraic calculation they have +invented; but I, who only understand my own figures, know nothing more +than that one day these figures deceived me. Have you admired the +rapidity of my fall? Have you been slightly dazzled at the sudden +fusion of my ingots? I confess I have seen nothing but the fire; let us +hope you have found some gold among the ashes. With this consoling +idea, I leave you, madame, and most prudent wife, without any +conscientious reproach for abandoning you; you have friends left, and +the ashes I have already mentioned, and above all the liberty I hasten +to restore to you. And here, madame, I must add another word of +explanation. So long as I hoped you were working for the good of our +house and for the fortune of our daughter, I philosophically closed my +eyes; but as you have transformed that house into a vast ruin I will +not be the foundation of another man’s fortune. You were rich when I +married you, but little respected. Excuse me for speaking so very +candidly, but as this is intended only for ourselves, I do not see why +I should weigh my words. I have augmented our fortune, and it has +continued to increase during the last fifteen years, till extraordinary +and unexpected catastrophes have suddenly overturned it,—without any +fault of mine, I can honestly declare. You, madame, have only sought to +increase your own, and I am convinced that you have succeeded. I leave +you, therefore, as I took you,—rich, but little respected. Adieu! I +also intend from this time to work on my own account. Accept my +acknowledgments for the example you have set me, and which I intend +following. + +“‘Your very devoted husband, + +“‘Baron Danglars.’” + +The baroness had watched Debray while he read this long and painful +letter, and saw him, notwithstanding his self-control, change color +once or twice. When he had ended the perusal, he folded the letter and +resumed his pensive attitude. + +“Well?” asked Madame Danglars, with an anxiety easy to be understood. + +“Well, madame?” unhesitatingly repeated Debray. + +“With what ideas does that letter inspire you?” + +“Oh, it is simple enough, madame; it inspires me with the idea that M. +Danglars has left suspiciously.” + +“Certainly; but is this all you have to say to me?” + +“I do not understand you,” said Debray with freezing coldness. + +“He is gone! Gone, never to return!” + +“Oh, madame, do not think that!” + +“I tell you he will never return. I know his character; he is +inflexible in any resolutions formed for his own interests. If he could +have made any use of me, he would have taken me with him; he leaves me +in Paris, as our separation will conduce to his benefit;—therefore he +has gone, and I am free forever,” added Madame Danglars, in the same +supplicating tone. + +Debray, instead of answering, allowed her to remain in an attitude of +nervous inquiry. + +“Well?” she said at length, “do you not answer me?” + +“I have but one question to ask you,—what do you intend to do?” + +“I was going to ask you,” replied the baroness with a beating heart. + +“Ah, then, you wish to ask advice of me?” + +“Yes; I do wish to ask your advice,” said Madame Danglars with anxious +expectation. + +“Then if you wish to take my advice,” said the young man coldly, “I +would recommend you to travel.” + +“To travel!” she murmured. + +“Certainly; as M. Danglars says, you are rich, and perfectly free. In +my opinion, a withdrawal from Paris is absolutely necessary after the +double catastrophe of Mademoiselle Danglars’ broken contract and M. +Danglars’ disappearance. The world will think you abandoned and poor, +for the wife of a bankrupt would never be forgiven, were she to keep up +an appearance of opulence. You have only to remain in Paris for about a +fortnight, telling the world you are abandoned, and relating the +details of this desertion to your best friends, who will soon spread +the report. Then you can quit your house, leaving your jewels and +giving up your jointure, and everyone’s mouth will be filled with +praises of your disinterestedness. They will know you are deserted, and +think you also poor, for I alone know your real financial position, and +am quite ready to give up my accounts as an honest partner.” + +The dread with which the pale and motionless baroness listened to this, +was equalled by the calm indifference with which Debray had spoken. + +“Deserted?” she repeated; “ah, yes, I am, indeed, deserted! You are +right, sir, and no one can doubt my position.” + +These were the only words that this proud and violently enamoured woman +could utter in response to Debray. + +50137m + + + +“But then you are rich,—very rich, indeed,” continued Debray, taking +out some papers from his pocket-book, which he spread upon the table. +Madame Danglars did not see them; she was engaged in stilling the +beatings of her heart, and restraining the tears which were ready to +gush forth. At length a sense of dignity prevailed, and if she did not +entirely master her agitation, she at least succeeded in preventing the +fall of a single tear. + +“Madame,” said Debray, “it is nearly six months since we have been +associated. You furnished a principal of 100,000 francs. Our +partnership began in the month of April. In May we commenced +operations, and in the course of the month gained 450,000 francs. In +June the profit amounted to 900,000. In July we added 1,700,000 +francs,—it was, you know, the month of the Spanish bonds. In August we +lost 300,000 francs at the beginning of the month, but on the 13th we +made up for it, and we now find that our accounts, reckoning from the +first day of partnership up to yesterday, when I closed them, showed a +capital of 2,400,000 francs, that is, 1,200,000 for each of us. Now, +madame,” said Debray, delivering up his accounts in the methodical +manner of a stockbroker, “there are still 80,000 francs, the interest +of this money, in my hands.” + +“But,” said the baroness, “I thought you never put the money out to +interest.” + +“Excuse me, madame,” said Debray coldly, “I had your permission to do +so, and I have made use of it. There are, then, 40,000 francs for your +share, besides the 100,000 you furnished me to begin with, making in +all 1,340,000 francs for your portion. Now, madame, I took the +precaution of drawing out your money the day before yesterday; it is +not long ago, you see, and I was in continual expectation of being +called on to deliver up my accounts. There is your money,—half in +bank-notes, the other half in checks payable to bearer. I say _there_, +for as I did not consider my house safe enough, or lawyers sufficiently +discreet, and as landed property carries evidence with it, and moreover +since you have no right to possess anything independent of your +husband, I have kept this sum, now your whole fortune, in a chest +concealed under that closet, and for greater security I myself +concealed it there. + +“Now, madame,” continued Debray, first opening the closet, then the +chest;—“now, madame, here are 800 notes of 1,000 francs each, +resembling, as you see, a large book bound in iron; to this I add a +certificate in the funds of 25,000 francs; then, for the odd cash, +making I think about 110,000 francs, here is a check upon my banker, +who, not being M. Danglars, will pay you the amount, you may rest +assured.” + +Madame Danglars mechanically took the check, the bond, and the heap of +bank-notes. This enormous fortune made no great appearance on the +table. Madame Danglars, with tearless eyes, but with her breast heaving +with concealed emotion, placed the bank-notes in her bag, put the +certificate and check into her pocket-book, and then, standing pale and +mute, awaited one kind word of consolation. + +But she waited in vain. + +“Now, madame,” said Debray, “you have a splendid fortune, an income of +about 60,000 livres a year, which is enormous for a woman who cannot +keep an establishment here for a year, at least. You will be able to +indulge all your fancies; besides, should you find your income +insufficient, you can, for the sake of the past, madame, make use of +mine; and I am ready to offer you all I possess, on loan.” + +“Thank you, sir—thank you,” replied the baroness; “you forget that what +you have just paid me is much more than a poor woman requires, who +intends for some time, at least, to retire from the world.” + +Debray was, for a moment, surprised, but immediately recovering +himself, he bowed with an air which seemed to say, “As you please, +madame.” + +Madame Danglars had until then, perhaps, hoped for something; but when +she saw the careless bow of Debray, and the glance by which it was +accompanied, together with his significant silence, she raised her +head, and without passion or violence or even hesitation, ran +downstairs, disdaining to address a last farewell to one who could thus +part from her. + +“Bah,” said Debray, when she had left, “these are fine projects! She +will remain at home, read novels, and speculate at cards, since she can +no longer do so on the Bourse.” + +Then taking up his account book, he cancelled with the greatest care +all the entries of the amounts he had just paid away. + +“I have 1,060,000 francs remaining,” he said. “What a pity Mademoiselle +de Villefort is dead! She suited me in every respect, and I would have +married her.” + +And he calmly waited until the twenty minutes had elapsed after Madame +Danglars’ departure before he left the house. During this time he +occupied himself in making figures, with his watch by his side. + +Asmodeus—that diabolical personage, who would have been created by +every fertile imagination if Le Sage had not acquired the priority in +his great masterpiece—would have enjoyed a singular spectacle, if he +had lifted up the roof of the little house in the Rue +Saint-Germain-des-Prés, while Debray was casting up his figures. + +Above the room in which Debray had been dividing two millions and a +half with Madame Danglars was another, inhabited by persons who have +played too prominent a part in the incidents we have related for their +appearance not to create some interest. + +Mercédès and Albert were in that room. + +Mercédès was much changed within the last few days; not that even in +her days of fortune she had ever dressed with the magnificent display +which makes us no longer able to recognize a woman when she appears in +a plain and simple attire; nor indeed, had she fallen into that state +of depression where it is impossible to conceal the garb of misery; no, +the change in Mercédès was that her eye no longer sparkled, her lips no +longer smiled, and there was now a hesitation in uttering the words +which formerly sprang so fluently from her ready wit. + +It was not poverty which had broken her spirit; it was not a want of +courage which rendered her poverty burdensome. Mercédès, although +deposed from the exalted position she had occupied, lost in the sphere +she had now chosen, like a person passing from a room splendidly +lighted into utter darkness, appeared like a queen, fallen from her +palace to a hovel, and who, reduced to strict necessity, could neither +become reconciled to the earthen vessels she was herself forced to +place upon the table, nor to the humble pallet which had become her +bed. + +The beautiful Catalane and noble countess had lost both her proud +glance and charming smile, because she saw nothing but misery around +her; the walls were hung with one of the gray papers which economical +landlords choose as not likely to show the dirt; the floor was +uncarpeted; the furniture attracted the attention to the poor attempt +at luxury; indeed, everything offended eyes accustomed to refinement +and elegance. + +Madame de Morcerf had lived there since leaving her house; the +continual silence of the spot oppressed her; still, seeing that Albert +continually watched her countenance to judge the state of her feelings, +she constrained herself to assume a monotonous smile of the lips alone, +which, contrasted with the sweet and beaming expression that usually +shone from her eyes, seemed like “moonlight on a statue,”—yielding +light without warmth. + +Albert, too, was ill at ease; the remains of luxury prevented him from +sinking into his actual position. If he wished to go out without +gloves, his hands appeared too white; if he wished to walk through the +town, his boots seemed too highly polished. Yet these two noble and +intelligent creatures, united by the indissoluble ties of maternal and +filial love, had succeeded in tacitly understanding one another, and +economizing their stores, and Albert had been able to tell his mother +without extorting a change of countenance: + +“Mother, we have no more money.” + +50141m + + + +Mercédès had never known misery; she had often, in her youth, spoken of +poverty, but between want and necessity, those synonymous words, there +is a wide difference. + +Amongst the Catalans, Mercédès wished for a thousand things, but still +she never really wanted any. So long as the nets were good, they caught +fish; and so long as they sold their fish, they were able to buy twine +for new nets. And then, shut out from friendship, having but one +affection, which could not be mixed up with her ordinary pursuits, she +thought of herself—of no one but herself. Upon the little she earned +she lived as well as she could; now there were two to be supported, and +nothing to live upon. + +Winter approached. Mercédès had no fire in that cold and naked +room—she, who was accustomed to stoves which heated the house from the +hall to the boudoir; she had not even one little flower—she whose +apartment had been a conservatory of costly exotics. But she had her +son. Hitherto the excitement of fulfilling a duty had sustained them. +Excitement, like enthusiasm, sometimes renders us unconscious to the +things of earth. But the excitement had calmed down, and they felt +themselves obliged to descend from dreams to reality; after having +exhausted the ideal, they found they must talk of the actual. + +“Mother,” exclaimed Albert, just as Madame Danglars was descending the +stairs, “let us reckon our riches, if you please; I want capital to +build my plans upon.” + +“Capital—nothing!” replied Mercédès with a mournful smile. + +“No, mother,—capital 3,000 francs. And I have an idea of our leading a +delightful life upon this 3,000 francs.” + +“Child!” sighed Mercédès. + +“Alas, dear mother,” said the young man, “I have unhappily spent too +much of your money not to know the value of it. These 3,000 francs are +enormous, and I intend building upon this foundation a miraculous +certainty for the future.” + +“You say this, my dear boy; but do you think we ought to accept these +3,000 francs?” said Mercédès, coloring. + +“I think so,” answered Albert in a firm tone. “We will accept them the +more readily, since we have them not here; you know they are buried in +the garden of the little house in the Allées de Meilhan, at Marseilles. +With 200 francs we can reach Marseilles.” + +“With 200 francs?—are you sure, Albert?” + +“Oh, as for that, I have made inquiries respecting the diligences and +steamboats, and my calculations are made. You will take your place in +the _coupé_ to Châlons. You see, mother, I treat you handsomely for +thirty-five francs.” + +Albert then took a pen, and wrote: + + + Frs. _Coupé_, + thirty-five + francs........ + .............. + ........ 35. + From Châlons + to Lyons you + will go on by + the + steamboat.. + 6. From Lyons + to Avignon + (still by + steamboat).... + ......... 16. + From Avignon + to Marseilles, + seven + francs........ + ....... 7. + Expenses on + the road, + about fifty + francs........ + ....... 50. + Total......... + .............. + .............. + ............ + 114 frs. + +“Let us put down 120,” added Albert, smiling. “You see I am generous, +am I not, mother?” + +“But you, my poor child?” + +“I? do you not see that I reserve eighty francs for myself? A young man +does not require luxuries; besides, I know what travelling is.” + +“With a post-chaise and valet de chambre?” + +“Any way, mother.” + +“Well, be it so. But these 200 francs?” + +“Here they are, and 200 more besides. See, I have sold my watch for 100 +francs, and the guard and seals for 300. How fortunate that the +ornaments were worth more than the watch. Still the same story of +superfluities! Now I think we are rich, since instead of the 114 francs +we require for the journey we find ourselves in possession of 250.” + +“But we owe something in this house?” + +“Thirty francs; but I pay that out of my 150 francs,—that is +understood,—and as I require only eighty francs for my journey, you see +I am overwhelmed with luxury. But that is not all. What do you say to +this, mother?” + +And Albert took out of a little pocket-book with golden clasps, a +remnant of his old fancies, or perhaps a tender souvenir from one of +the mysterious and veiled ladies who used to knock at his little +door,—Albert took out of this pocket-book a note of 1,000 francs. + +“What is this?” asked Mercédès. + +“A thousand francs.” + +“But whence have you obtained them?” + +“Listen to me, mother, and do not yield too much to agitation.” And +Albert, rising, kissed his mother on both cheeks, then stood looking at +her. “You cannot imagine, mother, how beautiful I think you!” said the +young man, impressed with a profound feeling of filial love. “You are, +indeed, the most beautiful and most noble woman I ever saw!” + +“Dear child!” said Mercédès, endeavoring in vain to restrain a tear +which glistened in the corner of her eye. “Indeed, you only wanted +misfortune to change my love for you to admiration. I am not unhappy +while I possess my son!” + +“Ah, just so,” said Albert; “here begins the trial. Do you know the +decision we have come to, mother?” + +“Have we come to any?” + +“Yes; it is decided that you are to live at Marseilles, and that I am +to leave for Africa, where I will earn for myself the right to use the +name I now bear, instead of the one I have thrown aside.” Mercédès +sighed. “Well, mother, I yesterday engaged myself as substitute in the +Spahis,”25 added the young man, lowering his eyes with a certain +feeling of shame, for even he was unconscious of the sublimity of his +self-abasement. “I thought my body was my own, and that I might sell +it. I yesterday took the place of another. I sold myself for more than +I thought I was worth,” he added, attempting to smile; “I fetched 2,000 +francs.” + +“Then these 1,000 francs——” said Mercédès, shuddering. + +“Are the half of the sum, mother; the other will be paid in a year.” + +Mercédès raised her eyes to heaven with an expression it would be +impossible to describe, and tears, which had hitherto been restrained, +now yielded to her emotion, and ran down her cheeks. + +“The price of his blood!” she murmured. + +“Yes, if I am killed,” said Albert, laughing. “But I assure you, +mother, I have a strong intention of defending my person, and I never +felt half so strong an inclination to live as I do now.” + +“Merciful Heavens!” + +“Besides, mother, why should you make up your mind that I am to be +killed? Has Lamoricière, that Ney of the South, been killed? Has +Changarnier been killed? Has Bedeau been killed? Has Morrel, whom we +know, been killed? Think of your joy, mother, when you see me return +with an embroidered uniform! I declare, I expect to look magnificent in +it, and chose that regiment only from vanity.” + +Mercédès sighed while endeavoring to smile; the devoted mother felt +that she ought not to allow the whole weight of the sacrifice to fall +upon her son. + +“Well, now you understand, mother!” continued Albert; “here are more +than 4,000 francs settled on you; upon these you can live at least two +years.” + +“Do you think so?” said Mercédès. + +These words were uttered in so mournful a tone that their real meaning +did not escape Albert; he felt his heart beat, and taking his mother’s +hand within his own he said, tenderly: + +“Yes, you will live!” + +“I shall live!—then you will not leave me, Albert?” + +“Mother, I must go,” said Albert in a firm, calm voice; “you love me +too well to wish me to remain useless and idle with you; besides, I +have signed.” + +50145m + + + +“You will obey your own wish and the will of Heaven!” + +“Not my own wish, mother, but reason—necessity. Are we not two +despairing creatures? What is life to you?—Nothing. What is life to +me?—Very little without you, mother; for believe me, but for you I +should have ceased to live on the day I doubted my father and renounced +his name. Well, I will live, if you promise me still to hope; and if +you grant me the care of your future prospects, you will redouble my +strength. Then I will go to the governor of Algeria; he has a royal +heart, and is essentially a soldier; I will tell him my gloomy story. I +will beg him to turn his eyes now and then towards me, and if he keep +his word and interest himself for me, in six months I shall be an +officer, or dead. If I am an officer, your fortune is certain, for I +shall have money enough for both, and, moreover, a name we shall both +be proud of, since it will be our own. If I am killed—well then mother, +you can also die, and there will be an end of our misfortunes.” + +“It is well,” replied Mercédès, with her eloquent glance; “you are +right, my love; let us prove to those who are watching our actions that +we are worthy of compassion.” + +“But let us not yield to gloomy apprehensions,” said the young man; “I +assure you we are, or rather we shall be, very happy. You are a woman +at once full of spirit and resignation; I have become simple in my +tastes, and am without passion, I hope. Once in service, I shall be +rich—once in M. Dantès’ house, you will be at rest. Let us strive, I +beseech you,—let us strive to be cheerful.” + +“Yes, let us strive, for you ought to live, and to be happy, Albert.” + +“And so our division is made, mother,” said the young man, affecting +ease of mind. “We can now part; come, I shall engage your passage.” + +“And you, my dear boy?” + +“I shall stay here for a few days longer; we must accustom ourselves to +parting. I want recommendations and some information relative to +Africa. I will join you again at Marseilles.” + +“Well, be it so—let us part,” said Mercédès, folding around her +shoulders the only shawl she had taken away, and which accidentally +happened to be a valuable black cashmere. Albert gathered up his papers +hastily, rang the bell to pay the thirty francs he owed to the +landlord, and offering his arm to his mother, they descended the +stairs. + +Someone was walking down before them, and this person, hearing the +rustling of a silk dress, turned around. “Debray!” muttered Albert. + +“You, Morcerf?” replied the secretary, resting on the stairs. Curiosity +had vanquished the desire of preserving his _incognito_, and he was +recognized. It was, indeed, strange in this unknown spot to find the +young man whose misfortunes had made so much noise in Paris. + +“Morcerf!” repeated Debray. Then noticing in the dim light the still +youthful and veiled figure of Madame de Morcerf: + +“Pardon me,” he added with a smile, “I leave you, Albert.” Albert +understood his thoughts. + +“Mother,” he said, turning towards Mercédès, “this is M. Debray, +secretary of the Minister for the Interior, once a friend of mine.” + +“How once?” stammered Debray; “what do you mean?” + +“I say so, M. Debray, because I have no friends now, and I ought not to +have any. I thank you for having recognized me, sir.” Debray stepped +forward, and cordially pressed the hand of his interlocutor. + +“Believe me, dear Albert,” he said, with all the emotion he was capable +of feeling,—“believe me, I feel deeply for your misfortunes, and if in +any way I can serve you, I am yours.” + +“Thank you, sir,” said Albert, smiling. “In the midst of our +misfortunes, we are still rich enough not to require assistance from +anyone. We are leaving Paris, and when our journey is paid, we shall +have 5,000 francs left.” + +The blood mounted to the temples of Debray, who held a million in his +pocket-book, and unimaginative as he was he could not help reflecting +that the same house had contained two women, one of whom, justly +dishonored, had left it poor with 1,500,000 francs under her cloak, +while the other, unjustly stricken, but sublime in her misfortune, was +yet rich with a few deniers. This parallel disturbed his usual +politeness, the philosophy he witnessed appalled him, he muttered a few +words of general civility and ran downstairs. + +That day the minister’s clerks and the subordinates had a great deal to +put up with from his ill-humor. But that same night, he found himself +the possessor of a fine house, situated on the Boulevard de la +Madeleine, and an income of 50,000 livres. + +The next day, just as Debray was signing the deed, that is about five +o’clock in the afternoon, Madame de Morcerf, after having +affectionately embraced her son, entered the _coupé_ of the diligence, +which closed upon her. + +A man was hidden in Lafitte’s banking-house, behind one of the little +arched windows which are placed above each desk; he saw Mercédès enter +the diligence, and he also saw Albert withdraw. Then he passed his hand +across his forehead, which was clouded with doubt. + +“Alas,” he exclaimed, “how can I restore the happiness I have taken +away from these poor innocent creatures? God help me!” + + + + Chapter 107. The Lions’ Den + +One division of La Force, in which the most dangerous and desperate +prisoners are confined, is called the court of Saint-Bernard. The +prisoners, in their expressive language, have named it the “Lions’ +Den,” probably because the captives possess teeth which frequently gnaw +the bars, and sometimes the keepers also. It is a prison within a +prison; the walls are double the thickness of the rest. The gratings +are every day carefully examined by jailers, whose herculean +proportions and cold pitiless expression prove them to have been chosen +to reign over their subjects for their superior activity and +intelligence. + +The courtyard of this quarter is enclosed by enormous walls, over which +the sun glances obliquely, when it deigns to penetrate into this gulf +of moral and physical deformity. On this paved yard are to be +seen,—pacing to and fro from morning till night, pale, careworn, and +haggard, like so many shadows,—the men whom justice holds beneath the +steel she is sharpening. There, crouched against the side of the wall +which attracts and retains the most heat, they may be seen sometimes +talking to one another, but more frequently alone, watching the door, +which sometimes opens to call forth one from the gloomy assemblage, or +to throw in another outcast from society. + +The court of Saint-Bernard has its own particular apartment for the +reception of guests; it is a long rectangle, divided by two upright +gratings placed at a distance of three feet from one another to prevent +a visitor from shaking hands with or passing anything to the prisoners. +It is a wretched, damp, nay, even horrible spot, more especially when +we consider the agonizing conferences which have taken place between +those iron bars. And yet, frightful though this spot may be, it is +looked upon as a kind of paradise by the men whose days are numbered; +it is so rare for them to leave the Lions’ Den for any other place than +the barrier Saint-Jacques, the galleys! or solitary confinement. + +In the court which we have attempted to describe, and from which a damp +vapor was rising, a young man with his hands in his pockets, who had +excited much curiosity among the inhabitants of the “Den,” might be +seen walking. The cut of his clothes would have made him pass for an +elegant man, if those clothes had not been torn to shreds; still they +did not show signs of wear, and the fine cloth, beneath the careful +hands of the prisoner, soon recovered its gloss in the parts which were +still perfect, for the wearer tried his best to make it assume the +appearance of a new coat. He bestowed the same attention upon the +cambric front of a shirt, which had considerably changed in color since +his entrance into the prison, and he polished his varnished boots with +the corner of a handkerchief embroidered with initials surmounted by a +coronet. + +Some of the inmates of the “Lions’ Den” were watching the operations of +the prisoner’s toilet with considerable interest. + +“See, the prince is pluming himself,” said one of the thieves. + +“He’s a fine looking fellow,” said another; “if he had only a comb and +hair-grease, he’d take the shine off the gentlemen in white kids.” + +“His coat looks nearly new, and his boots are brilliant. It is pleasant +to have such well-dressed brethren; and those gendarmes behaved +shamefully. What jealousy; to tear such clothes!” + +“He looks like a big-bug,” said another; “dresses in fine style. And, +then, to be here so young! Oh, what larks!” + +Meanwhile the object of this hideous admiration approached the wicket, +against which one of the keepers was leaning. + +“Come, sir,” he said, “lend me twenty francs; you will soon be paid; +you run no risks with me. Remember, I have relations who possess more +millions than you have deniers. Come, I beseech you, lend me twenty +francs, so that I may buy a dressing-gown; it is intolerable always to +be in a coat and boots! And what a coat, sir, for a prince of the +Cavalcanti!” + +The keeper turned his back, and shrugged his shoulders; he did not even +laugh at what would have caused anyone else to do so; he had heard so +many utter the same things,—indeed, he heard nothing else. + +“Come,” said Andrea, “you are a man void of compassion; I’ll have you +turned out.” + +This made the keeper turn around, and he burst into a loud laugh. The +prisoners then approached and formed a circle. + +“I tell you that with that wretched sum,” continued Andrea, “I could +obtain a coat, and a room in which to receive the illustrious visitor I +am daily expecting.” + +“Of course—of course,” said the prisoners;—“anyone can see he’s a +gentleman!” + +“Well, then, lend him the twenty francs,” said the keeper, leaning on +the other shoulder; “surely you will not refuse a comrade!” + +50151m + + + +“I am no comrade of these people,” said the young man, proudly, “you +have no right to insult me thus.” + +The thieves looked at one another with low murmurs, and a storm +gathered over the head of the aristocratic prisoner, raised less by his +own words than by the manner of the keeper. The latter, sure of +quelling the tempest when the waves became too violent, allowed them to +rise to a certain pitch that he might be revenged on the importunate +Andrea, and besides it would afford him some recreation during the long +day. + +The thieves had already approached Andrea, some screaming, _“La +savate—La savate!”_26 a cruel operation, which consists in cuffing a +comrade who may have fallen into disgrace, not with an old shoe, but +with an iron-heeled one. Others proposed the _anguille_, another kind +of recreation, in which a handkerchief is filled with sand, pebbles, +and two-sous pieces, when they have them, which the wretches beat like +a flail over the head and shoulders of the unhappy sufferer. + +“Let us horsewhip the fine gentleman!” said others. + +But Andrea, turning towards them, winked his eyes, rolled his tongue +around his cheeks, and smacked his lips in a manner equivalent to a +hundred words among the bandits when forced to be silent. It was a +Masonic sign Caderousse had taught him. He was immediately recognized +as one of them; the handkerchief was thrown down, and the iron-heeled +shoe replaced on the foot of the wretch to whom it belonged. + +Some voices were heard to say that the gentleman was right; that he +intended to be civil, in his way, and that they would set the example +of liberty of conscience,—and the mob retired. The keeper was so +stupefied at this scene that he took Andrea by the hands and began +examining his person, attributing the sudden submission of the inmates +of the Lions’ Den to something more substantial than mere fascination. + +Andrea made no resistance, although he protested against it. Suddenly a +voice was heard at the wicket. + +“Benedetto!” exclaimed an inspector. The keeper relaxed his hold. + +“I am called,” said Andrea. + +“To the visitors’ room!” said the same voice. + +“You see someone pays me a visit. Ah, my dear sir, you will see whether +a Cavalcanti is to be treated like a common person!” + +And Andrea, gliding through the court like a black shadow, rushed out +through the wicket, leaving his comrades, and even the keeper, lost in +wonder. Certainly a call to the visitors’ room had scarcely astonished +Andrea less than themselves, for the wily youth, instead of making use +of his privilege of waiting to be claimed on his entry into La Force, +had maintained a rigid silence. + +50153m + + + +“Everything,” he said, “proves me to be under the protection of some +powerful person,—this sudden fortune, the facility with which I have +overcome all obstacles, an unexpected family and an illustrious name +awarded to me, gold showered down upon me, and the most splendid +alliances about to be entered into. An unhappy lapse of fortune and the +absence of my protector have cast me down, certainly, but not forever. +The hand which has retreated for a while will be again stretched forth +to save me at the very moment when I shall think myself sinking into +the abyss. Why should I risk an imprudent step? It might alienate my +protector. He has two means of extricating me from this dilemma,—the +one by a mysterious escape, managed through bribery; the other by +buying off my judges with gold. I will say and do nothing until I am +convinced that he has quite abandoned me, and then——” + +Andrea had formed a plan which was tolerably clever. The unfortunate +youth was intrepid in the attack, and rude in the defence. He had borne +with the public prison, and with privations of all sorts; still, by +degrees nature, or rather custom, had prevailed, and he suffered from +being naked, dirty, and hungry. It was at this moment of discomfort +that the inspector’s voice called him to the visiting-room. Andrea felt +his heart leap with joy. It was too soon for a visit from the examining +magistrate, and too late for one from the director of the prison, or +the doctor; it must, then, be the visitor he hoped for. Behind the +grating of the room into which Andrea had been led, he saw, while his +eyes dilated with surprise, the dark and intelligent face of M. +Bertuccio, who was also gazing with sad astonishment upon the iron +bars, the bolted doors, and the shadow which moved behind the other +grating. + +“Ah,” said Andrea, deeply affected. + +“Good morning, Benedetto,” said Bertuccio, with his deep, hollow voice. + +“You—you?” said the young man, looking fearfully around him. + +“Do you not recognize me, unhappy child?” + +“Silence,—be silent!” said Andrea, who knew the delicate sense of +hearing possessed by the walls; “for Heaven’s sake, do not speak so +loud!” + +“You wish to speak with me alone, do you not?” said Bertuccio. + +“Oh, yes.” + +“That is well.” + +And Bertuccio, feeling in his pocket, signed to a keeper whom he saw +through the window of the wicket. + +“Read?” he said. + +“What is that?” asked Andrea. + +“An order to conduct you to a room, and to leave you there to talk to +me.” + +“Oh,” cried Andrea, leaping with joy. Then he mentally added,—“Still my +unknown protector! I am not forgotten. They wish for secrecy, since we +are to converse in a private room. I understand, Bertuccio has been +sent by my protector.” + +The keeper spoke for a moment with an official, then opened the iron +gates and conducted Andrea to a room on the first floor. The room was +whitewashed, as is the custom in prisons, but it looked quite brilliant +to a prisoner, though a stove, a bed, a chair, and a table formed the +whole of its sumptuous furniture. Bertuccio sat down upon the chair, +Andrea threw himself upon the bed; the keeper retired. + +“Now,” said the steward, “what have you to tell me?” + +“And you?” said Andrea. + +“You speak first.” + +“Oh, no. You must have much to tell me, since you have come to seek +me.” + +50155m + + + +“Well, be it so. You have continued your course of villany; you have +robbed—you have assassinated.” + +“Well, I should say! If you had me taken to a private room only to tell +me this, you might have saved yourself the trouble. I know all these +things. But there are some with which, on the contrary, I am not +acquainted. Let us talk of those, if you please. Who sent you?” + +“Come, come, you are going on quickly, M. Benedetto!” + +“Yes, and to the point. Let us dispense with useless words. Who sends +you?” + +“No one.” + +“How did you know I was in prison?” + +“I recognized you, some time since, as the insolent dandy who so +gracefully mounted his horse in the Champs-Élysées.” + +“Oh, the Champs-Élysées? Ah, yes; we burn, as they say at the game of +pincette. The Champs-Élysées? Come, let us talk a little about my +father.” + +“Who, then, am I?” + +“You, sir?—you are my adopted father. But it was not you, I presume, +who placed at my disposal 100,000 francs, which I spent in four or five +months; it was not you who manufactured an Italian gentleman for my +father; it was not you who introduced me into the world, and had me +invited to a certain dinner at Auteuil, which I fancy I am eating at +this moment, in company with the most distinguished people in +Paris—amongst the rest with a certain procureur, whose acquaintance I +did very wrong not to cultivate, for he would have been very useful to +me just now;—it was not you, in fact, who bailed me for one or two +millions, when the fatal discovery of my little secret took place. +Come, speak, my worthy Corsican, speak!” + +“What do you wish me to say?” + +“I will help you. You were speaking of the Champs-Élysées just now, +worthy foster-father.” + +“Well?” + +“Well, in the Champs-Élysées there resides a very rich gentleman.” + +“At whose house you robbed and murdered, did you not?” + +“I believe I did.” + +“The Count of Monte Cristo?” + +“’Tis you who have named him, as M. Racine says. Well, am I to rush +into his arms, and strain him to my heart, crying, ‘My father, my +father!’ like Monsieur Pixérécourt.”27 + +“Do not let us jest,” gravely replied Bertuccio, “and dare not to utter +that name again as you have pronounced it.” + +“Bah,” said Andrea, a little overcome, by the solemnity of Bertuccio’s +manner, “why not?” + +“Because the person who bears it is too highly favored by Heaven to be +the father of such a wretch as you.” + +“Oh, these are fine words.” + +“And there will be fine doings, if you do not take care.” + +“Menaces—I do not fear them. I will say——” + +“Do you think you are engaged with a pygmy like yourself?” said +Bertuccio, in so calm a tone, and with so steadfast a look, that Andrea +was moved to the very soul. “Do you think you have to do with +galley-slaves, or novices in the world? Benedetto, you are fallen into +terrible hands; they are ready to open for you—make use of them. Do not +play with the thunderbolt they have laid aside for a moment, but which +they can take up again instantly, if you attempt to intercept their +movements.” + +50157m + + + +“My father—I will know who my father is,” said the obstinate youth; “I +will perish if I must, but I _will_ know it. What does scandal signify +to me? What possessions, what reputation, what ‘pull,’ as Beauchamp +says,—have I? You great people always lose something by scandal, +notwithstanding your millions. Come, who is my father?” + +“I came to tell you.” + +“Ah,” cried Benedetto, his eyes sparkling with joy. Just then the door +opened, and the jailer, addressing himself to Bertuccio, said: + +“Excuse me, sir, but the examining magistrate is waiting for the +prisoner.” + +“And so closes our interview,” said Andrea to the worthy steward; “I +wish the troublesome fellow were at the devil!” + +“I will return tomorrow,” said Bertuccio. + +“Good! Gendarmes, I am at your service. Ah, sir, do leave a few crowns +for me at the gate that I may have some things I am in need of!” + +“It shall be done,” replied Bertuccio. + +Andrea extended his hand; Bertuccio kept his own in his pocket, and +merely jingled a few pieces of money. + +“That’s what I mean,” said Andrea, endeavoring to smile, quite overcome +by the strange tranquillity of Bertuccio. + +“Can I be deceived?” he murmured, as he stepped into the oblong and +grated vehicle which they call “the salad basket.” + +“Never mind, we shall see! Tomorrow, then!” he added, turning towards +Bertuccio. + +“Tomorrow!” replied the steward. + + + + Chapter 108. The Judge + +We remember that the Abbé Busoni remained alone with Noirtier in the +chamber of death, and that the old man and the priest were the sole +guardians of the young girl’s body. Perhaps it was the Christian +exhortations of the abbé, perhaps his kind charity, perhaps his +persuasive words, which had restored the courage of Noirtier, for ever +since he had conversed with the priest his violent despair had yielded +to a calm resignation which surprised all who knew his excessive +affection for Valentine. + +M. de Villefort had not seen his father since the morning of the death. +The whole establishment had been changed; another valet was engaged for +himself, a new servant for Noirtier, two women had entered Madame de +Villefort’s service,—in fact, everywhere, to the concierge and +coachmen, new faces were presented to the different masters of the +house, thus widening the division which had always existed between the +members of the same family. The assizes, also, were about to begin, and +Villefort, shut up in his room, exerted himself with feverish anxiety +in drawing up the case against the murderer of Caderousse. This affair, +like all those in which the Count of Monte Cristo had interfered, +caused a great sensation in Paris. The proofs were certainly not +convincing, since they rested upon a few words written by an escaped +galley-slave on his death-bed, and who might have been actuated by +hatred or revenge in accusing his companion. But the mind of the +procureur was made up; he felt assured that Benedetto was guilty, and +he hoped by his skill in conducting this aggravated case to flatter his +self-love, which was about the only vulnerable point left in his frozen +heart. + +The case was therefore prepared owing to the incessant labor of +Villefort, who wished it to be the first on the list in the coming +assizes. He had been obliged to seclude himself more than ever, to +evade the enormous number of applications presented to him for the +purpose of obtaining tickets of admission to the court on the day of +trial. And then so short a time had elapsed since the death of poor +Valentine, and the gloom which overshadowed the house was so recent, +that no one wondered to see the father so absorbed in his professional +duties, which were the only means he had of dissipating his grief. + +Once only had Villefort seen his father; it was the day after that upon +which Bertuccio had paid his second visit to Benedetto, when the latter +was to learn his father’s name. The magistrate, harassed and fatigued, +had descended to the garden of his house, and in a gloomy mood, similar +to that in which Tarquin lopped off the tallest poppies, he began +knocking off with his cane the long and dying branches of the +rose-trees, which, placed along the avenue, seemed like the spectres of +the brilliant flowers which had bloomed in the past season. + +More than once he had reached that part of the garden where the famous +boarded gate stood overlooking the deserted enclosure, always returning +by the same path, to begin his walk again, at the same pace and with +the same gesture, when he accidentally turned his eyes towards the +house, whence he heard the noisy play of his son, who had returned from +school to spend the Sunday and Monday with his mother. + +While doing so, he observed M. Noirtier at one of the open windows, +where the old man had been placed that he might enjoy the last rays of +the sun which yet yielded some heat, and was now shining upon the dying +flowers and red leaves of the creeper which twined around the balcony. + +The eye of the old man was riveted upon a spot which Villefort could +scarcely distinguish. His glance was so full of hate, of ferocity, and +savage impatience, that Villefort turned out of the path he had been +pursuing, to see upon what person this dark look was directed. + +Then he saw beneath a thick clump of linden-trees, which were nearly +divested of foliage, Madame de Villefort sitting with a book in her +hand, the perusal of which she frequently interrupted to smile upon her +son, or to throw back his elastic ball, which he obstinately threw from +the drawing-room into the garden. + +Villefort became pale; he understood the old man’s meaning. + +Noirtier continued to look at the same object, but suddenly his glance +was transferred from the wife to the husband, and Villefort himself had +to submit to the searching investigation of eyes, which, while changing +their direction and even their language, had lost none of their +menacing expression. Madame de Villefort, unconscious of the passions +that exhausted their fire over her head, at that moment held her son’s +ball, and was making signs to him to reclaim it with a kiss. Edward +begged for a long while, the maternal kiss probably not offering +sufficient recompense for the trouble he must take to obtain it; +however at length he decided, leaped out of the window into a cluster +of heliotropes and daisies, and ran to his mother, his forehead +streaming with perspiration. Madame de Villefort wiped his forehead, +pressed her lips upon it, and sent him back with the ball in one hand +and some bonbons in the other. + +Villefort, drawn by an irresistible attraction, like that of the bird +to the serpent, walked towards the house. As he approached it, +Noirtier’s gaze followed him, and his eyes appeared of such a fiery +brightness that Villefort felt them pierce to the depths of his heart. +In that earnest look might be read a deep reproach, as well as a +terrible menace. Then Noirtier raised his eyes to heaven, as though to +remind his son of a forgotten oath. + +“It is well, sir,” replied Villefort from below,—“it is well; have +patience but one day longer; what I have said I will do.” + +Noirtier seemed to be calmed by these words, and turned his eyes with +indifference to the other side. Villefort violently unbuttoned his +greatcoat, which seemed to strangle him, and passing his livid hand +across his forehead, entered his study. + +The night was cold and still; the family had all retired to rest but +Villefort, who alone remained up, and worked till five o’clock in the +morning, reviewing the last interrogatories made the night before by +the examining magistrates, compiling the depositions of the witnesses, +and putting the finishing stroke to the deed of accusation, which was +one of the most energetic and best conceived of any he had yet +delivered. + +The next day, Monday, was the first sitting of the assizes. The morning +dawned dull and gloomy, and Villefort saw the dim gray light shine upon +the lines he had traced in red ink. The magistrate had slept for a +short time while the lamp sent forth its final struggles; its +flickerings awoke him, and he found his fingers as damp and purple as +though they had been dipped in blood. + +He opened the window; a bright yellow streak crossed the sky, and +seemed to divide in half the poplars, which stood out in black relief +on the horizon. In the clover-fields beyond the chestnut-trees, a lark +was mounting up to heaven, while pouring out her clear morning song. +The damps of the dew bathed the head of Villefort, and refreshed his +memory. + +“Today,” he said with an effort,—“today the man who holds the blade of +justice must strike wherever there is guilt.” + +Involuntarily his eyes wandered towards the window of Noirtier’s room, +where he had seen him the preceding night. The curtain was drawn, and +yet the image of his father was so vivid to his mind that he addressed +the closed window as though it had been open, and as if through the +opening he had beheld the menacing old man. + +“Yes,” he murmured,—“yes, be satisfied.” + +His head dropped upon his chest, and in this position he paced his +study; then he threw himself, dressed as he was, upon a sofa, less to +sleep than to rest his limbs, cramped with cold and study. By degrees +everyone awoke. Villefort, from his study, heard the successive noises +which accompany the life of a house,—the opening and shutting of doors, +the ringing of Madame de Villefort’s bell, to summon the waiting-maid, +mingled with the first shouts of the child, who rose full of the +enjoyment of his age. Villefort also rang; his new valet brought him +the papers, and with them a cup of chocolate. + +“What are you bringing me?” said he. + +“A cup of chocolate.” + +“I did not ask for it. Who has paid me this attention?” + +“My mistress, sir. She said you would have to speak a great deal in the +murder case, and that you should take something to keep up your +strength;” and the valet placed the cup on the table nearest to the +sofa, which was, like all the rest, covered with papers. + +The valet then left the room. Villefort looked for an instant with a +gloomy expression, then, suddenly, taking it up with a nervous motion, +he swallowed its contents at one draught. It might have been thought +that he hoped the beverage would be mortal, and that he sought for +death to deliver him from a duty which he would rather die than fulfil. +He then rose, and paced his room with a smile it would have been +terrible to witness. The chocolate was inoffensive, for M. de Villefort +felt no effects. + +The breakfast-hour arrived, but M. de Villefort was not at table. The +valet re-entered. + +“Madame de Villefort wishes to remind you, sir,” he said, “that eleven +o’clock has just struck, and that the trial commences at twelve.” + +“Well,” said Villefort, “what then?” + +“Madame de Villefort is dressed; she is quite ready, and wishes to know +if she is to accompany you, sir?” + +“Where to?” + +“To the Palais.” + +“What to do?” + +“My mistress wishes much to be present at the trial.” + +“Ah,” said Villefort, with a startling accent; “does she wish that?” + +The servant drew back and said, “If you wish to go alone, sir, I will +go and tell my mistress.” + +Villefort remained silent for a moment, and dented his pale cheeks with +his nails. + +“Tell your mistress,” he at length answered, “that I wish to speak to +her, and I beg she will wait for me in her own room.” + +“Yes, sir.” + +“Then come to dress and shave me.” + +“Directly, sir.” + +The valet re-appeared almost instantly, and, having shaved his master, +assisted him to dress entirely in black. When he had finished, he said: + +“My mistress said she should expect you, sir, as soon as you had +finished dressing.” + +“I am going to her.” + +And Villefort, with his papers under his arm and hat in hand, directed +his steps toward the apartment of his wife. + +At the door he paused for a moment to wipe his damp, pale brow. He then +entered the room. Madame de Villefort was sitting on an ottoman and +impatiently turning over the leaves of some newspapers and pamphlets +which young Edward, by way of amusing himself, was tearing to pieces +before his mother could finish reading them. She was dressed to go out, +her bonnet was placed beside her on a chair, and her gloves were on her +hands. + +“Ah, here you are, monsieur,” she said in her naturally calm voice; +“but how pale you are! Have you been working all night? Why did you not +come down to breakfast? Well, will you take me, or shall I take +Edward?” + +Madame de Villefort had multiplied her questions in order to gain one +answer, but to all her inquiries M. de Villefort remained mute and cold +as a statue. + +“Edward,” said Villefort, fixing an imperious glance on the child, “go +and play in the drawing-room, my dear; I wish to speak to your mamma.” + +Madame de Villefort shuddered at the sight of that cold countenance, +that resolute tone, and the awfully strange preliminaries. Edward +raised his head, looked at his mother, and then, finding that she did +not confirm the order, began cutting off the heads of his leaden +soldiers. + +“Edward,” cried M. de Villefort, so harshly that the child started up +from the floor, “do you hear me?—Go!” + +The child, unaccustomed to such treatment, arose, pale and trembling; +it would be difficult to say whether his emotion were caused by fear or +passion. His father went up to him, took him in his arms, and kissed +his forehead. + +“Go,” he said: “go, my child.” Edward ran out. + +M. de Villefort went to the door, which he closed behind the child, and +bolted. + +“Dear me!” said the young woman, endeavoring to read her husband’s +inmost thoughts, while a smile passed over her countenance which froze +the impassibility of Villefort; “what is the matter?” + +“Madame, where do you keep the poison you generally use?” said the +magistrate, without any introduction, placing himself between his wife +and the door. + +Madame de Villefort must have experienced something of the sensation of +a bird which, looking up, sees the murderous trap closing over its +head. + +A hoarse, broken tone, which was neither a cry nor a sigh, escaped from +her, while she became deadly pale. + +“Monsieur,” she said, “I—I do not understand you.” + +And, in her first paroxysm of terror, she had raised herself from the +sofa, in the next, stronger very likely than the other, she fell down +again on the cushions. + +“I asked you,” continued Villefort, in a perfectly calm tone, “where +you conceal the poison by the aid of which you have killed my +father-in-law, M. de Saint-Méran, my mother-in-law, Madame de +Saint-Méran, Barrois, and my daughter Valentine.” + +“Ah, sir,” exclaimed Madame de Villefort, clasping her hands, “what do +you say?” + +“It is not for you to interrogate, but to answer.” + +“Is it to the judge or to the husband?” stammered Madame de Villefort. + +“To the judge—to the judge, madame!” It was terrible to behold the +frightful pallor of that woman, the anguish of her look, the trembling +of her whole frame. + +“Ah, sir,” she muttered, “ah, sir,” and this was all. + +“You do not answer, madame!” exclaimed the terrible interrogator. Then +he added, with a smile yet more terrible than his anger, “It is true, +then; you do not deny it!” She moved forward. “And you cannot deny it!” +added Villefort, extending his hand toward her, as though to seize her +in the name of justice. “You have accomplished these different crimes +with impudent address, but which could only deceive those whose +affections for you blinded them. Since the death of Madame de +Saint-Méran, I have known that a poisoner lived in my house. M. +d’Avrigny warned me of it. After the death of Barrois my suspicions +were directed towards an angel,—those suspicions which, even when there +is no crime, are always alive in my heart; but after the death of +Valentine, there has been no doubt in my mind, madame, and not only in +mine, but in those of others; thus your crime, known by two persons, +suspected by many, will soon become public, and, as I told you just +now, you no longer speak to the husband, but to the judge.” + +50165m + + + +The young woman hid her face in her hands. + +“Oh, sir,” she stammered, “I beseech you, do not believe appearances.” + +“Are you, then, a coward?” cried Villefort, in a contemptuous voice. +“But I have always observed that poisoners were cowards. Can you be a +coward, you, who have had the courage to witness the death of two old +men and a young girl murdered by you?” + +“Sir! sir!” + +“Can you be a coward?” continued Villefort, with increasing excitement, +“you, who could count, one by one, the minutes of four death agonies? +_You_, who have arranged your infernal plans, and removed the beverages +with a talent and precision almost miraculous? Have you, then, who have +calculated everything with such nicety, have you forgotten to calculate +one thing—I mean where the revelation of your crimes will lead you to? +Oh, it is impossible—you must have saved some surer, more subtle and +deadly poison than any other, that you might escape the punishment that +you deserve. You have done this—I hope so, at least.” + +Madame de Villefort stretched out her hands, and fell on her knees. + +“I understand,” he said, “you confess; but a confession made to the +judges, a confession made at the last moment, extorted when the crime +cannot be denied, diminishes not the punishment inflicted on the +guilty!” + +“The punishment?” exclaimed Madame de Villefort, “the punishment, +monsieur? Twice you have pronounced that word!” + +“Certainly. Did you hope to escape it because you were four times +guilty? Did you think the punishment would be withheld because you are +the wife of him who pronounces it?—No, madame, no; the scaffold awaits +the poisoner, whoever she may be, unless, as I just said, the poisoner +has taken the precaution of keeping for herself a few drops of her +deadliest poison.” + +Madame de Villefort uttered a wild cry, and a hideous and +uncontrollable terror spread over her distorted features. + +“Oh, do not fear the scaffold, madame,” said the magistrate; “I will +not dishonor you, since that would be dishonor to myself; no, if you +have heard me distinctly, you will understand that you are not to die +on the scaffold.” + +“No, I do not understand; what do you mean?” stammered the unhappy +woman, completely overwhelmed. + +“I mean that the wife of the first magistrate in the capital shall not, +by her infamy, soil an unblemished name; that she shall not, with one +blow, dishonor her husband and her child.” + +“No, no—oh, no!” + +“Well, madame, it will be a laudable action on your part, and I will +thank you for it!” + +“You will thank me—for what?” + +“For what you have just said.” + +“What did I say? Oh, my brain whirls; I no longer understand anything. +Oh, my God, my God!” + +And she rose, with her hair dishevelled, and her lips foaming. + +“Have you answered the question I put to you on entering the +room?—where do you keep the poison you generally use, madame?” + +Madame de Villefort raised her arms to heaven, and convulsively struck +one hand against the other. + +“No, no,” she vociferated, “no, you cannot wish that!” + +50169m + + + +“What I do not wish, madame, is that you should perish on the scaffold. +Do you understand?” asked Villefort. + +“Oh, mercy, mercy, monsieur!” + +“What I require is, that justice be done. I am on the earth to punish, +madame,” he added, with a flaming glance; “any other woman, were it the +queen herself, I would send to the executioner; but to you I shall be +merciful. To you I will say, ‘Have you not, madame, put aside some of +the surest, deadliest, most speedy poison?’” + +50170m + + + +“Oh, pardon me, sir; let me live!” + +“She is cowardly,” said Villefort. + +“Reflect that I am your wife!” + +“You are a poisoner.” + +“In the name of Heaven!” + +“No!” + +“In the name of the love you once bore me!” + +“No, no!” + +“In the name of our child! Ah, for the sake of our child, let me live!” + +50167m + + + +“No, no, no, I tell you; one day, if I allow you to live, you will +perhaps kill him, as you have the others!” + +“I?—I kill my boy?” cried the distracted mother, rushing toward +Villefort; “I kill my son? Ha, ha, ha!” and a frightful, demoniac laugh +finished the sentence, which was lost in a hoarse rattle. + +Madame de Villefort fell at her husband’s feet. He approached her. + +“Think of it, madame,” he said; “if, on my return, justice has not been +satisfied, I will denounce you with my own mouth, and arrest you with +my own hands!” + +She listened, panting, overwhelmed, crushed; her eye alone lived, and +glared horribly. + +“Do you understand me?” he said. “I am going down there to pronounce +the sentence of death against a murderer. If I find you alive on my +return, you shall sleep tonight in the conciergerie.” + +Madame de Villefort sighed; her nerves gave way, and she sunk on the +carpet. The king’s attorney seemed to experience a sensation of pity; +he looked upon her less severely, and, bowing to her, said slowly: + +“Farewell, madame, farewell!” + +That farewell struck Madame de Villefort like the executioner’s knife. +She fainted. The procureur went out, after having double-locked the +door. + + + + Chapter 109. The Assizes + +The Benedetto affair, as it was called at the Palais, and by people in +general, had produced a tremendous sensation. Frequenting the Café de +Paris, the Boulevard de Gand, and the Bois de Boulogne, during his +brief career of splendor, the false Cavalcanti had formed a host of +acquaintances. The papers had related his various adventures, both as +the man of fashion and the galley-slave; and as everyone who had been +personally acquainted with Prince Andrea Cavalcanti experienced a +lively curiosity in his fate, they all determined to spare no trouble +in endeavoring to witness the trial of M. Benedetto for the murder of +his comrade in chains. + +In the eyes of many, Benedetto appeared, if not a victim to, at least +an instance of, the fallibility of the law. M. Cavalcanti, his father, +had been seen in Paris, and it was expected that he would re-appear to +claim the illustrious outcast. Many, also, who were not aware of the +circumstances attending his withdrawal from Paris, were struck with the +worthy appearance, the gentlemanly bearing, and the knowledge of the +world displayed by the old patrician, who certainly played the nobleman +very well, so long as he said nothing, and made no arithmetical +calculations. + +As for the accused himself, many remembered him as being so amiable, so +handsome, and so liberal, that they chose to think him the victim of +some conspiracy, since in this world large fortunes frequently excite +the malevolence and jealousy of some unknown enemy. + +Everyone, therefore, ran to the court; some to witness the sight, +others to comment upon it. From seven o’clock in the morning a crowd +was stationed at the iron gates, and an hour before the trial commenced +the hall was full of the privileged. Before the entrance of the +magistrates, and indeed frequently afterwards, a court of justice, on +days when some especial trial is to take place, resembles a +drawing-room where many persons recognize each other and converse if +they can do so without losing their seats; or, if they are separated by +too great a number of lawyers, communicate by signs. + +It was one of the magnificent autumn days which make amends for a short +summer; the clouds which M. de Villefort had perceived at sunrise had +all disappeared as if by magic, and one of the softest and most +brilliant days of September shone forth in all its splendor. + +Beauchamp, one of the kings of the press, and therefore claiming the +right of a throne everywhere, was eying everybody through his monocle. +He perceived Château-Renaud and Debray, who had just gained the good +graces of a sergeant-at-arms, and who had persuaded the latter to let +them stand before, instead of behind him, as they ought to have done. +The worthy sergeant had recognized the minister’s secretary and the +millionnaire, and, by way of paying extra attention to his noble +neighbors, promised to keep their places while they paid a visit to +Beauchamp. + +“Well,” said Beauchamp, “we shall see our friend!” + +“Yes, indeed!” replied Debray. “That worthy prince. Deuce take those +Italian princes!” + +“A man, too, who could boast of Dante for a genealogist, and could +reckon back to the _Divina Comedia_.” + +“A nobility of the rope!” said Château-Renaud phlegmatically. + +“He will be condemned, will he not?” asked Debray of Beauchamp. + +“My dear fellow, I think we should ask you that question; you know such +news much better than we do. Did you see the president at the +minister’s last night?” + +“Yes.” + +“What did he say?” + +“Something which will surprise you.” + +“Oh, make haste and tell me, then; it is a long time since that has +happened.” + +“Well, he told me that Benedetto, who is considered a serpent of +subtlety and a giant of cunning, is really but a very commonplace, +silly rascal, and altogether unworthy of the experiments that will be +made on his phrenological organs after his death.” + +“Bah,” said Beauchamp, “he played the prince very well.” + +“Yes, for you who detest those unhappy princes, Beauchamp, and are +always delighted to find fault with them; but not for me, who discover +a gentleman by instinct, and who scent out an aristocratic family like +a very bloodhound of heraldry.” + +“Then you never believed in the principality?” + +“Yes.—in the principality, but not in the prince.” + +“Not so bad,” said Beauchamp; “still, I assure you, he passed very well +with many people; I saw him at the ministers’ houses.” + +“Ah, yes,” said Château-Renaud. “The idea of thinking ministers +understand anything about princes!” + +“There is something in what you have just said,” said Beauchamp, +laughing. + +“But,” said Debray to Beauchamp, “if I spoke to the president, _you_ +must have been with the procureur.” + +“It was an impossibility; for the last week M. de Villefort has +secluded himself. It is natural enough; this strange chain of domestic +afflictions, followed by the no less strange death of his daughter——” + +“Strange? What do you mean, Beauchamp?” + +“Oh, yes; do you pretend that all this has been unobserved at the +minister’s?” said Beauchamp, placing his eye-glass in his eye, where he +tried to make it remain. + +“My dear sir,” said Château-Renaud, “allow me to tell you that you do +not understand that manœuvre with the eye-glass half so well as Debray. +Give him a lesson, Debray.” + +“Stay,” said Beauchamp, “surely I am not deceived.” + +“What is it?” + +“It is she!” + +“Whom do you mean?” + +“They said she had left.” + +“Mademoiselle Eugénie?” said Château-Renaud; “has she returned?” + +“No, but her mother.” + +“Madame Danglars? Nonsense! Impossible!” said Château-Renaud; “only ten +days after the flight of her daughter, and three days from the +bankruptcy of her husband?” + +Debray colored slightly, and followed with his eyes the direction of +Beauchamp’s glance. + +“Come,” he said, “it is only a veiled lady, some foreign princess, +perhaps the mother of Cavalcanti. But you were just speaking on a very +interesting topic, Beauchamp.” + +“I?” + +“Yes; you were telling us about the extraordinary death of Valentine.” + +“Ah, yes, so I was. But how is it that Madame de Villefort is not +here?” + +“Poor, dear woman,” said Debray, “she is no doubt occupied in +distilling balm for the hospitals, or in making cosmetics for herself +or friends. Do you know she spends two or three thousand crowns a year +in this amusement? But I wonder she is not here. I should have been +pleased to see her, for I like her very much.” + +“And I hate her,” said Château-Renaud. + +“Why?” + +“I do not know. Why do we love? Why do we hate? I detest her, from +antipathy.” + +“Or, rather, by instinct.” + +“Perhaps so. But to return to what you were saying, Beauchamp.” + +“Well, do you know why they die so multitudinously at M. de +Villefort’s?” + +“‘Multitudinously’ is good,” said Château-Renaud. + +“My good fellow, you’ll find the word in Saint-Simon.” + +“But the thing itself is at M. de Villefort’s; but let’s get back to +the subject.” + +“Talking of that,” said Debray, “Madame was making inquiries about that +house, which for the last three months has been hung with black.” + +“Who is Madame?” asked Château-Renaud. + +“The minister’s wife, _pardieu!_” + +“Oh, your pardon! I never visit ministers; I leave that to the +princes.” + +“Really, you were only before sparkling, but now you are brilliant; +take compassion on us, or, like Jupiter, you will wither us up.” + +“I will not speak again,” said Château-Renaud; “pray have compassion +upon me, and do not take up every word I say.” + +“Come, let us endeavor to get to the end of our story, Beauchamp; I +told you that yesterday Madame made inquiries of me upon the subject; +enlighten me, and I will then communicate my information to her.” + +“Well, gentlemen, the reason people die so multitudinously (I like the +word) at M. de Villefort’s is that there is an assassin in the house!” + +The two young men shuddered, for the same idea had more than once +occurred to them. + +“And who is the assassin;” they asked together. + +“Young Edward!” A burst of laughter from the auditors did not in the +least disconcert the speaker, who continued,—“Yes, gentlemen; Edward, +the infant phenomenon, who is quite an adept in the art of killing.” + +“You are jesting.” + +“Not at all. I yesterday engaged a servant, who had just left M. de +Villefort—I intend sending him away tomorrow, for he eats so +enormously, to make up for the fast imposed upon him by his terror in +that house. Well, now listen.” + +“We are listening.” + +“It appears the dear child has obtained possession of a bottle +containing some drug, which he every now and then uses against those +who have displeased him. First, M. and Madame de Saint-Méran incurred +his displeasure, so he poured out three drops of his elixir—three drops +were sufficient; then followed Barrois, the old servant of M. Noirtier, +who sometimes rebuffed this little wretch—he therefore received the +same quantity of the elixir; the same happened to Valentine, of whom he +was jealous; he gave her the same dose as the others, and all was over +for her as well as the rest.” + +“Why, what nonsense are you telling us?” said Château-Renaud. + +“Yes, it is an extraordinary story,” said Beauchamp; “is it not?” + +“It is absurd,” said Debray. + +“Ah,” said Beauchamp, “you doubt me? Well, you can ask my servant, or +rather him who will no longer be my servant tomorrow, it was the talk +of the house.” + +“And this elixir, where is it? what is it?” + +“The child conceals it.” + +“But where did he find it?” + +“In his mother’s laboratory.” + +“Does his mother then, keep poisons in her laboratory?” + +“How can I tell? You are questioning me like a king’s attorney. I only +repeat what I have been told, and like my informant I can do no more. +The poor devil would eat nothing, from fear.” + +“It is incredible!” + +“No, my dear fellow, it is not at all incredible. You saw the child +pass through the Rue Richelieu last year, who amused himself with +killing his brothers and sisters by sticking pins in their ears while +they slept. The generation who follow us are very precocious.” + +“Come, Beauchamp,” said Château-Renaud, “I will bet anything you do not +believe a word of all you have been telling us. But I do not see the +Count of Monte Cristo here.” + +“He is worn out,” said Debray; “besides, he could not well appear in +public, since he has been the dupe of the Cavalcanti, who, it appears, +presented themselves to him with false letters of credit, and cheated +him out of 100,000 francs upon the hypothesis of this principality.” + +“By the way, M. de Château-Renaud,” asked Beauchamp, “how is Morrel?” + +“_Ma foi_, I have called three times without once seeing him. Still, +his sister did not seem uneasy, and told me that though she had not +seen him for two or three days, she was sure he was well.” + +“Ah, now I think of it, the Count of Monte Cristo cannot appear in the +hall,” said Beauchamp. + +“Why not?” + +“Because he is an actor in the drama.” + +“Has he assassinated anyone, then?” + +“No, on the contrary, they wished to assassinate him. You know that it +was in leaving his house that M. de Caderousse was murdered by his +friend Benedetto. You know that the famous waistcoat was found in his +house, containing the letter which stopped the signature of the +marriage-contract. Do you see the waistcoat? There it is, all +blood-stained, on the desk, as a testimony of the crime.” + +“Ah, very good.” + +“Hush, gentlemen, here is the court; let us go back to our places.” + +A noise was heard in the hall; the sergeant called his two patrons with +an energetic “hem!” and the door-keeper appearing, called out with that +shrill voice peculiar to his order, ever since the days of +Beaumarchais: + +“The court, gentlemen!” + + + + Chapter 110. The Indictment + +The judges took their places in the midst of the most profound silence; +the jury took their seats; M. de Villefort, the object of unusual +attention, and we had almost said of general admiration, sat in the +armchair and cast a tranquil glance around him. Everyone looked with +astonishment on that grave and severe face, whose calm expression +personal griefs had been unable to disturb, and the aspect of a man who +was a stranger to all human emotions excited something very like +terror. + +“Gendarmes,” said the president, “lead in the accused.” + +At these words the public attention became more intense, and all eyes +were turned towards the door through which Benedetto was to enter. The +door soon opened and the accused appeared. + +The same impression was experienced by all present, and no one was +deceived by the expression of his countenance. His features bore no +sign of that deep emotion which stops the beating of the heart and +blanches the cheek. His hands, gracefully placed, one upon his hat, the +other in the opening of his white waistcoat, were not at all tremulous; +his eye was calm and even brilliant. Scarcely had he entered the hall +when he glanced at the whole body of magistrates and assistants; his +eye rested longer on the president, and still more so on the king’s +attorney. + +By the side of Andrea was stationed the lawyer who was to conduct his +defence, and who had been appointed by the court, for Andrea disdained +to pay any attention to those details, to which he appeared to attach +no importance. The lawyer was a young man with light hair whose face +expressed a hundred times more emotion than that which characterized +the prisoner. + +50181m + + + +The president called for the indictment, revised as we know, by the +clever and implacable pen of Villefort. During the reading of this, +which was long, the public attention was continually drawn towards +Andrea, who bore the inspection with Spartan unconcern. Villefort had +never been so concise and eloquent. The crime was depicted in the most +vivid colors; the former life of the prisoner, his transformation, a +review of his life from the earliest period, were set forth with all +the talent that a knowledge of human life could furnish to a mind like +that of the procureur. Benedetto was thus forever condemned in public +opinion before the sentence of the law could be pronounced. + +Andrea paid no attention to the successive charges which were brought +against him. M. de Villefort, who examined him attentively, and who no +doubt practiced upon him all the psychological studies he was +accustomed to use, in vain endeavored to make him lower his eyes, +notwithstanding the depth and profundity of his gaze. At length the +reading of the indictment was ended. + +“Accused,” said the president, “your name and surname?” + +Andrea arose. + +“Excuse me, Mr. President,” he said, in a clear voice, “but I see you +are going to adopt a course of questions through which I cannot follow +you. I have an idea, which I will explain by and by, of making an +exception to the usual form of accusation. Allow me, then, if you +please, to answer in different order, or I will not do so at all.” + +The astonished president looked at the jury, who in turn looked at +Villefort. The whole assembly manifested great surprise, but Andrea +appeared quite unmoved. + +“Your age?” said the president; “will you answer that question?” + +“I will answer that question, as well as the rest, Mr. President, but +in its turn.” + +“Your age?” repeated the president. + +“I am twenty-one years old, or rather I shall be in a few days, as I +was born the night of the 27th of September, 1817.” + +M. de Villefort, who was busy taking down some notes, raised his head +at the mention of this date. + +“Where were you born?” continued the president. + +“At Auteuil, near Paris.” + +M. de Villefort a second time raised his head, looked at Benedetto as +if he had been gazing at the head of Medusa, and became livid. As for +Benedetto, he gracefully wiped his lips with a fine cambric +pocket-handkerchief. + +“Your profession?” + +“First I was a forger,” answered Andrea, as calmly as possible; “then I +became a thief, and lately have become an assassin.” + +A murmur, or rather storm, of indignation burst from all parts of the +assembly. The judges themselves appeared to be stupefied, and the jury +manifested tokens of disgust for a cynicism so unexpected in a man of +fashion. M. de Villefort pressed his hand upon his brow, which, at +first pale, had become red and burning; then he suddenly arose and +looked around as though he had lost his senses—he wanted air. + +50183m + + + +“Are you looking for anything, Mr. Procureur?” asked Benedetto, with +his most ingratiating smile. + +M. de Villefort answered nothing, but sat, or rather threw himself down +again upon his chair. + +“And now, prisoner, will you consent to tell your name?” said the +president. “The brutal affectation with which you have enumerated and +classified your crimes calls for a severe reprimand on the part of the +court, both in the name of morality, and for the respect due to +humanity. You appear to consider this a point of honor, and it may be +for this reason, that you have delayed acknowledging your name. You +wished it to be preceded by all these titles.” + +“It is quite wonderful, Mr. President, how entirely you have read my +thoughts,” said Benedetto, in his softest voice and most polite manner. +“This is, indeed, the reason why I begged you to alter the order of the +questions.” + +The public astonishment had reached its height. There was no longer any +deceit or bravado in the manner of the accused. The audience felt that +a startling revelation was to follow this ominous prelude. + +“Well,” said the president; “your name?” + +“I cannot tell you my name, since I do not know it; but I know my +father’s, and can tell it to you.” + +A painful giddiness overwhelmed Villefort; great drops of acrid sweat +fell from his face upon the papers which he held in his convulsed hand. + +“Repeat your father’s name,” said the president. + +Not a whisper, not a breath, was heard in that vast assembly; everyone +waited anxiously. + +“My father is king’s attorney,” replied Andrea calmly. + +50179m + + + +“King’s attorney?” said the president, stupefied, and without noticing +the agitation which spread over the face of M. de Villefort; “king’s +attorney?” + +“Yes; and if you wish to know his name, I will tell it,—he is named +Villefort.” + +The explosion, which had been so long restrained from a feeling of +respect to the court of justice, now burst forth like thunder from the +breasts of all present; the court itself did not seek to restrain the +feelings of the audience. The exclamations, the insults addressed to +Benedetto, who remained perfectly unconcerned, the energetic gestures, +the movement of the gendarmes, the sneers of the scum of the crowd +always sure to rise to the surface in case of any disturbance—all this +lasted five minutes, before the door-keepers and magistrates were able +to restore silence. In the midst of this tumult the voice of +the president was heard to exclaim: + +“Are you playing with justice, accused, and do you dare set your +fellow-citizens an example of disorder which even in these times has +never been equalled?” + +Several persons hurried up to M. de Villefort, who sat half bowed over +in his chair, offering him consolation, encouragement, and +protestations of zeal and sympathy. Order was re-established in the +hall, except that a few people still moved about and whispered to one +another. A lady, it was said, had just fainted; they had supplied her +with a smelling-bottle, and she had recovered. During the scene of +tumult, Andrea had turned his smiling face towards the assembly; then, +leaning with one hand on the oaken rail of the dock, in the most +graceful attitude possible, he said: + +“Gentlemen, I assure you I had no idea of insulting the court, or of +making a useless disturbance in the presence of this honorable +assembly. They ask my age; I tell it. They ask where I was born; I +answer. They ask my name, I cannot give it, since my parents abandoned +me. But though I cannot give my own name, not possessing one, I can +tell them my father’s. Now I repeat, my father is named M. de +Villefort, and I am ready to prove it.” + +There was an energy, a conviction, and a sincerity in the manner of the +young man, which silenced the tumult. All eyes were turned for a moment +towards the procureur, who sat as motionless as though a thunderbolt +had changed him into a corpse. + +“Gentlemen,” said Andrea, commanding silence by his voice and manner; +“I owe you the proofs and explanations of what I have said.” + +“But,” said the irritated president, “you called yourself Benedetto, +declared yourself an orphan, and claimed Corsica as your country.” + +“I said anything I pleased, in order that the solemn declaration I have +just made should not be withheld, which otherwise would certainly have +been the case. I now repeat that I was born at Auteuil on the night of +the 27th of September, 1817, and that I am the son of the procureur, M. +de Villefort. Do you wish for any further details? I will give them. I +was born in No. 28, Rue de la Fontaine, in a room hung with red damask; +my father took me in his arms, telling my mother I was dead, wrapped me +in a napkin marked with an H and an N, and carried me into a garden, +where he buried me alive.” + +A shudder ran through the assembly when they saw that the confidence of +the prisoner increased in proportion to the terror of M. de Villefort. + +“But how have you become acquainted with all these details?” asked the +president. + +“I will tell you, Mr. President. A man who had sworn vengeance against +my father, and had long watched his opportunity to kill him, had +introduced himself that night into the garden in which my father buried +me. He was concealed in a thicket; he saw my father bury something in +the ground, and stabbed him; then thinking the deposit might contain +some treasure he turned up the ground, and found me still living. The +man carried me to the foundling asylum, where I was registered under +the number 37. Three months afterwards, a woman travelled from Rogliano +to Paris to fetch me, and having claimed me as her son, carried me +away. Thus, you see, though born in Paris, I was brought up in +Corsica.” + +There was a moment’s silence, during which one could have fancied the +hall empty, so profound was the stillness. + +“Proceed,” said the president. + +“Certainly, I might have lived happily amongst those good people, who +adored me, but my perverse disposition prevailed over the virtues which +my adopted mother endeavored to instil into my heart. I increased in +wickedness till I committed crime. One day when I cursed Providence for +making me so wicked, and ordaining me to such a fate, my adopted father +said to me, ‘Do not blaspheme, unhappy child, the crime is that of your +father, not yours,—of your father, who consigned you to hell if you +died, and to misery if a miracle preserved you alive.’ After that I +ceased to blaspheme, but I cursed my father. That is why I have uttered +the words for which you blame me; that is why I have filled this whole +assembly with horror. If I have committed an additional crime, punish +me, but if you will allow that ever since the day of my birth my fate +has been sad, bitter, and lamentable, then pity me.” + +“But your mother?” asked the president. + +“My mother thought me dead; she is not guilty. I did not even wish to +know her name, nor do I know it.” + +Just then a piercing cry, ending in a sob, burst from the centre of the +crowd, who encircled the lady who had before fainted, and who now fell +into a violent fit of hysterics. She was carried out of the hall, the +thick veil which concealed her face dropped off, and Madame Danglars +was recognized. Notwithstanding his shattered nerves, the ringing +sensation in his ears, and the madness which turned his brain, +Villefort rose as he perceived her. + +“The proofs, the proofs!” said the president; “remember this tissue of +horrors must be supported by the clearest proofs.” + +“The proofs?” said Benedetto, laughing; “do you want proofs?” + +“Yes.” + +“Well, then, look at M. de Villefort, and then ask me for proofs.” + +Everyone turned towards the procureur, who, unable to bear the +universal gaze now riveted on him alone, advanced staggering into the +midst of the tribunal, with his hair dishevelled and his face indented +with the mark of his nails. The whole assembly uttered a long murmur of +astonishment. + +“Father,” said Benedetto, “I am asked for proofs, do you wish me to +give them?” + +“No, no, it is useless,” stammered M. de Villefort in a hoarse voice; +“no, it is useless!” + +“How useless?” cried the president, “what do you mean?” + +“I mean that I feel it impossible to struggle against this deadly +weight which crushes me. Gentlemen, I know I am in the hands of an +avenging God! We need no proofs; everything relating to this young man +is true.” + +A dull, gloomy silence, like that which precedes some awful phenomenon +of nature, pervaded the assembly, who shuddered in dismay. + +“What, M. de Villefort,” cried the president, “do you yield to an +hallucination? What, are you no longer in possession of your senses? +This strange, unexpected, terrible accusation has disordered your +reason. Come, recover.” + +The procureur dropped his head; his teeth chattered like those of a man +under a violent attack of fever, and yet he was deadly pale. + +“I am in possession of all my senses, sir,” he said; “my body alone +suffers, as you may suppose. I acknowledge myself guilty of all the +young man has brought against me, and from this hour hold myself under +the authority of the procureur who will succeed me.” + +And as he spoke these words with a hoarse, choking voice, he staggered +towards the door, which was mechanically opened by a door-keeper. The +whole assembly were dumb with astonishment at the revelation and +confession which had produced a catastrophe so different from that +which had been expected during the last fortnight by the Parisian +world. + +“Well,” said Beauchamp, “let them now say that drama is unnatural!” + +“_Ma foi!_” said Château-Renaud, “I would rather end my career like M. +de Morcerf; a pistol-shot seems quite delightful compared with this +catastrophe.” + +“And moreover, it kills,” said Beauchamp. + +“And to think that I had an idea of marrying his daughter,” said +Debray. “She did well to die, poor girl!” + +“The sitting is adjourned, gentlemen,” said the president; “fresh +inquiries will be made, and the case will be tried next session by +another magistrate.” + +As for Andrea, who was calm and more interesting than ever, he left the +hall, escorted by gendarmes, who involuntarily paid him some attention. + +“Well, what do you think of this, my fine fellow?” asked Debray of the +sergeant-at-arms, slipping a louis into his hand. + +“There will be extenuating circumstances,” he replied. + + + + Chapter 111. Expiation + +Notwithstanding the density of the crowd, M. de Villefort saw it open +before him. There is something so awe-inspiring in great afflictions +that even in the worst times the first emotion of a crowd has generally +been to sympathize with the sufferer in a great catastrophe. Many +people have been assassinated in a tumult, but even criminals have +rarely been insulted during trial. Thus Villefort passed through the +mass of spectators and officers of the Palais, and withdrew. Though he +had acknowledged his guilt, he was protected by his grief. There are +some situations which men understand by instinct, but which reason is +powerless to explain; in such cases the greatest poet is he who gives +utterance to the most natural and vehement outburst of sorrow. Those +who hear the bitter cry are as much impressed as if they listened to an +entire poem, and when the sufferer is sincere they are right in +regarding his outburst as sublime. + +It would be difficult to describe the state of stupor in which +Villefort left the Palais. Every pulse beat with feverish excitement, +every nerve was strained, every vein swollen, and every part of his +body seemed to suffer distinctly from the rest, thus multiplying his +agony a thousand-fold. He made his way along the corridors through +force of habit; he threw aside his magisterial robe, not out of +deference to etiquette, but because it was an unbearable burden, a +veritable garb of Nessus, insatiate in torture. Having staggered as far +as the Rue Dauphine, he perceived his carriage, awoke his sleeping +coachman by opening the door himself, threw himself on the cushions, +and pointed towards the Faubourg Saint-Honoré; the carriage drove on. + +All the weight of his fallen fortune seemed suddenly to crush him; he +could not foresee the consequences; he could not contemplate the future +with the indifference of the hardened criminal who merely faces a +contingency already familiar. + + + +God was still in his heart. “God,” he murmured, not knowing what he +said,—“God—God!” Behind the event that had overwhelmed him he saw the +hand of God. The carriage rolled rapidly onward. Villefort, while +turning restlessly on the cushions, felt something press against him. +He put out his hand to remove the object; it was a fan which Madame de +Villefort had left in the carriage; this fan awakened a recollection +which darted through his mind like lightning. He thought of his wife. + +50189m + + + +“Oh!” he exclaimed, as though a red-hot iron were piercing his heart. + +During the last hour his own crime had alone been presented to his +mind; now another object, not less terrible, suddenly presented itself. +His wife! He had just acted the inexorable judge with her, he had +condemned her to death, and she, crushed by remorse, struck with +terror, covered with the shame inspired by the eloquence of _his_ +irreproachable virtue,—she, a poor, weak woman, without help or the +power of defending herself against his absolute and supreme will,—she +might at that very moment, perhaps, be preparing to die! + +An hour had elapsed since her condemnation; at that moment, doubtless, +she was recalling all her crimes to her memory; she was asking pardon +for her sins; perhaps she was even writing a letter imploring +forgiveness from her virtuous husband—a forgiveness she was purchasing +with her death! Villefort again groaned with anguish and despair. + +“Ah,” he exclaimed, “that woman became criminal only from associating +with me! I carried the infection of crime with me, and she has caught +it as she would the typhus fever, the cholera, the plague! And yet I +have punished her—I have dared to tell her—_I_ have—‘Repent and die!’ +But no, she must not die; she shall live, and with me. We will flee +from Paris and go as far as the earth reaches. I told her of the +scaffold; oh, Heavens, I forgot that it awaits me also! How could I +pronounce that word? Yes, we will fly; I will confess all to her,—I +will tell her daily that I also have committed a crime!—Oh, what an +alliance—the tiger and the serpent; worthy wife of such as I am! She +_must_ live that my infamy may diminish hers.” + +And Villefort dashed open the window in front of the carriage. + +“Faster, faster!” he cried, in a tone which electrified the coachman. +The horses, impelled by fear, flew towards the house. + +“Yes, yes,” repeated Villefort, as he approached his home—“yes, that +woman must live; she must repent, and educate my son, the sole +survivor, with the exception of the indestructible old man, of the +wreck of my house. She loves him; it was for his sake she has committed +these crimes. We ought never to despair of softening the heart of a +mother who loves her child. She will repent, and no one will know that +she has been guilty. The events which have taken place in my house, +though they now occupy the public mind, will be forgotten in time, or +if, indeed, a few enemies should persist in remembering them, why then +I will add them to my list of crimes. What will it signify if one, two, +or three more are added? My wife and child shall escape from this gulf, +carrying treasures with them; she will live and may yet be happy, since +her child, in whom all her love is centred, will be with her. I shall +have performed a good action, and my heart will be lighter.” + +And the procureur breathed more freely than he had done for some time. + +50191m + + + +The carriage stopped at the door of the house. Villefort leaped out of +the carriage, and saw that his servants were surprised at his early +return; he could read no other expression on their features. Neither of +them spoke to him; they merely stood aside to let him pass by, as +usual, nothing more. As he passed by M. Noirtier’s room, he perceived +two figures through the half-open door; but he experienced no curiosity +to know who was visiting his father; anxiety carried him on further. + +“Come,” he said, as he ascended the stairs leading to his wife’s room, +“nothing is changed here.” + +He then closed the door of the landing. + +“No one must disturb us,” he said; “I must speak freely to her, accuse +myself, and say”—he approached the door, touched the crystal handle, +which yielded to his hand. “Not locked,” he cried; “that is well.” + +And he entered the little room in which Edward slept; for though the +child went to school during the day, his mother could not allow him to +be separated from her at night. With a single glance Villefort’s eye +ran through the room. + +“Not here,” he said; “doubtless she is in her bedroom.” He rushed +towards the door, found it bolted, and stopped, shuddering. + +“Héloïse!” he cried. He fancied he heard the sound of a piece of +furniture being removed. + +“Héloïse!” he repeated. + +“Who is there?” answered the voice of her he sought. He thought that +voice more feeble than usual. + +“Open the door!” cried Villefort. “Open; it is I.” + +But notwithstanding this request, notwithstanding the tone of anguish +in which it was uttered, the door remained closed. Villefort burst it +open with a violent blow. At the entrance of the room which led to her +boudoir, Madame de Villefort was standing erect, pale, her features +contracted, and her eyes glaring horribly. + +“Héloïse, Héloïse!” he said, “what is the matter? Speak!” The young +woman extended her stiff white hands towards him. + +“It is done, monsieur,” she said with a rattling noise which seemed to +tear her throat. “What more do you want?” and she fell full length on +the floor. + +Villefort ran to her and seized her hand, which convulsively clasped a +crystal bottle with a golden stopper. Madame de Villefort was dead. +Villefort, maddened with horror, stepped back to the threshhold of the +door, fixing his eyes on the corpse. + +“My son!” he exclaimed suddenly, “where is my son?—Edward, Edward!” and +he rushed out of the room, still crying, “Edward, Edward!” The name was +pronounced in such a tone of anguish that the servants ran up. + +“Where is my son?” asked Villefort; “let him be removed from the house, +that he may not see——” + +“Master Edward is not downstairs, sir,” replied the valet. + +“Then he must be playing in the garden; go and see.” + +50193m + + + +“No, sir; Madame de Villefort sent for him half an hour ago; he went +into her room, and has not been downstairs since.” + +A cold perspiration burst out on Villefort’s brow; his legs trembled, +and his thoughts flew about madly in his brain like the wheels of a +disordered watch. + +“In Madame de Villefort’s room?” he murmured and slowly returned, with +one hand wiping his forehead, and with the other supporting himself +against the wall. To enter the room he must again see the body of his +unfortunate wife. To call Edward he must reawaken the echo of that room +which now appeared like a sepulchre; to speak seemed like violating the +silence of the tomb. His tongue was paralyzed in his mouth. + +“Edward!” he stammered—“Edward!” + +The child did not answer. Where, then, could he be, if he had entered +his mother’s room and not since returned? He stepped forward. The +corpse of Madame de Villefort was stretched across the doorway leading +to the room in which Edward must be; those glaring eyes seemed to watch +over the threshold, and the lips bore the stamp of a terrible and +mysterious irony. Through the open door was visible a portion of the +boudoir, containing an upright piano and a blue satin couch. Villefort +stepped forward two or three paces, and beheld his child lying—no doubt +asleep—on the sofa. The unhappy man uttered an exclamation of joy; a +ray of light seemed to penetrate the abyss of despair and darkness. He +had only to step over the corpse, enter the boudoir, take the child in +his arms, and flee far, far away. + +Villefort was no longer the civilized man; he was a tiger hurt unto +death, gnashing his teeth in his wound. He no longer feared realities, +but phantoms. He leaped over the corpse as if it had been a burning +brazier. He took the child in his arms, embraced him, shook him, called +him, but the child made no response. He pressed his burning lips to the +cheeks, but they were icy cold and pale; he felt the stiffened limbs; +he pressed his hand upon the heart, but it no longer beat,—the child +was dead. + +A folded paper fell from Edward’s breast. Villefort, thunderstruck, +fell upon his knees; the child dropped from his arms, and rolled on the +floor by the side of its mother. He picked up the paper, and, +recognizing his wife’s writing, ran his eyes rapidly over its contents; +it ran as follows: + +“You know that I was a good mother, since it was for my son’s sake I +became criminal. A good mother cannot depart without her son.” + +Villefort could not believe his eyes,—he could not believe his reason; +he dragged himself towards the child’s body, and examined it as a +lioness contemplates its dead cub. Then a piercing cry escaped from his +breast, and he cried, + +“Still the hand of God.” + +The presence of the two victims alarmed him; he could not bear solitude +shared only by two corpses. Until then he had been sustained by rage, +by his strength of mind, by despair, by the supreme agony which led the +Titans to scale the heavens, and Ajax to defy the gods. He now arose, +his head bowed beneath the weight of grief, and, shaking his damp, +dishevelled hair, he who had never felt compassion for anyone +determined to seek his father, that he might have someone to whom he +could relate his misfortunes,—someone by whose side he might weep. + +50195m + + + +He descended the little staircase with which we are acquainted, and +entered Noirtier’s room. The old man appeared to be listening +attentively and as affectionately as his infirmities would allow to the +Abbé Busoni, who looked cold and calm, as usual. Villefort, perceiving +the abbé, passed his hand across his brow. The past came to him like +one of those waves whose wrath foams fiercer than the others. + +He recollected the call he had made upon him after the dinner at +Auteuil, and then the visit the abbé had himself paid to his house on +the day of Valentine’s death. + +“You here, sir!” he exclaimed; “do you, then, never appear but to act +as an escort to death?” + +Busoni turned around, and, perceiving the excitement depicted on the +magistrate’s face, the savage lustre of his eyes, he understood that +the revelation had been made at the assizes; but beyond this he was +ignorant. + +“I came to pray over the body of your daughter.” + +“And now why are you here?” + +“I come to tell you that you have sufficiently repaid your debt, and +that from this moment I will pray to God to forgive you, as I do.” + +“Good heavens!” exclaimed Villefort, stepping back fearfully, “surely +that is not the voice of the Abbé Busoni!” + +“No!” The abbé threw off his wig, shook his head, and his hair, no +longer confined, fell in black masses around his manly face. + +“It is the face of the Count of Monte Cristo!” exclaimed the procureur, +with a haggard expression. + +“You are not exactly right, M. Procureur; you must go farther back.” + +“That voice, that voice!—where did I first hear it?” + +“You heard it for the first time at Marseilles, twenty-three years ago, +the day of your marriage with Mademoiselle de Saint-Méran. Refer to +your papers.” + +“You are not Busoni?—you are not Monte Cristo? Oh, heavens! you are, +then, some secret, implacable, and mortal enemy! I must have wronged +you in some way at Marseilles. Oh, woe to me!” + +“Yes; you are now on the right path,” said the count, crossing his arms +over his broad chest; “search—search!” + +“But what have I done to you?” exclaimed Villefort, whose mind was +balancing between reason and insanity, in that cloud which is neither a +dream nor reality; “what have I done to you? Tell me, then! Speak!” + +“You condemned me to a horrible, tedious death; you killed my father; +you deprived me of liberty, of love, and happiness.” + +“Who are you, then? Who are you?” + +“I am the spectre of a wretch you buried in the dungeons of the Château +d’If. God gave that spectre the form of the Count of Monte Cristo when +he at length issued from his tomb, enriched him with gold and diamonds, +and led him to you!” + +“Ah, I recognize you—I recognize you!” exclaimed the king’s attorney; +“you are——” + +“I am Edmond Dantès!” + +“You are Edmond Dantès,” cried Villefort, seizing the count by the +wrist; “then come here!” + +And up the stairs he dragged Monte Cristo; who, ignorant of what had +happened, followed him in astonishment, foreseeing some new +catastrophe. + +“There, Edmond Dantès!” he said, pointing to the bodies of his wife and +child, “see, are you well avenged?” + +Monte Cristo became pale at this horrible sight; he felt that he had +passed beyond the bounds of vengeance, and that he could no longer say, +“God is for and with me.” With an expression of indescribable anguish +he threw himself upon the body of the child, reopened its eyes, felt +its pulse, and then rushed with him into Valentine’s room, of which he +double-locked the door. + +“My child,” cried Villefort, “he carries away the body of my child! Oh, +curses, woe, death to you!” + +He tried to follow Monte Cristo; but as though in a dream he was +transfixed to the spot,—his eyes glared as though they were starting +through the sockets; he griped the flesh on his chest until his nails +were stained with blood; the veins of his temples swelled and boiled as +though they would burst their narrow boundary, and deluge his brain +with living fire. This lasted several minutes, until the frightful +overturn of reason was accomplished; then uttering a loud cry followed +by a burst of laughter, he rushed down the stairs. + +A quarter of an hour afterwards the door of Valentine’s room opened, +and Monte Cristo reappeared. Pale, with a dull eye and heavy heart, all +the noble features of that face, usually so calm and serene, were +overcast by grief. In his arms he held the child, whom no skill had +been able to recall to life. Bending on one knee, he placed it +reverently by the side of its mother, with its head upon her breast. +Then, rising, he went out, and meeting a servant on the stairs, he +asked: + +“Where is M. de Villefort?” + +The servant, instead of answering, pointed to the garden. Monte Cristo +ran down the steps, and advancing towards the spot designated beheld +Villefort, encircled by his servants, with a spade in his hand, and +digging the earth with fury. + +“It is not here!” he cried. “It is not here!” + +50197m + + + +And then he moved farther on, and began again to dig. + +Monte Cristo approached him, and said in a low voice, with an +expression almost humble: + +“Sir, you have indeed lost a son; but——” + +Villefort interrupted him; he had neither listened nor heard. + +“Oh, I _will_ find it,” he cried; “you may pretend he is not here, but +I _will_ find him, though I dig forever!” + +Monte Cristo drew back in horror. + +“Oh,” he said, “he is mad!” And as though he feared that the walls of +the accursed house would crumble around him, he rushed into the street, +for the first time doubting whether he had the right to do as he had +done. “Oh, enough of this,—enough of this,” he cried; “let me save the +last.” On entering his house, he met Morrel, who wandered about like a +ghost awaiting the heavenly mandate for return to the tomb. + +“Prepare yourself, Maximilian,” he said with a smile; “we leave Paris +tomorrow.” + +“Have you nothing more to do there?” asked Morrel. + +“No,” replied Monte Cristo; “God grant I may not have done too much +already.” + +The next day they indeed left, accompanied only by Baptistin. Haydée +had taken away Ali, and Bertuccio remained with Noirtier. + + + + Chapter 112. The Departure + +The recent events formed the theme of conversation throughout all +Paris. Emmanuel and his wife conversed with natural astonishment in +their little apartment in the Rue Meslay upon the three successive, +sudden, and most unexpected catastrophes of Morcerf, Danglars, and +Villefort. Maximilian, who was paying them a visit, listened to their +conversation, or rather was present at it, plunged in his accustomed +state of apathy. + +“Indeed,” said Julie, “might we not almost fancy, Emmanuel, that those +people, so rich, so happy but yesterday, had forgotten in their +prosperity that an evil genius—like the wicked fairies in Perrault’s +stories who present themselves unbidden at a wedding or baptism—hovered +over them, and appeared all at once to revenge himself for their fatal +neglect?” + +“What a dire misfortune!” said Emmanuel, thinking of Morcerf and +Danglars. + +“What dreadful sufferings!” said Julie, remembering Valentine, but +whom, with a delicacy natural to women, she did not name before her +brother. + +“If the Supreme Being has directed the fatal blow,” said Emmanuel, “it +must be that he in his great goodness has perceived nothing in the past +lives of these people to merit mitigation of their awful punishment.” + +“Do you not form a very rash judgment, Emmanuel?” said Julie. “When my +father, with a pistol in his hand, was once on the point of committing +suicide, had anyone then said, ‘This man deserves his misery,’ would +not that person have been deceived?” + +“Yes; but your father was not allowed to fall. A being was commissioned +to arrest the fatal hand of death about to descend on him.” + +Emmanuel had scarcely uttered these words when the sound of the bell +was heard, the well-known signal given by the porter that a visitor had +arrived. Nearly at the same instant the door was opened and the Count +of Monte Cristo appeared on the threshold. The young people uttered a +cry of joy, while Maximilian raised his head, but let it fall again +immediately. + +50201m + + + +“Maximilian,” said the count, without appearing to notice the different +impressions which his presence produced on the little circle, “I come +to seek you.” + +“To seek me?” repeated Morrel, as if awakening from a dream. + +“Yes,” said Monte Cristo; “has it not been agreed that I should take +you with me, and did I not tell you yesterday to prepare for +departure?” + +“I am ready,” said Maximilian; “I came expressly to wish them +farewell.” + +“Whither are you going, count?” asked Julie. + +“In the first instance to Marseilles, madame.” + +“To Marseilles!” exclaimed the young couple. + +“Yes, and I take your brother with me.” + +“Oh, count.” said Julie, “will you restore him to us cured of his +melancholy?” Morrel turned away to conceal the confusion of his +countenance. + +“You perceive, then, that he is not happy?” said the count. + +“Yes,” replied the young woman; “and fear much that he finds our home +but a dull one.” + +“I will undertake to divert him,” replied the count. + +“I am ready to accompany you, sir,” said Maximilian. “Adieu, my kind +friends! Emmanuel—Julie—farewell!” + +“How farewell?” exclaimed Julie; “do you leave us thus, so suddenly, +without any preparations for your journey, without even a passport?” + +“Needless delays but increase the grief of parting,” said Monte Cristo, +“and Maximilian has doubtless provided himself with everything +requisite; at least, I advised him to do so.” + +“I have a passport, and my clothes are ready packed,” said Morrel in +his tranquil but mournful manner. + +“Good,” said Monte Cristo, smiling; “in these prompt arrangements we +recognize the order of a well-disciplined soldier.” + +“And you leave us,” said Julie, “at a moment’s warning? you do not give +us a day—no, not even an hour before your departure?” + +“My carriage is at the door, madame, and I must be in Rome in five +days.” + +“But does Maximilian go to Rome?” exclaimed Emmanuel. + +“I am going wherever it may please the count to take me,” said Morrel, +with a smile full of grief; “I am under his orders for the next month.” + +“Oh, heavens, how strangely he expresses himself, count!” said Julie. + +“Maximilian goes with _me_,” said the count, in his kindest and most +persuasive manner; “therefore do not make yourself uneasy on your +brother’s account.” + +“Once more farewell, my dear sister; Emmanuel, adieu!” Morrel repeated. + +“His carelessness and indifference touch me to the heart,” said Julie. +“Oh, Maximilian, Maximilian, you are certainly concealing something +from us.” + +“Pshaw!” said Monte Cristo, “you will see him return to you gay, +smiling, and joyful.” + +Maximilian cast a look of disdain, almost of anger, on the count. + +“We must leave you,” said Monte Cristo. + +50203m + + + +“Before you quit us, count,” said Julie, “will you permit us to express +to you all that the other day——” + +“Madame,” interrupted the count, taking her two hands in his, “all that +you could say in words would never express what I read in your eyes; +the thoughts of your heart are fully understood by mine. Like +benefactors in romances, I should have left you without seeing you +again, but that would have been a virtue beyond my strength, because I +am a weak and vain man, fond of the tender, kind, and thankful glances +of my fellow-creatures. On the eve of departure I carry my egotism so +far as to say, ‘Do not forget me, my kind friends, for probably you +will never see me again.’” + +“Never see you again?” exclaimed Emmanuel, while two large tears rolled +down Julie’s cheeks, “never behold you again? It is not a man, then, +but some angel that leaves us, and this angel is on the point of +returning to heaven after having appeared on earth to do good.” + +“Say not so,” quickly returned Monte Cristo—“say not so, my friends; +angels never err, celestial beings remain where they wish to be. Fate +is not more powerful than they; it is they who, on the contrary, +overcome fate. No, Emmanuel, I am but a man, and your admiration is as +unmerited as your words are sacrilegious.” + +And pressing his lips on the hand of Julie, who rushed into his arms, +he extended his other hand to Emmanuel; then tearing himself from this +abode of peace and happiness, he made a sign to Maximilian, who +followed him passively, with the indifference which had been +perceptible in him ever since the death of Valentine had so stunned +him. + +“Restore my brother to peace and happiness,” whispered Julie to Monte +Cristo. And the count pressed her hand in reply, as he had done eleven +years before on the staircase leading to Morrel’s study. + +“You still confide, then, in Sinbad the Sailor?” asked he, smiling. + +“Oh, yes,” was the ready answer. + +“Well, then, sleep in peace, and put your trust in the Lord.” + +As we have before said, the post-chaise was waiting; four powerful +horses were already pawing the ground with impatience, while Ali, +apparently just arrived from a long walk, was standing at the foot of +the steps, his face bathed in perspiration. + +“Well,” asked the count in Arabic, “have you been to see the old man?” +Ali made a sign in the affirmative. + +“And have you placed the letter before him, as I ordered you to do?” + +The slave respectfully signalized that he had. + +“And what did he say, or rather do?” Ali placed himself in the light, +so that his master might see him distinctly, and then imitating in his +intelligent manner the countenance of the old man, he closed his eyes, +as Noirtier was in the custom of doing when saying “Yes.” + +“Good; he accepts,” said Monte Cristo. “Now let us go.” + +50205m + + + +These words had scarcely escaped him, when the carriage was on its way, +and the feet of the horses struck a shower of sparks from the pavement. +Maximilian settled himself in his corner without uttering a word. Half +an hour had passed when the carriage stopped suddenly; the count had +just pulled the silken check-string, which was fastened to Ali’s +finger. The Nubian immediately descended and opened the carriage door. +It was a lovely starlight night—they had just reached the top of the +hill Villejuif, from whence Paris appears like a sombre sea tossing its +millions of phosphoric waves into light—waves indeed more noisy, more +passionate, more changeable, more furious, more greedy, than those of +the tempestuous ocean,—waves which never rest as those of the sea +sometimes do,—waves ever dashing, ever foaming, ever ingulfing what +falls within their grasp. + +The count stood alone, and at a sign from his hand, the carriage went +on for a short distance. With folded arms, he gazed for some time upon +the great city. When he had fixed his piercing look on this modern +Babylon, which equally engages the contemplation of the religious +enthusiast, the materialist, and the scoffer,— + +“Great city,” murmured he, inclining his head, and joining his hands as +if in prayer, “less than six months have elapsed since first I entered +thy gates. I believe that the Spirit of God led my steps to thee and +that he also enables me to quit thee in triumph; the secret cause of my +presence within thy walls I have confided alone to him who only has had +the power to read my heart. God only knows that I retire from thee +without pride or hatred, but not without many regrets; he only knows +that the power confided to me has never been made subservient to my +personal good or to any useless cause. Oh, great city, it is in thy +palpitating bosom that I have found that which I sought; like a patient +miner, I have dug deep into thy very entrails to root out evil thence. +Now my work is accomplished, my mission is terminated, now thou canst +neither afford me pain nor pleasure. Adieu, Paris, adieu!” + +His look wandered over the vast plain like that of some genius of the +night; he passed his hand over his brow, got into the carriage, the +door was closed on him, and the vehicle quickly disappeared down the +other side of the hill in a whirlwind of dust and noise. + +Ten leagues were passed and not a single word was uttered. Morrel was +dreaming, and Monte Cristo was looking at the dreamer. + +“Morrel,” said the count to him at length, “do you repent having +followed me?” + +“No, count; but to leave Paris——” + +“If I thought happiness might await you in Paris, Morrel, I would have +left you there.” + +“Valentine reposes within the walls of Paris, and to leave Paris is +like losing her a second time.” + +“Maximilian,” said the count, “the friends that we have lost do not +repose in the bosom of the earth, but are buried deep in our hearts, +and it has been thus ordained that we may always be accompanied by +them. I have two friends, who in this way never depart from me; the one +who gave me being, and the other who conferred knowledge and +intelligence on me. Their spirits live in me. I consult them when +doubtful, and if I ever do any good, it is due to their beneficent +counsels. Listen to the voice of your heart, Morrel, and ask it whether +you ought to preserve this melancholy exterior towards me.” + +“My friend,” said Maximilian, “the voice of my heart is very sorrowful, +and promises me nothing but misfortune.” + +“It is the way of weakened minds to see everything through a black +cloud. The soul forms its own horizons; your soul is darkened, and +consequently the sky of the future appears stormy and unpromising.” + +“That may possibly be true,” said Maximilian, and he again subsided +into his thoughtful mood. + +The journey was performed with that marvellous rapidity which the +unlimited power of the count ever commanded. Towns fled from them like +shadows on their path, and trees shaken by the first winds of autumn +seemed like giants madly rushing on to meet them, and retreating as +rapidly when once reached. The following morning they arrived at +Châlons, where the count’s steamboat waited for them. Without the loss +of an instant, the carriage was placed on board and the two travellers +embarked without delay. The boat was built for speed; her two +paddle-wheels were like two wings with which she skimmed the water like +a bird. + +Morrel was not insensible to that sensation of delight which is +generally experienced in passing rapidly through the air, and the wind +which occasionally raised the hair from his forehead seemed on the +point of dispelling momentarily the clouds collected there. + +As the distance increased between the travellers and Paris, almost +superhuman serenity appeared to surround the count; he might have been +taken for an exile about to revisit his native land. + +Ere long Marseilles presented herself to view,—Marseilles, white, +fervid, full of life and energy,—Marseilles, the younger sister of Tyre +and Carthage, the successor to them in the empire of the +Mediterranean,—Marseilles, old, yet always young. Powerful memories +were stirred within them by the sight of the round tower, Fort +Saint-Nicolas, the City Hall designed by Puget,28 the port with its +brick quays, where they had both played in childhood, and it was with +one accord that they stopped on the Canebière. + +A vessel was setting sail for Algiers, on board of which the bustle +usually attending departure prevailed. The passengers and their +relations crowded on the deck, friends taking a tender but sorrowful +leave of each other, some weeping, others noisy in their grief, the +whole forming a spectacle that might be exciting even to those who +witnessed similar sights daily, but which had no power to disturb the +current of thought that had taken possession of the mind of Maximilian +from the moment he had set foot on the broad pavement of the quay. + +“Here,” said he, leaning heavily on the arm of Monte Cristo,—“here is +the spot where my father stopped, when the _Pharaon_ entered the port; +it was here that the good old man, whom you saved from death and +dishonor, threw himself into my arms. I yet feel his warm tears on my +face, and his were not the only tears shed, for many who witnessed our +meeting wept also.” + +Monte Cristo gently smiled and said,—“I was there;” at the same time +pointing to the corner of a street. As he spoke, and in the very +direction he indicated, a groan, expressive of bitter grief, was heard, +and a woman was seen waving her hand to a passenger on board the vessel +about to sail. Monte Cristo looked at her with an emotion that must +have been remarked by Morrel had not his eyes been fixed on the vessel. + +“Oh, heavens!” exclaimed Morrel, “I do not deceive myself—that young +man who is waving his hat, that youth in the uniform of a lieutenant, +is Albert de Morcerf!” + +“Yes,” said Monte Cristo, “I recognized him.” + +“How so?—you were looking the other way.” + +50209m + + + +The count smiled, as he was in the habit of doing when he did not want +to make any reply, and he again turned towards the veiled woman, who +soon disappeared at the corner of the street. Turning to his friend: + +“Dear Maximilian,” said the count, “have you nothing to do in this +land?” + +“I have to weep over the grave of my father,” replied Morrel in a +broken voice. + +“Well, then, go,—wait for me there, and I will soon join you.” + +“You leave me, then?” + +“Yes; I also have a pious visit to pay.” + +Morrel allowed his hand to fall into that which the count extended to +him; then with an inexpressibly sorrowful inclination of the head he +quitted the count and bent his steps to the east of the city. Monte +Cristo remained on the same spot until Maximilian was out of sight; he +then walked slowly towards the Allées de Meilhan to seek out a small +house with which our readers were made familiar at the beginning of +this story. + +It yet stood, under the shade of the fine avenue of lime-trees, which +forms one of the most frequent walks of the idlers of Marseilles, +covered by an immense vine, which spreads its aged and blackened +branches over the stone front, burnt yellow by the ardent sun of the +south. Two stone steps worn away by the friction of many feet led to +the door, which was made of three planks; the door had never been +painted or varnished, so great cracks yawned in it during the dry +season to close again when the rains came on. The house, with all its +crumbling antiquity and apparent misery, was yet cheerful and +picturesque, and was the same that old Dantès formerly inhabited—the +only difference being that the old man occupied merely the garret, +while the whole house was now placed at the command of Mercédès by the +count. + +The woman whom the count had seen leave the ship with so much regret +entered this house; she had scarcely closed the door after her when +Monte Cristo appeared at the corner of a street, so that he found and +lost her again almost at the same instant. The worn out steps were old +acquaintances of his; he knew better than anyone else how to open that +weather-beaten door with the large headed nail which served to raise +the latch within. He entered without knocking, or giving any other +intimation of his presence, as if he had been a friend or the master of +the place. At the end of a passage paved with bricks, was a little +garden, bathed in sunshine, and rich in warmth and light. In this +garden Mercédès had found, at the place indicated by the count, the sum +of money which he, through a sense of delicacy, had described as having +been placed there twenty-four years previously. The trees of the garden +were easily seen from the steps of the street-door. + +Monte Cristo, on stepping into the house, heard a sigh that was almost +a deep sob; he looked in the direction whence it came, and there under +an arbor of Virginia jessamine,29 with its thick foliage and beautiful +long purple flowers, he saw Mercédès seated, with her head bowed, and +weeping bitterly. She had raised her veil, and with her face hidden by +her hands was giving free scope to the sighs and tears which had been +so long restrained by the presence of her son. + +Monte Cristo advanced a few steps, which were heard on the gravel. +Mercédès raised her head, and uttered a cry of terror on beholding a +man before her. + +50211m + + + +“Madame,” said the count, “it is no longer in my power to restore you +to happiness, but I offer you consolation; will you deign to accept it +as coming from a friend?” + +“I am, indeed, most wretched,” replied Mercédès. “Alone in the world, I +had but my son, and he has left me!” + +“He possesses a noble heart, madame,” replied the count, “and he has +acted rightly. He feels that every man owes a tribute to his country; +some contribute their talents, others their industry; these devote +their blood, those their nightly labors, to the same cause. Had he +remained with you, his life must have become a hateful burden, nor +would he have participated in your griefs. He will increase in strength +and honor by struggling with adversity, which he will convert into +prosperity. Leave him to build up the future for you, and I venture to +say you will confide it to safe hands.” + +“Oh,” replied the wretched woman, mournfully shaking her head, “the +prosperity of which you speak, and which, from the bottom of my heart, +I pray God in his mercy to grant him, I can never enjoy. The bitter cup +of adversity has been drained by me to the very dregs, and I feel that +the grave is not far distant. You have acted kindly, count, in bringing +me back to the place where I have enjoyed so much bliss. I ought to +meet death on the same spot where happiness was once all my own.” + +“Alas,” said Monte Cristo, “your words sear and embitter my heart, the +more so as you have every reason to hate me. I have been the cause of +all your misfortunes; but why do you pity, instead of blaming me? You +render me still more unhappy——” + +“Hate you, blame you—_you_, Edmond! Hate, reproach, the man that has +spared my son’s life! For was it not your fatal and sanguinary +intention to destroy that son of whom M. de Morcerf was so proud? Oh, +look at me closely, and discover, if you can, even the semblance of a +reproach in me.” + +The count looked up and fixed his eyes on Mercédès, who arose partly +from her seat and extended both her hands towards him. + +“Oh, look at me,” continued she, with a feeling of profound melancholy, +“my eyes no longer dazzle by their brilliancy, for the time has long +fled since I used to smile on Edmond Dantès, who anxiously looked out +for me from the window of yonder garret, then inhabited by his old +father. Years of grief have created an abyss between those days and the +present. I neither reproach you nor hate you, my friend. Oh, no, +Edmond, it is myself that I blame, myself that I hate! Oh, miserable +creature that I am!” cried she, clasping her hands, and raising her +eyes to heaven. “I once possessed piety, innocence, and love, the three +ingredients of the happiness of angels, and now what am I?” + +Monte Cristo approached her, and silently took her hand. + +“No,” said she, withdrawing it gently—“no, my friend, touch me not. You +have spared me, yet of all those who have fallen under your vengeance I +was the most guilty. They were influenced by hatred, by avarice, and by +self-love; but I was base, and for want of courage acted against my +judgment. Nay, do not press my hand, Edmond; you are thinking, I am +sure, of some kind speech to console me, but do not utter it to me, +reserve it for others more worthy of your kindness. See” (and she +exposed her face completely to view)—“see, misfortune has silvered my +hair, my eyes have shed so many tears that they are encircled by a rim +of purple, and my brow is wrinkled. You, Edmond, on the contrary,—you +are still young, handsome, dignified; it is because you have had faith; +because you have had strength, because you have had trust in God, and +God has sustained you. But as for me, I have been a coward; I have +denied God and he has abandoned me.” + +50213m + + + +Mercédès burst into tears; her woman’s heart was breaking under its +load of memories. Monte Cristo took her hand and imprinted a kiss on +it; but she herself felt that it was a kiss of no greater warmth than +he would have bestowed on the hand of some marble statue of a saint. + +“It often happens,” continued she, “that a first fault destroys the +prospects of a whole life. I believed you dead; why did I survive you? +What good has it done me to mourn for you eternally in the secret +recesses of my heart?—only to make a woman of thirty-nine look like a +woman of fifty. Why, having recognized you, and I the only one to do +so—why was I able to save my son alone? Ought I not also to have +rescued the man that I had accepted for a husband, guilty though he +were? Yet I let him die! What do I say? Oh, merciful heavens, was I not +accessory to his death by my supine insensibility, by my contempt for +him, not remembering, or not willing to remember, that it was for my +sake he had become a traitor and a perjurer? In what am I benefited by +accompanying my son so far, since I now abandon him, and allow him to +depart alone to the baneful climate of Africa? Oh, I have been base, +cowardly, I tell you; I have abjured my affections, and like all +renegades I am of evil omen to those who surround me!” + +“No, Mercédès,” said Monte Cristo, “no; you judge yourself with too +much severity. You are a noble-minded woman, and it was your grief that +disarmed me. Still I was but an agent, led on by an invisible and +offended Deity, who chose not to withhold the fatal blow that I was +destined to hurl. I take that God to witness, at whose feet I have +prostrated myself daily for the last ten years, that I would have +sacrificed my life to you, and with my life the projects that were +indissolubly linked with it. But—and I say it with some pride, +Mercédès—God needed me, and I lived. Examine the past and the present, +and endeavor to dive into futurity, and then say whether I am not a +divine instrument. The most dreadful misfortunes, the most frightful +sufferings, the abandonment of all those who loved me, the persecution +of those who did not know me, formed the trials of my youth; when +suddenly, from captivity, solitude, misery, I was restored to light and +liberty, and became the possessor of a fortune so brilliant, so +unbounded, so unheard-of, that I must have been blind not to be +conscious that God had endowed me with it to work out his own great +designs. From that time I looked upon this fortune as something +confided to me for a particular purpose. Not a thought was given to a +life which you once, Mercédès, had the power to render blissful; not +one hour of peaceful calm was mine; but I felt myself driven on like an +exterminating angel. Like adventurous captains about to embark on some +enterprise full of danger, I laid in my provisions, I loaded my +weapons, I collected every means of attack and defence; I inured my +body to the most violent exercises, my soul to the bitterest trials; I +taught my arm to slay, my eyes to behold excruciating sufferings, and +my mouth to smile at the most horrid spectacles. Good-natured, +confiding, and forgiving as I had been, I became revengeful, cunning, +and wicked, or rather, immovable as fate. Then I launched out into the +path that was opened to me. I overcame every obstacle, and reached the +goal; but woe to those who stood in my pathway!” + +50215m + + + +“Enough,” said Mercédès; “enough, Edmond! Believe me, that she who +alone recognized you has been the only one to comprehend you; and had +she crossed your path, and you had crushed her like glass, still, +Edmond, still she must have admired you! Like the gulf between me and +the past, there is an abyss between you, Edmond, and the rest of +mankind; and I tell you freely that the comparison I draw between you +and other men will ever be one of my greatest tortures. No, there is +nothing in the world to resemble you in worth and goodness! But we must +say farewell, Edmond, and let us part.” + +“Before I leave you, Mercédès, have you no request to make?” said the +count. + +“I desire but one thing in this world, Edmond,—the happiness of my +son.” + +“Pray to the Almighty to spare his life, and I will take upon myself to +promote his happiness.” + +“Thank you, Edmond.” + +“But have you no request to make for yourself, Mercédès?” + +“For myself I want nothing. I live, as it were, between two graves. One +is that of Edmond Dantès, lost to me long, long since. He had my love! +That word ill becomes my faded lip now, but it is a memory dear to my +heart, and one that I would not lose for all that the world contains. +The other grave is that of the man who met his death from the hand of +Edmond Dantès. I approve of the deed, but I must pray for the dead.” + +“Your son shall be happy, Mercédès,” repeated the count. + +“Then I shall enjoy as much happiness as this world can possibly +confer.” + +“But what are your intentions?” + +Mercédès smiled sadly. + +“To say that I shall live here, like the Mercédès of other times, +gaining my bread by labor, would not be true, nor would you believe me. +I have no longer the strength to do anything but to spend my days in +prayer. However, I shall have no occasion to work, for the little sum +of money buried by you, and which I found in the place you mentioned, +will be sufficient to maintain me. Rumor will probably be busy +respecting me, my occupations, my manner of living—that will signify +but little, that concerns God, you, and myself.” + +“Mercédès,” said the count, “I do not say it to blame you, but you made +an unnecessary sacrifice in relinquishing the whole of the fortune +amassed by M. de Morcerf; half of it at least by right belonged to you, +in virtue of your vigilance and economy.” + +“I perceive what you are intending to propose to me; but I cannot +accept it, Edmond—my son would not permit it.” + +“Nothing shall be done without the full approbation of Albert de +Morcerf. I will make myself acquainted with his intentions and will +submit to them. But if he be willing to accept my offers, will you +oppose them?” + +“You well know, Edmond, that I am no longer a reasoning creature; I +have no will, unless it be the will never to decide. I have been so +overwhelmed by the many storms that have broken over my head, that I am +become passive in the hands of the Almighty, like a sparrow in the +talons of an eagle. I live, because it is not ordained for me to die. +If succor be sent to me, I will accept it.” + +“Ah, madame,” said Monte Cristo, “you should not talk thus! It is not +so we should evince our resignation to the will of heaven; on the +contrary, we are all free agents.” + +“Alas!” exclaimed Mercédès, “if it were so, if I possessed free-will, +but without the power to render that will efficacious, it would drive +me to despair.” + +Monte Cristo dropped his head and shrank from the vehemence of her +grief. + +“Will you not even say you will see me again?” he asked. + +“On the contrary, we shall meet again,” said Mercédès, pointing to +heaven with solemnity. “I tell you so to prove to you that I still +hope.” + +And after pressing her own trembling hand upon that of the count, +Mercédès rushed up the stairs and disappeared. Monte Cristo slowly left +the house and turned towards the quay. But Mercédès did not witness his +departure, although she was seated at the little window of the room +which had been occupied by old Dantès. Her eyes were straining to see +the ship which was carrying her son over the vast sea; but still her +voice involuntarily murmured softly: + +“Edmond, Edmond, Edmond!” + + + + Chapter 113. The Past + +The count departed with a sad heart from the house in which he had left +Mercédès, probably never to behold her again. Since the death of little +Edward a great change had taken place in Monte Cristo. Having reached +the summit of his vengeance by a long and tortuous path, he saw an +abyss of doubt yawning before him. More than this, the conversation +which had just taken place between Mercédès and himself had awakened so +many recollections in his heart that he felt it necessary to combat +with them. A man of the count’s temperament could not long indulge in +that melancholy which can exist in common minds, but which destroys +superior ones. He thought he must have made an error in his +calculations if he now found cause to blame himself. + +“I cannot have deceived myself,” he said; “I must look upon the past in +a false light. What!” he continued, “can I have been following a false +path?—can the end which I proposed be a mistaken end?—can one hour have +sufficed to prove to an architect that the work upon which he founded +all his hopes was an impossible, if not a sacrilegious, undertaking? I +cannot reconcile myself to this idea—it would madden me. The reason why +I am now dissatisfied is that I have not a clear appreciation of the +past. The past, like the country through which we walk, becomes +indistinct as we advance. My position is like that of a person wounded +in a dream; he feels the wound, though he cannot recollect when he +received it. + +“Come, then, thou regenerate man, thou extravagant prodigal, thou +awakened sleeper, thou all-powerful visionary, thou invincible +millionaire,—once again review thy past life of starvation and +wretchedness, revisit the scenes where fate and misfortune conducted, +and where despair received thee. Too many diamonds, too much gold and +splendor, are now reflected by the mirror in which Monte Cristo seeks +to behold Dantès. Hide thy diamonds, bury thy gold, shroud thy +splendor, exchange riches for poverty, liberty for a prison, a living +body for a corpse!” + +As he thus reasoned, Monte Cristo walked down the Rue de la Caisserie. +It was the same through which, twenty-four years ago, he had been +conducted by a silent and nocturnal guard; the houses, today so smiling +and animated, were on that night dark, mute, and closed. + +“And yet they were the same,” murmured Monte Cristo, “only now it is +broad daylight instead of night; it is the sun which brightens the +place, and makes it appear so cheerful.” + +He proceeded towards the quay by the Rue Saint-Laurent, and advanced to +the Consigne; it was the point where he had embarked. A pleasure-boat +with striped awning was going by. Monte Cristo called the owner, who +immediately rowed up to him with the eagerness of a boatman hoping for +a good fare. + +The weather was magnificent, and the excursion a treat. The sun, red +and flaming, was sinking into the embrace of the welcoming ocean. The +sea, smooth as crystal, was now and then disturbed by the leaping of +fish, which were pursued by some unseen enemy and sought for safety in +another element; while on the extreme verge of the horizon might be +seen the fishermen’s boats, white and graceful as the sea-gull, or the +merchant vessels bound for Corsica or Spain. + +But notwithstanding the serene sky, the gracefully formed boats, and +the golden light in which the whole scene was bathed, the Count of +Monte Cristo, wrapped in his cloak, could think only of this terrible +voyage, the details of which were one by one recalled to his memory. +The solitary light burning at the Catalans; that first sight of the +Château d’If, which told him whither they were leading him; the +struggle with the gendarmes when he wished to throw himself overboard; +his despair when he found himself vanquished, and the sensation when +the muzzle of the carbine touched his forehead—all these were brought +before him in vivid and frightful reality. + +Like the streams which the heat of the summer has dried up, and which +after the autumnal storms gradually begin oozing drop by drop, so did +the count feel his heart gradually fill with the bitterness which +formerly nearly overwhelmed Edmond Dantès. Clear sky, swift-flitting +boats, and brilliant sunshine disappeared; the heavens were hung with +black, and the gigantic structure of the Château d’If seemed like the +phantom of a mortal enemy. As they reached the shore, the count +instinctively shrunk to the extreme end of the boat, and the owner was +obliged to call out, in his sweetest tone of voice: + +“Sir, we are at the landing.” + +Monte Cristo remembered that on that very spot, on the same rock, he +had been violently dragged by the guards, who forced him to ascend the +slope at the points of their bayonets. The journey had seemed very long +to Dantès, but Monte Cristo found it equally short. Each stroke of the +oar seemed to awaken a new throng of ideas, which sprang up with the +flying spray of the sea. + +50219m + + + +There had been no prisoners confined in the Château d’If since the +revolution of July; it was only inhabited by a guard, kept there for +the prevention of smuggling. A concierge waited at the door to exhibit +to visitors this monument of curiosity, once a scene of terror. + +The count inquired whether any of the ancient jailers were still there; +but they had all been pensioned, or had passed on to some other +employment. The concierge who attended him had only been there since +1830. He visited his own dungeon. He again beheld the dull light vainly +endeavoring to penetrate the narrow opening. His eyes rested upon the +spot where had stood his bed, since then removed, and behind the bed +the new stones indicated where the breach made by the Abbé Faria had +been. Monte Cristo felt his limbs tremble; he seated himself upon a log +of wood. + +“Are there any stories connected with this prison besides the one +relating to the poisoning of Mirabeau?” asked the count; “are there any +traditions respecting these dismal abodes,—in which it is difficult to +believe men can ever have imprisoned their fellow-creatures?” + +“Yes, sir; indeed, the jailer Antoine told me one connected with this +very dungeon.” + +Monte Cristo shuddered; Antoine had been his jailer. He had almost +forgotten his name and face, but at the mention of the name he recalled +his person as he used to see it, the face encircled by a beard, wearing +the brown jacket, the bunch of keys, the jingling of which he still +seemed to hear. The count turned around, and fancied he saw him in the +corridor, rendered still darker by the torch carried by the concierge. + +“Would you like to hear the story, sir?” + +“Yes; relate it,” said Monte Cristo, pressing his hand to his heart to +still its violent beatings; he felt afraid of hearing his own history. + +“This dungeon,” said the concierge, “was, it appears, some time ago +occupied by a very dangerous prisoner, the more so since he was full of +industry. Another person was confined in the Château at the same time, +but he was not wicked, he was only a poor mad priest.” + +“Ah, indeed?—mad!” repeated Monte Cristo; “and what was his mania?” + +“He offered millions to anyone who would set him at liberty.” + +Monte Cristo raised his eyes, but he could not see the heavens; there +was a stone veil between him and the firmament. He thought that there +had been no less thick a veil before the eyes of those to whom Faria +offered the treasures. + +“Could the prisoners see each other?” he asked. + +“Oh, no, sir, it was expressly forbidden; but they eluded the vigilance +of the guards, and made a passage from one dungeon to the other.” + +“And which of them made this passage?” + +“Oh, it must have been the young man, certainly, for he was strong and +industrious, while the abbé was aged and weak; besides, his mind was +too vacillating to allow him to carry out an idea.” + +“Blind fools!” murmured the count. + +“However, be that as it may, the young man made a tunnel, how or by +what means no one knows; but he made it, and there is the evidence yet +remaining of his work. Do you see it?” and the man held the torch to +the wall. + +50223m + + + +“Ah, yes; I see,” said the count, in a voice hoarse from emotion. + +“The result was that the two men communicated with one another; how +long they did so, nobody knows. One day the old man fell ill and died. +Now guess what the young one did?” + +“Tell me.” + +“He carried off the corpse, which he placed in his own bed with its +face to the wall; then he entered the empty dungeon, closed the +entrance, and slipped into the sack which had contained the dead body. +Did you ever hear of such an idea?” + +Monte Cristo closed his eyes, and seemed again to experience all the +sensations he had felt when the coarse canvas, yet moist with the cold +dews of death, had touched his face. + +The jailer continued: + +“Now this was his project. He fancied that they buried the dead at the +Château d’If, and imagining they would not expend much labor on the +grave of a prisoner, he calculated on raising the earth with his +shoulders, but unfortunately their arrangements at the Château +frustrated his projects. They never buried the dead; they merely +attached a heavy cannon-ball to the feet, and then threw them into the +sea. This is what was done. The young man was thrown from the top of +the rock; the corpse was found on the bed next day, and the whole truth +was guessed, for the men who performed the office then mentioned what +they had not dared to speak of before, that at the moment the corpse +was thrown into the deep, they heard a shriek, which was almost +immediately stifled by the water in which it disappeared.” + +The count breathed with difficulty; the cold drops ran down his +forehead, and his heart was full of anguish. + +“No,” he muttered, “the doubt I felt was but the commencement of +forgetfulness; but here the wound reopens, and the heart again thirsts +for vengeance. And the prisoner,” he continued aloud, “was he ever +heard of afterwards?” + +“Oh, no; of course not. You can understand that one of two things must +have happened; he must either have fallen flat, in which case the blow, +from a height of ninety feet, must have killed him instantly, or he +must have fallen upright, and then the weight would have dragged him to +the bottom, where he remained—poor fellow!” + +“Then you pity him?” said the count. + +“_Ma foi_, yes; though he was in his own element.” + +“What do you mean?” + +“The report was that he had been a naval officer, who had been confined +for plotting with the Bonapartists.” + +“Great is truth,” muttered the count, “fire cannot burn, nor water +drown it! Thus the poor sailor lives in the recollection of those who +narrate his history; his terrible story is recited in the +chimney-corner, and a shudder is felt at the description of his transit +through the air to be swallowed by the deep.” Then, the count added +aloud, “Was his name ever known?” + +“Oh, yes; but only as No. 34.” + +“Oh, Villefort, Villefort,” murmured the count, “this scene must often +have haunted thy sleepless hours!” + +“Do you wish to see anything more, sir?” said the concierge. + +“Yes, especially if you will show me the poor abbé’s room.” + +“Ah! No. 27.” + +“Yes; No. 27.” repeated the count, who seemed to hear the voice of the +abbé answering him in those very words through the wall when asked his +name. + +“Come, sir.” + +“Wait,” said Monte Cristo, “I wish to take one final glance around this +room.” + +“This is fortunate,” said the guide; “I have forgotten the other key.” + +“Go and fetch it.” + +“I will leave you the torch, sir.” + +“No, take it away; I can see in the dark.” + +“Why, you are like No. 34. They said he was so accustomed to darkness +that he could see a pin in the darkest corner of his dungeon.” + +“He spent fourteen years to arrive at that,” muttered the count. + +The guide carried away the torch. The count had spoken correctly. +Scarcely had a few seconds elapsed, ere he saw everything as distinctly +as by daylight. Then he looked around him, and really recognized his +dungeon. + +“Yes,” he said, “there is the stone upon which I used to sit; there is +the impression made by my shoulders on the wall; there is the mark of +my blood made when one day I dashed my head against the wall. Oh, those +figures, how well I remember them! I made them one day to calculate the +age of my father, that I might know whether I should find him still +living, and that of Mercédès, to know if I should find her still free. +After finishing that calculation, I had a minute’s hope. I did not +reckon upon hunger and infidelity!” and a bitter laugh escaped the +count. + +He saw in fancy the burial of his father, and the marriage of Mercédès. +On the other side of the dungeon he perceived an inscription, the white +letters of which were still visible on the green wall: + +“‘_Oh, God!_’” he read, “‘_preserve my memory!_’” + +“Oh, yes,” he cried, “that was my only prayer at last; I no longer +begged for liberty, but memory; I dreaded to become mad and forgetful. +Oh, God, thou hast preserved my memory; I thank thee, I thank thee!” + +At this moment the light of the torch was reflected on the wall; the +guide was coming; Monte Cristo went to meet him. + +“Follow me, sir;” and without ascending the stairs the guide conducted +him by a subterraneous passage to another entrance. There, again, Monte +Cristo was assailed by a multitude of thoughts. The first thing that +met his eye was the meridian, drawn by the abbé on the wall, by which +he calculated the time; then he saw the remains of the bed on which the +poor prisoner had died. The sight of this, instead of exciting the +anguish experienced by the count in the dungeon, filled his heart with +a soft and grateful sentiment, and tears fell from his eyes. + +“This is where the mad abbé was kept, sir, and that is where the young +man entered;” and the guide pointed to the opening, which had remained +unclosed. “From the appearance of the stone,” he continued, “a learned +gentleman discovered that the prisoners might have communicated +together for ten years. Poor things! Those must have been ten weary +years.” + +Dantès took some louis from his pocket, and gave them to the man who +had twice unconsciously pitied him. The guide took them, thinking them +merely a few pieces of little value; but the light of the torch +revealed their true worth. + +“Sir,” he said, “you have made a mistake; you have given me gold.” + +“I know it.” + +The concierge looked upon the count with surprise. + +“Sir,” he cried, scarcely able to believe his good fortune—“sir, I +cannot understand your generosity!” + +“Oh, it is very simple, my good fellow; I have been a sailor, and your +story touched me more than it would others.” + +“Then, sir, since you are so liberal, I ought to offer you something.” + +50227m + + + +“What have you to offer to me, my friend? Shells? Straw-work? Thank +you!” + +“No, sir, neither of those; something connected with this story.” + +“Really? What is it?” + +“Listen,” said the guide; “I said to myself, ‘Something is always left +in a cell inhabited by one prisoner for fifteen years,’ so I began to +sound the wall.” + +“Ah,” cried Monte Cristo, remembering the abbé’s two hiding-places. + +“After some search, I found that the floor gave a hollow sound near the +head of the bed, and at the hearth.” + +“Yes,” said the count, “yes.” + +“I raised the stones, and found——” + +“A rope-ladder and some tools?” + +“How do you know that?” asked the guide in astonishment. + +“I do not know—I only guess it, because that sort of thing is generally +found in prisoners’ cells.” + +“Yes, sir, a rope-ladder and tools.” + +“And have you them yet?” + +“No, sir; I sold them to visitors, who considered them great +curiosities; but I have still something left.” + +“What is it?” asked the count, impatiently. + +“A sort of book, written upon strips of cloth.” + +“Go and fetch it, my good fellow; and if it be what I hope, you will do +well.” + +“I will run for it, sir;” and the guide went out. + +Then the count knelt down by the side of the bed, which death had +converted into an altar. + +“Oh, second father,” he exclaimed, “thou who hast given me liberty, +knowledge, riches; thou who, like beings of a superior order to +ourselves, couldst understand the science of good and evil; if in the +depths of the tomb there still remain something within us which can +respond to the voice of those who are left on earth; if after death the +soul ever revisit the places where we have lived and suffered,—then, +noble heart, sublime soul, then I conjure thee by the paternal love +thou didst bear me, by the filial obedience I vowed to thee, grant me +some sign, some revelation! Remove from me the remains of doubt, which, +if it change not to conviction, must become remorse!” The count bowed +his head, and clasped his hands together. + +“Here, sir,” said a voice behind him. + +Monte Cristo shuddered, and arose. The concierge held out the strips of +cloth upon which the Abbé Faria had spread the riches of his mind. The +manuscript was the great work by the Abbé Faria upon the kingdoms of +Italy. The count seized it hastily, his eyes immediately fell upon the +epigraph, and he read: + +“Thou shalt tear out the dragons’ teeth, and shall trample the lions +under foot, saith the Lord.” + +“Ah,” he exclaimed, “here is my answer. Thanks, father, thanks.” And +feeling in his pocket, he took thence a small pocket-book, which +contained ten bank-notes, each of 1,000 francs. + +“Here,” he said, “take this pocket-book.” + +“Do you give it to me?” + +“Yes; but only on condition that you will not open it till I am gone;” +and placing in his breast the treasure he had just found, which was +more valuable to him than the richest jewel, he rushed out of the +corridor, and reaching his boat, cried, “To Marseilles!” + +Then, as he departed, he fixed his eyes upon the gloomy prison. + +“Woe,” he cried, “to those who confined me in that wretched prison; and +woe to those who forgot that I was there!” + +50229m + + + +As he repassed the Catalans, the count turned around and burying his +head in his cloak murmured the name of a woman. The victory was +complete; twice he had overcome his doubts. The name he pronounced, in +a voice of tenderness, amounting almost to love, was that of Haydée. + +On landing, the count turned towards the cemetery, where he felt sure +of finding Morrel. He, too, ten years ago, had piously sought out a +tomb, and sought it vainly. He, who returned to France with millions, +had been unable to find the grave of his father, who had perished from +hunger. Morrel had indeed placed a cross over the spot, but it had +fallen down and the grave-digger had burnt it, as he did all the old +wood in the churchyard. + +The worthy merchant had been more fortunate. Dying in the arms of his +children, he had been by them laid by the side of his wife, who had +preceded him in eternity by two years. Two large slabs of marble, on +which were inscribed their names, were placed on either side of a +little enclosure, railed in, and shaded by four cypress-trees. Morrel +was leaning against one of these, mechanically fixing his eyes on the +graves. His grief was so profound that he was nearly unconscious. + +50231m + + + +“Maximilian,” said the count, “you should not look on the graves, but +there;” and he pointed upwards. + +“The dead are everywhere,” said Morrel; “did you not yourself tell me +so as we left Paris?” + +“Maximilian,” said the count, “you asked me during the journey to allow +you to remain some days at Marseilles. Do you still wish to do so?” + +“I have no wishes, count; only I fancy I could pass the time less +painfully here than anywhere else.” + +“So much the better, for I must leave you; but I carry your word with +me, do I not?” + +“Ah, count, I shall forget it.” + +“No, you will not forget it, because you are a man of honor, Morrel, +because you have taken an oath, and are about to do so again.” + +“Oh, count, have pity upon me. I am so unhappy.” + +“I have known a man much more unfortunate than you, Morrel.” + +“Impossible!” + +“Alas,” said Monte Cristo, “it is the infirmity of our nature always to +believe ourselves much more unhappy than those who groan by our sides!” + +“What can be more wretched than the man who has lost all he loved and +desired in the world?” + +“Listen, Morrel, and pay attention to what I am about to tell you. I +knew a man who like you had fixed all his hopes of happiness upon a +woman. He was young, he had an old father whom he loved, a betrothed +bride whom he adored. He was about to marry her, when one of the +caprices of fate,—which would almost make us doubt the goodness of +Providence, if that Providence did not afterwards reveal itself by +proving that all is but a means of conducting to an end,—one of those +caprices deprived him of his mistress, of the future of which he had +dreamed (for in his blindness he forgot he could only read the +present), and cast him into a dungeon.” + +“Ah,” said Morrel, “one quits a dungeon in a week, a month, or a year.” + +“He remained there fourteen years, Morrel,” said the count, placing his +hand on the young man’s shoulder. Maximilian shuddered. + +“Fourteen years!” he muttered. + +“Fourteen years!” repeated the count. “During that time he had many +moments of despair. He also, Morrel, like you, considered himself the +unhappiest of men.” + +“Well?” asked Morrel. + +“Well, at the height of his despair God assisted him through human +means. At first, perhaps, he did not recognize the infinite mercy of +the Lord, but at last he took patience and waited. One day he +miraculously left the prison, transformed, rich, powerful. His first +cry was for his father; but that father was dead.” + +“My father, too, is dead,” said Morrel. + +“Yes; but your father died in your arms, happy, respected, rich, and +full of years; his father died poor, despairing, almost doubtful of +Providence; and when his son sought his grave ten years afterwards, his +tomb had disappeared, and no one could say, ‘There sleeps the father +you so well loved.’” + +“Oh!” exclaimed Morrel. + +“He was, then, a more unhappy son than you, Morrel, for he could not +even find his father’s grave.” + +“But then he had the woman he loved still remaining?” + +“You are deceived, Morrel, that woman——” + +“She was dead?” + +“Worse than that, she was faithless, and had married one of the +persecutors of her betrothed. You see, then, Morrel, that he was a more +unhappy lover than you.” + +“And has he found consolation?” + +“He has at least found peace.” + +“And does he ever expect to be happy?” + +“He hopes so, Maximilian.” + +The young man’s head fell on his breast. + +“You have my promise,” he said, after a minute’s pause, extending his +hand to Monte Cristo. “Only remember——” + +“On the 5th of October, Morrel, I shall expect you at the Island of +Monte Cristo. On the 4th a yacht will wait for you in the port of +Bastia, it will be called the _Eurus_. You will give your name to the +captain, who will bring you to me. It is understood—is it not?” + +“But, count, do you remember that the 5th of October——” + +“Child,” replied the count, “not to know the value of a man’s word! I +have told you twenty times that if you wish to die on that day, I will +assist you. Morrel, farewell!” + +“Do you leave me?” + +“Yes; I have business in Italy. I leave you alone in your struggle with +misfortune—alone with that strong-winged eagle which God sends to bear +aloft the elect to his feet. The story of Ganymede, Maximilian, is not +a fable, but an allegory.” + +“When do you leave?” + +“Immediately; the steamer waits, and in an hour I shall be far from +you. Will you accompany me to the harbor, Maximilian?” + +50233m + + + +“I am entirely yours, count.” + +Morrel accompanied the count to the harbor. The white steam was +ascending like a plume of feathers from the black chimney. The steamer +soon disappeared, and in an hour afterwards, as the count had said, was +scarcely distinguishable in the horizon amidst the fogs of the night. + + + + Chapter 114. Peppino + +At the same time that the steamer disappeared behind Cape Morgiou, a +man travelling post on the road from Florence to Rome had just passed +the little town of Aquapendente. He was travelling fast enough to cover +a great deal of ground without exciting suspicion. This man was dressed +in a greatcoat, or rather a surtout, a little worse for the journey, +but which exhibited the ribbon of the Legion of Honor still fresh and +brilliant, a decoration which also ornamented the under coat. He might +be recognized, not only by these signs, but also from the accent with +which he spoke to the postilion, as a Frenchman. + +Another proof that he was a native of the universal country was +apparent in the fact of his knowing no other Italian words than the +terms used in music, and which like the “goddam” of Figaro, served all +possible linguistic requirements. “_Allegro!_” he called out to the +postilions at every ascent. “_Moderato!_” he cried as they descended. +And heaven knows there are hills enough between Rome and Florence by +the way of Aquapendente! These two words greatly amused the men to whom +they were addressed. On reaching La Storta, the point from whence Rome +is first visible, the traveller evinced none of the enthusiastic +curiosity which usually leads strangers to stand up and endeavor to +catch sight of the dome of Saint Peter’s, which may be seen long before +any other object is distinguishable. No, he merely drew a pocketbook +from his pocket, and took from it a paper folded in four, and after +having examined it in a manner almost reverential, he said: + +“Good! I have it still!” + +50235m + + + +The carriage entered by the Porta del Popolo, turned to the left, and +stopped at the Hôtel d’Espagne. Old Pastrini, our former acquaintance, +received the traveller at the door, hat in hand. The traveller +alighted, ordered a good dinner, and inquired the address of the house +of Thomson & French, which was immediately given to him, as it was one +of the most celebrated in Rome. It was situated in the Via dei Banchi, +near St. Peter’s. + +In Rome, as everywhere else, the arrival of a post-chaise is an event. +Ten young descendants of Marius and the Gracchi, barefooted and out at +elbows, with one hand resting on the hip and the other gracefully +curved above the head, stared at the traveller, the post-chaise, and +the horses; to these were added about fifty little vagabonds from the +Papal States, who earned a pittance by diving into the Tiber at high +water from the bridge of St. Angelo. Now, as these street Arabs of +Rome, more fortunate than those of Paris, understand every language, +more especially the French, they heard the traveller order an +apartment, a dinner, and finally inquire the way to the house of +Thomson & French. + +The result was that when the new-comer left the hotel with the +_cicerone_, a man detached himself from the rest of the idlers, and +without having been seen by the traveller, and appearing to excite no +attention from the guide, followed the stranger with as much skill as a +Parisian police agent would have used. + +The Frenchman had been so impatient to reach the house of Thomson & +French that he would not wait for the horses to be harnessed, but left +word for the carriage to overtake him on the road, or to wait for him +at the bankers’ door. He reached it before the carriage arrived. The +Frenchman entered, leaving in the anteroom his guide, who immediately +entered into conversation with two or three of the industrious idlers +who are always to be found in Rome at the doors of banking-houses, +churches, museums, or theatres. With the Frenchman, the man who had +followed him entered too; the Frenchman knocked at the inner door, and +entered the first room; his shadow did the same. + +“Messrs. Thomson & French?” inquired the stranger. + +An attendant arose at a sign from a confidential clerk at the first +desk. + +“Whom shall I announce?” said the attendant. + +“Baron Danglars.” + +“Follow me,” said the man. + +A door opened, through which the attendant and the baron disappeared. +The man who had followed Danglars sat down on a bench. The clerk +continued to write for the next five minutes; the man preserved +profound silence, and remained perfectly motionless. Then the pen of +the clerk ceased to move over the paper; he raised his head, and +appearing to be perfectly sure of privacy: + +“Ah, ha,” he said, “here you are, Peppino!” + +“Yes,” was the laconic reply. “You have found out that there is +something worth having about this large gentleman?” + +“There is no great merit due to me, for we were informed of it.” + +“You know his business here, then.” + +“_Pardieu_, he has come to draw, but I don’t know how much!” + +“You will know presently, my friend.” + +“Very well, only do not give me false information as you did the other +day.” + +“What do you mean?—of whom do you speak? Was it the Englishman who +carried off 3,000 crowns from here the other day?” + +50237m + + + +“No; he really had 3,000 crowns, and we found them. I mean the Russian +prince, who you said had 30,000 livres, and we only found 22,000.” + +“You must have searched badly.” + +“Luigi Vampa himself searched.” + +“In that case he must either have paid his debts——” + +“A Russian do that?” + +“Or spent the money?” + +“Possibly, after all.” + +“Certainly. But you must let me make my observations, or the Frenchman +will transact his business without my knowing the sum.” + +Peppino nodded, and taking a rosary from his pocket began to mutter a +few prayers while the clerk disappeared through the same door by which +Danglars and the attendant had gone out. At the expiration of ten +minutes the clerk returned with a beaming countenance. + +“Well?” asked Peppino of his friend. + +“Joy, joy—the sum is large!” + +“Five or six millions, is it not?” + +“Yes, you know the amount.” + +“On the receipt of the Count of Monte Cristo?” + +“Why, how came you to be so well acquainted with all this?” + +“I told you we were informed beforehand.” + +“Then why do you apply to me?” + +“That I may be sure I have the right man.” + +“Yes, it is indeed he. Five millions—a pretty sum, eh, Peppino?” + +“Hush—here is our man!” The clerk seized his pen, and Peppino his +beads; one was writing and the other praying when the door opened. +Danglars looked radiant with joy; the banker accompanied him to the +door. Peppino followed Danglars. + +According to the arrangements, the carriage was waiting at the door. +The guide held the door open. Guides are useful people, who will turn +their hands to anything. Danglars leaped into the carriage like a young +man of twenty. The _cicerone_ reclosed the door, and sprang up by the +side of the coachman. Peppino mounted the seat behind. + +“Will your excellency visit Saint Peter’s?” asked the _cicerone_. + +“I did not come to Rome to see,” said Danglars aloud; then he added +softly, with an avaricious smile, “I came to touch!” and he rapped his +pocket-book, in which he had just placed a letter. + +“Then your excellency is going——” + +“To the hotel.” + +“Casa Pastrini!” said the _cicerone_ to the coachman, and the carriage +drove rapidly on. + +50239m + + + +Ten minutes afterwards the baron entered his apartment, and Peppino +stationed himself on the bench outside the door of the hotel, after +having whispered something in the ear of one of the descendants of +Marius and the Gracchi whom we noticed at the beginning of the chapter, +who immediately ran down the road leading to the Capitol at his fullest +speed. Danglars was tired and sleepy; he therefore went to bed, placing +his pocketbook under his pillow. Peppino had a little spare time, so he +had a game of _morra_ with the facchini, lost three crowns, and then to +console himself drank a bottle of Orvieto. + +The next morning Danglars awoke late, though he went to bed so early; +he had not slept well for five or six nights, even if he had slept at +all. He breakfasted heartily, and caring little, as he said, for the +beauties of the Eternal City, ordered post-horses at noon. But Danglars +had not reckoned upon the formalities of the police and the idleness of +the posting-master. The horses only arrived at two o’clock, and the +_cicerone_ did not bring the passport till three. + +All these preparations had collected a number of idlers round the door +of Signor Pastrini’s; the descendants of Marius and the Gracchi were +also not wanting. The baron walked triumphantly through the crowd, who +for the sake of gain styled him “your excellency.” As Danglars had +hitherto contented himself with being called a baron, he felt rather +flattered at the title of excellency, and distributed a dozen silver +coins among the beggars, who were ready, for twelve more, to call him +“your highness.” + +“Which road?” asked the postilion in Italian. + +“The Ancona road,” replied the baron. Signor Pastrini interpreted the +question and answer, and the horses galloped off. + +Danglars intended travelling to Venice, where he would receive one part +of his fortune, and then proceeding to Vienna, where he would find the +rest, he meant to take up his residence in the latter town, which he +had been told was a city of pleasure. + +He had scarcely advanced three leagues out of Rome when daylight began +to disappear. Danglars had not intended starting so late, or he would +have remained; he put his head out and asked the postilion how long it +would be before they reached the next town. “_Non capisco_” (do not +understand), was the reply. Danglars bent his head, which he meant to +imply, “Very well.” The carriage again moved on. + +“I will stop at the first posting-house,” said Danglars to himself. + +He still felt the same self-satisfaction which he had experienced the +previous evening, and which had procured him so good a night’s rest. He +was luxuriously stretched in a good English calash, with double +springs; he was drawn by four good horses, at full gallop; he knew the +relay to be at a distance of seven leagues. What subject of meditation +could present itself to the banker, so fortunately become bankrupt? + +Danglars thought for ten minutes about his wife in Paris; another ten +minutes about his daughter travelling with Mademoiselle d’Armilly; the +same period was given to his creditors, and the manner in which he +intended spending their money; and then, having no subject left for +contemplation, he shut his eyes, and fell asleep. Now and then a jolt +more violent than the rest caused him to open his eyes; then he felt +that he was still being carried with great rapidity over the same +country, thickly strewn with broken aqueducts, which looked like +granite giants petrified while running a race. But the night was cold, +dull, and rainy, and it was much more pleasant for a traveller to +remain in the warm carriage than to put his head out of the window to +make inquiries of a postilion whose only answer was “_Non capisco_.” + +50241m + + + +Danglars therefore continued to sleep, saying to himself that he would +be sure to awake at the posting-house. The carriage stopped. Danglars +fancied that they had reached the long-desired point; he opened his +eyes and looked through the window, expecting to find himself in the +midst of some town, or at least village; but he saw nothing except what +seemed like a ruin, where three or four men went and came like shadows. + +Danglars waited a moment, expecting the postilion to come and demand +payment with the termination of his stage. He intended taking advantage +of the opportunity to make fresh inquiries of the new conductor; but +the horses were unharnessed, and others put in their places, without +anyone claiming money from the traveller. Danglars, astonished, opened +the door; but a strong hand pushed him back, and the carriage rolled +on. The baron was completely roused. + +“Eh?” he said to the postilion, “eh, _mio caro?_” + +This was another little piece of Italian the baron had learned from +hearing his daughter sing Italian duets with Cavalcanti. But _mio caro_ +did not reply. Danglars then opened the window. + +“Come, my friend,” he said, thrusting his hand through the opening, +“where are we going?” + +“_Dentro la testa!_” answered a solemn and imperious voice, accompanied +by a menacing gesture. + +Danglars thought _dentro la testa_ meant, “Put in your head!” He was +making rapid progress in Italian. He obeyed, not without some +uneasiness, which, momentarily increasing, caused his mind, instead of +being as unoccupied as it was when he began his journey, to fill with +ideas which were very likely to keep a traveller awake, more especially +one in such a situation as Danglars. His eyes acquired that quality +which in the first moment of strong emotion enables them to see +distinctly, and which afterwards fails from being too much taxed. +Before we are alarmed, we see correctly; when we are alarmed, we see +double; and when we have been alarmed, we see nothing but trouble. +Danglars observed a man in a cloak galloping at the right hand of the +carriage. + +“Some gendarme!” he exclaimed. “Can I have been intercepted by French +telegrams to the pontifical authorities?” + +He resolved to end his anxiety. “Where are you taking me?” he asked. + +“_Dentro la testa_,” replied the same voice, with the same menacing +accent. + +Danglars turned to the left; another man on horseback was galloping on +that side. + +“Decidedly,” said Danglars, with the perspiration on his forehead, “I +must be under arrest.” And he threw himself back in the calash, not +this time to sleep, but to think. + +Directly afterwards the moon rose. He then saw the great aqueducts, +those stone phantoms which he had before remarked, only then they were +on the right hand, now they were on the left. He understood that they +had described a circle, and were bringing him back to Rome. + +“Oh, unfortunate!” he cried, “they must have obtained my arrest.” + +The carriage continued to roll on with frightful speed. An hour of +terror elapsed, for every spot they passed showed that they were on the +road back. At length he saw a dark mass, against which it seemed as if +the carriage was about to dash; but the vehicle turned to one side, +leaving the barrier behind and Danglars saw that it was one of the +ramparts encircling Rome. + +50243m + + + +“_Mon dieu!_” cried Danglars, “we are not returning to Rome; then it is +not justice which is pursuing me! Gracious heavens; another idea +presents itself—what if they should be——” + +His hair stood on end. He remembered those interesting stories, so +little believed in Paris, respecting Roman bandits; he remembered the +adventures that Albert de Morcerf had related when it was intended that +he should marry Mademoiselle Eugénie. “They are robbers, perhaps,” he +muttered. + +Just then the carriage rolled on something harder than gravel road. +Danglars hazarded a look on both sides of the road, and perceived +monuments of a singular form, and his mind now recalled all the details +Morcerf had related, and comparing them with his own situation, he felt +sure that he must be on the Appian Way. On the left, in a sort of +valley, he perceived a circular excavation. It was Caracalla’s circus. +On a word from the man who rode at the side of the carriage, it +stopped. At the same time the door was opened. “_Scendi!_” exclaimed a +commanding voice. + +Danglars instantly descended; although he did not yet speak Italian, he +understood it very well. More dead than alive, he looked around him. +Four men surrounded him, besides the postilion. + +“_Di quà_,” said one of the men, descending a little path leading out +of the Appian Way. Danglars followed his guide without opposition, and +had no occasion to turn around to see whether the three others were +following him. Still it appeared as though they were stationed at equal +distances from one another, like sentinels. After walking for about ten +minutes, during which Danglars did not exchange a single word with his +guide, he found himself between a hillock and a clump of high weeds; +three men, standing silent, formed a triangle, of which he was the +centre. He wished to speak, but his tongue refused to move. + +“_Avanti!_” said the same sharp and imperative voice. + +This time Danglars had double reason to understand, for if the word and +gesture had not explained the speaker’s meaning, it was clearly +expressed by the man walking behind him, who pushed him so rudely that +he struck against the guide. This guide was our friend Peppino, who +dashed into the thicket of high weeds, through a path which none but +lizards or polecats could have imagined to be an open road. + +Peppino stopped before a rock overhung by thick hedges; the rock, half +open, afforded a passage to the young man, who disappeared like the +evil spirits in the fairy tales. The voice and gesture of the man who +followed Danglars ordered him to do the same. There was no longer any +doubt, the bankrupt was in the hands of Roman banditti. Danglars +acquitted himself like a man placed between two dangerous positions, +and who is rendered brave by fear. Notwithstanding his large stomach, +certainly not intended to penetrate the fissures of the Campagna, he +slid down like Peppino, and closing his eyes fell upon his feet. As he +touched the ground, he opened his eyes. + +50245m + + + +The path was wide, but dark. Peppino, who cared little for being +recognized now that he was in his own territories, struck a light and +lit a torch. Two other men descended after Danglars forming the +rearguard, and pushing Danglars whenever he happened to stop, they came +by a gentle declivity to the intersection of two corridors. The walls +were hollowed out in sepulchres, one above the other, and which seemed +in contrast with the white stones to open their large dark eyes, like +those which we see on the faces of the dead. A sentinel struck the +rings of his carbine against his left hand. + +“Who comes there?” he cried. + +“A friend, a friend!” said Peppino; “but where is the captain?” + +“There,” said the sentinel, pointing over his shoulder to a spacious +crypt, hollowed out of the rock, the lights from which shone into the +passage through the large arched openings. + +“Fine spoil, captain, fine spoil!” said Peppino in Italian, and taking +Danglars by the collar of his coat he dragged him to an opening +resembling a door, through which they entered the apartment which the +captain appeared to have made his dwelling-place. + +“Is this the man?” asked the captain, who was attentively reading +Plutarch’s _Life of Alexander_. + +“Himself, captain—himself.” + +“Very well, show him to me.” + +At this rather impertinent order, Peppino raised his torch to the face +of Danglars, who hastily withdrew that he might not have his eyelashes +burnt. His agitated features presented the appearance of pale and +hideous terror. + +“The man is tired,” said the captain, “conduct him to his bed.” + +“Oh,” murmured Danglars, “that bed is probably one of the coffins +hollowed in the wall, and the sleep I shall enjoy will be death from +one of the poniards I see glistening in the darkness.” + +From their beds of dried leaves or wolf-skins at the back of the +chamber now arose the companions of the man who had been found by +Albert de Morcerf reading _Cæsar’s Commentaries_, and by Danglars +studying the _Life of Alexander_. The banker uttered a groan and +followed his guide; he neither supplicated nor exclaimed. He no longer +possessed strength, will, power, or feeling; he followed where they led +him. At length he found himself at the foot of a staircase, and he +mechanically lifted his foot five or six times. Then a low door was +opened before him, and bending his head to avoid striking his forehead +he entered a small room cut out of the rock. The cell was clean, though +empty, and dry, though situated at an immeasurable distance under the +earth. A bed of dried grass covered with goat-skins was placed in one +corner. Danglars brightened up on beholding it, fancying that it gave +some promise of safety. + +“Oh, God be praised,” he said; “it is a real bed!” + +This was the second time within the hour that he had invoked the name +of God. He had not done so for ten years before. + +“_Ecco!_” said the guide, and pushing Danglars into the cell, he closed +the door upon him. + +A bolt grated and Danglars was a prisoner. If there had been no bolt, +it would have been impossible for him to pass through the midst of the +garrison who held the catacombs of St. Sebastian, encamped round a +master whom our readers must have recognized as the famous Luigi Vampa. + +Danglars, too, had recognized the bandit, whose existence he would not +believe when Albert de Morcerf mentioned him in Paris; and not only did +he recognize him, but the cell in which Albert had been confined, and +which was probably kept for the accommodation of strangers. These +recollections were dwelt upon with some pleasure by Danglars, and +restored him to some degree of tranquillity. Since the bandits had not +despatched him at once, he felt that they would not kill him at all. +They had arrested him for the purpose of robbery, and as he had only a +few louis about him, he doubted not he would be ransomed. + +He remembered that Morcerf had been taxed at 4,000 crowns, and as he +considered himself of much greater importance than Morcerf he fixed his +own price at 8,000 crowns. Eight thousand crowns amounted to 48,000 +livres; he would then have about 5,050,000 francs left. With this sum +he could manage to keep out of difficulties. Therefore, tolerably +secure in being able to extricate himself from his position, provided +he were not rated at the unreasonable sum of 5,050,000 francs, he +stretched himself on his bed, and after turning over two or three +times, fell asleep with the tranquillity of the hero whose life Luigi +Vampa was studying. + + + + Chapter 115. Luigi Vampa’s Bill of Fare + +We awake from every sleep except the one dreaded by Danglars. He awoke. +To a Parisian accustomed to silken curtains, walls hung with velvet +drapery, and the soft perfume of burning wood, the white smoke of which +diffuses itself in graceful curves around the room, the appearance of +the whitewashed cell which greeted his eyes on awakening seemed like +the continuation of some disagreeable dream. But in such a situation a +single moment suffices to change the strongest doubt into certainty. + +“Yes, yes,” he murmured, “I am in the hands of the brigands of whom +Albert de Morcerf spoke.” His first idea was to breathe, that he might +know whether he was wounded. He borrowed this from _Don Quixote_, the +only book he had ever read, but which he still slightly remembered. + +“No,” he cried, “they have not wounded, but perhaps they have robbed +me!” and he thrust his hands into his pockets. They were untouched; the +hundred louis he had reserved for his journey from Rome to Venice were +in his trousers pocket, and in that of his greatcoat he found the +little note-case containing his letter of credit for 5,050,000 francs. + +“Singular bandits!” he exclaimed; “they have left me my purse and +pocket-book. As I was saying last night, they intend me to be ransomed. +Hello, here is my watch! Let me see what time it is.” + +Danglars’ watch, one of Breguet’s repeaters, which he had carefully +wound up on the previous night, struck half past five. Without this, +Danglars would have been quite ignorant of the time, for daylight did +not reach his cell. Should he demand an explanation from the bandits, +or should he wait patiently for them to propose it? The last +alternative seemed the most prudent, so he waited until twelve o’clock. +During all this time a sentinel, who had been relieved at eight +o’clock, had been watching his door. + +50249m + + + +Danglars suddenly felt a strong inclination to see the person who kept +watch over him. He had noticed that a few rays, not of daylight, but +from a lamp, penetrated through the ill-joined planks of the door; he +approached just as the brigand was refreshing himself with a mouthful +of brandy, which, owing to the leathern bottle containing it, sent +forth an odor which was extremely unpleasant to Danglars. “Faugh!” he +exclaimed, retreating to the farther corner of his cell. + +At twelve this man was replaced by another functionary, and Danglars, +wishing to catch sight of his new guardian, approached the door again. + +He was an athletic, gigantic bandit, with large eyes, thick lips, and a +flat nose; his red hair fell in dishevelled masses like snakes around +his shoulders. + +“Ah, ha,” cried Danglars, “this fellow is more like an ogre than +anything else; however, I am rather too old and tough to be very good +eating!” + +We see that Danglars was collected enough to jest; at the same time, as +though to disprove the ogreish propensities, the man took some black +bread, cheese, and onions from his wallet, which he began devouring +voraciously. + +“May I be hanged,” said Danglars, glancing at the bandit’s dinner +through the crevices of the door,—“may I be hanged if I can understand +how people can eat such filth!” and he withdrew to seat himself upon +his goat-skin, which reminded him of the smell of the brandy. + +But the mysteries of nature are incomprehensible, and there are certain +invitations contained in even the coarsest food which appeal very +irresistibly to a fasting stomach. Danglars felt his own not to be very +well supplied just then, and gradually the man appeared less ugly, the +bread less black, and the cheese more fresh, while those dreadful +vulgar onions recalled to his mind certain sauces and side-dishes, +which his cook prepared in a very superior manner whenever he said, +“Monsieur Deniseau, let me have a nice little fricassee today.” He got +up and knocked on the door; the bandit raised his head. Danglars knew +that he was heard, so he redoubled his blows. + +“_Che cosa?_” asked the bandit. + +“Come, come,” said Danglars, tapping his fingers against the door, “I +think it is quite time to think of giving me something to eat!” + +But whether he did not understand him, or whether he had received no +orders respecting the nourishment of Danglars, the giant, without +answering, went on with his dinner. Danglars’ feelings were hurt, and +not wishing to put himself under obligations to the brute, the banker +threw himself down again on his goat-skin and did not breathe another +word. + +Four hours passed by and the giant was replaced by another bandit. +Danglars, who really began to experience sundry gnawings at the +stomach, arose softly, again applied his eye to the crack of the door, +and recognized the intelligent countenance of his guide. It was, +indeed, Peppino who was preparing to mount guard as comfortably as +possible by seating himself opposite to the door, and placing between +his legs an earthen pan, containing chick-peas stewed with bacon. Near +the pan he also placed a pretty little basket of Villetri grapes and a +flask of Orvieto. Peppino was decidedly an epicure. Danglars watched +these preparations and his mouth watered. + +“Come,” he said to himself, “let me try if he will be more tractable +than the other;” and he tapped gently at the door. + +“_On y va_,” (coming) exclaimed Peppino, who from frequenting the house +of Signor Pastrini understood French perfectly in all its idioms. + +Danglars immediately recognized him as the man who had called out in +such a furious manner, “Put in your head!” But this was not the time +for recrimination, so he assumed his most agreeable manner and said +with a gracious smile: + +“Excuse me, sir, but are they not going to give me any dinner?” + +“Does your excellency happen to be hungry?” + +“Happen to be hungry,—that’s pretty good, when I haven’t eaten for +twenty-four hours!” muttered Danglars. Then he added aloud, “Yes, sir, +I am hungry—very hungry.” + +“And your excellency wants something to eat?” + +“At once, if possible” + +“Nothing easier,” said Peppino. “Here you can get anything you want; by +paying for it, of course, as among honest folk.” + +“Of course!” cried Danglars. “Although, in justice, the people who +arrest and imprison you, ought, at least, to feed you.” + +“That is not the custom, excellency,” said Peppino. + +“A bad reason,” replied Danglars, who reckoned on conciliating his +keeper; “but I am content. Let me have some dinner!” + +“At once! What would your excellency like?” + +And Peppino placed his pan on the ground, so that the steam rose +directly under the nostrils of Danglars. “Give your orders.” + +“Have you kitchens here?” + +“Kitchens?—of course—complete ones.” + +“And cooks?” + +“Excellent!” + +“Well, a fowl, fish, game,—it signifies little, so that I eat.” + +“As your excellency pleases. You mentioned a fowl, I think?” + +“Yes, a fowl.” + +Peppino, turning around, shouted, “A fowl for his excellency!” His +voice yet echoed in the archway when a handsome, graceful, and +half-naked young man appeared, bearing a fowl in a silver dish on his +head, without the assistance of his hands. + +“I could almost believe myself at the Café de Paris,” murmured +Danglars. + +“Here, your excellency,” said Peppino, taking the fowl from the young +bandit and placing it on the worm-eaten table, which with the stool and +the goat-skin bed formed the entire furniture of the cell. Danglars +asked for a knife and fork. + +“Here, excellency,” said Peppino, offering him a little blunt knife and +a boxwood fork. Danglars took the knife in one hand and the fork in the +other, and was about to cut up the fowl. + +“Pardon me, excellency,” said Peppino, placing his hand on the banker’s +shoulder; “people pay here before they eat. They might not be +satisfied, and——” + +“Ah, ha,” thought Danglars, “this is not so much like Paris, except +that I shall probably be skinned! Never mind, I’ll fix that all right. +I have always heard how cheap poultry is in Italy; I should think a +fowl is worth about twelve sous at Rome.—There,” he said, throwing a +louis down. + +Peppino picked up the louis, and Danglars again prepared to carve the +fowl. + +“Stay a moment, your excellency,” said Peppino, rising; “you still owe +me something.” + +“I said they would skin me,” thought Danglars; but resolving to resist +the extortion, he said, “Come, how much do I owe you for this fowl?” + +“Your excellency has given me a louis on account.” + +“A louis on account for a fowl?” + +“Certainly; and your excellency now owes me 4,999 louis.” + +Danglars opened his enormous eyes on hearing this gigantic joke. + +“Very droll,” he muttered, “very droll indeed,” and he again began to +carve the fowl, when Peppino stopped the baron’s right hand with his +left, and held out his other hand. + +“Come, now,” he said. + +“Is it not a joke?” said Danglars. + +“We never joke,” replied Peppino, solemn as a Quaker. + +“What! A hundred thousand francs for a fowl!” + +“Ah, excellency, you cannot imagine how hard it is to rear fowls in +these horrible caves!” + +“Come, come, this is very droll—very amusing—I allow; but, as I am very +hungry, pray allow me to eat. Stay, here is another louis for you.” + +“Then that will make only 4,998 louis more,” said Peppino with the same +indifference. “I shall get them all in time.” + +“Oh, as for that,” said Danglars, angry at this prolongation of the +jest,—“as for that you won’t get them at all. Go to the devil! You do +not know with whom you have to deal!” + +50253m + + + +Peppino made a sign, and the youth hastily removed the fowl. Danglars +threw himself upon his goat-skin, and Peppino, reclosing the door, +again began eating his peas and bacon. Though Danglars could not see +Peppino, the noise of his teeth allowed no doubt as to his occupation. +He was certainly eating, and noisily too, like an ill-bred man. +“Brute!” said Danglars. Peppino pretended not to hear him, and without +even turning his head continued to eat slowly. Danglars’ stomach felt +so empty, that it seemed as if it would be impossible ever to fill it +again; still he had patience for another half-hour, which appeared to +him like a century. He again arose and went to the door. + +“Come, sir, do not keep me starving here any longer, but tell me what +they want.” + +“Nay, your excellency, it is you who should tell us what you want. Give +your orders, and we will execute them.” + +“Then open the door directly.” Peppino obeyed. “Now look here, I want +something to eat! To eat—do you hear?” + +“Are you hungry?” + +“Come, you understand me.” + +“What would your excellency like to eat?” + +“A piece of dry bread, since the fowls are beyond all price in this +accursed place.” + +“Bread? Very well. Holloa, there, some bread!” he called. The youth +brought a small loaf. “How much?” asked Danglars. + +“Four thousand nine hundred and ninety-eight louis,” said Peppino; “You +have paid two louis in advance.” + +50255m + + + +“What? One hundred thousand francs for a loaf?” + +“One hundred thousand francs,” repeated Peppino. + +“But you only asked 100,000 francs for a fowl!” + +“We have a fixed price for all our provisions. It signifies nothing +whether you eat much or little—whether you have ten dishes or one—it is +always the same price.” + +“What, still keeping up this silly jest? My dear fellow, it is +perfectly ridiculous—stupid! You had better tell me at once that you +intend starving me to death.” + +“Oh, dear, no, your excellency, unless you intend to commit suicide. +Pay and eat.” + +“And what am I to pay with, brute?” said Danglars, enraged. “Do you +suppose I carry 100,000 francs in my pocket?” + +“Your excellency has 5,050,000 francs in your pocket; that will be +fifty fowls at 100,000 francs apiece, and half a fowl for the 50,000.” + +Danglars shuddered. The bandage fell from his eyes, and he understood +the joke, which he did not think quite so stupid as he had done just +before. + +“Come,” he said, “if I pay you the 100,000 francs, will you be +satisfied, and allow me to eat at my ease?” + +“Certainly,” said Peppino. + +“But how can I pay them?” + +“Oh, nothing easier; you have an account open with Messrs. Thomson & +French, Via dei Banchi, Rome; give me a draft for 4,998 louis on these +gentlemen, and our banker shall take it.” + +Danglars thought it as well to comply with a good grace, so he took the +pen, ink, and paper Peppino offered him, wrote the draft, and signed +it. + +“Here,” he said, “here is a draft at sight.” + +“And here is your fowl.” + +Danglars sighed while he carved the fowl; it appeared very thin for the +price it had cost. As for Peppino, he examined the paper attentively, +put it into his pocket, and continued eating his peas. + + + + Chapter 116. The Pardon + +The next day Danglars was again hungry; certainly the air of that +dungeon was very provocative of appetite. The prisoner expected that he +would be at no expense that day, for like an economical man he had +concealed half of his fowl and a piece of the bread in the corner of +his cell. But he had no sooner eaten than he felt thirsty; he had +forgotten that. He struggled against his thirst till his tongue clave +to the roof of his mouth; then, no longer able to resist, he called +out. The sentinel opened the door; it was a new face. He thought it +would be better to transact business with his old acquaintance, so he +sent for Peppino. + +“Here I am, your excellency,” said Peppino, with an eagerness which +Danglars thought favorable to him. “What do you want?” + +“Something to drink.” + +“Your excellency knows that wine is beyond all price near Rome.” + +“Then give me water,” cried Danglars, endeavoring to parry the blow. + +“Oh, water is even more scarce than wine, your excellency,—there has +been such a drought.” + +“Come,” thought Danglars, “it is the same old story.” And while he +smiled as he attempted to regard the affair as a joke, he felt his +temples get moist with perspiration. + +“Come, my friend,” said Danglars, seeing that he made no impression on +Peppino, “you will not refuse me a glass of wine?” + +“I have already told you that we do not sell at retail.” + +“Well, then, let me have a bottle of the least expensive.” + +“They are all the same price.” + +“And what is that?” + +“Twenty-five thousand francs a bottle.” + +“Tell me,” cried Danglars, in a tone whose bitterness Harpagon30 alone +has been capable of revealing—“tell me that you wish to despoil me of +all; it will be sooner over than devouring me piecemeal.” + +“It is possible such may be the master’s intention.” + +“The master?—who is he?” + +“The person to whom you were conducted yesterday.” + +“Where is he?” + +“Here.” + +“Let me see him.” + +“Certainly.” + +And the next moment Luigi Vampa appeared before Danglars. + +“You sent for me?” he said to the prisoner. + +“Are you, sir, the chief of the people who brought me here?” + +“Yes, your excellency. What then?” + +“How much do you require for my ransom?” + +“Merely the 5,000,000 you have about you.” Danglars felt a dreadful +spasm dart through his heart. + +“But this is all I have left in the world,” he said, “out of an immense +fortune. If you deprive me of that, take away my life also.” + +“We are forbidden to shed your blood.” + +“And by whom are you forbidden?” + +“By him we obey.” + +“You do, then, obey someone?” + +“Yes, a chief.” + +“I thought you said you were the chief?” + +“So I am of these men; but there is another over me.” + +“And did your superior order you to treat me in this way?” + +“Yes.” + +“But my purse will be exhausted.” + +“Probably.” + +“Come,” said Danglars, “will you take a million?” + +“No.” + +“Two millions?—three?—four? Come, four? I will give them to you on +condition that you let me go.” + +“Why do you offer me 4,000,000 for what is worth 5,000,000? This is a +kind of usury, banker, that I do not understand.” + +“Take all, then—take all, I tell you, and kill me!” + +“Come, come, calm yourself. You will excite your blood, and that would +produce an appetite it would require a million a day to satisfy. Be +more economical.” + +“But when I have no more money left to pay you?” asked the infuriated +Danglars. + +“Then you must suffer hunger.” + +“Suffer hunger?” said Danglars, becoming pale. + +“Most likely,” replied Vampa coolly. + +“But you say you do not wish to kill me?” + +“No.” + +“And yet you will let me perish with hunger?” + +“Ah, that is a different thing.” + +“Well, then, wretches,” cried Danglars, “I will defy your infamous +calculations—I would rather die at once! You may torture, torment, kill +me, but you shall not have my signature again!” + +“As your excellency pleases,” said Vampa, as he left the cell. + +Danglars, raving, threw himself on the goat-skin. Who could these men +be? Who was the invisible chief? What could be his intentions towards +him? And why, when everyone else was allowed to be ransomed, might he +not also be? Oh, yes; certainly a speedy, violent death would be a fine +means of deceiving these remorseless enemies, who appeared to pursue +him with such incomprehensible vengeance. But to die? For the first +time in his life, Danglars contemplated death with a mixture of dread +and desire; the time had come when the implacable spectre, which exists +in the mind of every human creature, arrested his attention and called +out with every pulsation of his heart, “Thou shalt die!” + +Danglars resembled a timid animal excited in the chase; first it flies, +then despairs, and at last, by the very force of desperation, sometimes +succeeds in eluding its pursuers. Danglars meditated an escape; but the +walls were solid rock, a man was sitting reading at the only outlet to +the cell, and behind that man shapes armed with guns continually +passed. His resolution not to sign lasted two days, after which he +offered a million for some food. They sent him a magnificent supper, +and took his million. + +From this time the prisoner resolved to suffer no longer, but to have +everything he wanted. At the end of twelve days, after having made a +splendid dinner, he reckoned his accounts, and found that he had only +50,000 francs left. Then a strange reaction took place; he who had just +abandoned 5,000,000 endeavored to save the 50,000 francs he had left, +and sooner than give them up he resolved to enter again upon a life of +privation—he was deluded by the hopefulness that is a premonition of +madness. + +He, who for so long a time had forgotten God, began to think that +miracles were possible—that the accursed cavern might be discovered by +the officers of the Papal States, who would release him; that then he +would have 50,000 remaining, which would be sufficient to save him from +starvation; and finally he prayed that this sum might be preserved to +him, and as he prayed he wept. Three days passed thus, during which his +prayers were frequent, if not heartfelt. Sometimes he was delirious, +and fancied he saw an old man stretched on a pallet; he, also, was +dying of hunger. + +On the fourth, he was no longer a man, but a living corpse. He had +picked up every crumb that had been left from his former meals, and was +beginning to eat the matting which covered the floor of his cell. Then +he entreated Peppino, as he would a guardian angel, to give him food; +he offered him 1,000 francs for a mouthful of bread. But Peppino did +not answer. On the fifth day he dragged himself to the door of the +cell. + +“Are you not a Christian?” he said, falling on his knees. “Do you wish +to assassinate a man who, in the eyes of Heaven, is a brother? Oh, my +former friends, my former friends!” he murmured, and fell with his face +to the ground. Then rising in despair, he exclaimed, “The chief, the +chief!” + +“Here I am,” said Vampa, instantly appearing; “what do you want?” + +“Take my last gold,” muttered Danglars, holding out his pocket-book, +“and let me live here; I ask no more for liberty—I only ask to live!” + +“Then you suffer a great deal?” + +“Oh, yes, yes, cruelly!” + +“Still, there have been men who suffered more than you.” + +“I do not think so.” + +“Yes; those who have died of hunger.” + +Danglars thought of the old man whom, in his hours of delirium, he had +seen groaning on his bed. He struck his forehead on the ground and +groaned. “Yes,” he said, “there have been some who have suffered more +than I have, but then they must have been martyrs at least.” + +“Do you repent?” asked a deep, solemn voice, which caused Danglars’ +hair to stand on end. His feeble eyes endeavored to distinguish +objects, and behind the bandit he saw a man enveloped in a cloak, half +lost in the shadow of a stone column. + +“Of what must I repent?” stammered Danglars. + +“Of the evil you have done,” said the voice. + +“Oh, yes; oh, yes, I do indeed repent.” And he struck his breast with +his emaciated fist. + +“Then I forgive you,” said the man, dropping his cloak, and advancing +to the light. + +“The Count of Monte Cristo!” said Danglars, more pale from terror than +he had been just before from hunger and misery. + +“You are mistaken—I am not the Count of Monte Cristo.” + +“Then who are you?” + +50261m + + + +“I am he whom you sold and dishonored—I am he whose betrothed you +prostituted—I am he upon whom you trampled that you might raise +yourself to fortune—I am he whose father you condemned to die of +hunger—I am he whom you also condemned to starvation, and who yet +forgives you, because he hopes to be forgiven—I am Edmond Dantès!” + +Danglars uttered a cry, and fell prostrate. + +“Rise,” said the count, “your life is safe; the same good fortune has +not happened to your accomplices—one is mad, the other dead. Keep the +50,000 francs you have left—I give them to you. The 5,000,000 you stole +from the hospitals has been restored to them by an unknown hand. And +now eat and drink; I will entertain you tonight. Vampa, when this man +is satisfied, let him be free.” + +Danglars remained prostrate while the count withdrew; when he raised +his head he saw disappearing down the passage nothing but a shadow, +before which the bandits bowed. + +According to the count’s directions, Danglars was waited on by Vampa, +who brought him the best wine and fruits of Italy; then, having +conducted him to the road, and pointed to the post-chaise, left him +leaning against a tree. He remained there all night, not knowing where +he was. When daylight dawned he saw that he was near a stream; he was +thirsty, and dragged himself towards it. As he stooped down to drink, +he saw that his hair had become entirely white. + + + + Chapter 117. The Fifth of October + +It was about six o’clock in the evening; an opal-colored light, through +which an autumnal sun shed its golden rays, descended on the blue +ocean. The heat of the day had gradually decreased, and a light breeze +arose, seeming like the respiration of nature on awakening from the +burning siesta of the south. A delicious zephyr played along the coasts +of the Mediterranean, and wafted from shore to shore the sweet perfume +of plants, mingled with the fresh smell of the sea. + +A light yacht, chaste and elegant in its form, was gliding amidst the +first dews of night over the immense lake, extending from Gibraltar to +the Dardanelles, and from Tunis to Venice. The vessel resembled a swan +with its wings opened towards the wind, gliding on the water. It +advanced swiftly and gracefully, leaving behind it a glittering stretch +of foam. By degrees the sun disappeared behind the western horizon; but +as though to prove the truth of the fanciful ideas in heathen +mythology, its indiscreet rays reappeared on the summit of every wave, +as if the god of fire had just sunk upon the bosom of Amphitrite, who +in vain endeavored to hide her lover beneath her azure mantle. + +The yacht moved rapidly on, though there did not appear to be +sufficient wind to ruffle the curls on the head of a young girl. +Standing on the prow was a tall man, of a dark complexion, who saw with +dilating eyes that they were approaching a dark mass of land in the +shape of a cone, which rose from the midst of the waves like the hat of +a Catalan. + +“Is that Monte Cristo?” asked the traveller, to whose orders the yacht +was for the time submitted, in a melancholy voice. + +“Yes, your excellency,” said the captain, “we have reached it.” + +“We have reached it!” repeated the traveller in an accent of +indescribable sadness. + +Then he added, in a low tone, “Yes; that is the haven.” + +And then he again plunged into a train of thought, the character of +which was better revealed by a sad smile, than it would have been by +tears. A few minutes afterwards a flash of light, which was +extinguished instantly, was seen on the land, and the sound of firearms +reached the yacht. + +“Your excellency,” said the captain, “that was the land signal, will +you answer yourself?” + +“What signal?” + +The captain pointed towards the island, up the side of which ascended a +volume of smoke, increasing as it rose. + +“Ah, yes,” he said, as if awaking from a dream. “Give it to me.” + +The captain gave him a loaded carbine; the traveller slowly raised it, +and fired in the air. Ten minutes afterwards, the sails were furled, +and they cast anchor about a hundred fathoms from the little harbor. +The gig was already lowered, and in it were four oarsmen and a +coxswain. The traveller descended, and instead of sitting down at the +stern of the boat, which had been decorated with a blue carpet for his +accommodation, stood up with his arms crossed. The rowers waited, their +oars half lifted out of the water, like birds drying their wings. + +50265m + + + +“Give way,” said the traveller. The eight oars fell into the sea +simultaneously without splashing a drop of water, and the boat, +yielding to the impulsion, glided forward. In an instant they found +themselves in a little harbor, formed in a natural creek; the boat +grounded on the fine sand. + +“Will your excellency be so good as to mount the shoulders of two of +our men, they will carry you ashore?” The young man answered this +invitation with a gesture of indifference, and stepped out of the boat; +the sea immediately rose to his waist. + +“Ah, your excellency,” murmured the pilot, “you should not have done +so; our master will scold us for it.” + +The young man continued to advance, following the sailors, who chose a +firm footing. Thirty strides brought them to dry land; the young man +stamped on the ground to shake off the wet, and looked around for +someone to show him his road, for it was quite dark. Just as he turned, +a hand rested on his shoulder, and a voice which made him shudder +exclaimed: + +“Good-evening, Maximilian; you are punctual, thank you!” + +“Ah, is it you, count?” said the young man, in an almost joyful accent, +pressing Monte Cristo’s hand with both his own. + +“Yes; you see I am as exact as you are. But you are dripping, my dear +fellow; you must change your clothes, as Calypso said to Telemachus. +Come, I have a habitation prepared for you in which you will soon +forget fatigue and cold.” + +Monte Cristo perceived that the young man had turned around; indeed, +Morrel saw with surprise that the men who had brought him had left +without being paid, or uttering a word. Already the sound of their oars +might be heard as they returned to the yacht. + +“Oh, yes,” said the count, “you are looking for the sailors.” + +“Yes, I paid them nothing, and yet they are gone.” + +“Never mind that, Maximilian,” said Monte Cristo, smiling. “I have made +an agreement with the navy, that the access to my island shall be free +of all charge. I have made a bargain.” + +Morrel looked at the count with surprise. “Count,” he said, “you are +not the same here as in Paris.” + +“How so?” + +“Here you laugh.” The count’s brow became clouded. + +“You are right to recall me to myself, Maximilian,” he said; “I was +delighted to see you again, and forgot for the moment that all +happiness is fleeting.” + +“Oh, no, no, count,” cried Maximilian, seizing the count’s hands, “pray +laugh; be happy, and prove to me, by your indifference, that life is +endurable to sufferers. Oh, how charitable, kind, and good you are; you +affect this gayety to inspire me with courage.” + +“You are wrong, Morrel; I was really happy.” + +“Then you forget me, so much the better.” + +“How so?” + +“Yes; for as the gladiator said to the emperor, when he entered the +arena, ‘He who is about to die salutes you.’” + +“Then you are not consoled?” asked the count, surprised. + +“Oh,” exclaimed Morrel, with a glance full of bitter reproach, “do you +think it possible that I could be?” + +“Listen,” said the count. “Do you understand the meaning of my words? +You cannot take me for a commonplace man, a mere rattle, emitting a +vague and senseless noise. When I ask you if you are consoled, I speak +to you as a man for whom the human heart has no secrets. Well, Morrel, +let us both examine the depths of your heart. Do you still feel the +same feverish impatience of grief which made you start like a wounded +lion? Have you still that devouring thirst which can only be appeased +in the grave? Are you still actuated by the regret which drags the +living to the pursuit of death; or are you only suffering from the +prostration of fatigue and the weariness of hope deferred? Has the loss +of memory rendered it impossible for you to weep? Oh, my dear friend, +if this be the case,—if you can no longer weep, if your frozen heart be +dead, if you put all your trust in God, then, Maximilian, you are +consoled—do not complain.” + +“Count,” said Morrel, in a firm and at the same time soft voice, +“listen to me, as to a man whose thoughts are raised to heaven, though +he remains on earth; I come to die in the arms of a friend. Certainly, +there are people whom I love. I love my sister Julie,—I love her +husband Emmanuel; but I require a strong mind to smile on my last +moments. My sister would be bathed in tears and fainting; I could not +bear to see her suffer. Emmanuel would tear the weapon from my hand, +and alarm the house with his cries. You, count, who are more than +mortal, will, I am sure, lead me to death by a pleasant path, will you +not?” + +50267m + + + +“My friend,” said the count, “I have still one doubt,—are you weak +enough to pride yourself upon your sufferings?” + +“No, indeed,—I am calm,” said Morrel, giving his hand to the count; “my +pulse does not beat slower or faster than usual. No, I feel that I have +reached the goal, and I will go no farther. You told me to wait and +hope; do you know what you did, unfortunate adviser? I waited a month, +or rather I suffered for a month! I did hope (man is a poor wretched +creature), I did hope. What I cannot tell,—something wonderful, an +absurdity, a miracle,—of what nature he alone can tell who has mingled +with our reason that folly we call hope. Yes, I did wait—yes, I did +hope, count, and during this quarter of an hour we have been talking +together, you have unconsciously wounded, tortured my heart, for every +word you have uttered proved that there was no hope for me. Oh, count, +I shall sleep calmly, deliciously in the arms of death.” + +Morrel uttered these words with an energy which made the count shudder. + +“My friend,” continued Morrel, “you named the fifth of October as the +end of the period of waiting,—today is the fifth of October,” he took +out his watch, “it is now nine o’clock,—I have yet three hours to +live.” + +“Be it so,” said the count, “come.” Morrel mechanically followed the +count, and they had entered the grotto before he perceived it. He felt +a carpet under his feet, a door opened, perfumes surrounded him, and a +brilliant light dazzled his eyes. Morrel hesitated to advance; he +dreaded the enervating effect of all that he saw. Monte Cristo drew him +in gently. + +“Why should we not spend the last three hours remaining to us of life, +like those ancient Romans, who when condemned by Nero, their emperor +and heir, sat down at a table covered with flowers, and gently glided +into death, amid the perfume of heliotropes and roses?” + +Morrel smiled. “As you please,” he said; “death is always death,—that +is forgetfulness, repose, exclusion from life, and therefore from +grief.” + +He sat down, and Monte Cristo placed himself opposite to him. They were +in the marvellous dining-room before described, where the statues had +baskets on their heads always filled with fruits and flowers. Morrel +had looked carelessly around, and had probably noticed nothing. + +“Let us talk like men,” he said, looking at the count. + +“Go on!” + +“Count,” said Morrel, “you are the epitome of all human knowledge, and +you seem like a being descended from a wiser and more advanced world +than ours.” + +“There is something true in what you say,” said the count, with that +smile which made him so handsome; “I have descended from a planet +called grief.” + +50269m + + + +“I believe all you tell me without questioning its meaning; for +instance, you told me to live, and I did live; you told me to hope, and +I almost did so. I am almost inclined to ask you, as though you had +experienced death, ‘is it painful to die?’” + +Monte Cristo looked upon Morrel with indescribable tenderness. “Yes,” +he said, “yes, doubtless it is painful, if you violently break the +outer covering which obstinately begs for life. If you plunge a dagger +into your flesh, if you insinuate a bullet into your brain, which the +least shock disorders,—then certainly, you will suffer pain, and you +will repent quitting a life for a repose you have bought at so dear a +price.” + +“Yes; I know that there is a secret of luxury and pain in death, as +well as in life; the only thing is to understand it.” + +“You have spoken truly, Maximilian; according to the care we bestow +upon it, death is either a friend who rocks us gently as a nurse, or an +enemy who violently drags the soul from the body. Some day, when the +world is much older, and when mankind will be masters of all the +destructive powers in nature, to serve for the general good of +humanity; when mankind, as you were just saying, have discovered the +secrets of death, then that death will become as sweet and voluptuous +as a slumber in the arms of your beloved.” + +“And if you wished to die, you would choose this death, count?” + +“Yes.” + +Morrel extended his hand. “Now I understand,” he said, “why you had me +brought here to this desolate spot, in the midst of the ocean, to this +subterranean palace; it was because you loved me, was it not, count? It +was because you loved me well enough to give me one of those sweet +means of death of which we were speaking; a death without agony, a +death which allows me to fade away while pronouncing Valentine’s name +and pressing your hand.” + +“Yes, you have guessed rightly, Morrel,” said the count, “that is what +I intended.” + +“Thanks; the idea that tomorrow I shall no longer suffer, is sweet to +my heart.” + +“Do you then regret nothing?” + +“No,” replied Morrel. + +“Not even me?” asked the count with deep emotion. Morrel’s clear eye +was for the moment clouded, then it shone with unusual lustre, and a +large tear rolled down his cheek. + +“What,” said the count, “do you still regret anything in the world, and +yet die?” + +“Oh, I entreat you,” exclaimed Morrel in a low voice, “do not speak +another word, count; do not prolong my punishment.” + +The count fancied that he was yielding, and this belief revived the +horrible doubt that had overwhelmed him at the Château d’If. + +“I am endeavoring,” he thought, “to make this man happy; I look upon +this restitution as a weight thrown into the scale to balance the evil +I have wrought. Now, supposing I am deceived, supposing this man has +not been unhappy enough to merit happiness. Alas, what would become of +me who can only atone for evil by doing good?” + +50271m + + + +Then he said aloud: “Listen, Morrel, I see your grief is great, but +still you do not like to risk your soul.” Morrel smiled sadly. + +“Count,” he said, “I swear to you my soul is no longer my own.” + +“Maximilian, you know I have no relation in the world. I have +accustomed myself to regard you as my son: well, then, to save my son, +I will sacrifice my life, nay, even my fortune.” + +“What do you mean?” + +“I mean, that you wish to quit life because you do not understand all +the enjoyments which are the fruits of a large fortune. Morrel, I +possess nearly a hundred millions and I give them to you; with such a +fortune you can attain every wish. Are you ambitious? Every career is +open to you. Overturn the world, change its character, yield to mad +ideas, be even criminal—but live.” + +“Count, I have your word,” said Morrel coldly; then taking out his +watch, he added, “It is half-past eleven.” + +“Morrel, can you intend it in my house, under my very eyes?” + +“Then let me go,” said Maximilian, “or I shall think you did not love +me for my own sake, but for yours;” and he arose. + +“It is well,” said Monte Cristo whose countenance brightened at these +words; “you wish it—you are inflexible. Yes, as you said, you are +indeed wretched and a miracle alone can cure you. Sit down, Morrel, and +wait.” + +Morrel obeyed; the count arose, and unlocking a closet with a key +suspended from his gold chain, took from it a little silver casket, +beautifully carved and chased, the corners of which represented four +bending figures, similar to the Caryatides, the forms of women, symbols +of the angels aspiring to heaven. + +He placed the casket on the table; then opening it took out a little +golden box, the top of which flew open when touched by a secret spring. +This box contained an unctuous substance partly solid, of which it was +impossible to discover the color, owing to the reflection of the +polished gold, sapphires, rubies, emeralds, which ornamented the box. +It was a mixed mass of blue, red, and gold. + +The count took out a small quantity of this with a gilt spoon, and +offered it to Morrel, fixing a long steadfast glance upon him. It was +then observable that the substance was greenish. + +“This is what you asked for,” he said, “and what I promised to give +you.” + +“I thank you from the depths of my heart,” said the young man, taking +the spoon from the hands of Monte Cristo. The count took another spoon, +and again dipped it into the golden box. “What are you going to do, my +friend?” asked Morrel, arresting his hand. + +“Well, the fact is, Morrel, I was thinking that I too am weary of life, +and since an opportunity presents itself——” + +“Stay!” said the young man. “You who love, and are beloved; you, who +have faith and hope,—oh, do not follow my example. In your case it +would be a crime. Adieu, my noble and generous friend, adieu; I will go +and tell Valentine what you have done for me.” + +And slowly, though without any hesitation, only waiting to press the +count’s hand fervently, he swallowed the mysterious substance offered +by Monte Cristo. Then they were both silent. Ali, mute and attentive, +brought the pipes and coffee, and disappeared. By degrees, the light of +the lamps gradually faded in the hands of the marble statues which held +them, and the perfumes appeared less powerful to Morrel. Seated +opposite to him, Monte Cristo watched him in the shadow, and Morrel saw +nothing but the bright eyes of the count. An overpowering sadness took +possession of the young man, his hands relaxed their hold, the objects +in the room gradually lost their form and color, and his disturbed +vision seemed to perceive doors and curtains open in the wall. + +50273m + + + +“Friend,” he cried, “I feel that I am dying; thanks!” + +He made a last effort to extend his hand, but it fell powerless beside +him. Then it appeared to him that Monte Cristo smiled, not with the +strange and fearful expression which had sometimes revealed to him the +secrets of his heart, but with the benevolent kindness of a father for +a child. At the same time the count appeared to increase in stature, +his form, nearly double its usual height, stood out in relief against +the red tapestry, his black hair was thrown back, and he stood in the +attitude of an avenging angel. Morrel, overpowered, turned around in +the armchair; a delicious torpor permeated every vein. A change of +ideas presented themselves to his brain, like a new design on the +kaleidoscope. Enervated, prostrate, and breathless, he became +unconscious of outward objects; he seemed to be entering that vague +delirium preceding death. He wished once again to press the count’s +hand, but his own was immovable. He wished to articulate a last +farewell, but his tongue lay motionless and heavy in his throat, like a +stone at the mouth of a sepulchre. Involuntarily his languid eyes +closed, and still through his eyelashes a well-known form seemed to +move amid the obscurity with which he thought himself enveloped. + +The count had just opened a door. Immediately a brilliant light from +the next room, or rather from the palace adjoining, shone upon the room +in which he was gently gliding into his last sleep. Then he saw a woman +of marvellous beauty appear on the threshold of the door separating the +two rooms. Pale, and sweetly smiling, she looked like an angel of mercy +conjuring the angel of vengeance. + +“Is it heaven that opens before me?” thought the dying man; “that angel +resembles the one I have lost.” + +Monte Cristo pointed out Morrel to the young woman, who advanced +towards him with clasped hands and a smile upon her lips. + +“Valentine, Valentine!” he mentally ejaculated; but his lips uttered no +sound, and as though all his strength were centred in that internal +emotion, he sighed and closed his eyes. Valentine rushed towards him; +his lips again moved. + +“He is calling you,” said the count; “he to whom you have confided your +destiny—he from whom death would have separated you, calls you to him. +Happily, I vanquished death. Henceforth, Valentine, you will never +again be separated on earth, since he has rushed into death to find +you. Without me, you would both have died. May God accept my atonement +in the preservation of these two existences!” + +Valentine seized the count’s hand, and in her irresistible impulse of +joy carried it to her lips. + +50275m + + + +“Oh, thank me again!” said the count; “tell me till you are weary, that +I have restored you to happiness; you do not know how much I require +this assurance.” + +“Oh, yes, yes, I thank you with all my heart,” said Valentine; “and if +you doubt the sincerity of my gratitude, oh, then, ask Haydée! ask my +beloved sister Haydée, who ever since our departure from France, has +caused me to wait patiently for this happy day, while talking to me of +you.” + +“You then love Haydée?” asked Monte Cristo with an emotion he in vain +endeavored to dissimulate. + +“Oh, yes, with all my soul.” + +“Well, then, listen, Valentine,” said the count; “I have a favor to ask +of you.” + +“Of me? Oh, am I happy enough for that?” + +“Yes; you have called Haydée your sister,—let her become so indeed, +Valentine; render her all the gratitude you fancy that you owe to me; +protect her, for” (the count’s voice was thick with emotion) +“henceforth she will be alone in the world.” + +“Alone in the world!” repeated a voice behind the count, “and why?” + +Monte Cristo turned around; Haydée was standing pale, motionless, +looking at the count with an expression of fearful amazement. + +“Because tomorrow, Haydée, you will be free; you will then assume your +proper position in society, for I will not allow my destiny to +overshadow yours. Daughter of a prince, I restore to you the riches and +name of your father.” + +Haydée became pale, and lifting her transparent hands to heaven, +exclaimed in a voice stifled with tears, “Then you leave me, my lord?” + +“Haydée, Haydée, you are young and beautiful; forget even my name, and +be happy.” + +“It is well,” said Haydée; “your order shall be executed, my lord; I +will forget even your name, and be happy.” And she stepped back to +retire. + +“Oh, heavens,” exclaimed Valentine, who was supporting the head of +Morrel on her shoulder, “do you not see how pale she is? Do you not see +how she suffers?” + +Haydée answered with a heartrending expression, + +“Why should he understand this, my sister? He is my master, and I am +his slave; he has the right to notice nothing.” + +The count shuddered at the tones of a voice which penetrated the inmost +recesses of his heart; his eyes met those of the young girl and he +could not bear their brilliancy. + +“Oh, heavens,” exclaimed Monte Cristo, “can my suspicions be correct? +Haydée, would it please you not to leave me?” + +“I am young,” gently replied Haydée; “I love the life you have made so +sweet to me, and I should be sorry to die.” + +“You mean, then, that if I leave you, Haydée——” + +“I should die; yes, my lord.” + +“Do you then love me?” + +“Oh, Valentine, he asks if I love him. Valentine, tell him if you love +Maximilian.” + +The count felt his heart dilate and throb; he opened his arms, and +Haydée, uttering a cry, sprang into them. + +“Oh, yes,” she cried, “I do love you! I love you as one loves a father, +brother, husband! I love you as my life, for you are the best, the +noblest of created beings!” + +50277m + + + +“Let it be, then, as you wish, sweet angel; God has sustained me in my +struggle with my enemies, and has given me this reward; he will not let +me end my triumph in suffering; I wished to punish myself, but he has +pardoned me. Love me then, Haydée! Who knows? perhaps your love will +make me forget all that I do not wish to remember.” + +“What do you mean, my lord?” + +“I mean that one word from you has enlightened me more than twenty +years of slow experience; I have but you in the world, Haydée; through +you I again take hold on life, through you I shall suffer, through you +rejoice.” + +“Do you hear him, Valentine?” exclaimed Haydée; “he says that through +me he will suffer—through _me_, who would yield my life for his.” + +The count withdrew for a moment. “Have I discovered the truth?” he +said; “but whether it be for recompense or punishment, I accept my +fate. Come, Haydée, come!” and throwing his arm around the young girl’s +waist, he pressed the hand of Valentine, and disappeared. + +50279m + + + +An hour had nearly passed, during which Valentine, breathless and +motionless, watched steadfastly over Morrel. At length she felt his +heart beat, a faint breath played upon his lips, a slight shudder, +announcing the return of life, passed through the young man’s frame. At +length his eyes opened, but they were at first fixed and +expressionless; then sight returned, and with it feeling and grief. + +“Oh,” he cried, in an accent of despair, “the count has deceived me; I +am yet living;” and extending his hand towards the table, he seized a +knife. + +“Dearest,” exclaimed Valentine, with her adorable smile, “awake, and +look at me!” Morrel uttered a loud exclamation, and frantic, doubtful, +dazzled, as though by a celestial vision, he fell upon his knees. + +The next morning at daybreak, Valentine and Morrel were walking +arm-in-arm on the seashore, Valentine relating how Monte Cristo had +appeared in her room, explained everything, revealed the crime, and, +finally, how he had saved her life by enabling her to simulate death. + +They had found the door of the grotto opened, and gone forth; on the +azure dome of heaven still glittered a few remaining stars. + +Morrel soon perceived a man standing among the rocks, apparently +awaiting a sign from them to advance, and pointed him out to Valentine. + +“Ah, it is Jacopo,” she said, “the captain of the yacht;” and she +beckoned him towards them. + +“Do you wish to speak to us?” asked Morrel. + +“I have a letter to give you from the count.” + +“From the count!” murmured the two young people. + +“Yes; read it.” + +50281m + + + +Morrel opened the letter, and read: + +“My Dear Maximilian, + +“There is a felucca for you at anchor. Jacopo will carry you to +Leghorn, where Monsieur Noirtier awaits his granddaughter, whom he +wishes to bless before you lead her to the altar. All that is in this +grotto, my friend, my house in the Champs-Élysées, and my château at +Tréport, are the marriage gifts bestowed by Edmond Dantès upon the son +of his old master, Morrel. Mademoiselle de Villefort will share them +with you; for I entreat her to give to the poor the immense fortune +reverting to her from her father, now a madman, and her brother who +died last September with his mother. Tell the angel who will watch over +your future destiny, Morrel, to pray sometimes for a man, who, like +Satan, thought himself for an instant equal to God, but who now +acknowledges with Christian humility that God alone possesses supreme +power and infinite wisdom. Perhaps those prayers may soften the remorse +he feels in his heart. As for you, Morrel, this is the secret of my +conduct towards you. There is neither happiness nor misery in the +world; there is only the comparison of one state with another, nothing +more. He who has felt the deepest grief is best able to experience +supreme happiness. We must have felt what it is to die, Morrel, that we +may appreciate the enjoyments of living. + +“Live, then, and be happy, beloved children of my heart, and never +forget that until the day when God shall deign to reveal the future to +man, all human wisdom is summed up in these two words,—‘_Wait and +hope_.’—Your friend, + +“Edmond Dantès, _Count of Monte Cristo_.” + +50282m + + + +During the perusal of this letter, which informed Valentine for the +first time of the madness of her father and the death of her brother, +she became pale, a heavy sigh escaped from her bosom, and tears, not +the less painful because they were silent, ran down her cheeks; her +happiness cost her very dear. + +Morrel looked around uneasily. + +“But,” he said, “the count’s generosity is too overwhelming; Valentine +will be satisfied with my humble fortune. Where is the count, friend? +Lead me to him.” + +Jacopo pointed towards the horizon. + +“What do you mean?” asked Valentine. “Where is the count?—where is +Haydée?” + +“Look!” said Jacopo. + +The eyes of both were fixed upon the spot indicated by the sailor, and +on the blue line separating the sky from the Mediterranean Sea, they +perceived a large white sail. + +“Gone,” said Morrel; “gone!—adieu, my friend—adieu, my father!” + +“Gone,” murmured Valentine; “adieu, my sweet Haydée—adieu, my sister!” + +“Who can say whether we shall ever see them again?” said Morrel with +tearful eyes. + +“Darling,” replied Valentine, “has not the count just told us that all +human wisdom is summed up in two words: + +“‘_Wait and hope_ (Fac et spera)!’” + + + + +FOOTNOTES: + + +[1] “The wicked are great drinkers of water; As the flood proved once +for all.” + +[2] $2,600,000 in 1894. + +[3] Knocked on the head. + +[4] Beheaded. + +[5] Scott, of course: “The son of an ill-fated sire, and the father of +a yet more unfortunate family, bore in his looks that cast of +inauspicious melancholy by which the physiognomists of that time +pretended to distinguish those who were predestined to a violent and +unhappy death.”—The Abbot, ch. xxii. + +[6] Guillotine. + +[7] Dr. Guillotin got the idea of his famous machine from witnessing an +execution in Italy. + +[8] Brucea ferruginea. + +[9] ‘Money and sanctity, Each in a moiety.’ + +[10] Elisabeth de Rossan, Marquise de Ganges, was one of the famous +women of the court of Louis XIV. where she was known as “La Belle +Provençale.” She was the widow of the Marquis de Castellane when she +married de Ganges, and having the misfortune to excite the enmity of +her new brothers-in-law, was forced by them to take poison; and they +finished her off with pistol and dagger.—Ed. + +[11] Magistrate and orator of great eloquence—chancellor of France +under Louis XV. + +[12] Jacques-Louis David, a famous French painter (1748-1825). + +[13] Ali Pasha, “The Lion,” was born at Tepelini, an Albanian village +at the foot of the Klissoura Mountains, in 1741. By diplomacy and +success in arms he became almost supreme ruler of Albania, Epirus, and +adjacent territory. Having aroused the enmity of the Sultan, he was +proscribed and put to death by treachery in 1822, at the age of +eighty.—Ed. + +[14] Greek militiamen in the war for independence.—Ed. + +[15] A Turkish pasha in command of the troops of a province.—Ed. + +[16] The god of fruitfulness in Grecian mythology. In Crete he was +supposed to be slain in winter with the decay of vegetation and to +revive in the spring. Haydée’s learned reference is to the behavior of +an actor in the Dionysian festivals.—Ed. + +[17] The Genoese conspirator. + +[18] Lake Maggiore. + +[19] In the old Greek legend the Atreidae, or children of Atreus, were +doomed to punishment because of the abominable crime of their father. +The _Agamemnon_ of Aeschylus is based on this legend. + +[20] The performance of the civil marriage. + +[21] In Molière’s comedy, _Le Misanthrope_. + +[22] Literally, “the basket,” because wedding gifts were originally +brought in such a receptacle. + +[23] Germain Pillon was a famous French sculptor (1535-1598). His best +known work is “The Three Graces,” now in the Louvre. + +[24] Frédérick Lemaître—French actor (1800-1876). Robert Macaire is the +hero of two favorite melodramas—“Chien de Montargis” and “Chien +d’Aubry”—and the name is applied to bold criminals as a term of +derision. + +[25] The Spahis are French cavalry reserved for service in Africa. + +[26] _Savate_: an old shoe. + +[27] Guilbert de Pixérécourt, French dramatist (1773-1844). + +[28] Gaspard Puget, the sculptor-architect, was born at Marseilles in +1615. + +[29] The Carolina—not Virginia—jessamine, _gelsemium sempervirens_ +(properly speaking not a jessamine at all) has yellow blossoms. The +reference is no doubt to the _Wistaria frutescens_.—Ed. + +[30] The miser in Molière’s comedy of _L’Avare_.—Ed. + + + + From 21f6312b4a998d33b8317253b125b14b97943f75 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Mon, 29 Dec 2025 17:58:30 +0000 Subject: [PATCH 17/56] Solution with using regex compile --- .DS_Store | Bin 6148 -> 6148 bytes chapters/chap08.ipynb | 27 ++++++++++++--------------- 2 files changed, 12 insertions(+), 15 deletions(-) diff --git a/.DS_Store b/.DS_Store index e474adeaf5a65f79037e9402cd4b770274ad7424..f1f0a56f818b651c7603eb1d3c84c03682d9b20e 100644 GIT binary patch delta 22 dcmZoMXffEZfQi$@*i1*k(9Fna^Gc>@Q2@Q2 Date: Tue, 30 Dec 2025 17:14:56 +0000 Subject: [PATCH 18/56] Start Chapter 9 --- chapters/chap08.ipynb | 19 +- chapters/chap09.ipynb | 2937 +++++++++++++++++++++++++++++++++++++++-- 2 files changed, 2813 insertions(+), 143 deletions(-) diff --git a/chapters/chap08.ipynb b/chapters/chap08.ipynb index 58bd85c0..8cf8cb09 100644 --- a/chapters/chap08.ipynb +++ b/chapters/chap08.ipynb @@ -8264,7 +8264,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 89, "id": "b6bffe8a", "metadata": {}, "outputs": [ @@ -8272,7 +8272,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "Words equal to 'pale' or similar appear: 0 times.\n" + "Words equal to 'pale' or similar appear: 226 times.\n" ] } ], @@ -8294,7 +8294,7 @@ }, { "cell_type": "code", - "execution_count": 87, + "execution_count": 94, "id": "3eb8f83f", "metadata": {}, "outputs": [ @@ -8302,7 +8302,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "226\n" + "223\n" ] } ], @@ -8310,15 +8310,18 @@ "# Solution goes here\n", "import re\n", "\n", - "pattern = r'\\b(pale|pales|paled|paleness|pallor)\\b'\n", + "pattern = re.compile(r'\\b(pale|pales|paled|paleness|pallor)\\b')\n", "total = 0\n", "\n", "for line in open('pg1184_cleaned.txt'):\n", - " if re.search(pattern, line, re.IGNORECASE):\n", - " total += 1\n", - " else:\n", + " text = line.strip()\n", + " match = pattern.search(text)\n", + " if not match:\n", " continue\n", "\n", + " total += 1\n", + " #print(text)\n", + "\n", "print(total)\n" ] }, diff --git a/chapters/chap09.ipynb b/chapters/chap09.ipynb index 755c656f..af1aec5b 100644 --- a/chapters/chap09.ipynb +++ b/chapters/chap09.ipynb @@ -69,9 +69,21 @@ "execution_count": 3, "id": "a16a119b", "metadata": {}, - "outputs": [], - "source": [ - "numbers = [42, 123]" + "outputs": [ + { + "data": { + "text/plain": [ + "[42, 123]" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "numbers = [42, 123]\n", + "numbers" ] }, { @@ -87,9 +99,21 @@ "execution_count": 4, "id": "ac7a4a0b", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['Cheddar', 'Edam', 'Gouda']" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "cheeses = ['Cheddar', 'Edam', 'Gouda']" + "cheeses = ['Cheddar', 'Edam', 'Gouda']\n", + "cheeses" ] }, { @@ -106,9 +130,21 @@ "execution_count": 5, "id": "18fb0e21", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['spam', 2.0, 5, [10, 20]]" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "t = ['spam', 2.0, 5, [10, 20]]" + "t = ['spam', 2.0, 5, [10, 20]]\n", + "t" ] }, { @@ -127,9 +163,21 @@ "execution_count": 6, "id": "0ff58916", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "empty = []" + "empty = []\n", + "empty" ] }, { @@ -145,7 +193,18 @@ "execution_count": 7, "id": "f3153f36", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "3" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "len(cheeses)" ] @@ -165,7 +224,18 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "0" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "len(empty)" ] @@ -206,7 +276,18 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "from diagram import diagram, adjust, Bbox\n", "\n", @@ -241,10 +322,21 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 12, "id": "9deb85a3", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'Cheddar'" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "cheeses[0]" ] @@ -261,10 +353,21 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 13, "id": "98ec5d9c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[42, 17]" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "numbers[1] = 17\n", "numbers" @@ -292,20 +395,42 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 14, "id": "000aed26", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "'Edam' in cheeses" ] }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 15, "id": "bcb8929c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "'Wensleydale' in cheeses" ] @@ -320,10 +445,21 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 16, "id": "5ad51a26", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "4" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t = ['spam', 2.0, 5, [10, 20]]\n", "len(t)" @@ -339,10 +475,21 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 17, "id": "156dbc10", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "10 in t" ] @@ -360,13 +507,24 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 23, "id": "70b16371", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['c', 'd']" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "letters = ['a', 'b', 'c', 'd']\n", - "letters[1:3]" + "letters[2:4]" ] }, { @@ -379,12 +537,23 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 24, "id": "e67bab33", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['a']" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "letters[:2]" + "letters[:1]" ] }, { @@ -397,12 +566,23 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 30, "id": "a310f506", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['d']" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "letters[2:]" + "letters[3:]" ] }, { @@ -415,10 +595,21 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 21, "id": "1385a75e", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['a', 'b', 'c', 'd']" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "letters[:]" ] @@ -433,10 +624,21 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 31, "id": "a0ca0135", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['a', 'b', 'c', 'd']" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "list(letters)" ] @@ -461,14 +663,25 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 40, "id": "66804de0", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[3, 40, 10, 2]" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "t1 = [1, 2]\n", - "t2 = [3, 4]\n", - "t1 + t2" + "t1 = [10, 2]\n", + "t2 = [3, 40]\n", + "t2 + t1" ] }, { @@ -481,10 +694,21 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 34, "id": "96620f93", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['spam', 'spam', 'spam', 'spam']" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "['spam'] * 4" ] @@ -499,10 +723,21 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 37, "id": "0808ed08", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "12" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "sum(t1)" ] @@ -517,20 +752,42 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 38, "id": "7ed7e53d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "2" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "min(t1)" ] }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 41, "id": "dda02e4e", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "40" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "max(t2)" ] @@ -548,10 +805,21 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 44, "id": "bcf04ef9", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['a', 'b', 'c', 'd', 'e', 'e']" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "letters.append('e')\n", "letters" @@ -567,15 +835,48 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 45, "id": "be55916d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['a', 'b', 'c', 'd', 'e', 'e', 'f', 'g']" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "letters.extend(['f', 'g'])\n", "letters" ] }, + { + "cell_type": "code", + "execution_count": 52, + "id": "f2065b2a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['a', 'b', 'c', 'd', 'e', 'f', 'g']" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "letters.remove('e')\n", + "letters" + ] + }, { "cell_type": "markdown", "id": "0f39d9f6", @@ -587,10 +888,21 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 46, "id": "b22da905", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'b'" + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t = ['a', 'b', 'c']\n", "t.pop(1)" @@ -607,10 +919,21 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 47, "id": "01bdff91", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['a', 'c']" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t" ] @@ -625,7 +948,7 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 48, "id": "babe366e", "metadata": {}, "outputs": [], @@ -645,10 +968,21 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 49, "id": "f80f5b1d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['a', 'c']" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t" ] @@ -663,12 +997,21 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 50, "id": "861f8e7e", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "ValueError", + "evalue": "list.remove(x): x not in list", + "output_type": "error", + "traceback": [ + "\u001b[31mValueError\u001b[39m\u001b[31m:\u001b[39m list.remove(x): x not in list\n" + ] + } + ], "source": [ "%%expect ValueError\n", "\n", @@ -689,10 +1032,21 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 53, "id": "1b50bc13", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['s', 'p', 'a', 'm']" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "s = 'spam'\n", "t = list(s)\n", @@ -710,10 +1064,21 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 54, "id": "c28e5127", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['pining', 'for', 'the', 'fjords']" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "s = 'pining for the fjords'\n", "t = s.split()\n", @@ -730,10 +1095,21 @@ }, { "cell_type": "code", - "execution_count": 88, + "execution_count": 55, "id": "ec6ea206", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['ex', 'parrot']" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "s = 'ex-parrot'\n", "t = s.split('-')\n", @@ -751,10 +1127,21 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 56, "id": "75c74d3c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'pining for the fjords'" + ] + }, + "execution_count": 56, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "delimiter = ' '\n", "t = ['pining', 'for', 'the', 'fjords']\n", @@ -784,10 +1171,20 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 57, "id": "a5df1e10", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Cheddar\n", + "Edam\n", + "Gouda\n" + ] + } + ], "source": [ "for cheese in cheeses:\n", " print(cheese)" @@ -803,10 +1200,21 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 59, "id": "76b2c2e3", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "pining\n", + "for\n", + "the\n", + "fjords\n" + ] + } + ], "source": [ "s = 'pining for the fjords'\n", "\n", @@ -824,7 +1232,7 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 60, "id": "7e844887", "metadata": {}, "outputs": [], @@ -845,10 +1253,21 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 61, "id": "9db54d53", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['a', 'b', 'c']" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "scramble = ['c', 'a', 'b']\n", "sorted(scramble)" @@ -864,10 +1283,21 @@ }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 62, "id": "33d11287", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['c', 'a', 'b']" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "scramble" ] @@ -882,10 +1312,21 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 63, "id": "38c7cb0c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['e', 'e', 'l', 'r', 's', 't', 't']" + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "sorted('letters')" ] @@ -901,10 +1342,21 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 64, "id": "2adb2fc3", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'eelrstt'" + ] + }, + "execution_count": 64, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "''.join(sorted('letters'))" ] @@ -929,7 +1381,7 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 65, "id": "aa547282", "metadata": {}, "outputs": [], @@ -949,7 +1401,7 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 66, "id": "95a2aded", "metadata": { "tags": [] @@ -971,12 +1423,23 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 67, "id": "3d75a28c", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "width, height, x, y = [2.85, 0.76, 0.17, 0.51]\n", "ax = diagram(width, height)\n", @@ -996,10 +1459,21 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": 68, "id": "a37e37bf", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 68, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "a = 'banana'\n", "b = 'banana'\n", @@ -1018,10 +1492,21 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 69, "id": "d6af7316", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 69, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "a = [1, 2, 3]\n", "b = [1, 2, 3]\n", @@ -1038,7 +1523,7 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 70, "id": "dea08b82", "metadata": { "tags": [] @@ -1053,12 +1538,23 @@ }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 71, "id": "7e66ee69", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAIgAAABgCAYAAADGrTq9AAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjYsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvq6yFwwAAAAlwSFlzAAAPYQAAD2EBqD+naQAABQVJREFUeJzt3EkobXEcB/CfKTJcDxnqLlBIL0nIPGwUmydCiLKQhVIyJoWVDCtCrEQp0Vu9LAxZkDksLESXDLmGLDxehmd8/f9l8XL97r1yB3w/dfI457xzzz3f/3Dc82Px9PT0RACvsHxtBYCAgAALAQEWAgIsBARYCAiwEBBgISDAQkCAhYAACwEBFgICLAQEWAgIsBAQYCEgwEJAgIWAAAsBAZY1vdGfP3/euiuYmJOTk87bogcBFgICLAQEWAgIsBAQYCEgwEJAgIWAAAsBARYCAiwERAuFQkFRUVE0NjYmv19ZWaGkpCTy9PSk3Nxcnf+fnz9/UmxsLEVGRsqlo6NDp/0WFxflfmKJiIig0tJS+vv3r1w3Nzcnfy5e4+/fv8kQLN7690H0/SymsLCQtra26Pb2lpRKJXV1dck32RR2d3flmxsSEkKBgYFkafl6O1EoFLS/v0/fvn2T36vVajo6OqK1tTWamJigwcFBnY65sLBAvr6+8pzPz88pISGBOjs7KT4+nt3v6uqKbGxs5PL4+Ej5+fkUExNDJSUlr77GD/lZTEtLC01NTdH8/Lw8waamJjIVd3d3cnBwoNHRUerv76f19XX55utCqVRSeHg42dra6nVM0Qs9NwhnZ2cKCAiQF1Ube3t7GQ5BNK7r62uysLAgs/80V1/Dw8M0NDRENzc3cnFzc3uxzdLSEh0eHhrrJcmLfXZ2JoMyOTlJWVlZ5OXlZfDjbmxsyHNta2vTafu9vT05nO3s7FBycjIVFRWRsRilBxG9Rk9PjxyHxZgqeo/ncfSrUavVlJOTI8MhAqoLb29vOSSqVCr5vv369Ys+VQ8iJlBi3HN1dZXdZG9vr8btxCTMGC4vL+X8QVwsFxcXOR/QNhd5D2LukpqaSlVVVZSenq73/o6OjpSRkSF748zMTPo0PYiY9fv7+1NoaKjsIoODg8mUTk9P5eQvJSWFCgoK6Pv37+8SjuXlZfrx44fGdcfHx3JdWVkZ5eXl/bdODKthYWEa99ve3qa7uzv5b9G4RkZGKCgoiD5VDyImWX19ff/9rL6+nkzFx8dHLm+hUqnkhRYBE3Mp0fNUVFTIeYGYdNrZ2Wncr7GxkQ4ODqi7u1suQnFxsbwrEQGxttZ8Kaanp+XwbGVlRff395SYmEjV1dVkLEa7zf2oFHrcQpaXl8uJbnR0tF7HaG9vl3c4Ym5i6Neo720uAqKFn58feXh4UENDgxwezYmYuIr5zMnJCa2ursqg6AIBgY/3izL4mBAQYCEgwEJAgIWAAAsBARYCAiwEBFgICLAQEGAhIMBCQICFgIDpA2LIug0wLPQgWihQOGX450HECVRWVtL4+Lh8YLimpoays7PJVFA45URmVxcjin1mZmZkbYd4rlK0SvE4v6kLp0QLFS1a16falUqlXDY3N/U6pjjfZ/oWTj371IVT4ulxQbQi0S3Ozs6+CAgKp75o4ZQmxmwF5kSNwinNBgYGqLa2VrYGcbLNzc0vtkHh1BctnBIeHh4oLi6O0tLSqLW11WTzDwGFU2bWg1xcXMivdXV1ZA5QOKU7lD1ooUDhFALC8UPhFALy1TihcAreCwICLAQEWAgIsBAQYCEgwEJAgIWAgGF+UQZfA3oQYCEgwEJAgIWAAAsBARYCAiwEBFgICLAQEGAhIMBCQICFgAALAQEWAgIsBARYCAiwEBBgISDAQkCAhYAAcf4BVxeW9WrsPxYAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "width, height, x, y = [1.16, 0.76, 0.21, 0.51]\n", "ax = diagram(width, height)\n", @@ -1087,10 +1583,21 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 72, "id": "d6a7eb5b", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "a = [1, 2, 3]\n", "b = a\n", @@ -1107,7 +1614,7 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": 73, "id": "dd406791", "metadata": { "tags": [] @@ -1122,12 +1629,23 @@ }, { "cell_type": "code", - "execution_count": 54, + "execution_count": 74, "id": "552e1e1e", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAIMAAABlCAYAAABugFD5AAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjYsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvq6yFwwAAAAlwSFlzAAAPYQAAD2EBqD+naQAABotJREFUeJztnElIVWEUx49paIOaNllSmRMiSYsWzSOCIBmElYGCC3Eh2CLFahct2rQoi6JWrYJoWEUINhCGDYoV2oDNJZVF0ZzNGf8D9/B6vew+8T313f8PLu/lu9f3ce/vnu9859yM6u3t7RVCRGTEYA+ADB0oAzEoAzEoAzEoAzEoAzEoAzEoAzEoAzEoAzEoAzEoAzEoAzEoAzEoAzEoAzEoAzEoAzEoAzFixCUfPnxwuysZYsTHx7vaj5GBGJSBGJSBGJSBGJSBGJSBGJSBGJSBGJSBGJSBGJSBBN+bCJaKigq5d++efPv2TVJTU2Xfvn0yefLkUH0dGQCi3P6xjmAbVa9evZIJEybo+507d0pXV5fU19f3b5QkLI2qkEWGo0ePypEjR+TLly+6jR8/PlRfRQaIkMhw6dIlOXDggJw9e1YmTpwoDQ0Nsn379j/2QUA6duyYxMTEyMyZM3UbN25cKIZDBlOGt2/famhKTk7WnOHgwYN/7RMVFSWzZs2SW7duSVNTk5w7d073d8SYOnWqikKGec7w/ft3qayslGvXrukFXr58uTQ2NsqFCxcC7g9hkFM8fPhQt48fP8rIkSNl+vTpJofbeY/8jdtzF7IEsr9gOEg+HTGePXumP0My6hs1RozgqjjiZfAHyefjx49Njs+fP0tsbKykpaWpGHgdPXr0oIxtuBAxMviCob548UKlePDggb4HqF84USMlJUXzEX9+/PihInlxuomPRBn8+fTpk0WNR48eydevX2XUqFEaLdLT02XGjBkSFxen+968eVPOnDkjhYWFkpWVJV4i3gsy+PLr1y/p7u626eTly5caIZBfIGIgGb1y5YrcuXNH8vPzJS8vL+DvSUhIkNzcXNm2bZsUFBToMZs3b5br16/LihUr5PDhw67Gc/z4cdm1a5dGJFBWViYbNmz473EtLS1SU1Njifj8+fNlx44dOjVevHhR6urqdCxIuN0uxT0nQ6DxIlpgOsGJw4lFboFI8fr1a1mwYIHMmzcvoAxdPif66dOnKllHR4ecPn3atQyXL19WCTGFvXv3TpYsWSJ79+6VxYsX93lcT0+PrqSwQXBIhLFWV1f/c4xDvgI52OAE4O7HBhHu378vt2/f1tUJwF2GaWXp0qV9/p7U1FTdcGww+IqWmJgo2dnZegH/h28yjCU38pxAOVAo8MT6DPUNVEEhBO42JJmYNnCBwkFnZ6e0trbKsmXLXO2PPAjRAJEFIqFmEw4iNjL4Mnv2bJk2bZqWxhExwnWnOdPM+vXrtUmHCOMGJL6IXCi+QYQTJ07ImjVrJNR4IjIkJSVJRkaGzrXhFKG7u1tWrVqlSd/q1auDPn7s2LFSXFysTb9w4AkZ3rx5o1PE+/fvtVYxULS1tUlRUVHAz54/f66fbdy4UUpLS//4DHnLnDlzAh6HcSLHcXKGkydPag8nHHhimmhvb5erV6/qeyzRECmQrS9atEimTJnS57F3797Vi4osH9XQnJwcqa2t1fCNhNCpY/iDLu2TJ09k//79uoGqqipdHUCGfzXhzp8/rx3f6OhoXZYiwd20aZOEg4hdWvqCOw1PXaHGgDkcFxXg7vRfTSQEsWxDPWDt2rVaCwiG3bt365ITuUR/CNXSMmJlwHidApRTZxgzZoxGhr7qDJmZmTJp0iTZunWrFp2GEk7RCWV4RDpI4QbPyYAlI8KvIwA6n/4VSMzxCPt9VSAjEU8UndCbQJURFx9rc6c3gYs/d+7cv3oTSM5Wrlzpud6EW4ZVZMBQkaU7d7/TtUQRyelaYi5m13IITRPBJjh9gQvo25nk8wwemiacJ53QYIIAKNzgZ6geYp6HAFgO8kmngSdkMuzZs0dOnTql8/qWLVukpKTkn/uiuOL7NBOOQR0Acz6SPdz9XgzvESMD5u3m5ma9uFjLYxmHi+sLnoxGYoe1P1YDeHgWRR3c/ajjo/BCIkCG8vJyfcWFXbhwoXYOfWVA6L9x44ZGAHTzcPfz/00MLmHLGfwzfPx73bp14fp64oKQZWGHDh3SV+QCqJyh4kc8Ghl+/vypjSAkg3iGzz9fIEOPYVV0Iv2Dfy6YBA1lIAZlIAZlIAZlIAZlIAZlIAZlIAZlIAZlIAZlIMH3Jkjkw8hADMpADMpADMpADMpADMpADMpADMpADMpADMpADMpADMpADMpADMpADMpADMpADMpADMpADMpADMpADMpADMpADMpADMpADMpAxOE3MoMFZTUgZ/QAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "width, height, x, y = [1.11, 0.81, 0.17, 0.56]\n", "ax = diagram(width, height)\n", @@ -1150,10 +1668,21 @@ }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 75, "id": "6e3c1b24", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[5, 2, 3]" + ] + }, + "execution_count": 75, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "b[0] = 5\n", "a" @@ -1174,7 +1703,7 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 76, "id": "dad8a246", "metadata": {}, "outputs": [], @@ -1206,7 +1735,7 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": 77, "id": "613b1845", "metadata": {}, "outputs": [], @@ -1225,10 +1754,21 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 78, "id": "3aff3598", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'a'" + ] + }, + "execution_count": 78, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "letters = ['a', 'b', 'c']\n", "pop_first(letters)" @@ -1244,10 +1784,21 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 79, "id": "c10e4dcc", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['b', 'c']" + ] + }, + "execution_count": 79, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "letters" ] @@ -1262,7 +1813,7 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 80, "id": "a13e72c7", "metadata": { "tags": [] @@ -1281,12 +1832,33 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 81, "id": "1a06dae9", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[np.float64(2.05), np.float64(1.22), np.float64(1.06), np.float64(0.85)]" + ] + }, + "execution_count": 81, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAOAAAACQCAYAAAARD2cgAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjYsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvq6yFwwAAAAlwSFlzAAAPYQAAD2EBqD+naQAADtNJREFUeJztnQeMVNUXxg/NFQtW7BRFQRQERaKo2BBFsaCgoihWDJYggibEBiGGGEyMosYWFA2KqFE0YkFEbIiosSCI2EBRLKjAWsAC//xO/m+zLLO7szvv7X1v5vslk5ndnZ158+Z995577j3fbbR+/fr1JoQIQuMwbyuEAAlQiIBIgEIERAIUIiASoBABkQCFCIgEKERAJEAhAiIBChEQCVCIgEiAQgREAhQiIBKgEAGRAIUIiAQoREAkQCECIgEKERAJUIiASIBCBEQCFCIgEqAQAZEARSpo1KiRrVy50h+fcMIJ9tlnn9X4/DFjxtiaNWss6zSSLaFIiwB/++0323rrrRN5flpRDyhSR9u2be3DDz/0xzfddJN17NjRunbt6relS5fa0KFD/W89e/b03/3000+WVdQDilTQqFKPhgCnTZtmbdq0sd13392WL19uzZs3tz///NMaN25sm266qXpAIZKmRYsWttdee9k555xj9957r/36668uvmJCAhSppUmTJjZ37lwbPny4h5kHH3ywvfHGG1ZMNA19AEJUR3l5ud8Y63FbsGCBffDBB/54yy23tFWrVmU+BJUARWpZtWqVDRgwwP744w8f8xGOnnfeef63kSNHWu/evW2zzTazGTNm2A477GBZREkYIQKiMaAQAZEAhQiIBChEQJSEqQEycMUMmcQ0UF6k5zmf86seUIiASIBCBEQCFCIgEqAQAZEAhQiIBChEQCRAIQIiAQoREAlQiICkXoB4fqR9pQSV25GjV02MGzduAyev5557zubNm5fw0Yna6NSpUyzPKUoBYs6TliVThXLzzTdvJMB33323Xq/133//Wany+uuv29SpU+2FF17I/HlITIBHHnmkF00efvjh1rp1a7vhhhvs+eeft8MOO8xNd2699daK51599dXWvXt37+14fmVPyMp+kfzfjTfeaD169HCzHhyz0sYXX3zhRaRHHHGEHydeJoCtAvTp08cOPfRQe/TRR/18TJgwwX9+6KGH/O9Tpkyxo446yqu+ee78+fP994888oj17dvX/VGwZnjvvfds/PjxduCBB/r/c/vmm28CfnKzxx57zJ599lk3S0qKn3/+2X7//Xc788wzbdttt7XPP/+84Nfcbrvt/P66667z741zybmv/NrRczJTkIsAt99+e2+pVq9e7eI599xz7Y477rDvv//eOnToYMuWLXNLAU5qy5YtK77ESZMm2YsvvpjTLevkk0/2i3bFihXWrl07W7hwoe26665JfIS8Q19CUC5+euqjjz7a7r//fmvfvr27ePXq1cvuvPNO69atW8XzIhsF7PU6d+5sl19+uf+M/8ktt9zi4iwrK7M5c+a4cAlTEeCIESPszTff9Mpwzsl+++1nixcv3sgxLF/ijiyIVmbOnGl//fWXdenSxRuRbbbZptb/K6/DEOOjjz6yZs2a2T777GM//vijffLJJ36O44BrimsWnnzyST/nTz/9dL1fL5/zm2g1BD0Bxjp8CXvssYedeOKJLigEg+CWLFnivd7LL7/swuSLWLdunbtfVcfZZ5/t95woXvPrr79OTIB1hRbz008/tQsuuKDid7TWixYtcgHWxvTp0/2CQsQRCI0LGg466CAXHyBmPv+QIUP8+ccdd1zO88D/Y2TEea1K06bxf/0777yzW0l8/PHH7t/C8UbfWRysWbPGNt98c3+8ySabxOqOPWvWLI9Y+M44X0n25A0iwMqtMUKs+vO///7rPcIVV1zhYyF6NL44wtB8X5PXSAsEEzQ2b731Vr3/n4t19OjROf8eXXjRZ+eCeeedd1xg9AIPPPCAHXLIIVbMlJWV2d9//+2PuY/LpvDbb7/1odDs2bO9YaMhPP74463o6wFpLQkpaDm5AAnXsgqtPWHH5MmTfawGX375pYuS8Qp/IxyPQtDo5wj2RLj44ovtwgsvtFatWnkrTFh3wAEHbPReRAu01AiOGz0v4VlVAfLehO0NEYLS473yyit1DkHrwi677GLvv/++h6BEUHFFP3wPXIc77bSTX4f33XefNQTBBcgYaODAgbbvvvv6QLdfv36WVQjpHn/8cRs1apTdddddnqHjM02cONH/Tk9/yimnuJMXzs987ksvvdRDT0JJHL/Gjh1rgwYN8p6dFp7QMpcAuWAYUzP2I6wneogz1KsPJM8Y+yYhvAjczzh/5BZoQEhCxQHXX//+/T3Mp7Ek4dUQyBWtBtI+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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "width, height, x, y = [2.04, 1.24, 1.06, 0.85]\n", "ax = diagram(width, height)\n", @@ -1322,7 +1894,7 @@ }, { "cell_type": "code", - "execution_count": 89, + "execution_count": 82, "id": "6550f0b8", "metadata": { "tags": [] @@ -1334,10 +1906,1021 @@ }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 84, "id": "e5a94833", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['aa',\n", + " 'aah',\n", + " 'aahed',\n", + " 'aahing',\n", + " 'aahs',\n", + " 'aal',\n", + " 'aalii',\n", + " 'aaliis',\n", + " 'aals',\n", + " 'aardvark',\n", + " 'aardvarks',\n", + " 'aardwolf',\n", + " 'aardwolves',\n", + " 'aas',\n", + " 'aasvogel',\n", + " 'aasvogels',\n", + " 'aba',\n", + " 'abaca',\n", + " 'abacas',\n", + " 'abaci',\n", + " 'aback',\n", + " 'abacus',\n", + " 'abacuses',\n", + " 'abaft',\n", + " 'abaka',\n", + " 'abakas',\n", + " 'abalone',\n", + " 'abalones',\n", + " 'abamp',\n", + " 'abampere',\n", + " 'abamperes',\n", + " 'abamps',\n", + " 'abandon',\n", + " 'abandoned',\n", + " 'abandoning',\n", + " 'abandonment',\n", + " 'abandonments',\n", + " 'abandons',\n", + " 'abas',\n", + " 'abase',\n", + " 'abased',\n", + " 'abasedly',\n", + " 'abasement',\n", + " 'abasements',\n", + " 'abaser',\n", + " 'abasers',\n", + " 'abases',\n", + " 'abash',\n", + " 'abashed',\n", + " 'abashes',\n", + " 'abashing',\n", + " 'abasing',\n", + " 'abatable',\n", + " 'abate',\n", + " 'abated',\n", + " 'abatement',\n", + " 'abatements',\n", + " 'abater',\n", + " 'abaters',\n", + " 'abates',\n", + " 'abating',\n", + " 'abatis',\n", + " 'abatises',\n", + " 'abator',\n", + " 'abators',\n", + " 'abattis',\n", + " 'abattises',\n", + " 'abattoir',\n", + " 'abattoirs',\n", + " 'abaxial',\n", + " 'abaxile',\n", + " 'abbacies',\n", + " 'abbacy',\n", + " 'abbatial',\n", + " 'abbe',\n", + " 'abbes',\n", + " 'abbess',\n", + " 'abbesses',\n", + " 'abbey',\n", + " 'abbeys',\n", + " 'abbot',\n", + " 'abbotcies',\n", + " 'abbotcy',\n", + " 'abbots',\n", + " 'abbreviate',\n", + " 'abbreviated',\n", + " 'abbreviates',\n", + " 'abbreviating',\n", + " 'abbreviation',\n", + " 'abbreviations',\n", + " 'abdicate',\n", + " 'abdicated',\n", + " 'abdicates',\n", + " 'abdicating',\n", + " 'abdication',\n", + " 'abdications',\n", + " 'abdomen',\n", + " 'abdomens',\n", + " 'abdomina',\n", + " 'abdominal',\n", + " 'abdominally',\n", + " 'abduce',\n", + " 'abduced',\n", + " 'abducens',\n", + " 'abducent',\n", + " 'abducentes',\n", + " 'abduces',\n", + " 'abducing',\n", + " 'abduct',\n", + " 'abducted',\n", + " 'abducting',\n", + " 'abductor',\n", + " 'abductores',\n", + " 'abductors',\n", + " 'abducts',\n", + " 'abeam',\n", + " 'abed',\n", + " 'abele',\n", + " 'abeles',\n", + " 'abelmosk',\n", + " 'abelmosks',\n", + " 'aberrant',\n", + " 'aberrants',\n", + " 'aberration',\n", + " 'aberrations',\n", + " 'abet',\n", + " 'abetment',\n", + " 'abetments',\n", + " 'abets',\n", + " 'abettal',\n", + " 'abettals',\n", + " 'abetted',\n", + " 'abetter',\n", + " 'abetters',\n", + " 'abetting',\n", + " 'abettor',\n", + " 'abettors',\n", + " 'abeyance',\n", + " 'abeyances',\n", + " 'abeyancies',\n", + " 'abeyancy',\n", + " 'abeyant',\n", + " 'abfarad',\n", + " 'abfarads',\n", + " 'abhenries',\n", + " 'abhenry',\n", + " 'abhenrys',\n", + " 'abhor',\n", + " 'abhorred',\n", + " 'abhorrence',\n", + " 'abhorrences',\n", + " 'abhorrent',\n", + " 'abhorrer',\n", + " 'abhorrers',\n", + " 'abhorring',\n", + " 'abhors',\n", + " 'abidance',\n", + " 'abidances',\n", + " 'abide',\n", + " 'abided',\n", + " 'abider',\n", + " 'abiders',\n", + " 'abides',\n", + " 'abiding',\n", + " 'abied',\n", + " 'abies',\n", + " 'abigail',\n", + " 'abigails',\n", + " 'abilities',\n", + " 'ability',\n", + " 'abioses',\n", + " 'abiosis',\n", + " 'abiotic',\n", + " 'abject',\n", + " 'abjectly',\n", + " 'abjectness',\n", + " 'abjectnesses',\n", + " 'abjuration',\n", + " 'abjurations',\n", + " 'abjure',\n", + " 'abjured',\n", + " 'abjurer',\n", + " 'abjurers',\n", + " 'abjures',\n", + " 'abjuring',\n", + " 'ablate',\n", + " 'ablated',\n", + " 'ablates',\n", + " 'ablating',\n", + " 'ablation',\n", + " 'ablations',\n", + " 'ablative',\n", + " 'ablatives',\n", + " 'ablaut',\n", + " 'ablauts',\n", + " 'ablaze',\n", + " 'able',\n", + " 'ablegate',\n", + " 'ablegates',\n", + " 'abler',\n", + " 'ables',\n", + " 'ablest',\n", + " 'ablings',\n", + " 'ablins',\n", + " 'abloom',\n", + " 'abluent',\n", + " 'abluents',\n", + " 'ablush',\n", + " 'abluted',\n", + " 'ablution',\n", + " 'ablutions',\n", + " 'ably',\n", + " 'abmho',\n", + " 'abmhos',\n", + " 'abnegate',\n", + " 'abnegated',\n", + " 'abnegates',\n", + " 'abnegating',\n", + " 'abnegation',\n", + " 'abnegations',\n", + " 'abnormal',\n", + " 'abnormalities',\n", + " 'abnormality',\n", + " 'abnormally',\n", + " 'abnormals',\n", + " 'abo',\n", + " 'aboard',\n", + " 'abode',\n", + " 'aboded',\n", + " 'abodes',\n", + " 'aboding',\n", + " 'abohm',\n", + " 'abohms',\n", + " 'aboideau',\n", + " 'aboideaus',\n", + " 'aboideaux',\n", + " 'aboil',\n", + " 'aboiteau',\n", + " 'aboiteaus',\n", + " 'aboiteaux',\n", + " 'abolish',\n", + " 'abolished',\n", + " 'abolishes',\n", + " 'abolishing',\n", + " 'abolition',\n", + " 'abolitions',\n", + " 'abolla',\n", + " 'abollae',\n", + " 'aboma',\n", + " 'abomas',\n", + " 'abomasa',\n", + " 'abomasal',\n", + " 'abomasi',\n", + " 'abomasum',\n", + " 'abomasus',\n", + " 'abominable',\n", + " 'abominate',\n", + " 'abominated',\n", + " 'abominates',\n", + " 'abominating',\n", + " 'abomination',\n", + " 'abominations',\n", + " 'aboon',\n", + " 'aboral',\n", + " 'aborally',\n", + " 'aboriginal',\n", + " 'aborigine',\n", + " 'aborigines',\n", + " 'aborning',\n", + " 'abort',\n", + " 'aborted',\n", + " 'aborter',\n", + " 'aborters',\n", + " 'aborting',\n", + " 'abortion',\n", + " 'abortions',\n", + " 'abortive',\n", + " 'aborts',\n", + " 'abos',\n", + " 'abought',\n", + " 'aboulia',\n", + " 'aboulias',\n", + " 'aboulic',\n", + " 'abound',\n", + " 'abounded',\n", + " 'abounding',\n", + " 'abounds',\n", + " 'about',\n", + " 'above',\n", + " 'aboveboard',\n", + " 'aboves',\n", + " 'abracadabra',\n", + " 'abradant',\n", + " 'abradants',\n", + " 'abrade',\n", + " 'abraded',\n", + " 'abrader',\n", + " 'abraders',\n", + " 'abrades',\n", + " 'abrading',\n", + " 'abrasion',\n", + " 'abrasions',\n", + " 'abrasive',\n", + " 'abrasively',\n", + " 'abrasiveness',\n", + " 'abrasivenesses',\n", + " 'abrasives',\n", + " 'abreact',\n", + " 'abreacted',\n", + " 'abreacting',\n", + " 'abreacts',\n", + " 'abreast',\n", + " 'abri',\n", + " 'abridge',\n", + " 'abridged',\n", + " 'abridgement',\n", + " 'abridgements',\n", + " 'abridger',\n", + " 'abridgers',\n", + " 'abridges',\n", + " 'abridging',\n", + " 'abridgment',\n", + " 'abridgments',\n", + " 'abris',\n", + " 'abroach',\n", + " 'abroad',\n", + " 'abrogate',\n", + " 'abrogated',\n", + " 'abrogates',\n", + " 'abrogating',\n", + " 'abrupt',\n", + " 'abrupter',\n", + " 'abruptest',\n", + " 'abruptly',\n", + " 'abscess',\n", + " 'abscessed',\n", + " 'abscesses',\n", + " 'abscessing',\n", + " 'abscise',\n", + " 'abscised',\n", + " 'abscises',\n", + " 'abscisin',\n", + " 'abscising',\n", + " 'abscisins',\n", + " 'abscissa',\n", + " 'abscissae',\n", + " 'abscissas',\n", + " 'abscond',\n", + " 'absconded',\n", + " 'absconding',\n", + " 'absconds',\n", + " 'absence',\n", + " 'absences',\n", + " 'absent',\n", + " 'absented',\n", + " 'absentee',\n", + " 'absentees',\n", + " 'absenter',\n", + " 'absenters',\n", + " 'absenting',\n", + " 'absently',\n", + " 'absentminded',\n", + " 'absentmindedly',\n", + " 'absentmindedness',\n", + " 'absentmindednesses',\n", + " 'absents',\n", + " 'absinth',\n", + " 'absinthe',\n", + " 'absinthes',\n", + " 'absinths',\n", + " 'absolute',\n", + " 'absolutely',\n", + " 'absoluter',\n", + " 'absolutes',\n", + " 'absolutest',\n", + " 'absolution',\n", + " 'absolutions',\n", + " 'absolve',\n", + " 'absolved',\n", + " 'absolver',\n", + " 'absolvers',\n", + " 'absolves',\n", + " 'absolving',\n", + " 'absonant',\n", + " 'absorb',\n", + " 'absorbed',\n", + " 'absorbencies',\n", + " 'absorbency',\n", + " 'absorbent',\n", + " 'absorber',\n", + " 'absorbers',\n", + " 'absorbing',\n", + " 'absorbingly',\n", + " 'absorbs',\n", + " 'absorption',\n", + " 'absorptions',\n", + " 'absorptive',\n", + " 'abstain',\n", + " 'abstained',\n", + " 'abstainer',\n", + " 'abstainers',\n", + " 'abstaining',\n", + " 'abstains',\n", + " 'abstemious',\n", + " 'abstemiously',\n", + " 'abstention',\n", + " 'abstentions',\n", + " 'absterge',\n", + " 'absterged',\n", + " 'absterges',\n", + " 'absterging',\n", + " 'abstinence',\n", + " 'abstinences',\n", + " 'abstract',\n", + " 'abstracted',\n", + " 'abstracter',\n", + " 'abstractest',\n", + " 'abstracting',\n", + " 'abstraction',\n", + " 'abstractions',\n", + " 'abstractly',\n", + " 'abstractness',\n", + " 'abstractnesses',\n", + " 'abstracts',\n", + " 'abstrict',\n", + " 'abstricted',\n", + " 'abstricting',\n", + " 'abstricts',\n", + " 'abstruse',\n", + " 'abstrusely',\n", + " 'abstruseness',\n", + " 'abstrusenesses',\n", + " 'abstruser',\n", + " 'abstrusest',\n", + " 'absurd',\n", + " 'absurder',\n", + " 'absurdest',\n", + " 'absurdities',\n", + " 'absurdity',\n", + " 'absurdly',\n", + " 'absurds',\n", + " 'abubble',\n", + " 'abulia',\n", + " 'abulias',\n", + " 'abulic',\n", + " 'abundance',\n", + " 'abundances',\n", + " 'abundant',\n", + " 'abundantly',\n", + " 'abusable',\n", + " 'abuse',\n", + " 'abused',\n", + " 'abuser',\n", + " 'abusers',\n", + " 'abuses',\n", + " 'abusing',\n", + " 'abusive',\n", + " 'abusively',\n", + " 'abusiveness',\n", + " 'abusivenesses',\n", + " 'abut',\n", + " 'abutilon',\n", + " 'abutilons',\n", + " 'abutment',\n", + " 'abutments',\n", + " 'abuts',\n", + " 'abuttal',\n", + " 'abuttals',\n", + " 'abutted',\n", + " 'abutter',\n", + " 'abutters',\n", + " 'abutting',\n", + " 'abuzz',\n", + " 'abvolt',\n", + " 'abvolts',\n", + " 'abwatt',\n", + " 'abwatts',\n", + " 'aby',\n", + " 'abye',\n", + " 'abyed',\n", + " 'abyes',\n", + " 'abying',\n", + " 'abys',\n", + " 'abysm',\n", + " 'abysmal',\n", + " 'abysmally',\n", + " 'abysms',\n", + " 'abyss',\n", + " 'abyssal',\n", + " 'abysses',\n", + " 'acacia',\n", + " 'acacias',\n", + " 'academe',\n", + " 'academes',\n", + " 'academia',\n", + " 'academias',\n", + " 'academic',\n", + " 'academically',\n", + " 'academics',\n", + " 'academies',\n", + " 'academy',\n", + " 'acajou',\n", + " 'acajous',\n", + " 'acaleph',\n", + " 'acalephae',\n", + " 'acalephe',\n", + " 'acalephes',\n", + " 'acalephs',\n", + " 'acanthi',\n", + " 'acanthus',\n", + " 'acanthuses',\n", + " 'acari',\n", + " 'acarid',\n", + " 'acaridan',\n", + " 'acaridans',\n", + " 'acarids',\n", + " 'acarine',\n", + " 'acarines',\n", + " 'acaroid',\n", + " 'acarpous',\n", + " 'acarus',\n", + " 'acaudal',\n", + " 'acaudate',\n", + " 'acauline',\n", + " 'acaulose',\n", + " 'acaulous',\n", + " 'accede',\n", + " 'acceded',\n", + " 'acceder',\n", + " 'acceders',\n", + " 'accedes',\n", + " 'acceding',\n", + " 'accelerate',\n", + " 'accelerated',\n", + " 'accelerates',\n", + " 'accelerating',\n", + " 'acceleration',\n", + " 'accelerations',\n", + " 'accelerator',\n", + " 'accelerators',\n", + " 'accent',\n", + " 'accented',\n", + " 'accenting',\n", + " 'accentor',\n", + " 'accentors',\n", + " 'accents',\n", + " 'accentual',\n", + " 'accentuate',\n", + " 'accentuated',\n", + " 'accentuates',\n", + " 'accentuating',\n", + " 'accentuation',\n", + " 'accentuations',\n", + " 'accept',\n", + " 'acceptabilities',\n", + " 'acceptability',\n", + " 'acceptable',\n", + " 'acceptance',\n", + " 'acceptances',\n", + " 'accepted',\n", + " 'acceptee',\n", + " 'acceptees',\n", + " 'accepter',\n", + " 'accepters',\n", + " 'accepting',\n", + " 'acceptor',\n", + " 'acceptors',\n", + " 'accepts',\n", + " 'access',\n", + " 'accessed',\n", + " 'accesses',\n", + " 'accessibilities',\n", + " 'accessibility',\n", + " 'accessible',\n", + " 'accessing',\n", + " 'accession',\n", + " 'accessions',\n", + " 'accessories',\n", + " 'accessory',\n", + " 'accident',\n", + " 'accidental',\n", + " 'accidentally',\n", + " 'accidentals',\n", + " 'accidents',\n", + " 'accidie',\n", + " 'accidies',\n", + " 'acclaim',\n", + " 'acclaimed',\n", + " 'acclaiming',\n", + " 'acclaims',\n", + " 'acclamation',\n", + " 'acclamations',\n", + " 'acclimate',\n", + " 'acclimated',\n", + " 'acclimates',\n", + " 'acclimating',\n", + " 'acclimation',\n", + " 'acclimations',\n", + " 'acclimatization',\n", + " 'acclimatizations',\n", + " 'acclimatize',\n", + " 'acclimatizes',\n", + " 'accolade',\n", + " 'accolades',\n", + " 'accommodate',\n", + " 'accommodated',\n", + " 'accommodates',\n", + " 'accommodating',\n", + " 'accommodation',\n", + " 'accommodations',\n", + " 'accompanied',\n", + " 'accompanies',\n", + " 'accompaniment',\n", + " 'accompaniments',\n", + " 'accompanist',\n", + " 'accompany',\n", + " 'accompanying',\n", + " 'accomplice',\n", + " 'accomplices',\n", + " 'accomplish',\n", + " 'accomplished',\n", + " 'accomplisher',\n", + " 'accomplishers',\n", + " 'accomplishes',\n", + " 'accomplishing',\n", + " 'accomplishment',\n", + " 'accomplishments',\n", + " 'accord',\n", + " 'accordance',\n", + " 'accordant',\n", + " 'accorded',\n", + " 'accorder',\n", + " 'accorders',\n", + " 'according',\n", + " 'accordingly',\n", + " 'accordion',\n", + " 'accordions',\n", + " 'accords',\n", + " 'accost',\n", + " 'accosted',\n", + " 'accosting',\n", + " 'accosts',\n", + " 'account',\n", + " 'accountabilities',\n", + " 'accountability',\n", + " 'accountable',\n", + " 'accountancies',\n", + " 'accountancy',\n", + " 'accountant',\n", + " 'accountants',\n", + " 'accounted',\n", + " 'accounting',\n", + " 'accountings',\n", + " 'accounts',\n", + " 'accouter',\n", + " 'accoutered',\n", + " 'accoutering',\n", + " 'accouters',\n", + " 'accoutre',\n", + " 'accoutred',\n", + " 'accoutrement',\n", + " 'accoutrements',\n", + " 'accoutres',\n", + " 'accoutring',\n", + " 'accredit',\n", + " 'accredited',\n", + " 'accrediting',\n", + " 'accredits',\n", + " 'accrete',\n", + " 'accreted',\n", + " 'accretes',\n", + " 'accreting',\n", + " 'accrual',\n", + " 'accruals',\n", + " 'accrue',\n", + " 'accrued',\n", + " 'accrues',\n", + " 'accruing',\n", + " 'accumulate',\n", + " 'accumulated',\n", + " 'accumulates',\n", + " 'accumulating',\n", + " 'accumulation',\n", + " 'accumulations',\n", + " 'accumulator',\n", + " 'accumulators',\n", + " 'accuracies',\n", + " 'accuracy',\n", + " 'accurate',\n", + " 'accurately',\n", + " 'accurateness',\n", + " 'accuratenesses',\n", + " 'accursed',\n", + " 'accurst',\n", + " 'accusal',\n", + " 'accusals',\n", + " 'accusant',\n", + " 'accusants',\n", + " 'accusation',\n", + " 'accusations',\n", + " 'accuse',\n", + " 'accused',\n", + " 'accuser',\n", + " 'accusers',\n", + " 'accuses',\n", + " 'accusing',\n", + " 'accustom',\n", + " 'accustomed',\n", + " 'accustoming',\n", + " 'accustoms',\n", + " 'ace',\n", + " 'aced',\n", + " 'acedia',\n", + " 'acedias',\n", + " 'aceldama',\n", + " 'aceldamas',\n", + " 'acentric',\n", + " 'acequia',\n", + " 'acequias',\n", + " 'acerate',\n", + " 'acerated',\n", + " 'acerb',\n", + " 'acerbate',\n", + " 'acerbated',\n", + " 'acerbates',\n", + " 'acerbating',\n", + " 'acerber',\n", + " 'acerbest',\n", + " 'acerbic',\n", + " 'acerbities',\n", + " 'acerbity',\n", + " 'acerola',\n", + " 'acerolas',\n", + " 'acerose',\n", + " 'acerous',\n", + " 'acers',\n", + " 'acervate',\n", + " 'acervuli',\n", + " 'aces',\n", + " 'acescent',\n", + " 'acescents',\n", + " 'aceta',\n", + " 'acetal',\n", + " 'acetals',\n", + " 'acetamid',\n", + " 'acetamids',\n", + " 'acetate',\n", + " 'acetated',\n", + " 'acetates',\n", + " 'acetic',\n", + " 'acetified',\n", + " 'acetifies',\n", + " 'acetify',\n", + " 'acetifying',\n", + " 'acetone',\n", + " 'acetones',\n", + " 'acetonic',\n", + " 'acetose',\n", + " 'acetous',\n", + " 'acetoxyl',\n", + " 'acetoxyls',\n", + " 'acetum',\n", + " 'acetyl',\n", + " 'acetylene',\n", + " 'acetylenes',\n", + " 'acetylic',\n", + " 'acetyls',\n", + " 'ache',\n", + " 'ached',\n", + " 'achene',\n", + " 'achenes',\n", + " 'achenial',\n", + " 'aches',\n", + " 'achier',\n", + " 'achiest',\n", + " 'achievable',\n", + " 'achieve',\n", + " 'achieved',\n", + " 'achievement',\n", + " 'achievements',\n", + " 'achiever',\n", + " 'achievers',\n", + " 'achieves',\n", + " 'achieving',\n", + " 'achiness',\n", + " 'achinesses',\n", + " 'aching',\n", + " 'achingly',\n", + " 'achiote',\n", + " 'achiotes',\n", + " 'achoo',\n", + " 'achromat',\n", + " 'achromats',\n", + " 'achromic',\n", + " 'achy',\n", + " 'acicula',\n", + " 'aciculae',\n", + " 'acicular',\n", + " 'aciculas',\n", + " 'acid',\n", + " 'acidhead',\n", + " 'acidheads',\n", + " 'acidic',\n", + " 'acidified',\n", + " 'acidifies',\n", + " 'acidify',\n", + " 'acidifying',\n", + " 'acidities',\n", + " 'acidity',\n", + " 'acidly',\n", + " 'acidness',\n", + " 'acidnesses',\n", + " 'acidoses',\n", + " 'acidosis',\n", + " 'acidotic',\n", + " 'acids',\n", + " 'acidy',\n", + " 'acierate',\n", + " 'acierated',\n", + " 'acierates',\n", + " 'acierating',\n", + " 'aciform',\n", + " 'acinar',\n", + " 'acing',\n", + " 'acini',\n", + " 'acinic',\n", + " 'acinose',\n", + " 'acinous',\n", + " 'acinus',\n", + " 'acknowledge',\n", + " 'acknowledged',\n", + " 'acknowledgement',\n", + " 'acknowledgements',\n", + " 'acknowledges',\n", + " 'acknowledging',\n", + " 'acknowledgment',\n", + " 'acknowledgments',\n", + " 'aclinic',\n", + " 'acmatic',\n", + " 'acme',\n", + " 'acmes',\n", + " 'acmic',\n", + " 'acne',\n", + " 'acned',\n", + " 'acnes',\n", + " 'acnode',\n", + " 'acnodes',\n", + " 'acock',\n", + " 'acold',\n", + " 'acolyte',\n", + " 'acolytes',\n", + " 'aconite',\n", + " 'aconites',\n", + " 'aconitic',\n", + " 'aconitum',\n", + " 'aconitums',\n", + " 'acorn',\n", + " 'acorns',\n", + " 'acoustic',\n", + " 'acoustical',\n", + " 'acoustically',\n", + " 'acoustics',\n", + " 'acquaint',\n", + " 'acquaintance',\n", + " 'acquaintances',\n", + " 'acquaintanceship',\n", + " 'acquaintanceships',\n", + " 'acquainted',\n", + " 'acquainting',\n", + " 'acquaints',\n", + " 'acquest',\n", + " 'acquests',\n", + " 'acquiesce',\n", + " 'acquiesced',\n", + " 'acquiescence',\n", + " 'acquiescences',\n", + " 'acquiescent',\n", + " 'acquiescently',\n", + " 'acquiesces',\n", + " 'acquiescing',\n", + " 'acquire',\n", + " 'acquired',\n", + " 'acquirer',\n", + " 'acquirers',\n", + " 'acquires',\n", + " 'acquiring',\n", + " 'acquisition',\n", + " 'acquisitions',\n", + " 'acquisitive',\n", + " 'acquit',\n", + " 'acquits',\n", + " 'acquitted',\n", + " 'acquitting',\n", + " 'acrasin',\n", + " 'acrasins',\n", + " 'acre',\n", + " 'acreage',\n", + " 'acreages',\n", + " 'acred',\n", + " 'acres',\n", + " 'acrid',\n", + " 'acrider',\n", + " 'acridest',\n", + " 'acridine',\n", + " 'acridines',\n", + " 'acridities',\n", + " 'acridity',\n", + " 'acridly',\n", + " 'acridness',\n", + " 'acridnesses',\n", + " 'acrimonies',\n", + " 'acrimonious',\n", + " 'acrimony',\n", + " 'acrobat',\n", + " 'acrobatic',\n", + " 'acrobats',\n", + " 'acrodont',\n", + " 'acrodonts',\n", + " 'acrogen',\n", + " 'acrogens',\n", + " 'acrolein',\n", + " 'acroleins',\n", + " 'acrolith',\n", + " 'acroliths',\n", + " 'acromia',\n", + " 'acromial',\n", + " 'acromion',\n", + " 'acronic',\n", + " 'acronym',\n", + " 'acronyms',\n", + " 'across',\n", + " 'acrostic',\n", + " 'acrostics',\n", + " 'acrotic',\n", + " 'acrotism',\n", + " 'acrotisms',\n", + " 'acrylate',\n", + " 'acrylates',\n", + " 'acrylic',\n", + " 'acrylics',\n", + " 'act',\n", + " 'acta',\n", + " 'actable',\n", + " 'acted',\n", + " 'actin',\n", + " 'actinal',\n", + " 'acting',\n", + " 'actings',\n", + " 'actinia',\n", + " 'actiniae',\n", + " 'actinian',\n", + " 'actinians',\n", + " 'actinias',\n", + " 'actinic',\n", + " 'actinide',\n", + " 'actinides',\n", + " 'actinism',\n", + " 'actinisms',\n", + " 'actinium',\n", + " 'actiniums',\n", + " 'actinoid',\n", + " 'actinoids',\n", + " 'actinon',\n", + " 'actinons',\n", + " 'actins',\n", + " 'action',\n", + " 'actions',\n", + " 'activate',\n", + " 'activated',\n", + " 'activates',\n", + " 'activating',\n", + " 'activation',\n", + " 'activations',\n", + " 'active',\n", + " 'actively',\n", + " 'actives',\n", + " 'activism',\n", + " 'activisms',\n", + " 'activist',\n", + " 'activists',\n", + " 'activities',\n", + " 'activity',\n", + " 'actor',\n", + " 'actorish',\n", + " 'actors',\n", + " 'actress',\n", + " 'actresses',\n", + " 'acts',\n", + " 'actual',\n", + " 'actualities',\n", + " 'actuality',\n", + " 'actualization',\n", + " 'actualizations',\n", + " 'actualize',\n", + " 'actualized',\n", + " 'actualizes',\n", + " 'actualizing',\n", + " 'actually',\n", + " 'actuarial',\n", + " 'actuaries',\n", + " ...]" + ] + }, + "execution_count": 84, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "word_list = []\n", "\n", @@ -1345,7 +2928,8 @@ " word = line.strip()\n", " word_list.append(word)\n", " \n", - "len(word_list)" + "len(word_list)\n", + "word_list" ] }, { @@ -1362,13 +2946,25 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 86, "id": "32e28204", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'aa\\naah\\naahed\\naahing\\naahs\\naal\\naalii\\naaliis\\naals\\naardvark\\naardvarks\\naardwolf\\naardwolves\\naas\\naasvogel\\naasvogels\\naba\\nabaca\\nabacas\\nabaci\\naback\\nabacus\\nabacuses\\nabaft\\nabaka\\nabakas\\nabalone\\nabalones\\nabamp\\nabampere\\nabamperes\\nabamps\\nabandon\\nabandoned\\nabandoning\\nabandonment\\nabandonments\\nabandons\\nabas\\nabase\\nabased\\nabasedly\\nabasement\\nabasements\\nabaser\\nabasers\\nabases\\nabash\\nabashed\\nabashes\\nabashing\\nabasing\\nabatable\\nabate\\nabated\\nabatement\\nabatements\\nabater\\nabaters\\nabates\\nabating\\nabatis\\nabatises\\nabator\\nabators\\nabattis\\nabattises\\nabattoir\\nabattoirs\\nabaxial\\nabaxile\\nabbacies\\nabbacy\\nabbatial\\nabbe\\nabbes\\nabbess\\nabbesses\\nabbey\\nabbeys\\nabbot\\nabbotcies\\nabbotcy\\nabbots\\nabbreviate\\nabbreviated\\nabbreviates\\nabbreviating\\nabbreviation\\nabbreviations\\nabdicate\\nabdicated\\nabdicates\\nabdicating\\nabdication\\nabdications\\nabdomen\\nabdomens\\nabdomina\\nabdominal\\nabdominally\\nabduce\\nabduced\\nabducens\\nabducent\\nabducentes\\nabduces\\nabducing\\nabduct\\nabducted\\nabducting\\nabductor\\nabductores\\nabductors\\nabducts\\nabeam\\nabed\\nabele\\nabeles\\nabelmosk\\nabelmosks\\naberrant\\naberrants\\naberration\\naberrations\\nabet\\nabetment\\nabetments\\nabets\\nabettal\\nabettals\\nabetted\\nabetter\\nabetters\\nabetting\\nabettor\\nabettors\\nabeyance\\nabeyances\\nabeyancies\\nabeyancy\\nabeyant\\nabfarad\\nabfarads\\nabhenries\\nabhenry\\nabhenrys\\nabhor\\nabhorred\\nabhorrence\\nabhorrences\\nabhorrent\\nabhorrer\\nabhorrers\\nabhorring\\nabhors\\nabidance\\nabidances\\nabide\\nabided\\nabider\\nabiders\\nabides\\nabiding\\nabied\\nabies\\nabigail\\nabigails\\nabilities\\nability\\nabioses\\nabiosis\\nabiotic\\nabject\\nabjectly\\nabjectness\\nabjectnesses\\nabjuration\\nabjurations\\nabjure\\nabjured\\nabjurer\\nabjurers\\nabjures\\nabjuring\\nablate\\nablated\\nablates\\nablating\\nablation\\nablations\\nablative\\nablatives\\nablaut\\nablauts\\nablaze\\nable\\nablegate\\nablegates\\nabler\\nables\\nablest\\nablings\\nablins\\nabloom\\nabluent\\nabluents\\nablush\\nabluted\\nablution\\nablutions\\nably\\nabmho\\nabmhos\\nabnegate\\nabnegated\\nabnegates\\nabnegating\\nabnegation\\nabnegations\\nabnormal\\nabnormalities\\nabnormality\\nabnormally\\nabnormals\\nabo\\naboard\\nabode\\naboded\\nabodes\\naboding\\nabohm\\nabohms\\naboideau\\naboideaus\\naboideaux\\naboil\\naboiteau\\naboiteaus\\naboiteaux\\nabolish\\nabolished\\nabolishes\\nabolishing\\nabolition\\nabolitions\\nabolla\\nabollae\\naboma\\nabomas\\nabomasa\\nabomasal\\nabomasi\\nabomasum\\nabomasus\\nabominable\\nabominate\\nabominated\\nabominates\\nabominating\\nabomination\\nabominations\\naboon\\naboral\\naborally\\naboriginal\\naborigine\\naborigines\\naborning\\nabort\\naborted\\naborter\\naborters\\naborting\\nabortion\\nabortions\\nabortive\\naborts\\nabos\\nabought\\naboulia\\naboulias\\naboulic\\nabound\\nabounded\\nabounding\\nabounds\\nabout\\nabove\\naboveboard\\naboves\\nabracadabra\\nabradant\\nabradants\\nabrade\\nabraded\\nabrader\\nabraders\\nabrades\\nabrading\\nabrasion\\nabrasions\\nabrasive\\nabrasively\\nabrasiveness\\nabrasivenesses\\nabrasives\\nabreact\\nabreacted\\nabreacting\\nabreacts\\nabreast\\nabri\\nabridge\\nabridged\\nabridgement\\nabridgements\\nabridger\\nabridgers\\nabridges\\nabridging\\nabridgment\\nabridgments\\nabris\\nabroach\\nabroad\\nabrogate\\nabrogated\\nabrogates\\nabrogating\\nabrupt\\nabrupter\\nabruptest\\nabruptly\\nabscess\\nabscessed\\nabscesses\\nabscessing\\nabscise\\nabscised\\nabscises\\nabscisin\\nabscising\\nabscisins\\nabscissa\\nabscissae\\nabscissas\\nabscond\\nabsconded\\nabsconding\\nabsconds\\nabsence\\nabsences\\nabsent\\nabsented\\nabsentee\\nabsentees\\nabsenter\\nabsenters\\nabsenting\\nabsently\\nabsentminded\\nabsentmindedly\\nabsentmindedness\\nabsentmindednesses\\nabsents\\nabsinth\\nabsinthe\\nabsinthes\\nabsinths\\nabsolute\\nabsolutely\\nabsoluter\\nabsolutes\\nabsolutest\\nabsolution\\nabsolutions\\nabsolve\\nabsolved\\nabsolver\\nabsolvers\\nabsolves\\nabsolving\\nabsonant\\nabsorb\\nabsorbed\\nabsorbencies\\nabsorbency\\nabsorbent\\nabsorber\\nabsorbers\\nabsorbing\\nabsorbingly\\nabsorbs\\nabsorption\\nabsorptions\\nabsorptive\\nabstain\\nabstained\\nabstainer\\nabstainers\\nabstaining\\nabstains\\nabstemious\\nabstemiously\\nabstention\\nabstentions\\nabsterge\\nabsterged\\nabsterges\\nabsterging\\nabstinence\\nabstinences\\nabstract\\nabstracted\\nabstracter\\nabstractest\\nabstracting\\nabstraction\\nabstractions\\nabstractly\\nabstractness\\nabstractnesses\\nabstracts\\nabstrict\\nabstricted\\nabstricting\\nabstricts\\nabstruse\\nabstrusely\\nabstruseness\\nabstrusenesses\\nabstruser\\nabstrusest\\nabsurd\\nabsurder\\nabsurdest\\nabsurdities\\nabsurdity\\nabsurdly\\nabsurds\\nabubble\\nabulia\\nabulias\\nabulic\\nabundance\\nabundances\\nabundant\\nabundantly\\nabusable\\nabuse\\nabused\\nabuser\\nabusers\\nabuses\\nabusing\\nabusive\\nabusively\\nabusiveness\\nabusivenesses\\nabut\\nabutilon\\nabutilons\\nabutment\\nabutments\\nabuts\\nabuttal\\nabuttals\\nabutted\\nabutter\\nabutters\\nabutting\\nabuzz\\nabvolt\\nabvolts\\nabwatt\\nabwatts\\naby\\nabye\\nabyed\\nabyes\\nabying\\nabys\\nabysm\\nabysmal\\nabysmally\\nabysms\\nabyss\\nabyssal\\nabysses\\nacacia\\nacacias\\nacademe\\nacademes\\nacademia\\nacademias\\nacademic\\nacademically\\nacademics\\nacademies\\nacademy\\nacajou\\nacajous\\nacaleph\\nacalephae\\nacalephe\\nacalephes\\nacalephs\\nacanthi\\nacanthus\\nacanthuses\\nacari\\nacarid\\nacaridan\\nacaridans\\nacarids\\nacarine\\nacarines\\nacaroid\\nacarpous\\nacarus\\nacaudal\\nacaudate\\nacauline\\nacaulose\\nacaulous\\naccede\\nacceded\\nacceder\\nacceders\\naccedes\\nacceding\\naccelerate\\naccelerated\\naccelerates\\naccelerating\\nacceleration\\naccelerations\\naccelerator\\naccelerators\\naccent\\naccented\\naccenting\\naccentor\\naccentors\\naccents\\naccentual\\naccentuate\\naccentuated\\naccentuates\\naccentuating\\naccentuation\\naccentuations\\naccept\\nacceptabilities\\nacceptability\\nacceptable\\nacceptance\\nacceptances\\naccepted\\nacceptee\\nacceptees\\naccepter\\naccepters\\naccepting\\nacceptor\\nacceptors\\naccepts\\naccess\\naccessed\\naccesses\\naccessibilities\\naccessibility\\naccessible\\naccessing\\naccession\\naccessions\\naccessories\\naccessory\\naccident\\naccidental\\naccidentally\\naccidentals\\naccidents\\naccidie\\naccidies\\nacclaim\\nacclaimed\\nacclaiming\\nacclaims\\nacclamation\\nacclamations\\nacclimate\\nacclimated\\nacclimates\\nacclimating\\nacclimation\\nacclimations\\nacclimatization\\nacclimatizations\\nacclimatize\\nacclimatizes\\naccolade\\naccolades\\naccommodate\\naccommodated\\naccommodates\\naccommodating\\naccommodation\\naccommodations\\naccompanied\\naccompanies\\naccompaniment\\naccompaniments\\naccompanist\\naccompany\\naccompanying\\naccomplice\\naccomplices\\naccomplish\\naccomplished\\naccomplisher\\naccomplishers\\naccomplishes\\naccomplishing\\naccomplishment\\naccomplishments\\naccord\\naccordance\\naccordant\\naccorded\\naccorder\\naccorders\\naccording\\naccordingly\\naccordion\\naccordions\\naccords\\naccost\\naccosted\\naccosting\\naccosts\\naccount\\naccountabilities\\naccountability\\naccountable\\naccountancies\\naccountancy\\naccountant\\naccountants\\naccounted\\naccounting\\naccountings\\naccounts\\naccouter\\naccoutered\\naccoutering\\naccouters\\naccoutre\\naccoutred\\naccoutrement\\naccoutrements\\naccoutres\\naccoutring\\naccredit\\naccredited\\naccrediting\\naccredits\\naccrete\\naccreted\\naccretes\\naccreting\\naccrual\\naccruals\\naccrue\\naccrued\\naccrues\\naccruing\\naccumulate\\naccumulated\\naccumulates\\naccumulating\\naccumulation\\naccumulations\\naccumulator\\naccumulators\\naccuracies\\naccuracy\\naccurate\\naccurately\\naccurateness\\naccuratenesses\\naccursed\\naccurst\\naccusal\\naccusals\\naccusant\\naccusants\\naccusation\\naccusations\\naccuse\\naccused\\naccuser\\naccusers\\naccuses\\naccusing\\naccustom\\naccustomed\\naccustoming\\naccustoms\\nace\\naced\\nacedia\\nacedias\\naceldama\\naceldamas\\nacentric\\nacequia\\nacequias\\nacerate\\nacerated\\nacerb\\nacerbate\\nacerbated\\nacerbates\\nacerbating\\nacerber\\nacerbest\\nacerbic\\nacerbities\\nacerbity\\nacerola\\nacerolas\\nacerose\\nacerous\\nacers\\nacervate\\nacervuli\\naces\\nacescent\\nacescents\\naceta\\nacetal\\nacetals\\nacetamid\\nacetamids\\nacetate\\nacetated\\nacetates\\nacetic\\nacetified\\nacetifies\\nacetify\\nacetifying\\nacetone\\nacetones\\nacetonic\\nacetose\\nacetous\\nacetoxyl\\nacetoxyls\\nacetum\\nacetyl\\nacetylene\\nacetylenes\\nacetylic\\nacetyls\\nache\\nached\\nachene\\nachenes\\nachenial\\naches\\nachier\\nachiest\\nachievable\\nachieve\\nachieved\\nachievement\\nachievements\\nachiever\\nachievers\\nachieves\\nachieving\\nachiness\\nachinesses\\naching\\nachingly\\nachiote\\nachiotes\\nachoo\\nachromat\\nachromats\\nachromic\\nachy\\nacicula\\naciculae\\nacicular\\naciculas\\nacid\\nacidhead\\nacidheads\\nacidic\\nacidified\\nacidifies\\nacidify\\nacidifying\\nacidities\\nacidity\\nacidly\\nacidness\\nacidnesses\\nacidoses\\nacidosis\\nacidotic\\nacids\\nacidy\\nacierate\\nacierated\\nacierates\\nacierating\\naciform\\nacinar\\nacing\\nacini\\nacinic\\nacinose\\nacinous\\nacinus\\nacknowledge\\nacknowledged\\nacknowledgement\\nacknowledgements\\nacknowledges\\nacknowledging\\nacknowledgment\\nacknowledgments\\naclinic\\nacmatic\\nacme\\nacmes\\nacmic\\nacne\\nacned\\nacnes\\nacnode\\nacnodes\\nacock\\nacold\\nacolyte\\nacolytes\\naconite\\naconites\\naconitic\\naconitum\\naconitums\\nacorn\\nacorns\\nacoustic\\nacoustical\\nacoustically\\nacoustics\\nacquaint\\nacquaintance\\nacquaintances\\nacquaintanceship\\nacquaintanceships\\nacquainted\\nacquainting\\nacquaints\\nacquest\\nacquests\\nacquiesce\\nacquiesced\\nacquiescence\\nacquiescences\\nacquiescent\\nacquiescently\\nacquiesces\\nacquiescing\\nacquire\\nacquired\\nacquirer\\nacquirers\\nacquires\\nacquiring\\nacquisition\\nacquisitions\\nacquisitive\\nacquit\\nacquits\\nacquitted\\nacquitting\\nacrasin\\nacrasins\\nacre\\nacreage\\nacreages\\nacred\\nacres\\nacrid\\nacrider\\nacridest\\nacridine\\nacridines\\nacridities\\nacridity\\nacridly\\nacridness\\nacridnesses\\nacrimonies\\nacrimonious\\nacrimony\\nacrobat\\nacrobatic\\nacrobats\\nacrodont\\nacrodonts\\nacrogen\\nacrogens\\nacrolein\\nacroleins\\nacrolith\\nacroliths\\nacromia\\nacromial\\nacromion\\nacronic\\nacronym\\nacronyms\\nacross\\nacrostic\\nacrostics\\nacrotic\\nacrotism\\nacrotisms\\nacrylate\\nacrylates\\nacrylic\\nacrylics\\nact\\nacta\\nactable\\nacted\\nactin\\nactinal\\nacting\\nactings\\nactinia\\nactiniae\\nactinian\\nactinians\\nactinias\\nactinic\\nactinide\\nactinides\\nactinism\\nactinisms\\nactinium\\nactiniums\\nactinoid\\nactinoids\\nactinon\\nactinons\\nactins\\naction\\nactions\\nactivate\\nactivated\\nactivates\\nactivating\\nactivation\\nactivations\\nactive\\nactively\\nactives\\nactivism\\nactivisms\\nactivist\\nactivists\\nactivities\\nactivity\\nactor\\nactorish\\nactors\\nactress\\nactresses\\nacts\\nactual\\nactualities\\nactuality\\nactualization\\nactualizations\\nactualize\\nactualized\\nactualizes\\nactualizing\\nactually\\nactuarial\\nactuaries\\nactuary\\nactuate\\nactuated\\nactuates\\nactuating\\nactuator\\nactuators\\nacuate\\nacuities\\nacuity\\naculeate\\nacumen\\nacumens\\nacupuncture\\nacupunctures\\nacupuncturist\\nacupuncturists\\nacutance\\nacutances\\nacute\\nacutely\\nacuteness\\nacutenesses\\nacuter\\nacutes\\nacutest\\nacyclic\\nacyl\\nacylate\\nacylated\\nacylates\\nacylating\\nacyls\\nad\\nadage\\nadages\\nadagial\\nadagio\\nadagios\\nadamance\\nadamances\\nadamancies\\nadamancy\\nadamant\\nadamantlies\\nadamantly\\nadamants\\nadamsite\\nadamsites\\nadapt\\nadaptabilities\\nadaptability\\nadaptable\\nadaptation\\nadaptations\\nadapted\\nadapter\\nadapters\\nadapting\\nadaption\\nadaptions\\nadaptive\\nadaptor\\nadaptors\\nadapts\\nadaxial\\nadd\\naddable\\naddax\\naddaxes\\nadded\\naddedly\\naddend\\naddenda\\naddends\\naddendum\\nadder\\nadders\\naddible\\naddict\\naddicted\\naddicting\\naddiction\\naddictions\\naddictive\\naddicts\\nadding\\naddition\\nadditional\\nadditionally\\nadditions\\nadditive\\nadditives\\naddle\\naddled\\naddles\\naddling\\naddress\\naddressable\\naddressed\\naddresses\\naddressing\\naddrest\\nadds\\nadduce\\nadduced\\nadducent\\nadducer\\nadducers\\nadduces\\nadducing\\nadduct\\nadducted\\nadducting\\nadductor\\nadductors\\nadducts\\nadeem\\nadeemed\\nadeeming\\nadeems\\nadenine\\nadenines\\nadenitis\\nadenitises\\nadenoid\\nadenoidal\\nadenoids\\nadenoma\\nadenomas\\nadenomata\\nadenopathy\\nadenyl\\nadenyls\\nadept\\nadepter\\nadeptest\\nadeptly\\nadeptness\\nadeptnesses\\nadepts\\nadequacies\\nadequacy\\nadequate\\nadequately\\nadhere\\nadhered\\nadherence\\nadherences\\nadherend\\nadherends\\nadherent\\nadherents\\nadherer\\nadherers\\nadheres\\nadhering\\nadhesion\\nadhesions\\nadhesive\\nadhesives\\nadhibit\\nadhibited\\nadhibiting\\nadhibits\\nadieu\\nadieus\\nadieux\\nadios\\nadipic\\nadipose\\nadiposes\\nadiposis\\nadipous\\nadit\\nadits\\nadjacent\\nadjectival\\nadjectivally\\nadjective\\nadjectives\\nadjoin\\nadjoined\\nadjoining\\nadjoins\\nadjoint\\nadjoints\\nadjourn\\nadjourned\\nadjourning\\nadjournment\\nadjournments\\nadjourns\\nadjudge\\nadjudged\\nadjudges\\nadjudging\\nadjudicate\\nadjudicated\\nadjudicates\\nadjudicating\\nadjudication\\nadjudications\\nadjunct\\nadjuncts\\nadjure\\nadjured\\nadjurer\\nadjurers\\nadjures\\nadjuring\\nadjuror\\nadjurors\\nadjust\\nadjustable\\nadjusted\\nadjuster\\nadjusters\\nadjusting\\nadjustment\\nadjustments\\nadjustor\\nadjustors\\nadjusts\\nadjutant\\nadjutants\\nadjuvant\\nadjuvants\\nadman\\nadmass\\nadmen\\nadminister\\nadministers\\nadministrable\\nadministrant\\nadministrants\\nadministration\\nadministrations\\nadministrative\\nadministratively\\nadministrator\\nadministrators\\nadminstration\\nadminstrations\\nadmiral\\nadmirals\\nadmiration\\nadmirations\\nadmire\\nadmired\\nadmirer\\nadmirers\\nadmires\\nadmiring\\nadmiringly\\nadmissibilities\\nadmissibility\\nadmissible\\nadmissibly\\nadmission\\nadmissions\\nadmit\\nadmits\\nadmittance\\nadmittances\\nadmitted\\nadmittedly\\nadmitter\\nadmitters\\nadmitting\\nadmix\\nadmixed\\nadmixes\\nadmixing\\nadmixt\\nadmixture\\nadmixtures\\nadmonish\\nadmonished\\nadmonishes\\nadmonishing\\nadnate\\nadnation\\nadnations\\nadnexa\\nadnexal\\nadnoun\\nadnouns\\nado\\nadobe\\nadobes\\nadolescence\\nadolescences\\nadolescent\\nadolescents\\nadopt\\nadopted\\nadoptee\\nadoptees\\nadopter\\nadopters\\nadopting\\nadoption\\nadoptions\\nadoptive\\nadopts\\nadorable\\nadorably\\nadoration\\nadorations\\nadore\\nadored\\nadorer\\nadorers\\nadores\\nadoring\\nadorn\\nadorned\\nadorner\\nadorners\\nadorning\\nadorns\\nados\\nadown\\nadoze\\nadrenal\\nadrenals\\nadriamycin\\nadrift\\nadroit\\nadroiter\\nadroitest\\nadroitly\\nadroitness\\nadroitnesses\\nads\\nadscript\\nadscripts\\nadsorb\\nadsorbed\\nadsorbing\\nadsorbs\\nadularia\\nadularias\\nadulate\\nadulated\\nadulates\\nadulating\\nadulator\\nadulators\\nadult\\nadulterate\\nadulterated\\nadulterates\\nadulterating\\nadulteration\\nadulterations\\nadulterer\\nadulterers\\nadulteress\\nadulteresses\\nadulteries\\nadulterous\\nadultery\\nadulthood\\nadulthoods\\nadultly\\nadults\\nadumbral\\nadunc\\naduncate\\naduncous\\nadust\\nadvance\\nadvanced\\nadvancement\\nadvancements\\nadvancer\\nadvancers\\nadvances\\nadvancing\\nadvantage\\nadvantageous\\nadvantageously\\nadvantages\\nadvent\\nadventitious\\nadventitiously\\nadventitiousness\\nadventitiousnesses\\nadvents\\nadventure\\nadventurer\\nadventurers\\nadventures\\nadventuresome\\nadventurous\\nadverb\\nadverbially\\nadverbs\\nadversaries\\nadversary\\nadverse\\nadversity\\nadvert\\nadverted\\nadverting\\nadvertise\\nadvertised\\nadvertisement\\nadvertisements\\nadvertiser\\nadvertisers\\nadvertises\\nadvertising\\nadvertisings\\nadverts\\nadvice\\nadvices\\nadvisabilities\\nadvisability\\nadvisable\\nadvise\\nadvised\\nadvisee\\nadvisees\\nadvisement\\nadvisements\\nadviser\\nadvisers\\nadvises\\nadvising\\nadvisor\\nadvisories\\nadvisors\\nadvisory\\nadvocacies\\nadvocacy\\nadvocate\\nadvocated\\nadvocates\\nadvocating\\nadvowson\\nadvowsons\\nadynamia\\nadynamias\\nadynamic\\nadyta\\nadytum\\nadz\\nadze\\nadzes\\nae\\naecia\\naecial\\naecidia\\naecidium\\naecium\\naedes\\naedile\\naediles\\naedine\\naegis\\naegises\\naeneous\\naeneus\\naeolian\\naeon\\naeonian\\naeonic\\naeons\\naerate\\naerated\\naerates\\naerating\\naeration\\naerations\\naerator\\naerators\\naerial\\naerially\\naerials\\naerie\\naerier\\naeries\\naeriest\\naerified\\naerifies\\naeriform\\naerify\\naerifying\\naerily\\naero\\naerobe\\naerobes\\naerobia\\naerobic\\naerobium\\naeroduct\\naeroducts\\naerodynamic\\naerodynamical\\naerodynamically\\naerodynamics\\naerodyne\\naerodynes\\naerofoil\\naerofoils\\naerogel\\naerogels\\naerogram\\naerograms\\naerolite\\naerolites\\naerolith\\naeroliths\\naerologies\\naerology\\naeronaut\\naeronautic\\naeronautical\\naeronautically\\naeronautics\\naeronauts\\naeronomies\\naeronomy\\naerosol\\naerosols\\naerospace\\naerostat\\naerostats\\naerugo\\naerugos\\naery\\naesthete\\naesthetes\\naesthetic\\naesthetically\\naesthetics\\naestival\\naether\\naetheric\\naethers\\nafar\\nafars\\nafeard\\nafeared\\naff\\naffabilities\\naffability\\naffable\\naffably\\naffair\\naffaire\\naffaires\\naffairs\\naffect\\naffectation\\naffectations\\naffected\\naffectedly\\naffecter\\naffecters\\naffecting\\naffectingly\\naffection\\naffectionate\\naffectionately\\naffections\\naffects\\nafferent\\naffiance\\naffianced\\naffiances\\naffiancing\\naffiant\\naffiants\\naffiche\\naffiches\\naffidavit\\naffidavits\\naffiliate\\naffiliated\\naffiliates\\naffiliating\\naffiliation\\naffiliations\\naffine\\naffined\\naffinely\\naffines\\naffinities\\naffinity\\naffirm\\naffirmation\\naffirmations\\naffirmative\\naffirmatively\\naffirmatives\\naffirmed\\naffirmer\\naffirmers\\naffirming\\naffirms\\naffix\\naffixal\\naffixed\\naffixer\\naffixers\\naffixes\\naffixial\\naffixing\\nafflatus\\nafflatuses\\nafflict\\nafflicted\\nafflicting\\naffliction\\nafflictions\\nafflicts\\naffluence\\naffluences\\naffluent\\naffluents\\nafflux\\naffluxes\\nafford\\nafforded\\naffording\\naffords\\nafforest\\nafforested\\nafforesting\\nafforests\\naffray\\naffrayed\\naffrayer\\naffrayers\\naffraying\\naffrays\\naffright\\naffrighted\\naffrighting\\naffrights\\naffront\\naffronted\\naffronting\\naffronts\\naffusion\\naffusions\\nafghan\\nafghani\\nafghanis\\nafghans\\nafield\\nafire\\naflame\\nafloat\\naflutter\\nafoot\\nafore\\nafoul\\nafraid\\nafreet\\nafreets\\nafresh\\nafrit\\nafrits\\naft\\nafter\\nafterlife\\nafterlifes\\naftermath\\naftermaths\\nafternoon\\nafternoons\\nafters\\naftertax\\nafterthought\\nafterthoughts\\nafterward\\nafterwards\\naftmost\\naftosa\\naftosas\\naga\\nagain\\nagainst\\nagalloch\\nagallochs\\nagalwood\\nagalwoods\\nagama\\nagamas\\nagamete\\nagametes\\nagamic\\nagamous\\nagapae\\nagapai\\nagape\\nagapeic\\nagar\\nagaric\\nagarics\\nagars\\nagas\\nagate\\nagates\\nagatize\\nagatized\\nagatizes\\nagatizing\\nagatoid\\nagave\\nagaves\\nagaze\\nage\\naged\\nagedly\\nagedness\\nagednesses\\nagee\\nageing\\nageings\\nageless\\nagelong\\nagencies\\nagency\\nagenda\\nagendas\\nagendum\\nagendums\\nagene\\nagenes\\nageneses\\nagenesia\\nagenesias\\nagenesis\\nagenetic\\nagenize\\nagenized\\nagenizes\\nagenizing\\nagent\\nagential\\nagentries\\nagentry\\nagents\\nager\\nageratum\\nageratums\\nagers\\nages\\nagger\\naggers\\naggie\\naggies\\naggrade\\naggraded\\naggrades\\naggrading\\naggrandize\\naggrandized\\naggrandizement\\naggrandizements\\naggrandizes\\naggrandizing\\naggravate\\naggravates\\naggravation\\naggravations\\naggregate\\naggregated\\naggregates\\naggregating\\naggress\\naggressed\\naggresses\\naggressing\\naggression\\naggressions\\naggressive\\naggressively\\naggressiveness\\naggressivenesses\\naggrieve\\naggrieved\\naggrieves\\naggrieving\\nagha\\naghas\\naghast\\nagile\\nagilely\\nagilities\\nagility\\nagin\\naging\\nagings\\naginner\\naginners\\nagio\\nagios\\nagiotage\\nagiotages\\nagist\\nagisted\\nagisting\\nagists\\nagitable\\nagitate\\nagitated\\nagitates\\nagitating\\nagitation\\nagitations\\nagitato\\nagitator\\nagitators\\nagitprop\\nagitprops\\naglare\\nagleam\\naglee\\naglet\\naglets\\nagley\\naglimmer\\naglitter\\naglow\\nagly\\naglycon\\naglycone\\naglycones\\naglycons\\nagma\\nagmas\\nagminate\\nagnail\\nagnails\\nagnate\\nagnates\\nagnatic\\nagnation\\nagnations\\nagnize\\nagnized\\nagnizes\\nagnizing\\nagnomen\\nagnomens\\nagnomina\\nagnostic\\nagnostics\\nago\\nagog\\nagon\\nagonal\\nagone\\nagones\\nagonic\\nagonies\\nagonise\\nagonised\\nagonises\\nagonising\\nagonist\\nagonists\\nagonize\\nagonized\\nagonizes\\nagonizing\\nagonizingly\\nagons\\nagony\\nagora\\nagorae\\nagoras\\nagorot\\nagoroth\\nagouti\\nagouties\\nagoutis\\nagouty\\nagrafe\\nagrafes\\nagraffe\\nagraffes\\nagrapha\\nagraphia\\nagraphias\\nagraphic\\nagrarian\\nagrarianism\\nagrarianisms\\nagrarians\\nagree\\nagreeable\\nagreeableness\\nagreeablenesses\\nagreed\\nagreeing\\nagreement\\nagreements\\nagrees\\nagrestal\\nagrestic\\nagricultural\\nagriculturalist\\nagriculturalists\\nagriculture\\nagricultures\\nagriculturist\\nagriculturists\\nagrimonies\\nagrimony\\nagrologies\\nagrology\\nagronomies\\nagronomy\\naground\\nague\\naguelike\\nagues\\nagueweed\\nagueweeds\\naguish\\naguishly\\nah\\naha\\nahchoo\\nahead\\nahem\\nahimsa\\nahimsas\\nahold\\naholds\\nahorse\\nahoy\\nahoys\\nahull\\nai\\naiblins\\naid\\naide\\naided\\naider\\naiders\\naides\\naidful\\naiding\\naidless\\naidman\\naidmen\\naids\\naiglet\\naiglets\\naigret\\naigrets\\naigrette\\naigrettes\\naiguille\\naiguilles\\naikido\\naikidos\\nail\\nailed\\naileron\\nailerons\\nailing\\nailment\\nailments\\nails\\naim\\naimed\\naimer\\naimers\\naimful\\naimfully\\naiming\\naimless\\naimlessly\\naimlessness\\naimlessnesses\\naims\\nain\\naine\\nainee\\nains\\nainsell\\nainsells\\nair\\nairboat\\nairboats\\nairborne\\nairbound\\nairbrush\\nairbrushed\\nairbrushes\\nairbrushing\\nairburst\\nairbursts\\nairbus\\nairbuses\\nairbusses\\naircoach\\naircoaches\\naircondition\\nairconditioned\\nairconditioning\\nairconditions\\naircraft\\naircrew\\naircrews\\nairdrome\\nairdromes\\nairdrop\\nairdropped\\nairdropping\\nairdrops\\naired\\nairer\\nairest\\nairfield\\nairfields\\nairflow\\nairflows\\nairfoil\\nairfoils\\nairframe\\nairframes\\nairglow\\nairglows\\nairhead\\nairheads\\nairier\\nairiest\\nairily\\nairiness\\nairinesses\\nairing\\nairings\\nairless\\nairlift\\nairlifted\\nairlifting\\nairlifts\\nairlike\\nairline\\nairliner\\nairliners\\nairlines\\nairmail\\nairmailed\\nairmailing\\nairmails\\nairman\\nairmen\\nairn\\nairns\\nairpark\\nairparks\\nairplane\\nairplanes\\nairport\\nairports\\nairpost\\nairposts\\nairproof\\nairproofed\\nairproofing\\nairproofs\\nairs\\nairscrew\\nairscrews\\nairship\\nairships\\nairsick\\nairspace\\nairspaces\\nairspeed\\nairspeeds\\nairstrip\\nairstrips\\nairt\\nairted\\nairth\\nairthed\\nairthing\\nairths\\nairtight\\nairting\\nairts\\nairward\\nairwave\\nairwaves\\nairway\\nairways\\nairwise\\nairwoman\\nairwomen\\nairy\\nais\\naisle\\naisled\\naisles\\nait\\naitch\\naitches\\naits\\naiver\\naivers\\najar\\najee\\najiva\\najivas\\najowan\\najowans\\nakee\\nakees\\nakela\\nakelas\\nakene\\nakenes\\nakimbo\\nakin\\nakvavit\\nakvavits\\nala\\nalabaster\\nalabasters\\nalack\\nalacrities\\nalacrity\\nalae\\nalameda\\nalamedas\\nalamo\\nalamode\\nalamodes\\nalamos\\nalan\\naland\\nalands\\nalane\\nalang\\nalanin\\nalanine\\nalanines\\nalanins\\nalans\\nalant\\nalants\\nalanyl\\nalanyls\\nalar\\nalarm\\nalarmed\\nalarming\\nalarmism\\nalarmisms\\nalarmist\\nalarmists\\nalarms\\nalarum\\nalarumed\\nalaruming\\nalarums\\nalary\\nalas\\nalaska\\nalaskas\\nalastor\\nalastors\\nalate\\nalated\\nalation\\nalations\\nalb\\nalba\\nalbacore\\nalbacores\\nalbas\\nalbata\\nalbatas\\nalbatross\\nalbatrosses\\nalbedo\\nalbedos\\nalbeit\\nalbicore\\nalbicores\\nalbinal\\nalbinic\\nalbinism\\nalbinisms\\nalbino\\nalbinos\\nalbite\\nalbites\\nalbitic\\nalbs\\nalbum\\nalbumen\\nalbumens\\nalbumin\\nalbumins\\nalbumose\\nalbumoses\\nalbums\\nalburnum\\nalburnums\\nalcade\\nalcades\\nalcahest\\nalcahests\\nalcaic\\nalcaics\\nalcaide\\nalcaides\\nalcalde\\nalcaldes\\nalcayde\\nalcaydes\\nalcazar\\nalcazars\\nalchemic\\nalchemical\\nalchemies\\nalchemist\\nalchemists\\nalchemy\\nalchymies\\nalchymy\\nalcidine\\nalcohol\\nalcoholic\\nalcoholics\\nalcoholism\\nalcoholisms\\nalcohols\\nalcove\\nalcoved\\nalcoves\\naldehyde\\naldehydes\\nalder\\nalderman\\naldermen\\nalders\\naldol\\naldolase\\naldolases\\naldols\\naldose\\naldoses\\naldovandi\\naldrin\\naldrins\\nale\\naleatory\\nalec\\nalecs\\nalee\\nalef\\nalefs\\nalegar\\nalegars\\nalehouse\\nalehouses\\nalembic\\nalembics\\naleph\\nalephs\\nalert\\nalerted\\nalerter\\nalertest\\nalerting\\nalertly\\nalertness\\nalertnesses\\nalerts\\nales\\naleuron\\naleurone\\naleurones\\naleurons\\nalevin\\nalevins\\nalewife\\nalewives\\nalexia\\nalexias\\nalexin\\nalexine\\nalexines\\nalexins\\nalfa\\nalfaki\\nalfakis\\nalfalfa\\nalfalfas\\nalfaqui\\nalfaquin\\nalfaquins\\nalfaquis\\nalfas\\nalforja\\nalforjas\\nalfresco\\nalga\\nalgae\\nalgal\\nalgaroba\\nalgarobas\\nalgas\\nalgebra\\nalgebraic\\nalgebraically\\nalgebras\\nalgerine\\nalgerines\\nalgicide\\nalgicides\\nalgid\\nalgidities\\nalgidity\\nalgin\\nalginate\\nalginates\\nalgins\\nalgoid\\nalgologies\\nalgology\\nalgor\\nalgorism\\nalgorisms\\nalgorithm\\nalgorithms\\nalgors\\nalgum\\nalgums\\nalias\\naliases\\nalibi\\nalibied\\nalibies\\nalibiing\\nalibis\\nalible\\nalidad\\nalidade\\nalidades\\nalidads\\nalien\\nalienage\\nalienages\\nalienate\\nalienated\\nalienates\\nalienating\\nalienation\\nalienations\\naliened\\nalienee\\nalienees\\naliener\\nalieners\\naliening\\nalienism\\nalienisms\\nalienist\\nalienists\\nalienly\\nalienor\\nalienors\\naliens\\nalif\\naliform\\nalifs\\nalight\\nalighted\\nalighting\\nalights\\nalign\\naligned\\naligner\\naligners\\naligning\\nalignment\\nalignments\\naligns\\nalike\\naliment\\nalimentary\\nalimentation\\nalimented\\nalimenting\\naliments\\nalimonies\\nalimony\\naline\\nalined\\naliner\\naliners\\nalines\\nalining\\naliped\\nalipeds\\naliquant\\naliquot\\naliquots\\nalist\\nalit\\naliunde\\nalive\\naliyah\\naliyahs\\nalizarin\\nalizarins\\nalkahest\\nalkahests\\nalkali\\nalkalic\\nalkalies\\nalkalified\\nalkalifies\\nalkalify\\nalkalifying\\nalkalin\\nalkaline\\nalkalinities\\nalkalinity\\nalkalis\\nalkalise\\nalkalised\\nalkalises\\nalkalising\\nalkalize\\nalkalized\\nalkalizes\\nalkalizing\\nalkaloid\\nalkaloids\\nalkane\\nalkanes\\nalkanet\\nalkanets\\nalkene\\nalkenes\\nalkine\\nalkines\\nalkoxy\\nalkyd\\nalkyds\\nalkyl\\nalkylate\\nalkylated\\nalkylates\\nalkylating\\nalkylic\\nalkyls\\nalkyne\\nalkynes\\nall\\nallanite\\nallanites\\nallay\\nallayed\\nallayer\\nallayers\\nallaying\\nallays\\nallegation\\nallegations\\nallege\\nalleged\\nallegedly\\nalleger\\nallegers\\nalleges\\nallegiance\\nallegiances\\nalleging\\nallegorical\\nallegories\\nallegory\\nallegro\\nallegros\\nallele\\nalleles\\nallelic\\nallelism\\nallelisms\\nalleluia\\nalleluias\\nallergen\\nallergenic\\nallergens\\nallergic\\nallergies\\nallergin\\nallergins\\nallergist\\nallergists\\nallergy\\nalleviate\\nalleviated\\nalleviates\\nalleviating\\nalleviation\\nalleviations\\nalley\\nalleys\\nalleyway\\nalleyways\\nallheal\\nallheals\\nalliable\\nalliance\\nalliances\\nallied\\nallies\\nalligator\\nalligators\\nalliteration\\nalliterations\\nalliterative\\nallium\\nalliums\\nallobar\\nallobars\\nallocate\\nallocated\\nallocates\\nallocating\\nallocation\\nallocations\\nallod\\nallodia\\nallodial\\nallodium\\nallods\\nallogamies\\nallogamy\\nallonge\\nallonges\\nallonym\\nallonyms\\nallopath\\nallopaths\\nallopurinol\\nallot\\nallotment\\nallotments\\nallots\\nallotted\\nallottee\\nallottees\\nallotter\\nallotters\\nallotting\\nallotype\\nallotypes\\nallotypies\\nallotypy\\nallover\\nallovers\\nallow\\nallowable\\nallowance\\nallowances\\nallowed\\nallowing\\nallows\\nalloxan\\nalloxans\\nalloy\\nalloyed\\nalloying\\nalloys\\nalls\\nallseed\\nallseeds\\nallspice\\nallspices\\nallude\\nalluded\\nalludes\\nalluding\\nallure\\nallured\\nallurement\\nallurements\\nallurer\\nallurers\\nallures\\nalluring\\nallusion\\nallusions\\nallusive\\nallusively\\nallusiveness\\nallusivenesses\\nalluvia\\nalluvial\\nalluvials\\nalluvion\\nalluvions\\nalluvium\\nalluviums\\nally\\nallying\\nallyl\\nallylic\\nallyls\\nalma\\nalmagest\\nalmagests\\nalmah\\nalmahs\\nalmanac\\nalmanacs\\nalmas\\nalme\\nalmeh\\nalmehs\\nalmemar\\nalmemars\\nalmes\\nalmighty\\nalmner\\nalmners\\nalmond\\nalmonds\\nalmoner\\nalmoners\\nalmonries\\nalmonry\\nalmost\\nalms\\nalmsman\\nalmsmen\\nalmuce\\nalmuces\\nalmud\\nalmude\\nalmudes\\nalmuds\\nalmug\\nalmugs\\nalnico\\nalnicoes\\nalodia\\nalodial\\nalodium\\naloe\\naloes\\naloetic\\naloft\\nalogical\\naloha\\nalohas\\naloin\\naloins\\nalone\\nalong\\nalongside\\naloof\\naloofly\\nalopecia\\nalopecias\\nalopecic\\naloud\\nalow\\nalp\\nalpaca\\nalpacas\\nalpha\\nalphabet\\nalphabeted\\nalphabetic\\nalphabetical\\nalphabetically\\nalphabeting\\nalphabetize\\nalphabetized\\nalphabetizer\\nalphabetizers\\nalphabetizes\\nalphabetizing\\nalphabets\\nalphanumeric\\nalphanumerics\\nalphas\\nalphorn\\nalphorns\\nalphosis\\nalphosises\\nalphyl\\nalphyls\\nalpine\\nalpinely\\nalpines\\nalpinism\\nalpinisms\\nalpinist\\nalpinists\\nalps\\nalready\\nalright\\nalsike\\nalsikes\\nalso\\nalt\\naltar\\naltars\\nalter\\nalterant\\nalterants\\nalteration\\nalterations\\naltercation\\naltercations\\naltered\\nalterer\\nalterers\\naltering\\nalternate\\nalternated\\nalternates\\nalternating\\nalternation\\nalternations\\nalternative\\nalternatively\\nalternatives\\nalternator\\nalternators\\nalters\\nalthaea\\nalthaeas\\nalthea\\naltheas\\naltho\\nalthorn\\nalthorns\\nalthough\\naltimeter\\naltimeters\\naltitude\\naltitudes\\nalto\\naltogether\\naltos\\naltruism\\naltruisms\\naltruist\\naltruistic\\naltruistically\\naltruists\\nalts\\naludel\\naludels\\nalula\\nalulae\\nalular\\nalum\\nalumin\\nalumina\\naluminas\\nalumine\\nalumines\\naluminic\\nalumins\\naluminum\\naluminums\\nalumna\\nalumnae\\nalumni\\nalumnus\\nalumroot\\nalumroots\\nalums\\nalunite\\nalunites\\nalveolar\\nalveolars\\nalveoli\\nalveolus\\nalvine\\nalway\\nalways\\nalyssum\\nalyssums\\nam\\nama\\namadavat\\namadavats\\namadou\\namadous\\namah\\namahs\\namain\\namalgam\\namalgamate\\namalgamated\\namalgamates\\namalgamating\\namalgamation\\namalgamations\\namalgams\\namandine\\namanita\\namanitas\\namanuensis\\namaranth\\namaranths\\namarelle\\namarelles\\namarna\\namaryllis\\namaryllises\\namas\\namass\\namassed\\namasser\\namassers\\namasses\\namassing\\namateur\\namateurish\\namateurism\\namateurisms\\namateurs\\namative\\namatol\\namatols\\namatory\\namaze\\namazed\\namazedly\\namazement\\namazements\\namazes\\namazing\\namazingly\\namazon\\namazonian\\namazons\\nambage\\nambages\\nambari\\nambaries\\nambaris\\nambary\\nambassador\\nambassadorial\\nambassadors\\nambassadorship\\nambassadorships\\nambeer\\nambeers\\namber\\nambergris\\nambergrises\\namberies\\namberoid\\namberoids\\nambers\\nambery\\nambiance\\nambiances\\nambidextrous\\nambidextrously\\nambience\\nambiences\\nambient\\nambients\\nambiguities\\nambiguity\\nambiguous\\nambit\\nambition\\nambitioned\\nambitioning\\nambitions\\nambitious\\nambitiously\\nambits\\nambivalence\\nambivalences\\nambivalent\\nambivert\\nambiverts\\namble\\nambled\\nambler\\namblers\\nambles\\nambling\\nambo\\namboina\\namboinas\\nambones\\nambos\\namboyna\\namboynas\\nambries\\nambroid\\nambroids\\nambrosia\\nambrosias\\nambry\\nambsace\\nambsaces\\nambulance\\nambulances\\nambulant\\nambulate\\nambulated\\nambulates\\nambulating\\nambulation\\nambulatory\\nambush\\nambushed\\nambusher\\nambushers\\nambushes\\nambushing\\nameba\\namebae\\nameban\\namebas\\namebean\\namebic\\nameboid\\nameer\\nameerate\\nameerates\\nameers\\namelcorn\\namelcorns\\nameliorate\\nameliorated\\nameliorates\\nameliorating\\namelioration\\nameliorations\\namen\\namenable\\namenably\\namend\\namended\\namender\\namenders\\namending\\namendment\\namendments\\namends\\namenities\\namenity\\namens\\nament\\namentia\\namentias\\naments\\namerce\\namerced\\namercer\\namercers\\namerces\\namercing\\namesace\\namesaces\\namethyst\\namethysts\\nami\\namia\\namiabilities\\namiability\\namiable\\namiably\\namiantus\\namiantuses\\namias\\namicable\\namicably\\namice\\namices\\namid\\namidase\\namidases\\namide\\namides\\namidic\\namidin\\namidins\\namido\\namidogen\\namidogens\\namidol\\namidols\\namids\\namidship\\namidst\\namie\\namies\\namiga\\namigas\\namigo\\namigos\\namin\\namine\\namines\\naminic\\naminities\\naminity\\namino\\namins\\namir\\namirate\\namirates\\namirs\\namis\\namiss\\namities\\namitoses\\namitosis\\namitotic\\namitrole\\namitroles\\namity\\nammeter\\nammeters\\nammine\\nammines\\nammino\\nammo\\nammocete\\nammocetes\\nammonal\\nammonals\\nammonia\\nammoniac\\nammoniacs\\nammonias\\nammonic\\nammonified\\nammonifies\\nammonify\\nammonifying\\nammonite\\nammonites\\nammonium\\nammoniums\\nammonoid\\nammonoids\\nammos\\nammunition\\nammunitions\\namnesia\\namnesiac\\namnesiacs\\namnesias\\namnesic\\namnesics\\namnestic\\namnestied\\namnesties\\namnesty\\namnestying\\namnia\\namnic\\namnion\\namnionic\\namnions\\namniote\\namniotes\\namniotic\\namoeba\\namoebae\\namoeban\\namoebas\\namoebean\\namoebic\\namoeboid\\namok\\namoks\\namole\\namoles\\namong\\namongst\\namoral\\namorally\\namoretti\\namoretto\\namorettos\\namorini\\namorino\\namorist\\namorists\\namoroso\\namorous\\namorously\\namorousness\\namorousnesses\\namorphous\\namort\\namortise\\namortised\\namortises\\namortising\\namortization\\namortizations\\namortize\\namortized\\namortizes\\namortizing\\namotion\\namotions\\namount\\namounted\\namounting\\namounts\\namour\\namours\\namp\\namperage\\namperages\\nampere\\namperes\\nampersand\\nampersands\\namphibia\\namphibian\\namphibians\\namphibious\\namphioxi\\namphipod\\namphipods\\namphitheater\\namphitheaters\\namphora\\namphorae\\namphoral\\namphoras\\nample\\nampler\\namplest\\namplification\\namplifications\\namplified\\namplifier\\namplifiers\\namplifies\\namplify\\namplifying\\namplitude\\namplitudes\\namply\\nampoule\\nampoules\\namps\\nampul\\nampule\\nampules\\nampulla\\nampullae\\nampullar\\nampuls\\namputate\\namputated\\namputates\\namputating\\namputation\\namputations\\namputee\\namputees\\namreeta\\namreetas\\namrita\\namritas\\namtrac\\namtrack\\namtracks\\namtracs\\namu\\namuck\\namucks\\namulet\\namulets\\namus\\namusable\\namuse\\namused\\namusedly\\namusement\\namusements\\namuser\\namusers\\namuses\\namusing\\namusive\\namygdala\\namygdalae\\namygdale\\namygdales\\namygdule\\namygdules\\namyl\\namylase\\namylases\\namylene\\namylenes\\namylic\\namyloid\\namyloids\\namylose\\namyloses\\namyls\\namylum\\namylums\\nan\\nana\\nanabaena\\nanabaenas\\nanabas\\nanabases\\nanabasis\\nanabatic\\nanableps\\nanablepses\\nanabolic\\nanachronism\\nanachronisms\\nanachronistic\\nanaconda\\nanacondas\\nanadem\\nanadems\\nanaemia\\nanaemias\\nanaemic\\nanaerobe\\nanaerobes\\nanaesthesiology\\nanaesthetic\\nanaesthetics\\nanaglyph\\nanaglyphs\\nanagoge\\nanagoges\\nanagogic\\nanagogies\\nanagogy\\nanagram\\nanagrammed\\nanagramming\\nanagrams\\nanal\\nanalcime\\nanalcimes\\nanalcite\\nanalcites\\nanalecta\\nanalects\\nanalemma\\nanalemmas\\nanalemmata\\nanalgesic\\nanalgesics\\nanalgia\\nanalgias\\nanalities\\nanality\\nanally\\nanalog\\nanalogic\\nanalogical\\nanalogically\\nanalogies\\nanalogously\\nanalogs\\nanalogue\\nanalogues\\nanalogy\\nanalyse\\nanalysed\\nanalyser\\nanalysers\\nanalyses\\nanalysing\\nanalysis\\nanalyst\\nanalysts\\nanalytic\\nanalytical\\nanalyzable\\nanalyze\\nanalyzed\\nanalyzer\\nanalyzers\\nanalyzes\\nanalyzing\\nananke\\nanankes\\nanapaest\\nanapaests\\nanapest\\nanapests\\nanaphase\\nanaphases\\nanaphora\\nanaphoras\\nanaphylactic\\nanarch\\nanarchic\\nanarchies\\nanarchism\\nanarchisms\\nanarchist\\nanarchistic\\nanarchists\\nanarchs\\nanarchy\\nanarthria\\nanas\\nanasarca\\nanasarcas\\nanatase\\nanatases\\nanathema\\nanathemas\\nanathemata\\nanatomic\\nanatomical\\nanatomically\\nanatomies\\nanatomist\\nanatomists\\nanatomy\\nanatoxin\\nanatoxins\\nanatto\\nanattos\\nancestor\\nancestors\\nancestral\\nancestress\\nancestresses\\nancestries\\nancestry\\nanchor\\nanchorage\\nanchorages\\nanchored\\nanchoret\\nanchorets\\nanchoring\\nanchorman\\nanchormen\\nanchors\\nanchovies\\nanchovy\\nanchusa\\nanchusas\\nanchusin\\nanchusins\\nancient\\nancienter\\nancientest\\nancients\\nancilla\\nancillae\\nancillary\\nancillas\\nancon\\nanconal\\nancone\\nanconeal\\nancones\\nanconoid\\nancress\\nancresses\\nand\\nandante\\nandantes\\nanded\\nandesite\\nandesites\\nandesyte\\nandesytes\\nandiron\\nandirons\\nandrogen\\nandrogens\\nandrogynous\\nandroid\\nandroids\\nands\\nane\\nanear\\naneared\\nanearing\\nanears\\nanecdota\\nanecdotal\\nanecdote\\nanecdotes\\nanechoic\\nanele\\naneled\\naneles\\naneling\\nanemia\\nanemias\\nanemic\\nanemone\\nanemones\\nanenst\\nanent\\nanergia\\nanergias\\nanergic\\nanergies\\nanergy\\naneroid\\naneroids\\nanes\\nanesthesia\\nanesthesias\\nanesthetic\\nanesthetics\\nanesthetist\\nanesthetists\\nanesthetize\\nanesthetized\\nanesthetizes\\nanesthetizing\\nanestri\\nanestrus\\nanethol\\nanethole\\nanetholes\\nanethols\\naneurism\\naneurisms\\naneurysm\\naneurysms\\nanew\\nanga\\nangaria\\nangarias\\nangaries\\nangary\\nangas\\nangel\\nangelic\\nangelica\\nangelical\\nangelically\\nangelicas\\nangels\\nangelus\\nangeluses\\nanger\\nangered\\nangering\\nangerly\\nangers\\nangina\\nanginal\\nanginas\\nanginose\\nanginous\\nangioma\\nangiomas\\nangiomata\\nangle\\nangled\\nanglepod\\nanglepods\\nangler\\nanglers\\nangles\\nangleworm\\nangleworms\\nanglice\\nangling\\nanglings\\nangora\\nangoras\\nangrier\\nangriest\\nangrily\\nangry\\nangst\\nangstrom\\nangstroms\\nangsts\\nanguine\\nanguish\\nanguished\\nanguishes\\nanguishing\\nangular\\nangularities\\nangularity\\nangulate\\nangulated\\nangulates\\nangulating\\nangulose\\nangulous\\nanhinga\\nanhingas\\nani\\nanil\\nanile\\nanilin\\naniline\\nanilines\\nanilins\\nanilities\\nanility\\nanils\\nanima\\nanimal\\nanimally\\nanimals\\nanimas\\nanimate\\nanimated\\nanimater\\nanimaters\\nanimates\\nanimating\\nanimation\\nanimations\\nanimato\\nanimator\\nanimators\\nanime\\nanimes\\nanimi\\nanimis\\nanimism\\nanimisms\\nanimist\\nanimists\\nanimosities\\nanimosity\\nanimus\\nanimuses\\nanion\\nanionic\\nanions\\nanis\\nanise\\naniseed\\naniseeds\\nanises\\nanisette\\nanisettes\\nanisic\\nanisole\\nanisoles\\nankerite\\nankerites\\nankh\\nankhs\\nankle\\nanklebone\\nanklebones\\nankles\\nanklet\\nanklets\\nankus\\nankuses\\nankush\\nankushes\\nankylose\\nankylosed\\nankyloses\\nankylosing\\nanlace\\nanlaces\\nanlage\\nanlagen\\nanlages\\nanlas\\nanlases\\nanna\\nannal\\nannalist\\nannalists\\nannals\\nannas\\nannates\\nannatto\\nannattos\\nanneal\\nannealed\\nannealer\\nannealers\\nannealing\\nanneals\\nannelid\\nannelids\\nannex\\nannexation\\nannexations\\nannexe\\nannexed\\nannexes\\nannexing\\nannihilate\\nannihilated\\nannihilates\\nannihilating\\nannihilation\\nannihilations\\nanniversaries\\nanniversary\\nannotate\\nannotated\\nannotates\\nannotating\\nannotation\\nannotations\\nannotator\\nannotators\\nannounce\\nannounced\\nannouncement\\nannouncements\\nannouncer\\nannouncers\\nannounces\\nannouncing\\nannoy\\nannoyance\\nannoyances\\nannoyed\\nannoyer\\nannoyers\\nannoying\\nannoyingly\\nannoys\\nannual\\nannually\\nannuals\\nannuities\\nannuity\\nannul\\nannular\\nannulate\\nannulet\\nannulets\\nannuli\\nannulled\\nannulling\\nannulment\\nannulments\\nannulose\\nannuls\\nannulus\\nannuluses\\nanoa\\nanoas\\nanodal\\nanodally\\nanode\\nanodes\\nanodic\\nanodically\\nanodize\\nanodized\\nanodizes\\nanodizing\\nanodyne\\nanodynes\\nanodynic\\nanoint\\nanointed\\nanointer\\nanointers\\nanointing\\nanointment\\nanointments\\nanoints\\nanole\\nanoles\\nanolyte\\nanolytes\\nanomalies\\nanomalous\\nanomaly\\nanomic\\nanomie\\nanomies\\nanomy\\nanon\\nanonym\\nanonymities\\nanonymity\\nanonymous\\nanonymously\\nanonyms\\nanoopsia\\nanoopsias\\nanopia\\nanopias\\nanopsia\\nanopsias\\nanorak\\nanoraks\\nanoretic\\nanorexia\\nanorexias\\nanorexies\\nanorexy\\nanorthic\\nanosmia\\nanosmias\\nanosmic\\nanother\\nanoxemia\\nanoxemias\\nanoxemic\\nanoxia\\nanoxias\\nanoxic\\nansa\\nansae\\nansate\\nansated\\nanserine\\nanserines\\nanserous\\nanswer\\nanswerable\\nanswered\\nanswerer\\nanswerers\\nanswering\\nanswers\\nant\\nanta\\nantacid\\nantacids\\nantae\\nantagonism\\nantagonisms\\nantagonist\\nantagonistic\\nantagonists\\nantagonize\\nantagonized\\nantagonizes\\nantagonizing\\nantalgic\\nantalgics\\nantarctic\\nantas\\nante\\nanteater\\nanteaters\\nantebellum\\nantecede\\nanteceded\\nantecedent\\nantecedents\\nantecedes\\nanteceding\\nanted\\nantedate\\nantedated\\nantedates\\nantedating\\nanteed\\nantefix\\nantefixa\\nantefixes\\nanteing\\nantelope\\nantelopes\\nantenna\\nantennae\\nantennal\\nantennas\\nantepast\\nantepasts\\nanterior\\nanteroom\\nanterooms\\nantes\\nantetype\\nantetypes\\nantevert\\nanteverted\\nanteverting\\nanteverts\\nanthelia\\nanthelices\\nanthelix\\nanthem\\nanthemed\\nanthemia\\nantheming\\nanthems\\nanther\\nantheral\\nantherid\\nantherids\\nanthers\\nantheses\\nanthesis\\nanthill\\nanthills\\nanthodia\\nanthoid\\nanthologies\\nanthology\\nanthraces\\nanthracite\\nanthracites\\nanthrax\\nanthropoid\\nanthropological\\nanthropologist\\nanthropologists\\nanthropology\\nanti\\nantiabortion\\nantiacademic\\nantiadministration\\nantiaggression\\nantiaggressive\\nantiaircraft\\nantialien\\nantianarchic\\nantianarchist\\nantiannexation\\nantiapartheid\\nantiar\\nantiarin\\nantiarins\\nantiaristocrat\\nantiaristocratic\\nantiars\\nantiatheism\\nantiatheist\\nantiauthoritarian\\nantibacterial\\nantibiotic\\nantibiotics\\nantiblack\\nantibodies\\nantibody\\nantibourgeois\\nantiboxing\\nantiboycott\\nantibureaucratic\\nantiburglar\\nantiburglary\\nantibusiness\\nantic\\nanticancer\\nanticapitalism\\nanticapitalist\\nanticapitalistic\\nanticensorship\\nantichurch\\nanticigarette\\nanticipate\\nanticipated\\nanticipates\\nanticipating\\nanticipation\\nanticipations\\nanticipatory\\nantick\\nanticked\\nanticking\\nanticks\\nanticlerical\\nanticlimactic\\nanticlimax\\nanticlimaxes\\nanticly\\nanticollision\\nanticolonial\\nanticommunism\\nanticommunist\\nanticonservation\\nanticonservationist\\nanticonsumer\\nanticonventional\\nanticorrosive\\nanticorruption\\nanticrime\\nanticruelty\\nantics\\nanticultural\\nantidandruff\\nantidemocratic\\nantidiscrimination\\nantidote\\nantidotes\\nantidumping\\nantieavesdropping\\nantiemetic\\nantiemetics\\nantiestablishment\\nantievolution\\nantievolutionary\\nantifanatic\\nantifascism\\nantifascist\\nantifat\\nantifatigue\\nantifemale\\nantifeminine\\nantifeminism\\nantifeminist\\nantifertility\\nantiforeign\\nantiforeigner\\nantifraud\\nantifreeze\\nantifreezes\\nantifungus\\nantigambling\\nantigen\\nantigene\\nantigenes\\nantigens\\nantiglare\\nantigonorrheal\\nantigovernment\\nantigraft\\nantiguerilla\\nantihero\\nantiheroes\\nantihijack\\nantihistamine\\nantihistamines\\nantihomosexual\\nantihuman\\nantihumanism\\nantihumanistic\\nantihumanity\\nantihunting\\nantijamming\\nantiking\\nantikings\\nantilabor\\nantiliberal\\nantiliberalism\\nantilitter\\nantilittering\\nantilog\\nantilogies\\nantilogs\\nantilogy\\nantilynching\\nantimanagement\\nantimask\\nantimasks\\nantimaterialism\\nantimaterialist\\nantimaterialistic\\nantimere\\nantimeres\\nantimicrobial\\nantimilitarism\\nantimilitarist\\nantimilitaristic\\nantimilitary\\nantimiscegenation\\nantimonies\\nantimonopolist\\nantimonopoly\\nantimony\\nantimosquito\\nanting\\nantings\\nantinode\\nantinodes\\nantinoise\\nantinomies\\nantinomy\\nantiobesity\\nantipapal\\nantipathies\\nantipathy\\nantipersonnel\\nantiphon\\nantiphons\\nantipode\\nantipodes\\nantipole\\nantipoles\\nantipolice\\nantipollution\\nantipope\\nantipopes\\nantipornographic\\nantipornography\\nantipoverty\\nantiprofiteering\\nantiprogressive\\nantiprostitution\\nantipyic\\nantipyics\\nantipyretic\\nantiquarian\\nantiquarianism\\nantiquarians\\nantiquaries\\nantiquary\\nantiquated\\nantique\\nantiqued\\nantiquer\\nantiquers\\nantiques\\nantiquing\\nantiquities\\nantiquity\\nantirabies\\nantiracing\\nantiracketeering\\nantiradical\\nantirealism\\nantirealistic\\nantirecession\\nantireform\\nantireligious\\nantirepublican\\nantirevolutionary\\nantirobbery\\nantiromantic\\nantirust\\nantirusts\\nantis\\nantisegregation\\nantiseptic\\nantiseptically\\nantiseptics\\nantisera\\nantisexist\\nantisexual\\nantishoplifting\\nantiskid\\nantislavery\\nantismog\\nantismoking\\nantismuggling\\nantispending\\nantistrike\\nantistudent\\nantisubmarine\\nantisubversion\\nantisubversive\\nantisuicide\\nantisyphillis\\nantitank\\nantitax\\nantitechnological\\nantitechnology\\nantiterrorism\\nantiterrorist\\nantitheft\\nantitheses\\nantithesis\\nantitobacco\\nantitotalitarian\\nantitoxin\\nantitraditional\\nantitrust\\nantituberculosis\\nantitumor\\nantitype\\nantitypes\\nantityphoid\\nantiulcer\\nantiunemployment\\nantiunion\\nantiuniversity\\nantiurban\\nantivandalism\\nantiviolence\\nantiviral\\nantivivisection\\nantiwar\\nantiwhite\\nantiwiretapping\\nantiwoman\\nantler\\nantlered\\nantlers\\nantlike\\nantlion\\nantlions\\nantonym\\nantonymies\\nantonyms\\nantonymy\\nantra\\nantral\\nantre\\nantres\\nantrorse\\nantrum\\nants\\nanuran\\nanurans\\nanureses\\nanuresis\\nanuretic\\nanuria\\nanurias\\nanuric\\nanurous\\nanus\\nanuses\\nanvil\\nanviled\\nanviling\\nanvilled\\nanvilling\\nanvils\\nanviltop\\nanviltops\\nanxieties\\nanxiety\\nanxious\\nanxiously\\nany\\nanybodies\\nanybody\\nanyhow\\nanymore\\nanyone\\nanyplace\\nanything\\nanythings\\nanytime\\nanyway\\nanyways\\nanywhere\\nanywheres\\nanywise\\naorist\\naoristic\\naorists\\naorta\\naortae\\naortal\\naortas\\naortic\\naoudad\\naoudads\\napace\\napache\\napaches\\napagoge\\napagoges\\napagogic\\napanage\\napanages\\naparejo\\naparejos\\napart\\napartheid\\napartheids\\napatetic\\napathetic\\napathetically\\napathies\\napathy\\napatite\\napatites\\nape\\napeak\\naped\\napeek\\napelike\\naper\\napercu\\napercus\\naperient\\naperients\\naperies\\naperitif\\naperitifs\\napers\\naperture\\napertures\\napery\\napes\\napetalies\\napetaly\\napex\\napexes\\naphagia\\naphagias\\naphanite\\naphanites\\naphasia\\naphasiac\\naphasiacs\\naphasias\\naphasic\\naphasics\\naphelia\\naphelian\\naphelion\\napheses\\naphesis\\naphetic\\naphid\\naphides\\naphidian\\naphidians\\naphids\\naphis\\napholate\\napholates\\naphonia\\naphonias\\naphonic\\naphonics\\naphorise\\naphorised\\naphorises\\naphorising\\naphorism\\naphorisms\\naphorist\\naphoristic\\naphorists\\naphorize\\naphorized\\naphorizes\\naphorizing\\naphotic\\naphrodisiac\\naphtha\\naphthae\\naphthous\\naphyllies\\naphylly\\napian\\napiarian\\napiarians\\napiaries\\napiarist\\napiarists\\napiary\\napical\\napically\\napices\\napiculi\\napiculus\\napiece\\napimania\\napimanias\\naping\\napiologies\\napiology\\napish\\napishly\\naplasia\\naplasias\\naplastic\\naplenty\\naplite\\naplites\\naplitic\\naplomb\\naplombs\\napnea\\napneal\\napneas\\napneic\\napnoea\\napnoeal\\napnoeas\\napnoeic\\napocalypse\\napocalypses\\napocalyptic\\napocalyptical\\napocarp\\napocarpies\\napocarps\\napocarpy\\napocope\\napocopes\\napocopic\\napocrine\\napocrypha\\napocryphal\\napodal\\napodoses\\napodosis\\napodous\\napogamic\\napogamies\\napogamy\\napogeal\\napogean\\napogee\\napogees\\napogeic\\napollo\\napollos\\napolog\\napologal\\napologetic\\napologetically\\napologia\\napologiae\\napologias\\napologies\\napologist\\napologize\\napologized\\napologizes\\napologizing\\napologs\\napologue\\napologues\\napology\\napolune\\napolunes\\napomict\\napomicts\\napomixes\\napomixis\\napophyge\\napophyges\\napoplectic\\napoplexies\\napoplexy\\naport\\napostacies\\napostacy\\napostasies\\napostasy\\napostate\\napostates\\napostil\\napostils\\napostle\\napostles\\napostleship\\napostolic\\napostrophe\\napostrophes\\napothecaries\\napothecary\\napothece\\napotheces\\napothegm\\napothegms\\napothem\\napothems\\nappal\\nappall\\nappalled\\nappalling\\nappalls\\nappals\\nappanage\\nappanages\\napparat\\napparats\\napparatus\\napparatuses\\napparel\\nappareled\\nappareling\\napparelled\\napparelling\\napparels\\napparent\\napparently\\napparition\\napparitions\\nappeal\\nappealed\\nappealer\\nappealers\\nappealing\\nappeals\\nappear\\nappearance\\nappearances\\nappeared\\nappearing\\nappears\\nappease\\nappeased\\nappeasement\\nappeasements\\nappeaser\\nappeasers\\nappeases\\nappeasing\\nappel\\nappellee\\nappellees\\nappellor\\nappellors\\nappels\\nappend\\nappendage\\nappendages\\nappendectomies\\nappendectomy\\nappended\\nappendices\\nappendicitis\\nappending\\nappendix\\nappendixes\\nappends\\nappestat\\nappestats\\nappetent\\nappetite\\nappetites\\nappetizer\\nappetizers\\nappetizing\\nappetizingly\\napplaud\\napplauded\\napplauding\\napplauds\\napplause\\napplauses\\napple\\napplejack\\napplejacks\\napples\\napplesauce\\nappliance\\napplicabilities\\napplicability\\napplicable\\napplicancies\\napplicancy\\napplicant\\napplicants\\napplication\\napplications\\napplicator\\napplicators\\napplied\\napplier\\nappliers\\napplies\\napplique\\nappliqued\\nappliqueing\\nappliques\\napply\\napplying\\nappoint\\nappointed\\nappointing\\nappointment\\nappointments\\nappoints\\napportion\\napportioned\\napportioning\\napportionment\\napportionments\\napportions\\nappose\\napposed\\napposer\\napposers\\napposes\\napposing\\napposite\\nappositely\\nappraisal\\nappraisals\\nappraise\\nappraised\\nappraiser\\nappraisers\\nappraises\\nappraising\\nappreciable\\nappreciably\\nappreciate\\nappreciated\\nappreciates\\nappreciating\\nappreciation\\nappreciations\\nappreciative\\napprehend\\napprehended\\napprehending\\napprehends\\napprehension\\napprehensions\\napprehensive\\napprehensively\\napprehensiveness\\napprehensivenesses\\napprentice\\napprenticed\\napprentices\\napprenticeship\\napprenticeships\\napprenticing\\napprise\\napprised\\nappriser\\napprisers\\napprises\\napprising\\napprize\\napprized\\napprizer\\napprizers\\napprizes\\napprizing\\napproach\\napproachable\\napproached\\napproaches\\napproaching\\napprobation\\nappropriate\\nappropriated\\nappropriately\\nappropriateness\\nappropriates\\nappropriating\\nappropriation\\nappropriations\\napproval\\napprovals\\napprove\\napproved\\napprover\\napprovers\\napproves\\napproving\\napproximate\\napproximated\\napproximately\\napproximates\\napproximating\\napproximation\\napproximations\\nappulse\\nappulses\\nappurtenance\\nappurtenances\\nappurtenant\\napractic\\napraxia\\napraxias\\napraxic\\napricot\\napricots\\napron\\naproned\\naproning\\naprons\\napropos\\napse\\napses\\napsidal\\napsides\\napsis\\napt\\napter\\napteral\\napterous\\napteryx\\napteryxes\\naptest\\naptitude\\naptitudes\\naptly\\naptness\\naptnesses\\napyrase\\napyrases\\napyretic\\naqua\\naquacade\\naquacades\\naquae\\naquamarine\\naquamarines\\naquanaut\\naquanauts\\naquaria\\naquarial\\naquarian\\naquarians\\naquarist\\naquarists\\naquarium\\naquariums\\naquas\\naquatic\\naquatics\\naquatint\\naquatinted\\naquatinting\\naquatints\\naquatone\\naquatones\\naquavit\\naquavits\\naqueduct\\naqueducts\\naqueous\\naquifer\\naquifers\\naquiline\\naquiver\\nar\\narabesk\\narabesks\\narabesque\\narabesques\\narabize\\narabized\\narabizes\\narabizing\\narable\\narables\\naraceous\\narachnid\\narachnids\\narak\\naraks\\naraneid\\naraneids\\narapaima\\narapaimas\\nararoba\\nararobas\\narbalest\\narbalests\\narbalist\\narbalists\\narbiter\\narbiters\\narbitral\\narbitrarily\\narbitrariness\\narbitrarinesses\\narbitrary\\narbitrate\\narbitrated\\narbitrates\\narbitrating\\narbitration\\narbitrations\\narbitrator\\narbitrators\\narbor\\narboreal\\narbored\\narbores\\narboreta\\narborist\\narborists\\narborize\\narborized\\narborizes\\narborizing\\narborous\\narbors\\narbour\\narboured\\narbours\\narbuscle\\narbuscles\\narbute\\narbutean\\narbutes\\narbutus\\narbutuses\\narc\\narcade\\narcaded\\narcades\\narcadia\\narcadian\\narcadians\\narcadias\\narcading\\narcadings\\narcana\\narcane\\narcanum\\narcature\\narcatures\\narced\\narch\\narchaeological\\narchaeologies\\narchaeologist\\narchaeologists\\narchaeology\\narchaic\\narchaically\\narchaise\\narchaised\\narchaises\\narchaising\\narchaism\\narchaisms\\narchaist\\narchaists\\narchaize\\narchaized\\narchaizes\\narchaizing\\narchangel\\narchangels\\narchbishop\\narchbishopric\\narchbishoprics\\narchbishops\\narchdiocese\\narchdioceses\\narchduke\\narchdukes\\narched\\narcheologies\\narcheology\\narcher\\narcheries\\narchers\\narchery\\narches\\narchetype\\narchetypes\\narchil\\narchils\\narchine\\narchines\\narching\\narchings\\narchipelago\\narchipelagos\\narchitect\\narchitects\\narchitectural\\narchitecture\\narchitectures\\narchival\\narchive\\narchived\\narchives\\narchiving\\narchly\\narchness\\narchnesses\\narchon\\narchons\\narchway\\narchways\\narciform\\narcing\\narcked\\narcking\\narco\\narcs\\narctic\\narctics\\narcuate\\narcuated\\narcus\\narcuses\\nardeb\\nardebs\\nardencies\\nardency\\nardent\\nardently\\nardor\\nardors\\nardour\\nardours\\narduous\\narduously\\narduousness\\narduousnesses\\nare\\narea\\nareae\\nareal\\nareally\\nareas\\nareaway\\nareaways\\nareca\\narecas\\nareic\\narena\\narenas\\narenose\\narenous\\nareola\\nareolae\\nareolar\\nareolas\\nareolate\\nareole\\nareoles\\nareologies\\nareology\\nares\\narete\\naretes\\narethusa\\narethusas\\narf\\nargal\\nargali\\nargalis\\nargals\\nargent\\nargental\\nargentic\\nargents\\nargentum\\nargentums\\nargil\\nargils\\narginase\\narginases\\narginine\\narginines\\nargle\\nargled\\nargles\\nargling\\nargol\\nargols\\nargon\\nargonaut\\nargonauts\\nargons\\nargosies\\nargosy\\nargot\\nargotic\\nargots\\narguable\\narguably\\nargue\\nargued\\narguer\\narguers\\nargues\\nargufied\\nargufier\\nargufiers\\nargufies\\nargufy\\nargufying\\narguing\\nargument\\nargumentative\\narguments\\nargus\\narguses\\nargyle\\nargyles\\nargyll\\nargylls\\narhat\\narhats\\naria\\narias\\narid\\narider\\naridest\\naridities\\naridity\\naridly\\naridness\\naridnesses\\nariel\\nariels\\narietta\\nariettas\\nariette\\nariettes\\naright\\naril\\nariled\\narillate\\narillode\\narillodes\\narilloid\\narils\\nariose\\nariosi\\narioso\\nariosos\\narise\\narisen\\narises\\narising\\narista\\naristae\\naristas\\naristate\\naristocracies\\naristocracy\\naristocrat\\naristocratic\\naristocrats\\narithmetic\\narithmetical\\nark\\narks\\narles\\narm\\narmada\\narmadas\\narmadillo\\narmadillos\\narmament\\narmaments\\narmature\\narmatured\\narmatures\\narmaturing\\narmband\\narmbands\\narmchair\\narmchairs\\narmed\\narmer\\narmers\\narmet\\narmets\\narmful\\narmfuls\\narmhole\\narmholes\\narmies\\narmiger\\narmigero\\narmigeros\\narmigers\\narmilla\\narmillae\\narmillas\\narming\\narmings\\narmless\\narmlet\\narmlets\\narmlike\\narmload\\narmloads\\narmoire\\narmoires\\narmonica\\narmonicas\\narmor\\narmored\\narmorer\\narmorers\\narmorial\\narmorials\\narmories\\narmoring\\narmors\\narmory\\narmour\\narmoured\\narmourer\\narmourers\\narmouries\\narmouring\\narmours\\narmoury\\narmpit\\narmpits\\narmrest\\narmrests\\narms\\narmsful\\narmure\\narmures\\narmy\\narmyworm\\narmyworms\\narnatto\\narnattos\\narnica\\narnicas\\narnotto\\narnottos\\naroid\\naroids\\naroint\\narointed\\narointing\\naroints\\naroma\\naromas\\naromatic\\naromatics\\narose\\naround\\narousal\\narousals\\narouse\\naroused\\narouser\\narousers\\narouses\\narousing\\naroynt\\naroynted\\naroynting\\naroynts\\narpeggio\\narpeggios\\narpen\\narpens\\narpent\\narpents\\narquebus\\narquebuses\\narrack\\narracks\\narraign\\narraigned\\narraigning\\narraigns\\narrange\\narranged\\narrangement\\narrangements\\narranger\\narrangers\\narranges\\narranging\\narrant\\narrantly\\narras\\narrased\\narray\\narrayal\\narrayals\\narrayed\\narrayer\\narrayers\\narraying\\narrays\\narrear\\narrears\\narrest\\narrested\\narrestee\\narrestees\\narrester\\narresters\\narresting\\narrestor\\narrestors\\narrests\\narrhizal\\narrhythmia\\narris\\narrises\\narrival\\narrivals\\narrive\\narrived\\narriver\\narrivers\\narrives\\narriving\\narroba\\narrobas\\narrogance\\narrogances\\narrogant\\narrogantly\\narrogate\\narrogated\\narrogates\\narrogating\\narrow\\narrowed\\narrowhead\\narrowheads\\narrowing\\narrows\\narrowy\\narroyo\\narroyos\\nars\\narse\\narsenal\\narsenals\\narsenate\\narsenates\\narsenic\\narsenical\\narsenics\\narsenide\\narsenides\\narsenious\\narsenite\\narsenites\\narseno\\narsenous\\narses\\narshin\\narshins\\narsine\\narsines\\narsino\\narsis\\narson\\narsonist\\narsonists\\narsonous\\narsons\\nart\\nartal\\nartefact\\nartefacts\\nartel\\nartels\\narterial\\narterials\\narteries\\narteriosclerosis\\narteriosclerotic\\nartery\\nartful\\nartfully\\nartfulness\\nartfulnesses\\narthralgia\\narthritic\\narthritides\\narthritis\\narthropod\\narthropods\\nartichoke\\nartichokes\\narticle\\narticled\\narticles\\narticling\\narticulate\\narticulated\\narticulately\\narticulateness\\narticulatenesses\\narticulates\\narticulating\\nartier\\nartiest\\nartifact\\nartifacts\\nartifice\\nartifices\\nartificial\\nartificialities\\nartificiality\\nartificially\\nartificialness\\nartificialnesses\\nartilleries\\nartillery\\nartily\\nartiness\\nartinesses\\nartisan\\nartisans\\nartist\\nartiste\\nartistes\\nartistic\\nartistical\\nartistically\\nartistries\\nartistry\\nartists\\nartless\\nartlessly\\nartlessness\\nartlessnesses\\narts\\nartwork\\nartworks\\narty\\narum\\narums\\naruspex\\naruspices\\narval\\narvo\\narvos\\naryl\\naryls\\narythmia\\narythmias\\narythmic\\nas\\nasarum\\nasarums\\nasbestic\\nasbestos\\nasbestoses\\nasbestus\\nasbestuses\\nascarid\\nascarides\\nascarids\\nascaris\\nascend\\nascendancies\\nascendancy\\nascendant\\nascended\\nascender\\nascenders\\nascending\\nascends\\nascension\\nascensions\\nascent\\nascents\\nascertain\\nascertainable\\nascertained\\nascertaining\\nascertains\\nasceses\\nascesis\\nascetic\\nasceticism\\nasceticisms\\nascetics\\nasci\\nascidia\\nascidian\\nascidians\\nascidium\\nascites\\nascitic\\nascocarp\\nascocarps\\nascorbic\\nascot\\nascots\\nascribable\\nascribe\\nascribed\\nascribes\\nascribing\\nascription\\nascriptions\\nascus\\nasdic\\nasdics\\nasea\\nasepses\\nasepsis\\naseptic\\nasexual\\nash\\nashamed\\nashcan\\nashcans\\nashed\\nashen\\nashes\\nashier\\nashiest\\nashing\\nashlar\\nashlared\\nashlaring\\nashlars\\nashler\\nashlered\\nashlering\\nashlers\\nashless\\nashman\\nashmen\\nashore\\nashplant\\nashplants\\nashram\\nashrams\\nashtray\\nashtrays\\nashy\\naside\\nasides\\nasinine\\nask\\naskance\\naskant\\nasked\\nasker\\naskers\\naskeses\\naskesis\\naskew\\nasking\\naskings\\nasks\\naslant\\nasleep\\naslope\\nasocial\\nasp\\naspect\\naspects\\naspen\\naspens\\nasper\\nasperate\\nasperated\\nasperates\\nasperating\\nasperges\\nasperities\\nasperity\\naspers\\nasperse\\naspersed\\nasperser\\naspersers\\nasperses\\naspersing\\naspersion\\naspersions\\naspersor\\naspersors\\nasphalt\\nasphalted\\nasphaltic\\nasphalting\\nasphalts\\nasphaltum\\nasphaltums\\naspheric\\nasphodel\\nasphodels\\nasphyxia\\nasphyxias\\nasphyxiate\\nasphyxiated\\nasphyxiates\\nasphyxiating\\nasphyxiation\\nasphyxiations\\nasphyxies\\nasphyxy\\naspic\\naspics\\naspirant\\naspirants\\naspirata\\naspiratae\\naspirate\\naspirated\\naspirates\\naspirating\\naspiration\\naspirations\\naspire\\naspired\\naspirer\\naspirers\\naspires\\naspirin\\naspiring\\naspirins\\naspis\\naspises\\naspish\\nasps\\nasquint\\nasrama\\nasramas\\nass\\nassagai\\nassagaied\\nassagaiing\\nassagais\\nassai\\nassail\\nassailable\\nassailant\\nassailants\\nassailed\\nassailer\\nassailers\\nassailing\\nassails\\nassais\\nassassin\\nassassinate\\nassassinated\\nassassinates\\nassassinating\\nassassination\\nassassinations\\nassassins\\nassault\\nassaulted\\nassaulting\\nassaults\\nassay\\nassayed\\nassayer\\nassayers\\nassaying\\nassays\\nassegai\\nassegaied\\nassegaiing\\nassegais\\nassemble\\nassembled\\nassembles\\nassemblies\\nassembling\\nassembly\\nassemblyman\\nassemblymen\\nassemblywoman\\nassemblywomen\\nassent\\nassented\\nassenter\\nassenters\\nassenting\\nassentor\\nassentors\\nassents\\nassert\\nasserted\\nasserter\\nasserters\\nasserting\\nassertion\\nassertions\\nassertive\\nassertiveness\\nassertivenesses\\nassertor\\nassertors\\nasserts\\nasses\\nassess\\nassessed\\nassesses\\nassessing\\nassessment\\nassessments\\nassessor\\nassessors\\nasset\\nassets\\nassiduities\\nassiduity\\nassiduous\\nassiduously\\nassiduousness\\nassiduousnesses\\nassign\\nassignable\\nassignat\\nassignats\\nassigned\\nassignee\\nassignees\\nassigner\\nassigners\\nassigning\\nassignment\\nassignments\\nassignor\\nassignors\\nassigns\\nassimilate\\nassimilated\\nassimilates\\nassimilating\\nassimilation\\nassimilations\\nassist\\nassistance\\nassistances\\nassistant\\nassistants\\nassisted\\nassister\\nassisters\\nassisting\\nassistor\\nassistors\\nassists\\nassize\\nassizes\\nasslike\\nassociate\\nassociated\\nassociates\\nassociating\\nassociation\\nassociations\\nassoil\\nassoiled\\nassoiling\\nassoils\\nassonant\\nassonants\\nassort\\nassorted\\nassorter\\nassorters\\nassorting\\nassortment\\nassortments\\nassorts\\nassuage\\nassuaged\\nassuages\\nassuaging\\nassume\\nassumed\\nassumer\\nassumers\\nassumes\\nassuming\\nassumption\\nassumptions\\nassurance\\nassurances\\nassure\\nassured\\nassureds\\nassurer\\nassurers\\nassures\\nassuring\\nassuror\\nassurors\\nasswage\\nasswaged\\nasswages\\nasswaging\\nastasia\\nastasias\\nastatic\\nastatine\\nastatines\\naster\\nasteria\\nasterias\\nasterisk\\nasterisked\\nasterisking\\nasterisks\\nasterism\\nasterisms\\nastern\\nasternal\\nasteroid\\nasteroidal\\nasteroids\\nasters\\nasthenia\\nasthenias\\nasthenic\\nasthenics\\nasthenies\\nastheny\\nasthma\\nasthmas\\nastigmatic\\nastigmatism\\nastigmatisms\\nastir\\nastomous\\nastonied\\nastonies\\nastonish\\nastonished\\nastonishes\\nastonishing\\nastonishingly\\nastonishment\\nastonishments\\nastony\\nastonying\\nastound\\nastounded\\nastounding\\nastoundingly\\nastounds\\nastraddle\\nastragal\\nastragals\\nastral\\nastrally\\nastrals\\nastray\\nastrict\\nastricted\\nastricting\\nastricts\\nastride\\nastringe\\nastringed\\nastringencies\\nastringency\\nastringent\\nastringents\\nastringes\\nastringing\\nastrolabe\\nastrolabes\\nastrologer\\nastrologers\\nastrological\\nastrologies\\nastrology\\nastronaut\\nastronautic\\nastronautical\\nastronautically\\nastronautics\\nastronauts\\nastronomer\\nastronomers\\nastronomic\\nastronomical\\nastute\\nastutely\\nastuteness\\nastylar\\nasunder\\naswarm\\naswirl\\naswoon\\nasyla\\nasylum\\nasylums\\nasymmetric\\nasymmetrical\\nasymmetries\\nasymmetry\\nasyndeta\\nat\\natabal\\natabals\\nataghan\\nataghans\\natalaya\\natalayas\\nataman\\natamans\\natamasco\\natamascos\\nataraxia\\nataraxias\\nataraxic\\nataraxics\\nataraxies\\nataraxy\\natavic\\natavism\\natavisms\\natavist\\natavists\\nataxia\\nataxias\\nataxic\\nataxics\\nataxies\\nataxy\\nate\\natechnic\\natelic\\natelier\\nateliers\\nates\\nathanasies\\nathanasy\\natheism\\natheisms\\natheist\\natheistic\\natheists\\natheling\\nathelings\\natheneum\\natheneums\\natheroma\\natheromas\\natheromata\\natherosclerosis\\natherosclerotic\\nathirst\\nathlete\\nathletes\\nathletic\\nathletics\\nathodyd\\nathodyds\\nathwart\\natilt\\natingle\\natlantes\\natlas\\natlases\\natlatl\\natlatls\\natma\\natman\\natmans\\natmas\\natmosphere\\natmospheres\\natmospheric\\natmospherically\\natoll\\natolls\\natom\\natomic\\natomical\\natomics\\natomies\\natomise\\natomised\\natomises\\natomising\\natomism\\natomisms\\natomist\\natomists\\natomize\\natomized\\natomizer\\natomizers\\natomizes\\natomizing\\natoms\\natomy\\natonable\\natonal\\natonally\\natone\\natoned\\natonement\\natonements\\natoner\\natoners\\natones\\natonic\\natonicity\\natonics\\natonies\\natoning\\natony\\natop\\natopic\\natopies\\natopy\\natrazine\\natrazines\\natremble\\natresia\\natresias\\natria\\natrial\\natrip\\natrium\\natriums\\natrocious\\natrociously\\natrociousness\\natrociousnesses\\natrocities\\natrocity\\natrophia\\natrophias\\natrophic\\natrophied\\natrophies\\natrophy\\natrophying\\natropin\\natropine\\natropines\\natropins\\natropism\\natropisms\\nattach\\nattache\\nattached\\nattacher\\nattachers\\nattaches\\nattaching\\nattachment\\nattachments\\nattack\\nattacked\\nattacker\\nattackers\\nattacking\\nattacks\\nattain\\nattainabilities\\nattainability\\nattainable\\nattained\\nattainer\\nattainers\\nattaining\\nattainment\\nattainments\\nattains\\nattaint\\nattainted\\nattainting\\nattaints\\nattar\\nattars\\nattemper\\nattempered\\nattempering\\nattempers\\nattempt\\nattempted\\nattempting\\nattempts\\nattend\\nattendance\\nattendances\\nattendant\\nattendants\\nattended\\nattendee\\nattendees\\nattender\\nattenders\\nattending\\nattendings\\nattends\\nattent\\nattention\\nattentions\\nattentive\\nattentively\\nattentiveness\\nattentivenesses\\nattenuate\\nattenuated\\nattenuates\\nattenuating\\nattenuation\\nattenuations\\nattest\\nattestation\\nattestations\\nattested\\nattester\\nattesters\\nattesting\\nattestor\\nattestors\\nattests\\nattic\\natticism\\natticisms\\natticist\\natticists\\nattics\\nattire\\nattired\\nattires\\nattiring\\nattitude\\nattitudes\\nattorn\\nattorned\\nattorney\\nattorneys\\nattorning\\nattorns\\nattract\\nattracted\\nattracting\\nattraction\\nattractions\\nattractive\\nattractively\\nattractiveness\\nattractivenesses\\nattracts\\nattributable\\nattribute\\nattributed\\nattributes\\nattributing\\nattribution\\nattributions\\nattrite\\nattrited\\nattune\\nattuned\\nattunes\\nattuning\\natwain\\natween\\natwitter\\natypic\\natypical\\naubade\\naubades\\nauberge\\nauberges\\nauburn\\nauburns\\nauction\\nauctioned\\nauctioneer\\nauctioneers\\nauctioning\\nauctions\\naudacious\\naudacities\\naudacity\\naudad\\naudads\\naudible\\naudibles\\naudibly\\naudience\\naudiences\\naudient\\naudients\\naudile\\naudiles\\nauding\\naudings\\naudio\\naudiogram\\naudiograms\\naudios\\naudit\\naudited\\nauditing\\naudition\\nauditioned\\nauditioning\\nauditions\\nauditive\\nauditives\\nauditor\\nauditories\\nauditorium\\nauditoriums\\nauditors\\nauditory\\naudits\\naugend\\naugends\\nauger\\naugers\\naught\\naughts\\naugite\\naugites\\naugitic\\naugment\\naugmentation\\naugmentations\\naugmented\\naugmenting\\naugments\\naugur\\naugural\\naugured\\naugurer\\naugurers\\nauguries\\nauguring\\naugurs\\naugury\\naugust\\nauguster\\naugustest\\naugustly\\nauk\\nauklet\\nauklets\\nauks\\nauld\\naulder\\nauldest\\naulic\\naunt\\naunthood\\naunthoods\\nauntie\\naunties\\nauntlier\\nauntliest\\nauntlike\\nauntly\\naunts\\naunty\\naura\\naurae\\naural\\naurally\\naurar\\nauras\\naurate\\naurated\\naureate\\naurei\\naureola\\naureolae\\naureolas\\naureole\\naureoled\\naureoles\\naureoling\\naures\\naureus\\nauric\\nauricle\\nauricled\\nauricles\\nauricula\\nauriculae\\nauriculas\\nauriform\\nauris\\naurist\\naurists\\naurochs\\naurochses\\naurora\\naurorae\\nauroral\\nauroras\\naurorean\\naurous\\naurum\\naurums\\nauscultation\\nauscultations\\nauspex\\nauspice\\nauspices\\nauspicious\\naustere\\nausterer\\nausterest\\nausterities\\nausterity\\naustral\\nautacoid\\nautacoids\\nautarchies\\nautarchy\\nautarkic\\nautarkies\\nautarkik\\nautarky\\nautecism\\nautecisms\\nauthentic\\nauthentically\\nauthenticate\\nauthenticated\\nauthenticates\\nauthenticating\\nauthentication\\nauthentications\\nauthenticities\\nauthenticity\\nauthor\\nauthored\\nauthoress\\nauthoresses\\nauthoring\\nauthoritarian\\nauthoritative\\nauthoritatively\\nauthorities\\nauthority\\nauthorization\\nauthorizations\\nauthorize\\nauthorized\\nauthorizes\\nauthorizing\\nauthors\\nauthorship\\nauthorships\\nautism\\nautisms\\nautistic\\nauto\\nautobahn\\nautobahnen\\nautobahns\\nautobiographer\\nautobiographers\\nautobiographical\\nautobiographies\\nautobiography\\nautobus\\nautobuses\\nautobusses\\nautocade\\nautocades\\nautocoid\\nautocoids\\nautocracies\\nautocracy\\nautocrat\\nautocratic\\nautocratically\\nautocrats\\nautodyne\\nautodynes\\nautoed\\nautogamies\\nautogamy\\nautogenies\\nautogeny\\nautogiro\\nautogiros\\nautograph\\nautographed\\nautographing\\nautographs\\nautogyro\\nautogyros\\nautoing\\nautolyze\\nautolyzed\\nautolyzes\\nautolyzing\\nautomata\\nautomate\\nautomateable\\nautomated\\nautomates\\nautomatic\\nautomatically\\nautomating\\nautomation\\nautomations\\nautomaton\\nautomatons\\nautomobile\\nautomobiles\\nautomotive\\nautonomies\\nautonomous\\nautonomously\\nautonomy\\nautopsic\\nautopsied\\nautopsies\\nautopsy\\nautopsying\\nautos\\nautosome\\nautosomes\\nautotomies\\nautotomy\\nautotype\\nautotypes\\nautotypies\\nautotypy\\nautumn\\nautumnal\\nautumns\\nautunite\\nautunites\\nauxeses\\nauxesis\\nauxetic\\nauxetics\\nauxiliaries\\nauxiliary\\nauxin\\nauxinic\\nauxins\\nava\\navail\\navailabilities\\navailability\\navailable\\navailed\\navailing\\navails\\navalanche\\navalanches\\navarice\\navarices\\navast\\navatar\\navatars\\navaunt\\nave\\navellan\\navellane\\navenge\\navenged\\navenger\\navengers\\navenges\\navenging\\navens\\navenses\\naventail\\naventails\\navenue\\navenues\\naver\\naverage\\naveraged\\naverages\\naveraging\\naverment\\naverments\\naverred\\naverring\\navers\\naverse\\naversely\\naversion\\naversions\\naversive\\navert\\naverted\\naverting\\naverts\\naves\\navgas\\navgases\\navgasses\\navian\\navianize\\navianized\\navianizes\\navianizing\\navians\\naviaries\\naviarist\\naviarists\\naviary\\naviate\\naviated\\naviates\\naviating\\naviation\\naviations\\naviator\\naviators\\naviatrices\\naviatrix\\naviatrixes\\navicular\\navid\\navidin\\navidins\\navidities\\navidity\\navidly\\navidness\\navidnesses\\navifauna\\navifaunae\\navifaunas\\navigator\\navigators\\navion\\navionic\\navionics\\navions\\naviso\\navisos\\navo\\navocado\\navocadoes\\navocados\\navocation\\navocations\\navocet\\navocets\\navodire\\navodires\\navoid\\navoidable\\navoidance\\navoidances\\navoided\\navoider\\navoiders\\navoiding\\navoids\\navoidupois\\navoidupoises\\navos\\navoset\\navosets\\navouch\\navouched\\navoucher\\navouchers\\navouches\\navouching\\navow\\navowable\\navowably\\navowal\\navowals\\navowed\\navowedly\\navower\\navowers\\navowing\\navows\\navulse\\navulsed\\navulses\\navulsing\\navulsion\\navulsions\\naw\\nawa\\nawait\\nawaited\\nawaiter\\nawaiters\\nawaiting\\nawaits\\nawake\\nawaked\\nawaken\\nawakened\\nawakener\\nawakeners\\nawakening\\nawakens\\nawakes\\nawaking\\naward\\nawarded\\nawardee\\nawardees\\nawarder\\nawarders\\nawarding\\nawards\\naware\\nawash\\naway\\nawayness\\nawaynesses\\nawe\\naweary\\naweather\\nawed\\nawee\\naweigh\\naweing\\naweless\\nawes\\nawesome\\nawesomely\\nawful\\nawfuller\\nawfullest\\nawfully\\nawhile\\nawhirl\\nawing\\nawkward\\nawkwarder\\nawkwardest\\nawkwardly\\nawkwardness\\nawkwardnesses\\nawl\\nawless\\nawls\\nawlwort\\nawlworts\\nawmous\\nawn\\nawned\\nawning\\nawninged\\nawnings\\nawnless\\nawns\\nawny\\nawoke\\nawoken\\nawol\\nawols\\nawry\\naxal\\naxe\\naxed\\naxel\\naxels\\naxeman\\naxemen\\naxenic\\naxes\\naxial\\naxialities\\naxiality\\naxially\\naxil\\naxile\\naxilla\\naxillae\\naxillar\\naxillaries\\naxillars\\naxillary\\naxillas\\naxils\\naxing\\naxiologies\\naxiology\\naxiom\\naxiomatic\\naxioms\\naxis\\naxised\\naxises\\naxite\\naxites\\naxle\\naxled\\naxles\\naxletree\\naxletrees\\naxlike\\naxman\\naxmen\\naxolotl\\naxolotls\\naxon\\naxonal\\naxone\\naxones\\naxonic\\naxons\\naxoplasm\\naxoplasms\\naxseed\\naxseeds\\nay\\nayah\\nayahs\\naye\\nayes\\nayin\\nayins\\nays\\nazalea\\nazaleas\\nazan\\nazans\\nazide\\nazides\\nazido\\nazimuth\\nazimuthal\\nazimuths\\nazine\\nazines\\nazo\\nazoic\\nazole\\nazoles\\nazon\\nazonal\\nazonic\\nazons\\nazote\\nazoted\\nazotemia\\nazotemias\\nazotemic\\nazotes\\nazoth\\nazoths\\nazotic\\nazotise\\nazotised\\nazotises\\nazotising\\nazotize\\nazotized\\nazotizes\\nazotizing\\nazoturia\\nazoturias\\nazure\\nazures\\nazurite\\nazurites\\nazygos\\nazygoses\\nazygous\\nba\\nbaa\\nbaaed\\nbaaing\\nbaal\\nbaalim\\nbaalism\\nbaalisms\\nbaals\\nbaas\\nbaba\\nbabas\\nbabassu\\nbabassus\\nbabbitt\\nbabbitted\\nbabbitting\\nbabbitts\\nbabble\\nbabbled\\nbabbler\\nbabblers\\nbabbles\\nbabbling\\nbabblings\\nbabbool\\nbabbools\\nbabe\\nbabel\\nbabels\\nbabes\\nbabesia\\nbabesias\\nbabiche\\nbabiches\\nbabied\\nbabies\\nbabirusa\\nbabirusas\\nbabka\\nbabkas\\nbaboo\\nbabool\\nbabools\\nbaboon\\nbaboons\\nbaboos\\nbabu\\nbabul\\nbabuls\\nbabus\\nbabushka\\nbabushkas\\nbaby\\nbabyhood\\nbabyhoods\\nbabying\\nbabyish\\nbacca\\nbaccae\\nbaccalaureate\\nbaccalaureates\\nbaccara\\nbaccaras\\nbaccarat\\nbaccarats\\nbaccate\\nbaccated\\nbacchant\\nbacchantes\\nbacchants\\nbacchic\\nbacchii\\nbacchius\\nbach\\nbached\\nbachelor\\nbachelorhood\\nbachelorhoods\\nbachelors\\nbaches\\nbaching\\nbacillar\\nbacillary\\nbacilli\\nbacillus\\nback\\nbackache\\nbackaches\\nbackarrow\\nbackarrows\\nbackbend\\nbackbends\\nbackbit\\nbackbite\\nbackbiter\\nbackbiters\\nbackbites\\nbackbiting\\nbackbitten\\nbackbone\\nbackbones\\nbackdoor\\nbackdrop\\nbackdrops\\nbacked\\nbacker\\nbackers\\nbackfill\\nbackfilled\\nbackfilling\\nbackfills\\nbackfire\\nbackfired\\nbackfires\\nbackfiring\\nbackgammon\\nbackgammons\\nbackground\\nbackgrounds\\nbackhand\\nbackhanded\\nbackhanding\\nbackhands\\nbackhoe\\nbackhoes\\nbacking\\nbackings\\nbacklash\\nbacklashed\\nbacklasher\\nbacklashers\\nbacklashes\\nbacklashing\\nbackless\\nbacklist\\nbacklists\\nbacklit\\nbacklog\\nbacklogged\\nbacklogging\\nbacklogs\\nbackmost\\nbackout\\nbackouts\\nbackpack\\nbackpacked\\nbackpacker\\nbackpacking\\nbackpacks\\nbackrest\\nbackrests\\nbacks\\nbacksaw\\nbacksaws\\nbackseat\\nbackseats\\nbackset\\nbacksets\\nbackside\\nbacksides\\nbackslap\\nbackslapped\\nbackslapping\\nbackslaps\\nbackslash\\nbackslashes\\nbackslid\\nbackslide\\nbackslided\\nbackslider\\nbacksliders\\nbackslides\\nbacksliding\\nbackspace\\nbackspaced\\nbackspaces\\nbackspacing\\nbackspin\\nbackspins\\nbackstay\\nbackstays\\nbackstop\\nbackstopped\\nbackstopping\\nbackstops\\nbackup\\nbackups\\nbackward\\nbackwardness\\nbackwardnesses\\nbackwards\\nbackwash\\nbackwashed\\nbackwashes\\nbackwashing\\nbackwood\\nbackwoods\\nbackyard\\nbackyards\\nbacon\\nbacons\\nbacteria\\nbacterial\\nbacterin\\nbacterins\\nbacteriologic\\nbacteriological\\nbacteriologies\\nbacteriologist\\nbacteriologists\\nbacteriology\\nbacterium\\nbaculine\\nbad\\nbaddie\\nbaddies\\nbaddy\\nbade\\nbadge\\nbadged\\nbadger\\nbadgered\\nbadgering\\nbadgerly\\nbadgers\\nbadges\\nbadging\\nbadinage\\nbadinaged\\nbadinages\\nbadinaging\\nbadland\\nbadlands\\nbadly\\nbadman\\nbadmen\\nbadminton\\nbadmintons\\nbadmouth\\nbadmouthed\\nbadmouthing\\nbadmouths\\nbadness\\nbadnesses\\nbads\\nbaff\\nbaffed\\nbaffies\\nbaffing\\nbaffle\\nbaffled\\nbaffler\\nbafflers\\nbaffles\\nbaffling\\nbaffs\\nbaffy\\nbag\\nbagass\\nbagasse\\nbagasses\\nbagatelle\\nbagatelles\\nbagel\\nbagels\\nbagful\\nbagfuls\\nbaggage\\nbaggages\\nbagged\\nbaggie\\nbaggier\\nbaggies\\nbaggiest\\nbaggily\\nbagging\\nbaggings\\nbaggy\\nbagman\\nbagmen\\nbagnio\\nbagnios\\nbagpipe\\nbagpiper\\nbagpipers\\nbagpipes\\nbags\\nbagsful\\nbaguet\\nbaguets\\nbaguette\\nbaguettes\\nbagwig\\nbagwigs\\nbagworm\\nbagworms\\nbah\\nbahadur\\nbahadurs\\nbaht\\nbahts\\nbaidarka\\nbaidarkas\\nbail\\nbailable\\nbailed\\nbailee\\nbailees\\nbailer\\nbailers\\nbailey\\nbaileys\\nbailie\\nbailies\\nbailiff\\nbailiffs\\nbailing\\nbailiwick\\nbailiwicks\\nbailment\\nbailments\\nbailor\\nbailors\\nbailout\\nbailouts\\nbails\\nbailsman\\nbailsmen\\nbairn\\nbairnish\\nbairnlier\\nbairnliest\\nbairnly\\nbairns\\nbait\\nbaited\\nbaiter\\nbaiters\\nbaith\\nbaiting\\nbaits\\nbaiza\\nbaizas\\nbaize\\nbaizes\\nbake\\nbaked\\nbakemeat\\nbakemeats\\nbaker\\nbakeries\\nbakers\\nbakery\\nbakes\\nbakeshop\\nbakeshops\\nbaking\\nbakings\\nbaklava\\nbaklavas\\nbaklawa\\nbaklawas\\nbakshish\\nbakshished\\nbakshishes\\nbakshishing\\nbal\\nbalance\\nbalanced\\nbalancer\\nbalancers\\nbalances\\nbalancing\\nbalas\\nbalases\\nbalata\\nbalatas\\nbalboa\\nbalboas\\nbalconies\\nbalcony\\nbald\\nbalded\\nbalder\\nbalderdash\\nbalderdashes\\nbaldest\\nbaldhead\\nbaldheads\\nbalding\\nbaldish\\nbaldly\\nbaldness\\nbaldnesses\\nbaldpate\\nbaldpates\\nbaldric\\nbaldrick\\nbaldricks\\nbaldrics\\nbalds\\nbale\\nbaled\\nbaleen\\nbaleens\\nbalefire\\nbalefires\\nbaleful\\nbaler\\nbalers\\nbales\\nbaling\\nbalisaur\\nbalisaurs\\nbalk\\nbalked\\nbalker\\nbalkers\\nbalkier\\nbalkiest\\nbalkily\\nbalking\\nbalkline\\nbalklines\\nbalks\\nbalky\\nball\\nballad\\nballade\\nballades\\nballadic\\nballadries\\nballadry\\nballads\\nballast\\nballasted\\nballasting\\nballasts\\nballed\\nballer\\nballerina\\nballerinas\\nballers\\nballet\\nballetic\\nballets\\nballing\\nballista\\nballistae\\nballistic\\nballistics\\nballon\\nballonet\\nballonets\\nballonne\\nballonnes\\nballons\\nballoon\\nballooned\\nballooning\\nballoonist\\nballoonists\\nballoons\\nballot\\nballoted\\nballoter\\nballoters\\nballoting\\nballots\\nballroom\\nballrooms\\nballs\\nbally\\nballyhoo\\nballyhooed\\nballyhooing\\nballyhoos\\nballyrag\\nballyragged\\nballyragging\\nballyrags\\nbalm\\nbalmier\\nbalmiest\\nbalmily\\nbalminess\\nbalminesses\\nbalmlike\\nbalmoral\\nbalmorals\\nbalms\\nbalmy\\nbalneal\\nbaloney\\nbaloneys\\nbals\\nbalsa\\nbalsam\\nbalsamed\\nbalsamic\\nbalsaming\\nbalsams\\nbalsas\\nbaltimore\\nbaluster\\nbalusters\\nbalustrade\\nbalustrades\\nbambini\\nbambino\\nbambinos\\nbamboo\\nbamboos\\nbamboozle\\nbamboozled\\nbamboozles\\nbamboozling\\nban\\nbanal\\nbanalities\\nbanality\\nbanally\\nbanana\\nbananas\\nbanausic\\nbanco\\nbancos\\nband\\nbandage\\nbandaged\\nbandager\\nbandagers\\nbandages\\nbandaging\\nbandana\\nbandanas\\nbandanna\\nbandannas\\nbandbox\\nbandboxes\\nbandeau\\nbandeaus\\nbandeaux\\nbanded\\nbander\\nbanderol\\nbanderols\\nbanders\\nbandied\\nbandies\\nbanding\\nbandit\\nbanditries\\nbanditry\\nbandits\\nbanditti\\nbandog\\nbandogs\\nbandora\\nbandoras\\nbandore\\nbandores\\nbands\\nbandsman\\nbandsmen\\nbandstand\\nbandstands\\nbandwagon\\nbandwagons\\nbandwidth\\nbandwidths\\nbandy\\nbandying\\nbane\\nbaned\\nbaneful\\nbanes\\nbang\\nbanged\\nbanger\\nbangers\\nbanging\\nbangkok\\nbangkoks\\nbangle\\nbangles\\nbangs\\nbangtail\\nbangtails\\nbani\\nbanian\\nbanians\\nbaning\\nbanish\\nbanished\\nbanisher\\nbanishers\\nbanishes\\nbanishing\\nbanishment\\nbanishments\\nbanister\\nbanisters\\nbanjo\\nbanjoes\\nbanjoist\\nbanjoists\\nbanjos\\nbank\\nbankable\\nbankbook\\nbankbooks\\nbanked\\nbanker\\nbankers\\nbanking\\nbankings\\nbanknote\\nbanknotes\\nbankroll\\nbankrolled\\nbankrolling\\nbankrolls\\nbankrupt\\nbankruptcies\\nbankruptcy\\nbankrupted\\nbankrupting\\nbankrupts\\nbanks\\nbanksia\\nbanksias\\nbankside\\nbanksides\\nbanned\\nbanner\\nbanneret\\nbannerets\\nbannerol\\nbannerols\\nbanners\\nbannet\\nbannets\\nbanning\\nbannock\\nbannocks\\nbanns\\nbanquet\\nbanqueted\\nbanqueting\\nbanquets\\nbans\\nbanshee\\nbanshees\\nbanshie\\nbanshies\\nbantam\\nbantams\\nbanter\\nbantered\\nbanterer\\nbanterers\\nbantering\\nbanters\\nbantling\\nbantlings\\nbanyan\\nbanyans\\nbanzai\\nbanzais\\nbaobab\\nbaobabs\\nbaptise\\nbaptised\\nbaptises\\nbaptisia\\nbaptisias\\nbaptising\\nbaptism\\nbaptismal\\nbaptisms\\nbaptist\\nbaptists\\nbaptize\\nbaptized\\nbaptizer\\nbaptizers\\nbaptizes\\nbaptizing\\nbar\\nbarathea\\nbaratheas\\nbarb\\nbarbal\\nbarbarian\\nbarbarians\\nbarbaric\\nbarbarity\\nbarbarous\\nbarbarously\\nbarbasco\\nbarbascos\\nbarbate\\nbarbe\\nbarbecue\\nbarbecued\\nbarbecues\\nbarbecuing\\nbarbed\\nbarbel\\nbarbell\\nbarbells\\nbarbels\\nbarber\\nbarbered\\nbarbering\\nbarberries\\nbarberry\\nbarbers\\nbarbes\\nbarbet\\nbarbets\\nbarbette\\nbarbettes\\nbarbican\\nbarbicans\\nbarbicel\\nbarbicels\\nbarbing\\nbarbital\\nbarbitals\\nbarbiturate\\nbarbiturates\\nbarbless\\nbarbs\\nbarbule\\nbarbules\\nbarbut\\nbarbuts\\nbarbwire\\nbarbwires\\nbard\\nbarde\\nbarded\\nbardes\\nbardic\\nbarding\\nbards\\nbare\\nbareback\\nbarebacked\\nbared\\nbarefaced\\nbarefit\\nbarefoot\\nbarefooted\\nbarege\\nbareges\\nbarehead\\nbareheaded\\nbarely\\nbareness\\nbarenesses\\nbarer\\nbares\\nbaresark\\nbaresarks\\nbarest\\nbarf\\nbarfed\\nbarfing\\nbarflies\\nbarfly\\nbarfs\\nbargain\\nbargained\\nbargaining\\nbargains\\nbarge\\nbarged\\nbargee\\nbargees\\nbargeman\\nbargemen\\nbarges\\nbarghest\\nbarghests\\nbarging\\nbarguest\\nbarguests\\nbarhop\\nbarhopped\\nbarhopping\\nbarhops\\nbaric\\nbarilla\\nbarillas\\nbaring\\nbarite\\nbarites\\nbaritone\\nbaritones\\nbarium\\nbariums\\nbark\\nbarked\\nbarkeep\\nbarkeeps\\nbarker\\nbarkers\\nbarkier\\nbarkiest\\nbarking\\nbarkless\\nbarks\\nbarky\\nbarleduc\\nbarleducs\\nbarless\\nbarley\\nbarleys\\nbarlow\\nbarlows\\nbarm\\nbarmaid\\nbarmaids\\nbarman\\nbarmen\\nbarmie\\nbarmier\\nbarmiest\\nbarms\\nbarmy\\nbarn\\nbarnacle\\nbarnacles\\nbarnier\\nbarniest\\nbarns\\nbarnstorm\\nbarnstorms\\nbarny\\nbarnyard\\nbarnyards\\nbarogram\\nbarograms\\nbarometer\\nbarometers\\nbarometric\\nbarometrical\\nbaron\\nbaronage\\nbaronages\\nbaroness\\nbaronesses\\nbaronet\\nbaronetcies\\nbaronetcy\\nbaronets\\nbarong\\nbarongs\\nbaronial\\nbaronies\\nbaronne\\nbaronnes\\nbarons\\nbarony\\nbaroque\\nbaroques\\nbarouche\\nbarouches\\nbarque\\nbarques\\nbarrable\\nbarrack\\nbarracked\\nbarracking\\nbarracks\\nbarracuda\\nbarracudas\\nbarrage\\nbarraged\\nbarrages\\nbarraging\\nbarranca\\nbarrancas\\nbarranco\\nbarrancos\\nbarrater\\nbarraters\\nbarrator\\nbarrators\\nbarratries\\nbarratry\\nbarre\\nbarred\\nbarrel\\nbarreled\\nbarreling\\nbarrelled\\nbarrelling\\nbarrels\\nbarren\\nbarrener\\nbarrenest\\nbarrenly\\nbarrenness\\nbarrennesses\\nbarrens\\nbarres\\nbarret\\nbarretor\\nbarretors\\nbarretries\\nbarretry\\nbarrets\\nbarrette\\nbarrettes\\nbarricade\\nbarricades\\nbarrier\\nbarriers\\nbarring\\nbarrio\\nbarrios\\nbarrister\\nbarristers\\nbarroom\\nbarrooms\\nbarrow\\nbarrows\\nbars\\nbarstool\\nbarstools\\nbartend\\nbartended\\nbartender\\nbartenders\\nbartending\\nbartends\\nbarter\\nbartered\\nbarterer\\nbarterers\\nbartering\\nbarters\\nbartholomew\\nbartisan\\nbartisans\\nbartizan\\nbartizans\\nbarware\\nbarwares\\nbarye\\nbaryes\\nbaryon\\nbaryonic\\nbaryons\\nbaryta\\nbarytas\\nbaryte\\nbarytes\\nbarytic\\nbarytone\\nbarytones\\nbas\\nbasal\\nbasally\\nbasalt\\nbasaltes\\nbasaltic\\nbasalts\\nbascule\\nbascules\\nbase\\nbaseball\\nbaseballs\\nbaseborn\\nbased\\nbaseless\\nbaseline\\nbaselines\\nbasely\\nbaseman\\nbasemen\\nbasement\\nbasements\\nbaseness\\nbasenesses\\nbasenji\\nbasenjis\\nbaser\\nbases\\nbasest\\nbash\\nbashaw\\nbashaws\\nbashed\\nbasher\\nbashers\\nbashes\\nbashful\\nbashfulness\\nbashfulnesses\\nbashing\\nbashlyk\\nbashlyks\\nbasic\\nbasically\\nbasicities\\nbasicity\\nbasics\\nbasidia\\nbasidial\\nbasidium\\nbasified\\nbasifier\\nbasifiers\\nbasifies\\nbasify\\nbasifying\\nbasil\\nbasilar\\nbasilary\\nbasilic\\nbasilica\\nbasilicae\\nbasilicas\\nbasilisk\\nbasilisks\\nbasils\\nbasin\\nbasinal\\nbasined\\nbasinet\\nbasinets\\nbasing\\nbasins\\nbasion\\nbasions\\nbasis\\nbask\\nbasked\\nbasket\\nbasketball\\nbasketballs\\nbasketful\\nbasketfuls\\nbasketries\\nbasketry\\nbaskets\\nbasking\\nbasks\\nbasophil\\nbasophils\\nbasque\\nbasques\\nbass\\nbasses\\nbasset\\nbasseted\\nbasseting\\nbassets\\nbassetted\\nbassetting\\nbassi\\nbassinet\\nbassinets\\nbassist\\nbassists\\nbassly\\nbassness\\nbassnesses\\nbasso\\nbassoon\\nbassoons\\nbassos\\nbasswood\\nbasswoods\\nbassy\\nbast\\nbastard\\nbastardies\\nbastardize\\nbastardized\\nbastardizes\\nbastardizing\\nbastards\\nbastardy\\nbaste\\nbasted\\nbaster\\nbasters\\nbastes\\nbastile\\nbastiles\\nbastille\\nbastilles\\nbasting\\nbastings\\nbastion\\nbastioned\\nbastions\\nbasts\\nbat\\nbatboy\\nbatboys\\nbatch\\nbatched\\nbatcher\\nbatchers\\nbatches\\nbatching\\nbate\\nbateau\\nbateaux\\nbated\\nbates\\nbatfish\\nbatfishes\\nbatfowl\\nbatfowled\\nbatfowling\\nbatfowls\\nbath\\nbathe\\nbathed\\nbather\\nbathers\\nbathes\\nbathetic\\nbathing\\nbathless\\nbathos\\nbathoses\\nbathrobe\\nbathrobes\\nbathroom\\nbathrooms\\nbaths\\nbathtub\\nbathtubs\\nbathyal\\nbatik\\nbatiks\\nbating\\nbatiste\\nbatistes\\nbatlike\\nbatman\\nbatmen\\nbaton\\nbatons\\nbats\\nbatsman\\nbatsmen\\nbatt\\nbattalia\\nbattalias\\nbattalion\\nbattalions\\nbatteau\\nbatteaux\\nbatted\\nbatten\\nbattened\\nbattener\\nbatteners\\nbattening\\nbattens\\nbatter\\nbattered\\nbatterie\\nbatteries\\nbattering\\nbatters\\nbattery\\nbattier\\nbattiest\\nbattik\\nbattiks\\nbatting\\nbattings\\nbattle\\nbattled\\nbattlefield\\nbattlefields\\nbattlement\\nbattlements\\nbattler\\nbattlers\\nbattles\\nbattleship\\nbattleships\\nbattling\\nbatts\\nbattu\\nbattue\\nbattues\\nbatty\\nbatwing\\nbaubee\\nbaubees\\nbauble\\nbaubles\\nbaud\\nbaudekin\\nbaudekins\\nbaudrons\\nbaudronses\\nbauds\\nbaulk\\nbaulked\\nbaulkier\\nbaulkiest\\nbaulking\\nbaulks\\nbaulky\\nbausond\\nbauxite\\nbauxites\\nbauxitic\\nbawbee\\nbawbees\\nbawcock\\nbawcocks\\nbawd\\nbawdier\\nbawdies\\nbawdiest\\nbawdily\\nbawdiness\\nbawdinesses\\nbawdric\\nbawdrics\\nbawdries\\nbawdry\\nbawds\\nbawdy\\nbawl\\nbawled\\nbawler\\nbawlers\\nbawling\\nbawls\\nbawsunt\\nbawtie\\nbawties\\nbawty\\nbay\\nbayadeer\\nbayadeers\\nbayadere\\nbayaderes\\nbayamo\\nbayamos\\nbayard\\nbayards\\nbayberries\\nbayberry\\nbayed\\nbaying\\nbayonet\\nbayoneted\\nbayoneting\\nbayonets\\nbayonetted\\nbayonetting\\nbayou\\nbayous\\nbays\\nbaywood\\nbaywoods\\nbazaar\\nbazaars\\nbazar\\nbazars\\nbazooka\\nbazookas\\nbdellium\\nbdelliums\\nbe\\nbeach\\nbeachboy\\nbeachboys\\nbeachcomber\\nbeachcombers\\nbeached\\nbeaches\\nbeachhead\\nbeachheads\\nbeachier\\nbeachiest\\nbeaching\\nbeachy\\nbeacon\\nbeaconed\\nbeaconing\\nbeacons\\nbead\\nbeaded\\nbeadier\\nbeadiest\\nbeadily\\nbeading\\nbeadings\\nbeadle\\nbeadles\\nbeadlike\\nbeadman\\nbeadmen\\nbeadroll\\nbeadrolls\\nbeads\\nbeadsman\\nbeadsmen\\nbeadwork\\nbeadworks\\nbeady\\nbeagle\\nbeagles\\nbeak\\nbeaked\\nbeaker\\nbeakers\\nbeakier\\nbeakiest\\nbeakless\\nbeaklike\\nbeaks\\nbeaky\\nbeam\\nbeamed\\nbeamier\\nbeamiest\\nbeamily\\nbeaming\\nbeamish\\nbeamless\\nbeamlike\\nbeams\\nbeamy\\nbean\\nbeanbag\\nbeanbags\\nbeanball\\nbeanballs\\nbeaned\\nbeaneries\\nbeanery\\nbeanie\\nbeanies\\nbeaning\\nbeanlike\\nbeano\\nbeanos\\nbeanpole\\nbeanpoles\\nbeans\\nbear\\nbearable\\nbearably\\nbearcat\\nbearcats\\nbeard\\nbearded\\nbearding\\nbeardless\\nbeards\\nbearer\\nbearers\\nbearing\\nbearings\\nbearish\\nbearlike\\nbears\\nbearskin\\nbearskins\\nbeast\\nbeastie\\nbeasties\\nbeastlier\\nbeastliest\\nbeastliness\\nbeastlinesses\\nbeastly\\nbeasts\\nbeat\\nbeatable\\nbeaten\\nbeater\\nbeaters\\nbeatific\\nbeatification\\nbeatifications\\nbeatified\\nbeatifies\\nbeatify\\nbeatifying\\nbeating\\nbeatings\\nbeatless\\nbeatnik\\nbeatniks\\nbeats\\nbeau\\nbeauish\\nbeaus\\nbeaut\\nbeauteously\\nbeauties\\nbeautification\\nbeautifications\\nbeautified\\nbeautifies\\nbeautiful\\nbeautifully\\nbeautify\\nbeautifying\\nbeauts\\nbeauty\\nbeaux\\nbeaver\\nbeavered\\nbeavering\\nbeavers\\nbebeeru\\nbebeerus\\nbeblood\\nbeblooded\\nbeblooding\\nbebloods\\nbebop\\nbebopper\\nbeboppers\\nbebops\\nbecalm\\nbecalmed\\nbecalming\\nbecalms\\nbecame\\nbecap\\nbecapped\\nbecapping\\nbecaps\\nbecarpet\\nbecarpeted\\nbecarpeting\\nbecarpets\\nbecause\\nbechalk\\nbechalked\\nbechalking\\nbechalks\\nbechamel\\nbechamels\\nbechance\\nbechanced\\nbechances\\nbechancing\\nbecharm\\nbecharmed\\nbecharming\\nbecharms\\nbeck\\nbecked\\nbecket\\nbeckets\\nbecking\\nbeckon\\nbeckoned\\nbeckoner\\nbeckoners\\nbeckoning\\nbeckons\\nbecks\\nbeclamor\\nbeclamored\\nbeclamoring\\nbeclamors\\nbeclasp\\nbeclasped\\nbeclasping\\nbeclasps\\nbecloak\\nbecloaked\\nbecloaking\\nbecloaks\\nbeclog\\nbeclogged\\nbeclogging\\nbeclogs\\nbeclothe\\nbeclothed\\nbeclothes\\nbeclothing\\nbecloud\\nbeclouded\\nbeclouding\\nbeclouds\\nbeclown\\nbeclowned\\nbeclowning\\nbeclowns\\nbecome\\nbecomes\\nbecoming\\nbecomingly\\nbecomings\\nbecoward\\nbecowarded\\nbecowarding\\nbecowards\\nbecrawl\\nbecrawled\\nbecrawling\\nbecrawls\\nbecrime\\nbecrimed\\nbecrimes\\nbecriming\\nbecrowd\\nbecrowded\\nbecrowding\\nbecrowds\\nbecrust\\nbecrusted\\nbecrusting\\nbecrusts\\nbecudgel\\nbecudgeled\\nbecudgeling\\nbecudgelled\\nbecudgelling\\nbecudgels\\nbecurse\\nbecursed\\nbecurses\\nbecursing\\nbecurst\\nbed\\nbedabble\\nbedabbled\\nbedabbles\\nbedabbling\\nbedamn\\nbedamned\\nbedamning\\nbedamns\\nbedarken\\nbedarkened\\nbedarkening\\nbedarkens\\nbedaub\\nbedaubed\\nbedaubing\\nbedaubs\\nbedazzle\\nbedazzled\\nbedazzles\\nbedazzling\\nbedbug\\nbedbugs\\nbedchair\\nbedchairs\\nbedclothes\\nbedcover\\nbedcovers\\nbedded\\nbedder\\nbedders\\nbedding\\nbeddings\\nbedeafen\\nbedeafened\\nbedeafening\\nbedeafens\\nbedeck\\nbedecked\\nbedecking\\nbedecks\\nbedel\\nbedell\\nbedells\\nbedels\\nbedeman\\nbedemen\\nbedesman\\nbedesmen\\nbedevil\\nbedeviled\\nbedeviling\\nbedevilled\\nbedevilling\\nbedevils\\nbedew\\nbedewed\\nbedewing\\nbedews\\nbedfast\\nbedframe\\nbedframes\\nbedgown\\nbedgowns\\nbediaper\\nbediapered\\nbediapering\\nbediapers\\nbedight\\nbedighted\\nbedighting\\nbedights\\nbedim\\nbedimmed\\nbedimming\\nbedimple\\nbedimpled\\nbedimples\\nbedimpling\\nbedims\\nbedirtied\\nbedirties\\nbedirty\\nbedirtying\\nbedizen\\nbedizened\\nbedizening\\nbedizens\\nbedlam\\nbedlamp\\nbedlamps\\nbedlams\\nbedless\\nbedlike\\nbedmaker\\nbedmakers\\nbedmate\\nbedmates\\nbedotted\\nbedouin\\nbedouins\\nbedpan\\nbedpans\\nbedplate\\nbedplates\\nbedpost\\nbedposts\\nbedquilt\\nbedquilts\\nbedraggled\\nbedrail\\nbedrails\\nbedrape\\nbedraped\\nbedrapes\\nbedraping\\nbedrench\\nbedrenched\\nbedrenches\\nbedrenching\\nbedrid\\nbedridden\\nbedrivel\\nbedriveled\\nbedriveling\\nbedrivelled\\nbedrivelling\\nbedrivels\\nbedrock\\nbedrocks\\nbedroll\\nbedrolls\\nbedroom\\nbedrooms\\nbedrug\\nbedrugged\\nbedrugging\\nbedrugs\\nbeds\\nbedside\\nbedsides\\nbedsonia\\nbedsonias\\nbedsore\\nbedsores\\nbedspread\\nbedspreads\\nbedstand\\nbedstands\\nbedstead\\nbedsteads\\nbedstraw\\nbedstraws\\nbedtick\\nbedticks\\nbedtime\\nbedtimes\\nbeduin\\nbeduins\\nbedumb\\nbedumbed\\nbedumbing\\nbedumbs\\nbedunce\\nbedunced\\nbedunces\\nbeduncing\\nbedward\\nbedwards\\nbedwarf\\nbedwarfed\\nbedwarfing\\nbedwarfs\\nbee\\nbeebee\\nbeebees\\nbeebread\\nbeebreads\\nbeech\\nbeechen\\nbeeches\\nbeechier\\nbeechiest\\nbeechnut\\nbeechnuts\\nbeechy\\nbeef\\nbeefcake\\nbeefcakes\\nbeefed\\nbeefier\\nbeefiest\\nbeefily\\nbeefing\\nbeefless\\nbeefs\\nbeefsteak\\nbeefsteaks\\nbeefwood\\nbeefwoods\\nbeefy\\nbeehive\\nbeehives\\nbeelike\\nbeeline\\nbeelines\\nbeelzebub\\nbeen\\nbeep\\nbeeped\\nbeeper\\nbeepers\\nbeeping\\nbeeps\\nbeer\\nbeerier\\nbeeriest\\nbeers\\nbeery\\nbees\\nbeeswax\\nbeeswaxes\\nbeeswing\\nbeeswings\\nbeet\\nbeetle\\nbeetled\\nbeetles\\nbeetling\\nbeetroot\\nbeetroots\\nbeets\\nbeeves\\nbefall\\nbefallen\\nbefalling\\nbefalls\\nbefell\\nbefinger\\nbefingered\\nbefingering\\nbefingers\\nbefit\\nbefits\\nbefitted\\nbefitting\\nbeflag\\nbeflagged\\nbeflagging\\nbeflags\\nbeflea\\nbefleaed\\nbefleaing\\nbefleas\\nbefleck\\nbeflecked\\nbeflecking\\nbeflecks\\nbeflower\\nbeflowered\\nbeflowering\\nbeflowers\\nbefog\\nbefogged\\nbefogging\\nbefogs\\nbefool\\nbefooled\\nbefooling\\nbefools\\nbefore\\nbeforehand\\nbefoul\\nbefouled\\nbefouler\\nbefoulers\\nbefouling\\nbefouls\\nbefret\\nbefrets\\nbefretted\\nbefretting\\nbefriend\\nbefriended\\nbefriending\\nbefriends\\nbefringe\\nbefringed\\nbefringes\\nbefringing\\nbefuddle\\nbefuddled\\nbefuddles\\nbefuddling\\nbeg\\nbegall\\nbegalled\\nbegalling\\nbegalls\\nbegan\\nbegat\\nbegaze\\nbegazed\\nbegazes\\nbegazing\\nbeget\\nbegets\\nbegetter\\nbegetters\\nbegetting\\nbeggar\\nbeggared\\nbeggaries\\nbeggaring\\nbeggarly\\nbeggars\\nbeggary\\nbegged\\nbegging\\nbegin\\nbeginner\\nbeginners\\nbeginning\\nbeginnings\\nbegins\\nbegird\\nbegirded\\nbegirding\\nbegirdle\\nbegirdled\\nbegirdles\\nbegirdling\\nbegirds\\nbegirt\\nbeglad\\nbegladded\\nbegladding\\nbeglads\\nbegloom\\nbegloomed\\nbeglooming\\nbeglooms\\nbegone\\nbegonia\\nbegonias\\nbegorah\\nbegorra\\nbegorrah\\nbegot\\nbegotten\\nbegrim\\nbegrime\\nbegrimed\\nbegrimes\\nbegriming\\nbegrimmed\\nbegrimming\\nbegrims\\nbegroan\\nbegroaned\\nbegroaning\\nbegroans\\nbegrudge\\nbegrudged\\nbegrudges\\nbegrudging\\nbegs\\nbeguile\\nbeguiled\\nbeguiler\\nbeguilers\\nbeguiles\\nbeguiling\\nbeguine\\nbeguines\\nbegulf\\nbegulfed\\nbegulfing\\nbegulfs\\nbegum\\nbegums\\nbegun\\nbehalf\\nbehalves\\nbehave\\nbehaved\\nbehaver\\nbehavers\\nbehaves\\nbehaving\\nbehavior\\nbehavioral\\nbehaviors\\nbehead\\nbeheaded\\nbeheading\\nbeheads\\nbeheld\\nbehemoth\\nbehemoths\\nbehest\\nbehests\\nbehind\\nbehinds\\nbehold\\nbeholden\\nbeholder\\nbeholders\\nbeholding\\nbeholds\\nbehoof\\nbehoove\\nbehooved\\nbehooves\\nbehooving\\nbehove\\nbehoved\\nbehoves\\nbehoving\\nbehowl\\nbehowled\\nbehowling\\nbehowls\\nbeige\\nbeiges\\nbeigy\\nbeing\\nbeings\\nbejewel\\nbejeweled\\nbejeweling\\nbejewelled\\nbejewelling\\nbejewels\\nbejumble\\nbejumbled\\nbejumbles\\nbejumbling\\nbekiss\\nbekissed\\nbekisses\\nbekissing\\nbeknight\\nbeknighted\\nbeknighting\\nbeknights\\nbeknot\\nbeknots\\nbeknotted\\nbeknotting\\nbel\\nbelabor\\nbelabored\\nbelaboring\\nbelabors\\nbelabour\\nbelaboured\\nbelabouring\\nbelabours\\nbelaced\\nbeladied\\nbeladies\\nbelady\\nbeladying\\nbelated\\nbelaud\\nbelauded\\nbelauding\\nbelauds\\nbelay\\nbelayed\\nbelaying\\nbelays\\nbelch\\nbelched\\nbelcher\\nbelchers\\nbelches\\nbelching\\nbeldam\\nbeldame\\nbeldames\\nbeldams\\nbeleaguer\\nbeleaguered\\nbeleaguering\\nbeleaguers\\nbeleap\\nbeleaped\\nbeleaping\\nbeleaps\\nbeleapt\\nbelfried\\nbelfries\\nbelfry\\nbelga\\nbelgas\\nbelie\\nbelied\\nbelief\\nbeliefs\\nbelier\\nbeliers\\nbelies\\nbelievable\\nbelievably\\nbelieve\\nbelieved\\nbeliever\\nbelievers\\nbelieves\\nbelieving\\nbelike\\nbeliquor\\nbeliquored\\nbeliquoring\\nbeliquors\\nbelittle\\nbelittled\\nbelittles\\nbelittling\\nbelive\\nbell\\nbelladonna\\nbelladonnas\\nbellbird\\nbellbirds\\nbellboy\\nbellboys\\nbelle\\nbelled\\nbelleek\\nbelleeks\\nbelles\\nbellhop\\nbellhops\\nbellicose\\nbellicosities\\nbellicosity\\nbellied\\nbellies\\nbelligerence\\nbelligerences\\nbelligerencies\\nbelligerency\\nbelligerent\\nbelligerents\\nbelling\\nbellman\\nbellmen\\nbellow\\nbellowed\\nbellower\\nbellowers\\nbellowing\\nbellows\\nbellpull\\nbellpulls\\nbells\\nbellwether\\nbellwethers\\nbellwort\\nbellworts\\nbelly\\nbellyache\\nbellyached\\nbellyaches\\nbellyaching\\nbellyful\\nbellyfuls\\nbellying\\nbelong\\nbelonged\\nbelonging\\nbelongings\\nbelongs\\nbeloved\\nbeloveds\\nbelow\\nbelows\\nbels\\nbelt\\nbelted\\nbelting\\nbeltings\\nbeltless\\nbeltline\\nbeltlines\\nbelts\\nbeltway\\nbeltways\\nbeluga\\nbelugas\\nbelying\\nbema\\nbemadam\\nbemadamed\\nbemadaming\\nbemadams\\nbemadden\\nbemaddened\\nbemaddening\\nbemaddens\\nbemas\\nbemata\\nbemean\\nbemeaned\\nbemeaning\\nbemeans\\nbemingle\\nbemingled\\nbemingles\\nbemingling\\nbemire\\nbemired\\nbemires\\nbemiring\\nbemist\\nbemisted\\nbemisting\\nbemists\\nbemix\\nbemixed\\nbemixes\\nbemixing\\nbemixt\\nbemoan\\nbemoaned\\nbemoaning\\nbemoans\\nbemock\\nbemocked\\nbemocking\\nbemocks\\nbemuddle\\nbemuddled\\nbemuddles\\nbemuddling\\nbemurmur\\nbemurmured\\nbemurmuring\\nbemurmurs\\nbemuse\\nbemused\\nbemuses\\nbemusing\\nbemuzzle\\nbemuzzled\\nbemuzzles\\nbemuzzling\\nben\\nbename\\nbenamed\\nbenames\\nbenaming\\nbench\\nbenched\\nbencher\\nbenchers\\nbenches\\nbenching\\nbend\\nbendable\\nbenday\\nbendayed\\nbendaying\\nbendays\\nbended\\nbendee\\nbendees\\nbender\\nbenders\\nbending\\nbends\\nbendways\\nbendwise\\nbendy\\nbendys\\nbene\\nbeneath\\nbenedick\\nbenedicks\\nbenedict\\nbenediction\\nbenedictions\\nbenedicts\\nbenefaction\\nbenefactions\\nbenefactor\\nbenefactors\\nbenefactress\\nbenefactresses\\nbenefic\\nbenefice\\nbeneficed\\nbeneficence\\nbeneficences\\nbeneficent\\nbenefices\\nbeneficial\\nbeneficially\\nbeneficiaries\\nbeneficiary\\nbeneficing\\nbenefit\\nbenefited\\nbenefiting\\nbenefits\\nbenefitted\\nbenefitting\\nbenempt\\nbenempted\\nbenes\\nbenevolence\\nbenevolences\\nbenevolent\\nbenign\\nbenignities\\nbenignity\\nbenignly\\nbenison\\nbenisons\\nbenjamin\\nbenjamins\\nbenne\\nbennes\\nbennet\\nbennets\\nbenni\\nbennies\\nbennis\\nbenny\\nbens\\nbent\\nbenthal\\nbenthic\\nbenthos\\nbenthoses\\nbents\\nbentwood\\nbentwoods\\nbenumb\\nbenumbed\\nbenumbing\\nbenumbs\\nbenzal\\nbenzene\\nbenzenes\\nbenzidin\\nbenzidins\\nbenzin\\nbenzine\\nbenzines\\nbenzins\\nbenzoate\\nbenzoates\\nbenzoic\\nbenzoin\\nbenzoins\\nbenzol\\nbenzole\\nbenzoles\\nbenzols\\nbenzoyl\\nbenzoyls\\nbenzyl\\nbenzylic\\nbenzyls\\nbepaint\\nbepainted\\nbepainting\\nbepaints\\nbepimple\\nbepimpled\\nbepimples\\nbepimpling\\nbequeath\\nbequeathed\\nbequeathing\\nbequeaths\\nbequest\\nbequests\\nberake\\nberaked\\nberakes\\nberaking\\nberascal\\nberascaled\\nberascaling\\nberascals\\nberate\\nberated\\nberates\\nberating\\nberberin\\nberberins\\nberceuse\\nberceuses\\nbereave\\nbereaved\\nbereavement\\nbereavements\\nbereaver\\nbereavers\\nbereaves\\nbereaving\\nbereft\\nberet\\nberets\\nberetta\\nberettas\\nberg\\nbergamot\\nbergamots\\nbergs\\nberhyme\\nberhymed\\nberhymes\\nberhyming\\nberiber\\nberibers\\nberime\\nberimed\\nberimes\\nberiming\\nberinged\\nberlin\\nberline\\nberlines\\nberlins\\nberm\\nberme\\nbermes\\nberms\\nbernicle\\nbernicles\\nbernstein\\nberobed\\nberouged\\nberretta\\nberrettas\\nberried\\nberries\\nberry\\nberrying\\nberseem\\nberseems\\nberserk\\nberserks\\nberth\\nbertha\\nberthas\\nberthed\\nberthing\\nberths\\nberyl\\nberyline\\nberyls\\nbescorch\\nbescorched\\nbescorches\\nbescorching\\nbescour\\nbescoured\\nbescouring\\nbescours\\nbescreen\\nbescreened\\nbescreening\\nbescreens\\nbeseech\\nbeseeched\\nbeseeches\\nbeseeching\\nbeseem\\nbeseemed\\nbeseeming\\nbeseems\\nbeset\\nbesets\\nbesetter\\nbesetters\\nbesetting\\nbeshadow\\nbeshadowed\\nbeshadowing\\nbeshadows\\nbeshame\\nbeshamed\\nbeshames\\nbeshaming\\nbeshiver\\nbeshivered\\nbeshivering\\nbeshivers\\nbeshout\\nbeshouted\\nbeshouting\\nbeshouts\\nbeshrew\\nbeshrewed\\nbeshrewing\\nbeshrews\\nbeshroud\\nbeshrouded\\nbeshrouding\\nbeshrouds\\nbeside\\nbesides\\nbesiege\\nbesieged\\nbesieger\\nbesiegers\\nbesieges\\nbesieging\\nbeslaved\\nbeslime\\nbeslimed\\nbeslimes\\nbesliming\\nbesmear\\nbesmeared\\nbesmearing\\nbesmears\\nbesmile\\nbesmiled\\nbesmiles\\nbesmiling\\nbesmirch\\nbesmirched\\nbesmirches\\nbesmirching\\nbesmoke\\nbesmoked\\nbesmokes\\nbesmoking\\nbesmooth\\nbesmoothed\\nbesmoothing\\nbesmooths\\nbesmudge\\nbesmudged\\nbesmudges\\nbesmudging\\nbesmut\\nbesmuts\\nbesmutted\\nbesmutting\\nbesnow\\nbesnowed\\nbesnowing\\nbesnows\\nbesom\\nbesoms\\nbesoothe\\nbesoothed\\nbesoothes\\nbesoothing\\nbesot\\nbesots\\nbesotted\\nbesotting\\nbesought\\nbespake\\nbespeak\\nbespeaking\\nbespeaks\\nbespoke\\nbespoken\\nbespouse\\nbespoused\\nbespouses\\nbespousing\\nbespread\\nbespreading\\nbespreads\\nbesprent\\nbest\\nbestead\\nbesteaded\\nbesteading\\nbesteads\\nbested\\nbestial\\nbestialities\\nbestiality\\nbestiaries\\nbestiary\\nbesting\\nbestir\\nbestirred\\nbestirring\\nbestirs\\nbestow\\nbestowal\\nbestowals\\nbestowed\\nbestowing\\nbestows\\nbestrew\\nbestrewed\\nbestrewing\\nbestrewn\\nbestrews\\nbestrid\\nbestridden\\nbestride\\nbestrides\\nbestriding\\nbestrode\\nbestrow\\nbestrowed\\nbestrowing\\nbestrown\\nbestrows\\nbests\\nbestud\\nbestudded\\nbestudding\\nbestuds\\nbeswarm\\nbeswarmed\\nbeswarming\\nbeswarms\\nbet\\nbeta\\nbetaine\\nbetaines\\nbetake\\nbetaken\\nbetakes\\nbetaking\\nbetas\\nbetatron\\nbetatrons\\nbetatter\\nbetattered\\nbetattering\\nbetatters\\nbetaxed\\nbetel\\nbetelnut\\nbetelnuts\\nbetels\\nbeth\\nbethank\\nbethanked\\nbethanking\\nbethanks\\nbethel\\nbethels\\nbethink\\nbethinking\\nbethinks\\nbethorn\\nbethorned\\nbethorning\\nbethorns\\nbethought\\nbeths\\nbethump\\nbethumped\\nbethumping\\nbethumps\\nbetide\\nbetided\\nbetides\\nbetiding\\nbetime\\nbetimes\\nbetise\\nbetises\\nbetoken\\nbetokened\\nbetokening\\nbetokens\\nbeton\\nbetonies\\nbetons\\nbetony\\nbetook\\nbetray\\nbetrayal\\nbetrayals\\nbetrayed\\nbetrayer\\nbetrayers\\nbetraying\\nbetrays\\nbetroth\\nbetrothal\\nbetrothals\\nbetrothed\\nbetrotheds\\nbetrothing\\nbetroths\\nbets\\nbetta\\nbettas\\nbetted\\nbetter\\nbettered\\nbettering\\nbetterment\\nbetterments\\nbetters\\nbetting\\nbettor\\nbettors\\nbetween\\nbetwixt\\nbeuncled\\nbevatron\\nbevatrons\\nbevel\\nbeveled\\nbeveler\\nbevelers\\nbeveling\\nbevelled\\nbeveller\\nbevellers\\nbevelling\\nbevels\\nbeverage\\nbeverages\\nbevies\\nbevomit\\nbevomited\\nbevomiting\\nbevomits\\nbevor\\nbevors\\nbevy\\nbewail\\nbewailed\\nbewailer\\nbewailers\\nbewailing\\nbewails\\nbeware\\nbewared\\nbewares\\nbewaring\\nbewearied\\nbewearies\\nbeweary\\nbewearying\\nbeweep\\nbeweeping\\nbeweeps\\nbewept\\nbewig\\nbewigged\\nbewigging\\nbewigs\\nbewilder\\nbewildered\\nbewildering\\nbewilderment\\nbewilderments\\nbewilders\\nbewinged\\nbewitch\\nbewitched\\nbewitches\\nbewitching\\nbeworm\\nbewormed\\nbeworming\\nbeworms\\nbeworried\\nbeworries\\nbeworry\\nbeworrying\\nbewrap\\nbewrapped\\nbewrapping\\nbewraps\\nbewrapt\\nbewray\\nbewrayed\\nbewrayer\\nbewrayers\\nbewraying\\nbewrays\\nbey\\nbeylic\\nbeylics\\nbeylik\\nbeyliks\\nbeyond\\nbeyonds\\nbeys\\nbezant\\nbezants\\nbezel\\nbezels\\nbezil\\nbezils\\nbezique\\nbeziques\\nbezoar\\nbezoars\\nbezzant\\nbezzants\\nbhakta\\nbhaktas\\nbhakti\\nbhaktis\\nbhang\\nbhangs\\nbheestie\\nbheesties\\nbheesty\\nbhistie\\nbhisties\\nbhoot\\nbhoots\\nbhut\\nbhuts\\nbi\\nbiacetyl\\nbiacetyls\\nbialy\\nbialys\\nbiannual\\nbiannually\\nbias\\nbiased\\nbiasedly\\nbiases\\nbiasing\\nbiasness\\nbiasnesses\\nbiassed\\nbiasses\\nbiassing\\nbiathlon\\nbiathlons\\nbiaxal\\nbiaxial\\nbib\\nbibasic\\nbibasilar\\nbibb\\nbibbed\\nbibber\\nbibberies\\nbibbers\\nbibbery\\nbibbing\\nbibbs\\nbibcock\\nbibcocks\\nbibelot\\nbibelots\\nbible\\nbibles\\nbibless\\nbiblical\\nbiblike\\nbibliographer\\nbibliographers\\nbibliographic\\nbibliographical\\nbibliographies\\nbibliography\\nbibs\\nbibulous\\nbicameral\\nbicarb\\nbicarbonate\\nbicarbonates\\nbicarbs\\nbice\\nbicentennial\\nbicentennials\\nbiceps\\nbicepses\\nbices\\nbichrome\\nbicker\\nbickered\\nbickerer\\nbickerers\\nbickering\\nbickers\\nbicolor\\nbicolored\\nbicolors\\nbicolour\\nbicolours\\nbiconcave\\nbiconcavities\\nbiconcavity\\nbiconvex\\nbiconvexities\\nbiconvexity\\nbicorn\\nbicorne\\nbicornes\\nbicron\\nbicrons\\nbicultural\\nbicuspid\\nbicuspids\\nbicycle\\nbicycled\\nbicycler\\nbicyclers\\nbicycles\\nbicyclic\\nbicycling\\nbid\\nbidarka\\nbidarkas\\nbidarkee\\nbidarkees\\nbiddable\\nbiddably\\nbidden\\nbidder\\nbidders\\nbiddies\\nbidding\\nbiddings\\nbiddy\\nbide\\nbided\\nbidental\\nbider\\nbiders\\nbides\\nbidet\\nbidets\\nbiding\\nbidirectional\\nbids\\nbield\\nbielded\\nbielding\\nbields\\nbiennia\\nbiennial\\nbiennially\\nbiennials\\nbiennium\\nbienniums\\nbier\\nbiers\\nbifacial\\nbiff\\nbiffed\\nbiffies\\nbiffin\\nbiffing\\nbiffins\\nbiffs\\nbiffy\\nbifid\\nbifidities\\nbifidity\\nbifidly\\nbifilar\\nbiflex\\nbifocal\\nbifocals\\nbifold\\nbiforate\\nbiforked\\nbiform\\nbiformed\\nbifunctional\\nbig\\nbigamies\\nbigamist\\nbigamists\\nbigamous\\nbigamy\\nbigaroon\\nbigaroons\\nbigeminies\\nbigeminy\\nbigeye\\nbigeyes\\nbigger\\nbiggest\\nbiggety\\nbiggie\\nbiggies\\nbiggin\\nbigging\\nbiggings\\nbiggins\\nbiggish\\nbiggity\\nbighead\\nbigheads\\nbighorn\\nbighorns\\nbight\\nbighted\\nbighting\\nbights\\nbigly\\nbigmouth\\nbigmouths\\nbigness\\nbignesses\\nbignonia\\nbignonias\\nbigot\\nbigoted\\nbigotries\\nbigotry\\nbigots\\nbigwig\\nbigwigs\\nbihourly\\nbijou\\nbijous\\nbijoux\\nbijugate\\nbijugous\\nbike\\nbiked\\nbiker\\nbikers\\nbikes\\nbikeway\\nbikeways\\nbiking\\nbikini\\nbikinied\\nbikinis\\nbilabial\\nbilabials\\nbilander\\nbilanders\\nbilateral\\nbilaterally\\nbilberries\\nbilberry\\nbilbo\\nbilboa\\nbilboas\\nbilboes\\nbilbos\\nbile\\nbiles\\nbilge\\nbilged\\nbilges\\nbilgier\\nbilgiest\\nbilging\\nbilgy\\nbiliary\\nbilinear\\nbilingual\\nbilious\\nbiliousness\\nbiliousnesses\\nbilirubin\\nbilk\\nbilked\\nbilker\\nbilkers\\nbilking\\nbilks\\nbill\\nbillable\\nbillboard\\nbillboards\\nbillbug\\nbillbugs\\nbilled\\nbiller\\nbillers\\nbillet\\nbilleted\\nbilleter\\nbilleters\\nbilleting\\nbillets\\nbillfish\\nbillfishes\\nbillfold\\nbillfolds\\nbillhead\\nbillheads\\nbillhook\\nbillhooks\\nbilliard\\nbilliards\\nbillie\\nbillies\\nbilling\\nbillings\\nbillion\\nbillions\\nbillionth\\nbillionths\\nbillon\\nbillons\\nbillow\\nbillowed\\nbillowier\\nbillowiest\\nbillowing\\nbillows\\nbillowy\\nbills\\nbilly\\nbillycan\\nbillycans\\nbilobate\\nbilobed\\nbilsted\\nbilsteds\\nbiltong\\nbiltongs\\nbima\\nbimah\\nbimahs\\nbimanous\\nbimanual\\nbimas\\nbimensal\\nbimester\\nbimesters\\nbimetal\\nbimetallic\\nbimetals\\nbimethyl\\nbimethyls\\nbimodal\\nbin\\nbinal\\nbinaries\\nbinary\\nbinate\\nbinately\\nbinational\\nbinationalism\\nbinationalisms\\nbinaural\\nbind\\nbindable\\nbinder\\nbinderies\\nbinders\\nbindery\\nbinding\\nbindings\\nbindle\\nbindles\\nbinds\\nbindweed\\nbindweeds\\nbine\\nbines\\nbinge\\nbinges\\nbingo\\nbingos\\nbinit\\nbinits\\nbinnacle\\nbinnacles\\nbinned\\nbinning\\nbinocle\\nbinocles\\nbinocular\\nbinocularly\\nbinoculars\\nbinomial\\nbinomials\\nbins\\nbint\\nbints\\nbio\\nbioassay\\nbioassayed\\nbioassaying\\nbioassays\\nbiochemical\\nbiochemicals\\nbiochemist\\nbiochemistries\\nbiochemistry\\nbiochemists\\nbiocidal\\nbiocide\\nbiocides\\nbioclean\\nbiocycle\\nbiocycles\\nbiodegradabilities\\nbiodegradability\\nbiodegradable\\nbiodegradation\\nbiodegradations\\nbiodegrade\\nbiodegraded\\nbiodegrades\\nbiodegrading\\nbiogen\\nbiogenic\\nbiogenies\\nbiogens\\nbiogeny\\nbiographer\\nbiographers\\nbiographic\\nbiographical\\nbiographies\\nbiography\\nbioherm\\nbioherms\\nbiologic\\nbiological\\nbiologics\\nbiologies\\nbiologist\\nbiologists\\nbiology\\nbiolyses\\nbiolysis\\nbiolytic\\nbiomass\\nbiomasses\\nbiome\\nbiomedical\\nbiomes\\nbiometries\\nbiometry\\nbionic\\nbionics\\nbionomic\\nbionomies\\nbionomy\\nbiont\\nbiontic\\nbionts\\nbiophysical\\nbiophysicist\\nbiophysicists\\nbiophysics\\nbioplasm\\nbioplasms\\nbiopsic\\nbiopsies\\nbiopsy\\nbioptic\\nbios\\nbioscope\\nbioscopes\\nbioscopies\\nbioscopy\\nbiota\\nbiotas\\nbiotic\\nbiotical\\nbiotics\\nbiotin\\nbiotins\\nbiotite\\nbiotites\\nbiotitic\\nbiotope\\nbiotopes\\nbiotron\\nbiotrons\\nbiotype\\nbiotypes\\nbiotypic\\nbiovular\\nbipack\\nbipacks\\nbiparental\\nbiparous\\nbiparted\\nbipartisan\\nbiparty\\nbiped\\nbipedal\\nbipeds\\nbiphenyl\\nbiphenyls\\nbiplane\\nbiplanes\\nbipod\\nbipods\\nbipolar\\nbiracial\\nbiracially\\nbiradial\\nbiramose\\nbiramous\\nbirch\\nbirched\\nbirchen\\nbirches\\nbirching\\nbird\\nbirdbath\\nbirdbaths\\nbirdbrained\\nbirdcage\\nbirdcages\\nbirdcall\\nbirdcalls\\nbirded\\nbirder\\nbirders\\nbirdfarm\\nbirdfarms\\nbirdhouse\\nbirdhouses\\nbirdie\\nbirdied\\nbirdieing\\nbirdies\\nbirding\\nbirdlike\\nbirdlime\\nbirdlimed\\nbirdlimes\\nbirdliming\\nbirdman\\nbirdmen\\nbirds\\nbirdseed\\nbirdseeds\\nbirdseye\\nbirdseyes\\nbireme\\nbiremes\\nbiretta\\nbirettas\\nbirk\\nbirkie\\nbirkies\\nbirks\\nbirl\\nbirle\\nbirled\\nbirler\\nbirlers\\nbirles\\nbirling\\nbirlings\\nbirls\\nbirr\\nbirred\\nbirretta\\nbirrettas\\nbirring\\nbirrs\\nbirse\\nbirses\\nbirth\\nbirthdate\\nbirthdates\\nbirthday\\nbirthdays\\nbirthed\\nbirthing\\nbirthplace\\nbirthplaces\\nbirthrate\\nbirthrates\\nbirths\\nbis\\nbiscuit\\nbiscuits\\nbise\\nbisect\\nbisected\\nbisecting\\nbisection\\nbisections\\nbisector\\nbisectors\\nbisects\\nbises\\nbisexual\\nbisexuals\\nbishop\\nbishoped\\nbishoping\\nbishops\\nbisk\\nbisks\\nbismuth\\nbismuths\\nbisnaga\\nbisnagas\\nbison\\nbisons\\nbisque\\nbisques\\nbistate\\nbister\\nbistered\\nbisters\\nbistort\\nbistorts\\nbistouries\\nbistoury\\nbistre\\nbistred\\nbistres\\nbistro\\nbistroic\\nbistros\\nbit\\nbitable\\nbitch\\nbitched\\nbitcheries\\nbitchery\\nbitches\\nbitchier\\nbitchiest\\nbitchily\\nbitching\\nbitchy\\nbite\\nbiteable\\nbiter\\nbiters\\nbites\\nbitewing\\nbitewings\\nbiting\\nbitingly\\nbits\\nbitstock\\nbitstocks\\nbitsy\\nbitt\\nbitted\\nbitten\\nbitter\\nbittered\\nbitterer\\nbitterest\\nbittering\\nbitterly\\nbittern\\nbitterness\\nbitternesses\\nbitterns\\nbitters\\nbittier\\nbittiest\\nbitting\\nbittings\\nbittock\\nbittocks\\nbitts\\nbitty\\nbitumen\\nbitumens\\nbituminous\\nbivalent\\nbivalents\\nbivalve\\nbivalved\\nbivalves\\nbivinyl\\nbivinyls\\nbivouac\\nbivouacked\\nbivouacking\\nbivouacks\\nbivouacs\\nbiweeklies\\nbiweekly\\nbiyearly\\nbizarre\\nbizarrely\\nbizarres\\nbize\\nbizes\\nbiznaga\\nbiznagas\\nbizonal\\nbizone\\nbizones\\nblab\\nblabbed\\nblabber\\nblabbered\\nblabbering\\nblabbers\\nblabbing\\nblabby\\nblabs\\nblack\\nblackball\\nblackballs\\nblackberries\\nblackberry\\nblackbird\\nblackbirds\\nblackboard\\nblackboards\\nblackboy\\nblackboys\\nblackcap\\nblackcaps\\nblacked\\nblacken\\nblackened\\nblackening\\nblackens\\nblacker\\nblackest\\nblackfin\\nblackfins\\nblackflies\\nblackfly\\nblackguard\\nblackguards\\nblackgum\\nblackgums\\nblackhead\\nblackheads\\nblacking\\nblackings\\nblackish\\nblackjack\\nblackjacks\\nblackleg\\nblacklegs\\nblacklist\\nblacklisted\\nblacklisting\\nblacklists\\nblackly\\nblackmail\\nblackmailed\\nblackmailer\\nblackmailers\\nblackmailing\\nblackmails\\nblackness\\nblacknesses\\nblackout\\nblackouts\\nblacks\\nblacksmith\\nblacksmiths\\nblacktop\\nblacktopped\\nblacktopping\\nblacktops\\nbladder\\nbladders\\nbladdery\\nblade\\nbladed\\nblades\\nblae\\nblah\\nblahs\\nblain\\nblains\\nblamable\\nblamably\\nblame\\nblamed\\nblameful\\nblameless\\nblamelessly\\nblamer\\nblamers\\nblames\\nblameworthiness\\nblameworthinesses\\nblameworthy\\nblaming\\nblanch\\nblanched\\nblancher\\nblanchers\\nblanches\\nblanching\\nbland\\nblander\\nblandest\\nblandish\\nblandished\\nblandishes\\nblandishing\\nblandishment\\nblandishments\\nblandly\\nblandness\\nblandnesses\\nblank\\nblanked\\nblanker\\nblankest\\nblanket\\nblanketed\\nblanketing\\nblankets\\nblanking\\nblankly\\nblankness\\nblanknesses\\nblanks\\nblare\\nblared\\nblares\\nblaring\\nblarney\\nblarneyed\\nblarneying\\nblarneys\\nblase\\nblaspheme\\nblasphemed\\nblasphemes\\nblasphemies\\nblaspheming\\nblasphemous\\nblasphemy\\nblast\\nblasted\\nblastema\\nblastemas\\nblastemata\\nblaster\\nblasters\\nblastie\\nblastier\\nblasties\\nblastiest\\nblasting\\nblastings\\nblastoff\\nblastoffs\\nblastoma\\nblastomas\\nblastomata\\nblasts\\nblastula\\nblastulae\\nblastulas\\nblasty\\nblat\\nblatancies\\nblatancy\\nblatant\\nblate\\nblather\\nblathered\\nblathering\\nblathers\\nblats\\nblatted\\nblatter\\nblattered\\nblattering\\nblatters\\nblatting\\nblaubok\\nblauboks\\nblaw\\nblawed\\nblawing\\nblawn\\nblaws\\nblaze\\nblazed\\nblazer\\nblazers\\nblazes\\nblazing\\nblazon\\nblazoned\\nblazoner\\nblazoners\\nblazoning\\nblazonries\\nblazonry\\nblazons\\nbleach\\nbleached\\nbleacher\\nbleachers\\nbleaches\\nbleaching\\nbleak\\nbleaker\\nbleakest\\nbleakish\\nbleakly\\nbleakness\\nbleaknesses\\nbleaks\\nblear\\nbleared\\nblearier\\nbleariest\\nblearily\\nblearing\\nblears\\nbleary\\nbleat\\nbleated\\nbleater\\nbleaters\\nbleating\\nbleats\\nbleb\\nblebby\\nblebs\\nbled\\nbleed\\nbleeder\\nbleeders\\nbleeding\\nbleedings\\nbleeds\\nblellum\\nblellums\\nblemish\\nblemished\\nblemishes\\nblemishing\\nblench\\nblenched\\nblencher\\nblenchers\\nblenches\\nblenching\\nblend\\nblende\\nblended\\nblender\\nblenders\\nblendes\\nblending\\nblends\\nblennies\\nblenny\\nblent\\nbleomycin\\nblesbok\\nblesboks\\nblesbuck\\nblesbucks\\nbless\\nblessed\\nblesseder\\nblessedest\\nblessedness\\nblessednesses\\nblesser\\nblessers\\nblesses\\nblessing\\nblessings\\nblest\\nblet\\nblether\\nblethered\\nblethering\\nblethers\\nblets\\nblew\\nblight\\nblighted\\nblighter\\nblighters\\nblighties\\nblighting\\nblights\\nblighty\\nblimey\\nblimp\\nblimpish\\nblimps\\nblimy\\nblin\\nblind\\nblindage\\nblindages\\nblinded\\nblinder\\nblinders\\nblindest\\nblindfold\\nblindfolded\\nblindfolding\\nblindfolds\\nblinding\\nblindly\\nblindness\\nblindnesses\\nblinds\\nblini\\nblinis\\nblink\\nblinkard\\nblinkards\\nblinked\\nblinker\\nblinkered\\nblinkering\\nblinkers\\nblinking\\nblinks\\nblintz\\nblintze\\nblintzes\\nblip\\nblipped\\nblipping\\nblips\\nbliss\\nblisses\\nblissful\\nblissfully\\nblister\\nblistered\\nblistering\\nblisters\\nblistery\\nblite\\nblites\\nblithe\\nblithely\\nblither\\nblithered\\nblithering\\nblithers\\nblithesome\\nblithest\\nblitz\\nblitzed\\nblitzes\\nblitzing\\nblizzard\\nblizzards\\nbloat\\nbloated\\nbloater\\nbloaters\\nbloating\\nbloats\\nblob\\nblobbed\\nblobbing\\nblobs\\nbloc\\nblock\\nblockade\\nblockaded\\nblockades\\nblockading\\nblockage\\nblockages\\nblocked\\nblocker\\nblockers\\nblockier\\nblockiest\\nblocking\\nblockish\\nblocks\\nblocky\\nblocs\\nbloke\\nblokes\\nblond\\nblonde\\nblonder\\nblondes\\nblondest\\nblondish\\nblonds\\nblood\\nbloodcurdling\\nblooded\\nbloodfin\\nbloodfins\\nbloodhound\\nbloodhounds\\nbloodied\\nbloodier\\nbloodies\\nbloodiest\\nbloodily\\nblooding\\nbloodings\\nbloodless\\nbloodmobile\\nbloodmobiles\\nbloodred\\nbloods\\nbloodshed\\nbloodsheds\\nbloodstain\\nbloodstained\\nbloodstains\\nbloodsucker\\nbloodsuckers\\nbloodsucking\\nbloodsuckings\\nbloodthirstily\\nbloodthirstiness\\nbloodthirstinesses\\nbloodthirsty\\nbloody\\nbloodying\\nbloom\\nbloomed\\nbloomer\\nbloomeries\\nbloomers\\nbloomery\\nbloomier\\nbloomiest\\nblooming\\nblooms\\nbloomy\\nbloop\\nblooped\\nblooper\\nbloopers\\nblooping\\nbloops\\nblossom\\nblossomed\\nblossoming\\nblossoms\\nblossomy\\nblot\\nblotch\\nblotched\\nblotches\\nblotchier\\nblotchiest\\nblotching\\nblotchy\\nblotless\\nblots\\nblotted\\nblotter\\nblotters\\nblottier\\nblottiest\\nblotting\\nblotto\\nblotty\\nblouse\\nbloused\\nblouses\\nblousier\\nblousiest\\nblousily\\nblousing\\nblouson\\nblousons\\nblousy\\nblow\\nblowback\\nblowbacks\\nblowby\\nblowbys\\nblower\\nblowers\\nblowfish\\nblowfishes\\nblowflies\\nblowfly\\nblowgun\\nblowguns\\nblowhard\\nblowhards\\nblowhole\\nblowholes\\nblowier\\nblowiest\\nblowing\\nblown\\nblowoff\\nblowoffs\\nblowout\\nblowouts\\nblowpipe\\nblowpipes\\nblows\\nblowsed\\nblowsier\\nblowsiest\\nblowsily\\nblowsy\\nblowtorch\\nblowtorches\\nblowtube\\nblowtubes\\nblowup\\nblowups\\nblowy\\nblowzed\\nblowzier\\nblowziest\\nblowzily\\nblowzy\\nblubber\\nblubbered\\nblubbering\\nblubbers\\nblubbery\\nblucher\\nbluchers\\nbludgeon\\nbludgeoned\\nbludgeoning\\nbludgeons\\nblue\\nblueball\\nblueballs\\nbluebell\\nbluebells\\nblueberries\\nblueberry\\nbluebill\\nbluebills\\nbluebird\\nbluebirds\\nbluebook\\nbluebooks\\nbluecap\\nbluecaps\\nbluecoat\\nbluecoats\\nblued\\nbluefin\\nbluefins\\nbluefish\\nbluefishes\\nbluegill\\nbluegills\\nbluegum\\nbluegums\\nbluehead\\nblueheads\\nblueing\\nblueings\\nblueish\\nbluejack\\nbluejacks\\nbluejay\\nbluejays\\nblueline\\nbluelines\\nbluely\\nblueness\\nbluenesses\\nbluenose\\nbluenoses\\nblueprint\\nblueprinted\\nblueprinting\\nblueprints\\nbluer\\nblues\\nbluesman\\nbluesmen\\nbluest\\nbluestem\\nbluestems\\nbluesy\\nbluet\\nbluets\\nblueweed\\nblueweeds\\nbluewood\\nbluewoods\\nbluey\\nblueys\\nbluff\\nbluffed\\nbluffer\\nbluffers\\nbluffest\\nbluffing\\nbluffly\\nbluffs\\nbluing\\nbluings\\nbluish\\nblume\\nblumed\\nblumes\\nbluming\\nblunder\\nblunderbuss\\nblunderbusses\\nblundered\\nblundering\\nblunders\\nblunge\\nblunged\\nblunger\\nblungers\\nblunges\\nblunging\\nblunt\\nblunted\\nblunter\\nbluntest\\nblunting\\nbluntly\\nbluntness\\nbluntnesses\\nblunts\\nblur\\nblurb\\nblurbs\\nblurred\\nblurrier\\nblurriest\\nblurrily\\nblurring\\nblurry\\nblurs\\nblurt\\nblurted\\nblurter\\nblurters\\nblurting\\nblurts\\nblush\\nblushed\\nblusher\\nblushers\\nblushes\\nblushful\\nblushing\\nbluster\\nblustered\\nblustering\\nblusters\\nblustery\\nblype\\nblypes\\nbo\\nboa\\nboar\\nboard\\nboarded\\nboarder\\nboarders\\nboarding\\nboardings\\nboardman\\nboardmen\\nboards\\nboardwalk\\nboardwalks\\nboarfish\\nboarfishes\\nboarish\\nboars\\nboart\\nboarts\\nboas\\nboast\\nboasted\\nboaster\\nboasters\\nboastful\\nboastfully\\nboasting\\nboasts\\nboat\\nboatable\\nboatbill\\nboatbills\\nboated\\nboatel\\nboatels\\nboater\\nboaters\\nboating\\nboatings\\nboatload\\nboatloads\\nboatman\\nboatmen\\nboats\\nboatsman\\nboatsmen\\nboatswain\\nboatswains\\nboatyard\\nboatyards\\nbob\\nbobbed\\nbobber\\nbobberies\\nbobbers\\nbobbery\\nbobbies\\nbobbin\\nbobbinet\\nbobbinets\\nbobbing\\nbobbins\\nbobble\\nbobbled\\nbobbles\\nbobbling\\nbobby\\nbobcat\\nbobcats\\nbobeche\\nbobeches\\nbobolink\\nbobolinks\\nbobs\\nbobsled\\nbobsleded\\nbobsleding\\nbobsleds\\nbobstay\\nbobstays\\nbobtail\\nbobtailed\\nbobtailing\\nbobtails\\nbobwhite\\nbobwhites\\nbocaccio\\nbocaccios\\nbocce\\nbocces\\nbocci\\nboccia\\nboccias\\nboccie\\nboccies\\nboccis\\nboche\\nboches\\nbock\\nbocks\\nbod\\nbode\\nboded\\nbodega\\nbodegas\\nbodement\\nbodements\\nbodes\\nbodice\\nbodices\\nbodied\\nbodies\\nbodiless\\nbodily\\nboding\\nbodingly\\nbodings\\nbodkin\\nbodkins\\nbods\\nbody\\nbodying\\nbodysurf\\nbodysurfed\\nbodysurfing\\nbodysurfs\\nbodywork\\nbodyworks\\nboehmite\\nboehmites\\nboff\\nboffin\\nboffins\\nboffo\\nboffola\\nboffolas\\nboffos\\nboffs\\nbog\\nbogan\\nbogans\\nbogbean\\nbogbeans\\nbogey\\nbogeyed\\nbogeying\\nbogeyman\\nbogeymen\\nbogeys\\nbogged\\nboggier\\nboggiest\\nbogging\\nboggish\\nboggle\\nboggled\\nboggler\\nbogglers\\nboggles\\nboggling\\nboggy\\nbogie\\nbogies\\nbogle\\nbogles\\nbogs\\nbogus\\nbogwood\\nbogwoods\\nbogy\\nbogyism\\nbogyisms\\nbogyman\\nbogymen\\nbogys\\nbohea\\nboheas\\nbohemia\\nbohemian\\nbohemians\\nbohemias\\nbohunk\\nbohunks\\nboil\\nboilable\\nboiled\\nboiler\\nboilers\\nboiling\\nboils\\nboisterous\\nboisterously\\nboite\\nboites\\nbola\\nbolar\\nbolas\\nbolases\\nbold\\nbolder\\nboldest\\nboldface\\nboldfaced\\nboldfaces\\nboldfacing\\nboldly\\nboldness\\nboldnesses\\nbole\\nbolero\\nboleros\\nboles\\nbolete\\nboletes\\nboleti\\nboletus\\nboletuses\\nbolide\\nbolides\\nbolivar\\nbolivares\\nbolivars\\nbolivia\\nbolivias\\nboll\\nbollard\\nbollards\\nbolled\\nbolling\\nbollix\\nbollixed\\nbollixes\\nbollixing\\nbollox\\nbolloxed\\nbolloxes\\nbolloxing\\nbolls\\nbollworm\\nbollworms\\nbolo\\nbologna\\nbolognas\\nboloney\\nboloneys\\nbolos\\nbolshevik\\nbolson\\nbolsons\\nbolster\\nbolstered\\nbolstering\\nbolsters\\nbolt\\nbolted\\nbolter\\nbolters\\nbolthead\\nboltheads\\nbolting\\nboltonia\\nboltonias\\nboltrope\\nboltropes\\nbolts\\nbolus\\nboluses\\nbomb\\nbombard\\nbombarded\\nbombardier\\nbombardiers\\nbombarding\\nbombardment\\nbombardments\\nbombards\\nbombast\\nbombastic\\nbombasts\\nbombe\\nbombed\\nbomber\\nbombers\\nbombes\\nbombing\\nbombload\\nbombloads\\nbombproof\\nbombs\\nbombshell\\nbombshells\\nbombycid\\nbombycids\\nbombyx\\nbombyxes\\nbonaci\\nbonacis\\nbonanza\\nbonanzas\\nbonbon\\nbonbons\\nbond\\nbondable\\nbondage\\nbondages\\nbonded\\nbonder\\nbonders\\nbondholder\\nbondholders\\nbonding\\nbondmaid\\nbondmaids\\nbondman\\nbondmen\\nbonds\\nbondsman\\nbondsmen\\nbonduc\\nbonducs\\nbondwoman\\nbondwomen\\nbone\\nboned\\nbonefish\\nbonefishes\\nbonehead\\nboneheads\\nboneless\\nboner\\nboners\\nbones\\nboneset\\nbonesets\\nboney\\nboneyard\\nboneyards\\nbonfire\\nbonfires\\nbong\\nbonged\\nbonging\\nbongo\\nbongoes\\nbongoist\\nbongoists\\nbongos\\nbongs\\nbonhomie\\nbonhomies\\nbonier\\nboniest\\nboniface\\nbonifaces\\nboniness\\nboninesses\\nboning\\nbonita\\nbonitas\\nbonito\\nbonitoes\\nbonitos\\nbonkers\\nbonne\\nbonnes\\nbonnet\\nbonneted\\nbonneting\\nbonnets\\nbonnie\\nbonnier\\nbonniest\\nbonnily\\nbonnock\\nbonnocks\\nbonny\\nbonsai\\nbonspell\\nbonspells\\nbonspiel\\nbonspiels\\nbontebok\\nbonteboks\\nbonus\\nbonuses\\nbony\\nbonze\\nbonzer\\nbonzes\\nboo\\nboob\\nboobies\\nbooboo\\nbooboos\\nboobs\\nbooby\\nboodle\\nboodled\\nboodler\\nboodlers\\nboodles\\nboodling\\nbooed\\nbooger\\nboogers\\nboogie\\nboogies\\nboogyman\\nboogymen\\nboohoo\\nboohooed\\nboohooing\\nboohoos\\nbooing\\nbook\\nbookcase\\nbookcases\\nbooked\\nbookend\\nbookends\\nbooker\\nbookers\\nbookie\\nbookies\\nbooking\\nbookings\\nbookish\\nbookkeeper\\nbookkeepers\\nbookkeeping\\nbookkeepings\\nbooklet\\nbooklets\\nbooklore\\nbooklores\\nbookmaker\\nbookmakers\\nbookmaking\\nbookmakings\\nbookman\\nbookmark\\nbookmarks\\nbookmen\\nbookrack\\nbookracks\\nbookrest\\nbookrests\\nbooks\\nbookseller\\nbooksellers\\nbookshelf\\nbookshelfs\\nbookshop\\nbookshops\\nbookstore\\nbookstores\\nbookworm\\nbookworms\\nboom\\nboomed\\nboomer\\nboomerang\\nboomerangs\\nboomers\\nboomier\\nboomiest\\nbooming\\nboomkin\\nboomkins\\nboomlet\\nboomlets\\nbooms\\nboomtown\\nboomtowns\\nboomy\\nboon\\nboondocks\\nboonies\\nboons\\nboor\\nboorish\\nboors\\nboos\\nboost\\nboosted\\nbooster\\nboosters\\nboosting\\nboosts\\nboot\\nbooted\\nbootee\\nbootees\\nbooteries\\nbootery\\nbooth\\nbooths\\nbootie\\nbooties\\nbooting\\nbootjack\\nbootjacks\\nbootlace\\nbootlaces\\nbootleg\\nbootlegged\\nbootlegger\\nbootleggers\\nbootlegging\\nbootlegs\\nbootless\\nbootlick\\nbootlicked\\nbootlicking\\nbootlicks\\nboots\\nbooty\\nbooze\\nboozed\\nboozer\\nboozers\\nboozes\\nboozier\\nbooziest\\nboozily\\nboozing\\nboozy\\nbop\\nbopped\\nbopper\\nboppers\\nbopping\\nbops\\nbora\\nboraces\\nboracic\\nboracite\\nboracites\\nborage\\nborages\\nborane\\nboranes\\nboras\\nborate\\nborated\\nborates\\nborax\\nboraxes\\nborazon\\nborazons\\nbordel\\nbordello\\nbordellos\\nbordels\\nborder\\nbordered\\nborderer\\nborderers\\nbordering\\nborderline\\nborders\\nbordure\\nbordures\\nbore\\nboreal\\nborecole\\nborecoles\\nbored\\nboredom\\nboredoms\\nborer\\nborers\\nbores\\nboric\\nboride\\nborides\\nboring\\nboringly\\nborings\\nborn\\nborne\\nborneol\\nborneols\\nbornite\\nbornites\\nboron\\nboronic\\nborons\\nborough\\nboroughs\\nborrow\\nborrowed\\nborrower\\nborrowers\\nborrowing\\nborrows\\nborsch\\nborsches\\nborscht\\nborschts\\nborstal\\nborstals\\nbort\\nborts\\nborty\\nbortz\\nbortzes\\nborzoi\\nborzois\\nbos\\nboscage\\nboscages\\nboschbok\\nboschboks\\nbosh\\nboshbok\\nboshboks\\nboshes\\nboshvark\\nboshvarks\\nbosk\\nboskage\\nboskages\\nbosker\\nbosket\\nboskets\\nboskier\\nboskiest\\nbosks\\nbosky\\nbosom\\nbosomed\\nbosoming\\nbosoms\\nbosomy\\nboson\\nbosons\\nbosque\\nbosques\\nbosquet\\nbosquets\\nboss\\nbossdom\\nbossdoms\\nbossed\\nbosses\\nbossier\\nbossies\\nbossiest\\nbossily\\nbossing\\nbossism\\nbossisms\\nbossy\\nboston\\nbostons\\nbosun\\nbosuns\\nbot\\nbotanic\\nbotanical\\nbotanies\\nbotanise\\nbotanised\\nbotanises\\nbotanising\\nbotanist\\nbotanists\\nbotanize\\nbotanized\\nbotanizes\\nbotanizing\\nbotany\\nbotch\\nbotched\\nbotcher\\nbotcheries\\nbotchers\\nbotchery\\nbotches\\nbotchier\\nbotchiest\\nbotchily\\nbotching\\nbotchy\\nbotel\\nbotels\\nbotflies\\nbotfly\\nboth\\nbother\\nbothered\\nbothering\\nbothers\\nbothersome\\nbotonee\\nbotonnee\\nbotryoid\\nbotryose\\nbots\\nbott\\nbottle\\nbottled\\nbottleneck\\nbottlenecks\\nbottler\\nbottlers\\nbottles\\nbottling\\nbottom\\nbottomed\\nbottomer\\nbottomers\\nbottoming\\nbottomless\\nbottomries\\nbottomry\\nbottoms\\nbotts\\nbotulin\\nbotulins\\nbotulism\\nbotulisms\\nboucle\\nboucles\\nboudoir\\nboudoirs\\nbouffant\\nbouffants\\nbouffe\\nbouffes\\nbough\\nboughed\\nboughpot\\nboughpots\\nboughs\\nbought\\nboughten\\nbougie\\nbougies\\nbouillon\\nbouillons\\nboulder\\nboulders\\nbouldery\\nboule\\nboules\\nboulle\\nboulles\\nbounce\\nbounced\\nbouncer\\nbouncers\\nbounces\\nbouncier\\nbounciest\\nbouncily\\nbouncing\\nbouncy\\nbound\\nboundaries\\nboundary\\nbounded\\nbounden\\nbounder\\nbounders\\nbounding\\nboundless\\nboundlessness\\nboundlessnesses\\nbounds\\nbounteous\\nbounteously\\nbountied\\nbounties\\nbountiful\\nbountifully\\nbounty\\nbouquet\\nbouquets\\nbourbon\\nbourbons\\nbourdon\\nbourdons\\nbourg\\nbourgeois\\nbourgeoisie\\nbourgeoisies\\nbourgeon\\nbourgeoned\\nbourgeoning\\nbourgeons\\nbourgs\\nbourn\\nbourne\\nbournes\\nbourns\\nbourree\\nbourrees\\nbourse\\nbourses\\nbourtree\\nbourtrees\\nbouse\\nboused\\nbouses\\nbousing\\nbousouki\\nbousoukia\\nbousoukis\\nbousy\\nbout\\nboutique\\nboutiques\\nbouts\\nbouzouki\\nbouzoukia\\nbouzoukis\\nbovid\\nbovids\\nbovine\\nbovinely\\nbovines\\nbovinities\\nbovinity\\nbow\\nbowed\\nbowel\\nboweled\\nboweling\\nbowelled\\nbowelling\\nbowels\\nbower\\nbowered\\nboweries\\nbowering\\nbowers\\nbowery\\nbowfin\\nbowfins\\nbowfront\\nbowhead\\nbowheads\\nbowing\\nbowingly\\nbowings\\nbowknot\\nbowknots\\nbowl\\nbowlder\\nbowlders\\nbowled\\nbowleg\\nbowlegs\\nbowler\\nbowlers\\nbowless\\nbowlful\\nbowlfuls\\nbowlike\\nbowline\\nbowlines\\nbowling\\nbowlings\\nbowllike\\nbowls\\nbowman\\nbowmen\\nbowpot\\nbowpots\\nbows\\nbowse\\nbowsed\\nbowses\\nbowshot\\nbowshots\\nbowsing\\nbowsprit\\nbowsprits\\nbowwow\\nbowwows\\nbowyer\\nbowyers\\nbox\\nboxberries\\nboxberry\\nboxcar\\nboxcars\\nboxed\\nboxer\\nboxers\\nboxes\\nboxfish\\nboxfishes\\nboxful\\nboxfuls\\nboxhaul\\nboxhauled\\nboxhauling\\nboxhauls\\nboxier\\nboxiest\\nboxiness\\nboxinesses\\nboxing\\nboxings\\nboxlike\\nboxthorn\\nboxthorns\\nboxwood\\nboxwoods\\nboxy\\nboy\\nboyar\\nboyard\\nboyards\\nboyarism\\nboyarisms\\nboyars\\nboycott\\nboycotted\\nboycotting\\nboycotts\\nboyhood\\nboyhoods\\nboyish\\nboyishly\\nboyishness\\nboyishnesses\\nboyla\\nboylas\\nboyo\\nboyos\\nboys\\nbozo\\nbozos\\nbra\\nbrabble\\nbrabbled\\nbrabbler\\nbrabblers\\nbrabbles\\nbrabbling\\nbrace\\nbraced\\nbracelet\\nbracelets\\nbracer\\nbracero\\nbraceros\\nbracers\\nbraces\\nbrach\\nbraches\\nbrachet\\nbrachets\\nbrachia\\nbrachial\\nbrachials\\nbrachium\\nbracing\\nbracings\\nbracken\\nbrackens\\nbracket\\nbracketed\\nbracketing\\nbrackets\\nbrackish\\nbract\\nbracteal\\nbracted\\nbractlet\\nbractlets\\nbracts\\nbrad\\nbradawl\\nbradawls\\nbradded\\nbradding\\nbradoon\\nbradoons\\nbrads\\nbrae\\nbraes\\nbrag\\nbraggart\\nbraggarts\\nbragged\\nbragger\\nbraggers\\nbraggest\\nbraggier\\nbraggiest\\nbragging\\nbraggy\\nbrags\\nbrahma\\nbrahmas\\nbraid\\nbraided\\nbraider\\nbraiders\\nbraiding\\nbraidings\\nbraids\\nbrail\\nbrailed\\nbrailing\\nbraille\\nbrailled\\nbrailles\\nbrailling\\nbrails\\nbrain\\nbrained\\nbrainier\\nbrainiest\\nbrainily\\nbraining\\nbrainish\\nbrainless\\nbrainpan\\nbrainpans\\nbrains\\nbrainstorm\\nbrainstorms\\nbrainy\\nbraise\\nbraised\\nbraises\\nbraising\\nbraize\\nbraizes\\nbrake\\nbrakeage\\nbrakeages\\nbraked\\nbrakeman\\nbrakemen\\nbrakes\\nbrakier\\nbrakiest\\nbraking\\nbraky\\nbramble\\nbrambled\\nbrambles\\nbramblier\\nbrambliest\\nbrambling\\nbrambly\\nbran\\nbranch\\nbranched\\nbranches\\nbranchia\\nbranchiae\\nbranchier\\nbranchiest\\nbranching\\nbranchy\\nbrand\\nbranded\\nbrander\\nbranders\\nbrandied\\nbrandies\\nbranding\\nbrandish\\nbrandished\\nbrandishes\\nbrandishing\\nbrands\\nbrandy\\nbrandying\\nbrank\\nbranks\\nbranned\\nbranner\\nbranners\\nbrannier\\nbranniest\\nbranning\\nbranny\\nbrans\\nbrant\\nbrantail\\nbrantails\\nbrants\\nbras\\nbrash\\nbrasher\\nbrashes\\nbrashest\\nbrashier\\nbrashiest\\nbrashly\\nbrashy\\nbrasier\\nbrasiers\\nbrasil\\nbrasilin\\nbrasilins\\nbrasils\\nbrass\\nbrassage\\nbrassages\\nbrassard\\nbrassards\\nbrassart\\nbrassarts\\nbrasses\\nbrassica\\nbrassicas\\nbrassie\\nbrassier\\nbrassiere\\nbrassieres\\nbrassies\\nbrassiest\\nbrassily\\nbrassish\\nbrassy\\nbrat\\nbrats\\nbrattice\\nbratticed\\nbrattices\\nbratticing\\nbrattier\\nbrattiest\\nbrattish\\nbrattle\\nbrattled\\nbrattles\\nbrattling\\nbratty\\nbraunite\\nbraunites\\nbrava\\nbravado\\nbravadoes\\nbravados\\nbravas\\nbrave\\nbraved\\nbravely\\nbraver\\nbraveries\\nbravers\\nbravery\\nbraves\\nbravest\\nbraving\\nbravo\\nbravoed\\nbravoes\\nbravoing\\nbravos\\nbravura\\nbravuras\\nbravure\\nbraw\\nbrawer\\nbrawest\\nbrawl\\nbrawled\\nbrawler\\nbrawlers\\nbrawlie\\nbrawlier\\nbrawliest\\nbrawling\\nbrawls\\nbrawly\\nbrawn\\nbrawnier\\nbrawniest\\nbrawnily\\nbrawns\\nbrawny\\nbraws\\nbraxies\\nbraxy\\nbray\\nbrayed\\nbrayer\\nbrayers\\nbraying\\nbrays\\nbraza\\nbrazas\\nbraze\\nbrazed\\nbrazen\\nbrazened\\nbrazening\\nbrazenly\\nbrazenness\\nbrazennesses\\nbrazens\\nbrazer\\nbrazers\\nbrazes\\nbrazier\\nbraziers\\nbrazil\\nbrazilin\\nbrazilins\\nbrazils\\nbrazing\\nbreach\\nbreached\\nbreacher\\nbreachers\\nbreaches\\nbreaching\\nbread\\nbreaded\\nbreading\\nbreadnut\\nbreadnuts\\nbreads\\nbreadth\\nbreadths\\nbreadwinner\\nbreadwinners\\nbreak\\nbreakable\\nbreakage\\nbreakages\\nbreakdown\\nbreakdowns\\nbreaker\\nbreakers\\nbreakfast\\nbreakfasted\\nbreakfasting\\nbreakfasts\\nbreaking\\nbreakings\\nbreakout\\nbreakouts\\nbreaks\\nbreakthrough\\nbreakthroughs\\nbreakup\\nbreakups\\nbream\\nbreamed\\nbreaming\\nbreams\\nbreast\\nbreastbone\\nbreastbones\\nbreasted\\nbreasting\\nbreasts\\nbreath\\nbreathe\\nbreathed\\nbreather\\nbreathers\\nbreathes\\nbreathier\\nbreathiest\\nbreathing\\nbreathless\\nbreathlessly\\nbreaths\\nbreathtaking\\nbreathy\\nbreccia\\nbreccial\\nbreccias\\nbrecham\\nbrechams\\nbrechan\\nbrechans\\nbred\\nbrede\\nbredes\\nbree\\nbreech\\nbreeched\\nbreeches\\nbreeching\\nbreed\\nbreeder\\nbreeders\\nbreeding\\nbreedings\\nbreeds\\nbreeks\\nbrees\\nbreeze\\nbreezed\\nbreezes\\nbreezier\\nbreeziest\\nbreezily\\nbreezing\\nbreezy\\nbregma\\nbregmata\\nbregmate\\nbrent\\nbrents\\nbrethren\\nbreve\\nbreves\\nbrevet\\nbrevetcies\\nbrevetcy\\nbreveted\\nbreveting\\nbrevets\\nbrevetted\\nbrevetting\\nbreviaries\\nbreviary\\nbrevier\\nbreviers\\nbrevities\\nbrevity\\nbrew\\nbrewage\\nbrewages\\nbrewed\\nbrewer\\nbreweries\\nbrewers\\nbrewery\\nbrewing\\nbrewings\\nbrewis\\nbrewises\\nbrews\\nbriar\\nbriard\\nbriards\\nbriars\\nbriary\\nbribable\\nbribe\\nbribed\\nbriber\\nbriberies\\nbribers\\nbribery\\nbribes\\nbribing\\nbrick\\nbrickbat\\nbrickbats\\nbricked\\nbrickier\\nbrickiest\\nbricking\\nbricklayer\\nbricklayers\\nbricklaying\\nbricklayings\\nbrickle\\nbricks\\nbricky\\nbricole\\nbricoles\\nbridal\\nbridally\\nbridals\\nbride\\nbridegroom\\nbridegrooms\\nbrides\\nbridesmaid\\nbridesmaids\\nbridge\\nbridgeable\\nbridgeables\\nbridged\\nbridges\\nbridging\\nbridgings\\nbridle\\nbridled\\nbridler\\nbridlers\\nbridles\\nbridling\\nbridoon\\nbridoons\\nbrie\\nbrief\\nbriefcase\\nbriefcases\\nbriefed\\nbriefer\\nbriefers\\nbriefest\\nbriefing\\nbriefings\\nbriefly\\nbriefness\\nbriefnesses\\nbriefs\\nbrier\\nbriers\\nbriery\\nbries\\nbrig\\nbrigade\\nbrigaded\\nbrigades\\nbrigadier\\nbrigadiers\\nbrigading\\nbrigand\\nbrigands\\nbright\\nbrighten\\nbrightened\\nbrightener\\nbrighteners\\nbrightening\\nbrightens\\nbrighter\\nbrightest\\nbrightly\\nbrightness\\nbrightnesses\\nbrights\\nbrigs\\nbrill\\nbrilliance\\nbrilliances\\nbrilliancies\\nbrilliancy\\nbrilliant\\nbrilliantly\\nbrills\\nbrim\\nbrimful\\nbrimfull\\nbrimless\\nbrimmed\\nbrimmer\\nbrimmers\\nbrimming\\nbrims\\nbrimstone\\nbrimstones\\nbrin\\nbrinded\\nbrindle\\nbrindled\\nbrindles\\nbrine\\nbrined\\nbriner\\nbriners\\nbrines\\nbring\\nbringer\\nbringers\\nbringing\\nbrings\\nbrinier\\nbrinies\\nbriniest\\nbrininess\\nbrininesses\\nbrining\\nbrinish\\nbrink\\nbrinks\\nbrins\\nbriny\\nbrio\\nbrioche\\nbrioches\\nbrionies\\nbriony\\nbrios\\nbriquet\\nbriquets\\nbriquetted\\nbriquetting\\nbrisance\\nbrisances\\nbrisant\\nbrisk\\nbrisked\\nbrisker\\nbriskest\\nbrisket\\nbriskets\\nbrisking\\nbriskly\\nbriskness\\nbrisknesses\\nbrisks\\nbrisling\\nbrislings\\nbristle\\nbristled\\nbristles\\nbristlier\\nbristliest\\nbristling\\nbristly\\nbristol\\nbristols\\nbrit\\nbritches\\nbrits\\nbritska\\nbritskas\\nbritt\\nbrittle\\nbrittled\\nbrittler\\nbrittles\\nbrittlest\\nbrittling\\nbritts\\nbritzka\\nbritzkas\\nbritzska\\nbritzskas\\nbroach\\nbroached\\nbroacher\\nbroachers\\nbroaches\\nbroaching\\nbroad\\nbroadax\\nbroadaxe\\nbroadaxes\\nbroadcast\\nbroadcasted\\nbroadcaster\\nbroadcasters\\nbroadcasting\\nbroadcasts\\nbroadcloth\\nbroadcloths\\nbroaden\\nbroadened\\nbroadening\\nbroadens\\nbroader\\nbroadest\\nbroadish\\nbroadloom\\nbroadlooms\\nbroadly\\nbroadness\\nbroadnesses\\nbroads\\nbroadside\\nbroadsides\\nbrocade\\nbrocaded\\nbrocades\\nbrocading\\nbrocatel\\nbrocatels\\nbroccoli\\nbroccolis\\nbroche\\nbrochure\\nbrochures\\nbrock\\nbrockage\\nbrockages\\nbrocket\\nbrockets\\nbrocks\\nbrocoli\\nbrocolis\\nbrogan\\nbrogans\\nbrogue\\nbrogueries\\nbroguery\\nbrogues\\nbroguish\\nbroider\\nbroidered\\nbroideries\\nbroidering\\nbroiders\\nbroidery\\nbroil\\nbroiled\\nbroiler\\nbroilers\\nbroiling\\nbroils\\nbrokage\\nbrokages\\nbroke\\nbroken\\nbrokenhearted\\nbrokenly\\nbroker\\nbrokerage\\nbrokerages\\nbrokers\\nbrollies\\nbrolly\\nbromal\\nbromals\\nbromate\\nbromated\\nbromates\\nbromating\\nbrome\\nbromelin\\nbromelins\\nbromes\\nbromic\\nbromid\\nbromide\\nbromides\\nbromidic\\nbromids\\nbromin\\nbromine\\nbromines\\nbromins\\nbromism\\nbromisms\\nbromo\\nbromos\\nbronc\\nbronchi\\nbronchia\\nbronchial\\nbronchitis\\nbroncho\\nbronchos\\nbronchospasm\\nbronchus\\nbronco\\nbroncos\\nbroncs\\nbronze\\nbronzed\\nbronzer\\nbronzers\\nbronzes\\nbronzier\\nbronziest\\nbronzing\\nbronzings\\nbronzy\\nbroo\\nbrooch\\nbrooches\\nbrood\\nbrooded\\nbrooder\\nbrooders\\nbroodier\\nbroodiest\\nbrooding\\nbroods\\nbroody\\nbrook\\nbrooked\\nbrooking\\nbrookite\\nbrookites\\nbrooklet\\nbrooklets\\nbrookline\\nbrooks\\nbroom\\nbroomed\\nbroomier\\nbroomiest\\nbrooming\\nbrooms\\nbroomstick\\nbroomsticks\\nbroomy\\nbroos\\nbrose\\nbroses\\nbrosy\\nbroth\\nbrothel\\nbrothels\\nbrother\\nbrothered\\nbrotherhood\\nbrotherhoods\\nbrothering\\nbrotherliness\\nbrotherlinesses\\nbrotherly\\nbrothers\\nbroths\\nbrothy\\nbrougham\\nbroughams\\nbrought\\nbrouhaha\\nbrouhahas\\nbrow\\nbrowbeat\\nbrowbeaten\\nbrowbeating\\nbrowbeats\\nbrowless\\nbrown\\nbrowned\\nbrowner\\nbrownest\\nbrownie\\nbrownier\\nbrownies\\nbrowniest\\nbrowning\\nbrownish\\nbrownout\\nbrownouts\\nbrowns\\nbrowny\\nbrows\\nbrowse\\nbrowsed\\nbrowser\\nbrowsers\\nbrowses\\nbrowsing\\nbrucella\\nbrucellae\\nbrucellas\\nbrucin\\nbrucine\\nbrucines\\nbrucins\\nbrugh\\nbrughs\\nbruin\\nbruins\\nbruise\\nbruised\\nbruiser\\nbruisers\\nbruises\\nbruising\\nbruit\\nbruited\\nbruiter\\nbruiters\\nbruiting\\nbruits\\nbrulot\\nbrulots\\nbrulyie\\nbrulyies\\nbrulzie\\nbrulzies\\nbrumal\\nbrumbies\\nbrumby\\nbrume\\nbrumes\\nbrumous\\nbrunch\\nbrunched\\nbrunches\\nbrunching\\nbrunet\\nbrunets\\nbrunette\\nbrunettes\\nbrunizem\\nbrunizems\\nbrunt\\nbrunts\\nbrush\\nbrushed\\nbrusher\\nbrushers\\nbrushes\\nbrushier\\nbrushiest\\nbrushing\\nbrushoff\\nbrushoffs\\nbrushup\\nbrushups\\nbrushy\\nbrusk\\nbrusker\\nbruskest\\nbrusque\\nbrusquely\\nbrusquer\\nbrusquest\\nbrut\\nbrutal\\nbrutalities\\nbrutality\\nbrutalize\\nbrutalized\\nbrutalizes\\nbrutalizing\\nbrutally\\nbrute\\nbruted\\nbrutely\\nbrutes\\nbrutified\\nbrutifies\\nbrutify\\nbrutifying\\nbruting\\nbrutish\\nbrutism\\nbrutisms\\nbruxism\\nbruxisms\\nbryologies\\nbryology\\nbryonies\\nbryony\\nbryozoan\\nbryozoans\\nbub\\nbubal\\nbubale\\nbubales\\nbubaline\\nbubalis\\nbubalises\\nbubals\\nbubbies\\nbubble\\nbubbled\\nbubbler\\nbubblers\\nbubbles\\nbubblier\\nbubblies\\nbubbliest\\nbubbling\\nbubbly\\nbubby\\nbubinga\\nbubingas\\nbubo\\nbuboed\\nbuboes\\nbubonic\\nbubs\\nbuccal\\nbuccally\\nbuck\\nbuckaroo\\nbuckaroos\\nbuckayro\\nbuckayros\\nbuckbean\\nbuckbeans\\nbucked\\nbuckeen\\nbuckeens\\nbucker\\nbuckeroo\\nbuckeroos\\nbuckers\\nbucket\\nbucketed\\nbucketful\\nbucketfuls\\nbucketing\\nbuckets\\nbuckeye\\nbuckeyes\\nbucking\\nbuckish\\nbuckle\\nbuckled\\nbuckler\\nbucklered\\nbucklering\\nbucklers\\nbuckles\\nbuckling\\nbucko\\nbuckoes\\nbuckra\\nbuckram\\nbuckramed\\nbuckraming\\nbuckrams\\nbuckras\\nbucks\\nbucksaw\\nbucksaws\\nbuckshee\\nbuckshees\\nbuckshot\\nbuckshots\\nbuckskin\\nbuckskins\\nbucktail\\nbucktails\\nbucktooth\\nbucktooths\\nbuckwheat\\nbuckwheats\\nbucolic\\nbucolics\\nbud\\nbudded\\nbudder\\nbudders\\nbuddies\\nbudding\\nbuddle\\nbuddleia\\nbuddleias\\nbuddles\\nbuddy\\nbudge\\nbudged\\nbudger\\nbudgers\\nbudges\\nbudget\\nbudgetary\\nbudgeted\\nbudgeter\\nbudgeters\\nbudgeting\\nbudgets\\nbudgie\\nbudgies\\nbudging\\nbudless\\nbudlike\\nbuds\\nbuff\\nbuffable\\nbuffalo\\nbuffaloed\\nbuffaloes\\nbuffaloing\\nbuffalos\\nbuffed\\nbuffer\\nbuffered\\nbuffering\\nbuffers\\nbuffet\\nbuffeted\\nbuffeter\\nbuffeters\\nbuffeting\\nbuffets\\nbuffi\\nbuffier\\nbuffiest\\nbuffing\\nbuffo\\nbuffoon\\nbuffoons\\nbuffos\\nbuffs\\nbuffy\\nbug\\nbugaboo\\nbugaboos\\nbugbane\\nbugbanes\\nbugbear\\nbugbears\\nbugeye\\nbugeyes\\nbugged\\nbugger\\nbuggered\\nbuggeries\\nbuggering\\nbuggers\\nbuggery\\nbuggier\\nbuggies\\nbuggiest\\nbugging\\nbuggy\\nbughouse\\nbughouses\\nbugle\\nbugled\\nbugler\\nbuglers\\nbugles\\nbugling\\nbugloss\\nbuglosses\\nbugs\\nbugseed\\nbugseeds\\nbugsha\\nbugshas\\nbuhl\\nbuhls\\nbuhlwork\\nbuhlworks\\nbuhr\\nbuhrs\\nbuild\\nbuilded\\nbuilder\\nbuilders\\nbuilding\\nbuildings\\nbuilds\\nbuildup\\nbuildups\\nbuilt\\nbuirdly\\nbulb\\nbulbar\\nbulbed\\nbulbel\\nbulbels\\nbulbil\\nbulbils\\nbulbous\\nbulbs\\nbulbul\\nbulbuls\\nbulge\\nbulged\\nbulger\\nbulgers\\nbulges\\nbulgier\\nbulgiest\\nbulging\\nbulgur\\nbulgurs\\nbulgy\\nbulimia\\nbulimiac\\nbulimias\\nbulimic\\nbulk\\nbulkage\\nbulkages\\nbulked\\nbulkhead\\nbulkheads\\nbulkier\\nbulkiest\\nbulkily\\nbulking\\nbulks\\nbulky\\nbull\\nbulla\\nbullace\\nbullaces\\nbullae\\nbullate\\nbullbat\\nbullbats\\nbulldog\\nbulldogged\\nbulldogging\\nbulldogs\\nbulldoze\\nbulldozed\\nbulldozer\\nbulldozers\\nbulldozes\\nbulldozing\\nbulled\\nbullet\\nbulleted\\nbulletin\\nbulletined\\nbulleting\\nbulletining\\nbulletins\\nbulletproof\\nbulletproofs\\nbullets\\nbullfight\\nbullfighter\\nbullfighters\\nbullfights\\nbullfinch\\nbullfinches\\nbullfrog\\nbullfrogs\\nbullhead\\nbullheaded\\nbullheads\\nbullhorn\\nbullhorns\\nbullied\\nbullier\\nbullies\\nbulliest\\nbulling\\nbullion\\nbullions\\nbullish\\nbullneck\\nbullnecks\\nbullnose\\nbullnoses\\nbullock\\nbullocks\\nbullocky\\nbullous\\nbullpen\\nbullpens\\nbullpout\\nbullpouts\\nbullring\\nbullrings\\nbullrush\\nbullrushes\\nbulls\\nbullweed\\nbullweeds\\nbullwhip\\nbullwhipped\\nbullwhipping\\nbullwhips\\nbully\\nbullyboy\\nbullyboys\\nbullying\\nbullyrag\\nbullyragged\\nbullyragging\\nbullyrags\\nbulrush\\nbulrushes\\nbulwark\\nbulwarked\\nbulwarking\\nbulwarks\\nbum\\nbumble\\nbumblebee\\nbumblebees\\nbumbled\\nbumbler\\nbumblers\\nbumbles\\nbumbling\\nbumblings\\nbumboat\\nbumboats\\nbumf\\nbumfs\\nbumkin\\nbumkins\\nbummed\\nbummer\\nbummers\\nbumming\\nbump\\nbumped\\nbumper\\nbumpered\\nbumpering\\nbumpers\\nbumpier\\nbumpiest\\nbumpily\\nbumping\\nbumpkin\\nbumpkins\\nbumps\\nbumpy\\nbums\\nbun\\nbunch\\nbunched\\nbunches\\nbunchier\\nbunchiest\\nbunchily\\nbunching\\nbunchy\\nbunco\\nbuncoed\\nbuncoing\\nbuncombe\\nbuncombes\\nbuncos\\nbund\\nbundist\\nbundists\\nbundle\\nbundled\\nbundler\\nbundlers\\nbundles\\nbundling\\nbundlings\\nbunds\\nbung\\nbungalow\\nbungalows\\nbunged\\nbunghole\\nbungholes\\nbunging\\nbungle\\nbungled\\nbungler\\nbunglers\\nbungles\\nbungling\\nbunglings\\nbungs\\nbunion\\nbunions\\nbunk\\nbunked\\nbunker\\nbunkered\\nbunkering\\nbunkers\\nbunking\\nbunkmate\\nbunkmates\\nbunko\\nbunkoed\\nbunkoing\\nbunkos\\nbunks\\nbunkum\\nbunkums\\nbunky\\nbunn\\nbunnies\\nbunns\\nbunny\\nbuns\\nbunt\\nbunted\\nbunter\\nbunters\\nbunting\\nbuntings\\nbuntline\\nbuntlines\\nbunts\\nbunya\\nbunyas\\nbuoy\\nbuoyage\\nbuoyages\\nbuoyance\\nbuoyances\\nbuoyancies\\nbuoyancy\\nbuoyant\\nbuoyed\\nbuoying\\nbuoys\\nbuqsha\\nbuqshas\\nbur\\nbura\\nburan\\nburans\\nburas\\nburble\\nburbled\\nburbler\\nburblers\\nburbles\\nburblier\\nburbliest\\nburbling\\nburbly\\nburbot\\nburbots\\nburd\\nburden\\nburdened\\nburdener\\nburdeners\\nburdening\\nburdens\\nburdensome\\nburdie\\nburdies\\nburdock\\nburdocks\\nburds\\nbureau\\nbureaucracies\\nbureaucracy\\nbureaucrat\\nbureaucratic\\nbureaucrats\\nbureaus\\nbureaux\\nburet\\nburets\\nburette\\nburettes\\nburg\\nburgage\\nburgages\\nburgee\\nburgees\\nburgeon\\nburgeoned\\nburgeoning\\nburgeons\\nburger\\nburgers\\nburgess\\nburgesses\\nburgh\\nburghal\\nburgher\\nburghers\\nburghs\\nburglar\\nburglaries\\nburglarize\\nburglarized\\nburglarizes\\nburglarizing\\nburglars\\nburglary\\nburgle\\nburgled\\nburgles\\nburgling\\nburgonet\\nburgonets\\nburgoo\\nburgoos\\nburgout\\nburgouts\\nburgrave\\nburgraves\\nburgs\\nburgundies\\nburgundy\\nburial\\nburials\\nburied\\nburier\\nburiers\\nburies\\nburin\\nburins\\nburke\\nburked\\nburker\\nburkers\\nburkes\\nburking\\nburkite\\nburkites\\nburl\\nburlap\\nburlaps\\nburled\\nburler\\nburlers\\nburlesk\\nburlesks\\nburlesque\\nburlesqued\\nburlesques\\nburlesquing\\nburley\\nburleys\\nburlier\\nburliest\\nburlily\\nburling\\nburls\\nburly\\nburn\\nburnable\\nburned\\nburner\\nburners\\nburnet\\nburnets\\nburnie\\nburnies\\nburning\\nburnings\\nburnish\\nburnished\\nburnishes\\nburnishing\\nburnoose\\nburnooses\\nburnous\\nburnouses\\nburnout\\nburnouts\\nburns\\nburnt\\nburp\\nburped\\nburping\\nburps\\nburr\\nburred\\nburrer\\nburrers\\nburrier\\nburriest\\nburring\\nburro\\nburros\\nburrow\\nburrowed\\nburrower\\nburrowers\\nburrowing\\nburrows\\nburrs\\nburry\\nburs\\nbursa\\nbursae\\nbursal\\nbursar\\nbursaries\\nbursars\\nbursary\\nbursas\\nbursate\\nburse\\nburseed\\nburseeds\\nburses\\nbursitis\\nbursitises\\nburst\\nbursted\\nburster\\nbursters\\nbursting\\nburstone\\nburstones\\nbursts\\nburthen\\nburthened\\nburthening\\nburthens\\nburton\\nburtons\\nburweed\\nburweeds\\nbury\\nburying\\nbus\\nbusbies\\nbusboy\\nbusboys\\nbusby\\nbused\\nbuses\\nbush\\nbushbuck\\nbushbucks\\nbushed\\nbushel\\nbusheled\\nbusheler\\nbushelers\\nbusheling\\nbushelled\\nbushelling\\nbushels\\nbusher\\nbushers\\nbushes\\nbushfire\\nbushfires\\nbushgoat\\nbushgoats\\nbushido\\nbushidos\\nbushier\\nbushiest\\nbushily\\nbushing\\nbushings\\nbushland\\nbushlands\\nbushless\\nbushlike\\nbushman\\nbushmen\\nbushtit\\nbushtits\\nbushy\\nbusied\\nbusier\\nbusies\\nbusiest\\nbusily\\nbusiness\\nbusinesses\\nbusinessman\\nbusinessmen\\nbusinesswoman\\nbusinesswomen\\nbusing\\nbusings\\nbusk\\nbusked\\nbusker\\nbuskers\\nbuskin\\nbuskined\\nbusking\\nbuskins\\nbusks\\nbusman\\nbusmen\\nbuss\\nbussed\\nbusses\\nbussing\\nbussings\\nbust\\nbustard\\nbustards\\nbusted\\nbuster\\nbusters\\nbustic\\nbustics\\nbustier\\nbustiest\\nbusting\\nbustle\\nbustled\\nbustles\\nbustling\\nbusts\\nbusty\\nbusulfan\\nbusulfans\\nbusy\\nbusybodies\\nbusybody\\nbusying\\nbusyness\\nbusynesses\\nbusywork\\nbusyworks\\nbut\\nbutane\\nbutanes\\nbutanol\\nbutanols\\nbutanone\\nbutanones\\nbutch\\nbutcher\\nbutchered\\nbutcheries\\nbutchering\\nbutchers\\nbutchery\\nbutches\\nbutene\\nbutenes\\nbuteo\\nbuteos\\nbutler\\nbutleries\\nbutlers\\nbutlery\\nbuts\\nbutt\\nbuttals\\nbutte\\nbutted\\nbutter\\nbuttercup\\nbuttercups\\nbuttered\\nbutterfat\\nbutterfats\\nbutterflies\\nbutterfly\\nbutterier\\nbutteries\\nbutteriest\\nbuttering\\nbuttermilk\\nbutternut\\nbutternuts\\nbutters\\nbutterscotch\\nbutterscotches\\nbuttery\\nbuttes\\nbutties\\nbutting\\nbuttock\\nbuttocks\\nbutton\\nbuttoned\\nbuttoner\\nbuttoners\\nbuttonhole\\nbuttonholes\\nbuttoning\\nbuttons\\nbuttony\\nbuttress\\nbuttressed\\nbuttresses\\nbuttressing\\nbutts\\nbutty\\nbutut\\nbututs\\nbutyl\\nbutylate\\nbutylated\\nbutylates\\nbutylating\\nbutylene\\nbutylenes\\nbutyls\\nbutyral\\nbutyrals\\nbutyrate\\nbutyrates\\nbutyric\\nbutyrin\\nbutyrins\\nbutyrous\\nbutyryl\\nbutyryls\\nbuxom\\nbuxomer\\nbuxomest\\nbuxomly\\nbuy\\nbuyable\\nbuyer\\nbuyers\\nbuying\\nbuys\\nbuzz\\nbuzzard\\nbuzzards\\nbuzzed\\nbuzzer\\nbuzzers\\nbuzzes\\nbuzzing\\nbuzzwig\\nbuzzwigs\\nbuzzword\\nbuzzwords\\nbuzzy\\nbwana\\nbwanas\\nby\\nbye\\nbyelaw\\nbyelaws\\nbyes\\nbygone\\nbygones\\nbylaw\\nbylaws\\nbyline\\nbylined\\nbyliner\\nbyliners\\nbylines\\nbylining\\nbyname\\nbynames\\nbypass\\nbypassed\\nbypasses\\nbypassing\\nbypast\\nbypath\\nbypaths\\nbyplay\\nbyplays\\nbyre\\nbyres\\nbyrl\\nbyrled\\nbyrling\\nbyrls\\nbyrnie\\nbyrnies\\nbyroad\\nbyroads\\nbys\\nbyssi\\nbyssus\\nbyssuses\\nbystander\\nbystanders\\nbystreet\\nbystreets\\nbytalk\\nbytalks\\nbyte\\nbytes\\nbyway\\nbyways\\nbyword\\nbywords\\nbywork\\nbyworks\\nbyzant\\nbyzants\\ncab\\ncabal\\ncabala\\ncabalas\\ncabalism\\ncabalisms\\ncabalist\\ncabalists\\ncaballed\\ncaballing\\ncabals\\ncabana\\ncabanas\\ncabaret\\ncabarets\\ncabbage\\ncabbaged\\ncabbages\\ncabbaging\\ncabbala\\ncabbalah\\ncabbalahs\\ncabbalas\\ncabbie\\ncabbies\\ncabby\\ncaber\\ncabers\\ncabestro\\ncabestros\\ncabezon\\ncabezone\\ncabezones\\ncabezons\\ncabildo\\ncabildos\\ncabin\\ncabined\\ncabinet\\ncabinetmaker\\ncabinetmakers\\ncabinetmaking\\ncabinetmakings\\ncabinets\\ncabinetwork\\ncabinetworks\\ncabining\\ncabins\\ncable\\ncabled\\ncablegram\\ncablegrams\\ncables\\ncablet\\ncablets\\ncableway\\ncableways\\ncabling\\ncabman\\ncabmen\\ncabob\\ncabobs\\ncaboched\\ncabochon\\ncabochons\\ncaboodle\\ncaboodles\\ncaboose\\ncabooses\\ncaboshed\\ncabotage\\ncabotages\\ncabresta\\ncabrestas\\ncabresto\\ncabrestos\\ncabretta\\ncabrettas\\ncabrilla\\ncabrillas\\ncabriole\\ncabrioles\\ncabs\\ncabstand\\ncabstands\\ncacao\\ncacaos\\ncachalot\\ncachalots\\ncache\\ncached\\ncachepot\\ncachepots\\ncaches\\ncachet\\ncachets\\ncachexia\\ncachexias\\ncachexic\\ncachexies\\ncachexy\\ncaching\\ncachou\\ncachous\\ncachucha\\ncachuchas\\ncacique\\ncaciques\\ncackle\\ncackled\\ncackler\\ncacklers\\ncackles\\ncackling\\ncacodyl\\ncacodyls\\ncacomixl\\ncacomixls\\ncacophonies\\ncacophonous\\ncacophony\\ncacti\\ncactoid\\ncactus\\ncactuses\\ncad\\ncadaster\\ncadasters\\ncadastre\\ncadastres\\ncadaver\\ncadavers\\ncaddice\\ncaddices\\ncaddie\\ncaddied\\ncaddies\\ncaddis\\ncaddises\\ncaddish\\ncaddishly\\ncaddishness\\ncaddishnesses\\ncaddy\\ncaddying\\ncade\\ncadelle\\ncadelles\\ncadence\\ncadenced\\ncadences\\ncadencies\\ncadencing\\ncadency\\ncadent\\ncadenza\\ncadenzas\\ncades\\ncadet\\ncadets\\ncadge\\ncadged\\ncadger\\ncadgers\\ncadges\\ncadging\\ncadgy\\ncadi\\ncadis\\ncadmic\\ncadmium\\ncadmiums\\ncadre\\ncadres\\ncads\\ncaducean\\ncaducei\\ncaduceus\\ncaducities\\ncaducity\\ncaducous\\ncaeca\\ncaecal\\ncaecally\\ncaecum\\ncaeoma\\ncaeomas\\ncaesium\\ncaesiums\\ncaestus\\ncaestuses\\ncaesura\\ncaesurae\\ncaesural\\ncaesuras\\ncaesuric\\ncafe\\ncafes\\ncafeteria\\ncafeterias\\ncaffein\\ncaffeine\\ncaffeines\\ncaffeins\\ncaftan\\ncaftans\\ncage\\ncaged\\ncageling\\ncagelings\\ncager\\ncages\\ncagey\\ncagier\\ncagiest\\ncagily\\ncaginess\\ncaginesses\\ncaging\\ncagy\\ncahier\\ncahiers\\ncahoot\\ncahoots\\ncahow\\ncahows\\ncaid\\ncaids\\ncaiman\\ncaimans\\ncain\\ncains\\ncaique\\ncaiques\\ncaird\\ncairds\\ncairn\\ncairned\\ncairns\\ncairny\\ncaisson\\ncaissons\\ncaitiff\\ncaitiffs\\ncajaput\\ncajaputs\\ncajeput\\ncajeputs\\ncajole\\ncajoled\\ncajoler\\ncajoleries\\ncajolers\\ncajolery\\ncajoles\\ncajoling\\ncajon\\ncajones\\ncajuput\\ncajuputs\\ncake\\ncaked\\ncakes\\ncakewalk\\ncakewalked\\ncakewalking\\ncakewalks\\ncaking\\ncalabash\\ncalabashes\\ncaladium\\ncaladiums\\ncalamar\\ncalamaries\\ncalamars\\ncalamary\\ncalami\\ncalamine\\ncalamined\\ncalamines\\ncalamining\\ncalamint\\ncalamints\\ncalamite\\ncalamites\\ncalamities\\ncalamitous\\ncalamitously\\ncalamitousness\\ncalamitousnesses\\ncalamity\\ncalamus\\ncalando\\ncalash\\ncalashes\\ncalathi\\ncalathos\\ncalathus\\ncalcanea\\ncalcanei\\ncalcar\\ncalcaria\\ncalcars\\ncalceate\\ncalces\\ncalcic\\ncalcific\\ncalcification\\ncalcifications\\ncalcified\\ncalcifies\\ncalcify\\ncalcifying\\ncalcine\\ncalcined\\ncalcines\\ncalcining\\ncalcite\\ncalcites\\ncalcitic\\ncalcium\\ncalciums\\ncalcspar\\ncalcspars\\ncalctufa\\ncalctufas\\ncalctuff\\ncalctuffs\\ncalculable\\ncalculably\\ncalculate\\ncalculated\\ncalculates\\ncalculating\\ncalculation\\ncalculations\\ncalculator\\ncalculators\\ncalculi\\ncalculus\\ncalculuses\\ncaldera\\ncalderas\\ncaldron\\ncaldrons\\ncaleche\\ncaleches\\ncalendal\\ncalendar\\ncalendared\\ncalendaring\\ncalendars\\ncalender\\ncalendered\\ncalendering\\ncalenders\\ncalends\\ncalesa\\ncalesas\\ncalf\\ncalflike\\ncalfs\\ncalfskin\\ncalfskins\\ncaliber\\ncalibers\\ncalibrate\\ncalibrated\\ncalibrates\\ncalibrating\\ncalibration\\ncalibrations\\ncalibrator\\ncalibrators\\ncalibre\\ncalibred\\ncalibres\\ncalices\\ncaliche\\ncaliches\\ncalicle\\ncalicles\\ncalico\\ncalicoes\\ncalicos\\ncalif\\ncalifate\\ncalifates\\ncalifornia\\ncalifs\\ncalipash\\ncalipashes\\ncalipee\\ncalipees\\ncaliper\\ncalipered\\ncalipering\\ncalipers\\ncaliph\\ncaliphal\\ncaliphate\\ncaliphates\\ncaliphs\\ncalisaya\\ncalisayas\\ncalisthenic\\ncalisthenics\\ncalix\\ncalk\\ncalked\\ncalker\\ncalkers\\ncalkin\\ncalking\\ncalkins\\ncalks\\ncall\\ncalla\\ncallable\\ncallan\\ncallans\\ncallant\\ncallants\\ncallas\\ncallback\\ncallbacks\\ncallboy\\ncallboys\\ncalled\\ncaller\\ncallers\\ncallet\\ncallets\\ncalli\\ncalling\\ncallings\\ncalliope\\ncalliopes\\ncallipee\\ncallipees\\ncalliper\\ncallipered\\ncallipering\\ncallipers\\ncallose\\ncalloses\\ncallosities\\ncallosity\\ncallous\\ncalloused\\ncallouses\\ncallousing\\ncallously\\ncallousness\\ncallousnesses\\ncallow\\ncallower\\ncallowest\\ncallowness\\ncallownesses\\ncalls\\ncallus\\ncallused\\ncalluses\\ncallusing\\ncalm\\ncalmed\\ncalmer\\ncalmest\\ncalming\\ncalmly\\ncalmness\\ncalmnesses\\ncalms\\ncalomel\\ncalomels\\ncaloric\\ncalorics\\ncalorie\\ncalories\\ncalory\\ncalotte\\ncalottes\\ncaloyer\\ncaloyers\\ncalpac\\ncalpack\\ncalpacks\\ncalpacs\\ncalque\\ncalqued\\ncalques\\ncalquing\\ncalthrop\\ncalthrops\\ncaltrap\\ncaltraps\\ncaltrop\\ncaltrops\\ncalumet\\ncalumets\\ncalumniate\\ncalumniated\\ncalumniates\\ncalumniating\\ncalumniation\\ncalumniations\\ncalumnies\\ncalumnious\\ncalumny\\ncalutron\\ncalutrons\\ncalvados\\ncalvadoses\\ncalvaria\\ncalvarias\\ncalvaries\\ncalvary\\ncalve\\ncalved\\ncalves\\ncalving\\ncalx\\ncalxes\\ncalycate\\ncalyceal\\ncalyces\\ncalycine\\ncalycle\\ncalycles\\ncalyculi\\ncalypso\\ncalypsoes\\ncalypsos\\ncalypter\\ncalypters\\ncalyptra\\ncalyptras\\ncalyx\\ncalyxes\\ncam\\ncamail\\ncamailed\\ncamails\\ncamaraderie\\ncamaraderies\\ncamas\\ncamases\\ncamass\\ncamasses\\ncamber\\ncambered\\ncambering\\ncambers\\ncambia\\ncambial\\ncambism\\ncambisms\\ncambist\\ncambists\\ncambium\\ncambiums\\ncambogia\\ncambogias\\ncambric\\ncambrics\\ncambridge\\ncame\\ncamel\\ncameleer\\ncameleers\\ncamelia\\ncamelias\\ncamellia\\ncamellias\\ncamels\\ncameo\\ncameoed\\ncameoing\\ncameos\\ncamera\\ncamerae\\ncameral\\ncameraman\\ncameramen\\ncameras\\ncames\\ncamion\\ncamions\\ncamisa\\ncamisade\\ncamisades\\ncamisado\\ncamisadoes\\ncamisados\\ncamisas\\ncamise\\ncamises\\ncamisia\\ncamisias\\ncamisole\\ncamisoles\\ncamlet\\ncamlets\\ncamomile\\ncamomiles\\ncamorra\\ncamorras\\ncamouflage\\ncamouflaged\\ncamouflages\\ncamouflaging\\ncamp\\ncampagna\\ncampagne\\ncampaign\\ncampaigned\\ncampaigner\\ncampaigners\\ncampaigning\\ncampaigns\\ncampanile\\ncampaniles\\ncampanili\\ncamped\\ncamper\\ncampers\\ncampfire\\ncampfires\\ncampground\\ncampgrounds\\ncamphene\\ncamphenes\\ncamphine\\ncamphines\\ncamphol\\ncamphols\\ncamphor\\ncamphors\\ncampi\\ncampier\\ncampiest\\ncampily\\ncamping\\ncampings\\ncampion\\ncampions\\ncampo\\ncampong\\ncampongs\\ncamporee\\ncamporees\\ncampos\\ncamps\\ncampsite\\ncampsites\\ncampus\\ncampuses\\ncampy\\ncams\\ncamshaft\\ncamshafts\\ncan\\ncanaille\\ncanailles\\ncanakin\\ncanakins\\ncanal\\ncanaled\\ncanaling\\ncanalise\\ncanalised\\ncanalises\\ncanalising\\ncanalize\\ncanalized\\ncanalizes\\ncanalizing\\ncanalled\\ncanaller\\ncanallers\\ncanalling\\ncanals\\ncanape\\ncanapes\\ncanard\\ncanards\\ncanaries\\ncanary\\ncanasta\\ncanastas\\ncancan\\ncancans\\ncancel\\ncanceled\\ncanceler\\ncancelers\\ncanceling\\ncancellation\\ncancellations\\ncancelled\\ncancelling\\ncancels\\ncancer\\ncancerlog\\ncancerous\\ncancerously\\ncancers\\ncancha\\ncanchas\\ncancroid\\ncancroids\\ncandela\\ncandelabra\\ncandelabras\\ncandelabrum\\ncandelas\\ncandent\\ncandid\\ncandida\\ncandidacies\\ncandidacy\\ncandidas\\ncandidate\\ncandidates\\ncandider\\ncandidest\\ncandidly\\ncandidness\\ncandidnesses\\ncandids\\ncandied\\ncandies\\ncandle\\ncandled\\ncandlelight\\ncandlelights\\ncandler\\ncandlers\\ncandles\\ncandlestick\\ncandlesticks\\ncandling\\ncandor\\ncandors\\ncandour\\ncandours\\ncandy\\ncandying\\ncane\\ncaned\\ncanella\\ncanellas\\ncaner\\ncaners\\ncanes\\ncaneware\\ncanewares\\ncanfield\\ncanfields\\ncanful\\ncanfuls\\ncangue\\ncangues\\ncanikin\\ncanikins\\ncanine\\ncanines\\ncaning\\ncaninities\\ncaninity\\ncanister\\ncanisters\\ncanities\\ncanker\\ncankered\\ncankering\\ncankerous\\ncankers\\ncanna\\ncannabic\\ncannabin\\ncannabins\\ncannabis\\ncannabises\\ncannas\\ncanned\\ncannel\\ncannelon\\ncannelons\\ncannels\\ncanner\\ncanneries\\ncanners\\ncannery\\ncannibal\\ncannibalism\\ncannibalisms\\ncannibalistic\\ncannibalize\\ncannibalized\\ncannibalizes\\ncannibalizing\\ncannibals\\ncannie\\ncannier\\ncanniest\\ncannikin\\ncannikins\\ncannily\\ncanniness\\ncanninesses\\ncanning\\ncannings\\ncannon\\ncannonade\\ncannonaded\\ncannonades\\ncannonading\\ncannonball\\ncannonballs\\ncannoned\\ncannoneer\\ncannoneers\\ncannoning\\ncannonries\\ncannonry\\ncannons\\ncannot\\ncannula\\ncannulae\\ncannular\\ncannulas\\ncanny\\ncanoe\\ncanoed\\ncanoeing\\ncanoeist\\ncanoeists\\ncanoes\\ncanon\\ncanoness\\ncanonesses\\ncanonic\\ncanonical\\ncanonically\\ncanonise\\ncanonised\\ncanonises\\ncanonising\\ncanonist\\ncanonists\\ncanonization\\ncanonizations\\ncanonize\\ncanonized\\ncanonizes\\ncanonizing\\ncanonries\\ncanonry\\ncanons\\ncanopied\\ncanopies\\ncanopy\\ncanopying\\ncanorous\\ncans\\ncansful\\ncanso\\ncansos\\ncanst\\ncant\\ncantala\\ncantalas\\ncantaloupe\\ncantaloupes\\ncantankerous\\ncantankerously\\ncantankerousness\\ncantankerousnesses\\ncantata\\ncantatas\\ncantdog\\ncantdogs\\ncanted\\ncanteen\\ncanteens\\ncanter\\ncantered\\ncantering\\ncanters\\ncanthal\\ncanthi\\ncanthus\\ncantic\\ncanticle\\ncanticles\\ncantilever\\ncantilevers\\ncantina\\ncantinas\\ncanting\\ncantle\\ncantles\\ncanto\\ncanton\\ncantonal\\ncantoned\\ncantoning\\ncantons\\ncantor\\ncantors\\ncantos\\ncantraip\\ncantraips\\ncantrap\\ncantraps\\ncantrip\\ncantrips\\ncants\\ncantus\\ncanty\\ncanula\\ncanulae\\ncanulas\\ncanulate\\ncanulated\\ncanulates\\ncanulating\\ncanvas\\ncanvased\\ncanvaser\\ncanvasers\\ncanvases\\ncanvasing\\ncanvass\\ncanvassed\\ncanvasser\\ncanvassers\\ncanvasses\\ncanvassing\\ncanyon\\ncanyons\\ncanzona\\ncanzonas\\ncanzone\\ncanzones\\ncanzonet\\ncanzonets\\ncanzoni\\ncap\\ncapabilities\\ncapability\\ncapable\\ncapabler\\ncapablest\\ncapably\\ncapacious\\ncapacitance\\ncapacitances\\ncapacities\\ncapacitor\\ncapacitors\\ncapacity\\ncape\\ncaped\\ncapelan\\ncapelans\\ncapelet\\ncapelets\\ncapelin\\ncapelins\\ncaper\\ncapered\\ncaperer\\ncaperers\\ncapering\\ncapers\\ncapes\\ncapeskin\\ncapeskins\\ncapework\\ncapeworks\\ncapful\\ncapfuls\\ncaph\\ncaphs\\ncapias\\ncapiases\\ncapillaries\\ncapillary\\ncapita\\ncapital\\ncapitalism\\ncapitalist\\ncapitalistic\\ncapitalistically\\ncapitalists\\ncapitalization\\ncapitalizations\\ncapitalize\\ncapitalized\\ncapitalizes\\ncapitalizing\\ncapitals\\ncapitate\\ncapitol\\ncapitols\\ncapitula\\ncapitulate\\ncapitulated\\ncapitulates\\ncapitulating\\ncapitulation\\ncapitulations\\ncapless\\ncaplin\\ncaplins\\ncapmaker\\ncapmakers\\ncapo\\ncapon\\ncaponier\\ncaponiers\\ncaponize\\ncaponized\\ncaponizes\\ncaponizing\\ncapons\\ncaporal\\ncaporals\\ncapos\\ncapote\\ncapotes\\ncapouch\\ncapouches\\ncapped\\ncapper\\ncappers\\ncapping\\ncappings\\ncapric\\ncapricci\\ncaprice\\ncaprices\\ncapricious\\ncaprifig\\ncaprifigs\\ncaprine\\ncapriole\\ncaprioled\\ncaprioles\\ncaprioling\\ncaps\\ncapsicin\\ncapsicins\\ncapsicum\\ncapsicums\\ncapsid\\ncapsidal\\ncapsids\\ncapsize\\ncapsized\\ncapsizes\\ncapsizing\\ncapstan\\ncapstans\\ncapstone\\ncapstones\\ncapsular\\ncapsulate\\ncapsulated\\ncapsule\\ncapsuled\\ncapsules\\ncapsuling\\ncaptain\\ncaptaincies\\ncaptaincy\\ncaptained\\ncaptaining\\ncaptains\\ncaptainship\\ncaptainships\\ncaptan\\ncaptans\\ncaption\\ncaptioned\\ncaptioning\\ncaptions\\ncaptious\\ncaptiously\\ncaptivate\\ncaptivated\\ncaptivates\\ncaptivating\\ncaptivation\\ncaptivations\\ncaptivator\\ncaptivators\\ncaptive\\ncaptives\\ncaptivities\\ncaptivity\\ncaptor\\ncaptors\\ncapture\\ncaptured\\ncapturer\\ncapturers\\ncaptures\\ncapturing\\ncapuche\\ncapuched\\ncapuches\\ncapuchin\\ncapuchins\\ncaput\\ncapybara\\ncapybaras\\ncar\\ncarabao\\ncarabaos\\ncarabid\\ncarabids\\ncarabin\\ncarabine\\ncarabines\\ncarabins\\ncaracal\\ncaracals\\ncaracara\\ncaracaras\\ncarack\\ncaracks\\ncaracol\\ncaracole\\ncaracoled\\ncaracoles\\ncaracoling\\ncaracolled\\ncaracolling\\ncaracols\\ncaracul\\ncaraculs\\ncarafe\\ncarafes\\ncaragana\\ncaraganas\\ncarageen\\ncarageens\\ncaramel\\ncaramels\\ncarangid\\ncarangids\\ncarapace\\ncarapaces\\ncarapax\\ncarapaxes\\ncarassow\\ncarassows\\ncarat\\ncarate\\ncarates\\ncarats\\ncaravan\\ncaravaned\\ncaravaning\\ncaravanned\\ncaravanning\\ncaravans\\ncaravel\\ncaravels\\ncaraway\\ncaraways\\ncarbamic\\ncarbamyl\\ncarbamyls\\ncarbarn\\ncarbarns\\ncarbaryl\\ncarbaryls\\ncarbide\\ncarbides\\ncarbine\\ncarbines\\ncarbinol\\ncarbinols\\ncarbohydrate\\ncarbohydrates\\ncarbon\\ncarbonate\\ncarbonated\\ncarbonates\\ncarbonating\\ncarbonation\\ncarbonations\\ncarbonic\\ncarbons\\ncarbonyl\\ncarbonyls\\ncarbora\\ncarboras\\ncarboxyl\\ncarboxyls\\ncarboy\\ncarboyed\\ncarboys\\ncarbuncle\\ncarbuncles\\ncarburet\\ncarbureted\\ncarbureting\\ncarburetor\\ncarburetors\\ncarburets\\ncarburetted\\ncarburetting\\ncarcajou\\ncarcajous\\ncarcanet\\ncarcanets\\ncarcase\\ncarcases\\ncarcass\\ncarcasses\\ncarcel\\ncarcels\\ncarcinogen\\ncarcinogenic\\ncarcinogenics\\ncarcinogens\\ncarcinoma\\ncarcinomas\\ncarcinomata\\ncarcinomatous\\ncard\\ncardamom\\ncardamoms\\ncardamon\\ncardamons\\ncardamum\\ncardamums\\ncardboard\\ncardboards\\ncardcase\\ncardcases\\ncarded\\ncarder\\ncarders\\ncardia\\ncardiac\\ncardiacs\\ncardiae\\ncardias\\ncardigan\\ncardigans\\ncardinal\\ncardinals\\ncarding\\ncardings\\ncardiogram\\ncardiograms\\ncardiograph\\ncardiographic\\ncardiographies\\ncardiographs\\ncardiography\\ncardioid\\ncardioids\\ncardiologies\\ncardiologist\\ncardiologists\\ncardiology\\ncardiotoxicities\\ncardiotoxicity\\ncardiovascular\\ncarditic\\ncarditis\\ncarditises\\ncardoon\\ncardoons\\ncards\\ncare\\ncared\\ncareen\\ncareened\\ncareener\\ncareeners\\ncareening\\ncareens\\ncareer\\ncareered\\ncareerer\\ncareerers\\ncareering\\ncareers\\ncarefree\\ncareful\\ncarefuller\\ncarefullest\\ncarefully\\ncarefulness\\ncarefulnesses\\ncareless\\ncarelessly\\ncarelessness\\ncarelessnesses\\ncarer\\ncarers\\ncares\\ncaress\\ncaressed\\ncaresser\\ncaressers\\ncaresses\\ncaressing\\ncaret\\ncaretaker\\ncaretakers\\ncarets\\ncareworn\\ncarex\\ncarfare\\ncarfares\\ncarful\\ncarfuls\\ncargo\\ncargoes\\ncargos\\ncarhop\\ncarhops\\ncaribe\\ncaribes\\ncaribou\\ncaribous\\ncaricature\\ncaricatured\\ncaricatures\\ncaricaturing\\ncaricaturist\\ncaricaturists\\ncarices\\ncaried\\ncaries\\ncarillon\\ncarillonned\\ncarillonning\\ncarillons\\ncarina\\ncarinae\\ncarinal\\ncarinas\\ncarinate\\ncaring\\ncarioca\\ncariocas\\ncariole\\ncarioles\\ncarious\\ncark\\ncarked\\ncarking\\ncarks\\ncarl\\ncarle\\ncarles\\ncarless\\ncarlin\\ncarline\\ncarlines\\ncarling\\ncarlings\\ncarlins\\ncarlish\\ncarload\\ncarloads\\ncarls\\ncarmaker\\ncarmakers\\ncarman\\ncarmen\\ncarmine\\ncarmines\\ncarn\\ncarnage\\ncarnages\\ncarnal\\ncarnalities\\ncarnality\\ncarnally\\ncarnation\\ncarnations\\ncarnauba\\ncarnaubas\\ncarney\\ncarneys\\ncarnie\\ncarnies\\ncarnified\\ncarnifies\\ncarnify\\ncarnifying\\ncarnival\\ncarnivals\\ncarnivore\\ncarnivores\\ncarnivorous\\ncarnivorously\\ncarnivorousness\\ncarnivorousnesses\\ncarns\\ncarny\\ncaroach\\ncaroaches\\ncarob\\ncarobs\\ncaroch\\ncaroche\\ncaroches\\ncarol\\ncaroled\\ncaroler\\ncarolers\\ncaroli\\ncaroling\\ncarolled\\ncaroller\\ncarollers\\ncarolling\\ncarols\\ncarolus\\ncaroluses\\ncarom\\ncaromed\\ncaroming\\ncaroms\\ncarotene\\ncarotenes\\ncarotid\\ncarotids\\ncarotin\\ncarotins\\ncarousal\\ncarousals\\ncarouse\\ncaroused\\ncarousel\\ncarousels\\ncarouser\\ncarousers\\ncarouses\\ncarousing\\ncarp\\ncarpal\\ncarpale\\ncarpalia\\ncarpals\\ncarped\\ncarpel\\ncarpels\\ncarpenter\\ncarpentered\\ncarpentering\\ncarpenters\\ncarpentries\\ncarpentry\\ncarper\\ncarpers\\ncarpet\\ncarpeted\\ncarpeting\\ncarpets\\ncarpi\\ncarping\\ncarpings\\ncarport\\ncarports\\ncarps\\ncarpus\\ncarrack\\ncarracks\\ncarrel\\ncarrell\\ncarrells\\ncarrels\\ncarriage\\ncarriages\\ncarried\\ncarrier\\ncarriers\\ncarries\\ncarriole\\ncarrioles\\ncarrion\\ncarrions\\ncarritch\\ncarritches\\ncarroch\\ncarroches\\ncarrom\\ncarromed\\ncarroming\\ncarroms\\ncarrot\\ncarrotier\\ncarrotiest\\ncarrotin\\ncarrotins\\ncarrots\\ncarroty\\ncarrousel\\ncarrousels\\ncarry\\ncarryall\\ncarryalls\\ncarrying\\ncarryon\\ncarryons\\ncarryout\\ncarryouts\\ncars\\ncarse\\ncarses\\ncarsick\\ncart\\ncartable\\ncartage\\ncartages\\ncarte\\ncarted\\ncartel\\ncartels\\ncarter\\ncarters\\ncartes\\ncartilage\\ncartilages\\ncartilaginous\\ncarting\\ncartload\\ncartloads\\ncartographer\\ncartographers\\ncartographies\\ncartography\\ncarton\\ncartoned\\ncartoning\\ncartons\\ncartoon\\ncartooned\\ncartooning\\ncartoonist\\ncartoonists\\ncartoons\\ncartop\\ncartouch\\ncartouches\\ncartridge\\ncartridges\\ncarts\\ncaruncle\\ncaruncles\\ncarve\\ncarved\\ncarvel\\ncarvels\\ncarven\\ncarver\\ncarvers\\ncarves\\ncarving\\ncarvings\\ncaryatid\\ncaryatides\\ncaryatids\\ncaryotin\\ncaryotins\\ncasa\\ncasaba\\ncasabas\\ncasas\\ncasava\\ncasavas\\ncascabel\\ncascabels\\ncascable\\ncascables\\ncascade\\ncascaded\\ncascades\\ncascading\\ncascara\\ncascaras\\ncase\\ncasease\\ncaseases\\ncaseate\\ncaseated\\ncaseates\\ncaseating\\ncasebook\\ncasebooks\\ncased\\ncasefied\\ncasefies\\ncasefy\\ncasefying\\ncaseic\\ncasein\\ncaseins\\ncasemate\\ncasemates\\ncasement\\ncasements\\ncaseose\\ncaseoses\\ncaseous\\ncasern\\ncaserne\\ncasernes\\ncaserns\\ncases\\ncasette\\ncasettes\\ncasework\\ncaseworks\\ncaseworm\\ncaseworms\\ncash\\ncashable\\ncashaw\\ncashaws\\ncashbook\\ncashbooks\\ncashbox\\ncashboxes\\ncashed\\ncashes\\ncashew\\ncashews\\ncashier\\ncashiered\\ncashiering\\ncashiers\\ncashing\\ncashless\\ncashmere\\ncashmeres\\ncashoo\\ncashoos\\ncasimere\\ncasimeres\\ncasimire\\ncasimires\\ncasing\\ncasings\\ncasino\\ncasinos\\ncask\\ncasked\\ncasket\\ncasketed\\ncasketing\\ncaskets\\ncasking\\ncasks\\ncasky\\ncasque\\ncasqued\\ncasques\\ncassaba\\ncassabas\\ncassava\\ncassavas\\ncasserole\\ncasseroles\\ncassette\\ncassettes\\ncassia\\ncassias\\ncassino\\ncassinos\\ncassis\\ncassises\\ncassock\\ncassocks\\ncast\\ncastanet\\ncastanets\\ncastaway\\ncastaways\\ncaste\\ncasteism\\ncasteisms\\ncaster\\ncasters\\ncastes\\ncastigate\\ncastigated\\ncastigates\\ncastigating\\ncastigation\\ncastigations\\ncastigator\\ncastigators\\ncasting\\ncastings\\ncastle\\ncastled\\ncastles\\ncastling\\ncastoff\\ncastoffs\\ncastor\\ncastors\\ncastrate\\ncastrated\\ncastrates\\ncastrati\\ncastrating\\ncastration\\ncastrations\\ncastrato\\ncasts\\ncasual\\ncasually\\ncasualness\\ncasualnesses\\ncasuals\\ncasualties\\ncasualty\\ncasuist\\ncasuistries\\ncasuistry\\ncasuists\\ncasus\\ncat\\ncataclysm\\ncataclysms\\ncatacomb\\ncatacombs\\ncatacylsmic\\ncatalase\\ncatalases\\ncatalo\\ncataloes\\ncatalog\\ncataloged\\ncataloger\\ncatalogers\\ncataloging\\ncatalogs\\ncataloguer\\ncataloguers\\ncatalos\\ncatalpa\\ncatalpas\\ncatalyses\\ncatalysis\\ncatalyst\\ncatalysts\\ncatalytic\\ncatalyze\\ncatalyzed\\ncatalyzes\\ncatalyzing\\ncatamaran\\ncatamarans\\ncatamite\\ncatamites\\ncatamount\\ncatamounts\\ncatapult\\ncatapulted\\ncatapulting\\ncatapults\\ncataract\\ncataracts\\ncatarrh\\ncatarrhs\\ncatastrophe\\ncatastrophes\\ncatastrophic\\ncatastrophically\\ncatbird\\ncatbirds\\ncatboat\\ncatboats\\ncatbrier\\ncatbriers\\ncatcall\\ncatcalled\\ncatcalling\\ncatcalls\\ncatch\\ncatchall\\ncatchalls\\ncatcher\\ncatchers\\ncatches\\ncatchflies\\ncatchfly\\ncatchier\\ncatchiest\\ncatching\\ncatchup\\ncatchups\\ncatchword\\ncatchwords\\ncatchy\\ncate\\ncatechin\\ncatechins\\ncatechism\\ncatechisms\\ncatechist\\ncatechists\\ncatechize\\ncatechized\\ncatechizes\\ncatechizing\\ncatechol\\ncatechols\\ncatechu\\ncatechus\\ncategorical\\ncategorically\\ncategories\\ncategorization\\ncategorizations\\ncategorize\\ncategorized\\ncategorizes\\ncategorizing\\ncategory\\ncatena\\ncatenae\\ncatenaries\\ncatenary\\ncatenas\\ncatenate\\ncatenated\\ncatenates\\ncatenating\\ncatenoid\\ncatenoids\\ncater\\ncateran\\ncaterans\\ncatercorner\\ncatered\\ncaterer\\ncaterers\\ncateress\\ncateresses\\ncatering\\ncaterpillar\\ncaterpillars\\ncaters\\ncaterwaul\\ncaterwauled\\ncaterwauling\\ncaterwauls\\ncates\\ncatface\\ncatfaces\\ncatfall\\ncatfalls\\ncatfish\\ncatfishes\\ncatgut\\ncatguts\\ncatharses\\ncatharsis\\ncathartic\\ncathead\\ncatheads\\ncathect\\ncathected\\ncathecting\\ncathects\\ncathedra\\ncathedrae\\ncathedral\\ncathedrals\\ncathedras\\ncatheter\\ncatheterization\\ncatheters\\ncathexes\\ncathexis\\ncathode\\ncathodes\\ncathodic\\ncatholic\\ncathouse\\ncathouses\\ncation\\ncationic\\ncations\\ncatkin\\ncatkins\\ncatlike\\ncatlin\\ncatling\\ncatlings\\ncatlins\\ncatmint\\ncatmints\\ncatnap\\ncatnaper\\ncatnapers\\ncatnapped\\ncatnapping\\ncatnaps\\ncatnip\\ncatnips\\ncats\\ncatspaw\\ncatspaws\\ncatsup\\ncatsups\\ncattail\\ncattails\\ncattalo\\ncattaloes\\ncattalos\\ncatted\\ncattie\\ncattier\\ncatties\\ncattiest\\ncattily\\ncattiness\\ncattinesses\\ncatting\\ncattish\\ncattle\\ncattleman\\ncattlemen\\ncattleya\\ncattleyas\\ncatty\\ncatwalk\\ncatwalks\\ncaucus\\ncaucused\\ncaucuses\\ncaucusing\\ncaucussed\\ncaucusses\\ncaucussing\\ncaudad\\ncaudal\\ncaudally\\ncaudate\\ncaudated\\ncaudex\\ncaudexes\\ncaudices\\ncaudillo\\ncaudillos\\ncaudle\\ncaudles\\ncaught\\ncaul\\ncauld\\ncauldron\\ncauldrons\\ncaulds\\ncaules\\ncaulicle\\ncaulicles\\ncauliflower\\ncauliflowers\\ncauline\\ncaulis\\ncaulk\\ncaulked\\ncaulker\\ncaulkers\\ncaulking\\ncaulkings\\ncaulks\\ncauls\\ncausable\\ncausal\\ncausaless\\ncausality\\ncausally\\ncausals\\ncausation\\ncausations\\ncausative\\ncause\\ncaused\\ncauser\\ncauserie\\ncauseries\\ncausers\\ncauses\\ncauseway\\ncausewayed\\ncausewaying\\ncauseways\\ncausey\\ncauseys\\ncausing\\ncaustic\\ncaustics\\ncauteries\\ncauterization\\ncauterizations\\ncauterize\\ncauterized\\ncauterizes\\ncauterizing\\ncautery\\ncaution\\ncautionary\\ncautioned\\ncautioning\\ncautions\\ncautious\\ncautiously\\ncautiousness\\ncautiousnesses\\ncavalcade\\ncavalcades\\ncavalero\\ncavaleros\\ncavalier\\ncavaliered\\ncavaliering\\ncavalierly\\ncavalierness\\ncavaliernesses\\ncavaliers\\ncavalla\\ncavallas\\ncavallies\\ncavally\\ncavalries\\ncavalry\\ncavalryman\\ncavalrymen\\ncavatina\\ncavatinas\\ncavatine\\ncave\\ncaveat\\ncaveator\\ncaveators\\ncaveats\\ncaved\\ncavefish\\ncavefishes\\ncavelike\\ncaveman\\ncavemen\\ncaver\\ncavern\\ncaverned\\ncaverning\\ncavernous\\ncavernously\\ncaverns\\ncavers\\ncaves\\ncavetti\\ncavetto\\ncavettos\\ncaviar\\ncaviare\\ncaviares\\ncaviars\\ncavicorn\\ncavie\\ncavies\\ncavil\\ncaviled\\ncaviler\\ncavilers\\ncaviling\\ncavilled\\ncaviller\\ncavillers\\ncavilling\\ncavils\\ncaving\\ncavitary\\ncavitate\\ncavitated\\ncavitates\\ncavitating\\ncavitied\\ncavities\\ncavity\\ncavort\\ncavorted\\ncavorter\\ncavorters\\ncavorting\\ncavorts\\ncavy\\ncaw\\ncawed\\ncawing\\ncaws\\ncay\\ncayenne\\ncayenned\\ncayennes\\ncayman\\ncaymans\\ncays\\ncayuse\\ncayuses\\ncazique\\ncaziques\\ncease\\nceased\\nceases\\nceasing\\ncebid\\ncebids\\nceboid\\nceboids\\nceca\\ncecal\\ncecally\\ncecum\\ncedar\\ncedarn\\ncedars\\ncede\\nceded\\nceder\\nceders\\ncedes\\ncedi\\ncedilla\\ncedillas\\nceding\\ncedis\\ncedula\\ncedulas\\ncee\\ncees\\nceiba\\nceibas\\nceil\\nceiled\\nceiler\\nceilers\\nceiling\\nceilings\\nceils\\nceinture\\nceintures\\nceladon\\nceladons\\nceleb\\ncelebrant\\ncelebrants\\ncelebrate\\ncelebrated\\ncelebrates\\ncelebrating\\ncelebration\\ncelebrations\\ncelebrator\\ncelebrators\\ncelebrities\\ncelebrity\\ncelebs\\nceleriac\\nceleriacs\\nceleries\\ncelerities\\ncelerity\\ncelery\\ncelesta\\ncelestas\\nceleste\\ncelestes\\ncelestial\\nceliac\\ncelibacies\\ncelibacy\\ncelibate\\ncelibates\\ncell\\ncella\\ncellae\\ncellar\\ncellared\\ncellarer\\ncellarers\\ncellaret\\ncellarets\\ncellaring\\ncellars\\ncelled\\ncelli\\ncelling\\ncellist\\ncellists\\ncello\\ncellophane\\ncellophanes\\ncellos\\ncells\\ncellular\\ncellule\\ncellules\\ncellulose\\ncelluloses\\ncelom\\ncelomata\\nceloms\\ncelt\\ncelts\\ncembali\\ncembalo\\ncembalos\\ncement\\ncementa\\ncementation\\ncementations\\ncemented\\ncementer\\ncementers\\ncementing\\ncements\\ncementum\\ncemeteries\\ncemetery\\ncenacle\\ncenacles\\ncenobite\\ncenobites\\ncenotaph\\ncenotaphs\\ncenote\\ncenotes\\ncense\\ncensed\\ncenser\\ncensers\\ncenses\\ncensing\\ncensor\\ncensored\\ncensorial\\ncensoring\\ncensorious\\ncensoriously\\ncensoriousness\\ncensoriousnesses\\ncensors\\ncensorship\\ncensorships\\ncensual\\ncensure\\ncensured\\ncensurer\\ncensurers\\ncensures\\ncensuring\\ncensus\\ncensused\\ncensuses\\ncensusing\\ncent\\ncental\\ncentals\\ncentare\\ncentares\\ncentaur\\ncentauries\\ncentaurs\\ncentaury\\ncentavo\\ncentavos\\ncentennial\\ncentennials\\ncenter\\ncentered\\ncentering\\ncenterpiece\\ncenterpieces\\ncenters\\ncenteses\\ncentesis\\ncentiare\\ncentiares\\ncentigrade\\ncentile\\ncentiles\\ncentime\\ncentimes\\ncentimeter\\ncentimeters\\ncentimo\\ncentimos\\ncentipede\\ncentipedes\\ncentner\\ncentners\\ncento\\ncentones\\ncentos\\ncentra\\ncentral\\ncentraler\\ncentralest\\ncentralization\\ncentralizations\\ncentralize\\ncentralized\\ncentralizer\\ncentralizers\\ncentralizes\\ncentralizing\\ncentrally\\ncentrals\\ncentre\\ncentred\\ncentres\\ncentric\\ncentrifugal\\ncentrifugally\\ncentrifuge\\ncentrifuges\\ncentring\\ncentrings\\ncentripetal\\ncentripetally\\ncentrism\\ncentrisms\\ncentrist\\ncentrists\\ncentroid\\ncentroids\\ncentrum\\ncentrums\\ncents\\ncentum\\ncentums\\ncentuple\\ncentupled\\ncentuples\\ncentupling\\ncenturies\\ncenturion\\ncenturions\\ncentury\\nceorl\\nceorlish\\nceorls\\ncephalad\\ncephalic\\ncephalin\\ncephalins\\nceramal\\nceramals\\nceramic\\nceramics\\nceramist\\nceramists\\ncerastes\\ncerate\\ncerated\\ncerates\\nceratin\\nceratins\\nceratoid\\ncercaria\\ncercariae\\ncercarias\\ncerci\\ncercis\\ncercises\\ncercus\\ncere\\ncereal\\ncereals\\ncerebella\\ncerebellar\\ncerebellum\\ncerebellums\\ncerebra\\ncerebral\\ncerebrals\\ncerebrate\\ncerebrated\\ncerebrates\\ncerebrating\\ncerebration\\ncerebrations\\ncerebric\\ncerebrospinal\\ncerebrum\\ncerebrums\\ncered\\ncerement\\ncerements\\nceremonial\\nceremonies\\nceremonious\\nceremony\\nceres\\ncereus\\ncereuses\\nceria\\ncerias\\nceric\\ncering\\nceriph\\nceriphs\\ncerise\\ncerises\\ncerite\\ncerites\\ncerium\\nceriums\\ncermet\\ncermets\\ncernuous\\ncero\\nceros\\ncerotic\\ncerotype\\ncerotypes\\ncerous\\ncertain\\ncertainer\\ncertainest\\ncertainly\\ncertainties\\ncertainty\\ncertes\\ncertifiable\\ncertifiably\\ncertificate\\ncertificates\\ncertification\\ncertifications\\ncertified\\ncertifier\\ncertifiers\\ncertifies\\ncertify\\ncertifying\\ncertitude\\ncertitudes\\ncerulean\\nceruleans\\ncerumen\\ncerumens\\nceruse\\nceruses\\ncerusite\\ncerusites\\ncervelat\\ncervelats\\ncervical\\ncervices\\ncervine\\ncervix\\ncervixes\\ncesarean\\ncesareans\\ncesarian\\ncesarians\\ncesium\\ncesiums\\ncess\\ncessation\\ncessations\\ncessed\\ncesses\\ncessing\\ncession\\ncessions\\ncesspit\\ncesspits\\ncesspool\\ncesspools\\ncesta\\ncestas\\ncesti\\ncestode\\ncestodes\\ncestoi\\ncestoid\\ncestoids\\ncestos\\ncestus\\ncestuses\\ncesura\\ncesurae\\ncesuras\\ncetacean\\ncetaceans\\ncetane\\ncetanes\\ncete\\ncetes\\ncetologies\\ncetology\\nchabouk\\nchabouks\\nchabuk\\nchabuks\\nchacma\\nchacmas\\nchaconne\\nchaconnes\\nchad\\nchadarim\\nchadless\\nchads\\nchaeta\\nchaetae\\nchaetal\\nchafe\\nchafed\\nchafer\\nchafers\\nchafes\\nchaff\\nchaffed\\nchaffer\\nchaffered\\nchaffering\\nchaffers\\nchaffier\\nchaffiest\\nchaffing\\nchaffs\\nchaffy\\nchafing\\nchagrin\\nchagrined\\nchagrining\\nchagrinned\\nchagrinning\\nchagrins\\nchain\\nchaine\\nchained\\nchaines\\nchaining\\nchainman\\nchainmen\\nchains\\nchair\\nchaired\\nchairing\\nchairman\\nchairmaned\\nchairmaning\\nchairmanned\\nchairmanning\\nchairmans\\nchairmanship\\nchairmanships\\nchairmen\\nchairs\\nchairwoman\\nchairwomen\\nchaise\\nchaises\\nchalah\\nchalahs\\nchalaza\\nchalazae\\nchalazal\\nchalazas\\nchalcid\\nchalcids\\nchaldron\\nchaldrons\\nchaleh\\nchalehs\\nchalet\\nchalets\\nchalice\\nchaliced\\nchalices\\nchalk\\nchalkboard\\nchalkboards\\nchalked\\nchalkier\\nchalkiest\\nchalking\\nchalks\\nchalky\\nchallah\\nchallahs\\nchallenge\\nchallenged\\nchallenger\\nchallengers\\nchallenges\\nchallenging\\nchallie\\nchallies\\nchallis\\nchallises\\nchallot\\nchalloth\\nchally\\nchalone\\nchalones\\nchalot\\nchaloth\\nchalutz\\nchalutzim\\ncham\\nchamade\\nchamades\\nchamber\\nchambered\\nchambering\\nchambermaid\\nchambermaids\\nchambers\\nchambray\\nchambrays\\nchameleon\\nchameleons\\nchamfer\\nchamfered\\nchamfering\\nchamfers\\nchamfron\\nchamfrons\\nchamise\\nchamises\\nchamiso\\nchamisos\\nchammied\\nchammies\\nchammy\\nchammying\\nchamois\\nchamoised\\nchamoises\\nchamoising\\nchamoix\\nchamp\\nchampac\\nchampacs\\nchampagne\\nchampagnes\\nchampak\\nchampaks\\nchamped\\nchamper\\nchampers\\nchamping\\nchampion\\nchampioned\\nchampioning\\nchampions\\nchampionship\\nchampionships\\nchamps\\nchampy\\nchams\\nchance\\nchanced\\nchancel\\nchancelleries\\nchancellery\\nchancellor\\nchancellories\\nchancellors\\nchancellorship\\nchancellorships\\nchancellory\\nchancels\\nchanceries\\nchancery\\nchances\\nchancier\\nchanciest\\nchancily\\nchancing\\nchancre\\nchancres\\nchancy\\nchandelier\\nchandeliers\\nchandler\\nchandlers\\nchanfron\\nchanfrons\\nchang\\nchange\\nchangeable\\nchanged\\nchangeless\\nchanger\\nchangers\\nchanges\\nchanging\\nchangs\\nchannel\\nchanneled\\nchanneling\\nchannelled\\nchannelling\\nchannels\\nchanson\\nchansons\\nchant\\nchantage\\nchantages\\nchanted\\nchanter\\nchanters\\nchantey\\nchanteys\\nchanties\\nchanting\\nchantor\\nchantors\\nchantries\\nchantry\\nchants\\nchanty\\nchaos\\nchaoses\\nchaotic\\nchaotically\\nchap\\nchapbook\\nchapbooks\\nchape\\nchapeau\\nchapeaus\\nchapeaux\\nchapel\\nchapels\\nchaperon\\nchaperonage\\nchaperonages\\nchaperone\\nchaperoned\\nchaperones\\nchaperoning\\nchaperons\\nchapes\\nchapiter\\nchapiters\\nchaplain\\nchaplaincies\\nchaplaincy\\nchaplains\\nchaplet\\nchaplets\\nchapman\\nchapmen\\nchapped\\nchapping\\nchaps\\nchapt\\nchapter\\nchaptered\\nchaptering\\nchapters\\nchaqueta\\nchaquetas\\nchar\\ncharacid\\ncharacids\\ncharacin\\ncharacins\\ncharacter\\ncharacteristic\\ncharacteristically\\ncharacteristics\\ncharacterization\\ncharacterizations\\ncharacterize\\ncharacterized\\ncharacterizes\\ncharacterizing\\ncharacters\\ncharade\\ncharades\\ncharas\\ncharases\\ncharcoal\\ncharcoaled\\ncharcoaling\\ncharcoals\\nchard\\nchards\\nchare\\nchared\\nchares\\ncharge\\nchargeable\\ncharged\\ncharger\\nchargers\\ncharges\\ncharging\\ncharier\\nchariest\\ncharily\\ncharing\\nchariot\\ncharioted\\ncharioting\\nchariots\\ncharism\\ncharisma\\ncharismata\\ncharismatic\\ncharisms\\ncharities\\ncharity\\nchark\\ncharka\\ncharkas\\ncharked\\ncharkha\\ncharkhas\\ncharking\\ncharks\\ncharladies\\ncharlady\\ncharlatan\\ncharlatans\\ncharleston\\ncharlock\\ncharlocks\\ncharm\\ncharmed\\ncharmer\\ncharmers\\ncharming\\ncharminger\\ncharmingest\\ncharmingly\\ncharms\\ncharnel\\ncharnels\\ncharpai\\ncharpais\\ncharpoy\\ncharpoys\\ncharqui\\ncharquid\\ncharquis\\ncharr\\ncharred\\ncharrier\\ncharriest\\ncharring\\ncharro\\ncharros\\ncharrs\\ncharry\\nchars\\nchart\\ncharted\\ncharter\\nchartered\\nchartering\\ncharters\\ncharting\\nchartist\\nchartists\\nchartreuse\\nchartreuses\\ncharts\\ncharwoman\\ncharwomen\\nchary\\nchase\\nchased\\nchaser\\nchasers\\nchases\\nchasing\\nchasings\\nchasm\\nchasmal\\nchasmed\\nchasmic\\nchasms\\nchasmy\\nchasse\\nchassed\\nchasseing\\nchasses\\nchasseur\\nchasseurs\\nchassis\\nchaste\\nchastely\\nchasten\\nchastened\\nchasteness\\nchastenesses\\nchastening\\nchastens\\nchaster\\nchastest\\nchastise\\nchastised\\nchastisement\\nchastisements\\nchastises\\nchastising\\nchastities\\nchastity\\nchasuble\\nchasubles\\nchat\\nchateau\\nchateaus\\nchateaux\\nchats\\nchatted\\nchattel\\nchattels\\nchatter\\nchatterbox\\nchatterboxes\\nchattered\\nchatterer\\nchatterers\\nchattering\\nchatters\\nchattery\\nchattier\\nchattiest\\nchattily\\nchatting\\nchatty\\nchaufer\\nchaufers\\nchauffer\\nchauffers\\nchauffeur\\nchauffeured\\nchauffeuring\\nchauffeurs\\nchaunt\\nchaunted\\nchaunter\\nchaunters\\nchaunting\\nchaunts\\nchausses\\nchauvinism\\nchauvinisms\\nchauvinist\\nchauvinistic\\nchauvinists\\nchaw\\nchawed\\nchawer\\nchawers\\nchawing\\nchaws\\nchayote\\nchayotes\\nchazan\\nchazanim\\nchazans\\nchazzen\\nchazzenim\\nchazzens\\ncheap\\ncheapen\\ncheapened\\ncheapening\\ncheapens\\ncheaper\\ncheapest\\ncheapie\\ncheapies\\ncheapish\\ncheaply\\ncheapness\\ncheapnesses\\ncheaps\\ncheapskate\\ncheapskates\\ncheat\\ncheated\\ncheater\\ncheaters\\ncheating\\ncheats\\nchebec\\nchebecs\\nchechako\\nchechakos\\ncheck\\nchecked\\nchecker\\ncheckerboard\\ncheckerboards\\ncheckered\\ncheckering\\ncheckers\\nchecking\\nchecklist\\nchecklists\\ncheckmate\\ncheckmated\\ncheckmates\\ncheckmating\\ncheckoff\\ncheckoffs\\ncheckout\\ncheckouts\\ncheckpoint\\ncheckpoints\\ncheckrow\\ncheckrowed\\ncheckrowing\\ncheckrows\\nchecks\\ncheckup\\ncheckups\\ncheddar\\ncheddars\\ncheddite\\ncheddites\\ncheder\\ncheders\\nchedite\\nchedites\\ncheek\\ncheeked\\ncheekful\\ncheekfuls\\ncheekier\\ncheekiest\\ncheekily\\ncheeking\\ncheeks\\ncheeky\\ncheep\\ncheeped\\ncheeper\\ncheepers\\ncheeping\\ncheeps\\ncheer\\ncheered\\ncheerer\\ncheerers\\ncheerful\\ncheerfuller\\ncheerfullest\\ncheerfully\\ncheerfulness\\ncheerfulnesses\\ncheerier\\ncheeriest\\ncheerily\\ncheeriness\\ncheerinesses\\ncheering\\ncheerio\\ncheerios\\ncheerleader\\ncheerleaders\\ncheerless\\ncheerlessly\\ncheerlessness\\ncheerlessnesses\\ncheero\\ncheeros\\ncheers\\ncheery\\ncheese\\ncheesecloth\\ncheesecloths\\ncheesed\\ncheeses\\ncheesier\\ncheesiest\\ncheesily\\ncheesing\\ncheesy\\ncheetah\\ncheetahs\\nchef\\nchefdom\\nchefdoms\\nchefs\\nchegoe\\nchegoes\\nchela\\nchelae\\nchelas\\nchelate\\nchelated\\nchelates\\nchelating\\nchelator\\nchelators\\ncheloid\\ncheloids\\nchemic\\nchemical\\nchemically\\nchemicals\\nchemics\\nchemise\\nchemises\\nchemism\\nchemisms\\nchemist\\nchemistries\\nchemistry\\nchemists\\nchemotherapeutic\\nchemotherapeutical\\nchemotherapies\\nchemotherapy\\nchemurgies\\nchemurgy\\nchenille\\nchenilles\\nchenopod\\nchenopods\\ncheque\\nchequer\\nchequered\\nchequering\\nchequers\\ncheques\\ncherish\\ncherished\\ncherishes\\ncherishing\\ncheroot\\ncheroots\\ncherries\\ncherry\\nchert\\nchertier\\nchertiest\\ncherts\\ncherty\\ncherub\\ncherubic\\ncherubim\\ncherubs\\nchervil\\nchervils\\nchess\\nchessboard\\nchessboards\\nchesses\\nchessman\\nchessmen\\nchessplayer\\nchessplayers\\nchest\\nchested\\nchestful\\nchestfuls\\nchestier\\nchestiest\\nchestnut\\nchestnuts\\nchests\\nchesty\\nchetah\\nchetahs\\ncheth\\ncheths\\nchevalet\\nchevalets\\ncheveron\\ncheverons\\nchevied\\nchevies\\ncheviot\\ncheviots\\nchevron\\nchevrons\\nchevy\\nchevying\\nchew\\nchewable\\nchewed\\nchewer\\nchewers\\nchewier\\nchewiest\\nchewing\\nchewink\\nchewinks\\nchews\\nchewy\\nchez\\nchi\\nchia\\nchiao\\nchias\\nchiasm\\nchiasma\\nchiasmal\\nchiasmas\\nchiasmata\\nchiasmi\\nchiasmic\\nchiasms\\nchiasmus\\nchiastic\\nchiaus\\nchiauses\\nchibouk\\nchibouks\\nchic\\nchicane\\nchicaned\\nchicaner\\nchicaneries\\nchicaners\\nchicanery\\nchicanes\\nchicaning\\nchiccories\\nchiccory\\nchichi\\nchichis\\nchick\\nchickadee\\nchickadees\\nchicken\\nchickened\\nchickening\\nchickens\\nchickpea\\nchickpeas\\nchicks\\nchicle\\nchicles\\nchicly\\nchicness\\nchicnesses\\nchico\\nchicories\\nchicory\\nchicos\\nchics\\nchid\\nchidden\\nchide\\nchided\\nchider\\nchiders\\nchides\\nchiding\\nchief\\nchiefdom\\nchiefdoms\\nchiefer\\nchiefest\\nchiefly\\nchiefs\\nchieftain\\nchieftaincies\\nchieftaincy\\nchieftains\\nchiel\\nchield\\nchields\\nchiels\\nchiffon\\nchiffons\\nchigetai\\nchigetais\\nchigger\\nchiggers\\nchignon\\nchignons\\nchigoe\\nchigoes\\nchilblain\\nchilblains\\nchild\\nchildbearing\\nchildbed\\nchildbeds\\nchildbirth\\nchildbirths\\nchilde\\nchildes\\nchildhood\\nchildhoods\\nchilding\\nchildish\\nchildishly\\nchildishness\\nchildishnesses\\nchildless\\nchildlessness\\nchildlessnesses\\nchildlier\\nchildliest\\nchildlike\\nchildly\\nchildren\\nchile\\nchiles\\nchili\\nchiliad\\nchiliads\\nchiliasm\\nchiliasms\\nchiliast\\nchiliasts\\nchilies\\nchill\\nchilled\\nchiller\\nchillers\\nchillest\\nchilli\\nchillier\\nchillies\\nchilliest\\nchillily\\nchilliness\\nchillinesses\\nchilling\\nchills\\nchillum\\nchillums\\nchilly\\nchilopod\\nchilopods\\nchimaera\\nchimaeras\\nchimar\\nchimars\\nchimb\\nchimbley\\nchimbleys\\nchimblies\\nchimbly\\nchimbs\\nchime\\nchimed\\nchimer\\nchimera\\nchimeras\\nchimere\\nchimeres\\nchimeric\\nchimerical\\nchimers\\nchimes\\nchiming\\nchimla\\nchimlas\\nchimley\\nchimleys\\nchimney\\nchimneys\\nchimp\\nchimpanzee\\nchimpanzees\\nchimps\\nchin\\nchina\\nchinas\\nchinbone\\nchinbones\\nchinch\\nchinches\\nchinchier\\nchinchiest\\nchinchilla\\nchinchillas\\nchinchy\\nchine\\nchined\\nchines\\nchining\\nchink\\nchinked\\nchinkier\\nchinkiest\\nchinking\\nchinks\\nchinky\\nchinless\\nchinned\\nchinning\\nchino\\nchinone\\nchinones\\nchinook\\nchinooks\\nchinos\\nchins\\nchints\\nchintses\\nchintz\\nchintzes\\nchintzier\\nchintziest\\nchintzy\\nchip\\nchipmuck\\nchipmucks\\nchipmunk\\nchipmunks\\nchipped\\nchipper\\nchippered\\nchippering\\nchippers\\nchippie\\nchippies\\nchipping\\nchippy\\nchips\\nchirk\\nchirked\\nchirker\\nchirkest\\nchirking\\nchirks\\nchirm\\nchirmed\\nchirming\\nchirms\\nchiro\\nchiropodies\\nchiropodist\\nchiropodists\\nchiropody\\nchiropractic\\nchiropractics\\nchiropractor\\nchiropractors\\nchiros\\nchirp\\nchirped\\nchirper\\nchirpers\\nchirpier\\nchirpiest\\nchirpily\\nchirping\\nchirps\\nchirpy\\nchirr\\nchirre\\nchirred\\nchirres\\nchirring\\nchirrs\\nchirrup\\nchirruped\\nchirruping\\nchirrups\\nchirrupy\\nchis\\nchisel\\nchiseled\\nchiseler\\nchiselers\\nchiseling\\nchiselled\\nchiselling\\nchisels\\nchit\\nchital\\nchitchat\\nchitchats\\nchitchatted\\nchitchatting\\nchitin\\nchitins\\nchitlin\\nchitling\\nchitlings\\nchitlins\\nchiton\\nchitons\\nchits\\nchitter\\nchittered\\nchittering\\nchitters\\nchitties\\nchitty\\nchivalric\\nchivalries\\nchivalrous\\nchivalrously\\nchivalrousness\\nchivalrousnesses\\nchivalry\\nchivaree\\nchivareed\\nchivareeing\\nchivarees\\nchivari\\nchivaried\\nchivariing\\nchivaris\\nchive\\nchives\\nchivied\\nchivies\\nchivvied\\nchivvies\\nchivvy\\nchivvying\\nchivy\\nchivying\\nchlamydes\\nchlamys\\nchlamyses\\nchloral\\nchlorals\\nchlorambucil\\nchlorate\\nchlorates\\nchlordan\\nchlordans\\nchloric\\nchlorid\\nchloride\\nchlorides\\nchlorids\\nchlorin\\nchlorinate\\nchlorinated\\nchlorinates\\nchlorinating\\nchlorination\\nchlorinations\\nchlorinator\\nchlorinators\\nchlorine\\nchlorines\\nchlorins\\nchlorite\\nchlorites\\nchloroform\\nchloroformed\\nchloroforming\\nchloroforms\\nchlorophyll\\nchlorophylls\\nchlorous\\nchock\\nchocked\\nchockfull\\nchocking\\nchocks\\nchocolate\\nchocolates\\nchoice\\nchoicely\\nchoicer\\nchoices\\nchoicest\\nchoir\\nchoirboy\\nchoirboys\\nchoired\\nchoiring\\nchoirmaster\\nchoirmasters\\nchoirs\\nchoke\\nchoked\\nchoker\\nchokers\\nchokes\\nchokey\\nchokier\\nchokiest\\nchoking\\nchoky\\ncholate\\ncholates\\ncholer\\ncholera\\ncholeras\\ncholeric\\ncholers\\ncholesterol\\ncholesterols\\ncholine\\ncholines\\ncholla\\nchollas\\nchomp\\nchomped\\nchomping\\nchomps\\nchon\\nchoose\\nchooser\\nchoosers\\nchooses\\nchoosey\\nchoosier\\nchoosiest\\nchoosing\\nchoosy\\nchop\\nchopin\\nchopine\\nchopines\\nchopins\\nchopped\\nchopper\\nchoppers\\nchoppier\\nchoppiest\\nchoppily\\nchoppiness\\nchoppinesses\\nchopping\\nchoppy\\nchops\\nchopsticks\\nchoragi\\nchoragic\\nchoragus\\nchoraguses\\nchoral\\nchorale\\nchorales\\nchorally\\nchorals\\nchord\\nchordal\\nchordate\\nchordates\\nchorded\\nchording\\nchords\\nchore\\nchorea\\nchoreal\\nchoreas\\nchored\\nchoregi\\nchoregus\\nchoreguses\\nchoreic\\nchoreman\\nchoremen\\nchoreograph\\nchoreographed\\nchoreographer\\nchoreographers\\nchoreographic\\nchoreographies\\nchoreographing\\nchoreographs\\nchoreography\\nchoreoid\\nchores\\nchorial\\nchoriamb\\nchoriambs\\nchoric\\nchorine\\nchorines\\nchoring\\nchorioid\\nchorioids\\nchorion\\nchorions\\nchorister\\nchoristers\\nchorizo\\nchorizos\\nchoroid\\nchoroids\\nchortle\\nchortled\\nchortler\\nchortlers\\nchortles\\nchortling\\nchorus\\nchorused\\nchoruses\\nchorusing\\nchorussed\\nchorusses\\nchorussing\\nchose\\nchosen\\nchoses\\nchott\\nchotts\\nchough\\nchoughs\\nchouse\\nchoused\\nchouser\\nchousers\\nchouses\\nchoush\\nchoushes\\nchousing\\nchow\\nchowchow\\nchowchows\\nchowder\\nchowdered\\nchowdering\\nchowders\\nchowed\\nchowing\\nchows\\nchowse\\nchowsed\\nchowses\\nchowsing\\nchowtime\\nchowtimes\\nchresard\\nchresards\\nchrism\\nchrisma\\nchrismal\\nchrismon\\nchrismons\\nchrisms\\nchrisom\\nchrisoms\\nchristen\\nchristened\\nchristening\\nchristenings\\nchristens\\nchristie\\nchristies\\nchristy\\nchroma\\nchromas\\nchromate\\nchromates\\nchromatic\\nchrome\\nchromed\\nchromes\\nchromic\\nchromide\\nchromides\\nchroming\\nchromite\\nchromites\\nchromium\\nchromiums\\nchromize\\nchromized\\nchromizes\\nchromizing\\nchromo\\nchromos\\nchromosomal\\nchromosome\\nchromosomes\\nchromous\\nchromyl\\nchronaxies\\nchronaxy\\nchronic\\nchronicle\\nchronicled\\nchronicler\\nchroniclers\\nchronicles\\nchronicling\\nchronics\\nchronologic\\nchronological\\nchronologically\\nchronologies\\nchronology\\nchronometer\\nchronometers\\nchronon\\nchronons\\nchrysalides\\nchrysalis\\nchrysalises\\nchrysanthemum\\nchrysanthemums\\nchthonic\\nchub\\nchubasco\\nchubascos\\nchubbier\\nchubbiest\\nchubbily\\nchubbiness\\nchubbinesses\\nchubby\\nchubs\\nchuck\\nchucked\\nchuckies\\nchucking\\nchuckle\\nchuckled\\nchuckler\\nchucklers\\nchuckles\\nchuckling\\nchucks\\nchucky\\nchuddah\\nchuddahs\\nchuddar\\nchuddars\\nchudder\\nchudders\\nchufa\\nchufas\\nchuff\\nchuffed\\nchuffer\\nchuffest\\nchuffier\\nchuffiest\\nchuffing\\nchuffs\\nchuffy\\nchug\\nchugged\\nchugger\\nchuggers\\nchugging\\nchugs\\nchukar\\nchukars\\nchukka\\nchukkar\\nchukkars\\nchukkas\\nchukker\\nchukkers\\nchum\\nchummed\\nchummier\\nchummiest\\nchummily\\nchumming\\nchummy\\nchump\\nchumped\\nchumping\\nchumps\\nchums\\nchumship\\nchumships\\nchunk\\nchunked\\nchunkier\\nchunkiest\\nchunkily\\nchunking\\nchunks\\nchunky\\nchunter\\nchuntered\\nchuntering\\nchunters\\nchurch\\nchurched\\nchurches\\nchurchgoer\\nchurchgoers\\nchurchgoing\\nchurchgoings\\nchurchier\\nchurchiest\\nchurching\\nchurchlier\\nchurchliest\\nchurchly\\nchurchy\\nchurchyard\\nchurchyards\\nchurl\\nchurlish\\nchurls\\nchurn\\nchurned\\nchurner\\nchurners\\nchurning\\nchurnings\\nchurns\\nchurr\\nchurred\\nchurring\\nchurrs\\nchute\\nchuted\\nchutes\\nchuting\\nchutist\\nchutists\\nchutnee\\nchutnees\\nchutney\\nchutneys\\nchutzpa\\nchutzpah\\nchutzpahs\\nchutzpas\\nchyle\\nchyles\\nchylous\\nchyme\\nchymes\\nchymic\\nchymics\\nchymist\\nchymists\\nchymosin\\nchymosins\\nchymous\\nciao\\ncibol\\ncibols\\nciboria\\nciborium\\nciboule\\nciboules\\ncicada\\ncicadae\\ncicadas\\ncicala\\ncicalas\\ncicale\\ncicatrices\\ncicatrix\\ncicelies\\ncicely\\ncicero\\ncicerone\\ncicerones\\nciceroni\\nciceros\\ncichlid\\ncichlidae\\ncichlids\\ncicisbei\\ncicisbeo\\ncicoree\\ncicorees\\ncider\\nciders\\ncigar\\ncigaret\\ncigarets\\ncigarette\\ncigarettes\\ncigars\\ncilantro\\ncilantros\\ncilia\\nciliary\\nciliate\\nciliated\\nciliates\\ncilice\\ncilices\\ncilium\\ncimex\\ncimices\\ncinch\\ncinched\\ncinches\\ncinching\\ncinchona\\ncinchonas\\ncincture\\ncinctured\\ncinctures\\ncincturing\\ncinder\\ncindered\\ncindering\\ncinders\\ncindery\\ncine\\ncineast\\ncineaste\\ncineastes\\ncineasts\\ncinema\\ncinemas\\ncinematic\\ncineol\\ncineole\\ncineoles\\ncineols\\ncinerary\\ncinerin\\ncinerins\\ncines\\ncingula\\ncingulum\\ncinnabar\\ncinnabars\\ncinnamic\\ncinnamon\\ncinnamons\\ncinnamyl\\ncinnamyls\\ncinquain\\ncinquains\\ncinque\\ncinques\\ncion\\ncions\\ncipher\\nciphered\\nciphering\\nciphers\\nciphonies\\nciphony\\ncipolin\\ncipolins\\ncirca\\ncircle\\ncircled\\ncircler\\ncirclers\\ncircles\\ncirclet\\ncirclets\\ncircling\\ncircuit\\ncircuited\\ncircuities\\ncircuiting\\ncircuitous\\ncircuitries\\ncircuitry\\ncircuits\\ncircuity\\ncircular\\ncircularities\\ncircularity\\ncircularly\\ncirculars\\ncirculate\\ncirculated\\ncirculates\\ncirculating\\ncirculation\\ncirculations\\ncirculatory\\ncircumcise\\ncircumcised\\ncircumcises\\ncircumcising\\ncircumcision\\ncircumcisions\\ncircumference\\ncircumferences\\ncircumflex\\ncircumflexes\\ncircumlocution\\ncircumlocutions\\ncircumnavigate\\ncircumnavigated\\ncircumnavigates\\ncircumnavigating\\ncircumnavigation\\ncircumnavigations\\ncircumscribe\\ncircumscribed\\ncircumscribes\\ncircumscribing\\ncircumspect\\ncircumspection\\ncircumspections\\ncircumstance\\ncircumstances\\ncircumstantial\\ncircumvent\\ncircumvented\\ncircumventing\\ncircumvents\\ncircus\\ncircuses\\ncircusy\\ncirque\\ncirques\\ncirrate\\ncirrhoses\\ncirrhosis\\ncirrhotic\\ncirri\\ncirriped\\ncirripeds\\ncirrose\\ncirrous\\ncirrus\\ncirsoid\\ncisco\\nciscoes\\nciscos\\ncislunar\\ncissoid\\ncissoids\\ncist\\ncistern\\ncisterna\\ncisternae\\ncisterns\\ncistron\\ncistrons\\ncists\\ncitable\\ncitadel\\ncitadels\\ncitation\\ncitations\\ncitatory\\ncite\\nciteable\\ncited\\nciter\\nciters\\ncites\\ncithara\\ncitharas\\ncither\\ncithern\\ncitherns\\ncithers\\ncithren\\ncithrens\\ncitied\\ncities\\ncitified\\ncitifies\\ncitify\\ncitifying\\nciting\\ncitizen\\ncitizenries\\ncitizenry\\ncitizens\\ncitizenship\\ncitizenships\\ncitola\\ncitolas\\ncitole\\ncitoles\\ncitral\\ncitrals\\ncitrate\\ncitrated\\ncitrates\\ncitreous\\ncitric\\ncitrin\\ncitrine\\ncitrines\\ncitrins\\ncitron\\ncitrons\\ncitrous\\ncitrus\\ncitruses\\ncittern\\ncitterns\\ncity\\ncityfied\\ncityward\\ncivet\\ncivets\\ncivic\\ncivicism\\ncivicisms\\ncivics\\ncivie\\ncivies\\ncivil\\ncivilian\\ncivilians\\ncivilise\\ncivilised\\ncivilises\\ncivilising\\ncivilities\\ncivility\\ncivilization\\ncivilizations\\ncivilize\\ncivilized\\ncivilizes\\ncivilizing\\ncivilly\\ncivism\\ncivisms\\ncivvies\\ncivvy\\nclabber\\nclabbered\\nclabbering\\nclabbers\\nclach\\nclachan\\nclachans\\nclachs\\nclack\\nclacked\\nclacker\\nclackers\\nclacking\\nclacks\\nclad\\ncladding\\ncladdings\\ncladode\\ncladodes\\nclads\\nclag\\nclagged\\nclagging\\nclags\\nclaim\\nclaimant\\nclaimants\\nclaimed\\nclaimer\\nclaimers\\nclaiming\\nclaims\\nclairvoyance\\nclairvoyances\\nclairvoyant\\nclairvoyants\\nclam\\nclamant\\nclambake\\nclambakes\\nclamber\\nclambered\\nclambering\\nclambers\\nclammed\\nclammier\\nclammiest\\nclammily\\nclamminess\\nclamminesses\\nclamming\\nclammy\\nclamor\\nclamored\\nclamorer\\nclamorers\\nclamoring\\nclamorous\\nclamors\\nclamour\\nclamoured\\nclamouring\\nclamours\\nclamp\\nclamped\\nclamper\\nclampers\\nclamping\\nclamps\\nclams\\nclamworm\\nclamworms\\nclan\\nclandestine\\nclang\\nclanged\\nclanging\\nclangor\\nclangored\\nclangoring\\nclangors\\nclangour\\nclangoured\\nclangouring\\nclangours\\nclangs\\nclank\\nclanked\\nclanking\\nclanks\\nclannish\\nclannishness\\nclannishnesses\\nclans\\nclansman\\nclansmen\\nclap\\nclapboard\\nclapboards\\nclapped\\nclapper\\nclappers\\nclapping\\nclaps\\nclapt\\nclaptrap\\nclaptraps\\nclaque\\nclaquer\\nclaquers\\nclaques\\nclaqueur\\nclaqueurs\\nclarence\\nclarences\\nclaret\\nclarets\\nclaries\\nclarification\\nclarifications\\nclarified\\nclarifies\\nclarify\\nclarifying\\nclarinet\\nclarinetist\\nclarinetists\\nclarinets\\nclarinettist\\nclarinettists\\nclarion\\nclarioned\\nclarioning\\nclarions\\nclarities\\nclarity\\nclarkia\\nclarkias\\nclaro\\nclaroes\\nclaros\\nclary\\nclash\\nclashed\\nclasher\\nclashers\\nclashes\\nclashing\\nclasp\\nclasped\\nclasper\\nclaspers\\nclasping\\nclasps\\nclaspt\\nclass\\nclassed\\nclasser\\nclassers\\nclasses\\nclassic\\nclassical\\nclassically\\nclassicism\\nclassicisms\\nclassicist\\nclassicists\\nclassics\\nclassier\\nclassiest\\nclassification\\nclassifications\\nclassified\\nclassifies\\nclassify\\nclassifying\\nclassily\\nclassing\\nclassis\\nclassless\\nclassmate\\nclassmates\\nclassroom\\nclassrooms\\nclassy\\nclast\\nclastic\\nclastics\\nclasts\\nclatter\\nclattered\\nclattering\\nclatters\\nclattery\\nclaucht\\nclaught\\nclaughted\\nclaughting\\nclaughts\\nclausal\\nclause\\nclauses\\nclaustrophobia\\nclaustrophobias\\nclavate\\nclave\\nclaver\\nclavered\\nclavering\\nclavers\\nclavichord\\nclavichords\\nclavicle\\nclavicles\\nclavier\\nclaviers\\nclaw\\nclawed\\nclawer\\nclawers\\nclawing\\nclawless\\nclaws\\nclaxon\\nclaxons\\nclay\\nclaybank\\nclaybanks\\nclayed\\nclayey\\nclayier\\nclayiest\\nclaying\\nclayish\\nclaylike\\nclaymore\\nclaymores\\nclaypan\\nclaypans\\nclays\\nclayware\\nclaywares\\nclean\\ncleaned\\ncleaner\\ncleaners\\ncleanest\\ncleaning\\ncleanlier\\ncleanliest\\ncleanliness\\ncleanlinesses\\ncleanly\\ncleanness\\ncleannesses\\ncleans\\ncleanse\\ncleansed\\ncleanser\\ncleansers\\ncleanses\\ncleansing\\ncleanup\\ncleanups\\nclear\\nclearance\\nclearances\\ncleared\\nclearer\\nclearers\\nclearest\\nclearing\\nclearings\\nclearly\\nclearness\\nclearnesses\\nclears\\ncleat\\ncleated\\ncleating\\ncleats\\ncleavage\\ncleavages\\ncleave\\ncleaved\\ncleaver\\ncleavers\\ncleaves\\ncleaving\\ncleek\\ncleeked\\ncleeking\\ncleeks\\nclef\\nclefs\\ncleft\\nclefts\\nclematis\\nclematises\\nclemencies\\nclemency\\nclement\\nclench\\nclenched\\nclenches\\nclenching\\ncleome\\ncleomes\\nclepe\\ncleped\\nclepes\\ncleping\\nclept\\nclergies\\nclergy\\nclergyman\\nclergymen\\ncleric\\nclerical\\nclericals\\nclerics\\nclerid\\nclerids\\nclerihew\\nclerihews\\nclerisies\\nclerisy\\nclerk\\nclerkdom\\nclerkdoms\\nclerked\\nclerking\\nclerkish\\nclerklier\\nclerkliest\\nclerkly\\nclerks\\nclerkship\\nclerkships\\ncleveite\\ncleveites\\nclever\\ncleverer\\ncleverest\\ncleverly\\ncleverness\\nclevernesses\\nclevis\\nclevises\\nclew\\nclewed\\nclewing\\nclews\\ncliche\\ncliched\\ncliches\\nclick\\nclicked\\nclicker\\nclickers\\nclicking\\nclicks\\nclient\\ncliental\\nclients\\ncliff\\ncliffier\\ncliffiest\\ncliffs\\ncliffy\\nclift\\nclifts\\nclimactic\\nclimatal\\nclimate\\nclimates\\nclimatic\\nclimax\\nclimaxed\\nclimaxes\\nclimaxing\\nclimb\\nclimbed\\nclimber\\nclimbers\\nclimbing\\nclimbs\\nclime\\nclimes\\nclinal\\nclinally\\nclinch\\nclinched\\nclincher\\nclinchers\\nclinches\\nclinching\\ncline\\nclines\\ncling\\nclinged\\nclinger\\nclingers\\nclingier\\nclingiest\\nclinging\\nclings\\nclingy\\nclinic\\nclinical\\nclinically\\nclinician\\nclinicians\\nclinics\\nclink\\nclinked\\nclinker\\nclinkered\\nclinkering\\nclinkers\\nclinking\\nclinks\\nclip\\nclipboard\\nclipboards\\nclipped\\nclipper\\nclippers\\nclipping\\nclippings\\nclips\\nclipt\\nclique\\ncliqued\\ncliqueier\\ncliqueiest\\ncliques\\ncliquey\\ncliquier\\ncliquiest\\ncliquing\\ncliquish\\ncliquy\\nclitella\\nclitoral\\nclitoric\\nclitoris\\nclitorises\\nclivers\\ncloaca\\ncloacae\\ncloacal\\ncloak\\ncloaked\\ncloaking\\ncloaks\\nclobber\\nclobbered\\nclobbering\\nclobbers\\ncloche\\ncloches\\nclock\\nclocked\\nclocker\\nclockers\\nclocking\\nclocks\\nclockwise\\nclockwork\\nclod\\ncloddier\\ncloddiest\\ncloddish\\ncloddy\\nclodpate\\nclodpates\\nclodpole\\nclodpoles\\nclodpoll\\nclodpolls\\nclods\\nclog\\nclogged\\ncloggier\\ncloggiest\\nclogging\\ncloggy\\nclogs\\ncloister\\ncloistered\\ncloistering\\ncloisters\\nclomb\\nclomp\\nclomped\\nclomping\\nclomps\\nclon\\nclonal\\nclonally\\nclone\\ncloned\\nclones\\nclonic\\ncloning\\nclonism\\nclonisms\\nclonk\\nclonked\\nclonking\\nclonks\\nclons\\nclonus\\nclonuses\\ncloot\\ncloots\\nclop\\nclopped\\nclopping\\nclops\\nclosable\\nclose\\nclosed\\nclosely\\ncloseness\\nclosenesses\\ncloseout\\ncloseouts\\ncloser\\nclosers\\ncloses\\nclosest\\ncloset\\ncloseted\\ncloseting\\nclosets\\nclosing\\nclosings\\nclosure\\nclosured\\nclosures\\nclosuring\\nclot\\ncloth\\nclothe\\nclothed\\nclothes\\nclothier\\nclothiers\\nclothing\\nclothings\\ncloths\\nclots\\nclotted\\nclotting\\nclotty\\ncloture\\nclotured\\nclotures\\ncloturing\\ncloud\\ncloudburst\\ncloudbursts\\nclouded\\ncloudier\\ncloudiest\\ncloudily\\ncloudiness\\ncloudinesses\\nclouding\\ncloudless\\ncloudlet\\ncloudlets\\nclouds\\ncloudy\\nclough\\ncloughs\\nclour\\ncloured\\nclouring\\nclours\\nclout\\nclouted\\nclouter\\nclouters\\nclouting\\nclouts\\nclove\\ncloven\\nclover\\nclovers\\ncloves\\nclowder\\nclowders\\nclown\\nclowned\\nclowneries\\nclownery\\nclowning\\nclownish\\nclownishly\\nclownishness\\nclownishnesses\\nclowns\\ncloy\\ncloyed\\ncloying\\ncloys\\ncloze\\nclub\\nclubable\\nclubbed\\nclubber\\nclubbers\\nclubbier\\nclubbiest\\nclubbing\\nclubby\\nclubfeet\\nclubfoot\\nclubfooted\\nclubhand\\nclubhands\\nclubhaul\\nclubhauled\\nclubhauling\\nclubhauls\\nclubman\\nclubmen\\nclubroot\\nclubroots\\nclubs\\ncluck\\nclucked\\nclucking\\nclucks\\nclue\\nclued\\nclueing\\nclues\\ncluing\\nclumber\\nclumbers\\nclump\\nclumped\\nclumpier\\nclumpiest\\nclumping\\nclumpish\\nclumps\\nclumpy\\nclumsier\\nclumsiest\\nclumsily\\nclumsiness\\nclumsinesses\\nclumsy\\nclung\\nclunk\\nclunked\\nclunker\\nclunkers\\nclunking\\nclunks\\nclupeid\\nclupeids\\nclupeoid\\nclupeoids\\ncluster\\nclustered\\nclustering\\nclusters\\nclustery\\nclutch\\nclutched\\nclutches\\nclutching\\nclutchy\\nclutter\\ncluttered\\ncluttering\\nclutters\\nclypeal\\nclypeate\\nclypei\\nclypeus\\nclyster\\nclysters\\ncoach\\ncoached\\ncoacher\\ncoachers\\ncoaches\\ncoaching\\ncoachman\\ncoachmen\\ncoact\\ncoacted\\ncoacting\\ncoaction\\ncoactions\\ncoactive\\ncoacts\\ncoadmire\\ncoadmired\\ncoadmires\\ncoadmiring\\ncoadmit\\ncoadmits\\ncoadmitted\\ncoadmitting\\ncoaeval\\ncoaevals\\ncoagencies\\ncoagency\\ncoagent\\ncoagents\\ncoagula\\ncoagulant\\ncoagulants\\ncoagulate\\ncoagulated\\ncoagulates\\ncoagulating\\ncoagulation\\ncoagulations\\ncoagulum\\ncoagulums\\ncoal\\ncoala\\ncoalas\\ncoalbin\\ncoalbins\\ncoalbox\\ncoalboxes\\ncoaled\\ncoaler\\ncoalers\\ncoalesce\\ncoalesced\\ncoalescent\\ncoalesces\\ncoalescing\\ncoalfield\\ncoalfields\\ncoalfish\\ncoalfishes\\ncoalhole\\ncoalholes\\ncoalified\\ncoalifies\\ncoalify\\ncoalifying\\ncoaling\\ncoalition\\ncoalitions\\ncoalless\\ncoalpit\\ncoalpits\\ncoals\\ncoalsack\\ncoalsacks\\ncoalshed\\ncoalsheds\\ncoalyard\\ncoalyards\\ncoaming\\ncoamings\\ncoannex\\ncoannexed\\ncoannexes\\ncoannexing\\ncoappear\\ncoappeared\\ncoappearing\\ncoappears\\ncoapt\\ncoapted\\ncoapting\\ncoapts\\ncoarse\\ncoarsely\\ncoarsen\\ncoarsened\\ncoarseness\\ncoarsenesses\\ncoarsening\\ncoarsens\\ncoarser\\ncoarsest\\ncoassist\\ncoassisted\\ncoassisting\\ncoassists\\ncoassume\\ncoassumed\\ncoassumes\\ncoassuming\\ncoast\\ncoastal\\ncoasted\\ncoaster\\ncoasters\\ncoasting\\ncoastings\\ncoastline\\ncoastlines\\ncoasts\\ncoat\\ncoated\\ncoatee\\ncoatees\\ncoater\\ncoaters\\ncoati\\ncoating\\ncoatings\\ncoatis\\ncoatless\\ncoatrack\\ncoatracks\\ncoatroom\\ncoatrooms\\ncoats\\ncoattail\\ncoattails\\ncoattend\\ncoattended\\ncoattending\\ncoattends\\ncoattest\\ncoattested\\ncoattesting\\ncoattests\\ncoauthor\\ncoauthored\\ncoauthoring\\ncoauthors\\ncoauthorship\\ncoauthorships\\ncoax\\ncoaxal\\ncoaxed\\ncoaxer\\ncoaxers\\ncoaxes\\ncoaxial\\ncoaxing\\ncob\\ncobalt\\ncobaltic\\ncobalts\\ncobb\\ncobber\\ncobbers\\ncobbier\\ncobbiest\\ncobble\\ncobbled\\ncobbler\\ncobblers\\ncobbles\\ncobblestone\\ncobblestones\\ncobbling\\ncobbs\\ncobby\\ncobia\\ncobias\\ncoble\\ncobles\\ncobnut\\ncobnuts\\ncobra\\ncobras\\ncobs\\ncobweb\\ncobwebbed\\ncobwebbier\\ncobwebbiest\\ncobwebbing\\ncobwebby\\ncobwebs\\ncoca\\ncocain\\ncocaine\\ncocaines\\ncocains\\ncocaptain\\ncocaptains\\ncocas\\ncoccal\\ncocci\\ncoccic\\ncoccid\\ncoccidia\\ncoccids\\ncoccoid\\ncoccoids\\ncoccous\\ncoccus\\ncoccyges\\ncoccyx\\ncoccyxes\\ncochair\\ncochaired\\ncochairing\\ncochairman\\ncochairmen\\ncochairs\\ncochampion\\ncochampions\\ncochin\\ncochins\\ncochlea\\ncochleae\\ncochlear\\ncochleas\\ncocinera\\ncocineras\\ncock\\ncockade\\ncockaded\\ncockades\\ncockatoo\\ncockatoos\\ncockbill\\ncockbilled\\ncockbilling\\ncockbills\\ncockboat\\ncockboats\\ncockcrow\\ncockcrows\\ncocked\\ncocker\\ncockered\\ncockerel\\ncockerels\\ncockering\\ncockers\\ncockeye\\ncockeyed\\ncockeyes\\ncockfight\\ncockfights\\ncockier\\ncockiest\\ncockily\\ncockiness\\ncockinesses\\ncocking\\ncockish\\ncockle\\ncockled\\ncockles\\ncocklike\\ncockling\\ncockloft\\ncocklofts\\ncockney\\ncockneys\\ncockpit\\ncockpits\\ncockroach\\ncockroaches\\ncocks\\ncockshies\\ncockshut\\ncockshuts\\ncockshy\\ncockspur\\ncockspurs\\ncocksure\\ncocktail\\ncocktailed\\ncocktailing\\ncocktails\\ncockup\\ncockups\\ncocky\\ncoco\\ncocoa\\ncocoanut\\ncocoanuts\\ncocoas\\ncocobola\\ncocobolas\\ncocobolo\\ncocobolos\\ncocomat\\ncocomats\\ncocomposer\\ncocomposers\\ncoconspirator\\ncoconspirators\\ncoconut\\ncoconuts\\ncocoon\\ncocooned\\ncocooning\\ncocoons\\ncocos\\ncocotte\\ncocottes\\ncocreate\\ncocreated\\ncocreates\\ncocreating\\ncocreator\\ncocreators\\ncod\\ncoda\\ncodable\\ncodas\\ncodder\\ncodders\\ncoddle\\ncoddled\\ncoddler\\ncoddlers\\ncoddles\\ncoddling\\ncode\\ncodebtor\\ncodebtors\\ncoded\\ncodefendant\\ncodefendants\\ncodeia\\ncodeias\\ncodein\\ncodeina\\ncodeinas\\ncodeine\\ncodeines\\ncodeins\\ncodeless\\ncoden\\ncodens\\ncoder\\ncoderive\\ncoderived\\ncoderives\\ncoderiving\\ncoders\\ncodes\\ncodesigner\\ncodesigners\\ncodevelop\\ncodeveloped\\ncodeveloper\\ncodevelopers\\ncodeveloping\\ncodevelops\\ncodex\\ncodfish\\ncodfishes\\ncodger\\ncodgers\\ncodices\\ncodicil\\ncodicils\\ncodification\\ncodifications\\ncodified\\ncodifier\\ncodifiers\\ncodifies\\ncodify\\ncodifying\\ncoding\\ncodirector\\ncodirectors\\ncodiscoverer\\ncodiscoverers\\ncodlin\\ncodling\\ncodlings\\ncodlins\\ncodon\\ncodons\\ncodpiece\\ncodpieces\\ncods\\ncoed\\ncoeditor\\ncoeditors\\ncoeds\\ncoeducation\\ncoeducational\\ncoeducations\\ncoeffect\\ncoeffects\\ncoefficient\\ncoefficients\\ncoeliac\\ncoelom\\ncoelomata\\ncoelome\\ncoelomes\\ncoelomic\\ncoeloms\\ncoembodied\\ncoembodies\\ncoembody\\ncoembodying\\ncoemploy\\ncoemployed\\ncoemploying\\ncoemploys\\ncoempt\\ncoempted\\ncoempting\\ncoempts\\ncoenact\\ncoenacted\\ncoenacting\\ncoenacts\\ncoenamor\\ncoenamored\\ncoenamoring\\ncoenamors\\ncoendure\\ncoendured\\ncoendures\\ncoenduring\\ncoenure\\ncoenures\\ncoenuri\\ncoenurus\\ncoenzyme\\ncoenzymes\\ncoequal\\ncoequals\\ncoequate\\ncoequated\\ncoequates\\ncoequating\\ncoerce\\ncoerced\\ncoercer\\ncoercers\\ncoerces\\ncoercing\\ncoercion\\ncoercions\\ncoercive\\ncoerect\\ncoerected\\ncoerecting\\ncoerects\\ncoeval\\ncoevally\\ncoevals\\ncoexecutor\\ncoexecutors\\ncoexert\\ncoexerted\\ncoexerting\\ncoexerts\\ncoexist\\ncoexisted\\ncoexistence\\ncoexistences\\ncoexistent\\ncoexisting\\ncoexists\\ncoextend\\ncoextended\\ncoextending\\ncoextends\\ncofactor\\ncofactors\\ncofeature\\ncofeatures\\ncoff\\ncoffee\\ncoffeehouse\\ncoffeehouses\\ncoffeepot\\ncoffeepots\\ncoffees\\ncoffer\\ncoffered\\ncoffering\\ncoffers\\ncoffin\\ncoffined\\ncoffing\\ncoffining\\ncoffins\\ncoffle\\ncoffled\\ncoffles\\ncoffling\\ncoffret\\ncoffrets\\ncoffs\\ncofinance\\ncofinanced\\ncofinances\\ncofinancing\\ncofounder\\ncofounders\\ncoft\\ncog\\ncogencies\\ncogency\\ncogent\\ncogently\\ncogged\\ncogging\\ncogitate\\ncogitated\\ncogitates\\ncogitating\\ncogitation\\ncogitations\\ncogitative\\ncogito\\ncogitos\\ncognac\\ncognacs\\ncognate\\ncognates\\ncognise\\ncognised\\ncognises\\ncognising\\ncognition\\ncognitions\\ncognitive\\ncognizable\\ncognizance\\ncognizances\\ncognizant\\ncognize\\ncognized\\ncognizer\\ncognizers\\ncognizes\\ncognizing\\ncognomen\\ncognomens\\ncognomina\\ncognovit\\ncognovits\\ncogon\\ncogons\\ncogs\\ncogway\\ncogways\\ncogweel\\ncogweels\\ncohabit\\ncohabitation\\ncohabitations\\ncohabited\\ncohabiting\\ncohabits\\ncoheir\\ncoheiress\\ncoheiresses\\ncoheirs\\ncohere\\ncohered\\ncoherence\\ncoherences\\ncoherent\\ncoherently\\ncoherer\\ncoherers\\ncoheres\\ncohering\\ncohesion\\ncohesions\\ncohesive\\ncoho\\ncohobate\\ncohobated\\ncohobates\\ncohobating\\ncohog\\ncohogs\\ncohort\\ncohorts\\ncohos\\ncohosh\\ncohoshes\\ncohostess\\ncohostesses\\ncohune\\ncohunes\\ncoif\\ncoifed\\ncoiffe\\ncoiffed\\ncoiffes\\ncoiffeur\\ncoiffeurs\\ncoiffing\\ncoiffure\\ncoiffured\\ncoiffures\\ncoiffuring\\ncoifing\\ncoifs\\ncoign\\ncoigne\\ncoigned\\ncoignes\\ncoigning\\ncoigns\\ncoil\\ncoiled\\ncoiler\\ncoilers\\ncoiling\\ncoils\\ncoin\\ncoinable\\ncoinage\\ncoinages\\ncoincide\\ncoincided\\ncoincidence\\ncoincidences\\ncoincident\\ncoincidental\\ncoincides\\ncoinciding\\ncoined\\ncoiner\\ncoiners\\ncoinfer\\ncoinferred\\ncoinferring\\ncoinfers\\ncoinhere\\ncoinhered\\ncoinheres\\ncoinhering\\ncoining\\ncoinmate\\ncoinmates\\ncoins\\ncoinsure\\ncoinsured\\ncoinsures\\ncoinsuring\\ncointer\\ncointerred\\ncointerring\\ncointers\\ncoinventor\\ncoinventors\\ncoinvestigator\\ncoinvestigators\\ncoir\\ncoirs\\ncoistrel\\ncoistrels\\ncoistril\\ncoistrils\\ncoital\\ncoitally\\ncoition\\ncoitions\\ncoitus\\ncoituses\\ncoke\\ncoked\\ncokes\\ncoking\\ncol\\ncola\\ncolander\\ncolanders\\ncolas\\ncold\\ncolder\\ncoldest\\ncoldish\\ncoldly\\ncoldness\\ncoldnesses\\ncolds\\ncole\\ncoles\\ncoleseed\\ncoleseeds\\ncoleslaw\\ncoleslaws\\ncolessee\\ncolessees\\ncolessor\\ncolessors\\ncoleus\\ncoleuses\\ncolewort\\ncoleworts\\ncolic\\ncolicin\\ncolicine\\ncolicines\\ncolicins\\ncolicky\\ncolics\\ncolies\\ncoliform\\ncoliforms\\ncolin\\ncolinear\\ncolins\\ncoliseum\\ncoliseums\\ncolistin\\ncolistins\\ncolitic\\ncolitis\\ncolitises\\ncollaborate\\ncollaborated\\ncollaborates\\ncollaborating\\ncollaboration\\ncollaborations\\ncollaborative\\ncollaborator\\ncollaborators\\ncollage\\ncollagen\\ncollagens\\ncollages\\ncollapse\\ncollapsed\\ncollapses\\ncollapsible\\ncollapsing\\ncollar\\ncollarbone\\ncollarbones\\ncollard\\ncollards\\ncollared\\ncollaret\\ncollarets\\ncollaring\\ncollarless\\ncollars\\ncollate\\ncollated\\ncollateral\\ncollaterals\\ncollates\\ncollating\\ncollator\\ncollators\\ncolleague\\ncolleagues\\ncollect\\ncollectable\\ncollected\\ncollectible\\ncollecting\\ncollection\\ncollections\\ncollectivism\\ncollector\\ncollectors\\ncollects\\ncolleen\\ncolleens\\ncollege\\ncolleger\\ncollegers\\ncolleges\\ncollegia\\ncollegian\\ncollegians\\ncollegiate\\ncollet\\ncolleted\\ncolleting\\ncollets\\ncollide\\ncollided\\ncollides\\ncolliding\\ncollie\\ncollied\\ncollier\\ncollieries\\ncolliers\\ncolliery\\ncollies\\ncollins\\ncollinses\\ncollision\\ncollisions\\ncollogue\\ncollogued\\ncollogues\\ncolloguing\\ncolloid\\ncolloidal\\ncolloids\\ncollop\\ncollops\\ncolloquial\\ncolloquialism\\ncolloquialisms\\ncolloquies\\ncolloquy\\ncollude\\ncolluded\\ncolluder\\ncolluders\\ncolludes\\ncolluding\\ncollusion\\ncollusions\\ncolluvia\\ncolly\\ncollying\\ncollyria\\ncolocate\\ncolocated\\ncolocates\\ncolocating\\ncolog\\ncologne\\ncologned\\ncolognes\\ncologs\\ncolon\\ncolonel\\ncolonels\\ncolones\\ncoloni\\ncolonial\\ncolonials\\ncolonic\\ncolonies\\ncolonise\\ncolonised\\ncolonises\\ncolonising\\ncolonist\\ncolonists\\ncolonize\\ncolonized\\ncolonizes\\ncolonizing\\ncolonnade\\ncolonnades\\ncolons\\ncolonus\\ncolony\\ncolophon\\ncolophons\\ncolor\\ncolorado\\ncolorant\\ncolorants\\ncolored\\ncoloreds\\ncolorer\\ncolorers\\ncolorfast\\ncolorful\\ncoloring\\ncolorings\\ncolorism\\ncolorisms\\ncolorist\\ncolorists\\ncolorless\\ncolors\\ncolossal\\ncolossi\\ncolossus\\ncolossuses\\ncolotomies\\ncolotomy\\ncolour\\ncoloured\\ncolourer\\ncolourers\\ncolouring\\ncolours\\ncolpitis\\ncolpitises\\ncols\\ncolt\\ncolter\\ncolters\\ncoltish\\ncolts\\ncolubrid\\ncolubrids\\ncolugo\\ncolugos\\ncolumbic\\ncolumel\\ncolumels\\ncolumn\\ncolumnal\\ncolumnar\\ncolumned\\ncolumnist\\ncolumnists\\ncolumns\\ncolure\\ncolures\\ncoly\\ncolza\\ncolzas\\ncoma\\ncomae\\ncomaker\\ncomakers\\ncomal\\ncomanagement\\ncomanagements\\ncomanager\\ncomanagers\\ncomas\\ncomate\\ncomates\\ncomatic\\ncomatik\\ncomatiks\\ncomatose\\ncomatula\\ncomatulae\\ncomb\\ncombat\\ncombatant\\ncombatants\\ncombated\\ncombater\\ncombaters\\ncombating\\ncombative\\ncombats\\ncombatted\\ncombatting\\ncombe\\ncombed\\ncomber\\ncombers\\ncombes\\ncombination\\ncombinations\\ncombine\\ncombined\\ncombiner\\ncombiners\\ncombines\\ncombing\\ncombings\\ncombining\\ncomblike\\ncombo\\ncombos\\ncombs\\ncombust\\ncombusted\\ncombustibilities\\ncombustibility\\ncombustible\\ncombusting\\ncombustion\\ncombustions\\ncombustive\\ncombusts\\ncomby\\ncome\\ncomeback\\ncomebacks\\ncomedian\\ncomedians\\ncomedic\\ncomedienne\\ncomediennes\\ncomedies\\ncomedo\\ncomedones\\ncomedos\\ncomedown\\ncomedowns\\ncomedy\\ncomelier\\ncomeliest\\ncomelily\\ncomely\\ncomer\\ncomers\\ncomes\\ncomet\\ncometary\\ncometh\\ncomether\\ncomethers\\ncometic\\ncomets\\ncomfier\\ncomfiest\\ncomfit\\ncomfits\\ncomfort\\ncomfortable\\ncomfortably\\ncomforted\\ncomforter\\ncomforters\\ncomforting\\ncomfortless\\ncomforts\\ncomfrey\\ncomfreys\\ncomfy\\ncomic\\ncomical\\ncomics\\ncoming\\ncomings\\ncomitia\\ncomitial\\ncomities\\ncomity\\ncomma\\ncommand\\ncommandant\\ncommandants\\ncommanded\\ncommandeer\\ncommandeered\\ncommandeering\\ncommandeers\\ncommander\\ncommanders\\ncommanding\\ncommandment\\ncommandments\\ncommando\\ncommandoes\\ncommandos\\ncommands\\ncommas\\ncommata\\ncommemorate\\ncommemorated\\ncommemorates\\ncommemorating\\ncommemoration\\ncommemorations\\ncommemorative\\ncommence\\ncommenced\\ncommencement\\ncommencements\\ncommences\\ncommencing\\ncommend\\ncommendable\\ncommendation\\ncommendations\\ncommended\\ncommending\\ncommends\\ncomment\\ncommentaries\\ncommentary\\ncommentator\\ncommentators\\ncommented\\ncommenting\\ncomments\\ncommerce\\ncommerced\\ncommerces\\ncommercial\\ncommercialize\\ncommercialized\\ncommercializes\\ncommercializing\\ncommercially\\ncommercials\\ncommercing\\ncommie\\ncommies\\ncommiserate\\ncommiserated\\ncommiserates\\ncommiserating\\ncommiseration\\ncommiserations\\ncommissaries\\ncommissary\\ncommission\\ncommissioned\\ncommissioner\\ncommissioners\\ncommissioning\\ncommissions\\ncommit\\ncommitment\\ncommitments\\ncommits\\ncommittal\\ncommittals\\ncommitted\\ncommittee\\ncommittees\\ncommitting\\ncommix\\ncommixed\\ncommixes\\ncommixing\\ncommixt\\ncommode\\ncommodes\\ncommodious\\ncommodities\\ncommodity\\ncommodore\\ncommodores\\ncommon\\ncommoner\\ncommoners\\ncommonest\\ncommonly\\ncommonplace\\ncommonplaces\\ncommons\\ncommonweal\\ncommonweals\\ncommonwealth\\ncommonwealths\\ncommotion\\ncommotions\\ncommove\\ncommoved\\ncommoves\\ncommoving\\ncommunal\\ncommune\\ncommuned\\ncommunes\\ncommunicable\\ncommunicate\\ncommunicated\\ncommunicates\\ncommunicating\\ncommunication\\ncommunications\\ncommunicative\\ncommuning\\ncommunion\\ncommunions\\ncommunique\\ncommuniques\\ncommunism\\ncommunist\\ncommunistic\\ncommunists\\ncommunities\\ncommunity\\ncommutation\\ncommutations\\ncommute\\ncommuted\\ncommuter\\ncommuters\\ncommutes\\ncommuting\\ncommy\\ncomose\\ncomous\\ncomp\\ncompact\\ncompacted\\ncompacter\\ncompactest\\ncompacting\\ncompactly\\ncompactness\\ncompactnesses\\ncompacts\\ncompadre\\ncompadres\\ncompanied\\ncompanies\\ncompanion\\ncompanions\\ncompanionship\\ncompanionships\\ncompany\\ncompanying\\ncomparable\\ncomparative\\ncomparatively\\ncompare\\ncompared\\ncomparer\\ncomparers\\ncompares\\ncomparing\\ncomparison\\ncomparisons\\ncompart\\ncomparted\\ncomparting\\ncompartment\\ncompartments\\ncomparts\\ncompass\\ncompassed\\ncompasses\\ncompassing\\ncompassion\\ncompassionate\\ncompassions\\ncompatability\\ncompatable\\ncompatibilities\\ncompatibility\\ncompatible\\ncompatriot\\ncompatriots\\ncomped\\ncompeer\\ncompeered\\ncompeering\\ncompeers\\ncompel\\ncompelled\\ncompelling\\ncompels\\ncompend\\ncompendia\\ncompendium\\ncompends\\ncompensate\\ncompensated\\ncompensates\\ncompensating\\ncompensation\\ncompensations\\ncompensatory\\ncompere\\ncompered\\ncomperes\\ncompering\\ncompete\\ncompeted\\ncompetence\\ncompetences\\ncompetencies\\ncompetency\\ncompetent\\ncompetently\\ncompetes\\ncompeting\\ncompetition\\ncompetitions\\ncompetitive\\ncompetitor\\ncompetitors\\ncompilation\\ncompilations\\ncompile\\ncompiled\\ncompiler\\ncompilers\\ncompiles\\ncompiling\\ncomping\\ncomplacence\\ncomplacences\\ncomplacencies\\ncomplacency\\ncomplacent\\ncomplain\\ncomplainant\\ncomplainants\\ncomplained\\ncomplainer\\ncomplainers\\ncomplaining\\ncomplains\\ncomplaint\\ncomplaints\\ncompleat\\ncomplect\\ncomplected\\ncomplecting\\ncomplects\\ncomplement\\ncomplementary\\ncomplemented\\ncomplementing\\ncomplements\\ncomplete\\ncompleted\\ncompletely\\ncompleteness\\ncompletenesses\\ncompleter\\ncompletes\\ncompletest\\ncompleting\\ncompletion\\ncompletions\\ncomplex\\ncomplexed\\ncomplexer\\ncomplexes\\ncomplexest\\ncomplexing\\ncomplexion\\ncomplexioned\\ncomplexions\\ncomplexity\\ncompliance\\ncompliances\\ncompliant\\ncomplicate\\ncomplicated\\ncomplicates\\ncomplicating\\ncomplication\\ncomplications\\ncomplice\\ncomplices\\ncomplicities\\ncomplicity\\ncomplied\\ncomplier\\ncompliers\\ncomplies\\ncompliment\\ncomplimentary\\ncompliments\\ncomplin\\ncompline\\ncomplines\\ncomplins\\ncomplot\\ncomplots\\ncomplotted\\ncomplotting\\ncomply\\ncomplying\\ncompo\\ncompone\\ncomponent\\ncomponents\\ncompony\\ncomport\\ncomported\\ncomporting\\ncomportment\\ncomportments\\ncomports\\ncompos\\ncompose\\ncomposed\\ncomposer\\ncomposers\\ncomposes\\ncomposing\\ncomposite\\ncomposites\\ncomposition\\ncompositions\\ncompost\\ncomposted\\ncomposting\\ncomposts\\ncomposure\\ncompote\\ncompotes\\ncompound\\ncompounded\\ncompounding\\ncompounds\\ncomprehend\\ncomprehended\\ncomprehending\\ncomprehends\\ncomprehensible\\ncomprehension\\ncomprehensions\\ncomprehensive\\ncomprehensiveness\\ncomprehensivenesses\\ncompress\\ncompressed\\ncompresses\\ncompressing\\ncompression\\ncompressions\\ncompressor\\ncompressors\\ncomprise\\ncomprised\\ncomprises\\ncomprising\\ncomprize\\ncomprized\\ncomprizes\\ncomprizing\\ncompromise\\ncompromised\\ncompromises\\ncompromising\\ncomps\\ncompt\\ncompted\\ncompting\\ncomptroller\\ncomptrollers\\ncompts\\ncompulsion\\ncompulsions\\ncompulsive\\ncompulsory\\ncompunction\\ncompunctions\\ncomputation\\ncomputations\\ncompute\\ncomputed\\ncomputer\\ncomputerize\\ncomputerized\\ncomputerizes\\ncomputerizing\\ncomputers\\ncomputes\\ncomputing\\ncomrade\\ncomrades\\ncomradeship\\ncomradeships\\ncomte\\ncomtemplate\\ncomtemplated\\ncomtemplates\\ncomtemplating\\ncomtes\\ncon\\nconation\\nconations\\nconative\\nconatus\\nconcannon\\nconcatenate\\nconcatenated\\nconcatenates\\nconcatenating\\nconcave\\nconcaved\\nconcaves\\nconcaving\\nconcavities\\nconcavity\\nconceal\\nconcealed\\nconcealing\\nconcealment\\nconcealments\\nconceals\\nconcede\\nconceded\\nconceder\\nconceders\\nconcedes\\nconceding\\nconceit\\nconceited\\nconceiting\\nconceits\\nconceivable\\nconceivably\\nconceive\\nconceived\\nconceives\\nconceiving\\nconcent\\nconcentrate\\nconcentrated\\nconcentrates\\nconcentrating\\nconcentration\\nconcentrations\\nconcentric\\nconcents\\nconcept\\nconception\\nconceptions\\nconcepts\\nconceptual\\nconceptualize\\nconceptualized\\nconceptualizes\\nconceptualizing\\nconceptually\\nconcern\\nconcerned\\nconcerning\\nconcerns\\nconcert\\nconcerted\\nconcerti\\nconcertina\\nconcerting\\nconcerto\\nconcertos\\nconcerts\\nconcession\\nconcessions\\nconch\\nconcha\\nconchae\\nconchal\\nconches\\nconchies\\nconchoid\\nconchoids\\nconchs\\nconchy\\nconciliate\\nconciliated\\nconciliates\\nconciliating\\nconciliation\\nconciliations\\nconciliatory\\nconcise\\nconcisely\\nconciseness\\nconcisenesses\\nconciser\\nconcisest\\nconclave\\nconclaves\\nconclude\\nconcluded\\nconcludes\\nconcluding\\nconclusion\\nconclusions\\nconclusive\\nconclusively\\nconcoct\\nconcocted\\nconcocting\\nconcoction\\nconcoctions\\nconcocts\\nconcomitant\\nconcomitantly\\nconcomitants\\nconcord\\nconcordance\\nconcordances\\nconcordant\\nconcords\\nconcrete\\nconcreted\\nconcretes\\nconcreting\\nconcretion\\nconcretions\\nconcubine\\nconcubines\\nconcur\\nconcurred\\nconcurrence\\nconcurrences\\nconcurrent\\nconcurrently\\nconcurring\\nconcurs\\nconcuss\\nconcussed\\nconcusses\\nconcussing\\nconcussion\\nconcussions\\ncondemn\\ncondemnation\\ncondemnations\\ncondemned\\ncondemning\\ncondemns\\ncondensation\\ncondensations\\ncondense\\ncondensed\\ncondenses\\ncondensing\\ncondescend\\ncondescended\\ncondescending\\ncondescends\\ncondescension\\ncondescensions\\ncondign\\ncondiment\\ncondiments\\ncondition\\nconditional\\nconditionally\\nconditioned\\nconditioner\\nconditioners\\nconditioning\\nconditions\\ncondole\\ncondoled\\ncondolence\\ncondolences\\ncondoler\\ncondolers\\ncondoles\\ncondoling\\ncondom\\ncondominium\\ncondominiums\\ncondoms\\ncondone\\ncondoned\\ncondoner\\ncondoners\\ncondones\\ncondoning\\ncondor\\ncondores\\ncondors\\nconduce\\nconduced\\nconducer\\nconducers\\nconduces\\nconducing\\nconduct\\nconducted\\nconducting\\nconduction\\nconductions\\nconductive\\nconductor\\nconductors\\nconducts\\nconduit\\nconduits\\ncondylar\\ncondyle\\ncondyles\\ncone\\nconed\\nconelrad\\nconelrads\\nconenose\\nconenoses\\nconepate\\nconepates\\nconepatl\\nconepatls\\ncones\\nconey\\nconeys\\nconfab\\nconfabbed\\nconfabbing\\nconfabs\\nconfect\\nconfected\\nconfecting\\nconfects\\nconfederacies\\nconfederacy\\nconfer\\nconferee\\nconferees\\nconference\\nconferences\\nconferred\\nconferring\\nconfers\\nconferva\\nconfervae\\nconfervas\\nconfess\\nconfessed\\nconfesses\\nconfessing\\nconfession\\nconfessional\\nconfessionals\\nconfessions\\nconfessor\\nconfessors\\nconfetti\\nconfetto\\nconfidant\\nconfidants\\nconfide\\nconfided\\nconfidence\\nconfidences\\nconfident\\nconfidential\\nconfidentiality\\nconfider\\nconfiders\\nconfides\\nconfiding\\nconfiguration\\nconfigurations\\nconfigure\\nconfigured\\nconfigures\\nconfiguring\\nconfine\\nconfined\\nconfinement\\nconfinements\\nconfiner\\nconfiners\\nconfines\\nconfining\\nconfirm\\nconfirmation\\nconfirmations\\nconfirmed\\nconfirming\\nconfirms\\nconfiscate\\nconfiscated\\nconfiscates\\nconfiscating\\nconfiscation\\nconfiscations\\nconflagration\\nconflagrations\\nconflate\\nconflated\\nconflates\\nconflating\\nconflict\\nconflicted\\nconflicting\\nconflicts\\nconflux\\nconfluxes\\nconfocal\\nconform\\nconformed\\nconforming\\nconformities\\nconformity\\nconforms\\nconfound\\nconfounded\\nconfounding\\nconfounds\\nconfrere\\nconfreres\\nconfront\\nconfrontation\\nconfrontations\\nconfronted\\nconfronting\\nconfronts\\nconfuse\\nconfused\\nconfuses\\nconfusing\\nconfusion\\nconfusions\\nconfute\\nconfuted\\nconfuter\\nconfuters\\nconfutes\\nconfuting\\nconga\\ncongaed\\ncongaing\\ncongas\\nconge\\ncongeal\\ncongealed\\ncongealing\\ncongeals\\ncongee\\ncongeed\\ncongeeing\\ncongees\\ncongener\\ncongeners\\ncongenial\\ncongenialities\\ncongeniality\\ncongenital\\nconger\\ncongers\\nconges\\ncongest\\ncongested\\ncongesting\\ncongestion\\ncongestions\\ncongestive\\ncongests\\ncongii\\ncongius\\nconglobe\\nconglobed\\nconglobes\\nconglobing\\nconglomerate\\nconglomerated\\nconglomerates\\nconglomerating\\nconglomeration\\nconglomerations\\ncongo\\ncongoes\\ncongos\\ncongou\\ncongous\\ncongratulate\\ncongratulated\\ncongratulates\\ncongratulating\\ncongratulation\\ncongratulations\\ncongratulatory\\ncongregate\\ncongregated\\ncongregates\\ncongregating\\ncongregation\\ncongregational\\ncongregations\\ncongresional\\ncongress\\ncongressed\\ncongresses\\ncongressing\\ncongressman\\ncongressmen\\ncongresswoman\\ncongresswomen\\ncongruence\\ncongruences\\ncongruent\\ncongruities\\ncongruity\\ncongruous\\nconi\\nconic\\nconical\\nconicities\\nconicity\\nconics\\nconidia\\nconidial\\nconidian\\nconidium\\nconies\\nconifer\\nconiferous\\nconifers\\nconiine\\nconiines\\nconin\\nconine\\nconines\\nconing\\nconins\\nconium\\nconiums\\nconjectural\\nconjecture\\nconjectured\\nconjectures\\nconjecturing\\nconjoin\\nconjoined\\nconjoining\\nconjoins\\nconjoint\\nconjugal\\nconjugate\\nconjugated\\nconjugates\\nconjugating\\nconjugation\\nconjugations\\nconjunct\\nconjunction\\nconjunctions\\nconjunctive\\nconjunctivitis\\nconjuncts\\nconjure\\nconjured\\nconjurer\\nconjurers\\nconjures\\nconjuring\\nconjuror\\nconjurors\\nconk\\nconked\\nconker\\nconkers\\nconking\\nconks\\nconky\\nconn\\nconnate\\nconnect\\nconnected\\nconnecting\\nconnection\\nconnections\\nconnective\\nconnector\\nconnectors\\nconnects\\nconned\\nconner\\nconners\\nconning\\nconnivance\\nconnivances\\nconnive\\nconnived\\nconniver\\nconnivers\\nconnives\\nconniving\\nconnoisseur\\nconnoisseurs\\nconnotation\\nconnotations\\nconnote\\nconnoted\\nconnotes\\nconnoting\\nconns\\nconnubial\\nconodont\\nconodonts\\nconoid\\nconoidal\\nconoids\\nconquer\\nconquered\\nconquering\\nconqueror\\nconquerors\\nconquers\\nconquest\\nconquests\\nconquian\\nconquians\\ncons\\nconscience\\nconsciences\\nconscientious\\nconscientiously\\nconscious\\nconsciously\\nconsciousness\\nconsciousnesses\\nconscript\\nconscripted\\nconscripting\\nconscription\\nconscriptions\\nconscripts\\nconsecrate\\nconsecrated\\nconsecrates\\nconsecrating\\nconsecration\\nconsecrations\\nconsecutive\\nconsecutively\\nconsensus\\nconsensuses\\nconsent\\nconsented\\nconsenting\\nconsents\\nconsequence\\nconsequences\\nconsequent\\nconsequential\\nconsequently\\nconsequents\\nconservation\\nconservationist\\nconservationists\\nconservations\\nconservatism\\nconservatisms\\nconservative\\nconservatives\\nconservatories\\nconservatory\\nconserve\\nconserved\\nconserves\\nconserving\\nconsider\\nconsiderable\\nconsiderably\\nconsiderate\\nconsiderately\\nconsiderateness\\nconsideratenesses\\nconsideration\\nconsiderations\\nconsidered\\nconsidering\\nconsiders\\nconsign\\nconsigned\\nconsignee\\nconsignees\\nconsigning\\nconsignment\\nconsignments\\nconsignor\\nconsignors\\nconsigns\\nconsist\\nconsisted\\nconsistencies\\nconsistency\\nconsistent\\nconsistently\\nconsisting\\nconsists\\nconsol\\nconsolation\\nconsole\\nconsoled\\nconsoler\\nconsolers\\nconsoles\\nconsolidate\\nconsolidated\\nconsolidates\\nconsolidating\\nconsolidation\\nconsolidations\\nconsoling\\nconsols\\nconsomme\\nconsommes\\nconsonance\\nconsonances\\nconsonant\\nconsonantal\\nconsonants\\nconsort\\nconsorted\\nconsorting\\nconsortium\\nconsortiums\\nconsorts\\nconspicuous\\nconspicuously\\nconspiracies\\nconspiracy\\nconspirator\\nconspirators\\nconspire\\nconspired\\nconspires\\nconspiring\\nconstable\\nconstables\\nconstabularies\\nconstabulary\\nconstancies\\nconstancy\\nconstant\\nconstantly\\nconstants\\nconstellation\\nconstellations\\nconsternation\\nconsternations\\nconstipate\\nconstipated\\nconstipates\\nconstipating\\nconstipation\\nconstipations\\nconstituent\\nconstituents\\nconstitute\\nconstituted\\nconstitutes\\nconstituting\\nconstitution\\nconstitutional\\nconstitutionality\\nconstrain\\nconstrained\\nconstraining\\nconstrains\\nconstraint\\nconstraints\\nconstriction\\nconstrictions\\nconstrictive\\nconstruct\\nconstructed\\nconstructing\\nconstruction\\nconstructions\\nconstructive\\nconstructs\\nconstrue\\nconstrued\\nconstrues\\nconstruing\\nconsul\\nconsular\\nconsulate\\nconsulates\\nconsuls\\nconsult\\nconsultant\\nconsultants\\nconsultation\\nconsultations\\nconsulted\\nconsulting\\nconsults\\nconsumable\\nconsume\\nconsumed\\nconsumer\\nconsumers\\nconsumes\\nconsuming\\nconsummate\\nconsummated\\nconsummates\\nconsummating\\nconsummation\\nconsummations\\nconsumption\\nconsumptions\\nconsumptive\\ncontact\\ncontacted\\ncontacting\\ncontacts\\ncontagia\\ncontagion\\ncontagions\\ncontagious\\ncontain\\ncontained\\ncontainer\\ncontainers\\ncontaining\\ncontainment\\ncontainments\\ncontains\\ncontaminate\\ncontaminated\\ncontaminates\\ncontaminating\\ncontamination\\ncontaminations\\nconte\\ncontemn\\ncontemned\\ncontemning\\ncontemns\\ncontemplate\\ncontemplated\\ncontemplates\\ncontemplating\\ncontemplation\\ncontemplations\\ncontemplative\\ncontemporaneous\\ncontemporaries\\ncontemporary\\ncontempt\\ncontemptible\\ncontempts\\ncontemptuous\\ncontemptuously\\ncontend\\ncontended\\ncontender\\ncontenders\\ncontending\\ncontends\\ncontent\\ncontented\\ncontentedly\\ncontentedness\\ncontentednesses\\ncontenting\\ncontention\\ncontentions\\ncontentious\\ncontentment\\ncontentments\\ncontents\\ncontes\\ncontest\\ncontestable\\ncontestably\\ncontestant\\ncontestants\\ncontested\\ncontesting\\ncontests\\ncontext\\ncontexts\\ncontiguities\\ncontiguity\\ncontiguous\\ncontinence\\ncontinences\\ncontinent\\ncontinental\\ncontinents\\ncontingencies\\ncontingency\\ncontingent\\ncontingents\\ncontinua\\ncontinual\\ncontinually\\ncontinuance\\ncontinuances\\ncontinuation\\ncontinuations\\ncontinue\\ncontinued\\ncontinues\\ncontinuing\\ncontinuities\\ncontinuity\\ncontinuo\\ncontinuos\\ncontinuous\\ncontinuousities\\ncontinuousity\\nconto\\ncontort\\ncontorted\\ncontorting\\ncontortion\\ncontortions\\ncontorts\\ncontos\\ncontour\\ncontoured\\ncontouring\\ncontours\\ncontra\\ncontraband\\ncontrabands\\ncontraception\\ncontraceptions\\ncontraceptive\\ncontraceptives\\ncontract\\ncontracted\\ncontracting\\ncontraction\\ncontractions\\ncontractor\\ncontractors\\ncontracts\\ncontractual\\ncontradict\\ncontradicted\\ncontradicting\\ncontradiction\\ncontradictions\\ncontradictory\\ncontradicts\\ncontrail\\ncontrails\\ncontraindicate\\ncontraindicated\\ncontraindicates\\ncontraindicating\\ncontraption\\ncontraptions\\ncontraries\\ncontrarily\\ncontrariwise\\ncontrary\\ncontrast\\ncontrasted\\ncontrasting\\ncontrasts\\ncontravene\\ncontravened\\ncontravenes\\ncontravening\\ncontribute\\ncontributed\\ncontributes\\ncontributing\\ncontribution\\ncontributions\\ncontributor\\ncontributors\\ncontributory\\ncontrite\\ncontrition\\ncontritions\\ncontrivance\\ncontrivances\\ncontrive\\ncontrived\\ncontriver\\ncontrivers\\ncontrives\\ncontriving\\ncontrol\\ncontrollable\\ncontrolled\\ncontroller\\ncontrollers\\ncontrolling\\ncontrols\\ncontroversial\\ncontroversies\\ncontroversy\\ncontrovert\\ncontroverted\\ncontrovertible\\ncontroverting\\ncontroverts\\ncontumaceous\\ncontumacies\\ncontumacy\\ncontumelies\\ncontumely\\ncontuse\\ncontused\\ncontuses\\ncontusing\\ncontusion\\ncontusions\\nconundrum\\nconundrums\\nconus\\nconvalesce\\nconvalesced\\nconvalescence\\nconvalescences\\nconvalescent\\nconvalesces\\nconvalescing\\nconvect\\nconvected\\nconvecting\\nconvection\\nconvectional\\nconvections\\nconvective\\nconvects\\nconvene\\nconvened\\nconvener\\nconveners\\nconvenes\\nconvenience\\nconveniences\\nconvenient\\nconveniently\\nconvening\\nconvent\\nconvented\\nconventing\\nconvention\\nconventional\\nconventionally\\nconventions\\nconvents\\nconverge\\nconverged\\nconvergence\\nconvergences\\nconvergencies\\nconvergency\\nconvergent\\nconverges\\nconverging\\nconversant\\nconversation\\nconversational\\nconversations\\nconverse\\nconversed\\nconversely\\nconverses\\nconversing\\nconversion\\nconversions\\nconvert\\nconverted\\nconverter\\nconverters\\nconvertible\\nconvertibles\\nconverting\\nconvertor\\nconvertors\\nconverts\\nconvex\\nconvexes\\nconvexities\\nconvexity\\nconvexly\\nconvey\\nconveyance\\nconveyances\\nconveyed\\nconveyer\\nconveyers\\nconveying\\nconveyor\\nconveyors\\nconveys\\nconvict\\nconvicted\\nconvicting\\nconviction\\nconvictions\\nconvicts\\nconvince\\nconvinced\\nconvinces\\nconvincing\\nconvivial\\nconvivialities\\nconviviality\\nconvocation\\nconvocations\\nconvoke\\nconvoked\\nconvoker\\nconvokers\\nconvokes\\nconvoking\\nconvoluted\\nconvolution\\nconvolutions\\nconvolve\\nconvolved\\nconvolves\\nconvolving\\nconvoy\\nconvoyed\\nconvoying\\nconvoys\\nconvulse\\nconvulsed\\nconvulses\\nconvulsing\\nconvulsion\\nconvulsions\\nconvulsive\\ncony\\ncoo\\ncooch\\ncooches\\ncooed\\ncooee\\ncooeed\\ncooeeing\\ncooees\\ncooer\\ncooers\\ncooey\\ncooeyed\\ncooeying\\ncooeys\\ncoof\\ncoofs\\ncooing\\ncooingly\\ncook\\ncookable\\ncookbook\\ncookbooks\\ncooked\\ncooker\\ncookeries\\ncookers\\ncookery\\ncookey\\ncookeys\\ncookie\\ncookies\\ncooking\\ncookings\\ncookless\\ncookout\\ncookouts\\ncooks\\ncookshop\\ncookshops\\ncookware\\ncookwares\\ncooky\\ncool\\ncoolant\\ncoolants\\ncooled\\ncooler\\ncoolers\\ncoolest\\ncoolie\\ncoolies\\ncooling\\ncoolish\\ncoolly\\ncoolness\\ncoolnesses\\ncools\\ncooly\\ncoomb\\ncoombe\\ncoombes\\ncoombs\\ncoon\\ncooncan\\ncooncans\\ncoons\\ncoonskin\\ncoonskins\\ncoontie\\ncoonties\\ncoop\\ncooped\\ncooper\\ncooperate\\ncooperated\\ncooperates\\ncooperating\\ncooperation\\ncooperative\\ncooperatives\\ncoopered\\ncooperies\\ncoopering\\ncoopers\\ncoopery\\ncooping\\ncoops\\ncoopt\\ncoopted\\ncoopting\\ncooption\\ncooptions\\ncoopts\\ncoordinate\\ncoordinated\\ncoordinates\\ncoordinating\\ncoordination\\ncoordinations\\ncoordinator\\ncoordinators\\ncoos\\ncoot\\ncootie\\ncooties\\ncoots\\ncop\\ncopaiba\\ncopaibas\\ncopal\\ncopalm\\ncopalms\\ncopals\\ncoparent\\ncoparents\\ncopartner\\ncopartners\\ncopartnership\\ncopartnerships\\ncopastor\\ncopastors\\ncopatron\\ncopatrons\\ncope\\ncopeck\\ncopecks\\ncoped\\ncopemate\\ncopemates\\ncopen\\ncopens\\ncopepod\\ncopepods\\ncoper\\ncopers\\ncopes\\ncopied\\ncopier\\ncopiers\\ncopies\\ncopihue\\ncopihues\\ncopilot\\ncopilots\\ncoping\\ncopings\\ncopious\\ncopiously\\ncopiousness\\ncopiousnesses\\ncoplanar\\ncoplot\\ncoplots\\ncoplotted\\ncoplotting\\ncopped\\ncopper\\ncopperah\\ncopperahs\\ncopperas\\ncopperases\\ncoppered\\ncopperhead\\ncopperheads\\ncoppering\\ncoppers\\ncoppery\\ncoppice\\ncoppiced\\ncoppices\\ncopping\\ncoppra\\ncoppras\\ncopra\\ncoprah\\ncoprahs\\ncopras\\ncopremia\\ncopremias\\ncopremic\\ncopresident\\ncopresidents\\ncoprincipal\\ncoprincipals\\ncoprisoner\\ncoprisoners\\ncoproduce\\ncoproduced\\ncoproducer\\ncoproducers\\ncoproduces\\ncoproducing\\ncoproduction\\ncoproductions\\ncopromote\\ncopromoted\\ncopromoter\\ncopromoters\\ncopromotes\\ncopromoting\\ncoproprietor\\ncoproprietors\\ncoproprietorship\\ncoproprietorships\\ncops\\ncopse\\ncopses\\ncopter\\ncopters\\ncopublish\\ncopublished\\ncopublisher\\ncopublishers\\ncopublishes\\ncopublishing\\ncopula\\ncopulae\\ncopular\\ncopulas\\ncopulate\\ncopulated\\ncopulates\\ncopulating\\ncopulation\\ncopulations\\ncopulative\\ncopulatives\\ncopy\\ncopybook\\ncopybooks\\ncopyboy\\ncopyboys\\ncopycat\\ncopycats\\ncopycatted\\ncopycatting\\ncopydesk\\ncopydesks\\ncopyhold\\ncopyholds\\ncopying\\ncopyist\\ncopyists\\ncopyright\\ncopyrighted\\ncopyrighting\\ncopyrights\\ncoquet\\ncoquetries\\ncoquetry\\ncoquets\\ncoquette\\ncoquetted\\ncoquettes\\ncoquetting\\ncoquille\\ncoquilles\\ncoquina\\ncoquinas\\ncoquito\\ncoquitos\\ncoracle\\ncoracles\\ncoracoid\\ncoracoids\\ncoral\\ncorals\\ncoranto\\ncorantoes\\ncorantos\\ncorban\\ncorbans\\ncorbeil\\ncorbeils\\ncorbel\\ncorbeled\\ncorbeling\\ncorbelled\\ncorbelling\\ncorbels\\ncorbie\\ncorbies\\ncorbina\\ncorbinas\\ncorby\\ncord\\ncordage\\ncordages\\ncordate\\ncorded\\ncorder\\ncorders\\ncordial\\ncordialities\\ncordiality\\ncordially\\ncordials\\ncording\\ncordite\\ncordites\\ncordless\\ncordlike\\ncordoba\\ncordobas\\ncordon\\ncordoned\\ncordoning\\ncordons\\ncordovan\\ncordovans\\ncords\\ncorduroy\\ncorduroyed\\ncorduroying\\ncorduroys\\ncordwain\\ncordwains\\ncordwood\\ncordwoods\\ncordy\\ncore\\ncorecipient\\ncorecipients\\ncored\\ncoredeem\\ncoredeemed\\ncoredeeming\\ncoredeems\\ncoreign\\ncoreigns\\ncorelate\\ncorelated\\ncorelates\\ncorelating\\ncoreless\\ncoremia\\ncoremium\\ncorer\\ncorers\\ncores\\ncoresident\\ncoresidents\\ncorf\\ncorgi\\ncorgis\\ncoria\\ncoring\\ncorium\\ncork\\ncorkage\\ncorkages\\ncorked\\ncorker\\ncorkers\\ncorkier\\ncorkiest\\ncorking\\ncorklike\\ncorks\\ncorkscrew\\ncorkscrews\\ncorkwood\\ncorkwoods\\ncorky\\ncorm\\ncormel\\ncormels\\ncormlike\\ncormoid\\ncormorant\\ncormorants\\ncormous\\ncorms\\ncorn\\ncornball\\ncornballs\\ncorncake\\ncorncakes\\ncorncob\\ncorncobs\\ncorncrib\\ncorncribs\\ncornea\\ncorneal\\ncorneas\\ncorned\\ncornel\\ncornels\\ncorneous\\ncorner\\ncornered\\ncornering\\ncorners\\ncornerstone\\ncornerstones\\ncornet\\ncornetcies\\ncornetcy\\ncornets\\ncornfed\\ncornhusk\\ncornhusks\\ncornice\\ncorniced\\ncornices\\ncorniche\\ncorniches\\ncornicing\\ncornicle\\ncornicles\\ncornier\\ncorniest\\ncornily\\ncorning\\ncornmeal\\ncornmeals\\ncorns\\ncornstalk\\ncornstalks\\ncornstarch\\ncornstarches\\ncornu\\ncornua\\ncornual\\ncornucopia\\ncornucopias\\ncornus\\ncornuses\\ncornute\\ncornuted\\ncornuto\\ncornutos\\ncorny\\ncorodies\\ncorody\\ncorolla\\ncorollaries\\ncorollary\\ncorollas\\ncorona\\ncoronach\\ncoronachs\\ncoronae\\ncoronal\\ncoronals\\ncoronaries\\ncoronary\\ncoronas\\ncoronation\\ncoronations\\ncoronel\\ncoronels\\ncoroner\\ncoroners\\ncoronet\\ncoronets\\ncorotate\\ncorotated\\ncorotates\\ncorotating\\ncorpora\\ncorporal\\ncorporals\\ncorporate\\ncorporation\\ncorporations\\ncorporeal\\ncorporeally\\ncorps\\ncorpse\\ncorpses\\ncorpsman\\ncorpsmen\\ncorpulence\\ncorpulences\\ncorpulencies\\ncorpulency\\ncorpulent\\ncorpus\\ncorpuscle\\ncorpuscles\\ncorrade\\ncorraded\\ncorrades\\ncorrading\\ncorral\\ncorralled\\ncorralling\\ncorrals\\ncorrect\\ncorrected\\ncorrecter\\ncorrectest\\ncorrecting\\ncorrection\\ncorrections\\ncorrective\\ncorrectly\\ncorrectness\\ncorrectnesses\\ncorrects\\ncorrelate\\ncorrelated\\ncorrelates\\ncorrelating\\ncorrelation\\ncorrelations\\ncorrelative\\ncorrelatives\\ncorrespond\\ncorresponded\\ncorrespondence\\ncorrespondences\\ncorrespondent\\ncorrespondents\\ncorresponding\\ncorresponds\\ncorrida\\ncorridas\\ncorridor\\ncorridors\\ncorrie\\ncorries\\ncorrival\\ncorrivals\\ncorroborate\\ncorroborated\\ncorroborates\\ncorroborating\\ncorroboration\\ncorroborations\\ncorrode\\ncorroded\\ncorrodes\\ncorrodies\\ncorroding\\ncorrody\\ncorrosion\\ncorrosions\\ncorrosive\\ncorrugate\\ncorrugated\\ncorrugates\\ncorrugating\\ncorrugation\\ncorrugations\\ncorrupt\\ncorrupted\\ncorrupter\\ncorruptest\\ncorruptible\\ncorrupting\\ncorruption\\ncorruptions\\ncorrupts\\ncorsac\\ncorsacs\\ncorsage\\ncorsages\\ncorsair\\ncorsairs\\ncorse\\ncorselet\\ncorselets\\ncorses\\ncorset\\ncorseted\\ncorseting\\ncorsets\\ncorslet\\ncorslets\\ncortege\\ncorteges\\ncortex\\ncortexes\\ncortical\\ncortices\\ncortin\\ncortins\\ncortisol\\ncortisols\\ncortisone\\ncortisones\\ncorundum\\ncorundums\\ncorvee\\ncorvees\\ncorves\\ncorvet\\ncorvets\\ncorvette\\ncorvettes\\ncorvina\\ncorvinas\\ncorvine\\ncorymb\\ncorymbed\\ncorymbs\\ncoryphee\\ncoryphees\\ncoryza\\ncoryzal\\ncoryzas\\ncos\\ncosec\\ncosecant\\ncosecants\\ncosecs\\ncoses\\ncoset\\ncosets\\ncosey\\ncoseys\\ncosh\\ncoshed\\ncosher\\ncoshered\\ncoshering\\ncoshers\\ncoshes\\ncoshing\\ncosie\\ncosier\\ncosies\\ncosiest\\ncosign\\ncosignatories\\ncosignatory\\ncosigned\\ncosigner\\ncosigners\\ncosigning\\ncosigns\\ncosily\\ncosine\\ncosines\\ncosiness\\ncosinesses\\ncosmetic\\ncosmetics\\ncosmic\\ncosmical\\ncosmism\\ncosmisms\\ncosmist\\ncosmists\\ncosmonaut\\ncosmonauts\\ncosmopolitan\\ncosmopolitans\\ncosmos\\ncosmoses\\ncosponsor\\ncosponsors\\ncoss\\ncossack\\ncossacks\\ncosset\\ncosseted\\ncosseting\\ncossets\\ncost\\ncosta\\ncostae\\ncostal\\ncostar\\ncostard\\ncostards\\ncostarred\\ncostarring\\ncostars\\ncostate\\ncosted\\ncoster\\ncosters\\ncosting\\ncostive\\ncostless\\ncostlier\\ncostliest\\ncostliness\\ncostlinesses\\ncostly\\ncostmaries\\ncostmary\\ncostrel\\ncostrels\\ncosts\\ncostume\\ncostumed\\ncostumer\\ncostumers\\ncostumes\\ncostumey\\ncostuming\\ncosy\\ncot\\ncotan\\ncotans\\ncote\\ncoteau\\ncoteaux\\ncoted\\ncotenant\\ncotenants\\ncoterie\\ncoteries\\ncotes\\ncothurn\\ncothurni\\ncothurns\\ncotidal\\ncotillion\\ncotillions\\ncotillon\\ncotillons\\ncoting\\ncotquean\\ncotqueans\\ncots\\ncotta\\ncottae\\ncottage\\ncottager\\ncottagers\\ncottages\\ncottagey\\ncottar\\ncottars\\ncottas\\ncotter\\ncotters\\ncottier\\ncottiers\\ncotton\\ncottoned\\ncottoning\\ncottonmouth\\ncottonmouths\\ncottons\\ncottonseed\\ncottonseeds\\ncottony\\ncotyloid\\ncotype\\ncotypes\\ncouch\\ncouchant\\ncouched\\ncoucher\\ncouchers\\ncouches\\ncouching\\ncouchings\\ncoude\\ncougar\\ncougars\\ncough\\ncoughed\\ncougher\\ncoughers\\ncoughing\\ncoughs\\ncould\\ncouldest\\ncouldst\\ncoulee\\ncoulees\\ncoulisse\\ncoulisses\\ncouloir\\ncouloirs\\ncoulomb\\ncoulombs\\ncoulter\\ncoulters\\ncoumaric\\ncoumarin\\ncoumarins\\ncoumarou\\ncoumarous\\ncouncil\\ncouncillor\\ncouncillors\\ncouncilman\\ncouncilmen\\ncouncilor\\ncouncilors\\ncouncils\\ncouncilwoman\\ncounsel\\ncounseled\\ncounseling\\ncounselled\\ncounselling\\ncounsellor\\ncounsellors\\ncounselor\\ncounselors\\ncounsels\\ncount\\ncountable\\ncounted\\ncountenance\\ncountenanced\\ncountenances\\ncountenancing\\ncounter\\ncounteraccusation\\ncounteraccusations\\ncounteract\\ncounteracted\\ncounteracting\\ncounteracts\\ncounteraggression\\ncounteraggressions\\ncounterargue\\ncounterargued\\ncounterargues\\ncounterarguing\\ncounterassault\\ncounterassaults\\ncounterattack\\ncounterattacked\\ncounterattacking\\ncounterattacks\\ncounterbalance\\ncounterbalanced\\ncounterbalances\\ncounterbalancing\\ncounterbid\\ncounterbids\\ncounterblockade\\ncounterblockades\\ncounterblow\\ncounterblows\\ncountercampaign\\ncountercampaigns\\ncounterchallenge\\ncounterchallenges\\ncountercharge\\ncountercharges\\ncounterclaim\\ncounterclaims\\ncounterclockwise\\ncountercomplaint\\ncountercomplaints\\ncountercoup\\ncountercoups\\ncountercriticism\\ncountercriticisms\\ncounterdemand\\ncounterdemands\\ncounterdemonstration\\ncounterdemonstrations\\ncounterdemonstrator\\ncounterdemonstrators\\ncountered\\ncountereffect\\ncountereffects\\ncountereffort\\ncounterefforts\\ncounterembargo\\ncounterembargos\\ncounterevidence\\ncounterevidences\\ncounterfeit\\ncounterfeited\\ncounterfeiter\\ncounterfeiters\\ncounterfeiting\\ncounterfeits\\ncounterguerrila\\ncounterinflationary\\ncounterinfluence\\ncounterinfluences\\ncountering\\ncounterintrigue\\ncounterintrigues\\ncountermand\\ncountermanded\\ncountermanding\\ncountermands\\ncountermeasure\\ncountermeasures\\ncountermove\\ncountermovement\\ncountermovements\\ncountermoves\\ncounteroffer\\ncounteroffers\\ncounterpart\\ncounterparts\\ncounterpetition\\ncounterpetitions\\ncounterploy\\ncounterploys\\ncounterpoint\\ncounterpoints\\ncounterpower\\ncounterpowers\\ncounterpressure\\ncounterpressures\\ncounterpropagation\\ncounterpropagations\\ncounterproposal\\ncounterproposals\\ncounterprotest\\ncounterprotests\\ncounterquestion\\ncounterquestions\\ncounterraid\\ncounterraids\\ncounterrallies\\ncounterrally\\ncounterrebuttal\\ncounterrebuttals\\ncounterreform\\ncounterreforms\\ncounterresponse\\ncounterresponses\\ncounterretaliation\\ncounterretaliations\\ncounterrevolution\\ncounterrevolutions\\ncounters\\ncountersign\\ncountersigns\\ncounterstrategies\\ncounterstrategy\\ncounterstyle\\ncounterstyles\\ncountersue\\ncountersued\\ncountersues\\ncountersuggestion\\ncountersuggestions\\ncountersuing\\ncountersuit\\ncountersuits\\ncountertendencies\\ncountertendency\\ncounterterror\\ncounterterrorism\\ncounterterrorisms\\ncounterterrorist\\ncounterterrorists\\ncounterterrors\\ncounterthreat\\ncounterthreats\\ncounterthrust\\ncounterthrusts\\ncountertrend\\ncountertrends\\ncountess\\ncountesses\\ncountian\\ncountians\\ncounties\\ncounting\\ncountless\\ncountries\\ncountry\\ncountryman\\ncountrymen\\ncountryside\\ncountrysides\\ncounts\\ncounty\\ncoup\\ncoupe\\ncouped\\ncoupes\\ncouping\\ncouple\\ncoupled\\ncoupler\\ncouplers\\ncouples\\ncouplet\\ncouplets\\ncoupling\\ncouplings\\ncoupon\\ncoupons\\ncoups\\ncourage\\ncourageous\\ncourages\\ncourant\\ncourante\\ncourantes\\ncouranto\\ncourantoes\\ncourantos\\ncourants\\ncourier\\ncouriers\\ncourlan\\ncourlans\\ncourse\\ncoursed\\ncourser\\ncoursers\\ncourses\\ncoursing\\ncoursings\\ncourt\\ncourted\\ncourteous\\ncourteously\\ncourtesied\\ncourtesies\\ncourtesy\\ncourtesying\\ncourthouse\\ncourthouses\\ncourtier\\ncourtiers\\ncourting\\ncourtlier\\ncourtliest\\ncourtly\\ncourtroom\\ncourtrooms\\ncourts\\ncourtship\\ncourtships\\ncourtyard\\ncourtyards\\ncouscous\\ncouscouses\\ncousin\\ncousinly\\ncousinries\\ncousinry\\ncousins\\ncouteau\\ncouteaux\\ncouter\\ncouters\\ncouth\\ncouther\\ncouthest\\ncouthie\\ncouthier\\ncouthiest\\ncouths\\ncouture\\ncoutures\\ncouvade\\ncouvades\\ncovalent\\ncove\\ncoved\\ncoven\\ncovenant\\ncovenanted\\ncovenanting\\ncovenants\\ncovens\\ncover\\ncoverage\\ncoverages\\ncoverall\\ncoveralls\\ncovered\\ncoverer\\ncoverers\\ncovering\\ncoverings\\ncoverlet\\ncoverlets\\ncoverlid\\ncoverlids\\ncovers\\ncovert\\ncovertly\\ncoverts\\ncoves\\ncovet\\ncoveted\\ncoveter\\ncoveters\\ncoveting\\ncovetous\\ncovets\\ncovey\\ncoveys\\ncoving\\ncovings\\ncow\\ncowage\\ncowages\\ncoward\\ncowardice\\ncowardices\\ncowardly\\ncowards\\ncowbane\\ncowbanes\\ncowbell\\ncowbells\\ncowberries\\ncowberry\\ncowbind\\ncowbinds\\ncowbird\\ncowbirds\\ncowboy\\ncowboys\\ncowed\\ncowedly\\ncower\\ncowered\\ncowering\\ncowers\\ncowfish\\ncowfishes\\ncowgirl\\ncowgirls\\ncowhage\\ncowhages\\ncowhand\\ncowhands\\ncowherb\\ncowherbs\\ncowherd\\ncowherds\\ncowhide\\ncowhided\\ncowhides\\ncowhiding\\ncowier\\ncowiest\\ncowing\\ncowinner\\ncowinners\\ncowl\\ncowled\\ncowlick\\ncowlicks\\ncowling\\ncowlings\\ncowls\\ncowman\\ncowmen\\ncoworker\\ncoworkers\\ncowpat\\ncowpats\\ncowpea\\ncowpeas\\ncowpoke\\ncowpokes\\ncowpox\\ncowpoxes\\ncowrie\\ncowries\\ncowry\\ncows\\ncowshed\\ncowsheds\\ncowskin\\ncowskins\\ncowslip\\ncowslips\\ncowy\\ncox\\ncoxa\\ncoxae\\ncoxal\\ncoxalgia\\ncoxalgias\\ncoxalgic\\ncoxalgies\\ncoxalgy\\ncoxcomb\\ncoxcombs\\ncoxed\\ncoxes\\ncoxing\\ncoxswain\\ncoxswained\\ncoxswaining\\ncoxswains\\ncoy\\ncoyed\\ncoyer\\ncoyest\\ncoying\\ncoyish\\ncoyly\\ncoyness\\ncoynesses\\ncoyote\\ncoyotes\\ncoypou\\ncoypous\\ncoypu\\ncoypus\\ncoys\\ncoz\\ncozen\\ncozenage\\ncozenages\\ncozened\\ncozener\\ncozeners\\ncozening\\ncozens\\ncozes\\ncozey\\ncozeys\\ncozie\\ncozier\\ncozies\\ncoziest\\ncozily\\ncoziness\\ncozinesses\\ncozy\\ncozzes\\ncraal\\ncraaled\\ncraaling\\ncraals\\ncrab\\ncrabbed\\ncrabber\\ncrabbers\\ncrabbier\\ncrabbiest\\ncrabbing\\ncrabby\\ncrabs\\ncrabwise\\ncrack\\ncrackdown\\ncrackdowns\\ncracked\\ncracker\\ncrackers\\ncracking\\ncrackings\\ncrackle\\ncrackled\\ncrackles\\ncracklier\\ncrackliest\\ncrackling\\ncrackly\\ncracknel\\ncracknels\\ncrackpot\\ncrackpots\\ncracks\\ncrackup\\ncrackups\\ncracky\\ncradle\\ncradled\\ncradler\\ncradlers\\ncradles\\ncradling\\ncraft\\ncrafted\\ncraftier\\ncraftiest\\ncraftily\\ncraftiness\\ncraftinesses\\ncrafting\\ncrafts\\ncraftsman\\ncraftsmanship\\ncraftsmanships\\ncraftsmen\\ncraftsmenship\\ncraftsmenships\\ncrafty\\ncrag\\ncragged\\ncraggier\\ncraggiest\\ncraggily\\ncraggy\\ncrags\\ncragsman\\ncragsmen\\ncrake\\ncrakes\\ncram\\ncrambe\\ncrambes\\ncrambo\\ncramboes\\ncrambos\\ncrammed\\ncrammer\\ncrammers\\ncramming\\ncramoisies\\ncramoisy\\ncramp\\ncramped\\ncramping\\ncrampit\\ncrampits\\ncrampon\\ncrampons\\ncrampoon\\ncrampoons\\ncramps\\ncrams\\ncranberries\\ncranberry\\ncranch\\ncranched\\ncranches\\ncranching\\ncrane\\ncraned\\ncranes\\ncrania\\ncranial\\ncraniate\\ncraniates\\ncraning\\ncranium\\ncraniums\\ncrank\\ncranked\\ncranker\\ncrankest\\ncrankier\\ncrankiest\\ncrankily\\ncranking\\ncrankle\\ncrankled\\ncrankles\\ncrankling\\ncrankly\\ncrankous\\ncrankpin\\ncrankpins\\ncranks\\ncranky\\ncrannied\\ncrannies\\ncrannog\\ncrannoge\\ncrannoges\\ncrannogs\\ncranny\\ncrap\\ncrape\\ncraped\\ncrapes\\ncraping\\ncrapped\\ncrapper\\ncrappers\\ncrappie\\ncrappier\\ncrappies\\ncrappiest\\ncrapping\\ncrappy\\ncraps\\ncrapshooter\\ncrapshooters\\ncrases\\ncrash\\ncrashed\\ncrasher\\ncrashers\\ncrashes\\ncrashing\\ncrasis\\ncrass\\ncrasser\\ncrassest\\ncrassly\\ncratch\\ncratches\\ncrate\\ncrated\\ncrater\\ncratered\\ncratering\\ncraters\\ncrates\\ncrating\\ncraton\\ncratonic\\ncratons\\ncraunch\\ncraunched\\ncraunches\\ncraunching\\ncravat\\ncravats\\ncrave\\ncraved\\ncraven\\ncravened\\ncravening\\ncravenly\\ncravens\\ncraver\\ncravers\\ncraves\\ncraving\\ncravings\\ncraw\\ncrawdad\\ncrawdads\\ncrawfish\\ncrawfished\\ncrawfishes\\ncrawfishing\\ncrawl\\ncrawled\\ncrawler\\ncrawlers\\ncrawlier\\ncrawliest\\ncrawling\\ncrawls\\ncrawlway\\ncrawlways\\ncrawly\\ncraws\\ncrayfish\\ncrayfishes\\ncrayon\\ncrayoned\\ncrayoning\\ncrayons\\ncraze\\ncrazed\\ncrazes\\ncrazier\\ncraziest\\ncrazily\\ncraziness\\ncrazinesses\\ncrazing\\ncrazy\\ncreak\\ncreaked\\ncreakier\\ncreakiest\\ncreakily\\ncreaking\\ncreaks\\ncreaky\\ncream\\ncreamed\\ncreamer\\ncreameries\\ncreamers\\ncreamery\\ncreamier\\ncreamiest\\ncreamily\\ncreaming\\ncreams\\ncreamy\\ncrease\\ncreased\\ncreaser\\ncreasers\\ncreases\\ncreasier\\ncreasiest\\ncreasing\\ncreasy\\ncreate\\ncreated\\ncreates\\ncreatin\\ncreatine\\ncreatines\\ncreating\\ncreatinine\\ncreatins\\ncreation\\ncreations\\ncreative\\ncreativities\\ncreativity\\ncreator\\ncreators\\ncreature\\ncreatures\\ncreche\\ncreches\\ncredal\\ncredence\\ncredences\\ncredenda\\ncredent\\ncredentials\\ncredenza\\ncredenzas\\ncredibilities\\ncredibility\\ncredible\\ncredibly\\ncredit\\ncreditable\\ncreditably\\ncredited\\ncrediting\\ncreditor\\ncreditors\\ncredits\\ncredo\\ncredos\\ncredulities\\ncredulity\\ncredulous\\ncreed\\ncreedal\\ncreeds\\ncreek\\ncreeks\\ncreel\\ncreels\\ncreep\\ncreepage\\ncreepages\\ncreeper\\ncreepers\\ncreepie\\ncreepier\\ncreepies\\ncreepiest\\ncreepily\\ncreeping\\ncreeps\\ncreepy\\ncreese\\ncreeses\\ncreesh\\ncreeshed\\ncreeshes\\ncreeshing\\ncremains\\ncremate\\ncremated\\ncremates\\ncremating\\ncremation\\ncremations\\ncremator\\ncremators\\ncrematory\\ncreme\\ncremes\\ncrenate\\ncrenated\\ncrenel\\ncreneled\\ncreneling\\ncrenelle\\ncrenelled\\ncrenelles\\ncrenelling\\ncrenels\\ncreodont\\ncreodonts\\ncreole\\ncreoles\\ncreosol\\ncreosols\\ncreosote\\ncreosoted\\ncreosotes\\ncreosoting\\ncrepe\\ncreped\\ncrepes\\ncrepey\\ncrepier\\ncrepiest\\ncreping\\ncrept\\ncrepy\\ncrescendo\\ncrescendos\\ncrescent\\ncrescents\\ncresive\\ncresol\\ncresols\\ncress\\ncresses\\ncresset\\ncressets\\ncrest\\ncrestal\\ncrested\\ncrestfallen\\ncrestfallens\\ncresting\\ncrestings\\ncrests\\ncresyl\\ncresylic\\ncresyls\\ncretic\\ncretics\\ncretin\\ncretins\\ncretonne\\ncretonnes\\ncrevalle\\ncrevalles\\ncrevasse\\ncrevassed\\ncrevasses\\ncrevassing\\ncrevice\\ncreviced\\ncrevices\\ncrew\\ncrewed\\ncrewel\\ncrewels\\ncrewing\\ncrewless\\ncrewman\\ncrewmen\\ncrews\\ncrib\\ncribbage\\ncribbages\\ncribbed\\ncribber\\ncribbers\\ncribbing\\ncribbings\\ncribbled\\ncribrous\\ncribs\\ncribwork\\ncribworks\\ncricetid\\ncricetids\\ncrick\\ncricked\\ncricket\\ncricketed\\ncricketing\\ncrickets\\ncricking\\ncricks\\ncricoid\\ncricoids\\ncried\\ncrier\\ncriers\\ncries\\ncrime\\ncrimes\\ncriminal\\ncriminals\\ncrimmer\\ncrimmers\\ncrimp\\ncrimped\\ncrimper\\ncrimpers\\ncrimpier\\ncrimpiest\\ncrimping\\ncrimple\\ncrimpled\\ncrimples\\ncrimpling\\ncrimps\\ncrimpy\\ncrimson\\ncrimsoned\\ncrimsoning\\ncrimsons\\ncringe\\ncringed\\ncringer\\ncringers\\ncringes\\ncringing\\ncringle\\ncringles\\ncrinite\\ncrinites\\ncrinkle\\ncrinkled\\ncrinkles\\ncrinklier\\ncrinkliest\\ncrinkling\\ncrinkly\\ncrinoid\\ncrinoids\\ncrinoline\\ncrinolines\\ncrinum\\ncrinums\\ncriollo\\ncriollos\\ncripple\\ncrippled\\ncrippler\\ncripplers\\ncripples\\ncrippling\\ncris\\ncrises\\ncrisic\\ncrisis\\ncrisp\\ncrispate\\ncrisped\\ncrispen\\ncrispened\\ncrispening\\ncrispens\\ncrisper\\ncrispers\\ncrispest\\ncrispier\\ncrispiest\\ncrispily\\ncrisping\\ncrisply\\ncrispness\\ncrispnesses\\ncrisps\\ncrispy\\ncrissa\\ncrissal\\ncrisscross\\ncrisscrossed\\ncrisscrosses\\ncrisscrossing\\ncrissum\\ncrista\\ncristae\\ncristate\\ncriteria\\ncriterion\\ncritic\\ncritical\\ncriticism\\ncriticisms\\ncriticize\\ncriticized\\ncriticizes\\ncriticizing\\ncritics\\ncritique\\ncritiqued\\ncritiques\\ncritiquing\\ncritter\\ncritters\\ncrittur\\ncritturs\\ncroak\\ncroaked\\ncroaker\\ncroakers\\ncroakier\\ncroakiest\\ncroakily\\ncroaking\\ncroaks\\ncroaky\\ncrocein\\ncroceine\\ncroceines\\ncroceins\\ncrochet\\ncrocheted\\ncrocheting\\ncrochets\\ncroci\\ncrocine\\ncrock\\ncrocked\\ncrockeries\\ncrockery\\ncrocket\\ncrockets\\ncrocking\\ncrocks\\ncrocodile\\ncrocodiles\\ncrocoite\\ncrocoites\\ncrocus\\ncrocuses\\ncroft\\ncrofter\\ncrofters\\ncrofts\\ncrojik\\ncrojiks\\ncromlech\\ncromlechs\\ncrone\\ncrones\\ncronies\\ncrony\\ncronyism\\ncronyisms\\ncrook\\ncrooked\\ncrookeder\\ncrookedest\\ncrookedness\\ncrookednesses\\ncrooking\\ncrooks\\ncroon\\ncrooned\\ncrooner\\ncrooners\\ncrooning\\ncroons\\ncrop\\ncropland\\ncroplands\\ncropless\\ncropped\\ncropper\\ncroppers\\ncropping\\ncrops\\ncroquet\\ncroqueted\\ncroqueting\\ncroquets\\ncroquette\\ncroquettes\\ncroquis\\ncrore\\ncrores\\ncrosier\\ncrosiers\\ncross\\ncrossarm\\ncrossarms\\ncrossbar\\ncrossbarred\\ncrossbarring\\ncrossbars\\ncrossbow\\ncrossbows\\ncrossbreed\\ncrossbreeded\\ncrossbreeding\\ncrossbreeds\\ncrosscut\\ncrosscuts\\ncrosscutting\\ncrosse\\ncrossed\\ncrosser\\ncrossers\\ncrosses\\ncrossest\\ncrossing\\ncrossings\\ncrosslet\\ncrosslets\\ncrossly\\ncrossover\\ncrossovers\\ncrossroads\\ncrosstie\\ncrossties\\ncrosswalk\\ncrosswalks\\ncrossway\\ncrossways\\ncrosswise\\ncrotch\\ncrotched\\ncrotches\\ncrotchet\\ncrotchets\\ncrotchety\\ncroton\\ncrotons\\ncrouch\\ncrouched\\ncrouches\\ncrouching\\ncroup\\ncroupe\\ncroupes\\ncroupier\\ncroupiers\\ncroupiest\\ncroupily\\ncroupous\\ncroups\\ncroupy\\ncrouse\\ncrousely\\ncrouton\\ncroutons\\ncrow\\ncrowbar\\ncrowbars\\ncrowd\\ncrowded\\ncrowder\\ncrowders\\ncrowdie\\ncrowdies\\ncrowding\\ncrowds\\ncrowdy\\ncrowed\\ncrower\\ncrowers\\ncrowfeet\\ncrowfoot\\ncrowfoots\\ncrowing\\ncrown\\ncrowned\\ncrowner\\ncrowners\\ncrownet\\ncrownets\\ncrowning\\ncrowns\\ncrows\\ncrowstep\\ncrowsteps\\ncroze\\ncrozer\\ncrozers\\ncrozes\\ncrozier\\ncroziers\\ncruces\\ncrucial\\ncrucian\\ncrucians\\ncruciate\\ncrucible\\ncrucibles\\ncrucifer\\ncrucifers\\ncrucified\\ncrucifies\\ncrucifix\\ncrucifixes\\ncrucifixion\\ncrucify\\ncrucifying\\ncrud\\ncrudded\\ncrudding\\ncruddy\\ncrude\\ncrudely\\ncruder\\ncrudes\\ncrudest\\ncrudities\\ncrudity\\ncruds\\ncruel\\ncrueler\\ncruelest\\ncrueller\\ncruellest\\ncruelly\\ncruelties\\ncruelty\\ncruet\\ncruets\\ncruise\\ncruised\\ncruiser\\ncruisers\\ncruises\\ncruising\\ncruller\\ncrullers\\ncrumb\\ncrumbed\\ncrumber\\ncrumbers\\ncrumbier\\ncrumbiest\\ncrumbing\\ncrumble\\ncrumbled\\ncrumbles\\ncrumblier\\ncrumbliest\\ncrumbling\\ncrumbly\\ncrumbs\\ncrumby\\ncrummie\\ncrummier\\ncrummies\\ncrummiest\\ncrummy\\ncrump\\ncrumped\\ncrumpet\\ncrumpets\\ncrumping\\ncrumple\\ncrumpled\\ncrumples\\ncrumpling\\ncrumply\\ncrumps\\ncrunch\\ncrunched\\ncruncher\\ncrunchers\\ncrunches\\ncrunchier\\ncrunchiest\\ncrunching\\ncrunchy\\ncrunodal\\ncrunode\\ncrunodes\\ncruor\\ncruors\\ncrupper\\ncruppers\\ncrura\\ncrural\\ncrus\\ncrusade\\ncrusaded\\ncrusader\\ncrusaders\\ncrusades\\ncrusading\\ncrusado\\ncrusadoes\\ncrusados\\ncruse\\ncruses\\ncruset\\ncrusets\\ncrush\\ncrushed\\ncrusher\\ncrushers\\ncrushes\\ncrushing\\ncrusily\\ncrust\\ncrustacean\\ncrustaceans\\ncrustal\\ncrusted\\ncrustier\\ncrustiest\\ncrustily\\ncrusting\\ncrustose\\ncrusts\\ncrusty\\ncrutch\\ncrutched\\ncrutches\\ncrutching\\ncrux\\ncruxes\\ncruzado\\ncruzadoes\\ncruzados\\ncruzeiro\\ncruzeiros\\ncrwth\\ncrwths\\ncry\\ncrybabies\\ncrybaby\\ncrying\\ncryingly\\ncryogen\\ncryogenies\\ncryogens\\ncryogeny\\ncryolite\\ncryolites\\ncryonic\\ncryonics\\ncryostat\\ncryostats\\ncryotron\\ncryotrons\\ncrypt\\ncryptal\\ncryptic\\ncrypto\\ncryptographic\\ncryptographies\\ncryptography\\ncryptos\\ncrypts\\ncrystal\\ncrystallization\\ncrystallizations\\ncrystallize\\ncrystallized\\ncrystallizes\\ncrystallizing\\ncrystals\\nctenidia\\nctenoid\\ncub\\ncubage\\ncubages\\ncubature\\ncubatures\\ncubbies\\ncubbish\\ncubby\\ncubbyhole\\ncubbyholes\\ncube\\ncubeb\\ncubebs\\ncubed\\ncuber\\ncubers\\ncubes\\ncubic\\ncubical\\ncubicities\\ncubicity\\ncubicle\\ncubicles\\ncubicly\\ncubics\\ncubicula\\ncubiform\\ncubing\\ncubism\\ncubisms\\ncubist\\ncubistic\\ncubists\\ncubit\\ncubital\\ncubits\\ncuboid\\ncuboidal\\ncuboids\\ncubs\\ncuckold\\ncuckolded\\ncuckolding\\ncuckolds\\ncuckoo\\ncuckooed\\ncuckooing\\ncuckoos\\ncucumber\\ncucumbers\\ncucurbit\\ncucurbits\\ncud\\ncudbear\\ncudbears\\ncuddie\\ncuddies\\ncuddle\\ncuddled\\ncuddles\\ncuddlier\\ncuddliest\\ncuddling\\ncuddly\\ncuddy\\ncudgel\\ncudgeled\\ncudgeler\\ncudgelers\\ncudgeling\\ncudgelled\\ncudgelling\\ncudgels\\ncuds\\ncudweed\\ncudweeds\\ncue\\ncued\\ncueing\\ncues\\ncuesta\\ncuestas\\ncuff\\ncuffed\\ncuffing\\ncuffless\\ncuffs\\ncuif\\ncuifs\\ncuing\\ncuirass\\ncuirassed\\ncuirasses\\ncuirassing\\ncuish\\ncuishes\\ncuisine\\ncuisines\\ncuisse\\ncuisses\\ncuittle\\ncuittled\\ncuittles\\ncuittling\\ncuke\\ncukes\\nculch\\nculches\\nculet\\nculets\\nculex\\nculices\\nculicid\\nculicids\\nculicine\\nculicines\\nculinary\\ncull\\ncullay\\ncullays\\nculled\\nculler\\ncullers\\ncullet\\ncullets\\ncullied\\ncullies\\nculling\\ncullion\\ncullions\\ncullis\\ncullises\\nculls\\ncully\\ncullying\\nculm\\nculmed\\nculminatation\\nculminatations\\nculminate\\nculminated\\nculminates\\nculminating\\nculming\\nculms\\nculotte\\nculottes\\nculpa\\nculpable\\nculpably\\nculpae\\nculprit\\nculprits\\ncult\\ncultch\\ncultches\\nculti\\ncultic\\ncultigen\\ncultigens\\ncultism\\ncultisms\\ncultist\\ncultists\\ncultivar\\ncultivars\\ncultivatation\\ncultivatations\\ncultivate\\ncultivated\\ncultivates\\ncultivating\\ncultrate\\ncults\\ncultural\\nculture\\ncultured\\ncultures\\nculturing\\ncultus\\ncultuses\\nculver\\nculverin\\nculverins\\nculvers\\nculvert\\nculverts\\ncum\\ncumarin\\ncumarins\\ncumber\\ncumbered\\ncumberer\\ncumberers\\ncumbering\\ncumbers\\ncumbersome\\ncumbrous\\ncumin\\ncumins\\ncummer\\ncummers\\ncummin\\ncummins\\ncumquat\\ncumquats\\ncumshaw\\ncumshaws\\ncumulate\\ncumulated\\ncumulates\\ncumulating\\ncumulative\\ncumuli\\ncumulous\\ncumulus\\ncundum\\ncundums\\ncuneal\\ncuneate\\ncuneated\\ncuneatic\\ncuniform\\ncuniforms\\ncunner\\ncunners\\ncunning\\ncunninger\\ncunningest\\ncunningly\\ncunnings\\ncup\\ncupboard\\ncupboards\\ncupcake\\ncupcakes\\ncupel\\ncupeled\\ncupeler\\ncupelers\\ncupeling\\ncupelled\\ncupeller\\ncupellers\\ncupelling\\ncupels\\ncupful\\ncupfuls\\ncupid\\ncupidities\\ncupidity\\ncupids\\ncuplike\\ncupola\\ncupolaed\\ncupolaing\\ncupolas\\ncuppa\\ncuppas\\ncupped\\ncupper\\ncuppers\\ncuppier\\ncuppiest\\ncupping\\ncuppings\\ncuppy\\ncupreous\\ncupric\\ncuprite\\ncuprites\\ncuprous\\ncuprum\\ncuprums\\ncups\\ncupsful\\ncupula\\ncupulae\\ncupular\\ncupulate\\ncupule\\ncupules\\ncur\\ncurable\\ncurably\\ncuracao\\ncuracaos\\ncuracies\\ncuracoa\\ncuracoas\\ncuracy\\ncuragh\\ncuraghs\\ncurara\\ncuraras\\ncurare\\ncurares\\ncurari\\ncurarine\\ncurarines\\ncuraris\\ncurarize\\ncurarized\\ncurarizes\\ncurarizing\\ncurassow\\ncurassows\\ncurate\\ncurates\\ncurative\\ncuratives\\ncurator\\ncurators\\ncurb\\ncurbable\\ncurbed\\ncurber\\ncurbers\\ncurbing\\ncurbings\\ncurbs\\ncurch\\ncurches\\ncurculio\\ncurculios\\ncurcuma\\ncurcumas\\ncurd\\ncurded\\ncurdier\\ncurdiest\\ncurding\\ncurdle\\ncurdled\\ncurdler\\ncurdlers\\ncurdles\\ncurdling\\ncurds\\ncurdy\\ncure\\ncured\\ncureless\\ncurer\\ncurers\\ncures\\ncuret\\ncurets\\ncurette\\ncuretted\\ncurettes\\ncuretting\\ncurf\\ncurfew\\ncurfews\\ncurfs\\ncuria\\ncuriae\\ncurial\\ncurie\\ncuries\\ncuring\\ncurio\\ncurios\\ncuriosa\\ncuriosities\\ncuriosity\\ncurious\\ncuriouser\\ncuriousest\\ncurite\\ncurites\\ncurium\\ncuriums\\ncurl\\ncurled\\ncurler\\ncurlers\\ncurlew\\ncurlews\\ncurlicue\\ncurlicued\\ncurlicues\\ncurlicuing\\ncurlier\\ncurliest\\ncurlily\\ncurling\\ncurlings\\ncurls\\ncurly\\ncurlycue\\ncurlycues\\ncurmudgeon\\ncurmudgeons\\ncurn\\ncurns\\ncurr\\ncurrach\\ncurrachs\\ncurragh\\ncurraghs\\ncurran\\ncurrans\\ncurrant\\ncurrants\\ncurred\\ncurrencies\\ncurrency\\ncurrent\\ncurrently\\ncurrents\\ncurricle\\ncurricles\\ncurriculum\\ncurrie\\ncurried\\ncurrier\\ncurrieries\\ncurriers\\ncurriery\\ncurries\\ncurring\\ncurrish\\ncurrs\\ncurry\\ncurrying\\ncurs\\ncurse\\ncursed\\ncurseder\\ncursedest\\ncursedly\\ncurser\\ncursers\\ncurses\\ncursing\\ncursive\\ncursives\\ncursory\\ncurst\\ncurt\\ncurtail\\ncurtailed\\ncurtailing\\ncurtailment\\ncurtailments\\ncurtails\\ncurtain\\ncurtained\\ncurtaining\\ncurtains\\ncurtal\\ncurtalax\\ncurtalaxes\\ncurtals\\ncurtate\\ncurter\\ncurtesies\\ncurtest\\ncurtesy\\ncurtly\\ncurtness\\ncurtnesses\\ncurtsey\\ncurtseyed\\ncurtseying\\ncurtseys\\ncurtsied\\ncurtsies\\ncurtsy\\ncurtsying\\ncurule\\ncurve\\ncurved\\ncurves\\ncurvet\\ncurveted\\ncurveting\\ncurvets\\ncurvetted\\ncurvetting\\ncurvey\\ncurvier\\ncurviest\\ncurving\\ncurvy\\ncuscus\\ncuscuses\\ncusec\\ncusecs\\ncushat\\ncushats\\ncushaw\\ncushaws\\ncushier\\ncushiest\\ncushily\\ncushion\\ncushioned\\ncushioning\\ncushions\\ncushiony\\ncushy\\ncusk\\ncusks\\ncusp\\ncuspate\\ncuspated\\ncusped\\ncuspid\\ncuspidal\\ncuspides\\ncuspidor\\ncuspidors\\ncuspids\\ncuspis\\ncusps\\ncuss\\ncussed\\ncussedly\\ncusser\\ncussers\\ncusses\\ncussing\\ncusso\\ncussos\\ncussword\\ncusswords\\ncustard\\ncustards\\ncustodes\\ncustodial\\ncustodian\\ncustodians\\ncustodies\\ncustody\\ncustom\\ncustomarily\\ncustomary\\ncustomer\\ncustomers\\ncustomize\\ncustomized\\ncustomizes\\ncustomizing\\ncustoms\\ncustos\\ncustumal\\ncustumals\\ncut\\ncutaneous\\ncutaway\\ncutaways\\ncutback\\ncutbacks\\ncutch\\ncutcheries\\ncutchery\\ncutches\\ncutdown\\ncutdowns\\ncute\\ncutely\\ncuteness\\ncutenesses\\ncuter\\ncutes\\ncutesier\\ncutesiest\\ncutest\\ncutesy\\ncutey\\ncuteys\\ncutgrass\\ncutgrasses\\ncuticle\\ncuticles\\ncuticula\\ncuticulae\\ncutie\\ncuties\\ncutin\\ncutinise\\ncutinised\\ncutinises\\ncutinising\\ncutinize\\ncutinized\\ncutinizes\\ncutinizing\\ncutins\\ncutis\\ncutises\\ncutlas\\ncutlases\\ncutlass\\ncutlasses\\ncutler\\ncutleries\\ncutlers\\ncutlery\\ncutlet\\ncutlets\\ncutline\\ncutlines\\ncutoff\\ncutoffs\\ncutout\\ncutouts\\ncutover\\ncutpurse\\ncutpurses\\ncuts\\ncuttable\\ncuttage\\ncuttages\\ncutter\\ncutters\\ncutthroat\\ncutthroats\\ncutties\\ncutting\\ncuttings\\ncuttle\\ncuttled\\ncuttles\\ncuttling\\ncutty\\ncutup\\ncutups\\ncutwater\\ncutwaters\\ncutwork\\ncutworks\\ncutworm\\ncutworms\\ncuvette\\ncuvettes\\ncwm\\ncwms\\ncyan\\ncyanamid\\ncyanamids\\ncyanate\\ncyanates\\ncyanic\\ncyanid\\ncyanide\\ncyanided\\ncyanides\\ncyaniding\\ncyanids\\ncyanin\\ncyanine\\ncyanines\\ncyanins\\ncyanite\\ncyanites\\ncyanitic\\ncyano\\ncyanogen\\ncyanogens\\ncyanosed\\ncyanoses\\ncyanosis\\ncyanotic\\ncyans\\ncyborg\\ncyborgs\\ncycad\\ncycads\\ncycas\\ncycases\\ncycasin\\ncycasins\\ncyclamen\\ncyclamens\\ncyclase\\ncyclases\\ncycle\\ncyclecar\\ncyclecars\\ncycled\\ncycler\\ncyclers\\ncycles\\ncyclic\\ncyclical\\ncyclicly\\ncycling\\ncyclings\\ncyclist\\ncyclists\\ncyclitol\\ncyclitols\\ncyclize\\ncyclized\\ncyclizes\\ncyclizing\\ncyclo\\ncycloid\\ncycloids\\ncyclonal\\ncyclone\\ncyclones\\ncyclonic\\ncyclopaedia\\ncyclopaedias\\ncyclopedia\\ncyclopedias\\ncyclophosphamide\\ncyclophosphamides\\ncyclops\\ncyclorama\\ncycloramas\\ncyclos\\ncycloses\\ncyclosis\\ncyder\\ncyders\\ncyeses\\ncyesis\\ncygnet\\ncygnets\\ncylices\\ncylinder\\ncylindered\\ncylindering\\ncylinders\\ncylix\\ncyma\\ncymae\\ncymar\\ncymars\\ncymas\\ncymatia\\ncymatium\\ncymbal\\ncymbaler\\ncymbalers\\ncymbals\\ncymbling\\ncymblings\\ncyme\\ncymene\\ncymenes\\ncymes\\ncymlin\\ncymling\\ncymlings\\ncymlins\\ncymogene\\ncymogenes\\ncymoid\\ncymol\\ncymols\\ncymose\\ncymosely\\ncymous\\ncynic\\ncynical\\ncynicism\\ncynicisms\\ncynics\\ncynosure\\ncynosures\\ncypher\\ncyphered\\ncyphering\\ncyphers\\ncypres\\ncypreses\\ncypress\\ncypresses\\ncyprian\\ncyprians\\ncyprinid\\ncyprinids\\ncyprus\\ncypruses\\ncypsela\\ncypselae\\ncyst\\ncystein\\ncysteine\\ncysteines\\ncysteins\\ncystic\\ncystine\\ncystines\\ncystitides\\ncystitis\\ncystoid\\ncystoids\\ncysts\\ncytaster\\ncytasters\\ncytidine\\ncytidines\\ncytogenies\\ncytogeny\\ncytologies\\ncytology\\ncyton\\ncytons\\ncytopathological\\ncytosine\\ncytosines\\nczar\\nczardas\\nczardom\\nczardoms\\nczarevna\\nczarevnas\\nczarina\\nczarinas\\nczarism\\nczarisms\\nczarist\\nczarists\\nczaritza\\nczaritzas\\nczars\\nda\\ndab\\ndabbed\\ndabber\\ndabbers\\ndabbing\\ndabble\\ndabbled\\ndabbler\\ndabblers\\ndabbles\\ndabbling\\ndabblings\\ndabchick\\ndabchicks\\ndabs\\ndabster\\ndabsters\\ndace\\ndaces\\ndacha\\ndachas\\ndachshund\\ndachshunds\\ndacker\\ndackered\\ndackering\\ndackers\\ndacoit\\ndacoities\\ndacoits\\ndacoity\\ndactyl\\ndactyli\\ndactylic\\ndactylics\\ndactyls\\ndactylus\\ndad\\ndada\\ndadaism\\ndadaisms\\ndadaist\\ndadaists\\ndadas\\ndaddies\\ndaddle\\ndaddled\\ndaddles\\ndaddling\\ndaddy\\ndado\\ndadoed\\ndadoes\\ndadoing\\ndados\\ndads\\ndaedal\\ndaemon\\ndaemonic\\ndaemons\\ndaff\\ndaffed\\ndaffier\\ndaffiest\\ndaffing\\ndaffodil\\ndaffodils\\ndaffs\\ndaffy\\ndaft\\ndafter\\ndaftest\\ndaftly\\ndaftness\\ndaftnesses\\ndag\\ndagger\\ndaggered\\ndaggering\\ndaggers\\ndaggle\\ndaggled\\ndaggles\\ndaggling\\ndaglock\\ndaglocks\\ndago\\ndagoba\\ndagobas\\ndagoes\\ndagos\\ndags\\ndah\\ndahabeah\\ndahabeahs\\ndahabiah\\ndahabiahs\\ndahabieh\\ndahabiehs\\ndahabiya\\ndahabiyas\\ndahlia\\ndahlias\\ndahoon\\ndahoons\\ndahs\\ndaiker\\ndaikered\\ndaikering\\ndaikers\\ndailies\\ndaily\\ndaimen\\ndaimio\\ndaimios\\ndaimon\\ndaimones\\ndaimonic\\ndaimons\\ndaimyo\\ndaimyos\\ndaintier\\ndainties\\ndaintiest\\ndaintily\\ndaintiness\\ndaintinesses\\ndainty\\ndaiquiri\\ndaiquiris\\ndairies\\ndairy\\ndairying\\ndairyings\\ndairymaid\\ndairymaids\\ndairyman\\ndairymen\\ndais\\ndaises\\ndaishiki\\ndaishikis\\ndaisied\\ndaisies\\ndaisy\\ndak\\ndakerhen\\ndakerhens\\ndakoit\\ndakoities\\ndakoits\\ndakoity\\ndaks\\ndalapon\\ndalapons\\ndalasi\\ndale\\ndales\\ndalesman\\ndalesmen\\ndaleth\\ndaleths\\ndalles\\ndalliance\\ndalliances\\ndallied\\ndallier\\ndalliers\\ndallies\\ndally\\ndallying\\ndalmatian\\ndalmatians\\ndalmatic\\ndalmatics\\ndaltonic\\ndam\\ndamage\\ndamaged\\ndamager\\ndamagers\\ndamages\\ndamaging\\ndaman\\ndamans\\ndamar\\ndamars\\ndamask\\ndamasked\\ndamasking\\ndamasks\\ndame\\ndames\\ndamewort\\ndameworts\\ndammar\\ndammars\\ndammed\\ndammer\\ndammers\\ndamming\\ndamn\\ndamnable\\ndamnably\\ndamnation\\ndamnations\\ndamndest\\ndamndests\\ndamned\\ndamneder\\ndamnedest\\ndamner\\ndamners\\ndamnified\\ndamnifies\\ndamnify\\ndamnifying\\ndamning\\ndamns\\ndamosel\\ndamosels\\ndamozel\\ndamozels\\ndamp\\ndamped\\ndampen\\ndampened\\ndampener\\ndampeners\\ndampening\\ndampens\\ndamper\\ndampers\\ndampest\\ndamping\\ndampish\\ndamply\\ndampness\\ndampnesses\\ndamps\\ndams\\ndamsel\\ndamsels\\ndamson\\ndamsons\\ndance\\ndanced\\ndancer\\ndancers\\ndances\\ndancing\\ndandelion\\ndandelions\\ndander\\ndandered\\ndandering\\ndanders\\ndandier\\ndandies\\ndandiest\\ndandified\\ndandifies\\ndandify\\ndandifying\\ndandily\\ndandle\\ndandled\\ndandler\\ndandlers\\ndandles\\ndandling\\ndandriff\\ndandriffs\\ndandruff\\ndandruffs\\ndandy\\ndandyish\\ndandyism\\ndandyisms\\ndanegeld\\ndanegelds\\ndaneweed\\ndaneweeds\\ndanewort\\ndaneworts\\ndang\\ndanged\\ndanger\\ndangered\\ndangering\\ndangerous\\ndangerously\\ndangers\\ndanging\\ndangle\\ndangled\\ndangler\\ndanglers\\ndangles\\ndangling\\ndangs\\ndanio\\ndanios\\ndank\\ndanker\\ndankest\\ndankly\\ndankness\\ndanknesses\\ndanseur\\ndanseurs\\ndanseuse\\ndanseuses\\ndap\\ndaphne\\ndaphnes\\ndaphnia\\ndaphnias\\ndapped\\ndapper\\ndapperer\\ndapperest\\ndapperly\\ndapping\\ndapple\\ndappled\\ndapples\\ndappling\\ndaps\\ndarb\\ndarbies\\ndarbs\\ndare\\ndared\\ndaredevil\\ndaredevils\\ndareful\\ndarer\\ndarers\\ndares\\ndaresay\\ndaric\\ndarics\\ndaring\\ndaringly\\ndarings\\ndariole\\ndarioles\\ndark\\ndarked\\ndarken\\ndarkened\\ndarkener\\ndarkeners\\ndarkening\\ndarkens\\ndarker\\ndarkest\\ndarkey\\ndarkeys\\ndarkie\\ndarkies\\ndarking\\ndarkish\\ndarkle\\ndarkled\\ndarkles\\ndarklier\\ndarkliest\\ndarkling\\ndarkly\\ndarkness\\ndarknesses\\ndarkroom\\ndarkrooms\\ndarks\\ndarksome\\ndarky\\ndarling\\ndarlings\\ndarn\\ndarndest\\ndarndests\\ndarned\\ndarneder\\ndarnedest\\ndarnel\\ndarnels\\ndarner\\ndarners\\ndarning\\ndarnings\\ndarns\\ndart\\ndarted\\ndarter\\ndarters\\ndarting\\ndartle\\ndartled\\ndartles\\ndartling\\ndartmouth\\ndarts\\ndash\\ndashboard\\ndashboards\\ndashed\\ndasheen\\ndasheens\\ndasher\\ndashers\\ndashes\\ndashier\\ndashiest\\ndashiki\\ndashikis\\ndashing\\ndashpot\\ndashpots\\ndashy\\ndassie\\ndassies\\ndastard\\ndastardly\\ndastards\\ndasyure\\ndasyures\\ndata\\ndatable\\ndatamedia\\ndatapoint\\ndataries\\ndatary\\ndatcha\\ndatchas\\ndate\\ndateable\\ndated\\ndatedly\\ndateless\\ndateline\\ndatelined\\ndatelines\\ndatelining\\ndater\\ndaters\\ndates\\ndating\\ndatival\\ndative\\ndatively\\ndatives\\ndato\\ndatos\\ndatto\\ndattos\\ndatum\\ndatums\\ndatura\\ndaturas\\ndaturic\\ndaub\\ndaube\\ndaubed\\ndauber\\ndauberies\\ndaubers\\ndaubery\\ndaubes\\ndaubier\\ndaubiest\\ndaubing\\ndaubries\\ndaubry\\ndaubs\\ndauby\\ndaughter\\ndaughterly\\ndaughters\\ndaunder\\ndaundered\\ndaundering\\ndaunders\\ndaunt\\ndaunted\\ndaunter\\ndaunters\\ndaunting\\ndauntless\\ndaunts\\ndauphin\\ndauphine\\ndauphines\\ndauphins\\ndaut\\ndauted\\ndautie\\ndauties\\ndauting\\ndauts\\ndaven\\ndavened\\ndavening\\ndavenport\\ndavenports\\ndavens\\ndavies\\ndavit\\ndavits\\ndavy\\ndaw\\ndawdle\\ndawdled\\ndawdler\\ndawdlers\\ndawdles\\ndawdling\\ndawed\\ndawen\\ndawing\\ndawk\\ndawks\\ndawn\\ndawned\\ndawning\\ndawnlike\\ndawns\\ndaws\\ndawt\\ndawted\\ndawtie\\ndawties\\ndawting\\ndawts\\nday\\ndaybed\\ndaybeds\\ndaybook\\ndaybooks\\ndaybreak\\ndaybreaks\\ndaydream\\ndaydreamed\\ndaydreaming\\ndaydreams\\ndaydreamt\\ndayflies\\ndayfly\\ndayglow\\ndayglows\\ndaylight\\ndaylighted\\ndaylighting\\ndaylights\\ndaylilies\\ndaylily\\ndaylit\\ndaylong\\ndaymare\\ndaymares\\ndayroom\\ndayrooms\\ndays\\ndayside\\ndaysides\\ndaysman\\ndaysmen\\ndaystar\\ndaystars\\ndaytime\\ndaytimes\\ndaze\\ndazed\\ndazedly\\ndazes\\ndazing\\ndazzle\\ndazzled\\ndazzler\\ndazzlers\\ndazzles\\ndazzling\\nde\\ndeacon\\ndeaconed\\ndeaconess\\ndeaconesses\\ndeaconing\\ndeaconries\\ndeaconry\\ndeacons\\ndead\\ndeadbeat\\ndeadbeats\\ndeaden\\ndeadened\\ndeadener\\ndeadeners\\ndeadening\\ndeadens\\ndeader\\ndeadest\\ndeadeye\\ndeadeyes\\ndeadfall\\ndeadfalls\\ndeadhead\\ndeadheaded\\ndeadheading\\ndeadheads\\ndeadlier\\ndeadliest\\ndeadline\\ndeadlines\\ndeadliness\\ndeadlinesses\\ndeadlock\\ndeadlocked\\ndeadlocking\\ndeadlocks\\ndeadly\\ndeadness\\ndeadnesses\\ndeadpan\\ndeadpanned\\ndeadpanning\\ndeadpans\\ndeads\\ndeadwood\\ndeadwoods\\ndeaerate\\ndeaerated\\ndeaerates\\ndeaerating\\ndeaf\\ndeafen\\ndeafened\\ndeafening\\ndeafens\\ndeafer\\ndeafest\\ndeafish\\ndeafly\\ndeafness\\ndeafnesses\\ndeair\\ndeaired\\ndeairing\\ndeairs\\ndeal\\ndealate\\ndealated\\ndealates\\ndealer\\ndealers\\ndealfish\\ndealfishes\\ndealing\\ndealings\\ndeals\\ndealt\\ndean\\ndeaned\\ndeaneries\\ndeanery\\ndeaning\\ndeans\\ndeanship\\ndeanships\\ndear\\ndearer\\ndearest\\ndearie\\ndearies\\ndearly\\ndearness\\ndearnesses\\ndears\\ndearth\\ndearths\\ndeary\\ndeash\\ndeashed\\ndeashes\\ndeashing\\ndeasil\\ndeath\\ndeathbed\\ndeathbeds\\ndeathcup\\ndeathcups\\ndeathful\\ndeathless\\ndeathly\\ndeaths\\ndeathy\\ndeave\\ndeaved\\ndeaves\\ndeaving\\ndeb\\ndebacle\\ndebacles\\ndebar\\ndebark\\ndebarkation\\ndebarkations\\ndebarked\\ndebarking\\ndebarks\\ndebarred\\ndebarring\\ndebars\\ndebase\\ndebased\\ndebasement\\ndebasements\\ndebaser\\ndebasers\\ndebases\\ndebasing\\ndebatable\\ndebate\\ndebated\\ndebater\\ndebaters\\ndebates\\ndebating\\ndebauch\\ndebauched\\ndebaucheries\\ndebauchery\\ndebauches\\ndebauching\\ndebilitate\\ndebilitated\\ndebilitates\\ndebilitating\\ndebilities\\ndebility\\ndebit\\ndebited\\ndebiting\\ndebits\\ndebonair\\ndebone\\ndeboned\\ndeboner\\ndeboners\\ndebones\\ndeboning\\ndebouch\\ndebouche\\ndebouched\\ndebouches\\ndebouching\\ndebrief\\ndebriefed\\ndebriefing\\ndebriefs\\ndebris\\ndebruise\\ndebruised\\ndebruises\\ndebruising\\ndebs\\ndebt\\ndebtless\\ndebtor\\ndebtors\\ndebts\\ndebug\\ndebugged\\ndebugging\\ndebugs\\ndebunk\\ndebunked\\ndebunker\\ndebunkers\\ndebunking\\ndebunks\\ndebut\\ndebutant\\ndebutante\\ndebutantes\\ndebutants\\ndebuted\\ndebuting\\ndebuts\\ndebye\\ndebyes\\ndecadal\\ndecade\\ndecadence\\ndecadent\\ndecadents\\ndecades\\ndecagon\\ndecagons\\ndecagram\\ndecagrams\\ndecal\\ndecals\\ndecamp\\ndecamped\\ndecamping\\ndecamps\\ndecanal\\ndecane\\ndecanes\\ndecant\\ndecanted\\ndecanter\\ndecanters\\ndecanting\\ndecants\\ndecapitatation\\ndecapitatations\\ndecapitate\\ndecapitated\\ndecapitates\\ndecapitating\\ndecapod\\ndecapods\\ndecare\\ndecares\\ndecay\\ndecayed\\ndecayer\\ndecayers\\ndecaying\\ndecays\\ndecease\\ndeceased\\ndeceases\\ndeceasing\\ndecedent\\ndecedents\\ndeceit\\ndeceitful\\ndeceitfully\\ndeceitfulness\\ndeceitfulnesses\\ndeceits\\ndeceive\\ndeceived\\ndeceiver\\ndeceivers\\ndeceives\\ndeceiving\\ndecelerate\\ndecelerated\\ndecelerates\\ndecelerating\\ndecemvir\\ndecemviri\\ndecemvirs\\ndecenaries\\ndecenary\\ndecencies\\ndecency\\ndecennia\\ndecent\\ndecenter\\ndecentered\\ndecentering\\ndecenters\\ndecentest\\ndecently\\ndecentralization\\ndecentre\\ndecentred\\ndecentres\\ndecentring\\ndeception\\ndeceptions\\ndeceptively\\ndecern\\ndecerned\\ndecerning\\ndecerns\\ndeciare\\ndeciares\\ndecibel\\ndecibels\\ndecide\\ndecided\\ndecidedly\\ndecider\\ndeciders\\ndecides\\ndeciding\\ndecidua\\ndeciduae\\ndecidual\\ndeciduas\\ndeciduous\\ndecigram\\ndecigrams\\ndecile\\ndeciles\\ndecimal\\ndecimally\\ndecimals\\ndecimate\\ndecimated\\ndecimates\\ndecimating\\ndecipher\\ndecipherable\\ndeciphered\\ndeciphering\\ndeciphers\\ndecision\\ndecisions\\ndecisive\\ndecisively\\ndecisiveness\\ndecisivenesses\\ndeck\\ndecked\\ndeckel\\ndeckels\\ndecker\\ndeckers\\ndeckhand\\ndeckhands\\ndecking\\ndeckings\\ndeckle\\ndeckles\\ndecks\\ndeclaim\\ndeclaimed\\ndeclaiming\\ndeclaims\\ndeclamation\\ndeclamations\\ndeclaration\\ndeclarations\\ndeclarative\\ndeclaratory\\ndeclare\\ndeclared\\ndeclarer\\ndeclarers\\ndeclares\\ndeclaring\\ndeclass\\ndeclasse\\ndeclassed\\ndeclasses\\ndeclassing\\ndeclension\\ndeclensions\\ndeclination\\ndeclinations\\ndecline\\ndeclined\\ndecliner\\ndecliners\\ndeclines\\ndeclining\\ndecoct\\ndecocted\\ndecocting\\ndecocts\\ndecode\\ndecoded\\ndecoder\\ndecoders\\ndecodes\\ndecoding\\ndecolor\\ndecolored\\ndecoloring\\ndecolors\\ndecolour\\ndecoloured\\ndecolouring\\ndecolours\\ndecompose\\ndecomposed\\ndecomposes\\ndecomposing\\ndecomposition\\ndecompositions\\ndecongestant\\ndecongestants\\ndecor\\ndecorate\\ndecorated\\ndecorates\\ndecorating\\ndecoration\\ndecorations\\ndecorative\\ndecorator\\ndecorators\\ndecorous\\ndecorously\\ndecorousness\\ndecorousnesses\\ndecors\\ndecorum\\ndecorums\\ndecoy\\ndecoyed\\ndecoyer\\ndecoyers\\ndecoying\\ndecoys\\ndecrease\\ndecreased\\ndecreases\\ndecreasing\\ndecree\\ndecreed\\ndecreeing\\ndecreer\\ndecreers\\ndecrees\\ndecrepit\\ndecrescendo\\ndecretal\\ndecretals\\ndecrial\\ndecrials\\ndecried\\ndecrier\\ndecriers\\ndecries\\ndecrown\\ndecrowned\\ndecrowning\\ndecrowns\\ndecry\\ndecrying\\ndecrypt\\ndecrypted\\ndecrypting\\ndecrypts\\ndecuman\\ndecuple\\ndecupled\\ndecuples\\ndecupling\\ndecuries\\ndecurion\\ndecurions\\ndecurve\\ndecurved\\ndecurves\\ndecurving\\ndecury\\ndedal\\ndedans\\ndedicate\\ndedicated\\ndedicates\\ndedicating\\ndedication\\ndedications\\ndedicatory\\ndeduce\\ndeduced\\ndeduces\\ndeducible\\ndeducing\\ndeduct\\ndeducted\\ndeductible\\ndeducting\\ndeduction\\ndeductions\\ndeductive\\ndeducts\\ndee\\ndeed\\ndeeded\\ndeedier\\ndeediest\\ndeeding\\ndeedless\\ndeeds\\ndeedy\\ndeejay\\ndeejays\\ndeem\\ndeemed\\ndeeming\\ndeems\\ndeemster\\ndeemsters\\ndeep\\ndeepen\\ndeepened\\ndeepener\\ndeepeners\\ndeepening\\ndeepens\\ndeeper\\ndeepest\\ndeeply\\ndeepness\\ndeepnesses\\ndeeps\\ndeer\\ndeerflies\\ndeerfly\\ndeers\\ndeerskin\\ndeerskins\\ndeerweed\\ndeerweeds\\ndeeryard\\ndeeryards\\ndees\\ndeewan\\ndeewans\\ndeface\\ndefaced\\ndefacement\\ndefacements\\ndefacer\\ndefacers\\ndefaces\\ndefacing\\ndefamation\\ndefamations\\ndefamatory\\ndefame\\ndefamed\\ndefamer\\ndefamers\\ndefames\\ndefaming\\ndefat\\ndefats\\ndefatted\\ndefatting\\ndefault\\ndefaulted\\ndefaulting\\ndefaults\\ndefeat\\ndefeated\\ndefeater\\ndefeaters\\ndefeating\\ndefeats\\ndefecate\\ndefecated\\ndefecates\\ndefecating\\ndefecation\\ndefecations\\ndefect\\ndefected\\ndefecting\\ndefection\\ndefections\\ndefective\\ndefectives\\ndefector\\ndefectors\\ndefects\\ndefence\\ndefences\\ndefend\\ndefendant\\ndefendants\\ndefended\\ndefender\\ndefenders\\ndefending\\ndefends\\ndefense\\ndefensed\\ndefenseless\\ndefenses\\ndefensible\\ndefensing\\ndefensive\\ndefer\\ndeference\\ndeferences\\ndeferent\\ndeferential\\ndeferents\\ndeferment\\ndeferments\\ndeferrable\\ndeferral\\ndeferrals\\ndeferred\\ndeferrer\\ndeferrers\\ndeferring\\ndefers\\ndefi\\ndefiance\\ndefiances\\ndefiant\\ndeficiencies\\ndeficiency\\ndeficient\\ndeficit\\ndeficits\\ndefied\\ndefier\\ndefiers\\ndefies\\ndefilade\\ndefiladed\\ndefilades\\ndefilading\\ndefile\\ndefiled\\ndefilement\\ndefilements\\ndefiler\\ndefilers\\ndefiles\\ndefiling\\ndefinable\\ndefinably\\ndefine\\ndefined\\ndefiner\\ndefiners\\ndefines\\ndefining\\ndefinite\\ndefinitely\\ndefinition\\ndefinitions\\ndefinitive\\ndefis\\ndeflate\\ndeflated\\ndeflates\\ndeflating\\ndeflation\\ndeflations\\ndeflator\\ndeflators\\ndeflea\\ndefleaed\\ndefleaing\\ndefleas\\ndeflect\\ndeflected\\ndeflecting\\ndeflection\\ndeflections\\ndeflects\\ndeflexed\\ndeflower\\ndeflowered\\ndeflowering\\ndeflowers\\ndefoam\\ndefoamed\\ndefoamer\\ndefoamers\\ndefoaming\\ndefoams\\ndefog\\ndefogged\\ndefogger\\ndefoggers\\ndefogging\\ndefogs\\ndefoliant\\ndefoliants\\ndefoliate\\ndefoliated\\ndefoliates\\ndefoliating\\ndefoliation\\ndefoliations\\ndeforce\\ndeforced\\ndeforces\\ndeforcing\\ndeforest\\ndeforested\\ndeforesting\\ndeforests\\ndeform\\ndeformation\\ndeformations\\ndeformed\\ndeformer\\ndeformers\\ndeforming\\ndeformities\\ndeformity\\ndeforms\\ndefraud\\ndefrauded\\ndefrauding\\ndefrauds\\ndefray\\ndefrayal\\ndefrayals\\ndefrayed\\ndefrayer\\ndefrayers\\ndefraying\\ndefrays\\ndefrock\\ndefrocked\\ndefrocking\\ndefrocks\\ndefrost\\ndefrosted\\ndefroster\\ndefrosters\\ndefrosting\\ndefrosts\\ndeft\\ndefter\\ndeftest\\ndeftly\\ndeftness\\ndeftnesses\\ndefunct\\ndefuse\\ndefused\\ndefuses\\ndefusing\\ndefuze\\ndefuzed\\ndefuzes\\ndefuzing\\ndefy\\ndefying\\ndegage\\ndegame\\ndegames\\ndegami\\ndegamis\\ndegas\\ndegases\\ndegassed\\ndegasser\\ndegassers\\ndegasses\\ndegassing\\ndegauss\\ndegaussed\\ndegausses\\ndegaussing\\ndegeneracies\\ndegeneracy\\ndegenerate\\ndegenerated\\ndegenerates\\ndegenerating\\ndegeneration\\ndegenerations\\ndegenerative\\ndegerm\\ndegermed\\ndegerming\\ndegerms\\ndeglaze\\ndeglazed\\ndeglazes\\ndeglazing\\ndegradable\\ndegradation\\ndegradations\\ndegrade\\ndegraded\\ndegrader\\ndegraders\\ndegrades\\ndegrading\\ndegrease\\ndegreased\\ndegreases\\ndegreasing\\ndegree\\ndegreed\\ndegrees\\ndegum\\ndegummed\\ndegumming\\ndegums\\ndegust\\ndegusted\\ndegusting\\ndegusts\\ndehisce\\ndehisced\\ndehisces\\ndehiscing\\ndehorn\\ndehorned\\ndehorner\\ndehorners\\ndehorning\\ndehorns\\ndehort\\ndehorted\\ndehorting\\ndehorts\\ndehydrate\\ndehydrated\\ndehydrates\\ndehydrating\\ndehydration\\ndehydrations\\ndei\\ndeice\\ndeiced\\ndeicer\\ndeicers\\ndeices\\ndeicidal\\ndeicide\\ndeicides\\ndeicing\\ndeictic\\ndeific\\ndeifical\\ndeification\\ndeifications\\ndeified\\ndeifier\\ndeifies\\ndeiform\\ndeify\\ndeifying\\ndeign\\ndeigned\\ndeigning\\ndeigns\\ndeil\\ndeils\\ndeionize\\ndeionized\\ndeionizes\\ndeionizing\\ndeism\\ndeisms\\ndeist\\ndeistic\\ndeists\\ndeities\\ndeity\\ndeject\\ndejecta\\ndejected\\ndejecting\\ndejection\\ndejections\\ndejects\\ndejeuner\\ndejeuners\\ndekagram\\ndekagrams\\ndekare\\ndekares\\ndeke\\ndeked\\ndekes\\ndeking\\ndel\\ndelaine\\ndelaines\\ndelate\\ndelated\\ndelates\\ndelating\\ndelation\\ndelations\\ndelator\\ndelators\\ndelay\\ndelayed\\ndelayer\\ndelayers\\ndelaying\\ndelays\\ndele\\ndelead\\ndeleaded\\ndeleading\\ndeleads\\ndeled\\ndelegacies\\ndelegacy\\ndelegate\\ndelegated\\ndelegates\\ndelegating\\ndelegation\\ndelegations\\ndeleing\\ndeles\\ndelete\\ndeleted\\ndeleterious\\ndeletes\\ndeleting\\ndeletion\\ndeletions\\ndelf\\ndelfs\\ndelft\\ndelfts\\ndeli\\ndeliberate\\ndeliberated\\ndeliberately\\ndeliberateness\\ndeliberatenesses\\ndeliberates\\ndeliberating\\ndeliberation\\ndeliberations\\ndeliberative\\ndelicacies\\ndelicacy\\ndelicate\\ndelicates\\ndelicatessen\\ndelicatessens\\ndelicious\\ndeliciously\\ndelict\\ndelicts\\ndelight\\ndelighted\\ndelighting\\ndelights\\ndelime\\ndelimed\\ndelimes\\ndeliming\\ndelimit\\ndelimited\\ndelimiter\\ndelimiters\\ndelimiting\\ndelimits\\ndelineate\\ndelineated\\ndelineates\\ndelineating\\ndelineation\\ndelineations\\ndelinquencies\\ndelinquency\\ndelinquent\\ndelinquents\\ndeliria\\ndelirious\\ndelirium\\ndeliriums\\ndelis\\ndelist\\ndelisted\\ndelisting\\ndelists\\ndeliver\\ndeliverance\\ndeliverances\\ndelivered\\ndeliverer\\ndeliverers\\ndeliveries\\ndelivering\\ndelivers\\ndelivery\\ndell\\ndellies\\ndells\\ndelly\\ndelouse\\ndeloused\\ndelouses\\ndelousing\\ndels\\ndelta\\ndeltaic\\ndeltas\\ndeltic\\ndeltoid\\ndeltoids\\ndelude\\ndeluded\\ndeluder\\ndeluders\\ndeludes\\ndeluding\\ndeluge\\ndeluged\\ndeluges\\ndeluging\\ndelusion\\ndelusions\\ndelusive\\ndelusory\\ndeluster\\ndelustered\\ndelustering\\ndelusters\\ndeluxe\\ndelve\\ndelved\\ndelver\\ndelvers\\ndelves\\ndelving\\ndemagog\\ndemagogies\\ndemagogs\\ndemagogue\\ndemagogueries\\ndemagoguery\\ndemagogues\\ndemagogy\\ndemand\\ndemanded\\ndemander\\ndemanders\\ndemanding\\ndemands\\ndemarcation\\ndemarcations\\ndemarche\\ndemarches\\ndemark\\ndemarked\\ndemarking\\ndemarks\\ndemast\\ndemasted\\ndemasting\\ndemasts\\ndeme\\ndemean\\ndemeaned\\ndemeaning\\ndemeanor\\ndemeanors\\ndemeans\\ndement\\ndemented\\ndementia\\ndementias\\ndementing\\ndements\\ndemerit\\ndemerited\\ndemeriting\\ndemerits\\ndemes\\ndemesne\\ndemesnes\\ndemies\\ndemigod\\ndemigods\\ndemijohn\\ndemijohns\\ndemilune\\ndemilunes\\ndemirep\\ndemireps\\ndemise\\ndemised\\ndemises\\ndemising\\ndemit\\ndemitasse\\ndemitasses\\ndemits\\ndemitted\\ndemitting\\ndemiurge\\ndemiurges\\ndemivolt\\ndemivolts\\ndemo\\ndemob\\ndemobbed\\ndemobbing\\ndemobilization\\ndemobilizations\\ndemobilize\\ndemobilized\\ndemobilizes\\ndemobilizing\\ndemobs\\ndemocracies\\ndemocracy\\ndemocrat\\ndemocratic\\ndemocratize\\ndemocratized\\ndemocratizes\\ndemocratizing\\ndemocrats\\ndemode\\ndemoded\\ndemographic\\ndemography\\ndemolish\\ndemolished\\ndemolishes\\ndemolishing\\ndemolition\\ndemolitions\\ndemon\\ndemoness\\ndemonesses\\ndemoniac\\ndemoniacs\\ndemonian\\ndemonic\\ndemonise\\ndemonised\\ndemonises\\ndemonising\\ndemonism\\ndemonisms\\ndemonist\\ndemonists\\ndemonize\\ndemonized\\ndemonizes\\ndemonizing\\ndemons\\ndemonstrable\\ndemonstrate\\ndemonstrated\\ndemonstrates\\ndemonstrating\\ndemonstration\\ndemonstrations\\ndemonstrative\\ndemonstrator\\ndemonstrators\\ndemoralize\\ndemoralized\\ndemoralizes\\ndemoralizing\\ndemos\\ndemoses\\ndemote\\ndemoted\\ndemotes\\ndemotic\\ndemotics\\ndemoting\\ndemotion\\ndemotions\\ndemotist\\ndemotists\\ndemount\\ndemounted\\ndemounting\\ndemounts\\ndempster\\ndempsters\\ndemur\\ndemure\\ndemurely\\ndemurer\\ndemurest\\ndemurral\\ndemurrals\\ndemurred\\ndemurrer\\ndemurrers\\ndemurring\\ndemurs\\ndemy\\nden\\ndenarii\\ndenarius\\ndenary\\ndenature\\ndenatured\\ndenatures\\ndenaturing\\ndenazified\\ndenazifies\\ndenazify\\ndenazifying\\ndendrite\\ndendrites\\ndendroid\\ndendron\\ndendrons\\ndene\\ndenes\\ndengue\\ndengues\\ndeniable\\ndeniably\\ndenial\\ndenials\\ndenied\\ndenier\\ndeniers\\ndenies\\ndenim\\ndenims\\ndenizen\\ndenizened\\ndenizening\\ndenizens\\ndenned\\ndenning\\ndenomination\\ndenominational\\ndenominations\\ndenominator\\ndenominators\\ndenotation\\ndenotations\\ndenotative\\ndenote\\ndenoted\\ndenotes\\ndenoting\\ndenotive\\ndenouement\\ndenouements\\ndenounce\\ndenounced\\ndenounces\\ndenouncing\\ndens\\ndense\\ndensely\\ndenseness\\ndensenesses\\ndenser\\ndensest\\ndensified\\ndensifies\\ndensify\\ndensifying\\ndensities\\ndensity\\ndent\\ndental\\ndentalia\\ndentally\\ndentals\\ndentate\\ndentated\\ndented\\ndenticle\\ndenticles\\ndentifrice\\ndentifrices\\ndentil\\ndentils\\ndentin\\ndentinal\\ndentine\\ndentines\\ndenting\\ndentins\\ndentist\\ndentistries\\ndentistry\\ndentists\\ndentition\\ndentitions\\ndentoid\\ndents\\ndentural\\ndenture\\ndentures\\ndenudate\\ndenudated\\ndenudates\\ndenudating\\ndenude\\ndenuded\\ndenuder\\ndenuders\\ndenudes\\ndenuding\\ndenunciation\\ndenunciations\\ndeny\\ndenying\\ndeodand\\ndeodands\\ndeodar\\ndeodara\\ndeodaras\\ndeodars\\ndeodorant\\ndeodorants\\ndeodorize\\ndeodorized\\ndeodorizes\\ndeodorizing\\ndepaint\\ndepainted\\ndepainting\\ndepaints\\ndepart\\ndeparted\\ndeparting\\ndepartment\\ndepartmental\\ndepartments\\ndeparts\\ndeparture\\ndepartures\\ndepend\\ndependabilities\\ndependability\\ndependable\\ndepended\\ndependence\\ndependences\\ndependencies\\ndependency\\ndependent\\ndependents\\ndepending\\ndepends\\ndeperm\\ndepermed\\ndeperming\\ndeperms\\ndepict\\ndepicted\\ndepicter\\ndepicters\\ndepicting\\ndepiction\\ndepictions\\ndepictor\\ndepictors\\ndepicts\\ndepilate\\ndepilated\\ndepilates\\ndepilating\\ndeplane\\ndeplaned\\ndeplanes\\ndeplaning\\ndeplete\\ndepleted\\ndepletes\\ndepleting\\ndepletion\\ndepletions\\ndeplorable\\ndeplore\\ndeplored\\ndeplorer\\ndeplorers\\ndeplores\\ndeploring\\ndeploy\\ndeployed\\ndeploying\\ndeployment\\ndeployments\\ndeploys\\ndeplume\\ndeplumed\\ndeplumes\\ndepluming\\ndepolish\\ndepolished\\ndepolishes\\ndepolishing\\ndepone\\ndeponed\\ndeponent\\ndeponents\\ndepones\\ndeponing\\ndeport\\ndeportation\\ndeportations\\ndeported\\ndeportee\\ndeportees\\ndeporting\\ndeportment\\ndeportments\\ndeports\\ndeposal\\ndeposals\\ndepose\\ndeposed\\ndeposer\\ndeposers\\ndeposes\\ndeposing\\ndeposit\\ndeposited\\ndepositing\\ndeposition\\ndepositions\\ndepositor\\ndepositories\\ndepositors\\ndepository\\ndeposits\\ndepot\\ndepots\\ndepravation\\ndepravations\\ndeprave\\ndepraved\\ndepraver\\ndepravers\\ndepraves\\ndepraving\\ndepravities\\ndepravity\\ndeprecate\\ndeprecated\\ndeprecates\\ndeprecating\\ndeprecation\\ndeprecations\\ndeprecatory\\ndepreciate\\ndepreciated\\ndepreciates\\ndepreciating\\ndepreciation\\ndepreciations\\ndepredation\\ndepredations\\ndepress\\ndepressant\\ndepressants\\ndepressed\\ndepresses\\ndepressing\\ndepression\\ndepressions\\ndepressive\\ndepressor\\ndepressors\\ndeprival\\ndeprivals\\ndeprive\\ndeprived\\ndepriver\\ndeprivers\\ndeprives\\ndepriving\\ndepside\\ndepsides\\ndepth\\ndepths\\ndepurate\\ndepurated\\ndepurates\\ndepurating\\ndeputation\\ndeputations\\ndepute\\ndeputed\\ndeputes\\ndeputies\\ndeputing\\ndeputize\\ndeputized\\ndeputizes\\ndeputizing\\ndeputy\\nderaign\\nderaigned\\nderaigning\\nderaigns\\nderail\\nderailed\\nderailing\\nderails\\nderange\\nderanged\\nderangement\\nderangements\\nderanges\\nderanging\\nderat\\nderats\\nderatted\\nderatting\\nderay\\nderays\\nderbies\\nderby\\ndere\\nderelict\\ndereliction\\nderelictions\\nderelicts\\nderide\\nderided\\nderider\\nderiders\\nderides\\nderiding\\nderinger\\nderingers\\nderision\\nderisions\\nderisive\\nderisory\\nderivate\\nderivates\\nderivation\\nderivations\\nderivative\\nderivatives\\nderive\\nderived\\nderiver\\nderivers\\nderives\\nderiving\\nderm\\nderma\\ndermal\\ndermas\\ndermatitis\\ndermatologies\\ndermatologist\\ndermatologists\\ndermatology\\ndermic\\ndermis\\ndermises\\ndermoid\\nderms\\ndernier\\nderogate\\nderogated\\nderogates\\nderogating\\nderogatory\\nderrick\\nderricks\\nderriere\\nderrieres\\nderries\\nderris\\nderrises\\nderry\\ndervish\\ndervishes\\ndes\\ndesalt\\ndesalted\\ndesalter\\ndesalters\\ndesalting\\ndesalts\\ndesand\\ndesanded\\ndesanding\\ndesands\\ndescant\\ndescanted\\ndescanting\\ndescants\\ndescend\\ndescendant\\ndescendants\\ndescended\\ndescendent\\ndescendents\\ndescending\\ndescends\\ndescent\\ndescents\\ndescribable\\ndescribably\\ndescribe\\ndescribed\\ndescribes\\ndescribing\\ndescried\\ndescrier\\ndescriers\\ndescries\\ndescription\\ndescriptions\\ndescriptive\\ndescriptor\\ndescriptors\\ndescry\\ndescrying\\ndesecrate\\ndesecrated\\ndesecrates\\ndesecrating\\ndesecration\\ndesecrations\\ndesegregate\\ndesegregated\\ndesegregates\\ndesegregating\\ndesegregation\\ndesegregations\\ndeselect\\ndeselected\\ndeselecting\\ndeselects\\ndesert\\ndeserted\\ndeserter\\ndeserters\\ndesertic\\ndeserting\\ndeserts\\ndeserve\\ndeserved\\ndeserver\\ndeservers\\ndeserves\\ndeserving\\ndesex\\ndesexed\\ndesexes\\ndesexing\\ndesiccate\\ndesiccated\\ndesiccates\\ndesiccating\\ndesiccation\\ndesiccations\\ndesign\\ndesignate\\ndesignated\\ndesignates\\ndesignating\\ndesignation\\ndesignations\\ndesigned\\ndesignee\\ndesignees\\ndesigner\\ndesigners\\ndesigning\\ndesigns\\ndesilver\\ndesilvered\\ndesilvering\\ndesilvers\\ndesinent\\ndesirabilities\\ndesirability\\ndesirable\\ndesire\\ndesired\\ndesirer\\ndesirers\\ndesires\\ndesiring\\ndesirous\\ndesist\\ndesisted\\ndesisting\\ndesists\\ndesk\\ndeskman\\ndeskmen\\ndesks\\ndesman\\ndesmans\\ndesmid\\ndesmids\\ndesmoid\\ndesmoids\\ndesolate\\ndesolated\\ndesolates\\ndesolating\\ndesolation\\ndesolations\\ndesorb\\ndesorbed\\ndesorbing\\ndesorbs\\ndespair\\ndespaired\\ndespairing\\ndespairs\\ndespatch\\ndespatched\\ndespatches\\ndespatching\\ndesperado\\ndesperadoes\\ndesperados\\ndesperate\\ndesperately\\ndesperation\\ndesperations\\ndespicable\\ndespise\\ndespised\\ndespiser\\ndespisers\\ndespises\\ndespising\\ndespite\\ndespited\\ndespites\\ndespiting\\ndespoil\\ndespoiled\\ndespoiling\\ndespoils\\ndespond\\ndesponded\\ndespondencies\\ndespondency\\ndespondent\\ndesponding\\ndesponds\\ndespot\\ndespotic\\ndespotism\\ndespotisms\\ndespots\\ndesquamation\\ndesquamations\\ndessert\\ndesserts\\ndestain\\ndestained\\ndestaining\\ndestains\\ndestination\\ndestinations\\ndestine\\ndestined\\ndestines\\ndestinies\\ndestining\\ndestiny\\ndestitute\\ndestitution\\ndestitutions\\ndestrier\\ndestriers\\ndestroy\\ndestroyed\\ndestroyer\\ndestroyers\\ndestroying\\ndestroys\\ndestruct\\ndestructed\\ndestructibilities\\ndestructibility\\ndestructible\\ndestructing\\ndestruction\\ndestructions\\ndestructive\\ndestructs\\ndesugar\\ndesugared\\ndesugaring\\ndesugars\\ndesulfur\\ndesulfured\\ndesulfuring\\ndesulfurs\\ndesultory\\ndetach\\ndetached\\ndetacher\\ndetachers\\ndetaches\\ndetaching\\ndetachment\\ndetachments\\ndetail\\ndetailed\\ndetailer\\ndetailers\\ndetailing\\ndetails\\ndetain\\ndetained\\ndetainee\\ndetainees\\ndetainer\\ndetainers\\ndetaining\\ndetains\\ndetect\\ndetectable\\ndetected\\ndetecter\\ndetecters\\ndetecting\\ndetection\\ndetections\\ndetective\\ndetectives\\ndetector\\ndetectors\\ndetects\\ndetent\\ndetente\\ndetentes\\ndetention\\ndetentions\\ndetents\\ndeter\\ndeterge\\ndeterged\\ndetergent\\ndetergents\\ndeterger\\ndetergers\\ndeterges\\ndeterging\\ndeteriorate\\ndeteriorated\\ndeteriorates\\ndeteriorating\\ndeterioration\\ndeteriorations\\ndeterminant\\ndeterminants\\ndetermination\\ndeterminations\\ndetermine\\ndetermined\\ndetermines\\ndetermining\\ndeterred\\ndeterrence\\ndeterrences\\ndeterrent\\ndeterrents\\ndeterrer\\ndeterrers\\ndeterring\\ndeters\\ndetest\\ndetestable\\ndetestation\\ndetestations\\ndetested\\ndetester\\ndetesters\\ndetesting\\ndetests\\ndethrone\\ndethroned\\ndethrones\\ndethroning\\ndetick\\ndeticked\\ndeticker\\ndetickers\\ndeticking\\ndeticks\\ndetinue\\ndetinues\\ndetonate\\ndetonated\\ndetonates\\ndetonating\\ndetonation\\ndetonations\\ndetonator\\ndetonators\\ndetour\\ndetoured\\ndetouring\\ndetours\\ndetoxified\\ndetoxifies\\ndetoxify\\ndetoxifying\\ndetract\\ndetracted\\ndetracting\\ndetraction\\ndetractions\\ndetractor\\ndetractors\\ndetracts\\ndetrain\\ndetrained\\ndetraining\\ndetrains\\ndetriment\\ndetrimental\\ndetrimentally\\ndetriments\\ndetrital\\ndetritus\\ndetrude\\ndetruded\\ndetrudes\\ndetruding\\ndeuce\\ndeuced\\ndeucedly\\ndeuces\\ndeucing\\ndeuteric\\ndeuteron\\ndeuterons\\ndeutzia\\ndeutzias\\ndev\\ndeva\\ndevaluation\\ndevaluations\\ndevalue\\ndevalued\\ndevalues\\ndevaluing\\ndevas\\ndevastate\\ndevastated\\ndevastates\\ndevastating\\ndevastation\\ndevastations\\ndevein\\ndeveined\\ndeveining\\ndeveins\\ndevel\\ndeveled\\ndeveling\\ndevelop\\ndevelope\\ndeveloped\\ndeveloper\\ndevelopers\\ndevelopes\\ndeveloping\\ndevelopment\\ndevelopmental\\ndevelopments\\ndevelops\\ndevels\\ndevest\\ndevested\\ndevesting\\ndevests\\ndeviance\\ndeviances\\ndeviancies\\ndeviancy\\ndeviant\\ndeviants\\ndeviate\\ndeviated\\ndeviates\\ndeviating\\ndeviation\\ndeviations\\ndeviator\\ndeviators\\ndevice\\ndevices\\ndevil\\ndeviled\\ndeviling\\ndevilish\\ndevilkin\\ndevilkins\\ndevilled\\ndevilling\\ndevilries\\ndevilry\\ndevils\\ndeviltries\\ndeviltry\\ndevious\\ndevisal\\ndevisals\\ndevise\\ndevised\\ndevisee\\ndevisees\\ndeviser\\ndevisers\\ndevises\\ndevising\\ndevisor\\ndevisors\\ndevoice\\ndevoiced\\ndevoices\\ndevoicing\\ndevoid\\ndevoir\\ndevoirs\\ndevolve\\ndevolved\\ndevolves\\ndevolving\\ndevon\\ndevons\\ndevote\\ndevoted\\ndevotee\\ndevotees\\ndevotes\\ndevoting\\ndevotion\\ndevotional\\ndevotions\\ndevour\\ndevoured\\ndevourer\\ndevourers\\ndevouring\\ndevours\\ndevout\\ndevoutly\\ndevoutness\\ndevoutnesses\\ndevs\\ndew\\ndewan\\ndewans\\ndewater\\ndewatered\\ndewatering\\ndewaters\\ndewax\\ndewaxed\\ndewaxes\\ndewaxing\\ndewberries\\ndewberry\\ndewclaw\\ndewclaws\\ndewdrop\\ndewdrops\\ndewed\\ndewfall\\ndewfalls\\ndewier\\ndewiest\\ndewily\\ndewiness\\ndewinesses\\ndewing\\ndewlap\\ndewlaps\\ndewless\\ndewool\\ndewooled\\ndewooling\\ndewools\\ndeworm\\ndewormed\\ndeworming\\ndeworms\\ndews\\ndewy\\ndex\\ndexes\\ndexies\\ndexter\\ndexterous\\ndexterously\\ndextral\\ndextran\\ndextrans\\ndextrin\\ndextrine\\ndextrines\\ndextrins\\ndextro\\ndextrose\\ndextroses\\ndextrous\\ndey\\ndeys\\ndezinc\\ndezinced\\ndezincing\\ndezincked\\ndezincking\\ndezincs\\ndhak\\ndhaks\\ndharma\\ndharmas\\ndharmic\\ndharna\\ndharnas\\ndhole\\ndholes\\ndhoolies\\ndhooly\\ndhoora\\ndhooras\\ndhooti\\ndhootie\\ndhooties\\ndhootis\\ndhoti\\ndhotis\\ndhourra\\ndhourras\\ndhow\\ndhows\\ndhurna\\ndhurnas\\ndhuti\\ndhutis\\ndiabase\\ndiabases\\ndiabasic\\ndiabetes\\ndiabetic\\ndiabetics\\ndiableries\\ndiablery\\ndiabolic\\ndiabolical\\ndiabolo\\ndiabolos\\ndiacetyl\\ndiacetyls\\ndiacid\\ndiacidic\\ndiacids\\ndiaconal\\ndiadem\\ndiademed\\ndiademing\\ndiadems\\ndiagnose\\ndiagnosed\\ndiagnoses\\ndiagnosing\\ndiagnosis\\ndiagnostic\\ndiagnostics\\ndiagonal\\ndiagonally\\ndiagonals\\ndiagram\\ndiagramed\\ndiagraming\\ndiagrammatic\\ndiagrammed\\ndiagramming\\ndiagrams\\ndiagraph\\ndiagraphs\\ndial\\ndialect\\ndialectic\\ndialects\\ndialed\\ndialer\\ndialers\\ndialing\\ndialings\\ndialist\\ndialists\\ndiallage\\ndiallages\\ndialled\\ndiallel\\ndialler\\ndiallers\\ndialling\\ndiallings\\ndiallist\\ndiallists\\ndialog\\ndialoger\\ndialogers\\ndialogged\\ndialogging\\ndialogic\\ndialogs\\ndialogue\\ndialogued\\ndialogues\\ndialoguing\\ndials\\ndialyse\\ndialysed\\ndialyser\\ndialysers\\ndialyses\\ndialysing\\ndialysis\\ndialytic\\ndialyze\\ndialyzed\\ndialyzer\\ndialyzers\\ndialyzes\\ndialyzing\\ndiameter\\ndiameters\\ndiametric\\ndiametrical\\ndiametrically\\ndiamide\\ndiamides\\ndiamin\\ndiamine\\ndiamines\\ndiamins\\ndiamond\\ndiamonded\\ndiamonding\\ndiamonds\\ndianthus\\ndianthuses\\ndiapason\\ndiapasons\\ndiapause\\ndiapaused\\ndiapauses\\ndiapausing\\ndiaper\\ndiapered\\ndiapering\\ndiapers\\ndiaphone\\ndiaphones\\ndiaphonies\\ndiaphony\\ndiaphragm\\ndiaphragmatic\\ndiaphragms\\ndiapir\\ndiapiric\\ndiapirs\\ndiapsid\\ndiarchic\\ndiarchies\\ndiarchy\\ndiaries\\ndiarist\\ndiarists\\ndiarrhea\\ndiarrheas\\ndiarrhoea\\ndiarrhoeas\\ndiary\\ndiaspora\\ndiasporas\\ndiaspore\\ndiaspores\\ndiastase\\ndiastases\\ndiastema\\ndiastemata\\ndiaster\\ndiasters\\ndiastole\\ndiastoles\\ndiastral\\ndiatom\\ndiatomic\\ndiatoms\\ndiatonic\\ndiatribe\\ndiatribes\\ndiazepam\\ndiazepams\\ndiazin\\ndiazine\\ndiazines\\ndiazins\\ndiazo\\ndiazole\\ndiazoles\\ndib\\ndibasic\\ndibbed\\ndibber\\ndibbers\\ndibbing\\ndibble\\ndibbled\\ndibbler\\ndibblers\\ndibbles\\ndibbling\\ndibbuk\\ndibbukim\\ndibbuks\\ndibs\\ndicast\\ndicastic\\ndicasts\\ndice\\ndiced\\ndicentra\\ndicentras\\ndicer\\ndicers\\ndices\\ndicey\\ndichasia\\ndichotic\\ndichroic\\ndicier\\ndiciest\\ndicing\\ndick\\ndickens\\ndickenses\\ndicker\\ndickered\\ndickering\\ndickers\\ndickey\\ndickeys\\ndickie\\ndickies\\ndicks\\ndicky\\ndiclinies\\ndicliny\\ndicot\\ndicots\\ndicotyl\\ndicotyls\\ndicrotal\\ndicrotic\\ndicta\\ndictate\\ndictated\\ndictates\\ndictating\\ndictation\\ndictations\\ndictator\\ndictatorial\\ndictators\\ndictatorship\\ndictatorships\\ndiction\\ndictionaries\\ndictionary\\ndictions\\ndictum\\ndictums\\ndicyclic\\ndicyclies\\ndicycly\\ndid\\ndidact\\ndidactic\\ndidacts\\ndidactyl\\ndidapper\\ndidappers\\ndiddle\\ndiddled\\ndiddler\\ndiddlers\\ndiddles\\ndiddling\\ndidies\\ndido\\ndidoes\\ndidos\\ndidst\\ndidy\\ndidymium\\ndidymiums\\ndidymous\\ndidynamies\\ndidynamy\\ndie\\ndieback\\ndiebacks\\ndiecious\\ndied\\ndiehard\\ndiehards\\ndieing\\ndiel\\ndieldrin\\ndieldrins\\ndiemaker\\ndiemakers\\ndiene\\ndienes\\ndiereses\\ndieresis\\ndieretic\\ndies\\ndiesel\\ndiesels\\ndieses\\ndiesis\\ndiester\\ndiesters\\ndiestock\\ndiestocks\\ndiestrum\\ndiestrums\\ndiestrus\\ndiestruses\\ndiet\\ndietaries\\ndietary\\ndieted\\ndieter\\ndieters\\ndietetic\\ndietetics\\ndietician\\ndieticians\\ndieting\\ndiets\\ndiffer\\ndiffered\\ndifference\\ndifferences\\ndifferent\\ndifferential\\ndifferentials\\ndifferentiate\\ndifferentiated\\ndifferentiates\\ndifferentiating\\ndifferentiation\\ndifferently\\ndiffering\\ndiffers\\ndifficult\\ndifficulties\\ndifficulty\\ndiffidence\\ndiffidences\\ndiffident\\ndiffract\\ndiffracted\\ndiffracting\\ndiffracts\\ndiffuse\\ndiffused\\ndiffuser\\ndiffusers\\ndiffuses\\ndiffusing\\ndiffusion\\ndiffusions\\ndiffusor\\ndiffusors\\ndig\\ndigamies\\ndigamist\\ndigamists\\ndigamma\\ndigammas\\ndigamous\\ndigamy\\ndigest\\ndigested\\ndigester\\ndigesters\\ndigesting\\ndigestion\\ndigestions\\ndigestive\\ndigestor\\ndigestors\\ndigests\\ndigged\\ndigger\\ndiggers\\ndigging\\ndiggings\\ndight\\ndighted\\ndighting\\ndights\\ndigit\\ndigital\\ndigitalis\\ndigitally\\ndigitals\\ndigitate\\ndigitize\\ndigitized\\ndigitizes\\ndigitizing\\ndigits\\ndiglot\\ndiglots\\ndignified\\ndignifies\\ndignify\\ndignifying\\ndignitaries\\ndignitary\\ndignities\\ndignity\\ndigoxin\\ndigoxins\\ndigraph\\ndigraphs\\ndigress\\ndigressed\\ndigresses\\ndigressing\\ndigression\\ndigressions\\ndigs\\ndihedral\\ndihedrals\\ndihedron\\ndihedrons\\ndihybrid\\ndihybrids\\ndihydric\\ndikdik\\ndikdiks\\ndike\\ndiked\\ndiker\\ndikers\\ndikes\\ndiking\\ndiktat\\ndiktats\\ndilapidated\\ndilapidation\\ndilapidations\\ndilatant\\ndilatants\\ndilatate\\ndilatation\\ndilatations\\ndilate\\ndilated\\ndilater\\ndilaters\\ndilates\\ndilating\\ndilation\\ndilations\\ndilative\\ndilator\\ndilators\\ndilatory\\ndildo\\ndildoe\\ndildoes\\ndildos\\ndilemma\\ndilemmas\\ndilemmic\\ndilettante\\ndilettantes\\ndilettanti\\ndiligence\\ndiligences\\ndiligent\\ndiligently\\ndill\\ndillies\\ndills\\ndilly\\ndillydallied\\ndillydallies\\ndillydally\\ndillydallying\\ndiluent\\ndiluents\\ndilute\\ndiluted\\ndiluter\\ndiluters\\ndilutes\\ndiluting\\ndilution\\ndilutions\\ndilutive\\ndilutor\\ndilutors\\ndiluvia\\ndiluvial\\ndiluvian\\ndiluvion\\ndiluvions\\ndiluvium\\ndiluviums\\ndim\\ndime\\ndimension\\ndimensional\\ndimensions\\ndimer\\ndimeric\\ndimerism\\ndimerisms\\ndimerize\\ndimerized\\ndimerizes\\ndimerizing\\ndimerous\\ndimers\\ndimes\\ndimeter\\ndimeters\\ndimethyl\\ndimethyls\\ndimetric\\ndiminish\\ndiminished\\ndiminishes\\ndiminishing\\ndiminutive\\ndimities\\ndimity\\ndimly\\ndimmable\\ndimmed\\ndimmer\\ndimmers\\ndimmest\\ndimming\\ndimness\\ndimnesses\\ndimorph\\ndimorphs\\ndimout\\ndimouts\\ndimple\\ndimpled\\ndimples\\ndimplier\\ndimpliest\\ndimpling\\ndimply\\ndims\\ndimwit\\ndimwits\\ndin\\ndinar\\ndinars\\ndindle\\ndindled\\ndindles\\ndindling\\ndine\\ndined\\ndiner\\ndineric\\ndinero\\ndineros\\ndiners\\ndines\\ndinette\\ndinettes\\nding\\ndingbat\\ndingbats\\ndingdong\\ndingdonged\\ndingdonging\\ndingdongs\\ndinged\\ndingey\\ndingeys\\ndinghies\\ndinghy\\ndingier\\ndingies\\ndingiest\\ndingily\\ndinginess\\ndinginesses\\ndinging\\ndingle\\ndingles\\ndingo\\ndingoes\\ndings\\ndingus\\ndinguses\\ndingy\\ndining\\ndink\\ndinked\\ndinkey\\ndinkeys\\ndinkier\\ndinkies\\ndinkiest\\ndinking\\ndinkly\\ndinks\\ndinkum\\ndinky\\ndinned\\ndinner\\ndinners\\ndinning\\ndinosaur\\ndinosaurs\\ndins\\ndint\\ndinted\\ndinting\\ndints\\ndiobol\\ndiobolon\\ndiobolons\\ndiobols\\ndiocesan\\ndiocesans\\ndiocese\\ndioceses\\ndiode\\ndiodes\\ndioecism\\ndioecisms\\ndioicous\\ndiol\\ndiolefin\\ndiolefins\\ndiols\\ndiopside\\ndiopsides\\ndioptase\\ndioptases\\ndiopter\\ndiopters\\ndioptral\\ndioptre\\ndioptres\\ndioptric\\ndiorama\\ndioramas\\ndioramic\\ndiorite\\ndiorites\\ndioritic\\ndioxane\\ndioxanes\\ndioxid\\ndioxide\\ndioxides\\ndioxids\\ndip\\ndiphase\\ndiphasic\\ndiphenyl\\ndiphenyls\\ndiphtheria\\ndiphtherias\\ndiphthong\\ndiphthongs\\ndiplegia\\ndiplegias\\ndiplex\\ndiploe\\ndiploes\\ndiploic\\ndiploid\\ndiploidies\\ndiploids\\ndiploidy\\ndiploma\\ndiplomacies\\ndiplomacy\\ndiplomaed\\ndiplomaing\\ndiplomas\\ndiplomat\\ndiplomata\\ndiplomatic\\ndiplomats\\ndiplont\\ndiplonts\\ndiplopia\\ndiplopias\\ndiplopic\\ndiplopod\\ndiplopods\\ndiploses\\ndiplosis\\ndipnoan\\ndipnoans\\ndipodic\\ndipodies\\ndipody\\ndipolar\\ndipole\\ndipoles\\ndippable\\ndipped\\ndipper\\ndippers\\ndippier\\ndippiest\\ndipping\\ndippy\\ndips\\ndipsades\\ndipsas\\ndipstick\\ndipsticks\\ndipt\\ndiptera\\ndipteral\\ndipteran\\ndipterans\\ndipteron\\ndipththeria\\ndipththerias\\ndiptyca\\ndiptycas\\ndiptych\\ndiptychs\\ndiquat\\ndiquats\\ndirdum\\ndirdums\\ndire\\ndirect\\ndirected\\ndirecter\\ndirectest\\ndirecting\\ndirection\\ndirectional\\ndirections\\ndirective\\ndirectives\\ndirectly\\ndirectness\\ndirector\\ndirectories\\ndirectors\\ndirectory\\ndirects\\ndireful\\ndirely\\ndireness\\ndirenesses\\ndirer\\ndirest\\ndirge\\ndirgeful\\ndirges\\ndirham\\ndirhams\\ndirigible\\ndirigibles\\ndiriment\\ndirk\\ndirked\\ndirking\\ndirks\\ndirl\\ndirled\\ndirling\\ndirls\\ndirndl\\ndirndls\\ndirt\\ndirtied\\ndirtier\\ndirties\\ndirtiest\\ndirtily\\ndirtiness\\ndirtinesses\\ndirts\\ndirty\\ndirtying\\ndisabilities\\ndisability\\ndisable\\ndisabled\\ndisables\\ndisabling\\ndisabuse\\ndisabused\\ndisabuses\\ndisabusing\\ndisadvantage\\ndisadvantageous\\ndisadvantages\\ndisaffect\\ndisaffected\\ndisaffecting\\ndisaffection\\ndisaffections\\ndisaffects\\ndisagree\\ndisagreeable\\ndisagreeables\\ndisagreed\\ndisagreeing\\ndisagreement\\ndisagreements\\ndisagrees\\ndisallow\\ndisallowed\\ndisallowing\\ndisallows\\ndisannul\\ndisannulled\\ndisannulling\\ndisannuls\\ndisappear\\ndisappearance\\ndisappearances\\ndisappeared\\ndisappearing\\ndisappears\\ndisappoint\\ndisappointed\\ndisappointing\\ndisappointment\\ndisappointments\\ndisappoints\\ndisapproval\\ndisapprovals\\ndisapprove\\ndisapproved\\ndisapproves\\ndisapproving\\ndisarm\\ndisarmament\\ndisarmaments\\ndisarmed\\ndisarmer\\ndisarmers\\ndisarming\\ndisarms\\ndisarrange\\ndisarranged\\ndisarrangement\\ndisarrangements\\ndisarranges\\ndisarranging\\ndisarray\\ndisarrayed\\ndisarraying\\ndisarrays\\ndisaster\\ndisasters\\ndisastrous\\ndisavow\\ndisavowal\\ndisavowals\\ndisavowed\\ndisavowing\\ndisavows\\ndisband\\ndisbanded\\ndisbanding\\ndisbands\\ndisbar\\ndisbarment\\ndisbarments\\ndisbarred\\ndisbarring\\ndisbars\\ndisbelief\\ndisbeliefs\\ndisbelieve\\ndisbelieved\\ndisbelieves\\ndisbelieving\\ndisbosom\\ndisbosomed\\ndisbosoming\\ndisbosoms\\ndisbound\\ndisbowel\\ndisboweled\\ndisboweling\\ndisbowelled\\ndisbowelling\\ndisbowels\\ndisbud\\ndisbudded\\ndisbudding\\ndisbuds\\ndisburse\\ndisbursed\\ndisbursement\\ndisbursements\\ndisburses\\ndisbursing\\ndisc\\ndiscant\\ndiscanted\\ndiscanting\\ndiscants\\ndiscard\\ndiscarded\\ndiscarding\\ndiscards\\ndiscase\\ndiscased\\ndiscases\\ndiscasing\\ndisced\\ndiscept\\ndiscepted\\ndiscepting\\ndiscepts\\ndiscern\\ndiscerned\\ndiscernible\\ndiscerning\\ndiscernment\\ndiscernments\\ndiscerns\\ndischarge\\ndischarged\\ndischarges\\ndischarging\\ndisci\\ndiscing\\ndisciple\\ndiscipled\\ndisciples\\ndisciplinarian\\ndisciplinarians\\ndisciplinary\\ndiscipline\\ndisciplined\\ndisciplines\\ndiscipling\\ndisciplining\\ndisclaim\\ndisclaimed\\ndisclaiming\\ndisclaims\\ndisclike\\ndisclose\\ndisclosed\\ndiscloses\\ndisclosing\\ndisclosure\\ndisclosures\\ndisco\\ndiscoid\\ndiscoids\\ndiscolor\\ndiscoloration\\ndiscolorations\\ndiscolored\\ndiscoloring\\ndiscolors\\ndiscomfit\\ndiscomfited\\ndiscomfiting\\ndiscomfits\\ndiscomfiture\\ndiscomfitures\\ndiscomfort\\ndiscomforts\\ndisconcert\\ndisconcerted\\ndisconcerting\\ndisconcerts\\ndisconnect\\ndisconnected\\ndisconnecting\\ndisconnects\\ndisconsolate\\ndiscontent\\ndiscontented\\ndiscontents\\ndiscontinuance\\ndiscontinuances\\ndiscontinuation\\ndiscontinue\\ndiscontinued\\ndiscontinues\\ndiscontinuing\\ndiscord\\ndiscordant\\ndiscorded\\ndiscording\\ndiscords\\ndiscos\\ndiscount\\ndiscounted\\ndiscounting\\ndiscounts\\ndiscourage\\ndiscouraged\\ndiscouragement\\ndiscouragements\\ndiscourages\\ndiscouraging\\ndiscourteous\\ndiscourteously\\ndiscourtesies\\ndiscourtesy\\ndiscover\\ndiscovered\\ndiscoverer\\ndiscoverers\\ndiscoveries\\ndiscovering\\ndiscovers\\ndiscovery\\ndiscredit\\ndiscreditable\\ndiscredited\\ndiscrediting\\ndiscredits\\ndiscreet\\ndiscreeter\\ndiscreetest\\ndiscreetly\\ndiscrepancies\\ndiscrepancy\\ndiscrete\\ndiscretion\\ndiscretionary\\ndiscretions\\ndiscriminate\\ndiscriminated\\ndiscriminates\\ndiscriminating\\ndiscrimination\\ndiscriminations\\ndiscriminatory\\ndiscrown\\ndiscrowned\\ndiscrowning\\ndiscrowns\\ndiscs\\ndiscursive\\ndiscursiveness\\ndiscursivenesses\\ndiscus\\ndiscuses\\ndiscuss\\ndiscussed\\ndiscusses\\ndiscussing\\ndiscussion\\ndiscussions\\ndisdain\\ndisdained\\ndisdainful\\ndisdainfully\\ndisdaining\\ndisdains\\ndisease\\ndiseased\\ndiseases\\ndiseasing\\ndisembark\\ndisembarkation\\ndisembarkations\\ndisembarked\\ndisembarking\\ndisembarks\\ndisembodied\\ndisenchant\\ndisenchanted\\ndisenchanting\\ndisenchantment\\ndisenchantments\\ndisenchants\\ndisendow\\ndisendowed\\ndisendowing\\ndisendows\\ndisentangle\\ndisentangled\\ndisentangles\\ndisentangling\\ndiseuse\\ndiseuses\\ndisfavor\\ndisfavored\\ndisfavoring\\ndisfavors\\ndisfigure\\ndisfigured\\ndisfigurement\\ndisfigurements\\ndisfigures\\ndisfiguring\\ndisfranchise\\ndisfranchised\\ndisfranchisement\\ndisfranchisements\\ndisfranchises\\ndisfranchising\\ndisfrock\\ndisfrocked\\ndisfrocking\\ndisfrocks\\ndisgorge\\ndisgorged\\ndisgorges\\ndisgorging\\ndisgrace\\ndisgraced\\ndisgraceful\\ndisgracefully\\ndisgraces\\ndisgracing\\ndisguise\\ndisguised\\ndisguises\\ndisguising\\ndisgust\\ndisgusted\\ndisgustedly\\ndisgusting\\ndisgustingly\\ndisgusts\\ndish\\ndisharmonies\\ndisharmonious\\ndisharmony\\ndishcloth\\ndishcloths\\ndishearten\\ndisheartened\\ndisheartening\\ndisheartens\\ndished\\ndishelm\\ndishelmed\\ndishelming\\ndishelms\\ndisherit\\ndisherited\\ndisheriting\\ndisherits\\ndishes\\ndishevel\\ndisheveled\\ndisheveling\\ndishevelled\\ndishevelling\\ndishevels\\ndishful\\ndishfuls\\ndishier\\ndishiest\\ndishing\\ndishlike\\ndishonest\\ndishonesties\\ndishonestly\\ndishonesty\\ndishonor\\ndishonorable\\ndishonorably\\ndishonored\\ndishonoring\\ndishonors\\ndishpan\\ndishpans\\ndishrag\\ndishrags\\ndishware\\ndishwares\\ndishwasher\\ndishwashers\\ndishwater\\ndishwaters\\ndishy\\ndisillusion\\ndisillusioned\\ndisillusioning\\ndisillusionment\\ndisillusionments\\ndisillusions\\ndisinclination\\ndisinclinations\\ndisincline\\ndisinclined\\ndisinclines\\ndisinclining\\ndisinfect\\ndisinfectant\\ndisinfectants\\ndisinfected\\ndisinfecting\\ndisinfection\\ndisinfections\\ndisinfects\\ndisinherit\\ndisinherited\\ndisinheriting\\ndisinherits\\ndisintegrate\\ndisintegrated\\ndisintegrates\\ndisintegrating\\ndisintegration\\ndisintegrations\\ndisinter\\ndisinterested\\ndisinterestedness\\ndisinterestednesses\\ndisinterred\\ndisinterring\\ndisinters\\ndisject\\ndisjected\\ndisjecting\\ndisjects\\ndisjoin\\ndisjoined\\ndisjoining\\ndisjoins\\ndisjoint\\ndisjointed\\ndisjointing\\ndisjoints\\ndisjunct\\ndisjuncts\\ndisk\\ndisked\\ndisking\\ndisklike\\ndisks\\ndislike\\ndisliked\\ndisliker\\ndislikers\\ndislikes\\ndisliking\\ndislimn\\ndislimned\\ndislimning\\ndislimns\\ndislocate\\ndislocated\\ndislocates\\ndislocating\\ndislocation\\ndislocations\\ndislodge\\ndislodged\\ndislodges\\ndislodging\\ndisloyal\\ndisloyalties\\ndisloyalty\\ndismal\\ndismaler\\ndismalest\\ndismally\\ndismals\\ndismantle\\ndismantled\\ndismantles\\ndismantling\\ndismast\\ndismasted\\ndismasting\\ndismasts\\ndismay\\ndismayed\\ndismaying\\ndismays\\ndisme\\ndismember\\ndismembered\\ndismembering\\ndismemberment\\ndismemberments\\ndismembers\\ndismes\\ndismiss\\ndismissal\\ndismissals\\ndismissed\\ndismisses\\ndismissing\\ndismount\\ndismounted\\ndismounting\\ndismounts\\ndisobedience\\ndisobediences\\ndisobedient\\ndisobey\\ndisobeyed\\ndisobeying\\ndisobeys\\ndisomic\\ndisorder\\ndisordered\\ndisordering\\ndisorderliness\\ndisorderlinesses\\ndisorderly\\ndisorders\\ndisorganization\\ndisorganizations\\ndisorganize\\ndisorganized\\ndisorganizes\\ndisorganizing\\ndisown\\ndisowned\\ndisowning\\ndisowns\\ndisparage\\ndisparaged\\ndisparagement\\ndisparagements\\ndisparages\\ndisparaging\\ndisparate\\ndisparities\\ndisparity\\ndispart\\ndisparted\\ndisparting\\ndisparts\\ndispassion\\ndispassionate\\ndispassions\\ndispatch\\ndispatched\\ndispatcher\\ndispatchers\\ndispatches\\ndispatching\\ndispel\\ndispelled\\ndispelling\\ndispels\\ndispend\\ndispended\\ndispending\\ndispends\\ndispensable\\ndispensaries\\ndispensary\\ndispensation\\ndispensations\\ndispense\\ndispensed\\ndispenser\\ndispensers\\ndispenses\\ndispensing\\ndispersal\\ndispersals\\ndisperse\\ndispersed\\ndisperses\\ndispersing\\ndispersion\\ndispersions\\ndispirit\\ndispirited\\ndispiriting\\ndispirits\\ndisplace\\ndisplaced\\ndisplacement\\ndisplacements\\ndisplaces\\ndisplacing\\ndisplant\\ndisplanted\\ndisplanting\\ndisplants\\ndisplay\\ndisplayed\\ndisplaying\\ndisplays\\ndisplease\\ndispleased\\ndispleases\\ndispleasing\\ndispleasure\\ndispleasures\\ndisplode\\ndisploded\\ndisplodes\\ndisploding\\ndisplume\\ndisplumed\\ndisplumes\\ndispluming\\ndisport\\ndisported\\ndisporting\\ndisports\\ndisposable\\ndisposal\\ndisposals\\ndispose\\ndisposed\\ndisposer\\ndisposers\\ndisposes\\ndisposing\\ndisposition\\ndispositions\\ndispossess\\ndispossessed\\ndispossesses\\ndispossessing\\ndispossession\\ndispossessions\\ndispread\\ndispreading\\ndispreads\\ndisprize\\ndisprized\\ndisprizes\\ndisprizing\\ndisproof\\ndisproofs\\ndisproportion\\ndisproportionate\\ndisproportions\\ndisprove\\ndisproved\\ndisproves\\ndisproving\\ndisputable\\ndisputably\\ndisputation\\ndisputations\\ndispute\\ndisputed\\ndisputer\\ndisputers\\ndisputes\\ndisputing\\ndisqualification\\ndisqualifications\\ndisqualified\\ndisqualifies\\ndisqualify\\ndisqualifying\\ndisquiet\\ndisquieted\\ndisquieting\\ndisquiets\\ndisrate\\ndisrated\\ndisrates\\ndisrating\\ndisregard\\ndisregarded\\ndisregarding\\ndisregards\\ndisrepair\\ndisrepairs\\ndisreputable\\ndisrepute\\ndisreputes\\ndisrespect\\ndisrespectful\\ndisrespects\\ndisrobe\\ndisrobed\\ndisrober\\ndisrobers\\ndisrobes\\ndisrobing\\ndisroot\\ndisrooted\\ndisrooting\\ndisroots\\ndisrupt\\ndisrupted\\ndisrupting\\ndisruption\\ndisruptions\\ndisruptive\\ndisrupts\\ndissatisfaction\\ndissatisfactions\\ndissatisfies\\ndissatisfy\\ndissave\\ndissaved\\ndissaves\\ndissaving\\ndisseat\\ndisseated\\ndisseating\\ndisseats\\ndissect\\ndissected\\ndissecting\\ndissection\\ndissections\\ndissects\\ndisseise\\ndisseised\\ndisseises\\ndisseising\\ndisseize\\ndisseized\\ndisseizes\\ndisseizing\\ndissemble\\ndissembled\\ndissembler\\ndissemblers\\ndissembles\\ndissembling\\ndisseminate\\ndisseminated\\ndisseminates\\ndisseminating\\ndissemination\\ndissent\\ndissented\\ndissenter\\ndissenters\\ndissentient\\ndissentients\\ndissenting\\ndissention\\ndissentions\\ndissents\\ndissert\\ndissertation\\ndissertations\\ndisserted\\ndisserting\\ndisserts\\ndisserve\\ndisserved\\ndisserves\\ndisservice\\ndisserving\\ndissever\\ndissevered\\ndissevering\\ndissevers\\ndissidence\\ndissidences\\ndissident\\ndissidents\\ndissimilar\\ndissimilarities\\ndissimilarity\\ndissipate\\ndissipated\\ndissipates\\ndissipating\\ndissipation\\ndissipations\\ndissociate\\ndissociated\\ndissociates\\ndissociating\\ndissociation\\ndissociations\\ndissolute\\ndissolution\\ndissolutions\\ndissolve\\ndissolved\\ndissolves\\ndissolving\\ndissonance\\ndissonances\\ndissonant\\ndissuade\\ndissuaded\\ndissuades\\ndissuading\\ndissuasion\\ndissuasions\\ndistaff\\ndistaffs\\ndistain\\ndistained\\ndistaining\\ndistains\\ndistal\\ndistally\\ndistance\\ndistanced\\ndistances\\ndistancing\\ndistant\\ndistaste\\ndistasted\\ndistasteful\\ndistastes\\ndistasting\\ndistaves\\ndistemper\\ndistempers\\ndistend\\ndistended\\ndistending\\ndistends\\ndistension\\ndistensions\\ndistent\\ndistention\\ndistentions\\ndistich\\ndistichs\\ndistil\\ndistill\\ndistillate\\ndistillates\\ndistillation\\ndistillations\\ndistilled\\ndistiller\\ndistilleries\\ndistillers\\ndistillery\\ndistilling\\ndistills\\ndistils\\ndistinct\\ndistincter\\ndistinctest\\ndistinction\\ndistinctions\\ndistinctive\\ndistinctively\\ndistinctiveness\\ndistinctivenesses\\ndistinctly\\ndistinctness\\ndistinctnesses\\ndistinguish\\ndistinguishable\\ndistinguished\\ndistinguishes\\ndistinguishing\\ndistome\\ndistomes\\ndistort\\ndistorted\\ndistorting\\ndistortion\\ndistortions\\ndistorts\\ndistract\\ndistracted\\ndistracting\\ndistraction\\ndistractions\\ndistracts\\ndistrain\\ndistrained\\ndistraining\\ndistrains\\ndistrait\\ndistraught\\ndistress\\ndistressed\\ndistresses\\ndistressful\\ndistressing\\ndistribute\\ndistributed\\ndistributes\\ndistributing\\ndistribution\\ndistributions\\ndistributive\\ndistributor\\ndistributors\\ndistrict\\ndistricted\\ndistricting\\ndistricts\\ndistrust\\ndistrusted\\ndistrustful\\ndistrusting\\ndistrusts\\ndisturb\\ndisturbance\\ndisturbances\\ndisturbed\\ndisturber\\ndisturbers\\ndisturbing\\ndisturbs\\ndisulfid\\ndisulfids\\ndisunion\\ndisunions\\ndisunite\\ndisunited\\ndisunites\\ndisunities\\ndisuniting\\ndisunity\\ndisuse\\ndisused\\ndisuses\\ndisusing\\ndisvalue\\ndisvalued\\ndisvalues\\ndisvaluing\\ndisyoke\\ndisyoked\\ndisyokes\\ndisyoking\\ndit\\ndita\\nditas\\nditch\\nditched\\nditcher\\nditchers\\nditches\\nditching\\ndite\\ndites\\nditheism\\nditheisms\\nditheist\\nditheists\\ndither\\ndithered\\ndithering\\ndithers\\ndithery\\ndithiol\\ndits\\ndittanies\\ndittany\\nditties\\nditto\\ndittoed\\ndittoing\\ndittos\\nditty\\ndiureses\\ndiuresis\\ndiuretic\\ndiuretics\\ndiurnal\\ndiurnals\\ndiuron\\ndiurons\\ndiva\\ndivagate\\ndivagated\\ndivagates\\ndivagating\\ndivalent\\ndivan\\ndivans\\ndivas\\ndive\\ndived\\ndiver\\ndiverge\\ndiverged\\ndivergence\\ndivergences\\ndivergent\\ndiverges\\ndiverging\\ndivers\\ndiverse\\ndiversification\\ndiversifications\\ndiversify\\ndiversion\\ndiversions\\ndiversities\\ndiversity\\ndivert\\ndiverted\\ndiverter\\ndiverters\\ndiverting\\ndiverts\\ndives\\ndivest\\ndivested\\ndivesting\\ndivests\\ndivide\\ndivided\\ndividend\\ndividends\\ndivider\\ndividers\\ndivides\\ndividing\\ndividual\\ndivination\\ndivinations\\ndivine\\ndivined\\ndivinely\\ndiviner\\ndiviners\\ndivines\\ndivinest\\ndiving\\ndivining\\ndivinise\\ndivinised\\ndivinises\\ndivinising\\ndivinities\\ndivinity\\ndivinize\\ndivinized\\ndivinizes\\ndivinizing\\ndivisibilities\\ndivisibility\\ndivisible\\ndivision\\ndivisional\\ndivisions\\ndivisive\\ndivisor\\ndivisors\\ndivorce\\ndivorced\\ndivorcee\\ndivorcees\\ndivorcer\\ndivorcers\\ndivorces\\ndivorcing\\ndivot\\ndivots\\ndivulge\\ndivulged\\ndivulger\\ndivulgers\\ndivulges\\ndivulging\\ndivvied\\ndivvies\\ndivvy\\ndivvying\\ndiwan\\ndiwans\\ndixit\\ndixits\\ndizen\\ndizened\\ndizening\\ndizens\\ndizygous\\ndizzied\\ndizzier\\ndizzies\\ndizziest\\ndizzily\\ndizziness\\ndizzy\\ndizzying\\ndjebel\\ndjebels\\ndjellaba\\ndjellabas\\ndjin\\ndjinn\\ndjinni\\ndjinns\\ndjinny\\ndjins\\ndo\\ndoable\\ndoat\\ndoated\\ndoating\\ndoats\\ndobber\\ndobbers\\ndobbies\\ndobbin\\ndobbins\\ndobby\\ndobie\\ndobies\\ndobla\\ndoblas\\ndoblon\\ndoblones\\ndoblons\\ndobra\\ndobras\\ndobson\\ndobsons\\ndoby\\ndoc\\ndocent\\ndocents\\ndocetic\\ndocile\\ndocilely\\ndocilities\\ndocility\\ndock\\ndockage\\ndockages\\ndocked\\ndocker\\ndockers\\ndocket\\ndocketed\\ndocketing\\ndockets\\ndockhand\\ndockhands\\ndocking\\ndockland\\ndocklands\\ndocks\\ndockside\\ndocksides\\ndockworker\\ndockworkers\\ndockyard\\ndockyards\\ndocs\\ndoctor\\ndoctoral\\ndoctored\\ndoctoring\\ndoctors\\ndoctrinal\\ndoctrine\\ndoctrines\\ndocument\\ndocumentaries\\ndocumentary\\ndocumentation\\ndocumentations\\ndocumented\\ndocumenter\\ndocumenters\\ndocumenting\\ndocuments\\ndodder\\ndoddered\\ndodderer\\ndodderers\\ndoddering\\ndodders\\ndoddery\\ndodge\\ndodged\\ndodger\\ndodgeries\\ndodgers\\ndodgery\\ndodges\\ndodgier\\ndodgiest\\ndodging\\ndodgy\\ndodo\\ndodoes\\ndodoism\\ndodoisms\\ndodos\\ndoe\\ndoer\\ndoers\\ndoes\\ndoeskin\\ndoeskins\\ndoest\\ndoeth\\ndoff\\ndoffed\\ndoffer\\ndoffers\\ndoffing\\ndoffs\\ndog\\ndogbane\\ndogbanes\\ndogberries\\ndogberry\\ndogcart\\ndogcarts\\ndogcatcher\\ndogcatchers\\ndogdom\\ndogdoms\\ndoge\\ndogedom\\ndogedoms\\ndoges\\ndogeship\\ndogeships\\ndogey\\ndogeys\\ndogface\\ndogfaces\\ndogfight\\ndogfighting\\ndogfights\\ndogfish\\ndogfishes\\ndogfought\\ndogged\\ndoggedly\\ndogger\\ndoggerel\\ndoggerels\\ndoggeries\\ndoggers\\ndoggery\\ndoggie\\ndoggier\\ndoggies\\ndoggiest\\ndogging\\ndoggish\\ndoggo\\ndoggone\\ndoggoned\\ndoggoneder\\ndoggonedest\\ndoggoner\\ndoggones\\ndoggonest\\ndoggoning\\ndoggrel\\ndoggrels\\ndoggy\\ndoghouse\\ndoghouses\\ndogie\\ndogies\\ndogleg\\ndoglegged\\ndoglegging\\ndoglegs\\ndoglike\\ndogma\\ndogmas\\ndogmata\\ndogmatic\\ndogmatism\\ndogmatisms\\ndognap\\ndognaped\\ndognaper\\ndognapers\\ndognaping\\ndognapped\\ndognapping\\ndognaps\\ndogs\\ndogsbodies\\ndogsbody\\ndogsled\\ndogsleds\\ndogteeth\\ndogtooth\\ndogtrot\\ndogtrots\\ndogtrotted\\ndogtrotting\\ndogvane\\ndogvanes\\ndogwatch\\ndogwatches\\ndogwood\\ndogwoods\\ndogy\\ndoiled\\ndoilies\\ndoily\\ndoing\\ndoings\\ndoit\\ndoited\\ndoits\\ndojo\\ndojos\\ndol\\ndolce\\ndolci\\ndoldrums\\ndole\\ndoled\\ndoleful\\ndolefuller\\ndolefullest\\ndolefully\\ndolerite\\ndolerites\\ndoles\\ndolesome\\ndoling\\ndoll\\ndollar\\ndollars\\ndolled\\ndollied\\ndollies\\ndolling\\ndollish\\ndollop\\ndollops\\ndolls\\ndolly\\ndollying\\ndolman\\ndolmans\\ndolmen\\ndolmens\\ndolomite\\ndolomites\\ndolor\\ndoloroso\\ndolorous\\ndolors\\ndolour\\ndolours\\ndolphin\\ndolphins\\ndols\\ndolt\\ndoltish\\ndolts\\ndom\\ndomain\\ndomains\\ndomal\\ndome\\ndomed\\ndomelike\\ndomes\\ndomesday\\ndomesdays\\ndomestic\\ndomestically\\ndomesticate\\ndomesticated\\ndomesticates\\ndomesticating\\ndomestication\\ndomestications\\ndomestics\\ndomic\\ndomical\\ndomicil\\ndomicile\\ndomiciled\\ndomiciles\\ndomiciling\\ndomicils\\ndominance\\ndominances\\ndominant\\ndominants\\ndominate\\ndominated\\ndominates\\ndominating\\ndomination\\ndominations\\ndomine\\ndomineer\\ndomineered\\ndomineering\\ndomineers\\ndomines\\ndoming\\ndominick\\ndominicks\\ndominie\\ndominies\\ndominion\\ndominions\\ndominium\\ndominiums\\ndomino\\ndominoes\\ndominos\\ndoms\\ndon\\ndona\\ndonas\\ndonate\\ndonated\\ndonates\\ndonating\\ndonation\\ndonations\\ndonative\\ndonatives\\ndonator\\ndonators\\ndone\\ndonee\\ndonees\\ndoneness\\ndonenesses\\ndong\\ndongola\\ndongolas\\ndongs\\ndonjon\\ndonjons\\ndonkey\\ndonkeys\\ndonna\\ndonnas\\ndonne\\ndonned\\ndonnee\\ndonnees\\ndonnerd\\ndonnered\\ndonnert\\ndonning\\ndonnish\\ndonor\\ndonors\\ndons\\ndonsie\\ndonsy\\ndonut\\ndonuts\\ndonzel\\ndonzels\\ndoodad\\ndoodads\\ndoodle\\ndoodled\\ndoodler\\ndoodlers\\ndoodles\\ndoodling\\ndoolee\\ndoolees\\ndoolie\\ndoolies\\ndooly\\ndoom\\ndoomed\\ndoomful\\ndooming\\ndooms\\ndoomsday\\ndoomsdays\\ndoomster\\ndoomsters\\ndoor\\ndoorbell\\ndoorbells\\ndoorjamb\\ndoorjambs\\ndoorknob\\ndoorknobs\\ndoorless\\ndoorman\\ndoormat\\ndoormats\\ndoormen\\ndoornail\\ndoornails\\ndoorpost\\ndoorposts\\ndoors\\ndoorsill\\ndoorsills\\ndoorstep\\ndoorsteps\\ndoorstop\\ndoorstops\\ndoorway\\ndoorways\\ndooryard\\ndooryards\\ndoozer\\ndoozers\\ndoozies\\ndoozy\\ndopa\\ndopamine\\ndopamines\\ndopant\\ndopants\\ndopas\\ndope\\ndoped\\ndoper\\ndopers\\ndopes\\ndopester\\ndopesters\\ndopey\\ndopier\\ndopiest\\ndopiness\\ndopinesses\\ndoping\\ndopy\\ndor\\ndorado\\ndorados\\ndorbug\\ndorbugs\\ndorhawk\\ndorhawks\\ndories\\ndorm\\ndormancies\\ndormancy\\ndormant\\ndormer\\ndormers\\ndormice\\ndormie\\ndormient\\ndormin\\ndormins\\ndormitories\\ndormitory\\ndormouse\\ndorms\\ndormy\\ndorneck\\ndornecks\\ndornick\\ndornicks\\ndornock\\ndornocks\\ndorp\\ndorper\\ndorpers\\ndorps\\ndorr\\ndorrs\\ndors\\ndorsa\\ndorsad\\ndorsal\\ndorsally\\ndorsals\\ndorser\\ndorsers\\ndorsum\\ndorty\\ndory\\ndos\\ndosage\\ndosages\\ndose\\ndosed\\ndoser\\ndosers\\ndoses\\ndosimetry\\ndosing\\ndoss\\ndossal\\ndossals\\ndossed\\ndossel\\ndossels\\ndosser\\ndosseret\\ndosserets\\ndossers\\ndosses\\ndossier\\ndossiers\\ndossil\\ndossils\\ndossing\\ndost\\ndot\\ndotage\\ndotages\\ndotal\\ndotard\\ndotardly\\ndotards\\ndotation\\ndotations\\ndote\\ndoted\\ndoter\\ndoters\\ndotes\\ndoth\\ndotier\\ndotiest\\ndoting\\ndotingly\\ndots\\ndotted\\ndottel\\ndottels\\ndotter\\ndotterel\\ndotterels\\ndotters\\ndottier\\ndottiest\\ndottily\\ndotting\\ndottle\\ndottles\\ndottrel\\ndottrels\\ndotty\\ndoty\\ndouble\\ndoublecross\\ndoublecrossed\\ndoublecrosses\\ndoublecrossing\\ndoubled\\ndoubler\\ndoublers\\ndoubles\\ndoublet\\ndoublets\\ndoubling\\ndoubloon\\ndoubloons\\ndoublure\\ndoublures\\ndoubly\\ndoubt\\ndoubted\\ndoubter\\ndoubters\\ndoubtful\\ndoubtfully\\ndoubting\\ndoubtless\\ndoubts\\ndouce\\ndoucely\\ndouceur\\ndouceurs\\ndouche\\ndouched\\ndouches\\ndouching\\ndough\\ndoughboy\\ndoughboys\\ndoughier\\ndoughiest\\ndoughnut\\ndoughnuts\\ndoughs\\ndought\\ndoughtier\\ndoughtiest\\ndoughty\\ndoughy\\ndouma\\ndoumas\\ndour\\ndoura\\ndourah\\ndourahs\\ndouras\\ndourer\\ndourest\\ndourine\\ndourines\\ndourly\\ndourness\\ndournesses\\ndouse\\ndoused\\ndouser\\ndousers\\ndouses\\ndousing\\ndouzeper\\ndouzepers\\ndove\\ndovecot\\ndovecote\\ndovecotes\\ndovecots\\ndovekey\\ndovekeys\\ndovekie\\ndovekies\\ndovelike\\ndoven\\ndovened\\ndovening\\ndovens\\ndoves\\ndovetail\\ndovetailed\\ndovetailing\\ndovetails\\ndovish\\ndow\\ndowable\\ndowager\\ndowagers\\ndowdier\\ndowdies\\ndowdiest\\ndowdily\\ndowdy\\ndowdyish\\ndowed\\ndowel\\ndoweled\\ndoweling\\ndowelled\\ndowelling\\ndowels\\ndower\\ndowered\\ndoweries\\ndowering\\ndowers\\ndowery\\ndowie\\ndowing\\ndown\\ndownbeat\\ndownbeats\\ndowncast\\ndowncasts\\ndowncome\\ndowncomes\\ndowned\\ndowner\\ndowners\\ndownfall\\ndownfallen\\ndownfalls\\ndowngrade\\ndowngraded\\ndowngrades\\ndowngrading\\ndownhaul\\ndownhauls\\ndownhearted\\ndownhill\\ndownhills\\ndownier\\ndowniest\\ndowning\\ndownplay\\ndownplayed\\ndownplaying\\ndownplays\\ndownpour\\ndownpours\\ndownright\\ndowns\\ndownstairs\\ndowntime\\ndowntimes\\ndowntown\\ndowntowns\\ndowntrod\\ndowntrodden\\ndownturn\\ndownturns\\ndownward\\ndownwards\\ndownwind\\ndowny\\ndowries\\ndowry\\ndows\\ndowsabel\\ndowsabels\\ndowse\\ndowsed\\ndowser\\ndowsers\\ndowses\\ndowsing\\ndoxie\\ndoxies\\ndoxologies\\ndoxology\\ndoxorubicin\\ndoxy\\ndoyen\\ndoyenne\\ndoyennes\\ndoyens\\ndoyley\\ndoyleys\\ndoylies\\ndoyly\\ndoze\\ndozed\\ndozen\\ndozened\\ndozening\\ndozens\\ndozenth\\ndozenths\\ndozer\\ndozers\\ndozes\\ndozier\\ndoziest\\ndozily\\ndoziness\\ndozinesses\\ndozing\\ndozy\\ndrab\\ndrabbed\\ndrabber\\ndrabbest\\ndrabbet\\ndrabbets\\ndrabbing\\ndrabble\\ndrabbled\\ndrabbles\\ndrabbling\\ndrably\\ndrabness\\ndrabnesses\\ndrabs\\ndracaena\\ndracaenas\\ndrachm\\ndrachma\\ndrachmae\\ndrachmai\\ndrachmas\\ndrachms\\ndraconic\\ndraff\\ndraffier\\ndraffiest\\ndraffish\\ndraffs\\ndraffy\\ndraft\\ndrafted\\ndraftee\\ndraftees\\ndrafter\\ndrafters\\ndraftier\\ndraftiest\\ndraftily\\ndrafting\\ndraftings\\ndrafts\\ndraftsman\\ndraftsmen\\ndrafty\\ndrag\\ndragee\\ndragees\\ndragged\\ndragger\\ndraggers\\ndraggier\\ndraggiest\\ndragging\\ndraggle\\ndraggled\\ndraggles\\ndraggling\\ndraggy\\ndragline\\ndraglines\\ndragnet\\ndragnets\\ndragoman\\ndragomans\\ndragomen\\ndragon\\ndragonet\\ndragonets\\ndragons\\ndragoon\\ndragooned\\ndragooning\\ndragoons\\ndragrope\\ndragropes\\ndrags\\ndragster\\ndragsters\\ndrail\\ndrails\\ndrain\\ndrainage\\ndrainages\\ndrained\\ndrainer\\ndrainers\\ndraining\\ndrainpipe\\ndrainpipes\\ndrains\\ndrake\\ndrakes\\ndram\\ndrama\\ndramas\\ndramatic\\ndramatically\\ndramatist\\ndramatists\\ndramatization\\ndramatizations\\ndramatize\\ndrammed\\ndramming\\ndrammock\\ndrammocks\\ndrams\\ndramshop\\ndramshops\\ndrank\\ndrapable\\ndrape\\ndraped\\ndraper\\ndraperies\\ndrapers\\ndrapery\\ndrapes\\ndraping\\ndrastic\\ndrastically\\ndrat\\ndrats\\ndratted\\ndratting\\ndraught\\ndraughted\\ndraughtier\\ndraughtiest\\ndraughting\\ndraughts\\ndraughty\\ndrave\\ndraw\\ndrawable\\ndrawback\\ndrawbacks\\ndrawbar\\ndrawbars\\ndrawbore\\ndrawbores\\ndrawbridge\\ndrawbridges\\ndrawdown\\ndrawdowns\\ndrawee\\ndrawees\\ndrawer\\ndrawers\\ndrawing\\ndrawings\\ndrawl\\ndrawled\\ndrawler\\ndrawlers\\ndrawlier\\ndrawliest\\ndrawling\\ndrawls\\ndrawly\\ndrawn\\ndraws\\ndrawtube\\ndrawtubes\\ndray\\ndrayage\\ndrayages\\ndrayed\\ndraying\\ndrayman\\ndraymen\\ndrays\\ndread\\ndreaded\\ndreadful\\ndreadfully\\ndreadfuls\\ndreading\\ndreads\\ndream\\ndreamed\\ndreamer\\ndreamers\\ndreamful\\ndreamier\\ndreamiest\\ndreamily\\ndreaming\\ndreamlike\\ndreams\\ndreamt\\ndreamy\\ndrear\\ndrearier\\ndrearies\\ndreariest\\ndrearily\\ndreary\\ndreck\\ndrecks\\ndredge\\ndredged\\ndredger\\ndredgers\\ndredges\\ndredging\\ndredgings\\ndree\\ndreed\\ndreeing\\ndrees\\ndreg\\ndreggier\\ndreggiest\\ndreggish\\ndreggy\\ndregs\\ndreich\\ndreidel\\ndreidels\\ndreidl\\ndreidls\\ndreigh\\ndrek\\ndreks\\ndrench\\ndrenched\\ndrencher\\ndrenchers\\ndrenches\\ndrenching\\ndress\\ndressage\\ndressages\\ndressed\\ndresser\\ndressers\\ndresses\\ndressier\\ndressiest\\ndressily\\ndressing\\ndressings\\ndressmaker\\ndressmakers\\ndressmaking\\ndressmakings\\ndressy\\ndrest\\ndrew\\ndrib\\ndribbed\\ndribbing\\ndribble\\ndribbled\\ndribbler\\ndribblers\\ndribbles\\ndribblet\\ndribblets\\ndribbling\\ndriblet\\ndriblets\\ndribs\\ndried\\ndrier\\ndriers\\ndries\\ndriest\\ndrift\\ndriftage\\ndriftages\\ndrifted\\ndrifter\\ndrifters\\ndriftier\\ndriftiest\\ndrifting\\ndriftpin\\ndriftpins\\ndrifts\\ndriftwood\\ndriftwoods\\ndrifty\\ndrill\\ndrilled\\ndriller\\ndrillers\\ndrilling\\ndrillings\\ndrills\\ndrily\\ndrink\\ndrinkable\\ndrinker\\ndrinkers\\ndrinking\\ndrinks\\ndrip\\ndripless\\ndripped\\ndripper\\ndrippers\\ndrippier\\ndrippiest\\ndripping\\ndrippings\\ndrippy\\ndrips\\ndript\\ndrivable\\ndrive\\ndrivel\\ndriveled\\ndriveler\\ndrivelers\\ndriveling\\ndrivelled\\ndrivelling\\ndrivels\\ndriven\\ndriver\\ndrivers\\ndrives\\ndriveway\\ndriveways\\ndriving\\ndrizzle\\ndrizzled\\ndrizzles\\ndrizzlier\\ndrizzliest\\ndrizzling\\ndrizzly\\ndrogue\\ndrogues\\ndroit\\ndroits\\ndroll\\ndrolled\\ndroller\\ndrolleries\\ndrollery\\ndrollest\\ndrolling\\ndrolls\\ndrolly\\ndromedaries\\ndromedary\\ndromon\\ndromond\\ndromonds\\ndromons\\ndrone\\ndroned\\ndroner\\ndroners\\ndrones\\ndrongo\\ndrongos\\ndroning\\ndronish\\ndrool\\ndrooled\\ndrooling\\ndrools\\ndroop\\ndrooped\\ndroopier\\ndroopiest\\ndroopily\\ndrooping\\ndroops\\ndroopy\\ndrop\\ndrophead\\ndropheads\\ndropkick\\ndropkicks\\ndroplet\\ndroplets\\ndropout\\ndropouts\\ndropped\\ndropper\\ndroppers\\ndropping\\ndroppings\\ndrops\\ndropshot\\ndropshots\\ndropsied\\ndropsies\\ndropsy\\ndropt\\ndropwort\\ndropworts\\ndrosera\\ndroseras\\ndroshkies\\ndroshky\\ndroskies\\ndrosky\\ndross\\ndrosses\\ndrossier\\ndrossiest\\ndrossy\\ndrought\\ndroughtier\\ndroughtiest\\ndroughts\\ndroughty\\ndrouk\\ndrouked\\ndrouking\\ndrouks\\ndrouth\\ndrouthier\\ndrouthiest\\ndrouths\\ndrouthy\\ndrove\\ndroved\\ndrover\\ndrovers\\ndroves\\ndroving\\ndrown\\ndrownd\\ndrownded\\ndrownding\\ndrownds\\ndrowned\\ndrowner\\ndrowners\\ndrowning\\ndrowns\\ndrowse\\ndrowsed\\ndrowses\\ndrowsier\\ndrowsiest\\ndrowsily\\ndrowsing\\ndrowsy\\ndrub\\ndrubbed\\ndrubber\\ndrubbers\\ndrubbing\\ndrubbings\\ndrubs\\ndrudge\\ndrudged\\ndrudger\\ndrudgeries\\ndrudgers\\ndrudgery\\ndrudges\\ndrudging\\ndrug\\ndrugged\\ndrugget\\ndruggets\\ndrugging\\ndruggist\\ndruggists\\ndrugs\\ndrugstore\\ndrugstores\\ndruid\\ndruidess\\ndruidesses\\ndruidic\\ndruidism\\ndruidisms\\ndruids\\ndrum\\ndrumbeat\\ndrumbeats\\ndrumble\\ndrumbled\\ndrumbles\\ndrumbling\\ndrumfire\\ndrumfires\\ndrumfish\\ndrumfishes\\ndrumhead\\ndrumheads\\ndrumlier\\ndrumliest\\ndrumlike\\ndrumlin\\ndrumlins\\ndrumly\\ndrummed\\ndrummer\\ndrummers\\ndrumming\\ndrumroll\\ndrumrolls\\ndrums\\ndrumstick\\ndrumsticks\\ndrunk\\ndrunkard\\ndrunkards\\ndrunken\\ndrunkenly\\ndrunkenness\\ndrunkennesses\\ndrunker\\ndrunkest\\ndrunks\\ndrupe\\ndrupelet\\ndrupelets\\ndrupes\\ndruse\\ndruses\\ndruthers\\ndry\\ndryable\\ndryad\\ndryades\\ndryadic\\ndryads\\ndryer\\ndryers\\ndryest\\ndrying\\ndrylot\\ndrylots\\ndryly\\ndryness\\ndrynesses\\ndrypoint\\ndrypoints\\ndrys\\nduad\\nduads\\ndual\\ndualism\\ndualisms\\ndualist\\ndualists\\ndualities\\nduality\\ndualize\\ndualized\\ndualizes\\ndualizing\\ndually\\nduals\\ndub\\ndubbed\\ndubber\\ndubbers\\ndubbin\\ndubbing\\ndubbings\\ndubbins\\ndubieties\\ndubiety\\ndubious\\ndubiously\\ndubiousness\\ndubiousnesses\\ndubonnet\\ndubonnets\\ndubs\\nduc\\nducal\\nducally\\nducat\\nducats\\nduce\\nduces\\nduchess\\nduchesses\\nduchies\\nduchy\\nduci\\nduck\\nduckbill\\nduckbills\\nducked\\nducker\\nduckers\\nduckie\\nduckier\\nduckies\\nduckiest\\nducking\\nduckling\\nducklings\\nduckpin\\nduckpins\\nducks\\nducktail\\nducktails\\nduckweed\\nduckweeds\\nducky\\nducs\\nduct\\nducted\\nductile\\nductilities\\nductility\\nducting\\nductings\\nductless\\nducts\\nductule\\nductules\\ndud\\nduddie\\nduddy\\ndude\\ndudeen\\ndudeens\\ndudes\\ndudgeon\\ndudgeons\\ndudish\\ndudishly\\nduds\\ndue\\nduecento\\nduecentos\\nduel\\ndueled\\ndueler\\nduelers\\ndueling\\nduelist\\nduelists\\nduelled\\ndueller\\nduellers\\nduelli\\nduelling\\nduellist\\nduellists\\nduello\\nduellos\\nduels\\nduende\\nduendes\\ndueness\\nduenesses\\nduenna\\nduennas\\ndues\\nduet\\nduets\\nduetted\\nduetting\\nduettist\\nduettists\\nduff\\nduffel\\nduffels\\nduffer\\nduffers\\nduffle\\nduffles\\nduffs\\ndug\\ndugong\\ndugongs\\ndugout\\ndugouts\\ndugs\\ndui\\nduiker\\nduikers\\nduit\\nduits\\nduke\\ndukedom\\ndukedoms\\ndukes\\ndulcet\\ndulcetly\\ndulcets\\ndulciana\\ndulcianas\\ndulcified\\ndulcifies\\ndulcify\\ndulcifying\\ndulcimer\\ndulcimers\\ndulcinea\\ndulcineas\\ndulia\\ndulias\\ndull\\ndullard\\ndullards\\ndulled\\nduller\\ndullest\\ndulling\\ndullish\\ndullness\\ndullnesses\\ndulls\\ndully\\ndulness\\ndulnesses\\ndulse\\ndulses\\nduly\\nduma\\ndumas\\ndumb\\ndumbbell\\ndumbbells\\ndumbed\\ndumber\\ndumbest\\ndumbfound\\ndumbfounded\\ndumbfounding\\ndumbfounds\\ndumbing\\ndumbly\\ndumbness\\ndumbnesses\\ndumbs\\ndumdum\\ndumdums\\ndumfound\\ndumfounded\\ndumfounding\\ndumfounds\\ndumka\\ndumky\\ndummied\\ndummies\\ndummkopf\\ndummkopfs\\ndummy\\ndummying\\ndump\\ndumpcart\\ndumpcarts\\ndumped\\ndumper\\ndumpers\\ndumpier\\ndumpiest\\ndumpily\\ndumping\\ndumpings\\ndumpish\\ndumpling\\ndumplings\\ndumps\\ndumpy\\ndun\\ndunce\\ndunces\\ndunch\\ndunches\\nduncical\\nduncish\\ndune\\nduneland\\ndunelands\\ndunelike\\ndunes\\ndung\\ndungaree\\ndungarees\\ndunged\\ndungeon\\ndungeons\\ndunghill\\ndunghills\\ndungier\\ndungiest\\ndunging\\ndungs\\ndungy\\ndunite\\ndunites\\ndunitic\\ndunk\\ndunked\\ndunker\\ndunkers\\ndunking\\ndunks\\ndunlin\\ndunlins\\ndunnage\\ndunnages\\ndunned\\ndunner\\ndunness\\ndunnesses\\ndunnest\\ndunning\\ndunnite\\ndunnites\\nduns\\ndunt\\ndunted\\ndunting\\ndunts\\nduo\\nduodena\\nduodenal\\nduodenum\\nduodenums\\nduolog\\nduologs\\nduologue\\nduologues\\nduomi\\nduomo\\nduomos\\nduopolies\\nduopoly\\nduopsonies\\nduopsony\\nduos\\nduotone\\nduotones\\ndup\\ndupable\\ndupe\\nduped\\nduper\\nduperies\\ndupers\\ndupery\\ndupes\\nduping\\nduple\\nduplex\\nduplexed\\nduplexer\\nduplexers\\nduplexes\\nduplexing\\nduplicate\\nduplicated\\nduplicates\\nduplicating\\nduplication\\nduplications\\nduplicator\\nduplicators\\nduplicity\\ndupped\\ndupping\\ndups\\ndura\\ndurabilities\\ndurability\\ndurable\\ndurables\\ndurably\\ndural\\nduramen\\nduramens\\ndurance\\ndurances\\nduras\\nduration\\ndurations\\ndurative\\nduratives\\ndurbar\\ndurbars\\ndure\\ndured\\ndures\\nduress\\nduresses\\ndurian\\ndurians\\nduring\\ndurion\\ndurions\\ndurmast\\ndurmasts\\ndurn\\ndurndest\\ndurned\\ndurneder\\ndurnedest\\ndurning\\ndurns\\nduro\\nduroc\\ndurocs\\nduros\\ndurr\\ndurra\\ndurras\\ndurrs\\ndurst\\ndurum\\ndurums\\ndusk\\ndusked\\nduskier\\nduskiest\\nduskily\\ndusking\\nduskish\\ndusks\\ndusky\\ndust\\ndustbin\\ndustbins\\ndusted\\nduster\\ndusters\\ndustheap\\ndustheaps\\ndustier\\ndustiest\\ndustily\\ndusting\\ndustless\\ndustlike\\ndustman\\ndustmen\\ndustpan\\ndustpans\\ndustrag\\ndustrags\\ndusts\\ndustup\\ndustups\\ndusty\\ndutch\\ndutchman\\ndutchmen\\nduteous\\ndutiable\\nduties\\ndutiful\\nduty\\nduumvir\\nduumviri\\nduumvirs\\nduvetine\\nduvetines\\nduvetyn\\nduvetyne\\nduvetynes\\nduvetyns\\ndwarf\\ndwarfed\\ndwarfer\\ndwarfest\\ndwarfing\\ndwarfish\\ndwarfism\\ndwarfisms\\ndwarfs\\ndwarves\\ndwell\\ndwelled\\ndweller\\ndwellers\\ndwelling\\ndwellings\\ndwells\\ndwelt\\ndwindle\\ndwindled\\ndwindles\\ndwindling\\ndwine\\ndwined\\ndwines\\ndwining\\ndyable\\ndyad\\ndyadic\\ndyadics\\ndyads\\ndyarchic\\ndyarchies\\ndyarchy\\ndybbuk\\ndybbukim\\ndybbuks\\ndye\\ndyeable\\ndyed\\ndyeing\\ndyeings\\ndyer\\ndyers\\ndyes\\ndyestuff\\ndyestuffs\\ndyeweed\\ndyeweeds\\ndyewood\\ndyewoods\\ndying\\ndyings\\ndyke\\ndyked\\ndyker\\ndykes\\ndyking\\ndynamic\\ndynamics\\ndynamism\\ndynamisms\\ndynamist\\ndynamists\\ndynamite\\ndynamited\\ndynamites\\ndynamiting\\ndynamo\\ndynamos\\ndynast\\ndynastic\\ndynasties\\ndynasts\\ndynasty\\ndynatron\\ndynatrons\\ndyne\\ndynes\\ndynode\\ndynodes\\ndysautonomia\\ndysenteries\\ndysentery\\ndysfunction\\ndysfunctions\\ndysgenic\\ndyslexia\\ndyslexias\\ndyslexic\\ndyspepsia\\ndyspepsias\\ndyspepsies\\ndyspepsy\\ndyspeptic\\ndysphagia\\ndyspnea\\ndyspneal\\ndyspneas\\ndyspneic\\ndyspnoea\\ndyspnoeas\\ndyspnoic\\ndystaxia\\ndystaxias\\ndystocia\\ndystocias\\ndystonia\\ndystonias\\ndystopia\\ndystopias\\ndystrophies\\ndystrophy\\ndysuria\\ndysurias\\ndysuric\\ndyvour\\ndyvours\\neach\\neager\\neagerer\\neagerest\\neagerly\\neagerness\\neagernesses\\neagers\\neagle\\neagles\\neaglet\\neaglets\\neagre\\neagres\\neanling\\neanlings\\near\\nearache\\nearaches\\neardrop\\neardrops\\neardrum\\neardrums\\neared\\nearflap\\nearflaps\\nearful\\nearfuls\\nearing\\nearings\\nearl\\nearlap\\nearlaps\\nearldom\\nearldoms\\nearless\\nearlier\\nearliest\\nearlobe\\nearlobes\\nearlock\\nearlocks\\nearls\\nearlship\\nearlships\\nearly\\nearmark\\nearmarked\\nearmarking\\nearmarks\\nearmuff\\nearmuffs\\nearn\\nearned\\nearner\\nearners\\nearnest\\nearnestly\\nearnestness\\nearnestnesses\\nearnests\\nearning\\nearnings\\nearns\\nearphone\\nearphones\\nearpiece\\nearpieces\\nearplug\\nearplugs\\nearring\\nearrings\\nears\\nearshot\\nearshots\\nearstone\\nearstones\\nearth\\nearthed\\nearthen\\nearthenware\\nearthenwares\\nearthier\\nearthiest\\nearthily\\nearthiness\\nearthinesses\\nearthing\\nearthlier\\nearthliest\\nearthliness\\nearthlinesses\\nearthly\\nearthman\\nearthmen\\nearthnut\\nearthnuts\\nearthpea\\nearthpeas\\nearthquake\\nearthquakes\\nearths\\nearthset\\nearthsets\\nearthward\\nearthwards\\nearthworm\\nearthworms\\nearthy\\nearwax\\nearwaxes\\nearwig\\nearwigged\\nearwigging\\nearwigs\\nearworm\\nearworms\\nease\\neased\\neaseful\\neasel\\neasels\\neasement\\neasements\\neases\\neasier\\neasies\\neasiest\\neasily\\neasiness\\neasinesses\\neasing\\neast\\neaster\\neasterlies\\neasterly\\neastern\\neasters\\neasting\\neastings\\neasts\\neastward\\neastwards\\neasy\\neasygoing\\neat\\neatable\\neatables\\neaten\\neater\\neateries\\neaters\\neatery\\neath\\neating\\neatings\\neats\\neau\\neaux\\neave\\neaved\\neaves\\neavesdrop\\neavesdropped\\neavesdropper\\neavesdroppers\\neavesdropping\\neavesdrops\\nebb\\nebbed\\nebbet\\nebbets\\nebbing\\nebbs\\nebon\\nebonies\\nebonise\\nebonised\\nebonises\\nebonising\\nebonite\\nebonites\\nebonize\\nebonized\\nebonizes\\nebonizing\\nebons\\nebony\\nebullient\\necarte\\necartes\\necaudate\\necbolic\\necbolics\\neccentric\\neccentrically\\neccentricities\\neccentricity\\neccentrics\\necclesia\\necclesiae\\necclesiastic\\necclesiastical\\necclesiastics\\neccrine\\necdyses\\necdysial\\necdysis\\necdyson\\necdysone\\necdysones\\necdysons\\necesis\\necesises\\nechard\\nechards\\neche\\neched\\nechelon\\necheloned\\necheloning\\nechelons\\neches\\nechidna\\nechidnae\\nechidnas\\nechinate\\neching\\nechini\\nechinoid\\nechinoids\\nechinus\\necho\\nechoed\\nechoer\\nechoers\\nechoes\\nechoey\\nechoic\\nechoing\\nechoism\\nechoisms\\necholess\\neclair\\neclairs\\neclat\\neclats\\neclectic\\neclectics\\neclipse\\neclipsed\\neclipses\\neclipsing\\neclipsis\\neclipsises\\necliptic\\necliptics\\neclogite\\neclogites\\neclogue\\neclogues\\neclosion\\neclosions\\necole\\necoles\\necologic\\necological\\necologically\\necologies\\necologist\\necologists\\necology\\neconomic\\neconomical\\neconomically\\neconomics\\neconomies\\neconomist\\neconomists\\neconomize\\neconomized\\neconomizes\\neconomizing\\neconomy\\necotonal\\necotone\\necotones\\necotype\\necotypes\\necotypic\\necraseur\\necraseurs\\necru\\necrus\\necstasies\\necstasy\\necstatic\\necstatically\\necstatics\\nectases\\nectasis\\nectatic\\necthyma\\necthymata\\nectoderm\\nectoderms\\nectomere\\nectomeres\\nectopia\\nectopias\\nectopic\\nectosarc\\nectosarcs\\nectozoa\\nectozoan\\nectozoans\\nectozoon\\nectypal\\nectype\\nectypes\\necu\\necumenic\\necus\\neczema\\neczemas\\nedacious\\nedacities\\nedacity\\nedaphic\\neddied\\neddies\\neddo\\neddoes\\neddy\\neddying\\nedelstein\\nedema\\nedemas\\nedemata\\nedentate\\nedentates\\nedge\\nedged\\nedgeless\\nedger\\nedgers\\nedges\\nedgeways\\nedgewise\\nedgier\\nedgiest\\nedgily\\nedginess\\nedginesses\\nedging\\nedgings\\nedgy\\nedh\\nedhs\\nedibilities\\nedibility\\nedible\\nedibles\\nedict\\nedictal\\nedicts\\nedification\\nedifications\\nedifice\\nedifices\\nedified\\nedifier\\nedifiers\\nedifies\\nedify\\nedifying\\nedile\\nediles\\nedit\\neditable\\nedited\\nediting\\nedition\\neditions\\neditor\\neditorial\\neditorialize\\neditorialized\\neditorializes\\neditorializing\\neditorially\\neditorials\\neditors\\neditress\\neditresses\\nedits\\neducable\\neducables\\neducate\\neducated\\neducates\\neducating\\neducation\\neducational\\neducations\\neducator\\neducators\\neduce\\neduced\\neduces\\neducing\\neduct\\neduction\\neductions\\neductive\\neductor\\neductors\\neducts\\neel\\neelgrass\\neelgrasses\\neelier\\neeliest\\neellike\\neelpout\\neelpouts\\neels\\neelworm\\neelworms\\neely\\neerie\\neerier\\neeriest\\neerily\\neeriness\\neerinesses\\neery\\nef\\neff\\neffable\\nefface\\neffaced\\neffacement\\neffacements\\neffacer\\neffacers\\neffaces\\neffacing\\neffect\\neffected\\neffecter\\neffecters\\neffecting\\neffective\\neffectively\\neffectiveness\\neffector\\neffectors\\neffects\\neffectual\\neffectually\\neffectualness\\neffectualnesses\\neffeminacies\\neffeminacy\\neffeminate\\neffendi\\neffendis\\nefferent\\nefferents\\neffervesce\\neffervesced\\neffervescence\\neffervescences\\neffervescent\\neffervescently\\neffervesces\\neffervescing\\neffete\\neffetely\\nefficacies\\nefficacious\\nefficacy\\nefficiencies\\nefficiency\\nefficient\\nefficiently\\neffigies\\neffigy\\neffluent\\neffluents\\neffluvia\\nefflux\\neffluxes\\neffort\\neffortless\\neffortlessly\\nefforts\\neffrontery\\neffs\\neffulge\\neffulged\\neffulges\\neffulging\\neffuse\\neffused\\neffuses\\neffusing\\neffusion\\neffusions\\neffusive\\neffusively\\nefs\\neft\\nefts\\neftsoon\\neftsoons\\negad\\negads\\negal\\negalite\\negalites\\neger\\negers\\negest\\negesta\\negested\\negesting\\negestion\\negestions\\negestive\\negests\\negg\\neggar\\neggars\\neggcup\\neggcups\\negged\\negger\\neggers\\negghead\\neggheads\\negging\\neggnog\\neggnogs\\neggplant\\neggplants\\neggs\\neggshell\\neggshells\\negis\\negises\\neglatere\\neglateres\\nego\\negoism\\negoisms\\negoist\\negoistic\\negoists\\negomania\\negomanias\\negos\\negotism\\negotisms\\negotist\\negotistic\\negotistical\\negotistically\\negotists\\negregious\\negregiously\\negress\\negressed\\negresses\\negressing\\negret\\negrets\\neh\\neide\\neider\\neiderdown\\neiderdowns\\neiders\\neidetic\\neidola\\neidolon\\neidolons\\neidos\\neight\\neighteen\\neighteens\\neighteenth\\neighteenths\\neighth\\neighthly\\neighths\\neighties\\neightieth\\neightieths\\neights\\neightvo\\neightvos\\neighty\\neikon\\neikones\\neikons\\neinkorn\\neinkorns\\neirenic\\neither\\nejaculate\\nejaculated\\nejaculates\\nejaculating\\nejaculation\\nejaculations\\neject\\nejecta\\nejected\\nejecting\\nejection\\nejections\\nejective\\nejectives\\nejector\\nejectors\\nejects\\neke\\neked\\nekes\\neking\\nekistic\\nekistics\\nektexine\\nektexines\\nel\\nelaborate\\nelaborated\\nelaborately\\nelaborateness\\nelaboratenesses\\nelaborates\\nelaborating\\nelaboration\\nelaborations\\nelain\\nelains\\nelan\\neland\\nelands\\nelans\\nelaphine\\nelapid\\nelapids\\nelapine\\nelapse\\nelapsed\\nelapses\\nelapsing\\nelastase\\nelastases\\nelastic\\nelasticities\\nelasticity\\nelastics\\nelastin\\nelastins\\nelate\\nelated\\nelatedly\\nelater\\nelaterid\\nelaterids\\nelaterin\\nelaterins\\nelaters\\nelates\\nelating\\nelation\\nelations\\nelative\\nelatives\\nelbow\\nelbowed\\nelbowing\\nelbows\\neld\\nelder\\nelderberries\\nelderberry\\nelderly\\nelders\\neldest\\neldrich\\neldritch\\nelds\\nelect\\nelected\\nelecting\\nelection\\nelections\\nelective\\nelectives\\nelector\\nelectoral\\nelectorate\\nelectorates\\nelectors\\nelectret\\nelectrets\\nelectric\\nelectrical\\nelectrically\\nelectrician\\nelectricians\\nelectricities\\nelectricity\\nelectrics\\nelectrification\\nelectrifications\\nelectro\\nelectrocardiogram\\nelectrocardiograms\\nelectrocardiograph\\nelectrocardiographs\\nelectrocute\\nelectrocuted\\nelectrocutes\\nelectrocuting\\nelectrocution\\nelectrocutions\\nelectrode\\nelectrodes\\nelectroed\\nelectroing\\nelectrolysis\\nelectrolysises\\nelectrolyte\\nelectrolytes\\nelectrolytic\\nelectromagnet\\nelectromagnetally\\nelectromagnetic\\nelectromagnets\\nelectron\\nelectronic\\nelectronics\\nelectrons\\nelectroplate\\nelectroplated\\nelectroplates\\nelectroplating\\nelectros\\nelectrum\\nelectrums\\nelects\\nelegance\\nelegances\\nelegancies\\nelegancy\\nelegant\\nelegantly\\nelegiac\\nelegiacs\\nelegies\\nelegise\\nelegised\\nelegises\\nelegising\\nelegist\\nelegists\\nelegit\\nelegits\\nelegize\\nelegized\\nelegizes\\nelegizing\\nelegy\\nelement\\nelemental\\nelementary\\nelements\\nelemi\\nelemis\\nelenchi\\nelenchic\\nelenchus\\nelenctic\\nelephant\\nelephants\\nelevate\\nelevated\\nelevates\\nelevating\\nelevation\\nelevations\\nelevator\\nelevators\\neleven\\nelevens\\neleventh\\nelevenths\\nelevon\\nelevons\\nelf\\nelfin\\nelfins\\nelfish\\nelfishly\\nelflock\\nelflocks\\nelhi\\nelicit\\nelicited\\neliciting\\nelicitor\\nelicitors\\nelicits\\nelide\\nelided\\nelides\\nelidible\\neliding\\neligibilities\\neligibility\\neligible\\neligibles\\neligibly\\neliminate\\neliminated\\neliminates\\neliminating\\nelimination\\neliminations\\nelision\\nelisions\\nelite\\nelites\\nelitism\\nelitisms\\nelitist\\nelitists\\nelixir\\nelixirs\\nelk\\nelkhound\\nelkhounds\\nelks\\nell\\nellipse\\nellipses\\nellipsis\\nelliptic\\nelliptical\\nells\\nelm\\nelmier\\nelmiest\\nelms\\nelmy\\nelocution\\nelocutions\\nelodea\\nelodeas\\neloign\\neloigned\\neloigner\\neloigners\\neloigning\\neloigns\\neloin\\neloined\\neloiner\\neloiners\\neloining\\neloins\\nelongate\\nelongated\\nelongates\\nelongating\\nelongation\\nelongations\\nelope\\neloped\\neloper\\nelopers\\nelopes\\neloping\\neloquent\\neloquently\\nels\\nelse\\nelsewhere\\neluant\\neluants\\neluate\\neluates\\nelucidate\\nelucidated\\nelucidates\\nelucidating\\nelucidation\\nelucidations\\nelude\\neluded\\neluder\\neluders\\neludes\\neluding\\neluent\\neluents\\nelusion\\nelusions\\nelusive\\nelusively\\nelusiveness\\nelusivenesses\\nelusory\\nelute\\neluted\\nelutes\\neluting\\nelution\\nelutions\\neluvia\\neluvial\\neluviate\\neluviated\\neluviates\\neluviating\\neluvium\\neluviums\\nelver\\nelvers\\nelves\\nelvish\\nelvishly\\nelysian\\nelytra\\nelytroid\\nelytron\\nelytrous\\nelytrum\\nem\\nemaciate\\nemaciated\\nemaciates\\nemaciating\\nemaciation\\nemaciations\\nemanate\\nemanated\\nemanates\\nemanating\\nemanation\\nemanations\\nemanator\\nemanators\\nemancipatation\\nemancipatations\\nemancipate\\nemancipated\\nemancipates\\nemancipating\\nemancipation\\nemancipations\\nemasculatation\\nemasculatations\\nemasculate\\nemasculated\\nemasculates\\nemasculating\\nembalm\\nembalmed\\nembalmer\\nembalmers\\nembalming\\nembalms\\nembank\\nembanked\\nembanking\\nembankment\\nembankments\\nembanks\\nembar\\nembargo\\nembargoed\\nembargoing\\nembargos\\nembark\\nembarkation\\nembarkations\\nembarked\\nembarking\\nembarks\\nembarrass\\nembarrassed\\nembarrasses\\nembarrassing\\nembarrassment\\nembarrassments\\nembarred\\nembarring\\nembars\\nembassies\\nembassy\\nembattle\\nembattled\\nembattles\\nembattling\\nembay\\nembayed\\nembaying\\nembays\\nembed\\nembedded\\nembedding\\nembeds\\nembellish\\nembellished\\nembellishes\\nembellishing\\nembellishment\\nembellishments\\nember\\nembers\\nembezzle\\nembezzled\\nembezzlement\\nembezzlements\\nembezzler\\nembezzlers\\nembezzles\\nembezzling\\nembitter\\nembittered\\nembittering\\nembitters\\nemblaze\\nemblazed\\nemblazer\\nemblazers\\nemblazes\\nemblazing\\nemblazon\\nemblazoned\\nemblazoning\\nemblazons\\nemblem\\nemblematic\\nemblemed\\nembleming\\nemblems\\nembodied\\nembodier\\nembodiers\\nembodies\\nembodiment\\nembodiments\\nembody\\nembodying\\nembolden\\nemboldened\\nemboldening\\nemboldens\\nemboli\\nembolic\\nembolies\\nembolism\\nembolisms\\nembolus\\nemboly\\nemborder\\nembordered\\nembordering\\nemborders\\nembosk\\nembosked\\nembosking\\nembosks\\nembosom\\nembosomed\\nembosoming\\nembosoms\\nemboss\\nembossed\\nembosser\\nembossers\\nembosses\\nembossing\\nembow\\nembowed\\nembowel\\nemboweled\\nemboweling\\nembowelled\\nembowelling\\nembowels\\nembower\\nembowered\\nembowering\\nembowers\\nembowing\\nembows\\nembrace\\nembraced\\nembracer\\nembracers\\nembraces\\nembracing\\nembroider\\nembroidered\\nembroidering\\nembroiders\\nembroil\\nembroiled\\nembroiling\\nembroils\\nembrown\\nembrowned\\nembrowning\\nembrowns\\nembrue\\nembrued\\nembrues\\nembruing\\nembrute\\nembruted\\nembrutes\\nembruting\\nembryo\\nembryoid\\nembryon\\nembryonic\\nembryons\\nembryos\\nemcee\\nemceed\\nemcees\\nemceing\\neme\\nemeer\\nemeerate\\nemeerates\\nemeers\\nemend\\nemendate\\nemendated\\nemendates\\nemendating\\nemendation\\nemendations\\nemended\\nemender\\nemenders\\nemending\\nemends\\nemerald\\nemeralds\\nemerge\\nemerged\\nemergence\\nemergences\\nemergencies\\nemergency\\nemergent\\nemergents\\nemerges\\nemerging\\nemeries\\nemerita\\nemeriti\\nemeritus\\nemerod\\nemerods\\nemeroid\\nemeroids\\nemersed\\nemersion\\nemersions\\nemery\\nemes\\nemeses\\nemesis\\nemetic\\nemetics\\nemetin\\nemetine\\nemetines\\nemetins\\nemeu\\nemeus\\nemeute\\nemeutes\\nemigrant\\nemigrants\\nemigrate\\nemigrated\\nemigrates\\nemigrating\\nemigration\\nemigrations\\nemigre\\nemigres\\neminence\\neminences\\neminencies\\neminency\\neminent\\neminently\\nemir\\nemirate\\nemirates\\nemirs\\nemissaries\\nemissary\\nemission\\nemissions\\nemissive\\nemit\\nemits\\nemitted\\nemitter\\nemitters\\nemitting\\nemmer\\nemmers\\nemmet\\nemmets\\nemodin\\nemodins\\nemolument\\nemoluments\\nemote\\nemoted\\nemoter\\nemoters\\nemotes\\nemoting\\nemotion\\nemotional\\nemotionally\\nemotions\\nemotive\\nempale\\nempaled\\nempaler\\nempalers\\nempales\\nempaling\\nempanel\\nempaneled\\nempaneling\\nempanelled\\nempanelling\\nempanels\\nempathic\\nempathies\\nempathy\\nemperies\\nemperor\\nemperors\\nempery\\nemphases\\nemphasis\\nemphasize\\nemphasized\\nemphasizes\\nemphasizing\\nemphatic\\nemphatically\\nemphysema\\nemphysemas\\nempire\\nempires\\nempiric\\nempirical\\nempirically\\nempirics\\nemplace\\nemplaced\\nemplaces\\nemplacing\\nemplane\\nemplaned\\nemplanes\\nemplaning\\nemploy\\nemploye\\nemployed\\nemployee\\nemployees\\nemployer\\nemployers\\nemployes\\nemploying\\nemployment\\nemployments\\nemploys\\nempoison\\nempoisoned\\nempoisoning\\nempoisons\\nemporia\\nemporium\\nemporiums\\nempower\\nempowered\\nempowering\\nempowers\\nempress\\nempresses\\nemprise\\nemprises\\nemprize\\nemprizes\\nemptied\\nemptier\\nemptiers\\nempties\\nemptiest\\nemptily\\nemptiness\\nemptinesses\\nemptings\\nemptins\\nempty\\nemptying\\nempurple\\nempurpled\\nempurples\\nempurpling\\nempyema\\nempyemas\\nempyemata\\nempyemic\\nempyreal\\nempyrean\\nempyreans\\nems\\nemu\\nemulate\\nemulated\\nemulates\\nemulating\\nemulation\\nemulations\\nemulator\\nemulators\\nemulous\\nemulsification\\nemulsifications\\nemulsified\\nemulsifier\\nemulsifiers\\nemulsifies\\nemulsify\\nemulsifying\\nemulsion\\nemulsions\\nemulsive\\nemulsoid\\nemulsoids\\nemus\\nemyd\\nemyde\\nemydes\\nemyds\\nen\\nenable\\nenabled\\nenabler\\nenablers\\nenables\\nenabling\\nenact\\nenacted\\nenacting\\nenactive\\nenactment\\nenactments\\nenactor\\nenactors\\nenactory\\nenacts\\nenamel\\nenameled\\nenameler\\nenamelers\\nenameling\\nenamelled\\nenamelling\\nenamels\\nenamine\\nenamines\\nenamor\\nenamored\\nenamoring\\nenamors\\nenamour\\nenamoured\\nenamouring\\nenamours\\nenate\\nenates\\nenatic\\nenation\\nenations\\nencaenia\\nencage\\nencaged\\nencages\\nencaging\\nencamp\\nencamped\\nencamping\\nencampment\\nencampments\\nencamps\\nencase\\nencased\\nencases\\nencash\\nencashed\\nencashes\\nencashing\\nencasing\\nenceinte\\nenceintes\\nencephalitides\\nencephalitis\\nenchain\\nenchained\\nenchaining\\nenchains\\nenchant\\nenchanted\\nenchanter\\nenchanters\\nenchanting\\nenchantment\\nenchantments\\nenchantress\\nenchantresses\\nenchants\\nenchase\\nenchased\\nenchaser\\nenchasers\\nenchases\\nenchasing\\nenchoric\\nencina\\nencinal\\nencinas\\nencipher\\nenciphered\\nenciphering\\nenciphers\\nencircle\\nencircled\\nencircles\\nencircling\\nenclasp\\nenclasped\\nenclasping\\nenclasps\\nenclave\\nenclaves\\nenclitic\\nenclitics\\nenclose\\nenclosed\\nencloser\\nenclosers\\nencloses\\nenclosing\\nenclosure\\nenclosures\\nencode\\nencoded\\nencoder\\nencoders\\nencodes\\nencoding\\nencomia\\nencomium\\nencomiums\\nencompass\\nencompassed\\nencompasses\\nencompassing\\nencore\\nencored\\nencores\\nencoring\\nencounter\\nencountered\\nencountering\\nencounters\\nencourage\\nencouraged\\nencouragement\\nencouragements\\nencourages\\nencouraging\\nencroach\\nencroached\\nencroaches\\nencroaching\\nencroachment\\nencroachments\\nencrust\\nencrusted\\nencrusting\\nencrusts\\nencrypt\\nencrypted\\nencrypting\\nencrypts\\nencumber\\nencumberance\\nencumberances\\nencumbered\\nencumbering\\nencumbers\\nencyclic\\nencyclical\\nencyclicals\\nencyclics\\nencyclopedia\\nencyclopedias\\nencyclopedic\\nencyst\\nencysted\\nencysting\\nencysts\\nend\\nendamage\\nendamaged\\nendamages\\nendamaging\\nendameba\\nendamebae\\nendamebas\\nendanger\\nendangered\\nendangering\\nendangers\\nendarch\\nendarchies\\nendarchy\\nendbrain\\nendbrains\\nendear\\nendeared\\nendearing\\nendearment\\nendearments\\nendears\\nendeavor\\nendeavored\\nendeavoring\\nendeavors\\nended\\nendemial\\nendemic\\nendemics\\nendemism\\nendemisms\\nender\\nendermic\\nenders\\nendexine\\nendexines\\nending\\nendings\\nendite\\nendited\\nendites\\nenditing\\nendive\\nendives\\nendleaf\\nendleaves\\nendless\\nendlessly\\nendlong\\nendmost\\nendocarp\\nendocarps\\nendocrine\\nendoderm\\nendoderms\\nendogamies\\nendogamy\\nendogen\\nendogenies\\nendogens\\nendogeny\\nendopod\\nendopods\\nendorse\\nendorsed\\nendorsee\\nendorsees\\nendorsement\\nendorsements\\nendorser\\nendorsers\\nendorses\\nendorsing\\nendorsor\\nendorsors\\nendosarc\\nendosarcs\\nendosmos\\nendosmoses\\nendosome\\nendosomes\\nendostea\\nendow\\nendowed\\nendower\\nendowers\\nendowing\\nendowment\\nendowments\\nendows\\nendozoic\\nendpaper\\nendpapers\\nendplate\\nendplates\\nendrin\\nendrins\\nends\\nendue\\nendued\\nendues\\nenduing\\nendurable\\nendurance\\nendurances\\nendure\\nendured\\nendures\\nenduring\\nenduro\\nenduros\\nendways\\nendwise\\nenema\\nenemas\\nenemata\\nenemies\\nenemy\\nenergetic\\nenergetically\\nenergid\\nenergids\\nenergies\\nenergise\\nenergised\\nenergises\\nenergising\\nenergize\\nenergized\\nenergizes\\nenergizing\\nenergy\\nenervate\\nenervated\\nenervates\\nenervating\\nenervation\\nenervations\\nenface\\nenfaced\\nenfaces\\nenfacing\\nenfeeble\\nenfeebled\\nenfeebles\\nenfeebling\\nenfeoff\\nenfeoffed\\nenfeoffing\\nenfeoffs\\nenfetter\\nenfettered\\nenfettering\\nenfetters\\nenfever\\nenfevered\\nenfevering\\nenfevers\\nenfilade\\nenfiladed\\nenfilades\\nenfilading\\nenfin\\nenflame\\nenflamed\\nenflames\\nenflaming\\nenfold\\nenfolded\\nenfolder\\nenfolders\\nenfolding\\nenfolds\\nenforce\\nenforceable\\nenforced\\nenforcement\\nenforcements\\nenforcer\\nenforcers\\nenforces\\nenforcing\\nenframe\\nenframed\\nenframes\\nenframing\\nenfranchise\\nenfranchised\\nenfranchisement\\nenfranchisements\\nenfranchises\\nenfranchising\\neng\\nengage\\nengaged\\nengagement\\nengagements\\nengager\\nengagers\\nengages\\nengaging\\nengender\\nengendered\\nengendering\\nengenders\\nengild\\nengilded\\nengilding\\nengilds\\nengine\\nengined\\nengineer\\nengineered\\nengineering\\nengineerings\\nengineers\\nengineries\\nenginery\\nengines\\nengining\\nenginous\\nengird\\nengirded\\nengirding\\nengirdle\\nengirdled\\nengirdles\\nengirdling\\nengirds\\nengirt\\nenglish\\nenglished\\nenglishes\\nenglishing\\nenglut\\nengluts\\nenglutted\\nenglutting\\nengorge\\nengorged\\nengorges\\nengorging\\nengraft\\nengrafted\\nengrafting\\nengrafts\\nengrail\\nengrailed\\nengrailing\\nengrails\\nengrain\\nengrained\\nengraining\\nengrains\\nengram\\nengramme\\nengrammes\\nengrams\\nengrave\\nengraved\\nengraver\\nengravers\\nengraves\\nengraving\\nengravings\\nengross\\nengrossed\\nengrosses\\nengrossing\\nengs\\nengulf\\nengulfed\\nengulfing\\nengulfs\\nenhalo\\nenhaloed\\nenhaloes\\nenhaloing\\nenhance\\nenhanced\\nenhancement\\nenhancements\\nenhancer\\nenhancers\\nenhances\\nenhancing\\neniac\\nenigma\\nenigmas\\nenigmata\\nenigmatic\\nenisle\\nenisled\\nenisles\\nenisling\\nenjambed\\nenjoin\\nenjoined\\nenjoiner\\nenjoiners\\nenjoining\\nenjoins\\nenjoy\\nenjoyable\\nenjoyed\\nenjoyer\\nenjoyers\\nenjoying\\nenjoyment\\nenjoyments\\nenjoys\\nenkindle\\nenkindled\\nenkindles\\nenkindling\\nenlace\\nenlaced\\nenlaces\\nenlacing\\nenlarge\\nenlarged\\nenlargement\\nenlargements\\nenlarger\\nenlargers\\nenlarges\\nenlarging\\nenlighten\\nenlightened\\nenlightening\\nenlightenment\\nenlightenments\\nenlightens\\nenlist\\nenlisted\\nenlistee\\nenlistees\\nenlister\\nenlisters\\nenlisting\\nenlistment\\nenlistments\\nenlists\\nenliven\\nenlivened\\nenlivening\\nenlivens\\nenmesh\\nenmeshed\\nenmeshes\\nenmeshing\\nenmities\\nenmity\\nennead\\nenneadic\\nenneads\\nenneagon\\nenneagons\\nennoble\\nennobled\\nennobler\\nennoblers\\nennobles\\nennobling\\nennui\\nennuis\\nennuye\\nennuyee\\nenol\\nenolase\\nenolases\\nenolic\\nenologies\\nenology\\nenols\\nenorm\\nenormities\\nenormity\\nenormous\\nenormously\\nenormousness\\nenormousnesses\\nenosis\\nenosises\\nenough\\nenoughs\\nenounce\\nenounced\\nenounces\\nenouncing\\nenow\\nenows\\nenplane\\nenplaned\\nenplanes\\nenplaning\\nenquire\\nenquired\\nenquires\\nenquiries\\nenquiring\\nenquiry\\nenrage\\nenraged\\nenrages\\nenraging\\nenrapt\\nenravish\\nenravished\\nenravishes\\nenravishing\\nenrich\\nenriched\\nenricher\\nenrichers\\nenriches\\nenriching\\nenrichment\\nenrichments\\nenrobe\\nenrobed\\nenrober\\nenrobers\\nenrobes\\nenrobing\\nenrol\\nenroll\\nenrolled\\nenrollee\\nenrollees\\nenroller\\nenrollers\\nenrolling\\nenrollment\\nenrollments\\nenrolls\\nenrols\\nenroot\\nenrooted\\nenrooting\\nenroots\\nens\\nensample\\nensamples\\nensconce\\nensconced\\nensconces\\nensconcing\\nenscroll\\nenscrolled\\nenscrolling\\nenscrolls\\nensemble\\nensembles\\nenserf\\nenserfed\\nenserfing\\nenserfs\\nensheath\\nensheathed\\nensheathing\\nensheaths\\nenshrine\\nenshrined\\nenshrines\\nenshrining\\nenshroud\\nenshrouded\\nenshrouding\\nenshrouds\\nensiform\\nensign\\nensigncies\\nensigncy\\nensigns\\nensilage\\nensilaged\\nensilages\\nensilaging\\nensile\\nensiled\\nensiles\\nensiling\\nenskied\\nenskies\\nensky\\nenskyed\\nenskying\\nenslave\\nenslaved\\nenslavement\\nenslavements\\nenslaver\\nenslavers\\nenslaves\\nenslaving\\nensnare\\nensnared\\nensnarer\\nensnarers\\nensnares\\nensnaring\\nensnarl\\nensnarled\\nensnarling\\nensnarls\\nensorcel\\nensorceled\\nensorceling\\nensorcels\\nensoul\\nensouled\\nensouling\\nensouls\\nensphere\\nensphered\\nenspheres\\nensphering\\nensue\\nensued\\nensues\\nensuing\\nensure\\nensured\\nensurer\\nensurers\\nensures\\nensuring\\nenswathe\\nenswathed\\nenswathes\\nenswathing\\nentail\\nentailed\\nentailer\\nentailers\\nentailing\\nentails\\nentameba\\nentamebae\\nentamebas\\nentangle\\nentangled\\nentanglement\\nentanglements\\nentangles\\nentangling\\nentases\\nentasia\\nentasias\\nentasis\\nentastic\\nentellus\\nentelluses\\nentente\\nententes\\nenter\\nentera\\nenteral\\nentered\\nenterer\\nenterers\\nenteric\\nentering\\nenteron\\nenterons\\nenterprise\\nenterprises\\nenters\\nentertain\\nentertained\\nentertainer\\nentertainers\\nentertaining\\nentertainment\\nentertainments\\nentertains\\nenthalpies\\nenthalpy\\nenthetic\\nenthral\\nenthrall\\nenthralled\\nenthralling\\nenthralls\\nenthrals\\nenthrone\\nenthroned\\nenthrones\\nenthroning\\nenthuse\\nenthused\\nenthuses\\nenthusiasm\\nenthusiast\\nenthusiastic\\nenthusiastically\\nenthusiasts\\nenthusing\\nentia\\nentice\\nenticed\\nenticement\\nenticements\\nenticer\\nenticers\\nentices\\nenticing\\nentire\\nentirely\\nentires\\nentireties\\nentirety\\nentities\\nentitle\\nentitled\\nentitles\\nentitling\\nentity\\nentoderm\\nentoderms\\nentoil\\nentoiled\\nentoiling\\nentoils\\nentomb\\nentombed\\nentombing\\nentombs\\nentomological\\nentomologies\\nentomologist\\nentomologists\\nentomology\\nentopic\\nentourage\\nentourages\\nentozoa\\nentozoal\\nentozoan\\nentozoans\\nentozoic\\nentozoon\\nentrails\\nentrain\\nentrained\\nentraining\\nentrains\\nentrance\\nentranced\\nentrances\\nentrancing\\nentrant\\nentrants\\nentrap\\nentrapment\\nentrapments\\nentrapped\\nentrapping\\nentraps\\nentreat\\nentreated\\nentreaties\\nentreating\\nentreats\\nentreaty\\nentree\\nentrees\\nentrench\\nentrenched\\nentrenches\\nentrenching\\nentrenchment\\nentrenchments\\nentrepot\\nentrepots\\nentrepreneur\\nentrepreneurs\\nentresol\\nentresols\\nentries\\nentropies\\nentropy\\nentrust\\nentrusted\\nentrusting\\nentrusts\\nentry\\nentryway\\nentryways\\nentwine\\nentwined\\nentwines\\nentwining\\nentwist\\nentwisted\\nentwisting\\nentwists\\nenumerate\\nenumerated\\nenumerates\\nenumerating\\nenumeration\\nenumerations\\nenunciate\\nenunciated\\nenunciates\\nenunciating\\nenunciation\\nenunciations\\nenure\\nenured\\nenures\\nenuresis\\nenuresises\\nenuretic\\nenuring\\nenvelop\\nenvelope\\nenveloped\\nenvelopes\\nenveloping\\nenvelopment\\nenvelopments\\nenvelops\\nenvenom\\nenvenomed\\nenvenoming\\nenvenoms\\nenviable\\nenviably\\nenvied\\nenvier\\nenviers\\nenvies\\nenvious\\nenviron\\nenvironed\\nenvironing\\nenvironment\\nenvironmental\\nenvironmentalist\\nenvironmentalists\\nenvironments\\nenvirons\\nenvisage\\nenvisaged\\nenvisages\\nenvisaging\\nenvision\\nenvisioned\\nenvisioning\\nenvisions\\nenvoi\\nenvois\\nenvoy\\nenvoys\\nenvy\\nenvying\\nenwheel\\nenwheeled\\nenwheeling\\nenwheels\\nenwind\\nenwinding\\nenwinds\\nenwomb\\nenwombed\\nenwombing\\nenwombs\\nenwound\\nenwrap\\nenwrapped\\nenwrapping\\nenwraps\\nenzootic\\nenzootics\\nenzym\\nenzyme\\nenzymes\\nenzymic\\nenzyms\\neobiont\\neobionts\\neohippus\\neohippuses\\neolian\\neolipile\\neolipiles\\neolith\\neolithic\\neoliths\\neolopile\\neolopiles\\neon\\neonian\\neonism\\neonisms\\neons\\neosin\\neosine\\neosines\\neosinic\\neosins\\nepact\\nepacts\\neparch\\neparchies\\neparchs\\neparchy\\nepaulet\\nepaulets\\nepee\\nepeeist\\nepeeists\\nepees\\nepeiric\\nepergne\\nepergnes\\nepha\\nephah\\nephahs\\nephas\\nephebe\\nephebes\\nephebi\\nephebic\\nepheboi\\nephebos\\nephebus\\nephedra\\nephedras\\nephedrin\\nephedrins\\nephemera\\nephemerae\\nephemeras\\nephod\\nephods\\nephor\\nephoral\\nephorate\\nephorates\\nephori\\nephors\\nepiblast\\nepiblasts\\nepibolic\\nepibolies\\nepiboly\\nepic\\nepical\\nepically\\nepicalyces\\nepicalyx\\nepicalyxes\\nepicarp\\nepicarps\\nepicedia\\nepicene\\nepicenes\\nepiclike\\nepicotyl\\nepicotyls\\nepics\\nepicure\\nepicurean\\nepicureans\\nepicures\\nepicycle\\nepicycles\\nepidemic\\nepidemics\\nepidemiology\\nepiderm\\nepidermis\\nepidermises\\nepiderms\\nepidote\\nepidotes\\nepidotic\\nepidural\\nepifauna\\nepifaunae\\nepifaunas\\nepifocal\\nepigeal\\nepigean\\nepigene\\nepigenic\\nepigeous\\nepigon\\nepigone\\nepigones\\nepigoni\\nepigonic\\nepigons\\nepigonus\\nepigram\\nepigrammatic\\nepigrams\\nepigraph\\nepigraphs\\nepigynies\\nepigyny\\nepilepsies\\nepilepsy\\nepileptic\\nepileptics\\nepilog\\nepilogs\\nepilogue\\nepilogued\\nepilogues\\nepiloguing\\nepimer\\nepimere\\nepimeres\\nepimeric\\nepimers\\nepimysia\\nepinaoi\\nepinaos\\nepinasties\\nepinasty\\nepiphanies\\nepiphany\\nepiphyte\\nepiphytes\\nepiscia\\nepiscias\\nepiscopal\\nepiscope\\nepiscopes\\nepisode\\nepisodes\\nepisodic\\nepisomal\\nepisome\\nepisomes\\nepistasies\\nepistasy\\nepistaxis\\nepistle\\nepistler\\nepistlers\\nepistles\\nepistyle\\nepistyles\\nepitaph\\nepitaphs\\nepitases\\nepitasis\\nepitaxies\\nepitaxy\\nepithet\\nepithets\\nepitome\\nepitomes\\nepitomic\\nepitomize\\nepitomized\\nepitomizes\\nepitomizing\\nepizoa\\nepizoic\\nepizoism\\nepizoisms\\nepizoite\\nepizoites\\nepizoon\\nepizooties\\nepizooty\\nepoch\\nepochal\\nepochs\\nepode\\nepodes\\neponym\\neponymic\\neponymies\\neponyms\\neponymy\\nepopee\\nepopees\\nepopoeia\\nepopoeias\\nepos\\neposes\\nepoxide\\nepoxides\\nepoxied\\nepoxies\\nepoxy\\nepoxyed\\nepoxying\\nepsilon\\nepsilons\\nequabilities\\nequability\\nequable\\nequably\\nequal\\nequaled\\nequaling\\nequalise\\nequalised\\nequalises\\nequalising\\nequalities\\nequality\\nequalize\\nequalized\\nequalizes\\nequalizing\\nequalled\\nequalling\\nequally\\nequals\\nequanimities\\nequanimity\\nequate\\nequated\\nequates\\nequating\\nequation\\nequations\\nequator\\nequatorial\\nequators\\nequerries\\nequerry\\nequestrian\\nequestrians\\nequilateral\\nequilibrium\\nequine\\nequinely\\nequines\\nequinities\\nequinity\\nequinox\\nequinoxes\\nequip\\nequipage\\nequipages\\nequipment\\nequipments\\nequipped\\nequipper\\nequippers\\nequipping\\nequips\\nequiseta\\nequitable\\nequitant\\nequites\\nequities\\nequity\\nequivalence\\nequivalences\\nequivalent\\nequivalents\\nequivocal\\nequivocate\\nequivocated\\nequivocates\\nequivocating\\nequivocation\\nequivocations\\nequivoke\\nequivokes\\ner\\nera\\neradiate\\neradiated\\neradiates\\neradiating\\neradicable\\neradicate\\neradicated\\neradicates\\neradicating\\neras\\nerase\\nerased\\neraser\\nerasers\\nerases\\nerasing\\nerasion\\nerasions\\nerasure\\nerasures\\nerbium\\nerbiums\\nere\\nerect\\nerected\\nerecter\\nerecters\\nerectile\\nerecting\\nerection\\nerections\\nerective\\nerectly\\nerector\\nerectors\\nerects\\nerelong\\neremite\\neremites\\neremitic\\neremuri\\neremurus\\nerenow\\nerepsin\\nerepsins\\nerethic\\nerethism\\nerethisms\\nerewhile\\nerg\\nergastic\\nergate\\nergates\\nergo\\nergodic\\nergot\\nergotic\\nergotism\\nergotisms\\nergots\\nergs\\nerica\\nericas\\nericoid\\nerigeron\\nerigerons\\neringo\\neringoes\\neringos\\neristic\\neristics\\nerlking\\nerlkings\\nermine\\nermined\\nermines\\nern\\nerne\\nernes\\nerns\\nerode\\neroded\\nerodent\\nerodes\\nerodible\\neroding\\nerogenic\\neros\\nerose\\nerosely\\neroses\\nerosible\\nerosion\\nerosions\\nerosive\\nerotic\\nerotica\\nerotical\\nerotically\\nerotics\\nerotism\\nerotisms\\nerr\\nerrancies\\nerrancy\\nerrand\\nerrands\\nerrant\\nerrantly\\nerrantries\\nerrantry\\nerrants\\nerrata\\nerratas\\nerratic\\nerratically\\nerratum\\nerred\\nerrhine\\nerrhines\\nerring\\nerringly\\nerroneous\\nerroneously\\nerror\\nerrors\\nerrs\\ners\\nersatz\\nersatzes\\nerses\\nerst\\nerstwhile\\neruct\\neructate\\neructated\\neructates\\neructating\\neructed\\neructing\\neructs\\nerudite\\nerudition\\neruditions\\nerugo\\nerugos\\nerumpent\\nerupt\\nerupted\\nerupting\\neruption\\neruptions\\neruptive\\neruptives\\nerupts\\nervil\\nervils\\neryngo\\neryngoes\\neryngos\\nerythema\\nerythemas\\nerythematous\\nerythrocytosis\\nerythron\\nerythrons\\nes\\nescalade\\nescaladed\\nescalades\\nescalading\\nescalate\\nescalated\\nescalates\\nescalating\\nescalation\\nescalations\\nescalator\\nescalators\\nescallop\\nescalloped\\nescalloping\\nescallops\\nescalop\\nescaloped\\nescaloping\\nescalops\\nescapade\\nescapades\\nescape\\nescaped\\nescapee\\nescapees\\nescaper\\nescapers\\nescapes\\nescaping\\nescapism\\nescapisms\\nescapist\\nescapists\\nescar\\nescargot\\nescargots\\nescarole\\nescaroles\\nescarp\\nescarped\\nescarping\\nescarpment\\nescarpments\\nescarps\\nescars\\neschalot\\neschalots\\neschar\\neschars\\nescheat\\nescheated\\nescheating\\nescheats\\neschew\\neschewal\\neschewals\\neschewed\\neschewing\\neschews\\nescolar\\nescolars\\nescort\\nescorted\\nescorting\\nescorts\\nescot\\nescoted\\nescoting\\nescots\\nescrow\\nescrowed\\nescrowing\\nescrows\\nescuage\\nescuages\\nescudo\\nescudos\\nesculent\\nesculents\\neserine\\neserines\\neses\\neskar\\neskars\\nesker\\neskers\\nesophagi\\nesophagus\\nesoteric\\nespalier\\nespaliered\\nespaliering\\nespaliers\\nespanol\\nespanoles\\nesparto\\nespartos\\nespecial\\nespecially\\nespial\\nespials\\nespied\\nespiegle\\nespies\\nespionage\\nespionages\\nespousal\\nespousals\\nespouse\\nespoused\\nespouser\\nespousers\\nespouses\\nespousing\\nespresso\\nespressos\\nesprit\\nesprits\\nespy\\nespying\\nesquire\\nesquired\\nesquires\\nesquiring\\ness\\nessay\\nessayed\\nessayer\\nessayers\\nessaying\\nessayist\\nessayists\\nessays\\nessence\\nessences\\nessential\\nessentially\\nesses\\nessoin\\nessoins\\nessonite\\nessonites\\nestablish\\nestablished\\nestablishes\\nestablishing\\nestablishment\\nestablishments\\nestancia\\nestancias\\nestate\\nestated\\nestates\\nestating\\nesteem\\nesteemed\\nesteeming\\nesteems\\nester\\nesterase\\nesterases\\nesterified\\nesterifies\\nesterify\\nesterifying\\nesters\\nestheses\\nesthesia\\nesthesias\\nesthesis\\nesthesises\\nesthete\\nesthetes\\nesthetic\\nestimable\\nestimate\\nestimated\\nestimates\\nestimating\\nestimation\\nestimations\\nestimator\\nestimators\\nestival\\nestivate\\nestivated\\nestivates\\nestivating\\nestop\\nestopped\\nestoppel\\nestoppels\\nestopping\\nestops\\nestovers\\nestragon\\nestragons\\nestral\\nestrange\\nestranged\\nestrangement\\nestrangements\\nestranges\\nestranging\\nestray\\nestrayed\\nestraying\\nestrays\\nestreat\\nestreated\\nestreating\\nestreats\\nestrin\\nestrins\\nestriol\\nestriols\\nestrogen\\nestrogens\\nestrone\\nestrones\\nestrous\\nestrual\\nestrum\\nestrums\\nestrus\\nestruses\\nestuaries\\nestuary\\nesurient\\net\\neta\\netagere\\netageres\\netamin\\netamine\\netamines\\netamins\\netape\\netapes\\netas\\netatism\\netatisms\\netatist\\netatists\\netcetera\\netceteras\\netch\\netched\\netcher\\netchers\\netches\\netching\\netchings\\neternal\\neternally\\neternals\\neterne\\neternise\\neternised\\neternises\\neternising\\neternities\\neternity\\neternize\\neternized\\neternizes\\neternizing\\netesian\\netesians\\neth\\nethane\\nethanes\\nethanol\\nethanols\\nethene\\nethenes\\nether\\nethereal\\netheric\\netherified\\netherifies\\netherify\\netherifying\\netherish\\netherize\\netherized\\netherizes\\netherizing\\nethers\\nethic\\nethical\\nethically\\nethicals\\nethician\\nethicians\\nethicist\\nethicists\\nethicize\\nethicized\\nethicizes\\nethicizing\\nethics\\nethinyl\\nethinyls\\nethion\\nethions\\nethmoid\\nethmoids\\nethnarch\\nethnarchs\\nethnic\\nethnical\\nethnicities\\nethnicity\\nethnics\\nethnologic\\nethnological\\nethnologies\\nethnology\\nethnos\\nethnoses\\nethologies\\nethology\\nethos\\nethoses\\nethoxy\\nethoxyl\\nethoxyls\\neths\\nethyl\\nethylate\\nethylated\\nethylates\\nethylating\\nethylene\\nethylenes\\nethylic\\nethyls\\nethyne\\nethynes\\nethynyl\\nethynyls\\netiolate\\netiolated\\netiolates\\netiolating\\netiologies\\netiology\\netna\\netnas\\netoile\\netoiles\\netude\\netudes\\netui\\netuis\\netwee\\netwees\\netyma\\netymological\\netymologist\\netymologists\\netymon\\netymons\\neucaine\\neucaines\\neucalypt\\neucalypti\\neucalypts\\neucalyptus\\neucalyptuses\\neucharis\\neucharises\\neucharistic\\neuchre\\neuchred\\neuchres\\neuchring\\neuclase\\neuclases\\neucrite\\neucrites\\neucritic\\neudaemon\\neudaemons\\neudemon\\neudemons\\neugenic\\neugenics\\neugenist\\neugenists\\neugenol\\neugenols\\neuglena\\neuglenas\\neulachan\\neulachans\\neulachon\\neulachons\\neulogia\\neulogiae\\neulogias\\neulogies\\neulogise\\neulogised\\neulogises\\neulogising\\neulogist\\neulogistic\\neulogists\\neulogium\\neulogiums\\neulogize\\neulogized\\neulogizes\\neulogizing\\neulogy\\neunuch\\neunuchs\\neuonymus\\neuonymuses\\neupatrid\\neupatridae\\neupatrids\\neupepsia\\neupepsias\\neupepsies\\neupepsy\\neupeptic\\neuphemism\\neuphemisms\\neuphemistic\\neuphenic\\neuphonic\\neuphonies\\neuphonious\\neuphony\\neuphoria\\neuphorias\\neuphoric\\neuphotic\\neuphrasies\\neuphrasy\\neuphroe\\neuphroes\\neuphuism\\neuphuisms\\neuphuist\\neuphuists\\neuploid\\neuploidies\\neuploids\\neuploidy\\neupnea\\neupneas\\neupneic\\neupnoea\\neupnoeas\\neupnoeic\\neureka\\neuripi\\neuripus\\neuro\\neuropium\\neuropiums\\neuros\\neurythmies\\neurythmy\\neustacies\\neustacy\\neustatic\\neustele\\neusteles\\neutaxies\\neutaxy\\neutectic\\neutectics\\neuthanasia\\neuthanasias\\neutrophies\\neutrophy\\neuxenite\\neuxenites\\nevacuant\\nevacuants\\nevacuate\\nevacuated\\nevacuates\\nevacuating\\nevacuation\\nevacuations\\nevacuee\\nevacuees\\nevadable\\nevade\\nevaded\\nevader\\nevaders\\nevades\\nevadible\\nevading\\nevaluable\\nevaluate\\nevaluated\\nevaluates\\nevaluating\\nevaluation\\nevaluations\\nevaluator\\nevaluators\\nevanesce\\nevanesced\\nevanesces\\nevanescing\\nevangel\\nevangelical\\nevangelism\\nevangelisms\\nevangelist\\nevangelistic\\nevangelists\\nevangels\\nevanish\\nevanished\\nevanishes\\nevanishing\\nevaporate\\nevaporated\\nevaporates\\nevaporating\\nevaporation\\nevaporations\\nevaporative\\nevaporator\\nevaporators\\nevasion\\nevasions\\nevasive\\nevasiveness\\nevasivenesses\\neve\\nevection\\nevections\\neven\\nevened\\nevener\\neveners\\nevenest\\nevenfall\\nevenfalls\\nevening\\nevenings\\nevenly\\nevenness\\nevennesses\\nevens\\nevensong\\nevensongs\\nevent\\neventful\\neventide\\neventides\\nevents\\neventual\\neventualities\\neventuality\\neventually\\never\\nevergreen\\nevergreens\\neverlasting\\nevermore\\neversion\\neversions\\nevert\\neverted\\neverting\\nevertor\\nevertors\\neverts\\nevery\\neverybody\\neveryday\\neveryman\\neverymen\\neveryone\\neverything\\neveryway\\neverywhere\\neves\\nevict\\nevicted\\nevictee\\nevictees\\nevicting\\neviction\\nevictions\\nevictor\\nevictors\\nevicts\\nevidence\\nevidenced\\nevidences\\nevidencing\\nevident\\nevidently\\nevil\\nevildoer\\nevildoers\\neviler\\nevilest\\neviller\\nevillest\\nevilly\\nevilness\\nevilnesses\\nevils\\nevince\\nevinced\\nevinces\\nevincing\\nevincive\\neviscerate\\neviscerated\\neviscerates\\neviscerating\\nevisceration\\neviscerations\\nevitable\\nevite\\nevited\\nevites\\neviting\\nevocable\\nevocation\\nevocations\\nevocative\\nevocator\\nevocators\\nevoke\\nevoked\\nevoker\\nevokers\\nevokes\\nevoking\\nevolute\\nevolutes\\nevolution\\nevolutionary\\nevolutions\\nevolve\\nevolved\\nevolver\\nevolvers\\nevolves\\nevolving\\nevonymus\\nevonymuses\\nevulsion\\nevulsions\\nevzone\\nevzones\\newe\\newer\\newers\\newes\\nex\\nexacerbate\\nexacerbated\\nexacerbates\\nexacerbating\\nexact\\nexacta\\nexactas\\nexacted\\nexacter\\nexacters\\nexactest\\nexacting\\nexaction\\nexactions\\nexactitude\\nexactitudes\\nexactly\\nexactness\\nexactnesses\\nexactor\\nexactors\\nexacts\\nexaggerate\\nexaggerated\\nexaggeratedly\\nexaggerates\\nexaggerating\\nexaggeration\\nexaggerations\\nexaggerator\\nexaggerators\\nexalt\\nexaltation\\nexaltations\\nexalted\\nexalter\\nexalters\\nexalting\\nexalts\\nexam\\nexamen\\nexamens\\nexamination\\nexaminations\\nexamine\\nexamined\\nexaminee\\nexaminees\\nexaminer\\nexaminers\\nexamines\\nexamining\\nexample\\nexampled\\nexamples\\nexampling\\nexams\\nexanthem\\nexanthems\\nexarch\\nexarchal\\nexarchies\\nexarchs\\nexarchy\\nexasperate\\nexasperated\\nexasperates\\nexasperating\\nexasperation\\nexasperations\\nexcavate\\nexcavated\\nexcavates\\nexcavating\\nexcavation\\nexcavations\\nexcavator\\nexcavators\\nexceed\\nexceeded\\nexceeder\\nexceeders\\nexceeding\\nexceedingly\\nexceeds\\nexcel\\nexcelled\\nexcellence\\nexcellences\\nexcellency\\nexcellent\\nexcellently\\nexcelling\\nexcels\\nexcept\\nexcepted\\nexcepting\\nexception\\nexceptional\\nexceptionalally\\nexceptions\\nexcepts\\nexcerpt\\nexcerpted\\nexcerpting\\nexcerpts\\nexcess\\nexcesses\\nexcessive\\nexcessively\\nexchange\\nexchangeable\\nexchanged\\nexchanges\\nexchanging\\nexcide\\nexcided\\nexcides\\nexciding\\nexciple\\nexciples\\nexcise\\nexcised\\nexcises\\nexcising\\nexcision\\nexcisions\\nexcitabilities\\nexcitability\\nexcitant\\nexcitants\\nexcitation\\nexcitations\\nexcite\\nexcited\\nexcitedly\\nexcitement\\nexcitements\\nexciter\\nexciters\\nexcites\\nexciting\\nexciton\\nexcitons\\nexcitor\\nexcitors\\nexclaim\\nexclaimed\\nexclaiming\\nexclaims\\nexclamation\\nexclamations\\nexclamatory\\nexclave\\nexclaves\\nexclude\\nexcluded\\nexcluder\\nexcluders\\nexcludes\\nexcluding\\nexclusion\\nexclusions\\nexclusive\\nexclusively\\nexclusiveness\\nexclusivenesses\\nexcommunicate\\nexcommunicated\\nexcommunicates\\nexcommunicating\\nexcommunication\\nexcommunications\\nexcrement\\nexcremental\\nexcrements\\nexcreta\\nexcretal\\nexcrete\\nexcreted\\nexcreter\\nexcreters\\nexcretes\\nexcreting\\nexcretion\\nexcretions\\nexcretory\\nexcruciating\\nexcruciatingly\\nexculpate\\nexculpated\\nexculpates\\nexculpating\\nexcursion\\nexcursions\\nexcuse\\nexcused\\nexcuser\\nexcusers\\nexcuses\\nexcusing\\nexeat\\nexec\\nexecrate\\nexecrated\\nexecrates\\nexecrating\\nexecs\\nexecutable\\nexecute\\nexecuted\\nexecuter\\nexecuters\\nexecutes\\nexecuting\\nexecution\\nexecutioner\\nexecutioners\\nexecutions\\nexecutive\\nexecutives\\nexecutor\\nexecutors\\nexecutrix\\nexecutrixes\\nexedra\\nexedrae\\nexegeses\\nexegesis\\nexegete\\nexegetes\\nexegetic\\nexempla\\nexemplar\\nexemplars\\nexemplary\\nexemplification\\nexemplifications\\nexemplified\\nexemplifies\\nexemplify\\nexemplifying\\nexemplum\\nexempt\\nexempted\\nexempting\\nexemption\\nexemptions\\nexempts\\nexequial\\nexequies\\nexequy\\nexercise\\nexercised\\nexerciser\\nexercisers\\nexercises\\nexercising\\nexergual\\nexergue\\nexergues\\nexert\\nexerted\\nexerting\\nexertion\\nexertions\\nexertive\\nexerts\\nexes\\nexhalant\\nexhalants\\nexhalation\\nexhalations\\nexhale\\nexhaled\\nexhalent\\nexhalents\\nexhales\\nexhaling\\nexhaust\\nexhausted\\nexhausting\\nexhaustion\\nexhaustions\\nexhaustive\\nexhausts\\nexhibit\\nexhibited\\nexhibiting\\nexhibition\\nexhibitions\\nexhibitor\\nexhibitors\\nexhibits\\nexhilarate\\nexhilarated\\nexhilarates\\nexhilarating\\nexhilaration\\nexhilarations\\nexhort\\nexhortation\\nexhortations\\nexhorted\\nexhorter\\nexhorters\\nexhorting\\nexhorts\\nexhumation\\nexhumations\\nexhume\\nexhumed\\nexhumer\\nexhumers\\nexhumes\\nexhuming\\nexigence\\nexigences\\nexigencies\\nexigency\\nexigent\\nexigible\\nexiguities\\nexiguity\\nexiguous\\nexile\\nexiled\\nexiles\\nexilian\\nexilic\\nexiling\\neximious\\nexine\\nexines\\nexist\\nexisted\\nexistence\\nexistences\\nexistent\\nexistents\\nexisting\\nexists\\nexit\\nexited\\nexiting\\nexits\\nexocarp\\nexocarps\\nexocrine\\nexocrines\\nexoderm\\nexoderms\\nexodoi\\nexodos\\nexodus\\nexoduses\\nexoergic\\nexogamic\\nexogamies\\nexogamy\\nexogen\\nexogens\\nexonerate\\nexonerated\\nexonerates\\nexonerating\\nexoneration\\nexonerations\\nexorable\\nexorbitant\\nexorcise\\nexorcised\\nexorcises\\nexorcising\\nexorcism\\nexorcisms\\nexorcist\\nexorcists\\nexorcize\\nexorcized\\nexorcizes\\nexorcizing\\nexordia\\nexordial\\nexordium\\nexordiums\\nexosmic\\nexosmose\\nexosmoses\\nexospore\\nexospores\\nexoteric\\nexotic\\nexotica\\nexotically\\nexoticism\\nexoticisms\\nexotics\\nexotism\\nexotisms\\nexotoxic\\nexotoxin\\nexotoxins\\nexpand\\nexpanded\\nexpander\\nexpanders\\nexpanding\\nexpands\\nexpanse\\nexpanses\\nexpansion\\nexpansions\\nexpansive\\nexpansively\\nexpansiveness\\nexpansivenesses\\nexpatriate\\nexpatriated\\nexpatriates\\nexpatriating\\nexpect\\nexpectancies\\nexpectancy\\nexpectant\\nexpectantly\\nexpectation\\nexpectations\\nexpected\\nexpecting\\nexpects\\nexpedient\\nexpedients\\nexpedious\\nexpedite\\nexpedited\\nexpediter\\nexpediters\\nexpedites\\nexpediting\\nexpedition\\nexpeditions\\nexpeditious\\nexpel\\nexpelled\\nexpellee\\nexpellees\\nexpeller\\nexpellers\\nexpelling\\nexpels\\nexpend\\nexpended\\nexpender\\nexpenders\\nexpendible\\nexpending\\nexpenditure\\nexpenditures\\nexpends\\nexpense\\nexpensed\\nexpenses\\nexpensing\\nexpensive\\nexpensively\\nexperience\\nexperiences\\nexperiment\\nexperimental\\nexperimentation\\nexperimentations\\nexperimented\\nexperimenter\\nexperimenters\\nexperimenting\\nexperiments\\nexpert\\nexperted\\nexperting\\nexpertise\\nexpertises\\nexpertly\\nexpertness\\nexpertnesses\\nexperts\\nexpiable\\nexpiate\\nexpiated\\nexpiates\\nexpiating\\nexpiation\\nexpiations\\nexpiator\\nexpiators\\nexpiration\\nexpirations\\nexpire\\nexpired\\nexpirer\\nexpirers\\nexpires\\nexpiries\\nexpiring\\nexpiry\\nexplain\\nexplainable\\nexplained\\nexplaining\\nexplains\\nexplanation\\nexplanations\\nexplanatory\\nexplant\\nexplanted\\nexplanting\\nexplants\\nexpletive\\nexpletives\\nexplicable\\nexplicably\\nexplicit\\nexplicitly\\nexplicitness\\nexplicitnesses\\nexplicits\\nexplode\\nexploded\\nexploder\\nexploders\\nexplodes\\nexploding\\nexploit\\nexploitation\\nexploitations\\nexploited\\nexploiting\\nexploits\\nexploration\\nexplorations\\nexploratory\\nexplore\\nexplored\\nexplorer\\nexplorers\\nexplores\\nexploring\\nexplosion\\nexplosions\\nexplosive\\nexplosively\\nexplosives\\nexpo\\nexponent\\nexponential\\nexponentially\\nexponents\\nexport\\nexportation\\nexportations\\nexported\\nexporter\\nexporters\\nexporting\\nexports\\nexpos\\nexposal\\nexposals\\nexpose\\nexposed\\nexposer\\nexposers\\nexposes\\nexposing\\nexposit\\nexposited\\nexpositing\\nexposition\\nexpositions\\nexposits\\nexposure\\nexposures\\nexpound\\nexpounded\\nexpounding\\nexpounds\\nexpress\\nexpressed\\nexpresses\\nexpressible\\nexpressibly\\nexpressing\\nexpression\\nexpressionless\\nexpressions\\nexpressive\\nexpressiveness\\nexpressivenesses\\nexpressly\\nexpressway\\nexpressways\\nexpulse\\nexpulsed\\nexpulses\\nexpulsing\\nexpulsion\\nexpulsions\\nexpunge\\nexpunged\\nexpunger\\nexpungers\\nexpunges\\nexpunging\\nexpurgate\\nexpurgated\\nexpurgates\\nexpurgating\\nexpurgation\\nexpurgations\\nexquisite\\nexscind\\nexscinded\\nexscinding\\nexscinds\\nexsecant\\nexsecants\\nexsect\\nexsected\\nexsecting\\nexsects\\nexsert\\nexserted\\nexserting\\nexserts\\nextant\\nextemporaneous\\nextemporaneously\\nextend\\nextendable\\nextended\\nextender\\nextenders\\nextendible\\nextending\\nextends\\nextension\\nextensions\\nextensive\\nextensively\\nextensor\\nextensors\\nextent\\nextents\\nextenuate\\nextenuated\\nextenuates\\nextenuating\\nextenuation\\nextenuations\\nexterior\\nexteriors\\nexterminate\\nexterminated\\nexterminates\\nexterminating\\nextermination\\nexterminations\\nexterminator\\nexterminators\\nextern\\nexternal\\nexternally\\nexternals\\nexterne\\nexternes\\nexterns\\nextinct\\nextincted\\nextincting\\nextinction\\nextinctions\\nextincts\\nextinguish\\nextinguishable\\nextinguished\\nextinguisher\\nextinguishers\\nextinguishes\\nextinguishing\\nextirpate\\nextirpated\\nextirpates\\nextirpating\\nextol\\nextoll\\nextolled\\nextoller\\nextollers\\nextolling\\nextolls\\nextols\\nextort\\nextorted\\nextorter\\nextorters\\nextorting\\nextortion\\nextortioner\\nextortioners\\nextortionist\\nextortionists\\nextortions\\nextorts\\nextra\\nextracampus\\nextraclassroom\\nextracommunity\\nextraconstitutional\\nextracontinental\\nextract\\nextractable\\nextracted\\nextracting\\nextraction\\nextractions\\nextractor\\nextractors\\nextracts\\nextracurricular\\nextradepartmental\\nextradiocesan\\nextradite\\nextradited\\nextradites\\nextraditing\\nextradition\\nextraditions\\nextrados\\nextradoses\\nextrafamilial\\nextragalactic\\nextragovernmental\\nextrahuman\\nextralegal\\nextramarital\\nextranational\\nextraneous\\nextraneously\\nextraordinarily\\nextraordinary\\nextraplanetary\\nextrapyramidal\\nextras\\nextrascholastic\\nextrasensory\\nextraterrestrial\\nextravagance\\nextravagances\\nextravagant\\nextravagantly\\nextravaganza\\nextravaganzas\\nextravasate\\nextravasated\\nextravasates\\nextravasating\\nextravasation\\nextravasations\\nextravehicular\\nextraversion\\nextraversions\\nextravert\\nextraverted\\nextraverts\\nextrema\\nextreme\\nextremely\\nextremer\\nextremes\\nextremest\\nextremities\\nextremity\\nextremum\\nextricable\\nextricate\\nextricated\\nextricates\\nextricating\\nextrication\\nextrications\\nextrorse\\nextrovert\\nextroverts\\nextrude\\nextruded\\nextruder\\nextruders\\nextrudes\\nextruding\\nexuberance\\nexuberances\\nexuberant\\nexuberantly\\nexudate\\nexudates\\nexudation\\nexudations\\nexude\\nexuded\\nexudes\\nexuding\\nexult\\nexultant\\nexulted\\nexulting\\nexults\\nexurb\\nexurban\\nexurbia\\nexurbias\\nexurbs\\nexuvia\\nexuviae\\nexuvial\\nexuviate\\nexuviated\\nexuviates\\nexuviating\\nexuvium\\neyas\\neyases\\neye\\neyeable\\neyeball\\neyeballed\\neyeballing\\neyeballs\\neyebeam\\neyebeams\\neyebolt\\neyebolts\\neyebrow\\neyebrows\\neyecup\\neyecups\\neyed\\neyedness\\neyednesses\\neyedropper\\neyedroppers\\neyeful\\neyefuls\\neyeglass\\neyeglasses\\neyehole\\neyeholes\\neyehook\\neyehooks\\neyeing\\neyelash\\neyelashes\\neyeless\\neyelet\\neyelets\\neyeletted\\neyeletting\\neyelid\\neyelids\\neyelike\\neyeliner\\neyeliners\\neyen\\neyepiece\\neyepieces\\neyepoint\\neyepoints\\neyer\\neyers\\neyes\\neyeshade\\neyeshades\\neyeshot\\neyeshots\\neyesight\\neyesights\\neyesome\\neyesore\\neyesores\\neyespot\\neyespots\\neyestalk\\neyestalks\\neyestone\\neyestones\\neyestrain\\neyestrains\\neyeteeth\\neyetooth\\neyewash\\neyewashes\\neyewater\\neyewaters\\neyewink\\neyewinks\\neyewitness\\neying\\neyne\\neyra\\neyras\\neyre\\neyres\\neyrie\\neyries\\neyrir\\neyry\\nfa\\nfable\\nfabled\\nfabler\\nfablers\\nfables\\nfabliau\\nfabliaux\\nfabling\\nfabric\\nfabricate\\nfabricated\\nfabricates\\nfabricating\\nfabrication\\nfabrications\\nfabrics\\nfabular\\nfabulist\\nfabulists\\nfabulous\\nfabulously\\nfacade\\nfacades\\nface\\nfaceable\\nfaced\\nfacedown\\nfaceless\\nfacelessness\\nfacelessnesses\\nfacer\\nfacers\\nfaces\\nfacesheet\\nfacesheets\\nfacet\\nfacete\\nfaceted\\nfacetely\\nfacetiae\\nfaceting\\nfacetious\\nfacetiously\\nfacets\\nfacetted\\nfacetting\\nfaceup\\nfacia\\nfacial\\nfacially\\nfacials\\nfacias\\nfaciend\\nfaciends\\nfacies\\nfacile\\nfacilely\\nfacilitate\\nfacilitated\\nfacilitates\\nfacilitating\\nfacilitator\\nfacilitators\\nfacilities\\nfacility\\nfacing\\nfacings\\nfacsimile\\nfacsimiles\\nfact\\nfactful\\nfaction\\nfactional\\nfactionalism\\nfactionalisms\\nfactions\\nfactious\\nfactitious\\nfactor\\nfactored\\nfactories\\nfactoring\\nfactors\\nfactory\\nfactotum\\nfactotums\\nfacts\\nfactual\\nfactually\\nfacture\\nfactures\\nfacula\\nfaculae\\nfacular\\nfaculties\\nfaculty\\nfad\\nfadable\\nfaddier\\nfaddiest\\nfaddish\\nfaddism\\nfaddisms\\nfaddist\\nfaddists\\nfaddy\\nfade\\nfadeaway\\nfadeaways\\nfaded\\nfadedly\\nfadeless\\nfader\\nfaders\\nfades\\nfadge\\nfadged\\nfadges\\nfadging\\nfading\\nfadings\\nfado\\nfados\\nfads\\nfaecal\\nfaeces\\nfaena\\nfaenas\\nfaerie\\nfaeries\\nfaery\\nfag\\nfagged\\nfagging\\nfagin\\nfagins\\nfagot\\nfagoted\\nfagoter\\nfagoters\\nfagoting\\nfagotings\\nfagots\\nfags\\nfahlband\\nfahlbands\\nfahrenheit\\nfaience\\nfaiences\\nfail\\nfailed\\nfailing\\nfailings\\nfaille\\nfailles\\nfails\\nfailure\\nfailures\\nfain\\nfaineant\\nfaineants\\nfainer\\nfainest\\nfaint\\nfainted\\nfainter\\nfainters\\nfaintest\\nfainthearted\\nfainting\\nfaintish\\nfaintly\\nfaintness\\nfaintnesses\\nfaints\\nfair\\nfaired\\nfairer\\nfairest\\nfairground\\nfairgrounds\\nfairies\\nfairing\\nfairings\\nfairish\\nfairlead\\nfairleads\\nfairly\\nfairness\\nfairnesses\\nfairs\\nfairway\\nfairways\\nfairy\\nfairyism\\nfairyisms\\nfairyland\\nfairylands\\nfaith\\nfaithed\\nfaithful\\nfaithfully\\nfaithfulness\\nfaithfulnesses\\nfaithfuls\\nfaithing\\nfaithless\\nfaithlessly\\nfaithlessness\\nfaithlessnesses\\nfaiths\\nfaitour\\nfaitours\\nfake\\nfaked\\nfakeer\\nfakeers\\nfaker\\nfakeries\\nfakers\\nfakery\\nfakes\\nfaking\\nfakir\\nfakirs\\nfalbala\\nfalbalas\\nfalcate\\nfalcated\\nfalchion\\nfalchions\\nfalcon\\nfalconer\\nfalconers\\nfalconet\\nfalconets\\nfalconries\\nfalconry\\nfalcons\\nfalderal\\nfalderals\\nfalderol\\nfalderols\\nfall\\nfallacies\\nfallacious\\nfallacy\\nfallal\\nfallals\\nfallback\\nfallbacks\\nfallen\\nfaller\\nfallers\\nfallfish\\nfallfishes\\nfallible\\nfallibly\\nfalling\\nfalloff\\nfalloffs\\nfallout\\nfallouts\\nfallow\\nfallowed\\nfallowing\\nfallows\\nfalls\\nfalse\\nfalsehood\\nfalsehoods\\nfalsely\\nfalseness\\nfalsenesses\\nfalser\\nfalsest\\nfalsetto\\nfalsettos\\nfalsie\\nfalsies\\nfalsification\\nfalsifications\\nfalsified\\nfalsifies\\nfalsify\\nfalsifying\\nfalsities\\nfalsity\\nfaltboat\\nfaltboats\\nfalter\\nfaltered\\nfalterer\\nfalterers\\nfaltering\\nfalters\\nfame\\nfamed\\nfameless\\nfames\\nfamiglietti\\nfamilial\\nfamiliar\\nfamiliarities\\nfamiliarity\\nfamiliarize\\nfamiliarized\\nfamiliarizes\\nfamiliarizing\\nfamiliarly\\nfamiliars\\nfamilies\\nfamily\\nfamine\\nfamines\\nfaming\\nfamish\\nfamished\\nfamishes\\nfamishing\\nfamous\\nfamously\\nfamuli\\nfamulus\\nfan\\nfanatic\\nfanatical\\nfanaticism\\nfanaticisms\\nfanatics\\nfancied\\nfancier\\nfanciers\\nfancies\\nfanciest\\nfanciful\\nfancifully\\nfancily\\nfancy\\nfancying\\nfandango\\nfandangos\\nfandom\\nfandoms\\nfane\\nfanega\\nfanegada\\nfanegadas\\nfanegas\\nfanes\\nfanfare\\nfanfares\\nfanfaron\\nfanfarons\\nfanfold\\nfanfolds\\nfang\\nfanga\\nfangas\\nfanged\\nfangless\\nfanglike\\nfangs\\nfanion\\nfanions\\nfanjet\\nfanjets\\nfanlight\\nfanlights\\nfanlike\\nfanned\\nfanner\\nfannies\\nfanning\\nfanny\\nfano\\nfanon\\nfanons\\nfanos\\nfans\\nfantail\\nfantails\\nfantasia\\nfantasias\\nfantasie\\nfantasied\\nfantasies\\nfantasize\\nfantasized\\nfantasizes\\nfantasizing\\nfantasm\\nfantasms\\nfantast\\nfantastic\\nfantastical\\nfantastically\\nfantasts\\nfantasy\\nfantasying\\nfantod\\nfantods\\nfantom\\nfantoms\\nfanum\\nfanums\\nfanwise\\nfanwort\\nfanworts\\nfaqir\\nfaqirs\\nfaquir\\nfaquirs\\nfar\\nfarad\\nfaradaic\\nfaraday\\nfaradays\\nfaradic\\nfaradise\\nfaradised\\nfaradises\\nfaradising\\nfaradism\\nfaradisms\\nfaradize\\nfaradized\\nfaradizes\\nfaradizing\\nfarads\\nfaraway\\nfarce\\nfarced\\nfarcer\\nfarcers\\nfarces\\nfarceur\\nfarceurs\\nfarci\\nfarcical\\nfarcie\\nfarcies\\nfarcing\\nfarcy\\nfard\\nfarded\\nfardel\\nfardels\\nfarding\\nfards\\nfare\\nfared\\nfarer\\nfarers\\nfares\\nfarewell\\nfarewelled\\nfarewelling\\nfarewells\\nfarfal\\nfarfals\\nfarfel\\nfarfels\\nfarfetched\\nfarina\\nfarinas\\nfaring\\nfarinha\\nfarinhas\\nfarinose\\nfarl\\nfarle\\nfarles\\nfarls\\nfarm\\nfarmable\\nfarmed\\nfarmer\\nfarmers\\nfarmhand\\nfarmhands\\nfarmhouse\\nfarmhouses\\nfarming\\nfarmings\\nfarmland\\nfarmlands\\nfarms\\nfarmstead\\nfarmsteads\\nfarmyard\\nfarmyards\\nfarnesol\\nfarnesols\\nfarness\\nfarnesses\\nfaro\\nfaros\\nfarouche\\nfarrago\\nfarragoes\\nfarrier\\nfarrieries\\nfarriers\\nfarriery\\nfarrow\\nfarrowed\\nfarrowing\\nfarrows\\nfarsighted\\nfarsightedness\\nfarsightednesses\\nfart\\nfarted\\nfarther\\nfarthermost\\nfarthest\\nfarthing\\nfarthings\\nfarting\\nfarts\\nfas\\nfasces\\nfascia\\nfasciae\\nfascial\\nfascias\\nfasciate\\nfascicle\\nfascicled\\nfascicles\\nfascinate\\nfascinated\\nfascinates\\nfascinating\\nfascination\\nfascinations\\nfascine\\nfascines\\nfascism\\nfascisms\\nfascist\\nfascistic\\nfascists\\nfash\\nfashed\\nfashes\\nfashing\\nfashion\\nfashionable\\nfashionably\\nfashioned\\nfashioning\\nfashions\\nfashious\\nfast\\nfastback\\nfastbacks\\nfastball\\nfastballs\\nfasted\\nfasten\\nfastened\\nfastener\\nfasteners\\nfastening\\nfastenings\\nfastens\\nfaster\\nfastest\\nfastiduous\\nfastiduously\\nfastiduousness\\nfastiduousnesses\\nfasting\\nfastings\\nfastness\\nfastnesses\\nfasts\\nfastuous\\nfat\\nfatal\\nfatalism\\nfatalisms\\nfatalist\\nfatalistic\\nfatalists\\nfatalities\\nfatality\\nfatally\\nfatback\\nfatbacks\\nfatbird\\nfatbirds\\nfate\\nfated\\nfateful\\nfatefully\\nfates\\nfathead\\nfatheads\\nfather\\nfathered\\nfatherhood\\nfatherhoods\\nfathering\\nfatherland\\nfatherlands\\nfatherless\\nfatherly\\nfathers\\nfathom\\nfathomable\\nfathomed\\nfathoming\\nfathomless\\nfathoms\\nfatidic\\nfatigue\\nfatigued\\nfatigues\\nfatiguing\\nfating\\nfatless\\nfatlike\\nfatling\\nfatlings\\nfatly\\nfatness\\nfatnesses\\nfats\\nfatso\\nfatsoes\\nfatsos\\nfatstock\\nfatstocks\\nfatted\\nfatten\\nfattened\\nfattener\\nfatteners\\nfattening\\nfattens\\nfatter\\nfattest\\nfattier\\nfatties\\nfattiest\\nfattily\\nfatting\\nfattish\\nfatty\\nfatuities\\nfatuity\\nfatuous\\nfatuously\\nfatuousness\\nfatuousnesses\\nfaubourg\\nfaubourgs\\nfaucal\\nfaucals\\nfauces\\nfaucet\\nfaucets\\nfaucial\\nfaugh\\nfauld\\nfaulds\\nfault\\nfaulted\\nfaultfinder\\nfaultfinders\\nfaultfinding\\nfaultfindings\\nfaultier\\nfaultiest\\nfaultily\\nfaulting\\nfaultless\\nfaultlessly\\nfaults\\nfaulty\\nfaun\\nfauna\\nfaunae\\nfaunal\\nfaunally\\nfaunas\\nfaunlike\\nfauns\\nfauteuil\\nfauteuils\\nfauve\\nfauves\\nfauvism\\nfauvisms\\nfauvist\\nfauvists\\nfavela\\nfavelas\\nfavonian\\nfavor\\nfavorable\\nfavorably\\nfavored\\nfavorer\\nfavorers\\nfavoring\\nfavorite\\nfavorites\\nfavoritism\\nfavoritisms\\nfavors\\nfavour\\nfavoured\\nfavourer\\nfavourers\\nfavouring\\nfavours\\nfavus\\nfavuses\\nfawn\\nfawned\\nfawner\\nfawners\\nfawnier\\nfawniest\\nfawning\\nfawnlike\\nfawns\\nfawny\\nfax\\nfaxed\\nfaxes\\nfaxing\\nfay\\nfayalite\\nfayalites\\nfayed\\nfaying\\nfays\\nfaze\\nfazed\\nfazenda\\nfazendas\\nfazes\\nfazing\\nfeal\\nfealties\\nfealty\\nfear\\nfeared\\nfearer\\nfearers\\nfearful\\nfearfuller\\nfearfullest\\nfearfully\\nfearing\\nfearless\\nfearlessly\\nfearlessness\\nfearlessnesses\\nfears\\nfearsome\\nfeasance\\nfeasances\\nfease\\nfeased\\nfeases\\nfeasibilities\\nfeasibility\\nfeasible\\nfeasibly\\nfeasing\\nfeast\\nfeasted\\nfeaster\\nfeasters\\nfeastful\\nfeasting\\nfeasts\\nfeat\\nfeater\\nfeatest\\nfeather\\nfeathered\\nfeatherier\\nfeatheriest\\nfeathering\\nfeatherless\\nfeathers\\nfeathery\\nfeatlier\\nfeatliest\\nfeatly\\nfeats\\nfeature\\nfeatured\\nfeatureless\\nfeatures\\nfeaturing\\nfeaze\\nfeazed\\nfeazes\\nfeazing\\nfebrific\\nfebrile\\nfecal\\nfeces\\nfecial\\nfecials\\nfeck\\nfeckless\\nfeckly\\nfecks\\nfecula\\nfeculae\\nfeculent\\nfecund\\nfecundities\\nfecundity\\nfed\\nfedayee\\nfedayeen\\nfederacies\\nfederacy\\nfederal\\nfederalism\\nfederalisms\\nfederalist\\nfederalists\\nfederally\\nfederals\\nfederate\\nfederated\\nfederates\\nfederating\\nfederation\\nfederations\\nfedora\\nfedoras\\nfeds\\nfee\\nfeeble\\nfeebleminded\\nfeeblemindedness\\nfeeblemindednesses\\nfeebleness\\nfeeblenesses\\nfeebler\\nfeeblest\\nfeeblish\\nfeebly\\nfeed\\nfeedable\\nfeedback\\nfeedbacks\\nfeedbag\\nfeedbags\\nfeedbox\\nfeedboxes\\nfeeder\\nfeeders\\nfeeding\\nfeedlot\\nfeedlots\\nfeeds\\nfeeing\\nfeel\\nfeeler\\nfeelers\\nfeeless\\nfeeling\\nfeelings\\nfeels\\nfees\\nfeet\\nfeetless\\nfeeze\\nfeezed\\nfeezes\\nfeezing\\nfeign\\nfeigned\\nfeigner\\nfeigners\\nfeigning\\nfeigns\\nfeint\\nfeinted\\nfeinting\\nfeints\\nfeirie\\nfeist\\nfeistier\\nfeistiest\\nfeists\\nfeisty\\nfeldspar\\nfeldspars\\nfelicitate\\nfelicitated\\nfelicitates\\nfelicitating\\nfelicitation\\nfelicitations\\nfelicities\\nfelicitous\\nfelicitously\\nfelicity\\nfelid\\nfelids\\nfeline\\nfelinely\\nfelines\\nfelinities\\nfelinity\\nfell\\nfella\\nfellable\\nfellah\\nfellaheen\\nfellahin\\nfellahs\\nfellas\\nfellatio\\nfellatios\\nfelled\\nfeller\\nfellers\\nfellest\\nfellies\\nfelling\\nfellness\\nfellnesses\\nfelloe\\nfelloes\\nfellow\\nfellowed\\nfellowing\\nfellowly\\nfellowman\\nfellowmen\\nfellows\\nfellowship\\nfellowships\\nfells\\nfelly\\nfelon\\nfelonies\\nfelonious\\nfelonries\\nfelonry\\nfelons\\nfelony\\nfelsite\\nfelsites\\nfelsitic\\nfelspar\\nfelspars\\nfelstone\\nfelstones\\nfelt\\nfelted\\nfelting\\nfeltings\\nfelts\\nfelucca\\nfeluccas\\nfelwort\\nfelworts\\nfemale\\nfemales\\nfeme\\nfemes\\nfeminacies\\nfeminacy\\nfeminie\\nfeminine\\nfeminines\\nfemininities\\nfemininity\\nfeminise\\nfeminised\\nfeminises\\nfeminising\\nfeminism\\nfeminisms\\nfeminist\\nfeminists\\nfeminities\\nfeminity\\nfeminization\\nfeminizations\\nfeminize\\nfeminized\\nfeminizes\\nfeminizing\\nfemme\\nfemmes\\nfemora\\nfemoral\\nfemur\\nfemurs\\nfen\\nfenagle\\nfenagled\\nfenagles\\nfenagling\\nfence\\nfenced\\nfencer\\nfencers\\nfences\\nfencible\\nfencibles\\nfencing\\nfencings\\nfend\\nfended\\nfender\\nfendered\\nfenders\\nfending\\nfends\\nfenestra\\nfenestrae\\nfennec\\nfennecs\\nfennel\\nfennels\\nfenny\\nfens\\nfeod\\nfeodaries\\nfeodary\\nfeods\\nfeoff\\nfeoffed\\nfeoffee\\nfeoffees\\nfeoffer\\nfeoffers\\nfeoffing\\nfeoffor\\nfeoffors\\nfeoffs\\nfer\\nferacities\\nferacity\\nferal\\nferbam\\nferbams\\nfere\\nferes\\nferetories\\nferetory\\nferia\\nferiae\\nferial\\nferias\\nferine\\nferities\\nferity\\nferlie\\nferlies\\nferly\\nfermata\\nfermatas\\nfermate\\nferment\\nfermentation\\nfermentations\\nfermented\\nfermenting\\nferments\\nfermi\\nfermion\\nfermions\\nfermis\\nfermium\\nfermiums\\nfern\\nferneries\\nfernery\\nfernier\\nferniest\\nfernless\\nfernlike\\nferns\\nferny\\nferocious\\nferociously\\nferociousness\\nferociousnesses\\nferocities\\nferocity\\nferrate\\nferrates\\nferrel\\nferreled\\nferreling\\nferrelled\\nferrelling\\nferrels\\nferreous\\nferret\\nferreted\\nferreter\\nferreters\\nferreting\\nferrets\\nferrety\\nferriage\\nferriages\\nferric\\nferried\\nferries\\nferrite\\nferrites\\nferritic\\nferritin\\nferritins\\nferrous\\nferrule\\nferruled\\nferrules\\nferruling\\nferrum\\nferrums\\nferry\\nferryboat\\nferryboats\\nferrying\\nferryman\\nferrymen\\nfertile\\nfertilities\\nfertility\\nfertilization\\nfertilizations\\nfertilize\\nfertilized\\nfertilizer\\nfertilizers\\nfertilizes\\nfertilizing\\nferula\\nferulae\\nferulas\\nferule\\nferuled\\nferules\\nferuling\\nfervencies\\nfervency\\nfervent\\nfervently\\nfervid\\nfervidly\\nfervor\\nfervors\\nfervour\\nfervours\\nfescue\\nfescues\\nfess\\nfesse\\nfessed\\nfesses\\nfessing\\nfesswise\\nfestal\\nfestally\\nfester\\nfestered\\nfestering\\nfesters\\nfestival\\nfestivals\\nfestive\\nfestively\\nfestivities\\nfestivity\\nfestoon\\nfestooned\\nfestooning\\nfestoons\\nfet\\nfeta\\nfetal\\nfetas\\nfetation\\nfetations\\nfetch\\nfetched\\nfetcher\\nfetchers\\nfetches\\nfetching\\nfetchingly\\nfete\\nfeted\\nfeterita\\nfeteritas\\nfetes\\nfetial\\nfetiales\\nfetialis\\nfetials\\nfetich\\nfetiches\\nfeticide\\nfeticides\\nfetid\\nfetidly\\nfeting\\nfetish\\nfetishes\\nfetlock\\nfetlocks\\nfetologies\\nfetology\\nfetor\\nfetors\\nfets\\nfetted\\nfetter\\nfettered\\nfetterer\\nfetterers\\nfettering\\nfetters\\nfetting\\nfettle\\nfettled\\nfettles\\nfettling\\nfettlings\\nfetus\\nfetuses\\nfeu\\nfeuar\\nfeuars\\nfeud\\nfeudal\\nfeudalism\\nfeudalistic\\nfeudally\\nfeudaries\\nfeudary\\nfeuded\\nfeuding\\nfeudist\\nfeudists\\nfeuds\\nfeued\\nfeuing\\nfeus\\nfever\\nfevered\\nfeverfew\\nfeverfews\\nfevering\\nfeverish\\nfeverous\\nfevers\\nfew\\nfewer\\nfewest\\nfewness\\nfewnesses\\nfewtrils\\nfey\\nfeyer\\nfeyest\\nfeyness\\nfeynesses\\nfez\\nfezes\\nfezzed\\nfezzes\\nfiacre\\nfiacres\\nfiance\\nfiancee\\nfiancees\\nfiances\\nfiar\\nfiars\\nfiaschi\\nfiasco\\nfiascoes\\nfiascos\\nfiat\\nfiats\\nfib\\nfibbed\\nfibber\\nfibbers\\nfibbing\\nfiber\\nfiberboard\\nfiberboards\\nfibered\\nfiberglass\\nfiberglasses\\nfiberize\\nfiberized\\nfiberizes\\nfiberizing\\nfibers\\nfibre\\nfibres\\nfibril\\nfibrilla\\nfibrillae\\nfibrillate\\nfibrillated\\nfibrillates\\nfibrillating\\nfibrillation\\nfibrillations\\nfibrils\\nfibrin\\nfibrins\\nfibrocystic\\nfibroid\\nfibroids\\nfibroin\\nfibroins\\nfibroma\\nfibromas\\nfibromata\\nfibroses\\nfibrosis\\nfibrotic\\nfibrous\\nfibs\\nfibula\\nfibulae\\nfibular\\nfibulas\\nfice\\nfices\\nfiche\\nfiches\\nfichu\\nfichus\\nficin\\nficins\\nfickle\\nfickleness\\nficklenesses\\nfickler\\nficklest\\nfico\\nficoes\\nfictile\\nfiction\\nfictional\\nfictions\\nfictitious\\nfictive\\nfid\\nfiddle\\nfiddled\\nfiddler\\nfiddlers\\nfiddles\\nfiddlesticks\\nfiddling\\nfideism\\nfideisms\\nfideist\\nfideists\\nfidelities\\nfidelity\\nfidge\\nfidged\\nfidges\\nfidget\\nfidgeted\\nfidgeter\\nfidgeters\\nfidgeting\\nfidgets\\nfidgety\\nfidging\\nfido\\nfidos\\nfids\\nfiducial\\nfiduciaries\\nfiduciary\\nfie\\nfief\\nfiefdom\\nfiefdoms\\nfiefs\\nfield\\nfielded\\nfielder\\nfielders\\nfielding\\nfields\\nfiend\\nfiendish\\nfiendishly\\nfiends\\nfierce\\nfiercely\\nfierceness\\nfiercenesses\\nfiercer\\nfiercest\\nfierier\\nfieriest\\nfierily\\nfieriness\\nfierinesses\\nfiery\\nfiesta\\nfiestas\\nfife\\nfifed\\nfifer\\nfifers\\nfifes\\nfifing\\nfifteen\\nfifteens\\nfifteenth\\nfifteenths\\nfifth\\nfifthly\\nfifths\\nfifties\\nfiftieth\\nfiftieths\\nfifty\\nfig\\nfigeater\\nfigeaters\\nfigged\\nfigging\\nfight\\nfighter\\nfighters\\nfighting\\nfightings\\nfights\\nfigment\\nfigments\\nfigs\\nfiguline\\nfigulines\\nfigural\\nfigurant\\nfigurants\\nfigurate\\nfigurative\\nfiguratively\\nfigure\\nfigured\\nfigurer\\nfigurers\\nfigures\\nfigurine\\nfigurines\\nfiguring\\nfigwort\\nfigworts\\nfil\\nfila\\nfilagree\\nfilagreed\\nfilagreeing\\nfilagrees\\nfilament\\nfilamentous\\nfilaments\\nfilar\\nfilaree\\nfilarees\\nfilaria\\nfilariae\\nfilarial\\nfilarian\\nfilariid\\nfilariids\\nfilature\\nfilatures\\nfilbert\\nfilberts\\nfilch\\nfilched\\nfilcher\\nfilchers\\nfilches\\nfilching\\nfile\\nfiled\\nfilefish\\nfilefishes\\nfilemot\\nfiler\\nfilers\\nfiles\\nfilet\\nfileted\\nfileting\\nfilets\\nfilial\\nfilially\\nfiliate\\nfiliated\\nfiliates\\nfiliating\\nfilibeg\\nfilibegs\\nfilibuster\\nfilibustered\\nfilibusterer\\nfilibusterers\\nfilibustering\\nfilibusters\\nfilicide\\nfilicides\\nfiliform\\nfiligree\\nfiligreed\\nfiligreeing\\nfiligrees\\nfiling\\nfilings\\nfilister\\nfilisters\\nfill\\nfille\\nfilled\\nfiller\\nfillers\\nfilles\\nfillet\\nfilleted\\nfilleting\\nfillets\\nfillies\\nfilling\\nfillings\\nfillip\\nfilliped\\nfilliping\\nfillips\\nfills\\nfilly\\nfilm\\nfilmcard\\nfilmcards\\nfilmdom\\nfilmdoms\\nfilmed\\nfilmgoer\\nfilmgoers\\nfilmic\\nfilmier\\nfilmiest\\nfilmily\\nfilming\\nfilmland\\nfilmlands\\nfilms\\nfilmset\\nfilmsets\\nfilmsetting\\nfilmstrip\\nfilmstrips\\nfilmy\\nfilose\\nfils\\nfilter\\nfilterable\\nfiltered\\nfilterer\\nfilterers\\nfiltering\\nfilters\\nfilth\\nfilthier\\nfilthiest\\nfilthily\\nfilthiness\\nfilthinesses\\nfilths\\nfilthy\\nfiltrate\\nfiltrated\\nfiltrates\\nfiltrating\\nfiltration\\nfiltrations\\nfilum\\nfimble\\nfimbles\\nfimbria\\nfimbriae\\nfimbrial\\nfin\\nfinable\\nfinagle\\nfinagled\\nfinagler\\nfinaglers\\nfinagles\\nfinagling\\nfinal\\nfinale\\nfinales\\nfinalis\\nfinalism\\nfinalisms\\nfinalist\\nfinalists\\nfinalities\\nfinality\\nfinalize\\nfinalized\\nfinalizes\\nfinalizing\\nfinally\\nfinals\\nfinance\\nfinanced\\nfinances\\nfinancial\\nfinancially\\nfinancier\\nfinanciers\\nfinancing\\nfinback\\nfinbacks\\nfinch\\nfinches\\nfind\\nfinder\\nfinders\\nfinding\\nfindings\\nfinds\\nfine\\nfineable\\nfined\\nfinely\\nfineness\\nfinenesses\\nfiner\\nfineries\\nfinery\\nfines\\nfinespun\\nfinesse\\nfinessed\\nfinesses\\nfinessing\\nfinest\\nfinfish\\nfinfishes\\nfinfoot\\nfinfoots\\nfinger\\nfingered\\nfingerer\\nfingerers\\nfingering\\nfingerling\\nfingerlings\\nfingernail\\nfingerprint\\nfingerprints\\nfingers\\nfingertip\\nfingertips\\nfinial\\nfinialed\\nfinials\\nfinical\\nfinickier\\nfinickiest\\nfinickin\\nfinicky\\nfinikin\\nfiniking\\nfining\\nfinings\\nfinis\\nfinises\\nfinish\\nfinished\\nfinisher\\nfinishers\\nfinishes\\nfinishing\\nfinite\\nfinitely\\nfinites\\nfinitude\\nfinitudes\\nfink\\nfinked\\nfinking\\nfinks\\nfinky\\nfinless\\nfinlike\\nfinmark\\nfinmarks\\nfinned\\nfinnickier\\nfinnickiest\\nfinnicky\\nfinnier\\nfinniest\\nfinning\\nfinnmark\\nfinnmarks\\nfinny\\nfinochio\\nfinochios\\nfins\\nfiord\\nfiords\\nfipple\\nfipples\\nfique\\nfiques\\nfir\\nfire\\nfirearm\\nfirearms\\nfireball\\nfireballs\\nfirebird\\nfirebirds\\nfireboat\\nfireboats\\nfirebomb\\nfirebombed\\nfirebombing\\nfirebombs\\nfirebox\\nfireboxes\\nfirebrat\\nfirebrats\\nfirebreak\\nfirebreaks\\nfirebug\\nfirebugs\\nfireclay\\nfireclays\\nfirecracker\\nfirecrackers\\nfired\\nfiredamp\\nfiredamps\\nfiredog\\nfiredogs\\nfirefang\\nfirefanged\\nfirefanging\\nfirefangs\\nfireflies\\nfirefly\\nfirehall\\nfirehalls\\nfireless\\nfirelock\\nfirelocks\\nfireman\\nfiremen\\nfirepan\\nfirepans\\nfirepink\\nfirepinks\\nfireplace\\nfireplaces\\nfireplug\\nfireplugs\\nfireproof\\nfireproofed\\nfireproofing\\nfireproofs\\nfirer\\nfireroom\\nfirerooms\\nfirers\\nfires\\nfireside\\nfiresides\\nfiretrap\\nfiretraps\\nfireweed\\nfireweeds\\nfirewood\\nfirewoods\\nfirework\\nfireworks\\nfireworm\\nfireworms\\nfiring\\nfirings\\nfirkin\\nfirkins\\nfirm\\nfirmament\\nfirmaments\\nfirman\\nfirmans\\nfirmed\\nfirmer\\nfirmers\\nfirmest\\nfirming\\nfirmly\\nfirmness\\nfirmnesses\\nfirms\\nfirn\\nfirns\\nfirry\\nfirs\\nfirst\\nfirstly\\nfirsts\\nfirth\\nfirths\\nfisc\\nfiscal\\nfiscally\\nfiscals\\nfiscs\\nfish\\nfishable\\nfishboat\\nfishboats\\nfishbone\\nfishbones\\nfishbowl\\nfishbowls\\nfished\\nfisher\\nfisheries\\nfisherman\\nfishermen\\nfishers\\nfishery\\nfishes\\nfisheye\\nfisheyes\\nfishgig\\nfishgigs\\nfishhook\\nfishhooks\\nfishier\\nfishiest\\nfishily\\nfishing\\nfishings\\nfishless\\nfishlike\\nfishline\\nfishlines\\nfishmeal\\nfishmeals\\nfishnet\\nfishnets\\nfishpole\\nfishpoles\\nfishpond\\nfishponds\\nfishtail\\nfishtailed\\nfishtailing\\nfishtails\\nfishway\\nfishways\\nfishwife\\nfishwives\\nfishy\\nfissate\\nfissile\\nfission\\nfissionable\\nfissional\\nfissioned\\nfissioning\\nfissions\\nfissiped\\nfissipeds\\nfissure\\nfissured\\nfissures\\nfissuring\\nfist\\nfisted\\nfistful\\nfistfuls\\nfistic\\nfisticuffs\\nfisting\\nfistnote\\nfistnotes\\nfists\\nfistula\\nfistulae\\nfistular\\nfistulas\\nfisty\\nfit\\nfitch\\nfitchee\\nfitches\\nfitchet\\nfitchets\\nfitchew\\nfitchews\\nfitchy\\nfitful\\nfitfully\\nfitly\\nfitment\\nfitments\\nfitness\\nfitnesses\\nfits\\nfittable\\nfitted\\nfitter\\nfitters\\nfittest\\nfitting\\nfittings\\nfive\\nfivefold\\nfivepins\\nfiver\\nfivers\\nfives\\nfix\\nfixable\\nfixate\\nfixated\\nfixates\\nfixatif\\nfixatifs\\nfixating\\nfixation\\nfixations\\nfixative\\nfixatives\\nfixed\\nfixedly\\nfixedness\\nfixednesses\\nfixer\\nfixers\\nfixes\\nfixing\\nfixings\\nfixities\\nfixity\\nfixt\\nfixture\\nfixtures\\nfixure\\nfixures\\nfiz\\nfizgig\\nfizgigs\\nfizz\\nfizzed\\nfizzer\\nfizzers\\nfizzes\\nfizzier\\nfizziest\\nfizzing\\nfizzle\\nfizzled\\nfizzles\\nfizzling\\nfizzy\\nfjeld\\nfjelds\\nfjord\\nfjords\\nflab\\nflabbergast\\nflabbergasted\\nflabbergasting\\nflabbergasts\\nflabbier\\nflabbiest\\nflabbily\\nflabbiness\\nflabbinesses\\nflabby\\nflabella\\nflabs\\nflaccid\\nflack\\nflacks\\nflacon\\nflacons\\nflag\\nflagella\\nflagellate\\nflagellated\\nflagellates\\nflagellating\\nflagellation\\nflagellations\\nflagged\\nflagger\\nflaggers\\nflaggier\\nflaggiest\\nflagging\\nflaggings\\nflaggy\\nflagless\\nflagman\\nflagmen\\nflagon\\nflagons\\nflagpole\\nflagpoles\\nflagrant\\nflagrantly\\nflags\\nflagship\\nflagships\\nflagstaff\\nflagstaffs\\nflagstone\\nflagstones\\nflail\\nflailed\\nflailing\\nflails\\nflair\\nflairs\\nflak\\nflake\\nflaked\\nflaker\\nflakers\\nflakes\\nflakier\\nflakiest\\nflakily\\nflaking\\nflaky\\nflam\\nflambe\\nflambeau\\nflambeaus\\nflambeaux\\nflambee\\nflambeed\\nflambeing\\nflambes\\nflamboyance\\nflamboyances\\nflamboyant\\nflamboyantly\\nflame\\nflamed\\nflamen\\nflamenco\\nflamencos\\nflamens\\nflameout\\nflameouts\\nflamer\\nflamers\\nflames\\nflamier\\nflamiest\\nflamines\\nflaming\\nflamingo\\nflamingoes\\nflamingos\\nflammable\\nflammed\\nflamming\\nflams\\nflamy\\nflan\\nflancard\\nflancards\\nflanerie\\nflaneries\\nflanes\\nflaneur\\nflaneurs\\nflange\\nflanged\\nflanger\\nflangers\\nflanges\\nflanging\\nflank\\nflanked\\nflanker\\nflankers\\nflanking\\nflanks\\nflannel\\nflanneled\\nflanneling\\nflannelled\\nflannelling\\nflannels\\nflans\\nflap\\nflapjack\\nflapjacks\\nflapless\\nflapped\\nflapper\\nflappers\\nflappier\\nflappiest\\nflapping\\nflappy\\nflaps\\nflare\\nflared\\nflares\\nflaring\\nflash\\nflashed\\nflasher\\nflashers\\nflashes\\nflashgun\\nflashguns\\nflashier\\nflashiest\\nflashily\\nflashiness\\nflashinesses\\nflashing\\nflashings\\nflashlight\\nflashlights\\nflashy\\nflask\\nflasket\\nflaskets\\nflasks\\nflat\\nflatbed\\nflatbeds\\nflatboat\\nflatboats\\nflatcap\\nflatcaps\\nflatcar\\nflatcars\\nflatfeet\\nflatfish\\nflatfishes\\nflatfoot\\nflatfooted\\nflatfooting\\nflatfoots\\nflathead\\nflatheads\\nflatiron\\nflatirons\\nflatland\\nflatlands\\nflatlet\\nflatlets\\nflatling\\nflatly\\nflatness\\nflatnesses\\nflats\\nflatted\\nflatten\\nflattened\\nflattening\\nflattens\\nflatter\\nflattered\\nflatterer\\nflatteries\\nflattering\\nflatters\\nflattery\\nflattest\\nflatting\\nflattish\\nflattop\\nflattops\\nflatulence\\nflatulences\\nflatulent\\nflatus\\nflatuses\\nflatware\\nflatwares\\nflatwash\\nflatwashes\\nflatways\\nflatwise\\nflatwork\\nflatworks\\nflatworm\\nflatworms\\nflaunt\\nflaunted\\nflaunter\\nflaunters\\nflauntier\\nflauntiest\\nflaunting\\nflaunts\\nflaunty\\nflautist\\nflautists\\nflavin\\nflavine\\nflavines\\nflavins\\nflavone\\nflavones\\nflavonol\\nflavonols\\nflavor\\nflavored\\nflavorer\\nflavorers\\nflavorful\\nflavoring\\nflavorings\\nflavors\\nflavorsome\\nflavory\\nflavour\\nflavoured\\nflavouring\\nflavours\\nflavoury\\nflaw\\nflawed\\nflawier\\nflawiest\\nflawing\\nflawless\\nflaws\\nflawy\\nflax\\nflaxen\\nflaxes\\nflaxier\\nflaxiest\\nflaxseed\\nflaxseeds\\nflaxy\\nflay\\nflayed\\nflayer\\nflayers\\nflaying\\nflays\\nflea\\nfleabag\\nfleabags\\nfleabane\\nfleabanes\\nfleabite\\nfleabites\\nfleam\\nfleams\\nfleas\\nfleawort\\nfleaworts\\nfleche\\nfleches\\nfleck\\nflecked\\nflecking\\nflecks\\nflecky\\nflection\\nflections\\nfled\\nfledge\\nfledged\\nfledges\\nfledgier\\nfledgiest\\nfledging\\nfledgling\\nfledglings\\nfledgy\\nflee\\nfleece\\nfleeced\\nfleecer\\nfleecers\\nfleeces\\nfleech\\nfleeched\\nfleeches\\nfleeching\\nfleecier\\nfleeciest\\nfleecily\\nfleecing\\nfleecy\\nfleeing\\nfleer\\nfleered\\nfleering\\nfleers\\nflees\\nfleet\\nfleeted\\nfleeter\\nfleetest\\nfleeting\\nfleetness\\nfleetnesses\\nfleets\\nfleishig\\nflemish\\nflemished\\nflemishes\\nflemishing\\nflench\\nflenched\\nflenches\\nflenching\\nflense\\nflensed\\nflenser\\nflensers\\nflenses\\nflensing\\nflesh\\nfleshed\\nflesher\\nfleshers\\nfleshes\\nfleshier\\nfleshiest\\nfleshing\\nfleshings\\nfleshlier\\nfleshliest\\nfleshly\\nfleshpot\\nfleshpots\\nfleshy\\nfletch\\nfletched\\nfletcher\\nfletchers\\nfletches\\nfletching\\nfleury\\nflew\\nflews\\nflex\\nflexed\\nflexes\\nflexibilities\\nflexibility\\nflexible\\nflexibly\\nflexile\\nflexing\\nflexion\\nflexions\\nflexor\\nflexors\\nflexuose\\nflexuous\\nflexural\\nflexure\\nflexures\\nfley\\nfleyed\\nfleying\\nfleys\\nflic\\nflichter\\nflichtered\\nflichtering\\nflichters\\nflick\\nflicked\\nflicker\\nflickered\\nflickering\\nflickers\\nflickery\\nflicking\\nflicks\\nflics\\nflied\\nflier\\nfliers\\nflies\\nfliest\\nflight\\nflighted\\nflightier\\nflightiest\\nflighting\\nflightless\\nflights\\nflighty\\nflimflam\\nflimflammed\\nflimflamming\\nflimflams\\nflimsier\\nflimsies\\nflimsiest\\nflimsily\\nflimsiness\\nflimsinesses\\nflimsy\\nflinch\\nflinched\\nflincher\\nflinchers\\nflinches\\nflinching\\nflinder\\nflinders\\nfling\\nflinger\\nflingers\\nflinging\\nflings\\nflint\\nflinted\\nflintier\\nflintiest\\nflintily\\nflinting\\nflints\\nflinty\\nflip\\nflippancies\\nflippancy\\nflippant\\nflipped\\nflipper\\nflippers\\nflippest\\nflipping\\nflips\\nflirt\\nflirtation\\nflirtations\\nflirtatious\\nflirted\\nflirter\\nflirters\\nflirtier\\nflirtiest\\nflirting\\nflirts\\nflirty\\nflit\\nflitch\\nflitched\\nflitches\\nflitching\\nflite\\nflited\\nflites\\nfliting\\nflits\\nflitted\\nflitter\\nflittered\\nflittering\\nflitters\\nflitting\\nflivver\\nflivvers\\nfloat\\nfloatage\\nfloatages\\nfloated\\nfloater\\nfloaters\\nfloatier\\nfloatiest\\nfloating\\nfloats\\nfloaty\\nfloc\\nflocced\\nflocci\\nfloccing\\nfloccose\\nfloccule\\nfloccules\\nflocculi\\nfloccus\\nflock\\nflocked\\nflockier\\nflockiest\\nflocking\\nflockings\\nflocks\\nflocky\\nflocs\\nfloe\\nfloes\\nflog\\nflogged\\nflogger\\nfloggers\\nflogging\\nfloggings\\nflogs\\nflong\\nflongs\\nflood\\nflooded\\nflooder\\nflooders\\nflooding\\nfloodlit\\nfloods\\nfloodwater\\nfloodwaters\\nfloodway\\nfloodways\\nflooey\\nfloor\\nfloorage\\nfloorages\\nfloorboard\\nfloorboards\\nfloored\\nfloorer\\nfloorers\\nflooring\\nfloorings\\nfloors\\nfloosies\\nfloosy\\nfloozie\\nfloozies\\nfloozy\\nflop\\nflopover\\nflopovers\\nflopped\\nflopper\\nfloppers\\nfloppier\\nfloppiest\\nfloppily\\nflopping\\nfloppy\\nflops\\nflora\\nflorae\\nfloral\\nflorally\\nfloras\\nflorence\\nflorences\\nfloret\\nflorets\\nflorid\\nfloridly\\nflorigen\\nflorigens\\nflorin\\nflorins\\nflorist\\nflorists\\nfloruit\\nfloruits\\nfloss\\nflosses\\nflossie\\nflossier\\nflossies\\nflossiest\\nflossy\\nflota\\nflotage\\nflotages\\nflotas\\nflotation\\nflotations\\nflotilla\\nflotillas\\nflotsam\\nflotsams\\nflounce\\nflounced\\nflounces\\nflouncier\\nflounciest\\nflouncing\\nflouncy\\nflounder\\nfloundered\\nfloundering\\nflounders\\nflour\\nfloured\\nflouring\\nflourish\\nflourished\\nflourishes\\nflourishing\\nflours\\nfloury\\nflout\\nflouted\\nflouter\\nflouters\\nflouting\\nflouts\\nflow\\nflowage\\nflowages\\nflowchart\\nflowcharts\\nflowed\\nflower\\nflowered\\nflowerer\\nflowerers\\nfloweret\\nflowerets\\nflowerier\\nfloweriest\\nfloweriness\\nflowerinesses\\nflowering\\nflowerless\\nflowerpot\\nflowerpots\\nflowers\\nflowery\\nflowing\\nflown\\nflows\\nflowsheet\\nflowsheets\\nflu\\nflub\\nflubbed\\nflubbing\\nflubdub\\nflubdubs\\nflubs\\nfluctuate\\nfluctuated\\nfluctuates\\nfluctuating\\nfluctuation\\nfluctuations\\nflue\\nflued\\nfluencies\\nfluency\\nfluent\\nfluently\\nflueric\\nfluerics\\nflues\\nfluff\\nfluffed\\nfluffier\\nfluffiest\\nfluffily\\nfluffing\\nfluffs\\nfluffy\\nfluid\\nfluidal\\nfluidic\\nfluidics\\nfluidise\\nfluidised\\nfluidises\\nfluidising\\nfluidities\\nfluidity\\nfluidize\\nfluidized\\nfluidizes\\nfluidizing\\nfluidly\\nfluidounce\\nfluidounces\\nfluidram\\nfluidrams\\nfluids\\nfluke\\nfluked\\nflukes\\nflukey\\nflukier\\nflukiest\\nfluking\\nfluky\\nflume\\nflumed\\nflumes\\nfluming\\nflummeries\\nflummery\\nflummox\\nflummoxed\\nflummoxes\\nflummoxing\\nflump\\nflumped\\nflumping\\nflumps\\nflung\\nflunk\\nflunked\\nflunker\\nflunkers\\nflunkey\\nflunkeys\\nflunkies\\nflunking\\nflunks\\nflunky\\nfluor\\nfluorene\\nfluorenes\\nfluoresce\\nfluoresced\\nfluorescence\\nfluorescences\\nfluorescent\\nfluoresces\\nfluorescing\\nfluoric\\nfluorid\\nfluoridate\\nfluoridated\\nfluoridates\\nfluoridating\\nfluoridation\\nfluoridations\\nfluoride\\nfluorides\\nfluorids\\nfluorin\\nfluorine\\nfluorines\\nfluorins\\nfluorite\\nfluorites\\nfluorocarbon\\nfluorocarbons\\nfluoroscope\\nfluoroscopes\\nfluoroscopic\\nfluoroscopies\\nfluoroscopist\\nfluoroscopists\\nfluoroscopy\\nfluors\\nflurried\\nflurries\\nflurry\\nflurrying\\nflus\\nflush\\nflushed\\nflusher\\nflushers\\nflushes\\nflushest\\nflushing\\nfluster\\nflustered\\nflustering\\nflusters\\nflute\\nfluted\\nfluter\\nfluters\\nflutes\\nflutier\\nflutiest\\nfluting\\nflutings\\nflutist\\nflutists\\nflutter\\nfluttered\\nfluttering\\nflutters\\nfluttery\\nfluty\\nfluvial\\nflux\\nfluxed\\nfluxes\\nfluxing\\nfluxion\\nfluxions\\nfluyt\\nfluyts\\nfly\\nflyable\\nflyaway\\nflyaways\\nflybelt\\nflybelts\\nflyblew\\nflyblow\\nflyblowing\\nflyblown\\nflyblows\\nflyboat\\nflyboats\\nflyby\\nflybys\\nflyer\\nflyers\\nflying\\nflyings\\nflyleaf\\nflyleaves\\nflyman\\nflymen\\nflyover\\nflyovers\\nflypaper\\nflypapers\\nflypast\\nflypasts\\nflysch\\nflysches\\nflyspeck\\nflyspecked\\nflyspecking\\nflyspecks\\nflyte\\nflyted\\nflytes\\nflytier\\nflytiers\\nflyting\\nflytings\\nflytrap\\nflytraps\\nflyway\\nflyways\\nflywheel\\nflywheels\\nfoal\\nfoaled\\nfoaling\\nfoals\\nfoam\\nfoamed\\nfoamer\\nfoamers\\nfoamier\\nfoamiest\\nfoamily\\nfoaming\\nfoamless\\nfoamlike\\nfoams\\nfoamy\\nfob\\nfobbed\\nfobbing\\nfobs\\nfocal\\nfocalise\\nfocalised\\nfocalises\\nfocalising\\nfocalize\\nfocalized\\nfocalizes\\nfocalizing\\nfocally\\nfoci\\nfocus\\nfocused\\nfocuser\\nfocusers\\nfocuses\\nfocusing\\nfocussed\\nfocusses\\nfocussing\\nfodder\\nfoddered\\nfoddering\\nfodders\\nfodgel\\nfoe\\nfoehn\\nfoehns\\nfoeman\\nfoemen\\nfoes\\nfoetal\\nfoetid\\nfoetor\\nfoetors\\nfoetus\\nfoetuses\\nfog\\nfogbound\\nfogbow\\nfogbows\\nfogdog\\nfogdogs\\nfogey\\nfogeys\\nfogfruit\\nfogfruits\\nfoggage\\nfoggages\\nfogged\\nfogger\\nfoggers\\nfoggier\\nfoggiest\\nfoggily\\nfogging\\nfoggy\\nfoghorn\\nfoghorns\\nfogie\\nfogies\\nfogless\\nfogs\\nfogy\\nfogyish\\nfogyism\\nfogyisms\\nfoh\\nfohn\\nfohns\\nfoible\\nfoibles\\nfoil\\nfoilable\\nfoiled\\nfoiling\\nfoils\\nfoilsman\\nfoilsmen\\nfoin\\nfoined\\nfoining\\nfoins\\nfoison\\nfoisons\\nfoist\\nfoisted\\nfoisting\\nfoists\\nfolacin\\nfolacins\\nfolate\\nfolates\\nfold\\nfoldable\\nfoldaway\\nfoldboat\\nfoldboats\\nfolded\\nfolder\\nfolderol\\nfolderols\\nfolders\\nfolding\\nfoldout\\nfoldouts\\nfolds\\nfolia\\nfoliage\\nfoliaged\\nfoliages\\nfoliar\\nfoliate\\nfoliated\\nfoliates\\nfoliating\\nfolic\\nfolio\\nfolioed\\nfolioing\\nfolios\\nfoliose\\nfolious\\nfolium\\nfoliums\\nfolk\\nfolkish\\nfolklike\\nfolklore\\nfolklores\\nfolklorist\\nfolklorists\\nfolkmoot\\nfolkmoots\\nfolkmot\\nfolkmote\\nfolkmotes\\nfolkmots\\nfolks\\nfolksier\\nfolksiest\\nfolksily\\nfolksy\\nfolktale\\nfolktales\\nfolkway\\nfolkways\\nfolles\\nfollicle\\nfollicles\\nfollies\\nfollis\\nfollow\\nfollowed\\nfollower\\nfollowers\\nfollowing\\nfollowings\\nfollows\\nfolly\\nfoment\\nfomentation\\nfomentations\\nfomented\\nfomenter\\nfomenters\\nfomenting\\nfoments\\nfon\\nfond\\nfondant\\nfondants\\nfonded\\nfonder\\nfondest\\nfonding\\nfondle\\nfondled\\nfondler\\nfondlers\\nfondles\\nfondling\\nfondlings\\nfondly\\nfondness\\nfondnesses\\nfonds\\nfondu\\nfondue\\nfondues\\nfondus\\nfons\\nfont\\nfontal\\nfontanel\\nfontanels\\nfontina\\nfontinas\\nfonts\\nfood\\nfoodless\\nfoods\\nfoofaraw\\nfoofaraws\\nfool\\nfooled\\nfooleries\\nfoolery\\nfoolfish\\nfoolfishes\\nfoolhardiness\\nfoolhardinesses\\nfoolhardy\\nfooling\\nfoolish\\nfoolisher\\nfoolishest\\nfoolishness\\nfoolishnesses\\nfoolproof\\nfools\\nfoolscap\\nfoolscaps\\nfoot\\nfootage\\nfootages\\nfootball\\nfootballs\\nfootbath\\nfootbaths\\nfootboy\\nfootboys\\nfootbridge\\nfootbridges\\nfooted\\nfooter\\nfooters\\nfootfall\\nfootfalls\\nfootgear\\nfootgears\\nfoothill\\nfoothills\\nfoothold\\nfootholds\\nfootier\\nfootiest\\nfooting\\nfootings\\nfootle\\nfootled\\nfootler\\nfootlers\\nfootles\\nfootless\\nfootlight\\nfootlights\\nfootlike\\nfootling\\nfootlocker\\nfootlockers\\nfootloose\\nfootman\\nfootmark\\nfootmarks\\nfootmen\\nfootnote\\nfootnoted\\nfootnotes\\nfootnoting\\nfootpace\\nfootpaces\\nfootpad\\nfootpads\\nfootpath\\nfootpaths\\nfootprint\\nfootprints\\nfootrace\\nfootraces\\nfootrest\\nfootrests\\nfootrope\\nfootropes\\nfoots\\nfootsie\\nfootsies\\nfootslog\\nfootslogged\\nfootslogging\\nfootslogs\\nfootsore\\nfootstep\\nfootsteps\\nfootstool\\nfootstools\\nfootwall\\nfootwalls\\nfootway\\nfootways\\nfootwear\\nfootwears\\nfootwork\\nfootworks\\nfootworn\\nfooty\\nfoozle\\nfoozled\\nfoozler\\nfoozlers\\nfoozles\\nfoozling\\nfop\\nfopped\\nfopperies\\nfoppery\\nfopping\\nfoppish\\nfops\\nfor\\nfora\\nforage\\nforaged\\nforager\\nforagers\\nforages\\nforaging\\nforam\\nforamen\\nforamens\\nforamina\\nforams\\nforay\\nforayed\\nforayer\\nforayers\\nforaying\\nforays\\nforb\\nforbad\\nforbade\\nforbear\\nforbearance\\nforbearances\\nforbearing\\nforbears\\nforbid\\nforbidal\\nforbidals\\nforbidden\\nforbidding\\nforbids\\nforbode\\nforboded\\nforbodes\\nforboding\\nforbore\\nforborne\\nforbs\\nforby\\nforbye\\nforce\\nforced\\nforcedly\\nforceful\\nforcefully\\nforceps\\nforcer\\nforcers\\nforces\\nforcible\\nforcibly\\nforcing\\nforcipes\\nford\\nfordable\\nforded\\nfordid\\nfording\\nfordless\\nfordo\\nfordoes\\nfordoing\\nfordone\\nfords\\nfore\\nforearm\\nforearmed\\nforearming\\nforearms\\nforebay\\nforebays\\nforebear\\nforebears\\nforebode\\nforeboded\\nforebodes\\nforebodies\\nforeboding\\nforebodings\\nforebody\\nforeboom\\nforebooms\\nforeby\\nforebye\\nforecast\\nforecasted\\nforecaster\\nforecasters\\nforecasting\\nforecastle\\nforecastles\\nforecasts\\nforeclose\\nforeclosed\\nforecloses\\nforeclosing\\nforeclosure\\nforeclosures\\nforedate\\nforedated\\nforedates\\nforedating\\nforedeck\\nforedecks\\nforedid\\nforedo\\nforedoes\\nforedoing\\nforedone\\nforedoom\\nforedoomed\\nforedooming\\nforedooms\\nforeface\\nforefaces\\nforefather\\nforefathers\\nforefeel\\nforefeeling\\nforefeels\\nforefeet\\nforefelt\\nforefend\\nforefended\\nforefending\\nforefends\\nforefinger\\nforefingers\\nforefoot\\nforefront\\nforefronts\\nforegather\\nforegathered\\nforegathering\\nforegathers\\nforego\\nforegoer\\nforegoers\\nforegoes\\nforegoing\\nforegone\\nforeground\\nforegrounds\\nforegut\\nforeguts\\nforehand\\nforehands\\nforehead\\nforeheads\\nforehoof\\nforehoofs\\nforehooves\\nforeign\\nforeigner\\nforeigners\\nforeknew\\nforeknow\\nforeknowing\\nforeknowledge\\nforeknowledges\\nforeknown\\nforeknows\\nforeladies\\nforelady\\nforeland\\nforelands\\nforeleg\\nforelegs\\nforelimb\\nforelimbs\\nforelock\\nforelocks\\nforeman\\nforemast\\nforemasts\\nforemen\\nforemilk\\nforemilks\\nforemost\\nforename\\nforenames\\nforenoon\\nforenoons\\nforensic\\nforensics\\nforeordain\\nforeordained\\nforeordaining\\nforeordains\\nforepart\\nforeparts\\nforepast\\nforepaw\\nforepaws\\nforepeak\\nforepeaks\\nforeplay\\nforeplays\\nforequarter\\nforequarters\\nforeran\\nforerank\\nforeranks\\nforerun\\nforerunner\\nforerunners\\nforerunning\\nforeruns\\nfores\\nforesaid\\nforesail\\nforesails\\nforesaw\\nforesee\\nforeseeable\\nforeseeing\\nforeseen\\nforeseer\\nforeseers\\nforesees\\nforeshadow\\nforeshadowed\\nforeshadowing\\nforeshadows\\nforeshow\\nforeshowed\\nforeshowing\\nforeshown\\nforeshows\\nforeside\\nforesides\\nforesight\\nforesighted\\nforesightedness\\nforesightednesses\\nforesights\\nforeskin\\nforeskins\\nforest\\nforestal\\nforestall\\nforestalled\\nforestalling\\nforestalls\\nforestay\\nforestays\\nforested\\nforester\\nforesters\\nforesting\\nforestland\\nforestlands\\nforestries\\nforestry\\nforests\\nforeswear\\nforesweared\\nforeswearing\\nforeswears\\nforetaste\\nforetasted\\nforetastes\\nforetasting\\nforetell\\nforetelling\\nforetells\\nforethought\\nforethoughts\\nforetime\\nforetimes\\nforetold\\nforetop\\nforetops\\nforever\\nforevermore\\nforevers\\nforewarn\\nforewarned\\nforewarning\\nforewarns\\nforewent\\nforewing\\nforewings\\nforeword\\nforewords\\nforeworn\\nforeyard\\nforeyards\\nforfeit\\nforfeited\\nforfeiting\\nforfeits\\nforfeiture\\nforfeitures\\nforfend\\nforfended\\nforfending\\nforfends\\nforgat\\nforgather\\nforgathered\\nforgathering\\nforgathers\\nforgave\\nforge\\nforged\\nforger\\nforgeries\\nforgers\\nforgery\\nforges\\nforget\\nforgetful\\nforgetfully\\nforgets\\nforgetting\\nforging\\nforgings\\nforgivable\\nforgive\\nforgiven\\nforgiveness\\nforgivenesses\\nforgiver\\nforgivers\\nforgives\\nforgiving\\nforgo\\nforgoer\\nforgoers\\nforgoes\\nforgoing\\nforgone\\nforgot\\nforgotten\\nforint\\nforints\\nforjudge\\nforjudged\\nforjudges\\nforjudging\\nfork\\nforked\\nforkedly\\nforker\\nforkers\\nforkful\\nforkfuls\\nforkier\\nforkiest\\nforking\\nforkless\\nforklift\\nforklifts\\nforklike\\nforks\\nforksful\\nforky\\nforlorn\\nforlorner\\nforlornest\\nform\\nformable\\nformal\\nformaldehyde\\nformaldehydes\\nformalin\\nformalins\\nformalities\\nformality\\nformalize\\nformalized\\nformalizes\\nformalizing\\nformally\\nformals\\nformant\\nformants\\nformat\\nformate\\nformates\\nformation\\nformations\\nformative\\nformats\\nformatted\\nformatting\\nforme\\nformed\\nformee\\nformer\\nformerly\\nformers\\nformes\\nformful\\nformic\\nformidable\\nformidably\\nforming\\nformless\\nformol\\nformols\\nforms\\nformula\\nformulae\\nformulas\\nformulate\\nformulated\\nformulates\\nformulating\\nformulation\\nformulations\\nformyl\\nformyls\\nfornical\\nfornicate\\nfornicated\\nfornicates\\nfornicating\\nfornication\\nfornicator\\nfornicators\\nfornices\\nfornix\\nforrader\\nforrit\\nforsake\\nforsaken\\nforsaker\\nforsakers\\nforsakes\\nforsaking\\nforsook\\nforsooth\\nforspent\\nforswear\\nforswearing\\nforswears\\nforswore\\nforsworn\\nforsythia\\nforsythias\\nfort\\nforte\\nfortes\\nforth\\nforthcoming\\nforthright\\nforthrightness\\nforthrightnesses\\nforthwith\\nforties\\nfortieth\\nfortieths\\nfortification\\nfortifications\\nfortified\\nfortifies\\nfortify\\nfortifying\\nfortis\\nfortitude\\nfortitudes\\nfortnight\\nfortnightly\\nfortnights\\nfortress\\nfortressed\\nfortresses\\nfortressing\\nforts\\nfortuities\\nfortuitous\\nfortuity\\nfortunate\\nfortunately\\nfortune\\nfortuned\\nfortunes\\nfortuning\\nforty\\nforum\\nforums\\nforward\\nforwarded\\nforwarder\\nforwardest\\nforwarding\\nforwardness\\nforwardnesses\\nforwards\\nforwent\\nforwhy\\nforworn\\nforzando\\nforzandos\\nfoss\\nfossa\\nfossae\\nfossate\\nfosse\\nfosses\\nfossette\\nfossettes\\nfossick\\nfossicked\\nfossicking\\nfossicks\\nfossil\\nfossilize\\nfossilized\\nfossilizes\\nfossilizing\\nfossils\\nfoster\\nfostered\\nfosterer\\nfosterers\\nfostering\\nfosters\\nfou\\nfought\\nfoughten\\nfoul\\nfoulard\\nfoulards\\nfouled\\nfouler\\nfoulest\\nfouling\\nfoulings\\nfoully\\nfoulmouthed\\nfoulness\\nfoulnesses\\nfouls\\nfound\\nfoundation\\nfoundational\\nfoundations\\nfounded\\nfounder\\nfoundered\\nfoundering\\nfounders\\nfounding\\nfoundling\\nfoundlings\\nfoundries\\nfoundry\\nfounds\\nfount\\nfountain\\nfountained\\nfountaining\\nfountains\\nfounts\\nfour\\nfourchee\\nfourfold\\nfourgon\\nfourgons\\nfours\\nfourscore\\nfoursome\\nfoursomes\\nfourteen\\nfourteens\\nfourteenth\\nfourteenths\\nfourth\\nfourthly\\nfourths\\nfovea\\nfoveae\\nfoveal\\nfoveate\\nfoveated\\nfoveola\\nfoveolae\\nfoveolar\\nfoveolas\\nfoveole\\nfoveoles\\nfoveolet\\nfoveolets\\nfowl\\nfowled\\nfowler\\nfowlers\\nfowling\\nfowlings\\nfowlpox\\nfowlpoxes\\nfowls\\nfox\\nfoxed\\nfoxes\\nfoxfire\\nfoxfires\\nfoxfish\\nfoxfishes\\nfoxglove\\nfoxgloves\\nfoxhole\\nfoxholes\\nfoxhound\\nfoxhounds\\nfoxier\\nfoxiest\\nfoxily\\nfoxiness\\nfoxinesses\\nfoxing\\nfoxings\\nfoxlike\\nfoxskin\\nfoxskins\\nfoxtail\\nfoxtails\\nfoxy\\nfoy\\nfoyer\\nfoyers\\nfoys\\nfozier\\nfoziest\\nfoziness\\nfozinesses\\nfozy\\nfracas\\nfracases\\nfracted\\nfraction\\nfractional\\nfractionally\\nfractionated\\nfractioned\\nfractioning\\nfractions\\nfractur\\nfracture\\nfractured\\nfractures\\nfracturing\\nfracturs\\nfrae\\nfraena\\nfraenum\\nfraenums\\nfrag\\nfragged\\nfragging\\nfraggings\\nfragile\\nfragilities\\nfragility\\nfragment\\nfragmentary\\nfragmentation\\nfragmentations\\nfragmented\\nfragmenting\\nfragments\\nfragrant\\nfragrantly\\nfrags\\nfrail\\nfrailer\\nfrailest\\nfrailly\\nfrails\\nfrailties\\nfrailty\\nfraise\\nfraises\\nfraktur\\nfrakturs\\nframable\\nframe\\nframed\\nframer\\nframers\\nframes\\nframework\\nframeworks\\nframing\\nfranc\\nfranchise\\nfranchisee\\nfranchisees\\nfranchises\\nfrancium\\nfranciums\\nfrancs\\nfrangibilities\\nfrangibility\\nfrangible\\nfrank\\nfranked\\nfranker\\nfrankers\\nfrankest\\nfrankfort\\nfrankforter\\nfrankforters\\nfrankforts\\nfrankfurt\\nfrankfurter\\nfrankfurters\\nfrankfurts\\nfrankincense\\nfrankincenses\\nfranking\\nfranklin\\nfranklins\\nfrankly\\nfrankness\\nfranknesses\\nfranks\\nfrantic\\nfrantically\\nfranticly\\nfrap\\nfrappe\\nfrapped\\nfrappes\\nfrapping\\nfraps\\nfrat\\nfrater\\nfraternal\\nfraternally\\nfraternities\\nfraternity\\nfraternization\\nfraternizations\\nfraternize\\nfraternized\\nfraternizes\\nfraternizing\\nfraters\\nfratricidal\\nfratricide\\nfratricides\\nfrats\\nfraud\\nfrauds\\nfraudulent\\nfraudulently\\nfraught\\nfraughted\\nfraughting\\nfraughts\\nfraulein\\nfrauleins\\nfray\\nfrayed\\nfraying\\nfrayings\\nfrays\\nfrazzle\\nfrazzled\\nfrazzles\\nfrazzling\\nfreak\\nfreaked\\nfreakier\\nfreakiest\\nfreakily\\nfreaking\\nfreakish\\nfreakout\\nfreakouts\\nfreaks\\nfreaky\\nfreckle\\nfreckled\\nfreckles\\nfrecklier\\nfreckliest\\nfreckling\\nfreckly\\nfree\\nfreebee\\nfreebees\\nfreebie\\nfreebies\\nfreeboot\\nfreebooted\\nfreebooter\\nfreebooters\\nfreebooting\\nfreeboots\\nfreeborn\\nfreed\\nfreedman\\nfreedmen\\nfreedom\\nfreedoms\\nfreeform\\nfreehand\\nfreehold\\nfreeholds\\nfreeing\\nfreeload\\nfreeloaded\\nfreeloader\\nfreeloaders\\nfreeloading\\nfreeloads\\nfreely\\nfreeman\\nfreemen\\nfreeness\\nfreenesses\\nfreer\\nfreers\\nfrees\\nfreesia\\nfreesias\\nfreest\\nfreestanding\\nfreeway\\nfreeways\\nfreewill\\nfreeze\\nfreezer\\nfreezers\\nfreezes\\nfreezing\\nfreight\\nfreighted\\nfreighter\\nfreighters\\nfreighting\\nfreights\\nfremd\\nfremitus\\nfremituses\\nfrena\\nfrench\\nfrenched\\nfrenches\\nfrenching\\nfrenetic\\nfrenetically\\nfrenetics\\nfrenula\\nfrenulum\\nfrenum\\nfrenums\\nfrenzied\\nfrenzies\\nfrenzily\\nfrenzy\\nfrenzying\\nfrequencies\\nfrequency\\nfrequent\\nfrequented\\nfrequenter\\nfrequenters\\nfrequentest\\nfrequenting\\nfrequently\\nfrequents\\nfrere\\nfreres\\nfresco\\nfrescoed\\nfrescoer\\nfrescoers\\nfrescoes\\nfrescoing\\nfrescos\\nfresh\\nfreshed\\nfreshen\\nfreshened\\nfreshening\\nfreshens\\nfresher\\nfreshes\\nfreshest\\nfreshet\\nfreshets\\nfreshing\\nfreshly\\nfreshman\\nfreshmen\\nfreshness\\nfreshnesses\\nfreshwater\\nfresnel\\nfresnels\\nfret\\nfretful\\nfretfully\\nfretfulness\\nfretfulnesses\\nfretless\\nfrets\\nfretsaw\\nfretsaws\\nfretsome\\nfretted\\nfrettier\\nfrettiest\\nfretting\\nfretty\\nfretwork\\nfretworks\\nfriable\\nfriar\\nfriaries\\nfriarly\\nfriars\\nfriary\\nfribble\\nfribbled\\nfribbler\\nfribblers\\nfribbles\\nfribbling\\nfricando\\nfricandoes\\nfricassee\\nfricassees\\nfriction\\nfrictional\\nfrictions\\nfridge\\nfridges\\nfried\\nfriend\\nfriended\\nfriending\\nfriendless\\nfriendlier\\nfriendlies\\nfriendliest\\nfriendliness\\nfriendlinesses\\nfriendly\\nfriends\\nfriendship\\nfriendships\\nfrier\\nfriers\\nfries\\nfrieze\\nfriezes\\nfrig\\nfrigate\\nfrigates\\nfrigged\\nfrigging\\nfright\\nfrighted\\nfrighten\\nfrightened\\nfrightening\\nfrightens\\nfrightful\\nfrightfully\\nfrightfulness\\nfrightfulnesses\\nfrighting\\nfrights\\nfrigid\\nfrigidities\\nfrigidity\\nfrigidly\\nfrigs\\nfrijol\\nfrijole\\nfrijoles\\nfrill\\nfrilled\\nfriller\\nfrillers\\nfrillier\\nfrilliest\\nfrilling\\nfrillings\\nfrills\\nfrilly\\nfringe\\nfringed\\nfringes\\nfringier\\nfringiest\\nfringing\\nfringy\\nfripperies\\nfrippery\\nfrise\\nfrises\\nfrisette\\nfrisettes\\nfriseur\\nfriseurs\\nfrisk\\nfrisked\\nfrisker\\nfriskers\\nfrisket\\nfriskets\\nfriskier\\nfriskiest\\nfriskily\\nfriskiness\\nfriskinesses\\nfrisking\\nfrisks\\nfrisky\\nfrisson\\nfrissons\\nfrit\\nfrith\\nfriths\\nfrits\\nfritt\\nfritted\\nfritter\\nfrittered\\nfrittering\\nfritters\\nfritting\\nfritts\\nfrivol\\nfrivoled\\nfrivoler\\nfrivolers\\nfrivoling\\nfrivolities\\nfrivolity\\nfrivolled\\nfrivolling\\nfrivolous\\nfrivolously\\nfrivols\\nfriz\\nfrized\\nfrizer\\nfrizers\\nfrizes\\nfrizette\\nfrizettes\\nfrizing\\nfrizz\\nfrizzed\\nfrizzer\\nfrizzers\\nfrizzes\\nfrizzier\\nfrizziest\\nfrizzily\\nfrizzing\\nfrizzle\\nfrizzled\\nfrizzler\\nfrizzlers\\nfrizzles\\nfrizzlier\\nfrizzliest\\nfrizzling\\nfrizzly\\nfrizzy\\nfro\\nfrock\\nfrocked\\nfrocking\\nfrocks\\nfroe\\nfroes\\nfrog\\nfrogeye\\nfrogeyed\\nfrogeyes\\nfrogfish\\nfrogfishes\\nfrogged\\nfroggier\\nfroggiest\\nfrogging\\nfroggy\\nfroglike\\nfrogman\\nfrogmen\\nfrogs\\nfrolic\\nfrolicked\\nfrolicking\\nfrolicky\\nfrolics\\nfrolicsome\\nfrom\\nfromage\\nfromages\\nfromenties\\nfromenty\\nfrond\\nfronded\\nfrondeur\\nfrondeurs\\nfrondose\\nfronds\\nfrons\\nfront\\nfrontage\\nfrontages\\nfrontal\\nfrontals\\nfronted\\nfronter\\nfrontes\\nfrontier\\nfrontiers\\nfrontiersman\\nfrontiersmen\\nfronting\\nfrontispiece\\nfrontispieces\\nfrontlet\\nfrontlets\\nfronton\\nfrontons\\nfronts\\nfrore\\nfrosh\\nfrost\\nfrostbit\\nfrostbite\\nfrostbites\\nfrostbitten\\nfrosted\\nfrosteds\\nfrostier\\nfrostiest\\nfrostily\\nfrosting\\nfrostings\\nfrosts\\nfrosty\\nfroth\\nfrothed\\nfrothier\\nfrothiest\\nfrothily\\nfrothing\\nfroths\\nfrothy\\nfrottage\\nfrottages\\nfrotteur\\nfrotteurs\\nfroufrou\\nfroufrous\\nfrounce\\nfrounced\\nfrounces\\nfrouncing\\nfrouzier\\nfrouziest\\nfrouzy\\nfrow\\nfroward\\nfrown\\nfrowned\\nfrowner\\nfrowners\\nfrowning\\nfrowns\\nfrows\\nfrowsier\\nfrowsiest\\nfrowstier\\nfrowstiest\\nfrowsty\\nfrowsy\\nfrowzier\\nfrowziest\\nfrowzily\\nfrowzy\\nfroze\\nfrozen\\nfrozenly\\nfructified\\nfructifies\\nfructify\\nfructifying\\nfructose\\nfructoses\\nfrug\\nfrugal\\nfrugalities\\nfrugality\\nfrugally\\nfrugged\\nfrugging\\nfrugs\\nfruit\\nfruitage\\nfruitages\\nfruitcake\\nfruitcakes\\nfruited\\nfruiter\\nfruiters\\nfruitful\\nfruitfuller\\nfruitfullest\\nfruitfulness\\nfruitfulnesses\\nfruitier\\nfruitiest\\nfruiting\\nfruition\\nfruitions\\nfruitless\\nfruitlet\\nfruitlets\\nfruits\\nfruity\\nfrumenties\\nfrumenty\\nfrump\\nfrumpier\\nfrumpiest\\nfrumpily\\nfrumpish\\nfrumps\\nfrumpy\\nfrusta\\nfrustrate\\nfrustrated\\nfrustrates\\nfrustrating\\nfrustratingly\\nfrustration\\nfrustrations\\nfrustule\\nfrustules\\nfrustum\\nfrustums\\nfry\\nfryer\\nfryers\\nfrying\\nfrypan\\nfrypans\\nfub\\nfubbed\\nfubbing\\nfubs\\nfubsier\\nfubsiest\\nfubsy\\nfuchsia\\nfuchsias\\nfuchsin\\nfuchsine\\nfuchsines\\nfuchsins\\nfuci\\nfucoid\\nfucoidal\\nfucoids\\nfucose\\nfucoses\\nfucous\\nfucus\\nfucuses\\nfud\\nfuddle\\nfuddled\\nfuddles\\nfuddling\\nfudge\\nfudged\\nfudges\\nfudging\\nfuds\\nfuehrer\\nfuehrers\\nfuel\\nfueled\\nfueler\\nfuelers\\nfueling\\nfuelled\\nfueller\\nfuellers\\nfuelling\\nfuels\\nfug\\nfugacities\\nfugacity\\nfugal\\nfugally\\nfugato\\nfugatos\\nfugged\\nfuggier\\nfuggiest\\nfugging\\nfuggy\\nfugio\\nfugios\\nfugitive\\nfugitives\\nfugle\\nfugled\\nfugleman\\nfuglemen\\nfugles\\nfugling\\nfugs\\nfugue\\nfugued\\nfugues\\nfuguing\\nfuguist\\nfuguists\\nfuhrer\\nfuhrers\\nfuji\\nfujis\\nfulcra\\nfulcrum\\nfulcrums\\nfulfil\\nfulfill\\nfulfilled\\nfulfilling\\nfulfillment\\nfulfillments\\nfulfills\\nfulfils\\nfulgent\\nfulgid\\nfulham\\nfulhams\\nfull\\nfullam\\nfullams\\nfullback\\nfullbacks\\nfulled\\nfuller\\nfullered\\nfulleries\\nfullering\\nfullers\\nfullery\\nfullest\\nfullface\\nfullfaces\\nfulling\\nfullness\\nfullnesses\\nfulls\\nfully\\nfulmar\\nfulmars\\nfulmine\\nfulmined\\nfulmines\\nfulminic\\nfulmining\\nfulness\\nfulnesses\\nfulsome\\nfulvous\\nfumarase\\nfumarases\\nfumarate\\nfumarates\\nfumaric\\nfumarole\\nfumaroles\\nfumatories\\nfumatory\\nfumble\\nfumbled\\nfumbler\\nfumblers\\nfumbles\\nfumbling\\nfume\\nfumed\\nfumeless\\nfumelike\\nfumer\\nfumers\\nfumes\\nfumet\\nfumets\\nfumette\\nfumettes\\nfumier\\nfumiest\\nfumigant\\nfumigants\\nfumigate\\nfumigated\\nfumigates\\nfumigating\\nfumigation\\nfumigations\\nfuming\\nfumitories\\nfumitory\\nfumuli\\nfumulus\\nfumy\\nfun\\nfunction\\nfunctional\\nfunctionally\\nfunctionaries\\nfunctionary\\nfunctioned\\nfunctioning\\nfunctionless\\nfunctions\\nfunctor\\nfunctors\\nfund\\nfundamental\\nfundamentally\\nfundamentals\\nfunded\\nfundi\\nfundic\\nfunding\\nfunds\\nfundus\\nfuneral\\nfunerals\\nfunerary\\nfunereal\\nfunest\\nfunfair\\nfunfairs\\nfungal\\nfungals\\nfungi\\nfungible\\nfungibles\\nfungic\\nfungicidal\\nfungicide\\nfungicides\\nfungo\\nfungoes\\nfungoid\\nfungoids\\nfungous\\nfungus\\nfunguses\\nfunicle\\nfunicles\\nfuniculi\\nfunk\\nfunked\\nfunker\\nfunkers\\nfunkia\\nfunkias\\nfunkier\\nfunkiest\\nfunking\\nfunks\\nfunky\\nfunned\\nfunnel\\nfunneled\\nfunneling\\nfunnelled\\nfunnelling\\nfunnels\\nfunnier\\nfunnies\\nfunniest\\nfunnily\\nfunning\\nfunny\\nfunnyman\\nfunnymen\\nfuns\\nfur\\nfuran\\nfurane\\nfuranes\\nfuranose\\nfuranoses\\nfurans\\nfurbelow\\nfurbelowed\\nfurbelowing\\nfurbelows\\nfurbish\\nfurbished\\nfurbishes\\nfurbishing\\nfurcate\\nfurcated\\nfurcates\\nfurcating\\nfurcraea\\nfurcraeas\\nfurcula\\nfurculae\\nfurcular\\nfurculum\\nfurfur\\nfurfural\\nfurfurals\\nfurfuran\\nfurfurans\\nfurfures\\nfuribund\\nfuries\\nfurioso\\nfurious\\nfuriously\\nfurl\\nfurlable\\nfurled\\nfurler\\nfurlers\\nfurless\\nfurling\\nfurlong\\nfurlongs\\nfurlough\\nfurloughed\\nfurloughing\\nfurloughs\\nfurls\\nfurmenties\\nfurmenty\\nfurmeties\\nfurmety\\nfurmities\\nfurmity\\nfurnace\\nfurnaced\\nfurnaces\\nfurnacing\\nfurnish\\nfurnished\\nfurnishes\\nfurnishing\\nfurnishings\\nfurniture\\nfurnitures\\nfuror\\nfurore\\nfurores\\nfurors\\nfurred\\nfurrier\\nfurrieries\\nfurriers\\nfurriery\\nfurriest\\nfurrily\\nfurriner\\nfurriners\\nfurring\\nfurrings\\nfurrow\\nfurrowed\\nfurrower\\nfurrowers\\nfurrowing\\nfurrows\\nfurrowy\\nfurry\\nfurs\\nfurther\\nfurthered\\nfurthering\\nfurthermore\\nfurthermost\\nfurthers\\nfurthest\\nfurtive\\nfurtively\\nfurtiveness\\nfurtivenesses\\nfuruncle\\nfuruncles\\nfury\\nfurze\\nfurzes\\nfurzier\\nfurziest\\nfurzy\\nfusain\\nfusains\\nfuscous\\nfuse\\nfused\\nfusee\\nfusees\\nfusel\\nfuselage\\nfuselages\\nfuseless\\nfusels\\nfuses\\nfusible\\nfusibly\\nfusiform\\nfusil\\nfusile\\nfusileer\\nfusileers\\nfusilier\\nfusiliers\\nfusillade\\nfusillades\\nfusils\\nfusing\\nfusion\\nfusions\\nfuss\\nfussbudget\\nfussbudgets\\nfussed\\nfusser\\nfussers\\nfusses\\nfussier\\nfussiest\\nfussily\\nfussiness\\nfussinesses\\nfussing\\nfusspot\\nfusspots\\nfussy\\nfustian\\nfustians\\nfustic\\nfustics\\nfustier\\nfustiest\\nfustily\\nfusty\\nfutharc\\nfutharcs\\nfuthark\\nfutharks\\nfuthorc\\nfuthorcs\\nfuthork\\nfuthorks\\nfutile\\nfutilely\\nfutilities\\nfutility\\nfuttock\\nfuttocks\\nfutural\\nfuture\\nfutures\\nfuturism\\nfuturisms\\nfuturist\\nfuturistic\\nfuturists\\nfuturities\\nfuturity\\nfuze\\nfuzed\\nfuzee\\nfuzees\\nfuzes\\nfuzil\\nfuzils\\nfuzing\\nfuzz\\nfuzzed\\nfuzzes\\nfuzzier\\nfuzziest\\nfuzzily\\nfuzziness\\nfuzzinesses\\nfuzzing\\nfuzzy\\nfyce\\nfyces\\nfyke\\nfykes\\nfylfot\\nfylfots\\nfytte\\nfyttes\\ngab\\ngabardine\\ngabardines\\ngabbard\\ngabbards\\ngabbart\\ngabbarts\\ngabbed\\ngabber\\ngabbers\\ngabbier\\ngabbiest\\ngabbing\\ngabble\\ngabbled\\ngabbler\\ngabblers\\ngabbles\\ngabbling\\ngabbro\\ngabbroic\\ngabbroid\\ngabbros\\ngabby\\ngabelle\\ngabelled\\ngabelles\\ngabfest\\ngabfests\\ngabies\\ngabion\\ngabions\\ngable\\ngabled\\ngables\\ngabling\\ngaboon\\ngaboons\\ngabs\\ngaby\\ngad\\ngadabout\\ngadabouts\\ngadarene\\ngadded\\ngadder\\ngadders\\ngaddi\\ngadding\\ngaddis\\ngadflies\\ngadfly\\ngadget\\ngadgetries\\ngadgetry\\ngadgets\\ngadgety\\ngadi\\ngadid\\ngadids\\ngadis\\ngadoid\\ngadoids\\ngadroon\\ngadroons\\ngads\\ngadwall\\ngadwalls\\ngadzooks\\ngae\\ngaed\\ngaen\\ngaes\\ngaff\\ngaffe\\ngaffed\\ngaffer\\ngaffers\\ngaffes\\ngaffing\\ngaffs\\ngag\\ngaga\\ngage\\ngaged\\ngager\\ngagers\\ngages\\ngagged\\ngagger\\ngaggers\\ngagging\\ngaggle\\ngaggled\\ngaggles\\ngaggling\\ngaging\\ngagman\\ngagmen\\ngags\\ngagster\\ngagsters\\ngahnite\\ngahnites\\ngaieties\\ngaiety\\ngaily\\ngain\\ngainable\\ngained\\ngainer\\ngainers\\ngainful\\ngainfully\\ngaining\\ngainless\\ngainlier\\ngainliest\\ngainly\\ngains\\ngainsaid\\ngainsay\\ngainsayer\\ngainsayers\\ngainsaying\\ngainsays\\ngainst\\ngait\\ngaited\\ngaiter\\ngaiters\\ngaiting\\ngaits\\ngal\\ngala\\ngalactic\\ngalactorrhea\\ngalago\\ngalagos\\ngalah\\ngalahs\\ngalangal\\ngalangals\\ngalas\\ngalatea\\ngalateas\\ngalavant\\ngalavanted\\ngalavanting\\ngalavants\\ngalax\\ngalaxes\\ngalaxies\\ngalaxy\\ngalbanum\\ngalbanums\\ngale\\ngalea\\ngaleae\\ngaleas\\ngaleate\\ngaleated\\ngalena\\ngalenas\\ngalenic\\ngalenite\\ngalenites\\ngalere\\ngaleres\\ngales\\ngalilee\\ngalilees\\ngaliot\\ngaliots\\ngalipot\\ngalipots\\ngalivant\\ngalivanted\\ngalivanting\\ngalivants\\ngall\\ngallant\\ngallanted\\ngallanting\\ngallantly\\ngallantries\\ngallantry\\ngallants\\ngallate\\ngallates\\ngallbladder\\ngallbladders\\ngalleass\\ngalleasses\\ngalled\\ngallein\\ngalleins\\ngalleon\\ngalleons\\ngalleried\\ngalleries\\ngallery\\ngallerying\\ngalleta\\ngalletas\\ngalley\\ngalleys\\ngallflies\\ngallfly\\ngalliard\\ngalliards\\ngalliass\\ngalliasses\\ngallic\\ngallican\\ngallied\\ngallies\\ngalling\\ngalliot\\ngalliots\\ngallipot\\ngallipots\\ngallium\\ngalliums\\ngallivant\\ngallivanted\\ngallivanting\\ngallivants\\ngallnut\\ngallnuts\\ngallon\\ngallons\\ngalloon\\ngalloons\\ngalloot\\ngalloots\\ngallop\\ngalloped\\ngalloper\\ngallopers\\ngalloping\\ngallops\\ngallous\\ngallows\\ngallowses\\ngalls\\ngallstone\\ngallstones\\ngallus\\ngallused\\ngalluses\\ngally\\ngallying\\ngaloot\\ngaloots\\ngalop\\ngalopade\\ngalopades\\ngalops\\ngalore\\ngalores\\ngalosh\\ngaloshe\\ngaloshed\\ngaloshes\\ngals\\ngalumph\\ngalumphed\\ngalumphing\\ngalumphs\\ngalvanic\\ngalvanization\\ngalvanizations\\ngalvanize\\ngalvanized\\ngalvanizer\\ngalvanizers\\ngalvanizes\\ngalvanizing\\ngalyac\\ngalyacs\\ngalyak\\ngalyaks\\ngam\\ngamashes\\ngamb\\ngamba\\ngambade\\ngambades\\ngambado\\ngambadoes\\ngambados\\ngambas\\ngambe\\ngambes\\ngambeson\\ngambesons\\ngambia\\ngambias\\ngambier\\ngambiers\\ngambir\\ngambirs\\ngambit\\ngambits\\ngamble\\ngambled\\ngambler\\ngamblers\\ngambles\\ngambling\\ngamboge\\ngamboges\\ngambol\\ngamboled\\ngamboling\\ngambolled\\ngambolling\\ngambols\\ngambrel\\ngambrels\\ngambs\\ngambusia\\ngambusias\\ngame\\ngamecock\\ngamecocks\\ngamed\\ngamekeeper\\ngamekeepers\\ngamelan\\ngamelans\\ngamelike\\ngamely\\ngameness\\ngamenesses\\ngamer\\ngames\\ngamesome\\ngamest\\ngamester\\ngamesters\\ngamete\\ngametes\\ngametic\\ngamey\\ngamic\\ngamier\\ngamiest\\ngamily\\ngamin\\ngamine\\ngamines\\ngaminess\\ngaminesses\\ngaming\\ngamings\\ngamins\\ngamma\\ngammadia\\ngammas\\ngammed\\ngammer\\ngammers\\ngamming\\ngammon\\ngammoned\\ngammoner\\ngammoners\\ngammoning\\ngammons\\ngamodeme\\ngamodemes\\ngamp\\ngamps\\ngams\\ngamut\\ngamuts\\ngamy\\ngan\\ngander\\ngandered\\ngandering\\nganders\\ngane\\nganef\\nganefs\\nganev\\nganevs\\ngang\\nganged\\nganger\\ngangers\\nganging\\ngangland\\nganglands\\nganglia\\nganglial\\ngangliar\\nganglier\\ngangliest\\ngangling\\nganglion\\nganglionic\\nganglions\\ngangly\\ngangplank\\ngangplanks\\ngangplow\\ngangplows\\ngangrel\\ngangrels\\ngangrene\\ngangrened\\ngangrenes\\ngangrening\\ngangrenous\\ngangs\\ngangster\\ngangsters\\ngangue\\ngangues\\ngangway\\ngangways\\nganister\\nganisters\\nganja\\nganjas\\ngannet\\ngannets\\nganof\\nganofs\\nganoid\\nganoids\\ngantlet\\ngantleted\\ngantleting\\ngantlets\\ngantline\\ngantlines\\ngantlope\\ngantlopes\\ngantries\\ngantry\\nganymede\\nganymedes\\ngaol\\ngaoled\\ngaoler\\ngaolers\\ngaoling\\ngaols\\ngap\\ngape\\ngaped\\ngaper\\ngapers\\ngapes\\ngapeseed\\ngapeseeds\\ngapeworm\\ngapeworms\\ngaping\\ngapingly\\ngaposis\\ngaposises\\ngapped\\ngappier\\ngappiest\\ngapping\\ngappy\\ngaps\\ngapy\\ngar\\ngarage\\ngaraged\\ngarages\\ngaraging\\ngarb\\ngarbage\\ngarbages\\ngarbanzo\\ngarbanzos\\ngarbed\\ngarbing\\ngarble\\ngarbled\\ngarbler\\ngarblers\\ngarbles\\ngarbless\\ngarbling\\ngarboard\\ngarboards\\ngarboil\\ngarboils\\ngarbs\\ngarcon\\ngarcons\\ngardant\\ngarden\\ngardened\\ngardener\\ngardeners\\ngardenia\\ngardenias\\ngardening\\ngardens\\ngardyloo\\ngarfish\\ngarfishes\\ngarganey\\ngarganeys\\ngargantuan\\ngarget\\ngargets\\ngargety\\ngargle\\ngargled\\ngargler\\ngarglers\\ngargles\\ngargling\\ngargoyle\\ngargoyles\\ngarish\\ngarishly\\ngarland\\ngarlanded\\ngarlanding\\ngarlands\\ngarlic\\ngarlicky\\ngarlics\\ngarment\\ngarmented\\ngarmenting\\ngarments\\ngarner\\ngarnered\\ngarnering\\ngarners\\ngarnet\\ngarnets\\ngarnish\\ngarnished\\ngarnishee\\ngarnisheed\\ngarnishees\\ngarnisheing\\ngarnishes\\ngarnishing\\ngarnishment\\ngarnishments\\ngarote\\ngaroted\\ngarotes\\ngaroting\\ngarotte\\ngarotted\\ngarotter\\ngarotters\\ngarottes\\ngarotting\\ngarpike\\ngarpikes\\ngarred\\ngarret\\ngarrets\\ngarring\\ngarrison\\ngarrisoned\\ngarrisoning\\ngarrisons\\ngarron\\ngarrons\\ngarrote\\ngarroted\\ngarroter\\ngarroters\\ngarrotes\\ngarroting\\ngarrotte\\ngarrotted\\ngarrottes\\ngarrotting\\ngarrulities\\ngarrulity\\ngarrulous\\ngarrulously\\ngarrulousness\\ngarrulousnesses\\ngars\\ngarter\\ngartered\\ngartering\\ngarters\\ngarth\\ngarths\\ngarvey\\ngarveys\\ngas\\ngasalier\\ngasaliers\\ngasbag\\ngasbags\\ngascon\\ngascons\\ngaselier\\ngaseliers\\ngaseous\\ngases\\ngash\\ngashed\\ngasher\\ngashes\\ngashest\\ngashing\\ngashouse\\ngashouses\\ngasified\\ngasifier\\ngasifiers\\ngasifies\\ngasiform\\ngasify\\ngasifying\\ngasket\\ngaskets\\ngaskin\\ngasking\\ngaskings\\ngaskins\\ngasless\\ngaslight\\ngaslights\\ngaslit\\ngasman\\ngasmen\\ngasogene\\ngasogenes\\ngasolene\\ngasolenes\\ngasolier\\ngasoliers\\ngasoline\\ngasolines\\ngasp\\ngasped\\ngasper\\ngaspers\\ngasping\\ngasps\\ngassed\\ngasser\\ngassers\\ngasses\\ngassier\\ngassiest\\ngassing\\ngassings\\ngassy\\ngast\\ngasted\\ngastight\\ngasting\\ngastness\\ngastnesses\\ngastraea\\ngastraeas\\ngastral\\ngastrea\\ngastreas\\ngastric\\ngastrin\\ngastrins\\ngastronomic\\ngastronomical\\ngastronomies\\ngastronomy\\ngastrula\\ngastrulae\\ngastrulas\\ngasts\\ngasworks\\ngat\\ngate\\ngated\\ngatefold\\ngatefolds\\ngatekeeper\\ngatekeepers\\ngateless\\ngatelike\\ngateman\\ngatemen\\ngatepost\\ngateposts\\ngates\\ngateway\\ngateways\\ngather\\ngathered\\ngatherer\\ngatherers\\ngathering\\ngatherings\\ngathers\\ngating\\ngats\\ngauche\\ngauchely\\ngaucher\\ngauchest\\ngaucho\\ngauchos\\ngaud\\ngauderies\\ngaudery\\ngaudier\\ngaudies\\ngaudiest\\ngaudily\\ngaudiness\\ngaudinesses\\ngauds\\ngaudy\\ngauffer\\ngauffered\\ngauffering\\ngauffers\\ngauge\\ngauged\\ngauger\\ngaugers\\ngauges\\ngauging\\ngault\\ngaults\\ngaum\\ngaumed\\ngauming\\ngaums\\ngaun\\ngaunt\\ngaunter\\ngauntest\\ngauntlet\\ngauntleted\\ngauntleting\\ngauntlets\\ngauntly\\ngauntness\\ngauntnesses\\ngauntries\\ngauntry\\ngaur\\ngaurs\\ngauss\\ngausses\\ngauze\\ngauzes\\ngauzier\\ngauziest\\ngauzy\\ngavage\\ngavages\\ngave\\ngavel\\ngaveled\\ngaveling\\ngavelled\\ngavelling\\ngavelock\\ngavelocks\\ngavels\\ngavial\\ngavials\\ngavot\\ngavots\\ngavotte\\ngavotted\\ngavottes\\ngavotting\\ngawk\\ngawked\\ngawker\\ngawkers\\ngawkier\\ngawkies\\ngawkiest\\ngawkily\\ngawking\\ngawkish\\ngawks\\ngawky\\ngawsie\\ngawsy\\ngay\\ngayal\\ngayals\\ngayer\\ngayest\\ngayeties\\ngayety\\ngayly\\ngayness\\ngaynesses\\ngays\\ngaywing\\ngaywings\\ngazabo\\ngazaboes\\ngazabos\\ngaze\\ngazebo\\ngazeboes\\ngazebos\\ngazed\\ngazelle\\ngazelles\\ngazer\\ngazers\\ngazes\\ngazette\\ngazetted\\ngazetteer\\ngazetteers\\ngazettes\\ngazetting\\ngazing\\ngazogene\\ngazogenes\\ngazpacho\\ngazpachos\\ngear\\ngearbox\\ngearboxes\\ngearcase\\ngearcases\\ngeared\\ngearing\\ngearings\\ngearless\\ngears\\ngearshift\\ngearshifts\\ngeck\\ngecked\\ngecking\\ngecko\\ngeckoes\\ngeckos\\ngecks\\nged\\ngeds\\ngee\\ngeed\\ngeegaw\\ngeegaws\\ngeeing\\ngeek\\ngeeks\\ngeepound\\ngeepounds\\ngees\\ngeese\\ngeest\\ngeests\\ngeezer\\ngeezers\\ngeisha\\ngeishas\\ngel\\ngelable\\ngelada\\ngeladas\\ngelant\\ngelants\\ngelate\\ngelated\\ngelates\\ngelatin\\ngelatine\\ngelatines\\ngelating\\ngelatinous\\ngelatins\\ngelation\\ngelations\\ngeld\\ngelded\\ngelder\\ngelders\\ngelding\\ngeldings\\ngelds\\ngelee\\ngelees\\ngelid\\ngelidities\\ngelidity\\ngelidly\\ngellant\\ngellants\\ngelled\\ngelling\\ngels\\ngelsemia\\ngelt\\ngelts\\ngem\\ngeminal\\ngeminate\\ngeminated\\ngeminates\\ngeminating\\ngemlike\\ngemma\\ngemmae\\ngemmate\\ngemmated\\ngemmates\\ngemmating\\ngemmed\\ngemmier\\ngemmiest\\ngemmily\\ngemming\\ngemmule\\ngemmules\\ngemmy\\ngemologies\\ngemology\\ngemot\\ngemote\\ngemotes\\ngemots\\ngems\\ngemsbok\\ngemsboks\\ngemsbuck\\ngemsbucks\\ngemstone\\ngemstones\\ngendarme\\ngendarmes\\ngender\\ngendered\\ngendering\\ngenders\\ngene\\ngeneological\\ngeneologically\\ngeneologist\\ngeneologists\\ngeneology\\ngenera\\ngeneral\\ngeneralities\\ngenerality\\ngeneralizability\\ngeneralization\\ngeneralizations\\ngeneralize\\ngeneralized\\ngeneralizes\\ngeneralizing\\ngenerally\\ngenerals\\ngenerate\\ngenerated\\ngenerates\\ngenerating\\ngeneration\\ngenerations\\ngenerative\\ngenerator\\ngenerators\\ngeneric\\ngenerics\\ngenerosities\\ngenerosity\\ngenerous\\ngenerously\\ngenerousness\\ngenerousnesses\\ngenes\\ngeneses\\ngenesis\\ngenet\\ngenetic\\ngenetically\\ngeneticist\\ngeneticists\\ngenetics\\ngenets\\ngenette\\ngenettes\\ngeneva\\ngenevas\\ngenial\\ngenialities\\ngeniality\\ngenially\\ngenic\\ngenie\\ngenies\\ngenii\\ngenip\\ngenipap\\ngenipaps\\ngenips\\ngenital\\ngenitalia\\ngenitally\\ngenitals\\ngenitive\\ngenitives\\ngenitor\\ngenitors\\ngenitourinary\\ngeniture\\ngenitures\\ngenius\\ngeniuses\\ngenoa\\ngenoas\\ngenocide\\ngenocides\\ngenom\\ngenome\\ngenomes\\ngenomic\\ngenoms\\ngenotype\\ngenotypes\\ngenre\\ngenres\\ngenro\\ngenros\\ngens\\ngenseng\\ngensengs\\ngent\\ngenteel\\ngenteeler\\ngenteelest\\ngentes\\ngentian\\ngentians\\ngentil\\ngentile\\ngentiles\\ngentilities\\ngentility\\ngentle\\ngentled\\ngentlefolk\\ngentleman\\ngentlemen\\ngentleness\\ngentlenesses\\ngentler\\ngentles\\ngentlest\\ngentlewoman\\ngentlewomen\\ngentling\\ngently\\ngentrice\\ngentrices\\ngentries\\ngentry\\ngents\\ngenu\\ngenua\\ngenuflect\\ngenuflected\\ngenuflecting\\ngenuflection\\ngenuflections\\ngenuflects\\ngenuine\\ngenuinely\\ngenuineness\\ngenuinenesses\\ngenus\\ngenuses\\ngeode\\ngeodes\\ngeodesic\\ngeodesics\\ngeodesies\\ngeodesy\\ngeodetic\\ngeodic\\ngeoduck\\ngeoducks\\ngeognosies\\ngeognosy\\ngeographer\\ngeographers\\ngeographic\\ngeographical\\ngeographically\\ngeographies\\ngeography\\ngeoid\\ngeoidal\\ngeoids\\ngeologer\\ngeologers\\ngeologic\\ngeological\\ngeologies\\ngeologist\\ngeologists\\ngeology\\ngeomancies\\ngeomancy\\ngeometer\\ngeometers\\ngeometric\\ngeometrical\\ngeometries\\ngeometry\\ngeophagies\\ngeophagy\\ngeophone\\ngeophones\\ngeophysical\\ngeophysicist\\ngeophysicists\\ngeophysics\\ngeophyte\\ngeophytes\\ngeoponic\\ngeorgic\\ngeorgics\\ngeotaxes\\ngeotaxis\\ngeothermal\\ngeothermic\\ngerah\\ngerahs\\ngeranial\\ngeranials\\ngeraniol\\ngeraniols\\ngeranium\\ngeraniums\\ngerardia\\ngerardias\\ngerbera\\ngerberas\\ngerbil\\ngerbille\\ngerbilles\\ngerbils\\ngerent\\ngerents\\ngerenuk\\ngerenuks\\ngeriatric\\ngeriatrics\\ngerm\\ngerman\\ngermane\\ngermanic\\ngermanium\\ngermaniums\\ngermans\\ngermen\\ngermens\\ngermfree\\ngermicidal\\ngermicide\\ngermicides\\ngermier\\ngermiest\\ngermina\\ngerminal\\ngerminate\\ngerminated\\ngerminates\\ngerminating\\ngermination\\ngerminations\\ngerms\\ngermy\\ngerontic\\ngerrymander\\ngerrymandered\\ngerrymandering\\ngerrymanders\\ngerund\\ngerunds\\ngesso\\ngessoes\\ngest\\ngestalt\\ngestalten\\ngestalts\\ngestapo\\ngestapos\\ngestate\\ngestated\\ngestates\\ngestating\\ngeste\\ngestes\\ngestic\\ngestical\\ngests\\ngestural\\ngesture\\ngestured\\ngesturer\\ngesturers\\ngestures\\ngesturing\\ngesundheit\\nget\\ngetable\\ngetaway\\ngetaways\\ngets\\ngettable\\ngetter\\ngettered\\ngettering\\ngetters\\ngetting\\ngetup\\ngetups\\ngeum\\ngeums\\ngewgaw\\ngewgaws\\ngey\\ngeyser\\ngeysers\\ngharri\\ngharries\\ngharris\\ngharry\\nghast\\nghastful\\nghastlier\\nghastliest\\nghastly\\nghat\\nghats\\nghaut\\nghauts\\nghazi\\nghazies\\nghazis\\nghee\\nghees\\ngherao\\ngheraoed\\ngheraoes\\ngheraoing\\ngherkin\\ngherkins\\nghetto\\nghettoed\\nghettoes\\nghettoing\\nghettos\\nghi\\nghibli\\nghiblis\\nghillie\\nghillies\\nghis\\nghost\\nghosted\\nghostier\\nghostiest\\nghosting\\nghostlier\\nghostliest\\nghostly\\nghosts\\nghostwrite\\nghostwriter\\nghostwriters\\nghostwrites\\nghostwritten\\nghostwrote\\nghosty\\nghoul\\nghoulish\\nghouls\\nghyll\\nghylls\\ngiant\\ngiantess\\ngiantesses\\ngiantism\\ngiantisms\\ngiants\\ngiaour\\ngiaours\\ngib\\ngibbed\\ngibber\\ngibbered\\ngibbering\\ngibberish\\ngibberishes\\ngibbers\\ngibbet\\ngibbeted\\ngibbeting\\ngibbets\\ngibbetted\\ngibbetting\\ngibbing\\ngibbon\\ngibbons\\ngibbose\\ngibbous\\ngibbsite\\ngibbsites\\ngibe\\ngibed\\ngiber\\ngibers\\ngibes\\ngibing\\ngibingly\\ngiblet\\ngiblets\\ngibs\\ngid\\ngiddap\\ngiddied\\ngiddier\\ngiddies\\ngiddiest\\ngiddily\\ngiddiness\\ngiddinesses\\ngiddy\\ngiddying\\ngids\\ngie\\ngied\\ngieing\\ngien\\ngies\\ngift\\ngifted\\ngiftedly\\ngifting\\ngiftless\\ngifts\\ngig\\ngiga\\ngigabit\\ngigabits\\ngigantic\\ngigas\\ngigaton\\ngigatons\\ngigawatt\\ngigawatts\\ngigged\\ngigging\\ngiggle\\ngiggled\\ngiggler\\ngigglers\\ngiggles\\ngigglier\\ngiggliest\\ngiggling\\ngiggly\\ngighe\\ngiglet\\ngiglets\\ngiglot\\ngiglots\\ngigolo\\ngigolos\\ngigot\\ngigots\\ngigs\\ngigue\\ngigues\\ngilbert\\ngilberts\\ngild\\ngilded\\ngilder\\ngilders\\ngildhall\\ngildhalls\\ngilding\\ngildings\\ngilds\\ngill\\ngilled\\ngiller\\ngillers\\ngillie\\ngillied\\ngillies\\ngilling\\ngillnet\\ngillnets\\ngillnetted\\ngillnetting\\ngills\\ngilly\\ngillying\\ngilt\\ngilthead\\ngiltheads\\ngilts\\ngimbal\\ngimbaled\\ngimbaling\\ngimballed\\ngimballing\\ngimbals\\ngimcrack\\ngimcracks\\ngimel\\ngimels\\ngimlet\\ngimleted\\ngimleting\\ngimlets\\ngimmal\\ngimmals\\ngimmick\\ngimmicked\\ngimmicking\\ngimmicks\\ngimmicky\\ngimp\\ngimped\\ngimpier\\ngimpiest\\ngimping\\ngimps\\ngimpy\\ngin\\ngingal\\ngingall\\ngingalls\\ngingals\\ngingeley\\ngingeleys\\ngingeli\\ngingelies\\ngingelis\\ngingellies\\ngingelly\\ngingely\\nginger\\ngingerbread\\ngingerbreads\\ngingered\\ngingering\\ngingerly\\ngingers\\ngingery\\ngingham\\nginghams\\ngingili\\ngingilis\\ngingiva\\ngingivae\\ngingival\\ngingivitis\\ngingivitises\\ngingko\\ngingkoes\\ngink\\nginkgo\\nginkgoes\\nginks\\nginned\\nginner\\nginners\\nginnier\\nginniest\\nginning\\nginnings\\nginny\\ngins\\nginseng\\nginsengs\\ngip\\ngipon\\ngipons\\ngipped\\ngipper\\ngippers\\ngipping\\ngips\\ngipsied\\ngipsies\\ngipsy\\ngipsying\\ngiraffe\\ngiraffes\\ngirasol\\ngirasole\\ngirasoles\\ngirasols\\ngird\\ngirded\\ngirder\\ngirders\\ngirding\\ngirdle\\ngirdled\\ngirdler\\ngirdlers\\ngirdles\\ngirdling\\ngirds\\ngirl\\ngirlhood\\ngirlhoods\\ngirlie\\ngirlies\\ngirlish\\ngirls\\ngirly\\ngirn\\ngirned\\ngirning\\ngirns\\ngiro\\ngiron\\ngirons\\ngiros\\ngirosol\\ngirosols\\ngirsh\\ngirshes\\ngirt\\ngirted\\ngirth\\ngirthed\\ngirthing\\ngirths\\ngirting\\ngirts\\ngisarme\\ngisarmes\\ngismo\\ngismos\\ngist\\ngists\\ngit\\ngitano\\ngitanos\\ngittern\\ngitterns\\ngive\\ngiveable\\ngiveaway\\ngiveaways\\ngiven\\ngivens\\ngiver\\ngivers\\ngives\\ngiving\\ngizmo\\ngizmos\\ngizzard\\ngizzards\\ngjetost\\ngjetosts\\nglabella\\nglabellae\\nglabrate\\nglabrous\\nglace\\nglaceed\\nglaceing\\nglaces\\nglacial\\nglacially\\nglaciate\\nglaciated\\nglaciates\\nglaciating\\nglacier\\nglaciers\\nglacis\\nglacises\\nglad\\ngladded\\ngladden\\ngladdened\\ngladdening\\ngladdens\\ngladder\\ngladdest\\ngladding\\nglade\\nglades\\ngladiate\\ngladiator\\ngladiatorial\\ngladiators\\ngladier\\ngladiest\\ngladiola\\ngladiolas\\ngladioli\\ngladiolus\\ngladlier\\ngladliest\\ngladly\\ngladness\\ngladnesses\\nglads\\ngladsome\\ngladsomer\\ngladsomest\\nglady\\nglaiket\\nglaikit\\nglair\\nglaire\\nglaired\\nglaires\\nglairier\\nglairiest\\nglairing\\nglairs\\nglairy\\nglaive\\nglaived\\nglaives\\nglamor\\nglamorize\\nglamorized\\nglamorizes\\nglamorizing\\nglamorous\\nglamors\\nglamour\\nglamoured\\nglamouring\\nglamours\\nglance\\nglanced\\nglances\\nglancing\\ngland\\nglanders\\nglandes\\nglands\\nglandular\\nglandule\\nglandules\\nglans\\nglare\\nglared\\nglares\\nglarier\\nglariest\\nglaring\\nglaringly\\nglary\\nglass\\nglassblower\\nglassblowers\\nglassblowing\\nglassblowings\\nglassed\\nglasses\\nglassful\\nglassfuls\\nglassie\\nglassier\\nglassies\\nglassiest\\nglassily\\nglassine\\nglassines\\nglassing\\nglassman\\nglassmen\\nglassware\\nglasswares\\nglassy\\nglaucoma\\nglaucomas\\nglaucous\\nglaze\\nglazed\\nglazer\\nglazers\\nglazes\\nglazier\\nglazieries\\nglaziers\\nglaziery\\nglaziest\\nglazing\\nglazings\\nglazy\\ngleam\\ngleamed\\ngleamier\\ngleamiest\\ngleaming\\ngleams\\ngleamy\\nglean\\ngleanable\\ngleaned\\ngleaner\\ngleaners\\ngleaning\\ngleanings\\ngleans\\ngleba\\nglebae\\nglebe\\nglebes\\ngled\\nglede\\ngledes\\ngleds\\nglee\\ngleed\\ngleeds\\ngleeful\\ngleek\\ngleeked\\ngleeking\\ngleeks\\ngleeman\\ngleemen\\nglees\\ngleesome\\ngleet\\ngleeted\\ngleetier\\ngleetiest\\ngleeting\\ngleets\\ngleety\\ngleg\\nglegly\\nglegness\\nglegnesses\\nglen\\nglenlike\\nglenoid\\nglens\\ngley\\ngleys\\ngliadin\\ngliadine\\ngliadines\\ngliadins\\nglial\\nglib\\nglibber\\nglibbest\\nglibly\\nglibness\\nglibnesses\\nglide\\nglided\\nglider\\ngliders\\nglides\\ngliding\\ngliff\\ngliffs\\nglim\\nglime\\nglimed\\nglimes\\ngliming\\nglimmer\\nglimmered\\nglimmering\\nglimmers\\nglimpse\\nglimpsed\\nglimpser\\nglimpsers\\nglimpses\\nglimpsing\\nglims\\nglint\\nglinted\\nglinting\\nglints\\nglioma\\ngliomas\\ngliomata\\nglissade\\nglissaded\\nglissades\\nglissading\\nglisten\\nglistened\\nglistening\\nglistens\\nglister\\nglistered\\nglistering\\nglisters\\nglitch\\nglitches\\nglitter\\nglittered\\nglittering\\nglitters\\nglittery\\ngloam\\ngloaming\\ngloamings\\ngloams\\ngloat\\ngloated\\ngloater\\ngloaters\\ngloating\\ngloats\\nglob\\nglobal\\nglobally\\nglobate\\nglobated\\nglobe\\nglobed\\nglobes\\nglobin\\nglobing\\nglobins\\ngloboid\\ngloboids\\nglobose\\nglobous\\nglobs\\nglobular\\nglobule\\nglobules\\nglobulin\\nglobulins\\nglochid\\nglochids\\nglockenspiel\\nglockenspiels\\nglogg\\ngloggs\\nglom\\nglomera\\nglommed\\nglomming\\ngloms\\nglomus\\ngloom\\ngloomed\\ngloomful\\ngloomier\\ngloomiest\\ngloomily\\ngloominess\\ngloominesses\\nglooming\\ngloomings\\nglooms\\ngloomy\\nglop\\nglops\\ngloria\\nglorias\\ngloried\\nglories\\nglorification\\nglorifications\\nglorified\\nglorifies\\nglorify\\nglorifying\\ngloriole\\nglorioles\\nglorious\\ngloriously\\nglory\\nglorying\\ngloss\\nglossa\\nglossae\\nglossal\\nglossarial\\nglossaries\\nglossary\\nglossas\\nglossed\\nglosseme\\nglossemes\\nglosser\\nglossers\\nglosses\\nglossier\\nglossies\\nglossiest\\nglossily\\nglossina\\nglossinas\\nglossiness\\nglossinesses\\nglossing\\nglossy\\nglost\\nglosts\\nglottal\\nglottic\\nglottides\\nglottis\\nglottises\\nglout\\nglouted\\nglouting\\nglouts\\nglove\\ngloved\\nglover\\nglovers\\ngloves\\ngloving\\nglow\\nglowed\\nglower\\nglowered\\nglowering\\nglowers\\nglowflies\\nglowfly\\nglowing\\nglows\\nglowworm\\nglowworms\\ngloxinia\\ngloxinias\\ngloze\\nglozed\\nglozes\\nglozing\\nglucagon\\nglucagons\\nglucinic\\nglucinum\\nglucinums\\nglucose\\nglucoses\\nglucosic\\nglue\\nglued\\nglueing\\ngluelike\\ngluer\\ngluers\\nglues\\ngluey\\ngluier\\ngluiest\\ngluily\\ngluing\\nglum\\nglume\\nglumes\\nglumly\\nglummer\\nglummest\\nglumness\\nglumnesses\\nglumpier\\nglumpiest\\nglumpily\\nglumpy\\nglunch\\nglunched\\nglunches\\nglunching\\nglut\\ngluteal\\nglutei\\nglutelin\\nglutelins\\ngluten\\nglutens\\ngluteus\\nglutinous\\ngluts\\nglutted\\nglutting\\nglutton\\ngluttonies\\ngluttonous\\ngluttons\\ngluttony\\nglycan\\nglycans\\nglyceric\\nglycerin\\nglycerine\\nglycerines\\nglycerins\\nglycerol\\nglycerols\\nglyceryl\\nglyceryls\\nglycin\\nglycine\\nglycines\\nglycins\\nglycogen\\nglycogens\\nglycol\\nglycolic\\nglycols\\nglyconic\\nglyconics\\nglycosyl\\nglycosyls\\nglycyl\\nglycyls\\nglyph\\nglyphic\\nglyphs\\nglyptic\\nglyptics\\ngnar\\ngnarl\\ngnarled\\ngnarlier\\ngnarliest\\ngnarling\\ngnarls\\ngnarly\\ngnarr\\ngnarred\\ngnarring\\ngnarrs\\ngnars\\ngnash\\ngnashed\\ngnashes\\ngnashing\\ngnat\\ngnathal\\ngnathic\\ngnathion\\ngnathions\\ngnathite\\ngnathites\\ngnatlike\\ngnats\\ngnattier\\ngnattiest\\ngnatty\\ngnaw\\ngnawable\\ngnawed\\ngnawer\\ngnawers\\ngnawing\\ngnawings\\ngnawn\\ngnaws\\ngneiss\\ngneisses\\ngneissic\\ngnocchi\\ngnome\\ngnomes\\ngnomic\\ngnomical\\ngnomish\\ngnomist\\ngnomists\\ngnomon\\ngnomonic\\ngnomons\\ngnoses\\ngnosis\\ngnostic\\ngnu\\ngnus\\ngo\\ngoa\\ngoad\\ngoaded\\ngoading\\ngoadlike\\ngoads\\ngoal\\ngoaled\\ngoalie\\ngoalies\\ngoaling\\ngoalkeeper\\ngoalkeepers\\ngoalless\\ngoalpost\\ngoalposts\\ngoals\\ngoas\\ngoat\\ngoatee\\ngoateed\\ngoatees\\ngoatfish\\ngoatfishes\\ngoatherd\\ngoatherds\\ngoatish\\ngoatlike\\ngoats\\ngoatskin\\ngoatskins\\ngob\\ngoban\\ngobang\\ngobangs\\ngobans\\ngobbed\\ngobbet\\ngobbets\\ngobbing\\ngobble\\ngobbled\\ngobbledegook\\ngobbledegooks\\ngobbledygook\\ngobbledygooks\\ngobbler\\ngobblers\\ngobbles\\ngobbling\\ngobies\\ngobioid\\ngobioids\\ngoblet\\ngoblets\\ngoblin\\ngoblins\\ngobo\\ngoboes\\ngobonee\\ngobony\\ngobos\\ngobs\\ngoby\\ngod\\ngodchild\\ngodchildren\\ngoddam\\ngoddammed\\ngoddamming\\ngoddamn\\ngoddamned\\ngoddamning\\ngoddamns\\ngoddams\\ngoddaughter\\ngoddaughters\\ngodded\\ngoddess\\ngoddesses\\ngodding\\ngodfather\\ngodfathers\\ngodhead\\ngodheads\\ngodhood\\ngodhoods\\ngodless\\ngodlessness\\ngodlessnesses\\ngodlier\\ngodliest\\ngodlike\\ngodlily\\ngodling\\ngodlings\\ngodly\\ngodmother\\ngodmothers\\ngodown\\ngodowns\\ngodparent\\ngodparents\\ngodroon\\ngodroons\\ngods\\ngodsend\\ngodsends\\ngodship\\ngodships\\ngodson\\ngodsons\\ngodwit\\ngodwits\\ngoer\\ngoers\\ngoes\\ngoethite\\ngoethites\\ngoffer\\ngoffered\\ngoffering\\ngoffers\\ngoggle\\ngoggled\\ngoggler\\ngogglers\\ngoggles\\ngogglier\\ngoggliest\\ngoggling\\ngoggly\\ngoglet\\ngoglets\\ngogo\\ngogos\\ngoing\\ngoings\\ngoiter\\ngoiters\\ngoitre\\ngoitres\\ngoitrous\\ngolconda\\ngolcondas\\ngold\\ngoldarn\\ngoldarns\\ngoldbrick\\ngoldbricked\\ngoldbricking\\ngoldbricks\\ngoldbug\\ngoldbugs\\ngolden\\ngoldener\\ngoldenest\\ngoldenly\\ngoldenrod\\ngolder\\ngoldest\\ngoldeye\\ngoldeyes\\ngoldfinch\\ngoldfinches\\ngoldfish\\ngoldfishes\\ngolds\\ngoldsmith\\ngoldstein\\ngoldurn\\ngoldurns\\ngolem\\ngolems\\ngolf\\ngolfed\\ngolfer\\ngolfers\\ngolfing\\ngolfings\\ngolfs\\ngolgotha\\ngolgothas\\ngoliard\\ngoliards\\ngolliwog\\ngolliwogs\\ngolly\\ngolosh\\ngoloshes\\ngombo\\ngombos\\ngombroon\\ngombroons\\ngomeral\\ngomerals\\ngomerel\\ngomerels\\ngomeril\\ngomerils\\ngomuti\\ngomutis\\ngonad\\ngonadal\\ngonadial\\ngonadic\\ngonads\\ngondola\\ngondolas\\ngondolier\\ngondoliers\\ngone\\ngoneness\\ngonenesses\\ngoner\\ngoners\\ngonfalon\\ngonfalons\\ngonfanon\\ngonfanons\\ngong\\ngonged\\ngonging\\ngonglike\\ngongs\\ngonia\\ngonidia\\ngonidial\\ngonidic\\ngonidium\\ngonif\\ngonifs\\ngonion\\ngonium\\ngonocyte\\ngonocytes\\ngonof\\ngonofs\\ngonoph\\ngonophs\\ngonopore\\ngonopores\\ngonorrhea\\ngonorrheal\\ngonorrheas\\ngoo\\ngoober\\ngoobers\\ngood\\ngoodby\\ngoodbye\\ngoodbyes\\ngoodbys\\ngoodies\\ngoodish\\ngoodlier\\ngoodliest\\ngoodly\\ngoodman\\ngoodmen\\ngoodness\\ngoodnesses\\ngoods\\ngoodwife\\ngoodwill\\ngoodwills\\ngoodwives\\ngoody\\ngooey\\ngoof\\ngoofball\\ngoofballs\\ngoofed\\ngoofier\\ngoofiest\\ngoofily\\ngoofiness\\ngoofinesses\\ngoofing\\ngoofs\\ngoofy\\ngooglies\\ngoogly\\ngoogol\\ngoogolplex\\ngoogolplexes\\ngoogols\\ngooier\\ngooiest\\ngook\\ngooks\\ngooky\\ngoon\\ngooney\\ngooneys\\ngoonie\\ngoonies\\ngoons\\ngoony\\ngoop\\ngoops\\ngooral\\ngoorals\\ngoos\\ngoose\\ngooseberries\\ngooseberry\\ngoosed\\ngooseflesh\\ngoosefleshes\\ngooses\\ngoosey\\ngoosier\\ngoosiest\\ngoosing\\ngoosy\\ngopher\\ngophers\\ngor\\ngoral\\ngorals\\ngorbellies\\ngorbelly\\ngorblimy\\ngorcock\\ngorcocks\\ngore\\ngored\\ngores\\ngorge\\ngorged\\ngorgedly\\ngorgeous\\ngorger\\ngorgerin\\ngorgerins\\ngorgers\\ngorges\\ngorget\\ngorgeted\\ngorgets\\ngorging\\ngorgon\\ngorgons\\ngorhen\\ngorhens\\ngorier\\ngoriest\\ngorilla\\ngorillas\\ngorily\\ngoriness\\ngorinesses\\ngoring\\ngormand\\ngormands\\ngorse\\ngorses\\ngorsier\\ngorsiest\\ngorsy\\ngory\\ngosh\\ngoshawk\\ngoshawks\\ngosling\\ngoslings\\ngospel\\ngospeler\\ngospelers\\ngospels\\ngosport\\ngosports\\ngossamer\\ngossamers\\ngossan\\ngossans\\ngossip\\ngossiped\\ngossiper\\ngossipers\\ngossiping\\ngossipped\\ngossipping\\ngossipries\\ngossipry\\ngossips\\ngossipy\\ngossoon\\ngossoons\\ngossypol\\ngossypols\\ngot\\ngothic\\ngothics\\ngothite\\ngothites\\ngotten\\ngouache\\ngouaches\\ngouge\\ngouged\\ngouger\\ngougers\\ngouges\\ngouging\\ngoulash\\ngoulashes\\ngourami\\ngouramis\\ngourd\\ngourde\\ngourdes\\ngourds\\ngourmand\\ngourmands\\ngourmet\\ngourmets\\ngout\\ngoutier\\ngoutiest\\ngoutily\\ngouts\\ngouty\\ngovern\\ngoverned\\ngoverness\\ngovernesses\\ngoverning\\ngovernment\\ngovernmental\\ngovernments\\ngovernor\\ngovernors\\ngovernorship\\ngovernorships\\ngoverns\\ngowan\\ngowaned\\ngowans\\ngowany\\ngowd\\ngowds\\ngowk\\ngowks\\ngown\\ngowned\\ngowning\\ngowns\\ngownsman\\ngownsmen\\ngox\\ngoxes\\ngoy\\ngoyim\\ngoyish\\ngoys\\ngraal\\ngraals\\ngrab\\ngrabbed\\ngrabber\\ngrabbers\\ngrabbier\\ngrabbiest\\ngrabbing\\ngrabble\\ngrabbled\\ngrabbler\\ngrabblers\\ngrabbles\\ngrabbling\\ngrabby\\ngraben\\ngrabens\\ngrabs\\ngrace\\ngraced\\ngraceful\\ngracefuller\\ngracefullest\\ngracefully\\ngracefulness\\ngracefulnesses\\ngraceless\\ngraces\\ngracile\\ngraciles\\ngracilis\\ngracing\\ngracioso\\ngraciosos\\ngracious\\ngraciously\\ngraciousness\\ngraciousnesses\\ngrackle\\ngrackles\\ngrad\\ngradable\\ngradate\\ngradated\\ngradates\\ngradating\\ngrade\\ngraded\\ngrader\\ngraders\\ngrades\\ngradient\\ngradients\\ngradin\\ngradine\\ngradines\\ngrading\\ngradins\\ngrads\\ngradual\\ngradually\\ngraduals\\ngraduand\\ngraduands\\ngraduate\\ngraduated\\ngraduates\\ngraduating\\ngraduation\\ngraduations\\ngradus\\ngraduses\\ngraecize\\ngraecized\\ngraecizes\\ngraecizing\\ngraffiti\\ngraffito\\ngraft\\ngraftage\\ngraftages\\ngrafted\\ngrafter\\ngrafters\\ngrafting\\ngrafts\\ngraham\\ngrail\\ngrails\\ngrain\\ngrained\\ngrainer\\ngrainers\\ngrainfield\\ngrainfields\\ngrainier\\ngrainiest\\ngraining\\ngrains\\ngrainy\\ngram\\ngrama\\ngramaries\\ngramary\\ngramarye\\ngramaryes\\ngramas\\ngramercies\\ngramercy\\ngrammar\\ngrammarian\\ngrammarians\\ngrammars\\ngrammatical\\ngrammatically\\ngramme\\ngrammes\\ngramp\\ngramps\\ngrampus\\ngrampuses\\ngrams\\ngrana\\ngranaries\\ngranary\\ngrand\\ngrandad\\ngrandads\\ngrandam\\ngrandame\\ngrandames\\ngrandams\\ngrandchild\\ngrandchildren\\ngranddad\\ngranddads\\ngranddaughter\\ngranddaughters\\ngrandee\\ngrandees\\ngrander\\ngrandest\\ngrandeur\\ngrandeurs\\ngrandfather\\ngrandfathers\\ngrandiose\\ngrandiosely\\ngrandly\\ngrandma\\ngrandmas\\ngrandmother\\ngrandmothers\\ngrandness\\ngrandnesses\\ngrandpa\\ngrandparent\\ngrandparents\\ngrandpas\\ngrands\\ngrandsir\\ngrandsirs\\ngrandson\\ngrandsons\\ngrandstand\\ngrandstands\\ngrange\\ngranger\\ngrangers\\ngranges\\ngranite\\ngranites\\ngranitic\\ngrannie\\ngrannies\\ngranny\\ngrant\\ngranted\\ngrantee\\ngrantees\\ngranter\\ngranters\\ngranting\\ngrantor\\ngrantors\\ngrants\\ngranular\\ngranularities\\ngranularity\\ngranulate\\ngranulated\\ngranulates\\ngranulating\\ngranulation\\ngranulations\\ngranule\\ngranules\\ngranum\\ngrape\\ngraperies\\ngrapery\\ngrapes\\ngrapevine\\ngrapevines\\ngraph\\ngraphed\\ngrapheme\\ngraphemes\\ngraphic\\ngraphically\\ngraphics\\ngraphing\\ngraphite\\ngraphites\\ngraphs\\ngrapier\\ngrapiest\\ngraplin\\ngrapline\\ngraplines\\ngraplins\\ngrapnel\\ngrapnels\\ngrappa\\ngrappas\\ngrapple\\ngrappled\\ngrappler\\ngrapplers\\ngrapples\\ngrappling\\ngrapy\\ngrasp\\ngrasped\\ngrasper\\ngraspers\\ngrasping\\ngrasps\\ngrass\\ngrassed\\ngrasses\\ngrasshopper\\ngrasshoppers\\ngrassier\\ngrassiest\\ngrassily\\ngrassing\\ngrassland\\ngrasslands\\ngrassy\\ngrat\\ngrate\\ngrated\\ngrateful\\ngratefuller\\ngratefullest\\ngratefullies\\ngratefully\\ngratefulness\\ngratefulnesses\\ngrater\\ngraters\\ngrates\\ngratification\\ngratifications\\ngratified\\ngratifies\\ngratify\\ngratifying\\ngratin\\ngrating\\ngratings\\ngratins\\ngratis\\ngratitude\\ngratuities\\ngratuitous\\ngratuity\\ngraupel\\ngraupels\\ngravamen\\ngravamens\\ngravamina\\ngrave\\ngraved\\ngravel\\ngraveled\\ngraveling\\ngravelled\\ngravelling\\ngravelly\\ngravels\\ngravely\\ngraven\\ngraveness\\ngravenesses\\ngraver\\ngravers\\ngraves\\ngravest\\ngravestone\\ngravestones\\ngraveyard\\ngraveyards\\ngravid\\ngravida\\ngravidae\\ngravidas\\ngravidly\\ngravies\\ngraving\\ngravitate\\ngravitated\\ngravitates\\ngravitating\\ngravitation\\ngravitational\\ngravitationally\\ngravitations\\ngravitative\\ngravities\\ngraviton\\ngravitons\\ngravity\\ngravure\\ngravures\\ngravy\\ngray\\ngrayback\\ngraybacks\\ngrayed\\ngrayer\\ngrayest\\ngrayfish\\ngrayfishes\\ngraying\\ngrayish\\ngraylag\\ngraylags\\ngrayling\\ngraylings\\ngrayly\\ngrayness\\ngraynesses\\ngrayout\\ngrayouts\\ngrays\\ngrazable\\ngraze\\ngrazed\\ngrazer\\ngrazers\\ngrazes\\ngrazier\\ngraziers\\ngrazing\\ngrazings\\ngrazioso\\ngrease\\ngreased\\ngreaser\\ngreasers\\ngreases\\ngreasier\\ngreasiest\\ngreasily\\ngreasing\\ngreasy\\ngreat\\ngreaten\\ngreatened\\ngreatening\\ngreatens\\ngreater\\ngreatest\\ngreatly\\ngreatness\\ngreatnesses\\ngreats\\ngreave\\ngreaved\\ngreaves\\ngrebe\\ngrebes\\ngrecize\\ngrecized\\ngrecizes\\ngrecizing\\ngree\\ngreed\\ngreedier\\ngreediest\\ngreedily\\ngreediness\\ngreedinesses\\ngreeds\\ngreedy\\ngreegree\\ngreegrees\\ngreeing\\ngreek\\ngreen\\ngreenbug\\ngreenbugs\\ngreened\\ngreener\\ngreeneries\\ngreenery\\ngreenest\\ngreenflies\\ngreenfly\\ngreenhorn\\ngreenhorns\\ngreenhouse\\ngreenhouses\\ngreenier\\ngreeniest\\ngreening\\ngreenings\\ngreenish\\ngreenlet\\ngreenlets\\ngreenly\\ngreenness\\ngreennesses\\ngreens\\ngreenth\\ngreenths\\ngreeny\\ngrees\\ngreet\\ngreeted\\ngreeter\\ngreeters\\ngreeting\\ngreetings\\ngreets\\ngregarious\\ngregariously\\ngregariousness\\ngregariousnesses\\ngrego\\ngregos\\ngreige\\ngreiges\\ngreisen\\ngreisens\\ngremial\\ngremials\\ngremlin\\ngremlins\\ngremmie\\ngremmies\\ngremmy\\ngrenade\\ngrenades\\ngrew\\ngrewsome\\ngrewsomer\\ngrewsomest\\ngrey\\ngreyed\\ngreyer\\ngreyest\\ngreyhen\\ngreyhens\\ngreyhound\\ngreyhounds\\ngreying\\ngreyish\\ngreylag\\ngreylags\\ngreyly\\ngreyness\\ngreynesses\\ngreys\\ngribble\\ngribbles\\ngrid\\ngriddle\\ngriddled\\ngriddles\\ngriddling\\ngride\\ngrided\\ngrides\\ngriding\\ngridiron\\ngridirons\\ngrids\\ngrief\\ngriefs\\ngrievance\\ngrievances\\ngrievant\\ngrievants\\ngrieve\\ngrieved\\ngriever\\ngrievers\\ngrieves\\ngrieving\\ngrievous\\ngrievously\\ngriff\\ngriffe\\ngriffes\\ngriffin\\ngriffins\\ngriffon\\ngriffons\\ngriffs\\ngrift\\ngrifted\\ngrifter\\ngrifters\\ngrifting\\ngrifts\\ngrig\\ngrigri\\ngrigris\\ngrigs\\ngrill\\ngrillade\\ngrillades\\ngrillage\\ngrillages\\ngrille\\ngrilled\\ngriller\\ngrillers\\ngrilles\\ngrilling\\ngrills\\ngrillwork\\ngrillworks\\ngrilse\\ngrilses\\ngrim\\ngrimace\\ngrimaced\\ngrimacer\\ngrimacers\\ngrimaces\\ngrimacing\\ngrime\\ngrimed\\ngrimes\\ngrimier\\ngrimiest\\ngrimily\\ngriming\\ngrimly\\ngrimmer\\ngrimmest\\ngrimness\\ngrimnesses\\ngrimy\\ngrin\\ngrind\\ngrinded\\ngrinder\\ngrinderies\\ngrinders\\ngrindery\\ngrinding\\ngrinds\\ngrindstone\\ngrindstones\\ngringo\\ngringos\\ngrinned\\ngrinner\\ngrinners\\ngrinning\\ngrins\\ngrip\\ngripe\\ngriped\\ngriper\\ngripers\\ngripes\\ngripey\\ngripier\\ngripiest\\ngriping\\ngrippe\\ngripped\\ngripper\\ngrippers\\ngrippes\\ngrippier\\ngrippiest\\ngripping\\ngripple\\ngrippy\\ngrips\\ngripsack\\ngripsacks\\ngript\\ngripy\\ngriseous\\ngrisette\\ngrisettes\\ngriskin\\ngriskins\\ngrislier\\ngrisliest\\ngrisly\\ngrison\\ngrisons\\ngrist\\ngristle\\ngristles\\ngristlier\\ngristliest\\ngristly\\ngristmill\\ngristmills\\ngrists\\ngrit\\ngrith\\ngriths\\ngrits\\ngritted\\ngrittier\\ngrittiest\\ngrittily\\ngritting\\ngritty\\ngrivet\\ngrivets\\ngrizzle\\ngrizzled\\ngrizzler\\ngrizzlers\\ngrizzles\\ngrizzlier\\ngrizzlies\\ngrizzliest\\ngrizzling\\ngrizzly\\ngroan\\ngroaned\\ngroaner\\ngroaners\\ngroaning\\ngroans\\ngroat\\ngroats\\ngrocer\\ngroceries\\ngrocers\\ngrocery\\ngrog\\ngroggeries\\ngroggery\\ngroggier\\ngroggiest\\ngroggily\\ngrogginess\\ngrogginesses\\ngroggy\\ngrogram\\ngrograms\\ngrogs\\ngrogshop\\ngrogshops\\ngroin\\ngroined\\ngroining\\ngroins\\ngrommet\\ngrommets\\ngromwell\\ngromwells\\ngroom\\ngroomed\\ngroomer\\ngroomers\\ngrooming\\ngrooms\\ngroove\\ngrooved\\ngroover\\ngroovers\\ngrooves\\ngroovier\\ngrooviest\\ngrooving\\ngroovy\\ngrope\\ngroped\\ngroper\\ngropers\\ngropes\\ngroping\\ngrosbeak\\ngrosbeaks\\ngroschen\\ngross\\ngrossed\\ngrosser\\ngrossers\\ngrosses\\ngrossest\\ngrossing\\ngrossly\\ngrossness\\ngrossnesses\\ngrosz\\ngroszy\\ngrot\\ngrotesque\\ngrotesquely\\ngrots\\ngrotto\\ngrottoes\\ngrottos\\ngrouch\\ngrouched\\ngrouches\\ngrouchier\\ngrouchiest\\ngrouching\\ngrouchy\\nground\\ngrounded\\ngrounder\\ngrounders\\ngroundhog\\ngroundhogs\\ngrounding\\ngrounds\\ngroundwater\\ngroundwaters\\ngroundwork\\ngroundworks\\ngroup\\ngrouped\\ngrouper\\ngroupers\\ngroupie\\ngroupies\\ngrouping\\ngroupings\\ngroupoid\\ngroupoids\\ngroups\\ngrouse\\ngroused\\ngrouser\\ngrousers\\ngrouses\\ngrousing\\ngrout\\ngrouted\\ngrouter\\ngrouters\\ngroutier\\ngroutiest\\ngrouting\\ngrouts\\ngrouty\\ngrove\\ngroved\\ngrovel\\ngroveled\\ngroveler\\ngrovelers\\ngroveling\\ngrovelled\\ngrovelling\\ngrovels\\ngroves\\ngrow\\ngrowable\\ngrower\\ngrowers\\ngrowing\\ngrowl\\ngrowled\\ngrowler\\ngrowlers\\ngrowlier\\ngrowliest\\ngrowling\\ngrowls\\ngrowly\\ngrown\\ngrownup\\ngrownups\\ngrows\\ngrowth\\ngrowths\\ngroyne\\ngroynes\\ngrub\\ngrubbed\\ngrubber\\ngrubbers\\ngrubbier\\ngrubbiest\\ngrubbily\\ngrubbiness\\ngrubbinesses\\ngrubbing\\ngrubby\\ngrubs\\ngrubstake\\ngrubstakes\\ngrubworm\\ngrubworms\\ngrudge\\ngrudged\\ngrudger\\ngrudgers\\ngrudges\\ngrudging\\ngruel\\ngrueled\\ngrueler\\ngruelers\\ngrueling\\ngruelings\\ngruelled\\ngrueller\\ngruellers\\ngruelling\\ngruellings\\ngruels\\ngruesome\\ngruesomer\\ngruesomest\\ngruff\\ngruffed\\ngruffer\\ngruffest\\ngruffier\\ngruffiest\\ngruffily\\ngruffing\\ngruffish\\ngruffly\\ngruffs\\ngruffy\\ngrugru\\ngrugrus\\ngrum\\ngrumble\\ngrumbled\\ngrumbler\\ngrumblers\\ngrumbles\\ngrumbling\\ngrumbly\\ngrume\\ngrumes\\ngrummer\\ngrummest\\ngrummet\\ngrummets\\ngrumose\\ngrumous\\ngrump\\ngrumped\\ngrumphie\\ngrumphies\\ngrumphy\\ngrumpier\\ngrumpiest\\ngrumpily\\ngrumping\\ngrumpish\\ngrumps\\ngrumpy\\ngrunion\\ngrunions\\ngrunt\\ngrunted\\ngrunter\\ngrunters\\ngrunting\\ngruntle\\ngruntled\\ngruntles\\ngruntling\\ngrunts\\ngrushie\\ngrutch\\ngrutched\\ngrutches\\ngrutching\\ngrutten\\ngryphon\\ngryphons\\nguacharo\\nguacharoes\\nguacharos\\nguaco\\nguacos\\nguaiac\\nguaiacol\\nguaiacols\\nguaiacs\\nguaiacum\\nguaiacums\\nguaiocum\\nguaiocums\\nguan\\nguanaco\\nguanacos\\nguanase\\nguanases\\nguanidin\\nguanidins\\nguanin\\nguanine\\nguanines\\nguanins\\nguano\\nguanos\\nguans\\nguar\\nguarani\\nguaranies\\nguaranis\\nguarantee\\nguarantees\\nguarantied\\nguaranties\\nguarantor\\nguaranty\\nguarantying\\nguard\\nguardant\\nguardants\\nguarded\\nguarder\\nguarders\\nguardhouse\\nguardhouses\\nguardian\\nguardians\\nguardianship\\nguardianships\\nguarding\\nguardroom\\nguardrooms\\nguards\\nguars\\nguava\\nguavas\\nguayule\\nguayules\\ngubernatorial\\nguck\\ngucks\\ngude\\ngudes\\ngudgeon\\ngudgeoned\\ngudgeoning\\ngudgeons\\nguenon\\nguenons\\nguerdon\\nguerdoned\\nguerdoning\\nguerdons\\nguerilla\\nguerillas\\nguernsey\\nguernseys\\nguess\\nguessed\\nguesser\\nguessers\\nguesses\\nguessing\\nguest\\nguested\\nguesting\\nguests\\nguff\\nguffaw\\nguffawed\\nguffawing\\nguffaws\\nguffs\\nguggle\\nguggled\\nguggles\\nguggling\\nguglet\\nguglets\\nguid\\nguidable\\nguidance\\nguidances\\nguide\\nguidebook\\nguidebooks\\nguided\\nguideline\\nguidelines\\nguider\\nguiders\\nguides\\nguiding\\nguidon\\nguidons\\nguids\\nguild\\nguilder\\nguilders\\nguilds\\nguile\\nguiled\\nguileful\\nguileless\\nguilelessness\\nguilelessnesses\\nguiles\\nguiling\\nguillotine\\nguillotined\\nguillotines\\nguillotining\\nguilt\\nguiltier\\nguiltiest\\nguiltily\\nguiltiness\\nguiltinesses\\nguilts\\nguilty\\nguimpe\\nguimpes\\nguinea\\nguineas\\nguipure\\nguipures\\nguiro\\nguisard\\nguisards\\nguise\\nguised\\nguises\\nguising\\nguitar\\nguitars\\ngul\\ngular\\ngulch\\ngulches\\ngulden\\nguldens\\ngules\\ngulf\\ngulfed\\ngulfier\\ngulfiest\\ngulfing\\ngulflike\\ngulfs\\ngulfweed\\ngulfweeds\\ngulfy\\ngull\\ngullable\\ngullably\\ngulled\\ngullet\\ngullets\\ngulley\\ngulleys\\ngullible\\ngullibly\\ngullied\\ngullies\\ngulling\\ngulls\\ngully\\ngullying\\ngulosities\\ngulosity\\ngulp\\ngulped\\ngulper\\ngulpers\\ngulpier\\ngulpiest\\ngulping\\ngulps\\ngulpy\\nguls\\ngum\\ngumbo\\ngumboil\\ngumboils\\ngumbos\\ngumbotil\\ngumbotils\\ngumdrop\\ngumdrops\\ngumless\\ngumlike\\ngumma\\ngummas\\ngummata\\ngummed\\ngummer\\ngummers\\ngummier\\ngummiest\\ngumming\\ngummite\\ngummites\\ngummose\\ngummoses\\ngummosis\\ngummous\\ngummy\\ngumption\\ngumptions\\ngums\\ngumshoe\\ngumshoed\\ngumshoeing\\ngumshoes\\ngumtree\\ngumtrees\\ngumweed\\ngumweeds\\ngumwood\\ngumwoods\\ngun\\ngunboat\\ngunboats\\ngundog\\ngundogs\\ngunfight\\ngunfighter\\ngunfighters\\ngunfighting\\ngunfights\\ngunfire\\ngunfires\\ngunflint\\ngunflints\\ngunfought\\ngunk\\ngunks\\ngunless\\ngunlock\\ngunlocks\\ngunman\\ngunmen\\ngunmetal\\ngunmetals\\ngunned\\ngunnel\\ngunnels\\ngunnen\\ngunner\\ngunneries\\ngunners\\ngunnery\\ngunnies\\ngunning\\ngunnings\\ngunny\\ngunpaper\\ngunpapers\\ngunplay\\ngunplays\\ngunpoint\\ngunpoints\\ngunpowder\\ngunpowders\\ngunroom\\ngunrooms\\nguns\\ngunsel\\ngunsels\\ngunship\\ngunships\\ngunshot\\ngunshots\\ngunslinger\\ngunslingers\\ngunsmith\\ngunsmiths\\ngunstock\\ngunstocks\\ngunwale\\ngunwales\\nguppies\\nguppy\\ngurge\\ngurged\\ngurges\\ngurging\\ngurgle\\ngurgled\\ngurgles\\ngurglet\\ngurglets\\ngurgling\\ngurnard\\ngurnards\\ngurnet\\ngurnets\\ngurney\\ngurneys\\ngurries\\ngurry\\ngursh\\ngurshes\\nguru\\ngurus\\nguruship\\nguruships\\ngush\\ngushed\\ngusher\\ngushers\\ngushes\\ngushier\\ngushiest\\ngushily\\ngushing\\ngushy\\ngusset\\ngusseted\\ngusseting\\ngussets\\ngust\\ngustable\\ngustables\\ngustatory\\ngusted\\ngustier\\ngustiest\\ngustily\\ngusting\\ngustless\\ngusto\\ngustoes\\ngusts\\ngusty\\ngut\\ngutless\\ngutlike\\nguts\\ngutsier\\ngutsiest\\ngutsy\\ngutta\\nguttae\\nguttate\\nguttated\\ngutted\\ngutter\\nguttered\\nguttering\\ngutters\\nguttery\\nguttier\\nguttiest\\ngutting\\nguttle\\nguttled\\nguttler\\nguttlers\\nguttles\\nguttling\\nguttural\\ngutturals\\ngutty\\nguy\\nguyed\\nguyer\\nguying\\nguyot\\nguyots\\nguys\\nguzzle\\nguzzled\\nguzzler\\nguzzlers\\nguzzles\\nguzzling\\ngweduc\\ngweduck\\ngweducks\\ngweducs\\ngybe\\ngybed\\ngyber\\ngybes\\ngybing\\ngym\\ngymkhana\\ngymkhanas\\ngymnasia\\ngymnasium\\ngymnasiums\\ngymnast\\ngymnastic\\ngymnastics\\ngymnasts\\ngyms\\ngynaecea\\ngynaecia\\ngynandries\\ngynandry\\ngynarchies\\ngynarchy\\ngynecia\\ngynecic\\ngynecium\\ngynecoid\\ngynecologic\\ngynecological\\ngynecologies\\ngynecologist\\ngynecologists\\ngynecology\\ngynecomastia\\ngynecomasty\\ngyniatries\\ngyniatry\\ngynoecia\\ngyp\\ngypped\\ngypper\\ngyppers\\ngypping\\ngyps\\ngypseian\\ngypseous\\ngypsied\\ngypsies\\ngypsum\\ngypsums\\ngypsy\\ngypsydom\\ngypsydoms\\ngypsying\\ngypsyish\\ngypsyism\\ngypsyisms\\ngyral\\ngyrally\\ngyrate\\ngyrated\\ngyrates\\ngyrating\\ngyration\\ngyrations\\ngyrator\\ngyrators\\ngyratory\\ngyre\\ngyred\\ngyrene\\ngyrenes\\ngyres\\ngyri\\ngyring\\ngyro\\ngyrocompass\\ngyrocompasses\\ngyroidal\\ngyron\\ngyrons\\ngyros\\ngyroscope\\ngyroscopes\\ngyrose\\ngyrostat\\ngyrostats\\ngyrus\\ngyve\\ngyved\\ngyves\\ngyving\\nha\\nhaaf\\nhaafs\\nhaar\\nhaars\\nhabanera\\nhabaneras\\nhabdalah\\nhabdalahs\\nhaberdasher\\nhaberdasheries\\nhaberdashers\\nhaberdashery\\nhabile\\nhabit\\nhabitable\\nhabitan\\nhabitans\\nhabitant\\nhabitants\\nhabitat\\nhabitation\\nhabitations\\nhabitats\\nhabited\\nhabiting\\nhabits\\nhabitual\\nhabitually\\nhabitualness\\nhabitualnesses\\nhabituate\\nhabituated\\nhabituates\\nhabituating\\nhabitude\\nhabitudes\\nhabitue\\nhabitues\\nhabitus\\nhabu\\nhabus\\nhacek\\nhaceks\\nhachure\\nhachured\\nhachures\\nhachuring\\nhacienda\\nhaciendas\\nhack\\nhackbut\\nhackbuts\\nhacked\\nhackee\\nhackees\\nhacker\\nhackers\\nhackie\\nhackies\\nhacking\\nhackle\\nhackled\\nhackler\\nhacklers\\nhackles\\nhacklier\\nhackliest\\nhackling\\nhackly\\nhackman\\nhackmen\\nhackney\\nhackneyed\\nhackneying\\nhackneys\\nhacks\\nhacksaw\\nhacksaws\\nhackwork\\nhackworks\\nhad\\nhadal\\nhadarim\\nhaddest\\nhaddock\\nhaddocks\\nhade\\nhaded\\nhades\\nhading\\nhadj\\nhadjee\\nhadjees\\nhadjes\\nhadji\\nhadjis\\nhadjs\\nhadron\\nhadronic\\nhadrons\\nhadst\\nhae\\nhaed\\nhaeing\\nhaem\\nhaemal\\nhaematal\\nhaematic\\nhaematics\\nhaematin\\nhaematins\\nhaemic\\nhaemin\\nhaemins\\nhaemoid\\nhaems\\nhaen\\nhaeredes\\nhaeres\\nhaes\\nhaet\\nhaets\\nhaffet\\nhaffets\\nhaffit\\nhaffits\\nhafis\\nhafiz\\nhafnium\\nhafniums\\nhaft\\nhaftarah\\nhaftarahs\\nhaftarot\\nhaftaroth\\nhafted\\nhafter\\nhafters\\nhafting\\nhaftorah\\nhaftorahs\\nhaftorot\\nhaftoroth\\nhafts\\nhag\\nhagadic\\nhagadist\\nhagadists\\nhagberries\\nhagberry\\nhagborn\\nhagbush\\nhagbushes\\nhagbut\\nhagbuts\\nhagdon\\nhagdons\\nhagfish\\nhagfishes\\nhaggadic\\nhaggard\\nhaggardly\\nhaggards\\nhagged\\nhagging\\nhaggis\\nhaggises\\nhaggish\\nhaggle\\nhaggled\\nhaggler\\nhagglers\\nhaggles\\nhaggling\\nhagridden\\nhagride\\nhagrides\\nhagriding\\nhagrode\\nhags\\nhah\\nhahs\\nhaik\\nhaika\\nhaiks\\nhaiku\\nhail\\nhailed\\nhailer\\nhailers\\nhailing\\nhails\\nhailstone\\nhailstones\\nhailstorm\\nhailstorms\\nhaily\\nhair\\nhairball\\nhairballs\\nhairband\\nhairbands\\nhairbreadth\\nhairbreadths\\nhairbrush\\nhairbrushes\\nhaircap\\nhaircaps\\nhaircut\\nhaircuts\\nhairdo\\nhairdos\\nhairdresser\\nhairdressers\\nhaired\\nhairier\\nhairiest\\nhairiness\\nhairinesses\\nhairless\\nhairlike\\nhairline\\nhairlines\\nhairlock\\nhairlocks\\nhairpiece\\nhairpieces\\nhairpin\\nhairpins\\nhairs\\nhairsbreadth\\nhairsbreadths\\nhairstyle\\nhairstyles\\nhairstyling\\nhairstylings\\nhairstylist\\nhairstylists\\nhairwork\\nhairworks\\nhairworm\\nhairworms\\nhairy\\nhaj\\nhajes\\nhaji\\nhajis\\nhajj\\nhajjes\\nhajji\\nhajjis\\nhajjs\\nhake\\nhakeem\\nhakeems\\nhakes\\nhakim\\nhakims\\nhalakah\\nhalakahs\\nhalakic\\nhalakist\\nhalakists\\nhalakoth\\nhalala\\nhalalah\\nhalalahs\\nhalalas\\nhalation\\nhalations\\nhalavah\\nhalavahs\\nhalazone\\nhalazones\\nhalberd\\nhalberds\\nhalbert\\nhalberts\\nhalcyon\\nhalcyons\\nhale\\nhaled\\nhaleness\\nhalenesses\\nhaler\\nhalers\\nhaleru\\nhales\\nhalest\\nhalf\\nhalfback\\nhalfbacks\\nhalfbeak\\nhalfbeaks\\nhalfhearted\\nhalfheartedly\\nhalfheartedness\\nhalfheartednesses\\nhalflife\\nhalflives\\nhalfness\\nhalfnesses\\nhalftime\\nhalftimes\\nhalftone\\nhalftones\\nhalfway\\nhalibut\\nhalibuts\\nhalid\\nhalide\\nhalides\\nhalidom\\nhalidome\\nhalidomes\\nhalidoms\\nhalids\\nhaling\\nhalite\\nhalites\\nhalitosis\\nhalitosises\\nhalitus\\nhalituses\\nhall\\nhallah\\nhallahs\\nhallel\\nhallels\\nhalliard\\nhalliards\\nhallmark\\nhallmarked\\nhallmarking\\nhallmarks\\nhallo\\nhalloa\\nhalloaed\\nhalloaing\\nhalloas\\nhalloed\\nhalloes\\nhalloing\\nhalloo\\nhallooed\\nhallooing\\nhalloos\\nhallos\\nhallot\\nhalloth\\nhallow\\nhallowed\\nhallower\\nhallowers\\nhallowing\\nhallows\\nhalls\\nhalluces\\nhallucinate\\nhallucinated\\nhallucinates\\nhallucinating\\nhallucination\\nhallucinations\\nhallucinative\\nhallucinatory\\nhallucinogen\\nhallucinogenic\\nhallucinogens\\nhallux\\nhallway\\nhallways\\nhalm\\nhalms\\nhalo\\nhaloed\\nhalogen\\nhalogens\\nhaloid\\nhaloids\\nhaloing\\nhalolike\\nhalos\\nhalt\\nhalted\\nhalter\\nhaltere\\nhaltered\\nhalteres\\nhaltering\\nhalters\\nhalting\\nhaltingly\\nhaltless\\nhalts\\nhalutz\\nhalutzim\\nhalva\\nhalvah\\nhalvahs\\nhalvas\\nhalve\\nhalved\\nhalvers\\nhalves\\nhalving\\nhalyard\\nhalyards\\nham\\nhamal\\nhamals\\nhamartia\\nhamartias\\nhamate\\nhamates\\nhamaul\\nhamauls\\nhamburg\\nhamburger\\nhamburgers\\nhamburgs\\nhame\\nhames\\nhamlet\\nhamlets\\nhammal\\nhammals\\nhammed\\nhammer\\nhammered\\nhammerer\\nhammerers\\nhammerhead\\nhammerheads\\nhammering\\nhammers\\nhammier\\nhammiest\\nhammily\\nhamming\\nhammock\\nhammocks\\nhammy\\nhamper\\nhampered\\nhamperer\\nhamperers\\nhampering\\nhampers\\nhams\\nhamster\\nhamsters\\nhamstring\\nhamstringing\\nhamstrings\\nhamstrung\\nhamular\\nhamulate\\nhamuli\\nhamulose\\nhamulous\\nhamulus\\nhamza\\nhamzah\\nhamzahs\\nhamzas\\nhanaper\\nhanapers\\nhance\\nhances\\nhand\\nhandbag\\nhandbags\\nhandball\\nhandballs\\nhandbill\\nhandbills\\nhandbook\\nhandbooks\\nhandcar\\nhandcars\\nhandcart\\nhandcarts\\nhandclasp\\nhandclasps\\nhandcraft\\nhandcrafted\\nhandcrafting\\nhandcrafts\\nhandcuff\\nhandcuffed\\nhandcuffing\\nhandcuffs\\nhanded\\nhandfast\\nhandfasted\\nhandfasting\\nhandfasts\\nhandful\\nhandfuls\\nhandgrip\\nhandgrips\\nhandgun\\nhandguns\\nhandhold\\nhandholds\\nhandicap\\nhandicapped\\nhandicapper\\nhandicappers\\nhandicapping\\nhandicaps\\nhandicrafsman\\nhandicrafsmen\\nhandicraft\\nhandicrafter\\nhandicrafters\\nhandicrafts\\nhandier\\nhandiest\\nhandily\\nhandiness\\nhandinesses\\nhanding\\nhandiwork\\nhandiworks\\nhandkerchief\\nhandkerchiefs\\nhandle\\nhandled\\nhandler\\nhandlers\\nhandles\\nhandless\\nhandlike\\nhandling\\nhandlings\\nhandlist\\nhandlists\\nhandloom\\nhandlooms\\nhandmade\\nhandmaid\\nhandmaiden\\nhandmaidens\\nhandmaids\\nhandoff\\nhandoffs\\nhandout\\nhandouts\\nhandpick\\nhandpicked\\nhandpicking\\nhandpicks\\nhandrail\\nhandrails\\nhands\\nhandsaw\\nhandsaws\\nhandsel\\nhandseled\\nhandseling\\nhandselled\\nhandselling\\nhandsels\\nhandset\\nhandsets\\nhandsewn\\nhandsful\\nhandshake\\nhandshakes\\nhandsome\\nhandsomely\\nhandsomeness\\nhandsomenesses\\nhandsomer\\nhandsomest\\nhandspring\\nhandsprings\\nhandstand\\nhandstands\\nhandwork\\nhandworks\\nhandwoven\\nhandwrit\\nhandwriting\\nhandwritings\\nhandwritten\\nhandy\\nhandyman\\nhandymen\\nhang\\nhangable\\nhangar\\nhangared\\nhangaring\\nhangars\\nhangbird\\nhangbirds\\nhangdog\\nhangdogs\\nhanged\\nhanger\\nhangers\\nhangfire\\nhangfires\\nhanging\\nhangings\\nhangman\\nhangmen\\nhangnail\\nhangnails\\nhangnest\\nhangnests\\nhangout\\nhangouts\\nhangover\\nhangovers\\nhangs\\nhangtag\\nhangtags\\nhangup\\nhangups\\nhank\\nhanked\\nhanker\\nhankered\\nhankerer\\nhankerers\\nhankering\\nhankers\\nhankie\\nhankies\\nhanking\\nhanks\\nhanky\\nhanse\\nhansel\\nhanseled\\nhanseling\\nhanselled\\nhanselling\\nhansels\\nhanses\\nhansom\\nhansoms\\nhant\\nhanted\\nhanting\\nhantle\\nhantles\\nhants\\nhanuman\\nhanumans\\nhaole\\nhaoles\\nhap\\nhapax\\nhapaxes\\nhaphazard\\nhaphazardly\\nhapless\\nhaplessly\\nhaplessness\\nhaplessnesses\\nhaplite\\nhaplites\\nhaploid\\nhaploidies\\nhaploids\\nhaploidy\\nhaplont\\nhaplonts\\nhaplopia\\nhaplopias\\nhaploses\\nhaplosis\\nhaply\\nhapped\\nhappen\\nhappened\\nhappening\\nhappenings\\nhappens\\nhappier\\nhappiest\\nhappily\\nhappiness\\nhapping\\nhappy\\nhaps\\nhapten\\nhaptene\\nhaptenes\\nhaptenic\\nhaptens\\nhaptic\\nhaptical\\nharangue\\nharangued\\nharanguer\\nharanguers\\nharangues\\nharanguing\\nharass\\nharassed\\nharasser\\nharassers\\nharasses\\nharassing\\nharassness\\nharassnesses\\nharbinger\\nharbingers\\nharbor\\nharbored\\nharborer\\nharborers\\nharboring\\nharbors\\nharbour\\nharboured\\nharbouring\\nharbours\\nhard\\nhardback\\nhardbacks\\nhardball\\nhardballs\\nhardboot\\nhardboots\\nhardcase\\nhardcore\\nharden\\nhardened\\nhardener\\nhardeners\\nhardening\\nhardens\\nharder\\nhardest\\nhardhack\\nhardhacks\\nhardhat\\nhardhats\\nhardhead\\nhardheaded\\nhardheadedly\\nhardheadedness\\nhardheads\\nhardhearted\\nhardheartedly\\nhardheartedness\\nhardheartednesses\\nhardier\\nhardies\\nhardiest\\nhardily\\nhardiness\\nhardinesses\\nhardly\\nhardness\\nhardnesses\\nhardpan\\nhardpans\\nhards\\nhardset\\nhardship\\nhardships\\nhardtack\\nhardtacks\\nhardtop\\nhardtops\\nhardware\\nhardwares\\nhardwood\\nhardwoods\\nhardy\\nhare\\nharebell\\nharebells\\nhared\\nhareem\\nhareems\\nharelike\\nharelip\\nharelipped\\nharelips\\nharem\\nharems\\nhares\\nhariana\\nharianas\\nharicot\\nharicots\\nharijan\\nharijans\\nharing\\nhark\\nharked\\nharken\\nharkened\\nharkener\\nharkeners\\nharkening\\nharkens\\nharking\\nharks\\nharl\\nharlequin\\nharlequins\\nharlot\\nharlotries\\nharlotry\\nharlots\\nharls\\nharm\\nharmed\\nharmer\\nharmers\\nharmful\\nharmfully\\nharmfulness\\nharmfulnesses\\nharmin\\nharmine\\nharmines\\nharming\\nharmins\\nharmless\\nharmlessly\\nharmlessness\\nharmlessnesses\\nharmonic\\nharmonica\\nharmonically\\nharmonicas\\nharmonics\\nharmonies\\nharmonious\\nharmoniously\\nharmoniousness\\nharmoniousnesses\\nharmonization\\nharmonizations\\nharmonize\\nharmonized\\nharmonizes\\nharmonizing\\nharmony\\nharms\\nharness\\nharnessed\\nharnesses\\nharnessing\\nharp\\nharped\\nharper\\nharpers\\nharpies\\nharpin\\nharping\\nharpings\\nharpins\\nharpist\\nharpists\\nharpoon\\nharpooned\\nharpooner\\nharpooners\\nharpooning\\nharpoons\\nharps\\nharpsichord\\nharpsichords\\nharpy\\nharridan\\nharridans\\nharried\\nharrier\\nharriers\\nharries\\nharrow\\nharrowed\\nharrower\\nharrowers\\nharrowing\\nharrows\\nharrumph\\nharrumphed\\nharrumphing\\nharrumphs\\nharry\\nharrying\\nharsh\\nharshen\\nharshened\\nharshening\\nharshens\\nharsher\\nharshest\\nharshly\\nharshness\\nharshnesses\\nharslet\\nharslets\\nhart\\nhartal\\nhartals\\nharts\\nharuspex\\nharuspices\\nharvest\\nharvested\\nharvester\\nharvesters\\nharvesting\\nharvests\\nhas\\nhash\\nhashed\\nhasheesh\\nhasheeshes\\nhashes\\nhashing\\nhashish\\nhashishes\\nhaslet\\nhaslets\\nhasp\\nhasped\\nhasping\\nhasps\\nhassel\\nhassels\\nhassle\\nhassled\\nhassles\\nhassling\\nhassock\\nhassocks\\nhast\\nhastate\\nhaste\\nhasted\\nhasteful\\nhasten\\nhastened\\nhastener\\nhasteners\\nhastening\\nhastens\\nhastes\\nhastier\\nhastiest\\nhastily\\nhasting\\nhasty\\nhat\\nhatable\\nhatband\\nhatbands\\nhatbox\\nhatboxes\\nhatch\\nhatcheck\\nhatched\\nhatchel\\nhatcheled\\nhatcheling\\nhatchelled\\nhatchelling\\nhatchels\\nhatcher\\nhatcheries\\nhatchers\\nhatchery\\nhatches\\nhatchet\\nhatchets\\nhatching\\nhatchings\\nhatchway\\nhatchways\\nhate\\nhateable\\nhated\\nhateful\\nhatefullness\\nhatefullnesses\\nhater\\nhaters\\nhates\\nhatful\\nhatfuls\\nhath\\nhating\\nhatless\\nhatlike\\nhatmaker\\nhatmakers\\nhatpin\\nhatpins\\nhatrack\\nhatracks\\nhatred\\nhatreds\\nhats\\nhatsful\\nhatted\\nhatter\\nhatteria\\nhatterias\\nhatters\\nhatting\\nhauberk\\nhauberks\\nhaugh\\nhaughs\\nhaughtier\\nhaughtiest\\nhaughtily\\nhaughtiness\\nhaughtinesses\\nhaughty\\nhaul\\nhaulage\\nhaulages\\nhauled\\nhauler\\nhaulers\\nhaulier\\nhauliers\\nhauling\\nhaulm\\nhaulmier\\nhaulmiest\\nhaulms\\nhaulmy\\nhauls\\nhaulyard\\nhaulyards\\nhaunch\\nhaunched\\nhaunches\\nhaunt\\nhaunted\\nhaunter\\nhaunters\\nhaunting\\nhauntingly\\nhaunts\\nhausen\\nhausens\\nhausfrau\\nhausfrauen\\nhausfraus\\nhautbois\\nhautboy\\nhautboys\\nhauteur\\nhauteurs\\nhavdalah\\nhavdalahs\\nhave\\nhavelock\\nhavelocks\\nhaven\\nhavened\\nhavening\\nhavens\\nhaver\\nhavered\\nhaverel\\nhaverels\\nhavering\\nhavers\\nhaves\\nhaving\\nhavior\\nhaviors\\nhaviour\\nhaviours\\nhavoc\\nhavocked\\nhavocker\\nhavockers\\nhavocking\\nhavocs\\nhaw\\nhawed\\nhawfinch\\nhawfinches\\nhawing\\nhawk\\nhawkbill\\nhawkbills\\nhawked\\nhawker\\nhawkers\\nhawkey\\nhawkeys\\nhawkie\\nhawkies\\nhawking\\nhawkings\\nhawkish\\nhawklike\\nhawkmoth\\nhawkmoths\\nhawknose\\nhawknoses\\nhawks\\nhawkshaw\\nhawkshaws\\nhawkweed\\nhawkweeds\\nhaws\\nhawse\\nhawser\\nhawsers\\nhawses\\nhawthorn\\nhawthorns\\nhay\\nhaycock\\nhaycocks\\nhayed\\nhayer\\nhayers\\nhayfork\\nhayforks\\nhaying\\nhayings\\nhaylage\\nhaylages\\nhayloft\\nhaylofts\\nhaymaker\\nhaymakers\\nhaymow\\nhaymows\\nhayrack\\nhayracks\\nhayrick\\nhayricks\\nhayride\\nhayrides\\nhays\\nhayseed\\nhayseeds\\nhaystack\\nhaystacks\\nhayward\\nhaywards\\nhaywire\\nhaywires\\nhazan\\nhazanim\\nhazans\\nhazard\\nhazarded\\nhazarding\\nhazardous\\nhazards\\nhaze\\nhazed\\nhazel\\nhazelly\\nhazelnut\\nhazelnuts\\nhazels\\nhazer\\nhazers\\nhazes\\nhazier\\nhaziest\\nhazily\\nhaziness\\nhazinesses\\nhazing\\nhazings\\nhazy\\nhazzan\\nhazzanim\\nhazzans\\nhe\\nhead\\nheadache\\nheadaches\\nheadachier\\nheadachiest\\nheadachy\\nheadband\\nheadbands\\nheaddress\\nheaddresses\\nheaded\\nheader\\nheaders\\nheadfirst\\nheadgate\\nheadgates\\nheadgear\\nheadgears\\nheadhunt\\nheadhunted\\nheadhunting\\nheadhunts\\nheadier\\nheadiest\\nheadily\\nheading\\nheadings\\nheadlamp\\nheadlamps\\nheadland\\nheadlands\\nheadless\\nheadlight\\nheadlights\\nheadline\\nheadlined\\nheadlines\\nheadlining\\nheadlock\\nheadlocks\\nheadlong\\nheadman\\nheadmaster\\nheadmasters\\nheadmen\\nheadmistress\\nheadmistresses\\nheadmost\\nheadnote\\nheadnotes\\nheadphone\\nheadphones\\nheadpin\\nheadpins\\nheadquarter\\nheadquartered\\nheadquartering\\nheadquarters\\nheadrace\\nheadraces\\nheadrest\\nheadrests\\nheadroom\\nheadrooms\\nheads\\nheadsail\\nheadsails\\nheadset\\nheadsets\\nheadship\\nheadships\\nheadsman\\nheadsmen\\nheadstay\\nheadstays\\nheadstone\\nheadstones\\nheadstrong\\nheadwaiter\\nheadwaiters\\nheadwater\\nheadwaters\\nheadway\\nheadways\\nheadwind\\nheadwinds\\nheadword\\nheadwords\\nheadwork\\nheadworks\\nheady\\nheal\\nhealable\\nhealed\\nhealer\\nhealers\\nhealing\\nheals\\nhealth\\nhealthful\\nhealthfully\\nhealthfulness\\nhealthfulnesses\\nhealthier\\nhealthiest\\nhealths\\nhealthy\\nheap\\nheaped\\nheaping\\nheaps\\nhear\\nhearable\\nheard\\nhearer\\nhearers\\nhearing\\nhearings\\nhearken\\nhearkened\\nhearkening\\nhearkens\\nhears\\nhearsay\\nhearsays\\nhearse\\nhearsed\\nhearses\\nhearsing\\nheart\\nheartache\\nheartaches\\nheartbeat\\nheartbeats\\nheartbreak\\nheartbreaking\\nheartbreaks\\nheartbroken\\nheartburn\\nheartburns\\nhearted\\nhearten\\nheartened\\nheartening\\nheartens\\nhearth\\nhearths\\nhearthstone\\nhearthstones\\nheartier\\nhearties\\nheartiest\\nheartily\\nheartiness\\nheartinesses\\nhearting\\nheartless\\nheartrending\\nhearts\\nheartsick\\nheartsickness\\nheartsicknesses\\nheartstrings\\nheartthrob\\nheartthrobs\\nheartwarming\\nheartwood\\nheartwoods\\nhearty\\nheat\\nheatable\\nheated\\nheatedly\\nheater\\nheaters\\nheath\\nheathen\\nheathens\\nheather\\nheathers\\nheathery\\nheathier\\nheathiest\\nheaths\\nheathy\\nheating\\nheatless\\nheats\\nheatstroke\\nheatstrokes\\nheaume\\nheaumes\\nheave\\nheaved\\nheaven\\nheavenlier\\nheavenliest\\nheavenly\\nheavens\\nheavenward\\nheaver\\nheavers\\nheaves\\nheavier\\nheavies\\nheaviest\\nheavily\\nheaviness\\nheavinesses\\nheaving\\nheavy\\nheavyset\\nheavyweight\\nheavyweights\\nhebdomad\\nhebdomads\\nhebetate\\nhebetated\\nhebetates\\nhebetating\\nhebetic\\nhebetude\\nhebetudes\\nhebraize\\nhebraized\\nhebraizes\\nhebraizing\\nhecatomb\\nhecatombs\\nheck\\nheckle\\nheckled\\nheckler\\nhecklers\\nheckles\\nheckling\\nhecks\\nhectare\\nhectares\\nhectic\\nhectical\\nhectically\\nhecticly\\nhector\\nhectored\\nhectoring\\nhectors\\nheddle\\nheddles\\nheder\\nheders\\nhedge\\nhedged\\nhedgehog\\nhedgehogs\\nhedgehop\\nhedgehopped\\nhedgehopping\\nhedgehops\\nhedgepig\\nhedgepigs\\nhedger\\nhedgerow\\nhedgerows\\nhedgers\\nhedges\\nhedgier\\nhedgiest\\nhedging\\nhedgy\\nhedonic\\nhedonics\\nhedonism\\nhedonisms\\nhedonist\\nhedonistic\\nhedonists\\nheed\\nheeded\\nheeder\\nheeders\\nheedful\\nheedfully\\nheedfulness\\nheedfulnesses\\nheeding\\nheedless\\nheedlessly\\nheedlessness\\nheedlessnesses\\nheeds\\nheehaw\\nheehawed\\nheehawing\\nheehaws\\nheel\\nheelball\\nheelballs\\nheeled\\nheeler\\nheelers\\nheeling\\nheelings\\nheelless\\nheelpost\\nheelposts\\nheels\\nheeltap\\nheeltaps\\nheeze\\nheezed\\nheezes\\nheezing\\nheft\\nhefted\\nhefter\\nhefters\\nheftier\\nheftiest\\nheftily\\nhefting\\nhefts\\nhefty\\nhegari\\nhegaris\\nhegemonies\\nhegemony\\nhegira\\nhegiras\\nhegumen\\nhegumene\\nhegumenes\\nhegumenies\\nhegumens\\nhegumeny\\nheifer\\nheifers\\nheigh\\nheight\\nheighten\\nheightened\\nheightening\\nheightens\\nheighth\\nheighths\\nheights\\nheil\\nheiled\\nheiling\\nheils\\nheinie\\nheinies\\nheinous\\nheinously\\nheinousness\\nheinousnesses\\nheir\\nheirdom\\nheirdoms\\nheired\\nheiress\\nheiresses\\nheiring\\nheirless\\nheirloom\\nheirlooms\\nheirs\\nheirship\\nheirships\\nheist\\nheisted\\nheister\\nheisters\\nheisting\\nheists\\nhejira\\nhejiras\\nhektare\\nhektares\\nheld\\nheliac\\nheliacal\\nheliast\\nheliasts\\nhelical\\nhelices\\nhelicities\\nhelicity\\nhelicoid\\nhelicoids\\nhelicon\\nhelicons\\nhelicopt\\nhelicopted\\nhelicopter\\nhelicopters\\nhelicopting\\nhelicopts\\nhelio\\nhelios\\nheliotrope\\nhelipad\\nhelipads\\nheliport\\nheliports\\nhelistop\\nhelistops\\nhelium\\nheliums\\nhelix\\nhelixes\\nhell\\nhellbent\\nhellbox\\nhellboxes\\nhellcat\\nhellcats\\nhelled\\nheller\\nhelleri\\nhelleries\\nhellers\\nhellery\\nhellfire\\nhellfires\\nhellgrammite\\nhellgrammites\\nhellhole\\nhellholes\\nhelling\\nhellion\\nhellions\\nhellish\\nhellkite\\nhellkites\\nhello\\nhelloed\\nhelloes\\nhelloing\\nhellos\\nhells\\nhelluva\\nhelm\\nhelmed\\nhelmet\\nhelmeted\\nhelmeting\\nhelmets\\nhelming\\nhelminth\\nhelminths\\nhelmless\\nhelms\\nhelmsman\\nhelmsmen\\nhelot\\nhelotage\\nhelotages\\nhelotism\\nhelotisms\\nhelotries\\nhelotry\\nhelots\\nhelp\\nhelpable\\nhelped\\nhelper\\nhelpers\\nhelpful\\nhelpfully\\nhelpfulness\\nhelpfulnesses\\nhelping\\nhelpings\\nhelpless\\nhelplessly\\nhelplessness\\nhelplessnesses\\nhelpmate\\nhelpmates\\nhelpmeet\\nhelpmeets\\nhelps\\nhelve\\nhelved\\nhelves\\nhelving\\nhem\\nhemagog\\nhemagogs\\nhemal\\nhematal\\nhematein\\nhemateins\\nhematic\\nhematics\\nhematin\\nhematine\\nhematines\\nhematins\\nhematite\\nhematites\\nhematocrit\\nhematoid\\nhematologic\\nhematological\\nhematologies\\nhematologist\\nhematologists\\nhematology\\nhematoma\\nhematomas\\nhematomata\\nhematopenia\\nhematuria\\nheme\\nhemes\\nhemic\\nhemin\\nhemins\\nhemiola\\nhemiolas\\nhemipter\\nhemipters\\nhemisphere\\nhemispheres\\nhemispheric\\nhemispherical\\nhemline\\nhemlines\\nhemlock\\nhemlocks\\nhemmed\\nhemmer\\nhemmers\\nhemming\\nhemocoel\\nhemocoels\\nhemocyte\\nhemocytes\\nhemoglobin\\nhemoid\\nhemolyze\\nhemolyzed\\nhemolyzes\\nhemolyzing\\nhemophilia\\nhemophiliac\\nhemophiliacs\\nhemoptysis\\nhemorrhage\\nhemorrhaged\\nhemorrhages\\nhemorrhagic\\nhemorrhaging\\nhemorrhoids\\nhemostat\\nhemostats\\nhemp\\nhempen\\nhempie\\nhempier\\nhempiest\\nhemplike\\nhemps\\nhempseed\\nhempseeds\\nhempweed\\nhempweeds\\nhempy\\nhems\\nhen\\nhenbane\\nhenbanes\\nhenbit\\nhenbits\\nhence\\nhenceforth\\nhenceforward\\nhenchman\\nhenchmen\\nhencoop\\nhencoops\\nhenequen\\nhenequens\\nhenequin\\nhenequins\\nhenhouse\\nhenhouses\\nheniquen\\nheniquens\\nhenlike\\nhenna\\nhennaed\\nhennaing\\nhennas\\nhenneries\\nhennery\\nhenpeck\\nhenpecked\\nhenpecking\\nhenpecks\\nhenries\\nhenry\\nhenrys\\nhens\\nhent\\nhented\\nhenting\\nhents\\nhep\\nheparin\\nheparins\\nhepatic\\nhepatica\\nhepaticae\\nhepaticas\\nhepatics\\nhepatitis\\nhepatize\\nhepatized\\nhepatizes\\nhepatizing\\nhepatoma\\nhepatomas\\nhepatomata\\nhepatomegaly\\nhepcat\\nhepcats\\nheptad\\nheptads\\nheptagon\\nheptagons\\nheptane\\nheptanes\\nheptarch\\nheptarchs\\nheptose\\nheptoses\\nher\\nherald\\nheralded\\nheraldic\\nheralding\\nheraldries\\nheraldry\\nheralds\\nherb\\nherbaceous\\nherbage\\nherbages\\nherbal\\nherbals\\nherbaria\\nherbicidal\\nherbicide\\nherbicides\\nherbier\\nherbiest\\nherbivorous\\nherbivorously\\nherbless\\nherblike\\nherbs\\nherby\\nherculean\\nhercules\\nherculeses\\nherd\\nherded\\nherder\\nherders\\nherdic\\nherdics\\nherding\\nherdlike\\nherdman\\nherdmen\\nherds\\nherdsman\\nherdsmen\\nhere\\nhereabout\\nhereabouts\\nhereafter\\nhereafters\\nhereat\\nhereaway\\nhereby\\nheredes\\nhereditary\\nheredities\\nheredity\\nherein\\nhereinto\\nhereof\\nhereon\\nheres\\nheresies\\nheresy\\nheretic\\nheretical\\nheretics\\nhereto\\nheretofore\\nheretrices\\nheretrix\\nheretrixes\\nhereunder\\nhereunto\\nhereupon\\nherewith\\nheriot\\nheriots\\nheritage\\nheritages\\nheritor\\nheritors\\nheritrices\\nheritrix\\nheritrixes\\nherl\\nherls\\nherm\\nherma\\nhermae\\nhermaean\\nhermai\\nhermaphrodite\\nhermaphrodites\\nhermaphroditic\\nhermetic\\nhermetically\\nhermit\\nhermitic\\nhermitries\\nhermitry\\nhermits\\nherms\\nhern\\nhernia\\nherniae\\nhernial\\nhernias\\nherniate\\nherniated\\nherniates\\nherniating\\nherniation\\nherniations\\nherns\\nhero\\nheroes\\nheroic\\nheroical\\nheroics\\nheroin\\nheroine\\nheroines\\nheroins\\nheroism\\nheroisms\\nheroize\\nheroized\\nheroizes\\nheroizing\\nheron\\nheronries\\nheronry\\nherons\\nheros\\nherpes\\nherpeses\\nherpetic\\nherpetologic\\nherpetological\\nherpetologies\\nherpetologist\\nherpetologists\\nherpetology\\nherried\\nherries\\nherring\\nherrings\\nherry\\nherrying\\nhers\\nherself\\nhertz\\nhertzes\\nhes\\nhesitancies\\nhesitancy\\nhesitant\\nhesitantly\\nhesitate\\nhesitated\\nhesitates\\nhesitating\\nhesitation\\nhesitations\\nhessian\\nhessians\\nhessite\\nhessites\\nhest\\nhests\\nhet\\nhetaera\\nhetaerae\\nhetaeras\\nhetaeric\\nhetaira\\nhetairai\\nhetairas\\nhetero\\nheterogenous\\nheterogenously\\nheterogenousness\\nheterogenousnesses\\nheteros\\nheterosexual\\nheterosexuals\\nheth\\nheths\\nhetman\\nhetmans\\nheuch\\nheuchs\\nheugh\\nheughs\\nhew\\nhewable\\nhewed\\nhewer\\nhewers\\nhewing\\nhewn\\nhews\\nhex\\nhexad\\nhexade\\nhexades\\nhexadic\\nhexads\\nhexagon\\nhexagonal\\nhexagons\\nhexagram\\nhexagrams\\nhexamine\\nhexamines\\nhexane\\nhexanes\\nhexapla\\nhexaplar\\nhexaplas\\nhexapod\\nhexapodies\\nhexapods\\nhexapody\\nhexarchies\\nhexarchy\\nhexed\\nhexer\\nhexerei\\nhexereis\\nhexers\\nhexes\\nhexing\\nhexone\\nhexones\\nhexosan\\nhexosans\\nhexose\\nhexoses\\nhexyl\\nhexyls\\nhey\\nheyday\\nheydays\\nheydey\\nheydeys\\nhi\\nhiatal\\nhiatus\\nhiatuses\\nhibachi\\nhibachis\\nhibernal\\nhibernate\\nhibernated\\nhibernates\\nhibernating\\nhibernation\\nhibernations\\nhibernator\\nhibernators\\nhibiscus\\nhibiscuses\\nhic\\nhiccough\\nhiccoughed\\nhiccoughing\\nhiccoughs\\nhiccup\\nhiccuped\\nhiccuping\\nhiccupped\\nhiccupping\\nhiccups\\nhick\\nhickey\\nhickeys\\nhickories\\nhickory\\nhicks\\nhid\\nhidable\\nhidalgo\\nhidalgos\\nhidden\\nhiddenly\\nhide\\nhideaway\\nhideaways\\nhided\\nhideless\\nhideous\\nhideously\\nhideousness\\nhideousnesses\\nhideout\\nhideouts\\nhider\\nhiders\\nhides\\nhiding\\nhidings\\nhidroses\\nhidrosis\\nhidrotic\\nhie\\nhied\\nhieing\\nhiemal\\nhierarch\\nhierarchical\\nhierarchies\\nhierarchs\\nhierarchy\\nhieratic\\nhieroglyphic\\nhieroglyphics\\nhies\\nhiggle\\nhiggled\\nhiggler\\nhigglers\\nhiggles\\nhiggling\\nhigh\\nhighball\\nhighballed\\nhighballing\\nhighballs\\nhighborn\\nhighboy\\nhighboys\\nhighbred\\nhighbrow\\nhighbrows\\nhighbush\\nhighchair\\nhighchairs\\nhigher\\nhighest\\nhighjack\\nhighjacked\\nhighjacking\\nhighjacks\\nhighland\\nhighlander\\nhighlanders\\nhighlands\\nhighlight\\nhighlighted\\nhighlighting\\nhighlights\\nhighly\\nhighness\\nhighnesses\\nhighroad\\nhighroads\\nhighs\\nhight\\nhightail\\nhightailed\\nhightailing\\nhightails\\nhighted\\nhighth\\nhighths\\nhighting\\nhights\\nhighway\\nhighwayman\\nhighwaymen\\nhighways\\nhijack\\nhijacked\\nhijacker\\nhijackers\\nhijacking\\nhijacks\\nhijinks\\nhike\\nhiked\\nhiker\\nhikers\\nhikes\\nhiking\\nhila\\nhilar\\nhilarious\\nhilariously\\nhilarities\\nhilarity\\nhilding\\nhildings\\nhili\\nhill\\nhillbillies\\nhillbilly\\nhilled\\nhiller\\nhillers\\nhillier\\nhilliest\\nhilling\\nhillo\\nhilloa\\nhilloaed\\nhilloaing\\nhilloas\\nhillock\\nhillocks\\nhillocky\\nhilloed\\nhilloing\\nhillos\\nhills\\nhillside\\nhillsides\\nhilltop\\nhilltops\\nhilly\\nhilt\\nhilted\\nhilting\\nhiltless\\nhilts\\nhilum\\nhilus\\nhim\\nhimatia\\nhimation\\nhimations\\nhimself\\nhin\\nhind\\nhinder\\nhindered\\nhinderer\\nhinderers\\nhindering\\nhinders\\nhindgut\\nhindguts\\nhindmost\\nhindquarter\\nhindquarters\\nhinds\\nhindsight\\nhindsights\\nhinge\\nhinged\\nhinger\\nhingers\\nhinges\\nhinging\\nhinnied\\nhinnies\\nhinny\\nhinnying\\nhins\\nhint\\nhinted\\nhinter\\nhinterland\\nhinterlands\\nhinters\\nhinting\\nhints\\nhip\\nhipbone\\nhipbones\\nhipless\\nhiplike\\nhipness\\nhipnesses\\nhipparch\\nhipparchs\\nhipped\\nhipper\\nhippest\\nhippie\\nhippiedom\\nhippiedoms\\nhippiehood\\nhippiehoods\\nhippier\\nhippies\\nhippiest\\nhipping\\nhippish\\nhippo\\nhippopotami\\nhippopotamus\\nhippopotamuses\\nhippos\\nhippy\\nhips\\nhipshot\\nhipster\\nhipsters\\nhirable\\nhiragana\\nhiraganas\\nhircine\\nhire\\nhireable\\nhired\\nhireling\\nhirelings\\nhirer\\nhirers\\nhires\\nhiring\\nhirple\\nhirpled\\nhirples\\nhirpling\\nhirsel\\nhirseled\\nhirseling\\nhirselled\\nhirselling\\nhirsels\\nhirsle\\nhirsled\\nhirsles\\nhirsling\\nhirsute\\nhirsutism\\nhirudin\\nhirudins\\nhis\\nhisn\\nhispid\\nhiss\\nhissed\\nhisself\\nhisser\\nhissers\\nhisses\\nhissing\\nhissings\\nhist\\nhistamin\\nhistamine\\nhistamines\\nhistamins\\nhisted\\nhistidin\\nhistidins\\nhisting\\nhistogen\\nhistogens\\nhistogram\\nhistograms\\nhistoid\\nhistologic\\nhistone\\nhistones\\nhistopathologic\\nhistopathological\\nhistorian\\nhistorians\\nhistoric\\nhistorical\\nhistorically\\nhistories\\nhistory\\nhists\\nhit\\nhitch\\nhitched\\nhitcher\\nhitchers\\nhitches\\nhitchhike\\nhitchhiked\\nhitchhiker\\nhitchhikers\\nhitchhikes\\nhitchhiking\\nhitching\\nhither\\nhitherto\\nhitless\\nhits\\nhitter\\nhitters\\nhitting\\nhive\\nhived\\nhiveless\\nhiver\\nhives\\nhiving\\nho\\nhoactzin\\nhoactzines\\nhoactzins\\nhoagie\\nhoagies\\nhoagy\\nhoar\\nhoard\\nhoarded\\nhoarder\\nhoarders\\nhoarding\\nhoardings\\nhoards\\nhoarfrost\\nhoarfrosts\\nhoarier\\nhoariest\\nhoarily\\nhoariness\\nhoarinesses\\nhoars\\nhoarse\\nhoarsely\\nhoarsen\\nhoarsened\\nhoarseness\\nhoarsenesses\\nhoarsening\\nhoarsens\\nhoarser\\nhoarsest\\nhoary\\nhoatzin\\nhoatzines\\nhoatzins\\nhoax\\nhoaxed\\nhoaxer\\nhoaxers\\nhoaxes\\nhoaxing\\nhob\\nhobbed\\nhobbies\\nhobbing\\nhobble\\nhobbled\\nhobbler\\nhobblers\\nhobbles\\nhobbling\\nhobby\\nhobbyist\\nhobbyists\\nhobgoblin\\nhobgoblins\\nhoblike\\nhobnail\\nhobnailed\\nhobnails\\nhobnob\\nhobnobbed\\nhobnobbing\\nhobnobs\\nhobo\\nhoboed\\nhoboes\\nhoboing\\nhoboism\\nhoboisms\\nhobos\\nhobs\\nhock\\nhocked\\nhocker\\nhockers\\nhockey\\nhockeys\\nhocking\\nhocks\\nhockshop\\nhockshops\\nhocus\\nhocused\\nhocuses\\nhocusing\\nhocussed\\nhocusses\\nhocussing\\nhod\\nhodad\\nhodaddies\\nhodaddy\\nhodads\\nhodden\\nhoddens\\nhoddin\\nhoddins\\nhodgepodge\\nhodgepodges\\nhods\\nhoe\\nhoecake\\nhoecakes\\nhoed\\nhoedown\\nhoedowns\\nhoeing\\nhoelike\\nhoer\\nhoers\\nhoes\\nhog\\nhogan\\nhogans\\nhogback\\nhogbacks\\nhogfish\\nhogfishes\\nhogg\\nhogged\\nhogger\\nhoggers\\nhogging\\nhoggish\\nhoggs\\nhoglike\\nhogmanay\\nhogmanays\\nhogmane\\nhogmanes\\nhogmenay\\nhogmenays\\nhognose\\nhognoses\\nhognut\\nhognuts\\nhogs\\nhogshead\\nhogsheads\\nhogtie\\nhogtied\\nhogtieing\\nhogties\\nhogtying\\nhogwash\\nhogwashes\\nhogweed\\nhogweeds\\nhoick\\nhoicked\\nhoicking\\nhoicks\\nhoiden\\nhoidened\\nhoidening\\nhoidens\\nhoise\\nhoised\\nhoises\\nhoising\\nhoist\\nhoisted\\nhoister\\nhoisters\\nhoisting\\nhoists\\nhoke\\nhoked\\nhokes\\nhokey\\nhoking\\nhokku\\nhokum\\nhokums\\nhokypokies\\nhokypoky\\nholard\\nholards\\nhold\\nholdable\\nholdall\\nholdalls\\nholdback\\nholdbacks\\nholden\\nholder\\nholders\\nholdfast\\nholdfasts\\nholding\\nholdings\\nholdout\\nholdouts\\nholdover\\nholdovers\\nholds\\nholdup\\nholdups\\nhole\\nholed\\nholeless\\nholer\\nholes\\nholey\\nholibut\\nholibuts\\nholiday\\nholidayed\\nholidaying\\nholidays\\nholier\\nholies\\nholiest\\nholily\\nholiness\\nholinesses\\nholing\\nholism\\nholisms\\nholist\\nholistic\\nholists\\nholk\\nholked\\nholking\\nholks\\nholla\\nhollaed\\nhollaing\\nholland\\nhollands\\nhollas\\nholler\\nhollered\\nhollering\\nhollers\\nhollies\\nhollo\\nholloa\\nholloaed\\nholloaing\\nholloas\\nholloed\\nholloes\\nholloing\\nholloo\\nhollooed\\nhollooing\\nholloos\\nhollos\\nhollow\\nhollowed\\nhollower\\nhollowest\\nhollowing\\nhollowly\\nhollowness\\nhollownesses\\nhollows\\nholly\\nhollyhock\\nhollyhocks\\nholm\\nholmic\\nholmium\\nholmiums\\nholms\\nholocaust\\nholocausts\\nhologram\\nholograms\\nhologynies\\nhologyny\\nholotype\\nholotypes\\nholozoic\\nholp\\nholpen\\nholstein\\nholsteins\\nholster\\nholsters\\nholt\\nholts\\nholy\\nholyday\\nholydays\\nholytide\\nholytides\\nhomage\\nhomaged\\nhomager\\nhomagers\\nhomages\\nhomaging\\nhombre\\nhombres\\nhomburg\\nhomburgs\\nhome\\nhomebodies\\nhomebody\\nhomebred\\nhomebreds\\nhomecoming\\nhomecomings\\nhomed\\nhomeland\\nhomelands\\nhomeless\\nhomelier\\nhomeliest\\nhomelike\\nhomeliness\\nhomelinesses\\nhomely\\nhomemade\\nhomemaker\\nhomemakers\\nhomemaking\\nhomemakings\\nhomer\\nhomered\\nhomering\\nhomeroom\\nhomerooms\\nhomers\\nhomes\\nhomesick\\nhomesickness\\nhomesicknesses\\nhomesite\\nhomesites\\nhomespun\\nhomespuns\\nhomestead\\nhomesteader\\nhomesteaders\\nhomesteads\\nhomestretch\\nhomestretches\\nhometown\\nhometowns\\nhomeward\\nhomewards\\nhomework\\nhomeworks\\nhomey\\nhomicidal\\nhomicide\\nhomicides\\nhomier\\nhomiest\\nhomiletic\\nhomilies\\nhomilist\\nhomilists\\nhomily\\nhominess\\nhominesses\\nhoming\\nhominian\\nhominians\\nhominid\\nhominids\\nhominies\\nhominine\\nhominoid\\nhominoids\\nhominy\\nhommock\\nhommocks\\nhomo\\nhomogamies\\nhomogamy\\nhomogeneities\\nhomogeneity\\nhomogeneous\\nhomogeneously\\nhomogeneousness\\nhomogeneousnesses\\nhomogenies\\nhomogenize\\nhomogenized\\nhomogenizer\\nhomogenizers\\nhomogenizes\\nhomogenizing\\nhomogeny\\nhomogonies\\nhomogony\\nhomograph\\nhomographs\\nhomolog\\nhomologies\\nhomologs\\nhomology\\nhomonym\\nhomonymies\\nhomonyms\\nhomonymy\\nhomophone\\nhomophones\\nhomos\\nhomosexual\\nhomosexuals\\nhomy\\nhonan\\nhonans\\nhoncho\\nhonchos\\nhonda\\nhondas\\nhondle\\nhondled\\nhondling\\nhone\\nhoned\\nhoner\\nhoners\\nhones\\nhonest\\nhonester\\nhonestest\\nhonesties\\nhonestly\\nhonesty\\nhonewort\\nhoneworts\\nhoney\\nhoneybee\\nhoneybees\\nhoneybun\\nhoneybuns\\nhoneycomb\\nhoneycombed\\nhoneycombing\\nhoneycombs\\nhoneydew\\nhoneydews\\nhoneyed\\nhoneyful\\nhoneying\\nhoneymoon\\nhoneymooned\\nhoneymooning\\nhoneymoons\\nhoneys\\nhoneysuckle\\nhoneysuckles\\nhong\\nhongs\\nhonied\\nhoning\\nhonk\\nhonked\\nhonker\\nhonkers\\nhonkey\\nhonkeys\\nhonkie\\nhonkies\\nhonking\\nhonks\\nhonky\\nhonor\\nhonorable\\nhonorably\\nhonorand\\nhonorands\\nhonoraries\\nhonorarily\\nhonorary\\nhonored\\nhonoree\\nhonorees\\nhonorer\\nhonorers\\nhonoring\\nhonors\\nhonour\\nhonoured\\nhonourer\\nhonourers\\nhonouring\\nhonours\\nhooch\\nhooches\\nhood\\nhooded\\nhoodie\\nhoodies\\nhooding\\nhoodless\\nhoodlike\\nhoodlum\\nhoodlums\\nhoodoo\\nhoodooed\\nhoodooing\\nhoodoos\\nhoods\\nhoodwink\\nhoodwinked\\nhoodwinking\\nhoodwinks\\nhooey\\nhooeys\\nhoof\\nhoofbeat\\nhoofbeats\\nhoofed\\nhoofer\\nhoofers\\nhoofing\\nhoofless\\nhooflike\\nhoofs\\nhook\\nhooka\\nhookah\\nhookahs\\nhookas\\nhooked\\nhooker\\nhookers\\nhookey\\nhookeys\\nhookier\\nhookies\\nhookiest\\nhooking\\nhookless\\nhooklet\\nhooklets\\nhooklike\\nhooknose\\nhooknoses\\nhooks\\nhookup\\nhookups\\nhookworm\\nhookworms\\nhooky\\nhoolie\\nhooligan\\nhooligans\\nhooly\\nhoop\\nhooped\\nhooper\\nhoopers\\nhooping\\nhoopla\\nhooplas\\nhoopless\\nhooplike\\nhoopoe\\nhoopoes\\nhoopoo\\nhoopoos\\nhoops\\nhoopster\\nhoopsters\\nhoorah\\nhoorahed\\nhoorahing\\nhoorahs\\nhooray\\nhoorayed\\nhooraying\\nhoorays\\nhoosegow\\nhoosegows\\nhoosgow\\nhoosgows\\nhoot\\nhootch\\nhootches\\nhooted\\nhooter\\nhooters\\nhootier\\nhootiest\\nhooting\\nhoots\\nhooty\\nhooves\\nhop\\nhope\\nhoped\\nhopeful\\nhopefully\\nhopefulness\\nhopefulnesses\\nhopefuls\\nhopeless\\nhopelessly\\nhopelessness\\nhopelessnesses\\nhoper\\nhopers\\nhopes\\nhophead\\nhopheads\\nhoping\\nhoplite\\nhoplites\\nhoplitic\\nhopped\\nhopper\\nhoppers\\nhopping\\nhopple\\nhoppled\\nhopples\\nhoppling\\nhops\\nhopsack\\nhopsacks\\nhoptoad\\nhoptoads\\nhora\\nhorah\\nhorahs\\nhoral\\nhorary\\nhoras\\nhorde\\nhorded\\nhordein\\nhordeins\\nhordes\\nhording\\nhorehound\\nhorehounds\\nhorizon\\nhorizons\\nhorizontal\\nhorizontally\\nhormonal\\nhormone\\nhormones\\nhormonic\\nhorn\\nhornbeam\\nhornbeams\\nhornbill\\nhornbills\\nhornbook\\nhornbooks\\nhorned\\nhornet\\nhornets\\nhornfels\\nhornier\\nhorniest\\nhornily\\nhorning\\nhornito\\nhornitos\\nhornless\\nhornlike\\nhornpipe\\nhornpipes\\nhornpout\\nhornpouts\\nhorns\\nhorntail\\nhorntails\\nhornworm\\nhornworms\\nhornwort\\nhornworts\\nhorny\\nhorologe\\nhorologes\\nhorological\\nhorologies\\nhorologist\\nhorologists\\nhorology\\nhoroscope\\nhoroscopes\\nhorrendous\\nhorrent\\nhorrible\\nhorribleness\\nhorriblenesses\\nhorribles\\nhorribly\\nhorrid\\nhorridly\\nhorrific\\nhorrified\\nhorrifies\\nhorrify\\nhorrifying\\nhorror\\nhorrors\\nhorse\\nhorseback\\nhorsebacks\\nhorsecar\\nhorsecars\\nhorsed\\nhorseflies\\nhorsefly\\nhorsehair\\nhorsehairs\\nhorsehide\\nhorsehides\\nhorseless\\nhorseman\\nhorsemanship\\nhorsemanships\\nhorsemen\\nhorseplay\\nhorseplays\\nhorsepower\\nhorsepowers\\nhorseradish\\nhorseradishes\\nhorses\\nhorseshoe\\nhorseshoes\\nhorsewoman\\nhorsewomen\\nhorsey\\nhorsier\\nhorsiest\\nhorsily\\nhorsing\\nhorst\\nhorste\\nhorstes\\nhorsts\\nhorsy\\nhortatory\\nhorticultural\\nhorticulture\\nhorticultures\\nhorticulturist\\nhorticulturists\\nhosanna\\nhosannaed\\nhosannaing\\nhosannas\\nhose\\nhosed\\nhosel\\nhosels\\nhosen\\nhoses\\nhosier\\nhosieries\\nhosiers\\nhosiery\\nhosing\\nhospice\\nhospices\\nhospitable\\nhospitably\\nhospital\\nhospitalities\\nhospitality\\nhospitalization\\nhospitalizations\\nhospitalize\\nhospitalized\\nhospitalizes\\nhospitalizing\\nhospitals\\nhospitia\\nhospodar\\nhospodars\\nhost\\nhostage\\nhostages\\nhosted\\nhostel\\nhosteled\\nhosteler\\nhostelers\\nhosteling\\nhostelries\\nhostelry\\nhostels\\nhostess\\nhostessed\\nhostesses\\nhostessing\\nhostile\\nhostilely\\nhostiles\\nhostilities\\nhostility\\nhosting\\nhostler\\nhostlers\\nhostly\\nhosts\\nhot\\nhotbed\\nhotbeds\\nhotblood\\nhotbloods\\nhotbox\\nhotboxes\\nhotcake\\nhotcakes\\nhotch\\nhotched\\nhotches\\nhotching\\nhotchpot\\nhotchpots\\nhotdog\\nhotdogged\\nhotdogging\\nhotdogs\\nhotel\\nhotelier\\nhoteliers\\nhotelman\\nhotelmen\\nhotels\\nhotfoot\\nhotfooted\\nhotfooting\\nhotfoots\\nhothead\\nhotheaded\\nhotheadedly\\nhotheadedness\\nhotheadednesses\\nhotheads\\nhothouse\\nhothouses\\nhotly\\nhotness\\nhotnesses\\nhotpress\\nhotpressed\\nhotpresses\\nhotpressing\\nhotrod\\nhotrods\\nhots\\nhotshot\\nhotshots\\nhotspur\\nhotspurs\\nhotted\\nhotter\\nhottest\\nhotting\\nhottish\\nhoudah\\nhoudahs\\nhound\\nhounded\\nhounder\\nhounders\\nhounding\\nhounds\\nhour\\nhourglass\\nhourglasses\\nhouri\\nhouris\\nhourly\\nhours\\nhouse\\nhouseboat\\nhouseboats\\nhouseboy\\nhouseboys\\nhousebreak\\nhousebreaks\\nhousebroken\\nhouseclean\\nhousecleaned\\nhousecleaning\\nhousecleanings\\nhousecleans\\nhoused\\nhouseflies\\nhousefly\\nhouseful\\nhousefuls\\nhousehold\\nhouseholder\\nhouseholders\\nhouseholds\\nhousekeeper\\nhousekeepers\\nhousekeeping\\nhousel\\nhouseled\\nhouseling\\nhouselled\\nhouselling\\nhousels\\nhousemaid\\nhousemaids\\nhouseman\\nhousemate\\nhousemates\\nhousemen\\nhouser\\nhousers\\nhouses\\nhousetop\\nhousetops\\nhousewares\\nhousewarming\\nhousewarmings\\nhousewife\\nhousewifeliness\\nhousewifelinesses\\nhousewifely\\nhousewiferies\\nhousewifery\\nhousewives\\nhousework\\nhouseworks\\nhousing\\nhousings\\nhove\\nhovel\\nhoveled\\nhoveling\\nhovelled\\nhovelling\\nhovels\\nhover\\nhovered\\nhoverer\\nhoverers\\nhovering\\nhovers\\nhow\\nhowbeit\\nhowdah\\nhowdahs\\nhowdie\\nhowdies\\nhowdy\\nhowe\\nhowes\\nhowever\\nhowf\\nhowff\\nhowffs\\nhowfs\\nhowitzer\\nhowitzers\\nhowk\\nhowked\\nhowking\\nhowks\\nhowl\\nhowled\\nhowler\\nhowlers\\nhowlet\\nhowlets\\nhowling\\nhowls\\nhows\\nhoy\\nhoyden\\nhoydened\\nhoydening\\nhoydens\\nhoyle\\nhoyles\\nhoys\\nhuarache\\nhuaraches\\nhuaracho\\nhuarachos\\nhub\\nhubbies\\nhubbub\\nhubbubs\\nhubby\\nhubcap\\nhubcaps\\nhubris\\nhubrises\\nhubs\\nhuck\\nhuckle\\nhuckleberries\\nhuckleberry\\nhuckles\\nhucks\\nhuckster\\nhuckstered\\nhuckstering\\nhucksters\\nhuddle\\nhuddled\\nhuddler\\nhuddlers\\nhuddles\\nhuddling\\nhue\\nhued\\nhueless\\nhues\\nhuff\\nhuffed\\nhuffier\\nhuffiest\\nhuffily\\nhuffing\\nhuffish\\nhuffs\\nhuffy\\nhug\\nhuge\\nhugely\\nhugeness\\nhugenesses\\nhugeous\\nhuger\\nhugest\\nhuggable\\nhugged\\nhugger\\nhuggers\\nhugging\\nhugs\\nhuh\\nhuic\\nhula\\nhulas\\nhulk\\nhulked\\nhulkier\\nhulkiest\\nhulking\\nhulks\\nhulky\\nhull\\nhullabaloo\\nhullabaloos\\nhulled\\nhuller\\nhullers\\nhulling\\nhullo\\nhulloa\\nhulloaed\\nhulloaing\\nhulloas\\nhulloed\\nhulloes\\nhulloing\\nhullos\\nhulls\\nhum\\nhuman\\nhumane\\nhumanely\\nhumaneness\\nhumanenesses\\nhumaner\\nhumanest\\nhumanise\\nhumanised\\nhumanises\\nhumanising\\nhumanism\\nhumanisms\\nhumanist\\nhumanistic\\nhumanists\\nhumanitarian\\nhumanitarianism\\nhumanitarianisms\\nhumanitarians\\nhumanities\\nhumanity\\nhumanization\\nhumanizations\\nhumanize\\nhumanized\\nhumanizes\\nhumanizing\\nhumankind\\nhumankinds\\nhumanly\\nhumanness\\nhumannesses\\nhumanoid\\nhumanoids\\nhumans\\nhumate\\nhumates\\nhumble\\nhumbled\\nhumbleness\\nhumblenesses\\nhumbler\\nhumblers\\nhumbles\\nhumblest\\nhumbling\\nhumbly\\nhumbug\\nhumbugged\\nhumbugging\\nhumbugs\\nhumdrum\\nhumdrums\\nhumeral\\nhumerals\\nhumeri\\nhumerus\\nhumic\\nhumid\\nhumidification\\nhumidifications\\nhumidified\\nhumidifier\\nhumidifiers\\nhumidifies\\nhumidify\\nhumidifying\\nhumidities\\nhumidity\\nhumidly\\nhumidor\\nhumidors\\nhumified\\nhumiliate\\nhumiliated\\nhumiliates\\nhumiliating\\nhumiliatingly\\nhumiliation\\nhumiliations\\nhumilities\\nhumility\\nhummable\\nhummed\\nhummer\\nhummers\\nhumming\\nhummingbird\\nhummingbirds\\nhummock\\nhummocks\\nhummocky\\nhumor\\nhumoral\\nhumored\\nhumorful\\nhumoring\\nhumorist\\nhumorists\\nhumorless\\nhumorlessly\\nhumorlessness\\nhumorlessnesses\\nhumorous\\nhumorously\\nhumorousness\\nhumorousnesses\\nhumors\\nhumour\\nhumoured\\nhumouring\\nhumours\\nhump\\nhumpback\\nhumpbacked\\nhumpbacks\\nhumped\\nhumph\\nhumphed\\nhumphing\\nhumphs\\nhumpier\\nhumpiest\\nhumping\\nhumpless\\nhumps\\nhumpy\\nhums\\nhumus\\nhumuses\\nhun\\nhunch\\nhunchback\\nhunchbacked\\nhunchbacks\\nhunched\\nhunches\\nhunching\\nhundred\\nhundreds\\nhundredth\\nhundredths\\nhung\\nhunger\\nhungered\\nhungering\\nhungers\\nhungrier\\nhungriest\\nhungrily\\nhungry\\nhunk\\nhunker\\nhunkered\\nhunkering\\nhunkers\\nhunkies\\nhunks\\nhunky\\nhunnish\\nhuns\\nhunt\\nhuntable\\nhunted\\nhuntedly\\nhunter\\nhunters\\nhunting\\nhuntings\\nhuntington\\nhuntress\\nhuntresses\\nhunts\\nhuntsman\\nhuntsmen\\nhup\\nhurdies\\nhurdle\\nhurdled\\nhurdler\\nhurdlers\\nhurdles\\nhurdling\\nhurds\\nhurl\\nhurled\\nhurler\\nhurlers\\nhurley\\nhurleys\\nhurlies\\nhurling\\nhurlings\\nhurls\\nhurly\\nhurrah\\nhurrahed\\nhurrahing\\nhurrahs\\nhurray\\nhurrayed\\nhurraying\\nhurrays\\nhurricane\\nhurricanes\\nhurried\\nhurrier\\nhurriers\\nhurries\\nhurry\\nhurrying\\nhurt\\nhurter\\nhurters\\nhurtful\\nhurting\\nhurtle\\nhurtled\\nhurtles\\nhurtless\\nhurtling\\nhurts\\nhusband\\nhusbanded\\nhusbanding\\nhusbandries\\nhusbandry\\nhusbands\\nhush\\nhushaby\\nhushed\\nhushedly\\nhushes\\nhushful\\nhushing\\nhusk\\nhusked\\nhusker\\nhuskers\\nhuskier\\nhuskies\\nhuskiest\\nhuskily\\nhuskiness\\nhuskinesses\\nhusking\\nhuskings\\nhusklike\\nhusks\\nhusky\\nhussar\\nhussars\\nhussies\\nhussy\\nhustings\\nhustle\\nhustled\\nhustler\\nhustlers\\nhustles\\nhustling\\nhuswife\\nhuswifes\\nhuswives\\nhut\\nhutch\\nhutched\\nhutches\\nhutching\\nhutlike\\nhutment\\nhutments\\nhuts\\nhutted\\nhutting\\nhutzpa\\nhutzpah\\nhutzpahs\\nhutzpas\\nhuzza\\nhuzzaed\\nhuzzah\\nhuzzahed\\nhuzzahing\\nhuzzahs\\nhuzzaing\\nhuzzas\\nhwan\\nhyacinth\\nhyacinths\\nhyaena\\nhyaenas\\nhyaenic\\nhyalin\\nhyaline\\nhyalines\\nhyalins\\nhyalite\\nhyalites\\nhyalogen\\nhyalogens\\nhyaloid\\nhyaloids\\nhybrid\\nhybridization\\nhybridizations\\nhybridize\\nhybridized\\nhybridizer\\nhybridizers\\nhybridizes\\nhybridizing\\nhybrids\\nhybris\\nhybrises\\nhydatid\\nhydatids\\nhydra\\nhydracid\\nhydracids\\nhydrae\\nhydragog\\nhydragogs\\nhydrant\\nhydranth\\nhydranths\\nhydrants\\nhydras\\nhydrase\\nhydrases\\nhydrate\\nhydrated\\nhydrates\\nhydrating\\nhydrator\\nhydrators\\nhydraulic\\nhydraulics\\nhydria\\nhydriae\\nhydric\\nhydrid\\nhydride\\nhydrides\\nhydrids\\nhydro\\nhydrocarbon\\nhydrocarbons\\nhydrochloride\\nhydroelectric\\nhydroelectrically\\nhydroelectricities\\nhydroelectricity\\nhydrogel\\nhydrogels\\nhydrogen\\nhydrogenous\\nhydrogens\\nhydroid\\nhydroids\\nhydromel\\nhydromels\\nhydronic\\nhydrophobia\\nhydrophobias\\nhydropic\\nhydroplane\\nhydroplanes\\nhydrops\\nhydropses\\nhydropsies\\nhydropsy\\nhydros\\nhydrosol\\nhydrosols\\nhydrous\\nhydroxy\\nhydroxyl\\nhydroxyls\\nhydroxyurea\\nhyena\\nhyenas\\nhyenic\\nhyenine\\nhyenoid\\nhyetal\\nhygeist\\nhygeists\\nhygieist\\nhygieists\\nhygiene\\nhygienes\\nhygienic\\nhygienically\\nhygrometer\\nhygrometers\\nhygrometries\\nhygrometry\\nhying\\nhyla\\nhylas\\nhylozoic\\nhymen\\nhymenal\\nhymeneal\\nhymeneals\\nhymenia\\nhymenial\\nhymenium\\nhymeniums\\nhymens\\nhymn\\nhymnal\\nhymnals\\nhymnaries\\nhymnary\\nhymnbook\\nhymnbooks\\nhymned\\nhymning\\nhymnist\\nhymnists\\nhymnless\\nhymnlike\\nhymnodies\\nhymnody\\nhymns\\nhyoid\\nhyoidal\\nhyoidean\\nhyoids\\nhyoscine\\nhyoscines\\nhyp\\nhype\\nhyperacid\\nhyperacidities\\nhyperacidity\\nhyperactive\\nhyperacute\\nhyperadrenalism\\nhyperaggressive\\nhyperaggressiveness\\nhyperaggressivenesses\\nhyperanxious\\nhyperbole\\nhyperboles\\nhypercalcemia\\nhypercalcemias\\nhypercautious\\nhyperclean\\nhyperconscientious\\nhypercorrect\\nhypercritical\\nhyperemotional\\nhyperenergetic\\nhyperexcitable\\nhyperfastidious\\nhypergol\\nhypergols\\nhyperintense\\nhypermasculine\\nhypermilitant\\nhypermoralistic\\nhypernationalistic\\nhyperon\\nhyperons\\nhyperope\\nhyperopes\\nhyperreactive\\nhyperrealistic\\nhyperromantic\\nhypersensitive\\nhypersensitiveness\\nhypersensitivenesses\\nhypersensitivities\\nhypersensitivity\\nhypersexual\\nhypersusceptible\\nhypersuspicious\\nhypertense\\nhypertension\\nhypertensions\\nhypertensive\\nhypertensives\\nhyperthermia\\nhyperthyroidism\\nhyperuricemia\\nhypervigilant\\nhypes\\nhypha\\nhyphae\\nhyphal\\nhyphemia\\nhyphemias\\nhyphen\\nhyphenate\\nhyphenated\\nhyphenates\\nhyphenating\\nhyphenation\\nhyphenations\\nhyphened\\nhyphening\\nhyphens\\nhypnic\\nhypnoid\\nhypnoses\\nhypnosis\\nhypnotic\\nhypnotically\\nhypnotics\\nhypnotism\\nhypnotisms\\nhypnotizable\\nhypnotize\\nhypnotized\\nhypnotizes\\nhypnotizing\\nhypo\\nhypoacid\\nhypocalcemia\\nhypochondria\\nhypochondriac\\nhypochondriacs\\nhypochondrias\\nhypocrisies\\nhypocrisy\\nhypocrite\\nhypocrites\\nhypocritical\\nhypocritically\\nhypoderm\\nhypodermic\\nhypodermics\\nhypoderms\\nhypoed\\nhypogea\\nhypogeal\\nhypogean\\nhypogene\\nhypogeum\\nhypogynies\\nhypogyny\\nhypoing\\nhypokalemia\\nhyponea\\nhyponeas\\nhyponoia\\nhyponoias\\nhypopnea\\nhypopneas\\nhypopyon\\nhypopyons\\nhypos\\nhypotension\\nhypotensions\\nhypotenuse\\nhypotenuses\\nhypothec\\nhypothecs\\nhypotheses\\nhypothesis\\nhypothetical\\nhypothetically\\nhypothyroidism\\nhypoxia\\nhypoxias\\nhypoxic\\nhyps\\nhyraces\\nhyracoid\\nhyracoids\\nhyrax\\nhyraxes\\nhyson\\nhysons\\nhyssop\\nhyssops\\nhysterectomies\\nhysterectomize\\nhysterectomized\\nhysterectomizes\\nhysterectomizing\\nhysterectomy\\nhysteria\\nhysterias\\nhysteric\\nhysterical\\nhysterically\\nhysterics\\nhyte\\niamb\\niambi\\niambic\\niambics\\niambs\\niambus\\niambuses\\niatric\\niatrical\\nibex\\nibexes\\nibices\\nibidem\\nibis\\nibises\\nice\\niceberg\\nicebergs\\niceblink\\niceblinks\\niceboat\\niceboats\\nicebound\\nicebox\\niceboxes\\nicebreaker\\nicebreakers\\nicecap\\nicecaps\\niced\\nicefall\\nicefalls\\nicehouse\\nicehouses\\nicekhana\\nicekhanas\\niceless\\nicelike\\niceman\\nicemen\\nicers\\nices\\nich\\nichnite\\nichnites\\nichor\\nichorous\\nichors\\nichs\\nichthyic\\nichthyologies\\nichthyologist\\nichthyologists\\nichthyology\\nicicle\\nicicled\\nicicles\\nicier\\niciest\\nicily\\niciness\\nicinesses\\nicing\\nicings\\nicker\\nickers\\nickier\\nickiest\\nicky\\nicon\\nicones\\niconic\\niconical\\niconoclasm\\niconoclasms\\niconoclast\\niconoclasts\\nicons\\nicteric\\nicterics\\nicterus\\nicteruses\\nictic\\nictus\\nictuses\\nicy\\nid\\nidea\\nideal\\nidealess\\nidealise\\nidealised\\nidealises\\nidealising\\nidealism\\nidealisms\\nidealist\\nidealistic\\nidealists\\nidealities\\nideality\\nidealization\\nidealizations\\nidealize\\nidealized\\nidealizes\\nidealizing\\nideally\\nidealogies\\nidealogy\\nideals\\nideas\\nideate\\nideated\\nideates\\nideating\\nideation\\nideations\\nideative\\nidem\\nidems\\nidentic\\nidentical\\nidentifiable\\nidentification\\nidentifications\\nidentified\\nidentifier\\nidentifiers\\nidentifies\\nidentify\\nidentifying\\nidentities\\nidentity\\nideogram\\nideograms\\nideological\\nideologies\\nideology\\nides\\nidiocies\\nidiocy\\nidiolect\\nidiolects\\nidiom\\nidiomatic\\nidiomatically\\nidioms\\nidiosyncrasies\\nidiosyncrasy\\nidiosyncratic\\nidiot\\nidiotic\\nidiotically\\nidiotism\\nidiotisms\\nidiots\\nidle\\nidled\\nidleness\\nidlenesses\\nidler\\nidlers\\nidles\\nidlesse\\nidlesses\\nidlest\\nidling\\nidly\\nidocrase\\nidocrases\\nidol\\nidolater\\nidolaters\\nidolatries\\nidolatrous\\nidolatry\\nidolise\\nidolised\\nidoliser\\nidolisers\\nidolises\\nidolising\\nidolism\\nidolisms\\nidolize\\nidolized\\nidolizer\\nidolizers\\nidolizes\\nidolizing\\nidols\\nidoneities\\nidoneity\\nidoneous\\nids\\nidyl\\nidylist\\nidylists\\nidyll\\nidyllic\\nidyllist\\nidyllists\\nidylls\\nidyls\\nif\\niffier\\niffiest\\niffiness\\niffinesses\\niffy\\nifs\\nigloo\\nigloos\\niglu\\niglus\\nignatia\\nignatias\\nigneous\\nignified\\nignifies\\nignify\\nignifying\\nignite\\nignited\\nigniter\\nigniters\\nignites\\nigniting\\nignition\\nignitions\\nignitor\\nignitors\\nignitron\\nignitrons\\nignoble\\nignobly\\nignominies\\nignominious\\nignominiously\\nignominy\\nignoramus\\nignoramuses\\nignorance\\nignorances\\nignorant\\nignorantly\\nignore\\nignored\\nignorer\\nignorers\\nignores\\nignoring\\niguana\\niguanas\\niguanian\\niguanians\\nihram\\nihrams\\nikebana\\nikebanas\\nikon\\nikons\\nilea\\nileac\\nileal\\nileitides\\nileitis\\nileum\\nileus\\nileuses\\nilex\\nilexes\\nilia\\niliac\\niliad\\niliads\\nilial\\nilium\\nilk\\nilka\\nilks\\nill\\nillation\\nillations\\nillative\\nillatives\\nillegal\\nillegalities\\nillegality\\nillegally\\nillegibilities\\nillegibility\\nillegible\\nillegibly\\nillegitimacies\\nillegitimacy\\nillegitimate\\nillegitimately\\nillicit\\nillicitly\\nillimitable\\nillimitably\\nillinium\\nilliniums\\nilliquid\\nillite\\nilliteracies\\nilliteracy\\nilliterate\\nilliterates\\nillites\\nillitic\\nillnaturedly\\nillness\\nillnesses\\nillogic\\nillogical\\nillogically\\nillogics\\nills\\nillume\\nillumed\\nillumes\\nilluminate\\nilluminated\\nilluminates\\nilluminating\\nilluminatingly\\nillumination\\nilluminations\\nillumine\\nillumined\\nillumines\\nilluming\\nillumining\\nillusion\\nillusions\\nillusive\\nillusory\\nillustrate\\nillustrated\\nillustrates\\nillustrating\\nillustration\\nillustrations\\nillustrative\\nillustratively\\nillustrator\\nillustrators\\nillustrious\\nillustriousness\\nillustriousnesses\\nilluvia\\nilluvial\\nilluvium\\nilluviums\\nilly\\nilmenite\\nilmenites\\nimage\\nimaged\\nimageries\\nimagery\\nimages\\nimaginable\\nimaginably\\nimaginal\\nimaginary\\nimagination\\nimaginations\\nimaginative\\nimaginatively\\nimagine\\nimagined\\nimaginer\\nimaginers\\nimagines\\nimaging\\nimagining\\nimagism\\nimagisms\\nimagist\\nimagists\\nimago\\nimagoes\\nimam\\nimamate\\nimamates\\nimams\\nimaret\\nimarets\\nimaum\\nimaums\\nimbalance\\nimbalances\\nimbalm\\nimbalmed\\nimbalmer\\nimbalmers\\nimbalming\\nimbalms\\nimbark\\nimbarked\\nimbarking\\nimbarks\\nimbecile\\nimbeciles\\nimbecilic\\nimbecilities\\nimbecility\\nimbed\\nimbedded\\nimbedding\\nimbeds\\nimbibe\\nimbibed\\nimbiber\\nimbibers\\nimbibes\\nimbibing\\nimbitter\\nimbittered\\nimbittering\\nimbitters\\nimblaze\\nimblazed\\nimblazes\\nimblazing\\nimbodied\\nimbodies\\nimbody\\nimbodying\\nimbolden\\nimboldened\\nimboldening\\nimboldens\\nimbosom\\nimbosomed\\nimbosoming\\nimbosoms\\nimbower\\nimbowered\\nimbowering\\nimbowers\\nimbroglio\\nimbroglios\\nimbrown\\nimbrowned\\nimbrowning\\nimbrowns\\nimbrue\\nimbrued\\nimbrues\\nimbruing\\nimbrute\\nimbruted\\nimbrutes\\nimbruting\\nimbue\\nimbued\\nimbues\\nimbuing\\nimid\\nimide\\nimides\\nimidic\\nimido\\nimids\\nimine\\nimines\\nimino\\nimitable\\nimitate\\nimitated\\nimitates\\nimitating\\nimitation\\nimitations\\nimitator\\nimitators\\nimmaculate\\nimmaculately\\nimmane\\nimmanent\\nimmaterial\\nimmaterialities\\nimmateriality\\nimmature\\nimmatures\\nimmaturities\\nimmaturity\\nimmeasurable\\nimmeasurably\\nimmediacies\\nimmediacy\\nimmediate\\nimmediately\\nimmemorial\\nimmense\\nimmensely\\nimmenser\\nimmensest\\nimmensities\\nimmensity\\nimmerge\\nimmerged\\nimmerges\\nimmerging\\nimmerse\\nimmersed\\nimmerses\\nimmersing\\nimmersion\\nimmersions\\nimmesh\\nimmeshed\\nimmeshes\\nimmeshing\\nimmies\\nimmigrant\\nimmigrants\\nimmigrate\\nimmigrated\\nimmigrates\\nimmigrating\\nimmigration\\nimmigrations\\nimminence\\nimminences\\nimminent\\nimminently\\nimmingle\\nimmingled\\nimmingles\\nimmingling\\nimmix\\nimmixed\\nimmixes\\nimmixing\\nimmobile\\nimmobilities\\nimmobility\\nimmobilize\\nimmobilized\\nimmobilizes\\nimmobilizing\\nimmoderacies\\nimmoderacy\\nimmoderate\\nimmoderately\\nimmodest\\nimmodesties\\nimmodestly\\nimmodesty\\nimmolate\\nimmolated\\nimmolates\\nimmolating\\nimmolation\\nimmolations\\nimmoral\\nimmoralities\\nimmorality\\nimmorally\\nimmortal\\nimmortalities\\nimmortality\\nimmortalize\\nimmortalized\\nimmortalizes\\nimmortalizing\\nimmortals\\nimmotile\\nimmovabilities\\nimmovability\\nimmovable\\nimmovably\\nimmune\\nimmunes\\nimmunise\\nimmunised\\nimmunises\\nimmunising\\nimmunities\\nimmunity\\nimmunization\\nimmunizations\\nimmunize\\nimmunized\\nimmunizes\\nimmunizing\\nimmunologic\\nimmunological\\nimmunologies\\nimmunologist\\nimmunologists\\nimmunology\\nimmure\\nimmured\\nimmures\\nimmuring\\nimmutabilities\\nimmutability\\nimmutable\\nimmutably\\nimmy\\nimp\\nimpact\\nimpacted\\nimpacter\\nimpacters\\nimpacting\\nimpactor\\nimpactors\\nimpacts\\nimpaint\\nimpainted\\nimpainting\\nimpaints\\nimpair\\nimpaired\\nimpairer\\nimpairers\\nimpairing\\nimpairment\\nimpairments\\nimpairs\\nimpala\\nimpalas\\nimpale\\nimpaled\\nimpalement\\nimpalements\\nimpaler\\nimpalers\\nimpales\\nimpaling\\nimpalpable\\nimpalpably\\nimpanel\\nimpaneled\\nimpaneling\\nimpanelled\\nimpanelling\\nimpanels\\nimparities\\nimparity\\nimpark\\nimparked\\nimparking\\nimparks\\nimpart\\nimparted\\nimparter\\nimparters\\nimpartialities\\nimpartiality\\nimpartially\\nimparting\\nimparts\\nimpassable\\nimpasse\\nimpasses\\nimpassioned\\nimpassive\\nimpassively\\nimpassivities\\nimpassivity\\nimpaste\\nimpasted\\nimpastes\\nimpasting\\nimpasto\\nimpastos\\nimpatience\\nimpatiences\\nimpatiens\\nimpatient\\nimpatiently\\nimpavid\\nimpawn\\nimpawned\\nimpawning\\nimpawns\\nimpeach\\nimpeached\\nimpeaches\\nimpeaching\\nimpeachment\\nimpeachments\\nimpearl\\nimpearled\\nimpearling\\nimpearls\\nimpeccable\\nimpeccably\\nimpecunious\\nimpecuniousness\\nimpecuniousnesses\\nimped\\nimpedance\\nimpedances\\nimpede\\nimpeded\\nimpeder\\nimpeders\\nimpedes\\nimpediment\\nimpediments\\nimpeding\\nimpel\\nimpelled\\nimpeller\\nimpellers\\nimpelling\\nimpellor\\nimpellors\\nimpels\\nimpend\\nimpended\\nimpending\\nimpends\\nimpenetrabilities\\nimpenetrability\\nimpenetrable\\nimpenetrably\\nimpenitence\\nimpenitences\\nimpenitent\\nimperative\\nimperatively\\nimperatives\\nimperceptible\\nimperceptibly\\nimperfection\\nimperfections\\nimperfectly\\nimperia\\nimperial\\nimperialism\\nimperialist\\nimperialistic\\nimperials\\nimperil\\nimperiled\\nimperiling\\nimperilled\\nimperilling\\nimperils\\nimperious\\nimperiously\\nimperishable\\nimperium\\nimperiums\\nimpermanent\\nimpermanently\\nimpermeable\\nimpermissible\\nimpersonal\\nimpersonally\\nimpersonate\\nimpersonated\\nimpersonates\\nimpersonating\\nimpersonation\\nimpersonations\\nimpersonator\\nimpersonators\\nimpertinence\\nimpertinences\\nimpertinent\\nimpertinently\\nimperturbable\\nimpervious\\nimpetigo\\nimpetigos\\nimpetuous\\nimpetuousities\\nimpetuousity\\nimpetuously\\nimpetus\\nimpetuses\\nimphee\\nimphees\\nimpi\\nimpieties\\nimpiety\\nimping\\nimpinge\\nimpinged\\nimpingement\\nimpingements\\nimpinger\\nimpingers\\nimpinges\\nimpinging\\nimpings\\nimpious\\nimpis\\nimpish\\nimpishly\\nimpishness\\nimpishnesses\\nimplacabilities\\nimplacability\\nimplacable\\nimplacably\\nimplant\\nimplanted\\nimplanting\\nimplants\\nimplausibilities\\nimplausibility\\nimplausible\\nimplead\\nimpleaded\\nimpleading\\nimpleads\\nimpledge\\nimpledged\\nimpledges\\nimpledging\\nimplement\\nimplementation\\nimplementations\\nimplemented\\nimplementing\\nimplements\\nimplicate\\nimplicated\\nimplicates\\nimplicating\\nimplication\\nimplications\\nimplicit\\nimplicitly\\nimplied\\nimplies\\nimplode\\nimploded\\nimplodes\\nimploding\\nimplore\\nimplored\\nimplorer\\nimplorers\\nimplores\\nimploring\\nimplosion\\nimplosions\\nimplosive\\nimply\\nimplying\\nimpolicies\\nimpolicy\\nimpolite\\nimpolitic\\nimponderable\\nimponderables\\nimpone\\nimponed\\nimpones\\nimponing\\nimporous\\nimport\\nimportance\\nimportant\\nimportantly\\nimportation\\nimportations\\nimported\\nimporter\\nimporters\\nimporting\\nimports\\nimportunate\\nimportune\\nimportuned\\nimportunes\\nimportuning\\nimportunities\\nimportunity\\nimpose\\nimposed\\nimposer\\nimposers\\nimposes\\nimposing\\nimposingly\\nimposition\\nimpositions\\nimpossibilities\\nimpossibility\\nimpossible\\nimpossibly\\nimpost\\nimposted\\nimposter\\nimposters\\nimposting\\nimpostor\\nimpostors\\nimposts\\nimposture\\nimpostures\\nimpotence\\nimpotences\\nimpotencies\\nimpotency\\nimpotent\\nimpotently\\nimpotents\\nimpound\\nimpounded\\nimpounding\\nimpoundment\\nimpoundments\\nimpounds\\nimpoverish\\nimpoverished\\nimpoverishes\\nimpoverishing\\nimpoverishment\\nimpoverishments\\nimpower\\nimpowered\\nimpowering\\nimpowers\\nimpracticable\\nimpractical\\nimprecise\\nimprecisely\\nimpreciseness\\nimprecisenesses\\nimprecision\\nimpregabilities\\nimpregability\\nimpregable\\nimpregn\\nimpregnate\\nimpregnated\\nimpregnates\\nimpregnating\\nimpregnation\\nimpregnations\\nimpregned\\nimpregning\\nimpregns\\nimpresa\\nimpresario\\nimpresarios\\nimpresas\\nimprese\\nimpreses\\nimpress\\nimpressed\\nimpresses\\nimpressible\\nimpressing\\nimpression\\nimpressionable\\nimpressions\\nimpressive\\nimpressively\\nimpressiveness\\nimpressivenesses\\nimpressment\\nimpressments\\nimprest\\nimprests\\nimprimatur\\nimprimaturs\\nimprimis\\nimprint\\nimprinted\\nimprinting\\nimprints\\nimprison\\nimprisoned\\nimprisoning\\nimprisonment\\nimprisonments\\nimprisons\\nimprobabilities\\nimprobability\\nimprobable\\nimprobably\\nimpromptu\\nimpromptus\\nimproper\\nimproperly\\nimproprieties\\nimpropriety\\nimprovable\\nimprove\\nimproved\\nimprovement\\nimprovements\\nimprover\\nimprovers\\nimproves\\nimprovidence\\nimprovidences\\nimprovident\\nimproving\\nimprovisation\\nimprovisations\\nimproviser\\nimprovisers\\nimprovisor\\nimprovisors\\nimprudence\\nimprudences\\nimprudent\\nimps\\nimpudence\\nimpudences\\nimpudent\\nimpudently\\nimpugn\\nimpugned\\nimpugner\\nimpugners\\nimpugning\\nimpugns\\nimpulse\\nimpulsed\\nimpulses\\nimpulsing\\nimpulsion\\nimpulsions\\nimpulsive\\nimpulsively\\nimpulsiveness\\nimpulsivenesses\\nimpunities\\nimpunity\\nimpure\\nimpurely\\nimpurities\\nimpurity\\nimputation\\nimputations\\nimpute\\nimputed\\nimputer\\nimputers\\nimputes\\nimputing\\nin\\ninabilities\\ninability\\ninaccessibilities\\ninaccessibility\\ninaccessible\\ninaccuracies\\ninaccuracy\\ninaccurate\\ninaction\\ninactions\\ninactivate\\ninactivated\\ninactivates\\ninactivating\\ninactive\\ninactivities\\ninactivity\\ninadequacies\\ninadequacy\\ninadequate\\ninadequately\\ninadmissibility\\ninadmissible\\ninadvertence\\ninadvertences\\ninadvertencies\\ninadvertency\\ninadvertent\\ninadvertently\\ninadvisabilities\\ninadvisability\\ninadvisable\\ninalienabilities\\ninalienability\\ninalienable\\ninalienably\\ninane\\ninanely\\ninaner\\ninanes\\ninanest\\ninanimate\\ninanimately\\ninanimateness\\ninanimatenesses\\ninanities\\ninanition\\ninanitions\\ninanity\\ninapparent\\ninapplicable\\ninapposite\\ninappositely\\ninappositeness\\ninappositenesses\\ninappreciable\\ninappreciably\\ninappreciative\\ninapproachable\\ninappropriate\\ninappropriately\\ninappropriateness\\ninappropriatenesses\\ninapt\\ninaptly\\ninarable\\ninarch\\ninarched\\ninarches\\ninarching\\ninarguable\\ninarm\\ninarmed\\ninarming\\ninarms\\ninarticulate\\ninarticulately\\ninartistic\\ninartistically\\ninattention\\ninattentions\\ninattentive\\ninattentively\\ninattentiveness\\ninattentivenesses\\ninaudible\\ninaudibly\\ninaugurate\\ninaugurated\\ninaugurates\\ninaugurating\\ninauguration\\ninaugurations\\ninauspicious\\ninauthentic\\ninbeing\\ninbeings\\ninboard\\ninboards\\ninborn\\ninbound\\ninbounds\\ninbred\\ninbreed\\ninbreeding\\ninbreedings\\ninbreeds\\ninbuilt\\ninburst\\ninbursts\\ninby\\ninbye\\nincage\\nincaged\\nincages\\nincaging\\nincalculable\\nincalculably\\nincandescence\\nincandescences\\nincandescent\\nincantation\\nincantations\\nincapabilities\\nincapability\\nincapable\\nincapacitate\\nincapacitated\\nincapacitates\\nincapacitating\\nincapacities\\nincapacity\\nincarcerate\\nincarcerated\\nincarcerates\\nincarcerating\\nincarceration\\nincarcerations\\nincarnation\\nincarnations\\nincase\\nincased\\nincases\\nincasing\\nincautious\\nincendiaries\\nincendiary\\nincense\\nincensed\\nincenses\\nincensing\\nincentive\\nincentives\\nincept\\nincepted\\nincepting\\ninception\\ninceptions\\ninceptor\\ninceptors\\nincepts\\nincessant\\nincessantly\\nincest\\nincests\\nincestuous\\ninch\\ninched\\ninches\\ninching\\ninchmeal\\ninchoate\\ninchworm\\ninchworms\\nincidence\\nincidences\\nincident\\nincidental\\nincidentally\\nincidentals\\nincidents\\nincinerate\\nincinerated\\nincinerates\\nincinerating\\nincinerator\\nincinerators\\nincipient\\nincipit\\nincipits\\nincise\\nincised\\nincises\\nincising\\nincision\\nincisions\\nincisive\\nincisively\\nincisor\\nincisors\\nincisory\\nincisure\\nincisures\\nincitant\\nincitants\\nincite\\nincited\\nincitement\\nincitements\\ninciter\\ninciters\\nincites\\ninciting\\nincivil\\nincivilities\\nincivility\\ninclasp\\ninclasped\\ninclasping\\ninclasps\\ninclemencies\\ninclemency\\ninclement\\ninclination\\ninclinations\\nincline\\ninclined\\nincliner\\nincliners\\ninclines\\ninclining\\ninclip\\ninclipped\\ninclipping\\ninclips\\ninclose\\ninclosed\\nincloser\\ninclosers\\nincloses\\ninclosing\\ninclosure\\ninclosures\\ninclude\\nincluded\\nincludes\\nincluding\\ninclusion\\ninclusions\\ninclusive\\nincog\\nincognito\\nincogs\\nincoherence\\nincoherences\\nincoherent\\nincoherently\\nincohesive\\nincombustible\\nincome\\nincomer\\nincomers\\nincomes\\nincoming\\nincomings\\nincommensurate\\nincommodious\\nincommunicable\\nincommunicado\\nincomparable\\nincompatibility\\nincompatible\\nincompetence\\nincompetences\\nincompetencies\\nincompetency\\nincompetent\\nincompetents\\nincomplete\\nincompletely\\nincompleteness\\nincompletenesses\\nincomprehensible\\ninconceivable\\ninconceivably\\ninconclusive\\nincongruent\\nincongruities\\nincongruity\\nincongruous\\nincongruously\\ninconnu\\ninconnus\\ninconsecutive\\ninconsequence\\ninconsequences\\ninconsequential\\ninconsequentially\\ninconsiderable\\ninconsiderate\\ninconsiderately\\ninconsiderateness\\ninconsideratenesses\\ninconsistencies\\ninconsistency\\ninconsistent\\ninconsistently\\ninconsolable\\ninconsolably\\ninconspicuous\\ninconspicuously\\ninconstancies\\ninconstancy\\ninconstant\\ninconstantly\\ninconsumable\\nincontestable\\nincontestably\\nincontinence\\nincontinences\\ninconvenience\\ninconvenienced\\ninconveniences\\ninconveniencing\\ninconvenient\\ninconveniently\\nincony\\nincorporate\\nincorporated\\nincorporates\\nincorporating\\nincorporation\\nincorporations\\nincorporeal\\nincorporeally\\nincorpse\\nincorpsed\\nincorpses\\nincorpsing\\nincorrect\\nincorrectly\\nincorrectness\\nincorrectnesses\\nincorrigibilities\\nincorrigibility\\nincorrigible\\nincorrigibly\\nincorruptible\\nincrease\\nincreased\\nincreases\\nincreasing\\nincreasingly\\nincreate\\nincredibilities\\nincredibility\\nincredible\\nincredibly\\nincredulities\\nincredulity\\nincredulous\\nincredulously\\nincrement\\nincremental\\nincremented\\nincrementing\\nincrements\\nincriminate\\nincriminated\\nincriminates\\nincriminating\\nincrimination\\nincriminations\\nincriminatory\\nincross\\nincrosses\\nincrust\\nincrusted\\nincrusting\\nincrusts\\nincubate\\nincubated\\nincubates\\nincubating\\nincubation\\nincubations\\nincubator\\nincubators\\nincubi\\nincubus\\nincubuses\\nincudal\\nincudate\\nincudes\\ninculcate\\ninculcated\\ninculcates\\ninculcating\\ninculcation\\ninculcations\\ninculpable\\nincult\\nincumbencies\\nincumbency\\nincumbent\\nincumbents\\nincumber\\nincumbered\\nincumbering\\nincumbers\\nincur\\nincurable\\nincurious\\nincurred\\nincurring\\nincurs\\nincursion\\nincursions\\nincurve\\nincurved\\nincurves\\nincurving\\nincus\\nincuse\\nincused\\nincuses\\nincusing\\nindaba\\nindabas\\nindagate\\nindagated\\nindagates\\nindagating\\nindamin\\nindamine\\nindamines\\nindamins\\nindebted\\nindebtedness\\nindebtednesses\\nindecencies\\nindecency\\nindecent\\nindecenter\\nindecentest\\nindecently\\nindecipherable\\nindecision\\nindecisions\\nindecisive\\nindecisively\\nindecisiveness\\nindecisivenesses\\nindecorous\\nindecorously\\nindecorousness\\nindecorousnesses\\nindeed\\nindefatigable\\nindefatigably\\nindefensible\\nindefinable\\nindefinably\\nindefinite\\nindefinitely\\nindelible\\nindelibly\\nindelicacies\\nindelicacy\\nindelicate\\nindemnification\\nindemnifications\\nindemnified\\nindemnifies\\nindemnify\\nindemnifying\\nindemnities\\nindemnity\\nindene\\nindenes\\nindent\\nindentation\\nindentations\\nindented\\nindenter\\nindenters\\nindenting\\nindentor\\nindentors\\nindents\\nindenture\\nindentured\\nindentures\\nindenturing\\nindependence\\nindependent\\nindependently\\nindescribable\\nindescribably\\nindestrucibility\\nindestrucible\\nindeterminacies\\nindeterminacy\\nindeterminate\\nindeterminately\\nindevout\\nindex\\nindexed\\nindexer\\nindexers\\nindexes\\nindexing\\nindia\\nindican\\nindicans\\nindicant\\nindicants\\nindicate\\nindicated\\nindicates\\nindicating\\nindication\\nindications\\nindicative\\nindicator\\nindicators\\nindices\\nindicia\\nindicias\\nindicium\\nindiciums\\nindict\\nindictable\\nindicted\\nindictee\\nindictees\\nindicter\\nindicters\\nindicting\\nindictment\\nindictments\\nindictor\\nindictors\\nindicts\\nindifference\\nindifferences\\nindifferent\\nindifferently\\nindigen\\nindigence\\nindigences\\nindigene\\nindigenes\\nindigenous\\nindigens\\nindigent\\nindigents\\nindigestible\\nindigestion\\nindigestions\\nindign\\nindignant\\nindignantly\\nindignation\\nindignations\\nindignities\\nindignity\\nindignly\\nindigo\\nindigoes\\nindigoid\\nindigoids\\nindigos\\nindirect\\nindirection\\nindirections\\nindirectly\\nindirectness\\nindirectnesses\\nindiscernible\\nindiscreet\\nindiscretion\\nindiscretions\\nindiscriminate\\nindiscriminately\\nindispensabilities\\nindispensability\\nindispensable\\nindispensables\\nindispensably\\nindisposed\\nindisposition\\nindispositions\\nindisputable\\nindisputably\\nindissoluble\\nindistinct\\nindistinctly\\nindistinctness\\nindistinctnesses\\nindistinguishable\\nindite\\nindited\\ninditer\\ninditers\\nindites\\ninditing\\nindium\\nindiums\\nindividual\\nindividualities\\nindividuality\\nindividualize\\nindividualized\\nindividualizes\\nindividualizing\\nindividually\\nindividuals\\nindivisibility\\nindivisible\\nindocile\\nindoctrinate\\nindoctrinated\\nindoctrinates\\nindoctrinating\\nindoctrination\\nindoctrinations\\nindol\\nindole\\nindolence\\nindolences\\nindolent\\nindoles\\nindols\\nindominitable\\nindominitably\\nindoor\\nindoors\\nindorse\\nindorsed\\nindorsee\\nindorsees\\nindorser\\nindorsers\\nindorses\\nindorsing\\nindorsor\\nindorsors\\nindow\\nindowed\\nindowing\\nindows\\nindoxyl\\nindoxyls\\nindraft\\nindrafts\\nindrawn\\nindri\\nindris\\nindubitable\\nindubitably\\ninduce\\ninduced\\ninducement\\ninducements\\ninducer\\ninducers\\ninduces\\ninducing\\ninduct\\ninducted\\ninductee\\ninductees\\ninducting\\ninduction\\ninductions\\ninductive\\ninductor\\ninductors\\ninducts\\nindue\\nindued\\nindues\\ninduing\\nindulge\\nindulged\\nindulgence\\nindulgent\\nindulgently\\nindulger\\nindulgers\\nindulges\\nindulging\\nindulin\\ninduline\\nindulines\\nindulins\\nindult\\nindults\\nindurate\\nindurated\\nindurates\\nindurating\\nindusia\\nindusial\\nindusium\\nindustrial\\nindustrialist\\nindustrialization\\nindustrializations\\nindustrialize\\nindustrialized\\nindustrializes\\nindustrializing\\nindustrially\\nindustries\\nindustrious\\nindustriously\\nindustriousness\\nindustriousnesses\\nindustry\\nindwell\\nindwelling\\nindwells\\nindwelt\\ninearth\\ninearthed\\ninearthing\\ninearths\\ninebriate\\ninebriated\\ninebriates\\ninebriating\\ninebriation\\ninebriations\\ninedible\\ninedita\\ninedited\\nineducable\\nineffable\\nineffably\\nineffective\\nineffectively\\nineffectiveness\\nineffectivenesses\\nineffectual\\nineffectually\\nineffectualness\\nineffectualnesses\\ninefficiency\\ninefficient\\ninefficiently\\ninelastic\\ninelasticities\\ninelasticity\\ninelegance\\ninelegances\\ninelegant\\nineligibility\\nineligible\\ninept\\nineptitude\\nineptitudes\\nineptly\\nineptness\\nineptnesses\\ninequalities\\ninequality\\ninequities\\ninequity\\nineradicable\\ninerrant\\ninert\\ninertia\\ninertiae\\ninertial\\ninertias\\ninertly\\ninertness\\ninertnesses\\ninerts\\ninescapable\\ninescapably\\ninessential\\ninestimable\\ninestimably\\ninevitabilities\\ninevitability\\ninevitable\\ninevitably\\ninexact\\ninexcusable\\ninexcusably\\ninexhaustible\\ninexhaustibly\\ninexorable\\ninexorably\\ninexpedient\\ninexpensive\\ninexperience\\ninexperienced\\ninexperiences\\ninexpert\\ninexpertly\\ninexpertness\\ninexpertnesses\\ninexperts\\ninexplicable\\ninexplicably\\ninexplicit\\ninexpressible\\ninexpressibly\\ninextinguishable\\ninextricable\\ninextricably\\ninfallibility\\ninfallible\\ninfallibly\\ninfamies\\ninfamous\\ninfamously\\ninfamy\\ninfancies\\ninfancy\\ninfant\\ninfanta\\ninfantas\\ninfante\\ninfantes\\ninfantile\\ninfantries\\ninfantry\\ninfants\\ninfarct\\ninfarcts\\ninfare\\ninfares\\ninfatuate\\ninfatuated\\ninfatuates\\ninfatuating\\ninfatuation\\ninfatuations\\ninfauna\\ninfaunae\\ninfaunal\\ninfaunas\\ninfeasibilities\\ninfeasibility\\ninfeasible\\ninfect\\ninfected\\ninfecter\\ninfecters\\ninfecting\\ninfection\\ninfections\\ninfectious\\ninfective\\ninfector\\ninfectors\\ninfects\\ninfecund\\ninfelicities\\ninfelicitous\\ninfelicity\\ninfeoff\\ninfeoffed\\ninfeoffing\\ninfeoffs\\ninfer\\ninference\\ninferenced\\ninferences\\ninferencing\\ninferential\\ninferior\\ninferiority\\ninferiors\\ninfernal\\ninfernally\\ninferno\\ninfernos\\ninferred\\ninferrer\\ninferrers\\ninferring\\ninfers\\ninfertile\\ninfertilities\\ninfertility\\ninfest\\ninfestation\\ninfestations\\ninfested\\ninfester\\ninfesters\\ninfesting\\ninfests\\ninfidel\\ninfidelities\\ninfidelity\\ninfidels\\ninfield\\ninfielder\\ninfielders\\ninfields\\ninfiltrate\\ninfiltrated\\ninfiltrates\\ninfiltrating\\ninfiltration\\ninfiltrations\\ninfinite\\ninfinitely\\ninfinites\\ninfinitesimal\\ninfinitesimally\\ninfinities\\ninfinitive\\ninfinitives\\ninfinitude\\ninfinitudes\\ninfinity\\ninfirm\\ninfirmaries\\ninfirmary\\ninfirmed\\ninfirming\\ninfirmities\\ninfirmity\\ninfirmly\\ninfirms\\ninfix\\ninfixed\\ninfixes\\ninfixing\\ninfixion\\ninfixions\\ninflame\\ninflamed\\ninflamer\\ninflamers\\ninflames\\ninflaming\\ninflammable\\ninflammation\\ninflammations\\ninflammatory\\ninflatable\\ninflate\\ninflated\\ninflater\\ninflaters\\ninflates\\ninflating\\ninflation\\ninflationary\\ninflator\\ninflators\\ninflect\\ninflected\\ninflecting\\ninflection\\ninflectional\\ninflections\\ninflects\\ninflexed\\ninflexibilities\\ninflexibility\\ninflexible\\ninflexibly\\ninflict\\ninflicted\\ninflicting\\ninfliction\\ninflictions\\ninflicts\\ninflight\\ninflow\\ninflows\\ninfluence\\ninfluences\\ninfluent\\ninfluential\\ninfluents\\ninfluenza\\ninfluenzas\\ninflux\\ninfluxes\\ninfo\\ninfold\\ninfolded\\ninfolder\\ninfolders\\ninfolding\\ninfolds\\ninform\\ninformal\\ninformalities\\ninformality\\ninformally\\ninformant\\ninformants\\ninformation\\ninformational\\ninformations\\ninformative\\ninformed\\ninformer\\ninformers\\ninforming\\ninforms\\ninfos\\ninfra\\ninfract\\ninfracted\\ninfracting\\ninfraction\\ninfractions\\ninfracts\\ninfrared\\ninfrareds\\ninfrequent\\ninfrequently\\ninfringe\\ninfringed\\ninfringement\\ninfringements\\ninfringes\\ninfringing\\ninfrugal\\ninfuriate\\ninfuriated\\ninfuriates\\ninfuriating\\ninfuriatingly\\ninfuse\\ninfused\\ninfuser\\ninfusers\\ninfuses\\ninfusing\\ninfusion\\ninfusions\\ninfusive\\ningate\\ningates\\ningather\\ningathered\\ningathering\\ningathers\\ningenious\\ningeniously\\ningeniousness\\ningeniousnesses\\ningenue\\ningenues\\ningenuities\\ningenuity\\ningenuous\\ningenuously\\ningenuousness\\ningenuousnesses\\ningest\\ningesta\\ningested\\ningesting\\ningests\\ningle\\ninglenook\\ninglenooks\\ningles\\ninglorious\\ningloriously\\ningoing\\ningot\\ningoted\\ningoting\\ningots\\ningraft\\ningrafted\\ningrafting\\ningrafts\\ningrain\\ningrained\\ningraining\\ningrains\\ningrate\\ningrates\\ningratiate\\ningratiated\\ningratiates\\ningratiating\\ningratitude\\ningratitudes\\ningredient\\ningredients\\ningress\\ningresses\\ningroup\\ningroups\\ningrown\\ningrowth\\ningrowths\\ninguinal\\ningulf\\ningulfed\\ningulfing\\ningulfs\\ninhabit\\ninhabitable\\ninhabitant\\ninhabited\\ninhabiting\\ninhabits\\ninhalant\\ninhalants\\ninhalation\\ninhalations\\ninhale\\ninhaled\\ninhaler\\ninhalers\\ninhales\\ninhaling\\ninhaul\\ninhauler\\ninhaulers\\ninhauls\\ninhere\\ninhered\\ninherent\\ninherently\\ninheres\\ninhering\\ninherit\\ninheritance\\ninheritances\\ninherited\\ninheriting\\ninheritor\\ninheritors\\ninherits\\ninhesion\\ninhesions\\ninhibit\\ninhibited\\ninhibiting\\ninhibition\\ninhibitions\\ninhibits\\ninhuman\\ninhumane\\ninhumanely\\ninhumanities\\ninhumanity\\ninhumanly\\ninhume\\ninhumed\\ninhumer\\ninhumers\\ninhumes\\ninhuming\\ninia\\ninimical\\ninimically\\ninimitable\\ninion\\niniquities\\niniquitous\\niniquity\\ninitial\\ninitialed\\ninitialing\\ninitialization\\ninitializations\\ninitialize\\ninitialized\\ninitializes\\ninitializing\\ninitialled\\ninitialling\\ninitially\\ninitials\\ninitiate\\ninitiated\\ninitiates\\ninitiating\\ninitiation\\ninitiations\\ninitiative\\ninitiatory\\ninject\\ninjected\\ninjecting\\ninjection\\ninjections\\ninjector\\ninjectors\\ninjects\\ninjudicious\\ninjudiciously\\ninjudiciousness\\ninjudiciousnesses\\ninjunction\\ninjunctions\\ninjure\\ninjured\\ninjurer\\ninjurers\\ninjures\\ninjuries\\ninjuring\\ninjurious\\ninjury\\nink\\ninkberries\\ninkberry\\ninkblot\\ninkblots\\ninked\\ninker\\ninkers\\ninkhorn\\ninkhorns\\ninkier\\ninkiest\\ninkiness\\ninkinesses\\ninking\\ninkle\\ninkles\\ninkless\\ninklike\\ninkling\\ninklings\\ninkpot\\ninkpots\\ninks\\ninkstand\\ninkstands\\ninkwell\\ninkwells\\ninkwood\\ninkwoods\\ninky\\ninlace\\ninlaced\\ninlaces\\ninlacing\\ninlaid\\ninland\\ninlander\\ninlanders\\ninlands\\ninlay\\ninlayer\\ninlayers\\ninlaying\\ninlays\\ninlet\\ninlets\\ninletting\\ninlier\\ninliers\\ninly\\ninmate\\ninmates\\ninmesh\\ninmeshed\\ninmeshes\\ninmeshing\\ninmost\\ninn\\ninnards\\ninnate\\ninnately\\ninned\\ninner\\ninnerly\\ninnermost\\ninners\\ninnersole\\ninnersoles\\ninnerve\\ninnerved\\ninnerves\\ninnerving\\ninning\\ninnings\\ninnkeeper\\ninnkeepers\\ninnless\\ninnocence\\ninnocences\\ninnocent\\ninnocenter\\ninnocentest\\ninnocently\\ninnocents\\ninnocuous\\ninnovate\\ninnovated\\ninnovates\\ninnovating\\ninnovation\\ninnovations\\ninnovative\\ninnovator\\ninnovators\\ninns\\ninnuendo\\ninnuendoed\\ninnuendoes\\ninnuendoing\\ninnuendos\\ninnumerable\\ninocula\\ninoculate\\ninoculated\\ninoculates\\ninoculating\\ninoculation\\ninoculations\\ninoculum\\ninoculums\\ninoffensive\\ninoperable\\ninoperative\\ninopportune\\ninopportunely\\ninordinate\\ninordinately\\ninorganic\\ninosite\\ninosites\\ninositol\\ninositols\\ninpatient\\ninpatients\\ninphase\\ninpour\\ninpoured\\ninpouring\\ninpours\\ninput\\ninputs\\ninputted\\ninputting\\ninquest\\ninquests\\ninquiet\\ninquieted\\ninquieting\\ninquiets\\ninquire\\ninquired\\ninquirer\\ninquirers\\ninquires\\ninquiries\\ninquiring\\ninquiringly\\ninquiry\\ninquisition\\ninquisitions\\ninquisitive\\ninquisitively\\ninquisitiveness\\ninquisitivenesses\\ninquisitor\\ninquisitorial\\ninquisitors\\ninroad\\ninroads\\ninrush\\ninrushes\\nins\\ninsalubrious\\ninsane\\ninsanely\\ninsaner\\ninsanest\\ninsanities\\ninsanity\\ninsatiable\\ninsatiate\\ninscribe\\ninscribed\\ninscribes\\ninscribing\\ninscription\\ninscriptions\\ninscroll\\ninscrolled\\ninscrolling\\ninscrolls\\ninscrutable\\ninscrutably\\ninsculp\\ninsculped\\ninsculping\\ninsculps\\ninseam\\ninseams\\ninsect\\ninsectan\\ninsecticidal\\ninsecticide\\ninsecticides\\ninsects\\ninsecuration\\ninsecurations\\ninsecure\\ninsecurely\\ninsecurities\\ninsecurity\\ninsensibilities\\ninsensibility\\ninsensible\\ninsensibly\\ninsensitive\\ninsensitivities\\ninsensitivity\\ninsentience\\ninsentiences\\ninsentient\\ninseparable\\ninsert\\ninserted\\ninserter\\ninserters\\ninserting\\ninsertion\\ninsertions\\ninserts\\ninset\\ninsets\\ninsetted\\ninsetter\\ninsetters\\ninsetting\\ninsheath\\ninsheathed\\ninsheathing\\ninsheaths\\ninshore\\ninshrine\\ninshrined\\ninshrines\\ninshrining\\ninside\\ninsider\\ninsiders\\ninsides\\ninsidious\\ninsidiously\\ninsidiousness\\ninsidiousnesses\\ninsight\\ninsightful\\ninsights\\ninsigne\\ninsignia\\ninsignias\\ninsignificant\\ninsincere\\ninsincerely\\ninsincerities\\ninsincerity\\ninsinuate\\ninsinuated\\ninsinuates\\ninsinuating\\ninsinuation\\ninsinuations\\ninsipid\\ninsipidities\\ninsipidity\\ninsipidus\\ninsist\\ninsisted\\ninsistence\\ninsistences\\ninsistent\\ninsistently\\ninsister\\ninsisters\\ninsisting\\ninsists\\ninsnare\\ninsnared\\ninsnarer\\ninsnarers\\ninsnares\\ninsnaring\\ninsofar\\ninsolate\\ninsolated\\ninsolates\\ninsolating\\ninsole\\ninsolence\\ninsolences\\ninsolent\\ninsolents\\ninsoles\\ninsolubilities\\ninsolubility\\ninsoluble\\ninsolvencies\\ninsolvency\\ninsolvent\\ninsomnia\\ninsomnias\\ninsomuch\\ninsouciance\\ninsouciances\\ninsouciant\\ninsoul\\ninsouled\\ninsouling\\ninsouls\\ninspan\\ninspanned\\ninspanning\\ninspans\\ninspect\\ninspected\\ninspecting\\ninspection\\ninspections\\ninspector\\ninspectors\\ninspects\\ninsphere\\ninsphered\\ninspheres\\ninsphering\\ninspiration\\ninspirational\\ninspirations\\ninspire\\ninspired\\ninspirer\\ninspirers\\ninspires\\ninspiring\\ninspirit\\ninspirited\\ninspiriting\\ninspirits\\ninstabilities\\ninstability\\ninstable\\ninstal\\ninstall\\ninstallation\\ninstallations\\ninstalled\\ninstalling\\ninstallment\\ninstallments\\ninstalls\\ninstals\\ninstance\\ninstanced\\ninstances\\ninstancies\\ninstancing\\ninstancy\\ninstant\\ninstantaneous\\ninstantaneously\\ninstantly\\ninstants\\ninstar\\ninstarred\\ninstarring\\ninstars\\ninstate\\ninstated\\ninstates\\ninstating\\ninstead\\ninstep\\ninsteps\\ninstigate\\ninstigated\\ninstigates\\ninstigating\\ninstigation\\ninstigations\\ninstigator\\ninstigators\\ninstil\\ninstill\\ninstilled\\ninstilling\\ninstills\\ninstils\\ninstinct\\ninstinctive\\ninstinctively\\ninstincts\\ninstitute\\ninstitutes\\ninstitution\\ninstitutional\\ninstitutionalize\\ninstitutionally\\ninstitutions\\ninstransitive\\ninstroke\\ninstrokes\\ninstruct\\ninstructed\\ninstructing\\ninstruction\\ninstructional\\ninstructions\\ninstructive\\ninstructor\\ninstructors\\ninstructorship\\ninstructorships\\ninstructs\\ninstrument\\ninstrumental\\ninstrumentalist\\ninstrumentalists\\ninstrumentalities\\ninstrumentality\\ninstrumentals\\ninstrumentation\\ninstrumentations\\ninstruments\\ninsubordinate\\ninsubordination\\ninsubordinations\\ninsubstantial\\ninsufferable\\ninsufferably\\ninsufficent\\ninsufficiencies\\ninsufficiency\\ninsufficient\\ninsufficiently\\ninsulant\\ninsulants\\ninsular\\ninsularities\\ninsularity\\ninsulars\\ninsulate\\ninsulated\\ninsulates\\ninsulating\\ninsulation\\ninsulations\\ninsulator\\ninsulators\\ninsulin\\ninsulins\\ninsult\\ninsulted\\ninsulter\\ninsulters\\ninsulting\\ninsultingly\\ninsults\\ninsuperable\\ninsuperably\\ninsupportable\\ninsurable\\ninsurance\\ninsurances\\ninsurant\\ninsurants\\ninsure\\ninsured\\ninsureds\\ninsurer\\ninsurers\\ninsures\\ninsurgence\\ninsurgences\\ninsurgencies\\ninsurgency\\ninsurgent\\ninsurgents\\ninsuring\\ninsurmounable\\ninsurmounably\\ninsurrection\\ninsurrectionist\\ninsurrectionists\\ninsurrections\\ninswathe\\ninswathed\\ninswathes\\ninswathing\\ninswept\\nintact\\nintagli\\nintaglio\\nintaglios\\nintake\\nintakes\\nintangibilities\\nintangibility\\nintangible\\nintangibly\\nintarsia\\nintarsias\\ninteger\\nintegers\\nintegral\\nintegrals\\nintegrate\\nintegrated\\nintegrates\\nintegrating\\nintegration\\nintegrities\\nintegrity\\nintellect\\nintellects\\nintellectual\\nintellectualism\\nintellectualisms\\nintellectually\\nintellectuals\\nintelligence\\nintelligent\\nintelligently\\nintelligibilities\\nintelligibility\\nintelligible\\nintelligibly\\nintemperance\\nintemperances\\nintemperate\\nintemperateness\\nintemperatenesses\\nintend\\nintended\\nintendeds\\nintender\\nintenders\\nintending\\nintends\\nintense\\nintensely\\nintenser\\nintensest\\nintensification\\nintensifications\\nintensified\\nintensifies\\nintensify\\nintensifying\\nintensities\\nintensity\\nintensive\\nintensively\\nintent\\nintention\\nintentional\\nintentionally\\nintentions\\nintently\\nintentness\\nintentnesses\\nintents\\ninter\\ninteract\\ninteracted\\ninteracting\\ninteraction\\ninteractions\\ninteractive\\ninteractively\\ninteracts\\ninteragency\\ninteratomic\\ninterbank\\ninterborough\\ninterbred\\ninterbreed\\ninterbreeding\\ninterbreeds\\ninterbusiness\\nintercalate\\nintercalated\\nintercalates\\nintercalating\\nintercalation\\nintercalations\\nintercampus\\nintercede\\ninterceded\\nintercedes\\ninterceding\\nintercept\\nintercepted\\nintercepting\\ninterception\\ninterceptions\\ninterceptor\\ninterceptors\\nintercepts\\nintercession\\nintercessions\\nintercessor\\nintercessors\\nintercessory\\ninterchange\\ninterchangeable\\ninterchangeably\\ninterchanged\\ninterchanges\\ninterchanging\\ninterchurch\\nintercity\\ninterclass\\nintercoastal\\nintercollegiate\\nintercolonial\\nintercom\\nintercommunal\\nintercommunity\\nintercompany\\nintercoms\\nintercontinental\\ninterconversion\\nintercounty\\nintercourse\\nintercourses\\nintercultural\\nintercurrent\\nintercut\\nintercuts\\nintercutting\\ninterdenominational\\ninterdepartmental\\ninterdependence\\ninterdependences\\ninterdependent\\ninterdict\\ninterdicted\\ninterdicting\\ninterdiction\\ninterdictions\\ninterdicts\\ninterdivisional\\ninterelectronic\\ninterest\\ninterested\\ninteresting\\ninterestingly\\ninterests\\ninterethnic\\ninterface\\ninterfaces\\ninterfacial\\ninterfaculty\\ninterfamily\\ninterfere\\ninterfered\\ninterference\\ninterferences\\ninterferes\\ninterfering\\ninterfiber\\ninterfraternity\\nintergalactic\\nintergang\\nintergovernmental\\nintergroup\\ninterhemispheric\\ninterim\\ninterims\\ninterindustry\\ninterinstitutional\\ninterior\\ninteriors\\ninterisland\\ninterject\\ninterjected\\ninterjecting\\ninterjection\\ninterjectionally\\ninterjections\\ninterjects\\ninterlace\\ninterlaced\\ninterlaces\\ninterlacing\\ninterlaid\\ninterlap\\ninterlapped\\ninterlapping\\ninterlaps\\ninterlard\\ninterlards\\ninterlay\\ninterlaying\\ninterlays\\ninterleave\\ninterleaved\\ninterleaves\\ninterleaving\\ninterlibrary\\ninterlinear\\ninterlock\\ninterlocked\\ninterlocking\\ninterlocks\\ninterlope\\ninterloped\\ninterloper\\ninterlopers\\ninterlopes\\ninterloping\\ninterlude\\ninterludes\\nintermarriage\\nintermarriages\\nintermarried\\nintermarries\\nintermarry\\nintermarrying\\nintermediaries\\nintermediary\\nintermediate\\nintermediates\\ninterment\\ninterments\\ninterminable\\ninterminably\\nintermingle\\nintermingled\\nintermingles\\nintermingling\\nintermission\\nintermissions\\nintermit\\nintermits\\nintermitted\\nintermittent\\nintermittently\\nintermitting\\nintermix\\nintermixed\\nintermixes\\nintermixing\\nintermixture\\nintermixtures\\nintermolecular\\nintermountain\\nintern\\ninternal\\ninternally\\ninternals\\ninternational\\ninternationalism\\ninternationalisms\\ninternationalize\\ninternationalized\\ninternationalizes\\ninternationalizing\\ninternationally\\ninternationals\\ninterne\\ninterned\\ninternee\\ninternees\\ninternes\\ninterning\\ninternist\\ninternists\\ninternment\\ninternments\\ninterns\\ninternship\\ninternships\\ninteroceanic\\ninteroffice\\ninterparticle\\ninterparty\\ninterpersonal\\ninterplanetary\\ninterplay\\ninterplays\\ninterpolate\\ninterpolated\\ninterpolates\\ninterpolating\\ninterpolation\\ninterpolations\\ninterpopulation\\ninterpose\\ninterposed\\ninterposes\\ninterposing\\ninterposition\\ninterpositions\\ninterpret\\ninterpretation\\ninterpretations\\ninterpretative\\ninterpreted\\ninterpreter\\ninterpreters\\ninterpreting\\ninterpretive\\ninterprets\\ninterprovincial\\ninterpupil\\ninterquartile\\ninterracial\\ninterred\\ninterreges\\ninterregional\\ninterrelate\\ninterrelated\\ninterrelatedness\\ninterrelatednesses\\ninterrelates\\ninterrelating\\ninterrelation\\ninterrelations\\ninterrelationship\\ninterreligious\\ninterrex\\ninterring\\ninterrogate\\ninterrogated\\ninterrogates\\ninterrogating\\ninterrogation\\ninterrogations\\ninterrogative\\ninterrogatives\\ninterrogator\\ninterrogators\\ninterrogatory\\ninterrupt\\ninterrupted\\ninterrupter\\ninterrupters\\ninterrupting\\ninterruption\\ninterruptions\\ninterruptive\\ninterrupts\\ninters\\ninterscholastic\\nintersect\\nintersected\\nintersecting\\nintersection\\nintersectional\\nintersections\\nintersects\\nintersex\\nintersexes\\nintersperse\\ninterspersed\\nintersperses\\ninterspersing\\ninterspersion\\ninterspersions\\ninterstate\\ninterstellar\\ninterstice\\ninterstices\\nintersticial\\ninterstitial\\nintersystem\\ninterterm\\ninterterminal\\nintertie\\ninterties\\nintertribal\\nintertroop\\nintertropical\\nintertwine\\nintertwined\\nintertwines\\nintertwining\\ninteruniversity\\ninterurban\\ninterval\\nintervalley\\nintervals\\nintervene\\nintervened\\nintervenes\\nintervening\\nintervention\\ninterventions\\ninterview\\ninterviewed\\ninterviewer\\ninterviewers\\ninterviewing\\ninterviews\\nintervillage\\ninterwar\\ninterweave\\ninterweaves\\ninterweaving\\ninterwoven\\ninterzonal\\ninterzone\\nintestate\\nintestinal\\nintestine\\nintestines\\ninthral\\ninthrall\\ninthralled\\ninthralling\\ninthralls\\ninthrals\\ninthrone\\ninthroned\\ninthrones\\ninthroning\\nintima\\nintimacies\\nintimacy\\nintimae\\nintimal\\nintimas\\nintimate\\nintimated\\nintimately\\nintimates\\nintimating\\nintimation\\nintimations\\nintime\\nintimidate\\nintimidated\\nintimidates\\nintimidating\\nintimidation\\nintimidations\\nintine\\nintines\\nintitle\\nintitled\\nintitles\\nintitling\\nintitule\\nintituled\\nintitules\\nintituling\\ninto\\nintolerable\\nintolerably\\nintolerance\\nintolerances\\nintolerant\\nintomb\\nintombed\\nintombing\\nintombs\\nintonate\\nintonated\\nintonates\\nintonating\\nintonation\\nintonations\\nintone\\nintoned\\nintoner\\nintoners\\nintones\\nintoning\\nintort\\nintorted\\nintorting\\nintorts\\nintown\\nintoxicant\\nintoxicants\\nintoxicate\\nintoxicated\\nintoxicates\\nintoxicating\\nintoxication\\nintoxications\\nintractable\\nintrados\\nintradoses\\nintramural\\nintransigence\\nintransigences\\nintransigent\\nintransigents\\nintrant\\nintrants\\nintravenous\\nintravenously\\nintreat\\nintreated\\nintreating\\nintreats\\nintrench\\nintrenched\\nintrenches\\nintrenching\\nintrepid\\nintrepidities\\nintrepidity\\nintricacies\\nintricacy\\nintricate\\nintricately\\nintrigue\\nintrigued\\nintrigues\\nintriguing\\nintriguingly\\nintrinsic\\nintrinsically\\nintro\\nintroduce\\nintroduced\\nintroduces\\nintroducing\\nintroduction\\nintroductions\\nintroductory\\nintrofied\\nintrofies\\nintrofy\\nintrofying\\nintroit\\nintroits\\nintromit\\nintromits\\nintromitted\\nintromitting\\nintrorse\\nintros\\nintrospect\\nintrospected\\nintrospecting\\nintrospection\\nintrospections\\nintrospective\\nintrospectively\\nintrospects\\nintroversion\\nintroversions\\nintrovert\\nintroverted\\nintroverts\\nintrude\\nintruded\\nintruder\\nintruders\\nintrudes\\nintruding\\nintrusion\\nintrusions\\nintrusive\\nintrusiveness\\nintrusivenesses\\nintrust\\nintrusted\\nintrusting\\nintrusts\\nintubate\\nintubated\\nintubates\\nintubating\\nintuit\\nintuited\\nintuiting\\nintuition\\nintuitions\\nintuitive\\nintuitively\\nintuits\\ninturn\\ninturned\\ninturns\\nintwine\\nintwined\\nintwines\\nintwining\\nintwist\\nintwisted\\nintwisting\\nintwists\\ninulase\\ninulases\\ninulin\\ninulins\\ninundant\\ninundate\\ninundated\\ninundates\\ninundating\\ninundation\\ninundations\\ninurbane\\ninure\\ninured\\ninures\\ninuring\\ninurn\\ninurned\\ninurning\\ninurns\\ninutile\\ninvade\\ninvaded\\ninvader\\ninvaders\\ninvades\\ninvading\\ninvalid\\ninvalidate\\ninvalidated\\ninvalidates\\ninvalidating\\ninvalided\\ninvaliding\\ninvalidism\\ninvalidity\\ninvalidly\\ninvalids\\ninvaluable\\ninvar\\ninvariable\\ninvariably\\ninvars\\ninvasion\\ninvasions\\ninvasive\\ninvected\\ninvective\\ninvectives\\ninveigh\\ninveighed\\ninveighing\\ninveighs\\ninveigle\\ninveigled\\ninveigles\\ninveigling\\ninvent\\ninvented\\ninventer\\ninventers\\ninventing\\ninvention\\ninventions\\ninventive\\ninventiveness\\ninventivenesses\\ninventor\\ninventoried\\ninventories\\ninventors\\ninventory\\ninventorying\\ninvents\\ninverities\\ninverity\\ninverse\\ninversely\\ninverses\\ninversion\\ninversions\\ninvert\\ninverted\\ninverter\\ninverters\\ninvertibrate\\ninvertibrates\\ninverting\\ninvertor\\ninvertors\\ninverts\\ninvest\\ninvested\\ninvestigate\\ninvestigated\\ninvestigates\\ninvestigating\\ninvestigation\\ninvestigations\\ninvestigative\\ninvestigator\\ninvestigators\\ninvesting\\ninvestiture\\ninvestitures\\ninvestment\\ninvestments\\ninvestor\\ninvestors\\ninvests\\ninveteracies\\ninveteracy\\ninveterate\\ninviable\\ninviably\\ninvidious\\ninvidiously\\ninvigorate\\ninvigorated\\ninvigorates\\ninvigorating\\ninvigoration\\ninvigorations\\ninvincibilities\\ninvincibility\\ninvincible\\ninvincibly\\ninviolabilities\\ninviolability\\ninviolable\\ninviolate\\ninvirile\\ninviscid\\ninvisibilities\\ninvisibility\\ninvisible\\ninvisibly\\ninvital\\ninvitation\\ninvitations\\ninvite\\ninvited\\ninvitee\\ninvitees\\ninviter\\ninviters\\ninvites\\ninviting\\ninvocate\\ninvocated\\ninvocates\\ninvocating\\ninvocation\\ninvocations\\ninvoice\\ninvoiced\\ninvoices\\ninvoicing\\ninvoke\\ninvoked\\ninvoker\\ninvokers\\ninvokes\\ninvoking\\ninvoluntarily\\ninvoluntary\\ninvolute\\ninvoluted\\ninvolutes\\ninvoluting\\ninvolve\\ninvolved\\ninvolvement\\ninvolvements\\ninvolver\\ninvolvers\\ninvolves\\ninvolving\\ninvulnerability\\ninvulnerable\\ninvulnerably\\ninwall\\ninwalled\\ninwalling\\ninwalls\\ninward\\ninwardly\\ninwards\\ninweave\\ninweaved\\ninweaves\\ninweaving\\ninwind\\ninwinding\\ninwinds\\ninwound\\ninwove\\ninwoven\\ninwrap\\ninwrapped\\ninwrapping\\ninwraps\\niodate\\niodated\\niodates\\niodating\\niodation\\niodations\\niodic\\niodid\\niodide\\niodides\\niodids\\niodin\\niodinate\\niodinated\\niodinates\\niodinating\\niodine\\niodines\\niodins\\niodism\\niodisms\\niodize\\niodized\\niodizer\\niodizers\\niodizes\\niodizing\\niodoform\\niodoforms\\niodol\\niodols\\niodophor\\niodophors\\niodopsin\\niodopsins\\niodous\\niolite\\niolites\\nion\\nionic\\nionicities\\nionicity\\nionics\\nionise\\nionised\\nionises\\nionising\\nionium\\nioniums\\nionizable\\nionize\\nionized\\nionizer\\nionizers\\nionizes\\nionizing\\nionomer\\nionomers\\nionone\\nionones\\nionosphere\\nionospheres\\nionospheric\\nions\\niota\\niotacism\\niotacisms\\niotas\\nipecac\\nipecacs\\nipomoea\\nipomoeas\\niracund\\nirade\\nirades\\nirascibilities\\nirascibility\\nirascible\\nirate\\nirately\\nirater\\niratest\\nire\\nired\\nireful\\nirefully\\nireless\\nirenic\\nirenical\\nirenics\\nires\\nirides\\niridescence\\niridescences\\niridescent\\niridic\\niridium\\niridiums\\nirids\\niring\\niris\\nirised\\nirises\\nirising\\niritic\\niritis\\niritises\\nirk\\nirked\\nirking\\nirks\\nirksome\\nirksomely\\niron\\nironbark\\nironbarks\\nironclad\\nironclads\\nirone\\nironed\\nironer\\nironers\\nirones\\nironic\\nironical\\nironically\\nironies\\nironing\\nironings\\nironist\\nironists\\nironlike\\nironness\\nironnesses\\nirons\\nironside\\nironsides\\nironware\\nironwares\\nironweed\\nironweeds\\nironwood\\nironwoods\\nironwork\\nironworker\\nironworkers\\nironworks\\nirony\\nirradiate\\nirradiated\\nirradiates\\nirradiating\\nirradiation\\nirradiations\\nirrational\\nirrationalities\\nirrationality\\nirrationally\\nirrationals\\nirreal\\nirreconcilabilities\\nirreconcilability\\nirreconcilable\\nirrecoverable\\nirrecoverably\\nirredeemable\\nirreducible\\nirreducibly\\nirrefutable\\nirregular\\nirregularities\\nirregularity\\nirregularly\\nirregulars\\nirrelevance\\nirrelevances\\nirrelevant\\nirreligious\\nirreparable\\nirreplaceable\\nirrepressible\\nirreproachable\\nirresistible\\nirresolute\\nirresolutely\\nirresolution\\nirresolutions\\nirrespective\\nirresponsibilities\\nirresponsibility\\nirresponsible\\nirresponsibly\\nirretrievable\\nirreverence\\nirreverences\\nirreversible\\nirrevocable\\nirrigate\\nirrigated\\nirrigates\\nirrigating\\nirrigation\\nirrigations\\nirritabilities\\nirritability\\nirritable\\nirritably\\nirritant\\nirritants\\nirritate\\nirritated\\nirritates\\nirritating\\nirritatingly\\nirritation\\nirritations\\nirrupt\\nirrupted\\nirrupting\\nirrupts\\nis\\nisagoge\\nisagoges\\nisagogic\\nisagogics\\nisarithm\\nisarithms\\nisatin\\nisatine\\nisatines\\nisatinic\\nisatins\\nisba\\nisbas\\nischemia\\nischemias\\nischemic\\nischia\\nischial\\nischium\\nisinglass\\nisland\\nislanded\\nislander\\nislanders\\nislanding\\nislands\\nisle\\nisled\\nisleless\\nisles\\nislet\\nislets\\nisling\\nism\\nisms\\nisobar\\nisobare\\nisobares\\nisobaric\\nisobars\\nisobath\\nisobaths\\nisocheim\\nisocheims\\nisochime\\nisochimes\\nisochor\\nisochore\\nisochores\\nisochors\\nisochron\\nisochrons\\nisocline\\nisoclines\\nisocracies\\nisocracy\\nisodose\\nisogamies\\nisogamy\\nisogenic\\nisogenies\\nisogeny\\nisogloss\\nisoglosses\\nisogon\\nisogonal\\nisogonals\\nisogone\\nisogones\\nisogonic\\nisogonics\\nisogonies\\nisogons\\nisogony\\nisogram\\nisograms\\nisograph\\nisographs\\nisogriv\\nisogrivs\\nisohel\\nisohels\\nisohyet\\nisohyets\\nisolable\\nisolate\\nisolated\\nisolates\\nisolating\\nisolation\\nisolations\\nisolator\\nisolators\\nisolead\\nisoleads\\nisoline\\nisolines\\nisolog\\nisologs\\nisologue\\nisologues\\nisomer\\nisomeric\\nisomers\\nisometric\\nisometrics\\nisometries\\nisometry\\nisomorph\\nisomorphs\\nisonomic\\nisonomies\\nisonomy\\nisophote\\nisophotes\\nisopleth\\nisopleths\\nisopod\\nisopodan\\nisopodans\\nisopods\\nisoprene\\nisoprenes\\nisospin\\nisospins\\nisospories\\nisospory\\nisostasies\\nisostasy\\nisotach\\nisotachs\\nisothere\\nisotheres\\nisotherm\\nisotherms\\nisotone\\nisotones\\nisotonic\\nisotope\\nisotopes\\nisotopic\\nisotopically\\nisotopies\\nisotopy\\nisotropies\\nisotropy\\nisotype\\nisotypes\\nisotypic\\nisozyme\\nisozymes\\nisozymic\\nissei\\nisseis\\nissuable\\nissuably\\nissuance\\nissuances\\nissuant\\nissue\\nissued\\nissuer\\nissuers\\nissues\\nissuing\\nisthmi\\nisthmian\\nisthmians\\nisthmic\\nisthmoid\\nisthmus\\nisthmuses\\nistle\\nistles\\nit\\nitalic\\nitalicization\\nitalicizations\\nitalicize\\nitalicized\\nitalicizes\\nitalicizing\\nitalics\\nitch\\nitched\\nitches\\nitchier\\nitchiest\\nitching\\nitchings\\nitchy\\nitem\\nitemed\\niteming\\nitemization\\nitemizations\\nitemize\\nitemized\\nitemizer\\nitemizers\\nitemizes\\nitemizing\\nitems\\niterance\\niterances\\niterant\\niterate\\niterated\\niterates\\niterating\\niteration\\niterations\\niterative\\niterum\\nither\\nitinerant\\nitinerants\\nitinerary\\nits\\nitself\\nivied\\nivies\\nivories\\nivory\\nivy\\nivylike\\niwis\\nixia\\nixias\\nixodid\\nixodids\\nixtle\\nixtles\\nizar\\nizars\\nizzard\\nizzards\\njab\\njabbed\\njabber\\njabbered\\njabberer\\njabberers\\njabbering\\njabbers\\njabbing\\njabiru\\njabirus\\njabot\\njabots\\njabs\\njacal\\njacales\\njacals\\njacamar\\njacamars\\njacana\\njacanas\\njacinth\\njacinthe\\njacinthes\\njacinths\\njack\\njackal\\njackals\\njackaroo\\njackaroos\\njackass\\njackasses\\njackboot\\njackboots\\njackdaw\\njackdaws\\njacked\\njacker\\njackeroo\\njackeroos\\njackers\\njacket\\njacketed\\njacketing\\njackets\\njackfish\\njackfishes\\njackhammer\\njackhammers\\njackies\\njacking\\njackknife\\njackknifed\\njackknifes\\njackknifing\\njackknives\\njackleg\\njacklegs\\njackpot\\njackpots\\njackrabbit\\njackrabbits\\njacks\\njackstay\\njackstays\\njacky\\njacobin\\njacobins\\njacobus\\njacobuses\\njaconet\\njaconets\\njacquard\\njacquards\\njacqueline\\njaculate\\njaculated\\njaculates\\njaculating\\njade\\njaded\\njadedly\\njadeite\\njadeites\\njades\\njading\\njadish\\njadishly\\njaditic\\njaeger\\njaegers\\njag\\njager\\njagers\\njagg\\njaggaries\\njaggary\\njagged\\njaggeder\\njaggedest\\njaggedly\\njagger\\njaggeries\\njaggers\\njaggery\\njaggheries\\njagghery\\njaggier\\njaggiest\\njagging\\njaggs\\njaggy\\njagless\\njagra\\njagras\\njags\\njaguar\\njaguars\\njail\\njailbait\\njailbird\\njailbirds\\njailbreak\\njailbreaks\\njailed\\njailer\\njailers\\njailing\\njailor\\njailors\\njails\\njake\\njakes\\njalap\\njalapic\\njalapin\\njalapins\\njalaps\\njalop\\njalopies\\njaloppies\\njaloppy\\njalops\\njalopy\\njalousie\\njalousies\\njam\\njamb\\njambe\\njambeau\\njambeaux\\njambed\\njambes\\njambing\\njamboree\\njamborees\\njambs\\njammed\\njammer\\njammers\\njamming\\njams\\njane\\njanes\\njangle\\njangled\\njangler\\njanglers\\njangles\\njangling\\njaniform\\njanisaries\\njanisary\\njanitor\\njanitorial\\njanitors\\njanizaries\\njanizary\\njanty\\njapan\\njapanize\\njapanized\\njapanizes\\njapanizing\\njapanned\\njapanner\\njapanners\\njapanning\\njapans\\njape\\njaped\\njaper\\njaperies\\njapers\\njapery\\njapes\\njaping\\njapingly\\njaponica\\njaponicas\\njar\\njarful\\njarfuls\\njargon\\njargoned\\njargonel\\njargonels\\njargoning\\njargons\\njargoon\\njargoons\\njarina\\njarinas\\njarl\\njarldom\\njarldoms\\njarls\\njarosite\\njarosites\\njarovize\\njarovized\\njarovizes\\njarovizing\\njarrah\\njarrahs\\njarred\\njarring\\njars\\njarsful\\njarvey\\njarveys\\njasey\\njasmine\\njasmines\\njasper\\njaspers\\njaspery\\njassid\\njassids\\njato\\njatos\\njauk\\njauked\\njauking\\njauks\\njaunce\\njaunced\\njaunces\\njauncing\\njaundice\\njaundiced\\njaundices\\njaundicing\\njaunt\\njaunted\\njauntier\\njauntiest\\njauntily\\njauntiness\\njauntinesses\\njaunting\\njaunts\\njaunty\\njaup\\njauped\\njauping\\njaups\\njava\\njavas\\njavelin\\njavelina\\njavelinas\\njavelined\\njavelining\\njavelins\\njaw\\njawan\\njawans\\njawbone\\njawboned\\njawbones\\njawboning\\njawed\\njawing\\njawlike\\njawline\\njawlines\\njaws\\njay\\njaybird\\njaybirds\\njaygee\\njaygees\\njays\\njayvee\\njayvees\\njaywalk\\njaywalked\\njaywalker\\njaywalkers\\njaywalking\\njaywalks\\njazz\\njazzed\\njazzer\\njazzers\\njazzes\\njazzier\\njazziest\\njazzily\\njazzing\\njazzman\\njazzmen\\njazzy\\njealous\\njealousies\\njealously\\njealousy\\njean\\njeans\\njeapordize\\njeapordized\\njeapordizes\\njeapordizing\\njeapordous\\njebel\\njebels\\njee\\njeed\\njeeing\\njeep\\njeepers\\njeeps\\njeer\\njeered\\njeerer\\njeerers\\njeering\\njeers\\njees\\njeez\\njefe\\njefes\\njehad\\njehads\\njehu\\njehus\\njejuna\\njejunal\\njejune\\njejunely\\njejunities\\njejunity\\njejunum\\njell\\njelled\\njellied\\njellies\\njellified\\njellifies\\njellify\\njellifying\\njelling\\njells\\njelly\\njellyfish\\njellyfishes\\njellying\\njelutong\\njelutongs\\njemadar\\njemadars\\njemidar\\njemidars\\njemmied\\njemmies\\njemmy\\njemmying\\njennet\\njennets\\njennies\\njenny\\njeopard\\njeoparded\\njeopardies\\njeoparding\\njeopards\\njeopardy\\njeopordize\\njeopordized\\njeopordizes\\njeopordizing\\njerboa\\njerboas\\njereed\\njereeds\\njeremiad\\njeremiads\\njerid\\njerids\\njerk\\njerked\\njerker\\njerkers\\njerkier\\njerkies\\njerkiest\\njerkily\\njerkin\\njerking\\njerkins\\njerks\\njerky\\njeroboam\\njeroboams\\njerreed\\njerreeds\\njerrican\\njerricans\\njerrid\\njerrids\\njerries\\njerry\\njerrycan\\njerrycans\\njersey\\njerseyed\\njerseys\\njess\\njessant\\njesse\\njessed\\njesses\\njessing\\njest\\njested\\njester\\njesters\\njestful\\njesting\\njestings\\njests\\njesuit\\njesuitic\\njesuitries\\njesuitry\\njesuits\\njet\\njetbead\\njetbeads\\njete\\njetes\\njetliner\\njetliners\\njeton\\njetons\\njetport\\njetports\\njets\\njetsam\\njetsams\\njetsom\\njetsoms\\njetted\\njettied\\njetties\\njetting\\njettison\\njettisoned\\njettisoning\\njettisons\\njetton\\njettons\\njetty\\njettying\\njeu\\njeux\\njew\\njewed\\njewel\\njeweled\\njeweler\\njewelers\\njeweling\\njewelled\\njeweller\\njewellers\\njewelling\\njewelries\\njewelry\\njewels\\njewfish\\njewfishes\\njewing\\njews\\njezail\\njezails\\njezebel\\njezebels\\njib\\njibb\\njibbed\\njibber\\njibbers\\njibbing\\njibboom\\njibbooms\\njibbs\\njibe\\njibed\\njiber\\njibers\\njibes\\njibing\\njibingly\\njibs\\njiff\\njiffies\\njiffs\\njiffy\\njig\\njigaboo\\njigaboos\\njigged\\njigger\\njiggered\\njiggers\\njigging\\njiggle\\njiggled\\njiggles\\njigglier\\njiggliest\\njiggling\\njiggly\\njigs\\njigsaw\\njigsawed\\njigsawing\\njigsawn\\njigsaws\\njihad\\njihads\\njill\\njillion\\njillions\\njills\\njilt\\njilted\\njilter\\njilters\\njilting\\njilts\\njiminy\\njimjams\\njimmied\\njimmies\\njimminy\\njimmy\\njimmying\\njimp\\njimper\\njimpest\\njimply\\njimpy\\njimsonweed\\njimsonweeds\\njin\\njingal\\njingall\\njingalls\\njingals\\njingko\\njingkoes\\njingle\\njingled\\njingler\\njinglers\\njingles\\njinglier\\njingliest\\njingling\\njingly\\njingo\\njingoes\\njingoish\\njingoism\\njingoisms\\njingoist\\njingoistic\\njingoists\\njink\\njinked\\njinker\\njinkers\\njinking\\njinks\\njinn\\njinnee\\njinni\\njinns\\njins\\njinx\\njinxed\\njinxes\\njinxing\\njipijapa\\njipijapas\\njitney\\njitneys\\njitter\\njittered\\njittering\\njitters\\njittery\\njiujitsu\\njiujitsus\\njiujutsu\\njiujutsus\\njive\\njived\\njives\\njiving\\njnana\\njnanas\\njo\\njoannes\\njob\\njobbed\\njobber\\njobberies\\njobbers\\njobbery\\njobbing\\njobholder\\njobholders\\njobless\\njobs\\njock\\njockey\\njockeyed\\njockeying\\njockeys\\njocko\\njockos\\njocks\\njocose\\njocosely\\njocosities\\njocosity\\njocular\\njocund\\njocundly\\njodhpur\\njodhpurs\\njoe\\njoes\\njoey\\njoeys\\njog\\njogged\\njogger\\njoggers\\njogging\\njoggle\\njoggled\\njoggler\\njogglers\\njoggles\\njoggling\\njogs\\njohannes\\njohn\\njohnboat\\njohnboats\\njohnnies\\njohnny\\njohns\\njoin\\njoinable\\njoinder\\njoinders\\njoined\\njoiner\\njoineries\\njoiners\\njoinery\\njoining\\njoinings\\njoins\\njoint\\njointed\\njointer\\njointers\\njointing\\njointly\\njoints\\njointure\\njointured\\njointures\\njointuring\\njoist\\njoisted\\njoisting\\njoists\\njojoba\\njojobas\\njoke\\njoked\\njoker\\njokers\\njokes\\njokester\\njokesters\\njoking\\njokingly\\njole\\njoles\\njollied\\njollier\\njollies\\njolliest\\njollified\\njollifies\\njollify\\njollifying\\njollily\\njollities\\njollity\\njolly\\njollying\\njolt\\njolted\\njolter\\njolters\\njoltier\\njoltiest\\njoltily\\njolting\\njolts\\njolty\\njongleur\\njongleurs\\njonquil\\njonquils\\njoram\\njorams\\njordan\\njordans\\njorum\\njorums\\njoseph\\njosephs\\njosh\\njoshed\\njosher\\njoshers\\njoshes\\njoshing\\njoss\\njosses\\njostle\\njostled\\njostler\\njostlers\\njostles\\njostling\\njot\\njota\\njotas\\njots\\njotted\\njotting\\njottings\\njotty\\njouk\\njouked\\njouking\\njouks\\njoule\\njoules\\njounce\\njounced\\njounces\\njouncier\\njounciest\\njouncing\\njouncy\\njournal\\njournalism\\njournalisms\\njournalist\\njournalistic\\njournalists\\njournals\\njourney\\njourneyed\\njourneying\\njourneyman\\njourneymen\\njourneys\\njoust\\njousted\\njouster\\njousters\\njousting\\njousts\\njovial\\njovially\\njow\\njowed\\njowing\\njowl\\njowled\\njowlier\\njowliest\\njowls\\njowly\\njows\\njoy\\njoyance\\njoyances\\njoyed\\njoyful\\njoyfuller\\njoyfullest\\njoyfully\\njoying\\njoyless\\njoyous\\njoyously\\njoyousness\\njoyousnesses\\njoypop\\njoypopped\\njoypopping\\njoypops\\njoyride\\njoyrider\\njoyriders\\njoyrides\\njoyriding\\njoyridings\\njoys\\njoystick\\njoysticks\\njuba\\njubas\\njubbah\\njubbahs\\njube\\njubes\\njubhah\\njubhahs\\njubilant\\njubilate\\njubilated\\njubilates\\njubilating\\njubile\\njubilee\\njubilees\\njubiles\\njublilantly\\njublilation\\njublilations\\njudas\\njudases\\njudder\\njuddered\\njuddering\\njudders\\njudge\\njudged\\njudgement\\njudgements\\njudger\\njudgers\\njudges\\njudgeship\\njudgeships\\njudging\\njudgment\\njudgments\\njudicature\\njudicatures\\njudicial\\njudicially\\njudiciaries\\njudiciary\\njudicious\\njudiciously\\njudiciousness\\njudiciousnesses\\njudo\\njudoist\\njudoists\\njudoka\\njudokas\\njudos\\njug\\njuga\\njugal\\njugate\\njugful\\njugfuls\\njugged\\njuggernaut\\njuggernauts\\njugging\\njuggle\\njuggled\\njuggler\\njuggleries\\njugglers\\njugglery\\njuggles\\njuggling\\njugglings\\njughead\\njugheads\\njugs\\njugsful\\njugula\\njugular\\njugulars\\njugulate\\njugulated\\njugulates\\njugulating\\njugulum\\njugum\\njugums\\njuice\\njuiced\\njuicer\\njuicers\\njuices\\njuicier\\njuiciest\\njuicily\\njuiciness\\njuicinesses\\njuicing\\njuicy\\njujitsu\\njujitsus\\njuju\\njujube\\njujubes\\njujuism\\njujuisms\\njujuist\\njujuists\\njujus\\njujutsu\\njujutsus\\njuke\\njukebox\\njukeboxes\\njuked\\njukes\\njuking\\njulep\\njuleps\\njulienne\\njuliennes\\njumble\\njumbled\\njumbler\\njumblers\\njumbles\\njumbling\\njumbo\\njumbos\\njumbuck\\njumbucks\\njump\\njumped\\njumper\\njumpers\\njumpier\\njumpiest\\njumpily\\njumping\\njumpoff\\njumpoffs\\njumps\\njumpy\\njun\\njunco\\njuncoes\\njuncos\\njunction\\njunctions\\njuncture\\njunctures\\njungle\\njungles\\njunglier\\njungliest\\njungly\\njunior\\njuniors\\njuniper\\njunipers\\njunk\\njunked\\njunker\\njunkers\\njunket\\njunketed\\njunketer\\njunketers\\njunketing\\njunkets\\njunkie\\njunkier\\njunkies\\njunkiest\\njunking\\njunkman\\njunkmen\\njunks\\njunky\\njunkyard\\njunkyards\\njunta\\njuntas\\njunto\\njuntos\\njupe\\njupes\\njupon\\njupons\\njura\\njural\\njurally\\njurant\\njurants\\njurat\\njuratory\\njurats\\njurel\\njurels\\njuridic\\njuries\\njurisdiction\\njurisdictional\\njurisdictions\\njurisprudence\\njurisprudences\\njurist\\njuristic\\njurists\\njuror\\njurors\\njury\\njuryman\\njurymen\\njus\\njussive\\njussives\\njust\\njusted\\njuster\\njusters\\njustest\\njustice\\njustices\\njustifiable\\njustification\\njustifications\\njustified\\njustifies\\njustify\\njustifying\\njusting\\njustle\\njustled\\njustles\\njustling\\njustly\\njustness\\njustnesses\\njusts\\njut\\njute\\njutes\\njuts\\njutted\\njuttied\\njutties\\njutting\\njutty\\njuttying\\njuvenal\\njuvenals\\njuvenile\\njuveniles\\njuxtapose\\njuxtaposed\\njuxtaposes\\njuxtaposing\\njuxtaposition\\njuxtapositions\\nka\\nkaas\\nkab\\nkabab\\nkababs\\nkabaka\\nkabakas\\nkabala\\nkabalas\\nkabar\\nkabars\\nkabaya\\nkabayas\\nkabbala\\nkabbalah\\nkabbalahs\\nkabbalas\\nkabeljou\\nkabeljous\\nkabiki\\nkabikis\\nkabob\\nkabobs\\nkabs\\nkabuki\\nkabukis\\nkachina\\nkachinas\\nkaddish\\nkaddishim\\nkadi\\nkadis\\nkae\\nkaes\\nkaffir\\nkaffirs\\nkaffiyeh\\nkaffiyehs\\nkafir\\nkafirs\\nkaftan\\nkaftans\\nkagu\\nkagus\\nkahuna\\nkahunas\\nkaiak\\nkaiaks\\nkaif\\nkaifs\\nkail\\nkails\\nkailyard\\nkailyards\\nkain\\nkainit\\nkainite\\nkainites\\nkainits\\nkains\\nkaiser\\nkaiserin\\nkaiserins\\nkaisers\\nkajeput\\nkajeputs\\nkaka\\nkakapo\\nkakapos\\nkakas\\nkakemono\\nkakemonos\\nkaki\\nkakis\\nkalam\\nkalamazoo\\nkalams\\nkale\\nkaleidoscope\\nkaleidoscopes\\nkaleidoscopic\\nkaleidoscopical\\nkaleidoscopically\\nkalends\\nkales\\nkalewife\\nkalewives\\nkaleyard\\nkaleyards\\nkalian\\nkalians\\nkalif\\nkalifate\\nkalifates\\nkalifs\\nkalimba\\nkalimbas\\nkaliph\\nkaliphs\\nkalium\\nkaliums\\nkallidin\\nkallidins\\nkalmia\\nkalmias\\nkalong\\nkalongs\\nkalpa\\nkalpak\\nkalpaks\\nkalpas\\nkalyptra\\nkalyptras\\nkamaaina\\nkamaainas\\nkamacite\\nkamacites\\nkamala\\nkamalas\\nkame\\nkames\\nkami\\nkamik\\nkamikaze\\nkamikazes\\nkamiks\\nkampong\\nkampongs\\nkamseen\\nkamseens\\nkamsin\\nkamsins\\nkana\\nkanas\\nkane\\nkanes\\nkangaroo\\nkangaroos\\nkanji\\nkanjis\\nkantar\\nkantars\\nkantele\\nkanteles\\nkaoliang\\nkaoliangs\\nkaolin\\nkaoline\\nkaolines\\nkaolinic\\nkaolins\\nkaon\\nkaons\\nkapa\\nkapas\\nkaph\\nkaphs\\nkapok\\nkapoks\\nkappa\\nkappas\\nkaput\\nkaputt\\nkarakul\\nkarakuls\\nkarat\\nkarate\\nkarates\\nkarats\\nkarma\\nkarmas\\nkarmic\\nkarn\\nkarnofsky\\nkarns\\nkaroo\\nkaroos\\nkaross\\nkarosses\\nkarroo\\nkarroos\\nkarst\\nkarstic\\nkarsts\\nkart\\nkarting\\nkartings\\nkarts\\nkaryotin\\nkaryotins\\nkas\\nkasha\\nkashas\\nkasher\\nkashered\\nkashering\\nkashers\\nkashmir\\nkashmirs\\nkashrut\\nkashruth\\nkashruths\\nkashruts\\nkat\\nkatakana\\nkatakanas\\nkathodal\\nkathode\\nkathodes\\nkathodic\\nkation\\nkations\\nkats\\nkatydid\\nkatydids\\nkauri\\nkauries\\nkauris\\nkaury\\nkava\\nkavas\\nkavass\\nkavasses\\nkay\\nkayak\\nkayaker\\nkayakers\\nkayaks\\nkayles\\nkayo\\nkayoed\\nkayoes\\nkayoing\\nkayos\\nkays\\nkazoo\\nkazoos\\nkea\\nkeas\\nkebab\\nkebabs\\nkebar\\nkebars\\nkebbie\\nkebbies\\nkebbock\\nkebbocks\\nkebbuck\\nkebbucks\\nkeblah\\nkeblahs\\nkebob\\nkebobs\\nkeck\\nkecked\\nkecking\\nkeckle\\nkeckled\\nkeckles\\nkeckling\\nkecks\\nkeddah\\nkeddahs\\nkedge\\nkedged\\nkedgeree\\nkedgerees\\nkedges\\nkedging\\nkeef\\nkeefs\\nkeek\\nkeeked\\nkeeking\\nkeeks\\nkeel\\nkeelage\\nkeelages\\nkeelboat\\nkeelboats\\nkeeled\\nkeelhale\\nkeelhaled\\nkeelhales\\nkeelhaling\\nkeelhaul\\nkeelhauled\\nkeelhauling\\nkeelhauls\\nkeeling\\nkeelless\\nkeels\\nkeelson\\nkeelsons\\nkeen\\nkeened\\nkeener\\nkeeners\\nkeenest\\nkeening\\nkeenly\\nkeenness\\nkeennesses\\nkeens\\nkeep\\nkeepable\\nkeeper\\nkeepers\\nkeeping\\nkeepings\\nkeeps\\nkeepsake\\nkeepsakes\\nkeeshond\\nkeeshonden\\nkeeshonds\\nkeester\\nkeesters\\nkeet\\nkeets\\nkeeve\\nkeeves\\nkef\\nkefir\\nkefirs\\nkefs\\nkeg\\nkegeler\\nkegelers\\nkegler\\nkeglers\\nkegling\\nkeglings\\nkegs\\nkeir\\nkeirs\\nkeister\\nkeisters\\nkeitloa\\nkeitloas\\nkeloid\\nkeloidal\\nkeloids\\nkelp\\nkelped\\nkelpie\\nkelpies\\nkelping\\nkelps\\nkelpy\\nkelson\\nkelsons\\nkelter\\nkelters\\nkelvin\\nkelvins\\nkemp\\nkemps\\nkempt\\nken\\nkenaf\\nkenafs\\nkench\\nkenches\\nkendo\\nkendos\\nkenned\\nkennel\\nkenneled\\nkenneling\\nkennelled\\nkennelling\\nkennels\\nkenning\\nkennings\\nkeno\\nkenos\\nkenosis\\nkenosises\\nkenotic\\nkenotron\\nkenotrons\\nkens\\nkent\\nkep\\nkephalin\\nkephalins\\nkepi\\nkepis\\nkepped\\nkeppen\\nkepping\\nkeps\\nkept\\nkeramic\\nkeramics\\nkeratin\\nkeratins\\nkeratoid\\nkeratoma\\nkeratomas\\nkeratomata\\nkeratose\\nkerb\\nkerbed\\nkerbing\\nkerbs\\nkerchief\\nkerchiefs\\nkerchieves\\nkerchoo\\nkerf\\nkerfed\\nkerfing\\nkerfs\\nkermes\\nkermess\\nkermesses\\nkermis\\nkermises\\nkern\\nkerne\\nkerned\\nkernel\\nkerneled\\nkerneling\\nkernelled\\nkernelling\\nkernels\\nkernes\\nkerning\\nkernite\\nkernites\\nkerns\\nkerogen\\nkerogens\\nkerosene\\nkerosenes\\nkerosine\\nkerosines\\nkerplunk\\nkerria\\nkerrias\\nkerries\\nkerry\\nkersey\\nkerseys\\nkerygma\\nkerygmata\\nkestrel\\nkestrels\\nketch\\nketches\\nketchup\\nketchups\\nketene\\nketenes\\nketo\\nketol\\nketone\\nketones\\nketonic\\nketose\\nketoses\\nketosis\\nketotic\\nkettle\\nkettledrum\\nkettledrums\\nkettles\\nkevel\\nkevels\\nkevil\\nkevils\\nkex\\nkexes\\nkey\\nkeyboard\\nkeyboarded\\nkeyboarding\\nkeyboards\\nkeyed\\nkeyer\\nkeyhole\\nkeyholes\\nkeying\\nkeyless\\nkeynote\\nkeynoted\\nkeynoter\\nkeynoters\\nkeynotes\\nkeynoting\\nkeypunch\\nkeypunched\\nkeypuncher\\nkeypunchers\\nkeypunches\\nkeypunching\\nkeys\\nkeyset\\nkeysets\\nkeyster\\nkeysters\\nkeystone\\nkeystones\\nkeyway\\nkeyways\\nkeyword\\nkeywords\\nkhaddar\\nkhaddars\\nkhadi\\nkhadis\\nkhaki\\nkhakis\\nkhalif\\nkhalifa\\nkhalifas\\nkhalifs\\nkhamseen\\nkhamseens\\nkhamsin\\nkhamsins\\nkhan\\nkhanate\\nkhanates\\nkhans\\nkhat\\nkhats\\nkhazen\\nkhazenim\\nkhazens\\nkheda\\nkhedah\\nkhedahs\\nkhedas\\nkhedival\\nkhedive\\nkhedives\\nkhi\\nkhirkah\\nkhirkahs\\nkhis\\nkiang\\nkiangs\\nkiaugh\\nkiaughs\\nkibble\\nkibbled\\nkibbles\\nkibbling\\nkibbutz\\nkibbutzim\\nkibe\\nkibes\\nkibitz\\nkibitzed\\nkibitzer\\nkibitzers\\nkibitzes\\nkibitzing\\nkibla\\nkiblah\\nkiblahs\\nkiblas\\nkibosh\\nkiboshed\\nkiboshes\\nkiboshing\\nkick\\nkickback\\nkickbacks\\nkicked\\nkicker\\nkickers\\nkicking\\nkickoff\\nkickoffs\\nkicks\\nkickshaw\\nkickshaws\\nkickup\\nkickups\\nkid\\nkidded\\nkidder\\nkidders\\nkiddie\\nkiddies\\nkidding\\nkiddingly\\nkiddish\\nkiddo\\nkiddoes\\nkiddos\\nkiddush\\nkiddushes\\nkiddy\\nkidlike\\nkidnap\\nkidnaped\\nkidnaper\\nkidnapers\\nkidnaping\\nkidnapped\\nkidnapper\\nkidnappers\\nkidnapping\\nkidnaps\\nkidney\\nkidneys\\nkids\\nkidskin\\nkidskins\\nkief\\nkiefs\\nkielbasa\\nkielbasas\\nkielbasy\\nkier\\nkiers\\nkiester\\nkiesters\\nkif\\nkifs\\nkike\\nkikes\\nkilim\\nkilims\\nkill\\nkilldee\\nkilldeer\\nkilldeers\\nkilldees\\nkilled\\nkiller\\nkillers\\nkillick\\nkillicks\\nkilling\\nkillings\\nkilljoy\\nkilljoys\\nkillock\\nkillocks\\nkills\\nkiln\\nkilned\\nkilning\\nkilns\\nkilo\\nkilobar\\nkilobars\\nkilobit\\nkilobits\\nkilocycle\\nkilocycles\\nkilogram\\nkilograms\\nkilohertz\\nkilometer\\nkilometers\\nkilomole\\nkilomoles\\nkilorad\\nkilorads\\nkilos\\nkiloton\\nkilotons\\nkilovolt\\nkilovolts\\nkilowatt\\nkilowatts\\nkilt\\nkilted\\nkilter\\nkilters\\nkiltie\\nkilties\\nkilting\\nkiltings\\nkilts\\nkilty\\nkimono\\nkimonoed\\nkimonos\\nkin\\nkinase\\nkinases\\nkind\\nkinder\\nkindergarten\\nkindergartens\\nkindergartner\\nkindergartners\\nkindest\\nkindhearted\\nkindle\\nkindled\\nkindler\\nkindlers\\nkindles\\nkindless\\nkindlier\\nkindliest\\nkindliness\\nkindlinesses\\nkindling\\nkindlings\\nkindly\\nkindness\\nkindnesses\\nkindred\\nkindreds\\nkinds\\nkine\\nkinema\\nkinemas\\nkines\\nkineses\\nkinesics\\nkinesis\\nkinetic\\nkinetics\\nkinetin\\nkinetins\\nkinfolk\\nkinfolks\\nking\\nkingbird\\nkingbirds\\nkingbolt\\nkingbolts\\nkingcup\\nkingcups\\nkingdom\\nkingdoms\\nkinged\\nkingfish\\nkingfisher\\nkingfishers\\nkingfishes\\nkinghood\\nkinghoods\\nkinging\\nkingless\\nkinglet\\nkinglets\\nkinglier\\nkingliest\\nkinglike\\nkingly\\nkingpin\\nkingpins\\nkingpost\\nkingposts\\nkings\\nkingship\\nkingships\\nkingside\\nkingsides\\nkingwood\\nkingwoods\\nkinin\\nkinins\\nkink\\nkinkajou\\nkinkajous\\nkinked\\nkinkier\\nkinkiest\\nkinkily\\nkinking\\nkinks\\nkinky\\nkino\\nkinos\\nkins\\nkinsfolk\\nkinship\\nkinships\\nkinsman\\nkinsmen\\nkinswoman\\nkinswomen\\nkiosk\\nkiosks\\nkip\\nkipped\\nkippen\\nkipper\\nkippered\\nkippering\\nkippers\\nkipping\\nkips\\nkipskin\\nkipskins\\nkirigami\\nkirigamis\\nkirk\\nkirkman\\nkirkmen\\nkirks\\nkirmess\\nkirmesses\\nkirn\\nkirned\\nkirning\\nkirns\\nkirsch\\nkirsches\\nkirtle\\nkirtled\\nkirtles\\nkishka\\nkishkas\\nkishke\\nkishkes\\nkismat\\nkismats\\nkismet\\nkismetic\\nkismets\\nkiss\\nkissable\\nkissably\\nkissed\\nkisser\\nkissers\\nkisses\\nkissing\\nkist\\nkistful\\nkistfuls\\nkists\\nkit\\nkitchen\\nkitchens\\nkite\\nkited\\nkiter\\nkiters\\nkites\\nkith\\nkithara\\nkitharas\\nkithe\\nkithed\\nkithes\\nkithing\\nkiths\\nkiting\\nkitling\\nkitlings\\nkits\\nkitsch\\nkitsches\\nkitschy\\nkitted\\nkittel\\nkitten\\nkittened\\nkittening\\nkittenish\\nkittens\\nkitties\\nkitting\\nkittle\\nkittled\\nkittler\\nkittles\\nkittlest\\nkittling\\nkitty\\nkiva\\nkivas\\nkiwi\\nkiwis\\nklatch\\nklatches\\nklatsch\\nklatsches\\nklavern\\nklaverns\\nklaxon\\nklaxons\\nkleagle\\nkleagles\\nkleig\\nklepht\\nklephtic\\nklephts\\nkleptomania\\nkleptomaniac\\nkleptomaniacs\\nkleptomanias\\nklieg\\nklong\\nklongs\\nkloof\\nkloofs\\nkludge\\nkludges\\nklutz\\nklutzes\\nklutzier\\nklutziest\\nklutzy\\nklystron\\nklystrons\\nknack\\nknacked\\nknacker\\nknackeries\\nknackers\\nknackery\\nknacking\\nknacks\\nknap\\nknapped\\nknapper\\nknappers\\nknapping\\nknaps\\nknapsack\\nknapsacks\\nknapweed\\nknapweeds\\nknar\\nknarred\\nknarry\\nknars\\nknave\\nknaveries\\nknavery\\nknaves\\nknavish\\nknawel\\nknawels\\nknead\\nkneaded\\nkneader\\nkneaders\\nkneading\\nkneads\\nknee\\nkneecap\\nkneecaps\\nkneed\\nkneehole\\nkneeholes\\nkneeing\\nkneel\\nkneeled\\nkneeler\\nkneelers\\nkneeling\\nkneels\\nkneepad\\nkneepads\\nkneepan\\nkneepans\\nknees\\nknell\\nknelled\\nknelling\\nknells\\nknelt\\nknew\\nknickers\\nknickknack\\nknickknacks\\nknife\\nknifed\\nknifer\\nknifers\\nknifes\\nknifing\\nknight\\nknighted\\nknighthood\\nknighthoods\\nknighting\\nknightly\\nknights\\nknish\\nknishes\\nknit\\nknits\\nknitted\\nknitter\\nknitters\\nknitting\\nknittings\\nknitwear\\nknitwears\\nknives\\nknob\\nknobbed\\nknobbier\\nknobbiest\\nknobby\\nknoblike\\nknobs\\nknock\\nknocked\\nknocker\\nknockers\\nknocking\\nknockoff\\nknockoffs\\nknockout\\nknockouts\\nknocks\\nknockwurst\\nknockwursts\\nknoll\\nknolled\\nknoller\\nknollers\\nknolling\\nknolls\\nknolly\\nknop\\nknopped\\nknops\\nknosp\\nknosps\\nknot\\nknothole\\nknotholes\\nknotless\\nknotlike\\nknots\\nknotted\\nknotter\\nknotters\\nknottier\\nknottiest\\nknottily\\nknotting\\nknotty\\nknotweed\\nknotweeds\\nknout\\nknouted\\nknouting\\nknouts\\nknow\\nknowable\\nknower\\nknowers\\nknowing\\nknowinger\\nknowingest\\nknowings\\nknowledge\\nknowledgeable\\nknowledges\\nknown\\nknowns\\nknows\\nknuckle\\nknucklebone\\nknucklebones\\nknuckled\\nknuckler\\nknucklers\\nknuckles\\nknucklier\\nknuckliest\\nknuckling\\nknuckly\\nknur\\nknurl\\nknurled\\nknurlier\\nknurliest\\nknurling\\nknurls\\nknurly\\nknurs\\nkoa\\nkoala\\nkoalas\\nkoan\\nkoans\\nkoas\\nkobold\\nkobolds\\nkoel\\nkoels\\nkohl\\nkohlrabi\\nkohlrabies\\nkohls\\nkoine\\nkoines\\nkokanee\\nkokanees\\nkola\\nkolacky\\nkolas\\nkolhoz\\nkolhozes\\nkolhozy\\nkolinski\\nkolinskies\\nkolinsky\\nkolkhos\\nkolkhoses\\nkolkhosy\\nkolkhoz\\nkolkhozes\\nkolkhozy\\nkolkoz\\nkolkozes\\nkolkozy\\nkolo\\nkolos\\nkomatik\\nkomatiks\\nkomondor\\nkomondorock\\nkomondorok\\nkomondors\\nkoodoo\\nkoodoos\\nkook\\nkookie\\nkookier\\nkookiest\\nkooks\\nkooky\\nkop\\nkopeck\\nkopecks\\nkopek\\nkopeks\\nkoph\\nkophs\\nkopje\\nkopjes\\nkoppa\\nkoppas\\nkoppie\\nkoppies\\nkops\\nkor\\nkors\\nkorun\\nkoruna\\nkorunas\\nkoruny\\nkos\\nkosher\\nkoshered\\nkoshering\\nkoshers\\nkoss\\nkoto\\nkotos\\nkotow\\nkotowed\\nkotower\\nkotowers\\nkotowing\\nkotows\\nkoumis\\nkoumises\\nkoumiss\\nkoumisses\\nkoumys\\nkoumyses\\nkoumyss\\nkoumysses\\nkousso\\nkoussos\\nkowtow\\nkowtowed\\nkowtower\\nkowtowers\\nkowtowing\\nkowtows\\nkraal\\nkraaled\\nkraaling\\nkraals\\nkraft\\nkrafts\\nkrait\\nkraits\\nkraken\\nkrakens\\nkrater\\nkraters\\nkraut\\nkrauts\\nkremlin\\nkremlins\\nkreutzer\\nkreutzers\\nkreuzer\\nkreuzers\\nkrikorian\\nkrill\\nkrills\\nkrimmer\\nkrimmers\\nkris\\nkrises\\nkrona\\nkrone\\nkronen\\nkroner\\nkronor\\nkronur\\nkroon\\nkrooni\\nkroons\\nkrubi\\nkrubis\\nkrubut\\nkrubuts\\nkruller\\nkrullers\\nkryolite\\nkryolites\\nkryolith\\nkryoliths\\nkrypton\\nkryptons\\nkuchen\\nkudo\\nkudos\\nkudu\\nkudus\\nkudzu\\nkudzus\\nkue\\nkues\\nkulak\\nkulaki\\nkulaks\\nkultur\\nkulturs\\nkumiss\\nkumisses\\nkummel\\nkummels\\nkumquat\\nkumquats\\nkumys\\nkumyses\\nkunzite\\nkunzites\\nkurbash\\nkurbashed\\nkurbashes\\nkurbashing\\nkurgan\\nkurgans\\nkurta\\nkurtas\\nkurtosis\\nkurtosises\\nkuru\\nkurus\\nkusso\\nkussos\\nkvas\\nkvases\\nkvass\\nkvasses\\nkvetch\\nkvetched\\nkvetches\\nkvetching\\nkwacha\\nkyack\\nkyacks\\nkyanise\\nkyanised\\nkyanises\\nkyanising\\nkyanite\\nkyanites\\nkyanize\\nkyanized\\nkyanizes\\nkyanizing\\nkyar\\nkyars\\nkyat\\nkyats\\nkylikes\\nkylix\\nkymogram\\nkymograms\\nkyphoses\\nkyphosis\\nkyphotic\\nkyrie\\nkyries\\nkyte\\nkytes\\nkythe\\nkythed\\nkythes\\nkything\\nla\\nlaager\\nlaagered\\nlaagering\\nlaagers\\nlab\\nlabara\\nlabarum\\nlabarums\\nlabdanum\\nlabdanums\\nlabel\\nlabeled\\nlabeler\\nlabelers\\nlabeling\\nlabella\\nlabelled\\nlabeller\\nlabellers\\nlabelling\\nlabellum\\nlabels\\nlabia\\nlabial\\nlabially\\nlabials\\nlabiate\\nlabiated\\nlabiates\\nlabile\\nlabilities\\nlability\\nlabium\\nlabor\\nlaboratories\\nlaboratory\\nlabored\\nlaborer\\nlaborers\\nlaboring\\nlaborious\\nlaboriously\\nlaborite\\nlaborites\\nlabors\\nlabour\\nlaboured\\nlabourer\\nlabourers\\nlabouring\\nlabours\\nlabra\\nlabret\\nlabrets\\nlabroid\\nlabroids\\nlabrum\\nlabrums\\nlabs\\nlaburnum\\nlaburnums\\nlabyrinth\\nlabyrinthine\\nlabyrinths\\nlac\\nlace\\nlaced\\nlaceless\\nlacelike\\nlacer\\nlacerate\\nlacerated\\nlacerates\\nlacerating\\nlaceration\\nlacerations\\nlacers\\nlacertid\\nlacertids\\nlaces\\nlacewing\\nlacewings\\nlacewood\\nlacewoods\\nlacework\\nlaceworks\\nlacey\\nlaches\\nlachrymose\\nlacier\\nlaciest\\nlacily\\nlaciness\\nlacinesses\\nlacing\\nlacings\\nlack\\nlackadaisical\\nlackadaisically\\nlackaday\\nlacked\\nlacker\\nlackered\\nlackering\\nlackers\\nlackey\\nlackeyed\\nlackeying\\nlackeys\\nlacking\\nlackluster\\nlacks\\nlaconic\\nlaconically\\nlaconism\\nlaconisms\\nlacquer\\nlacquered\\nlacquering\\nlacquers\\nlacquey\\nlacqueyed\\nlacqueying\\nlacqueys\\nlacrimal\\nlacrimals\\nlacrosse\\nlacrosses\\nlacs\\nlactam\\nlactams\\nlactary\\nlactase\\nlactases\\nlactate\\nlactated\\nlactates\\nlactating\\nlactation\\nlactations\\nlacteal\\nlacteals\\nlactean\\nlacteous\\nlactic\\nlactone\\nlactones\\nlactonic\\nlactose\\nlactoses\\nlacuna\\nlacunae\\nlacunal\\nlacunar\\nlacunaria\\nlacunars\\nlacunary\\nlacunas\\nlacunate\\nlacune\\nlacunes\\nlacunose\\nlacy\\nlad\\nladanum\\nladanums\\nladder\\nladdered\\nladdering\\nladders\\nladdie\\nladdies\\nlade\\nladed\\nladen\\nladened\\nladening\\nladens\\nlader\\nladers\\nlades\\nladies\\nlading\\nladings\\nladino\\nladinos\\nladle\\nladled\\nladleful\\nladlefuls\\nladler\\nladlers\\nladles\\nladling\\nladron\\nladrone\\nladrones\\nladrons\\nlads\\nlady\\nladybird\\nladybirds\\nladybug\\nladybugs\\nladyfish\\nladyfishes\\nladyhood\\nladyhoods\\nladyish\\nladykin\\nladykins\\nladylike\\nladylove\\nladyloves\\nladypalm\\nladypalms\\nladyship\\nladyships\\nlaevo\\nlag\\nlagan\\nlagans\\nlagend\\nlagends\\nlager\\nlagered\\nlagering\\nlagers\\nlaggard\\nlaggardly\\nlaggardness\\nlaggardnesses\\nlaggards\\nlagged\\nlagger\\nlaggers\\nlagging\\nlaggings\\nlagnappe\\nlagnappes\\nlagniappe\\nlagniappes\\nlagoon\\nlagoonal\\nlagoons\\nlags\\nlaguna\\nlagunas\\nlagune\\nlagunes\\nlaic\\nlaical\\nlaically\\nlaich\\nlaichs\\nlaicise\\nlaicised\\nlaicises\\nlaicising\\nlaicism\\nlaicisms\\nlaicize\\nlaicized\\nlaicizes\\nlaicizing\\nlaics\\nlaid\\nlaigh\\nlaighs\\nlain\\nlair\\nlaird\\nlairdly\\nlairds\\nlaired\\nlairing\\nlairs\\nlaitance\\nlaitances\\nlaith\\nlaithly\\nlaities\\nlaity\\nlake\\nlaked\\nlakeport\\nlakeports\\nlaker\\nlakers\\nlakes\\nlakeside\\nlakesides\\nlakh\\nlakhs\\nlakier\\nlakiest\\nlaking\\nlakings\\nlaky\\nlall\\nlallan\\nlalland\\nlallands\\nlallans\\nlalled\\nlalling\\nlalls\\nlallygag\\nlallygagged\\nlallygagging\\nlallygags\\nlam\\nlama\\nlamas\\nlamaseries\\nlamasery\\nlamb\\nlambast\\nlambaste\\nlambasted\\nlambastes\\nlambasting\\nlambasts\\nlambda\\nlambdas\\nlambdoid\\nlambed\\nlambencies\\nlambency\\nlambent\\nlambently\\nlamber\\nlambers\\nlambert\\nlamberts\\nlambie\\nlambies\\nlambing\\nlambkill\\nlambkills\\nlambkin\\nlambkins\\nlamblike\\nlambs\\nlambskin\\nlambskins\\nlame\\nlamebrain\\nlamebrains\\nlamed\\nlamedh\\nlamedhs\\nlameds\\nlamella\\nlamellae\\nlamellar\\nlamellas\\nlamely\\nlameness\\nlamenesses\\nlament\\nlamentable\\nlamentably\\nlamentation\\nlamentations\\nlamented\\nlamenter\\nlamenters\\nlamenting\\nlaments\\nlamer\\nlames\\nlamest\\nlamia\\nlamiae\\nlamias\\nlamina\\nlaminae\\nlaminal\\nlaminar\\nlaminary\\nlaminas\\nlaminate\\nlaminated\\nlaminates\\nlaminating\\nlamination\\nlaminations\\nlaming\\nlaminose\\nlaminous\\nlamister\\nlamisters\\nlammed\\nlamming\\nlamp\\nlampad\\nlampads\\nlampas\\nlampases\\nlamped\\nlampers\\nlamperses\\nlamping\\nlampion\\nlampions\\nlampoon\\nlampooned\\nlampooning\\nlampoons\\nlamppost\\nlampposts\\nlamprey\\nlampreys\\nlamps\\nlampyrid\\nlampyrids\\nlams\\nlamster\\nlamsters\\nlanai\\nlanais\\nlanate\\nlanated\\nlance\\nlanced\\nlancelet\\nlancelets\\nlancer\\nlancers\\nlances\\nlancet\\nlanceted\\nlancets\\nlanciers\\nlancing\\nland\\nlandau\\nlandaus\\nlanded\\nlander\\nlanders\\nlandfall\\nlandfalls\\nlandfill\\nlandfills\\nlandform\\nlandforms\\nlandholder\\nlandholders\\nlandholding\\nlandholdings\\nlanding\\nlandings\\nlandladies\\nlandlady\\nlandler\\nlandlers\\nlandless\\nlandlocked\\nlandlord\\nlandlords\\nlandlubber\\nlandlubbers\\nlandman\\nlandmark\\nlandmarks\\nlandmass\\nlandmasses\\nlandmen\\nlands\\nlandscape\\nlandscaped\\nlandscapes\\nlandscaping\\nlandside\\nlandsides\\nlandskip\\nlandskips\\nlandsleit\\nlandslid\\nlandslide\\nlandslides\\nlandslip\\nlandslips\\nlandsman\\nlandsmen\\nlandward\\nlane\\nlanely\\nlanes\\nlang\\nlanglauf\\nlanglaufs\\nlangley\\nlangleys\\nlangourous\\nlangourously\\nlangrage\\nlangrages\\nlangrel\\nlangrels\\nlangshan\\nlangshans\\nlangsyne\\nlangsynes\\nlanguage\\nlanguages\\nlangue\\nlangues\\nlanguet\\nlanguets\\nlanguid\\nlanguidly\\nlanguidness\\nlanguidnesses\\nlanguish\\nlanguished\\nlanguishes\\nlanguishing\\nlanguor\\nlanguors\\nlangur\\nlangurs\\nlaniard\\nlaniards\\nlaniaries\\nlaniary\\nlanital\\nlanitals\\nlank\\nlanker\\nlankest\\nlankier\\nlankiest\\nlankily\\nlankly\\nlankness\\nlanknesses\\nlanky\\nlanner\\nlanneret\\nlannerets\\nlanners\\nlanolin\\nlanoline\\nlanolines\\nlanolins\\nlanose\\nlanosities\\nlanosity\\nlantana\\nlantanas\\nlantern\\nlanterns\\nlanthorn\\nlanthorns\\nlanugo\\nlanugos\\nlanyard\\nlanyards\\nlap\\nlapboard\\nlapboards\\nlapdog\\nlapdogs\\nlapel\\nlapelled\\nlapels\\nlapful\\nlapfuls\\nlapidaries\\nlapidary\\nlapidate\\nlapidated\\nlapidates\\nlapidating\\nlapides\\nlapidified\\nlapidifies\\nlapidify\\nlapidifying\\nlapidist\\nlapidists\\nlapilli\\nlapillus\\nlapin\\nlapins\\nlapis\\nlapises\\nlapped\\nlapper\\nlappered\\nlappering\\nlappers\\nlappet\\nlappeted\\nlappets\\nlapping\\nlaps\\nlapsable\\nlapse\\nlapsed\\nlapser\\nlapsers\\nlapses\\nlapsible\\nlapsing\\nlapsus\\nlapwing\\nlapwings\\nlar\\nlarboard\\nlarboards\\nlarcener\\nlarceners\\nlarcenies\\nlarcenous\\nlarceny\\nlarch\\nlarches\\nlard\\nlarded\\nlarder\\nlarders\\nlardier\\nlardiest\\nlarding\\nlardlike\\nlardon\\nlardons\\nlardoon\\nlardoons\\nlards\\nlardy\\nlares\\nlarge\\nlargely\\nlargeness\\nlargenesses\\nlarger\\nlarges\\nlargess\\nlargesse\\nlargesses\\nlargest\\nlargish\\nlargo\\nlargos\\nlariat\\nlariated\\nlariating\\nlariats\\nlarine\\nlark\\nlarked\\nlarker\\nlarkers\\nlarkier\\nlarkiest\\nlarking\\nlarks\\nlarksome\\nlarkspur\\nlarkspurs\\nlarky\\nlarrigan\\nlarrigans\\nlarrikin\\nlarrikins\\nlarrup\\nlarruped\\nlarruper\\nlarrupers\\nlarruping\\nlarrups\\nlars\\nlarum\\nlarums\\nlarva\\nlarvae\\nlarval\\nlarvas\\nlaryngal\\nlaryngeal\\nlarynges\\nlaryngitis\\nlaryngitises\\nlaryngoscopy\\nlarynx\\nlarynxes\\nlas\\nlasagna\\nlasagnas\\nlasagne\\nlasagnes\\nlascar\\nlascars\\nlascivious\\nlasciviousness\\nlasciviousnesses\\nlase\\nlased\\nlaser\\nlasers\\nlases\\nlash\\nlashed\\nlasher\\nlashers\\nlashes\\nlashing\\nlashings\\nlashins\\nlashkar\\nlashkars\\nlasing\\nlass\\nlasses\\nlassie\\nlassies\\nlassitude\\nlassitudes\\nlasso\\nlassoed\\nlassoer\\nlassoers\\nlassoes\\nlassoing\\nlassos\\nlast\\nlasted\\nlaster\\nlasters\\nlasting\\nlastings\\nlastly\\nlasts\\nlat\\nlatakia\\nlatakias\\nlatch\\nlatched\\nlatches\\nlatchet\\nlatchets\\nlatching\\nlatchkey\\nlatchkeys\\nlate\\nlatecomer\\nlatecomers\\nlated\\nlateen\\nlateener\\nlateeners\\nlateens\\nlately\\nlaten\\nlatencies\\nlatency\\nlatened\\nlateness\\nlatenesses\\nlatening\\nlatens\\nlatent\\nlatently\\nlatents\\nlater\\nlaterad\\nlateral\\nlateraled\\nlateraling\\nlaterally\\nlaterals\\nlaterite\\nlaterites\\nlatest\\nlatests\\nlatewood\\nlatewoods\\nlatex\\nlatexes\\nlath\\nlathe\\nlathed\\nlather\\nlathered\\nlatherer\\nlatherers\\nlathering\\nlathers\\nlathery\\nlathes\\nlathier\\nlathiest\\nlathing\\nlathings\\nlaths\\nlathwork\\nlathworks\\nlathy\\nlati\\nlatices\\nlatigo\\nlatigoes\\nlatigos\\nlatinities\\nlatinity\\nlatinize\\nlatinized\\nlatinizes\\nlatinizing\\nlatish\\nlatitude\\nlatitudes\\nlatosol\\nlatosols\\nlatria\\nlatrias\\nlatrine\\nlatrines\\nlats\\nlatten\\nlattens\\nlatter\\nlatterly\\nlattice\\nlatticed\\nlattices\\nlatticing\\nlattin\\nlattins\\nlauan\\nlauans\\nlaud\\nlaudable\\nlaudably\\nlaudanum\\nlaudanums\\nlaudator\\nlaudators\\nlauded\\nlauder\\nlauders\\nlauding\\nlauds\\nlaugh\\nlaughable\\nlaughed\\nlaugher\\nlaughers\\nlaughing\\nlaughingly\\nlaughings\\nlaughingstock\\nlaughingstocks\\nlaughs\\nlaughter\\nlaughters\\nlaunce\\nlaunces\\nlaunch\\nlaunched\\nlauncher\\nlaunchers\\nlaunches\\nlaunching\\nlaunder\\nlaundered\\nlaunderer\\nlaunderers\\nlaunderess\\nlaunderesses\\nlaundering\\nlaunders\\nlaundries\\nlaundry\\nlaura\\nlaurae\\nlauras\\nlaureate\\nlaureated\\nlaureates\\nlaureateship\\nlaureateships\\nlaureating\\nlaurel\\nlaureled\\nlaureling\\nlaurelled\\nlaurelling\\nlaurels\\nlauwine\\nlauwines\\nlava\\nlavabo\\nlavaboes\\nlavabos\\nlavage\\nlavages\\nlavalava\\nlavalavas\\nlavalier\\nlavaliers\\nlavalike\\nlavas\\nlavation\\nlavations\\nlavatories\\nlavatory\\nlave\\nlaved\\nlaveer\\nlaveered\\nlaveering\\nlaveers\\nlavender\\nlavendered\\nlavendering\\nlavenders\\nlaver\\nlaverock\\nlaverocks\\nlavers\\nlaves\\nlaving\\nlavish\\nlavished\\nlavisher\\nlavishers\\nlavishes\\nlavishest\\nlavishing\\nlavishly\\nlavrock\\nlavrocks\\nlaw\\nlawbreaker\\nlawbreakers\\nlawed\\nlawful\\nlawfully\\nlawgiver\\nlawgivers\\nlawine\\nlawines\\nlawing\\nlawings\\nlawless\\nlawlike\\nlawmaker\\nlawmakers\\nlawman\\nlawmen\\nlawn\\nlawns\\nlawny\\nlaws\\nlawsuit\\nlawsuits\\nlawyer\\nlawyerly\\nlawyers\\nlax\\nlaxation\\nlaxations\\nlaxative\\nlaxatives\\nlaxer\\nlaxest\\nlaxities\\nlaxity\\nlaxly\\nlaxness\\nlaxnesses\\nlay\\nlayabout\\nlayabouts\\nlayaway\\nlayaways\\nlayed\\nlayer\\nlayerage\\nlayerages\\nlayered\\nlayering\\nlayerings\\nlayers\\nlayette\\nlayettes\\nlaying\\nlayman\\nlaymen\\nlayoff\\nlayoffs\\nlayout\\nlayouts\\nlayover\\nlayovers\\nlays\\nlaywoman\\nlaywomen\\nlazar\\nlazaret\\nlazarets\\nlazars\\nlaze\\nlazed\\nlazes\\nlazied\\nlazier\\nlazies\\nlaziest\\nlazily\\nlaziness\\nlazinesses\\nlazing\\nlazuli\\nlazulis\\nlazulite\\nlazulites\\nlazurite\\nlazurites\\nlazy\\nlazying\\nlazyish\\nlazys\\nlea\\nleach\\nleachate\\nleachates\\nleached\\nleacher\\nleachers\\nleaches\\nleachier\\nleachiest\\nleaching\\nleachy\\nlead\\nleaded\\nleaden\\nleadenly\\nleader\\nleaderless\\nleaders\\nleadership\\nleaderships\\nleadier\\nleadiest\\nleading\\nleadings\\nleadless\\nleadoff\\nleadoffs\\nleads\\nleadsman\\nleadsmen\\nleadwork\\nleadworks\\nleadwort\\nleadworts\\nleady\\nleaf\\nleafage\\nleafages\\nleafed\\nleafier\\nleafiest\\nleafing\\nleafless\\nleaflet\\nleaflets\\nleaflike\\nleafs\\nleafworm\\nleafworms\\nleafy\\nleague\\nleagued\\nleaguer\\nleaguered\\nleaguering\\nleaguers\\nleagues\\nleaguing\\nleak\\nleakage\\nleakages\\nleaked\\nleaker\\nleakers\\nleakier\\nleakiest\\nleakily\\nleaking\\nleakless\\nleaks\\nleaky\\nleal\\nleally\\nlealties\\nlealty\\nlean\\nleaned\\nleaner\\nleanest\\nleaning\\nleanings\\nleanly\\nleanness\\nleannesses\\nleans\\nleant\\nleap\\nleaped\\nleaper\\nleapers\\nleapfrog\\nleapfrogged\\nleapfrogging\\nleapfrogs\\nleaping\\nleaps\\nleapt\\nlear\\nlearier\\nleariest\\nlearn\\nlearned\\nlearner\\nlearners\\nlearning\\nlearnings\\nlearns\\nlearnt\\nlears\\nleary\\nleas\\nleasable\\nlease\\nleased\\nleaser\\nleasers\\nleases\\nleash\\nleashed\\nleashes\\nleashing\\nleasing\\nleasings\\nleast\\nleasts\\nleather\\nleathered\\nleathering\\nleathern\\nleathers\\nleathery\\nleave\\nleaved\\nleaven\\nleavened\\nleavening\\nleavens\\nleaver\\nleavers\\nleaves\\nleavier\\nleaviest\\nleaving\\nleavings\\nleavy\\nleben\\nlebens\\nlech\\nlechayim\\nlechayims\\nlecher\\nlechered\\nlecheries\\nlechering\\nlecherous\\nlecherousness\\nlecherousnesses\\nlechers\\nlechery\\nleches\\nlecithin\\nlecithins\\nlectern\\nlecterns\\nlection\\nlections\\nlector\\nlectors\\nlecture\\nlectured\\nlecturer\\nlecturers\\nlectures\\nlectureship\\nlectureships\\nlecturing\\nlecythi\\nlecythus\\nled\\nledge\\nledger\\nledgers\\nledges\\nledgier\\nledgiest\\nledgy\\nlee\\nleeboard\\nleeboards\\nleech\\nleeched\\nleeches\\nleeching\\nleek\\nleeks\\nleer\\nleered\\nleerier\\nleeriest\\nleerily\\nleering\\nleers\\nleery\\nlees\\nleet\\nleets\\nleeward\\nleewards\\nleeway\\nleeways\\nleft\\nlefter\\nleftest\\nlefties\\nleftism\\nleftisms\\nleftist\\nleftists\\nleftover\\nleftovers\\nlefts\\nleftward\\nleftwing\\nlefty\\nleg\\nlegacies\\nlegacy\\nlegal\\nlegalese\\nlegaleses\\nlegalise\\nlegalised\\nlegalises\\nlegalising\\nlegalism\\nlegalisms\\nlegalist\\nlegalistic\\nlegalists\\nlegalities\\nlegality\\nlegalize\\nlegalized\\nlegalizes\\nlegalizing\\nlegally\\nlegals\\nlegate\\nlegated\\nlegatee\\nlegatees\\nlegates\\nlegatine\\nlegating\\nlegation\\nlegations\\nlegato\\nlegator\\nlegators\\nlegatos\\nlegend\\nlegendary\\nlegendries\\nlegendry\\nlegends\\nleger\\nlegerdemain\\nlegerdemains\\nlegerities\\nlegerity\\nlegers\\nleges\\nlegged\\nleggier\\nleggiest\\nleggin\\nlegging\\nleggings\\nleggins\\nleggy\\nleghorn\\nleghorns\\nlegibilities\\nlegibility\\nlegible\\nlegibly\\nlegion\\nlegionaries\\nlegionary\\nlegionnaire\\nlegionnaires\\nlegions\\nlegislate\\nlegislated\\nlegislates\\nlegislating\\nlegislation\\nlegislations\\nlegislative\\nlegislator\\nlegislators\\nlegislature\\nlegislatures\\nlegist\\nlegists\\nlegit\\nlegitimacy\\nlegitimate\\nlegitimately\\nlegits\\nlegless\\nleglike\\nlegman\\nlegmen\\nlegroom\\nlegrooms\\nlegs\\nlegume\\nlegumes\\nlegumin\\nleguminous\\nlegumins\\nlegwork\\nlegworks\\nlehayim\\nlehayims\\nlehr\\nlehrs\\nlehua\\nlehuas\\nlei\\nleis\\nleister\\nleistered\\nleistering\\nleisters\\nleisure\\nleisured\\nleisurely\\nleisures\\nlek\\nleks\\nlekythi\\nlekythoi\\nlekythos\\nlekythus\\nleman\\nlemans\\nlemma\\nlemmas\\nlemmata\\nlemming\\nlemmings\\nlemnisci\\nlemon\\nlemonade\\nlemonades\\nlemonish\\nlemons\\nlemony\\nlempira\\nlempiras\\nlemur\\nlemures\\nlemuroid\\nlemuroids\\nlemurs\\nlend\\nlender\\nlenders\\nlending\\nlends\\nlenes\\nlength\\nlengthen\\nlengthened\\nlengthening\\nlengthens\\nlengthier\\nlengthiest\\nlengths\\nlengthwise\\nlengthy\\nlenience\\nleniences\\nleniencies\\nleniency\\nlenient\\nleniently\\nlenis\\nlenities\\nlenitive\\nlenitives\\nlenity\\nleno\\nlenos\\nlens\\nlense\\nlensed\\nlenses\\nlensless\\nlent\\nlentando\\nlenten\\nlentic\\nlenticel\\nlenticels\\nlentigines\\nlentigo\\nlentil\\nlentils\\nlentisk\\nlentisks\\nlento\\nlentoid\\nlentos\\nleone\\nleones\\nleonine\\nleopard\\nleopards\\nleotard\\nleotards\\nleper\\nlepers\\nlepidote\\nleporid\\nleporids\\nleporine\\nleprechaun\\nleprechauns\\nleprose\\nleprosies\\nleprosy\\nleprotic\\nleprous\\nlepta\\nlepton\\nleptonic\\nleptons\\nlesbian\\nlesbianism\\nlesbianisms\\nlesbians\\nlesion\\nlesions\\nless\\nlessee\\nlessees\\nlessen\\nlessened\\nlessening\\nlessens\\nlesser\\nlesson\\nlessoned\\nlessoning\\nlessons\\nlessor\\nlessors\\nlest\\nlet\\nletch\\nletches\\nletdown\\nletdowns\\nlethal\\nlethally\\nlethals\\nlethargic\\nlethargies\\nlethargy\\nlethe\\nlethean\\nlethes\\nlets\\nletted\\nletter\\nlettered\\nletterer\\nletterers\\nletterhead\\nlettering\\nletters\\nletting\\nlettuce\\nlettuces\\nletup\\nletups\\nleu\\nleucemia\\nleucemias\\nleucemic\\nleucin\\nleucine\\nleucines\\nleucins\\nleucite\\nleucites\\nleucitic\\nleucoma\\nleucomas\\nleud\\nleudes\\nleuds\\nleukemia\\nleukemias\\nleukemic\\nleukemics\\nleukocytosis\\nleukoma\\nleukomas\\nleukon\\nleukons\\nleukopenia\\nleukophoresis\\nleukoses\\nleukosis\\nleukotic\\nlev\\nleva\\nlevant\\nlevanted\\nlevanter\\nlevanters\\nlevanting\\nlevants\\nlevator\\nlevatores\\nlevators\\nlevee\\nleveed\\nleveeing\\nlevees\\nlevel\\nleveled\\nleveler\\nlevelers\\nleveling\\nlevelled\\nleveller\\nlevellers\\nlevelling\\nlevelly\\nlevelness\\nlevelnesses\\nlevels\\nlever\\nleverage\\nleveraged\\nleverages\\nleveraging\\nlevered\\nleveret\\nleverets\\nlevering\\nlevers\\nleviable\\nleviathan\\nleviathans\\nlevied\\nlevier\\nleviers\\nlevies\\nlevigate\\nlevigated\\nlevigates\\nlevigating\\nlevin\\nlevins\\nlevirate\\nlevirates\\nlevitate\\nlevitated\\nlevitates\\nlevitating\\nlevities\\nlevity\\nlevo\\nlevogyre\\nlevulin\\nlevulins\\nlevulose\\nlevuloses\\nlevy\\nlevying\\nlewd\\nlewder\\nlewdest\\nlewdly\\nlewdness\\nlewdnesses\\nlewis\\nlewises\\nlewisite\\nlewisites\\nlewisson\\nlewissons\\nlex\\nlexica\\nlexical\\nlexicographer\\nlexicographers\\nlexicographic\\nlexicographical\\nlexicographies\\nlexicography\\nlexicon\\nlexicons\\nley\\nleys\\nli\\nliabilities\\nliability\\nliable\\nliaise\\nliaised\\nliaises\\nliaising\\nliaison\\nliaisons\\nliana\\nlianas\\nliane\\nlianes\\nliang\\nliangs\\nlianoid\\nliar\\nliard\\nliards\\nliars\\nlib\\nlibation\\nlibations\\nlibber\\nlibbers\\nlibeccio\\nlibeccios\\nlibel\\nlibelant\\nlibelants\\nlibeled\\nlibelee\\nlibelees\\nlibeler\\nlibelers\\nlibeling\\nlibelist\\nlibelists\\nlibelled\\nlibellee\\nlibellees\\nlibeller\\nlibellers\\nlibelling\\nlibellous\\nlibelous\\nlibels\\nliber\\nliberal\\nliberalism\\nliberalisms\\nliberalities\\nliberality\\nliberalize\\nliberalized\\nliberalizes\\nliberalizing\\nliberally\\nliberals\\nliberate\\nliberated\\nliberates\\nliberating\\nliberation\\nliberations\\nliberator\\nliberators\\nlibers\\nliberties\\nlibertine\\nlibertines\\nliberty\\nlibidinal\\nlibidinous\\nlibido\\nlibidos\\nlibra\\nlibrae\\nlibrarian\\nlibrarians\\nlibraries\\nlibrary\\nlibras\\nlibrate\\nlibrated\\nlibrates\\nlibrating\\nlibretti\\nlibrettist\\nlibrettists\\nlibretto\\nlibrettos\\nlibri\\nlibs\\nlice\\nlicence\\nlicenced\\nlicencee\\nlicencees\\nlicencer\\nlicencers\\nlicences\\nlicencing\\nlicense\\nlicensed\\nlicensee\\nlicensees\\nlicenser\\nlicensers\\nlicenses\\nlicensing\\nlicensor\\nlicensors\\nlicentious\\nlicentiously\\nlicentiousness\\nlicentiousnesses\\nlichee\\nlichees\\nlichen\\nlichened\\nlichenin\\nlichening\\nlichenins\\nlichenous\\nlichens\\nlichi\\nlichis\\nlicht\\nlichted\\nlichting\\nlichtly\\nlichts\\nlicit\\nlicitly\\nlick\\nlicked\\nlicker\\nlickers\\nlicking\\nlickings\\nlicks\\nlickspit\\nlickspits\\nlicorice\\nlicorices\\nlictor\\nlictors\\nlid\\nlidar\\nlidars\\nlidded\\nlidding\\nlidless\\nlido\\nlidos\\nlids\\nlie\\nlied\\nlieder\\nlief\\nliefer\\nliefest\\nliefly\\nliege\\nliegeman\\nliegemen\\nlieges\\nlien\\nlienable\\nlienal\\nliens\\nlienteries\\nlientery\\nlier\\nlierne\\nliernes\\nliers\\nlies\\nlieu\\nlieus\\nlieutenancies\\nlieutenancy\\nlieutenant\\nlieutenants\\nlieve\\nliever\\nlievest\\nlife\\nlifeblood\\nlifebloods\\nlifeboat\\nlifeboats\\nlifeful\\nlifeguard\\nlifeguards\\nlifeless\\nlifelike\\nlifeline\\nlifelines\\nlifelong\\nlifer\\nlifers\\nlifesaver\\nlifesavers\\nlifesaving\\nlifesavings\\nlifetime\\nlifetimes\\nlifeway\\nlifeways\\nlifework\\nlifeworks\\nlift\\nliftable\\nlifted\\nlifter\\nlifters\\nlifting\\nliftman\\nliftmen\\nliftoff\\nliftoffs\\nlifts\\nligament\\nligaments\\nligan\\nligand\\nligands\\nligans\\nligase\\nligases\\nligate\\nligated\\nligates\\nligating\\nligation\\nligations\\nligative\\nligature\\nligatured\\nligatures\\nligaturing\\nlight\\nlightbulb\\nlightbulbs\\nlighted\\nlighten\\nlightened\\nlightening\\nlightens\\nlighter\\nlightered\\nlightering\\nlighters\\nlightest\\nlightful\\nlighthearted\\nlightheartedly\\nlightheartedness\\nlightheartednesses\\nlighthouse\\nlighthouses\\nlighting\\nlightings\\nlightish\\nlightly\\nlightness\\nlightnesses\\nlightning\\nlightnings\\nlightproof\\nlights\\nligneous\\nlignified\\nlignifies\\nlignify\\nlignifying\\nlignin\\nlignins\\nlignite\\nlignites\\nlignitic\\nligroin\\nligroine\\nligroines\\nligroins\\nligula\\nligulae\\nligular\\nligulas\\nligulate\\nligule\\nligules\\nliguloid\\nligure\\nligures\\nlikable\\nlike\\nlikeable\\nliked\\nlikelier\\nlikeliest\\nlikelihood\\nlikelihoods\\nlikely\\nliken\\nlikened\\nlikeness\\nlikenesses\\nlikening\\nlikens\\nliker\\nlikers\\nlikes\\nlikest\\nlikewise\\nliking\\nlikings\\nlikuta\\nlilac\\nlilacs\\nlilied\\nlilies\\nlilliput\\nlilliputs\\nlilt\\nlilted\\nlilting\\nlilts\\nlilty\\nlily\\nlilylike\\nlima\\nlimacine\\nlimacon\\nlimacons\\nliman\\nlimans\\nlimas\\nlimb\\nlimba\\nlimbas\\nlimbate\\nlimbeck\\nlimbecks\\nlimbed\\nlimber\\nlimbered\\nlimberer\\nlimberest\\nlimbering\\nlimberly\\nlimbers\\nlimbi\\nlimbic\\nlimbier\\nlimbiest\\nlimbing\\nlimbless\\nlimbo\\nlimbos\\nlimbs\\nlimbus\\nlimbuses\\nlimby\\nlime\\nlimeade\\nlimeades\\nlimed\\nlimekiln\\nlimekilns\\nlimeless\\nlimelight\\nlimelights\\nlimen\\nlimens\\nlimerick\\nlimericks\\nlimes\\nlimestone\\nlimestones\\nlimey\\nlimeys\\nlimier\\nlimiest\\nlimina\\nliminal\\nliminess\\nliminesses\\nliming\\nlimit\\nlimitary\\nlimitation\\nlimitations\\nlimited\\nlimiteds\\nlimiter\\nlimiters\\nlimites\\nlimiting\\nlimitless\\nlimits\\nlimmer\\nlimmers\\nlimn\\nlimned\\nlimner\\nlimners\\nlimnetic\\nlimnic\\nlimning\\nlimns\\nlimo\\nlimonene\\nlimonenes\\nlimonite\\nlimonites\\nlimos\\nlimousine\\nlimousines\\nlimp\\nlimped\\nlimper\\nlimpers\\nlimpest\\nlimpet\\nlimpets\\nlimpid\\nlimpidly\\nlimping\\nlimpkin\\nlimpkins\\nlimply\\nlimpness\\nlimpnesses\\nlimps\\nlimpsy\\nlimuli\\nlimuloid\\nlimuloids\\nlimulus\\nlimy\\nlin\\nlinable\\nlinac\\nlinacs\\nlinage\\nlinages\\nlinalol\\nlinalols\\nlinalool\\nlinalools\\nlinchpin\\nlinchpins\\nlindane\\nlindanes\\nlinden\\nlindens\\nlindies\\nlindy\\nline\\nlineable\\nlineage\\nlineages\\nlineal\\nlineally\\nlineaments\\nlinear\\nlinearly\\nlineate\\nlineated\\nlinebred\\nlinecut\\nlinecuts\\nlined\\nlineless\\nlinelike\\nlineman\\nlinemen\\nlinen\\nlinens\\nlineny\\nliner\\nliners\\nlines\\nlinesman\\nlinesmen\\nlineup\\nlineups\\nliney\\nling\\nlinga\\nlingam\\nlingams\\nlingas\\nlingcod\\nlingcods\\nlinger\\nlingered\\nlingerer\\nlingerers\\nlingerie\\nlingeries\\nlingering\\nlingers\\nlingier\\nlingiest\\nlingo\\nlingoes\\nlings\\nlingua\\nlinguae\\nlingual\\nlinguals\\nlinguine\\nlinguines\\nlinguini\\nlinguinis\\nlinguist\\nlinguistic\\nlinguistics\\nlinguists\\nlingy\\nlinier\\nliniest\\nliniment\\nliniments\\nlinin\\nlining\\nlinings\\nlinins\\nlink\\nlinkable\\nlinkage\\nlinkages\\nlinkboy\\nlinkboys\\nlinked\\nlinker\\nlinkers\\nlinking\\nlinkman\\nlinkmen\\nlinks\\nlinksman\\nlinksmen\\nlinkup\\nlinkups\\nlinkwork\\nlinkworks\\nlinky\\nlinn\\nlinnet\\nlinnets\\nlinns\\nlino\\nlinocut\\nlinocuts\\nlinoleum\\nlinoleums\\nlinos\\nlins\\nlinsang\\nlinsangs\\nlinseed\\nlinseeds\\nlinsey\\nlinseys\\nlinstock\\nlinstocks\\nlint\\nlintel\\nlintels\\nlinter\\nlinters\\nlintier\\nlintiest\\nlintless\\nlintol\\nlintols\\nlints\\nlinty\\nlinum\\nlinums\\nliny\\nlion\\nlioness\\nlionesses\\nlionfish\\nlionfishes\\nlionise\\nlionised\\nlioniser\\nlionisers\\nlionises\\nlionising\\nlionization\\nlionizations\\nlionize\\nlionized\\nlionizer\\nlionizers\\nlionizes\\nlionizing\\nlionlike\\nlions\\nlip\\nlipase\\nlipases\\nlipid\\nlipide\\nlipides\\nlipidic\\nlipids\\nlipin\\nlipins\\nlipless\\nliplike\\nlipocyte\\nlipocytes\\nlipoid\\nlipoidal\\nlipoids\\nlipoma\\nlipomas\\nlipomata\\nlipped\\nlippen\\nlippened\\nlippening\\nlippens\\nlipper\\nlippered\\nlippering\\nlippers\\nlippier\\nlippiest\\nlipping\\nlippings\\nlippy\\nlipreading\\nlipreadings\\nlips\\nlipstick\\nlipsticks\\nliquate\\nliquated\\nliquates\\nliquating\\nliquefaction\\nliquefactions\\nliquefiable\\nliquefied\\nliquefier\\nliquefiers\\nliquefies\\nliquefy\\nliquefying\\nliqueur\\nliqueurs\\nliquid\\nliquidate\\nliquidated\\nliquidates\\nliquidating\\nliquidation\\nliquidations\\nliquidities\\nliquidity\\nliquidly\\nliquids\\nliquified\\nliquifies\\nliquify\\nliquifying\\nliquor\\nliquored\\nliquoring\\nliquors\\nlira\\nliras\\nlire\\nliripipe\\nliripipes\\nlirot\\nliroth\\nlis\\nlisle\\nlisles\\nlisp\\nlisped\\nlisper\\nlispers\\nlisping\\nlisps\\nlissom\\nlissome\\nlissomly\\nlist\\nlistable\\nlisted\\nlistel\\nlistels\\nlisten\\nlistened\\nlistener\\nlisteners\\nlistening\\nlistens\\nlister\\nlisters\\nlisting\\nlistings\\nlistless\\nlistlessly\\nlistlessness\\nlistlessnesses\\nlists\\nlit\\nlitai\\nlitanies\\nlitany\\nlitas\\nlitchi\\nlitchis\\nliter\\nliteracies\\nliteracy\\nliteral\\nliterally\\nliterals\\nliterary\\nliterate\\nliterates\\nliterati\\nliterature\\nliteratures\\nliters\\nlitharge\\nlitharges\\nlithe\\nlithely\\nlithemia\\nlithemias\\nlithemic\\nlither\\nlithesome\\nlithest\\nlithia\\nlithias\\nlithic\\nlithium\\nlithiums\\nlitho\\nlithograph\\nlithographer\\nlithographers\\nlithographic\\nlithographies\\nlithographs\\nlithography\\nlithoid\\nlithos\\nlithosol\\nlithosols\\nlitigant\\nlitigants\\nlitigate\\nlitigated\\nlitigates\\nlitigating\\nlitigation\\nlitigations\\nlitigious\\nlitigiousness\\nlitigiousnesses\\nlitmus\\nlitmuses\\nlitoral\\nlitotes\\nlitre\\nlitres\\nlits\\nlitten\\nlitter\\nlittered\\nlitterer\\nlitterers\\nlittering\\nlitters\\nlittery\\nlittle\\nlittleness\\nlittlenesses\\nlittler\\nlittles\\nlittlest\\nlittlish\\nlittoral\\nlittorals\\nlitu\\nliturgic\\nliturgical\\nliturgically\\nliturgies\\nliturgy\\nlivabilities\\nlivability\\nlivable\\nlive\\nliveable\\nlived\\nlivelier\\nliveliest\\nlivelihood\\nlivelihoods\\nlivelily\\nliveliness\\nlivelinesses\\nlivelong\\nlively\\nliven\\nlivened\\nlivener\\nliveners\\nliveness\\nlivenesses\\nlivening\\nlivens\\nliver\\nliveried\\nliveries\\nliverish\\nlivers\\nlivery\\nliveryman\\nliverymen\\nlives\\nlivest\\nlivestock\\nlivestocks\\nlivetrap\\nlivetrapped\\nlivetrapping\\nlivetraps\\nlivid\\nlividities\\nlividity\\nlividly\\nlivier\\nliviers\\nliving\\nlivingly\\nlivings\\nlivre\\nlivres\\nlivyer\\nlivyers\\nlixivia\\nlixivial\\nlixivium\\nlixiviums\\nlizard\\nlizards\\nllama\\nllamas\\nllano\\nllanos\\nlo\\nloach\\nloaches\\nload\\nloaded\\nloader\\nloaders\\nloading\\nloadings\\nloads\\nloadstar\\nloadstars\\nloaf\\nloafed\\nloafer\\nloafers\\nloafing\\nloafs\\nloam\\nloamed\\nloamier\\nloamiest\\nloaming\\nloamless\\nloams\\nloamy\\nloan\\nloanable\\nloaned\\nloaner\\nloaners\\nloaning\\nloanings\\nloans\\nloanword\\nloanwords\\nloath\\nloathe\\nloathed\\nloather\\nloathers\\nloathes\\nloathful\\nloathing\\nloathings\\nloathly\\nloathsome\\nloaves\\nlob\\nlobar\\nlobate\\nlobated\\nlobately\\nlobation\\nlobations\\nlobbed\\nlobbied\\nlobbies\\nlobbing\\nlobby\\nlobbyer\\nlobbyers\\nlobbygow\\nlobbygows\\nlobbying\\nlobbyism\\nlobbyisms\\nlobbyist\\nlobbyists\\nlobe\\nlobed\\nlobefin\\nlobefins\\nlobelia\\nlobelias\\nlobeline\\nlobelines\\nlobes\\nloblollies\\nloblolly\\nlobo\\nlobos\\nlobotomies\\nlobotomy\\nlobs\\nlobster\\nlobsters\\nlobstick\\nlobsticks\\nlobular\\nlobulate\\nlobule\\nlobules\\nlobulose\\nlobworm\\nlobworms\\nloca\\nlocal\\nlocale\\nlocales\\nlocalise\\nlocalised\\nlocalises\\nlocalising\\nlocalism\\nlocalisms\\nlocalist\\nlocalists\\nlocalite\\nlocalites\\nlocalities\\nlocality\\nlocalization\\nlocalizations\\nlocalize\\nlocalized\\nlocalizes\\nlocalizing\\nlocally\\nlocals\\nlocate\\nlocated\\nlocater\\nlocaters\\nlocates\\nlocating\\nlocation\\nlocations\\nlocative\\nlocatives\\nlocator\\nlocators\\nloch\\nlochia\\nlochial\\nlochs\\nloci\\nlock\\nlockable\\nlockage\\nlockages\\nlockbox\\nlockboxes\\nlocked\\nlocker\\nlockers\\nlocket\\nlockets\\nlocking\\nlockjaw\\nlockjaws\\nlocknut\\nlocknuts\\nlockout\\nlockouts\\nlockram\\nlockrams\\nlocks\\nlocksmith\\nlocksmiths\\nlockstep\\nlocksteps\\nlockup\\nlockups\\nloco\\nlocoed\\nlocoes\\nlocofoco\\nlocofocos\\nlocoing\\nlocoism\\nlocoisms\\nlocomote\\nlocomoted\\nlocomotes\\nlocomoting\\nlocomotion\\nlocomotions\\nlocomotive\\nlocomotives\\nlocos\\nlocoweed\\nlocoweeds\\nlocular\\nloculate\\nlocule\\nloculed\\nlocules\\nloculi\\nloculus\\nlocum\\nlocums\\nlocus\\nlocust\\nlocusta\\nlocustae\\nlocustal\\nlocusts\\nlocution\\nlocutions\\nlocutories\\nlocutory\\nlode\\nloden\\nlodens\\nlodes\\nlodestar\\nlodestars\\nlodge\\nlodged\\nlodgement\\nlodgements\\nlodger\\nlodgers\\nlodges\\nlodging\\nlodgings\\nlodgment\\nlodgments\\nlodicule\\nlodicules\\nloess\\nloessal\\nloesses\\nloessial\\nloft\\nlofted\\nlofter\\nlofters\\nloftier\\nloftiest\\nloftily\\nloftiness\\nloftinesses\\nlofting\\nloftless\\nlofts\\nlofty\\nlog\\nlogan\\nlogans\\nlogarithm\\nlogarithmic\\nlogarithms\\nlogbook\\nlogbooks\\nloge\\nloges\\nloggats\\nlogged\\nlogger\\nloggerhead\\nloggerheads\\nloggers\\nloggets\\nloggia\\nloggias\\nloggie\\nloggier\\nloggiest\\nlogging\\nloggings\\nloggy\\nlogia\\nlogic\\nlogical\\nlogically\\nlogician\\nlogicians\\nlogicise\\nlogicised\\nlogicises\\nlogicising\\nlogicize\\nlogicized\\nlogicizes\\nlogicizing\\nlogics\\nlogier\\nlogiest\\nlogily\\nloginess\\nloginesses\\nlogion\\nlogions\\nlogistic\\nlogistical\\nlogistics\\nlogjam\\nlogjams\\nlogo\\nlogogram\\nlogograms\\nlogoi\\nlogomach\\nlogomachs\\nlogos\\nlogotype\\nlogotypes\\nlogotypies\\nlogotypy\\nlogroll\\nlogrolled\\nlogrolling\\nlogrolls\\nlogs\\nlogway\\nlogways\\nlogwood\\nlogwoods\\nlogy\\nloin\\nloins\\nloiter\\nloitered\\nloiterer\\nloiterers\\nloitering\\nloiters\\nloll\\nlolled\\nloller\\nlollers\\nlollies\\nlolling\\nlollipop\\nlollipops\\nlollop\\nlolloped\\nlolloping\\nlollops\\nlolls\\nlolly\\nlollygag\\nlollygagged\\nlollygagging\\nlollygags\\nlollypop\\nlollypops\\nloment\\nlomenta\\nloments\\nlomentum\\nlomentums\\nlone\\nlonelier\\nloneliest\\nlonelily\\nloneliness\\nlonelinesses\\nlonely\\nloneness\\nlonenesses\\nloner\\nloners\\nlonesome\\nlonesomely\\nlonesomeness\\nlonesomenesses\\nlonesomes\\nlong\\nlongan\\nlongans\\nlongboat\\nlongboats\\nlongbow\\nlongbows\\nlonge\\nlonged\\nlongeing\\nlonger\\nlongeron\\nlongerons\\nlongers\\nlonges\\nlongest\\nlongevities\\nlongevity\\nlonghair\\nlonghairs\\nlonghand\\nlonghands\\nlonghead\\nlongheads\\nlonghorn\\nlonghorns\\nlonging\\nlongingly\\nlongings\\nlongish\\nlongitude\\nlongitudes\\nlongitudinal\\nlongitudinally\\nlongleaf\\nlongleaves\\nlongline\\nlonglines\\nlongly\\nlongness\\nlongnesses\\nlongs\\nlongship\\nlongships\\nlongshoreman\\nlongshoremen\\nlongsome\\nlongspur\\nlongspurs\\nlongtime\\nlongueur\\nlongueurs\\nlongways\\nlongwise\\nloo\\nloobies\\nlooby\\nlooed\\nlooey\\nlooeys\\nloof\\nloofa\\nloofah\\nloofahs\\nloofas\\nloofs\\nlooie\\nlooies\\nlooing\\nlook\\nlookdown\\nlookdowns\\nlooked\\nlooker\\nlookers\\nlooking\\nlookout\\nlookouts\\nlooks\\nlookup\\nlookups\\nloom\\nloomed\\nlooming\\nlooms\\nloon\\nlooney\\nloonier\\nloonies\\nlooniest\\nloons\\nloony\\nloop\\nlooped\\nlooper\\nloopers\\nloophole\\nloopholed\\nloopholes\\nloopholing\\nloopier\\nloopiest\\nlooping\\nloops\\nloopy\\nloos\\nloose\\nloosed\\nlooseleaf\\nlooseleafs\\nloosely\\nloosen\\nloosened\\nloosener\\nlooseners\\nlooseness\\nloosenesses\\nloosening\\nloosens\\nlooser\\nlooses\\nloosest\\nloosing\\nloot\\nlooted\\nlooter\\nlooters\\nlooting\\nloots\\nlop\\nlope\\nloped\\nloper\\nlopers\\nlopes\\nloping\\nlopped\\nlopper\\nloppered\\nloppering\\nloppers\\nloppier\\nloppiest\\nlopping\\nloppy\\nlops\\nlopsided\\nlopsidedly\\nlopsidedness\\nlopsidednesses\\nlopstick\\nlopsticks\\nloquacious\\nloquacities\\nloquacity\\nloquat\\nloquats\\nloral\\nloran\\nlorans\\nlord\\nlorded\\nlording\\nlordings\\nlordless\\nlordlier\\nlordliest\\nlordlike\\nlordling\\nlordlings\\nlordly\\nlordoma\\nlordomas\\nlordoses\\nlordosis\\nlordotic\\nlords\\nlordship\\nlordships\\nlordy\\nlore\\nloreal\\nlores\\nlorgnon\\nlorgnons\\nlorica\\nloricae\\nloricate\\nloricates\\nlories\\nlorikeet\\nlorikeets\\nlorimer\\nlorimers\\nloriner\\nloriners\\nloris\\nlorises\\nlorn\\nlornness\\nlornnesses\\nlorries\\nlorry\\nlory\\nlosable\\nlose\\nlosel\\nlosels\\nloser\\nlosers\\nloses\\nlosing\\nlosingly\\nlosings\\nloss\\nlosses\\nlossy\\nlost\\nlostness\\nlostnesses\\nlot\\nlota\\nlotah\\nlotahs\\nlotas\\nloth\\nlothario\\nlotharios\\nlothsome\\nlotic\\nlotion\\nlotions\\nlotos\\nlotoses\\nlots\\nlotted\\nlotteries\\nlottery\\nlotting\\nlotto\\nlottos\\nlotus\\nlotuses\\nloud\\nlouden\\nloudened\\nloudening\\nloudens\\nlouder\\nloudest\\nloudish\\nloudlier\\nloudliest\\nloudly\\nloudness\\nloudnesses\\nloudspeaker\\nloudspeakers\\nlough\\nloughs\\nlouie\\nlouies\\nlouis\\nlounge\\nlounged\\nlounger\\nloungers\\nlounges\\nlounging\\nloungy\\nloup\\nloupe\\nlouped\\nloupen\\nloupes\\nlouping\\nloups\\nlour\\nloured\\nlouring\\nlours\\nloury\\nlouse\\nloused\\nlouses\\nlousier\\nlousiest\\nlousily\\nlousiness\\nlousinesses\\nlousing\\nlousy\\nlout\\nlouted\\nlouting\\nloutish\\nloutishly\\nlouts\\nlouver\\nlouvered\\nlouvers\\nlouvre\\nlouvres\\nlovable\\nlovably\\nlovage\\nlovages\\nlove\\nloveable\\nloveably\\nlovebird\\nlovebirds\\nloved\\nloveless\\nlovelier\\nlovelies\\nloveliest\\nlovelily\\nloveliness\\nlovelinesses\\nlovelock\\nlovelocks\\nlovelorn\\nlovely\\nlover\\nloverly\\nlovers\\nloves\\nlovesick\\nlovesome\\nlovevine\\nlovevines\\nloving\\nlovingly\\nlow\\nlowborn\\nlowboy\\nlowboys\\nlowbred\\nlowbrow\\nlowbrows\\nlowdown\\nlowdowns\\nlowe\\nlowed\\nlower\\nlowercase\\nlowered\\nlowering\\nlowers\\nlowery\\nlowes\\nlowest\\nlowing\\nlowings\\nlowish\\nlowland\\nlowlands\\nlowlier\\nlowliest\\nlowlife\\nlowlifes\\nlowliness\\nlowlinesses\\nlowly\\nlown\\nlowness\\nlownesses\\nlows\\nlowse\\nlox\\nloxed\\nloxes\\nloxing\\nloyal\\nloyaler\\nloyalest\\nloyalism\\nloyalisms\\nloyalist\\nloyalists\\nloyally\\nloyalties\\nloyalty\\nlozenge\\nlozenges\\nluau\\nluaus\\nlubber\\nlubberly\\nlubbers\\nlube\\nlubes\\nlubric\\nlubricant\\nlubricants\\nlubricate\\nlubricated\\nlubricates\\nlubricating\\nlubrication\\nlubrications\\nlubricator\\nlubricators\\nlucarne\\nlucarnes\\nluce\\nlucence\\nlucences\\nlucencies\\nlucency\\nlucent\\nlucently\\nlucern\\nlucerne\\nlucernes\\nlucerns\\nluces\\nlucid\\nlucidities\\nlucidity\\nlucidly\\nlucidness\\nlucidnesses\\nlucifer\\nlucifers\\nluck\\nlucked\\nluckie\\nluckier\\nluckies\\nluckiest\\nluckily\\nluckiness\\nluckinesses\\nlucking\\nluckless\\nlucks\\nlucky\\nlucrative\\nlucratively\\nlucrativeness\\nlucrativenesses\\nlucre\\nlucres\\nluculent\\nludicrous\\nludicrously\\nludicrousness\\nludicrousnesses\\nlues\\nluetic\\nluetics\\nluff\\nluffa\\nluffas\\nluffed\\nluffing\\nluffs\\nlug\\nluge\\nluges\\nluggage\\nluggages\\nlugged\\nlugger\\nluggers\\nluggie\\nluggies\\nlugging\\nlugs\\nlugsail\\nlugsails\\nlugubrious\\nlugubriously\\nlugubriousness\\nlugubriousnesses\\nlugworm\\nlugworms\\nlukewarm\\nlull\\nlullabied\\nlullabies\\nlullaby\\nlullabying\\nlulled\\nlulling\\nlulls\\nlulu\\nlulus\\nlum\\nlumbago\\nlumbagos\\nlumbar\\nlumbars\\nlumber\\nlumbered\\nlumberer\\nlumberers\\nlumbering\\nlumberjack\\nlumberjacks\\nlumberman\\nlumbermen\\nlumbers\\nlumberyard\\nlumberyards\\nlumen\\nlumenal\\nlumens\\nlumina\\nluminal\\nluminance\\nluminances\\nluminaries\\nluminary\\nluminescence\\nluminescences\\nluminescent\\nluminist\\nluminists\\nluminosities\\nluminosity\\nluminous\\nluminously\\nlummox\\nlummoxes\\nlump\\nlumped\\nlumpen\\nlumpens\\nlumper\\nlumpers\\nlumpfish\\nlumpfishes\\nlumpier\\nlumpiest\\nlumpily\\nlumping\\nlumpish\\nlumps\\nlumpy\\nlums\\nluna\\nlunacies\\nlunacy\\nlunar\\nlunarian\\nlunarians\\nlunars\\nlunas\\nlunate\\nlunated\\nlunately\\nlunatic\\nlunatics\\nlunation\\nlunations\\nlunch\\nlunched\\nluncheon\\nluncheons\\nluncher\\nlunchers\\nlunches\\nlunching\\nlune\\nlunes\\nlunet\\nlunets\\nlunette\\nlunettes\\nlung\\nlungan\\nlungans\\nlunge\\nlunged\\nlungee\\nlungees\\nlunger\\nlungers\\nlunges\\nlungfish\\nlungfishes\\nlungi\\nlunging\\nlungis\\nlungs\\nlungworm\\nlungworms\\nlungwort\\nlungworts\\nlungyi\\nlungyis\\nlunier\\nlunies\\nluniest\\nlunk\\nlunker\\nlunkers\\nlunkhead\\nlunkheads\\nlunks\\nlunt\\nlunted\\nlunting\\nlunts\\nlunula\\nlunulae\\nlunular\\nlunulate\\nlunule\\nlunules\\nluny\\nlupanar\\nlupanars\\nlupin\\nlupine\\nlupines\\nlupins\\nlupous\\nlupulin\\nlupulins\\nlupus\\nlupuses\\nlurch\\nlurched\\nlurcher\\nlurchers\\nlurches\\nlurching\\nlurdan\\nlurdane\\nlurdanes\\nlurdans\\nlure\\nlured\\nlurer\\nlurers\\nlures\\nlurid\\nluridly\\nluring\\nlurk\\nlurked\\nlurker\\nlurkers\\nlurking\\nlurks\\nluscious\\nlusciously\\nlusciousness\\nlusciousnesses\\nlush\\nlushed\\nlusher\\nlushes\\nlushest\\nlushing\\nlushly\\nlushness\\nlushnesses\\nlust\\nlusted\\nluster\\nlustered\\nlustering\\nlusterless\\nlusters\\nlustful\\nlustier\\nlustiest\\nlustily\\nlustiness\\nlustinesses\\nlusting\\nlustra\\nlustral\\nlustrate\\nlustrated\\nlustrates\\nlustrating\\nlustre\\nlustred\\nlustres\\nlustring\\nlustrings\\nlustrous\\nlustrum\\nlustrums\\nlusts\\nlusty\\nlusus\\nlususes\\nlutanist\\nlutanists\\nlute\\nlutea\\nluteal\\nlutecium\\nluteciums\\nluted\\nlutein\\nluteins\\nlutenist\\nlutenists\\nluteolin\\nluteolins\\nluteous\\nlutes\\nlutetium\\nlutetiums\\nluteum\\nluthern\\nlutherns\\nluting\\nlutings\\nlutist\\nlutists\\nlux\\nluxate\\nluxated\\nluxates\\nluxating\\nluxation\\nluxations\\nluxe\\nluxes\\nluxuriance\\nluxuriances\\nluxuriant\\nluxuriantly\\nluxuriate\\nluxuriated\\nluxuriates\\nluxuriating\\nluxuries\\nluxurious\\nluxuriously\\nluxury\\nlyard\\nlyart\\nlyase\\nlyases\\nlycanthropies\\nlycanthropy\\nlycea\\nlycee\\nlycees\\nlyceum\\nlyceums\\nlychee\\nlychees\\nlychnis\\nlychnises\\nlycopene\\nlycopenes\\nlycopod\\nlycopods\\nlyddite\\nlyddites\\nlye\\nlyes\\nlying\\nlyingly\\nlyings\\nlymph\\nlymphatic\\nlymphocytopenia\\nlymphocytosis\\nlymphoid\\nlymphoma\\nlymphomas\\nlymphomata\\nlymphs\\nlyncean\\nlynch\\nlynched\\nlyncher\\nlynchers\\nlynches\\nlynching\\nlynchings\\nlynx\\nlynxes\\nlyophile\\nlyrate\\nlyrated\\nlyrately\\nlyre\\nlyrebird\\nlyrebirds\\nlyres\\nlyric\\nlyrical\\nlyricise\\nlyricised\\nlyricises\\nlyricising\\nlyricism\\nlyricisms\\nlyricist\\nlyricists\\nlyricize\\nlyricized\\nlyricizes\\nlyricizing\\nlyrics\\nlyriform\\nlyrism\\nlyrisms\\nlyrist\\nlyrists\\nlysate\\nlysates\\nlyse\\nlysed\\nlyses\\nlysin\\nlysine\\nlysines\\nlysing\\nlysins\\nlysis\\nlysogen\\nlysogenies\\nlysogens\\nlysogeny\\nlysosome\\nlysosomes\\nlysozyme\\nlysozymes\\nlyssa\\nlyssas\\nlytic\\nlytta\\nlyttae\\nlyttas\\nma\\nmaar\\nmaars\\nmac\\nmacaber\\nmacabre\\nmacaco\\nmacacos\\nmacadam\\nmacadamize\\nmacadamized\\nmacadamizes\\nmacadamizing\\nmacadams\\nmacaque\\nmacaques\\nmacaroni\\nmacaronies\\nmacaronis\\nmacaroon\\nmacaroons\\nmacaw\\nmacaws\\nmaccabaw\\nmaccabaws\\nmaccaboy\\nmaccaboys\\nmacchia\\nmacchie\\nmaccoboy\\nmaccoboys\\nmace\\nmaced\\nmacer\\nmacerate\\nmacerated\\nmacerates\\nmacerating\\nmacers\\nmaces\\nmach\\nmachete\\nmachetes\\nmachinate\\nmachinated\\nmachinates\\nmachinating\\nmachination\\nmachinations\\nmachine\\nmachineable\\nmachined\\nmachineries\\nmachinery\\nmachines\\nmachining\\nmachinist\\nmachinists\\nmachismo\\nmachismos\\nmacho\\nmachos\\nmachree\\nmachrees\\nmachs\\nmachzor\\nmachzorim\\nmachzors\\nmacing\\nmack\\nmackerel\\nmackerels\\nmackinaw\\nmackinaws\\nmackle\\nmackled\\nmackles\\nmackling\\nmacks\\nmacle\\nmacled\\nmacles\\nmacrame\\nmacrames\\nmacro\\nmacrocosm\\nmacrocosms\\nmacron\\nmacrons\\nmacros\\nmacrural\\nmacruran\\nmacrurans\\nmacs\\nmacula\\nmaculae\\nmacular\\nmaculas\\nmaculate\\nmaculated\\nmaculates\\nmaculating\\nmacule\\nmaculed\\nmacules\\nmaculing\\nmad\\nmadam\\nmadame\\nmadames\\nmadams\\nmadcap\\nmadcaps\\nmadded\\nmadden\\nmaddened\\nmaddening\\nmaddens\\nmadder\\nmadders\\nmaddest\\nmadding\\nmaddish\\nmade\\nmadeira\\nmadeiras\\nmademoiselle\\nmademoiselles\\nmadhouse\\nmadhouses\\nmadly\\nmadman\\nmadmen\\nmadness\\nmadnesses\\nmadonna\\nmadonnas\\nmadras\\nmadrases\\nmadre\\nmadres\\nmadrigal\\nmadrigals\\nmadrona\\nmadronas\\nmadrone\\nmadrones\\nmadrono\\nmadronos\\nmads\\nmaduro\\nmaduros\\nmadwoman\\nmadwomen\\nmadwort\\nmadworts\\nmadzoon\\nmadzoons\\nmae\\nmaelstrom\\nmaelstroms\\nmaenad\\nmaenades\\nmaenadic\\nmaenads\\nmaes\\nmaestoso\\nmaestosos\\nmaestri\\nmaestro\\nmaestros\\nmaffia\\nmaffias\\nmaffick\\nmafficked\\nmafficking\\nmafficks\\nmafia\\nmafias\\nmafic\\nmafiosi\\nmafioso\\nmaftir\\nmaftirs\\nmag\\nmagazine\\nmagazines\\nmagdalen\\nmagdalens\\nmage\\nmagenta\\nmagentas\\nmages\\nmagestical\\nmagestically\\nmaggot\\nmaggots\\nmaggoty\\nmagi\\nmagic\\nmagical\\nmagically\\nmagician\\nmagicians\\nmagicked\\nmagicking\\nmagics\\nmagilp\\nmagilps\\nmagister\\nmagisterial\\nmagisters\\nmagistracies\\nmagistracy\\nmagistrate\\nmagistrates\\nmagma\\nmagmas\\nmagmata\\nmagmatic\\nmagnanimities\\nmagnanimity\\nmagnanimous\\nmagnanimously\\nmagnanimousness\\nmagnanimousnesses\\nmagnate\\nmagnates\\nmagnesia\\nmagnesias\\nmagnesic\\nmagnesium\\nmagnesiums\\nmagnet\\nmagnetic\\nmagnetically\\nmagnetics\\nmagnetism\\nmagnetisms\\nmagnetite\\nmagnetites\\nmagnetizable\\nmagnetization\\nmagnetizations\\nmagnetize\\nmagnetized\\nmagnetizer\\nmagnetizers\\nmagnetizes\\nmagnetizing\\nmagneto\\nmagneton\\nmagnetons\\nmagnetos\\nmagnets\\nmagnific\\nmagnification\\nmagnifications\\nmagnificence\\nmagnificences\\nmagnificent\\nmagnificently\\nmagnified\\nmagnifier\\nmagnifiers\\nmagnifies\\nmagnify\\nmagnifying\\nmagnitude\\nmagnitudes\\nmagnolia\\nmagnolias\\nmagnum\\nmagnums\\nmagot\\nmagots\\nmagpie\\nmagpies\\nmags\\nmaguey\\nmagueys\\nmagus\\nmaharaja\\nmaharajas\\nmaharani\\nmaharanis\\nmahatma\\nmahatmas\\nmahjong\\nmahjongg\\nmahjonggs\\nmahjongs\\nmahoe\\nmahoes\\nmahogonies\\nmahogony\\nmahonia\\nmahonias\\nmahout\\nmahouts\\nmahuang\\nmahuangs\\nmahzor\\nmahzorim\\nmahzors\\nmaid\\nmaiden\\nmaidenhair\\nmaidenhairs\\nmaidenhood\\nmaidenhoods\\nmaidenly\\nmaidens\\nmaidhood\\nmaidhoods\\nmaidish\\nmaids\\nmaieutic\\nmaigre\\nmaihem\\nmaihems\\nmail\\nmailable\\nmailbag\\nmailbags\\nmailbox\\nmailboxes\\nmaile\\nmailed\\nmailer\\nmailers\\nmailes\\nmailing\\nmailings\\nmaill\\nmailless\\nmaillot\\nmaillots\\nmaills\\nmailman\\nmailmen\\nmailperson\\nmailpersons\\nmails\\nmailwoman\\nmaim\\nmaimed\\nmaimer\\nmaimers\\nmaiming\\nmaims\\nmain\\nmainland\\nmainlands\\nmainline\\nmainlined\\nmainlines\\nmainlining\\nmainly\\nmainmast\\nmainmasts\\nmains\\nmainsail\\nmainsails\\nmainstay\\nmainstays\\nmainstream\\nmainstreams\\nmaintain\\nmaintainabilities\\nmaintainability\\nmaintainable\\nmaintainance\\nmaintainances\\nmaintained\\nmaintaining\\nmaintains\\nmaintenance\\nmaintenances\\nmaintop\\nmaintops\\nmaiolica\\nmaiolicas\\nmair\\nmairs\\nmaist\\nmaists\\nmaize\\nmaizes\\nmajagua\\nmajaguas\\nmajestic\\nmajesties\\nmajesty\\nmajolica\\nmajolicas\\nmajor\\nmajordomo\\nmajordomos\\nmajored\\nmajoring\\nmajorities\\nmajority\\nmajors\\nmakable\\nmakar\\nmakars\\nmake\\nmakeable\\nmakebate\\nmakebates\\nmakefast\\nmakefasts\\nmaker\\nmakers\\nmakes\\nmakeshift\\nmakeshifts\\nmakeup\\nmakeups\\nmakimono\\nmakimonos\\nmaking\\nmakings\\nmako\\nmakos\\nmakuta\\nmaladies\\nmaladjusted\\nmaladjustment\\nmaladjustments\\nmaladroit\\nmalady\\nmalaise\\nmalaises\\nmalamute\\nmalamutes\\nmalapert\\nmalaperts\\nmalaprop\\nmalapropism\\nmalapropisms\\nmalaprops\\nmalar\\nmalaria\\nmalarial\\nmalarian\\nmalarias\\nmalarkey\\nmalarkeys\\nmalarkies\\nmalarky\\nmalaroma\\nmalaromas\\nmalars\\nmalate\\nmalates\\nmalcontent\\nmalcontents\\nmale\\nmaleate\\nmaleates\\nmaledict\\nmaledicted\\nmaledicting\\nmalediction\\nmaledictions\\nmaledicts\\nmalefactor\\nmalefactors\\nmalefic\\nmaleficence\\nmaleficences\\nmaleficent\\nmalemiut\\nmalemiuts\\nmalemute\\nmalemutes\\nmaleness\\nmalenesses\\nmales\\nmalevolence\\nmalevolences\\nmalevolent\\nmalfeasance\\nmalfeasances\\nmalfed\\nmalformation\\nmalformations\\nmalformed\\nmalfunction\\nmalfunctioned\\nmalfunctioning\\nmalfunctions\\nmalgre\\nmalic\\nmalice\\nmalices\\nmalicious\\nmaliciously\\nmalign\\nmalignancies\\nmalignancy\\nmalignant\\nmalignantly\\nmaligned\\nmaligner\\nmaligners\\nmaligning\\nmalignities\\nmalignity\\nmalignly\\nmaligns\\nmalihini\\nmalihinis\\nmaline\\nmalines\\nmalinger\\nmalingered\\nmalingerer\\nmalingerers\\nmalingering\\nmalingers\\nmalison\\nmalisons\\nmalkin\\nmalkins\\nmall\\nmallard\\nmallards\\nmalleabilities\\nmalleability\\nmalleable\\nmalled\\nmallee\\nmallees\\nmallei\\nmalleoli\\nmallet\\nmallets\\nmalleus\\nmalling\\nmallow\\nmallows\\nmalls\\nmalm\\nmalmier\\nmalmiest\\nmalms\\nmalmsey\\nmalmseys\\nmalmy\\nmalnourished\\nmalnutrition\\nmalnutritions\\nmalodor\\nmalodorous\\nmalodorously\\nmalodorousness\\nmalodorousnesses\\nmalodors\\nmalposed\\nmalpractice\\nmalpractices\\nmalt\\nmaltase\\nmaltases\\nmalted\\nmaltha\\nmalthas\\nmaltier\\nmaltiest\\nmalting\\nmaltol\\nmaltols\\nmaltose\\nmaltoses\\nmaltreat\\nmaltreated\\nmaltreating\\nmaltreatment\\nmaltreatments\\nmaltreats\\nmalts\\nmaltster\\nmaltsters\\nmalty\\nmalvasia\\nmalvasias\\nmama\\nmamas\\nmamba\\nmambas\\nmambo\\nmamboed\\nmamboes\\nmamboing\\nmambos\\nmameluke\\nmamelukes\\nmamey\\nmameyes\\nmameys\\nmamie\\nmamies\\nmamluk\\nmamluks\\nmamma\\nmammae\\nmammal\\nmammalian\\nmammals\\nmammary\\nmammas\\nmammate\\nmammati\\nmammatus\\nmammee\\nmammees\\nmammer\\nmammered\\nmammering\\nmammers\\nmammet\\nmammets\\nmammey\\nmammeys\\nmammie\\nmammies\\nmammilla\\nmammillae\\nmammitides\\nmammitis\\nmammock\\nmammocked\\nmammocking\\nmammocks\\nmammon\\nmammons\\nmammoth\\nmammoths\\nmammy\\nman\\nmana\\nmanacle\\nmanacled\\nmanacles\\nmanacling\\nmanage\\nmanageabilities\\nmanageability\\nmanageable\\nmanageableness\\nmanageablenesses\\nmanageably\\nmanaged\\nmanagement\\nmanagemental\\nmanagements\\nmanager\\nmanagerial\\nmanagers\\nmanages\\nmanaging\\nmanakin\\nmanakins\\nmanana\\nmananas\\nmanas\\nmanatee\\nmanatees\\nmanatoid\\nmanche\\nmanches\\nmanchet\\nmanchets\\nmanciple\\nmanciples\\nmandala\\nmandalas\\nmandalic\\nmandamus\\nmandamused\\nmandamuses\\nmandamusing\\nmandarin\\nmandarins\\nmandate\\nmandated\\nmandates\\nmandating\\nmandator\\nmandators\\nmandatory\\nmandible\\nmandibles\\nmandibular\\nmandioca\\nmandiocas\\nmandola\\nmandolas\\nmandolin\\nmandolins\\nmandrake\\nmandrakes\\nmandrel\\nmandrels\\nmandril\\nmandrill\\nmandrills\\nmandrils\\nmane\\nmaned\\nmanege\\nmaneges\\nmaneless\\nmanes\\nmaneuver\\nmaneuverabilities\\nmaneuverability\\nmaneuvered\\nmaneuvering\\nmaneuvers\\nmanful\\nmanfully\\nmangabey\\nmangabeys\\nmangabies\\nmangaby\\nmanganese\\nmanganeses\\nmanganesian\\nmanganic\\nmange\\nmangel\\nmangels\\nmanger\\nmangers\\nmanges\\nmangey\\nmangier\\nmangiest\\nmangily\\nmangle\\nmangled\\nmangler\\nmanglers\\nmangles\\nmangling\\nmango\\nmangoes\\nmangold\\nmangolds\\nmangonel\\nmangonels\\nmangos\\nmangrove\\nmangroves\\nmangy\\nmanhandle\\nmanhandled\\nmanhandles\\nmanhandling\\nmanhole\\nmanholes\\nmanhood\\nmanhoods\\nmanhunt\\nmanhunts\\nmania\\nmaniac\\nmaniacal\\nmaniacs\\nmanias\\nmanic\\nmanics\\nmanicure\\nmanicured\\nmanicures\\nmanicuring\\nmanicurist\\nmanicurists\\nmanifest\\nmanifestation\\nmanifestations\\nmanifested\\nmanifesting\\nmanifestly\\nmanifesto\\nmanifestos\\nmanifests\\nmanifold\\nmanifolded\\nmanifolding\\nmanifolds\\nmanihot\\nmanihots\\nmanikin\\nmanikins\\nmanila\\nmanilas\\nmanilla\\nmanillas\\nmanille\\nmanilles\\nmanioc\\nmanioca\\nmaniocas\\nmaniocs\\nmaniple\\nmaniples\\nmanipulate\\nmanipulated\\nmanipulates\\nmanipulating\\nmanipulation\\nmanipulations\\nmanipulative\\nmanipulator\\nmanipulators\\nmanito\\nmanitos\\nmanitou\\nmanitous\\nmanitu\\nmanitus\\nmankind\\nmanless\\nmanlier\\nmanliest\\nmanlike\\nmanlily\\nmanly\\nmanmade\\nmanna\\nmannan\\nmannans\\nmannas\\nmanned\\nmannequin\\nmannequins\\nmanner\\nmannered\\nmannerism\\nmannerisms\\nmannerliness\\nmannerlinesses\\nmannerly\\nmanners\\nmannikin\\nmannikins\\nmanning\\nmannish\\nmannishly\\nmannishness\\nmannishnesses\\nmannite\\nmannites\\nmannitic\\nmannitol\\nmannitols\\nmannose\\nmannoses\\nmano\\nmanor\\nmanorial\\nmanorialism\\nmanorialisms\\nmanors\\nmanos\\nmanpack\\nmanpower\\nmanpowers\\nmanque\\nmanrope\\nmanropes\\nmans\\nmansard\\nmansards\\nmanse\\nmanservant\\nmanses\\nmansion\\nmansions\\nmanslaughter\\nmanslaughters\\nmanta\\nmantas\\nmanteau\\nmanteaus\\nmanteaux\\nmantel\\nmantelet\\nmantelets\\nmantels\\nmantes\\nmantic\\nmantid\\nmantids\\nmantilla\\nmantillas\\nmantis\\nmantises\\nmantissa\\nmantissas\\nmantle\\nmantled\\nmantles\\nmantlet\\nmantlets\\nmantling\\nmantlings\\nmantra\\nmantrap\\nmantraps\\nmantras\\nmantua\\nmantuas\\nmanual\\nmanually\\nmanuals\\nmanuary\\nmanubria\\nmanufacture\\nmanufactured\\nmanufacturer\\nmanufacturers\\nmanufactures\\nmanufacturing\\nmanumit\\nmanumits\\nmanumitted\\nmanumitting\\nmanure\\nmanured\\nmanurer\\nmanurers\\nmanures\\nmanurial\\nmanuring\\nmanus\\nmanuscript\\nmanuscripts\\nmanward\\nmanwards\\nmanwise\\nmany\\nmanyfold\\nmap\\nmaple\\nmaples\\nmapmaker\\nmapmakers\\nmappable\\nmapped\\nmapper\\nmappers\\nmapping\\nmappings\\nmaps\\nmaquette\\nmaquettes\\nmaqui\\nmaquis\\nmar\\nmarabou\\nmarabous\\nmarabout\\nmarabouts\\nmaraca\\nmaracas\\nmaranta\\nmarantas\\nmarasca\\nmarascas\\nmaraschino\\nmaraschinos\\nmarasmic\\nmarasmus\\nmarasmuses\\nmarathon\\nmarathons\\nmaraud\\nmarauded\\nmarauder\\nmarauders\\nmarauding\\nmarauds\\nmaravedi\\nmaravedis\\nmarble\\nmarbled\\nmarbler\\nmarblers\\nmarbles\\nmarblier\\nmarbliest\\nmarbling\\nmarblings\\nmarbly\\nmarc\\nmarcel\\nmarcelled\\nmarcelling\\nmarcels\\nmarch\\nmarched\\nmarchen\\nmarcher\\nmarchers\\nmarches\\nmarchesa\\nmarchese\\nmarchesi\\nmarching\\nmarchioness\\nmarchionesses\\nmarcs\\nmare\\nmaremma\\nmaremme\\nmares\\nmargaric\\nmargarin\\nmargarine\\nmargarines\\nmargarins\\nmargay\\nmargays\\nmarge\\nmargent\\nmargented\\nmargenting\\nmargents\\nmarges\\nmargin\\nmarginal\\nmarginally\\nmargined\\nmargining\\nmargins\\nmargrave\\nmargraves\\nmaria\\nmariachi\\nmariachis\\nmarigold\\nmarigolds\\nmarihuana\\nmarihuanas\\nmarijuana\\nmarijuanas\\nmarimba\\nmarimbas\\nmarina\\nmarinade\\nmarinaded\\nmarinades\\nmarinading\\nmarinara\\nmarinaras\\nmarinas\\nmarinate\\nmarinated\\nmarinates\\nmarinating\\nmarine\\nmariner\\nmariners\\nmarines\\nmarionette\\nmarionettes\\nmariposa\\nmariposas\\nmarish\\nmarishes\\nmarital\\nmaritime\\nmarjoram\\nmarjorams\\nmark\\nmarkdown\\nmarkdowns\\nmarked\\nmarkedly\\nmarker\\nmarkers\\nmarket\\nmarketable\\nmarketech\\nmarketed\\nmarketer\\nmarketers\\nmarketing\\nmarketplace\\nmarketplaces\\nmarkets\\nmarkhoor\\nmarkhoors\\nmarkhor\\nmarkhors\\nmarking\\nmarkings\\nmarkka\\nmarkkaa\\nmarkkas\\nmarks\\nmarksman\\nmarksmanship\\nmarksmanships\\nmarksmen\\nmarkup\\nmarkups\\nmarl\\nmarled\\nmarlier\\nmarliest\\nmarlin\\nmarline\\nmarlines\\nmarling\\nmarlings\\nmarlins\\nmarlite\\nmarlites\\nmarlitic\\nmarls\\nmarly\\nmarmalade\\nmarmalades\\nmarmite\\nmarmites\\nmarmoset\\nmarmosets\\nmarmot\\nmarmots\\nmaroon\\nmarooned\\nmarooning\\nmaroons\\nmarplot\\nmarplots\\nmarque\\nmarquee\\nmarquees\\nmarques\\nmarquess\\nmarquesses\\nmarquis\\nmarquise\\nmarquises\\nmarram\\nmarrams\\nmarred\\nmarrer\\nmarrers\\nmarriage\\nmarriageable\\nmarriages\\nmarried\\nmarrieds\\nmarrier\\nmarriers\\nmarries\\nmarring\\nmarron\\nmarrons\\nmarrow\\nmarrowed\\nmarrowing\\nmarrows\\nmarrowy\\nmarry\\nmarrying\\nmars\\nmarse\\nmarses\\nmarsh\\nmarshal\\nmarshaled\\nmarshaling\\nmarshall\\nmarshalled\\nmarshalling\\nmarshalls\\nmarshals\\nmarshes\\nmarshier\\nmarshiest\\nmarshmallow\\nmarshmallows\\nmarshy\\nmarsupia\\nmarsupial\\nmarsupials\\nmart\\nmartagon\\nmartagons\\nmarted\\nmartello\\nmartellos\\nmarten\\nmartens\\nmartial\\nmartian\\nmartians\\nmartin\\nmartinet\\nmartinets\\nmarting\\nmartini\\nmartinis\\nmartins\\nmartlet\\nmartlets\\nmarts\\nmartyr\\nmartyrdom\\nmartyrdoms\\nmartyred\\nmartyries\\nmartyring\\nmartyrly\\nmartyrs\\nmartyry\\nmarvel\\nmarveled\\nmarveling\\nmarvelled\\nmarvelling\\nmarvellous\\nmarvelous\\nmarvelously\\nmarvelousness\\nmarvelousnesses\\nmarvels\\nmarzipan\\nmarzipans\\nmas\\nmascara\\nmascaras\\nmascon\\nmascons\\nmascot\\nmascots\\nmasculine\\nmasculinities\\nmasculinity\\nmasculinization\\nmasculinizations\\nmaser\\nmasers\\nmash\\nmashed\\nmasher\\nmashers\\nmashes\\nmashie\\nmashies\\nmashing\\nmashy\\nmasjid\\nmasjids\\nmask\\nmaskable\\nmasked\\nmaskeg\\nmaskegs\\nmasker\\nmaskers\\nmasking\\nmaskings\\nmasklike\\nmasks\\nmasochism\\nmasochisms\\nmasochist\\nmasochistic\\nmasochists\\nmason\\nmasoned\\nmasonic\\nmasoning\\nmasonries\\nmasonry\\nmasons\\nmasque\\nmasquer\\nmasquerade\\nmasqueraded\\nmasquerader\\nmasqueraders\\nmasquerades\\nmasquerading\\nmasquers\\nmasques\\nmass\\nmassa\\nmassachusetts\\nmassacre\\nmassacred\\nmassacres\\nmassacring\\nmassage\\nmassaged\\nmassager\\nmassagers\\nmassages\\nmassaging\\nmassas\\nmasse\\nmassed\\nmassedly\\nmasses\\nmasseter\\nmasseters\\nmasseur\\nmasseurs\\nmasseuse\\nmasseuses\\nmassicot\\nmassicots\\nmassier\\nmassiest\\nmassif\\nmassifs\\nmassing\\nmassive\\nmassiveness\\nmassivenesses\\nmassless\\nmasslessness\\nmasslessnesses\\nmassy\\nmast\\nmastaba\\nmastabah\\nmastabahs\\nmastabas\\nmastectomies\\nmastectomy\\nmasted\\nmaster\\nmastered\\nmasterful\\nmasterfully\\nmasteries\\nmastering\\nmasterly\\nmastermind\\nmasterminds\\nmasters\\nmastership\\nmasterships\\nmasterwork\\nmasterworks\\nmastery\\nmasthead\\nmastheaded\\nmastheading\\nmastheads\\nmastic\\nmasticate\\nmasticated\\nmasticates\\nmasticating\\nmastication\\nmastications\\nmastiche\\nmastiches\\nmastics\\nmastiff\\nmastiffs\\nmasting\\nmastitic\\nmastitides\\nmastitis\\nmastix\\nmastixes\\nmastless\\nmastlike\\nmastodon\\nmastodons\\nmastoid\\nmastoids\\nmasts\\nmasturbate\\nmasturbated\\nmasturbates\\nmasturbating\\nmasturbation\\nmasturbations\\nmasurium\\nmasuriums\\nmat\\nmatador\\nmatadors\\nmatch\\nmatchbox\\nmatchboxes\\nmatched\\nmatcher\\nmatchers\\nmatches\\nmatching\\nmatchless\\nmatchmaker\\nmatchmakers\\nmate\\nmated\\nmateless\\nmatelote\\nmatelotes\\nmater\\nmaterial\\nmaterialism\\nmaterialisms\\nmaterialist\\nmaterialistic\\nmaterialists\\nmaterialization\\nmaterializations\\nmaterialize\\nmaterialized\\nmaterializes\\nmaterializing\\nmaterially\\nmaterials\\nmateriel\\nmateriels\\nmaternal\\nmaternally\\nmaternities\\nmaternity\\nmaters\\nmates\\nmateship\\nmateships\\nmatey\\nmateys\\nmath\\nmathematical\\nmathematically\\nmathematician\\nmathematicians\\nmathematics\\nmaths\\nmatilda\\nmatildas\\nmatin\\nmatinal\\nmatinee\\nmatinees\\nmatiness\\nmatinesses\\nmating\\nmatings\\nmatins\\nmatless\\nmatrass\\nmatrasses\\nmatres\\nmatriarch\\nmatriarchal\\nmatriarches\\nmatriarchies\\nmatriarchy\\nmatrices\\nmatricidal\\nmatricide\\nmatricides\\nmatriculate\\nmatriculated\\nmatriculates\\nmatriculating\\nmatriculation\\nmatriculations\\nmatrimonial\\nmatrimonially\\nmatrimonies\\nmatrimony\\nmatrix\\nmatrixes\\nmatron\\nmatronal\\nmatronly\\nmatrons\\nmats\\nmatt\\nmatte\\nmatted\\nmattedly\\nmatter\\nmattered\\nmattering\\nmatters\\nmattery\\nmattes\\nmattin\\nmatting\\nmattings\\nmattins\\nmattock\\nmattocks\\nmattoid\\nmattoids\\nmattrass\\nmattrasses\\nmattress\\nmattresses\\nmatts\\nmaturate\\nmaturated\\nmaturates\\nmaturating\\nmaturation\\nmaturational\\nmaturations\\nmaturative\\nmature\\nmatured\\nmaturely\\nmaturer\\nmatures\\nmaturest\\nmaturing\\nmaturities\\nmaturity\\nmatza\\nmatzah\\nmatzahs\\nmatzas\\nmatzo\\nmatzoh\\nmatzohs\\nmatzoon\\nmatzoons\\nmatzos\\nmatzot\\nmatzoth\\nmaudlin\\nmauger\\nmaugre\\nmaul\\nmauled\\nmauler\\nmaulers\\nmauling\\nmauls\\nmaumet\\nmaumetries\\nmaumetry\\nmaumets\\nmaun\\nmaund\\nmaunder\\nmaundered\\nmaundering\\nmaunders\\nmaundies\\nmaunds\\nmaundy\\nmausolea\\nmausoleum\\nmausoleums\\nmaut\\nmauts\\nmauve\\nmauves\\nmaven\\nmavens\\nmaverick\\nmavericks\\nmavie\\nmavies\\nmavin\\nmavins\\nmavis\\nmavises\\nmaw\\nmawed\\nmawing\\nmawkish\\nmawkishly\\nmawkishness\\nmawkishnesses\\nmawn\\nmaws\\nmaxi\\nmaxicoat\\nmaxicoats\\nmaxilla\\nmaxillae\\nmaxillas\\nmaxim\\nmaxima\\nmaximal\\nmaximals\\nmaximin\\nmaximins\\nmaximise\\nmaximised\\nmaximises\\nmaximising\\nmaximite\\nmaximites\\nmaximize\\nmaximized\\nmaximizes\\nmaximizing\\nmaxims\\nmaximum\\nmaximums\\nmaxis\\nmaxixe\\nmaxixes\\nmaxwell\\nmaxwells\\nmay\\nmaya\\nmayan\\nmayapple\\nmayapples\\nmayas\\nmaybe\\nmaybush\\nmaybushes\\nmayday\\nmaydays\\nmayed\\nmayest\\nmayflies\\nmayflower\\nmayflowers\\nmayfly\\nmayhap\\nmayhem\\nmayhems\\nmaying\\nmayings\\nmayonnaise\\nmayonnaises\\nmayor\\nmayoral\\nmayoralties\\nmayoralty\\nmayoress\\nmayoresses\\nmayors\\nmaypole\\nmaypoles\\nmaypop\\nmaypops\\nmays\\nmayst\\nmayvin\\nmayvins\\nmayweed\\nmayweeds\\nmazaedia\\nmazard\\nmazards\\nmaze\\nmazed\\nmazedly\\nmazelike\\nmazer\\nmazers\\nmazes\\nmazier\\nmaziest\\nmazily\\nmaziness\\nmazinesses\\nmazing\\nmazourka\\nmazourkas\\nmazuma\\nmazumas\\nmazurka\\nmazurkas\\nmazy\\nmazzard\\nmazzards\\nmbira\\nmbiras\\nmccaffrey\\nme\\nmead\\nmeadow\\nmeadowland\\nmeadowlands\\nmeadowlark\\nmeadowlarks\\nmeadows\\nmeadowy\\nmeads\\nmeager\\nmeagerly\\nmeagerness\\nmeagernesses\\nmeagre\\nmeagrely\\nmeal\\nmealie\\nmealier\\nmealies\\nmealiest\\nmealless\\nmeals\\nmealtime\\nmealtimes\\nmealworm\\nmealworms\\nmealy\\nmealybug\\nmealybugs\\nmean\\nmeander\\nmeandered\\nmeandering\\nmeanders\\nmeaner\\nmeaners\\nmeanest\\nmeanie\\nmeanies\\nmeaning\\nmeaningful\\nmeaningfully\\nmeaningless\\nmeanings\\nmeanly\\nmeanness\\nmeannesses\\nmeans\\nmeant\\nmeantime\\nmeantimes\\nmeanwhile\\nmeanwhiles\\nmeany\\nmeasle\\nmeasled\\nmeasles\\nmeaslier\\nmeasliest\\nmeasly\\nmeasurable\\nmeasurably\\nmeasure\\nmeasured\\nmeasureless\\nmeasurement\\nmeasurements\\nmeasurer\\nmeasurers\\nmeasures\\nmeasuring\\nmeat\\nmeatal\\nmeatball\\nmeatballs\\nmeathead\\nmeatheads\\nmeatier\\nmeatiest\\nmeatily\\nmeatless\\nmeatman\\nmeatmen\\nmeats\\nmeatus\\nmeatuses\\nmeaty\\nmecca\\nmeccas\\nmechanic\\nmechanical\\nmechanically\\nmechanics\\nmechanism\\nmechanisms\\nmechanistic\\nmechanistically\\nmechanization\\nmechanizations\\nmechanize\\nmechanized\\nmechanizer\\nmechanizers\\nmechanizes\\nmechanizing\\nmeconium\\nmeconiums\\nmedaka\\nmedakas\\nmedal\\nmedaled\\nmedaling\\nmedalist\\nmedalists\\nmedalled\\nmedallic\\nmedalling\\nmedallion\\nmedallions\\nmedals\\nmeddle\\nmeddled\\nmeddler\\nmeddlers\\nmeddles\\nmeddlesome\\nmeddling\\nmedia\\nmediacies\\nmediacy\\nmediad\\nmediae\\nmediaeval\\nmedial\\nmedially\\nmedials\\nmedian\\nmedianly\\nmedians\\nmediant\\nmediants\\nmedias\\nmediastinum\\nmediate\\nmediated\\nmediates\\nmediating\\nmediation\\nmediations\\nmediator\\nmediators\\nmedic\\nmedicable\\nmedicably\\nmedicaid\\nmedicaids\\nmedical\\nmedically\\nmedicals\\nmedicare\\nmedicares\\nmedicate\\nmedicated\\nmedicates\\nmedicating\\nmedication\\nmedications\\nmedicinal\\nmedicinally\\nmedicine\\nmedicined\\nmedicines\\nmedicining\\nmedick\\nmedicks\\nmedico\\nmedicos\\nmedics\\nmedieval\\nmedievalism\\nmedievalisms\\nmedievalist\\nmedievalists\\nmedievals\\nmedii\\nmediocre\\nmediocrities\\nmediocrity\\nmeditate\\nmeditated\\nmeditates\\nmeditating\\nmeditation\\nmeditations\\nmeditative\\nmeditatively\\nmedium\\nmediums\\nmedius\\nmedlar\\nmedlars\\nmedley\\nmedleys\\nmedulla\\nmedullae\\nmedullar\\nmedullas\\nmedusa\\nmedusae\\nmedusan\\nmedusans\\nmedusas\\nmedusoid\\nmedusoids\\nmeed\\nmeeds\\nmeek\\nmeeker\\nmeekest\\nmeekly\\nmeekness\\nmeeknesses\\nmeerschaum\\nmeerschaums\\nmeet\\nmeeter\\nmeeters\\nmeeting\\nmeetinghouse\\nmeetinghouses\\nmeetings\\nmeetly\\nmeetness\\nmeetnesses\\nmeets\\nmegabar\\nmegabars\\nmegabit\\nmegabits\\nmegabuck\\nmegabucks\\nmegacycle\\nmegacycles\\nmegadyne\\nmegadynes\\nmegahertz\\nmegalith\\nmegaliths\\nmegaphone\\nmegaphones\\nmegapod\\nmegapode\\nmegapodes\\nmegass\\nmegasse\\nmegasses\\nmegaton\\nmegatons\\nmegavolt\\nmegavolts\\nmegawatt\\nmegawatts\\nmegillah\\nmegillahs\\nmegilp\\nmegilph\\nmegilphs\\nmegilps\\nmegohm\\nmegohms\\nmegrim\\nmegrims\\nmeikle\\nmeinie\\nmeinies\\nmeiny\\nmeioses\\nmeiosis\\nmeiotic\\nmel\\nmelamine\\nmelamines\\nmelancholia\\nmelancholic\\nmelancholies\\nmelancholy\\nmelange\\nmelanges\\nmelanian\\nmelanic\\nmelanics\\nmelanin\\nmelanins\\nmelanism\\nmelanisms\\nmelanist\\nmelanists\\nmelanite\\nmelanites\\nmelanize\\nmelanized\\nmelanizes\\nmelanizing\\nmelanoid\\nmelanoids\\nmelanoma\\nmelanomas\\nmelanomata\\nmelanous\\nmelatonin\\nmelba\\nmeld\\nmelded\\nmelder\\nmelders\\nmelding\\nmelds\\nmelee\\nmelees\\nmelic\\nmelilite\\nmelilites\\nmelilot\\nmelilots\\nmelinite\\nmelinites\\nmeliorate\\nmeliorated\\nmeliorates\\nmeliorating\\nmelioration\\nmeliorations\\nmeliorative\\nmelisma\\nmelismas\\nmelismata\\nmell\\nmelled\\nmellific\\nmellifluous\\nmellifluously\\nmellifluousness\\nmellifluousnesses\\nmelling\\nmellow\\nmellowed\\nmellower\\nmellowest\\nmellowing\\nmellowly\\nmellowness\\nmellownesses\\nmellows\\nmells\\nmelodeon\\nmelodeons\\nmelodia\\nmelodias\\nmelodic\\nmelodically\\nmelodies\\nmelodious\\nmelodiously\\nmelodiousness\\nmelodiousnesses\\nmelodise\\nmelodised\\nmelodises\\nmelodising\\nmelodist\\nmelodists\\nmelodize\\nmelodized\\nmelodizes\\nmelodizing\\nmelodrama\\nmelodramas\\nmelodramatic\\nmelodramatist\\nmelodramatists\\nmelody\\nmeloid\\nmeloids\\nmelon\\nmelons\\nmels\\nmelt\\nmeltable\\nmeltage\\nmeltages\\nmelted\\nmelter\\nmelters\\nmelting\\nmelton\\nmeltons\\nmelts\\nmem\\nmember\\nmembered\\nmembers\\nmembership\\nmemberships\\nmembrane\\nmembranes\\nmembranous\\nmemento\\nmementoes\\nmementos\\nmemo\\nmemoir\\nmemoirs\\nmemorabilia\\nmemorabilities\\nmemorability\\nmemorable\\nmemorableness\\nmemorablenesses\\nmemorably\\nmemoranda\\nmemorandum\\nmemorandums\\nmemorial\\nmemorialize\\nmemorialized\\nmemorializes\\nmemorializing\\nmemorials\\nmemories\\nmemorization\\nmemorizations\\nmemorize\\nmemorized\\nmemorizes\\nmemorizing\\nmemory\\nmemos\\nmems\\nmemsahib\\nmemsahibs\\nmen\\nmenace\\nmenaced\\nmenacer\\nmenacers\\nmenaces\\nmenacing\\nmenacingly\\nmenad\\nmenads\\nmenage\\nmenagerie\\nmenageries\\nmenages\\nmenarche\\nmenarches\\nmend\\nmendable\\nmendacious\\nmendaciously\\nmendacities\\nmendacity\\nmended\\nmendelson\\nmender\\nmenders\\nmendicancies\\nmendicancy\\nmendicant\\nmendicants\\nmendigo\\nmendigos\\nmending\\nmendings\\nmends\\nmenfolk\\nmenfolks\\nmenhaden\\nmenhadens\\nmenhir\\nmenhirs\\nmenial\\nmenially\\nmenials\\nmeninges\\nmeningitides\\nmeningitis\\nmeninx\\nmeniscal\\nmenisci\\nmeniscus\\nmeniscuses\\nmeno\\nmenologies\\nmenology\\nmenopausal\\nmenopause\\nmenopauses\\nmenorah\\nmenorahs\\nmensa\\nmensae\\nmensal\\nmensas\\nmensch\\nmenschen\\nmensches\\nmense\\nmensed\\nmenseful\\nmenservants\\nmenses\\nmensing\\nmenstrua\\nmenstrual\\nmenstruate\\nmenstruated\\nmenstruates\\nmenstruating\\nmenstruation\\nmenstruations\\nmensural\\nmenswear\\nmenswears\\nmenta\\nmental\\nmentalities\\nmentality\\nmentally\\nmenthene\\nmenthenes\\nmenthol\\nmentholated\\nmenthols\\nmention\\nmentioned\\nmentioning\\nmentions\\nmentor\\nmentors\\nmentum\\nmenu\\nmenus\\nmeow\\nmeowed\\nmeowing\\nmeows\\nmephitic\\nmephitis\\nmephitises\\nmercantile\\nmercapto\\nmercenaries\\nmercenarily\\nmercenariness\\nmercenarinesses\\nmercenary\\nmercer\\nmerceries\\nmercers\\nmercery\\nmerchandise\\nmerchandised\\nmerchandiser\\nmerchandisers\\nmerchandises\\nmerchandising\\nmerchant\\nmerchanted\\nmerchanting\\nmerchants\\nmercies\\nmerciful\\nmercifully\\nmerciless\\nmercilessly\\nmercurial\\nmercurially\\nmercurialness\\nmercurialnesses\\nmercuric\\nmercuries\\nmercurous\\nmercury\\nmercy\\nmere\\nmerely\\nmerengue\\nmerengues\\nmerer\\nmeres\\nmerest\\nmerge\\nmerged\\nmergence\\nmergences\\nmerger\\nmergers\\nmerges\\nmerging\\nmeridian\\nmeridians\\nmeringue\\nmeringues\\nmerino\\nmerinos\\nmerises\\nmerisis\\nmeristem\\nmeristems\\nmeristic\\nmerit\\nmerited\\nmeriting\\nmeritorious\\nmeritoriously\\nmeritoriousness\\nmeritoriousnesses\\nmerits\\nmerk\\nmerks\\nmerl\\nmerle\\nmerles\\nmerlin\\nmerlins\\nmerlon\\nmerlons\\nmerls\\nmermaid\\nmermaids\\nmerman\\nmermen\\nmeropia\\nmeropias\\nmeropic\\nmerrier\\nmerriest\\nmerrily\\nmerriment\\nmerriments\\nmerry\\nmerrymaker\\nmerrymakers\\nmerrymaking\\nmerrymakings\\nmesa\\nmesally\\nmesarch\\nmesas\\nmescal\\nmescals\\nmesdames\\nmesdemoiselles\\nmeseemed\\nmeseems\\nmesh\\nmeshed\\nmeshes\\nmeshier\\nmeshiest\\nmeshing\\nmeshwork\\nmeshworks\\nmeshy\\nmesial\\nmesially\\nmesian\\nmesic\\nmesmeric\\nmesmerism\\nmesmerisms\\nmesmerize\\nmesmerized\\nmesmerizes\\nmesmerizing\\nmesnalties\\nmesnalty\\nmesne\\nmesocarp\\nmesocarps\\nmesoderm\\nmesoderms\\nmesoglea\\nmesogleas\\nmesomere\\nmesomeres\\nmeson\\nmesonic\\nmesons\\nmesophyl\\nmesophyls\\nmesosome\\nmesosomes\\nmesotron\\nmesotrons\\nmesquit\\nmesquite\\nmesquites\\nmesquits\\nmess\\nmessage\\nmessages\\nmessan\\nmessans\\nmessed\\nmessenger\\nmessengers\\nmesses\\nmessiah\\nmessiahs\\nmessier\\nmessiest\\nmessieurs\\nmessily\\nmessing\\nmessman\\nmessmate\\nmessmates\\nmessmen\\nmessuage\\nmessuages\\nmessy\\nmestee\\nmestees\\nmesteso\\nmestesoes\\nmestesos\\nmestino\\nmestinoes\\nmestinos\\nmestiza\\nmestizas\\nmestizo\\nmestizoes\\nmestizos\\nmet\\nmeta\\nmetabolic\\nmetabolism\\nmetabolisms\\nmetabolize\\nmetabolized\\nmetabolizes\\nmetabolizing\\nmetage\\nmetages\\nmetal\\nmetaled\\nmetaling\\nmetalise\\nmetalised\\nmetalises\\nmetalising\\nmetalist\\nmetalists\\nmetalize\\nmetalized\\nmetalizes\\nmetalizing\\nmetalled\\nmetallic\\nmetalling\\nmetallurgical\\nmetallurgically\\nmetallurgies\\nmetallurgist\\nmetallurgists\\nmetallurgy\\nmetals\\nmetalware\\nmetalwares\\nmetalwork\\nmetalworker\\nmetalworkers\\nmetalworking\\nmetalworkings\\nmetalworks\\nmetamer\\nmetamere\\nmetameres\\nmetamers\\nmetamorphose\\nmetamorphosed\\nmetamorphoses\\nmetamorphosing\\nmetamorphosis\\nmetaphor\\nmetaphorical\\nmetaphors\\nmetaphysical\\nmetaphysician\\nmetaphysicians\\nmetaphysics\\nmetastases\\nmetastatic\\nmetate\\nmetates\\nmetazoa\\nmetazoal\\nmetazoan\\nmetazoans\\nmetazoic\\nmetazoon\\nmete\\nmeted\\nmeteor\\nmeteoric\\nmeteorically\\nmeteorite\\nmeteorites\\nmeteoritic\\nmeteorological\\nmeteorologies\\nmeteorologist\\nmeteorologists\\nmeteorology\\nmeteors\\nmetepa\\nmetepas\\nmeter\\nmeterage\\nmeterages\\nmetered\\nmetering\\nmeters\\nmetes\\nmethadon\\nmethadone\\nmethadones\\nmethadons\\nmethane\\nmethanes\\nmethanol\\nmethanols\\nmethinks\\nmethod\\nmethodic\\nmethodical\\nmethodically\\nmethodicalness\\nmethodicalnesses\\nmethodological\\nmethodologies\\nmethodology\\nmethods\\nmethotrexate\\nmethought\\nmethoxy\\nmethoxyl\\nmethyl\\nmethylal\\nmethylals\\nmethylic\\nmethyls\\nmeticulous\\nmeticulously\\nmeticulousness\\nmeticulousnesses\\nmetier\\nmetiers\\nmeting\\nmetis\\nmetisse\\nmetisses\\nmetonym\\nmetonymies\\nmetonyms\\nmetonymy\\nmetopae\\nmetope\\nmetopes\\nmetopic\\nmetopon\\nmetopons\\nmetre\\nmetred\\nmetres\\nmetric\\nmetrical\\nmetrically\\nmetrication\\nmetrications\\nmetrics\\nmetrified\\nmetrifies\\nmetrify\\nmetrifying\\nmetring\\nmetrist\\nmetrists\\nmetritis\\nmetritises\\nmetro\\nmetronome\\nmetronomes\\nmetropolis\\nmetropolises\\nmetropolitan\\nmetros\\nmettle\\nmettled\\nmettles\\nmettlesome\\nmetump\\nmetumps\\nmeuniere\\nmew\\nmewed\\nmewing\\nmewl\\nmewled\\nmewler\\nmewlers\\nmewling\\nmewls\\nmews\\nmezcal\\nmezcals\\nmezereon\\nmezereons\\nmezereum\\nmezereums\\nmezquit\\nmezquite\\nmezquites\\nmezquits\\nmezuza\\nmezuzah\\nmezuzahs\\nmezuzas\\nmezuzot\\nmezuzoth\\nmezzanine\\nmezzanines\\nmezzo\\nmezzos\\nmho\\nmhos\\nmi\\nmiaou\\nmiaoued\\nmiaouing\\nmiaous\\nmiaow\\nmiaowed\\nmiaowing\\nmiaows\\nmiasm\\nmiasma\\nmiasmal\\nmiasmas\\nmiasmata\\nmiasmic\\nmiasms\\nmiaul\\nmiauled\\nmiauling\\nmiauls\\nmib\\nmibs\\nmica\\nmicas\\nmicawber\\nmicawbers\\nmice\\nmicell\\nmicella\\nmicellae\\nmicellar\\nmicelle\\nmicelles\\nmicells\\nmick\\nmickey\\nmickeys\\nmickle\\nmickler\\nmickles\\nmicklest\\nmicks\\nmicra\\nmicrified\\nmicrifies\\nmicrify\\nmicrifying\\nmicro\\nmicrobar\\nmicrobars\\nmicrobe\\nmicrobes\\nmicrobial\\nmicrobic\\nmicrobiological\\nmicrobiologies\\nmicrobiologist\\nmicrobiologists\\nmicrobiology\\nmicrobus\\nmicrobuses\\nmicrobusses\\nmicrocomputer\\nmicrocomputers\\nmicrocosm\\nmicrofilm\\nmicrofilmed\\nmicrofilming\\nmicrofilms\\nmicrohm\\nmicrohms\\nmicroluces\\nmicrolux\\nmicroluxes\\nmicrometer\\nmicrometers\\nmicromho\\nmicromhos\\nmicrominiature\\nmicrominiatures\\nmicrominiaturization\\nmicrominiaturizations\\nmicrominiaturized\\nmicron\\nmicrons\\nmicroorganism\\nmicroorganisms\\nmicrophone\\nmicrophones\\nmicroscope\\nmicroscopes\\nmicroscopic\\nmicroscopical\\nmicroscopically\\nmicroscopies\\nmicroscopy\\nmicrowave\\nmicrowaves\\nmicrurgies\\nmicrurgy\\nmid\\nmidair\\nmidairs\\nmidbrain\\nmidbrains\\nmidday\\nmiddays\\nmidden\\nmiddens\\nmiddies\\nmiddle\\nmiddled\\nmiddleman\\nmiddlemen\\nmiddler\\nmiddlers\\nmiddles\\nmiddlesex\\nmiddling\\nmiddlings\\nmiddy\\nmidfield\\nmidfields\\nmidge\\nmidges\\nmidget\\nmidgets\\nmidgut\\nmidguts\\nmidi\\nmidiron\\nmidirons\\nmidis\\nmidland\\nmidlands\\nmidleg\\nmidlegs\\nmidline\\nmidlines\\nmidmonth\\nmidmonths\\nmidmost\\nmidmosts\\nmidnight\\nmidnights\\nmidnoon\\nmidnoons\\nmidpoint\\nmidpoints\\nmidrange\\nmidranges\\nmidrash\\nmidrashim\\nmidrib\\nmidribs\\nmidriff\\nmidriffs\\nmids\\nmidship\\nmidshipman\\nmidshipmen\\nmidships\\nmidspace\\nmidspaces\\nmidst\\nmidstories\\nmidstory\\nmidstream\\nmidstreams\\nmidsts\\nmidsummer\\nmidsummers\\nmidterm\\nmidterms\\nmidtown\\nmidtowns\\nmidwatch\\nmidwatches\\nmidway\\nmidways\\nmidweek\\nmidweeks\\nmidwife\\nmidwifed\\nmidwiferies\\nmidwifery\\nmidwifes\\nmidwifing\\nmidwinter\\nmidwinters\\nmidwived\\nmidwives\\nmidwiving\\nmidyear\\nmidyears\\nmien\\nmiens\\nmiff\\nmiffed\\nmiffier\\nmiffiest\\nmiffing\\nmiffs\\nmiffy\\nmig\\nmigg\\nmiggle\\nmiggles\\nmiggs\\nmight\\nmightier\\nmightiest\\nmightily\\nmights\\nmighty\\nmignon\\nmignonne\\nmignons\\nmigraine\\nmigraines\\nmigrant\\nmigrants\\nmigratation\\nmigratational\\nmigratations\\nmigrate\\nmigrated\\nmigrates\\nmigrating\\nmigrator\\nmigrators\\nmigratory\\nmigs\\nmijnheer\\nmijnheers\\nmikado\\nmikados\\nmike\\nmikes\\nmikra\\nmikron\\nmikrons\\nmikvah\\nmikvahs\\nmikveh\\nmikvehs\\nmikvoth\\nmil\\nmiladi\\nmiladies\\nmiladis\\nmilady\\nmilage\\nmilages\\nmilch\\nmilchig\\nmild\\nmilden\\nmildened\\nmildening\\nmildens\\nmilder\\nmildest\\nmildew\\nmildewed\\nmildewing\\nmildews\\nmildewy\\nmildly\\nmildness\\nmildnesses\\nmile\\nmileage\\nmileages\\nmilepost\\nmileposts\\nmiler\\nmilers\\nmiles\\nmilesimo\\nmilesimos\\nmilestone\\nmilestones\\nmilfoil\\nmilfoils\\nmilia\\nmiliaria\\nmiliarias\\nmiliary\\nmilieu\\nmilieus\\nmilieux\\nmilitancies\\nmilitancy\\nmilitant\\nmilitantly\\nmilitants\\nmilitaries\\nmilitarily\\nmilitarism\\nmilitarisms\\nmilitarist\\nmilitaristic\\nmilitarists\\nmilitary\\nmilitate\\nmilitated\\nmilitates\\nmilitating\\nmilitia\\nmilitiaman\\nmilitiamen\\nmilitias\\nmilium\\nmilk\\nmilked\\nmilker\\nmilkers\\nmilkfish\\nmilkfishes\\nmilkier\\nmilkiest\\nmilkily\\nmilkiness\\nmilkinesses\\nmilking\\nmilkmaid\\nmilkmaids\\nmilkman\\nmilkmen\\nmilks\\nmilksop\\nmilksops\\nmilkweed\\nmilkweeds\\nmilkwood\\nmilkwoods\\nmilkwort\\nmilkworts\\nmilky\\nmill\\nmillable\\nmillage\\nmillages\\nmilldam\\nmilldams\\nmille\\nmilled\\nmillennia\\nmillennium\\nmillenniums\\nmilleped\\nmillepeds\\nmiller\\nmillers\\nmilles\\nmillet\\nmillets\\nmilliard\\nmilliards\\nmilliare\\nmilliares\\nmilliary\\nmillibar\\nmillibars\\nmillieme\\nmilliemes\\nmillier\\nmilliers\\nmilligal\\nmilligals\\nmilligram\\nmilligrams\\nmilliliter\\nmilliliters\\nmilliluces\\nmillilux\\nmilliluxes\\nmillime\\nmillimes\\nmillimeter\\nmillimeters\\nmillimho\\nmillimhos\\nmilline\\nmilliner\\nmilliners\\nmillines\\nmilling\\nmillings\\nmilliohm\\nmilliohms\\nmillion\\nmillionaire\\nmillionaires\\nmillions\\nmillionth\\nmillionths\\nmilliped\\nmillipede\\nmillipedes\\nmillipeds\\nmillirem\\nmillirems\\nmillpond\\nmillponds\\nmillrace\\nmillraces\\nmillrun\\nmillruns\\nmills\\nmillstone\\nmillstones\\nmillwork\\nmillworks\\nmilo\\nmilord\\nmilords\\nmilos\\nmilpa\\nmilpas\\nmilreis\\nmils\\nmilt\\nmilted\\nmilter\\nmilters\\nmiltier\\nmiltiest\\nmilting\\nmilts\\nmilty\\nmim\\nmimbar\\nmimbars\\nmime\\nmimed\\nmimeograph\\nmimeographed\\nmimeographing\\nmimeographs\\nmimer\\nmimers\\nmimes\\nmimesis\\nmimesises\\nmimetic\\nmimetite\\nmimetites\\nmimic\\nmimical\\nmimicked\\nmimicker\\nmimickers\\nmimicking\\nmimicries\\nmimicry\\nmimics\\nmiming\\nmimosa\\nmimosas\\nmina\\nminable\\nminacities\\nminacity\\nminae\\nminaret\\nminarets\\nminas\\nminatory\\nmince\\nminced\\nmincer\\nmincers\\nminces\\nmincier\\nminciest\\nmincing\\nmincy\\nmind\\nminded\\nminder\\nminders\\nmindful\\nminding\\nmindless\\nmindlessly\\nmindlessness\\nmindlessnesses\\nminds\\nmine\\nmineable\\nmined\\nminer\\nmineral\\nmineralize\\nmineralized\\nmineralizes\\nmineralizing\\nminerals\\nminerological\\nminerologies\\nminerologist\\nminerologists\\nminerology\\nminers\\nmines\\nmingier\\nmingiest\\nmingle\\nmingled\\nmingler\\nminglers\\nmingles\\nmingling\\nmingy\\nmini\\nminiature\\nminiatures\\nminiaturist\\nminiaturists\\nminiaturize\\nminiaturized\\nminiaturizes\\nminiaturizing\\nminibike\\nminibikes\\nminibrain\\nminibrains\\nminibudget\\nminibudgets\\nminibus\\nminibuses\\nminibusses\\nminicab\\nminicabs\\nminicalculator\\nminicalculators\\nminicamera\\nminicameras\\nminicar\\nminicars\\nminiclock\\nminiclocks\\nminicomponent\\nminicomponents\\nminicomputer\\nminicomputers\\nminiconvention\\nminiconventions\\nminicourse\\nminicourses\\nminicrisis\\nminicrisises\\nminidrama\\nminidramas\\nminidress\\nminidresses\\nminifestival\\nminifestivals\\nminified\\nminifies\\nminify\\nminifying\\nminigarden\\nminigardens\\nminigrant\\nminigrants\\nminigroup\\nminigroups\\nminiguide\\nminiguides\\nminihospital\\nminihospitals\\nminikin\\nminikins\\nminileague\\nminileagues\\nminilecture\\nminilectures\\nminim\\nminima\\nminimal\\nminimally\\nminimals\\nminimarket\\nminimarkets\\nminimax\\nminimaxes\\nminimiracle\\nminimiracles\\nminimise\\nminimised\\nminimises\\nminimising\\nminimization\\nminimize\\nminimized\\nminimizes\\nminimizing\\nminims\\nminimum\\nminimums\\nminimuseum\\nminimuseums\\nminination\\nmininations\\nmininetwork\\nmininetworks\\nmining\\nminings\\nmininovel\\nmininovels\\nminion\\nminions\\nminipanic\\nminipanics\\nminiprice\\nminiprices\\nminiproblem\\nminiproblems\\nminirebellion\\nminirebellions\\nminirecession\\nminirecessions\\nminirobot\\nminirobots\\nminis\\nminiscandal\\nminiscandals\\nminischool\\nminischools\\nminiscule\\nminisedan\\nminisedans\\nminiseries\\nminiserieses\\nminish\\nminished\\nminishes\\nminishing\\nminiskirt\\nminiskirts\\nminislump\\nminislumps\\nminisocieties\\nminisociety\\nministate\\nministates\\nminister\\nministered\\nministerial\\nministering\\nministers\\nministration\\nministrations\\nministries\\nministrike\\nministrikes\\nministry\\nminisubmarine\\nminisubmarines\\nminisurvey\\nminisurveys\\nminisystem\\nminisystems\\nminiterritories\\nminiterritory\\nminitheater\\nminitheaters\\nminitrain\\nminitrains\\nminium\\nminiums\\nminivacation\\nminivacations\\nminiver\\nminivers\\nminiversion\\nminiversions\\nmink\\nminks\\nminnies\\nminnow\\nminnows\\nminny\\nminor\\nminorca\\nminorcas\\nminored\\nminoring\\nminorities\\nminority\\nminors\\nminster\\nminsters\\nminstrel\\nminstrels\\nminstrelsies\\nminstrelsy\\nmint\\nmintage\\nmintages\\nminted\\nminter\\nminters\\nmintier\\nmintiest\\nminting\\nmints\\nminty\\nminuend\\nminuends\\nminuet\\nminuets\\nminus\\nminuscule\\nminuses\\nminute\\nminuted\\nminutely\\nminuteness\\nminutenesses\\nminuter\\nminutes\\nminutest\\nminutia\\nminutiae\\nminutial\\nminuting\\nminx\\nminxes\\nminxish\\nminyan\\nminyanim\\nminyans\\nmioses\\nmiosis\\nmiotic\\nmiotics\\nmiquelet\\nmiquelets\\nmir\\nmiracle\\nmiracles\\nmiraculous\\nmiraculously\\nmirador\\nmiradors\\nmirage\\nmirages\\nmire\\nmired\\nmires\\nmirex\\nmirexes\\nmiri\\nmirier\\nmiriest\\nmiriness\\nmirinesses\\nmiring\\nmirk\\nmirker\\nmirkest\\nmirkier\\nmirkiest\\nmirkily\\nmirks\\nmirky\\nmirror\\nmirrored\\nmirroring\\nmirrors\\nmirs\\nmirth\\nmirthful\\nmirthfully\\nmirthfulness\\nmirthfulnesses\\nmirthless\\nmirths\\nmiry\\nmirza\\nmirzas\\nmis\\nmisact\\nmisacted\\nmisacting\\nmisacts\\nmisadapt\\nmisadapted\\nmisadapting\\nmisadapts\\nmisadd\\nmisadded\\nmisadding\\nmisadds\\nmisagent\\nmisagents\\nmisaim\\nmisaimed\\nmisaiming\\nmisaims\\nmisallied\\nmisallies\\nmisally\\nmisallying\\nmisalter\\nmisaltered\\nmisaltering\\nmisalters\\nmisanthrope\\nmisanthropes\\nmisanthropic\\nmisanthropies\\nmisanthropy\\nmisapplied\\nmisapplies\\nmisapply\\nmisapplying\\nmisapprehend\\nmisapprehended\\nmisapprehending\\nmisapprehends\\nmisapprehension\\nmisapprehensions\\nmisappropriate\\nmisappropriated\\nmisappropriates\\nmisappropriating\\nmisappropriation\\nmisappropriations\\nmisassay\\nmisassayed\\nmisassaying\\nmisassays\\nmisate\\nmisatone\\nmisatoned\\nmisatones\\nmisatoning\\nmisaver\\nmisaverred\\nmisaverring\\nmisavers\\nmisaward\\nmisawarded\\nmisawarding\\nmisawards\\nmisbegan\\nmisbegin\\nmisbeginning\\nmisbegins\\nmisbegot\\nmisbegun\\nmisbehave\\nmisbehaved\\nmisbehaver\\nmisbehavers\\nmisbehaves\\nmisbehaving\\nmisbehavior\\nmisbehaviors\\nmisbias\\nmisbiased\\nmisbiases\\nmisbiasing\\nmisbiassed\\nmisbiasses\\nmisbiassing\\nmisbill\\nmisbilled\\nmisbilling\\nmisbills\\nmisbind\\nmisbinding\\nmisbinds\\nmisbound\\nmisbrand\\nmisbranded\\nmisbranding\\nmisbrands\\nmisbuild\\nmisbuilding\\nmisbuilds\\nmisbuilt\\nmiscalculate\\nmiscalculated\\nmiscalculates\\nmiscalculating\\nmiscalculation\\nmiscalculations\\nmiscall\\nmiscalled\\nmiscalling\\nmiscalls\\nmiscarriage\\nmiscarriages\\nmiscarried\\nmiscarries\\nmiscarry\\nmiscarrying\\nmiscast\\nmiscasting\\nmiscasts\\nmiscegenation\\nmiscegenations\\nmiscellaneous\\nmiscellaneously\\nmiscellaneousness\\nmiscellaneousnesses\\nmiscellanies\\nmiscellany\\nmischance\\nmischances\\nmischief\\nmischiefs\\nmischievous\\nmischievously\\nmischievousness\\nmischievousnesses\\nmiscible\\nmiscite\\nmiscited\\nmiscites\\nmisciting\\nmisclaim\\nmisclaimed\\nmisclaiming\\nmisclaims\\nmisclass\\nmisclassed\\nmisclasses\\nmisclassing\\nmiscoin\\nmiscoined\\nmiscoining\\nmiscoins\\nmiscolor\\nmiscolored\\nmiscoloring\\nmiscolors\\nmisconceive\\nmisconceived\\nmisconceives\\nmisconceiving\\nmisconception\\nmisconceptions\\nmisconduct\\nmisconducts\\nmisconstruction\\nmisconstructions\\nmisconstrue\\nmisconstrued\\nmisconstrues\\nmisconstruing\\nmiscook\\nmiscooked\\nmiscooking\\nmiscooks\\nmiscopied\\nmiscopies\\nmiscopy\\nmiscopying\\nmiscount\\nmiscounted\\nmiscounting\\nmiscounts\\nmiscreant\\nmiscreants\\nmiscue\\nmiscued\\nmiscues\\nmiscuing\\nmiscut\\nmiscuts\\nmiscutting\\nmisdate\\nmisdated\\nmisdates\\nmisdating\\nmisdeal\\nmisdealing\\nmisdeals\\nmisdealt\\nmisdeed\\nmisdeeds\\nmisdeem\\nmisdeemed\\nmisdeeming\\nmisdeems\\nmisdemeanor\\nmisdemeanors\\nmisdid\\nmisdo\\nmisdoer\\nmisdoers\\nmisdoes\\nmisdoing\\nmisdoings\\nmisdone\\nmisdoubt\\nmisdoubted\\nmisdoubting\\nmisdoubts\\nmisdraw\\nmisdrawing\\nmisdrawn\\nmisdraws\\nmisdrew\\nmisdrive\\nmisdriven\\nmisdrives\\nmisdriving\\nmisdrove\\nmise\\nmisease\\nmiseases\\nmiseat\\nmiseating\\nmiseats\\nmisedit\\nmisedited\\nmisediting\\nmisedits\\nmisenrol\\nmisenrolled\\nmisenrolling\\nmisenrols\\nmisenter\\nmisentered\\nmisentering\\nmisenters\\nmisentries\\nmisentry\\nmiser\\nmiserable\\nmiserableness\\nmiserablenesses\\nmiserably\\nmiserere\\nmisereres\\nmiseries\\nmiserliness\\nmiserlinesses\\nmiserly\\nmisers\\nmisery\\nmises\\nmisevent\\nmisevents\\nmisfaith\\nmisfaiths\\nmisfield\\nmisfielded\\nmisfielding\\nmisfields\\nmisfile\\nmisfiled\\nmisfiles\\nmisfiling\\nmisfire\\nmisfired\\nmisfires\\nmisfiring\\nmisfit\\nmisfits\\nmisfitted\\nmisfitting\\nmisform\\nmisformed\\nmisforming\\nmisforms\\nmisfortune\\nmisfortunes\\nmisframe\\nmisframed\\nmisframes\\nmisframing\\nmisgauge\\nmisgauged\\nmisgauges\\nmisgauging\\nmisgave\\nmisgive\\nmisgiven\\nmisgives\\nmisgiving\\nmisgivings\\nmisgraft\\nmisgrafted\\nmisgrafting\\nmisgrafts\\nmisgrew\\nmisgrow\\nmisgrowing\\nmisgrown\\nmisgrows\\nmisguess\\nmisguessed\\nmisguesses\\nmisguessing\\nmisguide\\nmisguided\\nmisguides\\nmisguiding\\nmishap\\nmishaps\\nmishear\\nmisheard\\nmishearing\\nmishears\\nmishit\\nmishits\\nmishitting\\nmishmash\\nmishmashes\\nmishmosh\\nmishmoshes\\nmisinfer\\nmisinferred\\nmisinferring\\nmisinfers\\nmisinform\\nmisinformation\\nmisinformations\\nmisinforms\\nmisinter\\nmisinterpret\\nmisinterpretation\\nmisinterpretations\\nmisinterpreted\\nmisinterpreting\\nmisinterprets\\nmisinterred\\nmisinterring\\nmisinters\\nmisjoin\\nmisjoined\\nmisjoining\\nmisjoins\\nmisjudge\\nmisjudged\\nmisjudges\\nmisjudging\\nmisjudgment\\nmisjudgments\\nmiskal\\nmiskals\\nmiskeep\\nmiskeeping\\nmiskeeps\\nmiskept\\nmisknew\\nmisknow\\nmisknowing\\nmisknown\\nmisknows\\nmislabel\\nmislabeled\\nmislabeling\\nmislabelled\\nmislabelling\\nmislabels\\nmislabor\\nmislabored\\nmislaboring\\nmislabors\\nmislaid\\nmislain\\nmislay\\nmislayer\\nmislayers\\nmislaying\\nmislays\\nmislead\\nmisleading\\nmisleadingly\\nmisleads\\nmislearn\\nmislearned\\nmislearning\\nmislearns\\nmislearnt\\nmisled\\nmislie\\nmislies\\nmislight\\nmislighted\\nmislighting\\nmislights\\nmislike\\nmisliked\\nmisliker\\nmislikers\\nmislikes\\nmisliking\\nmislit\\nmislive\\nmislived\\nmislives\\nmisliving\\nmislodge\\nmislodged\\nmislodges\\nmislodging\\nmislying\\nmismanage\\nmismanaged\\nmismanagement\\nmismanagements\\nmismanages\\nmismanaging\\nmismark\\nmismarked\\nmismarking\\nmismarks\\nmismatch\\nmismatched\\nmismatches\\nmismatching\\nmismate\\nmismated\\nmismates\\nmismating\\nmismeet\\nmismeeting\\nmismeets\\nmismet\\nmismove\\nmismoved\\nmismoves\\nmismoving\\nmisname\\nmisnamed\\nmisnames\\nmisnaming\\nmisnomer\\nmisnomers\\nmiso\\nmisogamies\\nmisogamy\\nmisogynies\\nmisogynist\\nmisogynists\\nmisogyny\\nmisologies\\nmisology\\nmisos\\nmispage\\nmispaged\\nmispages\\nmispaging\\nmispaint\\nmispainted\\nmispainting\\nmispaints\\nmisparse\\nmisparsed\\nmisparses\\nmisparsing\\nmispart\\nmisparted\\nmisparting\\nmisparts\\nmispatch\\nmispatched\\nmispatches\\nmispatching\\nmispen\\nmispenned\\nmispenning\\nmispens\\nmisplace\\nmisplaced\\nmisplaces\\nmisplacing\\nmisplant\\nmisplanted\\nmisplanting\\nmisplants\\nmisplay\\nmisplayed\\nmisplaying\\nmisplays\\nmisplead\\nmispleaded\\nmispleading\\nmispleads\\nmispled\\nmispoint\\nmispointed\\nmispointing\\nmispoints\\nmispoise\\nmispoised\\nmispoises\\nmispoising\\nmisprint\\nmisprinted\\nmisprinting\\nmisprints\\nmisprize\\nmisprized\\nmisprizes\\nmisprizing\\nmispronounce\\nmispronounced\\nmispronounces\\nmispronouncing\\nmispronunciation\\nmispronunciations\\nmisquotation\\nmisquotations\\nmisquote\\nmisquoted\\nmisquotes\\nmisquoting\\nmisraise\\nmisraised\\nmisraises\\nmisraising\\nmisrate\\nmisrated\\nmisrates\\nmisrating\\nmisread\\nmisreading\\nmisreads\\nmisrefer\\nmisreferred\\nmisreferring\\nmisrefers\\nmisrelied\\nmisrelies\\nmisrely\\nmisrelying\\nmisrepresent\\nmisrepresentation\\nmisrepresentations\\nmisrepresented\\nmisrepresenting\\nmisrepresents\\nmisrule\\nmisruled\\nmisrules\\nmisruling\\nmiss\\nmissaid\\nmissal\\nmissals\\nmissay\\nmissaying\\nmissays\\nmisseat\\nmisseated\\nmisseating\\nmisseats\\nmissed\\nmissel\\nmissels\\nmissend\\nmissending\\nmissends\\nmissense\\nmissenses\\nmissent\\nmisses\\nmisshape\\nmisshaped\\nmisshapen\\nmisshapes\\nmisshaping\\nmisshod\\nmissies\\nmissile\\nmissiles\\nmissilries\\nmissilry\\nmissing\\nmission\\nmissionaries\\nmissionary\\nmissioned\\nmissioning\\nmissions\\nmissis\\nmissises\\nmissive\\nmissives\\nmissort\\nmissorted\\nmissorting\\nmissorts\\nmissound\\nmissounded\\nmissounding\\nmissounds\\nmissout\\nmissouts\\nmisspace\\nmisspaced\\nmisspaces\\nmisspacing\\nmisspeak\\nmisspeaking\\nmisspeaks\\nmisspell\\nmisspelled\\nmisspelling\\nmisspellings\\nmisspells\\nmisspelt\\nmisspend\\nmisspending\\nmisspends\\nmisspent\\nmisspoke\\nmisspoken\\nmisstart\\nmisstarted\\nmisstarting\\nmisstarts\\nmisstate\\nmisstated\\nmisstatement\\nmisstatements\\nmisstates\\nmisstating\\nmissteer\\nmissteered\\nmissteering\\nmissteers\\nmisstep\\nmissteps\\nmisstop\\nmisstopped\\nmisstopping\\nmisstops\\nmisstyle\\nmisstyled\\nmisstyles\\nmisstyling\\nmissuit\\nmissuited\\nmissuiting\\nmissuits\\nmissus\\nmissuses\\nmissy\\nmist\\nmistake\\nmistaken\\nmistakenly\\nmistaker\\nmistakers\\nmistakes\\nmistaking\\nmistaught\\nmistbow\\nmistbows\\nmisteach\\nmisteaches\\nmisteaching\\nmisted\\nmistend\\nmistended\\nmistending\\nmistends\\nmister\\nmisterm\\nmistermed\\nmisterming\\nmisterms\\nmisters\\nmisteuk\\nmisthink\\nmisthinking\\nmisthinks\\nmisthought\\nmisthrew\\nmisthrow\\nmisthrowing\\nmisthrown\\nmisthrows\\nmistier\\nmistiest\\nmistily\\nmistime\\nmistimed\\nmistimes\\nmistiming\\nmisting\\nmistitle\\nmistitled\\nmistitles\\nmistitling\\nmistletoe\\nmistook\\nmistouch\\nmistouched\\nmistouches\\nmistouching\\nmistrace\\nmistraced\\nmistraces\\nmistracing\\nmistral\\nmistrals\\nmistreat\\nmistreated\\nmistreating\\nmistreatment\\nmistreatments\\nmistreats\\nmistress\\nmistresses\\nmistrial\\nmistrials\\nmistrust\\nmistrusted\\nmistrustful\\nmistrustfully\\nmistrustfulness\\nmistrustfulnesses\\nmistrusting\\nmistrusts\\nmistryst\\nmistrysted\\nmistrysting\\nmistrysts\\nmists\\nmistune\\nmistuned\\nmistunes\\nmistuning\\nmistutor\\nmistutored\\nmistutoring\\nmistutors\\nmisty\\nmistype\\nmistyped\\nmistypes\\nmistyping\\nmisunderstand\\nmisunderstanded\\nmisunderstanding\\nmisunderstandings\\nmisunderstands\\nmisunion\\nmisunions\\nmisusage\\nmisusages\\nmisuse\\nmisused\\nmisuser\\nmisusers\\nmisuses\\nmisusing\\nmisvalue\\nmisvalued\\nmisvalues\\nmisvaluing\\nmisword\\nmisworded\\nmiswording\\nmiswords\\nmiswrit\\nmiswrite\\nmiswrites\\nmiswriting\\nmiswritten\\nmiswrote\\nmisyoke\\nmisyoked\\nmisyokes\\nmisyoking\\nmite\\nmiter\\nmitered\\nmiterer\\nmiterers\\nmitering\\nmiters\\nmites\\nmither\\nmithers\\nmiticide\\nmiticides\\nmitier\\nmitiest\\nmitigate\\nmitigated\\nmitigates\\nmitigating\\nmitigation\\nmitigations\\nmitigative\\nmitigator\\nmitigators\\nmitigatory\\nmitis\\nmitises\\nmitogen\\nmitogens\\nmitoses\\nmitosis\\nmitotic\\nmitral\\nmitre\\nmitred\\nmitres\\nmitring\\nmitsvah\\nmitsvahs\\nmitsvoth\\nmitt\\nmitten\\nmittens\\nmittimus\\nmittimuses\\nmitts\\nmity\\nmitzvah\\nmitzvahs\\nmitzvoth\\nmix\\nmixable\\nmixed\\nmixer\\nmixers\\nmixes\\nmixible\\nmixing\\nmixologies\\nmixology\\nmixt\\nmixture\\nmixtures\\nmixup\\nmixups\\nmizen\\nmizens\\nmizzen\\nmizzens\\nmizzle\\nmizzled\\nmizzles\\nmizzling\\nmizzly\\nmnemonic\\nmnemonics\\nmoa\\nmoan\\nmoaned\\nmoanful\\nmoaning\\nmoans\\nmoas\\nmoat\\nmoated\\nmoating\\nmoatlike\\nmoats\\nmob\\nmobbed\\nmobber\\nmobbers\\nmobbing\\nmobbish\\nmobcap\\nmobcaps\\nmobile\\nmobiles\\nmobilise\\nmobilised\\nmobilises\\nmobilising\\nmobilities\\nmobility\\nmobilization\\nmobilizations\\nmobilize\\nmobilized\\nmobilizer\\nmobilizers\\nmobilizes\\nmobilizing\\nmobocrat\\nmobocrats\\nmobs\\nmobster\\nmobsters\\nmoccasin\\nmoccasins\\nmocha\\nmochas\\nmochila\\nmochilas\\nmock\\nmockable\\nmocked\\nmocker\\nmockeries\\nmockers\\nmockery\\nmocking\\nmockingbird\\nmockingbirds\\nmockingly\\nmocks\\nmockup\\nmockups\\nmod\\nmodal\\nmodalities\\nmodality\\nmodally\\nmode\\nmodel\\nmodeled\\nmodeler\\nmodelers\\nmodeling\\nmodelings\\nmodelled\\nmodeller\\nmodellers\\nmodelling\\nmodels\\nmoderate\\nmoderated\\nmoderately\\nmoderateness\\nmoderatenesses\\nmoderates\\nmoderating\\nmoderation\\nmoderations\\nmoderato\\nmoderator\\nmoderators\\nmoderatos\\nmodern\\nmoderner\\nmodernest\\nmodernities\\nmodernity\\nmodernization\\nmodernizations\\nmodernize\\nmodernized\\nmodernizer\\nmodernizers\\nmodernizes\\nmodernizing\\nmodernly\\nmodernness\\nmodernnesses\\nmoderns\\nmodes\\nmodest\\nmodester\\nmodestest\\nmodesties\\nmodestly\\nmodesty\\nmodi\\nmodica\\nmodicum\\nmodicums\\nmodification\\nmodifications\\nmodified\\nmodifier\\nmodifiers\\nmodifies\\nmodify\\nmodifying\\nmodioli\\nmodiolus\\nmodish\\nmodishly\\nmodiste\\nmodistes\\nmods\\nmodular\\nmodularities\\nmodularity\\nmodularized\\nmodulate\\nmodulated\\nmodulates\\nmodulating\\nmodulation\\nmodulations\\nmodulator\\nmodulators\\nmodulatory\\nmodule\\nmodules\\nmoduli\\nmodulo\\nmodulus\\nmodus\\nmofette\\nmofettes\\nmoffette\\nmoffettes\\nmog\\nmogged\\nmogging\\nmogs\\nmogul\\nmoguls\\nmohair\\nmohairs\\nmohalim\\nmohel\\nmohels\\nmohur\\nmohurs\\nmoidore\\nmoidores\\nmoieties\\nmoiety\\nmoil\\nmoiled\\nmoiler\\nmoilers\\nmoiling\\nmoils\\nmoira\\nmoirai\\nmoire\\nmoires\\nmoist\\nmoisten\\nmoistened\\nmoistener\\nmoisteners\\nmoistening\\nmoistens\\nmoister\\nmoistest\\nmoistful\\nmoistly\\nmoistness\\nmoistnesses\\nmoisture\\nmoistures\\nmojarra\\nmojarras\\nmoke\\nmokes\\nmol\\nmola\\nmolal\\nmolalities\\nmolality\\nmolar\\nmolarities\\nmolarity\\nmolars\\nmolas\\nmolasses\\nmolasseses\\nmold\\nmoldable\\nmolded\\nmolder\\nmoldered\\nmoldering\\nmolders\\nmoldier\\nmoldiest\\nmoldiness\\nmoldinesses\\nmolding\\nmoldings\\nmolds\\nmoldwarp\\nmoldwarps\\nmoldy\\nmole\\nmolecular\\nmolecule\\nmolecules\\nmolehill\\nmolehills\\nmoles\\nmoleskin\\nmoleskins\\nmolest\\nmolestation\\nmolestations\\nmolested\\nmolester\\nmolesters\\nmolesting\\nmolests\\nmolies\\nmoline\\nmoll\\nmollah\\nmollahs\\nmollie\\nmollies\\nmollification\\nmollifications\\nmollified\\nmollifies\\nmollify\\nmollifying\\nmolls\\nmollusc\\nmolluscan\\nmolluscs\\nmollusk\\nmollusks\\nmolly\\nmollycoddle\\nmollycoddled\\nmollycoddles\\nmollycoddling\\nmoloch\\nmolochs\\nmols\\nmolt\\nmolted\\nmolten\\nmoltenly\\nmolter\\nmolters\\nmolting\\nmolto\\nmolts\\nmoly\\nmolybdic\\nmolys\\nmom\\nmome\\nmoment\\nmomenta\\nmomentarily\\nmomentary\\nmomently\\nmomento\\nmomentoes\\nmomentos\\nmomentous\\nmomentously\\nmomentousment\\nmomentousments\\nmomentousness\\nmomentousnesses\\nmoments\\nmomentum\\nmomentums\\nmomes\\nmomi\\nmomism\\nmomisms\\nmomma\\nmommas\\nmommies\\nmommy\\nmoms\\nmomus\\nmomuses\\nmon\\nmonachal\\nmonacid\\nmonacids\\nmonad\\nmonadal\\nmonades\\nmonadic\\nmonadism\\nmonadisms\\nmonads\\nmonandries\\nmonandry\\nmonarch\\nmonarchic\\nmonarchical\\nmonarchies\\nmonarchs\\nmonarchy\\nmonarda\\nmonardas\\nmonas\\nmonasterial\\nmonasteries\\nmonastery\\nmonastic\\nmonastically\\nmonasticism\\nmonasticisms\\nmonastics\\nmonaural\\nmonaxial\\nmonazite\\nmonazites\\nmonde\\nmondes\\nmondo\\nmondos\\nmonecian\\nmonetary\\nmonetise\\nmonetised\\nmonetises\\nmonetising\\nmonetize\\nmonetized\\nmonetizes\\nmonetizing\\nmoney\\nmoneybag\\nmoneybags\\nmoneyed\\nmoneyer\\nmoneyers\\nmoneylender\\nmoneylenders\\nmoneys\\nmongeese\\nmonger\\nmongered\\nmongering\\nmongers\\nmongo\\nmongoe\\nmongoes\\nmongol\\nmongolism\\nmongolisms\\nmongols\\nmongoose\\nmongooses\\nmongos\\nmongrel\\nmongrels\\nmongst\\nmonicker\\nmonickers\\nmonie\\nmonied\\nmonies\\nmoniker\\nmonikers\\nmonish\\nmonished\\nmonishes\\nmonishing\\nmonism\\nmonisms\\nmonist\\nmonistic\\nmonists\\nmonition\\nmonitions\\nmonitive\\nmonitor\\nmonitored\\nmonitories\\nmonitoring\\nmonitors\\nmonitory\\nmonk\\nmonkeries\\nmonkery\\nmonkey\\nmonkeyed\\nmonkeying\\nmonkeys\\nmonkeyshines\\nmonkfish\\nmonkfishes\\nmonkhood\\nmonkhoods\\nmonkish\\nmonkishly\\nmonkishness\\nmonkishnesses\\nmonks\\nmonkshood\\nmonkshoods\\nmono\\nmonoacid\\nmonoacids\\nmonocarp\\nmonocarps\\nmonocle\\nmonocled\\nmonocles\\nmonocot\\nmonocots\\nmonocrat\\nmonocrats\\nmonocyte\\nmonocytes\\nmonodic\\nmonodies\\nmonodist\\nmonodists\\nmonody\\nmonoecies\\nmonoecy\\nmonofil\\nmonofils\\nmonofuel\\nmonofuels\\nmonogamic\\nmonogamies\\nmonogamist\\nmonogamists\\nmonogamous\\nmonogamy\\nmonogenies\\nmonogeny\\nmonogerm\\nmonogram\\nmonogramed\\nmonograming\\nmonogrammed\\nmonogramming\\nmonograms\\nmonograph\\nmonographs\\nmonogynies\\nmonogyny\\nmonolingual\\nmonolith\\nmonolithic\\nmonoliths\\nmonolog\\nmonologies\\nmonologist\\nmonologists\\nmonologs\\nmonologue\\nmonologues\\nmonologuist\\nmonologuists\\nmonology\\nmonomer\\nmonomers\\nmonomial\\nmonomials\\nmononucleosis\\nmononucleosises\\nmonopode\\nmonopodes\\nmonopodies\\nmonopody\\nmonopole\\nmonopoles\\nmonopolies\\nmonopolist\\nmonopolistic\\nmonopolists\\nmonopolization\\nmonopolizations\\nmonopolize\\nmonopolized\\nmonopolizes\\nmonopolizing\\nmonopoly\\nmonorail\\nmonorails\\nmonos\\nmonosome\\nmonosomes\\nmonosyllable\\nmonosyllables\\nmonosyllablic\\nmonotheism\\nmonotheisms\\nmonotheist\\nmonotheists\\nmonotint\\nmonotints\\nmonotone\\nmonotones\\nmonotonies\\nmonotonous\\nmonotonously\\nmonotonousness\\nmonotonousnesses\\nmonotony\\nmonotype\\nmonotypes\\nmonoxide\\nmonoxides\\nmons\\nmonsieur\\nmonsignor\\nmonsignori\\nmonsignors\\nmonsoon\\nmonsoonal\\nmonsoons\\nmonster\\nmonsters\\nmonstrosities\\nmonstrosity\\nmonstrously\\nmontage\\nmontaged\\nmontages\\nmontaging\\nmontane\\nmontanes\\nmonte\\nmonteith\\nmonteiths\\nmontero\\nmonteros\\nmontes\\nmonth\\nmonthlies\\nmonthly\\nmonths\\nmonument\\nmonumental\\nmonumentally\\nmonuments\\nmonuron\\nmonurons\\nmony\\nmoo\\nmooch\\nmooched\\nmoocher\\nmoochers\\nmooches\\nmooching\\nmood\\nmoodier\\nmoodiest\\nmoodily\\nmoodiness\\nmoodinesses\\nmoods\\nmoody\\nmooed\\nmooing\\nmool\\nmoola\\nmoolah\\nmoolahs\\nmoolas\\nmooley\\nmooleys\\nmools\\nmoon\\nmoonbeam\\nmoonbeams\\nmoonbow\\nmoonbows\\nmooncalf\\nmooncalves\\nmooned\\nmooneye\\nmooneyes\\nmoonfish\\nmoonfishes\\nmoonier\\nmooniest\\nmoonily\\nmooning\\nmoonish\\nmoonless\\nmoonlet\\nmoonlets\\nmoonlight\\nmoonlighted\\nmoonlighter\\nmoonlighters\\nmoonlighting\\nmoonlights\\nmoonlike\\nmoonlit\\nmoonrise\\nmoonrises\\nmoons\\nmoonsail\\nmoonsails\\nmoonseed\\nmoonseeds\\nmoonset\\nmoonsets\\nmoonshine\\nmoonshines\\nmoonshot\\nmoonshots\\nmoonward\\nmoonwort\\nmoonworts\\nmoony\\nmoor\\nmoorage\\nmoorages\\nmoored\\nmoorfowl\\nmoorfowls\\nmoorhen\\nmoorhens\\nmoorier\\nmooriest\\nmooring\\nmoorings\\nmoorish\\nmoorland\\nmoorlands\\nmoors\\nmoorwort\\nmoorworts\\nmoory\\nmoos\\nmoose\\nmoot\\nmooted\\nmooter\\nmooters\\nmooting\\nmoots\\nmop\\nmopboard\\nmopboards\\nmope\\nmoped\\nmopeds\\nmoper\\nmopers\\nmopes\\nmoping\\nmopingly\\nmopish\\nmopishly\\nmopoke\\nmopokes\\nmopped\\nmopper\\nmoppers\\nmoppet\\nmoppets\\nmopping\\nmops\\nmoquette\\nmoquettes\\nmor\\nmora\\nmorae\\nmorainal\\nmoraine\\nmoraines\\nmorainic\\nmoral\\nmorale\\nmorales\\nmoralise\\nmoralised\\nmoralises\\nmoralising\\nmoralism\\nmoralisms\\nmoralist\\nmoralistic\\nmoralists\\nmoralities\\nmorality\\nmoralize\\nmoralized\\nmoralizes\\nmoralizing\\nmorally\\nmorals\\nmoras\\nmorass\\nmorasses\\nmorassy\\nmoratoria\\nmoratorium\\nmoratoriums\\nmoratory\\nmoray\\nmorays\\nmorbid\\nmorbidities\\nmorbidity\\nmorbidly\\nmorbidness\\nmorbidnesses\\nmorbific\\nmorbilli\\nmorceau\\nmorceaux\\nmordancies\\nmordancy\\nmordant\\nmordanted\\nmordanting\\nmordantly\\nmordants\\nmordent\\nmordents\\nmore\\nmoreen\\nmoreens\\nmorel\\nmorelle\\nmorelles\\nmorello\\nmorellos\\nmorels\\nmoreover\\nmores\\nmoresque\\nmoresques\\nmorgen\\nmorgens\\nmorgue\\nmorgues\\nmoribund\\nmoribundities\\nmoribundity\\nmorion\\nmorions\\nmorn\\nmorning\\nmornings\\nmorns\\nmorocco\\nmoroccos\\nmoron\\nmoronic\\nmoronically\\nmoronism\\nmoronisms\\nmoronities\\nmoronity\\nmorons\\nmorose\\nmorosely\\nmoroseness\\nmorosenesses\\nmorosities\\nmorosity\\nmorph\\nmorpheme\\nmorphemes\\nmorphia\\nmorphias\\nmorphic\\nmorphin\\nmorphine\\nmorphines\\nmorphins\\nmorpho\\nmorphologic\\nmorphologically\\nmorphologies\\nmorphology\\nmorphos\\nmorphs\\nmorrion\\nmorrions\\nmorris\\nmorrises\\nmorro\\nmorros\\nmorrow\\nmorrows\\nmors\\nmorsel\\nmorseled\\nmorseling\\nmorselled\\nmorselling\\nmorsels\\nmort\\nmortal\\nmortalities\\nmortality\\nmortally\\nmortals\\nmortar\\nmortared\\nmortaring\\nmortars\\nmortary\\nmortgage\\nmortgaged\\nmortgagee\\nmortgagees\\nmortgages\\nmortgaging\\nmortgagor\\nmortgagors\\nmortice\\nmorticed\\nmortices\\nmorticing\\nmortification\\nmortifications\\nmortified\\nmortifies\\nmortify\\nmortifying\\nmortise\\nmortised\\nmortiser\\nmortisers\\nmortises\\nmortising\\nmortmain\\nmortmains\\nmorts\\nmortuaries\\nmortuary\\nmorula\\nmorulae\\nmorular\\nmorulas\\nmosaic\\nmosaicked\\nmosaicking\\nmosaics\\nmoschate\\nmosey\\nmoseyed\\nmoseying\\nmoseys\\nmoshav\\nmoshavim\\nmosk\\nmosks\\nmosque\\nmosques\\nmosquito\\nmosquitoes\\nmosquitos\\nmoss\\nmossback\\nmossbacks\\nmossed\\nmosser\\nmossers\\nmosses\\nmossier\\nmossiest\\nmossing\\nmosslike\\nmosso\\nmossy\\nmost\\nmoste\\nmostly\\nmosts\\nmot\\nmote\\nmotel\\nmotels\\nmotes\\nmotet\\nmotets\\nmotey\\nmoth\\nmothball\\nmothballed\\nmothballing\\nmothballs\\nmother\\nmothered\\nmotherhood\\nmotherhoods\\nmothering\\nmotherland\\nmotherlands\\nmotherless\\nmotherly\\nmothers\\nmothery\\nmothier\\nmothiest\\nmoths\\nmothy\\nmotif\\nmotifs\\nmotile\\nmotiles\\nmotilities\\nmotility\\nmotion\\nmotional\\nmotioned\\nmotioner\\nmotioners\\nmotioning\\nmotionless\\nmotionlessly\\nmotionlessness\\nmotionlessnesses\\nmotions\\nmotivate\\nmotivated\\nmotivates\\nmotivating\\nmotivation\\nmotivations\\nmotive\\nmotived\\nmotiveless\\nmotives\\nmotivic\\nmotiving\\nmotivities\\nmotivity\\nmotley\\nmotleyer\\nmotleyest\\nmotleys\\nmotlier\\nmotliest\\nmotmot\\nmotmots\\nmotor\\nmotorbike\\nmotorbikes\\nmotorboat\\nmotorboats\\nmotorbus\\nmotorbuses\\nmotorbusses\\nmotorcar\\nmotorcars\\nmotorcycle\\nmotorcycles\\nmotorcyclist\\nmotorcyclists\\nmotored\\nmotoric\\nmotoring\\nmotorings\\nmotorise\\nmotorised\\nmotorises\\nmotorising\\nmotorist\\nmotorists\\nmotorize\\nmotorized\\nmotorizes\\nmotorizing\\nmotorman\\nmotormen\\nmotors\\nmotortruck\\nmotortrucks\\nmotorway\\nmotorways\\nmots\\nmott\\nmotte\\nmottes\\nmottle\\nmottled\\nmottler\\nmottlers\\nmottles\\nmottling\\nmotto\\nmottoes\\nmottos\\nmotts\\nmouch\\nmouched\\nmouches\\nmouching\\nmouchoir\\nmouchoirs\\nmoue\\nmoues\\nmoufflon\\nmoufflons\\nmouflon\\nmouflons\\nmouille\\nmoujik\\nmoujiks\\nmoulage\\nmoulages\\nmould\\nmoulded\\nmoulder\\nmouldered\\nmouldering\\nmoulders\\nmouldier\\nmouldiest\\nmoulding\\nmouldings\\nmoulds\\nmouldy\\nmoulin\\nmoulins\\nmoult\\nmoulted\\nmoulter\\nmoulters\\nmoulting\\nmoults\\nmound\\nmounded\\nmounding\\nmounds\\nmount\\nmountable\\nmountain\\nmountaineer\\nmountaineered\\nmountaineering\\nmountaineers\\nmountainous\\nmountains\\nmountaintop\\nmountaintops\\nmountebank\\nmountebanks\\nmounted\\nmounter\\nmounters\\nmounting\\nmountings\\nmounts\\nmourn\\nmourned\\nmourner\\nmourners\\nmournful\\nmournfuller\\nmournfullest\\nmournfully\\nmournfulness\\nmournfulnesses\\nmourning\\nmournings\\nmourns\\nmouse\\nmoused\\nmouser\\nmousers\\nmouses\\nmousetrap\\nmousetraps\\nmousey\\nmousier\\nmousiest\\nmousily\\nmousing\\nmousings\\nmoussaka\\nmoussakas\\nmousse\\nmousses\\nmoustache\\nmoustaches\\nmousy\\nmouth\\nmouthed\\nmouther\\nmouthers\\nmouthful\\nmouthfuls\\nmouthier\\nmouthiest\\nmouthily\\nmouthing\\nmouthpiece\\nmouthpieces\\nmouths\\nmouthy\\nmouton\\nmoutons\\nmovable\\nmovables\\nmovably\\nmove\\nmoveable\\nmoveables\\nmoveably\\nmoved\\nmoveless\\nmovement\\nmovements\\nmover\\nmovers\\nmoves\\nmovie\\nmoviedom\\nmoviedoms\\nmovies\\nmoving\\nmovingly\\nmow\\nmowed\\nmower\\nmowers\\nmowing\\nmown\\nmows\\nmoxa\\nmoxas\\nmoxie\\nmoxies\\nmozetta\\nmozettas\\nmozette\\nmozo\\nmozos\\nmozzetta\\nmozzettas\\nmozzette\\nmridanga\\nmridangas\\nmu\\nmuch\\nmuches\\nmuchness\\nmuchnesses\\nmucic\\nmucid\\nmucidities\\nmucidity\\nmucilage\\nmucilages\\nmucilaginous\\nmucin\\nmucinoid\\nmucinous\\nmucins\\nmuck\\nmucked\\nmucker\\nmuckers\\nmuckier\\nmuckiest\\nmuckily\\nmucking\\nmuckle\\nmuckles\\nmuckluck\\nmucklucks\\nmuckrake\\nmuckraked\\nmuckrakes\\nmuckraking\\nmucks\\nmuckworm\\nmuckworms\\nmucky\\nmucluc\\nmuclucs\\nmucoid\\nmucoidal\\nmucoids\\nmucor\\nmucors\\nmucosa\\nmucosae\\nmucosal\\nmucosas\\nmucose\\nmucosities\\nmucositis\\nmucosity\\nmucous\\nmucro\\nmucrones\\nmucus\\nmucuses\\nmud\\nmudcap\\nmudcapped\\nmudcapping\\nmudcaps\\nmudded\\nmudder\\nmudders\\nmuddied\\nmuddier\\nmuddies\\nmuddiest\\nmuddily\\nmuddiness\\nmuddinesses\\nmudding\\nmuddle\\nmuddled\\nmuddler\\nmuddlers\\nmuddles\\nmuddling\\nmuddy\\nmuddying\\nmudfish\\nmudfishes\\nmudguard\\nmudguards\\nmudlark\\nmudlarks\\nmudpuppies\\nmudpuppy\\nmudra\\nmudras\\nmudrock\\nmudrocks\\nmudroom\\nmudrooms\\nmuds\\nmudsill\\nmudsills\\nmudstone\\nmudstones\\nmueddin\\nmueddins\\nmuenster\\nmuensters\\nmuezzin\\nmuezzins\\nmuff\\nmuffed\\nmuffin\\nmuffing\\nmuffins\\nmuffle\\nmuffled\\nmuffler\\nmufflers\\nmuffles\\nmuffling\\nmuffs\\nmufti\\nmuftis\\nmug\\nmugg\\nmuggar\\nmuggars\\nmugged\\nmugger\\nmuggers\\nmuggier\\nmuggiest\\nmuggily\\nmugginess\\nmugginesses\\nmugging\\nmuggings\\nmuggins\\nmuggs\\nmuggur\\nmuggurs\\nmuggy\\nmugho\\nmugs\\nmugwort\\nmugworts\\nmugwump\\nmugwumps\\nmuhlies\\nmuhly\\nmujik\\nmujiks\\nmukluk\\nmukluks\\nmulatto\\nmulattoes\\nmulattos\\nmulberries\\nmulberry\\nmulch\\nmulched\\nmulches\\nmulching\\nmulct\\nmulcted\\nmulcting\\nmulcts\\nmule\\nmuled\\nmules\\nmuleta\\nmuletas\\nmuleteer\\nmuleteers\\nmuley\\nmuleys\\nmuling\\nmulish\\nmulishly\\nmulishness\\nmulishnesses\\nmull\\nmulla\\nmullah\\nmullahs\\nmullas\\nmulled\\nmullein\\nmulleins\\nmullen\\nmullens\\nmuller\\nmullers\\nmullet\\nmullets\\nmulley\\nmulleys\\nmulligan\\nmulligans\\nmulling\\nmullion\\nmullioned\\nmullioning\\nmullions\\nmullite\\nmullites\\nmullock\\nmullocks\\nmullocky\\nmulls\\nmultiarmed\\nmultibarreled\\nmultibillion\\nmultibranched\\nmultibuilding\\nmulticenter\\nmultichambered\\nmultichannel\\nmulticolored\\nmulticounty\\nmulticultural\\nmultidenominational\\nmultidimensional\\nmultidirectional\\nmultidisciplinary\\nmultidiscipline\\nmultidivisional\\nmultidwelling\\nmultifaceted\\nmultifamily\\nmultifarous\\nmultifarously\\nmultifid\\nmultifilament\\nmultifunction\\nmultifunctional\\nmultigrade\\nmultiheaded\\nmultihospital\\nmultihued\\nmultijet\\nmultilane\\nmultilateral\\nmultilevel\\nmultilingual\\nmultilingualism\\nmultilingualisms\\nmultimedia\\nmultimember\\nmultimillion\\nmultimillionaire\\nmultimodalities\\nmultimodality\\nmultipart\\nmultipartite\\nmultiparty\\nmultiped\\nmultipeds\\nmultiplant\\nmultiple\\nmultiples\\nmultiplexor\\nmultiplexors\\nmultiplication\\nmultiplications\\nmultiplicities\\nmultiplicity\\nmultiplied\\nmultiplier\\nmultipliers\\nmultiplies\\nmultiply\\nmultiplying\\nmultipolar\\nmultiproblem\\nmultiproduct\\nmultipurpose\\nmultiracial\\nmultiroomed\\nmultisense\\nmultiservice\\nmultisided\\nmultispeed\\nmultistage\\nmultistep\\nmultistory\\nmultisyllabic\\nmultitalented\\nmultitrack\\nmultitude\\nmultitudes\\nmultitudinous\\nmultiunion\\nmultiunit\\nmultivariate\\nmultiwarhead\\nmultiyear\\nmulture\\nmultures\\nmum\\nmumble\\nmumbled\\nmumbler\\nmumblers\\nmumbles\\nmumbling\\nmumbo\\nmumm\\nmummed\\nmummer\\nmummeries\\nmummers\\nmummery\\nmummied\\nmummies\\nmummification\\nmummifications\\nmummified\\nmummifies\\nmummify\\nmummifying\\nmumming\\nmumms\\nmummy\\nmummying\\nmump\\nmumped\\nmumper\\nmumpers\\nmumping\\nmumps\\nmums\\nmun\\nmunch\\nmunched\\nmuncher\\nmunchers\\nmunches\\nmunching\\nmundane\\nmundanely\\nmundungo\\nmundungos\\nmunge\\nmungo\\nmungoose\\nmungooses\\nmungos\\nmungs\\nmunicipal\\nmunicipalities\\nmunicipality\\nmunicipally\\nmunificence\\nmunificences\\nmunificent\\nmuniment\\nmuniments\\nmunition\\nmunitioned\\nmunitioning\\nmunitions\\nmunnion\\nmunnions\\nmuns\\nmunster\\nmunsters\\nmuntin\\nmunting\\nmuntings\\nmuntins\\nmuntjac\\nmuntjacs\\nmuntjak\\nmuntjaks\\nmuon\\nmuonic\\nmuons\\nmura\\nmuraenid\\nmuraenids\\nmural\\nmuralist\\nmuralists\\nmurals\\nmuras\\nmurder\\nmurdered\\nmurderee\\nmurderees\\nmurderer\\nmurderers\\nmurderess\\nmurderesses\\nmurdering\\nmurderous\\nmurderously\\nmurders\\nmure\\nmured\\nmurein\\nmureins\\nmures\\nmurex\\nmurexes\\nmuriate\\nmuriated\\nmuriates\\nmuricate\\nmurices\\nmurid\\nmurids\\nmurine\\nmurines\\nmuring\\nmurk\\nmurker\\nmurkest\\nmurkier\\nmurkiest\\nmurkily\\nmurkiness\\nmurkinesses\\nmurkly\\nmurks\\nmurky\\nmurmur\\nmurmured\\nmurmurer\\nmurmurers\\nmurmuring\\nmurmurous\\nmurmurs\\nmurphies\\nmurphy\\nmurr\\nmurra\\nmurrain\\nmurrains\\nmurras\\nmurre\\nmurrelet\\nmurrelets\\nmurres\\nmurrey\\nmurreys\\nmurrha\\nmurrhas\\nmurrhine\\nmurries\\nmurrine\\nmurrs\\nmurry\\nmurther\\nmurthered\\nmurthering\\nmurthers\\nmus\\nmusca\\nmuscadel\\nmuscadels\\nmuscae\\nmuscat\\nmuscatel\\nmuscatels\\nmuscats\\nmuscid\\nmuscids\\nmuscle\\nmuscled\\nmuscles\\nmuscling\\nmuscly\\nmuscular\\nmuscularities\\nmuscularity\\nmusculature\\nmusculatures\\nmuse\\nmused\\nmuseful\\nmuser\\nmusers\\nmuses\\nmusette\\nmusettes\\nmuseum\\nmuseums\\nmush\\nmushed\\nmusher\\nmushers\\nmushes\\nmushier\\nmushiest\\nmushily\\nmushing\\nmushroom\\nmushroomed\\nmushrooming\\nmushrooms\\nmushy\\nmusic\\nmusical\\nmusicale\\nmusicales\\nmusically\\nmusicals\\nmusician\\nmusicianly\\nmusicians\\nmusicianship\\nmusicianships\\nmusics\\nmusing\\nmusingly\\nmusings\\nmusjid\\nmusjids\\nmusk\\nmuskeg\\nmuskegs\\nmuskellunge\\nmusket\\nmusketries\\nmusketry\\nmuskets\\nmuskie\\nmuskier\\nmuskies\\nmuskiest\\nmuskily\\nmuskiness\\nmuskinesses\\nmuskit\\nmuskits\\nmuskmelon\\nmuskmelons\\nmuskrat\\nmuskrats\\nmusks\\nmusky\\nmuslin\\nmuslins\\nmuspike\\nmuspikes\\nmusquash\\nmusquashes\\nmuss\\nmussed\\nmussel\\nmussels\\nmusses\\nmussier\\nmussiest\\nmussily\\nmussiness\\nmussinesses\\nmussing\\nmussy\\nmust\\nmustache\\nmustaches\\nmustang\\nmustangs\\nmustard\\nmustards\\nmusted\\nmustee\\nmustees\\nmuster\\nmustered\\nmustering\\nmusters\\nmusth\\nmusths\\nmustier\\nmustiest\\nmustily\\nmustiness\\nmustinesses\\nmusting\\nmusts\\nmusty\\nmut\\nmutabilities\\nmutability\\nmutable\\nmutably\\nmutagen\\nmutagens\\nmutant\\nmutants\\nmutase\\nmutases\\nmutate\\nmutated\\nmutates\\nmutating\\nmutation\\nmutational\\nmutations\\nmutative\\nmutch\\nmutches\\nmutchkin\\nmutchkins\\nmute\\nmuted\\nmutedly\\nmutely\\nmuteness\\nmutenesses\\nmuter\\nmutes\\nmutest\\nmuticous\\nmutilate\\nmutilated\\nmutilates\\nmutilating\\nmutilation\\nmutilations\\nmutilator\\nmutilators\\nmutine\\nmutined\\nmutineer\\nmutineered\\nmutineering\\nmutineers\\nmutines\\nmuting\\nmutinied\\nmutinies\\nmutining\\nmutinous\\nmutinously\\nmutiny\\nmutinying\\nmutism\\nmutisms\\nmuts\\nmutt\\nmutter\\nmuttered\\nmutterer\\nmutterers\\nmuttering\\nmutters\\nmutton\\nmuttons\\nmuttony\\nmutts\\nmutual\\nmutually\\nmutuel\\nmutuels\\nmutular\\nmutule\\nmutules\\nmuumuu\\nmuumuus\\nmuzhik\\nmuzhiks\\nmuzjik\\nmuzjiks\\nmuzzier\\nmuzziest\\nmuzzily\\nmuzzle\\nmuzzled\\nmuzzler\\nmuzzlers\\nmuzzles\\nmuzzling\\nmuzzy\\nmy\\nmyalgia\\nmyalgias\\nmyalgic\\nmyases\\nmyasis\\nmycele\\nmyceles\\nmycelia\\nmycelial\\nmycelian\\nmycelium\\nmyceloid\\nmycetoma\\nmycetomas\\nmycetomata\\nmycologies\\nmycology\\nmycoses\\nmycosis\\nmycotic\\nmyelin\\nmyeline\\nmyelines\\nmyelinic\\nmyelins\\nmyelitides\\nmyelitis\\nmyeloid\\nmyeloma\\nmyelomas\\nmyelomata\\nmyelosuppression\\nmyelosuppressions\\nmyiases\\nmyiasis\\nmylonite\\nmylonites\\nmyna\\nmynah\\nmynahs\\nmynas\\nmynheer\\nmynheers\\nmyoblast\\nmyoblasts\\nmyogenic\\nmyograph\\nmyographs\\nmyoid\\nmyologic\\nmyologies\\nmyology\\nmyoma\\nmyomas\\nmyomata\\nmyopathies\\nmyopathy\\nmyope\\nmyopes\\nmyopia\\nmyopias\\nmyopic\\nmyopically\\nmyopies\\nmyopy\\nmyoscope\\nmyoscopes\\nmyoses\\nmyosin\\nmyosins\\nmyosis\\nmyosote\\nmyosotes\\nmyosotis\\nmyosotises\\nmyotic\\nmyotics\\nmyotome\\nmyotomes\\nmyotonia\\nmyotonias\\nmyotonic\\nmyriad\\nmyriads\\nmyriapod\\nmyriapods\\nmyrica\\nmyricas\\nmyriopod\\nmyriopods\\nmyrmidon\\nmyrmidons\\nmyrrh\\nmyrrhic\\nmyrrhs\\nmyrtle\\nmyrtles\\nmyself\\nmysost\\nmysosts\\nmystagog\\nmystagogs\\nmysteries\\nmysterious\\nmysteriously\\nmysteriousness\\nmysteriousnesses\\nmystery\\nmystic\\nmystical\\nmysticly\\nmystics\\nmystification\\nmystifications\\nmystified\\nmystifies\\nmystify\\nmystifying\\nmystique\\nmystiques\\nmyth\\nmythic\\nmythical\\nmythoi\\nmythological\\nmythologies\\nmythologist\\nmythologists\\nmythology\\nmythos\\nmyths\\nmyxedema\\nmyxedemas\\nmyxocyte\\nmyxocytes\\nmyxoid\\nmyxoma\\nmyxomas\\nmyxomata\\nna\\nnab\\nnabbed\\nnabbing\\nnabis\\nnabob\\nnaboberies\\nnabobery\\nnabobess\\nnabobesses\\nnabobism\\nnabobisms\\nnabobs\\nnabs\\nnacelle\\nnacelles\\nnacre\\nnacred\\nnacreous\\nnacres\\nnadir\\nnadiral\\nnadirs\\nnae\\nnaething\\nnaethings\\nnaevi\\nnaevoid\\nnaevus\\nnag\\nnagana\\nnaganas\\nnagged\\nnagger\\nnaggers\\nnagging\\nnags\\nnaiad\\nnaiades\\nnaiads\\nnaif\\nnaifs\\nnail\\nnailed\\nnailer\\nnailers\\nnailfold\\nnailfolds\\nnailhead\\nnailheads\\nnailing\\nnails\\nnailset\\nnailsets\\nnainsook\\nnainsooks\\nnaive\\nnaively\\nnaiveness\\nnaivenesses\\nnaiver\\nnaives\\nnaivest\\nnaivete\\nnaivetes\\nnaiveties\\nnaivety\\nnaked\\nnakeder\\nnakedest\\nnakedly\\nnakedness\\nnakednesses\\nnaled\\nnaleds\\nnaloxone\\nnaloxones\\nnamable\\nname\\nnameable\\nnamed\\nnameless\\nnamelessly\\nnamely\\nnamer\\nnamers\\nnames\\nnamesake\\nnamesakes\\nnaming\\nnana\\nnanas\\nnance\\nnances\\nnandin\\nnandins\\nnanism\\nnanisms\\nnankeen\\nnankeens\\nnankin\\nnankins\\nnannie\\nnannies\\nnanny\\nnanogram\\nnanograms\\nnanowatt\\nnanowatts\\nnaoi\\nnaos\\nnap\\nnapalm\\nnapalmed\\nnapalming\\nnapalms\\nnape\\nnaperies\\nnapery\\nnapes\\nnaphtha\\nnaphthas\\nnaphthol\\nnaphthols\\nnaphthyl\\nnapiform\\nnapkin\\nnapkins\\nnapless\\nnapoleon\\nnapoleons\\nnappe\\nnapped\\nnapper\\nnappers\\nnappes\\nnappie\\nnappier\\nnappies\\nnappiest\\nnapping\\nnappy\\nnaps\\nnarc\\nnarcein\\nnarceine\\nnarceines\\nnarceins\\nnarcism\\nnarcisms\\nnarcissi\\nnarcissism\\nnarcissisms\\nnarcissist\\nnarcissists\\nnarcissus\\nnarcissuses\\nnarcist\\nnarcists\\nnarco\\nnarcos\\nnarcose\\nnarcoses\\nnarcosis\\nnarcotic\\nnarcotics\\nnarcs\\nnard\\nnardine\\nnards\\nnares\\nnarghile\\nnarghiles\\nnargile\\nnargileh\\nnargilehs\\nnargiles\\nnarial\\nnaric\\nnarine\\nnaris\\nnark\\nnarked\\nnarking\\nnarks\\nnarrate\\nnarrated\\nnarrater\\nnarraters\\nnarrates\\nnarrating\\nnarration\\nnarrations\\nnarrative\\nnarratives\\nnarrator\\nnarrators\\nnarrow\\nnarrowed\\nnarrower\\nnarrowest\\nnarrowing\\nnarrowly\\nnarrowness\\nnarrownesses\\nnarrows\\nnarthex\\nnarthexes\\nnarwal\\nnarwals\\nnarwhal\\nnarwhale\\nnarwhales\\nnarwhals\\nnary\\nnasal\\nnasalise\\nnasalised\\nnasalises\\nnasalising\\nnasalities\\nnasality\\nnasalize\\nnasalized\\nnasalizes\\nnasalizing\\nnasally\\nnasals\\nnascence\\nnascences\\nnascencies\\nnascency\\nnascent\\nnasial\\nnasion\\nnasions\\nnastic\\nnastier\\nnastiest\\nnastily\\nnastiness\\nnastinesses\\nnasturtium\\nnasturtiums\\nnasty\\nnatal\\nnatalities\\nnatality\\nnatant\\nnatantly\\nnatation\\nnatations\\nnatatory\\nnates\\nnathless\\nnation\\nnational\\nnationalism\\nnationalisms\\nnationalist\\nnationalistic\\nnationalists\\nnationalities\\nnationality\\nnationalization\\nnationalizations\\nnationalize\\nnationalized\\nnationalizes\\nnationalizing\\nnationally\\nnationals\\nnationhood\\nnationhoods\\nnations\\nnative\\nnatively\\nnatives\\nnativism\\nnativisms\\nnativist\\nnativists\\nnativities\\nnativity\\nnatrium\\nnatriums\\nnatron\\nnatrons\\nnatter\\nnattered\\nnattering\\nnatters\\nnattier\\nnattiest\\nnattily\\nnattiness\\nnattinesses\\nnatty\\nnatural\\nnaturalism\\nnaturalisms\\nnaturalist\\nnaturalistic\\nnaturalists\\nnaturalization\\nnaturalizations\\nnaturalize\\nnaturalized\\nnaturalizes\\nnaturalizing\\nnaturally\\nnaturalness\\nnaturalnesses\\nnaturals\\nnature\\nnatured\\nnatures\\nnaught\\nnaughtier\\nnaughtiest\\nnaughtily\\nnaughtiness\\nnaughtinesses\\nnaughts\\nnaughty\\nnaumachies\\nnaumachy\\nnauplial\\nnauplii\\nnauplius\\nnausea\\nnauseant\\nnauseants\\nnauseas\\nnauseate\\nnauseated\\nnauseates\\nnauseating\\nnauseatingly\\nnauseous\\nnautch\\nnautches\\nnautical\\nnautically\\nnautili\\nnautilus\\nnautiluses\\nnavaid\\nnavaids\\nnaval\\nnavally\\nnavar\\nnavars\\nnave\\nnavel\\nnavels\\nnaves\\nnavette\\nnavettes\\nnavicert\\nnavicerts\\nnavies\\nnavigabilities\\nnavigability\\nnavigable\\nnavigably\\nnavigate\\nnavigated\\nnavigates\\nnavigating\\nnavigation\\nnavigations\\nnavigator\\nnavigators\\nnavvies\\nnavvy\\nnavy\\nnawab\\nnawabs\\nnay\\nnays\\nnazi\\nnazified\\nnazifies\\nnazify\\nnazifying\\nnazis\\nneap\\nneaps\\nnear\\nnearby\\nneared\\nnearer\\nnearest\\nnearing\\nnearlier\\nnearliest\\nnearly\\nnearness\\nnearnesses\\nnears\\nnearsighted\\nnearsightedly\\nnearsightedness\\nnearsightednesses\\nneat\\nneaten\\nneatened\\nneatening\\nneatens\\nneater\\nneatest\\nneath\\nneatherd\\nneatherds\\nneatly\\nneatness\\nneatnesses\\nneats\\nneb\\nnebbish\\nnebbishes\\nnebs\\nnebula\\nnebulae\\nnebular\\nnebulas\\nnebule\\nnebulise\\nnebulised\\nnebulises\\nnebulising\\nnebulize\\nnebulized\\nnebulizes\\nnebulizing\\nnebulose\\nnebulous\\nnebuly\\nnecessaries\\nnecessarily\\nnecessary\\nnecessitate\\nnecessitated\\nnecessitates\\nnecessitating\\nnecessities\\nnecessity\\nneck\\nneckband\\nneckbands\\nnecked\\nneckerchief\\nneckerchiefs\\nnecking\\nneckings\\nnecklace\\nnecklaces\\nneckless\\nnecklike\\nneckline\\nnecklines\\nnecks\\nnecktie\\nneckties\\nneckwear\\nneckwears\\nnecrologies\\nnecrology\\nnecromancer\\nnecromancers\\nnecromancies\\nnecromancy\\nnecropsied\\nnecropsies\\nnecropsy\\nnecropsying\\nnecrose\\nnecrosed\\nnecroses\\nnecrosing\\nnecrosis\\nnecrotic\\nnectar\\nnectaries\\nnectarine\\nnectarines\\nnectars\\nnectary\\nnee\\nneed\\nneeded\\nneeder\\nneeders\\nneedful\\nneedfuls\\nneedier\\nneediest\\nneedily\\nneeding\\nneedle\\nneedled\\nneedlepoint\\nneedlepoints\\nneedler\\nneedlers\\nneedles\\nneedless\\nneedlessly\\nneedlework\\nneedleworks\\nneedling\\nneedlings\\nneeds\\nneedy\\nneem\\nneems\\nneep\\nneeps\\nnefarious\\nnefariouses\\nnefariously\\nnegate\\nnegated\\nnegater\\nnegaters\\nnegates\\nnegating\\nnegation\\nnegations\\nnegative\\nnegatived\\nnegatively\\nnegatives\\nnegativing\\nnegaton\\nnegatons\\nnegator\\nnegators\\nnegatron\\nnegatrons\\nneglect\\nneglected\\nneglectful\\nneglecting\\nneglects\\nneglige\\nnegligee\\nnegligees\\nnegligence\\nnegligences\\nnegligent\\nnegligently\\nnegliges\\nnegligible\\nnegotiable\\nnegotiate\\nnegotiated\\nnegotiates\\nnegotiating\\nnegotiation\\nnegotiations\\nnegotiator\\nnegotiators\\nnegro\\nnegroes\\nnegroid\\nnegroids\\nnegus\\nneguses\\nneif\\nneifs\\nneigh\\nneighbor\\nneighbored\\nneighborhood\\nneighborhoods\\nneighboring\\nneighborliness\\nneighborlinesses\\nneighborly\\nneighbors\\nneighed\\nneighing\\nneighs\\nneist\\nneither\\nnekton\\nnektonic\\nnektons\\nnelson\\nnelsons\\nnelumbo\\nnelumbos\\nnema\\nnemas\\nnematic\\nnematode\\nnematodes\\nnemeses\\nnemesis\\nnene\\nneolith\\nneoliths\\nneologic\\nneologies\\nneologism\\nneologisms\\nneology\\nneomorph\\nneomorphs\\nneomycin\\nneomycins\\nneon\\nneonatal\\nneonate\\nneonates\\nneoned\\nneons\\nneophyte\\nneophytes\\nneoplasm\\nneoplasms\\nneoprene\\nneoprenes\\nneotenic\\nneotenies\\nneoteny\\nneoteric\\nneoterics\\nneotype\\nneotypes\\nnepenthe\\nnepenthes\\nnephew\\nnephews\\nnephric\\nnephrism\\nnephrisms\\nnephrite\\nnephrites\\nnephron\\nnephrons\\nnepotic\\nnepotism\\nnepotisms\\nnepotist\\nnepotists\\nnereid\\nnereides\\nnereids\\nnereis\\nneritic\\nnerol\\nneroli\\nnerolis\\nnerols\\nnerts\\nnertz\\nnervate\\nnerve\\nnerved\\nnerveless\\nnerves\\nnervier\\nnerviest\\nnervily\\nnervine\\nnervines\\nnerving\\nnervings\\nnervous\\nnervously\\nnervousness\\nnervousnesses\\nnervule\\nnervules\\nnervure\\nnervures\\nnervy\\nnescient\\nnescients\\nness\\nnesses\\nnest\\nnested\\nnester\\nnesters\\nnesting\\nnestle\\nnestled\\nnestler\\nnestlers\\nnestles\\nnestlike\\nnestling\\nnestlings\\nnestor\\nnestors\\nnests\\nnet\\nnether\\nnetless\\nnetlike\\nnetop\\nnetops\\nnets\\nnetsuke\\nnetsukes\\nnett\\nnettable\\nnetted\\nnetter\\nnetters\\nnettier\\nnettiest\\nnetting\\nnettings\\nnettle\\nnettled\\nnettler\\nnettlers\\nnettles\\nnettlesome\\nnettlier\\nnettliest\\nnettling\\nnettly\\nnetts\\nnetty\\nnetwork\\nnetworked\\nnetworking\\nnetworks\\nneum\\nneumatic\\nneume\\nneumes\\nneumic\\nneums\\nneural\\nneuralgia\\nneuralgias\\nneuralgic\\nneurally\\nneuraxon\\nneuraxons\\nneuritic\\nneuritics\\nneuritides\\nneuritis\\nneuritises\\nneuroid\\nneurologic\\nneurological\\nneurologically\\nneurologies\\nneurologist\\nneurologists\\nneurology\\nneuroma\\nneuromas\\nneuromata\\nneuron\\nneuronal\\nneurone\\nneurones\\nneuronic\\nneurons\\nneuropathies\\nneuropathy\\nneuropsych\\nneurosal\\nneuroses\\nneurosis\\nneurosurgeon\\nneurosurgeons\\nneurotic\\nneurotically\\nneurotics\\nneurotoxicities\\nneurotoxicity\\nneuston\\nneustons\\nneuter\\nneutered\\nneutering\\nneuters\\nneutral\\nneutralities\\nneutrality\\nneutralization\\nneutralizations\\nneutralize\\nneutralized\\nneutralizes\\nneutralizing\\nneutrals\\nneutrino\\nneutrinos\\nneutron\\nneutrons\\nneve\\nnever\\nnevermore\\nnevertheless\\nneves\\nnevi\\nnevoid\\nnevus\\nnew\\nnewborn\\nnewborns\\nnewcomer\\nnewcomers\\nnewel\\nnewels\\nnewer\\nnewest\\nnewfound\\nnewish\\nnewly\\nnewlywed\\nnewlyweds\\nnewmown\\nnewness\\nnewnesses\\nnews\\nnewsboy\\nnewsboys\\nnewscast\\nnewscaster\\nnewscasters\\nnewscasts\\nnewsier\\nnewsies\\nnewsiest\\nnewsless\\nnewsletter\\nnewsmagazine\\nnewsmagazines\\nnewsman\\nnewsmen\\nnewspaper\\nnewspaperman\\nnewspapermen\\nnewspapers\\nnewspeak\\nnewspeaks\\nnewsprint\\nnewsprints\\nnewsreel\\nnewsreels\\nnewsroom\\nnewsrooms\\nnewsstand\\nnewsstands\\nnewsworthy\\nnewsy\\nnewt\\nnewton\\nnewtons\\nnewts\\nnext\\nnextdoor\\nnexus\\nnexuses\\nngwee\\nniacin\\nniacins\\nnib\\nnibbed\\nnibbing\\nnibble\\nnibbled\\nnibbler\\nnibblers\\nnibbles\\nnibbling\\nniblick\\nniblicks\\nniblike\\nnibs\\nnice\\nnicely\\nniceness\\nnicenesses\\nnicer\\nnicest\\nniceties\\nnicety\\nniche\\nniched\\nniches\\nniching\\nnick\\nnicked\\nnickel\\nnickeled\\nnickelic\\nnickeling\\nnickelled\\nnickelling\\nnickels\\nnicker\\nnickered\\nnickering\\nnickers\\nnicking\\nnickle\\nnickles\\nnicknack\\nnicknacks\\nnickname\\nnicknamed\\nnicknames\\nnicknaming\\nnicks\\nnicol\\nnicols\\nnicotin\\nnicotine\\nnicotines\\nnicotins\\nnictate\\nnictated\\nnictates\\nnictating\\nnidal\\nnide\\nnided\\nnidering\\nniderings\\nnides\\nnidget\\nnidgets\\nnidi\\nnidified\\nnidifies\\nnidify\\nnidifying\\nniding\\nnidus\\nniduses\\nniece\\nnieces\\nnielli\\nniellist\\nniellists\\nniello\\nnielloed\\nnielloing\\nniellos\\nnieve\\nnieves\\nniffer\\nniffered\\nniffering\\nniffers\\nniftier\\nniftiest\\nnifty\\nniggard\\nniggarded\\nniggarding\\nniggardliness\\nniggardlinesses\\nniggardly\\nniggards\\nniggle\\nniggled\\nniggler\\nnigglers\\nniggles\\nniggling\\nnigglings\\nnigh\\nnighed\\nnigher\\nnighest\\nnighing\\nnighness\\nnighnesses\\nnighs\\nnight\\nnightcap\\nnightcaps\\nnightclothes\\nnightclub\\nnightclubs\\nnightfall\\nnightfalls\\nnightgown\\nnightgowns\\nnightie\\nnighties\\nnightingale\\nnightingales\\nnightjar\\nnightjars\\nnightly\\nnightmare\\nnightmares\\nnightmarish\\nnights\\nnightshade\\nnightshades\\nnighttime\\nnighttimes\\nnighty\\nnigrified\\nnigrifies\\nnigrify\\nnigrifying\\nnigrosin\\nnigrosins\\nnihil\\nnihilism\\nnihilisms\\nnihilist\\nnihilists\\nnihilities\\nnihility\\nnihils\\nnil\\nnilgai\\nnilgais\\nnilgau\\nnilgaus\\nnilghai\\nnilghais\\nnilghau\\nnilghaus\\nnill\\nnilled\\nnilling\\nnills\\nnils\\nnim\\nnimbi\\nnimble\\nnimbleness\\nnimblenesses\\nnimbler\\nnimblest\\nnimbly\\nnimbus\\nnimbused\\nnimbuses\\nnimieties\\nnimiety\\nnimious\\nnimmed\\nnimming\\nnimrod\\nnimrods\\nnims\\nnincompoop\\nnincompoops\\nnine\\nninebark\\nninebarks\\nninefold\\nninepin\\nninepins\\nnines\\nnineteen\\nnineteens\\nnineteenth\\nnineteenths\\nnineties\\nninetieth\\nninetieths\\nninety\\nninnies\\nninny\\nninnyish\\nninon\\nninons\\nninth\\nninthly\\nninths\\nniobic\\nniobium\\nniobiums\\nniobous\\nnip\\nnipa\\nnipas\\nnipped\\nnipper\\nnippers\\nnippier\\nnippiest\\nnippily\\nnipping\\nnipple\\nnipples\\nnippy\\nnips\\nnirvana\\nnirvanas\\nnirvanic\\nnisei\\nniseis\\nnisi\\nnisus\\nnit\\nnitchie\\nnitchies\\nniter\\nniters\\nnitid\\nniton\\nnitons\\nnitpick\\nnitpicked\\nnitpicking\\nnitpicks\\nnitrate\\nnitrated\\nnitrates\\nnitrating\\nnitrator\\nnitrators\\nnitre\\nnitres\\nnitric\\nnitrid\\nnitride\\nnitrides\\nnitrids\\nnitrified\\nnitrifies\\nnitrify\\nnitrifying\\nnitril\\nnitrile\\nnitriles\\nnitrils\\nnitrite\\nnitrites\\nnitro\\nnitrogen\\nnitrogenous\\nnitrogens\\nnitroglycerin\\nnitroglycerine\\nnitroglycerines\\nnitroglycerins\\nnitrolic\\nnitros\\nnitroso\\nnitrosurea\\nnitrosyl\\nnitrosyls\\nnitrous\\nnits\\nnittier\\nnittiest\\nnitty\\nnitwit\\nnitwits\\nnival\\nniveous\\nnix\\nnixed\\nnixes\\nnixie\\nnixies\\nnixing\\nnixy\\nnizam\\nnizamate\\nnizamates\\nnizams\\nno\\nnob\\nnobbier\\nnobbiest\\nnobbily\\nnobble\\nnobbled\\nnobbler\\nnobblers\\nnobbles\\nnobbling\\nnobby\\nnobelium\\nnobeliums\\nnobilities\\nnobility\\nnoble\\nnobleman\\nnoblemen\\nnobleness\\nnoblenesses\\nnobler\\nnobles\\nnoblesse\\nnoblesses\\nnoblest\\nnobly\\nnobodies\\nnobody\\nnobs\\nnocent\\nnock\\nnocked\\nnocking\\nnocks\\nnoctuid\\nnoctuids\\nnoctule\\nnoctules\\nnoctuoid\\nnocturn\\nnocturnal\\nnocturne\\nnocturnes\\nnocturns\\nnocuous\\nnod\\nnodal\\nnodalities\\nnodality\\nnodally\\nnodded\\nnodder\\nnodders\\nnoddies\\nnodding\\nnoddle\\nnoddled\\nnoddles\\nnoddling\\nnoddy\\nnode\\nnodes\\nnodi\\nnodical\\nnodose\\nnodosities\\nnodosity\\nnodous\\nnods\\nnodular\\nnodule\\nnodules\\nnodulose\\nnodulous\\nnodus\\nnoel\\nnoels\\nnoes\\nnoesis\\nnoesises\\nnoetic\\nnog\\nnogg\\nnoggin\\nnogging\\nnoggings\\nnoggins\\nnoggs\\nnogs\\nnoh\\nnohes\\nnohow\\nnoil\\nnoils\\nnoily\\nnoir\\nnoise\\nnoised\\nnoisemaker\\nnoisemakers\\nnoises\\nnoisier\\nnoisiest\\nnoisily\\nnoisiness\\nnoisinesses\\nnoising\\nnoisome\\nnoisy\\nnolo\\nnolos\\nnom\\nnoma\\nnomad\\nnomadic\\nnomadism\\nnomadisms\\nnomads\\nnomarch\\nnomarchies\\nnomarchs\\nnomarchy\\nnomas\\nnombles\\nnombril\\nnombrils\\nnome\\nnomen\\nnomenclature\\nnomenclatures\\nnomes\\nnomina\\nnominal\\nnominally\\nnominals\\nnominate\\nnominated\\nnominates\\nnominating\\nnomination\\nnominations\\nnominative\\nnominatives\\nnominee\\nnominees\\nnomism\\nnomisms\\nnomistic\\nnomogram\\nnomograms\\nnomoi\\nnomologies\\nnomology\\nnomos\\nnoms\\nnona\\nnonabrasive\\nnonabsorbent\\nnonacademic\\nnonaccredited\\nnonacid\\nnonacids\\nnonaddictive\\nnonadherence\\nnonadherences\\nnonadhesive\\nnonadjacent\\nnonadjustable\\nnonadult\\nnonadults\\nnonaffiliated\\nnonage\\nnonages\\nnonaggression\\nnonaggressions\\nnonagon\\nnonagons\\nnonalcoholic\\nnonaligned\\nnonappearance\\nnonappearances\\nnonas\\nnonautomatic\\nnonbank\\nnonbasic\\nnonbeing\\nnonbeings\\nnonbeliever\\nnonbelievers\\nnonbook\\nnonbooks\\nnonbreakable\\nnoncancerous\\nnoncandidate\\nnoncandidates\\nnoncarbonated\\nnoncash\\nnonce\\nnonces\\nnonchalance\\nnonchalances\\nnonchalant\\nnonchalantly\\nnonchargeable\\nnonchurchgoer\\nnonchurchgoers\\nnoncitizen\\nnoncitizens\\nnonclassical\\nnonclassified\\nnoncom\\nnoncombat\\nnoncombatant\\nnoncombatants\\nnoncombustible\\nnoncommercial\\nnoncommittal\\nnoncommunicable\\nnoncompliance\\nnoncompliances\\nnoncoms\\nnonconclusive\\nnonconductor\\nnonconductors\\nnonconflicting\\nnonconforming\\nnonconformist\\nnonconformists\\nnonconsecutive\\nnonconstructive\\nnonconsumable\\nnoncontagious\\nnoncontributing\\nnoncontrollable\\nnoncontroversial\\nnoncorrosive\\nnoncriminal\\nnoncritical\\nnoncumulative\\nnoncurrent\\nnondairy\\nnondeductible\\nnondefense\\nnondeferrable\\nnondegradable\\nnondeliveries\\nnondelivery\\nnondemocratic\\nnondenominational\\nnondescript\\nnondestructive\\nnondiscrimination\\nnondiscriminations\\nnondiscriminatory\\nnone\\nnoneducational\\nnonego\\nnonegos\\nnonelastic\\nnonelect\\nnonelected\\nnonelective\\nnonelectric\\nnonelectronic\\nnonemotional\\nnonempty\\nnonenforceable\\nnonenforcement\\nnonenforcements\\nnonentities\\nnonentity\\nnonentries\\nnonentry\\nnonequal\\nnonequals\\nnones\\nnonessential\\nnonesuch\\nnonesuches\\nnonetheless\\nnonevent\\nnonevents\\nnonexchangeable\\nnonexistence\\nnonexistences\\nnonexistent\\nnonexplosive\\nnonfarm\\nnonfat\\nnonfatal\\nnonfattening\\nnonfictional\\nnonflammable\\nnonflowering\\nnonfluid\\nnonfluids\\nnonfocal\\nnonfood\\nnonfunctional\\nnongame\\nnongovernmental\\nnongraded\\nnongreen\\nnonguilt\\nnonguilts\\nnonhardy\\nnonhazardous\\nnonhereditary\\nnonhero\\nnonheroes\\nnonhuman\\nnonideal\\nnonindustrial\\nnonindustrialized\\nnoninfectious\\nnoninflationary\\nnonintegrated\\nnonintellectual\\nnoninterference\\nnonintoxicating\\nnoninvolvement\\nnoninvolvements\\nnonionic\\nnonjuror\\nnonjurors\\nnonlegal\\nnonlethal\\nnonlife\\nnonliterary\\nnonlives\\nnonliving\\nnonlocal\\nnonlocals\\nnonmagnetic\\nnonmalignant\\nnonman\\nnonmedical\\nnonmember\\nnonmembers\\nnonmen\\nnonmetal\\nnonmetallic\\nnonmetals\\nnonmilitary\\nnonmodal\\nnonmoney\\nnonmoral\\nnonmusical\\nnonnarcotic\\nnonnative\\nnonnaval\\nnonnegotiable\\nnonobese\\nnonobjective\\nnonobservance\\nnonobservances\\nnonorthodox\\nnonowner\\nnonowners\\nnonpagan\\nnonpagans\\nnonpapal\\nnonpar\\nnonparallel\\nnonparametric\\nnonpareil\\nnonpareils\\nnonparticipant\\nnonparticipants\\nnonparticipating\\nnonpartisan\\nnonpartisans\\nnonparty\\nnonpaying\\nnonpayment\\nnonpayments\\nnonperformance\\nnonperformances\\nnonperishable\\nnonpermanent\\nnonperson\\nnonpersons\\nnonphysical\\nnonplus\\nnonplused\\nnonpluses\\nnonplusing\\nnonplussed\\nnonplusses\\nnonplussing\\nnonpoisonous\\nnonpolar\\nnonpolitical\\nnonpolluting\\nnonporous\\nnonpregnant\\nnonproductive\\nnonprofessional\\nnonprofit\\nnonproliferation\\nnonproliferations\\nnonpros\\nnonprossed\\nnonprosses\\nnonprossing\\nnonquota\\nnonracial\\nnonradioactive\\nnonrated\\nnonrealistic\\nnonrecoverable\\nnonrecurring\\nnonrefillable\\nnonrefundable\\nnonregistered\\nnonreligious\\nnonrenewable\\nnonrepresentative\\nnonresident\\nnonresidents\\nnonresponsive\\nnonrestricted\\nnonreusable\\nnonreversible\\nnonrigid\\nnonrival\\nnonrivals\\nnonroyal\\nnonrural\\nnonscheduled\\nnonscientific\\nnonscientist\\nnonscientists\\nnonsegregated\\nnonsense\\nnonsenses\\nnonsensical\\nnonsensically\\nnonsexist\\nnonsexual\\nnonsignificant\\nnonsked\\nnonskeds\\nnonskid\\nnonskier\\nnonskiers\\nnonslip\\nnonsmoker\\nnonsmokers\\nnonsmoking\\nnonsolar\\nnonsolid\\nnonsolids\\nnonspeaking\\nnonspecialist\\nnonspecialists\\nnonspecific\\nnonstaining\\nnonstandard\\nnonstick\\nnonstop\\nnonstrategic\\nnonstriker\\nnonstrikers\\nnonstriking\\nnonstudent\\nnonstudents\\nnonsubscriber\\nnonsuch\\nnonsuches\\nnonsugar\\nnonsugars\\nnonsuit\\nnonsuited\\nnonsuiting\\nnonsuits\\nnonsupport\\nnonsupports\\nnonsurgical\\nnonswimmer\\nnontax\\nnontaxable\\nnontaxes\\nnonteaching\\nnontechnical\\nnontidal\\nnontitle\\nnontoxic\\nnontraditional\\nnontransferable\\nnontropical\\nnontrump\\nnontruth\\nnontruths\\nnontypical\\nnonunion\\nnonunions\\nnonuple\\nnonuples\\nnonurban\\nnonuse\\nnonuser\\nnonusers\\nnonuses\\nnonusing\\nnonvenomous\\nnonverbal\\nnonviolence\\nnonviolences\\nnonviolent\\nnonviral\\nnonvocal\\nnonvoter\\nnonvoters\\nnonwhite\\nnonwhites\\nnonwoody\\nnonworker\\nnonworkers\\nnonwoven\\nnonzero\\nnoo\\nnoodle\\nnoodled\\nnoodles\\nnoodling\\nnook\\nnookies\\nnooklike\\nnooks\\nnooky\\nnoon\\nnoonday\\nnoondays\\nnooning\\nnoonings\\nnoons\\nnoontide\\nnoontides\\nnoontime\\nnoontimes\\nnoose\\nnoosed\\nnooser\\nnoosers\\nnooses\\nnoosing\\nnopal\\nnopals\\nnope\\nnor\\nnoria\\nnorias\\nnorite\\nnorites\\nnoritic\\nnorland\\nnorlands\\nnorm\\nnormal\\nnormalcies\\nnormalcy\\nnormalities\\nnormality\\nnormalization\\nnormalizations\\nnormalize\\nnormalized\\nnormalizes\\nnormalizing\\nnormally\\nnormals\\nnormed\\nnormless\\nnorms\\nnorth\\nnortheast\\nnortheasterly\\nnortheastern\\nnortheasts\\nnorther\\nnortherly\\nnorthern\\nnorthernmost\\nnortherns\\nnorthers\\nnorthing\\nnorthings\\nnorths\\nnorthward\\nnorthwards\\nnorthwest\\nnorthwesterly\\nnorthwestern\\nnorthwests\\nnos\\nnose\\nnosebag\\nnosebags\\nnoseband\\nnosebands\\nnosebleed\\nnosebleeds\\nnosed\\nnosegay\\nnosegays\\nnoseless\\nnoselike\\nnoses\\nnosey\\nnosh\\nnoshed\\nnosher\\nnoshers\\nnoshes\\nnoshing\\nnosier\\nnosiest\\nnosily\\nnosiness\\nnosinesses\\nnosing\\nnosings\\nnosologies\\nnosology\\nnostalgia\\nnostalgias\\nnostalgic\\nnostoc\\nnostocs\\nnostril\\nnostrils\\nnostrum\\nnostrums\\nnosy\\nnot\\nnota\\nnotabilities\\nnotability\\nnotable\\nnotables\\nnotably\\nnotal\\nnotarial\\nnotaries\\nnotarize\\nnotarized\\nnotarizes\\nnotarizing\\nnotary\\nnotate\\nnotated\\nnotates\\nnotating\\nnotation\\nnotations\\nnotch\\nnotched\\nnotcher\\nnotchers\\nnotches\\nnotching\\nnote\\nnotebook\\nnotebooks\\nnotecase\\nnotecases\\nnoted\\nnotedly\\nnoteless\\nnoter\\nnoters\\nnotes\\nnoteworthy\\nnothing\\nnothingness\\nnothingnesses\\nnothings\\nnotice\\nnoticeable\\nnoticeably\\nnoticed\\nnotices\\nnoticing\\nnotification\\nnotifications\\nnotified\\nnotifier\\nnotifiers\\nnotifies\\nnotify\\nnotifying\\nnoting\\nnotion\\nnotional\\nnotions\\nnotorieties\\nnotoriety\\nnotorious\\nnotoriously\\nnotornis\\nnotturni\\nnotturno\\nnotum\\nnotwithstanding\\nnougat\\nnougats\\nnought\\nnoughts\\nnoumena\\nnoumenal\\nnoumenon\\nnoun\\nnounal\\nnounally\\nnounless\\nnouns\\nnourish\\nnourished\\nnourishes\\nnourishing\\nnourishment\\nnourishments\\nnous\\nnouses\\nnova\\nnovae\\nnovalike\\nnovas\\nnovation\\nnovations\\nnovel\\nnovelise\\nnovelised\\nnovelises\\nnovelising\\nnovelist\\nnovelists\\nnovelize\\nnovelized\\nnovelizes\\nnovelizing\\nnovella\\nnovellas\\nnovelle\\nnovelly\\nnovels\\nnovelties\\nnovelty\\nnovena\\nnovenae\\nnovenas\\nnovercal\\nnovice\\nnovices\\nnow\\nnowadays\\nnoway\\nnoways\\nnowhere\\nnowheres\\nnowise\\nnows\\nnowt\\nnowts\\nnoxious\\nnoyade\\nnoyades\\nnozzle\\nnozzles\\nnth\\nnu\\nnuance\\nnuanced\\nnuances\\nnub\\nnubbier\\nnubbiest\\nnubbin\\nnubbins\\nnubble\\nnubbles\\nnubblier\\nnubbliest\\nnubbly\\nnubby\\nnubia\\nnubias\\nnubile\\nnubilities\\nnubility\\nnubilose\\nnubilous\\nnubs\\nnucellar\\nnucelli\\nnucellus\\nnucha\\nnuchae\\nnuchal\\nnuchals\\nnucleal\\nnuclear\\nnuclease\\nnucleases\\nnucleate\\nnucleated\\nnucleates\\nnucleating\\nnuclei\\nnuclein\\nnucleins\\nnucleole\\nnucleoles\\nnucleoli\\nnucleon\\nnucleons\\nnucleus\\nnucleuses\\nnuclide\\nnuclides\\nnuclidic\\nnude\\nnudely\\nnudeness\\nnudenesses\\nnuder\\nnudes\\nnudest\\nnudge\\nnudged\\nnudger\\nnudgers\\nnudges\\nnudging\\nnudicaul\\nnudie\\nnudies\\nnudism\\nnudisms\\nnudist\\nnudists\\nnudities\\nnudity\\nnudnick\\nnudnicks\\nnudnik\\nnudniks\\nnugatory\\nnugget\\nnuggets\\nnuggety\\nnuisance\\nnuisances\\nnuke\\nnukes\\nnull\\nnullah\\nnullahs\\nnulled\\nnullification\\nnullifications\\nnullified\\nnullifies\\nnullify\\nnullifying\\nnulling\\nnullities\\nnullity\\nnulls\\nnumb\\nnumbed\\nnumber\\nnumbered\\nnumberer\\nnumberers\\nnumbering\\nnumberless\\nnumbers\\nnumbest\\nnumbfish\\nnumbfishes\\nnumbing\\nnumbles\\nnumbly\\nnumbness\\nnumbnesses\\nnumbs\\nnumen\\nnumeral\\nnumerals\\nnumerary\\nnumerate\\nnumerated\\nnumerates\\nnumerating\\nnumerator\\nnumerators\\nnumeric\\nnumerical\\nnumerically\\nnumerics\\nnumerologies\\nnumerologist\\nnumerologists\\nnumerology\\nnumerous\\nnumina\\nnuminous\\nnuminouses\\nnumismatic\\nnumismatics\\nnumismatist\\nnumismatists\\nnummary\\nnummular\\nnumskull\\nnumskulls\\nnun\\nnuncio\\nnuncios\\nnuncle\\nnuncles\\nnunlike\\nnunneries\\nnunnery\\nnunnish\\nnuns\\nnuptial\\nnuptials\\nnurl\\nnurled\\nnurling\\nnurls\\nnurse\\nnursed\\nnurseries\\nnursery\\nnurses\\nnursing\\nnursings\\nnursling\\nnurslings\\nnurture\\nnurtured\\nnurturer\\nnurturers\\nnurtures\\nnurturing\\nnus\\nnut\\nnutant\\nnutate\\nnutated\\nnutates\\nnutating\\nnutation\\nnutations\\nnutbrown\\nnutcracker\\nnutcrackers\\nnutgall\\nnutgalls\\nnutgrass\\nnutgrasses\\nnuthatch\\nnuthatches\\nnuthouse\\nnuthouses\\nnutlet\\nnutlets\\nnutlike\\nnutmeat\\nnutmeats\\nnutmeg\\nnutmegs\\nnutpick\\nnutpicks\\nnutria\\nnutrias\\nnutrient\\nnutrients\\nnutriment\\nnutriments\\nnutrition\\nnutritional\\nnutritions\\nnutritious\\nnutritive\\nnuts\\nnutsedge\\nnutsedges\\nnutshell\\nnutshells\\nnutted\\nnutter\\nnutters\\nnuttier\\nnuttiest\\nnuttily\\nnutting\\nnutty\\nnutwood\\nnutwoods\\nnuzzle\\nnuzzled\\nnuzzles\\nnuzzling\\nnyala\\nnyalas\\nnylghai\\nnylghais\\nnylghau\\nnylghaus\\nnylon\\nnylons\\nnymph\\nnympha\\nnymphae\\nnymphal\\nnymphean\\nnymphet\\nnymphets\\nnympho\\nnymphomania\\nnymphomaniac\\nnymphomanias\\nnymphos\\nnymphs\\noaf\\noafish\\noafishly\\noafs\\noak\\noaken\\noaklike\\noakmoss\\noakmosses\\noaks\\noakum\\noakums\\noar\\noared\\noarfish\\noarfishes\\noaring\\noarless\\noarlike\\noarlock\\noarlocks\\noars\\noarsman\\noarsmen\\noases\\noasis\\noast\\noasts\\noat\\noatcake\\noatcakes\\noaten\\noater\\noaters\\noath\\noaths\\noatlike\\noatmeal\\noatmeals\\noats\\noaves\\nobduracies\\nobduracy\\nobdurate\\nobe\\nobeah\\nobeahism\\nobeahisms\\nobeahs\\nobedience\\nobediences\\nobedient\\nobediently\\nobeisance\\nobeisant\\nobeli\\nobelia\\nobelias\\nobelise\\nobelised\\nobelises\\nobelising\\nobelisk\\nobelisks\\nobelism\\nobelisms\\nobelize\\nobelized\\nobelizes\\nobelizing\\nobelus\\nobes\\nobese\\nobesely\\nobesities\\nobesity\\nobey\\nobeyable\\nobeyed\\nobeyer\\nobeyers\\nobeying\\nobeys\\nobfuscate\\nobfuscated\\nobfuscates\\nobfuscating\\nobfuscation\\nobfuscations\\nobi\\nobia\\nobias\\nobiism\\nobiisms\\nobis\\nobit\\nobits\\nobituaries\\nobituary\\nobject\\nobjected\\nobjecting\\nobjection\\nobjectionable\\nobjections\\nobjective\\nobjectively\\nobjectiveness\\nobjectivenesses\\nobjectives\\nobjectivities\\nobjectivity\\nobjector\\nobjectors\\nobjects\\noblast\\noblasti\\noblasts\\noblate\\noblately\\noblates\\noblation\\noblations\\noblatory\\nobligate\\nobligated\\nobligates\\nobligati\\nobligating\\nobligation\\nobligations\\nobligato\\nobligatory\\nobligatos\\noblige\\nobliged\\nobligee\\nobligees\\nobliger\\nobligers\\nobliges\\nobliging\\nobligingly\\nobligor\\nobligors\\noblique\\nobliqued\\nobliquely\\nobliqueness\\nobliquenesses\\nobliques\\nobliquing\\nobliquities\\nobliquity\\nobliterate\\nobliterated\\nobliterates\\nobliterating\\nobliteration\\nobliterations\\noblivion\\noblivions\\noblivious\\nobliviously\\nobliviousness\\nobliviousnesses\\noblong\\noblongly\\noblongs\\nobloquies\\nobloquy\\nobnoxious\\nobnoxiously\\nobnoxiousness\\nobnoxiousnesses\\noboe\\noboes\\noboist\\noboists\\nobol\\nobole\\noboles\\noboli\\nobols\\nobolus\\nobovate\\nobovoid\\nobscene\\nobscenely\\nobscener\\nobscenest\\nobscenities\\nobscenity\\nobscure\\nobscured\\nobscurely\\nobscurer\\nobscures\\nobscurest\\nobscuring\\nobscurities\\nobscurity\\nobsequies\\nobsequious\\nobsequiously\\nobsequiousness\\nobsequiousnesses\\nobsequy\\nobservance\\nobservances\\nobservant\\nobservation\\nobservations\\nobservatories\\nobservatory\\nobserve\\nobserved\\nobserver\\nobservers\\nobserves\\nobserving\\nobsess\\nobsessed\\nobsesses\\nobsessing\\nobsession\\nobsessions\\nobsessive\\nobsessively\\nobsessor\\nobsessors\\nobsidian\\nobsidians\\nobsolescence\\nobsolescences\\nobsolescent\\nobsolete\\nobsoleted\\nobsoletes\\nobsoleting\\nobstacle\\nobstacles\\nobstetrical\\nobstetrician\\nobstetricians\\nobstetrics\\nobstinacies\\nobstinacy\\nobstinate\\nobstinately\\nobstreperous\\nobstreperousness\\nobstreperousnesses\\nobstruct\\nobstructed\\nobstructing\\nobstruction\\nobstructions\\nobstructive\\nobstructor\\nobstructors\\nobstructs\\nobtain\\nobtainable\\nobtained\\nobtainer\\nobtainers\\nobtaining\\nobtains\\nobtect\\nobtected\\nobtest\\nobtested\\nobtesting\\nobtests\\nobtrude\\nobtruded\\nobtruder\\nobtruders\\nobtrudes\\nobtruding\\nobtrusion\\nobtrusions\\nobtrusive\\nobtrusively\\nobtrusiveness\\nobtrusivenesses\\nobtund\\nobtunded\\nobtunding\\nobtunds\\nobturate\\nobturated\\nobturates\\nobturating\\nobtuse\\nobtusely\\nobtuser\\nobtusest\\nobverse\\nobverses\\nobvert\\nobverted\\nobverting\\nobverts\\nobviable\\nobviate\\nobviated\\nobviates\\nobviating\\nobviation\\nobviations\\nobviator\\nobviators\\nobvious\\nobviously\\nobviousness\\nobviousnesses\\nobvolute\\noca\\nocarina\\nocarinas\\nocas\\noccasion\\noccasional\\noccasionally\\noccasioned\\noccasioning\\noccasions\\noccident\\noccidental\\noccidents\\noccipita\\nocciput\\nocciputs\\nocclude\\noccluded\\noccludes\\noccluding\\nocclusal\\noccult\\nocculted\\nocculter\\nocculters\\nocculting\\noccultly\\noccults\\noccupancies\\noccupancy\\noccupant\\noccupants\\noccupation\\noccupational\\noccupationally\\noccupations\\noccupied\\noccupier\\noccupiers\\noccupies\\noccupy\\noccupying\\noccur\\noccurence\\noccurences\\noccurred\\noccurrence\\noccurrences\\noccurring\\noccurs\\nocean\\noceanfront\\noceanfronts\\noceangoing\\noceanic\\noceanographer\\noceanographers\\noceanographic\\noceanographies\\noceanography\\noceans\\nocellar\\nocellate\\nocelli\\nocellus\\noceloid\\nocelot\\nocelots\\nocher\\nochered\\nochering\\nocherous\\nochers\\nochery\\nochone\\nochre\\nochrea\\nochreae\\nochred\\nochreous\\nochres\\nochring\\nochroid\\nochrous\\nochry\\nocotillo\\nocotillos\\nocrea\\nocreae\\nocreate\\noctad\\noctadic\\noctads\\noctagon\\noctagonal\\noctagons\\noctal\\noctane\\noctanes\\noctangle\\noctangles\\noctant\\noctantal\\noctants\\noctarchies\\noctarchy\\noctaval\\noctave\\noctaves\\noctavo\\noctavos\\noctet\\noctets\\noctette\\noctettes\\noctonaries\\noctonary\\noctopi\\noctopod\\noctopodes\\noctopods\\noctopus\\noctopuses\\noctoroon\\noctoroons\\noctroi\\noctrois\\noctuple\\noctupled\\noctuples\\noctuplet\\noctuplets\\noctuplex\\noctupling\\noctuply\\noctyl\\noctyls\\nocular\\nocularly\\noculars\\noculist\\noculists\\nod\\nodalisk\\nodalisks\\nodd\\noddball\\noddballs\\nodder\\noddest\\noddish\\noddities\\noddity\\noddly\\noddment\\noddments\\noddness\\noddnesses\\nodds\\node\\nodea\\nodeon\\nodeons\\nodes\\nodeum\\nodic\\nodious\\nodiously\\nodiousness\\nodiousnesses\\nodium\\nodiums\\nodograph\\nodographs\\nodometer\\nodometers\\nodometries\\nodometry\\nodonate\\nodonates\\nodontoid\\nodontoids\\nodor\\nodorant\\nodorants\\nodored\\nodorful\\nodorize\\nodorized\\nodorizes\\nodorizing\\nodorless\\nodorous\\nodors\\nodour\\nodourful\\nodours\\nods\\nodyl\\nodyle\\nodyles\\nodyls\\nodyssey\\nodysseys\\noe\\noecologies\\noecology\\noedema\\noedemas\\noedemata\\noedipal\\noedipean\\noeillade\\noeillades\\noenologies\\noenology\\noenomel\\noenomels\\noersted\\noersteds\\noes\\noestrin\\noestrins\\noestriol\\noestriols\\noestrone\\noestrones\\noestrous\\noestrum\\noestrums\\noestrus\\noestruses\\noeuvre\\noeuvres\\nof\\nofay\\nofays\\noff\\noffal\\noffals\\noffbeat\\noffbeats\\noffcast\\noffcasts\\noffed\\noffence\\noffences\\noffend\\noffended\\noffender\\noffenders\\noffending\\noffends\\noffense\\noffenses\\noffensive\\noffensively\\noffensiveness\\noffensivenesses\\noffensives\\noffer\\noffered\\nofferer\\nofferers\\noffering\\nofferings\\nofferor\\nofferors\\noffers\\noffertories\\noffertory\\noffhand\\noffice\\nofficeholder\\nofficeholders\\nofficer\\nofficered\\nofficering\\nofficers\\noffices\\nofficial\\nofficialdom\\nofficialdoms\\nofficially\\nofficials\\nofficiate\\nofficiated\\nofficiates\\nofficiating\\nofficious\\nofficiously\\nofficiousness\\nofficiousnesses\\noffing\\noffings\\noffish\\noffishly\\noffload\\noffloaded\\noffloading\\noffloads\\noffprint\\noffprinted\\noffprinting\\noffprints\\noffs\\noffset\\noffsets\\noffsetting\\noffshoot\\noffshoots\\noffshore\\noffside\\noffspring\\noffstage\\noft\\noften\\noftener\\noftenest\\noftentimes\\nofter\\noftest\\nofttimes\\nogam\\nogams\\nogdoad\\nogdoads\\nogee\\nogees\\nogham\\noghamic\\noghamist\\noghamists\\noghams\\nogival\\nogive\\nogives\\nogle\\nogled\\nogler\\noglers\\nogles\\nogling\\nogre\\nogreish\\nogreism\\nogreisms\\nogres\\nogress\\nogresses\\nogrish\\nogrishly\\nogrism\\nogrisms\\noh\\nohed\\nohia\\nohias\\nohing\\nohm\\nohmage\\nohmages\\nohmic\\nohmmeter\\nohmmeters\\nohms\\noho\\nohs\\noidia\\noidium\\noil\\noilbird\\noilbirds\\noilcamp\\noilcamps\\noilcan\\noilcans\\noilcloth\\noilcloths\\noilcup\\noilcups\\noiled\\noiler\\noilers\\noilhole\\noilholes\\noilier\\noiliest\\noilily\\noiliness\\noilinesses\\noiling\\noilman\\noilmen\\noilpaper\\noilpapers\\noilproof\\noils\\noilseed\\noilseeds\\noilskin\\noilskins\\noilstone\\noilstones\\noiltight\\noilway\\noilways\\noily\\noink\\noinked\\noinking\\noinks\\noinologies\\noinology\\noinomel\\noinomels\\nointment\\nointments\\noiticica\\noiticicas\\noka\\nokapi\\nokapis\\nokas\\nokay\\nokayed\\nokaying\\nokays\\noke\\nokeh\\nokehs\\nokes\\nokeydoke\\nokra\\nokras\\nold\\nolden\\nolder\\noldest\\noldie\\noldies\\noldish\\noldness\\noldnesses\\nolds\\noldster\\noldsters\\noldstyle\\noldstyles\\noldwife\\noldwives\\nole\\nolea\\noleander\\noleanders\\noleaster\\noleasters\\noleate\\noleates\\nolefin\\nolefine\\nolefines\\nolefinic\\nolefins\\noleic\\nolein\\noleine\\noleines\\noleins\\noleo\\noleomargarine\\noleomargarines\\noleos\\noles\\noleum\\noleums\\nolfactory\\nolibanum\\nolibanums\\noligarch\\noligarchic\\noligarchical\\noligarchies\\noligarchs\\noligarchy\\noligomer\\noligomers\\nolio\\nolios\\nolivary\\nolive\\nolives\\nolivine\\nolivines\\nolivinic\\nolla\\nollas\\nologies\\nologist\\nologists\\nology\\nolympiad\\nolympiads\\nom\\nomasa\\nomasum\\nomber\\nombers\\nombre\\nombres\\nombudsman\\nombudsmen\\nomega\\nomegas\\nomelet\\nomelets\\nomelette\\nomelettes\\nomen\\nomened\\nomening\\nomens\\nomenta\\nomental\\nomentum\\nomentums\\nomer\\nomers\\nomicron\\nomicrons\\nomikron\\nomikrons\\nominous\\nominously\\nominousness\\nominousnesses\\nomission\\nomissions\\nomissive\\nomit\\nomits\\nomitted\\nomitting\\nomniarch\\nomniarchs\\nomnibus\\nomnibuses\\nomnific\\nomniform\\nomnimode\\nomnipotence\\nomnipotences\\nomnipotent\\nomnipotently\\nomnipresence\\nomnipresences\\nomnipresent\\nomniscience\\nomnisciences\\nomniscient\\nomnisciently\\nomnivora\\nomnivore\\nomnivores\\nomnivorous\\nomnivorously\\nomnivorousness\\nomnivorousnesses\\nomophagies\\nomophagy\\nomphali\\nomphalos\\noms\\non\\nonager\\nonagers\\nonagri\\nonanism\\nonanisms\\nonanist\\nonanists\\nonce\\nonces\\noncidium\\noncidiums\\noncologic\\noncologies\\noncologist\\noncologists\\noncology\\noncoming\\noncomings\\nondogram\\nondograms\\none\\nonefold\\noneiric\\noneness\\nonenesses\\nonerier\\noneriest\\nonerous\\nonery\\nones\\noneself\\nonetime\\nongoing\\nonion\\nonions\\nonium\\nonlooker\\nonlookers\\nonly\\nonomatopoeia\\nonrush\\nonrushes\\nons\\nonset\\nonsets\\nonshore\\nonside\\nonslaught\\nonslaughts\\nonstage\\nontic\\nonto\\nontogenies\\nontogeny\\nontologies\\nontology\\nonus\\nonuses\\nonward\\nonwards\\nonyx\\nonyxes\\noocyst\\noocysts\\noocyte\\noocytes\\noodles\\noodlins\\noogamete\\noogametes\\noogamies\\noogamous\\noogamy\\noogenies\\noogeny\\noogonia\\noogonial\\noogonium\\noogoniums\\nooh\\noohed\\noohing\\noohs\\noolachan\\noolachans\\noolite\\noolites\\noolith\\nooliths\\noolitic\\noologic\\noologies\\noologist\\noologists\\noology\\noolong\\noolongs\\noomiac\\noomiack\\noomiacks\\noomiacs\\noomiak\\noomiaks\\noomph\\noomphs\\noophorectomy\\noophyte\\noophytes\\noophytic\\noops\\noorali\\nooralis\\noorie\\noosperm\\noosperms\\noosphere\\noospheres\\noospore\\noospores\\noosporic\\noot\\nootheca\\noothecae\\noothecal\\nootid\\nootids\\noots\\nooze\\noozed\\noozes\\noozier\\nooziest\\noozily\\nooziness\\noozinesses\\noozing\\noozy\\nop\\nopacified\\nopacifies\\nopacify\\nopacifying\\nopacities\\nopacity\\nopah\\nopahs\\nopal\\nopalesce\\nopalesced\\nopalesces\\nopalescing\\nopaline\\nopalines\\nopals\\nopaque\\nopaqued\\nopaquely\\nopaqueness\\nopaquenesses\\nopaquer\\nopaques\\nopaquest\\nopaquing\\nope\\noped\\nopen\\nopenable\\nopened\\nopener\\nopeners\\nopenest\\nopenhanded\\nopening\\nopenings\\nopenly\\nopenness\\nopennesses\\nopens\\nopenwork\\nopenworks\\nopera\\noperable\\noperably\\noperand\\noperands\\noperant\\noperants\\noperas\\noperate\\noperated\\noperates\\noperatic\\noperatics\\noperating\\noperation\\noperational\\noperationally\\noperations\\noperative\\noperator\\noperators\\nopercele\\noperceles\\nopercula\\nopercule\\nopercules\\noperetta\\noperettas\\noperon\\noperons\\noperose\\nopes\\nophidian\\nophidians\\nophite\\nophites\\nophitic\\nophthalmologies\\nophthalmologist\\nophthalmologists\\nophthalmology\\nopiate\\nopiated\\nopiates\\nopiating\\nopine\\nopined\\nopines\\noping\\nopining\\nopinion\\nopinionated\\nopinions\\nopium\\nopiumism\\nopiumisms\\nopiums\\nopossum\\nopossums\\noppidan\\noppidans\\noppilant\\noppilate\\noppilated\\noppilates\\noppilating\\nopponent\\nopponents\\nopportune\\nopportunely\\nopportunism\\nopportunisms\\nopportunist\\nopportunistic\\nopportunists\\nopportunities\\nopportunity\\noppose\\nopposed\\nopposer\\nopposers\\nopposes\\nopposing\\nopposite\\noppositely\\noppositeness\\noppositenesses\\nopposites\\nopposition\\noppositions\\noppress\\noppressed\\noppresses\\noppressing\\noppression\\noppressions\\noppressive\\noppressively\\noppressor\\noppressors\\nopprobrious\\nopprobriously\\nopprobrium\\nopprobriums\\noppugn\\noppugned\\noppugner\\noppugners\\noppugning\\noppugns\\nops\\nopsin\\nopsins\\nopsonic\\nopsonified\\nopsonifies\\nopsonify\\nopsonifying\\nopsonin\\nopsonins\\nopsonize\\nopsonized\\nopsonizes\\nopsonizing\\nopt\\noptative\\noptatives\\nopted\\noptic\\noptical\\noptician\\nopticians\\nopticist\\nopticists\\noptics\\noptima\\noptimal\\noptimally\\noptime\\noptimes\\noptimise\\noptimised\\noptimises\\noptimising\\noptimism\\noptimisms\\noptimist\\noptimistic\\noptimistically\\noptimists\\noptimize\\noptimized\\noptimizes\\noptimizing\\noptimum\\noptimums\\nopting\\noption\\noptional\\noptionally\\noptionals\\noptioned\\noptionee\\noptionees\\noptioning\\noptions\\noptometries\\noptometrist\\noptometry\\nopts\\nopulence\\nopulences\\nopulencies\\nopulency\\nopulent\\nopuntia\\nopuntias\\nopus\\nopuscula\\nopuscule\\nopuscules\\nopuses\\noquassa\\noquassas\\nor\\nora\\norach\\norache\\noraches\\noracle\\noracles\\noracular\\noral\\noralities\\norality\\norally\\norals\\norang\\norange\\norangeade\\norangeades\\norangeries\\norangery\\noranges\\norangey\\norangier\\norangiest\\norangish\\norangoutan\\norangoutans\\norangs\\norangutan\\norangutang\\norangutangs\\norangutans\\norangy\\norate\\norated\\norates\\norating\\noration\\norations\\norator\\noratorical\\noratories\\noratorio\\noratorios\\norators\\noratory\\noratress\\noratresses\\noratrices\\noratrix\\norb\\norbed\\norbicular\\norbing\\norbit\\norbital\\norbitals\\norbited\\norbiter\\norbiters\\norbiting\\norbits\\norbs\\norc\\norca\\norcas\\norcein\\norceins\\norchard\\norchardist\\norchardists\\norchards\\norchestra\\norchestral\\norchestras\\norchestrate\\norchestrated\\norchestrates\\norchestrating\\norchestration\\norchestrations\\norchid\\norchids\\norchiectomy\\norchil\\norchils\\norchis\\norchises\\norchitic\\norchitis\\norchitises\\norcin\\norcinol\\norcinols\\norcins\\norcs\\nordain\\nordained\\nordainer\\nordainers\\nordaining\\nordains\\nordeal\\nordeals\\norder\\nordered\\norderer\\norderers\\nordering\\norderlies\\norderliness\\norderlinesses\\norderly\\norders\\nordinal\\nordinals\\nordinance\\nordinances\\nordinand\\nordinands\\nordinarier\\nordinaries\\nordinariest\\nordinarily\\nordinary\\nordinate\\nordinates\\nordination\\nordinations\\nordines\\nordnance\\nordnances\\nordo\\nordos\\nordure\\nordures\\nore\\noread\\noreads\\norectic\\norective\\noregano\\noreganos\\noreide\\noreides\\nores\\norfray\\norfrays\\norgan\\norgana\\norgandie\\norgandies\\norgandy\\norganic\\norganically\\norganics\\norganise\\norganised\\norganises\\norganising\\norganism\\norganisms\\norganist\\norganists\\norganization\\norganizational\\norganizationally\\norganizations\\norganize\\norganized\\norganizer\\norganizers\\norganizes\\norganizing\\norganon\\norganons\\norgans\\norganum\\norganums\\norganza\\norganzas\\norgasm\\norgasmic\\norgasms\\norgastic\\norgeat\\norgeats\\norgiac\\norgic\\norgies\\norgulous\\norgy\\noribatid\\noribatids\\noribi\\noribis\\noriel\\noriels\\norient\\noriental\\norientals\\norientation\\norientations\\noriented\\norienting\\norients\\norifice\\norifices\\norigami\\norigamis\\norigan\\norigans\\noriganum\\noriganums\\norigin\\noriginal\\noriginalities\\noriginality\\noriginally\\noriginals\\noriginate\\noriginated\\noriginates\\noriginating\\noriginator\\noriginators\\norigins\\norinasal\\norinasals\\noriole\\norioles\\norison\\norisons\\norle\\norles\\norlop\\norlops\\normer\\normers\\normolu\\normolus\\nornament\\nornamental\\nornamentation\\nornamentations\\nornamented\\nornamenting\\nornaments\\nornate\\nornately\\nornateness\\nornatenesses\\nornerier\\norneriest\\nornery\\nornis\\nornithes\\nornithic\\nornithological\\nornithologist\\nornithologists\\nornithology\\norogenic\\norogenies\\norogeny\\noroide\\noroides\\norologies\\norology\\norometer\\norometers\\norotund\\norphan\\norphanage\\norphanages\\norphaned\\norphaning\\norphans\\norphic\\norphical\\norphrey\\norphreys\\norpiment\\norpiments\\norpin\\norpine\\norpines\\norpins\\norra\\norreries\\norrery\\norrice\\norrices\\norris\\norrises\\nors\\nort\\northicon\\northicons\\northo\\northodontia\\northodontics\\northodontist\\northodontists\\northodox\\northodoxes\\northodoxies\\northodoxy\\northoepies\\northoepy\\northogonal\\northographic\\northographies\\northography\\northopedic\\northopedics\\northopedist\\northopedists\\northotic\\nortolan\\nortolans\\norts\\noryx\\noryxes\\nos\\nosar\\noscillate\\noscillated\\noscillates\\noscillating\\noscillation\\noscillations\\noscine\\noscines\\noscinine\\noscitant\\noscula\\nosculant\\noscular\\nosculate\\nosculated\\nosculates\\nosculating\\noscule\\noscules\\nosculum\\nose\\noses\\nosier\\nosiers\\nosmatic\\nosmic\\nosmious\\nosmium\\nosmiums\\nosmol\\nosmolal\\nosmolar\\nosmols\\nosmose\\nosmosed\\nosmoses\\nosmosing\\nosmosis\\nosmotic\\nosmous\\nosmund\\nosmunda\\nosmundas\\nosmunds\\nosnaburg\\nosnaburgs\\nosprey\\nospreys\\nossa\\nossein\\nosseins\\nosseous\\nossia\\nossicle\\nossicles\\nossific\\nossified\\nossifier\\nossifiers\\nossifies\\nossify\\nossifying\\nossuaries\\nossuary\\nosteal\\nosteitic\\nosteitides\\nosteitis\\nostensible\\nostensibly\\nostentation\\nostentations\\nostentatious\\nostentatiously\\nosteoblast\\nosteoblasts\\nosteoid\\nosteoids\\nosteoma\\nosteomas\\nosteomata\\nosteopath\\nosteopathic\\nosteopathies\\nosteopaths\\nosteopathy\\nosteopenia\\nostia\\nostiaries\\nostiary\\nostinato\\nostinatos\\nostiolar\\nostiole\\nostioles\\nostium\\nostler\\nostlers\\nostmark\\nostmarks\\nostomies\\nostomy\\nostoses\\nostosis\\nostosises\\nostracism\\nostracisms\\nostracize\\nostracized\\nostracizes\\nostracizing\\nostracod\\nostracods\\nostrich\\nostriches\\nostsis\\nostsises\\notalgia\\notalgias\\notalgic\\notalgies\\notalgy\\nother\\nothers\\notherwise\\notic\\notiose\\notiosely\\notiosities\\notiosity\\notitic\\notitides\\notitis\\notocyst\\notocysts\\notolith\\notoliths\\notologies\\notology\\notoscope\\notoscopes\\notoscopies\\notoscopy\\nototoxicities\\nototoxicity\\nottar\\nottars\\nottava\\nottavas\\notter\\notters\\notto\\nottoman\\nottomans\\nottos\\nouabain\\nouabains\\nouch\\nouches\\noud\\nouds\\nought\\noughted\\noughting\\noughts\\nouistiti\\nouistitis\\nounce\\nounces\\nouph\\nouphe\\nouphes\\nouphs\\nour\\nourang\\nourangs\\nourari\\nouraris\\nourebi\\nourebis\\nourie\\nours\\nourself\\nourselves\\nousel\\nousels\\noust\\nousted\\nouster\\nousters\\nousting\\nousts\\nout\\noutact\\noutacted\\noutacting\\noutacts\\noutadd\\noutadded\\noutadding\\noutadds\\noutage\\noutages\\noutargue\\noutargued\\noutargues\\noutarguing\\noutask\\noutasked\\noutasking\\noutasks\\noutate\\noutback\\noutbacks\\noutbake\\noutbaked\\noutbakes\\noutbaking\\noutbark\\noutbarked\\noutbarking\\noutbarks\\noutbawl\\noutbawled\\noutbawling\\noutbawls\\noutbeam\\noutbeamed\\noutbeaming\\noutbeams\\noutbeg\\noutbegged\\noutbegging\\noutbegs\\noutbid\\noutbidden\\noutbidding\\noutbids\\noutblaze\\noutblazed\\noutblazes\\noutblazing\\noutbleat\\noutbleated\\noutbleating\\noutbleats\\noutbless\\noutblessed\\noutblesses\\noutblessing\\noutbloom\\noutbloomed\\noutblooming\\noutblooms\\noutbluff\\noutbluffed\\noutbluffing\\noutbluffs\\noutblush\\noutblushed\\noutblushes\\noutblushing\\noutboard\\noutboards\\noutboast\\noutboasted\\noutboasting\\noutboasts\\noutbound\\noutbox\\noutboxed\\noutboxes\\noutboxing\\noutbrag\\noutbragged\\noutbragging\\noutbrags\\noutbrave\\noutbraved\\noutbraves\\noutbraving\\noutbreak\\noutbreaks\\noutbred\\noutbreed\\noutbreeding\\noutbreeds\\noutbribe\\noutbribed\\noutbribes\\noutbribing\\noutbuild\\noutbuilding\\noutbuildings\\noutbuilds\\noutbuilt\\noutbullied\\noutbullies\\noutbully\\noutbullying\\noutburn\\noutburned\\noutburning\\noutburns\\noutburnt\\noutburst\\noutbursts\\noutby\\noutbye\\noutcaper\\noutcapered\\noutcapering\\noutcapers\\noutcast\\noutcaste\\noutcastes\\noutcasts\\noutcatch\\noutcatches\\noutcatching\\noutcaught\\noutcavil\\noutcaviled\\noutcaviling\\noutcavilled\\noutcavilling\\noutcavils\\noutcharm\\noutcharmed\\noutcharming\\noutcharms\\noutcheat\\noutcheated\\noutcheating\\noutcheats\\noutchid\\noutchidden\\noutchide\\noutchided\\noutchides\\noutchiding\\noutclass\\noutclassed\\noutclasses\\noutclassing\\noutclimb\\noutclimbed\\noutclimbing\\noutclimbs\\noutclomb\\noutcome\\noutcomes\\noutcook\\noutcooked\\noutcooking\\noutcooks\\noutcrawl\\noutcrawled\\noutcrawling\\noutcrawls\\noutcried\\noutcries\\noutcrop\\noutcropped\\noutcropping\\noutcrops\\noutcross\\noutcrossed\\noutcrosses\\noutcrossing\\noutcrow\\noutcrowed\\noutcrowing\\noutcrows\\noutcry\\noutcrying\\noutcurse\\noutcursed\\noutcurses\\noutcursing\\noutcurve\\noutcurves\\noutdance\\noutdanced\\noutdances\\noutdancing\\noutdare\\noutdared\\noutdares\\noutdaring\\noutdate\\noutdated\\noutdates\\noutdating\\noutdid\\noutdistance\\noutdistanced\\noutdistances\\noutdistancing\\noutdo\\noutdodge\\noutdodged\\noutdodges\\noutdodging\\noutdoer\\noutdoers\\noutdoes\\noutdoing\\noutdone\\noutdoor\\noutdoors\\noutdrank\\noutdraw\\noutdrawing\\noutdrawn\\noutdraws\\noutdream\\noutdreamed\\noutdreaming\\noutdreams\\noutdreamt\\noutdress\\noutdressed\\noutdresses\\noutdressing\\noutdrew\\noutdrink\\noutdrinking\\noutdrinks\\noutdrive\\noutdriven\\noutdrives\\noutdriving\\noutdrop\\noutdropped\\noutdropping\\noutdrops\\noutdrove\\noutdrunk\\nouteat\\nouteaten\\nouteating\\nouteats\\noutecho\\noutechoed\\noutechoes\\noutechoing\\nouted\\nouter\\noutermost\\nouters\\noutfable\\noutfabled\\noutfables\\noutfabling\\noutface\\noutfaced\\noutfaces\\noutfacing\\noutfall\\noutfalls\\noutfast\\noutfasted\\noutfasting\\noutfasts\\noutfawn\\noutfawned\\noutfawning\\noutfawns\\noutfeast\\noutfeasted\\noutfeasting\\noutfeasts\\noutfeel\\noutfeeling\\noutfeels\\noutfelt\\noutfield\\noutfielder\\noutfielders\\noutfields\\noutfight\\noutfighting\\noutfights\\noutfind\\noutfinding\\noutfinds\\noutfire\\noutfired\\noutfires\\noutfiring\\noutfit\\noutfits\\noutfitted\\noutfitter\\noutfitters\\noutfitting\\noutflank\\noutflanked\\noutflanking\\noutflanks\\noutflew\\noutflies\\noutflow\\noutflowed\\noutflowing\\noutflown\\noutflows\\noutfly\\noutflying\\noutfool\\noutfooled\\noutfooling\\noutfools\\noutfoot\\noutfooted\\noutfooting\\noutfoots\\noutfought\\noutfound\\noutfox\\noutfoxed\\noutfoxes\\noutfoxing\\noutfrown\\noutfrowned\\noutfrowning\\noutfrowns\\noutgain\\noutgained\\noutgaining\\noutgains\\noutgas\\noutgassed\\noutgasses\\noutgassing\\noutgave\\noutgive\\noutgiven\\noutgives\\noutgiving\\noutglare\\noutglared\\noutglares\\noutglaring\\noutglow\\noutglowed\\noutglowing\\noutglows\\noutgnaw\\noutgnawed\\noutgnawing\\noutgnawn\\noutgnaws\\noutgo\\noutgoes\\noutgoing\\noutgoings\\noutgone\\noutgrew\\noutgrin\\noutgrinned\\noutgrinning\\noutgrins\\noutgroup\\noutgroups\\noutgrow\\noutgrowing\\noutgrown\\noutgrows\\noutgrowth\\noutgrowths\\noutguess\\noutguessed\\noutguesses\\noutguessing\\noutguide\\noutguided\\noutguides\\noutguiding\\noutgun\\noutgunned\\noutgunning\\noutguns\\noutgush\\noutgushes\\nouthaul\\nouthauls\\nouthear\\noutheard\\nouthearing\\nouthears\\nouthit\\nouthits\\nouthitting\\nouthouse\\nouthouses\\nouthowl\\nouthowled\\nouthowling\\nouthowls\\nouthumor\\nouthumored\\nouthumoring\\nouthumors\\nouting\\noutings\\noutjinx\\noutjinxed\\noutjinxes\\noutjinxing\\noutjump\\noutjumped\\noutjumping\\noutjumps\\noutjut\\noutjuts\\noutjutted\\noutjutting\\noutkeep\\noutkeeping\\noutkeeps\\noutkept\\noutkick\\noutkicked\\noutkicking\\noutkicks\\noutkiss\\noutkissed\\noutkisses\\noutkissing\\noutlaid\\noutlain\\noutland\\noutlandish\\noutlandishly\\noutlands\\noutlast\\noutlasted\\noutlasting\\noutlasts\\noutlaugh\\noutlaughed\\noutlaughing\\noutlaughs\\noutlaw\\noutlawed\\noutlawing\\noutlawries\\noutlawry\\noutlaws\\noutlay\\noutlaying\\noutlays\\noutleap\\noutleaped\\noutleaping\\noutleaps\\noutleapt\\noutlearn\\noutlearned\\noutlearning\\noutlearns\\noutlearnt\\noutlet\\noutlets\\noutlie\\noutlier\\noutliers\\noutlies\\noutline\\noutlined\\noutlines\\noutlining\\noutlive\\noutlived\\noutliver\\noutlivers\\noutlives\\noutliving\\noutlook\\noutlooks\\noutlove\\noutloved\\noutloves\\noutloving\\noutlying\\noutman\\noutmanned\\noutmanning\\noutmans\\noutmarch\\noutmarched\\noutmarches\\noutmarching\\noutmatch\\noutmatched\\noutmatches\\noutmatching\\noutmode\\noutmoded\\noutmodes\\noutmoding\\noutmost\\noutmove\\noutmoved\\noutmoves\\noutmoving\\noutnumber\\noutnumbered\\noutnumbering\\noutnumbers\\noutpace\\noutpaced\\noutpaces\\noutpacing\\noutpaint\\noutpainted\\noutpainting\\noutpaints\\noutpass\\noutpassed\\noutpasses\\noutpassing\\noutpatient\\noutpatients\\noutpitied\\noutpities\\noutpity\\noutpitying\\noutplan\\noutplanned\\noutplanning\\noutplans\\noutplay\\noutplayed\\noutplaying\\noutplays\\noutplod\\noutplodded\\noutplodding\\noutplods\\noutpoint\\noutpointed\\noutpointing\\noutpoints\\noutpoll\\noutpolled\\noutpolling\\noutpolls\\noutport\\noutports\\noutpost\\noutposts\\noutpour\\noutpoured\\noutpouring\\noutpours\\noutpray\\noutprayed\\noutpraying\\noutprays\\noutpreen\\noutpreened\\noutpreening\\noutpreens\\noutpress\\noutpressed\\noutpresses\\noutpressing\\noutprice\\noutpriced\\noutprices\\noutpricing\\noutpull\\noutpulled\\noutpulling\\noutpulls\\noutpush\\noutpushed\\noutpushes\\noutpushing\\noutput\\noutputs\\noutputted\\noutputting\\noutquote\\noutquoted\\noutquotes\\noutquoting\\noutrace\\noutraced\\noutraces\\noutracing\\noutrage\\noutraged\\noutrages\\noutraging\\noutraise\\noutraised\\noutraises\\noutraising\\noutran\\noutrance\\noutrances\\noutrang\\noutrange\\noutranged\\noutranges\\noutranging\\noutrank\\noutranked\\noutranking\\noutranks\\noutrave\\noutraved\\noutraves\\noutraving\\noutre\\noutreach\\noutreached\\noutreaches\\noutreaching\\noutread\\noutreading\\noutreads\\noutregeous\\noutregeously\\noutridden\\noutride\\noutrider\\noutriders\\noutrides\\noutriding\\noutright\\noutring\\noutringing\\noutrings\\noutrival\\noutrivaled\\noutrivaling\\noutrivalled\\noutrivalling\\noutrivals\\noutroar\\noutroared\\noutroaring\\noutroars\\noutrock\\noutrocked\\noutrocking\\noutrocks\\noutrode\\noutroll\\noutrolled\\noutrolling\\noutrolls\\noutroot\\noutrooted\\noutrooting\\noutroots\\noutrun\\noutrung\\noutrunning\\noutruns\\noutrush\\noutrushes\\nouts\\noutsail\\noutsailed\\noutsailing\\noutsails\\noutsang\\noutsat\\noutsavor\\noutsavored\\noutsavoring\\noutsavors\\noutsaw\\noutscold\\noutscolded\\noutscolding\\noutscolds\\noutscore\\noutscored\\noutscores\\noutscoring\\noutscorn\\noutscorned\\noutscorning\\noutscorns\\noutsee\\noutseeing\\noutseen\\noutsees\\noutsell\\noutselling\\noutsells\\noutsert\\noutserts\\noutserve\\noutserved\\noutserves\\noutserving\\noutset\\noutsets\\noutshame\\noutshamed\\noutshames\\noutshaming\\noutshine\\noutshined\\noutshines\\noutshining\\noutshone\\noutshoot\\noutshooting\\noutshoots\\noutshot\\noutshout\\noutshouted\\noutshouting\\noutshouts\\noutside\\noutsider\\noutsiders\\noutsides\\noutsight\\noutsights\\noutsin\\noutsing\\noutsinging\\noutsings\\noutsinned\\noutsinning\\noutsins\\noutsit\\noutsits\\noutsitting\\noutsize\\noutsized\\noutsizes\\noutskirt\\noutskirts\\noutsleep\\noutsleeping\\noutsleeps\\noutslept\\noutsmart\\noutsmarted\\noutsmarting\\noutsmarts\\noutsmile\\noutsmiled\\noutsmiles\\noutsmiling\\noutsmoke\\noutsmoked\\noutsmokes\\noutsmoking\\noutsnore\\noutsnored\\noutsnores\\noutsnoring\\noutsoar\\noutsoared\\noutsoaring\\noutsoars\\noutsold\\noutsole\\noutsoles\\noutspan\\noutspanned\\noutspanning\\noutspans\\noutspeak\\noutspeaking\\noutspeaks\\noutspell\\noutspelled\\noutspelling\\noutspells\\noutspelt\\noutspend\\noutspending\\noutspends\\noutspent\\noutspoke\\noutspoken\\noutspokenness\\noutspokennesses\\noutstand\\noutstanding\\noutstandingly\\noutstands\\noutstare\\noutstared\\noutstares\\noutstaring\\noutstart\\noutstarted\\noutstarting\\noutstarts\\noutstate\\noutstated\\noutstates\\noutstating\\noutstay\\noutstayed\\noutstaying\\noutstays\\noutsteer\\noutsteered\\noutsteering\\noutsteers\\noutstood\\noutstrip\\noutstripped\\noutstripping\\noutstrips\\noutstudied\\noutstudies\\noutstudy\\noutstudying\\noutstunt\\noutstunted\\noutstunting\\noutstunts\\noutsulk\\noutsulked\\noutsulking\\noutsulks\\noutsung\\noutswam\\noutsware\\noutswear\\noutswearing\\noutswears\\noutswim\\noutswimming\\noutswims\\noutswore\\noutsworn\\noutswum\\nouttake\\nouttakes\\nouttalk\\nouttalked\\nouttalking\\nouttalks\\nouttask\\nouttasked\\nouttasking\\nouttasks\\nouttell\\nouttelling\\nouttells\\noutthank\\noutthanked\\noutthanking\\noutthanks\\noutthink\\noutthinking\\noutthinks\\noutthought\\noutthrew\\noutthrob\\noutthrobbed\\noutthrobbing\\noutthrobs\\noutthrow\\noutthrowing\\noutthrown\\noutthrows\\nouttold\\nouttower\\nouttowered\\nouttowering\\nouttowers\\nouttrade\\nouttraded\\nouttrades\\nouttrading\\nouttrick\\nouttricked\\nouttricking\\nouttricks\\nouttrot\\nouttrots\\nouttrotted\\nouttrotting\\nouttrump\\nouttrumped\\nouttrumping\\nouttrumps\\noutturn\\noutturns\\noutvalue\\noutvalued\\noutvalues\\noutvaluing\\noutvaunt\\noutvaunted\\noutvaunting\\noutvaunts\\noutvoice\\noutvoiced\\noutvoices\\noutvoicing\\noutvote\\noutvoted\\noutvotes\\noutvoting\\noutwait\\noutwaited\\noutwaiting\\noutwaits\\noutwalk\\noutwalked\\noutwalking\\noutwalks\\noutwar\\noutward\\noutwards\\noutwarred\\noutwarring\\noutwars\\noutwash\\noutwashes\\noutwaste\\noutwasted\\noutwastes\\noutwasting\\noutwatch\\noutwatched\\noutwatches\\noutwatching\\noutwear\\noutwearied\\noutwearies\\noutwearing\\noutwears\\noutweary\\noutwearying\\noutweep\\noutweeping\\noutweeps\\noutweigh\\noutweighed\\noutweighing\\noutweighs\\noutwent\\noutwept\\noutwhirl\\noutwhirled\\noutwhirling\\noutwhirls\\noutwile\\noutwiled\\noutwiles\\noutwiling\\noutwill\\noutwilled\\noutwilling\\noutwills\\noutwind\\noutwinded\\noutwinding\\noutwinds\\noutwish\\noutwished\\noutwishes\\noutwishing\\noutwit\\noutwits\\noutwitted\\noutwitting\\noutwore\\noutwork\\noutworked\\noutworking\\noutworks\\noutworn\\noutwrit\\noutwrite\\noutwrites\\noutwriting\\noutwritten\\noutwrote\\noutwrought\\noutyell\\noutyelled\\noutyelling\\noutyells\\noutyelp\\noutyelped\\noutyelping\\noutyelps\\noutyield\\noutyielded\\noutyielding\\noutyields\\nouzel\\nouzels\\nouzo\\nouzos\\nova\\noval\\novalities\\novality\\novally\\novalness\\novalnesses\\novals\\novarial\\novarian\\novaries\\novariole\\novarioles\\novaritides\\novaritis\\novary\\novate\\novately\\novation\\novations\\noven\\novenbird\\novenbirds\\novenlike\\novens\\novenware\\novenwares\\nover\\noverable\\noverabundance\\noverabundances\\noverabundant\\noveracceptance\\noveracceptances\\noverachiever\\noverachievers\\noveract\\noveracted\\noveracting\\noveractive\\noveracts\\noverage\\noverages\\noveraggresive\\noverall\\noveralls\\noverambitious\\noveramplified\\noveramplifies\\noveramplify\\noveramplifying\\noveranalyze\\noveranalyzed\\noveranalyzes\\noveranalyzing\\noveranxieties\\noveranxiety\\noveranxious\\noverapologetic\\noverapt\\noverarch\\noverarched\\noverarches\\noverarching\\noverarm\\noverarousal\\noverarouse\\noveraroused\\noverarouses\\noverarousing\\noverassertive\\noverate\\noverawe\\noverawed\\noverawes\\noverawing\\noverbake\\noverbaked\\noverbakes\\noverbaking\\noverbear\\noverbearing\\noverbears\\noverbet\\noverbets\\noverbetted\\noverbetting\\noverbid\\noverbidden\\noverbidding\\noverbids\\noverbig\\noverbite\\noverbites\\noverblew\\noverblow\\noverblowing\\noverblown\\noverblows\\noverboard\\noverbold\\noverbook\\noverbooked\\noverbooking\\noverbooks\\noverbore\\noverborn\\noverborne\\noverborrow\\noverborrowed\\noverborrowing\\noverborrows\\noverbought\\noverbred\\noverbright\\noverbroad\\noverbuild\\noverbuilded\\noverbuilding\\noverbuilds\\noverburden\\noverburdened\\noverburdening\\noverburdens\\noverbusy\\noverbuy\\noverbuying\\noverbuys\\novercall\\novercalled\\novercalling\\novercalls\\novercame\\novercapacities\\novercapacity\\novercapitalize\\novercapitalized\\novercapitalizes\\novercapitalizing\\novercareful\\novercast\\novercasting\\novercasts\\novercautious\\novercharge\\novercharged\\novercharges\\novercharging\\novercivilized\\noverclean\\novercoat\\novercoats\\novercold\\novercome\\novercomes\\novercoming\\novercommit\\novercommited\\novercommiting\\novercommits\\novercompensate\\novercompensated\\novercompensates\\novercompensating\\novercomplicate\\novercomplicated\\novercomplicates\\novercomplicating\\noverconcern\\noverconcerned\\noverconcerning\\noverconcerns\\noverconfidence\\noverconfidences\\noverconfident\\noverconscientious\\noverconsume\\noverconsumed\\noverconsumes\\noverconsuming\\noverconsumption\\noverconsumptions\\novercontrol\\novercontroled\\novercontroling\\novercontrols\\novercook\\novercooked\\novercooking\\novercooks\\novercool\\novercooled\\novercooling\\novercools\\novercorrect\\novercorrected\\novercorrecting\\novercorrects\\novercoy\\novercram\\novercrammed\\novercramming\\novercrams\\novercritical\\novercrop\\novercropped\\novercropping\\novercrops\\novercrowd\\novercrowded\\novercrowding\\novercrowds\\noverdare\\noverdared\\noverdares\\noverdaring\\noverdear\\noverdeck\\noverdecked\\noverdecking\\noverdecks\\noverdecorate\\noverdecorated\\noverdecorates\\noverdecorating\\noverdepend\\noverdepended\\noverdependent\\noverdepending\\noverdepends\\noverdevelop\\noverdeveloped\\noverdeveloping\\noverdevelops\\noverdid\\noverdo\\noverdoer\\noverdoers\\noverdoes\\noverdoing\\noverdone\\noverdose\\noverdosed\\noverdoses\\noverdosing\\noverdraft\\noverdrafts\\noverdramatic\\noverdramatize\\noverdramatized\\noverdramatizes\\noverdramatizing\\noverdraw\\noverdrawing\\noverdrawn\\noverdraws\\noverdress\\noverdressed\\noverdresses\\noverdressing\\noverdrew\\noverdrink\\noverdrinks\\noverdry\\noverdue\\noverdye\\noverdyed\\noverdyeing\\noverdyes\\novereager\\novereasy\\novereat\\novereaten\\novereater\\novereaters\\novereating\\novereats\\novered\\novereducate\\novereducated\\novereducates\\novereducating\\noverelaborate\\noveremotional\\noveremphases\\noveremphasis\\noveremphasize\\noveremphasized\\noveremphasizes\\noveremphasizing\\noverenergetic\\noverenthusiastic\\noverestimate\\noverestimated\\noverestimates\\noverestimating\\noverexaggerate\\noverexaggerated\\noverexaggerates\\noverexaggerating\\noverexaggeration\\noverexaggerations\\noverexcite\\noverexcited\\noverexcitement\\noverexcitements\\noverexcites\\noverexciting\\noverexercise\\noverexert\\noverexertion\\noverexertions\\noverexhaust\\noverexhausted\\noverexhausting\\noverexhausts\\noverexpand\\noverexpanded\\noverexpanding\\noverexpands\\noverexpansion\\noverexpansions\\noverexplain\\noverexplained\\noverexplaining\\noverexplains\\noverexploit\\noverexploited\\noverexploiting\\noverexploits\\noverexpose\\noverexposed\\noverexposes\\noverexposing\\noverextend\\noverextended\\noverextending\\noverextends\\noverextension\\noverextensions\\noverexuberant\\noverfamiliar\\noverfar\\noverfast\\noverfat\\noverfatigue\\noverfatigued\\noverfatigues\\noverfatiguing\\noverfear\\noverfeared\\noverfearing\\noverfears\\noverfed\\noverfeed\\noverfeeding\\noverfeeds\\noverfertilize\\noverfertilized\\noverfertilizes\\noverfertilizing\\noverfill\\noverfilled\\noverfilling\\noverfills\\noverfish\\noverfished\\noverfishes\\noverfishing\\noverflew\\noverflies\\noverflow\\noverflowed\\noverflowing\\noverflown\\noverflows\\noverfly\\noverflying\\noverfond\\noverfoul\\noverfree\\noverfull\\novergenerous\\novergild\\novergilded\\novergilding\\novergilds\\novergilt\\novergird\\novergirded\\novergirding\\novergirds\\novergirt\\noverglad\\noverglamorize\\noverglamorized\\noverglamorizes\\noverglamorizing\\novergoad\\novergoaded\\novergoading\\novergoads\\novergraze\\novergrazed\\novergrazes\\novergrazing\\novergrew\\novergrow\\novergrowing\\novergrown\\novergrows\\noverhand\\noverhanded\\noverhanding\\noverhands\\noverhang\\noverhanging\\noverhangs\\noverhard\\noverharvest\\noverharvested\\noverharvesting\\noverharvests\\noverhasty\\noverhate\\noverhated\\noverhates\\noverhating\\noverhaul\\noverhauled\\noverhauling\\noverhauls\\noverhead\\noverheads\\noverheap\\noverheaped\\noverheaping\\noverheaps\\noverhear\\noverheard\\noverhearing\\noverhears\\noverheat\\noverheated\\noverheating\\noverheats\\noverheld\\noverhigh\\noverhold\\noverholding\\noverholds\\noverholy\\noverhope\\noverhoped\\noverhopes\\noverhoping\\noverhot\\noverhung\\noverhunt\\noverhunted\\noverhunting\\noverhunts\\noveridealize\\noveridealized\\noveridealizes\\noveridealizing\\noveridle\\noverimaginative\\noverimbibe\\noverimbibed\\noverimbibes\\noverimbibing\\noverimpressed\\noverindebted\\noverindulge\\noverindulged\\noverindulgent\\noverindulges\\noverindulging\\noverinflate\\noverinflated\\noverinflates\\noverinflating\\noverinfluence\\noverinfluenced\\noverinfluences\\noverinfluencing\\novering\\noverinsistent\\noverintense\\noverintensities\\noverintensity\\noverinvest\\noverinvested\\noverinvesting\\noverinvests\\noverinvolve\\noverinvolved\\noverinvolves\\noverinvolving\\noverjoy\\noverjoyed\\noverjoying\\noverjoys\\noverjust\\noverkeen\\noverkill\\noverkilled\\noverkilling\\noverkills\\noverkind\\noverlade\\noverladed\\noverladen\\noverlades\\noverlading\\noverlaid\\noverlain\\noverland\\noverlands\\noverlap\\noverlapped\\noverlapping\\noverlaps\\noverlarge\\noverlate\\noverlax\\noverlay\\noverlaying\\noverlays\\noverleaf\\noverleap\\noverleaped\\noverleaping\\noverleaps\\noverleapt\\noverlet\\noverlets\\noverletting\\noverlewd\\noverliberal\\noverlie\\noverlies\\noverlive\\noverlived\\noverlives\\noverliving\\noverload\\noverloaded\\noverloading\\noverloads\\noverlong\\noverlook\\noverlooked\\noverlooking\\noverlooks\\noverlord\\noverlorded\\noverlording\\noverlords\\noverloud\\noverlove\\noverloved\\noverloves\\noverloving\\noverly\\noverlying\\noverman\\novermanned\\novermanning\\novermans\\novermany\\novermedicate\\novermedicated\\novermedicates\\novermedicating\\novermeek\\novermelt\\novermelted\\novermelting\\novermelts\\novermen\\novermild\\novermix\\novermixed\\novermixes\\novermixing\\novermodest\\novermuch\\novermuches\\novernear\\noverneat\\novernew\\novernice\\novernight\\noverobvious\\noveroptimistic\\noverorganize\\noverorganized\\noverorganizes\\noverorganizing\\noverpaid\\noverparticular\\noverpass\\noverpassed\\noverpasses\\noverpassing\\noverpast\\noverpatriotic\\noverpay\\noverpaying\\noverpayment\\noverpayments\\noverpays\\noverpermissive\\noverpert\\noverplay\\noverplayed\\noverplaying\\noverplays\\noverplied\\noverplies\\noverplus\\noverpluses\\noverply\\noverplying\\noverpopulated\\noverpossessive\\noverpower\\noverpowered\\noverpowering\\noverpowers\\noverprase\\noverprased\\noverprases\\noverprasing\\noverprescribe\\noverprescribed\\noverprescribes\\noverprescribing\\noverpressure\\noverpressures\\noverprice\\noverpriced\\noverprices\\noverpricing\\noverprint\\noverprinted\\noverprinting\\noverprints\\noverprivileged\\noverproduce\\noverproduced\\noverproduces\\noverproducing\\noverproduction\\noverproductions\\noverpromise\\noverprotect\\noverprotected\\noverprotecting\\noverprotective\\noverprotects\\noverpublicize\\noverpublicized\\noverpublicizes\\noverpublicizing\\noverqualified\\noverran\\noverrank\\noverrash\\noverrate\\noverrated\\noverrates\\noverrating\\noverreach\\noverreached\\noverreaches\\noverreaching\\noverreact\\noverreacted\\noverreacting\\noverreaction\\noverreactions\\noverreacts\\noverrefine\\noverregulate\\noverregulated\\noverregulates\\noverregulating\\noverregulation\\noverregulations\\noverreliance\\noverreliances\\noverrepresent\\noverrepresented\\noverrepresenting\\noverrepresents\\noverrespond\\noverresponded\\noverresponding\\noverresponds\\noverrich\\noverridden\\noverride\\noverrides\\noverriding\\noverrife\\noverripe\\noverrode\\noverrude\\noverruff\\noverruffed\\noverruffing\\noverruffs\\noverrule\\noverruled\\noverrules\\noverruling\\noverrun\\noverrunning\\noverruns\\novers\\noversad\\noversale\\noversales\\noversalt\\noversalted\\noversalting\\noversalts\\noversaturate\\noversaturated\\noversaturates\\noversaturating\\noversave\\noversaved\\noversaves\\noversaving\\noversaw\\noversea\\noverseas\\noversee\\noverseed\\noverseeded\\noverseeding\\noverseeds\\noverseeing\\noverseen\\noverseer\\noverseers\\noversees\\noversell\\noverselling\\noversells\\noversensitive\\noverserious\\noverset\\noversets\\noversetting\\noversew\\noversewed\\noversewing\\noversewn\\noversews\\noversexed\\novershadow\\novershadowed\\novershadowing\\novershadows\\novershoe\\novershoes\\novershoot\\novershooting\\novershoots\\novershot\\novershots\\noversick\\noverside\\noversides\\noversight\\noversights\\noversimple\\noversimplified\\noversimplifies\\noversimplify\\noversimplifying\\noversize\\noversizes\\noversleep\\noversleeping\\noversleeps\\noverslept\\noverslip\\noverslipped\\noverslipping\\noverslips\\noverslipt\\noverslow\\noversoak\\noversoaked\\noversoaking\\noversoaks\\noversoft\\noversold\\noversolicitous\\noversoon\\noversoul\\noversouls\\noverspecialize\\noverspecialized\\noverspecializes\\noverspecializing\\noverspend\\noverspended\\noverspending\\noverspends\\noverspin\\noverspins\\noverspread\\noverspreading\\noverspreads\\noverstaff\\noverstaffed\\noverstaffing\\noverstaffs\\noverstate\\noverstated\\noverstatement\\noverstatements\\noverstates\\noverstating\\noverstay\\noverstayed\\noverstaying\\noverstays\\noverstep\\noverstepped\\noverstepping\\noversteps\\noverstimulate\\noverstimulated\\noverstimulates\\noverstimulating\\noverstir\\noverstirred\\noverstirring\\noverstirs\\noverstock\\noverstocked\\noverstocking\\noverstocks\\noverstrain\\noverstrained\\noverstraining\\noverstrains\\noverstress\\noverstressed\\noverstresses\\noverstressing\\noverstretch\\noverstretched\\noverstretches\\noverstretching\\noverstrict\\noversubtle\\noversup\\noversupped\\noversupping\\noversupplied\\noversupplies\\noversupply\\noversupplying\\noversups\\noversure\\noversuspicious\\noversweeten\\noversweetened\\noversweetening\\noversweetens\\novert\\novertake\\novertaken\\novertakes\\novertaking\\novertame\\novertart\\novertask\\novertasked\\novertasking\\novertasks\\novertax\\novertaxed\\novertaxes\\novertaxing\\noverthin\\noverthrew\\noverthrow\\noverthrown\\noverthrows\\novertighten\\novertightened\\novertightening\\novertightens\\novertime\\novertimed\\novertimes\\novertiming\\novertire\\novertired\\novertires\\novertiring\\novertly\\novertoil\\novertoiled\\novertoiling\\novertoils\\novertone\\novertones\\novertook\\novertop\\novertopped\\novertopping\\novertops\\novertrain\\novertrained\\novertraining\\novertrains\\novertreat\\novertreated\\novertreating\\novertreats\\novertrim\\novertrimmed\\novertrimming\\novertrims\\noverture\\novertured\\novertures\\noverturing\\noverturn\\noverturned\\noverturning\\noverturns\\noverurge\\noverurged\\noverurges\\noverurging\\noveruse\\noverused\\noveruses\\noverusing\\noverutilize\\noverutilized\\noverutilizes\\noverutilizing\\novervalue\\novervalued\\novervalues\\novervaluing\\noverview\\noverviews\\novervote\\novervoted\\novervotes\\novervoting\\noverwarm\\noverwarmed\\noverwarming\\noverwarms\\noverwary\\noverweak\\noverwear\\noverwearing\\noverwears\\noverween\\noverweened\\noverweening\\noverweens\\noverweight\\noverwet\\noverwets\\noverwetted\\noverwetting\\noverwhelm\\noverwhelmed\\noverwhelming\\noverwhelmingly\\noverwhelms\\noverwide\\noverwily\\noverwind\\noverwinding\\noverwinds\\noverwise\\noverword\\noverwords\\noverwore\\noverwork\\noverworked\\noverworking\\noverworks\\noverworn\\noverwound\\noverwrite\\noverwrited\\noverwrites\\noverwriting\\noverwrought\\noverzeal\\noverzealous\\noverzeals\\novibos\\novicidal\\novicide\\novicides\\noviducal\\noviduct\\noviducts\\noviform\\novine\\novines\\novipara\\noviposit\\noviposited\\novipositing\\noviposits\\novisac\\novisacs\\novoid\\novoidal\\novoids\\novoli\\novolo\\novolos\\novonic\\novular\\novulary\\novulate\\novulated\\novulates\\novulating\\novulation\\novulations\\novule\\novules\\novum\\now\\nowe\\nowed\\nowes\\nowing\\nowl\\nowlet\\nowlets\\nowlish\\nowlishly\\nowllike\\nowls\\nown\\nownable\\nowned\\nowner\\nowners\\nownership\\nownerships\\nowning\\nowns\\nowse\\nowsen\\nox\\noxalate\\noxalated\\noxalates\\noxalating\\noxalic\\noxalis\\noxalises\\noxazine\\noxazines\\noxblood\\noxbloods\\noxbow\\noxbows\\noxcart\\noxcarts\\noxen\\noxes\\noxeye\\noxeyes\\noxford\\noxfords\\noxheart\\noxhearts\\noxid\\noxidable\\noxidant\\noxidants\\noxidase\\noxidases\\noxidasic\\noxidate\\noxidated\\noxidates\\noxidating\\noxidation\\noxidations\\noxide\\noxides\\noxidic\\noxidise\\noxidised\\noxidiser\\noxidisers\\noxidises\\noxidising\\noxidizable\\noxidize\\noxidized\\noxidizer\\noxidizers\\noxidizes\\noxidizing\\noxids\\noxim\\noxime\\noximes\\noxims\\noxlip\\noxlips\\noxpecker\\noxpeckers\\noxtail\\noxtails\\noxter\\noxters\\noxtongue\\noxtongues\\noxy\\noxyacid\\noxyacids\\noxygen\\noxygenic\\noxygens\\noxymora\\noxymoron\\noxyphil\\noxyphile\\noxyphiles\\noxyphils\\noxysalt\\noxysalts\\noxysome\\noxysomes\\noxytocic\\noxytocics\\noxytocin\\noxytocins\\noxytone\\noxytones\\noy\\noyer\\noyers\\noyes\\noyesses\\noyez\\noyster\\noystered\\noysterer\\noysterers\\noystering\\noysterings\\noysterman\\noystermen\\noysters\\nozone\\nozones\\nozonic\\nozonide\\nozonides\\nozonise\\nozonised\\nozonises\\nozonising\\nozonize\\nozonized\\nozonizer\\nozonizers\\nozonizes\\nozonizing\\nozonous\\npa\\npabular\\npabulum\\npabulums\\npac\\npaca\\npacas\\npace\\npaced\\npacemaker\\npacemakers\\npacer\\npacers\\npaces\\npacha\\npachadom\\npachadoms\\npachalic\\npachalics\\npachas\\npachisi\\npachisis\\npachouli\\npachoulis\\npachuco\\npachucos\\npachyderm\\npachyderms\\npacific\\npacification\\npacifications\\npacified\\npacifier\\npacifiers\\npacifies\\npacifism\\npacifisms\\npacifist\\npacifistic\\npacifists\\npacify\\npacifying\\npacing\\npack\\npackable\\npackage\\npackaged\\npackager\\npackagers\\npackages\\npackaging\\npacked\\npacker\\npackers\\npacket\\npacketed\\npacketing\\npackets\\npacking\\npackings\\npackly\\npackman\\npackmen\\npackness\\npacknesses\\npacks\\npacksack\\npacksacks\\npackwax\\npackwaxes\\npacs\\npact\\npaction\\npactions\\npacts\\npad\\npadauk\\npadauks\\npadded\\npaddies\\npadding\\npaddings\\npaddle\\npaddled\\npaddler\\npaddlers\\npaddles\\npaddling\\npaddlings\\npaddock\\npaddocked\\npaddocking\\npaddocks\\npaddy\\npadishah\\npadishahs\\npadle\\npadles\\npadlock\\npadlocked\\npadlocking\\npadlocks\\npadnag\\npadnags\\npadouk\\npadouks\\npadre\\npadres\\npadri\\npadrone\\npadrones\\npadroni\\npads\\npadshah\\npadshahs\\npaduasoy\\npaduasoys\\npaean\\npaeanism\\npaeanisms\\npaeans\\npaella\\npaellas\\npaeon\\npaeons\\npagan\\npagandom\\npagandoms\\npaganise\\npaganised\\npaganises\\npaganish\\npaganising\\npaganism\\npaganisms\\npaganist\\npaganists\\npaganize\\npaganized\\npaganizes\\npaganizing\\npagans\\npage\\npageant\\npageantries\\npageantry\\npageants\\npageboy\\npageboys\\npaged\\npages\\npaginal\\npaginate\\npaginated\\npaginates\\npaginating\\npaging\\npagod\\npagoda\\npagodas\\npagods\\npagurian\\npagurians\\npagurid\\npagurids\\npah\\npahlavi\\npahlavis\\npaid\\npaik\\npaiked\\npaiking\\npaiks\\npail\\npailful\\npailfuls\\npails\\npailsful\\npain\\npainch\\npainches\\npained\\npainful\\npainfuller\\npainfullest\\npainfully\\npaining\\npainkiller\\npainkillers\\npainkilling\\npainless\\npainlessly\\npains\\npainstaking\\npainstakingly\\npaint\\npaintbrush\\npaintbrushes\\npainted\\npainter\\npainters\\npaintier\\npaintiest\\npainting\\npaintings\\npaints\\npainty\\npair\\npaired\\npairing\\npairs\\npaisa\\npaisan\\npaisano\\npaisanos\\npaisans\\npaisas\\npaise\\npaisley\\npaisleys\\npajama\\npajamas\\npal\\npalabra\\npalabras\\npalace\\npalaced\\npalaces\\npaladin\\npaladins\\npalais\\npalatable\\npalatal\\npalatals\\npalate\\npalates\\npalatial\\npalatine\\npalatines\\npalaver\\npalavered\\npalavering\\npalavers\\npalazzi\\npalazzo\\npale\\npalea\\npaleae\\npaleal\\npaled\\npaleface\\npalefaces\\npalely\\npaleness\\npalenesses\\npaleoclimatologic\\npaler\\npales\\npalest\\npalestra\\npalestrae\\npalestras\\npalet\\npaletot\\npaletots\\npalets\\npalette\\npalettes\\npaleways\\npalewise\\npalfrey\\npalfreys\\npalier\\npaliest\\npalikar\\npalikars\\npaling\\npalings\\npalinode\\npalinodes\\npalisade\\npalisaded\\npalisades\\npalisading\\npalish\\npall\\npalladia\\npalladic\\npallbearer\\npallbearers\\npalled\\npallet\\npallets\\npallette\\npallettes\\npallia\\npallial\\npalliate\\npalliated\\npalliates\\npalliating\\npalliation\\npalliations\\npalliative\\npallid\\npallidly\\npallier\\npalliest\\npalling\\npallium\\npalliums\\npallor\\npallors\\npalls\\npally\\npalm\\npalmar\\npalmary\\npalmate\\npalmated\\npalmed\\npalmer\\npalmers\\npalmette\\npalmettes\\npalmetto\\npalmettoes\\npalmettos\\npalmier\\npalmiest\\npalming\\npalmist\\npalmistries\\npalmistry\\npalmists\\npalmitin\\npalmitins\\npalmlike\\npalms\\npalmy\\npalmyra\\npalmyras\\npalomino\\npalominos\\npalooka\\npalookas\\npalp\\npalpable\\npalpably\\npalpal\\npalpate\\npalpated\\npalpates\\npalpating\\npalpation\\npalpations\\npalpator\\npalpators\\npalpebra\\npalpebrae\\npalpi\\npalpitate\\npalpitation\\npalpitations\\npalps\\npalpus\\npals\\npalsied\\npalsies\\npalsy\\npalsying\\npalter\\npaltered\\npalterer\\npalterers\\npaltering\\npalters\\npaltrier\\npaltriest\\npaltrily\\npaltry\\npaludal\\npaludism\\npaludisms\\npaly\\npam\\npampa\\npampas\\npampean\\npampeans\\npamper\\npampered\\npamperer\\npamperers\\npampering\\npampero\\npamperos\\npampers\\npamphlet\\npamphleteer\\npamphleteers\\npamphlets\\npams\\npan\\npanacea\\npanacean\\npanaceas\\npanache\\npanaches\\npanada\\npanadas\\npanama\\npanamas\\npanatela\\npanatelas\\npancake\\npancaked\\npancakes\\npancaking\\npanchax\\npanchaxes\\npancreas\\npancreases\\npancreatic\\npancreatitis\\npanda\\npandani\\npandanus\\npandanuses\\npandas\\npandect\\npandects\\npandemic\\npandemics\\npandemonium\\npandemoniums\\npander\\npandered\\npanderer\\npanderers\\npandering\\npanders\\npandied\\npandies\\npandit\\npandits\\npandoor\\npandoors\\npandora\\npandoras\\npandore\\npandores\\npandour\\npandours\\npandowdies\\npandowdy\\npandura\\npanduras\\npandy\\npandying\\npane\\npaned\\npanegyric\\npanegyrics\\npanegyrist\\npanegyrists\\npanel\\npaneled\\npaneling\\npanelings\\npanelist\\npanelists\\npanelled\\npanelling\\npanels\\npanes\\npanetela\\npanetelas\\npanfish\\npanfishes\\npanful\\npanfuls\\npang\\npanga\\npangas\\npanged\\npangen\\npangens\\npanging\\npangolin\\npangolins\\npangs\\npanhandle\\npanhandled\\npanhandler\\npanhandlers\\npanhandles\\npanhandling\\npanhuman\\npanic\\npanicked\\npanickier\\npanickiest\\npanicking\\npanicky\\npanicle\\npanicled\\npanicles\\npanics\\npanicum\\npanicums\\npanier\\npaniers\\npanmixia\\npanmixias\\npanne\\npanned\\npannes\\npannier\\npanniers\\npannikin\\npannikins\\npanning\\npanocha\\npanochas\\npanoche\\npanoches\\npanoplies\\npanoply\\npanoptic\\npanorama\\npanoramas\\npanoramic\\npanpipe\\npanpipes\\npans\\npansies\\npansophies\\npansophy\\npansy\\npant\\npantaloons\\npanted\\npantheon\\npantheons\\npanther\\npanthers\\npantie\\npanties\\npantile\\npantiled\\npantiles\\npanting\\npantofle\\npantofles\\npantomime\\npantomimed\\npantomimes\\npantomiming\\npantoum\\npantoums\\npantries\\npantry\\npants\\npantsuit\\npantsuits\\npanty\\npanzer\\npanzers\\npap\\npapa\\npapacies\\npapacy\\npapain\\npapains\\npapal\\npapally\\npapas\\npapaw\\npapaws\\npapaya\\npapayan\\npapayas\\npaper\\npaperboard\\npaperboards\\npaperboy\\npaperboys\\npapered\\npaperer\\npaperers\\npaperhanger\\npaperhangers\\npaperhanging\\npaperhangings\\npapering\\npapers\\npaperweight\\npaperweights\\npaperwork\\npapery\\npaphian\\npaphians\\npapilla\\npapillae\\npapillar\\npapillon\\npapillons\\npapist\\npapistic\\npapistries\\npapistry\\npapists\\npapoose\\npapooses\\npappi\\npappier\\npappies\\npappiest\\npappoose\\npappooses\\npappose\\npappous\\npappus\\npappy\\npaprica\\npapricas\\npaprika\\npaprikas\\npaps\\npapula\\npapulae\\npapulan\\npapular\\npapule\\npapules\\npapulose\\npapyral\\npapyri\\npapyrian\\npapyrine\\npapyrus\\npapyruses\\npar\\npara\\nparable\\nparables\\nparabola\\nparabolas\\nparachor\\nparachors\\nparachute\\nparachuted\\nparachutes\\nparachuting\\nparachutist\\nparachutists\\nparade\\nparaded\\nparader\\nparaders\\nparades\\nparadigm\\nparadigms\\nparading\\nparadise\\nparadises\\nparados\\nparadoses\\nparadox\\nparadoxes\\nparadoxical\\nparadoxically\\nparadrop\\nparadropped\\nparadropping\\nparadrops\\nparaffin\\nparaffined\\nparaffinic\\nparaffining\\nparaffins\\nparaform\\nparaforms\\nparagoge\\nparagoges\\nparagon\\nparagoned\\nparagoning\\nparagons\\nparagraph\\nparagraphs\\nparakeet\\nparakeets\\nparallax\\nparallaxes\\nparallel\\nparalleled\\nparalleling\\nparallelism\\nparallelisms\\nparallelled\\nparallelling\\nparallelogram\\nparallelograms\\nparallels\\nparalyse\\nparalysed\\nparalyses\\nparalysing\\nparalysis\\nparalytic\\nparalyze\\nparalyzed\\nparalyzes\\nparalyzing\\nparalyzingly\\nparament\\nparamenta\\nparaments\\nparameter\\nparameters\\nparametric\\nparamo\\nparamos\\nparamount\\nparamour\\nparamours\\nparang\\nparangs\\nparanoea\\nparanoeas\\nparanoia\\nparanoias\\nparanoid\\nparanoids\\nparapet\\nparapets\\nparaph\\nparaphernalia\\nparaphrase\\nparaphrased\\nparaphrases\\nparaphrasing\\nparaphs\\nparaplegia\\nparaplegias\\nparaplegic\\nparaplegics\\nparaquat\\nparaquats\\nparaquet\\nparaquets\\nparas\\nparasang\\nparasangs\\nparashah\\nparashioth\\nparashoth\\nparasite\\nparasites\\nparasitic\\nparasitism\\nparasitisms\\nparasol\\nparasols\\nparasternal\\nparatrooper\\nparatroopers\\nparatroops\\nparavane\\nparavanes\\nparboil\\nparboiled\\nparboiling\\nparboils\\nparcel\\nparceled\\nparceling\\nparcelled\\nparcelling\\nparcels\\nparcener\\nparceners\\nparch\\nparched\\nparches\\nparching\\nparchment\\nparchments\\npard\\npardah\\npardahs\\npardee\\npardi\\npardie\\npardine\\npardner\\npardners\\npardon\\npardonable\\npardoned\\npardoner\\npardoners\\npardoning\\npardons\\npards\\npardy\\npare\\nparecism\\nparecisms\\npared\\nparegoric\\nparegorics\\npareira\\npareiras\\nparent\\nparentage\\nparentages\\nparental\\nparented\\nparentheses\\nparenthesis\\nparenthetic\\nparenthetical\\nparenthetically\\nparenthood\\nparenthoods\\nparenting\\nparents\\nparer\\nparers\\npares\\npareses\\nparesis\\nparesthesia\\nparetic\\nparetics\\npareu\\npareus\\npareve\\nparfait\\nparfaits\\nparflesh\\nparfleshes\\nparfocal\\nparge\\nparged\\nparges\\nparget\\npargeted\\npargeting\\npargets\\npargetted\\npargetting\\nparging\\npargo\\npargos\\nparhelia\\nparhelic\\npariah\\npariahs\\nparian\\nparians\\nparies\\nparietal\\nparietals\\nparietes\\nparing\\nparings\\nparis\\nparises\\nparish\\nparishes\\nparishioner\\nparishioners\\nparities\\nparity\\npark\\nparka\\nparkas\\nparked\\nparker\\nparkers\\nparking\\nparkings\\nparkland\\nparklands\\nparklike\\nparks\\nparkway\\nparkways\\nparlance\\nparlances\\nparlando\\nparlante\\nparlay\\nparlayed\\nparlaying\\nparlays\\nparle\\nparled\\nparles\\nparley\\nparleyed\\nparleyer\\nparleyers\\nparleying\\nparleys\\nparliament\\nparliamentarian\\nparliamentarians\\nparliamentary\\nparliaments\\nparling\\nparlor\\nparlors\\nparlour\\nparlours\\nparlous\\nparochial\\nparochialism\\nparochialisms\\nparodic\\nparodied\\nparodies\\nparodist\\nparodists\\nparodoi\\nparodos\\nparody\\nparodying\\nparol\\nparole\\nparoled\\nparolee\\nparolees\\nparoles\\nparoling\\nparols\\nparonym\\nparonyms\\nparoquet\\nparoquets\\nparotic\\nparotid\\nparotids\\nparotoid\\nparotoids\\nparous\\nparoxysm\\nparoxysmal\\nparoxysms\\nparquet\\nparqueted\\nparqueting\\nparquetries\\nparquetry\\nparquets\\nparr\\nparrakeet\\nparrakeets\\nparral\\nparrals\\nparred\\nparrel\\nparrels\\nparridge\\nparridges\\nparried\\nparries\\nparring\\nparritch\\nparritches\\nparroket\\nparrokets\\nparrot\\nparroted\\nparroter\\nparroters\\nparroting\\nparrots\\nparroty\\nparrs\\nparry\\nparrying\\npars\\nparsable\\nparse\\nparsec\\nparsecs\\nparsed\\nparser\\nparsers\\nparses\\nparsimonies\\nparsimonious\\nparsimoniously\\nparsimony\\nparsing\\nparsley\\nparsleys\\nparsnip\\nparsnips\\nparson\\nparsonage\\nparsonages\\nparsonic\\nparsons\\npart\\npartake\\npartaken\\npartaker\\npartakers\\npartakes\\npartaking\\npartan\\npartans\\nparted\\nparterre\\nparterres\\npartial\\npartialities\\npartiality\\npartially\\npartials\\npartible\\nparticipant\\nparticipants\\nparticipate\\nparticipated\\nparticipates\\nparticipating\\nparticipation\\nparticipations\\nparticipatory\\nparticipial\\nparticiple\\nparticiples\\nparticle\\nparticles\\nparticular\\nparticularly\\nparticulars\\npartied\\nparties\\nparting\\npartings\\npartisan\\npartisans\\npartisanship\\npartisanships\\npartita\\npartitas\\npartite\\npartition\\npartitions\\npartizan\\npartizans\\npartlet\\npartlets\\npartly\\npartner\\npartnered\\npartnering\\npartners\\npartnership\\npartnerships\\nparton\\npartons\\npartook\\npartridge\\npartridges\\nparts\\nparturition\\nparturitions\\npartway\\nparty\\npartying\\nparura\\nparuras\\nparure\\nparures\\nparve\\nparvenu\\nparvenue\\nparvenus\\nparvis\\nparvise\\nparvises\\nparvolin\\nparvolins\\npas\\npaschal\\npaschals\\npase\\npaseo\\npaseos\\npases\\npash\\npasha\\npashadom\\npashadoms\\npashalic\\npashalics\\npashalik\\npashaliks\\npashas\\npashed\\npashes\\npashing\\npasquil\\npasquils\\npass\\npassable\\npassably\\npassade\\npassades\\npassado\\npassadoes\\npassados\\npassage\\npassaged\\npassages\\npassageway\\npassageways\\npassaging\\npassant\\npassband\\npassbands\\npassbook\\npassbooks\\npasse\\npassed\\npassee\\npassel\\npassels\\npassenger\\npassengers\\npasser\\npasserby\\npassers\\npassersby\\npasses\\npassible\\npassim\\npassing\\npassings\\npassion\\npassionate\\npassionateless\\npassionately\\npassions\\npassive\\npassively\\npassives\\npassivities\\npassivity\\npasskey\\npasskeys\\npassless\\npassover\\npassovers\\npassport\\npassports\\npassus\\npassuses\\npassword\\npasswords\\npast\\npasta\\npastas\\npaste\\npasteboard\\npasteboards\\npasted\\npastel\\npastels\\npaster\\npastern\\npasterns\\npasters\\npastes\\npasteurization\\npasteurizations\\npasteurize\\npasteurized\\npasteurizer\\npasteurizers\\npasteurizes\\npasteurizing\\npasticci\\npastiche\\npastiches\\npastier\\npasties\\npastiest\\npastil\\npastille\\npastilles\\npastils\\npastime\\npastimes\\npastina\\npastinas\\npasting\\npastness\\npastnesses\\npastor\\npastoral\\npastorals\\npastorate\\npastorates\\npastored\\npastoring\\npastors\\npastrami\\npastramis\\npastries\\npastromi\\npastromis\\npastry\\npasts\\npastural\\npasture\\npastured\\npasturer\\npasturers\\npastures\\npasturing\\npasty\\npat\\npataca\\npatacas\\npatagia\\npatagium\\npatamar\\npatamars\\npatch\\npatched\\npatcher\\npatchers\\npatches\\npatchier\\npatchiest\\npatchily\\npatching\\npatchwork\\npatchworks\\npatchy\\npate\\npated\\npatella\\npatellae\\npatellar\\npatellas\\npaten\\npatencies\\npatency\\npatens\\npatent\\npatented\\npatentee\\npatentees\\npatenting\\npatently\\npatentor\\npatentors\\npatents\\npater\\npaternal\\npaternally\\npaternities\\npaternity\\npaters\\npates\\npath\\npathetic\\npathetically\\npathfinder\\npathfinders\\npathless\\npathogen\\npathogens\\npathologic\\npathological\\npathologies\\npathologist\\npathologists\\npathology\\npathos\\npathoses\\npaths\\npathway\\npathways\\npatience\\npatiences\\npatient\\npatienter\\npatientest\\npatiently\\npatients\\npatin\\npatina\\npatinae\\npatinas\\npatine\\npatined\\npatines\\npatining\\npatins\\npatio\\npatios\\npatly\\npatness\\npatnesses\\npatois\\npatriarch\\npatriarchal\\npatriarchies\\npatriarchs\\npatriarchy\\npatrician\\npatricians\\npatricide\\npatricides\\npatrimonial\\npatrimonies\\npatrimony\\npatriot\\npatriotic\\npatriotically\\npatriotism\\npatriotisms\\npatriots\\npatrol\\npatrolled\\npatrolling\\npatrolman\\npatrolmen\\npatrols\\npatron\\npatronage\\npatronages\\npatronal\\npatronize\\npatronized\\npatronizes\\npatronizing\\npatronly\\npatrons\\npatroon\\npatroons\\npats\\npatsies\\npatsy\\npattamar\\npattamars\\npatted\\npattee\\npatten\\npattens\\npatter\\npattered\\npatterer\\npatterers\\npattering\\npattern\\npatterned\\npatterning\\npatterns\\npatters\\npattie\\npatties\\npatting\\npatty\\npattypan\\npattypans\\npatulent\\npatulous\\npaty\\npaucities\\npaucity\\npaughty\\npauldron\\npauldrons\\npaulin\\npaulins\\npaunch\\npaunched\\npaunches\\npaunchier\\npaunchiest\\npaunchy\\npauper\\npaupered\\npaupering\\npauperism\\npauperisms\\npauperize\\npauperized\\npauperizes\\npauperizing\\npaupers\\npausal\\npause\\npaused\\npauser\\npausers\\npauses\\npausing\\npavan\\npavane\\npavanes\\npavans\\npave\\npaved\\npavement\\npavements\\npaver\\npavers\\npaves\\npavid\\npavilion\\npavilioned\\npavilioning\\npavilions\\npavin\\npaving\\npavings\\npavins\\npavior\\npaviors\\npaviour\\npaviours\\npavis\\npavise\\npaviser\\npavisers\\npavises\\npavonine\\npaw\\npawed\\npawer\\npawers\\npawing\\npawkier\\npawkiest\\npawkily\\npawky\\npawl\\npawls\\npawn\\npawnable\\npawnage\\npawnages\\npawnbroker\\npawnbrokers\\npawned\\npawnee\\npawnees\\npawner\\npawners\\npawning\\npawnor\\npawnors\\npawns\\npawnshop\\npawnshops\\npawpaw\\npawpaws\\npaws\\npax\\npaxes\\npaxwax\\npaxwaxes\\npay\\npayable\\npayably\\npaycheck\\npaychecks\\npayday\\npaydays\\npayed\\npayee\\npayees\\npayer\\npayers\\npaying\\npayload\\npayloads\\npayment\\npayments\\npaynim\\npaynims\\npayoff\\npayoffs\\npayola\\npayolas\\npayor\\npayors\\npayroll\\npayrolls\\npays\\npe\\npea\\npeace\\npeaceable\\npeaceably\\npeaced\\npeaceful\\npeacefuller\\npeacefullest\\npeacefully\\npeacekeeper\\npeacekeepers\\npeacekeeping\\npeacekeepings\\npeacemaker\\npeacemakers\\npeaces\\npeacetime\\npeacetimes\\npeach\\npeached\\npeacher\\npeachers\\npeaches\\npeachier\\npeachiest\\npeaching\\npeachy\\npeacing\\npeacoat\\npeacoats\\npeacock\\npeacocked\\npeacockier\\npeacockiest\\npeacocking\\npeacocks\\npeacocky\\npeafowl\\npeafowls\\npeag\\npeage\\npeages\\npeags\\npeahen\\npeahens\\npeak\\npeaked\\npeakier\\npeakiest\\npeaking\\npeakish\\npeakless\\npeaklike\\npeaks\\npeaky\\npeal\\npealed\\npealike\\npealing\\npeals\\npean\\npeans\\npeanut\\npeanuts\\npear\\npearl\\npearlash\\npearlashes\\npearled\\npearler\\npearlers\\npearlier\\npearliest\\npearling\\npearlite\\npearlites\\npearls\\npearly\\npearmain\\npearmains\\npears\\npeart\\npearter\\npeartest\\npeartly\\npeas\\npeasant\\npeasantries\\npeasantry\\npeasants\\npeascod\\npeascods\\npease\\npeasecod\\npeasecods\\npeasen\\npeases\\npeat\\npeatier\\npeatiest\\npeats\\npeaty\\npeavey\\npeaveys\\npeavies\\npeavy\\npebble\\npebbled\\npebbles\\npebblier\\npebbliest\\npebbling\\npebbly\\npecan\\npecans\\npeccable\\npeccadillo\\npeccadilloes\\npeccadillos\\npeccancies\\npeccancy\\npeccant\\npeccaries\\npeccary\\npeccavi\\npeccavis\\npech\\npechan\\npechans\\npeched\\npeching\\npechs\\npeck\\npecked\\npecker\\npeckers\\npeckier\\npeckiest\\npecking\\npecks\\npecky\\npectase\\npectases\\npectate\\npectates\\npecten\\npectens\\npectic\\npectin\\npectines\\npectins\\npectize\\npectized\\npectizes\\npectizing\\npectoral\\npectorals\\npeculatation\\npeculatations\\npeculate\\npeculated\\npeculates\\npeculating\\npeculia\\npeculiar\\npeculiarities\\npeculiarity\\npeculiarly\\npeculiars\\npeculium\\npecuniary\\nped\\npedagog\\npedagogic\\npedagogical\\npedagogies\\npedagogs\\npedagogue\\npedagogues\\npedagogy\\npedal\\npedaled\\npedalfer\\npedalfers\\npedalier\\npedaliers\\npedaling\\npedalled\\npedalling\\npedals\\npedant\\npedantic\\npedantries\\npedantry\\npedants\\npedate\\npedately\\npeddle\\npeddled\\npeddler\\npeddleries\\npeddlers\\npeddlery\\npeddles\\npeddling\\npederast\\npederasts\\npederasty\\npedes\\npedestal\\npedestaled\\npedestaling\\npedestalled\\npedestalling\\npedestals\\npedestrian\\npedestrians\\npediatric\\npediatrician\\npediatricians\\npediatrics\\npedicab\\npedicabs\\npedicel\\npedicels\\npedicle\\npedicled\\npedicles\\npedicure\\npedicured\\npedicures\\npedicuring\\npediform\\npedigree\\npedigrees\\npediment\\npediments\\npedipalp\\npedipalps\\npedlar\\npedlaries\\npedlars\\npedlary\\npedler\\npedlers\\npedocal\\npedocals\\npedologies\\npedology\\npedro\\npedros\\npeds\\npeduncle\\npeduncles\\npee\\npeebeen\\npeebeens\\npeed\\npeeing\\npeek\\npeekaboo\\npeekaboos\\npeeked\\npeeking\\npeeks\\npeel\\npeelable\\npeeled\\npeeler\\npeelers\\npeeling\\npeelings\\npeels\\npeen\\npeened\\npeening\\npeens\\npeep\\npeeped\\npeeper\\npeepers\\npeephole\\npeepholes\\npeeping\\npeeps\\npeepshow\\npeepshows\\npeepul\\npeepuls\\npeer\\npeerage\\npeerages\\npeered\\npeeress\\npeeresses\\npeerie\\npeeries\\npeering\\npeerless\\npeers\\npeery\\npees\\npeesweep\\npeesweeps\\npeetweet\\npeetweets\\npeeve\\npeeved\\npeeves\\npeeving\\npeevish\\npeevishly\\npeevishness\\npeevishnesses\\npeewee\\npeewees\\npeewit\\npeewits\\npeg\\npegboard\\npegboards\\npegbox\\npegboxes\\npegged\\npegging\\npegless\\npeglike\\npegs\\npeignoir\\npeignoirs\\npein\\npeined\\npeining\\npeins\\npeise\\npeised\\npeises\\npeising\\npekan\\npekans\\npeke\\npekes\\npekin\\npekins\\npekoe\\npekoes\\npelage\\npelages\\npelagial\\npelagic\\npele\\npelerine\\npelerines\\npeles\\npelf\\npelfs\\npelican\\npelicans\\npelisse\\npelisses\\npelite\\npelites\\npelitic\\npellagra\\npellagras\\npellet\\npelletal\\npelleted\\npelleting\\npelletize\\npelletized\\npelletizes\\npelletizing\\npellets\\npellicle\\npellicles\\npellmell\\npellmells\\npellucid\\npelon\\npeloria\\npelorian\\npelorias\\npeloric\\npelorus\\npeloruses\\npelota\\npelotas\\npelt\\npeltast\\npeltasts\\npeltate\\npelted\\npelter\\npelters\\npelting\\npeltries\\npeltry\\npelts\\npelves\\npelvic\\npelvics\\npelvis\\npelvises\\npembina\\npembinas\\npemican\\npemicans\\npemmican\\npemmicans\\npemoline\\npemolines\\npemphix\\npemphixes\\npen\\npenal\\npenalise\\npenalised\\npenalises\\npenalising\\npenalities\\npenality\\npenalize\\npenalized\\npenalizes\\npenalizing\\npenally\\npenalties\\npenalty\\npenance\\npenanced\\npenances\\npenancing\\npenang\\npenangs\\npenates\\npence\\npencel\\npencels\\npenchant\\npenchants\\npencil\\npenciled\\npenciler\\npencilers\\npenciling\\npencilled\\npencilling\\npencils\\npend\\npendaflex\\npendant\\npendants\\npended\\npendencies\\npendency\\npendent\\npendents\\npending\\npends\\npendular\\npendulous\\npendulum\\npendulums\\npenes\\npenetrable\\npenetration\\npenetrations\\npenetrative\\npengo\\npengos\\npenguin\\npenguins\\npenial\\npenicil\\npenicillin\\npenicillins\\npenicils\\npenile\\npeninsula\\npeninsular\\npeninsulas\\npenis\\npenises\\npenitence\\npenitences\\npenitent\\npenitential\\npenitentiaries\\npenitentiary\\npenitents\\npenknife\\npenknives\\npenlight\\npenlights\\npenlite\\npenlites\\npenman\\npenmanship\\npenmanships\\npenmen\\npenna\\npennae\\npenname\\npennames\\npennant\\npennants\\npennate\\npennated\\npenned\\npenner\\npenners\\npenni\\npennia\\npennies\\npenniless\\npennine\\npennines\\npenning\\npennis\\npennon\\npennoned\\npennons\\npennsylvania\\npenny\\npenoche\\npenoches\\npenologies\\npenology\\npenoncel\\npenoncels\\npenpoint\\npenpoints\\npens\\npensee\\npensees\\npensil\\npensile\\npensils\\npension\\npensione\\npensioned\\npensioner\\npensioners\\npensiones\\npensioning\\npensions\\npensive\\npensively\\npenster\\npensters\\npenstock\\npenstocks\\npent\\npentacle\\npentacles\\npentad\\npentads\\npentagon\\npentagonal\\npentagons\\npentagram\\npentagrams\\npentameter\\npentameters\\npentane\\npentanes\\npentarch\\npentarchs\\npenthouse\\npenthouses\\npentomic\\npentosan\\npentosans\\npentose\\npentoses\\npentyl\\npentyls\\npenuche\\npenuches\\npenuchi\\npenuchis\\npenuchle\\npenuchles\\npenuckle\\npenuckles\\npenult\\npenults\\npenumbra\\npenumbrae\\npenumbras\\npenuries\\npenurious\\npenury\\npeon\\npeonage\\npeonages\\npeones\\npeonies\\npeonism\\npeonisms\\npeons\\npeony\\npeople\\npeopled\\npeopler\\npeoplers\\npeoples\\npeopling\\npep\\npeperoni\\npeperonis\\npepla\\npeplos\\npeploses\\npeplum\\npeplumed\\npeplums\\npeplus\\npepluses\\npepo\\npeponida\\npeponidas\\npeponium\\npeponiums\\npepos\\npepped\\npepper\\npeppercorn\\npeppercorns\\npeppered\\npepperer\\npepperers\\npeppering\\npeppermint\\npeppermints\\npeppers\\npeppery\\npeppier\\npeppiest\\npeppily\\npepping\\npeppy\\npeps\\npepsin\\npepsine\\npepsines\\npepsins\\npeptic\\npeptics\\npeptid\\npeptide\\npeptides\\npeptidic\\npeptids\\npeptize\\npeptized\\npeptizer\\npeptizers\\npeptizes\\npeptizing\\npeptone\\npeptones\\npeptonic\\nper\\nperacid\\nperacids\\nperambulate\\nperambulated\\nperambulates\\nperambulating\\nperambulation\\nperambulations\\npercale\\npercales\\nperceivable\\nperceive\\nperceived\\nperceives\\nperceiving\\npercent\\npercentage\\npercentages\\npercentile\\npercentiles\\npercents\\npercept\\nperceptible\\nperceptibly\\nperception\\nperceptions\\nperceptive\\nperceptively\\npercepts\\nperch\\nperched\\npercher\\nperchers\\nperches\\nperching\\npercoid\\npercoids\\npercolate\\npercolated\\npercolates\\npercolating\\npercolator\\npercolators\\npercuss\\npercussed\\npercusses\\npercussing\\npercussion\\npercussions\\nperdu\\nperdue\\nperdues\\nperdus\\nperdy\\npere\\nperegrin\\nperegrins\\nperemptorily\\nperemptory\\nperennial\\nperennially\\nperennials\\nperes\\nperfect\\nperfecta\\nperfectas\\nperfected\\nperfecter\\nperfectest\\nperfectibilities\\nperfectibility\\nperfectible\\nperfecting\\nperfection\\nperfectionist\\nperfectionists\\nperfections\\nperfectly\\nperfectness\\nperfectnesses\\nperfecto\\nperfectos\\nperfects\\nperfidies\\nperfidious\\nperfidiously\\nperfidy\\nperforate\\nperforated\\nperforates\\nperforating\\nperforation\\nperforations\\nperforce\\nperform\\nperformance\\nperformances\\nperformed\\nperformer\\nperformers\\nperforming\\nperforms\\nperfume\\nperfumed\\nperfumer\\nperfumers\\nperfumes\\nperfuming\\nperfunctory\\nperfuse\\nperfused\\nperfuses\\nperfusing\\npergola\\npergolas\\nperhaps\\nperhapses\\nperi\\nperianth\\nperianths\\nperiapt\\nperiapts\\nperiblem\\nperiblems\\npericarp\\npericarps\\npericopae\\npericope\\npericopes\\nperiderm\\nperiderms\\nperidia\\nperidial\\nperidium\\nperidot\\nperidots\\nperigeal\\nperigean\\nperigee\\nperigees\\nperigon\\nperigons\\nperigynies\\nperigyny\\nperil\\nperiled\\nperiling\\nperilla\\nperillas\\nperilled\\nperilling\\nperilous\\nperilously\\nperils\\nperilune\\nperilunes\\nperimeter\\nperimeters\\nperinea\\nperineal\\nperineum\\nperiod\\nperiodic\\nperiodical\\nperiodically\\nperiodicals\\nperiodid\\nperiodids\\nperiods\\nperiotic\\nperipatetic\\nperipeties\\nperipety\\nperipheral\\nperipheries\\nperiphery\\nperipter\\nperipters\\nperique\\nperiques\\nperis\\nperisarc\\nperisarcs\\nperiscope\\nperiscopes\\nperish\\nperishable\\nperishables\\nperished\\nperishes\\nperishing\\nperiwig\\nperiwigs\\nperjure\\nperjured\\nperjurer\\nperjurers\\nperjures\\nperjuries\\nperjuring\\nperjury\\nperk\\nperked\\nperkier\\nperkiest\\nperkily\\nperking\\nperkish\\nperks\\nperky\\nperlite\\nperlites\\nperlitic\\nperm\\npermanence\\npermanences\\npermanencies\\npermanency\\npermanent\\npermanently\\npermanents\\npermeability\\npermeable\\npermease\\npermeases\\npermeate\\npermeated\\npermeates\\npermeating\\npermeation\\npermeations\\npermissible\\npermission\\npermissions\\npermissive\\npermissiveness\\npermissivenesses\\npermit\\npermits\\npermitted\\npermitting\\nperms\\npermute\\npermuted\\npermutes\\npermuting\\npernicious\\nperniciously\\nperoneal\\nperoral\\nperorate\\nperorated\\nperorates\\nperorating\\nperoxid\\nperoxide\\nperoxided\\nperoxides\\nperoxiding\\nperoxids\\nperpend\\nperpended\\nperpendicular\\nperpendicularities\\nperpendicularity\\nperpendicularly\\nperpendiculars\\nperpending\\nperpends\\nperpent\\nperpents\\nperpetrate\\nperpetrated\\nperpetrates\\nperpetrating\\nperpetration\\nperpetrations\\nperpetrator\\nperpetrators\\nperpetual\\nperpetually\\nperpetuate\\nperpetuated\\nperpetuates\\nperpetuating\\nperpetuation\\nperpetuations\\nperpetuities\\nperpetuity\\nperplex\\nperplexed\\nperplexes\\nperplexing\\nperplexities\\nperplexity\\nperquisite\\nperquisites\\nperries\\nperron\\nperrons\\nperry\\npersalt\\npersalts\\nperse\\npersecute\\npersecuted\\npersecutes\\npersecuting\\npersecution\\npersecutions\\npersecutor\\npersecutors\\nperses\\nperseverance\\nperseverances\\npersevere\\npersevered\\nperseveres\\npersevering\\npersist\\npersisted\\npersistence\\npersistences\\npersistencies\\npersistency\\npersistent\\npersistently\\npersisting\\npersists\\nperson\\npersona\\npersonable\\npersonae\\npersonage\\npersonages\\npersonal\\npersonalities\\npersonality\\npersonalize\\npersonalized\\npersonalizes\\npersonalizing\\npersonally\\npersonals\\npersonas\\npersonification\\npersonifications\\npersonifies\\npersonify\\npersonnel\\npersons\\nperspective\\nperspectives\\nperspicacious\\nperspicacities\\nperspicacity\\nperspiration\\nperspirations\\nperspire\\nperspired\\nperspires\\nperspiring\\nperspiry\\npersuade\\npersuaded\\npersuades\\npersuading\\npersuasion\\npersuasions\\npersuasive\\npersuasively\\npersuasiveness\\npersuasivenesses\\npert\\npertain\\npertained\\npertaining\\npertains\\nperter\\npertest\\npertinacious\\npertinacities\\npertinacity\\npertinence\\npertinences\\npertinent\\npertly\\npertness\\npertnesses\\nperturb\\nperturbation\\nperturbations\\nperturbed\\nperturbing\\nperturbs\\nperuke\\nperukes\\nperusal\\nperusals\\nperuse\\nperused\\nperuser\\nperusers\\nperuses\\nperusing\\npervade\\npervaded\\npervader\\npervaders\\npervades\\npervading\\npervasive\\nperverse\\nperversely\\nperverseness\\nperversenesses\\nperversion\\nperversions\\nperversities\\nperversity\\npervert\\nperverted\\nperverting\\nperverts\\npervious\\npes\\npesade\\npesades\\npeseta\\npesetas\\npesewa\\npesewas\\npeskier\\npeskiest\\npeskily\\npesky\\npeso\\npesos\\npessaries\\npessary\\npessimism\\npessimisms\\npessimist\\npessimistic\\npessimists\\npest\\npester\\npestered\\npesterer\\npesterers\\npestering\\npesters\\npesthole\\npestholes\\npestilence\\npestilences\\npestilent\\npestle\\npestled\\npestles\\npestling\\npests\\npet\\npetal\\npetaled\\npetaline\\npetalled\\npetalodies\\npetalody\\npetaloid\\npetalous\\npetals\\npetard\\npetards\\npetasos\\npetasoses\\npetasus\\npetasuses\\npetcock\\npetcocks\\npetechia\\npetechiae\\npeter\\npetered\\npetering\\npeters\\npetiolar\\npetiole\\npetioled\\npetioles\\npetit\\npetite\\npetites\\npetition\\npetitioned\\npetitioner\\npetitioners\\npetitioning\\npetitions\\npetrel\\npetrels\\npetri\\npetrifaction\\npetrifactions\\npetrified\\npetrifies\\npetrify\\npetrifying\\npetrol\\npetroleum\\npetroleums\\npetrolic\\npetrols\\npetronel\\npetronels\\npetrosal\\npetrous\\npets\\npetted\\npettedly\\npetter\\npetters\\npetti\\npetticoat\\npetticoats\\npettier\\npettiest\\npettifog\\npettifogged\\npettifogging\\npettifogs\\npettily\\npettiness\\npettinesses\\npetting\\npettish\\npettle\\npettled\\npettles\\npettling\\npetto\\npetty\\npetulance\\npetulances\\npetulant\\npetulantly\\npetunia\\npetunias\\npetuntse\\npetuntses\\npetuntze\\npetuntzes\\npew\\npewee\\npewees\\npewit\\npewits\\npews\\npewter\\npewterer\\npewterers\\npewters\\npeyote\\npeyotes\\npeyotl\\npeyotls\\npeytral\\npeytrals\\npeytrel\\npeytrels\\npfennig\\npfennige\\npfennigs\\nphaeton\\nphaetons\\nphage\\nphages\\nphalange\\nphalanges\\nphalanx\\nphalanxes\\nphalli\\nphallic\\nphallics\\nphallism\\nphallisms\\nphallist\\nphallists\\nphallus\\nphalluses\\nphantasied\\nphantasies\\nphantasm\\nphantasms\\nphantast\\nphantasts\\nphantasy\\nphantasying\\nphantom\\nphantoms\\npharaoh\\npharaohs\\npharisaic\\npharisee\\npharisees\\npharmaceutical\\npharmaceuticals\\npharmacies\\npharmacist\\npharmacologic\\npharmacological\\npharmacologist\\npharmacologists\\npharmacology\\npharmacy\\npharos\\npharoses\\npharyngeal\\npharynges\\npharynx\\npharynxes\\nphase\\nphaseal\\nphased\\nphaseout\\nphaseouts\\nphases\\nphasic\\nphasing\\nphasis\\nphasmid\\nphasmids\\nphat\\nphatic\\npheasant\\npheasants\\nphellem\\nphellems\\nphelonia\\nphenazin\\nphenazins\\nphenetic\\nphenetol\\nphenetols\\nphenix\\nphenixes\\nphenol\\nphenolic\\nphenolics\\nphenols\\nphenom\\nphenomena\\nphenomenal\\nphenomenon\\nphenomenons\\nphenoms\\nphenyl\\nphenylic\\nphenyls\\nphew\\nphi\\nphial\\nphials\\nphilabeg\\nphilabegs\\nphiladelphia\\nphilander\\nphilandered\\nphilanderer\\nphilanderers\\nphilandering\\nphilanders\\nphilanthropic\\nphilanthropies\\nphilanthropist\\nphilanthropists\\nphilanthropy\\nphilatelies\\nphilatelist\\nphilatelists\\nphilately\\nphilharmonic\\nphilibeg\\nphilibegs\\nphilistine\\nphilistines\\nphilodendron\\nphilodendrons\\nphilomel\\nphilomels\\nphilosopher\\nphilosophers\\nphilosophic\\nphilosophical\\nphilosophically\\nphilosophies\\nphilosophize\\nphilosophized\\nphilosophizes\\nphilosophizing\\nphilosophy\\nphilter\\nphiltered\\nphiltering\\nphilters\\nphiltre\\nphiltred\\nphiltres\\nphiltring\\nphimoses\\nphimosis\\nphimotic\\nphis\\nphiz\\nphizes\\nphlebitis\\nphlegm\\nphlegmatic\\nphlegmier\\nphlegmiest\\nphlegms\\nphlegmy\\nphloem\\nphloems\\nphlox\\nphloxes\\nphobia\\nphobias\\nphobic\\nphocine\\nphoebe\\nphoebes\\nphoenix\\nphoenixes\\nphon\\nphonal\\nphonate\\nphonated\\nphonates\\nphonating\\nphone\\nphoned\\nphoneme\\nphonemes\\nphonemic\\nphones\\nphonetic\\nphonetician\\nphoneticians\\nphonetics\\nphoney\\nphoneys\\nphonic\\nphonics\\nphonier\\nphonies\\nphoniest\\nphonily\\nphoning\\nphono\\nphonograph\\nphonographally\\nphonographic\\nphonographs\\nphonon\\nphonons\\nphonos\\nphons\\nphony\\nphooey\\nphorate\\nphorates\\nphosgene\\nphosgenes\\nphosphatase\\nphosphate\\nphosphates\\nphosphatic\\nphosphid\\nphosphids\\nphosphin\\nphosphins\\nphosphor\\nphosphorescence\\nphosphorescences\\nphosphorescent\\nphosphorescently\\nphosphoric\\nphosphorous\\nphosphors\\nphosphorus\\nphot\\nphotic\\nphotics\\nphoto\\nphotoed\\nphotoelectric\\nphotoelectrically\\nphotog\\nphotogenic\\nphotograph\\nphotographally\\nphotographed\\nphotographer\\nphotographers\\nphotographic\\nphotographies\\nphotographing\\nphotographs\\nphotography\\nphotogs\\nphotoing\\nphotomap\\nphotomapped\\nphotomapping\\nphotomaps\\nphoton\\nphotonic\\nphotons\\nphotopia\\nphotopias\\nphotopic\\nphotos\\nphotoset\\nphotosets\\nphotosetting\\nphotosynthesis\\nphotosynthesises\\nphotosynthesize\\nphotosynthesized\\nphotosynthesizes\\nphotosynthesizing\\nphotosynthetic\\nphots\\nphpht\\nphrasal\\nphrase\\nphrased\\nphraseologies\\nphraseology\\nphrases\\nphrasing\\nphrasings\\nphratral\\nphratric\\nphratries\\nphratry\\nphreatic\\nphrenic\\nphrensied\\nphrensies\\nphrensy\\nphrensying\\npht\\nphthalic\\nphthalin\\nphthalins\\nphthises\\nphthisic\\nphthisics\\nphthisis\\nphyla\\nphylae\\nphylar\\nphylaxis\\nphylaxises\\nphyle\\nphyleses\\nphylesis\\nphylesises\\nphyletic\\nphylic\\nphyllaries\\nphyllary\\nphyllite\\nphyllites\\nphyllode\\nphyllodes\\nphylloid\\nphylloids\\nphyllome\\nphyllomes\\nphylon\\nphylum\\nphyses\\nphysic\\nphysical\\nphysically\\nphysicals\\nphysician\\nphysicians\\nphysicist\\nphysicists\\nphysicked\\nphysicking\\nphysics\\nphysiognomies\\nphysiognomy\\nphysiologic\\nphysiological\\nphysiologies\\nphysiologist\\nphysiologists\\nphysiology\\nphysiotherapies\\nphysiotherapy\\nphysique\\nphysiques\\nphysis\\nphytane\\nphytanes\\nphytin\\nphytins\\nphytoid\\nphyton\\nphytonic\\nphytons\\npi\\npia\\npiacular\\npiaffe\\npiaffed\\npiaffer\\npiaffers\\npiaffes\\npiaffing\\npial\\npian\\npianic\\npianism\\npianisms\\npianist\\npianists\\npiano\\npianos\\npians\\npias\\npiasaba\\npiasabas\\npiasava\\npiasavas\\npiassaba\\npiassabas\\npiassava\\npiassavas\\npiaster\\npiasters\\npiastre\\npiastres\\npiazza\\npiazzas\\npiazze\\npibroch\\npibrochs\\npic\\npica\\npicacho\\npicachos\\npicador\\npicadores\\npicadors\\npical\\npicara\\npicaras\\npicaro\\npicaroon\\npicarooned\\npicarooning\\npicaroons\\npicaros\\npicas\\npicayune\\npicayunes\\npiccolo\\npiccolos\\npice\\npiceous\\npick\\npickadil\\npickadils\\npickax\\npickaxe\\npickaxed\\npickaxes\\npickaxing\\npicked\\npickeer\\npickeered\\npickeering\\npickeers\\npicker\\npickerel\\npickerels\\npickers\\npicket\\npicketed\\npicketer\\npicketers\\npicketing\\npickets\\npickier\\npickiest\\npicking\\npickings\\npickle\\npickled\\npickles\\npickling\\npicklock\\npicklocks\\npickoff\\npickoffs\\npickpocket\\npickpockets\\npicks\\npickup\\npickups\\npickwick\\npickwicks\\npicky\\npicloram\\npiclorams\\npicnic\\npicnicked\\npicnicking\\npicnicky\\npicnics\\npicogram\\npicograms\\npicolin\\npicoline\\npicolines\\npicolins\\npicot\\npicoted\\npicotee\\npicotees\\npicoting\\npicots\\npicquet\\npicquets\\npicrate\\npicrated\\npicrates\\npicric\\npicrite\\npicrites\\npics\\npictorial\\npicture\\npictured\\npictures\\npicturesque\\npicturesqueness\\npicturesquenesses\\npicturing\\npicul\\npiculs\\npiddle\\npiddled\\npiddler\\npiddlers\\npiddles\\npiddling\\npiddock\\npiddocks\\npidgin\\npidgins\\npie\\npiebald\\npiebalds\\npiece\\npieced\\npiecemeal\\npiecer\\npiecers\\npieces\\npiecing\\npiecings\\npiecrust\\npiecrusts\\npied\\npiedfort\\npiedforts\\npiedmont\\npiedmonts\\npiefort\\npieforts\\npieing\\npieplant\\npieplants\\npier\\npierce\\npierced\\npiercer\\npiercers\\npierces\\npiercing\\npierrot\\npierrots\\npiers\\npies\\npieta\\npietas\\npieties\\npietism\\npietisms\\npietist\\npietists\\npiety\\npiffle\\npiffled\\npiffles\\npiffling\\npig\\npigboat\\npigboats\\npigeon\\npigeonhole\\npigeonholed\\npigeonholes\\npigeonholing\\npigeons\\npigfish\\npigfishes\\npigged\\npiggeries\\npiggery\\npiggie\\npiggies\\npiggin\\npigging\\npiggins\\npiggish\\npiggy\\npiggyback\\npigheaded\\npiglet\\npiglets\\npigment\\npigmentation\\npigmentations\\npigmented\\npigmenting\\npigments\\npigmies\\npigmy\\npignora\\npignus\\npignut\\npignuts\\npigpen\\npigpens\\npigs\\npigskin\\npigskins\\npigsney\\npigsneys\\npigstick\\npigsticked\\npigsticking\\npigsticks\\npigsties\\npigsty\\npigtail\\npigtails\\npigweed\\npigweeds\\npiing\\npika\\npikake\\npikakes\\npikas\\npike\\npiked\\npikeman\\npikemen\\npiker\\npikers\\npikes\\npikestaff\\npikestaves\\npiking\\npilaf\\npilaff\\npilaffs\\npilafs\\npilar\\npilaster\\npilasters\\npilau\\npilaus\\npilaw\\npilaws\\npilchard\\npilchards\\npile\\npilea\\npileate\\npileated\\npiled\\npilei\\npileous\\npiles\\npileum\\npileup\\npileups\\npileus\\npilewort\\npileworts\\npilfer\\npilfered\\npilferer\\npilferers\\npilfering\\npilfers\\npilgrim\\npilgrimage\\npilgrimages\\npilgrims\\npili\\npiliform\\npiling\\npilings\\npilis\\npill\\npillage\\npillaged\\npillager\\npillagers\\npillages\\npillaging\\npillar\\npillared\\npillaring\\npillars\\npillbox\\npillboxes\\npilled\\npilling\\npillion\\npillions\\npilloried\\npillories\\npillory\\npillorying\\npillow\\npillowcase\\npillowcases\\npillowed\\npillowing\\npillows\\npillowy\\npills\\npilose\\npilosities\\npilosity\\npilot\\npilotage\\npilotages\\npiloted\\npiloting\\npilotings\\npilotless\\npilots\\npilous\\npilsener\\npilseners\\npilsner\\npilsners\\npilular\\npilule\\npilules\\npilus\\npily\\npima\\npimas\\npimento\\npimentos\\npimiento\\npimientos\\npimp\\npimped\\npimping\\npimple\\npimpled\\npimples\\npimplier\\npimpliest\\npimply\\npimps\\npin\\npina\\npinafore\\npinafores\\npinang\\npinangs\\npinas\\npinaster\\npinasters\\npinata\\npinatas\\npinball\\npinballs\\npinbone\\npinbones\\npincer\\npincers\\npinch\\npinchbug\\npinchbugs\\npincheck\\npinchecks\\npinched\\npincher\\npinchers\\npinches\\npinchhitter\\npinchhitters\\npinching\\npincushion\\npincushions\\npinder\\npinders\\npindling\\npine\\npineal\\npineapple\\npineapples\\npinecone\\npinecones\\npined\\npinelike\\npinene\\npinenes\\npineries\\npinery\\npines\\npinesap\\npinesaps\\npineta\\npinetum\\npinewood\\npinewoods\\npiney\\npinfeather\\npinfeathers\\npinfish\\npinfishes\\npinfold\\npinfolded\\npinfolding\\npinfolds\\nping\\npinged\\npinger\\npingers\\npinging\\npingo\\npingos\\npingrass\\npingrasses\\npings\\npinguid\\npinhead\\npinheads\\npinhole\\npinholes\\npinier\\npiniest\\npining\\npinion\\npinioned\\npinioning\\npinions\\npinite\\npinites\\npink\\npinked\\npinker\\npinkest\\npinkeye\\npinkeyes\\npinkie\\npinkies\\npinking\\npinkings\\npinkish\\npinkly\\npinkness\\npinknesses\\npinko\\npinkoes\\npinkos\\npinkroot\\npinkroots\\npinks\\npinky\\npinna\\npinnace\\npinnaces\\npinnacle\\npinnacled\\npinnacles\\npinnacling\\npinnae\\npinnal\\npinnas\\npinnate\\npinnated\\npinned\\npinner\\npinners\\npinning\\npinniped\\npinnipeds\\npinnula\\npinnulae\\npinnular\\npinnule\\npinnules\\npinochle\\npinochles\\npinocle\\npinocles\\npinole\\npinoles\\npinon\\npinones\\npinons\\npinpoint\\npinpointed\\npinpointing\\npinpoints\\npinprick\\npinpricked\\npinpricking\\npinpricks\\npins\\npinscher\\npinschers\\npint\\npinta\\npintada\\npintadas\\npintado\\npintadoes\\npintados\\npintail\\npintails\\npintano\\npintanos\\npintas\\npintle\\npintles\\npinto\\npintoes\\npintos\\npints\\npintsize\\npinup\\npinups\\npinwale\\npinwales\\npinweed\\npinweeds\\npinwheel\\npinwheels\\npinwork\\npinworks\\npinworm\\npinworms\\npiny\\npinyon\\npinyons\\npiolet\\npiolets\\npion\\npioneer\\npioneered\\npioneering\\npioneers\\npionic\\npions\\npiosities\\npiosity\\npious\\npiously\\npip\\npipage\\npipages\\npipal\\npipals\\npipe\\npipeage\\npipeages\\npiped\\npipefish\\npipefishes\\npipeful\\npipefuls\\npipeless\\npipelike\\npipeline\\npipelined\\npipelines\\npipelining\\npiper\\npiperine\\npiperines\\npipers\\npipes\\npipestem\\npipestems\\npipet\\npipets\\npipette\\npipetted\\npipettes\\npipetting\\npipier\\npipiest\\npiping\\npipingly\\npipings\\npipit\\npipits\\npipkin\\npipkins\\npipped\\npippin\\npipping\\npippins\\npips\\npipy\\npiquancies\\npiquancy\\npiquant\\npique\\npiqued\\npiques\\npiquet\\npiquets\\npiquing\\npiracies\\npiracy\\npiragua\\npiraguas\\npirana\\npiranas\\npiranha\\npiranhas\\npirarucu\\npirarucus\\npirate\\npirated\\npirates\\npiratic\\npiratical\\npirating\\npiraya\\npirayas\\npirn\\npirns\\npirog\\npirogen\\npiroghi\\npirogi\\npirogue\\npirogues\\npirojki\\npiroque\\npiroques\\npiroshki\\npirouette\\npirouetted\\npirouettes\\npirouetting\\npirozhki\\npirozhok\\npis\\npiscaries\\npiscary\\npiscator\\npiscators\\npiscina\\npiscinae\\npiscinal\\npiscinas\\npiscine\\npish\\npished\\npishes\\npishing\\npisiform\\npisiforms\\npismire\\npismires\\npismo\\npisolite\\npisolites\\npiss\\npissant\\npissants\\npissed\\npisses\\npissing\\npissoir\\npissoirs\\npistache\\npistaches\\npistachio\\npistil\\npistillate\\npistils\\npistol\\npistole\\npistoled\\npistoles\\npistoling\\npistolled\\npistolling\\npistols\\npiston\\npistons\\npit\\npita\\npitapat\\npitapats\\npitapatted\\npitapatting\\npitas\\npitch\\npitchblende\\npitchblendes\\npitched\\npitcher\\npitchers\\npitches\\npitchfork\\npitchforks\\npitchier\\npitchiest\\npitchily\\npitching\\npitchman\\npitchmen\\npitchout\\npitchouts\\npitchy\\npiteous\\npiteously\\npitfall\\npitfalls\\npith\\npithead\\npitheads\\npithed\\npithier\\npithiest\\npithily\\npithing\\npithless\\npiths\\npithy\\npitiable\\npitiably\\npitied\\npitier\\npitiers\\npities\\npitiful\\npitifuller\\npitifullest\\npitifully\\npitiless\\npitilessly\\npitman\\npitmans\\npitmen\\npiton\\npitons\\npits\\npitsaw\\npitsaws\\npittance\\npittances\\npitted\\npitting\\npittings\\npittsburgh\\npituitary\\npity\\npitying\\npiu\\npivot\\npivotal\\npivoted\\npivoting\\npivots\\npix\\npixes\\npixie\\npixieish\\npixies\\npixiness\\npixinesses\\npixy\\npixyish\\npixys\\npizazz\\npizazzes\\npizza\\npizzas\\npizzeria\\npizzerias\\npizzle\\npizzles\\nplacable\\nplacably\\nplacard\\nplacarded\\nplacarding\\nplacards\\nplacate\\nplacated\\nplacater\\nplacaters\\nplacates\\nplacating\\nplace\\nplacebo\\nplaceboes\\nplacebos\\nplaced\\nplaceman\\nplacemen\\nplacement\\nplacements\\nplacenta\\nplacentae\\nplacental\\nplacentas\\nplacer\\nplacers\\nplaces\\nplacet\\nplacets\\nplacid\\nplacidly\\nplacing\\nplack\\nplacket\\nplackets\\nplacks\\nplacoid\\nplacoids\\nplafond\\nplafonds\\nplagal\\nplage\\nplages\\nplagiaries\\nplagiarism\\nplagiarisms\\nplagiarist\\nplagiarists\\nplagiarize\\nplagiarized\\nplagiarizes\\nplagiarizing\\nplagiary\\nplague\\nplagued\\nplaguer\\nplaguers\\nplagues\\nplaguey\\nplaguily\\nplaguing\\nplaguy\\nplaice\\nplaices\\nplaid\\nplaided\\nplaids\\nplain\\nplained\\nplainer\\nplainest\\nplaining\\nplainly\\nplainness\\nplainnesses\\nplains\\nplaint\\nplaintiff\\nplaintiffs\\nplaintive\\nplaintively\\nplaints\\nplaister\\nplaistered\\nplaistering\\nplaisters\\nplait\\nplaited\\nplaiter\\nplaiters\\nplaiting\\nplaitings\\nplaits\\nplan\\nplanar\\nplanaria\\nplanarias\\nplanate\\nplanch\\nplanche\\nplanches\\nplanchet\\nplanchets\\nplane\\nplaned\\nplaner\\nplaners\\nplanes\\nplanet\\nplanetaria\\nplanetarium\\nplanetariums\\nplanetary\\nplanets\\nplanform\\nplanforms\\nplangent\\nplaning\\nplanish\\nplanished\\nplanishes\\nplanishing\\nplank\\nplanked\\nplanking\\nplankings\\nplanks\\nplankter\\nplankters\\nplankton\\nplanktonic\\nplanktons\\nplanless\\nplanned\\nplanner\\nplanners\\nplanning\\nplannings\\nplanosol\\nplanosols\\nplans\\nplant\\nplantain\\nplantains\\nplantar\\nplantation\\nplantations\\nplanted\\nplanter\\nplanters\\nplanting\\nplantings\\nplants\\nplanula\\nplanulae\\nplanular\\nplaque\\nplaques\\nplash\\nplashed\\nplasher\\nplashers\\nplashes\\nplashier\\nplashiest\\nplashing\\nplashy\\nplasm\\nplasma\\nplasmas\\nplasmatic\\nplasmic\\nplasmid\\nplasmids\\nplasmin\\nplasmins\\nplasmoid\\nplasmoids\\nplasmon\\nplasmons\\nplasms\\nplaster\\nplastered\\nplasterer\\nplasterers\\nplastering\\nplasters\\nplastery\\nplastic\\nplasticities\\nplasticity\\nplastics\\nplastid\\nplastids\\nplastral\\nplastron\\nplastrons\\nplastrum\\nplastrums\\nplat\\nplatan\\nplatane\\nplatanes\\nplatans\\nplate\\nplateau\\nplateaued\\nplateauing\\nplateaus\\nplateaux\\nplated\\nplateful\\nplatefuls\\nplatelet\\nplatelets\\nplaten\\nplatens\\nplater\\nplaters\\nplates\\nplatesful\\nplatform\\nplatforms\\nplatier\\nplaties\\nplatiest\\nplatina\\nplatinas\\nplating\\nplatings\\nplatinic\\nplatinum\\nplatinums\\nplatitude\\nplatitudes\\nplatitudinous\\nplatonic\\nplatoon\\nplatooned\\nplatooning\\nplatoons\\nplats\\nplatted\\nplatter\\nplatters\\nplatting\\nplaty\\nplatypi\\nplatypus\\nplatypuses\\nplatys\\nplaudit\\nplaudits\\nplausibilities\\nplausibility\\nplausible\\nplausibly\\nplausive\\nplay\\nplaya\\nplayable\\nplayact\\nplayacted\\nplayacting\\nplayactings\\nplayacts\\nplayas\\nplayback\\nplaybacks\\nplaybill\\nplaybills\\nplaybook\\nplaybooks\\nplayboy\\nplayboys\\nplayday\\nplaydays\\nplaydown\\nplaydowns\\nplayed\\nplayer\\nplayers\\nplayful\\nplayfully\\nplayfulness\\nplayfulnesses\\nplaygirl\\nplaygirls\\nplaygoer\\nplaygoers\\nplayground\\nplaygrounds\\nplayhouse\\nplayhouses\\nplaying\\nplayland\\nplaylands\\nplayless\\nplaylet\\nplaylets\\nplaylike\\nplaymate\\nplaymates\\nplayoff\\nplayoffs\\nplaypen\\nplaypens\\nplayroom\\nplayrooms\\nplays\\nplaysuit\\nplaysuits\\nplaything\\nplaythings\\nplaytime\\nplaytimes\\nplaywear\\nplaywears\\nplaywright\\nplaywrights\\nplaza\\nplazas\\nplea\\npleach\\npleached\\npleaches\\npleaching\\nplead\\npleaded\\npleader\\npleaders\\npleading\\npleadings\\npleads\\npleas\\npleasant\\npleasanter\\npleasantest\\npleasantly\\npleasantness\\npleasantnesses\\npleasantries\\nplease\\npleased\\npleaser\\npleasers\\npleases\\npleasing\\npleasingly\\npleasurable\\npleasurably\\npleasure\\npleasured\\npleasures\\npleasuring\\npleat\\npleated\\npleater\\npleaters\\npleating\\npleats\\npleb\\nplebe\\nplebeian\\nplebeians\\nplebes\\nplebiscite\\nplebiscites\\nplebs\\nplectra\\nplectron\\nplectrons\\nplectrum\\nplectrums\\npled\\npledge\\npledged\\npledgee\\npledgees\\npledgeor\\npledgeors\\npledger\\npledgers\\npledges\\npledget\\npledgets\\npledging\\npledgor\\npledgors\\npleiad\\npleiades\\npleiads\\nplena\\nplenary\\nplenipotentiaries\\nplenipotentiary\\nplenish\\nplenished\\nplenishes\\nplenishing\\nplenism\\nplenisms\\nplenist\\nplenists\\nplenitude\\nplenitudes\\nplenteous\\nplenties\\nplentiful\\nplentifully\\nplenty\\nplenum\\nplenums\\npleonasm\\npleonasms\\npleopod\\npleopods\\nplessor\\nplessors\\nplethora\\nplethoras\\npleura\\npleurae\\npleural\\npleuras\\npleurisies\\npleurisy\\npleuron\\npleuston\\npleustons\\nplexor\\nplexors\\nplexus\\nplexuses\\npliable\\npliably\\npliancies\\npliancy\\npliant\\npliantly\\nplica\\nplicae\\nplical\\nplicate\\nplicated\\nplie\\nplied\\nplier\\npliers\\nplies\\nplight\\nplighted\\nplighter\\nplighters\\nplighting\\nplights\\nplimsol\\nplimsole\\nplimsoles\\nplimsoll\\nplimsolls\\nplimsols\\nplink\\nplinked\\nplinker\\nplinkers\\nplinking\\nplinks\\nplinth\\nplinths\\npliskie\\npliskies\\nplisky\\nplisse\\nplisses\\nplod\\nplodded\\nplodder\\nplodders\\nplodding\\nploddingly\\nplods\\nploidies\\nploidy\\nplonk\\nplonked\\nplonking\\nplonks\\nplop\\nplopped\\nplopping\\nplops\\nplosion\\nplosions\\nplosive\\nplosives\\nplot\\nplotless\\nplots\\nplottage\\nplottages\\nplotted\\nplotter\\nplotters\\nplottier\\nplotties\\nplottiest\\nplotting\\nplotty\\nplough\\nploughed\\nplougher\\nploughers\\nploughing\\nploughs\\nplover\\nplovers\\nplow\\nplowable\\nplowback\\nplowbacks\\nplowboy\\nplowboys\\nplowed\\nplower\\nplowers\\nplowhead\\nplowheads\\nplowing\\nplowland\\nplowlands\\nplowman\\nplowmen\\nplows\\nplowshare\\nplowshares\\nploy\\nployed\\nploying\\nploys\\npluck\\nplucked\\nplucker\\npluckers\\npluckier\\npluckiest\\npluckily\\nplucking\\nplucks\\nplucky\\nplug\\nplugged\\nplugger\\npluggers\\nplugging\\nplugless\\nplugs\\npluguglies\\nplugugly\\nplum\\nplumage\\nplumaged\\nplumages\\nplumate\\nplumb\\nplumbago\\nplumbagos\\nplumbed\\nplumber\\nplumberies\\nplumbers\\nplumbery\\nplumbic\\nplumbing\\nplumbings\\nplumbism\\nplumbisms\\nplumbous\\nplumbs\\nplumbum\\nplumbums\\nplume\\nplumed\\nplumelet\\nplumelets\\nplumes\\nplumier\\nplumiest\\npluming\\nplumiped\\nplumipeds\\nplumlike\\nplummet\\nplummeted\\nplummeting\\nplummets\\nplummier\\nplummiest\\nplummy\\nplumose\\nplump\\nplumped\\nplumpen\\nplumpened\\nplumpening\\nplumpens\\nplumper\\nplumpers\\nplumpest\\nplumping\\nplumpish\\nplumply\\nplumpness\\nplumpnesses\\nplumps\\nplums\\nplumular\\nplumule\\nplumules\\nplumy\\nplunder\\nplundered\\nplundering\\nplunders\\nplunge\\nplunged\\nplunger\\nplungers\\nplunges\\nplunging\\nplunk\\nplunked\\nplunker\\nplunkers\\nplunking\\nplunks\\nplural\\npluralism\\npluralities\\nplurality\\npluralization\\npluralizations\\npluralize\\npluralized\\npluralizes\\npluralizing\\nplurally\\nplurals\\nplus\\npluses\\nplush\\nplusher\\nplushes\\nplushest\\nplushier\\nplushiest\\nplushily\\nplushly\\nplushy\\nplussage\\nplussages\\nplusses\\nplutocracies\\nplutocracy\\nplutocrat\\nplutocratic\\nplutocrats\\npluton\\nplutonic\\nplutonium\\nplutoniums\\nplutons\\npluvial\\npluvials\\npluviose\\npluvious\\nply\\nplyer\\nplyers\\nplying\\nplyingly\\nplywood\\nplywoods\\npneuma\\npneumas\\npneumatic\\npneumatically\\npneumonia\\npoaceous\\npoach\\npoached\\npoacher\\npoachers\\npoaches\\npoachier\\npoachiest\\npoaching\\npoachy\\npochard\\npochards\\npock\\npocked\\npocket\\npocketbook\\npocketbooks\\npocketed\\npocketer\\npocketers\\npocketful\\npocketfuls\\npocketing\\npocketknife\\npocketknives\\npockets\\npockier\\npockiest\\npockily\\npocking\\npockmark\\npockmarked\\npockmarking\\npockmarks\\npocks\\npocky\\npoco\\npocosin\\npocosins\\npod\\npodagra\\npodagral\\npodagras\\npodagric\\npodded\\npodding\\npodesta\\npodestas\\npodgier\\npodgiest\\npodgily\\npodgy\\npodia\\npodiatries\\npodiatrist\\npodiatry\\npodite\\npodites\\npoditic\\npodium\\npodiums\\npodomere\\npodomeres\\npods\\npodsol\\npodsolic\\npodsols\\npodzol\\npodzolic\\npodzols\\npoechore\\npoechores\\npoem\\npoems\\npoesies\\npoesy\\npoet\\npoetess\\npoetesses\\npoetic\\npoetical\\npoetics\\npoetise\\npoetised\\npoetiser\\npoetisers\\npoetises\\npoetising\\npoetize\\npoetized\\npoetizer\\npoetizers\\npoetizes\\npoetizing\\npoetless\\npoetlike\\npoetries\\npoetry\\npoets\\npogey\\npogeys\\npogies\\npogonia\\npogonias\\npogonip\\npogonips\\npogrom\\npogromed\\npogroming\\npogroms\\npogy\\npoh\\npoi\\npoignancies\\npoignancy\\npoignant\\npoilu\\npoilus\\npoind\\npoinded\\npoinding\\npoinds\\npoinsettia\\npoint\\npointe\\npointed\\npointer\\npointers\\npointes\\npointier\\npointiest\\npointing\\npointless\\npointman\\npointmen\\npoints\\npointy\\npois\\npoise\\npoised\\npoiser\\npoisers\\npoises\\npoising\\npoison\\npoisoned\\npoisoner\\npoisoners\\npoisoning\\npoisonous\\npoisons\\npoitrel\\npoitrels\\npoke\\npoked\\npoker\\npokeroot\\npokeroots\\npokers\\npokes\\npokeweed\\npokeweeds\\npokey\\npokeys\\npokier\\npokies\\npokiest\\npokily\\npokiness\\npokinesses\\npoking\\npoky\\npol\\npolar\\npolarise\\npolarised\\npolarises\\npolarising\\npolarities\\npolarity\\npolarization\\npolarizations\\npolarize\\npolarized\\npolarizes\\npolarizing\\npolaron\\npolarons\\npolars\\npolder\\npolders\\npole\\npoleax\\npoleaxe\\npoleaxed\\npoleaxes\\npoleaxing\\npolecat\\npolecats\\npoled\\npoleis\\npoleless\\npolemic\\npolemical\\npolemicist\\npolemicists\\npolemics\\npolemist\\npolemists\\npolemize\\npolemized\\npolemizes\\npolemizing\\npolenta\\npolentas\\npoler\\npolers\\npoles\\npolestar\\npolestars\\npoleward\\npoleyn\\npoleyns\\npolice\\npoliced\\npoliceman\\npolicemen\\npolices\\npolicewoman\\npolicewomen\\npolicies\\npolicing\\npolicy\\npolicyholder\\npoling\\npolio\\npoliomyelitis\\npoliomyelitises\\npolios\\npolis\\npolish\\npolished\\npolisher\\npolishers\\npolishes\\npolishing\\npolite\\npolitely\\npoliteness\\npolitenesses\\npoliter\\npolitest\\npolitic\\npolitical\\npolitician\\npoliticians\\npolitick\\npoliticked\\npoliticking\\npoliticks\\npolitico\\npoliticoes\\npoliticos\\npolitics\\npolities\\npolity\\npolka\\npolkaed\\npolkaing\\npolkas\\npoll\\npollack\\npollacks\\npollard\\npollarded\\npollarding\\npollards\\npolled\\npollee\\npollees\\npollen\\npollened\\npollening\\npollens\\npoller\\npollers\\npollex\\npollical\\npollices\\npollinate\\npollinated\\npollinates\\npollinating\\npollination\\npollinations\\npollinator\\npollinators\\npolling\\npollinia\\npollinic\\npollist\\npollists\\npolliwog\\npolliwogs\\npollock\\npollocks\\npolls\\npollster\\npollsters\\npollutant\\npollute\\npolluted\\npolluter\\npolluters\\npollutes\\npolluting\\npollution\\npollutions\\npolly\\npollywog\\npollywogs\\npolo\\npoloist\\npoloists\\npolonium\\npoloniums\\npolos\\npols\\npoltroon\\npoltroons\\npoly\\npolybrid\\npolybrids\\npolycot\\npolycots\\npolyene\\npolyenes\\npolyenic\\npolyester\\npolyesters\\npolygala\\npolygalas\\npolygamies\\npolygamist\\npolygamists\\npolygamous\\npolygamy\\npolygene\\npolygenes\\npolyglot\\npolyglots\\npolygon\\npolygonies\\npolygons\\npolygony\\npolygynies\\npolygyny\\npolymath\\npolymaths\\npolymer\\npolymers\\npolynya\\npolynyas\\npolyp\\npolyparies\\npolypary\\npolypi\\npolypide\\npolypides\\npolypnea\\npolypneas\\npolypod\\npolypodies\\npolypods\\npolypody\\npolypoid\\npolypore\\npolypores\\npolypous\\npolyps\\npolypus\\npolypuses\\npolys\\npolysemies\\npolysemy\\npolysome\\npolysomes\\npolysyllabic\\npolysyllable\\npolysyllables\\npolytechnic\\npolytene\\npolytenies\\npolyteny\\npolytheism\\npolytheisms\\npolytheist\\npolytheists\\npolytype\\npolytypes\\npolyuria\\npolyurias\\npolyuric\\npolyzoan\\npolyzoans\\npolyzoic\\npomace\\npomaces\\npomade\\npomaded\\npomades\\npomading\\npomander\\npomanders\\npomatum\\npomatums\\npome\\npomegranate\\npomegranates\\npomelo\\npomelos\\npomes\\npommee\\npommel\\npommeled\\npommeling\\npommelled\\npommelling\\npommels\\npomologies\\npomology\\npomp\\npompano\\npompanos\\npompom\\npompoms\\npompon\\npompons\\npomposities\\npomposity\\npompous\\npompously\\npomps\\nponce\\nponces\\nponcho\\nponchos\\npond\\nponder\\npondered\\nponderer\\nponderers\\npondering\\nponderous\\nponders\\nponds\\npondville\\npondweed\\npondweeds\\npone\\nponent\\npones\\npongee\\npongees\\npongid\\npongids\\nponiard\\nponiarded\\nponiarding\\nponiards\\nponied\\nponies\\npons\\npontes\\npontifex\\npontiff\\npontiffs\\npontific\\npontifical\\npontificate\\npontificated\\npontificates\\npontificating\\npontifices\\npontil\\npontils\\npontine\\nponton\\npontons\\npontoon\\npontoons\\npony\\nponying\\nponytail\\nponytails\\npooch\\npooches\\npood\\npoodle\\npoodles\\npoods\\npooh\\npoohed\\npoohing\\npoohs\\npool\\npooled\\npoolhall\\npoolhalls\\npooling\\npoolroom\\npoolrooms\\npools\\npoon\\npoons\\npoop\\npooped\\npooping\\npoops\\npoor\\npoorer\\npoorest\\npoori\\npooris\\npoorish\\npoorly\\npoorness\\npoornesses\\npoortith\\npoortiths\\npop\\npopcorn\\npopcorns\\npope\\npopedom\\npopedoms\\npopeless\\npopelike\\npoperies\\npopery\\npopes\\npopeyed\\npopgun\\npopguns\\npopinjay\\npopinjays\\npopish\\npopishly\\npoplar\\npoplars\\npoplin\\npoplins\\npoplitic\\npopover\\npopovers\\npoppa\\npoppas\\npopped\\npopper\\npoppers\\npoppet\\npoppets\\npoppied\\npoppies\\npopping\\npopple\\npoppled\\npopples\\npoppling\\npoppy\\npops\\npopulace\\npopulaces\\npopular\\npopularities\\npopularity\\npopularize\\npopularized\\npopularizes\\npopularizing\\npopularly\\npopulate\\npopulated\\npopulates\\npopulating\\npopulation\\npopulations\\npopulism\\npopulisms\\npopulist\\npopulists\\npopulous\\npopulousness\\npopulousnesses\\nporcelain\\nporcelains\\nporch\\nporches\\nporcine\\nporcupine\\nporcupines\\npore\\npored\\npores\\nporgies\\nporgy\\nporing\\nporism\\nporisms\\npork\\nporker\\nporkers\\nporkier\\nporkies\\nporkiest\\nporkpie\\nporkpies\\nporks\\nporkwood\\nporkwoods\\nporky\\nporn\\nporno\\npornographic\\npornography\\npornos\\nporns\\nporose\\nporosities\\nporosity\\nporous\\nporously\\nporphyries\\nporphyry\\nporpoise\\nporpoises\\nporrect\\nporridge\\nporridges\\nporringer\\nporringers\\nport\\nportability\\nportable\\nportables\\nportably\\nportage\\nportaged\\nportages\\nportaging\\nportal\\nportaled\\nportals\\nportance\\nportances\\nporte\\nported\\nportend\\nportended\\nportending\\nportends\\nportent\\nportentious\\nportents\\nporter\\nporterhouse\\nporterhouses\\nporters\\nportfolio\\nportfolios\\nporthole\\nportholes\\nportico\\nporticoes\\nporticos\\nportiere\\nportieres\\nporting\\nportion\\nportioned\\nportioning\\nportions\\nportless\\nportlier\\nportliest\\nportly\\nportrait\\nportraitist\\nportraitists\\nportraits\\nportraiture\\nportraitures\\nportray\\nportrayal\\nportrayals\\nportrayed\\nportraying\\nportrays\\nportress\\nportresses\\nports\\nposada\\nposadas\\npose\\nposed\\nposer\\nposers\\nposes\\nposeur\\nposeurs\\nposh\\nposher\\nposhest\\nposies\\nposing\\nposingly\\nposit\\nposited\\npositing\\nposition\\npositioned\\npositioning\\npositions\\npositive\\npositively\\npositiveness\\npositivenesses\\npositiver\\npositives\\npositivest\\npositivity\\npositron\\npositrons\\nposits\\nposologies\\nposology\\nposse\\nposses\\npossess\\npossessed\\npossesses\\npossessing\\npossession\\npossessions\\npossessive\\npossessiveness\\npossessivenesses\\npossessives\\npossessor\\npossessors\\nposset\\npossets\\npossibilities\\npossibility\\npossible\\npossibler\\npossiblest\\npossibly\\npossum\\npossums\\npost\\npostadolescence\\npostadolescences\\npostadolescent\\npostage\\npostages\\npostal\\npostally\\npostals\\npostanal\\npostattack\\npostbaccalaureate\\npostbag\\npostbags\\npostbiblical\\npostbox\\npostboxes\\npostboy\\npostboys\\npostcard\\npostcards\\npostcava\\npostcavae\\npostcollege\\npostcolonial\\npostdate\\npostdated\\npostdates\\npostdating\\nposted\\nposteen\\nposteens\\npostelection\\nposter\\nposterior\\nposteriors\\nposterities\\nposterity\\npostern\\nposterns\\nposters\\npostexercise\\npostface\\npostfaces\\npostfertilization\\npostfertilizations\\npostfix\\npostfixed\\npostfixes\\npostfixing\\npostflight\\npostform\\npostformed\\npostforming\\npostforms\\npostgraduate\\npostgraduates\\npostgraduation\\npostharvest\\nposthaste\\nposthole\\npostholes\\nposthospital\\nposthumous\\npostiche\\npostiches\\npostimperial\\npostin\\npostinaugural\\npostindustrial\\nposting\\npostings\\npostinjection\\npostinoculation\\npostins\\npostique\\npostiques\\npostlude\\npostludes\\npostman\\npostmarital\\npostmark\\npostmarked\\npostmarking\\npostmarks\\npostmaster\\npostmasters\\npostmen\\npostmenopausal\\npostmortem\\npostmortems\\npostnatal\\npostnuptial\\npostoperative\\npostoral\\npostpaid\\npostpartum\\npostpone\\npostponed\\npostponement\\npostponements\\npostpones\\npostponing\\npostproduction\\npostpubertal\\npostpuberty\\npostradiation\\npostrecession\\npostretirement\\npostrevolutionary\\nposts\\npostscript\\npostscripts\\npostseason\\npostsecondary\\npostsurgical\\nposttreatment\\nposttrial\\npostulant\\npostulants\\npostulate\\npostulated\\npostulates\\npostulating\\npostural\\nposture\\npostured\\nposturer\\nposturers\\npostures\\nposturing\\npostvaccination\\npostwar\\nposy\\npot\\npotable\\npotables\\npotage\\npotages\\npotamic\\npotash\\npotashes\\npotassic\\npotassium\\npotassiums\\npotation\\npotations\\npotato\\npotatoes\\npotatory\\npotbellied\\npotbellies\\npotbelly\\npotboil\\npotboiled\\npotboiling\\npotboils\\npotboy\\npotboys\\npoteen\\npoteens\\npotence\\npotences\\npotencies\\npotency\\npotent\\npotentate\\npotentates\\npotential\\npotentialities\\npotentiality\\npotentially\\npotentials\\npotently\\npotful\\npotfuls\\npothead\\npotheads\\npotheen\\npotheens\\npother\\npotherb\\npotherbs\\npothered\\npothering\\npothers\\npothole\\npotholed\\npotholes\\npothook\\npothooks\\npothouse\\npothouses\\npotiche\\npotiches\\npotion\\npotions\\npotlach\\npotlache\\npotlaches\\npotlatch\\npotlatched\\npotlatches\\npotlatching\\npotlike\\npotluck\\npotlucks\\npotman\\npotmen\\npotpie\\npotpies\\npotpourri\\npotpourris\\npots\\npotshard\\npotshards\\npotsherd\\npotsherds\\npotshot\\npotshots\\npotshotting\\npotsie\\npotsies\\npotstone\\npotstones\\npotsy\\npottage\\npottages\\npotted\\npotteen\\npotteens\\npotter\\npottered\\npotterer\\npotterers\\npotteries\\npottering\\npotters\\npottery\\npottier\\npotties\\npottiest\\npotting\\npottle\\npottles\\npotto\\npottos\\npotty\\npouch\\npouched\\npouches\\npouchier\\npouchiest\\npouching\\npouchy\\npouf\\npoufed\\npouff\\npouffe\\npouffed\\npouffes\\npouffs\\npoufs\\npoulard\\npoularde\\npoulardes\\npoulards\\npoult\\npoultice\\npoulticed\\npoultices\\npoulticing\\npoultries\\npoultry\\npoults\\npounce\\npounced\\npouncer\\npouncers\\npounces\\npouncing\\npound\\npoundage\\npoundages\\npoundal\\npoundals\\npounded\\npounder\\npounders\\npounding\\npounds\\npour\\npourable\\npoured\\npourer\\npourers\\npouring\\npours\\npoussie\\npoussies\\npout\\npouted\\npouter\\npouters\\npoutful\\npoutier\\npoutiest\\npouting\\npouts\\npouty\\npoverties\\npoverty\\npow\\npowder\\npowdered\\npowderer\\npowderers\\npowdering\\npowders\\npowdery\\npower\\npowered\\npowerful\\npowerfully\\npowering\\npowerless\\npowerlessness\\npowers\\npows\\npowter\\npowters\\npowwow\\npowwowed\\npowwowing\\npowwows\\npox\\npoxed\\npoxes\\npoxing\\npoxvirus\\npoxviruses\\npoyou\\npoyous\\npozzolan\\npozzolans\\npraam\\npraams\\npractic\\npracticabilities\\npracticability\\npracticable\\npractical\\npracticalities\\npracticality\\npractically\\npractice\\npracticed\\npractices\\npracticing\\npractise\\npractised\\npractises\\npractising\\npractitioner\\npractitioners\\npraecipe\\npraecipes\\npraedial\\npraefect\\npraefects\\npraelect\\npraelected\\npraelecting\\npraelects\\npraetor\\npraetors\\npragmatic\\npragmatism\\npragmatisms\\nprahu\\nprahus\\nprairie\\nprairies\\npraise\\npraised\\npraiser\\npraisers\\npraises\\npraiseworthy\\npraising\\npraline\\npralines\\npram\\nprams\\nprance\\npranced\\nprancer\\nprancers\\nprances\\nprancing\\nprandial\\nprang\\npranged\\npranging\\nprangs\\nprank\\npranked\\npranking\\nprankish\\npranks\\nprankster\\npranksters\\nprao\\npraos\\nprase\\nprases\\nprat\\nprate\\nprated\\nprater\\npraters\\nprates\\npratfall\\npratfalls\\nprating\\npratique\\npratiques\\nprats\\nprattle\\nprattled\\nprattler\\nprattlers\\nprattles\\nprattling\\nprau\\npraus\\nprawn\\nprawned\\nprawner\\nprawners\\nprawning\\nprawns\\npraxes\\npraxis\\npraxises\\npray\\nprayed\\nprayer\\nprayers\\npraying\\nprays\\npreach\\npreached\\npreacher\\npreachers\\npreaches\\npreachier\\npreachiest\\npreaching\\npreachment\\npreachments\\npreachy\\npreact\\npreacted\\npreacting\\npreacts\\npreadapt\\npreadapted\\npreadapting\\npreadapts\\npreaddress\\npreadmission\\npreadmit\\npreadmits\\npreadmitted\\npreadmitting\\npreadolescence\\npreadolescences\\npreadolescent\\npreadopt\\npreadopted\\npreadopting\\npreadopts\\npreadult\\npreaged\\npreallocate\\npreallocated\\npreallocates\\npreallocating\\npreallot\\npreallots\\npreallotted\\npreallotting\\npreamble\\npreambles\\npreamp\\npreamps\\npreanal\\npreanesthetic\\npreanesthetics\\nprearm\\nprearmed\\nprearming\\nprearms\\nprearraignment\\nprearrange\\nprearranged\\nprearrangement\\nprearrangements\\nprearranges\\nprearranging\\npreassemble\\npreassembled\\npreassembles\\npreassembling\\npreassign\\npreassigned\\npreassigning\\npreassigns\\npreauthorize\\npreauthorized\\npreauthorizes\\npreauthorizing\\npreaver\\npreaverred\\npreaverring\\npreavers\\npreaxial\\nprebasal\\nprebattle\\nprebend\\nprebends\\nprebiblical\\nprebill\\nprebilled\\nprebilling\\nprebills\\nprebind\\nprebinding\\nprebinds\\nprebless\\npreblessed\\npreblesses\\npreblessing\\npreboil\\npreboiled\\npreboiling\\npreboils\\nprebound\\nprebreakfast\\nprecalculate\\nprecalculated\\nprecalculates\\nprecalculating\\nprecalculus\\nprecalculuses\\nprecampaign\\nprecancel\\nprecanceled\\nprecanceling\\nprecancellation\\nprecancellations\\nprecancels\\nprecarious\\nprecariously\\nprecariousness\\nprecariousnesses\\nprecast\\nprecasting\\nprecasts\\nprecaution\\nprecautionary\\nprecautions\\nprecava\\nprecavae\\nprecaval\\nprecede\\npreceded\\nprecedence\\nprecedences\\nprecedent\\nprecedents\\nprecedes\\npreceding\\nprecent\\nprecented\\nprecenting\\nprecents\\nprecept\\npreceptor\\npreceptors\\nprecepts\\nprecess\\nprecessed\\nprecesses\\nprecessing\\nprecheck\\nprechecked\\nprechecking\\nprechecks\\nprechill\\nprechilled\\nprechilling\\nprechills\\nprecieux\\nprecinct\\nprecincts\\nprecious\\npreciouses\\nprecipe\\nprecipes\\nprecipice\\nprecipices\\nprecipitate\\nprecipitated\\nprecipitately\\nprecipitateness\\nprecipitatenesses\\nprecipitates\\nprecipitating\\nprecipitation\\nprecipitations\\nprecipitous\\nprecipitously\\nprecis\\nprecise\\nprecised\\nprecisely\\npreciseness\\nprecisenesses\\npreciser\\nprecises\\nprecisest\\nprecising\\nprecision\\nprecisions\\nprecited\\nprecivilization\\npreclean\\nprecleaned\\nprecleaning\\nprecleans\\npreclearance\\npreclearances\\npreclude\\nprecluded\\nprecludes\\nprecluding\\nprecocious\\nprecocities\\nprecocity\\nprecollege\\nprecolonial\\nprecombustion\\nprecompute\\nprecomputed\\nprecomputes\\nprecomputing\\npreconceive\\npreconceived\\npreconceives\\npreconceiving\\npreconception\\npreconceptions\\npreconcerted\\nprecondition\\npreconditions\\npreconference\\npreconstruct\\npreconvention\\nprecook\\nprecooked\\nprecooking\\nprecooks\\nprecool\\nprecooled\\nprecooling\\nprecools\\nprecure\\nprecured\\nprecures\\nprecuring\\nprecursor\\nprecursors\\npredate\\npredated\\npredates\\npredating\\npredator\\npredators\\npredatory\\npredawn\\npredawns\\npredecessor\\npredecessors\\npredefine\\npredefined\\npredefines\\npredefining\\npredelinquent\\npredeparture\\npredesignate\\npredesignated\\npredesignates\\npredesignating\\npredesignation\\npredesignations\\npredestine\\npredestined\\npredestines\\npredestining\\npredetermine\\npredetermined\\npredetermines\\npredetermining\\npredial\\npredicament\\npredicaments\\npredicate\\npredicated\\npredicates\\npredicating\\npredication\\npredications\\npredict\\npredictable\\npredictably\\npredicted\\npredicting\\nprediction\\npredictions\\npredictive\\npredicts\\npredilection\\npredilections\\npredischarge\\npredispose\\npredisposed\\npredisposes\\npredisposing\\npredisposition\\npredispositions\\nprednisone\\nprednisones\\npredominance\\npredominances\\npredominant\\npredominantly\\npredominate\\npredominated\\npredominates\\npredominating\\npredusk\\npredusks\\npree\\npreed\\npreeing\\npreelect\\npreelected\\npreelecting\\npreelection\\npreelectric\\npreelectronic\\npreelects\\npreemie\\npreemies\\npreeminence\\npreeminences\\npreeminent\\npreeminently\\npreemployment\\npreempt\\npreempted\\npreempting\\npreemption\\npreemptions\\npreempts\\npreen\\npreenact\\npreenacted\\npreenacting\\npreenacts\\npreened\\npreener\\npreeners\\npreening\\npreens\\nprees\\npreestablish\\npreestablished\\npreestablishes\\npreestablishing\\npreexist\\npreexisted\\npreexistence\\npreexistences\\npreexistent\\npreexisting\\npreexists\\nprefab\\nprefabbed\\nprefabbing\\nprefabricated\\nprefabrication\\nprefabrications\\nprefabs\\npreface\\nprefaced\\nprefacer\\nprefacers\\nprefaces\\nprefacing\\nprefect\\nprefects\\nprefecture\\nprefectures\\nprefer\\npreferable\\npreferably\\npreference\\npreferences\\npreferential\\npreferment\\npreferments\\npreferred\\npreferring\\nprefers\\nprefigure\\nprefigured\\nprefigures\\nprefiguring\\nprefilter\\nprefilters\\nprefix\\nprefixal\\nprefixed\\nprefixes\\nprefixing\\nprefocus\\nprefocused\\nprefocuses\\nprefocusing\\nprefocussed\\nprefocusses\\nprefocussing\\npreform\\npreformed\\npreforming\\npreforms\\nprefrank\\nprefranked\\nprefranking\\nprefranks\\npregame\\npregnancies\\npregnancy\\npregnant\\npreheat\\npreheated\\npreheating\\npreheats\\nprehensile\\nprehistoric\\nprehistorical\\nprehuman\\nprehumans\\npreimmunization\\npreimmunizations\\npreimmunize\\npreimmunized\\npreimmunizes\\npreimmunizing\\npreinaugural\\npreindustrial\\npreinoculate\\npreinoculated\\npreinoculates\\npreinoculating\\npreinoculation\\npreinterview\\nprejudge\\nprejudged\\nprejudges\\nprejudging\\nprejudice\\nprejudiced\\nprejudices\\nprejudicial\\nprejudicing\\nprekindergarten\\nprekindergartens\\nprelacies\\nprelacy\\nprelate\\nprelates\\nprelatic\\nprelaunch\\nprelect\\nprelected\\nprelecting\\nprelects\\nprelegal\\nprelim\\npreliminaries\\npreliminary\\nprelimit\\nprelimited\\nprelimiting\\nprelimits\\nprelims\\nprelude\\npreluded\\npreluder\\npreluders\\npreludes\\npreluding\\npreman\\npremarital\\npremature\\nprematurely\\npremed\\npremedic\\npremedics\\npremeditate\\npremeditated\\npremeditates\\npremeditating\\npremeditation\\npremeditations\\npremeds\\npremen\\npremenopausal\\npremenstrual\\npremie\\npremier\\npremiere\\npremiered\\npremieres\\npremiering\\npremiers\\npremiership\\npremierships\\npremies\\npremise\\npremised\\npremises\\npremising\\npremiss\\npremisses\\npremium\\npremiums\\npremix\\npremixed\\npremixes\\npremixing\\npremodern\\npremodified\\npremodifies\\npremodify\\npremodifying\\npremoisten\\npremoistened\\npremoistening\\npremoistens\\npremolar\\npremolars\\npremonition\\npremonitions\\npremonitory\\npremorse\\npremune\\nprename\\nprenames\\nprenatal\\nprenomen\\nprenomens\\nprenomina\\nprenotification\\nprenotifications\\nprenotified\\nprenotifies\\nprenotify\\nprenotifying\\nprentice\\nprenticed\\nprentices\\nprenticing\\nprenuptial\\npreoccupation\\npreoccupations\\npreoccupied\\npreoccupies\\npreoccupy\\npreoccupying\\npreopening\\npreoperational\\npreordain\\npreordained\\npreordaining\\npreordains\\nprep\\nprepack\\nprepackage\\nprepackaged\\nprepackages\\nprepackaging\\nprepacked\\nprepacking\\nprepacks\\nprepaid\\npreparation\\npreparations\\npreparatory\\nprepare\\nprepared\\npreparedness\\npreparednesses\\npreparer\\npreparers\\nprepares\\npreparing\\nprepay\\nprepaying\\nprepays\\nprepense\\npreplace\\npreplaced\\npreplaces\\npreplacing\\npreplan\\npreplanned\\npreplanning\\npreplans\\npreplant\\npreponderance\\npreponderances\\npreponderant\\npreponderantly\\npreponderate\\npreponderated\\npreponderates\\npreponderating\\npreposition\\nprepositional\\nprepositions\\nprepossessing\\npreposterous\\nprepped\\npreppie\\npreppies\\nprepping\\npreprint\\npreprinted\\npreprinting\\npreprints\\npreprocess\\npreprocessed\\npreprocesses\\npreprocessing\\npreproduction\\npreprofessional\\npreprogram\\npreps\\nprepubertal\\nprepublication\\nprepuce\\nprepuces\\nprepunch\\nprepunched\\nprepunches\\nprepunching\\nprepurchase\\nprepurchased\\nprepurchases\\nprepurchasing\\nprerecord\\nprerecorded\\nprerecording\\nprerecords\\npreregister\\npreregistered\\npreregistering\\npreregisters\\npreregistration\\npreregistrations\\nprerehearsal\\nprerelease\\nprerenal\\nprerequisite\\nprerequisites\\npreretirement\\nprerevolutionary\\nprerogative\\nprerogatives\\npresa\\npresage\\npresaged\\npresager\\npresagers\\npresages\\npresaging\\npresbyter\\npresbyters\\nprescience\\npresciences\\nprescient\\nprescind\\nprescinded\\nprescinding\\nprescinds\\nprescore\\nprescored\\nprescores\\nprescoring\\nprescribe\\nprescribed\\nprescribes\\nprescribing\\nprescription\\nprescriptions\\nprese\\npreseason\\npreselect\\npreselected\\npreselecting\\npreselects\\npresell\\npreselling\\npresells\\npresence\\npresences\\npresent\\npresentable\\npresentation\\npresentations\\npresented\\npresentiment\\npresentiments\\npresenting\\npresently\\npresentment\\npresentments\\npresents\\npreservation\\npreservations\\npreservative\\npreservatives\\npreserve\\npreserved\\npreserver\\npreservers\\npreserves\\npreserving\\npreset\\npresets\\npresetting\\npreshape\\npreshaped\\npreshapes\\npreshaping\\npreshow\\npreshowed\\npreshowing\\npreshown\\npreshows\\npreshrink\\npreshrinked\\npreshrinking\\npreshrinks\\npreside\\npresided\\npresidencies\\npresidency\\npresident\\npresidential\\npresidents\\npresider\\npresiders\\npresides\\npresidia\\npresiding\\npresidio\\npresidios\\npresift\\npresifted\\npresifting\\npresifts\\npresoak\\npresoaked\\npresoaking\\npresoaks\\npresold\\npress\\npressed\\npresser\\npressers\\npresses\\npressing\\npressman\\npressmen\\npressor\\npressrun\\npressruns\\npressure\\npressured\\npressures\\npressuring\\npressurization\\npressurizations\\npressurize\\npressurized\\npressurizes\\npressurizing\\nprest\\nprestamp\\nprestamped\\nprestamping\\nprestamps\\nprester\\npresterilize\\npresterilized\\npresterilizes\\npresterilizing\\npresters\\nprestidigitation\\nprestidigitations\\nprestige\\nprestiges\\nprestigious\\npresto\\nprestos\\nprestrike\\nprests\\npresumable\\npresumably\\npresume\\npresumed\\npresumer\\npresumers\\npresumes\\npresuming\\npresumption\\npresumptions\\npresumptive\\npresumptuous\\npresuppose\\npresupposed\\npresupposes\\npresupposing\\npresupposition\\npresuppositions\\npresurgical\\npresweeten\\npresweetened\\npresweetening\\npresweetens\\npretaste\\npretasted\\npretastes\\npretasting\\npretax\\npreteen\\npreteens\\npretelevision\\npretence\\npretences\\npretend\\npretended\\npretender\\npretenders\\npretending\\npretends\\npretense\\npretenses\\npretension\\npretensions\\npretentious\\npretentiously\\npretentiousness\\npretentiousnesses\\npreterit\\npreterits\\npreternatural\\npreternaturally\\npretest\\npretested\\npretesting\\npretests\\npretext\\npretexted\\npretexting\\npretexts\\npretor\\npretors\\npretournament\\npretreat\\npretreated\\npretreating\\npretreatment\\npretreats\\nprettied\\nprettier\\npretties\\nprettiest\\nprettified\\nprettifies\\nprettify\\nprettifying\\nprettily\\nprettiness\\nprettinesses\\npretty\\nprettying\\npretzel\\npretzels\\npreunion\\npreunions\\npreunite\\npreunited\\npreunites\\npreuniting\\nprevail\\nprevailed\\nprevailing\\nprevailingly\\nprevails\\nprevalence\\nprevalences\\nprevalent\\nprevaricate\\nprevaricated\\nprevaricates\\nprevaricating\\nprevarication\\nprevarications\\nprevaricator\\nprevaricators\\nprevent\\npreventable\\npreventative\\nprevented\\npreventing\\nprevention\\npreventions\\npreventive\\nprevents\\npreview\\npreviewed\\npreviewing\\npreviews\\nprevious\\npreviously\\nprevise\\nprevised\\nprevises\\nprevising\\nprevisor\\nprevisors\\nprevue\\nprevued\\nprevues\\nprevuing\\nprewar\\nprewarm\\nprewarmed\\nprewarming\\nprewarms\\nprewarn\\nprewarned\\nprewarning\\nprewarns\\nprewash\\nprewashed\\nprewashes\\nprewashing\\nprewrap\\nprewrapped\\nprewrapping\\nprewraps\\nprex\\nprexes\\nprexies\\nprexy\\nprey\\npreyed\\npreyer\\npreyers\\npreying\\npreys\\npriapean\\npriapi\\npriapic\\npriapism\\npriapisms\\npriapus\\npriapuses\\nprice\\npriced\\npriceless\\npricer\\npricers\\nprices\\npricey\\npricier\\npriciest\\npricing\\nprick\\npricked\\npricker\\nprickers\\npricket\\nprickets\\nprickier\\nprickiest\\npricking\\nprickle\\nprickled\\nprickles\\npricklier\\nprickliest\\nprickling\\nprickly\\npricks\\npricky\\npricy\\npride\\nprided\\nprideful\\nprides\\npriding\\npried\\npriedieu\\npriedieus\\npriedieux\\nprier\\npriers\\npries\\npriest\\npriested\\npriestess\\npriestesses\\npriesthood\\npriesthoods\\npriesting\\npriestlier\\npriestliest\\npriestliness\\npriestlinesses\\npriestly\\npriests\\nprig\\nprigged\\npriggeries\\npriggery\\nprigging\\npriggish\\npriggishly\\npriggism\\npriggisms\\nprigs\\nprill\\nprilled\\nprilling\\nprills\\nprim\\nprima\\nprimacies\\nprimacy\\nprimage\\nprimages\\nprimal\\nprimaries\\nprimarily\\nprimary\\nprimas\\nprimatal\\nprimate\\nprimates\\nprime\\nprimed\\nprimely\\nprimer\\nprimero\\nprimeros\\nprimers\\nprimes\\nprimeval\\nprimi\\nprimine\\nprimines\\npriming\\nprimings\\nprimitive\\nprimitively\\nprimitiveness\\nprimitivenesses\\nprimitives\\nprimitivities\\nprimitivity\\nprimly\\nprimmed\\nprimmer\\nprimmest\\nprimming\\nprimness\\nprimnesses\\nprimo\\nprimordial\\nprimos\\nprimp\\nprimped\\nprimping\\nprimps\\nprimrose\\nprimroses\\nprims\\nprimsie\\nprimula\\nprimulas\\nprimus\\nprimuses\\nprince\\nprincelier\\nprinceliest\\nprincely\\nprinces\\nprincess\\nprincesses\\nprincipal\\nprincipalities\\nprincipality\\nprincipally\\nprincipals\\nprincipe\\nprincipi\\nprinciple\\nprinciples\\nprincock\\nprincocks\\nprincox\\nprincoxes\\nprink\\nprinked\\nprinker\\nprinkers\\nprinking\\nprinks\\nprint\\nprintable\\nprinted\\nprinter\\nprinteries\\nprinters\\nprintery\\nprinting\\nprintings\\nprintout\\nprintouts\\nprints\\nprior\\npriorate\\npriorates\\nprioress\\nprioresses\\npriories\\npriorities\\nprioritize\\nprioritized\\nprioritizes\\nprioritizing\\npriority\\npriorly\\npriors\\npriory\\nprise\\nprised\\nprisere\\npriseres\\nprises\\nprising\\nprism\\nprismatic\\nprismoid\\nprismoids\\nprisms\\nprison\\nprisoned\\nprisoner\\nprisoners\\nprisoning\\nprisons\\npriss\\nprisses\\nprissier\\nprissies\\nprissiest\\nprissily\\nprissiness\\nprissinesses\\nprissy\\npristane\\npristanes\\npristine\\nprithee\\nprivacies\\nprivacy\\nprivate\\nprivateer\\nprivateers\\nprivater\\nprivates\\nprivatest\\nprivation\\nprivations\\nprivet\\nprivets\\nprivier\\nprivies\\npriviest\\nprivilege\\nprivileged\\nprivileges\\nprivily\\nprivities\\nprivity\\nprivy\\nprize\\nprized\\nprizefight\\nprizefighter\\nprizefighters\\nprizefighting\\nprizefightings\\nprizefights\\nprizer\\nprizers\\nprizes\\nprizewinner\\nprizewinners\\nprizing\\npro\\nproa\\nproas\\nprobabilities\\nprobability\\nprobable\\nprobably\\nproband\\nprobands\\nprobang\\nprobangs\\nprobate\\nprobated\\nprobates\\nprobating\\nprobation\\nprobationary\\nprobationer\\nprobationers\\nprobations\\nprobe\\nprobed\\nprober\\nprobers\\nprobes\\nprobing\\nprobit\\nprobities\\nprobits\\nprobity\\nproblem\\nproblematic\\nproblematical\\nproblems\\nproboscides\\nproboscis\\nprocaine\\nprocaines\\nprocarp\\nprocarps\\nprocedure\\nprocedures\\nproceed\\nproceeded\\nproceeding\\nproceedings\\nproceeds\\nprocess\\nprocessed\\nprocesses\\nprocessing\\nprocession\\nprocessional\\nprocessionals\\nprocessions\\nprocessor\\nprocessors\\nprochain\\nprochein\\nproclaim\\nproclaimed\\nproclaiming\\nproclaims\\nproclamation\\nproclamations\\nproclivities\\nproclivity\\nprocrastinate\\nprocrastinated\\nprocrastinates\\nprocrastinating\\nprocrastination\\nprocrastinations\\nprocrastinator\\nprocrastinators\\nprocreate\\nprocreated\\nprocreates\\nprocreating\\nprocreation\\nprocreations\\nprocreative\\nprocreator\\nprocreators\\nproctor\\nproctored\\nproctorial\\nproctoring\\nproctors\\nprocurable\\nprocural\\nprocurals\\nprocure\\nprocured\\nprocurement\\nprocurements\\nprocurer\\nprocurers\\nprocures\\nprocuring\\nprod\\nprodded\\nprodder\\nprodders\\nprodding\\nprodigal\\nprodigalities\\nprodigality\\nprodigals\\nprodigies\\nprodigious\\nprodigiously\\nprodigy\\nprodromal\\nprodromata\\nprodrome\\nprodromes\\nprods\\nproduce\\nproduced\\nproducer\\nproducers\\nproduces\\nproducing\\nproduct\\nproduction\\nproductions\\nproductive\\nproductiveness\\nproductivenesses\\nproductivities\\nproductivity\\nproducts\\nproem\\nproemial\\nproems\\nproette\\nproettes\\nprof\\nprofane\\nprofaned\\nprofanely\\nprofaneness\\nprofanenesses\\nprofaner\\nprofaners\\nprofanes\\nprofaning\\nprofess\\nprofessed\\nprofessedly\\nprofesses\\nprofessing\\nprofession\\nprofessional\\nprofessionalism\\nprofessionalize\\nprofessionalized\\nprofessionalizes\\nprofessionalizing\\nprofessionally\\nprofessions\\nprofessor\\nprofessorial\\nprofessors\\nprofessorship\\nprofessorships\\nproffer\\nproffered\\nproffering\\nproffers\\nproficiencies\\nproficiency\\nproficient\\nproficiently\\nprofile\\nprofiled\\nprofiler\\nprofilers\\nprofiles\\nprofiling\\nprofit\\nprofitability\\nprofitable\\nprofitably\\nprofited\\nprofiteer\\nprofiteered\\nprofiteering\\nprofiteers\\nprofiter\\nprofiters\\nprofiting\\nprofitless\\nprofits\\nprofligacies\\nprofligacy\\nprofligate\\nprofligately\\nprofligates\\nprofound\\nprofounder\\nprofoundest\\nprofoundly\\nprofounds\\nprofs\\nprofundities\\nprofundity\\nprofuse\\nprofusely\\nprofusion\\nprofusions\\nprog\\nprogenies\\nprogenitor\\nprogenitors\\nprogeny\\nprogged\\nprogger\\nproggers\\nprogging\\nprognose\\nprognosed\\nprognoses\\nprognosing\\nprognosis\\nprognosticate\\nprognosticated\\nprognosticates\\nprognosticating\\nprognostication\\nprognostications\\nprognosticator\\nprognosticators\\nprograde\\nprogram\\nprogramed\\nprograming\\nprogrammabilities\\nprogrammability\\nprogrammable\\nprogramme\\nprogrammed\\nprogrammer\\nprogrammers\\nprogrammes\\nprogramming\\nprograms\\nprogress\\nprogressed\\nprogresses\\nprogressing\\nprogression\\nprogressions\\nprogressive\\nprogressively\\nprogs\\nprohibit\\nprohibited\\nprohibiting\\nprohibition\\nprohibitionist\\nprohibitionists\\nprohibitions\\nprohibitive\\nprohibitively\\nprohibitory\\nprohibits\\nproject\\nprojected\\nprojectile\\nprojectiles\\nprojecting\\nprojection\\nprojections\\nprojector\\nprojectors\\nprojects\\nprojet\\nprojets\\nprolabor\\nprolamin\\nprolamins\\nprolan\\nprolans\\nprolapse\\nprolapsed\\nprolapses\\nprolapsing\\nprolate\\nprole\\nproleg\\nprolegs\\nproles\\nproletarian\\nproletariat\\nproliferate\\nproliferated\\nproliferates\\nproliferating\\nproliferation\\nprolific\\nprolifically\\nproline\\nprolines\\nprolix\\nprolixly\\nprolog\\nprologed\\nprologing\\nprologs\\nprologue\\nprologued\\nprologues\\nprologuing\\nprolong\\nprolongation\\nprolongations\\nprolonge\\nprolonged\\nprolonges\\nprolonging\\nprolongs\\nprom\\npromenade\\npromenaded\\npromenades\\npromenading\\nprominence\\nprominences\\nprominent\\nprominently\\npromiscuities\\npromiscuity\\npromiscuous\\npromiscuously\\npromiscuousness\\npromiscuousnesses\\npromise\\npromised\\npromisee\\npromisees\\npromiser\\npromisers\\npromises\\npromising\\npromisingly\\npromisor\\npromisors\\npromissory\\npromontories\\npromontory\\npromote\\npromoted\\npromoter\\npromoters\\npromotes\\npromoting\\npromotion\\npromotional\\npromotions\\nprompt\\nprompted\\nprompter\\nprompters\\npromptest\\nprompting\\npromptly\\npromptness\\nprompts\\nproms\\npromulge\\npromulged\\npromulges\\npromulging\\npronate\\npronated\\npronates\\npronating\\npronator\\npronatores\\npronators\\nprone\\npronely\\nproneness\\npronenesses\\nprong\\npronged\\npronging\\nprongs\\npronota\\npronotum\\npronoun\\npronounce\\npronounceable\\npronounced\\npronouncement\\npronouncements\\npronounces\\npronouncing\\npronouns\\npronto\\npronunciation\\npronunciations\\nproof\\nproofed\\nproofer\\nproofers\\nproofing\\nproofread\\nproofreaded\\nproofreader\\nproofreaders\\nproofreading\\nproofreads\\nproofs\\nprop\\npropaganda\\npropagandas\\npropagandist\\npropagandists\\npropagandize\\npropagandized\\npropagandizes\\npropagandizing\\npropagate\\npropagated\\npropagates\\npropagating\\npropagation\\npropagations\\npropane\\npropanes\\npropel\\npropellant\\npropellants\\npropelled\\npropellent\\npropellents\\npropeller\\npropellers\\npropelling\\npropels\\npropend\\npropended\\npropending\\npropends\\npropene\\npropenes\\npropenol\\npropenols\\npropense\\npropensities\\npropensity\\npropenyl\\nproper\\nproperer\\nproperest\\nproperly\\npropers\\nproperties\\nproperty\\nprophage\\nprophages\\nprophase\\nprophases\\nprophecies\\nprophecy\\nprophesied\\nprophesier\\nprophesiers\\nprophesies\\nprophesy\\nprophesying\\nprophet\\nprophetess\\nprophetesses\\nprophetic\\nprophetical\\nprophetically\\nprophets\\nprophylactic\\nprophylactics\\nprophylaxis\\npropine\\npropined\\npropines\\npropining\\npropinquities\\npropinquity\\npropitiate\\npropitiated\\npropitiates\\npropitiating\\npropitiation\\npropitiations\\npropitiatory\\npropitious\\npropjet\\npropjets\\npropman\\npropmen\\npropolis\\npropolises\\npropone\\nproponed\\nproponent\\nproponents\\npropones\\nproponing\\nproportion\\nproportional\\nproportionally\\nproportionate\\nproportionately\\nproportions\\nproposal\\nproposals\\npropose\\nproposed\\nproposer\\nproposers\\nproposes\\nproposing\\nproposition\\npropositions\\npropound\\npropounded\\npropounding\\npropounds\\npropped\\npropping\\nproprietary\\nproprieties\\nproprietor\\nproprietors\\nproprietorship\\nproprietorships\\nproprietress\\nproprietresses\\npropriety\\nprops\\npropulsion\\npropulsions\\npropulsive\\npropyl\\npropyla\\npropylic\\npropylon\\npropyls\\nprorate\\nprorated\\nprorates\\nprorating\\nprorogue\\nprorogued\\nprorogues\\nproroguing\\npros\\nprosaic\\nprosaism\\nprosaisms\\nprosaist\\nprosaists\\nproscribe\\nproscribed\\nproscribes\\nproscribing\\nproscription\\nproscriptions\\nprose\\nprosect\\nprosected\\nprosecting\\nprosects\\nprosecute\\nprosecuted\\nprosecutes\\nprosecuting\\nprosecution\\nprosecutions\\nprosecutor\\nprosecutors\\nprosed\\nproselyte\\nproselytes\\nproselytize\\nproselytized\\nproselytizes\\nproselytizing\\nproser\\nprosers\\nproses\\nprosier\\nprosiest\\nprosily\\nprosing\\nprosit\\nproso\\nprosodic\\nprosodies\\nprosody\\nprosoma\\nprosomal\\nprosomas\\nprosos\\nprospect\\nprospected\\nprospecting\\nprospective\\nprospectively\\nprospector\\nprospectors\\nprospects\\nprospectus\\nprospectuses\\nprosper\\nprospered\\nprospering\\nprosperities\\nprosperity\\nprosperous\\nprospers\\nprost\\nprostate\\nprostates\\nprostatic\\nprostheses\\nprosthesis\\nprosthetic\\nprostitute\\nprostituted\\nprostitutes\\nprostituting\\nprostitution\\nprostitutions\\nprostrate\\nprostrated\\nprostrates\\nprostrating\\nprostration\\nprostrations\\nprostyle\\nprostyles\\nprosy\\nprotamin\\nprotamins\\nprotases\\nprotasis\\nprotatic\\nprotea\\nprotean\\nproteas\\nprotease\\nproteases\\nprotect\\nprotected\\nprotecting\\nprotection\\nprotections\\nprotective\\nprotector\\nprotectorate\\nprotectorates\\nprotectors\\nprotects\\nprotege\\nprotegee\\nprotegees\\nproteges\\nprotei\\nproteid\\nproteide\\nproteides\\nproteids\\nprotein\\nproteins\\nproteinuria\\nprotend\\nprotended\\nprotending\\nprotends\\nproteose\\nproteoses\\nprotest\\nprotestation\\nprotestations\\nprotested\\nprotesting\\nprotests\\nproteus\\nprothrombin\\nprotist\\nprotists\\nprotium\\nprotiums\\nprotocol\\nprotocoled\\nprotocoling\\nprotocolled\\nprotocolling\\nprotocols\\nproton\\nprotonic\\nprotons\\nprotoplasm\\nprotoplasmic\\nprotoplasms\\nprotopod\\nprotopods\\nprototype\\nprototypes\\nprotoxid\\nprotoxids\\nprotozoa\\nprotozoan\\nprotozoans\\nprotract\\nprotracted\\nprotracting\\nprotractor\\nprotractors\\nprotracts\\nprotrude\\nprotruded\\nprotrudes\\nprotruding\\nprotrusion\\nprotrusions\\nprotrusive\\nprotuberance\\nprotuberances\\nprotuberant\\nprotyl\\nprotyle\\nprotyles\\nprotyls\\nproud\\nprouder\\nproudest\\nproudful\\nproudly\\nprounion\\nprovable\\nprovably\\nprove\\nproved\\nproven\\nprovender\\nprovenders\\nprovenly\\nprover\\nproverb\\nproverbed\\nproverbial\\nproverbing\\nproverbs\\nprovers\\nproves\\nprovide\\nprovided\\nprovidence\\nprovidences\\nprovident\\nprovidential\\nprovidently\\nprovider\\nproviders\\nprovides\\nproviding\\nprovince\\nprovinces\\nprovincial\\nprovincialism\\nprovincialisms\\nproving\\nproviral\\nprovirus\\nproviruses\\nprovision\\nprovisional\\nprovisions\\nproviso\\nprovisoes\\nprovisos\\nprovocation\\nprovocations\\nprovocative\\nprovoke\\nprovoked\\nprovoker\\nprovokers\\nprovokes\\nprovoking\\nprovost\\nprovosts\\nprow\\nprowar\\nprower\\nprowess\\nprowesses\\nprowest\\nprowl\\nprowled\\nprowler\\nprowlers\\nprowling\\nprowls\\nprows\\nproxemic\\nproxies\\nproximal\\nproximo\\nproxy\\nprude\\nprudence\\nprudences\\nprudent\\nprudential\\nprudently\\npruderies\\nprudery\\nprudes\\nprudish\\npruinose\\nprunable\\nprune\\npruned\\nprunella\\nprunellas\\nprunelle\\nprunelles\\nprunello\\nprunellos\\npruner\\npruners\\nprunes\\npruning\\nprurient\\nprurigo\\nprurigos\\npruritic\\npruritus\\nprurituses\\nprussic\\npruta\\nprutah\\nprutot\\nprutoth\\npry\\npryer\\npryers\\nprying\\npryingly\\nprythee\\npsalm\\npsalmed\\npsalmic\\npsalming\\npsalmist\\npsalmists\\npsalmodies\\npsalmody\\npsalms\\npsalter\\npsalteries\\npsalters\\npsaltery\\npsaltries\\npsaltry\\npsammite\\npsammites\\npschent\\npschents\\npsephite\\npsephites\\npseudo\\npseudonym\\npseudonymous\\npshaw\\npshawed\\npshawing\\npshaws\\npsi\\npsiloses\\npsilosis\\npsilotic\\npsis\\npsoae\\npsoai\\npsoas\\npsocid\\npsocids\\npsoralea\\npsoraleas\\npsoriasis\\npsoriasises\\npsst\\npsych\\npsyche\\npsyched\\npsyches\\npsychiatric\\npsychiatries\\npsychiatrist\\npsychiatrists\\npsychiatry\\npsychic\\npsychically\\npsychics\\npsyching\\npsycho\\npsychoanalyses\\npsychoanalysis\\npsychoanalyst\\npsychoanalysts\\npsychoanalytic\\npsychoanalyze\\npsychoanalyzed\\npsychoanalyzes\\npsychoanalyzing\\npsychological\\npsychologically\\npsychologies\\npsychologist\\npsychologists\\npsychology\\npsychopath\\npsychopathic\\npsychopaths\\npsychos\\npsychoses\\npsychosis\\npsychosocial\\npsychosomatic\\npsychotherapies\\npsychotherapist\\npsychotherapists\\npsychotherapy\\npsychotic\\npsychs\\npsylla\\npsyllas\\npsyllid\\npsyllids\\npterin\\npterins\\npteropod\\npteropods\\npteryla\\npterylae\\nptisan\\nptisans\\nptomain\\nptomaine\\nptomaines\\nptomains\\nptoses\\nptosis\\nptotic\\nptyalin\\nptyalins\\nptyalism\\nptyalisms\\npub\\npuberal\\npubertal\\npuberties\\npuberty\\npubes\\npubic\\npubis\\npublic\\npublican\\npublicans\\npublication\\npublications\\npublicist\\npublicists\\npublicities\\npublicity\\npublicize\\npublicized\\npublicizes\\npublicizing\\npublicly\\npublics\\npublish\\npublished\\npublisher\\npublishers\\npublishes\\npublishing\\npubs\\npuccoon\\npuccoons\\npuce\\npuces\\npuck\\npucka\\npucker\\npuckered\\npuckerer\\npuckerers\\npuckerier\\npuckeriest\\npuckering\\npuckers\\npuckery\\npuckish\\npucks\\npud\\npudding\\npuddings\\npuddle\\npuddled\\npuddler\\npuddlers\\npuddles\\npuddlier\\npuddliest\\npuddling\\npuddlings\\npuddly\\npudencies\\npudency\\npudenda\\npudendal\\npudendum\\npudgier\\npudgiest\\npudgily\\npudgy\\npudic\\npuds\\npueblo\\npueblos\\npuerile\\npuerilities\\npuerility\\npuff\\npuffball\\npuffballs\\npuffed\\npuffer\\npufferies\\npuffers\\npuffery\\npuffier\\npuffiest\\npuffily\\npuffin\\npuffing\\npuffins\\npuffs\\npuffy\\npug\\npugaree\\npugarees\\npuggaree\\npuggarees\\npugged\\npuggier\\npuggiest\\npugging\\npuggish\\npuggree\\npuggrees\\npuggries\\npuggry\\npuggy\\npugh\\npugilism\\npugilisms\\npugilist\\npugilistic\\npugilists\\npugmark\\npugmarks\\npugnacious\\npugree\\npugrees\\npugs\\npuisne\\npuisnes\\npuissant\\npuke\\npuked\\npukes\\npuking\\npukka\\npul\\npulchritude\\npulchritudes\\npulchritudinous\\npule\\npuled\\npuler\\npulers\\npules\\npuli\\npulicene\\npulicide\\npulicides\\npulik\\npuling\\npulingly\\npulings\\npulis\\npull\\npullback\\npullbacks\\npulled\\npuller\\npullers\\npullet\\npullets\\npulley\\npulleys\\npulling\\npullman\\npullmans\\npullout\\npullouts\\npullover\\npullovers\\npulls\\npulmonary\\npulmonic\\npulmotor\\npulmotors\\npulp\\npulpal\\npulpally\\npulped\\npulper\\npulpier\\npulpiest\\npulpily\\npulping\\npulpit\\npulpital\\npulpits\\npulpless\\npulpous\\npulps\\npulpwood\\npulpwoods\\npulpy\\npulque\\npulques\\npuls\\npulsant\\npulsar\\npulsars\\npulsate\\npulsated\\npulsates\\npulsating\\npulsation\\npulsations\\npulsator\\npulsators\\npulse\\npulsed\\npulsejet\\npulsejets\\npulser\\npulsers\\npulses\\npulsing\\npulsion\\npulsions\\npulsojet\\npulsojets\\npulverize\\npulverized\\npulverizes\\npulverizing\\npulvilli\\npulvinar\\npulvini\\npulvinus\\npuma\\npumas\\npumelo\\npumelos\\npumice\\npumiced\\npumicer\\npumicers\\npumices\\npumicing\\npumicite\\npumicites\\npummel\\npummeled\\npummeling\\npummelled\\npummelling\\npummels\\npump\\npumped\\npumper\\npumpernickel\\npumpernickels\\npumpers\\npumping\\npumpkin\\npumpkins\\npumpless\\npumplike\\npumps\\npun\\npuna\\npunas\\npunch\\npunched\\npuncheon\\npuncheons\\npuncher\\npunchers\\npunches\\npunchier\\npunchiest\\npunching\\npunchy\\npunctate\\npunctilious\\npunctual\\npunctualities\\npunctuality\\npunctually\\npunctuate\\npunctuated\\npunctuates\\npunctuating\\npunctuation\\npuncture\\npunctured\\npunctures\\npuncturing\\npundit\\npunditic\\npunditries\\npunditry\\npundits\\npung\\npungencies\\npungency\\npungent\\npungently\\npungs\\npunier\\npuniest\\npunily\\npuniness\\npuninesses\\npunish\\npunishable\\npunished\\npunisher\\npunishers\\npunishes\\npunishing\\npunishment\\npunishments\\npunition\\npunitions\\npunitive\\npunitory\\npunk\\npunka\\npunkah\\npunkahs\\npunkas\\npunker\\npunkest\\npunkey\\npunkeys\\npunkie\\npunkier\\npunkies\\npunkiest\\npunkin\\npunkins\\npunks\\npunky\\npunned\\npunner\\npunners\\npunnier\\npunniest\\npunning\\npunny\\npuns\\npunster\\npunsters\\npunt\\npunted\\npunter\\npunters\\npunties\\npunting\\npunto\\npuntos\\npunts\\npunty\\npuny\\npup\\npupa\\npupae\\npupal\\npuparia\\npuparial\\npuparium\\npupas\\npupate\\npupated\\npupates\\npupating\\npupation\\npupations\\npupfish\\npupfishes\\npupil\\npupilage\\npupilages\\npupilar\\npupilary\\npupils\\npupped\\npuppet\\npuppeteer\\npuppeteers\\npuppetries\\npuppetry\\npuppets\\npuppies\\npupping\\npuppy\\npuppydom\\npuppydoms\\npuppyish\\npups\\npur\\npurana\\npuranas\\npuranic\\npurblind\\npurchase\\npurchased\\npurchaser\\npurchasers\\npurchases\\npurchasing\\npurda\\npurdah\\npurdahs\\npurdas\\npure\\npurebred\\npurebreds\\npuree\\npureed\\npureeing\\npurees\\npurely\\npureness\\npurenesses\\npurer\\npurest\\npurfle\\npurfled\\npurfles\\npurfling\\npurflings\\npurgative\\npurgatorial\\npurgatories\\npurgatory\\npurge\\npurged\\npurger\\npurgers\\npurges\\npurging\\npurgings\\npuri\\npurification\\npurifications\\npurified\\npurifier\\npurifiers\\npurifies\\npurify\\npurifying\\npurin\\npurine\\npurines\\npurins\\npuris\\npurism\\npurisms\\npurist\\npuristic\\npurists\\npuritan\\npuritanical\\npuritans\\npurities\\npurity\\npurl\\npurled\\npurlieu\\npurlieus\\npurlin\\npurline\\npurlines\\npurling\\npurlins\\npurloin\\npurloined\\npurloining\\npurloins\\npurls\\npurple\\npurpled\\npurpler\\npurples\\npurplest\\npurpling\\npurplish\\npurply\\npurport\\npurported\\npurportedly\\npurporting\\npurports\\npurpose\\npurposed\\npurposeful\\npurposefully\\npurposeless\\npurposely\\npurposes\\npurposing\\npurpura\\npurpuras\\npurpure\\npurpures\\npurpuric\\npurpurin\\npurpurins\\npurr\\npurred\\npurring\\npurrs\\npurs\\npurse\\npursed\\npurser\\npursers\\npurses\\npursier\\npursiest\\npursily\\npursing\\npurslane\\npurslanes\\npursuance\\npursuances\\npursuant\\npursue\\npursued\\npursuer\\npursuers\\npursues\\npursuing\\npursuit\\npursuits\\npursy\\npurulent\\npurvey\\npurveyance\\npurveyances\\npurveyed\\npurveying\\npurveyor\\npurveyors\\npurveys\\npurview\\npurviews\\npus\\npuses\\npush\\npushball\\npushballs\\npushcart\\npushcarts\\npushdown\\npushdowns\\npushed\\npusher\\npushers\\npushes\\npushful\\npushier\\npushiest\\npushily\\npushing\\npushover\\npushovers\\npushpin\\npushpins\\npushup\\npushups\\npushy\\npusillanimous\\npusley\\npusleys\\npuslike\\npuss\\npusses\\npussier\\npussies\\npussiest\\npussley\\npussleys\\npusslies\\npusslike\\npussly\\npussy\\npussycat\\npussycats\\npustular\\npustule\\npustuled\\npustules\\nput\\nputamen\\nputamina\\nputative\\nputlog\\nputlogs\\nputoff\\nputoffs\\nputon\\nputons\\nputout\\nputouts\\nputrefaction\\nputrefactions\\nputrefactive\\nputrefied\\nputrefies\\nputrefy\\nputrefying\\nputrid\\nputridly\\nputs\\nputsch\\nputsches\\nputt\\nputted\\nputtee\\nputtees\\nputter\\nputtered\\nputterer\\nputterers\\nputtering\\nputters\\nputtied\\nputtier\\nputtiers\\nputties\\nputting\\nputts\\nputty\\nputtying\\npuzzle\\npuzzled\\npuzzlement\\npuzzlements\\npuzzler\\npuzzlers\\npuzzles\\npuzzling\\npya\\npyaemia\\npyaemias\\npyaemic\\npyas\\npycnidia\\npye\\npyelitic\\npyelitis\\npyelitises\\npyemia\\npyemias\\npyemic\\npyes\\npygidia\\npygidial\\npygidium\\npygmaean\\npygmean\\npygmies\\npygmoid\\npygmy\\npygmyish\\npygmyism\\npygmyisms\\npyic\\npyin\\npyins\\npyjamas\\npyknic\\npyknics\\npylon\\npylons\\npylori\\npyloric\\npylorus\\npyloruses\\npyoderma\\npyodermas\\npyogenic\\npyoid\\npyorrhea\\npyorrheas\\npyoses\\npyosis\\npyralid\\npyralids\\npyramid\\npyramidal\\npyramided\\npyramiding\\npyramids\\npyran\\npyranoid\\npyranose\\npyranoses\\npyrans\\npyre\\npyrene\\npyrenes\\npyrenoid\\npyrenoids\\npyres\\npyretic\\npyrexia\\npyrexial\\npyrexias\\npyrexic\\npyric\\npyridic\\npyridine\\npyridines\\npyriform\\npyrite\\npyrites\\npyritic\\npyritous\\npyrogen\\npyrogens\\npyrola\\npyrolas\\npyrologies\\npyrology\\npyrolyze\\npyrolyzed\\npyrolyzes\\npyrolyzing\\npyromania\\npyromaniac\\npyromaniacs\\npyromanias\\npyrone\\npyrones\\npyronine\\npyronines\\npyrope\\npyropes\\npyrosis\\npyrosises\\npyrostat\\npyrostats\\npyrotechnic\\npyrotechnics\\npyroxene\\npyroxenes\\npyrrhic\\npyrrhics\\npyrrol\\npyrrole\\npyrroles\\npyrrolic\\npyrrols\\npyruvate\\npyruvates\\npython\\npythonic\\npythons\\npyuria\\npyurias\\npyx\\npyxes\\npyxides\\npyxidia\\npyxidium\\npyxie\\npyxies\\npyxis\\nqaid\\nqaids\\nqindar\\nqindars\\nqintar\\nqintars\\nqiviut\\nqiviuts\\nqoph\\nqophs\\nqua\\nquack\\nquacked\\nquackeries\\nquackery\\nquacking\\nquackish\\nquackism\\nquackisms\\nquacks\\nquad\\nquadded\\nquadding\\nquadrangle\\nquadrangles\\nquadrangular\\nquadrans\\nquadrant\\nquadrantes\\nquadrants\\nquadrat\\nquadrate\\nquadrated\\nquadrates\\nquadrating\\nquadrats\\nquadric\\nquadrics\\nquadriga\\nquadrigae\\nquadrilateral\\nquadrilaterals\\nquadrille\\nquadrilles\\nquadroon\\nquadroons\\nquadruped\\nquadrupedal\\nquadrupeds\\nquadruple\\nquadrupled\\nquadruples\\nquadruplet\\nquadruplets\\nquadrupling\\nquads\\nquaere\\nquaeres\\nquaestor\\nquaestors\\nquaff\\nquaffed\\nquaffer\\nquaffers\\nquaffing\\nquaffs\\nquag\\nquagga\\nquaggas\\nquaggier\\nquaggiest\\nquaggy\\nquagmire\\nquagmires\\nquagmirier\\nquagmiriest\\nquagmiry\\nquags\\nquahaug\\nquahaugs\\nquahog\\nquahogs\\nquai\\nquaich\\nquaiches\\nquaichs\\nquaigh\\nquaighs\\nquail\\nquailed\\nquailing\\nquails\\nquaint\\nquainter\\nquaintest\\nquaintly\\nquaintness\\nquaintnesses\\nquais\\nquake\\nquaked\\nquaker\\nquakers\\nquakes\\nquakier\\nquakiest\\nquakily\\nquaking\\nquaky\\nquale\\nqualia\\nqualification\\nqualifications\\nqualified\\nqualifier\\nqualifiers\\nqualifies\\nqualify\\nqualifying\\nqualitative\\nqualities\\nquality\\nqualm\\nqualmier\\nqualmiest\\nqualmish\\nqualms\\nqualmy\\nquamash\\nquamashes\\nquandang\\nquandangs\\nquandaries\\nquandary\\nquandong\\nquandongs\\nquant\\nquanta\\nquantal\\nquanted\\nquantic\\nquantics\\nquantified\\nquantifies\\nquantify\\nquantifying\\nquanting\\nquantitative\\nquantities\\nquantity\\nquantize\\nquantized\\nquantizes\\nquantizing\\nquantong\\nquantongs\\nquants\\nquantum\\nquarantine\\nquarantined\\nquarantines\\nquarantining\\nquare\\nquark\\nquarks\\nquarrel\\nquarreled\\nquarreling\\nquarrelled\\nquarrelling\\nquarrels\\nquarrelsome\\nquarried\\nquarrier\\nquarriers\\nquarries\\nquarry\\nquarrying\\nquart\\nquartan\\nquartans\\nquarte\\nquarter\\nquarterback\\nquarterbacked\\nquarterbacking\\nquarterbacks\\nquartered\\nquartering\\nquarterlies\\nquarterly\\nquartermaster\\nquartermasters\\nquartern\\nquarterns\\nquarters\\nquartes\\nquartet\\nquartets\\nquartic\\nquartics\\nquartile\\nquartiles\\nquarto\\nquartos\\nquarts\\nquartz\\nquartzes\\nquasar\\nquasars\\nquash\\nquashed\\nquashes\\nquashing\\nquasi\\nquass\\nquasses\\nquassia\\nquassias\\nquassin\\nquassins\\nquate\\nquatorze\\nquatorzes\\nquatrain\\nquatrains\\nquatre\\nquatres\\nquaver\\nquavered\\nquaverer\\nquaverers\\nquavering\\nquavers\\nquavery\\nquay\\nquayage\\nquayages\\nquaylike\\nquays\\nquayside\\nquaysides\\nquean\\nqueans\\nqueasier\\nqueasiest\\nqueasily\\nqueasiness\\nqueasinesses\\nqueasy\\nqueazier\\nqueaziest\\nqueazy\\nqueen\\nqueened\\nqueening\\nqueenlier\\nqueenliest\\nqueenly\\nqueens\\nqueer\\nqueered\\nqueerer\\nqueerest\\nqueering\\nqueerish\\nqueerly\\nqueerness\\nqueernesses\\nqueers\\nquell\\nquelled\\nqueller\\nquellers\\nquelling\\nquells\\nquench\\nquenchable\\nquenched\\nquencher\\nquenchers\\nquenches\\nquenching\\nquenchless\\nquenelle\\nquenelles\\nquercine\\nquerida\\nqueridas\\nqueried\\nquerier\\nqueriers\\nqueries\\nquerist\\nquerists\\nquern\\nquerns\\nquerulous\\nquerulously\\nquerulousness\\nquerulousnesses\\nquery\\nquerying\\nquest\\nquested\\nquester\\nquesters\\nquesting\\nquestion\\nquestionable\\nquestioned\\nquestioner\\nquestioners\\nquestioning\\nquestionnaire\\nquestionnaires\\nquestionniare\\nquestionniares\\nquestions\\nquestor\\nquestors\\nquests\\nquetzal\\nquetzales\\nquetzals\\nqueue\\nqueued\\nqueueing\\nqueuer\\nqueuers\\nqueues\\nqueuing\\nquey\\nqueys\\nquezal\\nquezales\\nquezals\\nquibble\\nquibbled\\nquibbler\\nquibblers\\nquibbles\\nquibbling\\nquiche\\nquiches\\nquick\\nquicken\\nquickened\\nquickening\\nquickens\\nquicker\\nquickest\\nquickie\\nquickies\\nquickly\\nquickness\\nquicknesses\\nquicks\\nquicksand\\nquicksands\\nquickset\\nquicksets\\nquicksilver\\nquicksilvers\\nquid\\nquiddities\\nquiddity\\nquidnunc\\nquidnuncs\\nquids\\nquiescence\\nquiescences\\nquiescent\\nquiet\\nquieted\\nquieten\\nquietened\\nquietening\\nquietens\\nquieter\\nquieters\\nquietest\\nquieting\\nquietism\\nquietisms\\nquietist\\nquietists\\nquietly\\nquietness\\nquietnesses\\nquiets\\nquietude\\nquietudes\\nquietus\\nquietuses\\nquiff\\nquiffs\\nquill\\nquillai\\nquillais\\nquilled\\nquillet\\nquillets\\nquilling\\nquills\\nquilt\\nquilted\\nquilter\\nquilters\\nquilting\\nquiltings\\nquilts\\nquinaries\\nquinary\\nquinate\\nquince\\nquinces\\nquincunx\\nquincunxes\\nquinella\\nquinellas\\nquinic\\nquiniela\\nquinielas\\nquinin\\nquinina\\nquininas\\nquinine\\nquinines\\nquinins\\nquinnat\\nquinnats\\nquinoa\\nquinoas\\nquinoid\\nquinoids\\nquinol\\nquinolin\\nquinolins\\nquinols\\nquinone\\nquinones\\nquinsies\\nquinsy\\nquint\\nquintain\\nquintains\\nquintal\\nquintals\\nquintan\\nquintans\\nquintar\\nquintars\\nquintessence\\nquintessences\\nquintessential\\nquintet\\nquintets\\nquintic\\nquintics\\nquintile\\nquintiles\\nquintin\\nquintins\\nquints\\nquintuple\\nquintupled\\nquintuples\\nquintuplet\\nquintuplets\\nquintupling\\nquip\\nquipped\\nquipping\\nquippish\\nquippu\\nquippus\\nquips\\nquipster\\nquipsters\\nquipu\\nquipus\\nquire\\nquired\\nquires\\nquiring\\nquirk\\nquirked\\nquirkier\\nquirkiest\\nquirkily\\nquirking\\nquirks\\nquirky\\nquirt\\nquirted\\nquirting\\nquirts\\nquisling\\nquislings\\nquit\\nquitch\\nquitches\\nquite\\nquitrent\\nquitrents\\nquits\\nquitted\\nquitter\\nquitters\\nquitting\\nquittor\\nquittors\\nquiver\\nquivered\\nquiverer\\nquiverers\\nquivering\\nquivers\\nquivery\\nquixote\\nquixotes\\nquixotic\\nquixotries\\nquixotry\\nquiz\\nquizmaster\\nquizmasters\\nquizzed\\nquizzer\\nquizzers\\nquizzes\\nquizzing\\nquod\\nquods\\nquoin\\nquoined\\nquoining\\nquoins\\nquoit\\nquoited\\nquoiting\\nquoits\\nquomodo\\nquomodos\\nquondam\\nquorum\\nquorums\\nquota\\nquotable\\nquotably\\nquotas\\nquotation\\nquotations\\nquote\\nquoted\\nquoter\\nquoters\\nquotes\\nquoth\\nquotha\\nquotient\\nquotients\\nquoting\\nqursh\\nqurshes\\nqurush\\nqurushes\\nrabato\\nrabatos\\nrabbet\\nrabbeted\\nrabbeting\\nrabbets\\nrabbi\\nrabbies\\nrabbin\\nrabbinate\\nrabbinates\\nrabbinic\\nrabbinical\\nrabbins\\nrabbis\\nrabbit\\nrabbited\\nrabbiter\\nrabbiters\\nrabbiting\\nrabbitries\\nrabbitry\\nrabbits\\nrabble\\nrabbled\\nrabbler\\nrabblers\\nrabbles\\nrabbling\\nrabboni\\nrabbonis\\nrabic\\nrabid\\nrabidities\\nrabidity\\nrabidly\\nrabies\\nrabietic\\nraccoon\\nraccoons\\nrace\\nracecourse\\nracecourses\\nraced\\nracehorse\\nracehorses\\nracemate\\nracemates\\nraceme\\nracemed\\nracemes\\nracemic\\nracemism\\nracemisms\\nracemize\\nracemized\\nracemizes\\nracemizing\\nracemoid\\nracemose\\nracemous\\nracer\\nracers\\nraces\\nracetrack\\nracetracks\\nraceway\\nraceways\\nrachet\\nrachets\\nrachial\\nrachides\\nrachis\\nrachises\\nrachitic\\nrachitides\\nrachitis\\nracial\\nracially\\nracier\\nraciest\\nracily\\nraciness\\nracinesses\\nracing\\nracings\\nracism\\nracisms\\nracist\\nracists\\nrack\\nracked\\nracker\\nrackers\\nracket\\nracketed\\nracketeer\\nracketeering\\nracketeerings\\nracketeers\\nracketier\\nracketiest\\nracketing\\nrackets\\nrackety\\nracking\\nrackle\\nracks\\nrackwork\\nrackworks\\nraclette\\nraclettes\\nracon\\nracons\\nraconteur\\nraconteurs\\nracoon\\nracoons\\nracquet\\nracquets\\nracy\\nrad\\nradar\\nradars\\nradded\\nradding\\nraddle\\nraddled\\nraddles\\nraddling\\nradiable\\nradial\\nradiale\\nradialia\\nradially\\nradials\\nradian\\nradiance\\nradiances\\nradiancies\\nradiancy\\nradians\\nradiant\\nradiantly\\nradiants\\nradiate\\nradiated\\nradiates\\nradiating\\nradiation\\nradiations\\nradiator\\nradiators\\nradical\\nradicalism\\nradicalisms\\nradically\\nradicals\\nradicand\\nradicands\\nradicate\\nradicated\\nradicates\\nradicating\\nradicel\\nradicels\\nradices\\nradicle\\nradicles\\nradii\\nradio\\nradioactive\\nradioactivities\\nradioactivity\\nradioed\\nradioing\\nradiologies\\nradiologist\\nradiologists\\nradiology\\nradioman\\nradiomen\\nradionuclide\\nradionuclides\\nradios\\nradiotherapies\\nradiotherapy\\nradish\\nradishes\\nradium\\nradiums\\nradius\\nradiuses\\nradix\\nradixes\\nradome\\nradomes\\nradon\\nradons\\nrads\\nradula\\nradulae\\nradular\\nradulas\\nraff\\nraffia\\nraffias\\nraffish\\nraffishly\\nraffishness\\nraffishnesses\\nraffle\\nraffled\\nraffler\\nrafflers\\nraffles\\nraffling\\nraffs\\nraft\\nrafted\\nrafter\\nrafters\\nrafting\\nrafts\\nraftsman\\nraftsmen\\nrag\\nraga\\nragamuffin\\nragamuffins\\nragas\\nragbag\\nragbags\\nrage\\nraged\\nragee\\nragees\\nrages\\nragged\\nraggeder\\nraggedest\\nraggedly\\nraggedness\\nraggednesses\\nraggedy\\nraggies\\nragging\\nraggle\\nraggles\\nraggy\\nragi\\nraging\\nragingly\\nragis\\nraglan\\nraglans\\nragman\\nragmen\\nragout\\nragouted\\nragouting\\nragouts\\nrags\\nragtag\\nragtags\\nragtime\\nragtimes\\nragweed\\nragweeds\\nragwort\\nragworts\\nrah\\nraia\\nraias\\nraid\\nraided\\nraider\\nraiders\\nraiding\\nraids\\nrail\\nrailbird\\nrailbirds\\nrailed\\nrailer\\nrailers\\nrailhead\\nrailheads\\nrailing\\nrailings\\nrailleries\\nraillery\\nrailroad\\nrailroaded\\nrailroader\\nrailroaders\\nrailroading\\nrailroadings\\nrailroads\\nrails\\nrailway\\nrailways\\nraiment\\nraiments\\nrain\\nrainband\\nrainbands\\nrainbird\\nrainbirds\\nrainbow\\nrainbows\\nraincoat\\nraincoats\\nraindrop\\nraindrops\\nrained\\nrainfall\\nrainfalls\\nrainier\\nrainiest\\nrainily\\nraining\\nrainless\\nrainmaker\\nrainmakers\\nrainmaking\\nrainmakings\\nrainout\\nrainouts\\nrains\\nrainstorm\\nrainstorms\\nrainwash\\nrainwashes\\nrainwater\\nrainwaters\\nrainwear\\nrainwears\\nrainy\\nraisable\\nraise\\nraised\\nraiser\\nraisers\\nraises\\nraisin\\nraising\\nraisings\\nraisins\\nraisiny\\nraisonne\\nraj\\nraja\\nrajah\\nrajahs\\nrajas\\nrajes\\nrake\\nraked\\nrakee\\nrakees\\nrakehell\\nrakehells\\nrakeoff\\nrakeoffs\\nraker\\nrakers\\nrakes\\nraki\\nraking\\nrakis\\nrakish\\nrakishly\\nrakishness\\nrakishnesses\\nrale\\nrales\\nrallied\\nrallier\\nralliers\\nrallies\\nralline\\nrally\\nrallye\\nrallyes\\nrallying\\nrallyings\\nrallyist\\nrallyists\\nram\\nramate\\nramble\\nrambled\\nrambler\\nramblers\\nrambles\\nrambling\\nrambunctious\\nrambutan\\nrambutans\\nramee\\nramees\\nramekin\\nramekins\\nramenta\\nramentum\\nramequin\\nramequins\\nramet\\nramets\\nrami\\nramie\\nramies\\nramification\\nramifications\\nramified\\nramifies\\nramiform\\nramify\\nramifying\\nramilie\\nramilies\\nramillie\\nramillies\\nramjet\\nramjets\\nrammed\\nrammer\\nrammers\\nrammier\\nrammiest\\nramming\\nrammish\\nrammy\\nramose\\nramosely\\nramosities\\nramosity\\nramous\\nramp\\nrampage\\nrampaged\\nrampager\\nrampagers\\nrampages\\nrampaging\\nrampancies\\nrampancy\\nrampant\\nrampantly\\nrampart\\nramparted\\nramparting\\nramparts\\nramped\\nrampike\\nrampikes\\nramping\\nrampion\\nrampions\\nrampole\\nrampoles\\nramps\\nramrod\\nramrods\\nrams\\nramshackle\\nramshorn\\nramshorns\\nramson\\nramsons\\nramtil\\nramtils\\nramulose\\nramulous\\nramus\\nran\\nrance\\nrances\\nranch\\nranched\\nrancher\\nranchero\\nrancheros\\nranchers\\nranches\\nranching\\nranchland\\nranchlands\\nranchman\\nranchmen\\nrancho\\nranchos\\nrancid\\nrancidities\\nrancidity\\nrancidness\\nrancidnesses\\nrancor\\nrancored\\nrancorous\\nrancors\\nrancour\\nrancours\\nrand\\nrandan\\nrandans\\nrandies\\nrandom\\nrandomization\\nrandomizations\\nrandomize\\nrandomized\\nrandomizes\\nrandomizing\\nrandomly\\nrandomness\\nrandomnesses\\nrandoms\\nrands\\nrandy\\nranee\\nranees\\nrang\\nrange\\nranged\\nrangeland\\nrangelands\\nranger\\nrangers\\nranges\\nrangier\\nrangiest\\nranginess\\nranginesses\\nranging\\nrangy\\nrani\\nranid\\nranids\\nranis\\nrank\\nranked\\nranker\\nrankers\\nrankest\\nranking\\nrankish\\nrankle\\nrankled\\nrankles\\nrankling\\nrankly\\nrankness\\nranknesses\\nranks\\nranpike\\nranpikes\\nransack\\nransacked\\nransacking\\nransacks\\nransom\\nransomed\\nransomer\\nransomers\\nransoming\\nransoms\\nrant\\nranted\\nranter\\nranters\\nranting\\nrantingly\\nrants\\nranula\\nranulas\\nrap\\nrapacious\\nrapaciously\\nrapaciousness\\nrapaciousnesses\\nrapacities\\nrapacity\\nrape\\nraped\\nraper\\nrapers\\nrapes\\nrapeseed\\nrapeseeds\\nraphae\\nraphe\\nraphes\\nraphia\\nraphias\\nraphide\\nraphides\\nraphis\\nrapid\\nrapider\\nrapidest\\nrapidities\\nrapidity\\nrapidly\\nrapids\\nrapier\\nrapiered\\nrapiers\\nrapine\\nrapines\\nraping\\nrapist\\nrapists\\nrapparee\\nrapparees\\nrapped\\nrappee\\nrappees\\nrappel\\nrappelled\\nrappelling\\nrappels\\nrappen\\nrapper\\nrappers\\nrapping\\nrappini\\nrapport\\nrapports\\nraps\\nrapt\\nraptly\\nraptness\\nraptnesses\\nraptor\\nraptors\\nrapture\\nraptured\\nraptures\\nrapturing\\nrapturous\\nrare\\nrarebit\\nrarebits\\nrarefaction\\nrarefactions\\nrarefied\\nrarefier\\nrarefiers\\nrarefies\\nrarefy\\nrarefying\\nrarely\\nrareness\\nrarenesses\\nrarer\\nrareripe\\nrareripes\\nrarest\\nrarified\\nrarifies\\nrarify\\nrarifying\\nraring\\nrarities\\nrarity\\nras\\nrasbora\\nrasboras\\nrascal\\nrascalities\\nrascality\\nrascally\\nrascals\\nrase\\nrased\\nraser\\nrasers\\nrases\\nrash\\nrasher\\nrashers\\nrashes\\nrashest\\nrashlike\\nrashly\\nrashness\\nrashnesses\\nrasing\\nrasorial\\nrasp\\nraspberries\\nraspberry\\nrasped\\nrasper\\nraspers\\nraspier\\nraspiest\\nrasping\\nraspish\\nrasps\\nraspy\\nrassle\\nrassled\\nrassles\\nrassling\\nraster\\nrasters\\nrasure\\nrasures\\nrat\\nratable\\nratably\\nratafee\\nratafees\\nratafia\\nratafias\\nratal\\nratals\\nratan\\nratanies\\nratans\\nratany\\nrataplan\\nrataplanned\\nrataplanning\\nrataplans\\nratatat\\nratatats\\nratch\\nratches\\nratchet\\nratchets\\nrate\\nrateable\\nrateably\\nrated\\nratel\\nratels\\nrater\\nraters\\nrates\\nratfink\\nratfinks\\nratfish\\nratfishes\\nrath\\nrathe\\nrather\\nrathole\\nratholes\\nraticide\\nraticides\\nratification\\nratifications\\nratified\\nratifier\\nratifiers\\nratifies\\nratify\\nratifying\\nratine\\nratines\\nrating\\nratings\\nratio\\nration\\nrational\\nrationale\\nrationales\\nrationalization\\nrationalizations\\nrationalize\\nrationalized\\nrationalizes\\nrationalizing\\nrationally\\nrationals\\nrationed\\nrationing\\nrations\\nratios\\nratite\\nratites\\nratlike\\nratlin\\nratline\\nratlines\\nratlins\\nrato\\nratoon\\nratooned\\nratooner\\nratooners\\nratooning\\nratoons\\nratos\\nrats\\nratsbane\\nratsbanes\\nrattail\\nrattails\\nrattan\\nrattans\\nratted\\nratteen\\nratteens\\nratten\\nrattened\\nrattener\\nratteners\\nrattening\\nrattens\\nratter\\nratters\\nrattier\\nrattiest\\nratting\\nrattish\\nrattle\\nrattled\\nrattler\\nrattlers\\nrattles\\nrattlesnake\\nrattlesnakes\\nrattling\\nrattlings\\nrattly\\nratton\\nrattons\\nrattoon\\nrattooned\\nrattooning\\nrattoons\\nrattrap\\nrattraps\\nratty\\nraucities\\nraucity\\nraucous\\nraucously\\nraucousness\\nraucousnesses\\nraunchier\\nraunchiest\\nraunchy\\nravage\\nravaged\\nravager\\nravagers\\nravages\\nravaging\\nrave\\nraved\\nravel\\nraveled\\nraveler\\nravelers\\nravelin\\nraveling\\nravelings\\nravelins\\nravelled\\nraveller\\nravellers\\nravelling\\nravellings\\nravelly\\nravels\\nraven\\nravened\\nravener\\nraveners\\nravening\\nravenings\\nravenous\\nravenously\\nravenousness\\nravenousnesses\\nravens\\nraver\\nravers\\nraves\\nravigote\\nravigotes\\nravin\\nravine\\nravined\\nravines\\nraving\\nravingly\\nravings\\nravining\\nravins\\nravioli\\nraviolis\\nravish\\nravished\\nravisher\\nravishers\\nravishes\\nravishing\\nravishment\\nravishments\\nraw\\nrawboned\\nrawer\\nrawest\\nrawhide\\nrawhided\\nrawhides\\nrawhiding\\nrawish\\nrawly\\nrawness\\nrawnesses\\nraws\\nrax\\nraxed\\nraxes\\nraxing\\nray\\nraya\\nrayah\\nrayahs\\nrayas\\nrayed\\nraygrass\\nraygrasses\\nraying\\nrayless\\nrayon\\nrayons\\nrays\\nraze\\nrazed\\nrazee\\nrazeed\\nrazeeing\\nrazees\\nrazer\\nrazers\\nrazes\\nrazing\\nrazor\\nrazored\\nrazoring\\nrazors\\nrazz\\nrazzed\\nrazzes\\nrazzing\\nre\\nreabsorb\\nreabsorbed\\nreabsorbing\\nreabsorbs\\nreabstract\\nreabstracted\\nreabstracting\\nreabstracts\\nreaccede\\nreacceded\\nreaccedes\\nreacceding\\nreaccelerate\\nreaccelerated\\nreaccelerates\\nreaccelerating\\nreaccent\\nreaccented\\nreaccenting\\nreaccents\\nreaccept\\nreaccepted\\nreaccepting\\nreaccepts\\nreacclimatize\\nreacclimatized\\nreacclimatizes\\nreacclimatizing\\nreaccredit\\nreaccredited\\nreaccrediting\\nreaccredits\\nreaccumulate\\nreaccumulated\\nreaccumulates\\nreaccumulating\\nreaccuse\\nreaccused\\nreaccuses\\nreaccusing\\nreach\\nreachable\\nreached\\nreacher\\nreachers\\nreaches\\nreachieve\\nreachieved\\nreachieves\\nreachieving\\nreaching\\nreacquaint\\nreacquainted\\nreacquainting\\nreacquaints\\nreacquire\\nreacquired\\nreacquires\\nreacquiring\\nreact\\nreactant\\nreactants\\nreacted\\nreacting\\nreaction\\nreactionaries\\nreactionary\\nreactions\\nreactivate\\nreactivated\\nreactivates\\nreactivating\\nreactivation\\nreactivations\\nreactive\\nreactor\\nreactors\\nreacts\\nread\\nreadabilities\\nreadability\\nreadable\\nreadably\\nreadapt\\nreadapted\\nreadapting\\nreadapts\\nreadd\\nreadded\\nreaddict\\nreaddicted\\nreaddicting\\nreaddicts\\nreadding\\nreaddress\\nreaddressed\\nreaddresses\\nreaddressing\\nreadds\\nreader\\nreaders\\nreadership\\nreaderships\\nreadied\\nreadier\\nreadies\\nreadiest\\nreadily\\nreadiness\\nreadinesses\\nreading\\nreadings\\nreadjust\\nreadjustable\\nreadjusted\\nreadjusting\\nreadjustment\\nreadjustments\\nreadjusts\\nreadmit\\nreadmits\\nreadmitted\\nreadmitting\\nreadopt\\nreadopted\\nreadopting\\nreadopts\\nreadorn\\nreadorned\\nreadorning\\nreadorns\\nreadout\\nreadouts\\nreads\\nready\\nreadying\\nreaffirm\\nreaffirmed\\nreaffirming\\nreaffirms\\nreaffix\\nreaffixed\\nreaffixes\\nreaffixing\\nreagent\\nreagents\\nreagin\\nreaginic\\nreagins\\nreal\\nrealer\\nreales\\nrealest\\nrealgar\\nrealgars\\nrealia\\nrealign\\nrealigned\\nrealigning\\nrealignment\\nrealignments\\nrealigns\\nrealise\\nrealised\\nrealiser\\nrealisers\\nrealises\\nrealising\\nrealism\\nrealisms\\nrealist\\nrealistic\\nrealistically\\nrealists\\nrealities\\nreality\\nrealizable\\nrealization\\nrealizations\\nrealize\\nrealized\\nrealizer\\nrealizers\\nrealizes\\nrealizing\\nreallocate\\nreallocated\\nreallocates\\nreallocating\\nreallot\\nreallots\\nreallotted\\nreallotting\\nreally\\nrealm\\nrealms\\nrealness\\nrealnesses\\nreals\\nrealter\\nrealtered\\nrealtering\\nrealters\\nrealties\\nrealty\\nream\\nreamed\\nreamer\\nreamers\\nreaming\\nreams\\nreanalyses\\nreanalysis\\nreanalyze\\nreanalyzed\\nreanalyzes\\nreanalyzing\\nreanesthetize\\nreanesthetized\\nreanesthetizes\\nreanesthetizing\\nreannex\\nreannexed\\nreannexes\\nreannexing\\nreanoint\\nreanointed\\nreanointing\\nreanoints\\nreap\\nreapable\\nreaped\\nreaper\\nreapers\\nreaphook\\nreaphooks\\nreaping\\nreappear\\nreappearance\\nreappearances\\nreappeared\\nreappearing\\nreappears\\nreapplied\\nreapplies\\nreapply\\nreapplying\\nreappoint\\nreappointed\\nreappointing\\nreappoints\\nreapportion\\nreapportioned\\nreapportioning\\nreapportions\\nreappraisal\\nreappraisals\\nreappraise\\nreappraised\\nreappraises\\nreappraising\\nreapprove\\nreapproved\\nreapproves\\nreapproving\\nreaps\\nrear\\nreared\\nrearer\\nrearers\\nreargue\\nreargued\\nreargues\\nrearguing\\nrearing\\nrearm\\nrearmed\\nrearmice\\nrearming\\nrearmost\\nrearms\\nrearouse\\nrearoused\\nrearouses\\nrearousing\\nrearrange\\nrearranged\\nrearranges\\nrearranging\\nrearrest\\nrearrested\\nrearresting\\nrearrests\\nrears\\nrearward\\nrearwards\\nreascend\\nreascended\\nreascending\\nreascends\\nreascent\\nreascents\\nreason\\nreasonable\\nreasonableness\\nreasonablenesses\\nreasonably\\nreasoned\\nreasoner\\nreasoners\\nreasoning\\nreasonings\\nreasons\\nreassail\\nreassailed\\nreassailing\\nreassails\\nreassemble\\nreassembled\\nreassembles\\nreassembling\\nreassert\\nreasserted\\nreasserting\\nreasserts\\nreassess\\nreassessed\\nreassesses\\nreassessing\\nreassessment\\nreassessments\\nreassign\\nreassigned\\nreassigning\\nreassignment\\nreassignments\\nreassigns\\nreassociate\\nreassociated\\nreassociates\\nreassociating\\nreassort\\nreassorted\\nreassorting\\nreassorts\\nreassume\\nreassumed\\nreassumes\\nreassuming\\nreassurance\\nreassurances\\nreassure\\nreassured\\nreassures\\nreassuring\\nreassuringly\\nreata\\nreatas\\nreattach\\nreattached\\nreattaches\\nreattaching\\nreattack\\nreattacked\\nreattacking\\nreattacks\\nreattain\\nreattained\\nreattaining\\nreattains\\nreave\\nreaved\\nreaver\\nreavers\\nreaves\\nreaving\\nreavow\\nreavowed\\nreavowing\\nreavows\\nreawake\\nreawaked\\nreawaken\\nreawakened\\nreawakening\\nreawakens\\nreawakes\\nreawaking\\nreawoke\\nreawoken\\nreb\\nrebait\\nrebaited\\nrebaiting\\nrebaits\\nrebalance\\nrebalanced\\nrebalances\\nrebalancing\\nrebaptize\\nrebaptized\\nrebaptizes\\nrebaptizing\\nrebate\\nrebated\\nrebater\\nrebaters\\nrebates\\nrebating\\nrebato\\nrebatos\\nrebbe\\nrebbes\\nrebec\\nrebeck\\nrebecks\\nrebecs\\nrebel\\nrebeldom\\nrebeldoms\\nrebelled\\nrebelling\\nrebellion\\nrebellions\\nrebellious\\nrebelliously\\nrebelliousness\\nrebelliousnesses\\nrebels\\nrebid\\nrebidden\\nrebidding\\nrebids\\nrebill\\nrebilled\\nrebilling\\nrebills\\nrebind\\nrebinding\\nrebinds\\nrebirth\\nrebirths\\nrebloom\\nrebloomed\\nreblooming\\nreblooms\\nreboant\\nreboard\\nreboarded\\nreboarding\\nreboards\\nreboil\\nreboiled\\nreboiling\\nreboils\\nrebop\\nrebops\\nreborn\\nrebound\\nrebounded\\nrebounding\\nrebounds\\nrebozo\\nrebozos\\nrebranch\\nrebranched\\nrebranches\\nrebranching\\nrebroadcast\\nrebroadcasted\\nrebroadcasting\\nrebroadcasts\\nrebs\\nrebuff\\nrebuffed\\nrebuffing\\nrebuffs\\nrebuild\\nrebuilded\\nrebuilding\\nrebuilds\\nrebuilt\\nrebuke\\nrebuked\\nrebuker\\nrebukers\\nrebukes\\nrebuking\\nreburial\\nreburials\\nreburied\\nreburies\\nrebury\\nreburying\\nrebus\\nrebuses\\nrebut\\nrebuts\\nrebuttal\\nrebuttals\\nrebutted\\nrebutter\\nrebutters\\nrebutting\\nrebutton\\nrebuttoned\\nrebuttoning\\nrebuttons\\nrec\\nrecalcitrance\\nrecalcitrances\\nrecalcitrant\\nrecalculate\\nrecalculated\\nrecalculates\\nrecalculating\\nrecall\\nrecalled\\nrecaller\\nrecallers\\nrecalling\\nrecalls\\nrecane\\nrecaned\\nrecanes\\nrecaning\\nrecant\\nrecanted\\nrecanter\\nrecanters\\nrecanting\\nrecants\\nrecap\\nrecapitulate\\nrecapitulated\\nrecapitulates\\nrecapitulating\\nrecapitulation\\nrecapitulations\\nrecapped\\nrecapping\\nrecaps\\nrecapture\\nrecaptured\\nrecaptures\\nrecapturing\\nrecarried\\nrecarries\\nrecarry\\nrecarrying\\nrecast\\nrecasting\\nrecasts\\nrecede\\nreceded\\nrecedes\\nreceding\\nreceipt\\nreceipted\\nreceipting\\nreceipts\\nreceivable\\nreceivables\\nreceive\\nreceived\\nreceiver\\nreceivers\\nreceivership\\nreceiverships\\nreceives\\nreceiving\\nrecencies\\nrecency\\nrecent\\nrecenter\\nrecentest\\nrecently\\nrecentness\\nrecentnesses\\nrecept\\nreceptacle\\nreceptacles\\nreception\\nreceptionist\\nreceptionists\\nreceptions\\nreceptive\\nreceptively\\nreceptiveness\\nreceptivenesses\\nreceptivities\\nreceptivity\\nreceptor\\nreceptors\\nrecepts\\nrecertification\\nrecertifications\\nrecertified\\nrecertifies\\nrecertify\\nrecertifying\\nrecess\\nrecessed\\nrecesses\\nrecessing\\nrecession\\nrecessions\\nrechange\\nrechanged\\nrechanges\\nrechanging\\nrechannel\\nrechanneled\\nrechanneling\\nrechannels\\nrecharge\\nrecharged\\nrecharges\\nrecharging\\nrechart\\nrecharted\\nrecharting\\nrecharts\\nrecheat\\nrecheats\\nrecheck\\nrechecked\\nrechecking\\nrechecks\\nrechoose\\nrechooses\\nrechoosing\\nrechose\\nrechosen\\nrechristen\\nrechristened\\nrechristening\\nrechristens\\nrecipe\\nrecipes\\nrecipient\\nrecipients\\nreciprocal\\nreciprocally\\nreciprocals\\nreciprocate\\nreciprocated\\nreciprocates\\nreciprocating\\nreciprocation\\nreciprocations\\nreciprocities\\nreciprocity\\nrecircle\\nrecircled\\nrecircles\\nrecircling\\nrecirculate\\nrecirculated\\nrecirculates\\nrecirculating\\nrecirculation\\nrecirculations\\nrecision\\nrecisions\\nrecital\\nrecitals\\nrecitation\\nrecitations\\nrecite\\nrecited\\nreciter\\nreciters\\nrecites\\nreciting\\nreck\\nrecked\\nrecking\\nreckless\\nrecklessly\\nrecklessness\\nrecklessnesses\\nreckon\\nreckoned\\nreckoner\\nreckoners\\nreckoning\\nreckonings\\nreckons\\nrecks\\nreclad\\nreclaim\\nreclaimable\\nreclaimed\\nreclaiming\\nreclaims\\nreclamation\\nreclamations\\nreclame\\nreclames\\nreclasp\\nreclasped\\nreclasping\\nreclasps\\nreclassification\\nreclassifications\\nreclassified\\nreclassifies\\nreclassify\\nreclassifying\\nreclean\\nrecleaned\\nrecleaning\\nrecleans\\nrecline\\nreclined\\nrecliner\\nrecliners\\nreclines\\nreclining\\nreclothe\\nreclothed\\nreclothes\\nreclothing\\nrecluse\\nrecluses\\nrecoal\\nrecoaled\\nrecoaling\\nrecoals\\nrecock\\nrecocked\\nrecocking\\nrecocks\\nrecodified\\nrecodifies\\nrecodify\\nrecodifying\\nrecognition\\nrecognitions\\nrecognizable\\nrecognizably\\nrecognizance\\nrecognizances\\nrecognize\\nrecognized\\nrecognizes\\nrecognizing\\nrecoil\\nrecoiled\\nrecoiler\\nrecoilers\\nrecoiling\\nrecoils\\nrecoin\\nrecoined\\nrecoining\\nrecoins\\nrecollection\\nrecollections\\nrecolonize\\nrecolonized\\nrecolonizes\\nrecolonizing\\nrecolor\\nrecolored\\nrecoloring\\nrecolors\\nrecomb\\nrecombed\\nrecombine\\nrecombined\\nrecombines\\nrecombing\\nrecombining\\nrecombs\\nrecommend\\nrecommendable\\nrecommendation\\nrecommendations\\nrecommendatory\\nrecommended\\nrecommender\\nrecommenders\\nrecommending\\nrecommends\\nrecommit\\nrecommits\\nrecommitted\\nrecommitting\\nrecompense\\nrecompensed\\nrecompenses\\nrecompensing\\nrecompile\\nrecompiled\\nrecompiles\\nrecompiling\\nrecompute\\nrecomputed\\nrecomputes\\nrecomputing\\nrecon\\nreconceive\\nreconceived\\nreconceives\\nreconceiving\\nreconcilable\\nreconcile\\nreconciled\\nreconcilement\\nreconcilements\\nreconciler\\nreconcilers\\nreconciles\\nreconciliation\\nreconciliations\\nreconciling\\nrecondite\\nreconfigure\\nreconfigured\\nreconfigures\\nreconfiguring\\nreconnaissance\\nreconnaissances\\nreconnect\\nreconnected\\nreconnecting\\nreconnects\\nreconnoiter\\nreconnoitered\\nreconnoitering\\nreconnoiters\\nreconquer\\nreconquered\\nreconquering\\nreconquers\\nreconquest\\nreconquests\\nrecons\\nreconsider\\nreconsideration\\nreconsiderations\\nreconsidered\\nreconsidering\\nreconsiders\\nreconsolidate\\nreconsolidated\\nreconsolidates\\nreconsolidating\\nreconstruct\\nreconstructed\\nreconstructing\\nreconstructs\\nrecontaminate\\nrecontaminated\\nrecontaminates\\nrecontaminating\\nreconvene\\nreconvened\\nreconvenes\\nreconvening\\nreconvey\\nreconveyed\\nreconveying\\nreconveys\\nreconvict\\nreconvicted\\nreconvicting\\nreconvicts\\nrecook\\nrecooked\\nrecooking\\nrecooks\\nrecopied\\nrecopies\\nrecopy\\nrecopying\\nrecord\\nrecordable\\nrecorded\\nrecorder\\nrecorders\\nrecording\\nrecords\\nrecount\\nrecounted\\nrecounting\\nrecounts\\nrecoup\\nrecoupe\\nrecouped\\nrecouping\\nrecouple\\nrecoupled\\nrecouples\\nrecoupling\\nrecoups\\nrecourse\\nrecourses\\nrecover\\nrecoverable\\nrecovered\\nrecoveries\\nrecovering\\nrecovers\\nrecovery\\nrecrate\\nrecrated\\nrecrates\\nrecrating\\nrecreant\\nrecreants\\nrecreate\\nrecreated\\nrecreates\\nrecreating\\nrecreation\\nrecreational\\nrecreations\\nrecreative\\nrecriminate\\nrecriminated\\nrecriminates\\nrecriminating\\nrecrimination\\nrecriminations\\nrecriminatory\\nrecross\\nrecrossed\\nrecrosses\\nrecrossing\\nrecrown\\nrecrowned\\nrecrowning\\nrecrowns\\nrecruit\\nrecruited\\nrecruiting\\nrecruitment\\nrecruitments\\nrecruits\\nrecs\\nrecta\\nrectal\\nrectally\\nrectangle\\nrectangles\\nrecti\\nrectification\\nrectifications\\nrectified\\nrectifier\\nrectifiers\\nrectifies\\nrectify\\nrectifying\\nrectitude\\nrectitudes\\nrecto\\nrector\\nrectorate\\nrectorates\\nrectorial\\nrectories\\nrectors\\nrectory\\nrectos\\nrectrices\\nrectrix\\nrectum\\nrectums\\nrectus\\nrecumbent\\nrecuperate\\nrecuperated\\nrecuperates\\nrecuperating\\nrecuperation\\nrecuperations\\nrecuperative\\nrecur\\nrecurred\\nrecurrence\\nrecurrences\\nrecurrent\\nrecurring\\nrecurs\\nrecurve\\nrecurved\\nrecurves\\nrecurving\\nrecusant\\nrecusants\\nrecuse\\nrecused\\nrecuses\\nrecusing\\nrecut\\nrecuts\\nrecutting\\nrecycle\\nrecycled\\nrecycles\\nrecycling\\nred\\nredact\\nredacted\\nredacting\\nredactor\\nredactors\\nredacts\\nredan\\nredans\\nredargue\\nredargued\\nredargues\\nredarguing\\nredate\\nredated\\nredates\\nredating\\nredbait\\nredbaited\\nredbaiting\\nredbaits\\nredbay\\nredbays\\nredbird\\nredbirds\\nredbone\\nredbones\\nredbrick\\nredbud\\nredbuds\\nredbug\\nredbugs\\nredcap\\nredcaps\\nredcoat\\nredcoats\\nredd\\nredded\\nredden\\nreddened\\nreddening\\nreddens\\nredder\\nredders\\nreddest\\nredding\\nreddish\\nreddle\\nreddled\\nreddles\\nreddling\\nredds\\nrede\\nredear\\nredears\\nredecorate\\nredecorated\\nredecorates\\nredecorating\\nreded\\nrededicate\\nrededicated\\nrededicates\\nrededicating\\nrededication\\nrededications\\nredeem\\nredeemable\\nredeemed\\nredeemer\\nredeemers\\nredeeming\\nredeems\\nredefeat\\nredefeated\\nredefeating\\nredefeats\\nredefied\\nredefies\\nredefine\\nredefined\\nredefines\\nredefining\\nredefy\\nredefying\\nredemand\\nredemanded\\nredemanding\\nredemands\\nredemption\\nredemptions\\nredemptive\\nredemptory\\nredenied\\nredenies\\nredeny\\nredenying\\nredeploy\\nredeployed\\nredeploying\\nredeploys\\nredeposit\\nredeposited\\nredepositing\\nredeposits\\nredes\\nredesign\\nredesignate\\nredesignated\\nredesignates\\nredesignating\\nredesigned\\nredesigning\\nredesigns\\nredevelop\\nredeveloped\\nredeveloping\\nredevelops\\nredeye\\nredeyes\\nredfin\\nredfins\\nredfish\\nredfishes\\nredhead\\nredheaded\\nredheads\\nredhorse\\nredhorses\\nredia\\nrediae\\nredial\\nredias\\nredid\\nredigest\\nredigested\\nredigesting\\nredigests\\nreding\\nredip\\nredipped\\nredipping\\nredips\\nredipt\\nredirect\\nredirected\\nredirecting\\nredirects\\nrediscover\\nrediscovered\\nrediscoveries\\nrediscovering\\nrediscovers\\nrediscovery\\nredissolve\\nredissolved\\nredissolves\\nredissolving\\nredistribute\\nredistributed\\nredistributes\\nredistributing\\nredivide\\nredivided\\nredivides\\nredividing\\nredleg\\nredlegs\\nredly\\nredneck\\nrednecks\\nredness\\nrednesses\\nredo\\nredock\\nredocked\\nredocking\\nredocks\\nredoes\\nredoing\\nredolence\\nredolences\\nredolent\\nredolently\\nredone\\nredos\\nredouble\\nredoubled\\nredoubles\\nredoubling\\nredoubt\\nredoubtable\\nredoubts\\nredound\\nredounded\\nredounding\\nredounds\\nredout\\nredouts\\nredowa\\nredowas\\nredox\\nredoxes\\nredpoll\\nredpolls\\nredraft\\nredrafted\\nredrafting\\nredrafts\\nredraw\\nredrawer\\nredrawers\\nredrawing\\nredrawn\\nredraws\\nredress\\nredressed\\nredresses\\nredressing\\nredrew\\nredried\\nredries\\nredrill\\nredrilled\\nredrilling\\nredrills\\nredrive\\nredriven\\nredrives\\nredriving\\nredroot\\nredroots\\nredrove\\nredry\\nredrying\\nreds\\nredshank\\nredshanks\\nredshirt\\nredshirted\\nredshirting\\nredshirts\\nredskin\\nredskins\\nredstart\\nredstarts\\nredtop\\nredtops\\nreduce\\nreduced\\nreducer\\nreducers\\nreduces\\nreducible\\nreducing\\nreduction\\nreductions\\nredundancies\\nredundancy\\nredundant\\nredundantly\\nreduviid\\nreduviids\\nredware\\nredwares\\nredwing\\nredwings\\nredwood\\nredwoods\\nredye\\nredyed\\nredyeing\\nredyes\\nree\\nreearn\\nreearned\\nreearning\\nreearns\\nreecho\\nreechoed\\nreechoes\\nreechoing\\nreed\\nreedbird\\nreedbirds\\nreedbuck\\nreedbucks\\nreeded\\nreedier\\nreediest\\nreedified\\nreedifies\\nreedify\\nreedifying\\nreeding\\nreedings\\nreedit\\nreedited\\nreediting\\nreedits\\nreedling\\nreedlings\\nreeds\\nreedy\\nreef\\nreefed\\nreefer\\nreefers\\nreefier\\nreefiest\\nreefing\\nreefs\\nreefy\\nreeject\\nreejected\\nreejecting\\nreejects\\nreek\\nreeked\\nreeker\\nreekers\\nreekier\\nreekiest\\nreeking\\nreeks\\nreeky\\nreel\\nreelable\\nreelect\\nreelected\\nreelecting\\nreelects\\nreeled\\nreeler\\nreelers\\nreeling\\nreels\\nreembark\\nreembarked\\nreembarking\\nreembarks\\nreembodied\\nreembodies\\nreembody\\nreembodying\\nreemerge\\nreemerged\\nreemergence\\nreemergences\\nreemerges\\nreemerging\\nreemit\\nreemits\\nreemitted\\nreemitting\\nreemphasize\\nreemphasized\\nreemphasizes\\nreemphasizing\\nreemploy\\nreemployed\\nreemploying\\nreemploys\\nreenact\\nreenacted\\nreenacting\\nreenacts\\nreendow\\nreendowed\\nreendowing\\nreendows\\nreenergize\\nreenergized\\nreenergizes\\nreenergizing\\nreengage\\nreengaged\\nreengages\\nreengaging\\nreenjoy\\nreenjoyed\\nreenjoying\\nreenjoys\\nreenlist\\nreenlisted\\nreenlisting\\nreenlistness\\nreenlistnesses\\nreenlists\\nreenter\\nreentered\\nreentering\\nreenters\\nreentries\\nreentry\\nreequip\\nreequipped\\nreequipping\\nreequips\\nreerect\\nreerected\\nreerecting\\nreerects\\nrees\\nreest\\nreestablish\\nreestablished\\nreestablishes\\nreestablishing\\nreestablishment\\nreestablishments\\nreested\\nreestimate\\nreestimated\\nreestimates\\nreestimating\\nreesting\\nreests\\nreevaluate\\nreevaluated\\nreevaluates\\nreevaluating\\nreevaluation\\nreevaluations\\nreeve\\nreeved\\nreeves\\nreeving\\nreevoke\\nreevoked\\nreevokes\\nreevoking\\nreexamination\\nreexaminations\\nreexamine\\nreexamined\\nreexamines\\nreexamining\\nreexpel\\nreexpelled\\nreexpelling\\nreexpels\\nreexport\\nreexported\\nreexporting\\nreexports\\nref\\nreface\\nrefaced\\nrefaces\\nrefacing\\nrefall\\nrefallen\\nrefalling\\nrefalls\\nrefasten\\nrefastened\\nrefastening\\nrefastens\\nrefect\\nrefected\\nrefecting\\nrefects\\nrefed\\nrefeed\\nrefeeding\\nrefeeds\\nrefel\\nrefell\\nrefelled\\nrefelling\\nrefels\\nrefer\\nreferable\\nreferee\\nrefereed\\nrefereeing\\nreferees\\nreference\\nreferences\\nreferenda\\nreferendum\\nreferendums\\nreferent\\nreferents\\nreferral\\nreferrals\\nreferred\\nreferrer\\nreferrers\\nreferring\\nrefers\\nreffed\\nreffing\\nrefight\\nrefighting\\nrefights\\nrefigure\\nrefigured\\nrefigures\\nrefiguring\\nrefile\\nrefiled\\nrefiles\\nrefiling\\nrefill\\nrefillable\\nrefilled\\nrefilling\\nrefills\\nrefilm\\nrefilmed\\nrefilming\\nrefilms\\nrefilter\\nrefiltered\\nrefiltering\\nrefilters\\nrefinance\\nrefinanced\\nrefinances\\nrefinancing\\nrefind\\nrefinding\\nrefinds\\nrefine\\nrefined\\nrefinement\\nrefinements\\nrefiner\\nrefineries\\nrefiners\\nrefinery\\nrefines\\nrefining\\nrefinish\\nrefinished\\nrefinishes\\nrefinishing\\nrefire\\nrefired\\nrefires\\nrefiring\\nrefit\\nrefits\\nrefitted\\nrefitting\\nrefix\\nrefixed\\nrefixes\\nrefixing\\nreflate\\nreflated\\nreflates\\nreflating\\nreflect\\nreflected\\nreflecting\\nreflection\\nreflections\\nreflective\\nreflector\\nreflectors\\nreflects\\nreflet\\nreflets\\nreflew\\nreflex\\nreflexed\\nreflexes\\nreflexing\\nreflexive\\nreflexively\\nreflexiveness\\nreflexivenesses\\nreflexly\\nreflies\\nrefloat\\nrefloated\\nrefloating\\nrefloats\\nreflood\\nreflooded\\nreflooding\\nrefloods\\nreflow\\nreflowed\\nreflower\\nreflowered\\nreflowering\\nreflowers\\nreflowing\\nreflown\\nreflows\\nrefluent\\nreflux\\nrefluxed\\nrefluxes\\nrefluxing\\nrefly\\nreflying\\nrefocus\\nrefocused\\nrefocuses\\nrefocusing\\nrefocussed\\nrefocusses\\nrefocussing\\nrefold\\nrefolded\\nrefolding\\nrefolds\\nreforest\\nreforested\\nreforesting\\nreforests\\nreforge\\nreforged\\nreforges\\nreforging\\nreform\\nreformat\\nreformatories\\nreformatory\\nreformats\\nreformatted\\nreformatting\\nreformed\\nreformer\\nreformers\\nreforming\\nreforms\\nreformulate\\nreformulated\\nreformulates\\nreformulating\\nrefought\\nrefound\\nrefounded\\nrefounding\\nrefounds\\nrefract\\nrefracted\\nrefracting\\nrefraction\\nrefractions\\nrefractive\\nrefractory\\nrefracts\\nrefrain\\nrefrained\\nrefraining\\nrefrainment\\nrefrainments\\nrefrains\\nreframe\\nreframed\\nreframes\\nreframing\\nrefreeze\\nrefreezes\\nrefreezing\\nrefresh\\nrefreshed\\nrefresher\\nrefreshers\\nrefreshes\\nrefreshing\\nrefreshingly\\nrefreshment\\nrefreshments\\nrefried\\nrefries\\nrefrigerant\\nrefrigerants\\nrefrigerate\\nrefrigerated\\nrefrigerates\\nrefrigerating\\nrefrigeration\\nrefrigerations\\nrefrigerator\\nrefrigerators\\nrefront\\nrefronted\\nrefronting\\nrefronts\\nrefroze\\nrefrozen\\nrefry\\nrefrying\\nrefs\\nreft\\nrefuel\\nrefueled\\nrefueling\\nrefuelled\\nrefuelling\\nrefuels\\nrefuge\\nrefuged\\nrefugee\\nrefugees\\nrefuges\\nrefugia\\nrefuging\\nrefugium\\nrefund\\nrefundable\\nrefunded\\nrefunder\\nrefunders\\nrefunding\\nrefunds\\nrefurbish\\nrefurbished\\nrefurbishes\\nrefurbishing\\nrefusal\\nrefusals\\nrefuse\\nrefused\\nrefuser\\nrefusers\\nrefuses\\nrefusing\\nrefutal\\nrefutals\\nrefutation\\nrefutations\\nrefute\\nrefuted\\nrefuter\\nrefuters\\nrefutes\\nrefuting\\nregain\\nregained\\nregainer\\nregainers\\nregaining\\nregains\\nregal\\nregale\\nregaled\\nregalement\\nregalements\\nregales\\nregalia\\nregaling\\nregalities\\nregality\\nregally\\nregard\\nregarded\\nregardful\\nregarding\\nregardless\\nregards\\nregather\\nregathered\\nregathering\\nregathers\\nregatta\\nregattas\\nregauge\\nregauged\\nregauges\\nregauging\\nregave\\nregear\\nregeared\\nregearing\\nregears\\nregelate\\nregelated\\nregelates\\nregelating\\nregencies\\nregency\\nregenerate\\nregenerated\\nregenerates\\nregenerating\\nregeneration\\nregenerations\\nregenerative\\nregenerator\\nregenerators\\nregent\\nregental\\nregents\\nreges\\nregicide\\nregicides\\nregild\\nregilded\\nregilding\\nregilds\\nregilt\\nregime\\nregimen\\nregimens\\nregiment\\nregimental\\nregimentation\\nregimentations\\nregimented\\nregimenting\\nregiments\\nregimes\\nregina\\nreginae\\nreginal\\nreginas\\nregion\\nregional\\nregionally\\nregionals\\nregions\\nregister\\nregistered\\nregistering\\nregisters\\nregistrar\\nregistrars\\nregistration\\nregistrations\\nregistries\\nregistry\\nregius\\nregive\\nregiven\\nregives\\nregiving\\nreglaze\\nreglazed\\nreglazes\\nreglazing\\nreglet\\nreglets\\nregloss\\nreglossed\\nreglosses\\nreglossing\\nreglow\\nreglowed\\nreglowing\\nreglows\\nreglue\\nreglued\\nreglues\\nregluing\\nregma\\nregmata\\nregna\\nregnal\\nregnancies\\nregnancy\\nregnant\\nregnum\\nregolith\\nregoliths\\nregorge\\nregorged\\nregorges\\nregorging\\nregosol\\nregosols\\nregrade\\nregraded\\nregrades\\nregrading\\nregraft\\nregrafted\\nregrafting\\nregrafts\\nregrant\\nregranted\\nregranting\\nregrants\\nregrate\\nregrated\\nregrates\\nregrating\\nregreet\\nregreeted\\nregreeting\\nregreets\\nregress\\nregressed\\nregresses\\nregressing\\nregression\\nregressions\\nregressive\\nregressor\\nregressors\\nregret\\nregretfully\\nregrets\\nregrettable\\nregrettably\\nregretted\\nregretter\\nregretters\\nregretting\\nregrew\\nregrind\\nregrinding\\nregrinds\\nregroove\\nregrooved\\nregrooves\\nregrooving\\nreground\\nregroup\\nregrouped\\nregrouping\\nregroups\\nregrow\\nregrowing\\nregrown\\nregrows\\nregrowth\\nregrowths\\nregular\\nregularities\\nregularity\\nregularize\\nregularized\\nregularizes\\nregularizing\\nregularly\\nregulars\\nregulate\\nregulated\\nregulates\\nregulating\\nregulation\\nregulations\\nregulative\\nregulator\\nregulators\\nregulatory\\nreguli\\nreguline\\nregulus\\nreguluses\\nregurgitate\\nregurgitated\\nregurgitates\\nregurgitating\\nregurgitation\\nregurgitations\\nrehabilitate\\nrehabilitated\\nrehabilitates\\nrehabilitating\\nrehabilitation\\nrehabilitations\\nrehabilitative\\nrehammer\\nrehammered\\nrehammering\\nrehammers\\nrehandle\\nrehandled\\nrehandles\\nrehandling\\nrehang\\nrehanged\\nrehanging\\nrehangs\\nreharden\\nrehardened\\nrehardening\\nrehardens\\nrehash\\nrehashed\\nrehashes\\nrehashing\\nrehear\\nreheard\\nrehearing\\nrehears\\nrehearsal\\nrehearsals\\nrehearse\\nrehearsed\\nrehearser\\nrehearsers\\nrehearses\\nrehearsing\\nreheat\\nreheated\\nreheater\\nreheaters\\nreheating\\nreheats\\nreheel\\nreheeled\\nreheeling\\nreheels\\nrehem\\nrehemmed\\nrehemming\\nrehems\\nrehinge\\nrehinged\\nrehinges\\nrehinging\\nrehire\\nrehired\\nrehires\\nrehiring\\nrehospitalization\\nrehospitalizations\\nrehospitalize\\nrehospitalized\\nrehospitalizes\\nrehospitalizing\\nrehouse\\nrehoused\\nrehouses\\nrehousing\\nrehung\\nrei\\nreidentified\\nreidentifies\\nreidentify\\nreidentifying\\nreif\\nreified\\nreifier\\nreifiers\\nreifies\\nreifs\\nreify\\nreifying\\nreign\\nreigned\\nreigning\\nreignite\\nreignited\\nreignites\\nreigniting\\nreigns\\nreimage\\nreimaged\\nreimages\\nreimaging\\nreimbursable\\nreimburse\\nreimbursed\\nreimbursement\\nreimbursements\\nreimburses\\nreimbursing\\nreimplant\\nreimplanted\\nreimplanting\\nreimplants\\nreimport\\nreimported\\nreimporting\\nreimports\\nreimpose\\nreimposed\\nreimposes\\nreimposing\\nrein\\nreincarnate\\nreincarnated\\nreincarnates\\nreincarnating\\nreincarnation\\nreincarnations\\nreincite\\nreincited\\nreincites\\nreinciting\\nreincorporate\\nreincorporated\\nreincorporates\\nreincorporating\\nreincur\\nreincurred\\nreincurring\\nreincurs\\nreindeer\\nreindeers\\nreindex\\nreindexed\\nreindexes\\nreindexing\\nreinduce\\nreinduced\\nreinduces\\nreinducing\\nreinduct\\nreinducted\\nreinducting\\nreinducts\\nreined\\nreinfect\\nreinfected\\nreinfecting\\nreinfection\\nreinfections\\nreinfects\\nreinforcement\\nreinforcements\\nreinforcer\\nreinforcers\\nreinform\\nreinformed\\nreinforming\\nreinforms\\nreinfuse\\nreinfused\\nreinfuses\\nreinfusing\\nreining\\nreinjection\\nreinjections\\nreinjure\\nreinjured\\nreinjures\\nreinjuring\\nreinless\\nreinoculate\\nreinoculated\\nreinoculates\\nreinoculating\\nreins\\nreinsert\\nreinserted\\nreinserting\\nreinsertion\\nreinsertions\\nreinserts\\nreinsman\\nreinsmen\\nreinspect\\nreinspected\\nreinspecting\\nreinspects\\nreinstall\\nreinstalled\\nreinstalling\\nreinstalls\\nreinstate\\nreinstated\\nreinstates\\nreinstating\\nreinstitute\\nreinstituted\\nreinstitutes\\nreinstituting\\nreinsure\\nreinsured\\nreinsures\\nreinsuring\\nreintegrate\\nreintegrated\\nreintegrates\\nreintegrating\\nreintegration\\nreintegrations\\nreinter\\nreinterred\\nreinterring\\nreinters\\nreintroduce\\nreintroduced\\nreintroduces\\nreintroducing\\nreinvent\\nreinvented\\nreinventing\\nreinvents\\nreinvest\\nreinvested\\nreinvestigate\\nreinvestigated\\nreinvestigates\\nreinvestigating\\nreinvestigation\\nreinvestigations\\nreinvesting\\nreinvests\\nreinvigorate\\nreinvigorated\\nreinvigorates\\nreinvigorating\\nreinvite\\nreinvited\\nreinvites\\nreinviting\\nreinvoke\\nreinvoked\\nreinvokes\\nreinvoking\\nreis\\nreissue\\nreissued\\nreissuer\\nreissuers\\nreissues\\nreissuing\\nreitbok\\nreitboks\\nreiterate\\nreiterated\\nreiterates\\nreiterating\\nreiteration\\nreiterations\\nreive\\nreived\\nreiver\\nreivers\\nreives\\nreiving\\nreject\\nrejected\\nrejectee\\nrejectees\\nrejecter\\nrejecters\\nrejecting\\nrejection\\nrejections\\nrejector\\nrejectors\\nrejects\\nrejigger\\nrejiggered\\nrejiggering\\nrejiggers\\nrejoice\\nrejoiced\\nrejoicer\\nrejoicers\\nrejoices\\nrejoicing\\nrejoicings\\nrejoin\\nrejoinder\\nrejoinders\\nrejoined\\nrejoining\\nrejoins\\nrejudge\\nrejudged\\nrejudges\\nrejudging\\nrejuvenate\\nrejuvenated\\nrejuvenates\\nrejuvenating\\nrejuvenation\\nrejuvenations\\nrekey\\nrekeyed\\nrekeying\\nrekeys\\nrekindle\\nrekindled\\nrekindles\\nrekindling\\nreknit\\nreknits\\nreknitted\\nreknitting\\nrelabel\\nrelabeled\\nrelabeling\\nrelabelled\\nrelabelling\\nrelabels\\nrelace\\nrelaced\\nrelaces\\nrelacing\\nrelaid\\nrelandscape\\nrelandscaped\\nrelandscapes\\nrelandscaping\\nrelapse\\nrelapsed\\nrelapser\\nrelapsers\\nrelapses\\nrelapsing\\nrelatable\\nrelate\\nrelated\\nrelater\\nrelaters\\nrelates\\nrelating\\nrelation\\nrelations\\nrelationship\\nrelationships\\nrelative\\nrelatively\\nrelativeness\\nrelativenesses\\nrelatives\\nrelator\\nrelators\\nrelaunch\\nrelaunched\\nrelaunches\\nrelaunching\\nrelax\\nrelaxant\\nrelaxants\\nrelaxation\\nrelaxations\\nrelaxed\\nrelaxer\\nrelaxers\\nrelaxes\\nrelaxin\\nrelaxing\\nrelaxins\\nrelay\\nrelayed\\nrelaying\\nrelays\\nrelearn\\nrelearned\\nrelearning\\nrelearns\\nrelearnt\\nrelease\\nreleased\\nreleaser\\nreleasers\\nreleases\\nreleasing\\nrelegate\\nrelegated\\nrelegates\\nrelegating\\nrelegation\\nrelegations\\nrelend\\nrelending\\nrelends\\nrelent\\nrelented\\nrelenting\\nrelentless\\nrelentlessly\\nrelentlessness\\nrelentlessnesses\\nrelents\\nrelet\\nrelets\\nreletter\\nrelettered\\nrelettering\\nreletters\\nreletting\\nrelevance\\nrelevances\\nrelevant\\nrelevantly\\nreliabilities\\nreliability\\nreliable\\nreliableness\\nreliablenesses\\nreliably\\nreliance\\nreliances\\nreliant\\nrelic\\nrelics\\nrelict\\nrelicts\\nrelied\\nrelief\\nreliefs\\nrelier\\nreliers\\nrelies\\nrelieve\\nrelieved\\nreliever\\nrelievers\\nrelieves\\nrelieving\\nrelievo\\nrelievos\\nrelight\\nrelighted\\nrelighting\\nrelights\\nreligion\\nreligionist\\nreligionists\\nreligions\\nreligious\\nreligiously\\nreline\\nrelined\\nrelines\\nrelining\\nrelinquish\\nrelinquished\\nrelinquishes\\nrelinquishing\\nrelinquishment\\nrelinquishments\\nrelique\\nreliques\\nrelish\\nrelishable\\nrelished\\nrelishes\\nrelishing\\nrelist\\nrelisted\\nrelisting\\nrelists\\nrelit\\nrelive\\nrelived\\nrelives\\nreliving\\nreload\\nreloaded\\nreloader\\nreloaders\\nreloading\\nreloads\\nreloan\\nreloaned\\nreloaning\\nreloans\\nrelocate\\nrelocated\\nrelocates\\nrelocating\\nrelocation\\nrelocations\\nrelucent\\nreluct\\nreluctance\\nreluctant\\nreluctantly\\nrelucted\\nrelucting\\nrelucts\\nrelume\\nrelumed\\nrelumes\\nrelumine\\nrelumined\\nrelumines\\nreluming\\nrelumining\\nrely\\nrelying\\nrem\\nremade\\nremail\\nremailed\\nremailing\\nremails\\nremain\\nremainder\\nremainders\\nremained\\nremaining\\nremains\\nremake\\nremakes\\nremaking\\nreman\\nremand\\nremanded\\nremanding\\nremands\\nremanent\\nremanned\\nremanning\\nremans\\nremap\\nremapped\\nremapping\\nremaps\\nremark\\nremarkable\\nremarkableness\\nremarkablenesses\\nremarkably\\nremarked\\nremarker\\nremarkers\\nremarking\\nremarks\\nremarque\\nremarques\\nremarriage\\nremarriages\\nremarried\\nremarries\\nremarry\\nremarrying\\nrematch\\nrematched\\nrematches\\nrematching\\nremeasure\\nremeasured\\nremeasures\\nremeasuring\\nremedial\\nremedially\\nremedied\\nremedies\\nremedy\\nremedying\\nremeet\\nremeeting\\nremeets\\nremelt\\nremelted\\nremelting\\nremelts\\nremember\\nremembered\\nremembering\\nremembers\\nremend\\nremended\\nremending\\nremends\\nremerge\\nremerged\\nremerges\\nremerging\\nremet\\nremex\\nremiges\\nremigial\\nremind\\nreminded\\nreminder\\nreminders\\nreminding\\nreminds\\nreminisce\\nreminisced\\nreminiscence\\nreminiscences\\nreminiscent\\nreminiscently\\nreminisces\\nreminiscing\\nremint\\nreminted\\nreminting\\nremints\\nremise\\nremised\\nremises\\nremising\\nremiss\\nremission\\nremissions\\nremissly\\nremissness\\nremissnesses\\nremit\\nremits\\nremittal\\nremittals\\nremittance\\nremittances\\nremitted\\nremitter\\nremitters\\nremitting\\nremittor\\nremittors\\nremix\\nremixed\\nremixes\\nremixing\\nremixt\\nremnant\\nremnants\\nremobilize\\nremobilized\\nremobilizes\\nremobilizing\\nremodel\\nremodeled\\nremodeling\\nremodelled\\nremodelling\\nremodels\\nremodified\\nremodifies\\nremodify\\nremodifying\\nremoisten\\nremoistened\\nremoistening\\nremoistens\\nremolade\\nremolades\\nremold\\nremolded\\nremolding\\nremolds\\nremonstrance\\nremonstrances\\nremonstrate\\nremonstrated\\nremonstrates\\nremonstrating\\nremonstration\\nremonstrations\\nremora\\nremoras\\nremorid\\nremorse\\nremorseful\\nremorseless\\nremorses\\nremote\\nremotely\\nremoteness\\nremotenesses\\nremoter\\nremotest\\nremotion\\nremotions\\nremotivate\\nremotivated\\nremotivates\\nremotivating\\nremount\\nremounted\\nremounting\\nremounts\\nremovable\\nremoval\\nremovals\\nremove\\nremoved\\nremover\\nremovers\\nremoves\\nremoving\\nrems\\nremuda\\nremudas\\nremunerate\\nremunerated\\nremunerates\\nremunerating\\nremuneration\\nremunerations\\nremunerative\\nremuneratively\\nremunerativeness\\nremunerativenesses\\nremunerator\\nremunerators\\nremuneratory\\nrenaissance\\nrenaissances\\nrenal\\nrename\\nrenamed\\nrenames\\nrenaming\\nrenature\\nrenatured\\nrenatures\\nrenaturing\\nrend\\nrended\\nrender\\nrendered\\nrenderer\\nrenderers\\nrendering\\nrenders\\nrendezvous\\nrendezvoused\\nrendezvousing\\nrendible\\nrending\\nrendition\\nrenditions\\nrends\\nrendzina\\nrendzinas\\nrenegade\\nrenegaded\\nrenegades\\nrenegading\\nrenegado\\nrenegadoes\\nrenegados\\nrenege\\nreneged\\nreneger\\nrenegers\\nreneges\\nreneging\\nrenegotiate\\nrenegotiated\\nrenegotiates\\nrenegotiating\\nrenew\\nrenewable\\nrenewal\\nrenewals\\nrenewed\\nrenewer\\nrenewers\\nrenewing\\nrenews\\nreniform\\nrenig\\nrenigged\\nrenigging\\nrenigs\\nrenin\\nrenins\\nrenitent\\nrennase\\nrennases\\nrennet\\nrennets\\nrennin\\nrennins\\nrenogram\\nrenograms\\nrenotified\\nrenotifies\\nrenotify\\nrenotifying\\nrenounce\\nrenounced\\nrenouncement\\nrenouncements\\nrenounces\\nrenouncing\\nrenovate\\nrenovated\\nrenovates\\nrenovating\\nrenovation\\nrenovations\\nrenovator\\nrenovators\\nrenown\\nrenowned\\nrenowning\\nrenowns\\nrent\\nrentable\\nrental\\nrentals\\nrente\\nrented\\nrenter\\nrenters\\nrentes\\nrentier\\nrentiers\\nrenting\\nrents\\nrenumber\\nrenumbered\\nrenumbering\\nrenumbers\\nrenunciation\\nrenunciations\\nrenvoi\\nrenvois\\nreobject\\nreobjected\\nreobjecting\\nreobjects\\nreobtain\\nreobtained\\nreobtaining\\nreobtains\\nreoccupied\\nreoccupies\\nreoccupy\\nreoccupying\\nreoccur\\nreoccurred\\nreoccurrence\\nreoccurrences\\nreoccurring\\nreoccurs\\nreoffer\\nreoffered\\nreoffering\\nreoffers\\nreoil\\nreoiled\\nreoiling\\nreoils\\nreopen\\nreopened\\nreopening\\nreopens\\nreoperate\\nreoperated\\nreoperates\\nreoperating\\nreoppose\\nreopposed\\nreopposes\\nreopposing\\nreorchestrate\\nreorchestrated\\nreorchestrates\\nreorchestrating\\nreordain\\nreordained\\nreordaining\\nreordains\\nreorder\\nreordered\\nreordering\\nreorders\\nreorganization\\nreorganizations\\nreorganize\\nreorganized\\nreorganizes\\nreorganizing\\nreorient\\nreoriented\\nreorienting\\nreorients\\nreovirus\\nreoviruses\\nrep\\nrepacified\\nrepacifies\\nrepacify\\nrepacifying\\nrepack\\nrepacked\\nrepacking\\nrepacks\\nrepaid\\nrepaint\\nrepainted\\nrepainting\\nrepaints\\nrepair\\nrepaired\\nrepairer\\nrepairers\\nrepairing\\nrepairman\\nrepairmen\\nrepairs\\nrepand\\nrepandly\\nrepaper\\nrepapered\\nrepapering\\nrepapers\\nreparation\\nreparations\\nrepartee\\nrepartees\\nrepass\\nrepassed\\nrepasses\\nrepassing\\nrepast\\nrepasted\\nrepasting\\nrepasts\\nrepatriate\\nrepatriated\\nrepatriates\\nrepatriating\\nrepatriation\\nrepatriations\\nrepave\\nrepaved\\nrepaves\\nrepaving\\nrepay\\nrepayable\\nrepaying\\nrepayment\\nrepayments\\nrepays\\nrepeal\\nrepealed\\nrepealer\\nrepealers\\nrepealing\\nrepeals\\nrepeat\\nrepeatable\\nrepeated\\nrepeatedly\\nrepeater\\nrepeaters\\nrepeating\\nrepeats\\nrepel\\nrepelled\\nrepellent\\nrepellents\\nrepeller\\nrepellers\\nrepelling\\nrepels\\nrepent\\nrepentance\\nrepentances\\nrepentant\\nrepented\\nrepenter\\nrepenters\\nrepenting\\nrepents\\nrepeople\\nrepeopled\\nrepeoples\\nrepeopling\\nrepercussion\\nrepercussions\\nreperk\\nreperked\\nreperking\\nreperks\\nrepertoire\\nrepertoires\\nrepertories\\nrepertory\\nrepetend\\nrepetends\\nrepetition\\nrepetitions\\nrepetitious\\nrepetitiously\\nrepetitiousness\\nrepetitiousnesses\\nrepetitive\\nrepetitively\\nrepetitiveness\\nrepetitivenesses\\nrephotograph\\nrephotographed\\nrephotographing\\nrephotographs\\nrephrase\\nrephrased\\nrephrases\\nrephrasing\\nrepin\\nrepine\\nrepined\\nrepiner\\nrepiners\\nrepines\\nrepining\\nrepinned\\nrepinning\\nrepins\\nreplace\\nreplaceable\\nreplaced\\nreplacement\\nreplacements\\nreplacer\\nreplacers\\nreplaces\\nreplacing\\nreplan\\nreplanned\\nreplanning\\nreplans\\nreplant\\nreplanted\\nreplanting\\nreplants\\nreplate\\nreplated\\nreplates\\nreplating\\nreplay\\nreplayed\\nreplaying\\nreplays\\nrepledge\\nrepledged\\nrepledges\\nrepledging\\nreplenish\\nreplenished\\nreplenishes\\nreplenishing\\nreplenishment\\nreplenishments\\nreplete\\nrepleteness\\nrepletenesses\\nrepletion\\nrepletions\\nreplevied\\nreplevies\\nreplevin\\nreplevined\\nreplevining\\nreplevins\\nreplevy\\nreplevying\\nreplica\\nreplicas\\nreplicate\\nreplicated\\nreplicates\\nreplicating\\nreplied\\nreplier\\nrepliers\\nreplies\\nreplunge\\nreplunged\\nreplunges\\nreplunging\\nreply\\nreplying\\nrepolish\\nrepolished\\nrepolishes\\nrepolishing\\nrepopulate\\nrepopulated\\nrepopulates\\nrepopulating\\nreport\\nreportage\\nreportages\\nreported\\nreportedly\\nreporter\\nreporters\\nreporting\\nreportorial\\nreports\\nreposal\\nreposals\\nrepose\\nreposed\\nreposeful\\nreposer\\nreposers\\nreposes\\nreposing\\nreposit\\nreposited\\nrepositing\\nrepository\\nreposits\\nrepossess\\nrepossession\\nrepossessions\\nrepour\\nrepoured\\nrepouring\\nrepours\\nrepousse\\nrepousses\\nrepower\\nrepowered\\nrepowering\\nrepowers\\nrepp\\nrepped\\nrepps\\nreprehend\\nreprehends\\nreprehensible\\nreprehensibly\\nreprehension\\nreprehensions\\nrepresent\\nrepresentation\\nrepresentations\\nrepresentative\\nrepresentatively\\nrepresentativeness\\nrepresentativenesses\\nrepresentatives\\nrepresented\\nrepresenting\\nrepresents\\nrepress\\nrepressed\\nrepresses\\nrepressing\\nrepression\\nrepressions\\nrepressive\\nrepressurize\\nrepressurized\\nrepressurizes\\nrepressurizing\\nreprice\\nrepriced\\nreprices\\nrepricing\\nreprieve\\nreprieved\\nreprieves\\nreprieving\\nreprimand\\nreprimanded\\nreprimanding\\nreprimands\\nreprint\\nreprinted\\nreprinting\\nreprints\\nreprisal\\nreprisals\\nreprise\\nreprised\\nreprises\\nreprising\\nrepro\\nreproach\\nreproached\\nreproaches\\nreproachful\\nreproachfully\\nreproachfulness\\nreproachfulnesses\\nreproaching\\nreprobate\\nreprobates\\nreprobation\\nreprobations\\nreprobe\\nreprobed\\nreprobes\\nreprobing\\nreprocess\\nreprocessed\\nreprocesses\\nreprocessing\\nreproduce\\nreproduced\\nreproduces\\nreproducible\\nreproducing\\nreproduction\\nreproductions\\nreproductive\\nreprogram\\nreprogramed\\nreprograming\\nreprograms\\nreproof\\nreproofs\\nrepropose\\nreproposed\\nreproposes\\nreproposing\\nrepros\\nreproval\\nreprovals\\nreprove\\nreproved\\nreprover\\nreprovers\\nreproves\\nreproving\\nreps\\nreptant\\nreptile\\nreptiles\\nrepublic\\nrepublican\\nrepublicanism\\nrepublicanisms\\nrepublicans\\nrepublics\\nrepudiate\\nrepudiated\\nrepudiates\\nrepudiating\\nrepudiation\\nrepudiations\\nrepudiator\\nrepudiators\\nrepugn\\nrepugnance\\nrepugnances\\nrepugnant\\nrepugnantly\\nrepugned\\nrepugning\\nrepugns\\nrepulse\\nrepulsed\\nrepulser\\nrepulsers\\nrepulses\\nrepulsing\\nrepulsion\\nrepulsions\\nrepulsive\\nrepulsively\\nrepulsiveness\\nrepulsivenesses\\nrepurified\\nrepurifies\\nrepurify\\nrepurifying\\nrepursue\\nrepursued\\nrepursues\\nrepursuing\\nreputable\\nreputabley\\nreputation\\nreputations\\nrepute\\nreputed\\nreputedly\\nreputes\\nreputing\\nrequest\\nrequested\\nrequesting\\nrequests\\nrequiem\\nrequiems\\nrequin\\nrequins\\nrequire\\nrequired\\nrequirement\\nrequirements\\nrequirer\\nrequirers\\nrequires\\nrequiring\\nrequisite\\nrequisites\\nrequisition\\nrequisitioned\\nrequisitioning\\nrequisitions\\nrequital\\nrequitals\\nrequite\\nrequited\\nrequiter\\nrequiters\\nrequites\\nrequiting\\nreran\\nreread\\nrereading\\nrereads\\nrerecord\\nrerecorded\\nrerecording\\nrerecords\\nreredos\\nreredoses\\nreregister\\nreregistered\\nreregistering\\nreregisters\\nreremice\\nreremouse\\nrereward\\nrerewards\\nrerise\\nrerisen\\nrerises\\nrerising\\nreroll\\nrerolled\\nreroller\\nrerollers\\nrerolling\\nrerolls\\nrerose\\nreroute\\nrerouted\\nreroutes\\nrerouting\\nrerun\\nrerunning\\nreruns\\nres\\nresaddle\\nresaddled\\nresaddles\\nresaddling\\nresaid\\nresail\\nresailed\\nresailing\\nresails\\nresalable\\nresale\\nresales\\nresalute\\nresaluted\\nresalutes\\nresaluting\\nresample\\nresampled\\nresamples\\nresampling\\nresaw\\nresawed\\nresawing\\nresawn\\nresaws\\nresay\\nresaying\\nresays\\nrescale\\nrescaled\\nrescales\\nrescaling\\nreschedule\\nrescheduled\\nreschedules\\nrescheduling\\nrescind\\nrescinded\\nrescinder\\nrescinders\\nrescinding\\nrescinds\\nrescission\\nrescissions\\nrescore\\nrescored\\nrescores\\nrescoring\\nrescreen\\nrescreened\\nrescreening\\nrescreens\\nrescript\\nrescripts\\nrescue\\nrescued\\nrescuer\\nrescuers\\nrescues\\nrescuing\\nreseal\\nresealed\\nresealing\\nreseals\\nresearch\\nresearched\\nresearcher\\nresearchers\\nresearches\\nresearching\\nreseat\\nreseated\\nreseating\\nreseats\\nreseau\\nreseaus\\nreseaux\\nresect\\nresected\\nresecting\\nresects\\nreseda\\nresedas\\nresee\\nreseed\\nreseeded\\nreseeding\\nreseeds\\nreseeing\\nreseek\\nreseeking\\nreseeks\\nreseen\\nresees\\nresegregate\\nresegregated\\nresegregates\\nresegregating\\nreseize\\nreseized\\nreseizes\\nreseizing\\nresell\\nreseller\\nresellers\\nreselling\\nresells\\nresemblance\\nresemblances\\nresemble\\nresembled\\nresembles\\nresembling\\nresend\\nresending\\nresends\\nresent\\nresented\\nresentence\\nresentenced\\nresentences\\nresentencing\\nresentful\\nresentfully\\nresenting\\nresentment\\nresentments\\nresents\\nreservation\\nreservations\\nreserve\\nreserved\\nreserver\\nreservers\\nreserves\\nreserving\\nreset\\nresets\\nresetter\\nresetters\\nresetting\\nresettle\\nresettled\\nresettles\\nresettling\\nresew\\nresewed\\nresewing\\nresewn\\nresews\\nresh\\nreshape\\nreshaped\\nreshaper\\nreshapers\\nreshapes\\nreshaping\\nreshes\\nreship\\nreshipped\\nreshipping\\nreships\\nreshod\\nreshoe\\nreshoeing\\nreshoes\\nreshoot\\nreshooting\\nreshoots\\nreshot\\nreshow\\nreshowed\\nreshowing\\nreshown\\nreshows\\nresid\\nreside\\nresided\\nresidence\\nresidences\\nresident\\nresidential\\nresidents\\nresider\\nresiders\\nresides\\nresiding\\nresids\\nresidua\\nresidual\\nresiduals\\nresidue\\nresidues\\nresiduum\\nresiduums\\nresift\\nresifted\\nresifting\\nresifts\\nresign\\nresignation\\nresignations\\nresigned\\nresignedly\\nresigner\\nresigners\\nresigning\\nresigns\\nresile\\nresiled\\nresiles\\nresilience\\nresiliences\\nresiliencies\\nresiliency\\nresilient\\nresiling\\nresilver\\nresilvered\\nresilvering\\nresilvers\\nresin\\nresinate\\nresinated\\nresinates\\nresinating\\nresined\\nresinified\\nresinifies\\nresinify\\nresinifying\\nresining\\nresinoid\\nresinoids\\nresinous\\nresins\\nresiny\\nresist\\nresistable\\nresistance\\nresistances\\nresistant\\nresisted\\nresister\\nresisters\\nresistible\\nresisting\\nresistless\\nresistor\\nresistors\\nresists\\nresize\\nresized\\nresizes\\nresizing\\nresmelt\\nresmelted\\nresmelting\\nresmelts\\nresmooth\\nresmoothed\\nresmoothing\\nresmooths\\nresojet\\nresojets\\nresold\\nresolder\\nresoldered\\nresoldering\\nresolders\\nresole\\nresoled\\nresoles\\nresolidified\\nresolidifies\\nresolidify\\nresolidifying\\nresoling\\nresolute\\nresolutely\\nresoluteness\\nresolutenesses\\nresoluter\\nresolutes\\nresolutest\\nresolution\\nresolutions\\nresolvable\\nresolve\\nresolved\\nresolver\\nresolvers\\nresolves\\nresolving\\nresonance\\nresonances\\nresonant\\nresonantly\\nresonants\\nresonate\\nresonated\\nresonates\\nresonating\\nresorb\\nresorbed\\nresorbing\\nresorbs\\nresorcin\\nresorcins\\nresort\\nresorted\\nresorter\\nresorters\\nresorting\\nresorts\\nresought\\nresound\\nresounded\\nresounding\\nresoundingly\\nresounds\\nresource\\nresourceful\\nresourcefulness\\nresourcefulnesses\\nresources\\nresow\\nresowed\\nresowing\\nresown\\nresows\\nrespect\\nrespectabilities\\nrespectability\\nrespectable\\nrespectably\\nrespected\\nrespecter\\nrespecters\\nrespectful\\nrespectfully\\nrespectfulness\\nrespectfulnesses\\nrespecting\\nrespective\\nrespectively\\nrespects\\nrespell\\nrespelled\\nrespelling\\nrespells\\nrespelt\\nrespiration\\nrespirations\\nrespirator\\nrespiratories\\nrespirators\\nrespiratory\\nrespire\\nrespired\\nrespires\\nrespiring\\nrespite\\nrespited\\nrespites\\nrespiting\\nresplendence\\nresplendences\\nresplendent\\nresplendently\\nrespond\\nresponded\\nrespondent\\nrespondents\\nresponder\\nresponders\\nresponding\\nresponds\\nresponsa\\nresponse\\nresponses\\nresponsibilities\\nresponsibility\\nresponsible\\nresponsibleness\\nresponsiblenesses\\nresponsiblities\\nresponsiblity\\nresponsibly\\nresponsive\\nresponsiveness\\nresponsivenesses\\nresprang\\nrespread\\nrespreading\\nrespreads\\nrespring\\nrespringing\\nresprings\\nresprung\\nrest\\nrestack\\nrestacked\\nrestacking\\nrestacks\\nrestaff\\nrestaffed\\nrestaffing\\nrestaffs\\nrestage\\nrestaged\\nrestages\\nrestaging\\nrestamp\\nrestamped\\nrestamping\\nrestamps\\nrestart\\nrestartable\\nrestarted\\nrestarting\\nrestarts\\nrestate\\nrestated\\nrestatement\\nrestatements\\nrestates\\nrestating\\nrestaurant\\nrestaurants\\nrested\\nrester\\nresters\\nrestful\\nrestfuller\\nrestfullest\\nrestfully\\nrestimulate\\nrestimulated\\nrestimulates\\nrestimulating\\nresting\\nrestitution\\nrestitutions\\nrestive\\nrestively\\nrestiveness\\nrestivenesses\\nrestless\\nrestlessness\\nrestlessnesses\\nrestock\\nrestocked\\nrestocking\\nrestocks\\nrestorable\\nrestoral\\nrestorals\\nrestoration\\nrestorations\\nrestorative\\nrestoratives\\nrestore\\nrestored\\nrestorer\\nrestorers\\nrestores\\nrestoring\\nrestrain\\nrestrainable\\nrestrained\\nrestrainedly\\nrestrainer\\nrestrainers\\nrestraining\\nrestrains\\nrestraint\\nrestraints\\nrestricken\\nrestrict\\nrestricted\\nrestricting\\nrestriction\\nrestrictions\\nrestrictive\\nrestrictively\\nrestricts\\nrestrike\\nrestrikes\\nrestriking\\nrestring\\nrestringing\\nrestrings\\nrestrive\\nrestriven\\nrestrives\\nrestriving\\nrestrove\\nrestruck\\nrestructure\\nrestructured\\nrestructures\\nrestructuring\\nrestrung\\nrests\\nrestudied\\nrestudies\\nrestudy\\nrestudying\\nrestuff\\nrestuffed\\nrestuffing\\nrestuffs\\nrestyle\\nrestyled\\nrestyles\\nrestyling\\nresubmit\\nresubmits\\nresubmitted\\nresubmitting\\nresult\\nresultant\\nresulted\\nresulting\\nresults\\nresume\\nresumed\\nresumer\\nresumers\\nresumes\\nresuming\\nresummon\\nresummoned\\nresummoning\\nresummons\\nresumption\\nresumptions\\nresupine\\nresupplied\\nresupplies\\nresupply\\nresupplying\\nresurface\\nresurfaced\\nresurfaces\\nresurfacing\\nresurge\\nresurged\\nresurgence\\nresurgences\\nresurgent\\nresurges\\nresurging\\nresurrect\\nresurrected\\nresurrecting\\nresurrection\\nresurrections\\nresurrects\\nresurvey\\nresurveyed\\nresurveying\\nresurveys\\nresuscitate\\nresuscitated\\nresuscitates\\nresuscitating\\nresuscitation\\nresuscitations\\nresuscitator\\nresuscitators\\nresyntheses\\nresynthesis\\nresynthesize\\nresynthesized\\nresynthesizes\\nresynthesizing\\nret\\nretable\\nretables\\nretail\\nretailed\\nretailer\\nretailers\\nretailing\\nretailor\\nretailored\\nretailoring\\nretailors\\nretails\\nretain\\nretained\\nretainer\\nretainers\\nretaining\\nretains\\nretake\\nretaken\\nretaker\\nretakers\\nretakes\\nretaking\\nretaliate\\nretaliated\\nretaliates\\nretaliating\\nretaliation\\nretaliations\\nretaliatory\\nretard\\nretardation\\nretardations\\nretarded\\nretarder\\nretarders\\nretarding\\nretards\\nretaste\\nretasted\\nretastes\\nretasting\\nretaught\\nretch\\nretched\\nretches\\nretching\\nrete\\nreteach\\nreteaches\\nreteaching\\nretell\\nretelling\\nretells\\nretem\\nretems\\nretene\\nretenes\\nretention\\nretentions\\nretentive\\nretest\\nretested\\nretesting\\nretests\\nrethink\\nrethinking\\nrethinks\\nrethought\\nrethread\\nrethreaded\\nrethreading\\nrethreads\\nretia\\nretial\\nretiarii\\nretiary\\nreticence\\nreticences\\nreticent\\nreticently\\nreticle\\nreticles\\nreticula\\nreticule\\nreticules\\nretie\\nretied\\nreties\\nretiform\\nretighten\\nretightened\\nretightening\\nretightens\\nretime\\nretimed\\nretimes\\nretiming\\nretina\\nretinae\\nretinal\\nretinals\\nretinas\\nretinene\\nretinenes\\nretinite\\nretinites\\nretinol\\nretinols\\nretint\\nretinted\\nretinting\\nretints\\nretinue\\nretinued\\nretinues\\nretinula\\nretinulae\\nretinulas\\nretirant\\nretirants\\nretire\\nretired\\nretiree\\nretirees\\nretirement\\nretirements\\nretirer\\nretirers\\nretires\\nretiring\\nretitle\\nretitled\\nretitles\\nretitling\\nretold\\nretook\\nretool\\nretooled\\nretooling\\nretools\\nretort\\nretorted\\nretorter\\nretorters\\nretorting\\nretorts\\nretouch\\nretouched\\nretouches\\nretouching\\nretrace\\nretraced\\nretraces\\nretracing\\nretrack\\nretracked\\nretracking\\nretracks\\nretract\\nretractable\\nretracted\\nretracting\\nretraction\\nretractions\\nretracts\\nretrain\\nretrained\\nretraining\\nretrains\\nretral\\nretrally\\nretranslate\\nretranslated\\nretranslates\\nretranslating\\nretransmit\\nretransmited\\nretransmiting\\nretransmits\\nretransplant\\nretransplanted\\nretransplanting\\nretransplants\\nretread\\nretreaded\\nretreading\\nretreads\\nretreat\\nretreated\\nretreating\\nretreatment\\nretreats\\nretrench\\nretrenched\\nretrenches\\nretrenching\\nretrenchment\\nretrenchments\\nretrial\\nretrials\\nretribution\\nretributions\\nretributive\\nretributory\\nretried\\nretries\\nretrievabilities\\nretrievability\\nretrievable\\nretrieval\\nretrievals\\nretrieve\\nretrieved\\nretriever\\nretrievers\\nretrieves\\nretrieving\\nretrim\\nretrimmed\\nretrimming\\nretrims\\nretroact\\nretroacted\\nretroacting\\nretroactive\\nretroactively\\nretroacts\\nretrofit\\nretrofits\\nretrofitted\\nretrofitting\\nretrograde\\nretrogress\\nretrogressed\\nretrogresses\\nretrogressing\\nretrogression\\nretrogressions\\nretrorse\\nretrospect\\nretrospection\\nretrospections\\nretrospective\\nretrospectively\\nretrospectives\\nretry\\nretrying\\nrets\\nretsina\\nretsinas\\nretted\\nretting\\nretune\\nretuned\\nretunes\\nretuning\\nreturn\\nreturnable\\nreturned\\nreturnee\\nreturnees\\nreturner\\nreturners\\nreturning\\nreturns\\nretuse\\nretwist\\nretwisted\\nretwisting\\nretwists\\nretying\\nretype\\nretyped\\nretypes\\nretyping\\nreunified\\nreunifies\\nreunify\\nreunifying\\nreunion\\nreunions\\nreunite\\nreunited\\nreuniter\\nreuniters\\nreunites\\nreuniting\\nreupholster\\nreupholstered\\nreupholstering\\nreupholsters\\nreusable\\nreuse\\nreused\\nreuses\\nreusing\\nreutter\\nreuttered\\nreuttering\\nreutters\\nrev\\nrevaccinate\\nrevaccinated\\nrevaccinates\\nrevaccinating\\nrevaccination\\nrevaccinations\\nrevalue\\nrevalued\\nrevalues\\nrevaluing\\nrevamp\\nrevamped\\nrevamper\\nrevampers\\nrevamping\\nrevamps\\nrevanche\\nrevanches\\nreveal\\nrevealed\\nrevealer\\nrevealers\\nrevealing\\nreveals\\nrevehent\\nreveille\\nreveilles\\nrevel\\nrevelation\\nrevelations\\nreveled\\nreveler\\nrevelers\\nreveling\\nrevelled\\nreveller\\nrevellers\\nrevelling\\nrevelries\\nrevelry\\nrevels\\nrevenant\\nrevenants\\nrevenge\\nrevenged\\nrevengeful\\nrevenger\\nrevengers\\nrevenges\\nrevenging\\nrevenual\\nrevenue\\nrevenued\\nrevenuer\\nrevenuers\\nrevenues\\nreverb\\nreverberate\\nreverberated\\nreverberates\\nreverberating\\nreverberation\\nreverberations\\nreverbs\\nrevere\\nrevered\\nreverence\\nreverences\\nreverend\\nreverends\\nreverent\\nreverer\\nreverers\\nreveres\\nreverie\\nreveries\\nreverified\\nreverifies\\nreverify\\nreverifying\\nrevering\\nrevers\\nreversal\\nreversals\\nreverse\\nreversed\\nreversely\\nreverser\\nreversers\\nreverses\\nreversible\\nreversing\\nreversion\\nreverso\\nreversos\\nrevert\\nreverted\\nreverter\\nreverters\\nreverting\\nreverts\\nrevery\\nrevest\\nrevested\\nrevesting\\nrevests\\nrevet\\nrevets\\nrevetted\\nrevetting\\nreview\\nreviewal\\nreviewals\\nreviewed\\nreviewer\\nreviewers\\nreviewing\\nreviews\\nrevile\\nreviled\\nrevilement\\nrevilements\\nreviler\\nrevilers\\nreviles\\nreviling\\nrevisable\\nrevisal\\nrevisals\\nrevise\\nrevised\\nreviser\\nrevisers\\nrevises\\nrevising\\nrevision\\nrevisions\\nrevisit\\nrevisited\\nrevisiting\\nrevisits\\nrevisor\\nrevisors\\nrevisory\\nrevival\\nrevivals\\nrevive\\nrevived\\nreviver\\nrevivers\\nrevives\\nrevivified\\nrevivifies\\nrevivify\\nrevivifying\\nreviving\\nrevocation\\nrevocations\\nrevoice\\nrevoiced\\nrevoices\\nrevoicing\\nrevoke\\nrevoked\\nrevoker\\nrevokers\\nrevokes\\nrevoking\\nrevolt\\nrevolted\\nrevolter\\nrevolters\\nrevolting\\nrevolts\\nrevolute\\nrevolution\\nrevolutionaries\\nrevolutionary\\nrevolutionize\\nrevolutionized\\nrevolutionizer\\nrevolutionizers\\nrevolutionizes\\nrevolutionizing\\nrevolutions\\nrevolvable\\nrevolve\\nrevolved\\nrevolver\\nrevolvers\\nrevolves\\nrevolving\\nrevs\\nrevue\\nrevues\\nrevuist\\nrevuists\\nrevulsed\\nrevulsion\\nrevulsions\\nrevved\\nrevving\\nrewake\\nrewaked\\nrewaken\\nrewakened\\nrewakening\\nrewakens\\nrewakes\\nrewaking\\nrewan\\nreward\\nrewarded\\nrewarder\\nrewarders\\nrewarding\\nrewards\\nrewarm\\nrewarmed\\nrewarming\\nrewarms\\nrewash\\nrewashed\\nrewashes\\nrewashing\\nrewax\\nrewaxed\\nrewaxes\\nrewaxing\\nreweave\\nreweaved\\nreweaves\\nreweaving\\nrewed\\nreweigh\\nreweighed\\nreweighing\\nreweighs\\nreweld\\nrewelded\\nrewelding\\nrewelds\\nrewiden\\nrewidened\\nrewidening\\nrewidens\\nrewin\\nrewind\\nrewinded\\nrewinder\\nrewinders\\nrewinding\\nrewinds\\nrewinning\\nrewins\\nrewire\\nrewired\\nrewires\\nrewiring\\nrewoke\\nrewoken\\nrewon\\nreword\\nreworded\\nrewording\\nrewords\\nrework\\nreworked\\nreworking\\nreworks\\nrewound\\nrewove\\nrewoven\\nrewrap\\nrewrapped\\nrewrapping\\nrewraps\\nrewrapt\\nrewrite\\nrewriter\\nrewriters\\nrewrites\\nrewriting\\nrewritten\\nrewrote\\nrewrought\\nrex\\nrexes\\nreynard\\nreynards\\nrezone\\nrezoned\\nrezones\\nrezoning\\nrhabdom\\nrhabdome\\nrhabdomes\\nrhabdoms\\nrhachides\\nrhachis\\nrhachises\\nrhamnose\\nrhamnoses\\nrhamnus\\nrhamnuses\\nrhaphae\\nrhaphe\\nrhaphes\\nrhapsode\\nrhapsodes\\nrhapsodic\\nrhapsodically\\nrhapsodies\\nrhapsodize\\nrhapsodized\\nrhapsodizes\\nrhapsodizing\\nrhapsody\\nrhatanies\\nrhatany\\nrhea\\nrheas\\nrhebok\\nrheboks\\nrhematic\\nrhenium\\nrheniums\\nrheobase\\nrheobases\\nrheologies\\nrheology\\nrheophil\\nrheostat\\nrheostats\\nrhesus\\nrhesuses\\nrhetor\\nrhetoric\\nrhetorical\\nrhetorician\\nrhetoricians\\nrhetorics\\nrhetors\\nrheum\\nrheumatic\\nrheumatism\\nrheumatisms\\nrheumic\\nrheumier\\nrheumiest\\nrheums\\nrheumy\\nrhinal\\nrhinestone\\nrhinestones\\nrhinitides\\nrhinitis\\nrhino\\nrhinoceri\\nrhinoceros\\nrhinoceroses\\nrhinos\\nrhizobia\\nrhizoid\\nrhizoids\\nrhizoma\\nrhizomata\\nrhizome\\nrhizomes\\nrhizomic\\nrhizopi\\nrhizopod\\nrhizopods\\nrhizopus\\nrhizopuses\\nrho\\nrhodamin\\nrhodamins\\nrhodic\\nrhodium\\nrhodiums\\nrhododendron\\nrhododendrons\\nrhodora\\nrhodoras\\nrhomb\\nrhombi\\nrhombic\\nrhomboid\\nrhomboids\\nrhombs\\nrhombus\\nrhombuses\\nrhonchal\\nrhonchi\\nrhonchus\\nrhos\\nrhubarb\\nrhubarbs\\nrhumb\\nrhumba\\nrhumbaed\\nrhumbaing\\nrhumbas\\nrhumbs\\nrhus\\nrhuses\\nrhyme\\nrhymed\\nrhymer\\nrhymers\\nrhymes\\nrhyming\\nrhyolite\\nrhyolites\\nrhyta\\nrhythm\\nrhythmic\\nrhythmical\\nrhythmically\\nrhythmics\\nrhythms\\nrhyton\\nrial\\nrials\\nrialto\\nrialtos\\nriant\\nriantly\\nriata\\nriatas\\nrib\\nribald\\nribaldly\\nribaldries\\nribaldry\\nribalds\\nriband\\nribands\\nribband\\nribbands\\nribbed\\nribber\\nribbers\\nribbier\\nribbiest\\nribbing\\nribbings\\nribbon\\nribboned\\nribboning\\nribbons\\nribbony\\nribby\\nribes\\nribgrass\\nribgrasses\\nribless\\nriblet\\nriblets\\nriblike\\nriboflavin\\nriboflavins\\nribose\\nriboses\\nribosome\\nribosomes\\nribs\\nribwort\\nribworts\\nrice\\nricebird\\nricebirds\\nriced\\nricer\\nricercar\\nricercars\\nricers\\nrices\\nrich\\nrichen\\nrichened\\nrichening\\nrichens\\nricher\\nriches\\nrichest\\nrichly\\nrichness\\nrichnesses\\nrichweed\\nrichweeds\\nricin\\nricing\\nricins\\nricinus\\nricinuses\\nrick\\nricked\\nricketier\\nricketiest\\nrickets\\nrickety\\nrickey\\nrickeys\\nricking\\nrickrack\\nrickracks\\nricks\\nricksha\\nrickshas\\nrickshaw\\nrickshaws\\nricochet\\nricocheted\\nricocheting\\nricochets\\nricochetted\\nricochetting\\nricotta\\nricottas\\nricrac\\nricracs\\nrictal\\nrictus\\nrictuses\\nrid\\nridable\\nriddance\\nriddances\\nridded\\nridden\\nridder\\nridders\\nridding\\nriddle\\nriddled\\nriddler\\nriddlers\\nriddles\\nriddling\\nride\\nrideable\\nrident\\nrider\\nriderless\\nriders\\nrides\\nridge\\nridged\\nridgel\\nridgels\\nridges\\nridgier\\nridgiest\\nridgil\\nridgils\\nridging\\nridgling\\nridglings\\nridgy\\nridicule\\nridiculed\\nridicules\\nridiculing\\nridiculous\\nridiculously\\nridiculousness\\nridiculousnesses\\nriding\\nridings\\nridley\\nridleys\\nridotto\\nridottos\\nrids\\nriel\\nriels\\nriever\\nrievers\\nrife\\nrifely\\nrifeness\\nrifenesses\\nrifer\\nrifest\\nriff\\nriffed\\nriffing\\nriffle\\nriffled\\nriffler\\nrifflers\\nriffles\\nriffling\\nriffraff\\nriffraffs\\nriffs\\nrifle\\nrifled\\nrifleman\\nriflemen\\nrifler\\nrifleries\\nriflers\\nriflery\\nrifles\\nrifling\\nriflings\\nrift\\nrifted\\nrifting\\nriftless\\nrifts\\nrig\\nrigadoon\\nrigadoons\\nrigatoni\\nrigatonis\\nrigaudon\\nrigaudons\\nrigged\\nrigger\\nriggers\\nrigging\\nriggings\\nright\\nrighted\\nrighteous\\nrighteously\\nrighteousness\\nrighteousnesses\\nrighter\\nrighters\\nrightest\\nrightful\\nrightfully\\nrightfulness\\nrightfulnesses\\nrighties\\nrighting\\nrightism\\nrightisms\\nrightist\\nrightists\\nrightly\\nrightness\\nrightnesses\\nrighto\\nrights\\nrightward\\nrighty\\nrigid\\nrigidified\\nrigidifies\\nrigidify\\nrigidifying\\nrigidities\\nrigidity\\nrigidly\\nrigmarole\\nrigmaroles\\nrigor\\nrigorism\\nrigorisms\\nrigorist\\nrigorists\\nrigorous\\nrigorously\\nrigors\\nrigour\\nrigours\\nrigs\\nrikisha\\nrikishas\\nrikshaw\\nrikshaws\\nrile\\nriled\\nriles\\nriley\\nrilievi\\nrilievo\\nriling\\nrill\\nrille\\nrilled\\nrilles\\nrillet\\nrillets\\nrilling\\nrills\\nrilly\\nrim\\nrime\\nrimed\\nrimer\\nrimers\\nrimes\\nrimester\\nrimesters\\nrimfire\\nrimier\\nrimiest\\nriming\\nrimland\\nrimlands\\nrimless\\nrimmed\\nrimmer\\nrimmers\\nrimming\\nrimose\\nrimosely\\nrimosities\\nrimosity\\nrimous\\nrimple\\nrimpled\\nrimples\\nrimpling\\nrimrock\\nrimrocks\\nrims\\nrimy\\nrin\\nrind\\nrinded\\nrinds\\nring\\nringbark\\nringbarked\\nringbarking\\nringbarks\\nringbolt\\nringbolts\\nringbone\\nringbones\\nringdove\\nringdoves\\nringed\\nringent\\nringer\\nringers\\nringhals\\nringhalses\\nringing\\nringleader\\nringlet\\nringlets\\nringlike\\nringneck\\nringnecks\\nrings\\nringside\\nringsides\\nringtail\\nringtails\\nringtaw\\nringtaws\\nringtoss\\nringtosses\\nringworm\\nringworms\\nrink\\nrinks\\nrinning\\nrins\\nrinsable\\nrinse\\nrinsed\\nrinser\\nrinsers\\nrinses\\nrinsible\\nrinsing\\nrinsings\\nriot\\nrioted\\nrioter\\nrioters\\nrioting\\nriotous\\nriots\\nrip\\nriparian\\nripcord\\nripcords\\nripe\\nriped\\nripely\\nripen\\nripened\\nripener\\nripeners\\nripeness\\nripenesses\\nripening\\nripens\\nriper\\nripes\\nripest\\nripieni\\nripieno\\nripienos\\nriping\\nripost\\nriposte\\nriposted\\nripostes\\nriposting\\nriposts\\nrippable\\nripped\\nripper\\nrippers\\nripping\\nripple\\nrippled\\nrippler\\nripplers\\nripples\\nripplet\\nripplets\\nripplier\\nrippliest\\nrippling\\nripply\\nriprap\\nriprapped\\nriprapping\\nripraps\\nrips\\nripsaw\\nripsaws\\nriptide\\nriptides\\nrise\\nrisen\\nriser\\nrisers\\nrises\\nrishi\\nrishis\\nrisibilities\\nrisibility\\nrisible\\nrisibles\\nrisibly\\nrising\\nrisings\\nrisk\\nrisked\\nrisker\\nriskers\\nriskier\\nriskiest\\nriskily\\nriskiness\\nriskinesses\\nrisking\\nrisks\\nrisky\\nrisotto\\nrisottos\\nrisque\\nrissole\\nrissoles\\nrisus\\nrisuses\\nritard\\nritards\\nrite\\nrites\\nritter\\nritters\\nritual\\nritualism\\nritualisms\\nritualistic\\nritualistically\\nritually\\nrituals\\nritz\\nritzes\\nritzier\\nritziest\\nritzily\\nritzy\\nrivage\\nrivages\\nrival\\nrivaled\\nrivaling\\nrivalled\\nrivalling\\nrivalries\\nrivalry\\nrivals\\nrive\\nrived\\nriven\\nriver\\nriverbank\\nriverbanks\\nriverbed\\nriverbeds\\nriverboat\\nriverboats\\nriverine\\nrivers\\nriverside\\nriversides\\nrives\\nrivet\\nriveted\\nriveter\\nriveters\\nriveting\\nrivets\\nrivetted\\nrivetting\\nriviera\\nrivieras\\nriviere\\nrivieres\\nriving\\nrivulet\\nrivulets\\nriyal\\nriyals\\nroach\\nroached\\nroaches\\nroaching\\nroad\\nroadbed\\nroadbeds\\nroadblock\\nroadblocks\\nroadless\\nroadrunner\\nroadrunners\\nroads\\nroadside\\nroadsides\\nroadster\\nroadsters\\nroadway\\nroadways\\nroadwork\\nroadworks\\nroam\\nroamed\\nroamer\\nroamers\\nroaming\\nroams\\nroan\\nroans\\nroar\\nroared\\nroarer\\nroarers\\nroaring\\nroarings\\nroars\\nroast\\nroasted\\nroaster\\nroasters\\nroasting\\nroasts\\nrob\\nrobalo\\nrobalos\\nroband\\nrobands\\nrobbed\\nrobber\\nrobberies\\nrobbers\\nrobbery\\nrobbin\\nrobbing\\nrobbins\\nrobe\\nrobed\\nrobes\\nrobin\\nrobing\\nrobins\\nroble\\nrobles\\nroborant\\nroborants\\nrobot\\nrobotics\\nrobotism\\nrobotisms\\nrobotize\\nrobotized\\nrobotizes\\nrobotizing\\nrobotries\\nrobotry\\nrobots\\nrobs\\nrobust\\nrobuster\\nrobustest\\nrobustly\\nrobustness\\nrobustnesses\\nroc\\nrochet\\nrochets\\nrock\\nrockabies\\nrockaby\\nrockabye\\nrockabyes\\nrockaway\\nrockaways\\nrocked\\nrocker\\nrockeries\\nrockers\\nrockery\\nrocket\\nrocketed\\nrocketer\\nrocketers\\nrocketing\\nrocketries\\nrocketry\\nrockets\\nrockfall\\nrockfalls\\nrockfish\\nrockfishes\\nrockier\\nrockiest\\nrocking\\nrockless\\nrocklike\\nrockling\\nrocklings\\nrockoon\\nrockoons\\nrockrose\\nrockroses\\nrocks\\nrockweed\\nrockweeds\\nrockwork\\nrockworks\\nrocky\\nrococo\\nrococos\\nrocs\\nrod\\nrodded\\nrodding\\nrode\\nrodent\\nrodents\\nrodeo\\nrodeos\\nrodless\\nrodlike\\nrodman\\nrodmen\\nrods\\nrodsman\\nrodsmen\\nroe\\nroebuck\\nroebucks\\nroentgen\\nroentgens\\nroes\\nrogation\\nrogations\\nrogatory\\nroger\\nrogers\\nrogue\\nrogued\\nrogueing\\nrogueries\\nroguery\\nrogues\\nroguing\\nroguish\\nroguishly\\nroguishness\\nroguishnesses\\nroil\\nroiled\\nroilier\\nroiliest\\nroiling\\nroils\\nroily\\nroister\\nroistered\\nroistering\\nroisters\\nrolamite\\nrolamites\\nrole\\nroles\\nroll\\nrollaway\\nrollback\\nrollbacks\\nrolled\\nroller\\nrollers\\nrollick\\nrollicked\\nrollicking\\nrollicks\\nrollicky\\nrolling\\nrollings\\nrollmop\\nrollmops\\nrollout\\nrollouts\\nrollover\\nrollovers\\nrolls\\nrolltop\\nrollway\\nrollways\\nromaine\\nromaines\\nroman\\nromance\\nromanced\\nromancer\\nromancers\\nromances\\nromancing\\nromanize\\nromanized\\nromanizes\\nromanizing\\nromano\\nromanos\\nromans\\nromantic\\nromantically\\nromantics\\nromaunt\\nromaunts\\nromp\\nromped\\nromper\\nrompers\\nromping\\nrompish\\nromps\\nrondeau\\nrondeaux\\nrondel\\nrondelet\\nrondelets\\nrondelle\\nrondelles\\nrondels\\nrondo\\nrondos\\nrondure\\nrondures\\nronion\\nronions\\nronnel\\nronnels\\nrontgen\\nrontgens\\nronyon\\nronyons\\nrood\\nroods\\nroof\\nroofed\\nroofer\\nroofers\\nroofing\\nroofings\\nroofless\\nrooflike\\nroofline\\nrooflines\\nroofs\\nrooftop\\nrooftops\\nrooftree\\nrooftrees\\nrook\\nrooked\\nrookeries\\nrookery\\nrookie\\nrookier\\nrookies\\nrookiest\\nrooking\\nrooks\\nrooky\\nroom\\nroomed\\nroomer\\nroomers\\nroomette\\nroomettes\\nroomful\\nroomfuls\\nroomier\\nroomiest\\nroomily\\nrooming\\nroommate\\nroommates\\nrooms\\nroomy\\nroorback\\nroorbacks\\nroose\\nroosed\\nrooser\\nroosers\\nrooses\\nroosing\\nroost\\nroosted\\nrooster\\nroosters\\nroosting\\nroosts\\nroot\\nrootage\\nrootages\\nrooted\\nrooter\\nrooters\\nroothold\\nrootholds\\nrootier\\nrootiest\\nrooting\\nrootless\\nrootlet\\nrootlets\\nrootlike\\nroots\\nrooty\\nropable\\nrope\\nroped\\nroper\\nroperies\\nropers\\nropery\\nropes\\nropewalk\\nropewalks\\nropeway\\nropeways\\nropier\\nropiest\\nropily\\nropiness\\nropinesses\\nroping\\nropy\\nroque\\nroques\\nroquet\\nroqueted\\nroqueting\\nroquets\\nrorqual\\nrorquals\\nrosaria\\nrosarian\\nrosarians\\nrosaries\\nrosarium\\nrosariums\\nrosary\\nroscoe\\nroscoes\\nrose\\nroseate\\nrosebay\\nrosebays\\nrosebud\\nrosebuds\\nrosebush\\nrosebushes\\nrosed\\nrosefish\\nrosefishes\\nroselike\\nroselle\\nroselles\\nrosemaries\\nrosemary\\nroseola\\nroseolar\\nroseolas\\nroser\\nroseries\\nroseroot\\nroseroots\\nrosery\\nroses\\nroset\\nrosets\\nrosette\\nrosettes\\nrosewater\\nrosewood\\nrosewoods\\nrosier\\nrosiest\\nrosily\\nrosin\\nrosined\\nrosiness\\nrosinesses\\nrosing\\nrosining\\nrosinous\\nrosins\\nrosiny\\nroslindale\\nrosolio\\nrosolios\\nrostella\\nroster\\nrosters\\nrostra\\nrostral\\nrostrate\\nrostrum\\nrostrums\\nrosulate\\nrosy\\nrot\\nrota\\nrotaries\\nrotary\\nrotas\\nrotate\\nrotated\\nrotates\\nrotating\\nrotation\\nrotations\\nrotative\\nrotator\\nrotatores\\nrotators\\nrotatory\\nrotch\\nrotche\\nrotches\\nrote\\nrotenone\\nrotenones\\nrotes\\nrotgut\\nrotguts\\nrotifer\\nrotifers\\nrotiform\\nrotl\\nrotls\\nroto\\nrotor\\nrotors\\nrotos\\nrototill\\nrototilled\\nrototilling\\nrototills\\nrots\\nrotted\\nrotten\\nrottener\\nrottenest\\nrottenly\\nrottenness\\nrottennesses\\nrotter\\nrotters\\nrotting\\nrotund\\nrotunda\\nrotundas\\nrotundly\\nroturier\\nroturiers\\nrouble\\nroubles\\nrouche\\nrouches\\nroue\\nrouen\\nrouens\\nroues\\nrouge\\nrouged\\nrouges\\nrough\\nroughage\\nroughages\\nroughdried\\nroughdries\\nroughdry\\nroughdrying\\nroughed\\nroughen\\nroughened\\nroughening\\nroughens\\nrougher\\nroughers\\nroughest\\nroughhew\\nroughhewed\\nroughhewing\\nroughhewn\\nroughhews\\nroughing\\nroughish\\nroughleg\\nroughlegs\\nroughly\\nroughneck\\nroughnecks\\nroughness\\nroughnesses\\nroughs\\nrouging\\nroulade\\nroulades\\nrouleau\\nrouleaus\\nrouleaux\\nroulette\\nrouletted\\nroulettes\\nrouletting\\nround\\nroundabout\\nrounded\\nroundel\\nroundels\\nrounder\\nrounders\\nroundest\\nrounding\\nroundish\\nroundlet\\nroundlets\\nroundly\\nroundness\\nroundnesses\\nrounds\\nroundup\\nroundups\\nroup\\nrouped\\nroupet\\nroupier\\nroupiest\\nroupily\\nrouping\\nroups\\nroupy\\nrouse\\nroused\\nrouser\\nrousers\\nrouses\\nrousing\\nrousseau\\nrousseaus\\nroust\\nrousted\\nrouster\\nrousters\\nrousting\\nrousts\\nrout\\nroute\\nrouted\\nrouteman\\nroutemen\\nrouter\\nrouters\\nroutes\\nrouteway\\nrouteways\\nrouth\\nrouths\\nroutine\\nroutinely\\nroutines\\nrouting\\nrouts\\nroux\\nrove\\nroved\\nroven\\nrover\\nrovers\\nroves\\nroving\\nrovingly\\nrovings\\nrow\\nrowable\\nrowan\\nrowans\\nrowboat\\nrowboats\\nrowdier\\nrowdies\\nrowdiest\\nrowdily\\nrowdiness\\nrowdinesses\\nrowdy\\nrowdyish\\nrowdyism\\nrowdyisms\\nrowed\\nrowel\\nroweled\\nroweling\\nrowelled\\nrowelling\\nrowels\\nrowen\\nrowens\\nrower\\nrowers\\nrowing\\nrowings\\nrowlock\\nrowlocks\\nrows\\nrowth\\nrowths\\nroyal\\nroyalism\\nroyalisms\\nroyalist\\nroyalists\\nroyally\\nroyals\\nroyalties\\nroyalty\\nroyster\\nroystered\\nroystering\\nroysters\\nrozzer\\nrozzers\\nrub\\nrubaboo\\nrubaboos\\nrubace\\nrubaces\\nrubaiyat\\nrubasse\\nrubasses\\nrubato\\nrubatos\\nrubbaboo\\nrubbaboos\\nrubbed\\nrubber\\nrubberize\\nrubberized\\nrubberizes\\nrubberizing\\nrubbers\\nrubbery\\nrubbing\\nrubbings\\nrubbish\\nrubbishes\\nrubbishy\\nrubble\\nrubbled\\nrubbles\\nrubblier\\nrubbliest\\nrubbling\\nrubbly\\nrubdown\\nrubdowns\\nrube\\nrubella\\nrubellas\\nrubeola\\nrubeolar\\nrubeolas\\nrubes\\nrubicund\\nrubidic\\nrubidium\\nrubidiums\\nrubied\\nrubier\\nrubies\\nrubiest\\nrubigo\\nrubigos\\nruble\\nrubles\\nrubric\\nrubrical\\nrubrics\\nrubs\\nrubus\\nruby\\nrubying\\nrubylike\\nruche\\nruches\\nruching\\nruchings\\nruck\\nrucked\\nrucking\\nrucks\\nrucksack\\nrucksacks\\nruckus\\nruckuses\\nruction\\nructions\\nructious\\nrudd\\nrudder\\nrudders\\nruddier\\nruddiest\\nruddily\\nruddiness\\nruddinesses\\nruddle\\nruddled\\nruddles\\nruddling\\nruddock\\nruddocks\\nrudds\\nruddy\\nrude\\nrudely\\nrudeness\\nrudenesses\\nruder\\nruderal\\nruderals\\nrudesbies\\nrudesby\\nrudest\\nrudiment\\nrudimentary\\nrudiments\\nrue\\nrued\\nrueful\\nruefully\\nruefulness\\nruefulnesses\\nruer\\nruers\\nrues\\nruff\\nruffe\\nruffed\\nruffes\\nruffian\\nruffians\\nruffing\\nruffle\\nruffled\\nruffler\\nrufflers\\nruffles\\nrufflike\\nruffling\\nruffly\\nruffs\\nrufous\\nrug\\nruga\\nrugae\\nrugal\\nrugate\\nrugbies\\nrugby\\nrugged\\nruggeder\\nruggedest\\nruggedly\\nruggedness\\nruggednesses\\nrugger\\nruggers\\nrugging\\nruglike\\nrugose\\nrugosely\\nrugosities\\nrugosity\\nrugous\\nrugs\\nrugulose\\nruin\\nruinable\\nruinate\\nruinated\\nruinates\\nruinating\\nruined\\nruiner\\nruiners\\nruing\\nruining\\nruinous\\nruinously\\nruins\\nrulable\\nrule\\nruled\\nruleless\\nruler\\nrulers\\nrules\\nruling\\nrulings\\nrum\\nrumba\\nrumbaed\\nrumbaing\\nrumbas\\nrumble\\nrumbled\\nrumbler\\nrumblers\\nrumbles\\nrumbling\\nrumblings\\nrumbly\\nrumen\\nrumens\\nrumina\\nruminal\\nruminant\\nruminants\\nruminate\\nruminated\\nruminates\\nruminating\\nrummage\\nrummaged\\nrummager\\nrummagers\\nrummages\\nrummaging\\nrummer\\nrummers\\nrummest\\nrummier\\nrummies\\nrummiest\\nrummy\\nrumor\\nrumored\\nrumoring\\nrumors\\nrumour\\nrumoured\\nrumouring\\nrumours\\nrump\\nrumple\\nrumpled\\nrumples\\nrumpless\\nrumplier\\nrumpliest\\nrumpling\\nrumply\\nrumps\\nrumpus\\nrumpuses\\nrums\\nrun\\nrunabout\\nrunabouts\\nrunagate\\nrunagates\\nrunaround\\nrunarounds\\nrunaway\\nrunaways\\nrunback\\nrunbacks\\nrundle\\nrundles\\nrundlet\\nrundlets\\nrundown\\nrundowns\\nrune\\nrunelike\\nrunes\\nrung\\nrungless\\nrungs\\nrunic\\nrunkle\\nrunkled\\nrunkles\\nrunkling\\nrunless\\nrunlet\\nrunlets\\nrunnel\\nrunnels\\nrunner\\nrunners\\nrunnier\\nrunniest\\nrunning\\nrunnings\\nrunny\\nrunoff\\nrunoffs\\nrunout\\nrunouts\\nrunover\\nrunovers\\nrunround\\nrunrounds\\nruns\\nrunt\\nruntier\\nruntiest\\nruntish\\nrunts\\nrunty\\nrunway\\nrunways\\nrupee\\nrupees\\nrupiah\\nrupiahs\\nrupture\\nruptured\\nruptures\\nrupturing\\nrural\\nruralise\\nruralised\\nruralises\\nruralising\\nruralism\\nruralisms\\nruralist\\nruralists\\nruralite\\nruralites\\nruralities\\nrurality\\nruralize\\nruralized\\nruralizes\\nruralizing\\nrurally\\nrurban\\nruse\\nruses\\nrush\\nrushed\\nrushee\\nrushees\\nrusher\\nrushers\\nrushes\\nrushier\\nrushiest\\nrushing\\nrushings\\nrushlike\\nrushy\\nrusine\\nrusk\\nrusks\\nrusset\\nrussets\\nrussety\\nrussified\\nrussifies\\nrussify\\nrussifying\\nrust\\nrustable\\nrusted\\nrustic\\nrustical\\nrustically\\nrusticities\\nrusticity\\nrusticly\\nrustics\\nrustier\\nrustiest\\nrustily\\nrusting\\nrustle\\nrustled\\nrustler\\nrustlers\\nrustles\\nrustless\\nrustling\\nrusts\\nrusty\\nrut\\nrutabaga\\nrutabagas\\nruth\\nruthenic\\nruthful\\nruthless\\nruthlessly\\nruthlessness\\nruthlessnesses\\nruths\\nrutilant\\nrutile\\nrutiles\\nruts\\nrutted\\nruttier\\nruttiest\\nruttily\\nrutting\\nruttish\\nrutty\\nrya\\nryas\\nrye\\nryegrass\\nryegrasses\\nryes\\nryke\\nryked\\nrykes\\nryking\\nrynd\\nrynds\\nryot\\nryots\\nsab\\nsabaton\\nsabatons\\nsabbat\\nsabbath\\nsabbaths\\nsabbatic\\nsabbats\\nsabbed\\nsabbing\\nsabe\\nsabed\\nsabeing\\nsaber\\nsabered\\nsabering\\nsabers\\nsabes\\nsabin\\nsabine\\nsabines\\nsabins\\nsabir\\nsabirs\\nsable\\nsables\\nsabot\\nsabotage\\nsabotaged\\nsabotages\\nsabotaging\\nsaboteur\\nsaboteurs\\nsabots\\nsabra\\nsabras\\nsabre\\nsabred\\nsabres\\nsabring\\nsabs\\nsabulose\\nsabulous\\nsac\\nsacaton\\nsacatons\\nsacbut\\nsacbuts\\nsaccade\\nsaccades\\nsaccadic\\nsaccate\\nsaccharin\\nsaccharine\\nsaccharins\\nsaccular\\nsaccule\\nsaccules\\nsacculi\\nsacculus\\nsachem\\nsachemic\\nsachems\\nsachet\\nsacheted\\nsachets\\nsack\\nsackbut\\nsackbuts\\nsackcloth\\nsackcloths\\nsacked\\nsacker\\nsackers\\nsackful\\nsackfuls\\nsacking\\nsackings\\nsacklike\\nsacks\\nsacksful\\nsaclike\\nsacque\\nsacques\\nsacra\\nsacral\\nsacrals\\nsacrament\\nsacramental\\nsacraments\\nsacraria\\nsacred\\nsacredly\\nsacrifice\\nsacrificed\\nsacrifices\\nsacrificial\\nsacrificially\\nsacrificing\\nsacrilege\\nsacrileges\\nsacrilegious\\nsacrilegiously\\nsacrist\\nsacristies\\nsacrists\\nsacristy\\nsacrosanct\\nsacrum\\nsacs\\nsad\\nsadden\\nsaddened\\nsaddening\\nsaddens\\nsadder\\nsaddest\\nsaddhu\\nsaddhus\\nsaddle\\nsaddled\\nsaddler\\nsaddleries\\nsaddlers\\nsaddlery\\nsaddles\\nsaddling\\nsade\\nsades\\nsadhe\\nsadhes\\nsadhu\\nsadhus\\nsadi\\nsadiron\\nsadirons\\nsadis\\nsadism\\nsadisms\\nsadist\\nsadistic\\nsadistically\\nsadists\\nsadly\\nsadness\\nsadnesses\\nsae\\nsafari\\nsafaried\\nsafariing\\nsafaris\\nsafe\\nsafeguard\\nsafeguarded\\nsafeguarding\\nsafeguards\\nsafekeeping\\nsafekeepings\\nsafely\\nsafeness\\nsafenesses\\nsafer\\nsafes\\nsafest\\nsafetied\\nsafeties\\nsafety\\nsafetying\\nsafflower\\nsafflowers\\nsaffron\\nsaffrons\\nsafranin\\nsafranins\\nsafrol\\nsafrole\\nsafroles\\nsafrols\\nsag\\nsaga\\nsagacious\\nsagacities\\nsagacity\\nsagaman\\nsagamen\\nsagamore\\nsagamores\\nsaganash\\nsaganashes\\nsagas\\nsagbut\\nsagbuts\\nsage\\nsagebrush\\nsagebrushes\\nsagely\\nsageness\\nsagenesses\\nsager\\nsages\\nsagest\\nsaggar\\nsaggard\\nsaggards\\nsaggared\\nsaggaring\\nsaggars\\nsagged\\nsagger\\nsaggered\\nsaggering\\nsaggers\\nsagging\\nsagier\\nsagiest\\nsagittal\\nsago\\nsagos\\nsags\\nsaguaro\\nsaguaros\\nsagum\\nsagy\\nsahib\\nsahibs\\nsahiwal\\nsahiwals\\nsahuaro\\nsahuaros\\nsaice\\nsaices\\nsaid\\nsaids\\nsaiga\\nsaigas\\nsail\\nsailable\\nsailboat\\nsailboats\\nsailed\\nsailer\\nsailers\\nsailfish\\nsailfishes\\nsailing\\nsailings\\nsailor\\nsailorly\\nsailors\\nsails\\nsain\\nsained\\nsainfoin\\nsainfoins\\nsaining\\nsains\\nsaint\\nsaintdom\\nsaintdoms\\nsainted\\nsainthood\\nsainthoods\\nsainting\\nsaintlier\\nsaintliest\\nsaintliness\\nsaintlinesses\\nsaintly\\nsaints\\nsaith\\nsaithe\\nsaiyid\\nsaiyids\\nsajou\\nsajous\\nsake\\nsaker\\nsakers\\nsakes\\nsaki\\nsakis\\nsal\\nsalaam\\nsalaamed\\nsalaaming\\nsalaams\\nsalable\\nsalably\\nsalacious\\nsalacities\\nsalacity\\nsalad\\nsaladang\\nsaladangs\\nsalads\\nsalamander\\nsalamanders\\nsalami\\nsalamis\\nsalariat\\nsalariats\\nsalaried\\nsalaries\\nsalary\\nsalarying\\nsale\\nsaleable\\nsaleably\\nsalep\\nsaleps\\nsaleroom\\nsalerooms\\nsales\\nsalesman\\nsalesmen\\nsaleswoman\\nsaleswomen\\nsalic\\nsalicin\\nsalicine\\nsalicines\\nsalicins\\nsalience\\nsaliences\\nsaliencies\\nsaliency\\nsalient\\nsalients\\nsalified\\nsalifies\\nsalify\\nsalifying\\nsalina\\nsalinas\\nsaline\\nsalines\\nsalinities\\nsalinity\\nsalinize\\nsalinized\\nsalinizes\\nsalinizing\\nsaliva\\nsalivary\\nsalivas\\nsalivate\\nsalivated\\nsalivates\\nsalivating\\nsalivation\\nsalivations\\nsall\\nsallet\\nsallets\\nsallied\\nsallier\\nsalliers\\nsallies\\nsallow\\nsallowed\\nsallower\\nsallowest\\nsallowing\\nsallowly\\nsallows\\nsallowy\\nsally\\nsallying\\nsalmi\\nsalmis\\nsalmon\\nsalmonid\\nsalmonids\\nsalmons\\nsalol\\nsalols\\nsalon\\nsalons\\nsaloon\\nsaloons\\nsaloop\\nsaloops\\nsalp\\nsalpa\\nsalpae\\nsalpas\\nsalpian\\nsalpians\\nsalpid\\nsalpids\\nsalpinges\\nsalpinx\\nsalps\\nsals\\nsalsifies\\nsalsify\\nsalsilla\\nsalsillas\\nsalt\\nsaltant\\nsaltbox\\nsaltboxes\\nsaltbush\\nsaltbushes\\nsalted\\nsalter\\nsaltern\\nsalterns\\nsalters\\nsaltest\\nsaltie\\nsaltier\\nsaltiers\\nsalties\\nsaltiest\\nsaltily\\nsaltine\\nsaltines\\nsaltiness\\nsaltinesses\\nsalting\\nsaltire\\nsaltires\\nsaltish\\nsaltless\\nsaltlike\\nsaltness\\nsaltnesses\\nsaltpan\\nsaltpans\\nsalts\\nsaltwater\\nsaltwaters\\nsaltwork\\nsaltworks\\nsaltwort\\nsaltworts\\nsalty\\nsalubrious\\nsaluki\\nsalukis\\nsalutary\\nsalutation\\nsalutations\\nsalute\\nsaluted\\nsaluter\\nsaluters\\nsalutes\\nsaluting\\nsalvable\\nsalvably\\nsalvage\\nsalvaged\\nsalvagee\\nsalvagees\\nsalvager\\nsalvagers\\nsalvages\\nsalvaging\\nsalvation\\nsalvations\\nsalve\\nsalved\\nsalver\\nsalvers\\nsalves\\nsalvia\\nsalvias\\nsalvific\\nsalving\\nsalvo\\nsalvoed\\nsalvoes\\nsalvoing\\nsalvor\\nsalvors\\nsalvos\\nsamara\\nsamaras\\nsamarium\\nsamariums\\nsamba\\nsambaed\\nsambaing\\nsambar\\nsambars\\nsambas\\nsambhar\\nsambhars\\nsambhur\\nsambhurs\\nsambo\\nsambos\\nsambuca\\nsambucas\\nsambuke\\nsambukes\\nsambur\\nsamburs\\nsame\\nsamech\\nsamechs\\nsamek\\nsamekh\\nsamekhs\\nsameks\\nsameness\\nsamenesses\\nsamiel\\nsamiels\\nsamisen\\nsamisens\\nsamite\\nsamites\\nsamlet\\nsamlets\\nsamovar\\nsamovars\\nsamp\\nsampan\\nsampans\\nsamphire\\nsamphires\\nsample\\nsampled\\nsampler\\nsamplers\\nsamples\\nsampling\\nsamplings\\nsamps\\nsamsara\\nsamsaras\\nsamshu\\nsamshus\\nsamurai\\nsamurais\\nsanative\\nsanatoria\\nsanatorium\\nsanatoriums\\nsancta\\nsanctification\\nsanctifications\\nsanctified\\nsanctifies\\nsanctify\\nsanctifying\\nsanctimonious\\nsanction\\nsanctioned\\nsanctioning\\nsanctions\\nsanctities\\nsanctity\\nsanctuaries\\nsanctuary\\nsanctum\\nsanctums\\nsand\\nsandal\\nsandaled\\nsandaling\\nsandalled\\nsandalling\\nsandals\\nsandarac\\nsandaracs\\nsandbag\\nsandbagged\\nsandbagging\\nsandbags\\nsandbank\\nsandbanks\\nsandbar\\nsandbars\\nsandbox\\nsandboxes\\nsandbur\\nsandburr\\nsandburrs\\nsandburs\\nsanded\\nsander\\nsanders\\nsandfish\\nsandfishes\\nsandflies\\nsandfly\\nsandhi\\nsandhis\\nsandhog\\nsandhogs\\nsandier\\nsandiest\\nsanding\\nsandlike\\nsandling\\nsandlings\\nsandlot\\nsandlots\\nsandman\\nsandmen\\nsandpaper\\nsandpapered\\nsandpapering\\nsandpapers\\nsandpeep\\nsandpeeps\\nsandpile\\nsandpiles\\nsandpiper\\nsandpipers\\nsandpit\\nsandpits\\nsands\\nsandsoap\\nsandsoaps\\nsandstone\\nsandstones\\nsandstorm\\nsandstorms\\nsandwich\\nsandwiched\\nsandwiches\\nsandwiching\\nsandworm\\nsandworms\\nsandwort\\nsandworts\\nsandy\\nsane\\nsaned\\nsanely\\nsaneness\\nsanenesses\\nsaner\\nsanes\\nsanest\\nsang\\nsanga\\nsangar\\nsangaree\\nsangarees\\nsangars\\nsangas\\nsanger\\nsangers\\nsangh\\nsanghs\\nsangria\\nsangrias\\nsanguinary\\nsanguine\\nsanguines\\nsanicle\\nsanicles\\nsanies\\nsaning\\nsanious\\nsanitaria\\nsanitaries\\nsanitarium\\nsanitariums\\nsanitary\\nsanitate\\nsanitated\\nsanitates\\nsanitating\\nsanitation\\nsanitations\\nsanities\\nsanitise\\nsanitised\\nsanitises\\nsanitising\\nsanitize\\nsanitized\\nsanitizes\\nsanitizing\\nsanity\\nsanjak\\nsanjaks\\nsank\\nsannop\\nsannops\\nsannup\\nsannups\\nsannyasi\\nsannyasis\\nsans\\nsansar\\nsansars\\nsansei\\nsanseis\\nsanserif\\nsanserifs\\nsantalic\\nsantimi\\nsantims\\nsantir\\nsantirs\\nsantol\\nsantols\\nsantonin\\nsantonins\\nsantour\\nsantours\\nsap\\nsapajou\\nsapajous\\nsaphead\\nsapheads\\nsaphena\\nsaphenae\\nsapid\\nsapidities\\nsapidity\\nsapience\\nsapiences\\nsapiencies\\nsapiency\\nsapiens\\nsapient\\nsapless\\nsapling\\nsaplings\\nsaponified\\nsaponifies\\nsaponify\\nsaponifying\\nsaponin\\nsaponine\\nsaponines\\nsaponins\\nsaponite\\nsaponites\\nsapor\\nsaporous\\nsapors\\nsapota\\nsapotas\\nsapour\\nsapours\\nsapped\\nsapper\\nsappers\\nsapphic\\nsapphics\\nsapphire\\nsapphires\\nsapphism\\nsapphisms\\nsapphist\\nsapphists\\nsappier\\nsappiest\\nsappily\\nsapping\\nsappy\\nsapremia\\nsapremias\\nsapremic\\nsaprobe\\nsaprobes\\nsaprobic\\nsapropel\\nsapropels\\nsaps\\nsapsago\\nsapsagos\\nsapsucker\\nsapsuckers\\nsapwood\\nsapwoods\\nsaraband\\nsarabands\\nsaran\\nsarape\\nsarapes\\nsarcasm\\nsarcasms\\nsarcastic\\nsarcastically\\nsarcenet\\nsarcenets\\nsarcoid\\nsarcoids\\nsarcoma\\nsarcomas\\nsarcomata\\nsarcophagi\\nsarcophagus\\nsarcous\\nsard\\nsardar\\nsardars\\nsardine\\nsardines\\nsardius\\nsardiuses\\nsardonic\\nsardonically\\nsardonyx\\nsardonyxes\\nsards\\nsaree\\nsarees\\nsargasso\\nsargassos\\nsarge\\nsarges\\nsari\\nsarin\\nsarins\\nsaris\\nsark\\nsarks\\nsarment\\nsarmenta\\nsarments\\nsarod\\nsarode\\nsarodes\\nsarodist\\nsarodists\\nsarods\\nsarong\\nsarongs\\nsarsaparilla\\nsarsaparillas\\nsarsar\\nsarsars\\nsarsen\\nsarsenet\\nsarsenets\\nsarsens\\nsartor\\nsartorii\\nsartors\\nsash\\nsashay\\nsashayed\\nsashaying\\nsashays\\nsashed\\nsashes\\nsashimi\\nsashimis\\nsashing\\nsasin\\nsasins\\nsass\\nsassabies\\nsassaby\\nsassafras\\nsassafrases\\nsassed\\nsasses\\nsassier\\nsassies\\nsassiest\\nsassily\\nsassing\\nsasswood\\nsasswoods\\nsassy\\nsastruga\\nsastrugi\\nsat\\nsatang\\nsatangs\\nsatanic\\nsatanism\\nsatanisms\\nsatanist\\nsatanists\\nsatara\\nsataras\\nsatchel\\nsatchels\\nsate\\nsated\\nsateen\\nsateens\\nsatellite\\nsatellites\\nsatem\\nsates\\nsati\\nsatiable\\nsatiably\\nsatiate\\nsatiated\\nsatiates\\nsatiating\\nsatieties\\nsatiety\\nsatin\\nsatinet\\nsatinets\\nsating\\nsatinpod\\nsatinpods\\nsatins\\nsatiny\\nsatire\\nsatires\\nsatiric\\nsatirical\\nsatirically\\nsatirise\\nsatirised\\nsatirises\\nsatirising\\nsatirist\\nsatirists\\nsatirize\\nsatirized\\nsatirizes\\nsatirizing\\nsatis\\nsatisfaction\\nsatisfactions\\nsatisfactorily\\nsatisfactory\\nsatisfied\\nsatisfies\\nsatisfy\\nsatisfying\\nsatisfyingly\\nsatori\\nsatoris\\nsatrap\\nsatrapies\\nsatraps\\nsatrapy\\nsaturant\\nsaturants\\nsaturate\\nsaturated\\nsaturates\\nsaturating\\nsaturation\\nsaturations\\nsaturnine\\nsatyr\\nsatyric\\nsatyrid\\nsatyrids\\nsatyrs\\nsau\\nsauce\\nsaucebox\\nsauceboxes\\nsauced\\nsaucepan\\nsaucepans\\nsaucer\\nsaucers\\nsauces\\nsauch\\nsauchs\\nsaucier\\nsauciest\\nsaucily\\nsaucing\\nsaucy\\nsauerkraut\\nsauerkrauts\\nsauger\\nsaugers\\nsaugh\\nsaughs\\nsaughy\\nsaul\\nsauls\\nsault\\nsaults\\nsauna\\nsaunas\\nsaunter\\nsauntered\\nsauntering\\nsaunters\\nsaurel\\nsaurels\\nsaurian\\nsaurians\\nsauries\\nsauropod\\nsauropods\\nsaury\\nsausage\\nsausages\\nsaute\\nsauted\\nsauteed\\nsauteing\\nsauterne\\nsauternes\\nsautes\\nsautoir\\nsautoire\\nsautoires\\nsautoirs\\nsavable\\nsavage\\nsavaged\\nsavagely\\nsavageness\\nsavagenesses\\nsavager\\nsavageries\\nsavagery\\nsavages\\nsavagest\\nsavaging\\nsavagism\\nsavagisms\\nsavanna\\nsavannah\\nsavannahs\\nsavannas\\nsavant\\nsavants\\nsavate\\nsavates\\nsave\\nsaveable\\nsaved\\nsaveloy\\nsaveloys\\nsaver\\nsavers\\nsaves\\nsavin\\nsavine\\nsavines\\nsaving\\nsavingly\\nsavings\\nsavins\\nsavior\\nsaviors\\nsaviour\\nsaviours\\nsavor\\nsavored\\nsavorer\\nsavorers\\nsavorier\\nsavories\\nsavoriest\\nsavorily\\nsavoring\\nsavorous\\nsavors\\nsavory\\nsavour\\nsavoured\\nsavourer\\nsavourers\\nsavourier\\nsavouries\\nsavouriest\\nsavouring\\nsavours\\nsavoury\\nsavoy\\nsavoys\\nsavvied\\nsavvies\\nsavvy\\nsavvying\\nsaw\\nsawbill\\nsawbills\\nsawbones\\nsawboneses\\nsawbuck\\nsawbucks\\nsawdust\\nsawdusts\\nsawed\\nsawer\\nsawers\\nsawfish\\nsawfishes\\nsawflies\\nsawfly\\nsawhorse\\nsawhorses\\nsawing\\nsawlike\\nsawlog\\nsawlogs\\nsawmill\\nsawmills\\nsawn\\nsawney\\nsawneys\\nsaws\\nsawteeth\\nsawtooth\\nsawyer\\nsawyers\\nsax\\nsaxatile\\nsaxes\\nsaxhorn\\nsaxhorns\\nsaxonies\\nsaxony\\nsaxophone\\nsaxophones\\nsaxtuba\\nsaxtubas\\nsay\\nsayable\\nsayer\\nsayers\\nsayest\\nsayid\\nsayids\\nsaying\\nsayings\\nsayonara\\nsayonaras\\nsays\\nsayst\\nsayyid\\nsayyids\\nscab\\nscabbard\\nscabbarded\\nscabbarding\\nscabbards\\nscabbed\\nscabbier\\nscabbiest\\nscabbily\\nscabbing\\nscabble\\nscabbled\\nscabbles\\nscabbling\\nscabby\\nscabies\\nscabiosa\\nscabiosas\\nscabious\\nscabiouses\\nscablike\\nscabrous\\nscabs\\nscad\\nscads\\nscaffold\\nscaffolded\\nscaffolding\\nscaffolds\\nscag\\nscags\\nscalable\\nscalably\\nscalade\\nscalades\\nscalado\\nscalados\\nscalage\\nscalages\\nscalar\\nscalare\\nscalares\\nscalars\\nscalawag\\nscalawags\\nscald\\nscalded\\nscaldic\\nscalding\\nscalds\\nscale\\nscaled\\nscaleless\\nscalene\\nscaleni\\nscalenus\\nscalepan\\nscalepans\\nscaler\\nscalers\\nscales\\nscalier\\nscaliest\\nscaling\\nscall\\nscallion\\nscallions\\nscallop\\nscalloped\\nscalloping\\nscallops\\nscalls\\nscalp\\nscalped\\nscalpel\\nscalpels\\nscalper\\nscalpers\\nscalping\\nscalps\\nscaly\\nscam\\nscammonies\\nscammony\\nscamp\\nscamped\\nscamper\\nscampered\\nscampering\\nscampers\\nscampi\\nscamping\\nscampish\\nscamps\\nscams\\nscan\\nscandal\\nscandaled\\nscandaling\\nscandalize\\nscandalized\\nscandalizes\\nscandalizing\\nscandalled\\nscandalling\\nscandalous\\nscandals\\nscandent\\nscandia\\nscandias\\nscandic\\nscandium\\nscandiums\\nscanned\\nscanner\\nscanners\\nscanning\\nscannings\\nscans\\nscansion\\nscansions\\nscant\\nscanted\\nscanter\\nscantest\\nscantier\\nscanties\\nscantiest\\nscantily\\nscanting\\nscantly\\nscants\\nscanty\\nscape\\nscaped\\nscapegoat\\nscapegoats\\nscapes\\nscaphoid\\nscaphoids\\nscaping\\nscapose\\nscapula\\nscapulae\\nscapular\\nscapulars\\nscapulas\\nscar\\nscarab\\nscarabs\\nscarce\\nscarcely\\nscarcer\\nscarcest\\nscarcities\\nscarcity\\nscare\\nscarecrow\\nscarecrows\\nscared\\nscarer\\nscarers\\nscares\\nscarey\\nscarf\\nscarfed\\nscarfing\\nscarfpin\\nscarfpins\\nscarfs\\nscarier\\nscariest\\nscarified\\nscarifies\\nscarify\\nscarifying\\nscaring\\nscariose\\nscarious\\nscarless\\nscarlet\\nscarlets\\nscarp\\nscarped\\nscarper\\nscarpered\\nscarpering\\nscarpers\\nscarph\\nscarphed\\nscarphing\\nscarphs\\nscarping\\nscarps\\nscarred\\nscarrier\\nscarriest\\nscarring\\nscarry\\nscars\\nscart\\nscarted\\nscarting\\nscarts\\nscarves\\nscary\\nscat\\nscatback\\nscatbacks\\nscathe\\nscathed\\nscathes\\nscathing\\nscats\\nscatt\\nscatted\\nscatter\\nscattered\\nscattergram\\nscattergrams\\nscattering\\nscatters\\nscattier\\nscattiest\\nscatting\\nscatts\\nscatty\\nscaup\\nscauper\\nscaupers\\nscaups\\nscaur\\nscaurs\\nscavenge\\nscavenged\\nscavenger\\nscavengers\\nscavenges\\nscavenging\\nscena\\nscenario\\nscenarios\\nscenas\\nscend\\nscended\\nscending\\nscends\\nscene\\nsceneries\\nscenery\\nscenes\\nscenic\\nscenical\\nscent\\nscented\\nscenting\\nscents\\nscepter\\nsceptered\\nsceptering\\nscepters\\nsceptic\\nsceptics\\nsceptral\\nsceptre\\nsceptred\\nsceptres\\nsceptring\\nschappe\\nschappes\\nschav\\nschavs\\nschedule\\nscheduled\\nschedules\\nscheduling\\nschema\\nschemata\\nschematic\\nscheme\\nschemed\\nschemer\\nschemers\\nschemes\\nscheming\\nscherzi\\nscherzo\\nscherzos\\nschiller\\nschillers\\nschism\\nschisms\\nschist\\nschists\\nschizo\\nschizoid\\nschizoids\\nschizont\\nschizonts\\nschizophrenia\\nschizophrenias\\nschizophrenic\\nschizophrenics\\nschizos\\nschlep\\nschlepp\\nschlepped\\nschlepping\\nschlepps\\nschleps\\nschlock\\nschlocks\\nschmaltz\\nschmaltzes\\nschmalz\\nschmalzes\\nschmalzier\\nschmalziest\\nschmalzy\\nschmeer\\nschmeered\\nschmeering\\nschmeers\\nschmelze\\nschmelzes\\nschmo\\nschmoe\\nschmoes\\nschmoos\\nschmoose\\nschmoosed\\nschmooses\\nschmoosing\\nschmooze\\nschmoozed\\nschmoozes\\nschmoozing\\nschmuck\\nschmucks\\nschnapps\\nschnaps\\nschnecke\\nschnecken\\nschnook\\nschnooks\\nscholar\\nscholars\\nscholarship\\nscholarships\\nscholastic\\nscholia\\nscholium\\nscholiums\\nschool\\nschoolboy\\nschoolboys\\nschooled\\nschoolgirl\\nschoolgirls\\nschoolhouse\\nschoolhouses\\nschooling\\nschoolmate\\nschoolmates\\nschoolroom\\nschoolrooms\\nschools\\nschoolteacher\\nschoolteachers\\nschooner\\nschooners\\nschorl\\nschorls\\nschrik\\nschriks\\nschtick\\nschticks\\nschuit\\nschuits\\nschul\\nschuln\\nschuss\\nschussed\\nschusses\\nschussing\\nschwa\\nschwas\\nsciaenid\\nsciaenids\\nsciatic\\nsciatica\\nsciaticas\\nsciatics\\nscience\\nsciences\\nscientific\\nscientifically\\nscientist\\nscientists\\nscilicet\\nscilla\\nscillas\\nscimetar\\nscimetars\\nscimitar\\nscimitars\\nscimiter\\nscimiters\\nscincoid\\nscincoids\\nscintillate\\nscintillated\\nscintillates\\nscintillating\\nscintillation\\nscintillations\\nsciolism\\nsciolisms\\nsciolist\\nsciolists\\nscion\\nscions\\nscirocco\\nsciroccos\\nscirrhi\\nscirrhus\\nscirrhuses\\nscissile\\nscission\\nscissions\\nscissor\\nscissored\\nscissoring\\nscissors\\nscissure\\nscissures\\nsciurine\\nsciurines\\nsciuroid\\nsclaff\\nsclaffed\\nsclaffer\\nsclaffers\\nsclaffing\\nsclaffs\\nsclera\\nsclerae\\nscleral\\nscleras\\nsclereid\\nsclereids\\nsclerite\\nsclerites\\nscleroid\\nscleroma\\nscleromata\\nsclerose\\nsclerosed\\nscleroses\\nsclerosing\\nsclerosis\\nsclerosises\\nsclerotic\\nsclerous\\nscoff\\nscoffed\\nscoffer\\nscoffers\\nscoffing\\nscofflaw\\nscofflaws\\nscoffs\\nscold\\nscolded\\nscolder\\nscolders\\nscolding\\nscoldings\\nscolds\\nscoleces\\nscolex\\nscolices\\nscolioma\\nscoliomas\\nscollop\\nscolloped\\nscolloping\\nscollops\\nsconce\\nsconced\\nsconces\\nsconcing\\nscone\\nscones\\nscoop\\nscooped\\nscooper\\nscoopers\\nscoopful\\nscoopfuls\\nscooping\\nscoops\\nscoopsful\\nscoot\\nscooted\\nscooter\\nscooters\\nscooting\\nscoots\\nscop\\nscope\\nscopes\\nscops\\nscopula\\nscopulae\\nscopulas\\nscorch\\nscorched\\nscorcher\\nscorchers\\nscorches\\nscorching\\nscore\\nscored\\nscoreless\\nscorepad\\nscorepads\\nscorer\\nscorers\\nscores\\nscoria\\nscoriae\\nscorified\\nscorifies\\nscorify\\nscorifying\\nscoring\\nscorn\\nscorned\\nscorner\\nscorners\\nscornful\\nscornfully\\nscorning\\nscorns\\nscorpion\\nscorpions\\nscot\\nscotch\\nscotched\\nscotches\\nscotching\\nscoter\\nscoters\\nscotia\\nscotias\\nscotoma\\nscotomas\\nscotomata\\nscotopia\\nscotopias\\nscotopic\\nscots\\nscottie\\nscotties\\nscoundrel\\nscoundrels\\nscour\\nscoured\\nscourer\\nscourers\\nscourge\\nscourged\\nscourger\\nscourgers\\nscourges\\nscourging\\nscouring\\nscourings\\nscours\\nscouse\\nscouses\\nscout\\nscouted\\nscouter\\nscouters\\nscouth\\nscouther\\nscouthered\\nscouthering\\nscouthers\\nscouths\\nscouting\\nscoutings\\nscouts\\nscow\\nscowder\\nscowdered\\nscowdering\\nscowders\\nscowed\\nscowing\\nscowl\\nscowled\\nscowler\\nscowlers\\nscowling\\nscowls\\nscows\\nscrabble\\nscrabbled\\nscrabbles\\nscrabbling\\nscrabbly\\nscrag\\nscragged\\nscraggier\\nscraggiest\\nscragging\\nscragglier\\nscraggliest\\nscraggly\\nscraggy\\nscrags\\nscraich\\nscraiched\\nscraiching\\nscraichs\\nscraigh\\nscraighed\\nscraighing\\nscraighs\\nscram\\nscramble\\nscrambled\\nscrambles\\nscrambling\\nscrammed\\nscramming\\nscrams\\nscrannel\\nscrannels\\nscrap\\nscrapbook\\nscrapbooks\\nscrape\\nscraped\\nscraper\\nscrapers\\nscrapes\\nscrapie\\nscrapies\\nscraping\\nscrapings\\nscrapped\\nscrapper\\nscrappers\\nscrappier\\nscrappiest\\nscrapping\\nscrapple\\nscrapples\\nscrappy\\nscraps\\nscratch\\nscratched\\nscratches\\nscratchier\\nscratchiest\\nscratching\\nscratchy\\nscrawl\\nscrawled\\nscrawler\\nscrawlers\\nscrawlier\\nscrawliest\\nscrawling\\nscrawls\\nscrawly\\nscrawnier\\nscrawniest\\nscrawny\\nscreak\\nscreaked\\nscreaking\\nscreaks\\nscreaky\\nscream\\nscreamed\\nscreamer\\nscreamers\\nscreaming\\nscreams\\nscree\\nscreech\\nscreeched\\nscreeches\\nscreechier\\nscreechiest\\nscreeching\\nscreechy\\nscreed\\nscreeded\\nscreeding\\nscreeds\\nscreen\\nscreened\\nscreener\\nscreeners\\nscreening\\nscreens\\nscrees\\nscrew\\nscrewball\\nscrewballs\\nscrewdriver\\nscrewdrivers\\nscrewed\\nscrewer\\nscrewers\\nscrewier\\nscrewiest\\nscrewing\\nscrews\\nscrewy\\nscribal\\nscribble\\nscribbled\\nscribbles\\nscribbling\\nscribe\\nscribed\\nscriber\\nscribers\\nscribes\\nscribing\\nscrieve\\nscrieved\\nscrieves\\nscrieving\\nscrim\\nscrimp\\nscrimped\\nscrimpier\\nscrimpiest\\nscrimping\\nscrimpit\\nscrimps\\nscrimpy\\nscrims\\nscrip\\nscrips\\nscript\\nscripted\\nscripting\\nscripts\\nscriptural\\nscripture\\nscriptures\\nscrive\\nscrived\\nscrives\\nscriving\\nscrod\\nscrods\\nscrofula\\nscrofulas\\nscroggier\\nscroggiest\\nscroggy\\nscroll\\nscrolls\\nscrooge\\nscrooges\\nscroop\\nscrooped\\nscrooping\\nscroops\\nscrota\\nscrotal\\nscrotum\\nscrotums\\nscrouge\\nscrouged\\nscrouges\\nscrouging\\nscrounge\\nscrounged\\nscrounges\\nscroungier\\nscroungiest\\nscrounging\\nscroungy\\nscrub\\nscrubbed\\nscrubber\\nscrubbers\\nscrubbier\\nscrubbiest\\nscrubbing\\nscrubby\\nscrubs\\nscruff\\nscruffier\\nscruffiest\\nscruffs\\nscruffy\\nscrum\\nscrums\\nscrunch\\nscrunched\\nscrunches\\nscrunching\\nscruple\\nscrupled\\nscruples\\nscrupling\\nscrupulous\\nscrupulously\\nscrutinies\\nscrutinize\\nscrutinized\\nscrutinizes\\nscrutinizing\\nscrutiny\\nscuba\\nscubas\\nscud\\nscudded\\nscudding\\nscudi\\nscudo\\nscuds\\nscuff\\nscuffed\\nscuffing\\nscuffle\\nscuffled\\nscuffler\\nscufflers\\nscuffles\\nscuffling\\nscuffs\\nsculk\\nsculked\\nsculker\\nsculkers\\nsculking\\nsculks\\nscull\\nsculled\\nsculler\\nsculleries\\nscullers\\nscullery\\nsculling\\nscullion\\nscullions\\nsculls\\nsculp\\nsculped\\nsculpin\\nsculping\\nsculpins\\nsculps\\nsculpt\\nsculpted\\nsculpting\\nsculptor\\nsculptors\\nsculpts\\nsculptural\\nsculpture\\nsculptured\\nsculptures\\nsculpturing\\nscum\\nscumble\\nscumbled\\nscumbles\\nscumbling\\nscumlike\\nscummed\\nscummer\\nscummers\\nscummier\\nscummiest\\nscumming\\nscummy\\nscums\\nscunner\\nscunnered\\nscunnering\\nscunners\\nscup\\nscuppaug\\nscuppaugs\\nscupper\\nscuppered\\nscuppering\\nscuppers\\nscups\\nscurf\\nscurfier\\nscurfiest\\nscurfs\\nscurfy\\nscurried\\nscurries\\nscurril\\nscurrile\\nscurrilous\\nscurry\\nscurrying\\nscurvier\\nscurvies\\nscurviest\\nscurvily\\nscurvy\\nscut\\nscuta\\nscutage\\nscutages\\nscutate\\nscutch\\nscutched\\nscutcher\\nscutchers\\nscutches\\nscutching\\nscute\\nscutella\\nscutes\\nscuts\\nscutter\\nscuttered\\nscuttering\\nscutters\\nscuttle\\nscuttled\\nscuttles\\nscuttling\\nscutum\\nscyphate\\nscythe\\nscythed\\nscythes\\nscything\\nsea\\nseabag\\nseabags\\nseabeach\\nseabeaches\\nseabed\\nseabeds\\nseabird\\nseabirds\\nseaboard\\nseaboards\\nseaboot\\nseaboots\\nseaborne\\nseacoast\\nseacoasts\\nseacock\\nseacocks\\nseacraft\\nseacrafts\\nseadog\\nseadogs\\nseadrome\\nseadromes\\nseafarer\\nseafarers\\nseafaring\\nseafarings\\nseafloor\\nseafloors\\nseafood\\nseafoods\\nseafowl\\nseafowls\\nseafront\\nseafronts\\nseagirt\\nseagoing\\nseal\\nsealable\\nsealant\\nsealants\\nsealed\\nsealer\\nsealeries\\nsealers\\nsealery\\nsealing\\nseallike\\nseals\\nsealskin\\nsealskins\\nseam\\nseaman\\nseamanly\\nseamanship\\nseamanships\\nseamark\\nseamarks\\nseamed\\nseamen\\nseamer\\nseamers\\nseamier\\nseamiest\\nseaming\\nseamless\\nseamlike\\nseamount\\nseamounts\\nseams\\nseamster\\nseamsters\\nseamstress\\nseamstresses\\nseamy\\nseance\\nseances\\nseapiece\\nseapieces\\nseaplane\\nseaplanes\\nseaport\\nseaports\\nseaquake\\nseaquakes\\nsear\\nsearch\\nsearched\\nsearcher\\nsearchers\\nsearches\\nsearching\\nsearchlight\\nsearchlights\\nseared\\nsearer\\nsearest\\nsearing\\nsears\\nseas\\nseascape\\nseascapes\\nseascout\\nseascouts\\nseashell\\nseashells\\nseashore\\nseashores\\nseasick\\nseasickness\\nseasicknesses\\nseaside\\nseasides\\nseason\\nseasonable\\nseasonably\\nseasonal\\nseasonally\\nseasoned\\nseasoner\\nseasoners\\nseasoning\\nseasons\\nseat\\nseated\\nseater\\nseaters\\nseating\\nseatings\\nseatless\\nseatmate\\nseatmates\\nseatrain\\nseatrains\\nseats\\nseatwork\\nseatworks\\nseawall\\nseawalls\\nseawan\\nseawans\\nseawant\\nseawants\\nseaward\\nseawards\\nseaware\\nseawares\\nseawater\\nseawaters\\nseaway\\nseaways\\nseaweed\\nseaweeds\\nseaworthy\\nsebacic\\nsebasic\\nsebum\\nsebums\\nsec\\nsecant\\nsecantly\\nsecants\\nsecateur\\nsecateurs\\nsecco\\nseccos\\nsecede\\nseceded\\nseceder\\nseceders\\nsecedes\\nseceding\\nsecern\\nsecerned\\nsecerning\\nsecerns\\nseclude\\nsecluded\\nsecludes\\nsecluding\\nseclusion\\nseclusions\\nsecond\\nsecondary\\nseconde\\nseconded\\nseconder\\nseconders\\nsecondes\\nsecondhand\\nsecondi\\nseconding\\nsecondly\\nsecondo\\nseconds\\nsecpar\\nsecpars\\nsecrecies\\nsecrecy\\nsecret\\nsecretarial\\nsecretariat\\nsecretariats\\nsecretaries\\nsecretary\\nsecrete\\nsecreted\\nsecreter\\nsecretes\\nsecretest\\nsecretin\\nsecreting\\nsecretins\\nsecretion\\nsecretions\\nsecretive\\nsecretly\\nsecretor\\nsecretors\\nsecrets\\nsecs\\nsect\\nsectarian\\nsectarians\\nsectaries\\nsectary\\nsectile\\nsection\\nsectional\\nsectioned\\nsectioning\\nsections\\nsector\\nsectoral\\nsectored\\nsectoring\\nsectors\\nsects\\nsecular\\nseculars\\nsecund\\nsecundly\\nsecundum\\nsecure\\nsecured\\nsecurely\\nsecurer\\nsecurers\\nsecures\\nsecurest\\nsecuring\\nsecurities\\nsecurity\\nsedan\\nsedans\\nsedarim\\nsedate\\nsedated\\nsedately\\nsedater\\nsedates\\nsedatest\\nsedating\\nsedation\\nsedations\\nsedative\\nsedatives\\nsedentary\\nseder\\nseders\\nsederunt\\nsederunts\\nsedge\\nsedges\\nsedgier\\nsedgiest\\nsedgy\\nsedile\\nsedilia\\nsedilium\\nsediment\\nsedimentary\\nsedimentation\\nsedimentations\\nsedimented\\nsedimenting\\nsediments\\nsedition\\nseditions\\nseditious\\nseduce\\nseduced\\nseducer\\nseducers\\nseduces\\nseducing\\nseducive\\nseduction\\nseductions\\nseductive\\nsedulities\\nsedulity\\nsedulous\\nsedum\\nsedums\\nsee\\nseeable\\nseecatch\\nseecatchie\\nseed\\nseedbed\\nseedbeds\\nseedcake\\nseedcakes\\nseedcase\\nseedcases\\nseeded\\nseeder\\nseeders\\nseedier\\nseediest\\nseedily\\nseeding\\nseedless\\nseedlike\\nseedling\\nseedlings\\nseedman\\nseedmen\\nseedpod\\nseedpods\\nseeds\\nseedsman\\nseedsmen\\nseedtime\\nseedtimes\\nseedy\\nseeing\\nseeings\\nseek\\nseeker\\nseekers\\nseeking\\nseeks\\nseel\\nseeled\\nseeling\\nseels\\nseely\\nseem\\nseemed\\nseemer\\nseemers\\nseeming\\nseemingly\\nseemings\\nseemlier\\nseemliest\\nseemly\\nseems\\nseen\\nseep\\nseepage\\nseepages\\nseeped\\nseepier\\nseepiest\\nseeping\\nseeps\\nseepy\\nseer\\nseeress\\nseeresses\\nseers\\nseersucker\\nseersuckers\\nsees\\nseesaw\\nseesawed\\nseesawing\\nseesaws\\nseethe\\nseethed\\nseethes\\nseething\\nsegetal\\nseggar\\nseggars\\nsegment\\nsegmented\\nsegmenting\\nsegments\\nsegni\\nsegno\\nsegnos\\nsego\\nsegos\\nsegregate\\nsegregated\\nsegregates\\nsegregating\\nsegregation\\nsegregations\\nsegue\\nsegued\\nsegueing\\nsegues\\nsei\\nseicento\\nseicentos\\nseiche\\nseiches\\nseidel\\nseidels\\nseigneur\\nseigneurs\\nseignior\\nseigniors\\nseignories\\nseignory\\nseine\\nseined\\nseiner\\nseiners\\nseines\\nseining\\nseis\\nseisable\\nseise\\nseised\\nseiser\\nseisers\\nseises\\nseisin\\nseising\\nseisings\\nseisins\\nseism\\nseismal\\nseismic\\nseismism\\nseismisms\\nseismograph\\nseismographs\\nseisms\\nseisor\\nseisors\\nseisure\\nseisures\\nseizable\\nseize\\nseized\\nseizer\\nseizers\\nseizes\\nseizin\\nseizing\\nseizings\\nseizins\\nseizor\\nseizors\\nseizure\\nseizures\\nsejant\\nsejeant\\nsel\\nseladang\\nseladangs\\nselah\\nselahs\\nselamlik\\nselamliks\\nselcouth\\nseldom\\nseldomly\\nselect\\nselected\\nselectee\\nselectees\\nselecting\\nselection\\nselections\\nselective\\nselectly\\nselectman\\nselectmen\\nselector\\nselectors\\nselects\\nselenate\\nselenates\\nselenic\\nselenide\\nselenides\\nselenite\\nselenites\\nselenium\\nseleniums\\nselenous\\nself\\nselfdom\\nselfdoms\\nselfed\\nselfheal\\nselfheals\\nselfhood\\nselfhoods\\nselfing\\nselfish\\nselfishly\\nselfishness\\nselfishnesses\\nselfless\\nselflessness\\nselflessnesses\\nselfness\\nselfnesses\\nselfs\\nselfsame\\nselfward\\nsell\\nsellable\\nselle\\nseller\\nsellers\\nselles\\nselling\\nsellout\\nsellouts\\nsells\\nsels\\nselsyn\\nselsyns\\nseltzer\\nseltzers\\nselvage\\nselvaged\\nselvages\\nselvedge\\nselvedges\\nselves\\nsemantic\\nsemantics\\nsemaphore\\nsemaphores\\nsematic\\nsemblance\\nsemblances\\nseme\\nsememe\\nsememes\\nsemen\\nsemens\\nsemes\\nsemester\\nsemesters\\nsemi\\nsemiarid\\nsemibald\\nsemicolon\\nsemicolons\\nsemicoma\\nsemicomas\\nsemiconductor\\nsemiconductors\\nsemideaf\\nsemidome\\nsemidomes\\nsemidry\\nsemifinal\\nsemifinalist\\nsemifinalists\\nsemifinals\\nsemifit\\nsemiformal\\nsemigala\\nsemihard\\nsemihigh\\nsemihobo\\nsemihoboes\\nsemihobos\\nsemilog\\nsemimat\\nsemimatt\\nsemimute\\nsemina\\nseminal\\nseminar\\nseminarian\\nseminarians\\nseminaries\\nseminars\\nseminary\\nseminude\\nsemioses\\nsemiosis\\nsemiotic\\nsemiotics\\nsemipro\\nsemipros\\nsemiraw\\nsemis\\nsemises\\nsemisoft\\nsemitist\\nsemitists\\nsemitone\\nsemitones\\nsemiwild\\nsemolina\\nsemolinas\\nsemple\\nsemplice\\nsempre\\nsen\\nsenarii\\nsenarius\\nsenary\\nsenate\\nsenates\\nsenator\\nsenatorial\\nsenators\\nsend\\nsendable\\nsendal\\nsendals\\nsender\\nsenders\\nsending\\nsendoff\\nsendoffs\\nsends\\nseneca\\nsenecas\\nsenecio\\nsenecios\\nsenega\\nsenegas\\nsengi\\nsenhor\\nsenhora\\nsenhoras\\nsenhores\\nsenhors\\nsenile\\nsenilely\\nseniles\\nsenilities\\nsenility\\nsenior\\nseniorities\\nseniority\\nseniors\\nseniti\\nsenna\\nsennas\\nsennet\\nsennets\\nsennight\\nsennights\\nsennit\\nsennits\\nsenopia\\nsenopias\\nsenor\\nsenora\\nsenoras\\nsenores\\nsenorita\\nsenoritas\\nsenors\\nsensa\\nsensate\\nsensated\\nsensates\\nsensating\\nsensation\\nsensational\\nsensations\\nsense\\nsensed\\nsenseful\\nsenseless\\nsenselessly\\nsenses\\nsensibilities\\nsensibility\\nsensible\\nsensibler\\nsensibles\\nsensiblest\\nsensibly\\nsensilla\\nsensing\\nsensitive\\nsensitiveness\\nsensitivenesses\\nsensitivities\\nsensitivity\\nsensitize\\nsensitized\\nsensitizes\\nsensitizing\\nsensor\\nsensoria\\nsensors\\nsensory\\nsensual\\nsensualist\\nsensualists\\nsensualities\\nsensuality\\nsensually\\nsensum\\nsensuous\\nsensuously\\nsensuousness\\nsensuousnesses\\nsent\\nsentence\\nsentenced\\nsentences\\nsentencing\\nsententious\\nsenti\\nsentient\\nsentients\\nsentiment\\nsentimental\\nsentimentalism\\nsentimentalisms\\nsentimentalist\\nsentimentalists\\nsentimentalize\\nsentimentalized\\nsentimentalizes\\nsentimentalizing\\nsentimentally\\nsentiments\\nsentinel\\nsentineled\\nsentineling\\nsentinelled\\nsentinelling\\nsentinels\\nsentries\\nsentry\\nsepal\\nsepaled\\nsepaline\\nsepalled\\nsepaloid\\nsepalous\\nsepals\\nseparable\\nseparate\\nseparated\\nseparately\\nseparates\\nseparating\\nseparation\\nseparations\\nseparator\\nseparators\\nsepia\\nsepias\\nsepic\\nsepoy\\nsepoys\\nseppuku\\nseppukus\\nsepses\\nsepsis\\nsept\\nsepta\\nseptal\\nseptaria\\nseptate\\nseptember\\nseptet\\nseptets\\nseptette\\nseptettes\\nseptic\\nseptical\\nseptics\\nseptime\\nseptimes\\nsepts\\nseptum\\nseptuple\\nseptupled\\nseptuples\\nseptupling\\nsepulcher\\nsepulchers\\nsepulchral\\nsepulchre\\nsepulchres\\nsequel\\nsequela\\nsequelae\\nsequels\\nsequence\\nsequenced\\nsequences\\nsequencies\\nsequencing\\nsequency\\nsequent\\nsequential\\nsequentially\\nsequents\\nsequester\\nsequestered\\nsequestering\\nsequesters\\nsequin\\nsequined\\nsequins\\nsequitur\\nsequiturs\\nsequoia\\nsequoias\\nser\\nsera\\nserac\\nseracs\\nseraglio\\nseraglios\\nserai\\nserail\\nserails\\nserais\\nseral\\nserape\\nserapes\\nseraph\\nseraphic\\nseraphim\\nseraphims\\nseraphin\\nseraphs\\nserdab\\nserdabs\\nsere\\nsered\\nserein\\nsereins\\nserenade\\nserenaded\\nserenades\\nserenading\\nserenata\\nserenatas\\nserenate\\nserendipitous\\nserendipity\\nserene\\nserenely\\nserener\\nserenes\\nserenest\\nserenities\\nserenity\\nserer\\nseres\\nserest\\nserf\\nserfage\\nserfages\\nserfdom\\nserfdoms\\nserfhood\\nserfhoods\\nserfish\\nserflike\\nserfs\\nserge\\nsergeant\\nsergeants\\nserges\\nserging\\nsergings\\nserial\\nserially\\nserials\\nseriate\\nseriated\\nseriates\\nseriatim\\nseriating\\nsericin\\nsericins\\nseriema\\nseriemas\\nseries\\nserif\\nserifs\\nserin\\nserine\\nserines\\nsering\\nseringa\\nseringas\\nserins\\nserious\\nseriously\\nseriousness\\nseriousnesses\\nserjeant\\nserjeants\\nsermon\\nsermonic\\nsermons\\nserologies\\nserology\\nserosa\\nserosae\\nserosal\\nserosas\\nserosities\\nserosity\\nserotine\\nserotines\\nserotype\\nserotypes\\nserous\\nserow\\nserows\\nserpent\\nserpentine\\nserpents\\nserpigines\\nserpigo\\nserpigoes\\nserranid\\nserranids\\nserrate\\nserrated\\nserrates\\nserrating\\nserried\\nserries\\nserry\\nserrying\\nsers\\nserum\\nserumal\\nserums\\nservable\\nserval\\nservals\\nservant\\nservants\\nserve\\nserved\\nserver\\nservers\\nserves\\nservice\\nserviceable\\nserviced\\nserviceman\\nservicemen\\nservicer\\nservicers\\nservices\\nservicing\\nservile\\nservilities\\nservility\\nserving\\nservings\\nservitor\\nservitors\\nservitude\\nservitudes\\nservo\\nservos\\nsesame\\nsesames\\nsesamoid\\nsesamoids\\nsessile\\nsession\\nsessions\\nsesspool\\nsesspools\\nsesterce\\nsesterces\\nsestet\\nsestets\\nsestina\\nsestinas\\nsestine\\nsestines\\nset\\nseta\\nsetae\\nsetal\\nsetback\\nsetbacks\\nsetiform\\nsetline\\nsetlines\\nsetoff\\nsetoffs\\nseton\\nsetons\\nsetose\\nsetous\\nsetout\\nsetouts\\nsets\\nsetscrew\\nsetscrews\\nsettee\\nsettees\\nsetter\\nsetters\\nsetting\\nsettings\\nsettle\\nsettled\\nsettlement\\nsettlements\\nsettler\\nsettlers\\nsettles\\nsettling\\nsettlings\\nsettlor\\nsettlors\\nsetulose\\nsetulous\\nsetup\\nsetups\\nseven\\nsevens\\nseventeen\\nseventeens\\nseventeenth\\nseventeenths\\nseventh\\nsevenths\\nseventies\\nseventieth\\nseventieths\\nseventy\\nsever\\nseveral\\nseverals\\nseverance\\nseverances\\nsevere\\nsevered\\nseverely\\nseverer\\nseverest\\nsevering\\nseverities\\nseverity\\nsevers\\nsew\\nsewage\\nsewages\\nsewan\\nsewans\\nsewar\\nsewars\\nsewed\\nsewer\\nsewerage\\nsewerages\\nsewers\\nsewing\\nsewings\\nsewn\\nsews\\nsex\\nsexed\\nsexes\\nsexier\\nsexiest\\nsexily\\nsexiness\\nsexinesses\\nsexing\\nsexism\\nsexisms\\nsexist\\nsexists\\nsexless\\nsexologies\\nsexology\\nsexpot\\nsexpots\\nsext\\nsextain\\nsextains\\nsextan\\nsextans\\nsextant\\nsextants\\nsextarii\\nsextet\\nsextets\\nsextette\\nsextettes\\nsextile\\nsextiles\\nsexto\\nsexton\\nsextons\\nsextos\\nsexts\\nsextuple\\nsextupled\\nsextuples\\nsextupling\\nsextuply\\nsexual\\nsexualities\\nsexuality\\nsexually\\nsexy\\nsferics\\nsforzato\\nsforzatos\\nsfumato\\nsfumatos\\nsh\\nshabbier\\nshabbiest\\nshabbily\\nshabbiness\\nshabbinesses\\nshabby\\nshack\\nshackle\\nshackled\\nshackler\\nshacklers\\nshackles\\nshackling\\nshacko\\nshackoes\\nshackos\\nshacks\\nshad\\nshadblow\\nshadblows\\nshadbush\\nshadbushes\\nshadchan\\nshadchanim\\nshadchans\\nshaddock\\nshaddocks\\nshade\\nshaded\\nshader\\nshaders\\nshades\\nshadflies\\nshadfly\\nshadier\\nshadiest\\nshadily\\nshading\\nshadings\\nshadoof\\nshadoofs\\nshadow\\nshadowed\\nshadower\\nshadowers\\nshadowier\\nshadowiest\\nshadowing\\nshadows\\nshadowy\\nshadrach\\nshadrachs\\nshads\\nshaduf\\nshadufs\\nshady\\nshaft\\nshafted\\nshafting\\nshaftings\\nshafts\\nshag\\nshagbark\\nshagbarks\\nshagged\\nshaggier\\nshaggiest\\nshaggily\\nshagging\\nshaggy\\nshagreen\\nshagreens\\nshags\\nshah\\nshahdom\\nshahdoms\\nshahs\\nshaird\\nshairds\\nshairn\\nshairns\\nshaitan\\nshaitans\\nshakable\\nshake\\nshaken\\nshakeout\\nshakeouts\\nshaker\\nshakers\\nshakes\\nshakeup\\nshakeups\\nshakier\\nshakiest\\nshakily\\nshakiness\\nshakinesses\\nshaking\\nshako\\nshakoes\\nshakos\\nshaky\\nshale\\nshaled\\nshales\\nshalier\\nshaliest\\nshall\\nshalloon\\nshalloons\\nshallop\\nshallops\\nshallot\\nshallots\\nshallow\\nshallowed\\nshallower\\nshallowest\\nshallowing\\nshallows\\nshalom\\nshalt\\nshaly\\nsham\\nshamable\\nshaman\\nshamanic\\nshamans\\nshamble\\nshambled\\nshambles\\nshambling\\nshame\\nshamed\\nshamefaced\\nshameful\\nshamefully\\nshameless\\nshamelessly\\nshames\\nshaming\\nshammas\\nshammash\\nshammashim\\nshammasim\\nshammed\\nshammer\\nshammers\\nshammes\\nshammied\\nshammies\\nshamming\\nshammos\\nshammosim\\nshammy\\nshammying\\nshamois\\nshamosim\\nshamoy\\nshamoyed\\nshamoying\\nshamoys\\nshampoo\\nshampooed\\nshampooing\\nshampoos\\nshamrock\\nshamrocks\\nshams\\nshamus\\nshamuses\\nshandies\\nshandy\\nshanghai\\nshanghaied\\nshanghaiing\\nshanghais\\nshank\\nshanked\\nshanking\\nshanks\\nshantey\\nshanteys\\nshanti\\nshanties\\nshantih\\nshantihs\\nshantis\\nshantung\\nshantungs\\nshanty\\nshapable\\nshape\\nshaped\\nshapeless\\nshapelier\\nshapeliest\\nshapely\\nshapen\\nshaper\\nshapers\\nshapes\\nshapeup\\nshapeups\\nshaping\\nsharable\\nshard\\nshards\\nshare\\nsharecrop\\nsharecroped\\nsharecroping\\nsharecropper\\nsharecroppers\\nsharecrops\\nshared\\nshareholder\\nshareholders\\nsharer\\nsharers\\nshares\\nsharif\\nsharifs\\nsharing\\nshark\\nsharked\\nsharker\\nsharkers\\nsharking\\nsharks\\nsharn\\nsharns\\nsharny\\nsharp\\nsharped\\nsharpen\\nsharpened\\nsharpener\\nsharpeners\\nsharpening\\nsharpens\\nsharper\\nsharpers\\nsharpest\\nsharpie\\nsharpies\\nsharping\\nsharply\\nsharpness\\nsharpnesses\\nsharps\\nsharpshooter\\nsharpshooters\\nsharpshooting\\nsharpshootings\\nsharpy\\nshashlik\\nshashliks\\nshaslik\\nshasliks\\nshat\\nshatter\\nshattered\\nshattering\\nshatters\\nshaugh\\nshaughs\\nshaul\\nshauled\\nshauling\\nshauls\\nshavable\\nshave\\nshaved\\nshaven\\nshaver\\nshavers\\nshaves\\nshavie\\nshavies\\nshaving\\nshavings\\nshaw\\nshawed\\nshawing\\nshawl\\nshawled\\nshawling\\nshawls\\nshawm\\nshawms\\nshawn\\nshaws\\nshay\\nshays\\nshe\\nshea\\nsheaf\\nsheafed\\nsheafing\\nsheafs\\nsheal\\nshealing\\nshealings\\nsheals\\nshear\\nsheared\\nshearer\\nshearers\\nshearing\\nshears\\nsheas\\nsheath\\nsheathe\\nsheathed\\nsheather\\nsheathers\\nsheathes\\nsheathing\\nsheaths\\nsheave\\nsheaved\\nsheaves\\nsheaving\\nshebang\\nshebangs\\nshebean\\nshebeans\\nshebeen\\nshebeens\\nshed\\nshedable\\nshedded\\nshedder\\nshedders\\nshedding\\nsheds\\nsheen\\nsheened\\nsheeney\\nsheeneys\\nsheenful\\nsheenie\\nsheenier\\nsheenies\\nsheeniest\\nsheening\\nsheens\\nsheeny\\nsheep\\nsheepdog\\nsheepdogs\\nsheepish\\nsheepman\\nsheepmen\\nsheepskin\\nsheepskins\\nsheer\\nsheered\\nsheerer\\nsheerest\\nsheering\\nsheerly\\nsheers\\nsheet\\nsheeted\\nsheeter\\nsheeters\\nsheetfed\\nsheeting\\nsheetings\\nsheets\\nsheeve\\nsheeves\\nshegetz\\nsheik\\nsheikdom\\nsheikdoms\\nsheikh\\nsheikhdom\\nsheikhdoms\\nsheikhs\\nsheiks\\nsheitan\\nsheitans\\nshekel\\nshekels\\nshelduck\\nshelducks\\nshelf\\nshelfful\\nshelffuls\\nshell\\nshellac\\nshellack\\nshellacked\\nshellacking\\nshellackings\\nshellacks\\nshellacs\\nshelled\\nsheller\\nshellers\\nshellfish\\nshellfishes\\nshellier\\nshelliest\\nshelling\\nshells\\nshelly\\nshelter\\nsheltered\\nsheltering\\nshelters\\nsheltie\\nshelties\\nshelty\\nshelve\\nshelved\\nshelver\\nshelvers\\nshelves\\nshelvier\\nshelviest\\nshelving\\nshelvings\\nshelvy\\nshenanigans\\nshend\\nshending\\nshends\\nshent\\nsheol\\nsheols\\nshepherd\\nshepherded\\nshepherdess\\nshepherdesses\\nshepherding\\nshepherds\\nsherbert\\nsherberts\\nsherbet\\nsherbets\\nsherd\\nsherds\\nshereef\\nshereefs\\nsherif\\nsheriff\\nsheriffs\\nsherifs\\nsherlock\\nsherlocks\\nsheroot\\nsheroots\\nsherries\\nsherris\\nsherrises\\nsherry\\nshes\\nshetland\\nshetlands\\nsheuch\\nsheuchs\\nsheugh\\nsheughs\\nshew\\nshewed\\nshewer\\nshewers\\nshewing\\nshewn\\nshews\\nshh\\nshibah\\nshibahs\\nshicksa\\nshicksas\\nshied\\nshiel\\nshield\\nshielded\\nshielder\\nshielders\\nshielding\\nshields\\nshieling\\nshielings\\nshiels\\nshier\\nshiers\\nshies\\nshiest\\nshift\\nshifted\\nshifter\\nshifters\\nshiftier\\nshiftiest\\nshiftily\\nshifting\\nshiftless\\nshiftlessness\\nshiftlessnesses\\nshifts\\nshifty\\nshigella\\nshigellae\\nshigellas\\nshikar\\nshikaree\\nshikarees\\nshikari\\nshikaris\\nshikarred\\nshikarring\\nshikars\\nshiksa\\nshiksas\\nshikse\\nshikses\\nshilingi\\nshill\\nshillala\\nshillalas\\nshilled\\nshillelagh\\nshillelaghs\\nshilling\\nshillings\\nshills\\nshilpit\\nshily\\nshim\\nshimmed\\nshimmer\\nshimmered\\nshimmering\\nshimmers\\nshimmery\\nshimmied\\nshimmies\\nshimming\\nshimmy\\nshimmying\\nshims\\nshin\\nshinbone\\nshinbones\\nshindies\\nshindig\\nshindigs\\nshindy\\nshindys\\nshine\\nshined\\nshiner\\nshiners\\nshines\\nshingle\\nshingled\\nshingler\\nshinglers\\nshingles\\nshingling\\nshingly\\nshinier\\nshiniest\\nshinily\\nshining\\nshinleaf\\nshinleafs\\nshinleaves\\nshinned\\nshinneries\\nshinnery\\nshinney\\nshinneys\\nshinnied\\nshinnies\\nshinning\\nshinny\\nshinnying\\nshins\\nshiny\\nship\\nshipboard\\nshipboards\\nshipbuilder\\nshipbuilders\\nshiplap\\nshiplaps\\nshipload\\nshiploads\\nshipman\\nshipmate\\nshipmates\\nshipmen\\nshipment\\nshipments\\nshipped\\nshippen\\nshippens\\nshipper\\nshippers\\nshipping\\nshippings\\nshippon\\nshippons\\nships\\nshipshape\\nshipside\\nshipsides\\nshipway\\nshipways\\nshipworm\\nshipworms\\nshipwreck\\nshipwrecked\\nshipwrecking\\nshipwrecks\\nshipyard\\nshipyards\\nshire\\nshires\\nshirk\\nshirked\\nshirker\\nshirkers\\nshirking\\nshirks\\nshirr\\nshirred\\nshirring\\nshirrings\\nshirrs\\nshirt\\nshirtier\\nshirtiest\\nshirting\\nshirtings\\nshirtless\\nshirts\\nshirty\\nshist\\nshists\\nshiv\\nshiva\\nshivah\\nshivahs\\nshivaree\\nshivareed\\nshivareeing\\nshivarees\\nshivas\\nshive\\nshiver\\nshivered\\nshiverer\\nshiverers\\nshivering\\nshivers\\nshivery\\nshives\\nshivs\\nshkotzim\\nshlemiel\\nshlemiels\\nshlock\\nshlocks\\nshmo\\nshmoes\\nshnaps\\nshoal\\nshoaled\\nshoaler\\nshoalest\\nshoalier\\nshoaliest\\nshoaling\\nshoals\\nshoaly\\nshoat\\nshoats\\nshock\\nshocked\\nshocker\\nshockers\\nshocking\\nshockproof\\nshocks\\nshod\\nshodden\\nshoddier\\nshoddies\\nshoddiest\\nshoddily\\nshoddiness\\nshoddinesses\\nshoddy\\nshoe\\nshoebill\\nshoebills\\nshoed\\nshoehorn\\nshoehorned\\nshoehorning\\nshoehorns\\nshoeing\\nshoelace\\nshoelaces\\nshoemaker\\nshoemakers\\nshoepac\\nshoepack\\nshoepacks\\nshoepacs\\nshoer\\nshoers\\nshoes\\nshoetree\\nshoetrees\\nshofar\\nshofars\\nshofroth\\nshog\\nshogged\\nshogging\\nshogs\\nshogun\\nshogunal\\nshoguns\\nshoji\\nshojis\\nsholom\\nshone\\nshoo\\nshooed\\nshooflies\\nshoofly\\nshooing\\nshook\\nshooks\\nshool\\nshooled\\nshooling\\nshools\\nshoon\\nshoos\\nshoot\\nshooter\\nshooters\\nshooting\\nshootings\\nshoots\\nshop\\nshopboy\\nshopboys\\nshopgirl\\nshopgirls\\nshophar\\nshophars\\nshophroth\\nshopkeeper\\nshopkeepers\\nshoplift\\nshoplifted\\nshoplifter\\nshoplifters\\nshoplifting\\nshoplifts\\nshopman\\nshopmen\\nshoppe\\nshopped\\nshopper\\nshoppers\\nshoppes\\nshopping\\nshoppings\\nshops\\nshoptalk\\nshoptalks\\nshopworn\\nshoran\\nshorans\\nshore\\nshorebird\\nshorebirds\\nshored\\nshoreless\\nshores\\nshoring\\nshorings\\nshorl\\nshorls\\nshorn\\nshort\\nshortage\\nshortages\\nshortcake\\nshortcakes\\nshortchange\\nshortchanged\\nshortchanges\\nshortchanging\\nshortcoming\\nshortcomings\\nshortcut\\nshortcuts\\nshorted\\nshorten\\nshortened\\nshortening\\nshortens\\nshorter\\nshortest\\nshorthand\\nshorthands\\nshortia\\nshortias\\nshortie\\nshorties\\nshorting\\nshortish\\nshortliffe\\nshortly\\nshortness\\nshortnesses\\nshorts\\nshortsighted\\nshorty\\nshot\\nshote\\nshotes\\nshotgun\\nshotgunned\\nshotgunning\\nshotguns\\nshots\\nshott\\nshotted\\nshotten\\nshotting\\nshotts\\nshould\\nshoulder\\nshouldered\\nshouldering\\nshoulders\\nshouldest\\nshouldst\\nshout\\nshouted\\nshouter\\nshouters\\nshouting\\nshouts\\nshove\\nshoved\\nshovel\\nshoveled\\nshoveler\\nshovelers\\nshoveling\\nshovelled\\nshovelling\\nshovels\\nshover\\nshovers\\nshoves\\nshoving\\nshow\\nshowboat\\nshowboats\\nshowcase\\nshowcased\\nshowcases\\nshowcasing\\nshowdown\\nshowdowns\\nshowed\\nshower\\nshowered\\nshowering\\nshowers\\nshowery\\nshowgirl\\nshowgirls\\nshowier\\nshowiest\\nshowily\\nshowiness\\nshowinesses\\nshowing\\nshowings\\nshowman\\nshowmen\\nshown\\nshowoff\\nshowoffs\\nshowroom\\nshowrooms\\nshows\\nshowy\\nshrank\\nshrapnel\\nshred\\nshredded\\nshredder\\nshredders\\nshredding\\nshreds\\nshrew\\nshrewd\\nshrewder\\nshrewdest\\nshrewdly\\nshrewdness\\nshrewdnesses\\nshrewed\\nshrewing\\nshrewish\\nshrews\\nshri\\nshriek\\nshrieked\\nshrieker\\nshriekers\\nshriekier\\nshriekiest\\nshrieking\\nshrieks\\nshrieky\\nshrieval\\nshrieve\\nshrieved\\nshrieves\\nshrieving\\nshrift\\nshrifts\\nshrike\\nshrikes\\nshrill\\nshrilled\\nshriller\\nshrillest\\nshrilling\\nshrills\\nshrilly\\nshrimp\\nshrimped\\nshrimper\\nshrimpers\\nshrimpier\\nshrimpiest\\nshrimping\\nshrimps\\nshrimpy\\nshrine\\nshrined\\nshrines\\nshrining\\nshrink\\nshrinkable\\nshrinkage\\nshrinkages\\nshrinker\\nshrinkers\\nshrinking\\nshrinks\\nshris\\nshrive\\nshrived\\nshrivel\\nshriveled\\nshriveling\\nshrivelled\\nshrivelling\\nshrivels\\nshriven\\nshriver\\nshrivers\\nshrives\\nshriving\\nshroff\\nshroffed\\nshroffing\\nshroffs\\nshroud\\nshrouded\\nshrouding\\nshrouds\\nshrove\\nshrub\\nshrubberies\\nshrubbery\\nshrubbier\\nshrubbiest\\nshrubby\\nshrubs\\nshrug\\nshrugged\\nshrugging\\nshrugs\\nshrunk\\nshrunken\\nshtetel\\nshtetl\\nshtetlach\\nshtick\\nshticks\\nshuck\\nshucked\\nshucker\\nshuckers\\nshucking\\nshuckings\\nshucks\\nshudder\\nshuddered\\nshuddering\\nshudders\\nshuddery\\nshuffle\\nshuffleboard\\nshuffleboards\\nshuffled\\nshuffler\\nshufflers\\nshuffles\\nshuffling\\nshul\\nshuln\\nshuls\\nshun\\nshunned\\nshunner\\nshunners\\nshunning\\nshunpike\\nshunpikes\\nshuns\\nshunt\\nshunted\\nshunter\\nshunters\\nshunting\\nshunts\\nshush\\nshushed\\nshushes\\nshushing\\nshut\\nshutdown\\nshutdowns\\nshute\\nshuted\\nshutes\\nshuteye\\nshuteyes\\nshuting\\nshutoff\\nshutoffs\\nshutout\\nshutouts\\nshuts\\nshutter\\nshuttered\\nshuttering\\nshutters\\nshutting\\nshuttle\\nshuttlecock\\nshuttlecocks\\nshuttled\\nshuttles\\nshuttling\\nshwanpan\\nshwanpans\\nshy\\nshyer\\nshyers\\nshyest\\nshying\\nshylock\\nshylocked\\nshylocking\\nshylocks\\nshyly\\nshyness\\nshynesses\\nshyster\\nshysters\\nsi\\nsial\\nsialic\\nsialoid\\nsials\\nsiamang\\nsiamangs\\nsiamese\\nsiameses\\nsib\\nsibb\\nsibbs\\nsibilant\\nsibilants\\nsibilate\\nsibilated\\nsibilates\\nsibilating\\nsibling\\nsiblings\\nsibs\\nsibyl\\nsibylic\\nsibyllic\\nsibyls\\nsic\\nsiccan\\nsicced\\nsiccing\\nsice\\nsices\\nsick\\nsickbay\\nsickbays\\nsickbed\\nsickbeds\\nsicked\\nsicken\\nsickened\\nsickener\\nsickeners\\nsickening\\nsickens\\nsicker\\nsickerly\\nsickest\\nsicking\\nsickish\\nsickle\\nsickled\\nsickles\\nsicklied\\nsicklier\\nsicklies\\nsickliest\\nsicklily\\nsickling\\nsickly\\nsicklying\\nsickness\\nsicknesses\\nsickroom\\nsickrooms\\nsicks\\nsics\\nsiddur\\nsiddurim\\nsiddurs\\nside\\nsidearm\\nsideband\\nsidebands\\nsideboard\\nsideboards\\nsideburns\\nsidecar\\nsidecars\\nsided\\nsidehill\\nsidehills\\nsidekick\\nsidekicks\\nsideline\\nsidelined\\nsidelines\\nsideling\\nsidelining\\nsidelong\\nsideman\\nsidemen\\nsidereal\\nsiderite\\nsiderites\\nsides\\nsideshow\\nsideshows\\nsideslip\\nsideslipped\\nsideslipping\\nsideslips\\nsidespin\\nsidespins\\nsidestep\\nsidestepped\\nsidestepping\\nsidesteps\\nsideswipe\\nsideswiped\\nsideswipes\\nsideswiping\\nsidetrack\\nsidetracked\\nsidetracking\\nsidetracks\\nsidewalk\\nsidewalks\\nsidewall\\nsidewalls\\nsideward\\nsideway\\nsideways\\nsidewise\\nsiding\\nsidings\\nsidle\\nsidled\\nsidler\\nsidlers\\nsidles\\nsidling\\nsiege\\nsieged\\nsieges\\nsieging\\nsiemens\\nsienite\\nsienites\\nsienna\\nsiennas\\nsierozem\\nsierozems\\nsierra\\nsierran\\nsierras\\nsiesta\\nsiestas\\nsieur\\nsieurs\\nsieva\\nsieve\\nsieved\\nsieves\\nsieving\\nsiffleur\\nsiffleurs\\nsift\\nsifted\\nsifter\\nsifters\\nsifting\\nsiftings\\nsifts\\nsiganid\\nsiganids\\nsigh\\nsighed\\nsigher\\nsighers\\nsighing\\nsighless\\nsighlike\\nsighs\\nsight\\nsighted\\nsighter\\nsighters\\nsighting\\nsightless\\nsightlier\\nsightliest\\nsightly\\nsights\\nsightsaw\\nsightsee\\nsightseeing\\nsightseen\\nsightseer\\nsightseers\\nsightsees\\nsigil\\nsigils\\nsigloi\\nsiglos\\nsigma\\nsigmas\\nsigmate\\nsigmoid\\nsigmoids\\nsign\\nsignal\\nsignaled\\nsignaler\\nsignalers\\nsignaling\\nsignalled\\nsignalling\\nsignally\\nsignals\\nsignatories\\nsignatory\\nsignature\\nsignatures\\nsigned\\nsigner\\nsigners\\nsignet\\nsigneted\\nsigneting\\nsignets\\nsignficance\\nsignficances\\nsignficant\\nsignficantly\\nsignificance\\nsignificances\\nsignificant\\nsignificantly\\nsignification\\nsignifications\\nsignified\\nsignifies\\nsignify\\nsignifying\\nsigning\\nsignior\\nsigniori\\nsigniories\\nsigniors\\nsigniory\\nsignor\\nsignora\\nsignoras\\nsignore\\nsignori\\nsignories\\nsignors\\nsignory\\nsignpost\\nsignposted\\nsignposting\\nsignposts\\nsigns\\nsike\\nsiker\\nsikes\\nsilage\\nsilages\\nsilane\\nsilanes\\nsild\\nsilds\\nsilence\\nsilenced\\nsilencer\\nsilencers\\nsilences\\nsilencing\\nsileni\\nsilent\\nsilenter\\nsilentest\\nsilently\\nsilents\\nsilenus\\nsilesia\\nsilesias\\nsilex\\nsilexes\\nsilhouette\\nsilhouetted\\nsilhouettes\\nsilhouetting\\nsilica\\nsilicas\\nsilicate\\nsilicates\\nsilicic\\nsilicide\\nsilicides\\nsilicified\\nsilicifies\\nsilicify\\nsilicifying\\nsilicium\\nsiliciums\\nsilicle\\nsilicles\\nsilicon\\nsilicone\\nsilicones\\nsilicons\\nsiliqua\\nsiliquae\\nsilique\\nsiliques\\nsilk\\nsilked\\nsilken\\nsilkier\\nsilkiest\\nsilkily\\nsilking\\nsilklike\\nsilks\\nsilkweed\\nsilkweeds\\nsilkworm\\nsilkworms\\nsilky\\nsill\\nsillabub\\nsillabubs\\nsiller\\nsillers\\nsillibib\\nsillibibs\\nsillier\\nsillies\\nsilliest\\nsillily\\nsilliness\\nsillinesses\\nsills\\nsilly\\nsilo\\nsiloed\\nsiloing\\nsilos\\nsiloxane\\nsiloxanes\\nsilt\\nsilted\\nsiltier\\nsiltiest\\nsilting\\nsilts\\nsilty\\nsilurid\\nsilurids\\nsiluroid\\nsiluroids\\nsilva\\nsilvae\\nsilvan\\nsilvans\\nsilvas\\nsilver\\nsilvered\\nsilverer\\nsilverers\\nsilvering\\nsilverly\\nsilvern\\nsilvers\\nsilverware\\nsilverwares\\nsilvery\\nsilvical\\nsilvics\\nsim\\nsima\\nsimar\\nsimars\\nsimaruba\\nsimarubas\\nsimas\\nsimazine\\nsimazines\\nsimian\\nsimians\\nsimilar\\nsimilarities\\nsimilarity\\nsimilarly\\nsimile\\nsimiles\\nsimilitude\\nsimilitudes\\nsimioid\\nsimious\\nsimitar\\nsimitars\\nsimlin\\nsimlins\\nsimmer\\nsimmered\\nsimmering\\nsimmers\\nsimnel\\nsimnels\\nsimoleon\\nsimoleons\\nsimoniac\\nsimoniacs\\nsimonies\\nsimonist\\nsimonists\\nsimonize\\nsimonized\\nsimonizes\\nsimonizing\\nsimony\\nsimoom\\nsimooms\\nsimoon\\nsimoons\\nsimp\\nsimper\\nsimpered\\nsimperer\\nsimperers\\nsimpering\\nsimpers\\nsimple\\nsimpleness\\nsimplenesses\\nsimpler\\nsimples\\nsimplest\\nsimpleton\\nsimpletons\\nsimplex\\nsimplexes\\nsimplices\\nsimplicia\\nsimplicities\\nsimplicity\\nsimplification\\nsimplifications\\nsimplified\\nsimplifies\\nsimplify\\nsimplifying\\nsimplism\\nsimplisms\\nsimply\\nsimps\\nsims\\nsimulant\\nsimulants\\nsimular\\nsimulars\\nsimulate\\nsimulated\\nsimulates\\nsimulating\\nsimulation\\nsimulations\\nsimultaneous\\nsimultaneously\\nsimultaneousness\\nsimultaneousnesses\\nsin\\nsinapism\\nsinapisms\\nsince\\nsincere\\nsincerely\\nsincerer\\nsincerest\\nsincerities\\nsincerity\\nsincipita\\nsinciput\\nsinciputs\\nsine\\nsinecure\\nsinecures\\nsines\\nsinew\\nsinewed\\nsinewing\\nsinews\\nsinewy\\nsinfonia\\nsinfonie\\nsinful\\nsinfully\\nsing\\nsingable\\nsinge\\nsinged\\nsingeing\\nsinger\\nsingers\\nsinges\\nsinging\\nsingle\\nsingled\\nsingleness\\nsinglenesses\\nsingles\\nsinglet\\nsinglets\\nsingling\\nsingly\\nsings\\nsingsong\\nsingsongs\\nsingular\\nsingularities\\nsingularity\\nsingularly\\nsingulars\\nsinh\\nsinhs\\nsinicize\\nsinicized\\nsinicizes\\nsinicizing\\nsinister\\nsink\\nsinkable\\nsinkage\\nsinkages\\nsinker\\nsinkers\\nsinkhole\\nsinkholes\\nsinking\\nsinks\\nsinless\\nsinned\\nsinner\\nsinners\\nsinning\\nsinologies\\nsinology\\nsinopia\\nsinopias\\nsinopie\\nsins\\nsinsyne\\nsinter\\nsintered\\nsintering\\nsinters\\nsinuate\\nsinuated\\nsinuates\\nsinuating\\nsinuous\\nsinuousities\\nsinuousity\\nsinuously\\nsinus\\nsinuses\\nsinusoid\\nsinusoids\\nsip\\nsipe\\nsiped\\nsipes\\nsiphon\\nsiphonal\\nsiphoned\\nsiphonic\\nsiphoning\\nsiphons\\nsiping\\nsipped\\nsipper\\nsippers\\nsippet\\nsippets\\nsipping\\nsips\\nsir\\nsirdar\\nsirdars\\nsire\\nsired\\nsiree\\nsirees\\nsiren\\nsirenian\\nsirenians\\nsirens\\nsires\\nsiring\\nsirloin\\nsirloins\\nsirocco\\nsiroccos\\nsirra\\nsirrah\\nsirrahs\\nsirras\\nsirree\\nsirrees\\nsirs\\nsirup\\nsirups\\nsirupy\\nsirvente\\nsirventes\\nsis\\nsisal\\nsisals\\nsises\\nsiskin\\nsiskins\\nsissier\\nsissies\\nsissiest\\nsissy\\nsissyish\\nsister\\nsistered\\nsisterhood\\nsisterhoods\\nsistering\\nsisterly\\nsisters\\nsistra\\nsistroid\\nsistrum\\nsistrums\\nsit\\nsitar\\nsitarist\\nsitarists\\nsitars\\nsite\\nsited\\nsites\\nsith\\nsithence\\nsithens\\nsiti\\nsiting\\nsitologies\\nsitology\\nsits\\nsitten\\nsitter\\nsitters\\nsitting\\nsittings\\nsituate\\nsituated\\nsituates\\nsituating\\nsituation\\nsituations\\nsitus\\nsituses\\nsitzmark\\nsitzmarks\\nsiver\\nsivers\\nsix\\nsixes\\nsixfold\\nsixmo\\nsixmos\\nsixpence\\nsixpences\\nsixpenny\\nsixte\\nsixteen\\nsixteens\\nsixteenth\\nsixteenths\\nsixtes\\nsixth\\nsixthly\\nsixths\\nsixties\\nsixtieth\\nsixtieths\\nsixty\\nsizable\\nsizably\\nsizar\\nsizars\\nsize\\nsizeable\\nsizeably\\nsized\\nsizer\\nsizers\\nsizes\\nsizier\\nsiziest\\nsiziness\\nsizinesses\\nsizing\\nsizings\\nsizy\\nsizzle\\nsizzled\\nsizzler\\nsizzlers\\nsizzles\\nsizzling\\nskag\\nskags\\nskald\\nskaldic\\nskalds\\nskat\\nskate\\nskated\\nskater\\nskaters\\nskates\\nskating\\nskatings\\nskatol\\nskatole\\nskatoles\\nskatols\\nskats\\nskean\\nskeane\\nskeanes\\nskeans\\nskee\\nskeed\\nskeeing\\nskeen\\nskeens\\nskees\\nskeet\\nskeeter\\nskeeters\\nskeets\\nskeg\\nskegs\\nskeigh\\nskein\\nskeined\\nskeining\\nskeins\\nskeletal\\nskeleton\\nskeletons\\nskellum\\nskellums\\nskelp\\nskelped\\nskelping\\nskelpit\\nskelps\\nskelter\\nskeltered\\nskeltering\\nskelters\\nskene\\nskenes\\nskep\\nskeps\\nskepsis\\nskepsises\\nskeptic\\nskeptical\\nskepticism\\nskepticisms\\nskeptics\\nskerries\\nskerry\\nsketch\\nsketched\\nsketcher\\nsketchers\\nsketches\\nsketchier\\nsketchiest\\nsketching\\nsketchy\\nskew\\nskewback\\nskewbacks\\nskewbald\\nskewbalds\\nskewed\\nskewer\\nskewered\\nskewering\\nskewers\\nskewing\\nskewness\\nskewnesses\\nskews\\nski\\nskiable\\nskiagram\\nskiagrams\\nskibob\\nskibobs\\nskid\\nskidded\\nskidder\\nskidders\\nskiddier\\nskiddiest\\nskidding\\nskiddoo\\nskiddooed\\nskiddooing\\nskiddoos\\nskiddy\\nskidoo\\nskidooed\\nskidooing\\nskidoos\\nskids\\nskidway\\nskidways\\nskied\\nskier\\nskiers\\nskies\\nskiey\\nskiff\\nskiffle\\nskiffled\\nskiffles\\nskiffling\\nskiffs\\nskiing\\nskiings\\nskiis\\nskijorer\\nskijorers\\nskilful\\nskill\\nskilled\\nskilless\\nskillet\\nskillets\\nskillful\\nskillfully\\nskillfulness\\nskillfulnesses\\nskilling\\nskillings\\nskills\\nskim\\nskimmed\\nskimmer\\nskimmers\\nskimming\\nskimmings\\nskimo\\nskimos\\nskimp\\nskimped\\nskimpier\\nskimpiest\\nskimpily\\nskimping\\nskimps\\nskimpy\\nskims\\nskin\\nskinflint\\nskinflints\\nskinful\\nskinfuls\\nskinhead\\nskinheads\\nskink\\nskinked\\nskinker\\nskinkers\\nskinking\\nskinks\\nskinless\\nskinlike\\nskinned\\nskinner\\nskinners\\nskinnier\\nskinniest\\nskinning\\nskinny\\nskins\\nskint\\nskintight\\nskioring\\nskiorings\\nskip\\nskipjack\\nskipjacks\\nskiplane\\nskiplanes\\nskipped\\nskipper\\nskippered\\nskippering\\nskippers\\nskippet\\nskippets\\nskipping\\nskips\\nskirl\\nskirled\\nskirling\\nskirls\\nskirmish\\nskirmished\\nskirmishes\\nskirmishing\\nskirr\\nskirred\\nskirret\\nskirrets\\nskirring\\nskirrs\\nskirt\\nskirted\\nskirter\\nskirters\\nskirting\\nskirtings\\nskirts\\nskis\\nskit\\nskite\\nskited\\nskites\\nskiting\\nskits\\nskitter\\nskittered\\nskitterier\\nskitteriest\\nskittering\\nskitters\\nskittery\\nskittish\\nskittle\\nskittles\\nskive\\nskived\\nskiver\\nskivers\\nskives\\nskiving\\nskivvies\\nskivvy\\nskiwear\\nskiwears\\nsklent\\nsklented\\nsklenting\\nsklents\\nskoal\\nskoaled\\nskoaling\\nskoals\\nskookum\\nskreegh\\nskreeghed\\nskreeghing\\nskreeghs\\nskreigh\\nskreighed\\nskreighing\\nskreighs\\nskua\\nskuas\\nskulk\\nskulked\\nskulker\\nskulkers\\nskulking\\nskulks\\nskull\\nskullcap\\nskullcaps\\nskulled\\nskulls\\nskunk\\nskunked\\nskunking\\nskunks\\nsky\\nskyborne\\nskycap\\nskycaps\\nskydive\\nskydived\\nskydiver\\nskydivers\\nskydives\\nskydiving\\nskydove\\nskyed\\nskyey\\nskyhook\\nskyhooks\\nskying\\nskyjack\\nskyjacked\\nskyjacking\\nskyjacks\\nskylark\\nskylarked\\nskylarking\\nskylarks\\nskylight\\nskylights\\nskyline\\nskylines\\nskyman\\nskymen\\nskyphoi\\nskyphos\\nskyrocket\\nskyrocketed\\nskyrocketing\\nskyrockets\\nskysail\\nskysails\\nskyscraper\\nskyscrapers\\nskyward\\nskywards\\nskyway\\nskyways\\nskywrite\\nskywrites\\nskywriting\\nskywritten\\nskywrote\\nslab\\nslabbed\\nslabber\\nslabbered\\nslabbering\\nslabbers\\nslabbery\\nslabbing\\nslabs\\nslack\\nslacked\\nslacken\\nslackened\\nslackening\\nslackens\\nslacker\\nslackers\\nslackest\\nslacking\\nslackly\\nslackness\\nslacknesses\\nslacks\\nslag\\nslagged\\nslaggier\\nslaggiest\\nslagging\\nslaggy\\nslags\\nslain\\nslakable\\nslake\\nslaked\\nslaker\\nslakers\\nslakes\\nslaking\\nslalom\\nslalomed\\nslaloming\\nslaloms\\nslam\\nslammed\\nslamming\\nslams\\nslander\\nslandered\\nslanderer\\nslanderers\\nslandering\\nslanderous\\nslanders\\nslang\\nslanged\\nslangier\\nslangiest\\nslangily\\nslanging\\nslangs\\nslangy\\nslank\\nslant\\nslanted\\nslanting\\nslants\\nslap\\nslapdash\\nslapdashes\\nslapjack\\nslapjacks\\nslapped\\nslapper\\nslappers\\nslapping\\nslaps\\nslash\\nslashed\\nslasher\\nslashers\\nslashes\\nslashing\\nslashings\\nslat\\nslatch\\nslatches\\nslate\\nslated\\nslater\\nslaters\\nslates\\nslather\\nslathered\\nslathering\\nslathers\\nslatier\\nslatiest\\nslating\\nslatings\\nslats\\nslatted\\nslattern\\nslatterns\\nslatting\\nslaty\\nslaughter\\nslaughtered\\nslaughterhouse\\nslaughterhouses\\nslaughtering\\nslaughters\\nslave\\nslaved\\nslaver\\nslavered\\nslaverer\\nslaverers\\nslaveries\\nslavering\\nslavers\\nslavery\\nslaves\\nslavey\\nslaveys\\nslaving\\nslavish\\nslaw\\nslaws\\nslay\\nslayer\\nslayers\\nslaying\\nslays\\nsleave\\nsleaved\\nsleaves\\nsleaving\\nsleazier\\nsleaziest\\nsleazily\\nsleazy\\nsled\\nsledded\\nsledder\\nsledders\\nsledding\\nsleddings\\nsledge\\nsledged\\nsledgehammer\\nsledgehammered\\nsledgehammering\\nsledgehammers\\nsledges\\nsledging\\nsleds\\nsleek\\nsleeked\\nsleeken\\nsleekened\\nsleekening\\nsleekens\\nsleeker\\nsleekest\\nsleekier\\nsleekiest\\nsleeking\\nsleekit\\nsleekly\\nsleeks\\nsleeky\\nsleep\\nsleeper\\nsleepers\\nsleepier\\nsleepiest\\nsleepily\\nsleepiness\\nsleeping\\nsleepings\\nsleepless\\nsleeplessness\\nsleeps\\nsleepwalk\\nsleepwalked\\nsleepwalker\\nsleepwalkers\\nsleepwalking\\nsleepwalks\\nsleepy\\nsleet\\nsleeted\\nsleetier\\nsleetiest\\nsleeting\\nsleets\\nsleety\\nsleeve\\nsleeved\\nsleeveless\\nsleeves\\nsleeving\\nsleigh\\nsleighed\\nsleigher\\nsleighers\\nsleighing\\nsleighs\\nsleight\\nsleights\\nslender\\nslenderer\\nslenderest\\nslept\\nsleuth\\nsleuthed\\nsleuthing\\nsleuths\\nslew\\nslewed\\nslewing\\nslews\\nslice\\nsliced\\nslicer\\nslicers\\nslices\\nslicing\\nslick\\nslicked\\nslicker\\nslickers\\nslickest\\nslicking\\nslickly\\nslicks\\nslid\\nslidable\\nslidden\\nslide\\nslider\\nsliders\\nslides\\nslideway\\nslideways\\nsliding\\nslier\\nsliest\\nslight\\nslighted\\nslighter\\nslightest\\nslighting\\nslightly\\nslights\\nslily\\nslim\\nslime\\nslimed\\nslimes\\nslimier\\nslimiest\\nslimily\\nsliming\\nslimly\\nslimmed\\nslimmer\\nslimmest\\nslimming\\nslimness\\nslimnesses\\nslimpsier\\nslimpsiest\\nslimpsy\\nslims\\nslimsier\\nslimsiest\\nslimsy\\nslimy\\nsling\\nslinger\\nslingers\\nslinging\\nslings\\nslingshot\\nslingshots\\nslink\\nslinkier\\nslinkiest\\nslinkily\\nslinking\\nslinks\\nslinky\\nslip\\nslipcase\\nslipcases\\nslipe\\nsliped\\nslipes\\nslipform\\nslipformed\\nslipforming\\nslipforms\\nsliping\\nslipknot\\nslipknots\\nslipless\\nslipout\\nslipouts\\nslipover\\nslipovers\\nslippage\\nslippages\\nslipped\\nslipper\\nslipperier\\nslipperiest\\nslipperiness\\nslipperinesses\\nslippers\\nslippery\\nslippier\\nslippiest\\nslipping\\nslippy\\nslips\\nslipshod\\nslipslop\\nslipslops\\nslipsole\\nslipsoles\\nslipt\\nslipup\\nslipups\\nslipware\\nslipwares\\nslipway\\nslipways\\nslit\\nslither\\nslithered\\nslithering\\nslithers\\nslithery\\nslitless\\nslits\\nslitted\\nslitter\\nslitters\\nslitting\\nsliver\\nslivered\\nsliverer\\nsliverers\\nslivering\\nslivers\\nslivovic\\nslivovics\\nslob\\nslobber\\nslobbered\\nslobbering\\nslobbers\\nslobbery\\nslobbish\\nslobs\\nsloe\\nsloes\\nslog\\nslogan\\nslogans\\nslogged\\nslogger\\nsloggers\\nslogging\\nslogs\\nsloid\\nsloids\\nslojd\\nslojds\\nsloop\\nsloops\\nslop\\nslope\\nsloped\\nsloper\\nslopers\\nslopes\\nsloping\\nslopped\\nsloppier\\nsloppiest\\nsloppily\\nslopping\\nsloppy\\nslops\\nslopwork\\nslopworks\\nslosh\\nsloshed\\nsloshes\\nsloshier\\nsloshiest\\nsloshing\\nsloshy\\nslot\\nslotback\\nslotbacks\\nsloth\\nslothful\\nsloths\\nslots\\nslotted\\nslotting\\nslouch\\nslouched\\nsloucher\\nslouchers\\nslouches\\nslouchier\\nslouchiest\\nslouching\\nslouchy\\nslough\\nsloughed\\nsloughier\\nsloughiest\\nsloughing\\nsloughs\\nsloughy\\nsloven\\nslovenlier\\nslovenliest\\nslovenly\\nslovens\\nslow\\nslowdown\\nslowdowns\\nslowed\\nslower\\nslowest\\nslowing\\nslowish\\nslowly\\nslowness\\nslownesses\\nslowpoke\\nslowpokes\\nslows\\nslowworm\\nslowworms\\nsloyd\\nsloyds\\nslub\\nslubbed\\nslubber\\nslubbered\\nslubbering\\nslubbers\\nslubbing\\nslubbings\\nslubs\\nsludge\\nsludges\\nsludgier\\nsludgiest\\nsludgy\\nslue\\nslued\\nslues\\nsluff\\nsluffed\\nsluffing\\nsluffs\\nslug\\nslugabed\\nslugabeds\\nslugfest\\nslugfests\\nsluggard\\nsluggards\\nslugged\\nslugger\\nsluggers\\nslugging\\nsluggish\\nsluggishly\\nsluggishness\\nsluggishnesses\\nslugs\\nsluice\\nsluiced\\nsluices\\nsluicing\\nsluicy\\nsluing\\nslum\\nslumber\\nslumbered\\nslumbering\\nslumbers\\nslumbery\\nslumgum\\nslumgums\\nslumlord\\nslumlords\\nslummed\\nslummer\\nslummers\\nslummier\\nslummiest\\nslumming\\nslummy\\nslump\\nslumped\\nslumping\\nslumps\\nslums\\nslung\\nslunk\\nslur\\nslurb\\nslurban\\nslurbs\\nslurp\\nslurped\\nslurping\\nslurps\\nslurred\\nslurried\\nslurries\\nslurring\\nslurry\\nslurrying\\nslurs\\nslush\\nslushed\\nslushes\\nslushier\\nslushiest\\nslushily\\nslushing\\nslushy\\nslut\\nsluts\\nsluttish\\nsly\\nslyboots\\nslyer\\nslyest\\nslyly\\nslyness\\nslynesses\\nslype\\nslypes\\nsmack\\nsmacked\\nsmacker\\nsmackers\\nsmacking\\nsmacks\\nsmall\\nsmallage\\nsmallages\\nsmaller\\nsmallest\\nsmallish\\nsmallness\\nsmallnesses\\nsmallpox\\nsmallpoxes\\nsmalls\\nsmalt\\nsmalti\\nsmaltine\\nsmaltines\\nsmaltite\\nsmaltites\\nsmalto\\nsmaltos\\nsmalts\\nsmaragd\\nsmaragde\\nsmaragdes\\nsmaragds\\nsmarm\\nsmarmier\\nsmarmiest\\nsmarms\\nsmarmy\\nsmart\\nsmarted\\nsmarten\\nsmartened\\nsmartening\\nsmartens\\nsmarter\\nsmartest\\nsmartie\\nsmarties\\nsmarting\\nsmartly\\nsmartness\\nsmartnesses\\nsmarts\\nsmarty\\nsmash\\nsmashed\\nsmasher\\nsmashers\\nsmashes\\nsmashing\\nsmashup\\nsmashups\\nsmatter\\nsmattered\\nsmattering\\nsmatterings\\nsmatters\\nsmaze\\nsmazes\\nsmear\\nsmeared\\nsmearer\\nsmearers\\nsmearier\\nsmeariest\\nsmearing\\nsmears\\nsmeary\\nsmectic\\nsmeddum\\nsmeddums\\nsmeek\\nsmeeked\\nsmeeking\\nsmeeks\\nsmegma\\nsmegmas\\nsmell\\nsmelled\\nsmeller\\nsmellers\\nsmellier\\nsmelliest\\nsmelling\\nsmells\\nsmelly\\nsmelt\\nsmelted\\nsmelter\\nsmelteries\\nsmelters\\nsmeltery\\nsmelting\\nsmelts\\nsmerk\\nsmerked\\nsmerking\\nsmerks\\nsmew\\nsmews\\nsmidgen\\nsmidgens\\nsmidgeon\\nsmidgeons\\nsmidgin\\nsmidgins\\nsmilax\\nsmilaxes\\nsmile\\nsmiled\\nsmiler\\nsmilers\\nsmiles\\nsmiling\\nsmirch\\nsmirched\\nsmirches\\nsmirching\\nsmirk\\nsmirked\\nsmirker\\nsmirkers\\nsmirkier\\nsmirkiest\\nsmirking\\nsmirks\\nsmirky\\nsmit\\nsmite\\nsmiter\\nsmiters\\nsmites\\nsmith\\nsmitheries\\nsmithery\\nsmithies\\nsmiths\\nsmithy\\nsmiting\\nsmitten\\nsmock\\nsmocked\\nsmocking\\nsmockings\\nsmocks\\nsmog\\nsmoggier\\nsmoggiest\\nsmoggy\\nsmogless\\nsmogs\\nsmokable\\nsmoke\\nsmoked\\nsmokeless\\nsmokepot\\nsmokepots\\nsmoker\\nsmokers\\nsmokes\\nsmokestack\\nsmokestacks\\nsmokey\\nsmokier\\nsmokiest\\nsmokily\\nsmoking\\nsmoky\\nsmolder\\nsmoldered\\nsmoldering\\nsmolders\\nsmolt\\nsmolts\\nsmooch\\nsmooched\\nsmooches\\nsmooching\\nsmoochy\\nsmooth\\nsmoothed\\nsmoothen\\nsmoothened\\nsmoothening\\nsmoothens\\nsmoother\\nsmoothers\\nsmoothest\\nsmoothie\\nsmoothies\\nsmoothing\\nsmoothly\\nsmoothness\\nsmoothnesses\\nsmooths\\nsmoothy\\nsmorgasbord\\nsmorgasbords\\nsmote\\nsmother\\nsmothered\\nsmothering\\nsmothers\\nsmothery\\nsmoulder\\nsmouldered\\nsmouldering\\nsmoulders\\nsmudge\\nsmudged\\nsmudges\\nsmudgier\\nsmudgiest\\nsmudgily\\nsmudging\\nsmudgy\\nsmug\\nsmugger\\nsmuggest\\nsmuggle\\nsmuggled\\nsmuggler\\nsmugglers\\nsmuggles\\nsmuggling\\nsmugly\\nsmugness\\nsmugnesses\\nsmut\\nsmutch\\nsmutched\\nsmutches\\nsmutchier\\nsmutchiest\\nsmutching\\nsmutchy\\nsmuts\\nsmutted\\nsmuttier\\nsmuttiest\\nsmuttily\\nsmutting\\nsmutty\\nsnack\\nsnacked\\nsnacking\\nsnacks\\nsnaffle\\nsnaffled\\nsnaffles\\nsnaffling\\nsnafu\\nsnafued\\nsnafuing\\nsnafus\\nsnag\\nsnagged\\nsnaggier\\nsnaggiest\\nsnagging\\nsnaggy\\nsnaglike\\nsnags\\nsnail\\nsnailed\\nsnailing\\nsnails\\nsnake\\nsnaked\\nsnakes\\nsnakier\\nsnakiest\\nsnakily\\nsnaking\\nsnaky\\nsnap\\nsnapback\\nsnapbacks\\nsnapdragon\\nsnapdragons\\nsnapless\\nsnapped\\nsnapper\\nsnappers\\nsnappier\\nsnappiest\\nsnappily\\nsnapping\\nsnappish\\nsnappy\\nsnaps\\nsnapshot\\nsnapshots\\nsnapshotted\\nsnapshotting\\nsnapweed\\nsnapweeds\\nsnare\\nsnared\\nsnarer\\nsnarers\\nsnares\\nsnaring\\nsnark\\nsnarks\\nsnarl\\nsnarled\\nsnarler\\nsnarlers\\nsnarlier\\nsnarliest\\nsnarling\\nsnarls\\nsnarly\\nsnash\\nsnashes\\nsnatch\\nsnatched\\nsnatcher\\nsnatchers\\nsnatches\\nsnatchier\\nsnatchiest\\nsnatching\\nsnatchy\\nsnath\\nsnathe\\nsnathes\\nsnaths\\nsnaw\\nsnawed\\nsnawing\\nsnaws\\nsnazzier\\nsnazziest\\nsnazzy\\nsneak\\nsneaked\\nsneaker\\nsneakers\\nsneakier\\nsneakiest\\nsneakily\\nsneaking\\nsneakingly\\nsneaks\\nsneaky\\nsneap\\nsneaped\\nsneaping\\nsneaps\\nsneck\\nsnecks\\nsned\\nsnedded\\nsnedding\\nsneds\\nsneer\\nsneered\\nsneerer\\nsneerers\\nsneerful\\nsneering\\nsneers\\nsneesh\\nsneeshes\\nsneeze\\nsneezed\\nsneezer\\nsneezers\\nsneezes\\nsneezier\\nsneeziest\\nsneezing\\nsneezy\\nsnell\\nsneller\\nsnellest\\nsnells\\nsnib\\nsnibbed\\nsnibbing\\nsnibs\\nsnick\\nsnicked\\nsnicker\\nsnickered\\nsnickering\\nsnickers\\nsnickery\\nsnicking\\nsnicks\\nsnide\\nsnidely\\nsnider\\nsnidest\\nsniff\\nsniffed\\nsniffer\\nsniffers\\nsniffier\\nsniffiest\\nsniffily\\nsniffing\\nsniffish\\nsniffle\\nsniffled\\nsniffler\\nsnifflers\\nsniffles\\nsniffling\\nsniffs\\nsniffy\\nsnifter\\nsnifters\\nsnigger\\nsniggered\\nsniggering\\nsniggers\\nsniggle\\nsniggled\\nsniggler\\nsnigglers\\nsniggles\\nsniggling\\nsnip\\nsnipe\\nsniped\\nsniper\\nsnipers\\nsnipes\\nsniping\\nsnipped\\nsnipper\\nsnippers\\nsnippet\\nsnippetier\\nsnippetiest\\nsnippets\\nsnippety\\nsnippier\\nsnippiest\\nsnippily\\nsnipping\\nsnippy\\nsnips\\nsnit\\nsnitch\\nsnitched\\nsnitcher\\nsnitchers\\nsnitches\\nsnitching\\nsnits\\nsnivel\\nsniveled\\nsniveler\\nsnivelers\\nsniveling\\nsnivelled\\nsnivelling\\nsnivels\\nsnob\\nsnobberies\\nsnobbery\\nsnobbier\\nsnobbiest\\nsnobbily\\nsnobbish\\nsnobbishly\\nsnobbishness\\nsnobbishnesses\\nsnobbism\\nsnobbisms\\nsnobby\\nsnobs\\nsnood\\nsnooded\\nsnooding\\nsnoods\\nsnook\\nsnooked\\nsnooker\\nsnookers\\nsnooking\\nsnooks\\nsnool\\nsnooled\\nsnooling\\nsnools\\nsnoop\\nsnooped\\nsnooper\\nsnoopers\\nsnoopier\\nsnoopiest\\nsnoopily\\nsnooping\\nsnoops\\nsnoopy\\nsnoot\\nsnooted\\nsnootier\\nsnootiest\\nsnootily\\nsnooting\\nsnoots\\nsnooty\\nsnooze\\nsnoozed\\nsnoozer\\nsnoozers\\nsnoozes\\nsnoozier\\nsnooziest\\nsnoozing\\nsnoozle\\nsnoozled\\nsnoozles\\nsnoozling\\nsnoozy\\nsnore\\nsnored\\nsnorer\\nsnorers\\nsnores\\nsnoring\\nsnorkel\\nsnorkeled\\nsnorkeling\\nsnorkels\\nsnort\\nsnorted\\nsnorter\\nsnorters\\nsnorting\\nsnorts\\nsnot\\nsnots\\nsnottier\\nsnottiest\\nsnottily\\nsnotty\\nsnout\\nsnouted\\nsnoutier\\nsnoutiest\\nsnouting\\nsnoutish\\nsnouts\\nsnouty\\nsnow\\nsnowball\\nsnowballed\\nsnowballing\\nsnowballs\\nsnowbank\\nsnowbanks\\nsnowbell\\nsnowbells\\nsnowbird\\nsnowbirds\\nsnowbush\\nsnowbushes\\nsnowcap\\nsnowcaps\\nsnowdrift\\nsnowdrifts\\nsnowdrop\\nsnowdrops\\nsnowed\\nsnowfall\\nsnowfalls\\nsnowflake\\nsnowflakes\\nsnowier\\nsnowiest\\nsnowily\\nsnowing\\nsnowland\\nsnowlands\\nsnowless\\nsnowlike\\nsnowman\\nsnowmelt\\nsnowmelts\\nsnowmen\\nsnowpack\\nsnowpacks\\nsnowplow\\nsnowplowed\\nsnowplowing\\nsnowplows\\nsnows\\nsnowshed\\nsnowsheds\\nsnowshoe\\nsnowshoed\\nsnowshoeing\\nsnowshoes\\nsnowstorm\\nsnowstorms\\nsnowsuit\\nsnowsuits\\nsnowy\\nsnub\\nsnubbed\\nsnubber\\nsnubbers\\nsnubbier\\nsnubbiest\\nsnubbing\\nsnubby\\nsnubness\\nsnubnesses\\nsnubs\\nsnuck\\nsnuff\\nsnuffbox\\nsnuffboxes\\nsnuffed\\nsnuffer\\nsnuffers\\nsnuffier\\nsnuffiest\\nsnuffily\\nsnuffing\\nsnuffle\\nsnuffled\\nsnuffler\\nsnufflers\\nsnuffles\\nsnufflier\\nsnuffliest\\nsnuffling\\nsnuffly\\nsnuffs\\nsnuffy\\nsnug\\nsnugged\\nsnugger\\nsnuggeries\\nsnuggery\\nsnuggest\\nsnugging\\nsnuggle\\nsnuggled\\nsnuggles\\nsnuggling\\nsnugly\\nsnugness\\nsnugnesses\\nsnugs\\nsnye\\nsnyes\\nso\\nsoak\\nsoakage\\nsoakages\\nsoaked\\nsoaker\\nsoakers\\nsoaking\\nsoaks\\nsoap\\nsoapbark\\nsoapbarks\\nsoapbox\\nsoapboxes\\nsoaped\\nsoapier\\nsoapiest\\nsoapily\\nsoaping\\nsoapless\\nsoaplike\\nsoaps\\nsoapsuds\\nsoapwort\\nsoapworts\\nsoapy\\nsoar\\nsoared\\nsoarer\\nsoarers\\nsoaring\\nsoarings\\nsoars\\nsoave\\nsoaves\\nsob\\nsobbed\\nsobber\\nsobbers\\nsobbing\\nsobeit\\nsober\\nsobered\\nsoberer\\nsoberest\\nsobering\\nsoberize\\nsoberized\\nsoberizes\\nsoberizing\\nsoberly\\nsobers\\nsobful\\nsobrieties\\nsobriety\\nsobs\\nsocage\\nsocager\\nsocagers\\nsocages\\nsoccage\\nsoccages\\nsoccer\\nsoccers\\nsociabilities\\nsociability\\nsociable\\nsociables\\nsociably\\nsocial\\nsocialism\\nsocialist\\nsocialistic\\nsocialists\\nsocialization\\nsocializations\\nsocialize\\nsocialized\\nsocializes\\nsocializing\\nsocially\\nsocials\\nsocietal\\nsocieties\\nsociety\\nsociological\\nsociologies\\nsociologist\\nsociologists\\nsociology\\nsock\\nsocked\\nsocket\\nsocketed\\nsocketing\\nsockets\\nsockeye\\nsockeyes\\nsocking\\nsockman\\nsockmen\\nsocks\\nsocle\\nsocles\\nsocman\\nsocmen\\nsod\\nsoda\\nsodaless\\nsodalist\\nsodalists\\nsodalite\\nsodalites\\nsodalities\\nsodality\\nsodamide\\nsodamides\\nsodas\\nsodded\\nsodden\\nsoddened\\nsoddening\\nsoddenly\\nsoddens\\nsoddies\\nsodding\\nsoddy\\nsodic\\nsodium\\nsodiums\\nsodomies\\nsodomite\\nsodomites\\nsodomy\\nsods\\nsoever\\nsofa\\nsofar\\nsofars\\nsofas\\nsoffit\\nsoffits\\nsoft\\nsofta\\nsoftas\\nsoftback\\nsoftbacks\\nsoftball\\nsoftballs\\nsoften\\nsoftened\\nsoftener\\nsofteners\\nsoftening\\nsoftens\\nsofter\\nsoftest\\nsofthead\\nsoftheads\\nsoftie\\nsofties\\nsoftly\\nsoftness\\nsoftnesses\\nsofts\\nsoftware\\nsoftwares\\nsoftwood\\nsoftwoods\\nsofty\\nsogged\\nsoggier\\nsoggiest\\nsoggily\\nsogginess\\nsogginesses\\nsoggy\\nsoigne\\nsoignee\\nsoil\\nsoilage\\nsoilages\\nsoiled\\nsoiling\\nsoilless\\nsoils\\nsoilure\\nsoilures\\nsoiree\\nsoirees\\nsoja\\nsojas\\nsojourn\\nsojourned\\nsojourning\\nsojourns\\nsoke\\nsokeman\\nsokemen\\nsokes\\nsol\\nsola\\nsolace\\nsolaced\\nsolacer\\nsolacers\\nsolaces\\nsolacing\\nsolan\\nsoland\\nsolander\\nsolanders\\nsolands\\nsolanin\\nsolanine\\nsolanines\\nsolanins\\nsolano\\nsolanos\\nsolans\\nsolanum\\nsolanums\\nsolar\\nsolaria\\nsolarise\\nsolarised\\nsolarises\\nsolarising\\nsolarism\\nsolarisms\\nsolarium\\nsolariums\\nsolarize\\nsolarized\\nsolarizes\\nsolarizing\\nsolate\\nsolated\\nsolates\\nsolatia\\nsolating\\nsolation\\nsolations\\nsolatium\\nsold\\nsoldan\\nsoldans\\nsolder\\nsoldered\\nsolderer\\nsolderers\\nsoldering\\nsolders\\nsoldi\\nsoldier\\nsoldiered\\nsoldieries\\nsoldiering\\nsoldierly\\nsoldiers\\nsoldiery\\nsoldo\\nsole\\nsolecise\\nsolecised\\nsolecises\\nsolecising\\nsolecism\\nsolecisms\\nsolecist\\nsolecists\\nsolecize\\nsolecized\\nsolecizes\\nsolecizing\\nsoled\\nsoleless\\nsolely\\nsolemn\\nsolemner\\nsolemnest\\nsolemnly\\nsolemnness\\nsolemnnesses\\nsoleness\\nsolenesses\\nsolenoid\\nsolenoids\\nsoleret\\nsolerets\\nsoles\\nsolfege\\nsolfeges\\nsolfeggi\\nsolgel\\nsoli\\nsolicit\\nsolicitation\\nsolicited\\nsoliciting\\nsolicitor\\nsolicitors\\nsolicitous\\nsolicits\\nsolicitude\\nsolicitudes\\nsolid\\nsolidago\\nsolidagos\\nsolidarities\\nsolidarity\\nsolidary\\nsolider\\nsolidest\\nsolidi\\nsolidification\\nsolidifications\\nsolidified\\nsolidifies\\nsolidify\\nsolidifying\\nsolidities\\nsolidity\\nsolidly\\nsolidness\\nsolidnesses\\nsolids\\nsolidus\\nsoliloquize\\nsoliloquized\\nsoliloquizes\\nsoliloquizing\\nsoliloquy\\nsoliloquys\\nsoling\\nsolion\\nsolions\\nsoliquid\\nsoliquids\\nsolitaire\\nsolitaires\\nsolitaries\\nsolitary\\nsolitude\\nsolitudes\\nsolleret\\nsollerets\\nsolo\\nsoloed\\nsoloing\\nsoloist\\nsoloists\\nsolon\\nsolonets\\nsolonetses\\nsolonetz\\nsolonetzes\\nsolons\\nsolos\\nsols\\nsolstice\\nsolstices\\nsolubilities\\nsolubility\\nsoluble\\nsolubles\\nsolubly\\nsolum\\nsolums\\nsolus\\nsolute\\nsolutes\\nsolution\\nsolutions\\nsolvable\\nsolvate\\nsolvated\\nsolvates\\nsolvating\\nsolve\\nsolved\\nsolvencies\\nsolvency\\nsolvent\\nsolvents\\nsolver\\nsolvers\\nsolves\\nsolving\\nsoma\\nsomas\\nsomata\\nsomatic\\nsomber\\nsomberly\\nsombre\\nsombrely\\nsombrero\\nsombreros\\nsombrous\\nsome\\nsomebodies\\nsomebody\\nsomeday\\nsomedeal\\nsomehow\\nsomeone\\nsomeones\\nsomeplace\\nsomersault\\nsomersaulted\\nsomersaulting\\nsomersaults\\nsomerset\\nsomerseted\\nsomerseting\\nsomersets\\nsomersetted\\nsomersetting\\nsomerville\\nsomething\\nsometime\\nsometimes\\nsomeway\\nsomeways\\nsomewhat\\nsomewhats\\nsomewhen\\nsomewhere\\nsomewise\\nsomital\\nsomite\\nsomites\\nsomitic\\nsomnambulism\\nsomnambulist\\nsomnambulists\\nsomnolence\\nsomnolences\\nsomnolent\\nson\\nsonance\\nsonances\\nsonant\\nsonantal\\nsonantic\\nsonants\\nsonar\\nsonarman\\nsonarmen\\nsonars\\nsonata\\nsonatas\\nsonatina\\nsonatinas\\nsonatine\\nsonde\\nsonder\\nsonders\\nsondes\\nsone\\nsones\\nsong\\nsongbird\\nsongbirds\\nsongbook\\nsongbooks\\nsongfest\\nsongfests\\nsongful\\nsongless\\nsonglike\\nsongs\\nsongster\\nsongsters\\nsonic\\nsonicate\\nsonicated\\nsonicates\\nsonicating\\nsonics\\nsonless\\nsonlike\\nsonly\\nsonnet\\nsonneted\\nsonneting\\nsonnets\\nsonnetted\\nsonnetting\\nsonnies\\nsonny\\nsonorant\\nsonorants\\nsonorities\\nsonority\\nsonorous\\nsonovox\\nsonovoxes\\nsons\\nsonship\\nsonships\\nsonsie\\nsonsier\\nsonsiest\\nsonsy\\nsoochong\\nsoochongs\\nsooey\\nsoon\\nsooner\\nsooners\\nsoonest\\nsoot\\nsooted\\nsooth\\nsoothe\\nsoothed\\nsoother\\nsoothers\\nsoothes\\nsoothest\\nsoothing\\nsoothly\\nsooths\\nsoothsaid\\nsoothsay\\nsoothsayer\\nsoothsayers\\nsoothsaying\\nsoothsayings\\nsoothsays\\nsootier\\nsootiest\\nsootily\\nsooting\\nsoots\\nsooty\\nsop\\nsoph\\nsophies\\nsophism\\nsophisms\\nsophist\\nsophistic\\nsophistical\\nsophisticate\\nsophisticated\\nsophisticates\\nsophistication\\nsophistications\\nsophistries\\nsophistry\\nsophists\\nsophomore\\nsophomores\\nsophs\\nsophy\\nsopite\\nsopited\\nsopites\\nsopiting\\nsopor\\nsoporific\\nsopors\\nsopped\\nsoppier\\nsoppiest\\nsopping\\nsoppy\\nsoprani\\nsoprano\\nsopranos\\nsops\\nsora\\nsoras\\nsorb\\nsorbable\\nsorbate\\nsorbates\\nsorbed\\nsorbent\\nsorbents\\nsorbet\\nsorbets\\nsorbic\\nsorbing\\nsorbitol\\nsorbitols\\nsorbose\\nsorboses\\nsorbs\\nsorcerer\\nsorcerers\\nsorceress\\nsorceresses\\nsorceries\\nsorcery\\nsord\\nsordid\\nsordidly\\nsordidness\\nsordidnesses\\nsordine\\nsordines\\nsordini\\nsordino\\nsords\\nsore\\nsorehead\\nsoreheads\\nsorel\\nsorels\\nsorely\\nsoreness\\nsorenesses\\nsorer\\nsores\\nsorest\\nsorgho\\nsorghos\\nsorghum\\nsorghums\\nsorgo\\nsorgos\\nsori\\nsoricine\\nsorites\\nsoritic\\nsorn\\nsorned\\nsorner\\nsorners\\nsorning\\nsorns\\nsoroche\\nsoroches\\nsororal\\nsororate\\nsororates\\nsororities\\nsorority\\nsoroses\\nsorosis\\nsorosises\\nsorption\\nsorptions\\nsorptive\\nsorrel\\nsorrels\\nsorrier\\nsorriest\\nsorrily\\nsorrow\\nsorrowed\\nsorrower\\nsorrowers\\nsorrowful\\nsorrowfully\\nsorrowing\\nsorrows\\nsorry\\nsort\\nsortable\\nsortably\\nsorted\\nsorter\\nsorters\\nsortie\\nsortied\\nsortieing\\nsorties\\nsorting\\nsorts\\nsorus\\nsos\\nsot\\nsoth\\nsoths\\nsotol\\nsotols\\nsots\\nsottish\\nsou\\nsouari\\nsouaris\\nsoubise\\nsoubises\\nsoucar\\nsoucars\\nsouchong\\nsouchongs\\nsoudan\\nsoudans\\nsouffle\\nsouffles\\nsough\\nsoughed\\nsoughing\\nsoughs\\nsought\\nsoul\\nsouled\\nsoulful\\nsoulfully\\nsoulless\\nsoullike\\nsouls\\nsound\\nsoundbox\\nsoundboxes\\nsounded\\nsounder\\nsounders\\nsoundest\\nsounding\\nsoundings\\nsoundly\\nsoundness\\nsoundnesses\\nsoundproof\\nsoundproofed\\nsoundproofing\\nsoundproofs\\nsounds\\nsoup\\nsoupcon\\nsoupcons\\nsouped\\nsoupier\\nsoupiest\\nsouping\\nsoups\\nsoupy\\nsour\\nsourball\\nsourballs\\nsource\\nsources\\nsourdine\\nsourdines\\nsoured\\nsourer\\nsourest\\nsouring\\nsourish\\nsourly\\nsourness\\nsournesses\\nsourpuss\\nsourpusses\\nsours\\nsoursop\\nsoursops\\nsourwood\\nsourwoods\\nsous\\nsouse\\nsoused\\nsouses\\nsousing\\nsoutache\\nsoutaches\\nsoutane\\nsoutanes\\nsouter\\nsouters\\nsouth\\nsoutheast\\nsoutheastern\\nsoutheasts\\nsouthed\\nsouther\\nsoutherly\\nsouthern\\nsouthernmost\\nsoutherns\\nsouthernward\\nsouthernwards\\nsouthers\\nsouthing\\nsouthings\\nsouthpaw\\nsouthpaws\\nsouthron\\nsouthrons\\nsouths\\nsouthwest\\nsouthwesterly\\nsouthwestern\\nsouthwests\\nsouvenir\\nsouvenirs\\nsovereign\\nsovereigns\\nsovereignties\\nsovereignty\\nsoviet\\nsoviets\\nsovkhoz\\nsovkhozes\\nsovkhozy\\nsovran\\nsovranly\\nsovrans\\nsovranties\\nsovranty\\nsow\\nsowable\\nsowans\\nsowar\\nsowars\\nsowbellies\\nsowbelly\\nsowbread\\nsowbreads\\nsowcar\\nsowcars\\nsowed\\nsowens\\nsower\\nsowers\\nsowing\\nsown\\nsows\\nsox\\nsoy\\nsoya\\nsoyas\\nsoybean\\nsoybeans\\nsoys\\nsozin\\nsozine\\nsozines\\nsozins\\nspa\\nspace\\nspacecraft\\nspacecrafts\\nspaced\\nspaceflight\\nspaceflights\\nspaceman\\nspacemen\\nspacer\\nspacers\\nspaces\\nspaceship\\nspaceships\\nspacial\\nspacing\\nspacings\\nspacious\\nspaciously\\nspaciousness\\nspaciousnesses\\nspade\\nspaded\\nspadeful\\nspadefuls\\nspader\\nspaders\\nspades\\nspadices\\nspadille\\nspadilles\\nspading\\nspadix\\nspado\\nspadones\\nspae\\nspaed\\nspaeing\\nspaeings\\nspaes\\nspaghetti\\nspaghettis\\nspagyric\\nspagyrics\\nspahee\\nspahees\\nspahi\\nspahis\\nspail\\nspails\\nspait\\nspaits\\nspake\\nspale\\nspales\\nspall\\nspalled\\nspaller\\nspallers\\nspalling\\nspalls\\nspalpeen\\nspalpeens\\nspan\\nspancel\\nspanceled\\nspanceling\\nspancelled\\nspancelling\\nspancels\\nspandrel\\nspandrels\\nspandril\\nspandrils\\nspang\\nspangle\\nspangled\\nspangles\\nspanglier\\nspangliest\\nspangling\\nspangly\\nspaniel\\nspaniels\\nspank\\nspanked\\nspanker\\nspankers\\nspanking\\nspankings\\nspanks\\nspanless\\nspanned\\nspanner\\nspanners\\nspanning\\nspans\\nspanworm\\nspanworms\\nspar\\nsparable\\nsparables\\nspare\\nspared\\nsparely\\nsparer\\nsparerib\\nspareribs\\nsparers\\nspares\\nsparest\\nsparge\\nsparged\\nsparger\\nspargers\\nsparges\\nsparging\\nsparid\\nsparids\\nsparing\\nsparingly\\nspark\\nsparked\\nsparker\\nsparkers\\nsparkier\\nsparkiest\\nsparkily\\nsparking\\nsparkish\\nsparkle\\nsparkled\\nsparkler\\nsparklers\\nsparkles\\nsparkling\\nsparks\\nsparky\\nsparlike\\nsparling\\nsparlings\\nsparoid\\nsparoids\\nsparred\\nsparrier\\nsparriest\\nsparring\\nsparrow\\nsparrows\\nsparry\\nspars\\nsparse\\nsparsely\\nsparser\\nsparsest\\nsparsities\\nsparsity\\nspas\\nspasm\\nspasmodic\\nspasms\\nspastic\\nspastics\\nspat\\nspate\\nspates\\nspathal\\nspathe\\nspathed\\nspathes\\nspathic\\nspathose\\nspatial\\nspatially\\nspats\\nspatted\\nspatter\\nspattered\\nspattering\\nspatters\\nspatting\\nspatula\\nspatular\\nspatulas\\nspavie\\nspavies\\nspaviet\\nspavin\\nspavined\\nspavins\\nspawn\\nspawned\\nspawner\\nspawners\\nspawning\\nspawns\\nspay\\nspayed\\nspaying\\nspays\\nspeak\\nspeaker\\nspeakers\\nspeaking\\nspeakings\\nspeaks\\nspean\\nspeaned\\nspeaning\\nspeans\\nspear\\nspeared\\nspearer\\nspearers\\nspearhead\\nspearheaded\\nspearheading\\nspearheads\\nspearing\\nspearman\\nspearmen\\nspearmint\\nspears\\nspecial\\nspecialer\\nspecialest\\nspecialist\\nspecialists\\nspecialization\\nspecializations\\nspecialize\\nspecialized\\nspecializes\\nspecializing\\nspecially\\nspecials\\nspecialties\\nspecialty\\nspeciate\\nspeciated\\nspeciates\\nspeciating\\nspecie\\nspecies\\nspecific\\nspecifically\\nspecification\\nspecifications\\nspecificities\\nspecificity\\nspecifics\\nspecified\\nspecifies\\nspecify\\nspecifying\\nspecimen\\nspecimens\\nspecious\\nspeck\\nspecked\\nspecking\\nspeckle\\nspeckled\\nspeckles\\nspeckling\\nspecks\\nspecs\\nspectacle\\nspectacles\\nspectacular\\nspectate\\nspectated\\nspectates\\nspectating\\nspectator\\nspectators\\nspecter\\nspecters\\nspectra\\nspectral\\nspectre\\nspectres\\nspectrum\\nspectrums\\nspecula\\nspecular\\nspeculate\\nspeculated\\nspeculates\\nspeculating\\nspeculation\\nspeculations\\nspeculative\\nspeculator\\nspeculators\\nspeculum\\nspeculums\\nsped\\nspeech\\nspeeches\\nspeechless\\nspeed\\nspeedboat\\nspeedboats\\nspeeded\\nspeeder\\nspeeders\\nspeedier\\nspeediest\\nspeedily\\nspeeding\\nspeedings\\nspeedometer\\nspeedometers\\nspeeds\\nspeedup\\nspeedups\\nspeedway\\nspeedways\\nspeedy\\nspeel\\nspeeled\\nspeeling\\nspeels\\nspeer\\nspeered\\nspeering\\nspeerings\\nspeers\\nspeil\\nspeiled\\nspeiling\\nspeils\\nspeir\\nspeired\\nspeiring\\nspeirs\\nspeise\\nspeises\\nspeiss\\nspeisses\\nspelaean\\nspelean\\nspell\\nspellbound\\nspelled\\nspeller\\nspellers\\nspelling\\nspellings\\nspells\\nspelt\\nspelter\\nspelters\\nspelts\\nspeltz\\nspeltzes\\nspelunk\\nspelunked\\nspelunking\\nspelunks\\nspence\\nspencer\\nspencers\\nspences\\nspend\\nspender\\nspenders\\nspending\\nspends\\nspendthrift\\nspendthrifts\\nspent\\nsperm\\nspermaries\\nspermary\\nspermic\\nspermine\\nspermines\\nspermous\\nsperms\\nspew\\nspewed\\nspewer\\nspewers\\nspewing\\nspews\\nsphagnum\\nsphagnums\\nsphene\\nsphenes\\nsphenic\\nsphenoid\\nsphenoids\\nspheral\\nsphere\\nsphered\\nspheres\\nspheric\\nspherical\\nspherics\\nspherier\\nspheriest\\nsphering\\nspheroid\\nspheroids\\nspherule\\nspherules\\nsphery\\nsphinges\\nsphingid\\nsphingids\\nsphinx\\nsphinxes\\nsphygmic\\nsphygmus\\nsphygmuses\\nspic\\nspica\\nspicae\\nspicas\\nspicate\\nspicated\\nspiccato\\nspiccatos\\nspice\\nspiced\\nspicer\\nspiceries\\nspicers\\nspicery\\nspices\\nspicey\\nspicier\\nspiciest\\nspicily\\nspicing\\nspick\\nspicks\\nspics\\nspicula\\nspiculae\\nspicular\\nspicule\\nspicules\\nspiculum\\nspicy\\nspider\\nspiderier\\nspideriest\\nspiders\\nspidery\\nspied\\nspiegel\\nspiegels\\nspiel\\nspieled\\nspieler\\nspielers\\nspieling\\nspiels\\nspier\\nspiered\\nspiering\\nspiers\\nspies\\nspiffier\\nspiffiest\\nspiffily\\nspiffing\\nspiffy\\nspigot\\nspigots\\nspik\\nspike\\nspiked\\nspikelet\\nspikelets\\nspiker\\nspikers\\nspikes\\nspikier\\nspikiest\\nspikily\\nspiking\\nspiks\\nspiky\\nspile\\nspiled\\nspiles\\nspilikin\\nspilikins\\nspiling\\nspilings\\nspill\\nspillable\\nspillage\\nspillages\\nspilled\\nspiller\\nspillers\\nspilling\\nspills\\nspillway\\nspillways\\nspilt\\nspilth\\nspilths\\nspin\\nspinach\\nspinaches\\nspinage\\nspinages\\nspinal\\nspinally\\nspinals\\nspinate\\nspindle\\nspindled\\nspindler\\nspindlers\\nspindles\\nspindlier\\nspindliest\\nspindling\\nspindly\\nspine\\nspined\\nspinel\\nspineless\\nspinelle\\nspinelles\\nspinels\\nspines\\nspinet\\nspinets\\nspinier\\nspiniest\\nspinifex\\nspinifexes\\nspinless\\nspinner\\nspinneries\\nspinners\\nspinnery\\nspinney\\nspinneys\\nspinnies\\nspinning\\nspinnings\\nspinny\\nspinoff\\nspinoffs\\nspinor\\nspinors\\nspinose\\nspinous\\nspinout\\nspinouts\\nspins\\nspinster\\nspinsters\\nspinula\\nspinulae\\nspinule\\nspinules\\nspinwriter\\nspiny\\nspiracle\\nspiracles\\nspiraea\\nspiraeas\\nspiral\\nspiraled\\nspiraling\\nspiralled\\nspiralling\\nspirally\\nspirals\\nspirant\\nspirants\\nspire\\nspirea\\nspireas\\nspired\\nspirem\\nspireme\\nspiremes\\nspirems\\nspires\\nspirilla\\nspiring\\nspirit\\nspirited\\nspiriting\\nspiritless\\nspirits\\nspiritual\\nspiritualism\\nspiritualisms\\nspiritualist\\nspiritualistic\\nspiritualists\\nspiritualities\\nspirituality\\nspiritually\\nspirituals\\nspiroid\\nspirt\\nspirted\\nspirting\\nspirts\\nspirula\\nspirulae\\nspirulas\\nspiry\\nspit\\nspital\\nspitals\\nspitball\\nspitballs\\nspite\\nspited\\nspiteful\\nspitefuller\\nspitefullest\\nspitefully\\nspites\\nspitfire\\nspitfires\\nspiting\\nspits\\nspitted\\nspitter\\nspitters\\nspitting\\nspittle\\nspittles\\nspittoon\\nspittoons\\nspitz\\nspitzes\\nspiv\\nspivs\\nsplake\\nsplakes\\nsplash\\nsplashed\\nsplasher\\nsplashers\\nsplashes\\nsplashier\\nsplashiest\\nsplashing\\nsplashy\\nsplat\\nsplats\\nsplatter\\nsplattered\\nsplattering\\nsplatters\\nsplay\\nsplayed\\nsplaying\\nsplays\\nspleen\\nspleenier\\nspleeniest\\nspleens\\nspleeny\\nsplendid\\nsplendider\\nsplendidest\\nsplendidly\\nsplendor\\nsplendors\\nsplenia\\nsplenial\\nsplenic\\nsplenii\\nsplenium\\nsplenius\\nsplent\\nsplents\\nsplice\\nspliced\\nsplicer\\nsplicers\\nsplices\\nsplicing\\nspline\\nsplined\\nsplines\\nsplining\\nsplint\\nsplinted\\nsplinter\\nsplintered\\nsplintering\\nsplinters\\nsplinting\\nsplints\\nsplit\\nsplits\\nsplitter\\nsplitters\\nsplitting\\nsplore\\nsplores\\nsplosh\\nsploshed\\nsploshes\\nsploshing\\nsplotch\\nsplotched\\nsplotches\\nsplotchier\\nsplotchiest\\nsplotching\\nsplotchy\\nsplurge\\nsplurged\\nsplurges\\nsplurgier\\nsplurgiest\\nsplurging\\nsplurgy\\nsplutter\\nspluttered\\nspluttering\\nsplutters\\nspode\\nspodes\\nspoil\\nspoilage\\nspoilages\\nspoiled\\nspoiler\\nspoilers\\nspoiling\\nspoils\\nspoilt\\nspoke\\nspoked\\nspoken\\nspokes\\nspokesman\\nspokesmen\\nspokeswoman\\nspokeswomen\\nspoking\\nspoliate\\nspoliated\\nspoliates\\nspoliating\\nspondaic\\nspondaics\\nspondee\\nspondees\\nsponge\\nsponged\\nsponger\\nspongers\\nsponges\\nspongier\\nspongiest\\nspongily\\nspongin\\nsponging\\nspongins\\nspongy\\nsponsal\\nsponsion\\nsponsions\\nsponson\\nsponsons\\nsponsor\\nsponsored\\nsponsoring\\nsponsors\\nsponsorship\\nsponsorships\\nspontaneities\\nspontaneity\\nspontaneous\\nspontaneously\\nspontoon\\nspontoons\\nspoof\\nspoofed\\nspoofing\\nspoofs\\nspook\\nspooked\\nspookier\\nspookiest\\nspookily\\nspooking\\nspookish\\nspooks\\nspooky\\nspool\\nspooled\\nspooling\\nspools\\nspoon\\nspooned\\nspooney\\nspooneys\\nspoonful\\nspoonfuls\\nspoonier\\nspoonies\\nspooniest\\nspoonily\\nspooning\\nspoons\\nspoonsful\\nspoony\\nspoor\\nspoored\\nspooring\\nspoors\\nsporadic\\nsporadically\\nsporal\\nspore\\nspored\\nspores\\nsporing\\nsporoid\\nsporran\\nsporrans\\nsport\\nsported\\nsporter\\nsporters\\nsportful\\nsportier\\nsportiest\\nsportily\\nsporting\\nsportive\\nsports\\nsportscast\\nsportscaster\\nsportscasters\\nsportscasts\\nsportsman\\nsportsmanship\\nsportsmanships\\nsportsmen\\nsporty\\nsporular\\nsporule\\nsporules\\nspot\\nspotless\\nspotlessly\\nspotlight\\nspotlighted\\nspotlighting\\nspotlights\\nspots\\nspotted\\nspotter\\nspotters\\nspottier\\nspottiest\\nspottily\\nspotting\\nspotty\\nspousal\\nspousals\\nspouse\\nspoused\\nspouses\\nspousing\\nspout\\nspouted\\nspouter\\nspouters\\nspouting\\nspouts\\nspraddle\\nspraddled\\nspraddles\\nspraddling\\nsprag\\nsprags\\nsprain\\nsprained\\nspraining\\nsprains\\nsprang\\nsprat\\nsprats\\nsprattle\\nsprattled\\nsprattles\\nsprattling\\nsprawl\\nsprawled\\nsprawler\\nsprawlers\\nsprawlier\\nsprawliest\\nsprawling\\nsprawls\\nsprawly\\nspray\\nsprayed\\nsprayer\\nsprayers\\nspraying\\nsprays\\nspread\\nspreader\\nspreaders\\nspreading\\nspreads\\nspree\\nsprees\\nsprent\\nsprier\\nspriest\\nsprig\\nsprigged\\nsprigger\\nspriggers\\nspriggier\\nspriggiest\\nsprigging\\nspriggy\\nspright\\nsprightliness\\nsprightlinesses\\nsprightly\\nsprights\\nsprigs\\nspring\\nspringal\\nspringals\\nspringe\\nspringed\\nspringeing\\nspringer\\nspringers\\nspringes\\nspringier\\nspringiest\\nspringing\\nsprings\\nspringy\\nsprinkle\\nsprinkled\\nsprinkler\\nsprinklers\\nsprinkles\\nsprinkling\\nsprint\\nsprinted\\nsprinter\\nsprinters\\nsprinting\\nsprints\\nsprit\\nsprite\\nsprites\\nsprits\\nsprocket\\nsprockets\\nsprout\\nsprouted\\nsprouting\\nsprouts\\nspruce\\nspruced\\nsprucely\\nsprucer\\nspruces\\nsprucest\\nsprucier\\nspruciest\\nsprucing\\nsprucy\\nsprue\\nsprues\\nsprug\\nsprugs\\nsprung\\nspry\\nspryer\\nspryest\\nspryly\\nspryness\\nsprynesses\\nspud\\nspudded\\nspudder\\nspudders\\nspudding\\nspuds\\nspue\\nspued\\nspues\\nspuing\\nspume\\nspumed\\nspumes\\nspumier\\nspumiest\\nspuming\\nspumone\\nspumones\\nspumoni\\nspumonis\\nspumous\\nspumy\\nspun\\nspunk\\nspunked\\nspunkie\\nspunkier\\nspunkies\\nspunkiest\\nspunkily\\nspunking\\nspunks\\nspunky\\nspur\\nspurgall\\nspurgalled\\nspurgalling\\nspurgalls\\nspurge\\nspurges\\nspurious\\nspurn\\nspurned\\nspurner\\nspurners\\nspurning\\nspurns\\nspurred\\nspurrer\\nspurrers\\nspurrey\\nspurreys\\nspurrier\\nspurriers\\nspurries\\nspurring\\nspurry\\nspurs\\nspurt\\nspurted\\nspurting\\nspurtle\\nspurtles\\nspurts\\nsputa\\nsputnik\\nsputniks\\nsputter\\nsputtered\\nsputtering\\nsputters\\nsputum\\nspy\\nspyglass\\nspyglasses\\nspying\\nsquab\\nsquabbier\\nsquabbiest\\nsquabble\\nsquabbled\\nsquabbles\\nsquabbling\\nsquabby\\nsquabs\\nsquad\\nsquadded\\nsquadding\\nsquadron\\nsquadroned\\nsquadroning\\nsquadrons\\nsquads\\nsqualene\\nsqualenes\\nsqualid\\nsqualider\\nsqualidest\\nsquall\\nsqualled\\nsqualler\\nsquallers\\nsquallier\\nsqualliest\\nsqualling\\nsqualls\\nsqually\\nsqualor\\nsqualors\\nsquama\\nsquamae\\nsquamate\\nsquamose\\nsquamous\\nsquander\\nsquandered\\nsquandering\\nsquanders\\nsquare\\nsquared\\nsquarely\\nsquarer\\nsquarers\\nsquares\\nsquarest\\nsquaring\\nsquarish\\nsquash\\nsquashed\\nsquasher\\nsquashers\\nsquashes\\nsquashier\\nsquashiest\\nsquashing\\nsquashy\\nsquat\\nsquatly\\nsquats\\nsquatted\\nsquatter\\nsquattered\\nsquattering\\nsquatters\\nsquattest\\nsquattier\\nsquattiest\\nsquatting\\nsquatty\\nsquaw\\nsquawk\\nsquawked\\nsquawker\\nsquawkers\\nsquawking\\nsquawks\\nsquaws\\nsqueak\\nsqueaked\\nsqueaker\\nsqueakers\\nsqueakier\\nsqueakiest\\nsqueaking\\nsqueaks\\nsqueaky\\nsqueal\\nsquealed\\nsquealer\\nsquealers\\nsquealing\\nsqueals\\nsqueamish\\nsqueegee\\nsqueegeed\\nsqueegeeing\\nsqueegees\\nsqueeze\\nsqueezed\\nsqueezer\\nsqueezers\\nsqueezes\\nsqueezing\\nsqueg\\nsquegged\\nsquegging\\nsquegs\\nsquelch\\nsquelched\\nsquelches\\nsquelchier\\nsquelchiest\\nsquelching\\nsquelchy\\nsquib\\nsquibbed\\nsquibbing\\nsquibs\\nsquid\\nsquidded\\nsquidding\\nsquids\\nsquiffed\\nsquiffy\\nsquiggle\\nsquiggled\\nsquiggles\\nsquigglier\\nsquiggliest\\nsquiggling\\nsquiggly\\nsquilgee\\nsquilgeed\\nsquilgeeing\\nsquilgees\\nsquill\\nsquilla\\nsquillae\\nsquillas\\nsquills\\nsquinch\\nsquinched\\nsquinches\\nsquinching\\nsquinnied\\nsquinnier\\nsquinnies\\nsquinniest\\nsquinny\\nsquinnying\\nsquint\\nsquinted\\nsquinter\\nsquinters\\nsquintest\\nsquintier\\nsquintiest\\nsquinting\\nsquints\\nsquinty\\nsquire\\nsquired\\nsquireen\\nsquireens\\nsquires\\nsquiring\\nsquirish\\nsquirm\\nsquirmed\\nsquirmer\\nsquirmers\\nsquirmier\\nsquirmiest\\nsquirming\\nsquirms\\nsquirmy\\nsquirrel\\nsquirreled\\nsquirreling\\nsquirrelled\\nsquirrelling\\nsquirrels\\nsquirt\\nsquirted\\nsquirter\\nsquirters\\nsquirting\\nsquirts\\nsquish\\nsquished\\nsquishes\\nsquishier\\nsquishiest\\nsquishing\\nsquishy\\nsquoosh\\nsquooshed\\nsquooshes\\nsquooshing\\nsquush\\nsquushed\\nsquushes\\nsquushing\\nsraddha\\nsraddhas\\nsradha\\nsradhas\\nsri\\nsris\\nstab\\nstabbed\\nstabber\\nstabbers\\nstabbing\\nstabile\\nstabiles\\nstabilities\\nstability\\nstabilization\\nstabilize\\nstabilized\\nstabilizer\\nstabilizers\\nstabilizes\\nstabilizing\\nstable\\nstabled\\nstabler\\nstablers\\nstables\\nstablest\\nstabling\\nstablings\\nstablish\\nstablished\\nstablishes\\nstablishing\\nstably\\nstabs\\nstaccati\\nstaccato\\nstaccatos\\nstack\\nstacked\\nstacker\\nstackers\\nstacking\\nstacks\\nstacte\\nstactes\\nstaddle\\nstaddles\\nstade\\nstades\\nstadia\\nstadias\\nstadium\\nstadiums\\nstaff\\nstaffed\\nstaffer\\nstaffers\\nstaffing\\nstaffs\\nstag\\nstage\\nstagecoach\\nstagecoaches\\nstaged\\nstager\\nstagers\\nstages\\nstagey\\nstaggard\\nstaggards\\nstaggart\\nstaggarts\\nstagged\\nstagger\\nstaggered\\nstaggering\\nstaggeringly\\nstaggers\\nstaggery\\nstaggie\\nstaggier\\nstaggies\\nstaggiest\\nstagging\\nstaggy\\nstagier\\nstagiest\\nstagily\\nstaging\\nstagings\\nstagnant\\nstagnate\\nstagnated\\nstagnates\\nstagnating\\nstagnation\\nstagnations\\nstags\\nstagy\\nstaid\\nstaider\\nstaidest\\nstaidly\\nstaig\\nstaigs\\nstain\\nstained\\nstainer\\nstainers\\nstaining\\nstainless\\nstains\\nstair\\nstaircase\\nstaircases\\nstairs\\nstairway\\nstairways\\nstairwell\\nstairwells\\nstake\\nstaked\\nstakeout\\nstakeouts\\nstakes\\nstaking\\nstalactite\\nstalactites\\nstalag\\nstalagmite\\nstalagmites\\nstalags\\nstale\\nstaled\\nstalely\\nstalemate\\nstalemated\\nstalemates\\nstalemating\\nstaler\\nstales\\nstalest\\nstaling\\nstalinism\\nstalk\\nstalked\\nstalker\\nstalkers\\nstalkier\\nstalkiest\\nstalkily\\nstalking\\nstalks\\nstalky\\nstall\\nstalled\\nstalling\\nstallion\\nstallions\\nstalls\\nstalwart\\nstalwarts\\nstamen\\nstamens\\nstamina\\nstaminal\\nstaminas\\nstammel\\nstammels\\nstammer\\nstammered\\nstammering\\nstammers\\nstamp\\nstamped\\nstampede\\nstampeded\\nstampedes\\nstampeding\\nstamper\\nstampers\\nstamping\\nstamps\\nstance\\nstances\\nstanch\\nstanched\\nstancher\\nstanchers\\nstanches\\nstanchest\\nstanching\\nstanchion\\nstanchions\\nstanchly\\nstand\\nstandard\\nstandardization\\nstandardizations\\nstandardize\\nstandardized\\nstandardizes\\nstandardizing\\nstandards\\nstandby\\nstandbys\\nstandee\\nstandees\\nstander\\nstanders\\nstanding\\nstandings\\nstandish\\nstandishes\\nstandoff\\nstandoffs\\nstandout\\nstandouts\\nstandpat\\nstandpoint\\nstandpoints\\nstands\\nstandstill\\nstandup\\nstane\\nstaned\\nstanes\\nstang\\nstanged\\nstanging\\nstangs\\nstanhope\\nstanhopes\\nstaning\\nstank\\nstanks\\nstannaries\\nstannary\\nstannic\\nstannite\\nstannites\\nstannous\\nstannum\\nstannums\\nstanza\\nstanzaed\\nstanzaic\\nstanzas\\nstapedes\\nstapelia\\nstapelias\\nstapes\\nstaph\\nstaphs\\nstaple\\nstapled\\nstapler\\nstaplers\\nstaples\\nstapling\\nstar\\nstarboard\\nstarboards\\nstarch\\nstarched\\nstarches\\nstarchier\\nstarchiest\\nstarching\\nstarchy\\nstardom\\nstardoms\\nstardust\\nstardusts\\nstare\\nstared\\nstarer\\nstarers\\nstares\\nstarets\\nstarfish\\nstarfishes\\nstargaze\\nstargazed\\nstargazes\\nstargazing\\nstaring\\nstark\\nstarker\\nstarkest\\nstarkly\\nstarless\\nstarlet\\nstarlets\\nstarlight\\nstarlights\\nstarlike\\nstarling\\nstarlings\\nstarlit\\nstarnose\\nstarnoses\\nstarred\\nstarrier\\nstarriest\\nstarring\\nstarry\\nstars\\nstart\\nstarted\\nstarter\\nstarters\\nstarting\\nstartle\\nstartled\\nstartler\\nstartlers\\nstartles\\nstartling\\nstarts\\nstartsy\\nstarvation\\nstarvations\\nstarve\\nstarved\\nstarver\\nstarvers\\nstarves\\nstarving\\nstarwort\\nstarworts\\nstases\\nstash\\nstashed\\nstashes\\nstashing\\nstasima\\nstasimon\\nstasis\\nstatable\\nstatal\\nstatant\\nstate\\nstated\\nstatedly\\nstatehood\\nstatehoods\\nstatelier\\nstateliest\\nstateliness\\nstatelinesses\\nstately\\nstatement\\nstatements\\nstater\\nstateroom\\nstaterooms\\nstaters\\nstates\\nstatesman\\nstatesmanlike\\nstatesmanship\\nstatesmanships\\nstatesmen\\nstatic\\nstatical\\nstatice\\nstatices\\nstatics\\nstating\\nstation\\nstationary\\nstationed\\nstationer\\nstationeries\\nstationers\\nstationery\\nstationing\\nstations\\nstatism\\nstatisms\\nstatist\\nstatistic\\nstatistical\\nstatistically\\nstatistician\\nstatisticians\\nstatistics\\nstatists\\nstative\\nstatives\\nstator\\nstators\\nstatuaries\\nstatuary\\nstatue\\nstatued\\nstatues\\nstatuesque\\nstatuette\\nstatuettes\\nstature\\nstatures\\nstatus\\nstatuses\\nstatute\\nstatutes\\nstatutory\\nstaumrel\\nstaumrels\\nstaunch\\nstaunched\\nstauncher\\nstaunches\\nstaunchest\\nstaunching\\nstaunchly\\nstave\\nstaved\\nstaves\\nstaving\\nstaw\\nstay\\nstayed\\nstayer\\nstayers\\nstaying\\nstays\\nstaysail\\nstaysails\\nstead\\nsteaded\\nsteadfast\\nsteadfastly\\nsteadfastness\\nsteadfastnesses\\nsteadied\\nsteadier\\nsteadiers\\nsteadies\\nsteadiest\\nsteadily\\nsteadiness\\nsteadinesses\\nsteading\\nsteadings\\nsteads\\nsteady\\nsteadying\\nsteak\\nsteaks\\nsteal\\nstealage\\nstealages\\nstealer\\nstealers\\nstealing\\nstealings\\nsteals\\nstealth\\nstealthier\\nstealthiest\\nstealthily\\nstealths\\nstealthy\\nsteam\\nsteamboat\\nsteamboats\\nsteamed\\nsteamer\\nsteamered\\nsteamering\\nsteamers\\nsteamier\\nsteamiest\\nsteamily\\nsteaming\\nsteams\\nsteamship\\nsteamships\\nsteamy\\nsteapsin\\nsteapsins\\nstearate\\nstearates\\nstearic\\nstearin\\nstearine\\nstearines\\nstearins\\nsteatite\\nsteatites\\nstedfast\\nsteed\\nsteeds\\nsteek\\nsteeked\\nsteeking\\nsteeks\\nsteel\\nsteeled\\nsteelie\\nsteelier\\nsteelies\\nsteeliest\\nsteeling\\nsteels\\nsteely\\nsteenbok\\nsteenboks\\nsteep\\nsteeped\\nsteepen\\nsteepened\\nsteepening\\nsteepens\\nsteeper\\nsteepers\\nsteepest\\nsteeping\\nsteeple\\nsteeplechase\\nsteeplechases\\nsteepled\\nsteeples\\nsteeply\\nsteepness\\nsteepnesses\\nsteeps\\nsteer\\nsteerage\\nsteerages\\nsteered\\nsteerer\\nsteerers\\nsteering\\nsteers\\nsteeve\\nsteeved\\nsteeves\\nsteeving\\nsteevings\\nstegodon\\nstegodons\\nstein\\nsteinbok\\nsteinboks\\nsteins\\nstela\\nstelae\\nstelai\\nstelar\\nstele\\nstelene\\nsteles\\nstelic\\nstella\\nstellar\\nstellas\\nstellate\\nstellified\\nstellifies\\nstellify\\nstellifying\\nstem\\nstemless\\nstemlike\\nstemma\\nstemmas\\nstemmata\\nstemmed\\nstemmer\\nstemmeries\\nstemmers\\nstemmery\\nstemmier\\nstemmiest\\nstemming\\nstemmy\\nstems\\nstemson\\nstemsons\\nstemware\\nstemwares\\nstench\\nstenches\\nstenchier\\nstenchiest\\nstenchy\\nstencil\\nstenciled\\nstenciling\\nstencilled\\nstencilling\\nstencils\\nstengah\\nstengahs\\nsteno\\nstenographer\\nstenographers\\nstenographic\\nstenography\\nstenos\\nstenosed\\nstenoses\\nstenosis\\nstenotic\\nstentor\\nstentorian\\nstentors\\nstep\\nstepdame\\nstepdames\\nstepladder\\nstepladders\\nsteplike\\nsteppe\\nstepped\\nstepper\\nsteppers\\nsteppes\\nstepping\\nsteps\\nstepson\\nstepsons\\nstepwise\\nstere\\nstereo\\nstereoed\\nstereoing\\nstereophonic\\nstereos\\nstereotype\\nstereotyped\\nstereotypes\\nstereotyping\\nsteres\\nsteric\\nsterical\\nsterigma\\nsterigmas\\nsterigmata\\nsterile\\nsterilities\\nsterility\\nsterilization\\nsterilizations\\nsterilize\\nsterilized\\nsterilizer\\nsterilizers\\nsterilizes\\nsterilizing\\nsterlet\\nsterlets\\nsterling\\nsterlings\\nstern\\nsterna\\nsternal\\nsterner\\nsternest\\nsternite\\nsternites\\nsternly\\nsternness\\nsternnesses\\nsterns\\nsternson\\nsternsons\\nsternum\\nsternums\\nsternway\\nsternways\\nsteroid\\nsteroids\\nsterol\\nsterols\\nstertor\\nstertors\\nstet\\nstethoscope\\nstethoscopes\\nstets\\nstetson\\nstetsons\\nstetted\\nstetting\\nstevedore\\nstevedores\\nstew\\nsteward\\nstewarded\\nstewardess\\nstewardesses\\nstewarding\\nstewards\\nstewardship\\nstewardships\\nstewbum\\nstewbums\\nstewed\\nstewing\\nstewpan\\nstewpans\\nstews\\nstey\\nsthenia\\nsthenias\\nsthenic\\nstibial\\nstibine\\nstibines\\nstibium\\nstibiums\\nstibnite\\nstibnites\\nstich\\nstichic\\nstichs\\nstick\\nsticked\\nsticker\\nstickers\\nstickful\\nstickfuls\\nstickier\\nstickiest\\nstickily\\nsticking\\nstickit\\nstickle\\nstickled\\nstickler\\nsticklers\\nstickles\\nstickling\\nstickman\\nstickmen\\nstickout\\nstickouts\\nstickpin\\nstickpins\\nsticks\\nstickum\\nstickums\\nstickup\\nstickups\\nsticky\\nstied\\nsties\\nstiff\\nstiffen\\nstiffened\\nstiffening\\nstiffens\\nstiffer\\nstiffest\\nstiffish\\nstiffly\\nstiffness\\nstiffnesses\\nstiffs\\nstifle\\nstifled\\nstifler\\nstiflers\\nstifles\\nstifling\\nstigma\\nstigmal\\nstigmas\\nstigmata\\nstigmatize\\nstigmatized\\nstigmatizes\\nstigmatizing\\nstilbene\\nstilbenes\\nstilbite\\nstilbites\\nstile\\nstiles\\nstiletto\\nstilettoed\\nstilettoes\\nstilettoing\\nstilettos\\nstill\\nstillbirth\\nstillbirths\\nstillborn\\nstilled\\nstiller\\nstillest\\nstillier\\nstilliest\\nstilling\\nstillman\\nstillmen\\nstillness\\nstillnesses\\nstills\\nstilly\\nstilt\\nstilted\\nstilting\\nstilts\\nstime\\nstimes\\nstimied\\nstimies\\nstimulant\\nstimulants\\nstimulate\\nstimulated\\nstimulates\\nstimulating\\nstimulation\\nstimulations\\nstimuli\\nstimulus\\nstimy\\nstimying\\nsting\\nstinger\\nstingers\\nstingier\\nstingiest\\nstingily\\nstinginess\\nstinginesses\\nstinging\\nstingo\\nstingos\\nstingray\\nstingrays\\nstings\\nstingy\\nstink\\nstinkard\\nstinkards\\nstinkbug\\nstinkbugs\\nstinker\\nstinkers\\nstinkier\\nstinkiest\\nstinking\\nstinko\\nstinkpot\\nstinkpots\\nstinks\\nstinky\\nstint\\nstinted\\nstinter\\nstinters\\nstinting\\nstints\\nstipe\\nstiped\\nstipel\\nstipels\\nstipend\\nstipends\\nstipes\\nstipites\\nstipple\\nstippled\\nstippler\\nstipplers\\nstipples\\nstippling\\nstipular\\nstipulate\\nstipulated\\nstipulates\\nstipulating\\nstipulation\\nstipulations\\nstipule\\nstipuled\\nstipules\\nstir\\nstirk\\nstirks\\nstirp\\nstirpes\\nstirps\\nstirred\\nstirrer\\nstirrers\\nstirring\\nstirrup\\nstirrups\\nstirs\\nstitch\\nstitched\\nstitcher\\nstitchers\\nstitches\\nstitching\\nstithied\\nstithies\\nstithy\\nstithying\\nstiver\\nstivers\\nstoa\\nstoae\\nstoai\\nstoas\\nstoat\\nstoats\\nstob\\nstobbed\\nstobbing\\nstobs\\nstoccado\\nstoccados\\nstoccata\\nstoccatas\\nstock\\nstockade\\nstockaded\\nstockades\\nstockading\\nstockcar\\nstockcars\\nstocked\\nstocker\\nstockers\\nstockier\\nstockiest\\nstockily\\nstocking\\nstockings\\nstockish\\nstockist\\nstockists\\nstockman\\nstockmen\\nstockpile\\nstockpiled\\nstockpiles\\nstockpiling\\nstockpot\\nstockpots\\nstocks\\nstocky\\nstockyard\\nstockyards\\nstodge\\nstodged\\nstodges\\nstodgier\\nstodgiest\\nstodgily\\nstodging\\nstodgy\\nstogey\\nstogeys\\nstogie\\nstogies\\nstogy\\nstoic\\nstoical\\nstoically\\nstoicism\\nstoicisms\\nstoics\\nstoke\\nstoked\\nstoker\\nstokers\\nstokes\\nstokesia\\nstokesias\\nstoking\\nstole\\nstoled\\nstolen\\nstoles\\nstolid\\nstolider\\nstolidest\\nstolidities\\nstolidity\\nstolidly\\nstollen\\nstollens\\nstolon\\nstolonic\\nstolons\\nstoma\\nstomach\\nstomachache\\nstomachaches\\nstomached\\nstomaching\\nstomachs\\nstomachy\\nstomal\\nstomas\\nstomata\\nstomatal\\nstomate\\nstomates\\nstomatic\\nstomatitis\\nstomodea\\nstomp\\nstomped\\nstomper\\nstompers\\nstomping\\nstomps\\nstonable\\nstone\\nstoned\\nstoneflies\\nstonefly\\nstoner\\nstoners\\nstones\\nstoney\\nstonier\\nstoniest\\nstonily\\nstoning\\nstonish\\nstonished\\nstonishes\\nstonishing\\nstony\\nstood\\nstooge\\nstooged\\nstooges\\nstooging\\nstook\\nstooked\\nstooker\\nstookers\\nstooking\\nstooks\\nstool\\nstooled\\nstoolie\\nstoolies\\nstooling\\nstools\\nstoop\\nstooped\\nstooper\\nstoopers\\nstooping\\nstoops\\nstop\\nstopcock\\nstopcocks\\nstope\\nstoped\\nstoper\\nstopers\\nstopes\\nstopgap\\nstopgaps\\nstoping\\nstoplight\\nstoplights\\nstopover\\nstopovers\\nstoppage\\nstoppages\\nstopped\\nstopper\\nstoppered\\nstoppering\\nstoppers\\nstopping\\nstopple\\nstoppled\\nstopples\\nstoppling\\nstops\\nstopt\\nstopwatch\\nstopwatches\\nstorable\\nstorables\\nstorage\\nstorages\\nstorax\\nstoraxes\\nstore\\nstored\\nstorehouse\\nstorehouses\\nstorekeeper\\nstorekeepers\\nstoreroom\\nstorerooms\\nstores\\nstorey\\nstoreyed\\nstoreys\\nstoried\\nstories\\nstoring\\nstork\\nstorks\\nstorm\\nstormed\\nstormier\\nstormiest\\nstormily\\nstorming\\nstorms\\nstormy\\nstory\\nstorying\\nstoryteller\\nstorytellers\\nstorytelling\\nstorytellings\\nstoss\\nstotinka\\nstotinki\\nstound\\nstounded\\nstounding\\nstounds\\nstoup\\nstoups\\nstour\\nstoure\\nstoures\\nstourie\\nstours\\nstoury\\nstout\\nstouten\\nstoutened\\nstoutening\\nstoutens\\nstouter\\nstoutest\\nstoutish\\nstoutly\\nstoutness\\nstoutnesses\\nstouts\\nstove\\nstover\\nstovers\\nstoves\\nstow\\nstowable\\nstowage\\nstowages\\nstowaway\\nstowaways\\nstowed\\nstowing\\nstowp\\nstowps\\nstows\\nstraddle\\nstraddled\\nstraddles\\nstraddling\\nstrafe\\nstrafed\\nstrafer\\nstrafers\\nstrafes\\nstrafing\\nstraggle\\nstraggled\\nstraggler\\nstragglers\\nstraggles\\nstragglier\\nstraggliest\\nstraggling\\nstraggly\\nstraight\\nstraighted\\nstraighten\\nstraightened\\nstraightening\\nstraightens\\nstraighter\\nstraightest\\nstraightforward\\nstraightforwarder\\nstraightforwardest\\nstraighting\\nstraights\\nstraightway\\nstrain\\nstrained\\nstrainer\\nstrainers\\nstraining\\nstrains\\nstrait\\nstraiten\\nstraitened\\nstraitening\\nstraitens\\nstraiter\\nstraitest\\nstraitly\\nstraits\\nstrake\\nstraked\\nstrakes\\nstramash\\nstramashes\\nstramonies\\nstramony\\nstrand\\nstranded\\nstrander\\nstranders\\nstranding\\nstrands\\nstrang\\nstrange\\nstrangely\\nstrangeness\\nstrangenesses\\nstranger\\nstrangered\\nstrangering\\nstrangers\\nstrangest\\nstrangle\\nstrangled\\nstrangler\\nstranglers\\nstrangles\\nstrangling\\nstrangulation\\nstrangulations\\nstrap\\nstrapness\\nstrapnesses\\nstrapped\\nstrapper\\nstrappers\\nstrapping\\nstraps\\nstrass\\nstrasses\\nstrata\\nstratagem\\nstratagems\\nstratal\\nstratas\\nstrategic\\nstrategies\\nstrategist\\nstrategists\\nstrategy\\nstrath\\nstraths\\nstrati\\nstratification\\nstratifications\\nstratified\\nstratifies\\nstratify\\nstratifying\\nstratosphere\\nstratospheres\\nstratous\\nstratum\\nstratums\\nstratus\\nstravage\\nstravaged\\nstravages\\nstravaging\\nstravaig\\nstravaiged\\nstravaiging\\nstravaigs\\nstraw\\nstrawberries\\nstrawberry\\nstrawed\\nstrawhat\\nstrawier\\nstrawiest\\nstrawing\\nstraws\\nstrawy\\nstray\\nstrayed\\nstrayer\\nstrayers\\nstraying\\nstrays\\nstreak\\nstreaked\\nstreaker\\nstreakers\\nstreakier\\nstreakiest\\nstreaking\\nstreaks\\nstreaky\\nstream\\nstreamed\\nstreamer\\nstreamers\\nstreamier\\nstreamiest\\nstreaming\\nstreamline\\nstreamlines\\nstreams\\nstreamy\\nstreek\\nstreeked\\nstreeker\\nstreekers\\nstreeking\\nstreeks\\nstreet\\nstreetcar\\nstreetcars\\nstreets\\nstrength\\nstrengthen\\nstrengthened\\nstrengthener\\nstrengtheners\\nstrengthening\\nstrengthens\\nstrengths\\nstrenuous\\nstrenuously\\nstrep\\nstreps\\nstress\\nstressed\\nstresses\\nstressing\\nstressor\\nstressors\\nstretch\\nstretched\\nstretcher\\nstretchers\\nstretches\\nstretchier\\nstretchiest\\nstretching\\nstretchy\\nstretta\\nstrettas\\nstrette\\nstretti\\nstretto\\nstrettos\\nstreusel\\nstreusels\\nstrew\\nstrewed\\nstrewer\\nstrewers\\nstrewing\\nstrewn\\nstrews\\nstria\\nstriae\\nstriate\\nstriated\\nstriates\\nstriating\\nstrick\\nstricken\\nstrickle\\nstrickled\\nstrickles\\nstrickling\\nstricks\\nstrict\\nstricter\\nstrictest\\nstrictly\\nstrictness\\nstrictnesses\\nstricture\\nstrictures\\nstrid\\nstridden\\nstride\\nstrident\\nstrider\\nstriders\\nstrides\\nstriding\\nstridor\\nstridors\\nstrife\\nstrifes\\nstrigil\\nstrigils\\nstrigose\\nstrike\\nstriker\\nstrikers\\nstrikes\\nstriking\\nstrikingly\\nstring\\nstringed\\nstringent\\nstringer\\nstringers\\nstringier\\nstringiest\\nstringing\\nstrings\\nstringy\\nstrip\\nstripe\\nstriped\\nstriper\\nstripers\\nstripes\\nstripier\\nstripiest\\nstriping\\nstripings\\nstripped\\nstripper\\nstrippers\\nstripping\\nstrips\\nstript\\nstripy\\nstrive\\nstrived\\nstriven\\nstriver\\nstrivers\\nstrives\\nstriving\\nstrobe\\nstrobes\\nstrobic\\nstrobil\\nstrobila\\nstrobilae\\nstrobile\\nstrobiles\\nstrobili\\nstrobils\\nstrode\\nstroke\\nstroked\\nstroker\\nstrokers\\nstrokes\\nstroking\\nstroll\\nstrolled\\nstroller\\nstrollers\\nstrolling\\nstrolls\\nstroma\\nstromal\\nstromata\\nstrong\\nstronger\\nstrongest\\nstronghold\\nstrongholds\\nstrongly\\nstrongyl\\nstrongyls\\nstrontia\\nstrontias\\nstrontic\\nstrontium\\nstrontiums\\nstrook\\nstrop\\nstrophe\\nstrophes\\nstrophic\\nstropped\\nstropping\\nstrops\\nstroud\\nstrouds\\nstrove\\nstrow\\nstrowed\\nstrowing\\nstrown\\nstrows\\nstroy\\nstroyed\\nstroyer\\nstroyers\\nstroying\\nstroys\\nstruck\\nstrucken\\nstructural\\nstructure\\nstructures\\nstrudel\\nstrudels\\nstruggle\\nstruggled\\nstruggles\\nstruggling\\nstrum\\nstruma\\nstrumae\\nstrumas\\nstrummed\\nstrummer\\nstrummers\\nstrumming\\nstrumose\\nstrumous\\nstrumpet\\nstrumpets\\nstrums\\nstrung\\nstrunt\\nstrunted\\nstrunting\\nstrunts\\nstrut\\nstruts\\nstrutted\\nstrutter\\nstrutters\\nstrutting\\nstrychnine\\nstrychnines\\nstub\\nstubbed\\nstubbier\\nstubbiest\\nstubbily\\nstubbing\\nstubble\\nstubbled\\nstubbles\\nstubblier\\nstubbliest\\nstubbly\\nstubborn\\nstubbornly\\nstubbornness\\nstubbornnesses\\nstubby\\nstubiest\\nstubs\\nstucco\\nstuccoed\\nstuccoer\\nstuccoers\\nstuccoes\\nstuccoing\\nstuccos\\nstuck\\nstud\\nstudbook\\nstudbooks\\nstudded\\nstuddie\\nstuddies\\nstudding\\nstuddings\\nstudent\\nstudents\\nstudfish\\nstudfishes\\nstudied\\nstudier\\nstudiers\\nstudies\\nstudio\\nstudios\\nstudious\\nstudiously\\nstuds\\nstudwork\\nstudworks\\nstudy\\nstudying\\nstuff\\nstuffed\\nstuffer\\nstuffers\\nstuffier\\nstuffiest\\nstuffily\\nstuffing\\nstuffings\\nstuffs\\nstuffy\\nstuiver\\nstuivers\\nstull\\nstulls\\nstultification\\nstultifications\\nstultified\\nstultifies\\nstultify\\nstultifying\\nstum\\nstumble\\nstumbled\\nstumbler\\nstumblers\\nstumbles\\nstumbling\\nstummed\\nstumming\\nstump\\nstumpage\\nstumpages\\nstumped\\nstumper\\nstumpers\\nstumpier\\nstumpiest\\nstumping\\nstumps\\nstumpy\\nstums\\nstun\\nstung\\nstunk\\nstunned\\nstunner\\nstunners\\nstunning\\nstunningly\\nstuns\\nstunsail\\nstunsails\\nstunt\\nstunted\\nstunting\\nstunts\\nstupa\\nstupas\\nstupe\\nstupefaction\\nstupefactions\\nstupefied\\nstupefies\\nstupefy\\nstupefying\\nstupendous\\nstupendously\\nstupes\\nstupid\\nstupider\\nstupidest\\nstupidity\\nstupidly\\nstupids\\nstupor\\nstuporous\\nstupors\\nsturdied\\nsturdier\\nsturdies\\nsturdiest\\nsturdily\\nsturdiness\\nsturdinesses\\nsturdy\\nsturgeon\\nsturgeons\\nsturt\\nsturts\\nstutter\\nstuttered\\nstuttering\\nstutters\\nsty\\nstye\\nstyed\\nstyes\\nstygian\\nstying\\nstylar\\nstylate\\nstyle\\nstyled\\nstyler\\nstylers\\nstyles\\nstylet\\nstylets\\nstyli\\nstyling\\nstylings\\nstylise\\nstylised\\nstyliser\\nstylisers\\nstylises\\nstylish\\nstylishly\\nstylishness\\nstylishnesses\\nstylising\\nstylist\\nstylists\\nstylite\\nstylites\\nstylitic\\nstylize\\nstylized\\nstylizer\\nstylizers\\nstylizes\\nstylizing\\nstyloid\\nstylus\\nstyluses\\nstymie\\nstymied\\nstymieing\\nstymies\\nstymy\\nstymying\\nstypsis\\nstypsises\\nstyptic\\nstyptics\\nstyrax\\nstyraxes\\nstyrene\\nstyrenes\\nsuable\\nsuably\\nsuasion\\nsuasions\\nsuasive\\nsuasory\\nsuave\\nsuavely\\nsuaver\\nsuavest\\nsuavities\\nsuavity\\nsub\\nsuba\\nsubabbot\\nsubabbots\\nsubacid\\nsubacrid\\nsubacute\\nsubadar\\nsubadars\\nsubadult\\nsubadults\\nsubagencies\\nsubagency\\nsubagent\\nsubagents\\nsubah\\nsubahdar\\nsubahdars\\nsubahs\\nsubalar\\nsubarctic\\nsubarea\\nsubareas\\nsubarid\\nsubas\\nsubatmospheric\\nsubatom\\nsubatoms\\nsubaverage\\nsubaxial\\nsubbase\\nsubbasement\\nsubbasements\\nsubbases\\nsubbass\\nsubbasses\\nsubbed\\nsubbing\\nsubbings\\nsubbranch\\nsubbranches\\nsubbreed\\nsubbreeds\\nsubcabinet\\nsubcabinets\\nsubcategories\\nsubcategory\\nsubcause\\nsubcauses\\nsubcell\\nsubcells\\nsubchief\\nsubchiefs\\nsubclan\\nsubclans\\nsubclass\\nsubclassed\\nsubclasses\\nsubclassification\\nsubclassifications\\nsubclassified\\nsubclassifies\\nsubclassify\\nsubclassifying\\nsubclassing\\nsubclerk\\nsubclerks\\nsubcommand\\nsubcommands\\nsubcommission\\nsubcommissions\\nsubcommunities\\nsubcommunity\\nsubcomponent\\nsubcomponents\\nsubconcept\\nsubconcepts\\nsubconscious\\nsubconsciouses\\nsubconsciously\\nsubconsciousness\\nsubconsciousnesses\\nsubcontract\\nsubcontracted\\nsubcontracting\\nsubcontractor\\nsubcontractors\\nsubcontracts\\nsubcool\\nsubcooled\\nsubcooling\\nsubcools\\nsubculture\\nsubcultures\\nsubcutaneous\\nsubcutes\\nsubcutis\\nsubcutises\\nsubdean\\nsubdeans\\nsubdeb\\nsubdebs\\nsubdepartment\\nsubdepartments\\nsubdepot\\nsubdepots\\nsubdistrict\\nsubdistricts\\nsubdivide\\nsubdivided\\nsubdivides\\nsubdividing\\nsubdivision\\nsubdivisions\\nsubdual\\nsubduals\\nsubduce\\nsubduced\\nsubduces\\nsubducing\\nsubduct\\nsubducted\\nsubducting\\nsubducts\\nsubdue\\nsubdued\\nsubduer\\nsubduers\\nsubdues\\nsubduing\\nsubecho\\nsubechoes\\nsubedit\\nsubedited\\nsubediting\\nsubedits\\nsubentries\\nsubentry\\nsubepoch\\nsubepochs\\nsubequatorial\\nsuber\\nsuberect\\nsuberic\\nsuberin\\nsuberins\\nsuberise\\nsuberised\\nsuberises\\nsuberising\\nsuberize\\nsuberized\\nsuberizes\\nsuberizing\\nsuberose\\nsuberous\\nsubers\\nsubfamilies\\nsubfamily\\nsubfield\\nsubfields\\nsubfix\\nsubfixes\\nsubfloor\\nsubfloors\\nsubfluid\\nsubfreezing\\nsubfusc\\nsubgenera\\nsubgenus\\nsubgenuses\\nsubgrade\\nsubgrades\\nsubgroup\\nsubgroups\\nsubgum\\nsubhead\\nsubheading\\nsubheadings\\nsubheads\\nsubhuman\\nsubhumans\\nsubhumid\\nsubidea\\nsubideas\\nsubindex\\nsubindexes\\nsubindices\\nsubindustries\\nsubindustry\\nsubitem\\nsubitems\\nsubito\\nsubject\\nsubjected\\nsubjecting\\nsubjection\\nsubjections\\nsubjective\\nsubjectively\\nsubjectivities\\nsubjectivity\\nsubjects\\nsubjoin\\nsubjoined\\nsubjoining\\nsubjoins\\nsubjugate\\nsubjugated\\nsubjugates\\nsubjugating\\nsubjugation\\nsubjugations\\nsubjunctive\\nsubjunctives\\nsublate\\nsublated\\nsublates\\nsublating\\nsublease\\nsubleased\\nsubleases\\nsubleasing\\nsublet\\nsublethal\\nsublets\\nsubletting\\nsublevel\\nsublevels\\nsublime\\nsublimed\\nsublimer\\nsublimers\\nsublimes\\nsublimest\\nsubliming\\nsublimities\\nsublimity\\nsubliterate\\nsubmarine\\nsubmarines\\nsubmerge\\nsubmerged\\nsubmergence\\nsubmergences\\nsubmerges\\nsubmerging\\nsubmerse\\nsubmersed\\nsubmerses\\nsubmersible\\nsubmersing\\nsubmersion\\nsubmersions\\nsubmiss\\nsubmission\\nsubmissions\\nsubmissive\\nsubmit\\nsubmits\\nsubmitted\\nsubmitting\\nsubnasal\\nsubnetwork\\nsubnetworks\\nsubnodal\\nsubnormal\\nsuboceanic\\nsuboptic\\nsuboral\\nsuborder\\nsuborders\\nsubordinate\\nsubordinated\\nsubordinates\\nsubordinating\\nsubordination\\nsubordinations\\nsuborn\\nsuborned\\nsuborner\\nsuborners\\nsuborning\\nsuborns\\nsuboval\\nsubovate\\nsuboxide\\nsuboxides\\nsubpar\\nsubpart\\nsubparts\\nsubpena\\nsubpenaed\\nsubpenaing\\nsubpenas\\nsubphyla\\nsubplot\\nsubplots\\nsubpoena\\nsubpoenaed\\nsubpoenaing\\nsubpoenas\\nsubpolar\\nsubprincipal\\nsubprincipals\\nsubprocess\\nsubprocesses\\nsubprogram\\nsubprograms\\nsubproject\\nsubprojects\\nsubpubic\\nsubrace\\nsubraces\\nsubregion\\nsubregions\\nsubrent\\nsubrents\\nsubring\\nsubrings\\nsubroutine\\nsubroutines\\nsubrule\\nsubrules\\nsubs\\nsubsale\\nsubsales\\nsubscribe\\nsubscribed\\nsubscriber\\nsubscribers\\nsubscribes\\nsubscribing\\nsubscript\\nsubscription\\nsubscriptions\\nsubscripts\\nsubsect\\nsubsection\\nsubsections\\nsubsects\\nsubsequent\\nsubsequently\\nsubsere\\nsubseres\\nsubserve\\nsubserved\\nsubserves\\nsubserving\\nsubset\\nsubsets\\nsubshaft\\nsubshafts\\nsubshrub\\nsubshrubs\\nsubside\\nsubsided\\nsubsider\\nsubsiders\\nsubsides\\nsubsidiaries\\nsubsidiary\\nsubsidies\\nsubsiding\\nsubsidize\\nsubsidized\\nsubsidizes\\nsubsidizing\\nsubsidy\\nsubsist\\nsubsisted\\nsubsistence\\nsubsistences\\nsubsisting\\nsubsists\\nsubsoil\\nsubsoiled\\nsubsoiling\\nsubsoils\\nsubsolar\\nsubsonic\\nsubspace\\nsubspaces\\nsubspecialties\\nsubspecialty\\nsubspecies\\nsubstage\\nsubstages\\nsubstandard\\nsubstantial\\nsubstantially\\nsubstantiate\\nsubstantiated\\nsubstantiates\\nsubstantiating\\nsubstantiation\\nsubstantiations\\nsubstitute\\nsubstituted\\nsubstitutes\\nsubstituting\\nsubstitution\\nsubstitutions\\nsubstructure\\nsubstructures\\nsubsume\\nsubsumed\\nsubsumes\\nsubsuming\\nsubsurface\\nsubsystem\\nsubsystems\\nsubteen\\nsubteens\\nsubtemperate\\nsubtend\\nsubtended\\nsubtending\\nsubtends\\nsubterfuge\\nsubterfuges\\nsubterranean\\nsubterraneous\\nsubtext\\nsubtexts\\nsubtile\\nsubtiler\\nsubtilest\\nsubtilties\\nsubtilty\\nsubtitle\\nsubtitled\\nsubtitles\\nsubtitling\\nsubtle\\nsubtler\\nsubtlest\\nsubtleties\\nsubtlety\\nsubtly\\nsubtone\\nsubtones\\nsubtonic\\nsubtonics\\nsubtopic\\nsubtopics\\nsubtotal\\nsubtotaled\\nsubtotaling\\nsubtotalled\\nsubtotalling\\nsubtotals\\nsubtract\\nsubtracted\\nsubtracting\\nsubtraction\\nsubtractions\\nsubtracts\\nsubtreasuries\\nsubtreasury\\nsubtribe\\nsubtribes\\nsubtunic\\nsubtunics\\nsubtype\\nsubtypes\\nsubulate\\nsubunit\\nsubunits\\nsuburb\\nsuburban\\nsuburbans\\nsuburbed\\nsuburbia\\nsuburbias\\nsuburbs\\nsubvene\\nsubvened\\nsubvenes\\nsubvening\\nsubvert\\nsubverted\\nsubverting\\nsubverts\\nsubvicar\\nsubvicars\\nsubviral\\nsubvocal\\nsubway\\nsubways\\nsubzone\\nsubzones\\nsuccah\\nsuccahs\\nsucceed\\nsucceeded\\nsucceeding\\nsucceeds\\nsuccess\\nsuccesses\\nsuccessful\\nsuccessfully\\nsuccession\\nsuccessions\\nsuccessive\\nsuccessively\\nsuccessor\\nsuccessors\\nsuccinct\\nsuccincter\\nsuccinctest\\nsuccinctly\\nsuccinctness\\nsuccinctnesses\\nsuccinic\\nsuccinyl\\nsuccinyls\\nsuccor\\nsuccored\\nsuccorer\\nsuccorers\\nsuccories\\nsuccoring\\nsuccors\\nsuccory\\nsuccotash\\nsuccotashes\\nsuccoth\\nsuccour\\nsuccoured\\nsuccouring\\nsuccours\\nsuccuba\\nsuccubae\\nsuccubi\\nsuccubus\\nsuccubuses\\nsucculence\\nsucculences\\nsucculent\\nsucculents\\nsuccumb\\nsuccumbed\\nsuccumbing\\nsuccumbs\\nsuccuss\\nsuccussed\\nsuccusses\\nsuccussing\\nsuch\\nsuchlike\\nsuchness\\nsuchnesses\\nsuck\\nsucked\\nsucker\\nsuckered\\nsuckering\\nsuckers\\nsuckfish\\nsuckfishes\\nsucking\\nsuckle\\nsuckled\\nsuckler\\nsucklers\\nsuckles\\nsuckless\\nsuckling\\nsucklings\\nsucks\\nsucrase\\nsucrases\\nsucre\\nsucres\\nsucrose\\nsucroses\\nsuction\\nsuctions\\nsudaria\\nsudaries\\nsudarium\\nsudary\\nsudation\\nsudations\\nsudatories\\nsudatory\\nsudd\\nsudden\\nsuddenly\\nsuddenness\\nsuddennesses\\nsuddens\\nsudds\\nsudor\\nsudoral\\nsudors\\nsuds\\nsudsed\\nsudser\\nsudsers\\nsudses\\nsudsier\\nsudsiest\\nsudsing\\nsudsless\\nsudsy\\nsue\\nsued\\nsuede\\nsueded\\nsuedes\\nsueding\\nsuer\\nsuers\\nsues\\nsuet\\nsuets\\nsuety\\nsuffari\\nsuffaris\\nsuffer\\nsuffered\\nsufferer\\nsufferers\\nsuffering\\nsufferings\\nsuffers\\nsuffice\\nsufficed\\nsufficer\\nsufficers\\nsuffices\\nsufficiencies\\nsufficiency\\nsufficient\\nsufficiently\\nsufficing\\nsuffix\\nsuffixal\\nsuffixation\\nsuffixations\\nsuffixed\\nsuffixes\\nsuffixing\\nsufflate\\nsufflated\\nsufflates\\nsufflating\\nsuffocate\\nsuffocated\\nsuffocates\\nsuffocating\\nsuffocatingly\\nsuffocation\\nsuffocations\\nsuffrage\\nsuffrages\\nsuffuse\\nsuffused\\nsuffuses\\nsuffusing\\nsugar\\nsugarcane\\nsugarcanes\\nsugared\\nsugarier\\nsugariest\\nsugaring\\nsugars\\nsugary\\nsuggest\\nsuggested\\nsuggestible\\nsuggesting\\nsuggestion\\nsuggestions\\nsuggestive\\nsuggestively\\nsuggestiveness\\nsuggestivenesses\\nsuggests\\nsugh\\nsughed\\nsughing\\nsughs\\nsuicidal\\nsuicide\\nsuicided\\nsuicides\\nsuiciding\\nsuing\\nsuint\\nsuints\\nsuit\\nsuitabilities\\nsuitability\\nsuitable\\nsuitably\\nsuitcase\\nsuitcases\\nsuite\\nsuited\\nsuites\\nsuiting\\nsuitings\\nsuitlike\\nsuitor\\nsuitors\\nsuits\\nsukiyaki\\nsukiyakis\\nsukkah\\nsukkahs\\nsukkoth\\nsulcate\\nsulcated\\nsulci\\nsulcus\\nsuldan\\nsuldans\\nsulfa\\nsulfas\\nsulfate\\nsulfated\\nsulfates\\nsulfating\\nsulfid\\nsulfide\\nsulfides\\nsulfids\\nsulfinyl\\nsulfinyls\\nsulfite\\nsulfites\\nsulfitic\\nsulfo\\nsulfonal\\nsulfonals\\nsulfone\\nsulfones\\nsulfonic\\nsulfonyl\\nsulfonyls\\nsulfur\\nsulfured\\nsulfureous\\nsulfuret\\nsulfureted\\nsulfureting\\nsulfurets\\nsulfuretted\\nsulfuretting\\nsulfuric\\nsulfuring\\nsulfurous\\nsulfurs\\nsulfury\\nsulfuryl\\nsulfuryls\\nsulk\\nsulked\\nsulker\\nsulkers\\nsulkier\\nsulkies\\nsulkiest\\nsulkily\\nsulkiness\\nsulkinesses\\nsulking\\nsulks\\nsulky\\nsullage\\nsullages\\nsullen\\nsullener\\nsullenest\\nsullenly\\nsullenness\\nsullennesses\\nsullied\\nsullies\\nsully\\nsullying\\nsulpha\\nsulphas\\nsulphate\\nsulphated\\nsulphates\\nsulphating\\nsulphid\\nsulphide\\nsulphides\\nsulphids\\nsulphite\\nsulphites\\nsulphone\\nsulphones\\nsulphur\\nsulphured\\nsulphuring\\nsulphurs\\nsulphury\\nsultan\\nsultana\\nsultanas\\nsultanate\\nsultanated\\nsultanates\\nsultanating\\nsultanic\\nsultans\\nsultrier\\nsultriest\\nsultrily\\nsultry\\nsum\\nsumac\\nsumach\\nsumachs\\nsumacs\\nsumless\\nsumma\\nsummable\\nsummae\\nsummand\\nsummands\\nsummaries\\nsummarily\\nsummarization\\nsummarizations\\nsummarize\\nsummarized\\nsummarizes\\nsummarizing\\nsummary\\nsummas\\nsummate\\nsummated\\nsummates\\nsummating\\nsummation\\nsummations\\nsummed\\nsummer\\nsummered\\nsummerier\\nsummeriest\\nsummering\\nsummerly\\nsummers\\nsummery\\nsumming\\nsummit\\nsummital\\nsummitries\\nsummitry\\nsummits\\nsummon\\nsummoned\\nsummoner\\nsummoners\\nsummoning\\nsummons\\nsummonsed\\nsummonses\\nsummonsing\\nsumo\\nsumos\\nsump\\nsumps\\nsumpter\\nsumpters\\nsumptuous\\nsumpweed\\nsumpweeds\\nsums\\nsun\\nsunback\\nsunbaked\\nsunbath\\nsunbathe\\nsunbathed\\nsunbathes\\nsunbathing\\nsunbaths\\nsunbeam\\nsunbeams\\nsunbird\\nsunbirds\\nsunbow\\nsunbows\\nsunburn\\nsunburned\\nsunburning\\nsunburns\\nsunburnt\\nsunburst\\nsunbursts\\nsundae\\nsundaes\\nsunder\\nsundered\\nsunderer\\nsunderers\\nsundering\\nsunders\\nsundew\\nsundews\\nsundial\\nsundials\\nsundog\\nsundogs\\nsundown\\nsundowns\\nsundries\\nsundrops\\nsundry\\nsunfast\\nsunfish\\nsunfishes\\nsunflower\\nsunflowers\\nsung\\nsunglass\\nsunglasses\\nsunglow\\nsunglows\\nsunk\\nsunken\\nsunket\\nsunkets\\nsunlamp\\nsunlamps\\nsunland\\nsunlands\\nsunless\\nsunlight\\nsunlights\\nsunlike\\nsunlit\\nsunn\\nsunna\\nsunnas\\nsunned\\nsunnier\\nsunniest\\nsunnily\\nsunning\\nsunns\\nsunny\\nsunrise\\nsunrises\\nsunroof\\nsunroofs\\nsunroom\\nsunrooms\\nsuns\\nsunscald\\nsunscalds\\nsunset\\nsunsets\\nsunshade\\nsunshades\\nsunshine\\nsunshines\\nsunshiny\\nsunspot\\nsunspots\\nsunstone\\nsunstones\\nsunstroke\\nsunsuit\\nsunsuits\\nsuntan\\nsuntans\\nsunup\\nsunups\\nsunward\\nsunwards\\nsunwise\\nsup\\nsupe\\nsuper\\nsuperabundance\\nsuperabundances\\nsuperabundant\\nsuperadd\\nsuperadded\\nsuperadding\\nsuperadds\\nsuperambitious\\nsuperathlete\\nsuperathletes\\nsuperb\\nsuperber\\nsuperbest\\nsuperbly\\nsuperbomb\\nsuperbombs\\nsupercilious\\nsuperclean\\nsupercold\\nsupercolossal\\nsuperconvenient\\nsuperdense\\nsupered\\nsupereffective\\nsuperefficiencies\\nsuperefficiency\\nsuperefficient\\nsuperego\\nsuperegos\\nsuperenthusiasm\\nsuperenthusiasms\\nsuperenthusiastic\\nsuperfast\\nsuperficial\\nsuperficialities\\nsuperficiality\\nsuperficially\\nsuperfix\\nsuperfixes\\nsuperfluity\\nsuperfluous\\nsupergood\\nsupergovernment\\nsupergovernments\\nsupergroup\\nsupergroups\\nsuperhard\\nsuperhero\\nsuperheroine\\nsuperheroines\\nsuperheros\\nsuperhuman\\nsuperhumans\\nsuperimpose\\nsuperimposed\\nsuperimposes\\nsuperimposing\\nsupering\\nsuperintellectual\\nsuperintellectuals\\nsuperintelligence\\nsuperintelligences\\nsuperintelligent\\nsuperintend\\nsuperintended\\nsuperintendence\\nsuperintendences\\nsuperintendencies\\nsuperintendency\\nsuperintendent\\nsuperintendents\\nsuperintending\\nsuperintends\\nsuperior\\nsuperiorities\\nsuperiority\\nsuperiors\\nsuperjet\\nsuperjets\\nsuperlain\\nsuperlative\\nsuperlatively\\nsuperlay\\nsuperlie\\nsuperlies\\nsuperlying\\nsuperman\\nsupermarket\\nsupermarkets\\nsupermen\\nsupermodern\\nsupernal\\nsupernatural\\nsupernaturally\\nsuperpatriot\\nsuperpatriotic\\nsuperpatriotism\\nsuperpatriotisms\\nsuperpatriots\\nsuperplane\\nsuperplanes\\nsuperpolite\\nsuperport\\nsuperports\\nsuperpowerful\\nsuperrefined\\nsuperrich\\nsupers\\nsupersalesman\\nsupersalesmen\\nsuperscout\\nsuperscouts\\nsuperscript\\nsuperscripts\\nsupersecrecies\\nsupersecrecy\\nsupersecret\\nsupersede\\nsuperseded\\nsupersedes\\nsuperseding\\nsupersensitive\\nsupersex\\nsupersexes\\nsupership\\nsuperships\\nsupersize\\nsupersized\\nsuperslick\\nsupersmooth\\nsupersoft\\nsupersonic\\nsuperspecial\\nsuperspecialist\\nsuperspecialists\\nsuperstar\\nsuperstars\\nsuperstate\\nsuperstates\\nsuperstition\\nsuperstitions\\nsuperstitious\\nsuperstrength\\nsuperstrengths\\nsuperstrong\\nsuperstructure\\nsuperstructures\\nsupersuccessful\\nsupersystem\\nsupersystems\\nsupertanker\\nsupertankers\\nsupertax\\nsupertaxes\\nsuperthick\\nsuperthin\\nsupertight\\nsupertough\\nsupervene\\nsupervened\\nsupervenes\\nsupervenient\\nsupervening\\nsupervise\\nsupervised\\nsupervises\\nsupervising\\nsupervision\\nsupervisions\\nsupervisor\\nsupervisors\\nsupervisory\\nsuperweak\\nsuperweapon\\nsuperweapons\\nsuperwoman\\nsuperwomen\\nsupes\\nsupinate\\nsupinated\\nsupinates\\nsupinating\\nsupine\\nsupinely\\nsupines\\nsupped\\nsupper\\nsuppers\\nsupping\\nsupplant\\nsupplanted\\nsupplanting\\nsupplants\\nsupple\\nsuppled\\nsupplely\\nsupplement\\nsupplemental\\nsupplementary\\nsupplements\\nsuppler\\nsupples\\nsupplest\\nsuppliant\\nsuppliants\\nsupplicant\\nsupplicants\\nsupplicate\\nsupplicated\\nsupplicates\\nsupplicating\\nsupplication\\nsupplications\\nsupplied\\nsupplier\\nsuppliers\\nsupplies\\nsuppling\\nsupply\\nsupplying\\nsupport\\nsupportable\\nsupported\\nsupporter\\nsupporters\\nsupporting\\nsupportive\\nsupports\\nsupposal\\nsupposals\\nsuppose\\nsupposed\\nsupposer\\nsupposers\\nsupposes\\nsupposing\\nsupposition\\nsuppositions\\nsuppositories\\nsuppository\\nsuppress\\nsuppressed\\nsuppresses\\nsuppressing\\nsuppression\\nsuppressions\\nsuppurate\\nsuppurated\\nsuppurates\\nsuppurating\\nsuppuration\\nsuppurations\\nsupra\\nsupraclavicular\\nsupremacies\\nsupremacy\\nsupreme\\nsupremely\\nsupremer\\nsupremest\\nsups\\nsura\\nsurah\\nsurahs\\nsural\\nsuras\\nsurbase\\nsurbased\\nsurbases\\nsurcease\\nsurceased\\nsurceases\\nsurceasing\\nsurcharge\\nsurcharges\\nsurcoat\\nsurcoats\\nsurd\\nsurds\\nsure\\nsurefire\\nsurely\\nsureness\\nsurenesses\\nsurer\\nsurest\\nsureties\\nsurety\\nsurf\\nsurfable\\nsurface\\nsurfaced\\nsurfacer\\nsurfacers\\nsurfaces\\nsurfacing\\nsurfbird\\nsurfbirds\\nsurfboat\\nsurfboats\\nsurfed\\nsurfeit\\nsurfeited\\nsurfeiting\\nsurfeits\\nsurfer\\nsurfers\\nsurffish\\nsurffishes\\nsurfier\\nsurfiest\\nsurfing\\nsurfings\\nsurflike\\nsurfs\\nsurfy\\nsurge\\nsurged\\nsurgeon\\nsurgeons\\nsurger\\nsurgeries\\nsurgers\\nsurgery\\nsurges\\nsurgical\\nsurgically\\nsurging\\nsurgy\\nsuricate\\nsuricates\\nsurlier\\nsurliest\\nsurlily\\nsurly\\nsurmise\\nsurmised\\nsurmiser\\nsurmisers\\nsurmises\\nsurmising\\nsurmount\\nsurmounted\\nsurmounting\\nsurmounts\\nsurname\\nsurnamed\\nsurnamer\\nsurnamers\\nsurnames\\nsurnaming\\nsurpass\\nsurpassed\\nsurpasses\\nsurpassing\\nsurpassingly\\nsurplice\\nsurplices\\nsurplus\\nsurpluses\\nsurprint\\nsurprinted\\nsurprinting\\nsurprints\\nsurprise\\nsurprised\\nsurprises\\nsurprising\\nsurprisingly\\nsurprize\\nsurprized\\nsurprizes\\nsurprizing\\nsurra\\nsurras\\nsurreal\\nsurrealism\\nsurrender\\nsurrendered\\nsurrendering\\nsurrenders\\nsurreptitious\\nsurreptitiously\\nsurrey\\nsurreys\\nsurround\\nsurrounded\\nsurrounding\\nsurroundings\\nsurrounds\\nsurroyal\\nsurroyals\\nsurtax\\nsurtaxed\\nsurtaxes\\nsurtaxing\\nsurtout\\nsurtouts\\nsurveil\\nsurveiled\\nsurveiling\\nsurveillance\\nsurveillances\\nsurveils\\nsurvey\\nsurveyed\\nsurveying\\nsurveyor\\nsurveyors\\nsurveys\\nsurvival\\nsurvivals\\nsurvive\\nsurvived\\nsurviver\\nsurvivers\\nsurvives\\nsurviving\\nsurvivor\\nsurvivors\\nsurvivorship\\nsurvivorships\\nsusceptibilities\\nsusceptibility\\nsusceptible\\nsuslik\\nsusliks\\nsuspect\\nsuspected\\nsuspecting\\nsuspects\\nsuspend\\nsuspended\\nsuspender\\nsuspenders\\nsuspending\\nsuspends\\nsuspense\\nsuspenseful\\nsuspenses\\nsuspension\\nsuspensions\\nsuspicion\\nsuspicions\\nsuspicious\\nsuspiciously\\nsuspire\\nsuspired\\nsuspires\\nsuspiring\\nsustain\\nsustained\\nsustaining\\nsustains\\nsustenance\\nsustenances\\nsusurrus\\nsusurruses\\nsutler\\nsutlers\\nsutra\\nsutras\\nsutta\\nsuttas\\nsuttee\\nsuttees\\nsutural\\nsuture\\nsutured\\nsutures\\nsuturing\\nsuzerain\\nsuzerains\\nsvaraj\\nsvarajes\\nsvedberg\\nsvedbergs\\nsvelte\\nsveltely\\nsvelter\\nsveltest\\nswab\\nswabbed\\nswabber\\nswabbers\\nswabbie\\nswabbies\\nswabbing\\nswabby\\nswabs\\nswaddle\\nswaddled\\nswaddles\\nswaddling\\nswag\\nswage\\nswaged\\nswager\\nswagers\\nswages\\nswagged\\nswagger\\nswaggered\\nswaggering\\nswaggers\\nswagging\\nswaging\\nswagman\\nswagmen\\nswags\\nswail\\nswails\\nswain\\nswainish\\nswains\\nswale\\nswales\\nswallow\\nswallowed\\nswallowing\\nswallows\\nswam\\nswami\\nswamies\\nswamis\\nswamp\\nswamped\\nswamper\\nswampers\\nswampier\\nswampiest\\nswamping\\nswampish\\nswamps\\nswampy\\nswamy\\nswan\\nswang\\nswanherd\\nswanherds\\nswank\\nswanked\\nswanker\\nswankest\\nswankier\\nswankiest\\nswankily\\nswanking\\nswanks\\nswanky\\nswanlike\\nswanned\\nswanneries\\nswannery\\nswanning\\nswanpan\\nswanpans\\nswans\\nswanskin\\nswanskins\\nswap\\nswapped\\nswapper\\nswappers\\nswapping\\nswaps\\nswaraj\\nswarajes\\nsward\\nswarded\\nswarding\\nswards\\nsware\\nswarf\\nswarfs\\nswarm\\nswarmed\\nswarmer\\nswarmers\\nswarming\\nswarms\\nswart\\nswarth\\nswarthier\\nswarthiest\\nswarths\\nswarthy\\nswarty\\nswash\\nswashbuckler\\nswashbucklers\\nswashbuckling\\nswashbucklings\\nswashed\\nswasher\\nswashers\\nswashes\\nswashing\\nswastica\\nswasticas\\nswastika\\nswastikas\\nswat\\nswatch\\nswatches\\nswath\\nswathe\\nswathed\\nswather\\nswathers\\nswathes\\nswathing\\nswaths\\nswats\\nswatted\\nswatter\\nswatters\\nswatting\\nsway\\nswayable\\nswayback\\nswaybacks\\nswayed\\nswayer\\nswayers\\nswayful\\nswaying\\nsways\\nswear\\nswearer\\nswearers\\nswearing\\nswears\\nsweat\\nsweatbox\\nsweatboxes\\nsweated\\nsweater\\nsweaters\\nsweatier\\nsweatiest\\nsweatily\\nsweating\\nsweats\\nsweaty\\nswede\\nswedes\\nsweenies\\nsweeny\\nsweep\\nsweeper\\nsweepers\\nsweepier\\nsweepiest\\nsweeping\\nsweepings\\nsweeps\\nsweepstakes\\nsweepy\\nsweer\\nsweet\\nsweeten\\nsweetened\\nsweetener\\nsweeteners\\nsweetening\\nsweetens\\nsweeter\\nsweetest\\nsweetheart\\nsweethearts\\nsweetie\\nsweeties\\nsweeting\\nsweetings\\nsweetish\\nsweetly\\nsweetness\\nsweetnesses\\nsweets\\nsweetsop\\nsweetsops\\nswell\\nswelled\\nsweller\\nswellest\\nswelling\\nswellings\\nswells\\nswelter\\nsweltered\\nsweltering\\nswelters\\nsweltrier\\nsweltriest\\nsweltry\\nswept\\nswerve\\nswerved\\nswerver\\nswervers\\nswerves\\nswerving\\nsweven\\nswevens\\nswift\\nswifter\\nswifters\\nswiftest\\nswiftly\\nswiftness\\nswiftnesses\\nswifts\\nswig\\nswigged\\nswigger\\nswiggers\\nswigging\\nswigs\\nswill\\nswilled\\nswiller\\nswillers\\nswilling\\nswills\\nswim\\nswimmer\\nswimmers\\nswimmier\\nswimmiest\\nswimmily\\nswimming\\nswimmings\\nswimmy\\nswims\\nswimsuit\\nswimsuits\\nswindle\\nswindled\\nswindler\\nswindlers\\nswindles\\nswindling\\nswine\\nswinepox\\nswinepoxes\\nswing\\nswinge\\nswinged\\nswingeing\\nswinger\\nswingers\\nswinges\\nswingier\\nswingiest\\nswinging\\nswingle\\nswingled\\nswingles\\nswingling\\nswings\\nswingy\\nswinish\\nswink\\nswinked\\nswinking\\nswinks\\nswinney\\nswinneys\\nswipe\\nswiped\\nswipes\\nswiping\\nswiple\\nswiples\\nswipple\\nswipples\\nswirl\\nswirled\\nswirlier\\nswirliest\\nswirling\\nswirls\\nswirly\\nswish\\nswished\\nswisher\\nswishers\\nswishes\\nswishier\\nswishiest\\nswishing\\nswishy\\nswiss\\nswisses\\nswitch\\nswitchboard\\nswitchboards\\nswitched\\nswitcher\\nswitchers\\nswitches\\nswitching\\nswith\\nswithe\\nswither\\nswithered\\nswithering\\nswithers\\nswithly\\nswive\\nswived\\nswivel\\nswiveled\\nswiveling\\nswivelled\\nswivelling\\nswivels\\nswives\\nswivet\\nswivets\\nswiving\\nswizzle\\nswizzled\\nswizzler\\nswizzlers\\nswizzles\\nswizzling\\nswob\\nswobbed\\nswobber\\nswobbers\\nswobbing\\nswobs\\nswollen\\nswoon\\nswooned\\nswooner\\nswooners\\nswooning\\nswoons\\nswoop\\nswooped\\nswooper\\nswoopers\\nswooping\\nswoops\\nswoosh\\nswooshed\\nswooshes\\nswooshing\\nswop\\nswopped\\nswopping\\nswops\\nsword\\nswordfish\\nswordfishes\\nswordman\\nswordmen\\nswords\\nswore\\nsworn\\nswot\\nswots\\nswotted\\nswotter\\nswotters\\nswotting\\nswoun\\nswound\\nswounded\\nswounding\\nswounds\\nswouned\\nswouning\\nswouns\\nswum\\nswung\\nsybarite\\nsybarites\\nsybo\\nsyboes\\nsycamine\\nsycamines\\nsycamore\\nsycamores\\nsyce\\nsycee\\nsycees\\nsyces\\nsycomore\\nsycomores\\nsyconia\\nsyconium\\nsycophant\\nsycophantic\\nsycophants\\nsycoses\\nsycosis\\nsyenite\\nsyenites\\nsyenitic\\nsyke\\nsykes\\nsyllabi\\nsyllabic\\nsyllabics\\nsyllable\\nsyllabled\\nsyllables\\nsyllabling\\nsyllabub\\nsyllabubs\\nsyllabus\\nsyllabuses\\nsylph\\nsylphic\\nsylphid\\nsylphids\\nsylphish\\nsylphs\\nsylphy\\nsylva\\nsylvae\\nsylvan\\nsylvans\\nsylvas\\nsylvatic\\nsylvin\\nsylvine\\nsylvines\\nsylvins\\nsylvite\\nsylvites\\nsymbion\\nsymbions\\nsymbiont\\nsymbionts\\nsymbiot\\nsymbiote\\nsymbiotes\\nsymbiots\\nsymbol\\nsymboled\\nsymbolic\\nsymbolical\\nsymbolically\\nsymboling\\nsymbolism\\nsymbolisms\\nsymbolization\\nsymbolizations\\nsymbolize\\nsymbolized\\nsymbolizes\\nsymbolizing\\nsymbolled\\nsymbolling\\nsymbols\\nsymmetric\\nsymmetrical\\nsymmetrically\\nsymmetries\\nsymmetry\\nsympathetic\\nsympathetically\\nsympathies\\nsympathize\\nsympathized\\nsympathizes\\nsympathizing\\nsympathy\\nsympatries\\nsympatry\\nsymphonic\\nsymphonies\\nsymphony\\nsympodia\\nsymposia\\nsymposium\\nsymptom\\nsymptomatically\\nsymptomatology\\nsymptoms\\nsyn\\nsynagog\\nsynagogs\\nsynagogue\\nsynagogues\\nsynapse\\nsynapsed\\nsynapses\\nsynapsing\\nsynapsis\\nsynaptic\\nsync\\nsyncarp\\nsyncarpies\\nsyncarps\\nsyncarpy\\nsynced\\nsynch\\nsynched\\nsynching\\nsynchro\\nsynchronization\\nsynchronizations\\nsynchronize\\nsynchronized\\nsynchronizes\\nsynchronizing\\nsynchros\\nsynchs\\nsyncing\\nsyncline\\nsynclines\\nsyncom\\nsyncoms\\nsyncopal\\nsyncopate\\nsyncopated\\nsyncopates\\nsyncopating\\nsyncopation\\nsyncopations\\nsyncope\\nsyncopes\\nsyncopic\\nsyncs\\nsyncytia\\nsyndeses\\nsyndesis\\nsyndesises\\nsyndet\\nsyndetic\\nsyndets\\nsyndic\\nsyndical\\nsyndicate\\nsyndicated\\nsyndicates\\nsyndicating\\nsyndication\\nsyndics\\nsyndrome\\nsyndromes\\nsyne\\nsynectic\\nsynergia\\nsynergias\\nsynergic\\nsynergid\\nsynergids\\nsynergies\\nsynergy\\nsynesis\\nsynesises\\nsyngamic\\nsyngamies\\nsyngamy\\nsynod\\nsynodal\\nsynodic\\nsynods\\nsynonym\\nsynonyme\\nsynonymes\\nsynonymies\\nsynonymous\\nsynonyms\\nsynonymy\\nsynopses\\nsynopsis\\nsynoptic\\nsynovia\\nsynovial\\nsynovias\\nsyntactic\\nsyntactical\\nsyntax\\nsyntaxes\\nsyntheses\\nsynthesis\\nsynthesize\\nsynthesized\\nsynthesizer\\nsynthesizers\\nsynthesizes\\nsynthesizing\\nsynthetic\\nsynthetically\\nsynthetics\\nsyntonic\\nsyntonies\\nsyntony\\nsynura\\nsynurae\\nsypher\\nsyphered\\nsyphering\\nsyphers\\nsyphilis\\nsyphilises\\nsyphilitic\\nsyphon\\nsyphoned\\nsyphoning\\nsyphons\\nsyren\\nsyrens\\nsyringa\\nsyringas\\nsyringe\\nsyringed\\nsyringes\\nsyringing\\nsyrinx\\nsyrinxes\\nsyrphian\\nsyrphians\\nsyrphid\\nsyrphids\\nsyrup\\nsyrups\\nsyrupy\\nsystem\\nsystematic\\nsystematical\\nsystematically\\nsystematize\\nsystematized\\nsystematizes\\nsystematizing\\nsystemic\\nsystemics\\nsystems\\nsystole\\nsystoles\\nsystolic\\nsyzygal\\nsyzygial\\nsyzygies\\nsyzygy\\nta\\ntab\\ntabanid\\ntabanids\\ntabard\\ntabarded\\ntabards\\ntabaret\\ntabarets\\ntabbed\\ntabbied\\ntabbies\\ntabbing\\ntabbis\\ntabbises\\ntabby\\ntabbying\\ntaber\\ntabered\\ntabering\\ntabernacle\\ntabernacles\\ntabers\\ntabes\\ntabetic\\ntabetics\\ntabid\\ntabla\\ntablas\\ntable\\ntableau\\ntableaus\\ntableaux\\ntablecloth\\ntablecloths\\ntabled\\ntableful\\ntablefuls\\ntables\\ntablesful\\ntablespoon\\ntablespoonful\\ntablespoonfuls\\ntablespoons\\ntablet\\ntableted\\ntableting\\ntabletop\\ntabletops\\ntablets\\ntabletted\\ntabletting\\ntableware\\ntablewares\\ntabling\\ntabloid\\ntabloids\\ntaboo\\ntabooed\\ntabooing\\ntaboos\\ntabor\\ntabored\\ntaborer\\ntaborers\\ntaboret\\ntaborets\\ntaborin\\ntaborine\\ntaborines\\ntaboring\\ntaborins\\ntabors\\ntabour\\ntaboured\\ntabourer\\ntabourers\\ntabouret\\ntabourets\\ntabouring\\ntabours\\ntabs\\ntabu\\ntabued\\ntabuing\\ntabular\\ntabulate\\ntabulated\\ntabulates\\ntabulating\\ntabulation\\ntabulations\\ntabulator\\ntabulators\\ntabus\\ntace\\ntaces\\ntacet\\ntach\\ntache\\ntaches\\ntachinid\\ntachinids\\ntachism\\ntachisms\\ntachist\\ntachiste\\ntachistes\\ntachists\\ntachs\\ntacit\\ntacitly\\ntacitness\\ntacitnesses\\ntaciturn\\ntaciturnities\\ntaciturnity\\ntack\\ntacked\\ntacker\\ntackers\\ntacket\\ntackets\\ntackey\\ntackier\\ntackiest\\ntackified\\ntackifies\\ntackify\\ntackifying\\ntackily\\ntacking\\ntackle\\ntackled\\ntackler\\ntacklers\\ntackles\\ntackless\\ntackling\\ntacklings\\ntacks\\ntacky\\ntacnode\\ntacnodes\\ntaco\\ntaconite\\ntaconites\\ntacos\\ntact\\ntactful\\ntactfully\\ntactic\\ntactical\\ntactician\\ntacticians\\ntactics\\ntactile\\ntaction\\ntactions\\ntactless\\ntactlessly\\ntacts\\ntactual\\ntad\\ntadpole\\ntadpoles\\ntads\\ntae\\ntael\\ntaels\\ntaenia\\ntaeniae\\ntaenias\\ntaffarel\\ntaffarels\\ntafferel\\ntafferels\\ntaffeta\\ntaffetas\\ntaffia\\ntaffias\\ntaffies\\ntaffrail\\ntaffrails\\ntaffy\\ntafia\\ntafias\\ntag\\ntagalong\\ntagalongs\\ntagboard\\ntagboards\\ntagged\\ntagger\\ntaggers\\ntagging\\ntaglike\\ntagmeme\\ntagmemes\\ntagrag\\ntagrags\\ntags\\ntahr\\ntahrs\\ntahsil\\ntahsils\\ntaiga\\ntaigas\\ntaiglach\\ntail\\ntailback\\ntailbacks\\ntailbone\\ntailbones\\ntailcoat\\ntailcoats\\ntailed\\ntailer\\ntailers\\ntailgate\\ntailgated\\ntailgates\\ntailgating\\ntailing\\ntailings\\ntaille\\ntailles\\ntailless\\ntaillight\\ntaillights\\ntaillike\\ntailor\\ntailored\\ntailoring\\ntailors\\ntailpipe\\ntailpipes\\ntailrace\\ntailraces\\ntails\\ntailskid\\ntailskids\\ntailspin\\ntailspins\\ntailwind\\ntailwinds\\ntain\\ntains\\ntaint\\ntainted\\ntainting\\ntaints\\ntaipan\\ntaipans\\ntaj\\ntajes\\ntakable\\ntakahe\\ntakahes\\ntake\\ntakeable\\ntakedown\\ntakedowns\\ntaken\\ntakeoff\\ntakeoffs\\ntakeout\\ntakeouts\\ntakeover\\ntakeovers\\ntaker\\ntakers\\ntakes\\ntakin\\ntaking\\ntakingly\\ntakings\\ntakins\\ntala\\ntalapoin\\ntalapoins\\ntalar\\ntalaria\\ntalars\\ntalas\\ntalc\\ntalced\\ntalcing\\ntalcked\\ntalcking\\ntalcky\\ntalcose\\ntalcous\\ntalcs\\ntalcum\\ntalcums\\ntale\\ntalent\\ntalented\\ntalents\\ntaler\\ntalers\\ntales\\ntalesman\\ntalesmen\\ntaleysim\\ntali\\ntalion\\ntalions\\ntaliped\\ntalipeds\\ntalipes\\ntalipot\\ntalipots\\ntalisman\\ntalismans\\ntalk\\ntalkable\\ntalkative\\ntalked\\ntalker\\ntalkers\\ntalkie\\ntalkier\\ntalkies\\ntalkiest\\ntalking\\ntalkings\\ntalks\\ntalky\\ntall\\ntallage\\ntallaged\\ntallages\\ntallaging\\ntallaism\\ntallboy\\ntallboys\\ntaller\\ntallest\\ntallied\\ntallier\\ntallies\\ntallish\\ntallith\\ntallithes\\ntallithim\\ntallitoth\\ntallness\\ntallnesses\\ntallol\\ntallols\\ntallow\\ntallowed\\ntallowing\\ntallows\\ntallowy\\ntally\\ntallyho\\ntallyhoed\\ntallyhoing\\ntallyhos\\ntallying\\ntallyman\\ntallymen\\ntalmudic\\ntalon\\ntaloned\\ntalons\\ntalooka\\ntalookas\\ntaluk\\ntaluka\\ntalukas\\ntaluks\\ntalus\\ntaluses\\ntam\\ntamable\\ntamal\\ntamale\\ntamales\\ntamals\\ntamandu\\ntamandua\\ntamanduas\\ntamandus\\ntamarack\\ntamaracks\\ntamarao\\ntamaraos\\ntamarau\\ntamaraus\\ntamarin\\ntamarind\\ntamarinds\\ntamarins\\ntamarisk\\ntamarisks\\ntamasha\\ntamashas\\ntambac\\ntambacs\\ntambala\\ntambalas\\ntambour\\ntamboura\\ntambouras\\ntamboured\\ntambourine\\ntambourines\\ntambouring\\ntambours\\ntambur\\ntambura\\ntamburas\\ntamburs\\ntame\\ntameable\\ntamed\\ntamein\\ntameins\\ntameless\\ntamely\\ntameness\\ntamenesses\\ntamer\\ntamers\\ntames\\ntamest\\ntaming\\ntamis\\ntamises\\ntammie\\ntammies\\ntammy\\ntamp\\ntampala\\ntampalas\\ntampan\\ntampans\\ntamped\\ntamper\\ntampered\\ntamperer\\ntamperers\\ntampering\\ntampers\\ntamping\\ntampion\\ntampions\\ntampon\\ntamponed\\ntamponing\\ntampons\\ntamps\\ntams\\ntan\\ntanager\\ntanagers\\ntanbark\\ntanbarks\\ntandem\\ntandems\\ntang\\ntanged\\ntangelo\\ntangelos\\ntangence\\ntangences\\ntangencies\\ntangency\\ntangent\\ntangential\\ntangents\\ntangerine\\ntangerines\\ntangibilities\\ntangibility\\ntangible\\ntangibles\\ntangibly\\ntangier\\ntangiest\\ntanging\\ntangle\\ntangled\\ntangler\\ntanglers\\ntangles\\ntanglier\\ntangliest\\ntangling\\ntangly\\ntango\\ntangoed\\ntangoing\\ntangos\\ntangram\\ntangrams\\ntangs\\ntangy\\ntanist\\ntanistries\\ntanistry\\ntanists\\ntank\\ntanka\\ntankage\\ntankages\\ntankard\\ntankards\\ntankas\\ntanked\\ntanker\\ntankers\\ntankful\\ntankfuls\\ntanking\\ntanks\\ntankship\\ntankships\\ntannable\\ntannage\\ntannages\\ntannate\\ntannates\\ntanned\\ntanner\\ntanneries\\ntanners\\ntannery\\ntannest\\ntannic\\ntannin\\ntanning\\ntannings\\ntannins\\ntannish\\ntanrec\\ntanrecs\\ntans\\ntansies\\ntansy\\ntantalic\\ntantalize\\ntantalized\\ntantalizer\\ntantalizers\\ntantalizes\\ntantalizing\\ntantalizingly\\ntantalum\\ntantalums\\ntantalus\\ntantaluses\\ntantamount\\ntantara\\ntantaras\\ntantivies\\ntantivy\\ntanto\\ntantra\\ntantras\\ntantric\\ntantrum\\ntantrums\\ntanyard\\ntanyards\\ntao\\ntaos\\ntap\\ntapa\\ntapadera\\ntapaderas\\ntapadero\\ntapaderos\\ntapalo\\ntapalos\\ntapas\\ntape\\ntaped\\ntapeless\\ntapelike\\ntapeline\\ntapelines\\ntaper\\ntapered\\ntaperer\\ntaperers\\ntapering\\ntapers\\ntapes\\ntapestried\\ntapestries\\ntapestry\\ntapestrying\\ntapeta\\ntapetal\\ntapetum\\ntapeworm\\ntapeworms\\ntaphole\\ntapholes\\ntaphouse\\ntaphouses\\ntaping\\ntapioca\\ntapiocas\\ntapir\\ntapirs\\ntapis\\ntapises\\ntapped\\ntapper\\ntappers\\ntappet\\ntappets\\ntapping\\ntappings\\ntaproom\\ntaprooms\\ntaproot\\ntaproots\\ntaps\\ntapster\\ntapsters\\ntar\\ntarantas\\ntarantases\\ntarantula\\ntarantulas\\ntarboosh\\ntarbooshes\\ntarbush\\ntarbushes\\ntardier\\ntardies\\ntardiest\\ntardily\\ntardo\\ntardy\\ntare\\ntared\\ntares\\ntarge\\ntarges\\ntarget\\ntargeted\\ntargeting\\ntargets\\ntariff\\ntariffed\\ntariffing\\ntariffs\\ntaring\\ntarlatan\\ntarlatans\\ntarletan\\ntarletans\\ntarmac\\ntarmacs\\ntarn\\ntarnal\\ntarnally\\ntarnish\\ntarnished\\ntarnishes\\ntarnishing\\ntarns\\ntaro\\ntaroc\\ntarocs\\ntarok\\ntaroks\\ntaros\\ntarot\\ntarots\\ntarp\\ntarpan\\ntarpans\\ntarpaper\\ntarpapers\\ntarpaulin\\ntarpaulins\\ntarpon\\ntarpons\\ntarps\\ntarragon\\ntarragons\\ntarre\\ntarred\\ntarres\\ntarried\\ntarrier\\ntarriers\\ntarries\\ntarriest\\ntarring\\ntarry\\ntarrying\\ntars\\ntarsal\\ntarsals\\ntarsi\\ntarsia\\ntarsias\\ntarsier\\ntarsiers\\ntarsus\\ntart\\ntartan\\ntartana\\ntartanas\\ntartans\\ntartar\\ntartaric\\ntartars\\ntarted\\ntarter\\ntartest\\ntarting\\ntartish\\ntartlet\\ntartlets\\ntartly\\ntartness\\ntartnesses\\ntartrate\\ntartrates\\ntarts\\ntartufe\\ntartufes\\ntartuffe\\ntartuffes\\ntarweed\\ntarweeds\\ntarzan\\ntarzans\\ntas\\ntask\\ntasked\\ntasking\\ntaskmaster\\ntaskmasters\\ntasks\\ntaskwork\\ntaskworks\\ntass\\ntasse\\ntassel\\ntasseled\\ntasseling\\ntasselled\\ntasselling\\ntassels\\ntasses\\ntasset\\ntassets\\ntassie\\ntassies\\ntastable\\ntaste\\ntasted\\ntasteful\\ntastefully\\ntasteless\\ntastelessly\\ntaster\\ntasters\\ntastes\\ntastier\\ntastiest\\ntastily\\ntasting\\ntasty\\ntat\\ntatami\\ntatamis\\ntate\\ntater\\ntaters\\ntates\\ntatouay\\ntatouays\\ntats\\ntatted\\ntatter\\ntattered\\ntattering\\ntatters\\ntattier\\ntattiest\\ntatting\\ntattings\\ntattle\\ntattled\\ntattler\\ntattlers\\ntattles\\ntattletale\\ntattletales\\ntattling\\ntattoo\\ntattooed\\ntattooer\\ntattooers\\ntattooing\\ntattoos\\ntatty\\ntau\\ntaught\\ntaunt\\ntaunted\\ntaunter\\ntaunters\\ntaunting\\ntaunts\\ntaupe\\ntaupes\\ntaurine\\ntaurines\\ntaus\\ntaut\\ntautaug\\ntautaugs\\ntauted\\ntauten\\ntautened\\ntautening\\ntautens\\ntauter\\ntautest\\ntauting\\ntautly\\ntautness\\ntautnesses\\ntautog\\ntautogs\\ntautomer\\ntautomers\\ntautonym\\ntautonyms\\ntauts\\ntav\\ntavern\\ntaverner\\ntaverners\\ntaverns\\ntavs\\ntaw\\ntawdrier\\ntawdries\\ntawdriest\\ntawdry\\ntawed\\ntawer\\ntawers\\ntawie\\ntawing\\ntawney\\ntawneys\\ntawnier\\ntawnies\\ntawniest\\ntawnily\\ntawny\\ntawpie\\ntawpies\\ntaws\\ntawse\\ntawsed\\ntawses\\ntawsing\\ntawsy\\ntax\\ntaxa\\ntaxable\\ntaxables\\ntaxably\\ntaxation\\ntaxations\\ntaxed\\ntaxeme\\ntaxemes\\ntaxemic\\ntaxer\\ntaxers\\ntaxes\\ntaxi\\ntaxicab\\ntaxicabs\\ntaxidermies\\ntaxidermist\\ntaxidermists\\ntaxidermy\\ntaxied\\ntaxies\\ntaxiing\\ntaximan\\ntaximen\\ntaxing\\ntaxingly\\ntaxis\\ntaxite\\ntaxites\\ntaxitic\\ntaxiway\\ntaxiways\\ntaxless\\ntaxman\\ntaxmen\\ntaxon\\ntaxonomies\\ntaxonomy\\ntaxons\\ntaxpaid\\ntaxpayer\\ntaxpayers\\ntaxpaying\\ntaxus\\ntaxwise\\ntaxying\\ntazza\\ntazzas\\ntazze\\ntea\\nteaberries\\nteaberry\\nteaboard\\nteaboards\\nteabowl\\nteabowls\\nteabox\\nteaboxes\\nteacake\\nteacakes\\nteacart\\nteacarts\\nteach\\nteachable\\nteacher\\nteachers\\nteaches\\nteaching\\nteachings\\nteacup\\nteacups\\nteahouse\\nteahouses\\nteak\\nteakettle\\nteakettles\\nteaks\\nteakwood\\nteakwoods\\nteal\\nteals\\nteam\\nteamaker\\nteamakers\\nteamed\\nteaming\\nteammate\\nteammates\\nteams\\nteamster\\nteamsters\\nteamwork\\nteamworks\\nteapot\\nteapots\\nteapoy\\nteapoys\\ntear\\ntearable\\nteardown\\nteardowns\\nteardrop\\nteardrops\\nteared\\ntearer\\ntearers\\ntearful\\nteargas\\nteargases\\nteargassed\\nteargasses\\nteargassing\\ntearier\\nteariest\\ntearily\\ntearing\\ntearless\\ntearoom\\ntearooms\\ntears\\nteary\\nteas\\ntease\\nteased\\nteasel\\nteaseled\\nteaseler\\nteaselers\\nteaseling\\nteaselled\\nteaselling\\nteasels\\nteaser\\nteasers\\nteases\\nteashop\\nteashops\\nteasing\\nteaspoon\\nteaspoonful\\nteaspoonfuls\\nteaspoons\\nteat\\nteated\\nteatime\\nteatimes\\nteats\\nteaware\\nteawares\\nteazel\\nteazeled\\nteazeling\\nteazelled\\nteazelling\\nteazels\\nteazle\\nteazled\\nteazles\\nteazling\\nteched\\ntechier\\ntechiest\\ntechily\\ntechnic\\ntechnical\\ntechnicalities\\ntechnicality\\ntechnically\\ntechnician\\ntechnicians\\ntechnics\\ntechnique\\ntechniques\\ntechnological\\ntechnologies\\ntechnology\\ntechy\\ntecta\\ntectal\\ntectonic\\ntectrices\\ntectrix\\ntectum\\nted\\ntedded\\ntedder\\ntedders\\nteddies\\ntedding\\nteddy\\ntedious\\ntediously\\ntediousness\\ntediousnesses\\ntedium\\ntediums\\nteds\\ntee\\nteed\\nteeing\\nteem\\nteemed\\nteemer\\nteemers\\nteeming\\nteems\\nteen\\nteenage\\nteenaged\\nteenager\\nteenagers\\nteener\\nteeners\\nteenful\\nteenier\\nteeniest\\nteens\\nteensier\\nteensiest\\nteensy\\nteentsier\\nteentsiest\\nteentsy\\nteeny\\nteepee\\nteepees\\ntees\\nteeter\\nteetered\\nteetering\\nteeters\\nteeth\\nteethe\\nteethed\\nteether\\nteethers\\nteethes\\nteething\\nteethings\\nteetotal\\nteetotaled\\nteetotaling\\nteetotalled\\nteetotalling\\nteetotals\\nteetotum\\nteetotums\\nteff\\nteffs\\nteg\\ntegmen\\ntegmenta\\ntegmina\\ntegminal\\ntegs\\ntegua\\nteguas\\ntegular\\ntegumen\\ntegument\\nteguments\\ntegumina\\nteiglach\\nteiid\\nteiids\\nteind\\nteinds\\ntektite\\ntektites\\ntektitic\\ntektronix\\ntela\\ntelae\\ntelamon\\ntelamones\\ntele\\ntelecast\\ntelecasted\\ntelecasting\\ntelecasts\\nteledu\\nteledus\\ntelefilm\\ntelefilms\\ntelega\\ntelegas\\ntelegonies\\ntelegony\\ntelegram\\ntelegrammed\\ntelegramming\\ntelegrams\\ntelegraph\\ntelegraphed\\ntelegrapher\\ntelegraphers\\ntelegraphing\\ntelegraphist\\ntelegraphists\\ntelegraphs\\nteleman\\ntelemark\\ntelemarks\\ntelemen\\nteleost\\nteleosts\\ntelepathic\\ntelepathically\\ntelepathies\\ntelepathy\\ntelephone\\ntelephoned\\ntelephoner\\ntelephoners\\ntelephones\\ntelephoning\\ntelephoto\\nteleplay\\nteleplays\\nteleport\\nteleported\\nteleporting\\nteleports\\nteleran\\ntelerans\\nteles\\ntelescope\\ntelescoped\\ntelescopes\\ntelescopic\\ntelescoping\\nteleses\\ntelesis\\ntelethon\\ntelethons\\nteleview\\nteleviewed\\nteleviewing\\nteleviews\\ntelevise\\ntelevised\\ntelevises\\ntelevising\\ntelevision\\ntelevisions\\ntelex\\ntelexed\\ntelexes\\ntelexing\\ntelfer\\ntelfered\\ntelfering\\ntelfers\\ntelford\\ntelfords\\ntelia\\ntelial\\ntelic\\ntelium\\ntell\\ntellable\\nteller\\ntellers\\ntellies\\ntelling\\ntells\\ntelltale\\ntelltales\\ntelluric\\ntelly\\nteloi\\ntelome\\ntelomes\\ntelomic\\ntelos\\ntelpher\\ntelphered\\ntelphering\\ntelphers\\ntelson\\ntelsonic\\ntelsons\\ntemblor\\ntemblores\\ntemblors\\ntemerities\\ntemerity\\ntempeh\\ntempehs\\ntemper\\ntempera\\ntemperament\\ntemperamental\\ntemperaments\\ntemperance\\ntemperances\\ntemperas\\ntemperate\\ntemperature\\ntemperatures\\ntempered\\ntemperer\\ntemperers\\ntempering\\ntempers\\ntempest\\ntempested\\ntempesting\\ntempests\\ntempestuous\\ntempi\\ntemplar\\ntemplars\\ntemplate\\ntemplates\\ntemple\\ntempled\\ntemples\\ntemplet\\ntemplets\\ntempo\\ntemporal\\ntemporals\\ntemporaries\\ntemporarily\\ntemporary\\ntempos\\ntempt\\ntemptation\\ntemptations\\ntempted\\ntempter\\ntempters\\ntempting\\ntemptingly\\ntemptress\\ntempts\\ntempura\\ntempuras\\nten\\ntenabilities\\ntenability\\ntenable\\ntenably\\ntenace\\ntenaces\\ntenacious\\ntenaciously\\ntenacities\\ntenacity\\ntenacula\\ntenail\\ntenaille\\ntenailles\\ntenails\\ntenancies\\ntenancy\\ntenant\\ntenanted\\ntenanting\\ntenantries\\ntenantry\\ntenants\\ntench\\ntenches\\ntend\\ntendance\\ntendances\\ntended\\ntendence\\ntendences\\ntendencies\\ntendency\\ntender\\ntendered\\ntenderer\\ntenderers\\ntenderest\\ntendering\\ntenderize\\ntenderized\\ntenderizer\\ntenderizers\\ntenderizes\\ntenderizing\\ntenderloin\\ntenderloins\\ntenderly\\ntenderness\\ntendernesses\\ntenders\\ntending\\ntendon\\ntendons\\ntendril\\ntendrils\\ntends\\ntenebrae\\ntenement\\ntenements\\ntenesmus\\ntenesmuses\\ntenet\\ntenets\\ntenfold\\ntenfolds\\ntenia\\nteniae\\ntenias\\nteniasis\\nteniasises\\ntenner\\ntenners\\ntennis\\ntennises\\ntennist\\ntennists\\ntenon\\ntenoned\\ntenoner\\ntenoners\\ntenoning\\ntenons\\ntenor\\ntenorite\\ntenorites\\ntenors\\ntenotomies\\ntenotomy\\ntenour\\ntenours\\ntenpence\\ntenpences\\ntenpenny\\ntenpin\\ntenpins\\ntenrec\\ntenrecs\\ntens\\ntense\\ntensed\\ntensely\\ntenser\\ntenses\\ntensest\\ntensible\\ntensibly\\ntensile\\ntensing\\ntension\\ntensioned\\ntensioning\\ntensions\\ntensities\\ntensity\\ntensive\\ntensor\\ntensors\\ntent\\ntentacle\\ntentacles\\ntentacular\\ntentage\\ntentages\\ntentative\\ntentatively\\ntented\\ntenter\\ntentered\\ntenterhooks\\ntentering\\ntenters\\ntenth\\ntenthly\\ntenths\\ntentie\\ntentier\\ntentiest\\ntenting\\ntentless\\ntentlike\\ntents\\ntenty\\ntenues\\ntenuis\\ntenuities\\ntenuity\\ntenuous\\ntenuously\\ntenuousness\\ntenuousnesses\\ntenure\\ntenured\\ntenures\\ntenurial\\ntenuti\\ntenuto\\ntenutos\\nteocalli\\nteocallis\\nteopan\\nteopans\\nteosinte\\nteosintes\\ntepa\\ntepas\\ntepee\\ntepees\\ntepefied\\ntepefies\\ntepefy\\ntepefying\\ntephra\\ntephras\\ntephrite\\ntephrites\\ntepid\\ntepidities\\ntepidity\\ntepidly\\ntequila\\ntequilas\\nterai\\nterais\\nteraohm\\nteraohms\\nteraph\\nteraphim\\nteratism\\nteratisms\\nteratoid\\nteratoma\\nteratomas\\nteratomata\\nterbia\\nterbias\\nterbic\\nterbium\\nterbiums\\nterce\\ntercel\\ntercelet\\ntercelets\\ntercels\\nterces\\ntercet\\ntercets\\nterebene\\nterebenes\\nterebic\\nteredines\\nteredo\\nteredos\\nterefah\\nterete\\nterga\\ntergal\\ntergite\\ntergites\\ntergum\\nteriyaki\\nteriyakis\\nterm\\ntermed\\ntermer\\ntermers\\nterminable\\nterminal\\nterminals\\nterminate\\nterminated\\nterminates\\nterminating\\ntermination\\nterming\\ntermini\\nterminologies\\nterminology\\nterminus\\nterminuses\\ntermite\\ntermites\\ntermitic\\ntermless\\ntermly\\ntermor\\ntermors\\nterms\\ntermtime\\ntermtimes\\ntern\\nternaries\\nternary\\nternate\\nterne\\nternes\\nternion\\nternions\\nterns\\nterpene\\nterpenes\\nterpenic\\nterpinol\\nterpinols\\nterra\\nterrace\\nterraced\\nterraces\\nterracing\\nterrae\\nterrain\\nterrains\\nterrane\\nterranes\\nterrapin\\nterrapins\\nterraria\\nterrarium\\nterras\\nterrases\\nterrazzo\\nterrazzos\\nterreen\\nterreens\\nterrella\\nterrellas\\nterrene\\nterrenes\\nterrestrial\\nterret\\nterrets\\nterrible\\nterribly\\nterrier\\nterriers\\nterries\\nterrific\\nterrified\\nterrifies\\nterrify\\nterrifying\\nterrifyingly\\nterrine\\nterrines\\nterrit\\nterritorial\\nterritories\\nterritory\\nterrits\\nterror\\nterrorism\\nterrorisms\\nterrorize\\nterrorized\\nterrorizes\\nterrorizing\\nterrors\\nterry\\nterse\\ntersely\\nterseness\\ntersenesses\\nterser\\ntersest\\ntertial\\ntertials\\ntertian\\ntertians\\ntertiaries\\ntertiary\\ntesla\\nteslas\\ntessera\\ntesserae\\ntest\\ntesta\\ntestable\\ntestacies\\ntestacy\\ntestae\\ntestament\\ntestamentary\\ntestaments\\ntestate\\ntestator\\ntestators\\ntested\\ntestee\\ntestees\\ntester\\ntesters\\ntestes\\ntesticle\\ntesticles\\ntesticular\\ntestier\\ntestiest\\ntestified\\ntestifies\\ntestify\\ntestifying\\ntestily\\ntestimonial\\ntestimonials\\ntestimonies\\ntestimony\\ntesting\\ntestis\\nteston\\ntestons\\ntestoon\\ntestoons\\ntestosterone\\ntestpatient\\ntests\\ntestudines\\ntestudo\\ntestudos\\ntesty\\ntetanal\\ntetanic\\ntetanics\\ntetanies\\ntetanise\\ntetanised\\ntetanises\\ntetanising\\ntetanize\\ntetanized\\ntetanizes\\ntetanizing\\ntetanoid\\ntetanus\\ntetanuses\\ntetany\\ntetched\\ntetchier\\ntetchiest\\ntetchily\\ntetchy\\nteth\\ntether\\ntethered\\ntethering\\ntethers\\nteths\\ntetotum\\ntetotums\\ntetra\\ntetracid\\ntetracids\\ntetrad\\ntetradic\\ntetrads\\ntetragon\\ntetragons\\ntetramer\\ntetramers\\ntetrapod\\ntetrapods\\ntetrarch\\ntetrarchs\\ntetras\\ntetrode\\ntetrodes\\ntetroxid\\ntetroxids\\ntetryl\\ntetryls\\ntetter\\ntetters\\nteuch\\nteugh\\nteughly\\ntew\\ntewed\\ntewing\\ntews\\ntexas\\ntexases\\ntext\\ntextbook\\ntextbooks\\ntextile\\ntextiles\\ntextless\\ntexts\\ntextual\\ntextuaries\\ntextuary\\ntextural\\ntexture\\ntextured\\ntextures\\ntexturing\\nthack\\nthacked\\nthacking\\nthacks\\nthae\\nthairm\\nthairms\\nthalami\\nthalamic\\nthalamus\\nthaler\\nthalers\\nthalli\\nthallic\\nthallium\\nthalliums\\nthalloid\\nthallous\\nthallus\\nthalluses\\nthan\\nthanage\\nthanages\\nthanatos\\nthanatoses\\nthane\\nthanes\\nthank\\nthanked\\nthanker\\nthankful\\nthankfuller\\nthankfullest\\nthankfully\\nthankfulness\\nthankfulnesses\\nthanking\\nthanks\\nthanksgiving\\ntharm\\ntharms\\nthat\\nthataway\\nthatch\\nthatched\\nthatcher\\nthatchers\\nthatches\\nthatching\\nthatchy\\nthaw\\nthawed\\nthawer\\nthawers\\nthawing\\nthawless\\nthaws\\nthe\\nthearchies\\nthearchy\\ntheater\\ntheaters\\ntheatre\\ntheatres\\ntheatric\\ntheatrical\\nthebaine\\nthebaines\\ntheca\\nthecae\\nthecal\\nthecate\\nthee\\ntheelin\\ntheelins\\ntheelol\\ntheelols\\ntheft\\nthefts\\nthegn\\nthegnly\\nthegns\\nthein\\ntheine\\ntheines\\ntheins\\ntheir\\ntheirs\\ntheism\\ntheisms\\ntheist\\ntheistic\\ntheists\\nthelitis\\nthelitises\\nthem\\nthematic\\ntheme\\nthemes\\nthemselves\\nthen\\nthenage\\nthenages\\nthenal\\nthenar\\nthenars\\nthence\\nthens\\ntheocracy\\ntheocrat\\ntheocratic\\ntheocrats\\ntheodicies\\ntheodicy\\ntheogonies\\ntheogony\\ntheolog\\ntheologian\\ntheologians\\ntheological\\ntheologies\\ntheologs\\ntheology\\ntheonomies\\ntheonomy\\ntheorbo\\ntheorbos\\ntheorem\\ntheorems\\ntheoretical\\ntheoretically\\ntheories\\ntheorise\\ntheorised\\ntheorises\\ntheorising\\ntheorist\\ntheorists\\ntheorize\\ntheorized\\ntheorizes\\ntheorizing\\ntheory\\ntherapeutic\\ntherapeutically\\ntherapies\\ntherapist\\ntherapists\\ntherapy\\nthere\\nthereabout\\nthereabouts\\nthereafter\\nthereat\\nthereby\\ntherefor\\ntherefore\\ntherein\\ntheremin\\ntheremins\\nthereof\\nthereon\\ntheres\\nthereto\\nthereupon\\ntherewith\\ntheriac\\ntheriaca\\ntheriacas\\ntheriacs\\ntherm\\nthermae\\nthermal\\nthermals\\ntherme\\nthermel\\nthermels\\nthermes\\nthermic\\nthermion\\nthermions\\nthermit\\nthermite\\nthermites\\nthermits\\nthermodynamics\\nthermometer\\nthermometers\\nthermometric\\nthermometrically\\nthermos\\nthermoses\\nthermostat\\nthermostatic\\nthermostatically\\nthermostats\\ntherms\\ntheroid\\ntheropod\\ntheropods\\nthesauri\\nthesaurus\\nthese\\ntheses\\nthesis\\nthespian\\nthespians\\ntheta\\nthetas\\nthetic\\nthetical\\ntheurgic\\ntheurgies\\ntheurgy\\nthew\\nthewless\\nthews\\nthewy\\nthey\\nthiamin\\nthiamine\\nthiamines\\nthiamins\\nthiazide\\nthiazides\\nthiazin\\nthiazine\\nthiazines\\nthiazins\\nthiazol\\nthiazole\\nthiazoles\\nthiazols\\nthick\\nthicken\\nthickened\\nthickener\\nthickeners\\nthickening\\nthickens\\nthicker\\nthickest\\nthicket\\nthickets\\nthickety\\nthickish\\nthickly\\nthickness\\nthicknesses\\nthicks\\nthickset\\nthicksets\\nthief\\nthieve\\nthieved\\nthieveries\\nthievery\\nthieves\\nthieving\\nthievish\\nthigh\\nthighbone\\nthighbones\\nthighed\\nthighs\\nthill\\nthills\\nthimble\\nthimbleful\\nthimblefuls\\nthimbles\\nthin\\nthinclad\\nthinclads\\nthindown\\nthindowns\\nthine\\nthing\\nthings\\nthink\\nthinker\\nthinkers\\nthinking\\nthinkings\\nthinks\\nthinly\\nthinned\\nthinner\\nthinness\\nthinnesses\\nthinnest\\nthinning\\nthinnish\\nthins\\nthio\\nthiol\\nthiolic\\nthiols\\nthionate\\nthionates\\nthionic\\nthionin\\nthionine\\nthionines\\nthionins\\nthionyl\\nthionyls\\nthiophen\\nthiophens\\nthiotepa\\nthiotepas\\nthiourea\\nthioureas\\nthir\\nthiram\\nthirams\\nthird\\nthirdly\\nthirds\\nthirl\\nthirlage\\nthirlages\\nthirled\\nthirling\\nthirls\\nthirst\\nthirsted\\nthirster\\nthirsters\\nthirstier\\nthirstiest\\nthirsting\\nthirsts\\nthirsty\\nthirteen\\nthirteens\\nthirteenth\\nthirteenths\\nthirties\\nthirtieth\\nthirtieths\\nthirty\\nthis\\nthistle\\nthistles\\nthistly\\nthither\\ntho\\nthole\\ntholed\\ntholepin\\ntholepins\\ntholes\\ntholing\\ntholoi\\ntholos\\nthong\\nthonged\\nthongs\\nthoracal\\nthoraces\\nthoracic\\nthorax\\nthoraxes\\nthoria\\nthorias\\nthoric\\nthorite\\nthorites\\nthorium\\nthoriums\\nthorn\\nthorned\\nthornier\\nthorniest\\nthornily\\nthorning\\nthorns\\nthorny\\nthoro\\nthoron\\nthorons\\nthorough\\nthoroughbred\\nthoroughbreds\\nthorougher\\nthoroughest\\nthoroughfare\\nthoroughfares\\nthoroughly\\nthoroughness\\nthoroughnesses\\nthorp\\nthorpe\\nthorpes\\nthorps\\nthose\\nthou\\nthoued\\nthough\\nthought\\nthoughtful\\nthoughtfully\\nthoughtfulness\\nthoughtfulnesses\\nthoughtless\\nthoughtlessly\\nthoughtlessness\\nthoughtlessnesses\\nthoughts\\nthouing\\nthous\\nthousand\\nthousands\\nthousandth\\nthousandths\\nthowless\\nthraldom\\nthraldoms\\nthrall\\nthralled\\nthralling\\nthralls\\nthrash\\nthrashed\\nthrasher\\nthrashers\\nthrashes\\nthrashing\\nthrave\\nthraves\\nthraw\\nthrawart\\nthrawed\\nthrawing\\nthrawn\\nthrawnly\\nthraws\\nthread\\nthreadbare\\nthreaded\\nthreader\\nthreaders\\nthreadier\\nthreadiest\\nthreading\\nthreads\\nthready\\nthreap\\nthreaped\\nthreaper\\nthreapers\\nthreaping\\nthreaps\\nthreat\\nthreated\\nthreaten\\nthreatened\\nthreatening\\nthreateningly\\nthreatens\\nthreating\\nthreats\\nthree\\nthreefold\\nthreep\\nthreeped\\nthreeping\\nthreeps\\nthrees\\nthreescore\\nthrenode\\nthrenodes\\nthrenodies\\nthrenody\\nthresh\\nthreshed\\nthresher\\nthreshers\\nthreshes\\nthreshing\\nthreshold\\nthresholds\\nthrew\\nthrice\\nthrift\\nthriftier\\nthriftiest\\nthriftily\\nthriftless\\nthrifts\\nthrifty\\nthrill\\nthrilled\\nthriller\\nthrillers\\nthrilling\\nthrillingly\\nthrills\\nthrip\\nthrips\\nthrive\\nthrived\\nthriven\\nthriver\\nthrivers\\nthrives\\nthriving\\nthro\\nthroat\\nthroated\\nthroatier\\nthroatiest\\nthroating\\nthroats\\nthroaty\\nthrob\\nthrobbed\\nthrobber\\nthrobbers\\nthrobbing\\nthrobs\\nthroe\\nthroes\\nthrombi\\nthrombin\\nthrombins\\nthrombocyte\\nthrombocytes\\nthrombocytopenia\\nthrombocytosis\\nthrombophlebitis\\nthromboplastin\\nthrombus\\nthrone\\nthroned\\nthrones\\nthrong\\nthronged\\nthronging\\nthrongs\\nthroning\\nthrostle\\nthrostles\\nthrottle\\nthrottled\\nthrottles\\nthrottling\\nthrough\\nthroughout\\nthrove\\nthrow\\nthrower\\nthrowers\\nthrowing\\nthrown\\nthrows\\nthru\\nthrum\\nthrummed\\nthrummer\\nthrummers\\nthrummier\\nthrummiest\\nthrumming\\nthrummy\\nthrums\\nthruput\\nthruputs\\nthrush\\nthrushes\\nthrust\\nthrusted\\nthruster\\nthrusters\\nthrusting\\nthrustor\\nthrustors\\nthrusts\\nthruway\\nthruways\\nthud\\nthudded\\nthudding\\nthuds\\nthug\\nthuggee\\nthuggees\\nthuggeries\\nthuggery\\nthuggish\\nthugs\\nthuja\\nthujas\\nthulia\\nthulias\\nthulium\\nthuliums\\nthumb\\nthumbed\\nthumbing\\nthumbkin\\nthumbkins\\nthumbnail\\nthumbnails\\nthumbnut\\nthumbnuts\\nthumbs\\nthumbtack\\nthumbtacks\\nthump\\nthumped\\nthumper\\nthumpers\\nthumping\\nthumps\\nthunder\\nthunderbolt\\nthunderbolts\\nthunderclap\\nthunderclaps\\nthundered\\nthundering\\nthunderous\\nthunderously\\nthunders\\nthundershower\\nthundershowers\\nthunderstorm\\nthunderstorms\\nthundery\\nthurible\\nthuribles\\nthurifer\\nthurifers\\nthurl\\nthurls\\nthus\\nthusly\\nthuya\\nthuyas\\nthwack\\nthwacked\\nthwacker\\nthwackers\\nthwacking\\nthwacks\\nthwart\\nthwarted\\nthwarter\\nthwarters\\nthwarting\\nthwartly\\nthwarts\\nthy\\nthyme\\nthymes\\nthymey\\nthymi\\nthymic\\nthymier\\nthymiest\\nthymine\\nthymines\\nthymol\\nthymols\\nthymus\\nthymuses\\nthymy\\nthyreoid\\nthyroid\\nthyroidal\\nthyroids\\nthyroxin\\nthyroxins\\nthyrse\\nthyrses\\nthyrsi\\nthyrsoid\\nthyrsus\\nthyself\\nti\\ntiara\\ntiaraed\\ntiaras\\ntibia\\ntibiae\\ntibial\\ntibias\\ntic\\ntical\\nticals\\ntick\\nticked\\nticker\\ntickers\\nticket\\nticketed\\nticketing\\ntickets\\nticking\\ntickings\\ntickle\\ntickled\\ntickler\\nticklers\\ntickles\\ntickling\\nticklish\\nticklishly\\nticklishness\\nticklishnesses\\nticks\\ntickseed\\ntickseeds\\nticktack\\nticktacked\\nticktacking\\nticktacks\\nticktock\\nticktocked\\nticktocking\\nticktocks\\ntics\\ntictac\\ntictacked\\ntictacking\\ntictacs\\ntictoc\\ntictocked\\ntictocking\\ntictocs\\ntidal\\ntidally\\ntidbit\\ntidbits\\ntiddly\\ntide\\ntided\\ntideland\\ntidelands\\ntideless\\ntidelike\\ntidemark\\ntidemarks\\ntiderip\\ntiderips\\ntides\\ntidewater\\ntidewaters\\ntideway\\ntideways\\ntidied\\ntidier\\ntidies\\ntidiest\\ntidily\\ntidiness\\ntidinesses\\ntiding\\ntidings\\ntidy\\ntidying\\ntidytips\\ntie\\ntieback\\ntiebacks\\ntieclasp\\ntieclasps\\ntied\\ntieing\\ntiepin\\ntiepins\\ntier\\ntierce\\ntierced\\ntiercel\\ntiercels\\ntierces\\ntiered\\ntiering\\ntiers\\nties\\ntiff\\ntiffanies\\ntiffany\\ntiffed\\ntiffin\\ntiffined\\ntiffing\\ntiffining\\ntiffins\\ntiffs\\ntiger\\ntigereye\\ntigereyes\\ntigerish\\ntigers\\ntight\\ntighten\\ntightened\\ntightening\\ntightens\\ntighter\\ntightest\\ntightly\\ntightness\\ntightnesses\\ntights\\ntightwad\\ntightwads\\ntiglon\\ntiglons\\ntigon\\ntigons\\ntigress\\ntigresses\\ntigrish\\ntike\\ntikes\\ntiki\\ntikis\\ntil\\ntilapia\\ntilapias\\ntilburies\\ntilbury\\ntilde\\ntildes\\ntile\\ntiled\\ntilefish\\ntilefishes\\ntilelike\\ntiler\\ntilers\\ntiles\\ntiling\\ntill\\ntillable\\ntillage\\ntillages\\ntilled\\ntiller\\ntillered\\ntillering\\ntillers\\ntilling\\ntills\\ntils\\ntilt\\ntiltable\\ntilted\\ntilter\\ntilters\\ntilth\\ntilths\\ntilting\\ntilts\\ntiltyard\\ntiltyards\\ntimarau\\ntimaraus\\ntimbal\\ntimbale\\ntimbales\\ntimbals\\ntimber\\ntimbered\\ntimbering\\ntimberland\\ntimberlands\\ntimbers\\ntimbre\\ntimbrel\\ntimbrels\\ntimbres\\ntime\\ntimecard\\ntimecards\\ntimed\\ntimekeeper\\ntimekeepers\\ntimeless\\ntimelessness\\ntimelessnesses\\ntimelier\\ntimeliest\\ntimeliness\\ntimelinesses\\ntimely\\ntimeous\\ntimeout\\ntimeouts\\ntimepiece\\ntimepieces\\ntimer\\ntimers\\ntimes\\ntimetable\\ntimetables\\ntimework\\ntimeworks\\ntimeworn\\ntimid\\ntimider\\ntimidest\\ntimidities\\ntimidity\\ntimidly\\ntiming\\ntimings\\ntimorous\\ntimorously\\ntimorousness\\ntimorousnesses\\ntimothies\\ntimothy\\ntimpana\\ntimpani\\ntimpanist\\ntimpanists\\ntimpano\\ntimpanum\\ntimpanums\\ntin\\ntinamou\\ntinamous\\ntincal\\ntincals\\ntinct\\ntincted\\ntincting\\ntincts\\ntincture\\ntinctured\\ntinctures\\ntincturing\\ntinder\\ntinders\\ntindery\\ntine\\ntinea\\ntineal\\ntineas\\ntined\\ntineid\\ntineids\\ntines\\ntinfoil\\ntinfoils\\ntinful\\ntinfuls\\nting\\ntinge\\ntinged\\ntingeing\\ntinges\\ntinging\\ntingle\\ntingled\\ntingler\\ntinglers\\ntingles\\ntinglier\\ntingliest\\ntingling\\ntingly\\ntings\\ntinhorn\\ntinhorns\\ntinier\\ntiniest\\ntinily\\ntininess\\ntininesses\\ntining\\ntinker\\ntinkered\\ntinkerer\\ntinkerers\\ntinkering\\ntinkers\\ntinkle\\ntinkled\\ntinkles\\ntinklier\\ntinkliest\\ntinkling\\ntinklings\\ntinkly\\ntinlike\\ntinman\\ntinmen\\ntinned\\ntinner\\ntinners\\ntinnier\\ntinniest\\ntinnily\\ntinning\\ntinnitus\\ntinnituses\\ntinny\\ntinplate\\ntinplates\\ntins\\ntinsel\\ntinseled\\ntinseling\\ntinselled\\ntinselling\\ntinselly\\ntinsels\\ntinsmith\\ntinsmiths\\ntinstone\\ntinstones\\ntint\\ntinted\\ntinter\\ntinters\\ntinting\\ntintings\\ntintless\\ntints\\ntintype\\ntintypes\\ntinware\\ntinwares\\ntinwork\\ntinworks\\ntiny\\ntip\\ntipcart\\ntipcarts\\ntipcat\\ntipcats\\ntipi\\ntipis\\ntipless\\ntipoff\\ntipoffs\\ntippable\\ntipped\\ntipper\\ntippers\\ntippet\\ntippets\\ntippier\\ntippiest\\ntipping\\ntipple\\ntippled\\ntippler\\ntipplers\\ntipples\\ntippling\\ntippy\\ntips\\ntipsier\\ntipsiest\\ntipsily\\ntipstaff\\ntipstaffs\\ntipstaves\\ntipster\\ntipsters\\ntipstock\\ntipstocks\\ntipsy\\ntiptoe\\ntiptoed\\ntiptoes\\ntiptoing\\ntiptop\\ntiptops\\ntirade\\ntirades\\ntire\\ntired\\ntireder\\ntiredest\\ntiredly\\ntireless\\ntirelessly\\ntirelessness\\ntires\\ntiresome\\ntiresomely\\ntiresomeness\\ntiresomenesses\\ntiring\\ntirl\\ntirled\\ntirling\\ntirls\\ntiro\\ntiros\\ntirrivee\\ntirrivees\\ntis\\ntisane\\ntisanes\\ntissual\\ntissue\\ntissued\\ntissues\\ntissuey\\ntissuing\\ntit\\ntitan\\ntitanate\\ntitanates\\ntitaness\\ntitanesses\\ntitania\\ntitanias\\ntitanic\\ntitanism\\ntitanisms\\ntitanite\\ntitanites\\ntitanium\\ntitaniums\\ntitanous\\ntitans\\ntitbit\\ntitbits\\ntiter\\ntiters\\ntithable\\ntithe\\ntithed\\ntither\\ntithers\\ntithes\\ntithing\\ntithings\\ntithonia\\ntithonias\\ntiti\\ntitian\\ntitians\\ntitillate\\ntitillated\\ntitillates\\ntitillating\\ntitillation\\ntitillations\\ntitis\\ntitivate\\ntitivated\\ntitivates\\ntitivating\\ntitlark\\ntitlarks\\ntitle\\ntitled\\ntitles\\ntitling\\ntitlist\\ntitlists\\ntitman\\ntitmen\\ntitmice\\ntitmouse\\ntitrable\\ntitrant\\ntitrants\\ntitrate\\ntitrated\\ntitrates\\ntitrating\\ntitrator\\ntitrators\\ntitre\\ntitres\\ntits\\ntitter\\ntittered\\ntitterer\\ntitterers\\ntittering\\ntitters\\ntittie\\ntitties\\ntittle\\ntittles\\ntittup\\ntittuped\\ntittuping\\ntittupped\\ntittupping\\ntittuppy\\ntittups\\ntitty\\ntitular\\ntitularies\\ntitulars\\ntitulary\\ntivy\\ntizzies\\ntizzy\\ntmeses\\ntmesis\\nto\\ntoad\\ntoadfish\\ntoadfishes\\ntoadflax\\ntoadflaxes\\ntoadied\\ntoadies\\ntoadish\\ntoadless\\ntoadlike\\ntoads\\ntoadstool\\ntoadstools\\ntoady\\ntoadying\\ntoadyish\\ntoadyism\\ntoadyisms\\ntoast\\ntoasted\\ntoaster\\ntoasters\\ntoastier\\ntoastiest\\ntoasting\\ntoasts\\ntoasty\\ntobacco\\ntobaccoes\\ntobaccos\\ntobies\\ntoboggan\\ntobogganed\\ntobogganing\\ntoboggans\\ntoby\\ntobys\\ntoccata\\ntoccatas\\ntoccate\\ntocher\\ntochered\\ntochering\\ntochers\\ntocologies\\ntocology\\ntocsin\\ntocsins\\ntod\\ntoday\\ntodays\\ntoddies\\ntoddle\\ntoddled\\ntoddler\\ntoddlers\\ntoddles\\ntoddling\\ntoddy\\ntodies\\ntods\\ntody\\ntoe\\ntoecap\\ntoecaps\\ntoed\\ntoehold\\ntoeholds\\ntoeing\\ntoeless\\ntoelike\\ntoenail\\ntoenailed\\ntoenailing\\ntoenails\\ntoepiece\\ntoepieces\\ntoeplate\\ntoeplates\\ntoes\\ntoeshoe\\ntoeshoes\\ntoff\\ntoffee\\ntoffees\\ntoffies\\ntoffs\\ntoffy\\ntoft\\ntofts\\ntofu\\ntofus\\ntog\\ntoga\\ntogae\\ntogaed\\ntogas\\ntogate\\ntogated\\ntogether\\ntogetherness\\ntogethernesses\\ntogged\\ntoggeries\\ntoggery\\ntogging\\ntoggle\\ntoggled\\ntoggler\\ntogglers\\ntoggles\\ntoggling\\ntogs\\ntogue\\ntogues\\ntoil\\ntoile\\ntoiled\\ntoiler\\ntoilers\\ntoiles\\ntoilet\\ntoileted\\ntoileting\\ntoiletries\\ntoiletry\\ntoilets\\ntoilette\\ntoilettes\\ntoilful\\ntoiling\\ntoils\\ntoilsome\\ntoilworn\\ntoit\\ntoited\\ntoiting\\ntoits\\ntokay\\ntokays\\ntoke\\ntoken\\ntokened\\ntokening\\ntokenism\\ntokenisms\\ntokens\\ntokes\\ntokologies\\ntokology\\ntokonoma\\ntokonomas\\ntola\\ntolan\\ntolane\\ntolanes\\ntolans\\ntolas\\ntolbooth\\ntolbooths\\ntold\\ntole\\ntoled\\ntoledo\\ntoledos\\ntolerable\\ntolerably\\ntolerance\\ntolerances\\ntolerant\\ntolerate\\ntolerated\\ntolerates\\ntolerating\\ntoleration\\ntolerations\\ntoles\\ntolidin\\ntolidine\\ntolidines\\ntolidins\\ntoling\\ntoll\\ntollage\\ntollages\\ntollbar\\ntollbars\\ntollbooth\\ntollbooths\\ntolled\\ntoller\\ntollers\\ntollgate\\ntollgates\\ntolling\\ntollman\\ntollmen\\ntolls\\ntollway\\ntollways\\ntolu\\ntoluate\\ntoluates\\ntoluene\\ntoluenes\\ntoluic\\ntoluid\\ntoluide\\ntoluides\\ntoluidin\\ntoluidins\\ntoluids\\ntoluol\\ntoluole\\ntoluoles\\ntoluols\\ntolus\\ntoluyl\\ntoluyls\\ntolyl\\ntolyls\\ntom\\ntomahawk\\ntomahawked\\ntomahawking\\ntomahawks\\ntomalley\\ntomalleys\\ntoman\\ntomans\\ntomato\\ntomatoes\\ntomb\\ntombac\\ntomback\\ntombacks\\ntombacs\\ntombak\\ntombaks\\ntombal\\ntombed\\ntombing\\ntombless\\ntomblike\\ntombolo\\ntombolos\\ntomboy\\ntomboys\\ntombs\\ntombstone\\ntombstones\\ntomcat\\ntomcats\\ntomcod\\ntomcods\\ntome\\ntomenta\\ntomentum\\ntomes\\ntomfool\\ntomfools\\ntommies\\ntommy\\ntommyrot\\ntommyrots\\ntomogram\\ntomograms\\ntomorrow\\ntomorrows\\ntompion\\ntompions\\ntoms\\ntomtit\\ntomtits\\nton\\ntonal\\ntonalities\\ntonality\\ntonally\\ntondi\\ntondo\\ntone\\ntoned\\ntoneless\\ntoneme\\ntonemes\\ntonemic\\ntoner\\ntoners\\ntones\\ntonetic\\ntonetics\\ntonette\\ntonettes\\ntong\\ntonga\\ntongas\\ntonged\\ntonger\\ntongers\\ntonging\\ntongman\\ntongmen\\ntongs\\ntongue\\ntongued\\ntongueless\\ntongues\\ntonguing\\ntonguings\\ntonic\\ntonicities\\ntonicity\\ntonics\\ntonier\\ntoniest\\ntonight\\ntonights\\ntoning\\ntonish\\ntonishly\\ntonka\\ntonlet\\ntonlets\\ntonnage\\ntonnages\\ntonne\\ntonneau\\ntonneaus\\ntonneaux\\ntonner\\ntonners\\ntonnes\\ntonnish\\ntons\\ntonsil\\ntonsilar\\ntonsillectomies\\ntonsillectomy\\ntonsillitis\\ntonsillitises\\ntonsils\\ntonsure\\ntonsured\\ntonsures\\ntonsuring\\ntontine\\ntontines\\ntonus\\ntonuses\\ntony\\ntoo\\ntook\\ntool\\ntoolbox\\ntoolboxes\\ntooled\\ntooler\\ntoolers\\ntoolhead\\ntoolheads\\ntooling\\ntoolings\\ntoolless\\ntoolroom\\ntoolrooms\\ntools\\ntoolshed\\ntoolsheds\\ntoom\\ntoon\\ntoons\\ntoot\\ntooted\\ntooter\\ntooters\\ntooth\\ntoothache\\ntoothaches\\ntoothbrush\\ntoothbrushes\\ntoothed\\ntoothier\\ntoothiest\\ntoothily\\ntoothing\\ntoothless\\ntoothpaste\\ntoothpastes\\ntoothpick\\ntoothpicks\\ntooths\\ntoothsome\\ntoothy\\ntooting\\ntootle\\ntootled\\ntootler\\ntootlers\\ntootles\\ntootling\\ntoots\\ntootses\\ntootsie\\ntootsies\\ntootsy\\ntop\\ntopaz\\ntopazes\\ntopazine\\ntopcoat\\ntopcoats\\ntopcross\\ntopcrosses\\ntope\\ntoped\\ntopee\\ntopees\\ntoper\\ntopers\\ntopes\\ntopful\\ntopfull\\ntoph\\ntophe\\ntophes\\ntophi\\ntophs\\ntophus\\ntopi\\ntopiaries\\ntopiary\\ntopic\\ntopical\\ntopically\\ntopics\\ntoping\\ntopis\\ntopkick\\ntopkicks\\ntopknot\\ntopknots\\ntopless\\ntoploftier\\ntoploftiest\\ntoplofty\\ntopmast\\ntopmasts\\ntopmost\\ntopnotch\\ntopographer\\ntopographers\\ntopographic\\ntopographical\\ntopographies\\ntopography\\ntopoi\\ntopologic\\ntopologies\\ntopology\\ntoponym\\ntoponymies\\ntoponyms\\ntoponymy\\ntopos\\ntopotype\\ntopotypes\\ntopped\\ntopper\\ntoppers\\ntopping\\ntoppings\\ntopple\\ntoppled\\ntopples\\ntoppling\\ntops\\ntopsail\\ntopsails\\ntopside\\ntopsides\\ntopsoil\\ntopsoiled\\ntopsoiling\\ntopsoils\\ntopstone\\ntopstones\\ntopwork\\ntopworked\\ntopworking\\ntopworks\\ntoque\\ntoques\\ntoquet\\ntoquets\\ntor\\ntora\\ntorah\\ntorahs\\ntoras\\ntorc\\ntorch\\ntorchbearer\\ntorchbearers\\ntorched\\ntorchere\\ntorcheres\\ntorches\\ntorchier\\ntorchiers\\ntorching\\ntorchlight\\ntorchlights\\ntorchon\\ntorchons\\ntorcs\\ntore\\ntoreador\\ntoreadors\\ntorero\\ntoreros\\ntores\\ntoreutic\\ntori\\ntoric\\ntories\\ntorii\\ntorment\\ntormented\\ntormenting\\ntormentor\\ntormentors\\ntorments\\ntorn\\ntornadic\\ntornado\\ntornadoes\\ntornados\\ntornillo\\ntornillos\\ntoro\\ntoroid\\ntoroidal\\ntoroids\\ntoros\\ntorose\\ntorosities\\ntorosity\\ntorous\\ntorpedo\\ntorpedoed\\ntorpedoes\\ntorpedoing\\ntorpedos\\ntorpid\\ntorpidities\\ntorpidity\\ntorpidly\\ntorpids\\ntorpor\\ntorpors\\ntorquate\\ntorque\\ntorqued\\ntorquer\\ntorquers\\ntorques\\ntorqueses\\ntorquing\\ntorr\\ntorrefied\\ntorrefies\\ntorrefy\\ntorrefying\\ntorrent\\ntorrential\\ntorrents\\ntorrid\\ntorrider\\ntorridest\\ntorridly\\ntorrified\\ntorrifies\\ntorrify\\ntorrifying\\ntors\\ntorsade\\ntorsades\\ntorse\\ntorses\\ntorsi\\ntorsion\\ntorsional\\ntorsionally\\ntorsions\\ntorsk\\ntorsks\\ntorso\\ntorsos\\ntort\\ntorte\\ntorten\\ntortes\\ntortile\\ntortilla\\ntortillas\\ntortious\\ntortoise\\ntortoises\\ntortoni\\ntortonis\\ntortrix\\ntortrixes\\ntorts\\ntortuous\\ntorture\\ntortured\\ntorturer\\ntorturers\\ntortures\\ntorturing\\ntorula\\ntorulae\\ntorulas\\ntorus\\ntory\\ntosh\\ntoshes\\ntoss\\ntossed\\ntosser\\ntossers\\ntosses\\ntossing\\ntosspot\\ntosspots\\ntossup\\ntossups\\ntost\\ntot\\ntotable\\ntotal\\ntotaled\\ntotaling\\ntotalise\\ntotalised\\ntotalises\\ntotalising\\ntotalism\\ntotalisms\\ntotalitarian\\ntotalitarianism\\ntotalitarianisms\\ntotalitarians\\ntotalities\\ntotality\\ntotalize\\ntotalized\\ntotalizes\\ntotalizing\\ntotalled\\ntotalling\\ntotally\\ntotals\\ntote\\ntoted\\ntotem\\ntotemic\\ntotemism\\ntotemisms\\ntotemist\\ntotemists\\ntotemite\\ntotemites\\ntotems\\ntoter\\ntoters\\ntotes\\ntother\\ntoting\\ntots\\ntotted\\ntotter\\ntottered\\ntotterer\\ntotterers\\ntottering\\ntotters\\ntottery\\ntotting\\ntotty\\ntoucan\\ntoucans\\ntouch\\ntouchback\\ntouchbacks\\ntouchdown\\ntouchdowns\\ntouche\\ntouched\\ntoucher\\ntouchers\\ntouches\\ntouchier\\ntouchiest\\ntouchily\\ntouching\\ntouchstone\\ntouchstones\\ntouchup\\ntouchups\\ntouchy\\ntough\\ntoughen\\ntoughened\\ntoughening\\ntoughens\\ntougher\\ntoughest\\ntoughie\\ntoughies\\ntoughish\\ntoughly\\ntoughness\\ntoughnesses\\ntoughs\\ntoughy\\ntoupee\\ntoupees\\ntour\\ntouraco\\ntouracos\\ntoured\\ntourer\\ntourers\\ntouring\\ntourings\\ntourism\\ntourisms\\ntourist\\ntourists\\ntouristy\\ntournament\\ntournaments\\ntourney\\ntourneyed\\ntourneying\\ntourneys\\ntourniquet\\ntourniquets\\ntours\\ntouse\\ntoused\\ntouses\\ntousing\\ntousle\\ntousled\\ntousles\\ntousling\\ntout\\ntouted\\ntouter\\ntouters\\ntouting\\ntouts\\ntouzle\\ntouzled\\ntouzles\\ntouzling\\ntovarich\\ntovariches\\ntovarish\\ntovarishes\\ntow\\ntowage\\ntowages\\ntoward\\ntowardly\\ntowards\\ntowaway\\ntowaways\\ntowboat\\ntowboats\\ntowed\\ntowel\\ntoweled\\ntoweling\\ntowelings\\ntowelled\\ntowelling\\ntowels\\ntower\\ntowered\\ntowerier\\ntoweriest\\ntowering\\ntowers\\ntowery\\ntowhead\\ntowheaded\\ntowheads\\ntowhee\\ntowhees\\ntowie\\ntowies\\ntowing\\ntowline\\ntowlines\\ntowmond\\ntowmonds\\ntowmont\\ntowmonts\\ntown\\ntownee\\ntownees\\ntownfolk\\ntownie\\ntownies\\ntownish\\ntownless\\ntownlet\\ntownlets\\ntowns\\ntownship\\ntownships\\ntownsman\\ntownsmen\\ntownspeople\\ntownwear\\ntownwears\\ntowny\\ntowpath\\ntowpaths\\ntowrope\\ntowropes\\ntows\\ntowy\\ntoxaemia\\ntoxaemias\\ntoxaemic\\ntoxemia\\ntoxemias\\ntoxemic\\ntoxic\\ntoxical\\ntoxicant\\ntoxicants\\ntoxicities\\ntoxicity\\ntoxin\\ntoxine\\ntoxines\\ntoxins\\ntoxoid\\ntoxoids\\ntoy\\ntoyed\\ntoyer\\ntoyers\\ntoying\\ntoyish\\ntoyless\\ntoylike\\ntoyo\\ntoyon\\ntoyons\\ntoyos\\ntoys\\ntrabeate\\ntrace\\ntraceable\\ntraced\\ntracer\\ntraceries\\ntracers\\ntracery\\ntraces\\ntrachea\\ntracheae\\ntracheal\\ntracheas\\ntracheid\\ntracheids\\ntracherous\\ntracherously\\ntrachle\\ntrachled\\ntrachles\\ntrachling\\ntrachoma\\ntrachomas\\ntrachyte\\ntrachytes\\ntracing\\ntracings\\ntrack\\ntrackage\\ntrackages\\ntracked\\ntracker\\ntrackers\\ntracking\\ntrackings\\ntrackman\\ntrackmen\\ntracks\\ntract\\ntractable\\ntractate\\ntractates\\ntractile\\ntraction\\ntractional\\ntractions\\ntractive\\ntractor\\ntractors\\ntracts\\ntrad\\ntradable\\ntrade\\ntraded\\ntrademark\\ntrademarked\\ntrademarking\\ntrademarks\\ntrader\\ntraders\\ntrades\\ntradesman\\ntradesmen\\ntradespeople\\ntrading\\ntradition\\ntraditional\\ntraditionally\\ntraditions\\ntraditor\\ntraditores\\ntraduce\\ntraduced\\ntraducer\\ntraducers\\ntraduces\\ntraducing\\ntraffic\\ntrafficked\\ntrafficker\\ntraffickers\\ntrafficking\\ntraffics\\ntragedies\\ntragedy\\ntragi\\ntragic\\ntragical\\ntragically\\ntragopan\\ntragopans\\ntragus\\ntraik\\ntraiked\\ntraiking\\ntraiks\\ntrail\\ntrailed\\ntrailer\\ntrailered\\ntrailering\\ntrailers\\ntrailing\\ntrails\\ntrain\\ntrained\\ntrainee\\ntrainees\\ntrainer\\ntrainers\\ntrainful\\ntrainfuls\\ntraining\\ntrainings\\ntrainload\\ntrainloads\\ntrainman\\ntrainmen\\ntrains\\ntrainway\\ntrainways\\ntraipse\\ntraipsed\\ntraipses\\ntraipsing\\ntrait\\ntraitor\\ntraitors\\ntraits\\ntraject\\ntrajected\\ntrajecting\\ntrajects\\ntram\\ntramcar\\ntramcars\\ntramel\\ntrameled\\ntrameling\\ntramell\\ntramelled\\ntramelling\\ntramells\\ntramels\\ntramless\\ntramline\\ntrammed\\ntrammel\\ntrammeled\\ntrammeling\\ntrammelled\\ntrammelling\\ntrammels\\ntramming\\ntramp\\ntramped\\ntramper\\ntrampers\\ntramping\\ntrampish\\ntrample\\ntrampled\\ntrampler\\ntramplers\\ntramples\\ntrampling\\ntrampoline\\ntrampoliner\\ntrampoliners\\ntrampolines\\ntrampolinist\\ntrampolinists\\ntramps\\ntramroad\\ntramroads\\ntrams\\ntramway\\ntramways\\ntrance\\ntranced\\ntrances\\ntrancing\\ntrangam\\ntrangams\\ntranquil\\ntranquiler\\ntranquilest\\ntranquilities\\ntranquility\\ntranquilize\\ntranquilized\\ntranquilizer\\ntranquilizers\\ntranquilizes\\ntranquilizing\\ntranquiller\\ntranquillest\\ntranquillities\\ntranquillity\\ntranquillize\\ntranquillized\\ntranquillizer\\ntranquillizers\\ntranquillizes\\ntranquillizing\\ntranquilly\\ntrans\\ntransact\\ntransacted\\ntransacting\\ntransaction\\ntransactions\\ntransacts\\ntranscend\\ntranscended\\ntranscendent\\ntranscendental\\ntranscending\\ntranscends\\ntranscribe\\ntranscribes\\ntranscript\\ntranscription\\ntranscriptions\\ntranscripts\\ntransect\\ntransected\\ntransecting\\ntransects\\ntransept\\ntransepts\\ntransfer\\ntransferability\\ntransferable\\ntransferal\\ntransferals\\ntransference\\ntransferences\\ntransferred\\ntransferring\\ntransfers\\ntransfiguration\\ntransfigurations\\ntransfigure\\ntransfigured\\ntransfigures\\ntransfiguring\\ntransfix\\ntransfixed\\ntransfixes\\ntransfixing\\ntransfixt\\ntransform\\ntransformation\\ntransformations\\ntransformed\\ntransformer\\ntransformers\\ntransforming\\ntransforms\\ntransfuse\\ntransfused\\ntransfuses\\ntransfusing\\ntransfusion\\ntransfusions\\ntransgress\\ntransgressed\\ntransgresses\\ntransgressing\\ntransgression\\ntransgressions\\ntransgressor\\ntransgressors\\ntranship\\ntranshipped\\ntranshipping\\ntranships\\ntransistor\\ntransistorize\\ntransistorized\\ntransistorizes\\ntransistorizing\\ntransistors\\ntransit\\ntransited\\ntransiting\\ntransition\\ntransitional\\ntransitions\\ntransitory\\ntransits\\ntranslatable\\ntranslate\\ntranslated\\ntranslates\\ntranslating\\ntranslation\\ntranslations\\ntranslator\\ntranslators\\ntranslucence\\ntranslucences\\ntranslucencies\\ntranslucency\\ntranslucent\\ntranslucently\\ntransmissible\\ntransmission\\ntransmissions\\ntransmit\\ntransmits\\ntransmittable\\ntransmittal\\ntransmittals\\ntransmitted\\ntransmitter\\ntransmitters\\ntransmitting\\ntransom\\ntransoms\\ntransparencies\\ntransparency\\ntransparent\\ntransparently\\ntranspiration\\ntranspirations\\ntranspire\\ntranspired\\ntranspires\\ntranspiring\\ntransplant\\ntransplantation\\ntransplantations\\ntransplanted\\ntransplanting\\ntransplants\\ntransport\\ntransportation\\ntransported\\ntransporter\\ntransporters\\ntransporting\\ntransports\\ntranspose\\ntransposed\\ntransposes\\ntransposing\\ntransposition\\ntranspositions\\ntransship\\ntransshiped\\ntransshiping\\ntransshipment\\ntransshipments\\ntransships\\ntransude\\ntransuded\\ntransudes\\ntransuding\\ntransverse\\ntransversely\\ntransverses\\ntrap\\ntrapan\\ntrapanned\\ntrapanning\\ntrapans\\ntrapball\\ntrapballs\\ntrapdoor\\ntrapdoors\\ntrapes\\ntrapesed\\ntrapeses\\ntrapesing\\ntrapeze\\ntrapezes\\ntrapezia\\ntrapezoid\\ntrapezoidal\\ntrapezoids\\ntraplike\\ntrapnest\\ntrapnested\\ntrapnesting\\ntrapnests\\ntrappean\\ntrapped\\ntrapper\\ntrappers\\ntrapping\\ntrappings\\ntrappose\\ntrappous\\ntraprock\\ntraprocks\\ntraps\\ntrapt\\ntrapunto\\ntrapuntos\\ntrash\\ntrashed\\ntrashes\\ntrashier\\ntrashiest\\ntrashily\\ntrashing\\ntrashman\\ntrashmen\\ntrashy\\ntrass\\ntrasses\\ntrauchle\\ntrauchled\\ntrauchles\\ntrauchling\\ntrauma\\ntraumas\\ntraumata\\ntraumatic\\ntravail\\ntravailed\\ntravailing\\ntravails\\ntrave\\ntravel\\ntraveled\\ntraveler\\ntravelers\\ntraveling\\ntravelled\\ntraveller\\ntravellers\\ntravelling\\ntravelog\\ntravelogs\\ntravels\\ntraverse\\ntraversed\\ntraverses\\ntraversing\\ntraves\\ntravestied\\ntravesties\\ntravesty\\ntravestying\\ntravois\\ntravoise\\ntravoises\\ntrawl\\ntrawled\\ntrawler\\ntrawlers\\ntrawley\\ntrawleys\\ntrawling\\ntrawls\\ntray\\ntrayful\\ntrayfuls\\ntrays\\ntreacle\\ntreacles\\ntreacly\\ntread\\ntreaded\\ntreader\\ntreaders\\ntreading\\ntreadle\\ntreadled\\ntreadler\\ntreadlers\\ntreadles\\ntreadling\\ntreadmill\\ntreadmills\\ntreads\\ntreason\\ntreasonable\\ntreasonous\\ntreasons\\ntreasure\\ntreasured\\ntreasurer\\ntreasurers\\ntreasures\\ntreasuries\\ntreasuring\\ntreasury\\ntreat\\ntreated\\ntreater\\ntreaters\\ntreaties\\ntreating\\ntreatise\\ntreatises\\ntreatment\\ntreatments\\ntreats\\ntreaty\\ntreble\\ntrebled\\ntrebles\\ntrebling\\ntrebly\\ntrecento\\ntrecentos\\ntreddle\\ntreddled\\ntreddles\\ntreddling\\ntree\\ntreed\\ntreeing\\ntreeless\\ntreelike\\ntreenail\\ntreenails\\ntrees\\ntreetop\\ntreetops\\ntref\\ntrefah\\ntrefoil\\ntrefoils\\ntrehala\\ntrehalas\\ntrek\\ntrekked\\ntrekker\\ntrekkers\\ntrekking\\ntreks\\ntrellis\\ntrellised\\ntrellises\\ntrellising\\ntremble\\ntrembled\\ntrembler\\ntremblers\\ntrembles\\ntremblier\\ntrembliest\\ntrembling\\ntrembly\\ntremendous\\ntremendously\\ntremolo\\ntremolos\\ntremor\\ntremors\\ntremulous\\ntremulously\\ntrenail\\ntrenails\\ntrench\\ntrenchant\\ntrenched\\ntrencher\\ntrenchers\\ntrenches\\ntrenching\\ntrend\\ntrended\\ntrendier\\ntrendiest\\ntrendily\\ntrending\\ntrends\\ntrendy\\ntrepan\\ntrepang\\ntrepangs\\ntrepanned\\ntrepanning\\ntrepans\\ntrephine\\ntrephined\\ntrephines\\ntrephining\\ntrepid\\ntrepidation\\ntrepidations\\ntrespass\\ntrespassed\\ntrespasser\\ntrespassers\\ntrespasses\\ntrespassing\\ntress\\ntressed\\ntressel\\ntressels\\ntresses\\ntressier\\ntressiest\\ntressour\\ntressours\\ntressure\\ntressures\\ntressy\\ntrestle\\ntrestles\\ntret\\ntrets\\ntrevet\\ntrevets\\ntrews\\ntrey\\ntreys\\ntriable\\ntriacid\\ntriacids\\ntriad\\ntriadic\\ntriadics\\ntriadism\\ntriadisms\\ntriads\\ntriage\\ntriages\\ntrial\\ntrials\\ntriangle\\ntriangles\\ntriangular\\ntriangularly\\ntriarchies\\ntriarchy\\ntriaxial\\ntriazin\\ntriazine\\ntriazines\\ntriazins\\ntriazole\\ntriazoles\\ntribade\\ntribades\\ntribadic\\ntribal\\ntribally\\ntribasic\\ntribe\\ntribes\\ntribesman\\ntribesmen\\ntribrach\\ntribrachs\\ntribulation\\ntribulations\\ntribunal\\ntribunals\\ntribune\\ntribunes\\ntributaries\\ntributary\\ntribute\\ntributes\\ntrice\\ntriced\\ntriceps\\ntricepses\\ntrices\\ntrichina\\ntrichinae\\ntrichinas\\ntrichite\\ntrichites\\ntrichoid\\ntrichome\\ntrichomes\\ntricing\\ntrick\\ntricked\\ntricker\\ntrickeries\\ntrickers\\ntrickery\\ntrickie\\ntrickier\\ntrickiest\\ntrickily\\ntricking\\ntrickish\\ntrickle\\ntrickled\\ntrickles\\ntricklier\\ntrickliest\\ntrickling\\ntrickly\\ntricks\\ntricksier\\ntricksiest\\ntrickster\\ntricksters\\ntricksy\\ntricky\\ntriclad\\ntriclads\\ntricolor\\ntricolors\\ntricorn\\ntricorne\\ntricornes\\ntricorns\\ntricot\\ntricots\\ntrictrac\\ntrictracs\\ntricycle\\ntricycles\\ntrident\\ntridents\\ntriduum\\ntriduums\\ntried\\ntriene\\ntrienes\\ntriennia\\ntriennial\\ntriennials\\ntriens\\ntrientes\\ntrier\\ntriers\\ntries\\ntriethyl\\ntrifid\\ntrifle\\ntrifled\\ntrifler\\ntriflers\\ntrifles\\ntrifling\\ntriflings\\ntrifocal\\ntrifocals\\ntrifold\\ntriforia\\ntriform\\ntrig\\ntrigged\\ntrigger\\ntriggered\\ntriggering\\ntriggers\\ntriggest\\ntrigging\\ntrigly\\ntriglyph\\ntriglyphs\\ntrigness\\ntrignesses\\ntrigo\\ntrigon\\ntrigonal\\ntrigonometric\\ntrigonometrical\\ntrigonometries\\ntrigonometry\\ntrigons\\ntrigos\\ntrigraph\\ntrigraphs\\ntrigs\\ntrihedra\\ntrijet\\ntrijets\\ntrilbies\\ntrilby\\ntrill\\ntrilled\\ntriller\\ntrillers\\ntrilling\\ntrillion\\ntrillions\\ntrillionth\\ntrillionths\\ntrillium\\ntrilliums\\ntrills\\ntrilobal\\ntrilobed\\ntrilogies\\ntrilogy\\ntrim\\ntrimaran\\ntrimarans\\ntrimer\\ntrimers\\ntrimester\\ntrimeter\\ntrimeters\\ntrimly\\ntrimmed\\ntrimmer\\ntrimmers\\ntrimmest\\ntrimming\\ntrimmings\\ntrimness\\ntrimnesses\\ntrimorph\\ntrimorphs\\ntrimotor\\ntrimotors\\ntrims\\ntrinal\\ntrinary\\ntrindle\\ntrindled\\ntrindles\\ntrindling\\ntrine\\ntrined\\ntrines\\ntrining\\ntrinities\\ntrinity\\ntrinket\\ntrinketed\\ntrinketing\\ntrinkets\\ntrinkums\\ntrinodal\\ntrio\\ntriode\\ntriodes\\ntriol\\ntriolet\\ntriolets\\ntriols\\ntrios\\ntriose\\ntrioses\\ntrioxid\\ntrioxide\\ntrioxides\\ntrioxids\\ntrip\\ntripack\\ntripacks\\ntripart\\ntripartite\\ntripe\\ntripedal\\ntripes\\ntriphase\\ntriplane\\ntriplanes\\ntriple\\ntripled\\ntriples\\ntriplet\\ntriplets\\ntriplex\\ntriplexes\\ntriplicate\\ntriplicates\\ntripling\\ntriplite\\ntriplites\\ntriploid\\ntriploids\\ntriply\\ntripod\\ntripodal\\ntripodic\\ntripodies\\ntripody\\ntripoli\\ntripolis\\ntripos\\ntriposes\\ntripped\\ntripper\\ntrippers\\ntrippet\\ntrippets\\ntripping\\ntrippings\\ntrips\\ntriptane\\ntriptanes\\ntriptyca\\ntriptycas\\ntriptych\\ntriptychs\\ntrireme\\ntriremes\\ntriscele\\ntrisceles\\ntrisect\\ntrisected\\ntrisecting\\ntrisection\\ntrisections\\ntrisects\\ntriseme\\ntrisemes\\ntrisemic\\ntriskele\\ntriskeles\\ntrismic\\ntrismus\\ntrismuses\\ntrisome\\ntrisomes\\ntrisomic\\ntrisomics\\ntrisomies\\ntrisomy\\ntristate\\ntriste\\ntristeza\\ntristezas\\ntristful\\ntristich\\ntristichs\\ntrite\\ntritely\\ntriter\\ntritest\\ntrithing\\ntrithings\\ntriticum\\ntriticums\\ntritium\\ntritiums\\ntritoma\\ntritomas\\ntriton\\ntritone\\ntritones\\ntritons\\ntriumph\\ntriumphal\\ntriumphant\\ntriumphantly\\ntriumphed\\ntriumphing\\ntriumphs\\ntriumvir\\ntriumvirate\\ntriumvirates\\ntriumviri\\ntriumvirs\\ntriune\\ntriunes\\ntriunities\\ntriunity\\ntrivalve\\ntrivalves\\ntrivet\\ntrivets\\ntrivia\\ntrivial\\ntrivialities\\ntriviality\\ntrivium\\ntroak\\ntroaked\\ntroaking\\ntroaks\\ntrocar\\ntrocars\\ntrochaic\\ntrochaics\\ntrochal\\ntrochar\\ntrochars\\ntroche\\ntrochee\\ntrochees\\ntroches\\ntrochil\\ntrochili\\ntrochils\\ntrochlea\\ntrochleae\\ntrochleas\\ntrochoid\\ntrochoids\\ntrock\\ntrocked\\ntrocking\\ntrocks\\ntrod\\ntrodden\\ntrode\\ntroffer\\ntroffers\\ntrogon\\ntrogons\\ntroika\\ntroikas\\ntroilite\\ntroilites\\ntroilus\\ntroiluses\\ntrois\\ntroke\\ntroked\\ntrokes\\ntroking\\ntroland\\ntrolands\\ntroll\\ntrolled\\ntroller\\ntrollers\\ntrolley\\ntrolleyed\\ntrolleying\\ntrolleys\\ntrollied\\ntrollies\\ntrolling\\ntrollings\\ntrollop\\ntrollops\\ntrollopy\\ntrolls\\ntrolly\\ntrollying\\ntrombone\\ntrombones\\ntrombonist\\ntrombonists\\ntrommel\\ntrommels\\ntromp\\ntrompe\\ntromped\\ntrompes\\ntromping\\ntromps\\ntrona\\ntronas\\ntrone\\ntrones\\ntroop\\ntrooped\\ntrooper\\ntroopers\\ntroopial\\ntroopials\\ntrooping\\ntroops\\ntrooz\\ntrop\\ntrope\\ntropes\\ntrophic\\ntrophied\\ntrophies\\ntrophy\\ntrophying\\ntropic\\ntropical\\ntropics\\ntropin\\ntropine\\ntropines\\ntropins\\ntropism\\ntropisms\\ntrot\\ntroth\\ntrothed\\ntrothing\\ntroths\\ntrotline\\ntrotlines\\ntrots\\ntrotted\\ntrotter\\ntrotters\\ntrotting\\ntrotyl\\ntrotyls\\ntroubadour\\ntroubadours\\ntrouble\\ntroubled\\ntroublemaker\\ntroublemakers\\ntroubler\\ntroublers\\ntroubles\\ntroubleshoot\\ntroubleshooted\\ntroubleshooting\\ntroubleshoots\\ntroublesome\\ntroublesomely\\ntroubling\\ntrough\\ntroughs\\ntrounce\\ntrounced\\ntrounces\\ntrouncing\\ntroupe\\ntrouped\\ntrouper\\ntroupers\\ntroupes\\ntroupial\\ntroupials\\ntrouping\\ntrouser\\ntrousers\\ntrousseau\\ntrousseaus\\ntrousseaux\\ntrout\\ntroutier\\ntroutiest\\ntrouts\\ntrouty\\ntrouvere\\ntrouveres\\ntrouveur\\ntrouveurs\\ntrove\\ntrover\\ntrovers\\ntroves\\ntrow\\ntrowed\\ntrowel\\ntroweled\\ntroweler\\ntrowelers\\ntroweling\\ntrowelled\\ntrowelling\\ntrowels\\ntrowing\\ntrows\\ntrowsers\\ntrowth\\ntrowths\\ntroy\\ntroys\\ntruancies\\ntruancy\\ntruant\\ntruanted\\ntruanting\\ntruantries\\ntruantry\\ntruants\\ntruce\\ntruced\\ntruces\\ntrucing\\ntruck\\ntruckage\\ntruckages\\ntrucked\\ntrucker\\ntruckers\\ntrucking\\ntruckings\\ntruckle\\ntruckled\\ntruckler\\ntrucklers\\ntruckles\\ntruckling\\ntruckload\\ntruckloads\\ntruckman\\ntruckmen\\ntrucks\\ntruculencies\\ntruculency\\ntruculent\\ntruculently\\ntrudge\\ntrudged\\ntrudgen\\ntrudgens\\ntrudgeon\\ntrudgeons\\ntrudger\\ntrudgers\\ntrudges\\ntrudging\\ntrue\\ntrueblue\\ntrueblues\\ntrueborn\\ntrued\\ntrueing\\ntruelove\\ntrueloves\\ntrueness\\ntruenesses\\ntruer\\ntrues\\ntruest\\ntruffe\\ntruffes\\ntruffle\\ntruffled\\ntruffles\\ntruing\\ntruism\\ntruisms\\ntruistic\\ntrull\\ntrulls\\ntruly\\ntrumeau\\ntrumeaux\\ntrump\\ntrumped\\ntrumperies\\ntrumpery\\ntrumpet\\ntrumpeted\\ntrumpeter\\ntrumpeters\\ntrumpeting\\ntrumpets\\ntrumping\\ntrumps\\ntruncate\\ntruncated\\ntruncates\\ntruncating\\ntruncation\\ntruncations\\ntrundle\\ntrundled\\ntrundler\\ntrundlers\\ntrundles\\ntrundling\\ntrunk\\ntrunked\\ntrunks\\ntrunnel\\ntrunnels\\ntrunnion\\ntrunnions\\ntruss\\ntrussed\\ntrusser\\ntrussers\\ntrusses\\ntrussing\\ntrussings\\ntrust\\ntrusted\\ntrustee\\ntrusteed\\ntrusteeing\\ntrustees\\ntrusteeship\\ntrusteeships\\ntruster\\ntrusters\\ntrustful\\ntrustfully\\ntrustier\\ntrusties\\ntrustiest\\ntrustily\\ntrusting\\ntrusts\\ntrustworthiness\\ntrustworthinesses\\ntrustworthy\\ntrusty\\ntruth\\ntruthful\\ntruthfully\\ntruthfulness\\ntruthfulnesses\\ntruths\\ntry\\ntrying\\ntryingly\\ntryma\\ntrymata\\ntryout\\ntryouts\\ntrypsin\\ntrypsins\\ntryptic\\ntrysail\\ntrysails\\ntryst\\ntryste\\ntrysted\\ntryster\\ntrysters\\ntrystes\\ntrysting\\ntrysts\\ntryworks\\ntsade\\ntsades\\ntsadi\\ntsadis\\ntsar\\ntsardom\\ntsardoms\\ntsarevna\\ntsarevnas\\ntsarina\\ntsarinas\\ntsarism\\ntsarisms\\ntsarist\\ntsarists\\ntsaritza\\ntsaritzas\\ntsars\\ntsetse\\ntsetses\\ntsimmes\\ntsk\\ntsked\\ntsking\\ntsks\\ntsktsk\\ntsktsked\\ntsktsking\\ntsktsks\\ntsuba\\ntsunami\\ntsunamic\\ntsunamis\\ntsuris\\ntuatara\\ntuataras\\ntuatera\\ntuateras\\ntub\\ntuba\\ntubae\\ntubal\\ntubas\\ntubate\\ntubbable\\ntubbed\\ntubber\\ntubbers\\ntubbier\\ntubbiest\\ntubbing\\ntubby\\ntube\\ntubed\\ntubeless\\ntubelike\\ntuber\\ntubercle\\ntubercles\\ntubercular\\ntuberculoses\\ntuberculosis\\ntuberculous\\ntuberoid\\ntuberose\\ntuberoses\\ntuberous\\ntubers\\ntubes\\ntubework\\ntubeworks\\ntubful\\ntubfuls\\ntubifex\\ntubifexes\\ntubiform\\ntubing\\ntubings\\ntublike\\ntubs\\ntubular\\ntubulate\\ntubulated\\ntubulates\\ntubulating\\ntubule\\ntubules\\ntubulose\\ntubulous\\ntubulure\\ntubulures\\ntuchun\\ntuchuns\\ntuck\\ntuckahoe\\ntuckahoes\\ntucked\\ntucker\\ntuckered\\ntuckering\\ntuckers\\ntucket\\ntuckets\\ntucking\\ntucks\\ntufa\\ntufas\\ntuff\\ntuffet\\ntuffets\\ntuffs\\ntuft\\ntufted\\ntufter\\ntufters\\ntuftier\\ntuftiest\\ntuftily\\ntufting\\ntufts\\ntufty\\ntug\\ntugboat\\ntugboats\\ntugged\\ntugger\\ntuggers\\ntugging\\ntugless\\ntugrik\\ntugriks\\ntugs\\ntui\\ntuille\\ntuilles\\ntuis\\ntuition\\ntuitions\\ntuladi\\ntuladis\\ntule\\ntules\\ntulip\\ntulips\\ntulle\\ntulles\\ntullibee\\ntullibees\\ntumble\\ntumbled\\ntumbler\\ntumblers\\ntumbles\\ntumbling\\ntumblings\\ntumbrel\\ntumbrels\\ntumbril\\ntumbrils\\ntumefied\\ntumefies\\ntumefy\\ntumefying\\ntumid\\ntumidily\\ntumidities\\ntumidity\\ntummies\\ntummy\\ntumor\\ntumoral\\ntumorous\\ntumors\\ntumour\\ntumours\\ntump\\ntumpline\\ntumplines\\ntumps\\ntumular\\ntumuli\\ntumulose\\ntumulous\\ntumult\\ntumults\\ntumultuous\\ntumulus\\ntumuluses\\ntun\\ntuna\\ntunable\\ntunably\\ntunas\\ntundish\\ntundishes\\ntundra\\ntundras\\ntune\\ntuneable\\ntuneably\\ntuned\\ntuneful\\ntuneless\\ntuner\\ntuners\\ntunes\\ntung\\ntungs\\ntungsten\\ntungstens\\ntungstic\\ntunic\\ntunica\\ntunicae\\ntunicate\\ntunicates\\ntunicle\\ntunicles\\ntunics\\ntuning\\ntunnage\\ntunnages\\ntunned\\ntunnel\\ntunneled\\ntunneler\\ntunnelers\\ntunneling\\ntunnelled\\ntunnelling\\ntunnels\\ntunnies\\ntunning\\ntunny\\ntuns\\ntup\\ntupelo\\ntupelos\\ntupik\\ntupiks\\ntupped\\ntuppence\\ntuppences\\ntuppeny\\ntupping\\ntups\\ntuque\\ntuques\\nturaco\\nturacos\\nturacou\\nturacous\\nturban\\nturbaned\\nturbans\\nturbaries\\nturbary\\nturbeth\\nturbeths\\nturbid\\nturbidities\\nturbidity\\nturbidly\\nturbidness\\nturbidnesses\\nturbinal\\nturbinals\\nturbine\\nturbines\\nturbit\\nturbith\\nturbiths\\nturbits\\nturbo\\nturbocar\\nturbocars\\nturbofan\\nturbofans\\nturbojet\\nturbojets\\nturboprop\\nturboprops\\nturbos\\nturbot\\nturbots\\nturbulence\\nturbulences\\nturbulently\\nturd\\nturdine\\nturds\\ntureen\\ntureens\\nturf\\nturfed\\nturfier\\nturfiest\\nturfing\\nturfless\\nturflike\\nturfman\\nturfmen\\nturfs\\nturfski\\nturfskis\\nturfy\\nturgencies\\nturgency\\nturgent\\nturgid\\nturgidities\\nturgidity\\nturgidly\\nturgite\\nturgites\\nturgor\\nturgors\\nturkey\\nturkeys\\nturkois\\nturkoises\\nturmeric\\nturmerics\\nturmoil\\nturmoiled\\nturmoiling\\nturmoils\\nturn\\nturnable\\nturnaround\\nturncoat\\nturncoats\\nturndown\\nturndowns\\nturned\\nturner\\nturneries\\nturners\\nturnery\\nturnhall\\nturnhalls\\nturning\\nturnings\\nturnip\\nturnips\\nturnkey\\nturnkeys\\nturnoff\\nturnoffs\\nturnout\\nturnouts\\nturnover\\nturnovers\\nturnpike\\nturnpikes\\nturns\\nturnsole\\nturnsoles\\nturnspit\\nturnspits\\nturnstile\\nturnstiles\\nturntable\\nturntables\\nturnup\\nturnups\\nturpentine\\nturpentines\\nturpeth\\nturpeths\\nturpitude\\nturpitudes\\nturps\\nturquois\\nturquoise\\nturquoises\\nturret\\nturreted\\nturrets\\nturrical\\nturtle\\nturtled\\nturtledove\\nturtledoves\\nturtleneck\\nturtlenecks\\nturtler\\nturtlers\\nturtles\\nturtling\\nturtlings\\nturves\\ntusche\\ntusches\\ntush\\ntushed\\ntushes\\ntushing\\ntusk\\ntusked\\ntusker\\ntuskers\\ntusking\\ntuskless\\ntusklike\\ntusks\\ntussah\\ntussahs\\ntussal\\ntussar\\ntussars\\ntusseh\\ntussehs\\ntusser\\ntussers\\ntussis\\ntussises\\ntussive\\ntussle\\ntussled\\ntussles\\ntussling\\ntussock\\ntussocks\\ntussocky\\ntussor\\ntussore\\ntussores\\ntussors\\ntussuck\\ntussucks\\ntussur\\ntussurs\\ntut\\ntutee\\ntutees\\ntutelage\\ntutelages\\ntutelar\\ntutelaries\\ntutelars\\ntutelary\\ntutor\\ntutorage\\ntutorages\\ntutored\\ntutoress\\ntutoresses\\ntutorial\\ntutorials\\ntutoring\\ntutors\\ntutoyed\\ntutoyer\\ntutoyered\\ntutoyering\\ntutoyers\\ntuts\\ntutted\\ntutti\\ntutties\\ntutting\\ntuttis\\ntutty\\ntutu\\ntutus\\ntux\\ntuxedo\\ntuxedoes\\ntuxedos\\ntuxes\\ntuyer\\ntuyere\\ntuyeres\\ntuyers\\ntwa\\ntwaddle\\ntwaddled\\ntwaddler\\ntwaddlers\\ntwaddles\\ntwaddling\\ntwae\\ntwaes\\ntwain\\ntwains\\ntwang\\ntwanged\\ntwangier\\ntwangiest\\ntwanging\\ntwangle\\ntwangled\\ntwangler\\ntwanglers\\ntwangles\\ntwangling\\ntwangs\\ntwangy\\ntwankies\\ntwanky\\ntwas\\ntwasome\\ntwasomes\\ntwattle\\ntwattled\\ntwattles\\ntwattling\\ntweak\\ntweaked\\ntweakier\\ntweakiest\\ntweaking\\ntweaks\\ntweaky\\ntweed\\ntweedier\\ntweediest\\ntweedle\\ntweedled\\ntweedles\\ntweedling\\ntweeds\\ntweedy\\ntween\\ntweet\\ntweeted\\ntweeter\\ntweeters\\ntweeting\\ntweets\\ntweeze\\ntweezed\\ntweezer\\ntweezers\\ntweezes\\ntweezing\\ntwelfth\\ntwelfths\\ntwelve\\ntwelvemo\\ntwelvemos\\ntwelves\\ntwenties\\ntwentieth\\ntwentieths\\ntwenty\\ntwerp\\ntwerps\\ntwibil\\ntwibill\\ntwibills\\ntwibils\\ntwice\\ntwiddle\\ntwiddled\\ntwiddler\\ntwiddlers\\ntwiddles\\ntwiddling\\ntwier\\ntwiers\\ntwig\\ntwigged\\ntwiggen\\ntwiggier\\ntwiggiest\\ntwigging\\ntwiggy\\ntwigless\\ntwiglike\\ntwigs\\ntwilight\\ntwilights\\ntwilit\\ntwill\\ntwilled\\ntwilling\\ntwillings\\ntwills\\ntwin\\ntwinborn\\ntwine\\ntwined\\ntwiner\\ntwiners\\ntwines\\ntwinge\\ntwinged\\ntwinges\\ntwinging\\ntwinier\\ntwiniest\\ntwinight\\ntwining\\ntwinkle\\ntwinkled\\ntwinkler\\ntwinklers\\ntwinkles\\ntwinkling\\ntwinkly\\ntwinned\\ntwinning\\ntwinnings\\ntwins\\ntwinship\\ntwinships\\ntwiny\\ntwirl\\ntwirled\\ntwirler\\ntwirlers\\ntwirlier\\ntwirliest\\ntwirling\\ntwirls\\ntwirly\\ntwirp\\ntwirps\\ntwist\\ntwisted\\ntwister\\ntwisters\\ntwisting\\ntwistings\\ntwists\\ntwit\\ntwitch\\ntwitched\\ntwitcher\\ntwitchers\\ntwitches\\ntwitchier\\ntwitchiest\\ntwitching\\ntwitchy\\ntwits\\ntwitted\\ntwitter\\ntwittered\\ntwittering\\ntwitters\\ntwittery\\ntwitting\\ntwixt\\ntwo\\ntwofer\\ntwofers\\ntwofold\\ntwofolds\\ntwopence\\ntwopences\\ntwopenny\\ntwos\\ntwosome\\ntwosomes\\ntwyer\\ntwyers\\ntycoon\\ntycoons\\ntye\\ntyee\\ntyees\\ntyes\\ntying\\ntyke\\ntykes\\ntymbal\\ntymbals\\ntympan\\ntympana\\ntympanal\\ntympani\\ntympanic\\ntympanies\\ntympans\\ntympanum\\ntympanums\\ntympany\\ntyne\\ntyned\\ntynes\\ntyning\\ntypal\\ntype\\ntypeable\\ntypebar\\ntypebars\\ntypecase\\ntypecases\\ntypecast\\ntypecasting\\ntypecasts\\ntyped\\ntypeface\\ntypefaces\\ntypes\\ntypeset\\ntypeseting\\ntypesets\\ntypewrite\\ntypewrited\\ntypewriter\\ntypewriters\\ntypewrites\\ntypewriting\\ntypey\\ntyphoid\\ntyphoids\\ntyphon\\ntyphonic\\ntyphons\\ntyphoon\\ntyphoons\\ntyphose\\ntyphous\\ntyphus\\ntyphuses\\ntypic\\ntypical\\ntypically\\ntypicalness\\ntypicalnesses\\ntypier\\ntypiest\\ntypified\\ntypifier\\ntypifiers\\ntypifies\\ntypify\\ntypifying\\ntyping\\ntypist\\ntypists\\ntypo\\ntypographic\\ntypographical\\ntypographically\\ntypographies\\ntypography\\ntypologies\\ntypology\\ntypos\\ntypp\\ntypps\\ntypy\\ntyramine\\ntyramines\\ntyrannic\\ntyrannies\\ntyranny\\ntyrant\\ntyrants\\ntyre\\ntyred\\ntyres\\ntyring\\ntyro\\ntyronic\\ntyros\\ntyrosine\\ntyrosines\\ntythe\\ntythed\\ntythes\\ntything\\ntzaddik\\ntzaddikim\\ntzar\\ntzardom\\ntzardoms\\ntzarevna\\ntzarevnas\\ntzarina\\ntzarinas\\ntzarism\\ntzarisms\\ntzarist\\ntzarists\\ntzaritza\\ntzaritzas\\ntzars\\ntzetze\\ntzetzes\\ntzigane\\ntziganes\\ntzimmes\\ntzitzis\\ntzitzith\\ntzuris\\nubieties\\nubiety\\nubique\\nubiquities\\nubiquitities\\nubiquitity\\nubiquitous\\nubiquitously\\nubiquity\\nudder\\nudders\\nudo\\nudometer\\nudometers\\nudometries\\nudometry\\nudos\\nugh\\nughs\\nuglier\\nugliest\\nuglified\\nuglifier\\nuglifiers\\nuglifies\\nuglify\\nuglifying\\nuglily\\nugliness\\nuglinesses\\nugly\\nugsome\\nuhlan\\nuhlans\\nuintaite\\nuintaites\\nuit\\nukase\\nukases\\nuke\\nukelele\\nukeleles\\nukes\\nukulele\\nukuleles\\nulama\\nulamas\\nulan\\nulans\\nulcer\\nulcerate\\nulcerated\\nulcerates\\nulcerating\\nulceration\\nulcerations\\nulcerative\\nulcered\\nulcering\\nulcerous\\nulcers\\nulema\\nulemas\\nulexite\\nulexites\\nullage\\nullaged\\nullages\\nulna\\nulnad\\nulnae\\nulnar\\nulnas\\nulster\\nulsters\\nulterior\\nultima\\nultimacies\\nultimacy\\nultimas\\nultimata\\nultimate\\nultimately\\nultimates\\nultimatum\\nultimo\\nultra\\nultraism\\nultraisms\\nultraist\\nultraists\\nultrared\\nultrareds\\nultras\\nultraviolet\\nululant\\nululate\\nululated\\nululates\\nululating\\nulva\\nulvas\\numbel\\numbeled\\numbellar\\numbelled\\numbellet\\numbellets\\numbels\\number\\numbered\\numbering\\numbers\\numbilical\\numbilici\\numbilicus\\numbles\\numbo\\numbonal\\numbonate\\numbones\\numbonic\\numbos\\numbra\\numbrae\\numbrage\\numbrages\\numbral\\numbras\\numbrella\\numbrellaed\\numbrellaing\\numbrellas\\numbrette\\numbrettes\\numiac\\numiack\\numiacks\\numiacs\\numiak\\numiaks\\numlaut\\numlauted\\numlauting\\numlauts\\nump\\numped\\numping\\numpirage\\numpirages\\numpire\\numpired\\numpires\\numpiring\\numps\\numpteen\\numpteenth\\numteenth\\nun\\nunabated\\nunable\\nunabridged\\nunabused\\nunacceptable\\nunaccompanied\\nunaccounted\\nunaccustomed\\nunacted\\nunaddressed\\nunadorned\\nunadulterated\\nunaffected\\nunaffectedly\\nunafraid\\nunaged\\nunageing\\nunagile\\nunaging\\nunai\\nunaided\\nunaimed\\nunaired\\nunais\\nunalike\\nunallied\\nunambiguous\\nunambiguously\\nunambitious\\nunamused\\nunanchor\\nunanchored\\nunanchoring\\nunanchors\\nunaneled\\nunanimities\\nunanimity\\nunanimous\\nunanimously\\nunannounced\\nunanswerable\\nunanswered\\nunanticipated\\nunappetizing\\nunappreciated\\nunapproved\\nunapt\\nunaptly\\nunare\\nunargued\\nunarm\\nunarmed\\nunarming\\nunarms\\nunartful\\nunary\\nunasked\\nunassisted\\nunassuming\\nunatoned\\nunattached\\nunattended\\nunattractive\\nunau\\nunaus\\nunauthorized\\nunavailable\\nunavoidable\\nunavowed\\nunawaked\\nunaware\\nunawares\\nunawed\\nunbacked\\nunbaked\\nunbalanced\\nunbar\\nunbarbed\\nunbarred\\nunbarring\\nunbars\\nunbased\\nunbated\\nunbe\\nunbear\\nunbearable\\nunbeared\\nunbearing\\nunbears\\nunbeaten\\nunbecoming\\nunbecomingly\\nunbed\\nunbelief\\nunbeliefs\\nunbelievable\\nunbelievably\\nunbelt\\nunbelted\\nunbelting\\nunbelts\\nunbend\\nunbended\\nunbending\\nunbends\\nunbenign\\nunbent\\nunbiased\\nunbid\\nunbidden\\nunbind\\nunbinding\\nunbinds\\nunbitted\\nunblamed\\nunblest\\nunblock\\nunblocked\\nunblocking\\nunblocks\\nunbloody\\nunbodied\\nunbolt\\nunbolted\\nunbolting\\nunbolts\\nunboned\\nunbonnet\\nunbonneted\\nunbonneting\\nunbonnets\\nunborn\\nunbosom\\nunbosomed\\nunbosoming\\nunbosoms\\nunbought\\nunbound\\nunbowed\\nunbox\\nunboxed\\nunboxes\\nunboxing\\nunbrace\\nunbraced\\nunbraces\\nunbracing\\nunbraid\\nunbraided\\nunbraiding\\nunbraids\\nunbranded\\nunbreakable\\nunbred\\nunbreech\\nunbreeched\\nunbreeches\\nunbreeching\\nunbridle\\nunbridled\\nunbridles\\nunbridling\\nunbroke\\nunbroken\\nunbuckle\\nunbuckled\\nunbuckles\\nunbuckling\\nunbuild\\nunbuilding\\nunbuilds\\nunbuilt\\nunbundle\\nunbundled\\nunbundles\\nunbundling\\nunburden\\nunburdened\\nunburdening\\nunburdens\\nunburied\\nunburned\\nunburnt\\nunbutton\\nunbuttoned\\nunbuttoning\\nunbuttons\\nuncage\\nuncaged\\nuncages\\nuncaging\\nuncake\\nuncaked\\nuncakes\\nuncaking\\nuncalled\\nuncandid\\nuncannier\\nuncanniest\\nuncannily\\nuncanny\\nuncap\\nuncapped\\nuncapping\\nuncaps\\nuncaring\\nuncase\\nuncased\\nuncases\\nuncashed\\nuncasing\\nuncaught\\nuncaused\\nunceasing\\nunceasingly\\nuncensored\\nunceremonious\\nunceremoniously\\nuncertain\\nuncertainly\\nuncertainties\\nuncertainty\\nunchain\\nunchained\\nunchaining\\nunchains\\nunchallenged\\nunchancy\\nunchanged\\nunchanging\\nuncharacteristic\\nuncharge\\nuncharged\\nuncharges\\nuncharging\\nunchary\\nunchaste\\nunchecked\\nunchewed\\nunchic\\nunchoke\\nunchoked\\nunchokes\\nunchoking\\nunchosen\\nunchristian\\nunchurch\\nunchurched\\nunchurches\\nunchurching\\nunci\\nuncia\\nunciae\\nuncial\\nuncially\\nuncials\\nunciform\\nunciforms\\nuncinal\\nuncinate\\nuncini\\nuncinus\\nuncivil\\nuncivilized\\nunclad\\nunclaimed\\nunclamp\\nunclamped\\nunclamping\\nunclamps\\nunclasp\\nunclasped\\nunclasping\\nunclasps\\nuncle\\nunclean\\nuncleaner\\nuncleanest\\nuncleanness\\nuncleannesses\\nunclear\\nuncleared\\nunclearer\\nunclearest\\nunclench\\nunclenched\\nunclenches\\nunclenching\\nuncles\\nunclinch\\nunclinched\\nunclinches\\nunclinching\\nuncloak\\nuncloaked\\nuncloaking\\nuncloaks\\nunclog\\nunclogged\\nunclogging\\nunclogs\\nunclose\\nunclosed\\nuncloses\\nunclosing\\nunclothe\\nunclothed\\nunclothes\\nunclothing\\nuncloud\\nunclouded\\nunclouding\\nunclouds\\nuncloyed\\nuncluttered\\nunco\\nuncoated\\nuncock\\nuncocked\\nuncocking\\nuncocks\\nuncoffin\\nuncoffined\\nuncoffining\\nuncoffins\\nuncoil\\nuncoiled\\nuncoiling\\nuncoils\\nuncoined\\nuncombed\\nuncomely\\nuncomfortable\\nuncomfortably\\nuncomic\\nuncommitted\\nuncommon\\nuncommoner\\nuncommonest\\nuncommonly\\nuncomplimentary\\nuncompromising\\nunconcerned\\nunconcernedlies\\nunconcernedly\\nunconditional\\nunconditionally\\nunconfirmed\\nunconscionable\\nunconscionably\\nunconscious\\nunconsciously\\nunconsciousness\\nunconsciousnesses\\nunconstitutional\\nuncontested\\nuncontrollable\\nuncontrollably\\nuncontrolled\\nunconventional\\nunconventionally\\nunconverted\\nuncooked\\nuncool\\nuncooperative\\nuncoordinated\\nuncork\\nuncorked\\nuncorking\\nuncorks\\nuncos\\nuncounted\\nuncouple\\nuncoupled\\nuncouples\\nuncoupling\\nuncouth\\nuncover\\nuncovered\\nuncovering\\nuncovers\\nuncrate\\nuncrated\\nuncrates\\nuncrating\\nuncreate\\nuncreated\\nuncreates\\nuncreating\\nuncross\\nuncrossed\\nuncrosses\\nuncrossing\\nuncrown\\nuncrowned\\nuncrowning\\nuncrowns\\nunction\\nunctions\\nunctuous\\nunctuously\\nuncultivated\\nuncurb\\nuncurbed\\nuncurbing\\nuncurbs\\nuncured\\nuncurl\\nuncurled\\nuncurling\\nuncurls\\nuncursed\\nuncus\\nuncut\\nundamaged\\nundamped\\nundaring\\nundated\\nundaunted\\nundauntedly\\nunde\\nundecided\\nundecked\\nundeclared\\nundee\\nundefeated\\nundefined\\nundemocratic\\nundeniable\\nundeniably\\nundenied\\nundependable\\nunder\\nunderact\\nunderacted\\nunderacting\\nunderacts\\nunderage\\nunderages\\nunderarm\\nunderarms\\nunderate\\nunderbid\\nunderbidding\\nunderbids\\nunderbought\\nunderbrush\\nunderbrushes\\nunderbud\\nunderbudded\\nunderbudding\\nunderbuds\\nunderbuy\\nunderbuying\\nunderbuys\\nunderclothes\\nunderclothing\\nunderclothings\\nundercover\\nundercurrent\\nundercurrents\\nundercut\\nundercuts\\nundercutting\\nunderdeveloped\\nunderdid\\nunderdo\\nunderdoes\\nunderdog\\nunderdogs\\nunderdoing\\nunderdone\\nundereat\\nundereaten\\nundereating\\nundereats\\nunderestimate\\nunderestimated\\nunderestimates\\nunderestimating\\nunderexpose\\nunderexposed\\nunderexposes\\nunderexposing\\nunderexposure\\nunderexposures\\nunderfed\\nunderfeed\\nunderfeeding\\nunderfeeds\\nunderfoot\\nunderfur\\nunderfurs\\nundergarment\\nundergarments\\nundergo\\nundergod\\nundergods\\nundergoes\\nundergoing\\nundergone\\nundergraduate\\nundergraduates\\nunderground\\nundergrounds\\nundergrowth\\nundergrowths\\nunderhand\\nunderhanded\\nunderhandedly\\nunderhandedness\\nunderhandednesses\\nunderjaw\\nunderjaws\\nunderlaid\\nunderlain\\nunderlap\\nunderlapped\\nunderlapping\\nunderlaps\\nunderlay\\nunderlaying\\nunderlays\\nunderlet\\nunderlets\\nunderletting\\nunderlie\\nunderlies\\nunderline\\nunderlined\\nunderlines\\nunderling\\nunderlings\\nunderlining\\nunderlip\\nunderlips\\nunderlit\\nunderlying\\nundermine\\nundermined\\nundermines\\nundermining\\nunderneath\\nundernourished\\nundernourishment\\nundernourishments\\nunderpaid\\nunderpants\\nunderpass\\nunderpasses\\nunderpay\\nunderpaying\\nunderpays\\nunderpin\\nunderpinned\\nunderpinning\\nunderpinnings\\nunderpins\\nunderprivileged\\nunderran\\nunderrate\\nunderrated\\nunderrates\\nunderrating\\nunderrun\\nunderrunning\\nunderruns\\nunderscore\\nunderscored\\nunderscores\\nunderscoring\\nundersea\\nunderseas\\nundersecretaries\\nundersecretary\\nundersell\\nunderselling\\nundersells\\nunderset\\nundersets\\nundershirt\\nundershirts\\nundershorts\\nunderside\\nundersides\\nundersized\\nundersold\\nunderstand\\nunderstandable\\nunderstandably\\nunderstanded\\nunderstanding\\nunderstandings\\nunderstands\\nunderstate\\nunderstated\\nunderstatement\\nunderstatements\\nunderstates\\nunderstating\\nunderstood\\nunderstudied\\nunderstudies\\nunderstudy\\nunderstudying\\nundertake\\nundertaken\\nundertaker\\nundertakes\\nundertaking\\nundertakings\\nundertax\\nundertaxed\\nundertaxes\\nundertaxing\\nundertone\\nundertones\\nundertook\\nundertow\\nundertows\\nundervalue\\nundervalued\\nundervalues\\nundervaluing\\nunderwater\\nunderway\\nunderwear\\nunderwears\\nunderwent\\nunderworld\\nunderworlds\\nunderwrite\\nunderwriter\\nunderwriters\\nunderwrites\\nunderwriting\\nunderwrote\\nundeserving\\nundesirable\\nundesired\\nundetailed\\nundetected\\nundetermined\\nundeveloped\\nundeviating\\nundevout\\nundid\\nundies\\nundignified\\nundimmed\\nundine\\nundines\\nundivided\\nundo\\nundock\\nundocked\\nundocking\\nundocks\\nundoer\\nundoers\\nundoes\\nundoing\\nundoings\\nundomesticated\\nundone\\nundouble\\nundoubled\\nundoubles\\nundoubling\\nundoubted\\nundoubtedly\\nundrape\\nundraped\\nundrapes\\nundraping\\nundraw\\nundrawing\\nundrawn\\nundraws\\nundreamt\\nundress\\nundressed\\nundresses\\nundressing\\nundrest\\nundrew\\nundried\\nundrinkable\\nundrunk\\nundue\\nundulant\\nundulate\\nundulated\\nundulates\\nundulating\\nundulled\\nunduly\\nundy\\nundyed\\nundying\\nuneager\\nunearned\\nunearth\\nunearthed\\nunearthing\\nunearthly\\nunearths\\nunease\\nuneases\\nuneasier\\nuneasiest\\nuneasily\\nuneasiness\\nuneasinesses\\nuneasy\\nuneaten\\nunedible\\nunedited\\nuneducated\\nunemotional\\nunemployed\\nunemployment\\nunemployments\\nunended\\nunending\\nunendurable\\nunenforceable\\nunenlightened\\nunenvied\\nunequal\\nunequaled\\nunequally\\nunequals\\nunequivocal\\nunequivocally\\nunerased\\nunerring\\nunerringly\\nunethical\\nunevaded\\nuneven\\nunevener\\nunevenest\\nunevenly\\nunevenness\\nunevennesses\\nuneventful\\nunexcitable\\nunexciting\\nunexotic\\nunexpected\\nunexpectedly\\nunexpert\\nunexplainable\\nunexplained\\nunexplored\\nunfaded\\nunfading\\nunfailing\\nunfailingly\\nunfair\\nunfairer\\nunfairest\\nunfairly\\nunfairness\\nunfairnesses\\nunfaith\\nunfaithful\\nunfaithfully\\nunfaithfulness\\nunfaithfulnesses\\nunfaiths\\nunfallen\\nunfamiliar\\nunfamiliarities\\nunfamiliarity\\nunfancy\\nunfasten\\nunfastened\\nunfastening\\nunfastens\\nunfavorable\\nunfavorably\\nunfazed\\nunfeared\\nunfed\\nunfeeling\\nunfeelingly\\nunfeigned\\nunfelt\\nunfence\\nunfenced\\nunfences\\nunfencing\\nunfetter\\nunfettered\\nunfettering\\nunfetters\\nunfilial\\nunfilled\\nunfilmed\\nunfinalized\\nunfinished\\nunfired\\nunfished\\nunfit\\nunfitly\\nunfitness\\nunfitnesses\\nunfits\\nunfitted\\nunfitting\\nunfix\\nunfixed\\nunfixes\\nunfixing\\nunfixt\\nunflappable\\nunflattering\\nunflexed\\nunfoiled\\nunfold\\nunfolded\\nunfolder\\nunfolders\\nunfolding\\nunfolds\\nunfond\\nunforced\\nunforeseeable\\nunforeseen\\nunforged\\nunforgettable\\nunforgettably\\nunforgivable\\nunforgiving\\nunforgot\\nunforked\\nunformed\\nunfortunate\\nunfortunately\\nunfortunates\\nunfought\\nunfound\\nunfounded\\nunframed\\nunfree\\nunfreed\\nunfreeing\\nunfrees\\nunfreeze\\nunfreezes\\nunfreezing\\nunfriendly\\nunfrock\\nunfrocked\\nunfrocking\\nunfrocks\\nunfroze\\nunfrozen\\nunfulfilled\\nunfunded\\nunfunny\\nunfurl\\nunfurled\\nunfurling\\nunfurls\\nunfurnished\\nunfused\\nunfussy\\nungainlier\\nungainliest\\nungainliness\\nungainlinesses\\nungainly\\nungalled\\nungenerous\\nungenial\\nungentle\\nungentlemanly\\nungently\\nungifted\\nungird\\nungirded\\nungirding\\nungirds\\nungirt\\nunglazed\\nunglove\\nungloved\\nungloves\\nungloving\\nunglue\\nunglued\\nunglues\\nungluing\\nungodlier\\nungodliest\\nungodliness\\nungodlinesses\\nungodly\\nungot\\nungotten\\nungowned\\nungraced\\nungraceful\\nungraded\\nungrammatical\\nungrateful\\nungratefully\\nungratefulness\\nungratefulnesses\\nungreedy\\nungual\\nunguard\\nunguarded\\nunguarding\\nunguards\\nunguent\\nunguents\\nungues\\nunguided\\nunguis\\nungula\\nungulae\\nungular\\nungulate\\nungulates\\nunhailed\\nunhair\\nunhaired\\nunhairing\\nunhairs\\nunhallow\\nunhallowed\\nunhallowing\\nunhallows\\nunhalved\\nunhand\\nunhanded\\nunhandier\\nunhandiest\\nunhanding\\nunhands\\nunhandy\\nunhang\\nunhanged\\nunhanging\\nunhangs\\nunhappier\\nunhappiest\\nunhappily\\nunhappiness\\nunhappinesses\\nunhappy\\nunharmed\\nunhasty\\nunhat\\nunhats\\nunhatted\\nunhatting\\nunhealed\\nunhealthful\\nunhealthy\\nunheard\\nunheated\\nunheeded\\nunhelm\\nunhelmed\\nunhelming\\nunhelms\\nunhelped\\nunheroic\\nunhewn\\nunhinge\\nunhinged\\nunhinges\\nunhinging\\nunhip\\nunhired\\nunhitch\\nunhitched\\nunhitches\\nunhitching\\nunholier\\nunholiest\\nunholily\\nunholiness\\nunholinesses\\nunholy\\nunhood\\nunhooded\\nunhooding\\nunhoods\\nunhook\\nunhooked\\nunhooking\\nunhooks\\nunhoped\\nunhorse\\nunhorsed\\nunhorses\\nunhorsing\\nunhouse\\nunhoused\\nunhouses\\nunhousing\\nunhuman\\nunhung\\nunhurt\\nunhusk\\nunhusked\\nunhusking\\nunhusks\\nunialgal\\nuniaxial\\nunicellular\\nunicolor\\nunicorn\\nunicorns\\nunicycle\\nunicycles\\nunideaed\\nunideal\\nunidentified\\nunidirectional\\nuniface\\nunifaces\\nunific\\nunification\\nunifications\\nunified\\nunifier\\nunifiers\\nunifies\\nunifilar\\nuniform\\nuniformed\\nuniformer\\nuniformest\\nuniforming\\nuniformity\\nuniformly\\nuniforms\\nunify\\nunifying\\nunilateral\\nunilaterally\\nunilobed\\nunimaginable\\nunimaginative\\nunimbued\\nunimpeachable\\nunimportant\\nunimpressed\\nuninformed\\nuninhabited\\nuninhibited\\nuninhibitedly\\nuninjured\\nuninsured\\nunintelligent\\nunintelligible\\nunintelligibly\\nunintended\\nunintentional\\nunintentionally\\nuninterested\\nuninteresting\\nuninterrupted\\nuninvited\\nunion\\nunionise\\nunionised\\nunionises\\nunionising\\nunionism\\nunionisms\\nunionist\\nunionists\\nunionization\\nunionizations\\nunionize\\nunionized\\nunionizes\\nunionizing\\nunions\\nunipod\\nunipods\\nunipolar\\nunique\\nuniquely\\nuniqueness\\nuniquer\\nuniques\\nuniquest\\nunironed\\nunisex\\nunisexes\\nunison\\nunisonal\\nunisons\\nunissued\\nunit\\nunitage\\nunitages\\nunitary\\nunite\\nunited\\nunitedly\\nuniter\\nuniters\\nunites\\nunities\\nuniting\\nunitive\\nunitize\\nunitized\\nunitizes\\nunitizing\\nunits\\nunity\\nunivalve\\nunivalves\\nuniversal\\nuniversally\\nuniverse\\nuniverses\\nuniversities\\nuniversity\\nunivocal\\nunivocals\\nunjaded\\nunjoined\\nunjoyful\\nunjudged\\nunjust\\nunjustifiable\\nunjustified\\nunjustly\\nunkempt\\nunkend\\nunkenned\\nunkennel\\nunkenneled\\nunkenneling\\nunkennelled\\nunkennelling\\nunkennels\\nunkent\\nunkept\\nunkind\\nunkinder\\nunkindest\\nunkindlier\\nunkindliest\\nunkindly\\nunkindness\\nunkindnesses\\nunkingly\\nunkissed\\nunknit\\nunknits\\nunknitted\\nunknitting\\nunknot\\nunknots\\nunknotted\\nunknotting\\nunknowing\\nunknowingly\\nunknown\\nunknowns\\nunkosher\\nunlabeled\\nunlabelled\\nunlace\\nunlaced\\nunlaces\\nunlacing\\nunlade\\nunladed\\nunladen\\nunlades\\nunlading\\nunlaid\\nunlash\\nunlashed\\nunlashes\\nunlashing\\nunlatch\\nunlatched\\nunlatches\\nunlatching\\nunlawful\\nunlawfully\\nunlay\\nunlaying\\nunlays\\nunlead\\nunleaded\\nunleading\\nunleads\\nunlearn\\nunlearned\\nunlearning\\nunlearns\\nunlearnt\\nunleased\\nunleash\\nunleashed\\nunleashes\\nunleashing\\nunleavened\\nunled\\nunless\\nunlet\\nunlethal\\nunletted\\nunlevel\\nunleveled\\nunleveling\\nunlevelled\\nunlevelling\\nunlevels\\nunlevied\\nunlicensed\\nunlicked\\nunlikable\\nunlike\\nunlikelier\\nunlikeliest\\nunlikelihood\\nunlikely\\nunlikeness\\nunlikenesses\\nunlimber\\nunlimbered\\nunlimbering\\nunlimbers\\nunlimited\\nunlined\\nunlink\\nunlinked\\nunlinking\\nunlinks\\nunlisted\\nunlit\\nunlive\\nunlived\\nunlively\\nunlives\\nunliving\\nunload\\nunloaded\\nunloader\\nunloaders\\nunloading\\nunloads\\nunlobed\\nunlock\\nunlocked\\nunlocking\\nunlocks\\nunloose\\nunloosed\\nunloosen\\nunloosened\\nunloosening\\nunloosens\\nunlooses\\nunloosing\\nunlovable\\nunloved\\nunlovelier\\nunloveliest\\nunlovely\\nunloving\\nunluckier\\nunluckiest\\nunluckily\\nunlucky\\nunmade\\nunmake\\nunmaker\\nunmakers\\nunmakes\\nunmaking\\nunman\\nunmanageable\\nunmanful\\nunmanly\\nunmanned\\nunmanning\\nunmans\\nunmapped\\nunmarked\\nunmarred\\nunmarried\\nunmask\\nunmasked\\nunmasker\\nunmaskers\\nunmasking\\nunmasks\\nunmated\\nunmatted\\nunmeant\\nunmeet\\nunmeetly\\nunmellow\\nunmelted\\nunmended\\nunmerciful\\nunmercifully\\nunmerited\\nunmet\\nunmew\\nunmewed\\nunmewing\\nunmews\\nunmilled\\nunmingle\\nunmingled\\nunmingles\\nunmingling\\nunmistakable\\nunmistakably\\nunmiter\\nunmitered\\nunmitering\\nunmiters\\nunmitre\\nunmitred\\nunmitres\\nunmitring\\nunmixed\\nunmixt\\nunmodish\\nunmold\\nunmolded\\nunmolding\\nunmolds\\nunmolested\\nunmolten\\nunmoor\\nunmoored\\nunmooring\\nunmoors\\nunmoral\\nunmotivated\\nunmoved\\nunmoving\\nunmown\\nunmuffle\\nunmuffled\\nunmuffles\\nunmuffling\\nunmuzzle\\nunmuzzled\\nunmuzzles\\nunmuzzling\\nunnail\\nunnailed\\nunnailing\\nunnails\\nunnamed\\nunnatural\\nunnaturally\\nunnaturalness\\nunnaturalnesses\\nunnavigable\\nunnecessarily\\nunnecessary\\nunneeded\\nunneighborly\\nunnerve\\nunnerved\\nunnerves\\nunnerving\\nunnoisy\\nunnojectionable\\nunnoted\\nunnoticeable\\nunnoticed\\nunobservable\\nunobservant\\nunobtainable\\nunobtrusive\\nunobtrusively\\nunoccupied\\nunofficial\\nunoiled\\nunopen\\nunopened\\nunopposed\\nunorganized\\nunoriginal\\nunornate\\nunorthodox\\nunowned\\nunpack\\nunpacked\\nunpacker\\nunpackers\\nunpacking\\nunpacks\\nunpaged\\nunpaid\\nunpaired\\nunparalleled\\nunpardonable\\nunparted\\nunpatriotic\\nunpaved\\nunpaying\\nunpeg\\nunpegged\\nunpegging\\nunpegs\\nunpen\\nunpenned\\nunpenning\\nunpens\\nunpent\\nunpeople\\nunpeopled\\nunpeoples\\nunpeopling\\nunperson\\nunpersons\\nunpick\\nunpicked\\nunpicking\\nunpicks\\nunpile\\nunpiled\\nunpiles\\nunpiling\\nunpin\\nunpinned\\nunpinning\\nunpins\\nunpitied\\nunplaced\\nunplait\\nunplaited\\nunplaiting\\nunplaits\\nunplayed\\nunpleasant\\nunpleasantly\\nunpleasantness\\nunpleasantnesses\\nunpliant\\nunplowed\\nunplug\\nunplugged\\nunplugging\\nunplugs\\nunpoetic\\nunpoised\\nunpolite\\nunpolled\\nunpopular\\nunpopularities\\nunpopularity\\nunposed\\nunposted\\nunprecedented\\nunpredictable\\nunpredictably\\nunprejudiced\\nunprepared\\nunpretentious\\nunpretty\\nunpriced\\nunprimed\\nunprincipled\\nunprinted\\nunprized\\nunprobed\\nunproductive\\nunprofessional\\nunprofitable\\nunprotected\\nunproved\\nunproven\\nunprovoked\\nunpruned\\nunpucker\\nunpuckered\\nunpuckering\\nunpuckers\\nunpunished\\nunpure\\nunpurged\\nunpuzzle\\nunpuzzled\\nunpuzzles\\nunpuzzling\\nunqualified\\nunquantifiable\\nunquenchable\\nunquestionable\\nunquestionably\\nunquestioning\\nunquiet\\nunquieter\\nunquietest\\nunquiets\\nunquote\\nunquoted\\nunquotes\\nunquoting\\nunraised\\nunraked\\nunranked\\nunrated\\nunravel\\nunraveled\\nunraveling\\nunravelled\\nunravelling\\nunravels\\nunrazed\\nunreachable\\nunread\\nunreadable\\nunreadier\\nunreadiest\\nunready\\nunreal\\nunrealistic\\nunrealities\\nunreality\\nunreally\\nunreason\\nunreasonable\\nunreasonably\\nunreasoned\\nunreasoning\\nunreasons\\nunreel\\nunreeled\\nunreeler\\nunreelers\\nunreeling\\nunreels\\nunreeve\\nunreeved\\nunreeves\\nunreeving\\nunrefined\\nunrelated\\nunrelenting\\nunrelentingly\\nunreliable\\nunremembered\\nunrent\\nunrented\\nunrepaid\\nunrepair\\nunrepairs\\nunrepentant\\nunrequited\\nunresolved\\nunresponsive\\nunrest\\nunrested\\nunrestrained\\nunrestricted\\nunrests\\nunrewarding\\nunrhymed\\nunriddle\\nunriddled\\nunriddles\\nunriddling\\nunrifled\\nunrig\\nunrigged\\nunrigging\\nunrigs\\nunrimed\\nunrinsed\\nunrip\\nunripe\\nunripely\\nunriper\\nunripest\\nunripped\\nunripping\\nunrips\\nunrisen\\nunrivaled\\nunrivalled\\nunrobe\\nunrobed\\nunrobes\\nunrobing\\nunroll\\nunrolled\\nunrolling\\nunrolls\\nunroof\\nunroofed\\nunroofing\\nunroofs\\nunroot\\nunrooted\\nunrooting\\nunroots\\nunrough\\nunround\\nunrounded\\nunrounding\\nunrounds\\nunrove\\nunroven\\nunruffled\\nunruled\\nunrulier\\nunruliest\\nunruliness\\nunrulinesses\\nunruly\\nunrushed\\nuns\\nunsaddle\\nunsaddled\\nunsaddles\\nunsaddling\\nunsafe\\nunsafely\\nunsafeties\\nunsafety\\nunsaid\\nunsalted\\nunsanitary\\nunsated\\nunsatisfactory\\nunsatisfied\\nunsatisfying\\nunsaved\\nunsavory\\nunsawed\\nunsawn\\nunsay\\nunsaying\\nunsays\\nunscaled\\nunscathed\\nunscented\\nunscheduled\\nunscientific\\nunscramble\\nunscrambled\\nunscrambles\\nunscrambling\\nunscrew\\nunscrewed\\nunscrewing\\nunscrews\\nunscrupulous\\nunscrupulously\\nunscrupulousness\\nunscrupulousnesses\\nunseal\\nunsealed\\nunsealing\\nunseals\\nunseam\\nunseamed\\nunseaming\\nunseams\\nunseared\\nunseasonable\\nunseasonably\\nunseasoned\\nunseat\\nunseated\\nunseating\\nunseats\\nunseeded\\nunseeing\\nunseemlier\\nunseemliest\\nunseemly\\nunseen\\nunseized\\nunselfish\\nunselfishly\\nunselfishness\\nunselfishnesses\\nunsent\\nunserved\\nunset\\nunsets\\nunsetting\\nunsettle\\nunsettled\\nunsettles\\nunsettling\\nunsew\\nunsewed\\nunsewing\\nunsewn\\nunsews\\nunsex\\nunsexed\\nunsexes\\nunsexing\\nunsexual\\nunshaded\\nunshaken\\nunshamed\\nunshaped\\nunshapen\\nunshared\\nunsharp\\nunshaved\\nunshaven\\nunshed\\nunshell\\nunshelled\\nunshelling\\nunshells\\nunshift\\nunshifted\\nunshifting\\nunshifts\\nunship\\nunshipped\\nunshipping\\nunships\\nunshod\\nunshorn\\nunshrunk\\nunshut\\nunsicker\\nunsifted\\nunsight\\nunsighted\\nunsighting\\nunsights\\nunsigned\\nunsilent\\nunsinful\\nunsized\\nunskilled\\nunskillful\\nunskillfully\\nunslaked\\nunsling\\nunslinging\\nunslings\\nunslung\\nunsmoked\\nunsnap\\nunsnapped\\nunsnapping\\nunsnaps\\nunsnarl\\nunsnarled\\nunsnarling\\nunsnarls\\nunsoaked\\nunsober\\nunsocial\\nunsoiled\\nunsold\\nunsolder\\nunsoldered\\nunsoldering\\nunsolders\\nunsolicited\\nunsolid\\nunsolved\\nunsoncy\\nunsonsie\\nunsonsy\\nunsophisticated\\nunsorted\\nunsought\\nunsound\\nunsounder\\nunsoundest\\nunsoundly\\nunsoundness\\nunsoundnesses\\nunsoured\\nunsowed\\nunsown\\nunspeak\\nunspeakable\\nunspeakably\\nunspeaking\\nunspeaks\\nunspecified\\nunspent\\nunsphere\\nunsphered\\nunspheres\\nunsphering\\nunspilt\\nunsplit\\nunspoiled\\nunspoilt\\nunspoke\\nunspoken\\nunsprung\\nunspun\\nunstable\\nunstabler\\nunstablest\\nunstably\\nunstack\\nunstacked\\nunstacking\\nunstacks\\nunstate\\nunstated\\nunstates\\nunstating\\nunsteadied\\nunsteadier\\nunsteadies\\nunsteadiest\\nunsteadily\\nunsteadiness\\nunsteadinesses\\nunsteady\\nunsteadying\\nunsteel\\nunsteeled\\nunsteeling\\nunsteels\\nunstep\\nunstepped\\nunstepping\\nunsteps\\nunstick\\nunsticked\\nunsticking\\nunsticks\\nunstop\\nunstopped\\nunstopping\\nunstops\\nunstrap\\nunstrapped\\nunstrapping\\nunstraps\\nunstress\\nunstresses\\nunstring\\nunstringing\\nunstrings\\nunstructured\\nunstrung\\nunstung\\nunsubstantiated\\nunsubtle\\nunsuccessful\\nunsuited\\nunsung\\nunsunk\\nunsure\\nunsurely\\nunswathe\\nunswathed\\nunswathes\\nunswathing\\nunswayed\\nunswear\\nunswearing\\nunswears\\nunswept\\nunswore\\nunsworn\\nuntack\\nuntacked\\nuntacking\\nuntacks\\nuntagged\\nuntaken\\nuntame\\nuntamed\\nuntangle\\nuntangled\\nuntangles\\nuntangling\\nuntanned\\nuntapped\\nuntasted\\nuntaught\\nuntaxed\\nunteach\\nunteaches\\nunteaching\\nuntended\\nuntested\\nuntether\\nuntethered\\nuntethering\\nuntethers\\nunthawed\\nunthink\\nunthinkable\\nunthinking\\nunthinkingly\\nunthinks\\nunthought\\nunthread\\nunthreaded\\nunthreading\\nunthreads\\nunthrone\\nunthroned\\nunthrones\\nunthroning\\nuntidied\\nuntidier\\nuntidies\\nuntidiest\\nuntidily\\nuntidy\\nuntidying\\nuntie\\nuntied\\nunties\\nuntil\\nuntilled\\nuntilted\\nuntimelier\\nuntimeliest\\nuntimely\\nuntinged\\nuntired\\nuntiring\\nuntitled\\nunto\\nuntold\\nuntoward\\nuntraced\\nuntrained\\nuntread\\nuntreading\\nuntreads\\nuntreated\\nuntried\\nuntrim\\nuntrimmed\\nuntrimming\\nuntrims\\nuntrod\\nuntrodden\\nuntrue\\nuntruer\\nuntruest\\nuntruly\\nuntruss\\nuntrussed\\nuntrusses\\nuntrussing\\nuntrustworthy\\nuntrusty\\nuntruth\\nuntruthful\\nuntruths\\nuntuck\\nuntucked\\nuntucking\\nuntucks\\nuntufted\\nuntune\\nuntuned\\nuntunes\\nuntuning\\nunturned\\nuntwine\\nuntwined\\nuntwines\\nuntwining\\nuntwist\\nuntwisted\\nuntwisting\\nuntwists\\nuntying\\nununited\\nunurged\\nunusable\\nunused\\nunusual\\nunvalued\\nunvaried\\nunvarying\\nunveil\\nunveiled\\nunveiling\\nunveils\\nunveined\\nunverified\\nunversed\\nunvexed\\nunvext\\nunviable\\nunvocal\\nunvoice\\nunvoiced\\nunvoices\\nunvoicing\\nunwalled\\nunwanted\\nunwarier\\nunwariest\\nunwarily\\nunwarmed\\nunwarned\\nunwarped\\nunwarranted\\nunwary\\nunwas\\nunwashed\\nunwasheds\\nunwasted\\nunwavering\\nunwaxed\\nunweaned\\nunweary\\nunweave\\nunweaves\\nunweaving\\nunwed\\nunwedded\\nunweeded\\nunweeping\\nunweight\\nunweighted\\nunweighting\\nunweights\\nunwelcome\\nunwelded\\nunwell\\nunwept\\nunwetted\\nunwholesome\\nunwieldier\\nunwieldiest\\nunwieldy\\nunwifely\\nunwilled\\nunwilling\\nunwillingly\\nunwillingness\\nunwillingnesses\\nunwind\\nunwinder\\nunwinders\\nunwinding\\nunwinds\\nunwisdom\\nunwisdoms\\nunwise\\nunwisely\\nunwiser\\nunwisest\\nunwish\\nunwished\\nunwishes\\nunwishing\\nunwit\\nunwits\\nunwitted\\nunwitting\\nunwittingly\\nunwon\\nunwonted\\nunwooded\\nunwooed\\nunworkable\\nunworked\\nunworn\\nunworthier\\nunworthies\\nunworthiest\\nunworthily\\nunworthiness\\nunworthinesses\\nunworthy\\nunwound\\nunwove\\nunwoven\\nunwrap\\nunwrapped\\nunwrapping\\nunwraps\\nunwritten\\nunwrung\\nunyeaned\\nunyielding\\nunyoke\\nunyoked\\nunyokes\\nunyoking\\nunzip\\nunzipped\\nunzipping\\nunzips\\nunzoned\\nup\\nupas\\nupases\\nupbear\\nupbearer\\nupbearers\\nupbearing\\nupbears\\nupbeat\\nupbeats\\nupbind\\nupbinding\\nupbinds\\nupboil\\nupboiled\\nupboiling\\nupboils\\nupbore\\nupborne\\nupbound\\nupbraid\\nupbraided\\nupbraiding\\nupbraids\\nupbringing\\nupbringings\\nupbuild\\nupbuilding\\nupbuilds\\nupbuilt\\nupby\\nupbye\\nupcast\\nupcasting\\nupcasts\\nupchuck\\nupchucked\\nupchucking\\nupchucks\\nupclimb\\nupclimbed\\nupclimbing\\nupclimbs\\nupcoil\\nupcoiled\\nupcoiling\\nupcoils\\nupcoming\\nupcurl\\nupcurled\\nupcurling\\nupcurls\\nupcurve\\nupcurved\\nupcurves\\nupcurving\\nupdart\\nupdarted\\nupdarting\\nupdarts\\nupdate\\nupdated\\nupdater\\nupdaters\\nupdates\\nupdating\\nupdive\\nupdived\\nupdives\\nupdiving\\nupdo\\nupdos\\nupdove\\nupdraft\\nupdrafts\\nupdried\\nupdries\\nupdry\\nupdrying\\nupend\\nupended\\nupending\\nupends\\nupfield\\nupfling\\nupflinging\\nupflings\\nupflow\\nupflowed\\nupflowing\\nupflows\\nupflung\\nupfold\\nupfolded\\nupfolding\\nupfolds\\nupgather\\nupgathered\\nupgathering\\nupgathers\\nupgaze\\nupgazed\\nupgazes\\nupgazing\\nupgird\\nupgirded\\nupgirding\\nupgirds\\nupgirt\\nupgoing\\nupgrade\\nupgraded\\nupgrades\\nupgrading\\nupgrew\\nupgrow\\nupgrowing\\nupgrown\\nupgrows\\nupgrowth\\nupgrowths\\nupheap\\nupheaped\\nupheaping\\nupheaps\\nupheaval\\nupheavals\\nupheave\\nupheaved\\nupheaver\\nupheavers\\nupheaves\\nupheaving\\nupheld\\nuphill\\nuphills\\nuphoard\\nuphoarded\\nuphoarding\\nuphoards\\nuphold\\nupholder\\nupholders\\nupholding\\nupholds\\nupholster\\nupholstered\\nupholsterer\\nupholsterers\\nupholsteries\\nupholstering\\nupholsters\\nupholstery\\nuphove\\nuphroe\\nuphroes\\nupkeep\\nupkeeps\\nupland\\nuplander\\nuplanders\\nuplands\\nupleap\\nupleaped\\nupleaping\\nupleaps\\nupleapt\\nuplift\\nuplifted\\nuplifter\\nuplifters\\nuplifting\\nuplifts\\nuplight\\nuplighted\\nuplighting\\nuplights\\nuplit\\nupmost\\nupo\\nupon\\nupped\\nupper\\nuppercase\\nuppercut\\nuppercuts\\nuppercutting\\nuppermost\\nuppers\\nuppile\\nuppiled\\nuppiles\\nuppiling\\nupping\\nuppings\\nuppish\\nuppishly\\nuppity\\nupprop\\nuppropped\\nuppropping\\nupprops\\nupraise\\nupraised\\nupraiser\\nupraisers\\nupraises\\nupraising\\nupreach\\nupreached\\nupreaches\\nupreaching\\nuprear\\nupreared\\nuprearing\\nuprears\\nupright\\nuprighted\\nuprighting\\nuprightness\\nuprightnesses\\nuprights\\nuprise\\nuprisen\\nupriser\\nuprisers\\nuprises\\nuprising\\nuprisings\\nupriver\\nuprivers\\nuproar\\nuproarious\\nuproariously\\nuproars\\nuproot\\nuprootal\\nuprootals\\nuprooted\\nuprooter\\nuprooters\\nuprooting\\nuproots\\nuprose\\nuprouse\\nuproused\\nuprouses\\nuprousing\\nuprush\\nuprushed\\nuprushes\\nuprushing\\nups\\nupsend\\nupsending\\nupsends\\nupsent\\nupset\\nupsets\\nupsetter\\nupsetters\\nupsetting\\nupshift\\nupshifted\\nupshifting\\nupshifts\\nupshoot\\nupshooting\\nupshoots\\nupshot\\nupshots\\nupside\\nupsidedown\\nupsides\\nupsilon\\nupsilons\\nupsoar\\nupsoared\\nupsoaring\\nupsoars\\nupsprang\\nupspring\\nupspringing\\nupsprings\\nupsprung\\nupstage\\nupstaged\\nupstages\\nupstaging\\nupstair\\nupstairs\\nupstand\\nupstanding\\nupstands\\nupstare\\nupstared\\nupstares\\nupstaring\\nupstart\\nupstarted\\nupstarting\\nupstarts\\nupstate\\nupstater\\nupstaters\\nupstates\\nupstep\\nupstepped\\nupstepping\\nupsteps\\nupstir\\nupstirred\\nupstirring\\nupstirs\\nupstood\\nupstream\\nupstroke\\nupstrokes\\nupsurge\\nupsurged\\nupsurges\\nupsurging\\nupsweep\\nupsweeping\\nupsweeps\\nupswell\\nupswelled\\nupswelling\\nupswells\\nupswept\\nupswing\\nupswinging\\nupswings\\nupswollen\\nupswung\\nuptake\\nuptakes\\nuptear\\nuptearing\\nuptears\\nupthrew\\nupthrow\\nupthrowing\\nupthrown\\nupthrows\\nupthrust\\nupthrusting\\nupthrusts\\nuptight\\nuptilt\\nuptilted\\nuptilting\\nuptilts\\nuptime\\nuptimes\\nuptore\\nuptorn\\nuptoss\\nuptossed\\nuptosses\\nuptossing\\nuptown\\nuptowner\\nuptowners\\nuptowns\\nuptrend\\nuptrends\\nupturn\\nupturned\\nupturning\\nupturns\\nupwaft\\nupwafted\\nupwafting\\nupwafts\\nupward\\nupwardly\\nupwards\\nupwell\\nupwelled\\nupwelling\\nupwells\\nupwind\\nupwinds\\nuracil\\nuracils\\nuraei\\nuraemia\\nuraemias\\nuraemic\\nuraeus\\nuraeuses\\nuralite\\nuralites\\nuralitic\\nuranic\\nuranide\\nuranides\\nuranism\\nuranisms\\nuranite\\nuranites\\nuranitic\\nuranium\\nuraniums\\nuranous\\nuranyl\\nuranylic\\nuranyls\\nurare\\nurares\\nurari\\nuraris\\nurase\\nurases\\nurate\\nurates\\nuratic\\nurban\\nurbane\\nurbanely\\nurbaner\\nurbanest\\nurbanise\\nurbanised\\nurbanises\\nurbanising\\nurbanism\\nurbanisms\\nurbanist\\nurbanists\\nurbanite\\nurbanites\\nurbanities\\nurbanity\\nurbanize\\nurbanized\\nurbanizes\\nurbanizing\\nurchin\\nurchins\\nurd\\nurds\\nurea\\nureal\\nureas\\nurease\\nureases\\nuredia\\nuredial\\nuredinia\\nuredium\\nuredo\\nuredos\\nureic\\nureide\\nureides\\nuremia\\nuremias\\nuremic\\nureter\\nureteral\\nureteric\\nureters\\nurethan\\nurethane\\nurethanes\\nurethans\\nurethra\\nurethrae\\nurethral\\nurethras\\nuretic\\nurge\\nurged\\nurgencies\\nurgency\\nurgent\\nurgently\\nurger\\nurgers\\nurges\\nurging\\nurgingly\\nuric\\nuridine\\nuridines\\nurinal\\nurinals\\nurinalysis\\nurinaries\\nurinary\\nurinate\\nurinated\\nurinates\\nurinating\\nurination\\nurinations\\nurine\\nurinemia\\nurinemias\\nurinemic\\nurines\\nurinose\\nurinous\\nurn\\nurnlike\\nurns\\nurochord\\nurochords\\nurodele\\nurodeles\\nurolagnia\\nurolagnias\\nurolith\\nuroliths\\nurologic\\nurologies\\nurology\\nuropod\\nuropodal\\nuropods\\nuroscopies\\nuroscopy\\nurostyle\\nurostyles\\nursa\\nursae\\nursiform\\nursine\\nurticant\\nurticants\\nurticate\\nurticated\\nurticates\\nurticating\\nurus\\nuruses\\nurushiol\\nurushiols\\nus\\nusability\\nusable\\nusably\\nusage\\nusages\\nusance\\nusances\\nusaunce\\nusaunces\\nuse\\nuseable\\nuseably\\nused\\nuseful\\nusefully\\nusefulness\\nuseless\\nuselessly\\nuselessness\\nuselessnesses\\nuser\\nusers\\nuses\\nusher\\nushered\\nusherette\\nusherettes\\nushering\\nushers\\nusing\\nusnea\\nusneas\\nusquabae\\nusquabaes\\nusque\\nusquebae\\nusquebaes\\nusques\\nustulate\\nusual\\nusually\\nusuals\\nusufruct\\nusufructs\\nusurer\\nusurers\\nusuries\\nusurious\\nusurp\\nusurped\\nusurper\\nusurpers\\nusurping\\nusurps\\nusury\\nut\\nuta\\nutas\\nutensil\\nutensils\\nuteri\\nuterine\\nuterus\\nuteruses\\nutile\\nutilidor\\nutilidors\\nutilise\\nutilised\\nutiliser\\nutilisers\\nutilises\\nutilising\\nutilitarian\\nutilities\\nutility\\nutilization\\nutilize\\nutilized\\nutilizer\\nutilizers\\nutilizes\\nutilizing\\nutmost\\nutmosts\\nutopia\\nutopian\\nutopians\\nutopias\\nutopism\\nutopisms\\nutopist\\nutopists\\nutricle\\nutricles\\nutriculi\\nuts\\nutter\\nutterance\\nutterances\\nuttered\\nutterer\\nutterers\\nuttering\\nutterly\\nutters\\nuvea\\nuveal\\nuveas\\nuveitic\\nuveitis\\nuveitises\\nuveous\\nuvula\\nuvulae\\nuvular\\nuvularly\\nuvulars\\nuvulas\\nuvulitis\\nuvulitises\\nuxorial\\nuxorious\\nvacancies\\nvacancy\\nvacant\\nvacantly\\nvacate\\nvacated\\nvacates\\nvacating\\nvacation\\nvacationed\\nvacationer\\nvacationers\\nvacationing\\nvacations\\nvaccina\\nvaccinal\\nvaccinas\\nvaccinate\\nvaccinated\\nvaccinates\\nvaccinating\\nvaccination\\nvaccinations\\nvaccine\\nvaccines\\nvaccinia\\nvaccinias\\nvacillate\\nvacillated\\nvacillates\\nvacillating\\nvacillation\\nvacillations\\nvacua\\nvacuities\\nvacuity\\nvacuolar\\nvacuole\\nvacuoles\\nvacuous\\nvacuously\\nvacuousness\\nvacuousnesses\\nvacuum\\nvacuumed\\nvacuuming\\nvacuums\\nvadose\\nvagabond\\nvagabonded\\nvagabonding\\nvagabonds\\nvagal\\nvagally\\nvagaries\\nvagary\\nvagi\\nvagile\\nvagilities\\nvagility\\nvagina\\nvaginae\\nvaginal\\nvaginas\\nvaginate\\nvagotomies\\nvagotomy\\nvagrancies\\nvagrancy\\nvagrant\\nvagrants\\nvagrom\\nvague\\nvaguely\\nvagueness\\nvaguenesses\\nvaguer\\nvaguest\\nvagus\\nvahine\\nvahines\\nvail\\nvailed\\nvailing\\nvails\\nvain\\nvainer\\nvainest\\nvainly\\nvainness\\nvainnesses\\nvair\\nvairs\\nvakeel\\nvakeels\\nvakil\\nvakils\\nvalance\\nvalanced\\nvalances\\nvalancing\\nvale\\nvaledictorian\\nvaledictorians\\nvaledictories\\nvaledictory\\nvalence\\nvalences\\nvalencia\\nvalencias\\nvalencies\\nvalency\\nvalentine\\nvalentines\\nvalerate\\nvalerates\\nvalerian\\nvalerians\\nvaleric\\nvales\\nvalet\\nvaleted\\nvaleting\\nvalets\\nvalgoid\\nvalgus\\nvalguses\\nvaliance\\nvaliances\\nvaliancies\\nvaliancy\\nvaliant\\nvaliantly\\nvaliants\\nvalid\\nvalidate\\nvalidated\\nvalidates\\nvalidating\\nvalidation\\nvalidations\\nvalidities\\nvalidity\\nvalidly\\nvalidness\\nvalidnesses\\nvaline\\nvalines\\nvalise\\nvalises\\nvalkyr\\nvalkyrie\\nvalkyries\\nvalkyrs\\nvallate\\nvalley\\nvalleys\\nvalonia\\nvalonias\\nvalor\\nvalorise\\nvalorised\\nvalorises\\nvalorising\\nvalorize\\nvalorized\\nvalorizes\\nvalorizing\\nvalorous\\nvalors\\nvalour\\nvalours\\nvalse\\nvalses\\nvaluable\\nvaluables\\nvaluably\\nvaluate\\nvaluated\\nvaluates\\nvaluating\\nvaluation\\nvaluations\\nvaluator\\nvaluators\\nvalue\\nvalued\\nvalueless\\nvaluer\\nvaluers\\nvalues\\nvaluing\\nvaluta\\nvalutas\\nvalval\\nvalvar\\nvalvate\\nvalve\\nvalved\\nvalveless\\nvalvelet\\nvalvelets\\nvalves\\nvalving\\nvalvula\\nvalvulae\\nvalvular\\nvalvule\\nvalvules\\nvambrace\\nvambraces\\nvamoose\\nvamoosed\\nvamooses\\nvamoosing\\nvamose\\nvamosed\\nvamoses\\nvamosing\\nvamp\\nvamped\\nvamper\\nvampers\\nvamping\\nvampire\\nvampires\\nvampiric\\nvampish\\nvamps\\nvan\\nvanadate\\nvanadates\\nvanadic\\nvanadium\\nvanadiums\\nvanadous\\nvanda\\nvandal\\nvandalic\\nvandalism\\nvandalisms\\nvandalize\\nvandalized\\nvandalizes\\nvandalizing\\nvandals\\nvandas\\nvandyke\\nvandyked\\nvandykes\\nvane\\nvaned\\nvanes\\nvang\\nvangs\\nvanguard\\nvanguards\\nvanilla\\nvanillas\\nvanillic\\nvanillin\\nvanillins\\nvanish\\nvanished\\nvanisher\\nvanishers\\nvanishes\\nvanishing\\nvanitied\\nvanities\\nvanity\\nvanman\\nvanmen\\nvanquish\\nvanquished\\nvanquishes\\nvanquishing\\nvans\\nvantage\\nvantages\\nvanward\\nvapid\\nvapidities\\nvapidity\\nvapidly\\nvapidness\\nvapidnesses\\nvapor\\nvapored\\nvaporer\\nvaporers\\nvaporing\\nvaporings\\nvaporise\\nvaporised\\nvaporises\\nvaporish\\nvaporising\\nvaporization\\nvaporizations\\nvaporize\\nvaporized\\nvaporizes\\nvaporizing\\nvaporous\\nvapors\\nvapory\\nvapour\\nvapoured\\nvapourer\\nvapourers\\nvapouring\\nvapours\\nvapoury\\nvaquero\\nvaqueros\\nvara\\nvaras\\nvaria\\nvariabilities\\nvariability\\nvariable\\nvariableness\\nvariablenesses\\nvariables\\nvariably\\nvariance\\nvariances\\nvariant\\nvariants\\nvariate\\nvariated\\nvariates\\nvariating\\nvariation\\nvariations\\nvarices\\nvaricose\\nvaried\\nvariedly\\nvariegate\\nvariegated\\nvariegates\\nvariegating\\nvariegation\\nvariegations\\nvarier\\nvariers\\nvaries\\nvarietal\\nvarieties\\nvariety\\nvariform\\nvariola\\nvariolar\\nvariolas\\nvariole\\nvarioles\\nvariorum\\nvariorums\\nvarious\\nvariously\\nvaristor\\nvaristors\\nvarix\\nvarlet\\nvarletries\\nvarletry\\nvarlets\\nvarment\\nvarments\\nvarmint\\nvarmints\\nvarna\\nvarnas\\nvarnish\\nvarnished\\nvarnishes\\nvarnishing\\nvarnishy\\nvarsities\\nvarsity\\nvarus\\nvaruses\\nvarve\\nvarved\\nvarves\\nvary\\nvarying\\nvas\\nvasa\\nvasal\\nvascula\\nvascular\\nvasculum\\nvasculums\\nvase\\nvaselike\\nvases\\nvasiform\\nvassal\\nvassalage\\nvassalages\\nvassals\\nvast\\nvaster\\nvastest\\nvastier\\nvastiest\\nvastities\\nvastity\\nvastly\\nvastness\\nvastnesses\\nvasts\\nvasty\\nvat\\nvatful\\nvatfuls\\nvatic\\nvatical\\nvaticide\\nvaticides\\nvats\\nvatted\\nvatting\\nvau\\nvaudeville\\nvaudevilles\\nvault\\nvaulted\\nvaulter\\nvaulters\\nvaultier\\nvaultiest\\nvaulting\\nvaultings\\nvaults\\nvaulty\\nvaunt\\nvaunted\\nvaunter\\nvaunters\\nvauntful\\nvauntie\\nvaunting\\nvaunts\\nvaunty\\nvaus\\nvav\\nvavasor\\nvavasors\\nvavasour\\nvavasours\\nvavassor\\nvavassors\\nvavs\\nvaw\\nvaward\\nvawards\\nvawntie\\nvaws\\nveal\\nvealed\\nvealer\\nvealers\\nvealier\\nvealiest\\nvealing\\nveals\\nvealy\\nvector\\nvectored\\nvectoring\\nvectors\\nvedalia\\nvedalias\\nvedette\\nvedettes\\nvee\\nveena\\nveenas\\nveep\\nveepee\\nveepees\\nveeps\\nveer\\nveered\\nveeries\\nveering\\nveers\\nveery\\nvees\\nveg\\nvegan\\nveganism\\nveganisms\\nvegans\\nvegetable\\nvegetables\\nvegetal\\nvegetant\\nvegetarian\\nvegetarianism\\nvegetarianisms\\nvegetarians\\nvegetate\\nvegetated\\nvegetates\\nvegetating\\nvegetation\\nvegetational\\nvegetations\\nvegete\\nvegetist\\nvegetists\\nvegetive\\nvehemence\\nvehemences\\nvehement\\nvehemently\\nvehicle\\nvehicles\\nvehicular\\nveil\\nveiled\\nveiledly\\nveiler\\nveilers\\nveiling\\nveilings\\nveillike\\nveils\\nvein\\nveinal\\nveined\\nveiner\\nveiners\\nveinier\\nveiniest\\nveining\\nveinings\\nveinless\\nveinlet\\nveinlets\\nveinlike\\nveins\\nveinule\\nveinules\\nveinulet\\nveinulets\\nveiny\\nvela\\nvelamen\\nvelamina\\nvelar\\nvelaria\\nvelarium\\nvelarize\\nvelarized\\nvelarizes\\nvelarizing\\nvelars\\nvelate\\nveld\\nvelds\\nveldt\\nveldts\\nveliger\\nveligers\\nvelites\\nvelleities\\nvelleity\\nvellum\\nvellums\\nveloce\\nvelocities\\nvelocity\\nvelour\\nvelours\\nveloute\\nveloutes\\nvelum\\nvelure\\nvelured\\nvelures\\nveluring\\nvelveret\\nvelverets\\nvelvet\\nvelveted\\nvelvets\\nvelvety\\nvena\\nvenae\\nvenal\\nvenalities\\nvenality\\nvenally\\nvenatic\\nvenation\\nvenations\\nvend\\nvendable\\nvendace\\nvendaces\\nvended\\nvendee\\nvendees\\nvender\\nvenders\\nvendetta\\nvendettas\\nvendible\\nvendibles\\nvendibly\\nvending\\nvendor\\nvendors\\nvends\\nvendue\\nvendues\\nveneer\\nveneered\\nveneerer\\nveneerers\\nveneering\\nveneers\\nvenenate\\nvenenated\\nvenenates\\nvenenating\\nvenenose\\nvenerable\\nvenerate\\nvenerated\\nvenerates\\nvenerating\\nveneration\\nvenerations\\nvenereal\\nveneries\\nvenery\\nvenetian\\nvenetians\\nvenge\\nvengeance\\nvengeances\\nvenged\\nvengeful\\nvengefully\\nvenges\\nvenging\\nvenial\\nvenially\\nvenin\\nvenine\\nvenines\\nvenins\\nvenire\\nvenires\\nvenison\\nvenisons\\nvenom\\nvenomed\\nvenomer\\nvenomers\\nvenoming\\nvenomous\\nvenoms\\nvenose\\nvenosities\\nvenosity\\nvenous\\nvenously\\nvent\\nventage\\nventages\\nventail\\nventails\\nvented\\nventer\\nventers\\nventilate\\nventilated\\nventilates\\nventilating\\nventilation\\nventilations\\nventilator\\nventilators\\nventing\\nventless\\nventral\\nventrals\\nventricle\\nventricles\\nventriloquism\\nventriloquisms\\nventriloquist\\nventriloquists\\nventriloquy\\nventriloquys\\nvents\\nventure\\nventured\\nventurer\\nventurers\\nventures\\nventuresome\\nventuresomely\\nventuresomeness\\nventuresomenesses\\nventuri\\nventuring\\nventuris\\nvenue\\nvenues\\nvenular\\nvenule\\nvenules\\nvenulose\\nvenulous\\nvera\\nveracious\\nveracities\\nveracity\\nveranda\\nverandah\\nverandahs\\nverandas\\nveratria\\nveratrias\\nveratrin\\nveratrins\\nveratrum\\nveratrums\\nverb\\nverbal\\nverbalization\\nverbalizations\\nverbalize\\nverbalized\\nverbalizes\\nverbalizing\\nverbally\\nverbals\\nverbatim\\nverbena\\nverbenas\\nverbiage\\nverbiages\\nverbid\\nverbids\\nverbified\\nverbifies\\nverbify\\nverbifying\\nverbile\\nverbiles\\nverbless\\nverbose\\nverbosities\\nverbosity\\nverboten\\nverbs\\nverdancies\\nverdancy\\nverdant\\nverderer\\nverderers\\nverderor\\nverderors\\nverdict\\nverdicts\\nverdin\\nverdins\\nverditer\\nverditers\\nverdure\\nverdured\\nverdures\\nverecund\\nverge\\nverged\\nvergence\\nvergences\\nverger\\nvergers\\nverges\\nverging\\nverglas\\nverglases\\nveridic\\nverier\\nveriest\\nverifiable\\nverification\\nverifications\\nverified\\nverifier\\nverifiers\\nverifies\\nverify\\nverifying\\nverily\\nverism\\nverismo\\nverismos\\nverisms\\nverist\\nveristic\\nverists\\nveritable\\nveritably\\nveritas\\nveritates\\nverities\\nverity\\nverjuice\\nverjuices\\nvermeil\\nvermeils\\nvermes\\nvermian\\nvermicelli\\nvermicellis\\nvermin\\nvermis\\nvermoulu\\nvermouth\\nvermouths\\nvermuth\\nvermuths\\nvernacle\\nvernacles\\nvernacular\\nvernaculars\\nvernal\\nvernally\\nvernicle\\nvernicles\\nvernier\\nverniers\\nvernix\\nvernixes\\nveronica\\nveronicas\\nverruca\\nverrucae\\nversal\\nversant\\nversants\\nversatile\\nversatilities\\nversatility\\nverse\\nversed\\nverseman\\nversemen\\nverser\\nversers\\nverses\\nverset\\nversets\\nversicle\\nversicles\\nversified\\nversifies\\nversify\\nversifying\\nversine\\nversines\\nversing\\nversion\\nversions\\nverso\\nversos\\nverst\\nverste\\nverstes\\nversts\\nversus\\nvert\\nvertebra\\nvertebrae\\nvertebral\\nvertebras\\nvertebrate\\nvertebrates\\nvertex\\nvertexes\\nvertical\\nvertically\\nverticalness\\nverticalnesses\\nverticals\\nvertices\\nverticil\\nverticils\\nvertigines\\nvertigo\\nvertigoes\\nvertigos\\nverts\\nvertu\\nvertus\\nvervain\\nvervains\\nverve\\nverves\\nvervet\\nvervets\\nvery\\nvesica\\nvesicae\\nvesical\\nvesicant\\nvesicants\\nvesicate\\nvesicated\\nvesicates\\nvesicating\\nvesicle\\nvesicles\\nvesicula\\nvesiculae\\nvesicular\\nvesigia\\nvesper\\nvesperal\\nvesperals\\nvespers\\nvespiaries\\nvespiary\\nvespid\\nvespids\\nvespine\\nvessel\\nvesseled\\nvessels\\nvest\\nvesta\\nvestal\\nvestally\\nvestals\\nvestas\\nvested\\nvestee\\nvestees\\nvestiaries\\nvestiary\\nvestibular\\nvestibule\\nvestibules\\nvestige\\nvestiges\\nvestigial\\nvestigially\\nvesting\\nvestings\\nvestless\\nvestlike\\nvestment\\nvestments\\nvestral\\nvestries\\nvestry\\nvests\\nvestural\\nvesture\\nvestured\\nvestures\\nvesturing\\nvesuvian\\nvesuvians\\nvet\\nvetch\\nvetches\\nveteran\\nveterans\\nveterinarian\\nveterinarians\\nveterinary\\nvetiver\\nvetivers\\nveto\\nvetoed\\nvetoer\\nvetoers\\nvetoes\\nvetoing\\nvets\\nvetted\\nvetting\\nvex\\nvexation\\nvexations\\nvexatious\\nvexed\\nvexedly\\nvexer\\nvexers\\nvexes\\nvexil\\nvexilla\\nvexillar\\nvexillum\\nvexils\\nvexing\\nvexingly\\nvext\\nvia\\nviabilities\\nviability\\nviable\\nviably\\nviaduct\\nviaducts\\nvial\\nvialed\\nvialing\\nvialled\\nvialling\\nvials\\nviand\\nviands\\nviatic\\nviatica\\nviatical\\nviaticum\\nviaticums\\nviator\\nviatores\\nviators\\nvibes\\nvibioid\\nvibist\\nvibists\\nvibrance\\nvibrances\\nvibrancies\\nvibrancy\\nvibrant\\nvibrants\\nvibrate\\nvibrated\\nvibrates\\nvibrating\\nvibration\\nvibrations\\nvibrato\\nvibrator\\nvibrators\\nvibratory\\nvibratos\\nvibrio\\nvibrion\\nvibrions\\nvibrios\\nvibrissa\\nvibrissae\\nviburnum\\nviburnums\\nvicar\\nvicarage\\nvicarages\\nvicarate\\nvicarates\\nvicarial\\nvicariate\\nvicariates\\nvicarious\\nvicariously\\nvicariousness\\nvicariousnesses\\nvicarly\\nvicars\\nvice\\nviced\\nviceless\\nvicenary\\nviceroy\\nviceroys\\nvices\\nvichies\\nvichy\\nvicinage\\nvicinages\\nvicinal\\nvicing\\nvicinities\\nvicinity\\nvicious\\nviciously\\nviciousness\\nviciousnesses\\nvicissitude\\nvicissitudes\\nvicomte\\nvicomtes\\nvictim\\nvictimization\\nvictimizations\\nvictimize\\nvictimized\\nvictimizer\\nvictimizers\\nvictimizes\\nvictimizing\\nvictims\\nvictor\\nvictoria\\nvictorias\\nvictories\\nvictorious\\nvictoriously\\nvictors\\nvictory\\nvictress\\nvictresses\\nvictual\\nvictualed\\nvictualing\\nvictualled\\nvictualling\\nvictuals\\nvicugna\\nvicugnas\\nvicuna\\nvicunas\\nvide\\nvideo\\nvideos\\nvideotape\\nvideotaped\\nvideotapes\\nvideotaping\\nvidette\\nvidettes\\nvidicon\\nvidicons\\nviduities\\nviduity\\nvie\\nvied\\nvier\\nviers\\nvies\\nview\\nviewable\\nviewed\\nviewer\\nviewers\\nviewier\\nviewiest\\nviewing\\nviewings\\nviewless\\nviewpoint\\nviewpoints\\nviews\\nviewy\\nvigil\\nvigilance\\nvigilances\\nvigilant\\nvigilante\\nvigilantes\\nvigilantly\\nvigils\\nvignette\\nvignetted\\nvignettes\\nvignetting\\nvigor\\nvigorish\\nvigorishes\\nvigoroso\\nvigorous\\nvigorously\\nvigorousness\\nvigorousnesses\\nvigors\\nvigour\\nvigours\\nviking\\nvikings\\nvilayet\\nvilayets\\nvile\\nvilely\\nvileness\\nvilenesses\\nviler\\nvilest\\nvilification\\nvilifications\\nvilified\\nvilifier\\nvilifiers\\nvilifies\\nvilify\\nvilifying\\nvilipend\\nvilipended\\nvilipending\\nvilipends\\nvill\\nvilla\\nvilladom\\nvilladoms\\nvillae\\nvillage\\nvillager\\nvillagers\\nvillages\\nvillain\\nvillainies\\nvillains\\nvillainy\\nvillas\\nvillatic\\nvillein\\nvilleins\\nvilli\\nvillianess\\nvillianesses\\nvillianous\\nvillianously\\nvillianousness\\nvillianousnesses\\nvillose\\nvillous\\nvills\\nvillus\\nvim\\nvimen\\nvimina\\nviminal\\nvimpa\\nvims\\nvin\\nvina\\nvinal\\nvinals\\nvinas\\nvinasse\\nvinasses\\nvinca\\nvincas\\nvincible\\nvincristine\\nvincristines\\nvincula\\nvinculum\\nvinculums\\nvindesine\\nvindicate\\nvindicated\\nvindicates\\nvindicating\\nvindication\\nvindications\\nvindicator\\nvindicators\\nvindictive\\nvindictively\\nvindictiveness\\nvindictivenesses\\nvine\\nvineal\\nvined\\nvinegar\\nvinegars\\nvinegary\\nvineries\\nvinery\\nvines\\nvineyard\\nvineyards\\nvinic\\nvinier\\nviniest\\nvinifera\\nviniferas\\nvining\\nvino\\nvinos\\nvinosities\\nvinosity\\nvinous\\nvinously\\nvins\\nvintage\\nvintager\\nvintagers\\nvintages\\nvintner\\nvintners\\nviny\\nvinyl\\nvinylic\\nvinyls\\nviol\\nviola\\nviolable\\nviolably\\nviolas\\nviolate\\nviolated\\nviolater\\nviolaters\\nviolates\\nviolating\\nviolation\\nviolations\\nviolator\\nviolators\\nviolence\\nviolences\\nviolent\\nviolently\\nviolet\\nviolets\\nviolin\\nviolinist\\nviolinists\\nviolins\\nviolist\\nviolists\\nviolone\\nviolones\\nviols\\nviomycin\\nviomycins\\nviper\\nviperine\\nviperish\\nviperous\\nvipers\\nvirago\\nviragoes\\nviragos\\nviral\\nvirally\\nvirelai\\nvirelais\\nvirelay\\nvirelays\\nviremia\\nviremias\\nviremic\\nvireo\\nvireos\\nvires\\nvirga\\nvirgas\\nvirgate\\nvirgates\\nvirgin\\nvirginal\\nvirginally\\nvirginals\\nvirgins\\nvirgule\\nvirgules\\nviricide\\nviricides\\nvirid\\nviridian\\nviridians\\nviridities\\nviridity\\nvirile\\nvirilism\\nvirilisms\\nvirilities\\nvirility\\nvirion\\nvirions\\nvirl\\nvirls\\nvirologies\\nvirology\\nviroses\\nvirosis\\nvirtu\\nvirtual\\nvirtually\\nvirtue\\nvirtues\\nvirtuosa\\nvirtuosas\\nvirtuose\\nvirtuosi\\nvirtuosities\\nvirtuosity\\nvirtuoso\\nvirtuosos\\nvirtuous\\nvirtuously\\nvirtus\\nvirucide\\nvirucides\\nvirulence\\nvirulences\\nvirulencies\\nvirulency\\nvirulent\\nvirulently\\nvirus\\nviruses\\nvis\\nvisa\\nvisaed\\nvisage\\nvisaged\\nvisages\\nvisaing\\nvisard\\nvisards\\nvisas\\nviscacha\\nviscachas\\nviscera\\nvisceral\\nviscerally\\nviscid\\nviscidities\\nviscidity\\nviscidly\\nviscoid\\nviscose\\nviscoses\\nviscount\\nviscountess\\nviscountesses\\nviscounts\\nviscous\\nviscus\\nvise\\nvised\\nviseed\\nviseing\\nviselike\\nvises\\nvisibilities\\nvisibility\\nvisible\\nvisibly\\nvising\\nvision\\nvisional\\nvisionaries\\nvisionary\\nvisioned\\nvisioning\\nvisions\\nvisit\\nvisitable\\nvisitant\\nvisitants\\nvisitation\\nvisitations\\nvisited\\nvisiter\\nvisiters\\nvisiting\\nvisitor\\nvisitors\\nvisits\\nvisive\\nvisor\\nvisored\\nvisoring\\nvisors\\nvista\\nvistaed\\nvistas\\nvisual\\nvisualization\\nvisualizations\\nvisualize\\nvisualized\\nvisualizer\\nvisualizers\\nvisualizes\\nvisualizing\\nvisually\\nvita\\nvitae\\nvital\\nvitalise\\nvitalised\\nvitalises\\nvitalising\\nvitalism\\nvitalisms\\nvitalist\\nvitalists\\nvitalities\\nvitality\\nvitalize\\nvitalized\\nvitalizes\\nvitalizing\\nvitally\\nvitals\\nvitamer\\nvitamers\\nvitamin\\nvitamine\\nvitamines\\nvitamins\\nvitellin\\nvitellins\\nvitellus\\nvitelluses\\nvitesse\\nvitesses\\nvitiable\\nvitiate\\nvitiated\\nvitiates\\nvitiating\\nvitiation\\nvitiations\\nvitiator\\nvitiators\\nvitiligo\\nvitiligos\\nvitreous\\nvitric\\nvitrification\\nvitrifications\\nvitrified\\nvitrifies\\nvitrify\\nvitrifying\\nvitrine\\nvitrines\\nvitriol\\nvitrioled\\nvitriolic\\nvitrioling\\nvitriolled\\nvitriolling\\nvitriols\\nvitta\\nvittae\\nvittate\\nvittle\\nvittled\\nvittles\\nvittling\\nvituline\\nvituperate\\nvituperated\\nvituperates\\nvituperating\\nvituperation\\nvituperations\\nvituperative\\nvituperatively\\nviva\\nvivace\\nvivacious\\nvivaciously\\nvivaciousness\\nvivaciousnesses\\nvivacities\\nvivacity\\nvivaria\\nvivaries\\nvivarium\\nvivariums\\nvivary\\nvivas\\nvive\\nviverrid\\nviverrids\\nvivers\\nvivid\\nvivider\\nvividest\\nvividly\\nvividness\\nvividnesses\\nvivific\\nvivified\\nvivifier\\nvivifiers\\nvivifies\\nvivify\\nvivifying\\nvivipara\\nvivisect\\nvivisected\\nvivisecting\\nvivisection\\nvivisections\\nvivisects\\nvixen\\nvixenish\\nvixenly\\nvixens\\nvizard\\nvizarded\\nvizards\\nvizcacha\\nvizcachas\\nvizier\\nviziers\\nvizir\\nvizirate\\nvizirates\\nvizirial\\nvizirs\\nvizor\\nvizored\\nvizoring\\nvizors\\nvizsla\\nvizslas\\nvocable\\nvocables\\nvocably\\nvocabularies\\nvocabulary\\nvocal\\nvocalic\\nvocalics\\nvocalise\\nvocalised\\nvocalises\\nvocalising\\nvocalism\\nvocalisms\\nvocalist\\nvocalists\\nvocalities\\nvocality\\nvocalize\\nvocalized\\nvocalizes\\nvocalizing\\nvocally\\nvocals\\nvocation\\nvocational\\nvocations\\nvocative\\nvocatives\\nvoces\\nvociferous\\nvociferously\\nvocoder\\nvocoders\\nvoder\\nvodka\\nvodkas\\nvodum\\nvodums\\nvodun\\nvoe\\nvoes\\nvogie\\nvogue\\nvogues\\nvoguish\\nvoice\\nvoiced\\nvoiceful\\nvoicer\\nvoicers\\nvoices\\nvoicing\\nvoid\\nvoidable\\nvoidance\\nvoidances\\nvoided\\nvoider\\nvoiders\\nvoiding\\nvoidness\\nvoidnesses\\nvoids\\nvoile\\nvoiles\\nvolant\\nvolante\\nvolar\\nvolatile\\nvolatiles\\nvolatilities\\nvolatility\\nvolatilize\\nvolatilized\\nvolatilizes\\nvolatilizing\\nvolcanic\\nvolcanics\\nvolcano\\nvolcanoes\\nvolcanos\\nvole\\nvoled\\nvoleries\\nvolery\\nvoles\\nvoling\\nvolitant\\nvolition\\nvolitional\\nvolitions\\nvolitive\\nvolley\\nvolleyball\\nvolleyballs\\nvolleyed\\nvolleyer\\nvolleyers\\nvolleying\\nvolleys\\nvolost\\nvolosts\\nvolplane\\nvolplaned\\nvolplanes\\nvolplaning\\nvolt\\nvolta\\nvoltage\\nvoltages\\nvoltaic\\nvoltaism\\nvoltaisms\\nvolte\\nvoltes\\nvolti\\nvolts\\nvolubilities\\nvolubility\\nvoluble\\nvolubly\\nvolume\\nvolumed\\nvolumes\\nvoluming\\nvoluminous\\nvoluntarily\\nvoluntary\\nvolunteer\\nvolunteered\\nvolunteering\\nvolunteers\\nvoluptuous\\nvoluptuously\\nvoluptuousness\\nvoluptuousnesses\\nvolute\\nvoluted\\nvolutes\\nvolutin\\nvolutins\\nvolution\\nvolutions\\nvolva\\nvolvas\\nvolvate\\nvolvox\\nvolvoxes\\nvolvuli\\nvolvulus\\nvolvuluses\\nvomer\\nvomerine\\nvomers\\nvomica\\nvomicae\\nvomit\\nvomited\\nvomiter\\nvomiters\\nvomiting\\nvomitive\\nvomitives\\nvomito\\nvomitories\\nvomitory\\nvomitos\\nvomitous\\nvomits\\nvomitus\\nvomituses\\nvon\\nvoodoo\\nvoodooed\\nvoodooing\\nvoodooism\\nvoodooisms\\nvoodoos\\nvoracious\\nvoraciously\\nvoraciousness\\nvoraciousnesses\\nvoracities\\nvoracity\\nvorlage\\nvorlages\\nvortex\\nvortexes\\nvortical\\nvortices\\nvotable\\nvotaress\\nvotaresses\\nvotaries\\nvotarist\\nvotarists\\nvotary\\nvote\\nvoteable\\nvoted\\nvoteless\\nvoter\\nvoters\\nvotes\\nvoting\\nvotive\\nvotively\\nvotress\\nvotresses\\nvouch\\nvouched\\nvouchee\\nvouchees\\nvoucher\\nvouchered\\nvouchering\\nvouchers\\nvouches\\nvouching\\nvouchsafe\\nvouchsafed\\nvouchsafes\\nvouchsafing\\nvoussoir\\nvoussoirs\\nvow\\nvowed\\nvowel\\nvowelize\\nvowelized\\nvowelizes\\nvowelizing\\nvowels\\nvower\\nvowers\\nvowing\\nvowless\\nvows\\nvox\\nvoyage\\nvoyaged\\nvoyager\\nvoyagers\\nvoyages\\nvoyageur\\nvoyageurs\\nvoyaging\\nvoyeur\\nvoyeurs\\nvroom\\nvroomed\\nvrooming\\nvrooms\\nvrouw\\nvrouws\\nvrow\\nvrows\\nvug\\nvugg\\nvuggs\\nvuggy\\nvugh\\nvughs\\nvugs\\nvulcanic\\nvulcanization\\nvulcanizations\\nvulcanize\\nvulcanized\\nvulcanizes\\nvulcanizing\\nvulgar\\nvulgarer\\nvulgarest\\nvulgarism\\nvulgarisms\\nvulgarities\\nvulgarity\\nvulgarize\\nvulgarized\\nvulgarizes\\nvulgarizing\\nvulgarly\\nvulgars\\nvulgate\\nvulgates\\nvulgo\\nvulgus\\nvulguses\\nvulnerabilities\\nvulnerability\\nvulnerable\\nvulnerably\\nvulpine\\nvulture\\nvultures\\nvulva\\nvulvae\\nvulval\\nvulvar\\nvulvas\\nvulvate\\nvulvitis\\nvulvitises\\nvying\\nvyingly\\nwab\\nwabble\\nwabbled\\nwabbler\\nwabblers\\nwabbles\\nwabblier\\nwabbliest\\nwabbling\\nwabbly\\nwabs\\nwack\\nwacke\\nwackes\\nwackier\\nwackiest\\nwackily\\nwacks\\nwacky\\nwad\\nwadable\\nwadded\\nwadder\\nwadders\\nwaddie\\nwaddied\\nwaddies\\nwadding\\nwaddings\\nwaddle\\nwaddled\\nwaddler\\nwaddlers\\nwaddles\\nwaddling\\nwaddly\\nwaddy\\nwaddying\\nwade\\nwadeable\\nwaded\\nwader\\nwaders\\nwades\\nwadi\\nwadies\\nwading\\nwadis\\nwadmaal\\nwadmaals\\nwadmal\\nwadmals\\nwadmel\\nwadmels\\nwadmol\\nwadmoll\\nwadmolls\\nwadmols\\nwads\\nwadset\\nwadsets\\nwadsetted\\nwadsetting\\nwady\\nwae\\nwaefu\\nwaeful\\nwaeness\\nwaenesses\\nwaes\\nwaesuck\\nwaesucks\\nwafer\\nwafered\\nwafering\\nwafers\\nwafery\\nwaff\\nwaffed\\nwaffie\\nwaffies\\nwaffing\\nwaffle\\nwaffled\\nwaffles\\nwaffling\\nwaffs\\nwaft\\nwaftage\\nwaftages\\nwafted\\nwafter\\nwafters\\nwafting\\nwafts\\nwafture\\nwaftures\\nwag\\nwage\\nwaged\\nwageless\\nwager\\nwagered\\nwagerer\\nwagerers\\nwagering\\nwagers\\nwages\\nwagged\\nwagger\\nwaggeries\\nwaggers\\nwaggery\\nwagging\\nwaggish\\nwaggle\\nwaggled\\nwaggles\\nwaggling\\nwaggly\\nwaggon\\nwaggoned\\nwaggoner\\nwaggoners\\nwaggoning\\nwaggons\\nwaging\\nwagon\\nwagonage\\nwagonages\\nwagoned\\nwagoner\\nwagoners\\nwagoning\\nwagons\\nwags\\nwagsome\\nwagtail\\nwagtails\\nwahconda\\nwahcondas\\nwahine\\nwahines\\nwahoo\\nwahoos\\nwaif\\nwaifed\\nwaifing\\nwaifs\\nwail\\nwailed\\nwailer\\nwailers\\nwailful\\nwailing\\nwails\\nwailsome\\nwain\\nwains\\nwainscot\\nwainscoted\\nwainscoting\\nwainscots\\nwainscotted\\nwainscotting\\nwair\\nwaired\\nwairing\\nwairs\\nwaist\\nwaisted\\nwaister\\nwaisters\\nwaisting\\nwaistings\\nwaistline\\nwaistlines\\nwaists\\nwait\\nwaited\\nwaiter\\nwaiters\\nwaiting\\nwaitings\\nwaitress\\nwaitresses\\nwaits\\nwaive\\nwaived\\nwaiver\\nwaivers\\nwaives\\nwaiving\\nwakanda\\nwakandas\\nwake\\nwaked\\nwakeful\\nwakefulness\\nwakefulnesses\\nwakeless\\nwaken\\nwakened\\nwakener\\nwakeners\\nwakening\\nwakenings\\nwakens\\nwaker\\nwakerife\\nwakers\\nwakes\\nwakiki\\nwakikis\\nwaking\\nwale\\nwaled\\nwaler\\nwalers\\nwales\\nwalies\\nwaling\\nwalk\\nwalkable\\nwalkaway\\nwalkaways\\nwalked\\nwalker\\nwalkers\\nwalking\\nwalkings\\nwalkout\\nwalkouts\\nwalkover\\nwalkovers\\nwalks\\nwalkup\\nwalkups\\nwalkway\\nwalkways\\nwalkyrie\\nwalkyries\\nwall\\nwalla\\nwallabies\\nwallaby\\nwallah\\nwallahs\\nwallaroo\\nwallaroos\\nwallas\\nwalled\\nwallet\\nwallets\\nwalleye\\nwalleyed\\nwalleyes\\nwallflower\\nwallflowers\\nwallie\\nwallies\\nwalling\\nwallop\\nwalloped\\nwalloper\\nwallopers\\nwalloping\\nwallops\\nwallow\\nwallowed\\nwallower\\nwallowers\\nwallowing\\nwallows\\nwallpaper\\nwallpapered\\nwallpapering\\nwallpapers\\nwalls\\nwally\\nwalnut\\nwalnuts\\nwalrus\\nwalruses\\nwaltz\\nwaltzed\\nwaltzer\\nwaltzers\\nwaltzes\\nwaltzing\\nwaly\\nwamble\\nwambled\\nwambles\\nwamblier\\nwambliest\\nwambling\\nwambly\\nwame\\nwamefou\\nwamefous\\nwameful\\nwamefuls\\nwames\\nwammus\\nwammuses\\nwampish\\nwampished\\nwampishes\\nwampishing\\nwampum\\nwampums\\nwampus\\nwampuses\\nwamus\\nwamuses\\nwan\\nwand\\nwander\\nwandered\\nwanderer\\nwanderers\\nwandering\\nwanderlust\\nwanderlusts\\nwanderoo\\nwanderoos\\nwanders\\nwandle\\nwands\\nwane\\nwaned\\nwaner\\nwanes\\nwaney\\nwangan\\nwangans\\nwangle\\nwangled\\nwangler\\nwanglers\\nwangles\\nwangling\\nwangun\\nwanguns\\nwanier\\nwaniest\\nwanigan\\nwanigans\\nwaning\\nwanion\\nwanions\\nwanly\\nwanned\\nwanner\\nwanness\\nwannesses\\nwannest\\nwannigan\\nwannigans\\nwanning\\nwans\\nwant\\nwantage\\nwantages\\nwanted\\nwanter\\nwanters\\nwanting\\nwanton\\nwantoned\\nwantoner\\nwantoners\\nwantoning\\nwantonly\\nwantonness\\nwantonnesses\\nwantons\\nwants\\nwany\\nwap\\nwapiti\\nwapitis\\nwapped\\nwapping\\nwaps\\nwar\\nwarble\\nwarbled\\nwarbler\\nwarblers\\nwarbles\\nwarbling\\nwarcraft\\nwarcrafts\\nward\\nwarded\\nwarden\\nwardenries\\nwardenry\\nwardens\\nwarder\\nwarders\\nwarding\\nwardress\\nwardresses\\nwardrobe\\nwardrobes\\nwardroom\\nwardrooms\\nwards\\nwardship\\nwardships\\nware\\nwared\\nwarehouse\\nwarehoused\\nwarehouseman\\nwarehousemen\\nwarehouser\\nwarehousers\\nwarehouses\\nwarehousing\\nwarer\\nwareroom\\nwarerooms\\nwares\\nwarfare\\nwarfares\\nwarfarin\\nwarfarins\\nwarhead\\nwarheads\\nwarier\\nwariest\\nwarily\\nwariness\\nwarinesses\\nwaring\\nwarison\\nwarisons\\nwark\\nwarked\\nwarking\\nwarks\\nwarless\\nwarlike\\nwarlock\\nwarlocks\\nwarlord\\nwarlords\\nwarm\\nwarmaker\\nwarmakers\\nwarmed\\nwarmer\\nwarmers\\nwarmest\\nwarming\\nwarmish\\nwarmly\\nwarmness\\nwarmnesses\\nwarmonger\\nwarmongers\\nwarmouth\\nwarmouths\\nwarms\\nwarmth\\nwarmths\\nwarmup\\nwarmups\\nwarn\\nwarned\\nwarner\\nwarners\\nwarning\\nwarnings\\nwarns\\nwarp\\nwarpage\\nwarpages\\nwarpath\\nwarpaths\\nwarped\\nwarper\\nwarpers\\nwarping\\nwarplane\\nwarplanes\\nwarpower\\nwarpowers\\nwarps\\nwarpwise\\nwarragal\\nwarragals\\nwarrant\\nwarranted\\nwarranties\\nwarranting\\nwarrants\\nwarranty\\nwarred\\nwarren\\nwarrener\\nwarreners\\nwarrens\\nwarrigal\\nwarrigals\\nwarring\\nwarrior\\nwarriors\\nwars\\nwarsaw\\nwarsaws\\nwarship\\nwarships\\nwarsle\\nwarsled\\nwarsler\\nwarslers\\nwarsles\\nwarsling\\nwarstle\\nwarstled\\nwarstler\\nwarstlers\\nwarstles\\nwarstling\\nwart\\nwarted\\nwarthog\\nwarthogs\\nwartier\\nwartiest\\nwartime\\nwartimes\\nwartlike\\nwarts\\nwarty\\nwarwork\\nwarworks\\nwarworn\\nwary\\nwas\\nwash\\nwashable\\nwashboard\\nwashboards\\nwashbowl\\nwashbowls\\nwashcloth\\nwashcloths\\nwashday\\nwashdays\\nwashed\\nwasher\\nwashers\\nwashes\\nwashier\\nwashiest\\nwashing\\nwashings\\nwashington\\nwashout\\nwashouts\\nwashrag\\nwashrags\\nwashroom\\nwashrooms\\nwashtub\\nwashtubs\\nwashy\\nwasp\\nwaspier\\nwaspiest\\nwaspily\\nwaspish\\nwasplike\\nwasps\\nwaspy\\nwassail\\nwassailed\\nwassailing\\nwassails\\nwast\\nwastable\\nwastage\\nwastages\\nwaste\\nwastebasket\\nwastebaskets\\nwasted\\nwasteful\\nwastefully\\nwastefulness\\nwastefulnesses\\nwasteland\\nwastelands\\nwastelot\\nwastelots\\nwaster\\nwasterie\\nwasteries\\nwasters\\nwastery\\nwastes\\nwasteway\\nwasteways\\nwasting\\nwastrel\\nwastrels\\nwastrie\\nwastries\\nwastry\\nwasts\\nwat\\nwatap\\nwatape\\nwatapes\\nwataps\\nwatch\\nwatchcries\\nwatchcry\\nwatchdog\\nwatchdogged\\nwatchdogging\\nwatchdogs\\nwatched\\nwatcher\\nwatchers\\nwatches\\nwatcheye\\nwatcheyes\\nwatchful\\nwatchfully\\nwatchfulness\\nwatchfulnesses\\nwatching\\nwatchman\\nwatchmen\\nwatchout\\nwatchouts\\nwater\\nwaterage\\nwaterages\\nwaterbed\\nwaterbeds\\nwatercolor\\nwatercolors\\nwatercourse\\nwatercourses\\nwatercress\\nwatercresses\\nwaterdog\\nwaterdogs\\nwatered\\nwaterer\\nwaterers\\nwaterfall\\nwaterfalls\\nwaterfowl\\nwaterfowls\\nwaterier\\nwateriest\\nwaterily\\nwatering\\nwaterings\\nwaterish\\nwaterlog\\nwaterlogged\\nwaterlogging\\nwaterlogs\\nwaterloo\\nwaterloos\\nwaterman\\nwatermark\\nwatermarked\\nwatermarking\\nwatermarks\\nwatermelon\\nwatermelons\\nwatermen\\nwaterpower\\nwaterpowers\\nwaterproof\\nwaterproofed\\nwaterproofing\\nwaterproofings\\nwaterproofs\\nwaters\\nwaterspout\\nwaterspouts\\nwatertight\\nwaterway\\nwaterways\\nwaterworks\\nwatery\\nwats\\nwatt\\nwattage\\nwattages\\nwattape\\nwattapes\\nwatter\\nwattest\\nwatthour\\nwatthours\\nwattle\\nwattled\\nwattles\\nwattless\\nwattling\\nwatts\\nwaucht\\nwauchted\\nwauchting\\nwauchts\\nwaugh\\nwaught\\nwaughted\\nwaughting\\nwaughts\\nwauk\\nwauked\\nwauking\\nwauks\\nwaul\\nwauled\\nwauling\\nwauls\\nwaur\\nwave\\nwaveband\\nwavebands\\nwaved\\nwaveform\\nwaveforms\\nwavelength\\nwavelengths\\nwaveless\\nwavelet\\nwavelets\\nwavelike\\nwaveoff\\nwaveoffs\\nwaver\\nwavered\\nwaverer\\nwaverers\\nwavering\\nwaveringly\\nwavers\\nwavery\\nwaves\\nwavey\\nwaveys\\nwavier\\nwavies\\nwaviest\\nwavily\\nwaviness\\nwavinesses\\nwaving\\nwavy\\nwaw\\nwawl\\nwawled\\nwawling\\nwawls\\nwaws\\nwax\\nwaxberries\\nwaxberry\\nwaxbill\\nwaxbills\\nwaxed\\nwaxen\\nwaxer\\nwaxers\\nwaxes\\nwaxier\\nwaxiest\\nwaxily\\nwaxiness\\nwaxinesses\\nwaxing\\nwaxings\\nwaxlike\\nwaxplant\\nwaxplants\\nwaxweed\\nwaxweeds\\nwaxwing\\nwaxwings\\nwaxwork\\nwaxworks\\nwaxworm\\nwaxworms\\nwaxy\\nway\\nwaybill\\nwaybills\\nwayfarer\\nwayfarers\\nwayfaring\\nwaygoing\\nwaygoings\\nwaylaid\\nwaylay\\nwaylayer\\nwaylayers\\nwaylaying\\nwaylays\\nwayless\\nways\\nwayside\\nwaysides\\nwayward\\nwayworn\\nwe\\nweak\\nweaken\\nweakened\\nweakener\\nweakeners\\nweakening\\nweakens\\nweaker\\nweakest\\nweakfish\\nweakfishes\\nweakish\\nweaklier\\nweakliest\\nweakling\\nweaklings\\nweakly\\nweakness\\nweaknesses\\nweal\\nweald\\nwealds\\nweals\\nwealth\\nwealthier\\nwealthiest\\nwealths\\nwealthy\\nwean\\nweaned\\nweaner\\nweaners\\nweaning\\nweanling\\nweanlings\\nweans\\nweapon\\nweaponed\\nweaponing\\nweaponries\\nweaponry\\nweapons\\nwear\\nwearable\\nwearables\\nwearer\\nwearers\\nwearied\\nwearier\\nwearies\\nweariest\\nweariful\\nwearily\\nweariness\\nwearinesses\\nwearing\\nwearish\\nwearisome\\nwears\\nweary\\nwearying\\nweasand\\nweasands\\nweasel\\nweaseled\\nweaseling\\nweasels\\nweason\\nweasons\\nweather\\nweathered\\nweathering\\nweatherman\\nweathermen\\nweatherproof\\nweatherproofed\\nweatherproofing\\nweatherproofs\\nweathers\\nweave\\nweaved\\nweaver\\nweavers\\nweaves\\nweaving\\nweazand\\nweazands\\nweb\\nwebbed\\nwebbier\\nwebbiest\\nwebbing\\nwebbings\\nwebby\\nweber\\nwebers\\nwebfed\\nwebfeet\\nwebfoot\\nwebless\\nweblike\\nwebs\\nwebster\\nwebsters\\nwebworm\\nwebworms\\nwecht\\nwechts\\nwed\\nwedded\\nwedder\\nwedders\\nwedding\\nweddings\\nwedel\\nwedeled\\nwedeling\\nwedeln\\nwedelns\\nwedels\\nwedge\\nwedged\\nwedges\\nwedgie\\nwedgier\\nwedgies\\nwedgiest\\nwedging\\nwedgy\\nwedlock\\nwedlocks\\nwednesday\\nweds\\nwee\\nweed\\nweeded\\nweeder\\nweeders\\nweedier\\nweediest\\nweedily\\nweeding\\nweedless\\nweedlike\\nweeds\\nweedy\\nweek\\nweekday\\nweekdays\\nweekend\\nweekended\\nweekending\\nweekends\\nweeklies\\nweeklong\\nweekly\\nweeks\\nweel\\nween\\nweened\\nweenie\\nweenier\\nweenies\\nweeniest\\nweening\\nweens\\nweensier\\nweensiest\\nweensy\\nweeny\\nweep\\nweeper\\nweepers\\nweepier\\nweepiest\\nweeping\\nweeps\\nweepy\\nweer\\nwees\\nweest\\nweet\\nweeted\\nweeting\\nweets\\nweever\\nweevers\\nweevil\\nweeviled\\nweevilly\\nweevils\\nweevily\\nweewee\\nweeweed\\nweeweeing\\nweewees\\nweft\\nwefts\\nweftwise\\nweigela\\nweigelas\\nweigelia\\nweigelias\\nweigh\\nweighed\\nweigher\\nweighers\\nweighing\\nweighman\\nweighmen\\nweighs\\nweight\\nweighted\\nweighter\\nweighters\\nweightier\\nweightiest\\nweighting\\nweightless\\nweightlessness\\nweightlessnesses\\nweights\\nweighty\\nweiner\\nweiners\\nweir\\nweird\\nweirder\\nweirdest\\nweirdie\\nweirdies\\nweirdly\\nweirdness\\nweirdnesses\\nweirdo\\nweirdoes\\nweirdos\\nweirds\\nweirdy\\nweirs\\nweka\\nwekas\\nwelch\\nwelched\\nwelcher\\nwelchers\\nwelches\\nwelching\\nwelcome\\nwelcomed\\nwelcomer\\nwelcomers\\nwelcomes\\nwelcoming\\nweld\\nweldable\\nwelded\\nwelder\\nwelders\\nwelding\\nweldless\\nweldment\\nweldments\\nweldor\\nweldors\\nwelds\\nwelfare\\nwelfares\\nwelkin\\nwelkins\\nwell\\nwelladay\\nwelladays\\nwellaway\\nwellaways\\nwellborn\\nwellcurb\\nwellcurbs\\nwelldoer\\nwelldoers\\nwelled\\nwellesley\\nwellhead\\nwellheads\\nwellhole\\nwellholes\\nwelling\\nwellness\\nwellnesses\\nwells\\nwellsite\\nwellsites\\nwellspring\\nwellsprings\\nwelsh\\nwelshed\\nwelsher\\nwelshers\\nwelshes\\nwelshing\\nwelt\\nwelted\\nwelter\\nweltered\\nweltering\\nwelters\\nwelting\\nwelts\\nwen\\nwench\\nwenched\\nwencher\\nwenchers\\nwenches\\nwenching\\nwend\\nwended\\nwendigo\\nwendigos\\nwending\\nwends\\nwennier\\nwenniest\\nwennish\\nwenny\\nwens\\nwent\\nwept\\nwere\\nweregild\\nweregilds\\nwerewolf\\nwerewolves\\nwergeld\\nwergelds\\nwergelt\\nwergelts\\nwergild\\nwergilds\\nwert\\nwerwolf\\nwerwolves\\nweskit\\nweskits\\nwessand\\nwessands\\nwest\\nwester\\nwestered\\nwestering\\nwesterlies\\nwesterly\\nwestern\\nwesterns\\nwesters\\nwesting\\nwestings\\nwestmost\\nwests\\nwestward\\nwestwards\\nwet\\nwetback\\nwetbacks\\nwether\\nwethers\\nwetland\\nwetlands\\nwetly\\nwetness\\nwetnesses\\nwetproof\\nwets\\nwettable\\nwetted\\nwetter\\nwetters\\nwettest\\nwetting\\nwettings\\nwettish\\nwha\\nwhack\\nwhacked\\nwhacker\\nwhackers\\nwhackier\\nwhackiest\\nwhacking\\nwhacks\\nwhacky\\nwhale\\nwhalebone\\nwhalebones\\nwhaled\\nwhaleman\\nwhalemen\\nwhaler\\nwhalers\\nwhales\\nwhaling\\nwhalings\\nwham\\nwhammed\\nwhammies\\nwhamming\\nwhammy\\nwhams\\nwhang\\nwhanged\\nwhangee\\nwhangees\\nwhanging\\nwhangs\\nwhap\\nwhapped\\nwhapper\\nwhappers\\nwhapping\\nwhaps\\nwharf\\nwharfage\\nwharfages\\nwharfed\\nwharfing\\nwharfs\\nwharve\\nwharves\\nwhat\\nwhatever\\nwhatnot\\nwhatnots\\nwhats\\nwhatsoever\\nwhaup\\nwhaups\\nwheal\\nwheals\\nwheat\\nwheatear\\nwheatears\\nwheaten\\nwheats\\nwhee\\nwheedle\\nwheedled\\nwheedler\\nwheedlers\\nwheedles\\nwheedling\\nwheel\\nwheelbarrow\\nwheelbarrows\\nwheelbase\\nwheelbases\\nwheelchair\\nwheelchairs\\nwheeled\\nwheeler\\nwheelers\\nwheelie\\nwheelies\\nwheeling\\nwheelings\\nwheelless\\nwheelman\\nwheelmen\\nwheels\\nwheen\\nwheens\\nwheep\\nwheeped\\nwheeping\\nwheeple\\nwheepled\\nwheeples\\nwheepling\\nwheeps\\nwhees\\nwheeze\\nwheezed\\nwheezer\\nwheezers\\nwheezes\\nwheezier\\nwheeziest\\nwheezily\\nwheezing\\nwheezy\\nwhelk\\nwhelkier\\nwhelkiest\\nwhelks\\nwhelky\\nwhelm\\nwhelmed\\nwhelming\\nwhelms\\nwhelp\\nwhelped\\nwhelping\\nwhelps\\nwhen\\nwhenas\\nwhence\\nwhenever\\nwhens\\nwhere\\nwhereabouts\\nwhereas\\nwhereases\\nwhereat\\nwhereby\\nwherefore\\nwherein\\nwhereof\\nwhereon\\nwheres\\nwhereto\\nwhereupon\\nwherever\\nwherewithal\\nwherried\\nwherries\\nwherry\\nwherrying\\nwherve\\nwherves\\nwhet\\nwhether\\nwhets\\nwhetstone\\nwhetstones\\nwhetted\\nwhetter\\nwhetters\\nwhetting\\nwhew\\nwhews\\nwhey\\nwheyey\\nwheyface\\nwheyfaces\\nwheyish\\nwheys\\nwhich\\nwhichever\\nwhicker\\nwhickered\\nwhickering\\nwhickers\\nwhid\\nwhidah\\nwhidahs\\nwhidded\\nwhidding\\nwhids\\nwhiff\\nwhiffed\\nwhiffer\\nwhiffers\\nwhiffet\\nwhiffets\\nwhiffing\\nwhiffle\\nwhiffled\\nwhiffler\\nwhifflers\\nwhiffles\\nwhiffling\\nwhiffs\\nwhile\\nwhiled\\nwhiles\\nwhiling\\nwhilom\\nwhilst\\nwhim\\nwhimbrel\\nwhimbrels\\nwhimper\\nwhimpered\\nwhimpering\\nwhimpers\\nwhims\\nwhimsey\\nwhimseys\\nwhimsical\\nwhimsicalities\\nwhimsicality\\nwhimsically\\nwhimsied\\nwhimsies\\nwhimsy\\nwhin\\nwhinchat\\nwhinchats\\nwhine\\nwhined\\nwhiner\\nwhiners\\nwhines\\nwhiney\\nwhinier\\nwhiniest\\nwhining\\nwhinnied\\nwhinnier\\nwhinnies\\nwhinniest\\nwhinny\\nwhinnying\\nwhins\\nwhiny\\nwhip\\nwhipcord\\nwhipcords\\nwhiplash\\nwhiplashes\\nwhiplike\\nwhipped\\nwhipper\\nwhippers\\nwhippersnapper\\nwhippersnappers\\nwhippet\\nwhippets\\nwhippier\\nwhippiest\\nwhipping\\nwhippings\\nwhippoorwill\\nwhippoorwills\\nwhippy\\nwhipray\\nwhiprays\\nwhips\\nwhipsaw\\nwhipsawed\\nwhipsawing\\nwhipsawn\\nwhipsaws\\nwhipt\\nwhiptail\\nwhiptails\\nwhipworm\\nwhipworms\\nwhir\\nwhirl\\nwhirled\\nwhirler\\nwhirlers\\nwhirlier\\nwhirlies\\nwhirliest\\nwhirling\\nwhirlpool\\nwhirlpools\\nwhirls\\nwhirlwind\\nwhirlwinds\\nwhirly\\nwhirr\\nwhirred\\nwhirried\\nwhirries\\nwhirring\\nwhirrs\\nwhirry\\nwhirrying\\nwhirs\\nwhish\\nwhished\\nwhishes\\nwhishing\\nwhisht\\nwhishted\\nwhishting\\nwhishts\\nwhisk\\nwhisked\\nwhisker\\nwhiskered\\nwhiskers\\nwhiskery\\nwhiskey\\nwhiskeys\\nwhiskies\\nwhisking\\nwhisks\\nwhisky\\nwhisper\\nwhispered\\nwhispering\\nwhispers\\nwhispery\\nwhist\\nwhisted\\nwhisting\\nwhistle\\nwhistled\\nwhistler\\nwhistlers\\nwhistles\\nwhistling\\nwhists\\nwhit\\nwhite\\nwhitebait\\nwhitebaits\\nwhitecap\\nwhitecaps\\nwhited\\nwhitefish\\nwhitefishes\\nwhiteflies\\nwhitefly\\nwhitely\\nwhiten\\nwhitened\\nwhitener\\nwhiteners\\nwhiteness\\nwhitenesses\\nwhitening\\nwhitens\\nwhiteout\\nwhiteouts\\nwhiter\\nwhites\\nwhitest\\nwhitetail\\nwhitetails\\nwhitewash\\nwhitewashed\\nwhitewashes\\nwhitewashing\\nwhitey\\nwhiteys\\nwhither\\nwhities\\nwhiting\\nwhitings\\nwhitish\\nwhitlow\\nwhitlows\\nwhitrack\\nwhitracks\\nwhits\\nwhitter\\nwhitters\\nwhittle\\nwhittled\\nwhittler\\nwhittlers\\nwhittles\\nwhittling\\nwhittret\\nwhittrets\\nwhity\\nwhiz\\nwhizbang\\nwhizbangs\\nwhizz\\nwhizzed\\nwhizzer\\nwhizzers\\nwhizzes\\nwhizzing\\nwho\\nwhoa\\nwhoas\\nwhodunit\\nwhodunits\\nwhoever\\nwhole\\nwholehearted\\nwholeness\\nwholenesses\\nwholes\\nwholesale\\nwholesaled\\nwholesaler\\nwholesalers\\nwholesales\\nwholesaling\\nwholesome\\nwholesomeness\\nwholesomenesses\\nwholism\\nwholisms\\nwholly\\nwhom\\nwhomever\\nwhomp\\nwhomped\\nwhomping\\nwhomps\\nwhomso\\nwhoop\\nwhooped\\nwhoopee\\nwhoopees\\nwhooper\\nwhoopers\\nwhooping\\nwhoopla\\nwhooplas\\nwhoops\\nwhoosh\\nwhooshed\\nwhooshes\\nwhooshing\\nwhoosis\\nwhoosises\\nwhop\\nwhopped\\nwhopper\\nwhoppers\\nwhopping\\nwhops\\nwhore\\nwhored\\nwhoredom\\nwhoredoms\\nwhores\\nwhoreson\\nwhoresons\\nwhoring\\nwhorish\\nwhorl\\nwhorled\\nwhorls\\nwhort\\nwhortle\\nwhortles\\nwhorts\\nwhose\\nwhosever\\nwhosis\\nwhosises\\nwhoso\\nwhosoever\\nwhump\\nwhumped\\nwhumping\\nwhumps\\nwhy\\nwhydah\\nwhydahs\\nwhys\\nwich\\nwiches\\nwick\\nwickape\\nwickapes\\nwicked\\nwickeder\\nwickedest\\nwickedly\\nwickedness\\nwickednesses\\nwicker\\nwickers\\nwickerwork\\nwickerworks\\nwicket\\nwickets\\nwicking\\nwickings\\nwickiup\\nwickiups\\nwicks\\nwickyup\\nwickyups\\nwicopies\\nwicopy\\nwidder\\nwidders\\nwiddie\\nwiddies\\nwiddle\\nwiddled\\nwiddles\\nwiddling\\nwiddy\\nwide\\nwidely\\nwiden\\nwidened\\nwidener\\nwideners\\nwideness\\nwidenesses\\nwidening\\nwidens\\nwider\\nwides\\nwidespread\\nwidest\\nwidgeon\\nwidgeons\\nwidget\\nwidgets\\nwidish\\nwidow\\nwidowed\\nwidower\\nwidowers\\nwidowhood\\nwidowhoods\\nwidowing\\nwidows\\nwidth\\nwidths\\nwidthway\\nwield\\nwielded\\nwielder\\nwielders\\nwieldier\\nwieldiest\\nwielding\\nwields\\nwieldy\\nwiener\\nwieners\\nwienie\\nwienies\\nwife\\nwifed\\nwifedom\\nwifedoms\\nwifehood\\nwifehoods\\nwifeless\\nwifelier\\nwifeliest\\nwifelike\\nwifely\\nwifes\\nwifing\\nwig\\nwigan\\nwigans\\nwigeon\\nwigeons\\nwigged\\nwiggeries\\nwiggery\\nwigging\\nwiggings\\nwiggle\\nwiggled\\nwiggler\\nwigglers\\nwiggles\\nwigglier\\nwiggliest\\nwiggling\\nwiggly\\nwight\\nwights\\nwigless\\nwiglet\\nwiglets\\nwiglike\\nwigmaker\\nwigmakers\\nwigs\\nwigwag\\nwigwagged\\nwigwagging\\nwigwags\\nwigwam\\nwigwams\\nwikiup\\nwikiups\\nwilco\\nwild\\nwildcat\\nwildcats\\nwildcatted\\nwildcatting\\nwilder\\nwildered\\nwildering\\nwilderness\\nwildernesses\\nwilders\\nwildest\\nwildfire\\nwildfires\\nwildfowl\\nwildfowls\\nwilding\\nwildings\\nwildish\\nwildlife\\nwildling\\nwildlings\\nwildly\\nwildness\\nwildnesses\\nwilds\\nwildwood\\nwildwoods\\nwile\\nwiled\\nwiles\\nwilful\\nwilfully\\nwilier\\nwiliest\\nwilily\\nwiliness\\nwilinesses\\nwiling\\nwill\\nwillable\\nwilled\\nwiller\\nwillers\\nwillet\\nwillets\\nwillful\\nwillfully\\nwillied\\nwillies\\nwilling\\nwillinger\\nwillingest\\nwillingly\\nwillingness\\nwilliwau\\nwilliwaus\\nwilliwaw\\nwilliwaws\\nwillow\\nwillowed\\nwillower\\nwillowers\\nwillowier\\nwillowiest\\nwillowing\\nwillows\\nwillowy\\nwillpower\\nwillpowers\\nwills\\nwilly\\nwillyard\\nwillyart\\nwillying\\nwillywaw\\nwillywaws\\nwilt\\nwilted\\nwilting\\nwilts\\nwily\\nwimble\\nwimbled\\nwimbles\\nwimbling\\nwimple\\nwimpled\\nwimples\\nwimpling\\nwin\\nwince\\nwinced\\nwincer\\nwincers\\nwinces\\nwincey\\nwinceys\\nwinch\\nwinched\\nwincher\\nwinchers\\nwinches\\nwinching\\nwincing\\nwind\\nwindable\\nwindage\\nwindages\\nwindbag\\nwindbags\\nwindbreak\\nwindbreaks\\nwindburn\\nwindburned\\nwindburning\\nwindburns\\nwindburnt\\nwinded\\nwinder\\nwinders\\nwindfall\\nwindfalls\\nwindflaw\\nwindflaws\\nwindgall\\nwindgalls\\nwindier\\nwindiest\\nwindigo\\nwindigos\\nwindily\\nwinding\\nwindings\\nwindlass\\nwindlassed\\nwindlasses\\nwindlassing\\nwindle\\nwindled\\nwindles\\nwindless\\nwindling\\nwindlings\\nwindmill\\nwindmilled\\nwindmilling\\nwindmills\\nwindow\\nwindowed\\nwindowing\\nwindowless\\nwindows\\nwindpipe\\nwindpipes\\nwindrow\\nwindrowed\\nwindrowing\\nwindrows\\nwinds\\nwindshield\\nwindshields\\nwindsock\\nwindsocks\\nwindup\\nwindups\\nwindward\\nwindwards\\nwindway\\nwindways\\nwindy\\nwine\\nwined\\nwineless\\nwineries\\nwinery\\nwines\\nwineshop\\nwineshops\\nwineskin\\nwineskins\\nwinesop\\nwinesops\\nwiney\\nwing\\nwingback\\nwingbacks\\nwingbow\\nwingbows\\nwingding\\nwingdings\\nwinged\\nwingedly\\nwinger\\nwingers\\nwingier\\nwingiest\\nwinging\\nwingless\\nwinglet\\nwinglets\\nwinglike\\nwingman\\nwingmen\\nwingover\\nwingovers\\nwings\\nwingspan\\nwingspans\\nwingy\\nwinier\\nwiniest\\nwining\\nwinish\\nwink\\nwinked\\nwinker\\nwinkers\\nwinking\\nwinkle\\nwinkled\\nwinkles\\nwinkling\\nwinks\\nwinnable\\nwinned\\nwinner\\nwinners\\nwinning\\nwinnings\\nwinnock\\nwinnocks\\nwinnow\\nwinnowed\\nwinnower\\nwinnowers\\nwinnowing\\nwinnows\\nwino\\nwinoes\\nwinos\\nwins\\nwinsome\\nwinsomely\\nwinsomeness\\nwinsomenesses\\nwinsomer\\nwinsomest\\nwinter\\nwintered\\nwinterer\\nwinterers\\nwintergreen\\nwintergreens\\nwinterier\\nwinteriest\\nwintering\\nwinterly\\nwinters\\nwintertime\\nwintertimes\\nwintery\\nwintle\\nwintled\\nwintles\\nwintling\\nwintrier\\nwintriest\\nwintrily\\nwintry\\nwiny\\nwinze\\nwinzes\\nwipe\\nwiped\\nwipeout\\nwipeouts\\nwiper\\nwipers\\nwipes\\nwiping\\nwirable\\nwire\\nwired\\nwiredraw\\nwiredrawing\\nwiredrawn\\nwiredraws\\nwiredrew\\nwirehair\\nwirehairs\\nwireless\\nwirelessed\\nwirelesses\\nwirelessing\\nwirelike\\nwireman\\nwiremen\\nwirer\\nwirers\\nwires\\nwiretap\\nwiretapped\\nwiretapper\\nwiretappers\\nwiretapping\\nwiretaps\\nwireway\\nwireways\\nwirework\\nwireworks\\nwireworm\\nwireworms\\nwirier\\nwiriest\\nwirily\\nwiriness\\nwirinesses\\nwiring\\nwirings\\nwirra\\nwiry\\nwis\\nwisdom\\nwisdoms\\nwise\\nwiseacre\\nwiseacres\\nwisecrack\\nwisecracked\\nwisecracking\\nwisecracks\\nwised\\nwiselier\\nwiseliest\\nwisely\\nwiseness\\nwisenesses\\nwisent\\nwisents\\nwiser\\nwises\\nwisest\\nwish\\nwisha\\nwishbone\\nwishbones\\nwished\\nwisher\\nwishers\\nwishes\\nwishful\\nwishing\\nwishless\\nwising\\nwisp\\nwisped\\nwispier\\nwispiest\\nwispily\\nwisping\\nwispish\\nwisplike\\nwisps\\nwispy\\nwiss\\nwissed\\nwisses\\nwissing\\nwist\\nwistaria\\nwistarias\\nwisted\\nwisteria\\nwisterias\\nwistful\\nwistfully\\nwistfulness\\nwistfulnesses\\nwisting\\nwists\\nwit\\nwitan\\nwitch\\nwitchcraft\\nwitchcrafts\\nwitched\\nwitcheries\\nwitchery\\nwitches\\nwitchier\\nwitchiest\\nwitching\\nwitchings\\nwitchy\\nwite\\nwited\\nwiten\\nwites\\nwith\\nwithal\\nwithdraw\\nwithdrawal\\nwithdrawals\\nwithdrawing\\nwithdrawn\\nwithdraws\\nwithdrew\\nwithe\\nwithed\\nwither\\nwithered\\nwitherer\\nwitherers\\nwithering\\nwithers\\nwithes\\nwithheld\\nwithhold\\nwithholding\\nwithholds\\nwithier\\nwithies\\nwithiest\\nwithin\\nwithing\\nwithins\\nwithout\\nwithouts\\nwithstand\\nwithstanding\\nwithstands\\nwithstood\\nwithy\\nwiting\\nwitless\\nwitlessly\\nwitlessness\\nwitlessnesses\\nwitling\\nwitlings\\nwitloof\\nwitloofs\\nwitness\\nwitnessed\\nwitnesses\\nwitnessing\\nwitney\\nwitneys\\nwits\\nwitted\\nwitticism\\nwitticisms\\nwittier\\nwittiest\\nwittily\\nwittiness\\nwittinesses\\nwitting\\nwittingly\\nwittings\\nwittol\\nwittols\\nwitty\\nwive\\nwived\\nwiver\\nwivern\\nwiverns\\nwivers\\nwives\\nwiving\\nwiz\\nwizard\\nwizardly\\nwizardries\\nwizardry\\nwizards\\nwizen\\nwizened\\nwizening\\nwizens\\nwizes\\nwizzen\\nwizzens\\nwo\\nwoad\\nwoaded\\nwoads\\nwoadwax\\nwoadwaxes\\nwoald\\nwoalds\\nwobble\\nwobbled\\nwobbler\\nwobblers\\nwobbles\\nwobblier\\nwobblies\\nwobbliest\\nwobbling\\nwobbly\\nwobegone\\nwoe\\nwoebegone\\nwoeful\\nwoefuller\\nwoefullest\\nwoefully\\nwoeness\\nwoenesses\\nwoes\\nwoesome\\nwoful\\nwofully\\nwok\\nwoke\\nwoken\\nwoks\\nwold\\nwolds\\nwolf\\nwolfed\\nwolfer\\nwolfers\\nwolffish\\nwolffishes\\nwolfing\\nwolfish\\nwolflike\\nwolfram\\nwolframs\\nwolfs\\nwolver\\nwolverine\\nwolverines\\nwolvers\\nwolves\\nwoman\\nwomaned\\nwomanhood\\nwomanhoods\\nwomaning\\nwomanise\\nwomanised\\nwomanises\\nwomanish\\nwomanising\\nwomanize\\nwomanized\\nwomanizes\\nwomanizing\\nwomankind\\nwomankinds\\nwomanlier\\nwomanliest\\nwomanliness\\nwomanlinesses\\nwomanly\\nwomans\\nwomb\\nwombat\\nwombats\\nwombed\\nwombier\\nwombiest\\nwombs\\nwomby\\nwomen\\nwomera\\nwomeras\\nwommera\\nwommeras\\nwomps\\nwon\\nwonder\\nwondered\\nwonderer\\nwonderers\\nwonderful\\nwonderfully\\nwonderfulness\\nwonderfulnesses\\nwondering\\nwonderland\\nwonderlands\\nwonderment\\nwonderments\\nwonders\\nwonderwoman\\nwondrous\\nwondrously\\nwondrousness\\nwondrousnesses\\nwonkier\\nwonkiest\\nwonky\\nwonned\\nwonner\\nwonners\\nwonning\\nwons\\nwont\\nwonted\\nwontedly\\nwonting\\nwonton\\nwontons\\nwonts\\nwoo\\nwood\\nwoodbin\\nwoodbind\\nwoodbinds\\nwoodbine\\nwoodbines\\nwoodbins\\nwoodbox\\nwoodboxes\\nwoodchat\\nwoodchats\\nwoodchopper\\nwoodchoppers\\nwoodchuck\\nwoodchucks\\nwoodcock\\nwoodcocks\\nwoodcraft\\nwoodcrafts\\nwoodcut\\nwoodcuts\\nwooded\\nwooden\\nwoodener\\nwoodenest\\nwoodenly\\nwoodenness\\nwoodennesses\\nwoodhen\\nwoodhens\\nwoodier\\nwoodiest\\nwoodiness\\nwoodinesses\\nwooding\\nwoodland\\nwoodlands\\nwoodlark\\nwoodlarks\\nwoodless\\nwoodlore\\nwoodlores\\nwoodlot\\nwoodlots\\nwoodman\\nwoodmen\\nwoodnote\\nwoodnotes\\nwoodpecker\\nwoodpeckers\\nwoodpile\\nwoodpiles\\nwoodruff\\nwoodruffs\\nwoods\\nwoodshed\\nwoodshedded\\nwoodshedding\\nwoodsheds\\nwoodsia\\nwoodsias\\nwoodsier\\nwoodsiest\\nwoodsman\\nwoodsmen\\nwoodsy\\nwoodwax\\nwoodwaxes\\nwoodwind\\nwoodwinds\\nwoodwork\\nwoodworks\\nwoodworm\\nwoodworms\\nwoody\\nwooed\\nwooer\\nwooers\\nwoof\\nwoofed\\nwoofer\\nwoofers\\nwoofing\\nwoofs\\nwooing\\nwooingly\\nwool\\nwooled\\nwoolen\\nwoolens\\nwooler\\nwoolers\\nwoolfell\\nwoolfells\\nwoolgathering\\nwoolgatherings\\nwoolie\\nwoolier\\nwoolies\\nwooliest\\nwoollen\\nwoollens\\nwoollier\\nwoollies\\nwoolliest\\nwoollike\\nwoolly\\nwoolman\\nwoolmen\\nwoolpack\\nwoolpacks\\nwools\\nwoolsack\\nwoolsacks\\nwoolshed\\nwoolsheds\\nwoolskin\\nwoolskins\\nwooly\\nwoomera\\nwoomeras\\nwoops\\nwoorali\\nwooralis\\nwoorari\\nwooraris\\nwoos\\nwoosh\\nwooshed\\nwooshes\\nwooshing\\nwoozier\\nwooziest\\nwoozily\\nwooziness\\nwoozinesses\\nwoozy\\nwop\\nwops\\nworcester\\nword\\nwordage\\nwordages\\nwordbook\\nwordbooks\\nworded\\nwordier\\nwordiest\\nwordily\\nwordiness\\nwordinesses\\nwording\\nwordings\\nwordless\\nwordplay\\nwordplays\\nwords\\nwordy\\nwore\\nwork\\nworkability\\nworkable\\nworkableness\\nworkablenesses\\nworkaday\\nworkbag\\nworkbags\\nworkbasket\\nworkbaskets\\nworkbench\\nworkbenches\\nworkboat\\nworkboats\\nworkbook\\nworkbooks\\nworkbox\\nworkboxes\\nworkday\\nworkdays\\nworked\\nworker\\nworkers\\nworkfolk\\nworkhorse\\nworkhorses\\nworkhouse\\nworkhouses\\nworking\\nworkingman\\nworkingmen\\nworkings\\nworkless\\nworkload\\nworkloads\\nworkman\\nworkmanlike\\nworkmanship\\nworkmanships\\nworkmen\\nworkout\\nworkouts\\nworkroom\\nworkrooms\\nworks\\nworksheet\\nworksheets\\nworkshop\\nworkshops\\nworkup\\nworkups\\nworkweek\\nworkweeks\\nworld\\nworldlier\\nworldliest\\nworldliness\\nworldlinesses\\nworldly\\nworlds\\nworldwide\\nworm\\nwormed\\nwormer\\nwormers\\nwormhole\\nwormholes\\nwormier\\nwormiest\\nwormil\\nwormils\\nworming\\nwormish\\nwormlike\\nwormroot\\nwormroots\\nworms\\nwormseed\\nwormseeds\\nwormwood\\nwormwoods\\nwormy\\nworn\\nwornness\\nwornnesses\\nworried\\nworrier\\nworriers\\nworries\\nworrisome\\nworrit\\nworrited\\nworriting\\nworrits\\nworry\\nworrying\\nworse\\nworsen\\nworsened\\nworsening\\nworsens\\nworser\\nworses\\nworset\\nworsets\\nworship\\nworshiped\\nworshiper\\nworshipers\\nworshiping\\nworshipped\\nworshipper\\nworshippers\\nworshipping\\nworships\\nworst\\nworsted\\nworsteds\\nworsting\\nworsts\\nwort\\nworth\\nworthed\\nworthful\\nworthier\\nworthies\\nworthiest\\nworthily\\nworthiness\\nworthinesses\\nworthing\\nworthless\\nworthlessness\\nworthlessnesses\\nworths\\nworthwhile\\nworthy\\nworts\\nwos\\nwost\\nwostteth\\nwot\\nwots\\nwotted\\nwotteth\\nwotting\\nwould\\nwouldest\\nwouldst\\nwound\\nwounded\\nwounding\\nwounds\\nwove\\nwoven\\nwow\\nwowed\\nwowing\\nwows\\nwowser\\nwowsers\\nwrack\\nwracked\\nwrackful\\nwracking\\nwracks\\nwraith\\nwraiths\\nwrang\\nwrangle\\nwrangled\\nwrangler\\nwranglers\\nwrangles\\nwrangling\\nwrangs\\nwrap\\nwrapped\\nwrapper\\nwrappers\\nwrapping\\nwrappings\\nwraps\\nwrapt\\nwrasse\\nwrasses\\nwrastle\\nwrastled\\nwrastles\\nwrastling\\nwrath\\nwrathed\\nwrathful\\nwrathier\\nwrathiest\\nwrathily\\nwrathing\\nwraths\\nwrathy\\nwreak\\nwreaked\\nwreaker\\nwreakers\\nwreaking\\nwreaks\\nwreath\\nwreathe\\nwreathed\\nwreathen\\nwreathes\\nwreathing\\nwreaths\\nwreathy\\nwreck\\nwreckage\\nwreckages\\nwrecked\\nwrecker\\nwreckers\\nwreckful\\nwrecking\\nwreckings\\nwrecks\\nwren\\nwrench\\nwrenched\\nwrenches\\nwrenching\\nwrens\\nwrest\\nwrested\\nwrester\\nwresters\\nwresting\\nwrestle\\nwrestled\\nwrestler\\nwrestlers\\nwrestles\\nwrestling\\nwrests\\nwretch\\nwretched\\nwretcheder\\nwretchedest\\nwretchedness\\nwretchednesses\\nwretches\\nwried\\nwrier\\nwries\\nwriest\\nwriggle\\nwriggled\\nwriggler\\nwrigglers\\nwriggles\\nwrigglier\\nwriggliest\\nwriggling\\nwriggly\\nwright\\nwrights\\nwring\\nwringed\\nwringer\\nwringers\\nwringing\\nwrings\\nwrinkle\\nwrinkled\\nwrinkles\\nwrinklier\\nwrinkliest\\nwrinkling\\nwrinkly\\nwrist\\nwristier\\nwristiest\\nwristlet\\nwristlets\\nwrists\\nwristy\\nwrit\\nwritable\\nwrite\\nwriter\\nwriters\\nwrites\\nwrithe\\nwrithed\\nwrithen\\nwrither\\nwrithers\\nwrithes\\nwrithing\\nwriting\\nwritings\\nwrits\\nwritten\\nwrong\\nwrongdoer\\nwrongdoers\\nwrongdoing\\nwrongdoings\\nwronged\\nwronger\\nwrongers\\nwrongest\\nwrongful\\nwrongfully\\nwrongfulness\\nwrongfulnesses\\nwrongheaded\\nwrongheadedly\\nwrongheadedness\\nwrongheadednesses\\nwronging\\nwrongly\\nwrongs\\nwrote\\nwroth\\nwrothful\\nwrought\\nwrung\\nwry\\nwryer\\nwryest\\nwrying\\nwryly\\nwryneck\\nwrynecks\\nwryness\\nwrynesses\\nwud\\nwurst\\nwursts\\nwurzel\\nwurzels\\nwych\\nwyches\\nwye\\nwyes\\nwyle\\nwyled\\nwyles\\nwyling\\nwynd\\nwynds\\nwynn\\nwynns\\nwyte\\nwyted\\nwytes\\nwyting\\nwyvern\\nwyverns\\nxanthate\\nxanthates\\nxanthein\\nxantheins\\nxanthene\\nxanthenes\\nxanthic\\nxanthin\\nxanthine\\nxanthines\\nxanthins\\nxanthoma\\nxanthomas\\nxanthomata\\nxanthone\\nxanthones\\nxanthous\\nxebec\\nxebecs\\nxenia\\nxenial\\nxenias\\nxenic\\nxenogamies\\nxenogamy\\nxenogenies\\nxenogeny\\nxenolith\\nxenoliths\\nxenon\\nxenons\\nxenophobe\\nxenophobes\\nxenophobia\\nxerarch\\nxeric\\nxerosere\\nxeroseres\\nxeroses\\nxerosis\\nxerotic\\nxerus\\nxeruses\\nxi\\nxiphoid\\nxiphoids\\nxis\\nxu\\nxylan\\nxylans\\nxylem\\nxylems\\nxylene\\nxylenes\\nxylic\\nxylidin\\nxylidine\\nxylidines\\nxylidins\\nxylocarp\\nxylocarps\\nxyloid\\nxylol\\nxylols\\nxylophone\\nxylophones\\nxylophonist\\nxylophonists\\nxylose\\nxyloses\\nxylotomies\\nxylotomy\\nxylyl\\nxylyls\\nxyst\\nxyster\\nxysters\\nxysti\\nxystoi\\nxystos\\nxysts\\nxystus\\nya\\nyabber\\nyabbered\\nyabbering\\nyabbers\\nyacht\\nyachted\\nyachter\\nyachters\\nyachting\\nyachtings\\nyachtman\\nyachtmen\\nyachts\\nyack\\nyacked\\nyacking\\nyacks\\nyaff\\nyaffed\\nyaffing\\nyaffs\\nyager\\nyagers\\nyagi\\nyagis\\nyah\\nyahoo\\nyahooism\\nyahooisms\\nyahoos\\nyaird\\nyairds\\nyak\\nyakked\\nyakking\\nyaks\\nyald\\nyam\\nyamen\\nyamens\\nyammer\\nyammered\\nyammerer\\nyammerers\\nyammering\\nyammers\\nyams\\nyamun\\nyamuns\\nyang\\nyangs\\nyank\\nyanked\\nyanking\\nyanks\\nyanqui\\nyanquis\\nyap\\nyapock\\nyapocks\\nyapok\\nyapoks\\nyapon\\nyapons\\nyapped\\nyapper\\nyappers\\nyapping\\nyappy\\nyaps\\nyar\\nyard\\nyardage\\nyardages\\nyardarm\\nyardarms\\nyardbird\\nyardbirds\\nyarded\\nyarding\\nyardman\\nyardmen\\nyards\\nyardstick\\nyardsticks\\nyardwand\\nyardwands\\nyare\\nyarely\\nyarer\\nyarest\\nyarmelke\\nyarmelkes\\nyarmulke\\nyarmulkes\\nyarn\\nyarned\\nyarning\\nyarns\\nyarrow\\nyarrows\\nyashmac\\nyashmacs\\nyashmak\\nyashmaks\\nyasmak\\nyasmaks\\nyatagan\\nyatagans\\nyataghan\\nyataghans\\nyaud\\nyauds\\nyauld\\nyaup\\nyauped\\nyauper\\nyaupers\\nyauping\\nyaupon\\nyaupons\\nyaups\\nyaw\\nyawed\\nyawing\\nyawl\\nyawled\\nyawling\\nyawls\\nyawmeter\\nyawmeters\\nyawn\\nyawned\\nyawner\\nyawners\\nyawning\\nyawns\\nyawp\\nyawped\\nyawper\\nyawpers\\nyawping\\nyawpings\\nyawps\\nyaws\\nyay\\nycleped\\nyclept\\nye\\nyea\\nyeah\\nyealing\\nyealings\\nyean\\nyeaned\\nyeaning\\nyeanling\\nyeanlings\\nyeans\\nyear\\nyearbook\\nyearbooks\\nyearlies\\nyearling\\nyearlings\\nyearlong\\nyearly\\nyearn\\nyearned\\nyearner\\nyearners\\nyearning\\nyearnings\\nyearns\\nyears\\nyeas\\nyeast\\nyeasted\\nyeastier\\nyeastiest\\nyeastily\\nyeasting\\nyeasts\\nyeasty\\nyeelin\\nyeelins\\nyegg\\nyeggman\\nyeggmen\\nyeggs\\nyeh\\nyeld\\nyelk\\nyelks\\nyell\\nyelled\\nyeller\\nyellers\\nyelling\\nyellow\\nyellowed\\nyellower\\nyellowest\\nyellowing\\nyellowly\\nyellows\\nyellowy\\nyells\\nyelp\\nyelped\\nyelper\\nyelpers\\nyelping\\nyelps\\nyen\\nyenned\\nyenning\\nyens\\nyenta\\nyentas\\nyeoman\\nyeomanly\\nyeomanries\\nyeomanry\\nyeomen\\nyep\\nyerba\\nyerbas\\nyerk\\nyerked\\nyerking\\nyerks\\nyes\\nyeses\\nyeshiva\\nyeshivah\\nyeshivahs\\nyeshivas\\nyeshivoth\\nyessed\\nyesses\\nyessing\\nyester\\nyesterday\\nyesterdays\\nyestern\\nyestreen\\nyestreens\\nyet\\nyeti\\nyetis\\nyett\\nyetts\\nyeuk\\nyeuked\\nyeuking\\nyeuks\\nyeuky\\nyew\\nyews\\nyid\\nyids\\nyield\\nyielded\\nyielder\\nyielders\\nyielding\\nyields\\nyill\\nyills\\nyin\\nyince\\nyins\\nyip\\nyipe\\nyipes\\nyipped\\nyippee\\nyippie\\nyippies\\nyipping\\nyips\\nyird\\nyirds\\nyirr\\nyirred\\nyirring\\nyirrs\\nyirth\\nyirths\\nyod\\nyodel\\nyodeled\\nyodeler\\nyodelers\\nyodeling\\nyodelled\\nyodeller\\nyodellers\\nyodelling\\nyodels\\nyodh\\nyodhs\\nyodle\\nyodled\\nyodler\\nyodlers\\nyodles\\nyodling\\nyods\\nyoga\\nyogas\\nyogee\\nyogees\\nyogh\\nyoghourt\\nyoghourts\\nyoghs\\nyoghurt\\nyoghurts\\nyogi\\nyogic\\nyogin\\nyogini\\nyoginis\\nyogins\\nyogis\\nyogurt\\nyogurts\\nyoicks\\nyoke\\nyoked\\nyokel\\nyokeless\\nyokelish\\nyokels\\nyokemate\\nyokemates\\nyokes\\nyoking\\nyolk\\nyolked\\nyolkier\\nyolkiest\\nyolks\\nyolky\\nyom\\nyomim\\nyon\\nyond\\nyonder\\nyoni\\nyonis\\nyonker\\nyonkers\\nyore\\nyores\\nyou\\nyoung\\nyounger\\nyoungers\\nyoungest\\nyoungish\\nyoungs\\nyoungster\\nyoungsters\\nyounker\\nyounkers\\nyoupon\\nyoupons\\nyour\\nyourn\\nyours\\nyourself\\nyourselves\\nyouse\\nyouth\\nyouthen\\nyouthened\\nyouthening\\nyouthens\\nyouthful\\nyouthfully\\nyouthfulness\\nyouthfulnesses\\nyouths\\nyow\\nyowe\\nyowed\\nyowes\\nyowie\\nyowies\\nyowing\\nyowl\\nyowled\\nyowler\\nyowlers\\nyowling\\nyowls\\nyows\\nyperite\\nyperites\\nytterbia\\nytterbias\\nytterbic\\nyttria\\nyttrias\\nyttric\\nyttrium\\nyttriums\\nyuan\\nyuans\\nyucca\\nyuccas\\nyuga\\nyugas\\nyuk\\nyukked\\nyukking\\nyuks\\nyulan\\nyulans\\nyule\\nyules\\nyuletide\\nyuletides\\nyummier\\nyummies\\nyummiest\\nyummy\\nyup\\nyupon\\nyupons\\nyurt\\nyurta\\nyurts\\nywis\\nzabaione\\nzabaiones\\nzabajone\\nzabajones\\nzacaton\\nzacatons\\nzaddik\\nzaddikim\\nzaffar\\nzaffars\\nzaffer\\nzaffers\\nzaffir\\nzaffirs\\nzaffre\\nzaffres\\nzaftig\\nzag\\nzagged\\nzagging\\nzags\\nzaibatsu\\nzaire\\nzaires\\nzamarra\\nzamarras\\nzamarro\\nzamarros\\nzamia\\nzamias\\nzamindar\\nzamindars\\nzanana\\nzananas\\nzander\\nzanders\\nzanier\\nzanies\\nzaniest\\nzanily\\nzaniness\\nzaninesses\\nzany\\nzanyish\\nzanza\\nzanzas\\nzap\\nzapateo\\nzapateos\\nzapped\\nzapping\\nzaps\\nzaptiah\\nzaptiahs\\nzaptieh\\nzaptiehs\\nzaratite\\nzaratites\\nzareba\\nzarebas\\nzareeba\\nzareebas\\nzarf\\nzarfs\\nzariba\\nzaribas\\nzarzuela\\nzarzuelas\\nzastruga\\nzastrugi\\nzax\\nzaxes\\nzayin\\nzayins\\nzeal\\nzealot\\nzealotries\\nzealotry\\nzealots\\nzealous\\nzealously\\nzealousness\\nzealousnesses\\nzeals\\nzeatin\\nzeatins\\nzebec\\nzebeck\\nzebecks\\nzebecs\\nzebra\\nzebraic\\nzebras\\nzebrass\\nzebrasses\\nzebrine\\nzebroid\\nzebu\\nzebus\\nzecchin\\nzecchini\\nzecchino\\nzecchinos\\nzecchins\\nzechin\\nzechins\\nzed\\nzedoaries\\nzedoary\\nzeds\\nzee\\nzees\\nzein\\nzeins\\nzeitgeist\\nzeitgeists\\nzelkova\\nzelkovas\\nzemindar\\nzemindars\\nzemstvo\\nzemstvos\\nzenana\\nzenanas\\nzenith\\nzenithal\\nzeniths\\nzeolite\\nzeolites\\nzeolitic\\nzephyr\\nzephyrs\\nzeppelin\\nzeppelins\\nzero\\nzeroed\\nzeroes\\nzeroing\\nzeros\\nzest\\nzested\\nzestful\\nzestfully\\nzestfulness\\nzestfulnesses\\nzestier\\nzestiest\\nzesting\\nzests\\nzesty\\nzeta\\nzetas\\nzeugma\\nzeugmas\\nzibeline\\nzibelines\\nzibet\\nzibeth\\nzibeths\\nzibets\\nzig\\nzigged\\nzigging\\nziggurat\\nziggurats\\nzigs\\nzigzag\\nzigzagged\\nzigzagging\\nzigzags\\nzikkurat\\nzikkurats\\nzikurat\\nzikurats\\nzilch\\nzilches\\nzillah\\nzillahs\\nzillion\\nzillions\\nzinc\\nzincate\\nzincates\\nzinced\\nzincic\\nzincified\\nzincifies\\nzincify\\nzincifying\\nzincing\\nzincite\\nzincites\\nzincked\\nzincking\\nzincky\\nzincoid\\nzincous\\nzincs\\nzincy\\nzing\\nzingani\\nzingano\\nzingara\\nzingare\\nzingari\\nzingaro\\nzinged\\nzingier\\nzingiest\\nzinging\\nzings\\nzingy\\nzinkified\\nzinkifies\\nzinkify\\nzinkifying\\nzinky\\nzinnia\\nzinnias\\nzip\\nzipped\\nzipper\\nzippered\\nzippering\\nzippers\\nzippier\\nzippiest\\nzipping\\nzippy\\nzips\\nziram\\nzirams\\nzircon\\nzirconia\\nzirconias\\nzirconic\\nzirconium\\nzirconiums\\nzircons\\nzither\\nzithern\\nzitherns\\nzithers\\nziti\\nzitis\\nzizith\\nzizzle\\nzizzled\\nzizzles\\nzizzling\\nzloty\\nzlotys\\nzoa\\nzoaria\\nzoarial\\nzoarium\\nzodiac\\nzodiacal\\nzodiacs\\nzoea\\nzoeae\\nzoeal\\nzoeas\\nzoftig\\nzoic\\nzoisite\\nzoisites\\nzombi\\nzombie\\nzombies\\nzombiism\\nzombiisms\\nzombis\\nzonal\\nzonally\\nzonary\\nzonate\\nzonated\\nzonation\\nzonations\\nzone\\nzoned\\nzoneless\\nzoner\\nzoners\\nzones\\nzonetime\\nzonetimes\\nzoning\\nzonked\\nzonula\\nzonulae\\nzonular\\nzonulas\\nzonule\\nzonules\\nzoo\\nzoochore\\nzoochores\\nzoogenic\\nzooglea\\nzoogleae\\nzoogleal\\nzoogleas\\nzoogloea\\nzoogloeae\\nzoogloeas\\nzooid\\nzooidal\\nzooids\\nzooks\\nzoolater\\nzoolaters\\nzoolatries\\nzoolatry\\nzoologic\\nzoological\\nzoologies\\nzoologist\\nzoologists\\nzoology\\nzoom\\nzoomania\\nzoomanias\\nzoomed\\nzoometries\\nzoometry\\nzooming\\nzoomorph\\nzoomorphs\\nzooms\\nzoon\\nzoonal\\nzoonoses\\nzoonosis\\nzoonotic\\nzoons\\nzoophile\\nzoophiles\\nzoophyte\\nzoophytes\\nzoos\\nzoosperm\\nzoosperms\\nzoospore\\nzoospores\\nzootomic\\nzootomies\\nzootomy\\nzori\\nzoril\\nzorilla\\nzorillas\\nzorille\\nzorilles\\nzorillo\\nzorillos\\nzorils\\nzoster\\nzosters\\nzouave\\nzouaves\\nzounds\\nzowie\\nzoysia\\nzoysias\\nzucchini\\nzucchinis\\nzwieback\\nzwiebacks\\nzygoma\\nzygomas\\nzygomata\\nzygose\\nzygoses\\nzygosis\\nzygosities\\nzygosity\\nzygote\\nzygotene\\nzygotenes\\nzygotes\\nzygotic\\nzymase\\nzymases\\nzyme\\nzymes\\nzymogen\\nzymogene\\nzymogenes\\nzymogens\\nzymologies\\nzymology\\nzymoses\\nzymosis\\nzymotic\\nzymurgies\\nzymurgy\\n'" + ] + }, + "execution_count": 86, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "string = open('words.txt').read()\n", - "len(string)" + "len(string)\n", + "string" ] }, { @@ -1382,13 +2978,1025 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 88, "id": "4e35f7ce", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['aa',\n", + " 'aah',\n", + " 'aahed',\n", + " 'aahing',\n", + " 'aahs',\n", + " 'aal',\n", + " 'aalii',\n", + " 'aaliis',\n", + " 'aals',\n", + " 'aardvark',\n", + " 'aardvarks',\n", + " 'aardwolf',\n", + " 'aardwolves',\n", + " 'aas',\n", + " 'aasvogel',\n", + " 'aasvogels',\n", + " 'aba',\n", + " 'abaca',\n", + " 'abacas',\n", + " 'abaci',\n", + " 'aback',\n", + " 'abacus',\n", + " 'abacuses',\n", + " 'abaft',\n", + " 'abaka',\n", + " 'abakas',\n", + " 'abalone',\n", + " 'abalones',\n", + " 'abamp',\n", + " 'abampere',\n", + " 'abamperes',\n", + " 'abamps',\n", + " 'abandon',\n", + " 'abandoned',\n", + " 'abandoning',\n", + " 'abandonment',\n", + " 'abandonments',\n", + " 'abandons',\n", + " 'abas',\n", + " 'abase',\n", + " 'abased',\n", + " 'abasedly',\n", + " 'abasement',\n", + " 'abasements',\n", + " 'abaser',\n", + " 'abasers',\n", + " 'abases',\n", + " 'abash',\n", + " 'abashed',\n", + " 'abashes',\n", + " 'abashing',\n", + " 'abasing',\n", + " 'abatable',\n", + " 'abate',\n", + " 'abated',\n", + " 'abatement',\n", + " 'abatements',\n", + " 'abater',\n", + " 'abaters',\n", + " 'abates',\n", + " 'abating',\n", + " 'abatis',\n", + " 'abatises',\n", + " 'abator',\n", + " 'abators',\n", + " 'abattis',\n", + " 'abattises',\n", + " 'abattoir',\n", + " 'abattoirs',\n", + " 'abaxial',\n", + " 'abaxile',\n", + " 'abbacies',\n", + " 'abbacy',\n", + " 'abbatial',\n", + " 'abbe',\n", + " 'abbes',\n", + " 'abbess',\n", + " 'abbesses',\n", + " 'abbey',\n", + " 'abbeys',\n", + " 'abbot',\n", + " 'abbotcies',\n", + " 'abbotcy',\n", + " 'abbots',\n", + " 'abbreviate',\n", + " 'abbreviated',\n", + " 'abbreviates',\n", + " 'abbreviating',\n", + " 'abbreviation',\n", + " 'abbreviations',\n", + " 'abdicate',\n", + " 'abdicated',\n", + " 'abdicates',\n", + " 'abdicating',\n", + " 'abdication',\n", + " 'abdications',\n", + " 'abdomen',\n", + " 'abdomens',\n", + " 'abdomina',\n", + " 'abdominal',\n", + " 'abdominally',\n", + " 'abduce',\n", + " 'abduced',\n", + " 'abducens',\n", + " 'abducent',\n", + " 'abducentes',\n", + " 'abduces',\n", + " 'abducing',\n", + " 'abduct',\n", + " 'abducted',\n", + " 'abducting',\n", + " 'abductor',\n", + " 'abductores',\n", + " 'abductors',\n", + " 'abducts',\n", + " 'abeam',\n", + " 'abed',\n", + " 'abele',\n", + " 'abeles',\n", + " 'abelmosk',\n", + " 'abelmosks',\n", + " 'aberrant',\n", + " 'aberrants',\n", + " 'aberration',\n", + " 'aberrations',\n", + " 'abet',\n", + " 'abetment',\n", + " 'abetments',\n", + " 'abets',\n", + " 'abettal',\n", + " 'abettals',\n", + " 'abetted',\n", + " 'abetter',\n", + " 'abetters',\n", + " 'abetting',\n", + " 'abettor',\n", + " 'abettors',\n", + " 'abeyance',\n", + " 'abeyances',\n", + " 'abeyancies',\n", + " 'abeyancy',\n", + " 'abeyant',\n", + " 'abfarad',\n", + " 'abfarads',\n", + " 'abhenries',\n", + " 'abhenry',\n", + " 'abhenrys',\n", + " 'abhor',\n", + " 'abhorred',\n", + " 'abhorrence',\n", + " 'abhorrences',\n", + " 'abhorrent',\n", + " 'abhorrer',\n", + " 'abhorrers',\n", + " 'abhorring',\n", + " 'abhors',\n", + " 'abidance',\n", + " 'abidances',\n", + " 'abide',\n", + " 'abided',\n", + " 'abider',\n", + " 'abiders',\n", + " 'abides',\n", + " 'abiding',\n", + " 'abied',\n", + " 'abies',\n", + " 'abigail',\n", + " 'abigails',\n", + " 'abilities',\n", + " 'ability',\n", + " 'abioses',\n", + " 'abiosis',\n", + " 'abiotic',\n", + " 'abject',\n", + " 'abjectly',\n", + " 'abjectness',\n", + " 'abjectnesses',\n", + " 'abjuration',\n", + " 'abjurations',\n", + " 'abjure',\n", + " 'abjured',\n", + " 'abjurer',\n", + " 'abjurers',\n", + " 'abjures',\n", + " 'abjuring',\n", + " 'ablate',\n", + " 'ablated',\n", + " 'ablates',\n", + " 'ablating',\n", + " 'ablation',\n", + " 'ablations',\n", + " 'ablative',\n", + " 'ablatives',\n", + " 'ablaut',\n", + " 'ablauts',\n", + " 'ablaze',\n", + " 'able',\n", + " 'ablegate',\n", + " 'ablegates',\n", + " 'abler',\n", + " 'ables',\n", + " 'ablest',\n", + " 'ablings',\n", + " 'ablins',\n", + " 'abloom',\n", + " 'abluent',\n", + " 'abluents',\n", + " 'ablush',\n", + " 'abluted',\n", + " 'ablution',\n", + " 'ablutions',\n", + " 'ably',\n", + " 'abmho',\n", + " 'abmhos',\n", + " 'abnegate',\n", + " 'abnegated',\n", + " 'abnegates',\n", + " 'abnegating',\n", + " 'abnegation',\n", + " 'abnegations',\n", + " 'abnormal',\n", + " 'abnormalities',\n", + " 'abnormality',\n", + " 'abnormally',\n", + " 'abnormals',\n", + " 'abo',\n", + " 'aboard',\n", + " 'abode',\n", + " 'aboded',\n", + " 'abodes',\n", + " 'aboding',\n", + " 'abohm',\n", + " 'abohms',\n", + " 'aboideau',\n", + " 'aboideaus',\n", + " 'aboideaux',\n", + " 'aboil',\n", + " 'aboiteau',\n", + " 'aboiteaus',\n", + " 'aboiteaux',\n", + " 'abolish',\n", + " 'abolished',\n", + " 'abolishes',\n", + " 'abolishing',\n", + " 'abolition',\n", + " 'abolitions',\n", + " 'abolla',\n", + " 'abollae',\n", + " 'aboma',\n", + " 'abomas',\n", + " 'abomasa',\n", + " 'abomasal',\n", + " 'abomasi',\n", + " 'abomasum',\n", + " 'abomasus',\n", + " 'abominable',\n", + " 'abominate',\n", + " 'abominated',\n", + " 'abominates',\n", + " 'abominating',\n", + " 'abomination',\n", + " 'abominations',\n", + " 'aboon',\n", + " 'aboral',\n", + " 'aborally',\n", + " 'aboriginal',\n", + " 'aborigine',\n", + " 'aborigines',\n", + " 'aborning',\n", + " 'abort',\n", + " 'aborted',\n", + " 'aborter',\n", + " 'aborters',\n", + " 'aborting',\n", + " 'abortion',\n", + " 'abortions',\n", + " 'abortive',\n", + " 'aborts',\n", + " 'abos',\n", + " 'abought',\n", + " 'aboulia',\n", + " 'aboulias',\n", + " 'aboulic',\n", + " 'abound',\n", + " 'abounded',\n", + " 'abounding',\n", + " 'abounds',\n", + " 'about',\n", + " 'above',\n", + " 'aboveboard',\n", + " 'aboves',\n", + " 'abracadabra',\n", + " 'abradant',\n", + " 'abradants',\n", + " 'abrade',\n", + " 'abraded',\n", + " 'abrader',\n", + " 'abraders',\n", + " 'abrades',\n", + " 'abrading',\n", + " 'abrasion',\n", + " 'abrasions',\n", + " 'abrasive',\n", + " 'abrasively',\n", + " 'abrasiveness',\n", + " 'abrasivenesses',\n", + " 'abrasives',\n", + " 'abreact',\n", + " 'abreacted',\n", + " 'abreacting',\n", + " 'abreacts',\n", + " 'abreast',\n", + " 'abri',\n", + " 'abridge',\n", + " 'abridged',\n", + " 'abridgement',\n", + " 'abridgements',\n", + " 'abridger',\n", + " 'abridgers',\n", + " 'abridges',\n", + " 'abridging',\n", + " 'abridgment',\n", + " 'abridgments',\n", + " 'abris',\n", + " 'abroach',\n", + " 'abroad',\n", + " 'abrogate',\n", + " 'abrogated',\n", + " 'abrogates',\n", + " 'abrogating',\n", + " 'abrupt',\n", + " 'abrupter',\n", + " 'abruptest',\n", + " 'abruptly',\n", + " 'abscess',\n", + " 'abscessed',\n", + " 'abscesses',\n", + " 'abscessing',\n", + " 'abscise',\n", + " 'abscised',\n", + " 'abscises',\n", + " 'abscisin',\n", + " 'abscising',\n", + " 'abscisins',\n", + " 'abscissa',\n", + " 'abscissae',\n", + " 'abscissas',\n", + " 'abscond',\n", + " 'absconded',\n", + " 'absconding',\n", + " 'absconds',\n", + " 'absence',\n", + " 'absences',\n", + " 'absent',\n", + " 'absented',\n", + " 'absentee',\n", + " 'absentees',\n", + " 'absenter',\n", + " 'absenters',\n", + " 'absenting',\n", + " 'absently',\n", + " 'absentminded',\n", + " 'absentmindedly',\n", + " 'absentmindedness',\n", + " 'absentmindednesses',\n", + " 'absents',\n", + " 'absinth',\n", + " 'absinthe',\n", + " 'absinthes',\n", + " 'absinths',\n", + " 'absolute',\n", + " 'absolutely',\n", + " 'absoluter',\n", + " 'absolutes',\n", + " 'absolutest',\n", + " 'absolution',\n", + " 'absolutions',\n", + " 'absolve',\n", + " 'absolved',\n", + " 'absolver',\n", + " 'absolvers',\n", + " 'absolves',\n", + " 'absolving',\n", + " 'absonant',\n", + " 'absorb',\n", + " 'absorbed',\n", + " 'absorbencies',\n", + " 'absorbency',\n", + " 'absorbent',\n", + " 'absorber',\n", + " 'absorbers',\n", + " 'absorbing',\n", + " 'absorbingly',\n", + " 'absorbs',\n", + " 'absorption',\n", + " 'absorptions',\n", + " 'absorptive',\n", + " 'abstain',\n", + " 'abstained',\n", + " 'abstainer',\n", + " 'abstainers',\n", + " 'abstaining',\n", + " 'abstains',\n", + " 'abstemious',\n", + " 'abstemiously',\n", + " 'abstention',\n", + " 'abstentions',\n", + " 'absterge',\n", + " 'absterged',\n", + " 'absterges',\n", + " 'absterging',\n", + " 'abstinence',\n", + " 'abstinences',\n", + " 'abstract',\n", + " 'abstracted',\n", + " 'abstracter',\n", + " 'abstractest',\n", + " 'abstracting',\n", + " 'abstraction',\n", + " 'abstractions',\n", + " 'abstractly',\n", + " 'abstractness',\n", + " 'abstractnesses',\n", + " 'abstracts',\n", + " 'abstrict',\n", + " 'abstricted',\n", + " 'abstricting',\n", + " 'abstricts',\n", + " 'abstruse',\n", + " 'abstrusely',\n", + " 'abstruseness',\n", + " 'abstrusenesses',\n", + " 'abstruser',\n", + " 'abstrusest',\n", + " 'absurd',\n", + " 'absurder',\n", + " 'absurdest',\n", + " 'absurdities',\n", + " 'absurdity',\n", + " 'absurdly',\n", + " 'absurds',\n", + " 'abubble',\n", + " 'abulia',\n", + " 'abulias',\n", + " 'abulic',\n", + " 'abundance',\n", + " 'abundances',\n", + " 'abundant',\n", + " 'abundantly',\n", + " 'abusable',\n", + " 'abuse',\n", + " 'abused',\n", + " 'abuser',\n", + " 'abusers',\n", + " 'abuses',\n", + " 'abusing',\n", + " 'abusive',\n", + " 'abusively',\n", + " 'abusiveness',\n", + " 'abusivenesses',\n", + " 'abut',\n", + " 'abutilon',\n", + " 'abutilons',\n", + " 'abutment',\n", + " 'abutments',\n", + " 'abuts',\n", + " 'abuttal',\n", + " 'abuttals',\n", + " 'abutted',\n", + " 'abutter',\n", + " 'abutters',\n", + " 'abutting',\n", + " 'abuzz',\n", + " 'abvolt',\n", + " 'abvolts',\n", + " 'abwatt',\n", + " 'abwatts',\n", + " 'aby',\n", + " 'abye',\n", + " 'abyed',\n", + " 'abyes',\n", + " 'abying',\n", + " 'abys',\n", + " 'abysm',\n", + " 'abysmal',\n", + " 'abysmally',\n", + " 'abysms',\n", + " 'abyss',\n", + " 'abyssal',\n", + " 'abysses',\n", + " 'acacia',\n", + " 'acacias',\n", + " 'academe',\n", + " 'academes',\n", + " 'academia',\n", + " 'academias',\n", + " 'academic',\n", + " 'academically',\n", + " 'academics',\n", + " 'academies',\n", + " 'academy',\n", + " 'acajou',\n", + " 'acajous',\n", + " 'acaleph',\n", + " 'acalephae',\n", + " 'acalephe',\n", + " 'acalephes',\n", + " 'acalephs',\n", + " 'acanthi',\n", + " 'acanthus',\n", + " 'acanthuses',\n", + " 'acari',\n", + " 'acarid',\n", + " 'acaridan',\n", + " 'acaridans',\n", + " 'acarids',\n", + " 'acarine',\n", + " 'acarines',\n", + " 'acaroid',\n", + " 'acarpous',\n", + " 'acarus',\n", + " 'acaudal',\n", + " 'acaudate',\n", + " 'acauline',\n", + " 'acaulose',\n", + " 'acaulous',\n", + " 'accede',\n", + " 'acceded',\n", + " 'acceder',\n", + " 'acceders',\n", + " 'accedes',\n", + " 'acceding',\n", + " 'accelerate',\n", + " 'accelerated',\n", + " 'accelerates',\n", + " 'accelerating',\n", + " 'acceleration',\n", + " 'accelerations',\n", + " 'accelerator',\n", + " 'accelerators',\n", + " 'accent',\n", + " 'accented',\n", + " 'accenting',\n", + " 'accentor',\n", + " 'accentors',\n", + " 'accents',\n", + " 'accentual',\n", + " 'accentuate',\n", + " 'accentuated',\n", + " 'accentuates',\n", + " 'accentuating',\n", + " 'accentuation',\n", + " 'accentuations',\n", + " 'accept',\n", + " 'acceptabilities',\n", + " 'acceptability',\n", + " 'acceptable',\n", + " 'acceptance',\n", + " 'acceptances',\n", + " 'accepted',\n", + " 'acceptee',\n", + " 'acceptees',\n", + " 'accepter',\n", + " 'accepters',\n", + " 'accepting',\n", + " 'acceptor',\n", + " 'acceptors',\n", + " 'accepts',\n", + " 'access',\n", + " 'accessed',\n", + " 'accesses',\n", + " 'accessibilities',\n", + " 'accessibility',\n", + " 'accessible',\n", + " 'accessing',\n", + " 'accession',\n", + " 'accessions',\n", + " 'accessories',\n", + " 'accessory',\n", + " 'accident',\n", + " 'accidental',\n", + " 'accidentally',\n", + " 'accidentals',\n", + " 'accidents',\n", + " 'accidie',\n", + " 'accidies',\n", + " 'acclaim',\n", + " 'acclaimed',\n", + " 'acclaiming',\n", + " 'acclaims',\n", + " 'acclamation',\n", + " 'acclamations',\n", + " 'acclimate',\n", + " 'acclimated',\n", + " 'acclimates',\n", + " 'acclimating',\n", + " 'acclimation',\n", + " 'acclimations',\n", + " 'acclimatization',\n", + " 'acclimatizations',\n", + " 'acclimatize',\n", + " 'acclimatizes',\n", + " 'accolade',\n", + " 'accolades',\n", + " 'accommodate',\n", + " 'accommodated',\n", + " 'accommodates',\n", + " 'accommodating',\n", + " 'accommodation',\n", + " 'accommodations',\n", + " 'accompanied',\n", + " 'accompanies',\n", + " 'accompaniment',\n", + " 'accompaniments',\n", + " 'accompanist',\n", + " 'accompany',\n", + " 'accompanying',\n", + " 'accomplice',\n", + " 'accomplices',\n", + " 'accomplish',\n", + " 'accomplished',\n", + " 'accomplisher',\n", + " 'accomplishers',\n", + " 'accomplishes',\n", + " 'accomplishing',\n", + " 'accomplishment',\n", + " 'accomplishments',\n", + " 'accord',\n", + " 'accordance',\n", + " 'accordant',\n", + " 'accorded',\n", + " 'accorder',\n", + " 'accorders',\n", + " 'according',\n", + " 'accordingly',\n", + " 'accordion',\n", + " 'accordions',\n", + " 'accords',\n", + " 'accost',\n", + " 'accosted',\n", + " 'accosting',\n", + " 'accosts',\n", + " 'account',\n", + " 'accountabilities',\n", + " 'accountability',\n", + " 'accountable',\n", + " 'accountancies',\n", + " 'accountancy',\n", + " 'accountant',\n", + " 'accountants',\n", + " 'accounted',\n", + " 'accounting',\n", + " 'accountings',\n", + " 'accounts',\n", + " 'accouter',\n", + " 'accoutered',\n", + " 'accoutering',\n", + " 'accouters',\n", + " 'accoutre',\n", + " 'accoutred',\n", + " 'accoutrement',\n", + " 'accoutrements',\n", + " 'accoutres',\n", + " 'accoutring',\n", + " 'accredit',\n", + " 'accredited',\n", + " 'accrediting',\n", + " 'accredits',\n", + " 'accrete',\n", + " 'accreted',\n", + " 'accretes',\n", + " 'accreting',\n", + " 'accrual',\n", + " 'accruals',\n", + " 'accrue',\n", + " 'accrued',\n", + " 'accrues',\n", + " 'accruing',\n", + " 'accumulate',\n", + " 'accumulated',\n", + " 'accumulates',\n", + " 'accumulating',\n", + " 'accumulation',\n", + " 'accumulations',\n", + " 'accumulator',\n", + " 'accumulators',\n", + " 'accuracies',\n", + " 'accuracy',\n", + " 'accurate',\n", + " 'accurately',\n", + " 'accurateness',\n", + " 'accuratenesses',\n", + " 'accursed',\n", + " 'accurst',\n", + " 'accusal',\n", + " 'accusals',\n", + " 'accusant',\n", + " 'accusants',\n", + " 'accusation',\n", + " 'accusations',\n", + " 'accuse',\n", + " 'accused',\n", + " 'accuser',\n", + " 'accusers',\n", + " 'accuses',\n", + " 'accusing',\n", + " 'accustom',\n", + " 'accustomed',\n", + " 'accustoming',\n", + " 'accustoms',\n", + " 'ace',\n", + " 'aced',\n", + " 'acedia',\n", + " 'acedias',\n", + " 'aceldama',\n", + " 'aceldamas',\n", + " 'acentric',\n", + " 'acequia',\n", + " 'acequias',\n", + " 'acerate',\n", + " 'acerated',\n", + " 'acerb',\n", + " 'acerbate',\n", + " 'acerbated',\n", + " 'acerbates',\n", + " 'acerbating',\n", + " 'acerber',\n", + " 'acerbest',\n", + " 'acerbic',\n", + " 'acerbities',\n", + " 'acerbity',\n", + " 'acerola',\n", + " 'acerolas',\n", + " 'acerose',\n", + " 'acerous',\n", + " 'acers',\n", + " 'acervate',\n", + " 'acervuli',\n", + " 'aces',\n", + " 'acescent',\n", + " 'acescents',\n", + " 'aceta',\n", + " 'acetal',\n", + " 'acetals',\n", + " 'acetamid',\n", + " 'acetamids',\n", + " 'acetate',\n", + " 'acetated',\n", + " 'acetates',\n", + " 'acetic',\n", + " 'acetified',\n", + " 'acetifies',\n", + " 'acetify',\n", + " 'acetifying',\n", + " 'acetone',\n", + " 'acetones',\n", + " 'acetonic',\n", + " 'acetose',\n", + " 'acetous',\n", + " 'acetoxyl',\n", + " 'acetoxyls',\n", + " 'acetum',\n", + " 'acetyl',\n", + " 'acetylene',\n", + " 'acetylenes',\n", + " 'acetylic',\n", + " 'acetyls',\n", + " 'ache',\n", + " 'ached',\n", + " 'achene',\n", + " 'achenes',\n", + " 'achenial',\n", + " 'aches',\n", + " 'achier',\n", + " 'achiest',\n", + " 'achievable',\n", + " 'achieve',\n", + " 'achieved',\n", + " 'achievement',\n", + " 'achievements',\n", + " 'achiever',\n", + " 'achievers',\n", + " 'achieves',\n", + " 'achieving',\n", + " 'achiness',\n", + " 'achinesses',\n", + " 'aching',\n", + " 'achingly',\n", + " 'achiote',\n", + " 'achiotes',\n", + " 'achoo',\n", + " 'achromat',\n", + " 'achromats',\n", + " 'achromic',\n", + " 'achy',\n", + " 'acicula',\n", + " 'aciculae',\n", + " 'acicular',\n", + " 'aciculas',\n", + " 'acid',\n", + " 'acidhead',\n", + " 'acidheads',\n", + " 'acidic',\n", + " 'acidified',\n", + " 'acidifies',\n", + " 'acidify',\n", + " 'acidifying',\n", + " 'acidities',\n", + " 'acidity',\n", + " 'acidly',\n", + " 'acidness',\n", + " 'acidnesses',\n", + " 'acidoses',\n", + " 'acidosis',\n", + " 'acidotic',\n", + " 'acids',\n", + " 'acidy',\n", + " 'acierate',\n", + " 'acierated',\n", + " 'acierates',\n", + " 'acierating',\n", + " 'aciform',\n", + " 'acinar',\n", + " 'acing',\n", + " 'acini',\n", + " 'acinic',\n", + " 'acinose',\n", + " 'acinous',\n", + " 'acinus',\n", + " 'acknowledge',\n", + " 'acknowledged',\n", + " 'acknowledgement',\n", + " 'acknowledgements',\n", + " 'acknowledges',\n", + " 'acknowledging',\n", + " 'acknowledgment',\n", + " 'acknowledgments',\n", + " 'aclinic',\n", + " 'acmatic',\n", + " 'acme',\n", + " 'acmes',\n", + " 'acmic',\n", + " 'acne',\n", + " 'acned',\n", + " 'acnes',\n", + " 'acnode',\n", + " 'acnodes',\n", + " 'acock',\n", + " 'acold',\n", + " 'acolyte',\n", + " 'acolytes',\n", + " 'aconite',\n", + " 'aconites',\n", + " 'aconitic',\n", + " 'aconitum',\n", + " 'aconitums',\n", + " 'acorn',\n", + " 'acorns',\n", + " 'acoustic',\n", + " 'acoustical',\n", + " 'acoustically',\n", + " 'acoustics',\n", + " 'acquaint',\n", + " 'acquaintance',\n", + " 'acquaintances',\n", + " 'acquaintanceship',\n", + " 'acquaintanceships',\n", + " 'acquainted',\n", + " 'acquainting',\n", + " 'acquaints',\n", + " 'acquest',\n", + " 'acquests',\n", + " 'acquiesce',\n", + " 'acquiesced',\n", + " 'acquiescence',\n", + " 'acquiescences',\n", + " 'acquiescent',\n", + " 'acquiescently',\n", + " 'acquiesces',\n", + " 'acquiescing',\n", + " 'acquire',\n", + " 'acquired',\n", + " 'acquirer',\n", + " 'acquirers',\n", + " 'acquires',\n", + " 'acquiring',\n", + " 'acquisition',\n", + " 'acquisitions',\n", + " 'acquisitive',\n", + " 'acquit',\n", + " 'acquits',\n", + " 'acquitted',\n", + " 'acquitting',\n", + " 'acrasin',\n", + " 'acrasins',\n", + " 'acre',\n", + " 'acreage',\n", + " 'acreages',\n", + " 'acred',\n", + " 'acres',\n", + " 'acrid',\n", + " 'acrider',\n", + " 'acridest',\n", + " 'acridine',\n", + " 'acridines',\n", + " 'acridities',\n", + " 'acridity',\n", + " 'acridly',\n", + " 'acridness',\n", + " 'acridnesses',\n", + " 'acrimonies',\n", + " 'acrimonious',\n", + " 'acrimony',\n", + " 'acrobat',\n", + " 'acrobatic',\n", + " 'acrobats',\n", + " 'acrodont',\n", + " 'acrodonts',\n", + " 'acrogen',\n", + " 'acrogens',\n", + " 'acrolein',\n", + " 'acroleins',\n", + " 'acrolith',\n", + " 'acroliths',\n", + " 'acromia',\n", + " 'acromial',\n", + " 'acromion',\n", + " 'acronic',\n", + " 'acronym',\n", + " 'acronyms',\n", + " 'across',\n", + " 'acrostic',\n", + " 'acrostics',\n", + " 'acrotic',\n", + " 'acrotism',\n", + " 'acrotisms',\n", + " 'acrylate',\n", + " 'acrylates',\n", + " 'acrylic',\n", + " 'acrylics',\n", + " 'act',\n", + " 'acta',\n", + " 'actable',\n", + " 'acted',\n", + " 'actin',\n", + " 'actinal',\n", + " 'acting',\n", + " 'actings',\n", + " 'actinia',\n", + " 'actiniae',\n", + " 'actinian',\n", + " 'actinians',\n", + " 'actinias',\n", + " 'actinic',\n", + " 'actinide',\n", + " 'actinides',\n", + " 'actinism',\n", + " 'actinisms',\n", + " 'actinium',\n", + " 'actiniums',\n", + " 'actinoid',\n", + " 'actinoids',\n", + " 'actinon',\n", + " 'actinons',\n", + " 'actins',\n", + " 'action',\n", + " 'actions',\n", + " 'activate',\n", + " 'activated',\n", + " 'activates',\n", + " 'activating',\n", + " 'activation',\n", + " 'activations',\n", + " 'active',\n", + " 'actively',\n", + " 'actives',\n", + " 'activism',\n", + " 'activisms',\n", + " 'activist',\n", + " 'activists',\n", + " 'activities',\n", + " 'activity',\n", + " 'actor',\n", + " 'actorish',\n", + " 'actors',\n", + " 'actress',\n", + " 'actresses',\n", + " 'acts',\n", + " 'actual',\n", + " 'actualities',\n", + " 'actuality',\n", + " 'actualization',\n", + " 'actualizations',\n", + " 'actualize',\n", + " 'actualized',\n", + " 'actualizes',\n", + " 'actualizing',\n", + " 'actually',\n", + " 'actuarial',\n", + " 'actuaries',\n", + " ...]" + ] + }, + "execution_count": 88, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "word_list = string.split()\n", - "len(word_list)" + "len(word_list)\n", + "word_list" ] }, { @@ -1402,10 +4010,21 @@ }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 89, "id": "a778a62a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 89, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "'demotic' in word_list" ] @@ -1420,10 +4039,21 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 90, "id": "63341c0e", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 90, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "'contrafibularities' in word_list" ] @@ -1451,10 +4081,21 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 91, "id": "88872f14", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'plumage'" + ] + }, + "execution_count": 91, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "word = 'plumage!'\n", "word = word.strip('!')\n", @@ -1471,13 +4112,14 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": 94, "id": "e28e7135", "metadata": {}, "outputs": [], "source": [ "t = [1, 2, 3]\n", - "t = t.remove(3) # WRONG!" + "t = t.remove(3) # WRONG!\n", + "t" ] }, { @@ -1490,12 +4132,21 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": 95, "id": "97cf0c61", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "AttributeError", + "evalue": "'NoneType' object has no attribute 'remove'", + "output_type": "error", + "traceback": [ + "\u001b[31mAttributeError\u001b[39m\u001b[31m:\u001b[39m 'NoneType' object has no attribute 'remove'\n" + ] + } + ], "source": [ "%%expect AttributeError\n", "\n", @@ -1560,12 +4211,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 96, "id": "a4e34564", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Verbose\n" + ] + } + ], "source": [ "# This cell tells Jupyter to provide detailed debugging information\n", "# when a runtime error occurs. Run it before working on the exercises.\n", @@ -1598,6 +4257,14 @@ "If you still see features we you haven't learned, you can follow up with \"Can you write that using only basic Python features?\"" ] }, + { + "cell_type": "markdown", + "id": "74bfa8b1", + "metadata": {}, + "source": [ + "## BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "31d5b304", @@ -1997,7 +4664,7 @@ "metadata": { "celltoolbar": "Tags", "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "thinkpy", "language": "python", "name": "python3" }, @@ -2011,7 +4678,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.13.5" } }, "nbformat": 4, From 3902e8260a9b2d93a1a75e6ecd717f60cbcfb866 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Wed, 7 Jan 2026 19:25:07 +0000 Subject: [PATCH 19/56] Solution for is_anagram exercise --- chapters/chap09.ipynb | 261 ++++++++++++++++++++++++------------------ 1 file changed, 148 insertions(+), 113 deletions(-) diff --git a/chapters/chap09.ipynb b/chapters/chap09.ipynb index af1aec5b..c7f08eff 100644 --- a/chapters/chap09.ipynb +++ b/chapters/chap09.ipynb @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 2, "id": "bde1c3f9", "metadata": { "tags": [] @@ -322,7 +322,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 11, "id": "9deb85a3", "metadata": {}, "outputs": [ @@ -332,7 +332,7 @@ "'Cheddar'" ] }, - "execution_count": 12, + "execution_count": 11, "metadata": {}, "output_type": "execute_result" } @@ -353,7 +353,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 12, "id": "98ec5d9c", "metadata": {}, "outputs": [ @@ -363,7 +363,7 @@ "[42, 17]" ] }, - "execution_count": 13, + "execution_count": 12, "metadata": {}, "output_type": "execute_result" } @@ -395,7 +395,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 13, "id": "000aed26", "metadata": {}, "outputs": [ @@ -405,7 +405,7 @@ "True" ] }, - "execution_count": 14, + "execution_count": 13, "metadata": {}, "output_type": "execute_result" } @@ -416,7 +416,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 14, "id": "bcb8929c", "metadata": {}, "outputs": [ @@ -426,7 +426,7 @@ "False" ] }, - "execution_count": 15, + "execution_count": 14, "metadata": {}, "output_type": "execute_result" } @@ -445,7 +445,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 15, "id": "5ad51a26", "metadata": {}, "outputs": [ @@ -455,7 +455,7 @@ "4" ] }, - "execution_count": 16, + "execution_count": 15, "metadata": {}, "output_type": "execute_result" } @@ -475,7 +475,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 16, "id": "156dbc10", "metadata": {}, "outputs": [ @@ -485,7 +485,7 @@ "False" ] }, - "execution_count": 17, + "execution_count": 16, "metadata": {}, "output_type": "execute_result" } @@ -507,7 +507,7 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 17, "id": "70b16371", "metadata": {}, "outputs": [ @@ -517,7 +517,7 @@ "['c', 'd']" ] }, - "execution_count": 23, + "execution_count": 17, "metadata": {}, "output_type": "execute_result" } @@ -537,7 +537,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 18, "id": "e67bab33", "metadata": {}, "outputs": [ @@ -547,7 +547,7 @@ "['a']" ] }, - "execution_count": 24, + "execution_count": 18, "metadata": {}, "output_type": "execute_result" } @@ -566,7 +566,7 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 19, "id": "a310f506", "metadata": {}, "outputs": [ @@ -576,7 +576,7 @@ "['d']" ] }, - "execution_count": 30, + "execution_count": 19, "metadata": {}, "output_type": "execute_result" } @@ -595,7 +595,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 20, "id": "1385a75e", "metadata": {}, "outputs": [ @@ -605,7 +605,7 @@ "['a', 'b', 'c', 'd']" ] }, - "execution_count": 21, + "execution_count": 20, "metadata": {}, "output_type": "execute_result" } @@ -624,7 +624,7 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 21, "id": "a0ca0135", "metadata": {}, "outputs": [ @@ -634,7 +634,7 @@ "['a', 'b', 'c', 'd']" ] }, - "execution_count": 31, + "execution_count": 21, "metadata": {}, "output_type": "execute_result" } @@ -663,7 +663,7 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 22, "id": "66804de0", "metadata": {}, "outputs": [ @@ -673,7 +673,7 @@ "[3, 40, 10, 2]" ] }, - "execution_count": 40, + "execution_count": 22, "metadata": {}, "output_type": "execute_result" } @@ -694,7 +694,7 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 23, "id": "96620f93", "metadata": {}, "outputs": [ @@ -704,7 +704,7 @@ "['spam', 'spam', 'spam', 'spam']" ] }, - "execution_count": 34, + "execution_count": 23, "metadata": {}, "output_type": "execute_result" } @@ -723,7 +723,7 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 24, "id": "0808ed08", "metadata": {}, "outputs": [ @@ -733,7 +733,7 @@ "12" ] }, - "execution_count": 37, + "execution_count": 24, "metadata": {}, "output_type": "execute_result" } @@ -752,7 +752,7 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 25, "id": "7ed7e53d", "metadata": {}, "outputs": [ @@ -762,7 +762,7 @@ "2" ] }, - "execution_count": 38, + "execution_count": 25, "metadata": {}, "output_type": "execute_result" } @@ -773,7 +773,7 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 26, "id": "dda02e4e", "metadata": {}, "outputs": [ @@ -783,7 +783,7 @@ "40" ] }, - "execution_count": 41, + "execution_count": 26, "metadata": {}, "output_type": "execute_result" } @@ -805,17 +805,17 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 27, "id": "bcf04ef9", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "['a', 'b', 'c', 'd', 'e', 'e']" + "['a', 'b', 'c', 'd', 'e']" ] }, - "execution_count": 44, + "execution_count": 27, "metadata": {}, "output_type": "execute_result" } @@ -835,17 +835,17 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 28, "id": "be55916d", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "['a', 'b', 'c', 'd', 'e', 'e', 'f', 'g']" + "['a', 'b', 'c', 'd', 'e', 'f', 'g']" ] }, - "execution_count": 45, + "execution_count": 28, "metadata": {}, "output_type": "execute_result" } @@ -857,17 +857,17 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 29, "id": "f2065b2a", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "['a', 'b', 'c', 'd', 'e', 'f', 'g']" + "['a', 'b', 'c', 'd', 'f', 'g']" ] }, - "execution_count": 52, + "execution_count": 29, "metadata": {}, "output_type": "execute_result" } @@ -888,7 +888,7 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 30, "id": "b22da905", "metadata": {}, "outputs": [ @@ -898,7 +898,7 @@ "'b'" ] }, - "execution_count": 46, + "execution_count": 30, "metadata": {}, "output_type": "execute_result" } @@ -919,7 +919,7 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 31, "id": "01bdff91", "metadata": {}, "outputs": [ @@ -929,7 +929,7 @@ "['a', 'c']" ] }, - "execution_count": 47, + "execution_count": 31, "metadata": {}, "output_type": "execute_result" } @@ -948,7 +948,7 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": 32, "id": "babe366e", "metadata": {}, "outputs": [], @@ -968,7 +968,7 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 33, "id": "f80f5b1d", "metadata": {}, "outputs": [ @@ -978,7 +978,7 @@ "['a', 'c']" ] }, - "execution_count": 49, + "execution_count": 33, "metadata": {}, "output_type": "execute_result" } @@ -997,7 +997,7 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 34, "id": "861f8e7e", "metadata": { "tags": [] @@ -1032,7 +1032,7 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": 35, "id": "1b50bc13", "metadata": {}, "outputs": [ @@ -1042,7 +1042,7 @@ "['s', 'p', 'a', 'm']" ] }, - "execution_count": 53, + "execution_count": 35, "metadata": {}, "output_type": "execute_result" } @@ -1064,7 +1064,7 @@ }, { "cell_type": "code", - "execution_count": 54, + "execution_count": 36, "id": "c28e5127", "metadata": {}, "outputs": [ @@ -1074,7 +1074,7 @@ "['pining', 'for', 'the', 'fjords']" ] }, - "execution_count": 54, + "execution_count": 36, "metadata": {}, "output_type": "execute_result" } @@ -1095,7 +1095,7 @@ }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 37, "id": "ec6ea206", "metadata": {}, "outputs": [ @@ -1105,7 +1105,7 @@ "['ex', 'parrot']" ] }, - "execution_count": 55, + "execution_count": 37, "metadata": {}, "output_type": "execute_result" } @@ -1127,7 +1127,7 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 38, "id": "75c74d3c", "metadata": {}, "outputs": [ @@ -1137,7 +1137,7 @@ "'pining for the fjords'" ] }, - "execution_count": 56, + "execution_count": 38, "metadata": {}, "output_type": "execute_result" } @@ -1171,7 +1171,7 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": 39, "id": "a5df1e10", "metadata": {}, "outputs": [ @@ -1200,7 +1200,7 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 40, "id": "76b2c2e3", "metadata": {}, "outputs": [ @@ -1232,7 +1232,7 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 41, "id": "7e844887", "metadata": {}, "outputs": [], @@ -1253,7 +1253,7 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 42, "id": "9db54d53", "metadata": {}, "outputs": [ @@ -1263,7 +1263,7 @@ "['a', 'b', 'c']" ] }, - "execution_count": 61, + "execution_count": 42, "metadata": {}, "output_type": "execute_result" } @@ -1283,7 +1283,7 @@ }, { "cell_type": "code", - "execution_count": 62, + "execution_count": 43, "id": "33d11287", "metadata": {}, "outputs": [ @@ -1293,7 +1293,7 @@ "['c', 'a', 'b']" ] }, - "execution_count": 62, + "execution_count": 43, "metadata": {}, "output_type": "execute_result" } @@ -1312,7 +1312,7 @@ }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 44, "id": "38c7cb0c", "metadata": {}, "outputs": [ @@ -1322,7 +1322,7 @@ "['e', 'e', 'l', 'r', 's', 't', 't']" ] }, - "execution_count": 63, + "execution_count": 44, "metadata": {}, "output_type": "execute_result" } @@ -1342,7 +1342,7 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 45, "id": "2adb2fc3", "metadata": {}, "outputs": [ @@ -1352,7 +1352,7 @@ "'eelrstt'" ] }, - "execution_count": 64, + "execution_count": 45, "metadata": {}, "output_type": "execute_result" } @@ -1381,7 +1381,7 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 46, "id": "aa547282", "metadata": {}, "outputs": [], @@ -1401,7 +1401,7 @@ }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 47, "id": "95a2aded", "metadata": { "tags": [] @@ -1423,7 +1423,7 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 48, "id": "3d75a28c", "metadata": { "tags": [] @@ -1459,7 +1459,7 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 49, "id": "a37e37bf", "metadata": {}, "outputs": [ @@ -1469,7 +1469,7 @@ "True" ] }, - "execution_count": 68, + "execution_count": 49, "metadata": {}, "output_type": "execute_result" } @@ -1492,7 +1492,7 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": 50, "id": "d6af7316", "metadata": {}, "outputs": [ @@ -1502,7 +1502,7 @@ "False" ] }, - "execution_count": 69, + "execution_count": 50, "metadata": {}, "output_type": "execute_result" } @@ -1523,7 +1523,7 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": 51, "id": "dea08b82", "metadata": { "tags": [] @@ -1538,7 +1538,7 @@ }, { "cell_type": "code", - "execution_count": 71, + "execution_count": 52, "id": "7e66ee69", "metadata": { "tags": [] @@ -1583,7 +1583,7 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": 53, "id": "d6a7eb5b", "metadata": {}, "outputs": [ @@ -1593,7 +1593,7 @@ "True" ] }, - "execution_count": 72, + "execution_count": 53, "metadata": {}, "output_type": "execute_result" } @@ -1614,7 +1614,7 @@ }, { "cell_type": "code", - "execution_count": 73, + "execution_count": 54, "id": "dd406791", "metadata": { "tags": [] @@ -1629,7 +1629,7 @@ }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 55, "id": "552e1e1e", "metadata": { "tags": [] @@ -1668,7 +1668,7 @@ }, { "cell_type": "code", - "execution_count": 75, + "execution_count": 56, "id": "6e3c1b24", "metadata": {}, "outputs": [ @@ -1678,7 +1678,7 @@ "[5, 2, 3]" ] }, - "execution_count": 75, + "execution_count": 56, "metadata": {}, "output_type": "execute_result" } @@ -1703,7 +1703,7 @@ }, { "cell_type": "code", - "execution_count": 76, + "execution_count": 57, "id": "dad8a246", "metadata": {}, "outputs": [], @@ -1735,7 +1735,7 @@ }, { "cell_type": "code", - "execution_count": 77, + "execution_count": 58, "id": "613b1845", "metadata": {}, "outputs": [], @@ -1754,7 +1754,7 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": 59, "id": "3aff3598", "metadata": {}, "outputs": [ @@ -1764,7 +1764,7 @@ "'a'" ] }, - "execution_count": 78, + "execution_count": 59, "metadata": {}, "output_type": "execute_result" } @@ -1784,7 +1784,7 @@ }, { "cell_type": "code", - "execution_count": 79, + "execution_count": 60, "id": "c10e4dcc", "metadata": {}, "outputs": [ @@ -1794,7 +1794,7 @@ "['b', 'c']" ] }, - "execution_count": 79, + "execution_count": 60, "metadata": {}, "output_type": "execute_result" } @@ -1813,7 +1813,7 @@ }, { "cell_type": "code", - "execution_count": 80, + "execution_count": 61, "id": "a13e72c7", "metadata": { "tags": [] @@ -1832,7 +1832,7 @@ }, { "cell_type": "code", - "execution_count": 81, + "execution_count": 62, "id": "1a06dae9", "metadata": { "tags": [] @@ -1844,7 +1844,7 @@ "[np.float64(2.05), np.float64(1.22), np.float64(1.06), np.float64(0.85)]" ] }, - "execution_count": 81, + "execution_count": 62, "metadata": {}, "output_type": "execute_result" }, @@ -1894,7 +1894,7 @@ }, { "cell_type": "code", - "execution_count": 82, + "execution_count": 63, "id": "6550f0b8", "metadata": { "tags": [] @@ -1906,7 +1906,7 @@ }, { "cell_type": "code", - "execution_count": 84, + "execution_count": 64, "id": "e5a94833", "metadata": {}, "outputs": [ @@ -2916,7 +2916,7 @@ " ...]" ] }, - "execution_count": 84, + "execution_count": 64, "metadata": {}, "output_type": "execute_result" } @@ -2946,7 +2946,7 @@ }, { "cell_type": "code", - "execution_count": 86, + "execution_count": 65, "id": "32e28204", "metadata": {}, "outputs": [ @@ -2956,7 +2956,7 @@ "'aa\\naah\\naahed\\naahing\\naahs\\naal\\naalii\\naaliis\\naals\\naardvark\\naardvarks\\naardwolf\\naardwolves\\naas\\naasvogel\\naasvogels\\naba\\nabaca\\nabacas\\nabaci\\naback\\nabacus\\nabacuses\\nabaft\\nabaka\\nabakas\\nabalone\\nabalones\\nabamp\\nabampere\\nabamperes\\nabamps\\nabandon\\nabandoned\\nabandoning\\nabandonment\\nabandonments\\nabandons\\nabas\\nabase\\nabased\\nabasedly\\nabasement\\nabasements\\nabaser\\nabasers\\nabases\\nabash\\nabashed\\nabashes\\nabashing\\nabasing\\nabatable\\nabate\\nabated\\nabatement\\nabatements\\nabater\\nabaters\\nabates\\nabating\\nabatis\\nabatises\\nabator\\nabators\\nabattis\\nabattises\\nabattoir\\nabattoirs\\nabaxial\\nabaxile\\nabbacies\\nabbacy\\nabbatial\\nabbe\\nabbes\\nabbess\\nabbesses\\nabbey\\nabbeys\\nabbot\\nabbotcies\\nabbotcy\\nabbots\\nabbreviate\\nabbreviated\\nabbreviates\\nabbreviating\\nabbreviation\\nabbreviations\\nabdicate\\nabdicated\\nabdicates\\nabdicating\\nabdication\\nabdications\\nabdomen\\nabdomens\\nabdomina\\nabdominal\\nabdominally\\nabduce\\nabduced\\nabducens\\nabducent\\nabducentes\\nabduces\\nabducing\\nabduct\\nabducted\\nabducting\\nabductor\\nabductores\\nabductors\\nabducts\\nabeam\\nabed\\nabele\\nabeles\\nabelmosk\\nabelmosks\\naberrant\\naberrants\\naberration\\naberrations\\nabet\\nabetment\\nabetments\\nabets\\nabettal\\nabettals\\nabetted\\nabetter\\nabetters\\nabetting\\nabettor\\nabettors\\nabeyance\\nabeyances\\nabeyancies\\nabeyancy\\nabeyant\\nabfarad\\nabfarads\\nabhenries\\nabhenry\\nabhenrys\\nabhor\\nabhorred\\nabhorrence\\nabhorrences\\nabhorrent\\nabhorrer\\nabhorrers\\nabhorring\\nabhors\\nabidance\\nabidances\\nabide\\nabided\\nabider\\nabiders\\nabides\\nabiding\\nabied\\nabies\\nabigail\\nabigails\\nabilities\\nability\\nabioses\\nabiosis\\nabiotic\\nabject\\nabjectly\\nabjectness\\nabjectnesses\\nabjuration\\nabjurations\\nabjure\\nabjured\\nabjurer\\nabjurers\\nabjures\\nabjuring\\nablate\\nablated\\nablates\\nablating\\nablation\\nablations\\nablative\\nablatives\\nablaut\\nablauts\\nablaze\\nable\\nablegate\\nablegates\\nabler\\nables\\nablest\\nablings\\nablins\\nabloom\\nabluent\\nabluents\\nablush\\nabluted\\nablution\\nablutions\\nably\\nabmho\\nabmhos\\nabnegate\\nabnegated\\nabnegates\\nabnegating\\nabnegation\\nabnegations\\nabnormal\\nabnormalities\\nabnormality\\nabnormally\\nabnormals\\nabo\\naboard\\nabode\\naboded\\nabodes\\naboding\\nabohm\\nabohms\\naboideau\\naboideaus\\naboideaux\\naboil\\naboiteau\\naboiteaus\\naboiteaux\\nabolish\\nabolished\\nabolishes\\nabolishing\\nabolition\\nabolitions\\nabolla\\nabollae\\naboma\\nabomas\\nabomasa\\nabomasal\\nabomasi\\nabomasum\\nabomasus\\nabominable\\nabominate\\nabominated\\nabominates\\nabominating\\nabomination\\nabominations\\naboon\\naboral\\naborally\\naboriginal\\naborigine\\naborigines\\naborning\\nabort\\naborted\\naborter\\naborters\\naborting\\nabortion\\nabortions\\nabortive\\naborts\\nabos\\nabought\\naboulia\\naboulias\\naboulic\\nabound\\nabounded\\nabounding\\nabounds\\nabout\\nabove\\naboveboard\\naboves\\nabracadabra\\nabradant\\nabradants\\nabrade\\nabraded\\nabrader\\nabraders\\nabrades\\nabrading\\nabrasion\\nabrasions\\nabrasive\\nabrasively\\nabrasiveness\\nabrasivenesses\\nabrasives\\nabreact\\nabreacted\\nabreacting\\nabreacts\\nabreast\\nabri\\nabridge\\nabridged\\nabridgement\\nabridgements\\nabridger\\nabridgers\\nabridges\\nabridging\\nabridgment\\nabridgments\\nabris\\nabroach\\nabroad\\nabrogate\\nabrogated\\nabrogates\\nabrogating\\nabrupt\\nabrupter\\nabruptest\\nabruptly\\nabscess\\nabscessed\\nabscesses\\nabscessing\\nabscise\\nabscised\\nabscises\\nabscisin\\nabscising\\nabscisins\\nabscissa\\nabscissae\\nabscissas\\nabscond\\nabsconded\\nabsconding\\nabsconds\\nabsence\\nabsences\\nabsent\\nabsented\\nabsentee\\nabsentees\\nabsenter\\nabsenters\\nabsenting\\nabsently\\nabsentminded\\nabsentmindedly\\nabsentmindedness\\nabsentmindednesses\\nabsents\\nabsinth\\nabsinthe\\nabsinthes\\nabsinths\\nabsolute\\nabsolutely\\nabsoluter\\nabsolutes\\nabsolutest\\nabsolution\\nabsolutions\\nabsolve\\nabsolved\\nabsolver\\nabsolvers\\nabsolves\\nabsolving\\nabsonant\\nabsorb\\nabsorbed\\nabsorbencies\\nabsorbency\\nabsorbent\\nabsorber\\nabsorbers\\nabsorbing\\nabsorbingly\\nabsorbs\\nabsorption\\nabsorptions\\nabsorptive\\nabstain\\nabstained\\nabstainer\\nabstainers\\nabstaining\\nabstains\\nabstemious\\nabstemiously\\nabstention\\nabstentions\\nabsterge\\nabsterged\\nabsterges\\nabsterging\\nabstinence\\nabstinences\\nabstract\\nabstracted\\nabstracter\\nabstractest\\nabstracting\\nabstraction\\nabstractions\\nabstractly\\nabstractness\\nabstractnesses\\nabstracts\\nabstrict\\nabstricted\\nabstricting\\nabstricts\\nabstruse\\nabstrusely\\nabstruseness\\nabstrusenesses\\nabstruser\\nabstrusest\\nabsurd\\nabsurder\\nabsurdest\\nabsurdities\\nabsurdity\\nabsurdly\\nabsurds\\nabubble\\nabulia\\nabulias\\nabulic\\nabundance\\nabundances\\nabundant\\nabundantly\\nabusable\\nabuse\\nabused\\nabuser\\nabusers\\nabuses\\nabusing\\nabusive\\nabusively\\nabusiveness\\nabusivenesses\\nabut\\nabutilon\\nabutilons\\nabutment\\nabutments\\nabuts\\nabuttal\\nabuttals\\nabutted\\nabutter\\nabutters\\nabutting\\nabuzz\\nabvolt\\nabvolts\\nabwatt\\nabwatts\\naby\\nabye\\nabyed\\nabyes\\nabying\\nabys\\nabysm\\nabysmal\\nabysmally\\nabysms\\nabyss\\nabyssal\\nabysses\\nacacia\\nacacias\\nacademe\\nacademes\\nacademia\\nacademias\\nacademic\\nacademically\\nacademics\\nacademies\\nacademy\\nacajou\\nacajous\\nacaleph\\nacalephae\\nacalephe\\nacalephes\\nacalephs\\nacanthi\\nacanthus\\nacanthuses\\nacari\\nacarid\\nacaridan\\nacaridans\\nacarids\\nacarine\\nacarines\\nacaroid\\nacarpous\\nacarus\\nacaudal\\nacaudate\\nacauline\\nacaulose\\nacaulous\\naccede\\nacceded\\nacceder\\nacceders\\naccedes\\nacceding\\naccelerate\\naccelerated\\naccelerates\\naccelerating\\nacceleration\\naccelerations\\naccelerator\\naccelerators\\naccent\\naccented\\naccenting\\naccentor\\naccentors\\naccents\\naccentual\\naccentuate\\naccentuated\\naccentuates\\naccentuating\\naccentuation\\naccentuations\\naccept\\nacceptabilities\\nacceptability\\nacceptable\\nacceptance\\nacceptances\\naccepted\\nacceptee\\nacceptees\\naccepter\\naccepters\\naccepting\\nacceptor\\nacceptors\\naccepts\\naccess\\naccessed\\naccesses\\naccessibilities\\naccessibility\\naccessible\\naccessing\\naccession\\naccessions\\naccessories\\naccessory\\naccident\\naccidental\\naccidentally\\naccidentals\\naccidents\\naccidie\\naccidies\\nacclaim\\nacclaimed\\nacclaiming\\nacclaims\\nacclamation\\nacclamations\\nacclimate\\nacclimated\\nacclimates\\nacclimating\\nacclimation\\nacclimations\\nacclimatization\\nacclimatizations\\nacclimatize\\nacclimatizes\\naccolade\\naccolades\\naccommodate\\naccommodated\\naccommodates\\naccommodating\\naccommodation\\naccommodations\\naccompanied\\naccompanies\\naccompaniment\\naccompaniments\\naccompanist\\naccompany\\naccompanying\\naccomplice\\naccomplices\\naccomplish\\naccomplished\\naccomplisher\\naccomplishers\\naccomplishes\\naccomplishing\\naccomplishment\\naccomplishments\\naccord\\naccordance\\naccordant\\naccorded\\naccorder\\naccorders\\naccording\\naccordingly\\naccordion\\naccordions\\naccords\\naccost\\naccosted\\naccosting\\naccosts\\naccount\\naccountabilities\\naccountability\\naccountable\\naccountancies\\naccountancy\\naccountant\\naccountants\\naccounted\\naccounting\\naccountings\\naccounts\\naccouter\\naccoutered\\naccoutering\\naccouters\\naccoutre\\naccoutred\\naccoutrement\\naccoutrements\\naccoutres\\naccoutring\\naccredit\\naccredited\\naccrediting\\naccredits\\naccrete\\naccreted\\naccretes\\naccreting\\naccrual\\naccruals\\naccrue\\naccrued\\naccrues\\naccruing\\naccumulate\\naccumulated\\naccumulates\\naccumulating\\naccumulation\\naccumulations\\naccumulator\\naccumulators\\naccuracies\\naccuracy\\naccurate\\naccurately\\naccurateness\\naccuratenesses\\naccursed\\naccurst\\naccusal\\naccusals\\naccusant\\naccusants\\naccusation\\naccusations\\naccuse\\naccused\\naccuser\\naccusers\\naccuses\\naccusing\\naccustom\\naccustomed\\naccustoming\\naccustoms\\nace\\naced\\nacedia\\nacedias\\naceldama\\naceldamas\\nacentric\\nacequia\\nacequias\\nacerate\\nacerated\\nacerb\\nacerbate\\nacerbated\\nacerbates\\nacerbating\\nacerber\\nacerbest\\nacerbic\\nacerbities\\nacerbity\\nacerola\\nacerolas\\nacerose\\nacerous\\nacers\\nacervate\\nacervuli\\naces\\nacescent\\nacescents\\naceta\\nacetal\\nacetals\\nacetamid\\nacetamids\\nacetate\\nacetated\\nacetates\\nacetic\\nacetified\\nacetifies\\nacetify\\nacetifying\\nacetone\\nacetones\\nacetonic\\nacetose\\nacetous\\nacetoxyl\\nacetoxyls\\nacetum\\nacetyl\\nacetylene\\nacetylenes\\nacetylic\\nacetyls\\nache\\nached\\nachene\\nachenes\\nachenial\\naches\\nachier\\nachiest\\nachievable\\nachieve\\nachieved\\nachievement\\nachievements\\nachiever\\nachievers\\nachieves\\nachieving\\nachiness\\nachinesses\\naching\\nachingly\\nachiote\\nachiotes\\nachoo\\nachromat\\nachromats\\nachromic\\nachy\\nacicula\\naciculae\\nacicular\\naciculas\\nacid\\nacidhead\\nacidheads\\nacidic\\nacidified\\nacidifies\\nacidify\\nacidifying\\nacidities\\nacidity\\nacidly\\nacidness\\nacidnesses\\nacidoses\\nacidosis\\nacidotic\\nacids\\nacidy\\nacierate\\nacierated\\nacierates\\nacierating\\naciform\\nacinar\\nacing\\nacini\\nacinic\\nacinose\\nacinous\\nacinus\\nacknowledge\\nacknowledged\\nacknowledgement\\nacknowledgements\\nacknowledges\\nacknowledging\\nacknowledgment\\nacknowledgments\\naclinic\\nacmatic\\nacme\\nacmes\\nacmic\\nacne\\nacned\\nacnes\\nacnode\\nacnodes\\nacock\\nacold\\nacolyte\\nacolytes\\naconite\\naconites\\naconitic\\naconitum\\naconitums\\nacorn\\nacorns\\nacoustic\\nacoustical\\nacoustically\\nacoustics\\nacquaint\\nacquaintance\\nacquaintances\\nacquaintanceship\\nacquaintanceships\\nacquainted\\nacquainting\\nacquaints\\nacquest\\nacquests\\nacquiesce\\nacquiesced\\nacquiescence\\nacquiescences\\nacquiescent\\nacquiescently\\nacquiesces\\nacquiescing\\nacquire\\nacquired\\nacquirer\\nacquirers\\nacquires\\nacquiring\\nacquisition\\nacquisitions\\nacquisitive\\nacquit\\nacquits\\nacquitted\\nacquitting\\nacrasin\\nacrasins\\nacre\\nacreage\\nacreages\\nacred\\nacres\\nacrid\\nacrider\\nacridest\\nacridine\\nacridines\\nacridities\\nacridity\\nacridly\\nacridness\\nacridnesses\\nacrimonies\\nacrimonious\\nacrimony\\nacrobat\\nacrobatic\\nacrobats\\nacrodont\\nacrodonts\\nacrogen\\nacrogens\\nacrolein\\nacroleins\\nacrolith\\nacroliths\\nacromia\\nacromial\\nacromion\\nacronic\\nacronym\\nacronyms\\nacross\\nacrostic\\nacrostics\\nacrotic\\nacrotism\\nacrotisms\\nacrylate\\nacrylates\\nacrylic\\nacrylics\\nact\\nacta\\nactable\\nacted\\nactin\\nactinal\\nacting\\nactings\\nactinia\\nactiniae\\nactinian\\nactinians\\nactinias\\nactinic\\nactinide\\nactinides\\nactinism\\nactinisms\\nactinium\\nactiniums\\nactinoid\\nactinoids\\nactinon\\nactinons\\nactins\\naction\\nactions\\nactivate\\nactivated\\nactivates\\nactivating\\nactivation\\nactivations\\nactive\\nactively\\nactives\\nactivism\\nactivisms\\nactivist\\nactivists\\nactivities\\nactivity\\nactor\\nactorish\\nactors\\nactress\\nactresses\\nacts\\nactual\\nactualities\\nactuality\\nactualization\\nactualizations\\nactualize\\nactualized\\nactualizes\\nactualizing\\nactually\\nactuarial\\nactuaries\\nactuary\\nactuate\\nactuated\\nactuates\\nactuating\\nactuator\\nactuators\\nacuate\\nacuities\\nacuity\\naculeate\\nacumen\\nacumens\\nacupuncture\\nacupunctures\\nacupuncturist\\nacupuncturists\\nacutance\\nacutances\\nacute\\nacutely\\nacuteness\\nacutenesses\\nacuter\\nacutes\\nacutest\\nacyclic\\nacyl\\nacylate\\nacylated\\nacylates\\nacylating\\nacyls\\nad\\nadage\\nadages\\nadagial\\nadagio\\nadagios\\nadamance\\nadamances\\nadamancies\\nadamancy\\nadamant\\nadamantlies\\nadamantly\\nadamants\\nadamsite\\nadamsites\\nadapt\\nadaptabilities\\nadaptability\\nadaptable\\nadaptation\\nadaptations\\nadapted\\nadapter\\nadapters\\nadapting\\nadaption\\nadaptions\\nadaptive\\nadaptor\\nadaptors\\nadapts\\nadaxial\\nadd\\naddable\\naddax\\naddaxes\\nadded\\naddedly\\naddend\\naddenda\\naddends\\naddendum\\nadder\\nadders\\naddible\\naddict\\naddicted\\naddicting\\naddiction\\naddictions\\naddictive\\naddicts\\nadding\\naddition\\nadditional\\nadditionally\\nadditions\\nadditive\\nadditives\\naddle\\naddled\\naddles\\naddling\\naddress\\naddressable\\naddressed\\naddresses\\naddressing\\naddrest\\nadds\\nadduce\\nadduced\\nadducent\\nadducer\\nadducers\\nadduces\\nadducing\\nadduct\\nadducted\\nadducting\\nadductor\\nadductors\\nadducts\\nadeem\\nadeemed\\nadeeming\\nadeems\\nadenine\\nadenines\\nadenitis\\nadenitises\\nadenoid\\nadenoidal\\nadenoids\\nadenoma\\nadenomas\\nadenomata\\nadenopathy\\nadenyl\\nadenyls\\nadept\\nadepter\\nadeptest\\nadeptly\\nadeptness\\nadeptnesses\\nadepts\\nadequacies\\nadequacy\\nadequate\\nadequately\\nadhere\\nadhered\\nadherence\\nadherences\\nadherend\\nadherends\\nadherent\\nadherents\\nadherer\\nadherers\\nadheres\\nadhering\\nadhesion\\nadhesions\\nadhesive\\nadhesives\\nadhibit\\nadhibited\\nadhibiting\\nadhibits\\nadieu\\nadieus\\nadieux\\nadios\\nadipic\\nadipose\\nadiposes\\nadiposis\\nadipous\\nadit\\nadits\\nadjacent\\nadjectival\\nadjectivally\\nadjective\\nadjectives\\nadjoin\\nadjoined\\nadjoining\\nadjoins\\nadjoint\\nadjoints\\nadjourn\\nadjourned\\nadjourning\\nadjournment\\nadjournments\\nadjourns\\nadjudge\\nadjudged\\nadjudges\\nadjudging\\nadjudicate\\nadjudicated\\nadjudicates\\nadjudicating\\nadjudication\\nadjudications\\nadjunct\\nadjuncts\\nadjure\\nadjured\\nadjurer\\nadjurers\\nadjures\\nadjuring\\nadjuror\\nadjurors\\nadjust\\nadjustable\\nadjusted\\nadjuster\\nadjusters\\nadjusting\\nadjustment\\nadjustments\\nadjustor\\nadjustors\\nadjusts\\nadjutant\\nadjutants\\nadjuvant\\nadjuvants\\nadman\\nadmass\\nadmen\\nadminister\\nadministers\\nadministrable\\nadministrant\\nadministrants\\nadministration\\nadministrations\\nadministrative\\nadministratively\\nadministrator\\nadministrators\\nadminstration\\nadminstrations\\nadmiral\\nadmirals\\nadmiration\\nadmirations\\nadmire\\nadmired\\nadmirer\\nadmirers\\nadmires\\nadmiring\\nadmiringly\\nadmissibilities\\nadmissibility\\nadmissible\\nadmissibly\\nadmission\\nadmissions\\nadmit\\nadmits\\nadmittance\\nadmittances\\nadmitted\\nadmittedly\\nadmitter\\nadmitters\\nadmitting\\nadmix\\nadmixed\\nadmixes\\nadmixing\\nadmixt\\nadmixture\\nadmixtures\\nadmonish\\nadmonished\\nadmonishes\\nadmonishing\\nadnate\\nadnation\\nadnations\\nadnexa\\nadnexal\\nadnoun\\nadnouns\\nado\\nadobe\\nadobes\\nadolescence\\nadolescences\\nadolescent\\nadolescents\\nadopt\\nadopted\\nadoptee\\nadoptees\\nadopter\\nadopters\\nadopting\\nadoption\\nadoptions\\nadoptive\\nadopts\\nadorable\\nadorably\\nadoration\\nadorations\\nadore\\nadored\\nadorer\\nadorers\\nadores\\nadoring\\nadorn\\nadorned\\nadorner\\nadorners\\nadorning\\nadorns\\nados\\nadown\\nadoze\\nadrenal\\nadrenals\\nadriamycin\\nadrift\\nadroit\\nadroiter\\nadroitest\\nadroitly\\nadroitness\\nadroitnesses\\nads\\nadscript\\nadscripts\\nadsorb\\nadsorbed\\nadsorbing\\nadsorbs\\nadularia\\nadularias\\nadulate\\nadulated\\nadulates\\nadulating\\nadulator\\nadulators\\nadult\\nadulterate\\nadulterated\\nadulterates\\nadulterating\\nadulteration\\nadulterations\\nadulterer\\nadulterers\\nadulteress\\nadulteresses\\nadulteries\\nadulterous\\nadultery\\nadulthood\\nadulthoods\\nadultly\\nadults\\nadumbral\\nadunc\\naduncate\\naduncous\\nadust\\nadvance\\nadvanced\\nadvancement\\nadvancements\\nadvancer\\nadvancers\\nadvances\\nadvancing\\nadvantage\\nadvantageous\\nadvantageously\\nadvantages\\nadvent\\nadventitious\\nadventitiously\\nadventitiousness\\nadventitiousnesses\\nadvents\\nadventure\\nadventurer\\nadventurers\\nadventures\\nadventuresome\\nadventurous\\nadverb\\nadverbially\\nadverbs\\nadversaries\\nadversary\\nadverse\\nadversity\\nadvert\\nadverted\\nadverting\\nadvertise\\nadvertised\\nadvertisement\\nadvertisements\\nadvertiser\\nadvertisers\\nadvertises\\nadvertising\\nadvertisings\\nadverts\\nadvice\\nadvices\\nadvisabilities\\nadvisability\\nadvisable\\nadvise\\nadvised\\nadvisee\\nadvisees\\nadvisement\\nadvisements\\nadviser\\nadvisers\\nadvises\\nadvising\\nadvisor\\nadvisories\\nadvisors\\nadvisory\\nadvocacies\\nadvocacy\\nadvocate\\nadvocated\\nadvocates\\nadvocating\\nadvowson\\nadvowsons\\nadynamia\\nadynamias\\nadynamic\\nadyta\\nadytum\\nadz\\nadze\\nadzes\\nae\\naecia\\naecial\\naecidia\\naecidium\\naecium\\naedes\\naedile\\naediles\\naedine\\naegis\\naegises\\naeneous\\naeneus\\naeolian\\naeon\\naeonian\\naeonic\\naeons\\naerate\\naerated\\naerates\\naerating\\naeration\\naerations\\naerator\\naerators\\naerial\\naerially\\naerials\\naerie\\naerier\\naeries\\naeriest\\naerified\\naerifies\\naeriform\\naerify\\naerifying\\naerily\\naero\\naerobe\\naerobes\\naerobia\\naerobic\\naerobium\\naeroduct\\naeroducts\\naerodynamic\\naerodynamical\\naerodynamically\\naerodynamics\\naerodyne\\naerodynes\\naerofoil\\naerofoils\\naerogel\\naerogels\\naerogram\\naerograms\\naerolite\\naerolites\\naerolith\\naeroliths\\naerologies\\naerology\\naeronaut\\naeronautic\\naeronautical\\naeronautically\\naeronautics\\naeronauts\\naeronomies\\naeronomy\\naerosol\\naerosols\\naerospace\\naerostat\\naerostats\\naerugo\\naerugos\\naery\\naesthete\\naesthetes\\naesthetic\\naesthetically\\naesthetics\\naestival\\naether\\naetheric\\naethers\\nafar\\nafars\\nafeard\\nafeared\\naff\\naffabilities\\naffability\\naffable\\naffably\\naffair\\naffaire\\naffaires\\naffairs\\naffect\\naffectation\\naffectations\\naffected\\naffectedly\\naffecter\\naffecters\\naffecting\\naffectingly\\naffection\\naffectionate\\naffectionately\\naffections\\naffects\\nafferent\\naffiance\\naffianced\\naffiances\\naffiancing\\naffiant\\naffiants\\naffiche\\naffiches\\naffidavit\\naffidavits\\naffiliate\\naffiliated\\naffiliates\\naffiliating\\naffiliation\\naffiliations\\naffine\\naffined\\naffinely\\naffines\\naffinities\\naffinity\\naffirm\\naffirmation\\naffirmations\\naffirmative\\naffirmatively\\naffirmatives\\naffirmed\\naffirmer\\naffirmers\\naffirming\\naffirms\\naffix\\naffixal\\naffixed\\naffixer\\naffixers\\naffixes\\naffixial\\naffixing\\nafflatus\\nafflatuses\\nafflict\\nafflicted\\nafflicting\\naffliction\\nafflictions\\nafflicts\\naffluence\\naffluences\\naffluent\\naffluents\\nafflux\\naffluxes\\nafford\\nafforded\\naffording\\naffords\\nafforest\\nafforested\\nafforesting\\nafforests\\naffray\\naffrayed\\naffrayer\\naffrayers\\naffraying\\naffrays\\naffright\\naffrighted\\naffrighting\\naffrights\\naffront\\naffronted\\naffronting\\naffronts\\naffusion\\naffusions\\nafghan\\nafghani\\nafghanis\\nafghans\\nafield\\nafire\\naflame\\nafloat\\naflutter\\nafoot\\nafore\\nafoul\\nafraid\\nafreet\\nafreets\\nafresh\\nafrit\\nafrits\\naft\\nafter\\nafterlife\\nafterlifes\\naftermath\\naftermaths\\nafternoon\\nafternoons\\nafters\\naftertax\\nafterthought\\nafterthoughts\\nafterward\\nafterwards\\naftmost\\naftosa\\naftosas\\naga\\nagain\\nagainst\\nagalloch\\nagallochs\\nagalwood\\nagalwoods\\nagama\\nagamas\\nagamete\\nagametes\\nagamic\\nagamous\\nagapae\\nagapai\\nagape\\nagapeic\\nagar\\nagaric\\nagarics\\nagars\\nagas\\nagate\\nagates\\nagatize\\nagatized\\nagatizes\\nagatizing\\nagatoid\\nagave\\nagaves\\nagaze\\nage\\naged\\nagedly\\nagedness\\nagednesses\\nagee\\nageing\\nageings\\nageless\\nagelong\\nagencies\\nagency\\nagenda\\nagendas\\nagendum\\nagendums\\nagene\\nagenes\\nageneses\\nagenesia\\nagenesias\\nagenesis\\nagenetic\\nagenize\\nagenized\\nagenizes\\nagenizing\\nagent\\nagential\\nagentries\\nagentry\\nagents\\nager\\nageratum\\nageratums\\nagers\\nages\\nagger\\naggers\\naggie\\naggies\\naggrade\\naggraded\\naggrades\\naggrading\\naggrandize\\naggrandized\\naggrandizement\\naggrandizements\\naggrandizes\\naggrandizing\\naggravate\\naggravates\\naggravation\\naggravations\\naggregate\\naggregated\\naggregates\\naggregating\\naggress\\naggressed\\naggresses\\naggressing\\naggression\\naggressions\\naggressive\\naggressively\\naggressiveness\\naggressivenesses\\naggrieve\\naggrieved\\naggrieves\\naggrieving\\nagha\\naghas\\naghast\\nagile\\nagilely\\nagilities\\nagility\\nagin\\naging\\nagings\\naginner\\naginners\\nagio\\nagios\\nagiotage\\nagiotages\\nagist\\nagisted\\nagisting\\nagists\\nagitable\\nagitate\\nagitated\\nagitates\\nagitating\\nagitation\\nagitations\\nagitato\\nagitator\\nagitators\\nagitprop\\nagitprops\\naglare\\nagleam\\naglee\\naglet\\naglets\\nagley\\naglimmer\\naglitter\\naglow\\nagly\\naglycon\\naglycone\\naglycones\\naglycons\\nagma\\nagmas\\nagminate\\nagnail\\nagnails\\nagnate\\nagnates\\nagnatic\\nagnation\\nagnations\\nagnize\\nagnized\\nagnizes\\nagnizing\\nagnomen\\nagnomens\\nagnomina\\nagnostic\\nagnostics\\nago\\nagog\\nagon\\nagonal\\nagone\\nagones\\nagonic\\nagonies\\nagonise\\nagonised\\nagonises\\nagonising\\nagonist\\nagonists\\nagonize\\nagonized\\nagonizes\\nagonizing\\nagonizingly\\nagons\\nagony\\nagora\\nagorae\\nagoras\\nagorot\\nagoroth\\nagouti\\nagouties\\nagoutis\\nagouty\\nagrafe\\nagrafes\\nagraffe\\nagraffes\\nagrapha\\nagraphia\\nagraphias\\nagraphic\\nagrarian\\nagrarianism\\nagrarianisms\\nagrarians\\nagree\\nagreeable\\nagreeableness\\nagreeablenesses\\nagreed\\nagreeing\\nagreement\\nagreements\\nagrees\\nagrestal\\nagrestic\\nagricultural\\nagriculturalist\\nagriculturalists\\nagriculture\\nagricultures\\nagriculturist\\nagriculturists\\nagrimonies\\nagrimony\\nagrologies\\nagrology\\nagronomies\\nagronomy\\naground\\nague\\naguelike\\nagues\\nagueweed\\nagueweeds\\naguish\\naguishly\\nah\\naha\\nahchoo\\nahead\\nahem\\nahimsa\\nahimsas\\nahold\\naholds\\nahorse\\nahoy\\nahoys\\nahull\\nai\\naiblins\\naid\\naide\\naided\\naider\\naiders\\naides\\naidful\\naiding\\naidless\\naidman\\naidmen\\naids\\naiglet\\naiglets\\naigret\\naigrets\\naigrette\\naigrettes\\naiguille\\naiguilles\\naikido\\naikidos\\nail\\nailed\\naileron\\nailerons\\nailing\\nailment\\nailments\\nails\\naim\\naimed\\naimer\\naimers\\naimful\\naimfully\\naiming\\naimless\\naimlessly\\naimlessness\\naimlessnesses\\naims\\nain\\naine\\nainee\\nains\\nainsell\\nainsells\\nair\\nairboat\\nairboats\\nairborne\\nairbound\\nairbrush\\nairbrushed\\nairbrushes\\nairbrushing\\nairburst\\nairbursts\\nairbus\\nairbuses\\nairbusses\\naircoach\\naircoaches\\naircondition\\nairconditioned\\nairconditioning\\nairconditions\\naircraft\\naircrew\\naircrews\\nairdrome\\nairdromes\\nairdrop\\nairdropped\\nairdropping\\nairdrops\\naired\\nairer\\nairest\\nairfield\\nairfields\\nairflow\\nairflows\\nairfoil\\nairfoils\\nairframe\\nairframes\\nairglow\\nairglows\\nairhead\\nairheads\\nairier\\nairiest\\nairily\\nairiness\\nairinesses\\nairing\\nairings\\nairless\\nairlift\\nairlifted\\nairlifting\\nairlifts\\nairlike\\nairline\\nairliner\\nairliners\\nairlines\\nairmail\\nairmailed\\nairmailing\\nairmails\\nairman\\nairmen\\nairn\\nairns\\nairpark\\nairparks\\nairplane\\nairplanes\\nairport\\nairports\\nairpost\\nairposts\\nairproof\\nairproofed\\nairproofing\\nairproofs\\nairs\\nairscrew\\nairscrews\\nairship\\nairships\\nairsick\\nairspace\\nairspaces\\nairspeed\\nairspeeds\\nairstrip\\nairstrips\\nairt\\nairted\\nairth\\nairthed\\nairthing\\nairths\\nairtight\\nairting\\nairts\\nairward\\nairwave\\nairwaves\\nairway\\nairways\\nairwise\\nairwoman\\nairwomen\\nairy\\nais\\naisle\\naisled\\naisles\\nait\\naitch\\naitches\\naits\\naiver\\naivers\\najar\\najee\\najiva\\najivas\\najowan\\najowans\\nakee\\nakees\\nakela\\nakelas\\nakene\\nakenes\\nakimbo\\nakin\\nakvavit\\nakvavits\\nala\\nalabaster\\nalabasters\\nalack\\nalacrities\\nalacrity\\nalae\\nalameda\\nalamedas\\nalamo\\nalamode\\nalamodes\\nalamos\\nalan\\naland\\nalands\\nalane\\nalang\\nalanin\\nalanine\\nalanines\\nalanins\\nalans\\nalant\\nalants\\nalanyl\\nalanyls\\nalar\\nalarm\\nalarmed\\nalarming\\nalarmism\\nalarmisms\\nalarmist\\nalarmists\\nalarms\\nalarum\\nalarumed\\nalaruming\\nalarums\\nalary\\nalas\\nalaska\\nalaskas\\nalastor\\nalastors\\nalate\\nalated\\nalation\\nalations\\nalb\\nalba\\nalbacore\\nalbacores\\nalbas\\nalbata\\nalbatas\\nalbatross\\nalbatrosses\\nalbedo\\nalbedos\\nalbeit\\nalbicore\\nalbicores\\nalbinal\\nalbinic\\nalbinism\\nalbinisms\\nalbino\\nalbinos\\nalbite\\nalbites\\nalbitic\\nalbs\\nalbum\\nalbumen\\nalbumens\\nalbumin\\nalbumins\\nalbumose\\nalbumoses\\nalbums\\nalburnum\\nalburnums\\nalcade\\nalcades\\nalcahest\\nalcahests\\nalcaic\\nalcaics\\nalcaide\\nalcaides\\nalcalde\\nalcaldes\\nalcayde\\nalcaydes\\nalcazar\\nalcazars\\nalchemic\\nalchemical\\nalchemies\\nalchemist\\nalchemists\\nalchemy\\nalchymies\\nalchymy\\nalcidine\\nalcohol\\nalcoholic\\nalcoholics\\nalcoholism\\nalcoholisms\\nalcohols\\nalcove\\nalcoved\\nalcoves\\naldehyde\\naldehydes\\nalder\\nalderman\\naldermen\\nalders\\naldol\\naldolase\\naldolases\\naldols\\naldose\\naldoses\\naldovandi\\naldrin\\naldrins\\nale\\naleatory\\nalec\\nalecs\\nalee\\nalef\\nalefs\\nalegar\\nalegars\\nalehouse\\nalehouses\\nalembic\\nalembics\\naleph\\nalephs\\nalert\\nalerted\\nalerter\\nalertest\\nalerting\\nalertly\\nalertness\\nalertnesses\\nalerts\\nales\\naleuron\\naleurone\\naleurones\\naleurons\\nalevin\\nalevins\\nalewife\\nalewives\\nalexia\\nalexias\\nalexin\\nalexine\\nalexines\\nalexins\\nalfa\\nalfaki\\nalfakis\\nalfalfa\\nalfalfas\\nalfaqui\\nalfaquin\\nalfaquins\\nalfaquis\\nalfas\\nalforja\\nalforjas\\nalfresco\\nalga\\nalgae\\nalgal\\nalgaroba\\nalgarobas\\nalgas\\nalgebra\\nalgebraic\\nalgebraically\\nalgebras\\nalgerine\\nalgerines\\nalgicide\\nalgicides\\nalgid\\nalgidities\\nalgidity\\nalgin\\nalginate\\nalginates\\nalgins\\nalgoid\\nalgologies\\nalgology\\nalgor\\nalgorism\\nalgorisms\\nalgorithm\\nalgorithms\\nalgors\\nalgum\\nalgums\\nalias\\naliases\\nalibi\\nalibied\\nalibies\\nalibiing\\nalibis\\nalible\\nalidad\\nalidade\\nalidades\\nalidads\\nalien\\nalienage\\nalienages\\nalienate\\nalienated\\nalienates\\nalienating\\nalienation\\nalienations\\naliened\\nalienee\\nalienees\\naliener\\nalieners\\naliening\\nalienism\\nalienisms\\nalienist\\nalienists\\nalienly\\nalienor\\nalienors\\naliens\\nalif\\naliform\\nalifs\\nalight\\nalighted\\nalighting\\nalights\\nalign\\naligned\\naligner\\naligners\\naligning\\nalignment\\nalignments\\naligns\\nalike\\naliment\\nalimentary\\nalimentation\\nalimented\\nalimenting\\naliments\\nalimonies\\nalimony\\naline\\nalined\\naliner\\naliners\\nalines\\nalining\\naliped\\nalipeds\\naliquant\\naliquot\\naliquots\\nalist\\nalit\\naliunde\\nalive\\naliyah\\naliyahs\\nalizarin\\nalizarins\\nalkahest\\nalkahests\\nalkali\\nalkalic\\nalkalies\\nalkalified\\nalkalifies\\nalkalify\\nalkalifying\\nalkalin\\nalkaline\\nalkalinities\\nalkalinity\\nalkalis\\nalkalise\\nalkalised\\nalkalises\\nalkalising\\nalkalize\\nalkalized\\nalkalizes\\nalkalizing\\nalkaloid\\nalkaloids\\nalkane\\nalkanes\\nalkanet\\nalkanets\\nalkene\\nalkenes\\nalkine\\nalkines\\nalkoxy\\nalkyd\\nalkyds\\nalkyl\\nalkylate\\nalkylated\\nalkylates\\nalkylating\\nalkylic\\nalkyls\\nalkyne\\nalkynes\\nall\\nallanite\\nallanites\\nallay\\nallayed\\nallayer\\nallayers\\nallaying\\nallays\\nallegation\\nallegations\\nallege\\nalleged\\nallegedly\\nalleger\\nallegers\\nalleges\\nallegiance\\nallegiances\\nalleging\\nallegorical\\nallegories\\nallegory\\nallegro\\nallegros\\nallele\\nalleles\\nallelic\\nallelism\\nallelisms\\nalleluia\\nalleluias\\nallergen\\nallergenic\\nallergens\\nallergic\\nallergies\\nallergin\\nallergins\\nallergist\\nallergists\\nallergy\\nalleviate\\nalleviated\\nalleviates\\nalleviating\\nalleviation\\nalleviations\\nalley\\nalleys\\nalleyway\\nalleyways\\nallheal\\nallheals\\nalliable\\nalliance\\nalliances\\nallied\\nallies\\nalligator\\nalligators\\nalliteration\\nalliterations\\nalliterative\\nallium\\nalliums\\nallobar\\nallobars\\nallocate\\nallocated\\nallocates\\nallocating\\nallocation\\nallocations\\nallod\\nallodia\\nallodial\\nallodium\\nallods\\nallogamies\\nallogamy\\nallonge\\nallonges\\nallonym\\nallonyms\\nallopath\\nallopaths\\nallopurinol\\nallot\\nallotment\\nallotments\\nallots\\nallotted\\nallottee\\nallottees\\nallotter\\nallotters\\nallotting\\nallotype\\nallotypes\\nallotypies\\nallotypy\\nallover\\nallovers\\nallow\\nallowable\\nallowance\\nallowances\\nallowed\\nallowing\\nallows\\nalloxan\\nalloxans\\nalloy\\nalloyed\\nalloying\\nalloys\\nalls\\nallseed\\nallseeds\\nallspice\\nallspices\\nallude\\nalluded\\nalludes\\nalluding\\nallure\\nallured\\nallurement\\nallurements\\nallurer\\nallurers\\nallures\\nalluring\\nallusion\\nallusions\\nallusive\\nallusively\\nallusiveness\\nallusivenesses\\nalluvia\\nalluvial\\nalluvials\\nalluvion\\nalluvions\\nalluvium\\nalluviums\\nally\\nallying\\nallyl\\nallylic\\nallyls\\nalma\\nalmagest\\nalmagests\\nalmah\\nalmahs\\nalmanac\\nalmanacs\\nalmas\\nalme\\nalmeh\\nalmehs\\nalmemar\\nalmemars\\nalmes\\nalmighty\\nalmner\\nalmners\\nalmond\\nalmonds\\nalmoner\\nalmoners\\nalmonries\\nalmonry\\nalmost\\nalms\\nalmsman\\nalmsmen\\nalmuce\\nalmuces\\nalmud\\nalmude\\nalmudes\\nalmuds\\nalmug\\nalmugs\\nalnico\\nalnicoes\\nalodia\\nalodial\\nalodium\\naloe\\naloes\\naloetic\\naloft\\nalogical\\naloha\\nalohas\\naloin\\naloins\\nalone\\nalong\\nalongside\\naloof\\naloofly\\nalopecia\\nalopecias\\nalopecic\\naloud\\nalow\\nalp\\nalpaca\\nalpacas\\nalpha\\nalphabet\\nalphabeted\\nalphabetic\\nalphabetical\\nalphabetically\\nalphabeting\\nalphabetize\\nalphabetized\\nalphabetizer\\nalphabetizers\\nalphabetizes\\nalphabetizing\\nalphabets\\nalphanumeric\\nalphanumerics\\nalphas\\nalphorn\\nalphorns\\nalphosis\\nalphosises\\nalphyl\\nalphyls\\nalpine\\nalpinely\\nalpines\\nalpinism\\nalpinisms\\nalpinist\\nalpinists\\nalps\\nalready\\nalright\\nalsike\\nalsikes\\nalso\\nalt\\naltar\\naltars\\nalter\\nalterant\\nalterants\\nalteration\\nalterations\\naltercation\\naltercations\\naltered\\nalterer\\nalterers\\naltering\\nalternate\\nalternated\\nalternates\\nalternating\\nalternation\\nalternations\\nalternative\\nalternatively\\nalternatives\\nalternator\\nalternators\\nalters\\nalthaea\\nalthaeas\\nalthea\\naltheas\\naltho\\nalthorn\\nalthorns\\nalthough\\naltimeter\\naltimeters\\naltitude\\naltitudes\\nalto\\naltogether\\naltos\\naltruism\\naltruisms\\naltruist\\naltruistic\\naltruistically\\naltruists\\nalts\\naludel\\naludels\\nalula\\nalulae\\nalular\\nalum\\nalumin\\nalumina\\naluminas\\nalumine\\nalumines\\naluminic\\nalumins\\naluminum\\naluminums\\nalumna\\nalumnae\\nalumni\\nalumnus\\nalumroot\\nalumroots\\nalums\\nalunite\\nalunites\\nalveolar\\nalveolars\\nalveoli\\nalveolus\\nalvine\\nalway\\nalways\\nalyssum\\nalyssums\\nam\\nama\\namadavat\\namadavats\\namadou\\namadous\\namah\\namahs\\namain\\namalgam\\namalgamate\\namalgamated\\namalgamates\\namalgamating\\namalgamation\\namalgamations\\namalgams\\namandine\\namanita\\namanitas\\namanuensis\\namaranth\\namaranths\\namarelle\\namarelles\\namarna\\namaryllis\\namaryllises\\namas\\namass\\namassed\\namasser\\namassers\\namasses\\namassing\\namateur\\namateurish\\namateurism\\namateurisms\\namateurs\\namative\\namatol\\namatols\\namatory\\namaze\\namazed\\namazedly\\namazement\\namazements\\namazes\\namazing\\namazingly\\namazon\\namazonian\\namazons\\nambage\\nambages\\nambari\\nambaries\\nambaris\\nambary\\nambassador\\nambassadorial\\nambassadors\\nambassadorship\\nambassadorships\\nambeer\\nambeers\\namber\\nambergris\\nambergrises\\namberies\\namberoid\\namberoids\\nambers\\nambery\\nambiance\\nambiances\\nambidextrous\\nambidextrously\\nambience\\nambiences\\nambient\\nambients\\nambiguities\\nambiguity\\nambiguous\\nambit\\nambition\\nambitioned\\nambitioning\\nambitions\\nambitious\\nambitiously\\nambits\\nambivalence\\nambivalences\\nambivalent\\nambivert\\nambiverts\\namble\\nambled\\nambler\\namblers\\nambles\\nambling\\nambo\\namboina\\namboinas\\nambones\\nambos\\namboyna\\namboynas\\nambries\\nambroid\\nambroids\\nambrosia\\nambrosias\\nambry\\nambsace\\nambsaces\\nambulance\\nambulances\\nambulant\\nambulate\\nambulated\\nambulates\\nambulating\\nambulation\\nambulatory\\nambush\\nambushed\\nambusher\\nambushers\\nambushes\\nambushing\\nameba\\namebae\\nameban\\namebas\\namebean\\namebic\\nameboid\\nameer\\nameerate\\nameerates\\nameers\\namelcorn\\namelcorns\\nameliorate\\nameliorated\\nameliorates\\nameliorating\\namelioration\\nameliorations\\namen\\namenable\\namenably\\namend\\namended\\namender\\namenders\\namending\\namendment\\namendments\\namends\\namenities\\namenity\\namens\\nament\\namentia\\namentias\\naments\\namerce\\namerced\\namercer\\namercers\\namerces\\namercing\\namesace\\namesaces\\namethyst\\namethysts\\nami\\namia\\namiabilities\\namiability\\namiable\\namiably\\namiantus\\namiantuses\\namias\\namicable\\namicably\\namice\\namices\\namid\\namidase\\namidases\\namide\\namides\\namidic\\namidin\\namidins\\namido\\namidogen\\namidogens\\namidol\\namidols\\namids\\namidship\\namidst\\namie\\namies\\namiga\\namigas\\namigo\\namigos\\namin\\namine\\namines\\naminic\\naminities\\naminity\\namino\\namins\\namir\\namirate\\namirates\\namirs\\namis\\namiss\\namities\\namitoses\\namitosis\\namitotic\\namitrole\\namitroles\\namity\\nammeter\\nammeters\\nammine\\nammines\\nammino\\nammo\\nammocete\\nammocetes\\nammonal\\nammonals\\nammonia\\nammoniac\\nammoniacs\\nammonias\\nammonic\\nammonified\\nammonifies\\nammonify\\nammonifying\\nammonite\\nammonites\\nammonium\\nammoniums\\nammonoid\\nammonoids\\nammos\\nammunition\\nammunitions\\namnesia\\namnesiac\\namnesiacs\\namnesias\\namnesic\\namnesics\\namnestic\\namnestied\\namnesties\\namnesty\\namnestying\\namnia\\namnic\\namnion\\namnionic\\namnions\\namniote\\namniotes\\namniotic\\namoeba\\namoebae\\namoeban\\namoebas\\namoebean\\namoebic\\namoeboid\\namok\\namoks\\namole\\namoles\\namong\\namongst\\namoral\\namorally\\namoretti\\namoretto\\namorettos\\namorini\\namorino\\namorist\\namorists\\namoroso\\namorous\\namorously\\namorousness\\namorousnesses\\namorphous\\namort\\namortise\\namortised\\namortises\\namortising\\namortization\\namortizations\\namortize\\namortized\\namortizes\\namortizing\\namotion\\namotions\\namount\\namounted\\namounting\\namounts\\namour\\namours\\namp\\namperage\\namperages\\nampere\\namperes\\nampersand\\nampersands\\namphibia\\namphibian\\namphibians\\namphibious\\namphioxi\\namphipod\\namphipods\\namphitheater\\namphitheaters\\namphora\\namphorae\\namphoral\\namphoras\\nample\\nampler\\namplest\\namplification\\namplifications\\namplified\\namplifier\\namplifiers\\namplifies\\namplify\\namplifying\\namplitude\\namplitudes\\namply\\nampoule\\nampoules\\namps\\nampul\\nampule\\nampules\\nampulla\\nampullae\\nampullar\\nampuls\\namputate\\namputated\\namputates\\namputating\\namputation\\namputations\\namputee\\namputees\\namreeta\\namreetas\\namrita\\namritas\\namtrac\\namtrack\\namtracks\\namtracs\\namu\\namuck\\namucks\\namulet\\namulets\\namus\\namusable\\namuse\\namused\\namusedly\\namusement\\namusements\\namuser\\namusers\\namuses\\namusing\\namusive\\namygdala\\namygdalae\\namygdale\\namygdales\\namygdule\\namygdules\\namyl\\namylase\\namylases\\namylene\\namylenes\\namylic\\namyloid\\namyloids\\namylose\\namyloses\\namyls\\namylum\\namylums\\nan\\nana\\nanabaena\\nanabaenas\\nanabas\\nanabases\\nanabasis\\nanabatic\\nanableps\\nanablepses\\nanabolic\\nanachronism\\nanachronisms\\nanachronistic\\nanaconda\\nanacondas\\nanadem\\nanadems\\nanaemia\\nanaemias\\nanaemic\\nanaerobe\\nanaerobes\\nanaesthesiology\\nanaesthetic\\nanaesthetics\\nanaglyph\\nanaglyphs\\nanagoge\\nanagoges\\nanagogic\\nanagogies\\nanagogy\\nanagram\\nanagrammed\\nanagramming\\nanagrams\\nanal\\nanalcime\\nanalcimes\\nanalcite\\nanalcites\\nanalecta\\nanalects\\nanalemma\\nanalemmas\\nanalemmata\\nanalgesic\\nanalgesics\\nanalgia\\nanalgias\\nanalities\\nanality\\nanally\\nanalog\\nanalogic\\nanalogical\\nanalogically\\nanalogies\\nanalogously\\nanalogs\\nanalogue\\nanalogues\\nanalogy\\nanalyse\\nanalysed\\nanalyser\\nanalysers\\nanalyses\\nanalysing\\nanalysis\\nanalyst\\nanalysts\\nanalytic\\nanalytical\\nanalyzable\\nanalyze\\nanalyzed\\nanalyzer\\nanalyzers\\nanalyzes\\nanalyzing\\nananke\\nanankes\\nanapaest\\nanapaests\\nanapest\\nanapests\\nanaphase\\nanaphases\\nanaphora\\nanaphoras\\nanaphylactic\\nanarch\\nanarchic\\nanarchies\\nanarchism\\nanarchisms\\nanarchist\\nanarchistic\\nanarchists\\nanarchs\\nanarchy\\nanarthria\\nanas\\nanasarca\\nanasarcas\\nanatase\\nanatases\\nanathema\\nanathemas\\nanathemata\\nanatomic\\nanatomical\\nanatomically\\nanatomies\\nanatomist\\nanatomists\\nanatomy\\nanatoxin\\nanatoxins\\nanatto\\nanattos\\nancestor\\nancestors\\nancestral\\nancestress\\nancestresses\\nancestries\\nancestry\\nanchor\\nanchorage\\nanchorages\\nanchored\\nanchoret\\nanchorets\\nanchoring\\nanchorman\\nanchormen\\nanchors\\nanchovies\\nanchovy\\nanchusa\\nanchusas\\nanchusin\\nanchusins\\nancient\\nancienter\\nancientest\\nancients\\nancilla\\nancillae\\nancillary\\nancillas\\nancon\\nanconal\\nancone\\nanconeal\\nancones\\nanconoid\\nancress\\nancresses\\nand\\nandante\\nandantes\\nanded\\nandesite\\nandesites\\nandesyte\\nandesytes\\nandiron\\nandirons\\nandrogen\\nandrogens\\nandrogynous\\nandroid\\nandroids\\nands\\nane\\nanear\\naneared\\nanearing\\nanears\\nanecdota\\nanecdotal\\nanecdote\\nanecdotes\\nanechoic\\nanele\\naneled\\naneles\\naneling\\nanemia\\nanemias\\nanemic\\nanemone\\nanemones\\nanenst\\nanent\\nanergia\\nanergias\\nanergic\\nanergies\\nanergy\\naneroid\\naneroids\\nanes\\nanesthesia\\nanesthesias\\nanesthetic\\nanesthetics\\nanesthetist\\nanesthetists\\nanesthetize\\nanesthetized\\nanesthetizes\\nanesthetizing\\nanestri\\nanestrus\\nanethol\\nanethole\\nanetholes\\nanethols\\naneurism\\naneurisms\\naneurysm\\naneurysms\\nanew\\nanga\\nangaria\\nangarias\\nangaries\\nangary\\nangas\\nangel\\nangelic\\nangelica\\nangelical\\nangelically\\nangelicas\\nangels\\nangelus\\nangeluses\\nanger\\nangered\\nangering\\nangerly\\nangers\\nangina\\nanginal\\nanginas\\nanginose\\nanginous\\nangioma\\nangiomas\\nangiomata\\nangle\\nangled\\nanglepod\\nanglepods\\nangler\\nanglers\\nangles\\nangleworm\\nangleworms\\nanglice\\nangling\\nanglings\\nangora\\nangoras\\nangrier\\nangriest\\nangrily\\nangry\\nangst\\nangstrom\\nangstroms\\nangsts\\nanguine\\nanguish\\nanguished\\nanguishes\\nanguishing\\nangular\\nangularities\\nangularity\\nangulate\\nangulated\\nangulates\\nangulating\\nangulose\\nangulous\\nanhinga\\nanhingas\\nani\\nanil\\nanile\\nanilin\\naniline\\nanilines\\nanilins\\nanilities\\nanility\\nanils\\nanima\\nanimal\\nanimally\\nanimals\\nanimas\\nanimate\\nanimated\\nanimater\\nanimaters\\nanimates\\nanimating\\nanimation\\nanimations\\nanimato\\nanimator\\nanimators\\nanime\\nanimes\\nanimi\\nanimis\\nanimism\\nanimisms\\nanimist\\nanimists\\nanimosities\\nanimosity\\nanimus\\nanimuses\\nanion\\nanionic\\nanions\\nanis\\nanise\\naniseed\\naniseeds\\nanises\\nanisette\\nanisettes\\nanisic\\nanisole\\nanisoles\\nankerite\\nankerites\\nankh\\nankhs\\nankle\\nanklebone\\nanklebones\\nankles\\nanklet\\nanklets\\nankus\\nankuses\\nankush\\nankushes\\nankylose\\nankylosed\\nankyloses\\nankylosing\\nanlace\\nanlaces\\nanlage\\nanlagen\\nanlages\\nanlas\\nanlases\\nanna\\nannal\\nannalist\\nannalists\\nannals\\nannas\\nannates\\nannatto\\nannattos\\nanneal\\nannealed\\nannealer\\nannealers\\nannealing\\nanneals\\nannelid\\nannelids\\nannex\\nannexation\\nannexations\\nannexe\\nannexed\\nannexes\\nannexing\\nannihilate\\nannihilated\\nannihilates\\nannihilating\\nannihilation\\nannihilations\\nanniversaries\\nanniversary\\nannotate\\nannotated\\nannotates\\nannotating\\nannotation\\nannotations\\nannotator\\nannotators\\nannounce\\nannounced\\nannouncement\\nannouncements\\nannouncer\\nannouncers\\nannounces\\nannouncing\\nannoy\\nannoyance\\nannoyances\\nannoyed\\nannoyer\\nannoyers\\nannoying\\nannoyingly\\nannoys\\nannual\\nannually\\nannuals\\nannuities\\nannuity\\nannul\\nannular\\nannulate\\nannulet\\nannulets\\nannuli\\nannulled\\nannulling\\nannulment\\nannulments\\nannulose\\nannuls\\nannulus\\nannuluses\\nanoa\\nanoas\\nanodal\\nanodally\\nanode\\nanodes\\nanodic\\nanodically\\nanodize\\nanodized\\nanodizes\\nanodizing\\nanodyne\\nanodynes\\nanodynic\\nanoint\\nanointed\\nanointer\\nanointers\\nanointing\\nanointment\\nanointments\\nanoints\\nanole\\nanoles\\nanolyte\\nanolytes\\nanomalies\\nanomalous\\nanomaly\\nanomic\\nanomie\\nanomies\\nanomy\\nanon\\nanonym\\nanonymities\\nanonymity\\nanonymous\\nanonymously\\nanonyms\\nanoopsia\\nanoopsias\\nanopia\\nanopias\\nanopsia\\nanopsias\\nanorak\\nanoraks\\nanoretic\\nanorexia\\nanorexias\\nanorexies\\nanorexy\\nanorthic\\nanosmia\\nanosmias\\nanosmic\\nanother\\nanoxemia\\nanoxemias\\nanoxemic\\nanoxia\\nanoxias\\nanoxic\\nansa\\nansae\\nansate\\nansated\\nanserine\\nanserines\\nanserous\\nanswer\\nanswerable\\nanswered\\nanswerer\\nanswerers\\nanswering\\nanswers\\nant\\nanta\\nantacid\\nantacids\\nantae\\nantagonism\\nantagonisms\\nantagonist\\nantagonistic\\nantagonists\\nantagonize\\nantagonized\\nantagonizes\\nantagonizing\\nantalgic\\nantalgics\\nantarctic\\nantas\\nante\\nanteater\\nanteaters\\nantebellum\\nantecede\\nanteceded\\nantecedent\\nantecedents\\nantecedes\\nanteceding\\nanted\\nantedate\\nantedated\\nantedates\\nantedating\\nanteed\\nantefix\\nantefixa\\nantefixes\\nanteing\\nantelope\\nantelopes\\nantenna\\nantennae\\nantennal\\nantennas\\nantepast\\nantepasts\\nanterior\\nanteroom\\nanterooms\\nantes\\nantetype\\nantetypes\\nantevert\\nanteverted\\nanteverting\\nanteverts\\nanthelia\\nanthelices\\nanthelix\\nanthem\\nanthemed\\nanthemia\\nantheming\\nanthems\\nanther\\nantheral\\nantherid\\nantherids\\nanthers\\nantheses\\nanthesis\\nanthill\\nanthills\\nanthodia\\nanthoid\\nanthologies\\nanthology\\nanthraces\\nanthracite\\nanthracites\\nanthrax\\nanthropoid\\nanthropological\\nanthropologist\\nanthropologists\\nanthropology\\nanti\\nantiabortion\\nantiacademic\\nantiadministration\\nantiaggression\\nantiaggressive\\nantiaircraft\\nantialien\\nantianarchic\\nantianarchist\\nantiannexation\\nantiapartheid\\nantiar\\nantiarin\\nantiarins\\nantiaristocrat\\nantiaristocratic\\nantiars\\nantiatheism\\nantiatheist\\nantiauthoritarian\\nantibacterial\\nantibiotic\\nantibiotics\\nantiblack\\nantibodies\\nantibody\\nantibourgeois\\nantiboxing\\nantiboycott\\nantibureaucratic\\nantiburglar\\nantiburglary\\nantibusiness\\nantic\\nanticancer\\nanticapitalism\\nanticapitalist\\nanticapitalistic\\nanticensorship\\nantichurch\\nanticigarette\\nanticipate\\nanticipated\\nanticipates\\nanticipating\\nanticipation\\nanticipations\\nanticipatory\\nantick\\nanticked\\nanticking\\nanticks\\nanticlerical\\nanticlimactic\\nanticlimax\\nanticlimaxes\\nanticly\\nanticollision\\nanticolonial\\nanticommunism\\nanticommunist\\nanticonservation\\nanticonservationist\\nanticonsumer\\nanticonventional\\nanticorrosive\\nanticorruption\\nanticrime\\nanticruelty\\nantics\\nanticultural\\nantidandruff\\nantidemocratic\\nantidiscrimination\\nantidote\\nantidotes\\nantidumping\\nantieavesdropping\\nantiemetic\\nantiemetics\\nantiestablishment\\nantievolution\\nantievolutionary\\nantifanatic\\nantifascism\\nantifascist\\nantifat\\nantifatigue\\nantifemale\\nantifeminine\\nantifeminism\\nantifeminist\\nantifertility\\nantiforeign\\nantiforeigner\\nantifraud\\nantifreeze\\nantifreezes\\nantifungus\\nantigambling\\nantigen\\nantigene\\nantigenes\\nantigens\\nantiglare\\nantigonorrheal\\nantigovernment\\nantigraft\\nantiguerilla\\nantihero\\nantiheroes\\nantihijack\\nantihistamine\\nantihistamines\\nantihomosexual\\nantihuman\\nantihumanism\\nantihumanistic\\nantihumanity\\nantihunting\\nantijamming\\nantiking\\nantikings\\nantilabor\\nantiliberal\\nantiliberalism\\nantilitter\\nantilittering\\nantilog\\nantilogies\\nantilogs\\nantilogy\\nantilynching\\nantimanagement\\nantimask\\nantimasks\\nantimaterialism\\nantimaterialist\\nantimaterialistic\\nantimere\\nantimeres\\nantimicrobial\\nantimilitarism\\nantimilitarist\\nantimilitaristic\\nantimilitary\\nantimiscegenation\\nantimonies\\nantimonopolist\\nantimonopoly\\nantimony\\nantimosquito\\nanting\\nantings\\nantinode\\nantinodes\\nantinoise\\nantinomies\\nantinomy\\nantiobesity\\nantipapal\\nantipathies\\nantipathy\\nantipersonnel\\nantiphon\\nantiphons\\nantipode\\nantipodes\\nantipole\\nantipoles\\nantipolice\\nantipollution\\nantipope\\nantipopes\\nantipornographic\\nantipornography\\nantipoverty\\nantiprofiteering\\nantiprogressive\\nantiprostitution\\nantipyic\\nantipyics\\nantipyretic\\nantiquarian\\nantiquarianism\\nantiquarians\\nantiquaries\\nantiquary\\nantiquated\\nantique\\nantiqued\\nantiquer\\nantiquers\\nantiques\\nantiquing\\nantiquities\\nantiquity\\nantirabies\\nantiracing\\nantiracketeering\\nantiradical\\nantirealism\\nantirealistic\\nantirecession\\nantireform\\nantireligious\\nantirepublican\\nantirevolutionary\\nantirobbery\\nantiromantic\\nantirust\\nantirusts\\nantis\\nantisegregation\\nantiseptic\\nantiseptically\\nantiseptics\\nantisera\\nantisexist\\nantisexual\\nantishoplifting\\nantiskid\\nantislavery\\nantismog\\nantismoking\\nantismuggling\\nantispending\\nantistrike\\nantistudent\\nantisubmarine\\nantisubversion\\nantisubversive\\nantisuicide\\nantisyphillis\\nantitank\\nantitax\\nantitechnological\\nantitechnology\\nantiterrorism\\nantiterrorist\\nantitheft\\nantitheses\\nantithesis\\nantitobacco\\nantitotalitarian\\nantitoxin\\nantitraditional\\nantitrust\\nantituberculosis\\nantitumor\\nantitype\\nantitypes\\nantityphoid\\nantiulcer\\nantiunemployment\\nantiunion\\nantiuniversity\\nantiurban\\nantivandalism\\nantiviolence\\nantiviral\\nantivivisection\\nantiwar\\nantiwhite\\nantiwiretapping\\nantiwoman\\nantler\\nantlered\\nantlers\\nantlike\\nantlion\\nantlions\\nantonym\\nantonymies\\nantonyms\\nantonymy\\nantra\\nantral\\nantre\\nantres\\nantrorse\\nantrum\\nants\\nanuran\\nanurans\\nanureses\\nanuresis\\nanuretic\\nanuria\\nanurias\\nanuric\\nanurous\\nanus\\nanuses\\nanvil\\nanviled\\nanviling\\nanvilled\\nanvilling\\nanvils\\nanviltop\\nanviltops\\nanxieties\\nanxiety\\nanxious\\nanxiously\\nany\\nanybodies\\nanybody\\nanyhow\\nanymore\\nanyone\\nanyplace\\nanything\\nanythings\\nanytime\\nanyway\\nanyways\\nanywhere\\nanywheres\\nanywise\\naorist\\naoristic\\naorists\\naorta\\naortae\\naortal\\naortas\\naortic\\naoudad\\naoudads\\napace\\napache\\napaches\\napagoge\\napagoges\\napagogic\\napanage\\napanages\\naparejo\\naparejos\\napart\\napartheid\\napartheids\\napatetic\\napathetic\\napathetically\\napathies\\napathy\\napatite\\napatites\\nape\\napeak\\naped\\napeek\\napelike\\naper\\napercu\\napercus\\naperient\\naperients\\naperies\\naperitif\\naperitifs\\napers\\naperture\\napertures\\napery\\napes\\napetalies\\napetaly\\napex\\napexes\\naphagia\\naphagias\\naphanite\\naphanites\\naphasia\\naphasiac\\naphasiacs\\naphasias\\naphasic\\naphasics\\naphelia\\naphelian\\naphelion\\napheses\\naphesis\\naphetic\\naphid\\naphides\\naphidian\\naphidians\\naphids\\naphis\\napholate\\napholates\\naphonia\\naphonias\\naphonic\\naphonics\\naphorise\\naphorised\\naphorises\\naphorising\\naphorism\\naphorisms\\naphorist\\naphoristic\\naphorists\\naphorize\\naphorized\\naphorizes\\naphorizing\\naphotic\\naphrodisiac\\naphtha\\naphthae\\naphthous\\naphyllies\\naphylly\\napian\\napiarian\\napiarians\\napiaries\\napiarist\\napiarists\\napiary\\napical\\napically\\napices\\napiculi\\napiculus\\napiece\\napimania\\napimanias\\naping\\napiologies\\napiology\\napish\\napishly\\naplasia\\naplasias\\naplastic\\naplenty\\naplite\\naplites\\naplitic\\naplomb\\naplombs\\napnea\\napneal\\napneas\\napneic\\napnoea\\napnoeal\\napnoeas\\napnoeic\\napocalypse\\napocalypses\\napocalyptic\\napocalyptical\\napocarp\\napocarpies\\napocarps\\napocarpy\\napocope\\napocopes\\napocopic\\napocrine\\napocrypha\\napocryphal\\napodal\\napodoses\\napodosis\\napodous\\napogamic\\napogamies\\napogamy\\napogeal\\napogean\\napogee\\napogees\\napogeic\\napollo\\napollos\\napolog\\napologal\\napologetic\\napologetically\\napologia\\napologiae\\napologias\\napologies\\napologist\\napologize\\napologized\\napologizes\\napologizing\\napologs\\napologue\\napologues\\napology\\napolune\\napolunes\\napomict\\napomicts\\napomixes\\napomixis\\napophyge\\napophyges\\napoplectic\\napoplexies\\napoplexy\\naport\\napostacies\\napostacy\\napostasies\\napostasy\\napostate\\napostates\\napostil\\napostils\\napostle\\napostles\\napostleship\\napostolic\\napostrophe\\napostrophes\\napothecaries\\napothecary\\napothece\\napotheces\\napothegm\\napothegms\\napothem\\napothems\\nappal\\nappall\\nappalled\\nappalling\\nappalls\\nappals\\nappanage\\nappanages\\napparat\\napparats\\napparatus\\napparatuses\\napparel\\nappareled\\nappareling\\napparelled\\napparelling\\napparels\\napparent\\napparently\\napparition\\napparitions\\nappeal\\nappealed\\nappealer\\nappealers\\nappealing\\nappeals\\nappear\\nappearance\\nappearances\\nappeared\\nappearing\\nappears\\nappease\\nappeased\\nappeasement\\nappeasements\\nappeaser\\nappeasers\\nappeases\\nappeasing\\nappel\\nappellee\\nappellees\\nappellor\\nappellors\\nappels\\nappend\\nappendage\\nappendages\\nappendectomies\\nappendectomy\\nappended\\nappendices\\nappendicitis\\nappending\\nappendix\\nappendixes\\nappends\\nappestat\\nappestats\\nappetent\\nappetite\\nappetites\\nappetizer\\nappetizers\\nappetizing\\nappetizingly\\napplaud\\napplauded\\napplauding\\napplauds\\napplause\\napplauses\\napple\\napplejack\\napplejacks\\napples\\napplesauce\\nappliance\\napplicabilities\\napplicability\\napplicable\\napplicancies\\napplicancy\\napplicant\\napplicants\\napplication\\napplications\\napplicator\\napplicators\\napplied\\napplier\\nappliers\\napplies\\napplique\\nappliqued\\nappliqueing\\nappliques\\napply\\napplying\\nappoint\\nappointed\\nappointing\\nappointment\\nappointments\\nappoints\\napportion\\napportioned\\napportioning\\napportionment\\napportionments\\napportions\\nappose\\napposed\\napposer\\napposers\\napposes\\napposing\\napposite\\nappositely\\nappraisal\\nappraisals\\nappraise\\nappraised\\nappraiser\\nappraisers\\nappraises\\nappraising\\nappreciable\\nappreciably\\nappreciate\\nappreciated\\nappreciates\\nappreciating\\nappreciation\\nappreciations\\nappreciative\\napprehend\\napprehended\\napprehending\\napprehends\\napprehension\\napprehensions\\napprehensive\\napprehensively\\napprehensiveness\\napprehensivenesses\\napprentice\\napprenticed\\napprentices\\napprenticeship\\napprenticeships\\napprenticing\\napprise\\napprised\\nappriser\\napprisers\\napprises\\napprising\\napprize\\napprized\\napprizer\\napprizers\\napprizes\\napprizing\\napproach\\napproachable\\napproached\\napproaches\\napproaching\\napprobation\\nappropriate\\nappropriated\\nappropriately\\nappropriateness\\nappropriates\\nappropriating\\nappropriation\\nappropriations\\napproval\\napprovals\\napprove\\napproved\\napprover\\napprovers\\napproves\\napproving\\napproximate\\napproximated\\napproximately\\napproximates\\napproximating\\napproximation\\napproximations\\nappulse\\nappulses\\nappurtenance\\nappurtenances\\nappurtenant\\napractic\\napraxia\\napraxias\\napraxic\\napricot\\napricots\\napron\\naproned\\naproning\\naprons\\napropos\\napse\\napses\\napsidal\\napsides\\napsis\\napt\\napter\\napteral\\napterous\\napteryx\\napteryxes\\naptest\\naptitude\\naptitudes\\naptly\\naptness\\naptnesses\\napyrase\\napyrases\\napyretic\\naqua\\naquacade\\naquacades\\naquae\\naquamarine\\naquamarines\\naquanaut\\naquanauts\\naquaria\\naquarial\\naquarian\\naquarians\\naquarist\\naquarists\\naquarium\\naquariums\\naquas\\naquatic\\naquatics\\naquatint\\naquatinted\\naquatinting\\naquatints\\naquatone\\naquatones\\naquavit\\naquavits\\naqueduct\\naqueducts\\naqueous\\naquifer\\naquifers\\naquiline\\naquiver\\nar\\narabesk\\narabesks\\narabesque\\narabesques\\narabize\\narabized\\narabizes\\narabizing\\narable\\narables\\naraceous\\narachnid\\narachnids\\narak\\naraks\\naraneid\\naraneids\\narapaima\\narapaimas\\nararoba\\nararobas\\narbalest\\narbalests\\narbalist\\narbalists\\narbiter\\narbiters\\narbitral\\narbitrarily\\narbitrariness\\narbitrarinesses\\narbitrary\\narbitrate\\narbitrated\\narbitrates\\narbitrating\\narbitration\\narbitrations\\narbitrator\\narbitrators\\narbor\\narboreal\\narbored\\narbores\\narboreta\\narborist\\narborists\\narborize\\narborized\\narborizes\\narborizing\\narborous\\narbors\\narbour\\narboured\\narbours\\narbuscle\\narbuscles\\narbute\\narbutean\\narbutes\\narbutus\\narbutuses\\narc\\narcade\\narcaded\\narcades\\narcadia\\narcadian\\narcadians\\narcadias\\narcading\\narcadings\\narcana\\narcane\\narcanum\\narcature\\narcatures\\narced\\narch\\narchaeological\\narchaeologies\\narchaeologist\\narchaeologists\\narchaeology\\narchaic\\narchaically\\narchaise\\narchaised\\narchaises\\narchaising\\narchaism\\narchaisms\\narchaist\\narchaists\\narchaize\\narchaized\\narchaizes\\narchaizing\\narchangel\\narchangels\\narchbishop\\narchbishopric\\narchbishoprics\\narchbishops\\narchdiocese\\narchdioceses\\narchduke\\narchdukes\\narched\\narcheologies\\narcheology\\narcher\\narcheries\\narchers\\narchery\\narches\\narchetype\\narchetypes\\narchil\\narchils\\narchine\\narchines\\narching\\narchings\\narchipelago\\narchipelagos\\narchitect\\narchitects\\narchitectural\\narchitecture\\narchitectures\\narchival\\narchive\\narchived\\narchives\\narchiving\\narchly\\narchness\\narchnesses\\narchon\\narchons\\narchway\\narchways\\narciform\\narcing\\narcked\\narcking\\narco\\narcs\\narctic\\narctics\\narcuate\\narcuated\\narcus\\narcuses\\nardeb\\nardebs\\nardencies\\nardency\\nardent\\nardently\\nardor\\nardors\\nardour\\nardours\\narduous\\narduously\\narduousness\\narduousnesses\\nare\\narea\\nareae\\nareal\\nareally\\nareas\\nareaway\\nareaways\\nareca\\narecas\\nareic\\narena\\narenas\\narenose\\narenous\\nareola\\nareolae\\nareolar\\nareolas\\nareolate\\nareole\\nareoles\\nareologies\\nareology\\nares\\narete\\naretes\\narethusa\\narethusas\\narf\\nargal\\nargali\\nargalis\\nargals\\nargent\\nargental\\nargentic\\nargents\\nargentum\\nargentums\\nargil\\nargils\\narginase\\narginases\\narginine\\narginines\\nargle\\nargled\\nargles\\nargling\\nargol\\nargols\\nargon\\nargonaut\\nargonauts\\nargons\\nargosies\\nargosy\\nargot\\nargotic\\nargots\\narguable\\narguably\\nargue\\nargued\\narguer\\narguers\\nargues\\nargufied\\nargufier\\nargufiers\\nargufies\\nargufy\\nargufying\\narguing\\nargument\\nargumentative\\narguments\\nargus\\narguses\\nargyle\\nargyles\\nargyll\\nargylls\\narhat\\narhats\\naria\\narias\\narid\\narider\\naridest\\naridities\\naridity\\naridly\\naridness\\naridnesses\\nariel\\nariels\\narietta\\nariettas\\nariette\\nariettes\\naright\\naril\\nariled\\narillate\\narillode\\narillodes\\narilloid\\narils\\nariose\\nariosi\\narioso\\nariosos\\narise\\narisen\\narises\\narising\\narista\\naristae\\naristas\\naristate\\naristocracies\\naristocracy\\naristocrat\\naristocratic\\naristocrats\\narithmetic\\narithmetical\\nark\\narks\\narles\\narm\\narmada\\narmadas\\narmadillo\\narmadillos\\narmament\\narmaments\\narmature\\narmatured\\narmatures\\narmaturing\\narmband\\narmbands\\narmchair\\narmchairs\\narmed\\narmer\\narmers\\narmet\\narmets\\narmful\\narmfuls\\narmhole\\narmholes\\narmies\\narmiger\\narmigero\\narmigeros\\narmigers\\narmilla\\narmillae\\narmillas\\narming\\narmings\\narmless\\narmlet\\narmlets\\narmlike\\narmload\\narmloads\\narmoire\\narmoires\\narmonica\\narmonicas\\narmor\\narmored\\narmorer\\narmorers\\narmorial\\narmorials\\narmories\\narmoring\\narmors\\narmory\\narmour\\narmoured\\narmourer\\narmourers\\narmouries\\narmouring\\narmours\\narmoury\\narmpit\\narmpits\\narmrest\\narmrests\\narms\\narmsful\\narmure\\narmures\\narmy\\narmyworm\\narmyworms\\narnatto\\narnattos\\narnica\\narnicas\\narnotto\\narnottos\\naroid\\naroids\\naroint\\narointed\\narointing\\naroints\\naroma\\naromas\\naromatic\\naromatics\\narose\\naround\\narousal\\narousals\\narouse\\naroused\\narouser\\narousers\\narouses\\narousing\\naroynt\\naroynted\\naroynting\\naroynts\\narpeggio\\narpeggios\\narpen\\narpens\\narpent\\narpents\\narquebus\\narquebuses\\narrack\\narracks\\narraign\\narraigned\\narraigning\\narraigns\\narrange\\narranged\\narrangement\\narrangements\\narranger\\narrangers\\narranges\\narranging\\narrant\\narrantly\\narras\\narrased\\narray\\narrayal\\narrayals\\narrayed\\narrayer\\narrayers\\narraying\\narrays\\narrear\\narrears\\narrest\\narrested\\narrestee\\narrestees\\narrester\\narresters\\narresting\\narrestor\\narrestors\\narrests\\narrhizal\\narrhythmia\\narris\\narrises\\narrival\\narrivals\\narrive\\narrived\\narriver\\narrivers\\narrives\\narriving\\narroba\\narrobas\\narrogance\\narrogances\\narrogant\\narrogantly\\narrogate\\narrogated\\narrogates\\narrogating\\narrow\\narrowed\\narrowhead\\narrowheads\\narrowing\\narrows\\narrowy\\narroyo\\narroyos\\nars\\narse\\narsenal\\narsenals\\narsenate\\narsenates\\narsenic\\narsenical\\narsenics\\narsenide\\narsenides\\narsenious\\narsenite\\narsenites\\narseno\\narsenous\\narses\\narshin\\narshins\\narsine\\narsines\\narsino\\narsis\\narson\\narsonist\\narsonists\\narsonous\\narsons\\nart\\nartal\\nartefact\\nartefacts\\nartel\\nartels\\narterial\\narterials\\narteries\\narteriosclerosis\\narteriosclerotic\\nartery\\nartful\\nartfully\\nartfulness\\nartfulnesses\\narthralgia\\narthritic\\narthritides\\narthritis\\narthropod\\narthropods\\nartichoke\\nartichokes\\narticle\\narticled\\narticles\\narticling\\narticulate\\narticulated\\narticulately\\narticulateness\\narticulatenesses\\narticulates\\narticulating\\nartier\\nartiest\\nartifact\\nartifacts\\nartifice\\nartifices\\nartificial\\nartificialities\\nartificiality\\nartificially\\nartificialness\\nartificialnesses\\nartilleries\\nartillery\\nartily\\nartiness\\nartinesses\\nartisan\\nartisans\\nartist\\nartiste\\nartistes\\nartistic\\nartistical\\nartistically\\nartistries\\nartistry\\nartists\\nartless\\nartlessly\\nartlessness\\nartlessnesses\\narts\\nartwork\\nartworks\\narty\\narum\\narums\\naruspex\\naruspices\\narval\\narvo\\narvos\\naryl\\naryls\\narythmia\\narythmias\\narythmic\\nas\\nasarum\\nasarums\\nasbestic\\nasbestos\\nasbestoses\\nasbestus\\nasbestuses\\nascarid\\nascarides\\nascarids\\nascaris\\nascend\\nascendancies\\nascendancy\\nascendant\\nascended\\nascender\\nascenders\\nascending\\nascends\\nascension\\nascensions\\nascent\\nascents\\nascertain\\nascertainable\\nascertained\\nascertaining\\nascertains\\nasceses\\nascesis\\nascetic\\nasceticism\\nasceticisms\\nascetics\\nasci\\nascidia\\nascidian\\nascidians\\nascidium\\nascites\\nascitic\\nascocarp\\nascocarps\\nascorbic\\nascot\\nascots\\nascribable\\nascribe\\nascribed\\nascribes\\nascribing\\nascription\\nascriptions\\nascus\\nasdic\\nasdics\\nasea\\nasepses\\nasepsis\\naseptic\\nasexual\\nash\\nashamed\\nashcan\\nashcans\\nashed\\nashen\\nashes\\nashier\\nashiest\\nashing\\nashlar\\nashlared\\nashlaring\\nashlars\\nashler\\nashlered\\nashlering\\nashlers\\nashless\\nashman\\nashmen\\nashore\\nashplant\\nashplants\\nashram\\nashrams\\nashtray\\nashtrays\\nashy\\naside\\nasides\\nasinine\\nask\\naskance\\naskant\\nasked\\nasker\\naskers\\naskeses\\naskesis\\naskew\\nasking\\naskings\\nasks\\naslant\\nasleep\\naslope\\nasocial\\nasp\\naspect\\naspects\\naspen\\naspens\\nasper\\nasperate\\nasperated\\nasperates\\nasperating\\nasperges\\nasperities\\nasperity\\naspers\\nasperse\\naspersed\\nasperser\\naspersers\\nasperses\\naspersing\\naspersion\\naspersions\\naspersor\\naspersors\\nasphalt\\nasphalted\\nasphaltic\\nasphalting\\nasphalts\\nasphaltum\\nasphaltums\\naspheric\\nasphodel\\nasphodels\\nasphyxia\\nasphyxias\\nasphyxiate\\nasphyxiated\\nasphyxiates\\nasphyxiating\\nasphyxiation\\nasphyxiations\\nasphyxies\\nasphyxy\\naspic\\naspics\\naspirant\\naspirants\\naspirata\\naspiratae\\naspirate\\naspirated\\naspirates\\naspirating\\naspiration\\naspirations\\naspire\\naspired\\naspirer\\naspirers\\naspires\\naspirin\\naspiring\\naspirins\\naspis\\naspises\\naspish\\nasps\\nasquint\\nasrama\\nasramas\\nass\\nassagai\\nassagaied\\nassagaiing\\nassagais\\nassai\\nassail\\nassailable\\nassailant\\nassailants\\nassailed\\nassailer\\nassailers\\nassailing\\nassails\\nassais\\nassassin\\nassassinate\\nassassinated\\nassassinates\\nassassinating\\nassassination\\nassassinations\\nassassins\\nassault\\nassaulted\\nassaulting\\nassaults\\nassay\\nassayed\\nassayer\\nassayers\\nassaying\\nassays\\nassegai\\nassegaied\\nassegaiing\\nassegais\\nassemble\\nassembled\\nassembles\\nassemblies\\nassembling\\nassembly\\nassemblyman\\nassemblymen\\nassemblywoman\\nassemblywomen\\nassent\\nassented\\nassenter\\nassenters\\nassenting\\nassentor\\nassentors\\nassents\\nassert\\nasserted\\nasserter\\nasserters\\nasserting\\nassertion\\nassertions\\nassertive\\nassertiveness\\nassertivenesses\\nassertor\\nassertors\\nasserts\\nasses\\nassess\\nassessed\\nassesses\\nassessing\\nassessment\\nassessments\\nassessor\\nassessors\\nasset\\nassets\\nassiduities\\nassiduity\\nassiduous\\nassiduously\\nassiduousness\\nassiduousnesses\\nassign\\nassignable\\nassignat\\nassignats\\nassigned\\nassignee\\nassignees\\nassigner\\nassigners\\nassigning\\nassignment\\nassignments\\nassignor\\nassignors\\nassigns\\nassimilate\\nassimilated\\nassimilates\\nassimilating\\nassimilation\\nassimilations\\nassist\\nassistance\\nassistances\\nassistant\\nassistants\\nassisted\\nassister\\nassisters\\nassisting\\nassistor\\nassistors\\nassists\\nassize\\nassizes\\nasslike\\nassociate\\nassociated\\nassociates\\nassociating\\nassociation\\nassociations\\nassoil\\nassoiled\\nassoiling\\nassoils\\nassonant\\nassonants\\nassort\\nassorted\\nassorter\\nassorters\\nassorting\\nassortment\\nassortments\\nassorts\\nassuage\\nassuaged\\nassuages\\nassuaging\\nassume\\nassumed\\nassumer\\nassumers\\nassumes\\nassuming\\nassumption\\nassumptions\\nassurance\\nassurances\\nassure\\nassured\\nassureds\\nassurer\\nassurers\\nassures\\nassuring\\nassuror\\nassurors\\nasswage\\nasswaged\\nasswages\\nasswaging\\nastasia\\nastasias\\nastatic\\nastatine\\nastatines\\naster\\nasteria\\nasterias\\nasterisk\\nasterisked\\nasterisking\\nasterisks\\nasterism\\nasterisms\\nastern\\nasternal\\nasteroid\\nasteroidal\\nasteroids\\nasters\\nasthenia\\nasthenias\\nasthenic\\nasthenics\\nasthenies\\nastheny\\nasthma\\nasthmas\\nastigmatic\\nastigmatism\\nastigmatisms\\nastir\\nastomous\\nastonied\\nastonies\\nastonish\\nastonished\\nastonishes\\nastonishing\\nastonishingly\\nastonishment\\nastonishments\\nastony\\nastonying\\nastound\\nastounded\\nastounding\\nastoundingly\\nastounds\\nastraddle\\nastragal\\nastragals\\nastral\\nastrally\\nastrals\\nastray\\nastrict\\nastricted\\nastricting\\nastricts\\nastride\\nastringe\\nastringed\\nastringencies\\nastringency\\nastringent\\nastringents\\nastringes\\nastringing\\nastrolabe\\nastrolabes\\nastrologer\\nastrologers\\nastrological\\nastrologies\\nastrology\\nastronaut\\nastronautic\\nastronautical\\nastronautically\\nastronautics\\nastronauts\\nastronomer\\nastronomers\\nastronomic\\nastronomical\\nastute\\nastutely\\nastuteness\\nastylar\\nasunder\\naswarm\\naswirl\\naswoon\\nasyla\\nasylum\\nasylums\\nasymmetric\\nasymmetrical\\nasymmetries\\nasymmetry\\nasyndeta\\nat\\natabal\\natabals\\nataghan\\nataghans\\natalaya\\natalayas\\nataman\\natamans\\natamasco\\natamascos\\nataraxia\\nataraxias\\nataraxic\\nataraxics\\nataraxies\\nataraxy\\natavic\\natavism\\natavisms\\natavist\\natavists\\nataxia\\nataxias\\nataxic\\nataxics\\nataxies\\nataxy\\nate\\natechnic\\natelic\\natelier\\nateliers\\nates\\nathanasies\\nathanasy\\natheism\\natheisms\\natheist\\natheistic\\natheists\\natheling\\nathelings\\natheneum\\natheneums\\natheroma\\natheromas\\natheromata\\natherosclerosis\\natherosclerotic\\nathirst\\nathlete\\nathletes\\nathletic\\nathletics\\nathodyd\\nathodyds\\nathwart\\natilt\\natingle\\natlantes\\natlas\\natlases\\natlatl\\natlatls\\natma\\natman\\natmans\\natmas\\natmosphere\\natmospheres\\natmospheric\\natmospherically\\natoll\\natolls\\natom\\natomic\\natomical\\natomics\\natomies\\natomise\\natomised\\natomises\\natomising\\natomism\\natomisms\\natomist\\natomists\\natomize\\natomized\\natomizer\\natomizers\\natomizes\\natomizing\\natoms\\natomy\\natonable\\natonal\\natonally\\natone\\natoned\\natonement\\natonements\\natoner\\natoners\\natones\\natonic\\natonicity\\natonics\\natonies\\natoning\\natony\\natop\\natopic\\natopies\\natopy\\natrazine\\natrazines\\natremble\\natresia\\natresias\\natria\\natrial\\natrip\\natrium\\natriums\\natrocious\\natrociously\\natrociousness\\natrociousnesses\\natrocities\\natrocity\\natrophia\\natrophias\\natrophic\\natrophied\\natrophies\\natrophy\\natrophying\\natropin\\natropine\\natropines\\natropins\\natropism\\natropisms\\nattach\\nattache\\nattached\\nattacher\\nattachers\\nattaches\\nattaching\\nattachment\\nattachments\\nattack\\nattacked\\nattacker\\nattackers\\nattacking\\nattacks\\nattain\\nattainabilities\\nattainability\\nattainable\\nattained\\nattainer\\nattainers\\nattaining\\nattainment\\nattainments\\nattains\\nattaint\\nattainted\\nattainting\\nattaints\\nattar\\nattars\\nattemper\\nattempered\\nattempering\\nattempers\\nattempt\\nattempted\\nattempting\\nattempts\\nattend\\nattendance\\nattendances\\nattendant\\nattendants\\nattended\\nattendee\\nattendees\\nattender\\nattenders\\nattending\\nattendings\\nattends\\nattent\\nattention\\nattentions\\nattentive\\nattentively\\nattentiveness\\nattentivenesses\\nattenuate\\nattenuated\\nattenuates\\nattenuating\\nattenuation\\nattenuations\\nattest\\nattestation\\nattestations\\nattested\\nattester\\nattesters\\nattesting\\nattestor\\nattestors\\nattests\\nattic\\natticism\\natticisms\\natticist\\natticists\\nattics\\nattire\\nattired\\nattires\\nattiring\\nattitude\\nattitudes\\nattorn\\nattorned\\nattorney\\nattorneys\\nattorning\\nattorns\\nattract\\nattracted\\nattracting\\nattraction\\nattractions\\nattractive\\nattractively\\nattractiveness\\nattractivenesses\\nattracts\\nattributable\\nattribute\\nattributed\\nattributes\\nattributing\\nattribution\\nattributions\\nattrite\\nattrited\\nattune\\nattuned\\nattunes\\nattuning\\natwain\\natween\\natwitter\\natypic\\natypical\\naubade\\naubades\\nauberge\\nauberges\\nauburn\\nauburns\\nauction\\nauctioned\\nauctioneer\\nauctioneers\\nauctioning\\nauctions\\naudacious\\naudacities\\naudacity\\naudad\\naudads\\naudible\\naudibles\\naudibly\\naudience\\naudiences\\naudient\\naudients\\naudile\\naudiles\\nauding\\naudings\\naudio\\naudiogram\\naudiograms\\naudios\\naudit\\naudited\\nauditing\\naudition\\nauditioned\\nauditioning\\nauditions\\nauditive\\nauditives\\nauditor\\nauditories\\nauditorium\\nauditoriums\\nauditors\\nauditory\\naudits\\naugend\\naugends\\nauger\\naugers\\naught\\naughts\\naugite\\naugites\\naugitic\\naugment\\naugmentation\\naugmentations\\naugmented\\naugmenting\\naugments\\naugur\\naugural\\naugured\\naugurer\\naugurers\\nauguries\\nauguring\\naugurs\\naugury\\naugust\\nauguster\\naugustest\\naugustly\\nauk\\nauklet\\nauklets\\nauks\\nauld\\naulder\\nauldest\\naulic\\naunt\\naunthood\\naunthoods\\nauntie\\naunties\\nauntlier\\nauntliest\\nauntlike\\nauntly\\naunts\\naunty\\naura\\naurae\\naural\\naurally\\naurar\\nauras\\naurate\\naurated\\naureate\\naurei\\naureola\\naureolae\\naureolas\\naureole\\naureoled\\naureoles\\naureoling\\naures\\naureus\\nauric\\nauricle\\nauricled\\nauricles\\nauricula\\nauriculae\\nauriculas\\nauriform\\nauris\\naurist\\naurists\\naurochs\\naurochses\\naurora\\naurorae\\nauroral\\nauroras\\naurorean\\naurous\\naurum\\naurums\\nauscultation\\nauscultations\\nauspex\\nauspice\\nauspices\\nauspicious\\naustere\\nausterer\\nausterest\\nausterities\\nausterity\\naustral\\nautacoid\\nautacoids\\nautarchies\\nautarchy\\nautarkic\\nautarkies\\nautarkik\\nautarky\\nautecism\\nautecisms\\nauthentic\\nauthentically\\nauthenticate\\nauthenticated\\nauthenticates\\nauthenticating\\nauthentication\\nauthentications\\nauthenticities\\nauthenticity\\nauthor\\nauthored\\nauthoress\\nauthoresses\\nauthoring\\nauthoritarian\\nauthoritative\\nauthoritatively\\nauthorities\\nauthority\\nauthorization\\nauthorizations\\nauthorize\\nauthorized\\nauthorizes\\nauthorizing\\nauthors\\nauthorship\\nauthorships\\nautism\\nautisms\\nautistic\\nauto\\nautobahn\\nautobahnen\\nautobahns\\nautobiographer\\nautobiographers\\nautobiographical\\nautobiographies\\nautobiography\\nautobus\\nautobuses\\nautobusses\\nautocade\\nautocades\\nautocoid\\nautocoids\\nautocracies\\nautocracy\\nautocrat\\nautocratic\\nautocratically\\nautocrats\\nautodyne\\nautodynes\\nautoed\\nautogamies\\nautogamy\\nautogenies\\nautogeny\\nautogiro\\nautogiros\\nautograph\\nautographed\\nautographing\\nautographs\\nautogyro\\nautogyros\\nautoing\\nautolyze\\nautolyzed\\nautolyzes\\nautolyzing\\nautomata\\nautomate\\nautomateable\\nautomated\\nautomates\\nautomatic\\nautomatically\\nautomating\\nautomation\\nautomations\\nautomaton\\nautomatons\\nautomobile\\nautomobiles\\nautomotive\\nautonomies\\nautonomous\\nautonomously\\nautonomy\\nautopsic\\nautopsied\\nautopsies\\nautopsy\\nautopsying\\nautos\\nautosome\\nautosomes\\nautotomies\\nautotomy\\nautotype\\nautotypes\\nautotypies\\nautotypy\\nautumn\\nautumnal\\nautumns\\nautunite\\nautunites\\nauxeses\\nauxesis\\nauxetic\\nauxetics\\nauxiliaries\\nauxiliary\\nauxin\\nauxinic\\nauxins\\nava\\navail\\navailabilities\\navailability\\navailable\\navailed\\navailing\\navails\\navalanche\\navalanches\\navarice\\navarices\\navast\\navatar\\navatars\\navaunt\\nave\\navellan\\navellane\\navenge\\navenged\\navenger\\navengers\\navenges\\navenging\\navens\\navenses\\naventail\\naventails\\navenue\\navenues\\naver\\naverage\\naveraged\\naverages\\naveraging\\naverment\\naverments\\naverred\\naverring\\navers\\naverse\\naversely\\naversion\\naversions\\naversive\\navert\\naverted\\naverting\\naverts\\naves\\navgas\\navgases\\navgasses\\navian\\navianize\\navianized\\navianizes\\navianizing\\navians\\naviaries\\naviarist\\naviarists\\naviary\\naviate\\naviated\\naviates\\naviating\\naviation\\naviations\\naviator\\naviators\\naviatrices\\naviatrix\\naviatrixes\\navicular\\navid\\navidin\\navidins\\navidities\\navidity\\navidly\\navidness\\navidnesses\\navifauna\\navifaunae\\navifaunas\\navigator\\navigators\\navion\\navionic\\navionics\\navions\\naviso\\navisos\\navo\\navocado\\navocadoes\\navocados\\navocation\\navocations\\navocet\\navocets\\navodire\\navodires\\navoid\\navoidable\\navoidance\\navoidances\\navoided\\navoider\\navoiders\\navoiding\\navoids\\navoidupois\\navoidupoises\\navos\\navoset\\navosets\\navouch\\navouched\\navoucher\\navouchers\\navouches\\navouching\\navow\\navowable\\navowably\\navowal\\navowals\\navowed\\navowedly\\navower\\navowers\\navowing\\navows\\navulse\\navulsed\\navulses\\navulsing\\navulsion\\navulsions\\naw\\nawa\\nawait\\nawaited\\nawaiter\\nawaiters\\nawaiting\\nawaits\\nawake\\nawaked\\nawaken\\nawakened\\nawakener\\nawakeners\\nawakening\\nawakens\\nawakes\\nawaking\\naward\\nawarded\\nawardee\\nawardees\\nawarder\\nawarders\\nawarding\\nawards\\naware\\nawash\\naway\\nawayness\\nawaynesses\\nawe\\naweary\\naweather\\nawed\\nawee\\naweigh\\naweing\\naweless\\nawes\\nawesome\\nawesomely\\nawful\\nawfuller\\nawfullest\\nawfully\\nawhile\\nawhirl\\nawing\\nawkward\\nawkwarder\\nawkwardest\\nawkwardly\\nawkwardness\\nawkwardnesses\\nawl\\nawless\\nawls\\nawlwort\\nawlworts\\nawmous\\nawn\\nawned\\nawning\\nawninged\\nawnings\\nawnless\\nawns\\nawny\\nawoke\\nawoken\\nawol\\nawols\\nawry\\naxal\\naxe\\naxed\\naxel\\naxels\\naxeman\\naxemen\\naxenic\\naxes\\naxial\\naxialities\\naxiality\\naxially\\naxil\\naxile\\naxilla\\naxillae\\naxillar\\naxillaries\\naxillars\\naxillary\\naxillas\\naxils\\naxing\\naxiologies\\naxiology\\naxiom\\naxiomatic\\naxioms\\naxis\\naxised\\naxises\\naxite\\naxites\\naxle\\naxled\\naxles\\naxletree\\naxletrees\\naxlike\\naxman\\naxmen\\naxolotl\\naxolotls\\naxon\\naxonal\\naxone\\naxones\\naxonic\\naxons\\naxoplasm\\naxoplasms\\naxseed\\naxseeds\\nay\\nayah\\nayahs\\naye\\nayes\\nayin\\nayins\\nays\\nazalea\\nazaleas\\nazan\\nazans\\nazide\\nazides\\nazido\\nazimuth\\nazimuthal\\nazimuths\\nazine\\nazines\\nazo\\nazoic\\nazole\\nazoles\\nazon\\nazonal\\nazonic\\nazons\\nazote\\nazoted\\nazotemia\\nazotemias\\nazotemic\\nazotes\\nazoth\\nazoths\\nazotic\\nazotise\\nazotised\\nazotises\\nazotising\\nazotize\\nazotized\\nazotizes\\nazotizing\\nazoturia\\nazoturias\\nazure\\nazures\\nazurite\\nazurites\\nazygos\\nazygoses\\nazygous\\nba\\nbaa\\nbaaed\\nbaaing\\nbaal\\nbaalim\\nbaalism\\nbaalisms\\nbaals\\nbaas\\nbaba\\nbabas\\nbabassu\\nbabassus\\nbabbitt\\nbabbitted\\nbabbitting\\nbabbitts\\nbabble\\nbabbled\\nbabbler\\nbabblers\\nbabbles\\nbabbling\\nbabblings\\nbabbool\\nbabbools\\nbabe\\nbabel\\nbabels\\nbabes\\nbabesia\\nbabesias\\nbabiche\\nbabiches\\nbabied\\nbabies\\nbabirusa\\nbabirusas\\nbabka\\nbabkas\\nbaboo\\nbabool\\nbabools\\nbaboon\\nbaboons\\nbaboos\\nbabu\\nbabul\\nbabuls\\nbabus\\nbabushka\\nbabushkas\\nbaby\\nbabyhood\\nbabyhoods\\nbabying\\nbabyish\\nbacca\\nbaccae\\nbaccalaureate\\nbaccalaureates\\nbaccara\\nbaccaras\\nbaccarat\\nbaccarats\\nbaccate\\nbaccated\\nbacchant\\nbacchantes\\nbacchants\\nbacchic\\nbacchii\\nbacchius\\nbach\\nbached\\nbachelor\\nbachelorhood\\nbachelorhoods\\nbachelors\\nbaches\\nbaching\\nbacillar\\nbacillary\\nbacilli\\nbacillus\\nback\\nbackache\\nbackaches\\nbackarrow\\nbackarrows\\nbackbend\\nbackbends\\nbackbit\\nbackbite\\nbackbiter\\nbackbiters\\nbackbites\\nbackbiting\\nbackbitten\\nbackbone\\nbackbones\\nbackdoor\\nbackdrop\\nbackdrops\\nbacked\\nbacker\\nbackers\\nbackfill\\nbackfilled\\nbackfilling\\nbackfills\\nbackfire\\nbackfired\\nbackfires\\nbackfiring\\nbackgammon\\nbackgammons\\nbackground\\nbackgrounds\\nbackhand\\nbackhanded\\nbackhanding\\nbackhands\\nbackhoe\\nbackhoes\\nbacking\\nbackings\\nbacklash\\nbacklashed\\nbacklasher\\nbacklashers\\nbacklashes\\nbacklashing\\nbackless\\nbacklist\\nbacklists\\nbacklit\\nbacklog\\nbacklogged\\nbacklogging\\nbacklogs\\nbackmost\\nbackout\\nbackouts\\nbackpack\\nbackpacked\\nbackpacker\\nbackpacking\\nbackpacks\\nbackrest\\nbackrests\\nbacks\\nbacksaw\\nbacksaws\\nbackseat\\nbackseats\\nbackset\\nbacksets\\nbackside\\nbacksides\\nbackslap\\nbackslapped\\nbackslapping\\nbackslaps\\nbackslash\\nbackslashes\\nbackslid\\nbackslide\\nbackslided\\nbackslider\\nbacksliders\\nbackslides\\nbacksliding\\nbackspace\\nbackspaced\\nbackspaces\\nbackspacing\\nbackspin\\nbackspins\\nbackstay\\nbackstays\\nbackstop\\nbackstopped\\nbackstopping\\nbackstops\\nbackup\\nbackups\\nbackward\\nbackwardness\\nbackwardnesses\\nbackwards\\nbackwash\\nbackwashed\\nbackwashes\\nbackwashing\\nbackwood\\nbackwoods\\nbackyard\\nbackyards\\nbacon\\nbacons\\nbacteria\\nbacterial\\nbacterin\\nbacterins\\nbacteriologic\\nbacteriological\\nbacteriologies\\nbacteriologist\\nbacteriologists\\nbacteriology\\nbacterium\\nbaculine\\nbad\\nbaddie\\nbaddies\\nbaddy\\nbade\\nbadge\\nbadged\\nbadger\\nbadgered\\nbadgering\\nbadgerly\\nbadgers\\nbadges\\nbadging\\nbadinage\\nbadinaged\\nbadinages\\nbadinaging\\nbadland\\nbadlands\\nbadly\\nbadman\\nbadmen\\nbadminton\\nbadmintons\\nbadmouth\\nbadmouthed\\nbadmouthing\\nbadmouths\\nbadness\\nbadnesses\\nbads\\nbaff\\nbaffed\\nbaffies\\nbaffing\\nbaffle\\nbaffled\\nbaffler\\nbafflers\\nbaffles\\nbaffling\\nbaffs\\nbaffy\\nbag\\nbagass\\nbagasse\\nbagasses\\nbagatelle\\nbagatelles\\nbagel\\nbagels\\nbagful\\nbagfuls\\nbaggage\\nbaggages\\nbagged\\nbaggie\\nbaggier\\nbaggies\\nbaggiest\\nbaggily\\nbagging\\nbaggings\\nbaggy\\nbagman\\nbagmen\\nbagnio\\nbagnios\\nbagpipe\\nbagpiper\\nbagpipers\\nbagpipes\\nbags\\nbagsful\\nbaguet\\nbaguets\\nbaguette\\nbaguettes\\nbagwig\\nbagwigs\\nbagworm\\nbagworms\\nbah\\nbahadur\\nbahadurs\\nbaht\\nbahts\\nbaidarka\\nbaidarkas\\nbail\\nbailable\\nbailed\\nbailee\\nbailees\\nbailer\\nbailers\\nbailey\\nbaileys\\nbailie\\nbailies\\nbailiff\\nbailiffs\\nbailing\\nbailiwick\\nbailiwicks\\nbailment\\nbailments\\nbailor\\nbailors\\nbailout\\nbailouts\\nbails\\nbailsman\\nbailsmen\\nbairn\\nbairnish\\nbairnlier\\nbairnliest\\nbairnly\\nbairns\\nbait\\nbaited\\nbaiter\\nbaiters\\nbaith\\nbaiting\\nbaits\\nbaiza\\nbaizas\\nbaize\\nbaizes\\nbake\\nbaked\\nbakemeat\\nbakemeats\\nbaker\\nbakeries\\nbakers\\nbakery\\nbakes\\nbakeshop\\nbakeshops\\nbaking\\nbakings\\nbaklava\\nbaklavas\\nbaklawa\\nbaklawas\\nbakshish\\nbakshished\\nbakshishes\\nbakshishing\\nbal\\nbalance\\nbalanced\\nbalancer\\nbalancers\\nbalances\\nbalancing\\nbalas\\nbalases\\nbalata\\nbalatas\\nbalboa\\nbalboas\\nbalconies\\nbalcony\\nbald\\nbalded\\nbalder\\nbalderdash\\nbalderdashes\\nbaldest\\nbaldhead\\nbaldheads\\nbalding\\nbaldish\\nbaldly\\nbaldness\\nbaldnesses\\nbaldpate\\nbaldpates\\nbaldric\\nbaldrick\\nbaldricks\\nbaldrics\\nbalds\\nbale\\nbaled\\nbaleen\\nbaleens\\nbalefire\\nbalefires\\nbaleful\\nbaler\\nbalers\\nbales\\nbaling\\nbalisaur\\nbalisaurs\\nbalk\\nbalked\\nbalker\\nbalkers\\nbalkier\\nbalkiest\\nbalkily\\nbalking\\nbalkline\\nbalklines\\nbalks\\nbalky\\nball\\nballad\\nballade\\nballades\\nballadic\\nballadries\\nballadry\\nballads\\nballast\\nballasted\\nballasting\\nballasts\\nballed\\nballer\\nballerina\\nballerinas\\nballers\\nballet\\nballetic\\nballets\\nballing\\nballista\\nballistae\\nballistic\\nballistics\\nballon\\nballonet\\nballonets\\nballonne\\nballonnes\\nballons\\nballoon\\nballooned\\nballooning\\nballoonist\\nballoonists\\nballoons\\nballot\\nballoted\\nballoter\\nballoters\\nballoting\\nballots\\nballroom\\nballrooms\\nballs\\nbally\\nballyhoo\\nballyhooed\\nballyhooing\\nballyhoos\\nballyrag\\nballyragged\\nballyragging\\nballyrags\\nbalm\\nbalmier\\nbalmiest\\nbalmily\\nbalminess\\nbalminesses\\nbalmlike\\nbalmoral\\nbalmorals\\nbalms\\nbalmy\\nbalneal\\nbaloney\\nbaloneys\\nbals\\nbalsa\\nbalsam\\nbalsamed\\nbalsamic\\nbalsaming\\nbalsams\\nbalsas\\nbaltimore\\nbaluster\\nbalusters\\nbalustrade\\nbalustrades\\nbambini\\nbambino\\nbambinos\\nbamboo\\nbamboos\\nbamboozle\\nbamboozled\\nbamboozles\\nbamboozling\\nban\\nbanal\\nbanalities\\nbanality\\nbanally\\nbanana\\nbananas\\nbanausic\\nbanco\\nbancos\\nband\\nbandage\\nbandaged\\nbandager\\nbandagers\\nbandages\\nbandaging\\nbandana\\nbandanas\\nbandanna\\nbandannas\\nbandbox\\nbandboxes\\nbandeau\\nbandeaus\\nbandeaux\\nbanded\\nbander\\nbanderol\\nbanderols\\nbanders\\nbandied\\nbandies\\nbanding\\nbandit\\nbanditries\\nbanditry\\nbandits\\nbanditti\\nbandog\\nbandogs\\nbandora\\nbandoras\\nbandore\\nbandores\\nbands\\nbandsman\\nbandsmen\\nbandstand\\nbandstands\\nbandwagon\\nbandwagons\\nbandwidth\\nbandwidths\\nbandy\\nbandying\\nbane\\nbaned\\nbaneful\\nbanes\\nbang\\nbanged\\nbanger\\nbangers\\nbanging\\nbangkok\\nbangkoks\\nbangle\\nbangles\\nbangs\\nbangtail\\nbangtails\\nbani\\nbanian\\nbanians\\nbaning\\nbanish\\nbanished\\nbanisher\\nbanishers\\nbanishes\\nbanishing\\nbanishment\\nbanishments\\nbanister\\nbanisters\\nbanjo\\nbanjoes\\nbanjoist\\nbanjoists\\nbanjos\\nbank\\nbankable\\nbankbook\\nbankbooks\\nbanked\\nbanker\\nbankers\\nbanking\\nbankings\\nbanknote\\nbanknotes\\nbankroll\\nbankrolled\\nbankrolling\\nbankrolls\\nbankrupt\\nbankruptcies\\nbankruptcy\\nbankrupted\\nbankrupting\\nbankrupts\\nbanks\\nbanksia\\nbanksias\\nbankside\\nbanksides\\nbanned\\nbanner\\nbanneret\\nbannerets\\nbannerol\\nbannerols\\nbanners\\nbannet\\nbannets\\nbanning\\nbannock\\nbannocks\\nbanns\\nbanquet\\nbanqueted\\nbanqueting\\nbanquets\\nbans\\nbanshee\\nbanshees\\nbanshie\\nbanshies\\nbantam\\nbantams\\nbanter\\nbantered\\nbanterer\\nbanterers\\nbantering\\nbanters\\nbantling\\nbantlings\\nbanyan\\nbanyans\\nbanzai\\nbanzais\\nbaobab\\nbaobabs\\nbaptise\\nbaptised\\nbaptises\\nbaptisia\\nbaptisias\\nbaptising\\nbaptism\\nbaptismal\\nbaptisms\\nbaptist\\nbaptists\\nbaptize\\nbaptized\\nbaptizer\\nbaptizers\\nbaptizes\\nbaptizing\\nbar\\nbarathea\\nbaratheas\\nbarb\\nbarbal\\nbarbarian\\nbarbarians\\nbarbaric\\nbarbarity\\nbarbarous\\nbarbarously\\nbarbasco\\nbarbascos\\nbarbate\\nbarbe\\nbarbecue\\nbarbecued\\nbarbecues\\nbarbecuing\\nbarbed\\nbarbel\\nbarbell\\nbarbells\\nbarbels\\nbarber\\nbarbered\\nbarbering\\nbarberries\\nbarberry\\nbarbers\\nbarbes\\nbarbet\\nbarbets\\nbarbette\\nbarbettes\\nbarbican\\nbarbicans\\nbarbicel\\nbarbicels\\nbarbing\\nbarbital\\nbarbitals\\nbarbiturate\\nbarbiturates\\nbarbless\\nbarbs\\nbarbule\\nbarbules\\nbarbut\\nbarbuts\\nbarbwire\\nbarbwires\\nbard\\nbarde\\nbarded\\nbardes\\nbardic\\nbarding\\nbards\\nbare\\nbareback\\nbarebacked\\nbared\\nbarefaced\\nbarefit\\nbarefoot\\nbarefooted\\nbarege\\nbareges\\nbarehead\\nbareheaded\\nbarely\\nbareness\\nbarenesses\\nbarer\\nbares\\nbaresark\\nbaresarks\\nbarest\\nbarf\\nbarfed\\nbarfing\\nbarflies\\nbarfly\\nbarfs\\nbargain\\nbargained\\nbargaining\\nbargains\\nbarge\\nbarged\\nbargee\\nbargees\\nbargeman\\nbargemen\\nbarges\\nbarghest\\nbarghests\\nbarging\\nbarguest\\nbarguests\\nbarhop\\nbarhopped\\nbarhopping\\nbarhops\\nbaric\\nbarilla\\nbarillas\\nbaring\\nbarite\\nbarites\\nbaritone\\nbaritones\\nbarium\\nbariums\\nbark\\nbarked\\nbarkeep\\nbarkeeps\\nbarker\\nbarkers\\nbarkier\\nbarkiest\\nbarking\\nbarkless\\nbarks\\nbarky\\nbarleduc\\nbarleducs\\nbarless\\nbarley\\nbarleys\\nbarlow\\nbarlows\\nbarm\\nbarmaid\\nbarmaids\\nbarman\\nbarmen\\nbarmie\\nbarmier\\nbarmiest\\nbarms\\nbarmy\\nbarn\\nbarnacle\\nbarnacles\\nbarnier\\nbarniest\\nbarns\\nbarnstorm\\nbarnstorms\\nbarny\\nbarnyard\\nbarnyards\\nbarogram\\nbarograms\\nbarometer\\nbarometers\\nbarometric\\nbarometrical\\nbaron\\nbaronage\\nbaronages\\nbaroness\\nbaronesses\\nbaronet\\nbaronetcies\\nbaronetcy\\nbaronets\\nbarong\\nbarongs\\nbaronial\\nbaronies\\nbaronne\\nbaronnes\\nbarons\\nbarony\\nbaroque\\nbaroques\\nbarouche\\nbarouches\\nbarque\\nbarques\\nbarrable\\nbarrack\\nbarracked\\nbarracking\\nbarracks\\nbarracuda\\nbarracudas\\nbarrage\\nbarraged\\nbarrages\\nbarraging\\nbarranca\\nbarrancas\\nbarranco\\nbarrancos\\nbarrater\\nbarraters\\nbarrator\\nbarrators\\nbarratries\\nbarratry\\nbarre\\nbarred\\nbarrel\\nbarreled\\nbarreling\\nbarrelled\\nbarrelling\\nbarrels\\nbarren\\nbarrener\\nbarrenest\\nbarrenly\\nbarrenness\\nbarrennesses\\nbarrens\\nbarres\\nbarret\\nbarretor\\nbarretors\\nbarretries\\nbarretry\\nbarrets\\nbarrette\\nbarrettes\\nbarricade\\nbarricades\\nbarrier\\nbarriers\\nbarring\\nbarrio\\nbarrios\\nbarrister\\nbarristers\\nbarroom\\nbarrooms\\nbarrow\\nbarrows\\nbars\\nbarstool\\nbarstools\\nbartend\\nbartended\\nbartender\\nbartenders\\nbartending\\nbartends\\nbarter\\nbartered\\nbarterer\\nbarterers\\nbartering\\nbarters\\nbartholomew\\nbartisan\\nbartisans\\nbartizan\\nbartizans\\nbarware\\nbarwares\\nbarye\\nbaryes\\nbaryon\\nbaryonic\\nbaryons\\nbaryta\\nbarytas\\nbaryte\\nbarytes\\nbarytic\\nbarytone\\nbarytones\\nbas\\nbasal\\nbasally\\nbasalt\\nbasaltes\\nbasaltic\\nbasalts\\nbascule\\nbascules\\nbase\\nbaseball\\nbaseballs\\nbaseborn\\nbased\\nbaseless\\nbaseline\\nbaselines\\nbasely\\nbaseman\\nbasemen\\nbasement\\nbasements\\nbaseness\\nbasenesses\\nbasenji\\nbasenjis\\nbaser\\nbases\\nbasest\\nbash\\nbashaw\\nbashaws\\nbashed\\nbasher\\nbashers\\nbashes\\nbashful\\nbashfulness\\nbashfulnesses\\nbashing\\nbashlyk\\nbashlyks\\nbasic\\nbasically\\nbasicities\\nbasicity\\nbasics\\nbasidia\\nbasidial\\nbasidium\\nbasified\\nbasifier\\nbasifiers\\nbasifies\\nbasify\\nbasifying\\nbasil\\nbasilar\\nbasilary\\nbasilic\\nbasilica\\nbasilicae\\nbasilicas\\nbasilisk\\nbasilisks\\nbasils\\nbasin\\nbasinal\\nbasined\\nbasinet\\nbasinets\\nbasing\\nbasins\\nbasion\\nbasions\\nbasis\\nbask\\nbasked\\nbasket\\nbasketball\\nbasketballs\\nbasketful\\nbasketfuls\\nbasketries\\nbasketry\\nbaskets\\nbasking\\nbasks\\nbasophil\\nbasophils\\nbasque\\nbasques\\nbass\\nbasses\\nbasset\\nbasseted\\nbasseting\\nbassets\\nbassetted\\nbassetting\\nbassi\\nbassinet\\nbassinets\\nbassist\\nbassists\\nbassly\\nbassness\\nbassnesses\\nbasso\\nbassoon\\nbassoons\\nbassos\\nbasswood\\nbasswoods\\nbassy\\nbast\\nbastard\\nbastardies\\nbastardize\\nbastardized\\nbastardizes\\nbastardizing\\nbastards\\nbastardy\\nbaste\\nbasted\\nbaster\\nbasters\\nbastes\\nbastile\\nbastiles\\nbastille\\nbastilles\\nbasting\\nbastings\\nbastion\\nbastioned\\nbastions\\nbasts\\nbat\\nbatboy\\nbatboys\\nbatch\\nbatched\\nbatcher\\nbatchers\\nbatches\\nbatching\\nbate\\nbateau\\nbateaux\\nbated\\nbates\\nbatfish\\nbatfishes\\nbatfowl\\nbatfowled\\nbatfowling\\nbatfowls\\nbath\\nbathe\\nbathed\\nbather\\nbathers\\nbathes\\nbathetic\\nbathing\\nbathless\\nbathos\\nbathoses\\nbathrobe\\nbathrobes\\nbathroom\\nbathrooms\\nbaths\\nbathtub\\nbathtubs\\nbathyal\\nbatik\\nbatiks\\nbating\\nbatiste\\nbatistes\\nbatlike\\nbatman\\nbatmen\\nbaton\\nbatons\\nbats\\nbatsman\\nbatsmen\\nbatt\\nbattalia\\nbattalias\\nbattalion\\nbattalions\\nbatteau\\nbatteaux\\nbatted\\nbatten\\nbattened\\nbattener\\nbatteners\\nbattening\\nbattens\\nbatter\\nbattered\\nbatterie\\nbatteries\\nbattering\\nbatters\\nbattery\\nbattier\\nbattiest\\nbattik\\nbattiks\\nbatting\\nbattings\\nbattle\\nbattled\\nbattlefield\\nbattlefields\\nbattlement\\nbattlements\\nbattler\\nbattlers\\nbattles\\nbattleship\\nbattleships\\nbattling\\nbatts\\nbattu\\nbattue\\nbattues\\nbatty\\nbatwing\\nbaubee\\nbaubees\\nbauble\\nbaubles\\nbaud\\nbaudekin\\nbaudekins\\nbaudrons\\nbaudronses\\nbauds\\nbaulk\\nbaulked\\nbaulkier\\nbaulkiest\\nbaulking\\nbaulks\\nbaulky\\nbausond\\nbauxite\\nbauxites\\nbauxitic\\nbawbee\\nbawbees\\nbawcock\\nbawcocks\\nbawd\\nbawdier\\nbawdies\\nbawdiest\\nbawdily\\nbawdiness\\nbawdinesses\\nbawdric\\nbawdrics\\nbawdries\\nbawdry\\nbawds\\nbawdy\\nbawl\\nbawled\\nbawler\\nbawlers\\nbawling\\nbawls\\nbawsunt\\nbawtie\\nbawties\\nbawty\\nbay\\nbayadeer\\nbayadeers\\nbayadere\\nbayaderes\\nbayamo\\nbayamos\\nbayard\\nbayards\\nbayberries\\nbayberry\\nbayed\\nbaying\\nbayonet\\nbayoneted\\nbayoneting\\nbayonets\\nbayonetted\\nbayonetting\\nbayou\\nbayous\\nbays\\nbaywood\\nbaywoods\\nbazaar\\nbazaars\\nbazar\\nbazars\\nbazooka\\nbazookas\\nbdellium\\nbdelliums\\nbe\\nbeach\\nbeachboy\\nbeachboys\\nbeachcomber\\nbeachcombers\\nbeached\\nbeaches\\nbeachhead\\nbeachheads\\nbeachier\\nbeachiest\\nbeaching\\nbeachy\\nbeacon\\nbeaconed\\nbeaconing\\nbeacons\\nbead\\nbeaded\\nbeadier\\nbeadiest\\nbeadily\\nbeading\\nbeadings\\nbeadle\\nbeadles\\nbeadlike\\nbeadman\\nbeadmen\\nbeadroll\\nbeadrolls\\nbeads\\nbeadsman\\nbeadsmen\\nbeadwork\\nbeadworks\\nbeady\\nbeagle\\nbeagles\\nbeak\\nbeaked\\nbeaker\\nbeakers\\nbeakier\\nbeakiest\\nbeakless\\nbeaklike\\nbeaks\\nbeaky\\nbeam\\nbeamed\\nbeamier\\nbeamiest\\nbeamily\\nbeaming\\nbeamish\\nbeamless\\nbeamlike\\nbeams\\nbeamy\\nbean\\nbeanbag\\nbeanbags\\nbeanball\\nbeanballs\\nbeaned\\nbeaneries\\nbeanery\\nbeanie\\nbeanies\\nbeaning\\nbeanlike\\nbeano\\nbeanos\\nbeanpole\\nbeanpoles\\nbeans\\nbear\\nbearable\\nbearably\\nbearcat\\nbearcats\\nbeard\\nbearded\\nbearding\\nbeardless\\nbeards\\nbearer\\nbearers\\nbearing\\nbearings\\nbearish\\nbearlike\\nbears\\nbearskin\\nbearskins\\nbeast\\nbeastie\\nbeasties\\nbeastlier\\nbeastliest\\nbeastliness\\nbeastlinesses\\nbeastly\\nbeasts\\nbeat\\nbeatable\\nbeaten\\nbeater\\nbeaters\\nbeatific\\nbeatification\\nbeatifications\\nbeatified\\nbeatifies\\nbeatify\\nbeatifying\\nbeating\\nbeatings\\nbeatless\\nbeatnik\\nbeatniks\\nbeats\\nbeau\\nbeauish\\nbeaus\\nbeaut\\nbeauteously\\nbeauties\\nbeautification\\nbeautifications\\nbeautified\\nbeautifies\\nbeautiful\\nbeautifully\\nbeautify\\nbeautifying\\nbeauts\\nbeauty\\nbeaux\\nbeaver\\nbeavered\\nbeavering\\nbeavers\\nbebeeru\\nbebeerus\\nbeblood\\nbeblooded\\nbeblooding\\nbebloods\\nbebop\\nbebopper\\nbeboppers\\nbebops\\nbecalm\\nbecalmed\\nbecalming\\nbecalms\\nbecame\\nbecap\\nbecapped\\nbecapping\\nbecaps\\nbecarpet\\nbecarpeted\\nbecarpeting\\nbecarpets\\nbecause\\nbechalk\\nbechalked\\nbechalking\\nbechalks\\nbechamel\\nbechamels\\nbechance\\nbechanced\\nbechances\\nbechancing\\nbecharm\\nbecharmed\\nbecharming\\nbecharms\\nbeck\\nbecked\\nbecket\\nbeckets\\nbecking\\nbeckon\\nbeckoned\\nbeckoner\\nbeckoners\\nbeckoning\\nbeckons\\nbecks\\nbeclamor\\nbeclamored\\nbeclamoring\\nbeclamors\\nbeclasp\\nbeclasped\\nbeclasping\\nbeclasps\\nbecloak\\nbecloaked\\nbecloaking\\nbecloaks\\nbeclog\\nbeclogged\\nbeclogging\\nbeclogs\\nbeclothe\\nbeclothed\\nbeclothes\\nbeclothing\\nbecloud\\nbeclouded\\nbeclouding\\nbeclouds\\nbeclown\\nbeclowned\\nbeclowning\\nbeclowns\\nbecome\\nbecomes\\nbecoming\\nbecomingly\\nbecomings\\nbecoward\\nbecowarded\\nbecowarding\\nbecowards\\nbecrawl\\nbecrawled\\nbecrawling\\nbecrawls\\nbecrime\\nbecrimed\\nbecrimes\\nbecriming\\nbecrowd\\nbecrowded\\nbecrowding\\nbecrowds\\nbecrust\\nbecrusted\\nbecrusting\\nbecrusts\\nbecudgel\\nbecudgeled\\nbecudgeling\\nbecudgelled\\nbecudgelling\\nbecudgels\\nbecurse\\nbecursed\\nbecurses\\nbecursing\\nbecurst\\nbed\\nbedabble\\nbedabbled\\nbedabbles\\nbedabbling\\nbedamn\\nbedamned\\nbedamning\\nbedamns\\nbedarken\\nbedarkened\\nbedarkening\\nbedarkens\\nbedaub\\nbedaubed\\nbedaubing\\nbedaubs\\nbedazzle\\nbedazzled\\nbedazzles\\nbedazzling\\nbedbug\\nbedbugs\\nbedchair\\nbedchairs\\nbedclothes\\nbedcover\\nbedcovers\\nbedded\\nbedder\\nbedders\\nbedding\\nbeddings\\nbedeafen\\nbedeafened\\nbedeafening\\nbedeafens\\nbedeck\\nbedecked\\nbedecking\\nbedecks\\nbedel\\nbedell\\nbedells\\nbedels\\nbedeman\\nbedemen\\nbedesman\\nbedesmen\\nbedevil\\nbedeviled\\nbedeviling\\nbedevilled\\nbedevilling\\nbedevils\\nbedew\\nbedewed\\nbedewing\\nbedews\\nbedfast\\nbedframe\\nbedframes\\nbedgown\\nbedgowns\\nbediaper\\nbediapered\\nbediapering\\nbediapers\\nbedight\\nbedighted\\nbedighting\\nbedights\\nbedim\\nbedimmed\\nbedimming\\nbedimple\\nbedimpled\\nbedimples\\nbedimpling\\nbedims\\nbedirtied\\nbedirties\\nbedirty\\nbedirtying\\nbedizen\\nbedizened\\nbedizening\\nbedizens\\nbedlam\\nbedlamp\\nbedlamps\\nbedlams\\nbedless\\nbedlike\\nbedmaker\\nbedmakers\\nbedmate\\nbedmates\\nbedotted\\nbedouin\\nbedouins\\nbedpan\\nbedpans\\nbedplate\\nbedplates\\nbedpost\\nbedposts\\nbedquilt\\nbedquilts\\nbedraggled\\nbedrail\\nbedrails\\nbedrape\\nbedraped\\nbedrapes\\nbedraping\\nbedrench\\nbedrenched\\nbedrenches\\nbedrenching\\nbedrid\\nbedridden\\nbedrivel\\nbedriveled\\nbedriveling\\nbedrivelled\\nbedrivelling\\nbedrivels\\nbedrock\\nbedrocks\\nbedroll\\nbedrolls\\nbedroom\\nbedrooms\\nbedrug\\nbedrugged\\nbedrugging\\nbedrugs\\nbeds\\nbedside\\nbedsides\\nbedsonia\\nbedsonias\\nbedsore\\nbedsores\\nbedspread\\nbedspreads\\nbedstand\\nbedstands\\nbedstead\\nbedsteads\\nbedstraw\\nbedstraws\\nbedtick\\nbedticks\\nbedtime\\nbedtimes\\nbeduin\\nbeduins\\nbedumb\\nbedumbed\\nbedumbing\\nbedumbs\\nbedunce\\nbedunced\\nbedunces\\nbeduncing\\nbedward\\nbedwards\\nbedwarf\\nbedwarfed\\nbedwarfing\\nbedwarfs\\nbee\\nbeebee\\nbeebees\\nbeebread\\nbeebreads\\nbeech\\nbeechen\\nbeeches\\nbeechier\\nbeechiest\\nbeechnut\\nbeechnuts\\nbeechy\\nbeef\\nbeefcake\\nbeefcakes\\nbeefed\\nbeefier\\nbeefiest\\nbeefily\\nbeefing\\nbeefless\\nbeefs\\nbeefsteak\\nbeefsteaks\\nbeefwood\\nbeefwoods\\nbeefy\\nbeehive\\nbeehives\\nbeelike\\nbeeline\\nbeelines\\nbeelzebub\\nbeen\\nbeep\\nbeeped\\nbeeper\\nbeepers\\nbeeping\\nbeeps\\nbeer\\nbeerier\\nbeeriest\\nbeers\\nbeery\\nbees\\nbeeswax\\nbeeswaxes\\nbeeswing\\nbeeswings\\nbeet\\nbeetle\\nbeetled\\nbeetles\\nbeetling\\nbeetroot\\nbeetroots\\nbeets\\nbeeves\\nbefall\\nbefallen\\nbefalling\\nbefalls\\nbefell\\nbefinger\\nbefingered\\nbefingering\\nbefingers\\nbefit\\nbefits\\nbefitted\\nbefitting\\nbeflag\\nbeflagged\\nbeflagging\\nbeflags\\nbeflea\\nbefleaed\\nbefleaing\\nbefleas\\nbefleck\\nbeflecked\\nbeflecking\\nbeflecks\\nbeflower\\nbeflowered\\nbeflowering\\nbeflowers\\nbefog\\nbefogged\\nbefogging\\nbefogs\\nbefool\\nbefooled\\nbefooling\\nbefools\\nbefore\\nbeforehand\\nbefoul\\nbefouled\\nbefouler\\nbefoulers\\nbefouling\\nbefouls\\nbefret\\nbefrets\\nbefretted\\nbefretting\\nbefriend\\nbefriended\\nbefriending\\nbefriends\\nbefringe\\nbefringed\\nbefringes\\nbefringing\\nbefuddle\\nbefuddled\\nbefuddles\\nbefuddling\\nbeg\\nbegall\\nbegalled\\nbegalling\\nbegalls\\nbegan\\nbegat\\nbegaze\\nbegazed\\nbegazes\\nbegazing\\nbeget\\nbegets\\nbegetter\\nbegetters\\nbegetting\\nbeggar\\nbeggared\\nbeggaries\\nbeggaring\\nbeggarly\\nbeggars\\nbeggary\\nbegged\\nbegging\\nbegin\\nbeginner\\nbeginners\\nbeginning\\nbeginnings\\nbegins\\nbegird\\nbegirded\\nbegirding\\nbegirdle\\nbegirdled\\nbegirdles\\nbegirdling\\nbegirds\\nbegirt\\nbeglad\\nbegladded\\nbegladding\\nbeglads\\nbegloom\\nbegloomed\\nbeglooming\\nbeglooms\\nbegone\\nbegonia\\nbegonias\\nbegorah\\nbegorra\\nbegorrah\\nbegot\\nbegotten\\nbegrim\\nbegrime\\nbegrimed\\nbegrimes\\nbegriming\\nbegrimmed\\nbegrimming\\nbegrims\\nbegroan\\nbegroaned\\nbegroaning\\nbegroans\\nbegrudge\\nbegrudged\\nbegrudges\\nbegrudging\\nbegs\\nbeguile\\nbeguiled\\nbeguiler\\nbeguilers\\nbeguiles\\nbeguiling\\nbeguine\\nbeguines\\nbegulf\\nbegulfed\\nbegulfing\\nbegulfs\\nbegum\\nbegums\\nbegun\\nbehalf\\nbehalves\\nbehave\\nbehaved\\nbehaver\\nbehavers\\nbehaves\\nbehaving\\nbehavior\\nbehavioral\\nbehaviors\\nbehead\\nbeheaded\\nbeheading\\nbeheads\\nbeheld\\nbehemoth\\nbehemoths\\nbehest\\nbehests\\nbehind\\nbehinds\\nbehold\\nbeholden\\nbeholder\\nbeholders\\nbeholding\\nbeholds\\nbehoof\\nbehoove\\nbehooved\\nbehooves\\nbehooving\\nbehove\\nbehoved\\nbehoves\\nbehoving\\nbehowl\\nbehowled\\nbehowling\\nbehowls\\nbeige\\nbeiges\\nbeigy\\nbeing\\nbeings\\nbejewel\\nbejeweled\\nbejeweling\\nbejewelled\\nbejewelling\\nbejewels\\nbejumble\\nbejumbled\\nbejumbles\\nbejumbling\\nbekiss\\nbekissed\\nbekisses\\nbekissing\\nbeknight\\nbeknighted\\nbeknighting\\nbeknights\\nbeknot\\nbeknots\\nbeknotted\\nbeknotting\\nbel\\nbelabor\\nbelabored\\nbelaboring\\nbelabors\\nbelabour\\nbelaboured\\nbelabouring\\nbelabours\\nbelaced\\nbeladied\\nbeladies\\nbelady\\nbeladying\\nbelated\\nbelaud\\nbelauded\\nbelauding\\nbelauds\\nbelay\\nbelayed\\nbelaying\\nbelays\\nbelch\\nbelched\\nbelcher\\nbelchers\\nbelches\\nbelching\\nbeldam\\nbeldame\\nbeldames\\nbeldams\\nbeleaguer\\nbeleaguered\\nbeleaguering\\nbeleaguers\\nbeleap\\nbeleaped\\nbeleaping\\nbeleaps\\nbeleapt\\nbelfried\\nbelfries\\nbelfry\\nbelga\\nbelgas\\nbelie\\nbelied\\nbelief\\nbeliefs\\nbelier\\nbeliers\\nbelies\\nbelievable\\nbelievably\\nbelieve\\nbelieved\\nbeliever\\nbelievers\\nbelieves\\nbelieving\\nbelike\\nbeliquor\\nbeliquored\\nbeliquoring\\nbeliquors\\nbelittle\\nbelittled\\nbelittles\\nbelittling\\nbelive\\nbell\\nbelladonna\\nbelladonnas\\nbellbird\\nbellbirds\\nbellboy\\nbellboys\\nbelle\\nbelled\\nbelleek\\nbelleeks\\nbelles\\nbellhop\\nbellhops\\nbellicose\\nbellicosities\\nbellicosity\\nbellied\\nbellies\\nbelligerence\\nbelligerences\\nbelligerencies\\nbelligerency\\nbelligerent\\nbelligerents\\nbelling\\nbellman\\nbellmen\\nbellow\\nbellowed\\nbellower\\nbellowers\\nbellowing\\nbellows\\nbellpull\\nbellpulls\\nbells\\nbellwether\\nbellwethers\\nbellwort\\nbellworts\\nbelly\\nbellyache\\nbellyached\\nbellyaches\\nbellyaching\\nbellyful\\nbellyfuls\\nbellying\\nbelong\\nbelonged\\nbelonging\\nbelongings\\nbelongs\\nbeloved\\nbeloveds\\nbelow\\nbelows\\nbels\\nbelt\\nbelted\\nbelting\\nbeltings\\nbeltless\\nbeltline\\nbeltlines\\nbelts\\nbeltway\\nbeltways\\nbeluga\\nbelugas\\nbelying\\nbema\\nbemadam\\nbemadamed\\nbemadaming\\nbemadams\\nbemadden\\nbemaddened\\nbemaddening\\nbemaddens\\nbemas\\nbemata\\nbemean\\nbemeaned\\nbemeaning\\nbemeans\\nbemingle\\nbemingled\\nbemingles\\nbemingling\\nbemire\\nbemired\\nbemires\\nbemiring\\nbemist\\nbemisted\\nbemisting\\nbemists\\nbemix\\nbemixed\\nbemixes\\nbemixing\\nbemixt\\nbemoan\\nbemoaned\\nbemoaning\\nbemoans\\nbemock\\nbemocked\\nbemocking\\nbemocks\\nbemuddle\\nbemuddled\\nbemuddles\\nbemuddling\\nbemurmur\\nbemurmured\\nbemurmuring\\nbemurmurs\\nbemuse\\nbemused\\nbemuses\\nbemusing\\nbemuzzle\\nbemuzzled\\nbemuzzles\\nbemuzzling\\nben\\nbename\\nbenamed\\nbenames\\nbenaming\\nbench\\nbenched\\nbencher\\nbenchers\\nbenches\\nbenching\\nbend\\nbendable\\nbenday\\nbendayed\\nbendaying\\nbendays\\nbended\\nbendee\\nbendees\\nbender\\nbenders\\nbending\\nbends\\nbendways\\nbendwise\\nbendy\\nbendys\\nbene\\nbeneath\\nbenedick\\nbenedicks\\nbenedict\\nbenediction\\nbenedictions\\nbenedicts\\nbenefaction\\nbenefactions\\nbenefactor\\nbenefactors\\nbenefactress\\nbenefactresses\\nbenefic\\nbenefice\\nbeneficed\\nbeneficence\\nbeneficences\\nbeneficent\\nbenefices\\nbeneficial\\nbeneficially\\nbeneficiaries\\nbeneficiary\\nbeneficing\\nbenefit\\nbenefited\\nbenefiting\\nbenefits\\nbenefitted\\nbenefitting\\nbenempt\\nbenempted\\nbenes\\nbenevolence\\nbenevolences\\nbenevolent\\nbenign\\nbenignities\\nbenignity\\nbenignly\\nbenison\\nbenisons\\nbenjamin\\nbenjamins\\nbenne\\nbennes\\nbennet\\nbennets\\nbenni\\nbennies\\nbennis\\nbenny\\nbens\\nbent\\nbenthal\\nbenthic\\nbenthos\\nbenthoses\\nbents\\nbentwood\\nbentwoods\\nbenumb\\nbenumbed\\nbenumbing\\nbenumbs\\nbenzal\\nbenzene\\nbenzenes\\nbenzidin\\nbenzidins\\nbenzin\\nbenzine\\nbenzines\\nbenzins\\nbenzoate\\nbenzoates\\nbenzoic\\nbenzoin\\nbenzoins\\nbenzol\\nbenzole\\nbenzoles\\nbenzols\\nbenzoyl\\nbenzoyls\\nbenzyl\\nbenzylic\\nbenzyls\\nbepaint\\nbepainted\\nbepainting\\nbepaints\\nbepimple\\nbepimpled\\nbepimples\\nbepimpling\\nbequeath\\nbequeathed\\nbequeathing\\nbequeaths\\nbequest\\nbequests\\nberake\\nberaked\\nberakes\\nberaking\\nberascal\\nberascaled\\nberascaling\\nberascals\\nberate\\nberated\\nberates\\nberating\\nberberin\\nberberins\\nberceuse\\nberceuses\\nbereave\\nbereaved\\nbereavement\\nbereavements\\nbereaver\\nbereavers\\nbereaves\\nbereaving\\nbereft\\nberet\\nberets\\nberetta\\nberettas\\nberg\\nbergamot\\nbergamots\\nbergs\\nberhyme\\nberhymed\\nberhymes\\nberhyming\\nberiber\\nberibers\\nberime\\nberimed\\nberimes\\nberiming\\nberinged\\nberlin\\nberline\\nberlines\\nberlins\\nberm\\nberme\\nbermes\\nberms\\nbernicle\\nbernicles\\nbernstein\\nberobed\\nberouged\\nberretta\\nberrettas\\nberried\\nberries\\nberry\\nberrying\\nberseem\\nberseems\\nberserk\\nberserks\\nberth\\nbertha\\nberthas\\nberthed\\nberthing\\nberths\\nberyl\\nberyline\\nberyls\\nbescorch\\nbescorched\\nbescorches\\nbescorching\\nbescour\\nbescoured\\nbescouring\\nbescours\\nbescreen\\nbescreened\\nbescreening\\nbescreens\\nbeseech\\nbeseeched\\nbeseeches\\nbeseeching\\nbeseem\\nbeseemed\\nbeseeming\\nbeseems\\nbeset\\nbesets\\nbesetter\\nbesetters\\nbesetting\\nbeshadow\\nbeshadowed\\nbeshadowing\\nbeshadows\\nbeshame\\nbeshamed\\nbeshames\\nbeshaming\\nbeshiver\\nbeshivered\\nbeshivering\\nbeshivers\\nbeshout\\nbeshouted\\nbeshouting\\nbeshouts\\nbeshrew\\nbeshrewed\\nbeshrewing\\nbeshrews\\nbeshroud\\nbeshrouded\\nbeshrouding\\nbeshrouds\\nbeside\\nbesides\\nbesiege\\nbesieged\\nbesieger\\nbesiegers\\nbesieges\\nbesieging\\nbeslaved\\nbeslime\\nbeslimed\\nbeslimes\\nbesliming\\nbesmear\\nbesmeared\\nbesmearing\\nbesmears\\nbesmile\\nbesmiled\\nbesmiles\\nbesmiling\\nbesmirch\\nbesmirched\\nbesmirches\\nbesmirching\\nbesmoke\\nbesmoked\\nbesmokes\\nbesmoking\\nbesmooth\\nbesmoothed\\nbesmoothing\\nbesmooths\\nbesmudge\\nbesmudged\\nbesmudges\\nbesmudging\\nbesmut\\nbesmuts\\nbesmutted\\nbesmutting\\nbesnow\\nbesnowed\\nbesnowing\\nbesnows\\nbesom\\nbesoms\\nbesoothe\\nbesoothed\\nbesoothes\\nbesoothing\\nbesot\\nbesots\\nbesotted\\nbesotting\\nbesought\\nbespake\\nbespeak\\nbespeaking\\nbespeaks\\nbespoke\\nbespoken\\nbespouse\\nbespoused\\nbespouses\\nbespousing\\nbespread\\nbespreading\\nbespreads\\nbesprent\\nbest\\nbestead\\nbesteaded\\nbesteading\\nbesteads\\nbested\\nbestial\\nbestialities\\nbestiality\\nbestiaries\\nbestiary\\nbesting\\nbestir\\nbestirred\\nbestirring\\nbestirs\\nbestow\\nbestowal\\nbestowals\\nbestowed\\nbestowing\\nbestows\\nbestrew\\nbestrewed\\nbestrewing\\nbestrewn\\nbestrews\\nbestrid\\nbestridden\\nbestride\\nbestrides\\nbestriding\\nbestrode\\nbestrow\\nbestrowed\\nbestrowing\\nbestrown\\nbestrows\\nbests\\nbestud\\nbestudded\\nbestudding\\nbestuds\\nbeswarm\\nbeswarmed\\nbeswarming\\nbeswarms\\nbet\\nbeta\\nbetaine\\nbetaines\\nbetake\\nbetaken\\nbetakes\\nbetaking\\nbetas\\nbetatron\\nbetatrons\\nbetatter\\nbetattered\\nbetattering\\nbetatters\\nbetaxed\\nbetel\\nbetelnut\\nbetelnuts\\nbetels\\nbeth\\nbethank\\nbethanked\\nbethanking\\nbethanks\\nbethel\\nbethels\\nbethink\\nbethinking\\nbethinks\\nbethorn\\nbethorned\\nbethorning\\nbethorns\\nbethought\\nbeths\\nbethump\\nbethumped\\nbethumping\\nbethumps\\nbetide\\nbetided\\nbetides\\nbetiding\\nbetime\\nbetimes\\nbetise\\nbetises\\nbetoken\\nbetokened\\nbetokening\\nbetokens\\nbeton\\nbetonies\\nbetons\\nbetony\\nbetook\\nbetray\\nbetrayal\\nbetrayals\\nbetrayed\\nbetrayer\\nbetrayers\\nbetraying\\nbetrays\\nbetroth\\nbetrothal\\nbetrothals\\nbetrothed\\nbetrotheds\\nbetrothing\\nbetroths\\nbets\\nbetta\\nbettas\\nbetted\\nbetter\\nbettered\\nbettering\\nbetterment\\nbetterments\\nbetters\\nbetting\\nbettor\\nbettors\\nbetween\\nbetwixt\\nbeuncled\\nbevatron\\nbevatrons\\nbevel\\nbeveled\\nbeveler\\nbevelers\\nbeveling\\nbevelled\\nbeveller\\nbevellers\\nbevelling\\nbevels\\nbeverage\\nbeverages\\nbevies\\nbevomit\\nbevomited\\nbevomiting\\nbevomits\\nbevor\\nbevors\\nbevy\\nbewail\\nbewailed\\nbewailer\\nbewailers\\nbewailing\\nbewails\\nbeware\\nbewared\\nbewares\\nbewaring\\nbewearied\\nbewearies\\nbeweary\\nbewearying\\nbeweep\\nbeweeping\\nbeweeps\\nbewept\\nbewig\\nbewigged\\nbewigging\\nbewigs\\nbewilder\\nbewildered\\nbewildering\\nbewilderment\\nbewilderments\\nbewilders\\nbewinged\\nbewitch\\nbewitched\\nbewitches\\nbewitching\\nbeworm\\nbewormed\\nbeworming\\nbeworms\\nbeworried\\nbeworries\\nbeworry\\nbeworrying\\nbewrap\\nbewrapped\\nbewrapping\\nbewraps\\nbewrapt\\nbewray\\nbewrayed\\nbewrayer\\nbewrayers\\nbewraying\\nbewrays\\nbey\\nbeylic\\nbeylics\\nbeylik\\nbeyliks\\nbeyond\\nbeyonds\\nbeys\\nbezant\\nbezants\\nbezel\\nbezels\\nbezil\\nbezils\\nbezique\\nbeziques\\nbezoar\\nbezoars\\nbezzant\\nbezzants\\nbhakta\\nbhaktas\\nbhakti\\nbhaktis\\nbhang\\nbhangs\\nbheestie\\nbheesties\\nbheesty\\nbhistie\\nbhisties\\nbhoot\\nbhoots\\nbhut\\nbhuts\\nbi\\nbiacetyl\\nbiacetyls\\nbialy\\nbialys\\nbiannual\\nbiannually\\nbias\\nbiased\\nbiasedly\\nbiases\\nbiasing\\nbiasness\\nbiasnesses\\nbiassed\\nbiasses\\nbiassing\\nbiathlon\\nbiathlons\\nbiaxal\\nbiaxial\\nbib\\nbibasic\\nbibasilar\\nbibb\\nbibbed\\nbibber\\nbibberies\\nbibbers\\nbibbery\\nbibbing\\nbibbs\\nbibcock\\nbibcocks\\nbibelot\\nbibelots\\nbible\\nbibles\\nbibless\\nbiblical\\nbiblike\\nbibliographer\\nbibliographers\\nbibliographic\\nbibliographical\\nbibliographies\\nbibliography\\nbibs\\nbibulous\\nbicameral\\nbicarb\\nbicarbonate\\nbicarbonates\\nbicarbs\\nbice\\nbicentennial\\nbicentennials\\nbiceps\\nbicepses\\nbices\\nbichrome\\nbicker\\nbickered\\nbickerer\\nbickerers\\nbickering\\nbickers\\nbicolor\\nbicolored\\nbicolors\\nbicolour\\nbicolours\\nbiconcave\\nbiconcavities\\nbiconcavity\\nbiconvex\\nbiconvexities\\nbiconvexity\\nbicorn\\nbicorne\\nbicornes\\nbicron\\nbicrons\\nbicultural\\nbicuspid\\nbicuspids\\nbicycle\\nbicycled\\nbicycler\\nbicyclers\\nbicycles\\nbicyclic\\nbicycling\\nbid\\nbidarka\\nbidarkas\\nbidarkee\\nbidarkees\\nbiddable\\nbiddably\\nbidden\\nbidder\\nbidders\\nbiddies\\nbidding\\nbiddings\\nbiddy\\nbide\\nbided\\nbidental\\nbider\\nbiders\\nbides\\nbidet\\nbidets\\nbiding\\nbidirectional\\nbids\\nbield\\nbielded\\nbielding\\nbields\\nbiennia\\nbiennial\\nbiennially\\nbiennials\\nbiennium\\nbienniums\\nbier\\nbiers\\nbifacial\\nbiff\\nbiffed\\nbiffies\\nbiffin\\nbiffing\\nbiffins\\nbiffs\\nbiffy\\nbifid\\nbifidities\\nbifidity\\nbifidly\\nbifilar\\nbiflex\\nbifocal\\nbifocals\\nbifold\\nbiforate\\nbiforked\\nbiform\\nbiformed\\nbifunctional\\nbig\\nbigamies\\nbigamist\\nbigamists\\nbigamous\\nbigamy\\nbigaroon\\nbigaroons\\nbigeminies\\nbigeminy\\nbigeye\\nbigeyes\\nbigger\\nbiggest\\nbiggety\\nbiggie\\nbiggies\\nbiggin\\nbigging\\nbiggings\\nbiggins\\nbiggish\\nbiggity\\nbighead\\nbigheads\\nbighorn\\nbighorns\\nbight\\nbighted\\nbighting\\nbights\\nbigly\\nbigmouth\\nbigmouths\\nbigness\\nbignesses\\nbignonia\\nbignonias\\nbigot\\nbigoted\\nbigotries\\nbigotry\\nbigots\\nbigwig\\nbigwigs\\nbihourly\\nbijou\\nbijous\\nbijoux\\nbijugate\\nbijugous\\nbike\\nbiked\\nbiker\\nbikers\\nbikes\\nbikeway\\nbikeways\\nbiking\\nbikini\\nbikinied\\nbikinis\\nbilabial\\nbilabials\\nbilander\\nbilanders\\nbilateral\\nbilaterally\\nbilberries\\nbilberry\\nbilbo\\nbilboa\\nbilboas\\nbilboes\\nbilbos\\nbile\\nbiles\\nbilge\\nbilged\\nbilges\\nbilgier\\nbilgiest\\nbilging\\nbilgy\\nbiliary\\nbilinear\\nbilingual\\nbilious\\nbiliousness\\nbiliousnesses\\nbilirubin\\nbilk\\nbilked\\nbilker\\nbilkers\\nbilking\\nbilks\\nbill\\nbillable\\nbillboard\\nbillboards\\nbillbug\\nbillbugs\\nbilled\\nbiller\\nbillers\\nbillet\\nbilleted\\nbilleter\\nbilleters\\nbilleting\\nbillets\\nbillfish\\nbillfishes\\nbillfold\\nbillfolds\\nbillhead\\nbillheads\\nbillhook\\nbillhooks\\nbilliard\\nbilliards\\nbillie\\nbillies\\nbilling\\nbillings\\nbillion\\nbillions\\nbillionth\\nbillionths\\nbillon\\nbillons\\nbillow\\nbillowed\\nbillowier\\nbillowiest\\nbillowing\\nbillows\\nbillowy\\nbills\\nbilly\\nbillycan\\nbillycans\\nbilobate\\nbilobed\\nbilsted\\nbilsteds\\nbiltong\\nbiltongs\\nbima\\nbimah\\nbimahs\\nbimanous\\nbimanual\\nbimas\\nbimensal\\nbimester\\nbimesters\\nbimetal\\nbimetallic\\nbimetals\\nbimethyl\\nbimethyls\\nbimodal\\nbin\\nbinal\\nbinaries\\nbinary\\nbinate\\nbinately\\nbinational\\nbinationalism\\nbinationalisms\\nbinaural\\nbind\\nbindable\\nbinder\\nbinderies\\nbinders\\nbindery\\nbinding\\nbindings\\nbindle\\nbindles\\nbinds\\nbindweed\\nbindweeds\\nbine\\nbines\\nbinge\\nbinges\\nbingo\\nbingos\\nbinit\\nbinits\\nbinnacle\\nbinnacles\\nbinned\\nbinning\\nbinocle\\nbinocles\\nbinocular\\nbinocularly\\nbinoculars\\nbinomial\\nbinomials\\nbins\\nbint\\nbints\\nbio\\nbioassay\\nbioassayed\\nbioassaying\\nbioassays\\nbiochemical\\nbiochemicals\\nbiochemist\\nbiochemistries\\nbiochemistry\\nbiochemists\\nbiocidal\\nbiocide\\nbiocides\\nbioclean\\nbiocycle\\nbiocycles\\nbiodegradabilities\\nbiodegradability\\nbiodegradable\\nbiodegradation\\nbiodegradations\\nbiodegrade\\nbiodegraded\\nbiodegrades\\nbiodegrading\\nbiogen\\nbiogenic\\nbiogenies\\nbiogens\\nbiogeny\\nbiographer\\nbiographers\\nbiographic\\nbiographical\\nbiographies\\nbiography\\nbioherm\\nbioherms\\nbiologic\\nbiological\\nbiologics\\nbiologies\\nbiologist\\nbiologists\\nbiology\\nbiolyses\\nbiolysis\\nbiolytic\\nbiomass\\nbiomasses\\nbiome\\nbiomedical\\nbiomes\\nbiometries\\nbiometry\\nbionic\\nbionics\\nbionomic\\nbionomies\\nbionomy\\nbiont\\nbiontic\\nbionts\\nbiophysical\\nbiophysicist\\nbiophysicists\\nbiophysics\\nbioplasm\\nbioplasms\\nbiopsic\\nbiopsies\\nbiopsy\\nbioptic\\nbios\\nbioscope\\nbioscopes\\nbioscopies\\nbioscopy\\nbiota\\nbiotas\\nbiotic\\nbiotical\\nbiotics\\nbiotin\\nbiotins\\nbiotite\\nbiotites\\nbiotitic\\nbiotope\\nbiotopes\\nbiotron\\nbiotrons\\nbiotype\\nbiotypes\\nbiotypic\\nbiovular\\nbipack\\nbipacks\\nbiparental\\nbiparous\\nbiparted\\nbipartisan\\nbiparty\\nbiped\\nbipedal\\nbipeds\\nbiphenyl\\nbiphenyls\\nbiplane\\nbiplanes\\nbipod\\nbipods\\nbipolar\\nbiracial\\nbiracially\\nbiradial\\nbiramose\\nbiramous\\nbirch\\nbirched\\nbirchen\\nbirches\\nbirching\\nbird\\nbirdbath\\nbirdbaths\\nbirdbrained\\nbirdcage\\nbirdcages\\nbirdcall\\nbirdcalls\\nbirded\\nbirder\\nbirders\\nbirdfarm\\nbirdfarms\\nbirdhouse\\nbirdhouses\\nbirdie\\nbirdied\\nbirdieing\\nbirdies\\nbirding\\nbirdlike\\nbirdlime\\nbirdlimed\\nbirdlimes\\nbirdliming\\nbirdman\\nbirdmen\\nbirds\\nbirdseed\\nbirdseeds\\nbirdseye\\nbirdseyes\\nbireme\\nbiremes\\nbiretta\\nbirettas\\nbirk\\nbirkie\\nbirkies\\nbirks\\nbirl\\nbirle\\nbirled\\nbirler\\nbirlers\\nbirles\\nbirling\\nbirlings\\nbirls\\nbirr\\nbirred\\nbirretta\\nbirrettas\\nbirring\\nbirrs\\nbirse\\nbirses\\nbirth\\nbirthdate\\nbirthdates\\nbirthday\\nbirthdays\\nbirthed\\nbirthing\\nbirthplace\\nbirthplaces\\nbirthrate\\nbirthrates\\nbirths\\nbis\\nbiscuit\\nbiscuits\\nbise\\nbisect\\nbisected\\nbisecting\\nbisection\\nbisections\\nbisector\\nbisectors\\nbisects\\nbises\\nbisexual\\nbisexuals\\nbishop\\nbishoped\\nbishoping\\nbishops\\nbisk\\nbisks\\nbismuth\\nbismuths\\nbisnaga\\nbisnagas\\nbison\\nbisons\\nbisque\\nbisques\\nbistate\\nbister\\nbistered\\nbisters\\nbistort\\nbistorts\\nbistouries\\nbistoury\\nbistre\\nbistred\\nbistres\\nbistro\\nbistroic\\nbistros\\nbit\\nbitable\\nbitch\\nbitched\\nbitcheries\\nbitchery\\nbitches\\nbitchier\\nbitchiest\\nbitchily\\nbitching\\nbitchy\\nbite\\nbiteable\\nbiter\\nbiters\\nbites\\nbitewing\\nbitewings\\nbiting\\nbitingly\\nbits\\nbitstock\\nbitstocks\\nbitsy\\nbitt\\nbitted\\nbitten\\nbitter\\nbittered\\nbitterer\\nbitterest\\nbittering\\nbitterly\\nbittern\\nbitterness\\nbitternesses\\nbitterns\\nbitters\\nbittier\\nbittiest\\nbitting\\nbittings\\nbittock\\nbittocks\\nbitts\\nbitty\\nbitumen\\nbitumens\\nbituminous\\nbivalent\\nbivalents\\nbivalve\\nbivalved\\nbivalves\\nbivinyl\\nbivinyls\\nbivouac\\nbivouacked\\nbivouacking\\nbivouacks\\nbivouacs\\nbiweeklies\\nbiweekly\\nbiyearly\\nbizarre\\nbizarrely\\nbizarres\\nbize\\nbizes\\nbiznaga\\nbiznagas\\nbizonal\\nbizone\\nbizones\\nblab\\nblabbed\\nblabber\\nblabbered\\nblabbering\\nblabbers\\nblabbing\\nblabby\\nblabs\\nblack\\nblackball\\nblackballs\\nblackberries\\nblackberry\\nblackbird\\nblackbirds\\nblackboard\\nblackboards\\nblackboy\\nblackboys\\nblackcap\\nblackcaps\\nblacked\\nblacken\\nblackened\\nblackening\\nblackens\\nblacker\\nblackest\\nblackfin\\nblackfins\\nblackflies\\nblackfly\\nblackguard\\nblackguards\\nblackgum\\nblackgums\\nblackhead\\nblackheads\\nblacking\\nblackings\\nblackish\\nblackjack\\nblackjacks\\nblackleg\\nblacklegs\\nblacklist\\nblacklisted\\nblacklisting\\nblacklists\\nblackly\\nblackmail\\nblackmailed\\nblackmailer\\nblackmailers\\nblackmailing\\nblackmails\\nblackness\\nblacknesses\\nblackout\\nblackouts\\nblacks\\nblacksmith\\nblacksmiths\\nblacktop\\nblacktopped\\nblacktopping\\nblacktops\\nbladder\\nbladders\\nbladdery\\nblade\\nbladed\\nblades\\nblae\\nblah\\nblahs\\nblain\\nblains\\nblamable\\nblamably\\nblame\\nblamed\\nblameful\\nblameless\\nblamelessly\\nblamer\\nblamers\\nblames\\nblameworthiness\\nblameworthinesses\\nblameworthy\\nblaming\\nblanch\\nblanched\\nblancher\\nblanchers\\nblanches\\nblanching\\nbland\\nblander\\nblandest\\nblandish\\nblandished\\nblandishes\\nblandishing\\nblandishment\\nblandishments\\nblandly\\nblandness\\nblandnesses\\nblank\\nblanked\\nblanker\\nblankest\\nblanket\\nblanketed\\nblanketing\\nblankets\\nblanking\\nblankly\\nblankness\\nblanknesses\\nblanks\\nblare\\nblared\\nblares\\nblaring\\nblarney\\nblarneyed\\nblarneying\\nblarneys\\nblase\\nblaspheme\\nblasphemed\\nblasphemes\\nblasphemies\\nblaspheming\\nblasphemous\\nblasphemy\\nblast\\nblasted\\nblastema\\nblastemas\\nblastemata\\nblaster\\nblasters\\nblastie\\nblastier\\nblasties\\nblastiest\\nblasting\\nblastings\\nblastoff\\nblastoffs\\nblastoma\\nblastomas\\nblastomata\\nblasts\\nblastula\\nblastulae\\nblastulas\\nblasty\\nblat\\nblatancies\\nblatancy\\nblatant\\nblate\\nblather\\nblathered\\nblathering\\nblathers\\nblats\\nblatted\\nblatter\\nblattered\\nblattering\\nblatters\\nblatting\\nblaubok\\nblauboks\\nblaw\\nblawed\\nblawing\\nblawn\\nblaws\\nblaze\\nblazed\\nblazer\\nblazers\\nblazes\\nblazing\\nblazon\\nblazoned\\nblazoner\\nblazoners\\nblazoning\\nblazonries\\nblazonry\\nblazons\\nbleach\\nbleached\\nbleacher\\nbleachers\\nbleaches\\nbleaching\\nbleak\\nbleaker\\nbleakest\\nbleakish\\nbleakly\\nbleakness\\nbleaknesses\\nbleaks\\nblear\\nbleared\\nblearier\\nbleariest\\nblearily\\nblearing\\nblears\\nbleary\\nbleat\\nbleated\\nbleater\\nbleaters\\nbleating\\nbleats\\nbleb\\nblebby\\nblebs\\nbled\\nbleed\\nbleeder\\nbleeders\\nbleeding\\nbleedings\\nbleeds\\nblellum\\nblellums\\nblemish\\nblemished\\nblemishes\\nblemishing\\nblench\\nblenched\\nblencher\\nblenchers\\nblenches\\nblenching\\nblend\\nblende\\nblended\\nblender\\nblenders\\nblendes\\nblending\\nblends\\nblennies\\nblenny\\nblent\\nbleomycin\\nblesbok\\nblesboks\\nblesbuck\\nblesbucks\\nbless\\nblessed\\nblesseder\\nblessedest\\nblessedness\\nblessednesses\\nblesser\\nblessers\\nblesses\\nblessing\\nblessings\\nblest\\nblet\\nblether\\nblethered\\nblethering\\nblethers\\nblets\\nblew\\nblight\\nblighted\\nblighter\\nblighters\\nblighties\\nblighting\\nblights\\nblighty\\nblimey\\nblimp\\nblimpish\\nblimps\\nblimy\\nblin\\nblind\\nblindage\\nblindages\\nblinded\\nblinder\\nblinders\\nblindest\\nblindfold\\nblindfolded\\nblindfolding\\nblindfolds\\nblinding\\nblindly\\nblindness\\nblindnesses\\nblinds\\nblini\\nblinis\\nblink\\nblinkard\\nblinkards\\nblinked\\nblinker\\nblinkered\\nblinkering\\nblinkers\\nblinking\\nblinks\\nblintz\\nblintze\\nblintzes\\nblip\\nblipped\\nblipping\\nblips\\nbliss\\nblisses\\nblissful\\nblissfully\\nblister\\nblistered\\nblistering\\nblisters\\nblistery\\nblite\\nblites\\nblithe\\nblithely\\nblither\\nblithered\\nblithering\\nblithers\\nblithesome\\nblithest\\nblitz\\nblitzed\\nblitzes\\nblitzing\\nblizzard\\nblizzards\\nbloat\\nbloated\\nbloater\\nbloaters\\nbloating\\nbloats\\nblob\\nblobbed\\nblobbing\\nblobs\\nbloc\\nblock\\nblockade\\nblockaded\\nblockades\\nblockading\\nblockage\\nblockages\\nblocked\\nblocker\\nblockers\\nblockier\\nblockiest\\nblocking\\nblockish\\nblocks\\nblocky\\nblocs\\nbloke\\nblokes\\nblond\\nblonde\\nblonder\\nblondes\\nblondest\\nblondish\\nblonds\\nblood\\nbloodcurdling\\nblooded\\nbloodfin\\nbloodfins\\nbloodhound\\nbloodhounds\\nbloodied\\nbloodier\\nbloodies\\nbloodiest\\nbloodily\\nblooding\\nbloodings\\nbloodless\\nbloodmobile\\nbloodmobiles\\nbloodred\\nbloods\\nbloodshed\\nbloodsheds\\nbloodstain\\nbloodstained\\nbloodstains\\nbloodsucker\\nbloodsuckers\\nbloodsucking\\nbloodsuckings\\nbloodthirstily\\nbloodthirstiness\\nbloodthirstinesses\\nbloodthirsty\\nbloody\\nbloodying\\nbloom\\nbloomed\\nbloomer\\nbloomeries\\nbloomers\\nbloomery\\nbloomier\\nbloomiest\\nblooming\\nblooms\\nbloomy\\nbloop\\nblooped\\nblooper\\nbloopers\\nblooping\\nbloops\\nblossom\\nblossomed\\nblossoming\\nblossoms\\nblossomy\\nblot\\nblotch\\nblotched\\nblotches\\nblotchier\\nblotchiest\\nblotching\\nblotchy\\nblotless\\nblots\\nblotted\\nblotter\\nblotters\\nblottier\\nblottiest\\nblotting\\nblotto\\nblotty\\nblouse\\nbloused\\nblouses\\nblousier\\nblousiest\\nblousily\\nblousing\\nblouson\\nblousons\\nblousy\\nblow\\nblowback\\nblowbacks\\nblowby\\nblowbys\\nblower\\nblowers\\nblowfish\\nblowfishes\\nblowflies\\nblowfly\\nblowgun\\nblowguns\\nblowhard\\nblowhards\\nblowhole\\nblowholes\\nblowier\\nblowiest\\nblowing\\nblown\\nblowoff\\nblowoffs\\nblowout\\nblowouts\\nblowpipe\\nblowpipes\\nblows\\nblowsed\\nblowsier\\nblowsiest\\nblowsily\\nblowsy\\nblowtorch\\nblowtorches\\nblowtube\\nblowtubes\\nblowup\\nblowups\\nblowy\\nblowzed\\nblowzier\\nblowziest\\nblowzily\\nblowzy\\nblubber\\nblubbered\\nblubbering\\nblubbers\\nblubbery\\nblucher\\nbluchers\\nbludgeon\\nbludgeoned\\nbludgeoning\\nbludgeons\\nblue\\nblueball\\nblueballs\\nbluebell\\nbluebells\\nblueberries\\nblueberry\\nbluebill\\nbluebills\\nbluebird\\nbluebirds\\nbluebook\\nbluebooks\\nbluecap\\nbluecaps\\nbluecoat\\nbluecoats\\nblued\\nbluefin\\nbluefins\\nbluefish\\nbluefishes\\nbluegill\\nbluegills\\nbluegum\\nbluegums\\nbluehead\\nblueheads\\nblueing\\nblueings\\nblueish\\nbluejack\\nbluejacks\\nbluejay\\nbluejays\\nblueline\\nbluelines\\nbluely\\nblueness\\nbluenesses\\nbluenose\\nbluenoses\\nblueprint\\nblueprinted\\nblueprinting\\nblueprints\\nbluer\\nblues\\nbluesman\\nbluesmen\\nbluest\\nbluestem\\nbluestems\\nbluesy\\nbluet\\nbluets\\nblueweed\\nblueweeds\\nbluewood\\nbluewoods\\nbluey\\nblueys\\nbluff\\nbluffed\\nbluffer\\nbluffers\\nbluffest\\nbluffing\\nbluffly\\nbluffs\\nbluing\\nbluings\\nbluish\\nblume\\nblumed\\nblumes\\nbluming\\nblunder\\nblunderbuss\\nblunderbusses\\nblundered\\nblundering\\nblunders\\nblunge\\nblunged\\nblunger\\nblungers\\nblunges\\nblunging\\nblunt\\nblunted\\nblunter\\nbluntest\\nblunting\\nbluntly\\nbluntness\\nbluntnesses\\nblunts\\nblur\\nblurb\\nblurbs\\nblurred\\nblurrier\\nblurriest\\nblurrily\\nblurring\\nblurry\\nblurs\\nblurt\\nblurted\\nblurter\\nblurters\\nblurting\\nblurts\\nblush\\nblushed\\nblusher\\nblushers\\nblushes\\nblushful\\nblushing\\nbluster\\nblustered\\nblustering\\nblusters\\nblustery\\nblype\\nblypes\\nbo\\nboa\\nboar\\nboard\\nboarded\\nboarder\\nboarders\\nboarding\\nboardings\\nboardman\\nboardmen\\nboards\\nboardwalk\\nboardwalks\\nboarfish\\nboarfishes\\nboarish\\nboars\\nboart\\nboarts\\nboas\\nboast\\nboasted\\nboaster\\nboasters\\nboastful\\nboastfully\\nboasting\\nboasts\\nboat\\nboatable\\nboatbill\\nboatbills\\nboated\\nboatel\\nboatels\\nboater\\nboaters\\nboating\\nboatings\\nboatload\\nboatloads\\nboatman\\nboatmen\\nboats\\nboatsman\\nboatsmen\\nboatswain\\nboatswains\\nboatyard\\nboatyards\\nbob\\nbobbed\\nbobber\\nbobberies\\nbobbers\\nbobbery\\nbobbies\\nbobbin\\nbobbinet\\nbobbinets\\nbobbing\\nbobbins\\nbobble\\nbobbled\\nbobbles\\nbobbling\\nbobby\\nbobcat\\nbobcats\\nbobeche\\nbobeches\\nbobolink\\nbobolinks\\nbobs\\nbobsled\\nbobsleded\\nbobsleding\\nbobsleds\\nbobstay\\nbobstays\\nbobtail\\nbobtailed\\nbobtailing\\nbobtails\\nbobwhite\\nbobwhites\\nbocaccio\\nbocaccios\\nbocce\\nbocces\\nbocci\\nboccia\\nboccias\\nboccie\\nboccies\\nboccis\\nboche\\nboches\\nbock\\nbocks\\nbod\\nbode\\nboded\\nbodega\\nbodegas\\nbodement\\nbodements\\nbodes\\nbodice\\nbodices\\nbodied\\nbodies\\nbodiless\\nbodily\\nboding\\nbodingly\\nbodings\\nbodkin\\nbodkins\\nbods\\nbody\\nbodying\\nbodysurf\\nbodysurfed\\nbodysurfing\\nbodysurfs\\nbodywork\\nbodyworks\\nboehmite\\nboehmites\\nboff\\nboffin\\nboffins\\nboffo\\nboffola\\nboffolas\\nboffos\\nboffs\\nbog\\nbogan\\nbogans\\nbogbean\\nbogbeans\\nbogey\\nbogeyed\\nbogeying\\nbogeyman\\nbogeymen\\nbogeys\\nbogged\\nboggier\\nboggiest\\nbogging\\nboggish\\nboggle\\nboggled\\nboggler\\nbogglers\\nboggles\\nboggling\\nboggy\\nbogie\\nbogies\\nbogle\\nbogles\\nbogs\\nbogus\\nbogwood\\nbogwoods\\nbogy\\nbogyism\\nbogyisms\\nbogyman\\nbogymen\\nbogys\\nbohea\\nboheas\\nbohemia\\nbohemian\\nbohemians\\nbohemias\\nbohunk\\nbohunks\\nboil\\nboilable\\nboiled\\nboiler\\nboilers\\nboiling\\nboils\\nboisterous\\nboisterously\\nboite\\nboites\\nbola\\nbolar\\nbolas\\nbolases\\nbold\\nbolder\\nboldest\\nboldface\\nboldfaced\\nboldfaces\\nboldfacing\\nboldly\\nboldness\\nboldnesses\\nbole\\nbolero\\nboleros\\nboles\\nbolete\\nboletes\\nboleti\\nboletus\\nboletuses\\nbolide\\nbolides\\nbolivar\\nbolivares\\nbolivars\\nbolivia\\nbolivias\\nboll\\nbollard\\nbollards\\nbolled\\nbolling\\nbollix\\nbollixed\\nbollixes\\nbollixing\\nbollox\\nbolloxed\\nbolloxes\\nbolloxing\\nbolls\\nbollworm\\nbollworms\\nbolo\\nbologna\\nbolognas\\nboloney\\nboloneys\\nbolos\\nbolshevik\\nbolson\\nbolsons\\nbolster\\nbolstered\\nbolstering\\nbolsters\\nbolt\\nbolted\\nbolter\\nbolters\\nbolthead\\nboltheads\\nbolting\\nboltonia\\nboltonias\\nboltrope\\nboltropes\\nbolts\\nbolus\\nboluses\\nbomb\\nbombard\\nbombarded\\nbombardier\\nbombardiers\\nbombarding\\nbombardment\\nbombardments\\nbombards\\nbombast\\nbombastic\\nbombasts\\nbombe\\nbombed\\nbomber\\nbombers\\nbombes\\nbombing\\nbombload\\nbombloads\\nbombproof\\nbombs\\nbombshell\\nbombshells\\nbombycid\\nbombycids\\nbombyx\\nbombyxes\\nbonaci\\nbonacis\\nbonanza\\nbonanzas\\nbonbon\\nbonbons\\nbond\\nbondable\\nbondage\\nbondages\\nbonded\\nbonder\\nbonders\\nbondholder\\nbondholders\\nbonding\\nbondmaid\\nbondmaids\\nbondman\\nbondmen\\nbonds\\nbondsman\\nbondsmen\\nbonduc\\nbonducs\\nbondwoman\\nbondwomen\\nbone\\nboned\\nbonefish\\nbonefishes\\nbonehead\\nboneheads\\nboneless\\nboner\\nboners\\nbones\\nboneset\\nbonesets\\nboney\\nboneyard\\nboneyards\\nbonfire\\nbonfires\\nbong\\nbonged\\nbonging\\nbongo\\nbongoes\\nbongoist\\nbongoists\\nbongos\\nbongs\\nbonhomie\\nbonhomies\\nbonier\\nboniest\\nboniface\\nbonifaces\\nboniness\\nboninesses\\nboning\\nbonita\\nbonitas\\nbonito\\nbonitoes\\nbonitos\\nbonkers\\nbonne\\nbonnes\\nbonnet\\nbonneted\\nbonneting\\nbonnets\\nbonnie\\nbonnier\\nbonniest\\nbonnily\\nbonnock\\nbonnocks\\nbonny\\nbonsai\\nbonspell\\nbonspells\\nbonspiel\\nbonspiels\\nbontebok\\nbonteboks\\nbonus\\nbonuses\\nbony\\nbonze\\nbonzer\\nbonzes\\nboo\\nboob\\nboobies\\nbooboo\\nbooboos\\nboobs\\nbooby\\nboodle\\nboodled\\nboodler\\nboodlers\\nboodles\\nboodling\\nbooed\\nbooger\\nboogers\\nboogie\\nboogies\\nboogyman\\nboogymen\\nboohoo\\nboohooed\\nboohooing\\nboohoos\\nbooing\\nbook\\nbookcase\\nbookcases\\nbooked\\nbookend\\nbookends\\nbooker\\nbookers\\nbookie\\nbookies\\nbooking\\nbookings\\nbookish\\nbookkeeper\\nbookkeepers\\nbookkeeping\\nbookkeepings\\nbooklet\\nbooklets\\nbooklore\\nbooklores\\nbookmaker\\nbookmakers\\nbookmaking\\nbookmakings\\nbookman\\nbookmark\\nbookmarks\\nbookmen\\nbookrack\\nbookracks\\nbookrest\\nbookrests\\nbooks\\nbookseller\\nbooksellers\\nbookshelf\\nbookshelfs\\nbookshop\\nbookshops\\nbookstore\\nbookstores\\nbookworm\\nbookworms\\nboom\\nboomed\\nboomer\\nboomerang\\nboomerangs\\nboomers\\nboomier\\nboomiest\\nbooming\\nboomkin\\nboomkins\\nboomlet\\nboomlets\\nbooms\\nboomtown\\nboomtowns\\nboomy\\nboon\\nboondocks\\nboonies\\nboons\\nboor\\nboorish\\nboors\\nboos\\nboost\\nboosted\\nbooster\\nboosters\\nboosting\\nboosts\\nboot\\nbooted\\nbootee\\nbootees\\nbooteries\\nbootery\\nbooth\\nbooths\\nbootie\\nbooties\\nbooting\\nbootjack\\nbootjacks\\nbootlace\\nbootlaces\\nbootleg\\nbootlegged\\nbootlegger\\nbootleggers\\nbootlegging\\nbootlegs\\nbootless\\nbootlick\\nbootlicked\\nbootlicking\\nbootlicks\\nboots\\nbooty\\nbooze\\nboozed\\nboozer\\nboozers\\nboozes\\nboozier\\nbooziest\\nboozily\\nboozing\\nboozy\\nbop\\nbopped\\nbopper\\nboppers\\nbopping\\nbops\\nbora\\nboraces\\nboracic\\nboracite\\nboracites\\nborage\\nborages\\nborane\\nboranes\\nboras\\nborate\\nborated\\nborates\\nborax\\nboraxes\\nborazon\\nborazons\\nbordel\\nbordello\\nbordellos\\nbordels\\nborder\\nbordered\\nborderer\\nborderers\\nbordering\\nborderline\\nborders\\nbordure\\nbordures\\nbore\\nboreal\\nborecole\\nborecoles\\nbored\\nboredom\\nboredoms\\nborer\\nborers\\nbores\\nboric\\nboride\\nborides\\nboring\\nboringly\\nborings\\nborn\\nborne\\nborneol\\nborneols\\nbornite\\nbornites\\nboron\\nboronic\\nborons\\nborough\\nboroughs\\nborrow\\nborrowed\\nborrower\\nborrowers\\nborrowing\\nborrows\\nborsch\\nborsches\\nborscht\\nborschts\\nborstal\\nborstals\\nbort\\nborts\\nborty\\nbortz\\nbortzes\\nborzoi\\nborzois\\nbos\\nboscage\\nboscages\\nboschbok\\nboschboks\\nbosh\\nboshbok\\nboshboks\\nboshes\\nboshvark\\nboshvarks\\nbosk\\nboskage\\nboskages\\nbosker\\nbosket\\nboskets\\nboskier\\nboskiest\\nbosks\\nbosky\\nbosom\\nbosomed\\nbosoming\\nbosoms\\nbosomy\\nboson\\nbosons\\nbosque\\nbosques\\nbosquet\\nbosquets\\nboss\\nbossdom\\nbossdoms\\nbossed\\nbosses\\nbossier\\nbossies\\nbossiest\\nbossily\\nbossing\\nbossism\\nbossisms\\nbossy\\nboston\\nbostons\\nbosun\\nbosuns\\nbot\\nbotanic\\nbotanical\\nbotanies\\nbotanise\\nbotanised\\nbotanises\\nbotanising\\nbotanist\\nbotanists\\nbotanize\\nbotanized\\nbotanizes\\nbotanizing\\nbotany\\nbotch\\nbotched\\nbotcher\\nbotcheries\\nbotchers\\nbotchery\\nbotches\\nbotchier\\nbotchiest\\nbotchily\\nbotching\\nbotchy\\nbotel\\nbotels\\nbotflies\\nbotfly\\nboth\\nbother\\nbothered\\nbothering\\nbothers\\nbothersome\\nbotonee\\nbotonnee\\nbotryoid\\nbotryose\\nbots\\nbott\\nbottle\\nbottled\\nbottleneck\\nbottlenecks\\nbottler\\nbottlers\\nbottles\\nbottling\\nbottom\\nbottomed\\nbottomer\\nbottomers\\nbottoming\\nbottomless\\nbottomries\\nbottomry\\nbottoms\\nbotts\\nbotulin\\nbotulins\\nbotulism\\nbotulisms\\nboucle\\nboucles\\nboudoir\\nboudoirs\\nbouffant\\nbouffants\\nbouffe\\nbouffes\\nbough\\nboughed\\nboughpot\\nboughpots\\nboughs\\nbought\\nboughten\\nbougie\\nbougies\\nbouillon\\nbouillons\\nboulder\\nboulders\\nbouldery\\nboule\\nboules\\nboulle\\nboulles\\nbounce\\nbounced\\nbouncer\\nbouncers\\nbounces\\nbouncier\\nbounciest\\nbouncily\\nbouncing\\nbouncy\\nbound\\nboundaries\\nboundary\\nbounded\\nbounden\\nbounder\\nbounders\\nbounding\\nboundless\\nboundlessness\\nboundlessnesses\\nbounds\\nbounteous\\nbounteously\\nbountied\\nbounties\\nbountiful\\nbountifully\\nbounty\\nbouquet\\nbouquets\\nbourbon\\nbourbons\\nbourdon\\nbourdons\\nbourg\\nbourgeois\\nbourgeoisie\\nbourgeoisies\\nbourgeon\\nbourgeoned\\nbourgeoning\\nbourgeons\\nbourgs\\nbourn\\nbourne\\nbournes\\nbourns\\nbourree\\nbourrees\\nbourse\\nbourses\\nbourtree\\nbourtrees\\nbouse\\nboused\\nbouses\\nbousing\\nbousouki\\nbousoukia\\nbousoukis\\nbousy\\nbout\\nboutique\\nboutiques\\nbouts\\nbouzouki\\nbouzoukia\\nbouzoukis\\nbovid\\nbovids\\nbovine\\nbovinely\\nbovines\\nbovinities\\nbovinity\\nbow\\nbowed\\nbowel\\nboweled\\nboweling\\nbowelled\\nbowelling\\nbowels\\nbower\\nbowered\\nboweries\\nbowering\\nbowers\\nbowery\\nbowfin\\nbowfins\\nbowfront\\nbowhead\\nbowheads\\nbowing\\nbowingly\\nbowings\\nbowknot\\nbowknots\\nbowl\\nbowlder\\nbowlders\\nbowled\\nbowleg\\nbowlegs\\nbowler\\nbowlers\\nbowless\\nbowlful\\nbowlfuls\\nbowlike\\nbowline\\nbowlines\\nbowling\\nbowlings\\nbowllike\\nbowls\\nbowman\\nbowmen\\nbowpot\\nbowpots\\nbows\\nbowse\\nbowsed\\nbowses\\nbowshot\\nbowshots\\nbowsing\\nbowsprit\\nbowsprits\\nbowwow\\nbowwows\\nbowyer\\nbowyers\\nbox\\nboxberries\\nboxberry\\nboxcar\\nboxcars\\nboxed\\nboxer\\nboxers\\nboxes\\nboxfish\\nboxfishes\\nboxful\\nboxfuls\\nboxhaul\\nboxhauled\\nboxhauling\\nboxhauls\\nboxier\\nboxiest\\nboxiness\\nboxinesses\\nboxing\\nboxings\\nboxlike\\nboxthorn\\nboxthorns\\nboxwood\\nboxwoods\\nboxy\\nboy\\nboyar\\nboyard\\nboyards\\nboyarism\\nboyarisms\\nboyars\\nboycott\\nboycotted\\nboycotting\\nboycotts\\nboyhood\\nboyhoods\\nboyish\\nboyishly\\nboyishness\\nboyishnesses\\nboyla\\nboylas\\nboyo\\nboyos\\nboys\\nbozo\\nbozos\\nbra\\nbrabble\\nbrabbled\\nbrabbler\\nbrabblers\\nbrabbles\\nbrabbling\\nbrace\\nbraced\\nbracelet\\nbracelets\\nbracer\\nbracero\\nbraceros\\nbracers\\nbraces\\nbrach\\nbraches\\nbrachet\\nbrachets\\nbrachia\\nbrachial\\nbrachials\\nbrachium\\nbracing\\nbracings\\nbracken\\nbrackens\\nbracket\\nbracketed\\nbracketing\\nbrackets\\nbrackish\\nbract\\nbracteal\\nbracted\\nbractlet\\nbractlets\\nbracts\\nbrad\\nbradawl\\nbradawls\\nbradded\\nbradding\\nbradoon\\nbradoons\\nbrads\\nbrae\\nbraes\\nbrag\\nbraggart\\nbraggarts\\nbragged\\nbragger\\nbraggers\\nbraggest\\nbraggier\\nbraggiest\\nbragging\\nbraggy\\nbrags\\nbrahma\\nbrahmas\\nbraid\\nbraided\\nbraider\\nbraiders\\nbraiding\\nbraidings\\nbraids\\nbrail\\nbrailed\\nbrailing\\nbraille\\nbrailled\\nbrailles\\nbrailling\\nbrails\\nbrain\\nbrained\\nbrainier\\nbrainiest\\nbrainily\\nbraining\\nbrainish\\nbrainless\\nbrainpan\\nbrainpans\\nbrains\\nbrainstorm\\nbrainstorms\\nbrainy\\nbraise\\nbraised\\nbraises\\nbraising\\nbraize\\nbraizes\\nbrake\\nbrakeage\\nbrakeages\\nbraked\\nbrakeman\\nbrakemen\\nbrakes\\nbrakier\\nbrakiest\\nbraking\\nbraky\\nbramble\\nbrambled\\nbrambles\\nbramblier\\nbrambliest\\nbrambling\\nbrambly\\nbran\\nbranch\\nbranched\\nbranches\\nbranchia\\nbranchiae\\nbranchier\\nbranchiest\\nbranching\\nbranchy\\nbrand\\nbranded\\nbrander\\nbranders\\nbrandied\\nbrandies\\nbranding\\nbrandish\\nbrandished\\nbrandishes\\nbrandishing\\nbrands\\nbrandy\\nbrandying\\nbrank\\nbranks\\nbranned\\nbranner\\nbranners\\nbrannier\\nbranniest\\nbranning\\nbranny\\nbrans\\nbrant\\nbrantail\\nbrantails\\nbrants\\nbras\\nbrash\\nbrasher\\nbrashes\\nbrashest\\nbrashier\\nbrashiest\\nbrashly\\nbrashy\\nbrasier\\nbrasiers\\nbrasil\\nbrasilin\\nbrasilins\\nbrasils\\nbrass\\nbrassage\\nbrassages\\nbrassard\\nbrassards\\nbrassart\\nbrassarts\\nbrasses\\nbrassica\\nbrassicas\\nbrassie\\nbrassier\\nbrassiere\\nbrassieres\\nbrassies\\nbrassiest\\nbrassily\\nbrassish\\nbrassy\\nbrat\\nbrats\\nbrattice\\nbratticed\\nbrattices\\nbratticing\\nbrattier\\nbrattiest\\nbrattish\\nbrattle\\nbrattled\\nbrattles\\nbrattling\\nbratty\\nbraunite\\nbraunites\\nbrava\\nbravado\\nbravadoes\\nbravados\\nbravas\\nbrave\\nbraved\\nbravely\\nbraver\\nbraveries\\nbravers\\nbravery\\nbraves\\nbravest\\nbraving\\nbravo\\nbravoed\\nbravoes\\nbravoing\\nbravos\\nbravura\\nbravuras\\nbravure\\nbraw\\nbrawer\\nbrawest\\nbrawl\\nbrawled\\nbrawler\\nbrawlers\\nbrawlie\\nbrawlier\\nbrawliest\\nbrawling\\nbrawls\\nbrawly\\nbrawn\\nbrawnier\\nbrawniest\\nbrawnily\\nbrawns\\nbrawny\\nbraws\\nbraxies\\nbraxy\\nbray\\nbrayed\\nbrayer\\nbrayers\\nbraying\\nbrays\\nbraza\\nbrazas\\nbraze\\nbrazed\\nbrazen\\nbrazened\\nbrazening\\nbrazenly\\nbrazenness\\nbrazennesses\\nbrazens\\nbrazer\\nbrazers\\nbrazes\\nbrazier\\nbraziers\\nbrazil\\nbrazilin\\nbrazilins\\nbrazils\\nbrazing\\nbreach\\nbreached\\nbreacher\\nbreachers\\nbreaches\\nbreaching\\nbread\\nbreaded\\nbreading\\nbreadnut\\nbreadnuts\\nbreads\\nbreadth\\nbreadths\\nbreadwinner\\nbreadwinners\\nbreak\\nbreakable\\nbreakage\\nbreakages\\nbreakdown\\nbreakdowns\\nbreaker\\nbreakers\\nbreakfast\\nbreakfasted\\nbreakfasting\\nbreakfasts\\nbreaking\\nbreakings\\nbreakout\\nbreakouts\\nbreaks\\nbreakthrough\\nbreakthroughs\\nbreakup\\nbreakups\\nbream\\nbreamed\\nbreaming\\nbreams\\nbreast\\nbreastbone\\nbreastbones\\nbreasted\\nbreasting\\nbreasts\\nbreath\\nbreathe\\nbreathed\\nbreather\\nbreathers\\nbreathes\\nbreathier\\nbreathiest\\nbreathing\\nbreathless\\nbreathlessly\\nbreaths\\nbreathtaking\\nbreathy\\nbreccia\\nbreccial\\nbreccias\\nbrecham\\nbrechams\\nbrechan\\nbrechans\\nbred\\nbrede\\nbredes\\nbree\\nbreech\\nbreeched\\nbreeches\\nbreeching\\nbreed\\nbreeder\\nbreeders\\nbreeding\\nbreedings\\nbreeds\\nbreeks\\nbrees\\nbreeze\\nbreezed\\nbreezes\\nbreezier\\nbreeziest\\nbreezily\\nbreezing\\nbreezy\\nbregma\\nbregmata\\nbregmate\\nbrent\\nbrents\\nbrethren\\nbreve\\nbreves\\nbrevet\\nbrevetcies\\nbrevetcy\\nbreveted\\nbreveting\\nbrevets\\nbrevetted\\nbrevetting\\nbreviaries\\nbreviary\\nbrevier\\nbreviers\\nbrevities\\nbrevity\\nbrew\\nbrewage\\nbrewages\\nbrewed\\nbrewer\\nbreweries\\nbrewers\\nbrewery\\nbrewing\\nbrewings\\nbrewis\\nbrewises\\nbrews\\nbriar\\nbriard\\nbriards\\nbriars\\nbriary\\nbribable\\nbribe\\nbribed\\nbriber\\nbriberies\\nbribers\\nbribery\\nbribes\\nbribing\\nbrick\\nbrickbat\\nbrickbats\\nbricked\\nbrickier\\nbrickiest\\nbricking\\nbricklayer\\nbricklayers\\nbricklaying\\nbricklayings\\nbrickle\\nbricks\\nbricky\\nbricole\\nbricoles\\nbridal\\nbridally\\nbridals\\nbride\\nbridegroom\\nbridegrooms\\nbrides\\nbridesmaid\\nbridesmaids\\nbridge\\nbridgeable\\nbridgeables\\nbridged\\nbridges\\nbridging\\nbridgings\\nbridle\\nbridled\\nbridler\\nbridlers\\nbridles\\nbridling\\nbridoon\\nbridoons\\nbrie\\nbrief\\nbriefcase\\nbriefcases\\nbriefed\\nbriefer\\nbriefers\\nbriefest\\nbriefing\\nbriefings\\nbriefly\\nbriefness\\nbriefnesses\\nbriefs\\nbrier\\nbriers\\nbriery\\nbries\\nbrig\\nbrigade\\nbrigaded\\nbrigades\\nbrigadier\\nbrigadiers\\nbrigading\\nbrigand\\nbrigands\\nbright\\nbrighten\\nbrightened\\nbrightener\\nbrighteners\\nbrightening\\nbrightens\\nbrighter\\nbrightest\\nbrightly\\nbrightness\\nbrightnesses\\nbrights\\nbrigs\\nbrill\\nbrilliance\\nbrilliances\\nbrilliancies\\nbrilliancy\\nbrilliant\\nbrilliantly\\nbrills\\nbrim\\nbrimful\\nbrimfull\\nbrimless\\nbrimmed\\nbrimmer\\nbrimmers\\nbrimming\\nbrims\\nbrimstone\\nbrimstones\\nbrin\\nbrinded\\nbrindle\\nbrindled\\nbrindles\\nbrine\\nbrined\\nbriner\\nbriners\\nbrines\\nbring\\nbringer\\nbringers\\nbringing\\nbrings\\nbrinier\\nbrinies\\nbriniest\\nbrininess\\nbrininesses\\nbrining\\nbrinish\\nbrink\\nbrinks\\nbrins\\nbriny\\nbrio\\nbrioche\\nbrioches\\nbrionies\\nbriony\\nbrios\\nbriquet\\nbriquets\\nbriquetted\\nbriquetting\\nbrisance\\nbrisances\\nbrisant\\nbrisk\\nbrisked\\nbrisker\\nbriskest\\nbrisket\\nbriskets\\nbrisking\\nbriskly\\nbriskness\\nbrisknesses\\nbrisks\\nbrisling\\nbrislings\\nbristle\\nbristled\\nbristles\\nbristlier\\nbristliest\\nbristling\\nbristly\\nbristol\\nbristols\\nbrit\\nbritches\\nbrits\\nbritska\\nbritskas\\nbritt\\nbrittle\\nbrittled\\nbrittler\\nbrittles\\nbrittlest\\nbrittling\\nbritts\\nbritzka\\nbritzkas\\nbritzska\\nbritzskas\\nbroach\\nbroached\\nbroacher\\nbroachers\\nbroaches\\nbroaching\\nbroad\\nbroadax\\nbroadaxe\\nbroadaxes\\nbroadcast\\nbroadcasted\\nbroadcaster\\nbroadcasters\\nbroadcasting\\nbroadcasts\\nbroadcloth\\nbroadcloths\\nbroaden\\nbroadened\\nbroadening\\nbroadens\\nbroader\\nbroadest\\nbroadish\\nbroadloom\\nbroadlooms\\nbroadly\\nbroadness\\nbroadnesses\\nbroads\\nbroadside\\nbroadsides\\nbrocade\\nbrocaded\\nbrocades\\nbrocading\\nbrocatel\\nbrocatels\\nbroccoli\\nbroccolis\\nbroche\\nbrochure\\nbrochures\\nbrock\\nbrockage\\nbrockages\\nbrocket\\nbrockets\\nbrocks\\nbrocoli\\nbrocolis\\nbrogan\\nbrogans\\nbrogue\\nbrogueries\\nbroguery\\nbrogues\\nbroguish\\nbroider\\nbroidered\\nbroideries\\nbroidering\\nbroiders\\nbroidery\\nbroil\\nbroiled\\nbroiler\\nbroilers\\nbroiling\\nbroils\\nbrokage\\nbrokages\\nbroke\\nbroken\\nbrokenhearted\\nbrokenly\\nbroker\\nbrokerage\\nbrokerages\\nbrokers\\nbrollies\\nbrolly\\nbromal\\nbromals\\nbromate\\nbromated\\nbromates\\nbromating\\nbrome\\nbromelin\\nbromelins\\nbromes\\nbromic\\nbromid\\nbromide\\nbromides\\nbromidic\\nbromids\\nbromin\\nbromine\\nbromines\\nbromins\\nbromism\\nbromisms\\nbromo\\nbromos\\nbronc\\nbronchi\\nbronchia\\nbronchial\\nbronchitis\\nbroncho\\nbronchos\\nbronchospasm\\nbronchus\\nbronco\\nbroncos\\nbroncs\\nbronze\\nbronzed\\nbronzer\\nbronzers\\nbronzes\\nbronzier\\nbronziest\\nbronzing\\nbronzings\\nbronzy\\nbroo\\nbrooch\\nbrooches\\nbrood\\nbrooded\\nbrooder\\nbrooders\\nbroodier\\nbroodiest\\nbrooding\\nbroods\\nbroody\\nbrook\\nbrooked\\nbrooking\\nbrookite\\nbrookites\\nbrooklet\\nbrooklets\\nbrookline\\nbrooks\\nbroom\\nbroomed\\nbroomier\\nbroomiest\\nbrooming\\nbrooms\\nbroomstick\\nbroomsticks\\nbroomy\\nbroos\\nbrose\\nbroses\\nbrosy\\nbroth\\nbrothel\\nbrothels\\nbrother\\nbrothered\\nbrotherhood\\nbrotherhoods\\nbrothering\\nbrotherliness\\nbrotherlinesses\\nbrotherly\\nbrothers\\nbroths\\nbrothy\\nbrougham\\nbroughams\\nbrought\\nbrouhaha\\nbrouhahas\\nbrow\\nbrowbeat\\nbrowbeaten\\nbrowbeating\\nbrowbeats\\nbrowless\\nbrown\\nbrowned\\nbrowner\\nbrownest\\nbrownie\\nbrownier\\nbrownies\\nbrowniest\\nbrowning\\nbrownish\\nbrownout\\nbrownouts\\nbrowns\\nbrowny\\nbrows\\nbrowse\\nbrowsed\\nbrowser\\nbrowsers\\nbrowses\\nbrowsing\\nbrucella\\nbrucellae\\nbrucellas\\nbrucin\\nbrucine\\nbrucines\\nbrucins\\nbrugh\\nbrughs\\nbruin\\nbruins\\nbruise\\nbruised\\nbruiser\\nbruisers\\nbruises\\nbruising\\nbruit\\nbruited\\nbruiter\\nbruiters\\nbruiting\\nbruits\\nbrulot\\nbrulots\\nbrulyie\\nbrulyies\\nbrulzie\\nbrulzies\\nbrumal\\nbrumbies\\nbrumby\\nbrume\\nbrumes\\nbrumous\\nbrunch\\nbrunched\\nbrunches\\nbrunching\\nbrunet\\nbrunets\\nbrunette\\nbrunettes\\nbrunizem\\nbrunizems\\nbrunt\\nbrunts\\nbrush\\nbrushed\\nbrusher\\nbrushers\\nbrushes\\nbrushier\\nbrushiest\\nbrushing\\nbrushoff\\nbrushoffs\\nbrushup\\nbrushups\\nbrushy\\nbrusk\\nbrusker\\nbruskest\\nbrusque\\nbrusquely\\nbrusquer\\nbrusquest\\nbrut\\nbrutal\\nbrutalities\\nbrutality\\nbrutalize\\nbrutalized\\nbrutalizes\\nbrutalizing\\nbrutally\\nbrute\\nbruted\\nbrutely\\nbrutes\\nbrutified\\nbrutifies\\nbrutify\\nbrutifying\\nbruting\\nbrutish\\nbrutism\\nbrutisms\\nbruxism\\nbruxisms\\nbryologies\\nbryology\\nbryonies\\nbryony\\nbryozoan\\nbryozoans\\nbub\\nbubal\\nbubale\\nbubales\\nbubaline\\nbubalis\\nbubalises\\nbubals\\nbubbies\\nbubble\\nbubbled\\nbubbler\\nbubblers\\nbubbles\\nbubblier\\nbubblies\\nbubbliest\\nbubbling\\nbubbly\\nbubby\\nbubinga\\nbubingas\\nbubo\\nbuboed\\nbuboes\\nbubonic\\nbubs\\nbuccal\\nbuccally\\nbuck\\nbuckaroo\\nbuckaroos\\nbuckayro\\nbuckayros\\nbuckbean\\nbuckbeans\\nbucked\\nbuckeen\\nbuckeens\\nbucker\\nbuckeroo\\nbuckeroos\\nbuckers\\nbucket\\nbucketed\\nbucketful\\nbucketfuls\\nbucketing\\nbuckets\\nbuckeye\\nbuckeyes\\nbucking\\nbuckish\\nbuckle\\nbuckled\\nbuckler\\nbucklered\\nbucklering\\nbucklers\\nbuckles\\nbuckling\\nbucko\\nbuckoes\\nbuckra\\nbuckram\\nbuckramed\\nbuckraming\\nbuckrams\\nbuckras\\nbucks\\nbucksaw\\nbucksaws\\nbuckshee\\nbuckshees\\nbuckshot\\nbuckshots\\nbuckskin\\nbuckskins\\nbucktail\\nbucktails\\nbucktooth\\nbucktooths\\nbuckwheat\\nbuckwheats\\nbucolic\\nbucolics\\nbud\\nbudded\\nbudder\\nbudders\\nbuddies\\nbudding\\nbuddle\\nbuddleia\\nbuddleias\\nbuddles\\nbuddy\\nbudge\\nbudged\\nbudger\\nbudgers\\nbudges\\nbudget\\nbudgetary\\nbudgeted\\nbudgeter\\nbudgeters\\nbudgeting\\nbudgets\\nbudgie\\nbudgies\\nbudging\\nbudless\\nbudlike\\nbuds\\nbuff\\nbuffable\\nbuffalo\\nbuffaloed\\nbuffaloes\\nbuffaloing\\nbuffalos\\nbuffed\\nbuffer\\nbuffered\\nbuffering\\nbuffers\\nbuffet\\nbuffeted\\nbuffeter\\nbuffeters\\nbuffeting\\nbuffets\\nbuffi\\nbuffier\\nbuffiest\\nbuffing\\nbuffo\\nbuffoon\\nbuffoons\\nbuffos\\nbuffs\\nbuffy\\nbug\\nbugaboo\\nbugaboos\\nbugbane\\nbugbanes\\nbugbear\\nbugbears\\nbugeye\\nbugeyes\\nbugged\\nbugger\\nbuggered\\nbuggeries\\nbuggering\\nbuggers\\nbuggery\\nbuggier\\nbuggies\\nbuggiest\\nbugging\\nbuggy\\nbughouse\\nbughouses\\nbugle\\nbugled\\nbugler\\nbuglers\\nbugles\\nbugling\\nbugloss\\nbuglosses\\nbugs\\nbugseed\\nbugseeds\\nbugsha\\nbugshas\\nbuhl\\nbuhls\\nbuhlwork\\nbuhlworks\\nbuhr\\nbuhrs\\nbuild\\nbuilded\\nbuilder\\nbuilders\\nbuilding\\nbuildings\\nbuilds\\nbuildup\\nbuildups\\nbuilt\\nbuirdly\\nbulb\\nbulbar\\nbulbed\\nbulbel\\nbulbels\\nbulbil\\nbulbils\\nbulbous\\nbulbs\\nbulbul\\nbulbuls\\nbulge\\nbulged\\nbulger\\nbulgers\\nbulges\\nbulgier\\nbulgiest\\nbulging\\nbulgur\\nbulgurs\\nbulgy\\nbulimia\\nbulimiac\\nbulimias\\nbulimic\\nbulk\\nbulkage\\nbulkages\\nbulked\\nbulkhead\\nbulkheads\\nbulkier\\nbulkiest\\nbulkily\\nbulking\\nbulks\\nbulky\\nbull\\nbulla\\nbullace\\nbullaces\\nbullae\\nbullate\\nbullbat\\nbullbats\\nbulldog\\nbulldogged\\nbulldogging\\nbulldogs\\nbulldoze\\nbulldozed\\nbulldozer\\nbulldozers\\nbulldozes\\nbulldozing\\nbulled\\nbullet\\nbulleted\\nbulletin\\nbulletined\\nbulleting\\nbulletining\\nbulletins\\nbulletproof\\nbulletproofs\\nbullets\\nbullfight\\nbullfighter\\nbullfighters\\nbullfights\\nbullfinch\\nbullfinches\\nbullfrog\\nbullfrogs\\nbullhead\\nbullheaded\\nbullheads\\nbullhorn\\nbullhorns\\nbullied\\nbullier\\nbullies\\nbulliest\\nbulling\\nbullion\\nbullions\\nbullish\\nbullneck\\nbullnecks\\nbullnose\\nbullnoses\\nbullock\\nbullocks\\nbullocky\\nbullous\\nbullpen\\nbullpens\\nbullpout\\nbullpouts\\nbullring\\nbullrings\\nbullrush\\nbullrushes\\nbulls\\nbullweed\\nbullweeds\\nbullwhip\\nbullwhipped\\nbullwhipping\\nbullwhips\\nbully\\nbullyboy\\nbullyboys\\nbullying\\nbullyrag\\nbullyragged\\nbullyragging\\nbullyrags\\nbulrush\\nbulrushes\\nbulwark\\nbulwarked\\nbulwarking\\nbulwarks\\nbum\\nbumble\\nbumblebee\\nbumblebees\\nbumbled\\nbumbler\\nbumblers\\nbumbles\\nbumbling\\nbumblings\\nbumboat\\nbumboats\\nbumf\\nbumfs\\nbumkin\\nbumkins\\nbummed\\nbummer\\nbummers\\nbumming\\nbump\\nbumped\\nbumper\\nbumpered\\nbumpering\\nbumpers\\nbumpier\\nbumpiest\\nbumpily\\nbumping\\nbumpkin\\nbumpkins\\nbumps\\nbumpy\\nbums\\nbun\\nbunch\\nbunched\\nbunches\\nbunchier\\nbunchiest\\nbunchily\\nbunching\\nbunchy\\nbunco\\nbuncoed\\nbuncoing\\nbuncombe\\nbuncombes\\nbuncos\\nbund\\nbundist\\nbundists\\nbundle\\nbundled\\nbundler\\nbundlers\\nbundles\\nbundling\\nbundlings\\nbunds\\nbung\\nbungalow\\nbungalows\\nbunged\\nbunghole\\nbungholes\\nbunging\\nbungle\\nbungled\\nbungler\\nbunglers\\nbungles\\nbungling\\nbunglings\\nbungs\\nbunion\\nbunions\\nbunk\\nbunked\\nbunker\\nbunkered\\nbunkering\\nbunkers\\nbunking\\nbunkmate\\nbunkmates\\nbunko\\nbunkoed\\nbunkoing\\nbunkos\\nbunks\\nbunkum\\nbunkums\\nbunky\\nbunn\\nbunnies\\nbunns\\nbunny\\nbuns\\nbunt\\nbunted\\nbunter\\nbunters\\nbunting\\nbuntings\\nbuntline\\nbuntlines\\nbunts\\nbunya\\nbunyas\\nbuoy\\nbuoyage\\nbuoyages\\nbuoyance\\nbuoyances\\nbuoyancies\\nbuoyancy\\nbuoyant\\nbuoyed\\nbuoying\\nbuoys\\nbuqsha\\nbuqshas\\nbur\\nbura\\nburan\\nburans\\nburas\\nburble\\nburbled\\nburbler\\nburblers\\nburbles\\nburblier\\nburbliest\\nburbling\\nburbly\\nburbot\\nburbots\\nburd\\nburden\\nburdened\\nburdener\\nburdeners\\nburdening\\nburdens\\nburdensome\\nburdie\\nburdies\\nburdock\\nburdocks\\nburds\\nbureau\\nbureaucracies\\nbureaucracy\\nbureaucrat\\nbureaucratic\\nbureaucrats\\nbureaus\\nbureaux\\nburet\\nburets\\nburette\\nburettes\\nburg\\nburgage\\nburgages\\nburgee\\nburgees\\nburgeon\\nburgeoned\\nburgeoning\\nburgeons\\nburger\\nburgers\\nburgess\\nburgesses\\nburgh\\nburghal\\nburgher\\nburghers\\nburghs\\nburglar\\nburglaries\\nburglarize\\nburglarized\\nburglarizes\\nburglarizing\\nburglars\\nburglary\\nburgle\\nburgled\\nburgles\\nburgling\\nburgonet\\nburgonets\\nburgoo\\nburgoos\\nburgout\\nburgouts\\nburgrave\\nburgraves\\nburgs\\nburgundies\\nburgundy\\nburial\\nburials\\nburied\\nburier\\nburiers\\nburies\\nburin\\nburins\\nburke\\nburked\\nburker\\nburkers\\nburkes\\nburking\\nburkite\\nburkites\\nburl\\nburlap\\nburlaps\\nburled\\nburler\\nburlers\\nburlesk\\nburlesks\\nburlesque\\nburlesqued\\nburlesques\\nburlesquing\\nburley\\nburleys\\nburlier\\nburliest\\nburlily\\nburling\\nburls\\nburly\\nburn\\nburnable\\nburned\\nburner\\nburners\\nburnet\\nburnets\\nburnie\\nburnies\\nburning\\nburnings\\nburnish\\nburnished\\nburnishes\\nburnishing\\nburnoose\\nburnooses\\nburnous\\nburnouses\\nburnout\\nburnouts\\nburns\\nburnt\\nburp\\nburped\\nburping\\nburps\\nburr\\nburred\\nburrer\\nburrers\\nburrier\\nburriest\\nburring\\nburro\\nburros\\nburrow\\nburrowed\\nburrower\\nburrowers\\nburrowing\\nburrows\\nburrs\\nburry\\nburs\\nbursa\\nbursae\\nbursal\\nbursar\\nbursaries\\nbursars\\nbursary\\nbursas\\nbursate\\nburse\\nburseed\\nburseeds\\nburses\\nbursitis\\nbursitises\\nburst\\nbursted\\nburster\\nbursters\\nbursting\\nburstone\\nburstones\\nbursts\\nburthen\\nburthened\\nburthening\\nburthens\\nburton\\nburtons\\nburweed\\nburweeds\\nbury\\nburying\\nbus\\nbusbies\\nbusboy\\nbusboys\\nbusby\\nbused\\nbuses\\nbush\\nbushbuck\\nbushbucks\\nbushed\\nbushel\\nbusheled\\nbusheler\\nbushelers\\nbusheling\\nbushelled\\nbushelling\\nbushels\\nbusher\\nbushers\\nbushes\\nbushfire\\nbushfires\\nbushgoat\\nbushgoats\\nbushido\\nbushidos\\nbushier\\nbushiest\\nbushily\\nbushing\\nbushings\\nbushland\\nbushlands\\nbushless\\nbushlike\\nbushman\\nbushmen\\nbushtit\\nbushtits\\nbushy\\nbusied\\nbusier\\nbusies\\nbusiest\\nbusily\\nbusiness\\nbusinesses\\nbusinessman\\nbusinessmen\\nbusinesswoman\\nbusinesswomen\\nbusing\\nbusings\\nbusk\\nbusked\\nbusker\\nbuskers\\nbuskin\\nbuskined\\nbusking\\nbuskins\\nbusks\\nbusman\\nbusmen\\nbuss\\nbussed\\nbusses\\nbussing\\nbussings\\nbust\\nbustard\\nbustards\\nbusted\\nbuster\\nbusters\\nbustic\\nbustics\\nbustier\\nbustiest\\nbusting\\nbustle\\nbustled\\nbustles\\nbustling\\nbusts\\nbusty\\nbusulfan\\nbusulfans\\nbusy\\nbusybodies\\nbusybody\\nbusying\\nbusyness\\nbusynesses\\nbusywork\\nbusyworks\\nbut\\nbutane\\nbutanes\\nbutanol\\nbutanols\\nbutanone\\nbutanones\\nbutch\\nbutcher\\nbutchered\\nbutcheries\\nbutchering\\nbutchers\\nbutchery\\nbutches\\nbutene\\nbutenes\\nbuteo\\nbuteos\\nbutler\\nbutleries\\nbutlers\\nbutlery\\nbuts\\nbutt\\nbuttals\\nbutte\\nbutted\\nbutter\\nbuttercup\\nbuttercups\\nbuttered\\nbutterfat\\nbutterfats\\nbutterflies\\nbutterfly\\nbutterier\\nbutteries\\nbutteriest\\nbuttering\\nbuttermilk\\nbutternut\\nbutternuts\\nbutters\\nbutterscotch\\nbutterscotches\\nbuttery\\nbuttes\\nbutties\\nbutting\\nbuttock\\nbuttocks\\nbutton\\nbuttoned\\nbuttoner\\nbuttoners\\nbuttonhole\\nbuttonholes\\nbuttoning\\nbuttons\\nbuttony\\nbuttress\\nbuttressed\\nbuttresses\\nbuttressing\\nbutts\\nbutty\\nbutut\\nbututs\\nbutyl\\nbutylate\\nbutylated\\nbutylates\\nbutylating\\nbutylene\\nbutylenes\\nbutyls\\nbutyral\\nbutyrals\\nbutyrate\\nbutyrates\\nbutyric\\nbutyrin\\nbutyrins\\nbutyrous\\nbutyryl\\nbutyryls\\nbuxom\\nbuxomer\\nbuxomest\\nbuxomly\\nbuy\\nbuyable\\nbuyer\\nbuyers\\nbuying\\nbuys\\nbuzz\\nbuzzard\\nbuzzards\\nbuzzed\\nbuzzer\\nbuzzers\\nbuzzes\\nbuzzing\\nbuzzwig\\nbuzzwigs\\nbuzzword\\nbuzzwords\\nbuzzy\\nbwana\\nbwanas\\nby\\nbye\\nbyelaw\\nbyelaws\\nbyes\\nbygone\\nbygones\\nbylaw\\nbylaws\\nbyline\\nbylined\\nbyliner\\nbyliners\\nbylines\\nbylining\\nbyname\\nbynames\\nbypass\\nbypassed\\nbypasses\\nbypassing\\nbypast\\nbypath\\nbypaths\\nbyplay\\nbyplays\\nbyre\\nbyres\\nbyrl\\nbyrled\\nbyrling\\nbyrls\\nbyrnie\\nbyrnies\\nbyroad\\nbyroads\\nbys\\nbyssi\\nbyssus\\nbyssuses\\nbystander\\nbystanders\\nbystreet\\nbystreets\\nbytalk\\nbytalks\\nbyte\\nbytes\\nbyway\\nbyways\\nbyword\\nbywords\\nbywork\\nbyworks\\nbyzant\\nbyzants\\ncab\\ncabal\\ncabala\\ncabalas\\ncabalism\\ncabalisms\\ncabalist\\ncabalists\\ncaballed\\ncaballing\\ncabals\\ncabana\\ncabanas\\ncabaret\\ncabarets\\ncabbage\\ncabbaged\\ncabbages\\ncabbaging\\ncabbala\\ncabbalah\\ncabbalahs\\ncabbalas\\ncabbie\\ncabbies\\ncabby\\ncaber\\ncabers\\ncabestro\\ncabestros\\ncabezon\\ncabezone\\ncabezones\\ncabezons\\ncabildo\\ncabildos\\ncabin\\ncabined\\ncabinet\\ncabinetmaker\\ncabinetmakers\\ncabinetmaking\\ncabinetmakings\\ncabinets\\ncabinetwork\\ncabinetworks\\ncabining\\ncabins\\ncable\\ncabled\\ncablegram\\ncablegrams\\ncables\\ncablet\\ncablets\\ncableway\\ncableways\\ncabling\\ncabman\\ncabmen\\ncabob\\ncabobs\\ncaboched\\ncabochon\\ncabochons\\ncaboodle\\ncaboodles\\ncaboose\\ncabooses\\ncaboshed\\ncabotage\\ncabotages\\ncabresta\\ncabrestas\\ncabresto\\ncabrestos\\ncabretta\\ncabrettas\\ncabrilla\\ncabrillas\\ncabriole\\ncabrioles\\ncabs\\ncabstand\\ncabstands\\ncacao\\ncacaos\\ncachalot\\ncachalots\\ncache\\ncached\\ncachepot\\ncachepots\\ncaches\\ncachet\\ncachets\\ncachexia\\ncachexias\\ncachexic\\ncachexies\\ncachexy\\ncaching\\ncachou\\ncachous\\ncachucha\\ncachuchas\\ncacique\\ncaciques\\ncackle\\ncackled\\ncackler\\ncacklers\\ncackles\\ncackling\\ncacodyl\\ncacodyls\\ncacomixl\\ncacomixls\\ncacophonies\\ncacophonous\\ncacophony\\ncacti\\ncactoid\\ncactus\\ncactuses\\ncad\\ncadaster\\ncadasters\\ncadastre\\ncadastres\\ncadaver\\ncadavers\\ncaddice\\ncaddices\\ncaddie\\ncaddied\\ncaddies\\ncaddis\\ncaddises\\ncaddish\\ncaddishly\\ncaddishness\\ncaddishnesses\\ncaddy\\ncaddying\\ncade\\ncadelle\\ncadelles\\ncadence\\ncadenced\\ncadences\\ncadencies\\ncadencing\\ncadency\\ncadent\\ncadenza\\ncadenzas\\ncades\\ncadet\\ncadets\\ncadge\\ncadged\\ncadger\\ncadgers\\ncadges\\ncadging\\ncadgy\\ncadi\\ncadis\\ncadmic\\ncadmium\\ncadmiums\\ncadre\\ncadres\\ncads\\ncaducean\\ncaducei\\ncaduceus\\ncaducities\\ncaducity\\ncaducous\\ncaeca\\ncaecal\\ncaecally\\ncaecum\\ncaeoma\\ncaeomas\\ncaesium\\ncaesiums\\ncaestus\\ncaestuses\\ncaesura\\ncaesurae\\ncaesural\\ncaesuras\\ncaesuric\\ncafe\\ncafes\\ncafeteria\\ncafeterias\\ncaffein\\ncaffeine\\ncaffeines\\ncaffeins\\ncaftan\\ncaftans\\ncage\\ncaged\\ncageling\\ncagelings\\ncager\\ncages\\ncagey\\ncagier\\ncagiest\\ncagily\\ncaginess\\ncaginesses\\ncaging\\ncagy\\ncahier\\ncahiers\\ncahoot\\ncahoots\\ncahow\\ncahows\\ncaid\\ncaids\\ncaiman\\ncaimans\\ncain\\ncains\\ncaique\\ncaiques\\ncaird\\ncairds\\ncairn\\ncairned\\ncairns\\ncairny\\ncaisson\\ncaissons\\ncaitiff\\ncaitiffs\\ncajaput\\ncajaputs\\ncajeput\\ncajeputs\\ncajole\\ncajoled\\ncajoler\\ncajoleries\\ncajolers\\ncajolery\\ncajoles\\ncajoling\\ncajon\\ncajones\\ncajuput\\ncajuputs\\ncake\\ncaked\\ncakes\\ncakewalk\\ncakewalked\\ncakewalking\\ncakewalks\\ncaking\\ncalabash\\ncalabashes\\ncaladium\\ncaladiums\\ncalamar\\ncalamaries\\ncalamars\\ncalamary\\ncalami\\ncalamine\\ncalamined\\ncalamines\\ncalamining\\ncalamint\\ncalamints\\ncalamite\\ncalamites\\ncalamities\\ncalamitous\\ncalamitously\\ncalamitousness\\ncalamitousnesses\\ncalamity\\ncalamus\\ncalando\\ncalash\\ncalashes\\ncalathi\\ncalathos\\ncalathus\\ncalcanea\\ncalcanei\\ncalcar\\ncalcaria\\ncalcars\\ncalceate\\ncalces\\ncalcic\\ncalcific\\ncalcification\\ncalcifications\\ncalcified\\ncalcifies\\ncalcify\\ncalcifying\\ncalcine\\ncalcined\\ncalcines\\ncalcining\\ncalcite\\ncalcites\\ncalcitic\\ncalcium\\ncalciums\\ncalcspar\\ncalcspars\\ncalctufa\\ncalctufas\\ncalctuff\\ncalctuffs\\ncalculable\\ncalculably\\ncalculate\\ncalculated\\ncalculates\\ncalculating\\ncalculation\\ncalculations\\ncalculator\\ncalculators\\ncalculi\\ncalculus\\ncalculuses\\ncaldera\\ncalderas\\ncaldron\\ncaldrons\\ncaleche\\ncaleches\\ncalendal\\ncalendar\\ncalendared\\ncalendaring\\ncalendars\\ncalender\\ncalendered\\ncalendering\\ncalenders\\ncalends\\ncalesa\\ncalesas\\ncalf\\ncalflike\\ncalfs\\ncalfskin\\ncalfskins\\ncaliber\\ncalibers\\ncalibrate\\ncalibrated\\ncalibrates\\ncalibrating\\ncalibration\\ncalibrations\\ncalibrator\\ncalibrators\\ncalibre\\ncalibred\\ncalibres\\ncalices\\ncaliche\\ncaliches\\ncalicle\\ncalicles\\ncalico\\ncalicoes\\ncalicos\\ncalif\\ncalifate\\ncalifates\\ncalifornia\\ncalifs\\ncalipash\\ncalipashes\\ncalipee\\ncalipees\\ncaliper\\ncalipered\\ncalipering\\ncalipers\\ncaliph\\ncaliphal\\ncaliphate\\ncaliphates\\ncaliphs\\ncalisaya\\ncalisayas\\ncalisthenic\\ncalisthenics\\ncalix\\ncalk\\ncalked\\ncalker\\ncalkers\\ncalkin\\ncalking\\ncalkins\\ncalks\\ncall\\ncalla\\ncallable\\ncallan\\ncallans\\ncallant\\ncallants\\ncallas\\ncallback\\ncallbacks\\ncallboy\\ncallboys\\ncalled\\ncaller\\ncallers\\ncallet\\ncallets\\ncalli\\ncalling\\ncallings\\ncalliope\\ncalliopes\\ncallipee\\ncallipees\\ncalliper\\ncallipered\\ncallipering\\ncallipers\\ncallose\\ncalloses\\ncallosities\\ncallosity\\ncallous\\ncalloused\\ncallouses\\ncallousing\\ncallously\\ncallousness\\ncallousnesses\\ncallow\\ncallower\\ncallowest\\ncallowness\\ncallownesses\\ncalls\\ncallus\\ncallused\\ncalluses\\ncallusing\\ncalm\\ncalmed\\ncalmer\\ncalmest\\ncalming\\ncalmly\\ncalmness\\ncalmnesses\\ncalms\\ncalomel\\ncalomels\\ncaloric\\ncalorics\\ncalorie\\ncalories\\ncalory\\ncalotte\\ncalottes\\ncaloyer\\ncaloyers\\ncalpac\\ncalpack\\ncalpacks\\ncalpacs\\ncalque\\ncalqued\\ncalques\\ncalquing\\ncalthrop\\ncalthrops\\ncaltrap\\ncaltraps\\ncaltrop\\ncaltrops\\ncalumet\\ncalumets\\ncalumniate\\ncalumniated\\ncalumniates\\ncalumniating\\ncalumniation\\ncalumniations\\ncalumnies\\ncalumnious\\ncalumny\\ncalutron\\ncalutrons\\ncalvados\\ncalvadoses\\ncalvaria\\ncalvarias\\ncalvaries\\ncalvary\\ncalve\\ncalved\\ncalves\\ncalving\\ncalx\\ncalxes\\ncalycate\\ncalyceal\\ncalyces\\ncalycine\\ncalycle\\ncalycles\\ncalyculi\\ncalypso\\ncalypsoes\\ncalypsos\\ncalypter\\ncalypters\\ncalyptra\\ncalyptras\\ncalyx\\ncalyxes\\ncam\\ncamail\\ncamailed\\ncamails\\ncamaraderie\\ncamaraderies\\ncamas\\ncamases\\ncamass\\ncamasses\\ncamber\\ncambered\\ncambering\\ncambers\\ncambia\\ncambial\\ncambism\\ncambisms\\ncambist\\ncambists\\ncambium\\ncambiums\\ncambogia\\ncambogias\\ncambric\\ncambrics\\ncambridge\\ncame\\ncamel\\ncameleer\\ncameleers\\ncamelia\\ncamelias\\ncamellia\\ncamellias\\ncamels\\ncameo\\ncameoed\\ncameoing\\ncameos\\ncamera\\ncamerae\\ncameral\\ncameraman\\ncameramen\\ncameras\\ncames\\ncamion\\ncamions\\ncamisa\\ncamisade\\ncamisades\\ncamisado\\ncamisadoes\\ncamisados\\ncamisas\\ncamise\\ncamises\\ncamisia\\ncamisias\\ncamisole\\ncamisoles\\ncamlet\\ncamlets\\ncamomile\\ncamomiles\\ncamorra\\ncamorras\\ncamouflage\\ncamouflaged\\ncamouflages\\ncamouflaging\\ncamp\\ncampagna\\ncampagne\\ncampaign\\ncampaigned\\ncampaigner\\ncampaigners\\ncampaigning\\ncampaigns\\ncampanile\\ncampaniles\\ncampanili\\ncamped\\ncamper\\ncampers\\ncampfire\\ncampfires\\ncampground\\ncampgrounds\\ncamphene\\ncamphenes\\ncamphine\\ncamphines\\ncamphol\\ncamphols\\ncamphor\\ncamphors\\ncampi\\ncampier\\ncampiest\\ncampily\\ncamping\\ncampings\\ncampion\\ncampions\\ncampo\\ncampong\\ncampongs\\ncamporee\\ncamporees\\ncampos\\ncamps\\ncampsite\\ncampsites\\ncampus\\ncampuses\\ncampy\\ncams\\ncamshaft\\ncamshafts\\ncan\\ncanaille\\ncanailles\\ncanakin\\ncanakins\\ncanal\\ncanaled\\ncanaling\\ncanalise\\ncanalised\\ncanalises\\ncanalising\\ncanalize\\ncanalized\\ncanalizes\\ncanalizing\\ncanalled\\ncanaller\\ncanallers\\ncanalling\\ncanals\\ncanape\\ncanapes\\ncanard\\ncanards\\ncanaries\\ncanary\\ncanasta\\ncanastas\\ncancan\\ncancans\\ncancel\\ncanceled\\ncanceler\\ncancelers\\ncanceling\\ncancellation\\ncancellations\\ncancelled\\ncancelling\\ncancels\\ncancer\\ncancerlog\\ncancerous\\ncancerously\\ncancers\\ncancha\\ncanchas\\ncancroid\\ncancroids\\ncandela\\ncandelabra\\ncandelabras\\ncandelabrum\\ncandelas\\ncandent\\ncandid\\ncandida\\ncandidacies\\ncandidacy\\ncandidas\\ncandidate\\ncandidates\\ncandider\\ncandidest\\ncandidly\\ncandidness\\ncandidnesses\\ncandids\\ncandied\\ncandies\\ncandle\\ncandled\\ncandlelight\\ncandlelights\\ncandler\\ncandlers\\ncandles\\ncandlestick\\ncandlesticks\\ncandling\\ncandor\\ncandors\\ncandour\\ncandours\\ncandy\\ncandying\\ncane\\ncaned\\ncanella\\ncanellas\\ncaner\\ncaners\\ncanes\\ncaneware\\ncanewares\\ncanfield\\ncanfields\\ncanful\\ncanfuls\\ncangue\\ncangues\\ncanikin\\ncanikins\\ncanine\\ncanines\\ncaning\\ncaninities\\ncaninity\\ncanister\\ncanisters\\ncanities\\ncanker\\ncankered\\ncankering\\ncankerous\\ncankers\\ncanna\\ncannabic\\ncannabin\\ncannabins\\ncannabis\\ncannabises\\ncannas\\ncanned\\ncannel\\ncannelon\\ncannelons\\ncannels\\ncanner\\ncanneries\\ncanners\\ncannery\\ncannibal\\ncannibalism\\ncannibalisms\\ncannibalistic\\ncannibalize\\ncannibalized\\ncannibalizes\\ncannibalizing\\ncannibals\\ncannie\\ncannier\\ncanniest\\ncannikin\\ncannikins\\ncannily\\ncanniness\\ncanninesses\\ncanning\\ncannings\\ncannon\\ncannonade\\ncannonaded\\ncannonades\\ncannonading\\ncannonball\\ncannonballs\\ncannoned\\ncannoneer\\ncannoneers\\ncannoning\\ncannonries\\ncannonry\\ncannons\\ncannot\\ncannula\\ncannulae\\ncannular\\ncannulas\\ncanny\\ncanoe\\ncanoed\\ncanoeing\\ncanoeist\\ncanoeists\\ncanoes\\ncanon\\ncanoness\\ncanonesses\\ncanonic\\ncanonical\\ncanonically\\ncanonise\\ncanonised\\ncanonises\\ncanonising\\ncanonist\\ncanonists\\ncanonization\\ncanonizations\\ncanonize\\ncanonized\\ncanonizes\\ncanonizing\\ncanonries\\ncanonry\\ncanons\\ncanopied\\ncanopies\\ncanopy\\ncanopying\\ncanorous\\ncans\\ncansful\\ncanso\\ncansos\\ncanst\\ncant\\ncantala\\ncantalas\\ncantaloupe\\ncantaloupes\\ncantankerous\\ncantankerously\\ncantankerousness\\ncantankerousnesses\\ncantata\\ncantatas\\ncantdog\\ncantdogs\\ncanted\\ncanteen\\ncanteens\\ncanter\\ncantered\\ncantering\\ncanters\\ncanthal\\ncanthi\\ncanthus\\ncantic\\ncanticle\\ncanticles\\ncantilever\\ncantilevers\\ncantina\\ncantinas\\ncanting\\ncantle\\ncantles\\ncanto\\ncanton\\ncantonal\\ncantoned\\ncantoning\\ncantons\\ncantor\\ncantors\\ncantos\\ncantraip\\ncantraips\\ncantrap\\ncantraps\\ncantrip\\ncantrips\\ncants\\ncantus\\ncanty\\ncanula\\ncanulae\\ncanulas\\ncanulate\\ncanulated\\ncanulates\\ncanulating\\ncanvas\\ncanvased\\ncanvaser\\ncanvasers\\ncanvases\\ncanvasing\\ncanvass\\ncanvassed\\ncanvasser\\ncanvassers\\ncanvasses\\ncanvassing\\ncanyon\\ncanyons\\ncanzona\\ncanzonas\\ncanzone\\ncanzones\\ncanzonet\\ncanzonets\\ncanzoni\\ncap\\ncapabilities\\ncapability\\ncapable\\ncapabler\\ncapablest\\ncapably\\ncapacious\\ncapacitance\\ncapacitances\\ncapacities\\ncapacitor\\ncapacitors\\ncapacity\\ncape\\ncaped\\ncapelan\\ncapelans\\ncapelet\\ncapelets\\ncapelin\\ncapelins\\ncaper\\ncapered\\ncaperer\\ncaperers\\ncapering\\ncapers\\ncapes\\ncapeskin\\ncapeskins\\ncapework\\ncapeworks\\ncapful\\ncapfuls\\ncaph\\ncaphs\\ncapias\\ncapiases\\ncapillaries\\ncapillary\\ncapita\\ncapital\\ncapitalism\\ncapitalist\\ncapitalistic\\ncapitalistically\\ncapitalists\\ncapitalization\\ncapitalizations\\ncapitalize\\ncapitalized\\ncapitalizes\\ncapitalizing\\ncapitals\\ncapitate\\ncapitol\\ncapitols\\ncapitula\\ncapitulate\\ncapitulated\\ncapitulates\\ncapitulating\\ncapitulation\\ncapitulations\\ncapless\\ncaplin\\ncaplins\\ncapmaker\\ncapmakers\\ncapo\\ncapon\\ncaponier\\ncaponiers\\ncaponize\\ncaponized\\ncaponizes\\ncaponizing\\ncapons\\ncaporal\\ncaporals\\ncapos\\ncapote\\ncapotes\\ncapouch\\ncapouches\\ncapped\\ncapper\\ncappers\\ncapping\\ncappings\\ncapric\\ncapricci\\ncaprice\\ncaprices\\ncapricious\\ncaprifig\\ncaprifigs\\ncaprine\\ncapriole\\ncaprioled\\ncaprioles\\ncaprioling\\ncaps\\ncapsicin\\ncapsicins\\ncapsicum\\ncapsicums\\ncapsid\\ncapsidal\\ncapsids\\ncapsize\\ncapsized\\ncapsizes\\ncapsizing\\ncapstan\\ncapstans\\ncapstone\\ncapstones\\ncapsular\\ncapsulate\\ncapsulated\\ncapsule\\ncapsuled\\ncapsules\\ncapsuling\\ncaptain\\ncaptaincies\\ncaptaincy\\ncaptained\\ncaptaining\\ncaptains\\ncaptainship\\ncaptainships\\ncaptan\\ncaptans\\ncaption\\ncaptioned\\ncaptioning\\ncaptions\\ncaptious\\ncaptiously\\ncaptivate\\ncaptivated\\ncaptivates\\ncaptivating\\ncaptivation\\ncaptivations\\ncaptivator\\ncaptivators\\ncaptive\\ncaptives\\ncaptivities\\ncaptivity\\ncaptor\\ncaptors\\ncapture\\ncaptured\\ncapturer\\ncapturers\\ncaptures\\ncapturing\\ncapuche\\ncapuched\\ncapuches\\ncapuchin\\ncapuchins\\ncaput\\ncapybara\\ncapybaras\\ncar\\ncarabao\\ncarabaos\\ncarabid\\ncarabids\\ncarabin\\ncarabine\\ncarabines\\ncarabins\\ncaracal\\ncaracals\\ncaracara\\ncaracaras\\ncarack\\ncaracks\\ncaracol\\ncaracole\\ncaracoled\\ncaracoles\\ncaracoling\\ncaracolled\\ncaracolling\\ncaracols\\ncaracul\\ncaraculs\\ncarafe\\ncarafes\\ncaragana\\ncaraganas\\ncarageen\\ncarageens\\ncaramel\\ncaramels\\ncarangid\\ncarangids\\ncarapace\\ncarapaces\\ncarapax\\ncarapaxes\\ncarassow\\ncarassows\\ncarat\\ncarate\\ncarates\\ncarats\\ncaravan\\ncaravaned\\ncaravaning\\ncaravanned\\ncaravanning\\ncaravans\\ncaravel\\ncaravels\\ncaraway\\ncaraways\\ncarbamic\\ncarbamyl\\ncarbamyls\\ncarbarn\\ncarbarns\\ncarbaryl\\ncarbaryls\\ncarbide\\ncarbides\\ncarbine\\ncarbines\\ncarbinol\\ncarbinols\\ncarbohydrate\\ncarbohydrates\\ncarbon\\ncarbonate\\ncarbonated\\ncarbonates\\ncarbonating\\ncarbonation\\ncarbonations\\ncarbonic\\ncarbons\\ncarbonyl\\ncarbonyls\\ncarbora\\ncarboras\\ncarboxyl\\ncarboxyls\\ncarboy\\ncarboyed\\ncarboys\\ncarbuncle\\ncarbuncles\\ncarburet\\ncarbureted\\ncarbureting\\ncarburetor\\ncarburetors\\ncarburets\\ncarburetted\\ncarburetting\\ncarcajou\\ncarcajous\\ncarcanet\\ncarcanets\\ncarcase\\ncarcases\\ncarcass\\ncarcasses\\ncarcel\\ncarcels\\ncarcinogen\\ncarcinogenic\\ncarcinogenics\\ncarcinogens\\ncarcinoma\\ncarcinomas\\ncarcinomata\\ncarcinomatous\\ncard\\ncardamom\\ncardamoms\\ncardamon\\ncardamons\\ncardamum\\ncardamums\\ncardboard\\ncardboards\\ncardcase\\ncardcases\\ncarded\\ncarder\\ncarders\\ncardia\\ncardiac\\ncardiacs\\ncardiae\\ncardias\\ncardigan\\ncardigans\\ncardinal\\ncardinals\\ncarding\\ncardings\\ncardiogram\\ncardiograms\\ncardiograph\\ncardiographic\\ncardiographies\\ncardiographs\\ncardiography\\ncardioid\\ncardioids\\ncardiologies\\ncardiologist\\ncardiologists\\ncardiology\\ncardiotoxicities\\ncardiotoxicity\\ncardiovascular\\ncarditic\\ncarditis\\ncarditises\\ncardoon\\ncardoons\\ncards\\ncare\\ncared\\ncareen\\ncareened\\ncareener\\ncareeners\\ncareening\\ncareens\\ncareer\\ncareered\\ncareerer\\ncareerers\\ncareering\\ncareers\\ncarefree\\ncareful\\ncarefuller\\ncarefullest\\ncarefully\\ncarefulness\\ncarefulnesses\\ncareless\\ncarelessly\\ncarelessness\\ncarelessnesses\\ncarer\\ncarers\\ncares\\ncaress\\ncaressed\\ncaresser\\ncaressers\\ncaresses\\ncaressing\\ncaret\\ncaretaker\\ncaretakers\\ncarets\\ncareworn\\ncarex\\ncarfare\\ncarfares\\ncarful\\ncarfuls\\ncargo\\ncargoes\\ncargos\\ncarhop\\ncarhops\\ncaribe\\ncaribes\\ncaribou\\ncaribous\\ncaricature\\ncaricatured\\ncaricatures\\ncaricaturing\\ncaricaturist\\ncaricaturists\\ncarices\\ncaried\\ncaries\\ncarillon\\ncarillonned\\ncarillonning\\ncarillons\\ncarina\\ncarinae\\ncarinal\\ncarinas\\ncarinate\\ncaring\\ncarioca\\ncariocas\\ncariole\\ncarioles\\ncarious\\ncark\\ncarked\\ncarking\\ncarks\\ncarl\\ncarle\\ncarles\\ncarless\\ncarlin\\ncarline\\ncarlines\\ncarling\\ncarlings\\ncarlins\\ncarlish\\ncarload\\ncarloads\\ncarls\\ncarmaker\\ncarmakers\\ncarman\\ncarmen\\ncarmine\\ncarmines\\ncarn\\ncarnage\\ncarnages\\ncarnal\\ncarnalities\\ncarnality\\ncarnally\\ncarnation\\ncarnations\\ncarnauba\\ncarnaubas\\ncarney\\ncarneys\\ncarnie\\ncarnies\\ncarnified\\ncarnifies\\ncarnify\\ncarnifying\\ncarnival\\ncarnivals\\ncarnivore\\ncarnivores\\ncarnivorous\\ncarnivorously\\ncarnivorousness\\ncarnivorousnesses\\ncarns\\ncarny\\ncaroach\\ncaroaches\\ncarob\\ncarobs\\ncaroch\\ncaroche\\ncaroches\\ncarol\\ncaroled\\ncaroler\\ncarolers\\ncaroli\\ncaroling\\ncarolled\\ncaroller\\ncarollers\\ncarolling\\ncarols\\ncarolus\\ncaroluses\\ncarom\\ncaromed\\ncaroming\\ncaroms\\ncarotene\\ncarotenes\\ncarotid\\ncarotids\\ncarotin\\ncarotins\\ncarousal\\ncarousals\\ncarouse\\ncaroused\\ncarousel\\ncarousels\\ncarouser\\ncarousers\\ncarouses\\ncarousing\\ncarp\\ncarpal\\ncarpale\\ncarpalia\\ncarpals\\ncarped\\ncarpel\\ncarpels\\ncarpenter\\ncarpentered\\ncarpentering\\ncarpenters\\ncarpentries\\ncarpentry\\ncarper\\ncarpers\\ncarpet\\ncarpeted\\ncarpeting\\ncarpets\\ncarpi\\ncarping\\ncarpings\\ncarport\\ncarports\\ncarps\\ncarpus\\ncarrack\\ncarracks\\ncarrel\\ncarrell\\ncarrells\\ncarrels\\ncarriage\\ncarriages\\ncarried\\ncarrier\\ncarriers\\ncarries\\ncarriole\\ncarrioles\\ncarrion\\ncarrions\\ncarritch\\ncarritches\\ncarroch\\ncarroches\\ncarrom\\ncarromed\\ncarroming\\ncarroms\\ncarrot\\ncarrotier\\ncarrotiest\\ncarrotin\\ncarrotins\\ncarrots\\ncarroty\\ncarrousel\\ncarrousels\\ncarry\\ncarryall\\ncarryalls\\ncarrying\\ncarryon\\ncarryons\\ncarryout\\ncarryouts\\ncars\\ncarse\\ncarses\\ncarsick\\ncart\\ncartable\\ncartage\\ncartages\\ncarte\\ncarted\\ncartel\\ncartels\\ncarter\\ncarters\\ncartes\\ncartilage\\ncartilages\\ncartilaginous\\ncarting\\ncartload\\ncartloads\\ncartographer\\ncartographers\\ncartographies\\ncartography\\ncarton\\ncartoned\\ncartoning\\ncartons\\ncartoon\\ncartooned\\ncartooning\\ncartoonist\\ncartoonists\\ncartoons\\ncartop\\ncartouch\\ncartouches\\ncartridge\\ncartridges\\ncarts\\ncaruncle\\ncaruncles\\ncarve\\ncarved\\ncarvel\\ncarvels\\ncarven\\ncarver\\ncarvers\\ncarves\\ncarving\\ncarvings\\ncaryatid\\ncaryatides\\ncaryatids\\ncaryotin\\ncaryotins\\ncasa\\ncasaba\\ncasabas\\ncasas\\ncasava\\ncasavas\\ncascabel\\ncascabels\\ncascable\\ncascables\\ncascade\\ncascaded\\ncascades\\ncascading\\ncascara\\ncascaras\\ncase\\ncasease\\ncaseases\\ncaseate\\ncaseated\\ncaseates\\ncaseating\\ncasebook\\ncasebooks\\ncased\\ncasefied\\ncasefies\\ncasefy\\ncasefying\\ncaseic\\ncasein\\ncaseins\\ncasemate\\ncasemates\\ncasement\\ncasements\\ncaseose\\ncaseoses\\ncaseous\\ncasern\\ncaserne\\ncasernes\\ncaserns\\ncases\\ncasette\\ncasettes\\ncasework\\ncaseworks\\ncaseworm\\ncaseworms\\ncash\\ncashable\\ncashaw\\ncashaws\\ncashbook\\ncashbooks\\ncashbox\\ncashboxes\\ncashed\\ncashes\\ncashew\\ncashews\\ncashier\\ncashiered\\ncashiering\\ncashiers\\ncashing\\ncashless\\ncashmere\\ncashmeres\\ncashoo\\ncashoos\\ncasimere\\ncasimeres\\ncasimire\\ncasimires\\ncasing\\ncasings\\ncasino\\ncasinos\\ncask\\ncasked\\ncasket\\ncasketed\\ncasketing\\ncaskets\\ncasking\\ncasks\\ncasky\\ncasque\\ncasqued\\ncasques\\ncassaba\\ncassabas\\ncassava\\ncassavas\\ncasserole\\ncasseroles\\ncassette\\ncassettes\\ncassia\\ncassias\\ncassino\\ncassinos\\ncassis\\ncassises\\ncassock\\ncassocks\\ncast\\ncastanet\\ncastanets\\ncastaway\\ncastaways\\ncaste\\ncasteism\\ncasteisms\\ncaster\\ncasters\\ncastes\\ncastigate\\ncastigated\\ncastigates\\ncastigating\\ncastigation\\ncastigations\\ncastigator\\ncastigators\\ncasting\\ncastings\\ncastle\\ncastled\\ncastles\\ncastling\\ncastoff\\ncastoffs\\ncastor\\ncastors\\ncastrate\\ncastrated\\ncastrates\\ncastrati\\ncastrating\\ncastration\\ncastrations\\ncastrato\\ncasts\\ncasual\\ncasually\\ncasualness\\ncasualnesses\\ncasuals\\ncasualties\\ncasualty\\ncasuist\\ncasuistries\\ncasuistry\\ncasuists\\ncasus\\ncat\\ncataclysm\\ncataclysms\\ncatacomb\\ncatacombs\\ncatacylsmic\\ncatalase\\ncatalases\\ncatalo\\ncataloes\\ncatalog\\ncataloged\\ncataloger\\ncatalogers\\ncataloging\\ncatalogs\\ncataloguer\\ncataloguers\\ncatalos\\ncatalpa\\ncatalpas\\ncatalyses\\ncatalysis\\ncatalyst\\ncatalysts\\ncatalytic\\ncatalyze\\ncatalyzed\\ncatalyzes\\ncatalyzing\\ncatamaran\\ncatamarans\\ncatamite\\ncatamites\\ncatamount\\ncatamounts\\ncatapult\\ncatapulted\\ncatapulting\\ncatapults\\ncataract\\ncataracts\\ncatarrh\\ncatarrhs\\ncatastrophe\\ncatastrophes\\ncatastrophic\\ncatastrophically\\ncatbird\\ncatbirds\\ncatboat\\ncatboats\\ncatbrier\\ncatbriers\\ncatcall\\ncatcalled\\ncatcalling\\ncatcalls\\ncatch\\ncatchall\\ncatchalls\\ncatcher\\ncatchers\\ncatches\\ncatchflies\\ncatchfly\\ncatchier\\ncatchiest\\ncatching\\ncatchup\\ncatchups\\ncatchword\\ncatchwords\\ncatchy\\ncate\\ncatechin\\ncatechins\\ncatechism\\ncatechisms\\ncatechist\\ncatechists\\ncatechize\\ncatechized\\ncatechizes\\ncatechizing\\ncatechol\\ncatechols\\ncatechu\\ncatechus\\ncategorical\\ncategorically\\ncategories\\ncategorization\\ncategorizations\\ncategorize\\ncategorized\\ncategorizes\\ncategorizing\\ncategory\\ncatena\\ncatenae\\ncatenaries\\ncatenary\\ncatenas\\ncatenate\\ncatenated\\ncatenates\\ncatenating\\ncatenoid\\ncatenoids\\ncater\\ncateran\\ncaterans\\ncatercorner\\ncatered\\ncaterer\\ncaterers\\ncateress\\ncateresses\\ncatering\\ncaterpillar\\ncaterpillars\\ncaters\\ncaterwaul\\ncaterwauled\\ncaterwauling\\ncaterwauls\\ncates\\ncatface\\ncatfaces\\ncatfall\\ncatfalls\\ncatfish\\ncatfishes\\ncatgut\\ncatguts\\ncatharses\\ncatharsis\\ncathartic\\ncathead\\ncatheads\\ncathect\\ncathected\\ncathecting\\ncathects\\ncathedra\\ncathedrae\\ncathedral\\ncathedrals\\ncathedras\\ncatheter\\ncatheterization\\ncatheters\\ncathexes\\ncathexis\\ncathode\\ncathodes\\ncathodic\\ncatholic\\ncathouse\\ncathouses\\ncation\\ncationic\\ncations\\ncatkin\\ncatkins\\ncatlike\\ncatlin\\ncatling\\ncatlings\\ncatlins\\ncatmint\\ncatmints\\ncatnap\\ncatnaper\\ncatnapers\\ncatnapped\\ncatnapping\\ncatnaps\\ncatnip\\ncatnips\\ncats\\ncatspaw\\ncatspaws\\ncatsup\\ncatsups\\ncattail\\ncattails\\ncattalo\\ncattaloes\\ncattalos\\ncatted\\ncattie\\ncattier\\ncatties\\ncattiest\\ncattily\\ncattiness\\ncattinesses\\ncatting\\ncattish\\ncattle\\ncattleman\\ncattlemen\\ncattleya\\ncattleyas\\ncatty\\ncatwalk\\ncatwalks\\ncaucus\\ncaucused\\ncaucuses\\ncaucusing\\ncaucussed\\ncaucusses\\ncaucussing\\ncaudad\\ncaudal\\ncaudally\\ncaudate\\ncaudated\\ncaudex\\ncaudexes\\ncaudices\\ncaudillo\\ncaudillos\\ncaudle\\ncaudles\\ncaught\\ncaul\\ncauld\\ncauldron\\ncauldrons\\ncaulds\\ncaules\\ncaulicle\\ncaulicles\\ncauliflower\\ncauliflowers\\ncauline\\ncaulis\\ncaulk\\ncaulked\\ncaulker\\ncaulkers\\ncaulking\\ncaulkings\\ncaulks\\ncauls\\ncausable\\ncausal\\ncausaless\\ncausality\\ncausally\\ncausals\\ncausation\\ncausations\\ncausative\\ncause\\ncaused\\ncauser\\ncauserie\\ncauseries\\ncausers\\ncauses\\ncauseway\\ncausewayed\\ncausewaying\\ncauseways\\ncausey\\ncauseys\\ncausing\\ncaustic\\ncaustics\\ncauteries\\ncauterization\\ncauterizations\\ncauterize\\ncauterized\\ncauterizes\\ncauterizing\\ncautery\\ncaution\\ncautionary\\ncautioned\\ncautioning\\ncautions\\ncautious\\ncautiously\\ncautiousness\\ncautiousnesses\\ncavalcade\\ncavalcades\\ncavalero\\ncavaleros\\ncavalier\\ncavaliered\\ncavaliering\\ncavalierly\\ncavalierness\\ncavaliernesses\\ncavaliers\\ncavalla\\ncavallas\\ncavallies\\ncavally\\ncavalries\\ncavalry\\ncavalryman\\ncavalrymen\\ncavatina\\ncavatinas\\ncavatine\\ncave\\ncaveat\\ncaveator\\ncaveators\\ncaveats\\ncaved\\ncavefish\\ncavefishes\\ncavelike\\ncaveman\\ncavemen\\ncaver\\ncavern\\ncaverned\\ncaverning\\ncavernous\\ncavernously\\ncaverns\\ncavers\\ncaves\\ncavetti\\ncavetto\\ncavettos\\ncaviar\\ncaviare\\ncaviares\\ncaviars\\ncavicorn\\ncavie\\ncavies\\ncavil\\ncaviled\\ncaviler\\ncavilers\\ncaviling\\ncavilled\\ncaviller\\ncavillers\\ncavilling\\ncavils\\ncaving\\ncavitary\\ncavitate\\ncavitated\\ncavitates\\ncavitating\\ncavitied\\ncavities\\ncavity\\ncavort\\ncavorted\\ncavorter\\ncavorters\\ncavorting\\ncavorts\\ncavy\\ncaw\\ncawed\\ncawing\\ncaws\\ncay\\ncayenne\\ncayenned\\ncayennes\\ncayman\\ncaymans\\ncays\\ncayuse\\ncayuses\\ncazique\\ncaziques\\ncease\\nceased\\nceases\\nceasing\\ncebid\\ncebids\\nceboid\\nceboids\\nceca\\ncecal\\ncecally\\ncecum\\ncedar\\ncedarn\\ncedars\\ncede\\nceded\\nceder\\nceders\\ncedes\\ncedi\\ncedilla\\ncedillas\\nceding\\ncedis\\ncedula\\ncedulas\\ncee\\ncees\\nceiba\\nceibas\\nceil\\nceiled\\nceiler\\nceilers\\nceiling\\nceilings\\nceils\\nceinture\\nceintures\\nceladon\\nceladons\\nceleb\\ncelebrant\\ncelebrants\\ncelebrate\\ncelebrated\\ncelebrates\\ncelebrating\\ncelebration\\ncelebrations\\ncelebrator\\ncelebrators\\ncelebrities\\ncelebrity\\ncelebs\\nceleriac\\nceleriacs\\nceleries\\ncelerities\\ncelerity\\ncelery\\ncelesta\\ncelestas\\nceleste\\ncelestes\\ncelestial\\nceliac\\ncelibacies\\ncelibacy\\ncelibate\\ncelibates\\ncell\\ncella\\ncellae\\ncellar\\ncellared\\ncellarer\\ncellarers\\ncellaret\\ncellarets\\ncellaring\\ncellars\\ncelled\\ncelli\\ncelling\\ncellist\\ncellists\\ncello\\ncellophane\\ncellophanes\\ncellos\\ncells\\ncellular\\ncellule\\ncellules\\ncellulose\\ncelluloses\\ncelom\\ncelomata\\nceloms\\ncelt\\ncelts\\ncembali\\ncembalo\\ncembalos\\ncement\\ncementa\\ncementation\\ncementations\\ncemented\\ncementer\\ncementers\\ncementing\\ncements\\ncementum\\ncemeteries\\ncemetery\\ncenacle\\ncenacles\\ncenobite\\ncenobites\\ncenotaph\\ncenotaphs\\ncenote\\ncenotes\\ncense\\ncensed\\ncenser\\ncensers\\ncenses\\ncensing\\ncensor\\ncensored\\ncensorial\\ncensoring\\ncensorious\\ncensoriously\\ncensoriousness\\ncensoriousnesses\\ncensors\\ncensorship\\ncensorships\\ncensual\\ncensure\\ncensured\\ncensurer\\ncensurers\\ncensures\\ncensuring\\ncensus\\ncensused\\ncensuses\\ncensusing\\ncent\\ncental\\ncentals\\ncentare\\ncentares\\ncentaur\\ncentauries\\ncentaurs\\ncentaury\\ncentavo\\ncentavos\\ncentennial\\ncentennials\\ncenter\\ncentered\\ncentering\\ncenterpiece\\ncenterpieces\\ncenters\\ncenteses\\ncentesis\\ncentiare\\ncentiares\\ncentigrade\\ncentile\\ncentiles\\ncentime\\ncentimes\\ncentimeter\\ncentimeters\\ncentimo\\ncentimos\\ncentipede\\ncentipedes\\ncentner\\ncentners\\ncento\\ncentones\\ncentos\\ncentra\\ncentral\\ncentraler\\ncentralest\\ncentralization\\ncentralizations\\ncentralize\\ncentralized\\ncentralizer\\ncentralizers\\ncentralizes\\ncentralizing\\ncentrally\\ncentrals\\ncentre\\ncentred\\ncentres\\ncentric\\ncentrifugal\\ncentrifugally\\ncentrifuge\\ncentrifuges\\ncentring\\ncentrings\\ncentripetal\\ncentripetally\\ncentrism\\ncentrisms\\ncentrist\\ncentrists\\ncentroid\\ncentroids\\ncentrum\\ncentrums\\ncents\\ncentum\\ncentums\\ncentuple\\ncentupled\\ncentuples\\ncentupling\\ncenturies\\ncenturion\\ncenturions\\ncentury\\nceorl\\nceorlish\\nceorls\\ncephalad\\ncephalic\\ncephalin\\ncephalins\\nceramal\\nceramals\\nceramic\\nceramics\\nceramist\\nceramists\\ncerastes\\ncerate\\ncerated\\ncerates\\nceratin\\nceratins\\nceratoid\\ncercaria\\ncercariae\\ncercarias\\ncerci\\ncercis\\ncercises\\ncercus\\ncere\\ncereal\\ncereals\\ncerebella\\ncerebellar\\ncerebellum\\ncerebellums\\ncerebra\\ncerebral\\ncerebrals\\ncerebrate\\ncerebrated\\ncerebrates\\ncerebrating\\ncerebration\\ncerebrations\\ncerebric\\ncerebrospinal\\ncerebrum\\ncerebrums\\ncered\\ncerement\\ncerements\\nceremonial\\nceremonies\\nceremonious\\nceremony\\nceres\\ncereus\\ncereuses\\nceria\\ncerias\\nceric\\ncering\\nceriph\\nceriphs\\ncerise\\ncerises\\ncerite\\ncerites\\ncerium\\nceriums\\ncermet\\ncermets\\ncernuous\\ncero\\nceros\\ncerotic\\ncerotype\\ncerotypes\\ncerous\\ncertain\\ncertainer\\ncertainest\\ncertainly\\ncertainties\\ncertainty\\ncertes\\ncertifiable\\ncertifiably\\ncertificate\\ncertificates\\ncertification\\ncertifications\\ncertified\\ncertifier\\ncertifiers\\ncertifies\\ncertify\\ncertifying\\ncertitude\\ncertitudes\\ncerulean\\nceruleans\\ncerumen\\ncerumens\\nceruse\\nceruses\\ncerusite\\ncerusites\\ncervelat\\ncervelats\\ncervical\\ncervices\\ncervine\\ncervix\\ncervixes\\ncesarean\\ncesareans\\ncesarian\\ncesarians\\ncesium\\ncesiums\\ncess\\ncessation\\ncessations\\ncessed\\ncesses\\ncessing\\ncession\\ncessions\\ncesspit\\ncesspits\\ncesspool\\ncesspools\\ncesta\\ncestas\\ncesti\\ncestode\\ncestodes\\ncestoi\\ncestoid\\ncestoids\\ncestos\\ncestus\\ncestuses\\ncesura\\ncesurae\\ncesuras\\ncetacean\\ncetaceans\\ncetane\\ncetanes\\ncete\\ncetes\\ncetologies\\ncetology\\nchabouk\\nchabouks\\nchabuk\\nchabuks\\nchacma\\nchacmas\\nchaconne\\nchaconnes\\nchad\\nchadarim\\nchadless\\nchads\\nchaeta\\nchaetae\\nchaetal\\nchafe\\nchafed\\nchafer\\nchafers\\nchafes\\nchaff\\nchaffed\\nchaffer\\nchaffered\\nchaffering\\nchaffers\\nchaffier\\nchaffiest\\nchaffing\\nchaffs\\nchaffy\\nchafing\\nchagrin\\nchagrined\\nchagrining\\nchagrinned\\nchagrinning\\nchagrins\\nchain\\nchaine\\nchained\\nchaines\\nchaining\\nchainman\\nchainmen\\nchains\\nchair\\nchaired\\nchairing\\nchairman\\nchairmaned\\nchairmaning\\nchairmanned\\nchairmanning\\nchairmans\\nchairmanship\\nchairmanships\\nchairmen\\nchairs\\nchairwoman\\nchairwomen\\nchaise\\nchaises\\nchalah\\nchalahs\\nchalaza\\nchalazae\\nchalazal\\nchalazas\\nchalcid\\nchalcids\\nchaldron\\nchaldrons\\nchaleh\\nchalehs\\nchalet\\nchalets\\nchalice\\nchaliced\\nchalices\\nchalk\\nchalkboard\\nchalkboards\\nchalked\\nchalkier\\nchalkiest\\nchalking\\nchalks\\nchalky\\nchallah\\nchallahs\\nchallenge\\nchallenged\\nchallenger\\nchallengers\\nchallenges\\nchallenging\\nchallie\\nchallies\\nchallis\\nchallises\\nchallot\\nchalloth\\nchally\\nchalone\\nchalones\\nchalot\\nchaloth\\nchalutz\\nchalutzim\\ncham\\nchamade\\nchamades\\nchamber\\nchambered\\nchambering\\nchambermaid\\nchambermaids\\nchambers\\nchambray\\nchambrays\\nchameleon\\nchameleons\\nchamfer\\nchamfered\\nchamfering\\nchamfers\\nchamfron\\nchamfrons\\nchamise\\nchamises\\nchamiso\\nchamisos\\nchammied\\nchammies\\nchammy\\nchammying\\nchamois\\nchamoised\\nchamoises\\nchamoising\\nchamoix\\nchamp\\nchampac\\nchampacs\\nchampagne\\nchampagnes\\nchampak\\nchampaks\\nchamped\\nchamper\\nchampers\\nchamping\\nchampion\\nchampioned\\nchampioning\\nchampions\\nchampionship\\nchampionships\\nchamps\\nchampy\\nchams\\nchance\\nchanced\\nchancel\\nchancelleries\\nchancellery\\nchancellor\\nchancellories\\nchancellors\\nchancellorship\\nchancellorships\\nchancellory\\nchancels\\nchanceries\\nchancery\\nchances\\nchancier\\nchanciest\\nchancily\\nchancing\\nchancre\\nchancres\\nchancy\\nchandelier\\nchandeliers\\nchandler\\nchandlers\\nchanfron\\nchanfrons\\nchang\\nchange\\nchangeable\\nchanged\\nchangeless\\nchanger\\nchangers\\nchanges\\nchanging\\nchangs\\nchannel\\nchanneled\\nchanneling\\nchannelled\\nchannelling\\nchannels\\nchanson\\nchansons\\nchant\\nchantage\\nchantages\\nchanted\\nchanter\\nchanters\\nchantey\\nchanteys\\nchanties\\nchanting\\nchantor\\nchantors\\nchantries\\nchantry\\nchants\\nchanty\\nchaos\\nchaoses\\nchaotic\\nchaotically\\nchap\\nchapbook\\nchapbooks\\nchape\\nchapeau\\nchapeaus\\nchapeaux\\nchapel\\nchapels\\nchaperon\\nchaperonage\\nchaperonages\\nchaperone\\nchaperoned\\nchaperones\\nchaperoning\\nchaperons\\nchapes\\nchapiter\\nchapiters\\nchaplain\\nchaplaincies\\nchaplaincy\\nchaplains\\nchaplet\\nchaplets\\nchapman\\nchapmen\\nchapped\\nchapping\\nchaps\\nchapt\\nchapter\\nchaptered\\nchaptering\\nchapters\\nchaqueta\\nchaquetas\\nchar\\ncharacid\\ncharacids\\ncharacin\\ncharacins\\ncharacter\\ncharacteristic\\ncharacteristically\\ncharacteristics\\ncharacterization\\ncharacterizations\\ncharacterize\\ncharacterized\\ncharacterizes\\ncharacterizing\\ncharacters\\ncharade\\ncharades\\ncharas\\ncharases\\ncharcoal\\ncharcoaled\\ncharcoaling\\ncharcoals\\nchard\\nchards\\nchare\\nchared\\nchares\\ncharge\\nchargeable\\ncharged\\ncharger\\nchargers\\ncharges\\ncharging\\ncharier\\nchariest\\ncharily\\ncharing\\nchariot\\ncharioted\\ncharioting\\nchariots\\ncharism\\ncharisma\\ncharismata\\ncharismatic\\ncharisms\\ncharities\\ncharity\\nchark\\ncharka\\ncharkas\\ncharked\\ncharkha\\ncharkhas\\ncharking\\ncharks\\ncharladies\\ncharlady\\ncharlatan\\ncharlatans\\ncharleston\\ncharlock\\ncharlocks\\ncharm\\ncharmed\\ncharmer\\ncharmers\\ncharming\\ncharminger\\ncharmingest\\ncharmingly\\ncharms\\ncharnel\\ncharnels\\ncharpai\\ncharpais\\ncharpoy\\ncharpoys\\ncharqui\\ncharquid\\ncharquis\\ncharr\\ncharred\\ncharrier\\ncharriest\\ncharring\\ncharro\\ncharros\\ncharrs\\ncharry\\nchars\\nchart\\ncharted\\ncharter\\nchartered\\nchartering\\ncharters\\ncharting\\nchartist\\nchartists\\nchartreuse\\nchartreuses\\ncharts\\ncharwoman\\ncharwomen\\nchary\\nchase\\nchased\\nchaser\\nchasers\\nchases\\nchasing\\nchasings\\nchasm\\nchasmal\\nchasmed\\nchasmic\\nchasms\\nchasmy\\nchasse\\nchassed\\nchasseing\\nchasses\\nchasseur\\nchasseurs\\nchassis\\nchaste\\nchastely\\nchasten\\nchastened\\nchasteness\\nchastenesses\\nchastening\\nchastens\\nchaster\\nchastest\\nchastise\\nchastised\\nchastisement\\nchastisements\\nchastises\\nchastising\\nchastities\\nchastity\\nchasuble\\nchasubles\\nchat\\nchateau\\nchateaus\\nchateaux\\nchats\\nchatted\\nchattel\\nchattels\\nchatter\\nchatterbox\\nchatterboxes\\nchattered\\nchatterer\\nchatterers\\nchattering\\nchatters\\nchattery\\nchattier\\nchattiest\\nchattily\\nchatting\\nchatty\\nchaufer\\nchaufers\\nchauffer\\nchauffers\\nchauffeur\\nchauffeured\\nchauffeuring\\nchauffeurs\\nchaunt\\nchaunted\\nchaunter\\nchaunters\\nchaunting\\nchaunts\\nchausses\\nchauvinism\\nchauvinisms\\nchauvinist\\nchauvinistic\\nchauvinists\\nchaw\\nchawed\\nchawer\\nchawers\\nchawing\\nchaws\\nchayote\\nchayotes\\nchazan\\nchazanim\\nchazans\\nchazzen\\nchazzenim\\nchazzens\\ncheap\\ncheapen\\ncheapened\\ncheapening\\ncheapens\\ncheaper\\ncheapest\\ncheapie\\ncheapies\\ncheapish\\ncheaply\\ncheapness\\ncheapnesses\\ncheaps\\ncheapskate\\ncheapskates\\ncheat\\ncheated\\ncheater\\ncheaters\\ncheating\\ncheats\\nchebec\\nchebecs\\nchechako\\nchechakos\\ncheck\\nchecked\\nchecker\\ncheckerboard\\ncheckerboards\\ncheckered\\ncheckering\\ncheckers\\nchecking\\nchecklist\\nchecklists\\ncheckmate\\ncheckmated\\ncheckmates\\ncheckmating\\ncheckoff\\ncheckoffs\\ncheckout\\ncheckouts\\ncheckpoint\\ncheckpoints\\ncheckrow\\ncheckrowed\\ncheckrowing\\ncheckrows\\nchecks\\ncheckup\\ncheckups\\ncheddar\\ncheddars\\ncheddite\\ncheddites\\ncheder\\ncheders\\nchedite\\nchedites\\ncheek\\ncheeked\\ncheekful\\ncheekfuls\\ncheekier\\ncheekiest\\ncheekily\\ncheeking\\ncheeks\\ncheeky\\ncheep\\ncheeped\\ncheeper\\ncheepers\\ncheeping\\ncheeps\\ncheer\\ncheered\\ncheerer\\ncheerers\\ncheerful\\ncheerfuller\\ncheerfullest\\ncheerfully\\ncheerfulness\\ncheerfulnesses\\ncheerier\\ncheeriest\\ncheerily\\ncheeriness\\ncheerinesses\\ncheering\\ncheerio\\ncheerios\\ncheerleader\\ncheerleaders\\ncheerless\\ncheerlessly\\ncheerlessness\\ncheerlessnesses\\ncheero\\ncheeros\\ncheers\\ncheery\\ncheese\\ncheesecloth\\ncheesecloths\\ncheesed\\ncheeses\\ncheesier\\ncheesiest\\ncheesily\\ncheesing\\ncheesy\\ncheetah\\ncheetahs\\nchef\\nchefdom\\nchefdoms\\nchefs\\nchegoe\\nchegoes\\nchela\\nchelae\\nchelas\\nchelate\\nchelated\\nchelates\\nchelating\\nchelator\\nchelators\\ncheloid\\ncheloids\\nchemic\\nchemical\\nchemically\\nchemicals\\nchemics\\nchemise\\nchemises\\nchemism\\nchemisms\\nchemist\\nchemistries\\nchemistry\\nchemists\\nchemotherapeutic\\nchemotherapeutical\\nchemotherapies\\nchemotherapy\\nchemurgies\\nchemurgy\\nchenille\\nchenilles\\nchenopod\\nchenopods\\ncheque\\nchequer\\nchequered\\nchequering\\nchequers\\ncheques\\ncherish\\ncherished\\ncherishes\\ncherishing\\ncheroot\\ncheroots\\ncherries\\ncherry\\nchert\\nchertier\\nchertiest\\ncherts\\ncherty\\ncherub\\ncherubic\\ncherubim\\ncherubs\\nchervil\\nchervils\\nchess\\nchessboard\\nchessboards\\nchesses\\nchessman\\nchessmen\\nchessplayer\\nchessplayers\\nchest\\nchested\\nchestful\\nchestfuls\\nchestier\\nchestiest\\nchestnut\\nchestnuts\\nchests\\nchesty\\nchetah\\nchetahs\\ncheth\\ncheths\\nchevalet\\nchevalets\\ncheveron\\ncheverons\\nchevied\\nchevies\\ncheviot\\ncheviots\\nchevron\\nchevrons\\nchevy\\nchevying\\nchew\\nchewable\\nchewed\\nchewer\\nchewers\\nchewier\\nchewiest\\nchewing\\nchewink\\nchewinks\\nchews\\nchewy\\nchez\\nchi\\nchia\\nchiao\\nchias\\nchiasm\\nchiasma\\nchiasmal\\nchiasmas\\nchiasmata\\nchiasmi\\nchiasmic\\nchiasms\\nchiasmus\\nchiastic\\nchiaus\\nchiauses\\nchibouk\\nchibouks\\nchic\\nchicane\\nchicaned\\nchicaner\\nchicaneries\\nchicaners\\nchicanery\\nchicanes\\nchicaning\\nchiccories\\nchiccory\\nchichi\\nchichis\\nchick\\nchickadee\\nchickadees\\nchicken\\nchickened\\nchickening\\nchickens\\nchickpea\\nchickpeas\\nchicks\\nchicle\\nchicles\\nchicly\\nchicness\\nchicnesses\\nchico\\nchicories\\nchicory\\nchicos\\nchics\\nchid\\nchidden\\nchide\\nchided\\nchider\\nchiders\\nchides\\nchiding\\nchief\\nchiefdom\\nchiefdoms\\nchiefer\\nchiefest\\nchiefly\\nchiefs\\nchieftain\\nchieftaincies\\nchieftaincy\\nchieftains\\nchiel\\nchield\\nchields\\nchiels\\nchiffon\\nchiffons\\nchigetai\\nchigetais\\nchigger\\nchiggers\\nchignon\\nchignons\\nchigoe\\nchigoes\\nchilblain\\nchilblains\\nchild\\nchildbearing\\nchildbed\\nchildbeds\\nchildbirth\\nchildbirths\\nchilde\\nchildes\\nchildhood\\nchildhoods\\nchilding\\nchildish\\nchildishly\\nchildishness\\nchildishnesses\\nchildless\\nchildlessness\\nchildlessnesses\\nchildlier\\nchildliest\\nchildlike\\nchildly\\nchildren\\nchile\\nchiles\\nchili\\nchiliad\\nchiliads\\nchiliasm\\nchiliasms\\nchiliast\\nchiliasts\\nchilies\\nchill\\nchilled\\nchiller\\nchillers\\nchillest\\nchilli\\nchillier\\nchillies\\nchilliest\\nchillily\\nchilliness\\nchillinesses\\nchilling\\nchills\\nchillum\\nchillums\\nchilly\\nchilopod\\nchilopods\\nchimaera\\nchimaeras\\nchimar\\nchimars\\nchimb\\nchimbley\\nchimbleys\\nchimblies\\nchimbly\\nchimbs\\nchime\\nchimed\\nchimer\\nchimera\\nchimeras\\nchimere\\nchimeres\\nchimeric\\nchimerical\\nchimers\\nchimes\\nchiming\\nchimla\\nchimlas\\nchimley\\nchimleys\\nchimney\\nchimneys\\nchimp\\nchimpanzee\\nchimpanzees\\nchimps\\nchin\\nchina\\nchinas\\nchinbone\\nchinbones\\nchinch\\nchinches\\nchinchier\\nchinchiest\\nchinchilla\\nchinchillas\\nchinchy\\nchine\\nchined\\nchines\\nchining\\nchink\\nchinked\\nchinkier\\nchinkiest\\nchinking\\nchinks\\nchinky\\nchinless\\nchinned\\nchinning\\nchino\\nchinone\\nchinones\\nchinook\\nchinooks\\nchinos\\nchins\\nchints\\nchintses\\nchintz\\nchintzes\\nchintzier\\nchintziest\\nchintzy\\nchip\\nchipmuck\\nchipmucks\\nchipmunk\\nchipmunks\\nchipped\\nchipper\\nchippered\\nchippering\\nchippers\\nchippie\\nchippies\\nchipping\\nchippy\\nchips\\nchirk\\nchirked\\nchirker\\nchirkest\\nchirking\\nchirks\\nchirm\\nchirmed\\nchirming\\nchirms\\nchiro\\nchiropodies\\nchiropodist\\nchiropodists\\nchiropody\\nchiropractic\\nchiropractics\\nchiropractor\\nchiropractors\\nchiros\\nchirp\\nchirped\\nchirper\\nchirpers\\nchirpier\\nchirpiest\\nchirpily\\nchirping\\nchirps\\nchirpy\\nchirr\\nchirre\\nchirred\\nchirres\\nchirring\\nchirrs\\nchirrup\\nchirruped\\nchirruping\\nchirrups\\nchirrupy\\nchis\\nchisel\\nchiseled\\nchiseler\\nchiselers\\nchiseling\\nchiselled\\nchiselling\\nchisels\\nchit\\nchital\\nchitchat\\nchitchats\\nchitchatted\\nchitchatting\\nchitin\\nchitins\\nchitlin\\nchitling\\nchitlings\\nchitlins\\nchiton\\nchitons\\nchits\\nchitter\\nchittered\\nchittering\\nchitters\\nchitties\\nchitty\\nchivalric\\nchivalries\\nchivalrous\\nchivalrously\\nchivalrousness\\nchivalrousnesses\\nchivalry\\nchivaree\\nchivareed\\nchivareeing\\nchivarees\\nchivari\\nchivaried\\nchivariing\\nchivaris\\nchive\\nchives\\nchivied\\nchivies\\nchivvied\\nchivvies\\nchivvy\\nchivvying\\nchivy\\nchivying\\nchlamydes\\nchlamys\\nchlamyses\\nchloral\\nchlorals\\nchlorambucil\\nchlorate\\nchlorates\\nchlordan\\nchlordans\\nchloric\\nchlorid\\nchloride\\nchlorides\\nchlorids\\nchlorin\\nchlorinate\\nchlorinated\\nchlorinates\\nchlorinating\\nchlorination\\nchlorinations\\nchlorinator\\nchlorinators\\nchlorine\\nchlorines\\nchlorins\\nchlorite\\nchlorites\\nchloroform\\nchloroformed\\nchloroforming\\nchloroforms\\nchlorophyll\\nchlorophylls\\nchlorous\\nchock\\nchocked\\nchockfull\\nchocking\\nchocks\\nchocolate\\nchocolates\\nchoice\\nchoicely\\nchoicer\\nchoices\\nchoicest\\nchoir\\nchoirboy\\nchoirboys\\nchoired\\nchoiring\\nchoirmaster\\nchoirmasters\\nchoirs\\nchoke\\nchoked\\nchoker\\nchokers\\nchokes\\nchokey\\nchokier\\nchokiest\\nchoking\\nchoky\\ncholate\\ncholates\\ncholer\\ncholera\\ncholeras\\ncholeric\\ncholers\\ncholesterol\\ncholesterols\\ncholine\\ncholines\\ncholla\\nchollas\\nchomp\\nchomped\\nchomping\\nchomps\\nchon\\nchoose\\nchooser\\nchoosers\\nchooses\\nchoosey\\nchoosier\\nchoosiest\\nchoosing\\nchoosy\\nchop\\nchopin\\nchopine\\nchopines\\nchopins\\nchopped\\nchopper\\nchoppers\\nchoppier\\nchoppiest\\nchoppily\\nchoppiness\\nchoppinesses\\nchopping\\nchoppy\\nchops\\nchopsticks\\nchoragi\\nchoragic\\nchoragus\\nchoraguses\\nchoral\\nchorale\\nchorales\\nchorally\\nchorals\\nchord\\nchordal\\nchordate\\nchordates\\nchorded\\nchording\\nchords\\nchore\\nchorea\\nchoreal\\nchoreas\\nchored\\nchoregi\\nchoregus\\nchoreguses\\nchoreic\\nchoreman\\nchoremen\\nchoreograph\\nchoreographed\\nchoreographer\\nchoreographers\\nchoreographic\\nchoreographies\\nchoreographing\\nchoreographs\\nchoreography\\nchoreoid\\nchores\\nchorial\\nchoriamb\\nchoriambs\\nchoric\\nchorine\\nchorines\\nchoring\\nchorioid\\nchorioids\\nchorion\\nchorions\\nchorister\\nchoristers\\nchorizo\\nchorizos\\nchoroid\\nchoroids\\nchortle\\nchortled\\nchortler\\nchortlers\\nchortles\\nchortling\\nchorus\\nchorused\\nchoruses\\nchorusing\\nchorussed\\nchorusses\\nchorussing\\nchose\\nchosen\\nchoses\\nchott\\nchotts\\nchough\\nchoughs\\nchouse\\nchoused\\nchouser\\nchousers\\nchouses\\nchoush\\nchoushes\\nchousing\\nchow\\nchowchow\\nchowchows\\nchowder\\nchowdered\\nchowdering\\nchowders\\nchowed\\nchowing\\nchows\\nchowse\\nchowsed\\nchowses\\nchowsing\\nchowtime\\nchowtimes\\nchresard\\nchresards\\nchrism\\nchrisma\\nchrismal\\nchrismon\\nchrismons\\nchrisms\\nchrisom\\nchrisoms\\nchristen\\nchristened\\nchristening\\nchristenings\\nchristens\\nchristie\\nchristies\\nchristy\\nchroma\\nchromas\\nchromate\\nchromates\\nchromatic\\nchrome\\nchromed\\nchromes\\nchromic\\nchromide\\nchromides\\nchroming\\nchromite\\nchromites\\nchromium\\nchromiums\\nchromize\\nchromized\\nchromizes\\nchromizing\\nchromo\\nchromos\\nchromosomal\\nchromosome\\nchromosomes\\nchromous\\nchromyl\\nchronaxies\\nchronaxy\\nchronic\\nchronicle\\nchronicled\\nchronicler\\nchroniclers\\nchronicles\\nchronicling\\nchronics\\nchronologic\\nchronological\\nchronologically\\nchronologies\\nchronology\\nchronometer\\nchronometers\\nchronon\\nchronons\\nchrysalides\\nchrysalis\\nchrysalises\\nchrysanthemum\\nchrysanthemums\\nchthonic\\nchub\\nchubasco\\nchubascos\\nchubbier\\nchubbiest\\nchubbily\\nchubbiness\\nchubbinesses\\nchubby\\nchubs\\nchuck\\nchucked\\nchuckies\\nchucking\\nchuckle\\nchuckled\\nchuckler\\nchucklers\\nchuckles\\nchuckling\\nchucks\\nchucky\\nchuddah\\nchuddahs\\nchuddar\\nchuddars\\nchudder\\nchudders\\nchufa\\nchufas\\nchuff\\nchuffed\\nchuffer\\nchuffest\\nchuffier\\nchuffiest\\nchuffing\\nchuffs\\nchuffy\\nchug\\nchugged\\nchugger\\nchuggers\\nchugging\\nchugs\\nchukar\\nchukars\\nchukka\\nchukkar\\nchukkars\\nchukkas\\nchukker\\nchukkers\\nchum\\nchummed\\nchummier\\nchummiest\\nchummily\\nchumming\\nchummy\\nchump\\nchumped\\nchumping\\nchumps\\nchums\\nchumship\\nchumships\\nchunk\\nchunked\\nchunkier\\nchunkiest\\nchunkily\\nchunking\\nchunks\\nchunky\\nchunter\\nchuntered\\nchuntering\\nchunters\\nchurch\\nchurched\\nchurches\\nchurchgoer\\nchurchgoers\\nchurchgoing\\nchurchgoings\\nchurchier\\nchurchiest\\nchurching\\nchurchlier\\nchurchliest\\nchurchly\\nchurchy\\nchurchyard\\nchurchyards\\nchurl\\nchurlish\\nchurls\\nchurn\\nchurned\\nchurner\\nchurners\\nchurning\\nchurnings\\nchurns\\nchurr\\nchurred\\nchurring\\nchurrs\\nchute\\nchuted\\nchutes\\nchuting\\nchutist\\nchutists\\nchutnee\\nchutnees\\nchutney\\nchutneys\\nchutzpa\\nchutzpah\\nchutzpahs\\nchutzpas\\nchyle\\nchyles\\nchylous\\nchyme\\nchymes\\nchymic\\nchymics\\nchymist\\nchymists\\nchymosin\\nchymosins\\nchymous\\nciao\\ncibol\\ncibols\\nciboria\\nciborium\\nciboule\\nciboules\\ncicada\\ncicadae\\ncicadas\\ncicala\\ncicalas\\ncicale\\ncicatrices\\ncicatrix\\ncicelies\\ncicely\\ncicero\\ncicerone\\ncicerones\\nciceroni\\nciceros\\ncichlid\\ncichlidae\\ncichlids\\ncicisbei\\ncicisbeo\\ncicoree\\ncicorees\\ncider\\nciders\\ncigar\\ncigaret\\ncigarets\\ncigarette\\ncigarettes\\ncigars\\ncilantro\\ncilantros\\ncilia\\nciliary\\nciliate\\nciliated\\nciliates\\ncilice\\ncilices\\ncilium\\ncimex\\ncimices\\ncinch\\ncinched\\ncinches\\ncinching\\ncinchona\\ncinchonas\\ncincture\\ncinctured\\ncinctures\\ncincturing\\ncinder\\ncindered\\ncindering\\ncinders\\ncindery\\ncine\\ncineast\\ncineaste\\ncineastes\\ncineasts\\ncinema\\ncinemas\\ncinematic\\ncineol\\ncineole\\ncineoles\\ncineols\\ncinerary\\ncinerin\\ncinerins\\ncines\\ncingula\\ncingulum\\ncinnabar\\ncinnabars\\ncinnamic\\ncinnamon\\ncinnamons\\ncinnamyl\\ncinnamyls\\ncinquain\\ncinquains\\ncinque\\ncinques\\ncion\\ncions\\ncipher\\nciphered\\nciphering\\nciphers\\nciphonies\\nciphony\\ncipolin\\ncipolins\\ncirca\\ncircle\\ncircled\\ncircler\\ncirclers\\ncircles\\ncirclet\\ncirclets\\ncircling\\ncircuit\\ncircuited\\ncircuities\\ncircuiting\\ncircuitous\\ncircuitries\\ncircuitry\\ncircuits\\ncircuity\\ncircular\\ncircularities\\ncircularity\\ncircularly\\ncirculars\\ncirculate\\ncirculated\\ncirculates\\ncirculating\\ncirculation\\ncirculations\\ncirculatory\\ncircumcise\\ncircumcised\\ncircumcises\\ncircumcising\\ncircumcision\\ncircumcisions\\ncircumference\\ncircumferences\\ncircumflex\\ncircumflexes\\ncircumlocution\\ncircumlocutions\\ncircumnavigate\\ncircumnavigated\\ncircumnavigates\\ncircumnavigating\\ncircumnavigation\\ncircumnavigations\\ncircumscribe\\ncircumscribed\\ncircumscribes\\ncircumscribing\\ncircumspect\\ncircumspection\\ncircumspections\\ncircumstance\\ncircumstances\\ncircumstantial\\ncircumvent\\ncircumvented\\ncircumventing\\ncircumvents\\ncircus\\ncircuses\\ncircusy\\ncirque\\ncirques\\ncirrate\\ncirrhoses\\ncirrhosis\\ncirrhotic\\ncirri\\ncirriped\\ncirripeds\\ncirrose\\ncirrous\\ncirrus\\ncirsoid\\ncisco\\nciscoes\\nciscos\\ncislunar\\ncissoid\\ncissoids\\ncist\\ncistern\\ncisterna\\ncisternae\\ncisterns\\ncistron\\ncistrons\\ncists\\ncitable\\ncitadel\\ncitadels\\ncitation\\ncitations\\ncitatory\\ncite\\nciteable\\ncited\\nciter\\nciters\\ncites\\ncithara\\ncitharas\\ncither\\ncithern\\ncitherns\\ncithers\\ncithren\\ncithrens\\ncitied\\ncities\\ncitified\\ncitifies\\ncitify\\ncitifying\\nciting\\ncitizen\\ncitizenries\\ncitizenry\\ncitizens\\ncitizenship\\ncitizenships\\ncitola\\ncitolas\\ncitole\\ncitoles\\ncitral\\ncitrals\\ncitrate\\ncitrated\\ncitrates\\ncitreous\\ncitric\\ncitrin\\ncitrine\\ncitrines\\ncitrins\\ncitron\\ncitrons\\ncitrous\\ncitrus\\ncitruses\\ncittern\\ncitterns\\ncity\\ncityfied\\ncityward\\ncivet\\ncivets\\ncivic\\ncivicism\\ncivicisms\\ncivics\\ncivie\\ncivies\\ncivil\\ncivilian\\ncivilians\\ncivilise\\ncivilised\\ncivilises\\ncivilising\\ncivilities\\ncivility\\ncivilization\\ncivilizations\\ncivilize\\ncivilized\\ncivilizes\\ncivilizing\\ncivilly\\ncivism\\ncivisms\\ncivvies\\ncivvy\\nclabber\\nclabbered\\nclabbering\\nclabbers\\nclach\\nclachan\\nclachans\\nclachs\\nclack\\nclacked\\nclacker\\nclackers\\nclacking\\nclacks\\nclad\\ncladding\\ncladdings\\ncladode\\ncladodes\\nclads\\nclag\\nclagged\\nclagging\\nclags\\nclaim\\nclaimant\\nclaimants\\nclaimed\\nclaimer\\nclaimers\\nclaiming\\nclaims\\nclairvoyance\\nclairvoyances\\nclairvoyant\\nclairvoyants\\nclam\\nclamant\\nclambake\\nclambakes\\nclamber\\nclambered\\nclambering\\nclambers\\nclammed\\nclammier\\nclammiest\\nclammily\\nclamminess\\nclamminesses\\nclamming\\nclammy\\nclamor\\nclamored\\nclamorer\\nclamorers\\nclamoring\\nclamorous\\nclamors\\nclamour\\nclamoured\\nclamouring\\nclamours\\nclamp\\nclamped\\nclamper\\nclampers\\nclamping\\nclamps\\nclams\\nclamworm\\nclamworms\\nclan\\nclandestine\\nclang\\nclanged\\nclanging\\nclangor\\nclangored\\nclangoring\\nclangors\\nclangour\\nclangoured\\nclangouring\\nclangours\\nclangs\\nclank\\nclanked\\nclanking\\nclanks\\nclannish\\nclannishness\\nclannishnesses\\nclans\\nclansman\\nclansmen\\nclap\\nclapboard\\nclapboards\\nclapped\\nclapper\\nclappers\\nclapping\\nclaps\\nclapt\\nclaptrap\\nclaptraps\\nclaque\\nclaquer\\nclaquers\\nclaques\\nclaqueur\\nclaqueurs\\nclarence\\nclarences\\nclaret\\nclarets\\nclaries\\nclarification\\nclarifications\\nclarified\\nclarifies\\nclarify\\nclarifying\\nclarinet\\nclarinetist\\nclarinetists\\nclarinets\\nclarinettist\\nclarinettists\\nclarion\\nclarioned\\nclarioning\\nclarions\\nclarities\\nclarity\\nclarkia\\nclarkias\\nclaro\\nclaroes\\nclaros\\nclary\\nclash\\nclashed\\nclasher\\nclashers\\nclashes\\nclashing\\nclasp\\nclasped\\nclasper\\nclaspers\\nclasping\\nclasps\\nclaspt\\nclass\\nclassed\\nclasser\\nclassers\\nclasses\\nclassic\\nclassical\\nclassically\\nclassicism\\nclassicisms\\nclassicist\\nclassicists\\nclassics\\nclassier\\nclassiest\\nclassification\\nclassifications\\nclassified\\nclassifies\\nclassify\\nclassifying\\nclassily\\nclassing\\nclassis\\nclassless\\nclassmate\\nclassmates\\nclassroom\\nclassrooms\\nclassy\\nclast\\nclastic\\nclastics\\nclasts\\nclatter\\nclattered\\nclattering\\nclatters\\nclattery\\nclaucht\\nclaught\\nclaughted\\nclaughting\\nclaughts\\nclausal\\nclause\\nclauses\\nclaustrophobia\\nclaustrophobias\\nclavate\\nclave\\nclaver\\nclavered\\nclavering\\nclavers\\nclavichord\\nclavichords\\nclavicle\\nclavicles\\nclavier\\nclaviers\\nclaw\\nclawed\\nclawer\\nclawers\\nclawing\\nclawless\\nclaws\\nclaxon\\nclaxons\\nclay\\nclaybank\\nclaybanks\\nclayed\\nclayey\\nclayier\\nclayiest\\nclaying\\nclayish\\nclaylike\\nclaymore\\nclaymores\\nclaypan\\nclaypans\\nclays\\nclayware\\nclaywares\\nclean\\ncleaned\\ncleaner\\ncleaners\\ncleanest\\ncleaning\\ncleanlier\\ncleanliest\\ncleanliness\\ncleanlinesses\\ncleanly\\ncleanness\\ncleannesses\\ncleans\\ncleanse\\ncleansed\\ncleanser\\ncleansers\\ncleanses\\ncleansing\\ncleanup\\ncleanups\\nclear\\nclearance\\nclearances\\ncleared\\nclearer\\nclearers\\nclearest\\nclearing\\nclearings\\nclearly\\nclearness\\nclearnesses\\nclears\\ncleat\\ncleated\\ncleating\\ncleats\\ncleavage\\ncleavages\\ncleave\\ncleaved\\ncleaver\\ncleavers\\ncleaves\\ncleaving\\ncleek\\ncleeked\\ncleeking\\ncleeks\\nclef\\nclefs\\ncleft\\nclefts\\nclematis\\nclematises\\nclemencies\\nclemency\\nclement\\nclench\\nclenched\\nclenches\\nclenching\\ncleome\\ncleomes\\nclepe\\ncleped\\nclepes\\ncleping\\nclept\\nclergies\\nclergy\\nclergyman\\nclergymen\\ncleric\\nclerical\\nclericals\\nclerics\\nclerid\\nclerids\\nclerihew\\nclerihews\\nclerisies\\nclerisy\\nclerk\\nclerkdom\\nclerkdoms\\nclerked\\nclerking\\nclerkish\\nclerklier\\nclerkliest\\nclerkly\\nclerks\\nclerkship\\nclerkships\\ncleveite\\ncleveites\\nclever\\ncleverer\\ncleverest\\ncleverly\\ncleverness\\nclevernesses\\nclevis\\nclevises\\nclew\\nclewed\\nclewing\\nclews\\ncliche\\ncliched\\ncliches\\nclick\\nclicked\\nclicker\\nclickers\\nclicking\\nclicks\\nclient\\ncliental\\nclients\\ncliff\\ncliffier\\ncliffiest\\ncliffs\\ncliffy\\nclift\\nclifts\\nclimactic\\nclimatal\\nclimate\\nclimates\\nclimatic\\nclimax\\nclimaxed\\nclimaxes\\nclimaxing\\nclimb\\nclimbed\\nclimber\\nclimbers\\nclimbing\\nclimbs\\nclime\\nclimes\\nclinal\\nclinally\\nclinch\\nclinched\\nclincher\\nclinchers\\nclinches\\nclinching\\ncline\\nclines\\ncling\\nclinged\\nclinger\\nclingers\\nclingier\\nclingiest\\nclinging\\nclings\\nclingy\\nclinic\\nclinical\\nclinically\\nclinician\\nclinicians\\nclinics\\nclink\\nclinked\\nclinker\\nclinkered\\nclinkering\\nclinkers\\nclinking\\nclinks\\nclip\\nclipboard\\nclipboards\\nclipped\\nclipper\\nclippers\\nclipping\\nclippings\\nclips\\nclipt\\nclique\\ncliqued\\ncliqueier\\ncliqueiest\\ncliques\\ncliquey\\ncliquier\\ncliquiest\\ncliquing\\ncliquish\\ncliquy\\nclitella\\nclitoral\\nclitoric\\nclitoris\\nclitorises\\nclivers\\ncloaca\\ncloacae\\ncloacal\\ncloak\\ncloaked\\ncloaking\\ncloaks\\nclobber\\nclobbered\\nclobbering\\nclobbers\\ncloche\\ncloches\\nclock\\nclocked\\nclocker\\nclockers\\nclocking\\nclocks\\nclockwise\\nclockwork\\nclod\\ncloddier\\ncloddiest\\ncloddish\\ncloddy\\nclodpate\\nclodpates\\nclodpole\\nclodpoles\\nclodpoll\\nclodpolls\\nclods\\nclog\\nclogged\\ncloggier\\ncloggiest\\nclogging\\ncloggy\\nclogs\\ncloister\\ncloistered\\ncloistering\\ncloisters\\nclomb\\nclomp\\nclomped\\nclomping\\nclomps\\nclon\\nclonal\\nclonally\\nclone\\ncloned\\nclones\\nclonic\\ncloning\\nclonism\\nclonisms\\nclonk\\nclonked\\nclonking\\nclonks\\nclons\\nclonus\\nclonuses\\ncloot\\ncloots\\nclop\\nclopped\\nclopping\\nclops\\nclosable\\nclose\\nclosed\\nclosely\\ncloseness\\nclosenesses\\ncloseout\\ncloseouts\\ncloser\\nclosers\\ncloses\\nclosest\\ncloset\\ncloseted\\ncloseting\\nclosets\\nclosing\\nclosings\\nclosure\\nclosured\\nclosures\\nclosuring\\nclot\\ncloth\\nclothe\\nclothed\\nclothes\\nclothier\\nclothiers\\nclothing\\nclothings\\ncloths\\nclots\\nclotted\\nclotting\\nclotty\\ncloture\\nclotured\\nclotures\\ncloturing\\ncloud\\ncloudburst\\ncloudbursts\\nclouded\\ncloudier\\ncloudiest\\ncloudily\\ncloudiness\\ncloudinesses\\nclouding\\ncloudless\\ncloudlet\\ncloudlets\\nclouds\\ncloudy\\nclough\\ncloughs\\nclour\\ncloured\\nclouring\\nclours\\nclout\\nclouted\\nclouter\\nclouters\\nclouting\\nclouts\\nclove\\ncloven\\nclover\\nclovers\\ncloves\\nclowder\\nclowders\\nclown\\nclowned\\nclowneries\\nclownery\\nclowning\\nclownish\\nclownishly\\nclownishness\\nclownishnesses\\nclowns\\ncloy\\ncloyed\\ncloying\\ncloys\\ncloze\\nclub\\nclubable\\nclubbed\\nclubber\\nclubbers\\nclubbier\\nclubbiest\\nclubbing\\nclubby\\nclubfeet\\nclubfoot\\nclubfooted\\nclubhand\\nclubhands\\nclubhaul\\nclubhauled\\nclubhauling\\nclubhauls\\nclubman\\nclubmen\\nclubroot\\nclubroots\\nclubs\\ncluck\\nclucked\\nclucking\\nclucks\\nclue\\nclued\\nclueing\\nclues\\ncluing\\nclumber\\nclumbers\\nclump\\nclumped\\nclumpier\\nclumpiest\\nclumping\\nclumpish\\nclumps\\nclumpy\\nclumsier\\nclumsiest\\nclumsily\\nclumsiness\\nclumsinesses\\nclumsy\\nclung\\nclunk\\nclunked\\nclunker\\nclunkers\\nclunking\\nclunks\\nclupeid\\nclupeids\\nclupeoid\\nclupeoids\\ncluster\\nclustered\\nclustering\\nclusters\\nclustery\\nclutch\\nclutched\\nclutches\\nclutching\\nclutchy\\nclutter\\ncluttered\\ncluttering\\nclutters\\nclypeal\\nclypeate\\nclypei\\nclypeus\\nclyster\\nclysters\\ncoach\\ncoached\\ncoacher\\ncoachers\\ncoaches\\ncoaching\\ncoachman\\ncoachmen\\ncoact\\ncoacted\\ncoacting\\ncoaction\\ncoactions\\ncoactive\\ncoacts\\ncoadmire\\ncoadmired\\ncoadmires\\ncoadmiring\\ncoadmit\\ncoadmits\\ncoadmitted\\ncoadmitting\\ncoaeval\\ncoaevals\\ncoagencies\\ncoagency\\ncoagent\\ncoagents\\ncoagula\\ncoagulant\\ncoagulants\\ncoagulate\\ncoagulated\\ncoagulates\\ncoagulating\\ncoagulation\\ncoagulations\\ncoagulum\\ncoagulums\\ncoal\\ncoala\\ncoalas\\ncoalbin\\ncoalbins\\ncoalbox\\ncoalboxes\\ncoaled\\ncoaler\\ncoalers\\ncoalesce\\ncoalesced\\ncoalescent\\ncoalesces\\ncoalescing\\ncoalfield\\ncoalfields\\ncoalfish\\ncoalfishes\\ncoalhole\\ncoalholes\\ncoalified\\ncoalifies\\ncoalify\\ncoalifying\\ncoaling\\ncoalition\\ncoalitions\\ncoalless\\ncoalpit\\ncoalpits\\ncoals\\ncoalsack\\ncoalsacks\\ncoalshed\\ncoalsheds\\ncoalyard\\ncoalyards\\ncoaming\\ncoamings\\ncoannex\\ncoannexed\\ncoannexes\\ncoannexing\\ncoappear\\ncoappeared\\ncoappearing\\ncoappears\\ncoapt\\ncoapted\\ncoapting\\ncoapts\\ncoarse\\ncoarsely\\ncoarsen\\ncoarsened\\ncoarseness\\ncoarsenesses\\ncoarsening\\ncoarsens\\ncoarser\\ncoarsest\\ncoassist\\ncoassisted\\ncoassisting\\ncoassists\\ncoassume\\ncoassumed\\ncoassumes\\ncoassuming\\ncoast\\ncoastal\\ncoasted\\ncoaster\\ncoasters\\ncoasting\\ncoastings\\ncoastline\\ncoastlines\\ncoasts\\ncoat\\ncoated\\ncoatee\\ncoatees\\ncoater\\ncoaters\\ncoati\\ncoating\\ncoatings\\ncoatis\\ncoatless\\ncoatrack\\ncoatracks\\ncoatroom\\ncoatrooms\\ncoats\\ncoattail\\ncoattails\\ncoattend\\ncoattended\\ncoattending\\ncoattends\\ncoattest\\ncoattested\\ncoattesting\\ncoattests\\ncoauthor\\ncoauthored\\ncoauthoring\\ncoauthors\\ncoauthorship\\ncoauthorships\\ncoax\\ncoaxal\\ncoaxed\\ncoaxer\\ncoaxers\\ncoaxes\\ncoaxial\\ncoaxing\\ncob\\ncobalt\\ncobaltic\\ncobalts\\ncobb\\ncobber\\ncobbers\\ncobbier\\ncobbiest\\ncobble\\ncobbled\\ncobbler\\ncobblers\\ncobbles\\ncobblestone\\ncobblestones\\ncobbling\\ncobbs\\ncobby\\ncobia\\ncobias\\ncoble\\ncobles\\ncobnut\\ncobnuts\\ncobra\\ncobras\\ncobs\\ncobweb\\ncobwebbed\\ncobwebbier\\ncobwebbiest\\ncobwebbing\\ncobwebby\\ncobwebs\\ncoca\\ncocain\\ncocaine\\ncocaines\\ncocains\\ncocaptain\\ncocaptains\\ncocas\\ncoccal\\ncocci\\ncoccic\\ncoccid\\ncoccidia\\ncoccids\\ncoccoid\\ncoccoids\\ncoccous\\ncoccus\\ncoccyges\\ncoccyx\\ncoccyxes\\ncochair\\ncochaired\\ncochairing\\ncochairman\\ncochairmen\\ncochairs\\ncochampion\\ncochampions\\ncochin\\ncochins\\ncochlea\\ncochleae\\ncochlear\\ncochleas\\ncocinera\\ncocineras\\ncock\\ncockade\\ncockaded\\ncockades\\ncockatoo\\ncockatoos\\ncockbill\\ncockbilled\\ncockbilling\\ncockbills\\ncockboat\\ncockboats\\ncockcrow\\ncockcrows\\ncocked\\ncocker\\ncockered\\ncockerel\\ncockerels\\ncockering\\ncockers\\ncockeye\\ncockeyed\\ncockeyes\\ncockfight\\ncockfights\\ncockier\\ncockiest\\ncockily\\ncockiness\\ncockinesses\\ncocking\\ncockish\\ncockle\\ncockled\\ncockles\\ncocklike\\ncockling\\ncockloft\\ncocklofts\\ncockney\\ncockneys\\ncockpit\\ncockpits\\ncockroach\\ncockroaches\\ncocks\\ncockshies\\ncockshut\\ncockshuts\\ncockshy\\ncockspur\\ncockspurs\\ncocksure\\ncocktail\\ncocktailed\\ncocktailing\\ncocktails\\ncockup\\ncockups\\ncocky\\ncoco\\ncocoa\\ncocoanut\\ncocoanuts\\ncocoas\\ncocobola\\ncocobolas\\ncocobolo\\ncocobolos\\ncocomat\\ncocomats\\ncocomposer\\ncocomposers\\ncoconspirator\\ncoconspirators\\ncoconut\\ncoconuts\\ncocoon\\ncocooned\\ncocooning\\ncocoons\\ncocos\\ncocotte\\ncocottes\\ncocreate\\ncocreated\\ncocreates\\ncocreating\\ncocreator\\ncocreators\\ncod\\ncoda\\ncodable\\ncodas\\ncodder\\ncodders\\ncoddle\\ncoddled\\ncoddler\\ncoddlers\\ncoddles\\ncoddling\\ncode\\ncodebtor\\ncodebtors\\ncoded\\ncodefendant\\ncodefendants\\ncodeia\\ncodeias\\ncodein\\ncodeina\\ncodeinas\\ncodeine\\ncodeines\\ncodeins\\ncodeless\\ncoden\\ncodens\\ncoder\\ncoderive\\ncoderived\\ncoderives\\ncoderiving\\ncoders\\ncodes\\ncodesigner\\ncodesigners\\ncodevelop\\ncodeveloped\\ncodeveloper\\ncodevelopers\\ncodeveloping\\ncodevelops\\ncodex\\ncodfish\\ncodfishes\\ncodger\\ncodgers\\ncodices\\ncodicil\\ncodicils\\ncodification\\ncodifications\\ncodified\\ncodifier\\ncodifiers\\ncodifies\\ncodify\\ncodifying\\ncoding\\ncodirector\\ncodirectors\\ncodiscoverer\\ncodiscoverers\\ncodlin\\ncodling\\ncodlings\\ncodlins\\ncodon\\ncodons\\ncodpiece\\ncodpieces\\ncods\\ncoed\\ncoeditor\\ncoeditors\\ncoeds\\ncoeducation\\ncoeducational\\ncoeducations\\ncoeffect\\ncoeffects\\ncoefficient\\ncoefficients\\ncoeliac\\ncoelom\\ncoelomata\\ncoelome\\ncoelomes\\ncoelomic\\ncoeloms\\ncoembodied\\ncoembodies\\ncoembody\\ncoembodying\\ncoemploy\\ncoemployed\\ncoemploying\\ncoemploys\\ncoempt\\ncoempted\\ncoempting\\ncoempts\\ncoenact\\ncoenacted\\ncoenacting\\ncoenacts\\ncoenamor\\ncoenamored\\ncoenamoring\\ncoenamors\\ncoendure\\ncoendured\\ncoendures\\ncoenduring\\ncoenure\\ncoenures\\ncoenuri\\ncoenurus\\ncoenzyme\\ncoenzymes\\ncoequal\\ncoequals\\ncoequate\\ncoequated\\ncoequates\\ncoequating\\ncoerce\\ncoerced\\ncoercer\\ncoercers\\ncoerces\\ncoercing\\ncoercion\\ncoercions\\ncoercive\\ncoerect\\ncoerected\\ncoerecting\\ncoerects\\ncoeval\\ncoevally\\ncoevals\\ncoexecutor\\ncoexecutors\\ncoexert\\ncoexerted\\ncoexerting\\ncoexerts\\ncoexist\\ncoexisted\\ncoexistence\\ncoexistences\\ncoexistent\\ncoexisting\\ncoexists\\ncoextend\\ncoextended\\ncoextending\\ncoextends\\ncofactor\\ncofactors\\ncofeature\\ncofeatures\\ncoff\\ncoffee\\ncoffeehouse\\ncoffeehouses\\ncoffeepot\\ncoffeepots\\ncoffees\\ncoffer\\ncoffered\\ncoffering\\ncoffers\\ncoffin\\ncoffined\\ncoffing\\ncoffining\\ncoffins\\ncoffle\\ncoffled\\ncoffles\\ncoffling\\ncoffret\\ncoffrets\\ncoffs\\ncofinance\\ncofinanced\\ncofinances\\ncofinancing\\ncofounder\\ncofounders\\ncoft\\ncog\\ncogencies\\ncogency\\ncogent\\ncogently\\ncogged\\ncogging\\ncogitate\\ncogitated\\ncogitates\\ncogitating\\ncogitation\\ncogitations\\ncogitative\\ncogito\\ncogitos\\ncognac\\ncognacs\\ncognate\\ncognates\\ncognise\\ncognised\\ncognises\\ncognising\\ncognition\\ncognitions\\ncognitive\\ncognizable\\ncognizance\\ncognizances\\ncognizant\\ncognize\\ncognized\\ncognizer\\ncognizers\\ncognizes\\ncognizing\\ncognomen\\ncognomens\\ncognomina\\ncognovit\\ncognovits\\ncogon\\ncogons\\ncogs\\ncogway\\ncogways\\ncogweel\\ncogweels\\ncohabit\\ncohabitation\\ncohabitations\\ncohabited\\ncohabiting\\ncohabits\\ncoheir\\ncoheiress\\ncoheiresses\\ncoheirs\\ncohere\\ncohered\\ncoherence\\ncoherences\\ncoherent\\ncoherently\\ncoherer\\ncoherers\\ncoheres\\ncohering\\ncohesion\\ncohesions\\ncohesive\\ncoho\\ncohobate\\ncohobated\\ncohobates\\ncohobating\\ncohog\\ncohogs\\ncohort\\ncohorts\\ncohos\\ncohosh\\ncohoshes\\ncohostess\\ncohostesses\\ncohune\\ncohunes\\ncoif\\ncoifed\\ncoiffe\\ncoiffed\\ncoiffes\\ncoiffeur\\ncoiffeurs\\ncoiffing\\ncoiffure\\ncoiffured\\ncoiffures\\ncoiffuring\\ncoifing\\ncoifs\\ncoign\\ncoigne\\ncoigned\\ncoignes\\ncoigning\\ncoigns\\ncoil\\ncoiled\\ncoiler\\ncoilers\\ncoiling\\ncoils\\ncoin\\ncoinable\\ncoinage\\ncoinages\\ncoincide\\ncoincided\\ncoincidence\\ncoincidences\\ncoincident\\ncoincidental\\ncoincides\\ncoinciding\\ncoined\\ncoiner\\ncoiners\\ncoinfer\\ncoinferred\\ncoinferring\\ncoinfers\\ncoinhere\\ncoinhered\\ncoinheres\\ncoinhering\\ncoining\\ncoinmate\\ncoinmates\\ncoins\\ncoinsure\\ncoinsured\\ncoinsures\\ncoinsuring\\ncointer\\ncointerred\\ncointerring\\ncointers\\ncoinventor\\ncoinventors\\ncoinvestigator\\ncoinvestigators\\ncoir\\ncoirs\\ncoistrel\\ncoistrels\\ncoistril\\ncoistrils\\ncoital\\ncoitally\\ncoition\\ncoitions\\ncoitus\\ncoituses\\ncoke\\ncoked\\ncokes\\ncoking\\ncol\\ncola\\ncolander\\ncolanders\\ncolas\\ncold\\ncolder\\ncoldest\\ncoldish\\ncoldly\\ncoldness\\ncoldnesses\\ncolds\\ncole\\ncoles\\ncoleseed\\ncoleseeds\\ncoleslaw\\ncoleslaws\\ncolessee\\ncolessees\\ncolessor\\ncolessors\\ncoleus\\ncoleuses\\ncolewort\\ncoleworts\\ncolic\\ncolicin\\ncolicine\\ncolicines\\ncolicins\\ncolicky\\ncolics\\ncolies\\ncoliform\\ncoliforms\\ncolin\\ncolinear\\ncolins\\ncoliseum\\ncoliseums\\ncolistin\\ncolistins\\ncolitic\\ncolitis\\ncolitises\\ncollaborate\\ncollaborated\\ncollaborates\\ncollaborating\\ncollaboration\\ncollaborations\\ncollaborative\\ncollaborator\\ncollaborators\\ncollage\\ncollagen\\ncollagens\\ncollages\\ncollapse\\ncollapsed\\ncollapses\\ncollapsible\\ncollapsing\\ncollar\\ncollarbone\\ncollarbones\\ncollard\\ncollards\\ncollared\\ncollaret\\ncollarets\\ncollaring\\ncollarless\\ncollars\\ncollate\\ncollated\\ncollateral\\ncollaterals\\ncollates\\ncollating\\ncollator\\ncollators\\ncolleague\\ncolleagues\\ncollect\\ncollectable\\ncollected\\ncollectible\\ncollecting\\ncollection\\ncollections\\ncollectivism\\ncollector\\ncollectors\\ncollects\\ncolleen\\ncolleens\\ncollege\\ncolleger\\ncollegers\\ncolleges\\ncollegia\\ncollegian\\ncollegians\\ncollegiate\\ncollet\\ncolleted\\ncolleting\\ncollets\\ncollide\\ncollided\\ncollides\\ncolliding\\ncollie\\ncollied\\ncollier\\ncollieries\\ncolliers\\ncolliery\\ncollies\\ncollins\\ncollinses\\ncollision\\ncollisions\\ncollogue\\ncollogued\\ncollogues\\ncolloguing\\ncolloid\\ncolloidal\\ncolloids\\ncollop\\ncollops\\ncolloquial\\ncolloquialism\\ncolloquialisms\\ncolloquies\\ncolloquy\\ncollude\\ncolluded\\ncolluder\\ncolluders\\ncolludes\\ncolluding\\ncollusion\\ncollusions\\ncolluvia\\ncolly\\ncollying\\ncollyria\\ncolocate\\ncolocated\\ncolocates\\ncolocating\\ncolog\\ncologne\\ncologned\\ncolognes\\ncologs\\ncolon\\ncolonel\\ncolonels\\ncolones\\ncoloni\\ncolonial\\ncolonials\\ncolonic\\ncolonies\\ncolonise\\ncolonised\\ncolonises\\ncolonising\\ncolonist\\ncolonists\\ncolonize\\ncolonized\\ncolonizes\\ncolonizing\\ncolonnade\\ncolonnades\\ncolons\\ncolonus\\ncolony\\ncolophon\\ncolophons\\ncolor\\ncolorado\\ncolorant\\ncolorants\\ncolored\\ncoloreds\\ncolorer\\ncolorers\\ncolorfast\\ncolorful\\ncoloring\\ncolorings\\ncolorism\\ncolorisms\\ncolorist\\ncolorists\\ncolorless\\ncolors\\ncolossal\\ncolossi\\ncolossus\\ncolossuses\\ncolotomies\\ncolotomy\\ncolour\\ncoloured\\ncolourer\\ncolourers\\ncolouring\\ncolours\\ncolpitis\\ncolpitises\\ncols\\ncolt\\ncolter\\ncolters\\ncoltish\\ncolts\\ncolubrid\\ncolubrids\\ncolugo\\ncolugos\\ncolumbic\\ncolumel\\ncolumels\\ncolumn\\ncolumnal\\ncolumnar\\ncolumned\\ncolumnist\\ncolumnists\\ncolumns\\ncolure\\ncolures\\ncoly\\ncolza\\ncolzas\\ncoma\\ncomae\\ncomaker\\ncomakers\\ncomal\\ncomanagement\\ncomanagements\\ncomanager\\ncomanagers\\ncomas\\ncomate\\ncomates\\ncomatic\\ncomatik\\ncomatiks\\ncomatose\\ncomatula\\ncomatulae\\ncomb\\ncombat\\ncombatant\\ncombatants\\ncombated\\ncombater\\ncombaters\\ncombating\\ncombative\\ncombats\\ncombatted\\ncombatting\\ncombe\\ncombed\\ncomber\\ncombers\\ncombes\\ncombination\\ncombinations\\ncombine\\ncombined\\ncombiner\\ncombiners\\ncombines\\ncombing\\ncombings\\ncombining\\ncomblike\\ncombo\\ncombos\\ncombs\\ncombust\\ncombusted\\ncombustibilities\\ncombustibility\\ncombustible\\ncombusting\\ncombustion\\ncombustions\\ncombustive\\ncombusts\\ncomby\\ncome\\ncomeback\\ncomebacks\\ncomedian\\ncomedians\\ncomedic\\ncomedienne\\ncomediennes\\ncomedies\\ncomedo\\ncomedones\\ncomedos\\ncomedown\\ncomedowns\\ncomedy\\ncomelier\\ncomeliest\\ncomelily\\ncomely\\ncomer\\ncomers\\ncomes\\ncomet\\ncometary\\ncometh\\ncomether\\ncomethers\\ncometic\\ncomets\\ncomfier\\ncomfiest\\ncomfit\\ncomfits\\ncomfort\\ncomfortable\\ncomfortably\\ncomforted\\ncomforter\\ncomforters\\ncomforting\\ncomfortless\\ncomforts\\ncomfrey\\ncomfreys\\ncomfy\\ncomic\\ncomical\\ncomics\\ncoming\\ncomings\\ncomitia\\ncomitial\\ncomities\\ncomity\\ncomma\\ncommand\\ncommandant\\ncommandants\\ncommanded\\ncommandeer\\ncommandeered\\ncommandeering\\ncommandeers\\ncommander\\ncommanders\\ncommanding\\ncommandment\\ncommandments\\ncommando\\ncommandoes\\ncommandos\\ncommands\\ncommas\\ncommata\\ncommemorate\\ncommemorated\\ncommemorates\\ncommemorating\\ncommemoration\\ncommemorations\\ncommemorative\\ncommence\\ncommenced\\ncommencement\\ncommencements\\ncommences\\ncommencing\\ncommend\\ncommendable\\ncommendation\\ncommendations\\ncommended\\ncommending\\ncommends\\ncomment\\ncommentaries\\ncommentary\\ncommentator\\ncommentators\\ncommented\\ncommenting\\ncomments\\ncommerce\\ncommerced\\ncommerces\\ncommercial\\ncommercialize\\ncommercialized\\ncommercializes\\ncommercializing\\ncommercially\\ncommercials\\ncommercing\\ncommie\\ncommies\\ncommiserate\\ncommiserated\\ncommiserates\\ncommiserating\\ncommiseration\\ncommiserations\\ncommissaries\\ncommissary\\ncommission\\ncommissioned\\ncommissioner\\ncommissioners\\ncommissioning\\ncommissions\\ncommit\\ncommitment\\ncommitments\\ncommits\\ncommittal\\ncommittals\\ncommitted\\ncommittee\\ncommittees\\ncommitting\\ncommix\\ncommixed\\ncommixes\\ncommixing\\ncommixt\\ncommode\\ncommodes\\ncommodious\\ncommodities\\ncommodity\\ncommodore\\ncommodores\\ncommon\\ncommoner\\ncommoners\\ncommonest\\ncommonly\\ncommonplace\\ncommonplaces\\ncommons\\ncommonweal\\ncommonweals\\ncommonwealth\\ncommonwealths\\ncommotion\\ncommotions\\ncommove\\ncommoved\\ncommoves\\ncommoving\\ncommunal\\ncommune\\ncommuned\\ncommunes\\ncommunicable\\ncommunicate\\ncommunicated\\ncommunicates\\ncommunicating\\ncommunication\\ncommunications\\ncommunicative\\ncommuning\\ncommunion\\ncommunions\\ncommunique\\ncommuniques\\ncommunism\\ncommunist\\ncommunistic\\ncommunists\\ncommunities\\ncommunity\\ncommutation\\ncommutations\\ncommute\\ncommuted\\ncommuter\\ncommuters\\ncommutes\\ncommuting\\ncommy\\ncomose\\ncomous\\ncomp\\ncompact\\ncompacted\\ncompacter\\ncompactest\\ncompacting\\ncompactly\\ncompactness\\ncompactnesses\\ncompacts\\ncompadre\\ncompadres\\ncompanied\\ncompanies\\ncompanion\\ncompanions\\ncompanionship\\ncompanionships\\ncompany\\ncompanying\\ncomparable\\ncomparative\\ncomparatively\\ncompare\\ncompared\\ncomparer\\ncomparers\\ncompares\\ncomparing\\ncomparison\\ncomparisons\\ncompart\\ncomparted\\ncomparting\\ncompartment\\ncompartments\\ncomparts\\ncompass\\ncompassed\\ncompasses\\ncompassing\\ncompassion\\ncompassionate\\ncompassions\\ncompatability\\ncompatable\\ncompatibilities\\ncompatibility\\ncompatible\\ncompatriot\\ncompatriots\\ncomped\\ncompeer\\ncompeered\\ncompeering\\ncompeers\\ncompel\\ncompelled\\ncompelling\\ncompels\\ncompend\\ncompendia\\ncompendium\\ncompends\\ncompensate\\ncompensated\\ncompensates\\ncompensating\\ncompensation\\ncompensations\\ncompensatory\\ncompere\\ncompered\\ncomperes\\ncompering\\ncompete\\ncompeted\\ncompetence\\ncompetences\\ncompetencies\\ncompetency\\ncompetent\\ncompetently\\ncompetes\\ncompeting\\ncompetition\\ncompetitions\\ncompetitive\\ncompetitor\\ncompetitors\\ncompilation\\ncompilations\\ncompile\\ncompiled\\ncompiler\\ncompilers\\ncompiles\\ncompiling\\ncomping\\ncomplacence\\ncomplacences\\ncomplacencies\\ncomplacency\\ncomplacent\\ncomplain\\ncomplainant\\ncomplainants\\ncomplained\\ncomplainer\\ncomplainers\\ncomplaining\\ncomplains\\ncomplaint\\ncomplaints\\ncompleat\\ncomplect\\ncomplected\\ncomplecting\\ncomplects\\ncomplement\\ncomplementary\\ncomplemented\\ncomplementing\\ncomplements\\ncomplete\\ncompleted\\ncompletely\\ncompleteness\\ncompletenesses\\ncompleter\\ncompletes\\ncompletest\\ncompleting\\ncompletion\\ncompletions\\ncomplex\\ncomplexed\\ncomplexer\\ncomplexes\\ncomplexest\\ncomplexing\\ncomplexion\\ncomplexioned\\ncomplexions\\ncomplexity\\ncompliance\\ncompliances\\ncompliant\\ncomplicate\\ncomplicated\\ncomplicates\\ncomplicating\\ncomplication\\ncomplications\\ncomplice\\ncomplices\\ncomplicities\\ncomplicity\\ncomplied\\ncomplier\\ncompliers\\ncomplies\\ncompliment\\ncomplimentary\\ncompliments\\ncomplin\\ncompline\\ncomplines\\ncomplins\\ncomplot\\ncomplots\\ncomplotted\\ncomplotting\\ncomply\\ncomplying\\ncompo\\ncompone\\ncomponent\\ncomponents\\ncompony\\ncomport\\ncomported\\ncomporting\\ncomportment\\ncomportments\\ncomports\\ncompos\\ncompose\\ncomposed\\ncomposer\\ncomposers\\ncomposes\\ncomposing\\ncomposite\\ncomposites\\ncomposition\\ncompositions\\ncompost\\ncomposted\\ncomposting\\ncomposts\\ncomposure\\ncompote\\ncompotes\\ncompound\\ncompounded\\ncompounding\\ncompounds\\ncomprehend\\ncomprehended\\ncomprehending\\ncomprehends\\ncomprehensible\\ncomprehension\\ncomprehensions\\ncomprehensive\\ncomprehensiveness\\ncomprehensivenesses\\ncompress\\ncompressed\\ncompresses\\ncompressing\\ncompression\\ncompressions\\ncompressor\\ncompressors\\ncomprise\\ncomprised\\ncomprises\\ncomprising\\ncomprize\\ncomprized\\ncomprizes\\ncomprizing\\ncompromise\\ncompromised\\ncompromises\\ncompromising\\ncomps\\ncompt\\ncompted\\ncompting\\ncomptroller\\ncomptrollers\\ncompts\\ncompulsion\\ncompulsions\\ncompulsive\\ncompulsory\\ncompunction\\ncompunctions\\ncomputation\\ncomputations\\ncompute\\ncomputed\\ncomputer\\ncomputerize\\ncomputerized\\ncomputerizes\\ncomputerizing\\ncomputers\\ncomputes\\ncomputing\\ncomrade\\ncomrades\\ncomradeship\\ncomradeships\\ncomte\\ncomtemplate\\ncomtemplated\\ncomtemplates\\ncomtemplating\\ncomtes\\ncon\\nconation\\nconations\\nconative\\nconatus\\nconcannon\\nconcatenate\\nconcatenated\\nconcatenates\\nconcatenating\\nconcave\\nconcaved\\nconcaves\\nconcaving\\nconcavities\\nconcavity\\nconceal\\nconcealed\\nconcealing\\nconcealment\\nconcealments\\nconceals\\nconcede\\nconceded\\nconceder\\nconceders\\nconcedes\\nconceding\\nconceit\\nconceited\\nconceiting\\nconceits\\nconceivable\\nconceivably\\nconceive\\nconceived\\nconceives\\nconceiving\\nconcent\\nconcentrate\\nconcentrated\\nconcentrates\\nconcentrating\\nconcentration\\nconcentrations\\nconcentric\\nconcents\\nconcept\\nconception\\nconceptions\\nconcepts\\nconceptual\\nconceptualize\\nconceptualized\\nconceptualizes\\nconceptualizing\\nconceptually\\nconcern\\nconcerned\\nconcerning\\nconcerns\\nconcert\\nconcerted\\nconcerti\\nconcertina\\nconcerting\\nconcerto\\nconcertos\\nconcerts\\nconcession\\nconcessions\\nconch\\nconcha\\nconchae\\nconchal\\nconches\\nconchies\\nconchoid\\nconchoids\\nconchs\\nconchy\\nconciliate\\nconciliated\\nconciliates\\nconciliating\\nconciliation\\nconciliations\\nconciliatory\\nconcise\\nconcisely\\nconciseness\\nconcisenesses\\nconciser\\nconcisest\\nconclave\\nconclaves\\nconclude\\nconcluded\\nconcludes\\nconcluding\\nconclusion\\nconclusions\\nconclusive\\nconclusively\\nconcoct\\nconcocted\\nconcocting\\nconcoction\\nconcoctions\\nconcocts\\nconcomitant\\nconcomitantly\\nconcomitants\\nconcord\\nconcordance\\nconcordances\\nconcordant\\nconcords\\nconcrete\\nconcreted\\nconcretes\\nconcreting\\nconcretion\\nconcretions\\nconcubine\\nconcubines\\nconcur\\nconcurred\\nconcurrence\\nconcurrences\\nconcurrent\\nconcurrently\\nconcurring\\nconcurs\\nconcuss\\nconcussed\\nconcusses\\nconcussing\\nconcussion\\nconcussions\\ncondemn\\ncondemnation\\ncondemnations\\ncondemned\\ncondemning\\ncondemns\\ncondensation\\ncondensations\\ncondense\\ncondensed\\ncondenses\\ncondensing\\ncondescend\\ncondescended\\ncondescending\\ncondescends\\ncondescension\\ncondescensions\\ncondign\\ncondiment\\ncondiments\\ncondition\\nconditional\\nconditionally\\nconditioned\\nconditioner\\nconditioners\\nconditioning\\nconditions\\ncondole\\ncondoled\\ncondolence\\ncondolences\\ncondoler\\ncondolers\\ncondoles\\ncondoling\\ncondom\\ncondominium\\ncondominiums\\ncondoms\\ncondone\\ncondoned\\ncondoner\\ncondoners\\ncondones\\ncondoning\\ncondor\\ncondores\\ncondors\\nconduce\\nconduced\\nconducer\\nconducers\\nconduces\\nconducing\\nconduct\\nconducted\\nconducting\\nconduction\\nconductions\\nconductive\\nconductor\\nconductors\\nconducts\\nconduit\\nconduits\\ncondylar\\ncondyle\\ncondyles\\ncone\\nconed\\nconelrad\\nconelrads\\nconenose\\nconenoses\\nconepate\\nconepates\\nconepatl\\nconepatls\\ncones\\nconey\\nconeys\\nconfab\\nconfabbed\\nconfabbing\\nconfabs\\nconfect\\nconfected\\nconfecting\\nconfects\\nconfederacies\\nconfederacy\\nconfer\\nconferee\\nconferees\\nconference\\nconferences\\nconferred\\nconferring\\nconfers\\nconferva\\nconfervae\\nconfervas\\nconfess\\nconfessed\\nconfesses\\nconfessing\\nconfession\\nconfessional\\nconfessionals\\nconfessions\\nconfessor\\nconfessors\\nconfetti\\nconfetto\\nconfidant\\nconfidants\\nconfide\\nconfided\\nconfidence\\nconfidences\\nconfident\\nconfidential\\nconfidentiality\\nconfider\\nconfiders\\nconfides\\nconfiding\\nconfiguration\\nconfigurations\\nconfigure\\nconfigured\\nconfigures\\nconfiguring\\nconfine\\nconfined\\nconfinement\\nconfinements\\nconfiner\\nconfiners\\nconfines\\nconfining\\nconfirm\\nconfirmation\\nconfirmations\\nconfirmed\\nconfirming\\nconfirms\\nconfiscate\\nconfiscated\\nconfiscates\\nconfiscating\\nconfiscation\\nconfiscations\\nconflagration\\nconflagrations\\nconflate\\nconflated\\nconflates\\nconflating\\nconflict\\nconflicted\\nconflicting\\nconflicts\\nconflux\\nconfluxes\\nconfocal\\nconform\\nconformed\\nconforming\\nconformities\\nconformity\\nconforms\\nconfound\\nconfounded\\nconfounding\\nconfounds\\nconfrere\\nconfreres\\nconfront\\nconfrontation\\nconfrontations\\nconfronted\\nconfronting\\nconfronts\\nconfuse\\nconfused\\nconfuses\\nconfusing\\nconfusion\\nconfusions\\nconfute\\nconfuted\\nconfuter\\nconfuters\\nconfutes\\nconfuting\\nconga\\ncongaed\\ncongaing\\ncongas\\nconge\\ncongeal\\ncongealed\\ncongealing\\ncongeals\\ncongee\\ncongeed\\ncongeeing\\ncongees\\ncongener\\ncongeners\\ncongenial\\ncongenialities\\ncongeniality\\ncongenital\\nconger\\ncongers\\nconges\\ncongest\\ncongested\\ncongesting\\ncongestion\\ncongestions\\ncongestive\\ncongests\\ncongii\\ncongius\\nconglobe\\nconglobed\\nconglobes\\nconglobing\\nconglomerate\\nconglomerated\\nconglomerates\\nconglomerating\\nconglomeration\\nconglomerations\\ncongo\\ncongoes\\ncongos\\ncongou\\ncongous\\ncongratulate\\ncongratulated\\ncongratulates\\ncongratulating\\ncongratulation\\ncongratulations\\ncongratulatory\\ncongregate\\ncongregated\\ncongregates\\ncongregating\\ncongregation\\ncongregational\\ncongregations\\ncongresional\\ncongress\\ncongressed\\ncongresses\\ncongressing\\ncongressman\\ncongressmen\\ncongresswoman\\ncongresswomen\\ncongruence\\ncongruences\\ncongruent\\ncongruities\\ncongruity\\ncongruous\\nconi\\nconic\\nconical\\nconicities\\nconicity\\nconics\\nconidia\\nconidial\\nconidian\\nconidium\\nconies\\nconifer\\nconiferous\\nconifers\\nconiine\\nconiines\\nconin\\nconine\\nconines\\nconing\\nconins\\nconium\\nconiums\\nconjectural\\nconjecture\\nconjectured\\nconjectures\\nconjecturing\\nconjoin\\nconjoined\\nconjoining\\nconjoins\\nconjoint\\nconjugal\\nconjugate\\nconjugated\\nconjugates\\nconjugating\\nconjugation\\nconjugations\\nconjunct\\nconjunction\\nconjunctions\\nconjunctive\\nconjunctivitis\\nconjuncts\\nconjure\\nconjured\\nconjurer\\nconjurers\\nconjures\\nconjuring\\nconjuror\\nconjurors\\nconk\\nconked\\nconker\\nconkers\\nconking\\nconks\\nconky\\nconn\\nconnate\\nconnect\\nconnected\\nconnecting\\nconnection\\nconnections\\nconnective\\nconnector\\nconnectors\\nconnects\\nconned\\nconner\\nconners\\nconning\\nconnivance\\nconnivances\\nconnive\\nconnived\\nconniver\\nconnivers\\nconnives\\nconniving\\nconnoisseur\\nconnoisseurs\\nconnotation\\nconnotations\\nconnote\\nconnoted\\nconnotes\\nconnoting\\nconns\\nconnubial\\nconodont\\nconodonts\\nconoid\\nconoidal\\nconoids\\nconquer\\nconquered\\nconquering\\nconqueror\\nconquerors\\nconquers\\nconquest\\nconquests\\nconquian\\nconquians\\ncons\\nconscience\\nconsciences\\nconscientious\\nconscientiously\\nconscious\\nconsciously\\nconsciousness\\nconsciousnesses\\nconscript\\nconscripted\\nconscripting\\nconscription\\nconscriptions\\nconscripts\\nconsecrate\\nconsecrated\\nconsecrates\\nconsecrating\\nconsecration\\nconsecrations\\nconsecutive\\nconsecutively\\nconsensus\\nconsensuses\\nconsent\\nconsented\\nconsenting\\nconsents\\nconsequence\\nconsequences\\nconsequent\\nconsequential\\nconsequently\\nconsequents\\nconservation\\nconservationist\\nconservationists\\nconservations\\nconservatism\\nconservatisms\\nconservative\\nconservatives\\nconservatories\\nconservatory\\nconserve\\nconserved\\nconserves\\nconserving\\nconsider\\nconsiderable\\nconsiderably\\nconsiderate\\nconsiderately\\nconsiderateness\\nconsideratenesses\\nconsideration\\nconsiderations\\nconsidered\\nconsidering\\nconsiders\\nconsign\\nconsigned\\nconsignee\\nconsignees\\nconsigning\\nconsignment\\nconsignments\\nconsignor\\nconsignors\\nconsigns\\nconsist\\nconsisted\\nconsistencies\\nconsistency\\nconsistent\\nconsistently\\nconsisting\\nconsists\\nconsol\\nconsolation\\nconsole\\nconsoled\\nconsoler\\nconsolers\\nconsoles\\nconsolidate\\nconsolidated\\nconsolidates\\nconsolidating\\nconsolidation\\nconsolidations\\nconsoling\\nconsols\\nconsomme\\nconsommes\\nconsonance\\nconsonances\\nconsonant\\nconsonantal\\nconsonants\\nconsort\\nconsorted\\nconsorting\\nconsortium\\nconsortiums\\nconsorts\\nconspicuous\\nconspicuously\\nconspiracies\\nconspiracy\\nconspirator\\nconspirators\\nconspire\\nconspired\\nconspires\\nconspiring\\nconstable\\nconstables\\nconstabularies\\nconstabulary\\nconstancies\\nconstancy\\nconstant\\nconstantly\\nconstants\\nconstellation\\nconstellations\\nconsternation\\nconsternations\\nconstipate\\nconstipated\\nconstipates\\nconstipating\\nconstipation\\nconstipations\\nconstituent\\nconstituents\\nconstitute\\nconstituted\\nconstitutes\\nconstituting\\nconstitution\\nconstitutional\\nconstitutionality\\nconstrain\\nconstrained\\nconstraining\\nconstrains\\nconstraint\\nconstraints\\nconstriction\\nconstrictions\\nconstrictive\\nconstruct\\nconstructed\\nconstructing\\nconstruction\\nconstructions\\nconstructive\\nconstructs\\nconstrue\\nconstrued\\nconstrues\\nconstruing\\nconsul\\nconsular\\nconsulate\\nconsulates\\nconsuls\\nconsult\\nconsultant\\nconsultants\\nconsultation\\nconsultations\\nconsulted\\nconsulting\\nconsults\\nconsumable\\nconsume\\nconsumed\\nconsumer\\nconsumers\\nconsumes\\nconsuming\\nconsummate\\nconsummated\\nconsummates\\nconsummating\\nconsummation\\nconsummations\\nconsumption\\nconsumptions\\nconsumptive\\ncontact\\ncontacted\\ncontacting\\ncontacts\\ncontagia\\ncontagion\\ncontagions\\ncontagious\\ncontain\\ncontained\\ncontainer\\ncontainers\\ncontaining\\ncontainment\\ncontainments\\ncontains\\ncontaminate\\ncontaminated\\ncontaminates\\ncontaminating\\ncontamination\\ncontaminations\\nconte\\ncontemn\\ncontemned\\ncontemning\\ncontemns\\ncontemplate\\ncontemplated\\ncontemplates\\ncontemplating\\ncontemplation\\ncontemplations\\ncontemplative\\ncontemporaneous\\ncontemporaries\\ncontemporary\\ncontempt\\ncontemptible\\ncontempts\\ncontemptuous\\ncontemptuously\\ncontend\\ncontended\\ncontender\\ncontenders\\ncontending\\ncontends\\ncontent\\ncontented\\ncontentedly\\ncontentedness\\ncontentednesses\\ncontenting\\ncontention\\ncontentions\\ncontentious\\ncontentment\\ncontentments\\ncontents\\ncontes\\ncontest\\ncontestable\\ncontestably\\ncontestant\\ncontestants\\ncontested\\ncontesting\\ncontests\\ncontext\\ncontexts\\ncontiguities\\ncontiguity\\ncontiguous\\ncontinence\\ncontinences\\ncontinent\\ncontinental\\ncontinents\\ncontingencies\\ncontingency\\ncontingent\\ncontingents\\ncontinua\\ncontinual\\ncontinually\\ncontinuance\\ncontinuances\\ncontinuation\\ncontinuations\\ncontinue\\ncontinued\\ncontinues\\ncontinuing\\ncontinuities\\ncontinuity\\ncontinuo\\ncontinuos\\ncontinuous\\ncontinuousities\\ncontinuousity\\nconto\\ncontort\\ncontorted\\ncontorting\\ncontortion\\ncontortions\\ncontorts\\ncontos\\ncontour\\ncontoured\\ncontouring\\ncontours\\ncontra\\ncontraband\\ncontrabands\\ncontraception\\ncontraceptions\\ncontraceptive\\ncontraceptives\\ncontract\\ncontracted\\ncontracting\\ncontraction\\ncontractions\\ncontractor\\ncontractors\\ncontracts\\ncontractual\\ncontradict\\ncontradicted\\ncontradicting\\ncontradiction\\ncontradictions\\ncontradictory\\ncontradicts\\ncontrail\\ncontrails\\ncontraindicate\\ncontraindicated\\ncontraindicates\\ncontraindicating\\ncontraption\\ncontraptions\\ncontraries\\ncontrarily\\ncontrariwise\\ncontrary\\ncontrast\\ncontrasted\\ncontrasting\\ncontrasts\\ncontravene\\ncontravened\\ncontravenes\\ncontravening\\ncontribute\\ncontributed\\ncontributes\\ncontributing\\ncontribution\\ncontributions\\ncontributor\\ncontributors\\ncontributory\\ncontrite\\ncontrition\\ncontritions\\ncontrivance\\ncontrivances\\ncontrive\\ncontrived\\ncontriver\\ncontrivers\\ncontrives\\ncontriving\\ncontrol\\ncontrollable\\ncontrolled\\ncontroller\\ncontrollers\\ncontrolling\\ncontrols\\ncontroversial\\ncontroversies\\ncontroversy\\ncontrovert\\ncontroverted\\ncontrovertible\\ncontroverting\\ncontroverts\\ncontumaceous\\ncontumacies\\ncontumacy\\ncontumelies\\ncontumely\\ncontuse\\ncontused\\ncontuses\\ncontusing\\ncontusion\\ncontusions\\nconundrum\\nconundrums\\nconus\\nconvalesce\\nconvalesced\\nconvalescence\\nconvalescences\\nconvalescent\\nconvalesces\\nconvalescing\\nconvect\\nconvected\\nconvecting\\nconvection\\nconvectional\\nconvections\\nconvective\\nconvects\\nconvene\\nconvened\\nconvener\\nconveners\\nconvenes\\nconvenience\\nconveniences\\nconvenient\\nconveniently\\nconvening\\nconvent\\nconvented\\nconventing\\nconvention\\nconventional\\nconventionally\\nconventions\\nconvents\\nconverge\\nconverged\\nconvergence\\nconvergences\\nconvergencies\\nconvergency\\nconvergent\\nconverges\\nconverging\\nconversant\\nconversation\\nconversational\\nconversations\\nconverse\\nconversed\\nconversely\\nconverses\\nconversing\\nconversion\\nconversions\\nconvert\\nconverted\\nconverter\\nconverters\\nconvertible\\nconvertibles\\nconverting\\nconvertor\\nconvertors\\nconverts\\nconvex\\nconvexes\\nconvexities\\nconvexity\\nconvexly\\nconvey\\nconveyance\\nconveyances\\nconveyed\\nconveyer\\nconveyers\\nconveying\\nconveyor\\nconveyors\\nconveys\\nconvict\\nconvicted\\nconvicting\\nconviction\\nconvictions\\nconvicts\\nconvince\\nconvinced\\nconvinces\\nconvincing\\nconvivial\\nconvivialities\\nconviviality\\nconvocation\\nconvocations\\nconvoke\\nconvoked\\nconvoker\\nconvokers\\nconvokes\\nconvoking\\nconvoluted\\nconvolution\\nconvolutions\\nconvolve\\nconvolved\\nconvolves\\nconvolving\\nconvoy\\nconvoyed\\nconvoying\\nconvoys\\nconvulse\\nconvulsed\\nconvulses\\nconvulsing\\nconvulsion\\nconvulsions\\nconvulsive\\ncony\\ncoo\\ncooch\\ncooches\\ncooed\\ncooee\\ncooeed\\ncooeeing\\ncooees\\ncooer\\ncooers\\ncooey\\ncooeyed\\ncooeying\\ncooeys\\ncoof\\ncoofs\\ncooing\\ncooingly\\ncook\\ncookable\\ncookbook\\ncookbooks\\ncooked\\ncooker\\ncookeries\\ncookers\\ncookery\\ncookey\\ncookeys\\ncookie\\ncookies\\ncooking\\ncookings\\ncookless\\ncookout\\ncookouts\\ncooks\\ncookshop\\ncookshops\\ncookware\\ncookwares\\ncooky\\ncool\\ncoolant\\ncoolants\\ncooled\\ncooler\\ncoolers\\ncoolest\\ncoolie\\ncoolies\\ncooling\\ncoolish\\ncoolly\\ncoolness\\ncoolnesses\\ncools\\ncooly\\ncoomb\\ncoombe\\ncoombes\\ncoombs\\ncoon\\ncooncan\\ncooncans\\ncoons\\ncoonskin\\ncoonskins\\ncoontie\\ncoonties\\ncoop\\ncooped\\ncooper\\ncooperate\\ncooperated\\ncooperates\\ncooperating\\ncooperation\\ncooperative\\ncooperatives\\ncoopered\\ncooperies\\ncoopering\\ncoopers\\ncoopery\\ncooping\\ncoops\\ncoopt\\ncoopted\\ncoopting\\ncooption\\ncooptions\\ncoopts\\ncoordinate\\ncoordinated\\ncoordinates\\ncoordinating\\ncoordination\\ncoordinations\\ncoordinator\\ncoordinators\\ncoos\\ncoot\\ncootie\\ncooties\\ncoots\\ncop\\ncopaiba\\ncopaibas\\ncopal\\ncopalm\\ncopalms\\ncopals\\ncoparent\\ncoparents\\ncopartner\\ncopartners\\ncopartnership\\ncopartnerships\\ncopastor\\ncopastors\\ncopatron\\ncopatrons\\ncope\\ncopeck\\ncopecks\\ncoped\\ncopemate\\ncopemates\\ncopen\\ncopens\\ncopepod\\ncopepods\\ncoper\\ncopers\\ncopes\\ncopied\\ncopier\\ncopiers\\ncopies\\ncopihue\\ncopihues\\ncopilot\\ncopilots\\ncoping\\ncopings\\ncopious\\ncopiously\\ncopiousness\\ncopiousnesses\\ncoplanar\\ncoplot\\ncoplots\\ncoplotted\\ncoplotting\\ncopped\\ncopper\\ncopperah\\ncopperahs\\ncopperas\\ncopperases\\ncoppered\\ncopperhead\\ncopperheads\\ncoppering\\ncoppers\\ncoppery\\ncoppice\\ncoppiced\\ncoppices\\ncopping\\ncoppra\\ncoppras\\ncopra\\ncoprah\\ncoprahs\\ncopras\\ncopremia\\ncopremias\\ncopremic\\ncopresident\\ncopresidents\\ncoprincipal\\ncoprincipals\\ncoprisoner\\ncoprisoners\\ncoproduce\\ncoproduced\\ncoproducer\\ncoproducers\\ncoproduces\\ncoproducing\\ncoproduction\\ncoproductions\\ncopromote\\ncopromoted\\ncopromoter\\ncopromoters\\ncopromotes\\ncopromoting\\ncoproprietor\\ncoproprietors\\ncoproprietorship\\ncoproprietorships\\ncops\\ncopse\\ncopses\\ncopter\\ncopters\\ncopublish\\ncopublished\\ncopublisher\\ncopublishers\\ncopublishes\\ncopublishing\\ncopula\\ncopulae\\ncopular\\ncopulas\\ncopulate\\ncopulated\\ncopulates\\ncopulating\\ncopulation\\ncopulations\\ncopulative\\ncopulatives\\ncopy\\ncopybook\\ncopybooks\\ncopyboy\\ncopyboys\\ncopycat\\ncopycats\\ncopycatted\\ncopycatting\\ncopydesk\\ncopydesks\\ncopyhold\\ncopyholds\\ncopying\\ncopyist\\ncopyists\\ncopyright\\ncopyrighted\\ncopyrighting\\ncopyrights\\ncoquet\\ncoquetries\\ncoquetry\\ncoquets\\ncoquette\\ncoquetted\\ncoquettes\\ncoquetting\\ncoquille\\ncoquilles\\ncoquina\\ncoquinas\\ncoquito\\ncoquitos\\ncoracle\\ncoracles\\ncoracoid\\ncoracoids\\ncoral\\ncorals\\ncoranto\\ncorantoes\\ncorantos\\ncorban\\ncorbans\\ncorbeil\\ncorbeils\\ncorbel\\ncorbeled\\ncorbeling\\ncorbelled\\ncorbelling\\ncorbels\\ncorbie\\ncorbies\\ncorbina\\ncorbinas\\ncorby\\ncord\\ncordage\\ncordages\\ncordate\\ncorded\\ncorder\\ncorders\\ncordial\\ncordialities\\ncordiality\\ncordially\\ncordials\\ncording\\ncordite\\ncordites\\ncordless\\ncordlike\\ncordoba\\ncordobas\\ncordon\\ncordoned\\ncordoning\\ncordons\\ncordovan\\ncordovans\\ncords\\ncorduroy\\ncorduroyed\\ncorduroying\\ncorduroys\\ncordwain\\ncordwains\\ncordwood\\ncordwoods\\ncordy\\ncore\\ncorecipient\\ncorecipients\\ncored\\ncoredeem\\ncoredeemed\\ncoredeeming\\ncoredeems\\ncoreign\\ncoreigns\\ncorelate\\ncorelated\\ncorelates\\ncorelating\\ncoreless\\ncoremia\\ncoremium\\ncorer\\ncorers\\ncores\\ncoresident\\ncoresidents\\ncorf\\ncorgi\\ncorgis\\ncoria\\ncoring\\ncorium\\ncork\\ncorkage\\ncorkages\\ncorked\\ncorker\\ncorkers\\ncorkier\\ncorkiest\\ncorking\\ncorklike\\ncorks\\ncorkscrew\\ncorkscrews\\ncorkwood\\ncorkwoods\\ncorky\\ncorm\\ncormel\\ncormels\\ncormlike\\ncormoid\\ncormorant\\ncormorants\\ncormous\\ncorms\\ncorn\\ncornball\\ncornballs\\ncorncake\\ncorncakes\\ncorncob\\ncorncobs\\ncorncrib\\ncorncribs\\ncornea\\ncorneal\\ncorneas\\ncorned\\ncornel\\ncornels\\ncorneous\\ncorner\\ncornered\\ncornering\\ncorners\\ncornerstone\\ncornerstones\\ncornet\\ncornetcies\\ncornetcy\\ncornets\\ncornfed\\ncornhusk\\ncornhusks\\ncornice\\ncorniced\\ncornices\\ncorniche\\ncorniches\\ncornicing\\ncornicle\\ncornicles\\ncornier\\ncorniest\\ncornily\\ncorning\\ncornmeal\\ncornmeals\\ncorns\\ncornstalk\\ncornstalks\\ncornstarch\\ncornstarches\\ncornu\\ncornua\\ncornual\\ncornucopia\\ncornucopias\\ncornus\\ncornuses\\ncornute\\ncornuted\\ncornuto\\ncornutos\\ncorny\\ncorodies\\ncorody\\ncorolla\\ncorollaries\\ncorollary\\ncorollas\\ncorona\\ncoronach\\ncoronachs\\ncoronae\\ncoronal\\ncoronals\\ncoronaries\\ncoronary\\ncoronas\\ncoronation\\ncoronations\\ncoronel\\ncoronels\\ncoroner\\ncoroners\\ncoronet\\ncoronets\\ncorotate\\ncorotated\\ncorotates\\ncorotating\\ncorpora\\ncorporal\\ncorporals\\ncorporate\\ncorporation\\ncorporations\\ncorporeal\\ncorporeally\\ncorps\\ncorpse\\ncorpses\\ncorpsman\\ncorpsmen\\ncorpulence\\ncorpulences\\ncorpulencies\\ncorpulency\\ncorpulent\\ncorpus\\ncorpuscle\\ncorpuscles\\ncorrade\\ncorraded\\ncorrades\\ncorrading\\ncorral\\ncorralled\\ncorralling\\ncorrals\\ncorrect\\ncorrected\\ncorrecter\\ncorrectest\\ncorrecting\\ncorrection\\ncorrections\\ncorrective\\ncorrectly\\ncorrectness\\ncorrectnesses\\ncorrects\\ncorrelate\\ncorrelated\\ncorrelates\\ncorrelating\\ncorrelation\\ncorrelations\\ncorrelative\\ncorrelatives\\ncorrespond\\ncorresponded\\ncorrespondence\\ncorrespondences\\ncorrespondent\\ncorrespondents\\ncorresponding\\ncorresponds\\ncorrida\\ncorridas\\ncorridor\\ncorridors\\ncorrie\\ncorries\\ncorrival\\ncorrivals\\ncorroborate\\ncorroborated\\ncorroborates\\ncorroborating\\ncorroboration\\ncorroborations\\ncorrode\\ncorroded\\ncorrodes\\ncorrodies\\ncorroding\\ncorrody\\ncorrosion\\ncorrosions\\ncorrosive\\ncorrugate\\ncorrugated\\ncorrugates\\ncorrugating\\ncorrugation\\ncorrugations\\ncorrupt\\ncorrupted\\ncorrupter\\ncorruptest\\ncorruptible\\ncorrupting\\ncorruption\\ncorruptions\\ncorrupts\\ncorsac\\ncorsacs\\ncorsage\\ncorsages\\ncorsair\\ncorsairs\\ncorse\\ncorselet\\ncorselets\\ncorses\\ncorset\\ncorseted\\ncorseting\\ncorsets\\ncorslet\\ncorslets\\ncortege\\ncorteges\\ncortex\\ncortexes\\ncortical\\ncortices\\ncortin\\ncortins\\ncortisol\\ncortisols\\ncortisone\\ncortisones\\ncorundum\\ncorundums\\ncorvee\\ncorvees\\ncorves\\ncorvet\\ncorvets\\ncorvette\\ncorvettes\\ncorvina\\ncorvinas\\ncorvine\\ncorymb\\ncorymbed\\ncorymbs\\ncoryphee\\ncoryphees\\ncoryza\\ncoryzal\\ncoryzas\\ncos\\ncosec\\ncosecant\\ncosecants\\ncosecs\\ncoses\\ncoset\\ncosets\\ncosey\\ncoseys\\ncosh\\ncoshed\\ncosher\\ncoshered\\ncoshering\\ncoshers\\ncoshes\\ncoshing\\ncosie\\ncosier\\ncosies\\ncosiest\\ncosign\\ncosignatories\\ncosignatory\\ncosigned\\ncosigner\\ncosigners\\ncosigning\\ncosigns\\ncosily\\ncosine\\ncosines\\ncosiness\\ncosinesses\\ncosmetic\\ncosmetics\\ncosmic\\ncosmical\\ncosmism\\ncosmisms\\ncosmist\\ncosmists\\ncosmonaut\\ncosmonauts\\ncosmopolitan\\ncosmopolitans\\ncosmos\\ncosmoses\\ncosponsor\\ncosponsors\\ncoss\\ncossack\\ncossacks\\ncosset\\ncosseted\\ncosseting\\ncossets\\ncost\\ncosta\\ncostae\\ncostal\\ncostar\\ncostard\\ncostards\\ncostarred\\ncostarring\\ncostars\\ncostate\\ncosted\\ncoster\\ncosters\\ncosting\\ncostive\\ncostless\\ncostlier\\ncostliest\\ncostliness\\ncostlinesses\\ncostly\\ncostmaries\\ncostmary\\ncostrel\\ncostrels\\ncosts\\ncostume\\ncostumed\\ncostumer\\ncostumers\\ncostumes\\ncostumey\\ncostuming\\ncosy\\ncot\\ncotan\\ncotans\\ncote\\ncoteau\\ncoteaux\\ncoted\\ncotenant\\ncotenants\\ncoterie\\ncoteries\\ncotes\\ncothurn\\ncothurni\\ncothurns\\ncotidal\\ncotillion\\ncotillions\\ncotillon\\ncotillons\\ncoting\\ncotquean\\ncotqueans\\ncots\\ncotta\\ncottae\\ncottage\\ncottager\\ncottagers\\ncottages\\ncottagey\\ncottar\\ncottars\\ncottas\\ncotter\\ncotters\\ncottier\\ncottiers\\ncotton\\ncottoned\\ncottoning\\ncottonmouth\\ncottonmouths\\ncottons\\ncottonseed\\ncottonseeds\\ncottony\\ncotyloid\\ncotype\\ncotypes\\ncouch\\ncouchant\\ncouched\\ncoucher\\ncouchers\\ncouches\\ncouching\\ncouchings\\ncoude\\ncougar\\ncougars\\ncough\\ncoughed\\ncougher\\ncoughers\\ncoughing\\ncoughs\\ncould\\ncouldest\\ncouldst\\ncoulee\\ncoulees\\ncoulisse\\ncoulisses\\ncouloir\\ncouloirs\\ncoulomb\\ncoulombs\\ncoulter\\ncoulters\\ncoumaric\\ncoumarin\\ncoumarins\\ncoumarou\\ncoumarous\\ncouncil\\ncouncillor\\ncouncillors\\ncouncilman\\ncouncilmen\\ncouncilor\\ncouncilors\\ncouncils\\ncouncilwoman\\ncounsel\\ncounseled\\ncounseling\\ncounselled\\ncounselling\\ncounsellor\\ncounsellors\\ncounselor\\ncounselors\\ncounsels\\ncount\\ncountable\\ncounted\\ncountenance\\ncountenanced\\ncountenances\\ncountenancing\\ncounter\\ncounteraccusation\\ncounteraccusations\\ncounteract\\ncounteracted\\ncounteracting\\ncounteracts\\ncounteraggression\\ncounteraggressions\\ncounterargue\\ncounterargued\\ncounterargues\\ncounterarguing\\ncounterassault\\ncounterassaults\\ncounterattack\\ncounterattacked\\ncounterattacking\\ncounterattacks\\ncounterbalance\\ncounterbalanced\\ncounterbalances\\ncounterbalancing\\ncounterbid\\ncounterbids\\ncounterblockade\\ncounterblockades\\ncounterblow\\ncounterblows\\ncountercampaign\\ncountercampaigns\\ncounterchallenge\\ncounterchallenges\\ncountercharge\\ncountercharges\\ncounterclaim\\ncounterclaims\\ncounterclockwise\\ncountercomplaint\\ncountercomplaints\\ncountercoup\\ncountercoups\\ncountercriticism\\ncountercriticisms\\ncounterdemand\\ncounterdemands\\ncounterdemonstration\\ncounterdemonstrations\\ncounterdemonstrator\\ncounterdemonstrators\\ncountered\\ncountereffect\\ncountereffects\\ncountereffort\\ncounterefforts\\ncounterembargo\\ncounterembargos\\ncounterevidence\\ncounterevidences\\ncounterfeit\\ncounterfeited\\ncounterfeiter\\ncounterfeiters\\ncounterfeiting\\ncounterfeits\\ncounterguerrila\\ncounterinflationary\\ncounterinfluence\\ncounterinfluences\\ncountering\\ncounterintrigue\\ncounterintrigues\\ncountermand\\ncountermanded\\ncountermanding\\ncountermands\\ncountermeasure\\ncountermeasures\\ncountermove\\ncountermovement\\ncountermovements\\ncountermoves\\ncounteroffer\\ncounteroffers\\ncounterpart\\ncounterparts\\ncounterpetition\\ncounterpetitions\\ncounterploy\\ncounterploys\\ncounterpoint\\ncounterpoints\\ncounterpower\\ncounterpowers\\ncounterpressure\\ncounterpressures\\ncounterpropagation\\ncounterpropagations\\ncounterproposal\\ncounterproposals\\ncounterprotest\\ncounterprotests\\ncounterquestion\\ncounterquestions\\ncounterraid\\ncounterraids\\ncounterrallies\\ncounterrally\\ncounterrebuttal\\ncounterrebuttals\\ncounterreform\\ncounterreforms\\ncounterresponse\\ncounterresponses\\ncounterretaliation\\ncounterretaliations\\ncounterrevolution\\ncounterrevolutions\\ncounters\\ncountersign\\ncountersigns\\ncounterstrategies\\ncounterstrategy\\ncounterstyle\\ncounterstyles\\ncountersue\\ncountersued\\ncountersues\\ncountersuggestion\\ncountersuggestions\\ncountersuing\\ncountersuit\\ncountersuits\\ncountertendencies\\ncountertendency\\ncounterterror\\ncounterterrorism\\ncounterterrorisms\\ncounterterrorist\\ncounterterrorists\\ncounterterrors\\ncounterthreat\\ncounterthreats\\ncounterthrust\\ncounterthrusts\\ncountertrend\\ncountertrends\\ncountess\\ncountesses\\ncountian\\ncountians\\ncounties\\ncounting\\ncountless\\ncountries\\ncountry\\ncountryman\\ncountrymen\\ncountryside\\ncountrysides\\ncounts\\ncounty\\ncoup\\ncoupe\\ncouped\\ncoupes\\ncouping\\ncouple\\ncoupled\\ncoupler\\ncouplers\\ncouples\\ncouplet\\ncouplets\\ncoupling\\ncouplings\\ncoupon\\ncoupons\\ncoups\\ncourage\\ncourageous\\ncourages\\ncourant\\ncourante\\ncourantes\\ncouranto\\ncourantoes\\ncourantos\\ncourants\\ncourier\\ncouriers\\ncourlan\\ncourlans\\ncourse\\ncoursed\\ncourser\\ncoursers\\ncourses\\ncoursing\\ncoursings\\ncourt\\ncourted\\ncourteous\\ncourteously\\ncourtesied\\ncourtesies\\ncourtesy\\ncourtesying\\ncourthouse\\ncourthouses\\ncourtier\\ncourtiers\\ncourting\\ncourtlier\\ncourtliest\\ncourtly\\ncourtroom\\ncourtrooms\\ncourts\\ncourtship\\ncourtships\\ncourtyard\\ncourtyards\\ncouscous\\ncouscouses\\ncousin\\ncousinly\\ncousinries\\ncousinry\\ncousins\\ncouteau\\ncouteaux\\ncouter\\ncouters\\ncouth\\ncouther\\ncouthest\\ncouthie\\ncouthier\\ncouthiest\\ncouths\\ncouture\\ncoutures\\ncouvade\\ncouvades\\ncovalent\\ncove\\ncoved\\ncoven\\ncovenant\\ncovenanted\\ncovenanting\\ncovenants\\ncovens\\ncover\\ncoverage\\ncoverages\\ncoverall\\ncoveralls\\ncovered\\ncoverer\\ncoverers\\ncovering\\ncoverings\\ncoverlet\\ncoverlets\\ncoverlid\\ncoverlids\\ncovers\\ncovert\\ncovertly\\ncoverts\\ncoves\\ncovet\\ncoveted\\ncoveter\\ncoveters\\ncoveting\\ncovetous\\ncovets\\ncovey\\ncoveys\\ncoving\\ncovings\\ncow\\ncowage\\ncowages\\ncoward\\ncowardice\\ncowardices\\ncowardly\\ncowards\\ncowbane\\ncowbanes\\ncowbell\\ncowbells\\ncowberries\\ncowberry\\ncowbind\\ncowbinds\\ncowbird\\ncowbirds\\ncowboy\\ncowboys\\ncowed\\ncowedly\\ncower\\ncowered\\ncowering\\ncowers\\ncowfish\\ncowfishes\\ncowgirl\\ncowgirls\\ncowhage\\ncowhages\\ncowhand\\ncowhands\\ncowherb\\ncowherbs\\ncowherd\\ncowherds\\ncowhide\\ncowhided\\ncowhides\\ncowhiding\\ncowier\\ncowiest\\ncowing\\ncowinner\\ncowinners\\ncowl\\ncowled\\ncowlick\\ncowlicks\\ncowling\\ncowlings\\ncowls\\ncowman\\ncowmen\\ncoworker\\ncoworkers\\ncowpat\\ncowpats\\ncowpea\\ncowpeas\\ncowpoke\\ncowpokes\\ncowpox\\ncowpoxes\\ncowrie\\ncowries\\ncowry\\ncows\\ncowshed\\ncowsheds\\ncowskin\\ncowskins\\ncowslip\\ncowslips\\ncowy\\ncox\\ncoxa\\ncoxae\\ncoxal\\ncoxalgia\\ncoxalgias\\ncoxalgic\\ncoxalgies\\ncoxalgy\\ncoxcomb\\ncoxcombs\\ncoxed\\ncoxes\\ncoxing\\ncoxswain\\ncoxswained\\ncoxswaining\\ncoxswains\\ncoy\\ncoyed\\ncoyer\\ncoyest\\ncoying\\ncoyish\\ncoyly\\ncoyness\\ncoynesses\\ncoyote\\ncoyotes\\ncoypou\\ncoypous\\ncoypu\\ncoypus\\ncoys\\ncoz\\ncozen\\ncozenage\\ncozenages\\ncozened\\ncozener\\ncozeners\\ncozening\\ncozens\\ncozes\\ncozey\\ncozeys\\ncozie\\ncozier\\ncozies\\ncoziest\\ncozily\\ncoziness\\ncozinesses\\ncozy\\ncozzes\\ncraal\\ncraaled\\ncraaling\\ncraals\\ncrab\\ncrabbed\\ncrabber\\ncrabbers\\ncrabbier\\ncrabbiest\\ncrabbing\\ncrabby\\ncrabs\\ncrabwise\\ncrack\\ncrackdown\\ncrackdowns\\ncracked\\ncracker\\ncrackers\\ncracking\\ncrackings\\ncrackle\\ncrackled\\ncrackles\\ncracklier\\ncrackliest\\ncrackling\\ncrackly\\ncracknel\\ncracknels\\ncrackpot\\ncrackpots\\ncracks\\ncrackup\\ncrackups\\ncracky\\ncradle\\ncradled\\ncradler\\ncradlers\\ncradles\\ncradling\\ncraft\\ncrafted\\ncraftier\\ncraftiest\\ncraftily\\ncraftiness\\ncraftinesses\\ncrafting\\ncrafts\\ncraftsman\\ncraftsmanship\\ncraftsmanships\\ncraftsmen\\ncraftsmenship\\ncraftsmenships\\ncrafty\\ncrag\\ncragged\\ncraggier\\ncraggiest\\ncraggily\\ncraggy\\ncrags\\ncragsman\\ncragsmen\\ncrake\\ncrakes\\ncram\\ncrambe\\ncrambes\\ncrambo\\ncramboes\\ncrambos\\ncrammed\\ncrammer\\ncrammers\\ncramming\\ncramoisies\\ncramoisy\\ncramp\\ncramped\\ncramping\\ncrampit\\ncrampits\\ncrampon\\ncrampons\\ncrampoon\\ncrampoons\\ncramps\\ncrams\\ncranberries\\ncranberry\\ncranch\\ncranched\\ncranches\\ncranching\\ncrane\\ncraned\\ncranes\\ncrania\\ncranial\\ncraniate\\ncraniates\\ncraning\\ncranium\\ncraniums\\ncrank\\ncranked\\ncranker\\ncrankest\\ncrankier\\ncrankiest\\ncrankily\\ncranking\\ncrankle\\ncrankled\\ncrankles\\ncrankling\\ncrankly\\ncrankous\\ncrankpin\\ncrankpins\\ncranks\\ncranky\\ncrannied\\ncrannies\\ncrannog\\ncrannoge\\ncrannoges\\ncrannogs\\ncranny\\ncrap\\ncrape\\ncraped\\ncrapes\\ncraping\\ncrapped\\ncrapper\\ncrappers\\ncrappie\\ncrappier\\ncrappies\\ncrappiest\\ncrapping\\ncrappy\\ncraps\\ncrapshooter\\ncrapshooters\\ncrases\\ncrash\\ncrashed\\ncrasher\\ncrashers\\ncrashes\\ncrashing\\ncrasis\\ncrass\\ncrasser\\ncrassest\\ncrassly\\ncratch\\ncratches\\ncrate\\ncrated\\ncrater\\ncratered\\ncratering\\ncraters\\ncrates\\ncrating\\ncraton\\ncratonic\\ncratons\\ncraunch\\ncraunched\\ncraunches\\ncraunching\\ncravat\\ncravats\\ncrave\\ncraved\\ncraven\\ncravened\\ncravening\\ncravenly\\ncravens\\ncraver\\ncravers\\ncraves\\ncraving\\ncravings\\ncraw\\ncrawdad\\ncrawdads\\ncrawfish\\ncrawfished\\ncrawfishes\\ncrawfishing\\ncrawl\\ncrawled\\ncrawler\\ncrawlers\\ncrawlier\\ncrawliest\\ncrawling\\ncrawls\\ncrawlway\\ncrawlways\\ncrawly\\ncraws\\ncrayfish\\ncrayfishes\\ncrayon\\ncrayoned\\ncrayoning\\ncrayons\\ncraze\\ncrazed\\ncrazes\\ncrazier\\ncraziest\\ncrazily\\ncraziness\\ncrazinesses\\ncrazing\\ncrazy\\ncreak\\ncreaked\\ncreakier\\ncreakiest\\ncreakily\\ncreaking\\ncreaks\\ncreaky\\ncream\\ncreamed\\ncreamer\\ncreameries\\ncreamers\\ncreamery\\ncreamier\\ncreamiest\\ncreamily\\ncreaming\\ncreams\\ncreamy\\ncrease\\ncreased\\ncreaser\\ncreasers\\ncreases\\ncreasier\\ncreasiest\\ncreasing\\ncreasy\\ncreate\\ncreated\\ncreates\\ncreatin\\ncreatine\\ncreatines\\ncreating\\ncreatinine\\ncreatins\\ncreation\\ncreations\\ncreative\\ncreativities\\ncreativity\\ncreator\\ncreators\\ncreature\\ncreatures\\ncreche\\ncreches\\ncredal\\ncredence\\ncredences\\ncredenda\\ncredent\\ncredentials\\ncredenza\\ncredenzas\\ncredibilities\\ncredibility\\ncredible\\ncredibly\\ncredit\\ncreditable\\ncreditably\\ncredited\\ncrediting\\ncreditor\\ncreditors\\ncredits\\ncredo\\ncredos\\ncredulities\\ncredulity\\ncredulous\\ncreed\\ncreedal\\ncreeds\\ncreek\\ncreeks\\ncreel\\ncreels\\ncreep\\ncreepage\\ncreepages\\ncreeper\\ncreepers\\ncreepie\\ncreepier\\ncreepies\\ncreepiest\\ncreepily\\ncreeping\\ncreeps\\ncreepy\\ncreese\\ncreeses\\ncreesh\\ncreeshed\\ncreeshes\\ncreeshing\\ncremains\\ncremate\\ncremated\\ncremates\\ncremating\\ncremation\\ncremations\\ncremator\\ncremators\\ncrematory\\ncreme\\ncremes\\ncrenate\\ncrenated\\ncrenel\\ncreneled\\ncreneling\\ncrenelle\\ncrenelled\\ncrenelles\\ncrenelling\\ncrenels\\ncreodont\\ncreodonts\\ncreole\\ncreoles\\ncreosol\\ncreosols\\ncreosote\\ncreosoted\\ncreosotes\\ncreosoting\\ncrepe\\ncreped\\ncrepes\\ncrepey\\ncrepier\\ncrepiest\\ncreping\\ncrept\\ncrepy\\ncrescendo\\ncrescendos\\ncrescent\\ncrescents\\ncresive\\ncresol\\ncresols\\ncress\\ncresses\\ncresset\\ncressets\\ncrest\\ncrestal\\ncrested\\ncrestfallen\\ncrestfallens\\ncresting\\ncrestings\\ncrests\\ncresyl\\ncresylic\\ncresyls\\ncretic\\ncretics\\ncretin\\ncretins\\ncretonne\\ncretonnes\\ncrevalle\\ncrevalles\\ncrevasse\\ncrevassed\\ncrevasses\\ncrevassing\\ncrevice\\ncreviced\\ncrevices\\ncrew\\ncrewed\\ncrewel\\ncrewels\\ncrewing\\ncrewless\\ncrewman\\ncrewmen\\ncrews\\ncrib\\ncribbage\\ncribbages\\ncribbed\\ncribber\\ncribbers\\ncribbing\\ncribbings\\ncribbled\\ncribrous\\ncribs\\ncribwork\\ncribworks\\ncricetid\\ncricetids\\ncrick\\ncricked\\ncricket\\ncricketed\\ncricketing\\ncrickets\\ncricking\\ncricks\\ncricoid\\ncricoids\\ncried\\ncrier\\ncriers\\ncries\\ncrime\\ncrimes\\ncriminal\\ncriminals\\ncrimmer\\ncrimmers\\ncrimp\\ncrimped\\ncrimper\\ncrimpers\\ncrimpier\\ncrimpiest\\ncrimping\\ncrimple\\ncrimpled\\ncrimples\\ncrimpling\\ncrimps\\ncrimpy\\ncrimson\\ncrimsoned\\ncrimsoning\\ncrimsons\\ncringe\\ncringed\\ncringer\\ncringers\\ncringes\\ncringing\\ncringle\\ncringles\\ncrinite\\ncrinites\\ncrinkle\\ncrinkled\\ncrinkles\\ncrinklier\\ncrinkliest\\ncrinkling\\ncrinkly\\ncrinoid\\ncrinoids\\ncrinoline\\ncrinolines\\ncrinum\\ncrinums\\ncriollo\\ncriollos\\ncripple\\ncrippled\\ncrippler\\ncripplers\\ncripples\\ncrippling\\ncris\\ncrises\\ncrisic\\ncrisis\\ncrisp\\ncrispate\\ncrisped\\ncrispen\\ncrispened\\ncrispening\\ncrispens\\ncrisper\\ncrispers\\ncrispest\\ncrispier\\ncrispiest\\ncrispily\\ncrisping\\ncrisply\\ncrispness\\ncrispnesses\\ncrisps\\ncrispy\\ncrissa\\ncrissal\\ncrisscross\\ncrisscrossed\\ncrisscrosses\\ncrisscrossing\\ncrissum\\ncrista\\ncristae\\ncristate\\ncriteria\\ncriterion\\ncritic\\ncritical\\ncriticism\\ncriticisms\\ncriticize\\ncriticized\\ncriticizes\\ncriticizing\\ncritics\\ncritique\\ncritiqued\\ncritiques\\ncritiquing\\ncritter\\ncritters\\ncrittur\\ncritturs\\ncroak\\ncroaked\\ncroaker\\ncroakers\\ncroakier\\ncroakiest\\ncroakily\\ncroaking\\ncroaks\\ncroaky\\ncrocein\\ncroceine\\ncroceines\\ncroceins\\ncrochet\\ncrocheted\\ncrocheting\\ncrochets\\ncroci\\ncrocine\\ncrock\\ncrocked\\ncrockeries\\ncrockery\\ncrocket\\ncrockets\\ncrocking\\ncrocks\\ncrocodile\\ncrocodiles\\ncrocoite\\ncrocoites\\ncrocus\\ncrocuses\\ncroft\\ncrofter\\ncrofters\\ncrofts\\ncrojik\\ncrojiks\\ncromlech\\ncromlechs\\ncrone\\ncrones\\ncronies\\ncrony\\ncronyism\\ncronyisms\\ncrook\\ncrooked\\ncrookeder\\ncrookedest\\ncrookedness\\ncrookednesses\\ncrooking\\ncrooks\\ncroon\\ncrooned\\ncrooner\\ncrooners\\ncrooning\\ncroons\\ncrop\\ncropland\\ncroplands\\ncropless\\ncropped\\ncropper\\ncroppers\\ncropping\\ncrops\\ncroquet\\ncroqueted\\ncroqueting\\ncroquets\\ncroquette\\ncroquettes\\ncroquis\\ncrore\\ncrores\\ncrosier\\ncrosiers\\ncross\\ncrossarm\\ncrossarms\\ncrossbar\\ncrossbarred\\ncrossbarring\\ncrossbars\\ncrossbow\\ncrossbows\\ncrossbreed\\ncrossbreeded\\ncrossbreeding\\ncrossbreeds\\ncrosscut\\ncrosscuts\\ncrosscutting\\ncrosse\\ncrossed\\ncrosser\\ncrossers\\ncrosses\\ncrossest\\ncrossing\\ncrossings\\ncrosslet\\ncrosslets\\ncrossly\\ncrossover\\ncrossovers\\ncrossroads\\ncrosstie\\ncrossties\\ncrosswalk\\ncrosswalks\\ncrossway\\ncrossways\\ncrosswise\\ncrotch\\ncrotched\\ncrotches\\ncrotchet\\ncrotchets\\ncrotchety\\ncroton\\ncrotons\\ncrouch\\ncrouched\\ncrouches\\ncrouching\\ncroup\\ncroupe\\ncroupes\\ncroupier\\ncroupiers\\ncroupiest\\ncroupily\\ncroupous\\ncroups\\ncroupy\\ncrouse\\ncrousely\\ncrouton\\ncroutons\\ncrow\\ncrowbar\\ncrowbars\\ncrowd\\ncrowded\\ncrowder\\ncrowders\\ncrowdie\\ncrowdies\\ncrowding\\ncrowds\\ncrowdy\\ncrowed\\ncrower\\ncrowers\\ncrowfeet\\ncrowfoot\\ncrowfoots\\ncrowing\\ncrown\\ncrowned\\ncrowner\\ncrowners\\ncrownet\\ncrownets\\ncrowning\\ncrowns\\ncrows\\ncrowstep\\ncrowsteps\\ncroze\\ncrozer\\ncrozers\\ncrozes\\ncrozier\\ncroziers\\ncruces\\ncrucial\\ncrucian\\ncrucians\\ncruciate\\ncrucible\\ncrucibles\\ncrucifer\\ncrucifers\\ncrucified\\ncrucifies\\ncrucifix\\ncrucifixes\\ncrucifixion\\ncrucify\\ncrucifying\\ncrud\\ncrudded\\ncrudding\\ncruddy\\ncrude\\ncrudely\\ncruder\\ncrudes\\ncrudest\\ncrudities\\ncrudity\\ncruds\\ncruel\\ncrueler\\ncruelest\\ncrueller\\ncruellest\\ncruelly\\ncruelties\\ncruelty\\ncruet\\ncruets\\ncruise\\ncruised\\ncruiser\\ncruisers\\ncruises\\ncruising\\ncruller\\ncrullers\\ncrumb\\ncrumbed\\ncrumber\\ncrumbers\\ncrumbier\\ncrumbiest\\ncrumbing\\ncrumble\\ncrumbled\\ncrumbles\\ncrumblier\\ncrumbliest\\ncrumbling\\ncrumbly\\ncrumbs\\ncrumby\\ncrummie\\ncrummier\\ncrummies\\ncrummiest\\ncrummy\\ncrump\\ncrumped\\ncrumpet\\ncrumpets\\ncrumping\\ncrumple\\ncrumpled\\ncrumples\\ncrumpling\\ncrumply\\ncrumps\\ncrunch\\ncrunched\\ncruncher\\ncrunchers\\ncrunches\\ncrunchier\\ncrunchiest\\ncrunching\\ncrunchy\\ncrunodal\\ncrunode\\ncrunodes\\ncruor\\ncruors\\ncrupper\\ncruppers\\ncrura\\ncrural\\ncrus\\ncrusade\\ncrusaded\\ncrusader\\ncrusaders\\ncrusades\\ncrusading\\ncrusado\\ncrusadoes\\ncrusados\\ncruse\\ncruses\\ncruset\\ncrusets\\ncrush\\ncrushed\\ncrusher\\ncrushers\\ncrushes\\ncrushing\\ncrusily\\ncrust\\ncrustacean\\ncrustaceans\\ncrustal\\ncrusted\\ncrustier\\ncrustiest\\ncrustily\\ncrusting\\ncrustose\\ncrusts\\ncrusty\\ncrutch\\ncrutched\\ncrutches\\ncrutching\\ncrux\\ncruxes\\ncruzado\\ncruzadoes\\ncruzados\\ncruzeiro\\ncruzeiros\\ncrwth\\ncrwths\\ncry\\ncrybabies\\ncrybaby\\ncrying\\ncryingly\\ncryogen\\ncryogenies\\ncryogens\\ncryogeny\\ncryolite\\ncryolites\\ncryonic\\ncryonics\\ncryostat\\ncryostats\\ncryotron\\ncryotrons\\ncrypt\\ncryptal\\ncryptic\\ncrypto\\ncryptographic\\ncryptographies\\ncryptography\\ncryptos\\ncrypts\\ncrystal\\ncrystallization\\ncrystallizations\\ncrystallize\\ncrystallized\\ncrystallizes\\ncrystallizing\\ncrystals\\nctenidia\\nctenoid\\ncub\\ncubage\\ncubages\\ncubature\\ncubatures\\ncubbies\\ncubbish\\ncubby\\ncubbyhole\\ncubbyholes\\ncube\\ncubeb\\ncubebs\\ncubed\\ncuber\\ncubers\\ncubes\\ncubic\\ncubical\\ncubicities\\ncubicity\\ncubicle\\ncubicles\\ncubicly\\ncubics\\ncubicula\\ncubiform\\ncubing\\ncubism\\ncubisms\\ncubist\\ncubistic\\ncubists\\ncubit\\ncubital\\ncubits\\ncuboid\\ncuboidal\\ncuboids\\ncubs\\ncuckold\\ncuckolded\\ncuckolding\\ncuckolds\\ncuckoo\\ncuckooed\\ncuckooing\\ncuckoos\\ncucumber\\ncucumbers\\ncucurbit\\ncucurbits\\ncud\\ncudbear\\ncudbears\\ncuddie\\ncuddies\\ncuddle\\ncuddled\\ncuddles\\ncuddlier\\ncuddliest\\ncuddling\\ncuddly\\ncuddy\\ncudgel\\ncudgeled\\ncudgeler\\ncudgelers\\ncudgeling\\ncudgelled\\ncudgelling\\ncudgels\\ncuds\\ncudweed\\ncudweeds\\ncue\\ncued\\ncueing\\ncues\\ncuesta\\ncuestas\\ncuff\\ncuffed\\ncuffing\\ncuffless\\ncuffs\\ncuif\\ncuifs\\ncuing\\ncuirass\\ncuirassed\\ncuirasses\\ncuirassing\\ncuish\\ncuishes\\ncuisine\\ncuisines\\ncuisse\\ncuisses\\ncuittle\\ncuittled\\ncuittles\\ncuittling\\ncuke\\ncukes\\nculch\\nculches\\nculet\\nculets\\nculex\\nculices\\nculicid\\nculicids\\nculicine\\nculicines\\nculinary\\ncull\\ncullay\\ncullays\\nculled\\nculler\\ncullers\\ncullet\\ncullets\\ncullied\\ncullies\\nculling\\ncullion\\ncullions\\ncullis\\ncullises\\nculls\\ncully\\ncullying\\nculm\\nculmed\\nculminatation\\nculminatations\\nculminate\\nculminated\\nculminates\\nculminating\\nculming\\nculms\\nculotte\\nculottes\\nculpa\\nculpable\\nculpably\\nculpae\\nculprit\\nculprits\\ncult\\ncultch\\ncultches\\nculti\\ncultic\\ncultigen\\ncultigens\\ncultism\\ncultisms\\ncultist\\ncultists\\ncultivar\\ncultivars\\ncultivatation\\ncultivatations\\ncultivate\\ncultivated\\ncultivates\\ncultivating\\ncultrate\\ncults\\ncultural\\nculture\\ncultured\\ncultures\\nculturing\\ncultus\\ncultuses\\nculver\\nculverin\\nculverins\\nculvers\\nculvert\\nculverts\\ncum\\ncumarin\\ncumarins\\ncumber\\ncumbered\\ncumberer\\ncumberers\\ncumbering\\ncumbers\\ncumbersome\\ncumbrous\\ncumin\\ncumins\\ncummer\\ncummers\\ncummin\\ncummins\\ncumquat\\ncumquats\\ncumshaw\\ncumshaws\\ncumulate\\ncumulated\\ncumulates\\ncumulating\\ncumulative\\ncumuli\\ncumulous\\ncumulus\\ncundum\\ncundums\\ncuneal\\ncuneate\\ncuneated\\ncuneatic\\ncuniform\\ncuniforms\\ncunner\\ncunners\\ncunning\\ncunninger\\ncunningest\\ncunningly\\ncunnings\\ncup\\ncupboard\\ncupboards\\ncupcake\\ncupcakes\\ncupel\\ncupeled\\ncupeler\\ncupelers\\ncupeling\\ncupelled\\ncupeller\\ncupellers\\ncupelling\\ncupels\\ncupful\\ncupfuls\\ncupid\\ncupidities\\ncupidity\\ncupids\\ncuplike\\ncupola\\ncupolaed\\ncupolaing\\ncupolas\\ncuppa\\ncuppas\\ncupped\\ncupper\\ncuppers\\ncuppier\\ncuppiest\\ncupping\\ncuppings\\ncuppy\\ncupreous\\ncupric\\ncuprite\\ncuprites\\ncuprous\\ncuprum\\ncuprums\\ncups\\ncupsful\\ncupula\\ncupulae\\ncupular\\ncupulate\\ncupule\\ncupules\\ncur\\ncurable\\ncurably\\ncuracao\\ncuracaos\\ncuracies\\ncuracoa\\ncuracoas\\ncuracy\\ncuragh\\ncuraghs\\ncurara\\ncuraras\\ncurare\\ncurares\\ncurari\\ncurarine\\ncurarines\\ncuraris\\ncurarize\\ncurarized\\ncurarizes\\ncurarizing\\ncurassow\\ncurassows\\ncurate\\ncurates\\ncurative\\ncuratives\\ncurator\\ncurators\\ncurb\\ncurbable\\ncurbed\\ncurber\\ncurbers\\ncurbing\\ncurbings\\ncurbs\\ncurch\\ncurches\\ncurculio\\ncurculios\\ncurcuma\\ncurcumas\\ncurd\\ncurded\\ncurdier\\ncurdiest\\ncurding\\ncurdle\\ncurdled\\ncurdler\\ncurdlers\\ncurdles\\ncurdling\\ncurds\\ncurdy\\ncure\\ncured\\ncureless\\ncurer\\ncurers\\ncures\\ncuret\\ncurets\\ncurette\\ncuretted\\ncurettes\\ncuretting\\ncurf\\ncurfew\\ncurfews\\ncurfs\\ncuria\\ncuriae\\ncurial\\ncurie\\ncuries\\ncuring\\ncurio\\ncurios\\ncuriosa\\ncuriosities\\ncuriosity\\ncurious\\ncuriouser\\ncuriousest\\ncurite\\ncurites\\ncurium\\ncuriums\\ncurl\\ncurled\\ncurler\\ncurlers\\ncurlew\\ncurlews\\ncurlicue\\ncurlicued\\ncurlicues\\ncurlicuing\\ncurlier\\ncurliest\\ncurlily\\ncurling\\ncurlings\\ncurls\\ncurly\\ncurlycue\\ncurlycues\\ncurmudgeon\\ncurmudgeons\\ncurn\\ncurns\\ncurr\\ncurrach\\ncurrachs\\ncurragh\\ncurraghs\\ncurran\\ncurrans\\ncurrant\\ncurrants\\ncurred\\ncurrencies\\ncurrency\\ncurrent\\ncurrently\\ncurrents\\ncurricle\\ncurricles\\ncurriculum\\ncurrie\\ncurried\\ncurrier\\ncurrieries\\ncurriers\\ncurriery\\ncurries\\ncurring\\ncurrish\\ncurrs\\ncurry\\ncurrying\\ncurs\\ncurse\\ncursed\\ncurseder\\ncursedest\\ncursedly\\ncurser\\ncursers\\ncurses\\ncursing\\ncursive\\ncursives\\ncursory\\ncurst\\ncurt\\ncurtail\\ncurtailed\\ncurtailing\\ncurtailment\\ncurtailments\\ncurtails\\ncurtain\\ncurtained\\ncurtaining\\ncurtains\\ncurtal\\ncurtalax\\ncurtalaxes\\ncurtals\\ncurtate\\ncurter\\ncurtesies\\ncurtest\\ncurtesy\\ncurtly\\ncurtness\\ncurtnesses\\ncurtsey\\ncurtseyed\\ncurtseying\\ncurtseys\\ncurtsied\\ncurtsies\\ncurtsy\\ncurtsying\\ncurule\\ncurve\\ncurved\\ncurves\\ncurvet\\ncurveted\\ncurveting\\ncurvets\\ncurvetted\\ncurvetting\\ncurvey\\ncurvier\\ncurviest\\ncurving\\ncurvy\\ncuscus\\ncuscuses\\ncusec\\ncusecs\\ncushat\\ncushats\\ncushaw\\ncushaws\\ncushier\\ncushiest\\ncushily\\ncushion\\ncushioned\\ncushioning\\ncushions\\ncushiony\\ncushy\\ncusk\\ncusks\\ncusp\\ncuspate\\ncuspated\\ncusped\\ncuspid\\ncuspidal\\ncuspides\\ncuspidor\\ncuspidors\\ncuspids\\ncuspis\\ncusps\\ncuss\\ncussed\\ncussedly\\ncusser\\ncussers\\ncusses\\ncussing\\ncusso\\ncussos\\ncussword\\ncusswords\\ncustard\\ncustards\\ncustodes\\ncustodial\\ncustodian\\ncustodians\\ncustodies\\ncustody\\ncustom\\ncustomarily\\ncustomary\\ncustomer\\ncustomers\\ncustomize\\ncustomized\\ncustomizes\\ncustomizing\\ncustoms\\ncustos\\ncustumal\\ncustumals\\ncut\\ncutaneous\\ncutaway\\ncutaways\\ncutback\\ncutbacks\\ncutch\\ncutcheries\\ncutchery\\ncutches\\ncutdown\\ncutdowns\\ncute\\ncutely\\ncuteness\\ncutenesses\\ncuter\\ncutes\\ncutesier\\ncutesiest\\ncutest\\ncutesy\\ncutey\\ncuteys\\ncutgrass\\ncutgrasses\\ncuticle\\ncuticles\\ncuticula\\ncuticulae\\ncutie\\ncuties\\ncutin\\ncutinise\\ncutinised\\ncutinises\\ncutinising\\ncutinize\\ncutinized\\ncutinizes\\ncutinizing\\ncutins\\ncutis\\ncutises\\ncutlas\\ncutlases\\ncutlass\\ncutlasses\\ncutler\\ncutleries\\ncutlers\\ncutlery\\ncutlet\\ncutlets\\ncutline\\ncutlines\\ncutoff\\ncutoffs\\ncutout\\ncutouts\\ncutover\\ncutpurse\\ncutpurses\\ncuts\\ncuttable\\ncuttage\\ncuttages\\ncutter\\ncutters\\ncutthroat\\ncutthroats\\ncutties\\ncutting\\ncuttings\\ncuttle\\ncuttled\\ncuttles\\ncuttling\\ncutty\\ncutup\\ncutups\\ncutwater\\ncutwaters\\ncutwork\\ncutworks\\ncutworm\\ncutworms\\ncuvette\\ncuvettes\\ncwm\\ncwms\\ncyan\\ncyanamid\\ncyanamids\\ncyanate\\ncyanates\\ncyanic\\ncyanid\\ncyanide\\ncyanided\\ncyanides\\ncyaniding\\ncyanids\\ncyanin\\ncyanine\\ncyanines\\ncyanins\\ncyanite\\ncyanites\\ncyanitic\\ncyano\\ncyanogen\\ncyanogens\\ncyanosed\\ncyanoses\\ncyanosis\\ncyanotic\\ncyans\\ncyborg\\ncyborgs\\ncycad\\ncycads\\ncycas\\ncycases\\ncycasin\\ncycasins\\ncyclamen\\ncyclamens\\ncyclase\\ncyclases\\ncycle\\ncyclecar\\ncyclecars\\ncycled\\ncycler\\ncyclers\\ncycles\\ncyclic\\ncyclical\\ncyclicly\\ncycling\\ncyclings\\ncyclist\\ncyclists\\ncyclitol\\ncyclitols\\ncyclize\\ncyclized\\ncyclizes\\ncyclizing\\ncyclo\\ncycloid\\ncycloids\\ncyclonal\\ncyclone\\ncyclones\\ncyclonic\\ncyclopaedia\\ncyclopaedias\\ncyclopedia\\ncyclopedias\\ncyclophosphamide\\ncyclophosphamides\\ncyclops\\ncyclorama\\ncycloramas\\ncyclos\\ncycloses\\ncyclosis\\ncyder\\ncyders\\ncyeses\\ncyesis\\ncygnet\\ncygnets\\ncylices\\ncylinder\\ncylindered\\ncylindering\\ncylinders\\ncylix\\ncyma\\ncymae\\ncymar\\ncymars\\ncymas\\ncymatia\\ncymatium\\ncymbal\\ncymbaler\\ncymbalers\\ncymbals\\ncymbling\\ncymblings\\ncyme\\ncymene\\ncymenes\\ncymes\\ncymlin\\ncymling\\ncymlings\\ncymlins\\ncymogene\\ncymogenes\\ncymoid\\ncymol\\ncymols\\ncymose\\ncymosely\\ncymous\\ncynic\\ncynical\\ncynicism\\ncynicisms\\ncynics\\ncynosure\\ncynosures\\ncypher\\ncyphered\\ncyphering\\ncyphers\\ncypres\\ncypreses\\ncypress\\ncypresses\\ncyprian\\ncyprians\\ncyprinid\\ncyprinids\\ncyprus\\ncypruses\\ncypsela\\ncypselae\\ncyst\\ncystein\\ncysteine\\ncysteines\\ncysteins\\ncystic\\ncystine\\ncystines\\ncystitides\\ncystitis\\ncystoid\\ncystoids\\ncysts\\ncytaster\\ncytasters\\ncytidine\\ncytidines\\ncytogenies\\ncytogeny\\ncytologies\\ncytology\\ncyton\\ncytons\\ncytopathological\\ncytosine\\ncytosines\\nczar\\nczardas\\nczardom\\nczardoms\\nczarevna\\nczarevnas\\nczarina\\nczarinas\\nczarism\\nczarisms\\nczarist\\nczarists\\nczaritza\\nczaritzas\\nczars\\nda\\ndab\\ndabbed\\ndabber\\ndabbers\\ndabbing\\ndabble\\ndabbled\\ndabbler\\ndabblers\\ndabbles\\ndabbling\\ndabblings\\ndabchick\\ndabchicks\\ndabs\\ndabster\\ndabsters\\ndace\\ndaces\\ndacha\\ndachas\\ndachshund\\ndachshunds\\ndacker\\ndackered\\ndackering\\ndackers\\ndacoit\\ndacoities\\ndacoits\\ndacoity\\ndactyl\\ndactyli\\ndactylic\\ndactylics\\ndactyls\\ndactylus\\ndad\\ndada\\ndadaism\\ndadaisms\\ndadaist\\ndadaists\\ndadas\\ndaddies\\ndaddle\\ndaddled\\ndaddles\\ndaddling\\ndaddy\\ndado\\ndadoed\\ndadoes\\ndadoing\\ndados\\ndads\\ndaedal\\ndaemon\\ndaemonic\\ndaemons\\ndaff\\ndaffed\\ndaffier\\ndaffiest\\ndaffing\\ndaffodil\\ndaffodils\\ndaffs\\ndaffy\\ndaft\\ndafter\\ndaftest\\ndaftly\\ndaftness\\ndaftnesses\\ndag\\ndagger\\ndaggered\\ndaggering\\ndaggers\\ndaggle\\ndaggled\\ndaggles\\ndaggling\\ndaglock\\ndaglocks\\ndago\\ndagoba\\ndagobas\\ndagoes\\ndagos\\ndags\\ndah\\ndahabeah\\ndahabeahs\\ndahabiah\\ndahabiahs\\ndahabieh\\ndahabiehs\\ndahabiya\\ndahabiyas\\ndahlia\\ndahlias\\ndahoon\\ndahoons\\ndahs\\ndaiker\\ndaikered\\ndaikering\\ndaikers\\ndailies\\ndaily\\ndaimen\\ndaimio\\ndaimios\\ndaimon\\ndaimones\\ndaimonic\\ndaimons\\ndaimyo\\ndaimyos\\ndaintier\\ndainties\\ndaintiest\\ndaintily\\ndaintiness\\ndaintinesses\\ndainty\\ndaiquiri\\ndaiquiris\\ndairies\\ndairy\\ndairying\\ndairyings\\ndairymaid\\ndairymaids\\ndairyman\\ndairymen\\ndais\\ndaises\\ndaishiki\\ndaishikis\\ndaisied\\ndaisies\\ndaisy\\ndak\\ndakerhen\\ndakerhens\\ndakoit\\ndakoities\\ndakoits\\ndakoity\\ndaks\\ndalapon\\ndalapons\\ndalasi\\ndale\\ndales\\ndalesman\\ndalesmen\\ndaleth\\ndaleths\\ndalles\\ndalliance\\ndalliances\\ndallied\\ndallier\\ndalliers\\ndallies\\ndally\\ndallying\\ndalmatian\\ndalmatians\\ndalmatic\\ndalmatics\\ndaltonic\\ndam\\ndamage\\ndamaged\\ndamager\\ndamagers\\ndamages\\ndamaging\\ndaman\\ndamans\\ndamar\\ndamars\\ndamask\\ndamasked\\ndamasking\\ndamasks\\ndame\\ndames\\ndamewort\\ndameworts\\ndammar\\ndammars\\ndammed\\ndammer\\ndammers\\ndamming\\ndamn\\ndamnable\\ndamnably\\ndamnation\\ndamnations\\ndamndest\\ndamndests\\ndamned\\ndamneder\\ndamnedest\\ndamner\\ndamners\\ndamnified\\ndamnifies\\ndamnify\\ndamnifying\\ndamning\\ndamns\\ndamosel\\ndamosels\\ndamozel\\ndamozels\\ndamp\\ndamped\\ndampen\\ndampened\\ndampener\\ndampeners\\ndampening\\ndampens\\ndamper\\ndampers\\ndampest\\ndamping\\ndampish\\ndamply\\ndampness\\ndampnesses\\ndamps\\ndams\\ndamsel\\ndamsels\\ndamson\\ndamsons\\ndance\\ndanced\\ndancer\\ndancers\\ndances\\ndancing\\ndandelion\\ndandelions\\ndander\\ndandered\\ndandering\\ndanders\\ndandier\\ndandies\\ndandiest\\ndandified\\ndandifies\\ndandify\\ndandifying\\ndandily\\ndandle\\ndandled\\ndandler\\ndandlers\\ndandles\\ndandling\\ndandriff\\ndandriffs\\ndandruff\\ndandruffs\\ndandy\\ndandyish\\ndandyism\\ndandyisms\\ndanegeld\\ndanegelds\\ndaneweed\\ndaneweeds\\ndanewort\\ndaneworts\\ndang\\ndanged\\ndanger\\ndangered\\ndangering\\ndangerous\\ndangerously\\ndangers\\ndanging\\ndangle\\ndangled\\ndangler\\ndanglers\\ndangles\\ndangling\\ndangs\\ndanio\\ndanios\\ndank\\ndanker\\ndankest\\ndankly\\ndankness\\ndanknesses\\ndanseur\\ndanseurs\\ndanseuse\\ndanseuses\\ndap\\ndaphne\\ndaphnes\\ndaphnia\\ndaphnias\\ndapped\\ndapper\\ndapperer\\ndapperest\\ndapperly\\ndapping\\ndapple\\ndappled\\ndapples\\ndappling\\ndaps\\ndarb\\ndarbies\\ndarbs\\ndare\\ndared\\ndaredevil\\ndaredevils\\ndareful\\ndarer\\ndarers\\ndares\\ndaresay\\ndaric\\ndarics\\ndaring\\ndaringly\\ndarings\\ndariole\\ndarioles\\ndark\\ndarked\\ndarken\\ndarkened\\ndarkener\\ndarkeners\\ndarkening\\ndarkens\\ndarker\\ndarkest\\ndarkey\\ndarkeys\\ndarkie\\ndarkies\\ndarking\\ndarkish\\ndarkle\\ndarkled\\ndarkles\\ndarklier\\ndarkliest\\ndarkling\\ndarkly\\ndarkness\\ndarknesses\\ndarkroom\\ndarkrooms\\ndarks\\ndarksome\\ndarky\\ndarling\\ndarlings\\ndarn\\ndarndest\\ndarndests\\ndarned\\ndarneder\\ndarnedest\\ndarnel\\ndarnels\\ndarner\\ndarners\\ndarning\\ndarnings\\ndarns\\ndart\\ndarted\\ndarter\\ndarters\\ndarting\\ndartle\\ndartled\\ndartles\\ndartling\\ndartmouth\\ndarts\\ndash\\ndashboard\\ndashboards\\ndashed\\ndasheen\\ndasheens\\ndasher\\ndashers\\ndashes\\ndashier\\ndashiest\\ndashiki\\ndashikis\\ndashing\\ndashpot\\ndashpots\\ndashy\\ndassie\\ndassies\\ndastard\\ndastardly\\ndastards\\ndasyure\\ndasyures\\ndata\\ndatable\\ndatamedia\\ndatapoint\\ndataries\\ndatary\\ndatcha\\ndatchas\\ndate\\ndateable\\ndated\\ndatedly\\ndateless\\ndateline\\ndatelined\\ndatelines\\ndatelining\\ndater\\ndaters\\ndates\\ndating\\ndatival\\ndative\\ndatively\\ndatives\\ndato\\ndatos\\ndatto\\ndattos\\ndatum\\ndatums\\ndatura\\ndaturas\\ndaturic\\ndaub\\ndaube\\ndaubed\\ndauber\\ndauberies\\ndaubers\\ndaubery\\ndaubes\\ndaubier\\ndaubiest\\ndaubing\\ndaubries\\ndaubry\\ndaubs\\ndauby\\ndaughter\\ndaughterly\\ndaughters\\ndaunder\\ndaundered\\ndaundering\\ndaunders\\ndaunt\\ndaunted\\ndaunter\\ndaunters\\ndaunting\\ndauntless\\ndaunts\\ndauphin\\ndauphine\\ndauphines\\ndauphins\\ndaut\\ndauted\\ndautie\\ndauties\\ndauting\\ndauts\\ndaven\\ndavened\\ndavening\\ndavenport\\ndavenports\\ndavens\\ndavies\\ndavit\\ndavits\\ndavy\\ndaw\\ndawdle\\ndawdled\\ndawdler\\ndawdlers\\ndawdles\\ndawdling\\ndawed\\ndawen\\ndawing\\ndawk\\ndawks\\ndawn\\ndawned\\ndawning\\ndawnlike\\ndawns\\ndaws\\ndawt\\ndawted\\ndawtie\\ndawties\\ndawting\\ndawts\\nday\\ndaybed\\ndaybeds\\ndaybook\\ndaybooks\\ndaybreak\\ndaybreaks\\ndaydream\\ndaydreamed\\ndaydreaming\\ndaydreams\\ndaydreamt\\ndayflies\\ndayfly\\ndayglow\\ndayglows\\ndaylight\\ndaylighted\\ndaylighting\\ndaylights\\ndaylilies\\ndaylily\\ndaylit\\ndaylong\\ndaymare\\ndaymares\\ndayroom\\ndayrooms\\ndays\\ndayside\\ndaysides\\ndaysman\\ndaysmen\\ndaystar\\ndaystars\\ndaytime\\ndaytimes\\ndaze\\ndazed\\ndazedly\\ndazes\\ndazing\\ndazzle\\ndazzled\\ndazzler\\ndazzlers\\ndazzles\\ndazzling\\nde\\ndeacon\\ndeaconed\\ndeaconess\\ndeaconesses\\ndeaconing\\ndeaconries\\ndeaconry\\ndeacons\\ndead\\ndeadbeat\\ndeadbeats\\ndeaden\\ndeadened\\ndeadener\\ndeadeners\\ndeadening\\ndeadens\\ndeader\\ndeadest\\ndeadeye\\ndeadeyes\\ndeadfall\\ndeadfalls\\ndeadhead\\ndeadheaded\\ndeadheading\\ndeadheads\\ndeadlier\\ndeadliest\\ndeadline\\ndeadlines\\ndeadliness\\ndeadlinesses\\ndeadlock\\ndeadlocked\\ndeadlocking\\ndeadlocks\\ndeadly\\ndeadness\\ndeadnesses\\ndeadpan\\ndeadpanned\\ndeadpanning\\ndeadpans\\ndeads\\ndeadwood\\ndeadwoods\\ndeaerate\\ndeaerated\\ndeaerates\\ndeaerating\\ndeaf\\ndeafen\\ndeafened\\ndeafening\\ndeafens\\ndeafer\\ndeafest\\ndeafish\\ndeafly\\ndeafness\\ndeafnesses\\ndeair\\ndeaired\\ndeairing\\ndeairs\\ndeal\\ndealate\\ndealated\\ndealates\\ndealer\\ndealers\\ndealfish\\ndealfishes\\ndealing\\ndealings\\ndeals\\ndealt\\ndean\\ndeaned\\ndeaneries\\ndeanery\\ndeaning\\ndeans\\ndeanship\\ndeanships\\ndear\\ndearer\\ndearest\\ndearie\\ndearies\\ndearly\\ndearness\\ndearnesses\\ndears\\ndearth\\ndearths\\ndeary\\ndeash\\ndeashed\\ndeashes\\ndeashing\\ndeasil\\ndeath\\ndeathbed\\ndeathbeds\\ndeathcup\\ndeathcups\\ndeathful\\ndeathless\\ndeathly\\ndeaths\\ndeathy\\ndeave\\ndeaved\\ndeaves\\ndeaving\\ndeb\\ndebacle\\ndebacles\\ndebar\\ndebark\\ndebarkation\\ndebarkations\\ndebarked\\ndebarking\\ndebarks\\ndebarred\\ndebarring\\ndebars\\ndebase\\ndebased\\ndebasement\\ndebasements\\ndebaser\\ndebasers\\ndebases\\ndebasing\\ndebatable\\ndebate\\ndebated\\ndebater\\ndebaters\\ndebates\\ndebating\\ndebauch\\ndebauched\\ndebaucheries\\ndebauchery\\ndebauches\\ndebauching\\ndebilitate\\ndebilitated\\ndebilitates\\ndebilitating\\ndebilities\\ndebility\\ndebit\\ndebited\\ndebiting\\ndebits\\ndebonair\\ndebone\\ndeboned\\ndeboner\\ndeboners\\ndebones\\ndeboning\\ndebouch\\ndebouche\\ndebouched\\ndebouches\\ndebouching\\ndebrief\\ndebriefed\\ndebriefing\\ndebriefs\\ndebris\\ndebruise\\ndebruised\\ndebruises\\ndebruising\\ndebs\\ndebt\\ndebtless\\ndebtor\\ndebtors\\ndebts\\ndebug\\ndebugged\\ndebugging\\ndebugs\\ndebunk\\ndebunked\\ndebunker\\ndebunkers\\ndebunking\\ndebunks\\ndebut\\ndebutant\\ndebutante\\ndebutantes\\ndebutants\\ndebuted\\ndebuting\\ndebuts\\ndebye\\ndebyes\\ndecadal\\ndecade\\ndecadence\\ndecadent\\ndecadents\\ndecades\\ndecagon\\ndecagons\\ndecagram\\ndecagrams\\ndecal\\ndecals\\ndecamp\\ndecamped\\ndecamping\\ndecamps\\ndecanal\\ndecane\\ndecanes\\ndecant\\ndecanted\\ndecanter\\ndecanters\\ndecanting\\ndecants\\ndecapitatation\\ndecapitatations\\ndecapitate\\ndecapitated\\ndecapitates\\ndecapitating\\ndecapod\\ndecapods\\ndecare\\ndecares\\ndecay\\ndecayed\\ndecayer\\ndecayers\\ndecaying\\ndecays\\ndecease\\ndeceased\\ndeceases\\ndeceasing\\ndecedent\\ndecedents\\ndeceit\\ndeceitful\\ndeceitfully\\ndeceitfulness\\ndeceitfulnesses\\ndeceits\\ndeceive\\ndeceived\\ndeceiver\\ndeceivers\\ndeceives\\ndeceiving\\ndecelerate\\ndecelerated\\ndecelerates\\ndecelerating\\ndecemvir\\ndecemviri\\ndecemvirs\\ndecenaries\\ndecenary\\ndecencies\\ndecency\\ndecennia\\ndecent\\ndecenter\\ndecentered\\ndecentering\\ndecenters\\ndecentest\\ndecently\\ndecentralization\\ndecentre\\ndecentred\\ndecentres\\ndecentring\\ndeception\\ndeceptions\\ndeceptively\\ndecern\\ndecerned\\ndecerning\\ndecerns\\ndeciare\\ndeciares\\ndecibel\\ndecibels\\ndecide\\ndecided\\ndecidedly\\ndecider\\ndeciders\\ndecides\\ndeciding\\ndecidua\\ndeciduae\\ndecidual\\ndeciduas\\ndeciduous\\ndecigram\\ndecigrams\\ndecile\\ndeciles\\ndecimal\\ndecimally\\ndecimals\\ndecimate\\ndecimated\\ndecimates\\ndecimating\\ndecipher\\ndecipherable\\ndeciphered\\ndeciphering\\ndeciphers\\ndecision\\ndecisions\\ndecisive\\ndecisively\\ndecisiveness\\ndecisivenesses\\ndeck\\ndecked\\ndeckel\\ndeckels\\ndecker\\ndeckers\\ndeckhand\\ndeckhands\\ndecking\\ndeckings\\ndeckle\\ndeckles\\ndecks\\ndeclaim\\ndeclaimed\\ndeclaiming\\ndeclaims\\ndeclamation\\ndeclamations\\ndeclaration\\ndeclarations\\ndeclarative\\ndeclaratory\\ndeclare\\ndeclared\\ndeclarer\\ndeclarers\\ndeclares\\ndeclaring\\ndeclass\\ndeclasse\\ndeclassed\\ndeclasses\\ndeclassing\\ndeclension\\ndeclensions\\ndeclination\\ndeclinations\\ndecline\\ndeclined\\ndecliner\\ndecliners\\ndeclines\\ndeclining\\ndecoct\\ndecocted\\ndecocting\\ndecocts\\ndecode\\ndecoded\\ndecoder\\ndecoders\\ndecodes\\ndecoding\\ndecolor\\ndecolored\\ndecoloring\\ndecolors\\ndecolour\\ndecoloured\\ndecolouring\\ndecolours\\ndecompose\\ndecomposed\\ndecomposes\\ndecomposing\\ndecomposition\\ndecompositions\\ndecongestant\\ndecongestants\\ndecor\\ndecorate\\ndecorated\\ndecorates\\ndecorating\\ndecoration\\ndecorations\\ndecorative\\ndecorator\\ndecorators\\ndecorous\\ndecorously\\ndecorousness\\ndecorousnesses\\ndecors\\ndecorum\\ndecorums\\ndecoy\\ndecoyed\\ndecoyer\\ndecoyers\\ndecoying\\ndecoys\\ndecrease\\ndecreased\\ndecreases\\ndecreasing\\ndecree\\ndecreed\\ndecreeing\\ndecreer\\ndecreers\\ndecrees\\ndecrepit\\ndecrescendo\\ndecretal\\ndecretals\\ndecrial\\ndecrials\\ndecried\\ndecrier\\ndecriers\\ndecries\\ndecrown\\ndecrowned\\ndecrowning\\ndecrowns\\ndecry\\ndecrying\\ndecrypt\\ndecrypted\\ndecrypting\\ndecrypts\\ndecuman\\ndecuple\\ndecupled\\ndecuples\\ndecupling\\ndecuries\\ndecurion\\ndecurions\\ndecurve\\ndecurved\\ndecurves\\ndecurving\\ndecury\\ndedal\\ndedans\\ndedicate\\ndedicated\\ndedicates\\ndedicating\\ndedication\\ndedications\\ndedicatory\\ndeduce\\ndeduced\\ndeduces\\ndeducible\\ndeducing\\ndeduct\\ndeducted\\ndeductible\\ndeducting\\ndeduction\\ndeductions\\ndeductive\\ndeducts\\ndee\\ndeed\\ndeeded\\ndeedier\\ndeediest\\ndeeding\\ndeedless\\ndeeds\\ndeedy\\ndeejay\\ndeejays\\ndeem\\ndeemed\\ndeeming\\ndeems\\ndeemster\\ndeemsters\\ndeep\\ndeepen\\ndeepened\\ndeepener\\ndeepeners\\ndeepening\\ndeepens\\ndeeper\\ndeepest\\ndeeply\\ndeepness\\ndeepnesses\\ndeeps\\ndeer\\ndeerflies\\ndeerfly\\ndeers\\ndeerskin\\ndeerskins\\ndeerweed\\ndeerweeds\\ndeeryard\\ndeeryards\\ndees\\ndeewan\\ndeewans\\ndeface\\ndefaced\\ndefacement\\ndefacements\\ndefacer\\ndefacers\\ndefaces\\ndefacing\\ndefamation\\ndefamations\\ndefamatory\\ndefame\\ndefamed\\ndefamer\\ndefamers\\ndefames\\ndefaming\\ndefat\\ndefats\\ndefatted\\ndefatting\\ndefault\\ndefaulted\\ndefaulting\\ndefaults\\ndefeat\\ndefeated\\ndefeater\\ndefeaters\\ndefeating\\ndefeats\\ndefecate\\ndefecated\\ndefecates\\ndefecating\\ndefecation\\ndefecations\\ndefect\\ndefected\\ndefecting\\ndefection\\ndefections\\ndefective\\ndefectives\\ndefector\\ndefectors\\ndefects\\ndefence\\ndefences\\ndefend\\ndefendant\\ndefendants\\ndefended\\ndefender\\ndefenders\\ndefending\\ndefends\\ndefense\\ndefensed\\ndefenseless\\ndefenses\\ndefensible\\ndefensing\\ndefensive\\ndefer\\ndeference\\ndeferences\\ndeferent\\ndeferential\\ndeferents\\ndeferment\\ndeferments\\ndeferrable\\ndeferral\\ndeferrals\\ndeferred\\ndeferrer\\ndeferrers\\ndeferring\\ndefers\\ndefi\\ndefiance\\ndefiances\\ndefiant\\ndeficiencies\\ndeficiency\\ndeficient\\ndeficit\\ndeficits\\ndefied\\ndefier\\ndefiers\\ndefies\\ndefilade\\ndefiladed\\ndefilades\\ndefilading\\ndefile\\ndefiled\\ndefilement\\ndefilements\\ndefiler\\ndefilers\\ndefiles\\ndefiling\\ndefinable\\ndefinably\\ndefine\\ndefined\\ndefiner\\ndefiners\\ndefines\\ndefining\\ndefinite\\ndefinitely\\ndefinition\\ndefinitions\\ndefinitive\\ndefis\\ndeflate\\ndeflated\\ndeflates\\ndeflating\\ndeflation\\ndeflations\\ndeflator\\ndeflators\\ndeflea\\ndefleaed\\ndefleaing\\ndefleas\\ndeflect\\ndeflected\\ndeflecting\\ndeflection\\ndeflections\\ndeflects\\ndeflexed\\ndeflower\\ndeflowered\\ndeflowering\\ndeflowers\\ndefoam\\ndefoamed\\ndefoamer\\ndefoamers\\ndefoaming\\ndefoams\\ndefog\\ndefogged\\ndefogger\\ndefoggers\\ndefogging\\ndefogs\\ndefoliant\\ndefoliants\\ndefoliate\\ndefoliated\\ndefoliates\\ndefoliating\\ndefoliation\\ndefoliations\\ndeforce\\ndeforced\\ndeforces\\ndeforcing\\ndeforest\\ndeforested\\ndeforesting\\ndeforests\\ndeform\\ndeformation\\ndeformations\\ndeformed\\ndeformer\\ndeformers\\ndeforming\\ndeformities\\ndeformity\\ndeforms\\ndefraud\\ndefrauded\\ndefrauding\\ndefrauds\\ndefray\\ndefrayal\\ndefrayals\\ndefrayed\\ndefrayer\\ndefrayers\\ndefraying\\ndefrays\\ndefrock\\ndefrocked\\ndefrocking\\ndefrocks\\ndefrost\\ndefrosted\\ndefroster\\ndefrosters\\ndefrosting\\ndefrosts\\ndeft\\ndefter\\ndeftest\\ndeftly\\ndeftness\\ndeftnesses\\ndefunct\\ndefuse\\ndefused\\ndefuses\\ndefusing\\ndefuze\\ndefuzed\\ndefuzes\\ndefuzing\\ndefy\\ndefying\\ndegage\\ndegame\\ndegames\\ndegami\\ndegamis\\ndegas\\ndegases\\ndegassed\\ndegasser\\ndegassers\\ndegasses\\ndegassing\\ndegauss\\ndegaussed\\ndegausses\\ndegaussing\\ndegeneracies\\ndegeneracy\\ndegenerate\\ndegenerated\\ndegenerates\\ndegenerating\\ndegeneration\\ndegenerations\\ndegenerative\\ndegerm\\ndegermed\\ndegerming\\ndegerms\\ndeglaze\\ndeglazed\\ndeglazes\\ndeglazing\\ndegradable\\ndegradation\\ndegradations\\ndegrade\\ndegraded\\ndegrader\\ndegraders\\ndegrades\\ndegrading\\ndegrease\\ndegreased\\ndegreases\\ndegreasing\\ndegree\\ndegreed\\ndegrees\\ndegum\\ndegummed\\ndegumming\\ndegums\\ndegust\\ndegusted\\ndegusting\\ndegusts\\ndehisce\\ndehisced\\ndehisces\\ndehiscing\\ndehorn\\ndehorned\\ndehorner\\ndehorners\\ndehorning\\ndehorns\\ndehort\\ndehorted\\ndehorting\\ndehorts\\ndehydrate\\ndehydrated\\ndehydrates\\ndehydrating\\ndehydration\\ndehydrations\\ndei\\ndeice\\ndeiced\\ndeicer\\ndeicers\\ndeices\\ndeicidal\\ndeicide\\ndeicides\\ndeicing\\ndeictic\\ndeific\\ndeifical\\ndeification\\ndeifications\\ndeified\\ndeifier\\ndeifies\\ndeiform\\ndeify\\ndeifying\\ndeign\\ndeigned\\ndeigning\\ndeigns\\ndeil\\ndeils\\ndeionize\\ndeionized\\ndeionizes\\ndeionizing\\ndeism\\ndeisms\\ndeist\\ndeistic\\ndeists\\ndeities\\ndeity\\ndeject\\ndejecta\\ndejected\\ndejecting\\ndejection\\ndejections\\ndejects\\ndejeuner\\ndejeuners\\ndekagram\\ndekagrams\\ndekare\\ndekares\\ndeke\\ndeked\\ndekes\\ndeking\\ndel\\ndelaine\\ndelaines\\ndelate\\ndelated\\ndelates\\ndelating\\ndelation\\ndelations\\ndelator\\ndelators\\ndelay\\ndelayed\\ndelayer\\ndelayers\\ndelaying\\ndelays\\ndele\\ndelead\\ndeleaded\\ndeleading\\ndeleads\\ndeled\\ndelegacies\\ndelegacy\\ndelegate\\ndelegated\\ndelegates\\ndelegating\\ndelegation\\ndelegations\\ndeleing\\ndeles\\ndelete\\ndeleted\\ndeleterious\\ndeletes\\ndeleting\\ndeletion\\ndeletions\\ndelf\\ndelfs\\ndelft\\ndelfts\\ndeli\\ndeliberate\\ndeliberated\\ndeliberately\\ndeliberateness\\ndeliberatenesses\\ndeliberates\\ndeliberating\\ndeliberation\\ndeliberations\\ndeliberative\\ndelicacies\\ndelicacy\\ndelicate\\ndelicates\\ndelicatessen\\ndelicatessens\\ndelicious\\ndeliciously\\ndelict\\ndelicts\\ndelight\\ndelighted\\ndelighting\\ndelights\\ndelime\\ndelimed\\ndelimes\\ndeliming\\ndelimit\\ndelimited\\ndelimiter\\ndelimiters\\ndelimiting\\ndelimits\\ndelineate\\ndelineated\\ndelineates\\ndelineating\\ndelineation\\ndelineations\\ndelinquencies\\ndelinquency\\ndelinquent\\ndelinquents\\ndeliria\\ndelirious\\ndelirium\\ndeliriums\\ndelis\\ndelist\\ndelisted\\ndelisting\\ndelists\\ndeliver\\ndeliverance\\ndeliverances\\ndelivered\\ndeliverer\\ndeliverers\\ndeliveries\\ndelivering\\ndelivers\\ndelivery\\ndell\\ndellies\\ndells\\ndelly\\ndelouse\\ndeloused\\ndelouses\\ndelousing\\ndels\\ndelta\\ndeltaic\\ndeltas\\ndeltic\\ndeltoid\\ndeltoids\\ndelude\\ndeluded\\ndeluder\\ndeluders\\ndeludes\\ndeluding\\ndeluge\\ndeluged\\ndeluges\\ndeluging\\ndelusion\\ndelusions\\ndelusive\\ndelusory\\ndeluster\\ndelustered\\ndelustering\\ndelusters\\ndeluxe\\ndelve\\ndelved\\ndelver\\ndelvers\\ndelves\\ndelving\\ndemagog\\ndemagogies\\ndemagogs\\ndemagogue\\ndemagogueries\\ndemagoguery\\ndemagogues\\ndemagogy\\ndemand\\ndemanded\\ndemander\\ndemanders\\ndemanding\\ndemands\\ndemarcation\\ndemarcations\\ndemarche\\ndemarches\\ndemark\\ndemarked\\ndemarking\\ndemarks\\ndemast\\ndemasted\\ndemasting\\ndemasts\\ndeme\\ndemean\\ndemeaned\\ndemeaning\\ndemeanor\\ndemeanors\\ndemeans\\ndement\\ndemented\\ndementia\\ndementias\\ndementing\\ndements\\ndemerit\\ndemerited\\ndemeriting\\ndemerits\\ndemes\\ndemesne\\ndemesnes\\ndemies\\ndemigod\\ndemigods\\ndemijohn\\ndemijohns\\ndemilune\\ndemilunes\\ndemirep\\ndemireps\\ndemise\\ndemised\\ndemises\\ndemising\\ndemit\\ndemitasse\\ndemitasses\\ndemits\\ndemitted\\ndemitting\\ndemiurge\\ndemiurges\\ndemivolt\\ndemivolts\\ndemo\\ndemob\\ndemobbed\\ndemobbing\\ndemobilization\\ndemobilizations\\ndemobilize\\ndemobilized\\ndemobilizes\\ndemobilizing\\ndemobs\\ndemocracies\\ndemocracy\\ndemocrat\\ndemocratic\\ndemocratize\\ndemocratized\\ndemocratizes\\ndemocratizing\\ndemocrats\\ndemode\\ndemoded\\ndemographic\\ndemography\\ndemolish\\ndemolished\\ndemolishes\\ndemolishing\\ndemolition\\ndemolitions\\ndemon\\ndemoness\\ndemonesses\\ndemoniac\\ndemoniacs\\ndemonian\\ndemonic\\ndemonise\\ndemonised\\ndemonises\\ndemonising\\ndemonism\\ndemonisms\\ndemonist\\ndemonists\\ndemonize\\ndemonized\\ndemonizes\\ndemonizing\\ndemons\\ndemonstrable\\ndemonstrate\\ndemonstrated\\ndemonstrates\\ndemonstrating\\ndemonstration\\ndemonstrations\\ndemonstrative\\ndemonstrator\\ndemonstrators\\ndemoralize\\ndemoralized\\ndemoralizes\\ndemoralizing\\ndemos\\ndemoses\\ndemote\\ndemoted\\ndemotes\\ndemotic\\ndemotics\\ndemoting\\ndemotion\\ndemotions\\ndemotist\\ndemotists\\ndemount\\ndemounted\\ndemounting\\ndemounts\\ndempster\\ndempsters\\ndemur\\ndemure\\ndemurely\\ndemurer\\ndemurest\\ndemurral\\ndemurrals\\ndemurred\\ndemurrer\\ndemurrers\\ndemurring\\ndemurs\\ndemy\\nden\\ndenarii\\ndenarius\\ndenary\\ndenature\\ndenatured\\ndenatures\\ndenaturing\\ndenazified\\ndenazifies\\ndenazify\\ndenazifying\\ndendrite\\ndendrites\\ndendroid\\ndendron\\ndendrons\\ndene\\ndenes\\ndengue\\ndengues\\ndeniable\\ndeniably\\ndenial\\ndenials\\ndenied\\ndenier\\ndeniers\\ndenies\\ndenim\\ndenims\\ndenizen\\ndenizened\\ndenizening\\ndenizens\\ndenned\\ndenning\\ndenomination\\ndenominational\\ndenominations\\ndenominator\\ndenominators\\ndenotation\\ndenotations\\ndenotative\\ndenote\\ndenoted\\ndenotes\\ndenoting\\ndenotive\\ndenouement\\ndenouements\\ndenounce\\ndenounced\\ndenounces\\ndenouncing\\ndens\\ndense\\ndensely\\ndenseness\\ndensenesses\\ndenser\\ndensest\\ndensified\\ndensifies\\ndensify\\ndensifying\\ndensities\\ndensity\\ndent\\ndental\\ndentalia\\ndentally\\ndentals\\ndentate\\ndentated\\ndented\\ndenticle\\ndenticles\\ndentifrice\\ndentifrices\\ndentil\\ndentils\\ndentin\\ndentinal\\ndentine\\ndentines\\ndenting\\ndentins\\ndentist\\ndentistries\\ndentistry\\ndentists\\ndentition\\ndentitions\\ndentoid\\ndents\\ndentural\\ndenture\\ndentures\\ndenudate\\ndenudated\\ndenudates\\ndenudating\\ndenude\\ndenuded\\ndenuder\\ndenuders\\ndenudes\\ndenuding\\ndenunciation\\ndenunciations\\ndeny\\ndenying\\ndeodand\\ndeodands\\ndeodar\\ndeodara\\ndeodaras\\ndeodars\\ndeodorant\\ndeodorants\\ndeodorize\\ndeodorized\\ndeodorizes\\ndeodorizing\\ndepaint\\ndepainted\\ndepainting\\ndepaints\\ndepart\\ndeparted\\ndeparting\\ndepartment\\ndepartmental\\ndepartments\\ndeparts\\ndeparture\\ndepartures\\ndepend\\ndependabilities\\ndependability\\ndependable\\ndepended\\ndependence\\ndependences\\ndependencies\\ndependency\\ndependent\\ndependents\\ndepending\\ndepends\\ndeperm\\ndepermed\\ndeperming\\ndeperms\\ndepict\\ndepicted\\ndepicter\\ndepicters\\ndepicting\\ndepiction\\ndepictions\\ndepictor\\ndepictors\\ndepicts\\ndepilate\\ndepilated\\ndepilates\\ndepilating\\ndeplane\\ndeplaned\\ndeplanes\\ndeplaning\\ndeplete\\ndepleted\\ndepletes\\ndepleting\\ndepletion\\ndepletions\\ndeplorable\\ndeplore\\ndeplored\\ndeplorer\\ndeplorers\\ndeplores\\ndeploring\\ndeploy\\ndeployed\\ndeploying\\ndeployment\\ndeployments\\ndeploys\\ndeplume\\ndeplumed\\ndeplumes\\ndepluming\\ndepolish\\ndepolished\\ndepolishes\\ndepolishing\\ndepone\\ndeponed\\ndeponent\\ndeponents\\ndepones\\ndeponing\\ndeport\\ndeportation\\ndeportations\\ndeported\\ndeportee\\ndeportees\\ndeporting\\ndeportment\\ndeportments\\ndeports\\ndeposal\\ndeposals\\ndepose\\ndeposed\\ndeposer\\ndeposers\\ndeposes\\ndeposing\\ndeposit\\ndeposited\\ndepositing\\ndeposition\\ndepositions\\ndepositor\\ndepositories\\ndepositors\\ndepository\\ndeposits\\ndepot\\ndepots\\ndepravation\\ndepravations\\ndeprave\\ndepraved\\ndepraver\\ndepravers\\ndepraves\\ndepraving\\ndepravities\\ndepravity\\ndeprecate\\ndeprecated\\ndeprecates\\ndeprecating\\ndeprecation\\ndeprecations\\ndeprecatory\\ndepreciate\\ndepreciated\\ndepreciates\\ndepreciating\\ndepreciation\\ndepreciations\\ndepredation\\ndepredations\\ndepress\\ndepressant\\ndepressants\\ndepressed\\ndepresses\\ndepressing\\ndepression\\ndepressions\\ndepressive\\ndepressor\\ndepressors\\ndeprival\\ndeprivals\\ndeprive\\ndeprived\\ndepriver\\ndeprivers\\ndeprives\\ndepriving\\ndepside\\ndepsides\\ndepth\\ndepths\\ndepurate\\ndepurated\\ndepurates\\ndepurating\\ndeputation\\ndeputations\\ndepute\\ndeputed\\ndeputes\\ndeputies\\ndeputing\\ndeputize\\ndeputized\\ndeputizes\\ndeputizing\\ndeputy\\nderaign\\nderaigned\\nderaigning\\nderaigns\\nderail\\nderailed\\nderailing\\nderails\\nderange\\nderanged\\nderangement\\nderangements\\nderanges\\nderanging\\nderat\\nderats\\nderatted\\nderatting\\nderay\\nderays\\nderbies\\nderby\\ndere\\nderelict\\ndereliction\\nderelictions\\nderelicts\\nderide\\nderided\\nderider\\nderiders\\nderides\\nderiding\\nderinger\\nderingers\\nderision\\nderisions\\nderisive\\nderisory\\nderivate\\nderivates\\nderivation\\nderivations\\nderivative\\nderivatives\\nderive\\nderived\\nderiver\\nderivers\\nderives\\nderiving\\nderm\\nderma\\ndermal\\ndermas\\ndermatitis\\ndermatologies\\ndermatologist\\ndermatologists\\ndermatology\\ndermic\\ndermis\\ndermises\\ndermoid\\nderms\\ndernier\\nderogate\\nderogated\\nderogates\\nderogating\\nderogatory\\nderrick\\nderricks\\nderriere\\nderrieres\\nderries\\nderris\\nderrises\\nderry\\ndervish\\ndervishes\\ndes\\ndesalt\\ndesalted\\ndesalter\\ndesalters\\ndesalting\\ndesalts\\ndesand\\ndesanded\\ndesanding\\ndesands\\ndescant\\ndescanted\\ndescanting\\ndescants\\ndescend\\ndescendant\\ndescendants\\ndescended\\ndescendent\\ndescendents\\ndescending\\ndescends\\ndescent\\ndescents\\ndescribable\\ndescribably\\ndescribe\\ndescribed\\ndescribes\\ndescribing\\ndescried\\ndescrier\\ndescriers\\ndescries\\ndescription\\ndescriptions\\ndescriptive\\ndescriptor\\ndescriptors\\ndescry\\ndescrying\\ndesecrate\\ndesecrated\\ndesecrates\\ndesecrating\\ndesecration\\ndesecrations\\ndesegregate\\ndesegregated\\ndesegregates\\ndesegregating\\ndesegregation\\ndesegregations\\ndeselect\\ndeselected\\ndeselecting\\ndeselects\\ndesert\\ndeserted\\ndeserter\\ndeserters\\ndesertic\\ndeserting\\ndeserts\\ndeserve\\ndeserved\\ndeserver\\ndeservers\\ndeserves\\ndeserving\\ndesex\\ndesexed\\ndesexes\\ndesexing\\ndesiccate\\ndesiccated\\ndesiccates\\ndesiccating\\ndesiccation\\ndesiccations\\ndesign\\ndesignate\\ndesignated\\ndesignates\\ndesignating\\ndesignation\\ndesignations\\ndesigned\\ndesignee\\ndesignees\\ndesigner\\ndesigners\\ndesigning\\ndesigns\\ndesilver\\ndesilvered\\ndesilvering\\ndesilvers\\ndesinent\\ndesirabilities\\ndesirability\\ndesirable\\ndesire\\ndesired\\ndesirer\\ndesirers\\ndesires\\ndesiring\\ndesirous\\ndesist\\ndesisted\\ndesisting\\ndesists\\ndesk\\ndeskman\\ndeskmen\\ndesks\\ndesman\\ndesmans\\ndesmid\\ndesmids\\ndesmoid\\ndesmoids\\ndesolate\\ndesolated\\ndesolates\\ndesolating\\ndesolation\\ndesolations\\ndesorb\\ndesorbed\\ndesorbing\\ndesorbs\\ndespair\\ndespaired\\ndespairing\\ndespairs\\ndespatch\\ndespatched\\ndespatches\\ndespatching\\ndesperado\\ndesperadoes\\ndesperados\\ndesperate\\ndesperately\\ndesperation\\ndesperations\\ndespicable\\ndespise\\ndespised\\ndespiser\\ndespisers\\ndespises\\ndespising\\ndespite\\ndespited\\ndespites\\ndespiting\\ndespoil\\ndespoiled\\ndespoiling\\ndespoils\\ndespond\\ndesponded\\ndespondencies\\ndespondency\\ndespondent\\ndesponding\\ndesponds\\ndespot\\ndespotic\\ndespotism\\ndespotisms\\ndespots\\ndesquamation\\ndesquamations\\ndessert\\ndesserts\\ndestain\\ndestained\\ndestaining\\ndestains\\ndestination\\ndestinations\\ndestine\\ndestined\\ndestines\\ndestinies\\ndestining\\ndestiny\\ndestitute\\ndestitution\\ndestitutions\\ndestrier\\ndestriers\\ndestroy\\ndestroyed\\ndestroyer\\ndestroyers\\ndestroying\\ndestroys\\ndestruct\\ndestructed\\ndestructibilities\\ndestructibility\\ndestructible\\ndestructing\\ndestruction\\ndestructions\\ndestructive\\ndestructs\\ndesugar\\ndesugared\\ndesugaring\\ndesugars\\ndesulfur\\ndesulfured\\ndesulfuring\\ndesulfurs\\ndesultory\\ndetach\\ndetached\\ndetacher\\ndetachers\\ndetaches\\ndetaching\\ndetachment\\ndetachments\\ndetail\\ndetailed\\ndetailer\\ndetailers\\ndetailing\\ndetails\\ndetain\\ndetained\\ndetainee\\ndetainees\\ndetainer\\ndetainers\\ndetaining\\ndetains\\ndetect\\ndetectable\\ndetected\\ndetecter\\ndetecters\\ndetecting\\ndetection\\ndetections\\ndetective\\ndetectives\\ndetector\\ndetectors\\ndetects\\ndetent\\ndetente\\ndetentes\\ndetention\\ndetentions\\ndetents\\ndeter\\ndeterge\\ndeterged\\ndetergent\\ndetergents\\ndeterger\\ndetergers\\ndeterges\\ndeterging\\ndeteriorate\\ndeteriorated\\ndeteriorates\\ndeteriorating\\ndeterioration\\ndeteriorations\\ndeterminant\\ndeterminants\\ndetermination\\ndeterminations\\ndetermine\\ndetermined\\ndetermines\\ndetermining\\ndeterred\\ndeterrence\\ndeterrences\\ndeterrent\\ndeterrents\\ndeterrer\\ndeterrers\\ndeterring\\ndeters\\ndetest\\ndetestable\\ndetestation\\ndetestations\\ndetested\\ndetester\\ndetesters\\ndetesting\\ndetests\\ndethrone\\ndethroned\\ndethrones\\ndethroning\\ndetick\\ndeticked\\ndeticker\\ndetickers\\ndeticking\\ndeticks\\ndetinue\\ndetinues\\ndetonate\\ndetonated\\ndetonates\\ndetonating\\ndetonation\\ndetonations\\ndetonator\\ndetonators\\ndetour\\ndetoured\\ndetouring\\ndetours\\ndetoxified\\ndetoxifies\\ndetoxify\\ndetoxifying\\ndetract\\ndetracted\\ndetracting\\ndetraction\\ndetractions\\ndetractor\\ndetractors\\ndetracts\\ndetrain\\ndetrained\\ndetraining\\ndetrains\\ndetriment\\ndetrimental\\ndetrimentally\\ndetriments\\ndetrital\\ndetritus\\ndetrude\\ndetruded\\ndetrudes\\ndetruding\\ndeuce\\ndeuced\\ndeucedly\\ndeuces\\ndeucing\\ndeuteric\\ndeuteron\\ndeuterons\\ndeutzia\\ndeutzias\\ndev\\ndeva\\ndevaluation\\ndevaluations\\ndevalue\\ndevalued\\ndevalues\\ndevaluing\\ndevas\\ndevastate\\ndevastated\\ndevastates\\ndevastating\\ndevastation\\ndevastations\\ndevein\\ndeveined\\ndeveining\\ndeveins\\ndevel\\ndeveled\\ndeveling\\ndevelop\\ndevelope\\ndeveloped\\ndeveloper\\ndevelopers\\ndevelopes\\ndeveloping\\ndevelopment\\ndevelopmental\\ndevelopments\\ndevelops\\ndevels\\ndevest\\ndevested\\ndevesting\\ndevests\\ndeviance\\ndeviances\\ndeviancies\\ndeviancy\\ndeviant\\ndeviants\\ndeviate\\ndeviated\\ndeviates\\ndeviating\\ndeviation\\ndeviations\\ndeviator\\ndeviators\\ndevice\\ndevices\\ndevil\\ndeviled\\ndeviling\\ndevilish\\ndevilkin\\ndevilkins\\ndevilled\\ndevilling\\ndevilries\\ndevilry\\ndevils\\ndeviltries\\ndeviltry\\ndevious\\ndevisal\\ndevisals\\ndevise\\ndevised\\ndevisee\\ndevisees\\ndeviser\\ndevisers\\ndevises\\ndevising\\ndevisor\\ndevisors\\ndevoice\\ndevoiced\\ndevoices\\ndevoicing\\ndevoid\\ndevoir\\ndevoirs\\ndevolve\\ndevolved\\ndevolves\\ndevolving\\ndevon\\ndevons\\ndevote\\ndevoted\\ndevotee\\ndevotees\\ndevotes\\ndevoting\\ndevotion\\ndevotional\\ndevotions\\ndevour\\ndevoured\\ndevourer\\ndevourers\\ndevouring\\ndevours\\ndevout\\ndevoutly\\ndevoutness\\ndevoutnesses\\ndevs\\ndew\\ndewan\\ndewans\\ndewater\\ndewatered\\ndewatering\\ndewaters\\ndewax\\ndewaxed\\ndewaxes\\ndewaxing\\ndewberries\\ndewberry\\ndewclaw\\ndewclaws\\ndewdrop\\ndewdrops\\ndewed\\ndewfall\\ndewfalls\\ndewier\\ndewiest\\ndewily\\ndewiness\\ndewinesses\\ndewing\\ndewlap\\ndewlaps\\ndewless\\ndewool\\ndewooled\\ndewooling\\ndewools\\ndeworm\\ndewormed\\ndeworming\\ndeworms\\ndews\\ndewy\\ndex\\ndexes\\ndexies\\ndexter\\ndexterous\\ndexterously\\ndextral\\ndextran\\ndextrans\\ndextrin\\ndextrine\\ndextrines\\ndextrins\\ndextro\\ndextrose\\ndextroses\\ndextrous\\ndey\\ndeys\\ndezinc\\ndezinced\\ndezincing\\ndezincked\\ndezincking\\ndezincs\\ndhak\\ndhaks\\ndharma\\ndharmas\\ndharmic\\ndharna\\ndharnas\\ndhole\\ndholes\\ndhoolies\\ndhooly\\ndhoora\\ndhooras\\ndhooti\\ndhootie\\ndhooties\\ndhootis\\ndhoti\\ndhotis\\ndhourra\\ndhourras\\ndhow\\ndhows\\ndhurna\\ndhurnas\\ndhuti\\ndhutis\\ndiabase\\ndiabases\\ndiabasic\\ndiabetes\\ndiabetic\\ndiabetics\\ndiableries\\ndiablery\\ndiabolic\\ndiabolical\\ndiabolo\\ndiabolos\\ndiacetyl\\ndiacetyls\\ndiacid\\ndiacidic\\ndiacids\\ndiaconal\\ndiadem\\ndiademed\\ndiademing\\ndiadems\\ndiagnose\\ndiagnosed\\ndiagnoses\\ndiagnosing\\ndiagnosis\\ndiagnostic\\ndiagnostics\\ndiagonal\\ndiagonally\\ndiagonals\\ndiagram\\ndiagramed\\ndiagraming\\ndiagrammatic\\ndiagrammed\\ndiagramming\\ndiagrams\\ndiagraph\\ndiagraphs\\ndial\\ndialect\\ndialectic\\ndialects\\ndialed\\ndialer\\ndialers\\ndialing\\ndialings\\ndialist\\ndialists\\ndiallage\\ndiallages\\ndialled\\ndiallel\\ndialler\\ndiallers\\ndialling\\ndiallings\\ndiallist\\ndiallists\\ndialog\\ndialoger\\ndialogers\\ndialogged\\ndialogging\\ndialogic\\ndialogs\\ndialogue\\ndialogued\\ndialogues\\ndialoguing\\ndials\\ndialyse\\ndialysed\\ndialyser\\ndialysers\\ndialyses\\ndialysing\\ndialysis\\ndialytic\\ndialyze\\ndialyzed\\ndialyzer\\ndialyzers\\ndialyzes\\ndialyzing\\ndiameter\\ndiameters\\ndiametric\\ndiametrical\\ndiametrically\\ndiamide\\ndiamides\\ndiamin\\ndiamine\\ndiamines\\ndiamins\\ndiamond\\ndiamonded\\ndiamonding\\ndiamonds\\ndianthus\\ndianthuses\\ndiapason\\ndiapasons\\ndiapause\\ndiapaused\\ndiapauses\\ndiapausing\\ndiaper\\ndiapered\\ndiapering\\ndiapers\\ndiaphone\\ndiaphones\\ndiaphonies\\ndiaphony\\ndiaphragm\\ndiaphragmatic\\ndiaphragms\\ndiapir\\ndiapiric\\ndiapirs\\ndiapsid\\ndiarchic\\ndiarchies\\ndiarchy\\ndiaries\\ndiarist\\ndiarists\\ndiarrhea\\ndiarrheas\\ndiarrhoea\\ndiarrhoeas\\ndiary\\ndiaspora\\ndiasporas\\ndiaspore\\ndiaspores\\ndiastase\\ndiastases\\ndiastema\\ndiastemata\\ndiaster\\ndiasters\\ndiastole\\ndiastoles\\ndiastral\\ndiatom\\ndiatomic\\ndiatoms\\ndiatonic\\ndiatribe\\ndiatribes\\ndiazepam\\ndiazepams\\ndiazin\\ndiazine\\ndiazines\\ndiazins\\ndiazo\\ndiazole\\ndiazoles\\ndib\\ndibasic\\ndibbed\\ndibber\\ndibbers\\ndibbing\\ndibble\\ndibbled\\ndibbler\\ndibblers\\ndibbles\\ndibbling\\ndibbuk\\ndibbukim\\ndibbuks\\ndibs\\ndicast\\ndicastic\\ndicasts\\ndice\\ndiced\\ndicentra\\ndicentras\\ndicer\\ndicers\\ndices\\ndicey\\ndichasia\\ndichotic\\ndichroic\\ndicier\\ndiciest\\ndicing\\ndick\\ndickens\\ndickenses\\ndicker\\ndickered\\ndickering\\ndickers\\ndickey\\ndickeys\\ndickie\\ndickies\\ndicks\\ndicky\\ndiclinies\\ndicliny\\ndicot\\ndicots\\ndicotyl\\ndicotyls\\ndicrotal\\ndicrotic\\ndicta\\ndictate\\ndictated\\ndictates\\ndictating\\ndictation\\ndictations\\ndictator\\ndictatorial\\ndictators\\ndictatorship\\ndictatorships\\ndiction\\ndictionaries\\ndictionary\\ndictions\\ndictum\\ndictums\\ndicyclic\\ndicyclies\\ndicycly\\ndid\\ndidact\\ndidactic\\ndidacts\\ndidactyl\\ndidapper\\ndidappers\\ndiddle\\ndiddled\\ndiddler\\ndiddlers\\ndiddles\\ndiddling\\ndidies\\ndido\\ndidoes\\ndidos\\ndidst\\ndidy\\ndidymium\\ndidymiums\\ndidymous\\ndidynamies\\ndidynamy\\ndie\\ndieback\\ndiebacks\\ndiecious\\ndied\\ndiehard\\ndiehards\\ndieing\\ndiel\\ndieldrin\\ndieldrins\\ndiemaker\\ndiemakers\\ndiene\\ndienes\\ndiereses\\ndieresis\\ndieretic\\ndies\\ndiesel\\ndiesels\\ndieses\\ndiesis\\ndiester\\ndiesters\\ndiestock\\ndiestocks\\ndiestrum\\ndiestrums\\ndiestrus\\ndiestruses\\ndiet\\ndietaries\\ndietary\\ndieted\\ndieter\\ndieters\\ndietetic\\ndietetics\\ndietician\\ndieticians\\ndieting\\ndiets\\ndiffer\\ndiffered\\ndifference\\ndifferences\\ndifferent\\ndifferential\\ndifferentials\\ndifferentiate\\ndifferentiated\\ndifferentiates\\ndifferentiating\\ndifferentiation\\ndifferently\\ndiffering\\ndiffers\\ndifficult\\ndifficulties\\ndifficulty\\ndiffidence\\ndiffidences\\ndiffident\\ndiffract\\ndiffracted\\ndiffracting\\ndiffracts\\ndiffuse\\ndiffused\\ndiffuser\\ndiffusers\\ndiffuses\\ndiffusing\\ndiffusion\\ndiffusions\\ndiffusor\\ndiffusors\\ndig\\ndigamies\\ndigamist\\ndigamists\\ndigamma\\ndigammas\\ndigamous\\ndigamy\\ndigest\\ndigested\\ndigester\\ndigesters\\ndigesting\\ndigestion\\ndigestions\\ndigestive\\ndigestor\\ndigestors\\ndigests\\ndigged\\ndigger\\ndiggers\\ndigging\\ndiggings\\ndight\\ndighted\\ndighting\\ndights\\ndigit\\ndigital\\ndigitalis\\ndigitally\\ndigitals\\ndigitate\\ndigitize\\ndigitized\\ndigitizes\\ndigitizing\\ndigits\\ndiglot\\ndiglots\\ndignified\\ndignifies\\ndignify\\ndignifying\\ndignitaries\\ndignitary\\ndignities\\ndignity\\ndigoxin\\ndigoxins\\ndigraph\\ndigraphs\\ndigress\\ndigressed\\ndigresses\\ndigressing\\ndigression\\ndigressions\\ndigs\\ndihedral\\ndihedrals\\ndihedron\\ndihedrons\\ndihybrid\\ndihybrids\\ndihydric\\ndikdik\\ndikdiks\\ndike\\ndiked\\ndiker\\ndikers\\ndikes\\ndiking\\ndiktat\\ndiktats\\ndilapidated\\ndilapidation\\ndilapidations\\ndilatant\\ndilatants\\ndilatate\\ndilatation\\ndilatations\\ndilate\\ndilated\\ndilater\\ndilaters\\ndilates\\ndilating\\ndilation\\ndilations\\ndilative\\ndilator\\ndilators\\ndilatory\\ndildo\\ndildoe\\ndildoes\\ndildos\\ndilemma\\ndilemmas\\ndilemmic\\ndilettante\\ndilettantes\\ndilettanti\\ndiligence\\ndiligences\\ndiligent\\ndiligently\\ndill\\ndillies\\ndills\\ndilly\\ndillydallied\\ndillydallies\\ndillydally\\ndillydallying\\ndiluent\\ndiluents\\ndilute\\ndiluted\\ndiluter\\ndiluters\\ndilutes\\ndiluting\\ndilution\\ndilutions\\ndilutive\\ndilutor\\ndilutors\\ndiluvia\\ndiluvial\\ndiluvian\\ndiluvion\\ndiluvions\\ndiluvium\\ndiluviums\\ndim\\ndime\\ndimension\\ndimensional\\ndimensions\\ndimer\\ndimeric\\ndimerism\\ndimerisms\\ndimerize\\ndimerized\\ndimerizes\\ndimerizing\\ndimerous\\ndimers\\ndimes\\ndimeter\\ndimeters\\ndimethyl\\ndimethyls\\ndimetric\\ndiminish\\ndiminished\\ndiminishes\\ndiminishing\\ndiminutive\\ndimities\\ndimity\\ndimly\\ndimmable\\ndimmed\\ndimmer\\ndimmers\\ndimmest\\ndimming\\ndimness\\ndimnesses\\ndimorph\\ndimorphs\\ndimout\\ndimouts\\ndimple\\ndimpled\\ndimples\\ndimplier\\ndimpliest\\ndimpling\\ndimply\\ndims\\ndimwit\\ndimwits\\ndin\\ndinar\\ndinars\\ndindle\\ndindled\\ndindles\\ndindling\\ndine\\ndined\\ndiner\\ndineric\\ndinero\\ndineros\\ndiners\\ndines\\ndinette\\ndinettes\\nding\\ndingbat\\ndingbats\\ndingdong\\ndingdonged\\ndingdonging\\ndingdongs\\ndinged\\ndingey\\ndingeys\\ndinghies\\ndinghy\\ndingier\\ndingies\\ndingiest\\ndingily\\ndinginess\\ndinginesses\\ndinging\\ndingle\\ndingles\\ndingo\\ndingoes\\ndings\\ndingus\\ndinguses\\ndingy\\ndining\\ndink\\ndinked\\ndinkey\\ndinkeys\\ndinkier\\ndinkies\\ndinkiest\\ndinking\\ndinkly\\ndinks\\ndinkum\\ndinky\\ndinned\\ndinner\\ndinners\\ndinning\\ndinosaur\\ndinosaurs\\ndins\\ndint\\ndinted\\ndinting\\ndints\\ndiobol\\ndiobolon\\ndiobolons\\ndiobols\\ndiocesan\\ndiocesans\\ndiocese\\ndioceses\\ndiode\\ndiodes\\ndioecism\\ndioecisms\\ndioicous\\ndiol\\ndiolefin\\ndiolefins\\ndiols\\ndiopside\\ndiopsides\\ndioptase\\ndioptases\\ndiopter\\ndiopters\\ndioptral\\ndioptre\\ndioptres\\ndioptric\\ndiorama\\ndioramas\\ndioramic\\ndiorite\\ndiorites\\ndioritic\\ndioxane\\ndioxanes\\ndioxid\\ndioxide\\ndioxides\\ndioxids\\ndip\\ndiphase\\ndiphasic\\ndiphenyl\\ndiphenyls\\ndiphtheria\\ndiphtherias\\ndiphthong\\ndiphthongs\\ndiplegia\\ndiplegias\\ndiplex\\ndiploe\\ndiploes\\ndiploic\\ndiploid\\ndiploidies\\ndiploids\\ndiploidy\\ndiploma\\ndiplomacies\\ndiplomacy\\ndiplomaed\\ndiplomaing\\ndiplomas\\ndiplomat\\ndiplomata\\ndiplomatic\\ndiplomats\\ndiplont\\ndiplonts\\ndiplopia\\ndiplopias\\ndiplopic\\ndiplopod\\ndiplopods\\ndiploses\\ndiplosis\\ndipnoan\\ndipnoans\\ndipodic\\ndipodies\\ndipody\\ndipolar\\ndipole\\ndipoles\\ndippable\\ndipped\\ndipper\\ndippers\\ndippier\\ndippiest\\ndipping\\ndippy\\ndips\\ndipsades\\ndipsas\\ndipstick\\ndipsticks\\ndipt\\ndiptera\\ndipteral\\ndipteran\\ndipterans\\ndipteron\\ndipththeria\\ndipththerias\\ndiptyca\\ndiptycas\\ndiptych\\ndiptychs\\ndiquat\\ndiquats\\ndirdum\\ndirdums\\ndire\\ndirect\\ndirected\\ndirecter\\ndirectest\\ndirecting\\ndirection\\ndirectional\\ndirections\\ndirective\\ndirectives\\ndirectly\\ndirectness\\ndirector\\ndirectories\\ndirectors\\ndirectory\\ndirects\\ndireful\\ndirely\\ndireness\\ndirenesses\\ndirer\\ndirest\\ndirge\\ndirgeful\\ndirges\\ndirham\\ndirhams\\ndirigible\\ndirigibles\\ndiriment\\ndirk\\ndirked\\ndirking\\ndirks\\ndirl\\ndirled\\ndirling\\ndirls\\ndirndl\\ndirndls\\ndirt\\ndirtied\\ndirtier\\ndirties\\ndirtiest\\ndirtily\\ndirtiness\\ndirtinesses\\ndirts\\ndirty\\ndirtying\\ndisabilities\\ndisability\\ndisable\\ndisabled\\ndisables\\ndisabling\\ndisabuse\\ndisabused\\ndisabuses\\ndisabusing\\ndisadvantage\\ndisadvantageous\\ndisadvantages\\ndisaffect\\ndisaffected\\ndisaffecting\\ndisaffection\\ndisaffections\\ndisaffects\\ndisagree\\ndisagreeable\\ndisagreeables\\ndisagreed\\ndisagreeing\\ndisagreement\\ndisagreements\\ndisagrees\\ndisallow\\ndisallowed\\ndisallowing\\ndisallows\\ndisannul\\ndisannulled\\ndisannulling\\ndisannuls\\ndisappear\\ndisappearance\\ndisappearances\\ndisappeared\\ndisappearing\\ndisappears\\ndisappoint\\ndisappointed\\ndisappointing\\ndisappointment\\ndisappointments\\ndisappoints\\ndisapproval\\ndisapprovals\\ndisapprove\\ndisapproved\\ndisapproves\\ndisapproving\\ndisarm\\ndisarmament\\ndisarmaments\\ndisarmed\\ndisarmer\\ndisarmers\\ndisarming\\ndisarms\\ndisarrange\\ndisarranged\\ndisarrangement\\ndisarrangements\\ndisarranges\\ndisarranging\\ndisarray\\ndisarrayed\\ndisarraying\\ndisarrays\\ndisaster\\ndisasters\\ndisastrous\\ndisavow\\ndisavowal\\ndisavowals\\ndisavowed\\ndisavowing\\ndisavows\\ndisband\\ndisbanded\\ndisbanding\\ndisbands\\ndisbar\\ndisbarment\\ndisbarments\\ndisbarred\\ndisbarring\\ndisbars\\ndisbelief\\ndisbeliefs\\ndisbelieve\\ndisbelieved\\ndisbelieves\\ndisbelieving\\ndisbosom\\ndisbosomed\\ndisbosoming\\ndisbosoms\\ndisbound\\ndisbowel\\ndisboweled\\ndisboweling\\ndisbowelled\\ndisbowelling\\ndisbowels\\ndisbud\\ndisbudded\\ndisbudding\\ndisbuds\\ndisburse\\ndisbursed\\ndisbursement\\ndisbursements\\ndisburses\\ndisbursing\\ndisc\\ndiscant\\ndiscanted\\ndiscanting\\ndiscants\\ndiscard\\ndiscarded\\ndiscarding\\ndiscards\\ndiscase\\ndiscased\\ndiscases\\ndiscasing\\ndisced\\ndiscept\\ndiscepted\\ndiscepting\\ndiscepts\\ndiscern\\ndiscerned\\ndiscernible\\ndiscerning\\ndiscernment\\ndiscernments\\ndiscerns\\ndischarge\\ndischarged\\ndischarges\\ndischarging\\ndisci\\ndiscing\\ndisciple\\ndiscipled\\ndisciples\\ndisciplinarian\\ndisciplinarians\\ndisciplinary\\ndiscipline\\ndisciplined\\ndisciplines\\ndiscipling\\ndisciplining\\ndisclaim\\ndisclaimed\\ndisclaiming\\ndisclaims\\ndisclike\\ndisclose\\ndisclosed\\ndiscloses\\ndisclosing\\ndisclosure\\ndisclosures\\ndisco\\ndiscoid\\ndiscoids\\ndiscolor\\ndiscoloration\\ndiscolorations\\ndiscolored\\ndiscoloring\\ndiscolors\\ndiscomfit\\ndiscomfited\\ndiscomfiting\\ndiscomfits\\ndiscomfiture\\ndiscomfitures\\ndiscomfort\\ndiscomforts\\ndisconcert\\ndisconcerted\\ndisconcerting\\ndisconcerts\\ndisconnect\\ndisconnected\\ndisconnecting\\ndisconnects\\ndisconsolate\\ndiscontent\\ndiscontented\\ndiscontents\\ndiscontinuance\\ndiscontinuances\\ndiscontinuation\\ndiscontinue\\ndiscontinued\\ndiscontinues\\ndiscontinuing\\ndiscord\\ndiscordant\\ndiscorded\\ndiscording\\ndiscords\\ndiscos\\ndiscount\\ndiscounted\\ndiscounting\\ndiscounts\\ndiscourage\\ndiscouraged\\ndiscouragement\\ndiscouragements\\ndiscourages\\ndiscouraging\\ndiscourteous\\ndiscourteously\\ndiscourtesies\\ndiscourtesy\\ndiscover\\ndiscovered\\ndiscoverer\\ndiscoverers\\ndiscoveries\\ndiscovering\\ndiscovers\\ndiscovery\\ndiscredit\\ndiscreditable\\ndiscredited\\ndiscrediting\\ndiscredits\\ndiscreet\\ndiscreeter\\ndiscreetest\\ndiscreetly\\ndiscrepancies\\ndiscrepancy\\ndiscrete\\ndiscretion\\ndiscretionary\\ndiscretions\\ndiscriminate\\ndiscriminated\\ndiscriminates\\ndiscriminating\\ndiscrimination\\ndiscriminations\\ndiscriminatory\\ndiscrown\\ndiscrowned\\ndiscrowning\\ndiscrowns\\ndiscs\\ndiscursive\\ndiscursiveness\\ndiscursivenesses\\ndiscus\\ndiscuses\\ndiscuss\\ndiscussed\\ndiscusses\\ndiscussing\\ndiscussion\\ndiscussions\\ndisdain\\ndisdained\\ndisdainful\\ndisdainfully\\ndisdaining\\ndisdains\\ndisease\\ndiseased\\ndiseases\\ndiseasing\\ndisembark\\ndisembarkation\\ndisembarkations\\ndisembarked\\ndisembarking\\ndisembarks\\ndisembodied\\ndisenchant\\ndisenchanted\\ndisenchanting\\ndisenchantment\\ndisenchantments\\ndisenchants\\ndisendow\\ndisendowed\\ndisendowing\\ndisendows\\ndisentangle\\ndisentangled\\ndisentangles\\ndisentangling\\ndiseuse\\ndiseuses\\ndisfavor\\ndisfavored\\ndisfavoring\\ndisfavors\\ndisfigure\\ndisfigured\\ndisfigurement\\ndisfigurements\\ndisfigures\\ndisfiguring\\ndisfranchise\\ndisfranchised\\ndisfranchisement\\ndisfranchisements\\ndisfranchises\\ndisfranchising\\ndisfrock\\ndisfrocked\\ndisfrocking\\ndisfrocks\\ndisgorge\\ndisgorged\\ndisgorges\\ndisgorging\\ndisgrace\\ndisgraced\\ndisgraceful\\ndisgracefully\\ndisgraces\\ndisgracing\\ndisguise\\ndisguised\\ndisguises\\ndisguising\\ndisgust\\ndisgusted\\ndisgustedly\\ndisgusting\\ndisgustingly\\ndisgusts\\ndish\\ndisharmonies\\ndisharmonious\\ndisharmony\\ndishcloth\\ndishcloths\\ndishearten\\ndisheartened\\ndisheartening\\ndisheartens\\ndished\\ndishelm\\ndishelmed\\ndishelming\\ndishelms\\ndisherit\\ndisherited\\ndisheriting\\ndisherits\\ndishes\\ndishevel\\ndisheveled\\ndisheveling\\ndishevelled\\ndishevelling\\ndishevels\\ndishful\\ndishfuls\\ndishier\\ndishiest\\ndishing\\ndishlike\\ndishonest\\ndishonesties\\ndishonestly\\ndishonesty\\ndishonor\\ndishonorable\\ndishonorably\\ndishonored\\ndishonoring\\ndishonors\\ndishpan\\ndishpans\\ndishrag\\ndishrags\\ndishware\\ndishwares\\ndishwasher\\ndishwashers\\ndishwater\\ndishwaters\\ndishy\\ndisillusion\\ndisillusioned\\ndisillusioning\\ndisillusionment\\ndisillusionments\\ndisillusions\\ndisinclination\\ndisinclinations\\ndisincline\\ndisinclined\\ndisinclines\\ndisinclining\\ndisinfect\\ndisinfectant\\ndisinfectants\\ndisinfected\\ndisinfecting\\ndisinfection\\ndisinfections\\ndisinfects\\ndisinherit\\ndisinherited\\ndisinheriting\\ndisinherits\\ndisintegrate\\ndisintegrated\\ndisintegrates\\ndisintegrating\\ndisintegration\\ndisintegrations\\ndisinter\\ndisinterested\\ndisinterestedness\\ndisinterestednesses\\ndisinterred\\ndisinterring\\ndisinters\\ndisject\\ndisjected\\ndisjecting\\ndisjects\\ndisjoin\\ndisjoined\\ndisjoining\\ndisjoins\\ndisjoint\\ndisjointed\\ndisjointing\\ndisjoints\\ndisjunct\\ndisjuncts\\ndisk\\ndisked\\ndisking\\ndisklike\\ndisks\\ndislike\\ndisliked\\ndisliker\\ndislikers\\ndislikes\\ndisliking\\ndislimn\\ndislimned\\ndislimning\\ndislimns\\ndislocate\\ndislocated\\ndislocates\\ndislocating\\ndislocation\\ndislocations\\ndislodge\\ndislodged\\ndislodges\\ndislodging\\ndisloyal\\ndisloyalties\\ndisloyalty\\ndismal\\ndismaler\\ndismalest\\ndismally\\ndismals\\ndismantle\\ndismantled\\ndismantles\\ndismantling\\ndismast\\ndismasted\\ndismasting\\ndismasts\\ndismay\\ndismayed\\ndismaying\\ndismays\\ndisme\\ndismember\\ndismembered\\ndismembering\\ndismemberment\\ndismemberments\\ndismembers\\ndismes\\ndismiss\\ndismissal\\ndismissals\\ndismissed\\ndismisses\\ndismissing\\ndismount\\ndismounted\\ndismounting\\ndismounts\\ndisobedience\\ndisobediences\\ndisobedient\\ndisobey\\ndisobeyed\\ndisobeying\\ndisobeys\\ndisomic\\ndisorder\\ndisordered\\ndisordering\\ndisorderliness\\ndisorderlinesses\\ndisorderly\\ndisorders\\ndisorganization\\ndisorganizations\\ndisorganize\\ndisorganized\\ndisorganizes\\ndisorganizing\\ndisown\\ndisowned\\ndisowning\\ndisowns\\ndisparage\\ndisparaged\\ndisparagement\\ndisparagements\\ndisparages\\ndisparaging\\ndisparate\\ndisparities\\ndisparity\\ndispart\\ndisparted\\ndisparting\\ndisparts\\ndispassion\\ndispassionate\\ndispassions\\ndispatch\\ndispatched\\ndispatcher\\ndispatchers\\ndispatches\\ndispatching\\ndispel\\ndispelled\\ndispelling\\ndispels\\ndispend\\ndispended\\ndispending\\ndispends\\ndispensable\\ndispensaries\\ndispensary\\ndispensation\\ndispensations\\ndispense\\ndispensed\\ndispenser\\ndispensers\\ndispenses\\ndispensing\\ndispersal\\ndispersals\\ndisperse\\ndispersed\\ndisperses\\ndispersing\\ndispersion\\ndispersions\\ndispirit\\ndispirited\\ndispiriting\\ndispirits\\ndisplace\\ndisplaced\\ndisplacement\\ndisplacements\\ndisplaces\\ndisplacing\\ndisplant\\ndisplanted\\ndisplanting\\ndisplants\\ndisplay\\ndisplayed\\ndisplaying\\ndisplays\\ndisplease\\ndispleased\\ndispleases\\ndispleasing\\ndispleasure\\ndispleasures\\ndisplode\\ndisploded\\ndisplodes\\ndisploding\\ndisplume\\ndisplumed\\ndisplumes\\ndispluming\\ndisport\\ndisported\\ndisporting\\ndisports\\ndisposable\\ndisposal\\ndisposals\\ndispose\\ndisposed\\ndisposer\\ndisposers\\ndisposes\\ndisposing\\ndisposition\\ndispositions\\ndispossess\\ndispossessed\\ndispossesses\\ndispossessing\\ndispossession\\ndispossessions\\ndispread\\ndispreading\\ndispreads\\ndisprize\\ndisprized\\ndisprizes\\ndisprizing\\ndisproof\\ndisproofs\\ndisproportion\\ndisproportionate\\ndisproportions\\ndisprove\\ndisproved\\ndisproves\\ndisproving\\ndisputable\\ndisputably\\ndisputation\\ndisputations\\ndispute\\ndisputed\\ndisputer\\ndisputers\\ndisputes\\ndisputing\\ndisqualification\\ndisqualifications\\ndisqualified\\ndisqualifies\\ndisqualify\\ndisqualifying\\ndisquiet\\ndisquieted\\ndisquieting\\ndisquiets\\ndisrate\\ndisrated\\ndisrates\\ndisrating\\ndisregard\\ndisregarded\\ndisregarding\\ndisregards\\ndisrepair\\ndisrepairs\\ndisreputable\\ndisrepute\\ndisreputes\\ndisrespect\\ndisrespectful\\ndisrespects\\ndisrobe\\ndisrobed\\ndisrober\\ndisrobers\\ndisrobes\\ndisrobing\\ndisroot\\ndisrooted\\ndisrooting\\ndisroots\\ndisrupt\\ndisrupted\\ndisrupting\\ndisruption\\ndisruptions\\ndisruptive\\ndisrupts\\ndissatisfaction\\ndissatisfactions\\ndissatisfies\\ndissatisfy\\ndissave\\ndissaved\\ndissaves\\ndissaving\\ndisseat\\ndisseated\\ndisseating\\ndisseats\\ndissect\\ndissected\\ndissecting\\ndissection\\ndissections\\ndissects\\ndisseise\\ndisseised\\ndisseises\\ndisseising\\ndisseize\\ndisseized\\ndisseizes\\ndisseizing\\ndissemble\\ndissembled\\ndissembler\\ndissemblers\\ndissembles\\ndissembling\\ndisseminate\\ndisseminated\\ndisseminates\\ndisseminating\\ndissemination\\ndissent\\ndissented\\ndissenter\\ndissenters\\ndissentient\\ndissentients\\ndissenting\\ndissention\\ndissentions\\ndissents\\ndissert\\ndissertation\\ndissertations\\ndisserted\\ndisserting\\ndisserts\\ndisserve\\ndisserved\\ndisserves\\ndisservice\\ndisserving\\ndissever\\ndissevered\\ndissevering\\ndissevers\\ndissidence\\ndissidences\\ndissident\\ndissidents\\ndissimilar\\ndissimilarities\\ndissimilarity\\ndissipate\\ndissipated\\ndissipates\\ndissipating\\ndissipation\\ndissipations\\ndissociate\\ndissociated\\ndissociates\\ndissociating\\ndissociation\\ndissociations\\ndissolute\\ndissolution\\ndissolutions\\ndissolve\\ndissolved\\ndissolves\\ndissolving\\ndissonance\\ndissonances\\ndissonant\\ndissuade\\ndissuaded\\ndissuades\\ndissuading\\ndissuasion\\ndissuasions\\ndistaff\\ndistaffs\\ndistain\\ndistained\\ndistaining\\ndistains\\ndistal\\ndistally\\ndistance\\ndistanced\\ndistances\\ndistancing\\ndistant\\ndistaste\\ndistasted\\ndistasteful\\ndistastes\\ndistasting\\ndistaves\\ndistemper\\ndistempers\\ndistend\\ndistended\\ndistending\\ndistends\\ndistension\\ndistensions\\ndistent\\ndistention\\ndistentions\\ndistich\\ndistichs\\ndistil\\ndistill\\ndistillate\\ndistillates\\ndistillation\\ndistillations\\ndistilled\\ndistiller\\ndistilleries\\ndistillers\\ndistillery\\ndistilling\\ndistills\\ndistils\\ndistinct\\ndistincter\\ndistinctest\\ndistinction\\ndistinctions\\ndistinctive\\ndistinctively\\ndistinctiveness\\ndistinctivenesses\\ndistinctly\\ndistinctness\\ndistinctnesses\\ndistinguish\\ndistinguishable\\ndistinguished\\ndistinguishes\\ndistinguishing\\ndistome\\ndistomes\\ndistort\\ndistorted\\ndistorting\\ndistortion\\ndistortions\\ndistorts\\ndistract\\ndistracted\\ndistracting\\ndistraction\\ndistractions\\ndistracts\\ndistrain\\ndistrained\\ndistraining\\ndistrains\\ndistrait\\ndistraught\\ndistress\\ndistressed\\ndistresses\\ndistressful\\ndistressing\\ndistribute\\ndistributed\\ndistributes\\ndistributing\\ndistribution\\ndistributions\\ndistributive\\ndistributor\\ndistributors\\ndistrict\\ndistricted\\ndistricting\\ndistricts\\ndistrust\\ndistrusted\\ndistrustful\\ndistrusting\\ndistrusts\\ndisturb\\ndisturbance\\ndisturbances\\ndisturbed\\ndisturber\\ndisturbers\\ndisturbing\\ndisturbs\\ndisulfid\\ndisulfids\\ndisunion\\ndisunions\\ndisunite\\ndisunited\\ndisunites\\ndisunities\\ndisuniting\\ndisunity\\ndisuse\\ndisused\\ndisuses\\ndisusing\\ndisvalue\\ndisvalued\\ndisvalues\\ndisvaluing\\ndisyoke\\ndisyoked\\ndisyokes\\ndisyoking\\ndit\\ndita\\nditas\\nditch\\nditched\\nditcher\\nditchers\\nditches\\nditching\\ndite\\ndites\\nditheism\\nditheisms\\nditheist\\nditheists\\ndither\\ndithered\\ndithering\\ndithers\\ndithery\\ndithiol\\ndits\\ndittanies\\ndittany\\nditties\\nditto\\ndittoed\\ndittoing\\ndittos\\nditty\\ndiureses\\ndiuresis\\ndiuretic\\ndiuretics\\ndiurnal\\ndiurnals\\ndiuron\\ndiurons\\ndiva\\ndivagate\\ndivagated\\ndivagates\\ndivagating\\ndivalent\\ndivan\\ndivans\\ndivas\\ndive\\ndived\\ndiver\\ndiverge\\ndiverged\\ndivergence\\ndivergences\\ndivergent\\ndiverges\\ndiverging\\ndivers\\ndiverse\\ndiversification\\ndiversifications\\ndiversify\\ndiversion\\ndiversions\\ndiversities\\ndiversity\\ndivert\\ndiverted\\ndiverter\\ndiverters\\ndiverting\\ndiverts\\ndives\\ndivest\\ndivested\\ndivesting\\ndivests\\ndivide\\ndivided\\ndividend\\ndividends\\ndivider\\ndividers\\ndivides\\ndividing\\ndividual\\ndivination\\ndivinations\\ndivine\\ndivined\\ndivinely\\ndiviner\\ndiviners\\ndivines\\ndivinest\\ndiving\\ndivining\\ndivinise\\ndivinised\\ndivinises\\ndivinising\\ndivinities\\ndivinity\\ndivinize\\ndivinized\\ndivinizes\\ndivinizing\\ndivisibilities\\ndivisibility\\ndivisible\\ndivision\\ndivisional\\ndivisions\\ndivisive\\ndivisor\\ndivisors\\ndivorce\\ndivorced\\ndivorcee\\ndivorcees\\ndivorcer\\ndivorcers\\ndivorces\\ndivorcing\\ndivot\\ndivots\\ndivulge\\ndivulged\\ndivulger\\ndivulgers\\ndivulges\\ndivulging\\ndivvied\\ndivvies\\ndivvy\\ndivvying\\ndiwan\\ndiwans\\ndixit\\ndixits\\ndizen\\ndizened\\ndizening\\ndizens\\ndizygous\\ndizzied\\ndizzier\\ndizzies\\ndizziest\\ndizzily\\ndizziness\\ndizzy\\ndizzying\\ndjebel\\ndjebels\\ndjellaba\\ndjellabas\\ndjin\\ndjinn\\ndjinni\\ndjinns\\ndjinny\\ndjins\\ndo\\ndoable\\ndoat\\ndoated\\ndoating\\ndoats\\ndobber\\ndobbers\\ndobbies\\ndobbin\\ndobbins\\ndobby\\ndobie\\ndobies\\ndobla\\ndoblas\\ndoblon\\ndoblones\\ndoblons\\ndobra\\ndobras\\ndobson\\ndobsons\\ndoby\\ndoc\\ndocent\\ndocents\\ndocetic\\ndocile\\ndocilely\\ndocilities\\ndocility\\ndock\\ndockage\\ndockages\\ndocked\\ndocker\\ndockers\\ndocket\\ndocketed\\ndocketing\\ndockets\\ndockhand\\ndockhands\\ndocking\\ndockland\\ndocklands\\ndocks\\ndockside\\ndocksides\\ndockworker\\ndockworkers\\ndockyard\\ndockyards\\ndocs\\ndoctor\\ndoctoral\\ndoctored\\ndoctoring\\ndoctors\\ndoctrinal\\ndoctrine\\ndoctrines\\ndocument\\ndocumentaries\\ndocumentary\\ndocumentation\\ndocumentations\\ndocumented\\ndocumenter\\ndocumenters\\ndocumenting\\ndocuments\\ndodder\\ndoddered\\ndodderer\\ndodderers\\ndoddering\\ndodders\\ndoddery\\ndodge\\ndodged\\ndodger\\ndodgeries\\ndodgers\\ndodgery\\ndodges\\ndodgier\\ndodgiest\\ndodging\\ndodgy\\ndodo\\ndodoes\\ndodoism\\ndodoisms\\ndodos\\ndoe\\ndoer\\ndoers\\ndoes\\ndoeskin\\ndoeskins\\ndoest\\ndoeth\\ndoff\\ndoffed\\ndoffer\\ndoffers\\ndoffing\\ndoffs\\ndog\\ndogbane\\ndogbanes\\ndogberries\\ndogberry\\ndogcart\\ndogcarts\\ndogcatcher\\ndogcatchers\\ndogdom\\ndogdoms\\ndoge\\ndogedom\\ndogedoms\\ndoges\\ndogeship\\ndogeships\\ndogey\\ndogeys\\ndogface\\ndogfaces\\ndogfight\\ndogfighting\\ndogfights\\ndogfish\\ndogfishes\\ndogfought\\ndogged\\ndoggedly\\ndogger\\ndoggerel\\ndoggerels\\ndoggeries\\ndoggers\\ndoggery\\ndoggie\\ndoggier\\ndoggies\\ndoggiest\\ndogging\\ndoggish\\ndoggo\\ndoggone\\ndoggoned\\ndoggoneder\\ndoggonedest\\ndoggoner\\ndoggones\\ndoggonest\\ndoggoning\\ndoggrel\\ndoggrels\\ndoggy\\ndoghouse\\ndoghouses\\ndogie\\ndogies\\ndogleg\\ndoglegged\\ndoglegging\\ndoglegs\\ndoglike\\ndogma\\ndogmas\\ndogmata\\ndogmatic\\ndogmatism\\ndogmatisms\\ndognap\\ndognaped\\ndognaper\\ndognapers\\ndognaping\\ndognapped\\ndognapping\\ndognaps\\ndogs\\ndogsbodies\\ndogsbody\\ndogsled\\ndogsleds\\ndogteeth\\ndogtooth\\ndogtrot\\ndogtrots\\ndogtrotted\\ndogtrotting\\ndogvane\\ndogvanes\\ndogwatch\\ndogwatches\\ndogwood\\ndogwoods\\ndogy\\ndoiled\\ndoilies\\ndoily\\ndoing\\ndoings\\ndoit\\ndoited\\ndoits\\ndojo\\ndojos\\ndol\\ndolce\\ndolci\\ndoldrums\\ndole\\ndoled\\ndoleful\\ndolefuller\\ndolefullest\\ndolefully\\ndolerite\\ndolerites\\ndoles\\ndolesome\\ndoling\\ndoll\\ndollar\\ndollars\\ndolled\\ndollied\\ndollies\\ndolling\\ndollish\\ndollop\\ndollops\\ndolls\\ndolly\\ndollying\\ndolman\\ndolmans\\ndolmen\\ndolmens\\ndolomite\\ndolomites\\ndolor\\ndoloroso\\ndolorous\\ndolors\\ndolour\\ndolours\\ndolphin\\ndolphins\\ndols\\ndolt\\ndoltish\\ndolts\\ndom\\ndomain\\ndomains\\ndomal\\ndome\\ndomed\\ndomelike\\ndomes\\ndomesday\\ndomesdays\\ndomestic\\ndomestically\\ndomesticate\\ndomesticated\\ndomesticates\\ndomesticating\\ndomestication\\ndomestications\\ndomestics\\ndomic\\ndomical\\ndomicil\\ndomicile\\ndomiciled\\ndomiciles\\ndomiciling\\ndomicils\\ndominance\\ndominances\\ndominant\\ndominants\\ndominate\\ndominated\\ndominates\\ndominating\\ndomination\\ndominations\\ndomine\\ndomineer\\ndomineered\\ndomineering\\ndomineers\\ndomines\\ndoming\\ndominick\\ndominicks\\ndominie\\ndominies\\ndominion\\ndominions\\ndominium\\ndominiums\\ndomino\\ndominoes\\ndominos\\ndoms\\ndon\\ndona\\ndonas\\ndonate\\ndonated\\ndonates\\ndonating\\ndonation\\ndonations\\ndonative\\ndonatives\\ndonator\\ndonators\\ndone\\ndonee\\ndonees\\ndoneness\\ndonenesses\\ndong\\ndongola\\ndongolas\\ndongs\\ndonjon\\ndonjons\\ndonkey\\ndonkeys\\ndonna\\ndonnas\\ndonne\\ndonned\\ndonnee\\ndonnees\\ndonnerd\\ndonnered\\ndonnert\\ndonning\\ndonnish\\ndonor\\ndonors\\ndons\\ndonsie\\ndonsy\\ndonut\\ndonuts\\ndonzel\\ndonzels\\ndoodad\\ndoodads\\ndoodle\\ndoodled\\ndoodler\\ndoodlers\\ndoodles\\ndoodling\\ndoolee\\ndoolees\\ndoolie\\ndoolies\\ndooly\\ndoom\\ndoomed\\ndoomful\\ndooming\\ndooms\\ndoomsday\\ndoomsdays\\ndoomster\\ndoomsters\\ndoor\\ndoorbell\\ndoorbells\\ndoorjamb\\ndoorjambs\\ndoorknob\\ndoorknobs\\ndoorless\\ndoorman\\ndoormat\\ndoormats\\ndoormen\\ndoornail\\ndoornails\\ndoorpost\\ndoorposts\\ndoors\\ndoorsill\\ndoorsills\\ndoorstep\\ndoorsteps\\ndoorstop\\ndoorstops\\ndoorway\\ndoorways\\ndooryard\\ndooryards\\ndoozer\\ndoozers\\ndoozies\\ndoozy\\ndopa\\ndopamine\\ndopamines\\ndopant\\ndopants\\ndopas\\ndope\\ndoped\\ndoper\\ndopers\\ndopes\\ndopester\\ndopesters\\ndopey\\ndopier\\ndopiest\\ndopiness\\ndopinesses\\ndoping\\ndopy\\ndor\\ndorado\\ndorados\\ndorbug\\ndorbugs\\ndorhawk\\ndorhawks\\ndories\\ndorm\\ndormancies\\ndormancy\\ndormant\\ndormer\\ndormers\\ndormice\\ndormie\\ndormient\\ndormin\\ndormins\\ndormitories\\ndormitory\\ndormouse\\ndorms\\ndormy\\ndorneck\\ndornecks\\ndornick\\ndornicks\\ndornock\\ndornocks\\ndorp\\ndorper\\ndorpers\\ndorps\\ndorr\\ndorrs\\ndors\\ndorsa\\ndorsad\\ndorsal\\ndorsally\\ndorsals\\ndorser\\ndorsers\\ndorsum\\ndorty\\ndory\\ndos\\ndosage\\ndosages\\ndose\\ndosed\\ndoser\\ndosers\\ndoses\\ndosimetry\\ndosing\\ndoss\\ndossal\\ndossals\\ndossed\\ndossel\\ndossels\\ndosser\\ndosseret\\ndosserets\\ndossers\\ndosses\\ndossier\\ndossiers\\ndossil\\ndossils\\ndossing\\ndost\\ndot\\ndotage\\ndotages\\ndotal\\ndotard\\ndotardly\\ndotards\\ndotation\\ndotations\\ndote\\ndoted\\ndoter\\ndoters\\ndotes\\ndoth\\ndotier\\ndotiest\\ndoting\\ndotingly\\ndots\\ndotted\\ndottel\\ndottels\\ndotter\\ndotterel\\ndotterels\\ndotters\\ndottier\\ndottiest\\ndottily\\ndotting\\ndottle\\ndottles\\ndottrel\\ndottrels\\ndotty\\ndoty\\ndouble\\ndoublecross\\ndoublecrossed\\ndoublecrosses\\ndoublecrossing\\ndoubled\\ndoubler\\ndoublers\\ndoubles\\ndoublet\\ndoublets\\ndoubling\\ndoubloon\\ndoubloons\\ndoublure\\ndoublures\\ndoubly\\ndoubt\\ndoubted\\ndoubter\\ndoubters\\ndoubtful\\ndoubtfully\\ndoubting\\ndoubtless\\ndoubts\\ndouce\\ndoucely\\ndouceur\\ndouceurs\\ndouche\\ndouched\\ndouches\\ndouching\\ndough\\ndoughboy\\ndoughboys\\ndoughier\\ndoughiest\\ndoughnut\\ndoughnuts\\ndoughs\\ndought\\ndoughtier\\ndoughtiest\\ndoughty\\ndoughy\\ndouma\\ndoumas\\ndour\\ndoura\\ndourah\\ndourahs\\ndouras\\ndourer\\ndourest\\ndourine\\ndourines\\ndourly\\ndourness\\ndournesses\\ndouse\\ndoused\\ndouser\\ndousers\\ndouses\\ndousing\\ndouzeper\\ndouzepers\\ndove\\ndovecot\\ndovecote\\ndovecotes\\ndovecots\\ndovekey\\ndovekeys\\ndovekie\\ndovekies\\ndovelike\\ndoven\\ndovened\\ndovening\\ndovens\\ndoves\\ndovetail\\ndovetailed\\ndovetailing\\ndovetails\\ndovish\\ndow\\ndowable\\ndowager\\ndowagers\\ndowdier\\ndowdies\\ndowdiest\\ndowdily\\ndowdy\\ndowdyish\\ndowed\\ndowel\\ndoweled\\ndoweling\\ndowelled\\ndowelling\\ndowels\\ndower\\ndowered\\ndoweries\\ndowering\\ndowers\\ndowery\\ndowie\\ndowing\\ndown\\ndownbeat\\ndownbeats\\ndowncast\\ndowncasts\\ndowncome\\ndowncomes\\ndowned\\ndowner\\ndowners\\ndownfall\\ndownfallen\\ndownfalls\\ndowngrade\\ndowngraded\\ndowngrades\\ndowngrading\\ndownhaul\\ndownhauls\\ndownhearted\\ndownhill\\ndownhills\\ndownier\\ndowniest\\ndowning\\ndownplay\\ndownplayed\\ndownplaying\\ndownplays\\ndownpour\\ndownpours\\ndownright\\ndowns\\ndownstairs\\ndowntime\\ndowntimes\\ndowntown\\ndowntowns\\ndowntrod\\ndowntrodden\\ndownturn\\ndownturns\\ndownward\\ndownwards\\ndownwind\\ndowny\\ndowries\\ndowry\\ndows\\ndowsabel\\ndowsabels\\ndowse\\ndowsed\\ndowser\\ndowsers\\ndowses\\ndowsing\\ndoxie\\ndoxies\\ndoxologies\\ndoxology\\ndoxorubicin\\ndoxy\\ndoyen\\ndoyenne\\ndoyennes\\ndoyens\\ndoyley\\ndoyleys\\ndoylies\\ndoyly\\ndoze\\ndozed\\ndozen\\ndozened\\ndozening\\ndozens\\ndozenth\\ndozenths\\ndozer\\ndozers\\ndozes\\ndozier\\ndoziest\\ndozily\\ndoziness\\ndozinesses\\ndozing\\ndozy\\ndrab\\ndrabbed\\ndrabber\\ndrabbest\\ndrabbet\\ndrabbets\\ndrabbing\\ndrabble\\ndrabbled\\ndrabbles\\ndrabbling\\ndrably\\ndrabness\\ndrabnesses\\ndrabs\\ndracaena\\ndracaenas\\ndrachm\\ndrachma\\ndrachmae\\ndrachmai\\ndrachmas\\ndrachms\\ndraconic\\ndraff\\ndraffier\\ndraffiest\\ndraffish\\ndraffs\\ndraffy\\ndraft\\ndrafted\\ndraftee\\ndraftees\\ndrafter\\ndrafters\\ndraftier\\ndraftiest\\ndraftily\\ndrafting\\ndraftings\\ndrafts\\ndraftsman\\ndraftsmen\\ndrafty\\ndrag\\ndragee\\ndragees\\ndragged\\ndragger\\ndraggers\\ndraggier\\ndraggiest\\ndragging\\ndraggle\\ndraggled\\ndraggles\\ndraggling\\ndraggy\\ndragline\\ndraglines\\ndragnet\\ndragnets\\ndragoman\\ndragomans\\ndragomen\\ndragon\\ndragonet\\ndragonets\\ndragons\\ndragoon\\ndragooned\\ndragooning\\ndragoons\\ndragrope\\ndragropes\\ndrags\\ndragster\\ndragsters\\ndrail\\ndrails\\ndrain\\ndrainage\\ndrainages\\ndrained\\ndrainer\\ndrainers\\ndraining\\ndrainpipe\\ndrainpipes\\ndrains\\ndrake\\ndrakes\\ndram\\ndrama\\ndramas\\ndramatic\\ndramatically\\ndramatist\\ndramatists\\ndramatization\\ndramatizations\\ndramatize\\ndrammed\\ndramming\\ndrammock\\ndrammocks\\ndrams\\ndramshop\\ndramshops\\ndrank\\ndrapable\\ndrape\\ndraped\\ndraper\\ndraperies\\ndrapers\\ndrapery\\ndrapes\\ndraping\\ndrastic\\ndrastically\\ndrat\\ndrats\\ndratted\\ndratting\\ndraught\\ndraughted\\ndraughtier\\ndraughtiest\\ndraughting\\ndraughts\\ndraughty\\ndrave\\ndraw\\ndrawable\\ndrawback\\ndrawbacks\\ndrawbar\\ndrawbars\\ndrawbore\\ndrawbores\\ndrawbridge\\ndrawbridges\\ndrawdown\\ndrawdowns\\ndrawee\\ndrawees\\ndrawer\\ndrawers\\ndrawing\\ndrawings\\ndrawl\\ndrawled\\ndrawler\\ndrawlers\\ndrawlier\\ndrawliest\\ndrawling\\ndrawls\\ndrawly\\ndrawn\\ndraws\\ndrawtube\\ndrawtubes\\ndray\\ndrayage\\ndrayages\\ndrayed\\ndraying\\ndrayman\\ndraymen\\ndrays\\ndread\\ndreaded\\ndreadful\\ndreadfully\\ndreadfuls\\ndreading\\ndreads\\ndream\\ndreamed\\ndreamer\\ndreamers\\ndreamful\\ndreamier\\ndreamiest\\ndreamily\\ndreaming\\ndreamlike\\ndreams\\ndreamt\\ndreamy\\ndrear\\ndrearier\\ndrearies\\ndreariest\\ndrearily\\ndreary\\ndreck\\ndrecks\\ndredge\\ndredged\\ndredger\\ndredgers\\ndredges\\ndredging\\ndredgings\\ndree\\ndreed\\ndreeing\\ndrees\\ndreg\\ndreggier\\ndreggiest\\ndreggish\\ndreggy\\ndregs\\ndreich\\ndreidel\\ndreidels\\ndreidl\\ndreidls\\ndreigh\\ndrek\\ndreks\\ndrench\\ndrenched\\ndrencher\\ndrenchers\\ndrenches\\ndrenching\\ndress\\ndressage\\ndressages\\ndressed\\ndresser\\ndressers\\ndresses\\ndressier\\ndressiest\\ndressily\\ndressing\\ndressings\\ndressmaker\\ndressmakers\\ndressmaking\\ndressmakings\\ndressy\\ndrest\\ndrew\\ndrib\\ndribbed\\ndribbing\\ndribble\\ndribbled\\ndribbler\\ndribblers\\ndribbles\\ndribblet\\ndribblets\\ndribbling\\ndriblet\\ndriblets\\ndribs\\ndried\\ndrier\\ndriers\\ndries\\ndriest\\ndrift\\ndriftage\\ndriftages\\ndrifted\\ndrifter\\ndrifters\\ndriftier\\ndriftiest\\ndrifting\\ndriftpin\\ndriftpins\\ndrifts\\ndriftwood\\ndriftwoods\\ndrifty\\ndrill\\ndrilled\\ndriller\\ndrillers\\ndrilling\\ndrillings\\ndrills\\ndrily\\ndrink\\ndrinkable\\ndrinker\\ndrinkers\\ndrinking\\ndrinks\\ndrip\\ndripless\\ndripped\\ndripper\\ndrippers\\ndrippier\\ndrippiest\\ndripping\\ndrippings\\ndrippy\\ndrips\\ndript\\ndrivable\\ndrive\\ndrivel\\ndriveled\\ndriveler\\ndrivelers\\ndriveling\\ndrivelled\\ndrivelling\\ndrivels\\ndriven\\ndriver\\ndrivers\\ndrives\\ndriveway\\ndriveways\\ndriving\\ndrizzle\\ndrizzled\\ndrizzles\\ndrizzlier\\ndrizzliest\\ndrizzling\\ndrizzly\\ndrogue\\ndrogues\\ndroit\\ndroits\\ndroll\\ndrolled\\ndroller\\ndrolleries\\ndrollery\\ndrollest\\ndrolling\\ndrolls\\ndrolly\\ndromedaries\\ndromedary\\ndromon\\ndromond\\ndromonds\\ndromons\\ndrone\\ndroned\\ndroner\\ndroners\\ndrones\\ndrongo\\ndrongos\\ndroning\\ndronish\\ndrool\\ndrooled\\ndrooling\\ndrools\\ndroop\\ndrooped\\ndroopier\\ndroopiest\\ndroopily\\ndrooping\\ndroops\\ndroopy\\ndrop\\ndrophead\\ndropheads\\ndropkick\\ndropkicks\\ndroplet\\ndroplets\\ndropout\\ndropouts\\ndropped\\ndropper\\ndroppers\\ndropping\\ndroppings\\ndrops\\ndropshot\\ndropshots\\ndropsied\\ndropsies\\ndropsy\\ndropt\\ndropwort\\ndropworts\\ndrosera\\ndroseras\\ndroshkies\\ndroshky\\ndroskies\\ndrosky\\ndross\\ndrosses\\ndrossier\\ndrossiest\\ndrossy\\ndrought\\ndroughtier\\ndroughtiest\\ndroughts\\ndroughty\\ndrouk\\ndrouked\\ndrouking\\ndrouks\\ndrouth\\ndrouthier\\ndrouthiest\\ndrouths\\ndrouthy\\ndrove\\ndroved\\ndrover\\ndrovers\\ndroves\\ndroving\\ndrown\\ndrownd\\ndrownded\\ndrownding\\ndrownds\\ndrowned\\ndrowner\\ndrowners\\ndrowning\\ndrowns\\ndrowse\\ndrowsed\\ndrowses\\ndrowsier\\ndrowsiest\\ndrowsily\\ndrowsing\\ndrowsy\\ndrub\\ndrubbed\\ndrubber\\ndrubbers\\ndrubbing\\ndrubbings\\ndrubs\\ndrudge\\ndrudged\\ndrudger\\ndrudgeries\\ndrudgers\\ndrudgery\\ndrudges\\ndrudging\\ndrug\\ndrugged\\ndrugget\\ndruggets\\ndrugging\\ndruggist\\ndruggists\\ndrugs\\ndrugstore\\ndrugstores\\ndruid\\ndruidess\\ndruidesses\\ndruidic\\ndruidism\\ndruidisms\\ndruids\\ndrum\\ndrumbeat\\ndrumbeats\\ndrumble\\ndrumbled\\ndrumbles\\ndrumbling\\ndrumfire\\ndrumfires\\ndrumfish\\ndrumfishes\\ndrumhead\\ndrumheads\\ndrumlier\\ndrumliest\\ndrumlike\\ndrumlin\\ndrumlins\\ndrumly\\ndrummed\\ndrummer\\ndrummers\\ndrumming\\ndrumroll\\ndrumrolls\\ndrums\\ndrumstick\\ndrumsticks\\ndrunk\\ndrunkard\\ndrunkards\\ndrunken\\ndrunkenly\\ndrunkenness\\ndrunkennesses\\ndrunker\\ndrunkest\\ndrunks\\ndrupe\\ndrupelet\\ndrupelets\\ndrupes\\ndruse\\ndruses\\ndruthers\\ndry\\ndryable\\ndryad\\ndryades\\ndryadic\\ndryads\\ndryer\\ndryers\\ndryest\\ndrying\\ndrylot\\ndrylots\\ndryly\\ndryness\\ndrynesses\\ndrypoint\\ndrypoints\\ndrys\\nduad\\nduads\\ndual\\ndualism\\ndualisms\\ndualist\\ndualists\\ndualities\\nduality\\ndualize\\ndualized\\ndualizes\\ndualizing\\ndually\\nduals\\ndub\\ndubbed\\ndubber\\ndubbers\\ndubbin\\ndubbing\\ndubbings\\ndubbins\\ndubieties\\ndubiety\\ndubious\\ndubiously\\ndubiousness\\ndubiousnesses\\ndubonnet\\ndubonnets\\ndubs\\nduc\\nducal\\nducally\\nducat\\nducats\\nduce\\nduces\\nduchess\\nduchesses\\nduchies\\nduchy\\nduci\\nduck\\nduckbill\\nduckbills\\nducked\\nducker\\nduckers\\nduckie\\nduckier\\nduckies\\nduckiest\\nducking\\nduckling\\nducklings\\nduckpin\\nduckpins\\nducks\\nducktail\\nducktails\\nduckweed\\nduckweeds\\nducky\\nducs\\nduct\\nducted\\nductile\\nductilities\\nductility\\nducting\\nductings\\nductless\\nducts\\nductule\\nductules\\ndud\\nduddie\\nduddy\\ndude\\ndudeen\\ndudeens\\ndudes\\ndudgeon\\ndudgeons\\ndudish\\ndudishly\\nduds\\ndue\\nduecento\\nduecentos\\nduel\\ndueled\\ndueler\\nduelers\\ndueling\\nduelist\\nduelists\\nduelled\\ndueller\\nduellers\\nduelli\\nduelling\\nduellist\\nduellists\\nduello\\nduellos\\nduels\\nduende\\nduendes\\ndueness\\nduenesses\\nduenna\\nduennas\\ndues\\nduet\\nduets\\nduetted\\nduetting\\nduettist\\nduettists\\nduff\\nduffel\\nduffels\\nduffer\\nduffers\\nduffle\\nduffles\\nduffs\\ndug\\ndugong\\ndugongs\\ndugout\\ndugouts\\ndugs\\ndui\\nduiker\\nduikers\\nduit\\nduits\\nduke\\ndukedom\\ndukedoms\\ndukes\\ndulcet\\ndulcetly\\ndulcets\\ndulciana\\ndulcianas\\ndulcified\\ndulcifies\\ndulcify\\ndulcifying\\ndulcimer\\ndulcimers\\ndulcinea\\ndulcineas\\ndulia\\ndulias\\ndull\\ndullard\\ndullards\\ndulled\\nduller\\ndullest\\ndulling\\ndullish\\ndullness\\ndullnesses\\ndulls\\ndully\\ndulness\\ndulnesses\\ndulse\\ndulses\\nduly\\nduma\\ndumas\\ndumb\\ndumbbell\\ndumbbells\\ndumbed\\ndumber\\ndumbest\\ndumbfound\\ndumbfounded\\ndumbfounding\\ndumbfounds\\ndumbing\\ndumbly\\ndumbness\\ndumbnesses\\ndumbs\\ndumdum\\ndumdums\\ndumfound\\ndumfounded\\ndumfounding\\ndumfounds\\ndumka\\ndumky\\ndummied\\ndummies\\ndummkopf\\ndummkopfs\\ndummy\\ndummying\\ndump\\ndumpcart\\ndumpcarts\\ndumped\\ndumper\\ndumpers\\ndumpier\\ndumpiest\\ndumpily\\ndumping\\ndumpings\\ndumpish\\ndumpling\\ndumplings\\ndumps\\ndumpy\\ndun\\ndunce\\ndunces\\ndunch\\ndunches\\nduncical\\nduncish\\ndune\\nduneland\\ndunelands\\ndunelike\\ndunes\\ndung\\ndungaree\\ndungarees\\ndunged\\ndungeon\\ndungeons\\ndunghill\\ndunghills\\ndungier\\ndungiest\\ndunging\\ndungs\\ndungy\\ndunite\\ndunites\\ndunitic\\ndunk\\ndunked\\ndunker\\ndunkers\\ndunking\\ndunks\\ndunlin\\ndunlins\\ndunnage\\ndunnages\\ndunned\\ndunner\\ndunness\\ndunnesses\\ndunnest\\ndunning\\ndunnite\\ndunnites\\nduns\\ndunt\\ndunted\\ndunting\\ndunts\\nduo\\nduodena\\nduodenal\\nduodenum\\nduodenums\\nduolog\\nduologs\\nduologue\\nduologues\\nduomi\\nduomo\\nduomos\\nduopolies\\nduopoly\\nduopsonies\\nduopsony\\nduos\\nduotone\\nduotones\\ndup\\ndupable\\ndupe\\nduped\\nduper\\nduperies\\ndupers\\ndupery\\ndupes\\nduping\\nduple\\nduplex\\nduplexed\\nduplexer\\nduplexers\\nduplexes\\nduplexing\\nduplicate\\nduplicated\\nduplicates\\nduplicating\\nduplication\\nduplications\\nduplicator\\nduplicators\\nduplicity\\ndupped\\ndupping\\ndups\\ndura\\ndurabilities\\ndurability\\ndurable\\ndurables\\ndurably\\ndural\\nduramen\\nduramens\\ndurance\\ndurances\\nduras\\nduration\\ndurations\\ndurative\\nduratives\\ndurbar\\ndurbars\\ndure\\ndured\\ndures\\nduress\\nduresses\\ndurian\\ndurians\\nduring\\ndurion\\ndurions\\ndurmast\\ndurmasts\\ndurn\\ndurndest\\ndurned\\ndurneder\\ndurnedest\\ndurning\\ndurns\\nduro\\nduroc\\ndurocs\\nduros\\ndurr\\ndurra\\ndurras\\ndurrs\\ndurst\\ndurum\\ndurums\\ndusk\\ndusked\\nduskier\\nduskiest\\nduskily\\ndusking\\nduskish\\ndusks\\ndusky\\ndust\\ndustbin\\ndustbins\\ndusted\\nduster\\ndusters\\ndustheap\\ndustheaps\\ndustier\\ndustiest\\ndustily\\ndusting\\ndustless\\ndustlike\\ndustman\\ndustmen\\ndustpan\\ndustpans\\ndustrag\\ndustrags\\ndusts\\ndustup\\ndustups\\ndusty\\ndutch\\ndutchman\\ndutchmen\\nduteous\\ndutiable\\nduties\\ndutiful\\nduty\\nduumvir\\nduumviri\\nduumvirs\\nduvetine\\nduvetines\\nduvetyn\\nduvetyne\\nduvetynes\\nduvetyns\\ndwarf\\ndwarfed\\ndwarfer\\ndwarfest\\ndwarfing\\ndwarfish\\ndwarfism\\ndwarfisms\\ndwarfs\\ndwarves\\ndwell\\ndwelled\\ndweller\\ndwellers\\ndwelling\\ndwellings\\ndwells\\ndwelt\\ndwindle\\ndwindled\\ndwindles\\ndwindling\\ndwine\\ndwined\\ndwines\\ndwining\\ndyable\\ndyad\\ndyadic\\ndyadics\\ndyads\\ndyarchic\\ndyarchies\\ndyarchy\\ndybbuk\\ndybbukim\\ndybbuks\\ndye\\ndyeable\\ndyed\\ndyeing\\ndyeings\\ndyer\\ndyers\\ndyes\\ndyestuff\\ndyestuffs\\ndyeweed\\ndyeweeds\\ndyewood\\ndyewoods\\ndying\\ndyings\\ndyke\\ndyked\\ndyker\\ndykes\\ndyking\\ndynamic\\ndynamics\\ndynamism\\ndynamisms\\ndynamist\\ndynamists\\ndynamite\\ndynamited\\ndynamites\\ndynamiting\\ndynamo\\ndynamos\\ndynast\\ndynastic\\ndynasties\\ndynasts\\ndynasty\\ndynatron\\ndynatrons\\ndyne\\ndynes\\ndynode\\ndynodes\\ndysautonomia\\ndysenteries\\ndysentery\\ndysfunction\\ndysfunctions\\ndysgenic\\ndyslexia\\ndyslexias\\ndyslexic\\ndyspepsia\\ndyspepsias\\ndyspepsies\\ndyspepsy\\ndyspeptic\\ndysphagia\\ndyspnea\\ndyspneal\\ndyspneas\\ndyspneic\\ndyspnoea\\ndyspnoeas\\ndyspnoic\\ndystaxia\\ndystaxias\\ndystocia\\ndystocias\\ndystonia\\ndystonias\\ndystopia\\ndystopias\\ndystrophies\\ndystrophy\\ndysuria\\ndysurias\\ndysuric\\ndyvour\\ndyvours\\neach\\neager\\neagerer\\neagerest\\neagerly\\neagerness\\neagernesses\\neagers\\neagle\\neagles\\neaglet\\neaglets\\neagre\\neagres\\neanling\\neanlings\\near\\nearache\\nearaches\\neardrop\\neardrops\\neardrum\\neardrums\\neared\\nearflap\\nearflaps\\nearful\\nearfuls\\nearing\\nearings\\nearl\\nearlap\\nearlaps\\nearldom\\nearldoms\\nearless\\nearlier\\nearliest\\nearlobe\\nearlobes\\nearlock\\nearlocks\\nearls\\nearlship\\nearlships\\nearly\\nearmark\\nearmarked\\nearmarking\\nearmarks\\nearmuff\\nearmuffs\\nearn\\nearned\\nearner\\nearners\\nearnest\\nearnestly\\nearnestness\\nearnestnesses\\nearnests\\nearning\\nearnings\\nearns\\nearphone\\nearphones\\nearpiece\\nearpieces\\nearplug\\nearplugs\\nearring\\nearrings\\nears\\nearshot\\nearshots\\nearstone\\nearstones\\nearth\\nearthed\\nearthen\\nearthenware\\nearthenwares\\nearthier\\nearthiest\\nearthily\\nearthiness\\nearthinesses\\nearthing\\nearthlier\\nearthliest\\nearthliness\\nearthlinesses\\nearthly\\nearthman\\nearthmen\\nearthnut\\nearthnuts\\nearthpea\\nearthpeas\\nearthquake\\nearthquakes\\nearths\\nearthset\\nearthsets\\nearthward\\nearthwards\\nearthworm\\nearthworms\\nearthy\\nearwax\\nearwaxes\\nearwig\\nearwigged\\nearwigging\\nearwigs\\nearworm\\nearworms\\nease\\neased\\neaseful\\neasel\\neasels\\neasement\\neasements\\neases\\neasier\\neasies\\neasiest\\neasily\\neasiness\\neasinesses\\neasing\\neast\\neaster\\neasterlies\\neasterly\\neastern\\neasters\\neasting\\neastings\\neasts\\neastward\\neastwards\\neasy\\neasygoing\\neat\\neatable\\neatables\\neaten\\neater\\neateries\\neaters\\neatery\\neath\\neating\\neatings\\neats\\neau\\neaux\\neave\\neaved\\neaves\\neavesdrop\\neavesdropped\\neavesdropper\\neavesdroppers\\neavesdropping\\neavesdrops\\nebb\\nebbed\\nebbet\\nebbets\\nebbing\\nebbs\\nebon\\nebonies\\nebonise\\nebonised\\nebonises\\nebonising\\nebonite\\nebonites\\nebonize\\nebonized\\nebonizes\\nebonizing\\nebons\\nebony\\nebullient\\necarte\\necartes\\necaudate\\necbolic\\necbolics\\neccentric\\neccentrically\\neccentricities\\neccentricity\\neccentrics\\necclesia\\necclesiae\\necclesiastic\\necclesiastical\\necclesiastics\\neccrine\\necdyses\\necdysial\\necdysis\\necdyson\\necdysone\\necdysones\\necdysons\\necesis\\necesises\\nechard\\nechards\\neche\\neched\\nechelon\\necheloned\\necheloning\\nechelons\\neches\\nechidna\\nechidnae\\nechidnas\\nechinate\\neching\\nechini\\nechinoid\\nechinoids\\nechinus\\necho\\nechoed\\nechoer\\nechoers\\nechoes\\nechoey\\nechoic\\nechoing\\nechoism\\nechoisms\\necholess\\neclair\\neclairs\\neclat\\neclats\\neclectic\\neclectics\\neclipse\\neclipsed\\neclipses\\neclipsing\\neclipsis\\neclipsises\\necliptic\\necliptics\\neclogite\\neclogites\\neclogue\\neclogues\\neclosion\\neclosions\\necole\\necoles\\necologic\\necological\\necologically\\necologies\\necologist\\necologists\\necology\\neconomic\\neconomical\\neconomically\\neconomics\\neconomies\\neconomist\\neconomists\\neconomize\\neconomized\\neconomizes\\neconomizing\\neconomy\\necotonal\\necotone\\necotones\\necotype\\necotypes\\necotypic\\necraseur\\necraseurs\\necru\\necrus\\necstasies\\necstasy\\necstatic\\necstatically\\necstatics\\nectases\\nectasis\\nectatic\\necthyma\\necthymata\\nectoderm\\nectoderms\\nectomere\\nectomeres\\nectopia\\nectopias\\nectopic\\nectosarc\\nectosarcs\\nectozoa\\nectozoan\\nectozoans\\nectozoon\\nectypal\\nectype\\nectypes\\necu\\necumenic\\necus\\neczema\\neczemas\\nedacious\\nedacities\\nedacity\\nedaphic\\neddied\\neddies\\neddo\\neddoes\\neddy\\neddying\\nedelstein\\nedema\\nedemas\\nedemata\\nedentate\\nedentates\\nedge\\nedged\\nedgeless\\nedger\\nedgers\\nedges\\nedgeways\\nedgewise\\nedgier\\nedgiest\\nedgily\\nedginess\\nedginesses\\nedging\\nedgings\\nedgy\\nedh\\nedhs\\nedibilities\\nedibility\\nedible\\nedibles\\nedict\\nedictal\\nedicts\\nedification\\nedifications\\nedifice\\nedifices\\nedified\\nedifier\\nedifiers\\nedifies\\nedify\\nedifying\\nedile\\nediles\\nedit\\neditable\\nedited\\nediting\\nedition\\neditions\\neditor\\neditorial\\neditorialize\\neditorialized\\neditorializes\\neditorializing\\neditorially\\neditorials\\neditors\\neditress\\neditresses\\nedits\\neducable\\neducables\\neducate\\neducated\\neducates\\neducating\\neducation\\neducational\\neducations\\neducator\\neducators\\neduce\\neduced\\neduces\\neducing\\neduct\\neduction\\neductions\\neductive\\neductor\\neductors\\neducts\\neel\\neelgrass\\neelgrasses\\neelier\\neeliest\\neellike\\neelpout\\neelpouts\\neels\\neelworm\\neelworms\\neely\\neerie\\neerier\\neeriest\\neerily\\neeriness\\neerinesses\\neery\\nef\\neff\\neffable\\nefface\\neffaced\\neffacement\\neffacements\\neffacer\\neffacers\\neffaces\\neffacing\\neffect\\neffected\\neffecter\\neffecters\\neffecting\\neffective\\neffectively\\neffectiveness\\neffector\\neffectors\\neffects\\neffectual\\neffectually\\neffectualness\\neffectualnesses\\neffeminacies\\neffeminacy\\neffeminate\\neffendi\\neffendis\\nefferent\\nefferents\\neffervesce\\neffervesced\\neffervescence\\neffervescences\\neffervescent\\neffervescently\\neffervesces\\neffervescing\\neffete\\neffetely\\nefficacies\\nefficacious\\nefficacy\\nefficiencies\\nefficiency\\nefficient\\nefficiently\\neffigies\\neffigy\\neffluent\\neffluents\\neffluvia\\nefflux\\neffluxes\\neffort\\neffortless\\neffortlessly\\nefforts\\neffrontery\\neffs\\neffulge\\neffulged\\neffulges\\neffulging\\neffuse\\neffused\\neffuses\\neffusing\\neffusion\\neffusions\\neffusive\\neffusively\\nefs\\neft\\nefts\\neftsoon\\neftsoons\\negad\\negads\\negal\\negalite\\negalites\\neger\\negers\\negest\\negesta\\negested\\negesting\\negestion\\negestions\\negestive\\negests\\negg\\neggar\\neggars\\neggcup\\neggcups\\negged\\negger\\neggers\\negghead\\neggheads\\negging\\neggnog\\neggnogs\\neggplant\\neggplants\\neggs\\neggshell\\neggshells\\negis\\negises\\neglatere\\neglateres\\nego\\negoism\\negoisms\\negoist\\negoistic\\negoists\\negomania\\negomanias\\negos\\negotism\\negotisms\\negotist\\negotistic\\negotistical\\negotistically\\negotists\\negregious\\negregiously\\negress\\negressed\\negresses\\negressing\\negret\\negrets\\neh\\neide\\neider\\neiderdown\\neiderdowns\\neiders\\neidetic\\neidola\\neidolon\\neidolons\\neidos\\neight\\neighteen\\neighteens\\neighteenth\\neighteenths\\neighth\\neighthly\\neighths\\neighties\\neightieth\\neightieths\\neights\\neightvo\\neightvos\\neighty\\neikon\\neikones\\neikons\\neinkorn\\neinkorns\\neirenic\\neither\\nejaculate\\nejaculated\\nejaculates\\nejaculating\\nejaculation\\nejaculations\\neject\\nejecta\\nejected\\nejecting\\nejection\\nejections\\nejective\\nejectives\\nejector\\nejectors\\nejects\\neke\\neked\\nekes\\neking\\nekistic\\nekistics\\nektexine\\nektexines\\nel\\nelaborate\\nelaborated\\nelaborately\\nelaborateness\\nelaboratenesses\\nelaborates\\nelaborating\\nelaboration\\nelaborations\\nelain\\nelains\\nelan\\neland\\nelands\\nelans\\nelaphine\\nelapid\\nelapids\\nelapine\\nelapse\\nelapsed\\nelapses\\nelapsing\\nelastase\\nelastases\\nelastic\\nelasticities\\nelasticity\\nelastics\\nelastin\\nelastins\\nelate\\nelated\\nelatedly\\nelater\\nelaterid\\nelaterids\\nelaterin\\nelaterins\\nelaters\\nelates\\nelating\\nelation\\nelations\\nelative\\nelatives\\nelbow\\nelbowed\\nelbowing\\nelbows\\neld\\nelder\\nelderberries\\nelderberry\\nelderly\\nelders\\neldest\\neldrich\\neldritch\\nelds\\nelect\\nelected\\nelecting\\nelection\\nelections\\nelective\\nelectives\\nelector\\nelectoral\\nelectorate\\nelectorates\\nelectors\\nelectret\\nelectrets\\nelectric\\nelectrical\\nelectrically\\nelectrician\\nelectricians\\nelectricities\\nelectricity\\nelectrics\\nelectrification\\nelectrifications\\nelectro\\nelectrocardiogram\\nelectrocardiograms\\nelectrocardiograph\\nelectrocardiographs\\nelectrocute\\nelectrocuted\\nelectrocutes\\nelectrocuting\\nelectrocution\\nelectrocutions\\nelectrode\\nelectrodes\\nelectroed\\nelectroing\\nelectrolysis\\nelectrolysises\\nelectrolyte\\nelectrolytes\\nelectrolytic\\nelectromagnet\\nelectromagnetally\\nelectromagnetic\\nelectromagnets\\nelectron\\nelectronic\\nelectronics\\nelectrons\\nelectroplate\\nelectroplated\\nelectroplates\\nelectroplating\\nelectros\\nelectrum\\nelectrums\\nelects\\nelegance\\nelegances\\nelegancies\\nelegancy\\nelegant\\nelegantly\\nelegiac\\nelegiacs\\nelegies\\nelegise\\nelegised\\nelegises\\nelegising\\nelegist\\nelegists\\nelegit\\nelegits\\nelegize\\nelegized\\nelegizes\\nelegizing\\nelegy\\nelement\\nelemental\\nelementary\\nelements\\nelemi\\nelemis\\nelenchi\\nelenchic\\nelenchus\\nelenctic\\nelephant\\nelephants\\nelevate\\nelevated\\nelevates\\nelevating\\nelevation\\nelevations\\nelevator\\nelevators\\neleven\\nelevens\\neleventh\\nelevenths\\nelevon\\nelevons\\nelf\\nelfin\\nelfins\\nelfish\\nelfishly\\nelflock\\nelflocks\\nelhi\\nelicit\\nelicited\\neliciting\\nelicitor\\nelicitors\\nelicits\\nelide\\nelided\\nelides\\nelidible\\neliding\\neligibilities\\neligibility\\neligible\\neligibles\\neligibly\\neliminate\\neliminated\\neliminates\\neliminating\\nelimination\\neliminations\\nelision\\nelisions\\nelite\\nelites\\nelitism\\nelitisms\\nelitist\\nelitists\\nelixir\\nelixirs\\nelk\\nelkhound\\nelkhounds\\nelks\\nell\\nellipse\\nellipses\\nellipsis\\nelliptic\\nelliptical\\nells\\nelm\\nelmier\\nelmiest\\nelms\\nelmy\\nelocution\\nelocutions\\nelodea\\nelodeas\\neloign\\neloigned\\neloigner\\neloigners\\neloigning\\neloigns\\neloin\\neloined\\neloiner\\neloiners\\neloining\\neloins\\nelongate\\nelongated\\nelongates\\nelongating\\nelongation\\nelongations\\nelope\\neloped\\neloper\\nelopers\\nelopes\\neloping\\neloquent\\neloquently\\nels\\nelse\\nelsewhere\\neluant\\neluants\\neluate\\neluates\\nelucidate\\nelucidated\\nelucidates\\nelucidating\\nelucidation\\nelucidations\\nelude\\neluded\\neluder\\neluders\\neludes\\neluding\\neluent\\neluents\\nelusion\\nelusions\\nelusive\\nelusively\\nelusiveness\\nelusivenesses\\nelusory\\nelute\\neluted\\nelutes\\neluting\\nelution\\nelutions\\neluvia\\neluvial\\neluviate\\neluviated\\neluviates\\neluviating\\neluvium\\neluviums\\nelver\\nelvers\\nelves\\nelvish\\nelvishly\\nelysian\\nelytra\\nelytroid\\nelytron\\nelytrous\\nelytrum\\nem\\nemaciate\\nemaciated\\nemaciates\\nemaciating\\nemaciation\\nemaciations\\nemanate\\nemanated\\nemanates\\nemanating\\nemanation\\nemanations\\nemanator\\nemanators\\nemancipatation\\nemancipatations\\nemancipate\\nemancipated\\nemancipates\\nemancipating\\nemancipation\\nemancipations\\nemasculatation\\nemasculatations\\nemasculate\\nemasculated\\nemasculates\\nemasculating\\nembalm\\nembalmed\\nembalmer\\nembalmers\\nembalming\\nembalms\\nembank\\nembanked\\nembanking\\nembankment\\nembankments\\nembanks\\nembar\\nembargo\\nembargoed\\nembargoing\\nembargos\\nembark\\nembarkation\\nembarkations\\nembarked\\nembarking\\nembarks\\nembarrass\\nembarrassed\\nembarrasses\\nembarrassing\\nembarrassment\\nembarrassments\\nembarred\\nembarring\\nembars\\nembassies\\nembassy\\nembattle\\nembattled\\nembattles\\nembattling\\nembay\\nembayed\\nembaying\\nembays\\nembed\\nembedded\\nembedding\\nembeds\\nembellish\\nembellished\\nembellishes\\nembellishing\\nembellishment\\nembellishments\\nember\\nembers\\nembezzle\\nembezzled\\nembezzlement\\nembezzlements\\nembezzler\\nembezzlers\\nembezzles\\nembezzling\\nembitter\\nembittered\\nembittering\\nembitters\\nemblaze\\nemblazed\\nemblazer\\nemblazers\\nemblazes\\nemblazing\\nemblazon\\nemblazoned\\nemblazoning\\nemblazons\\nemblem\\nemblematic\\nemblemed\\nembleming\\nemblems\\nembodied\\nembodier\\nembodiers\\nembodies\\nembodiment\\nembodiments\\nembody\\nembodying\\nembolden\\nemboldened\\nemboldening\\nemboldens\\nemboli\\nembolic\\nembolies\\nembolism\\nembolisms\\nembolus\\nemboly\\nemborder\\nembordered\\nembordering\\nemborders\\nembosk\\nembosked\\nembosking\\nembosks\\nembosom\\nembosomed\\nembosoming\\nembosoms\\nemboss\\nembossed\\nembosser\\nembossers\\nembosses\\nembossing\\nembow\\nembowed\\nembowel\\nemboweled\\nemboweling\\nembowelled\\nembowelling\\nembowels\\nembower\\nembowered\\nembowering\\nembowers\\nembowing\\nembows\\nembrace\\nembraced\\nembracer\\nembracers\\nembraces\\nembracing\\nembroider\\nembroidered\\nembroidering\\nembroiders\\nembroil\\nembroiled\\nembroiling\\nembroils\\nembrown\\nembrowned\\nembrowning\\nembrowns\\nembrue\\nembrued\\nembrues\\nembruing\\nembrute\\nembruted\\nembrutes\\nembruting\\nembryo\\nembryoid\\nembryon\\nembryonic\\nembryons\\nembryos\\nemcee\\nemceed\\nemcees\\nemceing\\neme\\nemeer\\nemeerate\\nemeerates\\nemeers\\nemend\\nemendate\\nemendated\\nemendates\\nemendating\\nemendation\\nemendations\\nemended\\nemender\\nemenders\\nemending\\nemends\\nemerald\\nemeralds\\nemerge\\nemerged\\nemergence\\nemergences\\nemergencies\\nemergency\\nemergent\\nemergents\\nemerges\\nemerging\\nemeries\\nemerita\\nemeriti\\nemeritus\\nemerod\\nemerods\\nemeroid\\nemeroids\\nemersed\\nemersion\\nemersions\\nemery\\nemes\\nemeses\\nemesis\\nemetic\\nemetics\\nemetin\\nemetine\\nemetines\\nemetins\\nemeu\\nemeus\\nemeute\\nemeutes\\nemigrant\\nemigrants\\nemigrate\\nemigrated\\nemigrates\\nemigrating\\nemigration\\nemigrations\\nemigre\\nemigres\\neminence\\neminences\\neminencies\\neminency\\neminent\\neminently\\nemir\\nemirate\\nemirates\\nemirs\\nemissaries\\nemissary\\nemission\\nemissions\\nemissive\\nemit\\nemits\\nemitted\\nemitter\\nemitters\\nemitting\\nemmer\\nemmers\\nemmet\\nemmets\\nemodin\\nemodins\\nemolument\\nemoluments\\nemote\\nemoted\\nemoter\\nemoters\\nemotes\\nemoting\\nemotion\\nemotional\\nemotionally\\nemotions\\nemotive\\nempale\\nempaled\\nempaler\\nempalers\\nempales\\nempaling\\nempanel\\nempaneled\\nempaneling\\nempanelled\\nempanelling\\nempanels\\nempathic\\nempathies\\nempathy\\nemperies\\nemperor\\nemperors\\nempery\\nemphases\\nemphasis\\nemphasize\\nemphasized\\nemphasizes\\nemphasizing\\nemphatic\\nemphatically\\nemphysema\\nemphysemas\\nempire\\nempires\\nempiric\\nempirical\\nempirically\\nempirics\\nemplace\\nemplaced\\nemplaces\\nemplacing\\nemplane\\nemplaned\\nemplanes\\nemplaning\\nemploy\\nemploye\\nemployed\\nemployee\\nemployees\\nemployer\\nemployers\\nemployes\\nemploying\\nemployment\\nemployments\\nemploys\\nempoison\\nempoisoned\\nempoisoning\\nempoisons\\nemporia\\nemporium\\nemporiums\\nempower\\nempowered\\nempowering\\nempowers\\nempress\\nempresses\\nemprise\\nemprises\\nemprize\\nemprizes\\nemptied\\nemptier\\nemptiers\\nempties\\nemptiest\\nemptily\\nemptiness\\nemptinesses\\nemptings\\nemptins\\nempty\\nemptying\\nempurple\\nempurpled\\nempurples\\nempurpling\\nempyema\\nempyemas\\nempyemata\\nempyemic\\nempyreal\\nempyrean\\nempyreans\\nems\\nemu\\nemulate\\nemulated\\nemulates\\nemulating\\nemulation\\nemulations\\nemulator\\nemulators\\nemulous\\nemulsification\\nemulsifications\\nemulsified\\nemulsifier\\nemulsifiers\\nemulsifies\\nemulsify\\nemulsifying\\nemulsion\\nemulsions\\nemulsive\\nemulsoid\\nemulsoids\\nemus\\nemyd\\nemyde\\nemydes\\nemyds\\nen\\nenable\\nenabled\\nenabler\\nenablers\\nenables\\nenabling\\nenact\\nenacted\\nenacting\\nenactive\\nenactment\\nenactments\\nenactor\\nenactors\\nenactory\\nenacts\\nenamel\\nenameled\\nenameler\\nenamelers\\nenameling\\nenamelled\\nenamelling\\nenamels\\nenamine\\nenamines\\nenamor\\nenamored\\nenamoring\\nenamors\\nenamour\\nenamoured\\nenamouring\\nenamours\\nenate\\nenates\\nenatic\\nenation\\nenations\\nencaenia\\nencage\\nencaged\\nencages\\nencaging\\nencamp\\nencamped\\nencamping\\nencampment\\nencampments\\nencamps\\nencase\\nencased\\nencases\\nencash\\nencashed\\nencashes\\nencashing\\nencasing\\nenceinte\\nenceintes\\nencephalitides\\nencephalitis\\nenchain\\nenchained\\nenchaining\\nenchains\\nenchant\\nenchanted\\nenchanter\\nenchanters\\nenchanting\\nenchantment\\nenchantments\\nenchantress\\nenchantresses\\nenchants\\nenchase\\nenchased\\nenchaser\\nenchasers\\nenchases\\nenchasing\\nenchoric\\nencina\\nencinal\\nencinas\\nencipher\\nenciphered\\nenciphering\\nenciphers\\nencircle\\nencircled\\nencircles\\nencircling\\nenclasp\\nenclasped\\nenclasping\\nenclasps\\nenclave\\nenclaves\\nenclitic\\nenclitics\\nenclose\\nenclosed\\nencloser\\nenclosers\\nencloses\\nenclosing\\nenclosure\\nenclosures\\nencode\\nencoded\\nencoder\\nencoders\\nencodes\\nencoding\\nencomia\\nencomium\\nencomiums\\nencompass\\nencompassed\\nencompasses\\nencompassing\\nencore\\nencored\\nencores\\nencoring\\nencounter\\nencountered\\nencountering\\nencounters\\nencourage\\nencouraged\\nencouragement\\nencouragements\\nencourages\\nencouraging\\nencroach\\nencroached\\nencroaches\\nencroaching\\nencroachment\\nencroachments\\nencrust\\nencrusted\\nencrusting\\nencrusts\\nencrypt\\nencrypted\\nencrypting\\nencrypts\\nencumber\\nencumberance\\nencumberances\\nencumbered\\nencumbering\\nencumbers\\nencyclic\\nencyclical\\nencyclicals\\nencyclics\\nencyclopedia\\nencyclopedias\\nencyclopedic\\nencyst\\nencysted\\nencysting\\nencysts\\nend\\nendamage\\nendamaged\\nendamages\\nendamaging\\nendameba\\nendamebae\\nendamebas\\nendanger\\nendangered\\nendangering\\nendangers\\nendarch\\nendarchies\\nendarchy\\nendbrain\\nendbrains\\nendear\\nendeared\\nendearing\\nendearment\\nendearments\\nendears\\nendeavor\\nendeavored\\nendeavoring\\nendeavors\\nended\\nendemial\\nendemic\\nendemics\\nendemism\\nendemisms\\nender\\nendermic\\nenders\\nendexine\\nendexines\\nending\\nendings\\nendite\\nendited\\nendites\\nenditing\\nendive\\nendives\\nendleaf\\nendleaves\\nendless\\nendlessly\\nendlong\\nendmost\\nendocarp\\nendocarps\\nendocrine\\nendoderm\\nendoderms\\nendogamies\\nendogamy\\nendogen\\nendogenies\\nendogens\\nendogeny\\nendopod\\nendopods\\nendorse\\nendorsed\\nendorsee\\nendorsees\\nendorsement\\nendorsements\\nendorser\\nendorsers\\nendorses\\nendorsing\\nendorsor\\nendorsors\\nendosarc\\nendosarcs\\nendosmos\\nendosmoses\\nendosome\\nendosomes\\nendostea\\nendow\\nendowed\\nendower\\nendowers\\nendowing\\nendowment\\nendowments\\nendows\\nendozoic\\nendpaper\\nendpapers\\nendplate\\nendplates\\nendrin\\nendrins\\nends\\nendue\\nendued\\nendues\\nenduing\\nendurable\\nendurance\\nendurances\\nendure\\nendured\\nendures\\nenduring\\nenduro\\nenduros\\nendways\\nendwise\\nenema\\nenemas\\nenemata\\nenemies\\nenemy\\nenergetic\\nenergetically\\nenergid\\nenergids\\nenergies\\nenergise\\nenergised\\nenergises\\nenergising\\nenergize\\nenergized\\nenergizes\\nenergizing\\nenergy\\nenervate\\nenervated\\nenervates\\nenervating\\nenervation\\nenervations\\nenface\\nenfaced\\nenfaces\\nenfacing\\nenfeeble\\nenfeebled\\nenfeebles\\nenfeebling\\nenfeoff\\nenfeoffed\\nenfeoffing\\nenfeoffs\\nenfetter\\nenfettered\\nenfettering\\nenfetters\\nenfever\\nenfevered\\nenfevering\\nenfevers\\nenfilade\\nenfiladed\\nenfilades\\nenfilading\\nenfin\\nenflame\\nenflamed\\nenflames\\nenflaming\\nenfold\\nenfolded\\nenfolder\\nenfolders\\nenfolding\\nenfolds\\nenforce\\nenforceable\\nenforced\\nenforcement\\nenforcements\\nenforcer\\nenforcers\\nenforces\\nenforcing\\nenframe\\nenframed\\nenframes\\nenframing\\nenfranchise\\nenfranchised\\nenfranchisement\\nenfranchisements\\nenfranchises\\nenfranchising\\neng\\nengage\\nengaged\\nengagement\\nengagements\\nengager\\nengagers\\nengages\\nengaging\\nengender\\nengendered\\nengendering\\nengenders\\nengild\\nengilded\\nengilding\\nengilds\\nengine\\nengined\\nengineer\\nengineered\\nengineering\\nengineerings\\nengineers\\nengineries\\nenginery\\nengines\\nengining\\nenginous\\nengird\\nengirded\\nengirding\\nengirdle\\nengirdled\\nengirdles\\nengirdling\\nengirds\\nengirt\\nenglish\\nenglished\\nenglishes\\nenglishing\\nenglut\\nengluts\\nenglutted\\nenglutting\\nengorge\\nengorged\\nengorges\\nengorging\\nengraft\\nengrafted\\nengrafting\\nengrafts\\nengrail\\nengrailed\\nengrailing\\nengrails\\nengrain\\nengrained\\nengraining\\nengrains\\nengram\\nengramme\\nengrammes\\nengrams\\nengrave\\nengraved\\nengraver\\nengravers\\nengraves\\nengraving\\nengravings\\nengross\\nengrossed\\nengrosses\\nengrossing\\nengs\\nengulf\\nengulfed\\nengulfing\\nengulfs\\nenhalo\\nenhaloed\\nenhaloes\\nenhaloing\\nenhance\\nenhanced\\nenhancement\\nenhancements\\nenhancer\\nenhancers\\nenhances\\nenhancing\\neniac\\nenigma\\nenigmas\\nenigmata\\nenigmatic\\nenisle\\nenisled\\nenisles\\nenisling\\nenjambed\\nenjoin\\nenjoined\\nenjoiner\\nenjoiners\\nenjoining\\nenjoins\\nenjoy\\nenjoyable\\nenjoyed\\nenjoyer\\nenjoyers\\nenjoying\\nenjoyment\\nenjoyments\\nenjoys\\nenkindle\\nenkindled\\nenkindles\\nenkindling\\nenlace\\nenlaced\\nenlaces\\nenlacing\\nenlarge\\nenlarged\\nenlargement\\nenlargements\\nenlarger\\nenlargers\\nenlarges\\nenlarging\\nenlighten\\nenlightened\\nenlightening\\nenlightenment\\nenlightenments\\nenlightens\\nenlist\\nenlisted\\nenlistee\\nenlistees\\nenlister\\nenlisters\\nenlisting\\nenlistment\\nenlistments\\nenlists\\nenliven\\nenlivened\\nenlivening\\nenlivens\\nenmesh\\nenmeshed\\nenmeshes\\nenmeshing\\nenmities\\nenmity\\nennead\\nenneadic\\nenneads\\nenneagon\\nenneagons\\nennoble\\nennobled\\nennobler\\nennoblers\\nennobles\\nennobling\\nennui\\nennuis\\nennuye\\nennuyee\\nenol\\nenolase\\nenolases\\nenolic\\nenologies\\nenology\\nenols\\nenorm\\nenormities\\nenormity\\nenormous\\nenormously\\nenormousness\\nenormousnesses\\nenosis\\nenosises\\nenough\\nenoughs\\nenounce\\nenounced\\nenounces\\nenouncing\\nenow\\nenows\\nenplane\\nenplaned\\nenplanes\\nenplaning\\nenquire\\nenquired\\nenquires\\nenquiries\\nenquiring\\nenquiry\\nenrage\\nenraged\\nenrages\\nenraging\\nenrapt\\nenravish\\nenravished\\nenravishes\\nenravishing\\nenrich\\nenriched\\nenricher\\nenrichers\\nenriches\\nenriching\\nenrichment\\nenrichments\\nenrobe\\nenrobed\\nenrober\\nenrobers\\nenrobes\\nenrobing\\nenrol\\nenroll\\nenrolled\\nenrollee\\nenrollees\\nenroller\\nenrollers\\nenrolling\\nenrollment\\nenrollments\\nenrolls\\nenrols\\nenroot\\nenrooted\\nenrooting\\nenroots\\nens\\nensample\\nensamples\\nensconce\\nensconced\\nensconces\\nensconcing\\nenscroll\\nenscrolled\\nenscrolling\\nenscrolls\\nensemble\\nensembles\\nenserf\\nenserfed\\nenserfing\\nenserfs\\nensheath\\nensheathed\\nensheathing\\nensheaths\\nenshrine\\nenshrined\\nenshrines\\nenshrining\\nenshroud\\nenshrouded\\nenshrouding\\nenshrouds\\nensiform\\nensign\\nensigncies\\nensigncy\\nensigns\\nensilage\\nensilaged\\nensilages\\nensilaging\\nensile\\nensiled\\nensiles\\nensiling\\nenskied\\nenskies\\nensky\\nenskyed\\nenskying\\nenslave\\nenslaved\\nenslavement\\nenslavements\\nenslaver\\nenslavers\\nenslaves\\nenslaving\\nensnare\\nensnared\\nensnarer\\nensnarers\\nensnares\\nensnaring\\nensnarl\\nensnarled\\nensnarling\\nensnarls\\nensorcel\\nensorceled\\nensorceling\\nensorcels\\nensoul\\nensouled\\nensouling\\nensouls\\nensphere\\nensphered\\nenspheres\\nensphering\\nensue\\nensued\\nensues\\nensuing\\nensure\\nensured\\nensurer\\nensurers\\nensures\\nensuring\\nenswathe\\nenswathed\\nenswathes\\nenswathing\\nentail\\nentailed\\nentailer\\nentailers\\nentailing\\nentails\\nentameba\\nentamebae\\nentamebas\\nentangle\\nentangled\\nentanglement\\nentanglements\\nentangles\\nentangling\\nentases\\nentasia\\nentasias\\nentasis\\nentastic\\nentellus\\nentelluses\\nentente\\nententes\\nenter\\nentera\\nenteral\\nentered\\nenterer\\nenterers\\nenteric\\nentering\\nenteron\\nenterons\\nenterprise\\nenterprises\\nenters\\nentertain\\nentertained\\nentertainer\\nentertainers\\nentertaining\\nentertainment\\nentertainments\\nentertains\\nenthalpies\\nenthalpy\\nenthetic\\nenthral\\nenthrall\\nenthralled\\nenthralling\\nenthralls\\nenthrals\\nenthrone\\nenthroned\\nenthrones\\nenthroning\\nenthuse\\nenthused\\nenthuses\\nenthusiasm\\nenthusiast\\nenthusiastic\\nenthusiastically\\nenthusiasts\\nenthusing\\nentia\\nentice\\nenticed\\nenticement\\nenticements\\nenticer\\nenticers\\nentices\\nenticing\\nentire\\nentirely\\nentires\\nentireties\\nentirety\\nentities\\nentitle\\nentitled\\nentitles\\nentitling\\nentity\\nentoderm\\nentoderms\\nentoil\\nentoiled\\nentoiling\\nentoils\\nentomb\\nentombed\\nentombing\\nentombs\\nentomological\\nentomologies\\nentomologist\\nentomologists\\nentomology\\nentopic\\nentourage\\nentourages\\nentozoa\\nentozoal\\nentozoan\\nentozoans\\nentozoic\\nentozoon\\nentrails\\nentrain\\nentrained\\nentraining\\nentrains\\nentrance\\nentranced\\nentrances\\nentrancing\\nentrant\\nentrants\\nentrap\\nentrapment\\nentrapments\\nentrapped\\nentrapping\\nentraps\\nentreat\\nentreated\\nentreaties\\nentreating\\nentreats\\nentreaty\\nentree\\nentrees\\nentrench\\nentrenched\\nentrenches\\nentrenching\\nentrenchment\\nentrenchments\\nentrepot\\nentrepots\\nentrepreneur\\nentrepreneurs\\nentresol\\nentresols\\nentries\\nentropies\\nentropy\\nentrust\\nentrusted\\nentrusting\\nentrusts\\nentry\\nentryway\\nentryways\\nentwine\\nentwined\\nentwines\\nentwining\\nentwist\\nentwisted\\nentwisting\\nentwists\\nenumerate\\nenumerated\\nenumerates\\nenumerating\\nenumeration\\nenumerations\\nenunciate\\nenunciated\\nenunciates\\nenunciating\\nenunciation\\nenunciations\\nenure\\nenured\\nenures\\nenuresis\\nenuresises\\nenuretic\\nenuring\\nenvelop\\nenvelope\\nenveloped\\nenvelopes\\nenveloping\\nenvelopment\\nenvelopments\\nenvelops\\nenvenom\\nenvenomed\\nenvenoming\\nenvenoms\\nenviable\\nenviably\\nenvied\\nenvier\\nenviers\\nenvies\\nenvious\\nenviron\\nenvironed\\nenvironing\\nenvironment\\nenvironmental\\nenvironmentalist\\nenvironmentalists\\nenvironments\\nenvirons\\nenvisage\\nenvisaged\\nenvisages\\nenvisaging\\nenvision\\nenvisioned\\nenvisioning\\nenvisions\\nenvoi\\nenvois\\nenvoy\\nenvoys\\nenvy\\nenvying\\nenwheel\\nenwheeled\\nenwheeling\\nenwheels\\nenwind\\nenwinding\\nenwinds\\nenwomb\\nenwombed\\nenwombing\\nenwombs\\nenwound\\nenwrap\\nenwrapped\\nenwrapping\\nenwraps\\nenzootic\\nenzootics\\nenzym\\nenzyme\\nenzymes\\nenzymic\\nenzyms\\neobiont\\neobionts\\neohippus\\neohippuses\\neolian\\neolipile\\neolipiles\\neolith\\neolithic\\neoliths\\neolopile\\neolopiles\\neon\\neonian\\neonism\\neonisms\\neons\\neosin\\neosine\\neosines\\neosinic\\neosins\\nepact\\nepacts\\neparch\\neparchies\\neparchs\\neparchy\\nepaulet\\nepaulets\\nepee\\nepeeist\\nepeeists\\nepees\\nepeiric\\nepergne\\nepergnes\\nepha\\nephah\\nephahs\\nephas\\nephebe\\nephebes\\nephebi\\nephebic\\nepheboi\\nephebos\\nephebus\\nephedra\\nephedras\\nephedrin\\nephedrins\\nephemera\\nephemerae\\nephemeras\\nephod\\nephods\\nephor\\nephoral\\nephorate\\nephorates\\nephori\\nephors\\nepiblast\\nepiblasts\\nepibolic\\nepibolies\\nepiboly\\nepic\\nepical\\nepically\\nepicalyces\\nepicalyx\\nepicalyxes\\nepicarp\\nepicarps\\nepicedia\\nepicene\\nepicenes\\nepiclike\\nepicotyl\\nepicotyls\\nepics\\nepicure\\nepicurean\\nepicureans\\nepicures\\nepicycle\\nepicycles\\nepidemic\\nepidemics\\nepidemiology\\nepiderm\\nepidermis\\nepidermises\\nepiderms\\nepidote\\nepidotes\\nepidotic\\nepidural\\nepifauna\\nepifaunae\\nepifaunas\\nepifocal\\nepigeal\\nepigean\\nepigene\\nepigenic\\nepigeous\\nepigon\\nepigone\\nepigones\\nepigoni\\nepigonic\\nepigons\\nepigonus\\nepigram\\nepigrammatic\\nepigrams\\nepigraph\\nepigraphs\\nepigynies\\nepigyny\\nepilepsies\\nepilepsy\\nepileptic\\nepileptics\\nepilog\\nepilogs\\nepilogue\\nepilogued\\nepilogues\\nepiloguing\\nepimer\\nepimere\\nepimeres\\nepimeric\\nepimers\\nepimysia\\nepinaoi\\nepinaos\\nepinasties\\nepinasty\\nepiphanies\\nepiphany\\nepiphyte\\nepiphytes\\nepiscia\\nepiscias\\nepiscopal\\nepiscope\\nepiscopes\\nepisode\\nepisodes\\nepisodic\\nepisomal\\nepisome\\nepisomes\\nepistasies\\nepistasy\\nepistaxis\\nepistle\\nepistler\\nepistlers\\nepistles\\nepistyle\\nepistyles\\nepitaph\\nepitaphs\\nepitases\\nepitasis\\nepitaxies\\nepitaxy\\nepithet\\nepithets\\nepitome\\nepitomes\\nepitomic\\nepitomize\\nepitomized\\nepitomizes\\nepitomizing\\nepizoa\\nepizoic\\nepizoism\\nepizoisms\\nepizoite\\nepizoites\\nepizoon\\nepizooties\\nepizooty\\nepoch\\nepochal\\nepochs\\nepode\\nepodes\\neponym\\neponymic\\neponymies\\neponyms\\neponymy\\nepopee\\nepopees\\nepopoeia\\nepopoeias\\nepos\\neposes\\nepoxide\\nepoxides\\nepoxied\\nepoxies\\nepoxy\\nepoxyed\\nepoxying\\nepsilon\\nepsilons\\nequabilities\\nequability\\nequable\\nequably\\nequal\\nequaled\\nequaling\\nequalise\\nequalised\\nequalises\\nequalising\\nequalities\\nequality\\nequalize\\nequalized\\nequalizes\\nequalizing\\nequalled\\nequalling\\nequally\\nequals\\nequanimities\\nequanimity\\nequate\\nequated\\nequates\\nequating\\nequation\\nequations\\nequator\\nequatorial\\nequators\\nequerries\\nequerry\\nequestrian\\nequestrians\\nequilateral\\nequilibrium\\nequine\\nequinely\\nequines\\nequinities\\nequinity\\nequinox\\nequinoxes\\nequip\\nequipage\\nequipages\\nequipment\\nequipments\\nequipped\\nequipper\\nequippers\\nequipping\\nequips\\nequiseta\\nequitable\\nequitant\\nequites\\nequities\\nequity\\nequivalence\\nequivalences\\nequivalent\\nequivalents\\nequivocal\\nequivocate\\nequivocated\\nequivocates\\nequivocating\\nequivocation\\nequivocations\\nequivoke\\nequivokes\\ner\\nera\\neradiate\\neradiated\\neradiates\\neradiating\\neradicable\\neradicate\\neradicated\\neradicates\\neradicating\\neras\\nerase\\nerased\\neraser\\nerasers\\nerases\\nerasing\\nerasion\\nerasions\\nerasure\\nerasures\\nerbium\\nerbiums\\nere\\nerect\\nerected\\nerecter\\nerecters\\nerectile\\nerecting\\nerection\\nerections\\nerective\\nerectly\\nerector\\nerectors\\nerects\\nerelong\\neremite\\neremites\\neremitic\\neremuri\\neremurus\\nerenow\\nerepsin\\nerepsins\\nerethic\\nerethism\\nerethisms\\nerewhile\\nerg\\nergastic\\nergate\\nergates\\nergo\\nergodic\\nergot\\nergotic\\nergotism\\nergotisms\\nergots\\nergs\\nerica\\nericas\\nericoid\\nerigeron\\nerigerons\\neringo\\neringoes\\neringos\\neristic\\neristics\\nerlking\\nerlkings\\nermine\\nermined\\nermines\\nern\\nerne\\nernes\\nerns\\nerode\\neroded\\nerodent\\nerodes\\nerodible\\neroding\\nerogenic\\neros\\nerose\\nerosely\\neroses\\nerosible\\nerosion\\nerosions\\nerosive\\nerotic\\nerotica\\nerotical\\nerotically\\nerotics\\nerotism\\nerotisms\\nerr\\nerrancies\\nerrancy\\nerrand\\nerrands\\nerrant\\nerrantly\\nerrantries\\nerrantry\\nerrants\\nerrata\\nerratas\\nerratic\\nerratically\\nerratum\\nerred\\nerrhine\\nerrhines\\nerring\\nerringly\\nerroneous\\nerroneously\\nerror\\nerrors\\nerrs\\ners\\nersatz\\nersatzes\\nerses\\nerst\\nerstwhile\\neruct\\neructate\\neructated\\neructates\\neructating\\neructed\\neructing\\neructs\\nerudite\\nerudition\\neruditions\\nerugo\\nerugos\\nerumpent\\nerupt\\nerupted\\nerupting\\neruption\\neruptions\\neruptive\\neruptives\\nerupts\\nervil\\nervils\\neryngo\\neryngoes\\neryngos\\nerythema\\nerythemas\\nerythematous\\nerythrocytosis\\nerythron\\nerythrons\\nes\\nescalade\\nescaladed\\nescalades\\nescalading\\nescalate\\nescalated\\nescalates\\nescalating\\nescalation\\nescalations\\nescalator\\nescalators\\nescallop\\nescalloped\\nescalloping\\nescallops\\nescalop\\nescaloped\\nescaloping\\nescalops\\nescapade\\nescapades\\nescape\\nescaped\\nescapee\\nescapees\\nescaper\\nescapers\\nescapes\\nescaping\\nescapism\\nescapisms\\nescapist\\nescapists\\nescar\\nescargot\\nescargots\\nescarole\\nescaroles\\nescarp\\nescarped\\nescarping\\nescarpment\\nescarpments\\nescarps\\nescars\\neschalot\\neschalots\\neschar\\neschars\\nescheat\\nescheated\\nescheating\\nescheats\\neschew\\neschewal\\neschewals\\neschewed\\neschewing\\neschews\\nescolar\\nescolars\\nescort\\nescorted\\nescorting\\nescorts\\nescot\\nescoted\\nescoting\\nescots\\nescrow\\nescrowed\\nescrowing\\nescrows\\nescuage\\nescuages\\nescudo\\nescudos\\nesculent\\nesculents\\neserine\\neserines\\neses\\neskar\\neskars\\nesker\\neskers\\nesophagi\\nesophagus\\nesoteric\\nespalier\\nespaliered\\nespaliering\\nespaliers\\nespanol\\nespanoles\\nesparto\\nespartos\\nespecial\\nespecially\\nespial\\nespials\\nespied\\nespiegle\\nespies\\nespionage\\nespionages\\nespousal\\nespousals\\nespouse\\nespoused\\nespouser\\nespousers\\nespouses\\nespousing\\nespresso\\nespressos\\nesprit\\nesprits\\nespy\\nespying\\nesquire\\nesquired\\nesquires\\nesquiring\\ness\\nessay\\nessayed\\nessayer\\nessayers\\nessaying\\nessayist\\nessayists\\nessays\\nessence\\nessences\\nessential\\nessentially\\nesses\\nessoin\\nessoins\\nessonite\\nessonites\\nestablish\\nestablished\\nestablishes\\nestablishing\\nestablishment\\nestablishments\\nestancia\\nestancias\\nestate\\nestated\\nestates\\nestating\\nesteem\\nesteemed\\nesteeming\\nesteems\\nester\\nesterase\\nesterases\\nesterified\\nesterifies\\nesterify\\nesterifying\\nesters\\nestheses\\nesthesia\\nesthesias\\nesthesis\\nesthesises\\nesthete\\nesthetes\\nesthetic\\nestimable\\nestimate\\nestimated\\nestimates\\nestimating\\nestimation\\nestimations\\nestimator\\nestimators\\nestival\\nestivate\\nestivated\\nestivates\\nestivating\\nestop\\nestopped\\nestoppel\\nestoppels\\nestopping\\nestops\\nestovers\\nestragon\\nestragons\\nestral\\nestrange\\nestranged\\nestrangement\\nestrangements\\nestranges\\nestranging\\nestray\\nestrayed\\nestraying\\nestrays\\nestreat\\nestreated\\nestreating\\nestreats\\nestrin\\nestrins\\nestriol\\nestriols\\nestrogen\\nestrogens\\nestrone\\nestrones\\nestrous\\nestrual\\nestrum\\nestrums\\nestrus\\nestruses\\nestuaries\\nestuary\\nesurient\\net\\neta\\netagere\\netageres\\netamin\\netamine\\netamines\\netamins\\netape\\netapes\\netas\\netatism\\netatisms\\netatist\\netatists\\netcetera\\netceteras\\netch\\netched\\netcher\\netchers\\netches\\netching\\netchings\\neternal\\neternally\\neternals\\neterne\\neternise\\neternised\\neternises\\neternising\\neternities\\neternity\\neternize\\neternized\\neternizes\\neternizing\\netesian\\netesians\\neth\\nethane\\nethanes\\nethanol\\nethanols\\nethene\\nethenes\\nether\\nethereal\\netheric\\netherified\\netherifies\\netherify\\netherifying\\netherish\\netherize\\netherized\\netherizes\\netherizing\\nethers\\nethic\\nethical\\nethically\\nethicals\\nethician\\nethicians\\nethicist\\nethicists\\nethicize\\nethicized\\nethicizes\\nethicizing\\nethics\\nethinyl\\nethinyls\\nethion\\nethions\\nethmoid\\nethmoids\\nethnarch\\nethnarchs\\nethnic\\nethnical\\nethnicities\\nethnicity\\nethnics\\nethnologic\\nethnological\\nethnologies\\nethnology\\nethnos\\nethnoses\\nethologies\\nethology\\nethos\\nethoses\\nethoxy\\nethoxyl\\nethoxyls\\neths\\nethyl\\nethylate\\nethylated\\nethylates\\nethylating\\nethylene\\nethylenes\\nethylic\\nethyls\\nethyne\\nethynes\\nethynyl\\nethynyls\\netiolate\\netiolated\\netiolates\\netiolating\\netiologies\\netiology\\netna\\netnas\\netoile\\netoiles\\netude\\netudes\\netui\\netuis\\netwee\\netwees\\netyma\\netymological\\netymologist\\netymologists\\netymon\\netymons\\neucaine\\neucaines\\neucalypt\\neucalypti\\neucalypts\\neucalyptus\\neucalyptuses\\neucharis\\neucharises\\neucharistic\\neuchre\\neuchred\\neuchres\\neuchring\\neuclase\\neuclases\\neucrite\\neucrites\\neucritic\\neudaemon\\neudaemons\\neudemon\\neudemons\\neugenic\\neugenics\\neugenist\\neugenists\\neugenol\\neugenols\\neuglena\\neuglenas\\neulachan\\neulachans\\neulachon\\neulachons\\neulogia\\neulogiae\\neulogias\\neulogies\\neulogise\\neulogised\\neulogises\\neulogising\\neulogist\\neulogistic\\neulogists\\neulogium\\neulogiums\\neulogize\\neulogized\\neulogizes\\neulogizing\\neulogy\\neunuch\\neunuchs\\neuonymus\\neuonymuses\\neupatrid\\neupatridae\\neupatrids\\neupepsia\\neupepsias\\neupepsies\\neupepsy\\neupeptic\\neuphemism\\neuphemisms\\neuphemistic\\neuphenic\\neuphonic\\neuphonies\\neuphonious\\neuphony\\neuphoria\\neuphorias\\neuphoric\\neuphotic\\neuphrasies\\neuphrasy\\neuphroe\\neuphroes\\neuphuism\\neuphuisms\\neuphuist\\neuphuists\\neuploid\\neuploidies\\neuploids\\neuploidy\\neupnea\\neupneas\\neupneic\\neupnoea\\neupnoeas\\neupnoeic\\neureka\\neuripi\\neuripus\\neuro\\neuropium\\neuropiums\\neuros\\neurythmies\\neurythmy\\neustacies\\neustacy\\neustatic\\neustele\\neusteles\\neutaxies\\neutaxy\\neutectic\\neutectics\\neuthanasia\\neuthanasias\\neutrophies\\neutrophy\\neuxenite\\neuxenites\\nevacuant\\nevacuants\\nevacuate\\nevacuated\\nevacuates\\nevacuating\\nevacuation\\nevacuations\\nevacuee\\nevacuees\\nevadable\\nevade\\nevaded\\nevader\\nevaders\\nevades\\nevadible\\nevading\\nevaluable\\nevaluate\\nevaluated\\nevaluates\\nevaluating\\nevaluation\\nevaluations\\nevaluator\\nevaluators\\nevanesce\\nevanesced\\nevanesces\\nevanescing\\nevangel\\nevangelical\\nevangelism\\nevangelisms\\nevangelist\\nevangelistic\\nevangelists\\nevangels\\nevanish\\nevanished\\nevanishes\\nevanishing\\nevaporate\\nevaporated\\nevaporates\\nevaporating\\nevaporation\\nevaporations\\nevaporative\\nevaporator\\nevaporators\\nevasion\\nevasions\\nevasive\\nevasiveness\\nevasivenesses\\neve\\nevection\\nevections\\neven\\nevened\\nevener\\neveners\\nevenest\\nevenfall\\nevenfalls\\nevening\\nevenings\\nevenly\\nevenness\\nevennesses\\nevens\\nevensong\\nevensongs\\nevent\\neventful\\neventide\\neventides\\nevents\\neventual\\neventualities\\neventuality\\neventually\\never\\nevergreen\\nevergreens\\neverlasting\\nevermore\\neversion\\neversions\\nevert\\neverted\\neverting\\nevertor\\nevertors\\neverts\\nevery\\neverybody\\neveryday\\neveryman\\neverymen\\neveryone\\neverything\\neveryway\\neverywhere\\neves\\nevict\\nevicted\\nevictee\\nevictees\\nevicting\\neviction\\nevictions\\nevictor\\nevictors\\nevicts\\nevidence\\nevidenced\\nevidences\\nevidencing\\nevident\\nevidently\\nevil\\nevildoer\\nevildoers\\neviler\\nevilest\\neviller\\nevillest\\nevilly\\nevilness\\nevilnesses\\nevils\\nevince\\nevinced\\nevinces\\nevincing\\nevincive\\neviscerate\\neviscerated\\neviscerates\\neviscerating\\nevisceration\\neviscerations\\nevitable\\nevite\\nevited\\nevites\\neviting\\nevocable\\nevocation\\nevocations\\nevocative\\nevocator\\nevocators\\nevoke\\nevoked\\nevoker\\nevokers\\nevokes\\nevoking\\nevolute\\nevolutes\\nevolution\\nevolutionary\\nevolutions\\nevolve\\nevolved\\nevolver\\nevolvers\\nevolves\\nevolving\\nevonymus\\nevonymuses\\nevulsion\\nevulsions\\nevzone\\nevzones\\newe\\newer\\newers\\newes\\nex\\nexacerbate\\nexacerbated\\nexacerbates\\nexacerbating\\nexact\\nexacta\\nexactas\\nexacted\\nexacter\\nexacters\\nexactest\\nexacting\\nexaction\\nexactions\\nexactitude\\nexactitudes\\nexactly\\nexactness\\nexactnesses\\nexactor\\nexactors\\nexacts\\nexaggerate\\nexaggerated\\nexaggeratedly\\nexaggerates\\nexaggerating\\nexaggeration\\nexaggerations\\nexaggerator\\nexaggerators\\nexalt\\nexaltation\\nexaltations\\nexalted\\nexalter\\nexalters\\nexalting\\nexalts\\nexam\\nexamen\\nexamens\\nexamination\\nexaminations\\nexamine\\nexamined\\nexaminee\\nexaminees\\nexaminer\\nexaminers\\nexamines\\nexamining\\nexample\\nexampled\\nexamples\\nexampling\\nexams\\nexanthem\\nexanthems\\nexarch\\nexarchal\\nexarchies\\nexarchs\\nexarchy\\nexasperate\\nexasperated\\nexasperates\\nexasperating\\nexasperation\\nexasperations\\nexcavate\\nexcavated\\nexcavates\\nexcavating\\nexcavation\\nexcavations\\nexcavator\\nexcavators\\nexceed\\nexceeded\\nexceeder\\nexceeders\\nexceeding\\nexceedingly\\nexceeds\\nexcel\\nexcelled\\nexcellence\\nexcellences\\nexcellency\\nexcellent\\nexcellently\\nexcelling\\nexcels\\nexcept\\nexcepted\\nexcepting\\nexception\\nexceptional\\nexceptionalally\\nexceptions\\nexcepts\\nexcerpt\\nexcerpted\\nexcerpting\\nexcerpts\\nexcess\\nexcesses\\nexcessive\\nexcessively\\nexchange\\nexchangeable\\nexchanged\\nexchanges\\nexchanging\\nexcide\\nexcided\\nexcides\\nexciding\\nexciple\\nexciples\\nexcise\\nexcised\\nexcises\\nexcising\\nexcision\\nexcisions\\nexcitabilities\\nexcitability\\nexcitant\\nexcitants\\nexcitation\\nexcitations\\nexcite\\nexcited\\nexcitedly\\nexcitement\\nexcitements\\nexciter\\nexciters\\nexcites\\nexciting\\nexciton\\nexcitons\\nexcitor\\nexcitors\\nexclaim\\nexclaimed\\nexclaiming\\nexclaims\\nexclamation\\nexclamations\\nexclamatory\\nexclave\\nexclaves\\nexclude\\nexcluded\\nexcluder\\nexcluders\\nexcludes\\nexcluding\\nexclusion\\nexclusions\\nexclusive\\nexclusively\\nexclusiveness\\nexclusivenesses\\nexcommunicate\\nexcommunicated\\nexcommunicates\\nexcommunicating\\nexcommunication\\nexcommunications\\nexcrement\\nexcremental\\nexcrements\\nexcreta\\nexcretal\\nexcrete\\nexcreted\\nexcreter\\nexcreters\\nexcretes\\nexcreting\\nexcretion\\nexcretions\\nexcretory\\nexcruciating\\nexcruciatingly\\nexculpate\\nexculpated\\nexculpates\\nexculpating\\nexcursion\\nexcursions\\nexcuse\\nexcused\\nexcuser\\nexcusers\\nexcuses\\nexcusing\\nexeat\\nexec\\nexecrate\\nexecrated\\nexecrates\\nexecrating\\nexecs\\nexecutable\\nexecute\\nexecuted\\nexecuter\\nexecuters\\nexecutes\\nexecuting\\nexecution\\nexecutioner\\nexecutioners\\nexecutions\\nexecutive\\nexecutives\\nexecutor\\nexecutors\\nexecutrix\\nexecutrixes\\nexedra\\nexedrae\\nexegeses\\nexegesis\\nexegete\\nexegetes\\nexegetic\\nexempla\\nexemplar\\nexemplars\\nexemplary\\nexemplification\\nexemplifications\\nexemplified\\nexemplifies\\nexemplify\\nexemplifying\\nexemplum\\nexempt\\nexempted\\nexempting\\nexemption\\nexemptions\\nexempts\\nexequial\\nexequies\\nexequy\\nexercise\\nexercised\\nexerciser\\nexercisers\\nexercises\\nexercising\\nexergual\\nexergue\\nexergues\\nexert\\nexerted\\nexerting\\nexertion\\nexertions\\nexertive\\nexerts\\nexes\\nexhalant\\nexhalants\\nexhalation\\nexhalations\\nexhale\\nexhaled\\nexhalent\\nexhalents\\nexhales\\nexhaling\\nexhaust\\nexhausted\\nexhausting\\nexhaustion\\nexhaustions\\nexhaustive\\nexhausts\\nexhibit\\nexhibited\\nexhibiting\\nexhibition\\nexhibitions\\nexhibitor\\nexhibitors\\nexhibits\\nexhilarate\\nexhilarated\\nexhilarates\\nexhilarating\\nexhilaration\\nexhilarations\\nexhort\\nexhortation\\nexhortations\\nexhorted\\nexhorter\\nexhorters\\nexhorting\\nexhorts\\nexhumation\\nexhumations\\nexhume\\nexhumed\\nexhumer\\nexhumers\\nexhumes\\nexhuming\\nexigence\\nexigences\\nexigencies\\nexigency\\nexigent\\nexigible\\nexiguities\\nexiguity\\nexiguous\\nexile\\nexiled\\nexiles\\nexilian\\nexilic\\nexiling\\neximious\\nexine\\nexines\\nexist\\nexisted\\nexistence\\nexistences\\nexistent\\nexistents\\nexisting\\nexists\\nexit\\nexited\\nexiting\\nexits\\nexocarp\\nexocarps\\nexocrine\\nexocrines\\nexoderm\\nexoderms\\nexodoi\\nexodos\\nexodus\\nexoduses\\nexoergic\\nexogamic\\nexogamies\\nexogamy\\nexogen\\nexogens\\nexonerate\\nexonerated\\nexonerates\\nexonerating\\nexoneration\\nexonerations\\nexorable\\nexorbitant\\nexorcise\\nexorcised\\nexorcises\\nexorcising\\nexorcism\\nexorcisms\\nexorcist\\nexorcists\\nexorcize\\nexorcized\\nexorcizes\\nexorcizing\\nexordia\\nexordial\\nexordium\\nexordiums\\nexosmic\\nexosmose\\nexosmoses\\nexospore\\nexospores\\nexoteric\\nexotic\\nexotica\\nexotically\\nexoticism\\nexoticisms\\nexotics\\nexotism\\nexotisms\\nexotoxic\\nexotoxin\\nexotoxins\\nexpand\\nexpanded\\nexpander\\nexpanders\\nexpanding\\nexpands\\nexpanse\\nexpanses\\nexpansion\\nexpansions\\nexpansive\\nexpansively\\nexpansiveness\\nexpansivenesses\\nexpatriate\\nexpatriated\\nexpatriates\\nexpatriating\\nexpect\\nexpectancies\\nexpectancy\\nexpectant\\nexpectantly\\nexpectation\\nexpectations\\nexpected\\nexpecting\\nexpects\\nexpedient\\nexpedients\\nexpedious\\nexpedite\\nexpedited\\nexpediter\\nexpediters\\nexpedites\\nexpediting\\nexpedition\\nexpeditions\\nexpeditious\\nexpel\\nexpelled\\nexpellee\\nexpellees\\nexpeller\\nexpellers\\nexpelling\\nexpels\\nexpend\\nexpended\\nexpender\\nexpenders\\nexpendible\\nexpending\\nexpenditure\\nexpenditures\\nexpends\\nexpense\\nexpensed\\nexpenses\\nexpensing\\nexpensive\\nexpensively\\nexperience\\nexperiences\\nexperiment\\nexperimental\\nexperimentation\\nexperimentations\\nexperimented\\nexperimenter\\nexperimenters\\nexperimenting\\nexperiments\\nexpert\\nexperted\\nexperting\\nexpertise\\nexpertises\\nexpertly\\nexpertness\\nexpertnesses\\nexperts\\nexpiable\\nexpiate\\nexpiated\\nexpiates\\nexpiating\\nexpiation\\nexpiations\\nexpiator\\nexpiators\\nexpiration\\nexpirations\\nexpire\\nexpired\\nexpirer\\nexpirers\\nexpires\\nexpiries\\nexpiring\\nexpiry\\nexplain\\nexplainable\\nexplained\\nexplaining\\nexplains\\nexplanation\\nexplanations\\nexplanatory\\nexplant\\nexplanted\\nexplanting\\nexplants\\nexpletive\\nexpletives\\nexplicable\\nexplicably\\nexplicit\\nexplicitly\\nexplicitness\\nexplicitnesses\\nexplicits\\nexplode\\nexploded\\nexploder\\nexploders\\nexplodes\\nexploding\\nexploit\\nexploitation\\nexploitations\\nexploited\\nexploiting\\nexploits\\nexploration\\nexplorations\\nexploratory\\nexplore\\nexplored\\nexplorer\\nexplorers\\nexplores\\nexploring\\nexplosion\\nexplosions\\nexplosive\\nexplosively\\nexplosives\\nexpo\\nexponent\\nexponential\\nexponentially\\nexponents\\nexport\\nexportation\\nexportations\\nexported\\nexporter\\nexporters\\nexporting\\nexports\\nexpos\\nexposal\\nexposals\\nexpose\\nexposed\\nexposer\\nexposers\\nexposes\\nexposing\\nexposit\\nexposited\\nexpositing\\nexposition\\nexpositions\\nexposits\\nexposure\\nexposures\\nexpound\\nexpounded\\nexpounding\\nexpounds\\nexpress\\nexpressed\\nexpresses\\nexpressible\\nexpressibly\\nexpressing\\nexpression\\nexpressionless\\nexpressions\\nexpressive\\nexpressiveness\\nexpressivenesses\\nexpressly\\nexpressway\\nexpressways\\nexpulse\\nexpulsed\\nexpulses\\nexpulsing\\nexpulsion\\nexpulsions\\nexpunge\\nexpunged\\nexpunger\\nexpungers\\nexpunges\\nexpunging\\nexpurgate\\nexpurgated\\nexpurgates\\nexpurgating\\nexpurgation\\nexpurgations\\nexquisite\\nexscind\\nexscinded\\nexscinding\\nexscinds\\nexsecant\\nexsecants\\nexsect\\nexsected\\nexsecting\\nexsects\\nexsert\\nexserted\\nexserting\\nexserts\\nextant\\nextemporaneous\\nextemporaneously\\nextend\\nextendable\\nextended\\nextender\\nextenders\\nextendible\\nextending\\nextends\\nextension\\nextensions\\nextensive\\nextensively\\nextensor\\nextensors\\nextent\\nextents\\nextenuate\\nextenuated\\nextenuates\\nextenuating\\nextenuation\\nextenuations\\nexterior\\nexteriors\\nexterminate\\nexterminated\\nexterminates\\nexterminating\\nextermination\\nexterminations\\nexterminator\\nexterminators\\nextern\\nexternal\\nexternally\\nexternals\\nexterne\\nexternes\\nexterns\\nextinct\\nextincted\\nextincting\\nextinction\\nextinctions\\nextincts\\nextinguish\\nextinguishable\\nextinguished\\nextinguisher\\nextinguishers\\nextinguishes\\nextinguishing\\nextirpate\\nextirpated\\nextirpates\\nextirpating\\nextol\\nextoll\\nextolled\\nextoller\\nextollers\\nextolling\\nextolls\\nextols\\nextort\\nextorted\\nextorter\\nextorters\\nextorting\\nextortion\\nextortioner\\nextortioners\\nextortionist\\nextortionists\\nextortions\\nextorts\\nextra\\nextracampus\\nextraclassroom\\nextracommunity\\nextraconstitutional\\nextracontinental\\nextract\\nextractable\\nextracted\\nextracting\\nextraction\\nextractions\\nextractor\\nextractors\\nextracts\\nextracurricular\\nextradepartmental\\nextradiocesan\\nextradite\\nextradited\\nextradites\\nextraditing\\nextradition\\nextraditions\\nextrados\\nextradoses\\nextrafamilial\\nextragalactic\\nextragovernmental\\nextrahuman\\nextralegal\\nextramarital\\nextranational\\nextraneous\\nextraneously\\nextraordinarily\\nextraordinary\\nextraplanetary\\nextrapyramidal\\nextras\\nextrascholastic\\nextrasensory\\nextraterrestrial\\nextravagance\\nextravagances\\nextravagant\\nextravagantly\\nextravaganza\\nextravaganzas\\nextravasate\\nextravasated\\nextravasates\\nextravasating\\nextravasation\\nextravasations\\nextravehicular\\nextraversion\\nextraversions\\nextravert\\nextraverted\\nextraverts\\nextrema\\nextreme\\nextremely\\nextremer\\nextremes\\nextremest\\nextremities\\nextremity\\nextremum\\nextricable\\nextricate\\nextricated\\nextricates\\nextricating\\nextrication\\nextrications\\nextrorse\\nextrovert\\nextroverts\\nextrude\\nextruded\\nextruder\\nextruders\\nextrudes\\nextruding\\nexuberance\\nexuberances\\nexuberant\\nexuberantly\\nexudate\\nexudates\\nexudation\\nexudations\\nexude\\nexuded\\nexudes\\nexuding\\nexult\\nexultant\\nexulted\\nexulting\\nexults\\nexurb\\nexurban\\nexurbia\\nexurbias\\nexurbs\\nexuvia\\nexuviae\\nexuvial\\nexuviate\\nexuviated\\nexuviates\\nexuviating\\nexuvium\\neyas\\neyases\\neye\\neyeable\\neyeball\\neyeballed\\neyeballing\\neyeballs\\neyebeam\\neyebeams\\neyebolt\\neyebolts\\neyebrow\\neyebrows\\neyecup\\neyecups\\neyed\\neyedness\\neyednesses\\neyedropper\\neyedroppers\\neyeful\\neyefuls\\neyeglass\\neyeglasses\\neyehole\\neyeholes\\neyehook\\neyehooks\\neyeing\\neyelash\\neyelashes\\neyeless\\neyelet\\neyelets\\neyeletted\\neyeletting\\neyelid\\neyelids\\neyelike\\neyeliner\\neyeliners\\neyen\\neyepiece\\neyepieces\\neyepoint\\neyepoints\\neyer\\neyers\\neyes\\neyeshade\\neyeshades\\neyeshot\\neyeshots\\neyesight\\neyesights\\neyesome\\neyesore\\neyesores\\neyespot\\neyespots\\neyestalk\\neyestalks\\neyestone\\neyestones\\neyestrain\\neyestrains\\neyeteeth\\neyetooth\\neyewash\\neyewashes\\neyewater\\neyewaters\\neyewink\\neyewinks\\neyewitness\\neying\\neyne\\neyra\\neyras\\neyre\\neyres\\neyrie\\neyries\\neyrir\\neyry\\nfa\\nfable\\nfabled\\nfabler\\nfablers\\nfables\\nfabliau\\nfabliaux\\nfabling\\nfabric\\nfabricate\\nfabricated\\nfabricates\\nfabricating\\nfabrication\\nfabrications\\nfabrics\\nfabular\\nfabulist\\nfabulists\\nfabulous\\nfabulously\\nfacade\\nfacades\\nface\\nfaceable\\nfaced\\nfacedown\\nfaceless\\nfacelessness\\nfacelessnesses\\nfacer\\nfacers\\nfaces\\nfacesheet\\nfacesheets\\nfacet\\nfacete\\nfaceted\\nfacetely\\nfacetiae\\nfaceting\\nfacetious\\nfacetiously\\nfacets\\nfacetted\\nfacetting\\nfaceup\\nfacia\\nfacial\\nfacially\\nfacials\\nfacias\\nfaciend\\nfaciends\\nfacies\\nfacile\\nfacilely\\nfacilitate\\nfacilitated\\nfacilitates\\nfacilitating\\nfacilitator\\nfacilitators\\nfacilities\\nfacility\\nfacing\\nfacings\\nfacsimile\\nfacsimiles\\nfact\\nfactful\\nfaction\\nfactional\\nfactionalism\\nfactionalisms\\nfactions\\nfactious\\nfactitious\\nfactor\\nfactored\\nfactories\\nfactoring\\nfactors\\nfactory\\nfactotum\\nfactotums\\nfacts\\nfactual\\nfactually\\nfacture\\nfactures\\nfacula\\nfaculae\\nfacular\\nfaculties\\nfaculty\\nfad\\nfadable\\nfaddier\\nfaddiest\\nfaddish\\nfaddism\\nfaddisms\\nfaddist\\nfaddists\\nfaddy\\nfade\\nfadeaway\\nfadeaways\\nfaded\\nfadedly\\nfadeless\\nfader\\nfaders\\nfades\\nfadge\\nfadged\\nfadges\\nfadging\\nfading\\nfadings\\nfado\\nfados\\nfads\\nfaecal\\nfaeces\\nfaena\\nfaenas\\nfaerie\\nfaeries\\nfaery\\nfag\\nfagged\\nfagging\\nfagin\\nfagins\\nfagot\\nfagoted\\nfagoter\\nfagoters\\nfagoting\\nfagotings\\nfagots\\nfags\\nfahlband\\nfahlbands\\nfahrenheit\\nfaience\\nfaiences\\nfail\\nfailed\\nfailing\\nfailings\\nfaille\\nfailles\\nfails\\nfailure\\nfailures\\nfain\\nfaineant\\nfaineants\\nfainer\\nfainest\\nfaint\\nfainted\\nfainter\\nfainters\\nfaintest\\nfainthearted\\nfainting\\nfaintish\\nfaintly\\nfaintness\\nfaintnesses\\nfaints\\nfair\\nfaired\\nfairer\\nfairest\\nfairground\\nfairgrounds\\nfairies\\nfairing\\nfairings\\nfairish\\nfairlead\\nfairleads\\nfairly\\nfairness\\nfairnesses\\nfairs\\nfairway\\nfairways\\nfairy\\nfairyism\\nfairyisms\\nfairyland\\nfairylands\\nfaith\\nfaithed\\nfaithful\\nfaithfully\\nfaithfulness\\nfaithfulnesses\\nfaithfuls\\nfaithing\\nfaithless\\nfaithlessly\\nfaithlessness\\nfaithlessnesses\\nfaiths\\nfaitour\\nfaitours\\nfake\\nfaked\\nfakeer\\nfakeers\\nfaker\\nfakeries\\nfakers\\nfakery\\nfakes\\nfaking\\nfakir\\nfakirs\\nfalbala\\nfalbalas\\nfalcate\\nfalcated\\nfalchion\\nfalchions\\nfalcon\\nfalconer\\nfalconers\\nfalconet\\nfalconets\\nfalconries\\nfalconry\\nfalcons\\nfalderal\\nfalderals\\nfalderol\\nfalderols\\nfall\\nfallacies\\nfallacious\\nfallacy\\nfallal\\nfallals\\nfallback\\nfallbacks\\nfallen\\nfaller\\nfallers\\nfallfish\\nfallfishes\\nfallible\\nfallibly\\nfalling\\nfalloff\\nfalloffs\\nfallout\\nfallouts\\nfallow\\nfallowed\\nfallowing\\nfallows\\nfalls\\nfalse\\nfalsehood\\nfalsehoods\\nfalsely\\nfalseness\\nfalsenesses\\nfalser\\nfalsest\\nfalsetto\\nfalsettos\\nfalsie\\nfalsies\\nfalsification\\nfalsifications\\nfalsified\\nfalsifies\\nfalsify\\nfalsifying\\nfalsities\\nfalsity\\nfaltboat\\nfaltboats\\nfalter\\nfaltered\\nfalterer\\nfalterers\\nfaltering\\nfalters\\nfame\\nfamed\\nfameless\\nfames\\nfamiglietti\\nfamilial\\nfamiliar\\nfamiliarities\\nfamiliarity\\nfamiliarize\\nfamiliarized\\nfamiliarizes\\nfamiliarizing\\nfamiliarly\\nfamiliars\\nfamilies\\nfamily\\nfamine\\nfamines\\nfaming\\nfamish\\nfamished\\nfamishes\\nfamishing\\nfamous\\nfamously\\nfamuli\\nfamulus\\nfan\\nfanatic\\nfanatical\\nfanaticism\\nfanaticisms\\nfanatics\\nfancied\\nfancier\\nfanciers\\nfancies\\nfanciest\\nfanciful\\nfancifully\\nfancily\\nfancy\\nfancying\\nfandango\\nfandangos\\nfandom\\nfandoms\\nfane\\nfanega\\nfanegada\\nfanegadas\\nfanegas\\nfanes\\nfanfare\\nfanfares\\nfanfaron\\nfanfarons\\nfanfold\\nfanfolds\\nfang\\nfanga\\nfangas\\nfanged\\nfangless\\nfanglike\\nfangs\\nfanion\\nfanions\\nfanjet\\nfanjets\\nfanlight\\nfanlights\\nfanlike\\nfanned\\nfanner\\nfannies\\nfanning\\nfanny\\nfano\\nfanon\\nfanons\\nfanos\\nfans\\nfantail\\nfantails\\nfantasia\\nfantasias\\nfantasie\\nfantasied\\nfantasies\\nfantasize\\nfantasized\\nfantasizes\\nfantasizing\\nfantasm\\nfantasms\\nfantast\\nfantastic\\nfantastical\\nfantastically\\nfantasts\\nfantasy\\nfantasying\\nfantod\\nfantods\\nfantom\\nfantoms\\nfanum\\nfanums\\nfanwise\\nfanwort\\nfanworts\\nfaqir\\nfaqirs\\nfaquir\\nfaquirs\\nfar\\nfarad\\nfaradaic\\nfaraday\\nfaradays\\nfaradic\\nfaradise\\nfaradised\\nfaradises\\nfaradising\\nfaradism\\nfaradisms\\nfaradize\\nfaradized\\nfaradizes\\nfaradizing\\nfarads\\nfaraway\\nfarce\\nfarced\\nfarcer\\nfarcers\\nfarces\\nfarceur\\nfarceurs\\nfarci\\nfarcical\\nfarcie\\nfarcies\\nfarcing\\nfarcy\\nfard\\nfarded\\nfardel\\nfardels\\nfarding\\nfards\\nfare\\nfared\\nfarer\\nfarers\\nfares\\nfarewell\\nfarewelled\\nfarewelling\\nfarewells\\nfarfal\\nfarfals\\nfarfel\\nfarfels\\nfarfetched\\nfarina\\nfarinas\\nfaring\\nfarinha\\nfarinhas\\nfarinose\\nfarl\\nfarle\\nfarles\\nfarls\\nfarm\\nfarmable\\nfarmed\\nfarmer\\nfarmers\\nfarmhand\\nfarmhands\\nfarmhouse\\nfarmhouses\\nfarming\\nfarmings\\nfarmland\\nfarmlands\\nfarms\\nfarmstead\\nfarmsteads\\nfarmyard\\nfarmyards\\nfarnesol\\nfarnesols\\nfarness\\nfarnesses\\nfaro\\nfaros\\nfarouche\\nfarrago\\nfarragoes\\nfarrier\\nfarrieries\\nfarriers\\nfarriery\\nfarrow\\nfarrowed\\nfarrowing\\nfarrows\\nfarsighted\\nfarsightedness\\nfarsightednesses\\nfart\\nfarted\\nfarther\\nfarthermost\\nfarthest\\nfarthing\\nfarthings\\nfarting\\nfarts\\nfas\\nfasces\\nfascia\\nfasciae\\nfascial\\nfascias\\nfasciate\\nfascicle\\nfascicled\\nfascicles\\nfascinate\\nfascinated\\nfascinates\\nfascinating\\nfascination\\nfascinations\\nfascine\\nfascines\\nfascism\\nfascisms\\nfascist\\nfascistic\\nfascists\\nfash\\nfashed\\nfashes\\nfashing\\nfashion\\nfashionable\\nfashionably\\nfashioned\\nfashioning\\nfashions\\nfashious\\nfast\\nfastback\\nfastbacks\\nfastball\\nfastballs\\nfasted\\nfasten\\nfastened\\nfastener\\nfasteners\\nfastening\\nfastenings\\nfastens\\nfaster\\nfastest\\nfastiduous\\nfastiduously\\nfastiduousness\\nfastiduousnesses\\nfasting\\nfastings\\nfastness\\nfastnesses\\nfasts\\nfastuous\\nfat\\nfatal\\nfatalism\\nfatalisms\\nfatalist\\nfatalistic\\nfatalists\\nfatalities\\nfatality\\nfatally\\nfatback\\nfatbacks\\nfatbird\\nfatbirds\\nfate\\nfated\\nfateful\\nfatefully\\nfates\\nfathead\\nfatheads\\nfather\\nfathered\\nfatherhood\\nfatherhoods\\nfathering\\nfatherland\\nfatherlands\\nfatherless\\nfatherly\\nfathers\\nfathom\\nfathomable\\nfathomed\\nfathoming\\nfathomless\\nfathoms\\nfatidic\\nfatigue\\nfatigued\\nfatigues\\nfatiguing\\nfating\\nfatless\\nfatlike\\nfatling\\nfatlings\\nfatly\\nfatness\\nfatnesses\\nfats\\nfatso\\nfatsoes\\nfatsos\\nfatstock\\nfatstocks\\nfatted\\nfatten\\nfattened\\nfattener\\nfatteners\\nfattening\\nfattens\\nfatter\\nfattest\\nfattier\\nfatties\\nfattiest\\nfattily\\nfatting\\nfattish\\nfatty\\nfatuities\\nfatuity\\nfatuous\\nfatuously\\nfatuousness\\nfatuousnesses\\nfaubourg\\nfaubourgs\\nfaucal\\nfaucals\\nfauces\\nfaucet\\nfaucets\\nfaucial\\nfaugh\\nfauld\\nfaulds\\nfault\\nfaulted\\nfaultfinder\\nfaultfinders\\nfaultfinding\\nfaultfindings\\nfaultier\\nfaultiest\\nfaultily\\nfaulting\\nfaultless\\nfaultlessly\\nfaults\\nfaulty\\nfaun\\nfauna\\nfaunae\\nfaunal\\nfaunally\\nfaunas\\nfaunlike\\nfauns\\nfauteuil\\nfauteuils\\nfauve\\nfauves\\nfauvism\\nfauvisms\\nfauvist\\nfauvists\\nfavela\\nfavelas\\nfavonian\\nfavor\\nfavorable\\nfavorably\\nfavored\\nfavorer\\nfavorers\\nfavoring\\nfavorite\\nfavorites\\nfavoritism\\nfavoritisms\\nfavors\\nfavour\\nfavoured\\nfavourer\\nfavourers\\nfavouring\\nfavours\\nfavus\\nfavuses\\nfawn\\nfawned\\nfawner\\nfawners\\nfawnier\\nfawniest\\nfawning\\nfawnlike\\nfawns\\nfawny\\nfax\\nfaxed\\nfaxes\\nfaxing\\nfay\\nfayalite\\nfayalites\\nfayed\\nfaying\\nfays\\nfaze\\nfazed\\nfazenda\\nfazendas\\nfazes\\nfazing\\nfeal\\nfealties\\nfealty\\nfear\\nfeared\\nfearer\\nfearers\\nfearful\\nfearfuller\\nfearfullest\\nfearfully\\nfearing\\nfearless\\nfearlessly\\nfearlessness\\nfearlessnesses\\nfears\\nfearsome\\nfeasance\\nfeasances\\nfease\\nfeased\\nfeases\\nfeasibilities\\nfeasibility\\nfeasible\\nfeasibly\\nfeasing\\nfeast\\nfeasted\\nfeaster\\nfeasters\\nfeastful\\nfeasting\\nfeasts\\nfeat\\nfeater\\nfeatest\\nfeather\\nfeathered\\nfeatherier\\nfeatheriest\\nfeathering\\nfeatherless\\nfeathers\\nfeathery\\nfeatlier\\nfeatliest\\nfeatly\\nfeats\\nfeature\\nfeatured\\nfeatureless\\nfeatures\\nfeaturing\\nfeaze\\nfeazed\\nfeazes\\nfeazing\\nfebrific\\nfebrile\\nfecal\\nfeces\\nfecial\\nfecials\\nfeck\\nfeckless\\nfeckly\\nfecks\\nfecula\\nfeculae\\nfeculent\\nfecund\\nfecundities\\nfecundity\\nfed\\nfedayee\\nfedayeen\\nfederacies\\nfederacy\\nfederal\\nfederalism\\nfederalisms\\nfederalist\\nfederalists\\nfederally\\nfederals\\nfederate\\nfederated\\nfederates\\nfederating\\nfederation\\nfederations\\nfedora\\nfedoras\\nfeds\\nfee\\nfeeble\\nfeebleminded\\nfeeblemindedness\\nfeeblemindednesses\\nfeebleness\\nfeeblenesses\\nfeebler\\nfeeblest\\nfeeblish\\nfeebly\\nfeed\\nfeedable\\nfeedback\\nfeedbacks\\nfeedbag\\nfeedbags\\nfeedbox\\nfeedboxes\\nfeeder\\nfeeders\\nfeeding\\nfeedlot\\nfeedlots\\nfeeds\\nfeeing\\nfeel\\nfeeler\\nfeelers\\nfeeless\\nfeeling\\nfeelings\\nfeels\\nfees\\nfeet\\nfeetless\\nfeeze\\nfeezed\\nfeezes\\nfeezing\\nfeign\\nfeigned\\nfeigner\\nfeigners\\nfeigning\\nfeigns\\nfeint\\nfeinted\\nfeinting\\nfeints\\nfeirie\\nfeist\\nfeistier\\nfeistiest\\nfeists\\nfeisty\\nfeldspar\\nfeldspars\\nfelicitate\\nfelicitated\\nfelicitates\\nfelicitating\\nfelicitation\\nfelicitations\\nfelicities\\nfelicitous\\nfelicitously\\nfelicity\\nfelid\\nfelids\\nfeline\\nfelinely\\nfelines\\nfelinities\\nfelinity\\nfell\\nfella\\nfellable\\nfellah\\nfellaheen\\nfellahin\\nfellahs\\nfellas\\nfellatio\\nfellatios\\nfelled\\nfeller\\nfellers\\nfellest\\nfellies\\nfelling\\nfellness\\nfellnesses\\nfelloe\\nfelloes\\nfellow\\nfellowed\\nfellowing\\nfellowly\\nfellowman\\nfellowmen\\nfellows\\nfellowship\\nfellowships\\nfells\\nfelly\\nfelon\\nfelonies\\nfelonious\\nfelonries\\nfelonry\\nfelons\\nfelony\\nfelsite\\nfelsites\\nfelsitic\\nfelspar\\nfelspars\\nfelstone\\nfelstones\\nfelt\\nfelted\\nfelting\\nfeltings\\nfelts\\nfelucca\\nfeluccas\\nfelwort\\nfelworts\\nfemale\\nfemales\\nfeme\\nfemes\\nfeminacies\\nfeminacy\\nfeminie\\nfeminine\\nfeminines\\nfemininities\\nfemininity\\nfeminise\\nfeminised\\nfeminises\\nfeminising\\nfeminism\\nfeminisms\\nfeminist\\nfeminists\\nfeminities\\nfeminity\\nfeminization\\nfeminizations\\nfeminize\\nfeminized\\nfeminizes\\nfeminizing\\nfemme\\nfemmes\\nfemora\\nfemoral\\nfemur\\nfemurs\\nfen\\nfenagle\\nfenagled\\nfenagles\\nfenagling\\nfence\\nfenced\\nfencer\\nfencers\\nfences\\nfencible\\nfencibles\\nfencing\\nfencings\\nfend\\nfended\\nfender\\nfendered\\nfenders\\nfending\\nfends\\nfenestra\\nfenestrae\\nfennec\\nfennecs\\nfennel\\nfennels\\nfenny\\nfens\\nfeod\\nfeodaries\\nfeodary\\nfeods\\nfeoff\\nfeoffed\\nfeoffee\\nfeoffees\\nfeoffer\\nfeoffers\\nfeoffing\\nfeoffor\\nfeoffors\\nfeoffs\\nfer\\nferacities\\nferacity\\nferal\\nferbam\\nferbams\\nfere\\nferes\\nferetories\\nferetory\\nferia\\nferiae\\nferial\\nferias\\nferine\\nferities\\nferity\\nferlie\\nferlies\\nferly\\nfermata\\nfermatas\\nfermate\\nferment\\nfermentation\\nfermentations\\nfermented\\nfermenting\\nferments\\nfermi\\nfermion\\nfermions\\nfermis\\nfermium\\nfermiums\\nfern\\nferneries\\nfernery\\nfernier\\nferniest\\nfernless\\nfernlike\\nferns\\nferny\\nferocious\\nferociously\\nferociousness\\nferociousnesses\\nferocities\\nferocity\\nferrate\\nferrates\\nferrel\\nferreled\\nferreling\\nferrelled\\nferrelling\\nferrels\\nferreous\\nferret\\nferreted\\nferreter\\nferreters\\nferreting\\nferrets\\nferrety\\nferriage\\nferriages\\nferric\\nferried\\nferries\\nferrite\\nferrites\\nferritic\\nferritin\\nferritins\\nferrous\\nferrule\\nferruled\\nferrules\\nferruling\\nferrum\\nferrums\\nferry\\nferryboat\\nferryboats\\nferrying\\nferryman\\nferrymen\\nfertile\\nfertilities\\nfertility\\nfertilization\\nfertilizations\\nfertilize\\nfertilized\\nfertilizer\\nfertilizers\\nfertilizes\\nfertilizing\\nferula\\nferulae\\nferulas\\nferule\\nferuled\\nferules\\nferuling\\nfervencies\\nfervency\\nfervent\\nfervently\\nfervid\\nfervidly\\nfervor\\nfervors\\nfervour\\nfervours\\nfescue\\nfescues\\nfess\\nfesse\\nfessed\\nfesses\\nfessing\\nfesswise\\nfestal\\nfestally\\nfester\\nfestered\\nfestering\\nfesters\\nfestival\\nfestivals\\nfestive\\nfestively\\nfestivities\\nfestivity\\nfestoon\\nfestooned\\nfestooning\\nfestoons\\nfet\\nfeta\\nfetal\\nfetas\\nfetation\\nfetations\\nfetch\\nfetched\\nfetcher\\nfetchers\\nfetches\\nfetching\\nfetchingly\\nfete\\nfeted\\nfeterita\\nfeteritas\\nfetes\\nfetial\\nfetiales\\nfetialis\\nfetials\\nfetich\\nfetiches\\nfeticide\\nfeticides\\nfetid\\nfetidly\\nfeting\\nfetish\\nfetishes\\nfetlock\\nfetlocks\\nfetologies\\nfetology\\nfetor\\nfetors\\nfets\\nfetted\\nfetter\\nfettered\\nfetterer\\nfetterers\\nfettering\\nfetters\\nfetting\\nfettle\\nfettled\\nfettles\\nfettling\\nfettlings\\nfetus\\nfetuses\\nfeu\\nfeuar\\nfeuars\\nfeud\\nfeudal\\nfeudalism\\nfeudalistic\\nfeudally\\nfeudaries\\nfeudary\\nfeuded\\nfeuding\\nfeudist\\nfeudists\\nfeuds\\nfeued\\nfeuing\\nfeus\\nfever\\nfevered\\nfeverfew\\nfeverfews\\nfevering\\nfeverish\\nfeverous\\nfevers\\nfew\\nfewer\\nfewest\\nfewness\\nfewnesses\\nfewtrils\\nfey\\nfeyer\\nfeyest\\nfeyness\\nfeynesses\\nfez\\nfezes\\nfezzed\\nfezzes\\nfiacre\\nfiacres\\nfiance\\nfiancee\\nfiancees\\nfiances\\nfiar\\nfiars\\nfiaschi\\nfiasco\\nfiascoes\\nfiascos\\nfiat\\nfiats\\nfib\\nfibbed\\nfibber\\nfibbers\\nfibbing\\nfiber\\nfiberboard\\nfiberboards\\nfibered\\nfiberglass\\nfiberglasses\\nfiberize\\nfiberized\\nfiberizes\\nfiberizing\\nfibers\\nfibre\\nfibres\\nfibril\\nfibrilla\\nfibrillae\\nfibrillate\\nfibrillated\\nfibrillates\\nfibrillating\\nfibrillation\\nfibrillations\\nfibrils\\nfibrin\\nfibrins\\nfibrocystic\\nfibroid\\nfibroids\\nfibroin\\nfibroins\\nfibroma\\nfibromas\\nfibromata\\nfibroses\\nfibrosis\\nfibrotic\\nfibrous\\nfibs\\nfibula\\nfibulae\\nfibular\\nfibulas\\nfice\\nfices\\nfiche\\nfiches\\nfichu\\nfichus\\nficin\\nficins\\nfickle\\nfickleness\\nficklenesses\\nfickler\\nficklest\\nfico\\nficoes\\nfictile\\nfiction\\nfictional\\nfictions\\nfictitious\\nfictive\\nfid\\nfiddle\\nfiddled\\nfiddler\\nfiddlers\\nfiddles\\nfiddlesticks\\nfiddling\\nfideism\\nfideisms\\nfideist\\nfideists\\nfidelities\\nfidelity\\nfidge\\nfidged\\nfidges\\nfidget\\nfidgeted\\nfidgeter\\nfidgeters\\nfidgeting\\nfidgets\\nfidgety\\nfidging\\nfido\\nfidos\\nfids\\nfiducial\\nfiduciaries\\nfiduciary\\nfie\\nfief\\nfiefdom\\nfiefdoms\\nfiefs\\nfield\\nfielded\\nfielder\\nfielders\\nfielding\\nfields\\nfiend\\nfiendish\\nfiendishly\\nfiends\\nfierce\\nfiercely\\nfierceness\\nfiercenesses\\nfiercer\\nfiercest\\nfierier\\nfieriest\\nfierily\\nfieriness\\nfierinesses\\nfiery\\nfiesta\\nfiestas\\nfife\\nfifed\\nfifer\\nfifers\\nfifes\\nfifing\\nfifteen\\nfifteens\\nfifteenth\\nfifteenths\\nfifth\\nfifthly\\nfifths\\nfifties\\nfiftieth\\nfiftieths\\nfifty\\nfig\\nfigeater\\nfigeaters\\nfigged\\nfigging\\nfight\\nfighter\\nfighters\\nfighting\\nfightings\\nfights\\nfigment\\nfigments\\nfigs\\nfiguline\\nfigulines\\nfigural\\nfigurant\\nfigurants\\nfigurate\\nfigurative\\nfiguratively\\nfigure\\nfigured\\nfigurer\\nfigurers\\nfigures\\nfigurine\\nfigurines\\nfiguring\\nfigwort\\nfigworts\\nfil\\nfila\\nfilagree\\nfilagreed\\nfilagreeing\\nfilagrees\\nfilament\\nfilamentous\\nfilaments\\nfilar\\nfilaree\\nfilarees\\nfilaria\\nfilariae\\nfilarial\\nfilarian\\nfilariid\\nfilariids\\nfilature\\nfilatures\\nfilbert\\nfilberts\\nfilch\\nfilched\\nfilcher\\nfilchers\\nfilches\\nfilching\\nfile\\nfiled\\nfilefish\\nfilefishes\\nfilemot\\nfiler\\nfilers\\nfiles\\nfilet\\nfileted\\nfileting\\nfilets\\nfilial\\nfilially\\nfiliate\\nfiliated\\nfiliates\\nfiliating\\nfilibeg\\nfilibegs\\nfilibuster\\nfilibustered\\nfilibusterer\\nfilibusterers\\nfilibustering\\nfilibusters\\nfilicide\\nfilicides\\nfiliform\\nfiligree\\nfiligreed\\nfiligreeing\\nfiligrees\\nfiling\\nfilings\\nfilister\\nfilisters\\nfill\\nfille\\nfilled\\nfiller\\nfillers\\nfilles\\nfillet\\nfilleted\\nfilleting\\nfillets\\nfillies\\nfilling\\nfillings\\nfillip\\nfilliped\\nfilliping\\nfillips\\nfills\\nfilly\\nfilm\\nfilmcard\\nfilmcards\\nfilmdom\\nfilmdoms\\nfilmed\\nfilmgoer\\nfilmgoers\\nfilmic\\nfilmier\\nfilmiest\\nfilmily\\nfilming\\nfilmland\\nfilmlands\\nfilms\\nfilmset\\nfilmsets\\nfilmsetting\\nfilmstrip\\nfilmstrips\\nfilmy\\nfilose\\nfils\\nfilter\\nfilterable\\nfiltered\\nfilterer\\nfilterers\\nfiltering\\nfilters\\nfilth\\nfilthier\\nfilthiest\\nfilthily\\nfilthiness\\nfilthinesses\\nfilths\\nfilthy\\nfiltrate\\nfiltrated\\nfiltrates\\nfiltrating\\nfiltration\\nfiltrations\\nfilum\\nfimble\\nfimbles\\nfimbria\\nfimbriae\\nfimbrial\\nfin\\nfinable\\nfinagle\\nfinagled\\nfinagler\\nfinaglers\\nfinagles\\nfinagling\\nfinal\\nfinale\\nfinales\\nfinalis\\nfinalism\\nfinalisms\\nfinalist\\nfinalists\\nfinalities\\nfinality\\nfinalize\\nfinalized\\nfinalizes\\nfinalizing\\nfinally\\nfinals\\nfinance\\nfinanced\\nfinances\\nfinancial\\nfinancially\\nfinancier\\nfinanciers\\nfinancing\\nfinback\\nfinbacks\\nfinch\\nfinches\\nfind\\nfinder\\nfinders\\nfinding\\nfindings\\nfinds\\nfine\\nfineable\\nfined\\nfinely\\nfineness\\nfinenesses\\nfiner\\nfineries\\nfinery\\nfines\\nfinespun\\nfinesse\\nfinessed\\nfinesses\\nfinessing\\nfinest\\nfinfish\\nfinfishes\\nfinfoot\\nfinfoots\\nfinger\\nfingered\\nfingerer\\nfingerers\\nfingering\\nfingerling\\nfingerlings\\nfingernail\\nfingerprint\\nfingerprints\\nfingers\\nfingertip\\nfingertips\\nfinial\\nfinialed\\nfinials\\nfinical\\nfinickier\\nfinickiest\\nfinickin\\nfinicky\\nfinikin\\nfiniking\\nfining\\nfinings\\nfinis\\nfinises\\nfinish\\nfinished\\nfinisher\\nfinishers\\nfinishes\\nfinishing\\nfinite\\nfinitely\\nfinites\\nfinitude\\nfinitudes\\nfink\\nfinked\\nfinking\\nfinks\\nfinky\\nfinless\\nfinlike\\nfinmark\\nfinmarks\\nfinned\\nfinnickier\\nfinnickiest\\nfinnicky\\nfinnier\\nfinniest\\nfinning\\nfinnmark\\nfinnmarks\\nfinny\\nfinochio\\nfinochios\\nfins\\nfiord\\nfiords\\nfipple\\nfipples\\nfique\\nfiques\\nfir\\nfire\\nfirearm\\nfirearms\\nfireball\\nfireballs\\nfirebird\\nfirebirds\\nfireboat\\nfireboats\\nfirebomb\\nfirebombed\\nfirebombing\\nfirebombs\\nfirebox\\nfireboxes\\nfirebrat\\nfirebrats\\nfirebreak\\nfirebreaks\\nfirebug\\nfirebugs\\nfireclay\\nfireclays\\nfirecracker\\nfirecrackers\\nfired\\nfiredamp\\nfiredamps\\nfiredog\\nfiredogs\\nfirefang\\nfirefanged\\nfirefanging\\nfirefangs\\nfireflies\\nfirefly\\nfirehall\\nfirehalls\\nfireless\\nfirelock\\nfirelocks\\nfireman\\nfiremen\\nfirepan\\nfirepans\\nfirepink\\nfirepinks\\nfireplace\\nfireplaces\\nfireplug\\nfireplugs\\nfireproof\\nfireproofed\\nfireproofing\\nfireproofs\\nfirer\\nfireroom\\nfirerooms\\nfirers\\nfires\\nfireside\\nfiresides\\nfiretrap\\nfiretraps\\nfireweed\\nfireweeds\\nfirewood\\nfirewoods\\nfirework\\nfireworks\\nfireworm\\nfireworms\\nfiring\\nfirings\\nfirkin\\nfirkins\\nfirm\\nfirmament\\nfirmaments\\nfirman\\nfirmans\\nfirmed\\nfirmer\\nfirmers\\nfirmest\\nfirming\\nfirmly\\nfirmness\\nfirmnesses\\nfirms\\nfirn\\nfirns\\nfirry\\nfirs\\nfirst\\nfirstly\\nfirsts\\nfirth\\nfirths\\nfisc\\nfiscal\\nfiscally\\nfiscals\\nfiscs\\nfish\\nfishable\\nfishboat\\nfishboats\\nfishbone\\nfishbones\\nfishbowl\\nfishbowls\\nfished\\nfisher\\nfisheries\\nfisherman\\nfishermen\\nfishers\\nfishery\\nfishes\\nfisheye\\nfisheyes\\nfishgig\\nfishgigs\\nfishhook\\nfishhooks\\nfishier\\nfishiest\\nfishily\\nfishing\\nfishings\\nfishless\\nfishlike\\nfishline\\nfishlines\\nfishmeal\\nfishmeals\\nfishnet\\nfishnets\\nfishpole\\nfishpoles\\nfishpond\\nfishponds\\nfishtail\\nfishtailed\\nfishtailing\\nfishtails\\nfishway\\nfishways\\nfishwife\\nfishwives\\nfishy\\nfissate\\nfissile\\nfission\\nfissionable\\nfissional\\nfissioned\\nfissioning\\nfissions\\nfissiped\\nfissipeds\\nfissure\\nfissured\\nfissures\\nfissuring\\nfist\\nfisted\\nfistful\\nfistfuls\\nfistic\\nfisticuffs\\nfisting\\nfistnote\\nfistnotes\\nfists\\nfistula\\nfistulae\\nfistular\\nfistulas\\nfisty\\nfit\\nfitch\\nfitchee\\nfitches\\nfitchet\\nfitchets\\nfitchew\\nfitchews\\nfitchy\\nfitful\\nfitfully\\nfitly\\nfitment\\nfitments\\nfitness\\nfitnesses\\nfits\\nfittable\\nfitted\\nfitter\\nfitters\\nfittest\\nfitting\\nfittings\\nfive\\nfivefold\\nfivepins\\nfiver\\nfivers\\nfives\\nfix\\nfixable\\nfixate\\nfixated\\nfixates\\nfixatif\\nfixatifs\\nfixating\\nfixation\\nfixations\\nfixative\\nfixatives\\nfixed\\nfixedly\\nfixedness\\nfixednesses\\nfixer\\nfixers\\nfixes\\nfixing\\nfixings\\nfixities\\nfixity\\nfixt\\nfixture\\nfixtures\\nfixure\\nfixures\\nfiz\\nfizgig\\nfizgigs\\nfizz\\nfizzed\\nfizzer\\nfizzers\\nfizzes\\nfizzier\\nfizziest\\nfizzing\\nfizzle\\nfizzled\\nfizzles\\nfizzling\\nfizzy\\nfjeld\\nfjelds\\nfjord\\nfjords\\nflab\\nflabbergast\\nflabbergasted\\nflabbergasting\\nflabbergasts\\nflabbier\\nflabbiest\\nflabbily\\nflabbiness\\nflabbinesses\\nflabby\\nflabella\\nflabs\\nflaccid\\nflack\\nflacks\\nflacon\\nflacons\\nflag\\nflagella\\nflagellate\\nflagellated\\nflagellates\\nflagellating\\nflagellation\\nflagellations\\nflagged\\nflagger\\nflaggers\\nflaggier\\nflaggiest\\nflagging\\nflaggings\\nflaggy\\nflagless\\nflagman\\nflagmen\\nflagon\\nflagons\\nflagpole\\nflagpoles\\nflagrant\\nflagrantly\\nflags\\nflagship\\nflagships\\nflagstaff\\nflagstaffs\\nflagstone\\nflagstones\\nflail\\nflailed\\nflailing\\nflails\\nflair\\nflairs\\nflak\\nflake\\nflaked\\nflaker\\nflakers\\nflakes\\nflakier\\nflakiest\\nflakily\\nflaking\\nflaky\\nflam\\nflambe\\nflambeau\\nflambeaus\\nflambeaux\\nflambee\\nflambeed\\nflambeing\\nflambes\\nflamboyance\\nflamboyances\\nflamboyant\\nflamboyantly\\nflame\\nflamed\\nflamen\\nflamenco\\nflamencos\\nflamens\\nflameout\\nflameouts\\nflamer\\nflamers\\nflames\\nflamier\\nflamiest\\nflamines\\nflaming\\nflamingo\\nflamingoes\\nflamingos\\nflammable\\nflammed\\nflamming\\nflams\\nflamy\\nflan\\nflancard\\nflancards\\nflanerie\\nflaneries\\nflanes\\nflaneur\\nflaneurs\\nflange\\nflanged\\nflanger\\nflangers\\nflanges\\nflanging\\nflank\\nflanked\\nflanker\\nflankers\\nflanking\\nflanks\\nflannel\\nflanneled\\nflanneling\\nflannelled\\nflannelling\\nflannels\\nflans\\nflap\\nflapjack\\nflapjacks\\nflapless\\nflapped\\nflapper\\nflappers\\nflappier\\nflappiest\\nflapping\\nflappy\\nflaps\\nflare\\nflared\\nflares\\nflaring\\nflash\\nflashed\\nflasher\\nflashers\\nflashes\\nflashgun\\nflashguns\\nflashier\\nflashiest\\nflashily\\nflashiness\\nflashinesses\\nflashing\\nflashings\\nflashlight\\nflashlights\\nflashy\\nflask\\nflasket\\nflaskets\\nflasks\\nflat\\nflatbed\\nflatbeds\\nflatboat\\nflatboats\\nflatcap\\nflatcaps\\nflatcar\\nflatcars\\nflatfeet\\nflatfish\\nflatfishes\\nflatfoot\\nflatfooted\\nflatfooting\\nflatfoots\\nflathead\\nflatheads\\nflatiron\\nflatirons\\nflatland\\nflatlands\\nflatlet\\nflatlets\\nflatling\\nflatly\\nflatness\\nflatnesses\\nflats\\nflatted\\nflatten\\nflattened\\nflattening\\nflattens\\nflatter\\nflattered\\nflatterer\\nflatteries\\nflattering\\nflatters\\nflattery\\nflattest\\nflatting\\nflattish\\nflattop\\nflattops\\nflatulence\\nflatulences\\nflatulent\\nflatus\\nflatuses\\nflatware\\nflatwares\\nflatwash\\nflatwashes\\nflatways\\nflatwise\\nflatwork\\nflatworks\\nflatworm\\nflatworms\\nflaunt\\nflaunted\\nflaunter\\nflaunters\\nflauntier\\nflauntiest\\nflaunting\\nflaunts\\nflaunty\\nflautist\\nflautists\\nflavin\\nflavine\\nflavines\\nflavins\\nflavone\\nflavones\\nflavonol\\nflavonols\\nflavor\\nflavored\\nflavorer\\nflavorers\\nflavorful\\nflavoring\\nflavorings\\nflavors\\nflavorsome\\nflavory\\nflavour\\nflavoured\\nflavouring\\nflavours\\nflavoury\\nflaw\\nflawed\\nflawier\\nflawiest\\nflawing\\nflawless\\nflaws\\nflawy\\nflax\\nflaxen\\nflaxes\\nflaxier\\nflaxiest\\nflaxseed\\nflaxseeds\\nflaxy\\nflay\\nflayed\\nflayer\\nflayers\\nflaying\\nflays\\nflea\\nfleabag\\nfleabags\\nfleabane\\nfleabanes\\nfleabite\\nfleabites\\nfleam\\nfleams\\nfleas\\nfleawort\\nfleaworts\\nfleche\\nfleches\\nfleck\\nflecked\\nflecking\\nflecks\\nflecky\\nflection\\nflections\\nfled\\nfledge\\nfledged\\nfledges\\nfledgier\\nfledgiest\\nfledging\\nfledgling\\nfledglings\\nfledgy\\nflee\\nfleece\\nfleeced\\nfleecer\\nfleecers\\nfleeces\\nfleech\\nfleeched\\nfleeches\\nfleeching\\nfleecier\\nfleeciest\\nfleecily\\nfleecing\\nfleecy\\nfleeing\\nfleer\\nfleered\\nfleering\\nfleers\\nflees\\nfleet\\nfleeted\\nfleeter\\nfleetest\\nfleeting\\nfleetness\\nfleetnesses\\nfleets\\nfleishig\\nflemish\\nflemished\\nflemishes\\nflemishing\\nflench\\nflenched\\nflenches\\nflenching\\nflense\\nflensed\\nflenser\\nflensers\\nflenses\\nflensing\\nflesh\\nfleshed\\nflesher\\nfleshers\\nfleshes\\nfleshier\\nfleshiest\\nfleshing\\nfleshings\\nfleshlier\\nfleshliest\\nfleshly\\nfleshpot\\nfleshpots\\nfleshy\\nfletch\\nfletched\\nfletcher\\nfletchers\\nfletches\\nfletching\\nfleury\\nflew\\nflews\\nflex\\nflexed\\nflexes\\nflexibilities\\nflexibility\\nflexible\\nflexibly\\nflexile\\nflexing\\nflexion\\nflexions\\nflexor\\nflexors\\nflexuose\\nflexuous\\nflexural\\nflexure\\nflexures\\nfley\\nfleyed\\nfleying\\nfleys\\nflic\\nflichter\\nflichtered\\nflichtering\\nflichters\\nflick\\nflicked\\nflicker\\nflickered\\nflickering\\nflickers\\nflickery\\nflicking\\nflicks\\nflics\\nflied\\nflier\\nfliers\\nflies\\nfliest\\nflight\\nflighted\\nflightier\\nflightiest\\nflighting\\nflightless\\nflights\\nflighty\\nflimflam\\nflimflammed\\nflimflamming\\nflimflams\\nflimsier\\nflimsies\\nflimsiest\\nflimsily\\nflimsiness\\nflimsinesses\\nflimsy\\nflinch\\nflinched\\nflincher\\nflinchers\\nflinches\\nflinching\\nflinder\\nflinders\\nfling\\nflinger\\nflingers\\nflinging\\nflings\\nflint\\nflinted\\nflintier\\nflintiest\\nflintily\\nflinting\\nflints\\nflinty\\nflip\\nflippancies\\nflippancy\\nflippant\\nflipped\\nflipper\\nflippers\\nflippest\\nflipping\\nflips\\nflirt\\nflirtation\\nflirtations\\nflirtatious\\nflirted\\nflirter\\nflirters\\nflirtier\\nflirtiest\\nflirting\\nflirts\\nflirty\\nflit\\nflitch\\nflitched\\nflitches\\nflitching\\nflite\\nflited\\nflites\\nfliting\\nflits\\nflitted\\nflitter\\nflittered\\nflittering\\nflitters\\nflitting\\nflivver\\nflivvers\\nfloat\\nfloatage\\nfloatages\\nfloated\\nfloater\\nfloaters\\nfloatier\\nfloatiest\\nfloating\\nfloats\\nfloaty\\nfloc\\nflocced\\nflocci\\nfloccing\\nfloccose\\nfloccule\\nfloccules\\nflocculi\\nfloccus\\nflock\\nflocked\\nflockier\\nflockiest\\nflocking\\nflockings\\nflocks\\nflocky\\nflocs\\nfloe\\nfloes\\nflog\\nflogged\\nflogger\\nfloggers\\nflogging\\nfloggings\\nflogs\\nflong\\nflongs\\nflood\\nflooded\\nflooder\\nflooders\\nflooding\\nfloodlit\\nfloods\\nfloodwater\\nfloodwaters\\nfloodway\\nfloodways\\nflooey\\nfloor\\nfloorage\\nfloorages\\nfloorboard\\nfloorboards\\nfloored\\nfloorer\\nfloorers\\nflooring\\nfloorings\\nfloors\\nfloosies\\nfloosy\\nfloozie\\nfloozies\\nfloozy\\nflop\\nflopover\\nflopovers\\nflopped\\nflopper\\nfloppers\\nfloppier\\nfloppiest\\nfloppily\\nflopping\\nfloppy\\nflops\\nflora\\nflorae\\nfloral\\nflorally\\nfloras\\nflorence\\nflorences\\nfloret\\nflorets\\nflorid\\nfloridly\\nflorigen\\nflorigens\\nflorin\\nflorins\\nflorist\\nflorists\\nfloruit\\nfloruits\\nfloss\\nflosses\\nflossie\\nflossier\\nflossies\\nflossiest\\nflossy\\nflota\\nflotage\\nflotages\\nflotas\\nflotation\\nflotations\\nflotilla\\nflotillas\\nflotsam\\nflotsams\\nflounce\\nflounced\\nflounces\\nflouncier\\nflounciest\\nflouncing\\nflouncy\\nflounder\\nfloundered\\nfloundering\\nflounders\\nflour\\nfloured\\nflouring\\nflourish\\nflourished\\nflourishes\\nflourishing\\nflours\\nfloury\\nflout\\nflouted\\nflouter\\nflouters\\nflouting\\nflouts\\nflow\\nflowage\\nflowages\\nflowchart\\nflowcharts\\nflowed\\nflower\\nflowered\\nflowerer\\nflowerers\\nfloweret\\nflowerets\\nflowerier\\nfloweriest\\nfloweriness\\nflowerinesses\\nflowering\\nflowerless\\nflowerpot\\nflowerpots\\nflowers\\nflowery\\nflowing\\nflown\\nflows\\nflowsheet\\nflowsheets\\nflu\\nflub\\nflubbed\\nflubbing\\nflubdub\\nflubdubs\\nflubs\\nfluctuate\\nfluctuated\\nfluctuates\\nfluctuating\\nfluctuation\\nfluctuations\\nflue\\nflued\\nfluencies\\nfluency\\nfluent\\nfluently\\nflueric\\nfluerics\\nflues\\nfluff\\nfluffed\\nfluffier\\nfluffiest\\nfluffily\\nfluffing\\nfluffs\\nfluffy\\nfluid\\nfluidal\\nfluidic\\nfluidics\\nfluidise\\nfluidised\\nfluidises\\nfluidising\\nfluidities\\nfluidity\\nfluidize\\nfluidized\\nfluidizes\\nfluidizing\\nfluidly\\nfluidounce\\nfluidounces\\nfluidram\\nfluidrams\\nfluids\\nfluke\\nfluked\\nflukes\\nflukey\\nflukier\\nflukiest\\nfluking\\nfluky\\nflume\\nflumed\\nflumes\\nfluming\\nflummeries\\nflummery\\nflummox\\nflummoxed\\nflummoxes\\nflummoxing\\nflump\\nflumped\\nflumping\\nflumps\\nflung\\nflunk\\nflunked\\nflunker\\nflunkers\\nflunkey\\nflunkeys\\nflunkies\\nflunking\\nflunks\\nflunky\\nfluor\\nfluorene\\nfluorenes\\nfluoresce\\nfluoresced\\nfluorescence\\nfluorescences\\nfluorescent\\nfluoresces\\nfluorescing\\nfluoric\\nfluorid\\nfluoridate\\nfluoridated\\nfluoridates\\nfluoridating\\nfluoridation\\nfluoridations\\nfluoride\\nfluorides\\nfluorids\\nfluorin\\nfluorine\\nfluorines\\nfluorins\\nfluorite\\nfluorites\\nfluorocarbon\\nfluorocarbons\\nfluoroscope\\nfluoroscopes\\nfluoroscopic\\nfluoroscopies\\nfluoroscopist\\nfluoroscopists\\nfluoroscopy\\nfluors\\nflurried\\nflurries\\nflurry\\nflurrying\\nflus\\nflush\\nflushed\\nflusher\\nflushers\\nflushes\\nflushest\\nflushing\\nfluster\\nflustered\\nflustering\\nflusters\\nflute\\nfluted\\nfluter\\nfluters\\nflutes\\nflutier\\nflutiest\\nfluting\\nflutings\\nflutist\\nflutists\\nflutter\\nfluttered\\nfluttering\\nflutters\\nfluttery\\nfluty\\nfluvial\\nflux\\nfluxed\\nfluxes\\nfluxing\\nfluxion\\nfluxions\\nfluyt\\nfluyts\\nfly\\nflyable\\nflyaway\\nflyaways\\nflybelt\\nflybelts\\nflyblew\\nflyblow\\nflyblowing\\nflyblown\\nflyblows\\nflyboat\\nflyboats\\nflyby\\nflybys\\nflyer\\nflyers\\nflying\\nflyings\\nflyleaf\\nflyleaves\\nflyman\\nflymen\\nflyover\\nflyovers\\nflypaper\\nflypapers\\nflypast\\nflypasts\\nflysch\\nflysches\\nflyspeck\\nflyspecked\\nflyspecking\\nflyspecks\\nflyte\\nflyted\\nflytes\\nflytier\\nflytiers\\nflyting\\nflytings\\nflytrap\\nflytraps\\nflyway\\nflyways\\nflywheel\\nflywheels\\nfoal\\nfoaled\\nfoaling\\nfoals\\nfoam\\nfoamed\\nfoamer\\nfoamers\\nfoamier\\nfoamiest\\nfoamily\\nfoaming\\nfoamless\\nfoamlike\\nfoams\\nfoamy\\nfob\\nfobbed\\nfobbing\\nfobs\\nfocal\\nfocalise\\nfocalised\\nfocalises\\nfocalising\\nfocalize\\nfocalized\\nfocalizes\\nfocalizing\\nfocally\\nfoci\\nfocus\\nfocused\\nfocuser\\nfocusers\\nfocuses\\nfocusing\\nfocussed\\nfocusses\\nfocussing\\nfodder\\nfoddered\\nfoddering\\nfodders\\nfodgel\\nfoe\\nfoehn\\nfoehns\\nfoeman\\nfoemen\\nfoes\\nfoetal\\nfoetid\\nfoetor\\nfoetors\\nfoetus\\nfoetuses\\nfog\\nfogbound\\nfogbow\\nfogbows\\nfogdog\\nfogdogs\\nfogey\\nfogeys\\nfogfruit\\nfogfruits\\nfoggage\\nfoggages\\nfogged\\nfogger\\nfoggers\\nfoggier\\nfoggiest\\nfoggily\\nfogging\\nfoggy\\nfoghorn\\nfoghorns\\nfogie\\nfogies\\nfogless\\nfogs\\nfogy\\nfogyish\\nfogyism\\nfogyisms\\nfoh\\nfohn\\nfohns\\nfoible\\nfoibles\\nfoil\\nfoilable\\nfoiled\\nfoiling\\nfoils\\nfoilsman\\nfoilsmen\\nfoin\\nfoined\\nfoining\\nfoins\\nfoison\\nfoisons\\nfoist\\nfoisted\\nfoisting\\nfoists\\nfolacin\\nfolacins\\nfolate\\nfolates\\nfold\\nfoldable\\nfoldaway\\nfoldboat\\nfoldboats\\nfolded\\nfolder\\nfolderol\\nfolderols\\nfolders\\nfolding\\nfoldout\\nfoldouts\\nfolds\\nfolia\\nfoliage\\nfoliaged\\nfoliages\\nfoliar\\nfoliate\\nfoliated\\nfoliates\\nfoliating\\nfolic\\nfolio\\nfolioed\\nfolioing\\nfolios\\nfoliose\\nfolious\\nfolium\\nfoliums\\nfolk\\nfolkish\\nfolklike\\nfolklore\\nfolklores\\nfolklorist\\nfolklorists\\nfolkmoot\\nfolkmoots\\nfolkmot\\nfolkmote\\nfolkmotes\\nfolkmots\\nfolks\\nfolksier\\nfolksiest\\nfolksily\\nfolksy\\nfolktale\\nfolktales\\nfolkway\\nfolkways\\nfolles\\nfollicle\\nfollicles\\nfollies\\nfollis\\nfollow\\nfollowed\\nfollower\\nfollowers\\nfollowing\\nfollowings\\nfollows\\nfolly\\nfoment\\nfomentation\\nfomentations\\nfomented\\nfomenter\\nfomenters\\nfomenting\\nfoments\\nfon\\nfond\\nfondant\\nfondants\\nfonded\\nfonder\\nfondest\\nfonding\\nfondle\\nfondled\\nfondler\\nfondlers\\nfondles\\nfondling\\nfondlings\\nfondly\\nfondness\\nfondnesses\\nfonds\\nfondu\\nfondue\\nfondues\\nfondus\\nfons\\nfont\\nfontal\\nfontanel\\nfontanels\\nfontina\\nfontinas\\nfonts\\nfood\\nfoodless\\nfoods\\nfoofaraw\\nfoofaraws\\nfool\\nfooled\\nfooleries\\nfoolery\\nfoolfish\\nfoolfishes\\nfoolhardiness\\nfoolhardinesses\\nfoolhardy\\nfooling\\nfoolish\\nfoolisher\\nfoolishest\\nfoolishness\\nfoolishnesses\\nfoolproof\\nfools\\nfoolscap\\nfoolscaps\\nfoot\\nfootage\\nfootages\\nfootball\\nfootballs\\nfootbath\\nfootbaths\\nfootboy\\nfootboys\\nfootbridge\\nfootbridges\\nfooted\\nfooter\\nfooters\\nfootfall\\nfootfalls\\nfootgear\\nfootgears\\nfoothill\\nfoothills\\nfoothold\\nfootholds\\nfootier\\nfootiest\\nfooting\\nfootings\\nfootle\\nfootled\\nfootler\\nfootlers\\nfootles\\nfootless\\nfootlight\\nfootlights\\nfootlike\\nfootling\\nfootlocker\\nfootlockers\\nfootloose\\nfootman\\nfootmark\\nfootmarks\\nfootmen\\nfootnote\\nfootnoted\\nfootnotes\\nfootnoting\\nfootpace\\nfootpaces\\nfootpad\\nfootpads\\nfootpath\\nfootpaths\\nfootprint\\nfootprints\\nfootrace\\nfootraces\\nfootrest\\nfootrests\\nfootrope\\nfootropes\\nfoots\\nfootsie\\nfootsies\\nfootslog\\nfootslogged\\nfootslogging\\nfootslogs\\nfootsore\\nfootstep\\nfootsteps\\nfootstool\\nfootstools\\nfootwall\\nfootwalls\\nfootway\\nfootways\\nfootwear\\nfootwears\\nfootwork\\nfootworks\\nfootworn\\nfooty\\nfoozle\\nfoozled\\nfoozler\\nfoozlers\\nfoozles\\nfoozling\\nfop\\nfopped\\nfopperies\\nfoppery\\nfopping\\nfoppish\\nfops\\nfor\\nfora\\nforage\\nforaged\\nforager\\nforagers\\nforages\\nforaging\\nforam\\nforamen\\nforamens\\nforamina\\nforams\\nforay\\nforayed\\nforayer\\nforayers\\nforaying\\nforays\\nforb\\nforbad\\nforbade\\nforbear\\nforbearance\\nforbearances\\nforbearing\\nforbears\\nforbid\\nforbidal\\nforbidals\\nforbidden\\nforbidding\\nforbids\\nforbode\\nforboded\\nforbodes\\nforboding\\nforbore\\nforborne\\nforbs\\nforby\\nforbye\\nforce\\nforced\\nforcedly\\nforceful\\nforcefully\\nforceps\\nforcer\\nforcers\\nforces\\nforcible\\nforcibly\\nforcing\\nforcipes\\nford\\nfordable\\nforded\\nfordid\\nfording\\nfordless\\nfordo\\nfordoes\\nfordoing\\nfordone\\nfords\\nfore\\nforearm\\nforearmed\\nforearming\\nforearms\\nforebay\\nforebays\\nforebear\\nforebears\\nforebode\\nforeboded\\nforebodes\\nforebodies\\nforeboding\\nforebodings\\nforebody\\nforeboom\\nforebooms\\nforeby\\nforebye\\nforecast\\nforecasted\\nforecaster\\nforecasters\\nforecasting\\nforecastle\\nforecastles\\nforecasts\\nforeclose\\nforeclosed\\nforecloses\\nforeclosing\\nforeclosure\\nforeclosures\\nforedate\\nforedated\\nforedates\\nforedating\\nforedeck\\nforedecks\\nforedid\\nforedo\\nforedoes\\nforedoing\\nforedone\\nforedoom\\nforedoomed\\nforedooming\\nforedooms\\nforeface\\nforefaces\\nforefather\\nforefathers\\nforefeel\\nforefeeling\\nforefeels\\nforefeet\\nforefelt\\nforefend\\nforefended\\nforefending\\nforefends\\nforefinger\\nforefingers\\nforefoot\\nforefront\\nforefronts\\nforegather\\nforegathered\\nforegathering\\nforegathers\\nforego\\nforegoer\\nforegoers\\nforegoes\\nforegoing\\nforegone\\nforeground\\nforegrounds\\nforegut\\nforeguts\\nforehand\\nforehands\\nforehead\\nforeheads\\nforehoof\\nforehoofs\\nforehooves\\nforeign\\nforeigner\\nforeigners\\nforeknew\\nforeknow\\nforeknowing\\nforeknowledge\\nforeknowledges\\nforeknown\\nforeknows\\nforeladies\\nforelady\\nforeland\\nforelands\\nforeleg\\nforelegs\\nforelimb\\nforelimbs\\nforelock\\nforelocks\\nforeman\\nforemast\\nforemasts\\nforemen\\nforemilk\\nforemilks\\nforemost\\nforename\\nforenames\\nforenoon\\nforenoons\\nforensic\\nforensics\\nforeordain\\nforeordained\\nforeordaining\\nforeordains\\nforepart\\nforeparts\\nforepast\\nforepaw\\nforepaws\\nforepeak\\nforepeaks\\nforeplay\\nforeplays\\nforequarter\\nforequarters\\nforeran\\nforerank\\nforeranks\\nforerun\\nforerunner\\nforerunners\\nforerunning\\nforeruns\\nfores\\nforesaid\\nforesail\\nforesails\\nforesaw\\nforesee\\nforeseeable\\nforeseeing\\nforeseen\\nforeseer\\nforeseers\\nforesees\\nforeshadow\\nforeshadowed\\nforeshadowing\\nforeshadows\\nforeshow\\nforeshowed\\nforeshowing\\nforeshown\\nforeshows\\nforeside\\nforesides\\nforesight\\nforesighted\\nforesightedness\\nforesightednesses\\nforesights\\nforeskin\\nforeskins\\nforest\\nforestal\\nforestall\\nforestalled\\nforestalling\\nforestalls\\nforestay\\nforestays\\nforested\\nforester\\nforesters\\nforesting\\nforestland\\nforestlands\\nforestries\\nforestry\\nforests\\nforeswear\\nforesweared\\nforeswearing\\nforeswears\\nforetaste\\nforetasted\\nforetastes\\nforetasting\\nforetell\\nforetelling\\nforetells\\nforethought\\nforethoughts\\nforetime\\nforetimes\\nforetold\\nforetop\\nforetops\\nforever\\nforevermore\\nforevers\\nforewarn\\nforewarned\\nforewarning\\nforewarns\\nforewent\\nforewing\\nforewings\\nforeword\\nforewords\\nforeworn\\nforeyard\\nforeyards\\nforfeit\\nforfeited\\nforfeiting\\nforfeits\\nforfeiture\\nforfeitures\\nforfend\\nforfended\\nforfending\\nforfends\\nforgat\\nforgather\\nforgathered\\nforgathering\\nforgathers\\nforgave\\nforge\\nforged\\nforger\\nforgeries\\nforgers\\nforgery\\nforges\\nforget\\nforgetful\\nforgetfully\\nforgets\\nforgetting\\nforging\\nforgings\\nforgivable\\nforgive\\nforgiven\\nforgiveness\\nforgivenesses\\nforgiver\\nforgivers\\nforgives\\nforgiving\\nforgo\\nforgoer\\nforgoers\\nforgoes\\nforgoing\\nforgone\\nforgot\\nforgotten\\nforint\\nforints\\nforjudge\\nforjudged\\nforjudges\\nforjudging\\nfork\\nforked\\nforkedly\\nforker\\nforkers\\nforkful\\nforkfuls\\nforkier\\nforkiest\\nforking\\nforkless\\nforklift\\nforklifts\\nforklike\\nforks\\nforksful\\nforky\\nforlorn\\nforlorner\\nforlornest\\nform\\nformable\\nformal\\nformaldehyde\\nformaldehydes\\nformalin\\nformalins\\nformalities\\nformality\\nformalize\\nformalized\\nformalizes\\nformalizing\\nformally\\nformals\\nformant\\nformants\\nformat\\nformate\\nformates\\nformation\\nformations\\nformative\\nformats\\nformatted\\nformatting\\nforme\\nformed\\nformee\\nformer\\nformerly\\nformers\\nformes\\nformful\\nformic\\nformidable\\nformidably\\nforming\\nformless\\nformol\\nformols\\nforms\\nformula\\nformulae\\nformulas\\nformulate\\nformulated\\nformulates\\nformulating\\nformulation\\nformulations\\nformyl\\nformyls\\nfornical\\nfornicate\\nfornicated\\nfornicates\\nfornicating\\nfornication\\nfornicator\\nfornicators\\nfornices\\nfornix\\nforrader\\nforrit\\nforsake\\nforsaken\\nforsaker\\nforsakers\\nforsakes\\nforsaking\\nforsook\\nforsooth\\nforspent\\nforswear\\nforswearing\\nforswears\\nforswore\\nforsworn\\nforsythia\\nforsythias\\nfort\\nforte\\nfortes\\nforth\\nforthcoming\\nforthright\\nforthrightness\\nforthrightnesses\\nforthwith\\nforties\\nfortieth\\nfortieths\\nfortification\\nfortifications\\nfortified\\nfortifies\\nfortify\\nfortifying\\nfortis\\nfortitude\\nfortitudes\\nfortnight\\nfortnightly\\nfortnights\\nfortress\\nfortressed\\nfortresses\\nfortressing\\nforts\\nfortuities\\nfortuitous\\nfortuity\\nfortunate\\nfortunately\\nfortune\\nfortuned\\nfortunes\\nfortuning\\nforty\\nforum\\nforums\\nforward\\nforwarded\\nforwarder\\nforwardest\\nforwarding\\nforwardness\\nforwardnesses\\nforwards\\nforwent\\nforwhy\\nforworn\\nforzando\\nforzandos\\nfoss\\nfossa\\nfossae\\nfossate\\nfosse\\nfosses\\nfossette\\nfossettes\\nfossick\\nfossicked\\nfossicking\\nfossicks\\nfossil\\nfossilize\\nfossilized\\nfossilizes\\nfossilizing\\nfossils\\nfoster\\nfostered\\nfosterer\\nfosterers\\nfostering\\nfosters\\nfou\\nfought\\nfoughten\\nfoul\\nfoulard\\nfoulards\\nfouled\\nfouler\\nfoulest\\nfouling\\nfoulings\\nfoully\\nfoulmouthed\\nfoulness\\nfoulnesses\\nfouls\\nfound\\nfoundation\\nfoundational\\nfoundations\\nfounded\\nfounder\\nfoundered\\nfoundering\\nfounders\\nfounding\\nfoundling\\nfoundlings\\nfoundries\\nfoundry\\nfounds\\nfount\\nfountain\\nfountained\\nfountaining\\nfountains\\nfounts\\nfour\\nfourchee\\nfourfold\\nfourgon\\nfourgons\\nfours\\nfourscore\\nfoursome\\nfoursomes\\nfourteen\\nfourteens\\nfourteenth\\nfourteenths\\nfourth\\nfourthly\\nfourths\\nfovea\\nfoveae\\nfoveal\\nfoveate\\nfoveated\\nfoveola\\nfoveolae\\nfoveolar\\nfoveolas\\nfoveole\\nfoveoles\\nfoveolet\\nfoveolets\\nfowl\\nfowled\\nfowler\\nfowlers\\nfowling\\nfowlings\\nfowlpox\\nfowlpoxes\\nfowls\\nfox\\nfoxed\\nfoxes\\nfoxfire\\nfoxfires\\nfoxfish\\nfoxfishes\\nfoxglove\\nfoxgloves\\nfoxhole\\nfoxholes\\nfoxhound\\nfoxhounds\\nfoxier\\nfoxiest\\nfoxily\\nfoxiness\\nfoxinesses\\nfoxing\\nfoxings\\nfoxlike\\nfoxskin\\nfoxskins\\nfoxtail\\nfoxtails\\nfoxy\\nfoy\\nfoyer\\nfoyers\\nfoys\\nfozier\\nfoziest\\nfoziness\\nfozinesses\\nfozy\\nfracas\\nfracases\\nfracted\\nfraction\\nfractional\\nfractionally\\nfractionated\\nfractioned\\nfractioning\\nfractions\\nfractur\\nfracture\\nfractured\\nfractures\\nfracturing\\nfracturs\\nfrae\\nfraena\\nfraenum\\nfraenums\\nfrag\\nfragged\\nfragging\\nfraggings\\nfragile\\nfragilities\\nfragility\\nfragment\\nfragmentary\\nfragmentation\\nfragmentations\\nfragmented\\nfragmenting\\nfragments\\nfragrant\\nfragrantly\\nfrags\\nfrail\\nfrailer\\nfrailest\\nfrailly\\nfrails\\nfrailties\\nfrailty\\nfraise\\nfraises\\nfraktur\\nfrakturs\\nframable\\nframe\\nframed\\nframer\\nframers\\nframes\\nframework\\nframeworks\\nframing\\nfranc\\nfranchise\\nfranchisee\\nfranchisees\\nfranchises\\nfrancium\\nfranciums\\nfrancs\\nfrangibilities\\nfrangibility\\nfrangible\\nfrank\\nfranked\\nfranker\\nfrankers\\nfrankest\\nfrankfort\\nfrankforter\\nfrankforters\\nfrankforts\\nfrankfurt\\nfrankfurter\\nfrankfurters\\nfrankfurts\\nfrankincense\\nfrankincenses\\nfranking\\nfranklin\\nfranklins\\nfrankly\\nfrankness\\nfranknesses\\nfranks\\nfrantic\\nfrantically\\nfranticly\\nfrap\\nfrappe\\nfrapped\\nfrappes\\nfrapping\\nfraps\\nfrat\\nfrater\\nfraternal\\nfraternally\\nfraternities\\nfraternity\\nfraternization\\nfraternizations\\nfraternize\\nfraternized\\nfraternizes\\nfraternizing\\nfraters\\nfratricidal\\nfratricide\\nfratricides\\nfrats\\nfraud\\nfrauds\\nfraudulent\\nfraudulently\\nfraught\\nfraughted\\nfraughting\\nfraughts\\nfraulein\\nfrauleins\\nfray\\nfrayed\\nfraying\\nfrayings\\nfrays\\nfrazzle\\nfrazzled\\nfrazzles\\nfrazzling\\nfreak\\nfreaked\\nfreakier\\nfreakiest\\nfreakily\\nfreaking\\nfreakish\\nfreakout\\nfreakouts\\nfreaks\\nfreaky\\nfreckle\\nfreckled\\nfreckles\\nfrecklier\\nfreckliest\\nfreckling\\nfreckly\\nfree\\nfreebee\\nfreebees\\nfreebie\\nfreebies\\nfreeboot\\nfreebooted\\nfreebooter\\nfreebooters\\nfreebooting\\nfreeboots\\nfreeborn\\nfreed\\nfreedman\\nfreedmen\\nfreedom\\nfreedoms\\nfreeform\\nfreehand\\nfreehold\\nfreeholds\\nfreeing\\nfreeload\\nfreeloaded\\nfreeloader\\nfreeloaders\\nfreeloading\\nfreeloads\\nfreely\\nfreeman\\nfreemen\\nfreeness\\nfreenesses\\nfreer\\nfreers\\nfrees\\nfreesia\\nfreesias\\nfreest\\nfreestanding\\nfreeway\\nfreeways\\nfreewill\\nfreeze\\nfreezer\\nfreezers\\nfreezes\\nfreezing\\nfreight\\nfreighted\\nfreighter\\nfreighters\\nfreighting\\nfreights\\nfremd\\nfremitus\\nfremituses\\nfrena\\nfrench\\nfrenched\\nfrenches\\nfrenching\\nfrenetic\\nfrenetically\\nfrenetics\\nfrenula\\nfrenulum\\nfrenum\\nfrenums\\nfrenzied\\nfrenzies\\nfrenzily\\nfrenzy\\nfrenzying\\nfrequencies\\nfrequency\\nfrequent\\nfrequented\\nfrequenter\\nfrequenters\\nfrequentest\\nfrequenting\\nfrequently\\nfrequents\\nfrere\\nfreres\\nfresco\\nfrescoed\\nfrescoer\\nfrescoers\\nfrescoes\\nfrescoing\\nfrescos\\nfresh\\nfreshed\\nfreshen\\nfreshened\\nfreshening\\nfreshens\\nfresher\\nfreshes\\nfreshest\\nfreshet\\nfreshets\\nfreshing\\nfreshly\\nfreshman\\nfreshmen\\nfreshness\\nfreshnesses\\nfreshwater\\nfresnel\\nfresnels\\nfret\\nfretful\\nfretfully\\nfretfulness\\nfretfulnesses\\nfretless\\nfrets\\nfretsaw\\nfretsaws\\nfretsome\\nfretted\\nfrettier\\nfrettiest\\nfretting\\nfretty\\nfretwork\\nfretworks\\nfriable\\nfriar\\nfriaries\\nfriarly\\nfriars\\nfriary\\nfribble\\nfribbled\\nfribbler\\nfribblers\\nfribbles\\nfribbling\\nfricando\\nfricandoes\\nfricassee\\nfricassees\\nfriction\\nfrictional\\nfrictions\\nfridge\\nfridges\\nfried\\nfriend\\nfriended\\nfriending\\nfriendless\\nfriendlier\\nfriendlies\\nfriendliest\\nfriendliness\\nfriendlinesses\\nfriendly\\nfriends\\nfriendship\\nfriendships\\nfrier\\nfriers\\nfries\\nfrieze\\nfriezes\\nfrig\\nfrigate\\nfrigates\\nfrigged\\nfrigging\\nfright\\nfrighted\\nfrighten\\nfrightened\\nfrightening\\nfrightens\\nfrightful\\nfrightfully\\nfrightfulness\\nfrightfulnesses\\nfrighting\\nfrights\\nfrigid\\nfrigidities\\nfrigidity\\nfrigidly\\nfrigs\\nfrijol\\nfrijole\\nfrijoles\\nfrill\\nfrilled\\nfriller\\nfrillers\\nfrillier\\nfrilliest\\nfrilling\\nfrillings\\nfrills\\nfrilly\\nfringe\\nfringed\\nfringes\\nfringier\\nfringiest\\nfringing\\nfringy\\nfripperies\\nfrippery\\nfrise\\nfrises\\nfrisette\\nfrisettes\\nfriseur\\nfriseurs\\nfrisk\\nfrisked\\nfrisker\\nfriskers\\nfrisket\\nfriskets\\nfriskier\\nfriskiest\\nfriskily\\nfriskiness\\nfriskinesses\\nfrisking\\nfrisks\\nfrisky\\nfrisson\\nfrissons\\nfrit\\nfrith\\nfriths\\nfrits\\nfritt\\nfritted\\nfritter\\nfrittered\\nfrittering\\nfritters\\nfritting\\nfritts\\nfrivol\\nfrivoled\\nfrivoler\\nfrivolers\\nfrivoling\\nfrivolities\\nfrivolity\\nfrivolled\\nfrivolling\\nfrivolous\\nfrivolously\\nfrivols\\nfriz\\nfrized\\nfrizer\\nfrizers\\nfrizes\\nfrizette\\nfrizettes\\nfrizing\\nfrizz\\nfrizzed\\nfrizzer\\nfrizzers\\nfrizzes\\nfrizzier\\nfrizziest\\nfrizzily\\nfrizzing\\nfrizzle\\nfrizzled\\nfrizzler\\nfrizzlers\\nfrizzles\\nfrizzlier\\nfrizzliest\\nfrizzling\\nfrizzly\\nfrizzy\\nfro\\nfrock\\nfrocked\\nfrocking\\nfrocks\\nfroe\\nfroes\\nfrog\\nfrogeye\\nfrogeyed\\nfrogeyes\\nfrogfish\\nfrogfishes\\nfrogged\\nfroggier\\nfroggiest\\nfrogging\\nfroggy\\nfroglike\\nfrogman\\nfrogmen\\nfrogs\\nfrolic\\nfrolicked\\nfrolicking\\nfrolicky\\nfrolics\\nfrolicsome\\nfrom\\nfromage\\nfromages\\nfromenties\\nfromenty\\nfrond\\nfronded\\nfrondeur\\nfrondeurs\\nfrondose\\nfronds\\nfrons\\nfront\\nfrontage\\nfrontages\\nfrontal\\nfrontals\\nfronted\\nfronter\\nfrontes\\nfrontier\\nfrontiers\\nfrontiersman\\nfrontiersmen\\nfronting\\nfrontispiece\\nfrontispieces\\nfrontlet\\nfrontlets\\nfronton\\nfrontons\\nfronts\\nfrore\\nfrosh\\nfrost\\nfrostbit\\nfrostbite\\nfrostbites\\nfrostbitten\\nfrosted\\nfrosteds\\nfrostier\\nfrostiest\\nfrostily\\nfrosting\\nfrostings\\nfrosts\\nfrosty\\nfroth\\nfrothed\\nfrothier\\nfrothiest\\nfrothily\\nfrothing\\nfroths\\nfrothy\\nfrottage\\nfrottages\\nfrotteur\\nfrotteurs\\nfroufrou\\nfroufrous\\nfrounce\\nfrounced\\nfrounces\\nfrouncing\\nfrouzier\\nfrouziest\\nfrouzy\\nfrow\\nfroward\\nfrown\\nfrowned\\nfrowner\\nfrowners\\nfrowning\\nfrowns\\nfrows\\nfrowsier\\nfrowsiest\\nfrowstier\\nfrowstiest\\nfrowsty\\nfrowsy\\nfrowzier\\nfrowziest\\nfrowzily\\nfrowzy\\nfroze\\nfrozen\\nfrozenly\\nfructified\\nfructifies\\nfructify\\nfructifying\\nfructose\\nfructoses\\nfrug\\nfrugal\\nfrugalities\\nfrugality\\nfrugally\\nfrugged\\nfrugging\\nfrugs\\nfruit\\nfruitage\\nfruitages\\nfruitcake\\nfruitcakes\\nfruited\\nfruiter\\nfruiters\\nfruitful\\nfruitfuller\\nfruitfullest\\nfruitfulness\\nfruitfulnesses\\nfruitier\\nfruitiest\\nfruiting\\nfruition\\nfruitions\\nfruitless\\nfruitlet\\nfruitlets\\nfruits\\nfruity\\nfrumenties\\nfrumenty\\nfrump\\nfrumpier\\nfrumpiest\\nfrumpily\\nfrumpish\\nfrumps\\nfrumpy\\nfrusta\\nfrustrate\\nfrustrated\\nfrustrates\\nfrustrating\\nfrustratingly\\nfrustration\\nfrustrations\\nfrustule\\nfrustules\\nfrustum\\nfrustums\\nfry\\nfryer\\nfryers\\nfrying\\nfrypan\\nfrypans\\nfub\\nfubbed\\nfubbing\\nfubs\\nfubsier\\nfubsiest\\nfubsy\\nfuchsia\\nfuchsias\\nfuchsin\\nfuchsine\\nfuchsines\\nfuchsins\\nfuci\\nfucoid\\nfucoidal\\nfucoids\\nfucose\\nfucoses\\nfucous\\nfucus\\nfucuses\\nfud\\nfuddle\\nfuddled\\nfuddles\\nfuddling\\nfudge\\nfudged\\nfudges\\nfudging\\nfuds\\nfuehrer\\nfuehrers\\nfuel\\nfueled\\nfueler\\nfuelers\\nfueling\\nfuelled\\nfueller\\nfuellers\\nfuelling\\nfuels\\nfug\\nfugacities\\nfugacity\\nfugal\\nfugally\\nfugato\\nfugatos\\nfugged\\nfuggier\\nfuggiest\\nfugging\\nfuggy\\nfugio\\nfugios\\nfugitive\\nfugitives\\nfugle\\nfugled\\nfugleman\\nfuglemen\\nfugles\\nfugling\\nfugs\\nfugue\\nfugued\\nfugues\\nfuguing\\nfuguist\\nfuguists\\nfuhrer\\nfuhrers\\nfuji\\nfujis\\nfulcra\\nfulcrum\\nfulcrums\\nfulfil\\nfulfill\\nfulfilled\\nfulfilling\\nfulfillment\\nfulfillments\\nfulfills\\nfulfils\\nfulgent\\nfulgid\\nfulham\\nfulhams\\nfull\\nfullam\\nfullams\\nfullback\\nfullbacks\\nfulled\\nfuller\\nfullered\\nfulleries\\nfullering\\nfullers\\nfullery\\nfullest\\nfullface\\nfullfaces\\nfulling\\nfullness\\nfullnesses\\nfulls\\nfully\\nfulmar\\nfulmars\\nfulmine\\nfulmined\\nfulmines\\nfulminic\\nfulmining\\nfulness\\nfulnesses\\nfulsome\\nfulvous\\nfumarase\\nfumarases\\nfumarate\\nfumarates\\nfumaric\\nfumarole\\nfumaroles\\nfumatories\\nfumatory\\nfumble\\nfumbled\\nfumbler\\nfumblers\\nfumbles\\nfumbling\\nfume\\nfumed\\nfumeless\\nfumelike\\nfumer\\nfumers\\nfumes\\nfumet\\nfumets\\nfumette\\nfumettes\\nfumier\\nfumiest\\nfumigant\\nfumigants\\nfumigate\\nfumigated\\nfumigates\\nfumigating\\nfumigation\\nfumigations\\nfuming\\nfumitories\\nfumitory\\nfumuli\\nfumulus\\nfumy\\nfun\\nfunction\\nfunctional\\nfunctionally\\nfunctionaries\\nfunctionary\\nfunctioned\\nfunctioning\\nfunctionless\\nfunctions\\nfunctor\\nfunctors\\nfund\\nfundamental\\nfundamentally\\nfundamentals\\nfunded\\nfundi\\nfundic\\nfunding\\nfunds\\nfundus\\nfuneral\\nfunerals\\nfunerary\\nfunereal\\nfunest\\nfunfair\\nfunfairs\\nfungal\\nfungals\\nfungi\\nfungible\\nfungibles\\nfungic\\nfungicidal\\nfungicide\\nfungicides\\nfungo\\nfungoes\\nfungoid\\nfungoids\\nfungous\\nfungus\\nfunguses\\nfunicle\\nfunicles\\nfuniculi\\nfunk\\nfunked\\nfunker\\nfunkers\\nfunkia\\nfunkias\\nfunkier\\nfunkiest\\nfunking\\nfunks\\nfunky\\nfunned\\nfunnel\\nfunneled\\nfunneling\\nfunnelled\\nfunnelling\\nfunnels\\nfunnier\\nfunnies\\nfunniest\\nfunnily\\nfunning\\nfunny\\nfunnyman\\nfunnymen\\nfuns\\nfur\\nfuran\\nfurane\\nfuranes\\nfuranose\\nfuranoses\\nfurans\\nfurbelow\\nfurbelowed\\nfurbelowing\\nfurbelows\\nfurbish\\nfurbished\\nfurbishes\\nfurbishing\\nfurcate\\nfurcated\\nfurcates\\nfurcating\\nfurcraea\\nfurcraeas\\nfurcula\\nfurculae\\nfurcular\\nfurculum\\nfurfur\\nfurfural\\nfurfurals\\nfurfuran\\nfurfurans\\nfurfures\\nfuribund\\nfuries\\nfurioso\\nfurious\\nfuriously\\nfurl\\nfurlable\\nfurled\\nfurler\\nfurlers\\nfurless\\nfurling\\nfurlong\\nfurlongs\\nfurlough\\nfurloughed\\nfurloughing\\nfurloughs\\nfurls\\nfurmenties\\nfurmenty\\nfurmeties\\nfurmety\\nfurmities\\nfurmity\\nfurnace\\nfurnaced\\nfurnaces\\nfurnacing\\nfurnish\\nfurnished\\nfurnishes\\nfurnishing\\nfurnishings\\nfurniture\\nfurnitures\\nfuror\\nfurore\\nfurores\\nfurors\\nfurred\\nfurrier\\nfurrieries\\nfurriers\\nfurriery\\nfurriest\\nfurrily\\nfurriner\\nfurriners\\nfurring\\nfurrings\\nfurrow\\nfurrowed\\nfurrower\\nfurrowers\\nfurrowing\\nfurrows\\nfurrowy\\nfurry\\nfurs\\nfurther\\nfurthered\\nfurthering\\nfurthermore\\nfurthermost\\nfurthers\\nfurthest\\nfurtive\\nfurtively\\nfurtiveness\\nfurtivenesses\\nfuruncle\\nfuruncles\\nfury\\nfurze\\nfurzes\\nfurzier\\nfurziest\\nfurzy\\nfusain\\nfusains\\nfuscous\\nfuse\\nfused\\nfusee\\nfusees\\nfusel\\nfuselage\\nfuselages\\nfuseless\\nfusels\\nfuses\\nfusible\\nfusibly\\nfusiform\\nfusil\\nfusile\\nfusileer\\nfusileers\\nfusilier\\nfusiliers\\nfusillade\\nfusillades\\nfusils\\nfusing\\nfusion\\nfusions\\nfuss\\nfussbudget\\nfussbudgets\\nfussed\\nfusser\\nfussers\\nfusses\\nfussier\\nfussiest\\nfussily\\nfussiness\\nfussinesses\\nfussing\\nfusspot\\nfusspots\\nfussy\\nfustian\\nfustians\\nfustic\\nfustics\\nfustier\\nfustiest\\nfustily\\nfusty\\nfutharc\\nfutharcs\\nfuthark\\nfutharks\\nfuthorc\\nfuthorcs\\nfuthork\\nfuthorks\\nfutile\\nfutilely\\nfutilities\\nfutility\\nfuttock\\nfuttocks\\nfutural\\nfuture\\nfutures\\nfuturism\\nfuturisms\\nfuturist\\nfuturistic\\nfuturists\\nfuturities\\nfuturity\\nfuze\\nfuzed\\nfuzee\\nfuzees\\nfuzes\\nfuzil\\nfuzils\\nfuzing\\nfuzz\\nfuzzed\\nfuzzes\\nfuzzier\\nfuzziest\\nfuzzily\\nfuzziness\\nfuzzinesses\\nfuzzing\\nfuzzy\\nfyce\\nfyces\\nfyke\\nfykes\\nfylfot\\nfylfots\\nfytte\\nfyttes\\ngab\\ngabardine\\ngabardines\\ngabbard\\ngabbards\\ngabbart\\ngabbarts\\ngabbed\\ngabber\\ngabbers\\ngabbier\\ngabbiest\\ngabbing\\ngabble\\ngabbled\\ngabbler\\ngabblers\\ngabbles\\ngabbling\\ngabbro\\ngabbroic\\ngabbroid\\ngabbros\\ngabby\\ngabelle\\ngabelled\\ngabelles\\ngabfest\\ngabfests\\ngabies\\ngabion\\ngabions\\ngable\\ngabled\\ngables\\ngabling\\ngaboon\\ngaboons\\ngabs\\ngaby\\ngad\\ngadabout\\ngadabouts\\ngadarene\\ngadded\\ngadder\\ngadders\\ngaddi\\ngadding\\ngaddis\\ngadflies\\ngadfly\\ngadget\\ngadgetries\\ngadgetry\\ngadgets\\ngadgety\\ngadi\\ngadid\\ngadids\\ngadis\\ngadoid\\ngadoids\\ngadroon\\ngadroons\\ngads\\ngadwall\\ngadwalls\\ngadzooks\\ngae\\ngaed\\ngaen\\ngaes\\ngaff\\ngaffe\\ngaffed\\ngaffer\\ngaffers\\ngaffes\\ngaffing\\ngaffs\\ngag\\ngaga\\ngage\\ngaged\\ngager\\ngagers\\ngages\\ngagged\\ngagger\\ngaggers\\ngagging\\ngaggle\\ngaggled\\ngaggles\\ngaggling\\ngaging\\ngagman\\ngagmen\\ngags\\ngagster\\ngagsters\\ngahnite\\ngahnites\\ngaieties\\ngaiety\\ngaily\\ngain\\ngainable\\ngained\\ngainer\\ngainers\\ngainful\\ngainfully\\ngaining\\ngainless\\ngainlier\\ngainliest\\ngainly\\ngains\\ngainsaid\\ngainsay\\ngainsayer\\ngainsayers\\ngainsaying\\ngainsays\\ngainst\\ngait\\ngaited\\ngaiter\\ngaiters\\ngaiting\\ngaits\\ngal\\ngala\\ngalactic\\ngalactorrhea\\ngalago\\ngalagos\\ngalah\\ngalahs\\ngalangal\\ngalangals\\ngalas\\ngalatea\\ngalateas\\ngalavant\\ngalavanted\\ngalavanting\\ngalavants\\ngalax\\ngalaxes\\ngalaxies\\ngalaxy\\ngalbanum\\ngalbanums\\ngale\\ngalea\\ngaleae\\ngaleas\\ngaleate\\ngaleated\\ngalena\\ngalenas\\ngalenic\\ngalenite\\ngalenites\\ngalere\\ngaleres\\ngales\\ngalilee\\ngalilees\\ngaliot\\ngaliots\\ngalipot\\ngalipots\\ngalivant\\ngalivanted\\ngalivanting\\ngalivants\\ngall\\ngallant\\ngallanted\\ngallanting\\ngallantly\\ngallantries\\ngallantry\\ngallants\\ngallate\\ngallates\\ngallbladder\\ngallbladders\\ngalleass\\ngalleasses\\ngalled\\ngallein\\ngalleins\\ngalleon\\ngalleons\\ngalleried\\ngalleries\\ngallery\\ngallerying\\ngalleta\\ngalletas\\ngalley\\ngalleys\\ngallflies\\ngallfly\\ngalliard\\ngalliards\\ngalliass\\ngalliasses\\ngallic\\ngallican\\ngallied\\ngallies\\ngalling\\ngalliot\\ngalliots\\ngallipot\\ngallipots\\ngallium\\ngalliums\\ngallivant\\ngallivanted\\ngallivanting\\ngallivants\\ngallnut\\ngallnuts\\ngallon\\ngallons\\ngalloon\\ngalloons\\ngalloot\\ngalloots\\ngallop\\ngalloped\\ngalloper\\ngallopers\\ngalloping\\ngallops\\ngallous\\ngallows\\ngallowses\\ngalls\\ngallstone\\ngallstones\\ngallus\\ngallused\\ngalluses\\ngally\\ngallying\\ngaloot\\ngaloots\\ngalop\\ngalopade\\ngalopades\\ngalops\\ngalore\\ngalores\\ngalosh\\ngaloshe\\ngaloshed\\ngaloshes\\ngals\\ngalumph\\ngalumphed\\ngalumphing\\ngalumphs\\ngalvanic\\ngalvanization\\ngalvanizations\\ngalvanize\\ngalvanized\\ngalvanizer\\ngalvanizers\\ngalvanizes\\ngalvanizing\\ngalyac\\ngalyacs\\ngalyak\\ngalyaks\\ngam\\ngamashes\\ngamb\\ngamba\\ngambade\\ngambades\\ngambado\\ngambadoes\\ngambados\\ngambas\\ngambe\\ngambes\\ngambeson\\ngambesons\\ngambia\\ngambias\\ngambier\\ngambiers\\ngambir\\ngambirs\\ngambit\\ngambits\\ngamble\\ngambled\\ngambler\\ngamblers\\ngambles\\ngambling\\ngamboge\\ngamboges\\ngambol\\ngamboled\\ngamboling\\ngambolled\\ngambolling\\ngambols\\ngambrel\\ngambrels\\ngambs\\ngambusia\\ngambusias\\ngame\\ngamecock\\ngamecocks\\ngamed\\ngamekeeper\\ngamekeepers\\ngamelan\\ngamelans\\ngamelike\\ngamely\\ngameness\\ngamenesses\\ngamer\\ngames\\ngamesome\\ngamest\\ngamester\\ngamesters\\ngamete\\ngametes\\ngametic\\ngamey\\ngamic\\ngamier\\ngamiest\\ngamily\\ngamin\\ngamine\\ngamines\\ngaminess\\ngaminesses\\ngaming\\ngamings\\ngamins\\ngamma\\ngammadia\\ngammas\\ngammed\\ngammer\\ngammers\\ngamming\\ngammon\\ngammoned\\ngammoner\\ngammoners\\ngammoning\\ngammons\\ngamodeme\\ngamodemes\\ngamp\\ngamps\\ngams\\ngamut\\ngamuts\\ngamy\\ngan\\ngander\\ngandered\\ngandering\\nganders\\ngane\\nganef\\nganefs\\nganev\\nganevs\\ngang\\nganged\\nganger\\ngangers\\nganging\\ngangland\\nganglands\\nganglia\\nganglial\\ngangliar\\nganglier\\ngangliest\\ngangling\\nganglion\\nganglionic\\nganglions\\ngangly\\ngangplank\\ngangplanks\\ngangplow\\ngangplows\\ngangrel\\ngangrels\\ngangrene\\ngangrened\\ngangrenes\\ngangrening\\ngangrenous\\ngangs\\ngangster\\ngangsters\\ngangue\\ngangues\\ngangway\\ngangways\\nganister\\nganisters\\nganja\\nganjas\\ngannet\\ngannets\\nganof\\nganofs\\nganoid\\nganoids\\ngantlet\\ngantleted\\ngantleting\\ngantlets\\ngantline\\ngantlines\\ngantlope\\ngantlopes\\ngantries\\ngantry\\nganymede\\nganymedes\\ngaol\\ngaoled\\ngaoler\\ngaolers\\ngaoling\\ngaols\\ngap\\ngape\\ngaped\\ngaper\\ngapers\\ngapes\\ngapeseed\\ngapeseeds\\ngapeworm\\ngapeworms\\ngaping\\ngapingly\\ngaposis\\ngaposises\\ngapped\\ngappier\\ngappiest\\ngapping\\ngappy\\ngaps\\ngapy\\ngar\\ngarage\\ngaraged\\ngarages\\ngaraging\\ngarb\\ngarbage\\ngarbages\\ngarbanzo\\ngarbanzos\\ngarbed\\ngarbing\\ngarble\\ngarbled\\ngarbler\\ngarblers\\ngarbles\\ngarbless\\ngarbling\\ngarboard\\ngarboards\\ngarboil\\ngarboils\\ngarbs\\ngarcon\\ngarcons\\ngardant\\ngarden\\ngardened\\ngardener\\ngardeners\\ngardenia\\ngardenias\\ngardening\\ngardens\\ngardyloo\\ngarfish\\ngarfishes\\ngarganey\\ngarganeys\\ngargantuan\\ngarget\\ngargets\\ngargety\\ngargle\\ngargled\\ngargler\\ngarglers\\ngargles\\ngargling\\ngargoyle\\ngargoyles\\ngarish\\ngarishly\\ngarland\\ngarlanded\\ngarlanding\\ngarlands\\ngarlic\\ngarlicky\\ngarlics\\ngarment\\ngarmented\\ngarmenting\\ngarments\\ngarner\\ngarnered\\ngarnering\\ngarners\\ngarnet\\ngarnets\\ngarnish\\ngarnished\\ngarnishee\\ngarnisheed\\ngarnishees\\ngarnisheing\\ngarnishes\\ngarnishing\\ngarnishment\\ngarnishments\\ngarote\\ngaroted\\ngarotes\\ngaroting\\ngarotte\\ngarotted\\ngarotter\\ngarotters\\ngarottes\\ngarotting\\ngarpike\\ngarpikes\\ngarred\\ngarret\\ngarrets\\ngarring\\ngarrison\\ngarrisoned\\ngarrisoning\\ngarrisons\\ngarron\\ngarrons\\ngarrote\\ngarroted\\ngarroter\\ngarroters\\ngarrotes\\ngarroting\\ngarrotte\\ngarrotted\\ngarrottes\\ngarrotting\\ngarrulities\\ngarrulity\\ngarrulous\\ngarrulously\\ngarrulousness\\ngarrulousnesses\\ngars\\ngarter\\ngartered\\ngartering\\ngarters\\ngarth\\ngarths\\ngarvey\\ngarveys\\ngas\\ngasalier\\ngasaliers\\ngasbag\\ngasbags\\ngascon\\ngascons\\ngaselier\\ngaseliers\\ngaseous\\ngases\\ngash\\ngashed\\ngasher\\ngashes\\ngashest\\ngashing\\ngashouse\\ngashouses\\ngasified\\ngasifier\\ngasifiers\\ngasifies\\ngasiform\\ngasify\\ngasifying\\ngasket\\ngaskets\\ngaskin\\ngasking\\ngaskings\\ngaskins\\ngasless\\ngaslight\\ngaslights\\ngaslit\\ngasman\\ngasmen\\ngasogene\\ngasogenes\\ngasolene\\ngasolenes\\ngasolier\\ngasoliers\\ngasoline\\ngasolines\\ngasp\\ngasped\\ngasper\\ngaspers\\ngasping\\ngasps\\ngassed\\ngasser\\ngassers\\ngasses\\ngassier\\ngassiest\\ngassing\\ngassings\\ngassy\\ngast\\ngasted\\ngastight\\ngasting\\ngastness\\ngastnesses\\ngastraea\\ngastraeas\\ngastral\\ngastrea\\ngastreas\\ngastric\\ngastrin\\ngastrins\\ngastronomic\\ngastronomical\\ngastronomies\\ngastronomy\\ngastrula\\ngastrulae\\ngastrulas\\ngasts\\ngasworks\\ngat\\ngate\\ngated\\ngatefold\\ngatefolds\\ngatekeeper\\ngatekeepers\\ngateless\\ngatelike\\ngateman\\ngatemen\\ngatepost\\ngateposts\\ngates\\ngateway\\ngateways\\ngather\\ngathered\\ngatherer\\ngatherers\\ngathering\\ngatherings\\ngathers\\ngating\\ngats\\ngauche\\ngauchely\\ngaucher\\ngauchest\\ngaucho\\ngauchos\\ngaud\\ngauderies\\ngaudery\\ngaudier\\ngaudies\\ngaudiest\\ngaudily\\ngaudiness\\ngaudinesses\\ngauds\\ngaudy\\ngauffer\\ngauffered\\ngauffering\\ngauffers\\ngauge\\ngauged\\ngauger\\ngaugers\\ngauges\\ngauging\\ngault\\ngaults\\ngaum\\ngaumed\\ngauming\\ngaums\\ngaun\\ngaunt\\ngaunter\\ngauntest\\ngauntlet\\ngauntleted\\ngauntleting\\ngauntlets\\ngauntly\\ngauntness\\ngauntnesses\\ngauntries\\ngauntry\\ngaur\\ngaurs\\ngauss\\ngausses\\ngauze\\ngauzes\\ngauzier\\ngauziest\\ngauzy\\ngavage\\ngavages\\ngave\\ngavel\\ngaveled\\ngaveling\\ngavelled\\ngavelling\\ngavelock\\ngavelocks\\ngavels\\ngavial\\ngavials\\ngavot\\ngavots\\ngavotte\\ngavotted\\ngavottes\\ngavotting\\ngawk\\ngawked\\ngawker\\ngawkers\\ngawkier\\ngawkies\\ngawkiest\\ngawkily\\ngawking\\ngawkish\\ngawks\\ngawky\\ngawsie\\ngawsy\\ngay\\ngayal\\ngayals\\ngayer\\ngayest\\ngayeties\\ngayety\\ngayly\\ngayness\\ngaynesses\\ngays\\ngaywing\\ngaywings\\ngazabo\\ngazaboes\\ngazabos\\ngaze\\ngazebo\\ngazeboes\\ngazebos\\ngazed\\ngazelle\\ngazelles\\ngazer\\ngazers\\ngazes\\ngazette\\ngazetted\\ngazetteer\\ngazetteers\\ngazettes\\ngazetting\\ngazing\\ngazogene\\ngazogenes\\ngazpacho\\ngazpachos\\ngear\\ngearbox\\ngearboxes\\ngearcase\\ngearcases\\ngeared\\ngearing\\ngearings\\ngearless\\ngears\\ngearshift\\ngearshifts\\ngeck\\ngecked\\ngecking\\ngecko\\ngeckoes\\ngeckos\\ngecks\\nged\\ngeds\\ngee\\ngeed\\ngeegaw\\ngeegaws\\ngeeing\\ngeek\\ngeeks\\ngeepound\\ngeepounds\\ngees\\ngeese\\ngeest\\ngeests\\ngeezer\\ngeezers\\ngeisha\\ngeishas\\ngel\\ngelable\\ngelada\\ngeladas\\ngelant\\ngelants\\ngelate\\ngelated\\ngelates\\ngelatin\\ngelatine\\ngelatines\\ngelating\\ngelatinous\\ngelatins\\ngelation\\ngelations\\ngeld\\ngelded\\ngelder\\ngelders\\ngelding\\ngeldings\\ngelds\\ngelee\\ngelees\\ngelid\\ngelidities\\ngelidity\\ngelidly\\ngellant\\ngellants\\ngelled\\ngelling\\ngels\\ngelsemia\\ngelt\\ngelts\\ngem\\ngeminal\\ngeminate\\ngeminated\\ngeminates\\ngeminating\\ngemlike\\ngemma\\ngemmae\\ngemmate\\ngemmated\\ngemmates\\ngemmating\\ngemmed\\ngemmier\\ngemmiest\\ngemmily\\ngemming\\ngemmule\\ngemmules\\ngemmy\\ngemologies\\ngemology\\ngemot\\ngemote\\ngemotes\\ngemots\\ngems\\ngemsbok\\ngemsboks\\ngemsbuck\\ngemsbucks\\ngemstone\\ngemstones\\ngendarme\\ngendarmes\\ngender\\ngendered\\ngendering\\ngenders\\ngene\\ngeneological\\ngeneologically\\ngeneologist\\ngeneologists\\ngeneology\\ngenera\\ngeneral\\ngeneralities\\ngenerality\\ngeneralizability\\ngeneralization\\ngeneralizations\\ngeneralize\\ngeneralized\\ngeneralizes\\ngeneralizing\\ngenerally\\ngenerals\\ngenerate\\ngenerated\\ngenerates\\ngenerating\\ngeneration\\ngenerations\\ngenerative\\ngenerator\\ngenerators\\ngeneric\\ngenerics\\ngenerosities\\ngenerosity\\ngenerous\\ngenerously\\ngenerousness\\ngenerousnesses\\ngenes\\ngeneses\\ngenesis\\ngenet\\ngenetic\\ngenetically\\ngeneticist\\ngeneticists\\ngenetics\\ngenets\\ngenette\\ngenettes\\ngeneva\\ngenevas\\ngenial\\ngenialities\\ngeniality\\ngenially\\ngenic\\ngenie\\ngenies\\ngenii\\ngenip\\ngenipap\\ngenipaps\\ngenips\\ngenital\\ngenitalia\\ngenitally\\ngenitals\\ngenitive\\ngenitives\\ngenitor\\ngenitors\\ngenitourinary\\ngeniture\\ngenitures\\ngenius\\ngeniuses\\ngenoa\\ngenoas\\ngenocide\\ngenocides\\ngenom\\ngenome\\ngenomes\\ngenomic\\ngenoms\\ngenotype\\ngenotypes\\ngenre\\ngenres\\ngenro\\ngenros\\ngens\\ngenseng\\ngensengs\\ngent\\ngenteel\\ngenteeler\\ngenteelest\\ngentes\\ngentian\\ngentians\\ngentil\\ngentile\\ngentiles\\ngentilities\\ngentility\\ngentle\\ngentled\\ngentlefolk\\ngentleman\\ngentlemen\\ngentleness\\ngentlenesses\\ngentler\\ngentles\\ngentlest\\ngentlewoman\\ngentlewomen\\ngentling\\ngently\\ngentrice\\ngentrices\\ngentries\\ngentry\\ngents\\ngenu\\ngenua\\ngenuflect\\ngenuflected\\ngenuflecting\\ngenuflection\\ngenuflections\\ngenuflects\\ngenuine\\ngenuinely\\ngenuineness\\ngenuinenesses\\ngenus\\ngenuses\\ngeode\\ngeodes\\ngeodesic\\ngeodesics\\ngeodesies\\ngeodesy\\ngeodetic\\ngeodic\\ngeoduck\\ngeoducks\\ngeognosies\\ngeognosy\\ngeographer\\ngeographers\\ngeographic\\ngeographical\\ngeographically\\ngeographies\\ngeography\\ngeoid\\ngeoidal\\ngeoids\\ngeologer\\ngeologers\\ngeologic\\ngeological\\ngeologies\\ngeologist\\ngeologists\\ngeology\\ngeomancies\\ngeomancy\\ngeometer\\ngeometers\\ngeometric\\ngeometrical\\ngeometries\\ngeometry\\ngeophagies\\ngeophagy\\ngeophone\\ngeophones\\ngeophysical\\ngeophysicist\\ngeophysicists\\ngeophysics\\ngeophyte\\ngeophytes\\ngeoponic\\ngeorgic\\ngeorgics\\ngeotaxes\\ngeotaxis\\ngeothermal\\ngeothermic\\ngerah\\ngerahs\\ngeranial\\ngeranials\\ngeraniol\\ngeraniols\\ngeranium\\ngeraniums\\ngerardia\\ngerardias\\ngerbera\\ngerberas\\ngerbil\\ngerbille\\ngerbilles\\ngerbils\\ngerent\\ngerents\\ngerenuk\\ngerenuks\\ngeriatric\\ngeriatrics\\ngerm\\ngerman\\ngermane\\ngermanic\\ngermanium\\ngermaniums\\ngermans\\ngermen\\ngermens\\ngermfree\\ngermicidal\\ngermicide\\ngermicides\\ngermier\\ngermiest\\ngermina\\ngerminal\\ngerminate\\ngerminated\\ngerminates\\ngerminating\\ngermination\\ngerminations\\ngerms\\ngermy\\ngerontic\\ngerrymander\\ngerrymandered\\ngerrymandering\\ngerrymanders\\ngerund\\ngerunds\\ngesso\\ngessoes\\ngest\\ngestalt\\ngestalten\\ngestalts\\ngestapo\\ngestapos\\ngestate\\ngestated\\ngestates\\ngestating\\ngeste\\ngestes\\ngestic\\ngestical\\ngests\\ngestural\\ngesture\\ngestured\\ngesturer\\ngesturers\\ngestures\\ngesturing\\ngesundheit\\nget\\ngetable\\ngetaway\\ngetaways\\ngets\\ngettable\\ngetter\\ngettered\\ngettering\\ngetters\\ngetting\\ngetup\\ngetups\\ngeum\\ngeums\\ngewgaw\\ngewgaws\\ngey\\ngeyser\\ngeysers\\ngharri\\ngharries\\ngharris\\ngharry\\nghast\\nghastful\\nghastlier\\nghastliest\\nghastly\\nghat\\nghats\\nghaut\\nghauts\\nghazi\\nghazies\\nghazis\\nghee\\nghees\\ngherao\\ngheraoed\\ngheraoes\\ngheraoing\\ngherkin\\ngherkins\\nghetto\\nghettoed\\nghettoes\\nghettoing\\nghettos\\nghi\\nghibli\\nghiblis\\nghillie\\nghillies\\nghis\\nghost\\nghosted\\nghostier\\nghostiest\\nghosting\\nghostlier\\nghostliest\\nghostly\\nghosts\\nghostwrite\\nghostwriter\\nghostwriters\\nghostwrites\\nghostwritten\\nghostwrote\\nghosty\\nghoul\\nghoulish\\nghouls\\nghyll\\nghylls\\ngiant\\ngiantess\\ngiantesses\\ngiantism\\ngiantisms\\ngiants\\ngiaour\\ngiaours\\ngib\\ngibbed\\ngibber\\ngibbered\\ngibbering\\ngibberish\\ngibberishes\\ngibbers\\ngibbet\\ngibbeted\\ngibbeting\\ngibbets\\ngibbetted\\ngibbetting\\ngibbing\\ngibbon\\ngibbons\\ngibbose\\ngibbous\\ngibbsite\\ngibbsites\\ngibe\\ngibed\\ngiber\\ngibers\\ngibes\\ngibing\\ngibingly\\ngiblet\\ngiblets\\ngibs\\ngid\\ngiddap\\ngiddied\\ngiddier\\ngiddies\\ngiddiest\\ngiddily\\ngiddiness\\ngiddinesses\\ngiddy\\ngiddying\\ngids\\ngie\\ngied\\ngieing\\ngien\\ngies\\ngift\\ngifted\\ngiftedly\\ngifting\\ngiftless\\ngifts\\ngig\\ngiga\\ngigabit\\ngigabits\\ngigantic\\ngigas\\ngigaton\\ngigatons\\ngigawatt\\ngigawatts\\ngigged\\ngigging\\ngiggle\\ngiggled\\ngiggler\\ngigglers\\ngiggles\\ngigglier\\ngiggliest\\ngiggling\\ngiggly\\ngighe\\ngiglet\\ngiglets\\ngiglot\\ngiglots\\ngigolo\\ngigolos\\ngigot\\ngigots\\ngigs\\ngigue\\ngigues\\ngilbert\\ngilberts\\ngild\\ngilded\\ngilder\\ngilders\\ngildhall\\ngildhalls\\ngilding\\ngildings\\ngilds\\ngill\\ngilled\\ngiller\\ngillers\\ngillie\\ngillied\\ngillies\\ngilling\\ngillnet\\ngillnets\\ngillnetted\\ngillnetting\\ngills\\ngilly\\ngillying\\ngilt\\ngilthead\\ngiltheads\\ngilts\\ngimbal\\ngimbaled\\ngimbaling\\ngimballed\\ngimballing\\ngimbals\\ngimcrack\\ngimcracks\\ngimel\\ngimels\\ngimlet\\ngimleted\\ngimleting\\ngimlets\\ngimmal\\ngimmals\\ngimmick\\ngimmicked\\ngimmicking\\ngimmicks\\ngimmicky\\ngimp\\ngimped\\ngimpier\\ngimpiest\\ngimping\\ngimps\\ngimpy\\ngin\\ngingal\\ngingall\\ngingalls\\ngingals\\ngingeley\\ngingeleys\\ngingeli\\ngingelies\\ngingelis\\ngingellies\\ngingelly\\ngingely\\nginger\\ngingerbread\\ngingerbreads\\ngingered\\ngingering\\ngingerly\\ngingers\\ngingery\\ngingham\\nginghams\\ngingili\\ngingilis\\ngingiva\\ngingivae\\ngingival\\ngingivitis\\ngingivitises\\ngingko\\ngingkoes\\ngink\\nginkgo\\nginkgoes\\nginks\\nginned\\nginner\\nginners\\nginnier\\nginniest\\nginning\\nginnings\\nginny\\ngins\\nginseng\\nginsengs\\ngip\\ngipon\\ngipons\\ngipped\\ngipper\\ngippers\\ngipping\\ngips\\ngipsied\\ngipsies\\ngipsy\\ngipsying\\ngiraffe\\ngiraffes\\ngirasol\\ngirasole\\ngirasoles\\ngirasols\\ngird\\ngirded\\ngirder\\ngirders\\ngirding\\ngirdle\\ngirdled\\ngirdler\\ngirdlers\\ngirdles\\ngirdling\\ngirds\\ngirl\\ngirlhood\\ngirlhoods\\ngirlie\\ngirlies\\ngirlish\\ngirls\\ngirly\\ngirn\\ngirned\\ngirning\\ngirns\\ngiro\\ngiron\\ngirons\\ngiros\\ngirosol\\ngirosols\\ngirsh\\ngirshes\\ngirt\\ngirted\\ngirth\\ngirthed\\ngirthing\\ngirths\\ngirting\\ngirts\\ngisarme\\ngisarmes\\ngismo\\ngismos\\ngist\\ngists\\ngit\\ngitano\\ngitanos\\ngittern\\ngitterns\\ngive\\ngiveable\\ngiveaway\\ngiveaways\\ngiven\\ngivens\\ngiver\\ngivers\\ngives\\ngiving\\ngizmo\\ngizmos\\ngizzard\\ngizzards\\ngjetost\\ngjetosts\\nglabella\\nglabellae\\nglabrate\\nglabrous\\nglace\\nglaceed\\nglaceing\\nglaces\\nglacial\\nglacially\\nglaciate\\nglaciated\\nglaciates\\nglaciating\\nglacier\\nglaciers\\nglacis\\nglacises\\nglad\\ngladded\\ngladden\\ngladdened\\ngladdening\\ngladdens\\ngladder\\ngladdest\\ngladding\\nglade\\nglades\\ngladiate\\ngladiator\\ngladiatorial\\ngladiators\\ngladier\\ngladiest\\ngladiola\\ngladiolas\\ngladioli\\ngladiolus\\ngladlier\\ngladliest\\ngladly\\ngladness\\ngladnesses\\nglads\\ngladsome\\ngladsomer\\ngladsomest\\nglady\\nglaiket\\nglaikit\\nglair\\nglaire\\nglaired\\nglaires\\nglairier\\nglairiest\\nglairing\\nglairs\\nglairy\\nglaive\\nglaived\\nglaives\\nglamor\\nglamorize\\nglamorized\\nglamorizes\\nglamorizing\\nglamorous\\nglamors\\nglamour\\nglamoured\\nglamouring\\nglamours\\nglance\\nglanced\\nglances\\nglancing\\ngland\\nglanders\\nglandes\\nglands\\nglandular\\nglandule\\nglandules\\nglans\\nglare\\nglared\\nglares\\nglarier\\nglariest\\nglaring\\nglaringly\\nglary\\nglass\\nglassblower\\nglassblowers\\nglassblowing\\nglassblowings\\nglassed\\nglasses\\nglassful\\nglassfuls\\nglassie\\nglassier\\nglassies\\nglassiest\\nglassily\\nglassine\\nglassines\\nglassing\\nglassman\\nglassmen\\nglassware\\nglasswares\\nglassy\\nglaucoma\\nglaucomas\\nglaucous\\nglaze\\nglazed\\nglazer\\nglazers\\nglazes\\nglazier\\nglazieries\\nglaziers\\nglaziery\\nglaziest\\nglazing\\nglazings\\nglazy\\ngleam\\ngleamed\\ngleamier\\ngleamiest\\ngleaming\\ngleams\\ngleamy\\nglean\\ngleanable\\ngleaned\\ngleaner\\ngleaners\\ngleaning\\ngleanings\\ngleans\\ngleba\\nglebae\\nglebe\\nglebes\\ngled\\nglede\\ngledes\\ngleds\\nglee\\ngleed\\ngleeds\\ngleeful\\ngleek\\ngleeked\\ngleeking\\ngleeks\\ngleeman\\ngleemen\\nglees\\ngleesome\\ngleet\\ngleeted\\ngleetier\\ngleetiest\\ngleeting\\ngleets\\ngleety\\ngleg\\nglegly\\nglegness\\nglegnesses\\nglen\\nglenlike\\nglenoid\\nglens\\ngley\\ngleys\\ngliadin\\ngliadine\\ngliadines\\ngliadins\\nglial\\nglib\\nglibber\\nglibbest\\nglibly\\nglibness\\nglibnesses\\nglide\\nglided\\nglider\\ngliders\\nglides\\ngliding\\ngliff\\ngliffs\\nglim\\nglime\\nglimed\\nglimes\\ngliming\\nglimmer\\nglimmered\\nglimmering\\nglimmers\\nglimpse\\nglimpsed\\nglimpser\\nglimpsers\\nglimpses\\nglimpsing\\nglims\\nglint\\nglinted\\nglinting\\nglints\\nglioma\\ngliomas\\ngliomata\\nglissade\\nglissaded\\nglissades\\nglissading\\nglisten\\nglistened\\nglistening\\nglistens\\nglister\\nglistered\\nglistering\\nglisters\\nglitch\\nglitches\\nglitter\\nglittered\\nglittering\\nglitters\\nglittery\\ngloam\\ngloaming\\ngloamings\\ngloams\\ngloat\\ngloated\\ngloater\\ngloaters\\ngloating\\ngloats\\nglob\\nglobal\\nglobally\\nglobate\\nglobated\\nglobe\\nglobed\\nglobes\\nglobin\\nglobing\\nglobins\\ngloboid\\ngloboids\\nglobose\\nglobous\\nglobs\\nglobular\\nglobule\\nglobules\\nglobulin\\nglobulins\\nglochid\\nglochids\\nglockenspiel\\nglockenspiels\\nglogg\\ngloggs\\nglom\\nglomera\\nglommed\\nglomming\\ngloms\\nglomus\\ngloom\\ngloomed\\ngloomful\\ngloomier\\ngloomiest\\ngloomily\\ngloominess\\ngloominesses\\nglooming\\ngloomings\\nglooms\\ngloomy\\nglop\\nglops\\ngloria\\nglorias\\ngloried\\nglories\\nglorification\\nglorifications\\nglorified\\nglorifies\\nglorify\\nglorifying\\ngloriole\\nglorioles\\nglorious\\ngloriously\\nglory\\nglorying\\ngloss\\nglossa\\nglossae\\nglossal\\nglossarial\\nglossaries\\nglossary\\nglossas\\nglossed\\nglosseme\\nglossemes\\nglosser\\nglossers\\nglosses\\nglossier\\nglossies\\nglossiest\\nglossily\\nglossina\\nglossinas\\nglossiness\\nglossinesses\\nglossing\\nglossy\\nglost\\nglosts\\nglottal\\nglottic\\nglottides\\nglottis\\nglottises\\nglout\\nglouted\\nglouting\\nglouts\\nglove\\ngloved\\nglover\\nglovers\\ngloves\\ngloving\\nglow\\nglowed\\nglower\\nglowered\\nglowering\\nglowers\\nglowflies\\nglowfly\\nglowing\\nglows\\nglowworm\\nglowworms\\ngloxinia\\ngloxinias\\ngloze\\nglozed\\nglozes\\nglozing\\nglucagon\\nglucagons\\nglucinic\\nglucinum\\nglucinums\\nglucose\\nglucoses\\nglucosic\\nglue\\nglued\\nglueing\\ngluelike\\ngluer\\ngluers\\nglues\\ngluey\\ngluier\\ngluiest\\ngluily\\ngluing\\nglum\\nglume\\nglumes\\nglumly\\nglummer\\nglummest\\nglumness\\nglumnesses\\nglumpier\\nglumpiest\\nglumpily\\nglumpy\\nglunch\\nglunched\\nglunches\\nglunching\\nglut\\ngluteal\\nglutei\\nglutelin\\nglutelins\\ngluten\\nglutens\\ngluteus\\nglutinous\\ngluts\\nglutted\\nglutting\\nglutton\\ngluttonies\\ngluttonous\\ngluttons\\ngluttony\\nglycan\\nglycans\\nglyceric\\nglycerin\\nglycerine\\nglycerines\\nglycerins\\nglycerol\\nglycerols\\nglyceryl\\nglyceryls\\nglycin\\nglycine\\nglycines\\nglycins\\nglycogen\\nglycogens\\nglycol\\nglycolic\\nglycols\\nglyconic\\nglyconics\\nglycosyl\\nglycosyls\\nglycyl\\nglycyls\\nglyph\\nglyphic\\nglyphs\\nglyptic\\nglyptics\\ngnar\\ngnarl\\ngnarled\\ngnarlier\\ngnarliest\\ngnarling\\ngnarls\\ngnarly\\ngnarr\\ngnarred\\ngnarring\\ngnarrs\\ngnars\\ngnash\\ngnashed\\ngnashes\\ngnashing\\ngnat\\ngnathal\\ngnathic\\ngnathion\\ngnathions\\ngnathite\\ngnathites\\ngnatlike\\ngnats\\ngnattier\\ngnattiest\\ngnatty\\ngnaw\\ngnawable\\ngnawed\\ngnawer\\ngnawers\\ngnawing\\ngnawings\\ngnawn\\ngnaws\\ngneiss\\ngneisses\\ngneissic\\ngnocchi\\ngnome\\ngnomes\\ngnomic\\ngnomical\\ngnomish\\ngnomist\\ngnomists\\ngnomon\\ngnomonic\\ngnomons\\ngnoses\\ngnosis\\ngnostic\\ngnu\\ngnus\\ngo\\ngoa\\ngoad\\ngoaded\\ngoading\\ngoadlike\\ngoads\\ngoal\\ngoaled\\ngoalie\\ngoalies\\ngoaling\\ngoalkeeper\\ngoalkeepers\\ngoalless\\ngoalpost\\ngoalposts\\ngoals\\ngoas\\ngoat\\ngoatee\\ngoateed\\ngoatees\\ngoatfish\\ngoatfishes\\ngoatherd\\ngoatherds\\ngoatish\\ngoatlike\\ngoats\\ngoatskin\\ngoatskins\\ngob\\ngoban\\ngobang\\ngobangs\\ngobans\\ngobbed\\ngobbet\\ngobbets\\ngobbing\\ngobble\\ngobbled\\ngobbledegook\\ngobbledegooks\\ngobbledygook\\ngobbledygooks\\ngobbler\\ngobblers\\ngobbles\\ngobbling\\ngobies\\ngobioid\\ngobioids\\ngoblet\\ngoblets\\ngoblin\\ngoblins\\ngobo\\ngoboes\\ngobonee\\ngobony\\ngobos\\ngobs\\ngoby\\ngod\\ngodchild\\ngodchildren\\ngoddam\\ngoddammed\\ngoddamming\\ngoddamn\\ngoddamned\\ngoddamning\\ngoddamns\\ngoddams\\ngoddaughter\\ngoddaughters\\ngodded\\ngoddess\\ngoddesses\\ngodding\\ngodfather\\ngodfathers\\ngodhead\\ngodheads\\ngodhood\\ngodhoods\\ngodless\\ngodlessness\\ngodlessnesses\\ngodlier\\ngodliest\\ngodlike\\ngodlily\\ngodling\\ngodlings\\ngodly\\ngodmother\\ngodmothers\\ngodown\\ngodowns\\ngodparent\\ngodparents\\ngodroon\\ngodroons\\ngods\\ngodsend\\ngodsends\\ngodship\\ngodships\\ngodson\\ngodsons\\ngodwit\\ngodwits\\ngoer\\ngoers\\ngoes\\ngoethite\\ngoethites\\ngoffer\\ngoffered\\ngoffering\\ngoffers\\ngoggle\\ngoggled\\ngoggler\\ngogglers\\ngoggles\\ngogglier\\ngoggliest\\ngoggling\\ngoggly\\ngoglet\\ngoglets\\ngogo\\ngogos\\ngoing\\ngoings\\ngoiter\\ngoiters\\ngoitre\\ngoitres\\ngoitrous\\ngolconda\\ngolcondas\\ngold\\ngoldarn\\ngoldarns\\ngoldbrick\\ngoldbricked\\ngoldbricking\\ngoldbricks\\ngoldbug\\ngoldbugs\\ngolden\\ngoldener\\ngoldenest\\ngoldenly\\ngoldenrod\\ngolder\\ngoldest\\ngoldeye\\ngoldeyes\\ngoldfinch\\ngoldfinches\\ngoldfish\\ngoldfishes\\ngolds\\ngoldsmith\\ngoldstein\\ngoldurn\\ngoldurns\\ngolem\\ngolems\\ngolf\\ngolfed\\ngolfer\\ngolfers\\ngolfing\\ngolfings\\ngolfs\\ngolgotha\\ngolgothas\\ngoliard\\ngoliards\\ngolliwog\\ngolliwogs\\ngolly\\ngolosh\\ngoloshes\\ngombo\\ngombos\\ngombroon\\ngombroons\\ngomeral\\ngomerals\\ngomerel\\ngomerels\\ngomeril\\ngomerils\\ngomuti\\ngomutis\\ngonad\\ngonadal\\ngonadial\\ngonadic\\ngonads\\ngondola\\ngondolas\\ngondolier\\ngondoliers\\ngone\\ngoneness\\ngonenesses\\ngoner\\ngoners\\ngonfalon\\ngonfalons\\ngonfanon\\ngonfanons\\ngong\\ngonged\\ngonging\\ngonglike\\ngongs\\ngonia\\ngonidia\\ngonidial\\ngonidic\\ngonidium\\ngonif\\ngonifs\\ngonion\\ngonium\\ngonocyte\\ngonocytes\\ngonof\\ngonofs\\ngonoph\\ngonophs\\ngonopore\\ngonopores\\ngonorrhea\\ngonorrheal\\ngonorrheas\\ngoo\\ngoober\\ngoobers\\ngood\\ngoodby\\ngoodbye\\ngoodbyes\\ngoodbys\\ngoodies\\ngoodish\\ngoodlier\\ngoodliest\\ngoodly\\ngoodman\\ngoodmen\\ngoodness\\ngoodnesses\\ngoods\\ngoodwife\\ngoodwill\\ngoodwills\\ngoodwives\\ngoody\\ngooey\\ngoof\\ngoofball\\ngoofballs\\ngoofed\\ngoofier\\ngoofiest\\ngoofily\\ngoofiness\\ngoofinesses\\ngoofing\\ngoofs\\ngoofy\\ngooglies\\ngoogly\\ngoogol\\ngoogolplex\\ngoogolplexes\\ngoogols\\ngooier\\ngooiest\\ngook\\ngooks\\ngooky\\ngoon\\ngooney\\ngooneys\\ngoonie\\ngoonies\\ngoons\\ngoony\\ngoop\\ngoops\\ngooral\\ngoorals\\ngoos\\ngoose\\ngooseberries\\ngooseberry\\ngoosed\\ngooseflesh\\ngoosefleshes\\ngooses\\ngoosey\\ngoosier\\ngoosiest\\ngoosing\\ngoosy\\ngopher\\ngophers\\ngor\\ngoral\\ngorals\\ngorbellies\\ngorbelly\\ngorblimy\\ngorcock\\ngorcocks\\ngore\\ngored\\ngores\\ngorge\\ngorged\\ngorgedly\\ngorgeous\\ngorger\\ngorgerin\\ngorgerins\\ngorgers\\ngorges\\ngorget\\ngorgeted\\ngorgets\\ngorging\\ngorgon\\ngorgons\\ngorhen\\ngorhens\\ngorier\\ngoriest\\ngorilla\\ngorillas\\ngorily\\ngoriness\\ngorinesses\\ngoring\\ngormand\\ngormands\\ngorse\\ngorses\\ngorsier\\ngorsiest\\ngorsy\\ngory\\ngosh\\ngoshawk\\ngoshawks\\ngosling\\ngoslings\\ngospel\\ngospeler\\ngospelers\\ngospels\\ngosport\\ngosports\\ngossamer\\ngossamers\\ngossan\\ngossans\\ngossip\\ngossiped\\ngossiper\\ngossipers\\ngossiping\\ngossipped\\ngossipping\\ngossipries\\ngossipry\\ngossips\\ngossipy\\ngossoon\\ngossoons\\ngossypol\\ngossypols\\ngot\\ngothic\\ngothics\\ngothite\\ngothites\\ngotten\\ngouache\\ngouaches\\ngouge\\ngouged\\ngouger\\ngougers\\ngouges\\ngouging\\ngoulash\\ngoulashes\\ngourami\\ngouramis\\ngourd\\ngourde\\ngourdes\\ngourds\\ngourmand\\ngourmands\\ngourmet\\ngourmets\\ngout\\ngoutier\\ngoutiest\\ngoutily\\ngouts\\ngouty\\ngovern\\ngoverned\\ngoverness\\ngovernesses\\ngoverning\\ngovernment\\ngovernmental\\ngovernments\\ngovernor\\ngovernors\\ngovernorship\\ngovernorships\\ngoverns\\ngowan\\ngowaned\\ngowans\\ngowany\\ngowd\\ngowds\\ngowk\\ngowks\\ngown\\ngowned\\ngowning\\ngowns\\ngownsman\\ngownsmen\\ngox\\ngoxes\\ngoy\\ngoyim\\ngoyish\\ngoys\\ngraal\\ngraals\\ngrab\\ngrabbed\\ngrabber\\ngrabbers\\ngrabbier\\ngrabbiest\\ngrabbing\\ngrabble\\ngrabbled\\ngrabbler\\ngrabblers\\ngrabbles\\ngrabbling\\ngrabby\\ngraben\\ngrabens\\ngrabs\\ngrace\\ngraced\\ngraceful\\ngracefuller\\ngracefullest\\ngracefully\\ngracefulness\\ngracefulnesses\\ngraceless\\ngraces\\ngracile\\ngraciles\\ngracilis\\ngracing\\ngracioso\\ngraciosos\\ngracious\\ngraciously\\ngraciousness\\ngraciousnesses\\ngrackle\\ngrackles\\ngrad\\ngradable\\ngradate\\ngradated\\ngradates\\ngradating\\ngrade\\ngraded\\ngrader\\ngraders\\ngrades\\ngradient\\ngradients\\ngradin\\ngradine\\ngradines\\ngrading\\ngradins\\ngrads\\ngradual\\ngradually\\ngraduals\\ngraduand\\ngraduands\\ngraduate\\ngraduated\\ngraduates\\ngraduating\\ngraduation\\ngraduations\\ngradus\\ngraduses\\ngraecize\\ngraecized\\ngraecizes\\ngraecizing\\ngraffiti\\ngraffito\\ngraft\\ngraftage\\ngraftages\\ngrafted\\ngrafter\\ngrafters\\ngrafting\\ngrafts\\ngraham\\ngrail\\ngrails\\ngrain\\ngrained\\ngrainer\\ngrainers\\ngrainfield\\ngrainfields\\ngrainier\\ngrainiest\\ngraining\\ngrains\\ngrainy\\ngram\\ngrama\\ngramaries\\ngramary\\ngramarye\\ngramaryes\\ngramas\\ngramercies\\ngramercy\\ngrammar\\ngrammarian\\ngrammarians\\ngrammars\\ngrammatical\\ngrammatically\\ngramme\\ngrammes\\ngramp\\ngramps\\ngrampus\\ngrampuses\\ngrams\\ngrana\\ngranaries\\ngranary\\ngrand\\ngrandad\\ngrandads\\ngrandam\\ngrandame\\ngrandames\\ngrandams\\ngrandchild\\ngrandchildren\\ngranddad\\ngranddads\\ngranddaughter\\ngranddaughters\\ngrandee\\ngrandees\\ngrander\\ngrandest\\ngrandeur\\ngrandeurs\\ngrandfather\\ngrandfathers\\ngrandiose\\ngrandiosely\\ngrandly\\ngrandma\\ngrandmas\\ngrandmother\\ngrandmothers\\ngrandness\\ngrandnesses\\ngrandpa\\ngrandparent\\ngrandparents\\ngrandpas\\ngrands\\ngrandsir\\ngrandsirs\\ngrandson\\ngrandsons\\ngrandstand\\ngrandstands\\ngrange\\ngranger\\ngrangers\\ngranges\\ngranite\\ngranites\\ngranitic\\ngrannie\\ngrannies\\ngranny\\ngrant\\ngranted\\ngrantee\\ngrantees\\ngranter\\ngranters\\ngranting\\ngrantor\\ngrantors\\ngrants\\ngranular\\ngranularities\\ngranularity\\ngranulate\\ngranulated\\ngranulates\\ngranulating\\ngranulation\\ngranulations\\ngranule\\ngranules\\ngranum\\ngrape\\ngraperies\\ngrapery\\ngrapes\\ngrapevine\\ngrapevines\\ngraph\\ngraphed\\ngrapheme\\ngraphemes\\ngraphic\\ngraphically\\ngraphics\\ngraphing\\ngraphite\\ngraphites\\ngraphs\\ngrapier\\ngrapiest\\ngraplin\\ngrapline\\ngraplines\\ngraplins\\ngrapnel\\ngrapnels\\ngrappa\\ngrappas\\ngrapple\\ngrappled\\ngrappler\\ngrapplers\\ngrapples\\ngrappling\\ngrapy\\ngrasp\\ngrasped\\ngrasper\\ngraspers\\ngrasping\\ngrasps\\ngrass\\ngrassed\\ngrasses\\ngrasshopper\\ngrasshoppers\\ngrassier\\ngrassiest\\ngrassily\\ngrassing\\ngrassland\\ngrasslands\\ngrassy\\ngrat\\ngrate\\ngrated\\ngrateful\\ngratefuller\\ngratefullest\\ngratefullies\\ngratefully\\ngratefulness\\ngratefulnesses\\ngrater\\ngraters\\ngrates\\ngratification\\ngratifications\\ngratified\\ngratifies\\ngratify\\ngratifying\\ngratin\\ngrating\\ngratings\\ngratins\\ngratis\\ngratitude\\ngratuities\\ngratuitous\\ngratuity\\ngraupel\\ngraupels\\ngravamen\\ngravamens\\ngravamina\\ngrave\\ngraved\\ngravel\\ngraveled\\ngraveling\\ngravelled\\ngravelling\\ngravelly\\ngravels\\ngravely\\ngraven\\ngraveness\\ngravenesses\\ngraver\\ngravers\\ngraves\\ngravest\\ngravestone\\ngravestones\\ngraveyard\\ngraveyards\\ngravid\\ngravida\\ngravidae\\ngravidas\\ngravidly\\ngravies\\ngraving\\ngravitate\\ngravitated\\ngravitates\\ngravitating\\ngravitation\\ngravitational\\ngravitationally\\ngravitations\\ngravitative\\ngravities\\ngraviton\\ngravitons\\ngravity\\ngravure\\ngravures\\ngravy\\ngray\\ngrayback\\ngraybacks\\ngrayed\\ngrayer\\ngrayest\\ngrayfish\\ngrayfishes\\ngraying\\ngrayish\\ngraylag\\ngraylags\\ngrayling\\ngraylings\\ngrayly\\ngrayness\\ngraynesses\\ngrayout\\ngrayouts\\ngrays\\ngrazable\\ngraze\\ngrazed\\ngrazer\\ngrazers\\ngrazes\\ngrazier\\ngraziers\\ngrazing\\ngrazings\\ngrazioso\\ngrease\\ngreased\\ngreaser\\ngreasers\\ngreases\\ngreasier\\ngreasiest\\ngreasily\\ngreasing\\ngreasy\\ngreat\\ngreaten\\ngreatened\\ngreatening\\ngreatens\\ngreater\\ngreatest\\ngreatly\\ngreatness\\ngreatnesses\\ngreats\\ngreave\\ngreaved\\ngreaves\\ngrebe\\ngrebes\\ngrecize\\ngrecized\\ngrecizes\\ngrecizing\\ngree\\ngreed\\ngreedier\\ngreediest\\ngreedily\\ngreediness\\ngreedinesses\\ngreeds\\ngreedy\\ngreegree\\ngreegrees\\ngreeing\\ngreek\\ngreen\\ngreenbug\\ngreenbugs\\ngreened\\ngreener\\ngreeneries\\ngreenery\\ngreenest\\ngreenflies\\ngreenfly\\ngreenhorn\\ngreenhorns\\ngreenhouse\\ngreenhouses\\ngreenier\\ngreeniest\\ngreening\\ngreenings\\ngreenish\\ngreenlet\\ngreenlets\\ngreenly\\ngreenness\\ngreennesses\\ngreens\\ngreenth\\ngreenths\\ngreeny\\ngrees\\ngreet\\ngreeted\\ngreeter\\ngreeters\\ngreeting\\ngreetings\\ngreets\\ngregarious\\ngregariously\\ngregariousness\\ngregariousnesses\\ngrego\\ngregos\\ngreige\\ngreiges\\ngreisen\\ngreisens\\ngremial\\ngremials\\ngremlin\\ngremlins\\ngremmie\\ngremmies\\ngremmy\\ngrenade\\ngrenades\\ngrew\\ngrewsome\\ngrewsomer\\ngrewsomest\\ngrey\\ngreyed\\ngreyer\\ngreyest\\ngreyhen\\ngreyhens\\ngreyhound\\ngreyhounds\\ngreying\\ngreyish\\ngreylag\\ngreylags\\ngreyly\\ngreyness\\ngreynesses\\ngreys\\ngribble\\ngribbles\\ngrid\\ngriddle\\ngriddled\\ngriddles\\ngriddling\\ngride\\ngrided\\ngrides\\ngriding\\ngridiron\\ngridirons\\ngrids\\ngrief\\ngriefs\\ngrievance\\ngrievances\\ngrievant\\ngrievants\\ngrieve\\ngrieved\\ngriever\\ngrievers\\ngrieves\\ngrieving\\ngrievous\\ngrievously\\ngriff\\ngriffe\\ngriffes\\ngriffin\\ngriffins\\ngriffon\\ngriffons\\ngriffs\\ngrift\\ngrifted\\ngrifter\\ngrifters\\ngrifting\\ngrifts\\ngrig\\ngrigri\\ngrigris\\ngrigs\\ngrill\\ngrillade\\ngrillades\\ngrillage\\ngrillages\\ngrille\\ngrilled\\ngriller\\ngrillers\\ngrilles\\ngrilling\\ngrills\\ngrillwork\\ngrillworks\\ngrilse\\ngrilses\\ngrim\\ngrimace\\ngrimaced\\ngrimacer\\ngrimacers\\ngrimaces\\ngrimacing\\ngrime\\ngrimed\\ngrimes\\ngrimier\\ngrimiest\\ngrimily\\ngriming\\ngrimly\\ngrimmer\\ngrimmest\\ngrimness\\ngrimnesses\\ngrimy\\ngrin\\ngrind\\ngrinded\\ngrinder\\ngrinderies\\ngrinders\\ngrindery\\ngrinding\\ngrinds\\ngrindstone\\ngrindstones\\ngringo\\ngringos\\ngrinned\\ngrinner\\ngrinners\\ngrinning\\ngrins\\ngrip\\ngripe\\ngriped\\ngriper\\ngripers\\ngripes\\ngripey\\ngripier\\ngripiest\\ngriping\\ngrippe\\ngripped\\ngripper\\ngrippers\\ngrippes\\ngrippier\\ngrippiest\\ngripping\\ngripple\\ngrippy\\ngrips\\ngripsack\\ngripsacks\\ngript\\ngripy\\ngriseous\\ngrisette\\ngrisettes\\ngriskin\\ngriskins\\ngrislier\\ngrisliest\\ngrisly\\ngrison\\ngrisons\\ngrist\\ngristle\\ngristles\\ngristlier\\ngristliest\\ngristly\\ngristmill\\ngristmills\\ngrists\\ngrit\\ngrith\\ngriths\\ngrits\\ngritted\\ngrittier\\ngrittiest\\ngrittily\\ngritting\\ngritty\\ngrivet\\ngrivets\\ngrizzle\\ngrizzled\\ngrizzler\\ngrizzlers\\ngrizzles\\ngrizzlier\\ngrizzlies\\ngrizzliest\\ngrizzling\\ngrizzly\\ngroan\\ngroaned\\ngroaner\\ngroaners\\ngroaning\\ngroans\\ngroat\\ngroats\\ngrocer\\ngroceries\\ngrocers\\ngrocery\\ngrog\\ngroggeries\\ngroggery\\ngroggier\\ngroggiest\\ngroggily\\ngrogginess\\ngrogginesses\\ngroggy\\ngrogram\\ngrograms\\ngrogs\\ngrogshop\\ngrogshops\\ngroin\\ngroined\\ngroining\\ngroins\\ngrommet\\ngrommets\\ngromwell\\ngromwells\\ngroom\\ngroomed\\ngroomer\\ngroomers\\ngrooming\\ngrooms\\ngroove\\ngrooved\\ngroover\\ngroovers\\ngrooves\\ngroovier\\ngrooviest\\ngrooving\\ngroovy\\ngrope\\ngroped\\ngroper\\ngropers\\ngropes\\ngroping\\ngrosbeak\\ngrosbeaks\\ngroschen\\ngross\\ngrossed\\ngrosser\\ngrossers\\ngrosses\\ngrossest\\ngrossing\\ngrossly\\ngrossness\\ngrossnesses\\ngrosz\\ngroszy\\ngrot\\ngrotesque\\ngrotesquely\\ngrots\\ngrotto\\ngrottoes\\ngrottos\\ngrouch\\ngrouched\\ngrouches\\ngrouchier\\ngrouchiest\\ngrouching\\ngrouchy\\nground\\ngrounded\\ngrounder\\ngrounders\\ngroundhog\\ngroundhogs\\ngrounding\\ngrounds\\ngroundwater\\ngroundwaters\\ngroundwork\\ngroundworks\\ngroup\\ngrouped\\ngrouper\\ngroupers\\ngroupie\\ngroupies\\ngrouping\\ngroupings\\ngroupoid\\ngroupoids\\ngroups\\ngrouse\\ngroused\\ngrouser\\ngrousers\\ngrouses\\ngrousing\\ngrout\\ngrouted\\ngrouter\\ngrouters\\ngroutier\\ngroutiest\\ngrouting\\ngrouts\\ngrouty\\ngrove\\ngroved\\ngrovel\\ngroveled\\ngroveler\\ngrovelers\\ngroveling\\ngrovelled\\ngrovelling\\ngrovels\\ngroves\\ngrow\\ngrowable\\ngrower\\ngrowers\\ngrowing\\ngrowl\\ngrowled\\ngrowler\\ngrowlers\\ngrowlier\\ngrowliest\\ngrowling\\ngrowls\\ngrowly\\ngrown\\ngrownup\\ngrownups\\ngrows\\ngrowth\\ngrowths\\ngroyne\\ngroynes\\ngrub\\ngrubbed\\ngrubber\\ngrubbers\\ngrubbier\\ngrubbiest\\ngrubbily\\ngrubbiness\\ngrubbinesses\\ngrubbing\\ngrubby\\ngrubs\\ngrubstake\\ngrubstakes\\ngrubworm\\ngrubworms\\ngrudge\\ngrudged\\ngrudger\\ngrudgers\\ngrudges\\ngrudging\\ngruel\\ngrueled\\ngrueler\\ngruelers\\ngrueling\\ngruelings\\ngruelled\\ngrueller\\ngruellers\\ngruelling\\ngruellings\\ngruels\\ngruesome\\ngruesomer\\ngruesomest\\ngruff\\ngruffed\\ngruffer\\ngruffest\\ngruffier\\ngruffiest\\ngruffily\\ngruffing\\ngruffish\\ngruffly\\ngruffs\\ngruffy\\ngrugru\\ngrugrus\\ngrum\\ngrumble\\ngrumbled\\ngrumbler\\ngrumblers\\ngrumbles\\ngrumbling\\ngrumbly\\ngrume\\ngrumes\\ngrummer\\ngrummest\\ngrummet\\ngrummets\\ngrumose\\ngrumous\\ngrump\\ngrumped\\ngrumphie\\ngrumphies\\ngrumphy\\ngrumpier\\ngrumpiest\\ngrumpily\\ngrumping\\ngrumpish\\ngrumps\\ngrumpy\\ngrunion\\ngrunions\\ngrunt\\ngrunted\\ngrunter\\ngrunters\\ngrunting\\ngruntle\\ngruntled\\ngruntles\\ngruntling\\ngrunts\\ngrushie\\ngrutch\\ngrutched\\ngrutches\\ngrutching\\ngrutten\\ngryphon\\ngryphons\\nguacharo\\nguacharoes\\nguacharos\\nguaco\\nguacos\\nguaiac\\nguaiacol\\nguaiacols\\nguaiacs\\nguaiacum\\nguaiacums\\nguaiocum\\nguaiocums\\nguan\\nguanaco\\nguanacos\\nguanase\\nguanases\\nguanidin\\nguanidins\\nguanin\\nguanine\\nguanines\\nguanins\\nguano\\nguanos\\nguans\\nguar\\nguarani\\nguaranies\\nguaranis\\nguarantee\\nguarantees\\nguarantied\\nguaranties\\nguarantor\\nguaranty\\nguarantying\\nguard\\nguardant\\nguardants\\nguarded\\nguarder\\nguarders\\nguardhouse\\nguardhouses\\nguardian\\nguardians\\nguardianship\\nguardianships\\nguarding\\nguardroom\\nguardrooms\\nguards\\nguars\\nguava\\nguavas\\nguayule\\nguayules\\ngubernatorial\\nguck\\ngucks\\ngude\\ngudes\\ngudgeon\\ngudgeoned\\ngudgeoning\\ngudgeons\\nguenon\\nguenons\\nguerdon\\nguerdoned\\nguerdoning\\nguerdons\\nguerilla\\nguerillas\\nguernsey\\nguernseys\\nguess\\nguessed\\nguesser\\nguessers\\nguesses\\nguessing\\nguest\\nguested\\nguesting\\nguests\\nguff\\nguffaw\\nguffawed\\nguffawing\\nguffaws\\nguffs\\nguggle\\nguggled\\nguggles\\nguggling\\nguglet\\nguglets\\nguid\\nguidable\\nguidance\\nguidances\\nguide\\nguidebook\\nguidebooks\\nguided\\nguideline\\nguidelines\\nguider\\nguiders\\nguides\\nguiding\\nguidon\\nguidons\\nguids\\nguild\\nguilder\\nguilders\\nguilds\\nguile\\nguiled\\nguileful\\nguileless\\nguilelessness\\nguilelessnesses\\nguiles\\nguiling\\nguillotine\\nguillotined\\nguillotines\\nguillotining\\nguilt\\nguiltier\\nguiltiest\\nguiltily\\nguiltiness\\nguiltinesses\\nguilts\\nguilty\\nguimpe\\nguimpes\\nguinea\\nguineas\\nguipure\\nguipures\\nguiro\\nguisard\\nguisards\\nguise\\nguised\\nguises\\nguising\\nguitar\\nguitars\\ngul\\ngular\\ngulch\\ngulches\\ngulden\\nguldens\\ngules\\ngulf\\ngulfed\\ngulfier\\ngulfiest\\ngulfing\\ngulflike\\ngulfs\\ngulfweed\\ngulfweeds\\ngulfy\\ngull\\ngullable\\ngullably\\ngulled\\ngullet\\ngullets\\ngulley\\ngulleys\\ngullible\\ngullibly\\ngullied\\ngullies\\ngulling\\ngulls\\ngully\\ngullying\\ngulosities\\ngulosity\\ngulp\\ngulped\\ngulper\\ngulpers\\ngulpier\\ngulpiest\\ngulping\\ngulps\\ngulpy\\nguls\\ngum\\ngumbo\\ngumboil\\ngumboils\\ngumbos\\ngumbotil\\ngumbotils\\ngumdrop\\ngumdrops\\ngumless\\ngumlike\\ngumma\\ngummas\\ngummata\\ngummed\\ngummer\\ngummers\\ngummier\\ngummiest\\ngumming\\ngummite\\ngummites\\ngummose\\ngummoses\\ngummosis\\ngummous\\ngummy\\ngumption\\ngumptions\\ngums\\ngumshoe\\ngumshoed\\ngumshoeing\\ngumshoes\\ngumtree\\ngumtrees\\ngumweed\\ngumweeds\\ngumwood\\ngumwoods\\ngun\\ngunboat\\ngunboats\\ngundog\\ngundogs\\ngunfight\\ngunfighter\\ngunfighters\\ngunfighting\\ngunfights\\ngunfire\\ngunfires\\ngunflint\\ngunflints\\ngunfought\\ngunk\\ngunks\\ngunless\\ngunlock\\ngunlocks\\ngunman\\ngunmen\\ngunmetal\\ngunmetals\\ngunned\\ngunnel\\ngunnels\\ngunnen\\ngunner\\ngunneries\\ngunners\\ngunnery\\ngunnies\\ngunning\\ngunnings\\ngunny\\ngunpaper\\ngunpapers\\ngunplay\\ngunplays\\ngunpoint\\ngunpoints\\ngunpowder\\ngunpowders\\ngunroom\\ngunrooms\\nguns\\ngunsel\\ngunsels\\ngunship\\ngunships\\ngunshot\\ngunshots\\ngunslinger\\ngunslingers\\ngunsmith\\ngunsmiths\\ngunstock\\ngunstocks\\ngunwale\\ngunwales\\nguppies\\nguppy\\ngurge\\ngurged\\ngurges\\ngurging\\ngurgle\\ngurgled\\ngurgles\\ngurglet\\ngurglets\\ngurgling\\ngurnard\\ngurnards\\ngurnet\\ngurnets\\ngurney\\ngurneys\\ngurries\\ngurry\\ngursh\\ngurshes\\nguru\\ngurus\\nguruship\\nguruships\\ngush\\ngushed\\ngusher\\ngushers\\ngushes\\ngushier\\ngushiest\\ngushily\\ngushing\\ngushy\\ngusset\\ngusseted\\ngusseting\\ngussets\\ngust\\ngustable\\ngustables\\ngustatory\\ngusted\\ngustier\\ngustiest\\ngustily\\ngusting\\ngustless\\ngusto\\ngustoes\\ngusts\\ngusty\\ngut\\ngutless\\ngutlike\\nguts\\ngutsier\\ngutsiest\\ngutsy\\ngutta\\nguttae\\nguttate\\nguttated\\ngutted\\ngutter\\nguttered\\nguttering\\ngutters\\nguttery\\nguttier\\nguttiest\\ngutting\\nguttle\\nguttled\\nguttler\\nguttlers\\nguttles\\nguttling\\nguttural\\ngutturals\\ngutty\\nguy\\nguyed\\nguyer\\nguying\\nguyot\\nguyots\\nguys\\nguzzle\\nguzzled\\nguzzler\\nguzzlers\\nguzzles\\nguzzling\\ngweduc\\ngweduck\\ngweducks\\ngweducs\\ngybe\\ngybed\\ngyber\\ngybes\\ngybing\\ngym\\ngymkhana\\ngymkhanas\\ngymnasia\\ngymnasium\\ngymnasiums\\ngymnast\\ngymnastic\\ngymnastics\\ngymnasts\\ngyms\\ngynaecea\\ngynaecia\\ngynandries\\ngynandry\\ngynarchies\\ngynarchy\\ngynecia\\ngynecic\\ngynecium\\ngynecoid\\ngynecologic\\ngynecological\\ngynecologies\\ngynecologist\\ngynecologists\\ngynecology\\ngynecomastia\\ngynecomasty\\ngyniatries\\ngyniatry\\ngynoecia\\ngyp\\ngypped\\ngypper\\ngyppers\\ngypping\\ngyps\\ngypseian\\ngypseous\\ngypsied\\ngypsies\\ngypsum\\ngypsums\\ngypsy\\ngypsydom\\ngypsydoms\\ngypsying\\ngypsyish\\ngypsyism\\ngypsyisms\\ngyral\\ngyrally\\ngyrate\\ngyrated\\ngyrates\\ngyrating\\ngyration\\ngyrations\\ngyrator\\ngyrators\\ngyratory\\ngyre\\ngyred\\ngyrene\\ngyrenes\\ngyres\\ngyri\\ngyring\\ngyro\\ngyrocompass\\ngyrocompasses\\ngyroidal\\ngyron\\ngyrons\\ngyros\\ngyroscope\\ngyroscopes\\ngyrose\\ngyrostat\\ngyrostats\\ngyrus\\ngyve\\ngyved\\ngyves\\ngyving\\nha\\nhaaf\\nhaafs\\nhaar\\nhaars\\nhabanera\\nhabaneras\\nhabdalah\\nhabdalahs\\nhaberdasher\\nhaberdasheries\\nhaberdashers\\nhaberdashery\\nhabile\\nhabit\\nhabitable\\nhabitan\\nhabitans\\nhabitant\\nhabitants\\nhabitat\\nhabitation\\nhabitations\\nhabitats\\nhabited\\nhabiting\\nhabits\\nhabitual\\nhabitually\\nhabitualness\\nhabitualnesses\\nhabituate\\nhabituated\\nhabituates\\nhabituating\\nhabitude\\nhabitudes\\nhabitue\\nhabitues\\nhabitus\\nhabu\\nhabus\\nhacek\\nhaceks\\nhachure\\nhachured\\nhachures\\nhachuring\\nhacienda\\nhaciendas\\nhack\\nhackbut\\nhackbuts\\nhacked\\nhackee\\nhackees\\nhacker\\nhackers\\nhackie\\nhackies\\nhacking\\nhackle\\nhackled\\nhackler\\nhacklers\\nhackles\\nhacklier\\nhackliest\\nhackling\\nhackly\\nhackman\\nhackmen\\nhackney\\nhackneyed\\nhackneying\\nhackneys\\nhacks\\nhacksaw\\nhacksaws\\nhackwork\\nhackworks\\nhad\\nhadal\\nhadarim\\nhaddest\\nhaddock\\nhaddocks\\nhade\\nhaded\\nhades\\nhading\\nhadj\\nhadjee\\nhadjees\\nhadjes\\nhadji\\nhadjis\\nhadjs\\nhadron\\nhadronic\\nhadrons\\nhadst\\nhae\\nhaed\\nhaeing\\nhaem\\nhaemal\\nhaematal\\nhaematic\\nhaematics\\nhaematin\\nhaematins\\nhaemic\\nhaemin\\nhaemins\\nhaemoid\\nhaems\\nhaen\\nhaeredes\\nhaeres\\nhaes\\nhaet\\nhaets\\nhaffet\\nhaffets\\nhaffit\\nhaffits\\nhafis\\nhafiz\\nhafnium\\nhafniums\\nhaft\\nhaftarah\\nhaftarahs\\nhaftarot\\nhaftaroth\\nhafted\\nhafter\\nhafters\\nhafting\\nhaftorah\\nhaftorahs\\nhaftorot\\nhaftoroth\\nhafts\\nhag\\nhagadic\\nhagadist\\nhagadists\\nhagberries\\nhagberry\\nhagborn\\nhagbush\\nhagbushes\\nhagbut\\nhagbuts\\nhagdon\\nhagdons\\nhagfish\\nhagfishes\\nhaggadic\\nhaggard\\nhaggardly\\nhaggards\\nhagged\\nhagging\\nhaggis\\nhaggises\\nhaggish\\nhaggle\\nhaggled\\nhaggler\\nhagglers\\nhaggles\\nhaggling\\nhagridden\\nhagride\\nhagrides\\nhagriding\\nhagrode\\nhags\\nhah\\nhahs\\nhaik\\nhaika\\nhaiks\\nhaiku\\nhail\\nhailed\\nhailer\\nhailers\\nhailing\\nhails\\nhailstone\\nhailstones\\nhailstorm\\nhailstorms\\nhaily\\nhair\\nhairball\\nhairballs\\nhairband\\nhairbands\\nhairbreadth\\nhairbreadths\\nhairbrush\\nhairbrushes\\nhaircap\\nhaircaps\\nhaircut\\nhaircuts\\nhairdo\\nhairdos\\nhairdresser\\nhairdressers\\nhaired\\nhairier\\nhairiest\\nhairiness\\nhairinesses\\nhairless\\nhairlike\\nhairline\\nhairlines\\nhairlock\\nhairlocks\\nhairpiece\\nhairpieces\\nhairpin\\nhairpins\\nhairs\\nhairsbreadth\\nhairsbreadths\\nhairstyle\\nhairstyles\\nhairstyling\\nhairstylings\\nhairstylist\\nhairstylists\\nhairwork\\nhairworks\\nhairworm\\nhairworms\\nhairy\\nhaj\\nhajes\\nhaji\\nhajis\\nhajj\\nhajjes\\nhajji\\nhajjis\\nhajjs\\nhake\\nhakeem\\nhakeems\\nhakes\\nhakim\\nhakims\\nhalakah\\nhalakahs\\nhalakic\\nhalakist\\nhalakists\\nhalakoth\\nhalala\\nhalalah\\nhalalahs\\nhalalas\\nhalation\\nhalations\\nhalavah\\nhalavahs\\nhalazone\\nhalazones\\nhalberd\\nhalberds\\nhalbert\\nhalberts\\nhalcyon\\nhalcyons\\nhale\\nhaled\\nhaleness\\nhalenesses\\nhaler\\nhalers\\nhaleru\\nhales\\nhalest\\nhalf\\nhalfback\\nhalfbacks\\nhalfbeak\\nhalfbeaks\\nhalfhearted\\nhalfheartedly\\nhalfheartedness\\nhalfheartednesses\\nhalflife\\nhalflives\\nhalfness\\nhalfnesses\\nhalftime\\nhalftimes\\nhalftone\\nhalftones\\nhalfway\\nhalibut\\nhalibuts\\nhalid\\nhalide\\nhalides\\nhalidom\\nhalidome\\nhalidomes\\nhalidoms\\nhalids\\nhaling\\nhalite\\nhalites\\nhalitosis\\nhalitosises\\nhalitus\\nhalituses\\nhall\\nhallah\\nhallahs\\nhallel\\nhallels\\nhalliard\\nhalliards\\nhallmark\\nhallmarked\\nhallmarking\\nhallmarks\\nhallo\\nhalloa\\nhalloaed\\nhalloaing\\nhalloas\\nhalloed\\nhalloes\\nhalloing\\nhalloo\\nhallooed\\nhallooing\\nhalloos\\nhallos\\nhallot\\nhalloth\\nhallow\\nhallowed\\nhallower\\nhallowers\\nhallowing\\nhallows\\nhalls\\nhalluces\\nhallucinate\\nhallucinated\\nhallucinates\\nhallucinating\\nhallucination\\nhallucinations\\nhallucinative\\nhallucinatory\\nhallucinogen\\nhallucinogenic\\nhallucinogens\\nhallux\\nhallway\\nhallways\\nhalm\\nhalms\\nhalo\\nhaloed\\nhalogen\\nhalogens\\nhaloid\\nhaloids\\nhaloing\\nhalolike\\nhalos\\nhalt\\nhalted\\nhalter\\nhaltere\\nhaltered\\nhalteres\\nhaltering\\nhalters\\nhalting\\nhaltingly\\nhaltless\\nhalts\\nhalutz\\nhalutzim\\nhalva\\nhalvah\\nhalvahs\\nhalvas\\nhalve\\nhalved\\nhalvers\\nhalves\\nhalving\\nhalyard\\nhalyards\\nham\\nhamal\\nhamals\\nhamartia\\nhamartias\\nhamate\\nhamates\\nhamaul\\nhamauls\\nhamburg\\nhamburger\\nhamburgers\\nhamburgs\\nhame\\nhames\\nhamlet\\nhamlets\\nhammal\\nhammals\\nhammed\\nhammer\\nhammered\\nhammerer\\nhammerers\\nhammerhead\\nhammerheads\\nhammering\\nhammers\\nhammier\\nhammiest\\nhammily\\nhamming\\nhammock\\nhammocks\\nhammy\\nhamper\\nhampered\\nhamperer\\nhamperers\\nhampering\\nhampers\\nhams\\nhamster\\nhamsters\\nhamstring\\nhamstringing\\nhamstrings\\nhamstrung\\nhamular\\nhamulate\\nhamuli\\nhamulose\\nhamulous\\nhamulus\\nhamza\\nhamzah\\nhamzahs\\nhamzas\\nhanaper\\nhanapers\\nhance\\nhances\\nhand\\nhandbag\\nhandbags\\nhandball\\nhandballs\\nhandbill\\nhandbills\\nhandbook\\nhandbooks\\nhandcar\\nhandcars\\nhandcart\\nhandcarts\\nhandclasp\\nhandclasps\\nhandcraft\\nhandcrafted\\nhandcrafting\\nhandcrafts\\nhandcuff\\nhandcuffed\\nhandcuffing\\nhandcuffs\\nhanded\\nhandfast\\nhandfasted\\nhandfasting\\nhandfasts\\nhandful\\nhandfuls\\nhandgrip\\nhandgrips\\nhandgun\\nhandguns\\nhandhold\\nhandholds\\nhandicap\\nhandicapped\\nhandicapper\\nhandicappers\\nhandicapping\\nhandicaps\\nhandicrafsman\\nhandicrafsmen\\nhandicraft\\nhandicrafter\\nhandicrafters\\nhandicrafts\\nhandier\\nhandiest\\nhandily\\nhandiness\\nhandinesses\\nhanding\\nhandiwork\\nhandiworks\\nhandkerchief\\nhandkerchiefs\\nhandle\\nhandled\\nhandler\\nhandlers\\nhandles\\nhandless\\nhandlike\\nhandling\\nhandlings\\nhandlist\\nhandlists\\nhandloom\\nhandlooms\\nhandmade\\nhandmaid\\nhandmaiden\\nhandmaidens\\nhandmaids\\nhandoff\\nhandoffs\\nhandout\\nhandouts\\nhandpick\\nhandpicked\\nhandpicking\\nhandpicks\\nhandrail\\nhandrails\\nhands\\nhandsaw\\nhandsaws\\nhandsel\\nhandseled\\nhandseling\\nhandselled\\nhandselling\\nhandsels\\nhandset\\nhandsets\\nhandsewn\\nhandsful\\nhandshake\\nhandshakes\\nhandsome\\nhandsomely\\nhandsomeness\\nhandsomenesses\\nhandsomer\\nhandsomest\\nhandspring\\nhandsprings\\nhandstand\\nhandstands\\nhandwork\\nhandworks\\nhandwoven\\nhandwrit\\nhandwriting\\nhandwritings\\nhandwritten\\nhandy\\nhandyman\\nhandymen\\nhang\\nhangable\\nhangar\\nhangared\\nhangaring\\nhangars\\nhangbird\\nhangbirds\\nhangdog\\nhangdogs\\nhanged\\nhanger\\nhangers\\nhangfire\\nhangfires\\nhanging\\nhangings\\nhangman\\nhangmen\\nhangnail\\nhangnails\\nhangnest\\nhangnests\\nhangout\\nhangouts\\nhangover\\nhangovers\\nhangs\\nhangtag\\nhangtags\\nhangup\\nhangups\\nhank\\nhanked\\nhanker\\nhankered\\nhankerer\\nhankerers\\nhankering\\nhankers\\nhankie\\nhankies\\nhanking\\nhanks\\nhanky\\nhanse\\nhansel\\nhanseled\\nhanseling\\nhanselled\\nhanselling\\nhansels\\nhanses\\nhansom\\nhansoms\\nhant\\nhanted\\nhanting\\nhantle\\nhantles\\nhants\\nhanuman\\nhanumans\\nhaole\\nhaoles\\nhap\\nhapax\\nhapaxes\\nhaphazard\\nhaphazardly\\nhapless\\nhaplessly\\nhaplessness\\nhaplessnesses\\nhaplite\\nhaplites\\nhaploid\\nhaploidies\\nhaploids\\nhaploidy\\nhaplont\\nhaplonts\\nhaplopia\\nhaplopias\\nhaploses\\nhaplosis\\nhaply\\nhapped\\nhappen\\nhappened\\nhappening\\nhappenings\\nhappens\\nhappier\\nhappiest\\nhappily\\nhappiness\\nhapping\\nhappy\\nhaps\\nhapten\\nhaptene\\nhaptenes\\nhaptenic\\nhaptens\\nhaptic\\nhaptical\\nharangue\\nharangued\\nharanguer\\nharanguers\\nharangues\\nharanguing\\nharass\\nharassed\\nharasser\\nharassers\\nharasses\\nharassing\\nharassness\\nharassnesses\\nharbinger\\nharbingers\\nharbor\\nharbored\\nharborer\\nharborers\\nharboring\\nharbors\\nharbour\\nharboured\\nharbouring\\nharbours\\nhard\\nhardback\\nhardbacks\\nhardball\\nhardballs\\nhardboot\\nhardboots\\nhardcase\\nhardcore\\nharden\\nhardened\\nhardener\\nhardeners\\nhardening\\nhardens\\nharder\\nhardest\\nhardhack\\nhardhacks\\nhardhat\\nhardhats\\nhardhead\\nhardheaded\\nhardheadedly\\nhardheadedness\\nhardheads\\nhardhearted\\nhardheartedly\\nhardheartedness\\nhardheartednesses\\nhardier\\nhardies\\nhardiest\\nhardily\\nhardiness\\nhardinesses\\nhardly\\nhardness\\nhardnesses\\nhardpan\\nhardpans\\nhards\\nhardset\\nhardship\\nhardships\\nhardtack\\nhardtacks\\nhardtop\\nhardtops\\nhardware\\nhardwares\\nhardwood\\nhardwoods\\nhardy\\nhare\\nharebell\\nharebells\\nhared\\nhareem\\nhareems\\nharelike\\nharelip\\nharelipped\\nharelips\\nharem\\nharems\\nhares\\nhariana\\nharianas\\nharicot\\nharicots\\nharijan\\nharijans\\nharing\\nhark\\nharked\\nharken\\nharkened\\nharkener\\nharkeners\\nharkening\\nharkens\\nharking\\nharks\\nharl\\nharlequin\\nharlequins\\nharlot\\nharlotries\\nharlotry\\nharlots\\nharls\\nharm\\nharmed\\nharmer\\nharmers\\nharmful\\nharmfully\\nharmfulness\\nharmfulnesses\\nharmin\\nharmine\\nharmines\\nharming\\nharmins\\nharmless\\nharmlessly\\nharmlessness\\nharmlessnesses\\nharmonic\\nharmonica\\nharmonically\\nharmonicas\\nharmonics\\nharmonies\\nharmonious\\nharmoniously\\nharmoniousness\\nharmoniousnesses\\nharmonization\\nharmonizations\\nharmonize\\nharmonized\\nharmonizes\\nharmonizing\\nharmony\\nharms\\nharness\\nharnessed\\nharnesses\\nharnessing\\nharp\\nharped\\nharper\\nharpers\\nharpies\\nharpin\\nharping\\nharpings\\nharpins\\nharpist\\nharpists\\nharpoon\\nharpooned\\nharpooner\\nharpooners\\nharpooning\\nharpoons\\nharps\\nharpsichord\\nharpsichords\\nharpy\\nharridan\\nharridans\\nharried\\nharrier\\nharriers\\nharries\\nharrow\\nharrowed\\nharrower\\nharrowers\\nharrowing\\nharrows\\nharrumph\\nharrumphed\\nharrumphing\\nharrumphs\\nharry\\nharrying\\nharsh\\nharshen\\nharshened\\nharshening\\nharshens\\nharsher\\nharshest\\nharshly\\nharshness\\nharshnesses\\nharslet\\nharslets\\nhart\\nhartal\\nhartals\\nharts\\nharuspex\\nharuspices\\nharvest\\nharvested\\nharvester\\nharvesters\\nharvesting\\nharvests\\nhas\\nhash\\nhashed\\nhasheesh\\nhasheeshes\\nhashes\\nhashing\\nhashish\\nhashishes\\nhaslet\\nhaslets\\nhasp\\nhasped\\nhasping\\nhasps\\nhassel\\nhassels\\nhassle\\nhassled\\nhassles\\nhassling\\nhassock\\nhassocks\\nhast\\nhastate\\nhaste\\nhasted\\nhasteful\\nhasten\\nhastened\\nhastener\\nhasteners\\nhastening\\nhastens\\nhastes\\nhastier\\nhastiest\\nhastily\\nhasting\\nhasty\\nhat\\nhatable\\nhatband\\nhatbands\\nhatbox\\nhatboxes\\nhatch\\nhatcheck\\nhatched\\nhatchel\\nhatcheled\\nhatcheling\\nhatchelled\\nhatchelling\\nhatchels\\nhatcher\\nhatcheries\\nhatchers\\nhatchery\\nhatches\\nhatchet\\nhatchets\\nhatching\\nhatchings\\nhatchway\\nhatchways\\nhate\\nhateable\\nhated\\nhateful\\nhatefullness\\nhatefullnesses\\nhater\\nhaters\\nhates\\nhatful\\nhatfuls\\nhath\\nhating\\nhatless\\nhatlike\\nhatmaker\\nhatmakers\\nhatpin\\nhatpins\\nhatrack\\nhatracks\\nhatred\\nhatreds\\nhats\\nhatsful\\nhatted\\nhatter\\nhatteria\\nhatterias\\nhatters\\nhatting\\nhauberk\\nhauberks\\nhaugh\\nhaughs\\nhaughtier\\nhaughtiest\\nhaughtily\\nhaughtiness\\nhaughtinesses\\nhaughty\\nhaul\\nhaulage\\nhaulages\\nhauled\\nhauler\\nhaulers\\nhaulier\\nhauliers\\nhauling\\nhaulm\\nhaulmier\\nhaulmiest\\nhaulms\\nhaulmy\\nhauls\\nhaulyard\\nhaulyards\\nhaunch\\nhaunched\\nhaunches\\nhaunt\\nhaunted\\nhaunter\\nhaunters\\nhaunting\\nhauntingly\\nhaunts\\nhausen\\nhausens\\nhausfrau\\nhausfrauen\\nhausfraus\\nhautbois\\nhautboy\\nhautboys\\nhauteur\\nhauteurs\\nhavdalah\\nhavdalahs\\nhave\\nhavelock\\nhavelocks\\nhaven\\nhavened\\nhavening\\nhavens\\nhaver\\nhavered\\nhaverel\\nhaverels\\nhavering\\nhavers\\nhaves\\nhaving\\nhavior\\nhaviors\\nhaviour\\nhaviours\\nhavoc\\nhavocked\\nhavocker\\nhavockers\\nhavocking\\nhavocs\\nhaw\\nhawed\\nhawfinch\\nhawfinches\\nhawing\\nhawk\\nhawkbill\\nhawkbills\\nhawked\\nhawker\\nhawkers\\nhawkey\\nhawkeys\\nhawkie\\nhawkies\\nhawking\\nhawkings\\nhawkish\\nhawklike\\nhawkmoth\\nhawkmoths\\nhawknose\\nhawknoses\\nhawks\\nhawkshaw\\nhawkshaws\\nhawkweed\\nhawkweeds\\nhaws\\nhawse\\nhawser\\nhawsers\\nhawses\\nhawthorn\\nhawthorns\\nhay\\nhaycock\\nhaycocks\\nhayed\\nhayer\\nhayers\\nhayfork\\nhayforks\\nhaying\\nhayings\\nhaylage\\nhaylages\\nhayloft\\nhaylofts\\nhaymaker\\nhaymakers\\nhaymow\\nhaymows\\nhayrack\\nhayracks\\nhayrick\\nhayricks\\nhayride\\nhayrides\\nhays\\nhayseed\\nhayseeds\\nhaystack\\nhaystacks\\nhayward\\nhaywards\\nhaywire\\nhaywires\\nhazan\\nhazanim\\nhazans\\nhazard\\nhazarded\\nhazarding\\nhazardous\\nhazards\\nhaze\\nhazed\\nhazel\\nhazelly\\nhazelnut\\nhazelnuts\\nhazels\\nhazer\\nhazers\\nhazes\\nhazier\\nhaziest\\nhazily\\nhaziness\\nhazinesses\\nhazing\\nhazings\\nhazy\\nhazzan\\nhazzanim\\nhazzans\\nhe\\nhead\\nheadache\\nheadaches\\nheadachier\\nheadachiest\\nheadachy\\nheadband\\nheadbands\\nheaddress\\nheaddresses\\nheaded\\nheader\\nheaders\\nheadfirst\\nheadgate\\nheadgates\\nheadgear\\nheadgears\\nheadhunt\\nheadhunted\\nheadhunting\\nheadhunts\\nheadier\\nheadiest\\nheadily\\nheading\\nheadings\\nheadlamp\\nheadlamps\\nheadland\\nheadlands\\nheadless\\nheadlight\\nheadlights\\nheadline\\nheadlined\\nheadlines\\nheadlining\\nheadlock\\nheadlocks\\nheadlong\\nheadman\\nheadmaster\\nheadmasters\\nheadmen\\nheadmistress\\nheadmistresses\\nheadmost\\nheadnote\\nheadnotes\\nheadphone\\nheadphones\\nheadpin\\nheadpins\\nheadquarter\\nheadquartered\\nheadquartering\\nheadquarters\\nheadrace\\nheadraces\\nheadrest\\nheadrests\\nheadroom\\nheadrooms\\nheads\\nheadsail\\nheadsails\\nheadset\\nheadsets\\nheadship\\nheadships\\nheadsman\\nheadsmen\\nheadstay\\nheadstays\\nheadstone\\nheadstones\\nheadstrong\\nheadwaiter\\nheadwaiters\\nheadwater\\nheadwaters\\nheadway\\nheadways\\nheadwind\\nheadwinds\\nheadword\\nheadwords\\nheadwork\\nheadworks\\nheady\\nheal\\nhealable\\nhealed\\nhealer\\nhealers\\nhealing\\nheals\\nhealth\\nhealthful\\nhealthfully\\nhealthfulness\\nhealthfulnesses\\nhealthier\\nhealthiest\\nhealths\\nhealthy\\nheap\\nheaped\\nheaping\\nheaps\\nhear\\nhearable\\nheard\\nhearer\\nhearers\\nhearing\\nhearings\\nhearken\\nhearkened\\nhearkening\\nhearkens\\nhears\\nhearsay\\nhearsays\\nhearse\\nhearsed\\nhearses\\nhearsing\\nheart\\nheartache\\nheartaches\\nheartbeat\\nheartbeats\\nheartbreak\\nheartbreaking\\nheartbreaks\\nheartbroken\\nheartburn\\nheartburns\\nhearted\\nhearten\\nheartened\\nheartening\\nheartens\\nhearth\\nhearths\\nhearthstone\\nhearthstones\\nheartier\\nhearties\\nheartiest\\nheartily\\nheartiness\\nheartinesses\\nhearting\\nheartless\\nheartrending\\nhearts\\nheartsick\\nheartsickness\\nheartsicknesses\\nheartstrings\\nheartthrob\\nheartthrobs\\nheartwarming\\nheartwood\\nheartwoods\\nhearty\\nheat\\nheatable\\nheated\\nheatedly\\nheater\\nheaters\\nheath\\nheathen\\nheathens\\nheather\\nheathers\\nheathery\\nheathier\\nheathiest\\nheaths\\nheathy\\nheating\\nheatless\\nheats\\nheatstroke\\nheatstrokes\\nheaume\\nheaumes\\nheave\\nheaved\\nheaven\\nheavenlier\\nheavenliest\\nheavenly\\nheavens\\nheavenward\\nheaver\\nheavers\\nheaves\\nheavier\\nheavies\\nheaviest\\nheavily\\nheaviness\\nheavinesses\\nheaving\\nheavy\\nheavyset\\nheavyweight\\nheavyweights\\nhebdomad\\nhebdomads\\nhebetate\\nhebetated\\nhebetates\\nhebetating\\nhebetic\\nhebetude\\nhebetudes\\nhebraize\\nhebraized\\nhebraizes\\nhebraizing\\nhecatomb\\nhecatombs\\nheck\\nheckle\\nheckled\\nheckler\\nhecklers\\nheckles\\nheckling\\nhecks\\nhectare\\nhectares\\nhectic\\nhectical\\nhectically\\nhecticly\\nhector\\nhectored\\nhectoring\\nhectors\\nheddle\\nheddles\\nheder\\nheders\\nhedge\\nhedged\\nhedgehog\\nhedgehogs\\nhedgehop\\nhedgehopped\\nhedgehopping\\nhedgehops\\nhedgepig\\nhedgepigs\\nhedger\\nhedgerow\\nhedgerows\\nhedgers\\nhedges\\nhedgier\\nhedgiest\\nhedging\\nhedgy\\nhedonic\\nhedonics\\nhedonism\\nhedonisms\\nhedonist\\nhedonistic\\nhedonists\\nheed\\nheeded\\nheeder\\nheeders\\nheedful\\nheedfully\\nheedfulness\\nheedfulnesses\\nheeding\\nheedless\\nheedlessly\\nheedlessness\\nheedlessnesses\\nheeds\\nheehaw\\nheehawed\\nheehawing\\nheehaws\\nheel\\nheelball\\nheelballs\\nheeled\\nheeler\\nheelers\\nheeling\\nheelings\\nheelless\\nheelpost\\nheelposts\\nheels\\nheeltap\\nheeltaps\\nheeze\\nheezed\\nheezes\\nheezing\\nheft\\nhefted\\nhefter\\nhefters\\nheftier\\nheftiest\\nheftily\\nhefting\\nhefts\\nhefty\\nhegari\\nhegaris\\nhegemonies\\nhegemony\\nhegira\\nhegiras\\nhegumen\\nhegumene\\nhegumenes\\nhegumenies\\nhegumens\\nhegumeny\\nheifer\\nheifers\\nheigh\\nheight\\nheighten\\nheightened\\nheightening\\nheightens\\nheighth\\nheighths\\nheights\\nheil\\nheiled\\nheiling\\nheils\\nheinie\\nheinies\\nheinous\\nheinously\\nheinousness\\nheinousnesses\\nheir\\nheirdom\\nheirdoms\\nheired\\nheiress\\nheiresses\\nheiring\\nheirless\\nheirloom\\nheirlooms\\nheirs\\nheirship\\nheirships\\nheist\\nheisted\\nheister\\nheisters\\nheisting\\nheists\\nhejira\\nhejiras\\nhektare\\nhektares\\nheld\\nheliac\\nheliacal\\nheliast\\nheliasts\\nhelical\\nhelices\\nhelicities\\nhelicity\\nhelicoid\\nhelicoids\\nhelicon\\nhelicons\\nhelicopt\\nhelicopted\\nhelicopter\\nhelicopters\\nhelicopting\\nhelicopts\\nhelio\\nhelios\\nheliotrope\\nhelipad\\nhelipads\\nheliport\\nheliports\\nhelistop\\nhelistops\\nhelium\\nheliums\\nhelix\\nhelixes\\nhell\\nhellbent\\nhellbox\\nhellboxes\\nhellcat\\nhellcats\\nhelled\\nheller\\nhelleri\\nhelleries\\nhellers\\nhellery\\nhellfire\\nhellfires\\nhellgrammite\\nhellgrammites\\nhellhole\\nhellholes\\nhelling\\nhellion\\nhellions\\nhellish\\nhellkite\\nhellkites\\nhello\\nhelloed\\nhelloes\\nhelloing\\nhellos\\nhells\\nhelluva\\nhelm\\nhelmed\\nhelmet\\nhelmeted\\nhelmeting\\nhelmets\\nhelming\\nhelminth\\nhelminths\\nhelmless\\nhelms\\nhelmsman\\nhelmsmen\\nhelot\\nhelotage\\nhelotages\\nhelotism\\nhelotisms\\nhelotries\\nhelotry\\nhelots\\nhelp\\nhelpable\\nhelped\\nhelper\\nhelpers\\nhelpful\\nhelpfully\\nhelpfulness\\nhelpfulnesses\\nhelping\\nhelpings\\nhelpless\\nhelplessly\\nhelplessness\\nhelplessnesses\\nhelpmate\\nhelpmates\\nhelpmeet\\nhelpmeets\\nhelps\\nhelve\\nhelved\\nhelves\\nhelving\\nhem\\nhemagog\\nhemagogs\\nhemal\\nhematal\\nhematein\\nhemateins\\nhematic\\nhematics\\nhematin\\nhematine\\nhematines\\nhematins\\nhematite\\nhematites\\nhematocrit\\nhematoid\\nhematologic\\nhematological\\nhematologies\\nhematologist\\nhematologists\\nhematology\\nhematoma\\nhematomas\\nhematomata\\nhematopenia\\nhematuria\\nheme\\nhemes\\nhemic\\nhemin\\nhemins\\nhemiola\\nhemiolas\\nhemipter\\nhemipters\\nhemisphere\\nhemispheres\\nhemispheric\\nhemispherical\\nhemline\\nhemlines\\nhemlock\\nhemlocks\\nhemmed\\nhemmer\\nhemmers\\nhemming\\nhemocoel\\nhemocoels\\nhemocyte\\nhemocytes\\nhemoglobin\\nhemoid\\nhemolyze\\nhemolyzed\\nhemolyzes\\nhemolyzing\\nhemophilia\\nhemophiliac\\nhemophiliacs\\nhemoptysis\\nhemorrhage\\nhemorrhaged\\nhemorrhages\\nhemorrhagic\\nhemorrhaging\\nhemorrhoids\\nhemostat\\nhemostats\\nhemp\\nhempen\\nhempie\\nhempier\\nhempiest\\nhemplike\\nhemps\\nhempseed\\nhempseeds\\nhempweed\\nhempweeds\\nhempy\\nhems\\nhen\\nhenbane\\nhenbanes\\nhenbit\\nhenbits\\nhence\\nhenceforth\\nhenceforward\\nhenchman\\nhenchmen\\nhencoop\\nhencoops\\nhenequen\\nhenequens\\nhenequin\\nhenequins\\nhenhouse\\nhenhouses\\nheniquen\\nheniquens\\nhenlike\\nhenna\\nhennaed\\nhennaing\\nhennas\\nhenneries\\nhennery\\nhenpeck\\nhenpecked\\nhenpecking\\nhenpecks\\nhenries\\nhenry\\nhenrys\\nhens\\nhent\\nhented\\nhenting\\nhents\\nhep\\nheparin\\nheparins\\nhepatic\\nhepatica\\nhepaticae\\nhepaticas\\nhepatics\\nhepatitis\\nhepatize\\nhepatized\\nhepatizes\\nhepatizing\\nhepatoma\\nhepatomas\\nhepatomata\\nhepatomegaly\\nhepcat\\nhepcats\\nheptad\\nheptads\\nheptagon\\nheptagons\\nheptane\\nheptanes\\nheptarch\\nheptarchs\\nheptose\\nheptoses\\nher\\nherald\\nheralded\\nheraldic\\nheralding\\nheraldries\\nheraldry\\nheralds\\nherb\\nherbaceous\\nherbage\\nherbages\\nherbal\\nherbals\\nherbaria\\nherbicidal\\nherbicide\\nherbicides\\nherbier\\nherbiest\\nherbivorous\\nherbivorously\\nherbless\\nherblike\\nherbs\\nherby\\nherculean\\nhercules\\nherculeses\\nherd\\nherded\\nherder\\nherders\\nherdic\\nherdics\\nherding\\nherdlike\\nherdman\\nherdmen\\nherds\\nherdsman\\nherdsmen\\nhere\\nhereabout\\nhereabouts\\nhereafter\\nhereafters\\nhereat\\nhereaway\\nhereby\\nheredes\\nhereditary\\nheredities\\nheredity\\nherein\\nhereinto\\nhereof\\nhereon\\nheres\\nheresies\\nheresy\\nheretic\\nheretical\\nheretics\\nhereto\\nheretofore\\nheretrices\\nheretrix\\nheretrixes\\nhereunder\\nhereunto\\nhereupon\\nherewith\\nheriot\\nheriots\\nheritage\\nheritages\\nheritor\\nheritors\\nheritrices\\nheritrix\\nheritrixes\\nherl\\nherls\\nherm\\nherma\\nhermae\\nhermaean\\nhermai\\nhermaphrodite\\nhermaphrodites\\nhermaphroditic\\nhermetic\\nhermetically\\nhermit\\nhermitic\\nhermitries\\nhermitry\\nhermits\\nherms\\nhern\\nhernia\\nherniae\\nhernial\\nhernias\\nherniate\\nherniated\\nherniates\\nherniating\\nherniation\\nherniations\\nherns\\nhero\\nheroes\\nheroic\\nheroical\\nheroics\\nheroin\\nheroine\\nheroines\\nheroins\\nheroism\\nheroisms\\nheroize\\nheroized\\nheroizes\\nheroizing\\nheron\\nheronries\\nheronry\\nherons\\nheros\\nherpes\\nherpeses\\nherpetic\\nherpetologic\\nherpetological\\nherpetologies\\nherpetologist\\nherpetologists\\nherpetology\\nherried\\nherries\\nherring\\nherrings\\nherry\\nherrying\\nhers\\nherself\\nhertz\\nhertzes\\nhes\\nhesitancies\\nhesitancy\\nhesitant\\nhesitantly\\nhesitate\\nhesitated\\nhesitates\\nhesitating\\nhesitation\\nhesitations\\nhessian\\nhessians\\nhessite\\nhessites\\nhest\\nhests\\nhet\\nhetaera\\nhetaerae\\nhetaeras\\nhetaeric\\nhetaira\\nhetairai\\nhetairas\\nhetero\\nheterogenous\\nheterogenously\\nheterogenousness\\nheterogenousnesses\\nheteros\\nheterosexual\\nheterosexuals\\nheth\\nheths\\nhetman\\nhetmans\\nheuch\\nheuchs\\nheugh\\nheughs\\nhew\\nhewable\\nhewed\\nhewer\\nhewers\\nhewing\\nhewn\\nhews\\nhex\\nhexad\\nhexade\\nhexades\\nhexadic\\nhexads\\nhexagon\\nhexagonal\\nhexagons\\nhexagram\\nhexagrams\\nhexamine\\nhexamines\\nhexane\\nhexanes\\nhexapla\\nhexaplar\\nhexaplas\\nhexapod\\nhexapodies\\nhexapods\\nhexapody\\nhexarchies\\nhexarchy\\nhexed\\nhexer\\nhexerei\\nhexereis\\nhexers\\nhexes\\nhexing\\nhexone\\nhexones\\nhexosan\\nhexosans\\nhexose\\nhexoses\\nhexyl\\nhexyls\\nhey\\nheyday\\nheydays\\nheydey\\nheydeys\\nhi\\nhiatal\\nhiatus\\nhiatuses\\nhibachi\\nhibachis\\nhibernal\\nhibernate\\nhibernated\\nhibernates\\nhibernating\\nhibernation\\nhibernations\\nhibernator\\nhibernators\\nhibiscus\\nhibiscuses\\nhic\\nhiccough\\nhiccoughed\\nhiccoughing\\nhiccoughs\\nhiccup\\nhiccuped\\nhiccuping\\nhiccupped\\nhiccupping\\nhiccups\\nhick\\nhickey\\nhickeys\\nhickories\\nhickory\\nhicks\\nhid\\nhidable\\nhidalgo\\nhidalgos\\nhidden\\nhiddenly\\nhide\\nhideaway\\nhideaways\\nhided\\nhideless\\nhideous\\nhideously\\nhideousness\\nhideousnesses\\nhideout\\nhideouts\\nhider\\nhiders\\nhides\\nhiding\\nhidings\\nhidroses\\nhidrosis\\nhidrotic\\nhie\\nhied\\nhieing\\nhiemal\\nhierarch\\nhierarchical\\nhierarchies\\nhierarchs\\nhierarchy\\nhieratic\\nhieroglyphic\\nhieroglyphics\\nhies\\nhiggle\\nhiggled\\nhiggler\\nhigglers\\nhiggles\\nhiggling\\nhigh\\nhighball\\nhighballed\\nhighballing\\nhighballs\\nhighborn\\nhighboy\\nhighboys\\nhighbred\\nhighbrow\\nhighbrows\\nhighbush\\nhighchair\\nhighchairs\\nhigher\\nhighest\\nhighjack\\nhighjacked\\nhighjacking\\nhighjacks\\nhighland\\nhighlander\\nhighlanders\\nhighlands\\nhighlight\\nhighlighted\\nhighlighting\\nhighlights\\nhighly\\nhighness\\nhighnesses\\nhighroad\\nhighroads\\nhighs\\nhight\\nhightail\\nhightailed\\nhightailing\\nhightails\\nhighted\\nhighth\\nhighths\\nhighting\\nhights\\nhighway\\nhighwayman\\nhighwaymen\\nhighways\\nhijack\\nhijacked\\nhijacker\\nhijackers\\nhijacking\\nhijacks\\nhijinks\\nhike\\nhiked\\nhiker\\nhikers\\nhikes\\nhiking\\nhila\\nhilar\\nhilarious\\nhilariously\\nhilarities\\nhilarity\\nhilding\\nhildings\\nhili\\nhill\\nhillbillies\\nhillbilly\\nhilled\\nhiller\\nhillers\\nhillier\\nhilliest\\nhilling\\nhillo\\nhilloa\\nhilloaed\\nhilloaing\\nhilloas\\nhillock\\nhillocks\\nhillocky\\nhilloed\\nhilloing\\nhillos\\nhills\\nhillside\\nhillsides\\nhilltop\\nhilltops\\nhilly\\nhilt\\nhilted\\nhilting\\nhiltless\\nhilts\\nhilum\\nhilus\\nhim\\nhimatia\\nhimation\\nhimations\\nhimself\\nhin\\nhind\\nhinder\\nhindered\\nhinderer\\nhinderers\\nhindering\\nhinders\\nhindgut\\nhindguts\\nhindmost\\nhindquarter\\nhindquarters\\nhinds\\nhindsight\\nhindsights\\nhinge\\nhinged\\nhinger\\nhingers\\nhinges\\nhinging\\nhinnied\\nhinnies\\nhinny\\nhinnying\\nhins\\nhint\\nhinted\\nhinter\\nhinterland\\nhinterlands\\nhinters\\nhinting\\nhints\\nhip\\nhipbone\\nhipbones\\nhipless\\nhiplike\\nhipness\\nhipnesses\\nhipparch\\nhipparchs\\nhipped\\nhipper\\nhippest\\nhippie\\nhippiedom\\nhippiedoms\\nhippiehood\\nhippiehoods\\nhippier\\nhippies\\nhippiest\\nhipping\\nhippish\\nhippo\\nhippopotami\\nhippopotamus\\nhippopotamuses\\nhippos\\nhippy\\nhips\\nhipshot\\nhipster\\nhipsters\\nhirable\\nhiragana\\nhiraganas\\nhircine\\nhire\\nhireable\\nhired\\nhireling\\nhirelings\\nhirer\\nhirers\\nhires\\nhiring\\nhirple\\nhirpled\\nhirples\\nhirpling\\nhirsel\\nhirseled\\nhirseling\\nhirselled\\nhirselling\\nhirsels\\nhirsle\\nhirsled\\nhirsles\\nhirsling\\nhirsute\\nhirsutism\\nhirudin\\nhirudins\\nhis\\nhisn\\nhispid\\nhiss\\nhissed\\nhisself\\nhisser\\nhissers\\nhisses\\nhissing\\nhissings\\nhist\\nhistamin\\nhistamine\\nhistamines\\nhistamins\\nhisted\\nhistidin\\nhistidins\\nhisting\\nhistogen\\nhistogens\\nhistogram\\nhistograms\\nhistoid\\nhistologic\\nhistone\\nhistones\\nhistopathologic\\nhistopathological\\nhistorian\\nhistorians\\nhistoric\\nhistorical\\nhistorically\\nhistories\\nhistory\\nhists\\nhit\\nhitch\\nhitched\\nhitcher\\nhitchers\\nhitches\\nhitchhike\\nhitchhiked\\nhitchhiker\\nhitchhikers\\nhitchhikes\\nhitchhiking\\nhitching\\nhither\\nhitherto\\nhitless\\nhits\\nhitter\\nhitters\\nhitting\\nhive\\nhived\\nhiveless\\nhiver\\nhives\\nhiving\\nho\\nhoactzin\\nhoactzines\\nhoactzins\\nhoagie\\nhoagies\\nhoagy\\nhoar\\nhoard\\nhoarded\\nhoarder\\nhoarders\\nhoarding\\nhoardings\\nhoards\\nhoarfrost\\nhoarfrosts\\nhoarier\\nhoariest\\nhoarily\\nhoariness\\nhoarinesses\\nhoars\\nhoarse\\nhoarsely\\nhoarsen\\nhoarsened\\nhoarseness\\nhoarsenesses\\nhoarsening\\nhoarsens\\nhoarser\\nhoarsest\\nhoary\\nhoatzin\\nhoatzines\\nhoatzins\\nhoax\\nhoaxed\\nhoaxer\\nhoaxers\\nhoaxes\\nhoaxing\\nhob\\nhobbed\\nhobbies\\nhobbing\\nhobble\\nhobbled\\nhobbler\\nhobblers\\nhobbles\\nhobbling\\nhobby\\nhobbyist\\nhobbyists\\nhobgoblin\\nhobgoblins\\nhoblike\\nhobnail\\nhobnailed\\nhobnails\\nhobnob\\nhobnobbed\\nhobnobbing\\nhobnobs\\nhobo\\nhoboed\\nhoboes\\nhoboing\\nhoboism\\nhoboisms\\nhobos\\nhobs\\nhock\\nhocked\\nhocker\\nhockers\\nhockey\\nhockeys\\nhocking\\nhocks\\nhockshop\\nhockshops\\nhocus\\nhocused\\nhocuses\\nhocusing\\nhocussed\\nhocusses\\nhocussing\\nhod\\nhodad\\nhodaddies\\nhodaddy\\nhodads\\nhodden\\nhoddens\\nhoddin\\nhoddins\\nhodgepodge\\nhodgepodges\\nhods\\nhoe\\nhoecake\\nhoecakes\\nhoed\\nhoedown\\nhoedowns\\nhoeing\\nhoelike\\nhoer\\nhoers\\nhoes\\nhog\\nhogan\\nhogans\\nhogback\\nhogbacks\\nhogfish\\nhogfishes\\nhogg\\nhogged\\nhogger\\nhoggers\\nhogging\\nhoggish\\nhoggs\\nhoglike\\nhogmanay\\nhogmanays\\nhogmane\\nhogmanes\\nhogmenay\\nhogmenays\\nhognose\\nhognoses\\nhognut\\nhognuts\\nhogs\\nhogshead\\nhogsheads\\nhogtie\\nhogtied\\nhogtieing\\nhogties\\nhogtying\\nhogwash\\nhogwashes\\nhogweed\\nhogweeds\\nhoick\\nhoicked\\nhoicking\\nhoicks\\nhoiden\\nhoidened\\nhoidening\\nhoidens\\nhoise\\nhoised\\nhoises\\nhoising\\nhoist\\nhoisted\\nhoister\\nhoisters\\nhoisting\\nhoists\\nhoke\\nhoked\\nhokes\\nhokey\\nhoking\\nhokku\\nhokum\\nhokums\\nhokypokies\\nhokypoky\\nholard\\nholards\\nhold\\nholdable\\nholdall\\nholdalls\\nholdback\\nholdbacks\\nholden\\nholder\\nholders\\nholdfast\\nholdfasts\\nholding\\nholdings\\nholdout\\nholdouts\\nholdover\\nholdovers\\nholds\\nholdup\\nholdups\\nhole\\nholed\\nholeless\\nholer\\nholes\\nholey\\nholibut\\nholibuts\\nholiday\\nholidayed\\nholidaying\\nholidays\\nholier\\nholies\\nholiest\\nholily\\nholiness\\nholinesses\\nholing\\nholism\\nholisms\\nholist\\nholistic\\nholists\\nholk\\nholked\\nholking\\nholks\\nholla\\nhollaed\\nhollaing\\nholland\\nhollands\\nhollas\\nholler\\nhollered\\nhollering\\nhollers\\nhollies\\nhollo\\nholloa\\nholloaed\\nholloaing\\nholloas\\nholloed\\nholloes\\nholloing\\nholloo\\nhollooed\\nhollooing\\nholloos\\nhollos\\nhollow\\nhollowed\\nhollower\\nhollowest\\nhollowing\\nhollowly\\nhollowness\\nhollownesses\\nhollows\\nholly\\nhollyhock\\nhollyhocks\\nholm\\nholmic\\nholmium\\nholmiums\\nholms\\nholocaust\\nholocausts\\nhologram\\nholograms\\nhologynies\\nhologyny\\nholotype\\nholotypes\\nholozoic\\nholp\\nholpen\\nholstein\\nholsteins\\nholster\\nholsters\\nholt\\nholts\\nholy\\nholyday\\nholydays\\nholytide\\nholytides\\nhomage\\nhomaged\\nhomager\\nhomagers\\nhomages\\nhomaging\\nhombre\\nhombres\\nhomburg\\nhomburgs\\nhome\\nhomebodies\\nhomebody\\nhomebred\\nhomebreds\\nhomecoming\\nhomecomings\\nhomed\\nhomeland\\nhomelands\\nhomeless\\nhomelier\\nhomeliest\\nhomelike\\nhomeliness\\nhomelinesses\\nhomely\\nhomemade\\nhomemaker\\nhomemakers\\nhomemaking\\nhomemakings\\nhomer\\nhomered\\nhomering\\nhomeroom\\nhomerooms\\nhomers\\nhomes\\nhomesick\\nhomesickness\\nhomesicknesses\\nhomesite\\nhomesites\\nhomespun\\nhomespuns\\nhomestead\\nhomesteader\\nhomesteaders\\nhomesteads\\nhomestretch\\nhomestretches\\nhometown\\nhometowns\\nhomeward\\nhomewards\\nhomework\\nhomeworks\\nhomey\\nhomicidal\\nhomicide\\nhomicides\\nhomier\\nhomiest\\nhomiletic\\nhomilies\\nhomilist\\nhomilists\\nhomily\\nhominess\\nhominesses\\nhoming\\nhominian\\nhominians\\nhominid\\nhominids\\nhominies\\nhominine\\nhominoid\\nhominoids\\nhominy\\nhommock\\nhommocks\\nhomo\\nhomogamies\\nhomogamy\\nhomogeneities\\nhomogeneity\\nhomogeneous\\nhomogeneously\\nhomogeneousness\\nhomogeneousnesses\\nhomogenies\\nhomogenize\\nhomogenized\\nhomogenizer\\nhomogenizers\\nhomogenizes\\nhomogenizing\\nhomogeny\\nhomogonies\\nhomogony\\nhomograph\\nhomographs\\nhomolog\\nhomologies\\nhomologs\\nhomology\\nhomonym\\nhomonymies\\nhomonyms\\nhomonymy\\nhomophone\\nhomophones\\nhomos\\nhomosexual\\nhomosexuals\\nhomy\\nhonan\\nhonans\\nhoncho\\nhonchos\\nhonda\\nhondas\\nhondle\\nhondled\\nhondling\\nhone\\nhoned\\nhoner\\nhoners\\nhones\\nhonest\\nhonester\\nhonestest\\nhonesties\\nhonestly\\nhonesty\\nhonewort\\nhoneworts\\nhoney\\nhoneybee\\nhoneybees\\nhoneybun\\nhoneybuns\\nhoneycomb\\nhoneycombed\\nhoneycombing\\nhoneycombs\\nhoneydew\\nhoneydews\\nhoneyed\\nhoneyful\\nhoneying\\nhoneymoon\\nhoneymooned\\nhoneymooning\\nhoneymoons\\nhoneys\\nhoneysuckle\\nhoneysuckles\\nhong\\nhongs\\nhonied\\nhoning\\nhonk\\nhonked\\nhonker\\nhonkers\\nhonkey\\nhonkeys\\nhonkie\\nhonkies\\nhonking\\nhonks\\nhonky\\nhonor\\nhonorable\\nhonorably\\nhonorand\\nhonorands\\nhonoraries\\nhonorarily\\nhonorary\\nhonored\\nhonoree\\nhonorees\\nhonorer\\nhonorers\\nhonoring\\nhonors\\nhonour\\nhonoured\\nhonourer\\nhonourers\\nhonouring\\nhonours\\nhooch\\nhooches\\nhood\\nhooded\\nhoodie\\nhoodies\\nhooding\\nhoodless\\nhoodlike\\nhoodlum\\nhoodlums\\nhoodoo\\nhoodooed\\nhoodooing\\nhoodoos\\nhoods\\nhoodwink\\nhoodwinked\\nhoodwinking\\nhoodwinks\\nhooey\\nhooeys\\nhoof\\nhoofbeat\\nhoofbeats\\nhoofed\\nhoofer\\nhoofers\\nhoofing\\nhoofless\\nhooflike\\nhoofs\\nhook\\nhooka\\nhookah\\nhookahs\\nhookas\\nhooked\\nhooker\\nhookers\\nhookey\\nhookeys\\nhookier\\nhookies\\nhookiest\\nhooking\\nhookless\\nhooklet\\nhooklets\\nhooklike\\nhooknose\\nhooknoses\\nhooks\\nhookup\\nhookups\\nhookworm\\nhookworms\\nhooky\\nhoolie\\nhooligan\\nhooligans\\nhooly\\nhoop\\nhooped\\nhooper\\nhoopers\\nhooping\\nhoopla\\nhooplas\\nhoopless\\nhooplike\\nhoopoe\\nhoopoes\\nhoopoo\\nhoopoos\\nhoops\\nhoopster\\nhoopsters\\nhoorah\\nhoorahed\\nhoorahing\\nhoorahs\\nhooray\\nhoorayed\\nhooraying\\nhoorays\\nhoosegow\\nhoosegows\\nhoosgow\\nhoosgows\\nhoot\\nhootch\\nhootches\\nhooted\\nhooter\\nhooters\\nhootier\\nhootiest\\nhooting\\nhoots\\nhooty\\nhooves\\nhop\\nhope\\nhoped\\nhopeful\\nhopefully\\nhopefulness\\nhopefulnesses\\nhopefuls\\nhopeless\\nhopelessly\\nhopelessness\\nhopelessnesses\\nhoper\\nhopers\\nhopes\\nhophead\\nhopheads\\nhoping\\nhoplite\\nhoplites\\nhoplitic\\nhopped\\nhopper\\nhoppers\\nhopping\\nhopple\\nhoppled\\nhopples\\nhoppling\\nhops\\nhopsack\\nhopsacks\\nhoptoad\\nhoptoads\\nhora\\nhorah\\nhorahs\\nhoral\\nhorary\\nhoras\\nhorde\\nhorded\\nhordein\\nhordeins\\nhordes\\nhording\\nhorehound\\nhorehounds\\nhorizon\\nhorizons\\nhorizontal\\nhorizontally\\nhormonal\\nhormone\\nhormones\\nhormonic\\nhorn\\nhornbeam\\nhornbeams\\nhornbill\\nhornbills\\nhornbook\\nhornbooks\\nhorned\\nhornet\\nhornets\\nhornfels\\nhornier\\nhorniest\\nhornily\\nhorning\\nhornito\\nhornitos\\nhornless\\nhornlike\\nhornpipe\\nhornpipes\\nhornpout\\nhornpouts\\nhorns\\nhorntail\\nhorntails\\nhornworm\\nhornworms\\nhornwort\\nhornworts\\nhorny\\nhorologe\\nhorologes\\nhorological\\nhorologies\\nhorologist\\nhorologists\\nhorology\\nhoroscope\\nhoroscopes\\nhorrendous\\nhorrent\\nhorrible\\nhorribleness\\nhorriblenesses\\nhorribles\\nhorribly\\nhorrid\\nhorridly\\nhorrific\\nhorrified\\nhorrifies\\nhorrify\\nhorrifying\\nhorror\\nhorrors\\nhorse\\nhorseback\\nhorsebacks\\nhorsecar\\nhorsecars\\nhorsed\\nhorseflies\\nhorsefly\\nhorsehair\\nhorsehairs\\nhorsehide\\nhorsehides\\nhorseless\\nhorseman\\nhorsemanship\\nhorsemanships\\nhorsemen\\nhorseplay\\nhorseplays\\nhorsepower\\nhorsepowers\\nhorseradish\\nhorseradishes\\nhorses\\nhorseshoe\\nhorseshoes\\nhorsewoman\\nhorsewomen\\nhorsey\\nhorsier\\nhorsiest\\nhorsily\\nhorsing\\nhorst\\nhorste\\nhorstes\\nhorsts\\nhorsy\\nhortatory\\nhorticultural\\nhorticulture\\nhorticultures\\nhorticulturist\\nhorticulturists\\nhosanna\\nhosannaed\\nhosannaing\\nhosannas\\nhose\\nhosed\\nhosel\\nhosels\\nhosen\\nhoses\\nhosier\\nhosieries\\nhosiers\\nhosiery\\nhosing\\nhospice\\nhospices\\nhospitable\\nhospitably\\nhospital\\nhospitalities\\nhospitality\\nhospitalization\\nhospitalizations\\nhospitalize\\nhospitalized\\nhospitalizes\\nhospitalizing\\nhospitals\\nhospitia\\nhospodar\\nhospodars\\nhost\\nhostage\\nhostages\\nhosted\\nhostel\\nhosteled\\nhosteler\\nhostelers\\nhosteling\\nhostelries\\nhostelry\\nhostels\\nhostess\\nhostessed\\nhostesses\\nhostessing\\nhostile\\nhostilely\\nhostiles\\nhostilities\\nhostility\\nhosting\\nhostler\\nhostlers\\nhostly\\nhosts\\nhot\\nhotbed\\nhotbeds\\nhotblood\\nhotbloods\\nhotbox\\nhotboxes\\nhotcake\\nhotcakes\\nhotch\\nhotched\\nhotches\\nhotching\\nhotchpot\\nhotchpots\\nhotdog\\nhotdogged\\nhotdogging\\nhotdogs\\nhotel\\nhotelier\\nhoteliers\\nhotelman\\nhotelmen\\nhotels\\nhotfoot\\nhotfooted\\nhotfooting\\nhotfoots\\nhothead\\nhotheaded\\nhotheadedly\\nhotheadedness\\nhotheadednesses\\nhotheads\\nhothouse\\nhothouses\\nhotly\\nhotness\\nhotnesses\\nhotpress\\nhotpressed\\nhotpresses\\nhotpressing\\nhotrod\\nhotrods\\nhots\\nhotshot\\nhotshots\\nhotspur\\nhotspurs\\nhotted\\nhotter\\nhottest\\nhotting\\nhottish\\nhoudah\\nhoudahs\\nhound\\nhounded\\nhounder\\nhounders\\nhounding\\nhounds\\nhour\\nhourglass\\nhourglasses\\nhouri\\nhouris\\nhourly\\nhours\\nhouse\\nhouseboat\\nhouseboats\\nhouseboy\\nhouseboys\\nhousebreak\\nhousebreaks\\nhousebroken\\nhouseclean\\nhousecleaned\\nhousecleaning\\nhousecleanings\\nhousecleans\\nhoused\\nhouseflies\\nhousefly\\nhouseful\\nhousefuls\\nhousehold\\nhouseholder\\nhouseholders\\nhouseholds\\nhousekeeper\\nhousekeepers\\nhousekeeping\\nhousel\\nhouseled\\nhouseling\\nhouselled\\nhouselling\\nhousels\\nhousemaid\\nhousemaids\\nhouseman\\nhousemate\\nhousemates\\nhousemen\\nhouser\\nhousers\\nhouses\\nhousetop\\nhousetops\\nhousewares\\nhousewarming\\nhousewarmings\\nhousewife\\nhousewifeliness\\nhousewifelinesses\\nhousewifely\\nhousewiferies\\nhousewifery\\nhousewives\\nhousework\\nhouseworks\\nhousing\\nhousings\\nhove\\nhovel\\nhoveled\\nhoveling\\nhovelled\\nhovelling\\nhovels\\nhover\\nhovered\\nhoverer\\nhoverers\\nhovering\\nhovers\\nhow\\nhowbeit\\nhowdah\\nhowdahs\\nhowdie\\nhowdies\\nhowdy\\nhowe\\nhowes\\nhowever\\nhowf\\nhowff\\nhowffs\\nhowfs\\nhowitzer\\nhowitzers\\nhowk\\nhowked\\nhowking\\nhowks\\nhowl\\nhowled\\nhowler\\nhowlers\\nhowlet\\nhowlets\\nhowling\\nhowls\\nhows\\nhoy\\nhoyden\\nhoydened\\nhoydening\\nhoydens\\nhoyle\\nhoyles\\nhoys\\nhuarache\\nhuaraches\\nhuaracho\\nhuarachos\\nhub\\nhubbies\\nhubbub\\nhubbubs\\nhubby\\nhubcap\\nhubcaps\\nhubris\\nhubrises\\nhubs\\nhuck\\nhuckle\\nhuckleberries\\nhuckleberry\\nhuckles\\nhucks\\nhuckster\\nhuckstered\\nhuckstering\\nhucksters\\nhuddle\\nhuddled\\nhuddler\\nhuddlers\\nhuddles\\nhuddling\\nhue\\nhued\\nhueless\\nhues\\nhuff\\nhuffed\\nhuffier\\nhuffiest\\nhuffily\\nhuffing\\nhuffish\\nhuffs\\nhuffy\\nhug\\nhuge\\nhugely\\nhugeness\\nhugenesses\\nhugeous\\nhuger\\nhugest\\nhuggable\\nhugged\\nhugger\\nhuggers\\nhugging\\nhugs\\nhuh\\nhuic\\nhula\\nhulas\\nhulk\\nhulked\\nhulkier\\nhulkiest\\nhulking\\nhulks\\nhulky\\nhull\\nhullabaloo\\nhullabaloos\\nhulled\\nhuller\\nhullers\\nhulling\\nhullo\\nhulloa\\nhulloaed\\nhulloaing\\nhulloas\\nhulloed\\nhulloes\\nhulloing\\nhullos\\nhulls\\nhum\\nhuman\\nhumane\\nhumanely\\nhumaneness\\nhumanenesses\\nhumaner\\nhumanest\\nhumanise\\nhumanised\\nhumanises\\nhumanising\\nhumanism\\nhumanisms\\nhumanist\\nhumanistic\\nhumanists\\nhumanitarian\\nhumanitarianism\\nhumanitarianisms\\nhumanitarians\\nhumanities\\nhumanity\\nhumanization\\nhumanizations\\nhumanize\\nhumanized\\nhumanizes\\nhumanizing\\nhumankind\\nhumankinds\\nhumanly\\nhumanness\\nhumannesses\\nhumanoid\\nhumanoids\\nhumans\\nhumate\\nhumates\\nhumble\\nhumbled\\nhumbleness\\nhumblenesses\\nhumbler\\nhumblers\\nhumbles\\nhumblest\\nhumbling\\nhumbly\\nhumbug\\nhumbugged\\nhumbugging\\nhumbugs\\nhumdrum\\nhumdrums\\nhumeral\\nhumerals\\nhumeri\\nhumerus\\nhumic\\nhumid\\nhumidification\\nhumidifications\\nhumidified\\nhumidifier\\nhumidifiers\\nhumidifies\\nhumidify\\nhumidifying\\nhumidities\\nhumidity\\nhumidly\\nhumidor\\nhumidors\\nhumified\\nhumiliate\\nhumiliated\\nhumiliates\\nhumiliating\\nhumiliatingly\\nhumiliation\\nhumiliations\\nhumilities\\nhumility\\nhummable\\nhummed\\nhummer\\nhummers\\nhumming\\nhummingbird\\nhummingbirds\\nhummock\\nhummocks\\nhummocky\\nhumor\\nhumoral\\nhumored\\nhumorful\\nhumoring\\nhumorist\\nhumorists\\nhumorless\\nhumorlessly\\nhumorlessness\\nhumorlessnesses\\nhumorous\\nhumorously\\nhumorousness\\nhumorousnesses\\nhumors\\nhumour\\nhumoured\\nhumouring\\nhumours\\nhump\\nhumpback\\nhumpbacked\\nhumpbacks\\nhumped\\nhumph\\nhumphed\\nhumphing\\nhumphs\\nhumpier\\nhumpiest\\nhumping\\nhumpless\\nhumps\\nhumpy\\nhums\\nhumus\\nhumuses\\nhun\\nhunch\\nhunchback\\nhunchbacked\\nhunchbacks\\nhunched\\nhunches\\nhunching\\nhundred\\nhundreds\\nhundredth\\nhundredths\\nhung\\nhunger\\nhungered\\nhungering\\nhungers\\nhungrier\\nhungriest\\nhungrily\\nhungry\\nhunk\\nhunker\\nhunkered\\nhunkering\\nhunkers\\nhunkies\\nhunks\\nhunky\\nhunnish\\nhuns\\nhunt\\nhuntable\\nhunted\\nhuntedly\\nhunter\\nhunters\\nhunting\\nhuntings\\nhuntington\\nhuntress\\nhuntresses\\nhunts\\nhuntsman\\nhuntsmen\\nhup\\nhurdies\\nhurdle\\nhurdled\\nhurdler\\nhurdlers\\nhurdles\\nhurdling\\nhurds\\nhurl\\nhurled\\nhurler\\nhurlers\\nhurley\\nhurleys\\nhurlies\\nhurling\\nhurlings\\nhurls\\nhurly\\nhurrah\\nhurrahed\\nhurrahing\\nhurrahs\\nhurray\\nhurrayed\\nhurraying\\nhurrays\\nhurricane\\nhurricanes\\nhurried\\nhurrier\\nhurriers\\nhurries\\nhurry\\nhurrying\\nhurt\\nhurter\\nhurters\\nhurtful\\nhurting\\nhurtle\\nhurtled\\nhurtles\\nhurtless\\nhurtling\\nhurts\\nhusband\\nhusbanded\\nhusbanding\\nhusbandries\\nhusbandry\\nhusbands\\nhush\\nhushaby\\nhushed\\nhushedly\\nhushes\\nhushful\\nhushing\\nhusk\\nhusked\\nhusker\\nhuskers\\nhuskier\\nhuskies\\nhuskiest\\nhuskily\\nhuskiness\\nhuskinesses\\nhusking\\nhuskings\\nhusklike\\nhusks\\nhusky\\nhussar\\nhussars\\nhussies\\nhussy\\nhustings\\nhustle\\nhustled\\nhustler\\nhustlers\\nhustles\\nhustling\\nhuswife\\nhuswifes\\nhuswives\\nhut\\nhutch\\nhutched\\nhutches\\nhutching\\nhutlike\\nhutment\\nhutments\\nhuts\\nhutted\\nhutting\\nhutzpa\\nhutzpah\\nhutzpahs\\nhutzpas\\nhuzza\\nhuzzaed\\nhuzzah\\nhuzzahed\\nhuzzahing\\nhuzzahs\\nhuzzaing\\nhuzzas\\nhwan\\nhyacinth\\nhyacinths\\nhyaena\\nhyaenas\\nhyaenic\\nhyalin\\nhyaline\\nhyalines\\nhyalins\\nhyalite\\nhyalites\\nhyalogen\\nhyalogens\\nhyaloid\\nhyaloids\\nhybrid\\nhybridization\\nhybridizations\\nhybridize\\nhybridized\\nhybridizer\\nhybridizers\\nhybridizes\\nhybridizing\\nhybrids\\nhybris\\nhybrises\\nhydatid\\nhydatids\\nhydra\\nhydracid\\nhydracids\\nhydrae\\nhydragog\\nhydragogs\\nhydrant\\nhydranth\\nhydranths\\nhydrants\\nhydras\\nhydrase\\nhydrases\\nhydrate\\nhydrated\\nhydrates\\nhydrating\\nhydrator\\nhydrators\\nhydraulic\\nhydraulics\\nhydria\\nhydriae\\nhydric\\nhydrid\\nhydride\\nhydrides\\nhydrids\\nhydro\\nhydrocarbon\\nhydrocarbons\\nhydrochloride\\nhydroelectric\\nhydroelectrically\\nhydroelectricities\\nhydroelectricity\\nhydrogel\\nhydrogels\\nhydrogen\\nhydrogenous\\nhydrogens\\nhydroid\\nhydroids\\nhydromel\\nhydromels\\nhydronic\\nhydrophobia\\nhydrophobias\\nhydropic\\nhydroplane\\nhydroplanes\\nhydrops\\nhydropses\\nhydropsies\\nhydropsy\\nhydros\\nhydrosol\\nhydrosols\\nhydrous\\nhydroxy\\nhydroxyl\\nhydroxyls\\nhydroxyurea\\nhyena\\nhyenas\\nhyenic\\nhyenine\\nhyenoid\\nhyetal\\nhygeist\\nhygeists\\nhygieist\\nhygieists\\nhygiene\\nhygienes\\nhygienic\\nhygienically\\nhygrometer\\nhygrometers\\nhygrometries\\nhygrometry\\nhying\\nhyla\\nhylas\\nhylozoic\\nhymen\\nhymenal\\nhymeneal\\nhymeneals\\nhymenia\\nhymenial\\nhymenium\\nhymeniums\\nhymens\\nhymn\\nhymnal\\nhymnals\\nhymnaries\\nhymnary\\nhymnbook\\nhymnbooks\\nhymned\\nhymning\\nhymnist\\nhymnists\\nhymnless\\nhymnlike\\nhymnodies\\nhymnody\\nhymns\\nhyoid\\nhyoidal\\nhyoidean\\nhyoids\\nhyoscine\\nhyoscines\\nhyp\\nhype\\nhyperacid\\nhyperacidities\\nhyperacidity\\nhyperactive\\nhyperacute\\nhyperadrenalism\\nhyperaggressive\\nhyperaggressiveness\\nhyperaggressivenesses\\nhyperanxious\\nhyperbole\\nhyperboles\\nhypercalcemia\\nhypercalcemias\\nhypercautious\\nhyperclean\\nhyperconscientious\\nhypercorrect\\nhypercritical\\nhyperemotional\\nhyperenergetic\\nhyperexcitable\\nhyperfastidious\\nhypergol\\nhypergols\\nhyperintense\\nhypermasculine\\nhypermilitant\\nhypermoralistic\\nhypernationalistic\\nhyperon\\nhyperons\\nhyperope\\nhyperopes\\nhyperreactive\\nhyperrealistic\\nhyperromantic\\nhypersensitive\\nhypersensitiveness\\nhypersensitivenesses\\nhypersensitivities\\nhypersensitivity\\nhypersexual\\nhypersusceptible\\nhypersuspicious\\nhypertense\\nhypertension\\nhypertensions\\nhypertensive\\nhypertensives\\nhyperthermia\\nhyperthyroidism\\nhyperuricemia\\nhypervigilant\\nhypes\\nhypha\\nhyphae\\nhyphal\\nhyphemia\\nhyphemias\\nhyphen\\nhyphenate\\nhyphenated\\nhyphenates\\nhyphenating\\nhyphenation\\nhyphenations\\nhyphened\\nhyphening\\nhyphens\\nhypnic\\nhypnoid\\nhypnoses\\nhypnosis\\nhypnotic\\nhypnotically\\nhypnotics\\nhypnotism\\nhypnotisms\\nhypnotizable\\nhypnotize\\nhypnotized\\nhypnotizes\\nhypnotizing\\nhypo\\nhypoacid\\nhypocalcemia\\nhypochondria\\nhypochondriac\\nhypochondriacs\\nhypochondrias\\nhypocrisies\\nhypocrisy\\nhypocrite\\nhypocrites\\nhypocritical\\nhypocritically\\nhypoderm\\nhypodermic\\nhypodermics\\nhypoderms\\nhypoed\\nhypogea\\nhypogeal\\nhypogean\\nhypogene\\nhypogeum\\nhypogynies\\nhypogyny\\nhypoing\\nhypokalemia\\nhyponea\\nhyponeas\\nhyponoia\\nhyponoias\\nhypopnea\\nhypopneas\\nhypopyon\\nhypopyons\\nhypos\\nhypotension\\nhypotensions\\nhypotenuse\\nhypotenuses\\nhypothec\\nhypothecs\\nhypotheses\\nhypothesis\\nhypothetical\\nhypothetically\\nhypothyroidism\\nhypoxia\\nhypoxias\\nhypoxic\\nhyps\\nhyraces\\nhyracoid\\nhyracoids\\nhyrax\\nhyraxes\\nhyson\\nhysons\\nhyssop\\nhyssops\\nhysterectomies\\nhysterectomize\\nhysterectomized\\nhysterectomizes\\nhysterectomizing\\nhysterectomy\\nhysteria\\nhysterias\\nhysteric\\nhysterical\\nhysterically\\nhysterics\\nhyte\\niamb\\niambi\\niambic\\niambics\\niambs\\niambus\\niambuses\\niatric\\niatrical\\nibex\\nibexes\\nibices\\nibidem\\nibis\\nibises\\nice\\niceberg\\nicebergs\\niceblink\\niceblinks\\niceboat\\niceboats\\nicebound\\nicebox\\niceboxes\\nicebreaker\\nicebreakers\\nicecap\\nicecaps\\niced\\nicefall\\nicefalls\\nicehouse\\nicehouses\\nicekhana\\nicekhanas\\niceless\\nicelike\\niceman\\nicemen\\nicers\\nices\\nich\\nichnite\\nichnites\\nichor\\nichorous\\nichors\\nichs\\nichthyic\\nichthyologies\\nichthyologist\\nichthyologists\\nichthyology\\nicicle\\nicicled\\nicicles\\nicier\\niciest\\nicily\\niciness\\nicinesses\\nicing\\nicings\\nicker\\nickers\\nickier\\nickiest\\nicky\\nicon\\nicones\\niconic\\niconical\\niconoclasm\\niconoclasms\\niconoclast\\niconoclasts\\nicons\\nicteric\\nicterics\\nicterus\\nicteruses\\nictic\\nictus\\nictuses\\nicy\\nid\\nidea\\nideal\\nidealess\\nidealise\\nidealised\\nidealises\\nidealising\\nidealism\\nidealisms\\nidealist\\nidealistic\\nidealists\\nidealities\\nideality\\nidealization\\nidealizations\\nidealize\\nidealized\\nidealizes\\nidealizing\\nideally\\nidealogies\\nidealogy\\nideals\\nideas\\nideate\\nideated\\nideates\\nideating\\nideation\\nideations\\nideative\\nidem\\nidems\\nidentic\\nidentical\\nidentifiable\\nidentification\\nidentifications\\nidentified\\nidentifier\\nidentifiers\\nidentifies\\nidentify\\nidentifying\\nidentities\\nidentity\\nideogram\\nideograms\\nideological\\nideologies\\nideology\\nides\\nidiocies\\nidiocy\\nidiolect\\nidiolects\\nidiom\\nidiomatic\\nidiomatically\\nidioms\\nidiosyncrasies\\nidiosyncrasy\\nidiosyncratic\\nidiot\\nidiotic\\nidiotically\\nidiotism\\nidiotisms\\nidiots\\nidle\\nidled\\nidleness\\nidlenesses\\nidler\\nidlers\\nidles\\nidlesse\\nidlesses\\nidlest\\nidling\\nidly\\nidocrase\\nidocrases\\nidol\\nidolater\\nidolaters\\nidolatries\\nidolatrous\\nidolatry\\nidolise\\nidolised\\nidoliser\\nidolisers\\nidolises\\nidolising\\nidolism\\nidolisms\\nidolize\\nidolized\\nidolizer\\nidolizers\\nidolizes\\nidolizing\\nidols\\nidoneities\\nidoneity\\nidoneous\\nids\\nidyl\\nidylist\\nidylists\\nidyll\\nidyllic\\nidyllist\\nidyllists\\nidylls\\nidyls\\nif\\niffier\\niffiest\\niffiness\\niffinesses\\niffy\\nifs\\nigloo\\nigloos\\niglu\\niglus\\nignatia\\nignatias\\nigneous\\nignified\\nignifies\\nignify\\nignifying\\nignite\\nignited\\nigniter\\nigniters\\nignites\\nigniting\\nignition\\nignitions\\nignitor\\nignitors\\nignitron\\nignitrons\\nignoble\\nignobly\\nignominies\\nignominious\\nignominiously\\nignominy\\nignoramus\\nignoramuses\\nignorance\\nignorances\\nignorant\\nignorantly\\nignore\\nignored\\nignorer\\nignorers\\nignores\\nignoring\\niguana\\niguanas\\niguanian\\niguanians\\nihram\\nihrams\\nikebana\\nikebanas\\nikon\\nikons\\nilea\\nileac\\nileal\\nileitides\\nileitis\\nileum\\nileus\\nileuses\\nilex\\nilexes\\nilia\\niliac\\niliad\\niliads\\nilial\\nilium\\nilk\\nilka\\nilks\\nill\\nillation\\nillations\\nillative\\nillatives\\nillegal\\nillegalities\\nillegality\\nillegally\\nillegibilities\\nillegibility\\nillegible\\nillegibly\\nillegitimacies\\nillegitimacy\\nillegitimate\\nillegitimately\\nillicit\\nillicitly\\nillimitable\\nillimitably\\nillinium\\nilliniums\\nilliquid\\nillite\\nilliteracies\\nilliteracy\\nilliterate\\nilliterates\\nillites\\nillitic\\nillnaturedly\\nillness\\nillnesses\\nillogic\\nillogical\\nillogically\\nillogics\\nills\\nillume\\nillumed\\nillumes\\nilluminate\\nilluminated\\nilluminates\\nilluminating\\nilluminatingly\\nillumination\\nilluminations\\nillumine\\nillumined\\nillumines\\nilluming\\nillumining\\nillusion\\nillusions\\nillusive\\nillusory\\nillustrate\\nillustrated\\nillustrates\\nillustrating\\nillustration\\nillustrations\\nillustrative\\nillustratively\\nillustrator\\nillustrators\\nillustrious\\nillustriousness\\nillustriousnesses\\nilluvia\\nilluvial\\nilluvium\\nilluviums\\nilly\\nilmenite\\nilmenites\\nimage\\nimaged\\nimageries\\nimagery\\nimages\\nimaginable\\nimaginably\\nimaginal\\nimaginary\\nimagination\\nimaginations\\nimaginative\\nimaginatively\\nimagine\\nimagined\\nimaginer\\nimaginers\\nimagines\\nimaging\\nimagining\\nimagism\\nimagisms\\nimagist\\nimagists\\nimago\\nimagoes\\nimam\\nimamate\\nimamates\\nimams\\nimaret\\nimarets\\nimaum\\nimaums\\nimbalance\\nimbalances\\nimbalm\\nimbalmed\\nimbalmer\\nimbalmers\\nimbalming\\nimbalms\\nimbark\\nimbarked\\nimbarking\\nimbarks\\nimbecile\\nimbeciles\\nimbecilic\\nimbecilities\\nimbecility\\nimbed\\nimbedded\\nimbedding\\nimbeds\\nimbibe\\nimbibed\\nimbiber\\nimbibers\\nimbibes\\nimbibing\\nimbitter\\nimbittered\\nimbittering\\nimbitters\\nimblaze\\nimblazed\\nimblazes\\nimblazing\\nimbodied\\nimbodies\\nimbody\\nimbodying\\nimbolden\\nimboldened\\nimboldening\\nimboldens\\nimbosom\\nimbosomed\\nimbosoming\\nimbosoms\\nimbower\\nimbowered\\nimbowering\\nimbowers\\nimbroglio\\nimbroglios\\nimbrown\\nimbrowned\\nimbrowning\\nimbrowns\\nimbrue\\nimbrued\\nimbrues\\nimbruing\\nimbrute\\nimbruted\\nimbrutes\\nimbruting\\nimbue\\nimbued\\nimbues\\nimbuing\\nimid\\nimide\\nimides\\nimidic\\nimido\\nimids\\nimine\\nimines\\nimino\\nimitable\\nimitate\\nimitated\\nimitates\\nimitating\\nimitation\\nimitations\\nimitator\\nimitators\\nimmaculate\\nimmaculately\\nimmane\\nimmanent\\nimmaterial\\nimmaterialities\\nimmateriality\\nimmature\\nimmatures\\nimmaturities\\nimmaturity\\nimmeasurable\\nimmeasurably\\nimmediacies\\nimmediacy\\nimmediate\\nimmediately\\nimmemorial\\nimmense\\nimmensely\\nimmenser\\nimmensest\\nimmensities\\nimmensity\\nimmerge\\nimmerged\\nimmerges\\nimmerging\\nimmerse\\nimmersed\\nimmerses\\nimmersing\\nimmersion\\nimmersions\\nimmesh\\nimmeshed\\nimmeshes\\nimmeshing\\nimmies\\nimmigrant\\nimmigrants\\nimmigrate\\nimmigrated\\nimmigrates\\nimmigrating\\nimmigration\\nimmigrations\\nimminence\\nimminences\\nimminent\\nimminently\\nimmingle\\nimmingled\\nimmingles\\nimmingling\\nimmix\\nimmixed\\nimmixes\\nimmixing\\nimmobile\\nimmobilities\\nimmobility\\nimmobilize\\nimmobilized\\nimmobilizes\\nimmobilizing\\nimmoderacies\\nimmoderacy\\nimmoderate\\nimmoderately\\nimmodest\\nimmodesties\\nimmodestly\\nimmodesty\\nimmolate\\nimmolated\\nimmolates\\nimmolating\\nimmolation\\nimmolations\\nimmoral\\nimmoralities\\nimmorality\\nimmorally\\nimmortal\\nimmortalities\\nimmortality\\nimmortalize\\nimmortalized\\nimmortalizes\\nimmortalizing\\nimmortals\\nimmotile\\nimmovabilities\\nimmovability\\nimmovable\\nimmovably\\nimmune\\nimmunes\\nimmunise\\nimmunised\\nimmunises\\nimmunising\\nimmunities\\nimmunity\\nimmunization\\nimmunizations\\nimmunize\\nimmunized\\nimmunizes\\nimmunizing\\nimmunologic\\nimmunological\\nimmunologies\\nimmunologist\\nimmunologists\\nimmunology\\nimmure\\nimmured\\nimmures\\nimmuring\\nimmutabilities\\nimmutability\\nimmutable\\nimmutably\\nimmy\\nimp\\nimpact\\nimpacted\\nimpacter\\nimpacters\\nimpacting\\nimpactor\\nimpactors\\nimpacts\\nimpaint\\nimpainted\\nimpainting\\nimpaints\\nimpair\\nimpaired\\nimpairer\\nimpairers\\nimpairing\\nimpairment\\nimpairments\\nimpairs\\nimpala\\nimpalas\\nimpale\\nimpaled\\nimpalement\\nimpalements\\nimpaler\\nimpalers\\nimpales\\nimpaling\\nimpalpable\\nimpalpably\\nimpanel\\nimpaneled\\nimpaneling\\nimpanelled\\nimpanelling\\nimpanels\\nimparities\\nimparity\\nimpark\\nimparked\\nimparking\\nimparks\\nimpart\\nimparted\\nimparter\\nimparters\\nimpartialities\\nimpartiality\\nimpartially\\nimparting\\nimparts\\nimpassable\\nimpasse\\nimpasses\\nimpassioned\\nimpassive\\nimpassively\\nimpassivities\\nimpassivity\\nimpaste\\nimpasted\\nimpastes\\nimpasting\\nimpasto\\nimpastos\\nimpatience\\nimpatiences\\nimpatiens\\nimpatient\\nimpatiently\\nimpavid\\nimpawn\\nimpawned\\nimpawning\\nimpawns\\nimpeach\\nimpeached\\nimpeaches\\nimpeaching\\nimpeachment\\nimpeachments\\nimpearl\\nimpearled\\nimpearling\\nimpearls\\nimpeccable\\nimpeccably\\nimpecunious\\nimpecuniousness\\nimpecuniousnesses\\nimped\\nimpedance\\nimpedances\\nimpede\\nimpeded\\nimpeder\\nimpeders\\nimpedes\\nimpediment\\nimpediments\\nimpeding\\nimpel\\nimpelled\\nimpeller\\nimpellers\\nimpelling\\nimpellor\\nimpellors\\nimpels\\nimpend\\nimpended\\nimpending\\nimpends\\nimpenetrabilities\\nimpenetrability\\nimpenetrable\\nimpenetrably\\nimpenitence\\nimpenitences\\nimpenitent\\nimperative\\nimperatively\\nimperatives\\nimperceptible\\nimperceptibly\\nimperfection\\nimperfections\\nimperfectly\\nimperia\\nimperial\\nimperialism\\nimperialist\\nimperialistic\\nimperials\\nimperil\\nimperiled\\nimperiling\\nimperilled\\nimperilling\\nimperils\\nimperious\\nimperiously\\nimperishable\\nimperium\\nimperiums\\nimpermanent\\nimpermanently\\nimpermeable\\nimpermissible\\nimpersonal\\nimpersonally\\nimpersonate\\nimpersonated\\nimpersonates\\nimpersonating\\nimpersonation\\nimpersonations\\nimpersonator\\nimpersonators\\nimpertinence\\nimpertinences\\nimpertinent\\nimpertinently\\nimperturbable\\nimpervious\\nimpetigo\\nimpetigos\\nimpetuous\\nimpetuousities\\nimpetuousity\\nimpetuously\\nimpetus\\nimpetuses\\nimphee\\nimphees\\nimpi\\nimpieties\\nimpiety\\nimping\\nimpinge\\nimpinged\\nimpingement\\nimpingements\\nimpinger\\nimpingers\\nimpinges\\nimpinging\\nimpings\\nimpious\\nimpis\\nimpish\\nimpishly\\nimpishness\\nimpishnesses\\nimplacabilities\\nimplacability\\nimplacable\\nimplacably\\nimplant\\nimplanted\\nimplanting\\nimplants\\nimplausibilities\\nimplausibility\\nimplausible\\nimplead\\nimpleaded\\nimpleading\\nimpleads\\nimpledge\\nimpledged\\nimpledges\\nimpledging\\nimplement\\nimplementation\\nimplementations\\nimplemented\\nimplementing\\nimplements\\nimplicate\\nimplicated\\nimplicates\\nimplicating\\nimplication\\nimplications\\nimplicit\\nimplicitly\\nimplied\\nimplies\\nimplode\\nimploded\\nimplodes\\nimploding\\nimplore\\nimplored\\nimplorer\\nimplorers\\nimplores\\nimploring\\nimplosion\\nimplosions\\nimplosive\\nimply\\nimplying\\nimpolicies\\nimpolicy\\nimpolite\\nimpolitic\\nimponderable\\nimponderables\\nimpone\\nimponed\\nimpones\\nimponing\\nimporous\\nimport\\nimportance\\nimportant\\nimportantly\\nimportation\\nimportations\\nimported\\nimporter\\nimporters\\nimporting\\nimports\\nimportunate\\nimportune\\nimportuned\\nimportunes\\nimportuning\\nimportunities\\nimportunity\\nimpose\\nimposed\\nimposer\\nimposers\\nimposes\\nimposing\\nimposingly\\nimposition\\nimpositions\\nimpossibilities\\nimpossibility\\nimpossible\\nimpossibly\\nimpost\\nimposted\\nimposter\\nimposters\\nimposting\\nimpostor\\nimpostors\\nimposts\\nimposture\\nimpostures\\nimpotence\\nimpotences\\nimpotencies\\nimpotency\\nimpotent\\nimpotently\\nimpotents\\nimpound\\nimpounded\\nimpounding\\nimpoundment\\nimpoundments\\nimpounds\\nimpoverish\\nimpoverished\\nimpoverishes\\nimpoverishing\\nimpoverishment\\nimpoverishments\\nimpower\\nimpowered\\nimpowering\\nimpowers\\nimpracticable\\nimpractical\\nimprecise\\nimprecisely\\nimpreciseness\\nimprecisenesses\\nimprecision\\nimpregabilities\\nimpregability\\nimpregable\\nimpregn\\nimpregnate\\nimpregnated\\nimpregnates\\nimpregnating\\nimpregnation\\nimpregnations\\nimpregned\\nimpregning\\nimpregns\\nimpresa\\nimpresario\\nimpresarios\\nimpresas\\nimprese\\nimpreses\\nimpress\\nimpressed\\nimpresses\\nimpressible\\nimpressing\\nimpression\\nimpressionable\\nimpressions\\nimpressive\\nimpressively\\nimpressiveness\\nimpressivenesses\\nimpressment\\nimpressments\\nimprest\\nimprests\\nimprimatur\\nimprimaturs\\nimprimis\\nimprint\\nimprinted\\nimprinting\\nimprints\\nimprison\\nimprisoned\\nimprisoning\\nimprisonment\\nimprisonments\\nimprisons\\nimprobabilities\\nimprobability\\nimprobable\\nimprobably\\nimpromptu\\nimpromptus\\nimproper\\nimproperly\\nimproprieties\\nimpropriety\\nimprovable\\nimprove\\nimproved\\nimprovement\\nimprovements\\nimprover\\nimprovers\\nimproves\\nimprovidence\\nimprovidences\\nimprovident\\nimproving\\nimprovisation\\nimprovisations\\nimproviser\\nimprovisers\\nimprovisor\\nimprovisors\\nimprudence\\nimprudences\\nimprudent\\nimps\\nimpudence\\nimpudences\\nimpudent\\nimpudently\\nimpugn\\nimpugned\\nimpugner\\nimpugners\\nimpugning\\nimpugns\\nimpulse\\nimpulsed\\nimpulses\\nimpulsing\\nimpulsion\\nimpulsions\\nimpulsive\\nimpulsively\\nimpulsiveness\\nimpulsivenesses\\nimpunities\\nimpunity\\nimpure\\nimpurely\\nimpurities\\nimpurity\\nimputation\\nimputations\\nimpute\\nimputed\\nimputer\\nimputers\\nimputes\\nimputing\\nin\\ninabilities\\ninability\\ninaccessibilities\\ninaccessibility\\ninaccessible\\ninaccuracies\\ninaccuracy\\ninaccurate\\ninaction\\ninactions\\ninactivate\\ninactivated\\ninactivates\\ninactivating\\ninactive\\ninactivities\\ninactivity\\ninadequacies\\ninadequacy\\ninadequate\\ninadequately\\ninadmissibility\\ninadmissible\\ninadvertence\\ninadvertences\\ninadvertencies\\ninadvertency\\ninadvertent\\ninadvertently\\ninadvisabilities\\ninadvisability\\ninadvisable\\ninalienabilities\\ninalienability\\ninalienable\\ninalienably\\ninane\\ninanely\\ninaner\\ninanes\\ninanest\\ninanimate\\ninanimately\\ninanimateness\\ninanimatenesses\\ninanities\\ninanition\\ninanitions\\ninanity\\ninapparent\\ninapplicable\\ninapposite\\ninappositely\\ninappositeness\\ninappositenesses\\ninappreciable\\ninappreciably\\ninappreciative\\ninapproachable\\ninappropriate\\ninappropriately\\ninappropriateness\\ninappropriatenesses\\ninapt\\ninaptly\\ninarable\\ninarch\\ninarched\\ninarches\\ninarching\\ninarguable\\ninarm\\ninarmed\\ninarming\\ninarms\\ninarticulate\\ninarticulately\\ninartistic\\ninartistically\\ninattention\\ninattentions\\ninattentive\\ninattentively\\ninattentiveness\\ninattentivenesses\\ninaudible\\ninaudibly\\ninaugurate\\ninaugurated\\ninaugurates\\ninaugurating\\ninauguration\\ninaugurations\\ninauspicious\\ninauthentic\\ninbeing\\ninbeings\\ninboard\\ninboards\\ninborn\\ninbound\\ninbounds\\ninbred\\ninbreed\\ninbreeding\\ninbreedings\\ninbreeds\\ninbuilt\\ninburst\\ninbursts\\ninby\\ninbye\\nincage\\nincaged\\nincages\\nincaging\\nincalculable\\nincalculably\\nincandescence\\nincandescences\\nincandescent\\nincantation\\nincantations\\nincapabilities\\nincapability\\nincapable\\nincapacitate\\nincapacitated\\nincapacitates\\nincapacitating\\nincapacities\\nincapacity\\nincarcerate\\nincarcerated\\nincarcerates\\nincarcerating\\nincarceration\\nincarcerations\\nincarnation\\nincarnations\\nincase\\nincased\\nincases\\nincasing\\nincautious\\nincendiaries\\nincendiary\\nincense\\nincensed\\nincenses\\nincensing\\nincentive\\nincentives\\nincept\\nincepted\\nincepting\\ninception\\ninceptions\\ninceptor\\ninceptors\\nincepts\\nincessant\\nincessantly\\nincest\\nincests\\nincestuous\\ninch\\ninched\\ninches\\ninching\\ninchmeal\\ninchoate\\ninchworm\\ninchworms\\nincidence\\nincidences\\nincident\\nincidental\\nincidentally\\nincidentals\\nincidents\\nincinerate\\nincinerated\\nincinerates\\nincinerating\\nincinerator\\nincinerators\\nincipient\\nincipit\\nincipits\\nincise\\nincised\\nincises\\nincising\\nincision\\nincisions\\nincisive\\nincisively\\nincisor\\nincisors\\nincisory\\nincisure\\nincisures\\nincitant\\nincitants\\nincite\\nincited\\nincitement\\nincitements\\ninciter\\ninciters\\nincites\\ninciting\\nincivil\\nincivilities\\nincivility\\ninclasp\\ninclasped\\ninclasping\\ninclasps\\ninclemencies\\ninclemency\\ninclement\\ninclination\\ninclinations\\nincline\\ninclined\\nincliner\\nincliners\\ninclines\\ninclining\\ninclip\\ninclipped\\ninclipping\\ninclips\\ninclose\\ninclosed\\nincloser\\ninclosers\\nincloses\\ninclosing\\ninclosure\\ninclosures\\ninclude\\nincluded\\nincludes\\nincluding\\ninclusion\\ninclusions\\ninclusive\\nincog\\nincognito\\nincogs\\nincoherence\\nincoherences\\nincoherent\\nincoherently\\nincohesive\\nincombustible\\nincome\\nincomer\\nincomers\\nincomes\\nincoming\\nincomings\\nincommensurate\\nincommodious\\nincommunicable\\nincommunicado\\nincomparable\\nincompatibility\\nincompatible\\nincompetence\\nincompetences\\nincompetencies\\nincompetency\\nincompetent\\nincompetents\\nincomplete\\nincompletely\\nincompleteness\\nincompletenesses\\nincomprehensible\\ninconceivable\\ninconceivably\\ninconclusive\\nincongruent\\nincongruities\\nincongruity\\nincongruous\\nincongruously\\ninconnu\\ninconnus\\ninconsecutive\\ninconsequence\\ninconsequences\\ninconsequential\\ninconsequentially\\ninconsiderable\\ninconsiderate\\ninconsiderately\\ninconsiderateness\\ninconsideratenesses\\ninconsistencies\\ninconsistency\\ninconsistent\\ninconsistently\\ninconsolable\\ninconsolably\\ninconspicuous\\ninconspicuously\\ninconstancies\\ninconstancy\\ninconstant\\ninconstantly\\ninconsumable\\nincontestable\\nincontestably\\nincontinence\\nincontinences\\ninconvenience\\ninconvenienced\\ninconveniences\\ninconveniencing\\ninconvenient\\ninconveniently\\nincony\\nincorporate\\nincorporated\\nincorporates\\nincorporating\\nincorporation\\nincorporations\\nincorporeal\\nincorporeally\\nincorpse\\nincorpsed\\nincorpses\\nincorpsing\\nincorrect\\nincorrectly\\nincorrectness\\nincorrectnesses\\nincorrigibilities\\nincorrigibility\\nincorrigible\\nincorrigibly\\nincorruptible\\nincrease\\nincreased\\nincreases\\nincreasing\\nincreasingly\\nincreate\\nincredibilities\\nincredibility\\nincredible\\nincredibly\\nincredulities\\nincredulity\\nincredulous\\nincredulously\\nincrement\\nincremental\\nincremented\\nincrementing\\nincrements\\nincriminate\\nincriminated\\nincriminates\\nincriminating\\nincrimination\\nincriminations\\nincriminatory\\nincross\\nincrosses\\nincrust\\nincrusted\\nincrusting\\nincrusts\\nincubate\\nincubated\\nincubates\\nincubating\\nincubation\\nincubations\\nincubator\\nincubators\\nincubi\\nincubus\\nincubuses\\nincudal\\nincudate\\nincudes\\ninculcate\\ninculcated\\ninculcates\\ninculcating\\ninculcation\\ninculcations\\ninculpable\\nincult\\nincumbencies\\nincumbency\\nincumbent\\nincumbents\\nincumber\\nincumbered\\nincumbering\\nincumbers\\nincur\\nincurable\\nincurious\\nincurred\\nincurring\\nincurs\\nincursion\\nincursions\\nincurve\\nincurved\\nincurves\\nincurving\\nincus\\nincuse\\nincused\\nincuses\\nincusing\\nindaba\\nindabas\\nindagate\\nindagated\\nindagates\\nindagating\\nindamin\\nindamine\\nindamines\\nindamins\\nindebted\\nindebtedness\\nindebtednesses\\nindecencies\\nindecency\\nindecent\\nindecenter\\nindecentest\\nindecently\\nindecipherable\\nindecision\\nindecisions\\nindecisive\\nindecisively\\nindecisiveness\\nindecisivenesses\\nindecorous\\nindecorously\\nindecorousness\\nindecorousnesses\\nindeed\\nindefatigable\\nindefatigably\\nindefensible\\nindefinable\\nindefinably\\nindefinite\\nindefinitely\\nindelible\\nindelibly\\nindelicacies\\nindelicacy\\nindelicate\\nindemnification\\nindemnifications\\nindemnified\\nindemnifies\\nindemnify\\nindemnifying\\nindemnities\\nindemnity\\nindene\\nindenes\\nindent\\nindentation\\nindentations\\nindented\\nindenter\\nindenters\\nindenting\\nindentor\\nindentors\\nindents\\nindenture\\nindentured\\nindentures\\nindenturing\\nindependence\\nindependent\\nindependently\\nindescribable\\nindescribably\\nindestrucibility\\nindestrucible\\nindeterminacies\\nindeterminacy\\nindeterminate\\nindeterminately\\nindevout\\nindex\\nindexed\\nindexer\\nindexers\\nindexes\\nindexing\\nindia\\nindican\\nindicans\\nindicant\\nindicants\\nindicate\\nindicated\\nindicates\\nindicating\\nindication\\nindications\\nindicative\\nindicator\\nindicators\\nindices\\nindicia\\nindicias\\nindicium\\nindiciums\\nindict\\nindictable\\nindicted\\nindictee\\nindictees\\nindicter\\nindicters\\nindicting\\nindictment\\nindictments\\nindictor\\nindictors\\nindicts\\nindifference\\nindifferences\\nindifferent\\nindifferently\\nindigen\\nindigence\\nindigences\\nindigene\\nindigenes\\nindigenous\\nindigens\\nindigent\\nindigents\\nindigestible\\nindigestion\\nindigestions\\nindign\\nindignant\\nindignantly\\nindignation\\nindignations\\nindignities\\nindignity\\nindignly\\nindigo\\nindigoes\\nindigoid\\nindigoids\\nindigos\\nindirect\\nindirection\\nindirections\\nindirectly\\nindirectness\\nindirectnesses\\nindiscernible\\nindiscreet\\nindiscretion\\nindiscretions\\nindiscriminate\\nindiscriminately\\nindispensabilities\\nindispensability\\nindispensable\\nindispensables\\nindispensably\\nindisposed\\nindisposition\\nindispositions\\nindisputable\\nindisputably\\nindissoluble\\nindistinct\\nindistinctly\\nindistinctness\\nindistinctnesses\\nindistinguishable\\nindite\\nindited\\ninditer\\ninditers\\nindites\\ninditing\\nindium\\nindiums\\nindividual\\nindividualities\\nindividuality\\nindividualize\\nindividualized\\nindividualizes\\nindividualizing\\nindividually\\nindividuals\\nindivisibility\\nindivisible\\nindocile\\nindoctrinate\\nindoctrinated\\nindoctrinates\\nindoctrinating\\nindoctrination\\nindoctrinations\\nindol\\nindole\\nindolence\\nindolences\\nindolent\\nindoles\\nindols\\nindominitable\\nindominitably\\nindoor\\nindoors\\nindorse\\nindorsed\\nindorsee\\nindorsees\\nindorser\\nindorsers\\nindorses\\nindorsing\\nindorsor\\nindorsors\\nindow\\nindowed\\nindowing\\nindows\\nindoxyl\\nindoxyls\\nindraft\\nindrafts\\nindrawn\\nindri\\nindris\\nindubitable\\nindubitably\\ninduce\\ninduced\\ninducement\\ninducements\\ninducer\\ninducers\\ninduces\\ninducing\\ninduct\\ninducted\\ninductee\\ninductees\\ninducting\\ninduction\\ninductions\\ninductive\\ninductor\\ninductors\\ninducts\\nindue\\nindued\\nindues\\ninduing\\nindulge\\nindulged\\nindulgence\\nindulgent\\nindulgently\\nindulger\\nindulgers\\nindulges\\nindulging\\nindulin\\ninduline\\nindulines\\nindulins\\nindult\\nindults\\nindurate\\nindurated\\nindurates\\nindurating\\nindusia\\nindusial\\nindusium\\nindustrial\\nindustrialist\\nindustrialization\\nindustrializations\\nindustrialize\\nindustrialized\\nindustrializes\\nindustrializing\\nindustrially\\nindustries\\nindustrious\\nindustriously\\nindustriousness\\nindustriousnesses\\nindustry\\nindwell\\nindwelling\\nindwells\\nindwelt\\ninearth\\ninearthed\\ninearthing\\ninearths\\ninebriate\\ninebriated\\ninebriates\\ninebriating\\ninebriation\\ninebriations\\ninedible\\ninedita\\ninedited\\nineducable\\nineffable\\nineffably\\nineffective\\nineffectively\\nineffectiveness\\nineffectivenesses\\nineffectual\\nineffectually\\nineffectualness\\nineffectualnesses\\ninefficiency\\ninefficient\\ninefficiently\\ninelastic\\ninelasticities\\ninelasticity\\ninelegance\\ninelegances\\ninelegant\\nineligibility\\nineligible\\ninept\\nineptitude\\nineptitudes\\nineptly\\nineptness\\nineptnesses\\ninequalities\\ninequality\\ninequities\\ninequity\\nineradicable\\ninerrant\\ninert\\ninertia\\ninertiae\\ninertial\\ninertias\\ninertly\\ninertness\\ninertnesses\\ninerts\\ninescapable\\ninescapably\\ninessential\\ninestimable\\ninestimably\\ninevitabilities\\ninevitability\\ninevitable\\ninevitably\\ninexact\\ninexcusable\\ninexcusably\\ninexhaustible\\ninexhaustibly\\ninexorable\\ninexorably\\ninexpedient\\ninexpensive\\ninexperience\\ninexperienced\\ninexperiences\\ninexpert\\ninexpertly\\ninexpertness\\ninexpertnesses\\ninexperts\\ninexplicable\\ninexplicably\\ninexplicit\\ninexpressible\\ninexpressibly\\ninextinguishable\\ninextricable\\ninextricably\\ninfallibility\\ninfallible\\ninfallibly\\ninfamies\\ninfamous\\ninfamously\\ninfamy\\ninfancies\\ninfancy\\ninfant\\ninfanta\\ninfantas\\ninfante\\ninfantes\\ninfantile\\ninfantries\\ninfantry\\ninfants\\ninfarct\\ninfarcts\\ninfare\\ninfares\\ninfatuate\\ninfatuated\\ninfatuates\\ninfatuating\\ninfatuation\\ninfatuations\\ninfauna\\ninfaunae\\ninfaunal\\ninfaunas\\ninfeasibilities\\ninfeasibility\\ninfeasible\\ninfect\\ninfected\\ninfecter\\ninfecters\\ninfecting\\ninfection\\ninfections\\ninfectious\\ninfective\\ninfector\\ninfectors\\ninfects\\ninfecund\\ninfelicities\\ninfelicitous\\ninfelicity\\ninfeoff\\ninfeoffed\\ninfeoffing\\ninfeoffs\\ninfer\\ninference\\ninferenced\\ninferences\\ninferencing\\ninferential\\ninferior\\ninferiority\\ninferiors\\ninfernal\\ninfernally\\ninferno\\ninfernos\\ninferred\\ninferrer\\ninferrers\\ninferring\\ninfers\\ninfertile\\ninfertilities\\ninfertility\\ninfest\\ninfestation\\ninfestations\\ninfested\\ninfester\\ninfesters\\ninfesting\\ninfests\\ninfidel\\ninfidelities\\ninfidelity\\ninfidels\\ninfield\\ninfielder\\ninfielders\\ninfields\\ninfiltrate\\ninfiltrated\\ninfiltrates\\ninfiltrating\\ninfiltration\\ninfiltrations\\ninfinite\\ninfinitely\\ninfinites\\ninfinitesimal\\ninfinitesimally\\ninfinities\\ninfinitive\\ninfinitives\\ninfinitude\\ninfinitudes\\ninfinity\\ninfirm\\ninfirmaries\\ninfirmary\\ninfirmed\\ninfirming\\ninfirmities\\ninfirmity\\ninfirmly\\ninfirms\\ninfix\\ninfixed\\ninfixes\\ninfixing\\ninfixion\\ninfixions\\ninflame\\ninflamed\\ninflamer\\ninflamers\\ninflames\\ninflaming\\ninflammable\\ninflammation\\ninflammations\\ninflammatory\\ninflatable\\ninflate\\ninflated\\ninflater\\ninflaters\\ninflates\\ninflating\\ninflation\\ninflationary\\ninflator\\ninflators\\ninflect\\ninflected\\ninflecting\\ninflection\\ninflectional\\ninflections\\ninflects\\ninflexed\\ninflexibilities\\ninflexibility\\ninflexible\\ninflexibly\\ninflict\\ninflicted\\ninflicting\\ninfliction\\ninflictions\\ninflicts\\ninflight\\ninflow\\ninflows\\ninfluence\\ninfluences\\ninfluent\\ninfluential\\ninfluents\\ninfluenza\\ninfluenzas\\ninflux\\ninfluxes\\ninfo\\ninfold\\ninfolded\\ninfolder\\ninfolders\\ninfolding\\ninfolds\\ninform\\ninformal\\ninformalities\\ninformality\\ninformally\\ninformant\\ninformants\\ninformation\\ninformational\\ninformations\\ninformative\\ninformed\\ninformer\\ninformers\\ninforming\\ninforms\\ninfos\\ninfra\\ninfract\\ninfracted\\ninfracting\\ninfraction\\ninfractions\\ninfracts\\ninfrared\\ninfrareds\\ninfrequent\\ninfrequently\\ninfringe\\ninfringed\\ninfringement\\ninfringements\\ninfringes\\ninfringing\\ninfrugal\\ninfuriate\\ninfuriated\\ninfuriates\\ninfuriating\\ninfuriatingly\\ninfuse\\ninfused\\ninfuser\\ninfusers\\ninfuses\\ninfusing\\ninfusion\\ninfusions\\ninfusive\\ningate\\ningates\\ningather\\ningathered\\ningathering\\ningathers\\ningenious\\ningeniously\\ningeniousness\\ningeniousnesses\\ningenue\\ningenues\\ningenuities\\ningenuity\\ningenuous\\ningenuously\\ningenuousness\\ningenuousnesses\\ningest\\ningesta\\ningested\\ningesting\\ningests\\ningle\\ninglenook\\ninglenooks\\ningles\\ninglorious\\ningloriously\\ningoing\\ningot\\ningoted\\ningoting\\ningots\\ningraft\\ningrafted\\ningrafting\\ningrafts\\ningrain\\ningrained\\ningraining\\ningrains\\ningrate\\ningrates\\ningratiate\\ningratiated\\ningratiates\\ningratiating\\ningratitude\\ningratitudes\\ningredient\\ningredients\\ningress\\ningresses\\ningroup\\ningroups\\ningrown\\ningrowth\\ningrowths\\ninguinal\\ningulf\\ningulfed\\ningulfing\\ningulfs\\ninhabit\\ninhabitable\\ninhabitant\\ninhabited\\ninhabiting\\ninhabits\\ninhalant\\ninhalants\\ninhalation\\ninhalations\\ninhale\\ninhaled\\ninhaler\\ninhalers\\ninhales\\ninhaling\\ninhaul\\ninhauler\\ninhaulers\\ninhauls\\ninhere\\ninhered\\ninherent\\ninherently\\ninheres\\ninhering\\ninherit\\ninheritance\\ninheritances\\ninherited\\ninheriting\\ninheritor\\ninheritors\\ninherits\\ninhesion\\ninhesions\\ninhibit\\ninhibited\\ninhibiting\\ninhibition\\ninhibitions\\ninhibits\\ninhuman\\ninhumane\\ninhumanely\\ninhumanities\\ninhumanity\\ninhumanly\\ninhume\\ninhumed\\ninhumer\\ninhumers\\ninhumes\\ninhuming\\ninia\\ninimical\\ninimically\\ninimitable\\ninion\\niniquities\\niniquitous\\niniquity\\ninitial\\ninitialed\\ninitialing\\ninitialization\\ninitializations\\ninitialize\\ninitialized\\ninitializes\\ninitializing\\ninitialled\\ninitialling\\ninitially\\ninitials\\ninitiate\\ninitiated\\ninitiates\\ninitiating\\ninitiation\\ninitiations\\ninitiative\\ninitiatory\\ninject\\ninjected\\ninjecting\\ninjection\\ninjections\\ninjector\\ninjectors\\ninjects\\ninjudicious\\ninjudiciously\\ninjudiciousness\\ninjudiciousnesses\\ninjunction\\ninjunctions\\ninjure\\ninjured\\ninjurer\\ninjurers\\ninjures\\ninjuries\\ninjuring\\ninjurious\\ninjury\\nink\\ninkberries\\ninkberry\\ninkblot\\ninkblots\\ninked\\ninker\\ninkers\\ninkhorn\\ninkhorns\\ninkier\\ninkiest\\ninkiness\\ninkinesses\\ninking\\ninkle\\ninkles\\ninkless\\ninklike\\ninkling\\ninklings\\ninkpot\\ninkpots\\ninks\\ninkstand\\ninkstands\\ninkwell\\ninkwells\\ninkwood\\ninkwoods\\ninky\\ninlace\\ninlaced\\ninlaces\\ninlacing\\ninlaid\\ninland\\ninlander\\ninlanders\\ninlands\\ninlay\\ninlayer\\ninlayers\\ninlaying\\ninlays\\ninlet\\ninlets\\ninletting\\ninlier\\ninliers\\ninly\\ninmate\\ninmates\\ninmesh\\ninmeshed\\ninmeshes\\ninmeshing\\ninmost\\ninn\\ninnards\\ninnate\\ninnately\\ninned\\ninner\\ninnerly\\ninnermost\\ninners\\ninnersole\\ninnersoles\\ninnerve\\ninnerved\\ninnerves\\ninnerving\\ninning\\ninnings\\ninnkeeper\\ninnkeepers\\ninnless\\ninnocence\\ninnocences\\ninnocent\\ninnocenter\\ninnocentest\\ninnocently\\ninnocents\\ninnocuous\\ninnovate\\ninnovated\\ninnovates\\ninnovating\\ninnovation\\ninnovations\\ninnovative\\ninnovator\\ninnovators\\ninns\\ninnuendo\\ninnuendoed\\ninnuendoes\\ninnuendoing\\ninnuendos\\ninnumerable\\ninocula\\ninoculate\\ninoculated\\ninoculates\\ninoculating\\ninoculation\\ninoculations\\ninoculum\\ninoculums\\ninoffensive\\ninoperable\\ninoperative\\ninopportune\\ninopportunely\\ninordinate\\ninordinately\\ninorganic\\ninosite\\ninosites\\ninositol\\ninositols\\ninpatient\\ninpatients\\ninphase\\ninpour\\ninpoured\\ninpouring\\ninpours\\ninput\\ninputs\\ninputted\\ninputting\\ninquest\\ninquests\\ninquiet\\ninquieted\\ninquieting\\ninquiets\\ninquire\\ninquired\\ninquirer\\ninquirers\\ninquires\\ninquiries\\ninquiring\\ninquiringly\\ninquiry\\ninquisition\\ninquisitions\\ninquisitive\\ninquisitively\\ninquisitiveness\\ninquisitivenesses\\ninquisitor\\ninquisitorial\\ninquisitors\\ninroad\\ninroads\\ninrush\\ninrushes\\nins\\ninsalubrious\\ninsane\\ninsanely\\ninsaner\\ninsanest\\ninsanities\\ninsanity\\ninsatiable\\ninsatiate\\ninscribe\\ninscribed\\ninscribes\\ninscribing\\ninscription\\ninscriptions\\ninscroll\\ninscrolled\\ninscrolling\\ninscrolls\\ninscrutable\\ninscrutably\\ninsculp\\ninsculped\\ninsculping\\ninsculps\\ninseam\\ninseams\\ninsect\\ninsectan\\ninsecticidal\\ninsecticide\\ninsecticides\\ninsects\\ninsecuration\\ninsecurations\\ninsecure\\ninsecurely\\ninsecurities\\ninsecurity\\ninsensibilities\\ninsensibility\\ninsensible\\ninsensibly\\ninsensitive\\ninsensitivities\\ninsensitivity\\ninsentience\\ninsentiences\\ninsentient\\ninseparable\\ninsert\\ninserted\\ninserter\\ninserters\\ninserting\\ninsertion\\ninsertions\\ninserts\\ninset\\ninsets\\ninsetted\\ninsetter\\ninsetters\\ninsetting\\ninsheath\\ninsheathed\\ninsheathing\\ninsheaths\\ninshore\\ninshrine\\ninshrined\\ninshrines\\ninshrining\\ninside\\ninsider\\ninsiders\\ninsides\\ninsidious\\ninsidiously\\ninsidiousness\\ninsidiousnesses\\ninsight\\ninsightful\\ninsights\\ninsigne\\ninsignia\\ninsignias\\ninsignificant\\ninsincere\\ninsincerely\\ninsincerities\\ninsincerity\\ninsinuate\\ninsinuated\\ninsinuates\\ninsinuating\\ninsinuation\\ninsinuations\\ninsipid\\ninsipidities\\ninsipidity\\ninsipidus\\ninsist\\ninsisted\\ninsistence\\ninsistences\\ninsistent\\ninsistently\\ninsister\\ninsisters\\ninsisting\\ninsists\\ninsnare\\ninsnared\\ninsnarer\\ninsnarers\\ninsnares\\ninsnaring\\ninsofar\\ninsolate\\ninsolated\\ninsolates\\ninsolating\\ninsole\\ninsolence\\ninsolences\\ninsolent\\ninsolents\\ninsoles\\ninsolubilities\\ninsolubility\\ninsoluble\\ninsolvencies\\ninsolvency\\ninsolvent\\ninsomnia\\ninsomnias\\ninsomuch\\ninsouciance\\ninsouciances\\ninsouciant\\ninsoul\\ninsouled\\ninsouling\\ninsouls\\ninspan\\ninspanned\\ninspanning\\ninspans\\ninspect\\ninspected\\ninspecting\\ninspection\\ninspections\\ninspector\\ninspectors\\ninspects\\ninsphere\\ninsphered\\ninspheres\\ninsphering\\ninspiration\\ninspirational\\ninspirations\\ninspire\\ninspired\\ninspirer\\ninspirers\\ninspires\\ninspiring\\ninspirit\\ninspirited\\ninspiriting\\ninspirits\\ninstabilities\\ninstability\\ninstable\\ninstal\\ninstall\\ninstallation\\ninstallations\\ninstalled\\ninstalling\\ninstallment\\ninstallments\\ninstalls\\ninstals\\ninstance\\ninstanced\\ninstances\\ninstancies\\ninstancing\\ninstancy\\ninstant\\ninstantaneous\\ninstantaneously\\ninstantly\\ninstants\\ninstar\\ninstarred\\ninstarring\\ninstars\\ninstate\\ninstated\\ninstates\\ninstating\\ninstead\\ninstep\\ninsteps\\ninstigate\\ninstigated\\ninstigates\\ninstigating\\ninstigation\\ninstigations\\ninstigator\\ninstigators\\ninstil\\ninstill\\ninstilled\\ninstilling\\ninstills\\ninstils\\ninstinct\\ninstinctive\\ninstinctively\\ninstincts\\ninstitute\\ninstitutes\\ninstitution\\ninstitutional\\ninstitutionalize\\ninstitutionally\\ninstitutions\\ninstransitive\\ninstroke\\ninstrokes\\ninstruct\\ninstructed\\ninstructing\\ninstruction\\ninstructional\\ninstructions\\ninstructive\\ninstructor\\ninstructors\\ninstructorship\\ninstructorships\\ninstructs\\ninstrument\\ninstrumental\\ninstrumentalist\\ninstrumentalists\\ninstrumentalities\\ninstrumentality\\ninstrumentals\\ninstrumentation\\ninstrumentations\\ninstruments\\ninsubordinate\\ninsubordination\\ninsubordinations\\ninsubstantial\\ninsufferable\\ninsufferably\\ninsufficent\\ninsufficiencies\\ninsufficiency\\ninsufficient\\ninsufficiently\\ninsulant\\ninsulants\\ninsular\\ninsularities\\ninsularity\\ninsulars\\ninsulate\\ninsulated\\ninsulates\\ninsulating\\ninsulation\\ninsulations\\ninsulator\\ninsulators\\ninsulin\\ninsulins\\ninsult\\ninsulted\\ninsulter\\ninsulters\\ninsulting\\ninsultingly\\ninsults\\ninsuperable\\ninsuperably\\ninsupportable\\ninsurable\\ninsurance\\ninsurances\\ninsurant\\ninsurants\\ninsure\\ninsured\\ninsureds\\ninsurer\\ninsurers\\ninsures\\ninsurgence\\ninsurgences\\ninsurgencies\\ninsurgency\\ninsurgent\\ninsurgents\\ninsuring\\ninsurmounable\\ninsurmounably\\ninsurrection\\ninsurrectionist\\ninsurrectionists\\ninsurrections\\ninswathe\\ninswathed\\ninswathes\\ninswathing\\ninswept\\nintact\\nintagli\\nintaglio\\nintaglios\\nintake\\nintakes\\nintangibilities\\nintangibility\\nintangible\\nintangibly\\nintarsia\\nintarsias\\ninteger\\nintegers\\nintegral\\nintegrals\\nintegrate\\nintegrated\\nintegrates\\nintegrating\\nintegration\\nintegrities\\nintegrity\\nintellect\\nintellects\\nintellectual\\nintellectualism\\nintellectualisms\\nintellectually\\nintellectuals\\nintelligence\\nintelligent\\nintelligently\\nintelligibilities\\nintelligibility\\nintelligible\\nintelligibly\\nintemperance\\nintemperances\\nintemperate\\nintemperateness\\nintemperatenesses\\nintend\\nintended\\nintendeds\\nintender\\nintenders\\nintending\\nintends\\nintense\\nintensely\\nintenser\\nintensest\\nintensification\\nintensifications\\nintensified\\nintensifies\\nintensify\\nintensifying\\nintensities\\nintensity\\nintensive\\nintensively\\nintent\\nintention\\nintentional\\nintentionally\\nintentions\\nintently\\nintentness\\nintentnesses\\nintents\\ninter\\ninteract\\ninteracted\\ninteracting\\ninteraction\\ninteractions\\ninteractive\\ninteractively\\ninteracts\\ninteragency\\ninteratomic\\ninterbank\\ninterborough\\ninterbred\\ninterbreed\\ninterbreeding\\ninterbreeds\\ninterbusiness\\nintercalate\\nintercalated\\nintercalates\\nintercalating\\nintercalation\\nintercalations\\nintercampus\\nintercede\\ninterceded\\nintercedes\\ninterceding\\nintercept\\nintercepted\\nintercepting\\ninterception\\ninterceptions\\ninterceptor\\ninterceptors\\nintercepts\\nintercession\\nintercessions\\nintercessor\\nintercessors\\nintercessory\\ninterchange\\ninterchangeable\\ninterchangeably\\ninterchanged\\ninterchanges\\ninterchanging\\ninterchurch\\nintercity\\ninterclass\\nintercoastal\\nintercollegiate\\nintercolonial\\nintercom\\nintercommunal\\nintercommunity\\nintercompany\\nintercoms\\nintercontinental\\ninterconversion\\nintercounty\\nintercourse\\nintercourses\\nintercultural\\nintercurrent\\nintercut\\nintercuts\\nintercutting\\ninterdenominational\\ninterdepartmental\\ninterdependence\\ninterdependences\\ninterdependent\\ninterdict\\ninterdicted\\ninterdicting\\ninterdiction\\ninterdictions\\ninterdicts\\ninterdivisional\\ninterelectronic\\ninterest\\ninterested\\ninteresting\\ninterestingly\\ninterests\\ninterethnic\\ninterface\\ninterfaces\\ninterfacial\\ninterfaculty\\ninterfamily\\ninterfere\\ninterfered\\ninterference\\ninterferences\\ninterferes\\ninterfering\\ninterfiber\\ninterfraternity\\nintergalactic\\nintergang\\nintergovernmental\\nintergroup\\ninterhemispheric\\ninterim\\ninterims\\ninterindustry\\ninterinstitutional\\ninterior\\ninteriors\\ninterisland\\ninterject\\ninterjected\\ninterjecting\\ninterjection\\ninterjectionally\\ninterjections\\ninterjects\\ninterlace\\ninterlaced\\ninterlaces\\ninterlacing\\ninterlaid\\ninterlap\\ninterlapped\\ninterlapping\\ninterlaps\\ninterlard\\ninterlards\\ninterlay\\ninterlaying\\ninterlays\\ninterleave\\ninterleaved\\ninterleaves\\ninterleaving\\ninterlibrary\\ninterlinear\\ninterlock\\ninterlocked\\ninterlocking\\ninterlocks\\ninterlope\\ninterloped\\ninterloper\\ninterlopers\\ninterlopes\\ninterloping\\ninterlude\\ninterludes\\nintermarriage\\nintermarriages\\nintermarried\\nintermarries\\nintermarry\\nintermarrying\\nintermediaries\\nintermediary\\nintermediate\\nintermediates\\ninterment\\ninterments\\ninterminable\\ninterminably\\nintermingle\\nintermingled\\nintermingles\\nintermingling\\nintermission\\nintermissions\\nintermit\\nintermits\\nintermitted\\nintermittent\\nintermittently\\nintermitting\\nintermix\\nintermixed\\nintermixes\\nintermixing\\nintermixture\\nintermixtures\\nintermolecular\\nintermountain\\nintern\\ninternal\\ninternally\\ninternals\\ninternational\\ninternationalism\\ninternationalisms\\ninternationalize\\ninternationalized\\ninternationalizes\\ninternationalizing\\ninternationally\\ninternationals\\ninterne\\ninterned\\ninternee\\ninternees\\ninternes\\ninterning\\ninternist\\ninternists\\ninternment\\ninternments\\ninterns\\ninternship\\ninternships\\ninteroceanic\\ninteroffice\\ninterparticle\\ninterparty\\ninterpersonal\\ninterplanetary\\ninterplay\\ninterplays\\ninterpolate\\ninterpolated\\ninterpolates\\ninterpolating\\ninterpolation\\ninterpolations\\ninterpopulation\\ninterpose\\ninterposed\\ninterposes\\ninterposing\\ninterposition\\ninterpositions\\ninterpret\\ninterpretation\\ninterpretations\\ninterpretative\\ninterpreted\\ninterpreter\\ninterpreters\\ninterpreting\\ninterpretive\\ninterprets\\ninterprovincial\\ninterpupil\\ninterquartile\\ninterracial\\ninterred\\ninterreges\\ninterregional\\ninterrelate\\ninterrelated\\ninterrelatedness\\ninterrelatednesses\\ninterrelates\\ninterrelating\\ninterrelation\\ninterrelations\\ninterrelationship\\ninterreligious\\ninterrex\\ninterring\\ninterrogate\\ninterrogated\\ninterrogates\\ninterrogating\\ninterrogation\\ninterrogations\\ninterrogative\\ninterrogatives\\ninterrogator\\ninterrogators\\ninterrogatory\\ninterrupt\\ninterrupted\\ninterrupter\\ninterrupters\\ninterrupting\\ninterruption\\ninterruptions\\ninterruptive\\ninterrupts\\ninters\\ninterscholastic\\nintersect\\nintersected\\nintersecting\\nintersection\\nintersectional\\nintersections\\nintersects\\nintersex\\nintersexes\\nintersperse\\ninterspersed\\nintersperses\\ninterspersing\\ninterspersion\\ninterspersions\\ninterstate\\ninterstellar\\ninterstice\\ninterstices\\nintersticial\\ninterstitial\\nintersystem\\ninterterm\\ninterterminal\\nintertie\\ninterties\\nintertribal\\nintertroop\\nintertropical\\nintertwine\\nintertwined\\nintertwines\\nintertwining\\ninteruniversity\\ninterurban\\ninterval\\nintervalley\\nintervals\\nintervene\\nintervened\\nintervenes\\nintervening\\nintervention\\ninterventions\\ninterview\\ninterviewed\\ninterviewer\\ninterviewers\\ninterviewing\\ninterviews\\nintervillage\\ninterwar\\ninterweave\\ninterweaves\\ninterweaving\\ninterwoven\\ninterzonal\\ninterzone\\nintestate\\nintestinal\\nintestine\\nintestines\\ninthral\\ninthrall\\ninthralled\\ninthralling\\ninthralls\\ninthrals\\ninthrone\\ninthroned\\ninthrones\\ninthroning\\nintima\\nintimacies\\nintimacy\\nintimae\\nintimal\\nintimas\\nintimate\\nintimated\\nintimately\\nintimates\\nintimating\\nintimation\\nintimations\\nintime\\nintimidate\\nintimidated\\nintimidates\\nintimidating\\nintimidation\\nintimidations\\nintine\\nintines\\nintitle\\nintitled\\nintitles\\nintitling\\nintitule\\nintituled\\nintitules\\nintituling\\ninto\\nintolerable\\nintolerably\\nintolerance\\nintolerances\\nintolerant\\nintomb\\nintombed\\nintombing\\nintombs\\nintonate\\nintonated\\nintonates\\nintonating\\nintonation\\nintonations\\nintone\\nintoned\\nintoner\\nintoners\\nintones\\nintoning\\nintort\\nintorted\\nintorting\\nintorts\\nintown\\nintoxicant\\nintoxicants\\nintoxicate\\nintoxicated\\nintoxicates\\nintoxicating\\nintoxication\\nintoxications\\nintractable\\nintrados\\nintradoses\\nintramural\\nintransigence\\nintransigences\\nintransigent\\nintransigents\\nintrant\\nintrants\\nintravenous\\nintravenously\\nintreat\\nintreated\\nintreating\\nintreats\\nintrench\\nintrenched\\nintrenches\\nintrenching\\nintrepid\\nintrepidities\\nintrepidity\\nintricacies\\nintricacy\\nintricate\\nintricately\\nintrigue\\nintrigued\\nintrigues\\nintriguing\\nintriguingly\\nintrinsic\\nintrinsically\\nintro\\nintroduce\\nintroduced\\nintroduces\\nintroducing\\nintroduction\\nintroductions\\nintroductory\\nintrofied\\nintrofies\\nintrofy\\nintrofying\\nintroit\\nintroits\\nintromit\\nintromits\\nintromitted\\nintromitting\\nintrorse\\nintros\\nintrospect\\nintrospected\\nintrospecting\\nintrospection\\nintrospections\\nintrospective\\nintrospectively\\nintrospects\\nintroversion\\nintroversions\\nintrovert\\nintroverted\\nintroverts\\nintrude\\nintruded\\nintruder\\nintruders\\nintrudes\\nintruding\\nintrusion\\nintrusions\\nintrusive\\nintrusiveness\\nintrusivenesses\\nintrust\\nintrusted\\nintrusting\\nintrusts\\nintubate\\nintubated\\nintubates\\nintubating\\nintuit\\nintuited\\nintuiting\\nintuition\\nintuitions\\nintuitive\\nintuitively\\nintuits\\ninturn\\ninturned\\ninturns\\nintwine\\nintwined\\nintwines\\nintwining\\nintwist\\nintwisted\\nintwisting\\nintwists\\ninulase\\ninulases\\ninulin\\ninulins\\ninundant\\ninundate\\ninundated\\ninundates\\ninundating\\ninundation\\ninundations\\ninurbane\\ninure\\ninured\\ninures\\ninuring\\ninurn\\ninurned\\ninurning\\ninurns\\ninutile\\ninvade\\ninvaded\\ninvader\\ninvaders\\ninvades\\ninvading\\ninvalid\\ninvalidate\\ninvalidated\\ninvalidates\\ninvalidating\\ninvalided\\ninvaliding\\ninvalidism\\ninvalidity\\ninvalidly\\ninvalids\\ninvaluable\\ninvar\\ninvariable\\ninvariably\\ninvars\\ninvasion\\ninvasions\\ninvasive\\ninvected\\ninvective\\ninvectives\\ninveigh\\ninveighed\\ninveighing\\ninveighs\\ninveigle\\ninveigled\\ninveigles\\ninveigling\\ninvent\\ninvented\\ninventer\\ninventers\\ninventing\\ninvention\\ninventions\\ninventive\\ninventiveness\\ninventivenesses\\ninventor\\ninventoried\\ninventories\\ninventors\\ninventory\\ninventorying\\ninvents\\ninverities\\ninverity\\ninverse\\ninversely\\ninverses\\ninversion\\ninversions\\ninvert\\ninverted\\ninverter\\ninverters\\ninvertibrate\\ninvertibrates\\ninverting\\ninvertor\\ninvertors\\ninverts\\ninvest\\ninvested\\ninvestigate\\ninvestigated\\ninvestigates\\ninvestigating\\ninvestigation\\ninvestigations\\ninvestigative\\ninvestigator\\ninvestigators\\ninvesting\\ninvestiture\\ninvestitures\\ninvestment\\ninvestments\\ninvestor\\ninvestors\\ninvests\\ninveteracies\\ninveteracy\\ninveterate\\ninviable\\ninviably\\ninvidious\\ninvidiously\\ninvigorate\\ninvigorated\\ninvigorates\\ninvigorating\\ninvigoration\\ninvigorations\\ninvincibilities\\ninvincibility\\ninvincible\\ninvincibly\\ninviolabilities\\ninviolability\\ninviolable\\ninviolate\\ninvirile\\ninviscid\\ninvisibilities\\ninvisibility\\ninvisible\\ninvisibly\\ninvital\\ninvitation\\ninvitations\\ninvite\\ninvited\\ninvitee\\ninvitees\\ninviter\\ninviters\\ninvites\\ninviting\\ninvocate\\ninvocated\\ninvocates\\ninvocating\\ninvocation\\ninvocations\\ninvoice\\ninvoiced\\ninvoices\\ninvoicing\\ninvoke\\ninvoked\\ninvoker\\ninvokers\\ninvokes\\ninvoking\\ninvoluntarily\\ninvoluntary\\ninvolute\\ninvoluted\\ninvolutes\\ninvoluting\\ninvolve\\ninvolved\\ninvolvement\\ninvolvements\\ninvolver\\ninvolvers\\ninvolves\\ninvolving\\ninvulnerability\\ninvulnerable\\ninvulnerably\\ninwall\\ninwalled\\ninwalling\\ninwalls\\ninward\\ninwardly\\ninwards\\ninweave\\ninweaved\\ninweaves\\ninweaving\\ninwind\\ninwinding\\ninwinds\\ninwound\\ninwove\\ninwoven\\ninwrap\\ninwrapped\\ninwrapping\\ninwraps\\niodate\\niodated\\niodates\\niodating\\niodation\\niodations\\niodic\\niodid\\niodide\\niodides\\niodids\\niodin\\niodinate\\niodinated\\niodinates\\niodinating\\niodine\\niodines\\niodins\\niodism\\niodisms\\niodize\\niodized\\niodizer\\niodizers\\niodizes\\niodizing\\niodoform\\niodoforms\\niodol\\niodols\\niodophor\\niodophors\\niodopsin\\niodopsins\\niodous\\niolite\\niolites\\nion\\nionic\\nionicities\\nionicity\\nionics\\nionise\\nionised\\nionises\\nionising\\nionium\\nioniums\\nionizable\\nionize\\nionized\\nionizer\\nionizers\\nionizes\\nionizing\\nionomer\\nionomers\\nionone\\nionones\\nionosphere\\nionospheres\\nionospheric\\nions\\niota\\niotacism\\niotacisms\\niotas\\nipecac\\nipecacs\\nipomoea\\nipomoeas\\niracund\\nirade\\nirades\\nirascibilities\\nirascibility\\nirascible\\nirate\\nirately\\nirater\\niratest\\nire\\nired\\nireful\\nirefully\\nireless\\nirenic\\nirenical\\nirenics\\nires\\nirides\\niridescence\\niridescences\\niridescent\\niridic\\niridium\\niridiums\\nirids\\niring\\niris\\nirised\\nirises\\nirising\\niritic\\niritis\\niritises\\nirk\\nirked\\nirking\\nirks\\nirksome\\nirksomely\\niron\\nironbark\\nironbarks\\nironclad\\nironclads\\nirone\\nironed\\nironer\\nironers\\nirones\\nironic\\nironical\\nironically\\nironies\\nironing\\nironings\\nironist\\nironists\\nironlike\\nironness\\nironnesses\\nirons\\nironside\\nironsides\\nironware\\nironwares\\nironweed\\nironweeds\\nironwood\\nironwoods\\nironwork\\nironworker\\nironworkers\\nironworks\\nirony\\nirradiate\\nirradiated\\nirradiates\\nirradiating\\nirradiation\\nirradiations\\nirrational\\nirrationalities\\nirrationality\\nirrationally\\nirrationals\\nirreal\\nirreconcilabilities\\nirreconcilability\\nirreconcilable\\nirrecoverable\\nirrecoverably\\nirredeemable\\nirreducible\\nirreducibly\\nirrefutable\\nirregular\\nirregularities\\nirregularity\\nirregularly\\nirregulars\\nirrelevance\\nirrelevances\\nirrelevant\\nirreligious\\nirreparable\\nirreplaceable\\nirrepressible\\nirreproachable\\nirresistible\\nirresolute\\nirresolutely\\nirresolution\\nirresolutions\\nirrespective\\nirresponsibilities\\nirresponsibility\\nirresponsible\\nirresponsibly\\nirretrievable\\nirreverence\\nirreverences\\nirreversible\\nirrevocable\\nirrigate\\nirrigated\\nirrigates\\nirrigating\\nirrigation\\nirrigations\\nirritabilities\\nirritability\\nirritable\\nirritably\\nirritant\\nirritants\\nirritate\\nirritated\\nirritates\\nirritating\\nirritatingly\\nirritation\\nirritations\\nirrupt\\nirrupted\\nirrupting\\nirrupts\\nis\\nisagoge\\nisagoges\\nisagogic\\nisagogics\\nisarithm\\nisarithms\\nisatin\\nisatine\\nisatines\\nisatinic\\nisatins\\nisba\\nisbas\\nischemia\\nischemias\\nischemic\\nischia\\nischial\\nischium\\nisinglass\\nisland\\nislanded\\nislander\\nislanders\\nislanding\\nislands\\nisle\\nisled\\nisleless\\nisles\\nislet\\nislets\\nisling\\nism\\nisms\\nisobar\\nisobare\\nisobares\\nisobaric\\nisobars\\nisobath\\nisobaths\\nisocheim\\nisocheims\\nisochime\\nisochimes\\nisochor\\nisochore\\nisochores\\nisochors\\nisochron\\nisochrons\\nisocline\\nisoclines\\nisocracies\\nisocracy\\nisodose\\nisogamies\\nisogamy\\nisogenic\\nisogenies\\nisogeny\\nisogloss\\nisoglosses\\nisogon\\nisogonal\\nisogonals\\nisogone\\nisogones\\nisogonic\\nisogonics\\nisogonies\\nisogons\\nisogony\\nisogram\\nisograms\\nisograph\\nisographs\\nisogriv\\nisogrivs\\nisohel\\nisohels\\nisohyet\\nisohyets\\nisolable\\nisolate\\nisolated\\nisolates\\nisolating\\nisolation\\nisolations\\nisolator\\nisolators\\nisolead\\nisoleads\\nisoline\\nisolines\\nisolog\\nisologs\\nisologue\\nisologues\\nisomer\\nisomeric\\nisomers\\nisometric\\nisometrics\\nisometries\\nisometry\\nisomorph\\nisomorphs\\nisonomic\\nisonomies\\nisonomy\\nisophote\\nisophotes\\nisopleth\\nisopleths\\nisopod\\nisopodan\\nisopodans\\nisopods\\nisoprene\\nisoprenes\\nisospin\\nisospins\\nisospories\\nisospory\\nisostasies\\nisostasy\\nisotach\\nisotachs\\nisothere\\nisotheres\\nisotherm\\nisotherms\\nisotone\\nisotones\\nisotonic\\nisotope\\nisotopes\\nisotopic\\nisotopically\\nisotopies\\nisotopy\\nisotropies\\nisotropy\\nisotype\\nisotypes\\nisotypic\\nisozyme\\nisozymes\\nisozymic\\nissei\\nisseis\\nissuable\\nissuably\\nissuance\\nissuances\\nissuant\\nissue\\nissued\\nissuer\\nissuers\\nissues\\nissuing\\nisthmi\\nisthmian\\nisthmians\\nisthmic\\nisthmoid\\nisthmus\\nisthmuses\\nistle\\nistles\\nit\\nitalic\\nitalicization\\nitalicizations\\nitalicize\\nitalicized\\nitalicizes\\nitalicizing\\nitalics\\nitch\\nitched\\nitches\\nitchier\\nitchiest\\nitching\\nitchings\\nitchy\\nitem\\nitemed\\niteming\\nitemization\\nitemizations\\nitemize\\nitemized\\nitemizer\\nitemizers\\nitemizes\\nitemizing\\nitems\\niterance\\niterances\\niterant\\niterate\\niterated\\niterates\\niterating\\niteration\\niterations\\niterative\\niterum\\nither\\nitinerant\\nitinerants\\nitinerary\\nits\\nitself\\nivied\\nivies\\nivories\\nivory\\nivy\\nivylike\\niwis\\nixia\\nixias\\nixodid\\nixodids\\nixtle\\nixtles\\nizar\\nizars\\nizzard\\nizzards\\njab\\njabbed\\njabber\\njabbered\\njabberer\\njabberers\\njabbering\\njabbers\\njabbing\\njabiru\\njabirus\\njabot\\njabots\\njabs\\njacal\\njacales\\njacals\\njacamar\\njacamars\\njacana\\njacanas\\njacinth\\njacinthe\\njacinthes\\njacinths\\njack\\njackal\\njackals\\njackaroo\\njackaroos\\njackass\\njackasses\\njackboot\\njackboots\\njackdaw\\njackdaws\\njacked\\njacker\\njackeroo\\njackeroos\\njackers\\njacket\\njacketed\\njacketing\\njackets\\njackfish\\njackfishes\\njackhammer\\njackhammers\\njackies\\njacking\\njackknife\\njackknifed\\njackknifes\\njackknifing\\njackknives\\njackleg\\njacklegs\\njackpot\\njackpots\\njackrabbit\\njackrabbits\\njacks\\njackstay\\njackstays\\njacky\\njacobin\\njacobins\\njacobus\\njacobuses\\njaconet\\njaconets\\njacquard\\njacquards\\njacqueline\\njaculate\\njaculated\\njaculates\\njaculating\\njade\\njaded\\njadedly\\njadeite\\njadeites\\njades\\njading\\njadish\\njadishly\\njaditic\\njaeger\\njaegers\\njag\\njager\\njagers\\njagg\\njaggaries\\njaggary\\njagged\\njaggeder\\njaggedest\\njaggedly\\njagger\\njaggeries\\njaggers\\njaggery\\njaggheries\\njagghery\\njaggier\\njaggiest\\njagging\\njaggs\\njaggy\\njagless\\njagra\\njagras\\njags\\njaguar\\njaguars\\njail\\njailbait\\njailbird\\njailbirds\\njailbreak\\njailbreaks\\njailed\\njailer\\njailers\\njailing\\njailor\\njailors\\njails\\njake\\njakes\\njalap\\njalapic\\njalapin\\njalapins\\njalaps\\njalop\\njalopies\\njaloppies\\njaloppy\\njalops\\njalopy\\njalousie\\njalousies\\njam\\njamb\\njambe\\njambeau\\njambeaux\\njambed\\njambes\\njambing\\njamboree\\njamborees\\njambs\\njammed\\njammer\\njammers\\njamming\\njams\\njane\\njanes\\njangle\\njangled\\njangler\\njanglers\\njangles\\njangling\\njaniform\\njanisaries\\njanisary\\njanitor\\njanitorial\\njanitors\\njanizaries\\njanizary\\njanty\\njapan\\njapanize\\njapanized\\njapanizes\\njapanizing\\njapanned\\njapanner\\njapanners\\njapanning\\njapans\\njape\\njaped\\njaper\\njaperies\\njapers\\njapery\\njapes\\njaping\\njapingly\\njaponica\\njaponicas\\njar\\njarful\\njarfuls\\njargon\\njargoned\\njargonel\\njargonels\\njargoning\\njargons\\njargoon\\njargoons\\njarina\\njarinas\\njarl\\njarldom\\njarldoms\\njarls\\njarosite\\njarosites\\njarovize\\njarovized\\njarovizes\\njarovizing\\njarrah\\njarrahs\\njarred\\njarring\\njars\\njarsful\\njarvey\\njarveys\\njasey\\njasmine\\njasmines\\njasper\\njaspers\\njaspery\\njassid\\njassids\\njato\\njatos\\njauk\\njauked\\njauking\\njauks\\njaunce\\njaunced\\njaunces\\njauncing\\njaundice\\njaundiced\\njaundices\\njaundicing\\njaunt\\njaunted\\njauntier\\njauntiest\\njauntily\\njauntiness\\njauntinesses\\njaunting\\njaunts\\njaunty\\njaup\\njauped\\njauping\\njaups\\njava\\njavas\\njavelin\\njavelina\\njavelinas\\njavelined\\njavelining\\njavelins\\njaw\\njawan\\njawans\\njawbone\\njawboned\\njawbones\\njawboning\\njawed\\njawing\\njawlike\\njawline\\njawlines\\njaws\\njay\\njaybird\\njaybirds\\njaygee\\njaygees\\njays\\njayvee\\njayvees\\njaywalk\\njaywalked\\njaywalker\\njaywalkers\\njaywalking\\njaywalks\\njazz\\njazzed\\njazzer\\njazzers\\njazzes\\njazzier\\njazziest\\njazzily\\njazzing\\njazzman\\njazzmen\\njazzy\\njealous\\njealousies\\njealously\\njealousy\\njean\\njeans\\njeapordize\\njeapordized\\njeapordizes\\njeapordizing\\njeapordous\\njebel\\njebels\\njee\\njeed\\njeeing\\njeep\\njeepers\\njeeps\\njeer\\njeered\\njeerer\\njeerers\\njeering\\njeers\\njees\\njeez\\njefe\\njefes\\njehad\\njehads\\njehu\\njehus\\njejuna\\njejunal\\njejune\\njejunely\\njejunities\\njejunity\\njejunum\\njell\\njelled\\njellied\\njellies\\njellified\\njellifies\\njellify\\njellifying\\njelling\\njells\\njelly\\njellyfish\\njellyfishes\\njellying\\njelutong\\njelutongs\\njemadar\\njemadars\\njemidar\\njemidars\\njemmied\\njemmies\\njemmy\\njemmying\\njennet\\njennets\\njennies\\njenny\\njeopard\\njeoparded\\njeopardies\\njeoparding\\njeopards\\njeopardy\\njeopordize\\njeopordized\\njeopordizes\\njeopordizing\\njerboa\\njerboas\\njereed\\njereeds\\njeremiad\\njeremiads\\njerid\\njerids\\njerk\\njerked\\njerker\\njerkers\\njerkier\\njerkies\\njerkiest\\njerkily\\njerkin\\njerking\\njerkins\\njerks\\njerky\\njeroboam\\njeroboams\\njerreed\\njerreeds\\njerrican\\njerricans\\njerrid\\njerrids\\njerries\\njerry\\njerrycan\\njerrycans\\njersey\\njerseyed\\njerseys\\njess\\njessant\\njesse\\njessed\\njesses\\njessing\\njest\\njested\\njester\\njesters\\njestful\\njesting\\njestings\\njests\\njesuit\\njesuitic\\njesuitries\\njesuitry\\njesuits\\njet\\njetbead\\njetbeads\\njete\\njetes\\njetliner\\njetliners\\njeton\\njetons\\njetport\\njetports\\njets\\njetsam\\njetsams\\njetsom\\njetsoms\\njetted\\njettied\\njetties\\njetting\\njettison\\njettisoned\\njettisoning\\njettisons\\njetton\\njettons\\njetty\\njettying\\njeu\\njeux\\njew\\njewed\\njewel\\njeweled\\njeweler\\njewelers\\njeweling\\njewelled\\njeweller\\njewellers\\njewelling\\njewelries\\njewelry\\njewels\\njewfish\\njewfishes\\njewing\\njews\\njezail\\njezails\\njezebel\\njezebels\\njib\\njibb\\njibbed\\njibber\\njibbers\\njibbing\\njibboom\\njibbooms\\njibbs\\njibe\\njibed\\njiber\\njibers\\njibes\\njibing\\njibingly\\njibs\\njiff\\njiffies\\njiffs\\njiffy\\njig\\njigaboo\\njigaboos\\njigged\\njigger\\njiggered\\njiggers\\njigging\\njiggle\\njiggled\\njiggles\\njigglier\\njiggliest\\njiggling\\njiggly\\njigs\\njigsaw\\njigsawed\\njigsawing\\njigsawn\\njigsaws\\njihad\\njihads\\njill\\njillion\\njillions\\njills\\njilt\\njilted\\njilter\\njilters\\njilting\\njilts\\njiminy\\njimjams\\njimmied\\njimmies\\njimminy\\njimmy\\njimmying\\njimp\\njimper\\njimpest\\njimply\\njimpy\\njimsonweed\\njimsonweeds\\njin\\njingal\\njingall\\njingalls\\njingals\\njingko\\njingkoes\\njingle\\njingled\\njingler\\njinglers\\njingles\\njinglier\\njingliest\\njingling\\njingly\\njingo\\njingoes\\njingoish\\njingoism\\njingoisms\\njingoist\\njingoistic\\njingoists\\njink\\njinked\\njinker\\njinkers\\njinking\\njinks\\njinn\\njinnee\\njinni\\njinns\\njins\\njinx\\njinxed\\njinxes\\njinxing\\njipijapa\\njipijapas\\njitney\\njitneys\\njitter\\njittered\\njittering\\njitters\\njittery\\njiujitsu\\njiujitsus\\njiujutsu\\njiujutsus\\njive\\njived\\njives\\njiving\\njnana\\njnanas\\njo\\njoannes\\njob\\njobbed\\njobber\\njobberies\\njobbers\\njobbery\\njobbing\\njobholder\\njobholders\\njobless\\njobs\\njock\\njockey\\njockeyed\\njockeying\\njockeys\\njocko\\njockos\\njocks\\njocose\\njocosely\\njocosities\\njocosity\\njocular\\njocund\\njocundly\\njodhpur\\njodhpurs\\njoe\\njoes\\njoey\\njoeys\\njog\\njogged\\njogger\\njoggers\\njogging\\njoggle\\njoggled\\njoggler\\njogglers\\njoggles\\njoggling\\njogs\\njohannes\\njohn\\njohnboat\\njohnboats\\njohnnies\\njohnny\\njohns\\njoin\\njoinable\\njoinder\\njoinders\\njoined\\njoiner\\njoineries\\njoiners\\njoinery\\njoining\\njoinings\\njoins\\njoint\\njointed\\njointer\\njointers\\njointing\\njointly\\njoints\\njointure\\njointured\\njointures\\njointuring\\njoist\\njoisted\\njoisting\\njoists\\njojoba\\njojobas\\njoke\\njoked\\njoker\\njokers\\njokes\\njokester\\njokesters\\njoking\\njokingly\\njole\\njoles\\njollied\\njollier\\njollies\\njolliest\\njollified\\njollifies\\njollify\\njollifying\\njollily\\njollities\\njollity\\njolly\\njollying\\njolt\\njolted\\njolter\\njolters\\njoltier\\njoltiest\\njoltily\\njolting\\njolts\\njolty\\njongleur\\njongleurs\\njonquil\\njonquils\\njoram\\njorams\\njordan\\njordans\\njorum\\njorums\\njoseph\\njosephs\\njosh\\njoshed\\njosher\\njoshers\\njoshes\\njoshing\\njoss\\njosses\\njostle\\njostled\\njostler\\njostlers\\njostles\\njostling\\njot\\njota\\njotas\\njots\\njotted\\njotting\\njottings\\njotty\\njouk\\njouked\\njouking\\njouks\\njoule\\njoules\\njounce\\njounced\\njounces\\njouncier\\njounciest\\njouncing\\njouncy\\njournal\\njournalism\\njournalisms\\njournalist\\njournalistic\\njournalists\\njournals\\njourney\\njourneyed\\njourneying\\njourneyman\\njourneymen\\njourneys\\njoust\\njousted\\njouster\\njousters\\njousting\\njousts\\njovial\\njovially\\njow\\njowed\\njowing\\njowl\\njowled\\njowlier\\njowliest\\njowls\\njowly\\njows\\njoy\\njoyance\\njoyances\\njoyed\\njoyful\\njoyfuller\\njoyfullest\\njoyfully\\njoying\\njoyless\\njoyous\\njoyously\\njoyousness\\njoyousnesses\\njoypop\\njoypopped\\njoypopping\\njoypops\\njoyride\\njoyrider\\njoyriders\\njoyrides\\njoyriding\\njoyridings\\njoys\\njoystick\\njoysticks\\njuba\\njubas\\njubbah\\njubbahs\\njube\\njubes\\njubhah\\njubhahs\\njubilant\\njubilate\\njubilated\\njubilates\\njubilating\\njubile\\njubilee\\njubilees\\njubiles\\njublilantly\\njublilation\\njublilations\\njudas\\njudases\\njudder\\njuddered\\njuddering\\njudders\\njudge\\njudged\\njudgement\\njudgements\\njudger\\njudgers\\njudges\\njudgeship\\njudgeships\\njudging\\njudgment\\njudgments\\njudicature\\njudicatures\\njudicial\\njudicially\\njudiciaries\\njudiciary\\njudicious\\njudiciously\\njudiciousness\\njudiciousnesses\\njudo\\njudoist\\njudoists\\njudoka\\njudokas\\njudos\\njug\\njuga\\njugal\\njugate\\njugful\\njugfuls\\njugged\\njuggernaut\\njuggernauts\\njugging\\njuggle\\njuggled\\njuggler\\njuggleries\\njugglers\\njugglery\\njuggles\\njuggling\\njugglings\\njughead\\njugheads\\njugs\\njugsful\\njugula\\njugular\\njugulars\\njugulate\\njugulated\\njugulates\\njugulating\\njugulum\\njugum\\njugums\\njuice\\njuiced\\njuicer\\njuicers\\njuices\\njuicier\\njuiciest\\njuicily\\njuiciness\\njuicinesses\\njuicing\\njuicy\\njujitsu\\njujitsus\\njuju\\njujube\\njujubes\\njujuism\\njujuisms\\njujuist\\njujuists\\njujus\\njujutsu\\njujutsus\\njuke\\njukebox\\njukeboxes\\njuked\\njukes\\njuking\\njulep\\njuleps\\njulienne\\njuliennes\\njumble\\njumbled\\njumbler\\njumblers\\njumbles\\njumbling\\njumbo\\njumbos\\njumbuck\\njumbucks\\njump\\njumped\\njumper\\njumpers\\njumpier\\njumpiest\\njumpily\\njumping\\njumpoff\\njumpoffs\\njumps\\njumpy\\njun\\njunco\\njuncoes\\njuncos\\njunction\\njunctions\\njuncture\\njunctures\\njungle\\njungles\\njunglier\\njungliest\\njungly\\njunior\\njuniors\\njuniper\\njunipers\\njunk\\njunked\\njunker\\njunkers\\njunket\\njunketed\\njunketer\\njunketers\\njunketing\\njunkets\\njunkie\\njunkier\\njunkies\\njunkiest\\njunking\\njunkman\\njunkmen\\njunks\\njunky\\njunkyard\\njunkyards\\njunta\\njuntas\\njunto\\njuntos\\njupe\\njupes\\njupon\\njupons\\njura\\njural\\njurally\\njurant\\njurants\\njurat\\njuratory\\njurats\\njurel\\njurels\\njuridic\\njuries\\njurisdiction\\njurisdictional\\njurisdictions\\njurisprudence\\njurisprudences\\njurist\\njuristic\\njurists\\njuror\\njurors\\njury\\njuryman\\njurymen\\njus\\njussive\\njussives\\njust\\njusted\\njuster\\njusters\\njustest\\njustice\\njustices\\njustifiable\\njustification\\njustifications\\njustified\\njustifies\\njustify\\njustifying\\njusting\\njustle\\njustled\\njustles\\njustling\\njustly\\njustness\\njustnesses\\njusts\\njut\\njute\\njutes\\njuts\\njutted\\njuttied\\njutties\\njutting\\njutty\\njuttying\\njuvenal\\njuvenals\\njuvenile\\njuveniles\\njuxtapose\\njuxtaposed\\njuxtaposes\\njuxtaposing\\njuxtaposition\\njuxtapositions\\nka\\nkaas\\nkab\\nkabab\\nkababs\\nkabaka\\nkabakas\\nkabala\\nkabalas\\nkabar\\nkabars\\nkabaya\\nkabayas\\nkabbala\\nkabbalah\\nkabbalahs\\nkabbalas\\nkabeljou\\nkabeljous\\nkabiki\\nkabikis\\nkabob\\nkabobs\\nkabs\\nkabuki\\nkabukis\\nkachina\\nkachinas\\nkaddish\\nkaddishim\\nkadi\\nkadis\\nkae\\nkaes\\nkaffir\\nkaffirs\\nkaffiyeh\\nkaffiyehs\\nkafir\\nkafirs\\nkaftan\\nkaftans\\nkagu\\nkagus\\nkahuna\\nkahunas\\nkaiak\\nkaiaks\\nkaif\\nkaifs\\nkail\\nkails\\nkailyard\\nkailyards\\nkain\\nkainit\\nkainite\\nkainites\\nkainits\\nkains\\nkaiser\\nkaiserin\\nkaiserins\\nkaisers\\nkajeput\\nkajeputs\\nkaka\\nkakapo\\nkakapos\\nkakas\\nkakemono\\nkakemonos\\nkaki\\nkakis\\nkalam\\nkalamazoo\\nkalams\\nkale\\nkaleidoscope\\nkaleidoscopes\\nkaleidoscopic\\nkaleidoscopical\\nkaleidoscopically\\nkalends\\nkales\\nkalewife\\nkalewives\\nkaleyard\\nkaleyards\\nkalian\\nkalians\\nkalif\\nkalifate\\nkalifates\\nkalifs\\nkalimba\\nkalimbas\\nkaliph\\nkaliphs\\nkalium\\nkaliums\\nkallidin\\nkallidins\\nkalmia\\nkalmias\\nkalong\\nkalongs\\nkalpa\\nkalpak\\nkalpaks\\nkalpas\\nkalyptra\\nkalyptras\\nkamaaina\\nkamaainas\\nkamacite\\nkamacites\\nkamala\\nkamalas\\nkame\\nkames\\nkami\\nkamik\\nkamikaze\\nkamikazes\\nkamiks\\nkampong\\nkampongs\\nkamseen\\nkamseens\\nkamsin\\nkamsins\\nkana\\nkanas\\nkane\\nkanes\\nkangaroo\\nkangaroos\\nkanji\\nkanjis\\nkantar\\nkantars\\nkantele\\nkanteles\\nkaoliang\\nkaoliangs\\nkaolin\\nkaoline\\nkaolines\\nkaolinic\\nkaolins\\nkaon\\nkaons\\nkapa\\nkapas\\nkaph\\nkaphs\\nkapok\\nkapoks\\nkappa\\nkappas\\nkaput\\nkaputt\\nkarakul\\nkarakuls\\nkarat\\nkarate\\nkarates\\nkarats\\nkarma\\nkarmas\\nkarmic\\nkarn\\nkarnofsky\\nkarns\\nkaroo\\nkaroos\\nkaross\\nkarosses\\nkarroo\\nkarroos\\nkarst\\nkarstic\\nkarsts\\nkart\\nkarting\\nkartings\\nkarts\\nkaryotin\\nkaryotins\\nkas\\nkasha\\nkashas\\nkasher\\nkashered\\nkashering\\nkashers\\nkashmir\\nkashmirs\\nkashrut\\nkashruth\\nkashruths\\nkashruts\\nkat\\nkatakana\\nkatakanas\\nkathodal\\nkathode\\nkathodes\\nkathodic\\nkation\\nkations\\nkats\\nkatydid\\nkatydids\\nkauri\\nkauries\\nkauris\\nkaury\\nkava\\nkavas\\nkavass\\nkavasses\\nkay\\nkayak\\nkayaker\\nkayakers\\nkayaks\\nkayles\\nkayo\\nkayoed\\nkayoes\\nkayoing\\nkayos\\nkays\\nkazoo\\nkazoos\\nkea\\nkeas\\nkebab\\nkebabs\\nkebar\\nkebars\\nkebbie\\nkebbies\\nkebbock\\nkebbocks\\nkebbuck\\nkebbucks\\nkeblah\\nkeblahs\\nkebob\\nkebobs\\nkeck\\nkecked\\nkecking\\nkeckle\\nkeckled\\nkeckles\\nkeckling\\nkecks\\nkeddah\\nkeddahs\\nkedge\\nkedged\\nkedgeree\\nkedgerees\\nkedges\\nkedging\\nkeef\\nkeefs\\nkeek\\nkeeked\\nkeeking\\nkeeks\\nkeel\\nkeelage\\nkeelages\\nkeelboat\\nkeelboats\\nkeeled\\nkeelhale\\nkeelhaled\\nkeelhales\\nkeelhaling\\nkeelhaul\\nkeelhauled\\nkeelhauling\\nkeelhauls\\nkeeling\\nkeelless\\nkeels\\nkeelson\\nkeelsons\\nkeen\\nkeened\\nkeener\\nkeeners\\nkeenest\\nkeening\\nkeenly\\nkeenness\\nkeennesses\\nkeens\\nkeep\\nkeepable\\nkeeper\\nkeepers\\nkeeping\\nkeepings\\nkeeps\\nkeepsake\\nkeepsakes\\nkeeshond\\nkeeshonden\\nkeeshonds\\nkeester\\nkeesters\\nkeet\\nkeets\\nkeeve\\nkeeves\\nkef\\nkefir\\nkefirs\\nkefs\\nkeg\\nkegeler\\nkegelers\\nkegler\\nkeglers\\nkegling\\nkeglings\\nkegs\\nkeir\\nkeirs\\nkeister\\nkeisters\\nkeitloa\\nkeitloas\\nkeloid\\nkeloidal\\nkeloids\\nkelp\\nkelped\\nkelpie\\nkelpies\\nkelping\\nkelps\\nkelpy\\nkelson\\nkelsons\\nkelter\\nkelters\\nkelvin\\nkelvins\\nkemp\\nkemps\\nkempt\\nken\\nkenaf\\nkenafs\\nkench\\nkenches\\nkendo\\nkendos\\nkenned\\nkennel\\nkenneled\\nkenneling\\nkennelled\\nkennelling\\nkennels\\nkenning\\nkennings\\nkeno\\nkenos\\nkenosis\\nkenosises\\nkenotic\\nkenotron\\nkenotrons\\nkens\\nkent\\nkep\\nkephalin\\nkephalins\\nkepi\\nkepis\\nkepped\\nkeppen\\nkepping\\nkeps\\nkept\\nkeramic\\nkeramics\\nkeratin\\nkeratins\\nkeratoid\\nkeratoma\\nkeratomas\\nkeratomata\\nkeratose\\nkerb\\nkerbed\\nkerbing\\nkerbs\\nkerchief\\nkerchiefs\\nkerchieves\\nkerchoo\\nkerf\\nkerfed\\nkerfing\\nkerfs\\nkermes\\nkermess\\nkermesses\\nkermis\\nkermises\\nkern\\nkerne\\nkerned\\nkernel\\nkerneled\\nkerneling\\nkernelled\\nkernelling\\nkernels\\nkernes\\nkerning\\nkernite\\nkernites\\nkerns\\nkerogen\\nkerogens\\nkerosene\\nkerosenes\\nkerosine\\nkerosines\\nkerplunk\\nkerria\\nkerrias\\nkerries\\nkerry\\nkersey\\nkerseys\\nkerygma\\nkerygmata\\nkestrel\\nkestrels\\nketch\\nketches\\nketchup\\nketchups\\nketene\\nketenes\\nketo\\nketol\\nketone\\nketones\\nketonic\\nketose\\nketoses\\nketosis\\nketotic\\nkettle\\nkettledrum\\nkettledrums\\nkettles\\nkevel\\nkevels\\nkevil\\nkevils\\nkex\\nkexes\\nkey\\nkeyboard\\nkeyboarded\\nkeyboarding\\nkeyboards\\nkeyed\\nkeyer\\nkeyhole\\nkeyholes\\nkeying\\nkeyless\\nkeynote\\nkeynoted\\nkeynoter\\nkeynoters\\nkeynotes\\nkeynoting\\nkeypunch\\nkeypunched\\nkeypuncher\\nkeypunchers\\nkeypunches\\nkeypunching\\nkeys\\nkeyset\\nkeysets\\nkeyster\\nkeysters\\nkeystone\\nkeystones\\nkeyway\\nkeyways\\nkeyword\\nkeywords\\nkhaddar\\nkhaddars\\nkhadi\\nkhadis\\nkhaki\\nkhakis\\nkhalif\\nkhalifa\\nkhalifas\\nkhalifs\\nkhamseen\\nkhamseens\\nkhamsin\\nkhamsins\\nkhan\\nkhanate\\nkhanates\\nkhans\\nkhat\\nkhats\\nkhazen\\nkhazenim\\nkhazens\\nkheda\\nkhedah\\nkhedahs\\nkhedas\\nkhedival\\nkhedive\\nkhedives\\nkhi\\nkhirkah\\nkhirkahs\\nkhis\\nkiang\\nkiangs\\nkiaugh\\nkiaughs\\nkibble\\nkibbled\\nkibbles\\nkibbling\\nkibbutz\\nkibbutzim\\nkibe\\nkibes\\nkibitz\\nkibitzed\\nkibitzer\\nkibitzers\\nkibitzes\\nkibitzing\\nkibla\\nkiblah\\nkiblahs\\nkiblas\\nkibosh\\nkiboshed\\nkiboshes\\nkiboshing\\nkick\\nkickback\\nkickbacks\\nkicked\\nkicker\\nkickers\\nkicking\\nkickoff\\nkickoffs\\nkicks\\nkickshaw\\nkickshaws\\nkickup\\nkickups\\nkid\\nkidded\\nkidder\\nkidders\\nkiddie\\nkiddies\\nkidding\\nkiddingly\\nkiddish\\nkiddo\\nkiddoes\\nkiddos\\nkiddush\\nkiddushes\\nkiddy\\nkidlike\\nkidnap\\nkidnaped\\nkidnaper\\nkidnapers\\nkidnaping\\nkidnapped\\nkidnapper\\nkidnappers\\nkidnapping\\nkidnaps\\nkidney\\nkidneys\\nkids\\nkidskin\\nkidskins\\nkief\\nkiefs\\nkielbasa\\nkielbasas\\nkielbasy\\nkier\\nkiers\\nkiester\\nkiesters\\nkif\\nkifs\\nkike\\nkikes\\nkilim\\nkilims\\nkill\\nkilldee\\nkilldeer\\nkilldeers\\nkilldees\\nkilled\\nkiller\\nkillers\\nkillick\\nkillicks\\nkilling\\nkillings\\nkilljoy\\nkilljoys\\nkillock\\nkillocks\\nkills\\nkiln\\nkilned\\nkilning\\nkilns\\nkilo\\nkilobar\\nkilobars\\nkilobit\\nkilobits\\nkilocycle\\nkilocycles\\nkilogram\\nkilograms\\nkilohertz\\nkilometer\\nkilometers\\nkilomole\\nkilomoles\\nkilorad\\nkilorads\\nkilos\\nkiloton\\nkilotons\\nkilovolt\\nkilovolts\\nkilowatt\\nkilowatts\\nkilt\\nkilted\\nkilter\\nkilters\\nkiltie\\nkilties\\nkilting\\nkiltings\\nkilts\\nkilty\\nkimono\\nkimonoed\\nkimonos\\nkin\\nkinase\\nkinases\\nkind\\nkinder\\nkindergarten\\nkindergartens\\nkindergartner\\nkindergartners\\nkindest\\nkindhearted\\nkindle\\nkindled\\nkindler\\nkindlers\\nkindles\\nkindless\\nkindlier\\nkindliest\\nkindliness\\nkindlinesses\\nkindling\\nkindlings\\nkindly\\nkindness\\nkindnesses\\nkindred\\nkindreds\\nkinds\\nkine\\nkinema\\nkinemas\\nkines\\nkineses\\nkinesics\\nkinesis\\nkinetic\\nkinetics\\nkinetin\\nkinetins\\nkinfolk\\nkinfolks\\nking\\nkingbird\\nkingbirds\\nkingbolt\\nkingbolts\\nkingcup\\nkingcups\\nkingdom\\nkingdoms\\nkinged\\nkingfish\\nkingfisher\\nkingfishers\\nkingfishes\\nkinghood\\nkinghoods\\nkinging\\nkingless\\nkinglet\\nkinglets\\nkinglier\\nkingliest\\nkinglike\\nkingly\\nkingpin\\nkingpins\\nkingpost\\nkingposts\\nkings\\nkingship\\nkingships\\nkingside\\nkingsides\\nkingwood\\nkingwoods\\nkinin\\nkinins\\nkink\\nkinkajou\\nkinkajous\\nkinked\\nkinkier\\nkinkiest\\nkinkily\\nkinking\\nkinks\\nkinky\\nkino\\nkinos\\nkins\\nkinsfolk\\nkinship\\nkinships\\nkinsman\\nkinsmen\\nkinswoman\\nkinswomen\\nkiosk\\nkiosks\\nkip\\nkipped\\nkippen\\nkipper\\nkippered\\nkippering\\nkippers\\nkipping\\nkips\\nkipskin\\nkipskins\\nkirigami\\nkirigamis\\nkirk\\nkirkman\\nkirkmen\\nkirks\\nkirmess\\nkirmesses\\nkirn\\nkirned\\nkirning\\nkirns\\nkirsch\\nkirsches\\nkirtle\\nkirtled\\nkirtles\\nkishka\\nkishkas\\nkishke\\nkishkes\\nkismat\\nkismats\\nkismet\\nkismetic\\nkismets\\nkiss\\nkissable\\nkissably\\nkissed\\nkisser\\nkissers\\nkisses\\nkissing\\nkist\\nkistful\\nkistfuls\\nkists\\nkit\\nkitchen\\nkitchens\\nkite\\nkited\\nkiter\\nkiters\\nkites\\nkith\\nkithara\\nkitharas\\nkithe\\nkithed\\nkithes\\nkithing\\nkiths\\nkiting\\nkitling\\nkitlings\\nkits\\nkitsch\\nkitsches\\nkitschy\\nkitted\\nkittel\\nkitten\\nkittened\\nkittening\\nkittenish\\nkittens\\nkitties\\nkitting\\nkittle\\nkittled\\nkittler\\nkittles\\nkittlest\\nkittling\\nkitty\\nkiva\\nkivas\\nkiwi\\nkiwis\\nklatch\\nklatches\\nklatsch\\nklatsches\\nklavern\\nklaverns\\nklaxon\\nklaxons\\nkleagle\\nkleagles\\nkleig\\nklepht\\nklephtic\\nklephts\\nkleptomania\\nkleptomaniac\\nkleptomaniacs\\nkleptomanias\\nklieg\\nklong\\nklongs\\nkloof\\nkloofs\\nkludge\\nkludges\\nklutz\\nklutzes\\nklutzier\\nklutziest\\nklutzy\\nklystron\\nklystrons\\nknack\\nknacked\\nknacker\\nknackeries\\nknackers\\nknackery\\nknacking\\nknacks\\nknap\\nknapped\\nknapper\\nknappers\\nknapping\\nknaps\\nknapsack\\nknapsacks\\nknapweed\\nknapweeds\\nknar\\nknarred\\nknarry\\nknars\\nknave\\nknaveries\\nknavery\\nknaves\\nknavish\\nknawel\\nknawels\\nknead\\nkneaded\\nkneader\\nkneaders\\nkneading\\nkneads\\nknee\\nkneecap\\nkneecaps\\nkneed\\nkneehole\\nkneeholes\\nkneeing\\nkneel\\nkneeled\\nkneeler\\nkneelers\\nkneeling\\nkneels\\nkneepad\\nkneepads\\nkneepan\\nkneepans\\nknees\\nknell\\nknelled\\nknelling\\nknells\\nknelt\\nknew\\nknickers\\nknickknack\\nknickknacks\\nknife\\nknifed\\nknifer\\nknifers\\nknifes\\nknifing\\nknight\\nknighted\\nknighthood\\nknighthoods\\nknighting\\nknightly\\nknights\\nknish\\nknishes\\nknit\\nknits\\nknitted\\nknitter\\nknitters\\nknitting\\nknittings\\nknitwear\\nknitwears\\nknives\\nknob\\nknobbed\\nknobbier\\nknobbiest\\nknobby\\nknoblike\\nknobs\\nknock\\nknocked\\nknocker\\nknockers\\nknocking\\nknockoff\\nknockoffs\\nknockout\\nknockouts\\nknocks\\nknockwurst\\nknockwursts\\nknoll\\nknolled\\nknoller\\nknollers\\nknolling\\nknolls\\nknolly\\nknop\\nknopped\\nknops\\nknosp\\nknosps\\nknot\\nknothole\\nknotholes\\nknotless\\nknotlike\\nknots\\nknotted\\nknotter\\nknotters\\nknottier\\nknottiest\\nknottily\\nknotting\\nknotty\\nknotweed\\nknotweeds\\nknout\\nknouted\\nknouting\\nknouts\\nknow\\nknowable\\nknower\\nknowers\\nknowing\\nknowinger\\nknowingest\\nknowings\\nknowledge\\nknowledgeable\\nknowledges\\nknown\\nknowns\\nknows\\nknuckle\\nknucklebone\\nknucklebones\\nknuckled\\nknuckler\\nknucklers\\nknuckles\\nknucklier\\nknuckliest\\nknuckling\\nknuckly\\nknur\\nknurl\\nknurled\\nknurlier\\nknurliest\\nknurling\\nknurls\\nknurly\\nknurs\\nkoa\\nkoala\\nkoalas\\nkoan\\nkoans\\nkoas\\nkobold\\nkobolds\\nkoel\\nkoels\\nkohl\\nkohlrabi\\nkohlrabies\\nkohls\\nkoine\\nkoines\\nkokanee\\nkokanees\\nkola\\nkolacky\\nkolas\\nkolhoz\\nkolhozes\\nkolhozy\\nkolinski\\nkolinskies\\nkolinsky\\nkolkhos\\nkolkhoses\\nkolkhosy\\nkolkhoz\\nkolkhozes\\nkolkhozy\\nkolkoz\\nkolkozes\\nkolkozy\\nkolo\\nkolos\\nkomatik\\nkomatiks\\nkomondor\\nkomondorock\\nkomondorok\\nkomondors\\nkoodoo\\nkoodoos\\nkook\\nkookie\\nkookier\\nkookiest\\nkooks\\nkooky\\nkop\\nkopeck\\nkopecks\\nkopek\\nkopeks\\nkoph\\nkophs\\nkopje\\nkopjes\\nkoppa\\nkoppas\\nkoppie\\nkoppies\\nkops\\nkor\\nkors\\nkorun\\nkoruna\\nkorunas\\nkoruny\\nkos\\nkosher\\nkoshered\\nkoshering\\nkoshers\\nkoss\\nkoto\\nkotos\\nkotow\\nkotowed\\nkotower\\nkotowers\\nkotowing\\nkotows\\nkoumis\\nkoumises\\nkoumiss\\nkoumisses\\nkoumys\\nkoumyses\\nkoumyss\\nkoumysses\\nkousso\\nkoussos\\nkowtow\\nkowtowed\\nkowtower\\nkowtowers\\nkowtowing\\nkowtows\\nkraal\\nkraaled\\nkraaling\\nkraals\\nkraft\\nkrafts\\nkrait\\nkraits\\nkraken\\nkrakens\\nkrater\\nkraters\\nkraut\\nkrauts\\nkremlin\\nkremlins\\nkreutzer\\nkreutzers\\nkreuzer\\nkreuzers\\nkrikorian\\nkrill\\nkrills\\nkrimmer\\nkrimmers\\nkris\\nkrises\\nkrona\\nkrone\\nkronen\\nkroner\\nkronor\\nkronur\\nkroon\\nkrooni\\nkroons\\nkrubi\\nkrubis\\nkrubut\\nkrubuts\\nkruller\\nkrullers\\nkryolite\\nkryolites\\nkryolith\\nkryoliths\\nkrypton\\nkryptons\\nkuchen\\nkudo\\nkudos\\nkudu\\nkudus\\nkudzu\\nkudzus\\nkue\\nkues\\nkulak\\nkulaki\\nkulaks\\nkultur\\nkulturs\\nkumiss\\nkumisses\\nkummel\\nkummels\\nkumquat\\nkumquats\\nkumys\\nkumyses\\nkunzite\\nkunzites\\nkurbash\\nkurbashed\\nkurbashes\\nkurbashing\\nkurgan\\nkurgans\\nkurta\\nkurtas\\nkurtosis\\nkurtosises\\nkuru\\nkurus\\nkusso\\nkussos\\nkvas\\nkvases\\nkvass\\nkvasses\\nkvetch\\nkvetched\\nkvetches\\nkvetching\\nkwacha\\nkyack\\nkyacks\\nkyanise\\nkyanised\\nkyanises\\nkyanising\\nkyanite\\nkyanites\\nkyanize\\nkyanized\\nkyanizes\\nkyanizing\\nkyar\\nkyars\\nkyat\\nkyats\\nkylikes\\nkylix\\nkymogram\\nkymograms\\nkyphoses\\nkyphosis\\nkyphotic\\nkyrie\\nkyries\\nkyte\\nkytes\\nkythe\\nkythed\\nkythes\\nkything\\nla\\nlaager\\nlaagered\\nlaagering\\nlaagers\\nlab\\nlabara\\nlabarum\\nlabarums\\nlabdanum\\nlabdanums\\nlabel\\nlabeled\\nlabeler\\nlabelers\\nlabeling\\nlabella\\nlabelled\\nlabeller\\nlabellers\\nlabelling\\nlabellum\\nlabels\\nlabia\\nlabial\\nlabially\\nlabials\\nlabiate\\nlabiated\\nlabiates\\nlabile\\nlabilities\\nlability\\nlabium\\nlabor\\nlaboratories\\nlaboratory\\nlabored\\nlaborer\\nlaborers\\nlaboring\\nlaborious\\nlaboriously\\nlaborite\\nlaborites\\nlabors\\nlabour\\nlaboured\\nlabourer\\nlabourers\\nlabouring\\nlabours\\nlabra\\nlabret\\nlabrets\\nlabroid\\nlabroids\\nlabrum\\nlabrums\\nlabs\\nlaburnum\\nlaburnums\\nlabyrinth\\nlabyrinthine\\nlabyrinths\\nlac\\nlace\\nlaced\\nlaceless\\nlacelike\\nlacer\\nlacerate\\nlacerated\\nlacerates\\nlacerating\\nlaceration\\nlacerations\\nlacers\\nlacertid\\nlacertids\\nlaces\\nlacewing\\nlacewings\\nlacewood\\nlacewoods\\nlacework\\nlaceworks\\nlacey\\nlaches\\nlachrymose\\nlacier\\nlaciest\\nlacily\\nlaciness\\nlacinesses\\nlacing\\nlacings\\nlack\\nlackadaisical\\nlackadaisically\\nlackaday\\nlacked\\nlacker\\nlackered\\nlackering\\nlackers\\nlackey\\nlackeyed\\nlackeying\\nlackeys\\nlacking\\nlackluster\\nlacks\\nlaconic\\nlaconically\\nlaconism\\nlaconisms\\nlacquer\\nlacquered\\nlacquering\\nlacquers\\nlacquey\\nlacqueyed\\nlacqueying\\nlacqueys\\nlacrimal\\nlacrimals\\nlacrosse\\nlacrosses\\nlacs\\nlactam\\nlactams\\nlactary\\nlactase\\nlactases\\nlactate\\nlactated\\nlactates\\nlactating\\nlactation\\nlactations\\nlacteal\\nlacteals\\nlactean\\nlacteous\\nlactic\\nlactone\\nlactones\\nlactonic\\nlactose\\nlactoses\\nlacuna\\nlacunae\\nlacunal\\nlacunar\\nlacunaria\\nlacunars\\nlacunary\\nlacunas\\nlacunate\\nlacune\\nlacunes\\nlacunose\\nlacy\\nlad\\nladanum\\nladanums\\nladder\\nladdered\\nladdering\\nladders\\nladdie\\nladdies\\nlade\\nladed\\nladen\\nladened\\nladening\\nladens\\nlader\\nladers\\nlades\\nladies\\nlading\\nladings\\nladino\\nladinos\\nladle\\nladled\\nladleful\\nladlefuls\\nladler\\nladlers\\nladles\\nladling\\nladron\\nladrone\\nladrones\\nladrons\\nlads\\nlady\\nladybird\\nladybirds\\nladybug\\nladybugs\\nladyfish\\nladyfishes\\nladyhood\\nladyhoods\\nladyish\\nladykin\\nladykins\\nladylike\\nladylove\\nladyloves\\nladypalm\\nladypalms\\nladyship\\nladyships\\nlaevo\\nlag\\nlagan\\nlagans\\nlagend\\nlagends\\nlager\\nlagered\\nlagering\\nlagers\\nlaggard\\nlaggardly\\nlaggardness\\nlaggardnesses\\nlaggards\\nlagged\\nlagger\\nlaggers\\nlagging\\nlaggings\\nlagnappe\\nlagnappes\\nlagniappe\\nlagniappes\\nlagoon\\nlagoonal\\nlagoons\\nlags\\nlaguna\\nlagunas\\nlagune\\nlagunes\\nlaic\\nlaical\\nlaically\\nlaich\\nlaichs\\nlaicise\\nlaicised\\nlaicises\\nlaicising\\nlaicism\\nlaicisms\\nlaicize\\nlaicized\\nlaicizes\\nlaicizing\\nlaics\\nlaid\\nlaigh\\nlaighs\\nlain\\nlair\\nlaird\\nlairdly\\nlairds\\nlaired\\nlairing\\nlairs\\nlaitance\\nlaitances\\nlaith\\nlaithly\\nlaities\\nlaity\\nlake\\nlaked\\nlakeport\\nlakeports\\nlaker\\nlakers\\nlakes\\nlakeside\\nlakesides\\nlakh\\nlakhs\\nlakier\\nlakiest\\nlaking\\nlakings\\nlaky\\nlall\\nlallan\\nlalland\\nlallands\\nlallans\\nlalled\\nlalling\\nlalls\\nlallygag\\nlallygagged\\nlallygagging\\nlallygags\\nlam\\nlama\\nlamas\\nlamaseries\\nlamasery\\nlamb\\nlambast\\nlambaste\\nlambasted\\nlambastes\\nlambasting\\nlambasts\\nlambda\\nlambdas\\nlambdoid\\nlambed\\nlambencies\\nlambency\\nlambent\\nlambently\\nlamber\\nlambers\\nlambert\\nlamberts\\nlambie\\nlambies\\nlambing\\nlambkill\\nlambkills\\nlambkin\\nlambkins\\nlamblike\\nlambs\\nlambskin\\nlambskins\\nlame\\nlamebrain\\nlamebrains\\nlamed\\nlamedh\\nlamedhs\\nlameds\\nlamella\\nlamellae\\nlamellar\\nlamellas\\nlamely\\nlameness\\nlamenesses\\nlament\\nlamentable\\nlamentably\\nlamentation\\nlamentations\\nlamented\\nlamenter\\nlamenters\\nlamenting\\nlaments\\nlamer\\nlames\\nlamest\\nlamia\\nlamiae\\nlamias\\nlamina\\nlaminae\\nlaminal\\nlaminar\\nlaminary\\nlaminas\\nlaminate\\nlaminated\\nlaminates\\nlaminating\\nlamination\\nlaminations\\nlaming\\nlaminose\\nlaminous\\nlamister\\nlamisters\\nlammed\\nlamming\\nlamp\\nlampad\\nlampads\\nlampas\\nlampases\\nlamped\\nlampers\\nlamperses\\nlamping\\nlampion\\nlampions\\nlampoon\\nlampooned\\nlampooning\\nlampoons\\nlamppost\\nlampposts\\nlamprey\\nlampreys\\nlamps\\nlampyrid\\nlampyrids\\nlams\\nlamster\\nlamsters\\nlanai\\nlanais\\nlanate\\nlanated\\nlance\\nlanced\\nlancelet\\nlancelets\\nlancer\\nlancers\\nlances\\nlancet\\nlanceted\\nlancets\\nlanciers\\nlancing\\nland\\nlandau\\nlandaus\\nlanded\\nlander\\nlanders\\nlandfall\\nlandfalls\\nlandfill\\nlandfills\\nlandform\\nlandforms\\nlandholder\\nlandholders\\nlandholding\\nlandholdings\\nlanding\\nlandings\\nlandladies\\nlandlady\\nlandler\\nlandlers\\nlandless\\nlandlocked\\nlandlord\\nlandlords\\nlandlubber\\nlandlubbers\\nlandman\\nlandmark\\nlandmarks\\nlandmass\\nlandmasses\\nlandmen\\nlands\\nlandscape\\nlandscaped\\nlandscapes\\nlandscaping\\nlandside\\nlandsides\\nlandskip\\nlandskips\\nlandsleit\\nlandslid\\nlandslide\\nlandslides\\nlandslip\\nlandslips\\nlandsman\\nlandsmen\\nlandward\\nlane\\nlanely\\nlanes\\nlang\\nlanglauf\\nlanglaufs\\nlangley\\nlangleys\\nlangourous\\nlangourously\\nlangrage\\nlangrages\\nlangrel\\nlangrels\\nlangshan\\nlangshans\\nlangsyne\\nlangsynes\\nlanguage\\nlanguages\\nlangue\\nlangues\\nlanguet\\nlanguets\\nlanguid\\nlanguidly\\nlanguidness\\nlanguidnesses\\nlanguish\\nlanguished\\nlanguishes\\nlanguishing\\nlanguor\\nlanguors\\nlangur\\nlangurs\\nlaniard\\nlaniards\\nlaniaries\\nlaniary\\nlanital\\nlanitals\\nlank\\nlanker\\nlankest\\nlankier\\nlankiest\\nlankily\\nlankly\\nlankness\\nlanknesses\\nlanky\\nlanner\\nlanneret\\nlannerets\\nlanners\\nlanolin\\nlanoline\\nlanolines\\nlanolins\\nlanose\\nlanosities\\nlanosity\\nlantana\\nlantanas\\nlantern\\nlanterns\\nlanthorn\\nlanthorns\\nlanugo\\nlanugos\\nlanyard\\nlanyards\\nlap\\nlapboard\\nlapboards\\nlapdog\\nlapdogs\\nlapel\\nlapelled\\nlapels\\nlapful\\nlapfuls\\nlapidaries\\nlapidary\\nlapidate\\nlapidated\\nlapidates\\nlapidating\\nlapides\\nlapidified\\nlapidifies\\nlapidify\\nlapidifying\\nlapidist\\nlapidists\\nlapilli\\nlapillus\\nlapin\\nlapins\\nlapis\\nlapises\\nlapped\\nlapper\\nlappered\\nlappering\\nlappers\\nlappet\\nlappeted\\nlappets\\nlapping\\nlaps\\nlapsable\\nlapse\\nlapsed\\nlapser\\nlapsers\\nlapses\\nlapsible\\nlapsing\\nlapsus\\nlapwing\\nlapwings\\nlar\\nlarboard\\nlarboards\\nlarcener\\nlarceners\\nlarcenies\\nlarcenous\\nlarceny\\nlarch\\nlarches\\nlard\\nlarded\\nlarder\\nlarders\\nlardier\\nlardiest\\nlarding\\nlardlike\\nlardon\\nlardons\\nlardoon\\nlardoons\\nlards\\nlardy\\nlares\\nlarge\\nlargely\\nlargeness\\nlargenesses\\nlarger\\nlarges\\nlargess\\nlargesse\\nlargesses\\nlargest\\nlargish\\nlargo\\nlargos\\nlariat\\nlariated\\nlariating\\nlariats\\nlarine\\nlark\\nlarked\\nlarker\\nlarkers\\nlarkier\\nlarkiest\\nlarking\\nlarks\\nlarksome\\nlarkspur\\nlarkspurs\\nlarky\\nlarrigan\\nlarrigans\\nlarrikin\\nlarrikins\\nlarrup\\nlarruped\\nlarruper\\nlarrupers\\nlarruping\\nlarrups\\nlars\\nlarum\\nlarums\\nlarva\\nlarvae\\nlarval\\nlarvas\\nlaryngal\\nlaryngeal\\nlarynges\\nlaryngitis\\nlaryngitises\\nlaryngoscopy\\nlarynx\\nlarynxes\\nlas\\nlasagna\\nlasagnas\\nlasagne\\nlasagnes\\nlascar\\nlascars\\nlascivious\\nlasciviousness\\nlasciviousnesses\\nlase\\nlased\\nlaser\\nlasers\\nlases\\nlash\\nlashed\\nlasher\\nlashers\\nlashes\\nlashing\\nlashings\\nlashins\\nlashkar\\nlashkars\\nlasing\\nlass\\nlasses\\nlassie\\nlassies\\nlassitude\\nlassitudes\\nlasso\\nlassoed\\nlassoer\\nlassoers\\nlassoes\\nlassoing\\nlassos\\nlast\\nlasted\\nlaster\\nlasters\\nlasting\\nlastings\\nlastly\\nlasts\\nlat\\nlatakia\\nlatakias\\nlatch\\nlatched\\nlatches\\nlatchet\\nlatchets\\nlatching\\nlatchkey\\nlatchkeys\\nlate\\nlatecomer\\nlatecomers\\nlated\\nlateen\\nlateener\\nlateeners\\nlateens\\nlately\\nlaten\\nlatencies\\nlatency\\nlatened\\nlateness\\nlatenesses\\nlatening\\nlatens\\nlatent\\nlatently\\nlatents\\nlater\\nlaterad\\nlateral\\nlateraled\\nlateraling\\nlaterally\\nlaterals\\nlaterite\\nlaterites\\nlatest\\nlatests\\nlatewood\\nlatewoods\\nlatex\\nlatexes\\nlath\\nlathe\\nlathed\\nlather\\nlathered\\nlatherer\\nlatherers\\nlathering\\nlathers\\nlathery\\nlathes\\nlathier\\nlathiest\\nlathing\\nlathings\\nlaths\\nlathwork\\nlathworks\\nlathy\\nlati\\nlatices\\nlatigo\\nlatigoes\\nlatigos\\nlatinities\\nlatinity\\nlatinize\\nlatinized\\nlatinizes\\nlatinizing\\nlatish\\nlatitude\\nlatitudes\\nlatosol\\nlatosols\\nlatria\\nlatrias\\nlatrine\\nlatrines\\nlats\\nlatten\\nlattens\\nlatter\\nlatterly\\nlattice\\nlatticed\\nlattices\\nlatticing\\nlattin\\nlattins\\nlauan\\nlauans\\nlaud\\nlaudable\\nlaudably\\nlaudanum\\nlaudanums\\nlaudator\\nlaudators\\nlauded\\nlauder\\nlauders\\nlauding\\nlauds\\nlaugh\\nlaughable\\nlaughed\\nlaugher\\nlaughers\\nlaughing\\nlaughingly\\nlaughings\\nlaughingstock\\nlaughingstocks\\nlaughs\\nlaughter\\nlaughters\\nlaunce\\nlaunces\\nlaunch\\nlaunched\\nlauncher\\nlaunchers\\nlaunches\\nlaunching\\nlaunder\\nlaundered\\nlaunderer\\nlaunderers\\nlaunderess\\nlaunderesses\\nlaundering\\nlaunders\\nlaundries\\nlaundry\\nlaura\\nlaurae\\nlauras\\nlaureate\\nlaureated\\nlaureates\\nlaureateship\\nlaureateships\\nlaureating\\nlaurel\\nlaureled\\nlaureling\\nlaurelled\\nlaurelling\\nlaurels\\nlauwine\\nlauwines\\nlava\\nlavabo\\nlavaboes\\nlavabos\\nlavage\\nlavages\\nlavalava\\nlavalavas\\nlavalier\\nlavaliers\\nlavalike\\nlavas\\nlavation\\nlavations\\nlavatories\\nlavatory\\nlave\\nlaved\\nlaveer\\nlaveered\\nlaveering\\nlaveers\\nlavender\\nlavendered\\nlavendering\\nlavenders\\nlaver\\nlaverock\\nlaverocks\\nlavers\\nlaves\\nlaving\\nlavish\\nlavished\\nlavisher\\nlavishers\\nlavishes\\nlavishest\\nlavishing\\nlavishly\\nlavrock\\nlavrocks\\nlaw\\nlawbreaker\\nlawbreakers\\nlawed\\nlawful\\nlawfully\\nlawgiver\\nlawgivers\\nlawine\\nlawines\\nlawing\\nlawings\\nlawless\\nlawlike\\nlawmaker\\nlawmakers\\nlawman\\nlawmen\\nlawn\\nlawns\\nlawny\\nlaws\\nlawsuit\\nlawsuits\\nlawyer\\nlawyerly\\nlawyers\\nlax\\nlaxation\\nlaxations\\nlaxative\\nlaxatives\\nlaxer\\nlaxest\\nlaxities\\nlaxity\\nlaxly\\nlaxness\\nlaxnesses\\nlay\\nlayabout\\nlayabouts\\nlayaway\\nlayaways\\nlayed\\nlayer\\nlayerage\\nlayerages\\nlayered\\nlayering\\nlayerings\\nlayers\\nlayette\\nlayettes\\nlaying\\nlayman\\nlaymen\\nlayoff\\nlayoffs\\nlayout\\nlayouts\\nlayover\\nlayovers\\nlays\\nlaywoman\\nlaywomen\\nlazar\\nlazaret\\nlazarets\\nlazars\\nlaze\\nlazed\\nlazes\\nlazied\\nlazier\\nlazies\\nlaziest\\nlazily\\nlaziness\\nlazinesses\\nlazing\\nlazuli\\nlazulis\\nlazulite\\nlazulites\\nlazurite\\nlazurites\\nlazy\\nlazying\\nlazyish\\nlazys\\nlea\\nleach\\nleachate\\nleachates\\nleached\\nleacher\\nleachers\\nleaches\\nleachier\\nleachiest\\nleaching\\nleachy\\nlead\\nleaded\\nleaden\\nleadenly\\nleader\\nleaderless\\nleaders\\nleadership\\nleaderships\\nleadier\\nleadiest\\nleading\\nleadings\\nleadless\\nleadoff\\nleadoffs\\nleads\\nleadsman\\nleadsmen\\nleadwork\\nleadworks\\nleadwort\\nleadworts\\nleady\\nleaf\\nleafage\\nleafages\\nleafed\\nleafier\\nleafiest\\nleafing\\nleafless\\nleaflet\\nleaflets\\nleaflike\\nleafs\\nleafworm\\nleafworms\\nleafy\\nleague\\nleagued\\nleaguer\\nleaguered\\nleaguering\\nleaguers\\nleagues\\nleaguing\\nleak\\nleakage\\nleakages\\nleaked\\nleaker\\nleakers\\nleakier\\nleakiest\\nleakily\\nleaking\\nleakless\\nleaks\\nleaky\\nleal\\nleally\\nlealties\\nlealty\\nlean\\nleaned\\nleaner\\nleanest\\nleaning\\nleanings\\nleanly\\nleanness\\nleannesses\\nleans\\nleant\\nleap\\nleaped\\nleaper\\nleapers\\nleapfrog\\nleapfrogged\\nleapfrogging\\nleapfrogs\\nleaping\\nleaps\\nleapt\\nlear\\nlearier\\nleariest\\nlearn\\nlearned\\nlearner\\nlearners\\nlearning\\nlearnings\\nlearns\\nlearnt\\nlears\\nleary\\nleas\\nleasable\\nlease\\nleased\\nleaser\\nleasers\\nleases\\nleash\\nleashed\\nleashes\\nleashing\\nleasing\\nleasings\\nleast\\nleasts\\nleather\\nleathered\\nleathering\\nleathern\\nleathers\\nleathery\\nleave\\nleaved\\nleaven\\nleavened\\nleavening\\nleavens\\nleaver\\nleavers\\nleaves\\nleavier\\nleaviest\\nleaving\\nleavings\\nleavy\\nleben\\nlebens\\nlech\\nlechayim\\nlechayims\\nlecher\\nlechered\\nlecheries\\nlechering\\nlecherous\\nlecherousness\\nlecherousnesses\\nlechers\\nlechery\\nleches\\nlecithin\\nlecithins\\nlectern\\nlecterns\\nlection\\nlections\\nlector\\nlectors\\nlecture\\nlectured\\nlecturer\\nlecturers\\nlectures\\nlectureship\\nlectureships\\nlecturing\\nlecythi\\nlecythus\\nled\\nledge\\nledger\\nledgers\\nledges\\nledgier\\nledgiest\\nledgy\\nlee\\nleeboard\\nleeboards\\nleech\\nleeched\\nleeches\\nleeching\\nleek\\nleeks\\nleer\\nleered\\nleerier\\nleeriest\\nleerily\\nleering\\nleers\\nleery\\nlees\\nleet\\nleets\\nleeward\\nleewards\\nleeway\\nleeways\\nleft\\nlefter\\nleftest\\nlefties\\nleftism\\nleftisms\\nleftist\\nleftists\\nleftover\\nleftovers\\nlefts\\nleftward\\nleftwing\\nlefty\\nleg\\nlegacies\\nlegacy\\nlegal\\nlegalese\\nlegaleses\\nlegalise\\nlegalised\\nlegalises\\nlegalising\\nlegalism\\nlegalisms\\nlegalist\\nlegalistic\\nlegalists\\nlegalities\\nlegality\\nlegalize\\nlegalized\\nlegalizes\\nlegalizing\\nlegally\\nlegals\\nlegate\\nlegated\\nlegatee\\nlegatees\\nlegates\\nlegatine\\nlegating\\nlegation\\nlegations\\nlegato\\nlegator\\nlegators\\nlegatos\\nlegend\\nlegendary\\nlegendries\\nlegendry\\nlegends\\nleger\\nlegerdemain\\nlegerdemains\\nlegerities\\nlegerity\\nlegers\\nleges\\nlegged\\nleggier\\nleggiest\\nleggin\\nlegging\\nleggings\\nleggins\\nleggy\\nleghorn\\nleghorns\\nlegibilities\\nlegibility\\nlegible\\nlegibly\\nlegion\\nlegionaries\\nlegionary\\nlegionnaire\\nlegionnaires\\nlegions\\nlegislate\\nlegislated\\nlegislates\\nlegislating\\nlegislation\\nlegislations\\nlegislative\\nlegislator\\nlegislators\\nlegislature\\nlegislatures\\nlegist\\nlegists\\nlegit\\nlegitimacy\\nlegitimate\\nlegitimately\\nlegits\\nlegless\\nleglike\\nlegman\\nlegmen\\nlegroom\\nlegrooms\\nlegs\\nlegume\\nlegumes\\nlegumin\\nleguminous\\nlegumins\\nlegwork\\nlegworks\\nlehayim\\nlehayims\\nlehr\\nlehrs\\nlehua\\nlehuas\\nlei\\nleis\\nleister\\nleistered\\nleistering\\nleisters\\nleisure\\nleisured\\nleisurely\\nleisures\\nlek\\nleks\\nlekythi\\nlekythoi\\nlekythos\\nlekythus\\nleman\\nlemans\\nlemma\\nlemmas\\nlemmata\\nlemming\\nlemmings\\nlemnisci\\nlemon\\nlemonade\\nlemonades\\nlemonish\\nlemons\\nlemony\\nlempira\\nlempiras\\nlemur\\nlemures\\nlemuroid\\nlemuroids\\nlemurs\\nlend\\nlender\\nlenders\\nlending\\nlends\\nlenes\\nlength\\nlengthen\\nlengthened\\nlengthening\\nlengthens\\nlengthier\\nlengthiest\\nlengths\\nlengthwise\\nlengthy\\nlenience\\nleniences\\nleniencies\\nleniency\\nlenient\\nleniently\\nlenis\\nlenities\\nlenitive\\nlenitives\\nlenity\\nleno\\nlenos\\nlens\\nlense\\nlensed\\nlenses\\nlensless\\nlent\\nlentando\\nlenten\\nlentic\\nlenticel\\nlenticels\\nlentigines\\nlentigo\\nlentil\\nlentils\\nlentisk\\nlentisks\\nlento\\nlentoid\\nlentos\\nleone\\nleones\\nleonine\\nleopard\\nleopards\\nleotard\\nleotards\\nleper\\nlepers\\nlepidote\\nleporid\\nleporids\\nleporine\\nleprechaun\\nleprechauns\\nleprose\\nleprosies\\nleprosy\\nleprotic\\nleprous\\nlepta\\nlepton\\nleptonic\\nleptons\\nlesbian\\nlesbianism\\nlesbianisms\\nlesbians\\nlesion\\nlesions\\nless\\nlessee\\nlessees\\nlessen\\nlessened\\nlessening\\nlessens\\nlesser\\nlesson\\nlessoned\\nlessoning\\nlessons\\nlessor\\nlessors\\nlest\\nlet\\nletch\\nletches\\nletdown\\nletdowns\\nlethal\\nlethally\\nlethals\\nlethargic\\nlethargies\\nlethargy\\nlethe\\nlethean\\nlethes\\nlets\\nletted\\nletter\\nlettered\\nletterer\\nletterers\\nletterhead\\nlettering\\nletters\\nletting\\nlettuce\\nlettuces\\nletup\\nletups\\nleu\\nleucemia\\nleucemias\\nleucemic\\nleucin\\nleucine\\nleucines\\nleucins\\nleucite\\nleucites\\nleucitic\\nleucoma\\nleucomas\\nleud\\nleudes\\nleuds\\nleukemia\\nleukemias\\nleukemic\\nleukemics\\nleukocytosis\\nleukoma\\nleukomas\\nleukon\\nleukons\\nleukopenia\\nleukophoresis\\nleukoses\\nleukosis\\nleukotic\\nlev\\nleva\\nlevant\\nlevanted\\nlevanter\\nlevanters\\nlevanting\\nlevants\\nlevator\\nlevatores\\nlevators\\nlevee\\nleveed\\nleveeing\\nlevees\\nlevel\\nleveled\\nleveler\\nlevelers\\nleveling\\nlevelled\\nleveller\\nlevellers\\nlevelling\\nlevelly\\nlevelness\\nlevelnesses\\nlevels\\nlever\\nleverage\\nleveraged\\nleverages\\nleveraging\\nlevered\\nleveret\\nleverets\\nlevering\\nlevers\\nleviable\\nleviathan\\nleviathans\\nlevied\\nlevier\\nleviers\\nlevies\\nlevigate\\nlevigated\\nlevigates\\nlevigating\\nlevin\\nlevins\\nlevirate\\nlevirates\\nlevitate\\nlevitated\\nlevitates\\nlevitating\\nlevities\\nlevity\\nlevo\\nlevogyre\\nlevulin\\nlevulins\\nlevulose\\nlevuloses\\nlevy\\nlevying\\nlewd\\nlewder\\nlewdest\\nlewdly\\nlewdness\\nlewdnesses\\nlewis\\nlewises\\nlewisite\\nlewisites\\nlewisson\\nlewissons\\nlex\\nlexica\\nlexical\\nlexicographer\\nlexicographers\\nlexicographic\\nlexicographical\\nlexicographies\\nlexicography\\nlexicon\\nlexicons\\nley\\nleys\\nli\\nliabilities\\nliability\\nliable\\nliaise\\nliaised\\nliaises\\nliaising\\nliaison\\nliaisons\\nliana\\nlianas\\nliane\\nlianes\\nliang\\nliangs\\nlianoid\\nliar\\nliard\\nliards\\nliars\\nlib\\nlibation\\nlibations\\nlibber\\nlibbers\\nlibeccio\\nlibeccios\\nlibel\\nlibelant\\nlibelants\\nlibeled\\nlibelee\\nlibelees\\nlibeler\\nlibelers\\nlibeling\\nlibelist\\nlibelists\\nlibelled\\nlibellee\\nlibellees\\nlibeller\\nlibellers\\nlibelling\\nlibellous\\nlibelous\\nlibels\\nliber\\nliberal\\nliberalism\\nliberalisms\\nliberalities\\nliberality\\nliberalize\\nliberalized\\nliberalizes\\nliberalizing\\nliberally\\nliberals\\nliberate\\nliberated\\nliberates\\nliberating\\nliberation\\nliberations\\nliberator\\nliberators\\nlibers\\nliberties\\nlibertine\\nlibertines\\nliberty\\nlibidinal\\nlibidinous\\nlibido\\nlibidos\\nlibra\\nlibrae\\nlibrarian\\nlibrarians\\nlibraries\\nlibrary\\nlibras\\nlibrate\\nlibrated\\nlibrates\\nlibrating\\nlibretti\\nlibrettist\\nlibrettists\\nlibretto\\nlibrettos\\nlibri\\nlibs\\nlice\\nlicence\\nlicenced\\nlicencee\\nlicencees\\nlicencer\\nlicencers\\nlicences\\nlicencing\\nlicense\\nlicensed\\nlicensee\\nlicensees\\nlicenser\\nlicensers\\nlicenses\\nlicensing\\nlicensor\\nlicensors\\nlicentious\\nlicentiously\\nlicentiousness\\nlicentiousnesses\\nlichee\\nlichees\\nlichen\\nlichened\\nlichenin\\nlichening\\nlichenins\\nlichenous\\nlichens\\nlichi\\nlichis\\nlicht\\nlichted\\nlichting\\nlichtly\\nlichts\\nlicit\\nlicitly\\nlick\\nlicked\\nlicker\\nlickers\\nlicking\\nlickings\\nlicks\\nlickspit\\nlickspits\\nlicorice\\nlicorices\\nlictor\\nlictors\\nlid\\nlidar\\nlidars\\nlidded\\nlidding\\nlidless\\nlido\\nlidos\\nlids\\nlie\\nlied\\nlieder\\nlief\\nliefer\\nliefest\\nliefly\\nliege\\nliegeman\\nliegemen\\nlieges\\nlien\\nlienable\\nlienal\\nliens\\nlienteries\\nlientery\\nlier\\nlierne\\nliernes\\nliers\\nlies\\nlieu\\nlieus\\nlieutenancies\\nlieutenancy\\nlieutenant\\nlieutenants\\nlieve\\nliever\\nlievest\\nlife\\nlifeblood\\nlifebloods\\nlifeboat\\nlifeboats\\nlifeful\\nlifeguard\\nlifeguards\\nlifeless\\nlifelike\\nlifeline\\nlifelines\\nlifelong\\nlifer\\nlifers\\nlifesaver\\nlifesavers\\nlifesaving\\nlifesavings\\nlifetime\\nlifetimes\\nlifeway\\nlifeways\\nlifework\\nlifeworks\\nlift\\nliftable\\nlifted\\nlifter\\nlifters\\nlifting\\nliftman\\nliftmen\\nliftoff\\nliftoffs\\nlifts\\nligament\\nligaments\\nligan\\nligand\\nligands\\nligans\\nligase\\nligases\\nligate\\nligated\\nligates\\nligating\\nligation\\nligations\\nligative\\nligature\\nligatured\\nligatures\\nligaturing\\nlight\\nlightbulb\\nlightbulbs\\nlighted\\nlighten\\nlightened\\nlightening\\nlightens\\nlighter\\nlightered\\nlightering\\nlighters\\nlightest\\nlightful\\nlighthearted\\nlightheartedly\\nlightheartedness\\nlightheartednesses\\nlighthouse\\nlighthouses\\nlighting\\nlightings\\nlightish\\nlightly\\nlightness\\nlightnesses\\nlightning\\nlightnings\\nlightproof\\nlights\\nligneous\\nlignified\\nlignifies\\nlignify\\nlignifying\\nlignin\\nlignins\\nlignite\\nlignites\\nlignitic\\nligroin\\nligroine\\nligroines\\nligroins\\nligula\\nligulae\\nligular\\nligulas\\nligulate\\nligule\\nligules\\nliguloid\\nligure\\nligures\\nlikable\\nlike\\nlikeable\\nliked\\nlikelier\\nlikeliest\\nlikelihood\\nlikelihoods\\nlikely\\nliken\\nlikened\\nlikeness\\nlikenesses\\nlikening\\nlikens\\nliker\\nlikers\\nlikes\\nlikest\\nlikewise\\nliking\\nlikings\\nlikuta\\nlilac\\nlilacs\\nlilied\\nlilies\\nlilliput\\nlilliputs\\nlilt\\nlilted\\nlilting\\nlilts\\nlilty\\nlily\\nlilylike\\nlima\\nlimacine\\nlimacon\\nlimacons\\nliman\\nlimans\\nlimas\\nlimb\\nlimba\\nlimbas\\nlimbate\\nlimbeck\\nlimbecks\\nlimbed\\nlimber\\nlimbered\\nlimberer\\nlimberest\\nlimbering\\nlimberly\\nlimbers\\nlimbi\\nlimbic\\nlimbier\\nlimbiest\\nlimbing\\nlimbless\\nlimbo\\nlimbos\\nlimbs\\nlimbus\\nlimbuses\\nlimby\\nlime\\nlimeade\\nlimeades\\nlimed\\nlimekiln\\nlimekilns\\nlimeless\\nlimelight\\nlimelights\\nlimen\\nlimens\\nlimerick\\nlimericks\\nlimes\\nlimestone\\nlimestones\\nlimey\\nlimeys\\nlimier\\nlimiest\\nlimina\\nliminal\\nliminess\\nliminesses\\nliming\\nlimit\\nlimitary\\nlimitation\\nlimitations\\nlimited\\nlimiteds\\nlimiter\\nlimiters\\nlimites\\nlimiting\\nlimitless\\nlimits\\nlimmer\\nlimmers\\nlimn\\nlimned\\nlimner\\nlimners\\nlimnetic\\nlimnic\\nlimning\\nlimns\\nlimo\\nlimonene\\nlimonenes\\nlimonite\\nlimonites\\nlimos\\nlimousine\\nlimousines\\nlimp\\nlimped\\nlimper\\nlimpers\\nlimpest\\nlimpet\\nlimpets\\nlimpid\\nlimpidly\\nlimping\\nlimpkin\\nlimpkins\\nlimply\\nlimpness\\nlimpnesses\\nlimps\\nlimpsy\\nlimuli\\nlimuloid\\nlimuloids\\nlimulus\\nlimy\\nlin\\nlinable\\nlinac\\nlinacs\\nlinage\\nlinages\\nlinalol\\nlinalols\\nlinalool\\nlinalools\\nlinchpin\\nlinchpins\\nlindane\\nlindanes\\nlinden\\nlindens\\nlindies\\nlindy\\nline\\nlineable\\nlineage\\nlineages\\nlineal\\nlineally\\nlineaments\\nlinear\\nlinearly\\nlineate\\nlineated\\nlinebred\\nlinecut\\nlinecuts\\nlined\\nlineless\\nlinelike\\nlineman\\nlinemen\\nlinen\\nlinens\\nlineny\\nliner\\nliners\\nlines\\nlinesman\\nlinesmen\\nlineup\\nlineups\\nliney\\nling\\nlinga\\nlingam\\nlingams\\nlingas\\nlingcod\\nlingcods\\nlinger\\nlingered\\nlingerer\\nlingerers\\nlingerie\\nlingeries\\nlingering\\nlingers\\nlingier\\nlingiest\\nlingo\\nlingoes\\nlings\\nlingua\\nlinguae\\nlingual\\nlinguals\\nlinguine\\nlinguines\\nlinguini\\nlinguinis\\nlinguist\\nlinguistic\\nlinguistics\\nlinguists\\nlingy\\nlinier\\nliniest\\nliniment\\nliniments\\nlinin\\nlining\\nlinings\\nlinins\\nlink\\nlinkable\\nlinkage\\nlinkages\\nlinkboy\\nlinkboys\\nlinked\\nlinker\\nlinkers\\nlinking\\nlinkman\\nlinkmen\\nlinks\\nlinksman\\nlinksmen\\nlinkup\\nlinkups\\nlinkwork\\nlinkworks\\nlinky\\nlinn\\nlinnet\\nlinnets\\nlinns\\nlino\\nlinocut\\nlinocuts\\nlinoleum\\nlinoleums\\nlinos\\nlins\\nlinsang\\nlinsangs\\nlinseed\\nlinseeds\\nlinsey\\nlinseys\\nlinstock\\nlinstocks\\nlint\\nlintel\\nlintels\\nlinter\\nlinters\\nlintier\\nlintiest\\nlintless\\nlintol\\nlintols\\nlints\\nlinty\\nlinum\\nlinums\\nliny\\nlion\\nlioness\\nlionesses\\nlionfish\\nlionfishes\\nlionise\\nlionised\\nlioniser\\nlionisers\\nlionises\\nlionising\\nlionization\\nlionizations\\nlionize\\nlionized\\nlionizer\\nlionizers\\nlionizes\\nlionizing\\nlionlike\\nlions\\nlip\\nlipase\\nlipases\\nlipid\\nlipide\\nlipides\\nlipidic\\nlipids\\nlipin\\nlipins\\nlipless\\nliplike\\nlipocyte\\nlipocytes\\nlipoid\\nlipoidal\\nlipoids\\nlipoma\\nlipomas\\nlipomata\\nlipped\\nlippen\\nlippened\\nlippening\\nlippens\\nlipper\\nlippered\\nlippering\\nlippers\\nlippier\\nlippiest\\nlipping\\nlippings\\nlippy\\nlipreading\\nlipreadings\\nlips\\nlipstick\\nlipsticks\\nliquate\\nliquated\\nliquates\\nliquating\\nliquefaction\\nliquefactions\\nliquefiable\\nliquefied\\nliquefier\\nliquefiers\\nliquefies\\nliquefy\\nliquefying\\nliqueur\\nliqueurs\\nliquid\\nliquidate\\nliquidated\\nliquidates\\nliquidating\\nliquidation\\nliquidations\\nliquidities\\nliquidity\\nliquidly\\nliquids\\nliquified\\nliquifies\\nliquify\\nliquifying\\nliquor\\nliquored\\nliquoring\\nliquors\\nlira\\nliras\\nlire\\nliripipe\\nliripipes\\nlirot\\nliroth\\nlis\\nlisle\\nlisles\\nlisp\\nlisped\\nlisper\\nlispers\\nlisping\\nlisps\\nlissom\\nlissome\\nlissomly\\nlist\\nlistable\\nlisted\\nlistel\\nlistels\\nlisten\\nlistened\\nlistener\\nlisteners\\nlistening\\nlistens\\nlister\\nlisters\\nlisting\\nlistings\\nlistless\\nlistlessly\\nlistlessness\\nlistlessnesses\\nlists\\nlit\\nlitai\\nlitanies\\nlitany\\nlitas\\nlitchi\\nlitchis\\nliter\\nliteracies\\nliteracy\\nliteral\\nliterally\\nliterals\\nliterary\\nliterate\\nliterates\\nliterati\\nliterature\\nliteratures\\nliters\\nlitharge\\nlitharges\\nlithe\\nlithely\\nlithemia\\nlithemias\\nlithemic\\nlither\\nlithesome\\nlithest\\nlithia\\nlithias\\nlithic\\nlithium\\nlithiums\\nlitho\\nlithograph\\nlithographer\\nlithographers\\nlithographic\\nlithographies\\nlithographs\\nlithography\\nlithoid\\nlithos\\nlithosol\\nlithosols\\nlitigant\\nlitigants\\nlitigate\\nlitigated\\nlitigates\\nlitigating\\nlitigation\\nlitigations\\nlitigious\\nlitigiousness\\nlitigiousnesses\\nlitmus\\nlitmuses\\nlitoral\\nlitotes\\nlitre\\nlitres\\nlits\\nlitten\\nlitter\\nlittered\\nlitterer\\nlitterers\\nlittering\\nlitters\\nlittery\\nlittle\\nlittleness\\nlittlenesses\\nlittler\\nlittles\\nlittlest\\nlittlish\\nlittoral\\nlittorals\\nlitu\\nliturgic\\nliturgical\\nliturgically\\nliturgies\\nliturgy\\nlivabilities\\nlivability\\nlivable\\nlive\\nliveable\\nlived\\nlivelier\\nliveliest\\nlivelihood\\nlivelihoods\\nlivelily\\nliveliness\\nlivelinesses\\nlivelong\\nlively\\nliven\\nlivened\\nlivener\\nliveners\\nliveness\\nlivenesses\\nlivening\\nlivens\\nliver\\nliveried\\nliveries\\nliverish\\nlivers\\nlivery\\nliveryman\\nliverymen\\nlives\\nlivest\\nlivestock\\nlivestocks\\nlivetrap\\nlivetrapped\\nlivetrapping\\nlivetraps\\nlivid\\nlividities\\nlividity\\nlividly\\nlivier\\nliviers\\nliving\\nlivingly\\nlivings\\nlivre\\nlivres\\nlivyer\\nlivyers\\nlixivia\\nlixivial\\nlixivium\\nlixiviums\\nlizard\\nlizards\\nllama\\nllamas\\nllano\\nllanos\\nlo\\nloach\\nloaches\\nload\\nloaded\\nloader\\nloaders\\nloading\\nloadings\\nloads\\nloadstar\\nloadstars\\nloaf\\nloafed\\nloafer\\nloafers\\nloafing\\nloafs\\nloam\\nloamed\\nloamier\\nloamiest\\nloaming\\nloamless\\nloams\\nloamy\\nloan\\nloanable\\nloaned\\nloaner\\nloaners\\nloaning\\nloanings\\nloans\\nloanword\\nloanwords\\nloath\\nloathe\\nloathed\\nloather\\nloathers\\nloathes\\nloathful\\nloathing\\nloathings\\nloathly\\nloathsome\\nloaves\\nlob\\nlobar\\nlobate\\nlobated\\nlobately\\nlobation\\nlobations\\nlobbed\\nlobbied\\nlobbies\\nlobbing\\nlobby\\nlobbyer\\nlobbyers\\nlobbygow\\nlobbygows\\nlobbying\\nlobbyism\\nlobbyisms\\nlobbyist\\nlobbyists\\nlobe\\nlobed\\nlobefin\\nlobefins\\nlobelia\\nlobelias\\nlobeline\\nlobelines\\nlobes\\nloblollies\\nloblolly\\nlobo\\nlobos\\nlobotomies\\nlobotomy\\nlobs\\nlobster\\nlobsters\\nlobstick\\nlobsticks\\nlobular\\nlobulate\\nlobule\\nlobules\\nlobulose\\nlobworm\\nlobworms\\nloca\\nlocal\\nlocale\\nlocales\\nlocalise\\nlocalised\\nlocalises\\nlocalising\\nlocalism\\nlocalisms\\nlocalist\\nlocalists\\nlocalite\\nlocalites\\nlocalities\\nlocality\\nlocalization\\nlocalizations\\nlocalize\\nlocalized\\nlocalizes\\nlocalizing\\nlocally\\nlocals\\nlocate\\nlocated\\nlocater\\nlocaters\\nlocates\\nlocating\\nlocation\\nlocations\\nlocative\\nlocatives\\nlocator\\nlocators\\nloch\\nlochia\\nlochial\\nlochs\\nloci\\nlock\\nlockable\\nlockage\\nlockages\\nlockbox\\nlockboxes\\nlocked\\nlocker\\nlockers\\nlocket\\nlockets\\nlocking\\nlockjaw\\nlockjaws\\nlocknut\\nlocknuts\\nlockout\\nlockouts\\nlockram\\nlockrams\\nlocks\\nlocksmith\\nlocksmiths\\nlockstep\\nlocksteps\\nlockup\\nlockups\\nloco\\nlocoed\\nlocoes\\nlocofoco\\nlocofocos\\nlocoing\\nlocoism\\nlocoisms\\nlocomote\\nlocomoted\\nlocomotes\\nlocomoting\\nlocomotion\\nlocomotions\\nlocomotive\\nlocomotives\\nlocos\\nlocoweed\\nlocoweeds\\nlocular\\nloculate\\nlocule\\nloculed\\nlocules\\nloculi\\nloculus\\nlocum\\nlocums\\nlocus\\nlocust\\nlocusta\\nlocustae\\nlocustal\\nlocusts\\nlocution\\nlocutions\\nlocutories\\nlocutory\\nlode\\nloden\\nlodens\\nlodes\\nlodestar\\nlodestars\\nlodge\\nlodged\\nlodgement\\nlodgements\\nlodger\\nlodgers\\nlodges\\nlodging\\nlodgings\\nlodgment\\nlodgments\\nlodicule\\nlodicules\\nloess\\nloessal\\nloesses\\nloessial\\nloft\\nlofted\\nlofter\\nlofters\\nloftier\\nloftiest\\nloftily\\nloftiness\\nloftinesses\\nlofting\\nloftless\\nlofts\\nlofty\\nlog\\nlogan\\nlogans\\nlogarithm\\nlogarithmic\\nlogarithms\\nlogbook\\nlogbooks\\nloge\\nloges\\nloggats\\nlogged\\nlogger\\nloggerhead\\nloggerheads\\nloggers\\nloggets\\nloggia\\nloggias\\nloggie\\nloggier\\nloggiest\\nlogging\\nloggings\\nloggy\\nlogia\\nlogic\\nlogical\\nlogically\\nlogician\\nlogicians\\nlogicise\\nlogicised\\nlogicises\\nlogicising\\nlogicize\\nlogicized\\nlogicizes\\nlogicizing\\nlogics\\nlogier\\nlogiest\\nlogily\\nloginess\\nloginesses\\nlogion\\nlogions\\nlogistic\\nlogistical\\nlogistics\\nlogjam\\nlogjams\\nlogo\\nlogogram\\nlogograms\\nlogoi\\nlogomach\\nlogomachs\\nlogos\\nlogotype\\nlogotypes\\nlogotypies\\nlogotypy\\nlogroll\\nlogrolled\\nlogrolling\\nlogrolls\\nlogs\\nlogway\\nlogways\\nlogwood\\nlogwoods\\nlogy\\nloin\\nloins\\nloiter\\nloitered\\nloiterer\\nloiterers\\nloitering\\nloiters\\nloll\\nlolled\\nloller\\nlollers\\nlollies\\nlolling\\nlollipop\\nlollipops\\nlollop\\nlolloped\\nlolloping\\nlollops\\nlolls\\nlolly\\nlollygag\\nlollygagged\\nlollygagging\\nlollygags\\nlollypop\\nlollypops\\nloment\\nlomenta\\nloments\\nlomentum\\nlomentums\\nlone\\nlonelier\\nloneliest\\nlonelily\\nloneliness\\nlonelinesses\\nlonely\\nloneness\\nlonenesses\\nloner\\nloners\\nlonesome\\nlonesomely\\nlonesomeness\\nlonesomenesses\\nlonesomes\\nlong\\nlongan\\nlongans\\nlongboat\\nlongboats\\nlongbow\\nlongbows\\nlonge\\nlonged\\nlongeing\\nlonger\\nlongeron\\nlongerons\\nlongers\\nlonges\\nlongest\\nlongevities\\nlongevity\\nlonghair\\nlonghairs\\nlonghand\\nlonghands\\nlonghead\\nlongheads\\nlonghorn\\nlonghorns\\nlonging\\nlongingly\\nlongings\\nlongish\\nlongitude\\nlongitudes\\nlongitudinal\\nlongitudinally\\nlongleaf\\nlongleaves\\nlongline\\nlonglines\\nlongly\\nlongness\\nlongnesses\\nlongs\\nlongship\\nlongships\\nlongshoreman\\nlongshoremen\\nlongsome\\nlongspur\\nlongspurs\\nlongtime\\nlongueur\\nlongueurs\\nlongways\\nlongwise\\nloo\\nloobies\\nlooby\\nlooed\\nlooey\\nlooeys\\nloof\\nloofa\\nloofah\\nloofahs\\nloofas\\nloofs\\nlooie\\nlooies\\nlooing\\nlook\\nlookdown\\nlookdowns\\nlooked\\nlooker\\nlookers\\nlooking\\nlookout\\nlookouts\\nlooks\\nlookup\\nlookups\\nloom\\nloomed\\nlooming\\nlooms\\nloon\\nlooney\\nloonier\\nloonies\\nlooniest\\nloons\\nloony\\nloop\\nlooped\\nlooper\\nloopers\\nloophole\\nloopholed\\nloopholes\\nloopholing\\nloopier\\nloopiest\\nlooping\\nloops\\nloopy\\nloos\\nloose\\nloosed\\nlooseleaf\\nlooseleafs\\nloosely\\nloosen\\nloosened\\nloosener\\nlooseners\\nlooseness\\nloosenesses\\nloosening\\nloosens\\nlooser\\nlooses\\nloosest\\nloosing\\nloot\\nlooted\\nlooter\\nlooters\\nlooting\\nloots\\nlop\\nlope\\nloped\\nloper\\nlopers\\nlopes\\nloping\\nlopped\\nlopper\\nloppered\\nloppering\\nloppers\\nloppier\\nloppiest\\nlopping\\nloppy\\nlops\\nlopsided\\nlopsidedly\\nlopsidedness\\nlopsidednesses\\nlopstick\\nlopsticks\\nloquacious\\nloquacities\\nloquacity\\nloquat\\nloquats\\nloral\\nloran\\nlorans\\nlord\\nlorded\\nlording\\nlordings\\nlordless\\nlordlier\\nlordliest\\nlordlike\\nlordling\\nlordlings\\nlordly\\nlordoma\\nlordomas\\nlordoses\\nlordosis\\nlordotic\\nlords\\nlordship\\nlordships\\nlordy\\nlore\\nloreal\\nlores\\nlorgnon\\nlorgnons\\nlorica\\nloricae\\nloricate\\nloricates\\nlories\\nlorikeet\\nlorikeets\\nlorimer\\nlorimers\\nloriner\\nloriners\\nloris\\nlorises\\nlorn\\nlornness\\nlornnesses\\nlorries\\nlorry\\nlory\\nlosable\\nlose\\nlosel\\nlosels\\nloser\\nlosers\\nloses\\nlosing\\nlosingly\\nlosings\\nloss\\nlosses\\nlossy\\nlost\\nlostness\\nlostnesses\\nlot\\nlota\\nlotah\\nlotahs\\nlotas\\nloth\\nlothario\\nlotharios\\nlothsome\\nlotic\\nlotion\\nlotions\\nlotos\\nlotoses\\nlots\\nlotted\\nlotteries\\nlottery\\nlotting\\nlotto\\nlottos\\nlotus\\nlotuses\\nloud\\nlouden\\nloudened\\nloudening\\nloudens\\nlouder\\nloudest\\nloudish\\nloudlier\\nloudliest\\nloudly\\nloudness\\nloudnesses\\nloudspeaker\\nloudspeakers\\nlough\\nloughs\\nlouie\\nlouies\\nlouis\\nlounge\\nlounged\\nlounger\\nloungers\\nlounges\\nlounging\\nloungy\\nloup\\nloupe\\nlouped\\nloupen\\nloupes\\nlouping\\nloups\\nlour\\nloured\\nlouring\\nlours\\nloury\\nlouse\\nloused\\nlouses\\nlousier\\nlousiest\\nlousily\\nlousiness\\nlousinesses\\nlousing\\nlousy\\nlout\\nlouted\\nlouting\\nloutish\\nloutishly\\nlouts\\nlouver\\nlouvered\\nlouvers\\nlouvre\\nlouvres\\nlovable\\nlovably\\nlovage\\nlovages\\nlove\\nloveable\\nloveably\\nlovebird\\nlovebirds\\nloved\\nloveless\\nlovelier\\nlovelies\\nloveliest\\nlovelily\\nloveliness\\nlovelinesses\\nlovelock\\nlovelocks\\nlovelorn\\nlovely\\nlover\\nloverly\\nlovers\\nloves\\nlovesick\\nlovesome\\nlovevine\\nlovevines\\nloving\\nlovingly\\nlow\\nlowborn\\nlowboy\\nlowboys\\nlowbred\\nlowbrow\\nlowbrows\\nlowdown\\nlowdowns\\nlowe\\nlowed\\nlower\\nlowercase\\nlowered\\nlowering\\nlowers\\nlowery\\nlowes\\nlowest\\nlowing\\nlowings\\nlowish\\nlowland\\nlowlands\\nlowlier\\nlowliest\\nlowlife\\nlowlifes\\nlowliness\\nlowlinesses\\nlowly\\nlown\\nlowness\\nlownesses\\nlows\\nlowse\\nlox\\nloxed\\nloxes\\nloxing\\nloyal\\nloyaler\\nloyalest\\nloyalism\\nloyalisms\\nloyalist\\nloyalists\\nloyally\\nloyalties\\nloyalty\\nlozenge\\nlozenges\\nluau\\nluaus\\nlubber\\nlubberly\\nlubbers\\nlube\\nlubes\\nlubric\\nlubricant\\nlubricants\\nlubricate\\nlubricated\\nlubricates\\nlubricating\\nlubrication\\nlubrications\\nlubricator\\nlubricators\\nlucarne\\nlucarnes\\nluce\\nlucence\\nlucences\\nlucencies\\nlucency\\nlucent\\nlucently\\nlucern\\nlucerne\\nlucernes\\nlucerns\\nluces\\nlucid\\nlucidities\\nlucidity\\nlucidly\\nlucidness\\nlucidnesses\\nlucifer\\nlucifers\\nluck\\nlucked\\nluckie\\nluckier\\nluckies\\nluckiest\\nluckily\\nluckiness\\nluckinesses\\nlucking\\nluckless\\nlucks\\nlucky\\nlucrative\\nlucratively\\nlucrativeness\\nlucrativenesses\\nlucre\\nlucres\\nluculent\\nludicrous\\nludicrously\\nludicrousness\\nludicrousnesses\\nlues\\nluetic\\nluetics\\nluff\\nluffa\\nluffas\\nluffed\\nluffing\\nluffs\\nlug\\nluge\\nluges\\nluggage\\nluggages\\nlugged\\nlugger\\nluggers\\nluggie\\nluggies\\nlugging\\nlugs\\nlugsail\\nlugsails\\nlugubrious\\nlugubriously\\nlugubriousness\\nlugubriousnesses\\nlugworm\\nlugworms\\nlukewarm\\nlull\\nlullabied\\nlullabies\\nlullaby\\nlullabying\\nlulled\\nlulling\\nlulls\\nlulu\\nlulus\\nlum\\nlumbago\\nlumbagos\\nlumbar\\nlumbars\\nlumber\\nlumbered\\nlumberer\\nlumberers\\nlumbering\\nlumberjack\\nlumberjacks\\nlumberman\\nlumbermen\\nlumbers\\nlumberyard\\nlumberyards\\nlumen\\nlumenal\\nlumens\\nlumina\\nluminal\\nluminance\\nluminances\\nluminaries\\nluminary\\nluminescence\\nluminescences\\nluminescent\\nluminist\\nluminists\\nluminosities\\nluminosity\\nluminous\\nluminously\\nlummox\\nlummoxes\\nlump\\nlumped\\nlumpen\\nlumpens\\nlumper\\nlumpers\\nlumpfish\\nlumpfishes\\nlumpier\\nlumpiest\\nlumpily\\nlumping\\nlumpish\\nlumps\\nlumpy\\nlums\\nluna\\nlunacies\\nlunacy\\nlunar\\nlunarian\\nlunarians\\nlunars\\nlunas\\nlunate\\nlunated\\nlunately\\nlunatic\\nlunatics\\nlunation\\nlunations\\nlunch\\nlunched\\nluncheon\\nluncheons\\nluncher\\nlunchers\\nlunches\\nlunching\\nlune\\nlunes\\nlunet\\nlunets\\nlunette\\nlunettes\\nlung\\nlungan\\nlungans\\nlunge\\nlunged\\nlungee\\nlungees\\nlunger\\nlungers\\nlunges\\nlungfish\\nlungfishes\\nlungi\\nlunging\\nlungis\\nlungs\\nlungworm\\nlungworms\\nlungwort\\nlungworts\\nlungyi\\nlungyis\\nlunier\\nlunies\\nluniest\\nlunk\\nlunker\\nlunkers\\nlunkhead\\nlunkheads\\nlunks\\nlunt\\nlunted\\nlunting\\nlunts\\nlunula\\nlunulae\\nlunular\\nlunulate\\nlunule\\nlunules\\nluny\\nlupanar\\nlupanars\\nlupin\\nlupine\\nlupines\\nlupins\\nlupous\\nlupulin\\nlupulins\\nlupus\\nlupuses\\nlurch\\nlurched\\nlurcher\\nlurchers\\nlurches\\nlurching\\nlurdan\\nlurdane\\nlurdanes\\nlurdans\\nlure\\nlured\\nlurer\\nlurers\\nlures\\nlurid\\nluridly\\nluring\\nlurk\\nlurked\\nlurker\\nlurkers\\nlurking\\nlurks\\nluscious\\nlusciously\\nlusciousness\\nlusciousnesses\\nlush\\nlushed\\nlusher\\nlushes\\nlushest\\nlushing\\nlushly\\nlushness\\nlushnesses\\nlust\\nlusted\\nluster\\nlustered\\nlustering\\nlusterless\\nlusters\\nlustful\\nlustier\\nlustiest\\nlustily\\nlustiness\\nlustinesses\\nlusting\\nlustra\\nlustral\\nlustrate\\nlustrated\\nlustrates\\nlustrating\\nlustre\\nlustred\\nlustres\\nlustring\\nlustrings\\nlustrous\\nlustrum\\nlustrums\\nlusts\\nlusty\\nlusus\\nlususes\\nlutanist\\nlutanists\\nlute\\nlutea\\nluteal\\nlutecium\\nluteciums\\nluted\\nlutein\\nluteins\\nlutenist\\nlutenists\\nluteolin\\nluteolins\\nluteous\\nlutes\\nlutetium\\nlutetiums\\nluteum\\nluthern\\nlutherns\\nluting\\nlutings\\nlutist\\nlutists\\nlux\\nluxate\\nluxated\\nluxates\\nluxating\\nluxation\\nluxations\\nluxe\\nluxes\\nluxuriance\\nluxuriances\\nluxuriant\\nluxuriantly\\nluxuriate\\nluxuriated\\nluxuriates\\nluxuriating\\nluxuries\\nluxurious\\nluxuriously\\nluxury\\nlyard\\nlyart\\nlyase\\nlyases\\nlycanthropies\\nlycanthropy\\nlycea\\nlycee\\nlycees\\nlyceum\\nlyceums\\nlychee\\nlychees\\nlychnis\\nlychnises\\nlycopene\\nlycopenes\\nlycopod\\nlycopods\\nlyddite\\nlyddites\\nlye\\nlyes\\nlying\\nlyingly\\nlyings\\nlymph\\nlymphatic\\nlymphocytopenia\\nlymphocytosis\\nlymphoid\\nlymphoma\\nlymphomas\\nlymphomata\\nlymphs\\nlyncean\\nlynch\\nlynched\\nlyncher\\nlynchers\\nlynches\\nlynching\\nlynchings\\nlynx\\nlynxes\\nlyophile\\nlyrate\\nlyrated\\nlyrately\\nlyre\\nlyrebird\\nlyrebirds\\nlyres\\nlyric\\nlyrical\\nlyricise\\nlyricised\\nlyricises\\nlyricising\\nlyricism\\nlyricisms\\nlyricist\\nlyricists\\nlyricize\\nlyricized\\nlyricizes\\nlyricizing\\nlyrics\\nlyriform\\nlyrism\\nlyrisms\\nlyrist\\nlyrists\\nlysate\\nlysates\\nlyse\\nlysed\\nlyses\\nlysin\\nlysine\\nlysines\\nlysing\\nlysins\\nlysis\\nlysogen\\nlysogenies\\nlysogens\\nlysogeny\\nlysosome\\nlysosomes\\nlysozyme\\nlysozymes\\nlyssa\\nlyssas\\nlytic\\nlytta\\nlyttae\\nlyttas\\nma\\nmaar\\nmaars\\nmac\\nmacaber\\nmacabre\\nmacaco\\nmacacos\\nmacadam\\nmacadamize\\nmacadamized\\nmacadamizes\\nmacadamizing\\nmacadams\\nmacaque\\nmacaques\\nmacaroni\\nmacaronies\\nmacaronis\\nmacaroon\\nmacaroons\\nmacaw\\nmacaws\\nmaccabaw\\nmaccabaws\\nmaccaboy\\nmaccaboys\\nmacchia\\nmacchie\\nmaccoboy\\nmaccoboys\\nmace\\nmaced\\nmacer\\nmacerate\\nmacerated\\nmacerates\\nmacerating\\nmacers\\nmaces\\nmach\\nmachete\\nmachetes\\nmachinate\\nmachinated\\nmachinates\\nmachinating\\nmachination\\nmachinations\\nmachine\\nmachineable\\nmachined\\nmachineries\\nmachinery\\nmachines\\nmachining\\nmachinist\\nmachinists\\nmachismo\\nmachismos\\nmacho\\nmachos\\nmachree\\nmachrees\\nmachs\\nmachzor\\nmachzorim\\nmachzors\\nmacing\\nmack\\nmackerel\\nmackerels\\nmackinaw\\nmackinaws\\nmackle\\nmackled\\nmackles\\nmackling\\nmacks\\nmacle\\nmacled\\nmacles\\nmacrame\\nmacrames\\nmacro\\nmacrocosm\\nmacrocosms\\nmacron\\nmacrons\\nmacros\\nmacrural\\nmacruran\\nmacrurans\\nmacs\\nmacula\\nmaculae\\nmacular\\nmaculas\\nmaculate\\nmaculated\\nmaculates\\nmaculating\\nmacule\\nmaculed\\nmacules\\nmaculing\\nmad\\nmadam\\nmadame\\nmadames\\nmadams\\nmadcap\\nmadcaps\\nmadded\\nmadden\\nmaddened\\nmaddening\\nmaddens\\nmadder\\nmadders\\nmaddest\\nmadding\\nmaddish\\nmade\\nmadeira\\nmadeiras\\nmademoiselle\\nmademoiselles\\nmadhouse\\nmadhouses\\nmadly\\nmadman\\nmadmen\\nmadness\\nmadnesses\\nmadonna\\nmadonnas\\nmadras\\nmadrases\\nmadre\\nmadres\\nmadrigal\\nmadrigals\\nmadrona\\nmadronas\\nmadrone\\nmadrones\\nmadrono\\nmadronos\\nmads\\nmaduro\\nmaduros\\nmadwoman\\nmadwomen\\nmadwort\\nmadworts\\nmadzoon\\nmadzoons\\nmae\\nmaelstrom\\nmaelstroms\\nmaenad\\nmaenades\\nmaenadic\\nmaenads\\nmaes\\nmaestoso\\nmaestosos\\nmaestri\\nmaestro\\nmaestros\\nmaffia\\nmaffias\\nmaffick\\nmafficked\\nmafficking\\nmafficks\\nmafia\\nmafias\\nmafic\\nmafiosi\\nmafioso\\nmaftir\\nmaftirs\\nmag\\nmagazine\\nmagazines\\nmagdalen\\nmagdalens\\nmage\\nmagenta\\nmagentas\\nmages\\nmagestical\\nmagestically\\nmaggot\\nmaggots\\nmaggoty\\nmagi\\nmagic\\nmagical\\nmagically\\nmagician\\nmagicians\\nmagicked\\nmagicking\\nmagics\\nmagilp\\nmagilps\\nmagister\\nmagisterial\\nmagisters\\nmagistracies\\nmagistracy\\nmagistrate\\nmagistrates\\nmagma\\nmagmas\\nmagmata\\nmagmatic\\nmagnanimities\\nmagnanimity\\nmagnanimous\\nmagnanimously\\nmagnanimousness\\nmagnanimousnesses\\nmagnate\\nmagnates\\nmagnesia\\nmagnesias\\nmagnesic\\nmagnesium\\nmagnesiums\\nmagnet\\nmagnetic\\nmagnetically\\nmagnetics\\nmagnetism\\nmagnetisms\\nmagnetite\\nmagnetites\\nmagnetizable\\nmagnetization\\nmagnetizations\\nmagnetize\\nmagnetized\\nmagnetizer\\nmagnetizers\\nmagnetizes\\nmagnetizing\\nmagneto\\nmagneton\\nmagnetons\\nmagnetos\\nmagnets\\nmagnific\\nmagnification\\nmagnifications\\nmagnificence\\nmagnificences\\nmagnificent\\nmagnificently\\nmagnified\\nmagnifier\\nmagnifiers\\nmagnifies\\nmagnify\\nmagnifying\\nmagnitude\\nmagnitudes\\nmagnolia\\nmagnolias\\nmagnum\\nmagnums\\nmagot\\nmagots\\nmagpie\\nmagpies\\nmags\\nmaguey\\nmagueys\\nmagus\\nmaharaja\\nmaharajas\\nmaharani\\nmaharanis\\nmahatma\\nmahatmas\\nmahjong\\nmahjongg\\nmahjonggs\\nmahjongs\\nmahoe\\nmahoes\\nmahogonies\\nmahogony\\nmahonia\\nmahonias\\nmahout\\nmahouts\\nmahuang\\nmahuangs\\nmahzor\\nmahzorim\\nmahzors\\nmaid\\nmaiden\\nmaidenhair\\nmaidenhairs\\nmaidenhood\\nmaidenhoods\\nmaidenly\\nmaidens\\nmaidhood\\nmaidhoods\\nmaidish\\nmaids\\nmaieutic\\nmaigre\\nmaihem\\nmaihems\\nmail\\nmailable\\nmailbag\\nmailbags\\nmailbox\\nmailboxes\\nmaile\\nmailed\\nmailer\\nmailers\\nmailes\\nmailing\\nmailings\\nmaill\\nmailless\\nmaillot\\nmaillots\\nmaills\\nmailman\\nmailmen\\nmailperson\\nmailpersons\\nmails\\nmailwoman\\nmaim\\nmaimed\\nmaimer\\nmaimers\\nmaiming\\nmaims\\nmain\\nmainland\\nmainlands\\nmainline\\nmainlined\\nmainlines\\nmainlining\\nmainly\\nmainmast\\nmainmasts\\nmains\\nmainsail\\nmainsails\\nmainstay\\nmainstays\\nmainstream\\nmainstreams\\nmaintain\\nmaintainabilities\\nmaintainability\\nmaintainable\\nmaintainance\\nmaintainances\\nmaintained\\nmaintaining\\nmaintains\\nmaintenance\\nmaintenances\\nmaintop\\nmaintops\\nmaiolica\\nmaiolicas\\nmair\\nmairs\\nmaist\\nmaists\\nmaize\\nmaizes\\nmajagua\\nmajaguas\\nmajestic\\nmajesties\\nmajesty\\nmajolica\\nmajolicas\\nmajor\\nmajordomo\\nmajordomos\\nmajored\\nmajoring\\nmajorities\\nmajority\\nmajors\\nmakable\\nmakar\\nmakars\\nmake\\nmakeable\\nmakebate\\nmakebates\\nmakefast\\nmakefasts\\nmaker\\nmakers\\nmakes\\nmakeshift\\nmakeshifts\\nmakeup\\nmakeups\\nmakimono\\nmakimonos\\nmaking\\nmakings\\nmako\\nmakos\\nmakuta\\nmaladies\\nmaladjusted\\nmaladjustment\\nmaladjustments\\nmaladroit\\nmalady\\nmalaise\\nmalaises\\nmalamute\\nmalamutes\\nmalapert\\nmalaperts\\nmalaprop\\nmalapropism\\nmalapropisms\\nmalaprops\\nmalar\\nmalaria\\nmalarial\\nmalarian\\nmalarias\\nmalarkey\\nmalarkeys\\nmalarkies\\nmalarky\\nmalaroma\\nmalaromas\\nmalars\\nmalate\\nmalates\\nmalcontent\\nmalcontents\\nmale\\nmaleate\\nmaleates\\nmaledict\\nmaledicted\\nmaledicting\\nmalediction\\nmaledictions\\nmaledicts\\nmalefactor\\nmalefactors\\nmalefic\\nmaleficence\\nmaleficences\\nmaleficent\\nmalemiut\\nmalemiuts\\nmalemute\\nmalemutes\\nmaleness\\nmalenesses\\nmales\\nmalevolence\\nmalevolences\\nmalevolent\\nmalfeasance\\nmalfeasances\\nmalfed\\nmalformation\\nmalformations\\nmalformed\\nmalfunction\\nmalfunctioned\\nmalfunctioning\\nmalfunctions\\nmalgre\\nmalic\\nmalice\\nmalices\\nmalicious\\nmaliciously\\nmalign\\nmalignancies\\nmalignancy\\nmalignant\\nmalignantly\\nmaligned\\nmaligner\\nmaligners\\nmaligning\\nmalignities\\nmalignity\\nmalignly\\nmaligns\\nmalihini\\nmalihinis\\nmaline\\nmalines\\nmalinger\\nmalingered\\nmalingerer\\nmalingerers\\nmalingering\\nmalingers\\nmalison\\nmalisons\\nmalkin\\nmalkins\\nmall\\nmallard\\nmallards\\nmalleabilities\\nmalleability\\nmalleable\\nmalled\\nmallee\\nmallees\\nmallei\\nmalleoli\\nmallet\\nmallets\\nmalleus\\nmalling\\nmallow\\nmallows\\nmalls\\nmalm\\nmalmier\\nmalmiest\\nmalms\\nmalmsey\\nmalmseys\\nmalmy\\nmalnourished\\nmalnutrition\\nmalnutritions\\nmalodor\\nmalodorous\\nmalodorously\\nmalodorousness\\nmalodorousnesses\\nmalodors\\nmalposed\\nmalpractice\\nmalpractices\\nmalt\\nmaltase\\nmaltases\\nmalted\\nmaltha\\nmalthas\\nmaltier\\nmaltiest\\nmalting\\nmaltol\\nmaltols\\nmaltose\\nmaltoses\\nmaltreat\\nmaltreated\\nmaltreating\\nmaltreatment\\nmaltreatments\\nmaltreats\\nmalts\\nmaltster\\nmaltsters\\nmalty\\nmalvasia\\nmalvasias\\nmama\\nmamas\\nmamba\\nmambas\\nmambo\\nmamboed\\nmamboes\\nmamboing\\nmambos\\nmameluke\\nmamelukes\\nmamey\\nmameyes\\nmameys\\nmamie\\nmamies\\nmamluk\\nmamluks\\nmamma\\nmammae\\nmammal\\nmammalian\\nmammals\\nmammary\\nmammas\\nmammate\\nmammati\\nmammatus\\nmammee\\nmammees\\nmammer\\nmammered\\nmammering\\nmammers\\nmammet\\nmammets\\nmammey\\nmammeys\\nmammie\\nmammies\\nmammilla\\nmammillae\\nmammitides\\nmammitis\\nmammock\\nmammocked\\nmammocking\\nmammocks\\nmammon\\nmammons\\nmammoth\\nmammoths\\nmammy\\nman\\nmana\\nmanacle\\nmanacled\\nmanacles\\nmanacling\\nmanage\\nmanageabilities\\nmanageability\\nmanageable\\nmanageableness\\nmanageablenesses\\nmanageably\\nmanaged\\nmanagement\\nmanagemental\\nmanagements\\nmanager\\nmanagerial\\nmanagers\\nmanages\\nmanaging\\nmanakin\\nmanakins\\nmanana\\nmananas\\nmanas\\nmanatee\\nmanatees\\nmanatoid\\nmanche\\nmanches\\nmanchet\\nmanchets\\nmanciple\\nmanciples\\nmandala\\nmandalas\\nmandalic\\nmandamus\\nmandamused\\nmandamuses\\nmandamusing\\nmandarin\\nmandarins\\nmandate\\nmandated\\nmandates\\nmandating\\nmandator\\nmandators\\nmandatory\\nmandible\\nmandibles\\nmandibular\\nmandioca\\nmandiocas\\nmandola\\nmandolas\\nmandolin\\nmandolins\\nmandrake\\nmandrakes\\nmandrel\\nmandrels\\nmandril\\nmandrill\\nmandrills\\nmandrils\\nmane\\nmaned\\nmanege\\nmaneges\\nmaneless\\nmanes\\nmaneuver\\nmaneuverabilities\\nmaneuverability\\nmaneuvered\\nmaneuvering\\nmaneuvers\\nmanful\\nmanfully\\nmangabey\\nmangabeys\\nmangabies\\nmangaby\\nmanganese\\nmanganeses\\nmanganesian\\nmanganic\\nmange\\nmangel\\nmangels\\nmanger\\nmangers\\nmanges\\nmangey\\nmangier\\nmangiest\\nmangily\\nmangle\\nmangled\\nmangler\\nmanglers\\nmangles\\nmangling\\nmango\\nmangoes\\nmangold\\nmangolds\\nmangonel\\nmangonels\\nmangos\\nmangrove\\nmangroves\\nmangy\\nmanhandle\\nmanhandled\\nmanhandles\\nmanhandling\\nmanhole\\nmanholes\\nmanhood\\nmanhoods\\nmanhunt\\nmanhunts\\nmania\\nmaniac\\nmaniacal\\nmaniacs\\nmanias\\nmanic\\nmanics\\nmanicure\\nmanicured\\nmanicures\\nmanicuring\\nmanicurist\\nmanicurists\\nmanifest\\nmanifestation\\nmanifestations\\nmanifested\\nmanifesting\\nmanifestly\\nmanifesto\\nmanifestos\\nmanifests\\nmanifold\\nmanifolded\\nmanifolding\\nmanifolds\\nmanihot\\nmanihots\\nmanikin\\nmanikins\\nmanila\\nmanilas\\nmanilla\\nmanillas\\nmanille\\nmanilles\\nmanioc\\nmanioca\\nmaniocas\\nmaniocs\\nmaniple\\nmaniples\\nmanipulate\\nmanipulated\\nmanipulates\\nmanipulating\\nmanipulation\\nmanipulations\\nmanipulative\\nmanipulator\\nmanipulators\\nmanito\\nmanitos\\nmanitou\\nmanitous\\nmanitu\\nmanitus\\nmankind\\nmanless\\nmanlier\\nmanliest\\nmanlike\\nmanlily\\nmanly\\nmanmade\\nmanna\\nmannan\\nmannans\\nmannas\\nmanned\\nmannequin\\nmannequins\\nmanner\\nmannered\\nmannerism\\nmannerisms\\nmannerliness\\nmannerlinesses\\nmannerly\\nmanners\\nmannikin\\nmannikins\\nmanning\\nmannish\\nmannishly\\nmannishness\\nmannishnesses\\nmannite\\nmannites\\nmannitic\\nmannitol\\nmannitols\\nmannose\\nmannoses\\nmano\\nmanor\\nmanorial\\nmanorialism\\nmanorialisms\\nmanors\\nmanos\\nmanpack\\nmanpower\\nmanpowers\\nmanque\\nmanrope\\nmanropes\\nmans\\nmansard\\nmansards\\nmanse\\nmanservant\\nmanses\\nmansion\\nmansions\\nmanslaughter\\nmanslaughters\\nmanta\\nmantas\\nmanteau\\nmanteaus\\nmanteaux\\nmantel\\nmantelet\\nmantelets\\nmantels\\nmantes\\nmantic\\nmantid\\nmantids\\nmantilla\\nmantillas\\nmantis\\nmantises\\nmantissa\\nmantissas\\nmantle\\nmantled\\nmantles\\nmantlet\\nmantlets\\nmantling\\nmantlings\\nmantra\\nmantrap\\nmantraps\\nmantras\\nmantua\\nmantuas\\nmanual\\nmanually\\nmanuals\\nmanuary\\nmanubria\\nmanufacture\\nmanufactured\\nmanufacturer\\nmanufacturers\\nmanufactures\\nmanufacturing\\nmanumit\\nmanumits\\nmanumitted\\nmanumitting\\nmanure\\nmanured\\nmanurer\\nmanurers\\nmanures\\nmanurial\\nmanuring\\nmanus\\nmanuscript\\nmanuscripts\\nmanward\\nmanwards\\nmanwise\\nmany\\nmanyfold\\nmap\\nmaple\\nmaples\\nmapmaker\\nmapmakers\\nmappable\\nmapped\\nmapper\\nmappers\\nmapping\\nmappings\\nmaps\\nmaquette\\nmaquettes\\nmaqui\\nmaquis\\nmar\\nmarabou\\nmarabous\\nmarabout\\nmarabouts\\nmaraca\\nmaracas\\nmaranta\\nmarantas\\nmarasca\\nmarascas\\nmaraschino\\nmaraschinos\\nmarasmic\\nmarasmus\\nmarasmuses\\nmarathon\\nmarathons\\nmaraud\\nmarauded\\nmarauder\\nmarauders\\nmarauding\\nmarauds\\nmaravedi\\nmaravedis\\nmarble\\nmarbled\\nmarbler\\nmarblers\\nmarbles\\nmarblier\\nmarbliest\\nmarbling\\nmarblings\\nmarbly\\nmarc\\nmarcel\\nmarcelled\\nmarcelling\\nmarcels\\nmarch\\nmarched\\nmarchen\\nmarcher\\nmarchers\\nmarches\\nmarchesa\\nmarchese\\nmarchesi\\nmarching\\nmarchioness\\nmarchionesses\\nmarcs\\nmare\\nmaremma\\nmaremme\\nmares\\nmargaric\\nmargarin\\nmargarine\\nmargarines\\nmargarins\\nmargay\\nmargays\\nmarge\\nmargent\\nmargented\\nmargenting\\nmargents\\nmarges\\nmargin\\nmarginal\\nmarginally\\nmargined\\nmargining\\nmargins\\nmargrave\\nmargraves\\nmaria\\nmariachi\\nmariachis\\nmarigold\\nmarigolds\\nmarihuana\\nmarihuanas\\nmarijuana\\nmarijuanas\\nmarimba\\nmarimbas\\nmarina\\nmarinade\\nmarinaded\\nmarinades\\nmarinading\\nmarinara\\nmarinaras\\nmarinas\\nmarinate\\nmarinated\\nmarinates\\nmarinating\\nmarine\\nmariner\\nmariners\\nmarines\\nmarionette\\nmarionettes\\nmariposa\\nmariposas\\nmarish\\nmarishes\\nmarital\\nmaritime\\nmarjoram\\nmarjorams\\nmark\\nmarkdown\\nmarkdowns\\nmarked\\nmarkedly\\nmarker\\nmarkers\\nmarket\\nmarketable\\nmarketech\\nmarketed\\nmarketer\\nmarketers\\nmarketing\\nmarketplace\\nmarketplaces\\nmarkets\\nmarkhoor\\nmarkhoors\\nmarkhor\\nmarkhors\\nmarking\\nmarkings\\nmarkka\\nmarkkaa\\nmarkkas\\nmarks\\nmarksman\\nmarksmanship\\nmarksmanships\\nmarksmen\\nmarkup\\nmarkups\\nmarl\\nmarled\\nmarlier\\nmarliest\\nmarlin\\nmarline\\nmarlines\\nmarling\\nmarlings\\nmarlins\\nmarlite\\nmarlites\\nmarlitic\\nmarls\\nmarly\\nmarmalade\\nmarmalades\\nmarmite\\nmarmites\\nmarmoset\\nmarmosets\\nmarmot\\nmarmots\\nmaroon\\nmarooned\\nmarooning\\nmaroons\\nmarplot\\nmarplots\\nmarque\\nmarquee\\nmarquees\\nmarques\\nmarquess\\nmarquesses\\nmarquis\\nmarquise\\nmarquises\\nmarram\\nmarrams\\nmarred\\nmarrer\\nmarrers\\nmarriage\\nmarriageable\\nmarriages\\nmarried\\nmarrieds\\nmarrier\\nmarriers\\nmarries\\nmarring\\nmarron\\nmarrons\\nmarrow\\nmarrowed\\nmarrowing\\nmarrows\\nmarrowy\\nmarry\\nmarrying\\nmars\\nmarse\\nmarses\\nmarsh\\nmarshal\\nmarshaled\\nmarshaling\\nmarshall\\nmarshalled\\nmarshalling\\nmarshalls\\nmarshals\\nmarshes\\nmarshier\\nmarshiest\\nmarshmallow\\nmarshmallows\\nmarshy\\nmarsupia\\nmarsupial\\nmarsupials\\nmart\\nmartagon\\nmartagons\\nmarted\\nmartello\\nmartellos\\nmarten\\nmartens\\nmartial\\nmartian\\nmartians\\nmartin\\nmartinet\\nmartinets\\nmarting\\nmartini\\nmartinis\\nmartins\\nmartlet\\nmartlets\\nmarts\\nmartyr\\nmartyrdom\\nmartyrdoms\\nmartyred\\nmartyries\\nmartyring\\nmartyrly\\nmartyrs\\nmartyry\\nmarvel\\nmarveled\\nmarveling\\nmarvelled\\nmarvelling\\nmarvellous\\nmarvelous\\nmarvelously\\nmarvelousness\\nmarvelousnesses\\nmarvels\\nmarzipan\\nmarzipans\\nmas\\nmascara\\nmascaras\\nmascon\\nmascons\\nmascot\\nmascots\\nmasculine\\nmasculinities\\nmasculinity\\nmasculinization\\nmasculinizations\\nmaser\\nmasers\\nmash\\nmashed\\nmasher\\nmashers\\nmashes\\nmashie\\nmashies\\nmashing\\nmashy\\nmasjid\\nmasjids\\nmask\\nmaskable\\nmasked\\nmaskeg\\nmaskegs\\nmasker\\nmaskers\\nmasking\\nmaskings\\nmasklike\\nmasks\\nmasochism\\nmasochisms\\nmasochist\\nmasochistic\\nmasochists\\nmason\\nmasoned\\nmasonic\\nmasoning\\nmasonries\\nmasonry\\nmasons\\nmasque\\nmasquer\\nmasquerade\\nmasqueraded\\nmasquerader\\nmasqueraders\\nmasquerades\\nmasquerading\\nmasquers\\nmasques\\nmass\\nmassa\\nmassachusetts\\nmassacre\\nmassacred\\nmassacres\\nmassacring\\nmassage\\nmassaged\\nmassager\\nmassagers\\nmassages\\nmassaging\\nmassas\\nmasse\\nmassed\\nmassedly\\nmasses\\nmasseter\\nmasseters\\nmasseur\\nmasseurs\\nmasseuse\\nmasseuses\\nmassicot\\nmassicots\\nmassier\\nmassiest\\nmassif\\nmassifs\\nmassing\\nmassive\\nmassiveness\\nmassivenesses\\nmassless\\nmasslessness\\nmasslessnesses\\nmassy\\nmast\\nmastaba\\nmastabah\\nmastabahs\\nmastabas\\nmastectomies\\nmastectomy\\nmasted\\nmaster\\nmastered\\nmasterful\\nmasterfully\\nmasteries\\nmastering\\nmasterly\\nmastermind\\nmasterminds\\nmasters\\nmastership\\nmasterships\\nmasterwork\\nmasterworks\\nmastery\\nmasthead\\nmastheaded\\nmastheading\\nmastheads\\nmastic\\nmasticate\\nmasticated\\nmasticates\\nmasticating\\nmastication\\nmastications\\nmastiche\\nmastiches\\nmastics\\nmastiff\\nmastiffs\\nmasting\\nmastitic\\nmastitides\\nmastitis\\nmastix\\nmastixes\\nmastless\\nmastlike\\nmastodon\\nmastodons\\nmastoid\\nmastoids\\nmasts\\nmasturbate\\nmasturbated\\nmasturbates\\nmasturbating\\nmasturbation\\nmasturbations\\nmasurium\\nmasuriums\\nmat\\nmatador\\nmatadors\\nmatch\\nmatchbox\\nmatchboxes\\nmatched\\nmatcher\\nmatchers\\nmatches\\nmatching\\nmatchless\\nmatchmaker\\nmatchmakers\\nmate\\nmated\\nmateless\\nmatelote\\nmatelotes\\nmater\\nmaterial\\nmaterialism\\nmaterialisms\\nmaterialist\\nmaterialistic\\nmaterialists\\nmaterialization\\nmaterializations\\nmaterialize\\nmaterialized\\nmaterializes\\nmaterializing\\nmaterially\\nmaterials\\nmateriel\\nmateriels\\nmaternal\\nmaternally\\nmaternities\\nmaternity\\nmaters\\nmates\\nmateship\\nmateships\\nmatey\\nmateys\\nmath\\nmathematical\\nmathematically\\nmathematician\\nmathematicians\\nmathematics\\nmaths\\nmatilda\\nmatildas\\nmatin\\nmatinal\\nmatinee\\nmatinees\\nmatiness\\nmatinesses\\nmating\\nmatings\\nmatins\\nmatless\\nmatrass\\nmatrasses\\nmatres\\nmatriarch\\nmatriarchal\\nmatriarches\\nmatriarchies\\nmatriarchy\\nmatrices\\nmatricidal\\nmatricide\\nmatricides\\nmatriculate\\nmatriculated\\nmatriculates\\nmatriculating\\nmatriculation\\nmatriculations\\nmatrimonial\\nmatrimonially\\nmatrimonies\\nmatrimony\\nmatrix\\nmatrixes\\nmatron\\nmatronal\\nmatronly\\nmatrons\\nmats\\nmatt\\nmatte\\nmatted\\nmattedly\\nmatter\\nmattered\\nmattering\\nmatters\\nmattery\\nmattes\\nmattin\\nmatting\\nmattings\\nmattins\\nmattock\\nmattocks\\nmattoid\\nmattoids\\nmattrass\\nmattrasses\\nmattress\\nmattresses\\nmatts\\nmaturate\\nmaturated\\nmaturates\\nmaturating\\nmaturation\\nmaturational\\nmaturations\\nmaturative\\nmature\\nmatured\\nmaturely\\nmaturer\\nmatures\\nmaturest\\nmaturing\\nmaturities\\nmaturity\\nmatza\\nmatzah\\nmatzahs\\nmatzas\\nmatzo\\nmatzoh\\nmatzohs\\nmatzoon\\nmatzoons\\nmatzos\\nmatzot\\nmatzoth\\nmaudlin\\nmauger\\nmaugre\\nmaul\\nmauled\\nmauler\\nmaulers\\nmauling\\nmauls\\nmaumet\\nmaumetries\\nmaumetry\\nmaumets\\nmaun\\nmaund\\nmaunder\\nmaundered\\nmaundering\\nmaunders\\nmaundies\\nmaunds\\nmaundy\\nmausolea\\nmausoleum\\nmausoleums\\nmaut\\nmauts\\nmauve\\nmauves\\nmaven\\nmavens\\nmaverick\\nmavericks\\nmavie\\nmavies\\nmavin\\nmavins\\nmavis\\nmavises\\nmaw\\nmawed\\nmawing\\nmawkish\\nmawkishly\\nmawkishness\\nmawkishnesses\\nmawn\\nmaws\\nmaxi\\nmaxicoat\\nmaxicoats\\nmaxilla\\nmaxillae\\nmaxillas\\nmaxim\\nmaxima\\nmaximal\\nmaximals\\nmaximin\\nmaximins\\nmaximise\\nmaximised\\nmaximises\\nmaximising\\nmaximite\\nmaximites\\nmaximize\\nmaximized\\nmaximizes\\nmaximizing\\nmaxims\\nmaximum\\nmaximums\\nmaxis\\nmaxixe\\nmaxixes\\nmaxwell\\nmaxwells\\nmay\\nmaya\\nmayan\\nmayapple\\nmayapples\\nmayas\\nmaybe\\nmaybush\\nmaybushes\\nmayday\\nmaydays\\nmayed\\nmayest\\nmayflies\\nmayflower\\nmayflowers\\nmayfly\\nmayhap\\nmayhem\\nmayhems\\nmaying\\nmayings\\nmayonnaise\\nmayonnaises\\nmayor\\nmayoral\\nmayoralties\\nmayoralty\\nmayoress\\nmayoresses\\nmayors\\nmaypole\\nmaypoles\\nmaypop\\nmaypops\\nmays\\nmayst\\nmayvin\\nmayvins\\nmayweed\\nmayweeds\\nmazaedia\\nmazard\\nmazards\\nmaze\\nmazed\\nmazedly\\nmazelike\\nmazer\\nmazers\\nmazes\\nmazier\\nmaziest\\nmazily\\nmaziness\\nmazinesses\\nmazing\\nmazourka\\nmazourkas\\nmazuma\\nmazumas\\nmazurka\\nmazurkas\\nmazy\\nmazzard\\nmazzards\\nmbira\\nmbiras\\nmccaffrey\\nme\\nmead\\nmeadow\\nmeadowland\\nmeadowlands\\nmeadowlark\\nmeadowlarks\\nmeadows\\nmeadowy\\nmeads\\nmeager\\nmeagerly\\nmeagerness\\nmeagernesses\\nmeagre\\nmeagrely\\nmeal\\nmealie\\nmealier\\nmealies\\nmealiest\\nmealless\\nmeals\\nmealtime\\nmealtimes\\nmealworm\\nmealworms\\nmealy\\nmealybug\\nmealybugs\\nmean\\nmeander\\nmeandered\\nmeandering\\nmeanders\\nmeaner\\nmeaners\\nmeanest\\nmeanie\\nmeanies\\nmeaning\\nmeaningful\\nmeaningfully\\nmeaningless\\nmeanings\\nmeanly\\nmeanness\\nmeannesses\\nmeans\\nmeant\\nmeantime\\nmeantimes\\nmeanwhile\\nmeanwhiles\\nmeany\\nmeasle\\nmeasled\\nmeasles\\nmeaslier\\nmeasliest\\nmeasly\\nmeasurable\\nmeasurably\\nmeasure\\nmeasured\\nmeasureless\\nmeasurement\\nmeasurements\\nmeasurer\\nmeasurers\\nmeasures\\nmeasuring\\nmeat\\nmeatal\\nmeatball\\nmeatballs\\nmeathead\\nmeatheads\\nmeatier\\nmeatiest\\nmeatily\\nmeatless\\nmeatman\\nmeatmen\\nmeats\\nmeatus\\nmeatuses\\nmeaty\\nmecca\\nmeccas\\nmechanic\\nmechanical\\nmechanically\\nmechanics\\nmechanism\\nmechanisms\\nmechanistic\\nmechanistically\\nmechanization\\nmechanizations\\nmechanize\\nmechanized\\nmechanizer\\nmechanizers\\nmechanizes\\nmechanizing\\nmeconium\\nmeconiums\\nmedaka\\nmedakas\\nmedal\\nmedaled\\nmedaling\\nmedalist\\nmedalists\\nmedalled\\nmedallic\\nmedalling\\nmedallion\\nmedallions\\nmedals\\nmeddle\\nmeddled\\nmeddler\\nmeddlers\\nmeddles\\nmeddlesome\\nmeddling\\nmedia\\nmediacies\\nmediacy\\nmediad\\nmediae\\nmediaeval\\nmedial\\nmedially\\nmedials\\nmedian\\nmedianly\\nmedians\\nmediant\\nmediants\\nmedias\\nmediastinum\\nmediate\\nmediated\\nmediates\\nmediating\\nmediation\\nmediations\\nmediator\\nmediators\\nmedic\\nmedicable\\nmedicably\\nmedicaid\\nmedicaids\\nmedical\\nmedically\\nmedicals\\nmedicare\\nmedicares\\nmedicate\\nmedicated\\nmedicates\\nmedicating\\nmedication\\nmedications\\nmedicinal\\nmedicinally\\nmedicine\\nmedicined\\nmedicines\\nmedicining\\nmedick\\nmedicks\\nmedico\\nmedicos\\nmedics\\nmedieval\\nmedievalism\\nmedievalisms\\nmedievalist\\nmedievalists\\nmedievals\\nmedii\\nmediocre\\nmediocrities\\nmediocrity\\nmeditate\\nmeditated\\nmeditates\\nmeditating\\nmeditation\\nmeditations\\nmeditative\\nmeditatively\\nmedium\\nmediums\\nmedius\\nmedlar\\nmedlars\\nmedley\\nmedleys\\nmedulla\\nmedullae\\nmedullar\\nmedullas\\nmedusa\\nmedusae\\nmedusan\\nmedusans\\nmedusas\\nmedusoid\\nmedusoids\\nmeed\\nmeeds\\nmeek\\nmeeker\\nmeekest\\nmeekly\\nmeekness\\nmeeknesses\\nmeerschaum\\nmeerschaums\\nmeet\\nmeeter\\nmeeters\\nmeeting\\nmeetinghouse\\nmeetinghouses\\nmeetings\\nmeetly\\nmeetness\\nmeetnesses\\nmeets\\nmegabar\\nmegabars\\nmegabit\\nmegabits\\nmegabuck\\nmegabucks\\nmegacycle\\nmegacycles\\nmegadyne\\nmegadynes\\nmegahertz\\nmegalith\\nmegaliths\\nmegaphone\\nmegaphones\\nmegapod\\nmegapode\\nmegapodes\\nmegass\\nmegasse\\nmegasses\\nmegaton\\nmegatons\\nmegavolt\\nmegavolts\\nmegawatt\\nmegawatts\\nmegillah\\nmegillahs\\nmegilp\\nmegilph\\nmegilphs\\nmegilps\\nmegohm\\nmegohms\\nmegrim\\nmegrims\\nmeikle\\nmeinie\\nmeinies\\nmeiny\\nmeioses\\nmeiosis\\nmeiotic\\nmel\\nmelamine\\nmelamines\\nmelancholia\\nmelancholic\\nmelancholies\\nmelancholy\\nmelange\\nmelanges\\nmelanian\\nmelanic\\nmelanics\\nmelanin\\nmelanins\\nmelanism\\nmelanisms\\nmelanist\\nmelanists\\nmelanite\\nmelanites\\nmelanize\\nmelanized\\nmelanizes\\nmelanizing\\nmelanoid\\nmelanoids\\nmelanoma\\nmelanomas\\nmelanomata\\nmelanous\\nmelatonin\\nmelba\\nmeld\\nmelded\\nmelder\\nmelders\\nmelding\\nmelds\\nmelee\\nmelees\\nmelic\\nmelilite\\nmelilites\\nmelilot\\nmelilots\\nmelinite\\nmelinites\\nmeliorate\\nmeliorated\\nmeliorates\\nmeliorating\\nmelioration\\nmeliorations\\nmeliorative\\nmelisma\\nmelismas\\nmelismata\\nmell\\nmelled\\nmellific\\nmellifluous\\nmellifluously\\nmellifluousness\\nmellifluousnesses\\nmelling\\nmellow\\nmellowed\\nmellower\\nmellowest\\nmellowing\\nmellowly\\nmellowness\\nmellownesses\\nmellows\\nmells\\nmelodeon\\nmelodeons\\nmelodia\\nmelodias\\nmelodic\\nmelodically\\nmelodies\\nmelodious\\nmelodiously\\nmelodiousness\\nmelodiousnesses\\nmelodise\\nmelodised\\nmelodises\\nmelodising\\nmelodist\\nmelodists\\nmelodize\\nmelodized\\nmelodizes\\nmelodizing\\nmelodrama\\nmelodramas\\nmelodramatic\\nmelodramatist\\nmelodramatists\\nmelody\\nmeloid\\nmeloids\\nmelon\\nmelons\\nmels\\nmelt\\nmeltable\\nmeltage\\nmeltages\\nmelted\\nmelter\\nmelters\\nmelting\\nmelton\\nmeltons\\nmelts\\nmem\\nmember\\nmembered\\nmembers\\nmembership\\nmemberships\\nmembrane\\nmembranes\\nmembranous\\nmemento\\nmementoes\\nmementos\\nmemo\\nmemoir\\nmemoirs\\nmemorabilia\\nmemorabilities\\nmemorability\\nmemorable\\nmemorableness\\nmemorablenesses\\nmemorably\\nmemoranda\\nmemorandum\\nmemorandums\\nmemorial\\nmemorialize\\nmemorialized\\nmemorializes\\nmemorializing\\nmemorials\\nmemories\\nmemorization\\nmemorizations\\nmemorize\\nmemorized\\nmemorizes\\nmemorizing\\nmemory\\nmemos\\nmems\\nmemsahib\\nmemsahibs\\nmen\\nmenace\\nmenaced\\nmenacer\\nmenacers\\nmenaces\\nmenacing\\nmenacingly\\nmenad\\nmenads\\nmenage\\nmenagerie\\nmenageries\\nmenages\\nmenarche\\nmenarches\\nmend\\nmendable\\nmendacious\\nmendaciously\\nmendacities\\nmendacity\\nmended\\nmendelson\\nmender\\nmenders\\nmendicancies\\nmendicancy\\nmendicant\\nmendicants\\nmendigo\\nmendigos\\nmending\\nmendings\\nmends\\nmenfolk\\nmenfolks\\nmenhaden\\nmenhadens\\nmenhir\\nmenhirs\\nmenial\\nmenially\\nmenials\\nmeninges\\nmeningitides\\nmeningitis\\nmeninx\\nmeniscal\\nmenisci\\nmeniscus\\nmeniscuses\\nmeno\\nmenologies\\nmenology\\nmenopausal\\nmenopause\\nmenopauses\\nmenorah\\nmenorahs\\nmensa\\nmensae\\nmensal\\nmensas\\nmensch\\nmenschen\\nmensches\\nmense\\nmensed\\nmenseful\\nmenservants\\nmenses\\nmensing\\nmenstrua\\nmenstrual\\nmenstruate\\nmenstruated\\nmenstruates\\nmenstruating\\nmenstruation\\nmenstruations\\nmensural\\nmenswear\\nmenswears\\nmenta\\nmental\\nmentalities\\nmentality\\nmentally\\nmenthene\\nmenthenes\\nmenthol\\nmentholated\\nmenthols\\nmention\\nmentioned\\nmentioning\\nmentions\\nmentor\\nmentors\\nmentum\\nmenu\\nmenus\\nmeow\\nmeowed\\nmeowing\\nmeows\\nmephitic\\nmephitis\\nmephitises\\nmercantile\\nmercapto\\nmercenaries\\nmercenarily\\nmercenariness\\nmercenarinesses\\nmercenary\\nmercer\\nmerceries\\nmercers\\nmercery\\nmerchandise\\nmerchandised\\nmerchandiser\\nmerchandisers\\nmerchandises\\nmerchandising\\nmerchant\\nmerchanted\\nmerchanting\\nmerchants\\nmercies\\nmerciful\\nmercifully\\nmerciless\\nmercilessly\\nmercurial\\nmercurially\\nmercurialness\\nmercurialnesses\\nmercuric\\nmercuries\\nmercurous\\nmercury\\nmercy\\nmere\\nmerely\\nmerengue\\nmerengues\\nmerer\\nmeres\\nmerest\\nmerge\\nmerged\\nmergence\\nmergences\\nmerger\\nmergers\\nmerges\\nmerging\\nmeridian\\nmeridians\\nmeringue\\nmeringues\\nmerino\\nmerinos\\nmerises\\nmerisis\\nmeristem\\nmeristems\\nmeristic\\nmerit\\nmerited\\nmeriting\\nmeritorious\\nmeritoriously\\nmeritoriousness\\nmeritoriousnesses\\nmerits\\nmerk\\nmerks\\nmerl\\nmerle\\nmerles\\nmerlin\\nmerlins\\nmerlon\\nmerlons\\nmerls\\nmermaid\\nmermaids\\nmerman\\nmermen\\nmeropia\\nmeropias\\nmeropic\\nmerrier\\nmerriest\\nmerrily\\nmerriment\\nmerriments\\nmerry\\nmerrymaker\\nmerrymakers\\nmerrymaking\\nmerrymakings\\nmesa\\nmesally\\nmesarch\\nmesas\\nmescal\\nmescals\\nmesdames\\nmesdemoiselles\\nmeseemed\\nmeseems\\nmesh\\nmeshed\\nmeshes\\nmeshier\\nmeshiest\\nmeshing\\nmeshwork\\nmeshworks\\nmeshy\\nmesial\\nmesially\\nmesian\\nmesic\\nmesmeric\\nmesmerism\\nmesmerisms\\nmesmerize\\nmesmerized\\nmesmerizes\\nmesmerizing\\nmesnalties\\nmesnalty\\nmesne\\nmesocarp\\nmesocarps\\nmesoderm\\nmesoderms\\nmesoglea\\nmesogleas\\nmesomere\\nmesomeres\\nmeson\\nmesonic\\nmesons\\nmesophyl\\nmesophyls\\nmesosome\\nmesosomes\\nmesotron\\nmesotrons\\nmesquit\\nmesquite\\nmesquites\\nmesquits\\nmess\\nmessage\\nmessages\\nmessan\\nmessans\\nmessed\\nmessenger\\nmessengers\\nmesses\\nmessiah\\nmessiahs\\nmessier\\nmessiest\\nmessieurs\\nmessily\\nmessing\\nmessman\\nmessmate\\nmessmates\\nmessmen\\nmessuage\\nmessuages\\nmessy\\nmestee\\nmestees\\nmesteso\\nmestesoes\\nmestesos\\nmestino\\nmestinoes\\nmestinos\\nmestiza\\nmestizas\\nmestizo\\nmestizoes\\nmestizos\\nmet\\nmeta\\nmetabolic\\nmetabolism\\nmetabolisms\\nmetabolize\\nmetabolized\\nmetabolizes\\nmetabolizing\\nmetage\\nmetages\\nmetal\\nmetaled\\nmetaling\\nmetalise\\nmetalised\\nmetalises\\nmetalising\\nmetalist\\nmetalists\\nmetalize\\nmetalized\\nmetalizes\\nmetalizing\\nmetalled\\nmetallic\\nmetalling\\nmetallurgical\\nmetallurgically\\nmetallurgies\\nmetallurgist\\nmetallurgists\\nmetallurgy\\nmetals\\nmetalware\\nmetalwares\\nmetalwork\\nmetalworker\\nmetalworkers\\nmetalworking\\nmetalworkings\\nmetalworks\\nmetamer\\nmetamere\\nmetameres\\nmetamers\\nmetamorphose\\nmetamorphosed\\nmetamorphoses\\nmetamorphosing\\nmetamorphosis\\nmetaphor\\nmetaphorical\\nmetaphors\\nmetaphysical\\nmetaphysician\\nmetaphysicians\\nmetaphysics\\nmetastases\\nmetastatic\\nmetate\\nmetates\\nmetazoa\\nmetazoal\\nmetazoan\\nmetazoans\\nmetazoic\\nmetazoon\\nmete\\nmeted\\nmeteor\\nmeteoric\\nmeteorically\\nmeteorite\\nmeteorites\\nmeteoritic\\nmeteorological\\nmeteorologies\\nmeteorologist\\nmeteorologists\\nmeteorology\\nmeteors\\nmetepa\\nmetepas\\nmeter\\nmeterage\\nmeterages\\nmetered\\nmetering\\nmeters\\nmetes\\nmethadon\\nmethadone\\nmethadones\\nmethadons\\nmethane\\nmethanes\\nmethanol\\nmethanols\\nmethinks\\nmethod\\nmethodic\\nmethodical\\nmethodically\\nmethodicalness\\nmethodicalnesses\\nmethodological\\nmethodologies\\nmethodology\\nmethods\\nmethotrexate\\nmethought\\nmethoxy\\nmethoxyl\\nmethyl\\nmethylal\\nmethylals\\nmethylic\\nmethyls\\nmeticulous\\nmeticulously\\nmeticulousness\\nmeticulousnesses\\nmetier\\nmetiers\\nmeting\\nmetis\\nmetisse\\nmetisses\\nmetonym\\nmetonymies\\nmetonyms\\nmetonymy\\nmetopae\\nmetope\\nmetopes\\nmetopic\\nmetopon\\nmetopons\\nmetre\\nmetred\\nmetres\\nmetric\\nmetrical\\nmetrically\\nmetrication\\nmetrications\\nmetrics\\nmetrified\\nmetrifies\\nmetrify\\nmetrifying\\nmetring\\nmetrist\\nmetrists\\nmetritis\\nmetritises\\nmetro\\nmetronome\\nmetronomes\\nmetropolis\\nmetropolises\\nmetropolitan\\nmetros\\nmettle\\nmettled\\nmettles\\nmettlesome\\nmetump\\nmetumps\\nmeuniere\\nmew\\nmewed\\nmewing\\nmewl\\nmewled\\nmewler\\nmewlers\\nmewling\\nmewls\\nmews\\nmezcal\\nmezcals\\nmezereon\\nmezereons\\nmezereum\\nmezereums\\nmezquit\\nmezquite\\nmezquites\\nmezquits\\nmezuza\\nmezuzah\\nmezuzahs\\nmezuzas\\nmezuzot\\nmezuzoth\\nmezzanine\\nmezzanines\\nmezzo\\nmezzos\\nmho\\nmhos\\nmi\\nmiaou\\nmiaoued\\nmiaouing\\nmiaous\\nmiaow\\nmiaowed\\nmiaowing\\nmiaows\\nmiasm\\nmiasma\\nmiasmal\\nmiasmas\\nmiasmata\\nmiasmic\\nmiasms\\nmiaul\\nmiauled\\nmiauling\\nmiauls\\nmib\\nmibs\\nmica\\nmicas\\nmicawber\\nmicawbers\\nmice\\nmicell\\nmicella\\nmicellae\\nmicellar\\nmicelle\\nmicelles\\nmicells\\nmick\\nmickey\\nmickeys\\nmickle\\nmickler\\nmickles\\nmicklest\\nmicks\\nmicra\\nmicrified\\nmicrifies\\nmicrify\\nmicrifying\\nmicro\\nmicrobar\\nmicrobars\\nmicrobe\\nmicrobes\\nmicrobial\\nmicrobic\\nmicrobiological\\nmicrobiologies\\nmicrobiologist\\nmicrobiologists\\nmicrobiology\\nmicrobus\\nmicrobuses\\nmicrobusses\\nmicrocomputer\\nmicrocomputers\\nmicrocosm\\nmicrofilm\\nmicrofilmed\\nmicrofilming\\nmicrofilms\\nmicrohm\\nmicrohms\\nmicroluces\\nmicrolux\\nmicroluxes\\nmicrometer\\nmicrometers\\nmicromho\\nmicromhos\\nmicrominiature\\nmicrominiatures\\nmicrominiaturization\\nmicrominiaturizations\\nmicrominiaturized\\nmicron\\nmicrons\\nmicroorganism\\nmicroorganisms\\nmicrophone\\nmicrophones\\nmicroscope\\nmicroscopes\\nmicroscopic\\nmicroscopical\\nmicroscopically\\nmicroscopies\\nmicroscopy\\nmicrowave\\nmicrowaves\\nmicrurgies\\nmicrurgy\\nmid\\nmidair\\nmidairs\\nmidbrain\\nmidbrains\\nmidday\\nmiddays\\nmidden\\nmiddens\\nmiddies\\nmiddle\\nmiddled\\nmiddleman\\nmiddlemen\\nmiddler\\nmiddlers\\nmiddles\\nmiddlesex\\nmiddling\\nmiddlings\\nmiddy\\nmidfield\\nmidfields\\nmidge\\nmidges\\nmidget\\nmidgets\\nmidgut\\nmidguts\\nmidi\\nmidiron\\nmidirons\\nmidis\\nmidland\\nmidlands\\nmidleg\\nmidlegs\\nmidline\\nmidlines\\nmidmonth\\nmidmonths\\nmidmost\\nmidmosts\\nmidnight\\nmidnights\\nmidnoon\\nmidnoons\\nmidpoint\\nmidpoints\\nmidrange\\nmidranges\\nmidrash\\nmidrashim\\nmidrib\\nmidribs\\nmidriff\\nmidriffs\\nmids\\nmidship\\nmidshipman\\nmidshipmen\\nmidships\\nmidspace\\nmidspaces\\nmidst\\nmidstories\\nmidstory\\nmidstream\\nmidstreams\\nmidsts\\nmidsummer\\nmidsummers\\nmidterm\\nmidterms\\nmidtown\\nmidtowns\\nmidwatch\\nmidwatches\\nmidway\\nmidways\\nmidweek\\nmidweeks\\nmidwife\\nmidwifed\\nmidwiferies\\nmidwifery\\nmidwifes\\nmidwifing\\nmidwinter\\nmidwinters\\nmidwived\\nmidwives\\nmidwiving\\nmidyear\\nmidyears\\nmien\\nmiens\\nmiff\\nmiffed\\nmiffier\\nmiffiest\\nmiffing\\nmiffs\\nmiffy\\nmig\\nmigg\\nmiggle\\nmiggles\\nmiggs\\nmight\\nmightier\\nmightiest\\nmightily\\nmights\\nmighty\\nmignon\\nmignonne\\nmignons\\nmigraine\\nmigraines\\nmigrant\\nmigrants\\nmigratation\\nmigratational\\nmigratations\\nmigrate\\nmigrated\\nmigrates\\nmigrating\\nmigrator\\nmigrators\\nmigratory\\nmigs\\nmijnheer\\nmijnheers\\nmikado\\nmikados\\nmike\\nmikes\\nmikra\\nmikron\\nmikrons\\nmikvah\\nmikvahs\\nmikveh\\nmikvehs\\nmikvoth\\nmil\\nmiladi\\nmiladies\\nmiladis\\nmilady\\nmilage\\nmilages\\nmilch\\nmilchig\\nmild\\nmilden\\nmildened\\nmildening\\nmildens\\nmilder\\nmildest\\nmildew\\nmildewed\\nmildewing\\nmildews\\nmildewy\\nmildly\\nmildness\\nmildnesses\\nmile\\nmileage\\nmileages\\nmilepost\\nmileposts\\nmiler\\nmilers\\nmiles\\nmilesimo\\nmilesimos\\nmilestone\\nmilestones\\nmilfoil\\nmilfoils\\nmilia\\nmiliaria\\nmiliarias\\nmiliary\\nmilieu\\nmilieus\\nmilieux\\nmilitancies\\nmilitancy\\nmilitant\\nmilitantly\\nmilitants\\nmilitaries\\nmilitarily\\nmilitarism\\nmilitarisms\\nmilitarist\\nmilitaristic\\nmilitarists\\nmilitary\\nmilitate\\nmilitated\\nmilitates\\nmilitating\\nmilitia\\nmilitiaman\\nmilitiamen\\nmilitias\\nmilium\\nmilk\\nmilked\\nmilker\\nmilkers\\nmilkfish\\nmilkfishes\\nmilkier\\nmilkiest\\nmilkily\\nmilkiness\\nmilkinesses\\nmilking\\nmilkmaid\\nmilkmaids\\nmilkman\\nmilkmen\\nmilks\\nmilksop\\nmilksops\\nmilkweed\\nmilkweeds\\nmilkwood\\nmilkwoods\\nmilkwort\\nmilkworts\\nmilky\\nmill\\nmillable\\nmillage\\nmillages\\nmilldam\\nmilldams\\nmille\\nmilled\\nmillennia\\nmillennium\\nmillenniums\\nmilleped\\nmillepeds\\nmiller\\nmillers\\nmilles\\nmillet\\nmillets\\nmilliard\\nmilliards\\nmilliare\\nmilliares\\nmilliary\\nmillibar\\nmillibars\\nmillieme\\nmilliemes\\nmillier\\nmilliers\\nmilligal\\nmilligals\\nmilligram\\nmilligrams\\nmilliliter\\nmilliliters\\nmilliluces\\nmillilux\\nmilliluxes\\nmillime\\nmillimes\\nmillimeter\\nmillimeters\\nmillimho\\nmillimhos\\nmilline\\nmilliner\\nmilliners\\nmillines\\nmilling\\nmillings\\nmilliohm\\nmilliohms\\nmillion\\nmillionaire\\nmillionaires\\nmillions\\nmillionth\\nmillionths\\nmilliped\\nmillipede\\nmillipedes\\nmillipeds\\nmillirem\\nmillirems\\nmillpond\\nmillponds\\nmillrace\\nmillraces\\nmillrun\\nmillruns\\nmills\\nmillstone\\nmillstones\\nmillwork\\nmillworks\\nmilo\\nmilord\\nmilords\\nmilos\\nmilpa\\nmilpas\\nmilreis\\nmils\\nmilt\\nmilted\\nmilter\\nmilters\\nmiltier\\nmiltiest\\nmilting\\nmilts\\nmilty\\nmim\\nmimbar\\nmimbars\\nmime\\nmimed\\nmimeograph\\nmimeographed\\nmimeographing\\nmimeographs\\nmimer\\nmimers\\nmimes\\nmimesis\\nmimesises\\nmimetic\\nmimetite\\nmimetites\\nmimic\\nmimical\\nmimicked\\nmimicker\\nmimickers\\nmimicking\\nmimicries\\nmimicry\\nmimics\\nmiming\\nmimosa\\nmimosas\\nmina\\nminable\\nminacities\\nminacity\\nminae\\nminaret\\nminarets\\nminas\\nminatory\\nmince\\nminced\\nmincer\\nmincers\\nminces\\nmincier\\nminciest\\nmincing\\nmincy\\nmind\\nminded\\nminder\\nminders\\nmindful\\nminding\\nmindless\\nmindlessly\\nmindlessness\\nmindlessnesses\\nminds\\nmine\\nmineable\\nmined\\nminer\\nmineral\\nmineralize\\nmineralized\\nmineralizes\\nmineralizing\\nminerals\\nminerological\\nminerologies\\nminerologist\\nminerologists\\nminerology\\nminers\\nmines\\nmingier\\nmingiest\\nmingle\\nmingled\\nmingler\\nminglers\\nmingles\\nmingling\\nmingy\\nmini\\nminiature\\nminiatures\\nminiaturist\\nminiaturists\\nminiaturize\\nminiaturized\\nminiaturizes\\nminiaturizing\\nminibike\\nminibikes\\nminibrain\\nminibrains\\nminibudget\\nminibudgets\\nminibus\\nminibuses\\nminibusses\\nminicab\\nminicabs\\nminicalculator\\nminicalculators\\nminicamera\\nminicameras\\nminicar\\nminicars\\nminiclock\\nminiclocks\\nminicomponent\\nminicomponents\\nminicomputer\\nminicomputers\\nminiconvention\\nminiconventions\\nminicourse\\nminicourses\\nminicrisis\\nminicrisises\\nminidrama\\nminidramas\\nminidress\\nminidresses\\nminifestival\\nminifestivals\\nminified\\nminifies\\nminify\\nminifying\\nminigarden\\nminigardens\\nminigrant\\nminigrants\\nminigroup\\nminigroups\\nminiguide\\nminiguides\\nminihospital\\nminihospitals\\nminikin\\nminikins\\nminileague\\nminileagues\\nminilecture\\nminilectures\\nminim\\nminima\\nminimal\\nminimally\\nminimals\\nminimarket\\nminimarkets\\nminimax\\nminimaxes\\nminimiracle\\nminimiracles\\nminimise\\nminimised\\nminimises\\nminimising\\nminimization\\nminimize\\nminimized\\nminimizes\\nminimizing\\nminims\\nminimum\\nminimums\\nminimuseum\\nminimuseums\\nminination\\nmininations\\nmininetwork\\nmininetworks\\nmining\\nminings\\nmininovel\\nmininovels\\nminion\\nminions\\nminipanic\\nminipanics\\nminiprice\\nminiprices\\nminiproblem\\nminiproblems\\nminirebellion\\nminirebellions\\nminirecession\\nminirecessions\\nminirobot\\nminirobots\\nminis\\nminiscandal\\nminiscandals\\nminischool\\nminischools\\nminiscule\\nminisedan\\nminisedans\\nminiseries\\nminiserieses\\nminish\\nminished\\nminishes\\nminishing\\nminiskirt\\nminiskirts\\nminislump\\nminislumps\\nminisocieties\\nminisociety\\nministate\\nministates\\nminister\\nministered\\nministerial\\nministering\\nministers\\nministration\\nministrations\\nministries\\nministrike\\nministrikes\\nministry\\nminisubmarine\\nminisubmarines\\nminisurvey\\nminisurveys\\nminisystem\\nminisystems\\nminiterritories\\nminiterritory\\nminitheater\\nminitheaters\\nminitrain\\nminitrains\\nminium\\nminiums\\nminivacation\\nminivacations\\nminiver\\nminivers\\nminiversion\\nminiversions\\nmink\\nminks\\nminnies\\nminnow\\nminnows\\nminny\\nminor\\nminorca\\nminorcas\\nminored\\nminoring\\nminorities\\nminority\\nminors\\nminster\\nminsters\\nminstrel\\nminstrels\\nminstrelsies\\nminstrelsy\\nmint\\nmintage\\nmintages\\nminted\\nminter\\nminters\\nmintier\\nmintiest\\nminting\\nmints\\nminty\\nminuend\\nminuends\\nminuet\\nminuets\\nminus\\nminuscule\\nminuses\\nminute\\nminuted\\nminutely\\nminuteness\\nminutenesses\\nminuter\\nminutes\\nminutest\\nminutia\\nminutiae\\nminutial\\nminuting\\nminx\\nminxes\\nminxish\\nminyan\\nminyanim\\nminyans\\nmioses\\nmiosis\\nmiotic\\nmiotics\\nmiquelet\\nmiquelets\\nmir\\nmiracle\\nmiracles\\nmiraculous\\nmiraculously\\nmirador\\nmiradors\\nmirage\\nmirages\\nmire\\nmired\\nmires\\nmirex\\nmirexes\\nmiri\\nmirier\\nmiriest\\nmiriness\\nmirinesses\\nmiring\\nmirk\\nmirker\\nmirkest\\nmirkier\\nmirkiest\\nmirkily\\nmirks\\nmirky\\nmirror\\nmirrored\\nmirroring\\nmirrors\\nmirs\\nmirth\\nmirthful\\nmirthfully\\nmirthfulness\\nmirthfulnesses\\nmirthless\\nmirths\\nmiry\\nmirza\\nmirzas\\nmis\\nmisact\\nmisacted\\nmisacting\\nmisacts\\nmisadapt\\nmisadapted\\nmisadapting\\nmisadapts\\nmisadd\\nmisadded\\nmisadding\\nmisadds\\nmisagent\\nmisagents\\nmisaim\\nmisaimed\\nmisaiming\\nmisaims\\nmisallied\\nmisallies\\nmisally\\nmisallying\\nmisalter\\nmisaltered\\nmisaltering\\nmisalters\\nmisanthrope\\nmisanthropes\\nmisanthropic\\nmisanthropies\\nmisanthropy\\nmisapplied\\nmisapplies\\nmisapply\\nmisapplying\\nmisapprehend\\nmisapprehended\\nmisapprehending\\nmisapprehends\\nmisapprehension\\nmisapprehensions\\nmisappropriate\\nmisappropriated\\nmisappropriates\\nmisappropriating\\nmisappropriation\\nmisappropriations\\nmisassay\\nmisassayed\\nmisassaying\\nmisassays\\nmisate\\nmisatone\\nmisatoned\\nmisatones\\nmisatoning\\nmisaver\\nmisaverred\\nmisaverring\\nmisavers\\nmisaward\\nmisawarded\\nmisawarding\\nmisawards\\nmisbegan\\nmisbegin\\nmisbeginning\\nmisbegins\\nmisbegot\\nmisbegun\\nmisbehave\\nmisbehaved\\nmisbehaver\\nmisbehavers\\nmisbehaves\\nmisbehaving\\nmisbehavior\\nmisbehaviors\\nmisbias\\nmisbiased\\nmisbiases\\nmisbiasing\\nmisbiassed\\nmisbiasses\\nmisbiassing\\nmisbill\\nmisbilled\\nmisbilling\\nmisbills\\nmisbind\\nmisbinding\\nmisbinds\\nmisbound\\nmisbrand\\nmisbranded\\nmisbranding\\nmisbrands\\nmisbuild\\nmisbuilding\\nmisbuilds\\nmisbuilt\\nmiscalculate\\nmiscalculated\\nmiscalculates\\nmiscalculating\\nmiscalculation\\nmiscalculations\\nmiscall\\nmiscalled\\nmiscalling\\nmiscalls\\nmiscarriage\\nmiscarriages\\nmiscarried\\nmiscarries\\nmiscarry\\nmiscarrying\\nmiscast\\nmiscasting\\nmiscasts\\nmiscegenation\\nmiscegenations\\nmiscellaneous\\nmiscellaneously\\nmiscellaneousness\\nmiscellaneousnesses\\nmiscellanies\\nmiscellany\\nmischance\\nmischances\\nmischief\\nmischiefs\\nmischievous\\nmischievously\\nmischievousness\\nmischievousnesses\\nmiscible\\nmiscite\\nmiscited\\nmiscites\\nmisciting\\nmisclaim\\nmisclaimed\\nmisclaiming\\nmisclaims\\nmisclass\\nmisclassed\\nmisclasses\\nmisclassing\\nmiscoin\\nmiscoined\\nmiscoining\\nmiscoins\\nmiscolor\\nmiscolored\\nmiscoloring\\nmiscolors\\nmisconceive\\nmisconceived\\nmisconceives\\nmisconceiving\\nmisconception\\nmisconceptions\\nmisconduct\\nmisconducts\\nmisconstruction\\nmisconstructions\\nmisconstrue\\nmisconstrued\\nmisconstrues\\nmisconstruing\\nmiscook\\nmiscooked\\nmiscooking\\nmiscooks\\nmiscopied\\nmiscopies\\nmiscopy\\nmiscopying\\nmiscount\\nmiscounted\\nmiscounting\\nmiscounts\\nmiscreant\\nmiscreants\\nmiscue\\nmiscued\\nmiscues\\nmiscuing\\nmiscut\\nmiscuts\\nmiscutting\\nmisdate\\nmisdated\\nmisdates\\nmisdating\\nmisdeal\\nmisdealing\\nmisdeals\\nmisdealt\\nmisdeed\\nmisdeeds\\nmisdeem\\nmisdeemed\\nmisdeeming\\nmisdeems\\nmisdemeanor\\nmisdemeanors\\nmisdid\\nmisdo\\nmisdoer\\nmisdoers\\nmisdoes\\nmisdoing\\nmisdoings\\nmisdone\\nmisdoubt\\nmisdoubted\\nmisdoubting\\nmisdoubts\\nmisdraw\\nmisdrawing\\nmisdrawn\\nmisdraws\\nmisdrew\\nmisdrive\\nmisdriven\\nmisdrives\\nmisdriving\\nmisdrove\\nmise\\nmisease\\nmiseases\\nmiseat\\nmiseating\\nmiseats\\nmisedit\\nmisedited\\nmisediting\\nmisedits\\nmisenrol\\nmisenrolled\\nmisenrolling\\nmisenrols\\nmisenter\\nmisentered\\nmisentering\\nmisenters\\nmisentries\\nmisentry\\nmiser\\nmiserable\\nmiserableness\\nmiserablenesses\\nmiserably\\nmiserere\\nmisereres\\nmiseries\\nmiserliness\\nmiserlinesses\\nmiserly\\nmisers\\nmisery\\nmises\\nmisevent\\nmisevents\\nmisfaith\\nmisfaiths\\nmisfield\\nmisfielded\\nmisfielding\\nmisfields\\nmisfile\\nmisfiled\\nmisfiles\\nmisfiling\\nmisfire\\nmisfired\\nmisfires\\nmisfiring\\nmisfit\\nmisfits\\nmisfitted\\nmisfitting\\nmisform\\nmisformed\\nmisforming\\nmisforms\\nmisfortune\\nmisfortunes\\nmisframe\\nmisframed\\nmisframes\\nmisframing\\nmisgauge\\nmisgauged\\nmisgauges\\nmisgauging\\nmisgave\\nmisgive\\nmisgiven\\nmisgives\\nmisgiving\\nmisgivings\\nmisgraft\\nmisgrafted\\nmisgrafting\\nmisgrafts\\nmisgrew\\nmisgrow\\nmisgrowing\\nmisgrown\\nmisgrows\\nmisguess\\nmisguessed\\nmisguesses\\nmisguessing\\nmisguide\\nmisguided\\nmisguides\\nmisguiding\\nmishap\\nmishaps\\nmishear\\nmisheard\\nmishearing\\nmishears\\nmishit\\nmishits\\nmishitting\\nmishmash\\nmishmashes\\nmishmosh\\nmishmoshes\\nmisinfer\\nmisinferred\\nmisinferring\\nmisinfers\\nmisinform\\nmisinformation\\nmisinformations\\nmisinforms\\nmisinter\\nmisinterpret\\nmisinterpretation\\nmisinterpretations\\nmisinterpreted\\nmisinterpreting\\nmisinterprets\\nmisinterred\\nmisinterring\\nmisinters\\nmisjoin\\nmisjoined\\nmisjoining\\nmisjoins\\nmisjudge\\nmisjudged\\nmisjudges\\nmisjudging\\nmisjudgment\\nmisjudgments\\nmiskal\\nmiskals\\nmiskeep\\nmiskeeping\\nmiskeeps\\nmiskept\\nmisknew\\nmisknow\\nmisknowing\\nmisknown\\nmisknows\\nmislabel\\nmislabeled\\nmislabeling\\nmislabelled\\nmislabelling\\nmislabels\\nmislabor\\nmislabored\\nmislaboring\\nmislabors\\nmislaid\\nmislain\\nmislay\\nmislayer\\nmislayers\\nmislaying\\nmislays\\nmislead\\nmisleading\\nmisleadingly\\nmisleads\\nmislearn\\nmislearned\\nmislearning\\nmislearns\\nmislearnt\\nmisled\\nmislie\\nmislies\\nmislight\\nmislighted\\nmislighting\\nmislights\\nmislike\\nmisliked\\nmisliker\\nmislikers\\nmislikes\\nmisliking\\nmislit\\nmislive\\nmislived\\nmislives\\nmisliving\\nmislodge\\nmislodged\\nmislodges\\nmislodging\\nmislying\\nmismanage\\nmismanaged\\nmismanagement\\nmismanagements\\nmismanages\\nmismanaging\\nmismark\\nmismarked\\nmismarking\\nmismarks\\nmismatch\\nmismatched\\nmismatches\\nmismatching\\nmismate\\nmismated\\nmismates\\nmismating\\nmismeet\\nmismeeting\\nmismeets\\nmismet\\nmismove\\nmismoved\\nmismoves\\nmismoving\\nmisname\\nmisnamed\\nmisnames\\nmisnaming\\nmisnomer\\nmisnomers\\nmiso\\nmisogamies\\nmisogamy\\nmisogynies\\nmisogynist\\nmisogynists\\nmisogyny\\nmisologies\\nmisology\\nmisos\\nmispage\\nmispaged\\nmispages\\nmispaging\\nmispaint\\nmispainted\\nmispainting\\nmispaints\\nmisparse\\nmisparsed\\nmisparses\\nmisparsing\\nmispart\\nmisparted\\nmisparting\\nmisparts\\nmispatch\\nmispatched\\nmispatches\\nmispatching\\nmispen\\nmispenned\\nmispenning\\nmispens\\nmisplace\\nmisplaced\\nmisplaces\\nmisplacing\\nmisplant\\nmisplanted\\nmisplanting\\nmisplants\\nmisplay\\nmisplayed\\nmisplaying\\nmisplays\\nmisplead\\nmispleaded\\nmispleading\\nmispleads\\nmispled\\nmispoint\\nmispointed\\nmispointing\\nmispoints\\nmispoise\\nmispoised\\nmispoises\\nmispoising\\nmisprint\\nmisprinted\\nmisprinting\\nmisprints\\nmisprize\\nmisprized\\nmisprizes\\nmisprizing\\nmispronounce\\nmispronounced\\nmispronounces\\nmispronouncing\\nmispronunciation\\nmispronunciations\\nmisquotation\\nmisquotations\\nmisquote\\nmisquoted\\nmisquotes\\nmisquoting\\nmisraise\\nmisraised\\nmisraises\\nmisraising\\nmisrate\\nmisrated\\nmisrates\\nmisrating\\nmisread\\nmisreading\\nmisreads\\nmisrefer\\nmisreferred\\nmisreferring\\nmisrefers\\nmisrelied\\nmisrelies\\nmisrely\\nmisrelying\\nmisrepresent\\nmisrepresentation\\nmisrepresentations\\nmisrepresented\\nmisrepresenting\\nmisrepresents\\nmisrule\\nmisruled\\nmisrules\\nmisruling\\nmiss\\nmissaid\\nmissal\\nmissals\\nmissay\\nmissaying\\nmissays\\nmisseat\\nmisseated\\nmisseating\\nmisseats\\nmissed\\nmissel\\nmissels\\nmissend\\nmissending\\nmissends\\nmissense\\nmissenses\\nmissent\\nmisses\\nmisshape\\nmisshaped\\nmisshapen\\nmisshapes\\nmisshaping\\nmisshod\\nmissies\\nmissile\\nmissiles\\nmissilries\\nmissilry\\nmissing\\nmission\\nmissionaries\\nmissionary\\nmissioned\\nmissioning\\nmissions\\nmissis\\nmissises\\nmissive\\nmissives\\nmissort\\nmissorted\\nmissorting\\nmissorts\\nmissound\\nmissounded\\nmissounding\\nmissounds\\nmissout\\nmissouts\\nmisspace\\nmisspaced\\nmisspaces\\nmisspacing\\nmisspeak\\nmisspeaking\\nmisspeaks\\nmisspell\\nmisspelled\\nmisspelling\\nmisspellings\\nmisspells\\nmisspelt\\nmisspend\\nmisspending\\nmisspends\\nmisspent\\nmisspoke\\nmisspoken\\nmisstart\\nmisstarted\\nmisstarting\\nmisstarts\\nmisstate\\nmisstated\\nmisstatement\\nmisstatements\\nmisstates\\nmisstating\\nmissteer\\nmissteered\\nmissteering\\nmissteers\\nmisstep\\nmissteps\\nmisstop\\nmisstopped\\nmisstopping\\nmisstops\\nmisstyle\\nmisstyled\\nmisstyles\\nmisstyling\\nmissuit\\nmissuited\\nmissuiting\\nmissuits\\nmissus\\nmissuses\\nmissy\\nmist\\nmistake\\nmistaken\\nmistakenly\\nmistaker\\nmistakers\\nmistakes\\nmistaking\\nmistaught\\nmistbow\\nmistbows\\nmisteach\\nmisteaches\\nmisteaching\\nmisted\\nmistend\\nmistended\\nmistending\\nmistends\\nmister\\nmisterm\\nmistermed\\nmisterming\\nmisterms\\nmisters\\nmisteuk\\nmisthink\\nmisthinking\\nmisthinks\\nmisthought\\nmisthrew\\nmisthrow\\nmisthrowing\\nmisthrown\\nmisthrows\\nmistier\\nmistiest\\nmistily\\nmistime\\nmistimed\\nmistimes\\nmistiming\\nmisting\\nmistitle\\nmistitled\\nmistitles\\nmistitling\\nmistletoe\\nmistook\\nmistouch\\nmistouched\\nmistouches\\nmistouching\\nmistrace\\nmistraced\\nmistraces\\nmistracing\\nmistral\\nmistrals\\nmistreat\\nmistreated\\nmistreating\\nmistreatment\\nmistreatments\\nmistreats\\nmistress\\nmistresses\\nmistrial\\nmistrials\\nmistrust\\nmistrusted\\nmistrustful\\nmistrustfully\\nmistrustfulness\\nmistrustfulnesses\\nmistrusting\\nmistrusts\\nmistryst\\nmistrysted\\nmistrysting\\nmistrysts\\nmists\\nmistune\\nmistuned\\nmistunes\\nmistuning\\nmistutor\\nmistutored\\nmistutoring\\nmistutors\\nmisty\\nmistype\\nmistyped\\nmistypes\\nmistyping\\nmisunderstand\\nmisunderstanded\\nmisunderstanding\\nmisunderstandings\\nmisunderstands\\nmisunion\\nmisunions\\nmisusage\\nmisusages\\nmisuse\\nmisused\\nmisuser\\nmisusers\\nmisuses\\nmisusing\\nmisvalue\\nmisvalued\\nmisvalues\\nmisvaluing\\nmisword\\nmisworded\\nmiswording\\nmiswords\\nmiswrit\\nmiswrite\\nmiswrites\\nmiswriting\\nmiswritten\\nmiswrote\\nmisyoke\\nmisyoked\\nmisyokes\\nmisyoking\\nmite\\nmiter\\nmitered\\nmiterer\\nmiterers\\nmitering\\nmiters\\nmites\\nmither\\nmithers\\nmiticide\\nmiticides\\nmitier\\nmitiest\\nmitigate\\nmitigated\\nmitigates\\nmitigating\\nmitigation\\nmitigations\\nmitigative\\nmitigator\\nmitigators\\nmitigatory\\nmitis\\nmitises\\nmitogen\\nmitogens\\nmitoses\\nmitosis\\nmitotic\\nmitral\\nmitre\\nmitred\\nmitres\\nmitring\\nmitsvah\\nmitsvahs\\nmitsvoth\\nmitt\\nmitten\\nmittens\\nmittimus\\nmittimuses\\nmitts\\nmity\\nmitzvah\\nmitzvahs\\nmitzvoth\\nmix\\nmixable\\nmixed\\nmixer\\nmixers\\nmixes\\nmixible\\nmixing\\nmixologies\\nmixology\\nmixt\\nmixture\\nmixtures\\nmixup\\nmixups\\nmizen\\nmizens\\nmizzen\\nmizzens\\nmizzle\\nmizzled\\nmizzles\\nmizzling\\nmizzly\\nmnemonic\\nmnemonics\\nmoa\\nmoan\\nmoaned\\nmoanful\\nmoaning\\nmoans\\nmoas\\nmoat\\nmoated\\nmoating\\nmoatlike\\nmoats\\nmob\\nmobbed\\nmobber\\nmobbers\\nmobbing\\nmobbish\\nmobcap\\nmobcaps\\nmobile\\nmobiles\\nmobilise\\nmobilised\\nmobilises\\nmobilising\\nmobilities\\nmobility\\nmobilization\\nmobilizations\\nmobilize\\nmobilized\\nmobilizer\\nmobilizers\\nmobilizes\\nmobilizing\\nmobocrat\\nmobocrats\\nmobs\\nmobster\\nmobsters\\nmoccasin\\nmoccasins\\nmocha\\nmochas\\nmochila\\nmochilas\\nmock\\nmockable\\nmocked\\nmocker\\nmockeries\\nmockers\\nmockery\\nmocking\\nmockingbird\\nmockingbirds\\nmockingly\\nmocks\\nmockup\\nmockups\\nmod\\nmodal\\nmodalities\\nmodality\\nmodally\\nmode\\nmodel\\nmodeled\\nmodeler\\nmodelers\\nmodeling\\nmodelings\\nmodelled\\nmodeller\\nmodellers\\nmodelling\\nmodels\\nmoderate\\nmoderated\\nmoderately\\nmoderateness\\nmoderatenesses\\nmoderates\\nmoderating\\nmoderation\\nmoderations\\nmoderato\\nmoderator\\nmoderators\\nmoderatos\\nmodern\\nmoderner\\nmodernest\\nmodernities\\nmodernity\\nmodernization\\nmodernizations\\nmodernize\\nmodernized\\nmodernizer\\nmodernizers\\nmodernizes\\nmodernizing\\nmodernly\\nmodernness\\nmodernnesses\\nmoderns\\nmodes\\nmodest\\nmodester\\nmodestest\\nmodesties\\nmodestly\\nmodesty\\nmodi\\nmodica\\nmodicum\\nmodicums\\nmodification\\nmodifications\\nmodified\\nmodifier\\nmodifiers\\nmodifies\\nmodify\\nmodifying\\nmodioli\\nmodiolus\\nmodish\\nmodishly\\nmodiste\\nmodistes\\nmods\\nmodular\\nmodularities\\nmodularity\\nmodularized\\nmodulate\\nmodulated\\nmodulates\\nmodulating\\nmodulation\\nmodulations\\nmodulator\\nmodulators\\nmodulatory\\nmodule\\nmodules\\nmoduli\\nmodulo\\nmodulus\\nmodus\\nmofette\\nmofettes\\nmoffette\\nmoffettes\\nmog\\nmogged\\nmogging\\nmogs\\nmogul\\nmoguls\\nmohair\\nmohairs\\nmohalim\\nmohel\\nmohels\\nmohur\\nmohurs\\nmoidore\\nmoidores\\nmoieties\\nmoiety\\nmoil\\nmoiled\\nmoiler\\nmoilers\\nmoiling\\nmoils\\nmoira\\nmoirai\\nmoire\\nmoires\\nmoist\\nmoisten\\nmoistened\\nmoistener\\nmoisteners\\nmoistening\\nmoistens\\nmoister\\nmoistest\\nmoistful\\nmoistly\\nmoistness\\nmoistnesses\\nmoisture\\nmoistures\\nmojarra\\nmojarras\\nmoke\\nmokes\\nmol\\nmola\\nmolal\\nmolalities\\nmolality\\nmolar\\nmolarities\\nmolarity\\nmolars\\nmolas\\nmolasses\\nmolasseses\\nmold\\nmoldable\\nmolded\\nmolder\\nmoldered\\nmoldering\\nmolders\\nmoldier\\nmoldiest\\nmoldiness\\nmoldinesses\\nmolding\\nmoldings\\nmolds\\nmoldwarp\\nmoldwarps\\nmoldy\\nmole\\nmolecular\\nmolecule\\nmolecules\\nmolehill\\nmolehills\\nmoles\\nmoleskin\\nmoleskins\\nmolest\\nmolestation\\nmolestations\\nmolested\\nmolester\\nmolesters\\nmolesting\\nmolests\\nmolies\\nmoline\\nmoll\\nmollah\\nmollahs\\nmollie\\nmollies\\nmollification\\nmollifications\\nmollified\\nmollifies\\nmollify\\nmollifying\\nmolls\\nmollusc\\nmolluscan\\nmolluscs\\nmollusk\\nmollusks\\nmolly\\nmollycoddle\\nmollycoddled\\nmollycoddles\\nmollycoddling\\nmoloch\\nmolochs\\nmols\\nmolt\\nmolted\\nmolten\\nmoltenly\\nmolter\\nmolters\\nmolting\\nmolto\\nmolts\\nmoly\\nmolybdic\\nmolys\\nmom\\nmome\\nmoment\\nmomenta\\nmomentarily\\nmomentary\\nmomently\\nmomento\\nmomentoes\\nmomentos\\nmomentous\\nmomentously\\nmomentousment\\nmomentousments\\nmomentousness\\nmomentousnesses\\nmoments\\nmomentum\\nmomentums\\nmomes\\nmomi\\nmomism\\nmomisms\\nmomma\\nmommas\\nmommies\\nmommy\\nmoms\\nmomus\\nmomuses\\nmon\\nmonachal\\nmonacid\\nmonacids\\nmonad\\nmonadal\\nmonades\\nmonadic\\nmonadism\\nmonadisms\\nmonads\\nmonandries\\nmonandry\\nmonarch\\nmonarchic\\nmonarchical\\nmonarchies\\nmonarchs\\nmonarchy\\nmonarda\\nmonardas\\nmonas\\nmonasterial\\nmonasteries\\nmonastery\\nmonastic\\nmonastically\\nmonasticism\\nmonasticisms\\nmonastics\\nmonaural\\nmonaxial\\nmonazite\\nmonazites\\nmonde\\nmondes\\nmondo\\nmondos\\nmonecian\\nmonetary\\nmonetise\\nmonetised\\nmonetises\\nmonetising\\nmonetize\\nmonetized\\nmonetizes\\nmonetizing\\nmoney\\nmoneybag\\nmoneybags\\nmoneyed\\nmoneyer\\nmoneyers\\nmoneylender\\nmoneylenders\\nmoneys\\nmongeese\\nmonger\\nmongered\\nmongering\\nmongers\\nmongo\\nmongoe\\nmongoes\\nmongol\\nmongolism\\nmongolisms\\nmongols\\nmongoose\\nmongooses\\nmongos\\nmongrel\\nmongrels\\nmongst\\nmonicker\\nmonickers\\nmonie\\nmonied\\nmonies\\nmoniker\\nmonikers\\nmonish\\nmonished\\nmonishes\\nmonishing\\nmonism\\nmonisms\\nmonist\\nmonistic\\nmonists\\nmonition\\nmonitions\\nmonitive\\nmonitor\\nmonitored\\nmonitories\\nmonitoring\\nmonitors\\nmonitory\\nmonk\\nmonkeries\\nmonkery\\nmonkey\\nmonkeyed\\nmonkeying\\nmonkeys\\nmonkeyshines\\nmonkfish\\nmonkfishes\\nmonkhood\\nmonkhoods\\nmonkish\\nmonkishly\\nmonkishness\\nmonkishnesses\\nmonks\\nmonkshood\\nmonkshoods\\nmono\\nmonoacid\\nmonoacids\\nmonocarp\\nmonocarps\\nmonocle\\nmonocled\\nmonocles\\nmonocot\\nmonocots\\nmonocrat\\nmonocrats\\nmonocyte\\nmonocytes\\nmonodic\\nmonodies\\nmonodist\\nmonodists\\nmonody\\nmonoecies\\nmonoecy\\nmonofil\\nmonofils\\nmonofuel\\nmonofuels\\nmonogamic\\nmonogamies\\nmonogamist\\nmonogamists\\nmonogamous\\nmonogamy\\nmonogenies\\nmonogeny\\nmonogerm\\nmonogram\\nmonogramed\\nmonograming\\nmonogrammed\\nmonogramming\\nmonograms\\nmonograph\\nmonographs\\nmonogynies\\nmonogyny\\nmonolingual\\nmonolith\\nmonolithic\\nmonoliths\\nmonolog\\nmonologies\\nmonologist\\nmonologists\\nmonologs\\nmonologue\\nmonologues\\nmonologuist\\nmonologuists\\nmonology\\nmonomer\\nmonomers\\nmonomial\\nmonomials\\nmononucleosis\\nmononucleosises\\nmonopode\\nmonopodes\\nmonopodies\\nmonopody\\nmonopole\\nmonopoles\\nmonopolies\\nmonopolist\\nmonopolistic\\nmonopolists\\nmonopolization\\nmonopolizations\\nmonopolize\\nmonopolized\\nmonopolizes\\nmonopolizing\\nmonopoly\\nmonorail\\nmonorails\\nmonos\\nmonosome\\nmonosomes\\nmonosyllable\\nmonosyllables\\nmonosyllablic\\nmonotheism\\nmonotheisms\\nmonotheist\\nmonotheists\\nmonotint\\nmonotints\\nmonotone\\nmonotones\\nmonotonies\\nmonotonous\\nmonotonously\\nmonotonousness\\nmonotonousnesses\\nmonotony\\nmonotype\\nmonotypes\\nmonoxide\\nmonoxides\\nmons\\nmonsieur\\nmonsignor\\nmonsignori\\nmonsignors\\nmonsoon\\nmonsoonal\\nmonsoons\\nmonster\\nmonsters\\nmonstrosities\\nmonstrosity\\nmonstrously\\nmontage\\nmontaged\\nmontages\\nmontaging\\nmontane\\nmontanes\\nmonte\\nmonteith\\nmonteiths\\nmontero\\nmonteros\\nmontes\\nmonth\\nmonthlies\\nmonthly\\nmonths\\nmonument\\nmonumental\\nmonumentally\\nmonuments\\nmonuron\\nmonurons\\nmony\\nmoo\\nmooch\\nmooched\\nmoocher\\nmoochers\\nmooches\\nmooching\\nmood\\nmoodier\\nmoodiest\\nmoodily\\nmoodiness\\nmoodinesses\\nmoods\\nmoody\\nmooed\\nmooing\\nmool\\nmoola\\nmoolah\\nmoolahs\\nmoolas\\nmooley\\nmooleys\\nmools\\nmoon\\nmoonbeam\\nmoonbeams\\nmoonbow\\nmoonbows\\nmooncalf\\nmooncalves\\nmooned\\nmooneye\\nmooneyes\\nmoonfish\\nmoonfishes\\nmoonier\\nmooniest\\nmoonily\\nmooning\\nmoonish\\nmoonless\\nmoonlet\\nmoonlets\\nmoonlight\\nmoonlighted\\nmoonlighter\\nmoonlighters\\nmoonlighting\\nmoonlights\\nmoonlike\\nmoonlit\\nmoonrise\\nmoonrises\\nmoons\\nmoonsail\\nmoonsails\\nmoonseed\\nmoonseeds\\nmoonset\\nmoonsets\\nmoonshine\\nmoonshines\\nmoonshot\\nmoonshots\\nmoonward\\nmoonwort\\nmoonworts\\nmoony\\nmoor\\nmoorage\\nmoorages\\nmoored\\nmoorfowl\\nmoorfowls\\nmoorhen\\nmoorhens\\nmoorier\\nmooriest\\nmooring\\nmoorings\\nmoorish\\nmoorland\\nmoorlands\\nmoors\\nmoorwort\\nmoorworts\\nmoory\\nmoos\\nmoose\\nmoot\\nmooted\\nmooter\\nmooters\\nmooting\\nmoots\\nmop\\nmopboard\\nmopboards\\nmope\\nmoped\\nmopeds\\nmoper\\nmopers\\nmopes\\nmoping\\nmopingly\\nmopish\\nmopishly\\nmopoke\\nmopokes\\nmopped\\nmopper\\nmoppers\\nmoppet\\nmoppets\\nmopping\\nmops\\nmoquette\\nmoquettes\\nmor\\nmora\\nmorae\\nmorainal\\nmoraine\\nmoraines\\nmorainic\\nmoral\\nmorale\\nmorales\\nmoralise\\nmoralised\\nmoralises\\nmoralising\\nmoralism\\nmoralisms\\nmoralist\\nmoralistic\\nmoralists\\nmoralities\\nmorality\\nmoralize\\nmoralized\\nmoralizes\\nmoralizing\\nmorally\\nmorals\\nmoras\\nmorass\\nmorasses\\nmorassy\\nmoratoria\\nmoratorium\\nmoratoriums\\nmoratory\\nmoray\\nmorays\\nmorbid\\nmorbidities\\nmorbidity\\nmorbidly\\nmorbidness\\nmorbidnesses\\nmorbific\\nmorbilli\\nmorceau\\nmorceaux\\nmordancies\\nmordancy\\nmordant\\nmordanted\\nmordanting\\nmordantly\\nmordants\\nmordent\\nmordents\\nmore\\nmoreen\\nmoreens\\nmorel\\nmorelle\\nmorelles\\nmorello\\nmorellos\\nmorels\\nmoreover\\nmores\\nmoresque\\nmoresques\\nmorgen\\nmorgens\\nmorgue\\nmorgues\\nmoribund\\nmoribundities\\nmoribundity\\nmorion\\nmorions\\nmorn\\nmorning\\nmornings\\nmorns\\nmorocco\\nmoroccos\\nmoron\\nmoronic\\nmoronically\\nmoronism\\nmoronisms\\nmoronities\\nmoronity\\nmorons\\nmorose\\nmorosely\\nmoroseness\\nmorosenesses\\nmorosities\\nmorosity\\nmorph\\nmorpheme\\nmorphemes\\nmorphia\\nmorphias\\nmorphic\\nmorphin\\nmorphine\\nmorphines\\nmorphins\\nmorpho\\nmorphologic\\nmorphologically\\nmorphologies\\nmorphology\\nmorphos\\nmorphs\\nmorrion\\nmorrions\\nmorris\\nmorrises\\nmorro\\nmorros\\nmorrow\\nmorrows\\nmors\\nmorsel\\nmorseled\\nmorseling\\nmorselled\\nmorselling\\nmorsels\\nmort\\nmortal\\nmortalities\\nmortality\\nmortally\\nmortals\\nmortar\\nmortared\\nmortaring\\nmortars\\nmortary\\nmortgage\\nmortgaged\\nmortgagee\\nmortgagees\\nmortgages\\nmortgaging\\nmortgagor\\nmortgagors\\nmortice\\nmorticed\\nmortices\\nmorticing\\nmortification\\nmortifications\\nmortified\\nmortifies\\nmortify\\nmortifying\\nmortise\\nmortised\\nmortiser\\nmortisers\\nmortises\\nmortising\\nmortmain\\nmortmains\\nmorts\\nmortuaries\\nmortuary\\nmorula\\nmorulae\\nmorular\\nmorulas\\nmosaic\\nmosaicked\\nmosaicking\\nmosaics\\nmoschate\\nmosey\\nmoseyed\\nmoseying\\nmoseys\\nmoshav\\nmoshavim\\nmosk\\nmosks\\nmosque\\nmosques\\nmosquito\\nmosquitoes\\nmosquitos\\nmoss\\nmossback\\nmossbacks\\nmossed\\nmosser\\nmossers\\nmosses\\nmossier\\nmossiest\\nmossing\\nmosslike\\nmosso\\nmossy\\nmost\\nmoste\\nmostly\\nmosts\\nmot\\nmote\\nmotel\\nmotels\\nmotes\\nmotet\\nmotets\\nmotey\\nmoth\\nmothball\\nmothballed\\nmothballing\\nmothballs\\nmother\\nmothered\\nmotherhood\\nmotherhoods\\nmothering\\nmotherland\\nmotherlands\\nmotherless\\nmotherly\\nmothers\\nmothery\\nmothier\\nmothiest\\nmoths\\nmothy\\nmotif\\nmotifs\\nmotile\\nmotiles\\nmotilities\\nmotility\\nmotion\\nmotional\\nmotioned\\nmotioner\\nmotioners\\nmotioning\\nmotionless\\nmotionlessly\\nmotionlessness\\nmotionlessnesses\\nmotions\\nmotivate\\nmotivated\\nmotivates\\nmotivating\\nmotivation\\nmotivations\\nmotive\\nmotived\\nmotiveless\\nmotives\\nmotivic\\nmotiving\\nmotivities\\nmotivity\\nmotley\\nmotleyer\\nmotleyest\\nmotleys\\nmotlier\\nmotliest\\nmotmot\\nmotmots\\nmotor\\nmotorbike\\nmotorbikes\\nmotorboat\\nmotorboats\\nmotorbus\\nmotorbuses\\nmotorbusses\\nmotorcar\\nmotorcars\\nmotorcycle\\nmotorcycles\\nmotorcyclist\\nmotorcyclists\\nmotored\\nmotoric\\nmotoring\\nmotorings\\nmotorise\\nmotorised\\nmotorises\\nmotorising\\nmotorist\\nmotorists\\nmotorize\\nmotorized\\nmotorizes\\nmotorizing\\nmotorman\\nmotormen\\nmotors\\nmotortruck\\nmotortrucks\\nmotorway\\nmotorways\\nmots\\nmott\\nmotte\\nmottes\\nmottle\\nmottled\\nmottler\\nmottlers\\nmottles\\nmottling\\nmotto\\nmottoes\\nmottos\\nmotts\\nmouch\\nmouched\\nmouches\\nmouching\\nmouchoir\\nmouchoirs\\nmoue\\nmoues\\nmoufflon\\nmoufflons\\nmouflon\\nmouflons\\nmouille\\nmoujik\\nmoujiks\\nmoulage\\nmoulages\\nmould\\nmoulded\\nmoulder\\nmouldered\\nmouldering\\nmoulders\\nmouldier\\nmouldiest\\nmoulding\\nmouldings\\nmoulds\\nmouldy\\nmoulin\\nmoulins\\nmoult\\nmoulted\\nmoulter\\nmoulters\\nmoulting\\nmoults\\nmound\\nmounded\\nmounding\\nmounds\\nmount\\nmountable\\nmountain\\nmountaineer\\nmountaineered\\nmountaineering\\nmountaineers\\nmountainous\\nmountains\\nmountaintop\\nmountaintops\\nmountebank\\nmountebanks\\nmounted\\nmounter\\nmounters\\nmounting\\nmountings\\nmounts\\nmourn\\nmourned\\nmourner\\nmourners\\nmournful\\nmournfuller\\nmournfullest\\nmournfully\\nmournfulness\\nmournfulnesses\\nmourning\\nmournings\\nmourns\\nmouse\\nmoused\\nmouser\\nmousers\\nmouses\\nmousetrap\\nmousetraps\\nmousey\\nmousier\\nmousiest\\nmousily\\nmousing\\nmousings\\nmoussaka\\nmoussakas\\nmousse\\nmousses\\nmoustache\\nmoustaches\\nmousy\\nmouth\\nmouthed\\nmouther\\nmouthers\\nmouthful\\nmouthfuls\\nmouthier\\nmouthiest\\nmouthily\\nmouthing\\nmouthpiece\\nmouthpieces\\nmouths\\nmouthy\\nmouton\\nmoutons\\nmovable\\nmovables\\nmovably\\nmove\\nmoveable\\nmoveables\\nmoveably\\nmoved\\nmoveless\\nmovement\\nmovements\\nmover\\nmovers\\nmoves\\nmovie\\nmoviedom\\nmoviedoms\\nmovies\\nmoving\\nmovingly\\nmow\\nmowed\\nmower\\nmowers\\nmowing\\nmown\\nmows\\nmoxa\\nmoxas\\nmoxie\\nmoxies\\nmozetta\\nmozettas\\nmozette\\nmozo\\nmozos\\nmozzetta\\nmozzettas\\nmozzette\\nmridanga\\nmridangas\\nmu\\nmuch\\nmuches\\nmuchness\\nmuchnesses\\nmucic\\nmucid\\nmucidities\\nmucidity\\nmucilage\\nmucilages\\nmucilaginous\\nmucin\\nmucinoid\\nmucinous\\nmucins\\nmuck\\nmucked\\nmucker\\nmuckers\\nmuckier\\nmuckiest\\nmuckily\\nmucking\\nmuckle\\nmuckles\\nmuckluck\\nmucklucks\\nmuckrake\\nmuckraked\\nmuckrakes\\nmuckraking\\nmucks\\nmuckworm\\nmuckworms\\nmucky\\nmucluc\\nmuclucs\\nmucoid\\nmucoidal\\nmucoids\\nmucor\\nmucors\\nmucosa\\nmucosae\\nmucosal\\nmucosas\\nmucose\\nmucosities\\nmucositis\\nmucosity\\nmucous\\nmucro\\nmucrones\\nmucus\\nmucuses\\nmud\\nmudcap\\nmudcapped\\nmudcapping\\nmudcaps\\nmudded\\nmudder\\nmudders\\nmuddied\\nmuddier\\nmuddies\\nmuddiest\\nmuddily\\nmuddiness\\nmuddinesses\\nmudding\\nmuddle\\nmuddled\\nmuddler\\nmuddlers\\nmuddles\\nmuddling\\nmuddy\\nmuddying\\nmudfish\\nmudfishes\\nmudguard\\nmudguards\\nmudlark\\nmudlarks\\nmudpuppies\\nmudpuppy\\nmudra\\nmudras\\nmudrock\\nmudrocks\\nmudroom\\nmudrooms\\nmuds\\nmudsill\\nmudsills\\nmudstone\\nmudstones\\nmueddin\\nmueddins\\nmuenster\\nmuensters\\nmuezzin\\nmuezzins\\nmuff\\nmuffed\\nmuffin\\nmuffing\\nmuffins\\nmuffle\\nmuffled\\nmuffler\\nmufflers\\nmuffles\\nmuffling\\nmuffs\\nmufti\\nmuftis\\nmug\\nmugg\\nmuggar\\nmuggars\\nmugged\\nmugger\\nmuggers\\nmuggier\\nmuggiest\\nmuggily\\nmugginess\\nmugginesses\\nmugging\\nmuggings\\nmuggins\\nmuggs\\nmuggur\\nmuggurs\\nmuggy\\nmugho\\nmugs\\nmugwort\\nmugworts\\nmugwump\\nmugwumps\\nmuhlies\\nmuhly\\nmujik\\nmujiks\\nmukluk\\nmukluks\\nmulatto\\nmulattoes\\nmulattos\\nmulberries\\nmulberry\\nmulch\\nmulched\\nmulches\\nmulching\\nmulct\\nmulcted\\nmulcting\\nmulcts\\nmule\\nmuled\\nmules\\nmuleta\\nmuletas\\nmuleteer\\nmuleteers\\nmuley\\nmuleys\\nmuling\\nmulish\\nmulishly\\nmulishness\\nmulishnesses\\nmull\\nmulla\\nmullah\\nmullahs\\nmullas\\nmulled\\nmullein\\nmulleins\\nmullen\\nmullens\\nmuller\\nmullers\\nmullet\\nmullets\\nmulley\\nmulleys\\nmulligan\\nmulligans\\nmulling\\nmullion\\nmullioned\\nmullioning\\nmullions\\nmullite\\nmullites\\nmullock\\nmullocks\\nmullocky\\nmulls\\nmultiarmed\\nmultibarreled\\nmultibillion\\nmultibranched\\nmultibuilding\\nmulticenter\\nmultichambered\\nmultichannel\\nmulticolored\\nmulticounty\\nmulticultural\\nmultidenominational\\nmultidimensional\\nmultidirectional\\nmultidisciplinary\\nmultidiscipline\\nmultidivisional\\nmultidwelling\\nmultifaceted\\nmultifamily\\nmultifarous\\nmultifarously\\nmultifid\\nmultifilament\\nmultifunction\\nmultifunctional\\nmultigrade\\nmultiheaded\\nmultihospital\\nmultihued\\nmultijet\\nmultilane\\nmultilateral\\nmultilevel\\nmultilingual\\nmultilingualism\\nmultilingualisms\\nmultimedia\\nmultimember\\nmultimillion\\nmultimillionaire\\nmultimodalities\\nmultimodality\\nmultipart\\nmultipartite\\nmultiparty\\nmultiped\\nmultipeds\\nmultiplant\\nmultiple\\nmultiples\\nmultiplexor\\nmultiplexors\\nmultiplication\\nmultiplications\\nmultiplicities\\nmultiplicity\\nmultiplied\\nmultiplier\\nmultipliers\\nmultiplies\\nmultiply\\nmultiplying\\nmultipolar\\nmultiproblem\\nmultiproduct\\nmultipurpose\\nmultiracial\\nmultiroomed\\nmultisense\\nmultiservice\\nmultisided\\nmultispeed\\nmultistage\\nmultistep\\nmultistory\\nmultisyllabic\\nmultitalented\\nmultitrack\\nmultitude\\nmultitudes\\nmultitudinous\\nmultiunion\\nmultiunit\\nmultivariate\\nmultiwarhead\\nmultiyear\\nmulture\\nmultures\\nmum\\nmumble\\nmumbled\\nmumbler\\nmumblers\\nmumbles\\nmumbling\\nmumbo\\nmumm\\nmummed\\nmummer\\nmummeries\\nmummers\\nmummery\\nmummied\\nmummies\\nmummification\\nmummifications\\nmummified\\nmummifies\\nmummify\\nmummifying\\nmumming\\nmumms\\nmummy\\nmummying\\nmump\\nmumped\\nmumper\\nmumpers\\nmumping\\nmumps\\nmums\\nmun\\nmunch\\nmunched\\nmuncher\\nmunchers\\nmunches\\nmunching\\nmundane\\nmundanely\\nmundungo\\nmundungos\\nmunge\\nmungo\\nmungoose\\nmungooses\\nmungos\\nmungs\\nmunicipal\\nmunicipalities\\nmunicipality\\nmunicipally\\nmunificence\\nmunificences\\nmunificent\\nmuniment\\nmuniments\\nmunition\\nmunitioned\\nmunitioning\\nmunitions\\nmunnion\\nmunnions\\nmuns\\nmunster\\nmunsters\\nmuntin\\nmunting\\nmuntings\\nmuntins\\nmuntjac\\nmuntjacs\\nmuntjak\\nmuntjaks\\nmuon\\nmuonic\\nmuons\\nmura\\nmuraenid\\nmuraenids\\nmural\\nmuralist\\nmuralists\\nmurals\\nmuras\\nmurder\\nmurdered\\nmurderee\\nmurderees\\nmurderer\\nmurderers\\nmurderess\\nmurderesses\\nmurdering\\nmurderous\\nmurderously\\nmurders\\nmure\\nmured\\nmurein\\nmureins\\nmures\\nmurex\\nmurexes\\nmuriate\\nmuriated\\nmuriates\\nmuricate\\nmurices\\nmurid\\nmurids\\nmurine\\nmurines\\nmuring\\nmurk\\nmurker\\nmurkest\\nmurkier\\nmurkiest\\nmurkily\\nmurkiness\\nmurkinesses\\nmurkly\\nmurks\\nmurky\\nmurmur\\nmurmured\\nmurmurer\\nmurmurers\\nmurmuring\\nmurmurous\\nmurmurs\\nmurphies\\nmurphy\\nmurr\\nmurra\\nmurrain\\nmurrains\\nmurras\\nmurre\\nmurrelet\\nmurrelets\\nmurres\\nmurrey\\nmurreys\\nmurrha\\nmurrhas\\nmurrhine\\nmurries\\nmurrine\\nmurrs\\nmurry\\nmurther\\nmurthered\\nmurthering\\nmurthers\\nmus\\nmusca\\nmuscadel\\nmuscadels\\nmuscae\\nmuscat\\nmuscatel\\nmuscatels\\nmuscats\\nmuscid\\nmuscids\\nmuscle\\nmuscled\\nmuscles\\nmuscling\\nmuscly\\nmuscular\\nmuscularities\\nmuscularity\\nmusculature\\nmusculatures\\nmuse\\nmused\\nmuseful\\nmuser\\nmusers\\nmuses\\nmusette\\nmusettes\\nmuseum\\nmuseums\\nmush\\nmushed\\nmusher\\nmushers\\nmushes\\nmushier\\nmushiest\\nmushily\\nmushing\\nmushroom\\nmushroomed\\nmushrooming\\nmushrooms\\nmushy\\nmusic\\nmusical\\nmusicale\\nmusicales\\nmusically\\nmusicals\\nmusician\\nmusicianly\\nmusicians\\nmusicianship\\nmusicianships\\nmusics\\nmusing\\nmusingly\\nmusings\\nmusjid\\nmusjids\\nmusk\\nmuskeg\\nmuskegs\\nmuskellunge\\nmusket\\nmusketries\\nmusketry\\nmuskets\\nmuskie\\nmuskier\\nmuskies\\nmuskiest\\nmuskily\\nmuskiness\\nmuskinesses\\nmuskit\\nmuskits\\nmuskmelon\\nmuskmelons\\nmuskrat\\nmuskrats\\nmusks\\nmusky\\nmuslin\\nmuslins\\nmuspike\\nmuspikes\\nmusquash\\nmusquashes\\nmuss\\nmussed\\nmussel\\nmussels\\nmusses\\nmussier\\nmussiest\\nmussily\\nmussiness\\nmussinesses\\nmussing\\nmussy\\nmust\\nmustache\\nmustaches\\nmustang\\nmustangs\\nmustard\\nmustards\\nmusted\\nmustee\\nmustees\\nmuster\\nmustered\\nmustering\\nmusters\\nmusth\\nmusths\\nmustier\\nmustiest\\nmustily\\nmustiness\\nmustinesses\\nmusting\\nmusts\\nmusty\\nmut\\nmutabilities\\nmutability\\nmutable\\nmutably\\nmutagen\\nmutagens\\nmutant\\nmutants\\nmutase\\nmutases\\nmutate\\nmutated\\nmutates\\nmutating\\nmutation\\nmutational\\nmutations\\nmutative\\nmutch\\nmutches\\nmutchkin\\nmutchkins\\nmute\\nmuted\\nmutedly\\nmutely\\nmuteness\\nmutenesses\\nmuter\\nmutes\\nmutest\\nmuticous\\nmutilate\\nmutilated\\nmutilates\\nmutilating\\nmutilation\\nmutilations\\nmutilator\\nmutilators\\nmutine\\nmutined\\nmutineer\\nmutineered\\nmutineering\\nmutineers\\nmutines\\nmuting\\nmutinied\\nmutinies\\nmutining\\nmutinous\\nmutinously\\nmutiny\\nmutinying\\nmutism\\nmutisms\\nmuts\\nmutt\\nmutter\\nmuttered\\nmutterer\\nmutterers\\nmuttering\\nmutters\\nmutton\\nmuttons\\nmuttony\\nmutts\\nmutual\\nmutually\\nmutuel\\nmutuels\\nmutular\\nmutule\\nmutules\\nmuumuu\\nmuumuus\\nmuzhik\\nmuzhiks\\nmuzjik\\nmuzjiks\\nmuzzier\\nmuzziest\\nmuzzily\\nmuzzle\\nmuzzled\\nmuzzler\\nmuzzlers\\nmuzzles\\nmuzzling\\nmuzzy\\nmy\\nmyalgia\\nmyalgias\\nmyalgic\\nmyases\\nmyasis\\nmycele\\nmyceles\\nmycelia\\nmycelial\\nmycelian\\nmycelium\\nmyceloid\\nmycetoma\\nmycetomas\\nmycetomata\\nmycologies\\nmycology\\nmycoses\\nmycosis\\nmycotic\\nmyelin\\nmyeline\\nmyelines\\nmyelinic\\nmyelins\\nmyelitides\\nmyelitis\\nmyeloid\\nmyeloma\\nmyelomas\\nmyelomata\\nmyelosuppression\\nmyelosuppressions\\nmyiases\\nmyiasis\\nmylonite\\nmylonites\\nmyna\\nmynah\\nmynahs\\nmynas\\nmynheer\\nmynheers\\nmyoblast\\nmyoblasts\\nmyogenic\\nmyograph\\nmyographs\\nmyoid\\nmyologic\\nmyologies\\nmyology\\nmyoma\\nmyomas\\nmyomata\\nmyopathies\\nmyopathy\\nmyope\\nmyopes\\nmyopia\\nmyopias\\nmyopic\\nmyopically\\nmyopies\\nmyopy\\nmyoscope\\nmyoscopes\\nmyoses\\nmyosin\\nmyosins\\nmyosis\\nmyosote\\nmyosotes\\nmyosotis\\nmyosotises\\nmyotic\\nmyotics\\nmyotome\\nmyotomes\\nmyotonia\\nmyotonias\\nmyotonic\\nmyriad\\nmyriads\\nmyriapod\\nmyriapods\\nmyrica\\nmyricas\\nmyriopod\\nmyriopods\\nmyrmidon\\nmyrmidons\\nmyrrh\\nmyrrhic\\nmyrrhs\\nmyrtle\\nmyrtles\\nmyself\\nmysost\\nmysosts\\nmystagog\\nmystagogs\\nmysteries\\nmysterious\\nmysteriously\\nmysteriousness\\nmysteriousnesses\\nmystery\\nmystic\\nmystical\\nmysticly\\nmystics\\nmystification\\nmystifications\\nmystified\\nmystifies\\nmystify\\nmystifying\\nmystique\\nmystiques\\nmyth\\nmythic\\nmythical\\nmythoi\\nmythological\\nmythologies\\nmythologist\\nmythologists\\nmythology\\nmythos\\nmyths\\nmyxedema\\nmyxedemas\\nmyxocyte\\nmyxocytes\\nmyxoid\\nmyxoma\\nmyxomas\\nmyxomata\\nna\\nnab\\nnabbed\\nnabbing\\nnabis\\nnabob\\nnaboberies\\nnabobery\\nnabobess\\nnabobesses\\nnabobism\\nnabobisms\\nnabobs\\nnabs\\nnacelle\\nnacelles\\nnacre\\nnacred\\nnacreous\\nnacres\\nnadir\\nnadiral\\nnadirs\\nnae\\nnaething\\nnaethings\\nnaevi\\nnaevoid\\nnaevus\\nnag\\nnagana\\nnaganas\\nnagged\\nnagger\\nnaggers\\nnagging\\nnags\\nnaiad\\nnaiades\\nnaiads\\nnaif\\nnaifs\\nnail\\nnailed\\nnailer\\nnailers\\nnailfold\\nnailfolds\\nnailhead\\nnailheads\\nnailing\\nnails\\nnailset\\nnailsets\\nnainsook\\nnainsooks\\nnaive\\nnaively\\nnaiveness\\nnaivenesses\\nnaiver\\nnaives\\nnaivest\\nnaivete\\nnaivetes\\nnaiveties\\nnaivety\\nnaked\\nnakeder\\nnakedest\\nnakedly\\nnakedness\\nnakednesses\\nnaled\\nnaleds\\nnaloxone\\nnaloxones\\nnamable\\nname\\nnameable\\nnamed\\nnameless\\nnamelessly\\nnamely\\nnamer\\nnamers\\nnames\\nnamesake\\nnamesakes\\nnaming\\nnana\\nnanas\\nnance\\nnances\\nnandin\\nnandins\\nnanism\\nnanisms\\nnankeen\\nnankeens\\nnankin\\nnankins\\nnannie\\nnannies\\nnanny\\nnanogram\\nnanograms\\nnanowatt\\nnanowatts\\nnaoi\\nnaos\\nnap\\nnapalm\\nnapalmed\\nnapalming\\nnapalms\\nnape\\nnaperies\\nnapery\\nnapes\\nnaphtha\\nnaphthas\\nnaphthol\\nnaphthols\\nnaphthyl\\nnapiform\\nnapkin\\nnapkins\\nnapless\\nnapoleon\\nnapoleons\\nnappe\\nnapped\\nnapper\\nnappers\\nnappes\\nnappie\\nnappier\\nnappies\\nnappiest\\nnapping\\nnappy\\nnaps\\nnarc\\nnarcein\\nnarceine\\nnarceines\\nnarceins\\nnarcism\\nnarcisms\\nnarcissi\\nnarcissism\\nnarcissisms\\nnarcissist\\nnarcissists\\nnarcissus\\nnarcissuses\\nnarcist\\nnarcists\\nnarco\\nnarcos\\nnarcose\\nnarcoses\\nnarcosis\\nnarcotic\\nnarcotics\\nnarcs\\nnard\\nnardine\\nnards\\nnares\\nnarghile\\nnarghiles\\nnargile\\nnargileh\\nnargilehs\\nnargiles\\nnarial\\nnaric\\nnarine\\nnaris\\nnark\\nnarked\\nnarking\\nnarks\\nnarrate\\nnarrated\\nnarrater\\nnarraters\\nnarrates\\nnarrating\\nnarration\\nnarrations\\nnarrative\\nnarratives\\nnarrator\\nnarrators\\nnarrow\\nnarrowed\\nnarrower\\nnarrowest\\nnarrowing\\nnarrowly\\nnarrowness\\nnarrownesses\\nnarrows\\nnarthex\\nnarthexes\\nnarwal\\nnarwals\\nnarwhal\\nnarwhale\\nnarwhales\\nnarwhals\\nnary\\nnasal\\nnasalise\\nnasalised\\nnasalises\\nnasalising\\nnasalities\\nnasality\\nnasalize\\nnasalized\\nnasalizes\\nnasalizing\\nnasally\\nnasals\\nnascence\\nnascences\\nnascencies\\nnascency\\nnascent\\nnasial\\nnasion\\nnasions\\nnastic\\nnastier\\nnastiest\\nnastily\\nnastiness\\nnastinesses\\nnasturtium\\nnasturtiums\\nnasty\\nnatal\\nnatalities\\nnatality\\nnatant\\nnatantly\\nnatation\\nnatations\\nnatatory\\nnates\\nnathless\\nnation\\nnational\\nnationalism\\nnationalisms\\nnationalist\\nnationalistic\\nnationalists\\nnationalities\\nnationality\\nnationalization\\nnationalizations\\nnationalize\\nnationalized\\nnationalizes\\nnationalizing\\nnationally\\nnationals\\nnationhood\\nnationhoods\\nnations\\nnative\\nnatively\\nnatives\\nnativism\\nnativisms\\nnativist\\nnativists\\nnativities\\nnativity\\nnatrium\\nnatriums\\nnatron\\nnatrons\\nnatter\\nnattered\\nnattering\\nnatters\\nnattier\\nnattiest\\nnattily\\nnattiness\\nnattinesses\\nnatty\\nnatural\\nnaturalism\\nnaturalisms\\nnaturalist\\nnaturalistic\\nnaturalists\\nnaturalization\\nnaturalizations\\nnaturalize\\nnaturalized\\nnaturalizes\\nnaturalizing\\nnaturally\\nnaturalness\\nnaturalnesses\\nnaturals\\nnature\\nnatured\\nnatures\\nnaught\\nnaughtier\\nnaughtiest\\nnaughtily\\nnaughtiness\\nnaughtinesses\\nnaughts\\nnaughty\\nnaumachies\\nnaumachy\\nnauplial\\nnauplii\\nnauplius\\nnausea\\nnauseant\\nnauseants\\nnauseas\\nnauseate\\nnauseated\\nnauseates\\nnauseating\\nnauseatingly\\nnauseous\\nnautch\\nnautches\\nnautical\\nnautically\\nnautili\\nnautilus\\nnautiluses\\nnavaid\\nnavaids\\nnaval\\nnavally\\nnavar\\nnavars\\nnave\\nnavel\\nnavels\\nnaves\\nnavette\\nnavettes\\nnavicert\\nnavicerts\\nnavies\\nnavigabilities\\nnavigability\\nnavigable\\nnavigably\\nnavigate\\nnavigated\\nnavigates\\nnavigating\\nnavigation\\nnavigations\\nnavigator\\nnavigators\\nnavvies\\nnavvy\\nnavy\\nnawab\\nnawabs\\nnay\\nnays\\nnazi\\nnazified\\nnazifies\\nnazify\\nnazifying\\nnazis\\nneap\\nneaps\\nnear\\nnearby\\nneared\\nnearer\\nnearest\\nnearing\\nnearlier\\nnearliest\\nnearly\\nnearness\\nnearnesses\\nnears\\nnearsighted\\nnearsightedly\\nnearsightedness\\nnearsightednesses\\nneat\\nneaten\\nneatened\\nneatening\\nneatens\\nneater\\nneatest\\nneath\\nneatherd\\nneatherds\\nneatly\\nneatness\\nneatnesses\\nneats\\nneb\\nnebbish\\nnebbishes\\nnebs\\nnebula\\nnebulae\\nnebular\\nnebulas\\nnebule\\nnebulise\\nnebulised\\nnebulises\\nnebulising\\nnebulize\\nnebulized\\nnebulizes\\nnebulizing\\nnebulose\\nnebulous\\nnebuly\\nnecessaries\\nnecessarily\\nnecessary\\nnecessitate\\nnecessitated\\nnecessitates\\nnecessitating\\nnecessities\\nnecessity\\nneck\\nneckband\\nneckbands\\nnecked\\nneckerchief\\nneckerchiefs\\nnecking\\nneckings\\nnecklace\\nnecklaces\\nneckless\\nnecklike\\nneckline\\nnecklines\\nnecks\\nnecktie\\nneckties\\nneckwear\\nneckwears\\nnecrologies\\nnecrology\\nnecromancer\\nnecromancers\\nnecromancies\\nnecromancy\\nnecropsied\\nnecropsies\\nnecropsy\\nnecropsying\\nnecrose\\nnecrosed\\nnecroses\\nnecrosing\\nnecrosis\\nnecrotic\\nnectar\\nnectaries\\nnectarine\\nnectarines\\nnectars\\nnectary\\nnee\\nneed\\nneeded\\nneeder\\nneeders\\nneedful\\nneedfuls\\nneedier\\nneediest\\nneedily\\nneeding\\nneedle\\nneedled\\nneedlepoint\\nneedlepoints\\nneedler\\nneedlers\\nneedles\\nneedless\\nneedlessly\\nneedlework\\nneedleworks\\nneedling\\nneedlings\\nneeds\\nneedy\\nneem\\nneems\\nneep\\nneeps\\nnefarious\\nnefariouses\\nnefariously\\nnegate\\nnegated\\nnegater\\nnegaters\\nnegates\\nnegating\\nnegation\\nnegations\\nnegative\\nnegatived\\nnegatively\\nnegatives\\nnegativing\\nnegaton\\nnegatons\\nnegator\\nnegators\\nnegatron\\nnegatrons\\nneglect\\nneglected\\nneglectful\\nneglecting\\nneglects\\nneglige\\nnegligee\\nnegligees\\nnegligence\\nnegligences\\nnegligent\\nnegligently\\nnegliges\\nnegligible\\nnegotiable\\nnegotiate\\nnegotiated\\nnegotiates\\nnegotiating\\nnegotiation\\nnegotiations\\nnegotiator\\nnegotiators\\nnegro\\nnegroes\\nnegroid\\nnegroids\\nnegus\\nneguses\\nneif\\nneifs\\nneigh\\nneighbor\\nneighbored\\nneighborhood\\nneighborhoods\\nneighboring\\nneighborliness\\nneighborlinesses\\nneighborly\\nneighbors\\nneighed\\nneighing\\nneighs\\nneist\\nneither\\nnekton\\nnektonic\\nnektons\\nnelson\\nnelsons\\nnelumbo\\nnelumbos\\nnema\\nnemas\\nnematic\\nnematode\\nnematodes\\nnemeses\\nnemesis\\nnene\\nneolith\\nneoliths\\nneologic\\nneologies\\nneologism\\nneologisms\\nneology\\nneomorph\\nneomorphs\\nneomycin\\nneomycins\\nneon\\nneonatal\\nneonate\\nneonates\\nneoned\\nneons\\nneophyte\\nneophytes\\nneoplasm\\nneoplasms\\nneoprene\\nneoprenes\\nneotenic\\nneotenies\\nneoteny\\nneoteric\\nneoterics\\nneotype\\nneotypes\\nnepenthe\\nnepenthes\\nnephew\\nnephews\\nnephric\\nnephrism\\nnephrisms\\nnephrite\\nnephrites\\nnephron\\nnephrons\\nnepotic\\nnepotism\\nnepotisms\\nnepotist\\nnepotists\\nnereid\\nnereides\\nnereids\\nnereis\\nneritic\\nnerol\\nneroli\\nnerolis\\nnerols\\nnerts\\nnertz\\nnervate\\nnerve\\nnerved\\nnerveless\\nnerves\\nnervier\\nnerviest\\nnervily\\nnervine\\nnervines\\nnerving\\nnervings\\nnervous\\nnervously\\nnervousness\\nnervousnesses\\nnervule\\nnervules\\nnervure\\nnervures\\nnervy\\nnescient\\nnescients\\nness\\nnesses\\nnest\\nnested\\nnester\\nnesters\\nnesting\\nnestle\\nnestled\\nnestler\\nnestlers\\nnestles\\nnestlike\\nnestling\\nnestlings\\nnestor\\nnestors\\nnests\\nnet\\nnether\\nnetless\\nnetlike\\nnetop\\nnetops\\nnets\\nnetsuke\\nnetsukes\\nnett\\nnettable\\nnetted\\nnetter\\nnetters\\nnettier\\nnettiest\\nnetting\\nnettings\\nnettle\\nnettled\\nnettler\\nnettlers\\nnettles\\nnettlesome\\nnettlier\\nnettliest\\nnettling\\nnettly\\nnetts\\nnetty\\nnetwork\\nnetworked\\nnetworking\\nnetworks\\nneum\\nneumatic\\nneume\\nneumes\\nneumic\\nneums\\nneural\\nneuralgia\\nneuralgias\\nneuralgic\\nneurally\\nneuraxon\\nneuraxons\\nneuritic\\nneuritics\\nneuritides\\nneuritis\\nneuritises\\nneuroid\\nneurologic\\nneurological\\nneurologically\\nneurologies\\nneurologist\\nneurologists\\nneurology\\nneuroma\\nneuromas\\nneuromata\\nneuron\\nneuronal\\nneurone\\nneurones\\nneuronic\\nneurons\\nneuropathies\\nneuropathy\\nneuropsych\\nneurosal\\nneuroses\\nneurosis\\nneurosurgeon\\nneurosurgeons\\nneurotic\\nneurotically\\nneurotics\\nneurotoxicities\\nneurotoxicity\\nneuston\\nneustons\\nneuter\\nneutered\\nneutering\\nneuters\\nneutral\\nneutralities\\nneutrality\\nneutralization\\nneutralizations\\nneutralize\\nneutralized\\nneutralizes\\nneutralizing\\nneutrals\\nneutrino\\nneutrinos\\nneutron\\nneutrons\\nneve\\nnever\\nnevermore\\nnevertheless\\nneves\\nnevi\\nnevoid\\nnevus\\nnew\\nnewborn\\nnewborns\\nnewcomer\\nnewcomers\\nnewel\\nnewels\\nnewer\\nnewest\\nnewfound\\nnewish\\nnewly\\nnewlywed\\nnewlyweds\\nnewmown\\nnewness\\nnewnesses\\nnews\\nnewsboy\\nnewsboys\\nnewscast\\nnewscaster\\nnewscasters\\nnewscasts\\nnewsier\\nnewsies\\nnewsiest\\nnewsless\\nnewsletter\\nnewsmagazine\\nnewsmagazines\\nnewsman\\nnewsmen\\nnewspaper\\nnewspaperman\\nnewspapermen\\nnewspapers\\nnewspeak\\nnewspeaks\\nnewsprint\\nnewsprints\\nnewsreel\\nnewsreels\\nnewsroom\\nnewsrooms\\nnewsstand\\nnewsstands\\nnewsworthy\\nnewsy\\nnewt\\nnewton\\nnewtons\\nnewts\\nnext\\nnextdoor\\nnexus\\nnexuses\\nngwee\\nniacin\\nniacins\\nnib\\nnibbed\\nnibbing\\nnibble\\nnibbled\\nnibbler\\nnibblers\\nnibbles\\nnibbling\\nniblick\\nniblicks\\nniblike\\nnibs\\nnice\\nnicely\\nniceness\\nnicenesses\\nnicer\\nnicest\\nniceties\\nnicety\\nniche\\nniched\\nniches\\nniching\\nnick\\nnicked\\nnickel\\nnickeled\\nnickelic\\nnickeling\\nnickelled\\nnickelling\\nnickels\\nnicker\\nnickered\\nnickering\\nnickers\\nnicking\\nnickle\\nnickles\\nnicknack\\nnicknacks\\nnickname\\nnicknamed\\nnicknames\\nnicknaming\\nnicks\\nnicol\\nnicols\\nnicotin\\nnicotine\\nnicotines\\nnicotins\\nnictate\\nnictated\\nnictates\\nnictating\\nnidal\\nnide\\nnided\\nnidering\\nniderings\\nnides\\nnidget\\nnidgets\\nnidi\\nnidified\\nnidifies\\nnidify\\nnidifying\\nniding\\nnidus\\nniduses\\nniece\\nnieces\\nnielli\\nniellist\\nniellists\\nniello\\nnielloed\\nnielloing\\nniellos\\nnieve\\nnieves\\nniffer\\nniffered\\nniffering\\nniffers\\nniftier\\nniftiest\\nnifty\\nniggard\\nniggarded\\nniggarding\\nniggardliness\\nniggardlinesses\\nniggardly\\nniggards\\nniggle\\nniggled\\nniggler\\nnigglers\\nniggles\\nniggling\\nnigglings\\nnigh\\nnighed\\nnigher\\nnighest\\nnighing\\nnighness\\nnighnesses\\nnighs\\nnight\\nnightcap\\nnightcaps\\nnightclothes\\nnightclub\\nnightclubs\\nnightfall\\nnightfalls\\nnightgown\\nnightgowns\\nnightie\\nnighties\\nnightingale\\nnightingales\\nnightjar\\nnightjars\\nnightly\\nnightmare\\nnightmares\\nnightmarish\\nnights\\nnightshade\\nnightshades\\nnighttime\\nnighttimes\\nnighty\\nnigrified\\nnigrifies\\nnigrify\\nnigrifying\\nnigrosin\\nnigrosins\\nnihil\\nnihilism\\nnihilisms\\nnihilist\\nnihilists\\nnihilities\\nnihility\\nnihils\\nnil\\nnilgai\\nnilgais\\nnilgau\\nnilgaus\\nnilghai\\nnilghais\\nnilghau\\nnilghaus\\nnill\\nnilled\\nnilling\\nnills\\nnils\\nnim\\nnimbi\\nnimble\\nnimbleness\\nnimblenesses\\nnimbler\\nnimblest\\nnimbly\\nnimbus\\nnimbused\\nnimbuses\\nnimieties\\nnimiety\\nnimious\\nnimmed\\nnimming\\nnimrod\\nnimrods\\nnims\\nnincompoop\\nnincompoops\\nnine\\nninebark\\nninebarks\\nninefold\\nninepin\\nninepins\\nnines\\nnineteen\\nnineteens\\nnineteenth\\nnineteenths\\nnineties\\nninetieth\\nninetieths\\nninety\\nninnies\\nninny\\nninnyish\\nninon\\nninons\\nninth\\nninthly\\nninths\\nniobic\\nniobium\\nniobiums\\nniobous\\nnip\\nnipa\\nnipas\\nnipped\\nnipper\\nnippers\\nnippier\\nnippiest\\nnippily\\nnipping\\nnipple\\nnipples\\nnippy\\nnips\\nnirvana\\nnirvanas\\nnirvanic\\nnisei\\nniseis\\nnisi\\nnisus\\nnit\\nnitchie\\nnitchies\\nniter\\nniters\\nnitid\\nniton\\nnitons\\nnitpick\\nnitpicked\\nnitpicking\\nnitpicks\\nnitrate\\nnitrated\\nnitrates\\nnitrating\\nnitrator\\nnitrators\\nnitre\\nnitres\\nnitric\\nnitrid\\nnitride\\nnitrides\\nnitrids\\nnitrified\\nnitrifies\\nnitrify\\nnitrifying\\nnitril\\nnitrile\\nnitriles\\nnitrils\\nnitrite\\nnitrites\\nnitro\\nnitrogen\\nnitrogenous\\nnitrogens\\nnitroglycerin\\nnitroglycerine\\nnitroglycerines\\nnitroglycerins\\nnitrolic\\nnitros\\nnitroso\\nnitrosurea\\nnitrosyl\\nnitrosyls\\nnitrous\\nnits\\nnittier\\nnittiest\\nnitty\\nnitwit\\nnitwits\\nnival\\nniveous\\nnix\\nnixed\\nnixes\\nnixie\\nnixies\\nnixing\\nnixy\\nnizam\\nnizamate\\nnizamates\\nnizams\\nno\\nnob\\nnobbier\\nnobbiest\\nnobbily\\nnobble\\nnobbled\\nnobbler\\nnobblers\\nnobbles\\nnobbling\\nnobby\\nnobelium\\nnobeliums\\nnobilities\\nnobility\\nnoble\\nnobleman\\nnoblemen\\nnobleness\\nnoblenesses\\nnobler\\nnobles\\nnoblesse\\nnoblesses\\nnoblest\\nnobly\\nnobodies\\nnobody\\nnobs\\nnocent\\nnock\\nnocked\\nnocking\\nnocks\\nnoctuid\\nnoctuids\\nnoctule\\nnoctules\\nnoctuoid\\nnocturn\\nnocturnal\\nnocturne\\nnocturnes\\nnocturns\\nnocuous\\nnod\\nnodal\\nnodalities\\nnodality\\nnodally\\nnodded\\nnodder\\nnodders\\nnoddies\\nnodding\\nnoddle\\nnoddled\\nnoddles\\nnoddling\\nnoddy\\nnode\\nnodes\\nnodi\\nnodical\\nnodose\\nnodosities\\nnodosity\\nnodous\\nnods\\nnodular\\nnodule\\nnodules\\nnodulose\\nnodulous\\nnodus\\nnoel\\nnoels\\nnoes\\nnoesis\\nnoesises\\nnoetic\\nnog\\nnogg\\nnoggin\\nnogging\\nnoggings\\nnoggins\\nnoggs\\nnogs\\nnoh\\nnohes\\nnohow\\nnoil\\nnoils\\nnoily\\nnoir\\nnoise\\nnoised\\nnoisemaker\\nnoisemakers\\nnoises\\nnoisier\\nnoisiest\\nnoisily\\nnoisiness\\nnoisinesses\\nnoising\\nnoisome\\nnoisy\\nnolo\\nnolos\\nnom\\nnoma\\nnomad\\nnomadic\\nnomadism\\nnomadisms\\nnomads\\nnomarch\\nnomarchies\\nnomarchs\\nnomarchy\\nnomas\\nnombles\\nnombril\\nnombrils\\nnome\\nnomen\\nnomenclature\\nnomenclatures\\nnomes\\nnomina\\nnominal\\nnominally\\nnominals\\nnominate\\nnominated\\nnominates\\nnominating\\nnomination\\nnominations\\nnominative\\nnominatives\\nnominee\\nnominees\\nnomism\\nnomisms\\nnomistic\\nnomogram\\nnomograms\\nnomoi\\nnomologies\\nnomology\\nnomos\\nnoms\\nnona\\nnonabrasive\\nnonabsorbent\\nnonacademic\\nnonaccredited\\nnonacid\\nnonacids\\nnonaddictive\\nnonadherence\\nnonadherences\\nnonadhesive\\nnonadjacent\\nnonadjustable\\nnonadult\\nnonadults\\nnonaffiliated\\nnonage\\nnonages\\nnonaggression\\nnonaggressions\\nnonagon\\nnonagons\\nnonalcoholic\\nnonaligned\\nnonappearance\\nnonappearances\\nnonas\\nnonautomatic\\nnonbank\\nnonbasic\\nnonbeing\\nnonbeings\\nnonbeliever\\nnonbelievers\\nnonbook\\nnonbooks\\nnonbreakable\\nnoncancerous\\nnoncandidate\\nnoncandidates\\nnoncarbonated\\nnoncash\\nnonce\\nnonces\\nnonchalance\\nnonchalances\\nnonchalant\\nnonchalantly\\nnonchargeable\\nnonchurchgoer\\nnonchurchgoers\\nnoncitizen\\nnoncitizens\\nnonclassical\\nnonclassified\\nnoncom\\nnoncombat\\nnoncombatant\\nnoncombatants\\nnoncombustible\\nnoncommercial\\nnoncommittal\\nnoncommunicable\\nnoncompliance\\nnoncompliances\\nnoncoms\\nnonconclusive\\nnonconductor\\nnonconductors\\nnonconflicting\\nnonconforming\\nnonconformist\\nnonconformists\\nnonconsecutive\\nnonconstructive\\nnonconsumable\\nnoncontagious\\nnoncontributing\\nnoncontrollable\\nnoncontroversial\\nnoncorrosive\\nnoncriminal\\nnoncritical\\nnoncumulative\\nnoncurrent\\nnondairy\\nnondeductible\\nnondefense\\nnondeferrable\\nnondegradable\\nnondeliveries\\nnondelivery\\nnondemocratic\\nnondenominational\\nnondescript\\nnondestructive\\nnondiscrimination\\nnondiscriminations\\nnondiscriminatory\\nnone\\nnoneducational\\nnonego\\nnonegos\\nnonelastic\\nnonelect\\nnonelected\\nnonelective\\nnonelectric\\nnonelectronic\\nnonemotional\\nnonempty\\nnonenforceable\\nnonenforcement\\nnonenforcements\\nnonentities\\nnonentity\\nnonentries\\nnonentry\\nnonequal\\nnonequals\\nnones\\nnonessential\\nnonesuch\\nnonesuches\\nnonetheless\\nnonevent\\nnonevents\\nnonexchangeable\\nnonexistence\\nnonexistences\\nnonexistent\\nnonexplosive\\nnonfarm\\nnonfat\\nnonfatal\\nnonfattening\\nnonfictional\\nnonflammable\\nnonflowering\\nnonfluid\\nnonfluids\\nnonfocal\\nnonfood\\nnonfunctional\\nnongame\\nnongovernmental\\nnongraded\\nnongreen\\nnonguilt\\nnonguilts\\nnonhardy\\nnonhazardous\\nnonhereditary\\nnonhero\\nnonheroes\\nnonhuman\\nnonideal\\nnonindustrial\\nnonindustrialized\\nnoninfectious\\nnoninflationary\\nnonintegrated\\nnonintellectual\\nnoninterference\\nnonintoxicating\\nnoninvolvement\\nnoninvolvements\\nnonionic\\nnonjuror\\nnonjurors\\nnonlegal\\nnonlethal\\nnonlife\\nnonliterary\\nnonlives\\nnonliving\\nnonlocal\\nnonlocals\\nnonmagnetic\\nnonmalignant\\nnonman\\nnonmedical\\nnonmember\\nnonmembers\\nnonmen\\nnonmetal\\nnonmetallic\\nnonmetals\\nnonmilitary\\nnonmodal\\nnonmoney\\nnonmoral\\nnonmusical\\nnonnarcotic\\nnonnative\\nnonnaval\\nnonnegotiable\\nnonobese\\nnonobjective\\nnonobservance\\nnonobservances\\nnonorthodox\\nnonowner\\nnonowners\\nnonpagan\\nnonpagans\\nnonpapal\\nnonpar\\nnonparallel\\nnonparametric\\nnonpareil\\nnonpareils\\nnonparticipant\\nnonparticipants\\nnonparticipating\\nnonpartisan\\nnonpartisans\\nnonparty\\nnonpaying\\nnonpayment\\nnonpayments\\nnonperformance\\nnonperformances\\nnonperishable\\nnonpermanent\\nnonperson\\nnonpersons\\nnonphysical\\nnonplus\\nnonplused\\nnonpluses\\nnonplusing\\nnonplussed\\nnonplusses\\nnonplussing\\nnonpoisonous\\nnonpolar\\nnonpolitical\\nnonpolluting\\nnonporous\\nnonpregnant\\nnonproductive\\nnonprofessional\\nnonprofit\\nnonproliferation\\nnonproliferations\\nnonpros\\nnonprossed\\nnonprosses\\nnonprossing\\nnonquota\\nnonracial\\nnonradioactive\\nnonrated\\nnonrealistic\\nnonrecoverable\\nnonrecurring\\nnonrefillable\\nnonrefundable\\nnonregistered\\nnonreligious\\nnonrenewable\\nnonrepresentative\\nnonresident\\nnonresidents\\nnonresponsive\\nnonrestricted\\nnonreusable\\nnonreversible\\nnonrigid\\nnonrival\\nnonrivals\\nnonroyal\\nnonrural\\nnonscheduled\\nnonscientific\\nnonscientist\\nnonscientists\\nnonsegregated\\nnonsense\\nnonsenses\\nnonsensical\\nnonsensically\\nnonsexist\\nnonsexual\\nnonsignificant\\nnonsked\\nnonskeds\\nnonskid\\nnonskier\\nnonskiers\\nnonslip\\nnonsmoker\\nnonsmokers\\nnonsmoking\\nnonsolar\\nnonsolid\\nnonsolids\\nnonspeaking\\nnonspecialist\\nnonspecialists\\nnonspecific\\nnonstaining\\nnonstandard\\nnonstick\\nnonstop\\nnonstrategic\\nnonstriker\\nnonstrikers\\nnonstriking\\nnonstudent\\nnonstudents\\nnonsubscriber\\nnonsuch\\nnonsuches\\nnonsugar\\nnonsugars\\nnonsuit\\nnonsuited\\nnonsuiting\\nnonsuits\\nnonsupport\\nnonsupports\\nnonsurgical\\nnonswimmer\\nnontax\\nnontaxable\\nnontaxes\\nnonteaching\\nnontechnical\\nnontidal\\nnontitle\\nnontoxic\\nnontraditional\\nnontransferable\\nnontropical\\nnontrump\\nnontruth\\nnontruths\\nnontypical\\nnonunion\\nnonunions\\nnonuple\\nnonuples\\nnonurban\\nnonuse\\nnonuser\\nnonusers\\nnonuses\\nnonusing\\nnonvenomous\\nnonverbal\\nnonviolence\\nnonviolences\\nnonviolent\\nnonviral\\nnonvocal\\nnonvoter\\nnonvoters\\nnonwhite\\nnonwhites\\nnonwoody\\nnonworker\\nnonworkers\\nnonwoven\\nnonzero\\nnoo\\nnoodle\\nnoodled\\nnoodles\\nnoodling\\nnook\\nnookies\\nnooklike\\nnooks\\nnooky\\nnoon\\nnoonday\\nnoondays\\nnooning\\nnoonings\\nnoons\\nnoontide\\nnoontides\\nnoontime\\nnoontimes\\nnoose\\nnoosed\\nnooser\\nnoosers\\nnooses\\nnoosing\\nnopal\\nnopals\\nnope\\nnor\\nnoria\\nnorias\\nnorite\\nnorites\\nnoritic\\nnorland\\nnorlands\\nnorm\\nnormal\\nnormalcies\\nnormalcy\\nnormalities\\nnormality\\nnormalization\\nnormalizations\\nnormalize\\nnormalized\\nnormalizes\\nnormalizing\\nnormally\\nnormals\\nnormed\\nnormless\\nnorms\\nnorth\\nnortheast\\nnortheasterly\\nnortheastern\\nnortheasts\\nnorther\\nnortherly\\nnorthern\\nnorthernmost\\nnortherns\\nnorthers\\nnorthing\\nnorthings\\nnorths\\nnorthward\\nnorthwards\\nnorthwest\\nnorthwesterly\\nnorthwestern\\nnorthwests\\nnos\\nnose\\nnosebag\\nnosebags\\nnoseband\\nnosebands\\nnosebleed\\nnosebleeds\\nnosed\\nnosegay\\nnosegays\\nnoseless\\nnoselike\\nnoses\\nnosey\\nnosh\\nnoshed\\nnosher\\nnoshers\\nnoshes\\nnoshing\\nnosier\\nnosiest\\nnosily\\nnosiness\\nnosinesses\\nnosing\\nnosings\\nnosologies\\nnosology\\nnostalgia\\nnostalgias\\nnostalgic\\nnostoc\\nnostocs\\nnostril\\nnostrils\\nnostrum\\nnostrums\\nnosy\\nnot\\nnota\\nnotabilities\\nnotability\\nnotable\\nnotables\\nnotably\\nnotal\\nnotarial\\nnotaries\\nnotarize\\nnotarized\\nnotarizes\\nnotarizing\\nnotary\\nnotate\\nnotated\\nnotates\\nnotating\\nnotation\\nnotations\\nnotch\\nnotched\\nnotcher\\nnotchers\\nnotches\\nnotching\\nnote\\nnotebook\\nnotebooks\\nnotecase\\nnotecases\\nnoted\\nnotedly\\nnoteless\\nnoter\\nnoters\\nnotes\\nnoteworthy\\nnothing\\nnothingness\\nnothingnesses\\nnothings\\nnotice\\nnoticeable\\nnoticeably\\nnoticed\\nnotices\\nnoticing\\nnotification\\nnotifications\\nnotified\\nnotifier\\nnotifiers\\nnotifies\\nnotify\\nnotifying\\nnoting\\nnotion\\nnotional\\nnotions\\nnotorieties\\nnotoriety\\nnotorious\\nnotoriously\\nnotornis\\nnotturni\\nnotturno\\nnotum\\nnotwithstanding\\nnougat\\nnougats\\nnought\\nnoughts\\nnoumena\\nnoumenal\\nnoumenon\\nnoun\\nnounal\\nnounally\\nnounless\\nnouns\\nnourish\\nnourished\\nnourishes\\nnourishing\\nnourishment\\nnourishments\\nnous\\nnouses\\nnova\\nnovae\\nnovalike\\nnovas\\nnovation\\nnovations\\nnovel\\nnovelise\\nnovelised\\nnovelises\\nnovelising\\nnovelist\\nnovelists\\nnovelize\\nnovelized\\nnovelizes\\nnovelizing\\nnovella\\nnovellas\\nnovelle\\nnovelly\\nnovels\\nnovelties\\nnovelty\\nnovena\\nnovenae\\nnovenas\\nnovercal\\nnovice\\nnovices\\nnow\\nnowadays\\nnoway\\nnoways\\nnowhere\\nnowheres\\nnowise\\nnows\\nnowt\\nnowts\\nnoxious\\nnoyade\\nnoyades\\nnozzle\\nnozzles\\nnth\\nnu\\nnuance\\nnuanced\\nnuances\\nnub\\nnubbier\\nnubbiest\\nnubbin\\nnubbins\\nnubble\\nnubbles\\nnubblier\\nnubbliest\\nnubbly\\nnubby\\nnubia\\nnubias\\nnubile\\nnubilities\\nnubility\\nnubilose\\nnubilous\\nnubs\\nnucellar\\nnucelli\\nnucellus\\nnucha\\nnuchae\\nnuchal\\nnuchals\\nnucleal\\nnuclear\\nnuclease\\nnucleases\\nnucleate\\nnucleated\\nnucleates\\nnucleating\\nnuclei\\nnuclein\\nnucleins\\nnucleole\\nnucleoles\\nnucleoli\\nnucleon\\nnucleons\\nnucleus\\nnucleuses\\nnuclide\\nnuclides\\nnuclidic\\nnude\\nnudely\\nnudeness\\nnudenesses\\nnuder\\nnudes\\nnudest\\nnudge\\nnudged\\nnudger\\nnudgers\\nnudges\\nnudging\\nnudicaul\\nnudie\\nnudies\\nnudism\\nnudisms\\nnudist\\nnudists\\nnudities\\nnudity\\nnudnick\\nnudnicks\\nnudnik\\nnudniks\\nnugatory\\nnugget\\nnuggets\\nnuggety\\nnuisance\\nnuisances\\nnuke\\nnukes\\nnull\\nnullah\\nnullahs\\nnulled\\nnullification\\nnullifications\\nnullified\\nnullifies\\nnullify\\nnullifying\\nnulling\\nnullities\\nnullity\\nnulls\\nnumb\\nnumbed\\nnumber\\nnumbered\\nnumberer\\nnumberers\\nnumbering\\nnumberless\\nnumbers\\nnumbest\\nnumbfish\\nnumbfishes\\nnumbing\\nnumbles\\nnumbly\\nnumbness\\nnumbnesses\\nnumbs\\nnumen\\nnumeral\\nnumerals\\nnumerary\\nnumerate\\nnumerated\\nnumerates\\nnumerating\\nnumerator\\nnumerators\\nnumeric\\nnumerical\\nnumerically\\nnumerics\\nnumerologies\\nnumerologist\\nnumerologists\\nnumerology\\nnumerous\\nnumina\\nnuminous\\nnuminouses\\nnumismatic\\nnumismatics\\nnumismatist\\nnumismatists\\nnummary\\nnummular\\nnumskull\\nnumskulls\\nnun\\nnuncio\\nnuncios\\nnuncle\\nnuncles\\nnunlike\\nnunneries\\nnunnery\\nnunnish\\nnuns\\nnuptial\\nnuptials\\nnurl\\nnurled\\nnurling\\nnurls\\nnurse\\nnursed\\nnurseries\\nnursery\\nnurses\\nnursing\\nnursings\\nnursling\\nnurslings\\nnurture\\nnurtured\\nnurturer\\nnurturers\\nnurtures\\nnurturing\\nnus\\nnut\\nnutant\\nnutate\\nnutated\\nnutates\\nnutating\\nnutation\\nnutations\\nnutbrown\\nnutcracker\\nnutcrackers\\nnutgall\\nnutgalls\\nnutgrass\\nnutgrasses\\nnuthatch\\nnuthatches\\nnuthouse\\nnuthouses\\nnutlet\\nnutlets\\nnutlike\\nnutmeat\\nnutmeats\\nnutmeg\\nnutmegs\\nnutpick\\nnutpicks\\nnutria\\nnutrias\\nnutrient\\nnutrients\\nnutriment\\nnutriments\\nnutrition\\nnutritional\\nnutritions\\nnutritious\\nnutritive\\nnuts\\nnutsedge\\nnutsedges\\nnutshell\\nnutshells\\nnutted\\nnutter\\nnutters\\nnuttier\\nnuttiest\\nnuttily\\nnutting\\nnutty\\nnutwood\\nnutwoods\\nnuzzle\\nnuzzled\\nnuzzles\\nnuzzling\\nnyala\\nnyalas\\nnylghai\\nnylghais\\nnylghau\\nnylghaus\\nnylon\\nnylons\\nnymph\\nnympha\\nnymphae\\nnymphal\\nnymphean\\nnymphet\\nnymphets\\nnympho\\nnymphomania\\nnymphomaniac\\nnymphomanias\\nnymphos\\nnymphs\\noaf\\noafish\\noafishly\\noafs\\noak\\noaken\\noaklike\\noakmoss\\noakmosses\\noaks\\noakum\\noakums\\noar\\noared\\noarfish\\noarfishes\\noaring\\noarless\\noarlike\\noarlock\\noarlocks\\noars\\noarsman\\noarsmen\\noases\\noasis\\noast\\noasts\\noat\\noatcake\\noatcakes\\noaten\\noater\\noaters\\noath\\noaths\\noatlike\\noatmeal\\noatmeals\\noats\\noaves\\nobduracies\\nobduracy\\nobdurate\\nobe\\nobeah\\nobeahism\\nobeahisms\\nobeahs\\nobedience\\nobediences\\nobedient\\nobediently\\nobeisance\\nobeisant\\nobeli\\nobelia\\nobelias\\nobelise\\nobelised\\nobelises\\nobelising\\nobelisk\\nobelisks\\nobelism\\nobelisms\\nobelize\\nobelized\\nobelizes\\nobelizing\\nobelus\\nobes\\nobese\\nobesely\\nobesities\\nobesity\\nobey\\nobeyable\\nobeyed\\nobeyer\\nobeyers\\nobeying\\nobeys\\nobfuscate\\nobfuscated\\nobfuscates\\nobfuscating\\nobfuscation\\nobfuscations\\nobi\\nobia\\nobias\\nobiism\\nobiisms\\nobis\\nobit\\nobits\\nobituaries\\nobituary\\nobject\\nobjected\\nobjecting\\nobjection\\nobjectionable\\nobjections\\nobjective\\nobjectively\\nobjectiveness\\nobjectivenesses\\nobjectives\\nobjectivities\\nobjectivity\\nobjector\\nobjectors\\nobjects\\noblast\\noblasti\\noblasts\\noblate\\noblately\\noblates\\noblation\\noblations\\noblatory\\nobligate\\nobligated\\nobligates\\nobligati\\nobligating\\nobligation\\nobligations\\nobligato\\nobligatory\\nobligatos\\noblige\\nobliged\\nobligee\\nobligees\\nobliger\\nobligers\\nobliges\\nobliging\\nobligingly\\nobligor\\nobligors\\noblique\\nobliqued\\nobliquely\\nobliqueness\\nobliquenesses\\nobliques\\nobliquing\\nobliquities\\nobliquity\\nobliterate\\nobliterated\\nobliterates\\nobliterating\\nobliteration\\nobliterations\\noblivion\\noblivions\\noblivious\\nobliviously\\nobliviousness\\nobliviousnesses\\noblong\\noblongly\\noblongs\\nobloquies\\nobloquy\\nobnoxious\\nobnoxiously\\nobnoxiousness\\nobnoxiousnesses\\noboe\\noboes\\noboist\\noboists\\nobol\\nobole\\noboles\\noboli\\nobols\\nobolus\\nobovate\\nobovoid\\nobscene\\nobscenely\\nobscener\\nobscenest\\nobscenities\\nobscenity\\nobscure\\nobscured\\nobscurely\\nobscurer\\nobscures\\nobscurest\\nobscuring\\nobscurities\\nobscurity\\nobsequies\\nobsequious\\nobsequiously\\nobsequiousness\\nobsequiousnesses\\nobsequy\\nobservance\\nobservances\\nobservant\\nobservation\\nobservations\\nobservatories\\nobservatory\\nobserve\\nobserved\\nobserver\\nobservers\\nobserves\\nobserving\\nobsess\\nobsessed\\nobsesses\\nobsessing\\nobsession\\nobsessions\\nobsessive\\nobsessively\\nobsessor\\nobsessors\\nobsidian\\nobsidians\\nobsolescence\\nobsolescences\\nobsolescent\\nobsolete\\nobsoleted\\nobsoletes\\nobsoleting\\nobstacle\\nobstacles\\nobstetrical\\nobstetrician\\nobstetricians\\nobstetrics\\nobstinacies\\nobstinacy\\nobstinate\\nobstinately\\nobstreperous\\nobstreperousness\\nobstreperousnesses\\nobstruct\\nobstructed\\nobstructing\\nobstruction\\nobstructions\\nobstructive\\nobstructor\\nobstructors\\nobstructs\\nobtain\\nobtainable\\nobtained\\nobtainer\\nobtainers\\nobtaining\\nobtains\\nobtect\\nobtected\\nobtest\\nobtested\\nobtesting\\nobtests\\nobtrude\\nobtruded\\nobtruder\\nobtruders\\nobtrudes\\nobtruding\\nobtrusion\\nobtrusions\\nobtrusive\\nobtrusively\\nobtrusiveness\\nobtrusivenesses\\nobtund\\nobtunded\\nobtunding\\nobtunds\\nobturate\\nobturated\\nobturates\\nobturating\\nobtuse\\nobtusely\\nobtuser\\nobtusest\\nobverse\\nobverses\\nobvert\\nobverted\\nobverting\\nobverts\\nobviable\\nobviate\\nobviated\\nobviates\\nobviating\\nobviation\\nobviations\\nobviator\\nobviators\\nobvious\\nobviously\\nobviousness\\nobviousnesses\\nobvolute\\noca\\nocarina\\nocarinas\\nocas\\noccasion\\noccasional\\noccasionally\\noccasioned\\noccasioning\\noccasions\\noccident\\noccidental\\noccidents\\noccipita\\nocciput\\nocciputs\\nocclude\\noccluded\\noccludes\\noccluding\\nocclusal\\noccult\\nocculted\\nocculter\\nocculters\\nocculting\\noccultly\\noccults\\noccupancies\\noccupancy\\noccupant\\noccupants\\noccupation\\noccupational\\noccupationally\\noccupations\\noccupied\\noccupier\\noccupiers\\noccupies\\noccupy\\noccupying\\noccur\\noccurence\\noccurences\\noccurred\\noccurrence\\noccurrences\\noccurring\\noccurs\\nocean\\noceanfront\\noceanfronts\\noceangoing\\noceanic\\noceanographer\\noceanographers\\noceanographic\\noceanographies\\noceanography\\noceans\\nocellar\\nocellate\\nocelli\\nocellus\\noceloid\\nocelot\\nocelots\\nocher\\nochered\\nochering\\nocherous\\nochers\\nochery\\nochone\\nochre\\nochrea\\nochreae\\nochred\\nochreous\\nochres\\nochring\\nochroid\\nochrous\\nochry\\nocotillo\\nocotillos\\nocrea\\nocreae\\nocreate\\noctad\\noctadic\\noctads\\noctagon\\noctagonal\\noctagons\\noctal\\noctane\\noctanes\\noctangle\\noctangles\\noctant\\noctantal\\noctants\\noctarchies\\noctarchy\\noctaval\\noctave\\noctaves\\noctavo\\noctavos\\noctet\\noctets\\noctette\\noctettes\\noctonaries\\noctonary\\noctopi\\noctopod\\noctopodes\\noctopods\\noctopus\\noctopuses\\noctoroon\\noctoroons\\noctroi\\noctrois\\noctuple\\noctupled\\noctuples\\noctuplet\\noctuplets\\noctuplex\\noctupling\\noctuply\\noctyl\\noctyls\\nocular\\nocularly\\noculars\\noculist\\noculists\\nod\\nodalisk\\nodalisks\\nodd\\noddball\\noddballs\\nodder\\noddest\\noddish\\noddities\\noddity\\noddly\\noddment\\noddments\\noddness\\noddnesses\\nodds\\node\\nodea\\nodeon\\nodeons\\nodes\\nodeum\\nodic\\nodious\\nodiously\\nodiousness\\nodiousnesses\\nodium\\nodiums\\nodograph\\nodographs\\nodometer\\nodometers\\nodometries\\nodometry\\nodonate\\nodonates\\nodontoid\\nodontoids\\nodor\\nodorant\\nodorants\\nodored\\nodorful\\nodorize\\nodorized\\nodorizes\\nodorizing\\nodorless\\nodorous\\nodors\\nodour\\nodourful\\nodours\\nods\\nodyl\\nodyle\\nodyles\\nodyls\\nodyssey\\nodysseys\\noe\\noecologies\\noecology\\noedema\\noedemas\\noedemata\\noedipal\\noedipean\\noeillade\\noeillades\\noenologies\\noenology\\noenomel\\noenomels\\noersted\\noersteds\\noes\\noestrin\\noestrins\\noestriol\\noestriols\\noestrone\\noestrones\\noestrous\\noestrum\\noestrums\\noestrus\\noestruses\\noeuvre\\noeuvres\\nof\\nofay\\nofays\\noff\\noffal\\noffals\\noffbeat\\noffbeats\\noffcast\\noffcasts\\noffed\\noffence\\noffences\\noffend\\noffended\\noffender\\noffenders\\noffending\\noffends\\noffense\\noffenses\\noffensive\\noffensively\\noffensiveness\\noffensivenesses\\noffensives\\noffer\\noffered\\nofferer\\nofferers\\noffering\\nofferings\\nofferor\\nofferors\\noffers\\noffertories\\noffertory\\noffhand\\noffice\\nofficeholder\\nofficeholders\\nofficer\\nofficered\\nofficering\\nofficers\\noffices\\nofficial\\nofficialdom\\nofficialdoms\\nofficially\\nofficials\\nofficiate\\nofficiated\\nofficiates\\nofficiating\\nofficious\\nofficiously\\nofficiousness\\nofficiousnesses\\noffing\\noffings\\noffish\\noffishly\\noffload\\noffloaded\\noffloading\\noffloads\\noffprint\\noffprinted\\noffprinting\\noffprints\\noffs\\noffset\\noffsets\\noffsetting\\noffshoot\\noffshoots\\noffshore\\noffside\\noffspring\\noffstage\\noft\\noften\\noftener\\noftenest\\noftentimes\\nofter\\noftest\\nofttimes\\nogam\\nogams\\nogdoad\\nogdoads\\nogee\\nogees\\nogham\\noghamic\\noghamist\\noghamists\\noghams\\nogival\\nogive\\nogives\\nogle\\nogled\\nogler\\noglers\\nogles\\nogling\\nogre\\nogreish\\nogreism\\nogreisms\\nogres\\nogress\\nogresses\\nogrish\\nogrishly\\nogrism\\nogrisms\\noh\\nohed\\nohia\\nohias\\nohing\\nohm\\nohmage\\nohmages\\nohmic\\nohmmeter\\nohmmeters\\nohms\\noho\\nohs\\noidia\\noidium\\noil\\noilbird\\noilbirds\\noilcamp\\noilcamps\\noilcan\\noilcans\\noilcloth\\noilcloths\\noilcup\\noilcups\\noiled\\noiler\\noilers\\noilhole\\noilholes\\noilier\\noiliest\\noilily\\noiliness\\noilinesses\\noiling\\noilman\\noilmen\\noilpaper\\noilpapers\\noilproof\\noils\\noilseed\\noilseeds\\noilskin\\noilskins\\noilstone\\noilstones\\noiltight\\noilway\\noilways\\noily\\noink\\noinked\\noinking\\noinks\\noinologies\\noinology\\noinomel\\noinomels\\nointment\\nointments\\noiticica\\noiticicas\\noka\\nokapi\\nokapis\\nokas\\nokay\\nokayed\\nokaying\\nokays\\noke\\nokeh\\nokehs\\nokes\\nokeydoke\\nokra\\nokras\\nold\\nolden\\nolder\\noldest\\noldie\\noldies\\noldish\\noldness\\noldnesses\\nolds\\noldster\\noldsters\\noldstyle\\noldstyles\\noldwife\\noldwives\\nole\\nolea\\noleander\\noleanders\\noleaster\\noleasters\\noleate\\noleates\\nolefin\\nolefine\\nolefines\\nolefinic\\nolefins\\noleic\\nolein\\noleine\\noleines\\noleins\\noleo\\noleomargarine\\noleomargarines\\noleos\\noles\\noleum\\noleums\\nolfactory\\nolibanum\\nolibanums\\noligarch\\noligarchic\\noligarchical\\noligarchies\\noligarchs\\noligarchy\\noligomer\\noligomers\\nolio\\nolios\\nolivary\\nolive\\nolives\\nolivine\\nolivines\\nolivinic\\nolla\\nollas\\nologies\\nologist\\nologists\\nology\\nolympiad\\nolympiads\\nom\\nomasa\\nomasum\\nomber\\nombers\\nombre\\nombres\\nombudsman\\nombudsmen\\nomega\\nomegas\\nomelet\\nomelets\\nomelette\\nomelettes\\nomen\\nomened\\nomening\\nomens\\nomenta\\nomental\\nomentum\\nomentums\\nomer\\nomers\\nomicron\\nomicrons\\nomikron\\nomikrons\\nominous\\nominously\\nominousness\\nominousnesses\\nomission\\nomissions\\nomissive\\nomit\\nomits\\nomitted\\nomitting\\nomniarch\\nomniarchs\\nomnibus\\nomnibuses\\nomnific\\nomniform\\nomnimode\\nomnipotence\\nomnipotences\\nomnipotent\\nomnipotently\\nomnipresence\\nomnipresences\\nomnipresent\\nomniscience\\nomnisciences\\nomniscient\\nomnisciently\\nomnivora\\nomnivore\\nomnivores\\nomnivorous\\nomnivorously\\nomnivorousness\\nomnivorousnesses\\nomophagies\\nomophagy\\nomphali\\nomphalos\\noms\\non\\nonager\\nonagers\\nonagri\\nonanism\\nonanisms\\nonanist\\nonanists\\nonce\\nonces\\noncidium\\noncidiums\\noncologic\\noncologies\\noncologist\\noncologists\\noncology\\noncoming\\noncomings\\nondogram\\nondograms\\none\\nonefold\\noneiric\\noneness\\nonenesses\\nonerier\\noneriest\\nonerous\\nonery\\nones\\noneself\\nonetime\\nongoing\\nonion\\nonions\\nonium\\nonlooker\\nonlookers\\nonly\\nonomatopoeia\\nonrush\\nonrushes\\nons\\nonset\\nonsets\\nonshore\\nonside\\nonslaught\\nonslaughts\\nonstage\\nontic\\nonto\\nontogenies\\nontogeny\\nontologies\\nontology\\nonus\\nonuses\\nonward\\nonwards\\nonyx\\nonyxes\\noocyst\\noocysts\\noocyte\\noocytes\\noodles\\noodlins\\noogamete\\noogametes\\noogamies\\noogamous\\noogamy\\noogenies\\noogeny\\noogonia\\noogonial\\noogonium\\noogoniums\\nooh\\noohed\\noohing\\noohs\\noolachan\\noolachans\\noolite\\noolites\\noolith\\nooliths\\noolitic\\noologic\\noologies\\noologist\\noologists\\noology\\noolong\\noolongs\\noomiac\\noomiack\\noomiacks\\noomiacs\\noomiak\\noomiaks\\noomph\\noomphs\\noophorectomy\\noophyte\\noophytes\\noophytic\\noops\\noorali\\nooralis\\noorie\\noosperm\\noosperms\\noosphere\\noospheres\\noospore\\noospores\\noosporic\\noot\\nootheca\\noothecae\\noothecal\\nootid\\nootids\\noots\\nooze\\noozed\\noozes\\noozier\\nooziest\\noozily\\nooziness\\noozinesses\\noozing\\noozy\\nop\\nopacified\\nopacifies\\nopacify\\nopacifying\\nopacities\\nopacity\\nopah\\nopahs\\nopal\\nopalesce\\nopalesced\\nopalesces\\nopalescing\\nopaline\\nopalines\\nopals\\nopaque\\nopaqued\\nopaquely\\nopaqueness\\nopaquenesses\\nopaquer\\nopaques\\nopaquest\\nopaquing\\nope\\noped\\nopen\\nopenable\\nopened\\nopener\\nopeners\\nopenest\\nopenhanded\\nopening\\nopenings\\nopenly\\nopenness\\nopennesses\\nopens\\nopenwork\\nopenworks\\nopera\\noperable\\noperably\\noperand\\noperands\\noperant\\noperants\\noperas\\noperate\\noperated\\noperates\\noperatic\\noperatics\\noperating\\noperation\\noperational\\noperationally\\noperations\\noperative\\noperator\\noperators\\nopercele\\noperceles\\nopercula\\nopercule\\nopercules\\noperetta\\noperettas\\noperon\\noperons\\noperose\\nopes\\nophidian\\nophidians\\nophite\\nophites\\nophitic\\nophthalmologies\\nophthalmologist\\nophthalmologists\\nophthalmology\\nopiate\\nopiated\\nopiates\\nopiating\\nopine\\nopined\\nopines\\noping\\nopining\\nopinion\\nopinionated\\nopinions\\nopium\\nopiumism\\nopiumisms\\nopiums\\nopossum\\nopossums\\noppidan\\noppidans\\noppilant\\noppilate\\noppilated\\noppilates\\noppilating\\nopponent\\nopponents\\nopportune\\nopportunely\\nopportunism\\nopportunisms\\nopportunist\\nopportunistic\\nopportunists\\nopportunities\\nopportunity\\noppose\\nopposed\\nopposer\\nopposers\\nopposes\\nopposing\\nopposite\\noppositely\\noppositeness\\noppositenesses\\nopposites\\nopposition\\noppositions\\noppress\\noppressed\\noppresses\\noppressing\\noppression\\noppressions\\noppressive\\noppressively\\noppressor\\noppressors\\nopprobrious\\nopprobriously\\nopprobrium\\nopprobriums\\noppugn\\noppugned\\noppugner\\noppugners\\noppugning\\noppugns\\nops\\nopsin\\nopsins\\nopsonic\\nopsonified\\nopsonifies\\nopsonify\\nopsonifying\\nopsonin\\nopsonins\\nopsonize\\nopsonized\\nopsonizes\\nopsonizing\\nopt\\noptative\\noptatives\\nopted\\noptic\\noptical\\noptician\\nopticians\\nopticist\\nopticists\\noptics\\noptima\\noptimal\\noptimally\\noptime\\noptimes\\noptimise\\noptimised\\noptimises\\noptimising\\noptimism\\noptimisms\\noptimist\\noptimistic\\noptimistically\\noptimists\\noptimize\\noptimized\\noptimizes\\noptimizing\\noptimum\\noptimums\\nopting\\noption\\noptional\\noptionally\\noptionals\\noptioned\\noptionee\\noptionees\\noptioning\\noptions\\noptometries\\noptometrist\\noptometry\\nopts\\nopulence\\nopulences\\nopulencies\\nopulency\\nopulent\\nopuntia\\nopuntias\\nopus\\nopuscula\\nopuscule\\nopuscules\\nopuses\\noquassa\\noquassas\\nor\\nora\\norach\\norache\\noraches\\noracle\\noracles\\noracular\\noral\\noralities\\norality\\norally\\norals\\norang\\norange\\norangeade\\norangeades\\norangeries\\norangery\\noranges\\norangey\\norangier\\norangiest\\norangish\\norangoutan\\norangoutans\\norangs\\norangutan\\norangutang\\norangutangs\\norangutans\\norangy\\norate\\norated\\norates\\norating\\noration\\norations\\norator\\noratorical\\noratories\\noratorio\\noratorios\\norators\\noratory\\noratress\\noratresses\\noratrices\\noratrix\\norb\\norbed\\norbicular\\norbing\\norbit\\norbital\\norbitals\\norbited\\norbiter\\norbiters\\norbiting\\norbits\\norbs\\norc\\norca\\norcas\\norcein\\norceins\\norchard\\norchardist\\norchardists\\norchards\\norchestra\\norchestral\\norchestras\\norchestrate\\norchestrated\\norchestrates\\norchestrating\\norchestration\\norchestrations\\norchid\\norchids\\norchiectomy\\norchil\\norchils\\norchis\\norchises\\norchitic\\norchitis\\norchitises\\norcin\\norcinol\\norcinols\\norcins\\norcs\\nordain\\nordained\\nordainer\\nordainers\\nordaining\\nordains\\nordeal\\nordeals\\norder\\nordered\\norderer\\norderers\\nordering\\norderlies\\norderliness\\norderlinesses\\norderly\\norders\\nordinal\\nordinals\\nordinance\\nordinances\\nordinand\\nordinands\\nordinarier\\nordinaries\\nordinariest\\nordinarily\\nordinary\\nordinate\\nordinates\\nordination\\nordinations\\nordines\\nordnance\\nordnances\\nordo\\nordos\\nordure\\nordures\\nore\\noread\\noreads\\norectic\\norective\\noregano\\noreganos\\noreide\\noreides\\nores\\norfray\\norfrays\\norgan\\norgana\\norgandie\\norgandies\\norgandy\\norganic\\norganically\\norganics\\norganise\\norganised\\norganises\\norganising\\norganism\\norganisms\\norganist\\norganists\\norganization\\norganizational\\norganizationally\\norganizations\\norganize\\norganized\\norganizer\\norganizers\\norganizes\\norganizing\\norganon\\norganons\\norgans\\norganum\\norganums\\norganza\\norganzas\\norgasm\\norgasmic\\norgasms\\norgastic\\norgeat\\norgeats\\norgiac\\norgic\\norgies\\norgulous\\norgy\\noribatid\\noribatids\\noribi\\noribis\\noriel\\noriels\\norient\\noriental\\norientals\\norientation\\norientations\\noriented\\norienting\\norients\\norifice\\norifices\\norigami\\norigamis\\norigan\\norigans\\noriganum\\noriganums\\norigin\\noriginal\\noriginalities\\noriginality\\noriginally\\noriginals\\noriginate\\noriginated\\noriginates\\noriginating\\noriginator\\noriginators\\norigins\\norinasal\\norinasals\\noriole\\norioles\\norison\\norisons\\norle\\norles\\norlop\\norlops\\normer\\normers\\normolu\\normolus\\nornament\\nornamental\\nornamentation\\nornamentations\\nornamented\\nornamenting\\nornaments\\nornate\\nornately\\nornateness\\nornatenesses\\nornerier\\norneriest\\nornery\\nornis\\nornithes\\nornithic\\nornithological\\nornithologist\\nornithologists\\nornithology\\norogenic\\norogenies\\norogeny\\noroide\\noroides\\norologies\\norology\\norometer\\norometers\\norotund\\norphan\\norphanage\\norphanages\\norphaned\\norphaning\\norphans\\norphic\\norphical\\norphrey\\norphreys\\norpiment\\norpiments\\norpin\\norpine\\norpines\\norpins\\norra\\norreries\\norrery\\norrice\\norrices\\norris\\norrises\\nors\\nort\\northicon\\northicons\\northo\\northodontia\\northodontics\\northodontist\\northodontists\\northodox\\northodoxes\\northodoxies\\northodoxy\\northoepies\\northoepy\\northogonal\\northographic\\northographies\\northography\\northopedic\\northopedics\\northopedist\\northopedists\\northotic\\nortolan\\nortolans\\norts\\noryx\\noryxes\\nos\\nosar\\noscillate\\noscillated\\noscillates\\noscillating\\noscillation\\noscillations\\noscine\\noscines\\noscinine\\noscitant\\noscula\\nosculant\\noscular\\nosculate\\nosculated\\nosculates\\nosculating\\noscule\\noscules\\nosculum\\nose\\noses\\nosier\\nosiers\\nosmatic\\nosmic\\nosmious\\nosmium\\nosmiums\\nosmol\\nosmolal\\nosmolar\\nosmols\\nosmose\\nosmosed\\nosmoses\\nosmosing\\nosmosis\\nosmotic\\nosmous\\nosmund\\nosmunda\\nosmundas\\nosmunds\\nosnaburg\\nosnaburgs\\nosprey\\nospreys\\nossa\\nossein\\nosseins\\nosseous\\nossia\\nossicle\\nossicles\\nossific\\nossified\\nossifier\\nossifiers\\nossifies\\nossify\\nossifying\\nossuaries\\nossuary\\nosteal\\nosteitic\\nosteitides\\nosteitis\\nostensible\\nostensibly\\nostentation\\nostentations\\nostentatious\\nostentatiously\\nosteoblast\\nosteoblasts\\nosteoid\\nosteoids\\nosteoma\\nosteomas\\nosteomata\\nosteopath\\nosteopathic\\nosteopathies\\nosteopaths\\nosteopathy\\nosteopenia\\nostia\\nostiaries\\nostiary\\nostinato\\nostinatos\\nostiolar\\nostiole\\nostioles\\nostium\\nostler\\nostlers\\nostmark\\nostmarks\\nostomies\\nostomy\\nostoses\\nostosis\\nostosises\\nostracism\\nostracisms\\nostracize\\nostracized\\nostracizes\\nostracizing\\nostracod\\nostracods\\nostrich\\nostriches\\nostsis\\nostsises\\notalgia\\notalgias\\notalgic\\notalgies\\notalgy\\nother\\nothers\\notherwise\\notic\\notiose\\notiosely\\notiosities\\notiosity\\notitic\\notitides\\notitis\\notocyst\\notocysts\\notolith\\notoliths\\notologies\\notology\\notoscope\\notoscopes\\notoscopies\\notoscopy\\nototoxicities\\nototoxicity\\nottar\\nottars\\nottava\\nottavas\\notter\\notters\\notto\\nottoman\\nottomans\\nottos\\nouabain\\nouabains\\nouch\\nouches\\noud\\nouds\\nought\\noughted\\noughting\\noughts\\nouistiti\\nouistitis\\nounce\\nounces\\nouph\\nouphe\\nouphes\\nouphs\\nour\\nourang\\nourangs\\nourari\\nouraris\\nourebi\\nourebis\\nourie\\nours\\nourself\\nourselves\\nousel\\nousels\\noust\\nousted\\nouster\\nousters\\nousting\\nousts\\nout\\noutact\\noutacted\\noutacting\\noutacts\\noutadd\\noutadded\\noutadding\\noutadds\\noutage\\noutages\\noutargue\\noutargued\\noutargues\\noutarguing\\noutask\\noutasked\\noutasking\\noutasks\\noutate\\noutback\\noutbacks\\noutbake\\noutbaked\\noutbakes\\noutbaking\\noutbark\\noutbarked\\noutbarking\\noutbarks\\noutbawl\\noutbawled\\noutbawling\\noutbawls\\noutbeam\\noutbeamed\\noutbeaming\\noutbeams\\noutbeg\\noutbegged\\noutbegging\\noutbegs\\noutbid\\noutbidden\\noutbidding\\noutbids\\noutblaze\\noutblazed\\noutblazes\\noutblazing\\noutbleat\\noutbleated\\noutbleating\\noutbleats\\noutbless\\noutblessed\\noutblesses\\noutblessing\\noutbloom\\noutbloomed\\noutblooming\\noutblooms\\noutbluff\\noutbluffed\\noutbluffing\\noutbluffs\\noutblush\\noutblushed\\noutblushes\\noutblushing\\noutboard\\noutboards\\noutboast\\noutboasted\\noutboasting\\noutboasts\\noutbound\\noutbox\\noutboxed\\noutboxes\\noutboxing\\noutbrag\\noutbragged\\noutbragging\\noutbrags\\noutbrave\\noutbraved\\noutbraves\\noutbraving\\noutbreak\\noutbreaks\\noutbred\\noutbreed\\noutbreeding\\noutbreeds\\noutbribe\\noutbribed\\noutbribes\\noutbribing\\noutbuild\\noutbuilding\\noutbuildings\\noutbuilds\\noutbuilt\\noutbullied\\noutbullies\\noutbully\\noutbullying\\noutburn\\noutburned\\noutburning\\noutburns\\noutburnt\\noutburst\\noutbursts\\noutby\\noutbye\\noutcaper\\noutcapered\\noutcapering\\noutcapers\\noutcast\\noutcaste\\noutcastes\\noutcasts\\noutcatch\\noutcatches\\noutcatching\\noutcaught\\noutcavil\\noutcaviled\\noutcaviling\\noutcavilled\\noutcavilling\\noutcavils\\noutcharm\\noutcharmed\\noutcharming\\noutcharms\\noutcheat\\noutcheated\\noutcheating\\noutcheats\\noutchid\\noutchidden\\noutchide\\noutchided\\noutchides\\noutchiding\\noutclass\\noutclassed\\noutclasses\\noutclassing\\noutclimb\\noutclimbed\\noutclimbing\\noutclimbs\\noutclomb\\noutcome\\noutcomes\\noutcook\\noutcooked\\noutcooking\\noutcooks\\noutcrawl\\noutcrawled\\noutcrawling\\noutcrawls\\noutcried\\noutcries\\noutcrop\\noutcropped\\noutcropping\\noutcrops\\noutcross\\noutcrossed\\noutcrosses\\noutcrossing\\noutcrow\\noutcrowed\\noutcrowing\\noutcrows\\noutcry\\noutcrying\\noutcurse\\noutcursed\\noutcurses\\noutcursing\\noutcurve\\noutcurves\\noutdance\\noutdanced\\noutdances\\noutdancing\\noutdare\\noutdared\\noutdares\\noutdaring\\noutdate\\noutdated\\noutdates\\noutdating\\noutdid\\noutdistance\\noutdistanced\\noutdistances\\noutdistancing\\noutdo\\noutdodge\\noutdodged\\noutdodges\\noutdodging\\noutdoer\\noutdoers\\noutdoes\\noutdoing\\noutdone\\noutdoor\\noutdoors\\noutdrank\\noutdraw\\noutdrawing\\noutdrawn\\noutdraws\\noutdream\\noutdreamed\\noutdreaming\\noutdreams\\noutdreamt\\noutdress\\noutdressed\\noutdresses\\noutdressing\\noutdrew\\noutdrink\\noutdrinking\\noutdrinks\\noutdrive\\noutdriven\\noutdrives\\noutdriving\\noutdrop\\noutdropped\\noutdropping\\noutdrops\\noutdrove\\noutdrunk\\nouteat\\nouteaten\\nouteating\\nouteats\\noutecho\\noutechoed\\noutechoes\\noutechoing\\nouted\\nouter\\noutermost\\nouters\\noutfable\\noutfabled\\noutfables\\noutfabling\\noutface\\noutfaced\\noutfaces\\noutfacing\\noutfall\\noutfalls\\noutfast\\noutfasted\\noutfasting\\noutfasts\\noutfawn\\noutfawned\\noutfawning\\noutfawns\\noutfeast\\noutfeasted\\noutfeasting\\noutfeasts\\noutfeel\\noutfeeling\\noutfeels\\noutfelt\\noutfield\\noutfielder\\noutfielders\\noutfields\\noutfight\\noutfighting\\noutfights\\noutfind\\noutfinding\\noutfinds\\noutfire\\noutfired\\noutfires\\noutfiring\\noutfit\\noutfits\\noutfitted\\noutfitter\\noutfitters\\noutfitting\\noutflank\\noutflanked\\noutflanking\\noutflanks\\noutflew\\noutflies\\noutflow\\noutflowed\\noutflowing\\noutflown\\noutflows\\noutfly\\noutflying\\noutfool\\noutfooled\\noutfooling\\noutfools\\noutfoot\\noutfooted\\noutfooting\\noutfoots\\noutfought\\noutfound\\noutfox\\noutfoxed\\noutfoxes\\noutfoxing\\noutfrown\\noutfrowned\\noutfrowning\\noutfrowns\\noutgain\\noutgained\\noutgaining\\noutgains\\noutgas\\noutgassed\\noutgasses\\noutgassing\\noutgave\\noutgive\\noutgiven\\noutgives\\noutgiving\\noutglare\\noutglared\\noutglares\\noutglaring\\noutglow\\noutglowed\\noutglowing\\noutglows\\noutgnaw\\noutgnawed\\noutgnawing\\noutgnawn\\noutgnaws\\noutgo\\noutgoes\\noutgoing\\noutgoings\\noutgone\\noutgrew\\noutgrin\\noutgrinned\\noutgrinning\\noutgrins\\noutgroup\\noutgroups\\noutgrow\\noutgrowing\\noutgrown\\noutgrows\\noutgrowth\\noutgrowths\\noutguess\\noutguessed\\noutguesses\\noutguessing\\noutguide\\noutguided\\noutguides\\noutguiding\\noutgun\\noutgunned\\noutgunning\\noutguns\\noutgush\\noutgushes\\nouthaul\\nouthauls\\nouthear\\noutheard\\nouthearing\\nouthears\\nouthit\\nouthits\\nouthitting\\nouthouse\\nouthouses\\nouthowl\\nouthowled\\nouthowling\\nouthowls\\nouthumor\\nouthumored\\nouthumoring\\nouthumors\\nouting\\noutings\\noutjinx\\noutjinxed\\noutjinxes\\noutjinxing\\noutjump\\noutjumped\\noutjumping\\noutjumps\\noutjut\\noutjuts\\noutjutted\\noutjutting\\noutkeep\\noutkeeping\\noutkeeps\\noutkept\\noutkick\\noutkicked\\noutkicking\\noutkicks\\noutkiss\\noutkissed\\noutkisses\\noutkissing\\noutlaid\\noutlain\\noutland\\noutlandish\\noutlandishly\\noutlands\\noutlast\\noutlasted\\noutlasting\\noutlasts\\noutlaugh\\noutlaughed\\noutlaughing\\noutlaughs\\noutlaw\\noutlawed\\noutlawing\\noutlawries\\noutlawry\\noutlaws\\noutlay\\noutlaying\\noutlays\\noutleap\\noutleaped\\noutleaping\\noutleaps\\noutleapt\\noutlearn\\noutlearned\\noutlearning\\noutlearns\\noutlearnt\\noutlet\\noutlets\\noutlie\\noutlier\\noutliers\\noutlies\\noutline\\noutlined\\noutlines\\noutlining\\noutlive\\noutlived\\noutliver\\noutlivers\\noutlives\\noutliving\\noutlook\\noutlooks\\noutlove\\noutloved\\noutloves\\noutloving\\noutlying\\noutman\\noutmanned\\noutmanning\\noutmans\\noutmarch\\noutmarched\\noutmarches\\noutmarching\\noutmatch\\noutmatched\\noutmatches\\noutmatching\\noutmode\\noutmoded\\noutmodes\\noutmoding\\noutmost\\noutmove\\noutmoved\\noutmoves\\noutmoving\\noutnumber\\noutnumbered\\noutnumbering\\noutnumbers\\noutpace\\noutpaced\\noutpaces\\noutpacing\\noutpaint\\noutpainted\\noutpainting\\noutpaints\\noutpass\\noutpassed\\noutpasses\\noutpassing\\noutpatient\\noutpatients\\noutpitied\\noutpities\\noutpity\\noutpitying\\noutplan\\noutplanned\\noutplanning\\noutplans\\noutplay\\noutplayed\\noutplaying\\noutplays\\noutplod\\noutplodded\\noutplodding\\noutplods\\noutpoint\\noutpointed\\noutpointing\\noutpoints\\noutpoll\\noutpolled\\noutpolling\\noutpolls\\noutport\\noutports\\noutpost\\noutposts\\noutpour\\noutpoured\\noutpouring\\noutpours\\noutpray\\noutprayed\\noutpraying\\noutprays\\noutpreen\\noutpreened\\noutpreening\\noutpreens\\noutpress\\noutpressed\\noutpresses\\noutpressing\\noutprice\\noutpriced\\noutprices\\noutpricing\\noutpull\\noutpulled\\noutpulling\\noutpulls\\noutpush\\noutpushed\\noutpushes\\noutpushing\\noutput\\noutputs\\noutputted\\noutputting\\noutquote\\noutquoted\\noutquotes\\noutquoting\\noutrace\\noutraced\\noutraces\\noutracing\\noutrage\\noutraged\\noutrages\\noutraging\\noutraise\\noutraised\\noutraises\\noutraising\\noutran\\noutrance\\noutrances\\noutrang\\noutrange\\noutranged\\noutranges\\noutranging\\noutrank\\noutranked\\noutranking\\noutranks\\noutrave\\noutraved\\noutraves\\noutraving\\noutre\\noutreach\\noutreached\\noutreaches\\noutreaching\\noutread\\noutreading\\noutreads\\noutregeous\\noutregeously\\noutridden\\noutride\\noutrider\\noutriders\\noutrides\\noutriding\\noutright\\noutring\\noutringing\\noutrings\\noutrival\\noutrivaled\\noutrivaling\\noutrivalled\\noutrivalling\\noutrivals\\noutroar\\noutroared\\noutroaring\\noutroars\\noutrock\\noutrocked\\noutrocking\\noutrocks\\noutrode\\noutroll\\noutrolled\\noutrolling\\noutrolls\\noutroot\\noutrooted\\noutrooting\\noutroots\\noutrun\\noutrung\\noutrunning\\noutruns\\noutrush\\noutrushes\\nouts\\noutsail\\noutsailed\\noutsailing\\noutsails\\noutsang\\noutsat\\noutsavor\\noutsavored\\noutsavoring\\noutsavors\\noutsaw\\noutscold\\noutscolded\\noutscolding\\noutscolds\\noutscore\\noutscored\\noutscores\\noutscoring\\noutscorn\\noutscorned\\noutscorning\\noutscorns\\noutsee\\noutseeing\\noutseen\\noutsees\\noutsell\\noutselling\\noutsells\\noutsert\\noutserts\\noutserve\\noutserved\\noutserves\\noutserving\\noutset\\noutsets\\noutshame\\noutshamed\\noutshames\\noutshaming\\noutshine\\noutshined\\noutshines\\noutshining\\noutshone\\noutshoot\\noutshooting\\noutshoots\\noutshot\\noutshout\\noutshouted\\noutshouting\\noutshouts\\noutside\\noutsider\\noutsiders\\noutsides\\noutsight\\noutsights\\noutsin\\noutsing\\noutsinging\\noutsings\\noutsinned\\noutsinning\\noutsins\\noutsit\\noutsits\\noutsitting\\noutsize\\noutsized\\noutsizes\\noutskirt\\noutskirts\\noutsleep\\noutsleeping\\noutsleeps\\noutslept\\noutsmart\\noutsmarted\\noutsmarting\\noutsmarts\\noutsmile\\noutsmiled\\noutsmiles\\noutsmiling\\noutsmoke\\noutsmoked\\noutsmokes\\noutsmoking\\noutsnore\\noutsnored\\noutsnores\\noutsnoring\\noutsoar\\noutsoared\\noutsoaring\\noutsoars\\noutsold\\noutsole\\noutsoles\\noutspan\\noutspanned\\noutspanning\\noutspans\\noutspeak\\noutspeaking\\noutspeaks\\noutspell\\noutspelled\\noutspelling\\noutspells\\noutspelt\\noutspend\\noutspending\\noutspends\\noutspent\\noutspoke\\noutspoken\\noutspokenness\\noutspokennesses\\noutstand\\noutstanding\\noutstandingly\\noutstands\\noutstare\\noutstared\\noutstares\\noutstaring\\noutstart\\noutstarted\\noutstarting\\noutstarts\\noutstate\\noutstated\\noutstates\\noutstating\\noutstay\\noutstayed\\noutstaying\\noutstays\\noutsteer\\noutsteered\\noutsteering\\noutsteers\\noutstood\\noutstrip\\noutstripped\\noutstripping\\noutstrips\\noutstudied\\noutstudies\\noutstudy\\noutstudying\\noutstunt\\noutstunted\\noutstunting\\noutstunts\\noutsulk\\noutsulked\\noutsulking\\noutsulks\\noutsung\\noutswam\\noutsware\\noutswear\\noutswearing\\noutswears\\noutswim\\noutswimming\\noutswims\\noutswore\\noutsworn\\noutswum\\nouttake\\nouttakes\\nouttalk\\nouttalked\\nouttalking\\nouttalks\\nouttask\\nouttasked\\nouttasking\\nouttasks\\nouttell\\nouttelling\\nouttells\\noutthank\\noutthanked\\noutthanking\\noutthanks\\noutthink\\noutthinking\\noutthinks\\noutthought\\noutthrew\\noutthrob\\noutthrobbed\\noutthrobbing\\noutthrobs\\noutthrow\\noutthrowing\\noutthrown\\noutthrows\\nouttold\\nouttower\\nouttowered\\nouttowering\\nouttowers\\nouttrade\\nouttraded\\nouttrades\\nouttrading\\nouttrick\\nouttricked\\nouttricking\\nouttricks\\nouttrot\\nouttrots\\nouttrotted\\nouttrotting\\nouttrump\\nouttrumped\\nouttrumping\\nouttrumps\\noutturn\\noutturns\\noutvalue\\noutvalued\\noutvalues\\noutvaluing\\noutvaunt\\noutvaunted\\noutvaunting\\noutvaunts\\noutvoice\\noutvoiced\\noutvoices\\noutvoicing\\noutvote\\noutvoted\\noutvotes\\noutvoting\\noutwait\\noutwaited\\noutwaiting\\noutwaits\\noutwalk\\noutwalked\\noutwalking\\noutwalks\\noutwar\\noutward\\noutwards\\noutwarred\\noutwarring\\noutwars\\noutwash\\noutwashes\\noutwaste\\noutwasted\\noutwastes\\noutwasting\\noutwatch\\noutwatched\\noutwatches\\noutwatching\\noutwear\\noutwearied\\noutwearies\\noutwearing\\noutwears\\noutweary\\noutwearying\\noutweep\\noutweeping\\noutweeps\\noutweigh\\noutweighed\\noutweighing\\noutweighs\\noutwent\\noutwept\\noutwhirl\\noutwhirled\\noutwhirling\\noutwhirls\\noutwile\\noutwiled\\noutwiles\\noutwiling\\noutwill\\noutwilled\\noutwilling\\noutwills\\noutwind\\noutwinded\\noutwinding\\noutwinds\\noutwish\\noutwished\\noutwishes\\noutwishing\\noutwit\\noutwits\\noutwitted\\noutwitting\\noutwore\\noutwork\\noutworked\\noutworking\\noutworks\\noutworn\\noutwrit\\noutwrite\\noutwrites\\noutwriting\\noutwritten\\noutwrote\\noutwrought\\noutyell\\noutyelled\\noutyelling\\noutyells\\noutyelp\\noutyelped\\noutyelping\\noutyelps\\noutyield\\noutyielded\\noutyielding\\noutyields\\nouzel\\nouzels\\nouzo\\nouzos\\nova\\noval\\novalities\\novality\\novally\\novalness\\novalnesses\\novals\\novarial\\novarian\\novaries\\novariole\\novarioles\\novaritides\\novaritis\\novary\\novate\\novately\\novation\\novations\\noven\\novenbird\\novenbirds\\novenlike\\novens\\novenware\\novenwares\\nover\\noverable\\noverabundance\\noverabundances\\noverabundant\\noveracceptance\\noveracceptances\\noverachiever\\noverachievers\\noveract\\noveracted\\noveracting\\noveractive\\noveracts\\noverage\\noverages\\noveraggresive\\noverall\\noveralls\\noverambitious\\noveramplified\\noveramplifies\\noveramplify\\noveramplifying\\noveranalyze\\noveranalyzed\\noveranalyzes\\noveranalyzing\\noveranxieties\\noveranxiety\\noveranxious\\noverapologetic\\noverapt\\noverarch\\noverarched\\noverarches\\noverarching\\noverarm\\noverarousal\\noverarouse\\noveraroused\\noverarouses\\noverarousing\\noverassertive\\noverate\\noverawe\\noverawed\\noverawes\\noverawing\\noverbake\\noverbaked\\noverbakes\\noverbaking\\noverbear\\noverbearing\\noverbears\\noverbet\\noverbets\\noverbetted\\noverbetting\\noverbid\\noverbidden\\noverbidding\\noverbids\\noverbig\\noverbite\\noverbites\\noverblew\\noverblow\\noverblowing\\noverblown\\noverblows\\noverboard\\noverbold\\noverbook\\noverbooked\\noverbooking\\noverbooks\\noverbore\\noverborn\\noverborne\\noverborrow\\noverborrowed\\noverborrowing\\noverborrows\\noverbought\\noverbred\\noverbright\\noverbroad\\noverbuild\\noverbuilded\\noverbuilding\\noverbuilds\\noverburden\\noverburdened\\noverburdening\\noverburdens\\noverbusy\\noverbuy\\noverbuying\\noverbuys\\novercall\\novercalled\\novercalling\\novercalls\\novercame\\novercapacities\\novercapacity\\novercapitalize\\novercapitalized\\novercapitalizes\\novercapitalizing\\novercareful\\novercast\\novercasting\\novercasts\\novercautious\\novercharge\\novercharged\\novercharges\\novercharging\\novercivilized\\noverclean\\novercoat\\novercoats\\novercold\\novercome\\novercomes\\novercoming\\novercommit\\novercommited\\novercommiting\\novercommits\\novercompensate\\novercompensated\\novercompensates\\novercompensating\\novercomplicate\\novercomplicated\\novercomplicates\\novercomplicating\\noverconcern\\noverconcerned\\noverconcerning\\noverconcerns\\noverconfidence\\noverconfidences\\noverconfident\\noverconscientious\\noverconsume\\noverconsumed\\noverconsumes\\noverconsuming\\noverconsumption\\noverconsumptions\\novercontrol\\novercontroled\\novercontroling\\novercontrols\\novercook\\novercooked\\novercooking\\novercooks\\novercool\\novercooled\\novercooling\\novercools\\novercorrect\\novercorrected\\novercorrecting\\novercorrects\\novercoy\\novercram\\novercrammed\\novercramming\\novercrams\\novercritical\\novercrop\\novercropped\\novercropping\\novercrops\\novercrowd\\novercrowded\\novercrowding\\novercrowds\\noverdare\\noverdared\\noverdares\\noverdaring\\noverdear\\noverdeck\\noverdecked\\noverdecking\\noverdecks\\noverdecorate\\noverdecorated\\noverdecorates\\noverdecorating\\noverdepend\\noverdepended\\noverdependent\\noverdepending\\noverdepends\\noverdevelop\\noverdeveloped\\noverdeveloping\\noverdevelops\\noverdid\\noverdo\\noverdoer\\noverdoers\\noverdoes\\noverdoing\\noverdone\\noverdose\\noverdosed\\noverdoses\\noverdosing\\noverdraft\\noverdrafts\\noverdramatic\\noverdramatize\\noverdramatized\\noverdramatizes\\noverdramatizing\\noverdraw\\noverdrawing\\noverdrawn\\noverdraws\\noverdress\\noverdressed\\noverdresses\\noverdressing\\noverdrew\\noverdrink\\noverdrinks\\noverdry\\noverdue\\noverdye\\noverdyed\\noverdyeing\\noverdyes\\novereager\\novereasy\\novereat\\novereaten\\novereater\\novereaters\\novereating\\novereats\\novered\\novereducate\\novereducated\\novereducates\\novereducating\\noverelaborate\\noveremotional\\noveremphases\\noveremphasis\\noveremphasize\\noveremphasized\\noveremphasizes\\noveremphasizing\\noverenergetic\\noverenthusiastic\\noverestimate\\noverestimated\\noverestimates\\noverestimating\\noverexaggerate\\noverexaggerated\\noverexaggerates\\noverexaggerating\\noverexaggeration\\noverexaggerations\\noverexcite\\noverexcited\\noverexcitement\\noverexcitements\\noverexcites\\noverexciting\\noverexercise\\noverexert\\noverexertion\\noverexertions\\noverexhaust\\noverexhausted\\noverexhausting\\noverexhausts\\noverexpand\\noverexpanded\\noverexpanding\\noverexpands\\noverexpansion\\noverexpansions\\noverexplain\\noverexplained\\noverexplaining\\noverexplains\\noverexploit\\noverexploited\\noverexploiting\\noverexploits\\noverexpose\\noverexposed\\noverexposes\\noverexposing\\noverextend\\noverextended\\noverextending\\noverextends\\noverextension\\noverextensions\\noverexuberant\\noverfamiliar\\noverfar\\noverfast\\noverfat\\noverfatigue\\noverfatigued\\noverfatigues\\noverfatiguing\\noverfear\\noverfeared\\noverfearing\\noverfears\\noverfed\\noverfeed\\noverfeeding\\noverfeeds\\noverfertilize\\noverfertilized\\noverfertilizes\\noverfertilizing\\noverfill\\noverfilled\\noverfilling\\noverfills\\noverfish\\noverfished\\noverfishes\\noverfishing\\noverflew\\noverflies\\noverflow\\noverflowed\\noverflowing\\noverflown\\noverflows\\noverfly\\noverflying\\noverfond\\noverfoul\\noverfree\\noverfull\\novergenerous\\novergild\\novergilded\\novergilding\\novergilds\\novergilt\\novergird\\novergirded\\novergirding\\novergirds\\novergirt\\noverglad\\noverglamorize\\noverglamorized\\noverglamorizes\\noverglamorizing\\novergoad\\novergoaded\\novergoading\\novergoads\\novergraze\\novergrazed\\novergrazes\\novergrazing\\novergrew\\novergrow\\novergrowing\\novergrown\\novergrows\\noverhand\\noverhanded\\noverhanding\\noverhands\\noverhang\\noverhanging\\noverhangs\\noverhard\\noverharvest\\noverharvested\\noverharvesting\\noverharvests\\noverhasty\\noverhate\\noverhated\\noverhates\\noverhating\\noverhaul\\noverhauled\\noverhauling\\noverhauls\\noverhead\\noverheads\\noverheap\\noverheaped\\noverheaping\\noverheaps\\noverhear\\noverheard\\noverhearing\\noverhears\\noverheat\\noverheated\\noverheating\\noverheats\\noverheld\\noverhigh\\noverhold\\noverholding\\noverholds\\noverholy\\noverhope\\noverhoped\\noverhopes\\noverhoping\\noverhot\\noverhung\\noverhunt\\noverhunted\\noverhunting\\noverhunts\\noveridealize\\noveridealized\\noveridealizes\\noveridealizing\\noveridle\\noverimaginative\\noverimbibe\\noverimbibed\\noverimbibes\\noverimbibing\\noverimpressed\\noverindebted\\noverindulge\\noverindulged\\noverindulgent\\noverindulges\\noverindulging\\noverinflate\\noverinflated\\noverinflates\\noverinflating\\noverinfluence\\noverinfluenced\\noverinfluences\\noverinfluencing\\novering\\noverinsistent\\noverintense\\noverintensities\\noverintensity\\noverinvest\\noverinvested\\noverinvesting\\noverinvests\\noverinvolve\\noverinvolved\\noverinvolves\\noverinvolving\\noverjoy\\noverjoyed\\noverjoying\\noverjoys\\noverjust\\noverkeen\\noverkill\\noverkilled\\noverkilling\\noverkills\\noverkind\\noverlade\\noverladed\\noverladen\\noverlades\\noverlading\\noverlaid\\noverlain\\noverland\\noverlands\\noverlap\\noverlapped\\noverlapping\\noverlaps\\noverlarge\\noverlate\\noverlax\\noverlay\\noverlaying\\noverlays\\noverleaf\\noverleap\\noverleaped\\noverleaping\\noverleaps\\noverleapt\\noverlet\\noverlets\\noverletting\\noverlewd\\noverliberal\\noverlie\\noverlies\\noverlive\\noverlived\\noverlives\\noverliving\\noverload\\noverloaded\\noverloading\\noverloads\\noverlong\\noverlook\\noverlooked\\noverlooking\\noverlooks\\noverlord\\noverlorded\\noverlording\\noverlords\\noverloud\\noverlove\\noverloved\\noverloves\\noverloving\\noverly\\noverlying\\noverman\\novermanned\\novermanning\\novermans\\novermany\\novermedicate\\novermedicated\\novermedicates\\novermedicating\\novermeek\\novermelt\\novermelted\\novermelting\\novermelts\\novermen\\novermild\\novermix\\novermixed\\novermixes\\novermixing\\novermodest\\novermuch\\novermuches\\novernear\\noverneat\\novernew\\novernice\\novernight\\noverobvious\\noveroptimistic\\noverorganize\\noverorganized\\noverorganizes\\noverorganizing\\noverpaid\\noverparticular\\noverpass\\noverpassed\\noverpasses\\noverpassing\\noverpast\\noverpatriotic\\noverpay\\noverpaying\\noverpayment\\noverpayments\\noverpays\\noverpermissive\\noverpert\\noverplay\\noverplayed\\noverplaying\\noverplays\\noverplied\\noverplies\\noverplus\\noverpluses\\noverply\\noverplying\\noverpopulated\\noverpossessive\\noverpower\\noverpowered\\noverpowering\\noverpowers\\noverprase\\noverprased\\noverprases\\noverprasing\\noverprescribe\\noverprescribed\\noverprescribes\\noverprescribing\\noverpressure\\noverpressures\\noverprice\\noverpriced\\noverprices\\noverpricing\\noverprint\\noverprinted\\noverprinting\\noverprints\\noverprivileged\\noverproduce\\noverproduced\\noverproduces\\noverproducing\\noverproduction\\noverproductions\\noverpromise\\noverprotect\\noverprotected\\noverprotecting\\noverprotective\\noverprotects\\noverpublicize\\noverpublicized\\noverpublicizes\\noverpublicizing\\noverqualified\\noverran\\noverrank\\noverrash\\noverrate\\noverrated\\noverrates\\noverrating\\noverreach\\noverreached\\noverreaches\\noverreaching\\noverreact\\noverreacted\\noverreacting\\noverreaction\\noverreactions\\noverreacts\\noverrefine\\noverregulate\\noverregulated\\noverregulates\\noverregulating\\noverregulation\\noverregulations\\noverreliance\\noverreliances\\noverrepresent\\noverrepresented\\noverrepresenting\\noverrepresents\\noverrespond\\noverresponded\\noverresponding\\noverresponds\\noverrich\\noverridden\\noverride\\noverrides\\noverriding\\noverrife\\noverripe\\noverrode\\noverrude\\noverruff\\noverruffed\\noverruffing\\noverruffs\\noverrule\\noverruled\\noverrules\\noverruling\\noverrun\\noverrunning\\noverruns\\novers\\noversad\\noversale\\noversales\\noversalt\\noversalted\\noversalting\\noversalts\\noversaturate\\noversaturated\\noversaturates\\noversaturating\\noversave\\noversaved\\noversaves\\noversaving\\noversaw\\noversea\\noverseas\\noversee\\noverseed\\noverseeded\\noverseeding\\noverseeds\\noverseeing\\noverseen\\noverseer\\noverseers\\noversees\\noversell\\noverselling\\noversells\\noversensitive\\noverserious\\noverset\\noversets\\noversetting\\noversew\\noversewed\\noversewing\\noversewn\\noversews\\noversexed\\novershadow\\novershadowed\\novershadowing\\novershadows\\novershoe\\novershoes\\novershoot\\novershooting\\novershoots\\novershot\\novershots\\noversick\\noverside\\noversides\\noversight\\noversights\\noversimple\\noversimplified\\noversimplifies\\noversimplify\\noversimplifying\\noversize\\noversizes\\noversleep\\noversleeping\\noversleeps\\noverslept\\noverslip\\noverslipped\\noverslipping\\noverslips\\noverslipt\\noverslow\\noversoak\\noversoaked\\noversoaking\\noversoaks\\noversoft\\noversold\\noversolicitous\\noversoon\\noversoul\\noversouls\\noverspecialize\\noverspecialized\\noverspecializes\\noverspecializing\\noverspend\\noverspended\\noverspending\\noverspends\\noverspin\\noverspins\\noverspread\\noverspreading\\noverspreads\\noverstaff\\noverstaffed\\noverstaffing\\noverstaffs\\noverstate\\noverstated\\noverstatement\\noverstatements\\noverstates\\noverstating\\noverstay\\noverstayed\\noverstaying\\noverstays\\noverstep\\noverstepped\\noverstepping\\noversteps\\noverstimulate\\noverstimulated\\noverstimulates\\noverstimulating\\noverstir\\noverstirred\\noverstirring\\noverstirs\\noverstock\\noverstocked\\noverstocking\\noverstocks\\noverstrain\\noverstrained\\noverstraining\\noverstrains\\noverstress\\noverstressed\\noverstresses\\noverstressing\\noverstretch\\noverstretched\\noverstretches\\noverstretching\\noverstrict\\noversubtle\\noversup\\noversupped\\noversupping\\noversupplied\\noversupplies\\noversupply\\noversupplying\\noversups\\noversure\\noversuspicious\\noversweeten\\noversweetened\\noversweetening\\noversweetens\\novert\\novertake\\novertaken\\novertakes\\novertaking\\novertame\\novertart\\novertask\\novertasked\\novertasking\\novertasks\\novertax\\novertaxed\\novertaxes\\novertaxing\\noverthin\\noverthrew\\noverthrow\\noverthrown\\noverthrows\\novertighten\\novertightened\\novertightening\\novertightens\\novertime\\novertimed\\novertimes\\novertiming\\novertire\\novertired\\novertires\\novertiring\\novertly\\novertoil\\novertoiled\\novertoiling\\novertoils\\novertone\\novertones\\novertook\\novertop\\novertopped\\novertopping\\novertops\\novertrain\\novertrained\\novertraining\\novertrains\\novertreat\\novertreated\\novertreating\\novertreats\\novertrim\\novertrimmed\\novertrimming\\novertrims\\noverture\\novertured\\novertures\\noverturing\\noverturn\\noverturned\\noverturning\\noverturns\\noverurge\\noverurged\\noverurges\\noverurging\\noveruse\\noverused\\noveruses\\noverusing\\noverutilize\\noverutilized\\noverutilizes\\noverutilizing\\novervalue\\novervalued\\novervalues\\novervaluing\\noverview\\noverviews\\novervote\\novervoted\\novervotes\\novervoting\\noverwarm\\noverwarmed\\noverwarming\\noverwarms\\noverwary\\noverweak\\noverwear\\noverwearing\\noverwears\\noverween\\noverweened\\noverweening\\noverweens\\noverweight\\noverwet\\noverwets\\noverwetted\\noverwetting\\noverwhelm\\noverwhelmed\\noverwhelming\\noverwhelmingly\\noverwhelms\\noverwide\\noverwily\\noverwind\\noverwinding\\noverwinds\\noverwise\\noverword\\noverwords\\noverwore\\noverwork\\noverworked\\noverworking\\noverworks\\noverworn\\noverwound\\noverwrite\\noverwrited\\noverwrites\\noverwriting\\noverwrought\\noverzeal\\noverzealous\\noverzeals\\novibos\\novicidal\\novicide\\novicides\\noviducal\\noviduct\\noviducts\\noviform\\novine\\novines\\novipara\\noviposit\\noviposited\\novipositing\\noviposits\\novisac\\novisacs\\novoid\\novoidal\\novoids\\novoli\\novolo\\novolos\\novonic\\novular\\novulary\\novulate\\novulated\\novulates\\novulating\\novulation\\novulations\\novule\\novules\\novum\\now\\nowe\\nowed\\nowes\\nowing\\nowl\\nowlet\\nowlets\\nowlish\\nowlishly\\nowllike\\nowls\\nown\\nownable\\nowned\\nowner\\nowners\\nownership\\nownerships\\nowning\\nowns\\nowse\\nowsen\\nox\\noxalate\\noxalated\\noxalates\\noxalating\\noxalic\\noxalis\\noxalises\\noxazine\\noxazines\\noxblood\\noxbloods\\noxbow\\noxbows\\noxcart\\noxcarts\\noxen\\noxes\\noxeye\\noxeyes\\noxford\\noxfords\\noxheart\\noxhearts\\noxid\\noxidable\\noxidant\\noxidants\\noxidase\\noxidases\\noxidasic\\noxidate\\noxidated\\noxidates\\noxidating\\noxidation\\noxidations\\noxide\\noxides\\noxidic\\noxidise\\noxidised\\noxidiser\\noxidisers\\noxidises\\noxidising\\noxidizable\\noxidize\\noxidized\\noxidizer\\noxidizers\\noxidizes\\noxidizing\\noxids\\noxim\\noxime\\noximes\\noxims\\noxlip\\noxlips\\noxpecker\\noxpeckers\\noxtail\\noxtails\\noxter\\noxters\\noxtongue\\noxtongues\\noxy\\noxyacid\\noxyacids\\noxygen\\noxygenic\\noxygens\\noxymora\\noxymoron\\noxyphil\\noxyphile\\noxyphiles\\noxyphils\\noxysalt\\noxysalts\\noxysome\\noxysomes\\noxytocic\\noxytocics\\noxytocin\\noxytocins\\noxytone\\noxytones\\noy\\noyer\\noyers\\noyes\\noyesses\\noyez\\noyster\\noystered\\noysterer\\noysterers\\noystering\\noysterings\\noysterman\\noystermen\\noysters\\nozone\\nozones\\nozonic\\nozonide\\nozonides\\nozonise\\nozonised\\nozonises\\nozonising\\nozonize\\nozonized\\nozonizer\\nozonizers\\nozonizes\\nozonizing\\nozonous\\npa\\npabular\\npabulum\\npabulums\\npac\\npaca\\npacas\\npace\\npaced\\npacemaker\\npacemakers\\npacer\\npacers\\npaces\\npacha\\npachadom\\npachadoms\\npachalic\\npachalics\\npachas\\npachisi\\npachisis\\npachouli\\npachoulis\\npachuco\\npachucos\\npachyderm\\npachyderms\\npacific\\npacification\\npacifications\\npacified\\npacifier\\npacifiers\\npacifies\\npacifism\\npacifisms\\npacifist\\npacifistic\\npacifists\\npacify\\npacifying\\npacing\\npack\\npackable\\npackage\\npackaged\\npackager\\npackagers\\npackages\\npackaging\\npacked\\npacker\\npackers\\npacket\\npacketed\\npacketing\\npackets\\npacking\\npackings\\npackly\\npackman\\npackmen\\npackness\\npacknesses\\npacks\\npacksack\\npacksacks\\npackwax\\npackwaxes\\npacs\\npact\\npaction\\npactions\\npacts\\npad\\npadauk\\npadauks\\npadded\\npaddies\\npadding\\npaddings\\npaddle\\npaddled\\npaddler\\npaddlers\\npaddles\\npaddling\\npaddlings\\npaddock\\npaddocked\\npaddocking\\npaddocks\\npaddy\\npadishah\\npadishahs\\npadle\\npadles\\npadlock\\npadlocked\\npadlocking\\npadlocks\\npadnag\\npadnags\\npadouk\\npadouks\\npadre\\npadres\\npadri\\npadrone\\npadrones\\npadroni\\npads\\npadshah\\npadshahs\\npaduasoy\\npaduasoys\\npaean\\npaeanism\\npaeanisms\\npaeans\\npaella\\npaellas\\npaeon\\npaeons\\npagan\\npagandom\\npagandoms\\npaganise\\npaganised\\npaganises\\npaganish\\npaganising\\npaganism\\npaganisms\\npaganist\\npaganists\\npaganize\\npaganized\\npaganizes\\npaganizing\\npagans\\npage\\npageant\\npageantries\\npageantry\\npageants\\npageboy\\npageboys\\npaged\\npages\\npaginal\\npaginate\\npaginated\\npaginates\\npaginating\\npaging\\npagod\\npagoda\\npagodas\\npagods\\npagurian\\npagurians\\npagurid\\npagurids\\npah\\npahlavi\\npahlavis\\npaid\\npaik\\npaiked\\npaiking\\npaiks\\npail\\npailful\\npailfuls\\npails\\npailsful\\npain\\npainch\\npainches\\npained\\npainful\\npainfuller\\npainfullest\\npainfully\\npaining\\npainkiller\\npainkillers\\npainkilling\\npainless\\npainlessly\\npains\\npainstaking\\npainstakingly\\npaint\\npaintbrush\\npaintbrushes\\npainted\\npainter\\npainters\\npaintier\\npaintiest\\npainting\\npaintings\\npaints\\npainty\\npair\\npaired\\npairing\\npairs\\npaisa\\npaisan\\npaisano\\npaisanos\\npaisans\\npaisas\\npaise\\npaisley\\npaisleys\\npajama\\npajamas\\npal\\npalabra\\npalabras\\npalace\\npalaced\\npalaces\\npaladin\\npaladins\\npalais\\npalatable\\npalatal\\npalatals\\npalate\\npalates\\npalatial\\npalatine\\npalatines\\npalaver\\npalavered\\npalavering\\npalavers\\npalazzi\\npalazzo\\npale\\npalea\\npaleae\\npaleal\\npaled\\npaleface\\npalefaces\\npalely\\npaleness\\npalenesses\\npaleoclimatologic\\npaler\\npales\\npalest\\npalestra\\npalestrae\\npalestras\\npalet\\npaletot\\npaletots\\npalets\\npalette\\npalettes\\npaleways\\npalewise\\npalfrey\\npalfreys\\npalier\\npaliest\\npalikar\\npalikars\\npaling\\npalings\\npalinode\\npalinodes\\npalisade\\npalisaded\\npalisades\\npalisading\\npalish\\npall\\npalladia\\npalladic\\npallbearer\\npallbearers\\npalled\\npallet\\npallets\\npallette\\npallettes\\npallia\\npallial\\npalliate\\npalliated\\npalliates\\npalliating\\npalliation\\npalliations\\npalliative\\npallid\\npallidly\\npallier\\npalliest\\npalling\\npallium\\npalliums\\npallor\\npallors\\npalls\\npally\\npalm\\npalmar\\npalmary\\npalmate\\npalmated\\npalmed\\npalmer\\npalmers\\npalmette\\npalmettes\\npalmetto\\npalmettoes\\npalmettos\\npalmier\\npalmiest\\npalming\\npalmist\\npalmistries\\npalmistry\\npalmists\\npalmitin\\npalmitins\\npalmlike\\npalms\\npalmy\\npalmyra\\npalmyras\\npalomino\\npalominos\\npalooka\\npalookas\\npalp\\npalpable\\npalpably\\npalpal\\npalpate\\npalpated\\npalpates\\npalpating\\npalpation\\npalpations\\npalpator\\npalpators\\npalpebra\\npalpebrae\\npalpi\\npalpitate\\npalpitation\\npalpitations\\npalps\\npalpus\\npals\\npalsied\\npalsies\\npalsy\\npalsying\\npalter\\npaltered\\npalterer\\npalterers\\npaltering\\npalters\\npaltrier\\npaltriest\\npaltrily\\npaltry\\npaludal\\npaludism\\npaludisms\\npaly\\npam\\npampa\\npampas\\npampean\\npampeans\\npamper\\npampered\\npamperer\\npamperers\\npampering\\npampero\\npamperos\\npampers\\npamphlet\\npamphleteer\\npamphleteers\\npamphlets\\npams\\npan\\npanacea\\npanacean\\npanaceas\\npanache\\npanaches\\npanada\\npanadas\\npanama\\npanamas\\npanatela\\npanatelas\\npancake\\npancaked\\npancakes\\npancaking\\npanchax\\npanchaxes\\npancreas\\npancreases\\npancreatic\\npancreatitis\\npanda\\npandani\\npandanus\\npandanuses\\npandas\\npandect\\npandects\\npandemic\\npandemics\\npandemonium\\npandemoniums\\npander\\npandered\\npanderer\\npanderers\\npandering\\npanders\\npandied\\npandies\\npandit\\npandits\\npandoor\\npandoors\\npandora\\npandoras\\npandore\\npandores\\npandour\\npandours\\npandowdies\\npandowdy\\npandura\\npanduras\\npandy\\npandying\\npane\\npaned\\npanegyric\\npanegyrics\\npanegyrist\\npanegyrists\\npanel\\npaneled\\npaneling\\npanelings\\npanelist\\npanelists\\npanelled\\npanelling\\npanels\\npanes\\npanetela\\npanetelas\\npanfish\\npanfishes\\npanful\\npanfuls\\npang\\npanga\\npangas\\npanged\\npangen\\npangens\\npanging\\npangolin\\npangolins\\npangs\\npanhandle\\npanhandled\\npanhandler\\npanhandlers\\npanhandles\\npanhandling\\npanhuman\\npanic\\npanicked\\npanickier\\npanickiest\\npanicking\\npanicky\\npanicle\\npanicled\\npanicles\\npanics\\npanicum\\npanicums\\npanier\\npaniers\\npanmixia\\npanmixias\\npanne\\npanned\\npannes\\npannier\\npanniers\\npannikin\\npannikins\\npanning\\npanocha\\npanochas\\npanoche\\npanoches\\npanoplies\\npanoply\\npanoptic\\npanorama\\npanoramas\\npanoramic\\npanpipe\\npanpipes\\npans\\npansies\\npansophies\\npansophy\\npansy\\npant\\npantaloons\\npanted\\npantheon\\npantheons\\npanther\\npanthers\\npantie\\npanties\\npantile\\npantiled\\npantiles\\npanting\\npantofle\\npantofles\\npantomime\\npantomimed\\npantomimes\\npantomiming\\npantoum\\npantoums\\npantries\\npantry\\npants\\npantsuit\\npantsuits\\npanty\\npanzer\\npanzers\\npap\\npapa\\npapacies\\npapacy\\npapain\\npapains\\npapal\\npapally\\npapas\\npapaw\\npapaws\\npapaya\\npapayan\\npapayas\\npaper\\npaperboard\\npaperboards\\npaperboy\\npaperboys\\npapered\\npaperer\\npaperers\\npaperhanger\\npaperhangers\\npaperhanging\\npaperhangings\\npapering\\npapers\\npaperweight\\npaperweights\\npaperwork\\npapery\\npaphian\\npaphians\\npapilla\\npapillae\\npapillar\\npapillon\\npapillons\\npapist\\npapistic\\npapistries\\npapistry\\npapists\\npapoose\\npapooses\\npappi\\npappier\\npappies\\npappiest\\npappoose\\npappooses\\npappose\\npappous\\npappus\\npappy\\npaprica\\npapricas\\npaprika\\npaprikas\\npaps\\npapula\\npapulae\\npapulan\\npapular\\npapule\\npapules\\npapulose\\npapyral\\npapyri\\npapyrian\\npapyrine\\npapyrus\\npapyruses\\npar\\npara\\nparable\\nparables\\nparabola\\nparabolas\\nparachor\\nparachors\\nparachute\\nparachuted\\nparachutes\\nparachuting\\nparachutist\\nparachutists\\nparade\\nparaded\\nparader\\nparaders\\nparades\\nparadigm\\nparadigms\\nparading\\nparadise\\nparadises\\nparados\\nparadoses\\nparadox\\nparadoxes\\nparadoxical\\nparadoxically\\nparadrop\\nparadropped\\nparadropping\\nparadrops\\nparaffin\\nparaffined\\nparaffinic\\nparaffining\\nparaffins\\nparaform\\nparaforms\\nparagoge\\nparagoges\\nparagon\\nparagoned\\nparagoning\\nparagons\\nparagraph\\nparagraphs\\nparakeet\\nparakeets\\nparallax\\nparallaxes\\nparallel\\nparalleled\\nparalleling\\nparallelism\\nparallelisms\\nparallelled\\nparallelling\\nparallelogram\\nparallelograms\\nparallels\\nparalyse\\nparalysed\\nparalyses\\nparalysing\\nparalysis\\nparalytic\\nparalyze\\nparalyzed\\nparalyzes\\nparalyzing\\nparalyzingly\\nparament\\nparamenta\\nparaments\\nparameter\\nparameters\\nparametric\\nparamo\\nparamos\\nparamount\\nparamour\\nparamours\\nparang\\nparangs\\nparanoea\\nparanoeas\\nparanoia\\nparanoias\\nparanoid\\nparanoids\\nparapet\\nparapets\\nparaph\\nparaphernalia\\nparaphrase\\nparaphrased\\nparaphrases\\nparaphrasing\\nparaphs\\nparaplegia\\nparaplegias\\nparaplegic\\nparaplegics\\nparaquat\\nparaquats\\nparaquet\\nparaquets\\nparas\\nparasang\\nparasangs\\nparashah\\nparashioth\\nparashoth\\nparasite\\nparasites\\nparasitic\\nparasitism\\nparasitisms\\nparasol\\nparasols\\nparasternal\\nparatrooper\\nparatroopers\\nparatroops\\nparavane\\nparavanes\\nparboil\\nparboiled\\nparboiling\\nparboils\\nparcel\\nparceled\\nparceling\\nparcelled\\nparcelling\\nparcels\\nparcener\\nparceners\\nparch\\nparched\\nparches\\nparching\\nparchment\\nparchments\\npard\\npardah\\npardahs\\npardee\\npardi\\npardie\\npardine\\npardner\\npardners\\npardon\\npardonable\\npardoned\\npardoner\\npardoners\\npardoning\\npardons\\npards\\npardy\\npare\\nparecism\\nparecisms\\npared\\nparegoric\\nparegorics\\npareira\\npareiras\\nparent\\nparentage\\nparentages\\nparental\\nparented\\nparentheses\\nparenthesis\\nparenthetic\\nparenthetical\\nparenthetically\\nparenthood\\nparenthoods\\nparenting\\nparents\\nparer\\nparers\\npares\\npareses\\nparesis\\nparesthesia\\nparetic\\nparetics\\npareu\\npareus\\npareve\\nparfait\\nparfaits\\nparflesh\\nparfleshes\\nparfocal\\nparge\\nparged\\nparges\\nparget\\npargeted\\npargeting\\npargets\\npargetted\\npargetting\\nparging\\npargo\\npargos\\nparhelia\\nparhelic\\npariah\\npariahs\\nparian\\nparians\\nparies\\nparietal\\nparietals\\nparietes\\nparing\\nparings\\nparis\\nparises\\nparish\\nparishes\\nparishioner\\nparishioners\\nparities\\nparity\\npark\\nparka\\nparkas\\nparked\\nparker\\nparkers\\nparking\\nparkings\\nparkland\\nparklands\\nparklike\\nparks\\nparkway\\nparkways\\nparlance\\nparlances\\nparlando\\nparlante\\nparlay\\nparlayed\\nparlaying\\nparlays\\nparle\\nparled\\nparles\\nparley\\nparleyed\\nparleyer\\nparleyers\\nparleying\\nparleys\\nparliament\\nparliamentarian\\nparliamentarians\\nparliamentary\\nparliaments\\nparling\\nparlor\\nparlors\\nparlour\\nparlours\\nparlous\\nparochial\\nparochialism\\nparochialisms\\nparodic\\nparodied\\nparodies\\nparodist\\nparodists\\nparodoi\\nparodos\\nparody\\nparodying\\nparol\\nparole\\nparoled\\nparolee\\nparolees\\nparoles\\nparoling\\nparols\\nparonym\\nparonyms\\nparoquet\\nparoquets\\nparotic\\nparotid\\nparotids\\nparotoid\\nparotoids\\nparous\\nparoxysm\\nparoxysmal\\nparoxysms\\nparquet\\nparqueted\\nparqueting\\nparquetries\\nparquetry\\nparquets\\nparr\\nparrakeet\\nparrakeets\\nparral\\nparrals\\nparred\\nparrel\\nparrels\\nparridge\\nparridges\\nparried\\nparries\\nparring\\nparritch\\nparritches\\nparroket\\nparrokets\\nparrot\\nparroted\\nparroter\\nparroters\\nparroting\\nparrots\\nparroty\\nparrs\\nparry\\nparrying\\npars\\nparsable\\nparse\\nparsec\\nparsecs\\nparsed\\nparser\\nparsers\\nparses\\nparsimonies\\nparsimonious\\nparsimoniously\\nparsimony\\nparsing\\nparsley\\nparsleys\\nparsnip\\nparsnips\\nparson\\nparsonage\\nparsonages\\nparsonic\\nparsons\\npart\\npartake\\npartaken\\npartaker\\npartakers\\npartakes\\npartaking\\npartan\\npartans\\nparted\\nparterre\\nparterres\\npartial\\npartialities\\npartiality\\npartially\\npartials\\npartible\\nparticipant\\nparticipants\\nparticipate\\nparticipated\\nparticipates\\nparticipating\\nparticipation\\nparticipations\\nparticipatory\\nparticipial\\nparticiple\\nparticiples\\nparticle\\nparticles\\nparticular\\nparticularly\\nparticulars\\npartied\\nparties\\nparting\\npartings\\npartisan\\npartisans\\npartisanship\\npartisanships\\npartita\\npartitas\\npartite\\npartition\\npartitions\\npartizan\\npartizans\\npartlet\\npartlets\\npartly\\npartner\\npartnered\\npartnering\\npartners\\npartnership\\npartnerships\\nparton\\npartons\\npartook\\npartridge\\npartridges\\nparts\\nparturition\\nparturitions\\npartway\\nparty\\npartying\\nparura\\nparuras\\nparure\\nparures\\nparve\\nparvenu\\nparvenue\\nparvenus\\nparvis\\nparvise\\nparvises\\nparvolin\\nparvolins\\npas\\npaschal\\npaschals\\npase\\npaseo\\npaseos\\npases\\npash\\npasha\\npashadom\\npashadoms\\npashalic\\npashalics\\npashalik\\npashaliks\\npashas\\npashed\\npashes\\npashing\\npasquil\\npasquils\\npass\\npassable\\npassably\\npassade\\npassades\\npassado\\npassadoes\\npassados\\npassage\\npassaged\\npassages\\npassageway\\npassageways\\npassaging\\npassant\\npassband\\npassbands\\npassbook\\npassbooks\\npasse\\npassed\\npassee\\npassel\\npassels\\npassenger\\npassengers\\npasser\\npasserby\\npassers\\npassersby\\npasses\\npassible\\npassim\\npassing\\npassings\\npassion\\npassionate\\npassionateless\\npassionately\\npassions\\npassive\\npassively\\npassives\\npassivities\\npassivity\\npasskey\\npasskeys\\npassless\\npassover\\npassovers\\npassport\\npassports\\npassus\\npassuses\\npassword\\npasswords\\npast\\npasta\\npastas\\npaste\\npasteboard\\npasteboards\\npasted\\npastel\\npastels\\npaster\\npastern\\npasterns\\npasters\\npastes\\npasteurization\\npasteurizations\\npasteurize\\npasteurized\\npasteurizer\\npasteurizers\\npasteurizes\\npasteurizing\\npasticci\\npastiche\\npastiches\\npastier\\npasties\\npastiest\\npastil\\npastille\\npastilles\\npastils\\npastime\\npastimes\\npastina\\npastinas\\npasting\\npastness\\npastnesses\\npastor\\npastoral\\npastorals\\npastorate\\npastorates\\npastored\\npastoring\\npastors\\npastrami\\npastramis\\npastries\\npastromi\\npastromis\\npastry\\npasts\\npastural\\npasture\\npastured\\npasturer\\npasturers\\npastures\\npasturing\\npasty\\npat\\npataca\\npatacas\\npatagia\\npatagium\\npatamar\\npatamars\\npatch\\npatched\\npatcher\\npatchers\\npatches\\npatchier\\npatchiest\\npatchily\\npatching\\npatchwork\\npatchworks\\npatchy\\npate\\npated\\npatella\\npatellae\\npatellar\\npatellas\\npaten\\npatencies\\npatency\\npatens\\npatent\\npatented\\npatentee\\npatentees\\npatenting\\npatently\\npatentor\\npatentors\\npatents\\npater\\npaternal\\npaternally\\npaternities\\npaternity\\npaters\\npates\\npath\\npathetic\\npathetically\\npathfinder\\npathfinders\\npathless\\npathogen\\npathogens\\npathologic\\npathological\\npathologies\\npathologist\\npathologists\\npathology\\npathos\\npathoses\\npaths\\npathway\\npathways\\npatience\\npatiences\\npatient\\npatienter\\npatientest\\npatiently\\npatients\\npatin\\npatina\\npatinae\\npatinas\\npatine\\npatined\\npatines\\npatining\\npatins\\npatio\\npatios\\npatly\\npatness\\npatnesses\\npatois\\npatriarch\\npatriarchal\\npatriarchies\\npatriarchs\\npatriarchy\\npatrician\\npatricians\\npatricide\\npatricides\\npatrimonial\\npatrimonies\\npatrimony\\npatriot\\npatriotic\\npatriotically\\npatriotism\\npatriotisms\\npatriots\\npatrol\\npatrolled\\npatrolling\\npatrolman\\npatrolmen\\npatrols\\npatron\\npatronage\\npatronages\\npatronal\\npatronize\\npatronized\\npatronizes\\npatronizing\\npatronly\\npatrons\\npatroon\\npatroons\\npats\\npatsies\\npatsy\\npattamar\\npattamars\\npatted\\npattee\\npatten\\npattens\\npatter\\npattered\\npatterer\\npatterers\\npattering\\npattern\\npatterned\\npatterning\\npatterns\\npatters\\npattie\\npatties\\npatting\\npatty\\npattypan\\npattypans\\npatulent\\npatulous\\npaty\\npaucities\\npaucity\\npaughty\\npauldron\\npauldrons\\npaulin\\npaulins\\npaunch\\npaunched\\npaunches\\npaunchier\\npaunchiest\\npaunchy\\npauper\\npaupered\\npaupering\\npauperism\\npauperisms\\npauperize\\npauperized\\npauperizes\\npauperizing\\npaupers\\npausal\\npause\\npaused\\npauser\\npausers\\npauses\\npausing\\npavan\\npavane\\npavanes\\npavans\\npave\\npaved\\npavement\\npavements\\npaver\\npavers\\npaves\\npavid\\npavilion\\npavilioned\\npavilioning\\npavilions\\npavin\\npaving\\npavings\\npavins\\npavior\\npaviors\\npaviour\\npaviours\\npavis\\npavise\\npaviser\\npavisers\\npavises\\npavonine\\npaw\\npawed\\npawer\\npawers\\npawing\\npawkier\\npawkiest\\npawkily\\npawky\\npawl\\npawls\\npawn\\npawnable\\npawnage\\npawnages\\npawnbroker\\npawnbrokers\\npawned\\npawnee\\npawnees\\npawner\\npawners\\npawning\\npawnor\\npawnors\\npawns\\npawnshop\\npawnshops\\npawpaw\\npawpaws\\npaws\\npax\\npaxes\\npaxwax\\npaxwaxes\\npay\\npayable\\npayably\\npaycheck\\npaychecks\\npayday\\npaydays\\npayed\\npayee\\npayees\\npayer\\npayers\\npaying\\npayload\\npayloads\\npayment\\npayments\\npaynim\\npaynims\\npayoff\\npayoffs\\npayola\\npayolas\\npayor\\npayors\\npayroll\\npayrolls\\npays\\npe\\npea\\npeace\\npeaceable\\npeaceably\\npeaced\\npeaceful\\npeacefuller\\npeacefullest\\npeacefully\\npeacekeeper\\npeacekeepers\\npeacekeeping\\npeacekeepings\\npeacemaker\\npeacemakers\\npeaces\\npeacetime\\npeacetimes\\npeach\\npeached\\npeacher\\npeachers\\npeaches\\npeachier\\npeachiest\\npeaching\\npeachy\\npeacing\\npeacoat\\npeacoats\\npeacock\\npeacocked\\npeacockier\\npeacockiest\\npeacocking\\npeacocks\\npeacocky\\npeafowl\\npeafowls\\npeag\\npeage\\npeages\\npeags\\npeahen\\npeahens\\npeak\\npeaked\\npeakier\\npeakiest\\npeaking\\npeakish\\npeakless\\npeaklike\\npeaks\\npeaky\\npeal\\npealed\\npealike\\npealing\\npeals\\npean\\npeans\\npeanut\\npeanuts\\npear\\npearl\\npearlash\\npearlashes\\npearled\\npearler\\npearlers\\npearlier\\npearliest\\npearling\\npearlite\\npearlites\\npearls\\npearly\\npearmain\\npearmains\\npears\\npeart\\npearter\\npeartest\\npeartly\\npeas\\npeasant\\npeasantries\\npeasantry\\npeasants\\npeascod\\npeascods\\npease\\npeasecod\\npeasecods\\npeasen\\npeases\\npeat\\npeatier\\npeatiest\\npeats\\npeaty\\npeavey\\npeaveys\\npeavies\\npeavy\\npebble\\npebbled\\npebbles\\npebblier\\npebbliest\\npebbling\\npebbly\\npecan\\npecans\\npeccable\\npeccadillo\\npeccadilloes\\npeccadillos\\npeccancies\\npeccancy\\npeccant\\npeccaries\\npeccary\\npeccavi\\npeccavis\\npech\\npechan\\npechans\\npeched\\npeching\\npechs\\npeck\\npecked\\npecker\\npeckers\\npeckier\\npeckiest\\npecking\\npecks\\npecky\\npectase\\npectases\\npectate\\npectates\\npecten\\npectens\\npectic\\npectin\\npectines\\npectins\\npectize\\npectized\\npectizes\\npectizing\\npectoral\\npectorals\\npeculatation\\npeculatations\\npeculate\\npeculated\\npeculates\\npeculating\\npeculia\\npeculiar\\npeculiarities\\npeculiarity\\npeculiarly\\npeculiars\\npeculium\\npecuniary\\nped\\npedagog\\npedagogic\\npedagogical\\npedagogies\\npedagogs\\npedagogue\\npedagogues\\npedagogy\\npedal\\npedaled\\npedalfer\\npedalfers\\npedalier\\npedaliers\\npedaling\\npedalled\\npedalling\\npedals\\npedant\\npedantic\\npedantries\\npedantry\\npedants\\npedate\\npedately\\npeddle\\npeddled\\npeddler\\npeddleries\\npeddlers\\npeddlery\\npeddles\\npeddling\\npederast\\npederasts\\npederasty\\npedes\\npedestal\\npedestaled\\npedestaling\\npedestalled\\npedestalling\\npedestals\\npedestrian\\npedestrians\\npediatric\\npediatrician\\npediatricians\\npediatrics\\npedicab\\npedicabs\\npedicel\\npedicels\\npedicle\\npedicled\\npedicles\\npedicure\\npedicured\\npedicures\\npedicuring\\npediform\\npedigree\\npedigrees\\npediment\\npediments\\npedipalp\\npedipalps\\npedlar\\npedlaries\\npedlars\\npedlary\\npedler\\npedlers\\npedocal\\npedocals\\npedologies\\npedology\\npedro\\npedros\\npeds\\npeduncle\\npeduncles\\npee\\npeebeen\\npeebeens\\npeed\\npeeing\\npeek\\npeekaboo\\npeekaboos\\npeeked\\npeeking\\npeeks\\npeel\\npeelable\\npeeled\\npeeler\\npeelers\\npeeling\\npeelings\\npeels\\npeen\\npeened\\npeening\\npeens\\npeep\\npeeped\\npeeper\\npeepers\\npeephole\\npeepholes\\npeeping\\npeeps\\npeepshow\\npeepshows\\npeepul\\npeepuls\\npeer\\npeerage\\npeerages\\npeered\\npeeress\\npeeresses\\npeerie\\npeeries\\npeering\\npeerless\\npeers\\npeery\\npees\\npeesweep\\npeesweeps\\npeetweet\\npeetweets\\npeeve\\npeeved\\npeeves\\npeeving\\npeevish\\npeevishly\\npeevishness\\npeevishnesses\\npeewee\\npeewees\\npeewit\\npeewits\\npeg\\npegboard\\npegboards\\npegbox\\npegboxes\\npegged\\npegging\\npegless\\npeglike\\npegs\\npeignoir\\npeignoirs\\npein\\npeined\\npeining\\npeins\\npeise\\npeised\\npeises\\npeising\\npekan\\npekans\\npeke\\npekes\\npekin\\npekins\\npekoe\\npekoes\\npelage\\npelages\\npelagial\\npelagic\\npele\\npelerine\\npelerines\\npeles\\npelf\\npelfs\\npelican\\npelicans\\npelisse\\npelisses\\npelite\\npelites\\npelitic\\npellagra\\npellagras\\npellet\\npelletal\\npelleted\\npelleting\\npelletize\\npelletized\\npelletizes\\npelletizing\\npellets\\npellicle\\npellicles\\npellmell\\npellmells\\npellucid\\npelon\\npeloria\\npelorian\\npelorias\\npeloric\\npelorus\\npeloruses\\npelota\\npelotas\\npelt\\npeltast\\npeltasts\\npeltate\\npelted\\npelter\\npelters\\npelting\\npeltries\\npeltry\\npelts\\npelves\\npelvic\\npelvics\\npelvis\\npelvises\\npembina\\npembinas\\npemican\\npemicans\\npemmican\\npemmicans\\npemoline\\npemolines\\npemphix\\npemphixes\\npen\\npenal\\npenalise\\npenalised\\npenalises\\npenalising\\npenalities\\npenality\\npenalize\\npenalized\\npenalizes\\npenalizing\\npenally\\npenalties\\npenalty\\npenance\\npenanced\\npenances\\npenancing\\npenang\\npenangs\\npenates\\npence\\npencel\\npencels\\npenchant\\npenchants\\npencil\\npenciled\\npenciler\\npencilers\\npenciling\\npencilled\\npencilling\\npencils\\npend\\npendaflex\\npendant\\npendants\\npended\\npendencies\\npendency\\npendent\\npendents\\npending\\npends\\npendular\\npendulous\\npendulum\\npendulums\\npenes\\npenetrable\\npenetration\\npenetrations\\npenetrative\\npengo\\npengos\\npenguin\\npenguins\\npenial\\npenicil\\npenicillin\\npenicillins\\npenicils\\npenile\\npeninsula\\npeninsular\\npeninsulas\\npenis\\npenises\\npenitence\\npenitences\\npenitent\\npenitential\\npenitentiaries\\npenitentiary\\npenitents\\npenknife\\npenknives\\npenlight\\npenlights\\npenlite\\npenlites\\npenman\\npenmanship\\npenmanships\\npenmen\\npenna\\npennae\\npenname\\npennames\\npennant\\npennants\\npennate\\npennated\\npenned\\npenner\\npenners\\npenni\\npennia\\npennies\\npenniless\\npennine\\npennines\\npenning\\npennis\\npennon\\npennoned\\npennons\\npennsylvania\\npenny\\npenoche\\npenoches\\npenologies\\npenology\\npenoncel\\npenoncels\\npenpoint\\npenpoints\\npens\\npensee\\npensees\\npensil\\npensile\\npensils\\npension\\npensione\\npensioned\\npensioner\\npensioners\\npensiones\\npensioning\\npensions\\npensive\\npensively\\npenster\\npensters\\npenstock\\npenstocks\\npent\\npentacle\\npentacles\\npentad\\npentads\\npentagon\\npentagonal\\npentagons\\npentagram\\npentagrams\\npentameter\\npentameters\\npentane\\npentanes\\npentarch\\npentarchs\\npenthouse\\npenthouses\\npentomic\\npentosan\\npentosans\\npentose\\npentoses\\npentyl\\npentyls\\npenuche\\npenuches\\npenuchi\\npenuchis\\npenuchle\\npenuchles\\npenuckle\\npenuckles\\npenult\\npenults\\npenumbra\\npenumbrae\\npenumbras\\npenuries\\npenurious\\npenury\\npeon\\npeonage\\npeonages\\npeones\\npeonies\\npeonism\\npeonisms\\npeons\\npeony\\npeople\\npeopled\\npeopler\\npeoplers\\npeoples\\npeopling\\npep\\npeperoni\\npeperonis\\npepla\\npeplos\\npeploses\\npeplum\\npeplumed\\npeplums\\npeplus\\npepluses\\npepo\\npeponida\\npeponidas\\npeponium\\npeponiums\\npepos\\npepped\\npepper\\npeppercorn\\npeppercorns\\npeppered\\npepperer\\npepperers\\npeppering\\npeppermint\\npeppermints\\npeppers\\npeppery\\npeppier\\npeppiest\\npeppily\\npepping\\npeppy\\npeps\\npepsin\\npepsine\\npepsines\\npepsins\\npeptic\\npeptics\\npeptid\\npeptide\\npeptides\\npeptidic\\npeptids\\npeptize\\npeptized\\npeptizer\\npeptizers\\npeptizes\\npeptizing\\npeptone\\npeptones\\npeptonic\\nper\\nperacid\\nperacids\\nperambulate\\nperambulated\\nperambulates\\nperambulating\\nperambulation\\nperambulations\\npercale\\npercales\\nperceivable\\nperceive\\nperceived\\nperceives\\nperceiving\\npercent\\npercentage\\npercentages\\npercentile\\npercentiles\\npercents\\npercept\\nperceptible\\nperceptibly\\nperception\\nperceptions\\nperceptive\\nperceptively\\npercepts\\nperch\\nperched\\npercher\\nperchers\\nperches\\nperching\\npercoid\\npercoids\\npercolate\\npercolated\\npercolates\\npercolating\\npercolator\\npercolators\\npercuss\\npercussed\\npercusses\\npercussing\\npercussion\\npercussions\\nperdu\\nperdue\\nperdues\\nperdus\\nperdy\\npere\\nperegrin\\nperegrins\\nperemptorily\\nperemptory\\nperennial\\nperennially\\nperennials\\nperes\\nperfect\\nperfecta\\nperfectas\\nperfected\\nperfecter\\nperfectest\\nperfectibilities\\nperfectibility\\nperfectible\\nperfecting\\nperfection\\nperfectionist\\nperfectionists\\nperfections\\nperfectly\\nperfectness\\nperfectnesses\\nperfecto\\nperfectos\\nperfects\\nperfidies\\nperfidious\\nperfidiously\\nperfidy\\nperforate\\nperforated\\nperforates\\nperforating\\nperforation\\nperforations\\nperforce\\nperform\\nperformance\\nperformances\\nperformed\\nperformer\\nperformers\\nperforming\\nperforms\\nperfume\\nperfumed\\nperfumer\\nperfumers\\nperfumes\\nperfuming\\nperfunctory\\nperfuse\\nperfused\\nperfuses\\nperfusing\\npergola\\npergolas\\nperhaps\\nperhapses\\nperi\\nperianth\\nperianths\\nperiapt\\nperiapts\\nperiblem\\nperiblems\\npericarp\\npericarps\\npericopae\\npericope\\npericopes\\nperiderm\\nperiderms\\nperidia\\nperidial\\nperidium\\nperidot\\nperidots\\nperigeal\\nperigean\\nperigee\\nperigees\\nperigon\\nperigons\\nperigynies\\nperigyny\\nperil\\nperiled\\nperiling\\nperilla\\nperillas\\nperilled\\nperilling\\nperilous\\nperilously\\nperils\\nperilune\\nperilunes\\nperimeter\\nperimeters\\nperinea\\nperineal\\nperineum\\nperiod\\nperiodic\\nperiodical\\nperiodically\\nperiodicals\\nperiodid\\nperiodids\\nperiods\\nperiotic\\nperipatetic\\nperipeties\\nperipety\\nperipheral\\nperipheries\\nperiphery\\nperipter\\nperipters\\nperique\\nperiques\\nperis\\nperisarc\\nperisarcs\\nperiscope\\nperiscopes\\nperish\\nperishable\\nperishables\\nperished\\nperishes\\nperishing\\nperiwig\\nperiwigs\\nperjure\\nperjured\\nperjurer\\nperjurers\\nperjures\\nperjuries\\nperjuring\\nperjury\\nperk\\nperked\\nperkier\\nperkiest\\nperkily\\nperking\\nperkish\\nperks\\nperky\\nperlite\\nperlites\\nperlitic\\nperm\\npermanence\\npermanences\\npermanencies\\npermanency\\npermanent\\npermanently\\npermanents\\npermeability\\npermeable\\npermease\\npermeases\\npermeate\\npermeated\\npermeates\\npermeating\\npermeation\\npermeations\\npermissible\\npermission\\npermissions\\npermissive\\npermissiveness\\npermissivenesses\\npermit\\npermits\\npermitted\\npermitting\\nperms\\npermute\\npermuted\\npermutes\\npermuting\\npernicious\\nperniciously\\nperoneal\\nperoral\\nperorate\\nperorated\\nperorates\\nperorating\\nperoxid\\nperoxide\\nperoxided\\nperoxides\\nperoxiding\\nperoxids\\nperpend\\nperpended\\nperpendicular\\nperpendicularities\\nperpendicularity\\nperpendicularly\\nperpendiculars\\nperpending\\nperpends\\nperpent\\nperpents\\nperpetrate\\nperpetrated\\nperpetrates\\nperpetrating\\nperpetration\\nperpetrations\\nperpetrator\\nperpetrators\\nperpetual\\nperpetually\\nperpetuate\\nperpetuated\\nperpetuates\\nperpetuating\\nperpetuation\\nperpetuations\\nperpetuities\\nperpetuity\\nperplex\\nperplexed\\nperplexes\\nperplexing\\nperplexities\\nperplexity\\nperquisite\\nperquisites\\nperries\\nperron\\nperrons\\nperry\\npersalt\\npersalts\\nperse\\npersecute\\npersecuted\\npersecutes\\npersecuting\\npersecution\\npersecutions\\npersecutor\\npersecutors\\nperses\\nperseverance\\nperseverances\\npersevere\\npersevered\\nperseveres\\npersevering\\npersist\\npersisted\\npersistence\\npersistences\\npersistencies\\npersistency\\npersistent\\npersistently\\npersisting\\npersists\\nperson\\npersona\\npersonable\\npersonae\\npersonage\\npersonages\\npersonal\\npersonalities\\npersonality\\npersonalize\\npersonalized\\npersonalizes\\npersonalizing\\npersonally\\npersonals\\npersonas\\npersonification\\npersonifications\\npersonifies\\npersonify\\npersonnel\\npersons\\nperspective\\nperspectives\\nperspicacious\\nperspicacities\\nperspicacity\\nperspiration\\nperspirations\\nperspire\\nperspired\\nperspires\\nperspiring\\nperspiry\\npersuade\\npersuaded\\npersuades\\npersuading\\npersuasion\\npersuasions\\npersuasive\\npersuasively\\npersuasiveness\\npersuasivenesses\\npert\\npertain\\npertained\\npertaining\\npertains\\nperter\\npertest\\npertinacious\\npertinacities\\npertinacity\\npertinence\\npertinences\\npertinent\\npertly\\npertness\\npertnesses\\nperturb\\nperturbation\\nperturbations\\nperturbed\\nperturbing\\nperturbs\\nperuke\\nperukes\\nperusal\\nperusals\\nperuse\\nperused\\nperuser\\nperusers\\nperuses\\nperusing\\npervade\\npervaded\\npervader\\npervaders\\npervades\\npervading\\npervasive\\nperverse\\nperversely\\nperverseness\\nperversenesses\\nperversion\\nperversions\\nperversities\\nperversity\\npervert\\nperverted\\nperverting\\nperverts\\npervious\\npes\\npesade\\npesades\\npeseta\\npesetas\\npesewa\\npesewas\\npeskier\\npeskiest\\npeskily\\npesky\\npeso\\npesos\\npessaries\\npessary\\npessimism\\npessimisms\\npessimist\\npessimistic\\npessimists\\npest\\npester\\npestered\\npesterer\\npesterers\\npestering\\npesters\\npesthole\\npestholes\\npestilence\\npestilences\\npestilent\\npestle\\npestled\\npestles\\npestling\\npests\\npet\\npetal\\npetaled\\npetaline\\npetalled\\npetalodies\\npetalody\\npetaloid\\npetalous\\npetals\\npetard\\npetards\\npetasos\\npetasoses\\npetasus\\npetasuses\\npetcock\\npetcocks\\npetechia\\npetechiae\\npeter\\npetered\\npetering\\npeters\\npetiolar\\npetiole\\npetioled\\npetioles\\npetit\\npetite\\npetites\\npetition\\npetitioned\\npetitioner\\npetitioners\\npetitioning\\npetitions\\npetrel\\npetrels\\npetri\\npetrifaction\\npetrifactions\\npetrified\\npetrifies\\npetrify\\npetrifying\\npetrol\\npetroleum\\npetroleums\\npetrolic\\npetrols\\npetronel\\npetronels\\npetrosal\\npetrous\\npets\\npetted\\npettedly\\npetter\\npetters\\npetti\\npetticoat\\npetticoats\\npettier\\npettiest\\npettifog\\npettifogged\\npettifogging\\npettifogs\\npettily\\npettiness\\npettinesses\\npetting\\npettish\\npettle\\npettled\\npettles\\npettling\\npetto\\npetty\\npetulance\\npetulances\\npetulant\\npetulantly\\npetunia\\npetunias\\npetuntse\\npetuntses\\npetuntze\\npetuntzes\\npew\\npewee\\npewees\\npewit\\npewits\\npews\\npewter\\npewterer\\npewterers\\npewters\\npeyote\\npeyotes\\npeyotl\\npeyotls\\npeytral\\npeytrals\\npeytrel\\npeytrels\\npfennig\\npfennige\\npfennigs\\nphaeton\\nphaetons\\nphage\\nphages\\nphalange\\nphalanges\\nphalanx\\nphalanxes\\nphalli\\nphallic\\nphallics\\nphallism\\nphallisms\\nphallist\\nphallists\\nphallus\\nphalluses\\nphantasied\\nphantasies\\nphantasm\\nphantasms\\nphantast\\nphantasts\\nphantasy\\nphantasying\\nphantom\\nphantoms\\npharaoh\\npharaohs\\npharisaic\\npharisee\\npharisees\\npharmaceutical\\npharmaceuticals\\npharmacies\\npharmacist\\npharmacologic\\npharmacological\\npharmacologist\\npharmacologists\\npharmacology\\npharmacy\\npharos\\npharoses\\npharyngeal\\npharynges\\npharynx\\npharynxes\\nphase\\nphaseal\\nphased\\nphaseout\\nphaseouts\\nphases\\nphasic\\nphasing\\nphasis\\nphasmid\\nphasmids\\nphat\\nphatic\\npheasant\\npheasants\\nphellem\\nphellems\\nphelonia\\nphenazin\\nphenazins\\nphenetic\\nphenetol\\nphenetols\\nphenix\\nphenixes\\nphenol\\nphenolic\\nphenolics\\nphenols\\nphenom\\nphenomena\\nphenomenal\\nphenomenon\\nphenomenons\\nphenoms\\nphenyl\\nphenylic\\nphenyls\\nphew\\nphi\\nphial\\nphials\\nphilabeg\\nphilabegs\\nphiladelphia\\nphilander\\nphilandered\\nphilanderer\\nphilanderers\\nphilandering\\nphilanders\\nphilanthropic\\nphilanthropies\\nphilanthropist\\nphilanthropists\\nphilanthropy\\nphilatelies\\nphilatelist\\nphilatelists\\nphilately\\nphilharmonic\\nphilibeg\\nphilibegs\\nphilistine\\nphilistines\\nphilodendron\\nphilodendrons\\nphilomel\\nphilomels\\nphilosopher\\nphilosophers\\nphilosophic\\nphilosophical\\nphilosophically\\nphilosophies\\nphilosophize\\nphilosophized\\nphilosophizes\\nphilosophizing\\nphilosophy\\nphilter\\nphiltered\\nphiltering\\nphilters\\nphiltre\\nphiltred\\nphiltres\\nphiltring\\nphimoses\\nphimosis\\nphimotic\\nphis\\nphiz\\nphizes\\nphlebitis\\nphlegm\\nphlegmatic\\nphlegmier\\nphlegmiest\\nphlegms\\nphlegmy\\nphloem\\nphloems\\nphlox\\nphloxes\\nphobia\\nphobias\\nphobic\\nphocine\\nphoebe\\nphoebes\\nphoenix\\nphoenixes\\nphon\\nphonal\\nphonate\\nphonated\\nphonates\\nphonating\\nphone\\nphoned\\nphoneme\\nphonemes\\nphonemic\\nphones\\nphonetic\\nphonetician\\nphoneticians\\nphonetics\\nphoney\\nphoneys\\nphonic\\nphonics\\nphonier\\nphonies\\nphoniest\\nphonily\\nphoning\\nphono\\nphonograph\\nphonographally\\nphonographic\\nphonographs\\nphonon\\nphonons\\nphonos\\nphons\\nphony\\nphooey\\nphorate\\nphorates\\nphosgene\\nphosgenes\\nphosphatase\\nphosphate\\nphosphates\\nphosphatic\\nphosphid\\nphosphids\\nphosphin\\nphosphins\\nphosphor\\nphosphorescence\\nphosphorescences\\nphosphorescent\\nphosphorescently\\nphosphoric\\nphosphorous\\nphosphors\\nphosphorus\\nphot\\nphotic\\nphotics\\nphoto\\nphotoed\\nphotoelectric\\nphotoelectrically\\nphotog\\nphotogenic\\nphotograph\\nphotographally\\nphotographed\\nphotographer\\nphotographers\\nphotographic\\nphotographies\\nphotographing\\nphotographs\\nphotography\\nphotogs\\nphotoing\\nphotomap\\nphotomapped\\nphotomapping\\nphotomaps\\nphoton\\nphotonic\\nphotons\\nphotopia\\nphotopias\\nphotopic\\nphotos\\nphotoset\\nphotosets\\nphotosetting\\nphotosynthesis\\nphotosynthesises\\nphotosynthesize\\nphotosynthesized\\nphotosynthesizes\\nphotosynthesizing\\nphotosynthetic\\nphots\\nphpht\\nphrasal\\nphrase\\nphrased\\nphraseologies\\nphraseology\\nphrases\\nphrasing\\nphrasings\\nphratral\\nphratric\\nphratries\\nphratry\\nphreatic\\nphrenic\\nphrensied\\nphrensies\\nphrensy\\nphrensying\\npht\\nphthalic\\nphthalin\\nphthalins\\nphthises\\nphthisic\\nphthisics\\nphthisis\\nphyla\\nphylae\\nphylar\\nphylaxis\\nphylaxises\\nphyle\\nphyleses\\nphylesis\\nphylesises\\nphyletic\\nphylic\\nphyllaries\\nphyllary\\nphyllite\\nphyllites\\nphyllode\\nphyllodes\\nphylloid\\nphylloids\\nphyllome\\nphyllomes\\nphylon\\nphylum\\nphyses\\nphysic\\nphysical\\nphysically\\nphysicals\\nphysician\\nphysicians\\nphysicist\\nphysicists\\nphysicked\\nphysicking\\nphysics\\nphysiognomies\\nphysiognomy\\nphysiologic\\nphysiological\\nphysiologies\\nphysiologist\\nphysiologists\\nphysiology\\nphysiotherapies\\nphysiotherapy\\nphysique\\nphysiques\\nphysis\\nphytane\\nphytanes\\nphytin\\nphytins\\nphytoid\\nphyton\\nphytonic\\nphytons\\npi\\npia\\npiacular\\npiaffe\\npiaffed\\npiaffer\\npiaffers\\npiaffes\\npiaffing\\npial\\npian\\npianic\\npianism\\npianisms\\npianist\\npianists\\npiano\\npianos\\npians\\npias\\npiasaba\\npiasabas\\npiasava\\npiasavas\\npiassaba\\npiassabas\\npiassava\\npiassavas\\npiaster\\npiasters\\npiastre\\npiastres\\npiazza\\npiazzas\\npiazze\\npibroch\\npibrochs\\npic\\npica\\npicacho\\npicachos\\npicador\\npicadores\\npicadors\\npical\\npicara\\npicaras\\npicaro\\npicaroon\\npicarooned\\npicarooning\\npicaroons\\npicaros\\npicas\\npicayune\\npicayunes\\npiccolo\\npiccolos\\npice\\npiceous\\npick\\npickadil\\npickadils\\npickax\\npickaxe\\npickaxed\\npickaxes\\npickaxing\\npicked\\npickeer\\npickeered\\npickeering\\npickeers\\npicker\\npickerel\\npickerels\\npickers\\npicket\\npicketed\\npicketer\\npicketers\\npicketing\\npickets\\npickier\\npickiest\\npicking\\npickings\\npickle\\npickled\\npickles\\npickling\\npicklock\\npicklocks\\npickoff\\npickoffs\\npickpocket\\npickpockets\\npicks\\npickup\\npickups\\npickwick\\npickwicks\\npicky\\npicloram\\npiclorams\\npicnic\\npicnicked\\npicnicking\\npicnicky\\npicnics\\npicogram\\npicograms\\npicolin\\npicoline\\npicolines\\npicolins\\npicot\\npicoted\\npicotee\\npicotees\\npicoting\\npicots\\npicquet\\npicquets\\npicrate\\npicrated\\npicrates\\npicric\\npicrite\\npicrites\\npics\\npictorial\\npicture\\npictured\\npictures\\npicturesque\\npicturesqueness\\npicturesquenesses\\npicturing\\npicul\\npiculs\\npiddle\\npiddled\\npiddler\\npiddlers\\npiddles\\npiddling\\npiddock\\npiddocks\\npidgin\\npidgins\\npie\\npiebald\\npiebalds\\npiece\\npieced\\npiecemeal\\npiecer\\npiecers\\npieces\\npiecing\\npiecings\\npiecrust\\npiecrusts\\npied\\npiedfort\\npiedforts\\npiedmont\\npiedmonts\\npiefort\\npieforts\\npieing\\npieplant\\npieplants\\npier\\npierce\\npierced\\npiercer\\npiercers\\npierces\\npiercing\\npierrot\\npierrots\\npiers\\npies\\npieta\\npietas\\npieties\\npietism\\npietisms\\npietist\\npietists\\npiety\\npiffle\\npiffled\\npiffles\\npiffling\\npig\\npigboat\\npigboats\\npigeon\\npigeonhole\\npigeonholed\\npigeonholes\\npigeonholing\\npigeons\\npigfish\\npigfishes\\npigged\\npiggeries\\npiggery\\npiggie\\npiggies\\npiggin\\npigging\\npiggins\\npiggish\\npiggy\\npiggyback\\npigheaded\\npiglet\\npiglets\\npigment\\npigmentation\\npigmentations\\npigmented\\npigmenting\\npigments\\npigmies\\npigmy\\npignora\\npignus\\npignut\\npignuts\\npigpen\\npigpens\\npigs\\npigskin\\npigskins\\npigsney\\npigsneys\\npigstick\\npigsticked\\npigsticking\\npigsticks\\npigsties\\npigsty\\npigtail\\npigtails\\npigweed\\npigweeds\\npiing\\npika\\npikake\\npikakes\\npikas\\npike\\npiked\\npikeman\\npikemen\\npiker\\npikers\\npikes\\npikestaff\\npikestaves\\npiking\\npilaf\\npilaff\\npilaffs\\npilafs\\npilar\\npilaster\\npilasters\\npilau\\npilaus\\npilaw\\npilaws\\npilchard\\npilchards\\npile\\npilea\\npileate\\npileated\\npiled\\npilei\\npileous\\npiles\\npileum\\npileup\\npileups\\npileus\\npilewort\\npileworts\\npilfer\\npilfered\\npilferer\\npilferers\\npilfering\\npilfers\\npilgrim\\npilgrimage\\npilgrimages\\npilgrims\\npili\\npiliform\\npiling\\npilings\\npilis\\npill\\npillage\\npillaged\\npillager\\npillagers\\npillages\\npillaging\\npillar\\npillared\\npillaring\\npillars\\npillbox\\npillboxes\\npilled\\npilling\\npillion\\npillions\\npilloried\\npillories\\npillory\\npillorying\\npillow\\npillowcase\\npillowcases\\npillowed\\npillowing\\npillows\\npillowy\\npills\\npilose\\npilosities\\npilosity\\npilot\\npilotage\\npilotages\\npiloted\\npiloting\\npilotings\\npilotless\\npilots\\npilous\\npilsener\\npilseners\\npilsner\\npilsners\\npilular\\npilule\\npilules\\npilus\\npily\\npima\\npimas\\npimento\\npimentos\\npimiento\\npimientos\\npimp\\npimped\\npimping\\npimple\\npimpled\\npimples\\npimplier\\npimpliest\\npimply\\npimps\\npin\\npina\\npinafore\\npinafores\\npinang\\npinangs\\npinas\\npinaster\\npinasters\\npinata\\npinatas\\npinball\\npinballs\\npinbone\\npinbones\\npincer\\npincers\\npinch\\npinchbug\\npinchbugs\\npincheck\\npinchecks\\npinched\\npincher\\npinchers\\npinches\\npinchhitter\\npinchhitters\\npinching\\npincushion\\npincushions\\npinder\\npinders\\npindling\\npine\\npineal\\npineapple\\npineapples\\npinecone\\npinecones\\npined\\npinelike\\npinene\\npinenes\\npineries\\npinery\\npines\\npinesap\\npinesaps\\npineta\\npinetum\\npinewood\\npinewoods\\npiney\\npinfeather\\npinfeathers\\npinfish\\npinfishes\\npinfold\\npinfolded\\npinfolding\\npinfolds\\nping\\npinged\\npinger\\npingers\\npinging\\npingo\\npingos\\npingrass\\npingrasses\\npings\\npinguid\\npinhead\\npinheads\\npinhole\\npinholes\\npinier\\npiniest\\npining\\npinion\\npinioned\\npinioning\\npinions\\npinite\\npinites\\npink\\npinked\\npinker\\npinkest\\npinkeye\\npinkeyes\\npinkie\\npinkies\\npinking\\npinkings\\npinkish\\npinkly\\npinkness\\npinknesses\\npinko\\npinkoes\\npinkos\\npinkroot\\npinkroots\\npinks\\npinky\\npinna\\npinnace\\npinnaces\\npinnacle\\npinnacled\\npinnacles\\npinnacling\\npinnae\\npinnal\\npinnas\\npinnate\\npinnated\\npinned\\npinner\\npinners\\npinning\\npinniped\\npinnipeds\\npinnula\\npinnulae\\npinnular\\npinnule\\npinnules\\npinochle\\npinochles\\npinocle\\npinocles\\npinole\\npinoles\\npinon\\npinones\\npinons\\npinpoint\\npinpointed\\npinpointing\\npinpoints\\npinprick\\npinpricked\\npinpricking\\npinpricks\\npins\\npinscher\\npinschers\\npint\\npinta\\npintada\\npintadas\\npintado\\npintadoes\\npintados\\npintail\\npintails\\npintano\\npintanos\\npintas\\npintle\\npintles\\npinto\\npintoes\\npintos\\npints\\npintsize\\npinup\\npinups\\npinwale\\npinwales\\npinweed\\npinweeds\\npinwheel\\npinwheels\\npinwork\\npinworks\\npinworm\\npinworms\\npiny\\npinyon\\npinyons\\npiolet\\npiolets\\npion\\npioneer\\npioneered\\npioneering\\npioneers\\npionic\\npions\\npiosities\\npiosity\\npious\\npiously\\npip\\npipage\\npipages\\npipal\\npipals\\npipe\\npipeage\\npipeages\\npiped\\npipefish\\npipefishes\\npipeful\\npipefuls\\npipeless\\npipelike\\npipeline\\npipelined\\npipelines\\npipelining\\npiper\\npiperine\\npiperines\\npipers\\npipes\\npipestem\\npipestems\\npipet\\npipets\\npipette\\npipetted\\npipettes\\npipetting\\npipier\\npipiest\\npiping\\npipingly\\npipings\\npipit\\npipits\\npipkin\\npipkins\\npipped\\npippin\\npipping\\npippins\\npips\\npipy\\npiquancies\\npiquancy\\npiquant\\npique\\npiqued\\npiques\\npiquet\\npiquets\\npiquing\\npiracies\\npiracy\\npiragua\\npiraguas\\npirana\\npiranas\\npiranha\\npiranhas\\npirarucu\\npirarucus\\npirate\\npirated\\npirates\\npiratic\\npiratical\\npirating\\npiraya\\npirayas\\npirn\\npirns\\npirog\\npirogen\\npiroghi\\npirogi\\npirogue\\npirogues\\npirojki\\npiroque\\npiroques\\npiroshki\\npirouette\\npirouetted\\npirouettes\\npirouetting\\npirozhki\\npirozhok\\npis\\npiscaries\\npiscary\\npiscator\\npiscators\\npiscina\\npiscinae\\npiscinal\\npiscinas\\npiscine\\npish\\npished\\npishes\\npishing\\npisiform\\npisiforms\\npismire\\npismires\\npismo\\npisolite\\npisolites\\npiss\\npissant\\npissants\\npissed\\npisses\\npissing\\npissoir\\npissoirs\\npistache\\npistaches\\npistachio\\npistil\\npistillate\\npistils\\npistol\\npistole\\npistoled\\npistoles\\npistoling\\npistolled\\npistolling\\npistols\\npiston\\npistons\\npit\\npita\\npitapat\\npitapats\\npitapatted\\npitapatting\\npitas\\npitch\\npitchblende\\npitchblendes\\npitched\\npitcher\\npitchers\\npitches\\npitchfork\\npitchforks\\npitchier\\npitchiest\\npitchily\\npitching\\npitchman\\npitchmen\\npitchout\\npitchouts\\npitchy\\npiteous\\npiteously\\npitfall\\npitfalls\\npith\\npithead\\npitheads\\npithed\\npithier\\npithiest\\npithily\\npithing\\npithless\\npiths\\npithy\\npitiable\\npitiably\\npitied\\npitier\\npitiers\\npities\\npitiful\\npitifuller\\npitifullest\\npitifully\\npitiless\\npitilessly\\npitman\\npitmans\\npitmen\\npiton\\npitons\\npits\\npitsaw\\npitsaws\\npittance\\npittances\\npitted\\npitting\\npittings\\npittsburgh\\npituitary\\npity\\npitying\\npiu\\npivot\\npivotal\\npivoted\\npivoting\\npivots\\npix\\npixes\\npixie\\npixieish\\npixies\\npixiness\\npixinesses\\npixy\\npixyish\\npixys\\npizazz\\npizazzes\\npizza\\npizzas\\npizzeria\\npizzerias\\npizzle\\npizzles\\nplacable\\nplacably\\nplacard\\nplacarded\\nplacarding\\nplacards\\nplacate\\nplacated\\nplacater\\nplacaters\\nplacates\\nplacating\\nplace\\nplacebo\\nplaceboes\\nplacebos\\nplaced\\nplaceman\\nplacemen\\nplacement\\nplacements\\nplacenta\\nplacentae\\nplacental\\nplacentas\\nplacer\\nplacers\\nplaces\\nplacet\\nplacets\\nplacid\\nplacidly\\nplacing\\nplack\\nplacket\\nplackets\\nplacks\\nplacoid\\nplacoids\\nplafond\\nplafonds\\nplagal\\nplage\\nplages\\nplagiaries\\nplagiarism\\nplagiarisms\\nplagiarist\\nplagiarists\\nplagiarize\\nplagiarized\\nplagiarizes\\nplagiarizing\\nplagiary\\nplague\\nplagued\\nplaguer\\nplaguers\\nplagues\\nplaguey\\nplaguily\\nplaguing\\nplaguy\\nplaice\\nplaices\\nplaid\\nplaided\\nplaids\\nplain\\nplained\\nplainer\\nplainest\\nplaining\\nplainly\\nplainness\\nplainnesses\\nplains\\nplaint\\nplaintiff\\nplaintiffs\\nplaintive\\nplaintively\\nplaints\\nplaister\\nplaistered\\nplaistering\\nplaisters\\nplait\\nplaited\\nplaiter\\nplaiters\\nplaiting\\nplaitings\\nplaits\\nplan\\nplanar\\nplanaria\\nplanarias\\nplanate\\nplanch\\nplanche\\nplanches\\nplanchet\\nplanchets\\nplane\\nplaned\\nplaner\\nplaners\\nplanes\\nplanet\\nplanetaria\\nplanetarium\\nplanetariums\\nplanetary\\nplanets\\nplanform\\nplanforms\\nplangent\\nplaning\\nplanish\\nplanished\\nplanishes\\nplanishing\\nplank\\nplanked\\nplanking\\nplankings\\nplanks\\nplankter\\nplankters\\nplankton\\nplanktonic\\nplanktons\\nplanless\\nplanned\\nplanner\\nplanners\\nplanning\\nplannings\\nplanosol\\nplanosols\\nplans\\nplant\\nplantain\\nplantains\\nplantar\\nplantation\\nplantations\\nplanted\\nplanter\\nplanters\\nplanting\\nplantings\\nplants\\nplanula\\nplanulae\\nplanular\\nplaque\\nplaques\\nplash\\nplashed\\nplasher\\nplashers\\nplashes\\nplashier\\nplashiest\\nplashing\\nplashy\\nplasm\\nplasma\\nplasmas\\nplasmatic\\nplasmic\\nplasmid\\nplasmids\\nplasmin\\nplasmins\\nplasmoid\\nplasmoids\\nplasmon\\nplasmons\\nplasms\\nplaster\\nplastered\\nplasterer\\nplasterers\\nplastering\\nplasters\\nplastery\\nplastic\\nplasticities\\nplasticity\\nplastics\\nplastid\\nplastids\\nplastral\\nplastron\\nplastrons\\nplastrum\\nplastrums\\nplat\\nplatan\\nplatane\\nplatanes\\nplatans\\nplate\\nplateau\\nplateaued\\nplateauing\\nplateaus\\nplateaux\\nplated\\nplateful\\nplatefuls\\nplatelet\\nplatelets\\nplaten\\nplatens\\nplater\\nplaters\\nplates\\nplatesful\\nplatform\\nplatforms\\nplatier\\nplaties\\nplatiest\\nplatina\\nplatinas\\nplating\\nplatings\\nplatinic\\nplatinum\\nplatinums\\nplatitude\\nplatitudes\\nplatitudinous\\nplatonic\\nplatoon\\nplatooned\\nplatooning\\nplatoons\\nplats\\nplatted\\nplatter\\nplatters\\nplatting\\nplaty\\nplatypi\\nplatypus\\nplatypuses\\nplatys\\nplaudit\\nplaudits\\nplausibilities\\nplausibility\\nplausible\\nplausibly\\nplausive\\nplay\\nplaya\\nplayable\\nplayact\\nplayacted\\nplayacting\\nplayactings\\nplayacts\\nplayas\\nplayback\\nplaybacks\\nplaybill\\nplaybills\\nplaybook\\nplaybooks\\nplayboy\\nplayboys\\nplayday\\nplaydays\\nplaydown\\nplaydowns\\nplayed\\nplayer\\nplayers\\nplayful\\nplayfully\\nplayfulness\\nplayfulnesses\\nplaygirl\\nplaygirls\\nplaygoer\\nplaygoers\\nplayground\\nplaygrounds\\nplayhouse\\nplayhouses\\nplaying\\nplayland\\nplaylands\\nplayless\\nplaylet\\nplaylets\\nplaylike\\nplaymate\\nplaymates\\nplayoff\\nplayoffs\\nplaypen\\nplaypens\\nplayroom\\nplayrooms\\nplays\\nplaysuit\\nplaysuits\\nplaything\\nplaythings\\nplaytime\\nplaytimes\\nplaywear\\nplaywears\\nplaywright\\nplaywrights\\nplaza\\nplazas\\nplea\\npleach\\npleached\\npleaches\\npleaching\\nplead\\npleaded\\npleader\\npleaders\\npleading\\npleadings\\npleads\\npleas\\npleasant\\npleasanter\\npleasantest\\npleasantly\\npleasantness\\npleasantnesses\\npleasantries\\nplease\\npleased\\npleaser\\npleasers\\npleases\\npleasing\\npleasingly\\npleasurable\\npleasurably\\npleasure\\npleasured\\npleasures\\npleasuring\\npleat\\npleated\\npleater\\npleaters\\npleating\\npleats\\npleb\\nplebe\\nplebeian\\nplebeians\\nplebes\\nplebiscite\\nplebiscites\\nplebs\\nplectra\\nplectron\\nplectrons\\nplectrum\\nplectrums\\npled\\npledge\\npledged\\npledgee\\npledgees\\npledgeor\\npledgeors\\npledger\\npledgers\\npledges\\npledget\\npledgets\\npledging\\npledgor\\npledgors\\npleiad\\npleiades\\npleiads\\nplena\\nplenary\\nplenipotentiaries\\nplenipotentiary\\nplenish\\nplenished\\nplenishes\\nplenishing\\nplenism\\nplenisms\\nplenist\\nplenists\\nplenitude\\nplenitudes\\nplenteous\\nplenties\\nplentiful\\nplentifully\\nplenty\\nplenum\\nplenums\\npleonasm\\npleonasms\\npleopod\\npleopods\\nplessor\\nplessors\\nplethora\\nplethoras\\npleura\\npleurae\\npleural\\npleuras\\npleurisies\\npleurisy\\npleuron\\npleuston\\npleustons\\nplexor\\nplexors\\nplexus\\nplexuses\\npliable\\npliably\\npliancies\\npliancy\\npliant\\npliantly\\nplica\\nplicae\\nplical\\nplicate\\nplicated\\nplie\\nplied\\nplier\\npliers\\nplies\\nplight\\nplighted\\nplighter\\nplighters\\nplighting\\nplights\\nplimsol\\nplimsole\\nplimsoles\\nplimsoll\\nplimsolls\\nplimsols\\nplink\\nplinked\\nplinker\\nplinkers\\nplinking\\nplinks\\nplinth\\nplinths\\npliskie\\npliskies\\nplisky\\nplisse\\nplisses\\nplod\\nplodded\\nplodder\\nplodders\\nplodding\\nploddingly\\nplods\\nploidies\\nploidy\\nplonk\\nplonked\\nplonking\\nplonks\\nplop\\nplopped\\nplopping\\nplops\\nplosion\\nplosions\\nplosive\\nplosives\\nplot\\nplotless\\nplots\\nplottage\\nplottages\\nplotted\\nplotter\\nplotters\\nplottier\\nplotties\\nplottiest\\nplotting\\nplotty\\nplough\\nploughed\\nplougher\\nploughers\\nploughing\\nploughs\\nplover\\nplovers\\nplow\\nplowable\\nplowback\\nplowbacks\\nplowboy\\nplowboys\\nplowed\\nplower\\nplowers\\nplowhead\\nplowheads\\nplowing\\nplowland\\nplowlands\\nplowman\\nplowmen\\nplows\\nplowshare\\nplowshares\\nploy\\nployed\\nploying\\nploys\\npluck\\nplucked\\nplucker\\npluckers\\npluckier\\npluckiest\\npluckily\\nplucking\\nplucks\\nplucky\\nplug\\nplugged\\nplugger\\npluggers\\nplugging\\nplugless\\nplugs\\npluguglies\\nplugugly\\nplum\\nplumage\\nplumaged\\nplumages\\nplumate\\nplumb\\nplumbago\\nplumbagos\\nplumbed\\nplumber\\nplumberies\\nplumbers\\nplumbery\\nplumbic\\nplumbing\\nplumbings\\nplumbism\\nplumbisms\\nplumbous\\nplumbs\\nplumbum\\nplumbums\\nplume\\nplumed\\nplumelet\\nplumelets\\nplumes\\nplumier\\nplumiest\\npluming\\nplumiped\\nplumipeds\\nplumlike\\nplummet\\nplummeted\\nplummeting\\nplummets\\nplummier\\nplummiest\\nplummy\\nplumose\\nplump\\nplumped\\nplumpen\\nplumpened\\nplumpening\\nplumpens\\nplumper\\nplumpers\\nplumpest\\nplumping\\nplumpish\\nplumply\\nplumpness\\nplumpnesses\\nplumps\\nplums\\nplumular\\nplumule\\nplumules\\nplumy\\nplunder\\nplundered\\nplundering\\nplunders\\nplunge\\nplunged\\nplunger\\nplungers\\nplunges\\nplunging\\nplunk\\nplunked\\nplunker\\nplunkers\\nplunking\\nplunks\\nplural\\npluralism\\npluralities\\nplurality\\npluralization\\npluralizations\\npluralize\\npluralized\\npluralizes\\npluralizing\\nplurally\\nplurals\\nplus\\npluses\\nplush\\nplusher\\nplushes\\nplushest\\nplushier\\nplushiest\\nplushily\\nplushly\\nplushy\\nplussage\\nplussages\\nplusses\\nplutocracies\\nplutocracy\\nplutocrat\\nplutocratic\\nplutocrats\\npluton\\nplutonic\\nplutonium\\nplutoniums\\nplutons\\npluvial\\npluvials\\npluviose\\npluvious\\nply\\nplyer\\nplyers\\nplying\\nplyingly\\nplywood\\nplywoods\\npneuma\\npneumas\\npneumatic\\npneumatically\\npneumonia\\npoaceous\\npoach\\npoached\\npoacher\\npoachers\\npoaches\\npoachier\\npoachiest\\npoaching\\npoachy\\npochard\\npochards\\npock\\npocked\\npocket\\npocketbook\\npocketbooks\\npocketed\\npocketer\\npocketers\\npocketful\\npocketfuls\\npocketing\\npocketknife\\npocketknives\\npockets\\npockier\\npockiest\\npockily\\npocking\\npockmark\\npockmarked\\npockmarking\\npockmarks\\npocks\\npocky\\npoco\\npocosin\\npocosins\\npod\\npodagra\\npodagral\\npodagras\\npodagric\\npodded\\npodding\\npodesta\\npodestas\\npodgier\\npodgiest\\npodgily\\npodgy\\npodia\\npodiatries\\npodiatrist\\npodiatry\\npodite\\npodites\\npoditic\\npodium\\npodiums\\npodomere\\npodomeres\\npods\\npodsol\\npodsolic\\npodsols\\npodzol\\npodzolic\\npodzols\\npoechore\\npoechores\\npoem\\npoems\\npoesies\\npoesy\\npoet\\npoetess\\npoetesses\\npoetic\\npoetical\\npoetics\\npoetise\\npoetised\\npoetiser\\npoetisers\\npoetises\\npoetising\\npoetize\\npoetized\\npoetizer\\npoetizers\\npoetizes\\npoetizing\\npoetless\\npoetlike\\npoetries\\npoetry\\npoets\\npogey\\npogeys\\npogies\\npogonia\\npogonias\\npogonip\\npogonips\\npogrom\\npogromed\\npogroming\\npogroms\\npogy\\npoh\\npoi\\npoignancies\\npoignancy\\npoignant\\npoilu\\npoilus\\npoind\\npoinded\\npoinding\\npoinds\\npoinsettia\\npoint\\npointe\\npointed\\npointer\\npointers\\npointes\\npointier\\npointiest\\npointing\\npointless\\npointman\\npointmen\\npoints\\npointy\\npois\\npoise\\npoised\\npoiser\\npoisers\\npoises\\npoising\\npoison\\npoisoned\\npoisoner\\npoisoners\\npoisoning\\npoisonous\\npoisons\\npoitrel\\npoitrels\\npoke\\npoked\\npoker\\npokeroot\\npokeroots\\npokers\\npokes\\npokeweed\\npokeweeds\\npokey\\npokeys\\npokier\\npokies\\npokiest\\npokily\\npokiness\\npokinesses\\npoking\\npoky\\npol\\npolar\\npolarise\\npolarised\\npolarises\\npolarising\\npolarities\\npolarity\\npolarization\\npolarizations\\npolarize\\npolarized\\npolarizes\\npolarizing\\npolaron\\npolarons\\npolars\\npolder\\npolders\\npole\\npoleax\\npoleaxe\\npoleaxed\\npoleaxes\\npoleaxing\\npolecat\\npolecats\\npoled\\npoleis\\npoleless\\npolemic\\npolemical\\npolemicist\\npolemicists\\npolemics\\npolemist\\npolemists\\npolemize\\npolemized\\npolemizes\\npolemizing\\npolenta\\npolentas\\npoler\\npolers\\npoles\\npolestar\\npolestars\\npoleward\\npoleyn\\npoleyns\\npolice\\npoliced\\npoliceman\\npolicemen\\npolices\\npolicewoman\\npolicewomen\\npolicies\\npolicing\\npolicy\\npolicyholder\\npoling\\npolio\\npoliomyelitis\\npoliomyelitises\\npolios\\npolis\\npolish\\npolished\\npolisher\\npolishers\\npolishes\\npolishing\\npolite\\npolitely\\npoliteness\\npolitenesses\\npoliter\\npolitest\\npolitic\\npolitical\\npolitician\\npoliticians\\npolitick\\npoliticked\\npoliticking\\npoliticks\\npolitico\\npoliticoes\\npoliticos\\npolitics\\npolities\\npolity\\npolka\\npolkaed\\npolkaing\\npolkas\\npoll\\npollack\\npollacks\\npollard\\npollarded\\npollarding\\npollards\\npolled\\npollee\\npollees\\npollen\\npollened\\npollening\\npollens\\npoller\\npollers\\npollex\\npollical\\npollices\\npollinate\\npollinated\\npollinates\\npollinating\\npollination\\npollinations\\npollinator\\npollinators\\npolling\\npollinia\\npollinic\\npollist\\npollists\\npolliwog\\npolliwogs\\npollock\\npollocks\\npolls\\npollster\\npollsters\\npollutant\\npollute\\npolluted\\npolluter\\npolluters\\npollutes\\npolluting\\npollution\\npollutions\\npolly\\npollywog\\npollywogs\\npolo\\npoloist\\npoloists\\npolonium\\npoloniums\\npolos\\npols\\npoltroon\\npoltroons\\npoly\\npolybrid\\npolybrids\\npolycot\\npolycots\\npolyene\\npolyenes\\npolyenic\\npolyester\\npolyesters\\npolygala\\npolygalas\\npolygamies\\npolygamist\\npolygamists\\npolygamous\\npolygamy\\npolygene\\npolygenes\\npolyglot\\npolyglots\\npolygon\\npolygonies\\npolygons\\npolygony\\npolygynies\\npolygyny\\npolymath\\npolymaths\\npolymer\\npolymers\\npolynya\\npolynyas\\npolyp\\npolyparies\\npolypary\\npolypi\\npolypide\\npolypides\\npolypnea\\npolypneas\\npolypod\\npolypodies\\npolypods\\npolypody\\npolypoid\\npolypore\\npolypores\\npolypous\\npolyps\\npolypus\\npolypuses\\npolys\\npolysemies\\npolysemy\\npolysome\\npolysomes\\npolysyllabic\\npolysyllable\\npolysyllables\\npolytechnic\\npolytene\\npolytenies\\npolyteny\\npolytheism\\npolytheisms\\npolytheist\\npolytheists\\npolytype\\npolytypes\\npolyuria\\npolyurias\\npolyuric\\npolyzoan\\npolyzoans\\npolyzoic\\npomace\\npomaces\\npomade\\npomaded\\npomades\\npomading\\npomander\\npomanders\\npomatum\\npomatums\\npome\\npomegranate\\npomegranates\\npomelo\\npomelos\\npomes\\npommee\\npommel\\npommeled\\npommeling\\npommelled\\npommelling\\npommels\\npomologies\\npomology\\npomp\\npompano\\npompanos\\npompom\\npompoms\\npompon\\npompons\\npomposities\\npomposity\\npompous\\npompously\\npomps\\nponce\\nponces\\nponcho\\nponchos\\npond\\nponder\\npondered\\nponderer\\nponderers\\npondering\\nponderous\\nponders\\nponds\\npondville\\npondweed\\npondweeds\\npone\\nponent\\npones\\npongee\\npongees\\npongid\\npongids\\nponiard\\nponiarded\\nponiarding\\nponiards\\nponied\\nponies\\npons\\npontes\\npontifex\\npontiff\\npontiffs\\npontific\\npontifical\\npontificate\\npontificated\\npontificates\\npontificating\\npontifices\\npontil\\npontils\\npontine\\nponton\\npontons\\npontoon\\npontoons\\npony\\nponying\\nponytail\\nponytails\\npooch\\npooches\\npood\\npoodle\\npoodles\\npoods\\npooh\\npoohed\\npoohing\\npoohs\\npool\\npooled\\npoolhall\\npoolhalls\\npooling\\npoolroom\\npoolrooms\\npools\\npoon\\npoons\\npoop\\npooped\\npooping\\npoops\\npoor\\npoorer\\npoorest\\npoori\\npooris\\npoorish\\npoorly\\npoorness\\npoornesses\\npoortith\\npoortiths\\npop\\npopcorn\\npopcorns\\npope\\npopedom\\npopedoms\\npopeless\\npopelike\\npoperies\\npopery\\npopes\\npopeyed\\npopgun\\npopguns\\npopinjay\\npopinjays\\npopish\\npopishly\\npoplar\\npoplars\\npoplin\\npoplins\\npoplitic\\npopover\\npopovers\\npoppa\\npoppas\\npopped\\npopper\\npoppers\\npoppet\\npoppets\\npoppied\\npoppies\\npopping\\npopple\\npoppled\\npopples\\npoppling\\npoppy\\npops\\npopulace\\npopulaces\\npopular\\npopularities\\npopularity\\npopularize\\npopularized\\npopularizes\\npopularizing\\npopularly\\npopulate\\npopulated\\npopulates\\npopulating\\npopulation\\npopulations\\npopulism\\npopulisms\\npopulist\\npopulists\\npopulous\\npopulousness\\npopulousnesses\\nporcelain\\nporcelains\\nporch\\nporches\\nporcine\\nporcupine\\nporcupines\\npore\\npored\\npores\\nporgies\\nporgy\\nporing\\nporism\\nporisms\\npork\\nporker\\nporkers\\nporkier\\nporkies\\nporkiest\\nporkpie\\nporkpies\\nporks\\nporkwood\\nporkwoods\\nporky\\nporn\\nporno\\npornographic\\npornography\\npornos\\nporns\\nporose\\nporosities\\nporosity\\nporous\\nporously\\nporphyries\\nporphyry\\nporpoise\\nporpoises\\nporrect\\nporridge\\nporridges\\nporringer\\nporringers\\nport\\nportability\\nportable\\nportables\\nportably\\nportage\\nportaged\\nportages\\nportaging\\nportal\\nportaled\\nportals\\nportance\\nportances\\nporte\\nported\\nportend\\nportended\\nportending\\nportends\\nportent\\nportentious\\nportents\\nporter\\nporterhouse\\nporterhouses\\nporters\\nportfolio\\nportfolios\\nporthole\\nportholes\\nportico\\nporticoes\\nporticos\\nportiere\\nportieres\\nporting\\nportion\\nportioned\\nportioning\\nportions\\nportless\\nportlier\\nportliest\\nportly\\nportrait\\nportraitist\\nportraitists\\nportraits\\nportraiture\\nportraitures\\nportray\\nportrayal\\nportrayals\\nportrayed\\nportraying\\nportrays\\nportress\\nportresses\\nports\\nposada\\nposadas\\npose\\nposed\\nposer\\nposers\\nposes\\nposeur\\nposeurs\\nposh\\nposher\\nposhest\\nposies\\nposing\\nposingly\\nposit\\nposited\\npositing\\nposition\\npositioned\\npositioning\\npositions\\npositive\\npositively\\npositiveness\\npositivenesses\\npositiver\\npositives\\npositivest\\npositivity\\npositron\\npositrons\\nposits\\nposologies\\nposology\\nposse\\nposses\\npossess\\npossessed\\npossesses\\npossessing\\npossession\\npossessions\\npossessive\\npossessiveness\\npossessivenesses\\npossessives\\npossessor\\npossessors\\nposset\\npossets\\npossibilities\\npossibility\\npossible\\npossibler\\npossiblest\\npossibly\\npossum\\npossums\\npost\\npostadolescence\\npostadolescences\\npostadolescent\\npostage\\npostages\\npostal\\npostally\\npostals\\npostanal\\npostattack\\npostbaccalaureate\\npostbag\\npostbags\\npostbiblical\\npostbox\\npostboxes\\npostboy\\npostboys\\npostcard\\npostcards\\npostcava\\npostcavae\\npostcollege\\npostcolonial\\npostdate\\npostdated\\npostdates\\npostdating\\nposted\\nposteen\\nposteens\\npostelection\\nposter\\nposterior\\nposteriors\\nposterities\\nposterity\\npostern\\nposterns\\nposters\\npostexercise\\npostface\\npostfaces\\npostfertilization\\npostfertilizations\\npostfix\\npostfixed\\npostfixes\\npostfixing\\npostflight\\npostform\\npostformed\\npostforming\\npostforms\\npostgraduate\\npostgraduates\\npostgraduation\\npostharvest\\nposthaste\\nposthole\\npostholes\\nposthospital\\nposthumous\\npostiche\\npostiches\\npostimperial\\npostin\\npostinaugural\\npostindustrial\\nposting\\npostings\\npostinjection\\npostinoculation\\npostins\\npostique\\npostiques\\npostlude\\npostludes\\npostman\\npostmarital\\npostmark\\npostmarked\\npostmarking\\npostmarks\\npostmaster\\npostmasters\\npostmen\\npostmenopausal\\npostmortem\\npostmortems\\npostnatal\\npostnuptial\\npostoperative\\npostoral\\npostpaid\\npostpartum\\npostpone\\npostponed\\npostponement\\npostponements\\npostpones\\npostponing\\npostproduction\\npostpubertal\\npostpuberty\\npostradiation\\npostrecession\\npostretirement\\npostrevolutionary\\nposts\\npostscript\\npostscripts\\npostseason\\npostsecondary\\npostsurgical\\nposttreatment\\nposttrial\\npostulant\\npostulants\\npostulate\\npostulated\\npostulates\\npostulating\\npostural\\nposture\\npostured\\nposturer\\nposturers\\npostures\\nposturing\\npostvaccination\\npostwar\\nposy\\npot\\npotable\\npotables\\npotage\\npotages\\npotamic\\npotash\\npotashes\\npotassic\\npotassium\\npotassiums\\npotation\\npotations\\npotato\\npotatoes\\npotatory\\npotbellied\\npotbellies\\npotbelly\\npotboil\\npotboiled\\npotboiling\\npotboils\\npotboy\\npotboys\\npoteen\\npoteens\\npotence\\npotences\\npotencies\\npotency\\npotent\\npotentate\\npotentates\\npotential\\npotentialities\\npotentiality\\npotentially\\npotentials\\npotently\\npotful\\npotfuls\\npothead\\npotheads\\npotheen\\npotheens\\npother\\npotherb\\npotherbs\\npothered\\npothering\\npothers\\npothole\\npotholed\\npotholes\\npothook\\npothooks\\npothouse\\npothouses\\npotiche\\npotiches\\npotion\\npotions\\npotlach\\npotlache\\npotlaches\\npotlatch\\npotlatched\\npotlatches\\npotlatching\\npotlike\\npotluck\\npotlucks\\npotman\\npotmen\\npotpie\\npotpies\\npotpourri\\npotpourris\\npots\\npotshard\\npotshards\\npotsherd\\npotsherds\\npotshot\\npotshots\\npotshotting\\npotsie\\npotsies\\npotstone\\npotstones\\npotsy\\npottage\\npottages\\npotted\\npotteen\\npotteens\\npotter\\npottered\\npotterer\\npotterers\\npotteries\\npottering\\npotters\\npottery\\npottier\\npotties\\npottiest\\npotting\\npottle\\npottles\\npotto\\npottos\\npotty\\npouch\\npouched\\npouches\\npouchier\\npouchiest\\npouching\\npouchy\\npouf\\npoufed\\npouff\\npouffe\\npouffed\\npouffes\\npouffs\\npoufs\\npoulard\\npoularde\\npoulardes\\npoulards\\npoult\\npoultice\\npoulticed\\npoultices\\npoulticing\\npoultries\\npoultry\\npoults\\npounce\\npounced\\npouncer\\npouncers\\npounces\\npouncing\\npound\\npoundage\\npoundages\\npoundal\\npoundals\\npounded\\npounder\\npounders\\npounding\\npounds\\npour\\npourable\\npoured\\npourer\\npourers\\npouring\\npours\\npoussie\\npoussies\\npout\\npouted\\npouter\\npouters\\npoutful\\npoutier\\npoutiest\\npouting\\npouts\\npouty\\npoverties\\npoverty\\npow\\npowder\\npowdered\\npowderer\\npowderers\\npowdering\\npowders\\npowdery\\npower\\npowered\\npowerful\\npowerfully\\npowering\\npowerless\\npowerlessness\\npowers\\npows\\npowter\\npowters\\npowwow\\npowwowed\\npowwowing\\npowwows\\npox\\npoxed\\npoxes\\npoxing\\npoxvirus\\npoxviruses\\npoyou\\npoyous\\npozzolan\\npozzolans\\npraam\\npraams\\npractic\\npracticabilities\\npracticability\\npracticable\\npractical\\npracticalities\\npracticality\\npractically\\npractice\\npracticed\\npractices\\npracticing\\npractise\\npractised\\npractises\\npractising\\npractitioner\\npractitioners\\npraecipe\\npraecipes\\npraedial\\npraefect\\npraefects\\npraelect\\npraelected\\npraelecting\\npraelects\\npraetor\\npraetors\\npragmatic\\npragmatism\\npragmatisms\\nprahu\\nprahus\\nprairie\\nprairies\\npraise\\npraised\\npraiser\\npraisers\\npraises\\npraiseworthy\\npraising\\npraline\\npralines\\npram\\nprams\\nprance\\npranced\\nprancer\\nprancers\\nprances\\nprancing\\nprandial\\nprang\\npranged\\npranging\\nprangs\\nprank\\npranked\\npranking\\nprankish\\npranks\\nprankster\\npranksters\\nprao\\npraos\\nprase\\nprases\\nprat\\nprate\\nprated\\nprater\\npraters\\nprates\\npratfall\\npratfalls\\nprating\\npratique\\npratiques\\nprats\\nprattle\\nprattled\\nprattler\\nprattlers\\nprattles\\nprattling\\nprau\\npraus\\nprawn\\nprawned\\nprawner\\nprawners\\nprawning\\nprawns\\npraxes\\npraxis\\npraxises\\npray\\nprayed\\nprayer\\nprayers\\npraying\\nprays\\npreach\\npreached\\npreacher\\npreachers\\npreaches\\npreachier\\npreachiest\\npreaching\\npreachment\\npreachments\\npreachy\\npreact\\npreacted\\npreacting\\npreacts\\npreadapt\\npreadapted\\npreadapting\\npreadapts\\npreaddress\\npreadmission\\npreadmit\\npreadmits\\npreadmitted\\npreadmitting\\npreadolescence\\npreadolescences\\npreadolescent\\npreadopt\\npreadopted\\npreadopting\\npreadopts\\npreadult\\npreaged\\npreallocate\\npreallocated\\npreallocates\\npreallocating\\npreallot\\npreallots\\npreallotted\\npreallotting\\npreamble\\npreambles\\npreamp\\npreamps\\npreanal\\npreanesthetic\\npreanesthetics\\nprearm\\nprearmed\\nprearming\\nprearms\\nprearraignment\\nprearrange\\nprearranged\\nprearrangement\\nprearrangements\\nprearranges\\nprearranging\\npreassemble\\npreassembled\\npreassembles\\npreassembling\\npreassign\\npreassigned\\npreassigning\\npreassigns\\npreauthorize\\npreauthorized\\npreauthorizes\\npreauthorizing\\npreaver\\npreaverred\\npreaverring\\npreavers\\npreaxial\\nprebasal\\nprebattle\\nprebend\\nprebends\\nprebiblical\\nprebill\\nprebilled\\nprebilling\\nprebills\\nprebind\\nprebinding\\nprebinds\\nprebless\\npreblessed\\npreblesses\\npreblessing\\npreboil\\npreboiled\\npreboiling\\npreboils\\nprebound\\nprebreakfast\\nprecalculate\\nprecalculated\\nprecalculates\\nprecalculating\\nprecalculus\\nprecalculuses\\nprecampaign\\nprecancel\\nprecanceled\\nprecanceling\\nprecancellation\\nprecancellations\\nprecancels\\nprecarious\\nprecariously\\nprecariousness\\nprecariousnesses\\nprecast\\nprecasting\\nprecasts\\nprecaution\\nprecautionary\\nprecautions\\nprecava\\nprecavae\\nprecaval\\nprecede\\npreceded\\nprecedence\\nprecedences\\nprecedent\\nprecedents\\nprecedes\\npreceding\\nprecent\\nprecented\\nprecenting\\nprecents\\nprecept\\npreceptor\\npreceptors\\nprecepts\\nprecess\\nprecessed\\nprecesses\\nprecessing\\nprecheck\\nprechecked\\nprechecking\\nprechecks\\nprechill\\nprechilled\\nprechilling\\nprechills\\nprecieux\\nprecinct\\nprecincts\\nprecious\\npreciouses\\nprecipe\\nprecipes\\nprecipice\\nprecipices\\nprecipitate\\nprecipitated\\nprecipitately\\nprecipitateness\\nprecipitatenesses\\nprecipitates\\nprecipitating\\nprecipitation\\nprecipitations\\nprecipitous\\nprecipitously\\nprecis\\nprecise\\nprecised\\nprecisely\\npreciseness\\nprecisenesses\\npreciser\\nprecises\\nprecisest\\nprecising\\nprecision\\nprecisions\\nprecited\\nprecivilization\\npreclean\\nprecleaned\\nprecleaning\\nprecleans\\npreclearance\\npreclearances\\npreclude\\nprecluded\\nprecludes\\nprecluding\\nprecocious\\nprecocities\\nprecocity\\nprecollege\\nprecolonial\\nprecombustion\\nprecompute\\nprecomputed\\nprecomputes\\nprecomputing\\npreconceive\\npreconceived\\npreconceives\\npreconceiving\\npreconception\\npreconceptions\\npreconcerted\\nprecondition\\npreconditions\\npreconference\\npreconstruct\\npreconvention\\nprecook\\nprecooked\\nprecooking\\nprecooks\\nprecool\\nprecooled\\nprecooling\\nprecools\\nprecure\\nprecured\\nprecures\\nprecuring\\nprecursor\\nprecursors\\npredate\\npredated\\npredates\\npredating\\npredator\\npredators\\npredatory\\npredawn\\npredawns\\npredecessor\\npredecessors\\npredefine\\npredefined\\npredefines\\npredefining\\npredelinquent\\npredeparture\\npredesignate\\npredesignated\\npredesignates\\npredesignating\\npredesignation\\npredesignations\\npredestine\\npredestined\\npredestines\\npredestining\\npredetermine\\npredetermined\\npredetermines\\npredetermining\\npredial\\npredicament\\npredicaments\\npredicate\\npredicated\\npredicates\\npredicating\\npredication\\npredications\\npredict\\npredictable\\npredictably\\npredicted\\npredicting\\nprediction\\npredictions\\npredictive\\npredicts\\npredilection\\npredilections\\npredischarge\\npredispose\\npredisposed\\npredisposes\\npredisposing\\npredisposition\\npredispositions\\nprednisone\\nprednisones\\npredominance\\npredominances\\npredominant\\npredominantly\\npredominate\\npredominated\\npredominates\\npredominating\\npredusk\\npredusks\\npree\\npreed\\npreeing\\npreelect\\npreelected\\npreelecting\\npreelection\\npreelectric\\npreelectronic\\npreelects\\npreemie\\npreemies\\npreeminence\\npreeminences\\npreeminent\\npreeminently\\npreemployment\\npreempt\\npreempted\\npreempting\\npreemption\\npreemptions\\npreempts\\npreen\\npreenact\\npreenacted\\npreenacting\\npreenacts\\npreened\\npreener\\npreeners\\npreening\\npreens\\nprees\\npreestablish\\npreestablished\\npreestablishes\\npreestablishing\\npreexist\\npreexisted\\npreexistence\\npreexistences\\npreexistent\\npreexisting\\npreexists\\nprefab\\nprefabbed\\nprefabbing\\nprefabricated\\nprefabrication\\nprefabrications\\nprefabs\\npreface\\nprefaced\\nprefacer\\nprefacers\\nprefaces\\nprefacing\\nprefect\\nprefects\\nprefecture\\nprefectures\\nprefer\\npreferable\\npreferably\\npreference\\npreferences\\npreferential\\npreferment\\npreferments\\npreferred\\npreferring\\nprefers\\nprefigure\\nprefigured\\nprefigures\\nprefiguring\\nprefilter\\nprefilters\\nprefix\\nprefixal\\nprefixed\\nprefixes\\nprefixing\\nprefocus\\nprefocused\\nprefocuses\\nprefocusing\\nprefocussed\\nprefocusses\\nprefocussing\\npreform\\npreformed\\npreforming\\npreforms\\nprefrank\\nprefranked\\nprefranking\\nprefranks\\npregame\\npregnancies\\npregnancy\\npregnant\\npreheat\\npreheated\\npreheating\\npreheats\\nprehensile\\nprehistoric\\nprehistorical\\nprehuman\\nprehumans\\npreimmunization\\npreimmunizations\\npreimmunize\\npreimmunized\\npreimmunizes\\npreimmunizing\\npreinaugural\\npreindustrial\\npreinoculate\\npreinoculated\\npreinoculates\\npreinoculating\\npreinoculation\\npreinterview\\nprejudge\\nprejudged\\nprejudges\\nprejudging\\nprejudice\\nprejudiced\\nprejudices\\nprejudicial\\nprejudicing\\nprekindergarten\\nprekindergartens\\nprelacies\\nprelacy\\nprelate\\nprelates\\nprelatic\\nprelaunch\\nprelect\\nprelected\\nprelecting\\nprelects\\nprelegal\\nprelim\\npreliminaries\\npreliminary\\nprelimit\\nprelimited\\nprelimiting\\nprelimits\\nprelims\\nprelude\\npreluded\\npreluder\\npreluders\\npreludes\\npreluding\\npreman\\npremarital\\npremature\\nprematurely\\npremed\\npremedic\\npremedics\\npremeditate\\npremeditated\\npremeditates\\npremeditating\\npremeditation\\npremeditations\\npremeds\\npremen\\npremenopausal\\npremenstrual\\npremie\\npremier\\npremiere\\npremiered\\npremieres\\npremiering\\npremiers\\npremiership\\npremierships\\npremies\\npremise\\npremised\\npremises\\npremising\\npremiss\\npremisses\\npremium\\npremiums\\npremix\\npremixed\\npremixes\\npremixing\\npremodern\\npremodified\\npremodifies\\npremodify\\npremodifying\\npremoisten\\npremoistened\\npremoistening\\npremoistens\\npremolar\\npremolars\\npremonition\\npremonitions\\npremonitory\\npremorse\\npremune\\nprename\\nprenames\\nprenatal\\nprenomen\\nprenomens\\nprenomina\\nprenotification\\nprenotifications\\nprenotified\\nprenotifies\\nprenotify\\nprenotifying\\nprentice\\nprenticed\\nprentices\\nprenticing\\nprenuptial\\npreoccupation\\npreoccupations\\npreoccupied\\npreoccupies\\npreoccupy\\npreoccupying\\npreopening\\npreoperational\\npreordain\\npreordained\\npreordaining\\npreordains\\nprep\\nprepack\\nprepackage\\nprepackaged\\nprepackages\\nprepackaging\\nprepacked\\nprepacking\\nprepacks\\nprepaid\\npreparation\\npreparations\\npreparatory\\nprepare\\nprepared\\npreparedness\\npreparednesses\\npreparer\\npreparers\\nprepares\\npreparing\\nprepay\\nprepaying\\nprepays\\nprepense\\npreplace\\npreplaced\\npreplaces\\npreplacing\\npreplan\\npreplanned\\npreplanning\\npreplans\\npreplant\\npreponderance\\npreponderances\\npreponderant\\npreponderantly\\npreponderate\\npreponderated\\npreponderates\\npreponderating\\npreposition\\nprepositional\\nprepositions\\nprepossessing\\npreposterous\\nprepped\\npreppie\\npreppies\\nprepping\\npreprint\\npreprinted\\npreprinting\\npreprints\\npreprocess\\npreprocessed\\npreprocesses\\npreprocessing\\npreproduction\\npreprofessional\\npreprogram\\npreps\\nprepubertal\\nprepublication\\nprepuce\\nprepuces\\nprepunch\\nprepunched\\nprepunches\\nprepunching\\nprepurchase\\nprepurchased\\nprepurchases\\nprepurchasing\\nprerecord\\nprerecorded\\nprerecording\\nprerecords\\npreregister\\npreregistered\\npreregistering\\npreregisters\\npreregistration\\npreregistrations\\nprerehearsal\\nprerelease\\nprerenal\\nprerequisite\\nprerequisites\\npreretirement\\nprerevolutionary\\nprerogative\\nprerogatives\\npresa\\npresage\\npresaged\\npresager\\npresagers\\npresages\\npresaging\\npresbyter\\npresbyters\\nprescience\\npresciences\\nprescient\\nprescind\\nprescinded\\nprescinding\\nprescinds\\nprescore\\nprescored\\nprescores\\nprescoring\\nprescribe\\nprescribed\\nprescribes\\nprescribing\\nprescription\\nprescriptions\\nprese\\npreseason\\npreselect\\npreselected\\npreselecting\\npreselects\\npresell\\npreselling\\npresells\\npresence\\npresences\\npresent\\npresentable\\npresentation\\npresentations\\npresented\\npresentiment\\npresentiments\\npresenting\\npresently\\npresentment\\npresentments\\npresents\\npreservation\\npreservations\\npreservative\\npreservatives\\npreserve\\npreserved\\npreserver\\npreservers\\npreserves\\npreserving\\npreset\\npresets\\npresetting\\npreshape\\npreshaped\\npreshapes\\npreshaping\\npreshow\\npreshowed\\npreshowing\\npreshown\\npreshows\\npreshrink\\npreshrinked\\npreshrinking\\npreshrinks\\npreside\\npresided\\npresidencies\\npresidency\\npresident\\npresidential\\npresidents\\npresider\\npresiders\\npresides\\npresidia\\npresiding\\npresidio\\npresidios\\npresift\\npresifted\\npresifting\\npresifts\\npresoak\\npresoaked\\npresoaking\\npresoaks\\npresold\\npress\\npressed\\npresser\\npressers\\npresses\\npressing\\npressman\\npressmen\\npressor\\npressrun\\npressruns\\npressure\\npressured\\npressures\\npressuring\\npressurization\\npressurizations\\npressurize\\npressurized\\npressurizes\\npressurizing\\nprest\\nprestamp\\nprestamped\\nprestamping\\nprestamps\\nprester\\npresterilize\\npresterilized\\npresterilizes\\npresterilizing\\npresters\\nprestidigitation\\nprestidigitations\\nprestige\\nprestiges\\nprestigious\\npresto\\nprestos\\nprestrike\\nprests\\npresumable\\npresumably\\npresume\\npresumed\\npresumer\\npresumers\\npresumes\\npresuming\\npresumption\\npresumptions\\npresumptive\\npresumptuous\\npresuppose\\npresupposed\\npresupposes\\npresupposing\\npresupposition\\npresuppositions\\npresurgical\\npresweeten\\npresweetened\\npresweetening\\npresweetens\\npretaste\\npretasted\\npretastes\\npretasting\\npretax\\npreteen\\npreteens\\npretelevision\\npretence\\npretences\\npretend\\npretended\\npretender\\npretenders\\npretending\\npretends\\npretense\\npretenses\\npretension\\npretensions\\npretentious\\npretentiously\\npretentiousness\\npretentiousnesses\\npreterit\\npreterits\\npreternatural\\npreternaturally\\npretest\\npretested\\npretesting\\npretests\\npretext\\npretexted\\npretexting\\npretexts\\npretor\\npretors\\npretournament\\npretreat\\npretreated\\npretreating\\npretreatment\\npretreats\\nprettied\\nprettier\\npretties\\nprettiest\\nprettified\\nprettifies\\nprettify\\nprettifying\\nprettily\\nprettiness\\nprettinesses\\npretty\\nprettying\\npretzel\\npretzels\\npreunion\\npreunions\\npreunite\\npreunited\\npreunites\\npreuniting\\nprevail\\nprevailed\\nprevailing\\nprevailingly\\nprevails\\nprevalence\\nprevalences\\nprevalent\\nprevaricate\\nprevaricated\\nprevaricates\\nprevaricating\\nprevarication\\nprevarications\\nprevaricator\\nprevaricators\\nprevent\\npreventable\\npreventative\\nprevented\\npreventing\\nprevention\\npreventions\\npreventive\\nprevents\\npreview\\npreviewed\\npreviewing\\npreviews\\nprevious\\npreviously\\nprevise\\nprevised\\nprevises\\nprevising\\nprevisor\\nprevisors\\nprevue\\nprevued\\nprevues\\nprevuing\\nprewar\\nprewarm\\nprewarmed\\nprewarming\\nprewarms\\nprewarn\\nprewarned\\nprewarning\\nprewarns\\nprewash\\nprewashed\\nprewashes\\nprewashing\\nprewrap\\nprewrapped\\nprewrapping\\nprewraps\\nprex\\nprexes\\nprexies\\nprexy\\nprey\\npreyed\\npreyer\\npreyers\\npreying\\npreys\\npriapean\\npriapi\\npriapic\\npriapism\\npriapisms\\npriapus\\npriapuses\\nprice\\npriced\\npriceless\\npricer\\npricers\\nprices\\npricey\\npricier\\npriciest\\npricing\\nprick\\npricked\\npricker\\nprickers\\npricket\\nprickets\\nprickier\\nprickiest\\npricking\\nprickle\\nprickled\\nprickles\\npricklier\\nprickliest\\nprickling\\nprickly\\npricks\\npricky\\npricy\\npride\\nprided\\nprideful\\nprides\\npriding\\npried\\npriedieu\\npriedieus\\npriedieux\\nprier\\npriers\\npries\\npriest\\npriested\\npriestess\\npriestesses\\npriesthood\\npriesthoods\\npriesting\\npriestlier\\npriestliest\\npriestliness\\npriestlinesses\\npriestly\\npriests\\nprig\\nprigged\\npriggeries\\npriggery\\nprigging\\npriggish\\npriggishly\\npriggism\\npriggisms\\nprigs\\nprill\\nprilled\\nprilling\\nprills\\nprim\\nprima\\nprimacies\\nprimacy\\nprimage\\nprimages\\nprimal\\nprimaries\\nprimarily\\nprimary\\nprimas\\nprimatal\\nprimate\\nprimates\\nprime\\nprimed\\nprimely\\nprimer\\nprimero\\nprimeros\\nprimers\\nprimes\\nprimeval\\nprimi\\nprimine\\nprimines\\npriming\\nprimings\\nprimitive\\nprimitively\\nprimitiveness\\nprimitivenesses\\nprimitives\\nprimitivities\\nprimitivity\\nprimly\\nprimmed\\nprimmer\\nprimmest\\nprimming\\nprimness\\nprimnesses\\nprimo\\nprimordial\\nprimos\\nprimp\\nprimped\\nprimping\\nprimps\\nprimrose\\nprimroses\\nprims\\nprimsie\\nprimula\\nprimulas\\nprimus\\nprimuses\\nprince\\nprincelier\\nprinceliest\\nprincely\\nprinces\\nprincess\\nprincesses\\nprincipal\\nprincipalities\\nprincipality\\nprincipally\\nprincipals\\nprincipe\\nprincipi\\nprinciple\\nprinciples\\nprincock\\nprincocks\\nprincox\\nprincoxes\\nprink\\nprinked\\nprinker\\nprinkers\\nprinking\\nprinks\\nprint\\nprintable\\nprinted\\nprinter\\nprinteries\\nprinters\\nprintery\\nprinting\\nprintings\\nprintout\\nprintouts\\nprints\\nprior\\npriorate\\npriorates\\nprioress\\nprioresses\\npriories\\npriorities\\nprioritize\\nprioritized\\nprioritizes\\nprioritizing\\npriority\\npriorly\\npriors\\npriory\\nprise\\nprised\\nprisere\\npriseres\\nprises\\nprising\\nprism\\nprismatic\\nprismoid\\nprismoids\\nprisms\\nprison\\nprisoned\\nprisoner\\nprisoners\\nprisoning\\nprisons\\npriss\\nprisses\\nprissier\\nprissies\\nprissiest\\nprissily\\nprissiness\\nprissinesses\\nprissy\\npristane\\npristanes\\npristine\\nprithee\\nprivacies\\nprivacy\\nprivate\\nprivateer\\nprivateers\\nprivater\\nprivates\\nprivatest\\nprivation\\nprivations\\nprivet\\nprivets\\nprivier\\nprivies\\npriviest\\nprivilege\\nprivileged\\nprivileges\\nprivily\\nprivities\\nprivity\\nprivy\\nprize\\nprized\\nprizefight\\nprizefighter\\nprizefighters\\nprizefighting\\nprizefightings\\nprizefights\\nprizer\\nprizers\\nprizes\\nprizewinner\\nprizewinners\\nprizing\\npro\\nproa\\nproas\\nprobabilities\\nprobability\\nprobable\\nprobably\\nproband\\nprobands\\nprobang\\nprobangs\\nprobate\\nprobated\\nprobates\\nprobating\\nprobation\\nprobationary\\nprobationer\\nprobationers\\nprobations\\nprobe\\nprobed\\nprober\\nprobers\\nprobes\\nprobing\\nprobit\\nprobities\\nprobits\\nprobity\\nproblem\\nproblematic\\nproblematical\\nproblems\\nproboscides\\nproboscis\\nprocaine\\nprocaines\\nprocarp\\nprocarps\\nprocedure\\nprocedures\\nproceed\\nproceeded\\nproceeding\\nproceedings\\nproceeds\\nprocess\\nprocessed\\nprocesses\\nprocessing\\nprocession\\nprocessional\\nprocessionals\\nprocessions\\nprocessor\\nprocessors\\nprochain\\nprochein\\nproclaim\\nproclaimed\\nproclaiming\\nproclaims\\nproclamation\\nproclamations\\nproclivities\\nproclivity\\nprocrastinate\\nprocrastinated\\nprocrastinates\\nprocrastinating\\nprocrastination\\nprocrastinations\\nprocrastinator\\nprocrastinators\\nprocreate\\nprocreated\\nprocreates\\nprocreating\\nprocreation\\nprocreations\\nprocreative\\nprocreator\\nprocreators\\nproctor\\nproctored\\nproctorial\\nproctoring\\nproctors\\nprocurable\\nprocural\\nprocurals\\nprocure\\nprocured\\nprocurement\\nprocurements\\nprocurer\\nprocurers\\nprocures\\nprocuring\\nprod\\nprodded\\nprodder\\nprodders\\nprodding\\nprodigal\\nprodigalities\\nprodigality\\nprodigals\\nprodigies\\nprodigious\\nprodigiously\\nprodigy\\nprodromal\\nprodromata\\nprodrome\\nprodromes\\nprods\\nproduce\\nproduced\\nproducer\\nproducers\\nproduces\\nproducing\\nproduct\\nproduction\\nproductions\\nproductive\\nproductiveness\\nproductivenesses\\nproductivities\\nproductivity\\nproducts\\nproem\\nproemial\\nproems\\nproette\\nproettes\\nprof\\nprofane\\nprofaned\\nprofanely\\nprofaneness\\nprofanenesses\\nprofaner\\nprofaners\\nprofanes\\nprofaning\\nprofess\\nprofessed\\nprofessedly\\nprofesses\\nprofessing\\nprofession\\nprofessional\\nprofessionalism\\nprofessionalize\\nprofessionalized\\nprofessionalizes\\nprofessionalizing\\nprofessionally\\nprofessions\\nprofessor\\nprofessorial\\nprofessors\\nprofessorship\\nprofessorships\\nproffer\\nproffered\\nproffering\\nproffers\\nproficiencies\\nproficiency\\nproficient\\nproficiently\\nprofile\\nprofiled\\nprofiler\\nprofilers\\nprofiles\\nprofiling\\nprofit\\nprofitability\\nprofitable\\nprofitably\\nprofited\\nprofiteer\\nprofiteered\\nprofiteering\\nprofiteers\\nprofiter\\nprofiters\\nprofiting\\nprofitless\\nprofits\\nprofligacies\\nprofligacy\\nprofligate\\nprofligately\\nprofligates\\nprofound\\nprofounder\\nprofoundest\\nprofoundly\\nprofounds\\nprofs\\nprofundities\\nprofundity\\nprofuse\\nprofusely\\nprofusion\\nprofusions\\nprog\\nprogenies\\nprogenitor\\nprogenitors\\nprogeny\\nprogged\\nprogger\\nproggers\\nprogging\\nprognose\\nprognosed\\nprognoses\\nprognosing\\nprognosis\\nprognosticate\\nprognosticated\\nprognosticates\\nprognosticating\\nprognostication\\nprognostications\\nprognosticator\\nprognosticators\\nprograde\\nprogram\\nprogramed\\nprograming\\nprogrammabilities\\nprogrammability\\nprogrammable\\nprogramme\\nprogrammed\\nprogrammer\\nprogrammers\\nprogrammes\\nprogramming\\nprograms\\nprogress\\nprogressed\\nprogresses\\nprogressing\\nprogression\\nprogressions\\nprogressive\\nprogressively\\nprogs\\nprohibit\\nprohibited\\nprohibiting\\nprohibition\\nprohibitionist\\nprohibitionists\\nprohibitions\\nprohibitive\\nprohibitively\\nprohibitory\\nprohibits\\nproject\\nprojected\\nprojectile\\nprojectiles\\nprojecting\\nprojection\\nprojections\\nprojector\\nprojectors\\nprojects\\nprojet\\nprojets\\nprolabor\\nprolamin\\nprolamins\\nprolan\\nprolans\\nprolapse\\nprolapsed\\nprolapses\\nprolapsing\\nprolate\\nprole\\nproleg\\nprolegs\\nproles\\nproletarian\\nproletariat\\nproliferate\\nproliferated\\nproliferates\\nproliferating\\nproliferation\\nprolific\\nprolifically\\nproline\\nprolines\\nprolix\\nprolixly\\nprolog\\nprologed\\nprologing\\nprologs\\nprologue\\nprologued\\nprologues\\nprologuing\\nprolong\\nprolongation\\nprolongations\\nprolonge\\nprolonged\\nprolonges\\nprolonging\\nprolongs\\nprom\\npromenade\\npromenaded\\npromenades\\npromenading\\nprominence\\nprominences\\nprominent\\nprominently\\npromiscuities\\npromiscuity\\npromiscuous\\npromiscuously\\npromiscuousness\\npromiscuousnesses\\npromise\\npromised\\npromisee\\npromisees\\npromiser\\npromisers\\npromises\\npromising\\npromisingly\\npromisor\\npromisors\\npromissory\\npromontories\\npromontory\\npromote\\npromoted\\npromoter\\npromoters\\npromotes\\npromoting\\npromotion\\npromotional\\npromotions\\nprompt\\nprompted\\nprompter\\nprompters\\npromptest\\nprompting\\npromptly\\npromptness\\nprompts\\nproms\\npromulge\\npromulged\\npromulges\\npromulging\\npronate\\npronated\\npronates\\npronating\\npronator\\npronatores\\npronators\\nprone\\npronely\\nproneness\\npronenesses\\nprong\\npronged\\npronging\\nprongs\\npronota\\npronotum\\npronoun\\npronounce\\npronounceable\\npronounced\\npronouncement\\npronouncements\\npronounces\\npronouncing\\npronouns\\npronto\\npronunciation\\npronunciations\\nproof\\nproofed\\nproofer\\nproofers\\nproofing\\nproofread\\nproofreaded\\nproofreader\\nproofreaders\\nproofreading\\nproofreads\\nproofs\\nprop\\npropaganda\\npropagandas\\npropagandist\\npropagandists\\npropagandize\\npropagandized\\npropagandizes\\npropagandizing\\npropagate\\npropagated\\npropagates\\npropagating\\npropagation\\npropagations\\npropane\\npropanes\\npropel\\npropellant\\npropellants\\npropelled\\npropellent\\npropellents\\npropeller\\npropellers\\npropelling\\npropels\\npropend\\npropended\\npropending\\npropends\\npropene\\npropenes\\npropenol\\npropenols\\npropense\\npropensities\\npropensity\\npropenyl\\nproper\\nproperer\\nproperest\\nproperly\\npropers\\nproperties\\nproperty\\nprophage\\nprophages\\nprophase\\nprophases\\nprophecies\\nprophecy\\nprophesied\\nprophesier\\nprophesiers\\nprophesies\\nprophesy\\nprophesying\\nprophet\\nprophetess\\nprophetesses\\nprophetic\\nprophetical\\nprophetically\\nprophets\\nprophylactic\\nprophylactics\\nprophylaxis\\npropine\\npropined\\npropines\\npropining\\npropinquities\\npropinquity\\npropitiate\\npropitiated\\npropitiates\\npropitiating\\npropitiation\\npropitiations\\npropitiatory\\npropitious\\npropjet\\npropjets\\npropman\\npropmen\\npropolis\\npropolises\\npropone\\nproponed\\nproponent\\nproponents\\npropones\\nproponing\\nproportion\\nproportional\\nproportionally\\nproportionate\\nproportionately\\nproportions\\nproposal\\nproposals\\npropose\\nproposed\\nproposer\\nproposers\\nproposes\\nproposing\\nproposition\\npropositions\\npropound\\npropounded\\npropounding\\npropounds\\npropped\\npropping\\nproprietary\\nproprieties\\nproprietor\\nproprietors\\nproprietorship\\nproprietorships\\nproprietress\\nproprietresses\\npropriety\\nprops\\npropulsion\\npropulsions\\npropulsive\\npropyl\\npropyla\\npropylic\\npropylon\\npropyls\\nprorate\\nprorated\\nprorates\\nprorating\\nprorogue\\nprorogued\\nprorogues\\nproroguing\\npros\\nprosaic\\nprosaism\\nprosaisms\\nprosaist\\nprosaists\\nproscribe\\nproscribed\\nproscribes\\nproscribing\\nproscription\\nproscriptions\\nprose\\nprosect\\nprosected\\nprosecting\\nprosects\\nprosecute\\nprosecuted\\nprosecutes\\nprosecuting\\nprosecution\\nprosecutions\\nprosecutor\\nprosecutors\\nprosed\\nproselyte\\nproselytes\\nproselytize\\nproselytized\\nproselytizes\\nproselytizing\\nproser\\nprosers\\nproses\\nprosier\\nprosiest\\nprosily\\nprosing\\nprosit\\nproso\\nprosodic\\nprosodies\\nprosody\\nprosoma\\nprosomal\\nprosomas\\nprosos\\nprospect\\nprospected\\nprospecting\\nprospective\\nprospectively\\nprospector\\nprospectors\\nprospects\\nprospectus\\nprospectuses\\nprosper\\nprospered\\nprospering\\nprosperities\\nprosperity\\nprosperous\\nprospers\\nprost\\nprostate\\nprostates\\nprostatic\\nprostheses\\nprosthesis\\nprosthetic\\nprostitute\\nprostituted\\nprostitutes\\nprostituting\\nprostitution\\nprostitutions\\nprostrate\\nprostrated\\nprostrates\\nprostrating\\nprostration\\nprostrations\\nprostyle\\nprostyles\\nprosy\\nprotamin\\nprotamins\\nprotases\\nprotasis\\nprotatic\\nprotea\\nprotean\\nproteas\\nprotease\\nproteases\\nprotect\\nprotected\\nprotecting\\nprotection\\nprotections\\nprotective\\nprotector\\nprotectorate\\nprotectorates\\nprotectors\\nprotects\\nprotege\\nprotegee\\nprotegees\\nproteges\\nprotei\\nproteid\\nproteide\\nproteides\\nproteids\\nprotein\\nproteins\\nproteinuria\\nprotend\\nprotended\\nprotending\\nprotends\\nproteose\\nproteoses\\nprotest\\nprotestation\\nprotestations\\nprotested\\nprotesting\\nprotests\\nproteus\\nprothrombin\\nprotist\\nprotists\\nprotium\\nprotiums\\nprotocol\\nprotocoled\\nprotocoling\\nprotocolled\\nprotocolling\\nprotocols\\nproton\\nprotonic\\nprotons\\nprotoplasm\\nprotoplasmic\\nprotoplasms\\nprotopod\\nprotopods\\nprototype\\nprototypes\\nprotoxid\\nprotoxids\\nprotozoa\\nprotozoan\\nprotozoans\\nprotract\\nprotracted\\nprotracting\\nprotractor\\nprotractors\\nprotracts\\nprotrude\\nprotruded\\nprotrudes\\nprotruding\\nprotrusion\\nprotrusions\\nprotrusive\\nprotuberance\\nprotuberances\\nprotuberant\\nprotyl\\nprotyle\\nprotyles\\nprotyls\\nproud\\nprouder\\nproudest\\nproudful\\nproudly\\nprounion\\nprovable\\nprovably\\nprove\\nproved\\nproven\\nprovender\\nprovenders\\nprovenly\\nprover\\nproverb\\nproverbed\\nproverbial\\nproverbing\\nproverbs\\nprovers\\nproves\\nprovide\\nprovided\\nprovidence\\nprovidences\\nprovident\\nprovidential\\nprovidently\\nprovider\\nproviders\\nprovides\\nproviding\\nprovince\\nprovinces\\nprovincial\\nprovincialism\\nprovincialisms\\nproving\\nproviral\\nprovirus\\nproviruses\\nprovision\\nprovisional\\nprovisions\\nproviso\\nprovisoes\\nprovisos\\nprovocation\\nprovocations\\nprovocative\\nprovoke\\nprovoked\\nprovoker\\nprovokers\\nprovokes\\nprovoking\\nprovost\\nprovosts\\nprow\\nprowar\\nprower\\nprowess\\nprowesses\\nprowest\\nprowl\\nprowled\\nprowler\\nprowlers\\nprowling\\nprowls\\nprows\\nproxemic\\nproxies\\nproximal\\nproximo\\nproxy\\nprude\\nprudence\\nprudences\\nprudent\\nprudential\\nprudently\\npruderies\\nprudery\\nprudes\\nprudish\\npruinose\\nprunable\\nprune\\npruned\\nprunella\\nprunellas\\nprunelle\\nprunelles\\nprunello\\nprunellos\\npruner\\npruners\\nprunes\\npruning\\nprurient\\nprurigo\\nprurigos\\npruritic\\npruritus\\nprurituses\\nprussic\\npruta\\nprutah\\nprutot\\nprutoth\\npry\\npryer\\npryers\\nprying\\npryingly\\nprythee\\npsalm\\npsalmed\\npsalmic\\npsalming\\npsalmist\\npsalmists\\npsalmodies\\npsalmody\\npsalms\\npsalter\\npsalteries\\npsalters\\npsaltery\\npsaltries\\npsaltry\\npsammite\\npsammites\\npschent\\npschents\\npsephite\\npsephites\\npseudo\\npseudonym\\npseudonymous\\npshaw\\npshawed\\npshawing\\npshaws\\npsi\\npsiloses\\npsilosis\\npsilotic\\npsis\\npsoae\\npsoai\\npsoas\\npsocid\\npsocids\\npsoralea\\npsoraleas\\npsoriasis\\npsoriasises\\npsst\\npsych\\npsyche\\npsyched\\npsyches\\npsychiatric\\npsychiatries\\npsychiatrist\\npsychiatrists\\npsychiatry\\npsychic\\npsychically\\npsychics\\npsyching\\npsycho\\npsychoanalyses\\npsychoanalysis\\npsychoanalyst\\npsychoanalysts\\npsychoanalytic\\npsychoanalyze\\npsychoanalyzed\\npsychoanalyzes\\npsychoanalyzing\\npsychological\\npsychologically\\npsychologies\\npsychologist\\npsychologists\\npsychology\\npsychopath\\npsychopathic\\npsychopaths\\npsychos\\npsychoses\\npsychosis\\npsychosocial\\npsychosomatic\\npsychotherapies\\npsychotherapist\\npsychotherapists\\npsychotherapy\\npsychotic\\npsychs\\npsylla\\npsyllas\\npsyllid\\npsyllids\\npterin\\npterins\\npteropod\\npteropods\\npteryla\\npterylae\\nptisan\\nptisans\\nptomain\\nptomaine\\nptomaines\\nptomains\\nptoses\\nptosis\\nptotic\\nptyalin\\nptyalins\\nptyalism\\nptyalisms\\npub\\npuberal\\npubertal\\npuberties\\npuberty\\npubes\\npubic\\npubis\\npublic\\npublican\\npublicans\\npublication\\npublications\\npublicist\\npublicists\\npublicities\\npublicity\\npublicize\\npublicized\\npublicizes\\npublicizing\\npublicly\\npublics\\npublish\\npublished\\npublisher\\npublishers\\npublishes\\npublishing\\npubs\\npuccoon\\npuccoons\\npuce\\npuces\\npuck\\npucka\\npucker\\npuckered\\npuckerer\\npuckerers\\npuckerier\\npuckeriest\\npuckering\\npuckers\\npuckery\\npuckish\\npucks\\npud\\npudding\\npuddings\\npuddle\\npuddled\\npuddler\\npuddlers\\npuddles\\npuddlier\\npuddliest\\npuddling\\npuddlings\\npuddly\\npudencies\\npudency\\npudenda\\npudendal\\npudendum\\npudgier\\npudgiest\\npudgily\\npudgy\\npudic\\npuds\\npueblo\\npueblos\\npuerile\\npuerilities\\npuerility\\npuff\\npuffball\\npuffballs\\npuffed\\npuffer\\npufferies\\npuffers\\npuffery\\npuffier\\npuffiest\\npuffily\\npuffin\\npuffing\\npuffins\\npuffs\\npuffy\\npug\\npugaree\\npugarees\\npuggaree\\npuggarees\\npugged\\npuggier\\npuggiest\\npugging\\npuggish\\npuggree\\npuggrees\\npuggries\\npuggry\\npuggy\\npugh\\npugilism\\npugilisms\\npugilist\\npugilistic\\npugilists\\npugmark\\npugmarks\\npugnacious\\npugree\\npugrees\\npugs\\npuisne\\npuisnes\\npuissant\\npuke\\npuked\\npukes\\npuking\\npukka\\npul\\npulchritude\\npulchritudes\\npulchritudinous\\npule\\npuled\\npuler\\npulers\\npules\\npuli\\npulicene\\npulicide\\npulicides\\npulik\\npuling\\npulingly\\npulings\\npulis\\npull\\npullback\\npullbacks\\npulled\\npuller\\npullers\\npullet\\npullets\\npulley\\npulleys\\npulling\\npullman\\npullmans\\npullout\\npullouts\\npullover\\npullovers\\npulls\\npulmonary\\npulmonic\\npulmotor\\npulmotors\\npulp\\npulpal\\npulpally\\npulped\\npulper\\npulpier\\npulpiest\\npulpily\\npulping\\npulpit\\npulpital\\npulpits\\npulpless\\npulpous\\npulps\\npulpwood\\npulpwoods\\npulpy\\npulque\\npulques\\npuls\\npulsant\\npulsar\\npulsars\\npulsate\\npulsated\\npulsates\\npulsating\\npulsation\\npulsations\\npulsator\\npulsators\\npulse\\npulsed\\npulsejet\\npulsejets\\npulser\\npulsers\\npulses\\npulsing\\npulsion\\npulsions\\npulsojet\\npulsojets\\npulverize\\npulverized\\npulverizes\\npulverizing\\npulvilli\\npulvinar\\npulvini\\npulvinus\\npuma\\npumas\\npumelo\\npumelos\\npumice\\npumiced\\npumicer\\npumicers\\npumices\\npumicing\\npumicite\\npumicites\\npummel\\npummeled\\npummeling\\npummelled\\npummelling\\npummels\\npump\\npumped\\npumper\\npumpernickel\\npumpernickels\\npumpers\\npumping\\npumpkin\\npumpkins\\npumpless\\npumplike\\npumps\\npun\\npuna\\npunas\\npunch\\npunched\\npuncheon\\npuncheons\\npuncher\\npunchers\\npunches\\npunchier\\npunchiest\\npunching\\npunchy\\npunctate\\npunctilious\\npunctual\\npunctualities\\npunctuality\\npunctually\\npunctuate\\npunctuated\\npunctuates\\npunctuating\\npunctuation\\npuncture\\npunctured\\npunctures\\npuncturing\\npundit\\npunditic\\npunditries\\npunditry\\npundits\\npung\\npungencies\\npungency\\npungent\\npungently\\npungs\\npunier\\npuniest\\npunily\\npuniness\\npuninesses\\npunish\\npunishable\\npunished\\npunisher\\npunishers\\npunishes\\npunishing\\npunishment\\npunishments\\npunition\\npunitions\\npunitive\\npunitory\\npunk\\npunka\\npunkah\\npunkahs\\npunkas\\npunker\\npunkest\\npunkey\\npunkeys\\npunkie\\npunkier\\npunkies\\npunkiest\\npunkin\\npunkins\\npunks\\npunky\\npunned\\npunner\\npunners\\npunnier\\npunniest\\npunning\\npunny\\npuns\\npunster\\npunsters\\npunt\\npunted\\npunter\\npunters\\npunties\\npunting\\npunto\\npuntos\\npunts\\npunty\\npuny\\npup\\npupa\\npupae\\npupal\\npuparia\\npuparial\\npuparium\\npupas\\npupate\\npupated\\npupates\\npupating\\npupation\\npupations\\npupfish\\npupfishes\\npupil\\npupilage\\npupilages\\npupilar\\npupilary\\npupils\\npupped\\npuppet\\npuppeteer\\npuppeteers\\npuppetries\\npuppetry\\npuppets\\npuppies\\npupping\\npuppy\\npuppydom\\npuppydoms\\npuppyish\\npups\\npur\\npurana\\npuranas\\npuranic\\npurblind\\npurchase\\npurchased\\npurchaser\\npurchasers\\npurchases\\npurchasing\\npurda\\npurdah\\npurdahs\\npurdas\\npure\\npurebred\\npurebreds\\npuree\\npureed\\npureeing\\npurees\\npurely\\npureness\\npurenesses\\npurer\\npurest\\npurfle\\npurfled\\npurfles\\npurfling\\npurflings\\npurgative\\npurgatorial\\npurgatories\\npurgatory\\npurge\\npurged\\npurger\\npurgers\\npurges\\npurging\\npurgings\\npuri\\npurification\\npurifications\\npurified\\npurifier\\npurifiers\\npurifies\\npurify\\npurifying\\npurin\\npurine\\npurines\\npurins\\npuris\\npurism\\npurisms\\npurist\\npuristic\\npurists\\npuritan\\npuritanical\\npuritans\\npurities\\npurity\\npurl\\npurled\\npurlieu\\npurlieus\\npurlin\\npurline\\npurlines\\npurling\\npurlins\\npurloin\\npurloined\\npurloining\\npurloins\\npurls\\npurple\\npurpled\\npurpler\\npurples\\npurplest\\npurpling\\npurplish\\npurply\\npurport\\npurported\\npurportedly\\npurporting\\npurports\\npurpose\\npurposed\\npurposeful\\npurposefully\\npurposeless\\npurposely\\npurposes\\npurposing\\npurpura\\npurpuras\\npurpure\\npurpures\\npurpuric\\npurpurin\\npurpurins\\npurr\\npurred\\npurring\\npurrs\\npurs\\npurse\\npursed\\npurser\\npursers\\npurses\\npursier\\npursiest\\npursily\\npursing\\npurslane\\npurslanes\\npursuance\\npursuances\\npursuant\\npursue\\npursued\\npursuer\\npursuers\\npursues\\npursuing\\npursuit\\npursuits\\npursy\\npurulent\\npurvey\\npurveyance\\npurveyances\\npurveyed\\npurveying\\npurveyor\\npurveyors\\npurveys\\npurview\\npurviews\\npus\\npuses\\npush\\npushball\\npushballs\\npushcart\\npushcarts\\npushdown\\npushdowns\\npushed\\npusher\\npushers\\npushes\\npushful\\npushier\\npushiest\\npushily\\npushing\\npushover\\npushovers\\npushpin\\npushpins\\npushup\\npushups\\npushy\\npusillanimous\\npusley\\npusleys\\npuslike\\npuss\\npusses\\npussier\\npussies\\npussiest\\npussley\\npussleys\\npusslies\\npusslike\\npussly\\npussy\\npussycat\\npussycats\\npustular\\npustule\\npustuled\\npustules\\nput\\nputamen\\nputamina\\nputative\\nputlog\\nputlogs\\nputoff\\nputoffs\\nputon\\nputons\\nputout\\nputouts\\nputrefaction\\nputrefactions\\nputrefactive\\nputrefied\\nputrefies\\nputrefy\\nputrefying\\nputrid\\nputridly\\nputs\\nputsch\\nputsches\\nputt\\nputted\\nputtee\\nputtees\\nputter\\nputtered\\nputterer\\nputterers\\nputtering\\nputters\\nputtied\\nputtier\\nputtiers\\nputties\\nputting\\nputts\\nputty\\nputtying\\npuzzle\\npuzzled\\npuzzlement\\npuzzlements\\npuzzler\\npuzzlers\\npuzzles\\npuzzling\\npya\\npyaemia\\npyaemias\\npyaemic\\npyas\\npycnidia\\npye\\npyelitic\\npyelitis\\npyelitises\\npyemia\\npyemias\\npyemic\\npyes\\npygidia\\npygidial\\npygidium\\npygmaean\\npygmean\\npygmies\\npygmoid\\npygmy\\npygmyish\\npygmyism\\npygmyisms\\npyic\\npyin\\npyins\\npyjamas\\npyknic\\npyknics\\npylon\\npylons\\npylori\\npyloric\\npylorus\\npyloruses\\npyoderma\\npyodermas\\npyogenic\\npyoid\\npyorrhea\\npyorrheas\\npyoses\\npyosis\\npyralid\\npyralids\\npyramid\\npyramidal\\npyramided\\npyramiding\\npyramids\\npyran\\npyranoid\\npyranose\\npyranoses\\npyrans\\npyre\\npyrene\\npyrenes\\npyrenoid\\npyrenoids\\npyres\\npyretic\\npyrexia\\npyrexial\\npyrexias\\npyrexic\\npyric\\npyridic\\npyridine\\npyridines\\npyriform\\npyrite\\npyrites\\npyritic\\npyritous\\npyrogen\\npyrogens\\npyrola\\npyrolas\\npyrologies\\npyrology\\npyrolyze\\npyrolyzed\\npyrolyzes\\npyrolyzing\\npyromania\\npyromaniac\\npyromaniacs\\npyromanias\\npyrone\\npyrones\\npyronine\\npyronines\\npyrope\\npyropes\\npyrosis\\npyrosises\\npyrostat\\npyrostats\\npyrotechnic\\npyrotechnics\\npyroxene\\npyroxenes\\npyrrhic\\npyrrhics\\npyrrol\\npyrrole\\npyrroles\\npyrrolic\\npyrrols\\npyruvate\\npyruvates\\npython\\npythonic\\npythons\\npyuria\\npyurias\\npyx\\npyxes\\npyxides\\npyxidia\\npyxidium\\npyxie\\npyxies\\npyxis\\nqaid\\nqaids\\nqindar\\nqindars\\nqintar\\nqintars\\nqiviut\\nqiviuts\\nqoph\\nqophs\\nqua\\nquack\\nquacked\\nquackeries\\nquackery\\nquacking\\nquackish\\nquackism\\nquackisms\\nquacks\\nquad\\nquadded\\nquadding\\nquadrangle\\nquadrangles\\nquadrangular\\nquadrans\\nquadrant\\nquadrantes\\nquadrants\\nquadrat\\nquadrate\\nquadrated\\nquadrates\\nquadrating\\nquadrats\\nquadric\\nquadrics\\nquadriga\\nquadrigae\\nquadrilateral\\nquadrilaterals\\nquadrille\\nquadrilles\\nquadroon\\nquadroons\\nquadruped\\nquadrupedal\\nquadrupeds\\nquadruple\\nquadrupled\\nquadruples\\nquadruplet\\nquadruplets\\nquadrupling\\nquads\\nquaere\\nquaeres\\nquaestor\\nquaestors\\nquaff\\nquaffed\\nquaffer\\nquaffers\\nquaffing\\nquaffs\\nquag\\nquagga\\nquaggas\\nquaggier\\nquaggiest\\nquaggy\\nquagmire\\nquagmires\\nquagmirier\\nquagmiriest\\nquagmiry\\nquags\\nquahaug\\nquahaugs\\nquahog\\nquahogs\\nquai\\nquaich\\nquaiches\\nquaichs\\nquaigh\\nquaighs\\nquail\\nquailed\\nquailing\\nquails\\nquaint\\nquainter\\nquaintest\\nquaintly\\nquaintness\\nquaintnesses\\nquais\\nquake\\nquaked\\nquaker\\nquakers\\nquakes\\nquakier\\nquakiest\\nquakily\\nquaking\\nquaky\\nquale\\nqualia\\nqualification\\nqualifications\\nqualified\\nqualifier\\nqualifiers\\nqualifies\\nqualify\\nqualifying\\nqualitative\\nqualities\\nquality\\nqualm\\nqualmier\\nqualmiest\\nqualmish\\nqualms\\nqualmy\\nquamash\\nquamashes\\nquandang\\nquandangs\\nquandaries\\nquandary\\nquandong\\nquandongs\\nquant\\nquanta\\nquantal\\nquanted\\nquantic\\nquantics\\nquantified\\nquantifies\\nquantify\\nquantifying\\nquanting\\nquantitative\\nquantities\\nquantity\\nquantize\\nquantized\\nquantizes\\nquantizing\\nquantong\\nquantongs\\nquants\\nquantum\\nquarantine\\nquarantined\\nquarantines\\nquarantining\\nquare\\nquark\\nquarks\\nquarrel\\nquarreled\\nquarreling\\nquarrelled\\nquarrelling\\nquarrels\\nquarrelsome\\nquarried\\nquarrier\\nquarriers\\nquarries\\nquarry\\nquarrying\\nquart\\nquartan\\nquartans\\nquarte\\nquarter\\nquarterback\\nquarterbacked\\nquarterbacking\\nquarterbacks\\nquartered\\nquartering\\nquarterlies\\nquarterly\\nquartermaster\\nquartermasters\\nquartern\\nquarterns\\nquarters\\nquartes\\nquartet\\nquartets\\nquartic\\nquartics\\nquartile\\nquartiles\\nquarto\\nquartos\\nquarts\\nquartz\\nquartzes\\nquasar\\nquasars\\nquash\\nquashed\\nquashes\\nquashing\\nquasi\\nquass\\nquasses\\nquassia\\nquassias\\nquassin\\nquassins\\nquate\\nquatorze\\nquatorzes\\nquatrain\\nquatrains\\nquatre\\nquatres\\nquaver\\nquavered\\nquaverer\\nquaverers\\nquavering\\nquavers\\nquavery\\nquay\\nquayage\\nquayages\\nquaylike\\nquays\\nquayside\\nquaysides\\nquean\\nqueans\\nqueasier\\nqueasiest\\nqueasily\\nqueasiness\\nqueasinesses\\nqueasy\\nqueazier\\nqueaziest\\nqueazy\\nqueen\\nqueened\\nqueening\\nqueenlier\\nqueenliest\\nqueenly\\nqueens\\nqueer\\nqueered\\nqueerer\\nqueerest\\nqueering\\nqueerish\\nqueerly\\nqueerness\\nqueernesses\\nqueers\\nquell\\nquelled\\nqueller\\nquellers\\nquelling\\nquells\\nquench\\nquenchable\\nquenched\\nquencher\\nquenchers\\nquenches\\nquenching\\nquenchless\\nquenelle\\nquenelles\\nquercine\\nquerida\\nqueridas\\nqueried\\nquerier\\nqueriers\\nqueries\\nquerist\\nquerists\\nquern\\nquerns\\nquerulous\\nquerulously\\nquerulousness\\nquerulousnesses\\nquery\\nquerying\\nquest\\nquested\\nquester\\nquesters\\nquesting\\nquestion\\nquestionable\\nquestioned\\nquestioner\\nquestioners\\nquestioning\\nquestionnaire\\nquestionnaires\\nquestionniare\\nquestionniares\\nquestions\\nquestor\\nquestors\\nquests\\nquetzal\\nquetzales\\nquetzals\\nqueue\\nqueued\\nqueueing\\nqueuer\\nqueuers\\nqueues\\nqueuing\\nquey\\nqueys\\nquezal\\nquezales\\nquezals\\nquibble\\nquibbled\\nquibbler\\nquibblers\\nquibbles\\nquibbling\\nquiche\\nquiches\\nquick\\nquicken\\nquickened\\nquickening\\nquickens\\nquicker\\nquickest\\nquickie\\nquickies\\nquickly\\nquickness\\nquicknesses\\nquicks\\nquicksand\\nquicksands\\nquickset\\nquicksets\\nquicksilver\\nquicksilvers\\nquid\\nquiddities\\nquiddity\\nquidnunc\\nquidnuncs\\nquids\\nquiescence\\nquiescences\\nquiescent\\nquiet\\nquieted\\nquieten\\nquietened\\nquietening\\nquietens\\nquieter\\nquieters\\nquietest\\nquieting\\nquietism\\nquietisms\\nquietist\\nquietists\\nquietly\\nquietness\\nquietnesses\\nquiets\\nquietude\\nquietudes\\nquietus\\nquietuses\\nquiff\\nquiffs\\nquill\\nquillai\\nquillais\\nquilled\\nquillet\\nquillets\\nquilling\\nquills\\nquilt\\nquilted\\nquilter\\nquilters\\nquilting\\nquiltings\\nquilts\\nquinaries\\nquinary\\nquinate\\nquince\\nquinces\\nquincunx\\nquincunxes\\nquinella\\nquinellas\\nquinic\\nquiniela\\nquinielas\\nquinin\\nquinina\\nquininas\\nquinine\\nquinines\\nquinins\\nquinnat\\nquinnats\\nquinoa\\nquinoas\\nquinoid\\nquinoids\\nquinol\\nquinolin\\nquinolins\\nquinols\\nquinone\\nquinones\\nquinsies\\nquinsy\\nquint\\nquintain\\nquintains\\nquintal\\nquintals\\nquintan\\nquintans\\nquintar\\nquintars\\nquintessence\\nquintessences\\nquintessential\\nquintet\\nquintets\\nquintic\\nquintics\\nquintile\\nquintiles\\nquintin\\nquintins\\nquints\\nquintuple\\nquintupled\\nquintuples\\nquintuplet\\nquintuplets\\nquintupling\\nquip\\nquipped\\nquipping\\nquippish\\nquippu\\nquippus\\nquips\\nquipster\\nquipsters\\nquipu\\nquipus\\nquire\\nquired\\nquires\\nquiring\\nquirk\\nquirked\\nquirkier\\nquirkiest\\nquirkily\\nquirking\\nquirks\\nquirky\\nquirt\\nquirted\\nquirting\\nquirts\\nquisling\\nquislings\\nquit\\nquitch\\nquitches\\nquite\\nquitrent\\nquitrents\\nquits\\nquitted\\nquitter\\nquitters\\nquitting\\nquittor\\nquittors\\nquiver\\nquivered\\nquiverer\\nquiverers\\nquivering\\nquivers\\nquivery\\nquixote\\nquixotes\\nquixotic\\nquixotries\\nquixotry\\nquiz\\nquizmaster\\nquizmasters\\nquizzed\\nquizzer\\nquizzers\\nquizzes\\nquizzing\\nquod\\nquods\\nquoin\\nquoined\\nquoining\\nquoins\\nquoit\\nquoited\\nquoiting\\nquoits\\nquomodo\\nquomodos\\nquondam\\nquorum\\nquorums\\nquota\\nquotable\\nquotably\\nquotas\\nquotation\\nquotations\\nquote\\nquoted\\nquoter\\nquoters\\nquotes\\nquoth\\nquotha\\nquotient\\nquotients\\nquoting\\nqursh\\nqurshes\\nqurush\\nqurushes\\nrabato\\nrabatos\\nrabbet\\nrabbeted\\nrabbeting\\nrabbets\\nrabbi\\nrabbies\\nrabbin\\nrabbinate\\nrabbinates\\nrabbinic\\nrabbinical\\nrabbins\\nrabbis\\nrabbit\\nrabbited\\nrabbiter\\nrabbiters\\nrabbiting\\nrabbitries\\nrabbitry\\nrabbits\\nrabble\\nrabbled\\nrabbler\\nrabblers\\nrabbles\\nrabbling\\nrabboni\\nrabbonis\\nrabic\\nrabid\\nrabidities\\nrabidity\\nrabidly\\nrabies\\nrabietic\\nraccoon\\nraccoons\\nrace\\nracecourse\\nracecourses\\nraced\\nracehorse\\nracehorses\\nracemate\\nracemates\\nraceme\\nracemed\\nracemes\\nracemic\\nracemism\\nracemisms\\nracemize\\nracemized\\nracemizes\\nracemizing\\nracemoid\\nracemose\\nracemous\\nracer\\nracers\\nraces\\nracetrack\\nracetracks\\nraceway\\nraceways\\nrachet\\nrachets\\nrachial\\nrachides\\nrachis\\nrachises\\nrachitic\\nrachitides\\nrachitis\\nracial\\nracially\\nracier\\nraciest\\nracily\\nraciness\\nracinesses\\nracing\\nracings\\nracism\\nracisms\\nracist\\nracists\\nrack\\nracked\\nracker\\nrackers\\nracket\\nracketed\\nracketeer\\nracketeering\\nracketeerings\\nracketeers\\nracketier\\nracketiest\\nracketing\\nrackets\\nrackety\\nracking\\nrackle\\nracks\\nrackwork\\nrackworks\\nraclette\\nraclettes\\nracon\\nracons\\nraconteur\\nraconteurs\\nracoon\\nracoons\\nracquet\\nracquets\\nracy\\nrad\\nradar\\nradars\\nradded\\nradding\\nraddle\\nraddled\\nraddles\\nraddling\\nradiable\\nradial\\nradiale\\nradialia\\nradially\\nradials\\nradian\\nradiance\\nradiances\\nradiancies\\nradiancy\\nradians\\nradiant\\nradiantly\\nradiants\\nradiate\\nradiated\\nradiates\\nradiating\\nradiation\\nradiations\\nradiator\\nradiators\\nradical\\nradicalism\\nradicalisms\\nradically\\nradicals\\nradicand\\nradicands\\nradicate\\nradicated\\nradicates\\nradicating\\nradicel\\nradicels\\nradices\\nradicle\\nradicles\\nradii\\nradio\\nradioactive\\nradioactivities\\nradioactivity\\nradioed\\nradioing\\nradiologies\\nradiologist\\nradiologists\\nradiology\\nradioman\\nradiomen\\nradionuclide\\nradionuclides\\nradios\\nradiotherapies\\nradiotherapy\\nradish\\nradishes\\nradium\\nradiums\\nradius\\nradiuses\\nradix\\nradixes\\nradome\\nradomes\\nradon\\nradons\\nrads\\nradula\\nradulae\\nradular\\nradulas\\nraff\\nraffia\\nraffias\\nraffish\\nraffishly\\nraffishness\\nraffishnesses\\nraffle\\nraffled\\nraffler\\nrafflers\\nraffles\\nraffling\\nraffs\\nraft\\nrafted\\nrafter\\nrafters\\nrafting\\nrafts\\nraftsman\\nraftsmen\\nrag\\nraga\\nragamuffin\\nragamuffins\\nragas\\nragbag\\nragbags\\nrage\\nraged\\nragee\\nragees\\nrages\\nragged\\nraggeder\\nraggedest\\nraggedly\\nraggedness\\nraggednesses\\nraggedy\\nraggies\\nragging\\nraggle\\nraggles\\nraggy\\nragi\\nraging\\nragingly\\nragis\\nraglan\\nraglans\\nragman\\nragmen\\nragout\\nragouted\\nragouting\\nragouts\\nrags\\nragtag\\nragtags\\nragtime\\nragtimes\\nragweed\\nragweeds\\nragwort\\nragworts\\nrah\\nraia\\nraias\\nraid\\nraided\\nraider\\nraiders\\nraiding\\nraids\\nrail\\nrailbird\\nrailbirds\\nrailed\\nrailer\\nrailers\\nrailhead\\nrailheads\\nrailing\\nrailings\\nrailleries\\nraillery\\nrailroad\\nrailroaded\\nrailroader\\nrailroaders\\nrailroading\\nrailroadings\\nrailroads\\nrails\\nrailway\\nrailways\\nraiment\\nraiments\\nrain\\nrainband\\nrainbands\\nrainbird\\nrainbirds\\nrainbow\\nrainbows\\nraincoat\\nraincoats\\nraindrop\\nraindrops\\nrained\\nrainfall\\nrainfalls\\nrainier\\nrainiest\\nrainily\\nraining\\nrainless\\nrainmaker\\nrainmakers\\nrainmaking\\nrainmakings\\nrainout\\nrainouts\\nrains\\nrainstorm\\nrainstorms\\nrainwash\\nrainwashes\\nrainwater\\nrainwaters\\nrainwear\\nrainwears\\nrainy\\nraisable\\nraise\\nraised\\nraiser\\nraisers\\nraises\\nraisin\\nraising\\nraisings\\nraisins\\nraisiny\\nraisonne\\nraj\\nraja\\nrajah\\nrajahs\\nrajas\\nrajes\\nrake\\nraked\\nrakee\\nrakees\\nrakehell\\nrakehells\\nrakeoff\\nrakeoffs\\nraker\\nrakers\\nrakes\\nraki\\nraking\\nrakis\\nrakish\\nrakishly\\nrakishness\\nrakishnesses\\nrale\\nrales\\nrallied\\nrallier\\nralliers\\nrallies\\nralline\\nrally\\nrallye\\nrallyes\\nrallying\\nrallyings\\nrallyist\\nrallyists\\nram\\nramate\\nramble\\nrambled\\nrambler\\nramblers\\nrambles\\nrambling\\nrambunctious\\nrambutan\\nrambutans\\nramee\\nramees\\nramekin\\nramekins\\nramenta\\nramentum\\nramequin\\nramequins\\nramet\\nramets\\nrami\\nramie\\nramies\\nramification\\nramifications\\nramified\\nramifies\\nramiform\\nramify\\nramifying\\nramilie\\nramilies\\nramillie\\nramillies\\nramjet\\nramjets\\nrammed\\nrammer\\nrammers\\nrammier\\nrammiest\\nramming\\nrammish\\nrammy\\nramose\\nramosely\\nramosities\\nramosity\\nramous\\nramp\\nrampage\\nrampaged\\nrampager\\nrampagers\\nrampages\\nrampaging\\nrampancies\\nrampancy\\nrampant\\nrampantly\\nrampart\\nramparted\\nramparting\\nramparts\\nramped\\nrampike\\nrampikes\\nramping\\nrampion\\nrampions\\nrampole\\nrampoles\\nramps\\nramrod\\nramrods\\nrams\\nramshackle\\nramshorn\\nramshorns\\nramson\\nramsons\\nramtil\\nramtils\\nramulose\\nramulous\\nramus\\nran\\nrance\\nrances\\nranch\\nranched\\nrancher\\nranchero\\nrancheros\\nranchers\\nranches\\nranching\\nranchland\\nranchlands\\nranchman\\nranchmen\\nrancho\\nranchos\\nrancid\\nrancidities\\nrancidity\\nrancidness\\nrancidnesses\\nrancor\\nrancored\\nrancorous\\nrancors\\nrancour\\nrancours\\nrand\\nrandan\\nrandans\\nrandies\\nrandom\\nrandomization\\nrandomizations\\nrandomize\\nrandomized\\nrandomizes\\nrandomizing\\nrandomly\\nrandomness\\nrandomnesses\\nrandoms\\nrands\\nrandy\\nranee\\nranees\\nrang\\nrange\\nranged\\nrangeland\\nrangelands\\nranger\\nrangers\\nranges\\nrangier\\nrangiest\\nranginess\\nranginesses\\nranging\\nrangy\\nrani\\nranid\\nranids\\nranis\\nrank\\nranked\\nranker\\nrankers\\nrankest\\nranking\\nrankish\\nrankle\\nrankled\\nrankles\\nrankling\\nrankly\\nrankness\\nranknesses\\nranks\\nranpike\\nranpikes\\nransack\\nransacked\\nransacking\\nransacks\\nransom\\nransomed\\nransomer\\nransomers\\nransoming\\nransoms\\nrant\\nranted\\nranter\\nranters\\nranting\\nrantingly\\nrants\\nranula\\nranulas\\nrap\\nrapacious\\nrapaciously\\nrapaciousness\\nrapaciousnesses\\nrapacities\\nrapacity\\nrape\\nraped\\nraper\\nrapers\\nrapes\\nrapeseed\\nrapeseeds\\nraphae\\nraphe\\nraphes\\nraphia\\nraphias\\nraphide\\nraphides\\nraphis\\nrapid\\nrapider\\nrapidest\\nrapidities\\nrapidity\\nrapidly\\nrapids\\nrapier\\nrapiered\\nrapiers\\nrapine\\nrapines\\nraping\\nrapist\\nrapists\\nrapparee\\nrapparees\\nrapped\\nrappee\\nrappees\\nrappel\\nrappelled\\nrappelling\\nrappels\\nrappen\\nrapper\\nrappers\\nrapping\\nrappini\\nrapport\\nrapports\\nraps\\nrapt\\nraptly\\nraptness\\nraptnesses\\nraptor\\nraptors\\nrapture\\nraptured\\nraptures\\nrapturing\\nrapturous\\nrare\\nrarebit\\nrarebits\\nrarefaction\\nrarefactions\\nrarefied\\nrarefier\\nrarefiers\\nrarefies\\nrarefy\\nrarefying\\nrarely\\nrareness\\nrarenesses\\nrarer\\nrareripe\\nrareripes\\nrarest\\nrarified\\nrarifies\\nrarify\\nrarifying\\nraring\\nrarities\\nrarity\\nras\\nrasbora\\nrasboras\\nrascal\\nrascalities\\nrascality\\nrascally\\nrascals\\nrase\\nrased\\nraser\\nrasers\\nrases\\nrash\\nrasher\\nrashers\\nrashes\\nrashest\\nrashlike\\nrashly\\nrashness\\nrashnesses\\nrasing\\nrasorial\\nrasp\\nraspberries\\nraspberry\\nrasped\\nrasper\\nraspers\\nraspier\\nraspiest\\nrasping\\nraspish\\nrasps\\nraspy\\nrassle\\nrassled\\nrassles\\nrassling\\nraster\\nrasters\\nrasure\\nrasures\\nrat\\nratable\\nratably\\nratafee\\nratafees\\nratafia\\nratafias\\nratal\\nratals\\nratan\\nratanies\\nratans\\nratany\\nrataplan\\nrataplanned\\nrataplanning\\nrataplans\\nratatat\\nratatats\\nratch\\nratches\\nratchet\\nratchets\\nrate\\nrateable\\nrateably\\nrated\\nratel\\nratels\\nrater\\nraters\\nrates\\nratfink\\nratfinks\\nratfish\\nratfishes\\nrath\\nrathe\\nrather\\nrathole\\nratholes\\nraticide\\nraticides\\nratification\\nratifications\\nratified\\nratifier\\nratifiers\\nratifies\\nratify\\nratifying\\nratine\\nratines\\nrating\\nratings\\nratio\\nration\\nrational\\nrationale\\nrationales\\nrationalization\\nrationalizations\\nrationalize\\nrationalized\\nrationalizes\\nrationalizing\\nrationally\\nrationals\\nrationed\\nrationing\\nrations\\nratios\\nratite\\nratites\\nratlike\\nratlin\\nratline\\nratlines\\nratlins\\nrato\\nratoon\\nratooned\\nratooner\\nratooners\\nratooning\\nratoons\\nratos\\nrats\\nratsbane\\nratsbanes\\nrattail\\nrattails\\nrattan\\nrattans\\nratted\\nratteen\\nratteens\\nratten\\nrattened\\nrattener\\nratteners\\nrattening\\nrattens\\nratter\\nratters\\nrattier\\nrattiest\\nratting\\nrattish\\nrattle\\nrattled\\nrattler\\nrattlers\\nrattles\\nrattlesnake\\nrattlesnakes\\nrattling\\nrattlings\\nrattly\\nratton\\nrattons\\nrattoon\\nrattooned\\nrattooning\\nrattoons\\nrattrap\\nrattraps\\nratty\\nraucities\\nraucity\\nraucous\\nraucously\\nraucousness\\nraucousnesses\\nraunchier\\nraunchiest\\nraunchy\\nravage\\nravaged\\nravager\\nravagers\\nravages\\nravaging\\nrave\\nraved\\nravel\\nraveled\\nraveler\\nravelers\\nravelin\\nraveling\\nravelings\\nravelins\\nravelled\\nraveller\\nravellers\\nravelling\\nravellings\\nravelly\\nravels\\nraven\\nravened\\nravener\\nraveners\\nravening\\nravenings\\nravenous\\nravenously\\nravenousness\\nravenousnesses\\nravens\\nraver\\nravers\\nraves\\nravigote\\nravigotes\\nravin\\nravine\\nravined\\nravines\\nraving\\nravingly\\nravings\\nravining\\nravins\\nravioli\\nraviolis\\nravish\\nravished\\nravisher\\nravishers\\nravishes\\nravishing\\nravishment\\nravishments\\nraw\\nrawboned\\nrawer\\nrawest\\nrawhide\\nrawhided\\nrawhides\\nrawhiding\\nrawish\\nrawly\\nrawness\\nrawnesses\\nraws\\nrax\\nraxed\\nraxes\\nraxing\\nray\\nraya\\nrayah\\nrayahs\\nrayas\\nrayed\\nraygrass\\nraygrasses\\nraying\\nrayless\\nrayon\\nrayons\\nrays\\nraze\\nrazed\\nrazee\\nrazeed\\nrazeeing\\nrazees\\nrazer\\nrazers\\nrazes\\nrazing\\nrazor\\nrazored\\nrazoring\\nrazors\\nrazz\\nrazzed\\nrazzes\\nrazzing\\nre\\nreabsorb\\nreabsorbed\\nreabsorbing\\nreabsorbs\\nreabstract\\nreabstracted\\nreabstracting\\nreabstracts\\nreaccede\\nreacceded\\nreaccedes\\nreacceding\\nreaccelerate\\nreaccelerated\\nreaccelerates\\nreaccelerating\\nreaccent\\nreaccented\\nreaccenting\\nreaccents\\nreaccept\\nreaccepted\\nreaccepting\\nreaccepts\\nreacclimatize\\nreacclimatized\\nreacclimatizes\\nreacclimatizing\\nreaccredit\\nreaccredited\\nreaccrediting\\nreaccredits\\nreaccumulate\\nreaccumulated\\nreaccumulates\\nreaccumulating\\nreaccuse\\nreaccused\\nreaccuses\\nreaccusing\\nreach\\nreachable\\nreached\\nreacher\\nreachers\\nreaches\\nreachieve\\nreachieved\\nreachieves\\nreachieving\\nreaching\\nreacquaint\\nreacquainted\\nreacquainting\\nreacquaints\\nreacquire\\nreacquired\\nreacquires\\nreacquiring\\nreact\\nreactant\\nreactants\\nreacted\\nreacting\\nreaction\\nreactionaries\\nreactionary\\nreactions\\nreactivate\\nreactivated\\nreactivates\\nreactivating\\nreactivation\\nreactivations\\nreactive\\nreactor\\nreactors\\nreacts\\nread\\nreadabilities\\nreadability\\nreadable\\nreadably\\nreadapt\\nreadapted\\nreadapting\\nreadapts\\nreadd\\nreadded\\nreaddict\\nreaddicted\\nreaddicting\\nreaddicts\\nreadding\\nreaddress\\nreaddressed\\nreaddresses\\nreaddressing\\nreadds\\nreader\\nreaders\\nreadership\\nreaderships\\nreadied\\nreadier\\nreadies\\nreadiest\\nreadily\\nreadiness\\nreadinesses\\nreading\\nreadings\\nreadjust\\nreadjustable\\nreadjusted\\nreadjusting\\nreadjustment\\nreadjustments\\nreadjusts\\nreadmit\\nreadmits\\nreadmitted\\nreadmitting\\nreadopt\\nreadopted\\nreadopting\\nreadopts\\nreadorn\\nreadorned\\nreadorning\\nreadorns\\nreadout\\nreadouts\\nreads\\nready\\nreadying\\nreaffirm\\nreaffirmed\\nreaffirming\\nreaffirms\\nreaffix\\nreaffixed\\nreaffixes\\nreaffixing\\nreagent\\nreagents\\nreagin\\nreaginic\\nreagins\\nreal\\nrealer\\nreales\\nrealest\\nrealgar\\nrealgars\\nrealia\\nrealign\\nrealigned\\nrealigning\\nrealignment\\nrealignments\\nrealigns\\nrealise\\nrealised\\nrealiser\\nrealisers\\nrealises\\nrealising\\nrealism\\nrealisms\\nrealist\\nrealistic\\nrealistically\\nrealists\\nrealities\\nreality\\nrealizable\\nrealization\\nrealizations\\nrealize\\nrealized\\nrealizer\\nrealizers\\nrealizes\\nrealizing\\nreallocate\\nreallocated\\nreallocates\\nreallocating\\nreallot\\nreallots\\nreallotted\\nreallotting\\nreally\\nrealm\\nrealms\\nrealness\\nrealnesses\\nreals\\nrealter\\nrealtered\\nrealtering\\nrealters\\nrealties\\nrealty\\nream\\nreamed\\nreamer\\nreamers\\nreaming\\nreams\\nreanalyses\\nreanalysis\\nreanalyze\\nreanalyzed\\nreanalyzes\\nreanalyzing\\nreanesthetize\\nreanesthetized\\nreanesthetizes\\nreanesthetizing\\nreannex\\nreannexed\\nreannexes\\nreannexing\\nreanoint\\nreanointed\\nreanointing\\nreanoints\\nreap\\nreapable\\nreaped\\nreaper\\nreapers\\nreaphook\\nreaphooks\\nreaping\\nreappear\\nreappearance\\nreappearances\\nreappeared\\nreappearing\\nreappears\\nreapplied\\nreapplies\\nreapply\\nreapplying\\nreappoint\\nreappointed\\nreappointing\\nreappoints\\nreapportion\\nreapportioned\\nreapportioning\\nreapportions\\nreappraisal\\nreappraisals\\nreappraise\\nreappraised\\nreappraises\\nreappraising\\nreapprove\\nreapproved\\nreapproves\\nreapproving\\nreaps\\nrear\\nreared\\nrearer\\nrearers\\nreargue\\nreargued\\nreargues\\nrearguing\\nrearing\\nrearm\\nrearmed\\nrearmice\\nrearming\\nrearmost\\nrearms\\nrearouse\\nrearoused\\nrearouses\\nrearousing\\nrearrange\\nrearranged\\nrearranges\\nrearranging\\nrearrest\\nrearrested\\nrearresting\\nrearrests\\nrears\\nrearward\\nrearwards\\nreascend\\nreascended\\nreascending\\nreascends\\nreascent\\nreascents\\nreason\\nreasonable\\nreasonableness\\nreasonablenesses\\nreasonably\\nreasoned\\nreasoner\\nreasoners\\nreasoning\\nreasonings\\nreasons\\nreassail\\nreassailed\\nreassailing\\nreassails\\nreassemble\\nreassembled\\nreassembles\\nreassembling\\nreassert\\nreasserted\\nreasserting\\nreasserts\\nreassess\\nreassessed\\nreassesses\\nreassessing\\nreassessment\\nreassessments\\nreassign\\nreassigned\\nreassigning\\nreassignment\\nreassignments\\nreassigns\\nreassociate\\nreassociated\\nreassociates\\nreassociating\\nreassort\\nreassorted\\nreassorting\\nreassorts\\nreassume\\nreassumed\\nreassumes\\nreassuming\\nreassurance\\nreassurances\\nreassure\\nreassured\\nreassures\\nreassuring\\nreassuringly\\nreata\\nreatas\\nreattach\\nreattached\\nreattaches\\nreattaching\\nreattack\\nreattacked\\nreattacking\\nreattacks\\nreattain\\nreattained\\nreattaining\\nreattains\\nreave\\nreaved\\nreaver\\nreavers\\nreaves\\nreaving\\nreavow\\nreavowed\\nreavowing\\nreavows\\nreawake\\nreawaked\\nreawaken\\nreawakened\\nreawakening\\nreawakens\\nreawakes\\nreawaking\\nreawoke\\nreawoken\\nreb\\nrebait\\nrebaited\\nrebaiting\\nrebaits\\nrebalance\\nrebalanced\\nrebalances\\nrebalancing\\nrebaptize\\nrebaptized\\nrebaptizes\\nrebaptizing\\nrebate\\nrebated\\nrebater\\nrebaters\\nrebates\\nrebating\\nrebato\\nrebatos\\nrebbe\\nrebbes\\nrebec\\nrebeck\\nrebecks\\nrebecs\\nrebel\\nrebeldom\\nrebeldoms\\nrebelled\\nrebelling\\nrebellion\\nrebellions\\nrebellious\\nrebelliously\\nrebelliousness\\nrebelliousnesses\\nrebels\\nrebid\\nrebidden\\nrebidding\\nrebids\\nrebill\\nrebilled\\nrebilling\\nrebills\\nrebind\\nrebinding\\nrebinds\\nrebirth\\nrebirths\\nrebloom\\nrebloomed\\nreblooming\\nreblooms\\nreboant\\nreboard\\nreboarded\\nreboarding\\nreboards\\nreboil\\nreboiled\\nreboiling\\nreboils\\nrebop\\nrebops\\nreborn\\nrebound\\nrebounded\\nrebounding\\nrebounds\\nrebozo\\nrebozos\\nrebranch\\nrebranched\\nrebranches\\nrebranching\\nrebroadcast\\nrebroadcasted\\nrebroadcasting\\nrebroadcasts\\nrebs\\nrebuff\\nrebuffed\\nrebuffing\\nrebuffs\\nrebuild\\nrebuilded\\nrebuilding\\nrebuilds\\nrebuilt\\nrebuke\\nrebuked\\nrebuker\\nrebukers\\nrebukes\\nrebuking\\nreburial\\nreburials\\nreburied\\nreburies\\nrebury\\nreburying\\nrebus\\nrebuses\\nrebut\\nrebuts\\nrebuttal\\nrebuttals\\nrebutted\\nrebutter\\nrebutters\\nrebutting\\nrebutton\\nrebuttoned\\nrebuttoning\\nrebuttons\\nrec\\nrecalcitrance\\nrecalcitrances\\nrecalcitrant\\nrecalculate\\nrecalculated\\nrecalculates\\nrecalculating\\nrecall\\nrecalled\\nrecaller\\nrecallers\\nrecalling\\nrecalls\\nrecane\\nrecaned\\nrecanes\\nrecaning\\nrecant\\nrecanted\\nrecanter\\nrecanters\\nrecanting\\nrecants\\nrecap\\nrecapitulate\\nrecapitulated\\nrecapitulates\\nrecapitulating\\nrecapitulation\\nrecapitulations\\nrecapped\\nrecapping\\nrecaps\\nrecapture\\nrecaptured\\nrecaptures\\nrecapturing\\nrecarried\\nrecarries\\nrecarry\\nrecarrying\\nrecast\\nrecasting\\nrecasts\\nrecede\\nreceded\\nrecedes\\nreceding\\nreceipt\\nreceipted\\nreceipting\\nreceipts\\nreceivable\\nreceivables\\nreceive\\nreceived\\nreceiver\\nreceivers\\nreceivership\\nreceiverships\\nreceives\\nreceiving\\nrecencies\\nrecency\\nrecent\\nrecenter\\nrecentest\\nrecently\\nrecentness\\nrecentnesses\\nrecept\\nreceptacle\\nreceptacles\\nreception\\nreceptionist\\nreceptionists\\nreceptions\\nreceptive\\nreceptively\\nreceptiveness\\nreceptivenesses\\nreceptivities\\nreceptivity\\nreceptor\\nreceptors\\nrecepts\\nrecertification\\nrecertifications\\nrecertified\\nrecertifies\\nrecertify\\nrecertifying\\nrecess\\nrecessed\\nrecesses\\nrecessing\\nrecession\\nrecessions\\nrechange\\nrechanged\\nrechanges\\nrechanging\\nrechannel\\nrechanneled\\nrechanneling\\nrechannels\\nrecharge\\nrecharged\\nrecharges\\nrecharging\\nrechart\\nrecharted\\nrecharting\\nrecharts\\nrecheat\\nrecheats\\nrecheck\\nrechecked\\nrechecking\\nrechecks\\nrechoose\\nrechooses\\nrechoosing\\nrechose\\nrechosen\\nrechristen\\nrechristened\\nrechristening\\nrechristens\\nrecipe\\nrecipes\\nrecipient\\nrecipients\\nreciprocal\\nreciprocally\\nreciprocals\\nreciprocate\\nreciprocated\\nreciprocates\\nreciprocating\\nreciprocation\\nreciprocations\\nreciprocities\\nreciprocity\\nrecircle\\nrecircled\\nrecircles\\nrecircling\\nrecirculate\\nrecirculated\\nrecirculates\\nrecirculating\\nrecirculation\\nrecirculations\\nrecision\\nrecisions\\nrecital\\nrecitals\\nrecitation\\nrecitations\\nrecite\\nrecited\\nreciter\\nreciters\\nrecites\\nreciting\\nreck\\nrecked\\nrecking\\nreckless\\nrecklessly\\nrecklessness\\nrecklessnesses\\nreckon\\nreckoned\\nreckoner\\nreckoners\\nreckoning\\nreckonings\\nreckons\\nrecks\\nreclad\\nreclaim\\nreclaimable\\nreclaimed\\nreclaiming\\nreclaims\\nreclamation\\nreclamations\\nreclame\\nreclames\\nreclasp\\nreclasped\\nreclasping\\nreclasps\\nreclassification\\nreclassifications\\nreclassified\\nreclassifies\\nreclassify\\nreclassifying\\nreclean\\nrecleaned\\nrecleaning\\nrecleans\\nrecline\\nreclined\\nrecliner\\nrecliners\\nreclines\\nreclining\\nreclothe\\nreclothed\\nreclothes\\nreclothing\\nrecluse\\nrecluses\\nrecoal\\nrecoaled\\nrecoaling\\nrecoals\\nrecock\\nrecocked\\nrecocking\\nrecocks\\nrecodified\\nrecodifies\\nrecodify\\nrecodifying\\nrecognition\\nrecognitions\\nrecognizable\\nrecognizably\\nrecognizance\\nrecognizances\\nrecognize\\nrecognized\\nrecognizes\\nrecognizing\\nrecoil\\nrecoiled\\nrecoiler\\nrecoilers\\nrecoiling\\nrecoils\\nrecoin\\nrecoined\\nrecoining\\nrecoins\\nrecollection\\nrecollections\\nrecolonize\\nrecolonized\\nrecolonizes\\nrecolonizing\\nrecolor\\nrecolored\\nrecoloring\\nrecolors\\nrecomb\\nrecombed\\nrecombine\\nrecombined\\nrecombines\\nrecombing\\nrecombining\\nrecombs\\nrecommend\\nrecommendable\\nrecommendation\\nrecommendations\\nrecommendatory\\nrecommended\\nrecommender\\nrecommenders\\nrecommending\\nrecommends\\nrecommit\\nrecommits\\nrecommitted\\nrecommitting\\nrecompense\\nrecompensed\\nrecompenses\\nrecompensing\\nrecompile\\nrecompiled\\nrecompiles\\nrecompiling\\nrecompute\\nrecomputed\\nrecomputes\\nrecomputing\\nrecon\\nreconceive\\nreconceived\\nreconceives\\nreconceiving\\nreconcilable\\nreconcile\\nreconciled\\nreconcilement\\nreconcilements\\nreconciler\\nreconcilers\\nreconciles\\nreconciliation\\nreconciliations\\nreconciling\\nrecondite\\nreconfigure\\nreconfigured\\nreconfigures\\nreconfiguring\\nreconnaissance\\nreconnaissances\\nreconnect\\nreconnected\\nreconnecting\\nreconnects\\nreconnoiter\\nreconnoitered\\nreconnoitering\\nreconnoiters\\nreconquer\\nreconquered\\nreconquering\\nreconquers\\nreconquest\\nreconquests\\nrecons\\nreconsider\\nreconsideration\\nreconsiderations\\nreconsidered\\nreconsidering\\nreconsiders\\nreconsolidate\\nreconsolidated\\nreconsolidates\\nreconsolidating\\nreconstruct\\nreconstructed\\nreconstructing\\nreconstructs\\nrecontaminate\\nrecontaminated\\nrecontaminates\\nrecontaminating\\nreconvene\\nreconvened\\nreconvenes\\nreconvening\\nreconvey\\nreconveyed\\nreconveying\\nreconveys\\nreconvict\\nreconvicted\\nreconvicting\\nreconvicts\\nrecook\\nrecooked\\nrecooking\\nrecooks\\nrecopied\\nrecopies\\nrecopy\\nrecopying\\nrecord\\nrecordable\\nrecorded\\nrecorder\\nrecorders\\nrecording\\nrecords\\nrecount\\nrecounted\\nrecounting\\nrecounts\\nrecoup\\nrecoupe\\nrecouped\\nrecouping\\nrecouple\\nrecoupled\\nrecouples\\nrecoupling\\nrecoups\\nrecourse\\nrecourses\\nrecover\\nrecoverable\\nrecovered\\nrecoveries\\nrecovering\\nrecovers\\nrecovery\\nrecrate\\nrecrated\\nrecrates\\nrecrating\\nrecreant\\nrecreants\\nrecreate\\nrecreated\\nrecreates\\nrecreating\\nrecreation\\nrecreational\\nrecreations\\nrecreative\\nrecriminate\\nrecriminated\\nrecriminates\\nrecriminating\\nrecrimination\\nrecriminations\\nrecriminatory\\nrecross\\nrecrossed\\nrecrosses\\nrecrossing\\nrecrown\\nrecrowned\\nrecrowning\\nrecrowns\\nrecruit\\nrecruited\\nrecruiting\\nrecruitment\\nrecruitments\\nrecruits\\nrecs\\nrecta\\nrectal\\nrectally\\nrectangle\\nrectangles\\nrecti\\nrectification\\nrectifications\\nrectified\\nrectifier\\nrectifiers\\nrectifies\\nrectify\\nrectifying\\nrectitude\\nrectitudes\\nrecto\\nrector\\nrectorate\\nrectorates\\nrectorial\\nrectories\\nrectors\\nrectory\\nrectos\\nrectrices\\nrectrix\\nrectum\\nrectums\\nrectus\\nrecumbent\\nrecuperate\\nrecuperated\\nrecuperates\\nrecuperating\\nrecuperation\\nrecuperations\\nrecuperative\\nrecur\\nrecurred\\nrecurrence\\nrecurrences\\nrecurrent\\nrecurring\\nrecurs\\nrecurve\\nrecurved\\nrecurves\\nrecurving\\nrecusant\\nrecusants\\nrecuse\\nrecused\\nrecuses\\nrecusing\\nrecut\\nrecuts\\nrecutting\\nrecycle\\nrecycled\\nrecycles\\nrecycling\\nred\\nredact\\nredacted\\nredacting\\nredactor\\nredactors\\nredacts\\nredan\\nredans\\nredargue\\nredargued\\nredargues\\nredarguing\\nredate\\nredated\\nredates\\nredating\\nredbait\\nredbaited\\nredbaiting\\nredbaits\\nredbay\\nredbays\\nredbird\\nredbirds\\nredbone\\nredbones\\nredbrick\\nredbud\\nredbuds\\nredbug\\nredbugs\\nredcap\\nredcaps\\nredcoat\\nredcoats\\nredd\\nredded\\nredden\\nreddened\\nreddening\\nreddens\\nredder\\nredders\\nreddest\\nredding\\nreddish\\nreddle\\nreddled\\nreddles\\nreddling\\nredds\\nrede\\nredear\\nredears\\nredecorate\\nredecorated\\nredecorates\\nredecorating\\nreded\\nrededicate\\nrededicated\\nrededicates\\nrededicating\\nrededication\\nrededications\\nredeem\\nredeemable\\nredeemed\\nredeemer\\nredeemers\\nredeeming\\nredeems\\nredefeat\\nredefeated\\nredefeating\\nredefeats\\nredefied\\nredefies\\nredefine\\nredefined\\nredefines\\nredefining\\nredefy\\nredefying\\nredemand\\nredemanded\\nredemanding\\nredemands\\nredemption\\nredemptions\\nredemptive\\nredemptory\\nredenied\\nredenies\\nredeny\\nredenying\\nredeploy\\nredeployed\\nredeploying\\nredeploys\\nredeposit\\nredeposited\\nredepositing\\nredeposits\\nredes\\nredesign\\nredesignate\\nredesignated\\nredesignates\\nredesignating\\nredesigned\\nredesigning\\nredesigns\\nredevelop\\nredeveloped\\nredeveloping\\nredevelops\\nredeye\\nredeyes\\nredfin\\nredfins\\nredfish\\nredfishes\\nredhead\\nredheaded\\nredheads\\nredhorse\\nredhorses\\nredia\\nrediae\\nredial\\nredias\\nredid\\nredigest\\nredigested\\nredigesting\\nredigests\\nreding\\nredip\\nredipped\\nredipping\\nredips\\nredipt\\nredirect\\nredirected\\nredirecting\\nredirects\\nrediscover\\nrediscovered\\nrediscoveries\\nrediscovering\\nrediscovers\\nrediscovery\\nredissolve\\nredissolved\\nredissolves\\nredissolving\\nredistribute\\nredistributed\\nredistributes\\nredistributing\\nredivide\\nredivided\\nredivides\\nredividing\\nredleg\\nredlegs\\nredly\\nredneck\\nrednecks\\nredness\\nrednesses\\nredo\\nredock\\nredocked\\nredocking\\nredocks\\nredoes\\nredoing\\nredolence\\nredolences\\nredolent\\nredolently\\nredone\\nredos\\nredouble\\nredoubled\\nredoubles\\nredoubling\\nredoubt\\nredoubtable\\nredoubts\\nredound\\nredounded\\nredounding\\nredounds\\nredout\\nredouts\\nredowa\\nredowas\\nredox\\nredoxes\\nredpoll\\nredpolls\\nredraft\\nredrafted\\nredrafting\\nredrafts\\nredraw\\nredrawer\\nredrawers\\nredrawing\\nredrawn\\nredraws\\nredress\\nredressed\\nredresses\\nredressing\\nredrew\\nredried\\nredries\\nredrill\\nredrilled\\nredrilling\\nredrills\\nredrive\\nredriven\\nredrives\\nredriving\\nredroot\\nredroots\\nredrove\\nredry\\nredrying\\nreds\\nredshank\\nredshanks\\nredshirt\\nredshirted\\nredshirting\\nredshirts\\nredskin\\nredskins\\nredstart\\nredstarts\\nredtop\\nredtops\\nreduce\\nreduced\\nreducer\\nreducers\\nreduces\\nreducible\\nreducing\\nreduction\\nreductions\\nredundancies\\nredundancy\\nredundant\\nredundantly\\nreduviid\\nreduviids\\nredware\\nredwares\\nredwing\\nredwings\\nredwood\\nredwoods\\nredye\\nredyed\\nredyeing\\nredyes\\nree\\nreearn\\nreearned\\nreearning\\nreearns\\nreecho\\nreechoed\\nreechoes\\nreechoing\\nreed\\nreedbird\\nreedbirds\\nreedbuck\\nreedbucks\\nreeded\\nreedier\\nreediest\\nreedified\\nreedifies\\nreedify\\nreedifying\\nreeding\\nreedings\\nreedit\\nreedited\\nreediting\\nreedits\\nreedling\\nreedlings\\nreeds\\nreedy\\nreef\\nreefed\\nreefer\\nreefers\\nreefier\\nreefiest\\nreefing\\nreefs\\nreefy\\nreeject\\nreejected\\nreejecting\\nreejects\\nreek\\nreeked\\nreeker\\nreekers\\nreekier\\nreekiest\\nreeking\\nreeks\\nreeky\\nreel\\nreelable\\nreelect\\nreelected\\nreelecting\\nreelects\\nreeled\\nreeler\\nreelers\\nreeling\\nreels\\nreembark\\nreembarked\\nreembarking\\nreembarks\\nreembodied\\nreembodies\\nreembody\\nreembodying\\nreemerge\\nreemerged\\nreemergence\\nreemergences\\nreemerges\\nreemerging\\nreemit\\nreemits\\nreemitted\\nreemitting\\nreemphasize\\nreemphasized\\nreemphasizes\\nreemphasizing\\nreemploy\\nreemployed\\nreemploying\\nreemploys\\nreenact\\nreenacted\\nreenacting\\nreenacts\\nreendow\\nreendowed\\nreendowing\\nreendows\\nreenergize\\nreenergized\\nreenergizes\\nreenergizing\\nreengage\\nreengaged\\nreengages\\nreengaging\\nreenjoy\\nreenjoyed\\nreenjoying\\nreenjoys\\nreenlist\\nreenlisted\\nreenlisting\\nreenlistness\\nreenlistnesses\\nreenlists\\nreenter\\nreentered\\nreentering\\nreenters\\nreentries\\nreentry\\nreequip\\nreequipped\\nreequipping\\nreequips\\nreerect\\nreerected\\nreerecting\\nreerects\\nrees\\nreest\\nreestablish\\nreestablished\\nreestablishes\\nreestablishing\\nreestablishment\\nreestablishments\\nreested\\nreestimate\\nreestimated\\nreestimates\\nreestimating\\nreesting\\nreests\\nreevaluate\\nreevaluated\\nreevaluates\\nreevaluating\\nreevaluation\\nreevaluations\\nreeve\\nreeved\\nreeves\\nreeving\\nreevoke\\nreevoked\\nreevokes\\nreevoking\\nreexamination\\nreexaminations\\nreexamine\\nreexamined\\nreexamines\\nreexamining\\nreexpel\\nreexpelled\\nreexpelling\\nreexpels\\nreexport\\nreexported\\nreexporting\\nreexports\\nref\\nreface\\nrefaced\\nrefaces\\nrefacing\\nrefall\\nrefallen\\nrefalling\\nrefalls\\nrefasten\\nrefastened\\nrefastening\\nrefastens\\nrefect\\nrefected\\nrefecting\\nrefects\\nrefed\\nrefeed\\nrefeeding\\nrefeeds\\nrefel\\nrefell\\nrefelled\\nrefelling\\nrefels\\nrefer\\nreferable\\nreferee\\nrefereed\\nrefereeing\\nreferees\\nreference\\nreferences\\nreferenda\\nreferendum\\nreferendums\\nreferent\\nreferents\\nreferral\\nreferrals\\nreferred\\nreferrer\\nreferrers\\nreferring\\nrefers\\nreffed\\nreffing\\nrefight\\nrefighting\\nrefights\\nrefigure\\nrefigured\\nrefigures\\nrefiguring\\nrefile\\nrefiled\\nrefiles\\nrefiling\\nrefill\\nrefillable\\nrefilled\\nrefilling\\nrefills\\nrefilm\\nrefilmed\\nrefilming\\nrefilms\\nrefilter\\nrefiltered\\nrefiltering\\nrefilters\\nrefinance\\nrefinanced\\nrefinances\\nrefinancing\\nrefind\\nrefinding\\nrefinds\\nrefine\\nrefined\\nrefinement\\nrefinements\\nrefiner\\nrefineries\\nrefiners\\nrefinery\\nrefines\\nrefining\\nrefinish\\nrefinished\\nrefinishes\\nrefinishing\\nrefire\\nrefired\\nrefires\\nrefiring\\nrefit\\nrefits\\nrefitted\\nrefitting\\nrefix\\nrefixed\\nrefixes\\nrefixing\\nreflate\\nreflated\\nreflates\\nreflating\\nreflect\\nreflected\\nreflecting\\nreflection\\nreflections\\nreflective\\nreflector\\nreflectors\\nreflects\\nreflet\\nreflets\\nreflew\\nreflex\\nreflexed\\nreflexes\\nreflexing\\nreflexive\\nreflexively\\nreflexiveness\\nreflexivenesses\\nreflexly\\nreflies\\nrefloat\\nrefloated\\nrefloating\\nrefloats\\nreflood\\nreflooded\\nreflooding\\nrefloods\\nreflow\\nreflowed\\nreflower\\nreflowered\\nreflowering\\nreflowers\\nreflowing\\nreflown\\nreflows\\nrefluent\\nreflux\\nrefluxed\\nrefluxes\\nrefluxing\\nrefly\\nreflying\\nrefocus\\nrefocused\\nrefocuses\\nrefocusing\\nrefocussed\\nrefocusses\\nrefocussing\\nrefold\\nrefolded\\nrefolding\\nrefolds\\nreforest\\nreforested\\nreforesting\\nreforests\\nreforge\\nreforged\\nreforges\\nreforging\\nreform\\nreformat\\nreformatories\\nreformatory\\nreformats\\nreformatted\\nreformatting\\nreformed\\nreformer\\nreformers\\nreforming\\nreforms\\nreformulate\\nreformulated\\nreformulates\\nreformulating\\nrefought\\nrefound\\nrefounded\\nrefounding\\nrefounds\\nrefract\\nrefracted\\nrefracting\\nrefraction\\nrefractions\\nrefractive\\nrefractory\\nrefracts\\nrefrain\\nrefrained\\nrefraining\\nrefrainment\\nrefrainments\\nrefrains\\nreframe\\nreframed\\nreframes\\nreframing\\nrefreeze\\nrefreezes\\nrefreezing\\nrefresh\\nrefreshed\\nrefresher\\nrefreshers\\nrefreshes\\nrefreshing\\nrefreshingly\\nrefreshment\\nrefreshments\\nrefried\\nrefries\\nrefrigerant\\nrefrigerants\\nrefrigerate\\nrefrigerated\\nrefrigerates\\nrefrigerating\\nrefrigeration\\nrefrigerations\\nrefrigerator\\nrefrigerators\\nrefront\\nrefronted\\nrefronting\\nrefronts\\nrefroze\\nrefrozen\\nrefry\\nrefrying\\nrefs\\nreft\\nrefuel\\nrefueled\\nrefueling\\nrefuelled\\nrefuelling\\nrefuels\\nrefuge\\nrefuged\\nrefugee\\nrefugees\\nrefuges\\nrefugia\\nrefuging\\nrefugium\\nrefund\\nrefundable\\nrefunded\\nrefunder\\nrefunders\\nrefunding\\nrefunds\\nrefurbish\\nrefurbished\\nrefurbishes\\nrefurbishing\\nrefusal\\nrefusals\\nrefuse\\nrefused\\nrefuser\\nrefusers\\nrefuses\\nrefusing\\nrefutal\\nrefutals\\nrefutation\\nrefutations\\nrefute\\nrefuted\\nrefuter\\nrefuters\\nrefutes\\nrefuting\\nregain\\nregained\\nregainer\\nregainers\\nregaining\\nregains\\nregal\\nregale\\nregaled\\nregalement\\nregalements\\nregales\\nregalia\\nregaling\\nregalities\\nregality\\nregally\\nregard\\nregarded\\nregardful\\nregarding\\nregardless\\nregards\\nregather\\nregathered\\nregathering\\nregathers\\nregatta\\nregattas\\nregauge\\nregauged\\nregauges\\nregauging\\nregave\\nregear\\nregeared\\nregearing\\nregears\\nregelate\\nregelated\\nregelates\\nregelating\\nregencies\\nregency\\nregenerate\\nregenerated\\nregenerates\\nregenerating\\nregeneration\\nregenerations\\nregenerative\\nregenerator\\nregenerators\\nregent\\nregental\\nregents\\nreges\\nregicide\\nregicides\\nregild\\nregilded\\nregilding\\nregilds\\nregilt\\nregime\\nregimen\\nregimens\\nregiment\\nregimental\\nregimentation\\nregimentations\\nregimented\\nregimenting\\nregiments\\nregimes\\nregina\\nreginae\\nreginal\\nreginas\\nregion\\nregional\\nregionally\\nregionals\\nregions\\nregister\\nregistered\\nregistering\\nregisters\\nregistrar\\nregistrars\\nregistration\\nregistrations\\nregistries\\nregistry\\nregius\\nregive\\nregiven\\nregives\\nregiving\\nreglaze\\nreglazed\\nreglazes\\nreglazing\\nreglet\\nreglets\\nregloss\\nreglossed\\nreglosses\\nreglossing\\nreglow\\nreglowed\\nreglowing\\nreglows\\nreglue\\nreglued\\nreglues\\nregluing\\nregma\\nregmata\\nregna\\nregnal\\nregnancies\\nregnancy\\nregnant\\nregnum\\nregolith\\nregoliths\\nregorge\\nregorged\\nregorges\\nregorging\\nregosol\\nregosols\\nregrade\\nregraded\\nregrades\\nregrading\\nregraft\\nregrafted\\nregrafting\\nregrafts\\nregrant\\nregranted\\nregranting\\nregrants\\nregrate\\nregrated\\nregrates\\nregrating\\nregreet\\nregreeted\\nregreeting\\nregreets\\nregress\\nregressed\\nregresses\\nregressing\\nregression\\nregressions\\nregressive\\nregressor\\nregressors\\nregret\\nregretfully\\nregrets\\nregrettable\\nregrettably\\nregretted\\nregretter\\nregretters\\nregretting\\nregrew\\nregrind\\nregrinding\\nregrinds\\nregroove\\nregrooved\\nregrooves\\nregrooving\\nreground\\nregroup\\nregrouped\\nregrouping\\nregroups\\nregrow\\nregrowing\\nregrown\\nregrows\\nregrowth\\nregrowths\\nregular\\nregularities\\nregularity\\nregularize\\nregularized\\nregularizes\\nregularizing\\nregularly\\nregulars\\nregulate\\nregulated\\nregulates\\nregulating\\nregulation\\nregulations\\nregulative\\nregulator\\nregulators\\nregulatory\\nreguli\\nreguline\\nregulus\\nreguluses\\nregurgitate\\nregurgitated\\nregurgitates\\nregurgitating\\nregurgitation\\nregurgitations\\nrehabilitate\\nrehabilitated\\nrehabilitates\\nrehabilitating\\nrehabilitation\\nrehabilitations\\nrehabilitative\\nrehammer\\nrehammered\\nrehammering\\nrehammers\\nrehandle\\nrehandled\\nrehandles\\nrehandling\\nrehang\\nrehanged\\nrehanging\\nrehangs\\nreharden\\nrehardened\\nrehardening\\nrehardens\\nrehash\\nrehashed\\nrehashes\\nrehashing\\nrehear\\nreheard\\nrehearing\\nrehears\\nrehearsal\\nrehearsals\\nrehearse\\nrehearsed\\nrehearser\\nrehearsers\\nrehearses\\nrehearsing\\nreheat\\nreheated\\nreheater\\nreheaters\\nreheating\\nreheats\\nreheel\\nreheeled\\nreheeling\\nreheels\\nrehem\\nrehemmed\\nrehemming\\nrehems\\nrehinge\\nrehinged\\nrehinges\\nrehinging\\nrehire\\nrehired\\nrehires\\nrehiring\\nrehospitalization\\nrehospitalizations\\nrehospitalize\\nrehospitalized\\nrehospitalizes\\nrehospitalizing\\nrehouse\\nrehoused\\nrehouses\\nrehousing\\nrehung\\nrei\\nreidentified\\nreidentifies\\nreidentify\\nreidentifying\\nreif\\nreified\\nreifier\\nreifiers\\nreifies\\nreifs\\nreify\\nreifying\\nreign\\nreigned\\nreigning\\nreignite\\nreignited\\nreignites\\nreigniting\\nreigns\\nreimage\\nreimaged\\nreimages\\nreimaging\\nreimbursable\\nreimburse\\nreimbursed\\nreimbursement\\nreimbursements\\nreimburses\\nreimbursing\\nreimplant\\nreimplanted\\nreimplanting\\nreimplants\\nreimport\\nreimported\\nreimporting\\nreimports\\nreimpose\\nreimposed\\nreimposes\\nreimposing\\nrein\\nreincarnate\\nreincarnated\\nreincarnates\\nreincarnating\\nreincarnation\\nreincarnations\\nreincite\\nreincited\\nreincites\\nreinciting\\nreincorporate\\nreincorporated\\nreincorporates\\nreincorporating\\nreincur\\nreincurred\\nreincurring\\nreincurs\\nreindeer\\nreindeers\\nreindex\\nreindexed\\nreindexes\\nreindexing\\nreinduce\\nreinduced\\nreinduces\\nreinducing\\nreinduct\\nreinducted\\nreinducting\\nreinducts\\nreined\\nreinfect\\nreinfected\\nreinfecting\\nreinfection\\nreinfections\\nreinfects\\nreinforcement\\nreinforcements\\nreinforcer\\nreinforcers\\nreinform\\nreinformed\\nreinforming\\nreinforms\\nreinfuse\\nreinfused\\nreinfuses\\nreinfusing\\nreining\\nreinjection\\nreinjections\\nreinjure\\nreinjured\\nreinjures\\nreinjuring\\nreinless\\nreinoculate\\nreinoculated\\nreinoculates\\nreinoculating\\nreins\\nreinsert\\nreinserted\\nreinserting\\nreinsertion\\nreinsertions\\nreinserts\\nreinsman\\nreinsmen\\nreinspect\\nreinspected\\nreinspecting\\nreinspects\\nreinstall\\nreinstalled\\nreinstalling\\nreinstalls\\nreinstate\\nreinstated\\nreinstates\\nreinstating\\nreinstitute\\nreinstituted\\nreinstitutes\\nreinstituting\\nreinsure\\nreinsured\\nreinsures\\nreinsuring\\nreintegrate\\nreintegrated\\nreintegrates\\nreintegrating\\nreintegration\\nreintegrations\\nreinter\\nreinterred\\nreinterring\\nreinters\\nreintroduce\\nreintroduced\\nreintroduces\\nreintroducing\\nreinvent\\nreinvented\\nreinventing\\nreinvents\\nreinvest\\nreinvested\\nreinvestigate\\nreinvestigated\\nreinvestigates\\nreinvestigating\\nreinvestigation\\nreinvestigations\\nreinvesting\\nreinvests\\nreinvigorate\\nreinvigorated\\nreinvigorates\\nreinvigorating\\nreinvite\\nreinvited\\nreinvites\\nreinviting\\nreinvoke\\nreinvoked\\nreinvokes\\nreinvoking\\nreis\\nreissue\\nreissued\\nreissuer\\nreissuers\\nreissues\\nreissuing\\nreitbok\\nreitboks\\nreiterate\\nreiterated\\nreiterates\\nreiterating\\nreiteration\\nreiterations\\nreive\\nreived\\nreiver\\nreivers\\nreives\\nreiving\\nreject\\nrejected\\nrejectee\\nrejectees\\nrejecter\\nrejecters\\nrejecting\\nrejection\\nrejections\\nrejector\\nrejectors\\nrejects\\nrejigger\\nrejiggered\\nrejiggering\\nrejiggers\\nrejoice\\nrejoiced\\nrejoicer\\nrejoicers\\nrejoices\\nrejoicing\\nrejoicings\\nrejoin\\nrejoinder\\nrejoinders\\nrejoined\\nrejoining\\nrejoins\\nrejudge\\nrejudged\\nrejudges\\nrejudging\\nrejuvenate\\nrejuvenated\\nrejuvenates\\nrejuvenating\\nrejuvenation\\nrejuvenations\\nrekey\\nrekeyed\\nrekeying\\nrekeys\\nrekindle\\nrekindled\\nrekindles\\nrekindling\\nreknit\\nreknits\\nreknitted\\nreknitting\\nrelabel\\nrelabeled\\nrelabeling\\nrelabelled\\nrelabelling\\nrelabels\\nrelace\\nrelaced\\nrelaces\\nrelacing\\nrelaid\\nrelandscape\\nrelandscaped\\nrelandscapes\\nrelandscaping\\nrelapse\\nrelapsed\\nrelapser\\nrelapsers\\nrelapses\\nrelapsing\\nrelatable\\nrelate\\nrelated\\nrelater\\nrelaters\\nrelates\\nrelating\\nrelation\\nrelations\\nrelationship\\nrelationships\\nrelative\\nrelatively\\nrelativeness\\nrelativenesses\\nrelatives\\nrelator\\nrelators\\nrelaunch\\nrelaunched\\nrelaunches\\nrelaunching\\nrelax\\nrelaxant\\nrelaxants\\nrelaxation\\nrelaxations\\nrelaxed\\nrelaxer\\nrelaxers\\nrelaxes\\nrelaxin\\nrelaxing\\nrelaxins\\nrelay\\nrelayed\\nrelaying\\nrelays\\nrelearn\\nrelearned\\nrelearning\\nrelearns\\nrelearnt\\nrelease\\nreleased\\nreleaser\\nreleasers\\nreleases\\nreleasing\\nrelegate\\nrelegated\\nrelegates\\nrelegating\\nrelegation\\nrelegations\\nrelend\\nrelending\\nrelends\\nrelent\\nrelented\\nrelenting\\nrelentless\\nrelentlessly\\nrelentlessness\\nrelentlessnesses\\nrelents\\nrelet\\nrelets\\nreletter\\nrelettered\\nrelettering\\nreletters\\nreletting\\nrelevance\\nrelevances\\nrelevant\\nrelevantly\\nreliabilities\\nreliability\\nreliable\\nreliableness\\nreliablenesses\\nreliably\\nreliance\\nreliances\\nreliant\\nrelic\\nrelics\\nrelict\\nrelicts\\nrelied\\nrelief\\nreliefs\\nrelier\\nreliers\\nrelies\\nrelieve\\nrelieved\\nreliever\\nrelievers\\nrelieves\\nrelieving\\nrelievo\\nrelievos\\nrelight\\nrelighted\\nrelighting\\nrelights\\nreligion\\nreligionist\\nreligionists\\nreligions\\nreligious\\nreligiously\\nreline\\nrelined\\nrelines\\nrelining\\nrelinquish\\nrelinquished\\nrelinquishes\\nrelinquishing\\nrelinquishment\\nrelinquishments\\nrelique\\nreliques\\nrelish\\nrelishable\\nrelished\\nrelishes\\nrelishing\\nrelist\\nrelisted\\nrelisting\\nrelists\\nrelit\\nrelive\\nrelived\\nrelives\\nreliving\\nreload\\nreloaded\\nreloader\\nreloaders\\nreloading\\nreloads\\nreloan\\nreloaned\\nreloaning\\nreloans\\nrelocate\\nrelocated\\nrelocates\\nrelocating\\nrelocation\\nrelocations\\nrelucent\\nreluct\\nreluctance\\nreluctant\\nreluctantly\\nrelucted\\nrelucting\\nrelucts\\nrelume\\nrelumed\\nrelumes\\nrelumine\\nrelumined\\nrelumines\\nreluming\\nrelumining\\nrely\\nrelying\\nrem\\nremade\\nremail\\nremailed\\nremailing\\nremails\\nremain\\nremainder\\nremainders\\nremained\\nremaining\\nremains\\nremake\\nremakes\\nremaking\\nreman\\nremand\\nremanded\\nremanding\\nremands\\nremanent\\nremanned\\nremanning\\nremans\\nremap\\nremapped\\nremapping\\nremaps\\nremark\\nremarkable\\nremarkableness\\nremarkablenesses\\nremarkably\\nremarked\\nremarker\\nremarkers\\nremarking\\nremarks\\nremarque\\nremarques\\nremarriage\\nremarriages\\nremarried\\nremarries\\nremarry\\nremarrying\\nrematch\\nrematched\\nrematches\\nrematching\\nremeasure\\nremeasured\\nremeasures\\nremeasuring\\nremedial\\nremedially\\nremedied\\nremedies\\nremedy\\nremedying\\nremeet\\nremeeting\\nremeets\\nremelt\\nremelted\\nremelting\\nremelts\\nremember\\nremembered\\nremembering\\nremembers\\nremend\\nremended\\nremending\\nremends\\nremerge\\nremerged\\nremerges\\nremerging\\nremet\\nremex\\nremiges\\nremigial\\nremind\\nreminded\\nreminder\\nreminders\\nreminding\\nreminds\\nreminisce\\nreminisced\\nreminiscence\\nreminiscences\\nreminiscent\\nreminiscently\\nreminisces\\nreminiscing\\nremint\\nreminted\\nreminting\\nremints\\nremise\\nremised\\nremises\\nremising\\nremiss\\nremission\\nremissions\\nremissly\\nremissness\\nremissnesses\\nremit\\nremits\\nremittal\\nremittals\\nremittance\\nremittances\\nremitted\\nremitter\\nremitters\\nremitting\\nremittor\\nremittors\\nremix\\nremixed\\nremixes\\nremixing\\nremixt\\nremnant\\nremnants\\nremobilize\\nremobilized\\nremobilizes\\nremobilizing\\nremodel\\nremodeled\\nremodeling\\nremodelled\\nremodelling\\nremodels\\nremodified\\nremodifies\\nremodify\\nremodifying\\nremoisten\\nremoistened\\nremoistening\\nremoistens\\nremolade\\nremolades\\nremold\\nremolded\\nremolding\\nremolds\\nremonstrance\\nremonstrances\\nremonstrate\\nremonstrated\\nremonstrates\\nremonstrating\\nremonstration\\nremonstrations\\nremora\\nremoras\\nremorid\\nremorse\\nremorseful\\nremorseless\\nremorses\\nremote\\nremotely\\nremoteness\\nremotenesses\\nremoter\\nremotest\\nremotion\\nremotions\\nremotivate\\nremotivated\\nremotivates\\nremotivating\\nremount\\nremounted\\nremounting\\nremounts\\nremovable\\nremoval\\nremovals\\nremove\\nremoved\\nremover\\nremovers\\nremoves\\nremoving\\nrems\\nremuda\\nremudas\\nremunerate\\nremunerated\\nremunerates\\nremunerating\\nremuneration\\nremunerations\\nremunerative\\nremuneratively\\nremunerativeness\\nremunerativenesses\\nremunerator\\nremunerators\\nremuneratory\\nrenaissance\\nrenaissances\\nrenal\\nrename\\nrenamed\\nrenames\\nrenaming\\nrenature\\nrenatured\\nrenatures\\nrenaturing\\nrend\\nrended\\nrender\\nrendered\\nrenderer\\nrenderers\\nrendering\\nrenders\\nrendezvous\\nrendezvoused\\nrendezvousing\\nrendible\\nrending\\nrendition\\nrenditions\\nrends\\nrendzina\\nrendzinas\\nrenegade\\nrenegaded\\nrenegades\\nrenegading\\nrenegado\\nrenegadoes\\nrenegados\\nrenege\\nreneged\\nreneger\\nrenegers\\nreneges\\nreneging\\nrenegotiate\\nrenegotiated\\nrenegotiates\\nrenegotiating\\nrenew\\nrenewable\\nrenewal\\nrenewals\\nrenewed\\nrenewer\\nrenewers\\nrenewing\\nrenews\\nreniform\\nrenig\\nrenigged\\nrenigging\\nrenigs\\nrenin\\nrenins\\nrenitent\\nrennase\\nrennases\\nrennet\\nrennets\\nrennin\\nrennins\\nrenogram\\nrenograms\\nrenotified\\nrenotifies\\nrenotify\\nrenotifying\\nrenounce\\nrenounced\\nrenouncement\\nrenouncements\\nrenounces\\nrenouncing\\nrenovate\\nrenovated\\nrenovates\\nrenovating\\nrenovation\\nrenovations\\nrenovator\\nrenovators\\nrenown\\nrenowned\\nrenowning\\nrenowns\\nrent\\nrentable\\nrental\\nrentals\\nrente\\nrented\\nrenter\\nrenters\\nrentes\\nrentier\\nrentiers\\nrenting\\nrents\\nrenumber\\nrenumbered\\nrenumbering\\nrenumbers\\nrenunciation\\nrenunciations\\nrenvoi\\nrenvois\\nreobject\\nreobjected\\nreobjecting\\nreobjects\\nreobtain\\nreobtained\\nreobtaining\\nreobtains\\nreoccupied\\nreoccupies\\nreoccupy\\nreoccupying\\nreoccur\\nreoccurred\\nreoccurrence\\nreoccurrences\\nreoccurring\\nreoccurs\\nreoffer\\nreoffered\\nreoffering\\nreoffers\\nreoil\\nreoiled\\nreoiling\\nreoils\\nreopen\\nreopened\\nreopening\\nreopens\\nreoperate\\nreoperated\\nreoperates\\nreoperating\\nreoppose\\nreopposed\\nreopposes\\nreopposing\\nreorchestrate\\nreorchestrated\\nreorchestrates\\nreorchestrating\\nreordain\\nreordained\\nreordaining\\nreordains\\nreorder\\nreordered\\nreordering\\nreorders\\nreorganization\\nreorganizations\\nreorganize\\nreorganized\\nreorganizes\\nreorganizing\\nreorient\\nreoriented\\nreorienting\\nreorients\\nreovirus\\nreoviruses\\nrep\\nrepacified\\nrepacifies\\nrepacify\\nrepacifying\\nrepack\\nrepacked\\nrepacking\\nrepacks\\nrepaid\\nrepaint\\nrepainted\\nrepainting\\nrepaints\\nrepair\\nrepaired\\nrepairer\\nrepairers\\nrepairing\\nrepairman\\nrepairmen\\nrepairs\\nrepand\\nrepandly\\nrepaper\\nrepapered\\nrepapering\\nrepapers\\nreparation\\nreparations\\nrepartee\\nrepartees\\nrepass\\nrepassed\\nrepasses\\nrepassing\\nrepast\\nrepasted\\nrepasting\\nrepasts\\nrepatriate\\nrepatriated\\nrepatriates\\nrepatriating\\nrepatriation\\nrepatriations\\nrepave\\nrepaved\\nrepaves\\nrepaving\\nrepay\\nrepayable\\nrepaying\\nrepayment\\nrepayments\\nrepays\\nrepeal\\nrepealed\\nrepealer\\nrepealers\\nrepealing\\nrepeals\\nrepeat\\nrepeatable\\nrepeated\\nrepeatedly\\nrepeater\\nrepeaters\\nrepeating\\nrepeats\\nrepel\\nrepelled\\nrepellent\\nrepellents\\nrepeller\\nrepellers\\nrepelling\\nrepels\\nrepent\\nrepentance\\nrepentances\\nrepentant\\nrepented\\nrepenter\\nrepenters\\nrepenting\\nrepents\\nrepeople\\nrepeopled\\nrepeoples\\nrepeopling\\nrepercussion\\nrepercussions\\nreperk\\nreperked\\nreperking\\nreperks\\nrepertoire\\nrepertoires\\nrepertories\\nrepertory\\nrepetend\\nrepetends\\nrepetition\\nrepetitions\\nrepetitious\\nrepetitiously\\nrepetitiousness\\nrepetitiousnesses\\nrepetitive\\nrepetitively\\nrepetitiveness\\nrepetitivenesses\\nrephotograph\\nrephotographed\\nrephotographing\\nrephotographs\\nrephrase\\nrephrased\\nrephrases\\nrephrasing\\nrepin\\nrepine\\nrepined\\nrepiner\\nrepiners\\nrepines\\nrepining\\nrepinned\\nrepinning\\nrepins\\nreplace\\nreplaceable\\nreplaced\\nreplacement\\nreplacements\\nreplacer\\nreplacers\\nreplaces\\nreplacing\\nreplan\\nreplanned\\nreplanning\\nreplans\\nreplant\\nreplanted\\nreplanting\\nreplants\\nreplate\\nreplated\\nreplates\\nreplating\\nreplay\\nreplayed\\nreplaying\\nreplays\\nrepledge\\nrepledged\\nrepledges\\nrepledging\\nreplenish\\nreplenished\\nreplenishes\\nreplenishing\\nreplenishment\\nreplenishments\\nreplete\\nrepleteness\\nrepletenesses\\nrepletion\\nrepletions\\nreplevied\\nreplevies\\nreplevin\\nreplevined\\nreplevining\\nreplevins\\nreplevy\\nreplevying\\nreplica\\nreplicas\\nreplicate\\nreplicated\\nreplicates\\nreplicating\\nreplied\\nreplier\\nrepliers\\nreplies\\nreplunge\\nreplunged\\nreplunges\\nreplunging\\nreply\\nreplying\\nrepolish\\nrepolished\\nrepolishes\\nrepolishing\\nrepopulate\\nrepopulated\\nrepopulates\\nrepopulating\\nreport\\nreportage\\nreportages\\nreported\\nreportedly\\nreporter\\nreporters\\nreporting\\nreportorial\\nreports\\nreposal\\nreposals\\nrepose\\nreposed\\nreposeful\\nreposer\\nreposers\\nreposes\\nreposing\\nreposit\\nreposited\\nrepositing\\nrepository\\nreposits\\nrepossess\\nrepossession\\nrepossessions\\nrepour\\nrepoured\\nrepouring\\nrepours\\nrepousse\\nrepousses\\nrepower\\nrepowered\\nrepowering\\nrepowers\\nrepp\\nrepped\\nrepps\\nreprehend\\nreprehends\\nreprehensible\\nreprehensibly\\nreprehension\\nreprehensions\\nrepresent\\nrepresentation\\nrepresentations\\nrepresentative\\nrepresentatively\\nrepresentativeness\\nrepresentativenesses\\nrepresentatives\\nrepresented\\nrepresenting\\nrepresents\\nrepress\\nrepressed\\nrepresses\\nrepressing\\nrepression\\nrepressions\\nrepressive\\nrepressurize\\nrepressurized\\nrepressurizes\\nrepressurizing\\nreprice\\nrepriced\\nreprices\\nrepricing\\nreprieve\\nreprieved\\nreprieves\\nreprieving\\nreprimand\\nreprimanded\\nreprimanding\\nreprimands\\nreprint\\nreprinted\\nreprinting\\nreprints\\nreprisal\\nreprisals\\nreprise\\nreprised\\nreprises\\nreprising\\nrepro\\nreproach\\nreproached\\nreproaches\\nreproachful\\nreproachfully\\nreproachfulness\\nreproachfulnesses\\nreproaching\\nreprobate\\nreprobates\\nreprobation\\nreprobations\\nreprobe\\nreprobed\\nreprobes\\nreprobing\\nreprocess\\nreprocessed\\nreprocesses\\nreprocessing\\nreproduce\\nreproduced\\nreproduces\\nreproducible\\nreproducing\\nreproduction\\nreproductions\\nreproductive\\nreprogram\\nreprogramed\\nreprograming\\nreprograms\\nreproof\\nreproofs\\nrepropose\\nreproposed\\nreproposes\\nreproposing\\nrepros\\nreproval\\nreprovals\\nreprove\\nreproved\\nreprover\\nreprovers\\nreproves\\nreproving\\nreps\\nreptant\\nreptile\\nreptiles\\nrepublic\\nrepublican\\nrepublicanism\\nrepublicanisms\\nrepublicans\\nrepublics\\nrepudiate\\nrepudiated\\nrepudiates\\nrepudiating\\nrepudiation\\nrepudiations\\nrepudiator\\nrepudiators\\nrepugn\\nrepugnance\\nrepugnances\\nrepugnant\\nrepugnantly\\nrepugned\\nrepugning\\nrepugns\\nrepulse\\nrepulsed\\nrepulser\\nrepulsers\\nrepulses\\nrepulsing\\nrepulsion\\nrepulsions\\nrepulsive\\nrepulsively\\nrepulsiveness\\nrepulsivenesses\\nrepurified\\nrepurifies\\nrepurify\\nrepurifying\\nrepursue\\nrepursued\\nrepursues\\nrepursuing\\nreputable\\nreputabley\\nreputation\\nreputations\\nrepute\\nreputed\\nreputedly\\nreputes\\nreputing\\nrequest\\nrequested\\nrequesting\\nrequests\\nrequiem\\nrequiems\\nrequin\\nrequins\\nrequire\\nrequired\\nrequirement\\nrequirements\\nrequirer\\nrequirers\\nrequires\\nrequiring\\nrequisite\\nrequisites\\nrequisition\\nrequisitioned\\nrequisitioning\\nrequisitions\\nrequital\\nrequitals\\nrequite\\nrequited\\nrequiter\\nrequiters\\nrequites\\nrequiting\\nreran\\nreread\\nrereading\\nrereads\\nrerecord\\nrerecorded\\nrerecording\\nrerecords\\nreredos\\nreredoses\\nreregister\\nreregistered\\nreregistering\\nreregisters\\nreremice\\nreremouse\\nrereward\\nrerewards\\nrerise\\nrerisen\\nrerises\\nrerising\\nreroll\\nrerolled\\nreroller\\nrerollers\\nrerolling\\nrerolls\\nrerose\\nreroute\\nrerouted\\nreroutes\\nrerouting\\nrerun\\nrerunning\\nreruns\\nres\\nresaddle\\nresaddled\\nresaddles\\nresaddling\\nresaid\\nresail\\nresailed\\nresailing\\nresails\\nresalable\\nresale\\nresales\\nresalute\\nresaluted\\nresalutes\\nresaluting\\nresample\\nresampled\\nresamples\\nresampling\\nresaw\\nresawed\\nresawing\\nresawn\\nresaws\\nresay\\nresaying\\nresays\\nrescale\\nrescaled\\nrescales\\nrescaling\\nreschedule\\nrescheduled\\nreschedules\\nrescheduling\\nrescind\\nrescinded\\nrescinder\\nrescinders\\nrescinding\\nrescinds\\nrescission\\nrescissions\\nrescore\\nrescored\\nrescores\\nrescoring\\nrescreen\\nrescreened\\nrescreening\\nrescreens\\nrescript\\nrescripts\\nrescue\\nrescued\\nrescuer\\nrescuers\\nrescues\\nrescuing\\nreseal\\nresealed\\nresealing\\nreseals\\nresearch\\nresearched\\nresearcher\\nresearchers\\nresearches\\nresearching\\nreseat\\nreseated\\nreseating\\nreseats\\nreseau\\nreseaus\\nreseaux\\nresect\\nresected\\nresecting\\nresects\\nreseda\\nresedas\\nresee\\nreseed\\nreseeded\\nreseeding\\nreseeds\\nreseeing\\nreseek\\nreseeking\\nreseeks\\nreseen\\nresees\\nresegregate\\nresegregated\\nresegregates\\nresegregating\\nreseize\\nreseized\\nreseizes\\nreseizing\\nresell\\nreseller\\nresellers\\nreselling\\nresells\\nresemblance\\nresemblances\\nresemble\\nresembled\\nresembles\\nresembling\\nresend\\nresending\\nresends\\nresent\\nresented\\nresentence\\nresentenced\\nresentences\\nresentencing\\nresentful\\nresentfully\\nresenting\\nresentment\\nresentments\\nresents\\nreservation\\nreservations\\nreserve\\nreserved\\nreserver\\nreservers\\nreserves\\nreserving\\nreset\\nresets\\nresetter\\nresetters\\nresetting\\nresettle\\nresettled\\nresettles\\nresettling\\nresew\\nresewed\\nresewing\\nresewn\\nresews\\nresh\\nreshape\\nreshaped\\nreshaper\\nreshapers\\nreshapes\\nreshaping\\nreshes\\nreship\\nreshipped\\nreshipping\\nreships\\nreshod\\nreshoe\\nreshoeing\\nreshoes\\nreshoot\\nreshooting\\nreshoots\\nreshot\\nreshow\\nreshowed\\nreshowing\\nreshown\\nreshows\\nresid\\nreside\\nresided\\nresidence\\nresidences\\nresident\\nresidential\\nresidents\\nresider\\nresiders\\nresides\\nresiding\\nresids\\nresidua\\nresidual\\nresiduals\\nresidue\\nresidues\\nresiduum\\nresiduums\\nresift\\nresifted\\nresifting\\nresifts\\nresign\\nresignation\\nresignations\\nresigned\\nresignedly\\nresigner\\nresigners\\nresigning\\nresigns\\nresile\\nresiled\\nresiles\\nresilience\\nresiliences\\nresiliencies\\nresiliency\\nresilient\\nresiling\\nresilver\\nresilvered\\nresilvering\\nresilvers\\nresin\\nresinate\\nresinated\\nresinates\\nresinating\\nresined\\nresinified\\nresinifies\\nresinify\\nresinifying\\nresining\\nresinoid\\nresinoids\\nresinous\\nresins\\nresiny\\nresist\\nresistable\\nresistance\\nresistances\\nresistant\\nresisted\\nresister\\nresisters\\nresistible\\nresisting\\nresistless\\nresistor\\nresistors\\nresists\\nresize\\nresized\\nresizes\\nresizing\\nresmelt\\nresmelted\\nresmelting\\nresmelts\\nresmooth\\nresmoothed\\nresmoothing\\nresmooths\\nresojet\\nresojets\\nresold\\nresolder\\nresoldered\\nresoldering\\nresolders\\nresole\\nresoled\\nresoles\\nresolidified\\nresolidifies\\nresolidify\\nresolidifying\\nresoling\\nresolute\\nresolutely\\nresoluteness\\nresolutenesses\\nresoluter\\nresolutes\\nresolutest\\nresolution\\nresolutions\\nresolvable\\nresolve\\nresolved\\nresolver\\nresolvers\\nresolves\\nresolving\\nresonance\\nresonances\\nresonant\\nresonantly\\nresonants\\nresonate\\nresonated\\nresonates\\nresonating\\nresorb\\nresorbed\\nresorbing\\nresorbs\\nresorcin\\nresorcins\\nresort\\nresorted\\nresorter\\nresorters\\nresorting\\nresorts\\nresought\\nresound\\nresounded\\nresounding\\nresoundingly\\nresounds\\nresource\\nresourceful\\nresourcefulness\\nresourcefulnesses\\nresources\\nresow\\nresowed\\nresowing\\nresown\\nresows\\nrespect\\nrespectabilities\\nrespectability\\nrespectable\\nrespectably\\nrespected\\nrespecter\\nrespecters\\nrespectful\\nrespectfully\\nrespectfulness\\nrespectfulnesses\\nrespecting\\nrespective\\nrespectively\\nrespects\\nrespell\\nrespelled\\nrespelling\\nrespells\\nrespelt\\nrespiration\\nrespirations\\nrespirator\\nrespiratories\\nrespirators\\nrespiratory\\nrespire\\nrespired\\nrespires\\nrespiring\\nrespite\\nrespited\\nrespites\\nrespiting\\nresplendence\\nresplendences\\nresplendent\\nresplendently\\nrespond\\nresponded\\nrespondent\\nrespondents\\nresponder\\nresponders\\nresponding\\nresponds\\nresponsa\\nresponse\\nresponses\\nresponsibilities\\nresponsibility\\nresponsible\\nresponsibleness\\nresponsiblenesses\\nresponsiblities\\nresponsiblity\\nresponsibly\\nresponsive\\nresponsiveness\\nresponsivenesses\\nresprang\\nrespread\\nrespreading\\nrespreads\\nrespring\\nrespringing\\nresprings\\nresprung\\nrest\\nrestack\\nrestacked\\nrestacking\\nrestacks\\nrestaff\\nrestaffed\\nrestaffing\\nrestaffs\\nrestage\\nrestaged\\nrestages\\nrestaging\\nrestamp\\nrestamped\\nrestamping\\nrestamps\\nrestart\\nrestartable\\nrestarted\\nrestarting\\nrestarts\\nrestate\\nrestated\\nrestatement\\nrestatements\\nrestates\\nrestating\\nrestaurant\\nrestaurants\\nrested\\nrester\\nresters\\nrestful\\nrestfuller\\nrestfullest\\nrestfully\\nrestimulate\\nrestimulated\\nrestimulates\\nrestimulating\\nresting\\nrestitution\\nrestitutions\\nrestive\\nrestively\\nrestiveness\\nrestivenesses\\nrestless\\nrestlessness\\nrestlessnesses\\nrestock\\nrestocked\\nrestocking\\nrestocks\\nrestorable\\nrestoral\\nrestorals\\nrestoration\\nrestorations\\nrestorative\\nrestoratives\\nrestore\\nrestored\\nrestorer\\nrestorers\\nrestores\\nrestoring\\nrestrain\\nrestrainable\\nrestrained\\nrestrainedly\\nrestrainer\\nrestrainers\\nrestraining\\nrestrains\\nrestraint\\nrestraints\\nrestricken\\nrestrict\\nrestricted\\nrestricting\\nrestriction\\nrestrictions\\nrestrictive\\nrestrictively\\nrestricts\\nrestrike\\nrestrikes\\nrestriking\\nrestring\\nrestringing\\nrestrings\\nrestrive\\nrestriven\\nrestrives\\nrestriving\\nrestrove\\nrestruck\\nrestructure\\nrestructured\\nrestructures\\nrestructuring\\nrestrung\\nrests\\nrestudied\\nrestudies\\nrestudy\\nrestudying\\nrestuff\\nrestuffed\\nrestuffing\\nrestuffs\\nrestyle\\nrestyled\\nrestyles\\nrestyling\\nresubmit\\nresubmits\\nresubmitted\\nresubmitting\\nresult\\nresultant\\nresulted\\nresulting\\nresults\\nresume\\nresumed\\nresumer\\nresumers\\nresumes\\nresuming\\nresummon\\nresummoned\\nresummoning\\nresummons\\nresumption\\nresumptions\\nresupine\\nresupplied\\nresupplies\\nresupply\\nresupplying\\nresurface\\nresurfaced\\nresurfaces\\nresurfacing\\nresurge\\nresurged\\nresurgence\\nresurgences\\nresurgent\\nresurges\\nresurging\\nresurrect\\nresurrected\\nresurrecting\\nresurrection\\nresurrections\\nresurrects\\nresurvey\\nresurveyed\\nresurveying\\nresurveys\\nresuscitate\\nresuscitated\\nresuscitates\\nresuscitating\\nresuscitation\\nresuscitations\\nresuscitator\\nresuscitators\\nresyntheses\\nresynthesis\\nresynthesize\\nresynthesized\\nresynthesizes\\nresynthesizing\\nret\\nretable\\nretables\\nretail\\nretailed\\nretailer\\nretailers\\nretailing\\nretailor\\nretailored\\nretailoring\\nretailors\\nretails\\nretain\\nretained\\nretainer\\nretainers\\nretaining\\nretains\\nretake\\nretaken\\nretaker\\nretakers\\nretakes\\nretaking\\nretaliate\\nretaliated\\nretaliates\\nretaliating\\nretaliation\\nretaliations\\nretaliatory\\nretard\\nretardation\\nretardations\\nretarded\\nretarder\\nretarders\\nretarding\\nretards\\nretaste\\nretasted\\nretastes\\nretasting\\nretaught\\nretch\\nretched\\nretches\\nretching\\nrete\\nreteach\\nreteaches\\nreteaching\\nretell\\nretelling\\nretells\\nretem\\nretems\\nretene\\nretenes\\nretention\\nretentions\\nretentive\\nretest\\nretested\\nretesting\\nretests\\nrethink\\nrethinking\\nrethinks\\nrethought\\nrethread\\nrethreaded\\nrethreading\\nrethreads\\nretia\\nretial\\nretiarii\\nretiary\\nreticence\\nreticences\\nreticent\\nreticently\\nreticle\\nreticles\\nreticula\\nreticule\\nreticules\\nretie\\nretied\\nreties\\nretiform\\nretighten\\nretightened\\nretightening\\nretightens\\nretime\\nretimed\\nretimes\\nretiming\\nretina\\nretinae\\nretinal\\nretinals\\nretinas\\nretinene\\nretinenes\\nretinite\\nretinites\\nretinol\\nretinols\\nretint\\nretinted\\nretinting\\nretints\\nretinue\\nretinued\\nretinues\\nretinula\\nretinulae\\nretinulas\\nretirant\\nretirants\\nretire\\nretired\\nretiree\\nretirees\\nretirement\\nretirements\\nretirer\\nretirers\\nretires\\nretiring\\nretitle\\nretitled\\nretitles\\nretitling\\nretold\\nretook\\nretool\\nretooled\\nretooling\\nretools\\nretort\\nretorted\\nretorter\\nretorters\\nretorting\\nretorts\\nretouch\\nretouched\\nretouches\\nretouching\\nretrace\\nretraced\\nretraces\\nretracing\\nretrack\\nretracked\\nretracking\\nretracks\\nretract\\nretractable\\nretracted\\nretracting\\nretraction\\nretractions\\nretracts\\nretrain\\nretrained\\nretraining\\nretrains\\nretral\\nretrally\\nretranslate\\nretranslated\\nretranslates\\nretranslating\\nretransmit\\nretransmited\\nretransmiting\\nretransmits\\nretransplant\\nretransplanted\\nretransplanting\\nretransplants\\nretread\\nretreaded\\nretreading\\nretreads\\nretreat\\nretreated\\nretreating\\nretreatment\\nretreats\\nretrench\\nretrenched\\nretrenches\\nretrenching\\nretrenchment\\nretrenchments\\nretrial\\nretrials\\nretribution\\nretributions\\nretributive\\nretributory\\nretried\\nretries\\nretrievabilities\\nretrievability\\nretrievable\\nretrieval\\nretrievals\\nretrieve\\nretrieved\\nretriever\\nretrievers\\nretrieves\\nretrieving\\nretrim\\nretrimmed\\nretrimming\\nretrims\\nretroact\\nretroacted\\nretroacting\\nretroactive\\nretroactively\\nretroacts\\nretrofit\\nretrofits\\nretrofitted\\nretrofitting\\nretrograde\\nretrogress\\nretrogressed\\nretrogresses\\nretrogressing\\nretrogression\\nretrogressions\\nretrorse\\nretrospect\\nretrospection\\nretrospections\\nretrospective\\nretrospectively\\nretrospectives\\nretry\\nretrying\\nrets\\nretsina\\nretsinas\\nretted\\nretting\\nretune\\nretuned\\nretunes\\nretuning\\nreturn\\nreturnable\\nreturned\\nreturnee\\nreturnees\\nreturner\\nreturners\\nreturning\\nreturns\\nretuse\\nretwist\\nretwisted\\nretwisting\\nretwists\\nretying\\nretype\\nretyped\\nretypes\\nretyping\\nreunified\\nreunifies\\nreunify\\nreunifying\\nreunion\\nreunions\\nreunite\\nreunited\\nreuniter\\nreuniters\\nreunites\\nreuniting\\nreupholster\\nreupholstered\\nreupholstering\\nreupholsters\\nreusable\\nreuse\\nreused\\nreuses\\nreusing\\nreutter\\nreuttered\\nreuttering\\nreutters\\nrev\\nrevaccinate\\nrevaccinated\\nrevaccinates\\nrevaccinating\\nrevaccination\\nrevaccinations\\nrevalue\\nrevalued\\nrevalues\\nrevaluing\\nrevamp\\nrevamped\\nrevamper\\nrevampers\\nrevamping\\nrevamps\\nrevanche\\nrevanches\\nreveal\\nrevealed\\nrevealer\\nrevealers\\nrevealing\\nreveals\\nrevehent\\nreveille\\nreveilles\\nrevel\\nrevelation\\nrevelations\\nreveled\\nreveler\\nrevelers\\nreveling\\nrevelled\\nreveller\\nrevellers\\nrevelling\\nrevelries\\nrevelry\\nrevels\\nrevenant\\nrevenants\\nrevenge\\nrevenged\\nrevengeful\\nrevenger\\nrevengers\\nrevenges\\nrevenging\\nrevenual\\nrevenue\\nrevenued\\nrevenuer\\nrevenuers\\nrevenues\\nreverb\\nreverberate\\nreverberated\\nreverberates\\nreverberating\\nreverberation\\nreverberations\\nreverbs\\nrevere\\nrevered\\nreverence\\nreverences\\nreverend\\nreverends\\nreverent\\nreverer\\nreverers\\nreveres\\nreverie\\nreveries\\nreverified\\nreverifies\\nreverify\\nreverifying\\nrevering\\nrevers\\nreversal\\nreversals\\nreverse\\nreversed\\nreversely\\nreverser\\nreversers\\nreverses\\nreversible\\nreversing\\nreversion\\nreverso\\nreversos\\nrevert\\nreverted\\nreverter\\nreverters\\nreverting\\nreverts\\nrevery\\nrevest\\nrevested\\nrevesting\\nrevests\\nrevet\\nrevets\\nrevetted\\nrevetting\\nreview\\nreviewal\\nreviewals\\nreviewed\\nreviewer\\nreviewers\\nreviewing\\nreviews\\nrevile\\nreviled\\nrevilement\\nrevilements\\nreviler\\nrevilers\\nreviles\\nreviling\\nrevisable\\nrevisal\\nrevisals\\nrevise\\nrevised\\nreviser\\nrevisers\\nrevises\\nrevising\\nrevision\\nrevisions\\nrevisit\\nrevisited\\nrevisiting\\nrevisits\\nrevisor\\nrevisors\\nrevisory\\nrevival\\nrevivals\\nrevive\\nrevived\\nreviver\\nrevivers\\nrevives\\nrevivified\\nrevivifies\\nrevivify\\nrevivifying\\nreviving\\nrevocation\\nrevocations\\nrevoice\\nrevoiced\\nrevoices\\nrevoicing\\nrevoke\\nrevoked\\nrevoker\\nrevokers\\nrevokes\\nrevoking\\nrevolt\\nrevolted\\nrevolter\\nrevolters\\nrevolting\\nrevolts\\nrevolute\\nrevolution\\nrevolutionaries\\nrevolutionary\\nrevolutionize\\nrevolutionized\\nrevolutionizer\\nrevolutionizers\\nrevolutionizes\\nrevolutionizing\\nrevolutions\\nrevolvable\\nrevolve\\nrevolved\\nrevolver\\nrevolvers\\nrevolves\\nrevolving\\nrevs\\nrevue\\nrevues\\nrevuist\\nrevuists\\nrevulsed\\nrevulsion\\nrevulsions\\nrevved\\nrevving\\nrewake\\nrewaked\\nrewaken\\nrewakened\\nrewakening\\nrewakens\\nrewakes\\nrewaking\\nrewan\\nreward\\nrewarded\\nrewarder\\nrewarders\\nrewarding\\nrewards\\nrewarm\\nrewarmed\\nrewarming\\nrewarms\\nrewash\\nrewashed\\nrewashes\\nrewashing\\nrewax\\nrewaxed\\nrewaxes\\nrewaxing\\nreweave\\nreweaved\\nreweaves\\nreweaving\\nrewed\\nreweigh\\nreweighed\\nreweighing\\nreweighs\\nreweld\\nrewelded\\nrewelding\\nrewelds\\nrewiden\\nrewidened\\nrewidening\\nrewidens\\nrewin\\nrewind\\nrewinded\\nrewinder\\nrewinders\\nrewinding\\nrewinds\\nrewinning\\nrewins\\nrewire\\nrewired\\nrewires\\nrewiring\\nrewoke\\nrewoken\\nrewon\\nreword\\nreworded\\nrewording\\nrewords\\nrework\\nreworked\\nreworking\\nreworks\\nrewound\\nrewove\\nrewoven\\nrewrap\\nrewrapped\\nrewrapping\\nrewraps\\nrewrapt\\nrewrite\\nrewriter\\nrewriters\\nrewrites\\nrewriting\\nrewritten\\nrewrote\\nrewrought\\nrex\\nrexes\\nreynard\\nreynards\\nrezone\\nrezoned\\nrezones\\nrezoning\\nrhabdom\\nrhabdome\\nrhabdomes\\nrhabdoms\\nrhachides\\nrhachis\\nrhachises\\nrhamnose\\nrhamnoses\\nrhamnus\\nrhamnuses\\nrhaphae\\nrhaphe\\nrhaphes\\nrhapsode\\nrhapsodes\\nrhapsodic\\nrhapsodically\\nrhapsodies\\nrhapsodize\\nrhapsodized\\nrhapsodizes\\nrhapsodizing\\nrhapsody\\nrhatanies\\nrhatany\\nrhea\\nrheas\\nrhebok\\nrheboks\\nrhematic\\nrhenium\\nrheniums\\nrheobase\\nrheobases\\nrheologies\\nrheology\\nrheophil\\nrheostat\\nrheostats\\nrhesus\\nrhesuses\\nrhetor\\nrhetoric\\nrhetorical\\nrhetorician\\nrhetoricians\\nrhetorics\\nrhetors\\nrheum\\nrheumatic\\nrheumatism\\nrheumatisms\\nrheumic\\nrheumier\\nrheumiest\\nrheums\\nrheumy\\nrhinal\\nrhinestone\\nrhinestones\\nrhinitides\\nrhinitis\\nrhino\\nrhinoceri\\nrhinoceros\\nrhinoceroses\\nrhinos\\nrhizobia\\nrhizoid\\nrhizoids\\nrhizoma\\nrhizomata\\nrhizome\\nrhizomes\\nrhizomic\\nrhizopi\\nrhizopod\\nrhizopods\\nrhizopus\\nrhizopuses\\nrho\\nrhodamin\\nrhodamins\\nrhodic\\nrhodium\\nrhodiums\\nrhododendron\\nrhododendrons\\nrhodora\\nrhodoras\\nrhomb\\nrhombi\\nrhombic\\nrhomboid\\nrhomboids\\nrhombs\\nrhombus\\nrhombuses\\nrhonchal\\nrhonchi\\nrhonchus\\nrhos\\nrhubarb\\nrhubarbs\\nrhumb\\nrhumba\\nrhumbaed\\nrhumbaing\\nrhumbas\\nrhumbs\\nrhus\\nrhuses\\nrhyme\\nrhymed\\nrhymer\\nrhymers\\nrhymes\\nrhyming\\nrhyolite\\nrhyolites\\nrhyta\\nrhythm\\nrhythmic\\nrhythmical\\nrhythmically\\nrhythmics\\nrhythms\\nrhyton\\nrial\\nrials\\nrialto\\nrialtos\\nriant\\nriantly\\nriata\\nriatas\\nrib\\nribald\\nribaldly\\nribaldries\\nribaldry\\nribalds\\nriband\\nribands\\nribband\\nribbands\\nribbed\\nribber\\nribbers\\nribbier\\nribbiest\\nribbing\\nribbings\\nribbon\\nribboned\\nribboning\\nribbons\\nribbony\\nribby\\nribes\\nribgrass\\nribgrasses\\nribless\\nriblet\\nriblets\\nriblike\\nriboflavin\\nriboflavins\\nribose\\nriboses\\nribosome\\nribosomes\\nribs\\nribwort\\nribworts\\nrice\\nricebird\\nricebirds\\nriced\\nricer\\nricercar\\nricercars\\nricers\\nrices\\nrich\\nrichen\\nrichened\\nrichening\\nrichens\\nricher\\nriches\\nrichest\\nrichly\\nrichness\\nrichnesses\\nrichweed\\nrichweeds\\nricin\\nricing\\nricins\\nricinus\\nricinuses\\nrick\\nricked\\nricketier\\nricketiest\\nrickets\\nrickety\\nrickey\\nrickeys\\nricking\\nrickrack\\nrickracks\\nricks\\nricksha\\nrickshas\\nrickshaw\\nrickshaws\\nricochet\\nricocheted\\nricocheting\\nricochets\\nricochetted\\nricochetting\\nricotta\\nricottas\\nricrac\\nricracs\\nrictal\\nrictus\\nrictuses\\nrid\\nridable\\nriddance\\nriddances\\nridded\\nridden\\nridder\\nridders\\nridding\\nriddle\\nriddled\\nriddler\\nriddlers\\nriddles\\nriddling\\nride\\nrideable\\nrident\\nrider\\nriderless\\nriders\\nrides\\nridge\\nridged\\nridgel\\nridgels\\nridges\\nridgier\\nridgiest\\nridgil\\nridgils\\nridging\\nridgling\\nridglings\\nridgy\\nridicule\\nridiculed\\nridicules\\nridiculing\\nridiculous\\nridiculously\\nridiculousness\\nridiculousnesses\\nriding\\nridings\\nridley\\nridleys\\nridotto\\nridottos\\nrids\\nriel\\nriels\\nriever\\nrievers\\nrife\\nrifely\\nrifeness\\nrifenesses\\nrifer\\nrifest\\nriff\\nriffed\\nriffing\\nriffle\\nriffled\\nriffler\\nrifflers\\nriffles\\nriffling\\nriffraff\\nriffraffs\\nriffs\\nrifle\\nrifled\\nrifleman\\nriflemen\\nrifler\\nrifleries\\nriflers\\nriflery\\nrifles\\nrifling\\nriflings\\nrift\\nrifted\\nrifting\\nriftless\\nrifts\\nrig\\nrigadoon\\nrigadoons\\nrigatoni\\nrigatonis\\nrigaudon\\nrigaudons\\nrigged\\nrigger\\nriggers\\nrigging\\nriggings\\nright\\nrighted\\nrighteous\\nrighteously\\nrighteousness\\nrighteousnesses\\nrighter\\nrighters\\nrightest\\nrightful\\nrightfully\\nrightfulness\\nrightfulnesses\\nrighties\\nrighting\\nrightism\\nrightisms\\nrightist\\nrightists\\nrightly\\nrightness\\nrightnesses\\nrighto\\nrights\\nrightward\\nrighty\\nrigid\\nrigidified\\nrigidifies\\nrigidify\\nrigidifying\\nrigidities\\nrigidity\\nrigidly\\nrigmarole\\nrigmaroles\\nrigor\\nrigorism\\nrigorisms\\nrigorist\\nrigorists\\nrigorous\\nrigorously\\nrigors\\nrigour\\nrigours\\nrigs\\nrikisha\\nrikishas\\nrikshaw\\nrikshaws\\nrile\\nriled\\nriles\\nriley\\nrilievi\\nrilievo\\nriling\\nrill\\nrille\\nrilled\\nrilles\\nrillet\\nrillets\\nrilling\\nrills\\nrilly\\nrim\\nrime\\nrimed\\nrimer\\nrimers\\nrimes\\nrimester\\nrimesters\\nrimfire\\nrimier\\nrimiest\\nriming\\nrimland\\nrimlands\\nrimless\\nrimmed\\nrimmer\\nrimmers\\nrimming\\nrimose\\nrimosely\\nrimosities\\nrimosity\\nrimous\\nrimple\\nrimpled\\nrimples\\nrimpling\\nrimrock\\nrimrocks\\nrims\\nrimy\\nrin\\nrind\\nrinded\\nrinds\\nring\\nringbark\\nringbarked\\nringbarking\\nringbarks\\nringbolt\\nringbolts\\nringbone\\nringbones\\nringdove\\nringdoves\\nringed\\nringent\\nringer\\nringers\\nringhals\\nringhalses\\nringing\\nringleader\\nringlet\\nringlets\\nringlike\\nringneck\\nringnecks\\nrings\\nringside\\nringsides\\nringtail\\nringtails\\nringtaw\\nringtaws\\nringtoss\\nringtosses\\nringworm\\nringworms\\nrink\\nrinks\\nrinning\\nrins\\nrinsable\\nrinse\\nrinsed\\nrinser\\nrinsers\\nrinses\\nrinsible\\nrinsing\\nrinsings\\nriot\\nrioted\\nrioter\\nrioters\\nrioting\\nriotous\\nriots\\nrip\\nriparian\\nripcord\\nripcords\\nripe\\nriped\\nripely\\nripen\\nripened\\nripener\\nripeners\\nripeness\\nripenesses\\nripening\\nripens\\nriper\\nripes\\nripest\\nripieni\\nripieno\\nripienos\\nriping\\nripost\\nriposte\\nriposted\\nripostes\\nriposting\\nriposts\\nrippable\\nripped\\nripper\\nrippers\\nripping\\nripple\\nrippled\\nrippler\\nripplers\\nripples\\nripplet\\nripplets\\nripplier\\nrippliest\\nrippling\\nripply\\nriprap\\nriprapped\\nriprapping\\nripraps\\nrips\\nripsaw\\nripsaws\\nriptide\\nriptides\\nrise\\nrisen\\nriser\\nrisers\\nrises\\nrishi\\nrishis\\nrisibilities\\nrisibility\\nrisible\\nrisibles\\nrisibly\\nrising\\nrisings\\nrisk\\nrisked\\nrisker\\nriskers\\nriskier\\nriskiest\\nriskily\\nriskiness\\nriskinesses\\nrisking\\nrisks\\nrisky\\nrisotto\\nrisottos\\nrisque\\nrissole\\nrissoles\\nrisus\\nrisuses\\nritard\\nritards\\nrite\\nrites\\nritter\\nritters\\nritual\\nritualism\\nritualisms\\nritualistic\\nritualistically\\nritually\\nrituals\\nritz\\nritzes\\nritzier\\nritziest\\nritzily\\nritzy\\nrivage\\nrivages\\nrival\\nrivaled\\nrivaling\\nrivalled\\nrivalling\\nrivalries\\nrivalry\\nrivals\\nrive\\nrived\\nriven\\nriver\\nriverbank\\nriverbanks\\nriverbed\\nriverbeds\\nriverboat\\nriverboats\\nriverine\\nrivers\\nriverside\\nriversides\\nrives\\nrivet\\nriveted\\nriveter\\nriveters\\nriveting\\nrivets\\nrivetted\\nrivetting\\nriviera\\nrivieras\\nriviere\\nrivieres\\nriving\\nrivulet\\nrivulets\\nriyal\\nriyals\\nroach\\nroached\\nroaches\\nroaching\\nroad\\nroadbed\\nroadbeds\\nroadblock\\nroadblocks\\nroadless\\nroadrunner\\nroadrunners\\nroads\\nroadside\\nroadsides\\nroadster\\nroadsters\\nroadway\\nroadways\\nroadwork\\nroadworks\\nroam\\nroamed\\nroamer\\nroamers\\nroaming\\nroams\\nroan\\nroans\\nroar\\nroared\\nroarer\\nroarers\\nroaring\\nroarings\\nroars\\nroast\\nroasted\\nroaster\\nroasters\\nroasting\\nroasts\\nrob\\nrobalo\\nrobalos\\nroband\\nrobands\\nrobbed\\nrobber\\nrobberies\\nrobbers\\nrobbery\\nrobbin\\nrobbing\\nrobbins\\nrobe\\nrobed\\nrobes\\nrobin\\nrobing\\nrobins\\nroble\\nrobles\\nroborant\\nroborants\\nrobot\\nrobotics\\nrobotism\\nrobotisms\\nrobotize\\nrobotized\\nrobotizes\\nrobotizing\\nrobotries\\nrobotry\\nrobots\\nrobs\\nrobust\\nrobuster\\nrobustest\\nrobustly\\nrobustness\\nrobustnesses\\nroc\\nrochet\\nrochets\\nrock\\nrockabies\\nrockaby\\nrockabye\\nrockabyes\\nrockaway\\nrockaways\\nrocked\\nrocker\\nrockeries\\nrockers\\nrockery\\nrocket\\nrocketed\\nrocketer\\nrocketers\\nrocketing\\nrocketries\\nrocketry\\nrockets\\nrockfall\\nrockfalls\\nrockfish\\nrockfishes\\nrockier\\nrockiest\\nrocking\\nrockless\\nrocklike\\nrockling\\nrocklings\\nrockoon\\nrockoons\\nrockrose\\nrockroses\\nrocks\\nrockweed\\nrockweeds\\nrockwork\\nrockworks\\nrocky\\nrococo\\nrococos\\nrocs\\nrod\\nrodded\\nrodding\\nrode\\nrodent\\nrodents\\nrodeo\\nrodeos\\nrodless\\nrodlike\\nrodman\\nrodmen\\nrods\\nrodsman\\nrodsmen\\nroe\\nroebuck\\nroebucks\\nroentgen\\nroentgens\\nroes\\nrogation\\nrogations\\nrogatory\\nroger\\nrogers\\nrogue\\nrogued\\nrogueing\\nrogueries\\nroguery\\nrogues\\nroguing\\nroguish\\nroguishly\\nroguishness\\nroguishnesses\\nroil\\nroiled\\nroilier\\nroiliest\\nroiling\\nroils\\nroily\\nroister\\nroistered\\nroistering\\nroisters\\nrolamite\\nrolamites\\nrole\\nroles\\nroll\\nrollaway\\nrollback\\nrollbacks\\nrolled\\nroller\\nrollers\\nrollick\\nrollicked\\nrollicking\\nrollicks\\nrollicky\\nrolling\\nrollings\\nrollmop\\nrollmops\\nrollout\\nrollouts\\nrollover\\nrollovers\\nrolls\\nrolltop\\nrollway\\nrollways\\nromaine\\nromaines\\nroman\\nromance\\nromanced\\nromancer\\nromancers\\nromances\\nromancing\\nromanize\\nromanized\\nromanizes\\nromanizing\\nromano\\nromanos\\nromans\\nromantic\\nromantically\\nromantics\\nromaunt\\nromaunts\\nromp\\nromped\\nromper\\nrompers\\nromping\\nrompish\\nromps\\nrondeau\\nrondeaux\\nrondel\\nrondelet\\nrondelets\\nrondelle\\nrondelles\\nrondels\\nrondo\\nrondos\\nrondure\\nrondures\\nronion\\nronions\\nronnel\\nronnels\\nrontgen\\nrontgens\\nronyon\\nronyons\\nrood\\nroods\\nroof\\nroofed\\nroofer\\nroofers\\nroofing\\nroofings\\nroofless\\nrooflike\\nroofline\\nrooflines\\nroofs\\nrooftop\\nrooftops\\nrooftree\\nrooftrees\\nrook\\nrooked\\nrookeries\\nrookery\\nrookie\\nrookier\\nrookies\\nrookiest\\nrooking\\nrooks\\nrooky\\nroom\\nroomed\\nroomer\\nroomers\\nroomette\\nroomettes\\nroomful\\nroomfuls\\nroomier\\nroomiest\\nroomily\\nrooming\\nroommate\\nroommates\\nrooms\\nroomy\\nroorback\\nroorbacks\\nroose\\nroosed\\nrooser\\nroosers\\nrooses\\nroosing\\nroost\\nroosted\\nrooster\\nroosters\\nroosting\\nroosts\\nroot\\nrootage\\nrootages\\nrooted\\nrooter\\nrooters\\nroothold\\nrootholds\\nrootier\\nrootiest\\nrooting\\nrootless\\nrootlet\\nrootlets\\nrootlike\\nroots\\nrooty\\nropable\\nrope\\nroped\\nroper\\nroperies\\nropers\\nropery\\nropes\\nropewalk\\nropewalks\\nropeway\\nropeways\\nropier\\nropiest\\nropily\\nropiness\\nropinesses\\nroping\\nropy\\nroque\\nroques\\nroquet\\nroqueted\\nroqueting\\nroquets\\nrorqual\\nrorquals\\nrosaria\\nrosarian\\nrosarians\\nrosaries\\nrosarium\\nrosariums\\nrosary\\nroscoe\\nroscoes\\nrose\\nroseate\\nrosebay\\nrosebays\\nrosebud\\nrosebuds\\nrosebush\\nrosebushes\\nrosed\\nrosefish\\nrosefishes\\nroselike\\nroselle\\nroselles\\nrosemaries\\nrosemary\\nroseola\\nroseolar\\nroseolas\\nroser\\nroseries\\nroseroot\\nroseroots\\nrosery\\nroses\\nroset\\nrosets\\nrosette\\nrosettes\\nrosewater\\nrosewood\\nrosewoods\\nrosier\\nrosiest\\nrosily\\nrosin\\nrosined\\nrosiness\\nrosinesses\\nrosing\\nrosining\\nrosinous\\nrosins\\nrosiny\\nroslindale\\nrosolio\\nrosolios\\nrostella\\nroster\\nrosters\\nrostra\\nrostral\\nrostrate\\nrostrum\\nrostrums\\nrosulate\\nrosy\\nrot\\nrota\\nrotaries\\nrotary\\nrotas\\nrotate\\nrotated\\nrotates\\nrotating\\nrotation\\nrotations\\nrotative\\nrotator\\nrotatores\\nrotators\\nrotatory\\nrotch\\nrotche\\nrotches\\nrote\\nrotenone\\nrotenones\\nrotes\\nrotgut\\nrotguts\\nrotifer\\nrotifers\\nrotiform\\nrotl\\nrotls\\nroto\\nrotor\\nrotors\\nrotos\\nrototill\\nrototilled\\nrototilling\\nrototills\\nrots\\nrotted\\nrotten\\nrottener\\nrottenest\\nrottenly\\nrottenness\\nrottennesses\\nrotter\\nrotters\\nrotting\\nrotund\\nrotunda\\nrotundas\\nrotundly\\nroturier\\nroturiers\\nrouble\\nroubles\\nrouche\\nrouches\\nroue\\nrouen\\nrouens\\nroues\\nrouge\\nrouged\\nrouges\\nrough\\nroughage\\nroughages\\nroughdried\\nroughdries\\nroughdry\\nroughdrying\\nroughed\\nroughen\\nroughened\\nroughening\\nroughens\\nrougher\\nroughers\\nroughest\\nroughhew\\nroughhewed\\nroughhewing\\nroughhewn\\nroughhews\\nroughing\\nroughish\\nroughleg\\nroughlegs\\nroughly\\nroughneck\\nroughnecks\\nroughness\\nroughnesses\\nroughs\\nrouging\\nroulade\\nroulades\\nrouleau\\nrouleaus\\nrouleaux\\nroulette\\nrouletted\\nroulettes\\nrouletting\\nround\\nroundabout\\nrounded\\nroundel\\nroundels\\nrounder\\nrounders\\nroundest\\nrounding\\nroundish\\nroundlet\\nroundlets\\nroundly\\nroundness\\nroundnesses\\nrounds\\nroundup\\nroundups\\nroup\\nrouped\\nroupet\\nroupier\\nroupiest\\nroupily\\nrouping\\nroups\\nroupy\\nrouse\\nroused\\nrouser\\nrousers\\nrouses\\nrousing\\nrousseau\\nrousseaus\\nroust\\nrousted\\nrouster\\nrousters\\nrousting\\nrousts\\nrout\\nroute\\nrouted\\nrouteman\\nroutemen\\nrouter\\nrouters\\nroutes\\nrouteway\\nrouteways\\nrouth\\nrouths\\nroutine\\nroutinely\\nroutines\\nrouting\\nrouts\\nroux\\nrove\\nroved\\nroven\\nrover\\nrovers\\nroves\\nroving\\nrovingly\\nrovings\\nrow\\nrowable\\nrowan\\nrowans\\nrowboat\\nrowboats\\nrowdier\\nrowdies\\nrowdiest\\nrowdily\\nrowdiness\\nrowdinesses\\nrowdy\\nrowdyish\\nrowdyism\\nrowdyisms\\nrowed\\nrowel\\nroweled\\nroweling\\nrowelled\\nrowelling\\nrowels\\nrowen\\nrowens\\nrower\\nrowers\\nrowing\\nrowings\\nrowlock\\nrowlocks\\nrows\\nrowth\\nrowths\\nroyal\\nroyalism\\nroyalisms\\nroyalist\\nroyalists\\nroyally\\nroyals\\nroyalties\\nroyalty\\nroyster\\nroystered\\nroystering\\nroysters\\nrozzer\\nrozzers\\nrub\\nrubaboo\\nrubaboos\\nrubace\\nrubaces\\nrubaiyat\\nrubasse\\nrubasses\\nrubato\\nrubatos\\nrubbaboo\\nrubbaboos\\nrubbed\\nrubber\\nrubberize\\nrubberized\\nrubberizes\\nrubberizing\\nrubbers\\nrubbery\\nrubbing\\nrubbings\\nrubbish\\nrubbishes\\nrubbishy\\nrubble\\nrubbled\\nrubbles\\nrubblier\\nrubbliest\\nrubbling\\nrubbly\\nrubdown\\nrubdowns\\nrube\\nrubella\\nrubellas\\nrubeola\\nrubeolar\\nrubeolas\\nrubes\\nrubicund\\nrubidic\\nrubidium\\nrubidiums\\nrubied\\nrubier\\nrubies\\nrubiest\\nrubigo\\nrubigos\\nruble\\nrubles\\nrubric\\nrubrical\\nrubrics\\nrubs\\nrubus\\nruby\\nrubying\\nrubylike\\nruche\\nruches\\nruching\\nruchings\\nruck\\nrucked\\nrucking\\nrucks\\nrucksack\\nrucksacks\\nruckus\\nruckuses\\nruction\\nructions\\nructious\\nrudd\\nrudder\\nrudders\\nruddier\\nruddiest\\nruddily\\nruddiness\\nruddinesses\\nruddle\\nruddled\\nruddles\\nruddling\\nruddock\\nruddocks\\nrudds\\nruddy\\nrude\\nrudely\\nrudeness\\nrudenesses\\nruder\\nruderal\\nruderals\\nrudesbies\\nrudesby\\nrudest\\nrudiment\\nrudimentary\\nrudiments\\nrue\\nrued\\nrueful\\nruefully\\nruefulness\\nruefulnesses\\nruer\\nruers\\nrues\\nruff\\nruffe\\nruffed\\nruffes\\nruffian\\nruffians\\nruffing\\nruffle\\nruffled\\nruffler\\nrufflers\\nruffles\\nrufflike\\nruffling\\nruffly\\nruffs\\nrufous\\nrug\\nruga\\nrugae\\nrugal\\nrugate\\nrugbies\\nrugby\\nrugged\\nruggeder\\nruggedest\\nruggedly\\nruggedness\\nruggednesses\\nrugger\\nruggers\\nrugging\\nruglike\\nrugose\\nrugosely\\nrugosities\\nrugosity\\nrugous\\nrugs\\nrugulose\\nruin\\nruinable\\nruinate\\nruinated\\nruinates\\nruinating\\nruined\\nruiner\\nruiners\\nruing\\nruining\\nruinous\\nruinously\\nruins\\nrulable\\nrule\\nruled\\nruleless\\nruler\\nrulers\\nrules\\nruling\\nrulings\\nrum\\nrumba\\nrumbaed\\nrumbaing\\nrumbas\\nrumble\\nrumbled\\nrumbler\\nrumblers\\nrumbles\\nrumbling\\nrumblings\\nrumbly\\nrumen\\nrumens\\nrumina\\nruminal\\nruminant\\nruminants\\nruminate\\nruminated\\nruminates\\nruminating\\nrummage\\nrummaged\\nrummager\\nrummagers\\nrummages\\nrummaging\\nrummer\\nrummers\\nrummest\\nrummier\\nrummies\\nrummiest\\nrummy\\nrumor\\nrumored\\nrumoring\\nrumors\\nrumour\\nrumoured\\nrumouring\\nrumours\\nrump\\nrumple\\nrumpled\\nrumples\\nrumpless\\nrumplier\\nrumpliest\\nrumpling\\nrumply\\nrumps\\nrumpus\\nrumpuses\\nrums\\nrun\\nrunabout\\nrunabouts\\nrunagate\\nrunagates\\nrunaround\\nrunarounds\\nrunaway\\nrunaways\\nrunback\\nrunbacks\\nrundle\\nrundles\\nrundlet\\nrundlets\\nrundown\\nrundowns\\nrune\\nrunelike\\nrunes\\nrung\\nrungless\\nrungs\\nrunic\\nrunkle\\nrunkled\\nrunkles\\nrunkling\\nrunless\\nrunlet\\nrunlets\\nrunnel\\nrunnels\\nrunner\\nrunners\\nrunnier\\nrunniest\\nrunning\\nrunnings\\nrunny\\nrunoff\\nrunoffs\\nrunout\\nrunouts\\nrunover\\nrunovers\\nrunround\\nrunrounds\\nruns\\nrunt\\nruntier\\nruntiest\\nruntish\\nrunts\\nrunty\\nrunway\\nrunways\\nrupee\\nrupees\\nrupiah\\nrupiahs\\nrupture\\nruptured\\nruptures\\nrupturing\\nrural\\nruralise\\nruralised\\nruralises\\nruralising\\nruralism\\nruralisms\\nruralist\\nruralists\\nruralite\\nruralites\\nruralities\\nrurality\\nruralize\\nruralized\\nruralizes\\nruralizing\\nrurally\\nrurban\\nruse\\nruses\\nrush\\nrushed\\nrushee\\nrushees\\nrusher\\nrushers\\nrushes\\nrushier\\nrushiest\\nrushing\\nrushings\\nrushlike\\nrushy\\nrusine\\nrusk\\nrusks\\nrusset\\nrussets\\nrussety\\nrussified\\nrussifies\\nrussify\\nrussifying\\nrust\\nrustable\\nrusted\\nrustic\\nrustical\\nrustically\\nrusticities\\nrusticity\\nrusticly\\nrustics\\nrustier\\nrustiest\\nrustily\\nrusting\\nrustle\\nrustled\\nrustler\\nrustlers\\nrustles\\nrustless\\nrustling\\nrusts\\nrusty\\nrut\\nrutabaga\\nrutabagas\\nruth\\nruthenic\\nruthful\\nruthless\\nruthlessly\\nruthlessness\\nruthlessnesses\\nruths\\nrutilant\\nrutile\\nrutiles\\nruts\\nrutted\\nruttier\\nruttiest\\nruttily\\nrutting\\nruttish\\nrutty\\nrya\\nryas\\nrye\\nryegrass\\nryegrasses\\nryes\\nryke\\nryked\\nrykes\\nryking\\nrynd\\nrynds\\nryot\\nryots\\nsab\\nsabaton\\nsabatons\\nsabbat\\nsabbath\\nsabbaths\\nsabbatic\\nsabbats\\nsabbed\\nsabbing\\nsabe\\nsabed\\nsabeing\\nsaber\\nsabered\\nsabering\\nsabers\\nsabes\\nsabin\\nsabine\\nsabines\\nsabins\\nsabir\\nsabirs\\nsable\\nsables\\nsabot\\nsabotage\\nsabotaged\\nsabotages\\nsabotaging\\nsaboteur\\nsaboteurs\\nsabots\\nsabra\\nsabras\\nsabre\\nsabred\\nsabres\\nsabring\\nsabs\\nsabulose\\nsabulous\\nsac\\nsacaton\\nsacatons\\nsacbut\\nsacbuts\\nsaccade\\nsaccades\\nsaccadic\\nsaccate\\nsaccharin\\nsaccharine\\nsaccharins\\nsaccular\\nsaccule\\nsaccules\\nsacculi\\nsacculus\\nsachem\\nsachemic\\nsachems\\nsachet\\nsacheted\\nsachets\\nsack\\nsackbut\\nsackbuts\\nsackcloth\\nsackcloths\\nsacked\\nsacker\\nsackers\\nsackful\\nsackfuls\\nsacking\\nsackings\\nsacklike\\nsacks\\nsacksful\\nsaclike\\nsacque\\nsacques\\nsacra\\nsacral\\nsacrals\\nsacrament\\nsacramental\\nsacraments\\nsacraria\\nsacred\\nsacredly\\nsacrifice\\nsacrificed\\nsacrifices\\nsacrificial\\nsacrificially\\nsacrificing\\nsacrilege\\nsacrileges\\nsacrilegious\\nsacrilegiously\\nsacrist\\nsacristies\\nsacrists\\nsacristy\\nsacrosanct\\nsacrum\\nsacs\\nsad\\nsadden\\nsaddened\\nsaddening\\nsaddens\\nsadder\\nsaddest\\nsaddhu\\nsaddhus\\nsaddle\\nsaddled\\nsaddler\\nsaddleries\\nsaddlers\\nsaddlery\\nsaddles\\nsaddling\\nsade\\nsades\\nsadhe\\nsadhes\\nsadhu\\nsadhus\\nsadi\\nsadiron\\nsadirons\\nsadis\\nsadism\\nsadisms\\nsadist\\nsadistic\\nsadistically\\nsadists\\nsadly\\nsadness\\nsadnesses\\nsae\\nsafari\\nsafaried\\nsafariing\\nsafaris\\nsafe\\nsafeguard\\nsafeguarded\\nsafeguarding\\nsafeguards\\nsafekeeping\\nsafekeepings\\nsafely\\nsafeness\\nsafenesses\\nsafer\\nsafes\\nsafest\\nsafetied\\nsafeties\\nsafety\\nsafetying\\nsafflower\\nsafflowers\\nsaffron\\nsaffrons\\nsafranin\\nsafranins\\nsafrol\\nsafrole\\nsafroles\\nsafrols\\nsag\\nsaga\\nsagacious\\nsagacities\\nsagacity\\nsagaman\\nsagamen\\nsagamore\\nsagamores\\nsaganash\\nsaganashes\\nsagas\\nsagbut\\nsagbuts\\nsage\\nsagebrush\\nsagebrushes\\nsagely\\nsageness\\nsagenesses\\nsager\\nsages\\nsagest\\nsaggar\\nsaggard\\nsaggards\\nsaggared\\nsaggaring\\nsaggars\\nsagged\\nsagger\\nsaggered\\nsaggering\\nsaggers\\nsagging\\nsagier\\nsagiest\\nsagittal\\nsago\\nsagos\\nsags\\nsaguaro\\nsaguaros\\nsagum\\nsagy\\nsahib\\nsahibs\\nsahiwal\\nsahiwals\\nsahuaro\\nsahuaros\\nsaice\\nsaices\\nsaid\\nsaids\\nsaiga\\nsaigas\\nsail\\nsailable\\nsailboat\\nsailboats\\nsailed\\nsailer\\nsailers\\nsailfish\\nsailfishes\\nsailing\\nsailings\\nsailor\\nsailorly\\nsailors\\nsails\\nsain\\nsained\\nsainfoin\\nsainfoins\\nsaining\\nsains\\nsaint\\nsaintdom\\nsaintdoms\\nsainted\\nsainthood\\nsainthoods\\nsainting\\nsaintlier\\nsaintliest\\nsaintliness\\nsaintlinesses\\nsaintly\\nsaints\\nsaith\\nsaithe\\nsaiyid\\nsaiyids\\nsajou\\nsajous\\nsake\\nsaker\\nsakers\\nsakes\\nsaki\\nsakis\\nsal\\nsalaam\\nsalaamed\\nsalaaming\\nsalaams\\nsalable\\nsalably\\nsalacious\\nsalacities\\nsalacity\\nsalad\\nsaladang\\nsaladangs\\nsalads\\nsalamander\\nsalamanders\\nsalami\\nsalamis\\nsalariat\\nsalariats\\nsalaried\\nsalaries\\nsalary\\nsalarying\\nsale\\nsaleable\\nsaleably\\nsalep\\nsaleps\\nsaleroom\\nsalerooms\\nsales\\nsalesman\\nsalesmen\\nsaleswoman\\nsaleswomen\\nsalic\\nsalicin\\nsalicine\\nsalicines\\nsalicins\\nsalience\\nsaliences\\nsaliencies\\nsaliency\\nsalient\\nsalients\\nsalified\\nsalifies\\nsalify\\nsalifying\\nsalina\\nsalinas\\nsaline\\nsalines\\nsalinities\\nsalinity\\nsalinize\\nsalinized\\nsalinizes\\nsalinizing\\nsaliva\\nsalivary\\nsalivas\\nsalivate\\nsalivated\\nsalivates\\nsalivating\\nsalivation\\nsalivations\\nsall\\nsallet\\nsallets\\nsallied\\nsallier\\nsalliers\\nsallies\\nsallow\\nsallowed\\nsallower\\nsallowest\\nsallowing\\nsallowly\\nsallows\\nsallowy\\nsally\\nsallying\\nsalmi\\nsalmis\\nsalmon\\nsalmonid\\nsalmonids\\nsalmons\\nsalol\\nsalols\\nsalon\\nsalons\\nsaloon\\nsaloons\\nsaloop\\nsaloops\\nsalp\\nsalpa\\nsalpae\\nsalpas\\nsalpian\\nsalpians\\nsalpid\\nsalpids\\nsalpinges\\nsalpinx\\nsalps\\nsals\\nsalsifies\\nsalsify\\nsalsilla\\nsalsillas\\nsalt\\nsaltant\\nsaltbox\\nsaltboxes\\nsaltbush\\nsaltbushes\\nsalted\\nsalter\\nsaltern\\nsalterns\\nsalters\\nsaltest\\nsaltie\\nsaltier\\nsaltiers\\nsalties\\nsaltiest\\nsaltily\\nsaltine\\nsaltines\\nsaltiness\\nsaltinesses\\nsalting\\nsaltire\\nsaltires\\nsaltish\\nsaltless\\nsaltlike\\nsaltness\\nsaltnesses\\nsaltpan\\nsaltpans\\nsalts\\nsaltwater\\nsaltwaters\\nsaltwork\\nsaltworks\\nsaltwort\\nsaltworts\\nsalty\\nsalubrious\\nsaluki\\nsalukis\\nsalutary\\nsalutation\\nsalutations\\nsalute\\nsaluted\\nsaluter\\nsaluters\\nsalutes\\nsaluting\\nsalvable\\nsalvably\\nsalvage\\nsalvaged\\nsalvagee\\nsalvagees\\nsalvager\\nsalvagers\\nsalvages\\nsalvaging\\nsalvation\\nsalvations\\nsalve\\nsalved\\nsalver\\nsalvers\\nsalves\\nsalvia\\nsalvias\\nsalvific\\nsalving\\nsalvo\\nsalvoed\\nsalvoes\\nsalvoing\\nsalvor\\nsalvors\\nsalvos\\nsamara\\nsamaras\\nsamarium\\nsamariums\\nsamba\\nsambaed\\nsambaing\\nsambar\\nsambars\\nsambas\\nsambhar\\nsambhars\\nsambhur\\nsambhurs\\nsambo\\nsambos\\nsambuca\\nsambucas\\nsambuke\\nsambukes\\nsambur\\nsamburs\\nsame\\nsamech\\nsamechs\\nsamek\\nsamekh\\nsamekhs\\nsameks\\nsameness\\nsamenesses\\nsamiel\\nsamiels\\nsamisen\\nsamisens\\nsamite\\nsamites\\nsamlet\\nsamlets\\nsamovar\\nsamovars\\nsamp\\nsampan\\nsampans\\nsamphire\\nsamphires\\nsample\\nsampled\\nsampler\\nsamplers\\nsamples\\nsampling\\nsamplings\\nsamps\\nsamsara\\nsamsaras\\nsamshu\\nsamshus\\nsamurai\\nsamurais\\nsanative\\nsanatoria\\nsanatorium\\nsanatoriums\\nsancta\\nsanctification\\nsanctifications\\nsanctified\\nsanctifies\\nsanctify\\nsanctifying\\nsanctimonious\\nsanction\\nsanctioned\\nsanctioning\\nsanctions\\nsanctities\\nsanctity\\nsanctuaries\\nsanctuary\\nsanctum\\nsanctums\\nsand\\nsandal\\nsandaled\\nsandaling\\nsandalled\\nsandalling\\nsandals\\nsandarac\\nsandaracs\\nsandbag\\nsandbagged\\nsandbagging\\nsandbags\\nsandbank\\nsandbanks\\nsandbar\\nsandbars\\nsandbox\\nsandboxes\\nsandbur\\nsandburr\\nsandburrs\\nsandburs\\nsanded\\nsander\\nsanders\\nsandfish\\nsandfishes\\nsandflies\\nsandfly\\nsandhi\\nsandhis\\nsandhog\\nsandhogs\\nsandier\\nsandiest\\nsanding\\nsandlike\\nsandling\\nsandlings\\nsandlot\\nsandlots\\nsandman\\nsandmen\\nsandpaper\\nsandpapered\\nsandpapering\\nsandpapers\\nsandpeep\\nsandpeeps\\nsandpile\\nsandpiles\\nsandpiper\\nsandpipers\\nsandpit\\nsandpits\\nsands\\nsandsoap\\nsandsoaps\\nsandstone\\nsandstones\\nsandstorm\\nsandstorms\\nsandwich\\nsandwiched\\nsandwiches\\nsandwiching\\nsandworm\\nsandworms\\nsandwort\\nsandworts\\nsandy\\nsane\\nsaned\\nsanely\\nsaneness\\nsanenesses\\nsaner\\nsanes\\nsanest\\nsang\\nsanga\\nsangar\\nsangaree\\nsangarees\\nsangars\\nsangas\\nsanger\\nsangers\\nsangh\\nsanghs\\nsangria\\nsangrias\\nsanguinary\\nsanguine\\nsanguines\\nsanicle\\nsanicles\\nsanies\\nsaning\\nsanious\\nsanitaria\\nsanitaries\\nsanitarium\\nsanitariums\\nsanitary\\nsanitate\\nsanitated\\nsanitates\\nsanitating\\nsanitation\\nsanitations\\nsanities\\nsanitise\\nsanitised\\nsanitises\\nsanitising\\nsanitize\\nsanitized\\nsanitizes\\nsanitizing\\nsanity\\nsanjak\\nsanjaks\\nsank\\nsannop\\nsannops\\nsannup\\nsannups\\nsannyasi\\nsannyasis\\nsans\\nsansar\\nsansars\\nsansei\\nsanseis\\nsanserif\\nsanserifs\\nsantalic\\nsantimi\\nsantims\\nsantir\\nsantirs\\nsantol\\nsantols\\nsantonin\\nsantonins\\nsantour\\nsantours\\nsap\\nsapajou\\nsapajous\\nsaphead\\nsapheads\\nsaphena\\nsaphenae\\nsapid\\nsapidities\\nsapidity\\nsapience\\nsapiences\\nsapiencies\\nsapiency\\nsapiens\\nsapient\\nsapless\\nsapling\\nsaplings\\nsaponified\\nsaponifies\\nsaponify\\nsaponifying\\nsaponin\\nsaponine\\nsaponines\\nsaponins\\nsaponite\\nsaponites\\nsapor\\nsaporous\\nsapors\\nsapota\\nsapotas\\nsapour\\nsapours\\nsapped\\nsapper\\nsappers\\nsapphic\\nsapphics\\nsapphire\\nsapphires\\nsapphism\\nsapphisms\\nsapphist\\nsapphists\\nsappier\\nsappiest\\nsappily\\nsapping\\nsappy\\nsapremia\\nsapremias\\nsapremic\\nsaprobe\\nsaprobes\\nsaprobic\\nsapropel\\nsapropels\\nsaps\\nsapsago\\nsapsagos\\nsapsucker\\nsapsuckers\\nsapwood\\nsapwoods\\nsaraband\\nsarabands\\nsaran\\nsarape\\nsarapes\\nsarcasm\\nsarcasms\\nsarcastic\\nsarcastically\\nsarcenet\\nsarcenets\\nsarcoid\\nsarcoids\\nsarcoma\\nsarcomas\\nsarcomata\\nsarcophagi\\nsarcophagus\\nsarcous\\nsard\\nsardar\\nsardars\\nsardine\\nsardines\\nsardius\\nsardiuses\\nsardonic\\nsardonically\\nsardonyx\\nsardonyxes\\nsards\\nsaree\\nsarees\\nsargasso\\nsargassos\\nsarge\\nsarges\\nsari\\nsarin\\nsarins\\nsaris\\nsark\\nsarks\\nsarment\\nsarmenta\\nsarments\\nsarod\\nsarode\\nsarodes\\nsarodist\\nsarodists\\nsarods\\nsarong\\nsarongs\\nsarsaparilla\\nsarsaparillas\\nsarsar\\nsarsars\\nsarsen\\nsarsenet\\nsarsenets\\nsarsens\\nsartor\\nsartorii\\nsartors\\nsash\\nsashay\\nsashayed\\nsashaying\\nsashays\\nsashed\\nsashes\\nsashimi\\nsashimis\\nsashing\\nsasin\\nsasins\\nsass\\nsassabies\\nsassaby\\nsassafras\\nsassafrases\\nsassed\\nsasses\\nsassier\\nsassies\\nsassiest\\nsassily\\nsassing\\nsasswood\\nsasswoods\\nsassy\\nsastruga\\nsastrugi\\nsat\\nsatang\\nsatangs\\nsatanic\\nsatanism\\nsatanisms\\nsatanist\\nsatanists\\nsatara\\nsataras\\nsatchel\\nsatchels\\nsate\\nsated\\nsateen\\nsateens\\nsatellite\\nsatellites\\nsatem\\nsates\\nsati\\nsatiable\\nsatiably\\nsatiate\\nsatiated\\nsatiates\\nsatiating\\nsatieties\\nsatiety\\nsatin\\nsatinet\\nsatinets\\nsating\\nsatinpod\\nsatinpods\\nsatins\\nsatiny\\nsatire\\nsatires\\nsatiric\\nsatirical\\nsatirically\\nsatirise\\nsatirised\\nsatirises\\nsatirising\\nsatirist\\nsatirists\\nsatirize\\nsatirized\\nsatirizes\\nsatirizing\\nsatis\\nsatisfaction\\nsatisfactions\\nsatisfactorily\\nsatisfactory\\nsatisfied\\nsatisfies\\nsatisfy\\nsatisfying\\nsatisfyingly\\nsatori\\nsatoris\\nsatrap\\nsatrapies\\nsatraps\\nsatrapy\\nsaturant\\nsaturants\\nsaturate\\nsaturated\\nsaturates\\nsaturating\\nsaturation\\nsaturations\\nsaturnine\\nsatyr\\nsatyric\\nsatyrid\\nsatyrids\\nsatyrs\\nsau\\nsauce\\nsaucebox\\nsauceboxes\\nsauced\\nsaucepan\\nsaucepans\\nsaucer\\nsaucers\\nsauces\\nsauch\\nsauchs\\nsaucier\\nsauciest\\nsaucily\\nsaucing\\nsaucy\\nsauerkraut\\nsauerkrauts\\nsauger\\nsaugers\\nsaugh\\nsaughs\\nsaughy\\nsaul\\nsauls\\nsault\\nsaults\\nsauna\\nsaunas\\nsaunter\\nsauntered\\nsauntering\\nsaunters\\nsaurel\\nsaurels\\nsaurian\\nsaurians\\nsauries\\nsauropod\\nsauropods\\nsaury\\nsausage\\nsausages\\nsaute\\nsauted\\nsauteed\\nsauteing\\nsauterne\\nsauternes\\nsautes\\nsautoir\\nsautoire\\nsautoires\\nsautoirs\\nsavable\\nsavage\\nsavaged\\nsavagely\\nsavageness\\nsavagenesses\\nsavager\\nsavageries\\nsavagery\\nsavages\\nsavagest\\nsavaging\\nsavagism\\nsavagisms\\nsavanna\\nsavannah\\nsavannahs\\nsavannas\\nsavant\\nsavants\\nsavate\\nsavates\\nsave\\nsaveable\\nsaved\\nsaveloy\\nsaveloys\\nsaver\\nsavers\\nsaves\\nsavin\\nsavine\\nsavines\\nsaving\\nsavingly\\nsavings\\nsavins\\nsavior\\nsaviors\\nsaviour\\nsaviours\\nsavor\\nsavored\\nsavorer\\nsavorers\\nsavorier\\nsavories\\nsavoriest\\nsavorily\\nsavoring\\nsavorous\\nsavors\\nsavory\\nsavour\\nsavoured\\nsavourer\\nsavourers\\nsavourier\\nsavouries\\nsavouriest\\nsavouring\\nsavours\\nsavoury\\nsavoy\\nsavoys\\nsavvied\\nsavvies\\nsavvy\\nsavvying\\nsaw\\nsawbill\\nsawbills\\nsawbones\\nsawboneses\\nsawbuck\\nsawbucks\\nsawdust\\nsawdusts\\nsawed\\nsawer\\nsawers\\nsawfish\\nsawfishes\\nsawflies\\nsawfly\\nsawhorse\\nsawhorses\\nsawing\\nsawlike\\nsawlog\\nsawlogs\\nsawmill\\nsawmills\\nsawn\\nsawney\\nsawneys\\nsaws\\nsawteeth\\nsawtooth\\nsawyer\\nsawyers\\nsax\\nsaxatile\\nsaxes\\nsaxhorn\\nsaxhorns\\nsaxonies\\nsaxony\\nsaxophone\\nsaxophones\\nsaxtuba\\nsaxtubas\\nsay\\nsayable\\nsayer\\nsayers\\nsayest\\nsayid\\nsayids\\nsaying\\nsayings\\nsayonara\\nsayonaras\\nsays\\nsayst\\nsayyid\\nsayyids\\nscab\\nscabbard\\nscabbarded\\nscabbarding\\nscabbards\\nscabbed\\nscabbier\\nscabbiest\\nscabbily\\nscabbing\\nscabble\\nscabbled\\nscabbles\\nscabbling\\nscabby\\nscabies\\nscabiosa\\nscabiosas\\nscabious\\nscabiouses\\nscablike\\nscabrous\\nscabs\\nscad\\nscads\\nscaffold\\nscaffolded\\nscaffolding\\nscaffolds\\nscag\\nscags\\nscalable\\nscalably\\nscalade\\nscalades\\nscalado\\nscalados\\nscalage\\nscalages\\nscalar\\nscalare\\nscalares\\nscalars\\nscalawag\\nscalawags\\nscald\\nscalded\\nscaldic\\nscalding\\nscalds\\nscale\\nscaled\\nscaleless\\nscalene\\nscaleni\\nscalenus\\nscalepan\\nscalepans\\nscaler\\nscalers\\nscales\\nscalier\\nscaliest\\nscaling\\nscall\\nscallion\\nscallions\\nscallop\\nscalloped\\nscalloping\\nscallops\\nscalls\\nscalp\\nscalped\\nscalpel\\nscalpels\\nscalper\\nscalpers\\nscalping\\nscalps\\nscaly\\nscam\\nscammonies\\nscammony\\nscamp\\nscamped\\nscamper\\nscampered\\nscampering\\nscampers\\nscampi\\nscamping\\nscampish\\nscamps\\nscams\\nscan\\nscandal\\nscandaled\\nscandaling\\nscandalize\\nscandalized\\nscandalizes\\nscandalizing\\nscandalled\\nscandalling\\nscandalous\\nscandals\\nscandent\\nscandia\\nscandias\\nscandic\\nscandium\\nscandiums\\nscanned\\nscanner\\nscanners\\nscanning\\nscannings\\nscans\\nscansion\\nscansions\\nscant\\nscanted\\nscanter\\nscantest\\nscantier\\nscanties\\nscantiest\\nscantily\\nscanting\\nscantly\\nscants\\nscanty\\nscape\\nscaped\\nscapegoat\\nscapegoats\\nscapes\\nscaphoid\\nscaphoids\\nscaping\\nscapose\\nscapula\\nscapulae\\nscapular\\nscapulars\\nscapulas\\nscar\\nscarab\\nscarabs\\nscarce\\nscarcely\\nscarcer\\nscarcest\\nscarcities\\nscarcity\\nscare\\nscarecrow\\nscarecrows\\nscared\\nscarer\\nscarers\\nscares\\nscarey\\nscarf\\nscarfed\\nscarfing\\nscarfpin\\nscarfpins\\nscarfs\\nscarier\\nscariest\\nscarified\\nscarifies\\nscarify\\nscarifying\\nscaring\\nscariose\\nscarious\\nscarless\\nscarlet\\nscarlets\\nscarp\\nscarped\\nscarper\\nscarpered\\nscarpering\\nscarpers\\nscarph\\nscarphed\\nscarphing\\nscarphs\\nscarping\\nscarps\\nscarred\\nscarrier\\nscarriest\\nscarring\\nscarry\\nscars\\nscart\\nscarted\\nscarting\\nscarts\\nscarves\\nscary\\nscat\\nscatback\\nscatbacks\\nscathe\\nscathed\\nscathes\\nscathing\\nscats\\nscatt\\nscatted\\nscatter\\nscattered\\nscattergram\\nscattergrams\\nscattering\\nscatters\\nscattier\\nscattiest\\nscatting\\nscatts\\nscatty\\nscaup\\nscauper\\nscaupers\\nscaups\\nscaur\\nscaurs\\nscavenge\\nscavenged\\nscavenger\\nscavengers\\nscavenges\\nscavenging\\nscena\\nscenario\\nscenarios\\nscenas\\nscend\\nscended\\nscending\\nscends\\nscene\\nsceneries\\nscenery\\nscenes\\nscenic\\nscenical\\nscent\\nscented\\nscenting\\nscents\\nscepter\\nsceptered\\nsceptering\\nscepters\\nsceptic\\nsceptics\\nsceptral\\nsceptre\\nsceptred\\nsceptres\\nsceptring\\nschappe\\nschappes\\nschav\\nschavs\\nschedule\\nscheduled\\nschedules\\nscheduling\\nschema\\nschemata\\nschematic\\nscheme\\nschemed\\nschemer\\nschemers\\nschemes\\nscheming\\nscherzi\\nscherzo\\nscherzos\\nschiller\\nschillers\\nschism\\nschisms\\nschist\\nschists\\nschizo\\nschizoid\\nschizoids\\nschizont\\nschizonts\\nschizophrenia\\nschizophrenias\\nschizophrenic\\nschizophrenics\\nschizos\\nschlep\\nschlepp\\nschlepped\\nschlepping\\nschlepps\\nschleps\\nschlock\\nschlocks\\nschmaltz\\nschmaltzes\\nschmalz\\nschmalzes\\nschmalzier\\nschmalziest\\nschmalzy\\nschmeer\\nschmeered\\nschmeering\\nschmeers\\nschmelze\\nschmelzes\\nschmo\\nschmoe\\nschmoes\\nschmoos\\nschmoose\\nschmoosed\\nschmooses\\nschmoosing\\nschmooze\\nschmoozed\\nschmoozes\\nschmoozing\\nschmuck\\nschmucks\\nschnapps\\nschnaps\\nschnecke\\nschnecken\\nschnook\\nschnooks\\nscholar\\nscholars\\nscholarship\\nscholarships\\nscholastic\\nscholia\\nscholium\\nscholiums\\nschool\\nschoolboy\\nschoolboys\\nschooled\\nschoolgirl\\nschoolgirls\\nschoolhouse\\nschoolhouses\\nschooling\\nschoolmate\\nschoolmates\\nschoolroom\\nschoolrooms\\nschools\\nschoolteacher\\nschoolteachers\\nschooner\\nschooners\\nschorl\\nschorls\\nschrik\\nschriks\\nschtick\\nschticks\\nschuit\\nschuits\\nschul\\nschuln\\nschuss\\nschussed\\nschusses\\nschussing\\nschwa\\nschwas\\nsciaenid\\nsciaenids\\nsciatic\\nsciatica\\nsciaticas\\nsciatics\\nscience\\nsciences\\nscientific\\nscientifically\\nscientist\\nscientists\\nscilicet\\nscilla\\nscillas\\nscimetar\\nscimetars\\nscimitar\\nscimitars\\nscimiter\\nscimiters\\nscincoid\\nscincoids\\nscintillate\\nscintillated\\nscintillates\\nscintillating\\nscintillation\\nscintillations\\nsciolism\\nsciolisms\\nsciolist\\nsciolists\\nscion\\nscions\\nscirocco\\nsciroccos\\nscirrhi\\nscirrhus\\nscirrhuses\\nscissile\\nscission\\nscissions\\nscissor\\nscissored\\nscissoring\\nscissors\\nscissure\\nscissures\\nsciurine\\nsciurines\\nsciuroid\\nsclaff\\nsclaffed\\nsclaffer\\nsclaffers\\nsclaffing\\nsclaffs\\nsclera\\nsclerae\\nscleral\\nscleras\\nsclereid\\nsclereids\\nsclerite\\nsclerites\\nscleroid\\nscleroma\\nscleromata\\nsclerose\\nsclerosed\\nscleroses\\nsclerosing\\nsclerosis\\nsclerosises\\nsclerotic\\nsclerous\\nscoff\\nscoffed\\nscoffer\\nscoffers\\nscoffing\\nscofflaw\\nscofflaws\\nscoffs\\nscold\\nscolded\\nscolder\\nscolders\\nscolding\\nscoldings\\nscolds\\nscoleces\\nscolex\\nscolices\\nscolioma\\nscoliomas\\nscollop\\nscolloped\\nscolloping\\nscollops\\nsconce\\nsconced\\nsconces\\nsconcing\\nscone\\nscones\\nscoop\\nscooped\\nscooper\\nscoopers\\nscoopful\\nscoopfuls\\nscooping\\nscoops\\nscoopsful\\nscoot\\nscooted\\nscooter\\nscooters\\nscooting\\nscoots\\nscop\\nscope\\nscopes\\nscops\\nscopula\\nscopulae\\nscopulas\\nscorch\\nscorched\\nscorcher\\nscorchers\\nscorches\\nscorching\\nscore\\nscored\\nscoreless\\nscorepad\\nscorepads\\nscorer\\nscorers\\nscores\\nscoria\\nscoriae\\nscorified\\nscorifies\\nscorify\\nscorifying\\nscoring\\nscorn\\nscorned\\nscorner\\nscorners\\nscornful\\nscornfully\\nscorning\\nscorns\\nscorpion\\nscorpions\\nscot\\nscotch\\nscotched\\nscotches\\nscotching\\nscoter\\nscoters\\nscotia\\nscotias\\nscotoma\\nscotomas\\nscotomata\\nscotopia\\nscotopias\\nscotopic\\nscots\\nscottie\\nscotties\\nscoundrel\\nscoundrels\\nscour\\nscoured\\nscourer\\nscourers\\nscourge\\nscourged\\nscourger\\nscourgers\\nscourges\\nscourging\\nscouring\\nscourings\\nscours\\nscouse\\nscouses\\nscout\\nscouted\\nscouter\\nscouters\\nscouth\\nscouther\\nscouthered\\nscouthering\\nscouthers\\nscouths\\nscouting\\nscoutings\\nscouts\\nscow\\nscowder\\nscowdered\\nscowdering\\nscowders\\nscowed\\nscowing\\nscowl\\nscowled\\nscowler\\nscowlers\\nscowling\\nscowls\\nscows\\nscrabble\\nscrabbled\\nscrabbles\\nscrabbling\\nscrabbly\\nscrag\\nscragged\\nscraggier\\nscraggiest\\nscragging\\nscragglier\\nscraggliest\\nscraggly\\nscraggy\\nscrags\\nscraich\\nscraiched\\nscraiching\\nscraichs\\nscraigh\\nscraighed\\nscraighing\\nscraighs\\nscram\\nscramble\\nscrambled\\nscrambles\\nscrambling\\nscrammed\\nscramming\\nscrams\\nscrannel\\nscrannels\\nscrap\\nscrapbook\\nscrapbooks\\nscrape\\nscraped\\nscraper\\nscrapers\\nscrapes\\nscrapie\\nscrapies\\nscraping\\nscrapings\\nscrapped\\nscrapper\\nscrappers\\nscrappier\\nscrappiest\\nscrapping\\nscrapple\\nscrapples\\nscrappy\\nscraps\\nscratch\\nscratched\\nscratches\\nscratchier\\nscratchiest\\nscratching\\nscratchy\\nscrawl\\nscrawled\\nscrawler\\nscrawlers\\nscrawlier\\nscrawliest\\nscrawling\\nscrawls\\nscrawly\\nscrawnier\\nscrawniest\\nscrawny\\nscreak\\nscreaked\\nscreaking\\nscreaks\\nscreaky\\nscream\\nscreamed\\nscreamer\\nscreamers\\nscreaming\\nscreams\\nscree\\nscreech\\nscreeched\\nscreeches\\nscreechier\\nscreechiest\\nscreeching\\nscreechy\\nscreed\\nscreeded\\nscreeding\\nscreeds\\nscreen\\nscreened\\nscreener\\nscreeners\\nscreening\\nscreens\\nscrees\\nscrew\\nscrewball\\nscrewballs\\nscrewdriver\\nscrewdrivers\\nscrewed\\nscrewer\\nscrewers\\nscrewier\\nscrewiest\\nscrewing\\nscrews\\nscrewy\\nscribal\\nscribble\\nscribbled\\nscribbles\\nscribbling\\nscribe\\nscribed\\nscriber\\nscribers\\nscribes\\nscribing\\nscrieve\\nscrieved\\nscrieves\\nscrieving\\nscrim\\nscrimp\\nscrimped\\nscrimpier\\nscrimpiest\\nscrimping\\nscrimpit\\nscrimps\\nscrimpy\\nscrims\\nscrip\\nscrips\\nscript\\nscripted\\nscripting\\nscripts\\nscriptural\\nscripture\\nscriptures\\nscrive\\nscrived\\nscrives\\nscriving\\nscrod\\nscrods\\nscrofula\\nscrofulas\\nscroggier\\nscroggiest\\nscroggy\\nscroll\\nscrolls\\nscrooge\\nscrooges\\nscroop\\nscrooped\\nscrooping\\nscroops\\nscrota\\nscrotal\\nscrotum\\nscrotums\\nscrouge\\nscrouged\\nscrouges\\nscrouging\\nscrounge\\nscrounged\\nscrounges\\nscroungier\\nscroungiest\\nscrounging\\nscroungy\\nscrub\\nscrubbed\\nscrubber\\nscrubbers\\nscrubbier\\nscrubbiest\\nscrubbing\\nscrubby\\nscrubs\\nscruff\\nscruffier\\nscruffiest\\nscruffs\\nscruffy\\nscrum\\nscrums\\nscrunch\\nscrunched\\nscrunches\\nscrunching\\nscruple\\nscrupled\\nscruples\\nscrupling\\nscrupulous\\nscrupulously\\nscrutinies\\nscrutinize\\nscrutinized\\nscrutinizes\\nscrutinizing\\nscrutiny\\nscuba\\nscubas\\nscud\\nscudded\\nscudding\\nscudi\\nscudo\\nscuds\\nscuff\\nscuffed\\nscuffing\\nscuffle\\nscuffled\\nscuffler\\nscufflers\\nscuffles\\nscuffling\\nscuffs\\nsculk\\nsculked\\nsculker\\nsculkers\\nsculking\\nsculks\\nscull\\nsculled\\nsculler\\nsculleries\\nscullers\\nscullery\\nsculling\\nscullion\\nscullions\\nsculls\\nsculp\\nsculped\\nsculpin\\nsculping\\nsculpins\\nsculps\\nsculpt\\nsculpted\\nsculpting\\nsculptor\\nsculptors\\nsculpts\\nsculptural\\nsculpture\\nsculptured\\nsculptures\\nsculpturing\\nscum\\nscumble\\nscumbled\\nscumbles\\nscumbling\\nscumlike\\nscummed\\nscummer\\nscummers\\nscummier\\nscummiest\\nscumming\\nscummy\\nscums\\nscunner\\nscunnered\\nscunnering\\nscunners\\nscup\\nscuppaug\\nscuppaugs\\nscupper\\nscuppered\\nscuppering\\nscuppers\\nscups\\nscurf\\nscurfier\\nscurfiest\\nscurfs\\nscurfy\\nscurried\\nscurries\\nscurril\\nscurrile\\nscurrilous\\nscurry\\nscurrying\\nscurvier\\nscurvies\\nscurviest\\nscurvily\\nscurvy\\nscut\\nscuta\\nscutage\\nscutages\\nscutate\\nscutch\\nscutched\\nscutcher\\nscutchers\\nscutches\\nscutching\\nscute\\nscutella\\nscutes\\nscuts\\nscutter\\nscuttered\\nscuttering\\nscutters\\nscuttle\\nscuttled\\nscuttles\\nscuttling\\nscutum\\nscyphate\\nscythe\\nscythed\\nscythes\\nscything\\nsea\\nseabag\\nseabags\\nseabeach\\nseabeaches\\nseabed\\nseabeds\\nseabird\\nseabirds\\nseaboard\\nseaboards\\nseaboot\\nseaboots\\nseaborne\\nseacoast\\nseacoasts\\nseacock\\nseacocks\\nseacraft\\nseacrafts\\nseadog\\nseadogs\\nseadrome\\nseadromes\\nseafarer\\nseafarers\\nseafaring\\nseafarings\\nseafloor\\nseafloors\\nseafood\\nseafoods\\nseafowl\\nseafowls\\nseafront\\nseafronts\\nseagirt\\nseagoing\\nseal\\nsealable\\nsealant\\nsealants\\nsealed\\nsealer\\nsealeries\\nsealers\\nsealery\\nsealing\\nseallike\\nseals\\nsealskin\\nsealskins\\nseam\\nseaman\\nseamanly\\nseamanship\\nseamanships\\nseamark\\nseamarks\\nseamed\\nseamen\\nseamer\\nseamers\\nseamier\\nseamiest\\nseaming\\nseamless\\nseamlike\\nseamount\\nseamounts\\nseams\\nseamster\\nseamsters\\nseamstress\\nseamstresses\\nseamy\\nseance\\nseances\\nseapiece\\nseapieces\\nseaplane\\nseaplanes\\nseaport\\nseaports\\nseaquake\\nseaquakes\\nsear\\nsearch\\nsearched\\nsearcher\\nsearchers\\nsearches\\nsearching\\nsearchlight\\nsearchlights\\nseared\\nsearer\\nsearest\\nsearing\\nsears\\nseas\\nseascape\\nseascapes\\nseascout\\nseascouts\\nseashell\\nseashells\\nseashore\\nseashores\\nseasick\\nseasickness\\nseasicknesses\\nseaside\\nseasides\\nseason\\nseasonable\\nseasonably\\nseasonal\\nseasonally\\nseasoned\\nseasoner\\nseasoners\\nseasoning\\nseasons\\nseat\\nseated\\nseater\\nseaters\\nseating\\nseatings\\nseatless\\nseatmate\\nseatmates\\nseatrain\\nseatrains\\nseats\\nseatwork\\nseatworks\\nseawall\\nseawalls\\nseawan\\nseawans\\nseawant\\nseawants\\nseaward\\nseawards\\nseaware\\nseawares\\nseawater\\nseawaters\\nseaway\\nseaways\\nseaweed\\nseaweeds\\nseaworthy\\nsebacic\\nsebasic\\nsebum\\nsebums\\nsec\\nsecant\\nsecantly\\nsecants\\nsecateur\\nsecateurs\\nsecco\\nseccos\\nsecede\\nseceded\\nseceder\\nseceders\\nsecedes\\nseceding\\nsecern\\nsecerned\\nsecerning\\nsecerns\\nseclude\\nsecluded\\nsecludes\\nsecluding\\nseclusion\\nseclusions\\nsecond\\nsecondary\\nseconde\\nseconded\\nseconder\\nseconders\\nsecondes\\nsecondhand\\nsecondi\\nseconding\\nsecondly\\nsecondo\\nseconds\\nsecpar\\nsecpars\\nsecrecies\\nsecrecy\\nsecret\\nsecretarial\\nsecretariat\\nsecretariats\\nsecretaries\\nsecretary\\nsecrete\\nsecreted\\nsecreter\\nsecretes\\nsecretest\\nsecretin\\nsecreting\\nsecretins\\nsecretion\\nsecretions\\nsecretive\\nsecretly\\nsecretor\\nsecretors\\nsecrets\\nsecs\\nsect\\nsectarian\\nsectarians\\nsectaries\\nsectary\\nsectile\\nsection\\nsectional\\nsectioned\\nsectioning\\nsections\\nsector\\nsectoral\\nsectored\\nsectoring\\nsectors\\nsects\\nsecular\\nseculars\\nsecund\\nsecundly\\nsecundum\\nsecure\\nsecured\\nsecurely\\nsecurer\\nsecurers\\nsecures\\nsecurest\\nsecuring\\nsecurities\\nsecurity\\nsedan\\nsedans\\nsedarim\\nsedate\\nsedated\\nsedately\\nsedater\\nsedates\\nsedatest\\nsedating\\nsedation\\nsedations\\nsedative\\nsedatives\\nsedentary\\nseder\\nseders\\nsederunt\\nsederunts\\nsedge\\nsedges\\nsedgier\\nsedgiest\\nsedgy\\nsedile\\nsedilia\\nsedilium\\nsediment\\nsedimentary\\nsedimentation\\nsedimentations\\nsedimented\\nsedimenting\\nsediments\\nsedition\\nseditions\\nseditious\\nseduce\\nseduced\\nseducer\\nseducers\\nseduces\\nseducing\\nseducive\\nseduction\\nseductions\\nseductive\\nsedulities\\nsedulity\\nsedulous\\nsedum\\nsedums\\nsee\\nseeable\\nseecatch\\nseecatchie\\nseed\\nseedbed\\nseedbeds\\nseedcake\\nseedcakes\\nseedcase\\nseedcases\\nseeded\\nseeder\\nseeders\\nseedier\\nseediest\\nseedily\\nseeding\\nseedless\\nseedlike\\nseedling\\nseedlings\\nseedman\\nseedmen\\nseedpod\\nseedpods\\nseeds\\nseedsman\\nseedsmen\\nseedtime\\nseedtimes\\nseedy\\nseeing\\nseeings\\nseek\\nseeker\\nseekers\\nseeking\\nseeks\\nseel\\nseeled\\nseeling\\nseels\\nseely\\nseem\\nseemed\\nseemer\\nseemers\\nseeming\\nseemingly\\nseemings\\nseemlier\\nseemliest\\nseemly\\nseems\\nseen\\nseep\\nseepage\\nseepages\\nseeped\\nseepier\\nseepiest\\nseeping\\nseeps\\nseepy\\nseer\\nseeress\\nseeresses\\nseers\\nseersucker\\nseersuckers\\nsees\\nseesaw\\nseesawed\\nseesawing\\nseesaws\\nseethe\\nseethed\\nseethes\\nseething\\nsegetal\\nseggar\\nseggars\\nsegment\\nsegmented\\nsegmenting\\nsegments\\nsegni\\nsegno\\nsegnos\\nsego\\nsegos\\nsegregate\\nsegregated\\nsegregates\\nsegregating\\nsegregation\\nsegregations\\nsegue\\nsegued\\nsegueing\\nsegues\\nsei\\nseicento\\nseicentos\\nseiche\\nseiches\\nseidel\\nseidels\\nseigneur\\nseigneurs\\nseignior\\nseigniors\\nseignories\\nseignory\\nseine\\nseined\\nseiner\\nseiners\\nseines\\nseining\\nseis\\nseisable\\nseise\\nseised\\nseiser\\nseisers\\nseises\\nseisin\\nseising\\nseisings\\nseisins\\nseism\\nseismal\\nseismic\\nseismism\\nseismisms\\nseismograph\\nseismographs\\nseisms\\nseisor\\nseisors\\nseisure\\nseisures\\nseizable\\nseize\\nseized\\nseizer\\nseizers\\nseizes\\nseizin\\nseizing\\nseizings\\nseizins\\nseizor\\nseizors\\nseizure\\nseizures\\nsejant\\nsejeant\\nsel\\nseladang\\nseladangs\\nselah\\nselahs\\nselamlik\\nselamliks\\nselcouth\\nseldom\\nseldomly\\nselect\\nselected\\nselectee\\nselectees\\nselecting\\nselection\\nselections\\nselective\\nselectly\\nselectman\\nselectmen\\nselector\\nselectors\\nselects\\nselenate\\nselenates\\nselenic\\nselenide\\nselenides\\nselenite\\nselenites\\nselenium\\nseleniums\\nselenous\\nself\\nselfdom\\nselfdoms\\nselfed\\nselfheal\\nselfheals\\nselfhood\\nselfhoods\\nselfing\\nselfish\\nselfishly\\nselfishness\\nselfishnesses\\nselfless\\nselflessness\\nselflessnesses\\nselfness\\nselfnesses\\nselfs\\nselfsame\\nselfward\\nsell\\nsellable\\nselle\\nseller\\nsellers\\nselles\\nselling\\nsellout\\nsellouts\\nsells\\nsels\\nselsyn\\nselsyns\\nseltzer\\nseltzers\\nselvage\\nselvaged\\nselvages\\nselvedge\\nselvedges\\nselves\\nsemantic\\nsemantics\\nsemaphore\\nsemaphores\\nsematic\\nsemblance\\nsemblances\\nseme\\nsememe\\nsememes\\nsemen\\nsemens\\nsemes\\nsemester\\nsemesters\\nsemi\\nsemiarid\\nsemibald\\nsemicolon\\nsemicolons\\nsemicoma\\nsemicomas\\nsemiconductor\\nsemiconductors\\nsemideaf\\nsemidome\\nsemidomes\\nsemidry\\nsemifinal\\nsemifinalist\\nsemifinalists\\nsemifinals\\nsemifit\\nsemiformal\\nsemigala\\nsemihard\\nsemihigh\\nsemihobo\\nsemihoboes\\nsemihobos\\nsemilog\\nsemimat\\nsemimatt\\nsemimute\\nsemina\\nseminal\\nseminar\\nseminarian\\nseminarians\\nseminaries\\nseminars\\nseminary\\nseminude\\nsemioses\\nsemiosis\\nsemiotic\\nsemiotics\\nsemipro\\nsemipros\\nsemiraw\\nsemis\\nsemises\\nsemisoft\\nsemitist\\nsemitists\\nsemitone\\nsemitones\\nsemiwild\\nsemolina\\nsemolinas\\nsemple\\nsemplice\\nsempre\\nsen\\nsenarii\\nsenarius\\nsenary\\nsenate\\nsenates\\nsenator\\nsenatorial\\nsenators\\nsend\\nsendable\\nsendal\\nsendals\\nsender\\nsenders\\nsending\\nsendoff\\nsendoffs\\nsends\\nseneca\\nsenecas\\nsenecio\\nsenecios\\nsenega\\nsenegas\\nsengi\\nsenhor\\nsenhora\\nsenhoras\\nsenhores\\nsenhors\\nsenile\\nsenilely\\nseniles\\nsenilities\\nsenility\\nsenior\\nseniorities\\nseniority\\nseniors\\nseniti\\nsenna\\nsennas\\nsennet\\nsennets\\nsennight\\nsennights\\nsennit\\nsennits\\nsenopia\\nsenopias\\nsenor\\nsenora\\nsenoras\\nsenores\\nsenorita\\nsenoritas\\nsenors\\nsensa\\nsensate\\nsensated\\nsensates\\nsensating\\nsensation\\nsensational\\nsensations\\nsense\\nsensed\\nsenseful\\nsenseless\\nsenselessly\\nsenses\\nsensibilities\\nsensibility\\nsensible\\nsensibler\\nsensibles\\nsensiblest\\nsensibly\\nsensilla\\nsensing\\nsensitive\\nsensitiveness\\nsensitivenesses\\nsensitivities\\nsensitivity\\nsensitize\\nsensitized\\nsensitizes\\nsensitizing\\nsensor\\nsensoria\\nsensors\\nsensory\\nsensual\\nsensualist\\nsensualists\\nsensualities\\nsensuality\\nsensually\\nsensum\\nsensuous\\nsensuously\\nsensuousness\\nsensuousnesses\\nsent\\nsentence\\nsentenced\\nsentences\\nsentencing\\nsententious\\nsenti\\nsentient\\nsentients\\nsentiment\\nsentimental\\nsentimentalism\\nsentimentalisms\\nsentimentalist\\nsentimentalists\\nsentimentalize\\nsentimentalized\\nsentimentalizes\\nsentimentalizing\\nsentimentally\\nsentiments\\nsentinel\\nsentineled\\nsentineling\\nsentinelled\\nsentinelling\\nsentinels\\nsentries\\nsentry\\nsepal\\nsepaled\\nsepaline\\nsepalled\\nsepaloid\\nsepalous\\nsepals\\nseparable\\nseparate\\nseparated\\nseparately\\nseparates\\nseparating\\nseparation\\nseparations\\nseparator\\nseparators\\nsepia\\nsepias\\nsepic\\nsepoy\\nsepoys\\nseppuku\\nseppukus\\nsepses\\nsepsis\\nsept\\nsepta\\nseptal\\nseptaria\\nseptate\\nseptember\\nseptet\\nseptets\\nseptette\\nseptettes\\nseptic\\nseptical\\nseptics\\nseptime\\nseptimes\\nsepts\\nseptum\\nseptuple\\nseptupled\\nseptuples\\nseptupling\\nsepulcher\\nsepulchers\\nsepulchral\\nsepulchre\\nsepulchres\\nsequel\\nsequela\\nsequelae\\nsequels\\nsequence\\nsequenced\\nsequences\\nsequencies\\nsequencing\\nsequency\\nsequent\\nsequential\\nsequentially\\nsequents\\nsequester\\nsequestered\\nsequestering\\nsequesters\\nsequin\\nsequined\\nsequins\\nsequitur\\nsequiturs\\nsequoia\\nsequoias\\nser\\nsera\\nserac\\nseracs\\nseraglio\\nseraglios\\nserai\\nserail\\nserails\\nserais\\nseral\\nserape\\nserapes\\nseraph\\nseraphic\\nseraphim\\nseraphims\\nseraphin\\nseraphs\\nserdab\\nserdabs\\nsere\\nsered\\nserein\\nsereins\\nserenade\\nserenaded\\nserenades\\nserenading\\nserenata\\nserenatas\\nserenate\\nserendipitous\\nserendipity\\nserene\\nserenely\\nserener\\nserenes\\nserenest\\nserenities\\nserenity\\nserer\\nseres\\nserest\\nserf\\nserfage\\nserfages\\nserfdom\\nserfdoms\\nserfhood\\nserfhoods\\nserfish\\nserflike\\nserfs\\nserge\\nsergeant\\nsergeants\\nserges\\nserging\\nsergings\\nserial\\nserially\\nserials\\nseriate\\nseriated\\nseriates\\nseriatim\\nseriating\\nsericin\\nsericins\\nseriema\\nseriemas\\nseries\\nserif\\nserifs\\nserin\\nserine\\nserines\\nsering\\nseringa\\nseringas\\nserins\\nserious\\nseriously\\nseriousness\\nseriousnesses\\nserjeant\\nserjeants\\nsermon\\nsermonic\\nsermons\\nserologies\\nserology\\nserosa\\nserosae\\nserosal\\nserosas\\nserosities\\nserosity\\nserotine\\nserotines\\nserotype\\nserotypes\\nserous\\nserow\\nserows\\nserpent\\nserpentine\\nserpents\\nserpigines\\nserpigo\\nserpigoes\\nserranid\\nserranids\\nserrate\\nserrated\\nserrates\\nserrating\\nserried\\nserries\\nserry\\nserrying\\nsers\\nserum\\nserumal\\nserums\\nservable\\nserval\\nservals\\nservant\\nservants\\nserve\\nserved\\nserver\\nservers\\nserves\\nservice\\nserviceable\\nserviced\\nserviceman\\nservicemen\\nservicer\\nservicers\\nservices\\nservicing\\nservile\\nservilities\\nservility\\nserving\\nservings\\nservitor\\nservitors\\nservitude\\nservitudes\\nservo\\nservos\\nsesame\\nsesames\\nsesamoid\\nsesamoids\\nsessile\\nsession\\nsessions\\nsesspool\\nsesspools\\nsesterce\\nsesterces\\nsestet\\nsestets\\nsestina\\nsestinas\\nsestine\\nsestines\\nset\\nseta\\nsetae\\nsetal\\nsetback\\nsetbacks\\nsetiform\\nsetline\\nsetlines\\nsetoff\\nsetoffs\\nseton\\nsetons\\nsetose\\nsetous\\nsetout\\nsetouts\\nsets\\nsetscrew\\nsetscrews\\nsettee\\nsettees\\nsetter\\nsetters\\nsetting\\nsettings\\nsettle\\nsettled\\nsettlement\\nsettlements\\nsettler\\nsettlers\\nsettles\\nsettling\\nsettlings\\nsettlor\\nsettlors\\nsetulose\\nsetulous\\nsetup\\nsetups\\nseven\\nsevens\\nseventeen\\nseventeens\\nseventeenth\\nseventeenths\\nseventh\\nsevenths\\nseventies\\nseventieth\\nseventieths\\nseventy\\nsever\\nseveral\\nseverals\\nseverance\\nseverances\\nsevere\\nsevered\\nseverely\\nseverer\\nseverest\\nsevering\\nseverities\\nseverity\\nsevers\\nsew\\nsewage\\nsewages\\nsewan\\nsewans\\nsewar\\nsewars\\nsewed\\nsewer\\nsewerage\\nsewerages\\nsewers\\nsewing\\nsewings\\nsewn\\nsews\\nsex\\nsexed\\nsexes\\nsexier\\nsexiest\\nsexily\\nsexiness\\nsexinesses\\nsexing\\nsexism\\nsexisms\\nsexist\\nsexists\\nsexless\\nsexologies\\nsexology\\nsexpot\\nsexpots\\nsext\\nsextain\\nsextains\\nsextan\\nsextans\\nsextant\\nsextants\\nsextarii\\nsextet\\nsextets\\nsextette\\nsextettes\\nsextile\\nsextiles\\nsexto\\nsexton\\nsextons\\nsextos\\nsexts\\nsextuple\\nsextupled\\nsextuples\\nsextupling\\nsextuply\\nsexual\\nsexualities\\nsexuality\\nsexually\\nsexy\\nsferics\\nsforzato\\nsforzatos\\nsfumato\\nsfumatos\\nsh\\nshabbier\\nshabbiest\\nshabbily\\nshabbiness\\nshabbinesses\\nshabby\\nshack\\nshackle\\nshackled\\nshackler\\nshacklers\\nshackles\\nshackling\\nshacko\\nshackoes\\nshackos\\nshacks\\nshad\\nshadblow\\nshadblows\\nshadbush\\nshadbushes\\nshadchan\\nshadchanim\\nshadchans\\nshaddock\\nshaddocks\\nshade\\nshaded\\nshader\\nshaders\\nshades\\nshadflies\\nshadfly\\nshadier\\nshadiest\\nshadily\\nshading\\nshadings\\nshadoof\\nshadoofs\\nshadow\\nshadowed\\nshadower\\nshadowers\\nshadowier\\nshadowiest\\nshadowing\\nshadows\\nshadowy\\nshadrach\\nshadrachs\\nshads\\nshaduf\\nshadufs\\nshady\\nshaft\\nshafted\\nshafting\\nshaftings\\nshafts\\nshag\\nshagbark\\nshagbarks\\nshagged\\nshaggier\\nshaggiest\\nshaggily\\nshagging\\nshaggy\\nshagreen\\nshagreens\\nshags\\nshah\\nshahdom\\nshahdoms\\nshahs\\nshaird\\nshairds\\nshairn\\nshairns\\nshaitan\\nshaitans\\nshakable\\nshake\\nshaken\\nshakeout\\nshakeouts\\nshaker\\nshakers\\nshakes\\nshakeup\\nshakeups\\nshakier\\nshakiest\\nshakily\\nshakiness\\nshakinesses\\nshaking\\nshako\\nshakoes\\nshakos\\nshaky\\nshale\\nshaled\\nshales\\nshalier\\nshaliest\\nshall\\nshalloon\\nshalloons\\nshallop\\nshallops\\nshallot\\nshallots\\nshallow\\nshallowed\\nshallower\\nshallowest\\nshallowing\\nshallows\\nshalom\\nshalt\\nshaly\\nsham\\nshamable\\nshaman\\nshamanic\\nshamans\\nshamble\\nshambled\\nshambles\\nshambling\\nshame\\nshamed\\nshamefaced\\nshameful\\nshamefully\\nshameless\\nshamelessly\\nshames\\nshaming\\nshammas\\nshammash\\nshammashim\\nshammasim\\nshammed\\nshammer\\nshammers\\nshammes\\nshammied\\nshammies\\nshamming\\nshammos\\nshammosim\\nshammy\\nshammying\\nshamois\\nshamosim\\nshamoy\\nshamoyed\\nshamoying\\nshamoys\\nshampoo\\nshampooed\\nshampooing\\nshampoos\\nshamrock\\nshamrocks\\nshams\\nshamus\\nshamuses\\nshandies\\nshandy\\nshanghai\\nshanghaied\\nshanghaiing\\nshanghais\\nshank\\nshanked\\nshanking\\nshanks\\nshantey\\nshanteys\\nshanti\\nshanties\\nshantih\\nshantihs\\nshantis\\nshantung\\nshantungs\\nshanty\\nshapable\\nshape\\nshaped\\nshapeless\\nshapelier\\nshapeliest\\nshapely\\nshapen\\nshaper\\nshapers\\nshapes\\nshapeup\\nshapeups\\nshaping\\nsharable\\nshard\\nshards\\nshare\\nsharecrop\\nsharecroped\\nsharecroping\\nsharecropper\\nsharecroppers\\nsharecrops\\nshared\\nshareholder\\nshareholders\\nsharer\\nsharers\\nshares\\nsharif\\nsharifs\\nsharing\\nshark\\nsharked\\nsharker\\nsharkers\\nsharking\\nsharks\\nsharn\\nsharns\\nsharny\\nsharp\\nsharped\\nsharpen\\nsharpened\\nsharpener\\nsharpeners\\nsharpening\\nsharpens\\nsharper\\nsharpers\\nsharpest\\nsharpie\\nsharpies\\nsharping\\nsharply\\nsharpness\\nsharpnesses\\nsharps\\nsharpshooter\\nsharpshooters\\nsharpshooting\\nsharpshootings\\nsharpy\\nshashlik\\nshashliks\\nshaslik\\nshasliks\\nshat\\nshatter\\nshattered\\nshattering\\nshatters\\nshaugh\\nshaughs\\nshaul\\nshauled\\nshauling\\nshauls\\nshavable\\nshave\\nshaved\\nshaven\\nshaver\\nshavers\\nshaves\\nshavie\\nshavies\\nshaving\\nshavings\\nshaw\\nshawed\\nshawing\\nshawl\\nshawled\\nshawling\\nshawls\\nshawm\\nshawms\\nshawn\\nshaws\\nshay\\nshays\\nshe\\nshea\\nsheaf\\nsheafed\\nsheafing\\nsheafs\\nsheal\\nshealing\\nshealings\\nsheals\\nshear\\nsheared\\nshearer\\nshearers\\nshearing\\nshears\\nsheas\\nsheath\\nsheathe\\nsheathed\\nsheather\\nsheathers\\nsheathes\\nsheathing\\nsheaths\\nsheave\\nsheaved\\nsheaves\\nsheaving\\nshebang\\nshebangs\\nshebean\\nshebeans\\nshebeen\\nshebeens\\nshed\\nshedable\\nshedded\\nshedder\\nshedders\\nshedding\\nsheds\\nsheen\\nsheened\\nsheeney\\nsheeneys\\nsheenful\\nsheenie\\nsheenier\\nsheenies\\nsheeniest\\nsheening\\nsheens\\nsheeny\\nsheep\\nsheepdog\\nsheepdogs\\nsheepish\\nsheepman\\nsheepmen\\nsheepskin\\nsheepskins\\nsheer\\nsheered\\nsheerer\\nsheerest\\nsheering\\nsheerly\\nsheers\\nsheet\\nsheeted\\nsheeter\\nsheeters\\nsheetfed\\nsheeting\\nsheetings\\nsheets\\nsheeve\\nsheeves\\nshegetz\\nsheik\\nsheikdom\\nsheikdoms\\nsheikh\\nsheikhdom\\nsheikhdoms\\nsheikhs\\nsheiks\\nsheitan\\nsheitans\\nshekel\\nshekels\\nshelduck\\nshelducks\\nshelf\\nshelfful\\nshelffuls\\nshell\\nshellac\\nshellack\\nshellacked\\nshellacking\\nshellackings\\nshellacks\\nshellacs\\nshelled\\nsheller\\nshellers\\nshellfish\\nshellfishes\\nshellier\\nshelliest\\nshelling\\nshells\\nshelly\\nshelter\\nsheltered\\nsheltering\\nshelters\\nsheltie\\nshelties\\nshelty\\nshelve\\nshelved\\nshelver\\nshelvers\\nshelves\\nshelvier\\nshelviest\\nshelving\\nshelvings\\nshelvy\\nshenanigans\\nshend\\nshending\\nshends\\nshent\\nsheol\\nsheols\\nshepherd\\nshepherded\\nshepherdess\\nshepherdesses\\nshepherding\\nshepherds\\nsherbert\\nsherberts\\nsherbet\\nsherbets\\nsherd\\nsherds\\nshereef\\nshereefs\\nsherif\\nsheriff\\nsheriffs\\nsherifs\\nsherlock\\nsherlocks\\nsheroot\\nsheroots\\nsherries\\nsherris\\nsherrises\\nsherry\\nshes\\nshetland\\nshetlands\\nsheuch\\nsheuchs\\nsheugh\\nsheughs\\nshew\\nshewed\\nshewer\\nshewers\\nshewing\\nshewn\\nshews\\nshh\\nshibah\\nshibahs\\nshicksa\\nshicksas\\nshied\\nshiel\\nshield\\nshielded\\nshielder\\nshielders\\nshielding\\nshields\\nshieling\\nshielings\\nshiels\\nshier\\nshiers\\nshies\\nshiest\\nshift\\nshifted\\nshifter\\nshifters\\nshiftier\\nshiftiest\\nshiftily\\nshifting\\nshiftless\\nshiftlessness\\nshiftlessnesses\\nshifts\\nshifty\\nshigella\\nshigellae\\nshigellas\\nshikar\\nshikaree\\nshikarees\\nshikari\\nshikaris\\nshikarred\\nshikarring\\nshikars\\nshiksa\\nshiksas\\nshikse\\nshikses\\nshilingi\\nshill\\nshillala\\nshillalas\\nshilled\\nshillelagh\\nshillelaghs\\nshilling\\nshillings\\nshills\\nshilpit\\nshily\\nshim\\nshimmed\\nshimmer\\nshimmered\\nshimmering\\nshimmers\\nshimmery\\nshimmied\\nshimmies\\nshimming\\nshimmy\\nshimmying\\nshims\\nshin\\nshinbone\\nshinbones\\nshindies\\nshindig\\nshindigs\\nshindy\\nshindys\\nshine\\nshined\\nshiner\\nshiners\\nshines\\nshingle\\nshingled\\nshingler\\nshinglers\\nshingles\\nshingling\\nshingly\\nshinier\\nshiniest\\nshinily\\nshining\\nshinleaf\\nshinleafs\\nshinleaves\\nshinned\\nshinneries\\nshinnery\\nshinney\\nshinneys\\nshinnied\\nshinnies\\nshinning\\nshinny\\nshinnying\\nshins\\nshiny\\nship\\nshipboard\\nshipboards\\nshipbuilder\\nshipbuilders\\nshiplap\\nshiplaps\\nshipload\\nshiploads\\nshipman\\nshipmate\\nshipmates\\nshipmen\\nshipment\\nshipments\\nshipped\\nshippen\\nshippens\\nshipper\\nshippers\\nshipping\\nshippings\\nshippon\\nshippons\\nships\\nshipshape\\nshipside\\nshipsides\\nshipway\\nshipways\\nshipworm\\nshipworms\\nshipwreck\\nshipwrecked\\nshipwrecking\\nshipwrecks\\nshipyard\\nshipyards\\nshire\\nshires\\nshirk\\nshirked\\nshirker\\nshirkers\\nshirking\\nshirks\\nshirr\\nshirred\\nshirring\\nshirrings\\nshirrs\\nshirt\\nshirtier\\nshirtiest\\nshirting\\nshirtings\\nshirtless\\nshirts\\nshirty\\nshist\\nshists\\nshiv\\nshiva\\nshivah\\nshivahs\\nshivaree\\nshivareed\\nshivareeing\\nshivarees\\nshivas\\nshive\\nshiver\\nshivered\\nshiverer\\nshiverers\\nshivering\\nshivers\\nshivery\\nshives\\nshivs\\nshkotzim\\nshlemiel\\nshlemiels\\nshlock\\nshlocks\\nshmo\\nshmoes\\nshnaps\\nshoal\\nshoaled\\nshoaler\\nshoalest\\nshoalier\\nshoaliest\\nshoaling\\nshoals\\nshoaly\\nshoat\\nshoats\\nshock\\nshocked\\nshocker\\nshockers\\nshocking\\nshockproof\\nshocks\\nshod\\nshodden\\nshoddier\\nshoddies\\nshoddiest\\nshoddily\\nshoddiness\\nshoddinesses\\nshoddy\\nshoe\\nshoebill\\nshoebills\\nshoed\\nshoehorn\\nshoehorned\\nshoehorning\\nshoehorns\\nshoeing\\nshoelace\\nshoelaces\\nshoemaker\\nshoemakers\\nshoepac\\nshoepack\\nshoepacks\\nshoepacs\\nshoer\\nshoers\\nshoes\\nshoetree\\nshoetrees\\nshofar\\nshofars\\nshofroth\\nshog\\nshogged\\nshogging\\nshogs\\nshogun\\nshogunal\\nshoguns\\nshoji\\nshojis\\nsholom\\nshone\\nshoo\\nshooed\\nshooflies\\nshoofly\\nshooing\\nshook\\nshooks\\nshool\\nshooled\\nshooling\\nshools\\nshoon\\nshoos\\nshoot\\nshooter\\nshooters\\nshooting\\nshootings\\nshoots\\nshop\\nshopboy\\nshopboys\\nshopgirl\\nshopgirls\\nshophar\\nshophars\\nshophroth\\nshopkeeper\\nshopkeepers\\nshoplift\\nshoplifted\\nshoplifter\\nshoplifters\\nshoplifting\\nshoplifts\\nshopman\\nshopmen\\nshoppe\\nshopped\\nshopper\\nshoppers\\nshoppes\\nshopping\\nshoppings\\nshops\\nshoptalk\\nshoptalks\\nshopworn\\nshoran\\nshorans\\nshore\\nshorebird\\nshorebirds\\nshored\\nshoreless\\nshores\\nshoring\\nshorings\\nshorl\\nshorls\\nshorn\\nshort\\nshortage\\nshortages\\nshortcake\\nshortcakes\\nshortchange\\nshortchanged\\nshortchanges\\nshortchanging\\nshortcoming\\nshortcomings\\nshortcut\\nshortcuts\\nshorted\\nshorten\\nshortened\\nshortening\\nshortens\\nshorter\\nshortest\\nshorthand\\nshorthands\\nshortia\\nshortias\\nshortie\\nshorties\\nshorting\\nshortish\\nshortliffe\\nshortly\\nshortness\\nshortnesses\\nshorts\\nshortsighted\\nshorty\\nshot\\nshote\\nshotes\\nshotgun\\nshotgunned\\nshotgunning\\nshotguns\\nshots\\nshott\\nshotted\\nshotten\\nshotting\\nshotts\\nshould\\nshoulder\\nshouldered\\nshouldering\\nshoulders\\nshouldest\\nshouldst\\nshout\\nshouted\\nshouter\\nshouters\\nshouting\\nshouts\\nshove\\nshoved\\nshovel\\nshoveled\\nshoveler\\nshovelers\\nshoveling\\nshovelled\\nshovelling\\nshovels\\nshover\\nshovers\\nshoves\\nshoving\\nshow\\nshowboat\\nshowboats\\nshowcase\\nshowcased\\nshowcases\\nshowcasing\\nshowdown\\nshowdowns\\nshowed\\nshower\\nshowered\\nshowering\\nshowers\\nshowery\\nshowgirl\\nshowgirls\\nshowier\\nshowiest\\nshowily\\nshowiness\\nshowinesses\\nshowing\\nshowings\\nshowman\\nshowmen\\nshown\\nshowoff\\nshowoffs\\nshowroom\\nshowrooms\\nshows\\nshowy\\nshrank\\nshrapnel\\nshred\\nshredded\\nshredder\\nshredders\\nshredding\\nshreds\\nshrew\\nshrewd\\nshrewder\\nshrewdest\\nshrewdly\\nshrewdness\\nshrewdnesses\\nshrewed\\nshrewing\\nshrewish\\nshrews\\nshri\\nshriek\\nshrieked\\nshrieker\\nshriekers\\nshriekier\\nshriekiest\\nshrieking\\nshrieks\\nshrieky\\nshrieval\\nshrieve\\nshrieved\\nshrieves\\nshrieving\\nshrift\\nshrifts\\nshrike\\nshrikes\\nshrill\\nshrilled\\nshriller\\nshrillest\\nshrilling\\nshrills\\nshrilly\\nshrimp\\nshrimped\\nshrimper\\nshrimpers\\nshrimpier\\nshrimpiest\\nshrimping\\nshrimps\\nshrimpy\\nshrine\\nshrined\\nshrines\\nshrining\\nshrink\\nshrinkable\\nshrinkage\\nshrinkages\\nshrinker\\nshrinkers\\nshrinking\\nshrinks\\nshris\\nshrive\\nshrived\\nshrivel\\nshriveled\\nshriveling\\nshrivelled\\nshrivelling\\nshrivels\\nshriven\\nshriver\\nshrivers\\nshrives\\nshriving\\nshroff\\nshroffed\\nshroffing\\nshroffs\\nshroud\\nshrouded\\nshrouding\\nshrouds\\nshrove\\nshrub\\nshrubberies\\nshrubbery\\nshrubbier\\nshrubbiest\\nshrubby\\nshrubs\\nshrug\\nshrugged\\nshrugging\\nshrugs\\nshrunk\\nshrunken\\nshtetel\\nshtetl\\nshtetlach\\nshtick\\nshticks\\nshuck\\nshucked\\nshucker\\nshuckers\\nshucking\\nshuckings\\nshucks\\nshudder\\nshuddered\\nshuddering\\nshudders\\nshuddery\\nshuffle\\nshuffleboard\\nshuffleboards\\nshuffled\\nshuffler\\nshufflers\\nshuffles\\nshuffling\\nshul\\nshuln\\nshuls\\nshun\\nshunned\\nshunner\\nshunners\\nshunning\\nshunpike\\nshunpikes\\nshuns\\nshunt\\nshunted\\nshunter\\nshunters\\nshunting\\nshunts\\nshush\\nshushed\\nshushes\\nshushing\\nshut\\nshutdown\\nshutdowns\\nshute\\nshuted\\nshutes\\nshuteye\\nshuteyes\\nshuting\\nshutoff\\nshutoffs\\nshutout\\nshutouts\\nshuts\\nshutter\\nshuttered\\nshuttering\\nshutters\\nshutting\\nshuttle\\nshuttlecock\\nshuttlecocks\\nshuttled\\nshuttles\\nshuttling\\nshwanpan\\nshwanpans\\nshy\\nshyer\\nshyers\\nshyest\\nshying\\nshylock\\nshylocked\\nshylocking\\nshylocks\\nshyly\\nshyness\\nshynesses\\nshyster\\nshysters\\nsi\\nsial\\nsialic\\nsialoid\\nsials\\nsiamang\\nsiamangs\\nsiamese\\nsiameses\\nsib\\nsibb\\nsibbs\\nsibilant\\nsibilants\\nsibilate\\nsibilated\\nsibilates\\nsibilating\\nsibling\\nsiblings\\nsibs\\nsibyl\\nsibylic\\nsibyllic\\nsibyls\\nsic\\nsiccan\\nsicced\\nsiccing\\nsice\\nsices\\nsick\\nsickbay\\nsickbays\\nsickbed\\nsickbeds\\nsicked\\nsicken\\nsickened\\nsickener\\nsickeners\\nsickening\\nsickens\\nsicker\\nsickerly\\nsickest\\nsicking\\nsickish\\nsickle\\nsickled\\nsickles\\nsicklied\\nsicklier\\nsicklies\\nsickliest\\nsicklily\\nsickling\\nsickly\\nsicklying\\nsickness\\nsicknesses\\nsickroom\\nsickrooms\\nsicks\\nsics\\nsiddur\\nsiddurim\\nsiddurs\\nside\\nsidearm\\nsideband\\nsidebands\\nsideboard\\nsideboards\\nsideburns\\nsidecar\\nsidecars\\nsided\\nsidehill\\nsidehills\\nsidekick\\nsidekicks\\nsideline\\nsidelined\\nsidelines\\nsideling\\nsidelining\\nsidelong\\nsideman\\nsidemen\\nsidereal\\nsiderite\\nsiderites\\nsides\\nsideshow\\nsideshows\\nsideslip\\nsideslipped\\nsideslipping\\nsideslips\\nsidespin\\nsidespins\\nsidestep\\nsidestepped\\nsidestepping\\nsidesteps\\nsideswipe\\nsideswiped\\nsideswipes\\nsideswiping\\nsidetrack\\nsidetracked\\nsidetracking\\nsidetracks\\nsidewalk\\nsidewalks\\nsidewall\\nsidewalls\\nsideward\\nsideway\\nsideways\\nsidewise\\nsiding\\nsidings\\nsidle\\nsidled\\nsidler\\nsidlers\\nsidles\\nsidling\\nsiege\\nsieged\\nsieges\\nsieging\\nsiemens\\nsienite\\nsienites\\nsienna\\nsiennas\\nsierozem\\nsierozems\\nsierra\\nsierran\\nsierras\\nsiesta\\nsiestas\\nsieur\\nsieurs\\nsieva\\nsieve\\nsieved\\nsieves\\nsieving\\nsiffleur\\nsiffleurs\\nsift\\nsifted\\nsifter\\nsifters\\nsifting\\nsiftings\\nsifts\\nsiganid\\nsiganids\\nsigh\\nsighed\\nsigher\\nsighers\\nsighing\\nsighless\\nsighlike\\nsighs\\nsight\\nsighted\\nsighter\\nsighters\\nsighting\\nsightless\\nsightlier\\nsightliest\\nsightly\\nsights\\nsightsaw\\nsightsee\\nsightseeing\\nsightseen\\nsightseer\\nsightseers\\nsightsees\\nsigil\\nsigils\\nsigloi\\nsiglos\\nsigma\\nsigmas\\nsigmate\\nsigmoid\\nsigmoids\\nsign\\nsignal\\nsignaled\\nsignaler\\nsignalers\\nsignaling\\nsignalled\\nsignalling\\nsignally\\nsignals\\nsignatories\\nsignatory\\nsignature\\nsignatures\\nsigned\\nsigner\\nsigners\\nsignet\\nsigneted\\nsigneting\\nsignets\\nsignficance\\nsignficances\\nsignficant\\nsignficantly\\nsignificance\\nsignificances\\nsignificant\\nsignificantly\\nsignification\\nsignifications\\nsignified\\nsignifies\\nsignify\\nsignifying\\nsigning\\nsignior\\nsigniori\\nsigniories\\nsigniors\\nsigniory\\nsignor\\nsignora\\nsignoras\\nsignore\\nsignori\\nsignories\\nsignors\\nsignory\\nsignpost\\nsignposted\\nsignposting\\nsignposts\\nsigns\\nsike\\nsiker\\nsikes\\nsilage\\nsilages\\nsilane\\nsilanes\\nsild\\nsilds\\nsilence\\nsilenced\\nsilencer\\nsilencers\\nsilences\\nsilencing\\nsileni\\nsilent\\nsilenter\\nsilentest\\nsilently\\nsilents\\nsilenus\\nsilesia\\nsilesias\\nsilex\\nsilexes\\nsilhouette\\nsilhouetted\\nsilhouettes\\nsilhouetting\\nsilica\\nsilicas\\nsilicate\\nsilicates\\nsilicic\\nsilicide\\nsilicides\\nsilicified\\nsilicifies\\nsilicify\\nsilicifying\\nsilicium\\nsiliciums\\nsilicle\\nsilicles\\nsilicon\\nsilicone\\nsilicones\\nsilicons\\nsiliqua\\nsiliquae\\nsilique\\nsiliques\\nsilk\\nsilked\\nsilken\\nsilkier\\nsilkiest\\nsilkily\\nsilking\\nsilklike\\nsilks\\nsilkweed\\nsilkweeds\\nsilkworm\\nsilkworms\\nsilky\\nsill\\nsillabub\\nsillabubs\\nsiller\\nsillers\\nsillibib\\nsillibibs\\nsillier\\nsillies\\nsilliest\\nsillily\\nsilliness\\nsillinesses\\nsills\\nsilly\\nsilo\\nsiloed\\nsiloing\\nsilos\\nsiloxane\\nsiloxanes\\nsilt\\nsilted\\nsiltier\\nsiltiest\\nsilting\\nsilts\\nsilty\\nsilurid\\nsilurids\\nsiluroid\\nsiluroids\\nsilva\\nsilvae\\nsilvan\\nsilvans\\nsilvas\\nsilver\\nsilvered\\nsilverer\\nsilverers\\nsilvering\\nsilverly\\nsilvern\\nsilvers\\nsilverware\\nsilverwares\\nsilvery\\nsilvical\\nsilvics\\nsim\\nsima\\nsimar\\nsimars\\nsimaruba\\nsimarubas\\nsimas\\nsimazine\\nsimazines\\nsimian\\nsimians\\nsimilar\\nsimilarities\\nsimilarity\\nsimilarly\\nsimile\\nsimiles\\nsimilitude\\nsimilitudes\\nsimioid\\nsimious\\nsimitar\\nsimitars\\nsimlin\\nsimlins\\nsimmer\\nsimmered\\nsimmering\\nsimmers\\nsimnel\\nsimnels\\nsimoleon\\nsimoleons\\nsimoniac\\nsimoniacs\\nsimonies\\nsimonist\\nsimonists\\nsimonize\\nsimonized\\nsimonizes\\nsimonizing\\nsimony\\nsimoom\\nsimooms\\nsimoon\\nsimoons\\nsimp\\nsimper\\nsimpered\\nsimperer\\nsimperers\\nsimpering\\nsimpers\\nsimple\\nsimpleness\\nsimplenesses\\nsimpler\\nsimples\\nsimplest\\nsimpleton\\nsimpletons\\nsimplex\\nsimplexes\\nsimplices\\nsimplicia\\nsimplicities\\nsimplicity\\nsimplification\\nsimplifications\\nsimplified\\nsimplifies\\nsimplify\\nsimplifying\\nsimplism\\nsimplisms\\nsimply\\nsimps\\nsims\\nsimulant\\nsimulants\\nsimular\\nsimulars\\nsimulate\\nsimulated\\nsimulates\\nsimulating\\nsimulation\\nsimulations\\nsimultaneous\\nsimultaneously\\nsimultaneousness\\nsimultaneousnesses\\nsin\\nsinapism\\nsinapisms\\nsince\\nsincere\\nsincerely\\nsincerer\\nsincerest\\nsincerities\\nsincerity\\nsincipita\\nsinciput\\nsinciputs\\nsine\\nsinecure\\nsinecures\\nsines\\nsinew\\nsinewed\\nsinewing\\nsinews\\nsinewy\\nsinfonia\\nsinfonie\\nsinful\\nsinfully\\nsing\\nsingable\\nsinge\\nsinged\\nsingeing\\nsinger\\nsingers\\nsinges\\nsinging\\nsingle\\nsingled\\nsingleness\\nsinglenesses\\nsingles\\nsinglet\\nsinglets\\nsingling\\nsingly\\nsings\\nsingsong\\nsingsongs\\nsingular\\nsingularities\\nsingularity\\nsingularly\\nsingulars\\nsinh\\nsinhs\\nsinicize\\nsinicized\\nsinicizes\\nsinicizing\\nsinister\\nsink\\nsinkable\\nsinkage\\nsinkages\\nsinker\\nsinkers\\nsinkhole\\nsinkholes\\nsinking\\nsinks\\nsinless\\nsinned\\nsinner\\nsinners\\nsinning\\nsinologies\\nsinology\\nsinopia\\nsinopias\\nsinopie\\nsins\\nsinsyne\\nsinter\\nsintered\\nsintering\\nsinters\\nsinuate\\nsinuated\\nsinuates\\nsinuating\\nsinuous\\nsinuousities\\nsinuousity\\nsinuously\\nsinus\\nsinuses\\nsinusoid\\nsinusoids\\nsip\\nsipe\\nsiped\\nsipes\\nsiphon\\nsiphonal\\nsiphoned\\nsiphonic\\nsiphoning\\nsiphons\\nsiping\\nsipped\\nsipper\\nsippers\\nsippet\\nsippets\\nsipping\\nsips\\nsir\\nsirdar\\nsirdars\\nsire\\nsired\\nsiree\\nsirees\\nsiren\\nsirenian\\nsirenians\\nsirens\\nsires\\nsiring\\nsirloin\\nsirloins\\nsirocco\\nsiroccos\\nsirra\\nsirrah\\nsirrahs\\nsirras\\nsirree\\nsirrees\\nsirs\\nsirup\\nsirups\\nsirupy\\nsirvente\\nsirventes\\nsis\\nsisal\\nsisals\\nsises\\nsiskin\\nsiskins\\nsissier\\nsissies\\nsissiest\\nsissy\\nsissyish\\nsister\\nsistered\\nsisterhood\\nsisterhoods\\nsistering\\nsisterly\\nsisters\\nsistra\\nsistroid\\nsistrum\\nsistrums\\nsit\\nsitar\\nsitarist\\nsitarists\\nsitars\\nsite\\nsited\\nsites\\nsith\\nsithence\\nsithens\\nsiti\\nsiting\\nsitologies\\nsitology\\nsits\\nsitten\\nsitter\\nsitters\\nsitting\\nsittings\\nsituate\\nsituated\\nsituates\\nsituating\\nsituation\\nsituations\\nsitus\\nsituses\\nsitzmark\\nsitzmarks\\nsiver\\nsivers\\nsix\\nsixes\\nsixfold\\nsixmo\\nsixmos\\nsixpence\\nsixpences\\nsixpenny\\nsixte\\nsixteen\\nsixteens\\nsixteenth\\nsixteenths\\nsixtes\\nsixth\\nsixthly\\nsixths\\nsixties\\nsixtieth\\nsixtieths\\nsixty\\nsizable\\nsizably\\nsizar\\nsizars\\nsize\\nsizeable\\nsizeably\\nsized\\nsizer\\nsizers\\nsizes\\nsizier\\nsiziest\\nsiziness\\nsizinesses\\nsizing\\nsizings\\nsizy\\nsizzle\\nsizzled\\nsizzler\\nsizzlers\\nsizzles\\nsizzling\\nskag\\nskags\\nskald\\nskaldic\\nskalds\\nskat\\nskate\\nskated\\nskater\\nskaters\\nskates\\nskating\\nskatings\\nskatol\\nskatole\\nskatoles\\nskatols\\nskats\\nskean\\nskeane\\nskeanes\\nskeans\\nskee\\nskeed\\nskeeing\\nskeen\\nskeens\\nskees\\nskeet\\nskeeter\\nskeeters\\nskeets\\nskeg\\nskegs\\nskeigh\\nskein\\nskeined\\nskeining\\nskeins\\nskeletal\\nskeleton\\nskeletons\\nskellum\\nskellums\\nskelp\\nskelped\\nskelping\\nskelpit\\nskelps\\nskelter\\nskeltered\\nskeltering\\nskelters\\nskene\\nskenes\\nskep\\nskeps\\nskepsis\\nskepsises\\nskeptic\\nskeptical\\nskepticism\\nskepticisms\\nskeptics\\nskerries\\nskerry\\nsketch\\nsketched\\nsketcher\\nsketchers\\nsketches\\nsketchier\\nsketchiest\\nsketching\\nsketchy\\nskew\\nskewback\\nskewbacks\\nskewbald\\nskewbalds\\nskewed\\nskewer\\nskewered\\nskewering\\nskewers\\nskewing\\nskewness\\nskewnesses\\nskews\\nski\\nskiable\\nskiagram\\nskiagrams\\nskibob\\nskibobs\\nskid\\nskidded\\nskidder\\nskidders\\nskiddier\\nskiddiest\\nskidding\\nskiddoo\\nskiddooed\\nskiddooing\\nskiddoos\\nskiddy\\nskidoo\\nskidooed\\nskidooing\\nskidoos\\nskids\\nskidway\\nskidways\\nskied\\nskier\\nskiers\\nskies\\nskiey\\nskiff\\nskiffle\\nskiffled\\nskiffles\\nskiffling\\nskiffs\\nskiing\\nskiings\\nskiis\\nskijorer\\nskijorers\\nskilful\\nskill\\nskilled\\nskilless\\nskillet\\nskillets\\nskillful\\nskillfully\\nskillfulness\\nskillfulnesses\\nskilling\\nskillings\\nskills\\nskim\\nskimmed\\nskimmer\\nskimmers\\nskimming\\nskimmings\\nskimo\\nskimos\\nskimp\\nskimped\\nskimpier\\nskimpiest\\nskimpily\\nskimping\\nskimps\\nskimpy\\nskims\\nskin\\nskinflint\\nskinflints\\nskinful\\nskinfuls\\nskinhead\\nskinheads\\nskink\\nskinked\\nskinker\\nskinkers\\nskinking\\nskinks\\nskinless\\nskinlike\\nskinned\\nskinner\\nskinners\\nskinnier\\nskinniest\\nskinning\\nskinny\\nskins\\nskint\\nskintight\\nskioring\\nskiorings\\nskip\\nskipjack\\nskipjacks\\nskiplane\\nskiplanes\\nskipped\\nskipper\\nskippered\\nskippering\\nskippers\\nskippet\\nskippets\\nskipping\\nskips\\nskirl\\nskirled\\nskirling\\nskirls\\nskirmish\\nskirmished\\nskirmishes\\nskirmishing\\nskirr\\nskirred\\nskirret\\nskirrets\\nskirring\\nskirrs\\nskirt\\nskirted\\nskirter\\nskirters\\nskirting\\nskirtings\\nskirts\\nskis\\nskit\\nskite\\nskited\\nskites\\nskiting\\nskits\\nskitter\\nskittered\\nskitterier\\nskitteriest\\nskittering\\nskitters\\nskittery\\nskittish\\nskittle\\nskittles\\nskive\\nskived\\nskiver\\nskivers\\nskives\\nskiving\\nskivvies\\nskivvy\\nskiwear\\nskiwears\\nsklent\\nsklented\\nsklenting\\nsklents\\nskoal\\nskoaled\\nskoaling\\nskoals\\nskookum\\nskreegh\\nskreeghed\\nskreeghing\\nskreeghs\\nskreigh\\nskreighed\\nskreighing\\nskreighs\\nskua\\nskuas\\nskulk\\nskulked\\nskulker\\nskulkers\\nskulking\\nskulks\\nskull\\nskullcap\\nskullcaps\\nskulled\\nskulls\\nskunk\\nskunked\\nskunking\\nskunks\\nsky\\nskyborne\\nskycap\\nskycaps\\nskydive\\nskydived\\nskydiver\\nskydivers\\nskydives\\nskydiving\\nskydove\\nskyed\\nskyey\\nskyhook\\nskyhooks\\nskying\\nskyjack\\nskyjacked\\nskyjacking\\nskyjacks\\nskylark\\nskylarked\\nskylarking\\nskylarks\\nskylight\\nskylights\\nskyline\\nskylines\\nskyman\\nskymen\\nskyphoi\\nskyphos\\nskyrocket\\nskyrocketed\\nskyrocketing\\nskyrockets\\nskysail\\nskysails\\nskyscraper\\nskyscrapers\\nskyward\\nskywards\\nskyway\\nskyways\\nskywrite\\nskywrites\\nskywriting\\nskywritten\\nskywrote\\nslab\\nslabbed\\nslabber\\nslabbered\\nslabbering\\nslabbers\\nslabbery\\nslabbing\\nslabs\\nslack\\nslacked\\nslacken\\nslackened\\nslackening\\nslackens\\nslacker\\nslackers\\nslackest\\nslacking\\nslackly\\nslackness\\nslacknesses\\nslacks\\nslag\\nslagged\\nslaggier\\nslaggiest\\nslagging\\nslaggy\\nslags\\nslain\\nslakable\\nslake\\nslaked\\nslaker\\nslakers\\nslakes\\nslaking\\nslalom\\nslalomed\\nslaloming\\nslaloms\\nslam\\nslammed\\nslamming\\nslams\\nslander\\nslandered\\nslanderer\\nslanderers\\nslandering\\nslanderous\\nslanders\\nslang\\nslanged\\nslangier\\nslangiest\\nslangily\\nslanging\\nslangs\\nslangy\\nslank\\nslant\\nslanted\\nslanting\\nslants\\nslap\\nslapdash\\nslapdashes\\nslapjack\\nslapjacks\\nslapped\\nslapper\\nslappers\\nslapping\\nslaps\\nslash\\nslashed\\nslasher\\nslashers\\nslashes\\nslashing\\nslashings\\nslat\\nslatch\\nslatches\\nslate\\nslated\\nslater\\nslaters\\nslates\\nslather\\nslathered\\nslathering\\nslathers\\nslatier\\nslatiest\\nslating\\nslatings\\nslats\\nslatted\\nslattern\\nslatterns\\nslatting\\nslaty\\nslaughter\\nslaughtered\\nslaughterhouse\\nslaughterhouses\\nslaughtering\\nslaughters\\nslave\\nslaved\\nslaver\\nslavered\\nslaverer\\nslaverers\\nslaveries\\nslavering\\nslavers\\nslavery\\nslaves\\nslavey\\nslaveys\\nslaving\\nslavish\\nslaw\\nslaws\\nslay\\nslayer\\nslayers\\nslaying\\nslays\\nsleave\\nsleaved\\nsleaves\\nsleaving\\nsleazier\\nsleaziest\\nsleazily\\nsleazy\\nsled\\nsledded\\nsledder\\nsledders\\nsledding\\nsleddings\\nsledge\\nsledged\\nsledgehammer\\nsledgehammered\\nsledgehammering\\nsledgehammers\\nsledges\\nsledging\\nsleds\\nsleek\\nsleeked\\nsleeken\\nsleekened\\nsleekening\\nsleekens\\nsleeker\\nsleekest\\nsleekier\\nsleekiest\\nsleeking\\nsleekit\\nsleekly\\nsleeks\\nsleeky\\nsleep\\nsleeper\\nsleepers\\nsleepier\\nsleepiest\\nsleepily\\nsleepiness\\nsleeping\\nsleepings\\nsleepless\\nsleeplessness\\nsleeps\\nsleepwalk\\nsleepwalked\\nsleepwalker\\nsleepwalkers\\nsleepwalking\\nsleepwalks\\nsleepy\\nsleet\\nsleeted\\nsleetier\\nsleetiest\\nsleeting\\nsleets\\nsleety\\nsleeve\\nsleeved\\nsleeveless\\nsleeves\\nsleeving\\nsleigh\\nsleighed\\nsleigher\\nsleighers\\nsleighing\\nsleighs\\nsleight\\nsleights\\nslender\\nslenderer\\nslenderest\\nslept\\nsleuth\\nsleuthed\\nsleuthing\\nsleuths\\nslew\\nslewed\\nslewing\\nslews\\nslice\\nsliced\\nslicer\\nslicers\\nslices\\nslicing\\nslick\\nslicked\\nslicker\\nslickers\\nslickest\\nslicking\\nslickly\\nslicks\\nslid\\nslidable\\nslidden\\nslide\\nslider\\nsliders\\nslides\\nslideway\\nslideways\\nsliding\\nslier\\nsliest\\nslight\\nslighted\\nslighter\\nslightest\\nslighting\\nslightly\\nslights\\nslily\\nslim\\nslime\\nslimed\\nslimes\\nslimier\\nslimiest\\nslimily\\nsliming\\nslimly\\nslimmed\\nslimmer\\nslimmest\\nslimming\\nslimness\\nslimnesses\\nslimpsier\\nslimpsiest\\nslimpsy\\nslims\\nslimsier\\nslimsiest\\nslimsy\\nslimy\\nsling\\nslinger\\nslingers\\nslinging\\nslings\\nslingshot\\nslingshots\\nslink\\nslinkier\\nslinkiest\\nslinkily\\nslinking\\nslinks\\nslinky\\nslip\\nslipcase\\nslipcases\\nslipe\\nsliped\\nslipes\\nslipform\\nslipformed\\nslipforming\\nslipforms\\nsliping\\nslipknot\\nslipknots\\nslipless\\nslipout\\nslipouts\\nslipover\\nslipovers\\nslippage\\nslippages\\nslipped\\nslipper\\nslipperier\\nslipperiest\\nslipperiness\\nslipperinesses\\nslippers\\nslippery\\nslippier\\nslippiest\\nslipping\\nslippy\\nslips\\nslipshod\\nslipslop\\nslipslops\\nslipsole\\nslipsoles\\nslipt\\nslipup\\nslipups\\nslipware\\nslipwares\\nslipway\\nslipways\\nslit\\nslither\\nslithered\\nslithering\\nslithers\\nslithery\\nslitless\\nslits\\nslitted\\nslitter\\nslitters\\nslitting\\nsliver\\nslivered\\nsliverer\\nsliverers\\nslivering\\nslivers\\nslivovic\\nslivovics\\nslob\\nslobber\\nslobbered\\nslobbering\\nslobbers\\nslobbery\\nslobbish\\nslobs\\nsloe\\nsloes\\nslog\\nslogan\\nslogans\\nslogged\\nslogger\\nsloggers\\nslogging\\nslogs\\nsloid\\nsloids\\nslojd\\nslojds\\nsloop\\nsloops\\nslop\\nslope\\nsloped\\nsloper\\nslopers\\nslopes\\nsloping\\nslopped\\nsloppier\\nsloppiest\\nsloppily\\nslopping\\nsloppy\\nslops\\nslopwork\\nslopworks\\nslosh\\nsloshed\\nsloshes\\nsloshier\\nsloshiest\\nsloshing\\nsloshy\\nslot\\nslotback\\nslotbacks\\nsloth\\nslothful\\nsloths\\nslots\\nslotted\\nslotting\\nslouch\\nslouched\\nsloucher\\nslouchers\\nslouches\\nslouchier\\nslouchiest\\nslouching\\nslouchy\\nslough\\nsloughed\\nsloughier\\nsloughiest\\nsloughing\\nsloughs\\nsloughy\\nsloven\\nslovenlier\\nslovenliest\\nslovenly\\nslovens\\nslow\\nslowdown\\nslowdowns\\nslowed\\nslower\\nslowest\\nslowing\\nslowish\\nslowly\\nslowness\\nslownesses\\nslowpoke\\nslowpokes\\nslows\\nslowworm\\nslowworms\\nsloyd\\nsloyds\\nslub\\nslubbed\\nslubber\\nslubbered\\nslubbering\\nslubbers\\nslubbing\\nslubbings\\nslubs\\nsludge\\nsludges\\nsludgier\\nsludgiest\\nsludgy\\nslue\\nslued\\nslues\\nsluff\\nsluffed\\nsluffing\\nsluffs\\nslug\\nslugabed\\nslugabeds\\nslugfest\\nslugfests\\nsluggard\\nsluggards\\nslugged\\nslugger\\nsluggers\\nslugging\\nsluggish\\nsluggishly\\nsluggishness\\nsluggishnesses\\nslugs\\nsluice\\nsluiced\\nsluices\\nsluicing\\nsluicy\\nsluing\\nslum\\nslumber\\nslumbered\\nslumbering\\nslumbers\\nslumbery\\nslumgum\\nslumgums\\nslumlord\\nslumlords\\nslummed\\nslummer\\nslummers\\nslummier\\nslummiest\\nslumming\\nslummy\\nslump\\nslumped\\nslumping\\nslumps\\nslums\\nslung\\nslunk\\nslur\\nslurb\\nslurban\\nslurbs\\nslurp\\nslurped\\nslurping\\nslurps\\nslurred\\nslurried\\nslurries\\nslurring\\nslurry\\nslurrying\\nslurs\\nslush\\nslushed\\nslushes\\nslushier\\nslushiest\\nslushily\\nslushing\\nslushy\\nslut\\nsluts\\nsluttish\\nsly\\nslyboots\\nslyer\\nslyest\\nslyly\\nslyness\\nslynesses\\nslype\\nslypes\\nsmack\\nsmacked\\nsmacker\\nsmackers\\nsmacking\\nsmacks\\nsmall\\nsmallage\\nsmallages\\nsmaller\\nsmallest\\nsmallish\\nsmallness\\nsmallnesses\\nsmallpox\\nsmallpoxes\\nsmalls\\nsmalt\\nsmalti\\nsmaltine\\nsmaltines\\nsmaltite\\nsmaltites\\nsmalto\\nsmaltos\\nsmalts\\nsmaragd\\nsmaragde\\nsmaragdes\\nsmaragds\\nsmarm\\nsmarmier\\nsmarmiest\\nsmarms\\nsmarmy\\nsmart\\nsmarted\\nsmarten\\nsmartened\\nsmartening\\nsmartens\\nsmarter\\nsmartest\\nsmartie\\nsmarties\\nsmarting\\nsmartly\\nsmartness\\nsmartnesses\\nsmarts\\nsmarty\\nsmash\\nsmashed\\nsmasher\\nsmashers\\nsmashes\\nsmashing\\nsmashup\\nsmashups\\nsmatter\\nsmattered\\nsmattering\\nsmatterings\\nsmatters\\nsmaze\\nsmazes\\nsmear\\nsmeared\\nsmearer\\nsmearers\\nsmearier\\nsmeariest\\nsmearing\\nsmears\\nsmeary\\nsmectic\\nsmeddum\\nsmeddums\\nsmeek\\nsmeeked\\nsmeeking\\nsmeeks\\nsmegma\\nsmegmas\\nsmell\\nsmelled\\nsmeller\\nsmellers\\nsmellier\\nsmelliest\\nsmelling\\nsmells\\nsmelly\\nsmelt\\nsmelted\\nsmelter\\nsmelteries\\nsmelters\\nsmeltery\\nsmelting\\nsmelts\\nsmerk\\nsmerked\\nsmerking\\nsmerks\\nsmew\\nsmews\\nsmidgen\\nsmidgens\\nsmidgeon\\nsmidgeons\\nsmidgin\\nsmidgins\\nsmilax\\nsmilaxes\\nsmile\\nsmiled\\nsmiler\\nsmilers\\nsmiles\\nsmiling\\nsmirch\\nsmirched\\nsmirches\\nsmirching\\nsmirk\\nsmirked\\nsmirker\\nsmirkers\\nsmirkier\\nsmirkiest\\nsmirking\\nsmirks\\nsmirky\\nsmit\\nsmite\\nsmiter\\nsmiters\\nsmites\\nsmith\\nsmitheries\\nsmithery\\nsmithies\\nsmiths\\nsmithy\\nsmiting\\nsmitten\\nsmock\\nsmocked\\nsmocking\\nsmockings\\nsmocks\\nsmog\\nsmoggier\\nsmoggiest\\nsmoggy\\nsmogless\\nsmogs\\nsmokable\\nsmoke\\nsmoked\\nsmokeless\\nsmokepot\\nsmokepots\\nsmoker\\nsmokers\\nsmokes\\nsmokestack\\nsmokestacks\\nsmokey\\nsmokier\\nsmokiest\\nsmokily\\nsmoking\\nsmoky\\nsmolder\\nsmoldered\\nsmoldering\\nsmolders\\nsmolt\\nsmolts\\nsmooch\\nsmooched\\nsmooches\\nsmooching\\nsmoochy\\nsmooth\\nsmoothed\\nsmoothen\\nsmoothened\\nsmoothening\\nsmoothens\\nsmoother\\nsmoothers\\nsmoothest\\nsmoothie\\nsmoothies\\nsmoothing\\nsmoothly\\nsmoothness\\nsmoothnesses\\nsmooths\\nsmoothy\\nsmorgasbord\\nsmorgasbords\\nsmote\\nsmother\\nsmothered\\nsmothering\\nsmothers\\nsmothery\\nsmoulder\\nsmouldered\\nsmouldering\\nsmoulders\\nsmudge\\nsmudged\\nsmudges\\nsmudgier\\nsmudgiest\\nsmudgily\\nsmudging\\nsmudgy\\nsmug\\nsmugger\\nsmuggest\\nsmuggle\\nsmuggled\\nsmuggler\\nsmugglers\\nsmuggles\\nsmuggling\\nsmugly\\nsmugness\\nsmugnesses\\nsmut\\nsmutch\\nsmutched\\nsmutches\\nsmutchier\\nsmutchiest\\nsmutching\\nsmutchy\\nsmuts\\nsmutted\\nsmuttier\\nsmuttiest\\nsmuttily\\nsmutting\\nsmutty\\nsnack\\nsnacked\\nsnacking\\nsnacks\\nsnaffle\\nsnaffled\\nsnaffles\\nsnaffling\\nsnafu\\nsnafued\\nsnafuing\\nsnafus\\nsnag\\nsnagged\\nsnaggier\\nsnaggiest\\nsnagging\\nsnaggy\\nsnaglike\\nsnags\\nsnail\\nsnailed\\nsnailing\\nsnails\\nsnake\\nsnaked\\nsnakes\\nsnakier\\nsnakiest\\nsnakily\\nsnaking\\nsnaky\\nsnap\\nsnapback\\nsnapbacks\\nsnapdragon\\nsnapdragons\\nsnapless\\nsnapped\\nsnapper\\nsnappers\\nsnappier\\nsnappiest\\nsnappily\\nsnapping\\nsnappish\\nsnappy\\nsnaps\\nsnapshot\\nsnapshots\\nsnapshotted\\nsnapshotting\\nsnapweed\\nsnapweeds\\nsnare\\nsnared\\nsnarer\\nsnarers\\nsnares\\nsnaring\\nsnark\\nsnarks\\nsnarl\\nsnarled\\nsnarler\\nsnarlers\\nsnarlier\\nsnarliest\\nsnarling\\nsnarls\\nsnarly\\nsnash\\nsnashes\\nsnatch\\nsnatched\\nsnatcher\\nsnatchers\\nsnatches\\nsnatchier\\nsnatchiest\\nsnatching\\nsnatchy\\nsnath\\nsnathe\\nsnathes\\nsnaths\\nsnaw\\nsnawed\\nsnawing\\nsnaws\\nsnazzier\\nsnazziest\\nsnazzy\\nsneak\\nsneaked\\nsneaker\\nsneakers\\nsneakier\\nsneakiest\\nsneakily\\nsneaking\\nsneakingly\\nsneaks\\nsneaky\\nsneap\\nsneaped\\nsneaping\\nsneaps\\nsneck\\nsnecks\\nsned\\nsnedded\\nsnedding\\nsneds\\nsneer\\nsneered\\nsneerer\\nsneerers\\nsneerful\\nsneering\\nsneers\\nsneesh\\nsneeshes\\nsneeze\\nsneezed\\nsneezer\\nsneezers\\nsneezes\\nsneezier\\nsneeziest\\nsneezing\\nsneezy\\nsnell\\nsneller\\nsnellest\\nsnells\\nsnib\\nsnibbed\\nsnibbing\\nsnibs\\nsnick\\nsnicked\\nsnicker\\nsnickered\\nsnickering\\nsnickers\\nsnickery\\nsnicking\\nsnicks\\nsnide\\nsnidely\\nsnider\\nsnidest\\nsniff\\nsniffed\\nsniffer\\nsniffers\\nsniffier\\nsniffiest\\nsniffily\\nsniffing\\nsniffish\\nsniffle\\nsniffled\\nsniffler\\nsnifflers\\nsniffles\\nsniffling\\nsniffs\\nsniffy\\nsnifter\\nsnifters\\nsnigger\\nsniggered\\nsniggering\\nsniggers\\nsniggle\\nsniggled\\nsniggler\\nsnigglers\\nsniggles\\nsniggling\\nsnip\\nsnipe\\nsniped\\nsniper\\nsnipers\\nsnipes\\nsniping\\nsnipped\\nsnipper\\nsnippers\\nsnippet\\nsnippetier\\nsnippetiest\\nsnippets\\nsnippety\\nsnippier\\nsnippiest\\nsnippily\\nsnipping\\nsnippy\\nsnips\\nsnit\\nsnitch\\nsnitched\\nsnitcher\\nsnitchers\\nsnitches\\nsnitching\\nsnits\\nsnivel\\nsniveled\\nsniveler\\nsnivelers\\nsniveling\\nsnivelled\\nsnivelling\\nsnivels\\nsnob\\nsnobberies\\nsnobbery\\nsnobbier\\nsnobbiest\\nsnobbily\\nsnobbish\\nsnobbishly\\nsnobbishness\\nsnobbishnesses\\nsnobbism\\nsnobbisms\\nsnobby\\nsnobs\\nsnood\\nsnooded\\nsnooding\\nsnoods\\nsnook\\nsnooked\\nsnooker\\nsnookers\\nsnooking\\nsnooks\\nsnool\\nsnooled\\nsnooling\\nsnools\\nsnoop\\nsnooped\\nsnooper\\nsnoopers\\nsnoopier\\nsnoopiest\\nsnoopily\\nsnooping\\nsnoops\\nsnoopy\\nsnoot\\nsnooted\\nsnootier\\nsnootiest\\nsnootily\\nsnooting\\nsnoots\\nsnooty\\nsnooze\\nsnoozed\\nsnoozer\\nsnoozers\\nsnoozes\\nsnoozier\\nsnooziest\\nsnoozing\\nsnoozle\\nsnoozled\\nsnoozles\\nsnoozling\\nsnoozy\\nsnore\\nsnored\\nsnorer\\nsnorers\\nsnores\\nsnoring\\nsnorkel\\nsnorkeled\\nsnorkeling\\nsnorkels\\nsnort\\nsnorted\\nsnorter\\nsnorters\\nsnorting\\nsnorts\\nsnot\\nsnots\\nsnottier\\nsnottiest\\nsnottily\\nsnotty\\nsnout\\nsnouted\\nsnoutier\\nsnoutiest\\nsnouting\\nsnoutish\\nsnouts\\nsnouty\\nsnow\\nsnowball\\nsnowballed\\nsnowballing\\nsnowballs\\nsnowbank\\nsnowbanks\\nsnowbell\\nsnowbells\\nsnowbird\\nsnowbirds\\nsnowbush\\nsnowbushes\\nsnowcap\\nsnowcaps\\nsnowdrift\\nsnowdrifts\\nsnowdrop\\nsnowdrops\\nsnowed\\nsnowfall\\nsnowfalls\\nsnowflake\\nsnowflakes\\nsnowier\\nsnowiest\\nsnowily\\nsnowing\\nsnowland\\nsnowlands\\nsnowless\\nsnowlike\\nsnowman\\nsnowmelt\\nsnowmelts\\nsnowmen\\nsnowpack\\nsnowpacks\\nsnowplow\\nsnowplowed\\nsnowplowing\\nsnowplows\\nsnows\\nsnowshed\\nsnowsheds\\nsnowshoe\\nsnowshoed\\nsnowshoeing\\nsnowshoes\\nsnowstorm\\nsnowstorms\\nsnowsuit\\nsnowsuits\\nsnowy\\nsnub\\nsnubbed\\nsnubber\\nsnubbers\\nsnubbier\\nsnubbiest\\nsnubbing\\nsnubby\\nsnubness\\nsnubnesses\\nsnubs\\nsnuck\\nsnuff\\nsnuffbox\\nsnuffboxes\\nsnuffed\\nsnuffer\\nsnuffers\\nsnuffier\\nsnuffiest\\nsnuffily\\nsnuffing\\nsnuffle\\nsnuffled\\nsnuffler\\nsnufflers\\nsnuffles\\nsnufflier\\nsnuffliest\\nsnuffling\\nsnuffly\\nsnuffs\\nsnuffy\\nsnug\\nsnugged\\nsnugger\\nsnuggeries\\nsnuggery\\nsnuggest\\nsnugging\\nsnuggle\\nsnuggled\\nsnuggles\\nsnuggling\\nsnugly\\nsnugness\\nsnugnesses\\nsnugs\\nsnye\\nsnyes\\nso\\nsoak\\nsoakage\\nsoakages\\nsoaked\\nsoaker\\nsoakers\\nsoaking\\nsoaks\\nsoap\\nsoapbark\\nsoapbarks\\nsoapbox\\nsoapboxes\\nsoaped\\nsoapier\\nsoapiest\\nsoapily\\nsoaping\\nsoapless\\nsoaplike\\nsoaps\\nsoapsuds\\nsoapwort\\nsoapworts\\nsoapy\\nsoar\\nsoared\\nsoarer\\nsoarers\\nsoaring\\nsoarings\\nsoars\\nsoave\\nsoaves\\nsob\\nsobbed\\nsobber\\nsobbers\\nsobbing\\nsobeit\\nsober\\nsobered\\nsoberer\\nsoberest\\nsobering\\nsoberize\\nsoberized\\nsoberizes\\nsoberizing\\nsoberly\\nsobers\\nsobful\\nsobrieties\\nsobriety\\nsobs\\nsocage\\nsocager\\nsocagers\\nsocages\\nsoccage\\nsoccages\\nsoccer\\nsoccers\\nsociabilities\\nsociability\\nsociable\\nsociables\\nsociably\\nsocial\\nsocialism\\nsocialist\\nsocialistic\\nsocialists\\nsocialization\\nsocializations\\nsocialize\\nsocialized\\nsocializes\\nsocializing\\nsocially\\nsocials\\nsocietal\\nsocieties\\nsociety\\nsociological\\nsociologies\\nsociologist\\nsociologists\\nsociology\\nsock\\nsocked\\nsocket\\nsocketed\\nsocketing\\nsockets\\nsockeye\\nsockeyes\\nsocking\\nsockman\\nsockmen\\nsocks\\nsocle\\nsocles\\nsocman\\nsocmen\\nsod\\nsoda\\nsodaless\\nsodalist\\nsodalists\\nsodalite\\nsodalites\\nsodalities\\nsodality\\nsodamide\\nsodamides\\nsodas\\nsodded\\nsodden\\nsoddened\\nsoddening\\nsoddenly\\nsoddens\\nsoddies\\nsodding\\nsoddy\\nsodic\\nsodium\\nsodiums\\nsodomies\\nsodomite\\nsodomites\\nsodomy\\nsods\\nsoever\\nsofa\\nsofar\\nsofars\\nsofas\\nsoffit\\nsoffits\\nsoft\\nsofta\\nsoftas\\nsoftback\\nsoftbacks\\nsoftball\\nsoftballs\\nsoften\\nsoftened\\nsoftener\\nsofteners\\nsoftening\\nsoftens\\nsofter\\nsoftest\\nsofthead\\nsoftheads\\nsoftie\\nsofties\\nsoftly\\nsoftness\\nsoftnesses\\nsofts\\nsoftware\\nsoftwares\\nsoftwood\\nsoftwoods\\nsofty\\nsogged\\nsoggier\\nsoggiest\\nsoggily\\nsogginess\\nsogginesses\\nsoggy\\nsoigne\\nsoignee\\nsoil\\nsoilage\\nsoilages\\nsoiled\\nsoiling\\nsoilless\\nsoils\\nsoilure\\nsoilures\\nsoiree\\nsoirees\\nsoja\\nsojas\\nsojourn\\nsojourned\\nsojourning\\nsojourns\\nsoke\\nsokeman\\nsokemen\\nsokes\\nsol\\nsola\\nsolace\\nsolaced\\nsolacer\\nsolacers\\nsolaces\\nsolacing\\nsolan\\nsoland\\nsolander\\nsolanders\\nsolands\\nsolanin\\nsolanine\\nsolanines\\nsolanins\\nsolano\\nsolanos\\nsolans\\nsolanum\\nsolanums\\nsolar\\nsolaria\\nsolarise\\nsolarised\\nsolarises\\nsolarising\\nsolarism\\nsolarisms\\nsolarium\\nsolariums\\nsolarize\\nsolarized\\nsolarizes\\nsolarizing\\nsolate\\nsolated\\nsolates\\nsolatia\\nsolating\\nsolation\\nsolations\\nsolatium\\nsold\\nsoldan\\nsoldans\\nsolder\\nsoldered\\nsolderer\\nsolderers\\nsoldering\\nsolders\\nsoldi\\nsoldier\\nsoldiered\\nsoldieries\\nsoldiering\\nsoldierly\\nsoldiers\\nsoldiery\\nsoldo\\nsole\\nsolecise\\nsolecised\\nsolecises\\nsolecising\\nsolecism\\nsolecisms\\nsolecist\\nsolecists\\nsolecize\\nsolecized\\nsolecizes\\nsolecizing\\nsoled\\nsoleless\\nsolely\\nsolemn\\nsolemner\\nsolemnest\\nsolemnly\\nsolemnness\\nsolemnnesses\\nsoleness\\nsolenesses\\nsolenoid\\nsolenoids\\nsoleret\\nsolerets\\nsoles\\nsolfege\\nsolfeges\\nsolfeggi\\nsolgel\\nsoli\\nsolicit\\nsolicitation\\nsolicited\\nsoliciting\\nsolicitor\\nsolicitors\\nsolicitous\\nsolicits\\nsolicitude\\nsolicitudes\\nsolid\\nsolidago\\nsolidagos\\nsolidarities\\nsolidarity\\nsolidary\\nsolider\\nsolidest\\nsolidi\\nsolidification\\nsolidifications\\nsolidified\\nsolidifies\\nsolidify\\nsolidifying\\nsolidities\\nsolidity\\nsolidly\\nsolidness\\nsolidnesses\\nsolids\\nsolidus\\nsoliloquize\\nsoliloquized\\nsoliloquizes\\nsoliloquizing\\nsoliloquy\\nsoliloquys\\nsoling\\nsolion\\nsolions\\nsoliquid\\nsoliquids\\nsolitaire\\nsolitaires\\nsolitaries\\nsolitary\\nsolitude\\nsolitudes\\nsolleret\\nsollerets\\nsolo\\nsoloed\\nsoloing\\nsoloist\\nsoloists\\nsolon\\nsolonets\\nsolonetses\\nsolonetz\\nsolonetzes\\nsolons\\nsolos\\nsols\\nsolstice\\nsolstices\\nsolubilities\\nsolubility\\nsoluble\\nsolubles\\nsolubly\\nsolum\\nsolums\\nsolus\\nsolute\\nsolutes\\nsolution\\nsolutions\\nsolvable\\nsolvate\\nsolvated\\nsolvates\\nsolvating\\nsolve\\nsolved\\nsolvencies\\nsolvency\\nsolvent\\nsolvents\\nsolver\\nsolvers\\nsolves\\nsolving\\nsoma\\nsomas\\nsomata\\nsomatic\\nsomber\\nsomberly\\nsombre\\nsombrely\\nsombrero\\nsombreros\\nsombrous\\nsome\\nsomebodies\\nsomebody\\nsomeday\\nsomedeal\\nsomehow\\nsomeone\\nsomeones\\nsomeplace\\nsomersault\\nsomersaulted\\nsomersaulting\\nsomersaults\\nsomerset\\nsomerseted\\nsomerseting\\nsomersets\\nsomersetted\\nsomersetting\\nsomerville\\nsomething\\nsometime\\nsometimes\\nsomeway\\nsomeways\\nsomewhat\\nsomewhats\\nsomewhen\\nsomewhere\\nsomewise\\nsomital\\nsomite\\nsomites\\nsomitic\\nsomnambulism\\nsomnambulist\\nsomnambulists\\nsomnolence\\nsomnolences\\nsomnolent\\nson\\nsonance\\nsonances\\nsonant\\nsonantal\\nsonantic\\nsonants\\nsonar\\nsonarman\\nsonarmen\\nsonars\\nsonata\\nsonatas\\nsonatina\\nsonatinas\\nsonatine\\nsonde\\nsonder\\nsonders\\nsondes\\nsone\\nsones\\nsong\\nsongbird\\nsongbirds\\nsongbook\\nsongbooks\\nsongfest\\nsongfests\\nsongful\\nsongless\\nsonglike\\nsongs\\nsongster\\nsongsters\\nsonic\\nsonicate\\nsonicated\\nsonicates\\nsonicating\\nsonics\\nsonless\\nsonlike\\nsonly\\nsonnet\\nsonneted\\nsonneting\\nsonnets\\nsonnetted\\nsonnetting\\nsonnies\\nsonny\\nsonorant\\nsonorants\\nsonorities\\nsonority\\nsonorous\\nsonovox\\nsonovoxes\\nsons\\nsonship\\nsonships\\nsonsie\\nsonsier\\nsonsiest\\nsonsy\\nsoochong\\nsoochongs\\nsooey\\nsoon\\nsooner\\nsooners\\nsoonest\\nsoot\\nsooted\\nsooth\\nsoothe\\nsoothed\\nsoother\\nsoothers\\nsoothes\\nsoothest\\nsoothing\\nsoothly\\nsooths\\nsoothsaid\\nsoothsay\\nsoothsayer\\nsoothsayers\\nsoothsaying\\nsoothsayings\\nsoothsays\\nsootier\\nsootiest\\nsootily\\nsooting\\nsoots\\nsooty\\nsop\\nsoph\\nsophies\\nsophism\\nsophisms\\nsophist\\nsophistic\\nsophistical\\nsophisticate\\nsophisticated\\nsophisticates\\nsophistication\\nsophistications\\nsophistries\\nsophistry\\nsophists\\nsophomore\\nsophomores\\nsophs\\nsophy\\nsopite\\nsopited\\nsopites\\nsopiting\\nsopor\\nsoporific\\nsopors\\nsopped\\nsoppier\\nsoppiest\\nsopping\\nsoppy\\nsoprani\\nsoprano\\nsopranos\\nsops\\nsora\\nsoras\\nsorb\\nsorbable\\nsorbate\\nsorbates\\nsorbed\\nsorbent\\nsorbents\\nsorbet\\nsorbets\\nsorbic\\nsorbing\\nsorbitol\\nsorbitols\\nsorbose\\nsorboses\\nsorbs\\nsorcerer\\nsorcerers\\nsorceress\\nsorceresses\\nsorceries\\nsorcery\\nsord\\nsordid\\nsordidly\\nsordidness\\nsordidnesses\\nsordine\\nsordines\\nsordini\\nsordino\\nsords\\nsore\\nsorehead\\nsoreheads\\nsorel\\nsorels\\nsorely\\nsoreness\\nsorenesses\\nsorer\\nsores\\nsorest\\nsorgho\\nsorghos\\nsorghum\\nsorghums\\nsorgo\\nsorgos\\nsori\\nsoricine\\nsorites\\nsoritic\\nsorn\\nsorned\\nsorner\\nsorners\\nsorning\\nsorns\\nsoroche\\nsoroches\\nsororal\\nsororate\\nsororates\\nsororities\\nsorority\\nsoroses\\nsorosis\\nsorosises\\nsorption\\nsorptions\\nsorptive\\nsorrel\\nsorrels\\nsorrier\\nsorriest\\nsorrily\\nsorrow\\nsorrowed\\nsorrower\\nsorrowers\\nsorrowful\\nsorrowfully\\nsorrowing\\nsorrows\\nsorry\\nsort\\nsortable\\nsortably\\nsorted\\nsorter\\nsorters\\nsortie\\nsortied\\nsortieing\\nsorties\\nsorting\\nsorts\\nsorus\\nsos\\nsot\\nsoth\\nsoths\\nsotol\\nsotols\\nsots\\nsottish\\nsou\\nsouari\\nsouaris\\nsoubise\\nsoubises\\nsoucar\\nsoucars\\nsouchong\\nsouchongs\\nsoudan\\nsoudans\\nsouffle\\nsouffles\\nsough\\nsoughed\\nsoughing\\nsoughs\\nsought\\nsoul\\nsouled\\nsoulful\\nsoulfully\\nsoulless\\nsoullike\\nsouls\\nsound\\nsoundbox\\nsoundboxes\\nsounded\\nsounder\\nsounders\\nsoundest\\nsounding\\nsoundings\\nsoundly\\nsoundness\\nsoundnesses\\nsoundproof\\nsoundproofed\\nsoundproofing\\nsoundproofs\\nsounds\\nsoup\\nsoupcon\\nsoupcons\\nsouped\\nsoupier\\nsoupiest\\nsouping\\nsoups\\nsoupy\\nsour\\nsourball\\nsourballs\\nsource\\nsources\\nsourdine\\nsourdines\\nsoured\\nsourer\\nsourest\\nsouring\\nsourish\\nsourly\\nsourness\\nsournesses\\nsourpuss\\nsourpusses\\nsours\\nsoursop\\nsoursops\\nsourwood\\nsourwoods\\nsous\\nsouse\\nsoused\\nsouses\\nsousing\\nsoutache\\nsoutaches\\nsoutane\\nsoutanes\\nsouter\\nsouters\\nsouth\\nsoutheast\\nsoutheastern\\nsoutheasts\\nsouthed\\nsouther\\nsoutherly\\nsouthern\\nsouthernmost\\nsoutherns\\nsouthernward\\nsouthernwards\\nsouthers\\nsouthing\\nsouthings\\nsouthpaw\\nsouthpaws\\nsouthron\\nsouthrons\\nsouths\\nsouthwest\\nsouthwesterly\\nsouthwestern\\nsouthwests\\nsouvenir\\nsouvenirs\\nsovereign\\nsovereigns\\nsovereignties\\nsovereignty\\nsoviet\\nsoviets\\nsovkhoz\\nsovkhozes\\nsovkhozy\\nsovran\\nsovranly\\nsovrans\\nsovranties\\nsovranty\\nsow\\nsowable\\nsowans\\nsowar\\nsowars\\nsowbellies\\nsowbelly\\nsowbread\\nsowbreads\\nsowcar\\nsowcars\\nsowed\\nsowens\\nsower\\nsowers\\nsowing\\nsown\\nsows\\nsox\\nsoy\\nsoya\\nsoyas\\nsoybean\\nsoybeans\\nsoys\\nsozin\\nsozine\\nsozines\\nsozins\\nspa\\nspace\\nspacecraft\\nspacecrafts\\nspaced\\nspaceflight\\nspaceflights\\nspaceman\\nspacemen\\nspacer\\nspacers\\nspaces\\nspaceship\\nspaceships\\nspacial\\nspacing\\nspacings\\nspacious\\nspaciously\\nspaciousness\\nspaciousnesses\\nspade\\nspaded\\nspadeful\\nspadefuls\\nspader\\nspaders\\nspades\\nspadices\\nspadille\\nspadilles\\nspading\\nspadix\\nspado\\nspadones\\nspae\\nspaed\\nspaeing\\nspaeings\\nspaes\\nspaghetti\\nspaghettis\\nspagyric\\nspagyrics\\nspahee\\nspahees\\nspahi\\nspahis\\nspail\\nspails\\nspait\\nspaits\\nspake\\nspale\\nspales\\nspall\\nspalled\\nspaller\\nspallers\\nspalling\\nspalls\\nspalpeen\\nspalpeens\\nspan\\nspancel\\nspanceled\\nspanceling\\nspancelled\\nspancelling\\nspancels\\nspandrel\\nspandrels\\nspandril\\nspandrils\\nspang\\nspangle\\nspangled\\nspangles\\nspanglier\\nspangliest\\nspangling\\nspangly\\nspaniel\\nspaniels\\nspank\\nspanked\\nspanker\\nspankers\\nspanking\\nspankings\\nspanks\\nspanless\\nspanned\\nspanner\\nspanners\\nspanning\\nspans\\nspanworm\\nspanworms\\nspar\\nsparable\\nsparables\\nspare\\nspared\\nsparely\\nsparer\\nsparerib\\nspareribs\\nsparers\\nspares\\nsparest\\nsparge\\nsparged\\nsparger\\nspargers\\nsparges\\nsparging\\nsparid\\nsparids\\nsparing\\nsparingly\\nspark\\nsparked\\nsparker\\nsparkers\\nsparkier\\nsparkiest\\nsparkily\\nsparking\\nsparkish\\nsparkle\\nsparkled\\nsparkler\\nsparklers\\nsparkles\\nsparkling\\nsparks\\nsparky\\nsparlike\\nsparling\\nsparlings\\nsparoid\\nsparoids\\nsparred\\nsparrier\\nsparriest\\nsparring\\nsparrow\\nsparrows\\nsparry\\nspars\\nsparse\\nsparsely\\nsparser\\nsparsest\\nsparsities\\nsparsity\\nspas\\nspasm\\nspasmodic\\nspasms\\nspastic\\nspastics\\nspat\\nspate\\nspates\\nspathal\\nspathe\\nspathed\\nspathes\\nspathic\\nspathose\\nspatial\\nspatially\\nspats\\nspatted\\nspatter\\nspattered\\nspattering\\nspatters\\nspatting\\nspatula\\nspatular\\nspatulas\\nspavie\\nspavies\\nspaviet\\nspavin\\nspavined\\nspavins\\nspawn\\nspawned\\nspawner\\nspawners\\nspawning\\nspawns\\nspay\\nspayed\\nspaying\\nspays\\nspeak\\nspeaker\\nspeakers\\nspeaking\\nspeakings\\nspeaks\\nspean\\nspeaned\\nspeaning\\nspeans\\nspear\\nspeared\\nspearer\\nspearers\\nspearhead\\nspearheaded\\nspearheading\\nspearheads\\nspearing\\nspearman\\nspearmen\\nspearmint\\nspears\\nspecial\\nspecialer\\nspecialest\\nspecialist\\nspecialists\\nspecialization\\nspecializations\\nspecialize\\nspecialized\\nspecializes\\nspecializing\\nspecially\\nspecials\\nspecialties\\nspecialty\\nspeciate\\nspeciated\\nspeciates\\nspeciating\\nspecie\\nspecies\\nspecific\\nspecifically\\nspecification\\nspecifications\\nspecificities\\nspecificity\\nspecifics\\nspecified\\nspecifies\\nspecify\\nspecifying\\nspecimen\\nspecimens\\nspecious\\nspeck\\nspecked\\nspecking\\nspeckle\\nspeckled\\nspeckles\\nspeckling\\nspecks\\nspecs\\nspectacle\\nspectacles\\nspectacular\\nspectate\\nspectated\\nspectates\\nspectating\\nspectator\\nspectators\\nspecter\\nspecters\\nspectra\\nspectral\\nspectre\\nspectres\\nspectrum\\nspectrums\\nspecula\\nspecular\\nspeculate\\nspeculated\\nspeculates\\nspeculating\\nspeculation\\nspeculations\\nspeculative\\nspeculator\\nspeculators\\nspeculum\\nspeculums\\nsped\\nspeech\\nspeeches\\nspeechless\\nspeed\\nspeedboat\\nspeedboats\\nspeeded\\nspeeder\\nspeeders\\nspeedier\\nspeediest\\nspeedily\\nspeeding\\nspeedings\\nspeedometer\\nspeedometers\\nspeeds\\nspeedup\\nspeedups\\nspeedway\\nspeedways\\nspeedy\\nspeel\\nspeeled\\nspeeling\\nspeels\\nspeer\\nspeered\\nspeering\\nspeerings\\nspeers\\nspeil\\nspeiled\\nspeiling\\nspeils\\nspeir\\nspeired\\nspeiring\\nspeirs\\nspeise\\nspeises\\nspeiss\\nspeisses\\nspelaean\\nspelean\\nspell\\nspellbound\\nspelled\\nspeller\\nspellers\\nspelling\\nspellings\\nspells\\nspelt\\nspelter\\nspelters\\nspelts\\nspeltz\\nspeltzes\\nspelunk\\nspelunked\\nspelunking\\nspelunks\\nspence\\nspencer\\nspencers\\nspences\\nspend\\nspender\\nspenders\\nspending\\nspends\\nspendthrift\\nspendthrifts\\nspent\\nsperm\\nspermaries\\nspermary\\nspermic\\nspermine\\nspermines\\nspermous\\nsperms\\nspew\\nspewed\\nspewer\\nspewers\\nspewing\\nspews\\nsphagnum\\nsphagnums\\nsphene\\nsphenes\\nsphenic\\nsphenoid\\nsphenoids\\nspheral\\nsphere\\nsphered\\nspheres\\nspheric\\nspherical\\nspherics\\nspherier\\nspheriest\\nsphering\\nspheroid\\nspheroids\\nspherule\\nspherules\\nsphery\\nsphinges\\nsphingid\\nsphingids\\nsphinx\\nsphinxes\\nsphygmic\\nsphygmus\\nsphygmuses\\nspic\\nspica\\nspicae\\nspicas\\nspicate\\nspicated\\nspiccato\\nspiccatos\\nspice\\nspiced\\nspicer\\nspiceries\\nspicers\\nspicery\\nspices\\nspicey\\nspicier\\nspiciest\\nspicily\\nspicing\\nspick\\nspicks\\nspics\\nspicula\\nspiculae\\nspicular\\nspicule\\nspicules\\nspiculum\\nspicy\\nspider\\nspiderier\\nspideriest\\nspiders\\nspidery\\nspied\\nspiegel\\nspiegels\\nspiel\\nspieled\\nspieler\\nspielers\\nspieling\\nspiels\\nspier\\nspiered\\nspiering\\nspiers\\nspies\\nspiffier\\nspiffiest\\nspiffily\\nspiffing\\nspiffy\\nspigot\\nspigots\\nspik\\nspike\\nspiked\\nspikelet\\nspikelets\\nspiker\\nspikers\\nspikes\\nspikier\\nspikiest\\nspikily\\nspiking\\nspiks\\nspiky\\nspile\\nspiled\\nspiles\\nspilikin\\nspilikins\\nspiling\\nspilings\\nspill\\nspillable\\nspillage\\nspillages\\nspilled\\nspiller\\nspillers\\nspilling\\nspills\\nspillway\\nspillways\\nspilt\\nspilth\\nspilths\\nspin\\nspinach\\nspinaches\\nspinage\\nspinages\\nspinal\\nspinally\\nspinals\\nspinate\\nspindle\\nspindled\\nspindler\\nspindlers\\nspindles\\nspindlier\\nspindliest\\nspindling\\nspindly\\nspine\\nspined\\nspinel\\nspineless\\nspinelle\\nspinelles\\nspinels\\nspines\\nspinet\\nspinets\\nspinier\\nspiniest\\nspinifex\\nspinifexes\\nspinless\\nspinner\\nspinneries\\nspinners\\nspinnery\\nspinney\\nspinneys\\nspinnies\\nspinning\\nspinnings\\nspinny\\nspinoff\\nspinoffs\\nspinor\\nspinors\\nspinose\\nspinous\\nspinout\\nspinouts\\nspins\\nspinster\\nspinsters\\nspinula\\nspinulae\\nspinule\\nspinules\\nspinwriter\\nspiny\\nspiracle\\nspiracles\\nspiraea\\nspiraeas\\nspiral\\nspiraled\\nspiraling\\nspiralled\\nspiralling\\nspirally\\nspirals\\nspirant\\nspirants\\nspire\\nspirea\\nspireas\\nspired\\nspirem\\nspireme\\nspiremes\\nspirems\\nspires\\nspirilla\\nspiring\\nspirit\\nspirited\\nspiriting\\nspiritless\\nspirits\\nspiritual\\nspiritualism\\nspiritualisms\\nspiritualist\\nspiritualistic\\nspiritualists\\nspiritualities\\nspirituality\\nspiritually\\nspirituals\\nspiroid\\nspirt\\nspirted\\nspirting\\nspirts\\nspirula\\nspirulae\\nspirulas\\nspiry\\nspit\\nspital\\nspitals\\nspitball\\nspitballs\\nspite\\nspited\\nspiteful\\nspitefuller\\nspitefullest\\nspitefully\\nspites\\nspitfire\\nspitfires\\nspiting\\nspits\\nspitted\\nspitter\\nspitters\\nspitting\\nspittle\\nspittles\\nspittoon\\nspittoons\\nspitz\\nspitzes\\nspiv\\nspivs\\nsplake\\nsplakes\\nsplash\\nsplashed\\nsplasher\\nsplashers\\nsplashes\\nsplashier\\nsplashiest\\nsplashing\\nsplashy\\nsplat\\nsplats\\nsplatter\\nsplattered\\nsplattering\\nsplatters\\nsplay\\nsplayed\\nsplaying\\nsplays\\nspleen\\nspleenier\\nspleeniest\\nspleens\\nspleeny\\nsplendid\\nsplendider\\nsplendidest\\nsplendidly\\nsplendor\\nsplendors\\nsplenia\\nsplenial\\nsplenic\\nsplenii\\nsplenium\\nsplenius\\nsplent\\nsplents\\nsplice\\nspliced\\nsplicer\\nsplicers\\nsplices\\nsplicing\\nspline\\nsplined\\nsplines\\nsplining\\nsplint\\nsplinted\\nsplinter\\nsplintered\\nsplintering\\nsplinters\\nsplinting\\nsplints\\nsplit\\nsplits\\nsplitter\\nsplitters\\nsplitting\\nsplore\\nsplores\\nsplosh\\nsploshed\\nsploshes\\nsploshing\\nsplotch\\nsplotched\\nsplotches\\nsplotchier\\nsplotchiest\\nsplotching\\nsplotchy\\nsplurge\\nsplurged\\nsplurges\\nsplurgier\\nsplurgiest\\nsplurging\\nsplurgy\\nsplutter\\nspluttered\\nspluttering\\nsplutters\\nspode\\nspodes\\nspoil\\nspoilage\\nspoilages\\nspoiled\\nspoiler\\nspoilers\\nspoiling\\nspoils\\nspoilt\\nspoke\\nspoked\\nspoken\\nspokes\\nspokesman\\nspokesmen\\nspokeswoman\\nspokeswomen\\nspoking\\nspoliate\\nspoliated\\nspoliates\\nspoliating\\nspondaic\\nspondaics\\nspondee\\nspondees\\nsponge\\nsponged\\nsponger\\nspongers\\nsponges\\nspongier\\nspongiest\\nspongily\\nspongin\\nsponging\\nspongins\\nspongy\\nsponsal\\nsponsion\\nsponsions\\nsponson\\nsponsons\\nsponsor\\nsponsored\\nsponsoring\\nsponsors\\nsponsorship\\nsponsorships\\nspontaneities\\nspontaneity\\nspontaneous\\nspontaneously\\nspontoon\\nspontoons\\nspoof\\nspoofed\\nspoofing\\nspoofs\\nspook\\nspooked\\nspookier\\nspookiest\\nspookily\\nspooking\\nspookish\\nspooks\\nspooky\\nspool\\nspooled\\nspooling\\nspools\\nspoon\\nspooned\\nspooney\\nspooneys\\nspoonful\\nspoonfuls\\nspoonier\\nspoonies\\nspooniest\\nspoonily\\nspooning\\nspoons\\nspoonsful\\nspoony\\nspoor\\nspoored\\nspooring\\nspoors\\nsporadic\\nsporadically\\nsporal\\nspore\\nspored\\nspores\\nsporing\\nsporoid\\nsporran\\nsporrans\\nsport\\nsported\\nsporter\\nsporters\\nsportful\\nsportier\\nsportiest\\nsportily\\nsporting\\nsportive\\nsports\\nsportscast\\nsportscaster\\nsportscasters\\nsportscasts\\nsportsman\\nsportsmanship\\nsportsmanships\\nsportsmen\\nsporty\\nsporular\\nsporule\\nsporules\\nspot\\nspotless\\nspotlessly\\nspotlight\\nspotlighted\\nspotlighting\\nspotlights\\nspots\\nspotted\\nspotter\\nspotters\\nspottier\\nspottiest\\nspottily\\nspotting\\nspotty\\nspousal\\nspousals\\nspouse\\nspoused\\nspouses\\nspousing\\nspout\\nspouted\\nspouter\\nspouters\\nspouting\\nspouts\\nspraddle\\nspraddled\\nspraddles\\nspraddling\\nsprag\\nsprags\\nsprain\\nsprained\\nspraining\\nsprains\\nsprang\\nsprat\\nsprats\\nsprattle\\nsprattled\\nsprattles\\nsprattling\\nsprawl\\nsprawled\\nsprawler\\nsprawlers\\nsprawlier\\nsprawliest\\nsprawling\\nsprawls\\nsprawly\\nspray\\nsprayed\\nsprayer\\nsprayers\\nspraying\\nsprays\\nspread\\nspreader\\nspreaders\\nspreading\\nspreads\\nspree\\nsprees\\nsprent\\nsprier\\nspriest\\nsprig\\nsprigged\\nsprigger\\nspriggers\\nspriggier\\nspriggiest\\nsprigging\\nspriggy\\nspright\\nsprightliness\\nsprightlinesses\\nsprightly\\nsprights\\nsprigs\\nspring\\nspringal\\nspringals\\nspringe\\nspringed\\nspringeing\\nspringer\\nspringers\\nspringes\\nspringier\\nspringiest\\nspringing\\nsprings\\nspringy\\nsprinkle\\nsprinkled\\nsprinkler\\nsprinklers\\nsprinkles\\nsprinkling\\nsprint\\nsprinted\\nsprinter\\nsprinters\\nsprinting\\nsprints\\nsprit\\nsprite\\nsprites\\nsprits\\nsprocket\\nsprockets\\nsprout\\nsprouted\\nsprouting\\nsprouts\\nspruce\\nspruced\\nsprucely\\nsprucer\\nspruces\\nsprucest\\nsprucier\\nspruciest\\nsprucing\\nsprucy\\nsprue\\nsprues\\nsprug\\nsprugs\\nsprung\\nspry\\nspryer\\nspryest\\nspryly\\nspryness\\nsprynesses\\nspud\\nspudded\\nspudder\\nspudders\\nspudding\\nspuds\\nspue\\nspued\\nspues\\nspuing\\nspume\\nspumed\\nspumes\\nspumier\\nspumiest\\nspuming\\nspumone\\nspumones\\nspumoni\\nspumonis\\nspumous\\nspumy\\nspun\\nspunk\\nspunked\\nspunkie\\nspunkier\\nspunkies\\nspunkiest\\nspunkily\\nspunking\\nspunks\\nspunky\\nspur\\nspurgall\\nspurgalled\\nspurgalling\\nspurgalls\\nspurge\\nspurges\\nspurious\\nspurn\\nspurned\\nspurner\\nspurners\\nspurning\\nspurns\\nspurred\\nspurrer\\nspurrers\\nspurrey\\nspurreys\\nspurrier\\nspurriers\\nspurries\\nspurring\\nspurry\\nspurs\\nspurt\\nspurted\\nspurting\\nspurtle\\nspurtles\\nspurts\\nsputa\\nsputnik\\nsputniks\\nsputter\\nsputtered\\nsputtering\\nsputters\\nsputum\\nspy\\nspyglass\\nspyglasses\\nspying\\nsquab\\nsquabbier\\nsquabbiest\\nsquabble\\nsquabbled\\nsquabbles\\nsquabbling\\nsquabby\\nsquabs\\nsquad\\nsquadded\\nsquadding\\nsquadron\\nsquadroned\\nsquadroning\\nsquadrons\\nsquads\\nsqualene\\nsqualenes\\nsqualid\\nsqualider\\nsqualidest\\nsquall\\nsqualled\\nsqualler\\nsquallers\\nsquallier\\nsqualliest\\nsqualling\\nsqualls\\nsqually\\nsqualor\\nsqualors\\nsquama\\nsquamae\\nsquamate\\nsquamose\\nsquamous\\nsquander\\nsquandered\\nsquandering\\nsquanders\\nsquare\\nsquared\\nsquarely\\nsquarer\\nsquarers\\nsquares\\nsquarest\\nsquaring\\nsquarish\\nsquash\\nsquashed\\nsquasher\\nsquashers\\nsquashes\\nsquashier\\nsquashiest\\nsquashing\\nsquashy\\nsquat\\nsquatly\\nsquats\\nsquatted\\nsquatter\\nsquattered\\nsquattering\\nsquatters\\nsquattest\\nsquattier\\nsquattiest\\nsquatting\\nsquatty\\nsquaw\\nsquawk\\nsquawked\\nsquawker\\nsquawkers\\nsquawking\\nsquawks\\nsquaws\\nsqueak\\nsqueaked\\nsqueaker\\nsqueakers\\nsqueakier\\nsqueakiest\\nsqueaking\\nsqueaks\\nsqueaky\\nsqueal\\nsquealed\\nsquealer\\nsquealers\\nsquealing\\nsqueals\\nsqueamish\\nsqueegee\\nsqueegeed\\nsqueegeeing\\nsqueegees\\nsqueeze\\nsqueezed\\nsqueezer\\nsqueezers\\nsqueezes\\nsqueezing\\nsqueg\\nsquegged\\nsquegging\\nsquegs\\nsquelch\\nsquelched\\nsquelches\\nsquelchier\\nsquelchiest\\nsquelching\\nsquelchy\\nsquib\\nsquibbed\\nsquibbing\\nsquibs\\nsquid\\nsquidded\\nsquidding\\nsquids\\nsquiffed\\nsquiffy\\nsquiggle\\nsquiggled\\nsquiggles\\nsquigglier\\nsquiggliest\\nsquiggling\\nsquiggly\\nsquilgee\\nsquilgeed\\nsquilgeeing\\nsquilgees\\nsquill\\nsquilla\\nsquillae\\nsquillas\\nsquills\\nsquinch\\nsquinched\\nsquinches\\nsquinching\\nsquinnied\\nsquinnier\\nsquinnies\\nsquinniest\\nsquinny\\nsquinnying\\nsquint\\nsquinted\\nsquinter\\nsquinters\\nsquintest\\nsquintier\\nsquintiest\\nsquinting\\nsquints\\nsquinty\\nsquire\\nsquired\\nsquireen\\nsquireens\\nsquires\\nsquiring\\nsquirish\\nsquirm\\nsquirmed\\nsquirmer\\nsquirmers\\nsquirmier\\nsquirmiest\\nsquirming\\nsquirms\\nsquirmy\\nsquirrel\\nsquirreled\\nsquirreling\\nsquirrelled\\nsquirrelling\\nsquirrels\\nsquirt\\nsquirted\\nsquirter\\nsquirters\\nsquirting\\nsquirts\\nsquish\\nsquished\\nsquishes\\nsquishier\\nsquishiest\\nsquishing\\nsquishy\\nsquoosh\\nsquooshed\\nsquooshes\\nsquooshing\\nsquush\\nsquushed\\nsquushes\\nsquushing\\nsraddha\\nsraddhas\\nsradha\\nsradhas\\nsri\\nsris\\nstab\\nstabbed\\nstabber\\nstabbers\\nstabbing\\nstabile\\nstabiles\\nstabilities\\nstability\\nstabilization\\nstabilize\\nstabilized\\nstabilizer\\nstabilizers\\nstabilizes\\nstabilizing\\nstable\\nstabled\\nstabler\\nstablers\\nstables\\nstablest\\nstabling\\nstablings\\nstablish\\nstablished\\nstablishes\\nstablishing\\nstably\\nstabs\\nstaccati\\nstaccato\\nstaccatos\\nstack\\nstacked\\nstacker\\nstackers\\nstacking\\nstacks\\nstacte\\nstactes\\nstaddle\\nstaddles\\nstade\\nstades\\nstadia\\nstadias\\nstadium\\nstadiums\\nstaff\\nstaffed\\nstaffer\\nstaffers\\nstaffing\\nstaffs\\nstag\\nstage\\nstagecoach\\nstagecoaches\\nstaged\\nstager\\nstagers\\nstages\\nstagey\\nstaggard\\nstaggards\\nstaggart\\nstaggarts\\nstagged\\nstagger\\nstaggered\\nstaggering\\nstaggeringly\\nstaggers\\nstaggery\\nstaggie\\nstaggier\\nstaggies\\nstaggiest\\nstagging\\nstaggy\\nstagier\\nstagiest\\nstagily\\nstaging\\nstagings\\nstagnant\\nstagnate\\nstagnated\\nstagnates\\nstagnating\\nstagnation\\nstagnations\\nstags\\nstagy\\nstaid\\nstaider\\nstaidest\\nstaidly\\nstaig\\nstaigs\\nstain\\nstained\\nstainer\\nstainers\\nstaining\\nstainless\\nstains\\nstair\\nstaircase\\nstaircases\\nstairs\\nstairway\\nstairways\\nstairwell\\nstairwells\\nstake\\nstaked\\nstakeout\\nstakeouts\\nstakes\\nstaking\\nstalactite\\nstalactites\\nstalag\\nstalagmite\\nstalagmites\\nstalags\\nstale\\nstaled\\nstalely\\nstalemate\\nstalemated\\nstalemates\\nstalemating\\nstaler\\nstales\\nstalest\\nstaling\\nstalinism\\nstalk\\nstalked\\nstalker\\nstalkers\\nstalkier\\nstalkiest\\nstalkily\\nstalking\\nstalks\\nstalky\\nstall\\nstalled\\nstalling\\nstallion\\nstallions\\nstalls\\nstalwart\\nstalwarts\\nstamen\\nstamens\\nstamina\\nstaminal\\nstaminas\\nstammel\\nstammels\\nstammer\\nstammered\\nstammering\\nstammers\\nstamp\\nstamped\\nstampede\\nstampeded\\nstampedes\\nstampeding\\nstamper\\nstampers\\nstamping\\nstamps\\nstance\\nstances\\nstanch\\nstanched\\nstancher\\nstanchers\\nstanches\\nstanchest\\nstanching\\nstanchion\\nstanchions\\nstanchly\\nstand\\nstandard\\nstandardization\\nstandardizations\\nstandardize\\nstandardized\\nstandardizes\\nstandardizing\\nstandards\\nstandby\\nstandbys\\nstandee\\nstandees\\nstander\\nstanders\\nstanding\\nstandings\\nstandish\\nstandishes\\nstandoff\\nstandoffs\\nstandout\\nstandouts\\nstandpat\\nstandpoint\\nstandpoints\\nstands\\nstandstill\\nstandup\\nstane\\nstaned\\nstanes\\nstang\\nstanged\\nstanging\\nstangs\\nstanhope\\nstanhopes\\nstaning\\nstank\\nstanks\\nstannaries\\nstannary\\nstannic\\nstannite\\nstannites\\nstannous\\nstannum\\nstannums\\nstanza\\nstanzaed\\nstanzaic\\nstanzas\\nstapedes\\nstapelia\\nstapelias\\nstapes\\nstaph\\nstaphs\\nstaple\\nstapled\\nstapler\\nstaplers\\nstaples\\nstapling\\nstar\\nstarboard\\nstarboards\\nstarch\\nstarched\\nstarches\\nstarchier\\nstarchiest\\nstarching\\nstarchy\\nstardom\\nstardoms\\nstardust\\nstardusts\\nstare\\nstared\\nstarer\\nstarers\\nstares\\nstarets\\nstarfish\\nstarfishes\\nstargaze\\nstargazed\\nstargazes\\nstargazing\\nstaring\\nstark\\nstarker\\nstarkest\\nstarkly\\nstarless\\nstarlet\\nstarlets\\nstarlight\\nstarlights\\nstarlike\\nstarling\\nstarlings\\nstarlit\\nstarnose\\nstarnoses\\nstarred\\nstarrier\\nstarriest\\nstarring\\nstarry\\nstars\\nstart\\nstarted\\nstarter\\nstarters\\nstarting\\nstartle\\nstartled\\nstartler\\nstartlers\\nstartles\\nstartling\\nstarts\\nstartsy\\nstarvation\\nstarvations\\nstarve\\nstarved\\nstarver\\nstarvers\\nstarves\\nstarving\\nstarwort\\nstarworts\\nstases\\nstash\\nstashed\\nstashes\\nstashing\\nstasima\\nstasimon\\nstasis\\nstatable\\nstatal\\nstatant\\nstate\\nstated\\nstatedly\\nstatehood\\nstatehoods\\nstatelier\\nstateliest\\nstateliness\\nstatelinesses\\nstately\\nstatement\\nstatements\\nstater\\nstateroom\\nstaterooms\\nstaters\\nstates\\nstatesman\\nstatesmanlike\\nstatesmanship\\nstatesmanships\\nstatesmen\\nstatic\\nstatical\\nstatice\\nstatices\\nstatics\\nstating\\nstation\\nstationary\\nstationed\\nstationer\\nstationeries\\nstationers\\nstationery\\nstationing\\nstations\\nstatism\\nstatisms\\nstatist\\nstatistic\\nstatistical\\nstatistically\\nstatistician\\nstatisticians\\nstatistics\\nstatists\\nstative\\nstatives\\nstator\\nstators\\nstatuaries\\nstatuary\\nstatue\\nstatued\\nstatues\\nstatuesque\\nstatuette\\nstatuettes\\nstature\\nstatures\\nstatus\\nstatuses\\nstatute\\nstatutes\\nstatutory\\nstaumrel\\nstaumrels\\nstaunch\\nstaunched\\nstauncher\\nstaunches\\nstaunchest\\nstaunching\\nstaunchly\\nstave\\nstaved\\nstaves\\nstaving\\nstaw\\nstay\\nstayed\\nstayer\\nstayers\\nstaying\\nstays\\nstaysail\\nstaysails\\nstead\\nsteaded\\nsteadfast\\nsteadfastly\\nsteadfastness\\nsteadfastnesses\\nsteadied\\nsteadier\\nsteadiers\\nsteadies\\nsteadiest\\nsteadily\\nsteadiness\\nsteadinesses\\nsteading\\nsteadings\\nsteads\\nsteady\\nsteadying\\nsteak\\nsteaks\\nsteal\\nstealage\\nstealages\\nstealer\\nstealers\\nstealing\\nstealings\\nsteals\\nstealth\\nstealthier\\nstealthiest\\nstealthily\\nstealths\\nstealthy\\nsteam\\nsteamboat\\nsteamboats\\nsteamed\\nsteamer\\nsteamered\\nsteamering\\nsteamers\\nsteamier\\nsteamiest\\nsteamily\\nsteaming\\nsteams\\nsteamship\\nsteamships\\nsteamy\\nsteapsin\\nsteapsins\\nstearate\\nstearates\\nstearic\\nstearin\\nstearine\\nstearines\\nstearins\\nsteatite\\nsteatites\\nstedfast\\nsteed\\nsteeds\\nsteek\\nsteeked\\nsteeking\\nsteeks\\nsteel\\nsteeled\\nsteelie\\nsteelier\\nsteelies\\nsteeliest\\nsteeling\\nsteels\\nsteely\\nsteenbok\\nsteenboks\\nsteep\\nsteeped\\nsteepen\\nsteepened\\nsteepening\\nsteepens\\nsteeper\\nsteepers\\nsteepest\\nsteeping\\nsteeple\\nsteeplechase\\nsteeplechases\\nsteepled\\nsteeples\\nsteeply\\nsteepness\\nsteepnesses\\nsteeps\\nsteer\\nsteerage\\nsteerages\\nsteered\\nsteerer\\nsteerers\\nsteering\\nsteers\\nsteeve\\nsteeved\\nsteeves\\nsteeving\\nsteevings\\nstegodon\\nstegodons\\nstein\\nsteinbok\\nsteinboks\\nsteins\\nstela\\nstelae\\nstelai\\nstelar\\nstele\\nstelene\\nsteles\\nstelic\\nstella\\nstellar\\nstellas\\nstellate\\nstellified\\nstellifies\\nstellify\\nstellifying\\nstem\\nstemless\\nstemlike\\nstemma\\nstemmas\\nstemmata\\nstemmed\\nstemmer\\nstemmeries\\nstemmers\\nstemmery\\nstemmier\\nstemmiest\\nstemming\\nstemmy\\nstems\\nstemson\\nstemsons\\nstemware\\nstemwares\\nstench\\nstenches\\nstenchier\\nstenchiest\\nstenchy\\nstencil\\nstenciled\\nstenciling\\nstencilled\\nstencilling\\nstencils\\nstengah\\nstengahs\\nsteno\\nstenographer\\nstenographers\\nstenographic\\nstenography\\nstenos\\nstenosed\\nstenoses\\nstenosis\\nstenotic\\nstentor\\nstentorian\\nstentors\\nstep\\nstepdame\\nstepdames\\nstepladder\\nstepladders\\nsteplike\\nsteppe\\nstepped\\nstepper\\nsteppers\\nsteppes\\nstepping\\nsteps\\nstepson\\nstepsons\\nstepwise\\nstere\\nstereo\\nstereoed\\nstereoing\\nstereophonic\\nstereos\\nstereotype\\nstereotyped\\nstereotypes\\nstereotyping\\nsteres\\nsteric\\nsterical\\nsterigma\\nsterigmas\\nsterigmata\\nsterile\\nsterilities\\nsterility\\nsterilization\\nsterilizations\\nsterilize\\nsterilized\\nsterilizer\\nsterilizers\\nsterilizes\\nsterilizing\\nsterlet\\nsterlets\\nsterling\\nsterlings\\nstern\\nsterna\\nsternal\\nsterner\\nsternest\\nsternite\\nsternites\\nsternly\\nsternness\\nsternnesses\\nsterns\\nsternson\\nsternsons\\nsternum\\nsternums\\nsternway\\nsternways\\nsteroid\\nsteroids\\nsterol\\nsterols\\nstertor\\nstertors\\nstet\\nstethoscope\\nstethoscopes\\nstets\\nstetson\\nstetsons\\nstetted\\nstetting\\nstevedore\\nstevedores\\nstew\\nsteward\\nstewarded\\nstewardess\\nstewardesses\\nstewarding\\nstewards\\nstewardship\\nstewardships\\nstewbum\\nstewbums\\nstewed\\nstewing\\nstewpan\\nstewpans\\nstews\\nstey\\nsthenia\\nsthenias\\nsthenic\\nstibial\\nstibine\\nstibines\\nstibium\\nstibiums\\nstibnite\\nstibnites\\nstich\\nstichic\\nstichs\\nstick\\nsticked\\nsticker\\nstickers\\nstickful\\nstickfuls\\nstickier\\nstickiest\\nstickily\\nsticking\\nstickit\\nstickle\\nstickled\\nstickler\\nsticklers\\nstickles\\nstickling\\nstickman\\nstickmen\\nstickout\\nstickouts\\nstickpin\\nstickpins\\nsticks\\nstickum\\nstickums\\nstickup\\nstickups\\nsticky\\nstied\\nsties\\nstiff\\nstiffen\\nstiffened\\nstiffening\\nstiffens\\nstiffer\\nstiffest\\nstiffish\\nstiffly\\nstiffness\\nstiffnesses\\nstiffs\\nstifle\\nstifled\\nstifler\\nstiflers\\nstifles\\nstifling\\nstigma\\nstigmal\\nstigmas\\nstigmata\\nstigmatize\\nstigmatized\\nstigmatizes\\nstigmatizing\\nstilbene\\nstilbenes\\nstilbite\\nstilbites\\nstile\\nstiles\\nstiletto\\nstilettoed\\nstilettoes\\nstilettoing\\nstilettos\\nstill\\nstillbirth\\nstillbirths\\nstillborn\\nstilled\\nstiller\\nstillest\\nstillier\\nstilliest\\nstilling\\nstillman\\nstillmen\\nstillness\\nstillnesses\\nstills\\nstilly\\nstilt\\nstilted\\nstilting\\nstilts\\nstime\\nstimes\\nstimied\\nstimies\\nstimulant\\nstimulants\\nstimulate\\nstimulated\\nstimulates\\nstimulating\\nstimulation\\nstimulations\\nstimuli\\nstimulus\\nstimy\\nstimying\\nsting\\nstinger\\nstingers\\nstingier\\nstingiest\\nstingily\\nstinginess\\nstinginesses\\nstinging\\nstingo\\nstingos\\nstingray\\nstingrays\\nstings\\nstingy\\nstink\\nstinkard\\nstinkards\\nstinkbug\\nstinkbugs\\nstinker\\nstinkers\\nstinkier\\nstinkiest\\nstinking\\nstinko\\nstinkpot\\nstinkpots\\nstinks\\nstinky\\nstint\\nstinted\\nstinter\\nstinters\\nstinting\\nstints\\nstipe\\nstiped\\nstipel\\nstipels\\nstipend\\nstipends\\nstipes\\nstipites\\nstipple\\nstippled\\nstippler\\nstipplers\\nstipples\\nstippling\\nstipular\\nstipulate\\nstipulated\\nstipulates\\nstipulating\\nstipulation\\nstipulations\\nstipule\\nstipuled\\nstipules\\nstir\\nstirk\\nstirks\\nstirp\\nstirpes\\nstirps\\nstirred\\nstirrer\\nstirrers\\nstirring\\nstirrup\\nstirrups\\nstirs\\nstitch\\nstitched\\nstitcher\\nstitchers\\nstitches\\nstitching\\nstithied\\nstithies\\nstithy\\nstithying\\nstiver\\nstivers\\nstoa\\nstoae\\nstoai\\nstoas\\nstoat\\nstoats\\nstob\\nstobbed\\nstobbing\\nstobs\\nstoccado\\nstoccados\\nstoccata\\nstoccatas\\nstock\\nstockade\\nstockaded\\nstockades\\nstockading\\nstockcar\\nstockcars\\nstocked\\nstocker\\nstockers\\nstockier\\nstockiest\\nstockily\\nstocking\\nstockings\\nstockish\\nstockist\\nstockists\\nstockman\\nstockmen\\nstockpile\\nstockpiled\\nstockpiles\\nstockpiling\\nstockpot\\nstockpots\\nstocks\\nstocky\\nstockyard\\nstockyards\\nstodge\\nstodged\\nstodges\\nstodgier\\nstodgiest\\nstodgily\\nstodging\\nstodgy\\nstogey\\nstogeys\\nstogie\\nstogies\\nstogy\\nstoic\\nstoical\\nstoically\\nstoicism\\nstoicisms\\nstoics\\nstoke\\nstoked\\nstoker\\nstokers\\nstokes\\nstokesia\\nstokesias\\nstoking\\nstole\\nstoled\\nstolen\\nstoles\\nstolid\\nstolider\\nstolidest\\nstolidities\\nstolidity\\nstolidly\\nstollen\\nstollens\\nstolon\\nstolonic\\nstolons\\nstoma\\nstomach\\nstomachache\\nstomachaches\\nstomached\\nstomaching\\nstomachs\\nstomachy\\nstomal\\nstomas\\nstomata\\nstomatal\\nstomate\\nstomates\\nstomatic\\nstomatitis\\nstomodea\\nstomp\\nstomped\\nstomper\\nstompers\\nstomping\\nstomps\\nstonable\\nstone\\nstoned\\nstoneflies\\nstonefly\\nstoner\\nstoners\\nstones\\nstoney\\nstonier\\nstoniest\\nstonily\\nstoning\\nstonish\\nstonished\\nstonishes\\nstonishing\\nstony\\nstood\\nstooge\\nstooged\\nstooges\\nstooging\\nstook\\nstooked\\nstooker\\nstookers\\nstooking\\nstooks\\nstool\\nstooled\\nstoolie\\nstoolies\\nstooling\\nstools\\nstoop\\nstooped\\nstooper\\nstoopers\\nstooping\\nstoops\\nstop\\nstopcock\\nstopcocks\\nstope\\nstoped\\nstoper\\nstopers\\nstopes\\nstopgap\\nstopgaps\\nstoping\\nstoplight\\nstoplights\\nstopover\\nstopovers\\nstoppage\\nstoppages\\nstopped\\nstopper\\nstoppered\\nstoppering\\nstoppers\\nstopping\\nstopple\\nstoppled\\nstopples\\nstoppling\\nstops\\nstopt\\nstopwatch\\nstopwatches\\nstorable\\nstorables\\nstorage\\nstorages\\nstorax\\nstoraxes\\nstore\\nstored\\nstorehouse\\nstorehouses\\nstorekeeper\\nstorekeepers\\nstoreroom\\nstorerooms\\nstores\\nstorey\\nstoreyed\\nstoreys\\nstoried\\nstories\\nstoring\\nstork\\nstorks\\nstorm\\nstormed\\nstormier\\nstormiest\\nstormily\\nstorming\\nstorms\\nstormy\\nstory\\nstorying\\nstoryteller\\nstorytellers\\nstorytelling\\nstorytellings\\nstoss\\nstotinka\\nstotinki\\nstound\\nstounded\\nstounding\\nstounds\\nstoup\\nstoups\\nstour\\nstoure\\nstoures\\nstourie\\nstours\\nstoury\\nstout\\nstouten\\nstoutened\\nstoutening\\nstoutens\\nstouter\\nstoutest\\nstoutish\\nstoutly\\nstoutness\\nstoutnesses\\nstouts\\nstove\\nstover\\nstovers\\nstoves\\nstow\\nstowable\\nstowage\\nstowages\\nstowaway\\nstowaways\\nstowed\\nstowing\\nstowp\\nstowps\\nstows\\nstraddle\\nstraddled\\nstraddles\\nstraddling\\nstrafe\\nstrafed\\nstrafer\\nstrafers\\nstrafes\\nstrafing\\nstraggle\\nstraggled\\nstraggler\\nstragglers\\nstraggles\\nstragglier\\nstraggliest\\nstraggling\\nstraggly\\nstraight\\nstraighted\\nstraighten\\nstraightened\\nstraightening\\nstraightens\\nstraighter\\nstraightest\\nstraightforward\\nstraightforwarder\\nstraightforwardest\\nstraighting\\nstraights\\nstraightway\\nstrain\\nstrained\\nstrainer\\nstrainers\\nstraining\\nstrains\\nstrait\\nstraiten\\nstraitened\\nstraitening\\nstraitens\\nstraiter\\nstraitest\\nstraitly\\nstraits\\nstrake\\nstraked\\nstrakes\\nstramash\\nstramashes\\nstramonies\\nstramony\\nstrand\\nstranded\\nstrander\\nstranders\\nstranding\\nstrands\\nstrang\\nstrange\\nstrangely\\nstrangeness\\nstrangenesses\\nstranger\\nstrangered\\nstrangering\\nstrangers\\nstrangest\\nstrangle\\nstrangled\\nstrangler\\nstranglers\\nstrangles\\nstrangling\\nstrangulation\\nstrangulations\\nstrap\\nstrapness\\nstrapnesses\\nstrapped\\nstrapper\\nstrappers\\nstrapping\\nstraps\\nstrass\\nstrasses\\nstrata\\nstratagem\\nstratagems\\nstratal\\nstratas\\nstrategic\\nstrategies\\nstrategist\\nstrategists\\nstrategy\\nstrath\\nstraths\\nstrati\\nstratification\\nstratifications\\nstratified\\nstratifies\\nstratify\\nstratifying\\nstratosphere\\nstratospheres\\nstratous\\nstratum\\nstratums\\nstratus\\nstravage\\nstravaged\\nstravages\\nstravaging\\nstravaig\\nstravaiged\\nstravaiging\\nstravaigs\\nstraw\\nstrawberries\\nstrawberry\\nstrawed\\nstrawhat\\nstrawier\\nstrawiest\\nstrawing\\nstraws\\nstrawy\\nstray\\nstrayed\\nstrayer\\nstrayers\\nstraying\\nstrays\\nstreak\\nstreaked\\nstreaker\\nstreakers\\nstreakier\\nstreakiest\\nstreaking\\nstreaks\\nstreaky\\nstream\\nstreamed\\nstreamer\\nstreamers\\nstreamier\\nstreamiest\\nstreaming\\nstreamline\\nstreamlines\\nstreams\\nstreamy\\nstreek\\nstreeked\\nstreeker\\nstreekers\\nstreeking\\nstreeks\\nstreet\\nstreetcar\\nstreetcars\\nstreets\\nstrength\\nstrengthen\\nstrengthened\\nstrengthener\\nstrengtheners\\nstrengthening\\nstrengthens\\nstrengths\\nstrenuous\\nstrenuously\\nstrep\\nstreps\\nstress\\nstressed\\nstresses\\nstressing\\nstressor\\nstressors\\nstretch\\nstretched\\nstretcher\\nstretchers\\nstretches\\nstretchier\\nstretchiest\\nstretching\\nstretchy\\nstretta\\nstrettas\\nstrette\\nstretti\\nstretto\\nstrettos\\nstreusel\\nstreusels\\nstrew\\nstrewed\\nstrewer\\nstrewers\\nstrewing\\nstrewn\\nstrews\\nstria\\nstriae\\nstriate\\nstriated\\nstriates\\nstriating\\nstrick\\nstricken\\nstrickle\\nstrickled\\nstrickles\\nstrickling\\nstricks\\nstrict\\nstricter\\nstrictest\\nstrictly\\nstrictness\\nstrictnesses\\nstricture\\nstrictures\\nstrid\\nstridden\\nstride\\nstrident\\nstrider\\nstriders\\nstrides\\nstriding\\nstridor\\nstridors\\nstrife\\nstrifes\\nstrigil\\nstrigils\\nstrigose\\nstrike\\nstriker\\nstrikers\\nstrikes\\nstriking\\nstrikingly\\nstring\\nstringed\\nstringent\\nstringer\\nstringers\\nstringier\\nstringiest\\nstringing\\nstrings\\nstringy\\nstrip\\nstripe\\nstriped\\nstriper\\nstripers\\nstripes\\nstripier\\nstripiest\\nstriping\\nstripings\\nstripped\\nstripper\\nstrippers\\nstripping\\nstrips\\nstript\\nstripy\\nstrive\\nstrived\\nstriven\\nstriver\\nstrivers\\nstrives\\nstriving\\nstrobe\\nstrobes\\nstrobic\\nstrobil\\nstrobila\\nstrobilae\\nstrobile\\nstrobiles\\nstrobili\\nstrobils\\nstrode\\nstroke\\nstroked\\nstroker\\nstrokers\\nstrokes\\nstroking\\nstroll\\nstrolled\\nstroller\\nstrollers\\nstrolling\\nstrolls\\nstroma\\nstromal\\nstromata\\nstrong\\nstronger\\nstrongest\\nstronghold\\nstrongholds\\nstrongly\\nstrongyl\\nstrongyls\\nstrontia\\nstrontias\\nstrontic\\nstrontium\\nstrontiums\\nstrook\\nstrop\\nstrophe\\nstrophes\\nstrophic\\nstropped\\nstropping\\nstrops\\nstroud\\nstrouds\\nstrove\\nstrow\\nstrowed\\nstrowing\\nstrown\\nstrows\\nstroy\\nstroyed\\nstroyer\\nstroyers\\nstroying\\nstroys\\nstruck\\nstrucken\\nstructural\\nstructure\\nstructures\\nstrudel\\nstrudels\\nstruggle\\nstruggled\\nstruggles\\nstruggling\\nstrum\\nstruma\\nstrumae\\nstrumas\\nstrummed\\nstrummer\\nstrummers\\nstrumming\\nstrumose\\nstrumous\\nstrumpet\\nstrumpets\\nstrums\\nstrung\\nstrunt\\nstrunted\\nstrunting\\nstrunts\\nstrut\\nstruts\\nstrutted\\nstrutter\\nstrutters\\nstrutting\\nstrychnine\\nstrychnines\\nstub\\nstubbed\\nstubbier\\nstubbiest\\nstubbily\\nstubbing\\nstubble\\nstubbled\\nstubbles\\nstubblier\\nstubbliest\\nstubbly\\nstubborn\\nstubbornly\\nstubbornness\\nstubbornnesses\\nstubby\\nstubiest\\nstubs\\nstucco\\nstuccoed\\nstuccoer\\nstuccoers\\nstuccoes\\nstuccoing\\nstuccos\\nstuck\\nstud\\nstudbook\\nstudbooks\\nstudded\\nstuddie\\nstuddies\\nstudding\\nstuddings\\nstudent\\nstudents\\nstudfish\\nstudfishes\\nstudied\\nstudier\\nstudiers\\nstudies\\nstudio\\nstudios\\nstudious\\nstudiously\\nstuds\\nstudwork\\nstudworks\\nstudy\\nstudying\\nstuff\\nstuffed\\nstuffer\\nstuffers\\nstuffier\\nstuffiest\\nstuffily\\nstuffing\\nstuffings\\nstuffs\\nstuffy\\nstuiver\\nstuivers\\nstull\\nstulls\\nstultification\\nstultifications\\nstultified\\nstultifies\\nstultify\\nstultifying\\nstum\\nstumble\\nstumbled\\nstumbler\\nstumblers\\nstumbles\\nstumbling\\nstummed\\nstumming\\nstump\\nstumpage\\nstumpages\\nstumped\\nstumper\\nstumpers\\nstumpier\\nstumpiest\\nstumping\\nstumps\\nstumpy\\nstums\\nstun\\nstung\\nstunk\\nstunned\\nstunner\\nstunners\\nstunning\\nstunningly\\nstuns\\nstunsail\\nstunsails\\nstunt\\nstunted\\nstunting\\nstunts\\nstupa\\nstupas\\nstupe\\nstupefaction\\nstupefactions\\nstupefied\\nstupefies\\nstupefy\\nstupefying\\nstupendous\\nstupendously\\nstupes\\nstupid\\nstupider\\nstupidest\\nstupidity\\nstupidly\\nstupids\\nstupor\\nstuporous\\nstupors\\nsturdied\\nsturdier\\nsturdies\\nsturdiest\\nsturdily\\nsturdiness\\nsturdinesses\\nsturdy\\nsturgeon\\nsturgeons\\nsturt\\nsturts\\nstutter\\nstuttered\\nstuttering\\nstutters\\nsty\\nstye\\nstyed\\nstyes\\nstygian\\nstying\\nstylar\\nstylate\\nstyle\\nstyled\\nstyler\\nstylers\\nstyles\\nstylet\\nstylets\\nstyli\\nstyling\\nstylings\\nstylise\\nstylised\\nstyliser\\nstylisers\\nstylises\\nstylish\\nstylishly\\nstylishness\\nstylishnesses\\nstylising\\nstylist\\nstylists\\nstylite\\nstylites\\nstylitic\\nstylize\\nstylized\\nstylizer\\nstylizers\\nstylizes\\nstylizing\\nstyloid\\nstylus\\nstyluses\\nstymie\\nstymied\\nstymieing\\nstymies\\nstymy\\nstymying\\nstypsis\\nstypsises\\nstyptic\\nstyptics\\nstyrax\\nstyraxes\\nstyrene\\nstyrenes\\nsuable\\nsuably\\nsuasion\\nsuasions\\nsuasive\\nsuasory\\nsuave\\nsuavely\\nsuaver\\nsuavest\\nsuavities\\nsuavity\\nsub\\nsuba\\nsubabbot\\nsubabbots\\nsubacid\\nsubacrid\\nsubacute\\nsubadar\\nsubadars\\nsubadult\\nsubadults\\nsubagencies\\nsubagency\\nsubagent\\nsubagents\\nsubah\\nsubahdar\\nsubahdars\\nsubahs\\nsubalar\\nsubarctic\\nsubarea\\nsubareas\\nsubarid\\nsubas\\nsubatmospheric\\nsubatom\\nsubatoms\\nsubaverage\\nsubaxial\\nsubbase\\nsubbasement\\nsubbasements\\nsubbases\\nsubbass\\nsubbasses\\nsubbed\\nsubbing\\nsubbings\\nsubbranch\\nsubbranches\\nsubbreed\\nsubbreeds\\nsubcabinet\\nsubcabinets\\nsubcategories\\nsubcategory\\nsubcause\\nsubcauses\\nsubcell\\nsubcells\\nsubchief\\nsubchiefs\\nsubclan\\nsubclans\\nsubclass\\nsubclassed\\nsubclasses\\nsubclassification\\nsubclassifications\\nsubclassified\\nsubclassifies\\nsubclassify\\nsubclassifying\\nsubclassing\\nsubclerk\\nsubclerks\\nsubcommand\\nsubcommands\\nsubcommission\\nsubcommissions\\nsubcommunities\\nsubcommunity\\nsubcomponent\\nsubcomponents\\nsubconcept\\nsubconcepts\\nsubconscious\\nsubconsciouses\\nsubconsciously\\nsubconsciousness\\nsubconsciousnesses\\nsubcontract\\nsubcontracted\\nsubcontracting\\nsubcontractor\\nsubcontractors\\nsubcontracts\\nsubcool\\nsubcooled\\nsubcooling\\nsubcools\\nsubculture\\nsubcultures\\nsubcutaneous\\nsubcutes\\nsubcutis\\nsubcutises\\nsubdean\\nsubdeans\\nsubdeb\\nsubdebs\\nsubdepartment\\nsubdepartments\\nsubdepot\\nsubdepots\\nsubdistrict\\nsubdistricts\\nsubdivide\\nsubdivided\\nsubdivides\\nsubdividing\\nsubdivision\\nsubdivisions\\nsubdual\\nsubduals\\nsubduce\\nsubduced\\nsubduces\\nsubducing\\nsubduct\\nsubducted\\nsubducting\\nsubducts\\nsubdue\\nsubdued\\nsubduer\\nsubduers\\nsubdues\\nsubduing\\nsubecho\\nsubechoes\\nsubedit\\nsubedited\\nsubediting\\nsubedits\\nsubentries\\nsubentry\\nsubepoch\\nsubepochs\\nsubequatorial\\nsuber\\nsuberect\\nsuberic\\nsuberin\\nsuberins\\nsuberise\\nsuberised\\nsuberises\\nsuberising\\nsuberize\\nsuberized\\nsuberizes\\nsuberizing\\nsuberose\\nsuberous\\nsubers\\nsubfamilies\\nsubfamily\\nsubfield\\nsubfields\\nsubfix\\nsubfixes\\nsubfloor\\nsubfloors\\nsubfluid\\nsubfreezing\\nsubfusc\\nsubgenera\\nsubgenus\\nsubgenuses\\nsubgrade\\nsubgrades\\nsubgroup\\nsubgroups\\nsubgum\\nsubhead\\nsubheading\\nsubheadings\\nsubheads\\nsubhuman\\nsubhumans\\nsubhumid\\nsubidea\\nsubideas\\nsubindex\\nsubindexes\\nsubindices\\nsubindustries\\nsubindustry\\nsubitem\\nsubitems\\nsubito\\nsubject\\nsubjected\\nsubjecting\\nsubjection\\nsubjections\\nsubjective\\nsubjectively\\nsubjectivities\\nsubjectivity\\nsubjects\\nsubjoin\\nsubjoined\\nsubjoining\\nsubjoins\\nsubjugate\\nsubjugated\\nsubjugates\\nsubjugating\\nsubjugation\\nsubjugations\\nsubjunctive\\nsubjunctives\\nsublate\\nsublated\\nsublates\\nsublating\\nsublease\\nsubleased\\nsubleases\\nsubleasing\\nsublet\\nsublethal\\nsublets\\nsubletting\\nsublevel\\nsublevels\\nsublime\\nsublimed\\nsublimer\\nsublimers\\nsublimes\\nsublimest\\nsubliming\\nsublimities\\nsublimity\\nsubliterate\\nsubmarine\\nsubmarines\\nsubmerge\\nsubmerged\\nsubmergence\\nsubmergences\\nsubmerges\\nsubmerging\\nsubmerse\\nsubmersed\\nsubmerses\\nsubmersible\\nsubmersing\\nsubmersion\\nsubmersions\\nsubmiss\\nsubmission\\nsubmissions\\nsubmissive\\nsubmit\\nsubmits\\nsubmitted\\nsubmitting\\nsubnasal\\nsubnetwork\\nsubnetworks\\nsubnodal\\nsubnormal\\nsuboceanic\\nsuboptic\\nsuboral\\nsuborder\\nsuborders\\nsubordinate\\nsubordinated\\nsubordinates\\nsubordinating\\nsubordination\\nsubordinations\\nsuborn\\nsuborned\\nsuborner\\nsuborners\\nsuborning\\nsuborns\\nsuboval\\nsubovate\\nsuboxide\\nsuboxides\\nsubpar\\nsubpart\\nsubparts\\nsubpena\\nsubpenaed\\nsubpenaing\\nsubpenas\\nsubphyla\\nsubplot\\nsubplots\\nsubpoena\\nsubpoenaed\\nsubpoenaing\\nsubpoenas\\nsubpolar\\nsubprincipal\\nsubprincipals\\nsubprocess\\nsubprocesses\\nsubprogram\\nsubprograms\\nsubproject\\nsubprojects\\nsubpubic\\nsubrace\\nsubraces\\nsubregion\\nsubregions\\nsubrent\\nsubrents\\nsubring\\nsubrings\\nsubroutine\\nsubroutines\\nsubrule\\nsubrules\\nsubs\\nsubsale\\nsubsales\\nsubscribe\\nsubscribed\\nsubscriber\\nsubscribers\\nsubscribes\\nsubscribing\\nsubscript\\nsubscription\\nsubscriptions\\nsubscripts\\nsubsect\\nsubsection\\nsubsections\\nsubsects\\nsubsequent\\nsubsequently\\nsubsere\\nsubseres\\nsubserve\\nsubserved\\nsubserves\\nsubserving\\nsubset\\nsubsets\\nsubshaft\\nsubshafts\\nsubshrub\\nsubshrubs\\nsubside\\nsubsided\\nsubsider\\nsubsiders\\nsubsides\\nsubsidiaries\\nsubsidiary\\nsubsidies\\nsubsiding\\nsubsidize\\nsubsidized\\nsubsidizes\\nsubsidizing\\nsubsidy\\nsubsist\\nsubsisted\\nsubsistence\\nsubsistences\\nsubsisting\\nsubsists\\nsubsoil\\nsubsoiled\\nsubsoiling\\nsubsoils\\nsubsolar\\nsubsonic\\nsubspace\\nsubspaces\\nsubspecialties\\nsubspecialty\\nsubspecies\\nsubstage\\nsubstages\\nsubstandard\\nsubstantial\\nsubstantially\\nsubstantiate\\nsubstantiated\\nsubstantiates\\nsubstantiating\\nsubstantiation\\nsubstantiations\\nsubstitute\\nsubstituted\\nsubstitutes\\nsubstituting\\nsubstitution\\nsubstitutions\\nsubstructure\\nsubstructures\\nsubsume\\nsubsumed\\nsubsumes\\nsubsuming\\nsubsurface\\nsubsystem\\nsubsystems\\nsubteen\\nsubteens\\nsubtemperate\\nsubtend\\nsubtended\\nsubtending\\nsubtends\\nsubterfuge\\nsubterfuges\\nsubterranean\\nsubterraneous\\nsubtext\\nsubtexts\\nsubtile\\nsubtiler\\nsubtilest\\nsubtilties\\nsubtilty\\nsubtitle\\nsubtitled\\nsubtitles\\nsubtitling\\nsubtle\\nsubtler\\nsubtlest\\nsubtleties\\nsubtlety\\nsubtly\\nsubtone\\nsubtones\\nsubtonic\\nsubtonics\\nsubtopic\\nsubtopics\\nsubtotal\\nsubtotaled\\nsubtotaling\\nsubtotalled\\nsubtotalling\\nsubtotals\\nsubtract\\nsubtracted\\nsubtracting\\nsubtraction\\nsubtractions\\nsubtracts\\nsubtreasuries\\nsubtreasury\\nsubtribe\\nsubtribes\\nsubtunic\\nsubtunics\\nsubtype\\nsubtypes\\nsubulate\\nsubunit\\nsubunits\\nsuburb\\nsuburban\\nsuburbans\\nsuburbed\\nsuburbia\\nsuburbias\\nsuburbs\\nsubvene\\nsubvened\\nsubvenes\\nsubvening\\nsubvert\\nsubverted\\nsubverting\\nsubverts\\nsubvicar\\nsubvicars\\nsubviral\\nsubvocal\\nsubway\\nsubways\\nsubzone\\nsubzones\\nsuccah\\nsuccahs\\nsucceed\\nsucceeded\\nsucceeding\\nsucceeds\\nsuccess\\nsuccesses\\nsuccessful\\nsuccessfully\\nsuccession\\nsuccessions\\nsuccessive\\nsuccessively\\nsuccessor\\nsuccessors\\nsuccinct\\nsuccincter\\nsuccinctest\\nsuccinctly\\nsuccinctness\\nsuccinctnesses\\nsuccinic\\nsuccinyl\\nsuccinyls\\nsuccor\\nsuccored\\nsuccorer\\nsuccorers\\nsuccories\\nsuccoring\\nsuccors\\nsuccory\\nsuccotash\\nsuccotashes\\nsuccoth\\nsuccour\\nsuccoured\\nsuccouring\\nsuccours\\nsuccuba\\nsuccubae\\nsuccubi\\nsuccubus\\nsuccubuses\\nsucculence\\nsucculences\\nsucculent\\nsucculents\\nsuccumb\\nsuccumbed\\nsuccumbing\\nsuccumbs\\nsuccuss\\nsuccussed\\nsuccusses\\nsuccussing\\nsuch\\nsuchlike\\nsuchness\\nsuchnesses\\nsuck\\nsucked\\nsucker\\nsuckered\\nsuckering\\nsuckers\\nsuckfish\\nsuckfishes\\nsucking\\nsuckle\\nsuckled\\nsuckler\\nsucklers\\nsuckles\\nsuckless\\nsuckling\\nsucklings\\nsucks\\nsucrase\\nsucrases\\nsucre\\nsucres\\nsucrose\\nsucroses\\nsuction\\nsuctions\\nsudaria\\nsudaries\\nsudarium\\nsudary\\nsudation\\nsudations\\nsudatories\\nsudatory\\nsudd\\nsudden\\nsuddenly\\nsuddenness\\nsuddennesses\\nsuddens\\nsudds\\nsudor\\nsudoral\\nsudors\\nsuds\\nsudsed\\nsudser\\nsudsers\\nsudses\\nsudsier\\nsudsiest\\nsudsing\\nsudsless\\nsudsy\\nsue\\nsued\\nsuede\\nsueded\\nsuedes\\nsueding\\nsuer\\nsuers\\nsues\\nsuet\\nsuets\\nsuety\\nsuffari\\nsuffaris\\nsuffer\\nsuffered\\nsufferer\\nsufferers\\nsuffering\\nsufferings\\nsuffers\\nsuffice\\nsufficed\\nsufficer\\nsufficers\\nsuffices\\nsufficiencies\\nsufficiency\\nsufficient\\nsufficiently\\nsufficing\\nsuffix\\nsuffixal\\nsuffixation\\nsuffixations\\nsuffixed\\nsuffixes\\nsuffixing\\nsufflate\\nsufflated\\nsufflates\\nsufflating\\nsuffocate\\nsuffocated\\nsuffocates\\nsuffocating\\nsuffocatingly\\nsuffocation\\nsuffocations\\nsuffrage\\nsuffrages\\nsuffuse\\nsuffused\\nsuffuses\\nsuffusing\\nsugar\\nsugarcane\\nsugarcanes\\nsugared\\nsugarier\\nsugariest\\nsugaring\\nsugars\\nsugary\\nsuggest\\nsuggested\\nsuggestible\\nsuggesting\\nsuggestion\\nsuggestions\\nsuggestive\\nsuggestively\\nsuggestiveness\\nsuggestivenesses\\nsuggests\\nsugh\\nsughed\\nsughing\\nsughs\\nsuicidal\\nsuicide\\nsuicided\\nsuicides\\nsuiciding\\nsuing\\nsuint\\nsuints\\nsuit\\nsuitabilities\\nsuitability\\nsuitable\\nsuitably\\nsuitcase\\nsuitcases\\nsuite\\nsuited\\nsuites\\nsuiting\\nsuitings\\nsuitlike\\nsuitor\\nsuitors\\nsuits\\nsukiyaki\\nsukiyakis\\nsukkah\\nsukkahs\\nsukkoth\\nsulcate\\nsulcated\\nsulci\\nsulcus\\nsuldan\\nsuldans\\nsulfa\\nsulfas\\nsulfate\\nsulfated\\nsulfates\\nsulfating\\nsulfid\\nsulfide\\nsulfides\\nsulfids\\nsulfinyl\\nsulfinyls\\nsulfite\\nsulfites\\nsulfitic\\nsulfo\\nsulfonal\\nsulfonals\\nsulfone\\nsulfones\\nsulfonic\\nsulfonyl\\nsulfonyls\\nsulfur\\nsulfured\\nsulfureous\\nsulfuret\\nsulfureted\\nsulfureting\\nsulfurets\\nsulfuretted\\nsulfuretting\\nsulfuric\\nsulfuring\\nsulfurous\\nsulfurs\\nsulfury\\nsulfuryl\\nsulfuryls\\nsulk\\nsulked\\nsulker\\nsulkers\\nsulkier\\nsulkies\\nsulkiest\\nsulkily\\nsulkiness\\nsulkinesses\\nsulking\\nsulks\\nsulky\\nsullage\\nsullages\\nsullen\\nsullener\\nsullenest\\nsullenly\\nsullenness\\nsullennesses\\nsullied\\nsullies\\nsully\\nsullying\\nsulpha\\nsulphas\\nsulphate\\nsulphated\\nsulphates\\nsulphating\\nsulphid\\nsulphide\\nsulphides\\nsulphids\\nsulphite\\nsulphites\\nsulphone\\nsulphones\\nsulphur\\nsulphured\\nsulphuring\\nsulphurs\\nsulphury\\nsultan\\nsultana\\nsultanas\\nsultanate\\nsultanated\\nsultanates\\nsultanating\\nsultanic\\nsultans\\nsultrier\\nsultriest\\nsultrily\\nsultry\\nsum\\nsumac\\nsumach\\nsumachs\\nsumacs\\nsumless\\nsumma\\nsummable\\nsummae\\nsummand\\nsummands\\nsummaries\\nsummarily\\nsummarization\\nsummarizations\\nsummarize\\nsummarized\\nsummarizes\\nsummarizing\\nsummary\\nsummas\\nsummate\\nsummated\\nsummates\\nsummating\\nsummation\\nsummations\\nsummed\\nsummer\\nsummered\\nsummerier\\nsummeriest\\nsummering\\nsummerly\\nsummers\\nsummery\\nsumming\\nsummit\\nsummital\\nsummitries\\nsummitry\\nsummits\\nsummon\\nsummoned\\nsummoner\\nsummoners\\nsummoning\\nsummons\\nsummonsed\\nsummonses\\nsummonsing\\nsumo\\nsumos\\nsump\\nsumps\\nsumpter\\nsumpters\\nsumptuous\\nsumpweed\\nsumpweeds\\nsums\\nsun\\nsunback\\nsunbaked\\nsunbath\\nsunbathe\\nsunbathed\\nsunbathes\\nsunbathing\\nsunbaths\\nsunbeam\\nsunbeams\\nsunbird\\nsunbirds\\nsunbow\\nsunbows\\nsunburn\\nsunburned\\nsunburning\\nsunburns\\nsunburnt\\nsunburst\\nsunbursts\\nsundae\\nsundaes\\nsunder\\nsundered\\nsunderer\\nsunderers\\nsundering\\nsunders\\nsundew\\nsundews\\nsundial\\nsundials\\nsundog\\nsundogs\\nsundown\\nsundowns\\nsundries\\nsundrops\\nsundry\\nsunfast\\nsunfish\\nsunfishes\\nsunflower\\nsunflowers\\nsung\\nsunglass\\nsunglasses\\nsunglow\\nsunglows\\nsunk\\nsunken\\nsunket\\nsunkets\\nsunlamp\\nsunlamps\\nsunland\\nsunlands\\nsunless\\nsunlight\\nsunlights\\nsunlike\\nsunlit\\nsunn\\nsunna\\nsunnas\\nsunned\\nsunnier\\nsunniest\\nsunnily\\nsunning\\nsunns\\nsunny\\nsunrise\\nsunrises\\nsunroof\\nsunroofs\\nsunroom\\nsunrooms\\nsuns\\nsunscald\\nsunscalds\\nsunset\\nsunsets\\nsunshade\\nsunshades\\nsunshine\\nsunshines\\nsunshiny\\nsunspot\\nsunspots\\nsunstone\\nsunstones\\nsunstroke\\nsunsuit\\nsunsuits\\nsuntan\\nsuntans\\nsunup\\nsunups\\nsunward\\nsunwards\\nsunwise\\nsup\\nsupe\\nsuper\\nsuperabundance\\nsuperabundances\\nsuperabundant\\nsuperadd\\nsuperadded\\nsuperadding\\nsuperadds\\nsuperambitious\\nsuperathlete\\nsuperathletes\\nsuperb\\nsuperber\\nsuperbest\\nsuperbly\\nsuperbomb\\nsuperbombs\\nsupercilious\\nsuperclean\\nsupercold\\nsupercolossal\\nsuperconvenient\\nsuperdense\\nsupered\\nsupereffective\\nsuperefficiencies\\nsuperefficiency\\nsuperefficient\\nsuperego\\nsuperegos\\nsuperenthusiasm\\nsuperenthusiasms\\nsuperenthusiastic\\nsuperfast\\nsuperficial\\nsuperficialities\\nsuperficiality\\nsuperficially\\nsuperfix\\nsuperfixes\\nsuperfluity\\nsuperfluous\\nsupergood\\nsupergovernment\\nsupergovernments\\nsupergroup\\nsupergroups\\nsuperhard\\nsuperhero\\nsuperheroine\\nsuperheroines\\nsuperheros\\nsuperhuman\\nsuperhumans\\nsuperimpose\\nsuperimposed\\nsuperimposes\\nsuperimposing\\nsupering\\nsuperintellectual\\nsuperintellectuals\\nsuperintelligence\\nsuperintelligences\\nsuperintelligent\\nsuperintend\\nsuperintended\\nsuperintendence\\nsuperintendences\\nsuperintendencies\\nsuperintendency\\nsuperintendent\\nsuperintendents\\nsuperintending\\nsuperintends\\nsuperior\\nsuperiorities\\nsuperiority\\nsuperiors\\nsuperjet\\nsuperjets\\nsuperlain\\nsuperlative\\nsuperlatively\\nsuperlay\\nsuperlie\\nsuperlies\\nsuperlying\\nsuperman\\nsupermarket\\nsupermarkets\\nsupermen\\nsupermodern\\nsupernal\\nsupernatural\\nsupernaturally\\nsuperpatriot\\nsuperpatriotic\\nsuperpatriotism\\nsuperpatriotisms\\nsuperpatriots\\nsuperplane\\nsuperplanes\\nsuperpolite\\nsuperport\\nsuperports\\nsuperpowerful\\nsuperrefined\\nsuperrich\\nsupers\\nsupersalesman\\nsupersalesmen\\nsuperscout\\nsuperscouts\\nsuperscript\\nsuperscripts\\nsupersecrecies\\nsupersecrecy\\nsupersecret\\nsupersede\\nsuperseded\\nsupersedes\\nsuperseding\\nsupersensitive\\nsupersex\\nsupersexes\\nsupership\\nsuperships\\nsupersize\\nsupersized\\nsuperslick\\nsupersmooth\\nsupersoft\\nsupersonic\\nsuperspecial\\nsuperspecialist\\nsuperspecialists\\nsuperstar\\nsuperstars\\nsuperstate\\nsuperstates\\nsuperstition\\nsuperstitions\\nsuperstitious\\nsuperstrength\\nsuperstrengths\\nsuperstrong\\nsuperstructure\\nsuperstructures\\nsupersuccessful\\nsupersystem\\nsupersystems\\nsupertanker\\nsupertankers\\nsupertax\\nsupertaxes\\nsuperthick\\nsuperthin\\nsupertight\\nsupertough\\nsupervene\\nsupervened\\nsupervenes\\nsupervenient\\nsupervening\\nsupervise\\nsupervised\\nsupervises\\nsupervising\\nsupervision\\nsupervisions\\nsupervisor\\nsupervisors\\nsupervisory\\nsuperweak\\nsuperweapon\\nsuperweapons\\nsuperwoman\\nsuperwomen\\nsupes\\nsupinate\\nsupinated\\nsupinates\\nsupinating\\nsupine\\nsupinely\\nsupines\\nsupped\\nsupper\\nsuppers\\nsupping\\nsupplant\\nsupplanted\\nsupplanting\\nsupplants\\nsupple\\nsuppled\\nsupplely\\nsupplement\\nsupplemental\\nsupplementary\\nsupplements\\nsuppler\\nsupples\\nsupplest\\nsuppliant\\nsuppliants\\nsupplicant\\nsupplicants\\nsupplicate\\nsupplicated\\nsupplicates\\nsupplicating\\nsupplication\\nsupplications\\nsupplied\\nsupplier\\nsuppliers\\nsupplies\\nsuppling\\nsupply\\nsupplying\\nsupport\\nsupportable\\nsupported\\nsupporter\\nsupporters\\nsupporting\\nsupportive\\nsupports\\nsupposal\\nsupposals\\nsuppose\\nsupposed\\nsupposer\\nsupposers\\nsupposes\\nsupposing\\nsupposition\\nsuppositions\\nsuppositories\\nsuppository\\nsuppress\\nsuppressed\\nsuppresses\\nsuppressing\\nsuppression\\nsuppressions\\nsuppurate\\nsuppurated\\nsuppurates\\nsuppurating\\nsuppuration\\nsuppurations\\nsupra\\nsupraclavicular\\nsupremacies\\nsupremacy\\nsupreme\\nsupremely\\nsupremer\\nsupremest\\nsups\\nsura\\nsurah\\nsurahs\\nsural\\nsuras\\nsurbase\\nsurbased\\nsurbases\\nsurcease\\nsurceased\\nsurceases\\nsurceasing\\nsurcharge\\nsurcharges\\nsurcoat\\nsurcoats\\nsurd\\nsurds\\nsure\\nsurefire\\nsurely\\nsureness\\nsurenesses\\nsurer\\nsurest\\nsureties\\nsurety\\nsurf\\nsurfable\\nsurface\\nsurfaced\\nsurfacer\\nsurfacers\\nsurfaces\\nsurfacing\\nsurfbird\\nsurfbirds\\nsurfboat\\nsurfboats\\nsurfed\\nsurfeit\\nsurfeited\\nsurfeiting\\nsurfeits\\nsurfer\\nsurfers\\nsurffish\\nsurffishes\\nsurfier\\nsurfiest\\nsurfing\\nsurfings\\nsurflike\\nsurfs\\nsurfy\\nsurge\\nsurged\\nsurgeon\\nsurgeons\\nsurger\\nsurgeries\\nsurgers\\nsurgery\\nsurges\\nsurgical\\nsurgically\\nsurging\\nsurgy\\nsuricate\\nsuricates\\nsurlier\\nsurliest\\nsurlily\\nsurly\\nsurmise\\nsurmised\\nsurmiser\\nsurmisers\\nsurmises\\nsurmising\\nsurmount\\nsurmounted\\nsurmounting\\nsurmounts\\nsurname\\nsurnamed\\nsurnamer\\nsurnamers\\nsurnames\\nsurnaming\\nsurpass\\nsurpassed\\nsurpasses\\nsurpassing\\nsurpassingly\\nsurplice\\nsurplices\\nsurplus\\nsurpluses\\nsurprint\\nsurprinted\\nsurprinting\\nsurprints\\nsurprise\\nsurprised\\nsurprises\\nsurprising\\nsurprisingly\\nsurprize\\nsurprized\\nsurprizes\\nsurprizing\\nsurra\\nsurras\\nsurreal\\nsurrealism\\nsurrender\\nsurrendered\\nsurrendering\\nsurrenders\\nsurreptitious\\nsurreptitiously\\nsurrey\\nsurreys\\nsurround\\nsurrounded\\nsurrounding\\nsurroundings\\nsurrounds\\nsurroyal\\nsurroyals\\nsurtax\\nsurtaxed\\nsurtaxes\\nsurtaxing\\nsurtout\\nsurtouts\\nsurveil\\nsurveiled\\nsurveiling\\nsurveillance\\nsurveillances\\nsurveils\\nsurvey\\nsurveyed\\nsurveying\\nsurveyor\\nsurveyors\\nsurveys\\nsurvival\\nsurvivals\\nsurvive\\nsurvived\\nsurviver\\nsurvivers\\nsurvives\\nsurviving\\nsurvivor\\nsurvivors\\nsurvivorship\\nsurvivorships\\nsusceptibilities\\nsusceptibility\\nsusceptible\\nsuslik\\nsusliks\\nsuspect\\nsuspected\\nsuspecting\\nsuspects\\nsuspend\\nsuspended\\nsuspender\\nsuspenders\\nsuspending\\nsuspends\\nsuspense\\nsuspenseful\\nsuspenses\\nsuspension\\nsuspensions\\nsuspicion\\nsuspicions\\nsuspicious\\nsuspiciously\\nsuspire\\nsuspired\\nsuspires\\nsuspiring\\nsustain\\nsustained\\nsustaining\\nsustains\\nsustenance\\nsustenances\\nsusurrus\\nsusurruses\\nsutler\\nsutlers\\nsutra\\nsutras\\nsutta\\nsuttas\\nsuttee\\nsuttees\\nsutural\\nsuture\\nsutured\\nsutures\\nsuturing\\nsuzerain\\nsuzerains\\nsvaraj\\nsvarajes\\nsvedberg\\nsvedbergs\\nsvelte\\nsveltely\\nsvelter\\nsveltest\\nswab\\nswabbed\\nswabber\\nswabbers\\nswabbie\\nswabbies\\nswabbing\\nswabby\\nswabs\\nswaddle\\nswaddled\\nswaddles\\nswaddling\\nswag\\nswage\\nswaged\\nswager\\nswagers\\nswages\\nswagged\\nswagger\\nswaggered\\nswaggering\\nswaggers\\nswagging\\nswaging\\nswagman\\nswagmen\\nswags\\nswail\\nswails\\nswain\\nswainish\\nswains\\nswale\\nswales\\nswallow\\nswallowed\\nswallowing\\nswallows\\nswam\\nswami\\nswamies\\nswamis\\nswamp\\nswamped\\nswamper\\nswampers\\nswampier\\nswampiest\\nswamping\\nswampish\\nswamps\\nswampy\\nswamy\\nswan\\nswang\\nswanherd\\nswanherds\\nswank\\nswanked\\nswanker\\nswankest\\nswankier\\nswankiest\\nswankily\\nswanking\\nswanks\\nswanky\\nswanlike\\nswanned\\nswanneries\\nswannery\\nswanning\\nswanpan\\nswanpans\\nswans\\nswanskin\\nswanskins\\nswap\\nswapped\\nswapper\\nswappers\\nswapping\\nswaps\\nswaraj\\nswarajes\\nsward\\nswarded\\nswarding\\nswards\\nsware\\nswarf\\nswarfs\\nswarm\\nswarmed\\nswarmer\\nswarmers\\nswarming\\nswarms\\nswart\\nswarth\\nswarthier\\nswarthiest\\nswarths\\nswarthy\\nswarty\\nswash\\nswashbuckler\\nswashbucklers\\nswashbuckling\\nswashbucklings\\nswashed\\nswasher\\nswashers\\nswashes\\nswashing\\nswastica\\nswasticas\\nswastika\\nswastikas\\nswat\\nswatch\\nswatches\\nswath\\nswathe\\nswathed\\nswather\\nswathers\\nswathes\\nswathing\\nswaths\\nswats\\nswatted\\nswatter\\nswatters\\nswatting\\nsway\\nswayable\\nswayback\\nswaybacks\\nswayed\\nswayer\\nswayers\\nswayful\\nswaying\\nsways\\nswear\\nswearer\\nswearers\\nswearing\\nswears\\nsweat\\nsweatbox\\nsweatboxes\\nsweated\\nsweater\\nsweaters\\nsweatier\\nsweatiest\\nsweatily\\nsweating\\nsweats\\nsweaty\\nswede\\nswedes\\nsweenies\\nsweeny\\nsweep\\nsweeper\\nsweepers\\nsweepier\\nsweepiest\\nsweeping\\nsweepings\\nsweeps\\nsweepstakes\\nsweepy\\nsweer\\nsweet\\nsweeten\\nsweetened\\nsweetener\\nsweeteners\\nsweetening\\nsweetens\\nsweeter\\nsweetest\\nsweetheart\\nsweethearts\\nsweetie\\nsweeties\\nsweeting\\nsweetings\\nsweetish\\nsweetly\\nsweetness\\nsweetnesses\\nsweets\\nsweetsop\\nsweetsops\\nswell\\nswelled\\nsweller\\nswellest\\nswelling\\nswellings\\nswells\\nswelter\\nsweltered\\nsweltering\\nswelters\\nsweltrier\\nsweltriest\\nsweltry\\nswept\\nswerve\\nswerved\\nswerver\\nswervers\\nswerves\\nswerving\\nsweven\\nswevens\\nswift\\nswifter\\nswifters\\nswiftest\\nswiftly\\nswiftness\\nswiftnesses\\nswifts\\nswig\\nswigged\\nswigger\\nswiggers\\nswigging\\nswigs\\nswill\\nswilled\\nswiller\\nswillers\\nswilling\\nswills\\nswim\\nswimmer\\nswimmers\\nswimmier\\nswimmiest\\nswimmily\\nswimming\\nswimmings\\nswimmy\\nswims\\nswimsuit\\nswimsuits\\nswindle\\nswindled\\nswindler\\nswindlers\\nswindles\\nswindling\\nswine\\nswinepox\\nswinepoxes\\nswing\\nswinge\\nswinged\\nswingeing\\nswinger\\nswingers\\nswinges\\nswingier\\nswingiest\\nswinging\\nswingle\\nswingled\\nswingles\\nswingling\\nswings\\nswingy\\nswinish\\nswink\\nswinked\\nswinking\\nswinks\\nswinney\\nswinneys\\nswipe\\nswiped\\nswipes\\nswiping\\nswiple\\nswiples\\nswipple\\nswipples\\nswirl\\nswirled\\nswirlier\\nswirliest\\nswirling\\nswirls\\nswirly\\nswish\\nswished\\nswisher\\nswishers\\nswishes\\nswishier\\nswishiest\\nswishing\\nswishy\\nswiss\\nswisses\\nswitch\\nswitchboard\\nswitchboards\\nswitched\\nswitcher\\nswitchers\\nswitches\\nswitching\\nswith\\nswithe\\nswither\\nswithered\\nswithering\\nswithers\\nswithly\\nswive\\nswived\\nswivel\\nswiveled\\nswiveling\\nswivelled\\nswivelling\\nswivels\\nswives\\nswivet\\nswivets\\nswiving\\nswizzle\\nswizzled\\nswizzler\\nswizzlers\\nswizzles\\nswizzling\\nswob\\nswobbed\\nswobber\\nswobbers\\nswobbing\\nswobs\\nswollen\\nswoon\\nswooned\\nswooner\\nswooners\\nswooning\\nswoons\\nswoop\\nswooped\\nswooper\\nswoopers\\nswooping\\nswoops\\nswoosh\\nswooshed\\nswooshes\\nswooshing\\nswop\\nswopped\\nswopping\\nswops\\nsword\\nswordfish\\nswordfishes\\nswordman\\nswordmen\\nswords\\nswore\\nsworn\\nswot\\nswots\\nswotted\\nswotter\\nswotters\\nswotting\\nswoun\\nswound\\nswounded\\nswounding\\nswounds\\nswouned\\nswouning\\nswouns\\nswum\\nswung\\nsybarite\\nsybarites\\nsybo\\nsyboes\\nsycamine\\nsycamines\\nsycamore\\nsycamores\\nsyce\\nsycee\\nsycees\\nsyces\\nsycomore\\nsycomores\\nsyconia\\nsyconium\\nsycophant\\nsycophantic\\nsycophants\\nsycoses\\nsycosis\\nsyenite\\nsyenites\\nsyenitic\\nsyke\\nsykes\\nsyllabi\\nsyllabic\\nsyllabics\\nsyllable\\nsyllabled\\nsyllables\\nsyllabling\\nsyllabub\\nsyllabubs\\nsyllabus\\nsyllabuses\\nsylph\\nsylphic\\nsylphid\\nsylphids\\nsylphish\\nsylphs\\nsylphy\\nsylva\\nsylvae\\nsylvan\\nsylvans\\nsylvas\\nsylvatic\\nsylvin\\nsylvine\\nsylvines\\nsylvins\\nsylvite\\nsylvites\\nsymbion\\nsymbions\\nsymbiont\\nsymbionts\\nsymbiot\\nsymbiote\\nsymbiotes\\nsymbiots\\nsymbol\\nsymboled\\nsymbolic\\nsymbolical\\nsymbolically\\nsymboling\\nsymbolism\\nsymbolisms\\nsymbolization\\nsymbolizations\\nsymbolize\\nsymbolized\\nsymbolizes\\nsymbolizing\\nsymbolled\\nsymbolling\\nsymbols\\nsymmetric\\nsymmetrical\\nsymmetrically\\nsymmetries\\nsymmetry\\nsympathetic\\nsympathetically\\nsympathies\\nsympathize\\nsympathized\\nsympathizes\\nsympathizing\\nsympathy\\nsympatries\\nsympatry\\nsymphonic\\nsymphonies\\nsymphony\\nsympodia\\nsymposia\\nsymposium\\nsymptom\\nsymptomatically\\nsymptomatology\\nsymptoms\\nsyn\\nsynagog\\nsynagogs\\nsynagogue\\nsynagogues\\nsynapse\\nsynapsed\\nsynapses\\nsynapsing\\nsynapsis\\nsynaptic\\nsync\\nsyncarp\\nsyncarpies\\nsyncarps\\nsyncarpy\\nsynced\\nsynch\\nsynched\\nsynching\\nsynchro\\nsynchronization\\nsynchronizations\\nsynchronize\\nsynchronized\\nsynchronizes\\nsynchronizing\\nsynchros\\nsynchs\\nsyncing\\nsyncline\\nsynclines\\nsyncom\\nsyncoms\\nsyncopal\\nsyncopate\\nsyncopated\\nsyncopates\\nsyncopating\\nsyncopation\\nsyncopations\\nsyncope\\nsyncopes\\nsyncopic\\nsyncs\\nsyncytia\\nsyndeses\\nsyndesis\\nsyndesises\\nsyndet\\nsyndetic\\nsyndets\\nsyndic\\nsyndical\\nsyndicate\\nsyndicated\\nsyndicates\\nsyndicating\\nsyndication\\nsyndics\\nsyndrome\\nsyndromes\\nsyne\\nsynectic\\nsynergia\\nsynergias\\nsynergic\\nsynergid\\nsynergids\\nsynergies\\nsynergy\\nsynesis\\nsynesises\\nsyngamic\\nsyngamies\\nsyngamy\\nsynod\\nsynodal\\nsynodic\\nsynods\\nsynonym\\nsynonyme\\nsynonymes\\nsynonymies\\nsynonymous\\nsynonyms\\nsynonymy\\nsynopses\\nsynopsis\\nsynoptic\\nsynovia\\nsynovial\\nsynovias\\nsyntactic\\nsyntactical\\nsyntax\\nsyntaxes\\nsyntheses\\nsynthesis\\nsynthesize\\nsynthesized\\nsynthesizer\\nsynthesizers\\nsynthesizes\\nsynthesizing\\nsynthetic\\nsynthetically\\nsynthetics\\nsyntonic\\nsyntonies\\nsyntony\\nsynura\\nsynurae\\nsypher\\nsyphered\\nsyphering\\nsyphers\\nsyphilis\\nsyphilises\\nsyphilitic\\nsyphon\\nsyphoned\\nsyphoning\\nsyphons\\nsyren\\nsyrens\\nsyringa\\nsyringas\\nsyringe\\nsyringed\\nsyringes\\nsyringing\\nsyrinx\\nsyrinxes\\nsyrphian\\nsyrphians\\nsyrphid\\nsyrphids\\nsyrup\\nsyrups\\nsyrupy\\nsystem\\nsystematic\\nsystematical\\nsystematically\\nsystematize\\nsystematized\\nsystematizes\\nsystematizing\\nsystemic\\nsystemics\\nsystems\\nsystole\\nsystoles\\nsystolic\\nsyzygal\\nsyzygial\\nsyzygies\\nsyzygy\\nta\\ntab\\ntabanid\\ntabanids\\ntabard\\ntabarded\\ntabards\\ntabaret\\ntabarets\\ntabbed\\ntabbied\\ntabbies\\ntabbing\\ntabbis\\ntabbises\\ntabby\\ntabbying\\ntaber\\ntabered\\ntabering\\ntabernacle\\ntabernacles\\ntabers\\ntabes\\ntabetic\\ntabetics\\ntabid\\ntabla\\ntablas\\ntable\\ntableau\\ntableaus\\ntableaux\\ntablecloth\\ntablecloths\\ntabled\\ntableful\\ntablefuls\\ntables\\ntablesful\\ntablespoon\\ntablespoonful\\ntablespoonfuls\\ntablespoons\\ntablet\\ntableted\\ntableting\\ntabletop\\ntabletops\\ntablets\\ntabletted\\ntabletting\\ntableware\\ntablewares\\ntabling\\ntabloid\\ntabloids\\ntaboo\\ntabooed\\ntabooing\\ntaboos\\ntabor\\ntabored\\ntaborer\\ntaborers\\ntaboret\\ntaborets\\ntaborin\\ntaborine\\ntaborines\\ntaboring\\ntaborins\\ntabors\\ntabour\\ntaboured\\ntabourer\\ntabourers\\ntabouret\\ntabourets\\ntabouring\\ntabours\\ntabs\\ntabu\\ntabued\\ntabuing\\ntabular\\ntabulate\\ntabulated\\ntabulates\\ntabulating\\ntabulation\\ntabulations\\ntabulator\\ntabulators\\ntabus\\ntace\\ntaces\\ntacet\\ntach\\ntache\\ntaches\\ntachinid\\ntachinids\\ntachism\\ntachisms\\ntachist\\ntachiste\\ntachistes\\ntachists\\ntachs\\ntacit\\ntacitly\\ntacitness\\ntacitnesses\\ntaciturn\\ntaciturnities\\ntaciturnity\\ntack\\ntacked\\ntacker\\ntackers\\ntacket\\ntackets\\ntackey\\ntackier\\ntackiest\\ntackified\\ntackifies\\ntackify\\ntackifying\\ntackily\\ntacking\\ntackle\\ntackled\\ntackler\\ntacklers\\ntackles\\ntackless\\ntackling\\ntacklings\\ntacks\\ntacky\\ntacnode\\ntacnodes\\ntaco\\ntaconite\\ntaconites\\ntacos\\ntact\\ntactful\\ntactfully\\ntactic\\ntactical\\ntactician\\ntacticians\\ntactics\\ntactile\\ntaction\\ntactions\\ntactless\\ntactlessly\\ntacts\\ntactual\\ntad\\ntadpole\\ntadpoles\\ntads\\ntae\\ntael\\ntaels\\ntaenia\\ntaeniae\\ntaenias\\ntaffarel\\ntaffarels\\ntafferel\\ntafferels\\ntaffeta\\ntaffetas\\ntaffia\\ntaffias\\ntaffies\\ntaffrail\\ntaffrails\\ntaffy\\ntafia\\ntafias\\ntag\\ntagalong\\ntagalongs\\ntagboard\\ntagboards\\ntagged\\ntagger\\ntaggers\\ntagging\\ntaglike\\ntagmeme\\ntagmemes\\ntagrag\\ntagrags\\ntags\\ntahr\\ntahrs\\ntahsil\\ntahsils\\ntaiga\\ntaigas\\ntaiglach\\ntail\\ntailback\\ntailbacks\\ntailbone\\ntailbones\\ntailcoat\\ntailcoats\\ntailed\\ntailer\\ntailers\\ntailgate\\ntailgated\\ntailgates\\ntailgating\\ntailing\\ntailings\\ntaille\\ntailles\\ntailless\\ntaillight\\ntaillights\\ntaillike\\ntailor\\ntailored\\ntailoring\\ntailors\\ntailpipe\\ntailpipes\\ntailrace\\ntailraces\\ntails\\ntailskid\\ntailskids\\ntailspin\\ntailspins\\ntailwind\\ntailwinds\\ntain\\ntains\\ntaint\\ntainted\\ntainting\\ntaints\\ntaipan\\ntaipans\\ntaj\\ntajes\\ntakable\\ntakahe\\ntakahes\\ntake\\ntakeable\\ntakedown\\ntakedowns\\ntaken\\ntakeoff\\ntakeoffs\\ntakeout\\ntakeouts\\ntakeover\\ntakeovers\\ntaker\\ntakers\\ntakes\\ntakin\\ntaking\\ntakingly\\ntakings\\ntakins\\ntala\\ntalapoin\\ntalapoins\\ntalar\\ntalaria\\ntalars\\ntalas\\ntalc\\ntalced\\ntalcing\\ntalcked\\ntalcking\\ntalcky\\ntalcose\\ntalcous\\ntalcs\\ntalcum\\ntalcums\\ntale\\ntalent\\ntalented\\ntalents\\ntaler\\ntalers\\ntales\\ntalesman\\ntalesmen\\ntaleysim\\ntali\\ntalion\\ntalions\\ntaliped\\ntalipeds\\ntalipes\\ntalipot\\ntalipots\\ntalisman\\ntalismans\\ntalk\\ntalkable\\ntalkative\\ntalked\\ntalker\\ntalkers\\ntalkie\\ntalkier\\ntalkies\\ntalkiest\\ntalking\\ntalkings\\ntalks\\ntalky\\ntall\\ntallage\\ntallaged\\ntallages\\ntallaging\\ntallaism\\ntallboy\\ntallboys\\ntaller\\ntallest\\ntallied\\ntallier\\ntallies\\ntallish\\ntallith\\ntallithes\\ntallithim\\ntallitoth\\ntallness\\ntallnesses\\ntallol\\ntallols\\ntallow\\ntallowed\\ntallowing\\ntallows\\ntallowy\\ntally\\ntallyho\\ntallyhoed\\ntallyhoing\\ntallyhos\\ntallying\\ntallyman\\ntallymen\\ntalmudic\\ntalon\\ntaloned\\ntalons\\ntalooka\\ntalookas\\ntaluk\\ntaluka\\ntalukas\\ntaluks\\ntalus\\ntaluses\\ntam\\ntamable\\ntamal\\ntamale\\ntamales\\ntamals\\ntamandu\\ntamandua\\ntamanduas\\ntamandus\\ntamarack\\ntamaracks\\ntamarao\\ntamaraos\\ntamarau\\ntamaraus\\ntamarin\\ntamarind\\ntamarinds\\ntamarins\\ntamarisk\\ntamarisks\\ntamasha\\ntamashas\\ntambac\\ntambacs\\ntambala\\ntambalas\\ntambour\\ntamboura\\ntambouras\\ntamboured\\ntambourine\\ntambourines\\ntambouring\\ntambours\\ntambur\\ntambura\\ntamburas\\ntamburs\\ntame\\ntameable\\ntamed\\ntamein\\ntameins\\ntameless\\ntamely\\ntameness\\ntamenesses\\ntamer\\ntamers\\ntames\\ntamest\\ntaming\\ntamis\\ntamises\\ntammie\\ntammies\\ntammy\\ntamp\\ntampala\\ntampalas\\ntampan\\ntampans\\ntamped\\ntamper\\ntampered\\ntamperer\\ntamperers\\ntampering\\ntampers\\ntamping\\ntampion\\ntampions\\ntampon\\ntamponed\\ntamponing\\ntampons\\ntamps\\ntams\\ntan\\ntanager\\ntanagers\\ntanbark\\ntanbarks\\ntandem\\ntandems\\ntang\\ntanged\\ntangelo\\ntangelos\\ntangence\\ntangences\\ntangencies\\ntangency\\ntangent\\ntangential\\ntangents\\ntangerine\\ntangerines\\ntangibilities\\ntangibility\\ntangible\\ntangibles\\ntangibly\\ntangier\\ntangiest\\ntanging\\ntangle\\ntangled\\ntangler\\ntanglers\\ntangles\\ntanglier\\ntangliest\\ntangling\\ntangly\\ntango\\ntangoed\\ntangoing\\ntangos\\ntangram\\ntangrams\\ntangs\\ntangy\\ntanist\\ntanistries\\ntanistry\\ntanists\\ntank\\ntanka\\ntankage\\ntankages\\ntankard\\ntankards\\ntankas\\ntanked\\ntanker\\ntankers\\ntankful\\ntankfuls\\ntanking\\ntanks\\ntankship\\ntankships\\ntannable\\ntannage\\ntannages\\ntannate\\ntannates\\ntanned\\ntanner\\ntanneries\\ntanners\\ntannery\\ntannest\\ntannic\\ntannin\\ntanning\\ntannings\\ntannins\\ntannish\\ntanrec\\ntanrecs\\ntans\\ntansies\\ntansy\\ntantalic\\ntantalize\\ntantalized\\ntantalizer\\ntantalizers\\ntantalizes\\ntantalizing\\ntantalizingly\\ntantalum\\ntantalums\\ntantalus\\ntantaluses\\ntantamount\\ntantara\\ntantaras\\ntantivies\\ntantivy\\ntanto\\ntantra\\ntantras\\ntantric\\ntantrum\\ntantrums\\ntanyard\\ntanyards\\ntao\\ntaos\\ntap\\ntapa\\ntapadera\\ntapaderas\\ntapadero\\ntapaderos\\ntapalo\\ntapalos\\ntapas\\ntape\\ntaped\\ntapeless\\ntapelike\\ntapeline\\ntapelines\\ntaper\\ntapered\\ntaperer\\ntaperers\\ntapering\\ntapers\\ntapes\\ntapestried\\ntapestries\\ntapestry\\ntapestrying\\ntapeta\\ntapetal\\ntapetum\\ntapeworm\\ntapeworms\\ntaphole\\ntapholes\\ntaphouse\\ntaphouses\\ntaping\\ntapioca\\ntapiocas\\ntapir\\ntapirs\\ntapis\\ntapises\\ntapped\\ntapper\\ntappers\\ntappet\\ntappets\\ntapping\\ntappings\\ntaproom\\ntaprooms\\ntaproot\\ntaproots\\ntaps\\ntapster\\ntapsters\\ntar\\ntarantas\\ntarantases\\ntarantula\\ntarantulas\\ntarboosh\\ntarbooshes\\ntarbush\\ntarbushes\\ntardier\\ntardies\\ntardiest\\ntardily\\ntardo\\ntardy\\ntare\\ntared\\ntares\\ntarge\\ntarges\\ntarget\\ntargeted\\ntargeting\\ntargets\\ntariff\\ntariffed\\ntariffing\\ntariffs\\ntaring\\ntarlatan\\ntarlatans\\ntarletan\\ntarletans\\ntarmac\\ntarmacs\\ntarn\\ntarnal\\ntarnally\\ntarnish\\ntarnished\\ntarnishes\\ntarnishing\\ntarns\\ntaro\\ntaroc\\ntarocs\\ntarok\\ntaroks\\ntaros\\ntarot\\ntarots\\ntarp\\ntarpan\\ntarpans\\ntarpaper\\ntarpapers\\ntarpaulin\\ntarpaulins\\ntarpon\\ntarpons\\ntarps\\ntarragon\\ntarragons\\ntarre\\ntarred\\ntarres\\ntarried\\ntarrier\\ntarriers\\ntarries\\ntarriest\\ntarring\\ntarry\\ntarrying\\ntars\\ntarsal\\ntarsals\\ntarsi\\ntarsia\\ntarsias\\ntarsier\\ntarsiers\\ntarsus\\ntart\\ntartan\\ntartana\\ntartanas\\ntartans\\ntartar\\ntartaric\\ntartars\\ntarted\\ntarter\\ntartest\\ntarting\\ntartish\\ntartlet\\ntartlets\\ntartly\\ntartness\\ntartnesses\\ntartrate\\ntartrates\\ntarts\\ntartufe\\ntartufes\\ntartuffe\\ntartuffes\\ntarweed\\ntarweeds\\ntarzan\\ntarzans\\ntas\\ntask\\ntasked\\ntasking\\ntaskmaster\\ntaskmasters\\ntasks\\ntaskwork\\ntaskworks\\ntass\\ntasse\\ntassel\\ntasseled\\ntasseling\\ntasselled\\ntasselling\\ntassels\\ntasses\\ntasset\\ntassets\\ntassie\\ntassies\\ntastable\\ntaste\\ntasted\\ntasteful\\ntastefully\\ntasteless\\ntastelessly\\ntaster\\ntasters\\ntastes\\ntastier\\ntastiest\\ntastily\\ntasting\\ntasty\\ntat\\ntatami\\ntatamis\\ntate\\ntater\\ntaters\\ntates\\ntatouay\\ntatouays\\ntats\\ntatted\\ntatter\\ntattered\\ntattering\\ntatters\\ntattier\\ntattiest\\ntatting\\ntattings\\ntattle\\ntattled\\ntattler\\ntattlers\\ntattles\\ntattletale\\ntattletales\\ntattling\\ntattoo\\ntattooed\\ntattooer\\ntattooers\\ntattooing\\ntattoos\\ntatty\\ntau\\ntaught\\ntaunt\\ntaunted\\ntaunter\\ntaunters\\ntaunting\\ntaunts\\ntaupe\\ntaupes\\ntaurine\\ntaurines\\ntaus\\ntaut\\ntautaug\\ntautaugs\\ntauted\\ntauten\\ntautened\\ntautening\\ntautens\\ntauter\\ntautest\\ntauting\\ntautly\\ntautness\\ntautnesses\\ntautog\\ntautogs\\ntautomer\\ntautomers\\ntautonym\\ntautonyms\\ntauts\\ntav\\ntavern\\ntaverner\\ntaverners\\ntaverns\\ntavs\\ntaw\\ntawdrier\\ntawdries\\ntawdriest\\ntawdry\\ntawed\\ntawer\\ntawers\\ntawie\\ntawing\\ntawney\\ntawneys\\ntawnier\\ntawnies\\ntawniest\\ntawnily\\ntawny\\ntawpie\\ntawpies\\ntaws\\ntawse\\ntawsed\\ntawses\\ntawsing\\ntawsy\\ntax\\ntaxa\\ntaxable\\ntaxables\\ntaxably\\ntaxation\\ntaxations\\ntaxed\\ntaxeme\\ntaxemes\\ntaxemic\\ntaxer\\ntaxers\\ntaxes\\ntaxi\\ntaxicab\\ntaxicabs\\ntaxidermies\\ntaxidermist\\ntaxidermists\\ntaxidermy\\ntaxied\\ntaxies\\ntaxiing\\ntaximan\\ntaximen\\ntaxing\\ntaxingly\\ntaxis\\ntaxite\\ntaxites\\ntaxitic\\ntaxiway\\ntaxiways\\ntaxless\\ntaxman\\ntaxmen\\ntaxon\\ntaxonomies\\ntaxonomy\\ntaxons\\ntaxpaid\\ntaxpayer\\ntaxpayers\\ntaxpaying\\ntaxus\\ntaxwise\\ntaxying\\ntazza\\ntazzas\\ntazze\\ntea\\nteaberries\\nteaberry\\nteaboard\\nteaboards\\nteabowl\\nteabowls\\nteabox\\nteaboxes\\nteacake\\nteacakes\\nteacart\\nteacarts\\nteach\\nteachable\\nteacher\\nteachers\\nteaches\\nteaching\\nteachings\\nteacup\\nteacups\\nteahouse\\nteahouses\\nteak\\nteakettle\\nteakettles\\nteaks\\nteakwood\\nteakwoods\\nteal\\nteals\\nteam\\nteamaker\\nteamakers\\nteamed\\nteaming\\nteammate\\nteammates\\nteams\\nteamster\\nteamsters\\nteamwork\\nteamworks\\nteapot\\nteapots\\nteapoy\\nteapoys\\ntear\\ntearable\\nteardown\\nteardowns\\nteardrop\\nteardrops\\nteared\\ntearer\\ntearers\\ntearful\\nteargas\\nteargases\\nteargassed\\nteargasses\\nteargassing\\ntearier\\nteariest\\ntearily\\ntearing\\ntearless\\ntearoom\\ntearooms\\ntears\\nteary\\nteas\\ntease\\nteased\\nteasel\\nteaseled\\nteaseler\\nteaselers\\nteaseling\\nteaselled\\nteaselling\\nteasels\\nteaser\\nteasers\\nteases\\nteashop\\nteashops\\nteasing\\nteaspoon\\nteaspoonful\\nteaspoonfuls\\nteaspoons\\nteat\\nteated\\nteatime\\nteatimes\\nteats\\nteaware\\nteawares\\nteazel\\nteazeled\\nteazeling\\nteazelled\\nteazelling\\nteazels\\nteazle\\nteazled\\nteazles\\nteazling\\nteched\\ntechier\\ntechiest\\ntechily\\ntechnic\\ntechnical\\ntechnicalities\\ntechnicality\\ntechnically\\ntechnician\\ntechnicians\\ntechnics\\ntechnique\\ntechniques\\ntechnological\\ntechnologies\\ntechnology\\ntechy\\ntecta\\ntectal\\ntectonic\\ntectrices\\ntectrix\\ntectum\\nted\\ntedded\\ntedder\\ntedders\\nteddies\\ntedding\\nteddy\\ntedious\\ntediously\\ntediousness\\ntediousnesses\\ntedium\\ntediums\\nteds\\ntee\\nteed\\nteeing\\nteem\\nteemed\\nteemer\\nteemers\\nteeming\\nteems\\nteen\\nteenage\\nteenaged\\nteenager\\nteenagers\\nteener\\nteeners\\nteenful\\nteenier\\nteeniest\\nteens\\nteensier\\nteensiest\\nteensy\\nteentsier\\nteentsiest\\nteentsy\\nteeny\\nteepee\\nteepees\\ntees\\nteeter\\nteetered\\nteetering\\nteeters\\nteeth\\nteethe\\nteethed\\nteether\\nteethers\\nteethes\\nteething\\nteethings\\nteetotal\\nteetotaled\\nteetotaling\\nteetotalled\\nteetotalling\\nteetotals\\nteetotum\\nteetotums\\nteff\\nteffs\\nteg\\ntegmen\\ntegmenta\\ntegmina\\ntegminal\\ntegs\\ntegua\\nteguas\\ntegular\\ntegumen\\ntegument\\nteguments\\ntegumina\\nteiglach\\nteiid\\nteiids\\nteind\\nteinds\\ntektite\\ntektites\\ntektitic\\ntektronix\\ntela\\ntelae\\ntelamon\\ntelamones\\ntele\\ntelecast\\ntelecasted\\ntelecasting\\ntelecasts\\nteledu\\nteledus\\ntelefilm\\ntelefilms\\ntelega\\ntelegas\\ntelegonies\\ntelegony\\ntelegram\\ntelegrammed\\ntelegramming\\ntelegrams\\ntelegraph\\ntelegraphed\\ntelegrapher\\ntelegraphers\\ntelegraphing\\ntelegraphist\\ntelegraphists\\ntelegraphs\\nteleman\\ntelemark\\ntelemarks\\ntelemen\\nteleost\\nteleosts\\ntelepathic\\ntelepathically\\ntelepathies\\ntelepathy\\ntelephone\\ntelephoned\\ntelephoner\\ntelephoners\\ntelephones\\ntelephoning\\ntelephoto\\nteleplay\\nteleplays\\nteleport\\nteleported\\nteleporting\\nteleports\\nteleran\\ntelerans\\nteles\\ntelescope\\ntelescoped\\ntelescopes\\ntelescopic\\ntelescoping\\nteleses\\ntelesis\\ntelethon\\ntelethons\\nteleview\\nteleviewed\\nteleviewing\\nteleviews\\ntelevise\\ntelevised\\ntelevises\\ntelevising\\ntelevision\\ntelevisions\\ntelex\\ntelexed\\ntelexes\\ntelexing\\ntelfer\\ntelfered\\ntelfering\\ntelfers\\ntelford\\ntelfords\\ntelia\\ntelial\\ntelic\\ntelium\\ntell\\ntellable\\nteller\\ntellers\\ntellies\\ntelling\\ntells\\ntelltale\\ntelltales\\ntelluric\\ntelly\\nteloi\\ntelome\\ntelomes\\ntelomic\\ntelos\\ntelpher\\ntelphered\\ntelphering\\ntelphers\\ntelson\\ntelsonic\\ntelsons\\ntemblor\\ntemblores\\ntemblors\\ntemerities\\ntemerity\\ntempeh\\ntempehs\\ntemper\\ntempera\\ntemperament\\ntemperamental\\ntemperaments\\ntemperance\\ntemperances\\ntemperas\\ntemperate\\ntemperature\\ntemperatures\\ntempered\\ntemperer\\ntemperers\\ntempering\\ntempers\\ntempest\\ntempested\\ntempesting\\ntempests\\ntempestuous\\ntempi\\ntemplar\\ntemplars\\ntemplate\\ntemplates\\ntemple\\ntempled\\ntemples\\ntemplet\\ntemplets\\ntempo\\ntemporal\\ntemporals\\ntemporaries\\ntemporarily\\ntemporary\\ntempos\\ntempt\\ntemptation\\ntemptations\\ntempted\\ntempter\\ntempters\\ntempting\\ntemptingly\\ntemptress\\ntempts\\ntempura\\ntempuras\\nten\\ntenabilities\\ntenability\\ntenable\\ntenably\\ntenace\\ntenaces\\ntenacious\\ntenaciously\\ntenacities\\ntenacity\\ntenacula\\ntenail\\ntenaille\\ntenailles\\ntenails\\ntenancies\\ntenancy\\ntenant\\ntenanted\\ntenanting\\ntenantries\\ntenantry\\ntenants\\ntench\\ntenches\\ntend\\ntendance\\ntendances\\ntended\\ntendence\\ntendences\\ntendencies\\ntendency\\ntender\\ntendered\\ntenderer\\ntenderers\\ntenderest\\ntendering\\ntenderize\\ntenderized\\ntenderizer\\ntenderizers\\ntenderizes\\ntenderizing\\ntenderloin\\ntenderloins\\ntenderly\\ntenderness\\ntendernesses\\ntenders\\ntending\\ntendon\\ntendons\\ntendril\\ntendrils\\ntends\\ntenebrae\\ntenement\\ntenements\\ntenesmus\\ntenesmuses\\ntenet\\ntenets\\ntenfold\\ntenfolds\\ntenia\\nteniae\\ntenias\\nteniasis\\nteniasises\\ntenner\\ntenners\\ntennis\\ntennises\\ntennist\\ntennists\\ntenon\\ntenoned\\ntenoner\\ntenoners\\ntenoning\\ntenons\\ntenor\\ntenorite\\ntenorites\\ntenors\\ntenotomies\\ntenotomy\\ntenour\\ntenours\\ntenpence\\ntenpences\\ntenpenny\\ntenpin\\ntenpins\\ntenrec\\ntenrecs\\ntens\\ntense\\ntensed\\ntensely\\ntenser\\ntenses\\ntensest\\ntensible\\ntensibly\\ntensile\\ntensing\\ntension\\ntensioned\\ntensioning\\ntensions\\ntensities\\ntensity\\ntensive\\ntensor\\ntensors\\ntent\\ntentacle\\ntentacles\\ntentacular\\ntentage\\ntentages\\ntentative\\ntentatively\\ntented\\ntenter\\ntentered\\ntenterhooks\\ntentering\\ntenters\\ntenth\\ntenthly\\ntenths\\ntentie\\ntentier\\ntentiest\\ntenting\\ntentless\\ntentlike\\ntents\\ntenty\\ntenues\\ntenuis\\ntenuities\\ntenuity\\ntenuous\\ntenuously\\ntenuousness\\ntenuousnesses\\ntenure\\ntenured\\ntenures\\ntenurial\\ntenuti\\ntenuto\\ntenutos\\nteocalli\\nteocallis\\nteopan\\nteopans\\nteosinte\\nteosintes\\ntepa\\ntepas\\ntepee\\ntepees\\ntepefied\\ntepefies\\ntepefy\\ntepefying\\ntephra\\ntephras\\ntephrite\\ntephrites\\ntepid\\ntepidities\\ntepidity\\ntepidly\\ntequila\\ntequilas\\nterai\\nterais\\nteraohm\\nteraohms\\nteraph\\nteraphim\\nteratism\\nteratisms\\nteratoid\\nteratoma\\nteratomas\\nteratomata\\nterbia\\nterbias\\nterbic\\nterbium\\nterbiums\\nterce\\ntercel\\ntercelet\\ntercelets\\ntercels\\nterces\\ntercet\\ntercets\\nterebene\\nterebenes\\nterebic\\nteredines\\nteredo\\nteredos\\nterefah\\nterete\\nterga\\ntergal\\ntergite\\ntergites\\ntergum\\nteriyaki\\nteriyakis\\nterm\\ntermed\\ntermer\\ntermers\\nterminable\\nterminal\\nterminals\\nterminate\\nterminated\\nterminates\\nterminating\\ntermination\\nterming\\ntermini\\nterminologies\\nterminology\\nterminus\\nterminuses\\ntermite\\ntermites\\ntermitic\\ntermless\\ntermly\\ntermor\\ntermors\\nterms\\ntermtime\\ntermtimes\\ntern\\nternaries\\nternary\\nternate\\nterne\\nternes\\nternion\\nternions\\nterns\\nterpene\\nterpenes\\nterpenic\\nterpinol\\nterpinols\\nterra\\nterrace\\nterraced\\nterraces\\nterracing\\nterrae\\nterrain\\nterrains\\nterrane\\nterranes\\nterrapin\\nterrapins\\nterraria\\nterrarium\\nterras\\nterrases\\nterrazzo\\nterrazzos\\nterreen\\nterreens\\nterrella\\nterrellas\\nterrene\\nterrenes\\nterrestrial\\nterret\\nterrets\\nterrible\\nterribly\\nterrier\\nterriers\\nterries\\nterrific\\nterrified\\nterrifies\\nterrify\\nterrifying\\nterrifyingly\\nterrine\\nterrines\\nterrit\\nterritorial\\nterritories\\nterritory\\nterrits\\nterror\\nterrorism\\nterrorisms\\nterrorize\\nterrorized\\nterrorizes\\nterrorizing\\nterrors\\nterry\\nterse\\ntersely\\nterseness\\ntersenesses\\nterser\\ntersest\\ntertial\\ntertials\\ntertian\\ntertians\\ntertiaries\\ntertiary\\ntesla\\nteslas\\ntessera\\ntesserae\\ntest\\ntesta\\ntestable\\ntestacies\\ntestacy\\ntestae\\ntestament\\ntestamentary\\ntestaments\\ntestate\\ntestator\\ntestators\\ntested\\ntestee\\ntestees\\ntester\\ntesters\\ntestes\\ntesticle\\ntesticles\\ntesticular\\ntestier\\ntestiest\\ntestified\\ntestifies\\ntestify\\ntestifying\\ntestily\\ntestimonial\\ntestimonials\\ntestimonies\\ntestimony\\ntesting\\ntestis\\nteston\\ntestons\\ntestoon\\ntestoons\\ntestosterone\\ntestpatient\\ntests\\ntestudines\\ntestudo\\ntestudos\\ntesty\\ntetanal\\ntetanic\\ntetanics\\ntetanies\\ntetanise\\ntetanised\\ntetanises\\ntetanising\\ntetanize\\ntetanized\\ntetanizes\\ntetanizing\\ntetanoid\\ntetanus\\ntetanuses\\ntetany\\ntetched\\ntetchier\\ntetchiest\\ntetchily\\ntetchy\\nteth\\ntether\\ntethered\\ntethering\\ntethers\\nteths\\ntetotum\\ntetotums\\ntetra\\ntetracid\\ntetracids\\ntetrad\\ntetradic\\ntetrads\\ntetragon\\ntetragons\\ntetramer\\ntetramers\\ntetrapod\\ntetrapods\\ntetrarch\\ntetrarchs\\ntetras\\ntetrode\\ntetrodes\\ntetroxid\\ntetroxids\\ntetryl\\ntetryls\\ntetter\\ntetters\\nteuch\\nteugh\\nteughly\\ntew\\ntewed\\ntewing\\ntews\\ntexas\\ntexases\\ntext\\ntextbook\\ntextbooks\\ntextile\\ntextiles\\ntextless\\ntexts\\ntextual\\ntextuaries\\ntextuary\\ntextural\\ntexture\\ntextured\\ntextures\\ntexturing\\nthack\\nthacked\\nthacking\\nthacks\\nthae\\nthairm\\nthairms\\nthalami\\nthalamic\\nthalamus\\nthaler\\nthalers\\nthalli\\nthallic\\nthallium\\nthalliums\\nthalloid\\nthallous\\nthallus\\nthalluses\\nthan\\nthanage\\nthanages\\nthanatos\\nthanatoses\\nthane\\nthanes\\nthank\\nthanked\\nthanker\\nthankful\\nthankfuller\\nthankfullest\\nthankfully\\nthankfulness\\nthankfulnesses\\nthanking\\nthanks\\nthanksgiving\\ntharm\\ntharms\\nthat\\nthataway\\nthatch\\nthatched\\nthatcher\\nthatchers\\nthatches\\nthatching\\nthatchy\\nthaw\\nthawed\\nthawer\\nthawers\\nthawing\\nthawless\\nthaws\\nthe\\nthearchies\\nthearchy\\ntheater\\ntheaters\\ntheatre\\ntheatres\\ntheatric\\ntheatrical\\nthebaine\\nthebaines\\ntheca\\nthecae\\nthecal\\nthecate\\nthee\\ntheelin\\ntheelins\\ntheelol\\ntheelols\\ntheft\\nthefts\\nthegn\\nthegnly\\nthegns\\nthein\\ntheine\\ntheines\\ntheins\\ntheir\\ntheirs\\ntheism\\ntheisms\\ntheist\\ntheistic\\ntheists\\nthelitis\\nthelitises\\nthem\\nthematic\\ntheme\\nthemes\\nthemselves\\nthen\\nthenage\\nthenages\\nthenal\\nthenar\\nthenars\\nthence\\nthens\\ntheocracy\\ntheocrat\\ntheocratic\\ntheocrats\\ntheodicies\\ntheodicy\\ntheogonies\\ntheogony\\ntheolog\\ntheologian\\ntheologians\\ntheological\\ntheologies\\ntheologs\\ntheology\\ntheonomies\\ntheonomy\\ntheorbo\\ntheorbos\\ntheorem\\ntheorems\\ntheoretical\\ntheoretically\\ntheories\\ntheorise\\ntheorised\\ntheorises\\ntheorising\\ntheorist\\ntheorists\\ntheorize\\ntheorized\\ntheorizes\\ntheorizing\\ntheory\\ntherapeutic\\ntherapeutically\\ntherapies\\ntherapist\\ntherapists\\ntherapy\\nthere\\nthereabout\\nthereabouts\\nthereafter\\nthereat\\nthereby\\ntherefor\\ntherefore\\ntherein\\ntheremin\\ntheremins\\nthereof\\nthereon\\ntheres\\nthereto\\nthereupon\\ntherewith\\ntheriac\\ntheriaca\\ntheriacas\\ntheriacs\\ntherm\\nthermae\\nthermal\\nthermals\\ntherme\\nthermel\\nthermels\\nthermes\\nthermic\\nthermion\\nthermions\\nthermit\\nthermite\\nthermites\\nthermits\\nthermodynamics\\nthermometer\\nthermometers\\nthermometric\\nthermometrically\\nthermos\\nthermoses\\nthermostat\\nthermostatic\\nthermostatically\\nthermostats\\ntherms\\ntheroid\\ntheropod\\ntheropods\\nthesauri\\nthesaurus\\nthese\\ntheses\\nthesis\\nthespian\\nthespians\\ntheta\\nthetas\\nthetic\\nthetical\\ntheurgic\\ntheurgies\\ntheurgy\\nthew\\nthewless\\nthews\\nthewy\\nthey\\nthiamin\\nthiamine\\nthiamines\\nthiamins\\nthiazide\\nthiazides\\nthiazin\\nthiazine\\nthiazines\\nthiazins\\nthiazol\\nthiazole\\nthiazoles\\nthiazols\\nthick\\nthicken\\nthickened\\nthickener\\nthickeners\\nthickening\\nthickens\\nthicker\\nthickest\\nthicket\\nthickets\\nthickety\\nthickish\\nthickly\\nthickness\\nthicknesses\\nthicks\\nthickset\\nthicksets\\nthief\\nthieve\\nthieved\\nthieveries\\nthievery\\nthieves\\nthieving\\nthievish\\nthigh\\nthighbone\\nthighbones\\nthighed\\nthighs\\nthill\\nthills\\nthimble\\nthimbleful\\nthimblefuls\\nthimbles\\nthin\\nthinclad\\nthinclads\\nthindown\\nthindowns\\nthine\\nthing\\nthings\\nthink\\nthinker\\nthinkers\\nthinking\\nthinkings\\nthinks\\nthinly\\nthinned\\nthinner\\nthinness\\nthinnesses\\nthinnest\\nthinning\\nthinnish\\nthins\\nthio\\nthiol\\nthiolic\\nthiols\\nthionate\\nthionates\\nthionic\\nthionin\\nthionine\\nthionines\\nthionins\\nthionyl\\nthionyls\\nthiophen\\nthiophens\\nthiotepa\\nthiotepas\\nthiourea\\nthioureas\\nthir\\nthiram\\nthirams\\nthird\\nthirdly\\nthirds\\nthirl\\nthirlage\\nthirlages\\nthirled\\nthirling\\nthirls\\nthirst\\nthirsted\\nthirster\\nthirsters\\nthirstier\\nthirstiest\\nthirsting\\nthirsts\\nthirsty\\nthirteen\\nthirteens\\nthirteenth\\nthirteenths\\nthirties\\nthirtieth\\nthirtieths\\nthirty\\nthis\\nthistle\\nthistles\\nthistly\\nthither\\ntho\\nthole\\ntholed\\ntholepin\\ntholepins\\ntholes\\ntholing\\ntholoi\\ntholos\\nthong\\nthonged\\nthongs\\nthoracal\\nthoraces\\nthoracic\\nthorax\\nthoraxes\\nthoria\\nthorias\\nthoric\\nthorite\\nthorites\\nthorium\\nthoriums\\nthorn\\nthorned\\nthornier\\nthorniest\\nthornily\\nthorning\\nthorns\\nthorny\\nthoro\\nthoron\\nthorons\\nthorough\\nthoroughbred\\nthoroughbreds\\nthorougher\\nthoroughest\\nthoroughfare\\nthoroughfares\\nthoroughly\\nthoroughness\\nthoroughnesses\\nthorp\\nthorpe\\nthorpes\\nthorps\\nthose\\nthou\\nthoued\\nthough\\nthought\\nthoughtful\\nthoughtfully\\nthoughtfulness\\nthoughtfulnesses\\nthoughtless\\nthoughtlessly\\nthoughtlessness\\nthoughtlessnesses\\nthoughts\\nthouing\\nthous\\nthousand\\nthousands\\nthousandth\\nthousandths\\nthowless\\nthraldom\\nthraldoms\\nthrall\\nthralled\\nthralling\\nthralls\\nthrash\\nthrashed\\nthrasher\\nthrashers\\nthrashes\\nthrashing\\nthrave\\nthraves\\nthraw\\nthrawart\\nthrawed\\nthrawing\\nthrawn\\nthrawnly\\nthraws\\nthread\\nthreadbare\\nthreaded\\nthreader\\nthreaders\\nthreadier\\nthreadiest\\nthreading\\nthreads\\nthready\\nthreap\\nthreaped\\nthreaper\\nthreapers\\nthreaping\\nthreaps\\nthreat\\nthreated\\nthreaten\\nthreatened\\nthreatening\\nthreateningly\\nthreatens\\nthreating\\nthreats\\nthree\\nthreefold\\nthreep\\nthreeped\\nthreeping\\nthreeps\\nthrees\\nthreescore\\nthrenode\\nthrenodes\\nthrenodies\\nthrenody\\nthresh\\nthreshed\\nthresher\\nthreshers\\nthreshes\\nthreshing\\nthreshold\\nthresholds\\nthrew\\nthrice\\nthrift\\nthriftier\\nthriftiest\\nthriftily\\nthriftless\\nthrifts\\nthrifty\\nthrill\\nthrilled\\nthriller\\nthrillers\\nthrilling\\nthrillingly\\nthrills\\nthrip\\nthrips\\nthrive\\nthrived\\nthriven\\nthriver\\nthrivers\\nthrives\\nthriving\\nthro\\nthroat\\nthroated\\nthroatier\\nthroatiest\\nthroating\\nthroats\\nthroaty\\nthrob\\nthrobbed\\nthrobber\\nthrobbers\\nthrobbing\\nthrobs\\nthroe\\nthroes\\nthrombi\\nthrombin\\nthrombins\\nthrombocyte\\nthrombocytes\\nthrombocytopenia\\nthrombocytosis\\nthrombophlebitis\\nthromboplastin\\nthrombus\\nthrone\\nthroned\\nthrones\\nthrong\\nthronged\\nthronging\\nthrongs\\nthroning\\nthrostle\\nthrostles\\nthrottle\\nthrottled\\nthrottles\\nthrottling\\nthrough\\nthroughout\\nthrove\\nthrow\\nthrower\\nthrowers\\nthrowing\\nthrown\\nthrows\\nthru\\nthrum\\nthrummed\\nthrummer\\nthrummers\\nthrummier\\nthrummiest\\nthrumming\\nthrummy\\nthrums\\nthruput\\nthruputs\\nthrush\\nthrushes\\nthrust\\nthrusted\\nthruster\\nthrusters\\nthrusting\\nthrustor\\nthrustors\\nthrusts\\nthruway\\nthruways\\nthud\\nthudded\\nthudding\\nthuds\\nthug\\nthuggee\\nthuggees\\nthuggeries\\nthuggery\\nthuggish\\nthugs\\nthuja\\nthujas\\nthulia\\nthulias\\nthulium\\nthuliums\\nthumb\\nthumbed\\nthumbing\\nthumbkin\\nthumbkins\\nthumbnail\\nthumbnails\\nthumbnut\\nthumbnuts\\nthumbs\\nthumbtack\\nthumbtacks\\nthump\\nthumped\\nthumper\\nthumpers\\nthumping\\nthumps\\nthunder\\nthunderbolt\\nthunderbolts\\nthunderclap\\nthunderclaps\\nthundered\\nthundering\\nthunderous\\nthunderously\\nthunders\\nthundershower\\nthundershowers\\nthunderstorm\\nthunderstorms\\nthundery\\nthurible\\nthuribles\\nthurifer\\nthurifers\\nthurl\\nthurls\\nthus\\nthusly\\nthuya\\nthuyas\\nthwack\\nthwacked\\nthwacker\\nthwackers\\nthwacking\\nthwacks\\nthwart\\nthwarted\\nthwarter\\nthwarters\\nthwarting\\nthwartly\\nthwarts\\nthy\\nthyme\\nthymes\\nthymey\\nthymi\\nthymic\\nthymier\\nthymiest\\nthymine\\nthymines\\nthymol\\nthymols\\nthymus\\nthymuses\\nthymy\\nthyreoid\\nthyroid\\nthyroidal\\nthyroids\\nthyroxin\\nthyroxins\\nthyrse\\nthyrses\\nthyrsi\\nthyrsoid\\nthyrsus\\nthyself\\nti\\ntiara\\ntiaraed\\ntiaras\\ntibia\\ntibiae\\ntibial\\ntibias\\ntic\\ntical\\nticals\\ntick\\nticked\\nticker\\ntickers\\nticket\\nticketed\\nticketing\\ntickets\\nticking\\ntickings\\ntickle\\ntickled\\ntickler\\nticklers\\ntickles\\ntickling\\nticklish\\nticklishly\\nticklishness\\nticklishnesses\\nticks\\ntickseed\\ntickseeds\\nticktack\\nticktacked\\nticktacking\\nticktacks\\nticktock\\nticktocked\\nticktocking\\nticktocks\\ntics\\ntictac\\ntictacked\\ntictacking\\ntictacs\\ntictoc\\ntictocked\\ntictocking\\ntictocs\\ntidal\\ntidally\\ntidbit\\ntidbits\\ntiddly\\ntide\\ntided\\ntideland\\ntidelands\\ntideless\\ntidelike\\ntidemark\\ntidemarks\\ntiderip\\ntiderips\\ntides\\ntidewater\\ntidewaters\\ntideway\\ntideways\\ntidied\\ntidier\\ntidies\\ntidiest\\ntidily\\ntidiness\\ntidinesses\\ntiding\\ntidings\\ntidy\\ntidying\\ntidytips\\ntie\\ntieback\\ntiebacks\\ntieclasp\\ntieclasps\\ntied\\ntieing\\ntiepin\\ntiepins\\ntier\\ntierce\\ntierced\\ntiercel\\ntiercels\\ntierces\\ntiered\\ntiering\\ntiers\\nties\\ntiff\\ntiffanies\\ntiffany\\ntiffed\\ntiffin\\ntiffined\\ntiffing\\ntiffining\\ntiffins\\ntiffs\\ntiger\\ntigereye\\ntigereyes\\ntigerish\\ntigers\\ntight\\ntighten\\ntightened\\ntightening\\ntightens\\ntighter\\ntightest\\ntightly\\ntightness\\ntightnesses\\ntights\\ntightwad\\ntightwads\\ntiglon\\ntiglons\\ntigon\\ntigons\\ntigress\\ntigresses\\ntigrish\\ntike\\ntikes\\ntiki\\ntikis\\ntil\\ntilapia\\ntilapias\\ntilburies\\ntilbury\\ntilde\\ntildes\\ntile\\ntiled\\ntilefish\\ntilefishes\\ntilelike\\ntiler\\ntilers\\ntiles\\ntiling\\ntill\\ntillable\\ntillage\\ntillages\\ntilled\\ntiller\\ntillered\\ntillering\\ntillers\\ntilling\\ntills\\ntils\\ntilt\\ntiltable\\ntilted\\ntilter\\ntilters\\ntilth\\ntilths\\ntilting\\ntilts\\ntiltyard\\ntiltyards\\ntimarau\\ntimaraus\\ntimbal\\ntimbale\\ntimbales\\ntimbals\\ntimber\\ntimbered\\ntimbering\\ntimberland\\ntimberlands\\ntimbers\\ntimbre\\ntimbrel\\ntimbrels\\ntimbres\\ntime\\ntimecard\\ntimecards\\ntimed\\ntimekeeper\\ntimekeepers\\ntimeless\\ntimelessness\\ntimelessnesses\\ntimelier\\ntimeliest\\ntimeliness\\ntimelinesses\\ntimely\\ntimeous\\ntimeout\\ntimeouts\\ntimepiece\\ntimepieces\\ntimer\\ntimers\\ntimes\\ntimetable\\ntimetables\\ntimework\\ntimeworks\\ntimeworn\\ntimid\\ntimider\\ntimidest\\ntimidities\\ntimidity\\ntimidly\\ntiming\\ntimings\\ntimorous\\ntimorously\\ntimorousness\\ntimorousnesses\\ntimothies\\ntimothy\\ntimpana\\ntimpani\\ntimpanist\\ntimpanists\\ntimpano\\ntimpanum\\ntimpanums\\ntin\\ntinamou\\ntinamous\\ntincal\\ntincals\\ntinct\\ntincted\\ntincting\\ntincts\\ntincture\\ntinctured\\ntinctures\\ntincturing\\ntinder\\ntinders\\ntindery\\ntine\\ntinea\\ntineal\\ntineas\\ntined\\ntineid\\ntineids\\ntines\\ntinfoil\\ntinfoils\\ntinful\\ntinfuls\\nting\\ntinge\\ntinged\\ntingeing\\ntinges\\ntinging\\ntingle\\ntingled\\ntingler\\ntinglers\\ntingles\\ntinglier\\ntingliest\\ntingling\\ntingly\\ntings\\ntinhorn\\ntinhorns\\ntinier\\ntiniest\\ntinily\\ntininess\\ntininesses\\ntining\\ntinker\\ntinkered\\ntinkerer\\ntinkerers\\ntinkering\\ntinkers\\ntinkle\\ntinkled\\ntinkles\\ntinklier\\ntinkliest\\ntinkling\\ntinklings\\ntinkly\\ntinlike\\ntinman\\ntinmen\\ntinned\\ntinner\\ntinners\\ntinnier\\ntinniest\\ntinnily\\ntinning\\ntinnitus\\ntinnituses\\ntinny\\ntinplate\\ntinplates\\ntins\\ntinsel\\ntinseled\\ntinseling\\ntinselled\\ntinselling\\ntinselly\\ntinsels\\ntinsmith\\ntinsmiths\\ntinstone\\ntinstones\\ntint\\ntinted\\ntinter\\ntinters\\ntinting\\ntintings\\ntintless\\ntints\\ntintype\\ntintypes\\ntinware\\ntinwares\\ntinwork\\ntinworks\\ntiny\\ntip\\ntipcart\\ntipcarts\\ntipcat\\ntipcats\\ntipi\\ntipis\\ntipless\\ntipoff\\ntipoffs\\ntippable\\ntipped\\ntipper\\ntippers\\ntippet\\ntippets\\ntippier\\ntippiest\\ntipping\\ntipple\\ntippled\\ntippler\\ntipplers\\ntipples\\ntippling\\ntippy\\ntips\\ntipsier\\ntipsiest\\ntipsily\\ntipstaff\\ntipstaffs\\ntipstaves\\ntipster\\ntipsters\\ntipstock\\ntipstocks\\ntipsy\\ntiptoe\\ntiptoed\\ntiptoes\\ntiptoing\\ntiptop\\ntiptops\\ntirade\\ntirades\\ntire\\ntired\\ntireder\\ntiredest\\ntiredly\\ntireless\\ntirelessly\\ntirelessness\\ntires\\ntiresome\\ntiresomely\\ntiresomeness\\ntiresomenesses\\ntiring\\ntirl\\ntirled\\ntirling\\ntirls\\ntiro\\ntiros\\ntirrivee\\ntirrivees\\ntis\\ntisane\\ntisanes\\ntissual\\ntissue\\ntissued\\ntissues\\ntissuey\\ntissuing\\ntit\\ntitan\\ntitanate\\ntitanates\\ntitaness\\ntitanesses\\ntitania\\ntitanias\\ntitanic\\ntitanism\\ntitanisms\\ntitanite\\ntitanites\\ntitanium\\ntitaniums\\ntitanous\\ntitans\\ntitbit\\ntitbits\\ntiter\\ntiters\\ntithable\\ntithe\\ntithed\\ntither\\ntithers\\ntithes\\ntithing\\ntithings\\ntithonia\\ntithonias\\ntiti\\ntitian\\ntitians\\ntitillate\\ntitillated\\ntitillates\\ntitillating\\ntitillation\\ntitillations\\ntitis\\ntitivate\\ntitivated\\ntitivates\\ntitivating\\ntitlark\\ntitlarks\\ntitle\\ntitled\\ntitles\\ntitling\\ntitlist\\ntitlists\\ntitman\\ntitmen\\ntitmice\\ntitmouse\\ntitrable\\ntitrant\\ntitrants\\ntitrate\\ntitrated\\ntitrates\\ntitrating\\ntitrator\\ntitrators\\ntitre\\ntitres\\ntits\\ntitter\\ntittered\\ntitterer\\ntitterers\\ntittering\\ntitters\\ntittie\\ntitties\\ntittle\\ntittles\\ntittup\\ntittuped\\ntittuping\\ntittupped\\ntittupping\\ntittuppy\\ntittups\\ntitty\\ntitular\\ntitularies\\ntitulars\\ntitulary\\ntivy\\ntizzies\\ntizzy\\ntmeses\\ntmesis\\nto\\ntoad\\ntoadfish\\ntoadfishes\\ntoadflax\\ntoadflaxes\\ntoadied\\ntoadies\\ntoadish\\ntoadless\\ntoadlike\\ntoads\\ntoadstool\\ntoadstools\\ntoady\\ntoadying\\ntoadyish\\ntoadyism\\ntoadyisms\\ntoast\\ntoasted\\ntoaster\\ntoasters\\ntoastier\\ntoastiest\\ntoasting\\ntoasts\\ntoasty\\ntobacco\\ntobaccoes\\ntobaccos\\ntobies\\ntoboggan\\ntobogganed\\ntobogganing\\ntoboggans\\ntoby\\ntobys\\ntoccata\\ntoccatas\\ntoccate\\ntocher\\ntochered\\ntochering\\ntochers\\ntocologies\\ntocology\\ntocsin\\ntocsins\\ntod\\ntoday\\ntodays\\ntoddies\\ntoddle\\ntoddled\\ntoddler\\ntoddlers\\ntoddles\\ntoddling\\ntoddy\\ntodies\\ntods\\ntody\\ntoe\\ntoecap\\ntoecaps\\ntoed\\ntoehold\\ntoeholds\\ntoeing\\ntoeless\\ntoelike\\ntoenail\\ntoenailed\\ntoenailing\\ntoenails\\ntoepiece\\ntoepieces\\ntoeplate\\ntoeplates\\ntoes\\ntoeshoe\\ntoeshoes\\ntoff\\ntoffee\\ntoffees\\ntoffies\\ntoffs\\ntoffy\\ntoft\\ntofts\\ntofu\\ntofus\\ntog\\ntoga\\ntogae\\ntogaed\\ntogas\\ntogate\\ntogated\\ntogether\\ntogetherness\\ntogethernesses\\ntogged\\ntoggeries\\ntoggery\\ntogging\\ntoggle\\ntoggled\\ntoggler\\ntogglers\\ntoggles\\ntoggling\\ntogs\\ntogue\\ntogues\\ntoil\\ntoile\\ntoiled\\ntoiler\\ntoilers\\ntoiles\\ntoilet\\ntoileted\\ntoileting\\ntoiletries\\ntoiletry\\ntoilets\\ntoilette\\ntoilettes\\ntoilful\\ntoiling\\ntoils\\ntoilsome\\ntoilworn\\ntoit\\ntoited\\ntoiting\\ntoits\\ntokay\\ntokays\\ntoke\\ntoken\\ntokened\\ntokening\\ntokenism\\ntokenisms\\ntokens\\ntokes\\ntokologies\\ntokology\\ntokonoma\\ntokonomas\\ntola\\ntolan\\ntolane\\ntolanes\\ntolans\\ntolas\\ntolbooth\\ntolbooths\\ntold\\ntole\\ntoled\\ntoledo\\ntoledos\\ntolerable\\ntolerably\\ntolerance\\ntolerances\\ntolerant\\ntolerate\\ntolerated\\ntolerates\\ntolerating\\ntoleration\\ntolerations\\ntoles\\ntolidin\\ntolidine\\ntolidines\\ntolidins\\ntoling\\ntoll\\ntollage\\ntollages\\ntollbar\\ntollbars\\ntollbooth\\ntollbooths\\ntolled\\ntoller\\ntollers\\ntollgate\\ntollgates\\ntolling\\ntollman\\ntollmen\\ntolls\\ntollway\\ntollways\\ntolu\\ntoluate\\ntoluates\\ntoluene\\ntoluenes\\ntoluic\\ntoluid\\ntoluide\\ntoluides\\ntoluidin\\ntoluidins\\ntoluids\\ntoluol\\ntoluole\\ntoluoles\\ntoluols\\ntolus\\ntoluyl\\ntoluyls\\ntolyl\\ntolyls\\ntom\\ntomahawk\\ntomahawked\\ntomahawking\\ntomahawks\\ntomalley\\ntomalleys\\ntoman\\ntomans\\ntomato\\ntomatoes\\ntomb\\ntombac\\ntomback\\ntombacks\\ntombacs\\ntombak\\ntombaks\\ntombal\\ntombed\\ntombing\\ntombless\\ntomblike\\ntombolo\\ntombolos\\ntomboy\\ntomboys\\ntombs\\ntombstone\\ntombstones\\ntomcat\\ntomcats\\ntomcod\\ntomcods\\ntome\\ntomenta\\ntomentum\\ntomes\\ntomfool\\ntomfools\\ntommies\\ntommy\\ntommyrot\\ntommyrots\\ntomogram\\ntomograms\\ntomorrow\\ntomorrows\\ntompion\\ntompions\\ntoms\\ntomtit\\ntomtits\\nton\\ntonal\\ntonalities\\ntonality\\ntonally\\ntondi\\ntondo\\ntone\\ntoned\\ntoneless\\ntoneme\\ntonemes\\ntonemic\\ntoner\\ntoners\\ntones\\ntonetic\\ntonetics\\ntonette\\ntonettes\\ntong\\ntonga\\ntongas\\ntonged\\ntonger\\ntongers\\ntonging\\ntongman\\ntongmen\\ntongs\\ntongue\\ntongued\\ntongueless\\ntongues\\ntonguing\\ntonguings\\ntonic\\ntonicities\\ntonicity\\ntonics\\ntonier\\ntoniest\\ntonight\\ntonights\\ntoning\\ntonish\\ntonishly\\ntonka\\ntonlet\\ntonlets\\ntonnage\\ntonnages\\ntonne\\ntonneau\\ntonneaus\\ntonneaux\\ntonner\\ntonners\\ntonnes\\ntonnish\\ntons\\ntonsil\\ntonsilar\\ntonsillectomies\\ntonsillectomy\\ntonsillitis\\ntonsillitises\\ntonsils\\ntonsure\\ntonsured\\ntonsures\\ntonsuring\\ntontine\\ntontines\\ntonus\\ntonuses\\ntony\\ntoo\\ntook\\ntool\\ntoolbox\\ntoolboxes\\ntooled\\ntooler\\ntoolers\\ntoolhead\\ntoolheads\\ntooling\\ntoolings\\ntoolless\\ntoolroom\\ntoolrooms\\ntools\\ntoolshed\\ntoolsheds\\ntoom\\ntoon\\ntoons\\ntoot\\ntooted\\ntooter\\ntooters\\ntooth\\ntoothache\\ntoothaches\\ntoothbrush\\ntoothbrushes\\ntoothed\\ntoothier\\ntoothiest\\ntoothily\\ntoothing\\ntoothless\\ntoothpaste\\ntoothpastes\\ntoothpick\\ntoothpicks\\ntooths\\ntoothsome\\ntoothy\\ntooting\\ntootle\\ntootled\\ntootler\\ntootlers\\ntootles\\ntootling\\ntoots\\ntootses\\ntootsie\\ntootsies\\ntootsy\\ntop\\ntopaz\\ntopazes\\ntopazine\\ntopcoat\\ntopcoats\\ntopcross\\ntopcrosses\\ntope\\ntoped\\ntopee\\ntopees\\ntoper\\ntopers\\ntopes\\ntopful\\ntopfull\\ntoph\\ntophe\\ntophes\\ntophi\\ntophs\\ntophus\\ntopi\\ntopiaries\\ntopiary\\ntopic\\ntopical\\ntopically\\ntopics\\ntoping\\ntopis\\ntopkick\\ntopkicks\\ntopknot\\ntopknots\\ntopless\\ntoploftier\\ntoploftiest\\ntoplofty\\ntopmast\\ntopmasts\\ntopmost\\ntopnotch\\ntopographer\\ntopographers\\ntopographic\\ntopographical\\ntopographies\\ntopography\\ntopoi\\ntopologic\\ntopologies\\ntopology\\ntoponym\\ntoponymies\\ntoponyms\\ntoponymy\\ntopos\\ntopotype\\ntopotypes\\ntopped\\ntopper\\ntoppers\\ntopping\\ntoppings\\ntopple\\ntoppled\\ntopples\\ntoppling\\ntops\\ntopsail\\ntopsails\\ntopside\\ntopsides\\ntopsoil\\ntopsoiled\\ntopsoiling\\ntopsoils\\ntopstone\\ntopstones\\ntopwork\\ntopworked\\ntopworking\\ntopworks\\ntoque\\ntoques\\ntoquet\\ntoquets\\ntor\\ntora\\ntorah\\ntorahs\\ntoras\\ntorc\\ntorch\\ntorchbearer\\ntorchbearers\\ntorched\\ntorchere\\ntorcheres\\ntorches\\ntorchier\\ntorchiers\\ntorching\\ntorchlight\\ntorchlights\\ntorchon\\ntorchons\\ntorcs\\ntore\\ntoreador\\ntoreadors\\ntorero\\ntoreros\\ntores\\ntoreutic\\ntori\\ntoric\\ntories\\ntorii\\ntorment\\ntormented\\ntormenting\\ntormentor\\ntormentors\\ntorments\\ntorn\\ntornadic\\ntornado\\ntornadoes\\ntornados\\ntornillo\\ntornillos\\ntoro\\ntoroid\\ntoroidal\\ntoroids\\ntoros\\ntorose\\ntorosities\\ntorosity\\ntorous\\ntorpedo\\ntorpedoed\\ntorpedoes\\ntorpedoing\\ntorpedos\\ntorpid\\ntorpidities\\ntorpidity\\ntorpidly\\ntorpids\\ntorpor\\ntorpors\\ntorquate\\ntorque\\ntorqued\\ntorquer\\ntorquers\\ntorques\\ntorqueses\\ntorquing\\ntorr\\ntorrefied\\ntorrefies\\ntorrefy\\ntorrefying\\ntorrent\\ntorrential\\ntorrents\\ntorrid\\ntorrider\\ntorridest\\ntorridly\\ntorrified\\ntorrifies\\ntorrify\\ntorrifying\\ntors\\ntorsade\\ntorsades\\ntorse\\ntorses\\ntorsi\\ntorsion\\ntorsional\\ntorsionally\\ntorsions\\ntorsk\\ntorsks\\ntorso\\ntorsos\\ntort\\ntorte\\ntorten\\ntortes\\ntortile\\ntortilla\\ntortillas\\ntortious\\ntortoise\\ntortoises\\ntortoni\\ntortonis\\ntortrix\\ntortrixes\\ntorts\\ntortuous\\ntorture\\ntortured\\ntorturer\\ntorturers\\ntortures\\ntorturing\\ntorula\\ntorulae\\ntorulas\\ntorus\\ntory\\ntosh\\ntoshes\\ntoss\\ntossed\\ntosser\\ntossers\\ntosses\\ntossing\\ntosspot\\ntosspots\\ntossup\\ntossups\\ntost\\ntot\\ntotable\\ntotal\\ntotaled\\ntotaling\\ntotalise\\ntotalised\\ntotalises\\ntotalising\\ntotalism\\ntotalisms\\ntotalitarian\\ntotalitarianism\\ntotalitarianisms\\ntotalitarians\\ntotalities\\ntotality\\ntotalize\\ntotalized\\ntotalizes\\ntotalizing\\ntotalled\\ntotalling\\ntotally\\ntotals\\ntote\\ntoted\\ntotem\\ntotemic\\ntotemism\\ntotemisms\\ntotemist\\ntotemists\\ntotemite\\ntotemites\\ntotems\\ntoter\\ntoters\\ntotes\\ntother\\ntoting\\ntots\\ntotted\\ntotter\\ntottered\\ntotterer\\ntotterers\\ntottering\\ntotters\\ntottery\\ntotting\\ntotty\\ntoucan\\ntoucans\\ntouch\\ntouchback\\ntouchbacks\\ntouchdown\\ntouchdowns\\ntouche\\ntouched\\ntoucher\\ntouchers\\ntouches\\ntouchier\\ntouchiest\\ntouchily\\ntouching\\ntouchstone\\ntouchstones\\ntouchup\\ntouchups\\ntouchy\\ntough\\ntoughen\\ntoughened\\ntoughening\\ntoughens\\ntougher\\ntoughest\\ntoughie\\ntoughies\\ntoughish\\ntoughly\\ntoughness\\ntoughnesses\\ntoughs\\ntoughy\\ntoupee\\ntoupees\\ntour\\ntouraco\\ntouracos\\ntoured\\ntourer\\ntourers\\ntouring\\ntourings\\ntourism\\ntourisms\\ntourist\\ntourists\\ntouristy\\ntournament\\ntournaments\\ntourney\\ntourneyed\\ntourneying\\ntourneys\\ntourniquet\\ntourniquets\\ntours\\ntouse\\ntoused\\ntouses\\ntousing\\ntousle\\ntousled\\ntousles\\ntousling\\ntout\\ntouted\\ntouter\\ntouters\\ntouting\\ntouts\\ntouzle\\ntouzled\\ntouzles\\ntouzling\\ntovarich\\ntovariches\\ntovarish\\ntovarishes\\ntow\\ntowage\\ntowages\\ntoward\\ntowardly\\ntowards\\ntowaway\\ntowaways\\ntowboat\\ntowboats\\ntowed\\ntowel\\ntoweled\\ntoweling\\ntowelings\\ntowelled\\ntowelling\\ntowels\\ntower\\ntowered\\ntowerier\\ntoweriest\\ntowering\\ntowers\\ntowery\\ntowhead\\ntowheaded\\ntowheads\\ntowhee\\ntowhees\\ntowie\\ntowies\\ntowing\\ntowline\\ntowlines\\ntowmond\\ntowmonds\\ntowmont\\ntowmonts\\ntown\\ntownee\\ntownees\\ntownfolk\\ntownie\\ntownies\\ntownish\\ntownless\\ntownlet\\ntownlets\\ntowns\\ntownship\\ntownships\\ntownsman\\ntownsmen\\ntownspeople\\ntownwear\\ntownwears\\ntowny\\ntowpath\\ntowpaths\\ntowrope\\ntowropes\\ntows\\ntowy\\ntoxaemia\\ntoxaemias\\ntoxaemic\\ntoxemia\\ntoxemias\\ntoxemic\\ntoxic\\ntoxical\\ntoxicant\\ntoxicants\\ntoxicities\\ntoxicity\\ntoxin\\ntoxine\\ntoxines\\ntoxins\\ntoxoid\\ntoxoids\\ntoy\\ntoyed\\ntoyer\\ntoyers\\ntoying\\ntoyish\\ntoyless\\ntoylike\\ntoyo\\ntoyon\\ntoyons\\ntoyos\\ntoys\\ntrabeate\\ntrace\\ntraceable\\ntraced\\ntracer\\ntraceries\\ntracers\\ntracery\\ntraces\\ntrachea\\ntracheae\\ntracheal\\ntracheas\\ntracheid\\ntracheids\\ntracherous\\ntracherously\\ntrachle\\ntrachled\\ntrachles\\ntrachling\\ntrachoma\\ntrachomas\\ntrachyte\\ntrachytes\\ntracing\\ntracings\\ntrack\\ntrackage\\ntrackages\\ntracked\\ntracker\\ntrackers\\ntracking\\ntrackings\\ntrackman\\ntrackmen\\ntracks\\ntract\\ntractable\\ntractate\\ntractates\\ntractile\\ntraction\\ntractional\\ntractions\\ntractive\\ntractor\\ntractors\\ntracts\\ntrad\\ntradable\\ntrade\\ntraded\\ntrademark\\ntrademarked\\ntrademarking\\ntrademarks\\ntrader\\ntraders\\ntrades\\ntradesman\\ntradesmen\\ntradespeople\\ntrading\\ntradition\\ntraditional\\ntraditionally\\ntraditions\\ntraditor\\ntraditores\\ntraduce\\ntraduced\\ntraducer\\ntraducers\\ntraduces\\ntraducing\\ntraffic\\ntrafficked\\ntrafficker\\ntraffickers\\ntrafficking\\ntraffics\\ntragedies\\ntragedy\\ntragi\\ntragic\\ntragical\\ntragically\\ntragopan\\ntragopans\\ntragus\\ntraik\\ntraiked\\ntraiking\\ntraiks\\ntrail\\ntrailed\\ntrailer\\ntrailered\\ntrailering\\ntrailers\\ntrailing\\ntrails\\ntrain\\ntrained\\ntrainee\\ntrainees\\ntrainer\\ntrainers\\ntrainful\\ntrainfuls\\ntraining\\ntrainings\\ntrainload\\ntrainloads\\ntrainman\\ntrainmen\\ntrains\\ntrainway\\ntrainways\\ntraipse\\ntraipsed\\ntraipses\\ntraipsing\\ntrait\\ntraitor\\ntraitors\\ntraits\\ntraject\\ntrajected\\ntrajecting\\ntrajects\\ntram\\ntramcar\\ntramcars\\ntramel\\ntrameled\\ntrameling\\ntramell\\ntramelled\\ntramelling\\ntramells\\ntramels\\ntramless\\ntramline\\ntrammed\\ntrammel\\ntrammeled\\ntrammeling\\ntrammelled\\ntrammelling\\ntrammels\\ntramming\\ntramp\\ntramped\\ntramper\\ntrampers\\ntramping\\ntrampish\\ntrample\\ntrampled\\ntrampler\\ntramplers\\ntramples\\ntrampling\\ntrampoline\\ntrampoliner\\ntrampoliners\\ntrampolines\\ntrampolinist\\ntrampolinists\\ntramps\\ntramroad\\ntramroads\\ntrams\\ntramway\\ntramways\\ntrance\\ntranced\\ntrances\\ntrancing\\ntrangam\\ntrangams\\ntranquil\\ntranquiler\\ntranquilest\\ntranquilities\\ntranquility\\ntranquilize\\ntranquilized\\ntranquilizer\\ntranquilizers\\ntranquilizes\\ntranquilizing\\ntranquiller\\ntranquillest\\ntranquillities\\ntranquillity\\ntranquillize\\ntranquillized\\ntranquillizer\\ntranquillizers\\ntranquillizes\\ntranquillizing\\ntranquilly\\ntrans\\ntransact\\ntransacted\\ntransacting\\ntransaction\\ntransactions\\ntransacts\\ntranscend\\ntranscended\\ntranscendent\\ntranscendental\\ntranscending\\ntranscends\\ntranscribe\\ntranscribes\\ntranscript\\ntranscription\\ntranscriptions\\ntranscripts\\ntransect\\ntransected\\ntransecting\\ntransects\\ntransept\\ntransepts\\ntransfer\\ntransferability\\ntransferable\\ntransferal\\ntransferals\\ntransference\\ntransferences\\ntransferred\\ntransferring\\ntransfers\\ntransfiguration\\ntransfigurations\\ntransfigure\\ntransfigured\\ntransfigures\\ntransfiguring\\ntransfix\\ntransfixed\\ntransfixes\\ntransfixing\\ntransfixt\\ntransform\\ntransformation\\ntransformations\\ntransformed\\ntransformer\\ntransformers\\ntransforming\\ntransforms\\ntransfuse\\ntransfused\\ntransfuses\\ntransfusing\\ntransfusion\\ntransfusions\\ntransgress\\ntransgressed\\ntransgresses\\ntransgressing\\ntransgression\\ntransgressions\\ntransgressor\\ntransgressors\\ntranship\\ntranshipped\\ntranshipping\\ntranships\\ntransistor\\ntransistorize\\ntransistorized\\ntransistorizes\\ntransistorizing\\ntransistors\\ntransit\\ntransited\\ntransiting\\ntransition\\ntransitional\\ntransitions\\ntransitory\\ntransits\\ntranslatable\\ntranslate\\ntranslated\\ntranslates\\ntranslating\\ntranslation\\ntranslations\\ntranslator\\ntranslators\\ntranslucence\\ntranslucences\\ntranslucencies\\ntranslucency\\ntranslucent\\ntranslucently\\ntransmissible\\ntransmission\\ntransmissions\\ntransmit\\ntransmits\\ntransmittable\\ntransmittal\\ntransmittals\\ntransmitted\\ntransmitter\\ntransmitters\\ntransmitting\\ntransom\\ntransoms\\ntransparencies\\ntransparency\\ntransparent\\ntransparently\\ntranspiration\\ntranspirations\\ntranspire\\ntranspired\\ntranspires\\ntranspiring\\ntransplant\\ntransplantation\\ntransplantations\\ntransplanted\\ntransplanting\\ntransplants\\ntransport\\ntransportation\\ntransported\\ntransporter\\ntransporters\\ntransporting\\ntransports\\ntranspose\\ntransposed\\ntransposes\\ntransposing\\ntransposition\\ntranspositions\\ntransship\\ntransshiped\\ntransshiping\\ntransshipment\\ntransshipments\\ntransships\\ntransude\\ntransuded\\ntransudes\\ntransuding\\ntransverse\\ntransversely\\ntransverses\\ntrap\\ntrapan\\ntrapanned\\ntrapanning\\ntrapans\\ntrapball\\ntrapballs\\ntrapdoor\\ntrapdoors\\ntrapes\\ntrapesed\\ntrapeses\\ntrapesing\\ntrapeze\\ntrapezes\\ntrapezia\\ntrapezoid\\ntrapezoidal\\ntrapezoids\\ntraplike\\ntrapnest\\ntrapnested\\ntrapnesting\\ntrapnests\\ntrappean\\ntrapped\\ntrapper\\ntrappers\\ntrapping\\ntrappings\\ntrappose\\ntrappous\\ntraprock\\ntraprocks\\ntraps\\ntrapt\\ntrapunto\\ntrapuntos\\ntrash\\ntrashed\\ntrashes\\ntrashier\\ntrashiest\\ntrashily\\ntrashing\\ntrashman\\ntrashmen\\ntrashy\\ntrass\\ntrasses\\ntrauchle\\ntrauchled\\ntrauchles\\ntrauchling\\ntrauma\\ntraumas\\ntraumata\\ntraumatic\\ntravail\\ntravailed\\ntravailing\\ntravails\\ntrave\\ntravel\\ntraveled\\ntraveler\\ntravelers\\ntraveling\\ntravelled\\ntraveller\\ntravellers\\ntravelling\\ntravelog\\ntravelogs\\ntravels\\ntraverse\\ntraversed\\ntraverses\\ntraversing\\ntraves\\ntravestied\\ntravesties\\ntravesty\\ntravestying\\ntravois\\ntravoise\\ntravoises\\ntrawl\\ntrawled\\ntrawler\\ntrawlers\\ntrawley\\ntrawleys\\ntrawling\\ntrawls\\ntray\\ntrayful\\ntrayfuls\\ntrays\\ntreacle\\ntreacles\\ntreacly\\ntread\\ntreaded\\ntreader\\ntreaders\\ntreading\\ntreadle\\ntreadled\\ntreadler\\ntreadlers\\ntreadles\\ntreadling\\ntreadmill\\ntreadmills\\ntreads\\ntreason\\ntreasonable\\ntreasonous\\ntreasons\\ntreasure\\ntreasured\\ntreasurer\\ntreasurers\\ntreasures\\ntreasuries\\ntreasuring\\ntreasury\\ntreat\\ntreated\\ntreater\\ntreaters\\ntreaties\\ntreating\\ntreatise\\ntreatises\\ntreatment\\ntreatments\\ntreats\\ntreaty\\ntreble\\ntrebled\\ntrebles\\ntrebling\\ntrebly\\ntrecento\\ntrecentos\\ntreddle\\ntreddled\\ntreddles\\ntreddling\\ntree\\ntreed\\ntreeing\\ntreeless\\ntreelike\\ntreenail\\ntreenails\\ntrees\\ntreetop\\ntreetops\\ntref\\ntrefah\\ntrefoil\\ntrefoils\\ntrehala\\ntrehalas\\ntrek\\ntrekked\\ntrekker\\ntrekkers\\ntrekking\\ntreks\\ntrellis\\ntrellised\\ntrellises\\ntrellising\\ntremble\\ntrembled\\ntrembler\\ntremblers\\ntrembles\\ntremblier\\ntrembliest\\ntrembling\\ntrembly\\ntremendous\\ntremendously\\ntremolo\\ntremolos\\ntremor\\ntremors\\ntremulous\\ntremulously\\ntrenail\\ntrenails\\ntrench\\ntrenchant\\ntrenched\\ntrencher\\ntrenchers\\ntrenches\\ntrenching\\ntrend\\ntrended\\ntrendier\\ntrendiest\\ntrendily\\ntrending\\ntrends\\ntrendy\\ntrepan\\ntrepang\\ntrepangs\\ntrepanned\\ntrepanning\\ntrepans\\ntrephine\\ntrephined\\ntrephines\\ntrephining\\ntrepid\\ntrepidation\\ntrepidations\\ntrespass\\ntrespassed\\ntrespasser\\ntrespassers\\ntrespasses\\ntrespassing\\ntress\\ntressed\\ntressel\\ntressels\\ntresses\\ntressier\\ntressiest\\ntressour\\ntressours\\ntressure\\ntressures\\ntressy\\ntrestle\\ntrestles\\ntret\\ntrets\\ntrevet\\ntrevets\\ntrews\\ntrey\\ntreys\\ntriable\\ntriacid\\ntriacids\\ntriad\\ntriadic\\ntriadics\\ntriadism\\ntriadisms\\ntriads\\ntriage\\ntriages\\ntrial\\ntrials\\ntriangle\\ntriangles\\ntriangular\\ntriangularly\\ntriarchies\\ntriarchy\\ntriaxial\\ntriazin\\ntriazine\\ntriazines\\ntriazins\\ntriazole\\ntriazoles\\ntribade\\ntribades\\ntribadic\\ntribal\\ntribally\\ntribasic\\ntribe\\ntribes\\ntribesman\\ntribesmen\\ntribrach\\ntribrachs\\ntribulation\\ntribulations\\ntribunal\\ntribunals\\ntribune\\ntribunes\\ntributaries\\ntributary\\ntribute\\ntributes\\ntrice\\ntriced\\ntriceps\\ntricepses\\ntrices\\ntrichina\\ntrichinae\\ntrichinas\\ntrichite\\ntrichites\\ntrichoid\\ntrichome\\ntrichomes\\ntricing\\ntrick\\ntricked\\ntricker\\ntrickeries\\ntrickers\\ntrickery\\ntrickie\\ntrickier\\ntrickiest\\ntrickily\\ntricking\\ntrickish\\ntrickle\\ntrickled\\ntrickles\\ntricklier\\ntrickliest\\ntrickling\\ntrickly\\ntricks\\ntricksier\\ntricksiest\\ntrickster\\ntricksters\\ntricksy\\ntricky\\ntriclad\\ntriclads\\ntricolor\\ntricolors\\ntricorn\\ntricorne\\ntricornes\\ntricorns\\ntricot\\ntricots\\ntrictrac\\ntrictracs\\ntricycle\\ntricycles\\ntrident\\ntridents\\ntriduum\\ntriduums\\ntried\\ntriene\\ntrienes\\ntriennia\\ntriennial\\ntriennials\\ntriens\\ntrientes\\ntrier\\ntriers\\ntries\\ntriethyl\\ntrifid\\ntrifle\\ntrifled\\ntrifler\\ntriflers\\ntrifles\\ntrifling\\ntriflings\\ntrifocal\\ntrifocals\\ntrifold\\ntriforia\\ntriform\\ntrig\\ntrigged\\ntrigger\\ntriggered\\ntriggering\\ntriggers\\ntriggest\\ntrigging\\ntrigly\\ntriglyph\\ntriglyphs\\ntrigness\\ntrignesses\\ntrigo\\ntrigon\\ntrigonal\\ntrigonometric\\ntrigonometrical\\ntrigonometries\\ntrigonometry\\ntrigons\\ntrigos\\ntrigraph\\ntrigraphs\\ntrigs\\ntrihedra\\ntrijet\\ntrijets\\ntrilbies\\ntrilby\\ntrill\\ntrilled\\ntriller\\ntrillers\\ntrilling\\ntrillion\\ntrillions\\ntrillionth\\ntrillionths\\ntrillium\\ntrilliums\\ntrills\\ntrilobal\\ntrilobed\\ntrilogies\\ntrilogy\\ntrim\\ntrimaran\\ntrimarans\\ntrimer\\ntrimers\\ntrimester\\ntrimeter\\ntrimeters\\ntrimly\\ntrimmed\\ntrimmer\\ntrimmers\\ntrimmest\\ntrimming\\ntrimmings\\ntrimness\\ntrimnesses\\ntrimorph\\ntrimorphs\\ntrimotor\\ntrimotors\\ntrims\\ntrinal\\ntrinary\\ntrindle\\ntrindled\\ntrindles\\ntrindling\\ntrine\\ntrined\\ntrines\\ntrining\\ntrinities\\ntrinity\\ntrinket\\ntrinketed\\ntrinketing\\ntrinkets\\ntrinkums\\ntrinodal\\ntrio\\ntriode\\ntriodes\\ntriol\\ntriolet\\ntriolets\\ntriols\\ntrios\\ntriose\\ntrioses\\ntrioxid\\ntrioxide\\ntrioxides\\ntrioxids\\ntrip\\ntripack\\ntripacks\\ntripart\\ntripartite\\ntripe\\ntripedal\\ntripes\\ntriphase\\ntriplane\\ntriplanes\\ntriple\\ntripled\\ntriples\\ntriplet\\ntriplets\\ntriplex\\ntriplexes\\ntriplicate\\ntriplicates\\ntripling\\ntriplite\\ntriplites\\ntriploid\\ntriploids\\ntriply\\ntripod\\ntripodal\\ntripodic\\ntripodies\\ntripody\\ntripoli\\ntripolis\\ntripos\\ntriposes\\ntripped\\ntripper\\ntrippers\\ntrippet\\ntrippets\\ntripping\\ntrippings\\ntrips\\ntriptane\\ntriptanes\\ntriptyca\\ntriptycas\\ntriptych\\ntriptychs\\ntrireme\\ntriremes\\ntriscele\\ntrisceles\\ntrisect\\ntrisected\\ntrisecting\\ntrisection\\ntrisections\\ntrisects\\ntriseme\\ntrisemes\\ntrisemic\\ntriskele\\ntriskeles\\ntrismic\\ntrismus\\ntrismuses\\ntrisome\\ntrisomes\\ntrisomic\\ntrisomics\\ntrisomies\\ntrisomy\\ntristate\\ntriste\\ntristeza\\ntristezas\\ntristful\\ntristich\\ntristichs\\ntrite\\ntritely\\ntriter\\ntritest\\ntrithing\\ntrithings\\ntriticum\\ntriticums\\ntritium\\ntritiums\\ntritoma\\ntritomas\\ntriton\\ntritone\\ntritones\\ntritons\\ntriumph\\ntriumphal\\ntriumphant\\ntriumphantly\\ntriumphed\\ntriumphing\\ntriumphs\\ntriumvir\\ntriumvirate\\ntriumvirates\\ntriumviri\\ntriumvirs\\ntriune\\ntriunes\\ntriunities\\ntriunity\\ntrivalve\\ntrivalves\\ntrivet\\ntrivets\\ntrivia\\ntrivial\\ntrivialities\\ntriviality\\ntrivium\\ntroak\\ntroaked\\ntroaking\\ntroaks\\ntrocar\\ntrocars\\ntrochaic\\ntrochaics\\ntrochal\\ntrochar\\ntrochars\\ntroche\\ntrochee\\ntrochees\\ntroches\\ntrochil\\ntrochili\\ntrochils\\ntrochlea\\ntrochleae\\ntrochleas\\ntrochoid\\ntrochoids\\ntrock\\ntrocked\\ntrocking\\ntrocks\\ntrod\\ntrodden\\ntrode\\ntroffer\\ntroffers\\ntrogon\\ntrogons\\ntroika\\ntroikas\\ntroilite\\ntroilites\\ntroilus\\ntroiluses\\ntrois\\ntroke\\ntroked\\ntrokes\\ntroking\\ntroland\\ntrolands\\ntroll\\ntrolled\\ntroller\\ntrollers\\ntrolley\\ntrolleyed\\ntrolleying\\ntrolleys\\ntrollied\\ntrollies\\ntrolling\\ntrollings\\ntrollop\\ntrollops\\ntrollopy\\ntrolls\\ntrolly\\ntrollying\\ntrombone\\ntrombones\\ntrombonist\\ntrombonists\\ntrommel\\ntrommels\\ntromp\\ntrompe\\ntromped\\ntrompes\\ntromping\\ntromps\\ntrona\\ntronas\\ntrone\\ntrones\\ntroop\\ntrooped\\ntrooper\\ntroopers\\ntroopial\\ntroopials\\ntrooping\\ntroops\\ntrooz\\ntrop\\ntrope\\ntropes\\ntrophic\\ntrophied\\ntrophies\\ntrophy\\ntrophying\\ntropic\\ntropical\\ntropics\\ntropin\\ntropine\\ntropines\\ntropins\\ntropism\\ntropisms\\ntrot\\ntroth\\ntrothed\\ntrothing\\ntroths\\ntrotline\\ntrotlines\\ntrots\\ntrotted\\ntrotter\\ntrotters\\ntrotting\\ntrotyl\\ntrotyls\\ntroubadour\\ntroubadours\\ntrouble\\ntroubled\\ntroublemaker\\ntroublemakers\\ntroubler\\ntroublers\\ntroubles\\ntroubleshoot\\ntroubleshooted\\ntroubleshooting\\ntroubleshoots\\ntroublesome\\ntroublesomely\\ntroubling\\ntrough\\ntroughs\\ntrounce\\ntrounced\\ntrounces\\ntrouncing\\ntroupe\\ntrouped\\ntrouper\\ntroupers\\ntroupes\\ntroupial\\ntroupials\\ntrouping\\ntrouser\\ntrousers\\ntrousseau\\ntrousseaus\\ntrousseaux\\ntrout\\ntroutier\\ntroutiest\\ntrouts\\ntrouty\\ntrouvere\\ntrouveres\\ntrouveur\\ntrouveurs\\ntrove\\ntrover\\ntrovers\\ntroves\\ntrow\\ntrowed\\ntrowel\\ntroweled\\ntroweler\\ntrowelers\\ntroweling\\ntrowelled\\ntrowelling\\ntrowels\\ntrowing\\ntrows\\ntrowsers\\ntrowth\\ntrowths\\ntroy\\ntroys\\ntruancies\\ntruancy\\ntruant\\ntruanted\\ntruanting\\ntruantries\\ntruantry\\ntruants\\ntruce\\ntruced\\ntruces\\ntrucing\\ntruck\\ntruckage\\ntruckages\\ntrucked\\ntrucker\\ntruckers\\ntrucking\\ntruckings\\ntruckle\\ntruckled\\ntruckler\\ntrucklers\\ntruckles\\ntruckling\\ntruckload\\ntruckloads\\ntruckman\\ntruckmen\\ntrucks\\ntruculencies\\ntruculency\\ntruculent\\ntruculently\\ntrudge\\ntrudged\\ntrudgen\\ntrudgens\\ntrudgeon\\ntrudgeons\\ntrudger\\ntrudgers\\ntrudges\\ntrudging\\ntrue\\ntrueblue\\ntrueblues\\ntrueborn\\ntrued\\ntrueing\\ntruelove\\ntrueloves\\ntrueness\\ntruenesses\\ntruer\\ntrues\\ntruest\\ntruffe\\ntruffes\\ntruffle\\ntruffled\\ntruffles\\ntruing\\ntruism\\ntruisms\\ntruistic\\ntrull\\ntrulls\\ntruly\\ntrumeau\\ntrumeaux\\ntrump\\ntrumped\\ntrumperies\\ntrumpery\\ntrumpet\\ntrumpeted\\ntrumpeter\\ntrumpeters\\ntrumpeting\\ntrumpets\\ntrumping\\ntrumps\\ntruncate\\ntruncated\\ntruncates\\ntruncating\\ntruncation\\ntruncations\\ntrundle\\ntrundled\\ntrundler\\ntrundlers\\ntrundles\\ntrundling\\ntrunk\\ntrunked\\ntrunks\\ntrunnel\\ntrunnels\\ntrunnion\\ntrunnions\\ntruss\\ntrussed\\ntrusser\\ntrussers\\ntrusses\\ntrussing\\ntrussings\\ntrust\\ntrusted\\ntrustee\\ntrusteed\\ntrusteeing\\ntrustees\\ntrusteeship\\ntrusteeships\\ntruster\\ntrusters\\ntrustful\\ntrustfully\\ntrustier\\ntrusties\\ntrustiest\\ntrustily\\ntrusting\\ntrusts\\ntrustworthiness\\ntrustworthinesses\\ntrustworthy\\ntrusty\\ntruth\\ntruthful\\ntruthfully\\ntruthfulness\\ntruthfulnesses\\ntruths\\ntry\\ntrying\\ntryingly\\ntryma\\ntrymata\\ntryout\\ntryouts\\ntrypsin\\ntrypsins\\ntryptic\\ntrysail\\ntrysails\\ntryst\\ntryste\\ntrysted\\ntryster\\ntrysters\\ntrystes\\ntrysting\\ntrysts\\ntryworks\\ntsade\\ntsades\\ntsadi\\ntsadis\\ntsar\\ntsardom\\ntsardoms\\ntsarevna\\ntsarevnas\\ntsarina\\ntsarinas\\ntsarism\\ntsarisms\\ntsarist\\ntsarists\\ntsaritza\\ntsaritzas\\ntsars\\ntsetse\\ntsetses\\ntsimmes\\ntsk\\ntsked\\ntsking\\ntsks\\ntsktsk\\ntsktsked\\ntsktsking\\ntsktsks\\ntsuba\\ntsunami\\ntsunamic\\ntsunamis\\ntsuris\\ntuatara\\ntuataras\\ntuatera\\ntuateras\\ntub\\ntuba\\ntubae\\ntubal\\ntubas\\ntubate\\ntubbable\\ntubbed\\ntubber\\ntubbers\\ntubbier\\ntubbiest\\ntubbing\\ntubby\\ntube\\ntubed\\ntubeless\\ntubelike\\ntuber\\ntubercle\\ntubercles\\ntubercular\\ntuberculoses\\ntuberculosis\\ntuberculous\\ntuberoid\\ntuberose\\ntuberoses\\ntuberous\\ntubers\\ntubes\\ntubework\\ntubeworks\\ntubful\\ntubfuls\\ntubifex\\ntubifexes\\ntubiform\\ntubing\\ntubings\\ntublike\\ntubs\\ntubular\\ntubulate\\ntubulated\\ntubulates\\ntubulating\\ntubule\\ntubules\\ntubulose\\ntubulous\\ntubulure\\ntubulures\\ntuchun\\ntuchuns\\ntuck\\ntuckahoe\\ntuckahoes\\ntucked\\ntucker\\ntuckered\\ntuckering\\ntuckers\\ntucket\\ntuckets\\ntucking\\ntucks\\ntufa\\ntufas\\ntuff\\ntuffet\\ntuffets\\ntuffs\\ntuft\\ntufted\\ntufter\\ntufters\\ntuftier\\ntuftiest\\ntuftily\\ntufting\\ntufts\\ntufty\\ntug\\ntugboat\\ntugboats\\ntugged\\ntugger\\ntuggers\\ntugging\\ntugless\\ntugrik\\ntugriks\\ntugs\\ntui\\ntuille\\ntuilles\\ntuis\\ntuition\\ntuitions\\ntuladi\\ntuladis\\ntule\\ntules\\ntulip\\ntulips\\ntulle\\ntulles\\ntullibee\\ntullibees\\ntumble\\ntumbled\\ntumbler\\ntumblers\\ntumbles\\ntumbling\\ntumblings\\ntumbrel\\ntumbrels\\ntumbril\\ntumbrils\\ntumefied\\ntumefies\\ntumefy\\ntumefying\\ntumid\\ntumidily\\ntumidities\\ntumidity\\ntummies\\ntummy\\ntumor\\ntumoral\\ntumorous\\ntumors\\ntumour\\ntumours\\ntump\\ntumpline\\ntumplines\\ntumps\\ntumular\\ntumuli\\ntumulose\\ntumulous\\ntumult\\ntumults\\ntumultuous\\ntumulus\\ntumuluses\\ntun\\ntuna\\ntunable\\ntunably\\ntunas\\ntundish\\ntundishes\\ntundra\\ntundras\\ntune\\ntuneable\\ntuneably\\ntuned\\ntuneful\\ntuneless\\ntuner\\ntuners\\ntunes\\ntung\\ntungs\\ntungsten\\ntungstens\\ntungstic\\ntunic\\ntunica\\ntunicae\\ntunicate\\ntunicates\\ntunicle\\ntunicles\\ntunics\\ntuning\\ntunnage\\ntunnages\\ntunned\\ntunnel\\ntunneled\\ntunneler\\ntunnelers\\ntunneling\\ntunnelled\\ntunnelling\\ntunnels\\ntunnies\\ntunning\\ntunny\\ntuns\\ntup\\ntupelo\\ntupelos\\ntupik\\ntupiks\\ntupped\\ntuppence\\ntuppences\\ntuppeny\\ntupping\\ntups\\ntuque\\ntuques\\nturaco\\nturacos\\nturacou\\nturacous\\nturban\\nturbaned\\nturbans\\nturbaries\\nturbary\\nturbeth\\nturbeths\\nturbid\\nturbidities\\nturbidity\\nturbidly\\nturbidness\\nturbidnesses\\nturbinal\\nturbinals\\nturbine\\nturbines\\nturbit\\nturbith\\nturbiths\\nturbits\\nturbo\\nturbocar\\nturbocars\\nturbofan\\nturbofans\\nturbojet\\nturbojets\\nturboprop\\nturboprops\\nturbos\\nturbot\\nturbots\\nturbulence\\nturbulences\\nturbulently\\nturd\\nturdine\\nturds\\ntureen\\ntureens\\nturf\\nturfed\\nturfier\\nturfiest\\nturfing\\nturfless\\nturflike\\nturfman\\nturfmen\\nturfs\\nturfski\\nturfskis\\nturfy\\nturgencies\\nturgency\\nturgent\\nturgid\\nturgidities\\nturgidity\\nturgidly\\nturgite\\nturgites\\nturgor\\nturgors\\nturkey\\nturkeys\\nturkois\\nturkoises\\nturmeric\\nturmerics\\nturmoil\\nturmoiled\\nturmoiling\\nturmoils\\nturn\\nturnable\\nturnaround\\nturncoat\\nturncoats\\nturndown\\nturndowns\\nturned\\nturner\\nturneries\\nturners\\nturnery\\nturnhall\\nturnhalls\\nturning\\nturnings\\nturnip\\nturnips\\nturnkey\\nturnkeys\\nturnoff\\nturnoffs\\nturnout\\nturnouts\\nturnover\\nturnovers\\nturnpike\\nturnpikes\\nturns\\nturnsole\\nturnsoles\\nturnspit\\nturnspits\\nturnstile\\nturnstiles\\nturntable\\nturntables\\nturnup\\nturnups\\nturpentine\\nturpentines\\nturpeth\\nturpeths\\nturpitude\\nturpitudes\\nturps\\nturquois\\nturquoise\\nturquoises\\nturret\\nturreted\\nturrets\\nturrical\\nturtle\\nturtled\\nturtledove\\nturtledoves\\nturtleneck\\nturtlenecks\\nturtler\\nturtlers\\nturtles\\nturtling\\nturtlings\\nturves\\ntusche\\ntusches\\ntush\\ntushed\\ntushes\\ntushing\\ntusk\\ntusked\\ntusker\\ntuskers\\ntusking\\ntuskless\\ntusklike\\ntusks\\ntussah\\ntussahs\\ntussal\\ntussar\\ntussars\\ntusseh\\ntussehs\\ntusser\\ntussers\\ntussis\\ntussises\\ntussive\\ntussle\\ntussled\\ntussles\\ntussling\\ntussock\\ntussocks\\ntussocky\\ntussor\\ntussore\\ntussores\\ntussors\\ntussuck\\ntussucks\\ntussur\\ntussurs\\ntut\\ntutee\\ntutees\\ntutelage\\ntutelages\\ntutelar\\ntutelaries\\ntutelars\\ntutelary\\ntutor\\ntutorage\\ntutorages\\ntutored\\ntutoress\\ntutoresses\\ntutorial\\ntutorials\\ntutoring\\ntutors\\ntutoyed\\ntutoyer\\ntutoyered\\ntutoyering\\ntutoyers\\ntuts\\ntutted\\ntutti\\ntutties\\ntutting\\ntuttis\\ntutty\\ntutu\\ntutus\\ntux\\ntuxedo\\ntuxedoes\\ntuxedos\\ntuxes\\ntuyer\\ntuyere\\ntuyeres\\ntuyers\\ntwa\\ntwaddle\\ntwaddled\\ntwaddler\\ntwaddlers\\ntwaddles\\ntwaddling\\ntwae\\ntwaes\\ntwain\\ntwains\\ntwang\\ntwanged\\ntwangier\\ntwangiest\\ntwanging\\ntwangle\\ntwangled\\ntwangler\\ntwanglers\\ntwangles\\ntwangling\\ntwangs\\ntwangy\\ntwankies\\ntwanky\\ntwas\\ntwasome\\ntwasomes\\ntwattle\\ntwattled\\ntwattles\\ntwattling\\ntweak\\ntweaked\\ntweakier\\ntweakiest\\ntweaking\\ntweaks\\ntweaky\\ntweed\\ntweedier\\ntweediest\\ntweedle\\ntweedled\\ntweedles\\ntweedling\\ntweeds\\ntweedy\\ntween\\ntweet\\ntweeted\\ntweeter\\ntweeters\\ntweeting\\ntweets\\ntweeze\\ntweezed\\ntweezer\\ntweezers\\ntweezes\\ntweezing\\ntwelfth\\ntwelfths\\ntwelve\\ntwelvemo\\ntwelvemos\\ntwelves\\ntwenties\\ntwentieth\\ntwentieths\\ntwenty\\ntwerp\\ntwerps\\ntwibil\\ntwibill\\ntwibills\\ntwibils\\ntwice\\ntwiddle\\ntwiddled\\ntwiddler\\ntwiddlers\\ntwiddles\\ntwiddling\\ntwier\\ntwiers\\ntwig\\ntwigged\\ntwiggen\\ntwiggier\\ntwiggiest\\ntwigging\\ntwiggy\\ntwigless\\ntwiglike\\ntwigs\\ntwilight\\ntwilights\\ntwilit\\ntwill\\ntwilled\\ntwilling\\ntwillings\\ntwills\\ntwin\\ntwinborn\\ntwine\\ntwined\\ntwiner\\ntwiners\\ntwines\\ntwinge\\ntwinged\\ntwinges\\ntwinging\\ntwinier\\ntwiniest\\ntwinight\\ntwining\\ntwinkle\\ntwinkled\\ntwinkler\\ntwinklers\\ntwinkles\\ntwinkling\\ntwinkly\\ntwinned\\ntwinning\\ntwinnings\\ntwins\\ntwinship\\ntwinships\\ntwiny\\ntwirl\\ntwirled\\ntwirler\\ntwirlers\\ntwirlier\\ntwirliest\\ntwirling\\ntwirls\\ntwirly\\ntwirp\\ntwirps\\ntwist\\ntwisted\\ntwister\\ntwisters\\ntwisting\\ntwistings\\ntwists\\ntwit\\ntwitch\\ntwitched\\ntwitcher\\ntwitchers\\ntwitches\\ntwitchier\\ntwitchiest\\ntwitching\\ntwitchy\\ntwits\\ntwitted\\ntwitter\\ntwittered\\ntwittering\\ntwitters\\ntwittery\\ntwitting\\ntwixt\\ntwo\\ntwofer\\ntwofers\\ntwofold\\ntwofolds\\ntwopence\\ntwopences\\ntwopenny\\ntwos\\ntwosome\\ntwosomes\\ntwyer\\ntwyers\\ntycoon\\ntycoons\\ntye\\ntyee\\ntyees\\ntyes\\ntying\\ntyke\\ntykes\\ntymbal\\ntymbals\\ntympan\\ntympana\\ntympanal\\ntympani\\ntympanic\\ntympanies\\ntympans\\ntympanum\\ntympanums\\ntympany\\ntyne\\ntyned\\ntynes\\ntyning\\ntypal\\ntype\\ntypeable\\ntypebar\\ntypebars\\ntypecase\\ntypecases\\ntypecast\\ntypecasting\\ntypecasts\\ntyped\\ntypeface\\ntypefaces\\ntypes\\ntypeset\\ntypeseting\\ntypesets\\ntypewrite\\ntypewrited\\ntypewriter\\ntypewriters\\ntypewrites\\ntypewriting\\ntypey\\ntyphoid\\ntyphoids\\ntyphon\\ntyphonic\\ntyphons\\ntyphoon\\ntyphoons\\ntyphose\\ntyphous\\ntyphus\\ntyphuses\\ntypic\\ntypical\\ntypically\\ntypicalness\\ntypicalnesses\\ntypier\\ntypiest\\ntypified\\ntypifier\\ntypifiers\\ntypifies\\ntypify\\ntypifying\\ntyping\\ntypist\\ntypists\\ntypo\\ntypographic\\ntypographical\\ntypographically\\ntypographies\\ntypography\\ntypologies\\ntypology\\ntypos\\ntypp\\ntypps\\ntypy\\ntyramine\\ntyramines\\ntyrannic\\ntyrannies\\ntyranny\\ntyrant\\ntyrants\\ntyre\\ntyred\\ntyres\\ntyring\\ntyro\\ntyronic\\ntyros\\ntyrosine\\ntyrosines\\ntythe\\ntythed\\ntythes\\ntything\\ntzaddik\\ntzaddikim\\ntzar\\ntzardom\\ntzardoms\\ntzarevna\\ntzarevnas\\ntzarina\\ntzarinas\\ntzarism\\ntzarisms\\ntzarist\\ntzarists\\ntzaritza\\ntzaritzas\\ntzars\\ntzetze\\ntzetzes\\ntzigane\\ntziganes\\ntzimmes\\ntzitzis\\ntzitzith\\ntzuris\\nubieties\\nubiety\\nubique\\nubiquities\\nubiquitities\\nubiquitity\\nubiquitous\\nubiquitously\\nubiquity\\nudder\\nudders\\nudo\\nudometer\\nudometers\\nudometries\\nudometry\\nudos\\nugh\\nughs\\nuglier\\nugliest\\nuglified\\nuglifier\\nuglifiers\\nuglifies\\nuglify\\nuglifying\\nuglily\\nugliness\\nuglinesses\\nugly\\nugsome\\nuhlan\\nuhlans\\nuintaite\\nuintaites\\nuit\\nukase\\nukases\\nuke\\nukelele\\nukeleles\\nukes\\nukulele\\nukuleles\\nulama\\nulamas\\nulan\\nulans\\nulcer\\nulcerate\\nulcerated\\nulcerates\\nulcerating\\nulceration\\nulcerations\\nulcerative\\nulcered\\nulcering\\nulcerous\\nulcers\\nulema\\nulemas\\nulexite\\nulexites\\nullage\\nullaged\\nullages\\nulna\\nulnad\\nulnae\\nulnar\\nulnas\\nulster\\nulsters\\nulterior\\nultima\\nultimacies\\nultimacy\\nultimas\\nultimata\\nultimate\\nultimately\\nultimates\\nultimatum\\nultimo\\nultra\\nultraism\\nultraisms\\nultraist\\nultraists\\nultrared\\nultrareds\\nultras\\nultraviolet\\nululant\\nululate\\nululated\\nululates\\nululating\\nulva\\nulvas\\numbel\\numbeled\\numbellar\\numbelled\\numbellet\\numbellets\\numbels\\number\\numbered\\numbering\\numbers\\numbilical\\numbilici\\numbilicus\\numbles\\numbo\\numbonal\\numbonate\\numbones\\numbonic\\numbos\\numbra\\numbrae\\numbrage\\numbrages\\numbral\\numbras\\numbrella\\numbrellaed\\numbrellaing\\numbrellas\\numbrette\\numbrettes\\numiac\\numiack\\numiacks\\numiacs\\numiak\\numiaks\\numlaut\\numlauted\\numlauting\\numlauts\\nump\\numped\\numping\\numpirage\\numpirages\\numpire\\numpired\\numpires\\numpiring\\numps\\numpteen\\numpteenth\\numteenth\\nun\\nunabated\\nunable\\nunabridged\\nunabused\\nunacceptable\\nunaccompanied\\nunaccounted\\nunaccustomed\\nunacted\\nunaddressed\\nunadorned\\nunadulterated\\nunaffected\\nunaffectedly\\nunafraid\\nunaged\\nunageing\\nunagile\\nunaging\\nunai\\nunaided\\nunaimed\\nunaired\\nunais\\nunalike\\nunallied\\nunambiguous\\nunambiguously\\nunambitious\\nunamused\\nunanchor\\nunanchored\\nunanchoring\\nunanchors\\nunaneled\\nunanimities\\nunanimity\\nunanimous\\nunanimously\\nunannounced\\nunanswerable\\nunanswered\\nunanticipated\\nunappetizing\\nunappreciated\\nunapproved\\nunapt\\nunaptly\\nunare\\nunargued\\nunarm\\nunarmed\\nunarming\\nunarms\\nunartful\\nunary\\nunasked\\nunassisted\\nunassuming\\nunatoned\\nunattached\\nunattended\\nunattractive\\nunau\\nunaus\\nunauthorized\\nunavailable\\nunavoidable\\nunavowed\\nunawaked\\nunaware\\nunawares\\nunawed\\nunbacked\\nunbaked\\nunbalanced\\nunbar\\nunbarbed\\nunbarred\\nunbarring\\nunbars\\nunbased\\nunbated\\nunbe\\nunbear\\nunbearable\\nunbeared\\nunbearing\\nunbears\\nunbeaten\\nunbecoming\\nunbecomingly\\nunbed\\nunbelief\\nunbeliefs\\nunbelievable\\nunbelievably\\nunbelt\\nunbelted\\nunbelting\\nunbelts\\nunbend\\nunbended\\nunbending\\nunbends\\nunbenign\\nunbent\\nunbiased\\nunbid\\nunbidden\\nunbind\\nunbinding\\nunbinds\\nunbitted\\nunblamed\\nunblest\\nunblock\\nunblocked\\nunblocking\\nunblocks\\nunbloody\\nunbodied\\nunbolt\\nunbolted\\nunbolting\\nunbolts\\nunboned\\nunbonnet\\nunbonneted\\nunbonneting\\nunbonnets\\nunborn\\nunbosom\\nunbosomed\\nunbosoming\\nunbosoms\\nunbought\\nunbound\\nunbowed\\nunbox\\nunboxed\\nunboxes\\nunboxing\\nunbrace\\nunbraced\\nunbraces\\nunbracing\\nunbraid\\nunbraided\\nunbraiding\\nunbraids\\nunbranded\\nunbreakable\\nunbred\\nunbreech\\nunbreeched\\nunbreeches\\nunbreeching\\nunbridle\\nunbridled\\nunbridles\\nunbridling\\nunbroke\\nunbroken\\nunbuckle\\nunbuckled\\nunbuckles\\nunbuckling\\nunbuild\\nunbuilding\\nunbuilds\\nunbuilt\\nunbundle\\nunbundled\\nunbundles\\nunbundling\\nunburden\\nunburdened\\nunburdening\\nunburdens\\nunburied\\nunburned\\nunburnt\\nunbutton\\nunbuttoned\\nunbuttoning\\nunbuttons\\nuncage\\nuncaged\\nuncages\\nuncaging\\nuncake\\nuncaked\\nuncakes\\nuncaking\\nuncalled\\nuncandid\\nuncannier\\nuncanniest\\nuncannily\\nuncanny\\nuncap\\nuncapped\\nuncapping\\nuncaps\\nuncaring\\nuncase\\nuncased\\nuncases\\nuncashed\\nuncasing\\nuncaught\\nuncaused\\nunceasing\\nunceasingly\\nuncensored\\nunceremonious\\nunceremoniously\\nuncertain\\nuncertainly\\nuncertainties\\nuncertainty\\nunchain\\nunchained\\nunchaining\\nunchains\\nunchallenged\\nunchancy\\nunchanged\\nunchanging\\nuncharacteristic\\nuncharge\\nuncharged\\nuncharges\\nuncharging\\nunchary\\nunchaste\\nunchecked\\nunchewed\\nunchic\\nunchoke\\nunchoked\\nunchokes\\nunchoking\\nunchosen\\nunchristian\\nunchurch\\nunchurched\\nunchurches\\nunchurching\\nunci\\nuncia\\nunciae\\nuncial\\nuncially\\nuncials\\nunciform\\nunciforms\\nuncinal\\nuncinate\\nuncini\\nuncinus\\nuncivil\\nuncivilized\\nunclad\\nunclaimed\\nunclamp\\nunclamped\\nunclamping\\nunclamps\\nunclasp\\nunclasped\\nunclasping\\nunclasps\\nuncle\\nunclean\\nuncleaner\\nuncleanest\\nuncleanness\\nuncleannesses\\nunclear\\nuncleared\\nunclearer\\nunclearest\\nunclench\\nunclenched\\nunclenches\\nunclenching\\nuncles\\nunclinch\\nunclinched\\nunclinches\\nunclinching\\nuncloak\\nuncloaked\\nuncloaking\\nuncloaks\\nunclog\\nunclogged\\nunclogging\\nunclogs\\nunclose\\nunclosed\\nuncloses\\nunclosing\\nunclothe\\nunclothed\\nunclothes\\nunclothing\\nuncloud\\nunclouded\\nunclouding\\nunclouds\\nuncloyed\\nuncluttered\\nunco\\nuncoated\\nuncock\\nuncocked\\nuncocking\\nuncocks\\nuncoffin\\nuncoffined\\nuncoffining\\nuncoffins\\nuncoil\\nuncoiled\\nuncoiling\\nuncoils\\nuncoined\\nuncombed\\nuncomely\\nuncomfortable\\nuncomfortably\\nuncomic\\nuncommitted\\nuncommon\\nuncommoner\\nuncommonest\\nuncommonly\\nuncomplimentary\\nuncompromising\\nunconcerned\\nunconcernedlies\\nunconcernedly\\nunconditional\\nunconditionally\\nunconfirmed\\nunconscionable\\nunconscionably\\nunconscious\\nunconsciously\\nunconsciousness\\nunconsciousnesses\\nunconstitutional\\nuncontested\\nuncontrollable\\nuncontrollably\\nuncontrolled\\nunconventional\\nunconventionally\\nunconverted\\nuncooked\\nuncool\\nuncooperative\\nuncoordinated\\nuncork\\nuncorked\\nuncorking\\nuncorks\\nuncos\\nuncounted\\nuncouple\\nuncoupled\\nuncouples\\nuncoupling\\nuncouth\\nuncover\\nuncovered\\nuncovering\\nuncovers\\nuncrate\\nuncrated\\nuncrates\\nuncrating\\nuncreate\\nuncreated\\nuncreates\\nuncreating\\nuncross\\nuncrossed\\nuncrosses\\nuncrossing\\nuncrown\\nuncrowned\\nuncrowning\\nuncrowns\\nunction\\nunctions\\nunctuous\\nunctuously\\nuncultivated\\nuncurb\\nuncurbed\\nuncurbing\\nuncurbs\\nuncured\\nuncurl\\nuncurled\\nuncurling\\nuncurls\\nuncursed\\nuncus\\nuncut\\nundamaged\\nundamped\\nundaring\\nundated\\nundaunted\\nundauntedly\\nunde\\nundecided\\nundecked\\nundeclared\\nundee\\nundefeated\\nundefined\\nundemocratic\\nundeniable\\nundeniably\\nundenied\\nundependable\\nunder\\nunderact\\nunderacted\\nunderacting\\nunderacts\\nunderage\\nunderages\\nunderarm\\nunderarms\\nunderate\\nunderbid\\nunderbidding\\nunderbids\\nunderbought\\nunderbrush\\nunderbrushes\\nunderbud\\nunderbudded\\nunderbudding\\nunderbuds\\nunderbuy\\nunderbuying\\nunderbuys\\nunderclothes\\nunderclothing\\nunderclothings\\nundercover\\nundercurrent\\nundercurrents\\nundercut\\nundercuts\\nundercutting\\nunderdeveloped\\nunderdid\\nunderdo\\nunderdoes\\nunderdog\\nunderdogs\\nunderdoing\\nunderdone\\nundereat\\nundereaten\\nundereating\\nundereats\\nunderestimate\\nunderestimated\\nunderestimates\\nunderestimating\\nunderexpose\\nunderexposed\\nunderexposes\\nunderexposing\\nunderexposure\\nunderexposures\\nunderfed\\nunderfeed\\nunderfeeding\\nunderfeeds\\nunderfoot\\nunderfur\\nunderfurs\\nundergarment\\nundergarments\\nundergo\\nundergod\\nundergods\\nundergoes\\nundergoing\\nundergone\\nundergraduate\\nundergraduates\\nunderground\\nundergrounds\\nundergrowth\\nundergrowths\\nunderhand\\nunderhanded\\nunderhandedly\\nunderhandedness\\nunderhandednesses\\nunderjaw\\nunderjaws\\nunderlaid\\nunderlain\\nunderlap\\nunderlapped\\nunderlapping\\nunderlaps\\nunderlay\\nunderlaying\\nunderlays\\nunderlet\\nunderlets\\nunderletting\\nunderlie\\nunderlies\\nunderline\\nunderlined\\nunderlines\\nunderling\\nunderlings\\nunderlining\\nunderlip\\nunderlips\\nunderlit\\nunderlying\\nundermine\\nundermined\\nundermines\\nundermining\\nunderneath\\nundernourished\\nundernourishment\\nundernourishments\\nunderpaid\\nunderpants\\nunderpass\\nunderpasses\\nunderpay\\nunderpaying\\nunderpays\\nunderpin\\nunderpinned\\nunderpinning\\nunderpinnings\\nunderpins\\nunderprivileged\\nunderran\\nunderrate\\nunderrated\\nunderrates\\nunderrating\\nunderrun\\nunderrunning\\nunderruns\\nunderscore\\nunderscored\\nunderscores\\nunderscoring\\nundersea\\nunderseas\\nundersecretaries\\nundersecretary\\nundersell\\nunderselling\\nundersells\\nunderset\\nundersets\\nundershirt\\nundershirts\\nundershorts\\nunderside\\nundersides\\nundersized\\nundersold\\nunderstand\\nunderstandable\\nunderstandably\\nunderstanded\\nunderstanding\\nunderstandings\\nunderstands\\nunderstate\\nunderstated\\nunderstatement\\nunderstatements\\nunderstates\\nunderstating\\nunderstood\\nunderstudied\\nunderstudies\\nunderstudy\\nunderstudying\\nundertake\\nundertaken\\nundertaker\\nundertakes\\nundertaking\\nundertakings\\nundertax\\nundertaxed\\nundertaxes\\nundertaxing\\nundertone\\nundertones\\nundertook\\nundertow\\nundertows\\nundervalue\\nundervalued\\nundervalues\\nundervaluing\\nunderwater\\nunderway\\nunderwear\\nunderwears\\nunderwent\\nunderworld\\nunderworlds\\nunderwrite\\nunderwriter\\nunderwriters\\nunderwrites\\nunderwriting\\nunderwrote\\nundeserving\\nundesirable\\nundesired\\nundetailed\\nundetected\\nundetermined\\nundeveloped\\nundeviating\\nundevout\\nundid\\nundies\\nundignified\\nundimmed\\nundine\\nundines\\nundivided\\nundo\\nundock\\nundocked\\nundocking\\nundocks\\nundoer\\nundoers\\nundoes\\nundoing\\nundoings\\nundomesticated\\nundone\\nundouble\\nundoubled\\nundoubles\\nundoubling\\nundoubted\\nundoubtedly\\nundrape\\nundraped\\nundrapes\\nundraping\\nundraw\\nundrawing\\nundrawn\\nundraws\\nundreamt\\nundress\\nundressed\\nundresses\\nundressing\\nundrest\\nundrew\\nundried\\nundrinkable\\nundrunk\\nundue\\nundulant\\nundulate\\nundulated\\nundulates\\nundulating\\nundulled\\nunduly\\nundy\\nundyed\\nundying\\nuneager\\nunearned\\nunearth\\nunearthed\\nunearthing\\nunearthly\\nunearths\\nunease\\nuneases\\nuneasier\\nuneasiest\\nuneasily\\nuneasiness\\nuneasinesses\\nuneasy\\nuneaten\\nunedible\\nunedited\\nuneducated\\nunemotional\\nunemployed\\nunemployment\\nunemployments\\nunended\\nunending\\nunendurable\\nunenforceable\\nunenlightened\\nunenvied\\nunequal\\nunequaled\\nunequally\\nunequals\\nunequivocal\\nunequivocally\\nunerased\\nunerring\\nunerringly\\nunethical\\nunevaded\\nuneven\\nunevener\\nunevenest\\nunevenly\\nunevenness\\nunevennesses\\nuneventful\\nunexcitable\\nunexciting\\nunexotic\\nunexpected\\nunexpectedly\\nunexpert\\nunexplainable\\nunexplained\\nunexplored\\nunfaded\\nunfading\\nunfailing\\nunfailingly\\nunfair\\nunfairer\\nunfairest\\nunfairly\\nunfairness\\nunfairnesses\\nunfaith\\nunfaithful\\nunfaithfully\\nunfaithfulness\\nunfaithfulnesses\\nunfaiths\\nunfallen\\nunfamiliar\\nunfamiliarities\\nunfamiliarity\\nunfancy\\nunfasten\\nunfastened\\nunfastening\\nunfastens\\nunfavorable\\nunfavorably\\nunfazed\\nunfeared\\nunfed\\nunfeeling\\nunfeelingly\\nunfeigned\\nunfelt\\nunfence\\nunfenced\\nunfences\\nunfencing\\nunfetter\\nunfettered\\nunfettering\\nunfetters\\nunfilial\\nunfilled\\nunfilmed\\nunfinalized\\nunfinished\\nunfired\\nunfished\\nunfit\\nunfitly\\nunfitness\\nunfitnesses\\nunfits\\nunfitted\\nunfitting\\nunfix\\nunfixed\\nunfixes\\nunfixing\\nunfixt\\nunflappable\\nunflattering\\nunflexed\\nunfoiled\\nunfold\\nunfolded\\nunfolder\\nunfolders\\nunfolding\\nunfolds\\nunfond\\nunforced\\nunforeseeable\\nunforeseen\\nunforged\\nunforgettable\\nunforgettably\\nunforgivable\\nunforgiving\\nunforgot\\nunforked\\nunformed\\nunfortunate\\nunfortunately\\nunfortunates\\nunfought\\nunfound\\nunfounded\\nunframed\\nunfree\\nunfreed\\nunfreeing\\nunfrees\\nunfreeze\\nunfreezes\\nunfreezing\\nunfriendly\\nunfrock\\nunfrocked\\nunfrocking\\nunfrocks\\nunfroze\\nunfrozen\\nunfulfilled\\nunfunded\\nunfunny\\nunfurl\\nunfurled\\nunfurling\\nunfurls\\nunfurnished\\nunfused\\nunfussy\\nungainlier\\nungainliest\\nungainliness\\nungainlinesses\\nungainly\\nungalled\\nungenerous\\nungenial\\nungentle\\nungentlemanly\\nungently\\nungifted\\nungird\\nungirded\\nungirding\\nungirds\\nungirt\\nunglazed\\nunglove\\nungloved\\nungloves\\nungloving\\nunglue\\nunglued\\nunglues\\nungluing\\nungodlier\\nungodliest\\nungodliness\\nungodlinesses\\nungodly\\nungot\\nungotten\\nungowned\\nungraced\\nungraceful\\nungraded\\nungrammatical\\nungrateful\\nungratefully\\nungratefulness\\nungratefulnesses\\nungreedy\\nungual\\nunguard\\nunguarded\\nunguarding\\nunguards\\nunguent\\nunguents\\nungues\\nunguided\\nunguis\\nungula\\nungulae\\nungular\\nungulate\\nungulates\\nunhailed\\nunhair\\nunhaired\\nunhairing\\nunhairs\\nunhallow\\nunhallowed\\nunhallowing\\nunhallows\\nunhalved\\nunhand\\nunhanded\\nunhandier\\nunhandiest\\nunhanding\\nunhands\\nunhandy\\nunhang\\nunhanged\\nunhanging\\nunhangs\\nunhappier\\nunhappiest\\nunhappily\\nunhappiness\\nunhappinesses\\nunhappy\\nunharmed\\nunhasty\\nunhat\\nunhats\\nunhatted\\nunhatting\\nunhealed\\nunhealthful\\nunhealthy\\nunheard\\nunheated\\nunheeded\\nunhelm\\nunhelmed\\nunhelming\\nunhelms\\nunhelped\\nunheroic\\nunhewn\\nunhinge\\nunhinged\\nunhinges\\nunhinging\\nunhip\\nunhired\\nunhitch\\nunhitched\\nunhitches\\nunhitching\\nunholier\\nunholiest\\nunholily\\nunholiness\\nunholinesses\\nunholy\\nunhood\\nunhooded\\nunhooding\\nunhoods\\nunhook\\nunhooked\\nunhooking\\nunhooks\\nunhoped\\nunhorse\\nunhorsed\\nunhorses\\nunhorsing\\nunhouse\\nunhoused\\nunhouses\\nunhousing\\nunhuman\\nunhung\\nunhurt\\nunhusk\\nunhusked\\nunhusking\\nunhusks\\nunialgal\\nuniaxial\\nunicellular\\nunicolor\\nunicorn\\nunicorns\\nunicycle\\nunicycles\\nunideaed\\nunideal\\nunidentified\\nunidirectional\\nuniface\\nunifaces\\nunific\\nunification\\nunifications\\nunified\\nunifier\\nunifiers\\nunifies\\nunifilar\\nuniform\\nuniformed\\nuniformer\\nuniformest\\nuniforming\\nuniformity\\nuniformly\\nuniforms\\nunify\\nunifying\\nunilateral\\nunilaterally\\nunilobed\\nunimaginable\\nunimaginative\\nunimbued\\nunimpeachable\\nunimportant\\nunimpressed\\nuninformed\\nuninhabited\\nuninhibited\\nuninhibitedly\\nuninjured\\nuninsured\\nunintelligent\\nunintelligible\\nunintelligibly\\nunintended\\nunintentional\\nunintentionally\\nuninterested\\nuninteresting\\nuninterrupted\\nuninvited\\nunion\\nunionise\\nunionised\\nunionises\\nunionising\\nunionism\\nunionisms\\nunionist\\nunionists\\nunionization\\nunionizations\\nunionize\\nunionized\\nunionizes\\nunionizing\\nunions\\nunipod\\nunipods\\nunipolar\\nunique\\nuniquely\\nuniqueness\\nuniquer\\nuniques\\nuniquest\\nunironed\\nunisex\\nunisexes\\nunison\\nunisonal\\nunisons\\nunissued\\nunit\\nunitage\\nunitages\\nunitary\\nunite\\nunited\\nunitedly\\nuniter\\nuniters\\nunites\\nunities\\nuniting\\nunitive\\nunitize\\nunitized\\nunitizes\\nunitizing\\nunits\\nunity\\nunivalve\\nunivalves\\nuniversal\\nuniversally\\nuniverse\\nuniverses\\nuniversities\\nuniversity\\nunivocal\\nunivocals\\nunjaded\\nunjoined\\nunjoyful\\nunjudged\\nunjust\\nunjustifiable\\nunjustified\\nunjustly\\nunkempt\\nunkend\\nunkenned\\nunkennel\\nunkenneled\\nunkenneling\\nunkennelled\\nunkennelling\\nunkennels\\nunkent\\nunkept\\nunkind\\nunkinder\\nunkindest\\nunkindlier\\nunkindliest\\nunkindly\\nunkindness\\nunkindnesses\\nunkingly\\nunkissed\\nunknit\\nunknits\\nunknitted\\nunknitting\\nunknot\\nunknots\\nunknotted\\nunknotting\\nunknowing\\nunknowingly\\nunknown\\nunknowns\\nunkosher\\nunlabeled\\nunlabelled\\nunlace\\nunlaced\\nunlaces\\nunlacing\\nunlade\\nunladed\\nunladen\\nunlades\\nunlading\\nunlaid\\nunlash\\nunlashed\\nunlashes\\nunlashing\\nunlatch\\nunlatched\\nunlatches\\nunlatching\\nunlawful\\nunlawfully\\nunlay\\nunlaying\\nunlays\\nunlead\\nunleaded\\nunleading\\nunleads\\nunlearn\\nunlearned\\nunlearning\\nunlearns\\nunlearnt\\nunleased\\nunleash\\nunleashed\\nunleashes\\nunleashing\\nunleavened\\nunled\\nunless\\nunlet\\nunlethal\\nunletted\\nunlevel\\nunleveled\\nunleveling\\nunlevelled\\nunlevelling\\nunlevels\\nunlevied\\nunlicensed\\nunlicked\\nunlikable\\nunlike\\nunlikelier\\nunlikeliest\\nunlikelihood\\nunlikely\\nunlikeness\\nunlikenesses\\nunlimber\\nunlimbered\\nunlimbering\\nunlimbers\\nunlimited\\nunlined\\nunlink\\nunlinked\\nunlinking\\nunlinks\\nunlisted\\nunlit\\nunlive\\nunlived\\nunlively\\nunlives\\nunliving\\nunload\\nunloaded\\nunloader\\nunloaders\\nunloading\\nunloads\\nunlobed\\nunlock\\nunlocked\\nunlocking\\nunlocks\\nunloose\\nunloosed\\nunloosen\\nunloosened\\nunloosening\\nunloosens\\nunlooses\\nunloosing\\nunlovable\\nunloved\\nunlovelier\\nunloveliest\\nunlovely\\nunloving\\nunluckier\\nunluckiest\\nunluckily\\nunlucky\\nunmade\\nunmake\\nunmaker\\nunmakers\\nunmakes\\nunmaking\\nunman\\nunmanageable\\nunmanful\\nunmanly\\nunmanned\\nunmanning\\nunmans\\nunmapped\\nunmarked\\nunmarred\\nunmarried\\nunmask\\nunmasked\\nunmasker\\nunmaskers\\nunmasking\\nunmasks\\nunmated\\nunmatted\\nunmeant\\nunmeet\\nunmeetly\\nunmellow\\nunmelted\\nunmended\\nunmerciful\\nunmercifully\\nunmerited\\nunmet\\nunmew\\nunmewed\\nunmewing\\nunmews\\nunmilled\\nunmingle\\nunmingled\\nunmingles\\nunmingling\\nunmistakable\\nunmistakably\\nunmiter\\nunmitered\\nunmitering\\nunmiters\\nunmitre\\nunmitred\\nunmitres\\nunmitring\\nunmixed\\nunmixt\\nunmodish\\nunmold\\nunmolded\\nunmolding\\nunmolds\\nunmolested\\nunmolten\\nunmoor\\nunmoored\\nunmooring\\nunmoors\\nunmoral\\nunmotivated\\nunmoved\\nunmoving\\nunmown\\nunmuffle\\nunmuffled\\nunmuffles\\nunmuffling\\nunmuzzle\\nunmuzzled\\nunmuzzles\\nunmuzzling\\nunnail\\nunnailed\\nunnailing\\nunnails\\nunnamed\\nunnatural\\nunnaturally\\nunnaturalness\\nunnaturalnesses\\nunnavigable\\nunnecessarily\\nunnecessary\\nunneeded\\nunneighborly\\nunnerve\\nunnerved\\nunnerves\\nunnerving\\nunnoisy\\nunnojectionable\\nunnoted\\nunnoticeable\\nunnoticed\\nunobservable\\nunobservant\\nunobtainable\\nunobtrusive\\nunobtrusively\\nunoccupied\\nunofficial\\nunoiled\\nunopen\\nunopened\\nunopposed\\nunorganized\\nunoriginal\\nunornate\\nunorthodox\\nunowned\\nunpack\\nunpacked\\nunpacker\\nunpackers\\nunpacking\\nunpacks\\nunpaged\\nunpaid\\nunpaired\\nunparalleled\\nunpardonable\\nunparted\\nunpatriotic\\nunpaved\\nunpaying\\nunpeg\\nunpegged\\nunpegging\\nunpegs\\nunpen\\nunpenned\\nunpenning\\nunpens\\nunpent\\nunpeople\\nunpeopled\\nunpeoples\\nunpeopling\\nunperson\\nunpersons\\nunpick\\nunpicked\\nunpicking\\nunpicks\\nunpile\\nunpiled\\nunpiles\\nunpiling\\nunpin\\nunpinned\\nunpinning\\nunpins\\nunpitied\\nunplaced\\nunplait\\nunplaited\\nunplaiting\\nunplaits\\nunplayed\\nunpleasant\\nunpleasantly\\nunpleasantness\\nunpleasantnesses\\nunpliant\\nunplowed\\nunplug\\nunplugged\\nunplugging\\nunplugs\\nunpoetic\\nunpoised\\nunpolite\\nunpolled\\nunpopular\\nunpopularities\\nunpopularity\\nunposed\\nunposted\\nunprecedented\\nunpredictable\\nunpredictably\\nunprejudiced\\nunprepared\\nunpretentious\\nunpretty\\nunpriced\\nunprimed\\nunprincipled\\nunprinted\\nunprized\\nunprobed\\nunproductive\\nunprofessional\\nunprofitable\\nunprotected\\nunproved\\nunproven\\nunprovoked\\nunpruned\\nunpucker\\nunpuckered\\nunpuckering\\nunpuckers\\nunpunished\\nunpure\\nunpurged\\nunpuzzle\\nunpuzzled\\nunpuzzles\\nunpuzzling\\nunqualified\\nunquantifiable\\nunquenchable\\nunquestionable\\nunquestionably\\nunquestioning\\nunquiet\\nunquieter\\nunquietest\\nunquiets\\nunquote\\nunquoted\\nunquotes\\nunquoting\\nunraised\\nunraked\\nunranked\\nunrated\\nunravel\\nunraveled\\nunraveling\\nunravelled\\nunravelling\\nunravels\\nunrazed\\nunreachable\\nunread\\nunreadable\\nunreadier\\nunreadiest\\nunready\\nunreal\\nunrealistic\\nunrealities\\nunreality\\nunreally\\nunreason\\nunreasonable\\nunreasonably\\nunreasoned\\nunreasoning\\nunreasons\\nunreel\\nunreeled\\nunreeler\\nunreelers\\nunreeling\\nunreels\\nunreeve\\nunreeved\\nunreeves\\nunreeving\\nunrefined\\nunrelated\\nunrelenting\\nunrelentingly\\nunreliable\\nunremembered\\nunrent\\nunrented\\nunrepaid\\nunrepair\\nunrepairs\\nunrepentant\\nunrequited\\nunresolved\\nunresponsive\\nunrest\\nunrested\\nunrestrained\\nunrestricted\\nunrests\\nunrewarding\\nunrhymed\\nunriddle\\nunriddled\\nunriddles\\nunriddling\\nunrifled\\nunrig\\nunrigged\\nunrigging\\nunrigs\\nunrimed\\nunrinsed\\nunrip\\nunripe\\nunripely\\nunriper\\nunripest\\nunripped\\nunripping\\nunrips\\nunrisen\\nunrivaled\\nunrivalled\\nunrobe\\nunrobed\\nunrobes\\nunrobing\\nunroll\\nunrolled\\nunrolling\\nunrolls\\nunroof\\nunroofed\\nunroofing\\nunroofs\\nunroot\\nunrooted\\nunrooting\\nunroots\\nunrough\\nunround\\nunrounded\\nunrounding\\nunrounds\\nunrove\\nunroven\\nunruffled\\nunruled\\nunrulier\\nunruliest\\nunruliness\\nunrulinesses\\nunruly\\nunrushed\\nuns\\nunsaddle\\nunsaddled\\nunsaddles\\nunsaddling\\nunsafe\\nunsafely\\nunsafeties\\nunsafety\\nunsaid\\nunsalted\\nunsanitary\\nunsated\\nunsatisfactory\\nunsatisfied\\nunsatisfying\\nunsaved\\nunsavory\\nunsawed\\nunsawn\\nunsay\\nunsaying\\nunsays\\nunscaled\\nunscathed\\nunscented\\nunscheduled\\nunscientific\\nunscramble\\nunscrambled\\nunscrambles\\nunscrambling\\nunscrew\\nunscrewed\\nunscrewing\\nunscrews\\nunscrupulous\\nunscrupulously\\nunscrupulousness\\nunscrupulousnesses\\nunseal\\nunsealed\\nunsealing\\nunseals\\nunseam\\nunseamed\\nunseaming\\nunseams\\nunseared\\nunseasonable\\nunseasonably\\nunseasoned\\nunseat\\nunseated\\nunseating\\nunseats\\nunseeded\\nunseeing\\nunseemlier\\nunseemliest\\nunseemly\\nunseen\\nunseized\\nunselfish\\nunselfishly\\nunselfishness\\nunselfishnesses\\nunsent\\nunserved\\nunset\\nunsets\\nunsetting\\nunsettle\\nunsettled\\nunsettles\\nunsettling\\nunsew\\nunsewed\\nunsewing\\nunsewn\\nunsews\\nunsex\\nunsexed\\nunsexes\\nunsexing\\nunsexual\\nunshaded\\nunshaken\\nunshamed\\nunshaped\\nunshapen\\nunshared\\nunsharp\\nunshaved\\nunshaven\\nunshed\\nunshell\\nunshelled\\nunshelling\\nunshells\\nunshift\\nunshifted\\nunshifting\\nunshifts\\nunship\\nunshipped\\nunshipping\\nunships\\nunshod\\nunshorn\\nunshrunk\\nunshut\\nunsicker\\nunsifted\\nunsight\\nunsighted\\nunsighting\\nunsights\\nunsigned\\nunsilent\\nunsinful\\nunsized\\nunskilled\\nunskillful\\nunskillfully\\nunslaked\\nunsling\\nunslinging\\nunslings\\nunslung\\nunsmoked\\nunsnap\\nunsnapped\\nunsnapping\\nunsnaps\\nunsnarl\\nunsnarled\\nunsnarling\\nunsnarls\\nunsoaked\\nunsober\\nunsocial\\nunsoiled\\nunsold\\nunsolder\\nunsoldered\\nunsoldering\\nunsolders\\nunsolicited\\nunsolid\\nunsolved\\nunsoncy\\nunsonsie\\nunsonsy\\nunsophisticated\\nunsorted\\nunsought\\nunsound\\nunsounder\\nunsoundest\\nunsoundly\\nunsoundness\\nunsoundnesses\\nunsoured\\nunsowed\\nunsown\\nunspeak\\nunspeakable\\nunspeakably\\nunspeaking\\nunspeaks\\nunspecified\\nunspent\\nunsphere\\nunsphered\\nunspheres\\nunsphering\\nunspilt\\nunsplit\\nunspoiled\\nunspoilt\\nunspoke\\nunspoken\\nunsprung\\nunspun\\nunstable\\nunstabler\\nunstablest\\nunstably\\nunstack\\nunstacked\\nunstacking\\nunstacks\\nunstate\\nunstated\\nunstates\\nunstating\\nunsteadied\\nunsteadier\\nunsteadies\\nunsteadiest\\nunsteadily\\nunsteadiness\\nunsteadinesses\\nunsteady\\nunsteadying\\nunsteel\\nunsteeled\\nunsteeling\\nunsteels\\nunstep\\nunstepped\\nunstepping\\nunsteps\\nunstick\\nunsticked\\nunsticking\\nunsticks\\nunstop\\nunstopped\\nunstopping\\nunstops\\nunstrap\\nunstrapped\\nunstrapping\\nunstraps\\nunstress\\nunstresses\\nunstring\\nunstringing\\nunstrings\\nunstructured\\nunstrung\\nunstung\\nunsubstantiated\\nunsubtle\\nunsuccessful\\nunsuited\\nunsung\\nunsunk\\nunsure\\nunsurely\\nunswathe\\nunswathed\\nunswathes\\nunswathing\\nunswayed\\nunswear\\nunswearing\\nunswears\\nunswept\\nunswore\\nunsworn\\nuntack\\nuntacked\\nuntacking\\nuntacks\\nuntagged\\nuntaken\\nuntame\\nuntamed\\nuntangle\\nuntangled\\nuntangles\\nuntangling\\nuntanned\\nuntapped\\nuntasted\\nuntaught\\nuntaxed\\nunteach\\nunteaches\\nunteaching\\nuntended\\nuntested\\nuntether\\nuntethered\\nuntethering\\nuntethers\\nunthawed\\nunthink\\nunthinkable\\nunthinking\\nunthinkingly\\nunthinks\\nunthought\\nunthread\\nunthreaded\\nunthreading\\nunthreads\\nunthrone\\nunthroned\\nunthrones\\nunthroning\\nuntidied\\nuntidier\\nuntidies\\nuntidiest\\nuntidily\\nuntidy\\nuntidying\\nuntie\\nuntied\\nunties\\nuntil\\nuntilled\\nuntilted\\nuntimelier\\nuntimeliest\\nuntimely\\nuntinged\\nuntired\\nuntiring\\nuntitled\\nunto\\nuntold\\nuntoward\\nuntraced\\nuntrained\\nuntread\\nuntreading\\nuntreads\\nuntreated\\nuntried\\nuntrim\\nuntrimmed\\nuntrimming\\nuntrims\\nuntrod\\nuntrodden\\nuntrue\\nuntruer\\nuntruest\\nuntruly\\nuntruss\\nuntrussed\\nuntrusses\\nuntrussing\\nuntrustworthy\\nuntrusty\\nuntruth\\nuntruthful\\nuntruths\\nuntuck\\nuntucked\\nuntucking\\nuntucks\\nuntufted\\nuntune\\nuntuned\\nuntunes\\nuntuning\\nunturned\\nuntwine\\nuntwined\\nuntwines\\nuntwining\\nuntwist\\nuntwisted\\nuntwisting\\nuntwists\\nuntying\\nununited\\nunurged\\nunusable\\nunused\\nunusual\\nunvalued\\nunvaried\\nunvarying\\nunveil\\nunveiled\\nunveiling\\nunveils\\nunveined\\nunverified\\nunversed\\nunvexed\\nunvext\\nunviable\\nunvocal\\nunvoice\\nunvoiced\\nunvoices\\nunvoicing\\nunwalled\\nunwanted\\nunwarier\\nunwariest\\nunwarily\\nunwarmed\\nunwarned\\nunwarped\\nunwarranted\\nunwary\\nunwas\\nunwashed\\nunwasheds\\nunwasted\\nunwavering\\nunwaxed\\nunweaned\\nunweary\\nunweave\\nunweaves\\nunweaving\\nunwed\\nunwedded\\nunweeded\\nunweeping\\nunweight\\nunweighted\\nunweighting\\nunweights\\nunwelcome\\nunwelded\\nunwell\\nunwept\\nunwetted\\nunwholesome\\nunwieldier\\nunwieldiest\\nunwieldy\\nunwifely\\nunwilled\\nunwilling\\nunwillingly\\nunwillingness\\nunwillingnesses\\nunwind\\nunwinder\\nunwinders\\nunwinding\\nunwinds\\nunwisdom\\nunwisdoms\\nunwise\\nunwisely\\nunwiser\\nunwisest\\nunwish\\nunwished\\nunwishes\\nunwishing\\nunwit\\nunwits\\nunwitted\\nunwitting\\nunwittingly\\nunwon\\nunwonted\\nunwooded\\nunwooed\\nunworkable\\nunworked\\nunworn\\nunworthier\\nunworthies\\nunworthiest\\nunworthily\\nunworthiness\\nunworthinesses\\nunworthy\\nunwound\\nunwove\\nunwoven\\nunwrap\\nunwrapped\\nunwrapping\\nunwraps\\nunwritten\\nunwrung\\nunyeaned\\nunyielding\\nunyoke\\nunyoked\\nunyokes\\nunyoking\\nunzip\\nunzipped\\nunzipping\\nunzips\\nunzoned\\nup\\nupas\\nupases\\nupbear\\nupbearer\\nupbearers\\nupbearing\\nupbears\\nupbeat\\nupbeats\\nupbind\\nupbinding\\nupbinds\\nupboil\\nupboiled\\nupboiling\\nupboils\\nupbore\\nupborne\\nupbound\\nupbraid\\nupbraided\\nupbraiding\\nupbraids\\nupbringing\\nupbringings\\nupbuild\\nupbuilding\\nupbuilds\\nupbuilt\\nupby\\nupbye\\nupcast\\nupcasting\\nupcasts\\nupchuck\\nupchucked\\nupchucking\\nupchucks\\nupclimb\\nupclimbed\\nupclimbing\\nupclimbs\\nupcoil\\nupcoiled\\nupcoiling\\nupcoils\\nupcoming\\nupcurl\\nupcurled\\nupcurling\\nupcurls\\nupcurve\\nupcurved\\nupcurves\\nupcurving\\nupdart\\nupdarted\\nupdarting\\nupdarts\\nupdate\\nupdated\\nupdater\\nupdaters\\nupdates\\nupdating\\nupdive\\nupdived\\nupdives\\nupdiving\\nupdo\\nupdos\\nupdove\\nupdraft\\nupdrafts\\nupdried\\nupdries\\nupdry\\nupdrying\\nupend\\nupended\\nupending\\nupends\\nupfield\\nupfling\\nupflinging\\nupflings\\nupflow\\nupflowed\\nupflowing\\nupflows\\nupflung\\nupfold\\nupfolded\\nupfolding\\nupfolds\\nupgather\\nupgathered\\nupgathering\\nupgathers\\nupgaze\\nupgazed\\nupgazes\\nupgazing\\nupgird\\nupgirded\\nupgirding\\nupgirds\\nupgirt\\nupgoing\\nupgrade\\nupgraded\\nupgrades\\nupgrading\\nupgrew\\nupgrow\\nupgrowing\\nupgrown\\nupgrows\\nupgrowth\\nupgrowths\\nupheap\\nupheaped\\nupheaping\\nupheaps\\nupheaval\\nupheavals\\nupheave\\nupheaved\\nupheaver\\nupheavers\\nupheaves\\nupheaving\\nupheld\\nuphill\\nuphills\\nuphoard\\nuphoarded\\nuphoarding\\nuphoards\\nuphold\\nupholder\\nupholders\\nupholding\\nupholds\\nupholster\\nupholstered\\nupholsterer\\nupholsterers\\nupholsteries\\nupholstering\\nupholsters\\nupholstery\\nuphove\\nuphroe\\nuphroes\\nupkeep\\nupkeeps\\nupland\\nuplander\\nuplanders\\nuplands\\nupleap\\nupleaped\\nupleaping\\nupleaps\\nupleapt\\nuplift\\nuplifted\\nuplifter\\nuplifters\\nuplifting\\nuplifts\\nuplight\\nuplighted\\nuplighting\\nuplights\\nuplit\\nupmost\\nupo\\nupon\\nupped\\nupper\\nuppercase\\nuppercut\\nuppercuts\\nuppercutting\\nuppermost\\nuppers\\nuppile\\nuppiled\\nuppiles\\nuppiling\\nupping\\nuppings\\nuppish\\nuppishly\\nuppity\\nupprop\\nuppropped\\nuppropping\\nupprops\\nupraise\\nupraised\\nupraiser\\nupraisers\\nupraises\\nupraising\\nupreach\\nupreached\\nupreaches\\nupreaching\\nuprear\\nupreared\\nuprearing\\nuprears\\nupright\\nuprighted\\nuprighting\\nuprightness\\nuprightnesses\\nuprights\\nuprise\\nuprisen\\nupriser\\nuprisers\\nuprises\\nuprising\\nuprisings\\nupriver\\nuprivers\\nuproar\\nuproarious\\nuproariously\\nuproars\\nuproot\\nuprootal\\nuprootals\\nuprooted\\nuprooter\\nuprooters\\nuprooting\\nuproots\\nuprose\\nuprouse\\nuproused\\nuprouses\\nuprousing\\nuprush\\nuprushed\\nuprushes\\nuprushing\\nups\\nupsend\\nupsending\\nupsends\\nupsent\\nupset\\nupsets\\nupsetter\\nupsetters\\nupsetting\\nupshift\\nupshifted\\nupshifting\\nupshifts\\nupshoot\\nupshooting\\nupshoots\\nupshot\\nupshots\\nupside\\nupsidedown\\nupsides\\nupsilon\\nupsilons\\nupsoar\\nupsoared\\nupsoaring\\nupsoars\\nupsprang\\nupspring\\nupspringing\\nupsprings\\nupsprung\\nupstage\\nupstaged\\nupstages\\nupstaging\\nupstair\\nupstairs\\nupstand\\nupstanding\\nupstands\\nupstare\\nupstared\\nupstares\\nupstaring\\nupstart\\nupstarted\\nupstarting\\nupstarts\\nupstate\\nupstater\\nupstaters\\nupstates\\nupstep\\nupstepped\\nupstepping\\nupsteps\\nupstir\\nupstirred\\nupstirring\\nupstirs\\nupstood\\nupstream\\nupstroke\\nupstrokes\\nupsurge\\nupsurged\\nupsurges\\nupsurging\\nupsweep\\nupsweeping\\nupsweeps\\nupswell\\nupswelled\\nupswelling\\nupswells\\nupswept\\nupswing\\nupswinging\\nupswings\\nupswollen\\nupswung\\nuptake\\nuptakes\\nuptear\\nuptearing\\nuptears\\nupthrew\\nupthrow\\nupthrowing\\nupthrown\\nupthrows\\nupthrust\\nupthrusting\\nupthrusts\\nuptight\\nuptilt\\nuptilted\\nuptilting\\nuptilts\\nuptime\\nuptimes\\nuptore\\nuptorn\\nuptoss\\nuptossed\\nuptosses\\nuptossing\\nuptown\\nuptowner\\nuptowners\\nuptowns\\nuptrend\\nuptrends\\nupturn\\nupturned\\nupturning\\nupturns\\nupwaft\\nupwafted\\nupwafting\\nupwafts\\nupward\\nupwardly\\nupwards\\nupwell\\nupwelled\\nupwelling\\nupwells\\nupwind\\nupwinds\\nuracil\\nuracils\\nuraei\\nuraemia\\nuraemias\\nuraemic\\nuraeus\\nuraeuses\\nuralite\\nuralites\\nuralitic\\nuranic\\nuranide\\nuranides\\nuranism\\nuranisms\\nuranite\\nuranites\\nuranitic\\nuranium\\nuraniums\\nuranous\\nuranyl\\nuranylic\\nuranyls\\nurare\\nurares\\nurari\\nuraris\\nurase\\nurases\\nurate\\nurates\\nuratic\\nurban\\nurbane\\nurbanely\\nurbaner\\nurbanest\\nurbanise\\nurbanised\\nurbanises\\nurbanising\\nurbanism\\nurbanisms\\nurbanist\\nurbanists\\nurbanite\\nurbanites\\nurbanities\\nurbanity\\nurbanize\\nurbanized\\nurbanizes\\nurbanizing\\nurchin\\nurchins\\nurd\\nurds\\nurea\\nureal\\nureas\\nurease\\nureases\\nuredia\\nuredial\\nuredinia\\nuredium\\nuredo\\nuredos\\nureic\\nureide\\nureides\\nuremia\\nuremias\\nuremic\\nureter\\nureteral\\nureteric\\nureters\\nurethan\\nurethane\\nurethanes\\nurethans\\nurethra\\nurethrae\\nurethral\\nurethras\\nuretic\\nurge\\nurged\\nurgencies\\nurgency\\nurgent\\nurgently\\nurger\\nurgers\\nurges\\nurging\\nurgingly\\nuric\\nuridine\\nuridines\\nurinal\\nurinals\\nurinalysis\\nurinaries\\nurinary\\nurinate\\nurinated\\nurinates\\nurinating\\nurination\\nurinations\\nurine\\nurinemia\\nurinemias\\nurinemic\\nurines\\nurinose\\nurinous\\nurn\\nurnlike\\nurns\\nurochord\\nurochords\\nurodele\\nurodeles\\nurolagnia\\nurolagnias\\nurolith\\nuroliths\\nurologic\\nurologies\\nurology\\nuropod\\nuropodal\\nuropods\\nuroscopies\\nuroscopy\\nurostyle\\nurostyles\\nursa\\nursae\\nursiform\\nursine\\nurticant\\nurticants\\nurticate\\nurticated\\nurticates\\nurticating\\nurus\\nuruses\\nurushiol\\nurushiols\\nus\\nusability\\nusable\\nusably\\nusage\\nusages\\nusance\\nusances\\nusaunce\\nusaunces\\nuse\\nuseable\\nuseably\\nused\\nuseful\\nusefully\\nusefulness\\nuseless\\nuselessly\\nuselessness\\nuselessnesses\\nuser\\nusers\\nuses\\nusher\\nushered\\nusherette\\nusherettes\\nushering\\nushers\\nusing\\nusnea\\nusneas\\nusquabae\\nusquabaes\\nusque\\nusquebae\\nusquebaes\\nusques\\nustulate\\nusual\\nusually\\nusuals\\nusufruct\\nusufructs\\nusurer\\nusurers\\nusuries\\nusurious\\nusurp\\nusurped\\nusurper\\nusurpers\\nusurping\\nusurps\\nusury\\nut\\nuta\\nutas\\nutensil\\nutensils\\nuteri\\nuterine\\nuterus\\nuteruses\\nutile\\nutilidor\\nutilidors\\nutilise\\nutilised\\nutiliser\\nutilisers\\nutilises\\nutilising\\nutilitarian\\nutilities\\nutility\\nutilization\\nutilize\\nutilized\\nutilizer\\nutilizers\\nutilizes\\nutilizing\\nutmost\\nutmosts\\nutopia\\nutopian\\nutopians\\nutopias\\nutopism\\nutopisms\\nutopist\\nutopists\\nutricle\\nutricles\\nutriculi\\nuts\\nutter\\nutterance\\nutterances\\nuttered\\nutterer\\nutterers\\nuttering\\nutterly\\nutters\\nuvea\\nuveal\\nuveas\\nuveitic\\nuveitis\\nuveitises\\nuveous\\nuvula\\nuvulae\\nuvular\\nuvularly\\nuvulars\\nuvulas\\nuvulitis\\nuvulitises\\nuxorial\\nuxorious\\nvacancies\\nvacancy\\nvacant\\nvacantly\\nvacate\\nvacated\\nvacates\\nvacating\\nvacation\\nvacationed\\nvacationer\\nvacationers\\nvacationing\\nvacations\\nvaccina\\nvaccinal\\nvaccinas\\nvaccinate\\nvaccinated\\nvaccinates\\nvaccinating\\nvaccination\\nvaccinations\\nvaccine\\nvaccines\\nvaccinia\\nvaccinias\\nvacillate\\nvacillated\\nvacillates\\nvacillating\\nvacillation\\nvacillations\\nvacua\\nvacuities\\nvacuity\\nvacuolar\\nvacuole\\nvacuoles\\nvacuous\\nvacuously\\nvacuousness\\nvacuousnesses\\nvacuum\\nvacuumed\\nvacuuming\\nvacuums\\nvadose\\nvagabond\\nvagabonded\\nvagabonding\\nvagabonds\\nvagal\\nvagally\\nvagaries\\nvagary\\nvagi\\nvagile\\nvagilities\\nvagility\\nvagina\\nvaginae\\nvaginal\\nvaginas\\nvaginate\\nvagotomies\\nvagotomy\\nvagrancies\\nvagrancy\\nvagrant\\nvagrants\\nvagrom\\nvague\\nvaguely\\nvagueness\\nvaguenesses\\nvaguer\\nvaguest\\nvagus\\nvahine\\nvahines\\nvail\\nvailed\\nvailing\\nvails\\nvain\\nvainer\\nvainest\\nvainly\\nvainness\\nvainnesses\\nvair\\nvairs\\nvakeel\\nvakeels\\nvakil\\nvakils\\nvalance\\nvalanced\\nvalances\\nvalancing\\nvale\\nvaledictorian\\nvaledictorians\\nvaledictories\\nvaledictory\\nvalence\\nvalences\\nvalencia\\nvalencias\\nvalencies\\nvalency\\nvalentine\\nvalentines\\nvalerate\\nvalerates\\nvalerian\\nvalerians\\nvaleric\\nvales\\nvalet\\nvaleted\\nvaleting\\nvalets\\nvalgoid\\nvalgus\\nvalguses\\nvaliance\\nvaliances\\nvaliancies\\nvaliancy\\nvaliant\\nvaliantly\\nvaliants\\nvalid\\nvalidate\\nvalidated\\nvalidates\\nvalidating\\nvalidation\\nvalidations\\nvalidities\\nvalidity\\nvalidly\\nvalidness\\nvalidnesses\\nvaline\\nvalines\\nvalise\\nvalises\\nvalkyr\\nvalkyrie\\nvalkyries\\nvalkyrs\\nvallate\\nvalley\\nvalleys\\nvalonia\\nvalonias\\nvalor\\nvalorise\\nvalorised\\nvalorises\\nvalorising\\nvalorize\\nvalorized\\nvalorizes\\nvalorizing\\nvalorous\\nvalors\\nvalour\\nvalours\\nvalse\\nvalses\\nvaluable\\nvaluables\\nvaluably\\nvaluate\\nvaluated\\nvaluates\\nvaluating\\nvaluation\\nvaluations\\nvaluator\\nvaluators\\nvalue\\nvalued\\nvalueless\\nvaluer\\nvaluers\\nvalues\\nvaluing\\nvaluta\\nvalutas\\nvalval\\nvalvar\\nvalvate\\nvalve\\nvalved\\nvalveless\\nvalvelet\\nvalvelets\\nvalves\\nvalving\\nvalvula\\nvalvulae\\nvalvular\\nvalvule\\nvalvules\\nvambrace\\nvambraces\\nvamoose\\nvamoosed\\nvamooses\\nvamoosing\\nvamose\\nvamosed\\nvamoses\\nvamosing\\nvamp\\nvamped\\nvamper\\nvampers\\nvamping\\nvampire\\nvampires\\nvampiric\\nvampish\\nvamps\\nvan\\nvanadate\\nvanadates\\nvanadic\\nvanadium\\nvanadiums\\nvanadous\\nvanda\\nvandal\\nvandalic\\nvandalism\\nvandalisms\\nvandalize\\nvandalized\\nvandalizes\\nvandalizing\\nvandals\\nvandas\\nvandyke\\nvandyked\\nvandykes\\nvane\\nvaned\\nvanes\\nvang\\nvangs\\nvanguard\\nvanguards\\nvanilla\\nvanillas\\nvanillic\\nvanillin\\nvanillins\\nvanish\\nvanished\\nvanisher\\nvanishers\\nvanishes\\nvanishing\\nvanitied\\nvanities\\nvanity\\nvanman\\nvanmen\\nvanquish\\nvanquished\\nvanquishes\\nvanquishing\\nvans\\nvantage\\nvantages\\nvanward\\nvapid\\nvapidities\\nvapidity\\nvapidly\\nvapidness\\nvapidnesses\\nvapor\\nvapored\\nvaporer\\nvaporers\\nvaporing\\nvaporings\\nvaporise\\nvaporised\\nvaporises\\nvaporish\\nvaporising\\nvaporization\\nvaporizations\\nvaporize\\nvaporized\\nvaporizes\\nvaporizing\\nvaporous\\nvapors\\nvapory\\nvapour\\nvapoured\\nvapourer\\nvapourers\\nvapouring\\nvapours\\nvapoury\\nvaquero\\nvaqueros\\nvara\\nvaras\\nvaria\\nvariabilities\\nvariability\\nvariable\\nvariableness\\nvariablenesses\\nvariables\\nvariably\\nvariance\\nvariances\\nvariant\\nvariants\\nvariate\\nvariated\\nvariates\\nvariating\\nvariation\\nvariations\\nvarices\\nvaricose\\nvaried\\nvariedly\\nvariegate\\nvariegated\\nvariegates\\nvariegating\\nvariegation\\nvariegations\\nvarier\\nvariers\\nvaries\\nvarietal\\nvarieties\\nvariety\\nvariform\\nvariola\\nvariolar\\nvariolas\\nvariole\\nvarioles\\nvariorum\\nvariorums\\nvarious\\nvariously\\nvaristor\\nvaristors\\nvarix\\nvarlet\\nvarletries\\nvarletry\\nvarlets\\nvarment\\nvarments\\nvarmint\\nvarmints\\nvarna\\nvarnas\\nvarnish\\nvarnished\\nvarnishes\\nvarnishing\\nvarnishy\\nvarsities\\nvarsity\\nvarus\\nvaruses\\nvarve\\nvarved\\nvarves\\nvary\\nvarying\\nvas\\nvasa\\nvasal\\nvascula\\nvascular\\nvasculum\\nvasculums\\nvase\\nvaselike\\nvases\\nvasiform\\nvassal\\nvassalage\\nvassalages\\nvassals\\nvast\\nvaster\\nvastest\\nvastier\\nvastiest\\nvastities\\nvastity\\nvastly\\nvastness\\nvastnesses\\nvasts\\nvasty\\nvat\\nvatful\\nvatfuls\\nvatic\\nvatical\\nvaticide\\nvaticides\\nvats\\nvatted\\nvatting\\nvau\\nvaudeville\\nvaudevilles\\nvault\\nvaulted\\nvaulter\\nvaulters\\nvaultier\\nvaultiest\\nvaulting\\nvaultings\\nvaults\\nvaulty\\nvaunt\\nvaunted\\nvaunter\\nvaunters\\nvauntful\\nvauntie\\nvaunting\\nvaunts\\nvaunty\\nvaus\\nvav\\nvavasor\\nvavasors\\nvavasour\\nvavasours\\nvavassor\\nvavassors\\nvavs\\nvaw\\nvaward\\nvawards\\nvawntie\\nvaws\\nveal\\nvealed\\nvealer\\nvealers\\nvealier\\nvealiest\\nvealing\\nveals\\nvealy\\nvector\\nvectored\\nvectoring\\nvectors\\nvedalia\\nvedalias\\nvedette\\nvedettes\\nvee\\nveena\\nveenas\\nveep\\nveepee\\nveepees\\nveeps\\nveer\\nveered\\nveeries\\nveering\\nveers\\nveery\\nvees\\nveg\\nvegan\\nveganism\\nveganisms\\nvegans\\nvegetable\\nvegetables\\nvegetal\\nvegetant\\nvegetarian\\nvegetarianism\\nvegetarianisms\\nvegetarians\\nvegetate\\nvegetated\\nvegetates\\nvegetating\\nvegetation\\nvegetational\\nvegetations\\nvegete\\nvegetist\\nvegetists\\nvegetive\\nvehemence\\nvehemences\\nvehement\\nvehemently\\nvehicle\\nvehicles\\nvehicular\\nveil\\nveiled\\nveiledly\\nveiler\\nveilers\\nveiling\\nveilings\\nveillike\\nveils\\nvein\\nveinal\\nveined\\nveiner\\nveiners\\nveinier\\nveiniest\\nveining\\nveinings\\nveinless\\nveinlet\\nveinlets\\nveinlike\\nveins\\nveinule\\nveinules\\nveinulet\\nveinulets\\nveiny\\nvela\\nvelamen\\nvelamina\\nvelar\\nvelaria\\nvelarium\\nvelarize\\nvelarized\\nvelarizes\\nvelarizing\\nvelars\\nvelate\\nveld\\nvelds\\nveldt\\nveldts\\nveliger\\nveligers\\nvelites\\nvelleities\\nvelleity\\nvellum\\nvellums\\nveloce\\nvelocities\\nvelocity\\nvelour\\nvelours\\nveloute\\nveloutes\\nvelum\\nvelure\\nvelured\\nvelures\\nveluring\\nvelveret\\nvelverets\\nvelvet\\nvelveted\\nvelvets\\nvelvety\\nvena\\nvenae\\nvenal\\nvenalities\\nvenality\\nvenally\\nvenatic\\nvenation\\nvenations\\nvend\\nvendable\\nvendace\\nvendaces\\nvended\\nvendee\\nvendees\\nvender\\nvenders\\nvendetta\\nvendettas\\nvendible\\nvendibles\\nvendibly\\nvending\\nvendor\\nvendors\\nvends\\nvendue\\nvendues\\nveneer\\nveneered\\nveneerer\\nveneerers\\nveneering\\nveneers\\nvenenate\\nvenenated\\nvenenates\\nvenenating\\nvenenose\\nvenerable\\nvenerate\\nvenerated\\nvenerates\\nvenerating\\nveneration\\nvenerations\\nvenereal\\nveneries\\nvenery\\nvenetian\\nvenetians\\nvenge\\nvengeance\\nvengeances\\nvenged\\nvengeful\\nvengefully\\nvenges\\nvenging\\nvenial\\nvenially\\nvenin\\nvenine\\nvenines\\nvenins\\nvenire\\nvenires\\nvenison\\nvenisons\\nvenom\\nvenomed\\nvenomer\\nvenomers\\nvenoming\\nvenomous\\nvenoms\\nvenose\\nvenosities\\nvenosity\\nvenous\\nvenously\\nvent\\nventage\\nventages\\nventail\\nventails\\nvented\\nventer\\nventers\\nventilate\\nventilated\\nventilates\\nventilating\\nventilation\\nventilations\\nventilator\\nventilators\\nventing\\nventless\\nventral\\nventrals\\nventricle\\nventricles\\nventriloquism\\nventriloquisms\\nventriloquist\\nventriloquists\\nventriloquy\\nventriloquys\\nvents\\nventure\\nventured\\nventurer\\nventurers\\nventures\\nventuresome\\nventuresomely\\nventuresomeness\\nventuresomenesses\\nventuri\\nventuring\\nventuris\\nvenue\\nvenues\\nvenular\\nvenule\\nvenules\\nvenulose\\nvenulous\\nvera\\nveracious\\nveracities\\nveracity\\nveranda\\nverandah\\nverandahs\\nverandas\\nveratria\\nveratrias\\nveratrin\\nveratrins\\nveratrum\\nveratrums\\nverb\\nverbal\\nverbalization\\nverbalizations\\nverbalize\\nverbalized\\nverbalizes\\nverbalizing\\nverbally\\nverbals\\nverbatim\\nverbena\\nverbenas\\nverbiage\\nverbiages\\nverbid\\nverbids\\nverbified\\nverbifies\\nverbify\\nverbifying\\nverbile\\nverbiles\\nverbless\\nverbose\\nverbosities\\nverbosity\\nverboten\\nverbs\\nverdancies\\nverdancy\\nverdant\\nverderer\\nverderers\\nverderor\\nverderors\\nverdict\\nverdicts\\nverdin\\nverdins\\nverditer\\nverditers\\nverdure\\nverdured\\nverdures\\nverecund\\nverge\\nverged\\nvergence\\nvergences\\nverger\\nvergers\\nverges\\nverging\\nverglas\\nverglases\\nveridic\\nverier\\nveriest\\nverifiable\\nverification\\nverifications\\nverified\\nverifier\\nverifiers\\nverifies\\nverify\\nverifying\\nverily\\nverism\\nverismo\\nverismos\\nverisms\\nverist\\nveristic\\nverists\\nveritable\\nveritably\\nveritas\\nveritates\\nverities\\nverity\\nverjuice\\nverjuices\\nvermeil\\nvermeils\\nvermes\\nvermian\\nvermicelli\\nvermicellis\\nvermin\\nvermis\\nvermoulu\\nvermouth\\nvermouths\\nvermuth\\nvermuths\\nvernacle\\nvernacles\\nvernacular\\nvernaculars\\nvernal\\nvernally\\nvernicle\\nvernicles\\nvernier\\nverniers\\nvernix\\nvernixes\\nveronica\\nveronicas\\nverruca\\nverrucae\\nversal\\nversant\\nversants\\nversatile\\nversatilities\\nversatility\\nverse\\nversed\\nverseman\\nversemen\\nverser\\nversers\\nverses\\nverset\\nversets\\nversicle\\nversicles\\nversified\\nversifies\\nversify\\nversifying\\nversine\\nversines\\nversing\\nversion\\nversions\\nverso\\nversos\\nverst\\nverste\\nverstes\\nversts\\nversus\\nvert\\nvertebra\\nvertebrae\\nvertebral\\nvertebras\\nvertebrate\\nvertebrates\\nvertex\\nvertexes\\nvertical\\nvertically\\nverticalness\\nverticalnesses\\nverticals\\nvertices\\nverticil\\nverticils\\nvertigines\\nvertigo\\nvertigoes\\nvertigos\\nverts\\nvertu\\nvertus\\nvervain\\nvervains\\nverve\\nverves\\nvervet\\nvervets\\nvery\\nvesica\\nvesicae\\nvesical\\nvesicant\\nvesicants\\nvesicate\\nvesicated\\nvesicates\\nvesicating\\nvesicle\\nvesicles\\nvesicula\\nvesiculae\\nvesicular\\nvesigia\\nvesper\\nvesperal\\nvesperals\\nvespers\\nvespiaries\\nvespiary\\nvespid\\nvespids\\nvespine\\nvessel\\nvesseled\\nvessels\\nvest\\nvesta\\nvestal\\nvestally\\nvestals\\nvestas\\nvested\\nvestee\\nvestees\\nvestiaries\\nvestiary\\nvestibular\\nvestibule\\nvestibules\\nvestige\\nvestiges\\nvestigial\\nvestigially\\nvesting\\nvestings\\nvestless\\nvestlike\\nvestment\\nvestments\\nvestral\\nvestries\\nvestry\\nvests\\nvestural\\nvesture\\nvestured\\nvestures\\nvesturing\\nvesuvian\\nvesuvians\\nvet\\nvetch\\nvetches\\nveteran\\nveterans\\nveterinarian\\nveterinarians\\nveterinary\\nvetiver\\nvetivers\\nveto\\nvetoed\\nvetoer\\nvetoers\\nvetoes\\nvetoing\\nvets\\nvetted\\nvetting\\nvex\\nvexation\\nvexations\\nvexatious\\nvexed\\nvexedly\\nvexer\\nvexers\\nvexes\\nvexil\\nvexilla\\nvexillar\\nvexillum\\nvexils\\nvexing\\nvexingly\\nvext\\nvia\\nviabilities\\nviability\\nviable\\nviably\\nviaduct\\nviaducts\\nvial\\nvialed\\nvialing\\nvialled\\nvialling\\nvials\\nviand\\nviands\\nviatic\\nviatica\\nviatical\\nviaticum\\nviaticums\\nviator\\nviatores\\nviators\\nvibes\\nvibioid\\nvibist\\nvibists\\nvibrance\\nvibrances\\nvibrancies\\nvibrancy\\nvibrant\\nvibrants\\nvibrate\\nvibrated\\nvibrates\\nvibrating\\nvibration\\nvibrations\\nvibrato\\nvibrator\\nvibrators\\nvibratory\\nvibratos\\nvibrio\\nvibrion\\nvibrions\\nvibrios\\nvibrissa\\nvibrissae\\nviburnum\\nviburnums\\nvicar\\nvicarage\\nvicarages\\nvicarate\\nvicarates\\nvicarial\\nvicariate\\nvicariates\\nvicarious\\nvicariously\\nvicariousness\\nvicariousnesses\\nvicarly\\nvicars\\nvice\\nviced\\nviceless\\nvicenary\\nviceroy\\nviceroys\\nvices\\nvichies\\nvichy\\nvicinage\\nvicinages\\nvicinal\\nvicing\\nvicinities\\nvicinity\\nvicious\\nviciously\\nviciousness\\nviciousnesses\\nvicissitude\\nvicissitudes\\nvicomte\\nvicomtes\\nvictim\\nvictimization\\nvictimizations\\nvictimize\\nvictimized\\nvictimizer\\nvictimizers\\nvictimizes\\nvictimizing\\nvictims\\nvictor\\nvictoria\\nvictorias\\nvictories\\nvictorious\\nvictoriously\\nvictors\\nvictory\\nvictress\\nvictresses\\nvictual\\nvictualed\\nvictualing\\nvictualled\\nvictualling\\nvictuals\\nvicugna\\nvicugnas\\nvicuna\\nvicunas\\nvide\\nvideo\\nvideos\\nvideotape\\nvideotaped\\nvideotapes\\nvideotaping\\nvidette\\nvidettes\\nvidicon\\nvidicons\\nviduities\\nviduity\\nvie\\nvied\\nvier\\nviers\\nvies\\nview\\nviewable\\nviewed\\nviewer\\nviewers\\nviewier\\nviewiest\\nviewing\\nviewings\\nviewless\\nviewpoint\\nviewpoints\\nviews\\nviewy\\nvigil\\nvigilance\\nvigilances\\nvigilant\\nvigilante\\nvigilantes\\nvigilantly\\nvigils\\nvignette\\nvignetted\\nvignettes\\nvignetting\\nvigor\\nvigorish\\nvigorishes\\nvigoroso\\nvigorous\\nvigorously\\nvigorousness\\nvigorousnesses\\nvigors\\nvigour\\nvigours\\nviking\\nvikings\\nvilayet\\nvilayets\\nvile\\nvilely\\nvileness\\nvilenesses\\nviler\\nvilest\\nvilification\\nvilifications\\nvilified\\nvilifier\\nvilifiers\\nvilifies\\nvilify\\nvilifying\\nvilipend\\nvilipended\\nvilipending\\nvilipends\\nvill\\nvilla\\nvilladom\\nvilladoms\\nvillae\\nvillage\\nvillager\\nvillagers\\nvillages\\nvillain\\nvillainies\\nvillains\\nvillainy\\nvillas\\nvillatic\\nvillein\\nvilleins\\nvilli\\nvillianess\\nvillianesses\\nvillianous\\nvillianously\\nvillianousness\\nvillianousnesses\\nvillose\\nvillous\\nvills\\nvillus\\nvim\\nvimen\\nvimina\\nviminal\\nvimpa\\nvims\\nvin\\nvina\\nvinal\\nvinals\\nvinas\\nvinasse\\nvinasses\\nvinca\\nvincas\\nvincible\\nvincristine\\nvincristines\\nvincula\\nvinculum\\nvinculums\\nvindesine\\nvindicate\\nvindicated\\nvindicates\\nvindicating\\nvindication\\nvindications\\nvindicator\\nvindicators\\nvindictive\\nvindictively\\nvindictiveness\\nvindictivenesses\\nvine\\nvineal\\nvined\\nvinegar\\nvinegars\\nvinegary\\nvineries\\nvinery\\nvines\\nvineyard\\nvineyards\\nvinic\\nvinier\\nviniest\\nvinifera\\nviniferas\\nvining\\nvino\\nvinos\\nvinosities\\nvinosity\\nvinous\\nvinously\\nvins\\nvintage\\nvintager\\nvintagers\\nvintages\\nvintner\\nvintners\\nviny\\nvinyl\\nvinylic\\nvinyls\\nviol\\nviola\\nviolable\\nviolably\\nviolas\\nviolate\\nviolated\\nviolater\\nviolaters\\nviolates\\nviolating\\nviolation\\nviolations\\nviolator\\nviolators\\nviolence\\nviolences\\nviolent\\nviolently\\nviolet\\nviolets\\nviolin\\nviolinist\\nviolinists\\nviolins\\nviolist\\nviolists\\nviolone\\nviolones\\nviols\\nviomycin\\nviomycins\\nviper\\nviperine\\nviperish\\nviperous\\nvipers\\nvirago\\nviragoes\\nviragos\\nviral\\nvirally\\nvirelai\\nvirelais\\nvirelay\\nvirelays\\nviremia\\nviremias\\nviremic\\nvireo\\nvireos\\nvires\\nvirga\\nvirgas\\nvirgate\\nvirgates\\nvirgin\\nvirginal\\nvirginally\\nvirginals\\nvirgins\\nvirgule\\nvirgules\\nviricide\\nviricides\\nvirid\\nviridian\\nviridians\\nviridities\\nviridity\\nvirile\\nvirilism\\nvirilisms\\nvirilities\\nvirility\\nvirion\\nvirions\\nvirl\\nvirls\\nvirologies\\nvirology\\nviroses\\nvirosis\\nvirtu\\nvirtual\\nvirtually\\nvirtue\\nvirtues\\nvirtuosa\\nvirtuosas\\nvirtuose\\nvirtuosi\\nvirtuosities\\nvirtuosity\\nvirtuoso\\nvirtuosos\\nvirtuous\\nvirtuously\\nvirtus\\nvirucide\\nvirucides\\nvirulence\\nvirulences\\nvirulencies\\nvirulency\\nvirulent\\nvirulently\\nvirus\\nviruses\\nvis\\nvisa\\nvisaed\\nvisage\\nvisaged\\nvisages\\nvisaing\\nvisard\\nvisards\\nvisas\\nviscacha\\nviscachas\\nviscera\\nvisceral\\nviscerally\\nviscid\\nviscidities\\nviscidity\\nviscidly\\nviscoid\\nviscose\\nviscoses\\nviscount\\nviscountess\\nviscountesses\\nviscounts\\nviscous\\nviscus\\nvise\\nvised\\nviseed\\nviseing\\nviselike\\nvises\\nvisibilities\\nvisibility\\nvisible\\nvisibly\\nvising\\nvision\\nvisional\\nvisionaries\\nvisionary\\nvisioned\\nvisioning\\nvisions\\nvisit\\nvisitable\\nvisitant\\nvisitants\\nvisitation\\nvisitations\\nvisited\\nvisiter\\nvisiters\\nvisiting\\nvisitor\\nvisitors\\nvisits\\nvisive\\nvisor\\nvisored\\nvisoring\\nvisors\\nvista\\nvistaed\\nvistas\\nvisual\\nvisualization\\nvisualizations\\nvisualize\\nvisualized\\nvisualizer\\nvisualizers\\nvisualizes\\nvisualizing\\nvisually\\nvita\\nvitae\\nvital\\nvitalise\\nvitalised\\nvitalises\\nvitalising\\nvitalism\\nvitalisms\\nvitalist\\nvitalists\\nvitalities\\nvitality\\nvitalize\\nvitalized\\nvitalizes\\nvitalizing\\nvitally\\nvitals\\nvitamer\\nvitamers\\nvitamin\\nvitamine\\nvitamines\\nvitamins\\nvitellin\\nvitellins\\nvitellus\\nvitelluses\\nvitesse\\nvitesses\\nvitiable\\nvitiate\\nvitiated\\nvitiates\\nvitiating\\nvitiation\\nvitiations\\nvitiator\\nvitiators\\nvitiligo\\nvitiligos\\nvitreous\\nvitric\\nvitrification\\nvitrifications\\nvitrified\\nvitrifies\\nvitrify\\nvitrifying\\nvitrine\\nvitrines\\nvitriol\\nvitrioled\\nvitriolic\\nvitrioling\\nvitriolled\\nvitriolling\\nvitriols\\nvitta\\nvittae\\nvittate\\nvittle\\nvittled\\nvittles\\nvittling\\nvituline\\nvituperate\\nvituperated\\nvituperates\\nvituperating\\nvituperation\\nvituperations\\nvituperative\\nvituperatively\\nviva\\nvivace\\nvivacious\\nvivaciously\\nvivaciousness\\nvivaciousnesses\\nvivacities\\nvivacity\\nvivaria\\nvivaries\\nvivarium\\nvivariums\\nvivary\\nvivas\\nvive\\nviverrid\\nviverrids\\nvivers\\nvivid\\nvivider\\nvividest\\nvividly\\nvividness\\nvividnesses\\nvivific\\nvivified\\nvivifier\\nvivifiers\\nvivifies\\nvivify\\nvivifying\\nvivipara\\nvivisect\\nvivisected\\nvivisecting\\nvivisection\\nvivisections\\nvivisects\\nvixen\\nvixenish\\nvixenly\\nvixens\\nvizard\\nvizarded\\nvizards\\nvizcacha\\nvizcachas\\nvizier\\nviziers\\nvizir\\nvizirate\\nvizirates\\nvizirial\\nvizirs\\nvizor\\nvizored\\nvizoring\\nvizors\\nvizsla\\nvizslas\\nvocable\\nvocables\\nvocably\\nvocabularies\\nvocabulary\\nvocal\\nvocalic\\nvocalics\\nvocalise\\nvocalised\\nvocalises\\nvocalising\\nvocalism\\nvocalisms\\nvocalist\\nvocalists\\nvocalities\\nvocality\\nvocalize\\nvocalized\\nvocalizes\\nvocalizing\\nvocally\\nvocals\\nvocation\\nvocational\\nvocations\\nvocative\\nvocatives\\nvoces\\nvociferous\\nvociferously\\nvocoder\\nvocoders\\nvoder\\nvodka\\nvodkas\\nvodum\\nvodums\\nvodun\\nvoe\\nvoes\\nvogie\\nvogue\\nvogues\\nvoguish\\nvoice\\nvoiced\\nvoiceful\\nvoicer\\nvoicers\\nvoices\\nvoicing\\nvoid\\nvoidable\\nvoidance\\nvoidances\\nvoided\\nvoider\\nvoiders\\nvoiding\\nvoidness\\nvoidnesses\\nvoids\\nvoile\\nvoiles\\nvolant\\nvolante\\nvolar\\nvolatile\\nvolatiles\\nvolatilities\\nvolatility\\nvolatilize\\nvolatilized\\nvolatilizes\\nvolatilizing\\nvolcanic\\nvolcanics\\nvolcano\\nvolcanoes\\nvolcanos\\nvole\\nvoled\\nvoleries\\nvolery\\nvoles\\nvoling\\nvolitant\\nvolition\\nvolitional\\nvolitions\\nvolitive\\nvolley\\nvolleyball\\nvolleyballs\\nvolleyed\\nvolleyer\\nvolleyers\\nvolleying\\nvolleys\\nvolost\\nvolosts\\nvolplane\\nvolplaned\\nvolplanes\\nvolplaning\\nvolt\\nvolta\\nvoltage\\nvoltages\\nvoltaic\\nvoltaism\\nvoltaisms\\nvolte\\nvoltes\\nvolti\\nvolts\\nvolubilities\\nvolubility\\nvoluble\\nvolubly\\nvolume\\nvolumed\\nvolumes\\nvoluming\\nvoluminous\\nvoluntarily\\nvoluntary\\nvolunteer\\nvolunteered\\nvolunteering\\nvolunteers\\nvoluptuous\\nvoluptuously\\nvoluptuousness\\nvoluptuousnesses\\nvolute\\nvoluted\\nvolutes\\nvolutin\\nvolutins\\nvolution\\nvolutions\\nvolva\\nvolvas\\nvolvate\\nvolvox\\nvolvoxes\\nvolvuli\\nvolvulus\\nvolvuluses\\nvomer\\nvomerine\\nvomers\\nvomica\\nvomicae\\nvomit\\nvomited\\nvomiter\\nvomiters\\nvomiting\\nvomitive\\nvomitives\\nvomito\\nvomitories\\nvomitory\\nvomitos\\nvomitous\\nvomits\\nvomitus\\nvomituses\\nvon\\nvoodoo\\nvoodooed\\nvoodooing\\nvoodooism\\nvoodooisms\\nvoodoos\\nvoracious\\nvoraciously\\nvoraciousness\\nvoraciousnesses\\nvoracities\\nvoracity\\nvorlage\\nvorlages\\nvortex\\nvortexes\\nvortical\\nvortices\\nvotable\\nvotaress\\nvotaresses\\nvotaries\\nvotarist\\nvotarists\\nvotary\\nvote\\nvoteable\\nvoted\\nvoteless\\nvoter\\nvoters\\nvotes\\nvoting\\nvotive\\nvotively\\nvotress\\nvotresses\\nvouch\\nvouched\\nvouchee\\nvouchees\\nvoucher\\nvouchered\\nvouchering\\nvouchers\\nvouches\\nvouching\\nvouchsafe\\nvouchsafed\\nvouchsafes\\nvouchsafing\\nvoussoir\\nvoussoirs\\nvow\\nvowed\\nvowel\\nvowelize\\nvowelized\\nvowelizes\\nvowelizing\\nvowels\\nvower\\nvowers\\nvowing\\nvowless\\nvows\\nvox\\nvoyage\\nvoyaged\\nvoyager\\nvoyagers\\nvoyages\\nvoyageur\\nvoyageurs\\nvoyaging\\nvoyeur\\nvoyeurs\\nvroom\\nvroomed\\nvrooming\\nvrooms\\nvrouw\\nvrouws\\nvrow\\nvrows\\nvug\\nvugg\\nvuggs\\nvuggy\\nvugh\\nvughs\\nvugs\\nvulcanic\\nvulcanization\\nvulcanizations\\nvulcanize\\nvulcanized\\nvulcanizes\\nvulcanizing\\nvulgar\\nvulgarer\\nvulgarest\\nvulgarism\\nvulgarisms\\nvulgarities\\nvulgarity\\nvulgarize\\nvulgarized\\nvulgarizes\\nvulgarizing\\nvulgarly\\nvulgars\\nvulgate\\nvulgates\\nvulgo\\nvulgus\\nvulguses\\nvulnerabilities\\nvulnerability\\nvulnerable\\nvulnerably\\nvulpine\\nvulture\\nvultures\\nvulva\\nvulvae\\nvulval\\nvulvar\\nvulvas\\nvulvate\\nvulvitis\\nvulvitises\\nvying\\nvyingly\\nwab\\nwabble\\nwabbled\\nwabbler\\nwabblers\\nwabbles\\nwabblier\\nwabbliest\\nwabbling\\nwabbly\\nwabs\\nwack\\nwacke\\nwackes\\nwackier\\nwackiest\\nwackily\\nwacks\\nwacky\\nwad\\nwadable\\nwadded\\nwadder\\nwadders\\nwaddie\\nwaddied\\nwaddies\\nwadding\\nwaddings\\nwaddle\\nwaddled\\nwaddler\\nwaddlers\\nwaddles\\nwaddling\\nwaddly\\nwaddy\\nwaddying\\nwade\\nwadeable\\nwaded\\nwader\\nwaders\\nwades\\nwadi\\nwadies\\nwading\\nwadis\\nwadmaal\\nwadmaals\\nwadmal\\nwadmals\\nwadmel\\nwadmels\\nwadmol\\nwadmoll\\nwadmolls\\nwadmols\\nwads\\nwadset\\nwadsets\\nwadsetted\\nwadsetting\\nwady\\nwae\\nwaefu\\nwaeful\\nwaeness\\nwaenesses\\nwaes\\nwaesuck\\nwaesucks\\nwafer\\nwafered\\nwafering\\nwafers\\nwafery\\nwaff\\nwaffed\\nwaffie\\nwaffies\\nwaffing\\nwaffle\\nwaffled\\nwaffles\\nwaffling\\nwaffs\\nwaft\\nwaftage\\nwaftages\\nwafted\\nwafter\\nwafters\\nwafting\\nwafts\\nwafture\\nwaftures\\nwag\\nwage\\nwaged\\nwageless\\nwager\\nwagered\\nwagerer\\nwagerers\\nwagering\\nwagers\\nwages\\nwagged\\nwagger\\nwaggeries\\nwaggers\\nwaggery\\nwagging\\nwaggish\\nwaggle\\nwaggled\\nwaggles\\nwaggling\\nwaggly\\nwaggon\\nwaggoned\\nwaggoner\\nwaggoners\\nwaggoning\\nwaggons\\nwaging\\nwagon\\nwagonage\\nwagonages\\nwagoned\\nwagoner\\nwagoners\\nwagoning\\nwagons\\nwags\\nwagsome\\nwagtail\\nwagtails\\nwahconda\\nwahcondas\\nwahine\\nwahines\\nwahoo\\nwahoos\\nwaif\\nwaifed\\nwaifing\\nwaifs\\nwail\\nwailed\\nwailer\\nwailers\\nwailful\\nwailing\\nwails\\nwailsome\\nwain\\nwains\\nwainscot\\nwainscoted\\nwainscoting\\nwainscots\\nwainscotted\\nwainscotting\\nwair\\nwaired\\nwairing\\nwairs\\nwaist\\nwaisted\\nwaister\\nwaisters\\nwaisting\\nwaistings\\nwaistline\\nwaistlines\\nwaists\\nwait\\nwaited\\nwaiter\\nwaiters\\nwaiting\\nwaitings\\nwaitress\\nwaitresses\\nwaits\\nwaive\\nwaived\\nwaiver\\nwaivers\\nwaives\\nwaiving\\nwakanda\\nwakandas\\nwake\\nwaked\\nwakeful\\nwakefulness\\nwakefulnesses\\nwakeless\\nwaken\\nwakened\\nwakener\\nwakeners\\nwakening\\nwakenings\\nwakens\\nwaker\\nwakerife\\nwakers\\nwakes\\nwakiki\\nwakikis\\nwaking\\nwale\\nwaled\\nwaler\\nwalers\\nwales\\nwalies\\nwaling\\nwalk\\nwalkable\\nwalkaway\\nwalkaways\\nwalked\\nwalker\\nwalkers\\nwalking\\nwalkings\\nwalkout\\nwalkouts\\nwalkover\\nwalkovers\\nwalks\\nwalkup\\nwalkups\\nwalkway\\nwalkways\\nwalkyrie\\nwalkyries\\nwall\\nwalla\\nwallabies\\nwallaby\\nwallah\\nwallahs\\nwallaroo\\nwallaroos\\nwallas\\nwalled\\nwallet\\nwallets\\nwalleye\\nwalleyed\\nwalleyes\\nwallflower\\nwallflowers\\nwallie\\nwallies\\nwalling\\nwallop\\nwalloped\\nwalloper\\nwallopers\\nwalloping\\nwallops\\nwallow\\nwallowed\\nwallower\\nwallowers\\nwallowing\\nwallows\\nwallpaper\\nwallpapered\\nwallpapering\\nwallpapers\\nwalls\\nwally\\nwalnut\\nwalnuts\\nwalrus\\nwalruses\\nwaltz\\nwaltzed\\nwaltzer\\nwaltzers\\nwaltzes\\nwaltzing\\nwaly\\nwamble\\nwambled\\nwambles\\nwamblier\\nwambliest\\nwambling\\nwambly\\nwame\\nwamefou\\nwamefous\\nwameful\\nwamefuls\\nwames\\nwammus\\nwammuses\\nwampish\\nwampished\\nwampishes\\nwampishing\\nwampum\\nwampums\\nwampus\\nwampuses\\nwamus\\nwamuses\\nwan\\nwand\\nwander\\nwandered\\nwanderer\\nwanderers\\nwandering\\nwanderlust\\nwanderlusts\\nwanderoo\\nwanderoos\\nwanders\\nwandle\\nwands\\nwane\\nwaned\\nwaner\\nwanes\\nwaney\\nwangan\\nwangans\\nwangle\\nwangled\\nwangler\\nwanglers\\nwangles\\nwangling\\nwangun\\nwanguns\\nwanier\\nwaniest\\nwanigan\\nwanigans\\nwaning\\nwanion\\nwanions\\nwanly\\nwanned\\nwanner\\nwanness\\nwannesses\\nwannest\\nwannigan\\nwannigans\\nwanning\\nwans\\nwant\\nwantage\\nwantages\\nwanted\\nwanter\\nwanters\\nwanting\\nwanton\\nwantoned\\nwantoner\\nwantoners\\nwantoning\\nwantonly\\nwantonness\\nwantonnesses\\nwantons\\nwants\\nwany\\nwap\\nwapiti\\nwapitis\\nwapped\\nwapping\\nwaps\\nwar\\nwarble\\nwarbled\\nwarbler\\nwarblers\\nwarbles\\nwarbling\\nwarcraft\\nwarcrafts\\nward\\nwarded\\nwarden\\nwardenries\\nwardenry\\nwardens\\nwarder\\nwarders\\nwarding\\nwardress\\nwardresses\\nwardrobe\\nwardrobes\\nwardroom\\nwardrooms\\nwards\\nwardship\\nwardships\\nware\\nwared\\nwarehouse\\nwarehoused\\nwarehouseman\\nwarehousemen\\nwarehouser\\nwarehousers\\nwarehouses\\nwarehousing\\nwarer\\nwareroom\\nwarerooms\\nwares\\nwarfare\\nwarfares\\nwarfarin\\nwarfarins\\nwarhead\\nwarheads\\nwarier\\nwariest\\nwarily\\nwariness\\nwarinesses\\nwaring\\nwarison\\nwarisons\\nwark\\nwarked\\nwarking\\nwarks\\nwarless\\nwarlike\\nwarlock\\nwarlocks\\nwarlord\\nwarlords\\nwarm\\nwarmaker\\nwarmakers\\nwarmed\\nwarmer\\nwarmers\\nwarmest\\nwarming\\nwarmish\\nwarmly\\nwarmness\\nwarmnesses\\nwarmonger\\nwarmongers\\nwarmouth\\nwarmouths\\nwarms\\nwarmth\\nwarmths\\nwarmup\\nwarmups\\nwarn\\nwarned\\nwarner\\nwarners\\nwarning\\nwarnings\\nwarns\\nwarp\\nwarpage\\nwarpages\\nwarpath\\nwarpaths\\nwarped\\nwarper\\nwarpers\\nwarping\\nwarplane\\nwarplanes\\nwarpower\\nwarpowers\\nwarps\\nwarpwise\\nwarragal\\nwarragals\\nwarrant\\nwarranted\\nwarranties\\nwarranting\\nwarrants\\nwarranty\\nwarred\\nwarren\\nwarrener\\nwarreners\\nwarrens\\nwarrigal\\nwarrigals\\nwarring\\nwarrior\\nwarriors\\nwars\\nwarsaw\\nwarsaws\\nwarship\\nwarships\\nwarsle\\nwarsled\\nwarsler\\nwarslers\\nwarsles\\nwarsling\\nwarstle\\nwarstled\\nwarstler\\nwarstlers\\nwarstles\\nwarstling\\nwart\\nwarted\\nwarthog\\nwarthogs\\nwartier\\nwartiest\\nwartime\\nwartimes\\nwartlike\\nwarts\\nwarty\\nwarwork\\nwarworks\\nwarworn\\nwary\\nwas\\nwash\\nwashable\\nwashboard\\nwashboards\\nwashbowl\\nwashbowls\\nwashcloth\\nwashcloths\\nwashday\\nwashdays\\nwashed\\nwasher\\nwashers\\nwashes\\nwashier\\nwashiest\\nwashing\\nwashings\\nwashington\\nwashout\\nwashouts\\nwashrag\\nwashrags\\nwashroom\\nwashrooms\\nwashtub\\nwashtubs\\nwashy\\nwasp\\nwaspier\\nwaspiest\\nwaspily\\nwaspish\\nwasplike\\nwasps\\nwaspy\\nwassail\\nwassailed\\nwassailing\\nwassails\\nwast\\nwastable\\nwastage\\nwastages\\nwaste\\nwastebasket\\nwastebaskets\\nwasted\\nwasteful\\nwastefully\\nwastefulness\\nwastefulnesses\\nwasteland\\nwastelands\\nwastelot\\nwastelots\\nwaster\\nwasterie\\nwasteries\\nwasters\\nwastery\\nwastes\\nwasteway\\nwasteways\\nwasting\\nwastrel\\nwastrels\\nwastrie\\nwastries\\nwastry\\nwasts\\nwat\\nwatap\\nwatape\\nwatapes\\nwataps\\nwatch\\nwatchcries\\nwatchcry\\nwatchdog\\nwatchdogged\\nwatchdogging\\nwatchdogs\\nwatched\\nwatcher\\nwatchers\\nwatches\\nwatcheye\\nwatcheyes\\nwatchful\\nwatchfully\\nwatchfulness\\nwatchfulnesses\\nwatching\\nwatchman\\nwatchmen\\nwatchout\\nwatchouts\\nwater\\nwaterage\\nwaterages\\nwaterbed\\nwaterbeds\\nwatercolor\\nwatercolors\\nwatercourse\\nwatercourses\\nwatercress\\nwatercresses\\nwaterdog\\nwaterdogs\\nwatered\\nwaterer\\nwaterers\\nwaterfall\\nwaterfalls\\nwaterfowl\\nwaterfowls\\nwaterier\\nwateriest\\nwaterily\\nwatering\\nwaterings\\nwaterish\\nwaterlog\\nwaterlogged\\nwaterlogging\\nwaterlogs\\nwaterloo\\nwaterloos\\nwaterman\\nwatermark\\nwatermarked\\nwatermarking\\nwatermarks\\nwatermelon\\nwatermelons\\nwatermen\\nwaterpower\\nwaterpowers\\nwaterproof\\nwaterproofed\\nwaterproofing\\nwaterproofings\\nwaterproofs\\nwaters\\nwaterspout\\nwaterspouts\\nwatertight\\nwaterway\\nwaterways\\nwaterworks\\nwatery\\nwats\\nwatt\\nwattage\\nwattages\\nwattape\\nwattapes\\nwatter\\nwattest\\nwatthour\\nwatthours\\nwattle\\nwattled\\nwattles\\nwattless\\nwattling\\nwatts\\nwaucht\\nwauchted\\nwauchting\\nwauchts\\nwaugh\\nwaught\\nwaughted\\nwaughting\\nwaughts\\nwauk\\nwauked\\nwauking\\nwauks\\nwaul\\nwauled\\nwauling\\nwauls\\nwaur\\nwave\\nwaveband\\nwavebands\\nwaved\\nwaveform\\nwaveforms\\nwavelength\\nwavelengths\\nwaveless\\nwavelet\\nwavelets\\nwavelike\\nwaveoff\\nwaveoffs\\nwaver\\nwavered\\nwaverer\\nwaverers\\nwavering\\nwaveringly\\nwavers\\nwavery\\nwaves\\nwavey\\nwaveys\\nwavier\\nwavies\\nwaviest\\nwavily\\nwaviness\\nwavinesses\\nwaving\\nwavy\\nwaw\\nwawl\\nwawled\\nwawling\\nwawls\\nwaws\\nwax\\nwaxberries\\nwaxberry\\nwaxbill\\nwaxbills\\nwaxed\\nwaxen\\nwaxer\\nwaxers\\nwaxes\\nwaxier\\nwaxiest\\nwaxily\\nwaxiness\\nwaxinesses\\nwaxing\\nwaxings\\nwaxlike\\nwaxplant\\nwaxplants\\nwaxweed\\nwaxweeds\\nwaxwing\\nwaxwings\\nwaxwork\\nwaxworks\\nwaxworm\\nwaxworms\\nwaxy\\nway\\nwaybill\\nwaybills\\nwayfarer\\nwayfarers\\nwayfaring\\nwaygoing\\nwaygoings\\nwaylaid\\nwaylay\\nwaylayer\\nwaylayers\\nwaylaying\\nwaylays\\nwayless\\nways\\nwayside\\nwaysides\\nwayward\\nwayworn\\nwe\\nweak\\nweaken\\nweakened\\nweakener\\nweakeners\\nweakening\\nweakens\\nweaker\\nweakest\\nweakfish\\nweakfishes\\nweakish\\nweaklier\\nweakliest\\nweakling\\nweaklings\\nweakly\\nweakness\\nweaknesses\\nweal\\nweald\\nwealds\\nweals\\nwealth\\nwealthier\\nwealthiest\\nwealths\\nwealthy\\nwean\\nweaned\\nweaner\\nweaners\\nweaning\\nweanling\\nweanlings\\nweans\\nweapon\\nweaponed\\nweaponing\\nweaponries\\nweaponry\\nweapons\\nwear\\nwearable\\nwearables\\nwearer\\nwearers\\nwearied\\nwearier\\nwearies\\nweariest\\nweariful\\nwearily\\nweariness\\nwearinesses\\nwearing\\nwearish\\nwearisome\\nwears\\nweary\\nwearying\\nweasand\\nweasands\\nweasel\\nweaseled\\nweaseling\\nweasels\\nweason\\nweasons\\nweather\\nweathered\\nweathering\\nweatherman\\nweathermen\\nweatherproof\\nweatherproofed\\nweatherproofing\\nweatherproofs\\nweathers\\nweave\\nweaved\\nweaver\\nweavers\\nweaves\\nweaving\\nweazand\\nweazands\\nweb\\nwebbed\\nwebbier\\nwebbiest\\nwebbing\\nwebbings\\nwebby\\nweber\\nwebers\\nwebfed\\nwebfeet\\nwebfoot\\nwebless\\nweblike\\nwebs\\nwebster\\nwebsters\\nwebworm\\nwebworms\\nwecht\\nwechts\\nwed\\nwedded\\nwedder\\nwedders\\nwedding\\nweddings\\nwedel\\nwedeled\\nwedeling\\nwedeln\\nwedelns\\nwedels\\nwedge\\nwedged\\nwedges\\nwedgie\\nwedgier\\nwedgies\\nwedgiest\\nwedging\\nwedgy\\nwedlock\\nwedlocks\\nwednesday\\nweds\\nwee\\nweed\\nweeded\\nweeder\\nweeders\\nweedier\\nweediest\\nweedily\\nweeding\\nweedless\\nweedlike\\nweeds\\nweedy\\nweek\\nweekday\\nweekdays\\nweekend\\nweekended\\nweekending\\nweekends\\nweeklies\\nweeklong\\nweekly\\nweeks\\nweel\\nween\\nweened\\nweenie\\nweenier\\nweenies\\nweeniest\\nweening\\nweens\\nweensier\\nweensiest\\nweensy\\nweeny\\nweep\\nweeper\\nweepers\\nweepier\\nweepiest\\nweeping\\nweeps\\nweepy\\nweer\\nwees\\nweest\\nweet\\nweeted\\nweeting\\nweets\\nweever\\nweevers\\nweevil\\nweeviled\\nweevilly\\nweevils\\nweevily\\nweewee\\nweeweed\\nweeweeing\\nweewees\\nweft\\nwefts\\nweftwise\\nweigela\\nweigelas\\nweigelia\\nweigelias\\nweigh\\nweighed\\nweigher\\nweighers\\nweighing\\nweighman\\nweighmen\\nweighs\\nweight\\nweighted\\nweighter\\nweighters\\nweightier\\nweightiest\\nweighting\\nweightless\\nweightlessness\\nweightlessnesses\\nweights\\nweighty\\nweiner\\nweiners\\nweir\\nweird\\nweirder\\nweirdest\\nweirdie\\nweirdies\\nweirdly\\nweirdness\\nweirdnesses\\nweirdo\\nweirdoes\\nweirdos\\nweirds\\nweirdy\\nweirs\\nweka\\nwekas\\nwelch\\nwelched\\nwelcher\\nwelchers\\nwelches\\nwelching\\nwelcome\\nwelcomed\\nwelcomer\\nwelcomers\\nwelcomes\\nwelcoming\\nweld\\nweldable\\nwelded\\nwelder\\nwelders\\nwelding\\nweldless\\nweldment\\nweldments\\nweldor\\nweldors\\nwelds\\nwelfare\\nwelfares\\nwelkin\\nwelkins\\nwell\\nwelladay\\nwelladays\\nwellaway\\nwellaways\\nwellborn\\nwellcurb\\nwellcurbs\\nwelldoer\\nwelldoers\\nwelled\\nwellesley\\nwellhead\\nwellheads\\nwellhole\\nwellholes\\nwelling\\nwellness\\nwellnesses\\nwells\\nwellsite\\nwellsites\\nwellspring\\nwellsprings\\nwelsh\\nwelshed\\nwelsher\\nwelshers\\nwelshes\\nwelshing\\nwelt\\nwelted\\nwelter\\nweltered\\nweltering\\nwelters\\nwelting\\nwelts\\nwen\\nwench\\nwenched\\nwencher\\nwenchers\\nwenches\\nwenching\\nwend\\nwended\\nwendigo\\nwendigos\\nwending\\nwends\\nwennier\\nwenniest\\nwennish\\nwenny\\nwens\\nwent\\nwept\\nwere\\nweregild\\nweregilds\\nwerewolf\\nwerewolves\\nwergeld\\nwergelds\\nwergelt\\nwergelts\\nwergild\\nwergilds\\nwert\\nwerwolf\\nwerwolves\\nweskit\\nweskits\\nwessand\\nwessands\\nwest\\nwester\\nwestered\\nwestering\\nwesterlies\\nwesterly\\nwestern\\nwesterns\\nwesters\\nwesting\\nwestings\\nwestmost\\nwests\\nwestward\\nwestwards\\nwet\\nwetback\\nwetbacks\\nwether\\nwethers\\nwetland\\nwetlands\\nwetly\\nwetness\\nwetnesses\\nwetproof\\nwets\\nwettable\\nwetted\\nwetter\\nwetters\\nwettest\\nwetting\\nwettings\\nwettish\\nwha\\nwhack\\nwhacked\\nwhacker\\nwhackers\\nwhackier\\nwhackiest\\nwhacking\\nwhacks\\nwhacky\\nwhale\\nwhalebone\\nwhalebones\\nwhaled\\nwhaleman\\nwhalemen\\nwhaler\\nwhalers\\nwhales\\nwhaling\\nwhalings\\nwham\\nwhammed\\nwhammies\\nwhamming\\nwhammy\\nwhams\\nwhang\\nwhanged\\nwhangee\\nwhangees\\nwhanging\\nwhangs\\nwhap\\nwhapped\\nwhapper\\nwhappers\\nwhapping\\nwhaps\\nwharf\\nwharfage\\nwharfages\\nwharfed\\nwharfing\\nwharfs\\nwharve\\nwharves\\nwhat\\nwhatever\\nwhatnot\\nwhatnots\\nwhats\\nwhatsoever\\nwhaup\\nwhaups\\nwheal\\nwheals\\nwheat\\nwheatear\\nwheatears\\nwheaten\\nwheats\\nwhee\\nwheedle\\nwheedled\\nwheedler\\nwheedlers\\nwheedles\\nwheedling\\nwheel\\nwheelbarrow\\nwheelbarrows\\nwheelbase\\nwheelbases\\nwheelchair\\nwheelchairs\\nwheeled\\nwheeler\\nwheelers\\nwheelie\\nwheelies\\nwheeling\\nwheelings\\nwheelless\\nwheelman\\nwheelmen\\nwheels\\nwheen\\nwheens\\nwheep\\nwheeped\\nwheeping\\nwheeple\\nwheepled\\nwheeples\\nwheepling\\nwheeps\\nwhees\\nwheeze\\nwheezed\\nwheezer\\nwheezers\\nwheezes\\nwheezier\\nwheeziest\\nwheezily\\nwheezing\\nwheezy\\nwhelk\\nwhelkier\\nwhelkiest\\nwhelks\\nwhelky\\nwhelm\\nwhelmed\\nwhelming\\nwhelms\\nwhelp\\nwhelped\\nwhelping\\nwhelps\\nwhen\\nwhenas\\nwhence\\nwhenever\\nwhens\\nwhere\\nwhereabouts\\nwhereas\\nwhereases\\nwhereat\\nwhereby\\nwherefore\\nwherein\\nwhereof\\nwhereon\\nwheres\\nwhereto\\nwhereupon\\nwherever\\nwherewithal\\nwherried\\nwherries\\nwherry\\nwherrying\\nwherve\\nwherves\\nwhet\\nwhether\\nwhets\\nwhetstone\\nwhetstones\\nwhetted\\nwhetter\\nwhetters\\nwhetting\\nwhew\\nwhews\\nwhey\\nwheyey\\nwheyface\\nwheyfaces\\nwheyish\\nwheys\\nwhich\\nwhichever\\nwhicker\\nwhickered\\nwhickering\\nwhickers\\nwhid\\nwhidah\\nwhidahs\\nwhidded\\nwhidding\\nwhids\\nwhiff\\nwhiffed\\nwhiffer\\nwhiffers\\nwhiffet\\nwhiffets\\nwhiffing\\nwhiffle\\nwhiffled\\nwhiffler\\nwhifflers\\nwhiffles\\nwhiffling\\nwhiffs\\nwhile\\nwhiled\\nwhiles\\nwhiling\\nwhilom\\nwhilst\\nwhim\\nwhimbrel\\nwhimbrels\\nwhimper\\nwhimpered\\nwhimpering\\nwhimpers\\nwhims\\nwhimsey\\nwhimseys\\nwhimsical\\nwhimsicalities\\nwhimsicality\\nwhimsically\\nwhimsied\\nwhimsies\\nwhimsy\\nwhin\\nwhinchat\\nwhinchats\\nwhine\\nwhined\\nwhiner\\nwhiners\\nwhines\\nwhiney\\nwhinier\\nwhiniest\\nwhining\\nwhinnied\\nwhinnier\\nwhinnies\\nwhinniest\\nwhinny\\nwhinnying\\nwhins\\nwhiny\\nwhip\\nwhipcord\\nwhipcords\\nwhiplash\\nwhiplashes\\nwhiplike\\nwhipped\\nwhipper\\nwhippers\\nwhippersnapper\\nwhippersnappers\\nwhippet\\nwhippets\\nwhippier\\nwhippiest\\nwhipping\\nwhippings\\nwhippoorwill\\nwhippoorwills\\nwhippy\\nwhipray\\nwhiprays\\nwhips\\nwhipsaw\\nwhipsawed\\nwhipsawing\\nwhipsawn\\nwhipsaws\\nwhipt\\nwhiptail\\nwhiptails\\nwhipworm\\nwhipworms\\nwhir\\nwhirl\\nwhirled\\nwhirler\\nwhirlers\\nwhirlier\\nwhirlies\\nwhirliest\\nwhirling\\nwhirlpool\\nwhirlpools\\nwhirls\\nwhirlwind\\nwhirlwinds\\nwhirly\\nwhirr\\nwhirred\\nwhirried\\nwhirries\\nwhirring\\nwhirrs\\nwhirry\\nwhirrying\\nwhirs\\nwhish\\nwhished\\nwhishes\\nwhishing\\nwhisht\\nwhishted\\nwhishting\\nwhishts\\nwhisk\\nwhisked\\nwhisker\\nwhiskered\\nwhiskers\\nwhiskery\\nwhiskey\\nwhiskeys\\nwhiskies\\nwhisking\\nwhisks\\nwhisky\\nwhisper\\nwhispered\\nwhispering\\nwhispers\\nwhispery\\nwhist\\nwhisted\\nwhisting\\nwhistle\\nwhistled\\nwhistler\\nwhistlers\\nwhistles\\nwhistling\\nwhists\\nwhit\\nwhite\\nwhitebait\\nwhitebaits\\nwhitecap\\nwhitecaps\\nwhited\\nwhitefish\\nwhitefishes\\nwhiteflies\\nwhitefly\\nwhitely\\nwhiten\\nwhitened\\nwhitener\\nwhiteners\\nwhiteness\\nwhitenesses\\nwhitening\\nwhitens\\nwhiteout\\nwhiteouts\\nwhiter\\nwhites\\nwhitest\\nwhitetail\\nwhitetails\\nwhitewash\\nwhitewashed\\nwhitewashes\\nwhitewashing\\nwhitey\\nwhiteys\\nwhither\\nwhities\\nwhiting\\nwhitings\\nwhitish\\nwhitlow\\nwhitlows\\nwhitrack\\nwhitracks\\nwhits\\nwhitter\\nwhitters\\nwhittle\\nwhittled\\nwhittler\\nwhittlers\\nwhittles\\nwhittling\\nwhittret\\nwhittrets\\nwhity\\nwhiz\\nwhizbang\\nwhizbangs\\nwhizz\\nwhizzed\\nwhizzer\\nwhizzers\\nwhizzes\\nwhizzing\\nwho\\nwhoa\\nwhoas\\nwhodunit\\nwhodunits\\nwhoever\\nwhole\\nwholehearted\\nwholeness\\nwholenesses\\nwholes\\nwholesale\\nwholesaled\\nwholesaler\\nwholesalers\\nwholesales\\nwholesaling\\nwholesome\\nwholesomeness\\nwholesomenesses\\nwholism\\nwholisms\\nwholly\\nwhom\\nwhomever\\nwhomp\\nwhomped\\nwhomping\\nwhomps\\nwhomso\\nwhoop\\nwhooped\\nwhoopee\\nwhoopees\\nwhooper\\nwhoopers\\nwhooping\\nwhoopla\\nwhooplas\\nwhoops\\nwhoosh\\nwhooshed\\nwhooshes\\nwhooshing\\nwhoosis\\nwhoosises\\nwhop\\nwhopped\\nwhopper\\nwhoppers\\nwhopping\\nwhops\\nwhore\\nwhored\\nwhoredom\\nwhoredoms\\nwhores\\nwhoreson\\nwhoresons\\nwhoring\\nwhorish\\nwhorl\\nwhorled\\nwhorls\\nwhort\\nwhortle\\nwhortles\\nwhorts\\nwhose\\nwhosever\\nwhosis\\nwhosises\\nwhoso\\nwhosoever\\nwhump\\nwhumped\\nwhumping\\nwhumps\\nwhy\\nwhydah\\nwhydahs\\nwhys\\nwich\\nwiches\\nwick\\nwickape\\nwickapes\\nwicked\\nwickeder\\nwickedest\\nwickedly\\nwickedness\\nwickednesses\\nwicker\\nwickers\\nwickerwork\\nwickerworks\\nwicket\\nwickets\\nwicking\\nwickings\\nwickiup\\nwickiups\\nwicks\\nwickyup\\nwickyups\\nwicopies\\nwicopy\\nwidder\\nwidders\\nwiddie\\nwiddies\\nwiddle\\nwiddled\\nwiddles\\nwiddling\\nwiddy\\nwide\\nwidely\\nwiden\\nwidened\\nwidener\\nwideners\\nwideness\\nwidenesses\\nwidening\\nwidens\\nwider\\nwides\\nwidespread\\nwidest\\nwidgeon\\nwidgeons\\nwidget\\nwidgets\\nwidish\\nwidow\\nwidowed\\nwidower\\nwidowers\\nwidowhood\\nwidowhoods\\nwidowing\\nwidows\\nwidth\\nwidths\\nwidthway\\nwield\\nwielded\\nwielder\\nwielders\\nwieldier\\nwieldiest\\nwielding\\nwields\\nwieldy\\nwiener\\nwieners\\nwienie\\nwienies\\nwife\\nwifed\\nwifedom\\nwifedoms\\nwifehood\\nwifehoods\\nwifeless\\nwifelier\\nwifeliest\\nwifelike\\nwifely\\nwifes\\nwifing\\nwig\\nwigan\\nwigans\\nwigeon\\nwigeons\\nwigged\\nwiggeries\\nwiggery\\nwigging\\nwiggings\\nwiggle\\nwiggled\\nwiggler\\nwigglers\\nwiggles\\nwigglier\\nwiggliest\\nwiggling\\nwiggly\\nwight\\nwights\\nwigless\\nwiglet\\nwiglets\\nwiglike\\nwigmaker\\nwigmakers\\nwigs\\nwigwag\\nwigwagged\\nwigwagging\\nwigwags\\nwigwam\\nwigwams\\nwikiup\\nwikiups\\nwilco\\nwild\\nwildcat\\nwildcats\\nwildcatted\\nwildcatting\\nwilder\\nwildered\\nwildering\\nwilderness\\nwildernesses\\nwilders\\nwildest\\nwildfire\\nwildfires\\nwildfowl\\nwildfowls\\nwilding\\nwildings\\nwildish\\nwildlife\\nwildling\\nwildlings\\nwildly\\nwildness\\nwildnesses\\nwilds\\nwildwood\\nwildwoods\\nwile\\nwiled\\nwiles\\nwilful\\nwilfully\\nwilier\\nwiliest\\nwilily\\nwiliness\\nwilinesses\\nwiling\\nwill\\nwillable\\nwilled\\nwiller\\nwillers\\nwillet\\nwillets\\nwillful\\nwillfully\\nwillied\\nwillies\\nwilling\\nwillinger\\nwillingest\\nwillingly\\nwillingness\\nwilliwau\\nwilliwaus\\nwilliwaw\\nwilliwaws\\nwillow\\nwillowed\\nwillower\\nwillowers\\nwillowier\\nwillowiest\\nwillowing\\nwillows\\nwillowy\\nwillpower\\nwillpowers\\nwills\\nwilly\\nwillyard\\nwillyart\\nwillying\\nwillywaw\\nwillywaws\\nwilt\\nwilted\\nwilting\\nwilts\\nwily\\nwimble\\nwimbled\\nwimbles\\nwimbling\\nwimple\\nwimpled\\nwimples\\nwimpling\\nwin\\nwince\\nwinced\\nwincer\\nwincers\\nwinces\\nwincey\\nwinceys\\nwinch\\nwinched\\nwincher\\nwinchers\\nwinches\\nwinching\\nwincing\\nwind\\nwindable\\nwindage\\nwindages\\nwindbag\\nwindbags\\nwindbreak\\nwindbreaks\\nwindburn\\nwindburned\\nwindburning\\nwindburns\\nwindburnt\\nwinded\\nwinder\\nwinders\\nwindfall\\nwindfalls\\nwindflaw\\nwindflaws\\nwindgall\\nwindgalls\\nwindier\\nwindiest\\nwindigo\\nwindigos\\nwindily\\nwinding\\nwindings\\nwindlass\\nwindlassed\\nwindlasses\\nwindlassing\\nwindle\\nwindled\\nwindles\\nwindless\\nwindling\\nwindlings\\nwindmill\\nwindmilled\\nwindmilling\\nwindmills\\nwindow\\nwindowed\\nwindowing\\nwindowless\\nwindows\\nwindpipe\\nwindpipes\\nwindrow\\nwindrowed\\nwindrowing\\nwindrows\\nwinds\\nwindshield\\nwindshields\\nwindsock\\nwindsocks\\nwindup\\nwindups\\nwindward\\nwindwards\\nwindway\\nwindways\\nwindy\\nwine\\nwined\\nwineless\\nwineries\\nwinery\\nwines\\nwineshop\\nwineshops\\nwineskin\\nwineskins\\nwinesop\\nwinesops\\nwiney\\nwing\\nwingback\\nwingbacks\\nwingbow\\nwingbows\\nwingding\\nwingdings\\nwinged\\nwingedly\\nwinger\\nwingers\\nwingier\\nwingiest\\nwinging\\nwingless\\nwinglet\\nwinglets\\nwinglike\\nwingman\\nwingmen\\nwingover\\nwingovers\\nwings\\nwingspan\\nwingspans\\nwingy\\nwinier\\nwiniest\\nwining\\nwinish\\nwink\\nwinked\\nwinker\\nwinkers\\nwinking\\nwinkle\\nwinkled\\nwinkles\\nwinkling\\nwinks\\nwinnable\\nwinned\\nwinner\\nwinners\\nwinning\\nwinnings\\nwinnock\\nwinnocks\\nwinnow\\nwinnowed\\nwinnower\\nwinnowers\\nwinnowing\\nwinnows\\nwino\\nwinoes\\nwinos\\nwins\\nwinsome\\nwinsomely\\nwinsomeness\\nwinsomenesses\\nwinsomer\\nwinsomest\\nwinter\\nwintered\\nwinterer\\nwinterers\\nwintergreen\\nwintergreens\\nwinterier\\nwinteriest\\nwintering\\nwinterly\\nwinters\\nwintertime\\nwintertimes\\nwintery\\nwintle\\nwintled\\nwintles\\nwintling\\nwintrier\\nwintriest\\nwintrily\\nwintry\\nwiny\\nwinze\\nwinzes\\nwipe\\nwiped\\nwipeout\\nwipeouts\\nwiper\\nwipers\\nwipes\\nwiping\\nwirable\\nwire\\nwired\\nwiredraw\\nwiredrawing\\nwiredrawn\\nwiredraws\\nwiredrew\\nwirehair\\nwirehairs\\nwireless\\nwirelessed\\nwirelesses\\nwirelessing\\nwirelike\\nwireman\\nwiremen\\nwirer\\nwirers\\nwires\\nwiretap\\nwiretapped\\nwiretapper\\nwiretappers\\nwiretapping\\nwiretaps\\nwireway\\nwireways\\nwirework\\nwireworks\\nwireworm\\nwireworms\\nwirier\\nwiriest\\nwirily\\nwiriness\\nwirinesses\\nwiring\\nwirings\\nwirra\\nwiry\\nwis\\nwisdom\\nwisdoms\\nwise\\nwiseacre\\nwiseacres\\nwisecrack\\nwisecracked\\nwisecracking\\nwisecracks\\nwised\\nwiselier\\nwiseliest\\nwisely\\nwiseness\\nwisenesses\\nwisent\\nwisents\\nwiser\\nwises\\nwisest\\nwish\\nwisha\\nwishbone\\nwishbones\\nwished\\nwisher\\nwishers\\nwishes\\nwishful\\nwishing\\nwishless\\nwising\\nwisp\\nwisped\\nwispier\\nwispiest\\nwispily\\nwisping\\nwispish\\nwisplike\\nwisps\\nwispy\\nwiss\\nwissed\\nwisses\\nwissing\\nwist\\nwistaria\\nwistarias\\nwisted\\nwisteria\\nwisterias\\nwistful\\nwistfully\\nwistfulness\\nwistfulnesses\\nwisting\\nwists\\nwit\\nwitan\\nwitch\\nwitchcraft\\nwitchcrafts\\nwitched\\nwitcheries\\nwitchery\\nwitches\\nwitchier\\nwitchiest\\nwitching\\nwitchings\\nwitchy\\nwite\\nwited\\nwiten\\nwites\\nwith\\nwithal\\nwithdraw\\nwithdrawal\\nwithdrawals\\nwithdrawing\\nwithdrawn\\nwithdraws\\nwithdrew\\nwithe\\nwithed\\nwither\\nwithered\\nwitherer\\nwitherers\\nwithering\\nwithers\\nwithes\\nwithheld\\nwithhold\\nwithholding\\nwithholds\\nwithier\\nwithies\\nwithiest\\nwithin\\nwithing\\nwithins\\nwithout\\nwithouts\\nwithstand\\nwithstanding\\nwithstands\\nwithstood\\nwithy\\nwiting\\nwitless\\nwitlessly\\nwitlessness\\nwitlessnesses\\nwitling\\nwitlings\\nwitloof\\nwitloofs\\nwitness\\nwitnessed\\nwitnesses\\nwitnessing\\nwitney\\nwitneys\\nwits\\nwitted\\nwitticism\\nwitticisms\\nwittier\\nwittiest\\nwittily\\nwittiness\\nwittinesses\\nwitting\\nwittingly\\nwittings\\nwittol\\nwittols\\nwitty\\nwive\\nwived\\nwiver\\nwivern\\nwiverns\\nwivers\\nwives\\nwiving\\nwiz\\nwizard\\nwizardly\\nwizardries\\nwizardry\\nwizards\\nwizen\\nwizened\\nwizening\\nwizens\\nwizes\\nwizzen\\nwizzens\\nwo\\nwoad\\nwoaded\\nwoads\\nwoadwax\\nwoadwaxes\\nwoald\\nwoalds\\nwobble\\nwobbled\\nwobbler\\nwobblers\\nwobbles\\nwobblier\\nwobblies\\nwobbliest\\nwobbling\\nwobbly\\nwobegone\\nwoe\\nwoebegone\\nwoeful\\nwoefuller\\nwoefullest\\nwoefully\\nwoeness\\nwoenesses\\nwoes\\nwoesome\\nwoful\\nwofully\\nwok\\nwoke\\nwoken\\nwoks\\nwold\\nwolds\\nwolf\\nwolfed\\nwolfer\\nwolfers\\nwolffish\\nwolffishes\\nwolfing\\nwolfish\\nwolflike\\nwolfram\\nwolframs\\nwolfs\\nwolver\\nwolverine\\nwolverines\\nwolvers\\nwolves\\nwoman\\nwomaned\\nwomanhood\\nwomanhoods\\nwomaning\\nwomanise\\nwomanised\\nwomanises\\nwomanish\\nwomanising\\nwomanize\\nwomanized\\nwomanizes\\nwomanizing\\nwomankind\\nwomankinds\\nwomanlier\\nwomanliest\\nwomanliness\\nwomanlinesses\\nwomanly\\nwomans\\nwomb\\nwombat\\nwombats\\nwombed\\nwombier\\nwombiest\\nwombs\\nwomby\\nwomen\\nwomera\\nwomeras\\nwommera\\nwommeras\\nwomps\\nwon\\nwonder\\nwondered\\nwonderer\\nwonderers\\nwonderful\\nwonderfully\\nwonderfulness\\nwonderfulnesses\\nwondering\\nwonderland\\nwonderlands\\nwonderment\\nwonderments\\nwonders\\nwonderwoman\\nwondrous\\nwondrously\\nwondrousness\\nwondrousnesses\\nwonkier\\nwonkiest\\nwonky\\nwonned\\nwonner\\nwonners\\nwonning\\nwons\\nwont\\nwonted\\nwontedly\\nwonting\\nwonton\\nwontons\\nwonts\\nwoo\\nwood\\nwoodbin\\nwoodbind\\nwoodbinds\\nwoodbine\\nwoodbines\\nwoodbins\\nwoodbox\\nwoodboxes\\nwoodchat\\nwoodchats\\nwoodchopper\\nwoodchoppers\\nwoodchuck\\nwoodchucks\\nwoodcock\\nwoodcocks\\nwoodcraft\\nwoodcrafts\\nwoodcut\\nwoodcuts\\nwooded\\nwooden\\nwoodener\\nwoodenest\\nwoodenly\\nwoodenness\\nwoodennesses\\nwoodhen\\nwoodhens\\nwoodier\\nwoodiest\\nwoodiness\\nwoodinesses\\nwooding\\nwoodland\\nwoodlands\\nwoodlark\\nwoodlarks\\nwoodless\\nwoodlore\\nwoodlores\\nwoodlot\\nwoodlots\\nwoodman\\nwoodmen\\nwoodnote\\nwoodnotes\\nwoodpecker\\nwoodpeckers\\nwoodpile\\nwoodpiles\\nwoodruff\\nwoodruffs\\nwoods\\nwoodshed\\nwoodshedded\\nwoodshedding\\nwoodsheds\\nwoodsia\\nwoodsias\\nwoodsier\\nwoodsiest\\nwoodsman\\nwoodsmen\\nwoodsy\\nwoodwax\\nwoodwaxes\\nwoodwind\\nwoodwinds\\nwoodwork\\nwoodworks\\nwoodworm\\nwoodworms\\nwoody\\nwooed\\nwooer\\nwooers\\nwoof\\nwoofed\\nwoofer\\nwoofers\\nwoofing\\nwoofs\\nwooing\\nwooingly\\nwool\\nwooled\\nwoolen\\nwoolens\\nwooler\\nwoolers\\nwoolfell\\nwoolfells\\nwoolgathering\\nwoolgatherings\\nwoolie\\nwoolier\\nwoolies\\nwooliest\\nwoollen\\nwoollens\\nwoollier\\nwoollies\\nwoolliest\\nwoollike\\nwoolly\\nwoolman\\nwoolmen\\nwoolpack\\nwoolpacks\\nwools\\nwoolsack\\nwoolsacks\\nwoolshed\\nwoolsheds\\nwoolskin\\nwoolskins\\nwooly\\nwoomera\\nwoomeras\\nwoops\\nwoorali\\nwooralis\\nwoorari\\nwooraris\\nwoos\\nwoosh\\nwooshed\\nwooshes\\nwooshing\\nwoozier\\nwooziest\\nwoozily\\nwooziness\\nwoozinesses\\nwoozy\\nwop\\nwops\\nworcester\\nword\\nwordage\\nwordages\\nwordbook\\nwordbooks\\nworded\\nwordier\\nwordiest\\nwordily\\nwordiness\\nwordinesses\\nwording\\nwordings\\nwordless\\nwordplay\\nwordplays\\nwords\\nwordy\\nwore\\nwork\\nworkability\\nworkable\\nworkableness\\nworkablenesses\\nworkaday\\nworkbag\\nworkbags\\nworkbasket\\nworkbaskets\\nworkbench\\nworkbenches\\nworkboat\\nworkboats\\nworkbook\\nworkbooks\\nworkbox\\nworkboxes\\nworkday\\nworkdays\\nworked\\nworker\\nworkers\\nworkfolk\\nworkhorse\\nworkhorses\\nworkhouse\\nworkhouses\\nworking\\nworkingman\\nworkingmen\\nworkings\\nworkless\\nworkload\\nworkloads\\nworkman\\nworkmanlike\\nworkmanship\\nworkmanships\\nworkmen\\nworkout\\nworkouts\\nworkroom\\nworkrooms\\nworks\\nworksheet\\nworksheets\\nworkshop\\nworkshops\\nworkup\\nworkups\\nworkweek\\nworkweeks\\nworld\\nworldlier\\nworldliest\\nworldliness\\nworldlinesses\\nworldly\\nworlds\\nworldwide\\nworm\\nwormed\\nwormer\\nwormers\\nwormhole\\nwormholes\\nwormier\\nwormiest\\nwormil\\nwormils\\nworming\\nwormish\\nwormlike\\nwormroot\\nwormroots\\nworms\\nwormseed\\nwormseeds\\nwormwood\\nwormwoods\\nwormy\\nworn\\nwornness\\nwornnesses\\nworried\\nworrier\\nworriers\\nworries\\nworrisome\\nworrit\\nworrited\\nworriting\\nworrits\\nworry\\nworrying\\nworse\\nworsen\\nworsened\\nworsening\\nworsens\\nworser\\nworses\\nworset\\nworsets\\nworship\\nworshiped\\nworshiper\\nworshipers\\nworshiping\\nworshipped\\nworshipper\\nworshippers\\nworshipping\\nworships\\nworst\\nworsted\\nworsteds\\nworsting\\nworsts\\nwort\\nworth\\nworthed\\nworthful\\nworthier\\nworthies\\nworthiest\\nworthily\\nworthiness\\nworthinesses\\nworthing\\nworthless\\nworthlessness\\nworthlessnesses\\nworths\\nworthwhile\\nworthy\\nworts\\nwos\\nwost\\nwostteth\\nwot\\nwots\\nwotted\\nwotteth\\nwotting\\nwould\\nwouldest\\nwouldst\\nwound\\nwounded\\nwounding\\nwounds\\nwove\\nwoven\\nwow\\nwowed\\nwowing\\nwows\\nwowser\\nwowsers\\nwrack\\nwracked\\nwrackful\\nwracking\\nwracks\\nwraith\\nwraiths\\nwrang\\nwrangle\\nwrangled\\nwrangler\\nwranglers\\nwrangles\\nwrangling\\nwrangs\\nwrap\\nwrapped\\nwrapper\\nwrappers\\nwrapping\\nwrappings\\nwraps\\nwrapt\\nwrasse\\nwrasses\\nwrastle\\nwrastled\\nwrastles\\nwrastling\\nwrath\\nwrathed\\nwrathful\\nwrathier\\nwrathiest\\nwrathily\\nwrathing\\nwraths\\nwrathy\\nwreak\\nwreaked\\nwreaker\\nwreakers\\nwreaking\\nwreaks\\nwreath\\nwreathe\\nwreathed\\nwreathen\\nwreathes\\nwreathing\\nwreaths\\nwreathy\\nwreck\\nwreckage\\nwreckages\\nwrecked\\nwrecker\\nwreckers\\nwreckful\\nwrecking\\nwreckings\\nwrecks\\nwren\\nwrench\\nwrenched\\nwrenches\\nwrenching\\nwrens\\nwrest\\nwrested\\nwrester\\nwresters\\nwresting\\nwrestle\\nwrestled\\nwrestler\\nwrestlers\\nwrestles\\nwrestling\\nwrests\\nwretch\\nwretched\\nwretcheder\\nwretchedest\\nwretchedness\\nwretchednesses\\nwretches\\nwried\\nwrier\\nwries\\nwriest\\nwriggle\\nwriggled\\nwriggler\\nwrigglers\\nwriggles\\nwrigglier\\nwriggliest\\nwriggling\\nwriggly\\nwright\\nwrights\\nwring\\nwringed\\nwringer\\nwringers\\nwringing\\nwrings\\nwrinkle\\nwrinkled\\nwrinkles\\nwrinklier\\nwrinkliest\\nwrinkling\\nwrinkly\\nwrist\\nwristier\\nwristiest\\nwristlet\\nwristlets\\nwrists\\nwristy\\nwrit\\nwritable\\nwrite\\nwriter\\nwriters\\nwrites\\nwrithe\\nwrithed\\nwrithen\\nwrither\\nwrithers\\nwrithes\\nwrithing\\nwriting\\nwritings\\nwrits\\nwritten\\nwrong\\nwrongdoer\\nwrongdoers\\nwrongdoing\\nwrongdoings\\nwronged\\nwronger\\nwrongers\\nwrongest\\nwrongful\\nwrongfully\\nwrongfulness\\nwrongfulnesses\\nwrongheaded\\nwrongheadedly\\nwrongheadedness\\nwrongheadednesses\\nwronging\\nwrongly\\nwrongs\\nwrote\\nwroth\\nwrothful\\nwrought\\nwrung\\nwry\\nwryer\\nwryest\\nwrying\\nwryly\\nwryneck\\nwrynecks\\nwryness\\nwrynesses\\nwud\\nwurst\\nwursts\\nwurzel\\nwurzels\\nwych\\nwyches\\nwye\\nwyes\\nwyle\\nwyled\\nwyles\\nwyling\\nwynd\\nwynds\\nwynn\\nwynns\\nwyte\\nwyted\\nwytes\\nwyting\\nwyvern\\nwyverns\\nxanthate\\nxanthates\\nxanthein\\nxantheins\\nxanthene\\nxanthenes\\nxanthic\\nxanthin\\nxanthine\\nxanthines\\nxanthins\\nxanthoma\\nxanthomas\\nxanthomata\\nxanthone\\nxanthones\\nxanthous\\nxebec\\nxebecs\\nxenia\\nxenial\\nxenias\\nxenic\\nxenogamies\\nxenogamy\\nxenogenies\\nxenogeny\\nxenolith\\nxenoliths\\nxenon\\nxenons\\nxenophobe\\nxenophobes\\nxenophobia\\nxerarch\\nxeric\\nxerosere\\nxeroseres\\nxeroses\\nxerosis\\nxerotic\\nxerus\\nxeruses\\nxi\\nxiphoid\\nxiphoids\\nxis\\nxu\\nxylan\\nxylans\\nxylem\\nxylems\\nxylene\\nxylenes\\nxylic\\nxylidin\\nxylidine\\nxylidines\\nxylidins\\nxylocarp\\nxylocarps\\nxyloid\\nxylol\\nxylols\\nxylophone\\nxylophones\\nxylophonist\\nxylophonists\\nxylose\\nxyloses\\nxylotomies\\nxylotomy\\nxylyl\\nxylyls\\nxyst\\nxyster\\nxysters\\nxysti\\nxystoi\\nxystos\\nxysts\\nxystus\\nya\\nyabber\\nyabbered\\nyabbering\\nyabbers\\nyacht\\nyachted\\nyachter\\nyachters\\nyachting\\nyachtings\\nyachtman\\nyachtmen\\nyachts\\nyack\\nyacked\\nyacking\\nyacks\\nyaff\\nyaffed\\nyaffing\\nyaffs\\nyager\\nyagers\\nyagi\\nyagis\\nyah\\nyahoo\\nyahooism\\nyahooisms\\nyahoos\\nyaird\\nyairds\\nyak\\nyakked\\nyakking\\nyaks\\nyald\\nyam\\nyamen\\nyamens\\nyammer\\nyammered\\nyammerer\\nyammerers\\nyammering\\nyammers\\nyams\\nyamun\\nyamuns\\nyang\\nyangs\\nyank\\nyanked\\nyanking\\nyanks\\nyanqui\\nyanquis\\nyap\\nyapock\\nyapocks\\nyapok\\nyapoks\\nyapon\\nyapons\\nyapped\\nyapper\\nyappers\\nyapping\\nyappy\\nyaps\\nyar\\nyard\\nyardage\\nyardages\\nyardarm\\nyardarms\\nyardbird\\nyardbirds\\nyarded\\nyarding\\nyardman\\nyardmen\\nyards\\nyardstick\\nyardsticks\\nyardwand\\nyardwands\\nyare\\nyarely\\nyarer\\nyarest\\nyarmelke\\nyarmelkes\\nyarmulke\\nyarmulkes\\nyarn\\nyarned\\nyarning\\nyarns\\nyarrow\\nyarrows\\nyashmac\\nyashmacs\\nyashmak\\nyashmaks\\nyasmak\\nyasmaks\\nyatagan\\nyatagans\\nyataghan\\nyataghans\\nyaud\\nyauds\\nyauld\\nyaup\\nyauped\\nyauper\\nyaupers\\nyauping\\nyaupon\\nyaupons\\nyaups\\nyaw\\nyawed\\nyawing\\nyawl\\nyawled\\nyawling\\nyawls\\nyawmeter\\nyawmeters\\nyawn\\nyawned\\nyawner\\nyawners\\nyawning\\nyawns\\nyawp\\nyawped\\nyawper\\nyawpers\\nyawping\\nyawpings\\nyawps\\nyaws\\nyay\\nycleped\\nyclept\\nye\\nyea\\nyeah\\nyealing\\nyealings\\nyean\\nyeaned\\nyeaning\\nyeanling\\nyeanlings\\nyeans\\nyear\\nyearbook\\nyearbooks\\nyearlies\\nyearling\\nyearlings\\nyearlong\\nyearly\\nyearn\\nyearned\\nyearner\\nyearners\\nyearning\\nyearnings\\nyearns\\nyears\\nyeas\\nyeast\\nyeasted\\nyeastier\\nyeastiest\\nyeastily\\nyeasting\\nyeasts\\nyeasty\\nyeelin\\nyeelins\\nyegg\\nyeggman\\nyeggmen\\nyeggs\\nyeh\\nyeld\\nyelk\\nyelks\\nyell\\nyelled\\nyeller\\nyellers\\nyelling\\nyellow\\nyellowed\\nyellower\\nyellowest\\nyellowing\\nyellowly\\nyellows\\nyellowy\\nyells\\nyelp\\nyelped\\nyelper\\nyelpers\\nyelping\\nyelps\\nyen\\nyenned\\nyenning\\nyens\\nyenta\\nyentas\\nyeoman\\nyeomanly\\nyeomanries\\nyeomanry\\nyeomen\\nyep\\nyerba\\nyerbas\\nyerk\\nyerked\\nyerking\\nyerks\\nyes\\nyeses\\nyeshiva\\nyeshivah\\nyeshivahs\\nyeshivas\\nyeshivoth\\nyessed\\nyesses\\nyessing\\nyester\\nyesterday\\nyesterdays\\nyestern\\nyestreen\\nyestreens\\nyet\\nyeti\\nyetis\\nyett\\nyetts\\nyeuk\\nyeuked\\nyeuking\\nyeuks\\nyeuky\\nyew\\nyews\\nyid\\nyids\\nyield\\nyielded\\nyielder\\nyielders\\nyielding\\nyields\\nyill\\nyills\\nyin\\nyince\\nyins\\nyip\\nyipe\\nyipes\\nyipped\\nyippee\\nyippie\\nyippies\\nyipping\\nyips\\nyird\\nyirds\\nyirr\\nyirred\\nyirring\\nyirrs\\nyirth\\nyirths\\nyod\\nyodel\\nyodeled\\nyodeler\\nyodelers\\nyodeling\\nyodelled\\nyodeller\\nyodellers\\nyodelling\\nyodels\\nyodh\\nyodhs\\nyodle\\nyodled\\nyodler\\nyodlers\\nyodles\\nyodling\\nyods\\nyoga\\nyogas\\nyogee\\nyogees\\nyogh\\nyoghourt\\nyoghourts\\nyoghs\\nyoghurt\\nyoghurts\\nyogi\\nyogic\\nyogin\\nyogini\\nyoginis\\nyogins\\nyogis\\nyogurt\\nyogurts\\nyoicks\\nyoke\\nyoked\\nyokel\\nyokeless\\nyokelish\\nyokels\\nyokemate\\nyokemates\\nyokes\\nyoking\\nyolk\\nyolked\\nyolkier\\nyolkiest\\nyolks\\nyolky\\nyom\\nyomim\\nyon\\nyond\\nyonder\\nyoni\\nyonis\\nyonker\\nyonkers\\nyore\\nyores\\nyou\\nyoung\\nyounger\\nyoungers\\nyoungest\\nyoungish\\nyoungs\\nyoungster\\nyoungsters\\nyounker\\nyounkers\\nyoupon\\nyoupons\\nyour\\nyourn\\nyours\\nyourself\\nyourselves\\nyouse\\nyouth\\nyouthen\\nyouthened\\nyouthening\\nyouthens\\nyouthful\\nyouthfully\\nyouthfulness\\nyouthfulnesses\\nyouths\\nyow\\nyowe\\nyowed\\nyowes\\nyowie\\nyowies\\nyowing\\nyowl\\nyowled\\nyowler\\nyowlers\\nyowling\\nyowls\\nyows\\nyperite\\nyperites\\nytterbia\\nytterbias\\nytterbic\\nyttria\\nyttrias\\nyttric\\nyttrium\\nyttriums\\nyuan\\nyuans\\nyucca\\nyuccas\\nyuga\\nyugas\\nyuk\\nyukked\\nyukking\\nyuks\\nyulan\\nyulans\\nyule\\nyules\\nyuletide\\nyuletides\\nyummier\\nyummies\\nyummiest\\nyummy\\nyup\\nyupon\\nyupons\\nyurt\\nyurta\\nyurts\\nywis\\nzabaione\\nzabaiones\\nzabajone\\nzabajones\\nzacaton\\nzacatons\\nzaddik\\nzaddikim\\nzaffar\\nzaffars\\nzaffer\\nzaffers\\nzaffir\\nzaffirs\\nzaffre\\nzaffres\\nzaftig\\nzag\\nzagged\\nzagging\\nzags\\nzaibatsu\\nzaire\\nzaires\\nzamarra\\nzamarras\\nzamarro\\nzamarros\\nzamia\\nzamias\\nzamindar\\nzamindars\\nzanana\\nzananas\\nzander\\nzanders\\nzanier\\nzanies\\nzaniest\\nzanily\\nzaniness\\nzaninesses\\nzany\\nzanyish\\nzanza\\nzanzas\\nzap\\nzapateo\\nzapateos\\nzapped\\nzapping\\nzaps\\nzaptiah\\nzaptiahs\\nzaptieh\\nzaptiehs\\nzaratite\\nzaratites\\nzareba\\nzarebas\\nzareeba\\nzareebas\\nzarf\\nzarfs\\nzariba\\nzaribas\\nzarzuela\\nzarzuelas\\nzastruga\\nzastrugi\\nzax\\nzaxes\\nzayin\\nzayins\\nzeal\\nzealot\\nzealotries\\nzealotry\\nzealots\\nzealous\\nzealously\\nzealousness\\nzealousnesses\\nzeals\\nzeatin\\nzeatins\\nzebec\\nzebeck\\nzebecks\\nzebecs\\nzebra\\nzebraic\\nzebras\\nzebrass\\nzebrasses\\nzebrine\\nzebroid\\nzebu\\nzebus\\nzecchin\\nzecchini\\nzecchino\\nzecchinos\\nzecchins\\nzechin\\nzechins\\nzed\\nzedoaries\\nzedoary\\nzeds\\nzee\\nzees\\nzein\\nzeins\\nzeitgeist\\nzeitgeists\\nzelkova\\nzelkovas\\nzemindar\\nzemindars\\nzemstvo\\nzemstvos\\nzenana\\nzenanas\\nzenith\\nzenithal\\nzeniths\\nzeolite\\nzeolites\\nzeolitic\\nzephyr\\nzephyrs\\nzeppelin\\nzeppelins\\nzero\\nzeroed\\nzeroes\\nzeroing\\nzeros\\nzest\\nzested\\nzestful\\nzestfully\\nzestfulness\\nzestfulnesses\\nzestier\\nzestiest\\nzesting\\nzests\\nzesty\\nzeta\\nzetas\\nzeugma\\nzeugmas\\nzibeline\\nzibelines\\nzibet\\nzibeth\\nzibeths\\nzibets\\nzig\\nzigged\\nzigging\\nziggurat\\nziggurats\\nzigs\\nzigzag\\nzigzagged\\nzigzagging\\nzigzags\\nzikkurat\\nzikkurats\\nzikurat\\nzikurats\\nzilch\\nzilches\\nzillah\\nzillahs\\nzillion\\nzillions\\nzinc\\nzincate\\nzincates\\nzinced\\nzincic\\nzincified\\nzincifies\\nzincify\\nzincifying\\nzincing\\nzincite\\nzincites\\nzincked\\nzincking\\nzincky\\nzincoid\\nzincous\\nzincs\\nzincy\\nzing\\nzingani\\nzingano\\nzingara\\nzingare\\nzingari\\nzingaro\\nzinged\\nzingier\\nzingiest\\nzinging\\nzings\\nzingy\\nzinkified\\nzinkifies\\nzinkify\\nzinkifying\\nzinky\\nzinnia\\nzinnias\\nzip\\nzipped\\nzipper\\nzippered\\nzippering\\nzippers\\nzippier\\nzippiest\\nzipping\\nzippy\\nzips\\nziram\\nzirams\\nzircon\\nzirconia\\nzirconias\\nzirconic\\nzirconium\\nzirconiums\\nzircons\\nzither\\nzithern\\nzitherns\\nzithers\\nziti\\nzitis\\nzizith\\nzizzle\\nzizzled\\nzizzles\\nzizzling\\nzloty\\nzlotys\\nzoa\\nzoaria\\nzoarial\\nzoarium\\nzodiac\\nzodiacal\\nzodiacs\\nzoea\\nzoeae\\nzoeal\\nzoeas\\nzoftig\\nzoic\\nzoisite\\nzoisites\\nzombi\\nzombie\\nzombies\\nzombiism\\nzombiisms\\nzombis\\nzonal\\nzonally\\nzonary\\nzonate\\nzonated\\nzonation\\nzonations\\nzone\\nzoned\\nzoneless\\nzoner\\nzoners\\nzones\\nzonetime\\nzonetimes\\nzoning\\nzonked\\nzonula\\nzonulae\\nzonular\\nzonulas\\nzonule\\nzonules\\nzoo\\nzoochore\\nzoochores\\nzoogenic\\nzooglea\\nzoogleae\\nzoogleal\\nzoogleas\\nzoogloea\\nzoogloeae\\nzoogloeas\\nzooid\\nzooidal\\nzooids\\nzooks\\nzoolater\\nzoolaters\\nzoolatries\\nzoolatry\\nzoologic\\nzoological\\nzoologies\\nzoologist\\nzoologists\\nzoology\\nzoom\\nzoomania\\nzoomanias\\nzoomed\\nzoometries\\nzoometry\\nzooming\\nzoomorph\\nzoomorphs\\nzooms\\nzoon\\nzoonal\\nzoonoses\\nzoonosis\\nzoonotic\\nzoons\\nzoophile\\nzoophiles\\nzoophyte\\nzoophytes\\nzoos\\nzoosperm\\nzoosperms\\nzoospore\\nzoospores\\nzootomic\\nzootomies\\nzootomy\\nzori\\nzoril\\nzorilla\\nzorillas\\nzorille\\nzorilles\\nzorillo\\nzorillos\\nzorils\\nzoster\\nzosters\\nzouave\\nzouaves\\nzounds\\nzowie\\nzoysia\\nzoysias\\nzucchini\\nzucchinis\\nzwieback\\nzwiebacks\\nzygoma\\nzygomas\\nzygomata\\nzygose\\nzygoses\\nzygosis\\nzygosities\\nzygosity\\nzygote\\nzygotene\\nzygotenes\\nzygotes\\nzygotic\\nzymase\\nzymases\\nzyme\\nzymes\\nzymogen\\nzymogene\\nzymogenes\\nzymogens\\nzymologies\\nzymology\\nzymoses\\nzymosis\\nzymotic\\nzymurgies\\nzymurgy\\n'" ] }, - "execution_count": 86, + "execution_count": 65, "metadata": {}, "output_type": "execute_result" } @@ -2978,7 +2978,7 @@ }, { "cell_type": "code", - "execution_count": 88, + "execution_count": 66, "id": "4e35f7ce", "metadata": {}, "outputs": [ @@ -3988,7 +3988,7 @@ " ...]" ] }, - "execution_count": 88, + "execution_count": 66, "metadata": {}, "output_type": "execute_result" } @@ -4010,7 +4010,7 @@ }, { "cell_type": "code", - "execution_count": 89, + "execution_count": 67, "id": "a778a62a", "metadata": {}, "outputs": [ @@ -4020,7 +4020,7 @@ "True" ] }, - "execution_count": 89, + "execution_count": 67, "metadata": {}, "output_type": "execute_result" } @@ -4039,7 +4039,7 @@ }, { "cell_type": "code", - "execution_count": 90, + "execution_count": 68, "id": "63341c0e", "metadata": {}, "outputs": [ @@ -4049,7 +4049,7 @@ "False" ] }, - "execution_count": 90, + "execution_count": 68, "metadata": {}, "output_type": "execute_result" } @@ -4081,7 +4081,7 @@ }, { "cell_type": "code", - "execution_count": 91, + "execution_count": 69, "id": "88872f14", "metadata": {}, "outputs": [ @@ -4091,7 +4091,7 @@ "'plumage'" ] }, - "execution_count": 91, + "execution_count": 69, "metadata": {}, "output_type": "execute_result" } @@ -4112,7 +4112,7 @@ }, { "cell_type": "code", - "execution_count": 94, + "execution_count": 70, "id": "e28e7135", "metadata": {}, "outputs": [], @@ -4132,7 +4132,7 @@ }, { "cell_type": "code", - "execution_count": 95, + "execution_count": 71, "id": "97cf0c61", "metadata": { "tags": [] @@ -4211,7 +4211,7 @@ }, { "cell_type": "code", - "execution_count": 96, + "execution_count": 72, "id": "a4e34564", "metadata": { "tags": [] @@ -4293,7 +4293,7 @@ }, { "cell_type": "code", - "execution_count": 71, + "execution_count": null, "id": "9c5916ed", "metadata": { "tags": [] @@ -4312,17 +4312,52 @@ " >>> is_anagram('skate', 'stop')\n", " False\n", " \"\"\"\n", + "\n", + "\n", " return None" ] }, { "cell_type": "code", - "execution_count": 72, + "execution_count": 92, "id": "5885cbd3", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def is_anagram(word1, word2):\n", + " \"\"\"Checks whether two words are anagrams.\n", + " \n", + " >>> is_anagram('tops', 'stop')\n", + " True\n", + " >>> is_anagram('skate', 'takes')\n", + " True\n", + " >>> is_anagram('tops', 'takes')\n", + " False\n", + " >>> is_anagram('skate', 'stop')\n", + " False\n", + " \"\"\"\n", + " answer_word1 = []\n", + " answer_word2 = []\n", + "\n", + " for letter in word1:\n", + " answer_word1.append(letter)\n", + " for letter in word2:\n", + " answer_word2.append(letter)\n", + "\n", + " answer_word1.sort()\n", + " #print(answer_word1)\n", + " answer_word2.sort()\n", + " # print(answer_word2)\n", + "\n", + " if answer_word1 == answer_word2:\n", + " return True\n", + " else:\n", + " return False\n", + "\n", + " return None\n", + "\n", + "# is_anagram('exe', 'xee')" ] }, { @@ -4337,7 +4372,7 @@ }, { "cell_type": "code", - "execution_count": 73, + "execution_count": 93, "id": "ce7a96ec", "metadata": { "tags": [] From 5c99046e1bee8fb764f69e703a2522179ca19220 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Wed, 7 Jan 2026 19:31:37 +0000 Subject: [PATCH 20/56] Solution for checking word_list with anagram target --- chapters/chap09.ipynb | 41 ++++++++++++++++++++++++++++++----------- 1 file changed, 30 insertions(+), 11 deletions(-) diff --git a/chapters/chap09.ipynb b/chapters/chap09.ipynb index c7f08eff..9ac12339 100644 --- a/chapters/chap09.ipynb +++ b/chapters/chap09.ipynb @@ -4257,14 +4257,6 @@ "If you still see features we you haven't learned, you can follow up with \"Can you write that using only basic Python features?\"" ] }, - { - "cell_type": "markdown", - "id": "74bfa8b1", - "metadata": {}, - "source": [ - "## BOOKMARK" - ] - }, { "cell_type": "markdown", "id": "31d5b304", @@ -4395,14 +4387,41 @@ "Using your function and the word list, find all the anagrams of `takes`." ] }, + { + "cell_type": "markdown", + "id": "74bfa8b1", + "metadata": {}, + "source": [ + "## BOOKMARK" + ] + }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 97, "id": "75e17c7b", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "skate is an anagram of takes\n", + "stake is an anagram of takes\n", + "steak is an anagram of takes\n", + "takes is an anagram of takes\n", + "teaks is an anagram of takes\n" + ] + } + ], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "\n", + "word_list\n", + "target = 'takes'\n", + "for word in word_list:\n", + "\n", + " if is_anagram(word, target):\n", + " print(word, ' is an anagram of ', target)" ] }, { From 85a64593e693a60e6f13af03fa878b05460c6723 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Tue, 13 Jan 2026 10:25:15 +0000 Subject: [PATCH 21/56] Solution for is_palindrome exercise --- chapters/chap09.ipynb | 358 +++++++++++++++++++++++++----------------- 1 file changed, 212 insertions(+), 146 deletions(-) diff --git a/chapters/chap09.ipynb b/chapters/chap09.ipynb index 9ac12339..334906c4 100644 --- a/chapters/chap09.ipynb +++ b/chapters/chap09.ipynb @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 1, "id": "bde1c3f9", "metadata": { "tags": [] @@ -66,7 +66,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 2, "id": "a16a119b", "metadata": {}, "outputs": [ @@ -76,7 +76,7 @@ "[42, 123]" ] }, - "execution_count": 3, + "execution_count": 2, "metadata": {}, "output_type": "execute_result" } @@ -96,7 +96,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 3, "id": "ac7a4a0b", "metadata": {}, "outputs": [ @@ -106,7 +106,7 @@ "['Cheddar', 'Edam', 'Gouda']" ] }, - "execution_count": 4, + "execution_count": 3, "metadata": {}, "output_type": "execute_result" } @@ -127,7 +127,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 4, "id": "18fb0e21", "metadata": {}, "outputs": [ @@ -137,7 +137,7 @@ "['spam', 2.0, 5, [10, 20]]" ] }, - "execution_count": 5, + "execution_count": 4, "metadata": {}, "output_type": "execute_result" } @@ -160,7 +160,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 5, "id": "0ff58916", "metadata": {}, "outputs": [ @@ -170,7 +170,7 @@ "[]" ] }, - "execution_count": 6, + "execution_count": 5, "metadata": {}, "output_type": "execute_result" } @@ -190,7 +190,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 6, "id": "f3153f36", "metadata": {}, "outputs": [ @@ -200,7 +200,7 @@ "3" ] }, - "execution_count": 7, + "execution_count": 6, "metadata": {}, "output_type": "execute_result" } @@ -219,7 +219,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 7, "id": "58727d35", "metadata": { "tags": [] @@ -231,7 +231,7 @@ "0" ] }, - "execution_count": 8, + "execution_count": 7, "metadata": {}, "output_type": "execute_result" } @@ -250,7 +250,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 8, "id": "25582cad", "metadata": { "tags": [] @@ -271,7 +271,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 9, "id": "925c7d67", "metadata": { "tags": [] @@ -322,7 +322,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 10, "id": "9deb85a3", "metadata": {}, "outputs": [ @@ -332,7 +332,7 @@ "'Cheddar'" ] }, - "execution_count": 11, + "execution_count": 10, "metadata": {}, "output_type": "execute_result" } @@ -353,7 +353,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 11, "id": "98ec5d9c", "metadata": {}, "outputs": [ @@ -363,7 +363,7 @@ "[42, 17]" ] }, - "execution_count": 12, + "execution_count": 11, "metadata": {}, "output_type": "execute_result" } @@ -395,7 +395,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 12, "id": "000aed26", "metadata": {}, "outputs": [ @@ -405,7 +405,7 @@ "True" ] }, - "execution_count": 13, + "execution_count": 12, "metadata": {}, "output_type": "execute_result" } @@ -416,7 +416,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 13, "id": "bcb8929c", "metadata": {}, "outputs": [ @@ -426,7 +426,7 @@ "False" ] }, - "execution_count": 14, + "execution_count": 13, "metadata": {}, "output_type": "execute_result" } @@ -445,7 +445,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 14, "id": "5ad51a26", "metadata": {}, "outputs": [ @@ -455,7 +455,7 @@ "4" ] }, - "execution_count": 15, + "execution_count": 14, "metadata": {}, "output_type": "execute_result" } @@ -475,7 +475,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 15, "id": "156dbc10", "metadata": {}, "outputs": [ @@ -485,7 +485,7 @@ "False" ] }, - "execution_count": 16, + "execution_count": 15, "metadata": {}, "output_type": "execute_result" } @@ -507,7 +507,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 16, "id": "70b16371", "metadata": {}, "outputs": [ @@ -517,7 +517,7 @@ "['c', 'd']" ] }, - "execution_count": 17, + "execution_count": 16, "metadata": {}, "output_type": "execute_result" } @@ -537,7 +537,7 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 17, "id": "e67bab33", "metadata": {}, "outputs": [ @@ -547,7 +547,7 @@ "['a']" ] }, - "execution_count": 18, + "execution_count": 17, "metadata": {}, "output_type": "execute_result" } @@ -566,7 +566,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 18, "id": "a310f506", "metadata": {}, "outputs": [ @@ -576,7 +576,7 @@ "['d']" ] }, - "execution_count": 19, + "execution_count": 18, "metadata": {}, "output_type": "execute_result" } @@ -595,7 +595,7 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 19, "id": "1385a75e", "metadata": {}, "outputs": [ @@ -605,7 +605,7 @@ "['a', 'b', 'c', 'd']" ] }, - "execution_count": 20, + "execution_count": 19, "metadata": {}, "output_type": "execute_result" } @@ -624,7 +624,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 20, "id": "a0ca0135", "metadata": {}, "outputs": [ @@ -634,7 +634,7 @@ "['a', 'b', 'c', 'd']" ] }, - "execution_count": 21, + "execution_count": 20, "metadata": {}, "output_type": "execute_result" } @@ -663,7 +663,7 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 21, "id": "66804de0", "metadata": {}, "outputs": [ @@ -673,7 +673,7 @@ "[3, 40, 10, 2]" ] }, - "execution_count": 22, + "execution_count": 21, "metadata": {}, "output_type": "execute_result" } @@ -694,7 +694,7 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 22, "id": "96620f93", "metadata": {}, "outputs": [ @@ -704,7 +704,7 @@ "['spam', 'spam', 'spam', 'spam']" ] }, - "execution_count": 23, + "execution_count": 22, "metadata": {}, "output_type": "execute_result" } @@ -723,7 +723,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 23, "id": "0808ed08", "metadata": {}, "outputs": [ @@ -733,7 +733,7 @@ "12" ] }, - "execution_count": 24, + "execution_count": 23, "metadata": {}, "output_type": "execute_result" } @@ -752,7 +752,7 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 24, "id": "7ed7e53d", "metadata": {}, "outputs": [ @@ -762,7 +762,7 @@ "2" ] }, - "execution_count": 25, + "execution_count": 24, "metadata": {}, "output_type": "execute_result" } @@ -773,7 +773,7 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 25, "id": "dda02e4e", "metadata": {}, "outputs": [ @@ -783,7 +783,7 @@ "40" ] }, - "execution_count": 26, + "execution_count": 25, "metadata": {}, "output_type": "execute_result" } @@ -805,7 +805,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 26, "id": "bcf04ef9", "metadata": {}, "outputs": [ @@ -815,7 +815,7 @@ "['a', 'b', 'c', 'd', 'e']" ] }, - "execution_count": 27, + "execution_count": 26, "metadata": {}, "output_type": "execute_result" } @@ -835,7 +835,7 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 27, "id": "be55916d", "metadata": {}, "outputs": [ @@ -845,7 +845,7 @@ "['a', 'b', 'c', 'd', 'e', 'f', 'g']" ] }, - "execution_count": 28, + "execution_count": 27, "metadata": {}, "output_type": "execute_result" } @@ -857,7 +857,7 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 28, "id": "f2065b2a", "metadata": {}, "outputs": [ @@ -867,7 +867,7 @@ "['a', 'b', 'c', 'd', 'f', 'g']" ] }, - "execution_count": 29, + "execution_count": 28, "metadata": {}, "output_type": "execute_result" } @@ -888,7 +888,7 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 29, "id": "b22da905", "metadata": {}, "outputs": [ @@ -898,7 +898,7 @@ "'b'" ] }, - "execution_count": 30, + "execution_count": 29, "metadata": {}, "output_type": "execute_result" } @@ -919,7 +919,7 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 30, "id": "01bdff91", "metadata": {}, "outputs": [ @@ -929,7 +929,7 @@ "['a', 'c']" ] }, - "execution_count": 31, + "execution_count": 30, "metadata": {}, "output_type": "execute_result" } @@ -948,7 +948,7 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 31, "id": "babe366e", "metadata": {}, "outputs": [], @@ -968,7 +968,7 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 32, "id": "f80f5b1d", "metadata": {}, "outputs": [ @@ -978,7 +978,7 @@ "['a', 'c']" ] }, - "execution_count": 33, + "execution_count": 32, "metadata": {}, "output_type": "execute_result" } @@ -997,7 +997,7 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 33, "id": "861f8e7e", "metadata": { "tags": [] @@ -1032,7 +1032,7 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 34, "id": "1b50bc13", "metadata": {}, "outputs": [ @@ -1042,7 +1042,7 @@ "['s', 'p', 'a', 'm']" ] }, - "execution_count": 35, + "execution_count": 34, "metadata": {}, "output_type": "execute_result" } @@ -1064,7 +1064,7 @@ }, { "cell_type": "code", - "execution_count": 36, + "execution_count": 35, "id": "c28e5127", "metadata": {}, "outputs": [ @@ -1074,7 +1074,7 @@ "['pining', 'for', 'the', 'fjords']" ] }, - "execution_count": 36, + "execution_count": 35, "metadata": {}, "output_type": "execute_result" } @@ -1095,7 +1095,7 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 36, "id": "ec6ea206", "metadata": {}, "outputs": [ @@ -1105,7 +1105,7 @@ "['ex', 'parrot']" ] }, - "execution_count": 37, + "execution_count": 36, "metadata": {}, "output_type": "execute_result" } @@ -1127,7 +1127,7 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 37, "id": "75c74d3c", "metadata": {}, "outputs": [ @@ -1137,7 +1137,7 @@ "'pining for the fjords'" ] }, - "execution_count": 38, + "execution_count": 37, "metadata": {}, "output_type": "execute_result" } @@ -1171,7 +1171,7 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 38, "id": "a5df1e10", "metadata": {}, "outputs": [ @@ -1200,7 +1200,7 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 39, "id": "76b2c2e3", "metadata": {}, "outputs": [ @@ -1232,7 +1232,7 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 40, "id": "7e844887", "metadata": {}, "outputs": [], @@ -1253,7 +1253,7 @@ }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 41, "id": "9db54d53", "metadata": {}, "outputs": [ @@ -1263,7 +1263,7 @@ "['a', 'b', 'c']" ] }, - "execution_count": 42, + "execution_count": 41, "metadata": {}, "output_type": "execute_result" } @@ -1283,7 +1283,7 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 42, "id": "33d11287", "metadata": {}, "outputs": [ @@ -1293,7 +1293,7 @@ "['c', 'a', 'b']" ] }, - "execution_count": 43, + "execution_count": 42, "metadata": {}, "output_type": "execute_result" } @@ -1312,7 +1312,7 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 43, "id": "38c7cb0c", "metadata": {}, "outputs": [ @@ -1322,7 +1322,7 @@ "['e', 'e', 'l', 'r', 's', 't', 't']" ] }, - "execution_count": 44, + "execution_count": 43, "metadata": {}, "output_type": "execute_result" } @@ -1342,7 +1342,7 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 44, "id": "2adb2fc3", "metadata": {}, "outputs": [ @@ -1352,7 +1352,7 @@ "'eelrstt'" ] }, - "execution_count": 45, + "execution_count": 44, "metadata": {}, "output_type": "execute_result" } @@ -1381,7 +1381,7 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 45, "id": "aa547282", "metadata": {}, "outputs": [], @@ -1401,7 +1401,7 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 46, "id": "95a2aded", "metadata": { "tags": [] @@ -1423,7 +1423,7 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": 47, "id": "3d75a28c", "metadata": { "tags": [] @@ -1459,7 +1459,7 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 48, "id": "a37e37bf", "metadata": {}, "outputs": [ @@ -1469,7 +1469,7 @@ "True" ] }, - "execution_count": 49, + "execution_count": 48, "metadata": {}, "output_type": "execute_result" } @@ -1492,7 +1492,7 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 49, "id": "d6af7316", "metadata": {}, "outputs": [ @@ -1502,7 +1502,7 @@ "False" ] }, - "execution_count": 50, + "execution_count": 49, "metadata": {}, "output_type": "execute_result" } @@ -1523,7 +1523,7 @@ }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 50, "id": "dea08b82", "metadata": { "tags": [] @@ -1538,7 +1538,7 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 51, "id": "7e66ee69", "metadata": { "tags": [] @@ -1583,7 +1583,7 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": 52, "id": "d6a7eb5b", "metadata": {}, "outputs": [ @@ -1593,7 +1593,7 @@ "True" ] }, - "execution_count": 53, + "execution_count": 52, "metadata": {}, "output_type": "execute_result" } @@ -1614,7 +1614,7 @@ }, { "cell_type": "code", - "execution_count": 54, + "execution_count": 53, "id": "dd406791", "metadata": { "tags": [] @@ -1629,7 +1629,7 @@ }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 54, "id": "552e1e1e", "metadata": { "tags": [] @@ -1668,7 +1668,7 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 55, "id": "6e3c1b24", "metadata": {}, "outputs": [ @@ -1678,7 +1678,7 @@ "[5, 2, 3]" ] }, - "execution_count": 56, + "execution_count": 55, "metadata": {}, "output_type": "execute_result" } @@ -1703,7 +1703,7 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": 56, "id": "dad8a246", "metadata": {}, "outputs": [], @@ -1735,7 +1735,7 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 57, "id": "613b1845", "metadata": {}, "outputs": [], @@ -1754,7 +1754,7 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 58, "id": "3aff3598", "metadata": {}, "outputs": [ @@ -1764,7 +1764,7 @@ "'a'" ] }, - "execution_count": 59, + "execution_count": 58, "metadata": {}, "output_type": "execute_result" } @@ -1784,7 +1784,7 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 59, "id": "c10e4dcc", "metadata": {}, "outputs": [ @@ -1794,7 +1794,7 @@ "['b', 'c']" ] }, - "execution_count": 60, + "execution_count": 59, "metadata": {}, "output_type": "execute_result" } @@ -1813,7 +1813,7 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 60, "id": "a13e72c7", "metadata": { "tags": [] @@ -1832,7 +1832,7 @@ }, { "cell_type": "code", - "execution_count": 62, + "execution_count": 61, "id": "1a06dae9", "metadata": { "tags": [] @@ -1844,7 +1844,7 @@ "[np.float64(2.05), np.float64(1.22), np.float64(1.06), np.float64(0.85)]" ] }, - "execution_count": 62, + "execution_count": 61, "metadata": {}, "output_type": "execute_result" }, @@ -1894,7 +1894,7 @@ }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 62, "id": "6550f0b8", "metadata": { "tags": [] @@ -1906,7 +1906,7 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 63, "id": "e5a94833", "metadata": {}, "outputs": [ @@ -2916,7 +2916,7 @@ " ...]" ] }, - "execution_count": 64, + "execution_count": 63, "metadata": {}, "output_type": "execute_result" } @@ -2946,7 +2946,7 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 64, "id": "32e28204", "metadata": {}, "outputs": [ @@ -2956,7 +2956,7 @@ "'aa\\naah\\naahed\\naahing\\naahs\\naal\\naalii\\naaliis\\naals\\naardvark\\naardvarks\\naardwolf\\naardwolves\\naas\\naasvogel\\naasvogels\\naba\\nabaca\\nabacas\\nabaci\\naback\\nabacus\\nabacuses\\nabaft\\nabaka\\nabakas\\nabalone\\nabalones\\nabamp\\nabampere\\nabamperes\\nabamps\\nabandon\\nabandoned\\nabandoning\\nabandonment\\nabandonments\\nabandons\\nabas\\nabase\\nabased\\nabasedly\\nabasement\\nabasements\\nabaser\\nabasers\\nabases\\nabash\\nabashed\\nabashes\\nabashing\\nabasing\\nabatable\\nabate\\nabated\\nabatement\\nabatements\\nabater\\nabaters\\nabates\\nabating\\nabatis\\nabatises\\nabator\\nabators\\nabattis\\nabattises\\nabattoir\\nabattoirs\\nabaxial\\nabaxile\\nabbacies\\nabbacy\\nabbatial\\nabbe\\nabbes\\nabbess\\nabbesses\\nabbey\\nabbeys\\nabbot\\nabbotcies\\nabbotcy\\nabbots\\nabbreviate\\nabbreviated\\nabbreviates\\nabbreviating\\nabbreviation\\nabbreviations\\nabdicate\\nabdicated\\nabdicates\\nabdicating\\nabdication\\nabdications\\nabdomen\\nabdomens\\nabdomina\\nabdominal\\nabdominally\\nabduce\\nabduced\\nabducens\\nabducent\\nabducentes\\nabduces\\nabducing\\nabduct\\nabducted\\nabducting\\nabductor\\nabductores\\nabductors\\nabducts\\nabeam\\nabed\\nabele\\nabeles\\nabelmosk\\nabelmosks\\naberrant\\naberrants\\naberration\\naberrations\\nabet\\nabetment\\nabetments\\nabets\\nabettal\\nabettals\\nabetted\\nabetter\\nabetters\\nabetting\\nabettor\\nabettors\\nabeyance\\nabeyances\\nabeyancies\\nabeyancy\\nabeyant\\nabfarad\\nabfarads\\nabhenries\\nabhenry\\nabhenrys\\nabhor\\nabhorred\\nabhorrence\\nabhorrences\\nabhorrent\\nabhorrer\\nabhorrers\\nabhorring\\nabhors\\nabidance\\nabidances\\nabide\\nabided\\nabider\\nabiders\\nabides\\nabiding\\nabied\\nabies\\nabigail\\nabigails\\nabilities\\nability\\nabioses\\nabiosis\\nabiotic\\nabject\\nabjectly\\nabjectness\\nabjectnesses\\nabjuration\\nabjurations\\nabjure\\nabjured\\nabjurer\\nabjurers\\nabjures\\nabjuring\\nablate\\nablated\\nablates\\nablating\\nablation\\nablations\\nablative\\nablatives\\nablaut\\nablauts\\nablaze\\nable\\nablegate\\nablegates\\nabler\\nables\\nablest\\nablings\\nablins\\nabloom\\nabluent\\nabluents\\nablush\\nabluted\\nablution\\nablutions\\nably\\nabmho\\nabmhos\\nabnegate\\nabnegated\\nabnegates\\nabnegating\\nabnegation\\nabnegations\\nabnormal\\nabnormalities\\nabnormality\\nabnormally\\nabnormals\\nabo\\naboard\\nabode\\naboded\\nabodes\\naboding\\nabohm\\nabohms\\naboideau\\naboideaus\\naboideaux\\naboil\\naboiteau\\naboiteaus\\naboiteaux\\nabolish\\nabolished\\nabolishes\\nabolishing\\nabolition\\nabolitions\\nabolla\\nabollae\\naboma\\nabomas\\nabomasa\\nabomasal\\nabomasi\\nabomasum\\nabomasus\\nabominable\\nabominate\\nabominated\\nabominates\\nabominating\\nabomination\\nabominations\\naboon\\naboral\\naborally\\naboriginal\\naborigine\\naborigines\\naborning\\nabort\\naborted\\naborter\\naborters\\naborting\\nabortion\\nabortions\\nabortive\\naborts\\nabos\\nabought\\naboulia\\naboulias\\naboulic\\nabound\\nabounded\\nabounding\\nabounds\\nabout\\nabove\\naboveboard\\naboves\\nabracadabra\\nabradant\\nabradants\\nabrade\\nabraded\\nabrader\\nabraders\\nabrades\\nabrading\\nabrasion\\nabrasions\\nabrasive\\nabrasively\\nabrasiveness\\nabrasivenesses\\nabrasives\\nabreact\\nabreacted\\nabreacting\\nabreacts\\nabreast\\nabri\\nabridge\\nabridged\\nabridgement\\nabridgements\\nabridger\\nabridgers\\nabridges\\nabridging\\nabridgment\\nabridgments\\nabris\\nabroach\\nabroad\\nabrogate\\nabrogated\\nabrogates\\nabrogating\\nabrupt\\nabrupter\\nabruptest\\nabruptly\\nabscess\\nabscessed\\nabscesses\\nabscessing\\nabscise\\nabscised\\nabscises\\nabscisin\\nabscising\\nabscisins\\nabscissa\\nabscissae\\nabscissas\\nabscond\\nabsconded\\nabsconding\\nabsconds\\nabsence\\nabsences\\nabsent\\nabsented\\nabsentee\\nabsentees\\nabsenter\\nabsenters\\nabsenting\\nabsently\\nabsentminded\\nabsentmindedly\\nabsentmindedness\\nabsentmindednesses\\nabsents\\nabsinth\\nabsinthe\\nabsinthes\\nabsinths\\nabsolute\\nabsolutely\\nabsoluter\\nabsolutes\\nabsolutest\\nabsolution\\nabsolutions\\nabsolve\\nabsolved\\nabsolver\\nabsolvers\\nabsolves\\nabsolving\\nabsonant\\nabsorb\\nabsorbed\\nabsorbencies\\nabsorbency\\nabsorbent\\nabsorber\\nabsorbers\\nabsorbing\\nabsorbingly\\nabsorbs\\nabsorption\\nabsorptions\\nabsorptive\\nabstain\\nabstained\\nabstainer\\nabstainers\\nabstaining\\nabstains\\nabstemious\\nabstemiously\\nabstention\\nabstentions\\nabsterge\\nabsterged\\nabsterges\\nabsterging\\nabstinence\\nabstinences\\nabstract\\nabstracted\\nabstracter\\nabstractest\\nabstracting\\nabstraction\\nabstractions\\nabstractly\\nabstractness\\nabstractnesses\\nabstracts\\nabstrict\\nabstricted\\nabstricting\\nabstricts\\nabstruse\\nabstrusely\\nabstruseness\\nabstrusenesses\\nabstruser\\nabstrusest\\nabsurd\\nabsurder\\nabsurdest\\nabsurdities\\nabsurdity\\nabsurdly\\nabsurds\\nabubble\\nabulia\\nabulias\\nabulic\\nabundance\\nabundances\\nabundant\\nabundantly\\nabusable\\nabuse\\nabused\\nabuser\\nabusers\\nabuses\\nabusing\\nabusive\\nabusively\\nabusiveness\\nabusivenesses\\nabut\\nabutilon\\nabutilons\\nabutment\\nabutments\\nabuts\\nabuttal\\nabuttals\\nabutted\\nabutter\\nabutters\\nabutting\\nabuzz\\nabvolt\\nabvolts\\nabwatt\\nabwatts\\naby\\nabye\\nabyed\\nabyes\\nabying\\nabys\\nabysm\\nabysmal\\nabysmally\\nabysms\\nabyss\\nabyssal\\nabysses\\nacacia\\nacacias\\nacademe\\nacademes\\nacademia\\nacademias\\nacademic\\nacademically\\nacademics\\nacademies\\nacademy\\nacajou\\nacajous\\nacaleph\\nacalephae\\nacalephe\\nacalephes\\nacalephs\\nacanthi\\nacanthus\\nacanthuses\\nacari\\nacarid\\nacaridan\\nacaridans\\nacarids\\nacarine\\nacarines\\nacaroid\\nacarpous\\nacarus\\nacaudal\\nacaudate\\nacauline\\nacaulose\\nacaulous\\naccede\\nacceded\\nacceder\\nacceders\\naccedes\\nacceding\\naccelerate\\naccelerated\\naccelerates\\naccelerating\\nacceleration\\naccelerations\\naccelerator\\naccelerators\\naccent\\naccented\\naccenting\\naccentor\\naccentors\\naccents\\naccentual\\naccentuate\\naccentuated\\naccentuates\\naccentuating\\naccentuation\\naccentuations\\naccept\\nacceptabilities\\nacceptability\\nacceptable\\nacceptance\\nacceptances\\naccepted\\nacceptee\\nacceptees\\naccepter\\naccepters\\naccepting\\nacceptor\\nacceptors\\naccepts\\naccess\\naccessed\\naccesses\\naccessibilities\\naccessibility\\naccessible\\naccessing\\naccession\\naccessions\\naccessories\\naccessory\\naccident\\naccidental\\naccidentally\\naccidentals\\naccidents\\naccidie\\naccidies\\nacclaim\\nacclaimed\\nacclaiming\\nacclaims\\nacclamation\\nacclamations\\nacclimate\\nacclimated\\nacclimates\\nacclimating\\nacclimation\\nacclimations\\nacclimatization\\nacclimatizations\\nacclimatize\\nacclimatizes\\naccolade\\naccolades\\naccommodate\\naccommodated\\naccommodates\\naccommodating\\naccommodation\\naccommodations\\naccompanied\\naccompanies\\naccompaniment\\naccompaniments\\naccompanist\\naccompany\\naccompanying\\naccomplice\\naccomplices\\naccomplish\\naccomplished\\naccomplisher\\naccomplishers\\naccomplishes\\naccomplishing\\naccomplishment\\naccomplishments\\naccord\\naccordance\\naccordant\\naccorded\\naccorder\\naccorders\\naccording\\naccordingly\\naccordion\\naccordions\\naccords\\naccost\\naccosted\\naccosting\\naccosts\\naccount\\naccountabilities\\naccountability\\naccountable\\naccountancies\\naccountancy\\naccountant\\naccountants\\naccounted\\naccounting\\naccountings\\naccounts\\naccouter\\naccoutered\\naccoutering\\naccouters\\naccoutre\\naccoutred\\naccoutrement\\naccoutrements\\naccoutres\\naccoutring\\naccredit\\naccredited\\naccrediting\\naccredits\\naccrete\\naccreted\\naccretes\\naccreting\\naccrual\\naccruals\\naccrue\\naccrued\\naccrues\\naccruing\\naccumulate\\naccumulated\\naccumulates\\naccumulating\\naccumulation\\naccumulations\\naccumulator\\naccumulators\\naccuracies\\naccuracy\\naccurate\\naccurately\\naccurateness\\naccuratenesses\\naccursed\\naccurst\\naccusal\\naccusals\\naccusant\\naccusants\\naccusation\\naccusations\\naccuse\\naccused\\naccuser\\naccusers\\naccuses\\naccusing\\naccustom\\naccustomed\\naccustoming\\naccustoms\\nace\\naced\\nacedia\\nacedias\\naceldama\\naceldamas\\nacentric\\nacequia\\nacequias\\nacerate\\nacerated\\nacerb\\nacerbate\\nacerbated\\nacerbates\\nacerbating\\nacerber\\nacerbest\\nacerbic\\nacerbities\\nacerbity\\nacerola\\nacerolas\\nacerose\\nacerous\\nacers\\nacervate\\nacervuli\\naces\\nacescent\\nacescents\\naceta\\nacetal\\nacetals\\nacetamid\\nacetamids\\nacetate\\nacetated\\nacetates\\nacetic\\nacetified\\nacetifies\\nacetify\\nacetifying\\nacetone\\nacetones\\nacetonic\\nacetose\\nacetous\\nacetoxyl\\nacetoxyls\\nacetum\\nacetyl\\nacetylene\\nacetylenes\\nacetylic\\nacetyls\\nache\\nached\\nachene\\nachenes\\nachenial\\naches\\nachier\\nachiest\\nachievable\\nachieve\\nachieved\\nachievement\\nachievements\\nachiever\\nachievers\\nachieves\\nachieving\\nachiness\\nachinesses\\naching\\nachingly\\nachiote\\nachiotes\\nachoo\\nachromat\\nachromats\\nachromic\\nachy\\nacicula\\naciculae\\nacicular\\naciculas\\nacid\\nacidhead\\nacidheads\\nacidic\\nacidified\\nacidifies\\nacidify\\nacidifying\\nacidities\\nacidity\\nacidly\\nacidness\\nacidnesses\\nacidoses\\nacidosis\\nacidotic\\nacids\\nacidy\\nacierate\\nacierated\\nacierates\\nacierating\\naciform\\nacinar\\nacing\\nacini\\nacinic\\nacinose\\nacinous\\nacinus\\nacknowledge\\nacknowledged\\nacknowledgement\\nacknowledgements\\nacknowledges\\nacknowledging\\nacknowledgment\\nacknowledgments\\naclinic\\nacmatic\\nacme\\nacmes\\nacmic\\nacne\\nacned\\nacnes\\nacnode\\nacnodes\\nacock\\nacold\\nacolyte\\nacolytes\\naconite\\naconites\\naconitic\\naconitum\\naconitums\\nacorn\\nacorns\\nacoustic\\nacoustical\\nacoustically\\nacoustics\\nacquaint\\nacquaintance\\nacquaintances\\nacquaintanceship\\nacquaintanceships\\nacquainted\\nacquainting\\nacquaints\\nacquest\\nacquests\\nacquiesce\\nacquiesced\\nacquiescence\\nacquiescences\\nacquiescent\\nacquiescently\\nacquiesces\\nacquiescing\\nacquire\\nacquired\\nacquirer\\nacquirers\\nacquires\\nacquiring\\nacquisition\\nacquisitions\\nacquisitive\\nacquit\\nacquits\\nacquitted\\nacquitting\\nacrasin\\nacrasins\\nacre\\nacreage\\nacreages\\nacred\\nacres\\nacrid\\nacrider\\nacridest\\nacridine\\nacridines\\nacridities\\nacridity\\nacridly\\nacridness\\nacridnesses\\nacrimonies\\nacrimonious\\nacrimony\\nacrobat\\nacrobatic\\nacrobats\\nacrodont\\nacrodonts\\nacrogen\\nacrogens\\nacrolein\\nacroleins\\nacrolith\\nacroliths\\nacromia\\nacromial\\nacromion\\nacronic\\nacronym\\nacronyms\\nacross\\nacrostic\\nacrostics\\nacrotic\\nacrotism\\nacrotisms\\nacrylate\\nacrylates\\nacrylic\\nacrylics\\nact\\nacta\\nactable\\nacted\\nactin\\nactinal\\nacting\\nactings\\nactinia\\nactiniae\\nactinian\\nactinians\\nactinias\\nactinic\\nactinide\\nactinides\\nactinism\\nactinisms\\nactinium\\nactiniums\\nactinoid\\nactinoids\\nactinon\\nactinons\\nactins\\naction\\nactions\\nactivate\\nactivated\\nactivates\\nactivating\\nactivation\\nactivations\\nactive\\nactively\\nactives\\nactivism\\nactivisms\\nactivist\\nactivists\\nactivities\\nactivity\\nactor\\nactorish\\nactors\\nactress\\nactresses\\nacts\\nactual\\nactualities\\nactuality\\nactualization\\nactualizations\\nactualize\\nactualized\\nactualizes\\nactualizing\\nactually\\nactuarial\\nactuaries\\nactuary\\nactuate\\nactuated\\nactuates\\nactuating\\nactuator\\nactuators\\nacuate\\nacuities\\nacuity\\naculeate\\nacumen\\nacumens\\nacupuncture\\nacupunctures\\nacupuncturist\\nacupuncturists\\nacutance\\nacutances\\nacute\\nacutely\\nacuteness\\nacutenesses\\nacuter\\nacutes\\nacutest\\nacyclic\\nacyl\\nacylate\\nacylated\\nacylates\\nacylating\\nacyls\\nad\\nadage\\nadages\\nadagial\\nadagio\\nadagios\\nadamance\\nadamances\\nadamancies\\nadamancy\\nadamant\\nadamantlies\\nadamantly\\nadamants\\nadamsite\\nadamsites\\nadapt\\nadaptabilities\\nadaptability\\nadaptable\\nadaptation\\nadaptations\\nadapted\\nadapter\\nadapters\\nadapting\\nadaption\\nadaptions\\nadaptive\\nadaptor\\nadaptors\\nadapts\\nadaxial\\nadd\\naddable\\naddax\\naddaxes\\nadded\\naddedly\\naddend\\naddenda\\naddends\\naddendum\\nadder\\nadders\\naddible\\naddict\\naddicted\\naddicting\\naddiction\\naddictions\\naddictive\\naddicts\\nadding\\naddition\\nadditional\\nadditionally\\nadditions\\nadditive\\nadditives\\naddle\\naddled\\naddles\\naddling\\naddress\\naddressable\\naddressed\\naddresses\\naddressing\\naddrest\\nadds\\nadduce\\nadduced\\nadducent\\nadducer\\nadducers\\nadduces\\nadducing\\nadduct\\nadducted\\nadducting\\nadductor\\nadductors\\nadducts\\nadeem\\nadeemed\\nadeeming\\nadeems\\nadenine\\nadenines\\nadenitis\\nadenitises\\nadenoid\\nadenoidal\\nadenoids\\nadenoma\\nadenomas\\nadenomata\\nadenopathy\\nadenyl\\nadenyls\\nadept\\nadepter\\nadeptest\\nadeptly\\nadeptness\\nadeptnesses\\nadepts\\nadequacies\\nadequacy\\nadequate\\nadequately\\nadhere\\nadhered\\nadherence\\nadherences\\nadherend\\nadherends\\nadherent\\nadherents\\nadherer\\nadherers\\nadheres\\nadhering\\nadhesion\\nadhesions\\nadhesive\\nadhesives\\nadhibit\\nadhibited\\nadhibiting\\nadhibits\\nadieu\\nadieus\\nadieux\\nadios\\nadipic\\nadipose\\nadiposes\\nadiposis\\nadipous\\nadit\\nadits\\nadjacent\\nadjectival\\nadjectivally\\nadjective\\nadjectives\\nadjoin\\nadjoined\\nadjoining\\nadjoins\\nadjoint\\nadjoints\\nadjourn\\nadjourned\\nadjourning\\nadjournment\\nadjournments\\nadjourns\\nadjudge\\nadjudged\\nadjudges\\nadjudging\\nadjudicate\\nadjudicated\\nadjudicates\\nadjudicating\\nadjudication\\nadjudications\\nadjunct\\nadjuncts\\nadjure\\nadjured\\nadjurer\\nadjurers\\nadjures\\nadjuring\\nadjuror\\nadjurors\\nadjust\\nadjustable\\nadjusted\\nadjuster\\nadjusters\\nadjusting\\nadjustment\\nadjustments\\nadjustor\\nadjustors\\nadjusts\\nadjutant\\nadjutants\\nadjuvant\\nadjuvants\\nadman\\nadmass\\nadmen\\nadminister\\nadministers\\nadministrable\\nadministrant\\nadministrants\\nadministration\\nadministrations\\nadministrative\\nadministratively\\nadministrator\\nadministrators\\nadminstration\\nadminstrations\\nadmiral\\nadmirals\\nadmiration\\nadmirations\\nadmire\\nadmired\\nadmirer\\nadmirers\\nadmires\\nadmiring\\nadmiringly\\nadmissibilities\\nadmissibility\\nadmissible\\nadmissibly\\nadmission\\nadmissions\\nadmit\\nadmits\\nadmittance\\nadmittances\\nadmitted\\nadmittedly\\nadmitter\\nadmitters\\nadmitting\\nadmix\\nadmixed\\nadmixes\\nadmixing\\nadmixt\\nadmixture\\nadmixtures\\nadmonish\\nadmonished\\nadmonishes\\nadmonishing\\nadnate\\nadnation\\nadnations\\nadnexa\\nadnexal\\nadnoun\\nadnouns\\nado\\nadobe\\nadobes\\nadolescence\\nadolescences\\nadolescent\\nadolescents\\nadopt\\nadopted\\nadoptee\\nadoptees\\nadopter\\nadopters\\nadopting\\nadoption\\nadoptions\\nadoptive\\nadopts\\nadorable\\nadorably\\nadoration\\nadorations\\nadore\\nadored\\nadorer\\nadorers\\nadores\\nadoring\\nadorn\\nadorned\\nadorner\\nadorners\\nadorning\\nadorns\\nados\\nadown\\nadoze\\nadrenal\\nadrenals\\nadriamycin\\nadrift\\nadroit\\nadroiter\\nadroitest\\nadroitly\\nadroitness\\nadroitnesses\\nads\\nadscript\\nadscripts\\nadsorb\\nadsorbed\\nadsorbing\\nadsorbs\\nadularia\\nadularias\\nadulate\\nadulated\\nadulates\\nadulating\\nadulator\\nadulators\\nadult\\nadulterate\\nadulterated\\nadulterates\\nadulterating\\nadulteration\\nadulterations\\nadulterer\\nadulterers\\nadulteress\\nadulteresses\\nadulteries\\nadulterous\\nadultery\\nadulthood\\nadulthoods\\nadultly\\nadults\\nadumbral\\nadunc\\naduncate\\naduncous\\nadust\\nadvance\\nadvanced\\nadvancement\\nadvancements\\nadvancer\\nadvancers\\nadvances\\nadvancing\\nadvantage\\nadvantageous\\nadvantageously\\nadvantages\\nadvent\\nadventitious\\nadventitiously\\nadventitiousness\\nadventitiousnesses\\nadvents\\nadventure\\nadventurer\\nadventurers\\nadventures\\nadventuresome\\nadventurous\\nadverb\\nadverbially\\nadverbs\\nadversaries\\nadversary\\nadverse\\nadversity\\nadvert\\nadverted\\nadverting\\nadvertise\\nadvertised\\nadvertisement\\nadvertisements\\nadvertiser\\nadvertisers\\nadvertises\\nadvertising\\nadvertisings\\nadverts\\nadvice\\nadvices\\nadvisabilities\\nadvisability\\nadvisable\\nadvise\\nadvised\\nadvisee\\nadvisees\\nadvisement\\nadvisements\\nadviser\\nadvisers\\nadvises\\nadvising\\nadvisor\\nadvisories\\nadvisors\\nadvisory\\nadvocacies\\nadvocacy\\nadvocate\\nadvocated\\nadvocates\\nadvocating\\nadvowson\\nadvowsons\\nadynamia\\nadynamias\\nadynamic\\nadyta\\nadytum\\nadz\\nadze\\nadzes\\nae\\naecia\\naecial\\naecidia\\naecidium\\naecium\\naedes\\naedile\\naediles\\naedine\\naegis\\naegises\\naeneous\\naeneus\\naeolian\\naeon\\naeonian\\naeonic\\naeons\\naerate\\naerated\\naerates\\naerating\\naeration\\naerations\\naerator\\naerators\\naerial\\naerially\\naerials\\naerie\\naerier\\naeries\\naeriest\\naerified\\naerifies\\naeriform\\naerify\\naerifying\\naerily\\naero\\naerobe\\naerobes\\naerobia\\naerobic\\naerobium\\naeroduct\\naeroducts\\naerodynamic\\naerodynamical\\naerodynamically\\naerodynamics\\naerodyne\\naerodynes\\naerofoil\\naerofoils\\naerogel\\naerogels\\naerogram\\naerograms\\naerolite\\naerolites\\naerolith\\naeroliths\\naerologies\\naerology\\naeronaut\\naeronautic\\naeronautical\\naeronautically\\naeronautics\\naeronauts\\naeronomies\\naeronomy\\naerosol\\naerosols\\naerospace\\naerostat\\naerostats\\naerugo\\naerugos\\naery\\naesthete\\naesthetes\\naesthetic\\naesthetically\\naesthetics\\naestival\\naether\\naetheric\\naethers\\nafar\\nafars\\nafeard\\nafeared\\naff\\naffabilities\\naffability\\naffable\\naffably\\naffair\\naffaire\\naffaires\\naffairs\\naffect\\naffectation\\naffectations\\naffected\\naffectedly\\naffecter\\naffecters\\naffecting\\naffectingly\\naffection\\naffectionate\\naffectionately\\naffections\\naffects\\nafferent\\naffiance\\naffianced\\naffiances\\naffiancing\\naffiant\\naffiants\\naffiche\\naffiches\\naffidavit\\naffidavits\\naffiliate\\naffiliated\\naffiliates\\naffiliating\\naffiliation\\naffiliations\\naffine\\naffined\\naffinely\\naffines\\naffinities\\naffinity\\naffirm\\naffirmation\\naffirmations\\naffirmative\\naffirmatively\\naffirmatives\\naffirmed\\naffirmer\\naffirmers\\naffirming\\naffirms\\naffix\\naffixal\\naffixed\\naffixer\\naffixers\\naffixes\\naffixial\\naffixing\\nafflatus\\nafflatuses\\nafflict\\nafflicted\\nafflicting\\naffliction\\nafflictions\\nafflicts\\naffluence\\naffluences\\naffluent\\naffluents\\nafflux\\naffluxes\\nafford\\nafforded\\naffording\\naffords\\nafforest\\nafforested\\nafforesting\\nafforests\\naffray\\naffrayed\\naffrayer\\naffrayers\\naffraying\\naffrays\\naffright\\naffrighted\\naffrighting\\naffrights\\naffront\\naffronted\\naffronting\\naffronts\\naffusion\\naffusions\\nafghan\\nafghani\\nafghanis\\nafghans\\nafield\\nafire\\naflame\\nafloat\\naflutter\\nafoot\\nafore\\nafoul\\nafraid\\nafreet\\nafreets\\nafresh\\nafrit\\nafrits\\naft\\nafter\\nafterlife\\nafterlifes\\naftermath\\naftermaths\\nafternoon\\nafternoons\\nafters\\naftertax\\nafterthought\\nafterthoughts\\nafterward\\nafterwards\\naftmost\\naftosa\\naftosas\\naga\\nagain\\nagainst\\nagalloch\\nagallochs\\nagalwood\\nagalwoods\\nagama\\nagamas\\nagamete\\nagametes\\nagamic\\nagamous\\nagapae\\nagapai\\nagape\\nagapeic\\nagar\\nagaric\\nagarics\\nagars\\nagas\\nagate\\nagates\\nagatize\\nagatized\\nagatizes\\nagatizing\\nagatoid\\nagave\\nagaves\\nagaze\\nage\\naged\\nagedly\\nagedness\\nagednesses\\nagee\\nageing\\nageings\\nageless\\nagelong\\nagencies\\nagency\\nagenda\\nagendas\\nagendum\\nagendums\\nagene\\nagenes\\nageneses\\nagenesia\\nagenesias\\nagenesis\\nagenetic\\nagenize\\nagenized\\nagenizes\\nagenizing\\nagent\\nagential\\nagentries\\nagentry\\nagents\\nager\\nageratum\\nageratums\\nagers\\nages\\nagger\\naggers\\naggie\\naggies\\naggrade\\naggraded\\naggrades\\naggrading\\naggrandize\\naggrandized\\naggrandizement\\naggrandizements\\naggrandizes\\naggrandizing\\naggravate\\naggravates\\naggravation\\naggravations\\naggregate\\naggregated\\naggregates\\naggregating\\naggress\\naggressed\\naggresses\\naggressing\\naggression\\naggressions\\naggressive\\naggressively\\naggressiveness\\naggressivenesses\\naggrieve\\naggrieved\\naggrieves\\naggrieving\\nagha\\naghas\\naghast\\nagile\\nagilely\\nagilities\\nagility\\nagin\\naging\\nagings\\naginner\\naginners\\nagio\\nagios\\nagiotage\\nagiotages\\nagist\\nagisted\\nagisting\\nagists\\nagitable\\nagitate\\nagitated\\nagitates\\nagitating\\nagitation\\nagitations\\nagitato\\nagitator\\nagitators\\nagitprop\\nagitprops\\naglare\\nagleam\\naglee\\naglet\\naglets\\nagley\\naglimmer\\naglitter\\naglow\\nagly\\naglycon\\naglycone\\naglycones\\naglycons\\nagma\\nagmas\\nagminate\\nagnail\\nagnails\\nagnate\\nagnates\\nagnatic\\nagnation\\nagnations\\nagnize\\nagnized\\nagnizes\\nagnizing\\nagnomen\\nagnomens\\nagnomina\\nagnostic\\nagnostics\\nago\\nagog\\nagon\\nagonal\\nagone\\nagones\\nagonic\\nagonies\\nagonise\\nagonised\\nagonises\\nagonising\\nagonist\\nagonists\\nagonize\\nagonized\\nagonizes\\nagonizing\\nagonizingly\\nagons\\nagony\\nagora\\nagorae\\nagoras\\nagorot\\nagoroth\\nagouti\\nagouties\\nagoutis\\nagouty\\nagrafe\\nagrafes\\nagraffe\\nagraffes\\nagrapha\\nagraphia\\nagraphias\\nagraphic\\nagrarian\\nagrarianism\\nagrarianisms\\nagrarians\\nagree\\nagreeable\\nagreeableness\\nagreeablenesses\\nagreed\\nagreeing\\nagreement\\nagreements\\nagrees\\nagrestal\\nagrestic\\nagricultural\\nagriculturalist\\nagriculturalists\\nagriculture\\nagricultures\\nagriculturist\\nagriculturists\\nagrimonies\\nagrimony\\nagrologies\\nagrology\\nagronomies\\nagronomy\\naground\\nague\\naguelike\\nagues\\nagueweed\\nagueweeds\\naguish\\naguishly\\nah\\naha\\nahchoo\\nahead\\nahem\\nahimsa\\nahimsas\\nahold\\naholds\\nahorse\\nahoy\\nahoys\\nahull\\nai\\naiblins\\naid\\naide\\naided\\naider\\naiders\\naides\\naidful\\naiding\\naidless\\naidman\\naidmen\\naids\\naiglet\\naiglets\\naigret\\naigrets\\naigrette\\naigrettes\\naiguille\\naiguilles\\naikido\\naikidos\\nail\\nailed\\naileron\\nailerons\\nailing\\nailment\\nailments\\nails\\naim\\naimed\\naimer\\naimers\\naimful\\naimfully\\naiming\\naimless\\naimlessly\\naimlessness\\naimlessnesses\\naims\\nain\\naine\\nainee\\nains\\nainsell\\nainsells\\nair\\nairboat\\nairboats\\nairborne\\nairbound\\nairbrush\\nairbrushed\\nairbrushes\\nairbrushing\\nairburst\\nairbursts\\nairbus\\nairbuses\\nairbusses\\naircoach\\naircoaches\\naircondition\\nairconditioned\\nairconditioning\\nairconditions\\naircraft\\naircrew\\naircrews\\nairdrome\\nairdromes\\nairdrop\\nairdropped\\nairdropping\\nairdrops\\naired\\nairer\\nairest\\nairfield\\nairfields\\nairflow\\nairflows\\nairfoil\\nairfoils\\nairframe\\nairframes\\nairglow\\nairglows\\nairhead\\nairheads\\nairier\\nairiest\\nairily\\nairiness\\nairinesses\\nairing\\nairings\\nairless\\nairlift\\nairlifted\\nairlifting\\nairlifts\\nairlike\\nairline\\nairliner\\nairliners\\nairlines\\nairmail\\nairmailed\\nairmailing\\nairmails\\nairman\\nairmen\\nairn\\nairns\\nairpark\\nairparks\\nairplane\\nairplanes\\nairport\\nairports\\nairpost\\nairposts\\nairproof\\nairproofed\\nairproofing\\nairproofs\\nairs\\nairscrew\\nairscrews\\nairship\\nairships\\nairsick\\nairspace\\nairspaces\\nairspeed\\nairspeeds\\nairstrip\\nairstrips\\nairt\\nairted\\nairth\\nairthed\\nairthing\\nairths\\nairtight\\nairting\\nairts\\nairward\\nairwave\\nairwaves\\nairway\\nairways\\nairwise\\nairwoman\\nairwomen\\nairy\\nais\\naisle\\naisled\\naisles\\nait\\naitch\\naitches\\naits\\naiver\\naivers\\najar\\najee\\najiva\\najivas\\najowan\\najowans\\nakee\\nakees\\nakela\\nakelas\\nakene\\nakenes\\nakimbo\\nakin\\nakvavit\\nakvavits\\nala\\nalabaster\\nalabasters\\nalack\\nalacrities\\nalacrity\\nalae\\nalameda\\nalamedas\\nalamo\\nalamode\\nalamodes\\nalamos\\nalan\\naland\\nalands\\nalane\\nalang\\nalanin\\nalanine\\nalanines\\nalanins\\nalans\\nalant\\nalants\\nalanyl\\nalanyls\\nalar\\nalarm\\nalarmed\\nalarming\\nalarmism\\nalarmisms\\nalarmist\\nalarmists\\nalarms\\nalarum\\nalarumed\\nalaruming\\nalarums\\nalary\\nalas\\nalaska\\nalaskas\\nalastor\\nalastors\\nalate\\nalated\\nalation\\nalations\\nalb\\nalba\\nalbacore\\nalbacores\\nalbas\\nalbata\\nalbatas\\nalbatross\\nalbatrosses\\nalbedo\\nalbedos\\nalbeit\\nalbicore\\nalbicores\\nalbinal\\nalbinic\\nalbinism\\nalbinisms\\nalbino\\nalbinos\\nalbite\\nalbites\\nalbitic\\nalbs\\nalbum\\nalbumen\\nalbumens\\nalbumin\\nalbumins\\nalbumose\\nalbumoses\\nalbums\\nalburnum\\nalburnums\\nalcade\\nalcades\\nalcahest\\nalcahests\\nalcaic\\nalcaics\\nalcaide\\nalcaides\\nalcalde\\nalcaldes\\nalcayde\\nalcaydes\\nalcazar\\nalcazars\\nalchemic\\nalchemical\\nalchemies\\nalchemist\\nalchemists\\nalchemy\\nalchymies\\nalchymy\\nalcidine\\nalcohol\\nalcoholic\\nalcoholics\\nalcoholism\\nalcoholisms\\nalcohols\\nalcove\\nalcoved\\nalcoves\\naldehyde\\naldehydes\\nalder\\nalderman\\naldermen\\nalders\\naldol\\naldolase\\naldolases\\naldols\\naldose\\naldoses\\naldovandi\\naldrin\\naldrins\\nale\\naleatory\\nalec\\nalecs\\nalee\\nalef\\nalefs\\nalegar\\nalegars\\nalehouse\\nalehouses\\nalembic\\nalembics\\naleph\\nalephs\\nalert\\nalerted\\nalerter\\nalertest\\nalerting\\nalertly\\nalertness\\nalertnesses\\nalerts\\nales\\naleuron\\naleurone\\naleurones\\naleurons\\nalevin\\nalevins\\nalewife\\nalewives\\nalexia\\nalexias\\nalexin\\nalexine\\nalexines\\nalexins\\nalfa\\nalfaki\\nalfakis\\nalfalfa\\nalfalfas\\nalfaqui\\nalfaquin\\nalfaquins\\nalfaquis\\nalfas\\nalforja\\nalforjas\\nalfresco\\nalga\\nalgae\\nalgal\\nalgaroba\\nalgarobas\\nalgas\\nalgebra\\nalgebraic\\nalgebraically\\nalgebras\\nalgerine\\nalgerines\\nalgicide\\nalgicides\\nalgid\\nalgidities\\nalgidity\\nalgin\\nalginate\\nalginates\\nalgins\\nalgoid\\nalgologies\\nalgology\\nalgor\\nalgorism\\nalgorisms\\nalgorithm\\nalgorithms\\nalgors\\nalgum\\nalgums\\nalias\\naliases\\nalibi\\nalibied\\nalibies\\nalibiing\\nalibis\\nalible\\nalidad\\nalidade\\nalidades\\nalidads\\nalien\\nalienage\\nalienages\\nalienate\\nalienated\\nalienates\\nalienating\\nalienation\\nalienations\\naliened\\nalienee\\nalienees\\naliener\\nalieners\\naliening\\nalienism\\nalienisms\\nalienist\\nalienists\\nalienly\\nalienor\\nalienors\\naliens\\nalif\\naliform\\nalifs\\nalight\\nalighted\\nalighting\\nalights\\nalign\\naligned\\naligner\\naligners\\naligning\\nalignment\\nalignments\\naligns\\nalike\\naliment\\nalimentary\\nalimentation\\nalimented\\nalimenting\\naliments\\nalimonies\\nalimony\\naline\\nalined\\naliner\\naliners\\nalines\\nalining\\naliped\\nalipeds\\naliquant\\naliquot\\naliquots\\nalist\\nalit\\naliunde\\nalive\\naliyah\\naliyahs\\nalizarin\\nalizarins\\nalkahest\\nalkahests\\nalkali\\nalkalic\\nalkalies\\nalkalified\\nalkalifies\\nalkalify\\nalkalifying\\nalkalin\\nalkaline\\nalkalinities\\nalkalinity\\nalkalis\\nalkalise\\nalkalised\\nalkalises\\nalkalising\\nalkalize\\nalkalized\\nalkalizes\\nalkalizing\\nalkaloid\\nalkaloids\\nalkane\\nalkanes\\nalkanet\\nalkanets\\nalkene\\nalkenes\\nalkine\\nalkines\\nalkoxy\\nalkyd\\nalkyds\\nalkyl\\nalkylate\\nalkylated\\nalkylates\\nalkylating\\nalkylic\\nalkyls\\nalkyne\\nalkynes\\nall\\nallanite\\nallanites\\nallay\\nallayed\\nallayer\\nallayers\\nallaying\\nallays\\nallegation\\nallegations\\nallege\\nalleged\\nallegedly\\nalleger\\nallegers\\nalleges\\nallegiance\\nallegiances\\nalleging\\nallegorical\\nallegories\\nallegory\\nallegro\\nallegros\\nallele\\nalleles\\nallelic\\nallelism\\nallelisms\\nalleluia\\nalleluias\\nallergen\\nallergenic\\nallergens\\nallergic\\nallergies\\nallergin\\nallergins\\nallergist\\nallergists\\nallergy\\nalleviate\\nalleviated\\nalleviates\\nalleviating\\nalleviation\\nalleviations\\nalley\\nalleys\\nalleyway\\nalleyways\\nallheal\\nallheals\\nalliable\\nalliance\\nalliances\\nallied\\nallies\\nalligator\\nalligators\\nalliteration\\nalliterations\\nalliterative\\nallium\\nalliums\\nallobar\\nallobars\\nallocate\\nallocated\\nallocates\\nallocating\\nallocation\\nallocations\\nallod\\nallodia\\nallodial\\nallodium\\nallods\\nallogamies\\nallogamy\\nallonge\\nallonges\\nallonym\\nallonyms\\nallopath\\nallopaths\\nallopurinol\\nallot\\nallotment\\nallotments\\nallots\\nallotted\\nallottee\\nallottees\\nallotter\\nallotters\\nallotting\\nallotype\\nallotypes\\nallotypies\\nallotypy\\nallover\\nallovers\\nallow\\nallowable\\nallowance\\nallowances\\nallowed\\nallowing\\nallows\\nalloxan\\nalloxans\\nalloy\\nalloyed\\nalloying\\nalloys\\nalls\\nallseed\\nallseeds\\nallspice\\nallspices\\nallude\\nalluded\\nalludes\\nalluding\\nallure\\nallured\\nallurement\\nallurements\\nallurer\\nallurers\\nallures\\nalluring\\nallusion\\nallusions\\nallusive\\nallusively\\nallusiveness\\nallusivenesses\\nalluvia\\nalluvial\\nalluvials\\nalluvion\\nalluvions\\nalluvium\\nalluviums\\nally\\nallying\\nallyl\\nallylic\\nallyls\\nalma\\nalmagest\\nalmagests\\nalmah\\nalmahs\\nalmanac\\nalmanacs\\nalmas\\nalme\\nalmeh\\nalmehs\\nalmemar\\nalmemars\\nalmes\\nalmighty\\nalmner\\nalmners\\nalmond\\nalmonds\\nalmoner\\nalmoners\\nalmonries\\nalmonry\\nalmost\\nalms\\nalmsman\\nalmsmen\\nalmuce\\nalmuces\\nalmud\\nalmude\\nalmudes\\nalmuds\\nalmug\\nalmugs\\nalnico\\nalnicoes\\nalodia\\nalodial\\nalodium\\naloe\\naloes\\naloetic\\naloft\\nalogical\\naloha\\nalohas\\naloin\\naloins\\nalone\\nalong\\nalongside\\naloof\\naloofly\\nalopecia\\nalopecias\\nalopecic\\naloud\\nalow\\nalp\\nalpaca\\nalpacas\\nalpha\\nalphabet\\nalphabeted\\nalphabetic\\nalphabetical\\nalphabetically\\nalphabeting\\nalphabetize\\nalphabetized\\nalphabetizer\\nalphabetizers\\nalphabetizes\\nalphabetizing\\nalphabets\\nalphanumeric\\nalphanumerics\\nalphas\\nalphorn\\nalphorns\\nalphosis\\nalphosises\\nalphyl\\nalphyls\\nalpine\\nalpinely\\nalpines\\nalpinism\\nalpinisms\\nalpinist\\nalpinists\\nalps\\nalready\\nalright\\nalsike\\nalsikes\\nalso\\nalt\\naltar\\naltars\\nalter\\nalterant\\nalterants\\nalteration\\nalterations\\naltercation\\naltercations\\naltered\\nalterer\\nalterers\\naltering\\nalternate\\nalternated\\nalternates\\nalternating\\nalternation\\nalternations\\nalternative\\nalternatively\\nalternatives\\nalternator\\nalternators\\nalters\\nalthaea\\nalthaeas\\nalthea\\naltheas\\naltho\\nalthorn\\nalthorns\\nalthough\\naltimeter\\naltimeters\\naltitude\\naltitudes\\nalto\\naltogether\\naltos\\naltruism\\naltruisms\\naltruist\\naltruistic\\naltruistically\\naltruists\\nalts\\naludel\\naludels\\nalula\\nalulae\\nalular\\nalum\\nalumin\\nalumina\\naluminas\\nalumine\\nalumines\\naluminic\\nalumins\\naluminum\\naluminums\\nalumna\\nalumnae\\nalumni\\nalumnus\\nalumroot\\nalumroots\\nalums\\nalunite\\nalunites\\nalveolar\\nalveolars\\nalveoli\\nalveolus\\nalvine\\nalway\\nalways\\nalyssum\\nalyssums\\nam\\nama\\namadavat\\namadavats\\namadou\\namadous\\namah\\namahs\\namain\\namalgam\\namalgamate\\namalgamated\\namalgamates\\namalgamating\\namalgamation\\namalgamations\\namalgams\\namandine\\namanita\\namanitas\\namanuensis\\namaranth\\namaranths\\namarelle\\namarelles\\namarna\\namaryllis\\namaryllises\\namas\\namass\\namassed\\namasser\\namassers\\namasses\\namassing\\namateur\\namateurish\\namateurism\\namateurisms\\namateurs\\namative\\namatol\\namatols\\namatory\\namaze\\namazed\\namazedly\\namazement\\namazements\\namazes\\namazing\\namazingly\\namazon\\namazonian\\namazons\\nambage\\nambages\\nambari\\nambaries\\nambaris\\nambary\\nambassador\\nambassadorial\\nambassadors\\nambassadorship\\nambassadorships\\nambeer\\nambeers\\namber\\nambergris\\nambergrises\\namberies\\namberoid\\namberoids\\nambers\\nambery\\nambiance\\nambiances\\nambidextrous\\nambidextrously\\nambience\\nambiences\\nambient\\nambients\\nambiguities\\nambiguity\\nambiguous\\nambit\\nambition\\nambitioned\\nambitioning\\nambitions\\nambitious\\nambitiously\\nambits\\nambivalence\\nambivalences\\nambivalent\\nambivert\\nambiverts\\namble\\nambled\\nambler\\namblers\\nambles\\nambling\\nambo\\namboina\\namboinas\\nambones\\nambos\\namboyna\\namboynas\\nambries\\nambroid\\nambroids\\nambrosia\\nambrosias\\nambry\\nambsace\\nambsaces\\nambulance\\nambulances\\nambulant\\nambulate\\nambulated\\nambulates\\nambulating\\nambulation\\nambulatory\\nambush\\nambushed\\nambusher\\nambushers\\nambushes\\nambushing\\nameba\\namebae\\nameban\\namebas\\namebean\\namebic\\nameboid\\nameer\\nameerate\\nameerates\\nameers\\namelcorn\\namelcorns\\nameliorate\\nameliorated\\nameliorates\\nameliorating\\namelioration\\nameliorations\\namen\\namenable\\namenably\\namend\\namended\\namender\\namenders\\namending\\namendment\\namendments\\namends\\namenities\\namenity\\namens\\nament\\namentia\\namentias\\naments\\namerce\\namerced\\namercer\\namercers\\namerces\\namercing\\namesace\\namesaces\\namethyst\\namethysts\\nami\\namia\\namiabilities\\namiability\\namiable\\namiably\\namiantus\\namiantuses\\namias\\namicable\\namicably\\namice\\namices\\namid\\namidase\\namidases\\namide\\namides\\namidic\\namidin\\namidins\\namido\\namidogen\\namidogens\\namidol\\namidols\\namids\\namidship\\namidst\\namie\\namies\\namiga\\namigas\\namigo\\namigos\\namin\\namine\\namines\\naminic\\naminities\\naminity\\namino\\namins\\namir\\namirate\\namirates\\namirs\\namis\\namiss\\namities\\namitoses\\namitosis\\namitotic\\namitrole\\namitroles\\namity\\nammeter\\nammeters\\nammine\\nammines\\nammino\\nammo\\nammocete\\nammocetes\\nammonal\\nammonals\\nammonia\\nammoniac\\nammoniacs\\nammonias\\nammonic\\nammonified\\nammonifies\\nammonify\\nammonifying\\nammonite\\nammonites\\nammonium\\nammoniums\\nammonoid\\nammonoids\\nammos\\nammunition\\nammunitions\\namnesia\\namnesiac\\namnesiacs\\namnesias\\namnesic\\namnesics\\namnestic\\namnestied\\namnesties\\namnesty\\namnestying\\namnia\\namnic\\namnion\\namnionic\\namnions\\namniote\\namniotes\\namniotic\\namoeba\\namoebae\\namoeban\\namoebas\\namoebean\\namoebic\\namoeboid\\namok\\namoks\\namole\\namoles\\namong\\namongst\\namoral\\namorally\\namoretti\\namoretto\\namorettos\\namorini\\namorino\\namorist\\namorists\\namoroso\\namorous\\namorously\\namorousness\\namorousnesses\\namorphous\\namort\\namortise\\namortised\\namortises\\namortising\\namortization\\namortizations\\namortize\\namortized\\namortizes\\namortizing\\namotion\\namotions\\namount\\namounted\\namounting\\namounts\\namour\\namours\\namp\\namperage\\namperages\\nampere\\namperes\\nampersand\\nampersands\\namphibia\\namphibian\\namphibians\\namphibious\\namphioxi\\namphipod\\namphipods\\namphitheater\\namphitheaters\\namphora\\namphorae\\namphoral\\namphoras\\nample\\nampler\\namplest\\namplification\\namplifications\\namplified\\namplifier\\namplifiers\\namplifies\\namplify\\namplifying\\namplitude\\namplitudes\\namply\\nampoule\\nampoules\\namps\\nampul\\nampule\\nampules\\nampulla\\nampullae\\nampullar\\nampuls\\namputate\\namputated\\namputates\\namputating\\namputation\\namputations\\namputee\\namputees\\namreeta\\namreetas\\namrita\\namritas\\namtrac\\namtrack\\namtracks\\namtracs\\namu\\namuck\\namucks\\namulet\\namulets\\namus\\namusable\\namuse\\namused\\namusedly\\namusement\\namusements\\namuser\\namusers\\namuses\\namusing\\namusive\\namygdala\\namygdalae\\namygdale\\namygdales\\namygdule\\namygdules\\namyl\\namylase\\namylases\\namylene\\namylenes\\namylic\\namyloid\\namyloids\\namylose\\namyloses\\namyls\\namylum\\namylums\\nan\\nana\\nanabaena\\nanabaenas\\nanabas\\nanabases\\nanabasis\\nanabatic\\nanableps\\nanablepses\\nanabolic\\nanachronism\\nanachronisms\\nanachronistic\\nanaconda\\nanacondas\\nanadem\\nanadems\\nanaemia\\nanaemias\\nanaemic\\nanaerobe\\nanaerobes\\nanaesthesiology\\nanaesthetic\\nanaesthetics\\nanaglyph\\nanaglyphs\\nanagoge\\nanagoges\\nanagogic\\nanagogies\\nanagogy\\nanagram\\nanagrammed\\nanagramming\\nanagrams\\nanal\\nanalcime\\nanalcimes\\nanalcite\\nanalcites\\nanalecta\\nanalects\\nanalemma\\nanalemmas\\nanalemmata\\nanalgesic\\nanalgesics\\nanalgia\\nanalgias\\nanalities\\nanality\\nanally\\nanalog\\nanalogic\\nanalogical\\nanalogically\\nanalogies\\nanalogously\\nanalogs\\nanalogue\\nanalogues\\nanalogy\\nanalyse\\nanalysed\\nanalyser\\nanalysers\\nanalyses\\nanalysing\\nanalysis\\nanalyst\\nanalysts\\nanalytic\\nanalytical\\nanalyzable\\nanalyze\\nanalyzed\\nanalyzer\\nanalyzers\\nanalyzes\\nanalyzing\\nananke\\nanankes\\nanapaest\\nanapaests\\nanapest\\nanapests\\nanaphase\\nanaphases\\nanaphora\\nanaphoras\\nanaphylactic\\nanarch\\nanarchic\\nanarchies\\nanarchism\\nanarchisms\\nanarchist\\nanarchistic\\nanarchists\\nanarchs\\nanarchy\\nanarthria\\nanas\\nanasarca\\nanasarcas\\nanatase\\nanatases\\nanathema\\nanathemas\\nanathemata\\nanatomic\\nanatomical\\nanatomically\\nanatomies\\nanatomist\\nanatomists\\nanatomy\\nanatoxin\\nanatoxins\\nanatto\\nanattos\\nancestor\\nancestors\\nancestral\\nancestress\\nancestresses\\nancestries\\nancestry\\nanchor\\nanchorage\\nanchorages\\nanchored\\nanchoret\\nanchorets\\nanchoring\\nanchorman\\nanchormen\\nanchors\\nanchovies\\nanchovy\\nanchusa\\nanchusas\\nanchusin\\nanchusins\\nancient\\nancienter\\nancientest\\nancients\\nancilla\\nancillae\\nancillary\\nancillas\\nancon\\nanconal\\nancone\\nanconeal\\nancones\\nanconoid\\nancress\\nancresses\\nand\\nandante\\nandantes\\nanded\\nandesite\\nandesites\\nandesyte\\nandesytes\\nandiron\\nandirons\\nandrogen\\nandrogens\\nandrogynous\\nandroid\\nandroids\\nands\\nane\\nanear\\naneared\\nanearing\\nanears\\nanecdota\\nanecdotal\\nanecdote\\nanecdotes\\nanechoic\\nanele\\naneled\\naneles\\naneling\\nanemia\\nanemias\\nanemic\\nanemone\\nanemones\\nanenst\\nanent\\nanergia\\nanergias\\nanergic\\nanergies\\nanergy\\naneroid\\naneroids\\nanes\\nanesthesia\\nanesthesias\\nanesthetic\\nanesthetics\\nanesthetist\\nanesthetists\\nanesthetize\\nanesthetized\\nanesthetizes\\nanesthetizing\\nanestri\\nanestrus\\nanethol\\nanethole\\nanetholes\\nanethols\\naneurism\\naneurisms\\naneurysm\\naneurysms\\nanew\\nanga\\nangaria\\nangarias\\nangaries\\nangary\\nangas\\nangel\\nangelic\\nangelica\\nangelical\\nangelically\\nangelicas\\nangels\\nangelus\\nangeluses\\nanger\\nangered\\nangering\\nangerly\\nangers\\nangina\\nanginal\\nanginas\\nanginose\\nanginous\\nangioma\\nangiomas\\nangiomata\\nangle\\nangled\\nanglepod\\nanglepods\\nangler\\nanglers\\nangles\\nangleworm\\nangleworms\\nanglice\\nangling\\nanglings\\nangora\\nangoras\\nangrier\\nangriest\\nangrily\\nangry\\nangst\\nangstrom\\nangstroms\\nangsts\\nanguine\\nanguish\\nanguished\\nanguishes\\nanguishing\\nangular\\nangularities\\nangularity\\nangulate\\nangulated\\nangulates\\nangulating\\nangulose\\nangulous\\nanhinga\\nanhingas\\nani\\nanil\\nanile\\nanilin\\naniline\\nanilines\\nanilins\\nanilities\\nanility\\nanils\\nanima\\nanimal\\nanimally\\nanimals\\nanimas\\nanimate\\nanimated\\nanimater\\nanimaters\\nanimates\\nanimating\\nanimation\\nanimations\\nanimato\\nanimator\\nanimators\\nanime\\nanimes\\nanimi\\nanimis\\nanimism\\nanimisms\\nanimist\\nanimists\\nanimosities\\nanimosity\\nanimus\\nanimuses\\nanion\\nanionic\\nanions\\nanis\\nanise\\naniseed\\naniseeds\\nanises\\nanisette\\nanisettes\\nanisic\\nanisole\\nanisoles\\nankerite\\nankerites\\nankh\\nankhs\\nankle\\nanklebone\\nanklebones\\nankles\\nanklet\\nanklets\\nankus\\nankuses\\nankush\\nankushes\\nankylose\\nankylosed\\nankyloses\\nankylosing\\nanlace\\nanlaces\\nanlage\\nanlagen\\nanlages\\nanlas\\nanlases\\nanna\\nannal\\nannalist\\nannalists\\nannals\\nannas\\nannates\\nannatto\\nannattos\\nanneal\\nannealed\\nannealer\\nannealers\\nannealing\\nanneals\\nannelid\\nannelids\\nannex\\nannexation\\nannexations\\nannexe\\nannexed\\nannexes\\nannexing\\nannihilate\\nannihilated\\nannihilates\\nannihilating\\nannihilation\\nannihilations\\nanniversaries\\nanniversary\\nannotate\\nannotated\\nannotates\\nannotating\\nannotation\\nannotations\\nannotator\\nannotators\\nannounce\\nannounced\\nannouncement\\nannouncements\\nannouncer\\nannouncers\\nannounces\\nannouncing\\nannoy\\nannoyance\\nannoyances\\nannoyed\\nannoyer\\nannoyers\\nannoying\\nannoyingly\\nannoys\\nannual\\nannually\\nannuals\\nannuities\\nannuity\\nannul\\nannular\\nannulate\\nannulet\\nannulets\\nannuli\\nannulled\\nannulling\\nannulment\\nannulments\\nannulose\\nannuls\\nannulus\\nannuluses\\nanoa\\nanoas\\nanodal\\nanodally\\nanode\\nanodes\\nanodic\\nanodically\\nanodize\\nanodized\\nanodizes\\nanodizing\\nanodyne\\nanodynes\\nanodynic\\nanoint\\nanointed\\nanointer\\nanointers\\nanointing\\nanointment\\nanointments\\nanoints\\nanole\\nanoles\\nanolyte\\nanolytes\\nanomalies\\nanomalous\\nanomaly\\nanomic\\nanomie\\nanomies\\nanomy\\nanon\\nanonym\\nanonymities\\nanonymity\\nanonymous\\nanonymously\\nanonyms\\nanoopsia\\nanoopsias\\nanopia\\nanopias\\nanopsia\\nanopsias\\nanorak\\nanoraks\\nanoretic\\nanorexia\\nanorexias\\nanorexies\\nanorexy\\nanorthic\\nanosmia\\nanosmias\\nanosmic\\nanother\\nanoxemia\\nanoxemias\\nanoxemic\\nanoxia\\nanoxias\\nanoxic\\nansa\\nansae\\nansate\\nansated\\nanserine\\nanserines\\nanserous\\nanswer\\nanswerable\\nanswered\\nanswerer\\nanswerers\\nanswering\\nanswers\\nant\\nanta\\nantacid\\nantacids\\nantae\\nantagonism\\nantagonisms\\nantagonist\\nantagonistic\\nantagonists\\nantagonize\\nantagonized\\nantagonizes\\nantagonizing\\nantalgic\\nantalgics\\nantarctic\\nantas\\nante\\nanteater\\nanteaters\\nantebellum\\nantecede\\nanteceded\\nantecedent\\nantecedents\\nantecedes\\nanteceding\\nanted\\nantedate\\nantedated\\nantedates\\nantedating\\nanteed\\nantefix\\nantefixa\\nantefixes\\nanteing\\nantelope\\nantelopes\\nantenna\\nantennae\\nantennal\\nantennas\\nantepast\\nantepasts\\nanterior\\nanteroom\\nanterooms\\nantes\\nantetype\\nantetypes\\nantevert\\nanteverted\\nanteverting\\nanteverts\\nanthelia\\nanthelices\\nanthelix\\nanthem\\nanthemed\\nanthemia\\nantheming\\nanthems\\nanther\\nantheral\\nantherid\\nantherids\\nanthers\\nantheses\\nanthesis\\nanthill\\nanthills\\nanthodia\\nanthoid\\nanthologies\\nanthology\\nanthraces\\nanthracite\\nanthracites\\nanthrax\\nanthropoid\\nanthropological\\nanthropologist\\nanthropologists\\nanthropology\\nanti\\nantiabortion\\nantiacademic\\nantiadministration\\nantiaggression\\nantiaggressive\\nantiaircraft\\nantialien\\nantianarchic\\nantianarchist\\nantiannexation\\nantiapartheid\\nantiar\\nantiarin\\nantiarins\\nantiaristocrat\\nantiaristocratic\\nantiars\\nantiatheism\\nantiatheist\\nantiauthoritarian\\nantibacterial\\nantibiotic\\nantibiotics\\nantiblack\\nantibodies\\nantibody\\nantibourgeois\\nantiboxing\\nantiboycott\\nantibureaucratic\\nantiburglar\\nantiburglary\\nantibusiness\\nantic\\nanticancer\\nanticapitalism\\nanticapitalist\\nanticapitalistic\\nanticensorship\\nantichurch\\nanticigarette\\nanticipate\\nanticipated\\nanticipates\\nanticipating\\nanticipation\\nanticipations\\nanticipatory\\nantick\\nanticked\\nanticking\\nanticks\\nanticlerical\\nanticlimactic\\nanticlimax\\nanticlimaxes\\nanticly\\nanticollision\\nanticolonial\\nanticommunism\\nanticommunist\\nanticonservation\\nanticonservationist\\nanticonsumer\\nanticonventional\\nanticorrosive\\nanticorruption\\nanticrime\\nanticruelty\\nantics\\nanticultural\\nantidandruff\\nantidemocratic\\nantidiscrimination\\nantidote\\nantidotes\\nantidumping\\nantieavesdropping\\nantiemetic\\nantiemetics\\nantiestablishment\\nantievolution\\nantievolutionary\\nantifanatic\\nantifascism\\nantifascist\\nantifat\\nantifatigue\\nantifemale\\nantifeminine\\nantifeminism\\nantifeminist\\nantifertility\\nantiforeign\\nantiforeigner\\nantifraud\\nantifreeze\\nantifreezes\\nantifungus\\nantigambling\\nantigen\\nantigene\\nantigenes\\nantigens\\nantiglare\\nantigonorrheal\\nantigovernment\\nantigraft\\nantiguerilla\\nantihero\\nantiheroes\\nantihijack\\nantihistamine\\nantihistamines\\nantihomosexual\\nantihuman\\nantihumanism\\nantihumanistic\\nantihumanity\\nantihunting\\nantijamming\\nantiking\\nantikings\\nantilabor\\nantiliberal\\nantiliberalism\\nantilitter\\nantilittering\\nantilog\\nantilogies\\nantilogs\\nantilogy\\nantilynching\\nantimanagement\\nantimask\\nantimasks\\nantimaterialism\\nantimaterialist\\nantimaterialistic\\nantimere\\nantimeres\\nantimicrobial\\nantimilitarism\\nantimilitarist\\nantimilitaristic\\nantimilitary\\nantimiscegenation\\nantimonies\\nantimonopolist\\nantimonopoly\\nantimony\\nantimosquito\\nanting\\nantings\\nantinode\\nantinodes\\nantinoise\\nantinomies\\nantinomy\\nantiobesity\\nantipapal\\nantipathies\\nantipathy\\nantipersonnel\\nantiphon\\nantiphons\\nantipode\\nantipodes\\nantipole\\nantipoles\\nantipolice\\nantipollution\\nantipope\\nantipopes\\nantipornographic\\nantipornography\\nantipoverty\\nantiprofiteering\\nantiprogressive\\nantiprostitution\\nantipyic\\nantipyics\\nantipyretic\\nantiquarian\\nantiquarianism\\nantiquarians\\nantiquaries\\nantiquary\\nantiquated\\nantique\\nantiqued\\nantiquer\\nantiquers\\nantiques\\nantiquing\\nantiquities\\nantiquity\\nantirabies\\nantiracing\\nantiracketeering\\nantiradical\\nantirealism\\nantirealistic\\nantirecession\\nantireform\\nantireligious\\nantirepublican\\nantirevolutionary\\nantirobbery\\nantiromantic\\nantirust\\nantirusts\\nantis\\nantisegregation\\nantiseptic\\nantiseptically\\nantiseptics\\nantisera\\nantisexist\\nantisexual\\nantishoplifting\\nantiskid\\nantislavery\\nantismog\\nantismoking\\nantismuggling\\nantispending\\nantistrike\\nantistudent\\nantisubmarine\\nantisubversion\\nantisubversive\\nantisuicide\\nantisyphillis\\nantitank\\nantitax\\nantitechnological\\nantitechnology\\nantiterrorism\\nantiterrorist\\nantitheft\\nantitheses\\nantithesis\\nantitobacco\\nantitotalitarian\\nantitoxin\\nantitraditional\\nantitrust\\nantituberculosis\\nantitumor\\nantitype\\nantitypes\\nantityphoid\\nantiulcer\\nantiunemployment\\nantiunion\\nantiuniversity\\nantiurban\\nantivandalism\\nantiviolence\\nantiviral\\nantivivisection\\nantiwar\\nantiwhite\\nantiwiretapping\\nantiwoman\\nantler\\nantlered\\nantlers\\nantlike\\nantlion\\nantlions\\nantonym\\nantonymies\\nantonyms\\nantonymy\\nantra\\nantral\\nantre\\nantres\\nantrorse\\nantrum\\nants\\nanuran\\nanurans\\nanureses\\nanuresis\\nanuretic\\nanuria\\nanurias\\nanuric\\nanurous\\nanus\\nanuses\\nanvil\\nanviled\\nanviling\\nanvilled\\nanvilling\\nanvils\\nanviltop\\nanviltops\\nanxieties\\nanxiety\\nanxious\\nanxiously\\nany\\nanybodies\\nanybody\\nanyhow\\nanymore\\nanyone\\nanyplace\\nanything\\nanythings\\nanytime\\nanyway\\nanyways\\nanywhere\\nanywheres\\nanywise\\naorist\\naoristic\\naorists\\naorta\\naortae\\naortal\\naortas\\naortic\\naoudad\\naoudads\\napace\\napache\\napaches\\napagoge\\napagoges\\napagogic\\napanage\\napanages\\naparejo\\naparejos\\napart\\napartheid\\napartheids\\napatetic\\napathetic\\napathetically\\napathies\\napathy\\napatite\\napatites\\nape\\napeak\\naped\\napeek\\napelike\\naper\\napercu\\napercus\\naperient\\naperients\\naperies\\naperitif\\naperitifs\\napers\\naperture\\napertures\\napery\\napes\\napetalies\\napetaly\\napex\\napexes\\naphagia\\naphagias\\naphanite\\naphanites\\naphasia\\naphasiac\\naphasiacs\\naphasias\\naphasic\\naphasics\\naphelia\\naphelian\\naphelion\\napheses\\naphesis\\naphetic\\naphid\\naphides\\naphidian\\naphidians\\naphids\\naphis\\napholate\\napholates\\naphonia\\naphonias\\naphonic\\naphonics\\naphorise\\naphorised\\naphorises\\naphorising\\naphorism\\naphorisms\\naphorist\\naphoristic\\naphorists\\naphorize\\naphorized\\naphorizes\\naphorizing\\naphotic\\naphrodisiac\\naphtha\\naphthae\\naphthous\\naphyllies\\naphylly\\napian\\napiarian\\napiarians\\napiaries\\napiarist\\napiarists\\napiary\\napical\\napically\\napices\\napiculi\\napiculus\\napiece\\napimania\\napimanias\\naping\\napiologies\\napiology\\napish\\napishly\\naplasia\\naplasias\\naplastic\\naplenty\\naplite\\naplites\\naplitic\\naplomb\\naplombs\\napnea\\napneal\\napneas\\napneic\\napnoea\\napnoeal\\napnoeas\\napnoeic\\napocalypse\\napocalypses\\napocalyptic\\napocalyptical\\napocarp\\napocarpies\\napocarps\\napocarpy\\napocope\\napocopes\\napocopic\\napocrine\\napocrypha\\napocryphal\\napodal\\napodoses\\napodosis\\napodous\\napogamic\\napogamies\\napogamy\\napogeal\\napogean\\napogee\\napogees\\napogeic\\napollo\\napollos\\napolog\\napologal\\napologetic\\napologetically\\napologia\\napologiae\\napologias\\napologies\\napologist\\napologize\\napologized\\napologizes\\napologizing\\napologs\\napologue\\napologues\\napology\\napolune\\napolunes\\napomict\\napomicts\\napomixes\\napomixis\\napophyge\\napophyges\\napoplectic\\napoplexies\\napoplexy\\naport\\napostacies\\napostacy\\napostasies\\napostasy\\napostate\\napostates\\napostil\\napostils\\napostle\\napostles\\napostleship\\napostolic\\napostrophe\\napostrophes\\napothecaries\\napothecary\\napothece\\napotheces\\napothegm\\napothegms\\napothem\\napothems\\nappal\\nappall\\nappalled\\nappalling\\nappalls\\nappals\\nappanage\\nappanages\\napparat\\napparats\\napparatus\\napparatuses\\napparel\\nappareled\\nappareling\\napparelled\\napparelling\\napparels\\napparent\\napparently\\napparition\\napparitions\\nappeal\\nappealed\\nappealer\\nappealers\\nappealing\\nappeals\\nappear\\nappearance\\nappearances\\nappeared\\nappearing\\nappears\\nappease\\nappeased\\nappeasement\\nappeasements\\nappeaser\\nappeasers\\nappeases\\nappeasing\\nappel\\nappellee\\nappellees\\nappellor\\nappellors\\nappels\\nappend\\nappendage\\nappendages\\nappendectomies\\nappendectomy\\nappended\\nappendices\\nappendicitis\\nappending\\nappendix\\nappendixes\\nappends\\nappestat\\nappestats\\nappetent\\nappetite\\nappetites\\nappetizer\\nappetizers\\nappetizing\\nappetizingly\\napplaud\\napplauded\\napplauding\\napplauds\\napplause\\napplauses\\napple\\napplejack\\napplejacks\\napples\\napplesauce\\nappliance\\napplicabilities\\napplicability\\napplicable\\napplicancies\\napplicancy\\napplicant\\napplicants\\napplication\\napplications\\napplicator\\napplicators\\napplied\\napplier\\nappliers\\napplies\\napplique\\nappliqued\\nappliqueing\\nappliques\\napply\\napplying\\nappoint\\nappointed\\nappointing\\nappointment\\nappointments\\nappoints\\napportion\\napportioned\\napportioning\\napportionment\\napportionments\\napportions\\nappose\\napposed\\napposer\\napposers\\napposes\\napposing\\napposite\\nappositely\\nappraisal\\nappraisals\\nappraise\\nappraised\\nappraiser\\nappraisers\\nappraises\\nappraising\\nappreciable\\nappreciably\\nappreciate\\nappreciated\\nappreciates\\nappreciating\\nappreciation\\nappreciations\\nappreciative\\napprehend\\napprehended\\napprehending\\napprehends\\napprehension\\napprehensions\\napprehensive\\napprehensively\\napprehensiveness\\napprehensivenesses\\napprentice\\napprenticed\\napprentices\\napprenticeship\\napprenticeships\\napprenticing\\napprise\\napprised\\nappriser\\napprisers\\napprises\\napprising\\napprize\\napprized\\napprizer\\napprizers\\napprizes\\napprizing\\napproach\\napproachable\\napproached\\napproaches\\napproaching\\napprobation\\nappropriate\\nappropriated\\nappropriately\\nappropriateness\\nappropriates\\nappropriating\\nappropriation\\nappropriations\\napproval\\napprovals\\napprove\\napproved\\napprover\\napprovers\\napproves\\napproving\\napproximate\\napproximated\\napproximately\\napproximates\\napproximating\\napproximation\\napproximations\\nappulse\\nappulses\\nappurtenance\\nappurtenances\\nappurtenant\\napractic\\napraxia\\napraxias\\napraxic\\napricot\\napricots\\napron\\naproned\\naproning\\naprons\\napropos\\napse\\napses\\napsidal\\napsides\\napsis\\napt\\napter\\napteral\\napterous\\napteryx\\napteryxes\\naptest\\naptitude\\naptitudes\\naptly\\naptness\\naptnesses\\napyrase\\napyrases\\napyretic\\naqua\\naquacade\\naquacades\\naquae\\naquamarine\\naquamarines\\naquanaut\\naquanauts\\naquaria\\naquarial\\naquarian\\naquarians\\naquarist\\naquarists\\naquarium\\naquariums\\naquas\\naquatic\\naquatics\\naquatint\\naquatinted\\naquatinting\\naquatints\\naquatone\\naquatones\\naquavit\\naquavits\\naqueduct\\naqueducts\\naqueous\\naquifer\\naquifers\\naquiline\\naquiver\\nar\\narabesk\\narabesks\\narabesque\\narabesques\\narabize\\narabized\\narabizes\\narabizing\\narable\\narables\\naraceous\\narachnid\\narachnids\\narak\\naraks\\naraneid\\naraneids\\narapaima\\narapaimas\\nararoba\\nararobas\\narbalest\\narbalests\\narbalist\\narbalists\\narbiter\\narbiters\\narbitral\\narbitrarily\\narbitrariness\\narbitrarinesses\\narbitrary\\narbitrate\\narbitrated\\narbitrates\\narbitrating\\narbitration\\narbitrations\\narbitrator\\narbitrators\\narbor\\narboreal\\narbored\\narbores\\narboreta\\narborist\\narborists\\narborize\\narborized\\narborizes\\narborizing\\narborous\\narbors\\narbour\\narboured\\narbours\\narbuscle\\narbuscles\\narbute\\narbutean\\narbutes\\narbutus\\narbutuses\\narc\\narcade\\narcaded\\narcades\\narcadia\\narcadian\\narcadians\\narcadias\\narcading\\narcadings\\narcana\\narcane\\narcanum\\narcature\\narcatures\\narced\\narch\\narchaeological\\narchaeologies\\narchaeologist\\narchaeologists\\narchaeology\\narchaic\\narchaically\\narchaise\\narchaised\\narchaises\\narchaising\\narchaism\\narchaisms\\narchaist\\narchaists\\narchaize\\narchaized\\narchaizes\\narchaizing\\narchangel\\narchangels\\narchbishop\\narchbishopric\\narchbishoprics\\narchbishops\\narchdiocese\\narchdioceses\\narchduke\\narchdukes\\narched\\narcheologies\\narcheology\\narcher\\narcheries\\narchers\\narchery\\narches\\narchetype\\narchetypes\\narchil\\narchils\\narchine\\narchines\\narching\\narchings\\narchipelago\\narchipelagos\\narchitect\\narchitects\\narchitectural\\narchitecture\\narchitectures\\narchival\\narchive\\narchived\\narchives\\narchiving\\narchly\\narchness\\narchnesses\\narchon\\narchons\\narchway\\narchways\\narciform\\narcing\\narcked\\narcking\\narco\\narcs\\narctic\\narctics\\narcuate\\narcuated\\narcus\\narcuses\\nardeb\\nardebs\\nardencies\\nardency\\nardent\\nardently\\nardor\\nardors\\nardour\\nardours\\narduous\\narduously\\narduousness\\narduousnesses\\nare\\narea\\nareae\\nareal\\nareally\\nareas\\nareaway\\nareaways\\nareca\\narecas\\nareic\\narena\\narenas\\narenose\\narenous\\nareola\\nareolae\\nareolar\\nareolas\\nareolate\\nareole\\nareoles\\nareologies\\nareology\\nares\\narete\\naretes\\narethusa\\narethusas\\narf\\nargal\\nargali\\nargalis\\nargals\\nargent\\nargental\\nargentic\\nargents\\nargentum\\nargentums\\nargil\\nargils\\narginase\\narginases\\narginine\\narginines\\nargle\\nargled\\nargles\\nargling\\nargol\\nargols\\nargon\\nargonaut\\nargonauts\\nargons\\nargosies\\nargosy\\nargot\\nargotic\\nargots\\narguable\\narguably\\nargue\\nargued\\narguer\\narguers\\nargues\\nargufied\\nargufier\\nargufiers\\nargufies\\nargufy\\nargufying\\narguing\\nargument\\nargumentative\\narguments\\nargus\\narguses\\nargyle\\nargyles\\nargyll\\nargylls\\narhat\\narhats\\naria\\narias\\narid\\narider\\naridest\\naridities\\naridity\\naridly\\naridness\\naridnesses\\nariel\\nariels\\narietta\\nariettas\\nariette\\nariettes\\naright\\naril\\nariled\\narillate\\narillode\\narillodes\\narilloid\\narils\\nariose\\nariosi\\narioso\\nariosos\\narise\\narisen\\narises\\narising\\narista\\naristae\\naristas\\naristate\\naristocracies\\naristocracy\\naristocrat\\naristocratic\\naristocrats\\narithmetic\\narithmetical\\nark\\narks\\narles\\narm\\narmada\\narmadas\\narmadillo\\narmadillos\\narmament\\narmaments\\narmature\\narmatured\\narmatures\\narmaturing\\narmband\\narmbands\\narmchair\\narmchairs\\narmed\\narmer\\narmers\\narmet\\narmets\\narmful\\narmfuls\\narmhole\\narmholes\\narmies\\narmiger\\narmigero\\narmigeros\\narmigers\\narmilla\\narmillae\\narmillas\\narming\\narmings\\narmless\\narmlet\\narmlets\\narmlike\\narmload\\narmloads\\narmoire\\narmoires\\narmonica\\narmonicas\\narmor\\narmored\\narmorer\\narmorers\\narmorial\\narmorials\\narmories\\narmoring\\narmors\\narmory\\narmour\\narmoured\\narmourer\\narmourers\\narmouries\\narmouring\\narmours\\narmoury\\narmpit\\narmpits\\narmrest\\narmrests\\narms\\narmsful\\narmure\\narmures\\narmy\\narmyworm\\narmyworms\\narnatto\\narnattos\\narnica\\narnicas\\narnotto\\narnottos\\naroid\\naroids\\naroint\\narointed\\narointing\\naroints\\naroma\\naromas\\naromatic\\naromatics\\narose\\naround\\narousal\\narousals\\narouse\\naroused\\narouser\\narousers\\narouses\\narousing\\naroynt\\naroynted\\naroynting\\naroynts\\narpeggio\\narpeggios\\narpen\\narpens\\narpent\\narpents\\narquebus\\narquebuses\\narrack\\narracks\\narraign\\narraigned\\narraigning\\narraigns\\narrange\\narranged\\narrangement\\narrangements\\narranger\\narrangers\\narranges\\narranging\\narrant\\narrantly\\narras\\narrased\\narray\\narrayal\\narrayals\\narrayed\\narrayer\\narrayers\\narraying\\narrays\\narrear\\narrears\\narrest\\narrested\\narrestee\\narrestees\\narrester\\narresters\\narresting\\narrestor\\narrestors\\narrests\\narrhizal\\narrhythmia\\narris\\narrises\\narrival\\narrivals\\narrive\\narrived\\narriver\\narrivers\\narrives\\narriving\\narroba\\narrobas\\narrogance\\narrogances\\narrogant\\narrogantly\\narrogate\\narrogated\\narrogates\\narrogating\\narrow\\narrowed\\narrowhead\\narrowheads\\narrowing\\narrows\\narrowy\\narroyo\\narroyos\\nars\\narse\\narsenal\\narsenals\\narsenate\\narsenates\\narsenic\\narsenical\\narsenics\\narsenide\\narsenides\\narsenious\\narsenite\\narsenites\\narseno\\narsenous\\narses\\narshin\\narshins\\narsine\\narsines\\narsino\\narsis\\narson\\narsonist\\narsonists\\narsonous\\narsons\\nart\\nartal\\nartefact\\nartefacts\\nartel\\nartels\\narterial\\narterials\\narteries\\narteriosclerosis\\narteriosclerotic\\nartery\\nartful\\nartfully\\nartfulness\\nartfulnesses\\narthralgia\\narthritic\\narthritides\\narthritis\\narthropod\\narthropods\\nartichoke\\nartichokes\\narticle\\narticled\\narticles\\narticling\\narticulate\\narticulated\\narticulately\\narticulateness\\narticulatenesses\\narticulates\\narticulating\\nartier\\nartiest\\nartifact\\nartifacts\\nartifice\\nartifices\\nartificial\\nartificialities\\nartificiality\\nartificially\\nartificialness\\nartificialnesses\\nartilleries\\nartillery\\nartily\\nartiness\\nartinesses\\nartisan\\nartisans\\nartist\\nartiste\\nartistes\\nartistic\\nartistical\\nartistically\\nartistries\\nartistry\\nartists\\nartless\\nartlessly\\nartlessness\\nartlessnesses\\narts\\nartwork\\nartworks\\narty\\narum\\narums\\naruspex\\naruspices\\narval\\narvo\\narvos\\naryl\\naryls\\narythmia\\narythmias\\narythmic\\nas\\nasarum\\nasarums\\nasbestic\\nasbestos\\nasbestoses\\nasbestus\\nasbestuses\\nascarid\\nascarides\\nascarids\\nascaris\\nascend\\nascendancies\\nascendancy\\nascendant\\nascended\\nascender\\nascenders\\nascending\\nascends\\nascension\\nascensions\\nascent\\nascents\\nascertain\\nascertainable\\nascertained\\nascertaining\\nascertains\\nasceses\\nascesis\\nascetic\\nasceticism\\nasceticisms\\nascetics\\nasci\\nascidia\\nascidian\\nascidians\\nascidium\\nascites\\nascitic\\nascocarp\\nascocarps\\nascorbic\\nascot\\nascots\\nascribable\\nascribe\\nascribed\\nascribes\\nascribing\\nascription\\nascriptions\\nascus\\nasdic\\nasdics\\nasea\\nasepses\\nasepsis\\naseptic\\nasexual\\nash\\nashamed\\nashcan\\nashcans\\nashed\\nashen\\nashes\\nashier\\nashiest\\nashing\\nashlar\\nashlared\\nashlaring\\nashlars\\nashler\\nashlered\\nashlering\\nashlers\\nashless\\nashman\\nashmen\\nashore\\nashplant\\nashplants\\nashram\\nashrams\\nashtray\\nashtrays\\nashy\\naside\\nasides\\nasinine\\nask\\naskance\\naskant\\nasked\\nasker\\naskers\\naskeses\\naskesis\\naskew\\nasking\\naskings\\nasks\\naslant\\nasleep\\naslope\\nasocial\\nasp\\naspect\\naspects\\naspen\\naspens\\nasper\\nasperate\\nasperated\\nasperates\\nasperating\\nasperges\\nasperities\\nasperity\\naspers\\nasperse\\naspersed\\nasperser\\naspersers\\nasperses\\naspersing\\naspersion\\naspersions\\naspersor\\naspersors\\nasphalt\\nasphalted\\nasphaltic\\nasphalting\\nasphalts\\nasphaltum\\nasphaltums\\naspheric\\nasphodel\\nasphodels\\nasphyxia\\nasphyxias\\nasphyxiate\\nasphyxiated\\nasphyxiates\\nasphyxiating\\nasphyxiation\\nasphyxiations\\nasphyxies\\nasphyxy\\naspic\\naspics\\naspirant\\naspirants\\naspirata\\naspiratae\\naspirate\\naspirated\\naspirates\\naspirating\\naspiration\\naspirations\\naspire\\naspired\\naspirer\\naspirers\\naspires\\naspirin\\naspiring\\naspirins\\naspis\\naspises\\naspish\\nasps\\nasquint\\nasrama\\nasramas\\nass\\nassagai\\nassagaied\\nassagaiing\\nassagais\\nassai\\nassail\\nassailable\\nassailant\\nassailants\\nassailed\\nassailer\\nassailers\\nassailing\\nassails\\nassais\\nassassin\\nassassinate\\nassassinated\\nassassinates\\nassassinating\\nassassination\\nassassinations\\nassassins\\nassault\\nassaulted\\nassaulting\\nassaults\\nassay\\nassayed\\nassayer\\nassayers\\nassaying\\nassays\\nassegai\\nassegaied\\nassegaiing\\nassegais\\nassemble\\nassembled\\nassembles\\nassemblies\\nassembling\\nassembly\\nassemblyman\\nassemblymen\\nassemblywoman\\nassemblywomen\\nassent\\nassented\\nassenter\\nassenters\\nassenting\\nassentor\\nassentors\\nassents\\nassert\\nasserted\\nasserter\\nasserters\\nasserting\\nassertion\\nassertions\\nassertive\\nassertiveness\\nassertivenesses\\nassertor\\nassertors\\nasserts\\nasses\\nassess\\nassessed\\nassesses\\nassessing\\nassessment\\nassessments\\nassessor\\nassessors\\nasset\\nassets\\nassiduities\\nassiduity\\nassiduous\\nassiduously\\nassiduousness\\nassiduousnesses\\nassign\\nassignable\\nassignat\\nassignats\\nassigned\\nassignee\\nassignees\\nassigner\\nassigners\\nassigning\\nassignment\\nassignments\\nassignor\\nassignors\\nassigns\\nassimilate\\nassimilated\\nassimilates\\nassimilating\\nassimilation\\nassimilations\\nassist\\nassistance\\nassistances\\nassistant\\nassistants\\nassisted\\nassister\\nassisters\\nassisting\\nassistor\\nassistors\\nassists\\nassize\\nassizes\\nasslike\\nassociate\\nassociated\\nassociates\\nassociating\\nassociation\\nassociations\\nassoil\\nassoiled\\nassoiling\\nassoils\\nassonant\\nassonants\\nassort\\nassorted\\nassorter\\nassorters\\nassorting\\nassortment\\nassortments\\nassorts\\nassuage\\nassuaged\\nassuages\\nassuaging\\nassume\\nassumed\\nassumer\\nassumers\\nassumes\\nassuming\\nassumption\\nassumptions\\nassurance\\nassurances\\nassure\\nassured\\nassureds\\nassurer\\nassurers\\nassures\\nassuring\\nassuror\\nassurors\\nasswage\\nasswaged\\nasswages\\nasswaging\\nastasia\\nastasias\\nastatic\\nastatine\\nastatines\\naster\\nasteria\\nasterias\\nasterisk\\nasterisked\\nasterisking\\nasterisks\\nasterism\\nasterisms\\nastern\\nasternal\\nasteroid\\nasteroidal\\nasteroids\\nasters\\nasthenia\\nasthenias\\nasthenic\\nasthenics\\nasthenies\\nastheny\\nasthma\\nasthmas\\nastigmatic\\nastigmatism\\nastigmatisms\\nastir\\nastomous\\nastonied\\nastonies\\nastonish\\nastonished\\nastonishes\\nastonishing\\nastonishingly\\nastonishment\\nastonishments\\nastony\\nastonying\\nastound\\nastounded\\nastounding\\nastoundingly\\nastounds\\nastraddle\\nastragal\\nastragals\\nastral\\nastrally\\nastrals\\nastray\\nastrict\\nastricted\\nastricting\\nastricts\\nastride\\nastringe\\nastringed\\nastringencies\\nastringency\\nastringent\\nastringents\\nastringes\\nastringing\\nastrolabe\\nastrolabes\\nastrologer\\nastrologers\\nastrological\\nastrologies\\nastrology\\nastronaut\\nastronautic\\nastronautical\\nastronautically\\nastronautics\\nastronauts\\nastronomer\\nastronomers\\nastronomic\\nastronomical\\nastute\\nastutely\\nastuteness\\nastylar\\nasunder\\naswarm\\naswirl\\naswoon\\nasyla\\nasylum\\nasylums\\nasymmetric\\nasymmetrical\\nasymmetries\\nasymmetry\\nasyndeta\\nat\\natabal\\natabals\\nataghan\\nataghans\\natalaya\\natalayas\\nataman\\natamans\\natamasco\\natamascos\\nataraxia\\nataraxias\\nataraxic\\nataraxics\\nataraxies\\nataraxy\\natavic\\natavism\\natavisms\\natavist\\natavists\\nataxia\\nataxias\\nataxic\\nataxics\\nataxies\\nataxy\\nate\\natechnic\\natelic\\natelier\\nateliers\\nates\\nathanasies\\nathanasy\\natheism\\natheisms\\natheist\\natheistic\\natheists\\natheling\\nathelings\\natheneum\\natheneums\\natheroma\\natheromas\\natheromata\\natherosclerosis\\natherosclerotic\\nathirst\\nathlete\\nathletes\\nathletic\\nathletics\\nathodyd\\nathodyds\\nathwart\\natilt\\natingle\\natlantes\\natlas\\natlases\\natlatl\\natlatls\\natma\\natman\\natmans\\natmas\\natmosphere\\natmospheres\\natmospheric\\natmospherically\\natoll\\natolls\\natom\\natomic\\natomical\\natomics\\natomies\\natomise\\natomised\\natomises\\natomising\\natomism\\natomisms\\natomist\\natomists\\natomize\\natomized\\natomizer\\natomizers\\natomizes\\natomizing\\natoms\\natomy\\natonable\\natonal\\natonally\\natone\\natoned\\natonement\\natonements\\natoner\\natoners\\natones\\natonic\\natonicity\\natonics\\natonies\\natoning\\natony\\natop\\natopic\\natopies\\natopy\\natrazine\\natrazines\\natremble\\natresia\\natresias\\natria\\natrial\\natrip\\natrium\\natriums\\natrocious\\natrociously\\natrociousness\\natrociousnesses\\natrocities\\natrocity\\natrophia\\natrophias\\natrophic\\natrophied\\natrophies\\natrophy\\natrophying\\natropin\\natropine\\natropines\\natropins\\natropism\\natropisms\\nattach\\nattache\\nattached\\nattacher\\nattachers\\nattaches\\nattaching\\nattachment\\nattachments\\nattack\\nattacked\\nattacker\\nattackers\\nattacking\\nattacks\\nattain\\nattainabilities\\nattainability\\nattainable\\nattained\\nattainer\\nattainers\\nattaining\\nattainment\\nattainments\\nattains\\nattaint\\nattainted\\nattainting\\nattaints\\nattar\\nattars\\nattemper\\nattempered\\nattempering\\nattempers\\nattempt\\nattempted\\nattempting\\nattempts\\nattend\\nattendance\\nattendances\\nattendant\\nattendants\\nattended\\nattendee\\nattendees\\nattender\\nattenders\\nattending\\nattendings\\nattends\\nattent\\nattention\\nattentions\\nattentive\\nattentively\\nattentiveness\\nattentivenesses\\nattenuate\\nattenuated\\nattenuates\\nattenuating\\nattenuation\\nattenuations\\nattest\\nattestation\\nattestations\\nattested\\nattester\\nattesters\\nattesting\\nattestor\\nattestors\\nattests\\nattic\\natticism\\natticisms\\natticist\\natticists\\nattics\\nattire\\nattired\\nattires\\nattiring\\nattitude\\nattitudes\\nattorn\\nattorned\\nattorney\\nattorneys\\nattorning\\nattorns\\nattract\\nattracted\\nattracting\\nattraction\\nattractions\\nattractive\\nattractively\\nattractiveness\\nattractivenesses\\nattracts\\nattributable\\nattribute\\nattributed\\nattributes\\nattributing\\nattribution\\nattributions\\nattrite\\nattrited\\nattune\\nattuned\\nattunes\\nattuning\\natwain\\natween\\natwitter\\natypic\\natypical\\naubade\\naubades\\nauberge\\nauberges\\nauburn\\nauburns\\nauction\\nauctioned\\nauctioneer\\nauctioneers\\nauctioning\\nauctions\\naudacious\\naudacities\\naudacity\\naudad\\naudads\\naudible\\naudibles\\naudibly\\naudience\\naudiences\\naudient\\naudients\\naudile\\naudiles\\nauding\\naudings\\naudio\\naudiogram\\naudiograms\\naudios\\naudit\\naudited\\nauditing\\naudition\\nauditioned\\nauditioning\\nauditions\\nauditive\\nauditives\\nauditor\\nauditories\\nauditorium\\nauditoriums\\nauditors\\nauditory\\naudits\\naugend\\naugends\\nauger\\naugers\\naught\\naughts\\naugite\\naugites\\naugitic\\naugment\\naugmentation\\naugmentations\\naugmented\\naugmenting\\naugments\\naugur\\naugural\\naugured\\naugurer\\naugurers\\nauguries\\nauguring\\naugurs\\naugury\\naugust\\nauguster\\naugustest\\naugustly\\nauk\\nauklet\\nauklets\\nauks\\nauld\\naulder\\nauldest\\naulic\\naunt\\naunthood\\naunthoods\\nauntie\\naunties\\nauntlier\\nauntliest\\nauntlike\\nauntly\\naunts\\naunty\\naura\\naurae\\naural\\naurally\\naurar\\nauras\\naurate\\naurated\\naureate\\naurei\\naureola\\naureolae\\naureolas\\naureole\\naureoled\\naureoles\\naureoling\\naures\\naureus\\nauric\\nauricle\\nauricled\\nauricles\\nauricula\\nauriculae\\nauriculas\\nauriform\\nauris\\naurist\\naurists\\naurochs\\naurochses\\naurora\\naurorae\\nauroral\\nauroras\\naurorean\\naurous\\naurum\\naurums\\nauscultation\\nauscultations\\nauspex\\nauspice\\nauspices\\nauspicious\\naustere\\nausterer\\nausterest\\nausterities\\nausterity\\naustral\\nautacoid\\nautacoids\\nautarchies\\nautarchy\\nautarkic\\nautarkies\\nautarkik\\nautarky\\nautecism\\nautecisms\\nauthentic\\nauthentically\\nauthenticate\\nauthenticated\\nauthenticates\\nauthenticating\\nauthentication\\nauthentications\\nauthenticities\\nauthenticity\\nauthor\\nauthored\\nauthoress\\nauthoresses\\nauthoring\\nauthoritarian\\nauthoritative\\nauthoritatively\\nauthorities\\nauthority\\nauthorization\\nauthorizations\\nauthorize\\nauthorized\\nauthorizes\\nauthorizing\\nauthors\\nauthorship\\nauthorships\\nautism\\nautisms\\nautistic\\nauto\\nautobahn\\nautobahnen\\nautobahns\\nautobiographer\\nautobiographers\\nautobiographical\\nautobiographies\\nautobiography\\nautobus\\nautobuses\\nautobusses\\nautocade\\nautocades\\nautocoid\\nautocoids\\nautocracies\\nautocracy\\nautocrat\\nautocratic\\nautocratically\\nautocrats\\nautodyne\\nautodynes\\nautoed\\nautogamies\\nautogamy\\nautogenies\\nautogeny\\nautogiro\\nautogiros\\nautograph\\nautographed\\nautographing\\nautographs\\nautogyro\\nautogyros\\nautoing\\nautolyze\\nautolyzed\\nautolyzes\\nautolyzing\\nautomata\\nautomate\\nautomateable\\nautomated\\nautomates\\nautomatic\\nautomatically\\nautomating\\nautomation\\nautomations\\nautomaton\\nautomatons\\nautomobile\\nautomobiles\\nautomotive\\nautonomies\\nautonomous\\nautonomously\\nautonomy\\nautopsic\\nautopsied\\nautopsies\\nautopsy\\nautopsying\\nautos\\nautosome\\nautosomes\\nautotomies\\nautotomy\\nautotype\\nautotypes\\nautotypies\\nautotypy\\nautumn\\nautumnal\\nautumns\\nautunite\\nautunites\\nauxeses\\nauxesis\\nauxetic\\nauxetics\\nauxiliaries\\nauxiliary\\nauxin\\nauxinic\\nauxins\\nava\\navail\\navailabilities\\navailability\\navailable\\navailed\\navailing\\navails\\navalanche\\navalanches\\navarice\\navarices\\navast\\navatar\\navatars\\navaunt\\nave\\navellan\\navellane\\navenge\\navenged\\navenger\\navengers\\navenges\\navenging\\navens\\navenses\\naventail\\naventails\\navenue\\navenues\\naver\\naverage\\naveraged\\naverages\\naveraging\\naverment\\naverments\\naverred\\naverring\\navers\\naverse\\naversely\\naversion\\naversions\\naversive\\navert\\naverted\\naverting\\naverts\\naves\\navgas\\navgases\\navgasses\\navian\\navianize\\navianized\\navianizes\\navianizing\\navians\\naviaries\\naviarist\\naviarists\\naviary\\naviate\\naviated\\naviates\\naviating\\naviation\\naviations\\naviator\\naviators\\naviatrices\\naviatrix\\naviatrixes\\navicular\\navid\\navidin\\navidins\\navidities\\navidity\\navidly\\navidness\\navidnesses\\navifauna\\navifaunae\\navifaunas\\navigator\\navigators\\navion\\navionic\\navionics\\navions\\naviso\\navisos\\navo\\navocado\\navocadoes\\navocados\\navocation\\navocations\\navocet\\navocets\\navodire\\navodires\\navoid\\navoidable\\navoidance\\navoidances\\navoided\\navoider\\navoiders\\navoiding\\navoids\\navoidupois\\navoidupoises\\navos\\navoset\\navosets\\navouch\\navouched\\navoucher\\navouchers\\navouches\\navouching\\navow\\navowable\\navowably\\navowal\\navowals\\navowed\\navowedly\\navower\\navowers\\navowing\\navows\\navulse\\navulsed\\navulses\\navulsing\\navulsion\\navulsions\\naw\\nawa\\nawait\\nawaited\\nawaiter\\nawaiters\\nawaiting\\nawaits\\nawake\\nawaked\\nawaken\\nawakened\\nawakener\\nawakeners\\nawakening\\nawakens\\nawakes\\nawaking\\naward\\nawarded\\nawardee\\nawardees\\nawarder\\nawarders\\nawarding\\nawards\\naware\\nawash\\naway\\nawayness\\nawaynesses\\nawe\\naweary\\naweather\\nawed\\nawee\\naweigh\\naweing\\naweless\\nawes\\nawesome\\nawesomely\\nawful\\nawfuller\\nawfullest\\nawfully\\nawhile\\nawhirl\\nawing\\nawkward\\nawkwarder\\nawkwardest\\nawkwardly\\nawkwardness\\nawkwardnesses\\nawl\\nawless\\nawls\\nawlwort\\nawlworts\\nawmous\\nawn\\nawned\\nawning\\nawninged\\nawnings\\nawnless\\nawns\\nawny\\nawoke\\nawoken\\nawol\\nawols\\nawry\\naxal\\naxe\\naxed\\naxel\\naxels\\naxeman\\naxemen\\naxenic\\naxes\\naxial\\naxialities\\naxiality\\naxially\\naxil\\naxile\\naxilla\\naxillae\\naxillar\\naxillaries\\naxillars\\naxillary\\naxillas\\naxils\\naxing\\naxiologies\\naxiology\\naxiom\\naxiomatic\\naxioms\\naxis\\naxised\\naxises\\naxite\\naxites\\naxle\\naxled\\naxles\\naxletree\\naxletrees\\naxlike\\naxman\\naxmen\\naxolotl\\naxolotls\\naxon\\naxonal\\naxone\\naxones\\naxonic\\naxons\\naxoplasm\\naxoplasms\\naxseed\\naxseeds\\nay\\nayah\\nayahs\\naye\\nayes\\nayin\\nayins\\nays\\nazalea\\nazaleas\\nazan\\nazans\\nazide\\nazides\\nazido\\nazimuth\\nazimuthal\\nazimuths\\nazine\\nazines\\nazo\\nazoic\\nazole\\nazoles\\nazon\\nazonal\\nazonic\\nazons\\nazote\\nazoted\\nazotemia\\nazotemias\\nazotemic\\nazotes\\nazoth\\nazoths\\nazotic\\nazotise\\nazotised\\nazotises\\nazotising\\nazotize\\nazotized\\nazotizes\\nazotizing\\nazoturia\\nazoturias\\nazure\\nazures\\nazurite\\nazurites\\nazygos\\nazygoses\\nazygous\\nba\\nbaa\\nbaaed\\nbaaing\\nbaal\\nbaalim\\nbaalism\\nbaalisms\\nbaals\\nbaas\\nbaba\\nbabas\\nbabassu\\nbabassus\\nbabbitt\\nbabbitted\\nbabbitting\\nbabbitts\\nbabble\\nbabbled\\nbabbler\\nbabblers\\nbabbles\\nbabbling\\nbabblings\\nbabbool\\nbabbools\\nbabe\\nbabel\\nbabels\\nbabes\\nbabesia\\nbabesias\\nbabiche\\nbabiches\\nbabied\\nbabies\\nbabirusa\\nbabirusas\\nbabka\\nbabkas\\nbaboo\\nbabool\\nbabools\\nbaboon\\nbaboons\\nbaboos\\nbabu\\nbabul\\nbabuls\\nbabus\\nbabushka\\nbabushkas\\nbaby\\nbabyhood\\nbabyhoods\\nbabying\\nbabyish\\nbacca\\nbaccae\\nbaccalaureate\\nbaccalaureates\\nbaccara\\nbaccaras\\nbaccarat\\nbaccarats\\nbaccate\\nbaccated\\nbacchant\\nbacchantes\\nbacchants\\nbacchic\\nbacchii\\nbacchius\\nbach\\nbached\\nbachelor\\nbachelorhood\\nbachelorhoods\\nbachelors\\nbaches\\nbaching\\nbacillar\\nbacillary\\nbacilli\\nbacillus\\nback\\nbackache\\nbackaches\\nbackarrow\\nbackarrows\\nbackbend\\nbackbends\\nbackbit\\nbackbite\\nbackbiter\\nbackbiters\\nbackbites\\nbackbiting\\nbackbitten\\nbackbone\\nbackbones\\nbackdoor\\nbackdrop\\nbackdrops\\nbacked\\nbacker\\nbackers\\nbackfill\\nbackfilled\\nbackfilling\\nbackfills\\nbackfire\\nbackfired\\nbackfires\\nbackfiring\\nbackgammon\\nbackgammons\\nbackground\\nbackgrounds\\nbackhand\\nbackhanded\\nbackhanding\\nbackhands\\nbackhoe\\nbackhoes\\nbacking\\nbackings\\nbacklash\\nbacklashed\\nbacklasher\\nbacklashers\\nbacklashes\\nbacklashing\\nbackless\\nbacklist\\nbacklists\\nbacklit\\nbacklog\\nbacklogged\\nbacklogging\\nbacklogs\\nbackmost\\nbackout\\nbackouts\\nbackpack\\nbackpacked\\nbackpacker\\nbackpacking\\nbackpacks\\nbackrest\\nbackrests\\nbacks\\nbacksaw\\nbacksaws\\nbackseat\\nbackseats\\nbackset\\nbacksets\\nbackside\\nbacksides\\nbackslap\\nbackslapped\\nbackslapping\\nbackslaps\\nbackslash\\nbackslashes\\nbackslid\\nbackslide\\nbackslided\\nbackslider\\nbacksliders\\nbackslides\\nbacksliding\\nbackspace\\nbackspaced\\nbackspaces\\nbackspacing\\nbackspin\\nbackspins\\nbackstay\\nbackstays\\nbackstop\\nbackstopped\\nbackstopping\\nbackstops\\nbackup\\nbackups\\nbackward\\nbackwardness\\nbackwardnesses\\nbackwards\\nbackwash\\nbackwashed\\nbackwashes\\nbackwashing\\nbackwood\\nbackwoods\\nbackyard\\nbackyards\\nbacon\\nbacons\\nbacteria\\nbacterial\\nbacterin\\nbacterins\\nbacteriologic\\nbacteriological\\nbacteriologies\\nbacteriologist\\nbacteriologists\\nbacteriology\\nbacterium\\nbaculine\\nbad\\nbaddie\\nbaddies\\nbaddy\\nbade\\nbadge\\nbadged\\nbadger\\nbadgered\\nbadgering\\nbadgerly\\nbadgers\\nbadges\\nbadging\\nbadinage\\nbadinaged\\nbadinages\\nbadinaging\\nbadland\\nbadlands\\nbadly\\nbadman\\nbadmen\\nbadminton\\nbadmintons\\nbadmouth\\nbadmouthed\\nbadmouthing\\nbadmouths\\nbadness\\nbadnesses\\nbads\\nbaff\\nbaffed\\nbaffies\\nbaffing\\nbaffle\\nbaffled\\nbaffler\\nbafflers\\nbaffles\\nbaffling\\nbaffs\\nbaffy\\nbag\\nbagass\\nbagasse\\nbagasses\\nbagatelle\\nbagatelles\\nbagel\\nbagels\\nbagful\\nbagfuls\\nbaggage\\nbaggages\\nbagged\\nbaggie\\nbaggier\\nbaggies\\nbaggiest\\nbaggily\\nbagging\\nbaggings\\nbaggy\\nbagman\\nbagmen\\nbagnio\\nbagnios\\nbagpipe\\nbagpiper\\nbagpipers\\nbagpipes\\nbags\\nbagsful\\nbaguet\\nbaguets\\nbaguette\\nbaguettes\\nbagwig\\nbagwigs\\nbagworm\\nbagworms\\nbah\\nbahadur\\nbahadurs\\nbaht\\nbahts\\nbaidarka\\nbaidarkas\\nbail\\nbailable\\nbailed\\nbailee\\nbailees\\nbailer\\nbailers\\nbailey\\nbaileys\\nbailie\\nbailies\\nbailiff\\nbailiffs\\nbailing\\nbailiwick\\nbailiwicks\\nbailment\\nbailments\\nbailor\\nbailors\\nbailout\\nbailouts\\nbails\\nbailsman\\nbailsmen\\nbairn\\nbairnish\\nbairnlier\\nbairnliest\\nbairnly\\nbairns\\nbait\\nbaited\\nbaiter\\nbaiters\\nbaith\\nbaiting\\nbaits\\nbaiza\\nbaizas\\nbaize\\nbaizes\\nbake\\nbaked\\nbakemeat\\nbakemeats\\nbaker\\nbakeries\\nbakers\\nbakery\\nbakes\\nbakeshop\\nbakeshops\\nbaking\\nbakings\\nbaklava\\nbaklavas\\nbaklawa\\nbaklawas\\nbakshish\\nbakshished\\nbakshishes\\nbakshishing\\nbal\\nbalance\\nbalanced\\nbalancer\\nbalancers\\nbalances\\nbalancing\\nbalas\\nbalases\\nbalata\\nbalatas\\nbalboa\\nbalboas\\nbalconies\\nbalcony\\nbald\\nbalded\\nbalder\\nbalderdash\\nbalderdashes\\nbaldest\\nbaldhead\\nbaldheads\\nbalding\\nbaldish\\nbaldly\\nbaldness\\nbaldnesses\\nbaldpate\\nbaldpates\\nbaldric\\nbaldrick\\nbaldricks\\nbaldrics\\nbalds\\nbale\\nbaled\\nbaleen\\nbaleens\\nbalefire\\nbalefires\\nbaleful\\nbaler\\nbalers\\nbales\\nbaling\\nbalisaur\\nbalisaurs\\nbalk\\nbalked\\nbalker\\nbalkers\\nbalkier\\nbalkiest\\nbalkily\\nbalking\\nbalkline\\nbalklines\\nbalks\\nbalky\\nball\\nballad\\nballade\\nballades\\nballadic\\nballadries\\nballadry\\nballads\\nballast\\nballasted\\nballasting\\nballasts\\nballed\\nballer\\nballerina\\nballerinas\\nballers\\nballet\\nballetic\\nballets\\nballing\\nballista\\nballistae\\nballistic\\nballistics\\nballon\\nballonet\\nballonets\\nballonne\\nballonnes\\nballons\\nballoon\\nballooned\\nballooning\\nballoonist\\nballoonists\\nballoons\\nballot\\nballoted\\nballoter\\nballoters\\nballoting\\nballots\\nballroom\\nballrooms\\nballs\\nbally\\nballyhoo\\nballyhooed\\nballyhooing\\nballyhoos\\nballyrag\\nballyragged\\nballyragging\\nballyrags\\nbalm\\nbalmier\\nbalmiest\\nbalmily\\nbalminess\\nbalminesses\\nbalmlike\\nbalmoral\\nbalmorals\\nbalms\\nbalmy\\nbalneal\\nbaloney\\nbaloneys\\nbals\\nbalsa\\nbalsam\\nbalsamed\\nbalsamic\\nbalsaming\\nbalsams\\nbalsas\\nbaltimore\\nbaluster\\nbalusters\\nbalustrade\\nbalustrades\\nbambini\\nbambino\\nbambinos\\nbamboo\\nbamboos\\nbamboozle\\nbamboozled\\nbamboozles\\nbamboozling\\nban\\nbanal\\nbanalities\\nbanality\\nbanally\\nbanana\\nbananas\\nbanausic\\nbanco\\nbancos\\nband\\nbandage\\nbandaged\\nbandager\\nbandagers\\nbandages\\nbandaging\\nbandana\\nbandanas\\nbandanna\\nbandannas\\nbandbox\\nbandboxes\\nbandeau\\nbandeaus\\nbandeaux\\nbanded\\nbander\\nbanderol\\nbanderols\\nbanders\\nbandied\\nbandies\\nbanding\\nbandit\\nbanditries\\nbanditry\\nbandits\\nbanditti\\nbandog\\nbandogs\\nbandora\\nbandoras\\nbandore\\nbandores\\nbands\\nbandsman\\nbandsmen\\nbandstand\\nbandstands\\nbandwagon\\nbandwagons\\nbandwidth\\nbandwidths\\nbandy\\nbandying\\nbane\\nbaned\\nbaneful\\nbanes\\nbang\\nbanged\\nbanger\\nbangers\\nbanging\\nbangkok\\nbangkoks\\nbangle\\nbangles\\nbangs\\nbangtail\\nbangtails\\nbani\\nbanian\\nbanians\\nbaning\\nbanish\\nbanished\\nbanisher\\nbanishers\\nbanishes\\nbanishing\\nbanishment\\nbanishments\\nbanister\\nbanisters\\nbanjo\\nbanjoes\\nbanjoist\\nbanjoists\\nbanjos\\nbank\\nbankable\\nbankbook\\nbankbooks\\nbanked\\nbanker\\nbankers\\nbanking\\nbankings\\nbanknote\\nbanknotes\\nbankroll\\nbankrolled\\nbankrolling\\nbankrolls\\nbankrupt\\nbankruptcies\\nbankruptcy\\nbankrupted\\nbankrupting\\nbankrupts\\nbanks\\nbanksia\\nbanksias\\nbankside\\nbanksides\\nbanned\\nbanner\\nbanneret\\nbannerets\\nbannerol\\nbannerols\\nbanners\\nbannet\\nbannets\\nbanning\\nbannock\\nbannocks\\nbanns\\nbanquet\\nbanqueted\\nbanqueting\\nbanquets\\nbans\\nbanshee\\nbanshees\\nbanshie\\nbanshies\\nbantam\\nbantams\\nbanter\\nbantered\\nbanterer\\nbanterers\\nbantering\\nbanters\\nbantling\\nbantlings\\nbanyan\\nbanyans\\nbanzai\\nbanzais\\nbaobab\\nbaobabs\\nbaptise\\nbaptised\\nbaptises\\nbaptisia\\nbaptisias\\nbaptising\\nbaptism\\nbaptismal\\nbaptisms\\nbaptist\\nbaptists\\nbaptize\\nbaptized\\nbaptizer\\nbaptizers\\nbaptizes\\nbaptizing\\nbar\\nbarathea\\nbaratheas\\nbarb\\nbarbal\\nbarbarian\\nbarbarians\\nbarbaric\\nbarbarity\\nbarbarous\\nbarbarously\\nbarbasco\\nbarbascos\\nbarbate\\nbarbe\\nbarbecue\\nbarbecued\\nbarbecues\\nbarbecuing\\nbarbed\\nbarbel\\nbarbell\\nbarbells\\nbarbels\\nbarber\\nbarbered\\nbarbering\\nbarberries\\nbarberry\\nbarbers\\nbarbes\\nbarbet\\nbarbets\\nbarbette\\nbarbettes\\nbarbican\\nbarbicans\\nbarbicel\\nbarbicels\\nbarbing\\nbarbital\\nbarbitals\\nbarbiturate\\nbarbiturates\\nbarbless\\nbarbs\\nbarbule\\nbarbules\\nbarbut\\nbarbuts\\nbarbwire\\nbarbwires\\nbard\\nbarde\\nbarded\\nbardes\\nbardic\\nbarding\\nbards\\nbare\\nbareback\\nbarebacked\\nbared\\nbarefaced\\nbarefit\\nbarefoot\\nbarefooted\\nbarege\\nbareges\\nbarehead\\nbareheaded\\nbarely\\nbareness\\nbarenesses\\nbarer\\nbares\\nbaresark\\nbaresarks\\nbarest\\nbarf\\nbarfed\\nbarfing\\nbarflies\\nbarfly\\nbarfs\\nbargain\\nbargained\\nbargaining\\nbargains\\nbarge\\nbarged\\nbargee\\nbargees\\nbargeman\\nbargemen\\nbarges\\nbarghest\\nbarghests\\nbarging\\nbarguest\\nbarguests\\nbarhop\\nbarhopped\\nbarhopping\\nbarhops\\nbaric\\nbarilla\\nbarillas\\nbaring\\nbarite\\nbarites\\nbaritone\\nbaritones\\nbarium\\nbariums\\nbark\\nbarked\\nbarkeep\\nbarkeeps\\nbarker\\nbarkers\\nbarkier\\nbarkiest\\nbarking\\nbarkless\\nbarks\\nbarky\\nbarleduc\\nbarleducs\\nbarless\\nbarley\\nbarleys\\nbarlow\\nbarlows\\nbarm\\nbarmaid\\nbarmaids\\nbarman\\nbarmen\\nbarmie\\nbarmier\\nbarmiest\\nbarms\\nbarmy\\nbarn\\nbarnacle\\nbarnacles\\nbarnier\\nbarniest\\nbarns\\nbarnstorm\\nbarnstorms\\nbarny\\nbarnyard\\nbarnyards\\nbarogram\\nbarograms\\nbarometer\\nbarometers\\nbarometric\\nbarometrical\\nbaron\\nbaronage\\nbaronages\\nbaroness\\nbaronesses\\nbaronet\\nbaronetcies\\nbaronetcy\\nbaronets\\nbarong\\nbarongs\\nbaronial\\nbaronies\\nbaronne\\nbaronnes\\nbarons\\nbarony\\nbaroque\\nbaroques\\nbarouche\\nbarouches\\nbarque\\nbarques\\nbarrable\\nbarrack\\nbarracked\\nbarracking\\nbarracks\\nbarracuda\\nbarracudas\\nbarrage\\nbarraged\\nbarrages\\nbarraging\\nbarranca\\nbarrancas\\nbarranco\\nbarrancos\\nbarrater\\nbarraters\\nbarrator\\nbarrators\\nbarratries\\nbarratry\\nbarre\\nbarred\\nbarrel\\nbarreled\\nbarreling\\nbarrelled\\nbarrelling\\nbarrels\\nbarren\\nbarrener\\nbarrenest\\nbarrenly\\nbarrenness\\nbarrennesses\\nbarrens\\nbarres\\nbarret\\nbarretor\\nbarretors\\nbarretries\\nbarretry\\nbarrets\\nbarrette\\nbarrettes\\nbarricade\\nbarricades\\nbarrier\\nbarriers\\nbarring\\nbarrio\\nbarrios\\nbarrister\\nbarristers\\nbarroom\\nbarrooms\\nbarrow\\nbarrows\\nbars\\nbarstool\\nbarstools\\nbartend\\nbartended\\nbartender\\nbartenders\\nbartending\\nbartends\\nbarter\\nbartered\\nbarterer\\nbarterers\\nbartering\\nbarters\\nbartholomew\\nbartisan\\nbartisans\\nbartizan\\nbartizans\\nbarware\\nbarwares\\nbarye\\nbaryes\\nbaryon\\nbaryonic\\nbaryons\\nbaryta\\nbarytas\\nbaryte\\nbarytes\\nbarytic\\nbarytone\\nbarytones\\nbas\\nbasal\\nbasally\\nbasalt\\nbasaltes\\nbasaltic\\nbasalts\\nbascule\\nbascules\\nbase\\nbaseball\\nbaseballs\\nbaseborn\\nbased\\nbaseless\\nbaseline\\nbaselines\\nbasely\\nbaseman\\nbasemen\\nbasement\\nbasements\\nbaseness\\nbasenesses\\nbasenji\\nbasenjis\\nbaser\\nbases\\nbasest\\nbash\\nbashaw\\nbashaws\\nbashed\\nbasher\\nbashers\\nbashes\\nbashful\\nbashfulness\\nbashfulnesses\\nbashing\\nbashlyk\\nbashlyks\\nbasic\\nbasically\\nbasicities\\nbasicity\\nbasics\\nbasidia\\nbasidial\\nbasidium\\nbasified\\nbasifier\\nbasifiers\\nbasifies\\nbasify\\nbasifying\\nbasil\\nbasilar\\nbasilary\\nbasilic\\nbasilica\\nbasilicae\\nbasilicas\\nbasilisk\\nbasilisks\\nbasils\\nbasin\\nbasinal\\nbasined\\nbasinet\\nbasinets\\nbasing\\nbasins\\nbasion\\nbasions\\nbasis\\nbask\\nbasked\\nbasket\\nbasketball\\nbasketballs\\nbasketful\\nbasketfuls\\nbasketries\\nbasketry\\nbaskets\\nbasking\\nbasks\\nbasophil\\nbasophils\\nbasque\\nbasques\\nbass\\nbasses\\nbasset\\nbasseted\\nbasseting\\nbassets\\nbassetted\\nbassetting\\nbassi\\nbassinet\\nbassinets\\nbassist\\nbassists\\nbassly\\nbassness\\nbassnesses\\nbasso\\nbassoon\\nbassoons\\nbassos\\nbasswood\\nbasswoods\\nbassy\\nbast\\nbastard\\nbastardies\\nbastardize\\nbastardized\\nbastardizes\\nbastardizing\\nbastards\\nbastardy\\nbaste\\nbasted\\nbaster\\nbasters\\nbastes\\nbastile\\nbastiles\\nbastille\\nbastilles\\nbasting\\nbastings\\nbastion\\nbastioned\\nbastions\\nbasts\\nbat\\nbatboy\\nbatboys\\nbatch\\nbatched\\nbatcher\\nbatchers\\nbatches\\nbatching\\nbate\\nbateau\\nbateaux\\nbated\\nbates\\nbatfish\\nbatfishes\\nbatfowl\\nbatfowled\\nbatfowling\\nbatfowls\\nbath\\nbathe\\nbathed\\nbather\\nbathers\\nbathes\\nbathetic\\nbathing\\nbathless\\nbathos\\nbathoses\\nbathrobe\\nbathrobes\\nbathroom\\nbathrooms\\nbaths\\nbathtub\\nbathtubs\\nbathyal\\nbatik\\nbatiks\\nbating\\nbatiste\\nbatistes\\nbatlike\\nbatman\\nbatmen\\nbaton\\nbatons\\nbats\\nbatsman\\nbatsmen\\nbatt\\nbattalia\\nbattalias\\nbattalion\\nbattalions\\nbatteau\\nbatteaux\\nbatted\\nbatten\\nbattened\\nbattener\\nbatteners\\nbattening\\nbattens\\nbatter\\nbattered\\nbatterie\\nbatteries\\nbattering\\nbatters\\nbattery\\nbattier\\nbattiest\\nbattik\\nbattiks\\nbatting\\nbattings\\nbattle\\nbattled\\nbattlefield\\nbattlefields\\nbattlement\\nbattlements\\nbattler\\nbattlers\\nbattles\\nbattleship\\nbattleships\\nbattling\\nbatts\\nbattu\\nbattue\\nbattues\\nbatty\\nbatwing\\nbaubee\\nbaubees\\nbauble\\nbaubles\\nbaud\\nbaudekin\\nbaudekins\\nbaudrons\\nbaudronses\\nbauds\\nbaulk\\nbaulked\\nbaulkier\\nbaulkiest\\nbaulking\\nbaulks\\nbaulky\\nbausond\\nbauxite\\nbauxites\\nbauxitic\\nbawbee\\nbawbees\\nbawcock\\nbawcocks\\nbawd\\nbawdier\\nbawdies\\nbawdiest\\nbawdily\\nbawdiness\\nbawdinesses\\nbawdric\\nbawdrics\\nbawdries\\nbawdry\\nbawds\\nbawdy\\nbawl\\nbawled\\nbawler\\nbawlers\\nbawling\\nbawls\\nbawsunt\\nbawtie\\nbawties\\nbawty\\nbay\\nbayadeer\\nbayadeers\\nbayadere\\nbayaderes\\nbayamo\\nbayamos\\nbayard\\nbayards\\nbayberries\\nbayberry\\nbayed\\nbaying\\nbayonet\\nbayoneted\\nbayoneting\\nbayonets\\nbayonetted\\nbayonetting\\nbayou\\nbayous\\nbays\\nbaywood\\nbaywoods\\nbazaar\\nbazaars\\nbazar\\nbazars\\nbazooka\\nbazookas\\nbdellium\\nbdelliums\\nbe\\nbeach\\nbeachboy\\nbeachboys\\nbeachcomber\\nbeachcombers\\nbeached\\nbeaches\\nbeachhead\\nbeachheads\\nbeachier\\nbeachiest\\nbeaching\\nbeachy\\nbeacon\\nbeaconed\\nbeaconing\\nbeacons\\nbead\\nbeaded\\nbeadier\\nbeadiest\\nbeadily\\nbeading\\nbeadings\\nbeadle\\nbeadles\\nbeadlike\\nbeadman\\nbeadmen\\nbeadroll\\nbeadrolls\\nbeads\\nbeadsman\\nbeadsmen\\nbeadwork\\nbeadworks\\nbeady\\nbeagle\\nbeagles\\nbeak\\nbeaked\\nbeaker\\nbeakers\\nbeakier\\nbeakiest\\nbeakless\\nbeaklike\\nbeaks\\nbeaky\\nbeam\\nbeamed\\nbeamier\\nbeamiest\\nbeamily\\nbeaming\\nbeamish\\nbeamless\\nbeamlike\\nbeams\\nbeamy\\nbean\\nbeanbag\\nbeanbags\\nbeanball\\nbeanballs\\nbeaned\\nbeaneries\\nbeanery\\nbeanie\\nbeanies\\nbeaning\\nbeanlike\\nbeano\\nbeanos\\nbeanpole\\nbeanpoles\\nbeans\\nbear\\nbearable\\nbearably\\nbearcat\\nbearcats\\nbeard\\nbearded\\nbearding\\nbeardless\\nbeards\\nbearer\\nbearers\\nbearing\\nbearings\\nbearish\\nbearlike\\nbears\\nbearskin\\nbearskins\\nbeast\\nbeastie\\nbeasties\\nbeastlier\\nbeastliest\\nbeastliness\\nbeastlinesses\\nbeastly\\nbeasts\\nbeat\\nbeatable\\nbeaten\\nbeater\\nbeaters\\nbeatific\\nbeatification\\nbeatifications\\nbeatified\\nbeatifies\\nbeatify\\nbeatifying\\nbeating\\nbeatings\\nbeatless\\nbeatnik\\nbeatniks\\nbeats\\nbeau\\nbeauish\\nbeaus\\nbeaut\\nbeauteously\\nbeauties\\nbeautification\\nbeautifications\\nbeautified\\nbeautifies\\nbeautiful\\nbeautifully\\nbeautify\\nbeautifying\\nbeauts\\nbeauty\\nbeaux\\nbeaver\\nbeavered\\nbeavering\\nbeavers\\nbebeeru\\nbebeerus\\nbeblood\\nbeblooded\\nbeblooding\\nbebloods\\nbebop\\nbebopper\\nbeboppers\\nbebops\\nbecalm\\nbecalmed\\nbecalming\\nbecalms\\nbecame\\nbecap\\nbecapped\\nbecapping\\nbecaps\\nbecarpet\\nbecarpeted\\nbecarpeting\\nbecarpets\\nbecause\\nbechalk\\nbechalked\\nbechalking\\nbechalks\\nbechamel\\nbechamels\\nbechance\\nbechanced\\nbechances\\nbechancing\\nbecharm\\nbecharmed\\nbecharming\\nbecharms\\nbeck\\nbecked\\nbecket\\nbeckets\\nbecking\\nbeckon\\nbeckoned\\nbeckoner\\nbeckoners\\nbeckoning\\nbeckons\\nbecks\\nbeclamor\\nbeclamored\\nbeclamoring\\nbeclamors\\nbeclasp\\nbeclasped\\nbeclasping\\nbeclasps\\nbecloak\\nbecloaked\\nbecloaking\\nbecloaks\\nbeclog\\nbeclogged\\nbeclogging\\nbeclogs\\nbeclothe\\nbeclothed\\nbeclothes\\nbeclothing\\nbecloud\\nbeclouded\\nbeclouding\\nbeclouds\\nbeclown\\nbeclowned\\nbeclowning\\nbeclowns\\nbecome\\nbecomes\\nbecoming\\nbecomingly\\nbecomings\\nbecoward\\nbecowarded\\nbecowarding\\nbecowards\\nbecrawl\\nbecrawled\\nbecrawling\\nbecrawls\\nbecrime\\nbecrimed\\nbecrimes\\nbecriming\\nbecrowd\\nbecrowded\\nbecrowding\\nbecrowds\\nbecrust\\nbecrusted\\nbecrusting\\nbecrusts\\nbecudgel\\nbecudgeled\\nbecudgeling\\nbecudgelled\\nbecudgelling\\nbecudgels\\nbecurse\\nbecursed\\nbecurses\\nbecursing\\nbecurst\\nbed\\nbedabble\\nbedabbled\\nbedabbles\\nbedabbling\\nbedamn\\nbedamned\\nbedamning\\nbedamns\\nbedarken\\nbedarkened\\nbedarkening\\nbedarkens\\nbedaub\\nbedaubed\\nbedaubing\\nbedaubs\\nbedazzle\\nbedazzled\\nbedazzles\\nbedazzling\\nbedbug\\nbedbugs\\nbedchair\\nbedchairs\\nbedclothes\\nbedcover\\nbedcovers\\nbedded\\nbedder\\nbedders\\nbedding\\nbeddings\\nbedeafen\\nbedeafened\\nbedeafening\\nbedeafens\\nbedeck\\nbedecked\\nbedecking\\nbedecks\\nbedel\\nbedell\\nbedells\\nbedels\\nbedeman\\nbedemen\\nbedesman\\nbedesmen\\nbedevil\\nbedeviled\\nbedeviling\\nbedevilled\\nbedevilling\\nbedevils\\nbedew\\nbedewed\\nbedewing\\nbedews\\nbedfast\\nbedframe\\nbedframes\\nbedgown\\nbedgowns\\nbediaper\\nbediapered\\nbediapering\\nbediapers\\nbedight\\nbedighted\\nbedighting\\nbedights\\nbedim\\nbedimmed\\nbedimming\\nbedimple\\nbedimpled\\nbedimples\\nbedimpling\\nbedims\\nbedirtied\\nbedirties\\nbedirty\\nbedirtying\\nbedizen\\nbedizened\\nbedizening\\nbedizens\\nbedlam\\nbedlamp\\nbedlamps\\nbedlams\\nbedless\\nbedlike\\nbedmaker\\nbedmakers\\nbedmate\\nbedmates\\nbedotted\\nbedouin\\nbedouins\\nbedpan\\nbedpans\\nbedplate\\nbedplates\\nbedpost\\nbedposts\\nbedquilt\\nbedquilts\\nbedraggled\\nbedrail\\nbedrails\\nbedrape\\nbedraped\\nbedrapes\\nbedraping\\nbedrench\\nbedrenched\\nbedrenches\\nbedrenching\\nbedrid\\nbedridden\\nbedrivel\\nbedriveled\\nbedriveling\\nbedrivelled\\nbedrivelling\\nbedrivels\\nbedrock\\nbedrocks\\nbedroll\\nbedrolls\\nbedroom\\nbedrooms\\nbedrug\\nbedrugged\\nbedrugging\\nbedrugs\\nbeds\\nbedside\\nbedsides\\nbedsonia\\nbedsonias\\nbedsore\\nbedsores\\nbedspread\\nbedspreads\\nbedstand\\nbedstands\\nbedstead\\nbedsteads\\nbedstraw\\nbedstraws\\nbedtick\\nbedticks\\nbedtime\\nbedtimes\\nbeduin\\nbeduins\\nbedumb\\nbedumbed\\nbedumbing\\nbedumbs\\nbedunce\\nbedunced\\nbedunces\\nbeduncing\\nbedward\\nbedwards\\nbedwarf\\nbedwarfed\\nbedwarfing\\nbedwarfs\\nbee\\nbeebee\\nbeebees\\nbeebread\\nbeebreads\\nbeech\\nbeechen\\nbeeches\\nbeechier\\nbeechiest\\nbeechnut\\nbeechnuts\\nbeechy\\nbeef\\nbeefcake\\nbeefcakes\\nbeefed\\nbeefier\\nbeefiest\\nbeefily\\nbeefing\\nbeefless\\nbeefs\\nbeefsteak\\nbeefsteaks\\nbeefwood\\nbeefwoods\\nbeefy\\nbeehive\\nbeehives\\nbeelike\\nbeeline\\nbeelines\\nbeelzebub\\nbeen\\nbeep\\nbeeped\\nbeeper\\nbeepers\\nbeeping\\nbeeps\\nbeer\\nbeerier\\nbeeriest\\nbeers\\nbeery\\nbees\\nbeeswax\\nbeeswaxes\\nbeeswing\\nbeeswings\\nbeet\\nbeetle\\nbeetled\\nbeetles\\nbeetling\\nbeetroot\\nbeetroots\\nbeets\\nbeeves\\nbefall\\nbefallen\\nbefalling\\nbefalls\\nbefell\\nbefinger\\nbefingered\\nbefingering\\nbefingers\\nbefit\\nbefits\\nbefitted\\nbefitting\\nbeflag\\nbeflagged\\nbeflagging\\nbeflags\\nbeflea\\nbefleaed\\nbefleaing\\nbefleas\\nbefleck\\nbeflecked\\nbeflecking\\nbeflecks\\nbeflower\\nbeflowered\\nbeflowering\\nbeflowers\\nbefog\\nbefogged\\nbefogging\\nbefogs\\nbefool\\nbefooled\\nbefooling\\nbefools\\nbefore\\nbeforehand\\nbefoul\\nbefouled\\nbefouler\\nbefoulers\\nbefouling\\nbefouls\\nbefret\\nbefrets\\nbefretted\\nbefretting\\nbefriend\\nbefriended\\nbefriending\\nbefriends\\nbefringe\\nbefringed\\nbefringes\\nbefringing\\nbefuddle\\nbefuddled\\nbefuddles\\nbefuddling\\nbeg\\nbegall\\nbegalled\\nbegalling\\nbegalls\\nbegan\\nbegat\\nbegaze\\nbegazed\\nbegazes\\nbegazing\\nbeget\\nbegets\\nbegetter\\nbegetters\\nbegetting\\nbeggar\\nbeggared\\nbeggaries\\nbeggaring\\nbeggarly\\nbeggars\\nbeggary\\nbegged\\nbegging\\nbegin\\nbeginner\\nbeginners\\nbeginning\\nbeginnings\\nbegins\\nbegird\\nbegirded\\nbegirding\\nbegirdle\\nbegirdled\\nbegirdles\\nbegirdling\\nbegirds\\nbegirt\\nbeglad\\nbegladded\\nbegladding\\nbeglads\\nbegloom\\nbegloomed\\nbeglooming\\nbeglooms\\nbegone\\nbegonia\\nbegonias\\nbegorah\\nbegorra\\nbegorrah\\nbegot\\nbegotten\\nbegrim\\nbegrime\\nbegrimed\\nbegrimes\\nbegriming\\nbegrimmed\\nbegrimming\\nbegrims\\nbegroan\\nbegroaned\\nbegroaning\\nbegroans\\nbegrudge\\nbegrudged\\nbegrudges\\nbegrudging\\nbegs\\nbeguile\\nbeguiled\\nbeguiler\\nbeguilers\\nbeguiles\\nbeguiling\\nbeguine\\nbeguines\\nbegulf\\nbegulfed\\nbegulfing\\nbegulfs\\nbegum\\nbegums\\nbegun\\nbehalf\\nbehalves\\nbehave\\nbehaved\\nbehaver\\nbehavers\\nbehaves\\nbehaving\\nbehavior\\nbehavioral\\nbehaviors\\nbehead\\nbeheaded\\nbeheading\\nbeheads\\nbeheld\\nbehemoth\\nbehemoths\\nbehest\\nbehests\\nbehind\\nbehinds\\nbehold\\nbeholden\\nbeholder\\nbeholders\\nbeholding\\nbeholds\\nbehoof\\nbehoove\\nbehooved\\nbehooves\\nbehooving\\nbehove\\nbehoved\\nbehoves\\nbehoving\\nbehowl\\nbehowled\\nbehowling\\nbehowls\\nbeige\\nbeiges\\nbeigy\\nbeing\\nbeings\\nbejewel\\nbejeweled\\nbejeweling\\nbejewelled\\nbejewelling\\nbejewels\\nbejumble\\nbejumbled\\nbejumbles\\nbejumbling\\nbekiss\\nbekissed\\nbekisses\\nbekissing\\nbeknight\\nbeknighted\\nbeknighting\\nbeknights\\nbeknot\\nbeknots\\nbeknotted\\nbeknotting\\nbel\\nbelabor\\nbelabored\\nbelaboring\\nbelabors\\nbelabour\\nbelaboured\\nbelabouring\\nbelabours\\nbelaced\\nbeladied\\nbeladies\\nbelady\\nbeladying\\nbelated\\nbelaud\\nbelauded\\nbelauding\\nbelauds\\nbelay\\nbelayed\\nbelaying\\nbelays\\nbelch\\nbelched\\nbelcher\\nbelchers\\nbelches\\nbelching\\nbeldam\\nbeldame\\nbeldames\\nbeldams\\nbeleaguer\\nbeleaguered\\nbeleaguering\\nbeleaguers\\nbeleap\\nbeleaped\\nbeleaping\\nbeleaps\\nbeleapt\\nbelfried\\nbelfries\\nbelfry\\nbelga\\nbelgas\\nbelie\\nbelied\\nbelief\\nbeliefs\\nbelier\\nbeliers\\nbelies\\nbelievable\\nbelievably\\nbelieve\\nbelieved\\nbeliever\\nbelievers\\nbelieves\\nbelieving\\nbelike\\nbeliquor\\nbeliquored\\nbeliquoring\\nbeliquors\\nbelittle\\nbelittled\\nbelittles\\nbelittling\\nbelive\\nbell\\nbelladonna\\nbelladonnas\\nbellbird\\nbellbirds\\nbellboy\\nbellboys\\nbelle\\nbelled\\nbelleek\\nbelleeks\\nbelles\\nbellhop\\nbellhops\\nbellicose\\nbellicosities\\nbellicosity\\nbellied\\nbellies\\nbelligerence\\nbelligerences\\nbelligerencies\\nbelligerency\\nbelligerent\\nbelligerents\\nbelling\\nbellman\\nbellmen\\nbellow\\nbellowed\\nbellower\\nbellowers\\nbellowing\\nbellows\\nbellpull\\nbellpulls\\nbells\\nbellwether\\nbellwethers\\nbellwort\\nbellworts\\nbelly\\nbellyache\\nbellyached\\nbellyaches\\nbellyaching\\nbellyful\\nbellyfuls\\nbellying\\nbelong\\nbelonged\\nbelonging\\nbelongings\\nbelongs\\nbeloved\\nbeloveds\\nbelow\\nbelows\\nbels\\nbelt\\nbelted\\nbelting\\nbeltings\\nbeltless\\nbeltline\\nbeltlines\\nbelts\\nbeltway\\nbeltways\\nbeluga\\nbelugas\\nbelying\\nbema\\nbemadam\\nbemadamed\\nbemadaming\\nbemadams\\nbemadden\\nbemaddened\\nbemaddening\\nbemaddens\\nbemas\\nbemata\\nbemean\\nbemeaned\\nbemeaning\\nbemeans\\nbemingle\\nbemingled\\nbemingles\\nbemingling\\nbemire\\nbemired\\nbemires\\nbemiring\\nbemist\\nbemisted\\nbemisting\\nbemists\\nbemix\\nbemixed\\nbemixes\\nbemixing\\nbemixt\\nbemoan\\nbemoaned\\nbemoaning\\nbemoans\\nbemock\\nbemocked\\nbemocking\\nbemocks\\nbemuddle\\nbemuddled\\nbemuddles\\nbemuddling\\nbemurmur\\nbemurmured\\nbemurmuring\\nbemurmurs\\nbemuse\\nbemused\\nbemuses\\nbemusing\\nbemuzzle\\nbemuzzled\\nbemuzzles\\nbemuzzling\\nben\\nbename\\nbenamed\\nbenames\\nbenaming\\nbench\\nbenched\\nbencher\\nbenchers\\nbenches\\nbenching\\nbend\\nbendable\\nbenday\\nbendayed\\nbendaying\\nbendays\\nbended\\nbendee\\nbendees\\nbender\\nbenders\\nbending\\nbends\\nbendways\\nbendwise\\nbendy\\nbendys\\nbene\\nbeneath\\nbenedick\\nbenedicks\\nbenedict\\nbenediction\\nbenedictions\\nbenedicts\\nbenefaction\\nbenefactions\\nbenefactor\\nbenefactors\\nbenefactress\\nbenefactresses\\nbenefic\\nbenefice\\nbeneficed\\nbeneficence\\nbeneficences\\nbeneficent\\nbenefices\\nbeneficial\\nbeneficially\\nbeneficiaries\\nbeneficiary\\nbeneficing\\nbenefit\\nbenefited\\nbenefiting\\nbenefits\\nbenefitted\\nbenefitting\\nbenempt\\nbenempted\\nbenes\\nbenevolence\\nbenevolences\\nbenevolent\\nbenign\\nbenignities\\nbenignity\\nbenignly\\nbenison\\nbenisons\\nbenjamin\\nbenjamins\\nbenne\\nbennes\\nbennet\\nbennets\\nbenni\\nbennies\\nbennis\\nbenny\\nbens\\nbent\\nbenthal\\nbenthic\\nbenthos\\nbenthoses\\nbents\\nbentwood\\nbentwoods\\nbenumb\\nbenumbed\\nbenumbing\\nbenumbs\\nbenzal\\nbenzene\\nbenzenes\\nbenzidin\\nbenzidins\\nbenzin\\nbenzine\\nbenzines\\nbenzins\\nbenzoate\\nbenzoates\\nbenzoic\\nbenzoin\\nbenzoins\\nbenzol\\nbenzole\\nbenzoles\\nbenzols\\nbenzoyl\\nbenzoyls\\nbenzyl\\nbenzylic\\nbenzyls\\nbepaint\\nbepainted\\nbepainting\\nbepaints\\nbepimple\\nbepimpled\\nbepimples\\nbepimpling\\nbequeath\\nbequeathed\\nbequeathing\\nbequeaths\\nbequest\\nbequests\\nberake\\nberaked\\nberakes\\nberaking\\nberascal\\nberascaled\\nberascaling\\nberascals\\nberate\\nberated\\nberates\\nberating\\nberberin\\nberberins\\nberceuse\\nberceuses\\nbereave\\nbereaved\\nbereavement\\nbereavements\\nbereaver\\nbereavers\\nbereaves\\nbereaving\\nbereft\\nberet\\nberets\\nberetta\\nberettas\\nberg\\nbergamot\\nbergamots\\nbergs\\nberhyme\\nberhymed\\nberhymes\\nberhyming\\nberiber\\nberibers\\nberime\\nberimed\\nberimes\\nberiming\\nberinged\\nberlin\\nberline\\nberlines\\nberlins\\nberm\\nberme\\nbermes\\nberms\\nbernicle\\nbernicles\\nbernstein\\nberobed\\nberouged\\nberretta\\nberrettas\\nberried\\nberries\\nberry\\nberrying\\nberseem\\nberseems\\nberserk\\nberserks\\nberth\\nbertha\\nberthas\\nberthed\\nberthing\\nberths\\nberyl\\nberyline\\nberyls\\nbescorch\\nbescorched\\nbescorches\\nbescorching\\nbescour\\nbescoured\\nbescouring\\nbescours\\nbescreen\\nbescreened\\nbescreening\\nbescreens\\nbeseech\\nbeseeched\\nbeseeches\\nbeseeching\\nbeseem\\nbeseemed\\nbeseeming\\nbeseems\\nbeset\\nbesets\\nbesetter\\nbesetters\\nbesetting\\nbeshadow\\nbeshadowed\\nbeshadowing\\nbeshadows\\nbeshame\\nbeshamed\\nbeshames\\nbeshaming\\nbeshiver\\nbeshivered\\nbeshivering\\nbeshivers\\nbeshout\\nbeshouted\\nbeshouting\\nbeshouts\\nbeshrew\\nbeshrewed\\nbeshrewing\\nbeshrews\\nbeshroud\\nbeshrouded\\nbeshrouding\\nbeshrouds\\nbeside\\nbesides\\nbesiege\\nbesieged\\nbesieger\\nbesiegers\\nbesieges\\nbesieging\\nbeslaved\\nbeslime\\nbeslimed\\nbeslimes\\nbesliming\\nbesmear\\nbesmeared\\nbesmearing\\nbesmears\\nbesmile\\nbesmiled\\nbesmiles\\nbesmiling\\nbesmirch\\nbesmirched\\nbesmirches\\nbesmirching\\nbesmoke\\nbesmoked\\nbesmokes\\nbesmoking\\nbesmooth\\nbesmoothed\\nbesmoothing\\nbesmooths\\nbesmudge\\nbesmudged\\nbesmudges\\nbesmudging\\nbesmut\\nbesmuts\\nbesmutted\\nbesmutting\\nbesnow\\nbesnowed\\nbesnowing\\nbesnows\\nbesom\\nbesoms\\nbesoothe\\nbesoothed\\nbesoothes\\nbesoothing\\nbesot\\nbesots\\nbesotted\\nbesotting\\nbesought\\nbespake\\nbespeak\\nbespeaking\\nbespeaks\\nbespoke\\nbespoken\\nbespouse\\nbespoused\\nbespouses\\nbespousing\\nbespread\\nbespreading\\nbespreads\\nbesprent\\nbest\\nbestead\\nbesteaded\\nbesteading\\nbesteads\\nbested\\nbestial\\nbestialities\\nbestiality\\nbestiaries\\nbestiary\\nbesting\\nbestir\\nbestirred\\nbestirring\\nbestirs\\nbestow\\nbestowal\\nbestowals\\nbestowed\\nbestowing\\nbestows\\nbestrew\\nbestrewed\\nbestrewing\\nbestrewn\\nbestrews\\nbestrid\\nbestridden\\nbestride\\nbestrides\\nbestriding\\nbestrode\\nbestrow\\nbestrowed\\nbestrowing\\nbestrown\\nbestrows\\nbests\\nbestud\\nbestudded\\nbestudding\\nbestuds\\nbeswarm\\nbeswarmed\\nbeswarming\\nbeswarms\\nbet\\nbeta\\nbetaine\\nbetaines\\nbetake\\nbetaken\\nbetakes\\nbetaking\\nbetas\\nbetatron\\nbetatrons\\nbetatter\\nbetattered\\nbetattering\\nbetatters\\nbetaxed\\nbetel\\nbetelnut\\nbetelnuts\\nbetels\\nbeth\\nbethank\\nbethanked\\nbethanking\\nbethanks\\nbethel\\nbethels\\nbethink\\nbethinking\\nbethinks\\nbethorn\\nbethorned\\nbethorning\\nbethorns\\nbethought\\nbeths\\nbethump\\nbethumped\\nbethumping\\nbethumps\\nbetide\\nbetided\\nbetides\\nbetiding\\nbetime\\nbetimes\\nbetise\\nbetises\\nbetoken\\nbetokened\\nbetokening\\nbetokens\\nbeton\\nbetonies\\nbetons\\nbetony\\nbetook\\nbetray\\nbetrayal\\nbetrayals\\nbetrayed\\nbetrayer\\nbetrayers\\nbetraying\\nbetrays\\nbetroth\\nbetrothal\\nbetrothals\\nbetrothed\\nbetrotheds\\nbetrothing\\nbetroths\\nbets\\nbetta\\nbettas\\nbetted\\nbetter\\nbettered\\nbettering\\nbetterment\\nbetterments\\nbetters\\nbetting\\nbettor\\nbettors\\nbetween\\nbetwixt\\nbeuncled\\nbevatron\\nbevatrons\\nbevel\\nbeveled\\nbeveler\\nbevelers\\nbeveling\\nbevelled\\nbeveller\\nbevellers\\nbevelling\\nbevels\\nbeverage\\nbeverages\\nbevies\\nbevomit\\nbevomited\\nbevomiting\\nbevomits\\nbevor\\nbevors\\nbevy\\nbewail\\nbewailed\\nbewailer\\nbewailers\\nbewailing\\nbewails\\nbeware\\nbewared\\nbewares\\nbewaring\\nbewearied\\nbewearies\\nbeweary\\nbewearying\\nbeweep\\nbeweeping\\nbeweeps\\nbewept\\nbewig\\nbewigged\\nbewigging\\nbewigs\\nbewilder\\nbewildered\\nbewildering\\nbewilderment\\nbewilderments\\nbewilders\\nbewinged\\nbewitch\\nbewitched\\nbewitches\\nbewitching\\nbeworm\\nbewormed\\nbeworming\\nbeworms\\nbeworried\\nbeworries\\nbeworry\\nbeworrying\\nbewrap\\nbewrapped\\nbewrapping\\nbewraps\\nbewrapt\\nbewray\\nbewrayed\\nbewrayer\\nbewrayers\\nbewraying\\nbewrays\\nbey\\nbeylic\\nbeylics\\nbeylik\\nbeyliks\\nbeyond\\nbeyonds\\nbeys\\nbezant\\nbezants\\nbezel\\nbezels\\nbezil\\nbezils\\nbezique\\nbeziques\\nbezoar\\nbezoars\\nbezzant\\nbezzants\\nbhakta\\nbhaktas\\nbhakti\\nbhaktis\\nbhang\\nbhangs\\nbheestie\\nbheesties\\nbheesty\\nbhistie\\nbhisties\\nbhoot\\nbhoots\\nbhut\\nbhuts\\nbi\\nbiacetyl\\nbiacetyls\\nbialy\\nbialys\\nbiannual\\nbiannually\\nbias\\nbiased\\nbiasedly\\nbiases\\nbiasing\\nbiasness\\nbiasnesses\\nbiassed\\nbiasses\\nbiassing\\nbiathlon\\nbiathlons\\nbiaxal\\nbiaxial\\nbib\\nbibasic\\nbibasilar\\nbibb\\nbibbed\\nbibber\\nbibberies\\nbibbers\\nbibbery\\nbibbing\\nbibbs\\nbibcock\\nbibcocks\\nbibelot\\nbibelots\\nbible\\nbibles\\nbibless\\nbiblical\\nbiblike\\nbibliographer\\nbibliographers\\nbibliographic\\nbibliographical\\nbibliographies\\nbibliography\\nbibs\\nbibulous\\nbicameral\\nbicarb\\nbicarbonate\\nbicarbonates\\nbicarbs\\nbice\\nbicentennial\\nbicentennials\\nbiceps\\nbicepses\\nbices\\nbichrome\\nbicker\\nbickered\\nbickerer\\nbickerers\\nbickering\\nbickers\\nbicolor\\nbicolored\\nbicolors\\nbicolour\\nbicolours\\nbiconcave\\nbiconcavities\\nbiconcavity\\nbiconvex\\nbiconvexities\\nbiconvexity\\nbicorn\\nbicorne\\nbicornes\\nbicron\\nbicrons\\nbicultural\\nbicuspid\\nbicuspids\\nbicycle\\nbicycled\\nbicycler\\nbicyclers\\nbicycles\\nbicyclic\\nbicycling\\nbid\\nbidarka\\nbidarkas\\nbidarkee\\nbidarkees\\nbiddable\\nbiddably\\nbidden\\nbidder\\nbidders\\nbiddies\\nbidding\\nbiddings\\nbiddy\\nbide\\nbided\\nbidental\\nbider\\nbiders\\nbides\\nbidet\\nbidets\\nbiding\\nbidirectional\\nbids\\nbield\\nbielded\\nbielding\\nbields\\nbiennia\\nbiennial\\nbiennially\\nbiennials\\nbiennium\\nbienniums\\nbier\\nbiers\\nbifacial\\nbiff\\nbiffed\\nbiffies\\nbiffin\\nbiffing\\nbiffins\\nbiffs\\nbiffy\\nbifid\\nbifidities\\nbifidity\\nbifidly\\nbifilar\\nbiflex\\nbifocal\\nbifocals\\nbifold\\nbiforate\\nbiforked\\nbiform\\nbiformed\\nbifunctional\\nbig\\nbigamies\\nbigamist\\nbigamists\\nbigamous\\nbigamy\\nbigaroon\\nbigaroons\\nbigeminies\\nbigeminy\\nbigeye\\nbigeyes\\nbigger\\nbiggest\\nbiggety\\nbiggie\\nbiggies\\nbiggin\\nbigging\\nbiggings\\nbiggins\\nbiggish\\nbiggity\\nbighead\\nbigheads\\nbighorn\\nbighorns\\nbight\\nbighted\\nbighting\\nbights\\nbigly\\nbigmouth\\nbigmouths\\nbigness\\nbignesses\\nbignonia\\nbignonias\\nbigot\\nbigoted\\nbigotries\\nbigotry\\nbigots\\nbigwig\\nbigwigs\\nbihourly\\nbijou\\nbijous\\nbijoux\\nbijugate\\nbijugous\\nbike\\nbiked\\nbiker\\nbikers\\nbikes\\nbikeway\\nbikeways\\nbiking\\nbikini\\nbikinied\\nbikinis\\nbilabial\\nbilabials\\nbilander\\nbilanders\\nbilateral\\nbilaterally\\nbilberries\\nbilberry\\nbilbo\\nbilboa\\nbilboas\\nbilboes\\nbilbos\\nbile\\nbiles\\nbilge\\nbilged\\nbilges\\nbilgier\\nbilgiest\\nbilging\\nbilgy\\nbiliary\\nbilinear\\nbilingual\\nbilious\\nbiliousness\\nbiliousnesses\\nbilirubin\\nbilk\\nbilked\\nbilker\\nbilkers\\nbilking\\nbilks\\nbill\\nbillable\\nbillboard\\nbillboards\\nbillbug\\nbillbugs\\nbilled\\nbiller\\nbillers\\nbillet\\nbilleted\\nbilleter\\nbilleters\\nbilleting\\nbillets\\nbillfish\\nbillfishes\\nbillfold\\nbillfolds\\nbillhead\\nbillheads\\nbillhook\\nbillhooks\\nbilliard\\nbilliards\\nbillie\\nbillies\\nbilling\\nbillings\\nbillion\\nbillions\\nbillionth\\nbillionths\\nbillon\\nbillons\\nbillow\\nbillowed\\nbillowier\\nbillowiest\\nbillowing\\nbillows\\nbillowy\\nbills\\nbilly\\nbillycan\\nbillycans\\nbilobate\\nbilobed\\nbilsted\\nbilsteds\\nbiltong\\nbiltongs\\nbima\\nbimah\\nbimahs\\nbimanous\\nbimanual\\nbimas\\nbimensal\\nbimester\\nbimesters\\nbimetal\\nbimetallic\\nbimetals\\nbimethyl\\nbimethyls\\nbimodal\\nbin\\nbinal\\nbinaries\\nbinary\\nbinate\\nbinately\\nbinational\\nbinationalism\\nbinationalisms\\nbinaural\\nbind\\nbindable\\nbinder\\nbinderies\\nbinders\\nbindery\\nbinding\\nbindings\\nbindle\\nbindles\\nbinds\\nbindweed\\nbindweeds\\nbine\\nbines\\nbinge\\nbinges\\nbingo\\nbingos\\nbinit\\nbinits\\nbinnacle\\nbinnacles\\nbinned\\nbinning\\nbinocle\\nbinocles\\nbinocular\\nbinocularly\\nbinoculars\\nbinomial\\nbinomials\\nbins\\nbint\\nbints\\nbio\\nbioassay\\nbioassayed\\nbioassaying\\nbioassays\\nbiochemical\\nbiochemicals\\nbiochemist\\nbiochemistries\\nbiochemistry\\nbiochemists\\nbiocidal\\nbiocide\\nbiocides\\nbioclean\\nbiocycle\\nbiocycles\\nbiodegradabilities\\nbiodegradability\\nbiodegradable\\nbiodegradation\\nbiodegradations\\nbiodegrade\\nbiodegraded\\nbiodegrades\\nbiodegrading\\nbiogen\\nbiogenic\\nbiogenies\\nbiogens\\nbiogeny\\nbiographer\\nbiographers\\nbiographic\\nbiographical\\nbiographies\\nbiography\\nbioherm\\nbioherms\\nbiologic\\nbiological\\nbiologics\\nbiologies\\nbiologist\\nbiologists\\nbiology\\nbiolyses\\nbiolysis\\nbiolytic\\nbiomass\\nbiomasses\\nbiome\\nbiomedical\\nbiomes\\nbiometries\\nbiometry\\nbionic\\nbionics\\nbionomic\\nbionomies\\nbionomy\\nbiont\\nbiontic\\nbionts\\nbiophysical\\nbiophysicist\\nbiophysicists\\nbiophysics\\nbioplasm\\nbioplasms\\nbiopsic\\nbiopsies\\nbiopsy\\nbioptic\\nbios\\nbioscope\\nbioscopes\\nbioscopies\\nbioscopy\\nbiota\\nbiotas\\nbiotic\\nbiotical\\nbiotics\\nbiotin\\nbiotins\\nbiotite\\nbiotites\\nbiotitic\\nbiotope\\nbiotopes\\nbiotron\\nbiotrons\\nbiotype\\nbiotypes\\nbiotypic\\nbiovular\\nbipack\\nbipacks\\nbiparental\\nbiparous\\nbiparted\\nbipartisan\\nbiparty\\nbiped\\nbipedal\\nbipeds\\nbiphenyl\\nbiphenyls\\nbiplane\\nbiplanes\\nbipod\\nbipods\\nbipolar\\nbiracial\\nbiracially\\nbiradial\\nbiramose\\nbiramous\\nbirch\\nbirched\\nbirchen\\nbirches\\nbirching\\nbird\\nbirdbath\\nbirdbaths\\nbirdbrained\\nbirdcage\\nbirdcages\\nbirdcall\\nbirdcalls\\nbirded\\nbirder\\nbirders\\nbirdfarm\\nbirdfarms\\nbirdhouse\\nbirdhouses\\nbirdie\\nbirdied\\nbirdieing\\nbirdies\\nbirding\\nbirdlike\\nbirdlime\\nbirdlimed\\nbirdlimes\\nbirdliming\\nbirdman\\nbirdmen\\nbirds\\nbirdseed\\nbirdseeds\\nbirdseye\\nbirdseyes\\nbireme\\nbiremes\\nbiretta\\nbirettas\\nbirk\\nbirkie\\nbirkies\\nbirks\\nbirl\\nbirle\\nbirled\\nbirler\\nbirlers\\nbirles\\nbirling\\nbirlings\\nbirls\\nbirr\\nbirred\\nbirretta\\nbirrettas\\nbirring\\nbirrs\\nbirse\\nbirses\\nbirth\\nbirthdate\\nbirthdates\\nbirthday\\nbirthdays\\nbirthed\\nbirthing\\nbirthplace\\nbirthplaces\\nbirthrate\\nbirthrates\\nbirths\\nbis\\nbiscuit\\nbiscuits\\nbise\\nbisect\\nbisected\\nbisecting\\nbisection\\nbisections\\nbisector\\nbisectors\\nbisects\\nbises\\nbisexual\\nbisexuals\\nbishop\\nbishoped\\nbishoping\\nbishops\\nbisk\\nbisks\\nbismuth\\nbismuths\\nbisnaga\\nbisnagas\\nbison\\nbisons\\nbisque\\nbisques\\nbistate\\nbister\\nbistered\\nbisters\\nbistort\\nbistorts\\nbistouries\\nbistoury\\nbistre\\nbistred\\nbistres\\nbistro\\nbistroic\\nbistros\\nbit\\nbitable\\nbitch\\nbitched\\nbitcheries\\nbitchery\\nbitches\\nbitchier\\nbitchiest\\nbitchily\\nbitching\\nbitchy\\nbite\\nbiteable\\nbiter\\nbiters\\nbites\\nbitewing\\nbitewings\\nbiting\\nbitingly\\nbits\\nbitstock\\nbitstocks\\nbitsy\\nbitt\\nbitted\\nbitten\\nbitter\\nbittered\\nbitterer\\nbitterest\\nbittering\\nbitterly\\nbittern\\nbitterness\\nbitternesses\\nbitterns\\nbitters\\nbittier\\nbittiest\\nbitting\\nbittings\\nbittock\\nbittocks\\nbitts\\nbitty\\nbitumen\\nbitumens\\nbituminous\\nbivalent\\nbivalents\\nbivalve\\nbivalved\\nbivalves\\nbivinyl\\nbivinyls\\nbivouac\\nbivouacked\\nbivouacking\\nbivouacks\\nbivouacs\\nbiweeklies\\nbiweekly\\nbiyearly\\nbizarre\\nbizarrely\\nbizarres\\nbize\\nbizes\\nbiznaga\\nbiznagas\\nbizonal\\nbizone\\nbizones\\nblab\\nblabbed\\nblabber\\nblabbered\\nblabbering\\nblabbers\\nblabbing\\nblabby\\nblabs\\nblack\\nblackball\\nblackballs\\nblackberries\\nblackberry\\nblackbird\\nblackbirds\\nblackboard\\nblackboards\\nblackboy\\nblackboys\\nblackcap\\nblackcaps\\nblacked\\nblacken\\nblackened\\nblackening\\nblackens\\nblacker\\nblackest\\nblackfin\\nblackfins\\nblackflies\\nblackfly\\nblackguard\\nblackguards\\nblackgum\\nblackgums\\nblackhead\\nblackheads\\nblacking\\nblackings\\nblackish\\nblackjack\\nblackjacks\\nblackleg\\nblacklegs\\nblacklist\\nblacklisted\\nblacklisting\\nblacklists\\nblackly\\nblackmail\\nblackmailed\\nblackmailer\\nblackmailers\\nblackmailing\\nblackmails\\nblackness\\nblacknesses\\nblackout\\nblackouts\\nblacks\\nblacksmith\\nblacksmiths\\nblacktop\\nblacktopped\\nblacktopping\\nblacktops\\nbladder\\nbladders\\nbladdery\\nblade\\nbladed\\nblades\\nblae\\nblah\\nblahs\\nblain\\nblains\\nblamable\\nblamably\\nblame\\nblamed\\nblameful\\nblameless\\nblamelessly\\nblamer\\nblamers\\nblames\\nblameworthiness\\nblameworthinesses\\nblameworthy\\nblaming\\nblanch\\nblanched\\nblancher\\nblanchers\\nblanches\\nblanching\\nbland\\nblander\\nblandest\\nblandish\\nblandished\\nblandishes\\nblandishing\\nblandishment\\nblandishments\\nblandly\\nblandness\\nblandnesses\\nblank\\nblanked\\nblanker\\nblankest\\nblanket\\nblanketed\\nblanketing\\nblankets\\nblanking\\nblankly\\nblankness\\nblanknesses\\nblanks\\nblare\\nblared\\nblares\\nblaring\\nblarney\\nblarneyed\\nblarneying\\nblarneys\\nblase\\nblaspheme\\nblasphemed\\nblasphemes\\nblasphemies\\nblaspheming\\nblasphemous\\nblasphemy\\nblast\\nblasted\\nblastema\\nblastemas\\nblastemata\\nblaster\\nblasters\\nblastie\\nblastier\\nblasties\\nblastiest\\nblasting\\nblastings\\nblastoff\\nblastoffs\\nblastoma\\nblastomas\\nblastomata\\nblasts\\nblastula\\nblastulae\\nblastulas\\nblasty\\nblat\\nblatancies\\nblatancy\\nblatant\\nblate\\nblather\\nblathered\\nblathering\\nblathers\\nblats\\nblatted\\nblatter\\nblattered\\nblattering\\nblatters\\nblatting\\nblaubok\\nblauboks\\nblaw\\nblawed\\nblawing\\nblawn\\nblaws\\nblaze\\nblazed\\nblazer\\nblazers\\nblazes\\nblazing\\nblazon\\nblazoned\\nblazoner\\nblazoners\\nblazoning\\nblazonries\\nblazonry\\nblazons\\nbleach\\nbleached\\nbleacher\\nbleachers\\nbleaches\\nbleaching\\nbleak\\nbleaker\\nbleakest\\nbleakish\\nbleakly\\nbleakness\\nbleaknesses\\nbleaks\\nblear\\nbleared\\nblearier\\nbleariest\\nblearily\\nblearing\\nblears\\nbleary\\nbleat\\nbleated\\nbleater\\nbleaters\\nbleating\\nbleats\\nbleb\\nblebby\\nblebs\\nbled\\nbleed\\nbleeder\\nbleeders\\nbleeding\\nbleedings\\nbleeds\\nblellum\\nblellums\\nblemish\\nblemished\\nblemishes\\nblemishing\\nblench\\nblenched\\nblencher\\nblenchers\\nblenches\\nblenching\\nblend\\nblende\\nblended\\nblender\\nblenders\\nblendes\\nblending\\nblends\\nblennies\\nblenny\\nblent\\nbleomycin\\nblesbok\\nblesboks\\nblesbuck\\nblesbucks\\nbless\\nblessed\\nblesseder\\nblessedest\\nblessedness\\nblessednesses\\nblesser\\nblessers\\nblesses\\nblessing\\nblessings\\nblest\\nblet\\nblether\\nblethered\\nblethering\\nblethers\\nblets\\nblew\\nblight\\nblighted\\nblighter\\nblighters\\nblighties\\nblighting\\nblights\\nblighty\\nblimey\\nblimp\\nblimpish\\nblimps\\nblimy\\nblin\\nblind\\nblindage\\nblindages\\nblinded\\nblinder\\nblinders\\nblindest\\nblindfold\\nblindfolded\\nblindfolding\\nblindfolds\\nblinding\\nblindly\\nblindness\\nblindnesses\\nblinds\\nblini\\nblinis\\nblink\\nblinkard\\nblinkards\\nblinked\\nblinker\\nblinkered\\nblinkering\\nblinkers\\nblinking\\nblinks\\nblintz\\nblintze\\nblintzes\\nblip\\nblipped\\nblipping\\nblips\\nbliss\\nblisses\\nblissful\\nblissfully\\nblister\\nblistered\\nblistering\\nblisters\\nblistery\\nblite\\nblites\\nblithe\\nblithely\\nblither\\nblithered\\nblithering\\nblithers\\nblithesome\\nblithest\\nblitz\\nblitzed\\nblitzes\\nblitzing\\nblizzard\\nblizzards\\nbloat\\nbloated\\nbloater\\nbloaters\\nbloating\\nbloats\\nblob\\nblobbed\\nblobbing\\nblobs\\nbloc\\nblock\\nblockade\\nblockaded\\nblockades\\nblockading\\nblockage\\nblockages\\nblocked\\nblocker\\nblockers\\nblockier\\nblockiest\\nblocking\\nblockish\\nblocks\\nblocky\\nblocs\\nbloke\\nblokes\\nblond\\nblonde\\nblonder\\nblondes\\nblondest\\nblondish\\nblonds\\nblood\\nbloodcurdling\\nblooded\\nbloodfin\\nbloodfins\\nbloodhound\\nbloodhounds\\nbloodied\\nbloodier\\nbloodies\\nbloodiest\\nbloodily\\nblooding\\nbloodings\\nbloodless\\nbloodmobile\\nbloodmobiles\\nbloodred\\nbloods\\nbloodshed\\nbloodsheds\\nbloodstain\\nbloodstained\\nbloodstains\\nbloodsucker\\nbloodsuckers\\nbloodsucking\\nbloodsuckings\\nbloodthirstily\\nbloodthirstiness\\nbloodthirstinesses\\nbloodthirsty\\nbloody\\nbloodying\\nbloom\\nbloomed\\nbloomer\\nbloomeries\\nbloomers\\nbloomery\\nbloomier\\nbloomiest\\nblooming\\nblooms\\nbloomy\\nbloop\\nblooped\\nblooper\\nbloopers\\nblooping\\nbloops\\nblossom\\nblossomed\\nblossoming\\nblossoms\\nblossomy\\nblot\\nblotch\\nblotched\\nblotches\\nblotchier\\nblotchiest\\nblotching\\nblotchy\\nblotless\\nblots\\nblotted\\nblotter\\nblotters\\nblottier\\nblottiest\\nblotting\\nblotto\\nblotty\\nblouse\\nbloused\\nblouses\\nblousier\\nblousiest\\nblousily\\nblousing\\nblouson\\nblousons\\nblousy\\nblow\\nblowback\\nblowbacks\\nblowby\\nblowbys\\nblower\\nblowers\\nblowfish\\nblowfishes\\nblowflies\\nblowfly\\nblowgun\\nblowguns\\nblowhard\\nblowhards\\nblowhole\\nblowholes\\nblowier\\nblowiest\\nblowing\\nblown\\nblowoff\\nblowoffs\\nblowout\\nblowouts\\nblowpipe\\nblowpipes\\nblows\\nblowsed\\nblowsier\\nblowsiest\\nblowsily\\nblowsy\\nblowtorch\\nblowtorches\\nblowtube\\nblowtubes\\nblowup\\nblowups\\nblowy\\nblowzed\\nblowzier\\nblowziest\\nblowzily\\nblowzy\\nblubber\\nblubbered\\nblubbering\\nblubbers\\nblubbery\\nblucher\\nbluchers\\nbludgeon\\nbludgeoned\\nbludgeoning\\nbludgeons\\nblue\\nblueball\\nblueballs\\nbluebell\\nbluebells\\nblueberries\\nblueberry\\nbluebill\\nbluebills\\nbluebird\\nbluebirds\\nbluebook\\nbluebooks\\nbluecap\\nbluecaps\\nbluecoat\\nbluecoats\\nblued\\nbluefin\\nbluefins\\nbluefish\\nbluefishes\\nbluegill\\nbluegills\\nbluegum\\nbluegums\\nbluehead\\nblueheads\\nblueing\\nblueings\\nblueish\\nbluejack\\nbluejacks\\nbluejay\\nbluejays\\nblueline\\nbluelines\\nbluely\\nblueness\\nbluenesses\\nbluenose\\nbluenoses\\nblueprint\\nblueprinted\\nblueprinting\\nblueprints\\nbluer\\nblues\\nbluesman\\nbluesmen\\nbluest\\nbluestem\\nbluestems\\nbluesy\\nbluet\\nbluets\\nblueweed\\nblueweeds\\nbluewood\\nbluewoods\\nbluey\\nblueys\\nbluff\\nbluffed\\nbluffer\\nbluffers\\nbluffest\\nbluffing\\nbluffly\\nbluffs\\nbluing\\nbluings\\nbluish\\nblume\\nblumed\\nblumes\\nbluming\\nblunder\\nblunderbuss\\nblunderbusses\\nblundered\\nblundering\\nblunders\\nblunge\\nblunged\\nblunger\\nblungers\\nblunges\\nblunging\\nblunt\\nblunted\\nblunter\\nbluntest\\nblunting\\nbluntly\\nbluntness\\nbluntnesses\\nblunts\\nblur\\nblurb\\nblurbs\\nblurred\\nblurrier\\nblurriest\\nblurrily\\nblurring\\nblurry\\nblurs\\nblurt\\nblurted\\nblurter\\nblurters\\nblurting\\nblurts\\nblush\\nblushed\\nblusher\\nblushers\\nblushes\\nblushful\\nblushing\\nbluster\\nblustered\\nblustering\\nblusters\\nblustery\\nblype\\nblypes\\nbo\\nboa\\nboar\\nboard\\nboarded\\nboarder\\nboarders\\nboarding\\nboardings\\nboardman\\nboardmen\\nboards\\nboardwalk\\nboardwalks\\nboarfish\\nboarfishes\\nboarish\\nboars\\nboart\\nboarts\\nboas\\nboast\\nboasted\\nboaster\\nboasters\\nboastful\\nboastfully\\nboasting\\nboasts\\nboat\\nboatable\\nboatbill\\nboatbills\\nboated\\nboatel\\nboatels\\nboater\\nboaters\\nboating\\nboatings\\nboatload\\nboatloads\\nboatman\\nboatmen\\nboats\\nboatsman\\nboatsmen\\nboatswain\\nboatswains\\nboatyard\\nboatyards\\nbob\\nbobbed\\nbobber\\nbobberies\\nbobbers\\nbobbery\\nbobbies\\nbobbin\\nbobbinet\\nbobbinets\\nbobbing\\nbobbins\\nbobble\\nbobbled\\nbobbles\\nbobbling\\nbobby\\nbobcat\\nbobcats\\nbobeche\\nbobeches\\nbobolink\\nbobolinks\\nbobs\\nbobsled\\nbobsleded\\nbobsleding\\nbobsleds\\nbobstay\\nbobstays\\nbobtail\\nbobtailed\\nbobtailing\\nbobtails\\nbobwhite\\nbobwhites\\nbocaccio\\nbocaccios\\nbocce\\nbocces\\nbocci\\nboccia\\nboccias\\nboccie\\nboccies\\nboccis\\nboche\\nboches\\nbock\\nbocks\\nbod\\nbode\\nboded\\nbodega\\nbodegas\\nbodement\\nbodements\\nbodes\\nbodice\\nbodices\\nbodied\\nbodies\\nbodiless\\nbodily\\nboding\\nbodingly\\nbodings\\nbodkin\\nbodkins\\nbods\\nbody\\nbodying\\nbodysurf\\nbodysurfed\\nbodysurfing\\nbodysurfs\\nbodywork\\nbodyworks\\nboehmite\\nboehmites\\nboff\\nboffin\\nboffins\\nboffo\\nboffola\\nboffolas\\nboffos\\nboffs\\nbog\\nbogan\\nbogans\\nbogbean\\nbogbeans\\nbogey\\nbogeyed\\nbogeying\\nbogeyman\\nbogeymen\\nbogeys\\nbogged\\nboggier\\nboggiest\\nbogging\\nboggish\\nboggle\\nboggled\\nboggler\\nbogglers\\nboggles\\nboggling\\nboggy\\nbogie\\nbogies\\nbogle\\nbogles\\nbogs\\nbogus\\nbogwood\\nbogwoods\\nbogy\\nbogyism\\nbogyisms\\nbogyman\\nbogymen\\nbogys\\nbohea\\nboheas\\nbohemia\\nbohemian\\nbohemians\\nbohemias\\nbohunk\\nbohunks\\nboil\\nboilable\\nboiled\\nboiler\\nboilers\\nboiling\\nboils\\nboisterous\\nboisterously\\nboite\\nboites\\nbola\\nbolar\\nbolas\\nbolases\\nbold\\nbolder\\nboldest\\nboldface\\nboldfaced\\nboldfaces\\nboldfacing\\nboldly\\nboldness\\nboldnesses\\nbole\\nbolero\\nboleros\\nboles\\nbolete\\nboletes\\nboleti\\nboletus\\nboletuses\\nbolide\\nbolides\\nbolivar\\nbolivares\\nbolivars\\nbolivia\\nbolivias\\nboll\\nbollard\\nbollards\\nbolled\\nbolling\\nbollix\\nbollixed\\nbollixes\\nbollixing\\nbollox\\nbolloxed\\nbolloxes\\nbolloxing\\nbolls\\nbollworm\\nbollworms\\nbolo\\nbologna\\nbolognas\\nboloney\\nboloneys\\nbolos\\nbolshevik\\nbolson\\nbolsons\\nbolster\\nbolstered\\nbolstering\\nbolsters\\nbolt\\nbolted\\nbolter\\nbolters\\nbolthead\\nboltheads\\nbolting\\nboltonia\\nboltonias\\nboltrope\\nboltropes\\nbolts\\nbolus\\nboluses\\nbomb\\nbombard\\nbombarded\\nbombardier\\nbombardiers\\nbombarding\\nbombardment\\nbombardments\\nbombards\\nbombast\\nbombastic\\nbombasts\\nbombe\\nbombed\\nbomber\\nbombers\\nbombes\\nbombing\\nbombload\\nbombloads\\nbombproof\\nbombs\\nbombshell\\nbombshells\\nbombycid\\nbombycids\\nbombyx\\nbombyxes\\nbonaci\\nbonacis\\nbonanza\\nbonanzas\\nbonbon\\nbonbons\\nbond\\nbondable\\nbondage\\nbondages\\nbonded\\nbonder\\nbonders\\nbondholder\\nbondholders\\nbonding\\nbondmaid\\nbondmaids\\nbondman\\nbondmen\\nbonds\\nbondsman\\nbondsmen\\nbonduc\\nbonducs\\nbondwoman\\nbondwomen\\nbone\\nboned\\nbonefish\\nbonefishes\\nbonehead\\nboneheads\\nboneless\\nboner\\nboners\\nbones\\nboneset\\nbonesets\\nboney\\nboneyard\\nboneyards\\nbonfire\\nbonfires\\nbong\\nbonged\\nbonging\\nbongo\\nbongoes\\nbongoist\\nbongoists\\nbongos\\nbongs\\nbonhomie\\nbonhomies\\nbonier\\nboniest\\nboniface\\nbonifaces\\nboniness\\nboninesses\\nboning\\nbonita\\nbonitas\\nbonito\\nbonitoes\\nbonitos\\nbonkers\\nbonne\\nbonnes\\nbonnet\\nbonneted\\nbonneting\\nbonnets\\nbonnie\\nbonnier\\nbonniest\\nbonnily\\nbonnock\\nbonnocks\\nbonny\\nbonsai\\nbonspell\\nbonspells\\nbonspiel\\nbonspiels\\nbontebok\\nbonteboks\\nbonus\\nbonuses\\nbony\\nbonze\\nbonzer\\nbonzes\\nboo\\nboob\\nboobies\\nbooboo\\nbooboos\\nboobs\\nbooby\\nboodle\\nboodled\\nboodler\\nboodlers\\nboodles\\nboodling\\nbooed\\nbooger\\nboogers\\nboogie\\nboogies\\nboogyman\\nboogymen\\nboohoo\\nboohooed\\nboohooing\\nboohoos\\nbooing\\nbook\\nbookcase\\nbookcases\\nbooked\\nbookend\\nbookends\\nbooker\\nbookers\\nbookie\\nbookies\\nbooking\\nbookings\\nbookish\\nbookkeeper\\nbookkeepers\\nbookkeeping\\nbookkeepings\\nbooklet\\nbooklets\\nbooklore\\nbooklores\\nbookmaker\\nbookmakers\\nbookmaking\\nbookmakings\\nbookman\\nbookmark\\nbookmarks\\nbookmen\\nbookrack\\nbookracks\\nbookrest\\nbookrests\\nbooks\\nbookseller\\nbooksellers\\nbookshelf\\nbookshelfs\\nbookshop\\nbookshops\\nbookstore\\nbookstores\\nbookworm\\nbookworms\\nboom\\nboomed\\nboomer\\nboomerang\\nboomerangs\\nboomers\\nboomier\\nboomiest\\nbooming\\nboomkin\\nboomkins\\nboomlet\\nboomlets\\nbooms\\nboomtown\\nboomtowns\\nboomy\\nboon\\nboondocks\\nboonies\\nboons\\nboor\\nboorish\\nboors\\nboos\\nboost\\nboosted\\nbooster\\nboosters\\nboosting\\nboosts\\nboot\\nbooted\\nbootee\\nbootees\\nbooteries\\nbootery\\nbooth\\nbooths\\nbootie\\nbooties\\nbooting\\nbootjack\\nbootjacks\\nbootlace\\nbootlaces\\nbootleg\\nbootlegged\\nbootlegger\\nbootleggers\\nbootlegging\\nbootlegs\\nbootless\\nbootlick\\nbootlicked\\nbootlicking\\nbootlicks\\nboots\\nbooty\\nbooze\\nboozed\\nboozer\\nboozers\\nboozes\\nboozier\\nbooziest\\nboozily\\nboozing\\nboozy\\nbop\\nbopped\\nbopper\\nboppers\\nbopping\\nbops\\nbora\\nboraces\\nboracic\\nboracite\\nboracites\\nborage\\nborages\\nborane\\nboranes\\nboras\\nborate\\nborated\\nborates\\nborax\\nboraxes\\nborazon\\nborazons\\nbordel\\nbordello\\nbordellos\\nbordels\\nborder\\nbordered\\nborderer\\nborderers\\nbordering\\nborderline\\nborders\\nbordure\\nbordures\\nbore\\nboreal\\nborecole\\nborecoles\\nbored\\nboredom\\nboredoms\\nborer\\nborers\\nbores\\nboric\\nboride\\nborides\\nboring\\nboringly\\nborings\\nborn\\nborne\\nborneol\\nborneols\\nbornite\\nbornites\\nboron\\nboronic\\nborons\\nborough\\nboroughs\\nborrow\\nborrowed\\nborrower\\nborrowers\\nborrowing\\nborrows\\nborsch\\nborsches\\nborscht\\nborschts\\nborstal\\nborstals\\nbort\\nborts\\nborty\\nbortz\\nbortzes\\nborzoi\\nborzois\\nbos\\nboscage\\nboscages\\nboschbok\\nboschboks\\nbosh\\nboshbok\\nboshboks\\nboshes\\nboshvark\\nboshvarks\\nbosk\\nboskage\\nboskages\\nbosker\\nbosket\\nboskets\\nboskier\\nboskiest\\nbosks\\nbosky\\nbosom\\nbosomed\\nbosoming\\nbosoms\\nbosomy\\nboson\\nbosons\\nbosque\\nbosques\\nbosquet\\nbosquets\\nboss\\nbossdom\\nbossdoms\\nbossed\\nbosses\\nbossier\\nbossies\\nbossiest\\nbossily\\nbossing\\nbossism\\nbossisms\\nbossy\\nboston\\nbostons\\nbosun\\nbosuns\\nbot\\nbotanic\\nbotanical\\nbotanies\\nbotanise\\nbotanised\\nbotanises\\nbotanising\\nbotanist\\nbotanists\\nbotanize\\nbotanized\\nbotanizes\\nbotanizing\\nbotany\\nbotch\\nbotched\\nbotcher\\nbotcheries\\nbotchers\\nbotchery\\nbotches\\nbotchier\\nbotchiest\\nbotchily\\nbotching\\nbotchy\\nbotel\\nbotels\\nbotflies\\nbotfly\\nboth\\nbother\\nbothered\\nbothering\\nbothers\\nbothersome\\nbotonee\\nbotonnee\\nbotryoid\\nbotryose\\nbots\\nbott\\nbottle\\nbottled\\nbottleneck\\nbottlenecks\\nbottler\\nbottlers\\nbottles\\nbottling\\nbottom\\nbottomed\\nbottomer\\nbottomers\\nbottoming\\nbottomless\\nbottomries\\nbottomry\\nbottoms\\nbotts\\nbotulin\\nbotulins\\nbotulism\\nbotulisms\\nboucle\\nboucles\\nboudoir\\nboudoirs\\nbouffant\\nbouffants\\nbouffe\\nbouffes\\nbough\\nboughed\\nboughpot\\nboughpots\\nboughs\\nbought\\nboughten\\nbougie\\nbougies\\nbouillon\\nbouillons\\nboulder\\nboulders\\nbouldery\\nboule\\nboules\\nboulle\\nboulles\\nbounce\\nbounced\\nbouncer\\nbouncers\\nbounces\\nbouncier\\nbounciest\\nbouncily\\nbouncing\\nbouncy\\nbound\\nboundaries\\nboundary\\nbounded\\nbounden\\nbounder\\nbounders\\nbounding\\nboundless\\nboundlessness\\nboundlessnesses\\nbounds\\nbounteous\\nbounteously\\nbountied\\nbounties\\nbountiful\\nbountifully\\nbounty\\nbouquet\\nbouquets\\nbourbon\\nbourbons\\nbourdon\\nbourdons\\nbourg\\nbourgeois\\nbourgeoisie\\nbourgeoisies\\nbourgeon\\nbourgeoned\\nbourgeoning\\nbourgeons\\nbourgs\\nbourn\\nbourne\\nbournes\\nbourns\\nbourree\\nbourrees\\nbourse\\nbourses\\nbourtree\\nbourtrees\\nbouse\\nboused\\nbouses\\nbousing\\nbousouki\\nbousoukia\\nbousoukis\\nbousy\\nbout\\nboutique\\nboutiques\\nbouts\\nbouzouki\\nbouzoukia\\nbouzoukis\\nbovid\\nbovids\\nbovine\\nbovinely\\nbovines\\nbovinities\\nbovinity\\nbow\\nbowed\\nbowel\\nboweled\\nboweling\\nbowelled\\nbowelling\\nbowels\\nbower\\nbowered\\nboweries\\nbowering\\nbowers\\nbowery\\nbowfin\\nbowfins\\nbowfront\\nbowhead\\nbowheads\\nbowing\\nbowingly\\nbowings\\nbowknot\\nbowknots\\nbowl\\nbowlder\\nbowlders\\nbowled\\nbowleg\\nbowlegs\\nbowler\\nbowlers\\nbowless\\nbowlful\\nbowlfuls\\nbowlike\\nbowline\\nbowlines\\nbowling\\nbowlings\\nbowllike\\nbowls\\nbowman\\nbowmen\\nbowpot\\nbowpots\\nbows\\nbowse\\nbowsed\\nbowses\\nbowshot\\nbowshots\\nbowsing\\nbowsprit\\nbowsprits\\nbowwow\\nbowwows\\nbowyer\\nbowyers\\nbox\\nboxberries\\nboxberry\\nboxcar\\nboxcars\\nboxed\\nboxer\\nboxers\\nboxes\\nboxfish\\nboxfishes\\nboxful\\nboxfuls\\nboxhaul\\nboxhauled\\nboxhauling\\nboxhauls\\nboxier\\nboxiest\\nboxiness\\nboxinesses\\nboxing\\nboxings\\nboxlike\\nboxthorn\\nboxthorns\\nboxwood\\nboxwoods\\nboxy\\nboy\\nboyar\\nboyard\\nboyards\\nboyarism\\nboyarisms\\nboyars\\nboycott\\nboycotted\\nboycotting\\nboycotts\\nboyhood\\nboyhoods\\nboyish\\nboyishly\\nboyishness\\nboyishnesses\\nboyla\\nboylas\\nboyo\\nboyos\\nboys\\nbozo\\nbozos\\nbra\\nbrabble\\nbrabbled\\nbrabbler\\nbrabblers\\nbrabbles\\nbrabbling\\nbrace\\nbraced\\nbracelet\\nbracelets\\nbracer\\nbracero\\nbraceros\\nbracers\\nbraces\\nbrach\\nbraches\\nbrachet\\nbrachets\\nbrachia\\nbrachial\\nbrachials\\nbrachium\\nbracing\\nbracings\\nbracken\\nbrackens\\nbracket\\nbracketed\\nbracketing\\nbrackets\\nbrackish\\nbract\\nbracteal\\nbracted\\nbractlet\\nbractlets\\nbracts\\nbrad\\nbradawl\\nbradawls\\nbradded\\nbradding\\nbradoon\\nbradoons\\nbrads\\nbrae\\nbraes\\nbrag\\nbraggart\\nbraggarts\\nbragged\\nbragger\\nbraggers\\nbraggest\\nbraggier\\nbraggiest\\nbragging\\nbraggy\\nbrags\\nbrahma\\nbrahmas\\nbraid\\nbraided\\nbraider\\nbraiders\\nbraiding\\nbraidings\\nbraids\\nbrail\\nbrailed\\nbrailing\\nbraille\\nbrailled\\nbrailles\\nbrailling\\nbrails\\nbrain\\nbrained\\nbrainier\\nbrainiest\\nbrainily\\nbraining\\nbrainish\\nbrainless\\nbrainpan\\nbrainpans\\nbrains\\nbrainstorm\\nbrainstorms\\nbrainy\\nbraise\\nbraised\\nbraises\\nbraising\\nbraize\\nbraizes\\nbrake\\nbrakeage\\nbrakeages\\nbraked\\nbrakeman\\nbrakemen\\nbrakes\\nbrakier\\nbrakiest\\nbraking\\nbraky\\nbramble\\nbrambled\\nbrambles\\nbramblier\\nbrambliest\\nbrambling\\nbrambly\\nbran\\nbranch\\nbranched\\nbranches\\nbranchia\\nbranchiae\\nbranchier\\nbranchiest\\nbranching\\nbranchy\\nbrand\\nbranded\\nbrander\\nbranders\\nbrandied\\nbrandies\\nbranding\\nbrandish\\nbrandished\\nbrandishes\\nbrandishing\\nbrands\\nbrandy\\nbrandying\\nbrank\\nbranks\\nbranned\\nbranner\\nbranners\\nbrannier\\nbranniest\\nbranning\\nbranny\\nbrans\\nbrant\\nbrantail\\nbrantails\\nbrants\\nbras\\nbrash\\nbrasher\\nbrashes\\nbrashest\\nbrashier\\nbrashiest\\nbrashly\\nbrashy\\nbrasier\\nbrasiers\\nbrasil\\nbrasilin\\nbrasilins\\nbrasils\\nbrass\\nbrassage\\nbrassages\\nbrassard\\nbrassards\\nbrassart\\nbrassarts\\nbrasses\\nbrassica\\nbrassicas\\nbrassie\\nbrassier\\nbrassiere\\nbrassieres\\nbrassies\\nbrassiest\\nbrassily\\nbrassish\\nbrassy\\nbrat\\nbrats\\nbrattice\\nbratticed\\nbrattices\\nbratticing\\nbrattier\\nbrattiest\\nbrattish\\nbrattle\\nbrattled\\nbrattles\\nbrattling\\nbratty\\nbraunite\\nbraunites\\nbrava\\nbravado\\nbravadoes\\nbravados\\nbravas\\nbrave\\nbraved\\nbravely\\nbraver\\nbraveries\\nbravers\\nbravery\\nbraves\\nbravest\\nbraving\\nbravo\\nbravoed\\nbravoes\\nbravoing\\nbravos\\nbravura\\nbravuras\\nbravure\\nbraw\\nbrawer\\nbrawest\\nbrawl\\nbrawled\\nbrawler\\nbrawlers\\nbrawlie\\nbrawlier\\nbrawliest\\nbrawling\\nbrawls\\nbrawly\\nbrawn\\nbrawnier\\nbrawniest\\nbrawnily\\nbrawns\\nbrawny\\nbraws\\nbraxies\\nbraxy\\nbray\\nbrayed\\nbrayer\\nbrayers\\nbraying\\nbrays\\nbraza\\nbrazas\\nbraze\\nbrazed\\nbrazen\\nbrazened\\nbrazening\\nbrazenly\\nbrazenness\\nbrazennesses\\nbrazens\\nbrazer\\nbrazers\\nbrazes\\nbrazier\\nbraziers\\nbrazil\\nbrazilin\\nbrazilins\\nbrazils\\nbrazing\\nbreach\\nbreached\\nbreacher\\nbreachers\\nbreaches\\nbreaching\\nbread\\nbreaded\\nbreading\\nbreadnut\\nbreadnuts\\nbreads\\nbreadth\\nbreadths\\nbreadwinner\\nbreadwinners\\nbreak\\nbreakable\\nbreakage\\nbreakages\\nbreakdown\\nbreakdowns\\nbreaker\\nbreakers\\nbreakfast\\nbreakfasted\\nbreakfasting\\nbreakfasts\\nbreaking\\nbreakings\\nbreakout\\nbreakouts\\nbreaks\\nbreakthrough\\nbreakthroughs\\nbreakup\\nbreakups\\nbream\\nbreamed\\nbreaming\\nbreams\\nbreast\\nbreastbone\\nbreastbones\\nbreasted\\nbreasting\\nbreasts\\nbreath\\nbreathe\\nbreathed\\nbreather\\nbreathers\\nbreathes\\nbreathier\\nbreathiest\\nbreathing\\nbreathless\\nbreathlessly\\nbreaths\\nbreathtaking\\nbreathy\\nbreccia\\nbreccial\\nbreccias\\nbrecham\\nbrechams\\nbrechan\\nbrechans\\nbred\\nbrede\\nbredes\\nbree\\nbreech\\nbreeched\\nbreeches\\nbreeching\\nbreed\\nbreeder\\nbreeders\\nbreeding\\nbreedings\\nbreeds\\nbreeks\\nbrees\\nbreeze\\nbreezed\\nbreezes\\nbreezier\\nbreeziest\\nbreezily\\nbreezing\\nbreezy\\nbregma\\nbregmata\\nbregmate\\nbrent\\nbrents\\nbrethren\\nbreve\\nbreves\\nbrevet\\nbrevetcies\\nbrevetcy\\nbreveted\\nbreveting\\nbrevets\\nbrevetted\\nbrevetting\\nbreviaries\\nbreviary\\nbrevier\\nbreviers\\nbrevities\\nbrevity\\nbrew\\nbrewage\\nbrewages\\nbrewed\\nbrewer\\nbreweries\\nbrewers\\nbrewery\\nbrewing\\nbrewings\\nbrewis\\nbrewises\\nbrews\\nbriar\\nbriard\\nbriards\\nbriars\\nbriary\\nbribable\\nbribe\\nbribed\\nbriber\\nbriberies\\nbribers\\nbribery\\nbribes\\nbribing\\nbrick\\nbrickbat\\nbrickbats\\nbricked\\nbrickier\\nbrickiest\\nbricking\\nbricklayer\\nbricklayers\\nbricklaying\\nbricklayings\\nbrickle\\nbricks\\nbricky\\nbricole\\nbricoles\\nbridal\\nbridally\\nbridals\\nbride\\nbridegroom\\nbridegrooms\\nbrides\\nbridesmaid\\nbridesmaids\\nbridge\\nbridgeable\\nbridgeables\\nbridged\\nbridges\\nbridging\\nbridgings\\nbridle\\nbridled\\nbridler\\nbridlers\\nbridles\\nbridling\\nbridoon\\nbridoons\\nbrie\\nbrief\\nbriefcase\\nbriefcases\\nbriefed\\nbriefer\\nbriefers\\nbriefest\\nbriefing\\nbriefings\\nbriefly\\nbriefness\\nbriefnesses\\nbriefs\\nbrier\\nbriers\\nbriery\\nbries\\nbrig\\nbrigade\\nbrigaded\\nbrigades\\nbrigadier\\nbrigadiers\\nbrigading\\nbrigand\\nbrigands\\nbright\\nbrighten\\nbrightened\\nbrightener\\nbrighteners\\nbrightening\\nbrightens\\nbrighter\\nbrightest\\nbrightly\\nbrightness\\nbrightnesses\\nbrights\\nbrigs\\nbrill\\nbrilliance\\nbrilliances\\nbrilliancies\\nbrilliancy\\nbrilliant\\nbrilliantly\\nbrills\\nbrim\\nbrimful\\nbrimfull\\nbrimless\\nbrimmed\\nbrimmer\\nbrimmers\\nbrimming\\nbrims\\nbrimstone\\nbrimstones\\nbrin\\nbrinded\\nbrindle\\nbrindled\\nbrindles\\nbrine\\nbrined\\nbriner\\nbriners\\nbrines\\nbring\\nbringer\\nbringers\\nbringing\\nbrings\\nbrinier\\nbrinies\\nbriniest\\nbrininess\\nbrininesses\\nbrining\\nbrinish\\nbrink\\nbrinks\\nbrins\\nbriny\\nbrio\\nbrioche\\nbrioches\\nbrionies\\nbriony\\nbrios\\nbriquet\\nbriquets\\nbriquetted\\nbriquetting\\nbrisance\\nbrisances\\nbrisant\\nbrisk\\nbrisked\\nbrisker\\nbriskest\\nbrisket\\nbriskets\\nbrisking\\nbriskly\\nbriskness\\nbrisknesses\\nbrisks\\nbrisling\\nbrislings\\nbristle\\nbristled\\nbristles\\nbristlier\\nbristliest\\nbristling\\nbristly\\nbristol\\nbristols\\nbrit\\nbritches\\nbrits\\nbritska\\nbritskas\\nbritt\\nbrittle\\nbrittled\\nbrittler\\nbrittles\\nbrittlest\\nbrittling\\nbritts\\nbritzka\\nbritzkas\\nbritzska\\nbritzskas\\nbroach\\nbroached\\nbroacher\\nbroachers\\nbroaches\\nbroaching\\nbroad\\nbroadax\\nbroadaxe\\nbroadaxes\\nbroadcast\\nbroadcasted\\nbroadcaster\\nbroadcasters\\nbroadcasting\\nbroadcasts\\nbroadcloth\\nbroadcloths\\nbroaden\\nbroadened\\nbroadening\\nbroadens\\nbroader\\nbroadest\\nbroadish\\nbroadloom\\nbroadlooms\\nbroadly\\nbroadness\\nbroadnesses\\nbroads\\nbroadside\\nbroadsides\\nbrocade\\nbrocaded\\nbrocades\\nbrocading\\nbrocatel\\nbrocatels\\nbroccoli\\nbroccolis\\nbroche\\nbrochure\\nbrochures\\nbrock\\nbrockage\\nbrockages\\nbrocket\\nbrockets\\nbrocks\\nbrocoli\\nbrocolis\\nbrogan\\nbrogans\\nbrogue\\nbrogueries\\nbroguery\\nbrogues\\nbroguish\\nbroider\\nbroidered\\nbroideries\\nbroidering\\nbroiders\\nbroidery\\nbroil\\nbroiled\\nbroiler\\nbroilers\\nbroiling\\nbroils\\nbrokage\\nbrokages\\nbroke\\nbroken\\nbrokenhearted\\nbrokenly\\nbroker\\nbrokerage\\nbrokerages\\nbrokers\\nbrollies\\nbrolly\\nbromal\\nbromals\\nbromate\\nbromated\\nbromates\\nbromating\\nbrome\\nbromelin\\nbromelins\\nbromes\\nbromic\\nbromid\\nbromide\\nbromides\\nbromidic\\nbromids\\nbromin\\nbromine\\nbromines\\nbromins\\nbromism\\nbromisms\\nbromo\\nbromos\\nbronc\\nbronchi\\nbronchia\\nbronchial\\nbronchitis\\nbroncho\\nbronchos\\nbronchospasm\\nbronchus\\nbronco\\nbroncos\\nbroncs\\nbronze\\nbronzed\\nbronzer\\nbronzers\\nbronzes\\nbronzier\\nbronziest\\nbronzing\\nbronzings\\nbronzy\\nbroo\\nbrooch\\nbrooches\\nbrood\\nbrooded\\nbrooder\\nbrooders\\nbroodier\\nbroodiest\\nbrooding\\nbroods\\nbroody\\nbrook\\nbrooked\\nbrooking\\nbrookite\\nbrookites\\nbrooklet\\nbrooklets\\nbrookline\\nbrooks\\nbroom\\nbroomed\\nbroomier\\nbroomiest\\nbrooming\\nbrooms\\nbroomstick\\nbroomsticks\\nbroomy\\nbroos\\nbrose\\nbroses\\nbrosy\\nbroth\\nbrothel\\nbrothels\\nbrother\\nbrothered\\nbrotherhood\\nbrotherhoods\\nbrothering\\nbrotherliness\\nbrotherlinesses\\nbrotherly\\nbrothers\\nbroths\\nbrothy\\nbrougham\\nbroughams\\nbrought\\nbrouhaha\\nbrouhahas\\nbrow\\nbrowbeat\\nbrowbeaten\\nbrowbeating\\nbrowbeats\\nbrowless\\nbrown\\nbrowned\\nbrowner\\nbrownest\\nbrownie\\nbrownier\\nbrownies\\nbrowniest\\nbrowning\\nbrownish\\nbrownout\\nbrownouts\\nbrowns\\nbrowny\\nbrows\\nbrowse\\nbrowsed\\nbrowser\\nbrowsers\\nbrowses\\nbrowsing\\nbrucella\\nbrucellae\\nbrucellas\\nbrucin\\nbrucine\\nbrucines\\nbrucins\\nbrugh\\nbrughs\\nbruin\\nbruins\\nbruise\\nbruised\\nbruiser\\nbruisers\\nbruises\\nbruising\\nbruit\\nbruited\\nbruiter\\nbruiters\\nbruiting\\nbruits\\nbrulot\\nbrulots\\nbrulyie\\nbrulyies\\nbrulzie\\nbrulzies\\nbrumal\\nbrumbies\\nbrumby\\nbrume\\nbrumes\\nbrumous\\nbrunch\\nbrunched\\nbrunches\\nbrunching\\nbrunet\\nbrunets\\nbrunette\\nbrunettes\\nbrunizem\\nbrunizems\\nbrunt\\nbrunts\\nbrush\\nbrushed\\nbrusher\\nbrushers\\nbrushes\\nbrushier\\nbrushiest\\nbrushing\\nbrushoff\\nbrushoffs\\nbrushup\\nbrushups\\nbrushy\\nbrusk\\nbrusker\\nbruskest\\nbrusque\\nbrusquely\\nbrusquer\\nbrusquest\\nbrut\\nbrutal\\nbrutalities\\nbrutality\\nbrutalize\\nbrutalized\\nbrutalizes\\nbrutalizing\\nbrutally\\nbrute\\nbruted\\nbrutely\\nbrutes\\nbrutified\\nbrutifies\\nbrutify\\nbrutifying\\nbruting\\nbrutish\\nbrutism\\nbrutisms\\nbruxism\\nbruxisms\\nbryologies\\nbryology\\nbryonies\\nbryony\\nbryozoan\\nbryozoans\\nbub\\nbubal\\nbubale\\nbubales\\nbubaline\\nbubalis\\nbubalises\\nbubals\\nbubbies\\nbubble\\nbubbled\\nbubbler\\nbubblers\\nbubbles\\nbubblier\\nbubblies\\nbubbliest\\nbubbling\\nbubbly\\nbubby\\nbubinga\\nbubingas\\nbubo\\nbuboed\\nbuboes\\nbubonic\\nbubs\\nbuccal\\nbuccally\\nbuck\\nbuckaroo\\nbuckaroos\\nbuckayro\\nbuckayros\\nbuckbean\\nbuckbeans\\nbucked\\nbuckeen\\nbuckeens\\nbucker\\nbuckeroo\\nbuckeroos\\nbuckers\\nbucket\\nbucketed\\nbucketful\\nbucketfuls\\nbucketing\\nbuckets\\nbuckeye\\nbuckeyes\\nbucking\\nbuckish\\nbuckle\\nbuckled\\nbuckler\\nbucklered\\nbucklering\\nbucklers\\nbuckles\\nbuckling\\nbucko\\nbuckoes\\nbuckra\\nbuckram\\nbuckramed\\nbuckraming\\nbuckrams\\nbuckras\\nbucks\\nbucksaw\\nbucksaws\\nbuckshee\\nbuckshees\\nbuckshot\\nbuckshots\\nbuckskin\\nbuckskins\\nbucktail\\nbucktails\\nbucktooth\\nbucktooths\\nbuckwheat\\nbuckwheats\\nbucolic\\nbucolics\\nbud\\nbudded\\nbudder\\nbudders\\nbuddies\\nbudding\\nbuddle\\nbuddleia\\nbuddleias\\nbuddles\\nbuddy\\nbudge\\nbudged\\nbudger\\nbudgers\\nbudges\\nbudget\\nbudgetary\\nbudgeted\\nbudgeter\\nbudgeters\\nbudgeting\\nbudgets\\nbudgie\\nbudgies\\nbudging\\nbudless\\nbudlike\\nbuds\\nbuff\\nbuffable\\nbuffalo\\nbuffaloed\\nbuffaloes\\nbuffaloing\\nbuffalos\\nbuffed\\nbuffer\\nbuffered\\nbuffering\\nbuffers\\nbuffet\\nbuffeted\\nbuffeter\\nbuffeters\\nbuffeting\\nbuffets\\nbuffi\\nbuffier\\nbuffiest\\nbuffing\\nbuffo\\nbuffoon\\nbuffoons\\nbuffos\\nbuffs\\nbuffy\\nbug\\nbugaboo\\nbugaboos\\nbugbane\\nbugbanes\\nbugbear\\nbugbears\\nbugeye\\nbugeyes\\nbugged\\nbugger\\nbuggered\\nbuggeries\\nbuggering\\nbuggers\\nbuggery\\nbuggier\\nbuggies\\nbuggiest\\nbugging\\nbuggy\\nbughouse\\nbughouses\\nbugle\\nbugled\\nbugler\\nbuglers\\nbugles\\nbugling\\nbugloss\\nbuglosses\\nbugs\\nbugseed\\nbugseeds\\nbugsha\\nbugshas\\nbuhl\\nbuhls\\nbuhlwork\\nbuhlworks\\nbuhr\\nbuhrs\\nbuild\\nbuilded\\nbuilder\\nbuilders\\nbuilding\\nbuildings\\nbuilds\\nbuildup\\nbuildups\\nbuilt\\nbuirdly\\nbulb\\nbulbar\\nbulbed\\nbulbel\\nbulbels\\nbulbil\\nbulbils\\nbulbous\\nbulbs\\nbulbul\\nbulbuls\\nbulge\\nbulged\\nbulger\\nbulgers\\nbulges\\nbulgier\\nbulgiest\\nbulging\\nbulgur\\nbulgurs\\nbulgy\\nbulimia\\nbulimiac\\nbulimias\\nbulimic\\nbulk\\nbulkage\\nbulkages\\nbulked\\nbulkhead\\nbulkheads\\nbulkier\\nbulkiest\\nbulkily\\nbulking\\nbulks\\nbulky\\nbull\\nbulla\\nbullace\\nbullaces\\nbullae\\nbullate\\nbullbat\\nbullbats\\nbulldog\\nbulldogged\\nbulldogging\\nbulldogs\\nbulldoze\\nbulldozed\\nbulldozer\\nbulldozers\\nbulldozes\\nbulldozing\\nbulled\\nbullet\\nbulleted\\nbulletin\\nbulletined\\nbulleting\\nbulletining\\nbulletins\\nbulletproof\\nbulletproofs\\nbullets\\nbullfight\\nbullfighter\\nbullfighters\\nbullfights\\nbullfinch\\nbullfinches\\nbullfrog\\nbullfrogs\\nbullhead\\nbullheaded\\nbullheads\\nbullhorn\\nbullhorns\\nbullied\\nbullier\\nbullies\\nbulliest\\nbulling\\nbullion\\nbullions\\nbullish\\nbullneck\\nbullnecks\\nbullnose\\nbullnoses\\nbullock\\nbullocks\\nbullocky\\nbullous\\nbullpen\\nbullpens\\nbullpout\\nbullpouts\\nbullring\\nbullrings\\nbullrush\\nbullrushes\\nbulls\\nbullweed\\nbullweeds\\nbullwhip\\nbullwhipped\\nbullwhipping\\nbullwhips\\nbully\\nbullyboy\\nbullyboys\\nbullying\\nbullyrag\\nbullyragged\\nbullyragging\\nbullyrags\\nbulrush\\nbulrushes\\nbulwark\\nbulwarked\\nbulwarking\\nbulwarks\\nbum\\nbumble\\nbumblebee\\nbumblebees\\nbumbled\\nbumbler\\nbumblers\\nbumbles\\nbumbling\\nbumblings\\nbumboat\\nbumboats\\nbumf\\nbumfs\\nbumkin\\nbumkins\\nbummed\\nbummer\\nbummers\\nbumming\\nbump\\nbumped\\nbumper\\nbumpered\\nbumpering\\nbumpers\\nbumpier\\nbumpiest\\nbumpily\\nbumping\\nbumpkin\\nbumpkins\\nbumps\\nbumpy\\nbums\\nbun\\nbunch\\nbunched\\nbunches\\nbunchier\\nbunchiest\\nbunchily\\nbunching\\nbunchy\\nbunco\\nbuncoed\\nbuncoing\\nbuncombe\\nbuncombes\\nbuncos\\nbund\\nbundist\\nbundists\\nbundle\\nbundled\\nbundler\\nbundlers\\nbundles\\nbundling\\nbundlings\\nbunds\\nbung\\nbungalow\\nbungalows\\nbunged\\nbunghole\\nbungholes\\nbunging\\nbungle\\nbungled\\nbungler\\nbunglers\\nbungles\\nbungling\\nbunglings\\nbungs\\nbunion\\nbunions\\nbunk\\nbunked\\nbunker\\nbunkered\\nbunkering\\nbunkers\\nbunking\\nbunkmate\\nbunkmates\\nbunko\\nbunkoed\\nbunkoing\\nbunkos\\nbunks\\nbunkum\\nbunkums\\nbunky\\nbunn\\nbunnies\\nbunns\\nbunny\\nbuns\\nbunt\\nbunted\\nbunter\\nbunters\\nbunting\\nbuntings\\nbuntline\\nbuntlines\\nbunts\\nbunya\\nbunyas\\nbuoy\\nbuoyage\\nbuoyages\\nbuoyance\\nbuoyances\\nbuoyancies\\nbuoyancy\\nbuoyant\\nbuoyed\\nbuoying\\nbuoys\\nbuqsha\\nbuqshas\\nbur\\nbura\\nburan\\nburans\\nburas\\nburble\\nburbled\\nburbler\\nburblers\\nburbles\\nburblier\\nburbliest\\nburbling\\nburbly\\nburbot\\nburbots\\nburd\\nburden\\nburdened\\nburdener\\nburdeners\\nburdening\\nburdens\\nburdensome\\nburdie\\nburdies\\nburdock\\nburdocks\\nburds\\nbureau\\nbureaucracies\\nbureaucracy\\nbureaucrat\\nbureaucratic\\nbureaucrats\\nbureaus\\nbureaux\\nburet\\nburets\\nburette\\nburettes\\nburg\\nburgage\\nburgages\\nburgee\\nburgees\\nburgeon\\nburgeoned\\nburgeoning\\nburgeons\\nburger\\nburgers\\nburgess\\nburgesses\\nburgh\\nburghal\\nburgher\\nburghers\\nburghs\\nburglar\\nburglaries\\nburglarize\\nburglarized\\nburglarizes\\nburglarizing\\nburglars\\nburglary\\nburgle\\nburgled\\nburgles\\nburgling\\nburgonet\\nburgonets\\nburgoo\\nburgoos\\nburgout\\nburgouts\\nburgrave\\nburgraves\\nburgs\\nburgundies\\nburgundy\\nburial\\nburials\\nburied\\nburier\\nburiers\\nburies\\nburin\\nburins\\nburke\\nburked\\nburker\\nburkers\\nburkes\\nburking\\nburkite\\nburkites\\nburl\\nburlap\\nburlaps\\nburled\\nburler\\nburlers\\nburlesk\\nburlesks\\nburlesque\\nburlesqued\\nburlesques\\nburlesquing\\nburley\\nburleys\\nburlier\\nburliest\\nburlily\\nburling\\nburls\\nburly\\nburn\\nburnable\\nburned\\nburner\\nburners\\nburnet\\nburnets\\nburnie\\nburnies\\nburning\\nburnings\\nburnish\\nburnished\\nburnishes\\nburnishing\\nburnoose\\nburnooses\\nburnous\\nburnouses\\nburnout\\nburnouts\\nburns\\nburnt\\nburp\\nburped\\nburping\\nburps\\nburr\\nburred\\nburrer\\nburrers\\nburrier\\nburriest\\nburring\\nburro\\nburros\\nburrow\\nburrowed\\nburrower\\nburrowers\\nburrowing\\nburrows\\nburrs\\nburry\\nburs\\nbursa\\nbursae\\nbursal\\nbursar\\nbursaries\\nbursars\\nbursary\\nbursas\\nbursate\\nburse\\nburseed\\nburseeds\\nburses\\nbursitis\\nbursitises\\nburst\\nbursted\\nburster\\nbursters\\nbursting\\nburstone\\nburstones\\nbursts\\nburthen\\nburthened\\nburthening\\nburthens\\nburton\\nburtons\\nburweed\\nburweeds\\nbury\\nburying\\nbus\\nbusbies\\nbusboy\\nbusboys\\nbusby\\nbused\\nbuses\\nbush\\nbushbuck\\nbushbucks\\nbushed\\nbushel\\nbusheled\\nbusheler\\nbushelers\\nbusheling\\nbushelled\\nbushelling\\nbushels\\nbusher\\nbushers\\nbushes\\nbushfire\\nbushfires\\nbushgoat\\nbushgoats\\nbushido\\nbushidos\\nbushier\\nbushiest\\nbushily\\nbushing\\nbushings\\nbushland\\nbushlands\\nbushless\\nbushlike\\nbushman\\nbushmen\\nbushtit\\nbushtits\\nbushy\\nbusied\\nbusier\\nbusies\\nbusiest\\nbusily\\nbusiness\\nbusinesses\\nbusinessman\\nbusinessmen\\nbusinesswoman\\nbusinesswomen\\nbusing\\nbusings\\nbusk\\nbusked\\nbusker\\nbuskers\\nbuskin\\nbuskined\\nbusking\\nbuskins\\nbusks\\nbusman\\nbusmen\\nbuss\\nbussed\\nbusses\\nbussing\\nbussings\\nbust\\nbustard\\nbustards\\nbusted\\nbuster\\nbusters\\nbustic\\nbustics\\nbustier\\nbustiest\\nbusting\\nbustle\\nbustled\\nbustles\\nbustling\\nbusts\\nbusty\\nbusulfan\\nbusulfans\\nbusy\\nbusybodies\\nbusybody\\nbusying\\nbusyness\\nbusynesses\\nbusywork\\nbusyworks\\nbut\\nbutane\\nbutanes\\nbutanol\\nbutanols\\nbutanone\\nbutanones\\nbutch\\nbutcher\\nbutchered\\nbutcheries\\nbutchering\\nbutchers\\nbutchery\\nbutches\\nbutene\\nbutenes\\nbuteo\\nbuteos\\nbutler\\nbutleries\\nbutlers\\nbutlery\\nbuts\\nbutt\\nbuttals\\nbutte\\nbutted\\nbutter\\nbuttercup\\nbuttercups\\nbuttered\\nbutterfat\\nbutterfats\\nbutterflies\\nbutterfly\\nbutterier\\nbutteries\\nbutteriest\\nbuttering\\nbuttermilk\\nbutternut\\nbutternuts\\nbutters\\nbutterscotch\\nbutterscotches\\nbuttery\\nbuttes\\nbutties\\nbutting\\nbuttock\\nbuttocks\\nbutton\\nbuttoned\\nbuttoner\\nbuttoners\\nbuttonhole\\nbuttonholes\\nbuttoning\\nbuttons\\nbuttony\\nbuttress\\nbuttressed\\nbuttresses\\nbuttressing\\nbutts\\nbutty\\nbutut\\nbututs\\nbutyl\\nbutylate\\nbutylated\\nbutylates\\nbutylating\\nbutylene\\nbutylenes\\nbutyls\\nbutyral\\nbutyrals\\nbutyrate\\nbutyrates\\nbutyric\\nbutyrin\\nbutyrins\\nbutyrous\\nbutyryl\\nbutyryls\\nbuxom\\nbuxomer\\nbuxomest\\nbuxomly\\nbuy\\nbuyable\\nbuyer\\nbuyers\\nbuying\\nbuys\\nbuzz\\nbuzzard\\nbuzzards\\nbuzzed\\nbuzzer\\nbuzzers\\nbuzzes\\nbuzzing\\nbuzzwig\\nbuzzwigs\\nbuzzword\\nbuzzwords\\nbuzzy\\nbwana\\nbwanas\\nby\\nbye\\nbyelaw\\nbyelaws\\nbyes\\nbygone\\nbygones\\nbylaw\\nbylaws\\nbyline\\nbylined\\nbyliner\\nbyliners\\nbylines\\nbylining\\nbyname\\nbynames\\nbypass\\nbypassed\\nbypasses\\nbypassing\\nbypast\\nbypath\\nbypaths\\nbyplay\\nbyplays\\nbyre\\nbyres\\nbyrl\\nbyrled\\nbyrling\\nbyrls\\nbyrnie\\nbyrnies\\nbyroad\\nbyroads\\nbys\\nbyssi\\nbyssus\\nbyssuses\\nbystander\\nbystanders\\nbystreet\\nbystreets\\nbytalk\\nbytalks\\nbyte\\nbytes\\nbyway\\nbyways\\nbyword\\nbywords\\nbywork\\nbyworks\\nbyzant\\nbyzants\\ncab\\ncabal\\ncabala\\ncabalas\\ncabalism\\ncabalisms\\ncabalist\\ncabalists\\ncaballed\\ncaballing\\ncabals\\ncabana\\ncabanas\\ncabaret\\ncabarets\\ncabbage\\ncabbaged\\ncabbages\\ncabbaging\\ncabbala\\ncabbalah\\ncabbalahs\\ncabbalas\\ncabbie\\ncabbies\\ncabby\\ncaber\\ncabers\\ncabestro\\ncabestros\\ncabezon\\ncabezone\\ncabezones\\ncabezons\\ncabildo\\ncabildos\\ncabin\\ncabined\\ncabinet\\ncabinetmaker\\ncabinetmakers\\ncabinetmaking\\ncabinetmakings\\ncabinets\\ncabinetwork\\ncabinetworks\\ncabining\\ncabins\\ncable\\ncabled\\ncablegram\\ncablegrams\\ncables\\ncablet\\ncablets\\ncableway\\ncableways\\ncabling\\ncabman\\ncabmen\\ncabob\\ncabobs\\ncaboched\\ncabochon\\ncabochons\\ncaboodle\\ncaboodles\\ncaboose\\ncabooses\\ncaboshed\\ncabotage\\ncabotages\\ncabresta\\ncabrestas\\ncabresto\\ncabrestos\\ncabretta\\ncabrettas\\ncabrilla\\ncabrillas\\ncabriole\\ncabrioles\\ncabs\\ncabstand\\ncabstands\\ncacao\\ncacaos\\ncachalot\\ncachalots\\ncache\\ncached\\ncachepot\\ncachepots\\ncaches\\ncachet\\ncachets\\ncachexia\\ncachexias\\ncachexic\\ncachexies\\ncachexy\\ncaching\\ncachou\\ncachous\\ncachucha\\ncachuchas\\ncacique\\ncaciques\\ncackle\\ncackled\\ncackler\\ncacklers\\ncackles\\ncackling\\ncacodyl\\ncacodyls\\ncacomixl\\ncacomixls\\ncacophonies\\ncacophonous\\ncacophony\\ncacti\\ncactoid\\ncactus\\ncactuses\\ncad\\ncadaster\\ncadasters\\ncadastre\\ncadastres\\ncadaver\\ncadavers\\ncaddice\\ncaddices\\ncaddie\\ncaddied\\ncaddies\\ncaddis\\ncaddises\\ncaddish\\ncaddishly\\ncaddishness\\ncaddishnesses\\ncaddy\\ncaddying\\ncade\\ncadelle\\ncadelles\\ncadence\\ncadenced\\ncadences\\ncadencies\\ncadencing\\ncadency\\ncadent\\ncadenza\\ncadenzas\\ncades\\ncadet\\ncadets\\ncadge\\ncadged\\ncadger\\ncadgers\\ncadges\\ncadging\\ncadgy\\ncadi\\ncadis\\ncadmic\\ncadmium\\ncadmiums\\ncadre\\ncadres\\ncads\\ncaducean\\ncaducei\\ncaduceus\\ncaducities\\ncaducity\\ncaducous\\ncaeca\\ncaecal\\ncaecally\\ncaecum\\ncaeoma\\ncaeomas\\ncaesium\\ncaesiums\\ncaestus\\ncaestuses\\ncaesura\\ncaesurae\\ncaesural\\ncaesuras\\ncaesuric\\ncafe\\ncafes\\ncafeteria\\ncafeterias\\ncaffein\\ncaffeine\\ncaffeines\\ncaffeins\\ncaftan\\ncaftans\\ncage\\ncaged\\ncageling\\ncagelings\\ncager\\ncages\\ncagey\\ncagier\\ncagiest\\ncagily\\ncaginess\\ncaginesses\\ncaging\\ncagy\\ncahier\\ncahiers\\ncahoot\\ncahoots\\ncahow\\ncahows\\ncaid\\ncaids\\ncaiman\\ncaimans\\ncain\\ncains\\ncaique\\ncaiques\\ncaird\\ncairds\\ncairn\\ncairned\\ncairns\\ncairny\\ncaisson\\ncaissons\\ncaitiff\\ncaitiffs\\ncajaput\\ncajaputs\\ncajeput\\ncajeputs\\ncajole\\ncajoled\\ncajoler\\ncajoleries\\ncajolers\\ncajolery\\ncajoles\\ncajoling\\ncajon\\ncajones\\ncajuput\\ncajuputs\\ncake\\ncaked\\ncakes\\ncakewalk\\ncakewalked\\ncakewalking\\ncakewalks\\ncaking\\ncalabash\\ncalabashes\\ncaladium\\ncaladiums\\ncalamar\\ncalamaries\\ncalamars\\ncalamary\\ncalami\\ncalamine\\ncalamined\\ncalamines\\ncalamining\\ncalamint\\ncalamints\\ncalamite\\ncalamites\\ncalamities\\ncalamitous\\ncalamitously\\ncalamitousness\\ncalamitousnesses\\ncalamity\\ncalamus\\ncalando\\ncalash\\ncalashes\\ncalathi\\ncalathos\\ncalathus\\ncalcanea\\ncalcanei\\ncalcar\\ncalcaria\\ncalcars\\ncalceate\\ncalces\\ncalcic\\ncalcific\\ncalcification\\ncalcifications\\ncalcified\\ncalcifies\\ncalcify\\ncalcifying\\ncalcine\\ncalcined\\ncalcines\\ncalcining\\ncalcite\\ncalcites\\ncalcitic\\ncalcium\\ncalciums\\ncalcspar\\ncalcspars\\ncalctufa\\ncalctufas\\ncalctuff\\ncalctuffs\\ncalculable\\ncalculably\\ncalculate\\ncalculated\\ncalculates\\ncalculating\\ncalculation\\ncalculations\\ncalculator\\ncalculators\\ncalculi\\ncalculus\\ncalculuses\\ncaldera\\ncalderas\\ncaldron\\ncaldrons\\ncaleche\\ncaleches\\ncalendal\\ncalendar\\ncalendared\\ncalendaring\\ncalendars\\ncalender\\ncalendered\\ncalendering\\ncalenders\\ncalends\\ncalesa\\ncalesas\\ncalf\\ncalflike\\ncalfs\\ncalfskin\\ncalfskins\\ncaliber\\ncalibers\\ncalibrate\\ncalibrated\\ncalibrates\\ncalibrating\\ncalibration\\ncalibrations\\ncalibrator\\ncalibrators\\ncalibre\\ncalibred\\ncalibres\\ncalices\\ncaliche\\ncaliches\\ncalicle\\ncalicles\\ncalico\\ncalicoes\\ncalicos\\ncalif\\ncalifate\\ncalifates\\ncalifornia\\ncalifs\\ncalipash\\ncalipashes\\ncalipee\\ncalipees\\ncaliper\\ncalipered\\ncalipering\\ncalipers\\ncaliph\\ncaliphal\\ncaliphate\\ncaliphates\\ncaliphs\\ncalisaya\\ncalisayas\\ncalisthenic\\ncalisthenics\\ncalix\\ncalk\\ncalked\\ncalker\\ncalkers\\ncalkin\\ncalking\\ncalkins\\ncalks\\ncall\\ncalla\\ncallable\\ncallan\\ncallans\\ncallant\\ncallants\\ncallas\\ncallback\\ncallbacks\\ncallboy\\ncallboys\\ncalled\\ncaller\\ncallers\\ncallet\\ncallets\\ncalli\\ncalling\\ncallings\\ncalliope\\ncalliopes\\ncallipee\\ncallipees\\ncalliper\\ncallipered\\ncallipering\\ncallipers\\ncallose\\ncalloses\\ncallosities\\ncallosity\\ncallous\\ncalloused\\ncallouses\\ncallousing\\ncallously\\ncallousness\\ncallousnesses\\ncallow\\ncallower\\ncallowest\\ncallowness\\ncallownesses\\ncalls\\ncallus\\ncallused\\ncalluses\\ncallusing\\ncalm\\ncalmed\\ncalmer\\ncalmest\\ncalming\\ncalmly\\ncalmness\\ncalmnesses\\ncalms\\ncalomel\\ncalomels\\ncaloric\\ncalorics\\ncalorie\\ncalories\\ncalory\\ncalotte\\ncalottes\\ncaloyer\\ncaloyers\\ncalpac\\ncalpack\\ncalpacks\\ncalpacs\\ncalque\\ncalqued\\ncalques\\ncalquing\\ncalthrop\\ncalthrops\\ncaltrap\\ncaltraps\\ncaltrop\\ncaltrops\\ncalumet\\ncalumets\\ncalumniate\\ncalumniated\\ncalumniates\\ncalumniating\\ncalumniation\\ncalumniations\\ncalumnies\\ncalumnious\\ncalumny\\ncalutron\\ncalutrons\\ncalvados\\ncalvadoses\\ncalvaria\\ncalvarias\\ncalvaries\\ncalvary\\ncalve\\ncalved\\ncalves\\ncalving\\ncalx\\ncalxes\\ncalycate\\ncalyceal\\ncalyces\\ncalycine\\ncalycle\\ncalycles\\ncalyculi\\ncalypso\\ncalypsoes\\ncalypsos\\ncalypter\\ncalypters\\ncalyptra\\ncalyptras\\ncalyx\\ncalyxes\\ncam\\ncamail\\ncamailed\\ncamails\\ncamaraderie\\ncamaraderies\\ncamas\\ncamases\\ncamass\\ncamasses\\ncamber\\ncambered\\ncambering\\ncambers\\ncambia\\ncambial\\ncambism\\ncambisms\\ncambist\\ncambists\\ncambium\\ncambiums\\ncambogia\\ncambogias\\ncambric\\ncambrics\\ncambridge\\ncame\\ncamel\\ncameleer\\ncameleers\\ncamelia\\ncamelias\\ncamellia\\ncamellias\\ncamels\\ncameo\\ncameoed\\ncameoing\\ncameos\\ncamera\\ncamerae\\ncameral\\ncameraman\\ncameramen\\ncameras\\ncames\\ncamion\\ncamions\\ncamisa\\ncamisade\\ncamisades\\ncamisado\\ncamisadoes\\ncamisados\\ncamisas\\ncamise\\ncamises\\ncamisia\\ncamisias\\ncamisole\\ncamisoles\\ncamlet\\ncamlets\\ncamomile\\ncamomiles\\ncamorra\\ncamorras\\ncamouflage\\ncamouflaged\\ncamouflages\\ncamouflaging\\ncamp\\ncampagna\\ncampagne\\ncampaign\\ncampaigned\\ncampaigner\\ncampaigners\\ncampaigning\\ncampaigns\\ncampanile\\ncampaniles\\ncampanili\\ncamped\\ncamper\\ncampers\\ncampfire\\ncampfires\\ncampground\\ncampgrounds\\ncamphene\\ncamphenes\\ncamphine\\ncamphines\\ncamphol\\ncamphols\\ncamphor\\ncamphors\\ncampi\\ncampier\\ncampiest\\ncampily\\ncamping\\ncampings\\ncampion\\ncampions\\ncampo\\ncampong\\ncampongs\\ncamporee\\ncamporees\\ncampos\\ncamps\\ncampsite\\ncampsites\\ncampus\\ncampuses\\ncampy\\ncams\\ncamshaft\\ncamshafts\\ncan\\ncanaille\\ncanailles\\ncanakin\\ncanakins\\ncanal\\ncanaled\\ncanaling\\ncanalise\\ncanalised\\ncanalises\\ncanalising\\ncanalize\\ncanalized\\ncanalizes\\ncanalizing\\ncanalled\\ncanaller\\ncanallers\\ncanalling\\ncanals\\ncanape\\ncanapes\\ncanard\\ncanards\\ncanaries\\ncanary\\ncanasta\\ncanastas\\ncancan\\ncancans\\ncancel\\ncanceled\\ncanceler\\ncancelers\\ncanceling\\ncancellation\\ncancellations\\ncancelled\\ncancelling\\ncancels\\ncancer\\ncancerlog\\ncancerous\\ncancerously\\ncancers\\ncancha\\ncanchas\\ncancroid\\ncancroids\\ncandela\\ncandelabra\\ncandelabras\\ncandelabrum\\ncandelas\\ncandent\\ncandid\\ncandida\\ncandidacies\\ncandidacy\\ncandidas\\ncandidate\\ncandidates\\ncandider\\ncandidest\\ncandidly\\ncandidness\\ncandidnesses\\ncandids\\ncandied\\ncandies\\ncandle\\ncandled\\ncandlelight\\ncandlelights\\ncandler\\ncandlers\\ncandles\\ncandlestick\\ncandlesticks\\ncandling\\ncandor\\ncandors\\ncandour\\ncandours\\ncandy\\ncandying\\ncane\\ncaned\\ncanella\\ncanellas\\ncaner\\ncaners\\ncanes\\ncaneware\\ncanewares\\ncanfield\\ncanfields\\ncanful\\ncanfuls\\ncangue\\ncangues\\ncanikin\\ncanikins\\ncanine\\ncanines\\ncaning\\ncaninities\\ncaninity\\ncanister\\ncanisters\\ncanities\\ncanker\\ncankered\\ncankering\\ncankerous\\ncankers\\ncanna\\ncannabic\\ncannabin\\ncannabins\\ncannabis\\ncannabises\\ncannas\\ncanned\\ncannel\\ncannelon\\ncannelons\\ncannels\\ncanner\\ncanneries\\ncanners\\ncannery\\ncannibal\\ncannibalism\\ncannibalisms\\ncannibalistic\\ncannibalize\\ncannibalized\\ncannibalizes\\ncannibalizing\\ncannibals\\ncannie\\ncannier\\ncanniest\\ncannikin\\ncannikins\\ncannily\\ncanniness\\ncanninesses\\ncanning\\ncannings\\ncannon\\ncannonade\\ncannonaded\\ncannonades\\ncannonading\\ncannonball\\ncannonballs\\ncannoned\\ncannoneer\\ncannoneers\\ncannoning\\ncannonries\\ncannonry\\ncannons\\ncannot\\ncannula\\ncannulae\\ncannular\\ncannulas\\ncanny\\ncanoe\\ncanoed\\ncanoeing\\ncanoeist\\ncanoeists\\ncanoes\\ncanon\\ncanoness\\ncanonesses\\ncanonic\\ncanonical\\ncanonically\\ncanonise\\ncanonised\\ncanonises\\ncanonising\\ncanonist\\ncanonists\\ncanonization\\ncanonizations\\ncanonize\\ncanonized\\ncanonizes\\ncanonizing\\ncanonries\\ncanonry\\ncanons\\ncanopied\\ncanopies\\ncanopy\\ncanopying\\ncanorous\\ncans\\ncansful\\ncanso\\ncansos\\ncanst\\ncant\\ncantala\\ncantalas\\ncantaloupe\\ncantaloupes\\ncantankerous\\ncantankerously\\ncantankerousness\\ncantankerousnesses\\ncantata\\ncantatas\\ncantdog\\ncantdogs\\ncanted\\ncanteen\\ncanteens\\ncanter\\ncantered\\ncantering\\ncanters\\ncanthal\\ncanthi\\ncanthus\\ncantic\\ncanticle\\ncanticles\\ncantilever\\ncantilevers\\ncantina\\ncantinas\\ncanting\\ncantle\\ncantles\\ncanto\\ncanton\\ncantonal\\ncantoned\\ncantoning\\ncantons\\ncantor\\ncantors\\ncantos\\ncantraip\\ncantraips\\ncantrap\\ncantraps\\ncantrip\\ncantrips\\ncants\\ncantus\\ncanty\\ncanula\\ncanulae\\ncanulas\\ncanulate\\ncanulated\\ncanulates\\ncanulating\\ncanvas\\ncanvased\\ncanvaser\\ncanvasers\\ncanvases\\ncanvasing\\ncanvass\\ncanvassed\\ncanvasser\\ncanvassers\\ncanvasses\\ncanvassing\\ncanyon\\ncanyons\\ncanzona\\ncanzonas\\ncanzone\\ncanzones\\ncanzonet\\ncanzonets\\ncanzoni\\ncap\\ncapabilities\\ncapability\\ncapable\\ncapabler\\ncapablest\\ncapably\\ncapacious\\ncapacitance\\ncapacitances\\ncapacities\\ncapacitor\\ncapacitors\\ncapacity\\ncape\\ncaped\\ncapelan\\ncapelans\\ncapelet\\ncapelets\\ncapelin\\ncapelins\\ncaper\\ncapered\\ncaperer\\ncaperers\\ncapering\\ncapers\\ncapes\\ncapeskin\\ncapeskins\\ncapework\\ncapeworks\\ncapful\\ncapfuls\\ncaph\\ncaphs\\ncapias\\ncapiases\\ncapillaries\\ncapillary\\ncapita\\ncapital\\ncapitalism\\ncapitalist\\ncapitalistic\\ncapitalistically\\ncapitalists\\ncapitalization\\ncapitalizations\\ncapitalize\\ncapitalized\\ncapitalizes\\ncapitalizing\\ncapitals\\ncapitate\\ncapitol\\ncapitols\\ncapitula\\ncapitulate\\ncapitulated\\ncapitulates\\ncapitulating\\ncapitulation\\ncapitulations\\ncapless\\ncaplin\\ncaplins\\ncapmaker\\ncapmakers\\ncapo\\ncapon\\ncaponier\\ncaponiers\\ncaponize\\ncaponized\\ncaponizes\\ncaponizing\\ncapons\\ncaporal\\ncaporals\\ncapos\\ncapote\\ncapotes\\ncapouch\\ncapouches\\ncapped\\ncapper\\ncappers\\ncapping\\ncappings\\ncapric\\ncapricci\\ncaprice\\ncaprices\\ncapricious\\ncaprifig\\ncaprifigs\\ncaprine\\ncapriole\\ncaprioled\\ncaprioles\\ncaprioling\\ncaps\\ncapsicin\\ncapsicins\\ncapsicum\\ncapsicums\\ncapsid\\ncapsidal\\ncapsids\\ncapsize\\ncapsized\\ncapsizes\\ncapsizing\\ncapstan\\ncapstans\\ncapstone\\ncapstones\\ncapsular\\ncapsulate\\ncapsulated\\ncapsule\\ncapsuled\\ncapsules\\ncapsuling\\ncaptain\\ncaptaincies\\ncaptaincy\\ncaptained\\ncaptaining\\ncaptains\\ncaptainship\\ncaptainships\\ncaptan\\ncaptans\\ncaption\\ncaptioned\\ncaptioning\\ncaptions\\ncaptious\\ncaptiously\\ncaptivate\\ncaptivated\\ncaptivates\\ncaptivating\\ncaptivation\\ncaptivations\\ncaptivator\\ncaptivators\\ncaptive\\ncaptives\\ncaptivities\\ncaptivity\\ncaptor\\ncaptors\\ncapture\\ncaptured\\ncapturer\\ncapturers\\ncaptures\\ncapturing\\ncapuche\\ncapuched\\ncapuches\\ncapuchin\\ncapuchins\\ncaput\\ncapybara\\ncapybaras\\ncar\\ncarabao\\ncarabaos\\ncarabid\\ncarabids\\ncarabin\\ncarabine\\ncarabines\\ncarabins\\ncaracal\\ncaracals\\ncaracara\\ncaracaras\\ncarack\\ncaracks\\ncaracol\\ncaracole\\ncaracoled\\ncaracoles\\ncaracoling\\ncaracolled\\ncaracolling\\ncaracols\\ncaracul\\ncaraculs\\ncarafe\\ncarafes\\ncaragana\\ncaraganas\\ncarageen\\ncarageens\\ncaramel\\ncaramels\\ncarangid\\ncarangids\\ncarapace\\ncarapaces\\ncarapax\\ncarapaxes\\ncarassow\\ncarassows\\ncarat\\ncarate\\ncarates\\ncarats\\ncaravan\\ncaravaned\\ncaravaning\\ncaravanned\\ncaravanning\\ncaravans\\ncaravel\\ncaravels\\ncaraway\\ncaraways\\ncarbamic\\ncarbamyl\\ncarbamyls\\ncarbarn\\ncarbarns\\ncarbaryl\\ncarbaryls\\ncarbide\\ncarbides\\ncarbine\\ncarbines\\ncarbinol\\ncarbinols\\ncarbohydrate\\ncarbohydrates\\ncarbon\\ncarbonate\\ncarbonated\\ncarbonates\\ncarbonating\\ncarbonation\\ncarbonations\\ncarbonic\\ncarbons\\ncarbonyl\\ncarbonyls\\ncarbora\\ncarboras\\ncarboxyl\\ncarboxyls\\ncarboy\\ncarboyed\\ncarboys\\ncarbuncle\\ncarbuncles\\ncarburet\\ncarbureted\\ncarbureting\\ncarburetor\\ncarburetors\\ncarburets\\ncarburetted\\ncarburetting\\ncarcajou\\ncarcajous\\ncarcanet\\ncarcanets\\ncarcase\\ncarcases\\ncarcass\\ncarcasses\\ncarcel\\ncarcels\\ncarcinogen\\ncarcinogenic\\ncarcinogenics\\ncarcinogens\\ncarcinoma\\ncarcinomas\\ncarcinomata\\ncarcinomatous\\ncard\\ncardamom\\ncardamoms\\ncardamon\\ncardamons\\ncardamum\\ncardamums\\ncardboard\\ncardboards\\ncardcase\\ncardcases\\ncarded\\ncarder\\ncarders\\ncardia\\ncardiac\\ncardiacs\\ncardiae\\ncardias\\ncardigan\\ncardigans\\ncardinal\\ncardinals\\ncarding\\ncardings\\ncardiogram\\ncardiograms\\ncardiograph\\ncardiographic\\ncardiographies\\ncardiographs\\ncardiography\\ncardioid\\ncardioids\\ncardiologies\\ncardiologist\\ncardiologists\\ncardiology\\ncardiotoxicities\\ncardiotoxicity\\ncardiovascular\\ncarditic\\ncarditis\\ncarditises\\ncardoon\\ncardoons\\ncards\\ncare\\ncared\\ncareen\\ncareened\\ncareener\\ncareeners\\ncareening\\ncareens\\ncareer\\ncareered\\ncareerer\\ncareerers\\ncareering\\ncareers\\ncarefree\\ncareful\\ncarefuller\\ncarefullest\\ncarefully\\ncarefulness\\ncarefulnesses\\ncareless\\ncarelessly\\ncarelessness\\ncarelessnesses\\ncarer\\ncarers\\ncares\\ncaress\\ncaressed\\ncaresser\\ncaressers\\ncaresses\\ncaressing\\ncaret\\ncaretaker\\ncaretakers\\ncarets\\ncareworn\\ncarex\\ncarfare\\ncarfares\\ncarful\\ncarfuls\\ncargo\\ncargoes\\ncargos\\ncarhop\\ncarhops\\ncaribe\\ncaribes\\ncaribou\\ncaribous\\ncaricature\\ncaricatured\\ncaricatures\\ncaricaturing\\ncaricaturist\\ncaricaturists\\ncarices\\ncaried\\ncaries\\ncarillon\\ncarillonned\\ncarillonning\\ncarillons\\ncarina\\ncarinae\\ncarinal\\ncarinas\\ncarinate\\ncaring\\ncarioca\\ncariocas\\ncariole\\ncarioles\\ncarious\\ncark\\ncarked\\ncarking\\ncarks\\ncarl\\ncarle\\ncarles\\ncarless\\ncarlin\\ncarline\\ncarlines\\ncarling\\ncarlings\\ncarlins\\ncarlish\\ncarload\\ncarloads\\ncarls\\ncarmaker\\ncarmakers\\ncarman\\ncarmen\\ncarmine\\ncarmines\\ncarn\\ncarnage\\ncarnages\\ncarnal\\ncarnalities\\ncarnality\\ncarnally\\ncarnation\\ncarnations\\ncarnauba\\ncarnaubas\\ncarney\\ncarneys\\ncarnie\\ncarnies\\ncarnified\\ncarnifies\\ncarnify\\ncarnifying\\ncarnival\\ncarnivals\\ncarnivore\\ncarnivores\\ncarnivorous\\ncarnivorously\\ncarnivorousness\\ncarnivorousnesses\\ncarns\\ncarny\\ncaroach\\ncaroaches\\ncarob\\ncarobs\\ncaroch\\ncaroche\\ncaroches\\ncarol\\ncaroled\\ncaroler\\ncarolers\\ncaroli\\ncaroling\\ncarolled\\ncaroller\\ncarollers\\ncarolling\\ncarols\\ncarolus\\ncaroluses\\ncarom\\ncaromed\\ncaroming\\ncaroms\\ncarotene\\ncarotenes\\ncarotid\\ncarotids\\ncarotin\\ncarotins\\ncarousal\\ncarousals\\ncarouse\\ncaroused\\ncarousel\\ncarousels\\ncarouser\\ncarousers\\ncarouses\\ncarousing\\ncarp\\ncarpal\\ncarpale\\ncarpalia\\ncarpals\\ncarped\\ncarpel\\ncarpels\\ncarpenter\\ncarpentered\\ncarpentering\\ncarpenters\\ncarpentries\\ncarpentry\\ncarper\\ncarpers\\ncarpet\\ncarpeted\\ncarpeting\\ncarpets\\ncarpi\\ncarping\\ncarpings\\ncarport\\ncarports\\ncarps\\ncarpus\\ncarrack\\ncarracks\\ncarrel\\ncarrell\\ncarrells\\ncarrels\\ncarriage\\ncarriages\\ncarried\\ncarrier\\ncarriers\\ncarries\\ncarriole\\ncarrioles\\ncarrion\\ncarrions\\ncarritch\\ncarritches\\ncarroch\\ncarroches\\ncarrom\\ncarromed\\ncarroming\\ncarroms\\ncarrot\\ncarrotier\\ncarrotiest\\ncarrotin\\ncarrotins\\ncarrots\\ncarroty\\ncarrousel\\ncarrousels\\ncarry\\ncarryall\\ncarryalls\\ncarrying\\ncarryon\\ncarryons\\ncarryout\\ncarryouts\\ncars\\ncarse\\ncarses\\ncarsick\\ncart\\ncartable\\ncartage\\ncartages\\ncarte\\ncarted\\ncartel\\ncartels\\ncarter\\ncarters\\ncartes\\ncartilage\\ncartilages\\ncartilaginous\\ncarting\\ncartload\\ncartloads\\ncartographer\\ncartographers\\ncartographies\\ncartography\\ncarton\\ncartoned\\ncartoning\\ncartons\\ncartoon\\ncartooned\\ncartooning\\ncartoonist\\ncartoonists\\ncartoons\\ncartop\\ncartouch\\ncartouches\\ncartridge\\ncartridges\\ncarts\\ncaruncle\\ncaruncles\\ncarve\\ncarved\\ncarvel\\ncarvels\\ncarven\\ncarver\\ncarvers\\ncarves\\ncarving\\ncarvings\\ncaryatid\\ncaryatides\\ncaryatids\\ncaryotin\\ncaryotins\\ncasa\\ncasaba\\ncasabas\\ncasas\\ncasava\\ncasavas\\ncascabel\\ncascabels\\ncascable\\ncascables\\ncascade\\ncascaded\\ncascades\\ncascading\\ncascara\\ncascaras\\ncase\\ncasease\\ncaseases\\ncaseate\\ncaseated\\ncaseates\\ncaseating\\ncasebook\\ncasebooks\\ncased\\ncasefied\\ncasefies\\ncasefy\\ncasefying\\ncaseic\\ncasein\\ncaseins\\ncasemate\\ncasemates\\ncasement\\ncasements\\ncaseose\\ncaseoses\\ncaseous\\ncasern\\ncaserne\\ncasernes\\ncaserns\\ncases\\ncasette\\ncasettes\\ncasework\\ncaseworks\\ncaseworm\\ncaseworms\\ncash\\ncashable\\ncashaw\\ncashaws\\ncashbook\\ncashbooks\\ncashbox\\ncashboxes\\ncashed\\ncashes\\ncashew\\ncashews\\ncashier\\ncashiered\\ncashiering\\ncashiers\\ncashing\\ncashless\\ncashmere\\ncashmeres\\ncashoo\\ncashoos\\ncasimere\\ncasimeres\\ncasimire\\ncasimires\\ncasing\\ncasings\\ncasino\\ncasinos\\ncask\\ncasked\\ncasket\\ncasketed\\ncasketing\\ncaskets\\ncasking\\ncasks\\ncasky\\ncasque\\ncasqued\\ncasques\\ncassaba\\ncassabas\\ncassava\\ncassavas\\ncasserole\\ncasseroles\\ncassette\\ncassettes\\ncassia\\ncassias\\ncassino\\ncassinos\\ncassis\\ncassises\\ncassock\\ncassocks\\ncast\\ncastanet\\ncastanets\\ncastaway\\ncastaways\\ncaste\\ncasteism\\ncasteisms\\ncaster\\ncasters\\ncastes\\ncastigate\\ncastigated\\ncastigates\\ncastigating\\ncastigation\\ncastigations\\ncastigator\\ncastigators\\ncasting\\ncastings\\ncastle\\ncastled\\ncastles\\ncastling\\ncastoff\\ncastoffs\\ncastor\\ncastors\\ncastrate\\ncastrated\\ncastrates\\ncastrati\\ncastrating\\ncastration\\ncastrations\\ncastrato\\ncasts\\ncasual\\ncasually\\ncasualness\\ncasualnesses\\ncasuals\\ncasualties\\ncasualty\\ncasuist\\ncasuistries\\ncasuistry\\ncasuists\\ncasus\\ncat\\ncataclysm\\ncataclysms\\ncatacomb\\ncatacombs\\ncatacylsmic\\ncatalase\\ncatalases\\ncatalo\\ncataloes\\ncatalog\\ncataloged\\ncataloger\\ncatalogers\\ncataloging\\ncatalogs\\ncataloguer\\ncataloguers\\ncatalos\\ncatalpa\\ncatalpas\\ncatalyses\\ncatalysis\\ncatalyst\\ncatalysts\\ncatalytic\\ncatalyze\\ncatalyzed\\ncatalyzes\\ncatalyzing\\ncatamaran\\ncatamarans\\ncatamite\\ncatamites\\ncatamount\\ncatamounts\\ncatapult\\ncatapulted\\ncatapulting\\ncatapults\\ncataract\\ncataracts\\ncatarrh\\ncatarrhs\\ncatastrophe\\ncatastrophes\\ncatastrophic\\ncatastrophically\\ncatbird\\ncatbirds\\ncatboat\\ncatboats\\ncatbrier\\ncatbriers\\ncatcall\\ncatcalled\\ncatcalling\\ncatcalls\\ncatch\\ncatchall\\ncatchalls\\ncatcher\\ncatchers\\ncatches\\ncatchflies\\ncatchfly\\ncatchier\\ncatchiest\\ncatching\\ncatchup\\ncatchups\\ncatchword\\ncatchwords\\ncatchy\\ncate\\ncatechin\\ncatechins\\ncatechism\\ncatechisms\\ncatechist\\ncatechists\\ncatechize\\ncatechized\\ncatechizes\\ncatechizing\\ncatechol\\ncatechols\\ncatechu\\ncatechus\\ncategorical\\ncategorically\\ncategories\\ncategorization\\ncategorizations\\ncategorize\\ncategorized\\ncategorizes\\ncategorizing\\ncategory\\ncatena\\ncatenae\\ncatenaries\\ncatenary\\ncatenas\\ncatenate\\ncatenated\\ncatenates\\ncatenating\\ncatenoid\\ncatenoids\\ncater\\ncateran\\ncaterans\\ncatercorner\\ncatered\\ncaterer\\ncaterers\\ncateress\\ncateresses\\ncatering\\ncaterpillar\\ncaterpillars\\ncaters\\ncaterwaul\\ncaterwauled\\ncaterwauling\\ncaterwauls\\ncates\\ncatface\\ncatfaces\\ncatfall\\ncatfalls\\ncatfish\\ncatfishes\\ncatgut\\ncatguts\\ncatharses\\ncatharsis\\ncathartic\\ncathead\\ncatheads\\ncathect\\ncathected\\ncathecting\\ncathects\\ncathedra\\ncathedrae\\ncathedral\\ncathedrals\\ncathedras\\ncatheter\\ncatheterization\\ncatheters\\ncathexes\\ncathexis\\ncathode\\ncathodes\\ncathodic\\ncatholic\\ncathouse\\ncathouses\\ncation\\ncationic\\ncations\\ncatkin\\ncatkins\\ncatlike\\ncatlin\\ncatling\\ncatlings\\ncatlins\\ncatmint\\ncatmints\\ncatnap\\ncatnaper\\ncatnapers\\ncatnapped\\ncatnapping\\ncatnaps\\ncatnip\\ncatnips\\ncats\\ncatspaw\\ncatspaws\\ncatsup\\ncatsups\\ncattail\\ncattails\\ncattalo\\ncattaloes\\ncattalos\\ncatted\\ncattie\\ncattier\\ncatties\\ncattiest\\ncattily\\ncattiness\\ncattinesses\\ncatting\\ncattish\\ncattle\\ncattleman\\ncattlemen\\ncattleya\\ncattleyas\\ncatty\\ncatwalk\\ncatwalks\\ncaucus\\ncaucused\\ncaucuses\\ncaucusing\\ncaucussed\\ncaucusses\\ncaucussing\\ncaudad\\ncaudal\\ncaudally\\ncaudate\\ncaudated\\ncaudex\\ncaudexes\\ncaudices\\ncaudillo\\ncaudillos\\ncaudle\\ncaudles\\ncaught\\ncaul\\ncauld\\ncauldron\\ncauldrons\\ncaulds\\ncaules\\ncaulicle\\ncaulicles\\ncauliflower\\ncauliflowers\\ncauline\\ncaulis\\ncaulk\\ncaulked\\ncaulker\\ncaulkers\\ncaulking\\ncaulkings\\ncaulks\\ncauls\\ncausable\\ncausal\\ncausaless\\ncausality\\ncausally\\ncausals\\ncausation\\ncausations\\ncausative\\ncause\\ncaused\\ncauser\\ncauserie\\ncauseries\\ncausers\\ncauses\\ncauseway\\ncausewayed\\ncausewaying\\ncauseways\\ncausey\\ncauseys\\ncausing\\ncaustic\\ncaustics\\ncauteries\\ncauterization\\ncauterizations\\ncauterize\\ncauterized\\ncauterizes\\ncauterizing\\ncautery\\ncaution\\ncautionary\\ncautioned\\ncautioning\\ncautions\\ncautious\\ncautiously\\ncautiousness\\ncautiousnesses\\ncavalcade\\ncavalcades\\ncavalero\\ncavaleros\\ncavalier\\ncavaliered\\ncavaliering\\ncavalierly\\ncavalierness\\ncavaliernesses\\ncavaliers\\ncavalla\\ncavallas\\ncavallies\\ncavally\\ncavalries\\ncavalry\\ncavalryman\\ncavalrymen\\ncavatina\\ncavatinas\\ncavatine\\ncave\\ncaveat\\ncaveator\\ncaveators\\ncaveats\\ncaved\\ncavefish\\ncavefishes\\ncavelike\\ncaveman\\ncavemen\\ncaver\\ncavern\\ncaverned\\ncaverning\\ncavernous\\ncavernously\\ncaverns\\ncavers\\ncaves\\ncavetti\\ncavetto\\ncavettos\\ncaviar\\ncaviare\\ncaviares\\ncaviars\\ncavicorn\\ncavie\\ncavies\\ncavil\\ncaviled\\ncaviler\\ncavilers\\ncaviling\\ncavilled\\ncaviller\\ncavillers\\ncavilling\\ncavils\\ncaving\\ncavitary\\ncavitate\\ncavitated\\ncavitates\\ncavitating\\ncavitied\\ncavities\\ncavity\\ncavort\\ncavorted\\ncavorter\\ncavorters\\ncavorting\\ncavorts\\ncavy\\ncaw\\ncawed\\ncawing\\ncaws\\ncay\\ncayenne\\ncayenned\\ncayennes\\ncayman\\ncaymans\\ncays\\ncayuse\\ncayuses\\ncazique\\ncaziques\\ncease\\nceased\\nceases\\nceasing\\ncebid\\ncebids\\nceboid\\nceboids\\nceca\\ncecal\\ncecally\\ncecum\\ncedar\\ncedarn\\ncedars\\ncede\\nceded\\nceder\\nceders\\ncedes\\ncedi\\ncedilla\\ncedillas\\nceding\\ncedis\\ncedula\\ncedulas\\ncee\\ncees\\nceiba\\nceibas\\nceil\\nceiled\\nceiler\\nceilers\\nceiling\\nceilings\\nceils\\nceinture\\nceintures\\nceladon\\nceladons\\nceleb\\ncelebrant\\ncelebrants\\ncelebrate\\ncelebrated\\ncelebrates\\ncelebrating\\ncelebration\\ncelebrations\\ncelebrator\\ncelebrators\\ncelebrities\\ncelebrity\\ncelebs\\nceleriac\\nceleriacs\\nceleries\\ncelerities\\ncelerity\\ncelery\\ncelesta\\ncelestas\\nceleste\\ncelestes\\ncelestial\\nceliac\\ncelibacies\\ncelibacy\\ncelibate\\ncelibates\\ncell\\ncella\\ncellae\\ncellar\\ncellared\\ncellarer\\ncellarers\\ncellaret\\ncellarets\\ncellaring\\ncellars\\ncelled\\ncelli\\ncelling\\ncellist\\ncellists\\ncello\\ncellophane\\ncellophanes\\ncellos\\ncells\\ncellular\\ncellule\\ncellules\\ncellulose\\ncelluloses\\ncelom\\ncelomata\\nceloms\\ncelt\\ncelts\\ncembali\\ncembalo\\ncembalos\\ncement\\ncementa\\ncementation\\ncementations\\ncemented\\ncementer\\ncementers\\ncementing\\ncements\\ncementum\\ncemeteries\\ncemetery\\ncenacle\\ncenacles\\ncenobite\\ncenobites\\ncenotaph\\ncenotaphs\\ncenote\\ncenotes\\ncense\\ncensed\\ncenser\\ncensers\\ncenses\\ncensing\\ncensor\\ncensored\\ncensorial\\ncensoring\\ncensorious\\ncensoriously\\ncensoriousness\\ncensoriousnesses\\ncensors\\ncensorship\\ncensorships\\ncensual\\ncensure\\ncensured\\ncensurer\\ncensurers\\ncensures\\ncensuring\\ncensus\\ncensused\\ncensuses\\ncensusing\\ncent\\ncental\\ncentals\\ncentare\\ncentares\\ncentaur\\ncentauries\\ncentaurs\\ncentaury\\ncentavo\\ncentavos\\ncentennial\\ncentennials\\ncenter\\ncentered\\ncentering\\ncenterpiece\\ncenterpieces\\ncenters\\ncenteses\\ncentesis\\ncentiare\\ncentiares\\ncentigrade\\ncentile\\ncentiles\\ncentime\\ncentimes\\ncentimeter\\ncentimeters\\ncentimo\\ncentimos\\ncentipede\\ncentipedes\\ncentner\\ncentners\\ncento\\ncentones\\ncentos\\ncentra\\ncentral\\ncentraler\\ncentralest\\ncentralization\\ncentralizations\\ncentralize\\ncentralized\\ncentralizer\\ncentralizers\\ncentralizes\\ncentralizing\\ncentrally\\ncentrals\\ncentre\\ncentred\\ncentres\\ncentric\\ncentrifugal\\ncentrifugally\\ncentrifuge\\ncentrifuges\\ncentring\\ncentrings\\ncentripetal\\ncentripetally\\ncentrism\\ncentrisms\\ncentrist\\ncentrists\\ncentroid\\ncentroids\\ncentrum\\ncentrums\\ncents\\ncentum\\ncentums\\ncentuple\\ncentupled\\ncentuples\\ncentupling\\ncenturies\\ncenturion\\ncenturions\\ncentury\\nceorl\\nceorlish\\nceorls\\ncephalad\\ncephalic\\ncephalin\\ncephalins\\nceramal\\nceramals\\nceramic\\nceramics\\nceramist\\nceramists\\ncerastes\\ncerate\\ncerated\\ncerates\\nceratin\\nceratins\\nceratoid\\ncercaria\\ncercariae\\ncercarias\\ncerci\\ncercis\\ncercises\\ncercus\\ncere\\ncereal\\ncereals\\ncerebella\\ncerebellar\\ncerebellum\\ncerebellums\\ncerebra\\ncerebral\\ncerebrals\\ncerebrate\\ncerebrated\\ncerebrates\\ncerebrating\\ncerebration\\ncerebrations\\ncerebric\\ncerebrospinal\\ncerebrum\\ncerebrums\\ncered\\ncerement\\ncerements\\nceremonial\\nceremonies\\nceremonious\\nceremony\\nceres\\ncereus\\ncereuses\\nceria\\ncerias\\nceric\\ncering\\nceriph\\nceriphs\\ncerise\\ncerises\\ncerite\\ncerites\\ncerium\\nceriums\\ncermet\\ncermets\\ncernuous\\ncero\\nceros\\ncerotic\\ncerotype\\ncerotypes\\ncerous\\ncertain\\ncertainer\\ncertainest\\ncertainly\\ncertainties\\ncertainty\\ncertes\\ncertifiable\\ncertifiably\\ncertificate\\ncertificates\\ncertification\\ncertifications\\ncertified\\ncertifier\\ncertifiers\\ncertifies\\ncertify\\ncertifying\\ncertitude\\ncertitudes\\ncerulean\\nceruleans\\ncerumen\\ncerumens\\nceruse\\nceruses\\ncerusite\\ncerusites\\ncervelat\\ncervelats\\ncervical\\ncervices\\ncervine\\ncervix\\ncervixes\\ncesarean\\ncesareans\\ncesarian\\ncesarians\\ncesium\\ncesiums\\ncess\\ncessation\\ncessations\\ncessed\\ncesses\\ncessing\\ncession\\ncessions\\ncesspit\\ncesspits\\ncesspool\\ncesspools\\ncesta\\ncestas\\ncesti\\ncestode\\ncestodes\\ncestoi\\ncestoid\\ncestoids\\ncestos\\ncestus\\ncestuses\\ncesura\\ncesurae\\ncesuras\\ncetacean\\ncetaceans\\ncetane\\ncetanes\\ncete\\ncetes\\ncetologies\\ncetology\\nchabouk\\nchabouks\\nchabuk\\nchabuks\\nchacma\\nchacmas\\nchaconne\\nchaconnes\\nchad\\nchadarim\\nchadless\\nchads\\nchaeta\\nchaetae\\nchaetal\\nchafe\\nchafed\\nchafer\\nchafers\\nchafes\\nchaff\\nchaffed\\nchaffer\\nchaffered\\nchaffering\\nchaffers\\nchaffier\\nchaffiest\\nchaffing\\nchaffs\\nchaffy\\nchafing\\nchagrin\\nchagrined\\nchagrining\\nchagrinned\\nchagrinning\\nchagrins\\nchain\\nchaine\\nchained\\nchaines\\nchaining\\nchainman\\nchainmen\\nchains\\nchair\\nchaired\\nchairing\\nchairman\\nchairmaned\\nchairmaning\\nchairmanned\\nchairmanning\\nchairmans\\nchairmanship\\nchairmanships\\nchairmen\\nchairs\\nchairwoman\\nchairwomen\\nchaise\\nchaises\\nchalah\\nchalahs\\nchalaza\\nchalazae\\nchalazal\\nchalazas\\nchalcid\\nchalcids\\nchaldron\\nchaldrons\\nchaleh\\nchalehs\\nchalet\\nchalets\\nchalice\\nchaliced\\nchalices\\nchalk\\nchalkboard\\nchalkboards\\nchalked\\nchalkier\\nchalkiest\\nchalking\\nchalks\\nchalky\\nchallah\\nchallahs\\nchallenge\\nchallenged\\nchallenger\\nchallengers\\nchallenges\\nchallenging\\nchallie\\nchallies\\nchallis\\nchallises\\nchallot\\nchalloth\\nchally\\nchalone\\nchalones\\nchalot\\nchaloth\\nchalutz\\nchalutzim\\ncham\\nchamade\\nchamades\\nchamber\\nchambered\\nchambering\\nchambermaid\\nchambermaids\\nchambers\\nchambray\\nchambrays\\nchameleon\\nchameleons\\nchamfer\\nchamfered\\nchamfering\\nchamfers\\nchamfron\\nchamfrons\\nchamise\\nchamises\\nchamiso\\nchamisos\\nchammied\\nchammies\\nchammy\\nchammying\\nchamois\\nchamoised\\nchamoises\\nchamoising\\nchamoix\\nchamp\\nchampac\\nchampacs\\nchampagne\\nchampagnes\\nchampak\\nchampaks\\nchamped\\nchamper\\nchampers\\nchamping\\nchampion\\nchampioned\\nchampioning\\nchampions\\nchampionship\\nchampionships\\nchamps\\nchampy\\nchams\\nchance\\nchanced\\nchancel\\nchancelleries\\nchancellery\\nchancellor\\nchancellories\\nchancellors\\nchancellorship\\nchancellorships\\nchancellory\\nchancels\\nchanceries\\nchancery\\nchances\\nchancier\\nchanciest\\nchancily\\nchancing\\nchancre\\nchancres\\nchancy\\nchandelier\\nchandeliers\\nchandler\\nchandlers\\nchanfron\\nchanfrons\\nchang\\nchange\\nchangeable\\nchanged\\nchangeless\\nchanger\\nchangers\\nchanges\\nchanging\\nchangs\\nchannel\\nchanneled\\nchanneling\\nchannelled\\nchannelling\\nchannels\\nchanson\\nchansons\\nchant\\nchantage\\nchantages\\nchanted\\nchanter\\nchanters\\nchantey\\nchanteys\\nchanties\\nchanting\\nchantor\\nchantors\\nchantries\\nchantry\\nchants\\nchanty\\nchaos\\nchaoses\\nchaotic\\nchaotically\\nchap\\nchapbook\\nchapbooks\\nchape\\nchapeau\\nchapeaus\\nchapeaux\\nchapel\\nchapels\\nchaperon\\nchaperonage\\nchaperonages\\nchaperone\\nchaperoned\\nchaperones\\nchaperoning\\nchaperons\\nchapes\\nchapiter\\nchapiters\\nchaplain\\nchaplaincies\\nchaplaincy\\nchaplains\\nchaplet\\nchaplets\\nchapman\\nchapmen\\nchapped\\nchapping\\nchaps\\nchapt\\nchapter\\nchaptered\\nchaptering\\nchapters\\nchaqueta\\nchaquetas\\nchar\\ncharacid\\ncharacids\\ncharacin\\ncharacins\\ncharacter\\ncharacteristic\\ncharacteristically\\ncharacteristics\\ncharacterization\\ncharacterizations\\ncharacterize\\ncharacterized\\ncharacterizes\\ncharacterizing\\ncharacters\\ncharade\\ncharades\\ncharas\\ncharases\\ncharcoal\\ncharcoaled\\ncharcoaling\\ncharcoals\\nchard\\nchards\\nchare\\nchared\\nchares\\ncharge\\nchargeable\\ncharged\\ncharger\\nchargers\\ncharges\\ncharging\\ncharier\\nchariest\\ncharily\\ncharing\\nchariot\\ncharioted\\ncharioting\\nchariots\\ncharism\\ncharisma\\ncharismata\\ncharismatic\\ncharisms\\ncharities\\ncharity\\nchark\\ncharka\\ncharkas\\ncharked\\ncharkha\\ncharkhas\\ncharking\\ncharks\\ncharladies\\ncharlady\\ncharlatan\\ncharlatans\\ncharleston\\ncharlock\\ncharlocks\\ncharm\\ncharmed\\ncharmer\\ncharmers\\ncharming\\ncharminger\\ncharmingest\\ncharmingly\\ncharms\\ncharnel\\ncharnels\\ncharpai\\ncharpais\\ncharpoy\\ncharpoys\\ncharqui\\ncharquid\\ncharquis\\ncharr\\ncharred\\ncharrier\\ncharriest\\ncharring\\ncharro\\ncharros\\ncharrs\\ncharry\\nchars\\nchart\\ncharted\\ncharter\\nchartered\\nchartering\\ncharters\\ncharting\\nchartist\\nchartists\\nchartreuse\\nchartreuses\\ncharts\\ncharwoman\\ncharwomen\\nchary\\nchase\\nchased\\nchaser\\nchasers\\nchases\\nchasing\\nchasings\\nchasm\\nchasmal\\nchasmed\\nchasmic\\nchasms\\nchasmy\\nchasse\\nchassed\\nchasseing\\nchasses\\nchasseur\\nchasseurs\\nchassis\\nchaste\\nchastely\\nchasten\\nchastened\\nchasteness\\nchastenesses\\nchastening\\nchastens\\nchaster\\nchastest\\nchastise\\nchastised\\nchastisement\\nchastisements\\nchastises\\nchastising\\nchastities\\nchastity\\nchasuble\\nchasubles\\nchat\\nchateau\\nchateaus\\nchateaux\\nchats\\nchatted\\nchattel\\nchattels\\nchatter\\nchatterbox\\nchatterboxes\\nchattered\\nchatterer\\nchatterers\\nchattering\\nchatters\\nchattery\\nchattier\\nchattiest\\nchattily\\nchatting\\nchatty\\nchaufer\\nchaufers\\nchauffer\\nchauffers\\nchauffeur\\nchauffeured\\nchauffeuring\\nchauffeurs\\nchaunt\\nchaunted\\nchaunter\\nchaunters\\nchaunting\\nchaunts\\nchausses\\nchauvinism\\nchauvinisms\\nchauvinist\\nchauvinistic\\nchauvinists\\nchaw\\nchawed\\nchawer\\nchawers\\nchawing\\nchaws\\nchayote\\nchayotes\\nchazan\\nchazanim\\nchazans\\nchazzen\\nchazzenim\\nchazzens\\ncheap\\ncheapen\\ncheapened\\ncheapening\\ncheapens\\ncheaper\\ncheapest\\ncheapie\\ncheapies\\ncheapish\\ncheaply\\ncheapness\\ncheapnesses\\ncheaps\\ncheapskate\\ncheapskates\\ncheat\\ncheated\\ncheater\\ncheaters\\ncheating\\ncheats\\nchebec\\nchebecs\\nchechako\\nchechakos\\ncheck\\nchecked\\nchecker\\ncheckerboard\\ncheckerboards\\ncheckered\\ncheckering\\ncheckers\\nchecking\\nchecklist\\nchecklists\\ncheckmate\\ncheckmated\\ncheckmates\\ncheckmating\\ncheckoff\\ncheckoffs\\ncheckout\\ncheckouts\\ncheckpoint\\ncheckpoints\\ncheckrow\\ncheckrowed\\ncheckrowing\\ncheckrows\\nchecks\\ncheckup\\ncheckups\\ncheddar\\ncheddars\\ncheddite\\ncheddites\\ncheder\\ncheders\\nchedite\\nchedites\\ncheek\\ncheeked\\ncheekful\\ncheekfuls\\ncheekier\\ncheekiest\\ncheekily\\ncheeking\\ncheeks\\ncheeky\\ncheep\\ncheeped\\ncheeper\\ncheepers\\ncheeping\\ncheeps\\ncheer\\ncheered\\ncheerer\\ncheerers\\ncheerful\\ncheerfuller\\ncheerfullest\\ncheerfully\\ncheerfulness\\ncheerfulnesses\\ncheerier\\ncheeriest\\ncheerily\\ncheeriness\\ncheerinesses\\ncheering\\ncheerio\\ncheerios\\ncheerleader\\ncheerleaders\\ncheerless\\ncheerlessly\\ncheerlessness\\ncheerlessnesses\\ncheero\\ncheeros\\ncheers\\ncheery\\ncheese\\ncheesecloth\\ncheesecloths\\ncheesed\\ncheeses\\ncheesier\\ncheesiest\\ncheesily\\ncheesing\\ncheesy\\ncheetah\\ncheetahs\\nchef\\nchefdom\\nchefdoms\\nchefs\\nchegoe\\nchegoes\\nchela\\nchelae\\nchelas\\nchelate\\nchelated\\nchelates\\nchelating\\nchelator\\nchelators\\ncheloid\\ncheloids\\nchemic\\nchemical\\nchemically\\nchemicals\\nchemics\\nchemise\\nchemises\\nchemism\\nchemisms\\nchemist\\nchemistries\\nchemistry\\nchemists\\nchemotherapeutic\\nchemotherapeutical\\nchemotherapies\\nchemotherapy\\nchemurgies\\nchemurgy\\nchenille\\nchenilles\\nchenopod\\nchenopods\\ncheque\\nchequer\\nchequered\\nchequering\\nchequers\\ncheques\\ncherish\\ncherished\\ncherishes\\ncherishing\\ncheroot\\ncheroots\\ncherries\\ncherry\\nchert\\nchertier\\nchertiest\\ncherts\\ncherty\\ncherub\\ncherubic\\ncherubim\\ncherubs\\nchervil\\nchervils\\nchess\\nchessboard\\nchessboards\\nchesses\\nchessman\\nchessmen\\nchessplayer\\nchessplayers\\nchest\\nchested\\nchestful\\nchestfuls\\nchestier\\nchestiest\\nchestnut\\nchestnuts\\nchests\\nchesty\\nchetah\\nchetahs\\ncheth\\ncheths\\nchevalet\\nchevalets\\ncheveron\\ncheverons\\nchevied\\nchevies\\ncheviot\\ncheviots\\nchevron\\nchevrons\\nchevy\\nchevying\\nchew\\nchewable\\nchewed\\nchewer\\nchewers\\nchewier\\nchewiest\\nchewing\\nchewink\\nchewinks\\nchews\\nchewy\\nchez\\nchi\\nchia\\nchiao\\nchias\\nchiasm\\nchiasma\\nchiasmal\\nchiasmas\\nchiasmata\\nchiasmi\\nchiasmic\\nchiasms\\nchiasmus\\nchiastic\\nchiaus\\nchiauses\\nchibouk\\nchibouks\\nchic\\nchicane\\nchicaned\\nchicaner\\nchicaneries\\nchicaners\\nchicanery\\nchicanes\\nchicaning\\nchiccories\\nchiccory\\nchichi\\nchichis\\nchick\\nchickadee\\nchickadees\\nchicken\\nchickened\\nchickening\\nchickens\\nchickpea\\nchickpeas\\nchicks\\nchicle\\nchicles\\nchicly\\nchicness\\nchicnesses\\nchico\\nchicories\\nchicory\\nchicos\\nchics\\nchid\\nchidden\\nchide\\nchided\\nchider\\nchiders\\nchides\\nchiding\\nchief\\nchiefdom\\nchiefdoms\\nchiefer\\nchiefest\\nchiefly\\nchiefs\\nchieftain\\nchieftaincies\\nchieftaincy\\nchieftains\\nchiel\\nchield\\nchields\\nchiels\\nchiffon\\nchiffons\\nchigetai\\nchigetais\\nchigger\\nchiggers\\nchignon\\nchignons\\nchigoe\\nchigoes\\nchilblain\\nchilblains\\nchild\\nchildbearing\\nchildbed\\nchildbeds\\nchildbirth\\nchildbirths\\nchilde\\nchildes\\nchildhood\\nchildhoods\\nchilding\\nchildish\\nchildishly\\nchildishness\\nchildishnesses\\nchildless\\nchildlessness\\nchildlessnesses\\nchildlier\\nchildliest\\nchildlike\\nchildly\\nchildren\\nchile\\nchiles\\nchili\\nchiliad\\nchiliads\\nchiliasm\\nchiliasms\\nchiliast\\nchiliasts\\nchilies\\nchill\\nchilled\\nchiller\\nchillers\\nchillest\\nchilli\\nchillier\\nchillies\\nchilliest\\nchillily\\nchilliness\\nchillinesses\\nchilling\\nchills\\nchillum\\nchillums\\nchilly\\nchilopod\\nchilopods\\nchimaera\\nchimaeras\\nchimar\\nchimars\\nchimb\\nchimbley\\nchimbleys\\nchimblies\\nchimbly\\nchimbs\\nchime\\nchimed\\nchimer\\nchimera\\nchimeras\\nchimere\\nchimeres\\nchimeric\\nchimerical\\nchimers\\nchimes\\nchiming\\nchimla\\nchimlas\\nchimley\\nchimleys\\nchimney\\nchimneys\\nchimp\\nchimpanzee\\nchimpanzees\\nchimps\\nchin\\nchina\\nchinas\\nchinbone\\nchinbones\\nchinch\\nchinches\\nchinchier\\nchinchiest\\nchinchilla\\nchinchillas\\nchinchy\\nchine\\nchined\\nchines\\nchining\\nchink\\nchinked\\nchinkier\\nchinkiest\\nchinking\\nchinks\\nchinky\\nchinless\\nchinned\\nchinning\\nchino\\nchinone\\nchinones\\nchinook\\nchinooks\\nchinos\\nchins\\nchints\\nchintses\\nchintz\\nchintzes\\nchintzier\\nchintziest\\nchintzy\\nchip\\nchipmuck\\nchipmucks\\nchipmunk\\nchipmunks\\nchipped\\nchipper\\nchippered\\nchippering\\nchippers\\nchippie\\nchippies\\nchipping\\nchippy\\nchips\\nchirk\\nchirked\\nchirker\\nchirkest\\nchirking\\nchirks\\nchirm\\nchirmed\\nchirming\\nchirms\\nchiro\\nchiropodies\\nchiropodist\\nchiropodists\\nchiropody\\nchiropractic\\nchiropractics\\nchiropractor\\nchiropractors\\nchiros\\nchirp\\nchirped\\nchirper\\nchirpers\\nchirpier\\nchirpiest\\nchirpily\\nchirping\\nchirps\\nchirpy\\nchirr\\nchirre\\nchirred\\nchirres\\nchirring\\nchirrs\\nchirrup\\nchirruped\\nchirruping\\nchirrups\\nchirrupy\\nchis\\nchisel\\nchiseled\\nchiseler\\nchiselers\\nchiseling\\nchiselled\\nchiselling\\nchisels\\nchit\\nchital\\nchitchat\\nchitchats\\nchitchatted\\nchitchatting\\nchitin\\nchitins\\nchitlin\\nchitling\\nchitlings\\nchitlins\\nchiton\\nchitons\\nchits\\nchitter\\nchittered\\nchittering\\nchitters\\nchitties\\nchitty\\nchivalric\\nchivalries\\nchivalrous\\nchivalrously\\nchivalrousness\\nchivalrousnesses\\nchivalry\\nchivaree\\nchivareed\\nchivareeing\\nchivarees\\nchivari\\nchivaried\\nchivariing\\nchivaris\\nchive\\nchives\\nchivied\\nchivies\\nchivvied\\nchivvies\\nchivvy\\nchivvying\\nchivy\\nchivying\\nchlamydes\\nchlamys\\nchlamyses\\nchloral\\nchlorals\\nchlorambucil\\nchlorate\\nchlorates\\nchlordan\\nchlordans\\nchloric\\nchlorid\\nchloride\\nchlorides\\nchlorids\\nchlorin\\nchlorinate\\nchlorinated\\nchlorinates\\nchlorinating\\nchlorination\\nchlorinations\\nchlorinator\\nchlorinators\\nchlorine\\nchlorines\\nchlorins\\nchlorite\\nchlorites\\nchloroform\\nchloroformed\\nchloroforming\\nchloroforms\\nchlorophyll\\nchlorophylls\\nchlorous\\nchock\\nchocked\\nchockfull\\nchocking\\nchocks\\nchocolate\\nchocolates\\nchoice\\nchoicely\\nchoicer\\nchoices\\nchoicest\\nchoir\\nchoirboy\\nchoirboys\\nchoired\\nchoiring\\nchoirmaster\\nchoirmasters\\nchoirs\\nchoke\\nchoked\\nchoker\\nchokers\\nchokes\\nchokey\\nchokier\\nchokiest\\nchoking\\nchoky\\ncholate\\ncholates\\ncholer\\ncholera\\ncholeras\\ncholeric\\ncholers\\ncholesterol\\ncholesterols\\ncholine\\ncholines\\ncholla\\nchollas\\nchomp\\nchomped\\nchomping\\nchomps\\nchon\\nchoose\\nchooser\\nchoosers\\nchooses\\nchoosey\\nchoosier\\nchoosiest\\nchoosing\\nchoosy\\nchop\\nchopin\\nchopine\\nchopines\\nchopins\\nchopped\\nchopper\\nchoppers\\nchoppier\\nchoppiest\\nchoppily\\nchoppiness\\nchoppinesses\\nchopping\\nchoppy\\nchops\\nchopsticks\\nchoragi\\nchoragic\\nchoragus\\nchoraguses\\nchoral\\nchorale\\nchorales\\nchorally\\nchorals\\nchord\\nchordal\\nchordate\\nchordates\\nchorded\\nchording\\nchords\\nchore\\nchorea\\nchoreal\\nchoreas\\nchored\\nchoregi\\nchoregus\\nchoreguses\\nchoreic\\nchoreman\\nchoremen\\nchoreograph\\nchoreographed\\nchoreographer\\nchoreographers\\nchoreographic\\nchoreographies\\nchoreographing\\nchoreographs\\nchoreography\\nchoreoid\\nchores\\nchorial\\nchoriamb\\nchoriambs\\nchoric\\nchorine\\nchorines\\nchoring\\nchorioid\\nchorioids\\nchorion\\nchorions\\nchorister\\nchoristers\\nchorizo\\nchorizos\\nchoroid\\nchoroids\\nchortle\\nchortled\\nchortler\\nchortlers\\nchortles\\nchortling\\nchorus\\nchorused\\nchoruses\\nchorusing\\nchorussed\\nchorusses\\nchorussing\\nchose\\nchosen\\nchoses\\nchott\\nchotts\\nchough\\nchoughs\\nchouse\\nchoused\\nchouser\\nchousers\\nchouses\\nchoush\\nchoushes\\nchousing\\nchow\\nchowchow\\nchowchows\\nchowder\\nchowdered\\nchowdering\\nchowders\\nchowed\\nchowing\\nchows\\nchowse\\nchowsed\\nchowses\\nchowsing\\nchowtime\\nchowtimes\\nchresard\\nchresards\\nchrism\\nchrisma\\nchrismal\\nchrismon\\nchrismons\\nchrisms\\nchrisom\\nchrisoms\\nchristen\\nchristened\\nchristening\\nchristenings\\nchristens\\nchristie\\nchristies\\nchristy\\nchroma\\nchromas\\nchromate\\nchromates\\nchromatic\\nchrome\\nchromed\\nchromes\\nchromic\\nchromide\\nchromides\\nchroming\\nchromite\\nchromites\\nchromium\\nchromiums\\nchromize\\nchromized\\nchromizes\\nchromizing\\nchromo\\nchromos\\nchromosomal\\nchromosome\\nchromosomes\\nchromous\\nchromyl\\nchronaxies\\nchronaxy\\nchronic\\nchronicle\\nchronicled\\nchronicler\\nchroniclers\\nchronicles\\nchronicling\\nchronics\\nchronologic\\nchronological\\nchronologically\\nchronologies\\nchronology\\nchronometer\\nchronometers\\nchronon\\nchronons\\nchrysalides\\nchrysalis\\nchrysalises\\nchrysanthemum\\nchrysanthemums\\nchthonic\\nchub\\nchubasco\\nchubascos\\nchubbier\\nchubbiest\\nchubbily\\nchubbiness\\nchubbinesses\\nchubby\\nchubs\\nchuck\\nchucked\\nchuckies\\nchucking\\nchuckle\\nchuckled\\nchuckler\\nchucklers\\nchuckles\\nchuckling\\nchucks\\nchucky\\nchuddah\\nchuddahs\\nchuddar\\nchuddars\\nchudder\\nchudders\\nchufa\\nchufas\\nchuff\\nchuffed\\nchuffer\\nchuffest\\nchuffier\\nchuffiest\\nchuffing\\nchuffs\\nchuffy\\nchug\\nchugged\\nchugger\\nchuggers\\nchugging\\nchugs\\nchukar\\nchukars\\nchukka\\nchukkar\\nchukkars\\nchukkas\\nchukker\\nchukkers\\nchum\\nchummed\\nchummier\\nchummiest\\nchummily\\nchumming\\nchummy\\nchump\\nchumped\\nchumping\\nchumps\\nchums\\nchumship\\nchumships\\nchunk\\nchunked\\nchunkier\\nchunkiest\\nchunkily\\nchunking\\nchunks\\nchunky\\nchunter\\nchuntered\\nchuntering\\nchunters\\nchurch\\nchurched\\nchurches\\nchurchgoer\\nchurchgoers\\nchurchgoing\\nchurchgoings\\nchurchier\\nchurchiest\\nchurching\\nchurchlier\\nchurchliest\\nchurchly\\nchurchy\\nchurchyard\\nchurchyards\\nchurl\\nchurlish\\nchurls\\nchurn\\nchurned\\nchurner\\nchurners\\nchurning\\nchurnings\\nchurns\\nchurr\\nchurred\\nchurring\\nchurrs\\nchute\\nchuted\\nchutes\\nchuting\\nchutist\\nchutists\\nchutnee\\nchutnees\\nchutney\\nchutneys\\nchutzpa\\nchutzpah\\nchutzpahs\\nchutzpas\\nchyle\\nchyles\\nchylous\\nchyme\\nchymes\\nchymic\\nchymics\\nchymist\\nchymists\\nchymosin\\nchymosins\\nchymous\\nciao\\ncibol\\ncibols\\nciboria\\nciborium\\nciboule\\nciboules\\ncicada\\ncicadae\\ncicadas\\ncicala\\ncicalas\\ncicale\\ncicatrices\\ncicatrix\\ncicelies\\ncicely\\ncicero\\ncicerone\\ncicerones\\nciceroni\\nciceros\\ncichlid\\ncichlidae\\ncichlids\\ncicisbei\\ncicisbeo\\ncicoree\\ncicorees\\ncider\\nciders\\ncigar\\ncigaret\\ncigarets\\ncigarette\\ncigarettes\\ncigars\\ncilantro\\ncilantros\\ncilia\\nciliary\\nciliate\\nciliated\\nciliates\\ncilice\\ncilices\\ncilium\\ncimex\\ncimices\\ncinch\\ncinched\\ncinches\\ncinching\\ncinchona\\ncinchonas\\ncincture\\ncinctured\\ncinctures\\ncincturing\\ncinder\\ncindered\\ncindering\\ncinders\\ncindery\\ncine\\ncineast\\ncineaste\\ncineastes\\ncineasts\\ncinema\\ncinemas\\ncinematic\\ncineol\\ncineole\\ncineoles\\ncineols\\ncinerary\\ncinerin\\ncinerins\\ncines\\ncingula\\ncingulum\\ncinnabar\\ncinnabars\\ncinnamic\\ncinnamon\\ncinnamons\\ncinnamyl\\ncinnamyls\\ncinquain\\ncinquains\\ncinque\\ncinques\\ncion\\ncions\\ncipher\\nciphered\\nciphering\\nciphers\\nciphonies\\nciphony\\ncipolin\\ncipolins\\ncirca\\ncircle\\ncircled\\ncircler\\ncirclers\\ncircles\\ncirclet\\ncirclets\\ncircling\\ncircuit\\ncircuited\\ncircuities\\ncircuiting\\ncircuitous\\ncircuitries\\ncircuitry\\ncircuits\\ncircuity\\ncircular\\ncircularities\\ncircularity\\ncircularly\\ncirculars\\ncirculate\\ncirculated\\ncirculates\\ncirculating\\ncirculation\\ncirculations\\ncirculatory\\ncircumcise\\ncircumcised\\ncircumcises\\ncircumcising\\ncircumcision\\ncircumcisions\\ncircumference\\ncircumferences\\ncircumflex\\ncircumflexes\\ncircumlocution\\ncircumlocutions\\ncircumnavigate\\ncircumnavigated\\ncircumnavigates\\ncircumnavigating\\ncircumnavigation\\ncircumnavigations\\ncircumscribe\\ncircumscribed\\ncircumscribes\\ncircumscribing\\ncircumspect\\ncircumspection\\ncircumspections\\ncircumstance\\ncircumstances\\ncircumstantial\\ncircumvent\\ncircumvented\\ncircumventing\\ncircumvents\\ncircus\\ncircuses\\ncircusy\\ncirque\\ncirques\\ncirrate\\ncirrhoses\\ncirrhosis\\ncirrhotic\\ncirri\\ncirriped\\ncirripeds\\ncirrose\\ncirrous\\ncirrus\\ncirsoid\\ncisco\\nciscoes\\nciscos\\ncislunar\\ncissoid\\ncissoids\\ncist\\ncistern\\ncisterna\\ncisternae\\ncisterns\\ncistron\\ncistrons\\ncists\\ncitable\\ncitadel\\ncitadels\\ncitation\\ncitations\\ncitatory\\ncite\\nciteable\\ncited\\nciter\\nciters\\ncites\\ncithara\\ncitharas\\ncither\\ncithern\\ncitherns\\ncithers\\ncithren\\ncithrens\\ncitied\\ncities\\ncitified\\ncitifies\\ncitify\\ncitifying\\nciting\\ncitizen\\ncitizenries\\ncitizenry\\ncitizens\\ncitizenship\\ncitizenships\\ncitola\\ncitolas\\ncitole\\ncitoles\\ncitral\\ncitrals\\ncitrate\\ncitrated\\ncitrates\\ncitreous\\ncitric\\ncitrin\\ncitrine\\ncitrines\\ncitrins\\ncitron\\ncitrons\\ncitrous\\ncitrus\\ncitruses\\ncittern\\ncitterns\\ncity\\ncityfied\\ncityward\\ncivet\\ncivets\\ncivic\\ncivicism\\ncivicisms\\ncivics\\ncivie\\ncivies\\ncivil\\ncivilian\\ncivilians\\ncivilise\\ncivilised\\ncivilises\\ncivilising\\ncivilities\\ncivility\\ncivilization\\ncivilizations\\ncivilize\\ncivilized\\ncivilizes\\ncivilizing\\ncivilly\\ncivism\\ncivisms\\ncivvies\\ncivvy\\nclabber\\nclabbered\\nclabbering\\nclabbers\\nclach\\nclachan\\nclachans\\nclachs\\nclack\\nclacked\\nclacker\\nclackers\\nclacking\\nclacks\\nclad\\ncladding\\ncladdings\\ncladode\\ncladodes\\nclads\\nclag\\nclagged\\nclagging\\nclags\\nclaim\\nclaimant\\nclaimants\\nclaimed\\nclaimer\\nclaimers\\nclaiming\\nclaims\\nclairvoyance\\nclairvoyances\\nclairvoyant\\nclairvoyants\\nclam\\nclamant\\nclambake\\nclambakes\\nclamber\\nclambered\\nclambering\\nclambers\\nclammed\\nclammier\\nclammiest\\nclammily\\nclamminess\\nclamminesses\\nclamming\\nclammy\\nclamor\\nclamored\\nclamorer\\nclamorers\\nclamoring\\nclamorous\\nclamors\\nclamour\\nclamoured\\nclamouring\\nclamours\\nclamp\\nclamped\\nclamper\\nclampers\\nclamping\\nclamps\\nclams\\nclamworm\\nclamworms\\nclan\\nclandestine\\nclang\\nclanged\\nclanging\\nclangor\\nclangored\\nclangoring\\nclangors\\nclangour\\nclangoured\\nclangouring\\nclangours\\nclangs\\nclank\\nclanked\\nclanking\\nclanks\\nclannish\\nclannishness\\nclannishnesses\\nclans\\nclansman\\nclansmen\\nclap\\nclapboard\\nclapboards\\nclapped\\nclapper\\nclappers\\nclapping\\nclaps\\nclapt\\nclaptrap\\nclaptraps\\nclaque\\nclaquer\\nclaquers\\nclaques\\nclaqueur\\nclaqueurs\\nclarence\\nclarences\\nclaret\\nclarets\\nclaries\\nclarification\\nclarifications\\nclarified\\nclarifies\\nclarify\\nclarifying\\nclarinet\\nclarinetist\\nclarinetists\\nclarinets\\nclarinettist\\nclarinettists\\nclarion\\nclarioned\\nclarioning\\nclarions\\nclarities\\nclarity\\nclarkia\\nclarkias\\nclaro\\nclaroes\\nclaros\\nclary\\nclash\\nclashed\\nclasher\\nclashers\\nclashes\\nclashing\\nclasp\\nclasped\\nclasper\\nclaspers\\nclasping\\nclasps\\nclaspt\\nclass\\nclassed\\nclasser\\nclassers\\nclasses\\nclassic\\nclassical\\nclassically\\nclassicism\\nclassicisms\\nclassicist\\nclassicists\\nclassics\\nclassier\\nclassiest\\nclassification\\nclassifications\\nclassified\\nclassifies\\nclassify\\nclassifying\\nclassily\\nclassing\\nclassis\\nclassless\\nclassmate\\nclassmates\\nclassroom\\nclassrooms\\nclassy\\nclast\\nclastic\\nclastics\\nclasts\\nclatter\\nclattered\\nclattering\\nclatters\\nclattery\\nclaucht\\nclaught\\nclaughted\\nclaughting\\nclaughts\\nclausal\\nclause\\nclauses\\nclaustrophobia\\nclaustrophobias\\nclavate\\nclave\\nclaver\\nclavered\\nclavering\\nclavers\\nclavichord\\nclavichords\\nclavicle\\nclavicles\\nclavier\\nclaviers\\nclaw\\nclawed\\nclawer\\nclawers\\nclawing\\nclawless\\nclaws\\nclaxon\\nclaxons\\nclay\\nclaybank\\nclaybanks\\nclayed\\nclayey\\nclayier\\nclayiest\\nclaying\\nclayish\\nclaylike\\nclaymore\\nclaymores\\nclaypan\\nclaypans\\nclays\\nclayware\\nclaywares\\nclean\\ncleaned\\ncleaner\\ncleaners\\ncleanest\\ncleaning\\ncleanlier\\ncleanliest\\ncleanliness\\ncleanlinesses\\ncleanly\\ncleanness\\ncleannesses\\ncleans\\ncleanse\\ncleansed\\ncleanser\\ncleansers\\ncleanses\\ncleansing\\ncleanup\\ncleanups\\nclear\\nclearance\\nclearances\\ncleared\\nclearer\\nclearers\\nclearest\\nclearing\\nclearings\\nclearly\\nclearness\\nclearnesses\\nclears\\ncleat\\ncleated\\ncleating\\ncleats\\ncleavage\\ncleavages\\ncleave\\ncleaved\\ncleaver\\ncleavers\\ncleaves\\ncleaving\\ncleek\\ncleeked\\ncleeking\\ncleeks\\nclef\\nclefs\\ncleft\\nclefts\\nclematis\\nclematises\\nclemencies\\nclemency\\nclement\\nclench\\nclenched\\nclenches\\nclenching\\ncleome\\ncleomes\\nclepe\\ncleped\\nclepes\\ncleping\\nclept\\nclergies\\nclergy\\nclergyman\\nclergymen\\ncleric\\nclerical\\nclericals\\nclerics\\nclerid\\nclerids\\nclerihew\\nclerihews\\nclerisies\\nclerisy\\nclerk\\nclerkdom\\nclerkdoms\\nclerked\\nclerking\\nclerkish\\nclerklier\\nclerkliest\\nclerkly\\nclerks\\nclerkship\\nclerkships\\ncleveite\\ncleveites\\nclever\\ncleverer\\ncleverest\\ncleverly\\ncleverness\\nclevernesses\\nclevis\\nclevises\\nclew\\nclewed\\nclewing\\nclews\\ncliche\\ncliched\\ncliches\\nclick\\nclicked\\nclicker\\nclickers\\nclicking\\nclicks\\nclient\\ncliental\\nclients\\ncliff\\ncliffier\\ncliffiest\\ncliffs\\ncliffy\\nclift\\nclifts\\nclimactic\\nclimatal\\nclimate\\nclimates\\nclimatic\\nclimax\\nclimaxed\\nclimaxes\\nclimaxing\\nclimb\\nclimbed\\nclimber\\nclimbers\\nclimbing\\nclimbs\\nclime\\nclimes\\nclinal\\nclinally\\nclinch\\nclinched\\nclincher\\nclinchers\\nclinches\\nclinching\\ncline\\nclines\\ncling\\nclinged\\nclinger\\nclingers\\nclingier\\nclingiest\\nclinging\\nclings\\nclingy\\nclinic\\nclinical\\nclinically\\nclinician\\nclinicians\\nclinics\\nclink\\nclinked\\nclinker\\nclinkered\\nclinkering\\nclinkers\\nclinking\\nclinks\\nclip\\nclipboard\\nclipboards\\nclipped\\nclipper\\nclippers\\nclipping\\nclippings\\nclips\\nclipt\\nclique\\ncliqued\\ncliqueier\\ncliqueiest\\ncliques\\ncliquey\\ncliquier\\ncliquiest\\ncliquing\\ncliquish\\ncliquy\\nclitella\\nclitoral\\nclitoric\\nclitoris\\nclitorises\\nclivers\\ncloaca\\ncloacae\\ncloacal\\ncloak\\ncloaked\\ncloaking\\ncloaks\\nclobber\\nclobbered\\nclobbering\\nclobbers\\ncloche\\ncloches\\nclock\\nclocked\\nclocker\\nclockers\\nclocking\\nclocks\\nclockwise\\nclockwork\\nclod\\ncloddier\\ncloddiest\\ncloddish\\ncloddy\\nclodpate\\nclodpates\\nclodpole\\nclodpoles\\nclodpoll\\nclodpolls\\nclods\\nclog\\nclogged\\ncloggier\\ncloggiest\\nclogging\\ncloggy\\nclogs\\ncloister\\ncloistered\\ncloistering\\ncloisters\\nclomb\\nclomp\\nclomped\\nclomping\\nclomps\\nclon\\nclonal\\nclonally\\nclone\\ncloned\\nclones\\nclonic\\ncloning\\nclonism\\nclonisms\\nclonk\\nclonked\\nclonking\\nclonks\\nclons\\nclonus\\nclonuses\\ncloot\\ncloots\\nclop\\nclopped\\nclopping\\nclops\\nclosable\\nclose\\nclosed\\nclosely\\ncloseness\\nclosenesses\\ncloseout\\ncloseouts\\ncloser\\nclosers\\ncloses\\nclosest\\ncloset\\ncloseted\\ncloseting\\nclosets\\nclosing\\nclosings\\nclosure\\nclosured\\nclosures\\nclosuring\\nclot\\ncloth\\nclothe\\nclothed\\nclothes\\nclothier\\nclothiers\\nclothing\\nclothings\\ncloths\\nclots\\nclotted\\nclotting\\nclotty\\ncloture\\nclotured\\nclotures\\ncloturing\\ncloud\\ncloudburst\\ncloudbursts\\nclouded\\ncloudier\\ncloudiest\\ncloudily\\ncloudiness\\ncloudinesses\\nclouding\\ncloudless\\ncloudlet\\ncloudlets\\nclouds\\ncloudy\\nclough\\ncloughs\\nclour\\ncloured\\nclouring\\nclours\\nclout\\nclouted\\nclouter\\nclouters\\nclouting\\nclouts\\nclove\\ncloven\\nclover\\nclovers\\ncloves\\nclowder\\nclowders\\nclown\\nclowned\\nclowneries\\nclownery\\nclowning\\nclownish\\nclownishly\\nclownishness\\nclownishnesses\\nclowns\\ncloy\\ncloyed\\ncloying\\ncloys\\ncloze\\nclub\\nclubable\\nclubbed\\nclubber\\nclubbers\\nclubbier\\nclubbiest\\nclubbing\\nclubby\\nclubfeet\\nclubfoot\\nclubfooted\\nclubhand\\nclubhands\\nclubhaul\\nclubhauled\\nclubhauling\\nclubhauls\\nclubman\\nclubmen\\nclubroot\\nclubroots\\nclubs\\ncluck\\nclucked\\nclucking\\nclucks\\nclue\\nclued\\nclueing\\nclues\\ncluing\\nclumber\\nclumbers\\nclump\\nclumped\\nclumpier\\nclumpiest\\nclumping\\nclumpish\\nclumps\\nclumpy\\nclumsier\\nclumsiest\\nclumsily\\nclumsiness\\nclumsinesses\\nclumsy\\nclung\\nclunk\\nclunked\\nclunker\\nclunkers\\nclunking\\nclunks\\nclupeid\\nclupeids\\nclupeoid\\nclupeoids\\ncluster\\nclustered\\nclustering\\nclusters\\nclustery\\nclutch\\nclutched\\nclutches\\nclutching\\nclutchy\\nclutter\\ncluttered\\ncluttering\\nclutters\\nclypeal\\nclypeate\\nclypei\\nclypeus\\nclyster\\nclysters\\ncoach\\ncoached\\ncoacher\\ncoachers\\ncoaches\\ncoaching\\ncoachman\\ncoachmen\\ncoact\\ncoacted\\ncoacting\\ncoaction\\ncoactions\\ncoactive\\ncoacts\\ncoadmire\\ncoadmired\\ncoadmires\\ncoadmiring\\ncoadmit\\ncoadmits\\ncoadmitted\\ncoadmitting\\ncoaeval\\ncoaevals\\ncoagencies\\ncoagency\\ncoagent\\ncoagents\\ncoagula\\ncoagulant\\ncoagulants\\ncoagulate\\ncoagulated\\ncoagulates\\ncoagulating\\ncoagulation\\ncoagulations\\ncoagulum\\ncoagulums\\ncoal\\ncoala\\ncoalas\\ncoalbin\\ncoalbins\\ncoalbox\\ncoalboxes\\ncoaled\\ncoaler\\ncoalers\\ncoalesce\\ncoalesced\\ncoalescent\\ncoalesces\\ncoalescing\\ncoalfield\\ncoalfields\\ncoalfish\\ncoalfishes\\ncoalhole\\ncoalholes\\ncoalified\\ncoalifies\\ncoalify\\ncoalifying\\ncoaling\\ncoalition\\ncoalitions\\ncoalless\\ncoalpit\\ncoalpits\\ncoals\\ncoalsack\\ncoalsacks\\ncoalshed\\ncoalsheds\\ncoalyard\\ncoalyards\\ncoaming\\ncoamings\\ncoannex\\ncoannexed\\ncoannexes\\ncoannexing\\ncoappear\\ncoappeared\\ncoappearing\\ncoappears\\ncoapt\\ncoapted\\ncoapting\\ncoapts\\ncoarse\\ncoarsely\\ncoarsen\\ncoarsened\\ncoarseness\\ncoarsenesses\\ncoarsening\\ncoarsens\\ncoarser\\ncoarsest\\ncoassist\\ncoassisted\\ncoassisting\\ncoassists\\ncoassume\\ncoassumed\\ncoassumes\\ncoassuming\\ncoast\\ncoastal\\ncoasted\\ncoaster\\ncoasters\\ncoasting\\ncoastings\\ncoastline\\ncoastlines\\ncoasts\\ncoat\\ncoated\\ncoatee\\ncoatees\\ncoater\\ncoaters\\ncoati\\ncoating\\ncoatings\\ncoatis\\ncoatless\\ncoatrack\\ncoatracks\\ncoatroom\\ncoatrooms\\ncoats\\ncoattail\\ncoattails\\ncoattend\\ncoattended\\ncoattending\\ncoattends\\ncoattest\\ncoattested\\ncoattesting\\ncoattests\\ncoauthor\\ncoauthored\\ncoauthoring\\ncoauthors\\ncoauthorship\\ncoauthorships\\ncoax\\ncoaxal\\ncoaxed\\ncoaxer\\ncoaxers\\ncoaxes\\ncoaxial\\ncoaxing\\ncob\\ncobalt\\ncobaltic\\ncobalts\\ncobb\\ncobber\\ncobbers\\ncobbier\\ncobbiest\\ncobble\\ncobbled\\ncobbler\\ncobblers\\ncobbles\\ncobblestone\\ncobblestones\\ncobbling\\ncobbs\\ncobby\\ncobia\\ncobias\\ncoble\\ncobles\\ncobnut\\ncobnuts\\ncobra\\ncobras\\ncobs\\ncobweb\\ncobwebbed\\ncobwebbier\\ncobwebbiest\\ncobwebbing\\ncobwebby\\ncobwebs\\ncoca\\ncocain\\ncocaine\\ncocaines\\ncocains\\ncocaptain\\ncocaptains\\ncocas\\ncoccal\\ncocci\\ncoccic\\ncoccid\\ncoccidia\\ncoccids\\ncoccoid\\ncoccoids\\ncoccous\\ncoccus\\ncoccyges\\ncoccyx\\ncoccyxes\\ncochair\\ncochaired\\ncochairing\\ncochairman\\ncochairmen\\ncochairs\\ncochampion\\ncochampions\\ncochin\\ncochins\\ncochlea\\ncochleae\\ncochlear\\ncochleas\\ncocinera\\ncocineras\\ncock\\ncockade\\ncockaded\\ncockades\\ncockatoo\\ncockatoos\\ncockbill\\ncockbilled\\ncockbilling\\ncockbills\\ncockboat\\ncockboats\\ncockcrow\\ncockcrows\\ncocked\\ncocker\\ncockered\\ncockerel\\ncockerels\\ncockering\\ncockers\\ncockeye\\ncockeyed\\ncockeyes\\ncockfight\\ncockfights\\ncockier\\ncockiest\\ncockily\\ncockiness\\ncockinesses\\ncocking\\ncockish\\ncockle\\ncockled\\ncockles\\ncocklike\\ncockling\\ncockloft\\ncocklofts\\ncockney\\ncockneys\\ncockpit\\ncockpits\\ncockroach\\ncockroaches\\ncocks\\ncockshies\\ncockshut\\ncockshuts\\ncockshy\\ncockspur\\ncockspurs\\ncocksure\\ncocktail\\ncocktailed\\ncocktailing\\ncocktails\\ncockup\\ncockups\\ncocky\\ncoco\\ncocoa\\ncocoanut\\ncocoanuts\\ncocoas\\ncocobola\\ncocobolas\\ncocobolo\\ncocobolos\\ncocomat\\ncocomats\\ncocomposer\\ncocomposers\\ncoconspirator\\ncoconspirators\\ncoconut\\ncoconuts\\ncocoon\\ncocooned\\ncocooning\\ncocoons\\ncocos\\ncocotte\\ncocottes\\ncocreate\\ncocreated\\ncocreates\\ncocreating\\ncocreator\\ncocreators\\ncod\\ncoda\\ncodable\\ncodas\\ncodder\\ncodders\\ncoddle\\ncoddled\\ncoddler\\ncoddlers\\ncoddles\\ncoddling\\ncode\\ncodebtor\\ncodebtors\\ncoded\\ncodefendant\\ncodefendants\\ncodeia\\ncodeias\\ncodein\\ncodeina\\ncodeinas\\ncodeine\\ncodeines\\ncodeins\\ncodeless\\ncoden\\ncodens\\ncoder\\ncoderive\\ncoderived\\ncoderives\\ncoderiving\\ncoders\\ncodes\\ncodesigner\\ncodesigners\\ncodevelop\\ncodeveloped\\ncodeveloper\\ncodevelopers\\ncodeveloping\\ncodevelops\\ncodex\\ncodfish\\ncodfishes\\ncodger\\ncodgers\\ncodices\\ncodicil\\ncodicils\\ncodification\\ncodifications\\ncodified\\ncodifier\\ncodifiers\\ncodifies\\ncodify\\ncodifying\\ncoding\\ncodirector\\ncodirectors\\ncodiscoverer\\ncodiscoverers\\ncodlin\\ncodling\\ncodlings\\ncodlins\\ncodon\\ncodons\\ncodpiece\\ncodpieces\\ncods\\ncoed\\ncoeditor\\ncoeditors\\ncoeds\\ncoeducation\\ncoeducational\\ncoeducations\\ncoeffect\\ncoeffects\\ncoefficient\\ncoefficients\\ncoeliac\\ncoelom\\ncoelomata\\ncoelome\\ncoelomes\\ncoelomic\\ncoeloms\\ncoembodied\\ncoembodies\\ncoembody\\ncoembodying\\ncoemploy\\ncoemployed\\ncoemploying\\ncoemploys\\ncoempt\\ncoempted\\ncoempting\\ncoempts\\ncoenact\\ncoenacted\\ncoenacting\\ncoenacts\\ncoenamor\\ncoenamored\\ncoenamoring\\ncoenamors\\ncoendure\\ncoendured\\ncoendures\\ncoenduring\\ncoenure\\ncoenures\\ncoenuri\\ncoenurus\\ncoenzyme\\ncoenzymes\\ncoequal\\ncoequals\\ncoequate\\ncoequated\\ncoequates\\ncoequating\\ncoerce\\ncoerced\\ncoercer\\ncoercers\\ncoerces\\ncoercing\\ncoercion\\ncoercions\\ncoercive\\ncoerect\\ncoerected\\ncoerecting\\ncoerects\\ncoeval\\ncoevally\\ncoevals\\ncoexecutor\\ncoexecutors\\ncoexert\\ncoexerted\\ncoexerting\\ncoexerts\\ncoexist\\ncoexisted\\ncoexistence\\ncoexistences\\ncoexistent\\ncoexisting\\ncoexists\\ncoextend\\ncoextended\\ncoextending\\ncoextends\\ncofactor\\ncofactors\\ncofeature\\ncofeatures\\ncoff\\ncoffee\\ncoffeehouse\\ncoffeehouses\\ncoffeepot\\ncoffeepots\\ncoffees\\ncoffer\\ncoffered\\ncoffering\\ncoffers\\ncoffin\\ncoffined\\ncoffing\\ncoffining\\ncoffins\\ncoffle\\ncoffled\\ncoffles\\ncoffling\\ncoffret\\ncoffrets\\ncoffs\\ncofinance\\ncofinanced\\ncofinances\\ncofinancing\\ncofounder\\ncofounders\\ncoft\\ncog\\ncogencies\\ncogency\\ncogent\\ncogently\\ncogged\\ncogging\\ncogitate\\ncogitated\\ncogitates\\ncogitating\\ncogitation\\ncogitations\\ncogitative\\ncogito\\ncogitos\\ncognac\\ncognacs\\ncognate\\ncognates\\ncognise\\ncognised\\ncognises\\ncognising\\ncognition\\ncognitions\\ncognitive\\ncognizable\\ncognizance\\ncognizances\\ncognizant\\ncognize\\ncognized\\ncognizer\\ncognizers\\ncognizes\\ncognizing\\ncognomen\\ncognomens\\ncognomina\\ncognovit\\ncognovits\\ncogon\\ncogons\\ncogs\\ncogway\\ncogways\\ncogweel\\ncogweels\\ncohabit\\ncohabitation\\ncohabitations\\ncohabited\\ncohabiting\\ncohabits\\ncoheir\\ncoheiress\\ncoheiresses\\ncoheirs\\ncohere\\ncohered\\ncoherence\\ncoherences\\ncoherent\\ncoherently\\ncoherer\\ncoherers\\ncoheres\\ncohering\\ncohesion\\ncohesions\\ncohesive\\ncoho\\ncohobate\\ncohobated\\ncohobates\\ncohobating\\ncohog\\ncohogs\\ncohort\\ncohorts\\ncohos\\ncohosh\\ncohoshes\\ncohostess\\ncohostesses\\ncohune\\ncohunes\\ncoif\\ncoifed\\ncoiffe\\ncoiffed\\ncoiffes\\ncoiffeur\\ncoiffeurs\\ncoiffing\\ncoiffure\\ncoiffured\\ncoiffures\\ncoiffuring\\ncoifing\\ncoifs\\ncoign\\ncoigne\\ncoigned\\ncoignes\\ncoigning\\ncoigns\\ncoil\\ncoiled\\ncoiler\\ncoilers\\ncoiling\\ncoils\\ncoin\\ncoinable\\ncoinage\\ncoinages\\ncoincide\\ncoincided\\ncoincidence\\ncoincidences\\ncoincident\\ncoincidental\\ncoincides\\ncoinciding\\ncoined\\ncoiner\\ncoiners\\ncoinfer\\ncoinferred\\ncoinferring\\ncoinfers\\ncoinhere\\ncoinhered\\ncoinheres\\ncoinhering\\ncoining\\ncoinmate\\ncoinmates\\ncoins\\ncoinsure\\ncoinsured\\ncoinsures\\ncoinsuring\\ncointer\\ncointerred\\ncointerring\\ncointers\\ncoinventor\\ncoinventors\\ncoinvestigator\\ncoinvestigators\\ncoir\\ncoirs\\ncoistrel\\ncoistrels\\ncoistril\\ncoistrils\\ncoital\\ncoitally\\ncoition\\ncoitions\\ncoitus\\ncoituses\\ncoke\\ncoked\\ncokes\\ncoking\\ncol\\ncola\\ncolander\\ncolanders\\ncolas\\ncold\\ncolder\\ncoldest\\ncoldish\\ncoldly\\ncoldness\\ncoldnesses\\ncolds\\ncole\\ncoles\\ncoleseed\\ncoleseeds\\ncoleslaw\\ncoleslaws\\ncolessee\\ncolessees\\ncolessor\\ncolessors\\ncoleus\\ncoleuses\\ncolewort\\ncoleworts\\ncolic\\ncolicin\\ncolicine\\ncolicines\\ncolicins\\ncolicky\\ncolics\\ncolies\\ncoliform\\ncoliforms\\ncolin\\ncolinear\\ncolins\\ncoliseum\\ncoliseums\\ncolistin\\ncolistins\\ncolitic\\ncolitis\\ncolitises\\ncollaborate\\ncollaborated\\ncollaborates\\ncollaborating\\ncollaboration\\ncollaborations\\ncollaborative\\ncollaborator\\ncollaborators\\ncollage\\ncollagen\\ncollagens\\ncollages\\ncollapse\\ncollapsed\\ncollapses\\ncollapsible\\ncollapsing\\ncollar\\ncollarbone\\ncollarbones\\ncollard\\ncollards\\ncollared\\ncollaret\\ncollarets\\ncollaring\\ncollarless\\ncollars\\ncollate\\ncollated\\ncollateral\\ncollaterals\\ncollates\\ncollating\\ncollator\\ncollators\\ncolleague\\ncolleagues\\ncollect\\ncollectable\\ncollected\\ncollectible\\ncollecting\\ncollection\\ncollections\\ncollectivism\\ncollector\\ncollectors\\ncollects\\ncolleen\\ncolleens\\ncollege\\ncolleger\\ncollegers\\ncolleges\\ncollegia\\ncollegian\\ncollegians\\ncollegiate\\ncollet\\ncolleted\\ncolleting\\ncollets\\ncollide\\ncollided\\ncollides\\ncolliding\\ncollie\\ncollied\\ncollier\\ncollieries\\ncolliers\\ncolliery\\ncollies\\ncollins\\ncollinses\\ncollision\\ncollisions\\ncollogue\\ncollogued\\ncollogues\\ncolloguing\\ncolloid\\ncolloidal\\ncolloids\\ncollop\\ncollops\\ncolloquial\\ncolloquialism\\ncolloquialisms\\ncolloquies\\ncolloquy\\ncollude\\ncolluded\\ncolluder\\ncolluders\\ncolludes\\ncolluding\\ncollusion\\ncollusions\\ncolluvia\\ncolly\\ncollying\\ncollyria\\ncolocate\\ncolocated\\ncolocates\\ncolocating\\ncolog\\ncologne\\ncologned\\ncolognes\\ncologs\\ncolon\\ncolonel\\ncolonels\\ncolones\\ncoloni\\ncolonial\\ncolonials\\ncolonic\\ncolonies\\ncolonise\\ncolonised\\ncolonises\\ncolonising\\ncolonist\\ncolonists\\ncolonize\\ncolonized\\ncolonizes\\ncolonizing\\ncolonnade\\ncolonnades\\ncolons\\ncolonus\\ncolony\\ncolophon\\ncolophons\\ncolor\\ncolorado\\ncolorant\\ncolorants\\ncolored\\ncoloreds\\ncolorer\\ncolorers\\ncolorfast\\ncolorful\\ncoloring\\ncolorings\\ncolorism\\ncolorisms\\ncolorist\\ncolorists\\ncolorless\\ncolors\\ncolossal\\ncolossi\\ncolossus\\ncolossuses\\ncolotomies\\ncolotomy\\ncolour\\ncoloured\\ncolourer\\ncolourers\\ncolouring\\ncolours\\ncolpitis\\ncolpitises\\ncols\\ncolt\\ncolter\\ncolters\\ncoltish\\ncolts\\ncolubrid\\ncolubrids\\ncolugo\\ncolugos\\ncolumbic\\ncolumel\\ncolumels\\ncolumn\\ncolumnal\\ncolumnar\\ncolumned\\ncolumnist\\ncolumnists\\ncolumns\\ncolure\\ncolures\\ncoly\\ncolza\\ncolzas\\ncoma\\ncomae\\ncomaker\\ncomakers\\ncomal\\ncomanagement\\ncomanagements\\ncomanager\\ncomanagers\\ncomas\\ncomate\\ncomates\\ncomatic\\ncomatik\\ncomatiks\\ncomatose\\ncomatula\\ncomatulae\\ncomb\\ncombat\\ncombatant\\ncombatants\\ncombated\\ncombater\\ncombaters\\ncombating\\ncombative\\ncombats\\ncombatted\\ncombatting\\ncombe\\ncombed\\ncomber\\ncombers\\ncombes\\ncombination\\ncombinations\\ncombine\\ncombined\\ncombiner\\ncombiners\\ncombines\\ncombing\\ncombings\\ncombining\\ncomblike\\ncombo\\ncombos\\ncombs\\ncombust\\ncombusted\\ncombustibilities\\ncombustibility\\ncombustible\\ncombusting\\ncombustion\\ncombustions\\ncombustive\\ncombusts\\ncomby\\ncome\\ncomeback\\ncomebacks\\ncomedian\\ncomedians\\ncomedic\\ncomedienne\\ncomediennes\\ncomedies\\ncomedo\\ncomedones\\ncomedos\\ncomedown\\ncomedowns\\ncomedy\\ncomelier\\ncomeliest\\ncomelily\\ncomely\\ncomer\\ncomers\\ncomes\\ncomet\\ncometary\\ncometh\\ncomether\\ncomethers\\ncometic\\ncomets\\ncomfier\\ncomfiest\\ncomfit\\ncomfits\\ncomfort\\ncomfortable\\ncomfortably\\ncomforted\\ncomforter\\ncomforters\\ncomforting\\ncomfortless\\ncomforts\\ncomfrey\\ncomfreys\\ncomfy\\ncomic\\ncomical\\ncomics\\ncoming\\ncomings\\ncomitia\\ncomitial\\ncomities\\ncomity\\ncomma\\ncommand\\ncommandant\\ncommandants\\ncommanded\\ncommandeer\\ncommandeered\\ncommandeering\\ncommandeers\\ncommander\\ncommanders\\ncommanding\\ncommandment\\ncommandments\\ncommando\\ncommandoes\\ncommandos\\ncommands\\ncommas\\ncommata\\ncommemorate\\ncommemorated\\ncommemorates\\ncommemorating\\ncommemoration\\ncommemorations\\ncommemorative\\ncommence\\ncommenced\\ncommencement\\ncommencements\\ncommences\\ncommencing\\ncommend\\ncommendable\\ncommendation\\ncommendations\\ncommended\\ncommending\\ncommends\\ncomment\\ncommentaries\\ncommentary\\ncommentator\\ncommentators\\ncommented\\ncommenting\\ncomments\\ncommerce\\ncommerced\\ncommerces\\ncommercial\\ncommercialize\\ncommercialized\\ncommercializes\\ncommercializing\\ncommercially\\ncommercials\\ncommercing\\ncommie\\ncommies\\ncommiserate\\ncommiserated\\ncommiserates\\ncommiserating\\ncommiseration\\ncommiserations\\ncommissaries\\ncommissary\\ncommission\\ncommissioned\\ncommissioner\\ncommissioners\\ncommissioning\\ncommissions\\ncommit\\ncommitment\\ncommitments\\ncommits\\ncommittal\\ncommittals\\ncommitted\\ncommittee\\ncommittees\\ncommitting\\ncommix\\ncommixed\\ncommixes\\ncommixing\\ncommixt\\ncommode\\ncommodes\\ncommodious\\ncommodities\\ncommodity\\ncommodore\\ncommodores\\ncommon\\ncommoner\\ncommoners\\ncommonest\\ncommonly\\ncommonplace\\ncommonplaces\\ncommons\\ncommonweal\\ncommonweals\\ncommonwealth\\ncommonwealths\\ncommotion\\ncommotions\\ncommove\\ncommoved\\ncommoves\\ncommoving\\ncommunal\\ncommune\\ncommuned\\ncommunes\\ncommunicable\\ncommunicate\\ncommunicated\\ncommunicates\\ncommunicating\\ncommunication\\ncommunications\\ncommunicative\\ncommuning\\ncommunion\\ncommunions\\ncommunique\\ncommuniques\\ncommunism\\ncommunist\\ncommunistic\\ncommunists\\ncommunities\\ncommunity\\ncommutation\\ncommutations\\ncommute\\ncommuted\\ncommuter\\ncommuters\\ncommutes\\ncommuting\\ncommy\\ncomose\\ncomous\\ncomp\\ncompact\\ncompacted\\ncompacter\\ncompactest\\ncompacting\\ncompactly\\ncompactness\\ncompactnesses\\ncompacts\\ncompadre\\ncompadres\\ncompanied\\ncompanies\\ncompanion\\ncompanions\\ncompanionship\\ncompanionships\\ncompany\\ncompanying\\ncomparable\\ncomparative\\ncomparatively\\ncompare\\ncompared\\ncomparer\\ncomparers\\ncompares\\ncomparing\\ncomparison\\ncomparisons\\ncompart\\ncomparted\\ncomparting\\ncompartment\\ncompartments\\ncomparts\\ncompass\\ncompassed\\ncompasses\\ncompassing\\ncompassion\\ncompassionate\\ncompassions\\ncompatability\\ncompatable\\ncompatibilities\\ncompatibility\\ncompatible\\ncompatriot\\ncompatriots\\ncomped\\ncompeer\\ncompeered\\ncompeering\\ncompeers\\ncompel\\ncompelled\\ncompelling\\ncompels\\ncompend\\ncompendia\\ncompendium\\ncompends\\ncompensate\\ncompensated\\ncompensates\\ncompensating\\ncompensation\\ncompensations\\ncompensatory\\ncompere\\ncompered\\ncomperes\\ncompering\\ncompete\\ncompeted\\ncompetence\\ncompetences\\ncompetencies\\ncompetency\\ncompetent\\ncompetently\\ncompetes\\ncompeting\\ncompetition\\ncompetitions\\ncompetitive\\ncompetitor\\ncompetitors\\ncompilation\\ncompilations\\ncompile\\ncompiled\\ncompiler\\ncompilers\\ncompiles\\ncompiling\\ncomping\\ncomplacence\\ncomplacences\\ncomplacencies\\ncomplacency\\ncomplacent\\ncomplain\\ncomplainant\\ncomplainants\\ncomplained\\ncomplainer\\ncomplainers\\ncomplaining\\ncomplains\\ncomplaint\\ncomplaints\\ncompleat\\ncomplect\\ncomplected\\ncomplecting\\ncomplects\\ncomplement\\ncomplementary\\ncomplemented\\ncomplementing\\ncomplements\\ncomplete\\ncompleted\\ncompletely\\ncompleteness\\ncompletenesses\\ncompleter\\ncompletes\\ncompletest\\ncompleting\\ncompletion\\ncompletions\\ncomplex\\ncomplexed\\ncomplexer\\ncomplexes\\ncomplexest\\ncomplexing\\ncomplexion\\ncomplexioned\\ncomplexions\\ncomplexity\\ncompliance\\ncompliances\\ncompliant\\ncomplicate\\ncomplicated\\ncomplicates\\ncomplicating\\ncomplication\\ncomplications\\ncomplice\\ncomplices\\ncomplicities\\ncomplicity\\ncomplied\\ncomplier\\ncompliers\\ncomplies\\ncompliment\\ncomplimentary\\ncompliments\\ncomplin\\ncompline\\ncomplines\\ncomplins\\ncomplot\\ncomplots\\ncomplotted\\ncomplotting\\ncomply\\ncomplying\\ncompo\\ncompone\\ncomponent\\ncomponents\\ncompony\\ncomport\\ncomported\\ncomporting\\ncomportment\\ncomportments\\ncomports\\ncompos\\ncompose\\ncomposed\\ncomposer\\ncomposers\\ncomposes\\ncomposing\\ncomposite\\ncomposites\\ncomposition\\ncompositions\\ncompost\\ncomposted\\ncomposting\\ncomposts\\ncomposure\\ncompote\\ncompotes\\ncompound\\ncompounded\\ncompounding\\ncompounds\\ncomprehend\\ncomprehended\\ncomprehending\\ncomprehends\\ncomprehensible\\ncomprehension\\ncomprehensions\\ncomprehensive\\ncomprehensiveness\\ncomprehensivenesses\\ncompress\\ncompressed\\ncompresses\\ncompressing\\ncompression\\ncompressions\\ncompressor\\ncompressors\\ncomprise\\ncomprised\\ncomprises\\ncomprising\\ncomprize\\ncomprized\\ncomprizes\\ncomprizing\\ncompromise\\ncompromised\\ncompromises\\ncompromising\\ncomps\\ncompt\\ncompted\\ncompting\\ncomptroller\\ncomptrollers\\ncompts\\ncompulsion\\ncompulsions\\ncompulsive\\ncompulsory\\ncompunction\\ncompunctions\\ncomputation\\ncomputations\\ncompute\\ncomputed\\ncomputer\\ncomputerize\\ncomputerized\\ncomputerizes\\ncomputerizing\\ncomputers\\ncomputes\\ncomputing\\ncomrade\\ncomrades\\ncomradeship\\ncomradeships\\ncomte\\ncomtemplate\\ncomtemplated\\ncomtemplates\\ncomtemplating\\ncomtes\\ncon\\nconation\\nconations\\nconative\\nconatus\\nconcannon\\nconcatenate\\nconcatenated\\nconcatenates\\nconcatenating\\nconcave\\nconcaved\\nconcaves\\nconcaving\\nconcavities\\nconcavity\\nconceal\\nconcealed\\nconcealing\\nconcealment\\nconcealments\\nconceals\\nconcede\\nconceded\\nconceder\\nconceders\\nconcedes\\nconceding\\nconceit\\nconceited\\nconceiting\\nconceits\\nconceivable\\nconceivably\\nconceive\\nconceived\\nconceives\\nconceiving\\nconcent\\nconcentrate\\nconcentrated\\nconcentrates\\nconcentrating\\nconcentration\\nconcentrations\\nconcentric\\nconcents\\nconcept\\nconception\\nconceptions\\nconcepts\\nconceptual\\nconceptualize\\nconceptualized\\nconceptualizes\\nconceptualizing\\nconceptually\\nconcern\\nconcerned\\nconcerning\\nconcerns\\nconcert\\nconcerted\\nconcerti\\nconcertina\\nconcerting\\nconcerto\\nconcertos\\nconcerts\\nconcession\\nconcessions\\nconch\\nconcha\\nconchae\\nconchal\\nconches\\nconchies\\nconchoid\\nconchoids\\nconchs\\nconchy\\nconciliate\\nconciliated\\nconciliates\\nconciliating\\nconciliation\\nconciliations\\nconciliatory\\nconcise\\nconcisely\\nconciseness\\nconcisenesses\\nconciser\\nconcisest\\nconclave\\nconclaves\\nconclude\\nconcluded\\nconcludes\\nconcluding\\nconclusion\\nconclusions\\nconclusive\\nconclusively\\nconcoct\\nconcocted\\nconcocting\\nconcoction\\nconcoctions\\nconcocts\\nconcomitant\\nconcomitantly\\nconcomitants\\nconcord\\nconcordance\\nconcordances\\nconcordant\\nconcords\\nconcrete\\nconcreted\\nconcretes\\nconcreting\\nconcretion\\nconcretions\\nconcubine\\nconcubines\\nconcur\\nconcurred\\nconcurrence\\nconcurrences\\nconcurrent\\nconcurrently\\nconcurring\\nconcurs\\nconcuss\\nconcussed\\nconcusses\\nconcussing\\nconcussion\\nconcussions\\ncondemn\\ncondemnation\\ncondemnations\\ncondemned\\ncondemning\\ncondemns\\ncondensation\\ncondensations\\ncondense\\ncondensed\\ncondenses\\ncondensing\\ncondescend\\ncondescended\\ncondescending\\ncondescends\\ncondescension\\ncondescensions\\ncondign\\ncondiment\\ncondiments\\ncondition\\nconditional\\nconditionally\\nconditioned\\nconditioner\\nconditioners\\nconditioning\\nconditions\\ncondole\\ncondoled\\ncondolence\\ncondolences\\ncondoler\\ncondolers\\ncondoles\\ncondoling\\ncondom\\ncondominium\\ncondominiums\\ncondoms\\ncondone\\ncondoned\\ncondoner\\ncondoners\\ncondones\\ncondoning\\ncondor\\ncondores\\ncondors\\nconduce\\nconduced\\nconducer\\nconducers\\nconduces\\nconducing\\nconduct\\nconducted\\nconducting\\nconduction\\nconductions\\nconductive\\nconductor\\nconductors\\nconducts\\nconduit\\nconduits\\ncondylar\\ncondyle\\ncondyles\\ncone\\nconed\\nconelrad\\nconelrads\\nconenose\\nconenoses\\nconepate\\nconepates\\nconepatl\\nconepatls\\ncones\\nconey\\nconeys\\nconfab\\nconfabbed\\nconfabbing\\nconfabs\\nconfect\\nconfected\\nconfecting\\nconfects\\nconfederacies\\nconfederacy\\nconfer\\nconferee\\nconferees\\nconference\\nconferences\\nconferred\\nconferring\\nconfers\\nconferva\\nconfervae\\nconfervas\\nconfess\\nconfessed\\nconfesses\\nconfessing\\nconfession\\nconfessional\\nconfessionals\\nconfessions\\nconfessor\\nconfessors\\nconfetti\\nconfetto\\nconfidant\\nconfidants\\nconfide\\nconfided\\nconfidence\\nconfidences\\nconfident\\nconfidential\\nconfidentiality\\nconfider\\nconfiders\\nconfides\\nconfiding\\nconfiguration\\nconfigurations\\nconfigure\\nconfigured\\nconfigures\\nconfiguring\\nconfine\\nconfined\\nconfinement\\nconfinements\\nconfiner\\nconfiners\\nconfines\\nconfining\\nconfirm\\nconfirmation\\nconfirmations\\nconfirmed\\nconfirming\\nconfirms\\nconfiscate\\nconfiscated\\nconfiscates\\nconfiscating\\nconfiscation\\nconfiscations\\nconflagration\\nconflagrations\\nconflate\\nconflated\\nconflates\\nconflating\\nconflict\\nconflicted\\nconflicting\\nconflicts\\nconflux\\nconfluxes\\nconfocal\\nconform\\nconformed\\nconforming\\nconformities\\nconformity\\nconforms\\nconfound\\nconfounded\\nconfounding\\nconfounds\\nconfrere\\nconfreres\\nconfront\\nconfrontation\\nconfrontations\\nconfronted\\nconfronting\\nconfronts\\nconfuse\\nconfused\\nconfuses\\nconfusing\\nconfusion\\nconfusions\\nconfute\\nconfuted\\nconfuter\\nconfuters\\nconfutes\\nconfuting\\nconga\\ncongaed\\ncongaing\\ncongas\\nconge\\ncongeal\\ncongealed\\ncongealing\\ncongeals\\ncongee\\ncongeed\\ncongeeing\\ncongees\\ncongener\\ncongeners\\ncongenial\\ncongenialities\\ncongeniality\\ncongenital\\nconger\\ncongers\\nconges\\ncongest\\ncongested\\ncongesting\\ncongestion\\ncongestions\\ncongestive\\ncongests\\ncongii\\ncongius\\nconglobe\\nconglobed\\nconglobes\\nconglobing\\nconglomerate\\nconglomerated\\nconglomerates\\nconglomerating\\nconglomeration\\nconglomerations\\ncongo\\ncongoes\\ncongos\\ncongou\\ncongous\\ncongratulate\\ncongratulated\\ncongratulates\\ncongratulating\\ncongratulation\\ncongratulations\\ncongratulatory\\ncongregate\\ncongregated\\ncongregates\\ncongregating\\ncongregation\\ncongregational\\ncongregations\\ncongresional\\ncongress\\ncongressed\\ncongresses\\ncongressing\\ncongressman\\ncongressmen\\ncongresswoman\\ncongresswomen\\ncongruence\\ncongruences\\ncongruent\\ncongruities\\ncongruity\\ncongruous\\nconi\\nconic\\nconical\\nconicities\\nconicity\\nconics\\nconidia\\nconidial\\nconidian\\nconidium\\nconies\\nconifer\\nconiferous\\nconifers\\nconiine\\nconiines\\nconin\\nconine\\nconines\\nconing\\nconins\\nconium\\nconiums\\nconjectural\\nconjecture\\nconjectured\\nconjectures\\nconjecturing\\nconjoin\\nconjoined\\nconjoining\\nconjoins\\nconjoint\\nconjugal\\nconjugate\\nconjugated\\nconjugates\\nconjugating\\nconjugation\\nconjugations\\nconjunct\\nconjunction\\nconjunctions\\nconjunctive\\nconjunctivitis\\nconjuncts\\nconjure\\nconjured\\nconjurer\\nconjurers\\nconjures\\nconjuring\\nconjuror\\nconjurors\\nconk\\nconked\\nconker\\nconkers\\nconking\\nconks\\nconky\\nconn\\nconnate\\nconnect\\nconnected\\nconnecting\\nconnection\\nconnections\\nconnective\\nconnector\\nconnectors\\nconnects\\nconned\\nconner\\nconners\\nconning\\nconnivance\\nconnivances\\nconnive\\nconnived\\nconniver\\nconnivers\\nconnives\\nconniving\\nconnoisseur\\nconnoisseurs\\nconnotation\\nconnotations\\nconnote\\nconnoted\\nconnotes\\nconnoting\\nconns\\nconnubial\\nconodont\\nconodonts\\nconoid\\nconoidal\\nconoids\\nconquer\\nconquered\\nconquering\\nconqueror\\nconquerors\\nconquers\\nconquest\\nconquests\\nconquian\\nconquians\\ncons\\nconscience\\nconsciences\\nconscientious\\nconscientiously\\nconscious\\nconsciously\\nconsciousness\\nconsciousnesses\\nconscript\\nconscripted\\nconscripting\\nconscription\\nconscriptions\\nconscripts\\nconsecrate\\nconsecrated\\nconsecrates\\nconsecrating\\nconsecration\\nconsecrations\\nconsecutive\\nconsecutively\\nconsensus\\nconsensuses\\nconsent\\nconsented\\nconsenting\\nconsents\\nconsequence\\nconsequences\\nconsequent\\nconsequential\\nconsequently\\nconsequents\\nconservation\\nconservationist\\nconservationists\\nconservations\\nconservatism\\nconservatisms\\nconservative\\nconservatives\\nconservatories\\nconservatory\\nconserve\\nconserved\\nconserves\\nconserving\\nconsider\\nconsiderable\\nconsiderably\\nconsiderate\\nconsiderately\\nconsiderateness\\nconsideratenesses\\nconsideration\\nconsiderations\\nconsidered\\nconsidering\\nconsiders\\nconsign\\nconsigned\\nconsignee\\nconsignees\\nconsigning\\nconsignment\\nconsignments\\nconsignor\\nconsignors\\nconsigns\\nconsist\\nconsisted\\nconsistencies\\nconsistency\\nconsistent\\nconsistently\\nconsisting\\nconsists\\nconsol\\nconsolation\\nconsole\\nconsoled\\nconsoler\\nconsolers\\nconsoles\\nconsolidate\\nconsolidated\\nconsolidates\\nconsolidating\\nconsolidation\\nconsolidations\\nconsoling\\nconsols\\nconsomme\\nconsommes\\nconsonance\\nconsonances\\nconsonant\\nconsonantal\\nconsonants\\nconsort\\nconsorted\\nconsorting\\nconsortium\\nconsortiums\\nconsorts\\nconspicuous\\nconspicuously\\nconspiracies\\nconspiracy\\nconspirator\\nconspirators\\nconspire\\nconspired\\nconspires\\nconspiring\\nconstable\\nconstables\\nconstabularies\\nconstabulary\\nconstancies\\nconstancy\\nconstant\\nconstantly\\nconstants\\nconstellation\\nconstellations\\nconsternation\\nconsternations\\nconstipate\\nconstipated\\nconstipates\\nconstipating\\nconstipation\\nconstipations\\nconstituent\\nconstituents\\nconstitute\\nconstituted\\nconstitutes\\nconstituting\\nconstitution\\nconstitutional\\nconstitutionality\\nconstrain\\nconstrained\\nconstraining\\nconstrains\\nconstraint\\nconstraints\\nconstriction\\nconstrictions\\nconstrictive\\nconstruct\\nconstructed\\nconstructing\\nconstruction\\nconstructions\\nconstructive\\nconstructs\\nconstrue\\nconstrued\\nconstrues\\nconstruing\\nconsul\\nconsular\\nconsulate\\nconsulates\\nconsuls\\nconsult\\nconsultant\\nconsultants\\nconsultation\\nconsultations\\nconsulted\\nconsulting\\nconsults\\nconsumable\\nconsume\\nconsumed\\nconsumer\\nconsumers\\nconsumes\\nconsuming\\nconsummate\\nconsummated\\nconsummates\\nconsummating\\nconsummation\\nconsummations\\nconsumption\\nconsumptions\\nconsumptive\\ncontact\\ncontacted\\ncontacting\\ncontacts\\ncontagia\\ncontagion\\ncontagions\\ncontagious\\ncontain\\ncontained\\ncontainer\\ncontainers\\ncontaining\\ncontainment\\ncontainments\\ncontains\\ncontaminate\\ncontaminated\\ncontaminates\\ncontaminating\\ncontamination\\ncontaminations\\nconte\\ncontemn\\ncontemned\\ncontemning\\ncontemns\\ncontemplate\\ncontemplated\\ncontemplates\\ncontemplating\\ncontemplation\\ncontemplations\\ncontemplative\\ncontemporaneous\\ncontemporaries\\ncontemporary\\ncontempt\\ncontemptible\\ncontempts\\ncontemptuous\\ncontemptuously\\ncontend\\ncontended\\ncontender\\ncontenders\\ncontending\\ncontends\\ncontent\\ncontented\\ncontentedly\\ncontentedness\\ncontentednesses\\ncontenting\\ncontention\\ncontentions\\ncontentious\\ncontentment\\ncontentments\\ncontents\\ncontes\\ncontest\\ncontestable\\ncontestably\\ncontestant\\ncontestants\\ncontested\\ncontesting\\ncontests\\ncontext\\ncontexts\\ncontiguities\\ncontiguity\\ncontiguous\\ncontinence\\ncontinences\\ncontinent\\ncontinental\\ncontinents\\ncontingencies\\ncontingency\\ncontingent\\ncontingents\\ncontinua\\ncontinual\\ncontinually\\ncontinuance\\ncontinuances\\ncontinuation\\ncontinuations\\ncontinue\\ncontinued\\ncontinues\\ncontinuing\\ncontinuities\\ncontinuity\\ncontinuo\\ncontinuos\\ncontinuous\\ncontinuousities\\ncontinuousity\\nconto\\ncontort\\ncontorted\\ncontorting\\ncontortion\\ncontortions\\ncontorts\\ncontos\\ncontour\\ncontoured\\ncontouring\\ncontours\\ncontra\\ncontraband\\ncontrabands\\ncontraception\\ncontraceptions\\ncontraceptive\\ncontraceptives\\ncontract\\ncontracted\\ncontracting\\ncontraction\\ncontractions\\ncontractor\\ncontractors\\ncontracts\\ncontractual\\ncontradict\\ncontradicted\\ncontradicting\\ncontradiction\\ncontradictions\\ncontradictory\\ncontradicts\\ncontrail\\ncontrails\\ncontraindicate\\ncontraindicated\\ncontraindicates\\ncontraindicating\\ncontraption\\ncontraptions\\ncontraries\\ncontrarily\\ncontrariwise\\ncontrary\\ncontrast\\ncontrasted\\ncontrasting\\ncontrasts\\ncontravene\\ncontravened\\ncontravenes\\ncontravening\\ncontribute\\ncontributed\\ncontributes\\ncontributing\\ncontribution\\ncontributions\\ncontributor\\ncontributors\\ncontributory\\ncontrite\\ncontrition\\ncontritions\\ncontrivance\\ncontrivances\\ncontrive\\ncontrived\\ncontriver\\ncontrivers\\ncontrives\\ncontriving\\ncontrol\\ncontrollable\\ncontrolled\\ncontroller\\ncontrollers\\ncontrolling\\ncontrols\\ncontroversial\\ncontroversies\\ncontroversy\\ncontrovert\\ncontroverted\\ncontrovertible\\ncontroverting\\ncontroverts\\ncontumaceous\\ncontumacies\\ncontumacy\\ncontumelies\\ncontumely\\ncontuse\\ncontused\\ncontuses\\ncontusing\\ncontusion\\ncontusions\\nconundrum\\nconundrums\\nconus\\nconvalesce\\nconvalesced\\nconvalescence\\nconvalescences\\nconvalescent\\nconvalesces\\nconvalescing\\nconvect\\nconvected\\nconvecting\\nconvection\\nconvectional\\nconvections\\nconvective\\nconvects\\nconvene\\nconvened\\nconvener\\nconveners\\nconvenes\\nconvenience\\nconveniences\\nconvenient\\nconveniently\\nconvening\\nconvent\\nconvented\\nconventing\\nconvention\\nconventional\\nconventionally\\nconventions\\nconvents\\nconverge\\nconverged\\nconvergence\\nconvergences\\nconvergencies\\nconvergency\\nconvergent\\nconverges\\nconverging\\nconversant\\nconversation\\nconversational\\nconversations\\nconverse\\nconversed\\nconversely\\nconverses\\nconversing\\nconversion\\nconversions\\nconvert\\nconverted\\nconverter\\nconverters\\nconvertible\\nconvertibles\\nconverting\\nconvertor\\nconvertors\\nconverts\\nconvex\\nconvexes\\nconvexities\\nconvexity\\nconvexly\\nconvey\\nconveyance\\nconveyances\\nconveyed\\nconveyer\\nconveyers\\nconveying\\nconveyor\\nconveyors\\nconveys\\nconvict\\nconvicted\\nconvicting\\nconviction\\nconvictions\\nconvicts\\nconvince\\nconvinced\\nconvinces\\nconvincing\\nconvivial\\nconvivialities\\nconviviality\\nconvocation\\nconvocations\\nconvoke\\nconvoked\\nconvoker\\nconvokers\\nconvokes\\nconvoking\\nconvoluted\\nconvolution\\nconvolutions\\nconvolve\\nconvolved\\nconvolves\\nconvolving\\nconvoy\\nconvoyed\\nconvoying\\nconvoys\\nconvulse\\nconvulsed\\nconvulses\\nconvulsing\\nconvulsion\\nconvulsions\\nconvulsive\\ncony\\ncoo\\ncooch\\ncooches\\ncooed\\ncooee\\ncooeed\\ncooeeing\\ncooees\\ncooer\\ncooers\\ncooey\\ncooeyed\\ncooeying\\ncooeys\\ncoof\\ncoofs\\ncooing\\ncooingly\\ncook\\ncookable\\ncookbook\\ncookbooks\\ncooked\\ncooker\\ncookeries\\ncookers\\ncookery\\ncookey\\ncookeys\\ncookie\\ncookies\\ncooking\\ncookings\\ncookless\\ncookout\\ncookouts\\ncooks\\ncookshop\\ncookshops\\ncookware\\ncookwares\\ncooky\\ncool\\ncoolant\\ncoolants\\ncooled\\ncooler\\ncoolers\\ncoolest\\ncoolie\\ncoolies\\ncooling\\ncoolish\\ncoolly\\ncoolness\\ncoolnesses\\ncools\\ncooly\\ncoomb\\ncoombe\\ncoombes\\ncoombs\\ncoon\\ncooncan\\ncooncans\\ncoons\\ncoonskin\\ncoonskins\\ncoontie\\ncoonties\\ncoop\\ncooped\\ncooper\\ncooperate\\ncooperated\\ncooperates\\ncooperating\\ncooperation\\ncooperative\\ncooperatives\\ncoopered\\ncooperies\\ncoopering\\ncoopers\\ncoopery\\ncooping\\ncoops\\ncoopt\\ncoopted\\ncoopting\\ncooption\\ncooptions\\ncoopts\\ncoordinate\\ncoordinated\\ncoordinates\\ncoordinating\\ncoordination\\ncoordinations\\ncoordinator\\ncoordinators\\ncoos\\ncoot\\ncootie\\ncooties\\ncoots\\ncop\\ncopaiba\\ncopaibas\\ncopal\\ncopalm\\ncopalms\\ncopals\\ncoparent\\ncoparents\\ncopartner\\ncopartners\\ncopartnership\\ncopartnerships\\ncopastor\\ncopastors\\ncopatron\\ncopatrons\\ncope\\ncopeck\\ncopecks\\ncoped\\ncopemate\\ncopemates\\ncopen\\ncopens\\ncopepod\\ncopepods\\ncoper\\ncopers\\ncopes\\ncopied\\ncopier\\ncopiers\\ncopies\\ncopihue\\ncopihues\\ncopilot\\ncopilots\\ncoping\\ncopings\\ncopious\\ncopiously\\ncopiousness\\ncopiousnesses\\ncoplanar\\ncoplot\\ncoplots\\ncoplotted\\ncoplotting\\ncopped\\ncopper\\ncopperah\\ncopperahs\\ncopperas\\ncopperases\\ncoppered\\ncopperhead\\ncopperheads\\ncoppering\\ncoppers\\ncoppery\\ncoppice\\ncoppiced\\ncoppices\\ncopping\\ncoppra\\ncoppras\\ncopra\\ncoprah\\ncoprahs\\ncopras\\ncopremia\\ncopremias\\ncopremic\\ncopresident\\ncopresidents\\ncoprincipal\\ncoprincipals\\ncoprisoner\\ncoprisoners\\ncoproduce\\ncoproduced\\ncoproducer\\ncoproducers\\ncoproduces\\ncoproducing\\ncoproduction\\ncoproductions\\ncopromote\\ncopromoted\\ncopromoter\\ncopromoters\\ncopromotes\\ncopromoting\\ncoproprietor\\ncoproprietors\\ncoproprietorship\\ncoproprietorships\\ncops\\ncopse\\ncopses\\ncopter\\ncopters\\ncopublish\\ncopublished\\ncopublisher\\ncopublishers\\ncopublishes\\ncopublishing\\ncopula\\ncopulae\\ncopular\\ncopulas\\ncopulate\\ncopulated\\ncopulates\\ncopulating\\ncopulation\\ncopulations\\ncopulative\\ncopulatives\\ncopy\\ncopybook\\ncopybooks\\ncopyboy\\ncopyboys\\ncopycat\\ncopycats\\ncopycatted\\ncopycatting\\ncopydesk\\ncopydesks\\ncopyhold\\ncopyholds\\ncopying\\ncopyist\\ncopyists\\ncopyright\\ncopyrighted\\ncopyrighting\\ncopyrights\\ncoquet\\ncoquetries\\ncoquetry\\ncoquets\\ncoquette\\ncoquetted\\ncoquettes\\ncoquetting\\ncoquille\\ncoquilles\\ncoquina\\ncoquinas\\ncoquito\\ncoquitos\\ncoracle\\ncoracles\\ncoracoid\\ncoracoids\\ncoral\\ncorals\\ncoranto\\ncorantoes\\ncorantos\\ncorban\\ncorbans\\ncorbeil\\ncorbeils\\ncorbel\\ncorbeled\\ncorbeling\\ncorbelled\\ncorbelling\\ncorbels\\ncorbie\\ncorbies\\ncorbina\\ncorbinas\\ncorby\\ncord\\ncordage\\ncordages\\ncordate\\ncorded\\ncorder\\ncorders\\ncordial\\ncordialities\\ncordiality\\ncordially\\ncordials\\ncording\\ncordite\\ncordites\\ncordless\\ncordlike\\ncordoba\\ncordobas\\ncordon\\ncordoned\\ncordoning\\ncordons\\ncordovan\\ncordovans\\ncords\\ncorduroy\\ncorduroyed\\ncorduroying\\ncorduroys\\ncordwain\\ncordwains\\ncordwood\\ncordwoods\\ncordy\\ncore\\ncorecipient\\ncorecipients\\ncored\\ncoredeem\\ncoredeemed\\ncoredeeming\\ncoredeems\\ncoreign\\ncoreigns\\ncorelate\\ncorelated\\ncorelates\\ncorelating\\ncoreless\\ncoremia\\ncoremium\\ncorer\\ncorers\\ncores\\ncoresident\\ncoresidents\\ncorf\\ncorgi\\ncorgis\\ncoria\\ncoring\\ncorium\\ncork\\ncorkage\\ncorkages\\ncorked\\ncorker\\ncorkers\\ncorkier\\ncorkiest\\ncorking\\ncorklike\\ncorks\\ncorkscrew\\ncorkscrews\\ncorkwood\\ncorkwoods\\ncorky\\ncorm\\ncormel\\ncormels\\ncormlike\\ncormoid\\ncormorant\\ncormorants\\ncormous\\ncorms\\ncorn\\ncornball\\ncornballs\\ncorncake\\ncorncakes\\ncorncob\\ncorncobs\\ncorncrib\\ncorncribs\\ncornea\\ncorneal\\ncorneas\\ncorned\\ncornel\\ncornels\\ncorneous\\ncorner\\ncornered\\ncornering\\ncorners\\ncornerstone\\ncornerstones\\ncornet\\ncornetcies\\ncornetcy\\ncornets\\ncornfed\\ncornhusk\\ncornhusks\\ncornice\\ncorniced\\ncornices\\ncorniche\\ncorniches\\ncornicing\\ncornicle\\ncornicles\\ncornier\\ncorniest\\ncornily\\ncorning\\ncornmeal\\ncornmeals\\ncorns\\ncornstalk\\ncornstalks\\ncornstarch\\ncornstarches\\ncornu\\ncornua\\ncornual\\ncornucopia\\ncornucopias\\ncornus\\ncornuses\\ncornute\\ncornuted\\ncornuto\\ncornutos\\ncorny\\ncorodies\\ncorody\\ncorolla\\ncorollaries\\ncorollary\\ncorollas\\ncorona\\ncoronach\\ncoronachs\\ncoronae\\ncoronal\\ncoronals\\ncoronaries\\ncoronary\\ncoronas\\ncoronation\\ncoronations\\ncoronel\\ncoronels\\ncoroner\\ncoroners\\ncoronet\\ncoronets\\ncorotate\\ncorotated\\ncorotates\\ncorotating\\ncorpora\\ncorporal\\ncorporals\\ncorporate\\ncorporation\\ncorporations\\ncorporeal\\ncorporeally\\ncorps\\ncorpse\\ncorpses\\ncorpsman\\ncorpsmen\\ncorpulence\\ncorpulences\\ncorpulencies\\ncorpulency\\ncorpulent\\ncorpus\\ncorpuscle\\ncorpuscles\\ncorrade\\ncorraded\\ncorrades\\ncorrading\\ncorral\\ncorralled\\ncorralling\\ncorrals\\ncorrect\\ncorrected\\ncorrecter\\ncorrectest\\ncorrecting\\ncorrection\\ncorrections\\ncorrective\\ncorrectly\\ncorrectness\\ncorrectnesses\\ncorrects\\ncorrelate\\ncorrelated\\ncorrelates\\ncorrelating\\ncorrelation\\ncorrelations\\ncorrelative\\ncorrelatives\\ncorrespond\\ncorresponded\\ncorrespondence\\ncorrespondences\\ncorrespondent\\ncorrespondents\\ncorresponding\\ncorresponds\\ncorrida\\ncorridas\\ncorridor\\ncorridors\\ncorrie\\ncorries\\ncorrival\\ncorrivals\\ncorroborate\\ncorroborated\\ncorroborates\\ncorroborating\\ncorroboration\\ncorroborations\\ncorrode\\ncorroded\\ncorrodes\\ncorrodies\\ncorroding\\ncorrody\\ncorrosion\\ncorrosions\\ncorrosive\\ncorrugate\\ncorrugated\\ncorrugates\\ncorrugating\\ncorrugation\\ncorrugations\\ncorrupt\\ncorrupted\\ncorrupter\\ncorruptest\\ncorruptible\\ncorrupting\\ncorruption\\ncorruptions\\ncorrupts\\ncorsac\\ncorsacs\\ncorsage\\ncorsages\\ncorsair\\ncorsairs\\ncorse\\ncorselet\\ncorselets\\ncorses\\ncorset\\ncorseted\\ncorseting\\ncorsets\\ncorslet\\ncorslets\\ncortege\\ncorteges\\ncortex\\ncortexes\\ncortical\\ncortices\\ncortin\\ncortins\\ncortisol\\ncortisols\\ncortisone\\ncortisones\\ncorundum\\ncorundums\\ncorvee\\ncorvees\\ncorves\\ncorvet\\ncorvets\\ncorvette\\ncorvettes\\ncorvina\\ncorvinas\\ncorvine\\ncorymb\\ncorymbed\\ncorymbs\\ncoryphee\\ncoryphees\\ncoryza\\ncoryzal\\ncoryzas\\ncos\\ncosec\\ncosecant\\ncosecants\\ncosecs\\ncoses\\ncoset\\ncosets\\ncosey\\ncoseys\\ncosh\\ncoshed\\ncosher\\ncoshered\\ncoshering\\ncoshers\\ncoshes\\ncoshing\\ncosie\\ncosier\\ncosies\\ncosiest\\ncosign\\ncosignatories\\ncosignatory\\ncosigned\\ncosigner\\ncosigners\\ncosigning\\ncosigns\\ncosily\\ncosine\\ncosines\\ncosiness\\ncosinesses\\ncosmetic\\ncosmetics\\ncosmic\\ncosmical\\ncosmism\\ncosmisms\\ncosmist\\ncosmists\\ncosmonaut\\ncosmonauts\\ncosmopolitan\\ncosmopolitans\\ncosmos\\ncosmoses\\ncosponsor\\ncosponsors\\ncoss\\ncossack\\ncossacks\\ncosset\\ncosseted\\ncosseting\\ncossets\\ncost\\ncosta\\ncostae\\ncostal\\ncostar\\ncostard\\ncostards\\ncostarred\\ncostarring\\ncostars\\ncostate\\ncosted\\ncoster\\ncosters\\ncosting\\ncostive\\ncostless\\ncostlier\\ncostliest\\ncostliness\\ncostlinesses\\ncostly\\ncostmaries\\ncostmary\\ncostrel\\ncostrels\\ncosts\\ncostume\\ncostumed\\ncostumer\\ncostumers\\ncostumes\\ncostumey\\ncostuming\\ncosy\\ncot\\ncotan\\ncotans\\ncote\\ncoteau\\ncoteaux\\ncoted\\ncotenant\\ncotenants\\ncoterie\\ncoteries\\ncotes\\ncothurn\\ncothurni\\ncothurns\\ncotidal\\ncotillion\\ncotillions\\ncotillon\\ncotillons\\ncoting\\ncotquean\\ncotqueans\\ncots\\ncotta\\ncottae\\ncottage\\ncottager\\ncottagers\\ncottages\\ncottagey\\ncottar\\ncottars\\ncottas\\ncotter\\ncotters\\ncottier\\ncottiers\\ncotton\\ncottoned\\ncottoning\\ncottonmouth\\ncottonmouths\\ncottons\\ncottonseed\\ncottonseeds\\ncottony\\ncotyloid\\ncotype\\ncotypes\\ncouch\\ncouchant\\ncouched\\ncoucher\\ncouchers\\ncouches\\ncouching\\ncouchings\\ncoude\\ncougar\\ncougars\\ncough\\ncoughed\\ncougher\\ncoughers\\ncoughing\\ncoughs\\ncould\\ncouldest\\ncouldst\\ncoulee\\ncoulees\\ncoulisse\\ncoulisses\\ncouloir\\ncouloirs\\ncoulomb\\ncoulombs\\ncoulter\\ncoulters\\ncoumaric\\ncoumarin\\ncoumarins\\ncoumarou\\ncoumarous\\ncouncil\\ncouncillor\\ncouncillors\\ncouncilman\\ncouncilmen\\ncouncilor\\ncouncilors\\ncouncils\\ncouncilwoman\\ncounsel\\ncounseled\\ncounseling\\ncounselled\\ncounselling\\ncounsellor\\ncounsellors\\ncounselor\\ncounselors\\ncounsels\\ncount\\ncountable\\ncounted\\ncountenance\\ncountenanced\\ncountenances\\ncountenancing\\ncounter\\ncounteraccusation\\ncounteraccusations\\ncounteract\\ncounteracted\\ncounteracting\\ncounteracts\\ncounteraggression\\ncounteraggressions\\ncounterargue\\ncounterargued\\ncounterargues\\ncounterarguing\\ncounterassault\\ncounterassaults\\ncounterattack\\ncounterattacked\\ncounterattacking\\ncounterattacks\\ncounterbalance\\ncounterbalanced\\ncounterbalances\\ncounterbalancing\\ncounterbid\\ncounterbids\\ncounterblockade\\ncounterblockades\\ncounterblow\\ncounterblows\\ncountercampaign\\ncountercampaigns\\ncounterchallenge\\ncounterchallenges\\ncountercharge\\ncountercharges\\ncounterclaim\\ncounterclaims\\ncounterclockwise\\ncountercomplaint\\ncountercomplaints\\ncountercoup\\ncountercoups\\ncountercriticism\\ncountercriticisms\\ncounterdemand\\ncounterdemands\\ncounterdemonstration\\ncounterdemonstrations\\ncounterdemonstrator\\ncounterdemonstrators\\ncountered\\ncountereffect\\ncountereffects\\ncountereffort\\ncounterefforts\\ncounterembargo\\ncounterembargos\\ncounterevidence\\ncounterevidences\\ncounterfeit\\ncounterfeited\\ncounterfeiter\\ncounterfeiters\\ncounterfeiting\\ncounterfeits\\ncounterguerrila\\ncounterinflationary\\ncounterinfluence\\ncounterinfluences\\ncountering\\ncounterintrigue\\ncounterintrigues\\ncountermand\\ncountermanded\\ncountermanding\\ncountermands\\ncountermeasure\\ncountermeasures\\ncountermove\\ncountermovement\\ncountermovements\\ncountermoves\\ncounteroffer\\ncounteroffers\\ncounterpart\\ncounterparts\\ncounterpetition\\ncounterpetitions\\ncounterploy\\ncounterploys\\ncounterpoint\\ncounterpoints\\ncounterpower\\ncounterpowers\\ncounterpressure\\ncounterpressures\\ncounterpropagation\\ncounterpropagations\\ncounterproposal\\ncounterproposals\\ncounterprotest\\ncounterprotests\\ncounterquestion\\ncounterquestions\\ncounterraid\\ncounterraids\\ncounterrallies\\ncounterrally\\ncounterrebuttal\\ncounterrebuttals\\ncounterreform\\ncounterreforms\\ncounterresponse\\ncounterresponses\\ncounterretaliation\\ncounterretaliations\\ncounterrevolution\\ncounterrevolutions\\ncounters\\ncountersign\\ncountersigns\\ncounterstrategies\\ncounterstrategy\\ncounterstyle\\ncounterstyles\\ncountersue\\ncountersued\\ncountersues\\ncountersuggestion\\ncountersuggestions\\ncountersuing\\ncountersuit\\ncountersuits\\ncountertendencies\\ncountertendency\\ncounterterror\\ncounterterrorism\\ncounterterrorisms\\ncounterterrorist\\ncounterterrorists\\ncounterterrors\\ncounterthreat\\ncounterthreats\\ncounterthrust\\ncounterthrusts\\ncountertrend\\ncountertrends\\ncountess\\ncountesses\\ncountian\\ncountians\\ncounties\\ncounting\\ncountless\\ncountries\\ncountry\\ncountryman\\ncountrymen\\ncountryside\\ncountrysides\\ncounts\\ncounty\\ncoup\\ncoupe\\ncouped\\ncoupes\\ncouping\\ncouple\\ncoupled\\ncoupler\\ncouplers\\ncouples\\ncouplet\\ncouplets\\ncoupling\\ncouplings\\ncoupon\\ncoupons\\ncoups\\ncourage\\ncourageous\\ncourages\\ncourant\\ncourante\\ncourantes\\ncouranto\\ncourantoes\\ncourantos\\ncourants\\ncourier\\ncouriers\\ncourlan\\ncourlans\\ncourse\\ncoursed\\ncourser\\ncoursers\\ncourses\\ncoursing\\ncoursings\\ncourt\\ncourted\\ncourteous\\ncourteously\\ncourtesied\\ncourtesies\\ncourtesy\\ncourtesying\\ncourthouse\\ncourthouses\\ncourtier\\ncourtiers\\ncourting\\ncourtlier\\ncourtliest\\ncourtly\\ncourtroom\\ncourtrooms\\ncourts\\ncourtship\\ncourtships\\ncourtyard\\ncourtyards\\ncouscous\\ncouscouses\\ncousin\\ncousinly\\ncousinries\\ncousinry\\ncousins\\ncouteau\\ncouteaux\\ncouter\\ncouters\\ncouth\\ncouther\\ncouthest\\ncouthie\\ncouthier\\ncouthiest\\ncouths\\ncouture\\ncoutures\\ncouvade\\ncouvades\\ncovalent\\ncove\\ncoved\\ncoven\\ncovenant\\ncovenanted\\ncovenanting\\ncovenants\\ncovens\\ncover\\ncoverage\\ncoverages\\ncoverall\\ncoveralls\\ncovered\\ncoverer\\ncoverers\\ncovering\\ncoverings\\ncoverlet\\ncoverlets\\ncoverlid\\ncoverlids\\ncovers\\ncovert\\ncovertly\\ncoverts\\ncoves\\ncovet\\ncoveted\\ncoveter\\ncoveters\\ncoveting\\ncovetous\\ncovets\\ncovey\\ncoveys\\ncoving\\ncovings\\ncow\\ncowage\\ncowages\\ncoward\\ncowardice\\ncowardices\\ncowardly\\ncowards\\ncowbane\\ncowbanes\\ncowbell\\ncowbells\\ncowberries\\ncowberry\\ncowbind\\ncowbinds\\ncowbird\\ncowbirds\\ncowboy\\ncowboys\\ncowed\\ncowedly\\ncower\\ncowered\\ncowering\\ncowers\\ncowfish\\ncowfishes\\ncowgirl\\ncowgirls\\ncowhage\\ncowhages\\ncowhand\\ncowhands\\ncowherb\\ncowherbs\\ncowherd\\ncowherds\\ncowhide\\ncowhided\\ncowhides\\ncowhiding\\ncowier\\ncowiest\\ncowing\\ncowinner\\ncowinners\\ncowl\\ncowled\\ncowlick\\ncowlicks\\ncowling\\ncowlings\\ncowls\\ncowman\\ncowmen\\ncoworker\\ncoworkers\\ncowpat\\ncowpats\\ncowpea\\ncowpeas\\ncowpoke\\ncowpokes\\ncowpox\\ncowpoxes\\ncowrie\\ncowries\\ncowry\\ncows\\ncowshed\\ncowsheds\\ncowskin\\ncowskins\\ncowslip\\ncowslips\\ncowy\\ncox\\ncoxa\\ncoxae\\ncoxal\\ncoxalgia\\ncoxalgias\\ncoxalgic\\ncoxalgies\\ncoxalgy\\ncoxcomb\\ncoxcombs\\ncoxed\\ncoxes\\ncoxing\\ncoxswain\\ncoxswained\\ncoxswaining\\ncoxswains\\ncoy\\ncoyed\\ncoyer\\ncoyest\\ncoying\\ncoyish\\ncoyly\\ncoyness\\ncoynesses\\ncoyote\\ncoyotes\\ncoypou\\ncoypous\\ncoypu\\ncoypus\\ncoys\\ncoz\\ncozen\\ncozenage\\ncozenages\\ncozened\\ncozener\\ncozeners\\ncozening\\ncozens\\ncozes\\ncozey\\ncozeys\\ncozie\\ncozier\\ncozies\\ncoziest\\ncozily\\ncoziness\\ncozinesses\\ncozy\\ncozzes\\ncraal\\ncraaled\\ncraaling\\ncraals\\ncrab\\ncrabbed\\ncrabber\\ncrabbers\\ncrabbier\\ncrabbiest\\ncrabbing\\ncrabby\\ncrabs\\ncrabwise\\ncrack\\ncrackdown\\ncrackdowns\\ncracked\\ncracker\\ncrackers\\ncracking\\ncrackings\\ncrackle\\ncrackled\\ncrackles\\ncracklier\\ncrackliest\\ncrackling\\ncrackly\\ncracknel\\ncracknels\\ncrackpot\\ncrackpots\\ncracks\\ncrackup\\ncrackups\\ncracky\\ncradle\\ncradled\\ncradler\\ncradlers\\ncradles\\ncradling\\ncraft\\ncrafted\\ncraftier\\ncraftiest\\ncraftily\\ncraftiness\\ncraftinesses\\ncrafting\\ncrafts\\ncraftsman\\ncraftsmanship\\ncraftsmanships\\ncraftsmen\\ncraftsmenship\\ncraftsmenships\\ncrafty\\ncrag\\ncragged\\ncraggier\\ncraggiest\\ncraggily\\ncraggy\\ncrags\\ncragsman\\ncragsmen\\ncrake\\ncrakes\\ncram\\ncrambe\\ncrambes\\ncrambo\\ncramboes\\ncrambos\\ncrammed\\ncrammer\\ncrammers\\ncramming\\ncramoisies\\ncramoisy\\ncramp\\ncramped\\ncramping\\ncrampit\\ncrampits\\ncrampon\\ncrampons\\ncrampoon\\ncrampoons\\ncramps\\ncrams\\ncranberries\\ncranberry\\ncranch\\ncranched\\ncranches\\ncranching\\ncrane\\ncraned\\ncranes\\ncrania\\ncranial\\ncraniate\\ncraniates\\ncraning\\ncranium\\ncraniums\\ncrank\\ncranked\\ncranker\\ncrankest\\ncrankier\\ncrankiest\\ncrankily\\ncranking\\ncrankle\\ncrankled\\ncrankles\\ncrankling\\ncrankly\\ncrankous\\ncrankpin\\ncrankpins\\ncranks\\ncranky\\ncrannied\\ncrannies\\ncrannog\\ncrannoge\\ncrannoges\\ncrannogs\\ncranny\\ncrap\\ncrape\\ncraped\\ncrapes\\ncraping\\ncrapped\\ncrapper\\ncrappers\\ncrappie\\ncrappier\\ncrappies\\ncrappiest\\ncrapping\\ncrappy\\ncraps\\ncrapshooter\\ncrapshooters\\ncrases\\ncrash\\ncrashed\\ncrasher\\ncrashers\\ncrashes\\ncrashing\\ncrasis\\ncrass\\ncrasser\\ncrassest\\ncrassly\\ncratch\\ncratches\\ncrate\\ncrated\\ncrater\\ncratered\\ncratering\\ncraters\\ncrates\\ncrating\\ncraton\\ncratonic\\ncratons\\ncraunch\\ncraunched\\ncraunches\\ncraunching\\ncravat\\ncravats\\ncrave\\ncraved\\ncraven\\ncravened\\ncravening\\ncravenly\\ncravens\\ncraver\\ncravers\\ncraves\\ncraving\\ncravings\\ncraw\\ncrawdad\\ncrawdads\\ncrawfish\\ncrawfished\\ncrawfishes\\ncrawfishing\\ncrawl\\ncrawled\\ncrawler\\ncrawlers\\ncrawlier\\ncrawliest\\ncrawling\\ncrawls\\ncrawlway\\ncrawlways\\ncrawly\\ncraws\\ncrayfish\\ncrayfishes\\ncrayon\\ncrayoned\\ncrayoning\\ncrayons\\ncraze\\ncrazed\\ncrazes\\ncrazier\\ncraziest\\ncrazily\\ncraziness\\ncrazinesses\\ncrazing\\ncrazy\\ncreak\\ncreaked\\ncreakier\\ncreakiest\\ncreakily\\ncreaking\\ncreaks\\ncreaky\\ncream\\ncreamed\\ncreamer\\ncreameries\\ncreamers\\ncreamery\\ncreamier\\ncreamiest\\ncreamily\\ncreaming\\ncreams\\ncreamy\\ncrease\\ncreased\\ncreaser\\ncreasers\\ncreases\\ncreasier\\ncreasiest\\ncreasing\\ncreasy\\ncreate\\ncreated\\ncreates\\ncreatin\\ncreatine\\ncreatines\\ncreating\\ncreatinine\\ncreatins\\ncreation\\ncreations\\ncreative\\ncreativities\\ncreativity\\ncreator\\ncreators\\ncreature\\ncreatures\\ncreche\\ncreches\\ncredal\\ncredence\\ncredences\\ncredenda\\ncredent\\ncredentials\\ncredenza\\ncredenzas\\ncredibilities\\ncredibility\\ncredible\\ncredibly\\ncredit\\ncreditable\\ncreditably\\ncredited\\ncrediting\\ncreditor\\ncreditors\\ncredits\\ncredo\\ncredos\\ncredulities\\ncredulity\\ncredulous\\ncreed\\ncreedal\\ncreeds\\ncreek\\ncreeks\\ncreel\\ncreels\\ncreep\\ncreepage\\ncreepages\\ncreeper\\ncreepers\\ncreepie\\ncreepier\\ncreepies\\ncreepiest\\ncreepily\\ncreeping\\ncreeps\\ncreepy\\ncreese\\ncreeses\\ncreesh\\ncreeshed\\ncreeshes\\ncreeshing\\ncremains\\ncremate\\ncremated\\ncremates\\ncremating\\ncremation\\ncremations\\ncremator\\ncremators\\ncrematory\\ncreme\\ncremes\\ncrenate\\ncrenated\\ncrenel\\ncreneled\\ncreneling\\ncrenelle\\ncrenelled\\ncrenelles\\ncrenelling\\ncrenels\\ncreodont\\ncreodonts\\ncreole\\ncreoles\\ncreosol\\ncreosols\\ncreosote\\ncreosoted\\ncreosotes\\ncreosoting\\ncrepe\\ncreped\\ncrepes\\ncrepey\\ncrepier\\ncrepiest\\ncreping\\ncrept\\ncrepy\\ncrescendo\\ncrescendos\\ncrescent\\ncrescents\\ncresive\\ncresol\\ncresols\\ncress\\ncresses\\ncresset\\ncressets\\ncrest\\ncrestal\\ncrested\\ncrestfallen\\ncrestfallens\\ncresting\\ncrestings\\ncrests\\ncresyl\\ncresylic\\ncresyls\\ncretic\\ncretics\\ncretin\\ncretins\\ncretonne\\ncretonnes\\ncrevalle\\ncrevalles\\ncrevasse\\ncrevassed\\ncrevasses\\ncrevassing\\ncrevice\\ncreviced\\ncrevices\\ncrew\\ncrewed\\ncrewel\\ncrewels\\ncrewing\\ncrewless\\ncrewman\\ncrewmen\\ncrews\\ncrib\\ncribbage\\ncribbages\\ncribbed\\ncribber\\ncribbers\\ncribbing\\ncribbings\\ncribbled\\ncribrous\\ncribs\\ncribwork\\ncribworks\\ncricetid\\ncricetids\\ncrick\\ncricked\\ncricket\\ncricketed\\ncricketing\\ncrickets\\ncricking\\ncricks\\ncricoid\\ncricoids\\ncried\\ncrier\\ncriers\\ncries\\ncrime\\ncrimes\\ncriminal\\ncriminals\\ncrimmer\\ncrimmers\\ncrimp\\ncrimped\\ncrimper\\ncrimpers\\ncrimpier\\ncrimpiest\\ncrimping\\ncrimple\\ncrimpled\\ncrimples\\ncrimpling\\ncrimps\\ncrimpy\\ncrimson\\ncrimsoned\\ncrimsoning\\ncrimsons\\ncringe\\ncringed\\ncringer\\ncringers\\ncringes\\ncringing\\ncringle\\ncringles\\ncrinite\\ncrinites\\ncrinkle\\ncrinkled\\ncrinkles\\ncrinklier\\ncrinkliest\\ncrinkling\\ncrinkly\\ncrinoid\\ncrinoids\\ncrinoline\\ncrinolines\\ncrinum\\ncrinums\\ncriollo\\ncriollos\\ncripple\\ncrippled\\ncrippler\\ncripplers\\ncripples\\ncrippling\\ncris\\ncrises\\ncrisic\\ncrisis\\ncrisp\\ncrispate\\ncrisped\\ncrispen\\ncrispened\\ncrispening\\ncrispens\\ncrisper\\ncrispers\\ncrispest\\ncrispier\\ncrispiest\\ncrispily\\ncrisping\\ncrisply\\ncrispness\\ncrispnesses\\ncrisps\\ncrispy\\ncrissa\\ncrissal\\ncrisscross\\ncrisscrossed\\ncrisscrosses\\ncrisscrossing\\ncrissum\\ncrista\\ncristae\\ncristate\\ncriteria\\ncriterion\\ncritic\\ncritical\\ncriticism\\ncriticisms\\ncriticize\\ncriticized\\ncriticizes\\ncriticizing\\ncritics\\ncritique\\ncritiqued\\ncritiques\\ncritiquing\\ncritter\\ncritters\\ncrittur\\ncritturs\\ncroak\\ncroaked\\ncroaker\\ncroakers\\ncroakier\\ncroakiest\\ncroakily\\ncroaking\\ncroaks\\ncroaky\\ncrocein\\ncroceine\\ncroceines\\ncroceins\\ncrochet\\ncrocheted\\ncrocheting\\ncrochets\\ncroci\\ncrocine\\ncrock\\ncrocked\\ncrockeries\\ncrockery\\ncrocket\\ncrockets\\ncrocking\\ncrocks\\ncrocodile\\ncrocodiles\\ncrocoite\\ncrocoites\\ncrocus\\ncrocuses\\ncroft\\ncrofter\\ncrofters\\ncrofts\\ncrojik\\ncrojiks\\ncromlech\\ncromlechs\\ncrone\\ncrones\\ncronies\\ncrony\\ncronyism\\ncronyisms\\ncrook\\ncrooked\\ncrookeder\\ncrookedest\\ncrookedness\\ncrookednesses\\ncrooking\\ncrooks\\ncroon\\ncrooned\\ncrooner\\ncrooners\\ncrooning\\ncroons\\ncrop\\ncropland\\ncroplands\\ncropless\\ncropped\\ncropper\\ncroppers\\ncropping\\ncrops\\ncroquet\\ncroqueted\\ncroqueting\\ncroquets\\ncroquette\\ncroquettes\\ncroquis\\ncrore\\ncrores\\ncrosier\\ncrosiers\\ncross\\ncrossarm\\ncrossarms\\ncrossbar\\ncrossbarred\\ncrossbarring\\ncrossbars\\ncrossbow\\ncrossbows\\ncrossbreed\\ncrossbreeded\\ncrossbreeding\\ncrossbreeds\\ncrosscut\\ncrosscuts\\ncrosscutting\\ncrosse\\ncrossed\\ncrosser\\ncrossers\\ncrosses\\ncrossest\\ncrossing\\ncrossings\\ncrosslet\\ncrosslets\\ncrossly\\ncrossover\\ncrossovers\\ncrossroads\\ncrosstie\\ncrossties\\ncrosswalk\\ncrosswalks\\ncrossway\\ncrossways\\ncrosswise\\ncrotch\\ncrotched\\ncrotches\\ncrotchet\\ncrotchets\\ncrotchety\\ncroton\\ncrotons\\ncrouch\\ncrouched\\ncrouches\\ncrouching\\ncroup\\ncroupe\\ncroupes\\ncroupier\\ncroupiers\\ncroupiest\\ncroupily\\ncroupous\\ncroups\\ncroupy\\ncrouse\\ncrousely\\ncrouton\\ncroutons\\ncrow\\ncrowbar\\ncrowbars\\ncrowd\\ncrowded\\ncrowder\\ncrowders\\ncrowdie\\ncrowdies\\ncrowding\\ncrowds\\ncrowdy\\ncrowed\\ncrower\\ncrowers\\ncrowfeet\\ncrowfoot\\ncrowfoots\\ncrowing\\ncrown\\ncrowned\\ncrowner\\ncrowners\\ncrownet\\ncrownets\\ncrowning\\ncrowns\\ncrows\\ncrowstep\\ncrowsteps\\ncroze\\ncrozer\\ncrozers\\ncrozes\\ncrozier\\ncroziers\\ncruces\\ncrucial\\ncrucian\\ncrucians\\ncruciate\\ncrucible\\ncrucibles\\ncrucifer\\ncrucifers\\ncrucified\\ncrucifies\\ncrucifix\\ncrucifixes\\ncrucifixion\\ncrucify\\ncrucifying\\ncrud\\ncrudded\\ncrudding\\ncruddy\\ncrude\\ncrudely\\ncruder\\ncrudes\\ncrudest\\ncrudities\\ncrudity\\ncruds\\ncruel\\ncrueler\\ncruelest\\ncrueller\\ncruellest\\ncruelly\\ncruelties\\ncruelty\\ncruet\\ncruets\\ncruise\\ncruised\\ncruiser\\ncruisers\\ncruises\\ncruising\\ncruller\\ncrullers\\ncrumb\\ncrumbed\\ncrumber\\ncrumbers\\ncrumbier\\ncrumbiest\\ncrumbing\\ncrumble\\ncrumbled\\ncrumbles\\ncrumblier\\ncrumbliest\\ncrumbling\\ncrumbly\\ncrumbs\\ncrumby\\ncrummie\\ncrummier\\ncrummies\\ncrummiest\\ncrummy\\ncrump\\ncrumped\\ncrumpet\\ncrumpets\\ncrumping\\ncrumple\\ncrumpled\\ncrumples\\ncrumpling\\ncrumply\\ncrumps\\ncrunch\\ncrunched\\ncruncher\\ncrunchers\\ncrunches\\ncrunchier\\ncrunchiest\\ncrunching\\ncrunchy\\ncrunodal\\ncrunode\\ncrunodes\\ncruor\\ncruors\\ncrupper\\ncruppers\\ncrura\\ncrural\\ncrus\\ncrusade\\ncrusaded\\ncrusader\\ncrusaders\\ncrusades\\ncrusading\\ncrusado\\ncrusadoes\\ncrusados\\ncruse\\ncruses\\ncruset\\ncrusets\\ncrush\\ncrushed\\ncrusher\\ncrushers\\ncrushes\\ncrushing\\ncrusily\\ncrust\\ncrustacean\\ncrustaceans\\ncrustal\\ncrusted\\ncrustier\\ncrustiest\\ncrustily\\ncrusting\\ncrustose\\ncrusts\\ncrusty\\ncrutch\\ncrutched\\ncrutches\\ncrutching\\ncrux\\ncruxes\\ncruzado\\ncruzadoes\\ncruzados\\ncruzeiro\\ncruzeiros\\ncrwth\\ncrwths\\ncry\\ncrybabies\\ncrybaby\\ncrying\\ncryingly\\ncryogen\\ncryogenies\\ncryogens\\ncryogeny\\ncryolite\\ncryolites\\ncryonic\\ncryonics\\ncryostat\\ncryostats\\ncryotron\\ncryotrons\\ncrypt\\ncryptal\\ncryptic\\ncrypto\\ncryptographic\\ncryptographies\\ncryptography\\ncryptos\\ncrypts\\ncrystal\\ncrystallization\\ncrystallizations\\ncrystallize\\ncrystallized\\ncrystallizes\\ncrystallizing\\ncrystals\\nctenidia\\nctenoid\\ncub\\ncubage\\ncubages\\ncubature\\ncubatures\\ncubbies\\ncubbish\\ncubby\\ncubbyhole\\ncubbyholes\\ncube\\ncubeb\\ncubebs\\ncubed\\ncuber\\ncubers\\ncubes\\ncubic\\ncubical\\ncubicities\\ncubicity\\ncubicle\\ncubicles\\ncubicly\\ncubics\\ncubicula\\ncubiform\\ncubing\\ncubism\\ncubisms\\ncubist\\ncubistic\\ncubists\\ncubit\\ncubital\\ncubits\\ncuboid\\ncuboidal\\ncuboids\\ncubs\\ncuckold\\ncuckolded\\ncuckolding\\ncuckolds\\ncuckoo\\ncuckooed\\ncuckooing\\ncuckoos\\ncucumber\\ncucumbers\\ncucurbit\\ncucurbits\\ncud\\ncudbear\\ncudbears\\ncuddie\\ncuddies\\ncuddle\\ncuddled\\ncuddles\\ncuddlier\\ncuddliest\\ncuddling\\ncuddly\\ncuddy\\ncudgel\\ncudgeled\\ncudgeler\\ncudgelers\\ncudgeling\\ncudgelled\\ncudgelling\\ncudgels\\ncuds\\ncudweed\\ncudweeds\\ncue\\ncued\\ncueing\\ncues\\ncuesta\\ncuestas\\ncuff\\ncuffed\\ncuffing\\ncuffless\\ncuffs\\ncuif\\ncuifs\\ncuing\\ncuirass\\ncuirassed\\ncuirasses\\ncuirassing\\ncuish\\ncuishes\\ncuisine\\ncuisines\\ncuisse\\ncuisses\\ncuittle\\ncuittled\\ncuittles\\ncuittling\\ncuke\\ncukes\\nculch\\nculches\\nculet\\nculets\\nculex\\nculices\\nculicid\\nculicids\\nculicine\\nculicines\\nculinary\\ncull\\ncullay\\ncullays\\nculled\\nculler\\ncullers\\ncullet\\ncullets\\ncullied\\ncullies\\nculling\\ncullion\\ncullions\\ncullis\\ncullises\\nculls\\ncully\\ncullying\\nculm\\nculmed\\nculminatation\\nculminatations\\nculminate\\nculminated\\nculminates\\nculminating\\nculming\\nculms\\nculotte\\nculottes\\nculpa\\nculpable\\nculpably\\nculpae\\nculprit\\nculprits\\ncult\\ncultch\\ncultches\\nculti\\ncultic\\ncultigen\\ncultigens\\ncultism\\ncultisms\\ncultist\\ncultists\\ncultivar\\ncultivars\\ncultivatation\\ncultivatations\\ncultivate\\ncultivated\\ncultivates\\ncultivating\\ncultrate\\ncults\\ncultural\\nculture\\ncultured\\ncultures\\nculturing\\ncultus\\ncultuses\\nculver\\nculverin\\nculverins\\nculvers\\nculvert\\nculverts\\ncum\\ncumarin\\ncumarins\\ncumber\\ncumbered\\ncumberer\\ncumberers\\ncumbering\\ncumbers\\ncumbersome\\ncumbrous\\ncumin\\ncumins\\ncummer\\ncummers\\ncummin\\ncummins\\ncumquat\\ncumquats\\ncumshaw\\ncumshaws\\ncumulate\\ncumulated\\ncumulates\\ncumulating\\ncumulative\\ncumuli\\ncumulous\\ncumulus\\ncundum\\ncundums\\ncuneal\\ncuneate\\ncuneated\\ncuneatic\\ncuniform\\ncuniforms\\ncunner\\ncunners\\ncunning\\ncunninger\\ncunningest\\ncunningly\\ncunnings\\ncup\\ncupboard\\ncupboards\\ncupcake\\ncupcakes\\ncupel\\ncupeled\\ncupeler\\ncupelers\\ncupeling\\ncupelled\\ncupeller\\ncupellers\\ncupelling\\ncupels\\ncupful\\ncupfuls\\ncupid\\ncupidities\\ncupidity\\ncupids\\ncuplike\\ncupola\\ncupolaed\\ncupolaing\\ncupolas\\ncuppa\\ncuppas\\ncupped\\ncupper\\ncuppers\\ncuppier\\ncuppiest\\ncupping\\ncuppings\\ncuppy\\ncupreous\\ncupric\\ncuprite\\ncuprites\\ncuprous\\ncuprum\\ncuprums\\ncups\\ncupsful\\ncupula\\ncupulae\\ncupular\\ncupulate\\ncupule\\ncupules\\ncur\\ncurable\\ncurably\\ncuracao\\ncuracaos\\ncuracies\\ncuracoa\\ncuracoas\\ncuracy\\ncuragh\\ncuraghs\\ncurara\\ncuraras\\ncurare\\ncurares\\ncurari\\ncurarine\\ncurarines\\ncuraris\\ncurarize\\ncurarized\\ncurarizes\\ncurarizing\\ncurassow\\ncurassows\\ncurate\\ncurates\\ncurative\\ncuratives\\ncurator\\ncurators\\ncurb\\ncurbable\\ncurbed\\ncurber\\ncurbers\\ncurbing\\ncurbings\\ncurbs\\ncurch\\ncurches\\ncurculio\\ncurculios\\ncurcuma\\ncurcumas\\ncurd\\ncurded\\ncurdier\\ncurdiest\\ncurding\\ncurdle\\ncurdled\\ncurdler\\ncurdlers\\ncurdles\\ncurdling\\ncurds\\ncurdy\\ncure\\ncured\\ncureless\\ncurer\\ncurers\\ncures\\ncuret\\ncurets\\ncurette\\ncuretted\\ncurettes\\ncuretting\\ncurf\\ncurfew\\ncurfews\\ncurfs\\ncuria\\ncuriae\\ncurial\\ncurie\\ncuries\\ncuring\\ncurio\\ncurios\\ncuriosa\\ncuriosities\\ncuriosity\\ncurious\\ncuriouser\\ncuriousest\\ncurite\\ncurites\\ncurium\\ncuriums\\ncurl\\ncurled\\ncurler\\ncurlers\\ncurlew\\ncurlews\\ncurlicue\\ncurlicued\\ncurlicues\\ncurlicuing\\ncurlier\\ncurliest\\ncurlily\\ncurling\\ncurlings\\ncurls\\ncurly\\ncurlycue\\ncurlycues\\ncurmudgeon\\ncurmudgeons\\ncurn\\ncurns\\ncurr\\ncurrach\\ncurrachs\\ncurragh\\ncurraghs\\ncurran\\ncurrans\\ncurrant\\ncurrants\\ncurred\\ncurrencies\\ncurrency\\ncurrent\\ncurrently\\ncurrents\\ncurricle\\ncurricles\\ncurriculum\\ncurrie\\ncurried\\ncurrier\\ncurrieries\\ncurriers\\ncurriery\\ncurries\\ncurring\\ncurrish\\ncurrs\\ncurry\\ncurrying\\ncurs\\ncurse\\ncursed\\ncurseder\\ncursedest\\ncursedly\\ncurser\\ncursers\\ncurses\\ncursing\\ncursive\\ncursives\\ncursory\\ncurst\\ncurt\\ncurtail\\ncurtailed\\ncurtailing\\ncurtailment\\ncurtailments\\ncurtails\\ncurtain\\ncurtained\\ncurtaining\\ncurtains\\ncurtal\\ncurtalax\\ncurtalaxes\\ncurtals\\ncurtate\\ncurter\\ncurtesies\\ncurtest\\ncurtesy\\ncurtly\\ncurtness\\ncurtnesses\\ncurtsey\\ncurtseyed\\ncurtseying\\ncurtseys\\ncurtsied\\ncurtsies\\ncurtsy\\ncurtsying\\ncurule\\ncurve\\ncurved\\ncurves\\ncurvet\\ncurveted\\ncurveting\\ncurvets\\ncurvetted\\ncurvetting\\ncurvey\\ncurvier\\ncurviest\\ncurving\\ncurvy\\ncuscus\\ncuscuses\\ncusec\\ncusecs\\ncushat\\ncushats\\ncushaw\\ncushaws\\ncushier\\ncushiest\\ncushily\\ncushion\\ncushioned\\ncushioning\\ncushions\\ncushiony\\ncushy\\ncusk\\ncusks\\ncusp\\ncuspate\\ncuspated\\ncusped\\ncuspid\\ncuspidal\\ncuspides\\ncuspidor\\ncuspidors\\ncuspids\\ncuspis\\ncusps\\ncuss\\ncussed\\ncussedly\\ncusser\\ncussers\\ncusses\\ncussing\\ncusso\\ncussos\\ncussword\\ncusswords\\ncustard\\ncustards\\ncustodes\\ncustodial\\ncustodian\\ncustodians\\ncustodies\\ncustody\\ncustom\\ncustomarily\\ncustomary\\ncustomer\\ncustomers\\ncustomize\\ncustomized\\ncustomizes\\ncustomizing\\ncustoms\\ncustos\\ncustumal\\ncustumals\\ncut\\ncutaneous\\ncutaway\\ncutaways\\ncutback\\ncutbacks\\ncutch\\ncutcheries\\ncutchery\\ncutches\\ncutdown\\ncutdowns\\ncute\\ncutely\\ncuteness\\ncutenesses\\ncuter\\ncutes\\ncutesier\\ncutesiest\\ncutest\\ncutesy\\ncutey\\ncuteys\\ncutgrass\\ncutgrasses\\ncuticle\\ncuticles\\ncuticula\\ncuticulae\\ncutie\\ncuties\\ncutin\\ncutinise\\ncutinised\\ncutinises\\ncutinising\\ncutinize\\ncutinized\\ncutinizes\\ncutinizing\\ncutins\\ncutis\\ncutises\\ncutlas\\ncutlases\\ncutlass\\ncutlasses\\ncutler\\ncutleries\\ncutlers\\ncutlery\\ncutlet\\ncutlets\\ncutline\\ncutlines\\ncutoff\\ncutoffs\\ncutout\\ncutouts\\ncutover\\ncutpurse\\ncutpurses\\ncuts\\ncuttable\\ncuttage\\ncuttages\\ncutter\\ncutters\\ncutthroat\\ncutthroats\\ncutties\\ncutting\\ncuttings\\ncuttle\\ncuttled\\ncuttles\\ncuttling\\ncutty\\ncutup\\ncutups\\ncutwater\\ncutwaters\\ncutwork\\ncutworks\\ncutworm\\ncutworms\\ncuvette\\ncuvettes\\ncwm\\ncwms\\ncyan\\ncyanamid\\ncyanamids\\ncyanate\\ncyanates\\ncyanic\\ncyanid\\ncyanide\\ncyanided\\ncyanides\\ncyaniding\\ncyanids\\ncyanin\\ncyanine\\ncyanines\\ncyanins\\ncyanite\\ncyanites\\ncyanitic\\ncyano\\ncyanogen\\ncyanogens\\ncyanosed\\ncyanoses\\ncyanosis\\ncyanotic\\ncyans\\ncyborg\\ncyborgs\\ncycad\\ncycads\\ncycas\\ncycases\\ncycasin\\ncycasins\\ncyclamen\\ncyclamens\\ncyclase\\ncyclases\\ncycle\\ncyclecar\\ncyclecars\\ncycled\\ncycler\\ncyclers\\ncycles\\ncyclic\\ncyclical\\ncyclicly\\ncycling\\ncyclings\\ncyclist\\ncyclists\\ncyclitol\\ncyclitols\\ncyclize\\ncyclized\\ncyclizes\\ncyclizing\\ncyclo\\ncycloid\\ncycloids\\ncyclonal\\ncyclone\\ncyclones\\ncyclonic\\ncyclopaedia\\ncyclopaedias\\ncyclopedia\\ncyclopedias\\ncyclophosphamide\\ncyclophosphamides\\ncyclops\\ncyclorama\\ncycloramas\\ncyclos\\ncycloses\\ncyclosis\\ncyder\\ncyders\\ncyeses\\ncyesis\\ncygnet\\ncygnets\\ncylices\\ncylinder\\ncylindered\\ncylindering\\ncylinders\\ncylix\\ncyma\\ncymae\\ncymar\\ncymars\\ncymas\\ncymatia\\ncymatium\\ncymbal\\ncymbaler\\ncymbalers\\ncymbals\\ncymbling\\ncymblings\\ncyme\\ncymene\\ncymenes\\ncymes\\ncymlin\\ncymling\\ncymlings\\ncymlins\\ncymogene\\ncymogenes\\ncymoid\\ncymol\\ncymols\\ncymose\\ncymosely\\ncymous\\ncynic\\ncynical\\ncynicism\\ncynicisms\\ncynics\\ncynosure\\ncynosures\\ncypher\\ncyphered\\ncyphering\\ncyphers\\ncypres\\ncypreses\\ncypress\\ncypresses\\ncyprian\\ncyprians\\ncyprinid\\ncyprinids\\ncyprus\\ncypruses\\ncypsela\\ncypselae\\ncyst\\ncystein\\ncysteine\\ncysteines\\ncysteins\\ncystic\\ncystine\\ncystines\\ncystitides\\ncystitis\\ncystoid\\ncystoids\\ncysts\\ncytaster\\ncytasters\\ncytidine\\ncytidines\\ncytogenies\\ncytogeny\\ncytologies\\ncytology\\ncyton\\ncytons\\ncytopathological\\ncytosine\\ncytosines\\nczar\\nczardas\\nczardom\\nczardoms\\nczarevna\\nczarevnas\\nczarina\\nczarinas\\nczarism\\nczarisms\\nczarist\\nczarists\\nczaritza\\nczaritzas\\nczars\\nda\\ndab\\ndabbed\\ndabber\\ndabbers\\ndabbing\\ndabble\\ndabbled\\ndabbler\\ndabblers\\ndabbles\\ndabbling\\ndabblings\\ndabchick\\ndabchicks\\ndabs\\ndabster\\ndabsters\\ndace\\ndaces\\ndacha\\ndachas\\ndachshund\\ndachshunds\\ndacker\\ndackered\\ndackering\\ndackers\\ndacoit\\ndacoities\\ndacoits\\ndacoity\\ndactyl\\ndactyli\\ndactylic\\ndactylics\\ndactyls\\ndactylus\\ndad\\ndada\\ndadaism\\ndadaisms\\ndadaist\\ndadaists\\ndadas\\ndaddies\\ndaddle\\ndaddled\\ndaddles\\ndaddling\\ndaddy\\ndado\\ndadoed\\ndadoes\\ndadoing\\ndados\\ndads\\ndaedal\\ndaemon\\ndaemonic\\ndaemons\\ndaff\\ndaffed\\ndaffier\\ndaffiest\\ndaffing\\ndaffodil\\ndaffodils\\ndaffs\\ndaffy\\ndaft\\ndafter\\ndaftest\\ndaftly\\ndaftness\\ndaftnesses\\ndag\\ndagger\\ndaggered\\ndaggering\\ndaggers\\ndaggle\\ndaggled\\ndaggles\\ndaggling\\ndaglock\\ndaglocks\\ndago\\ndagoba\\ndagobas\\ndagoes\\ndagos\\ndags\\ndah\\ndahabeah\\ndahabeahs\\ndahabiah\\ndahabiahs\\ndahabieh\\ndahabiehs\\ndahabiya\\ndahabiyas\\ndahlia\\ndahlias\\ndahoon\\ndahoons\\ndahs\\ndaiker\\ndaikered\\ndaikering\\ndaikers\\ndailies\\ndaily\\ndaimen\\ndaimio\\ndaimios\\ndaimon\\ndaimones\\ndaimonic\\ndaimons\\ndaimyo\\ndaimyos\\ndaintier\\ndainties\\ndaintiest\\ndaintily\\ndaintiness\\ndaintinesses\\ndainty\\ndaiquiri\\ndaiquiris\\ndairies\\ndairy\\ndairying\\ndairyings\\ndairymaid\\ndairymaids\\ndairyman\\ndairymen\\ndais\\ndaises\\ndaishiki\\ndaishikis\\ndaisied\\ndaisies\\ndaisy\\ndak\\ndakerhen\\ndakerhens\\ndakoit\\ndakoities\\ndakoits\\ndakoity\\ndaks\\ndalapon\\ndalapons\\ndalasi\\ndale\\ndales\\ndalesman\\ndalesmen\\ndaleth\\ndaleths\\ndalles\\ndalliance\\ndalliances\\ndallied\\ndallier\\ndalliers\\ndallies\\ndally\\ndallying\\ndalmatian\\ndalmatians\\ndalmatic\\ndalmatics\\ndaltonic\\ndam\\ndamage\\ndamaged\\ndamager\\ndamagers\\ndamages\\ndamaging\\ndaman\\ndamans\\ndamar\\ndamars\\ndamask\\ndamasked\\ndamasking\\ndamasks\\ndame\\ndames\\ndamewort\\ndameworts\\ndammar\\ndammars\\ndammed\\ndammer\\ndammers\\ndamming\\ndamn\\ndamnable\\ndamnably\\ndamnation\\ndamnations\\ndamndest\\ndamndests\\ndamned\\ndamneder\\ndamnedest\\ndamner\\ndamners\\ndamnified\\ndamnifies\\ndamnify\\ndamnifying\\ndamning\\ndamns\\ndamosel\\ndamosels\\ndamozel\\ndamozels\\ndamp\\ndamped\\ndampen\\ndampened\\ndampener\\ndampeners\\ndampening\\ndampens\\ndamper\\ndampers\\ndampest\\ndamping\\ndampish\\ndamply\\ndampness\\ndampnesses\\ndamps\\ndams\\ndamsel\\ndamsels\\ndamson\\ndamsons\\ndance\\ndanced\\ndancer\\ndancers\\ndances\\ndancing\\ndandelion\\ndandelions\\ndander\\ndandered\\ndandering\\ndanders\\ndandier\\ndandies\\ndandiest\\ndandified\\ndandifies\\ndandify\\ndandifying\\ndandily\\ndandle\\ndandled\\ndandler\\ndandlers\\ndandles\\ndandling\\ndandriff\\ndandriffs\\ndandruff\\ndandruffs\\ndandy\\ndandyish\\ndandyism\\ndandyisms\\ndanegeld\\ndanegelds\\ndaneweed\\ndaneweeds\\ndanewort\\ndaneworts\\ndang\\ndanged\\ndanger\\ndangered\\ndangering\\ndangerous\\ndangerously\\ndangers\\ndanging\\ndangle\\ndangled\\ndangler\\ndanglers\\ndangles\\ndangling\\ndangs\\ndanio\\ndanios\\ndank\\ndanker\\ndankest\\ndankly\\ndankness\\ndanknesses\\ndanseur\\ndanseurs\\ndanseuse\\ndanseuses\\ndap\\ndaphne\\ndaphnes\\ndaphnia\\ndaphnias\\ndapped\\ndapper\\ndapperer\\ndapperest\\ndapperly\\ndapping\\ndapple\\ndappled\\ndapples\\ndappling\\ndaps\\ndarb\\ndarbies\\ndarbs\\ndare\\ndared\\ndaredevil\\ndaredevils\\ndareful\\ndarer\\ndarers\\ndares\\ndaresay\\ndaric\\ndarics\\ndaring\\ndaringly\\ndarings\\ndariole\\ndarioles\\ndark\\ndarked\\ndarken\\ndarkened\\ndarkener\\ndarkeners\\ndarkening\\ndarkens\\ndarker\\ndarkest\\ndarkey\\ndarkeys\\ndarkie\\ndarkies\\ndarking\\ndarkish\\ndarkle\\ndarkled\\ndarkles\\ndarklier\\ndarkliest\\ndarkling\\ndarkly\\ndarkness\\ndarknesses\\ndarkroom\\ndarkrooms\\ndarks\\ndarksome\\ndarky\\ndarling\\ndarlings\\ndarn\\ndarndest\\ndarndests\\ndarned\\ndarneder\\ndarnedest\\ndarnel\\ndarnels\\ndarner\\ndarners\\ndarning\\ndarnings\\ndarns\\ndart\\ndarted\\ndarter\\ndarters\\ndarting\\ndartle\\ndartled\\ndartles\\ndartling\\ndartmouth\\ndarts\\ndash\\ndashboard\\ndashboards\\ndashed\\ndasheen\\ndasheens\\ndasher\\ndashers\\ndashes\\ndashier\\ndashiest\\ndashiki\\ndashikis\\ndashing\\ndashpot\\ndashpots\\ndashy\\ndassie\\ndassies\\ndastard\\ndastardly\\ndastards\\ndasyure\\ndasyures\\ndata\\ndatable\\ndatamedia\\ndatapoint\\ndataries\\ndatary\\ndatcha\\ndatchas\\ndate\\ndateable\\ndated\\ndatedly\\ndateless\\ndateline\\ndatelined\\ndatelines\\ndatelining\\ndater\\ndaters\\ndates\\ndating\\ndatival\\ndative\\ndatively\\ndatives\\ndato\\ndatos\\ndatto\\ndattos\\ndatum\\ndatums\\ndatura\\ndaturas\\ndaturic\\ndaub\\ndaube\\ndaubed\\ndauber\\ndauberies\\ndaubers\\ndaubery\\ndaubes\\ndaubier\\ndaubiest\\ndaubing\\ndaubries\\ndaubry\\ndaubs\\ndauby\\ndaughter\\ndaughterly\\ndaughters\\ndaunder\\ndaundered\\ndaundering\\ndaunders\\ndaunt\\ndaunted\\ndaunter\\ndaunters\\ndaunting\\ndauntless\\ndaunts\\ndauphin\\ndauphine\\ndauphines\\ndauphins\\ndaut\\ndauted\\ndautie\\ndauties\\ndauting\\ndauts\\ndaven\\ndavened\\ndavening\\ndavenport\\ndavenports\\ndavens\\ndavies\\ndavit\\ndavits\\ndavy\\ndaw\\ndawdle\\ndawdled\\ndawdler\\ndawdlers\\ndawdles\\ndawdling\\ndawed\\ndawen\\ndawing\\ndawk\\ndawks\\ndawn\\ndawned\\ndawning\\ndawnlike\\ndawns\\ndaws\\ndawt\\ndawted\\ndawtie\\ndawties\\ndawting\\ndawts\\nday\\ndaybed\\ndaybeds\\ndaybook\\ndaybooks\\ndaybreak\\ndaybreaks\\ndaydream\\ndaydreamed\\ndaydreaming\\ndaydreams\\ndaydreamt\\ndayflies\\ndayfly\\ndayglow\\ndayglows\\ndaylight\\ndaylighted\\ndaylighting\\ndaylights\\ndaylilies\\ndaylily\\ndaylit\\ndaylong\\ndaymare\\ndaymares\\ndayroom\\ndayrooms\\ndays\\ndayside\\ndaysides\\ndaysman\\ndaysmen\\ndaystar\\ndaystars\\ndaytime\\ndaytimes\\ndaze\\ndazed\\ndazedly\\ndazes\\ndazing\\ndazzle\\ndazzled\\ndazzler\\ndazzlers\\ndazzles\\ndazzling\\nde\\ndeacon\\ndeaconed\\ndeaconess\\ndeaconesses\\ndeaconing\\ndeaconries\\ndeaconry\\ndeacons\\ndead\\ndeadbeat\\ndeadbeats\\ndeaden\\ndeadened\\ndeadener\\ndeadeners\\ndeadening\\ndeadens\\ndeader\\ndeadest\\ndeadeye\\ndeadeyes\\ndeadfall\\ndeadfalls\\ndeadhead\\ndeadheaded\\ndeadheading\\ndeadheads\\ndeadlier\\ndeadliest\\ndeadline\\ndeadlines\\ndeadliness\\ndeadlinesses\\ndeadlock\\ndeadlocked\\ndeadlocking\\ndeadlocks\\ndeadly\\ndeadness\\ndeadnesses\\ndeadpan\\ndeadpanned\\ndeadpanning\\ndeadpans\\ndeads\\ndeadwood\\ndeadwoods\\ndeaerate\\ndeaerated\\ndeaerates\\ndeaerating\\ndeaf\\ndeafen\\ndeafened\\ndeafening\\ndeafens\\ndeafer\\ndeafest\\ndeafish\\ndeafly\\ndeafness\\ndeafnesses\\ndeair\\ndeaired\\ndeairing\\ndeairs\\ndeal\\ndealate\\ndealated\\ndealates\\ndealer\\ndealers\\ndealfish\\ndealfishes\\ndealing\\ndealings\\ndeals\\ndealt\\ndean\\ndeaned\\ndeaneries\\ndeanery\\ndeaning\\ndeans\\ndeanship\\ndeanships\\ndear\\ndearer\\ndearest\\ndearie\\ndearies\\ndearly\\ndearness\\ndearnesses\\ndears\\ndearth\\ndearths\\ndeary\\ndeash\\ndeashed\\ndeashes\\ndeashing\\ndeasil\\ndeath\\ndeathbed\\ndeathbeds\\ndeathcup\\ndeathcups\\ndeathful\\ndeathless\\ndeathly\\ndeaths\\ndeathy\\ndeave\\ndeaved\\ndeaves\\ndeaving\\ndeb\\ndebacle\\ndebacles\\ndebar\\ndebark\\ndebarkation\\ndebarkations\\ndebarked\\ndebarking\\ndebarks\\ndebarred\\ndebarring\\ndebars\\ndebase\\ndebased\\ndebasement\\ndebasements\\ndebaser\\ndebasers\\ndebases\\ndebasing\\ndebatable\\ndebate\\ndebated\\ndebater\\ndebaters\\ndebates\\ndebating\\ndebauch\\ndebauched\\ndebaucheries\\ndebauchery\\ndebauches\\ndebauching\\ndebilitate\\ndebilitated\\ndebilitates\\ndebilitating\\ndebilities\\ndebility\\ndebit\\ndebited\\ndebiting\\ndebits\\ndebonair\\ndebone\\ndeboned\\ndeboner\\ndeboners\\ndebones\\ndeboning\\ndebouch\\ndebouche\\ndebouched\\ndebouches\\ndebouching\\ndebrief\\ndebriefed\\ndebriefing\\ndebriefs\\ndebris\\ndebruise\\ndebruised\\ndebruises\\ndebruising\\ndebs\\ndebt\\ndebtless\\ndebtor\\ndebtors\\ndebts\\ndebug\\ndebugged\\ndebugging\\ndebugs\\ndebunk\\ndebunked\\ndebunker\\ndebunkers\\ndebunking\\ndebunks\\ndebut\\ndebutant\\ndebutante\\ndebutantes\\ndebutants\\ndebuted\\ndebuting\\ndebuts\\ndebye\\ndebyes\\ndecadal\\ndecade\\ndecadence\\ndecadent\\ndecadents\\ndecades\\ndecagon\\ndecagons\\ndecagram\\ndecagrams\\ndecal\\ndecals\\ndecamp\\ndecamped\\ndecamping\\ndecamps\\ndecanal\\ndecane\\ndecanes\\ndecant\\ndecanted\\ndecanter\\ndecanters\\ndecanting\\ndecants\\ndecapitatation\\ndecapitatations\\ndecapitate\\ndecapitated\\ndecapitates\\ndecapitating\\ndecapod\\ndecapods\\ndecare\\ndecares\\ndecay\\ndecayed\\ndecayer\\ndecayers\\ndecaying\\ndecays\\ndecease\\ndeceased\\ndeceases\\ndeceasing\\ndecedent\\ndecedents\\ndeceit\\ndeceitful\\ndeceitfully\\ndeceitfulness\\ndeceitfulnesses\\ndeceits\\ndeceive\\ndeceived\\ndeceiver\\ndeceivers\\ndeceives\\ndeceiving\\ndecelerate\\ndecelerated\\ndecelerates\\ndecelerating\\ndecemvir\\ndecemviri\\ndecemvirs\\ndecenaries\\ndecenary\\ndecencies\\ndecency\\ndecennia\\ndecent\\ndecenter\\ndecentered\\ndecentering\\ndecenters\\ndecentest\\ndecently\\ndecentralization\\ndecentre\\ndecentred\\ndecentres\\ndecentring\\ndeception\\ndeceptions\\ndeceptively\\ndecern\\ndecerned\\ndecerning\\ndecerns\\ndeciare\\ndeciares\\ndecibel\\ndecibels\\ndecide\\ndecided\\ndecidedly\\ndecider\\ndeciders\\ndecides\\ndeciding\\ndecidua\\ndeciduae\\ndecidual\\ndeciduas\\ndeciduous\\ndecigram\\ndecigrams\\ndecile\\ndeciles\\ndecimal\\ndecimally\\ndecimals\\ndecimate\\ndecimated\\ndecimates\\ndecimating\\ndecipher\\ndecipherable\\ndeciphered\\ndeciphering\\ndeciphers\\ndecision\\ndecisions\\ndecisive\\ndecisively\\ndecisiveness\\ndecisivenesses\\ndeck\\ndecked\\ndeckel\\ndeckels\\ndecker\\ndeckers\\ndeckhand\\ndeckhands\\ndecking\\ndeckings\\ndeckle\\ndeckles\\ndecks\\ndeclaim\\ndeclaimed\\ndeclaiming\\ndeclaims\\ndeclamation\\ndeclamations\\ndeclaration\\ndeclarations\\ndeclarative\\ndeclaratory\\ndeclare\\ndeclared\\ndeclarer\\ndeclarers\\ndeclares\\ndeclaring\\ndeclass\\ndeclasse\\ndeclassed\\ndeclasses\\ndeclassing\\ndeclension\\ndeclensions\\ndeclination\\ndeclinations\\ndecline\\ndeclined\\ndecliner\\ndecliners\\ndeclines\\ndeclining\\ndecoct\\ndecocted\\ndecocting\\ndecocts\\ndecode\\ndecoded\\ndecoder\\ndecoders\\ndecodes\\ndecoding\\ndecolor\\ndecolored\\ndecoloring\\ndecolors\\ndecolour\\ndecoloured\\ndecolouring\\ndecolours\\ndecompose\\ndecomposed\\ndecomposes\\ndecomposing\\ndecomposition\\ndecompositions\\ndecongestant\\ndecongestants\\ndecor\\ndecorate\\ndecorated\\ndecorates\\ndecorating\\ndecoration\\ndecorations\\ndecorative\\ndecorator\\ndecorators\\ndecorous\\ndecorously\\ndecorousness\\ndecorousnesses\\ndecors\\ndecorum\\ndecorums\\ndecoy\\ndecoyed\\ndecoyer\\ndecoyers\\ndecoying\\ndecoys\\ndecrease\\ndecreased\\ndecreases\\ndecreasing\\ndecree\\ndecreed\\ndecreeing\\ndecreer\\ndecreers\\ndecrees\\ndecrepit\\ndecrescendo\\ndecretal\\ndecretals\\ndecrial\\ndecrials\\ndecried\\ndecrier\\ndecriers\\ndecries\\ndecrown\\ndecrowned\\ndecrowning\\ndecrowns\\ndecry\\ndecrying\\ndecrypt\\ndecrypted\\ndecrypting\\ndecrypts\\ndecuman\\ndecuple\\ndecupled\\ndecuples\\ndecupling\\ndecuries\\ndecurion\\ndecurions\\ndecurve\\ndecurved\\ndecurves\\ndecurving\\ndecury\\ndedal\\ndedans\\ndedicate\\ndedicated\\ndedicates\\ndedicating\\ndedication\\ndedications\\ndedicatory\\ndeduce\\ndeduced\\ndeduces\\ndeducible\\ndeducing\\ndeduct\\ndeducted\\ndeductible\\ndeducting\\ndeduction\\ndeductions\\ndeductive\\ndeducts\\ndee\\ndeed\\ndeeded\\ndeedier\\ndeediest\\ndeeding\\ndeedless\\ndeeds\\ndeedy\\ndeejay\\ndeejays\\ndeem\\ndeemed\\ndeeming\\ndeems\\ndeemster\\ndeemsters\\ndeep\\ndeepen\\ndeepened\\ndeepener\\ndeepeners\\ndeepening\\ndeepens\\ndeeper\\ndeepest\\ndeeply\\ndeepness\\ndeepnesses\\ndeeps\\ndeer\\ndeerflies\\ndeerfly\\ndeers\\ndeerskin\\ndeerskins\\ndeerweed\\ndeerweeds\\ndeeryard\\ndeeryards\\ndees\\ndeewan\\ndeewans\\ndeface\\ndefaced\\ndefacement\\ndefacements\\ndefacer\\ndefacers\\ndefaces\\ndefacing\\ndefamation\\ndefamations\\ndefamatory\\ndefame\\ndefamed\\ndefamer\\ndefamers\\ndefames\\ndefaming\\ndefat\\ndefats\\ndefatted\\ndefatting\\ndefault\\ndefaulted\\ndefaulting\\ndefaults\\ndefeat\\ndefeated\\ndefeater\\ndefeaters\\ndefeating\\ndefeats\\ndefecate\\ndefecated\\ndefecates\\ndefecating\\ndefecation\\ndefecations\\ndefect\\ndefected\\ndefecting\\ndefection\\ndefections\\ndefective\\ndefectives\\ndefector\\ndefectors\\ndefects\\ndefence\\ndefences\\ndefend\\ndefendant\\ndefendants\\ndefended\\ndefender\\ndefenders\\ndefending\\ndefends\\ndefense\\ndefensed\\ndefenseless\\ndefenses\\ndefensible\\ndefensing\\ndefensive\\ndefer\\ndeference\\ndeferences\\ndeferent\\ndeferential\\ndeferents\\ndeferment\\ndeferments\\ndeferrable\\ndeferral\\ndeferrals\\ndeferred\\ndeferrer\\ndeferrers\\ndeferring\\ndefers\\ndefi\\ndefiance\\ndefiances\\ndefiant\\ndeficiencies\\ndeficiency\\ndeficient\\ndeficit\\ndeficits\\ndefied\\ndefier\\ndefiers\\ndefies\\ndefilade\\ndefiladed\\ndefilades\\ndefilading\\ndefile\\ndefiled\\ndefilement\\ndefilements\\ndefiler\\ndefilers\\ndefiles\\ndefiling\\ndefinable\\ndefinably\\ndefine\\ndefined\\ndefiner\\ndefiners\\ndefines\\ndefining\\ndefinite\\ndefinitely\\ndefinition\\ndefinitions\\ndefinitive\\ndefis\\ndeflate\\ndeflated\\ndeflates\\ndeflating\\ndeflation\\ndeflations\\ndeflator\\ndeflators\\ndeflea\\ndefleaed\\ndefleaing\\ndefleas\\ndeflect\\ndeflected\\ndeflecting\\ndeflection\\ndeflections\\ndeflects\\ndeflexed\\ndeflower\\ndeflowered\\ndeflowering\\ndeflowers\\ndefoam\\ndefoamed\\ndefoamer\\ndefoamers\\ndefoaming\\ndefoams\\ndefog\\ndefogged\\ndefogger\\ndefoggers\\ndefogging\\ndefogs\\ndefoliant\\ndefoliants\\ndefoliate\\ndefoliated\\ndefoliates\\ndefoliating\\ndefoliation\\ndefoliations\\ndeforce\\ndeforced\\ndeforces\\ndeforcing\\ndeforest\\ndeforested\\ndeforesting\\ndeforests\\ndeform\\ndeformation\\ndeformations\\ndeformed\\ndeformer\\ndeformers\\ndeforming\\ndeformities\\ndeformity\\ndeforms\\ndefraud\\ndefrauded\\ndefrauding\\ndefrauds\\ndefray\\ndefrayal\\ndefrayals\\ndefrayed\\ndefrayer\\ndefrayers\\ndefraying\\ndefrays\\ndefrock\\ndefrocked\\ndefrocking\\ndefrocks\\ndefrost\\ndefrosted\\ndefroster\\ndefrosters\\ndefrosting\\ndefrosts\\ndeft\\ndefter\\ndeftest\\ndeftly\\ndeftness\\ndeftnesses\\ndefunct\\ndefuse\\ndefused\\ndefuses\\ndefusing\\ndefuze\\ndefuzed\\ndefuzes\\ndefuzing\\ndefy\\ndefying\\ndegage\\ndegame\\ndegames\\ndegami\\ndegamis\\ndegas\\ndegases\\ndegassed\\ndegasser\\ndegassers\\ndegasses\\ndegassing\\ndegauss\\ndegaussed\\ndegausses\\ndegaussing\\ndegeneracies\\ndegeneracy\\ndegenerate\\ndegenerated\\ndegenerates\\ndegenerating\\ndegeneration\\ndegenerations\\ndegenerative\\ndegerm\\ndegermed\\ndegerming\\ndegerms\\ndeglaze\\ndeglazed\\ndeglazes\\ndeglazing\\ndegradable\\ndegradation\\ndegradations\\ndegrade\\ndegraded\\ndegrader\\ndegraders\\ndegrades\\ndegrading\\ndegrease\\ndegreased\\ndegreases\\ndegreasing\\ndegree\\ndegreed\\ndegrees\\ndegum\\ndegummed\\ndegumming\\ndegums\\ndegust\\ndegusted\\ndegusting\\ndegusts\\ndehisce\\ndehisced\\ndehisces\\ndehiscing\\ndehorn\\ndehorned\\ndehorner\\ndehorners\\ndehorning\\ndehorns\\ndehort\\ndehorted\\ndehorting\\ndehorts\\ndehydrate\\ndehydrated\\ndehydrates\\ndehydrating\\ndehydration\\ndehydrations\\ndei\\ndeice\\ndeiced\\ndeicer\\ndeicers\\ndeices\\ndeicidal\\ndeicide\\ndeicides\\ndeicing\\ndeictic\\ndeific\\ndeifical\\ndeification\\ndeifications\\ndeified\\ndeifier\\ndeifies\\ndeiform\\ndeify\\ndeifying\\ndeign\\ndeigned\\ndeigning\\ndeigns\\ndeil\\ndeils\\ndeionize\\ndeionized\\ndeionizes\\ndeionizing\\ndeism\\ndeisms\\ndeist\\ndeistic\\ndeists\\ndeities\\ndeity\\ndeject\\ndejecta\\ndejected\\ndejecting\\ndejection\\ndejections\\ndejects\\ndejeuner\\ndejeuners\\ndekagram\\ndekagrams\\ndekare\\ndekares\\ndeke\\ndeked\\ndekes\\ndeking\\ndel\\ndelaine\\ndelaines\\ndelate\\ndelated\\ndelates\\ndelating\\ndelation\\ndelations\\ndelator\\ndelators\\ndelay\\ndelayed\\ndelayer\\ndelayers\\ndelaying\\ndelays\\ndele\\ndelead\\ndeleaded\\ndeleading\\ndeleads\\ndeled\\ndelegacies\\ndelegacy\\ndelegate\\ndelegated\\ndelegates\\ndelegating\\ndelegation\\ndelegations\\ndeleing\\ndeles\\ndelete\\ndeleted\\ndeleterious\\ndeletes\\ndeleting\\ndeletion\\ndeletions\\ndelf\\ndelfs\\ndelft\\ndelfts\\ndeli\\ndeliberate\\ndeliberated\\ndeliberately\\ndeliberateness\\ndeliberatenesses\\ndeliberates\\ndeliberating\\ndeliberation\\ndeliberations\\ndeliberative\\ndelicacies\\ndelicacy\\ndelicate\\ndelicates\\ndelicatessen\\ndelicatessens\\ndelicious\\ndeliciously\\ndelict\\ndelicts\\ndelight\\ndelighted\\ndelighting\\ndelights\\ndelime\\ndelimed\\ndelimes\\ndeliming\\ndelimit\\ndelimited\\ndelimiter\\ndelimiters\\ndelimiting\\ndelimits\\ndelineate\\ndelineated\\ndelineates\\ndelineating\\ndelineation\\ndelineations\\ndelinquencies\\ndelinquency\\ndelinquent\\ndelinquents\\ndeliria\\ndelirious\\ndelirium\\ndeliriums\\ndelis\\ndelist\\ndelisted\\ndelisting\\ndelists\\ndeliver\\ndeliverance\\ndeliverances\\ndelivered\\ndeliverer\\ndeliverers\\ndeliveries\\ndelivering\\ndelivers\\ndelivery\\ndell\\ndellies\\ndells\\ndelly\\ndelouse\\ndeloused\\ndelouses\\ndelousing\\ndels\\ndelta\\ndeltaic\\ndeltas\\ndeltic\\ndeltoid\\ndeltoids\\ndelude\\ndeluded\\ndeluder\\ndeluders\\ndeludes\\ndeluding\\ndeluge\\ndeluged\\ndeluges\\ndeluging\\ndelusion\\ndelusions\\ndelusive\\ndelusory\\ndeluster\\ndelustered\\ndelustering\\ndelusters\\ndeluxe\\ndelve\\ndelved\\ndelver\\ndelvers\\ndelves\\ndelving\\ndemagog\\ndemagogies\\ndemagogs\\ndemagogue\\ndemagogueries\\ndemagoguery\\ndemagogues\\ndemagogy\\ndemand\\ndemanded\\ndemander\\ndemanders\\ndemanding\\ndemands\\ndemarcation\\ndemarcations\\ndemarche\\ndemarches\\ndemark\\ndemarked\\ndemarking\\ndemarks\\ndemast\\ndemasted\\ndemasting\\ndemasts\\ndeme\\ndemean\\ndemeaned\\ndemeaning\\ndemeanor\\ndemeanors\\ndemeans\\ndement\\ndemented\\ndementia\\ndementias\\ndementing\\ndements\\ndemerit\\ndemerited\\ndemeriting\\ndemerits\\ndemes\\ndemesne\\ndemesnes\\ndemies\\ndemigod\\ndemigods\\ndemijohn\\ndemijohns\\ndemilune\\ndemilunes\\ndemirep\\ndemireps\\ndemise\\ndemised\\ndemises\\ndemising\\ndemit\\ndemitasse\\ndemitasses\\ndemits\\ndemitted\\ndemitting\\ndemiurge\\ndemiurges\\ndemivolt\\ndemivolts\\ndemo\\ndemob\\ndemobbed\\ndemobbing\\ndemobilization\\ndemobilizations\\ndemobilize\\ndemobilized\\ndemobilizes\\ndemobilizing\\ndemobs\\ndemocracies\\ndemocracy\\ndemocrat\\ndemocratic\\ndemocratize\\ndemocratized\\ndemocratizes\\ndemocratizing\\ndemocrats\\ndemode\\ndemoded\\ndemographic\\ndemography\\ndemolish\\ndemolished\\ndemolishes\\ndemolishing\\ndemolition\\ndemolitions\\ndemon\\ndemoness\\ndemonesses\\ndemoniac\\ndemoniacs\\ndemonian\\ndemonic\\ndemonise\\ndemonised\\ndemonises\\ndemonising\\ndemonism\\ndemonisms\\ndemonist\\ndemonists\\ndemonize\\ndemonized\\ndemonizes\\ndemonizing\\ndemons\\ndemonstrable\\ndemonstrate\\ndemonstrated\\ndemonstrates\\ndemonstrating\\ndemonstration\\ndemonstrations\\ndemonstrative\\ndemonstrator\\ndemonstrators\\ndemoralize\\ndemoralized\\ndemoralizes\\ndemoralizing\\ndemos\\ndemoses\\ndemote\\ndemoted\\ndemotes\\ndemotic\\ndemotics\\ndemoting\\ndemotion\\ndemotions\\ndemotist\\ndemotists\\ndemount\\ndemounted\\ndemounting\\ndemounts\\ndempster\\ndempsters\\ndemur\\ndemure\\ndemurely\\ndemurer\\ndemurest\\ndemurral\\ndemurrals\\ndemurred\\ndemurrer\\ndemurrers\\ndemurring\\ndemurs\\ndemy\\nden\\ndenarii\\ndenarius\\ndenary\\ndenature\\ndenatured\\ndenatures\\ndenaturing\\ndenazified\\ndenazifies\\ndenazify\\ndenazifying\\ndendrite\\ndendrites\\ndendroid\\ndendron\\ndendrons\\ndene\\ndenes\\ndengue\\ndengues\\ndeniable\\ndeniably\\ndenial\\ndenials\\ndenied\\ndenier\\ndeniers\\ndenies\\ndenim\\ndenims\\ndenizen\\ndenizened\\ndenizening\\ndenizens\\ndenned\\ndenning\\ndenomination\\ndenominational\\ndenominations\\ndenominator\\ndenominators\\ndenotation\\ndenotations\\ndenotative\\ndenote\\ndenoted\\ndenotes\\ndenoting\\ndenotive\\ndenouement\\ndenouements\\ndenounce\\ndenounced\\ndenounces\\ndenouncing\\ndens\\ndense\\ndensely\\ndenseness\\ndensenesses\\ndenser\\ndensest\\ndensified\\ndensifies\\ndensify\\ndensifying\\ndensities\\ndensity\\ndent\\ndental\\ndentalia\\ndentally\\ndentals\\ndentate\\ndentated\\ndented\\ndenticle\\ndenticles\\ndentifrice\\ndentifrices\\ndentil\\ndentils\\ndentin\\ndentinal\\ndentine\\ndentines\\ndenting\\ndentins\\ndentist\\ndentistries\\ndentistry\\ndentists\\ndentition\\ndentitions\\ndentoid\\ndents\\ndentural\\ndenture\\ndentures\\ndenudate\\ndenudated\\ndenudates\\ndenudating\\ndenude\\ndenuded\\ndenuder\\ndenuders\\ndenudes\\ndenuding\\ndenunciation\\ndenunciations\\ndeny\\ndenying\\ndeodand\\ndeodands\\ndeodar\\ndeodara\\ndeodaras\\ndeodars\\ndeodorant\\ndeodorants\\ndeodorize\\ndeodorized\\ndeodorizes\\ndeodorizing\\ndepaint\\ndepainted\\ndepainting\\ndepaints\\ndepart\\ndeparted\\ndeparting\\ndepartment\\ndepartmental\\ndepartments\\ndeparts\\ndeparture\\ndepartures\\ndepend\\ndependabilities\\ndependability\\ndependable\\ndepended\\ndependence\\ndependences\\ndependencies\\ndependency\\ndependent\\ndependents\\ndepending\\ndepends\\ndeperm\\ndepermed\\ndeperming\\ndeperms\\ndepict\\ndepicted\\ndepicter\\ndepicters\\ndepicting\\ndepiction\\ndepictions\\ndepictor\\ndepictors\\ndepicts\\ndepilate\\ndepilated\\ndepilates\\ndepilating\\ndeplane\\ndeplaned\\ndeplanes\\ndeplaning\\ndeplete\\ndepleted\\ndepletes\\ndepleting\\ndepletion\\ndepletions\\ndeplorable\\ndeplore\\ndeplored\\ndeplorer\\ndeplorers\\ndeplores\\ndeploring\\ndeploy\\ndeployed\\ndeploying\\ndeployment\\ndeployments\\ndeploys\\ndeplume\\ndeplumed\\ndeplumes\\ndepluming\\ndepolish\\ndepolished\\ndepolishes\\ndepolishing\\ndepone\\ndeponed\\ndeponent\\ndeponents\\ndepones\\ndeponing\\ndeport\\ndeportation\\ndeportations\\ndeported\\ndeportee\\ndeportees\\ndeporting\\ndeportment\\ndeportments\\ndeports\\ndeposal\\ndeposals\\ndepose\\ndeposed\\ndeposer\\ndeposers\\ndeposes\\ndeposing\\ndeposit\\ndeposited\\ndepositing\\ndeposition\\ndepositions\\ndepositor\\ndepositories\\ndepositors\\ndepository\\ndeposits\\ndepot\\ndepots\\ndepravation\\ndepravations\\ndeprave\\ndepraved\\ndepraver\\ndepravers\\ndepraves\\ndepraving\\ndepravities\\ndepravity\\ndeprecate\\ndeprecated\\ndeprecates\\ndeprecating\\ndeprecation\\ndeprecations\\ndeprecatory\\ndepreciate\\ndepreciated\\ndepreciates\\ndepreciating\\ndepreciation\\ndepreciations\\ndepredation\\ndepredations\\ndepress\\ndepressant\\ndepressants\\ndepressed\\ndepresses\\ndepressing\\ndepression\\ndepressions\\ndepressive\\ndepressor\\ndepressors\\ndeprival\\ndeprivals\\ndeprive\\ndeprived\\ndepriver\\ndeprivers\\ndeprives\\ndepriving\\ndepside\\ndepsides\\ndepth\\ndepths\\ndepurate\\ndepurated\\ndepurates\\ndepurating\\ndeputation\\ndeputations\\ndepute\\ndeputed\\ndeputes\\ndeputies\\ndeputing\\ndeputize\\ndeputized\\ndeputizes\\ndeputizing\\ndeputy\\nderaign\\nderaigned\\nderaigning\\nderaigns\\nderail\\nderailed\\nderailing\\nderails\\nderange\\nderanged\\nderangement\\nderangements\\nderanges\\nderanging\\nderat\\nderats\\nderatted\\nderatting\\nderay\\nderays\\nderbies\\nderby\\ndere\\nderelict\\ndereliction\\nderelictions\\nderelicts\\nderide\\nderided\\nderider\\nderiders\\nderides\\nderiding\\nderinger\\nderingers\\nderision\\nderisions\\nderisive\\nderisory\\nderivate\\nderivates\\nderivation\\nderivations\\nderivative\\nderivatives\\nderive\\nderived\\nderiver\\nderivers\\nderives\\nderiving\\nderm\\nderma\\ndermal\\ndermas\\ndermatitis\\ndermatologies\\ndermatologist\\ndermatologists\\ndermatology\\ndermic\\ndermis\\ndermises\\ndermoid\\nderms\\ndernier\\nderogate\\nderogated\\nderogates\\nderogating\\nderogatory\\nderrick\\nderricks\\nderriere\\nderrieres\\nderries\\nderris\\nderrises\\nderry\\ndervish\\ndervishes\\ndes\\ndesalt\\ndesalted\\ndesalter\\ndesalters\\ndesalting\\ndesalts\\ndesand\\ndesanded\\ndesanding\\ndesands\\ndescant\\ndescanted\\ndescanting\\ndescants\\ndescend\\ndescendant\\ndescendants\\ndescended\\ndescendent\\ndescendents\\ndescending\\ndescends\\ndescent\\ndescents\\ndescribable\\ndescribably\\ndescribe\\ndescribed\\ndescribes\\ndescribing\\ndescried\\ndescrier\\ndescriers\\ndescries\\ndescription\\ndescriptions\\ndescriptive\\ndescriptor\\ndescriptors\\ndescry\\ndescrying\\ndesecrate\\ndesecrated\\ndesecrates\\ndesecrating\\ndesecration\\ndesecrations\\ndesegregate\\ndesegregated\\ndesegregates\\ndesegregating\\ndesegregation\\ndesegregations\\ndeselect\\ndeselected\\ndeselecting\\ndeselects\\ndesert\\ndeserted\\ndeserter\\ndeserters\\ndesertic\\ndeserting\\ndeserts\\ndeserve\\ndeserved\\ndeserver\\ndeservers\\ndeserves\\ndeserving\\ndesex\\ndesexed\\ndesexes\\ndesexing\\ndesiccate\\ndesiccated\\ndesiccates\\ndesiccating\\ndesiccation\\ndesiccations\\ndesign\\ndesignate\\ndesignated\\ndesignates\\ndesignating\\ndesignation\\ndesignations\\ndesigned\\ndesignee\\ndesignees\\ndesigner\\ndesigners\\ndesigning\\ndesigns\\ndesilver\\ndesilvered\\ndesilvering\\ndesilvers\\ndesinent\\ndesirabilities\\ndesirability\\ndesirable\\ndesire\\ndesired\\ndesirer\\ndesirers\\ndesires\\ndesiring\\ndesirous\\ndesist\\ndesisted\\ndesisting\\ndesists\\ndesk\\ndeskman\\ndeskmen\\ndesks\\ndesman\\ndesmans\\ndesmid\\ndesmids\\ndesmoid\\ndesmoids\\ndesolate\\ndesolated\\ndesolates\\ndesolating\\ndesolation\\ndesolations\\ndesorb\\ndesorbed\\ndesorbing\\ndesorbs\\ndespair\\ndespaired\\ndespairing\\ndespairs\\ndespatch\\ndespatched\\ndespatches\\ndespatching\\ndesperado\\ndesperadoes\\ndesperados\\ndesperate\\ndesperately\\ndesperation\\ndesperations\\ndespicable\\ndespise\\ndespised\\ndespiser\\ndespisers\\ndespises\\ndespising\\ndespite\\ndespited\\ndespites\\ndespiting\\ndespoil\\ndespoiled\\ndespoiling\\ndespoils\\ndespond\\ndesponded\\ndespondencies\\ndespondency\\ndespondent\\ndesponding\\ndesponds\\ndespot\\ndespotic\\ndespotism\\ndespotisms\\ndespots\\ndesquamation\\ndesquamations\\ndessert\\ndesserts\\ndestain\\ndestained\\ndestaining\\ndestains\\ndestination\\ndestinations\\ndestine\\ndestined\\ndestines\\ndestinies\\ndestining\\ndestiny\\ndestitute\\ndestitution\\ndestitutions\\ndestrier\\ndestriers\\ndestroy\\ndestroyed\\ndestroyer\\ndestroyers\\ndestroying\\ndestroys\\ndestruct\\ndestructed\\ndestructibilities\\ndestructibility\\ndestructible\\ndestructing\\ndestruction\\ndestructions\\ndestructive\\ndestructs\\ndesugar\\ndesugared\\ndesugaring\\ndesugars\\ndesulfur\\ndesulfured\\ndesulfuring\\ndesulfurs\\ndesultory\\ndetach\\ndetached\\ndetacher\\ndetachers\\ndetaches\\ndetaching\\ndetachment\\ndetachments\\ndetail\\ndetailed\\ndetailer\\ndetailers\\ndetailing\\ndetails\\ndetain\\ndetained\\ndetainee\\ndetainees\\ndetainer\\ndetainers\\ndetaining\\ndetains\\ndetect\\ndetectable\\ndetected\\ndetecter\\ndetecters\\ndetecting\\ndetection\\ndetections\\ndetective\\ndetectives\\ndetector\\ndetectors\\ndetects\\ndetent\\ndetente\\ndetentes\\ndetention\\ndetentions\\ndetents\\ndeter\\ndeterge\\ndeterged\\ndetergent\\ndetergents\\ndeterger\\ndetergers\\ndeterges\\ndeterging\\ndeteriorate\\ndeteriorated\\ndeteriorates\\ndeteriorating\\ndeterioration\\ndeteriorations\\ndeterminant\\ndeterminants\\ndetermination\\ndeterminations\\ndetermine\\ndetermined\\ndetermines\\ndetermining\\ndeterred\\ndeterrence\\ndeterrences\\ndeterrent\\ndeterrents\\ndeterrer\\ndeterrers\\ndeterring\\ndeters\\ndetest\\ndetestable\\ndetestation\\ndetestations\\ndetested\\ndetester\\ndetesters\\ndetesting\\ndetests\\ndethrone\\ndethroned\\ndethrones\\ndethroning\\ndetick\\ndeticked\\ndeticker\\ndetickers\\ndeticking\\ndeticks\\ndetinue\\ndetinues\\ndetonate\\ndetonated\\ndetonates\\ndetonating\\ndetonation\\ndetonations\\ndetonator\\ndetonators\\ndetour\\ndetoured\\ndetouring\\ndetours\\ndetoxified\\ndetoxifies\\ndetoxify\\ndetoxifying\\ndetract\\ndetracted\\ndetracting\\ndetraction\\ndetractions\\ndetractor\\ndetractors\\ndetracts\\ndetrain\\ndetrained\\ndetraining\\ndetrains\\ndetriment\\ndetrimental\\ndetrimentally\\ndetriments\\ndetrital\\ndetritus\\ndetrude\\ndetruded\\ndetrudes\\ndetruding\\ndeuce\\ndeuced\\ndeucedly\\ndeuces\\ndeucing\\ndeuteric\\ndeuteron\\ndeuterons\\ndeutzia\\ndeutzias\\ndev\\ndeva\\ndevaluation\\ndevaluations\\ndevalue\\ndevalued\\ndevalues\\ndevaluing\\ndevas\\ndevastate\\ndevastated\\ndevastates\\ndevastating\\ndevastation\\ndevastations\\ndevein\\ndeveined\\ndeveining\\ndeveins\\ndevel\\ndeveled\\ndeveling\\ndevelop\\ndevelope\\ndeveloped\\ndeveloper\\ndevelopers\\ndevelopes\\ndeveloping\\ndevelopment\\ndevelopmental\\ndevelopments\\ndevelops\\ndevels\\ndevest\\ndevested\\ndevesting\\ndevests\\ndeviance\\ndeviances\\ndeviancies\\ndeviancy\\ndeviant\\ndeviants\\ndeviate\\ndeviated\\ndeviates\\ndeviating\\ndeviation\\ndeviations\\ndeviator\\ndeviators\\ndevice\\ndevices\\ndevil\\ndeviled\\ndeviling\\ndevilish\\ndevilkin\\ndevilkins\\ndevilled\\ndevilling\\ndevilries\\ndevilry\\ndevils\\ndeviltries\\ndeviltry\\ndevious\\ndevisal\\ndevisals\\ndevise\\ndevised\\ndevisee\\ndevisees\\ndeviser\\ndevisers\\ndevises\\ndevising\\ndevisor\\ndevisors\\ndevoice\\ndevoiced\\ndevoices\\ndevoicing\\ndevoid\\ndevoir\\ndevoirs\\ndevolve\\ndevolved\\ndevolves\\ndevolving\\ndevon\\ndevons\\ndevote\\ndevoted\\ndevotee\\ndevotees\\ndevotes\\ndevoting\\ndevotion\\ndevotional\\ndevotions\\ndevour\\ndevoured\\ndevourer\\ndevourers\\ndevouring\\ndevours\\ndevout\\ndevoutly\\ndevoutness\\ndevoutnesses\\ndevs\\ndew\\ndewan\\ndewans\\ndewater\\ndewatered\\ndewatering\\ndewaters\\ndewax\\ndewaxed\\ndewaxes\\ndewaxing\\ndewberries\\ndewberry\\ndewclaw\\ndewclaws\\ndewdrop\\ndewdrops\\ndewed\\ndewfall\\ndewfalls\\ndewier\\ndewiest\\ndewily\\ndewiness\\ndewinesses\\ndewing\\ndewlap\\ndewlaps\\ndewless\\ndewool\\ndewooled\\ndewooling\\ndewools\\ndeworm\\ndewormed\\ndeworming\\ndeworms\\ndews\\ndewy\\ndex\\ndexes\\ndexies\\ndexter\\ndexterous\\ndexterously\\ndextral\\ndextran\\ndextrans\\ndextrin\\ndextrine\\ndextrines\\ndextrins\\ndextro\\ndextrose\\ndextroses\\ndextrous\\ndey\\ndeys\\ndezinc\\ndezinced\\ndezincing\\ndezincked\\ndezincking\\ndezincs\\ndhak\\ndhaks\\ndharma\\ndharmas\\ndharmic\\ndharna\\ndharnas\\ndhole\\ndholes\\ndhoolies\\ndhooly\\ndhoora\\ndhooras\\ndhooti\\ndhootie\\ndhooties\\ndhootis\\ndhoti\\ndhotis\\ndhourra\\ndhourras\\ndhow\\ndhows\\ndhurna\\ndhurnas\\ndhuti\\ndhutis\\ndiabase\\ndiabases\\ndiabasic\\ndiabetes\\ndiabetic\\ndiabetics\\ndiableries\\ndiablery\\ndiabolic\\ndiabolical\\ndiabolo\\ndiabolos\\ndiacetyl\\ndiacetyls\\ndiacid\\ndiacidic\\ndiacids\\ndiaconal\\ndiadem\\ndiademed\\ndiademing\\ndiadems\\ndiagnose\\ndiagnosed\\ndiagnoses\\ndiagnosing\\ndiagnosis\\ndiagnostic\\ndiagnostics\\ndiagonal\\ndiagonally\\ndiagonals\\ndiagram\\ndiagramed\\ndiagraming\\ndiagrammatic\\ndiagrammed\\ndiagramming\\ndiagrams\\ndiagraph\\ndiagraphs\\ndial\\ndialect\\ndialectic\\ndialects\\ndialed\\ndialer\\ndialers\\ndialing\\ndialings\\ndialist\\ndialists\\ndiallage\\ndiallages\\ndialled\\ndiallel\\ndialler\\ndiallers\\ndialling\\ndiallings\\ndiallist\\ndiallists\\ndialog\\ndialoger\\ndialogers\\ndialogged\\ndialogging\\ndialogic\\ndialogs\\ndialogue\\ndialogued\\ndialogues\\ndialoguing\\ndials\\ndialyse\\ndialysed\\ndialyser\\ndialysers\\ndialyses\\ndialysing\\ndialysis\\ndialytic\\ndialyze\\ndialyzed\\ndialyzer\\ndialyzers\\ndialyzes\\ndialyzing\\ndiameter\\ndiameters\\ndiametric\\ndiametrical\\ndiametrically\\ndiamide\\ndiamides\\ndiamin\\ndiamine\\ndiamines\\ndiamins\\ndiamond\\ndiamonded\\ndiamonding\\ndiamonds\\ndianthus\\ndianthuses\\ndiapason\\ndiapasons\\ndiapause\\ndiapaused\\ndiapauses\\ndiapausing\\ndiaper\\ndiapered\\ndiapering\\ndiapers\\ndiaphone\\ndiaphones\\ndiaphonies\\ndiaphony\\ndiaphragm\\ndiaphragmatic\\ndiaphragms\\ndiapir\\ndiapiric\\ndiapirs\\ndiapsid\\ndiarchic\\ndiarchies\\ndiarchy\\ndiaries\\ndiarist\\ndiarists\\ndiarrhea\\ndiarrheas\\ndiarrhoea\\ndiarrhoeas\\ndiary\\ndiaspora\\ndiasporas\\ndiaspore\\ndiaspores\\ndiastase\\ndiastases\\ndiastema\\ndiastemata\\ndiaster\\ndiasters\\ndiastole\\ndiastoles\\ndiastral\\ndiatom\\ndiatomic\\ndiatoms\\ndiatonic\\ndiatribe\\ndiatribes\\ndiazepam\\ndiazepams\\ndiazin\\ndiazine\\ndiazines\\ndiazins\\ndiazo\\ndiazole\\ndiazoles\\ndib\\ndibasic\\ndibbed\\ndibber\\ndibbers\\ndibbing\\ndibble\\ndibbled\\ndibbler\\ndibblers\\ndibbles\\ndibbling\\ndibbuk\\ndibbukim\\ndibbuks\\ndibs\\ndicast\\ndicastic\\ndicasts\\ndice\\ndiced\\ndicentra\\ndicentras\\ndicer\\ndicers\\ndices\\ndicey\\ndichasia\\ndichotic\\ndichroic\\ndicier\\ndiciest\\ndicing\\ndick\\ndickens\\ndickenses\\ndicker\\ndickered\\ndickering\\ndickers\\ndickey\\ndickeys\\ndickie\\ndickies\\ndicks\\ndicky\\ndiclinies\\ndicliny\\ndicot\\ndicots\\ndicotyl\\ndicotyls\\ndicrotal\\ndicrotic\\ndicta\\ndictate\\ndictated\\ndictates\\ndictating\\ndictation\\ndictations\\ndictator\\ndictatorial\\ndictators\\ndictatorship\\ndictatorships\\ndiction\\ndictionaries\\ndictionary\\ndictions\\ndictum\\ndictums\\ndicyclic\\ndicyclies\\ndicycly\\ndid\\ndidact\\ndidactic\\ndidacts\\ndidactyl\\ndidapper\\ndidappers\\ndiddle\\ndiddled\\ndiddler\\ndiddlers\\ndiddles\\ndiddling\\ndidies\\ndido\\ndidoes\\ndidos\\ndidst\\ndidy\\ndidymium\\ndidymiums\\ndidymous\\ndidynamies\\ndidynamy\\ndie\\ndieback\\ndiebacks\\ndiecious\\ndied\\ndiehard\\ndiehards\\ndieing\\ndiel\\ndieldrin\\ndieldrins\\ndiemaker\\ndiemakers\\ndiene\\ndienes\\ndiereses\\ndieresis\\ndieretic\\ndies\\ndiesel\\ndiesels\\ndieses\\ndiesis\\ndiester\\ndiesters\\ndiestock\\ndiestocks\\ndiestrum\\ndiestrums\\ndiestrus\\ndiestruses\\ndiet\\ndietaries\\ndietary\\ndieted\\ndieter\\ndieters\\ndietetic\\ndietetics\\ndietician\\ndieticians\\ndieting\\ndiets\\ndiffer\\ndiffered\\ndifference\\ndifferences\\ndifferent\\ndifferential\\ndifferentials\\ndifferentiate\\ndifferentiated\\ndifferentiates\\ndifferentiating\\ndifferentiation\\ndifferently\\ndiffering\\ndiffers\\ndifficult\\ndifficulties\\ndifficulty\\ndiffidence\\ndiffidences\\ndiffident\\ndiffract\\ndiffracted\\ndiffracting\\ndiffracts\\ndiffuse\\ndiffused\\ndiffuser\\ndiffusers\\ndiffuses\\ndiffusing\\ndiffusion\\ndiffusions\\ndiffusor\\ndiffusors\\ndig\\ndigamies\\ndigamist\\ndigamists\\ndigamma\\ndigammas\\ndigamous\\ndigamy\\ndigest\\ndigested\\ndigester\\ndigesters\\ndigesting\\ndigestion\\ndigestions\\ndigestive\\ndigestor\\ndigestors\\ndigests\\ndigged\\ndigger\\ndiggers\\ndigging\\ndiggings\\ndight\\ndighted\\ndighting\\ndights\\ndigit\\ndigital\\ndigitalis\\ndigitally\\ndigitals\\ndigitate\\ndigitize\\ndigitized\\ndigitizes\\ndigitizing\\ndigits\\ndiglot\\ndiglots\\ndignified\\ndignifies\\ndignify\\ndignifying\\ndignitaries\\ndignitary\\ndignities\\ndignity\\ndigoxin\\ndigoxins\\ndigraph\\ndigraphs\\ndigress\\ndigressed\\ndigresses\\ndigressing\\ndigression\\ndigressions\\ndigs\\ndihedral\\ndihedrals\\ndihedron\\ndihedrons\\ndihybrid\\ndihybrids\\ndihydric\\ndikdik\\ndikdiks\\ndike\\ndiked\\ndiker\\ndikers\\ndikes\\ndiking\\ndiktat\\ndiktats\\ndilapidated\\ndilapidation\\ndilapidations\\ndilatant\\ndilatants\\ndilatate\\ndilatation\\ndilatations\\ndilate\\ndilated\\ndilater\\ndilaters\\ndilates\\ndilating\\ndilation\\ndilations\\ndilative\\ndilator\\ndilators\\ndilatory\\ndildo\\ndildoe\\ndildoes\\ndildos\\ndilemma\\ndilemmas\\ndilemmic\\ndilettante\\ndilettantes\\ndilettanti\\ndiligence\\ndiligences\\ndiligent\\ndiligently\\ndill\\ndillies\\ndills\\ndilly\\ndillydallied\\ndillydallies\\ndillydally\\ndillydallying\\ndiluent\\ndiluents\\ndilute\\ndiluted\\ndiluter\\ndiluters\\ndilutes\\ndiluting\\ndilution\\ndilutions\\ndilutive\\ndilutor\\ndilutors\\ndiluvia\\ndiluvial\\ndiluvian\\ndiluvion\\ndiluvions\\ndiluvium\\ndiluviums\\ndim\\ndime\\ndimension\\ndimensional\\ndimensions\\ndimer\\ndimeric\\ndimerism\\ndimerisms\\ndimerize\\ndimerized\\ndimerizes\\ndimerizing\\ndimerous\\ndimers\\ndimes\\ndimeter\\ndimeters\\ndimethyl\\ndimethyls\\ndimetric\\ndiminish\\ndiminished\\ndiminishes\\ndiminishing\\ndiminutive\\ndimities\\ndimity\\ndimly\\ndimmable\\ndimmed\\ndimmer\\ndimmers\\ndimmest\\ndimming\\ndimness\\ndimnesses\\ndimorph\\ndimorphs\\ndimout\\ndimouts\\ndimple\\ndimpled\\ndimples\\ndimplier\\ndimpliest\\ndimpling\\ndimply\\ndims\\ndimwit\\ndimwits\\ndin\\ndinar\\ndinars\\ndindle\\ndindled\\ndindles\\ndindling\\ndine\\ndined\\ndiner\\ndineric\\ndinero\\ndineros\\ndiners\\ndines\\ndinette\\ndinettes\\nding\\ndingbat\\ndingbats\\ndingdong\\ndingdonged\\ndingdonging\\ndingdongs\\ndinged\\ndingey\\ndingeys\\ndinghies\\ndinghy\\ndingier\\ndingies\\ndingiest\\ndingily\\ndinginess\\ndinginesses\\ndinging\\ndingle\\ndingles\\ndingo\\ndingoes\\ndings\\ndingus\\ndinguses\\ndingy\\ndining\\ndink\\ndinked\\ndinkey\\ndinkeys\\ndinkier\\ndinkies\\ndinkiest\\ndinking\\ndinkly\\ndinks\\ndinkum\\ndinky\\ndinned\\ndinner\\ndinners\\ndinning\\ndinosaur\\ndinosaurs\\ndins\\ndint\\ndinted\\ndinting\\ndints\\ndiobol\\ndiobolon\\ndiobolons\\ndiobols\\ndiocesan\\ndiocesans\\ndiocese\\ndioceses\\ndiode\\ndiodes\\ndioecism\\ndioecisms\\ndioicous\\ndiol\\ndiolefin\\ndiolefins\\ndiols\\ndiopside\\ndiopsides\\ndioptase\\ndioptases\\ndiopter\\ndiopters\\ndioptral\\ndioptre\\ndioptres\\ndioptric\\ndiorama\\ndioramas\\ndioramic\\ndiorite\\ndiorites\\ndioritic\\ndioxane\\ndioxanes\\ndioxid\\ndioxide\\ndioxides\\ndioxids\\ndip\\ndiphase\\ndiphasic\\ndiphenyl\\ndiphenyls\\ndiphtheria\\ndiphtherias\\ndiphthong\\ndiphthongs\\ndiplegia\\ndiplegias\\ndiplex\\ndiploe\\ndiploes\\ndiploic\\ndiploid\\ndiploidies\\ndiploids\\ndiploidy\\ndiploma\\ndiplomacies\\ndiplomacy\\ndiplomaed\\ndiplomaing\\ndiplomas\\ndiplomat\\ndiplomata\\ndiplomatic\\ndiplomats\\ndiplont\\ndiplonts\\ndiplopia\\ndiplopias\\ndiplopic\\ndiplopod\\ndiplopods\\ndiploses\\ndiplosis\\ndipnoan\\ndipnoans\\ndipodic\\ndipodies\\ndipody\\ndipolar\\ndipole\\ndipoles\\ndippable\\ndipped\\ndipper\\ndippers\\ndippier\\ndippiest\\ndipping\\ndippy\\ndips\\ndipsades\\ndipsas\\ndipstick\\ndipsticks\\ndipt\\ndiptera\\ndipteral\\ndipteran\\ndipterans\\ndipteron\\ndipththeria\\ndipththerias\\ndiptyca\\ndiptycas\\ndiptych\\ndiptychs\\ndiquat\\ndiquats\\ndirdum\\ndirdums\\ndire\\ndirect\\ndirected\\ndirecter\\ndirectest\\ndirecting\\ndirection\\ndirectional\\ndirections\\ndirective\\ndirectives\\ndirectly\\ndirectness\\ndirector\\ndirectories\\ndirectors\\ndirectory\\ndirects\\ndireful\\ndirely\\ndireness\\ndirenesses\\ndirer\\ndirest\\ndirge\\ndirgeful\\ndirges\\ndirham\\ndirhams\\ndirigible\\ndirigibles\\ndiriment\\ndirk\\ndirked\\ndirking\\ndirks\\ndirl\\ndirled\\ndirling\\ndirls\\ndirndl\\ndirndls\\ndirt\\ndirtied\\ndirtier\\ndirties\\ndirtiest\\ndirtily\\ndirtiness\\ndirtinesses\\ndirts\\ndirty\\ndirtying\\ndisabilities\\ndisability\\ndisable\\ndisabled\\ndisables\\ndisabling\\ndisabuse\\ndisabused\\ndisabuses\\ndisabusing\\ndisadvantage\\ndisadvantageous\\ndisadvantages\\ndisaffect\\ndisaffected\\ndisaffecting\\ndisaffection\\ndisaffections\\ndisaffects\\ndisagree\\ndisagreeable\\ndisagreeables\\ndisagreed\\ndisagreeing\\ndisagreement\\ndisagreements\\ndisagrees\\ndisallow\\ndisallowed\\ndisallowing\\ndisallows\\ndisannul\\ndisannulled\\ndisannulling\\ndisannuls\\ndisappear\\ndisappearance\\ndisappearances\\ndisappeared\\ndisappearing\\ndisappears\\ndisappoint\\ndisappointed\\ndisappointing\\ndisappointment\\ndisappointments\\ndisappoints\\ndisapproval\\ndisapprovals\\ndisapprove\\ndisapproved\\ndisapproves\\ndisapproving\\ndisarm\\ndisarmament\\ndisarmaments\\ndisarmed\\ndisarmer\\ndisarmers\\ndisarming\\ndisarms\\ndisarrange\\ndisarranged\\ndisarrangement\\ndisarrangements\\ndisarranges\\ndisarranging\\ndisarray\\ndisarrayed\\ndisarraying\\ndisarrays\\ndisaster\\ndisasters\\ndisastrous\\ndisavow\\ndisavowal\\ndisavowals\\ndisavowed\\ndisavowing\\ndisavows\\ndisband\\ndisbanded\\ndisbanding\\ndisbands\\ndisbar\\ndisbarment\\ndisbarments\\ndisbarred\\ndisbarring\\ndisbars\\ndisbelief\\ndisbeliefs\\ndisbelieve\\ndisbelieved\\ndisbelieves\\ndisbelieving\\ndisbosom\\ndisbosomed\\ndisbosoming\\ndisbosoms\\ndisbound\\ndisbowel\\ndisboweled\\ndisboweling\\ndisbowelled\\ndisbowelling\\ndisbowels\\ndisbud\\ndisbudded\\ndisbudding\\ndisbuds\\ndisburse\\ndisbursed\\ndisbursement\\ndisbursements\\ndisburses\\ndisbursing\\ndisc\\ndiscant\\ndiscanted\\ndiscanting\\ndiscants\\ndiscard\\ndiscarded\\ndiscarding\\ndiscards\\ndiscase\\ndiscased\\ndiscases\\ndiscasing\\ndisced\\ndiscept\\ndiscepted\\ndiscepting\\ndiscepts\\ndiscern\\ndiscerned\\ndiscernible\\ndiscerning\\ndiscernment\\ndiscernments\\ndiscerns\\ndischarge\\ndischarged\\ndischarges\\ndischarging\\ndisci\\ndiscing\\ndisciple\\ndiscipled\\ndisciples\\ndisciplinarian\\ndisciplinarians\\ndisciplinary\\ndiscipline\\ndisciplined\\ndisciplines\\ndiscipling\\ndisciplining\\ndisclaim\\ndisclaimed\\ndisclaiming\\ndisclaims\\ndisclike\\ndisclose\\ndisclosed\\ndiscloses\\ndisclosing\\ndisclosure\\ndisclosures\\ndisco\\ndiscoid\\ndiscoids\\ndiscolor\\ndiscoloration\\ndiscolorations\\ndiscolored\\ndiscoloring\\ndiscolors\\ndiscomfit\\ndiscomfited\\ndiscomfiting\\ndiscomfits\\ndiscomfiture\\ndiscomfitures\\ndiscomfort\\ndiscomforts\\ndisconcert\\ndisconcerted\\ndisconcerting\\ndisconcerts\\ndisconnect\\ndisconnected\\ndisconnecting\\ndisconnects\\ndisconsolate\\ndiscontent\\ndiscontented\\ndiscontents\\ndiscontinuance\\ndiscontinuances\\ndiscontinuation\\ndiscontinue\\ndiscontinued\\ndiscontinues\\ndiscontinuing\\ndiscord\\ndiscordant\\ndiscorded\\ndiscording\\ndiscords\\ndiscos\\ndiscount\\ndiscounted\\ndiscounting\\ndiscounts\\ndiscourage\\ndiscouraged\\ndiscouragement\\ndiscouragements\\ndiscourages\\ndiscouraging\\ndiscourteous\\ndiscourteously\\ndiscourtesies\\ndiscourtesy\\ndiscover\\ndiscovered\\ndiscoverer\\ndiscoverers\\ndiscoveries\\ndiscovering\\ndiscovers\\ndiscovery\\ndiscredit\\ndiscreditable\\ndiscredited\\ndiscrediting\\ndiscredits\\ndiscreet\\ndiscreeter\\ndiscreetest\\ndiscreetly\\ndiscrepancies\\ndiscrepancy\\ndiscrete\\ndiscretion\\ndiscretionary\\ndiscretions\\ndiscriminate\\ndiscriminated\\ndiscriminates\\ndiscriminating\\ndiscrimination\\ndiscriminations\\ndiscriminatory\\ndiscrown\\ndiscrowned\\ndiscrowning\\ndiscrowns\\ndiscs\\ndiscursive\\ndiscursiveness\\ndiscursivenesses\\ndiscus\\ndiscuses\\ndiscuss\\ndiscussed\\ndiscusses\\ndiscussing\\ndiscussion\\ndiscussions\\ndisdain\\ndisdained\\ndisdainful\\ndisdainfully\\ndisdaining\\ndisdains\\ndisease\\ndiseased\\ndiseases\\ndiseasing\\ndisembark\\ndisembarkation\\ndisembarkations\\ndisembarked\\ndisembarking\\ndisembarks\\ndisembodied\\ndisenchant\\ndisenchanted\\ndisenchanting\\ndisenchantment\\ndisenchantments\\ndisenchants\\ndisendow\\ndisendowed\\ndisendowing\\ndisendows\\ndisentangle\\ndisentangled\\ndisentangles\\ndisentangling\\ndiseuse\\ndiseuses\\ndisfavor\\ndisfavored\\ndisfavoring\\ndisfavors\\ndisfigure\\ndisfigured\\ndisfigurement\\ndisfigurements\\ndisfigures\\ndisfiguring\\ndisfranchise\\ndisfranchised\\ndisfranchisement\\ndisfranchisements\\ndisfranchises\\ndisfranchising\\ndisfrock\\ndisfrocked\\ndisfrocking\\ndisfrocks\\ndisgorge\\ndisgorged\\ndisgorges\\ndisgorging\\ndisgrace\\ndisgraced\\ndisgraceful\\ndisgracefully\\ndisgraces\\ndisgracing\\ndisguise\\ndisguised\\ndisguises\\ndisguising\\ndisgust\\ndisgusted\\ndisgustedly\\ndisgusting\\ndisgustingly\\ndisgusts\\ndish\\ndisharmonies\\ndisharmonious\\ndisharmony\\ndishcloth\\ndishcloths\\ndishearten\\ndisheartened\\ndisheartening\\ndisheartens\\ndished\\ndishelm\\ndishelmed\\ndishelming\\ndishelms\\ndisherit\\ndisherited\\ndisheriting\\ndisherits\\ndishes\\ndishevel\\ndisheveled\\ndisheveling\\ndishevelled\\ndishevelling\\ndishevels\\ndishful\\ndishfuls\\ndishier\\ndishiest\\ndishing\\ndishlike\\ndishonest\\ndishonesties\\ndishonestly\\ndishonesty\\ndishonor\\ndishonorable\\ndishonorably\\ndishonored\\ndishonoring\\ndishonors\\ndishpan\\ndishpans\\ndishrag\\ndishrags\\ndishware\\ndishwares\\ndishwasher\\ndishwashers\\ndishwater\\ndishwaters\\ndishy\\ndisillusion\\ndisillusioned\\ndisillusioning\\ndisillusionment\\ndisillusionments\\ndisillusions\\ndisinclination\\ndisinclinations\\ndisincline\\ndisinclined\\ndisinclines\\ndisinclining\\ndisinfect\\ndisinfectant\\ndisinfectants\\ndisinfected\\ndisinfecting\\ndisinfection\\ndisinfections\\ndisinfects\\ndisinherit\\ndisinherited\\ndisinheriting\\ndisinherits\\ndisintegrate\\ndisintegrated\\ndisintegrates\\ndisintegrating\\ndisintegration\\ndisintegrations\\ndisinter\\ndisinterested\\ndisinterestedness\\ndisinterestednesses\\ndisinterred\\ndisinterring\\ndisinters\\ndisject\\ndisjected\\ndisjecting\\ndisjects\\ndisjoin\\ndisjoined\\ndisjoining\\ndisjoins\\ndisjoint\\ndisjointed\\ndisjointing\\ndisjoints\\ndisjunct\\ndisjuncts\\ndisk\\ndisked\\ndisking\\ndisklike\\ndisks\\ndislike\\ndisliked\\ndisliker\\ndislikers\\ndislikes\\ndisliking\\ndislimn\\ndislimned\\ndislimning\\ndislimns\\ndislocate\\ndislocated\\ndislocates\\ndislocating\\ndislocation\\ndislocations\\ndislodge\\ndislodged\\ndislodges\\ndislodging\\ndisloyal\\ndisloyalties\\ndisloyalty\\ndismal\\ndismaler\\ndismalest\\ndismally\\ndismals\\ndismantle\\ndismantled\\ndismantles\\ndismantling\\ndismast\\ndismasted\\ndismasting\\ndismasts\\ndismay\\ndismayed\\ndismaying\\ndismays\\ndisme\\ndismember\\ndismembered\\ndismembering\\ndismemberment\\ndismemberments\\ndismembers\\ndismes\\ndismiss\\ndismissal\\ndismissals\\ndismissed\\ndismisses\\ndismissing\\ndismount\\ndismounted\\ndismounting\\ndismounts\\ndisobedience\\ndisobediences\\ndisobedient\\ndisobey\\ndisobeyed\\ndisobeying\\ndisobeys\\ndisomic\\ndisorder\\ndisordered\\ndisordering\\ndisorderliness\\ndisorderlinesses\\ndisorderly\\ndisorders\\ndisorganization\\ndisorganizations\\ndisorganize\\ndisorganized\\ndisorganizes\\ndisorganizing\\ndisown\\ndisowned\\ndisowning\\ndisowns\\ndisparage\\ndisparaged\\ndisparagement\\ndisparagements\\ndisparages\\ndisparaging\\ndisparate\\ndisparities\\ndisparity\\ndispart\\ndisparted\\ndisparting\\ndisparts\\ndispassion\\ndispassionate\\ndispassions\\ndispatch\\ndispatched\\ndispatcher\\ndispatchers\\ndispatches\\ndispatching\\ndispel\\ndispelled\\ndispelling\\ndispels\\ndispend\\ndispended\\ndispending\\ndispends\\ndispensable\\ndispensaries\\ndispensary\\ndispensation\\ndispensations\\ndispense\\ndispensed\\ndispenser\\ndispensers\\ndispenses\\ndispensing\\ndispersal\\ndispersals\\ndisperse\\ndispersed\\ndisperses\\ndispersing\\ndispersion\\ndispersions\\ndispirit\\ndispirited\\ndispiriting\\ndispirits\\ndisplace\\ndisplaced\\ndisplacement\\ndisplacements\\ndisplaces\\ndisplacing\\ndisplant\\ndisplanted\\ndisplanting\\ndisplants\\ndisplay\\ndisplayed\\ndisplaying\\ndisplays\\ndisplease\\ndispleased\\ndispleases\\ndispleasing\\ndispleasure\\ndispleasures\\ndisplode\\ndisploded\\ndisplodes\\ndisploding\\ndisplume\\ndisplumed\\ndisplumes\\ndispluming\\ndisport\\ndisported\\ndisporting\\ndisports\\ndisposable\\ndisposal\\ndisposals\\ndispose\\ndisposed\\ndisposer\\ndisposers\\ndisposes\\ndisposing\\ndisposition\\ndispositions\\ndispossess\\ndispossessed\\ndispossesses\\ndispossessing\\ndispossession\\ndispossessions\\ndispread\\ndispreading\\ndispreads\\ndisprize\\ndisprized\\ndisprizes\\ndisprizing\\ndisproof\\ndisproofs\\ndisproportion\\ndisproportionate\\ndisproportions\\ndisprove\\ndisproved\\ndisproves\\ndisproving\\ndisputable\\ndisputably\\ndisputation\\ndisputations\\ndispute\\ndisputed\\ndisputer\\ndisputers\\ndisputes\\ndisputing\\ndisqualification\\ndisqualifications\\ndisqualified\\ndisqualifies\\ndisqualify\\ndisqualifying\\ndisquiet\\ndisquieted\\ndisquieting\\ndisquiets\\ndisrate\\ndisrated\\ndisrates\\ndisrating\\ndisregard\\ndisregarded\\ndisregarding\\ndisregards\\ndisrepair\\ndisrepairs\\ndisreputable\\ndisrepute\\ndisreputes\\ndisrespect\\ndisrespectful\\ndisrespects\\ndisrobe\\ndisrobed\\ndisrober\\ndisrobers\\ndisrobes\\ndisrobing\\ndisroot\\ndisrooted\\ndisrooting\\ndisroots\\ndisrupt\\ndisrupted\\ndisrupting\\ndisruption\\ndisruptions\\ndisruptive\\ndisrupts\\ndissatisfaction\\ndissatisfactions\\ndissatisfies\\ndissatisfy\\ndissave\\ndissaved\\ndissaves\\ndissaving\\ndisseat\\ndisseated\\ndisseating\\ndisseats\\ndissect\\ndissected\\ndissecting\\ndissection\\ndissections\\ndissects\\ndisseise\\ndisseised\\ndisseises\\ndisseising\\ndisseize\\ndisseized\\ndisseizes\\ndisseizing\\ndissemble\\ndissembled\\ndissembler\\ndissemblers\\ndissembles\\ndissembling\\ndisseminate\\ndisseminated\\ndisseminates\\ndisseminating\\ndissemination\\ndissent\\ndissented\\ndissenter\\ndissenters\\ndissentient\\ndissentients\\ndissenting\\ndissention\\ndissentions\\ndissents\\ndissert\\ndissertation\\ndissertations\\ndisserted\\ndisserting\\ndisserts\\ndisserve\\ndisserved\\ndisserves\\ndisservice\\ndisserving\\ndissever\\ndissevered\\ndissevering\\ndissevers\\ndissidence\\ndissidences\\ndissident\\ndissidents\\ndissimilar\\ndissimilarities\\ndissimilarity\\ndissipate\\ndissipated\\ndissipates\\ndissipating\\ndissipation\\ndissipations\\ndissociate\\ndissociated\\ndissociates\\ndissociating\\ndissociation\\ndissociations\\ndissolute\\ndissolution\\ndissolutions\\ndissolve\\ndissolved\\ndissolves\\ndissolving\\ndissonance\\ndissonances\\ndissonant\\ndissuade\\ndissuaded\\ndissuades\\ndissuading\\ndissuasion\\ndissuasions\\ndistaff\\ndistaffs\\ndistain\\ndistained\\ndistaining\\ndistains\\ndistal\\ndistally\\ndistance\\ndistanced\\ndistances\\ndistancing\\ndistant\\ndistaste\\ndistasted\\ndistasteful\\ndistastes\\ndistasting\\ndistaves\\ndistemper\\ndistempers\\ndistend\\ndistended\\ndistending\\ndistends\\ndistension\\ndistensions\\ndistent\\ndistention\\ndistentions\\ndistich\\ndistichs\\ndistil\\ndistill\\ndistillate\\ndistillates\\ndistillation\\ndistillations\\ndistilled\\ndistiller\\ndistilleries\\ndistillers\\ndistillery\\ndistilling\\ndistills\\ndistils\\ndistinct\\ndistincter\\ndistinctest\\ndistinction\\ndistinctions\\ndistinctive\\ndistinctively\\ndistinctiveness\\ndistinctivenesses\\ndistinctly\\ndistinctness\\ndistinctnesses\\ndistinguish\\ndistinguishable\\ndistinguished\\ndistinguishes\\ndistinguishing\\ndistome\\ndistomes\\ndistort\\ndistorted\\ndistorting\\ndistortion\\ndistortions\\ndistorts\\ndistract\\ndistracted\\ndistracting\\ndistraction\\ndistractions\\ndistracts\\ndistrain\\ndistrained\\ndistraining\\ndistrains\\ndistrait\\ndistraught\\ndistress\\ndistressed\\ndistresses\\ndistressful\\ndistressing\\ndistribute\\ndistributed\\ndistributes\\ndistributing\\ndistribution\\ndistributions\\ndistributive\\ndistributor\\ndistributors\\ndistrict\\ndistricted\\ndistricting\\ndistricts\\ndistrust\\ndistrusted\\ndistrustful\\ndistrusting\\ndistrusts\\ndisturb\\ndisturbance\\ndisturbances\\ndisturbed\\ndisturber\\ndisturbers\\ndisturbing\\ndisturbs\\ndisulfid\\ndisulfids\\ndisunion\\ndisunions\\ndisunite\\ndisunited\\ndisunites\\ndisunities\\ndisuniting\\ndisunity\\ndisuse\\ndisused\\ndisuses\\ndisusing\\ndisvalue\\ndisvalued\\ndisvalues\\ndisvaluing\\ndisyoke\\ndisyoked\\ndisyokes\\ndisyoking\\ndit\\ndita\\nditas\\nditch\\nditched\\nditcher\\nditchers\\nditches\\nditching\\ndite\\ndites\\nditheism\\nditheisms\\nditheist\\nditheists\\ndither\\ndithered\\ndithering\\ndithers\\ndithery\\ndithiol\\ndits\\ndittanies\\ndittany\\nditties\\nditto\\ndittoed\\ndittoing\\ndittos\\nditty\\ndiureses\\ndiuresis\\ndiuretic\\ndiuretics\\ndiurnal\\ndiurnals\\ndiuron\\ndiurons\\ndiva\\ndivagate\\ndivagated\\ndivagates\\ndivagating\\ndivalent\\ndivan\\ndivans\\ndivas\\ndive\\ndived\\ndiver\\ndiverge\\ndiverged\\ndivergence\\ndivergences\\ndivergent\\ndiverges\\ndiverging\\ndivers\\ndiverse\\ndiversification\\ndiversifications\\ndiversify\\ndiversion\\ndiversions\\ndiversities\\ndiversity\\ndivert\\ndiverted\\ndiverter\\ndiverters\\ndiverting\\ndiverts\\ndives\\ndivest\\ndivested\\ndivesting\\ndivests\\ndivide\\ndivided\\ndividend\\ndividends\\ndivider\\ndividers\\ndivides\\ndividing\\ndividual\\ndivination\\ndivinations\\ndivine\\ndivined\\ndivinely\\ndiviner\\ndiviners\\ndivines\\ndivinest\\ndiving\\ndivining\\ndivinise\\ndivinised\\ndivinises\\ndivinising\\ndivinities\\ndivinity\\ndivinize\\ndivinized\\ndivinizes\\ndivinizing\\ndivisibilities\\ndivisibility\\ndivisible\\ndivision\\ndivisional\\ndivisions\\ndivisive\\ndivisor\\ndivisors\\ndivorce\\ndivorced\\ndivorcee\\ndivorcees\\ndivorcer\\ndivorcers\\ndivorces\\ndivorcing\\ndivot\\ndivots\\ndivulge\\ndivulged\\ndivulger\\ndivulgers\\ndivulges\\ndivulging\\ndivvied\\ndivvies\\ndivvy\\ndivvying\\ndiwan\\ndiwans\\ndixit\\ndixits\\ndizen\\ndizened\\ndizening\\ndizens\\ndizygous\\ndizzied\\ndizzier\\ndizzies\\ndizziest\\ndizzily\\ndizziness\\ndizzy\\ndizzying\\ndjebel\\ndjebels\\ndjellaba\\ndjellabas\\ndjin\\ndjinn\\ndjinni\\ndjinns\\ndjinny\\ndjins\\ndo\\ndoable\\ndoat\\ndoated\\ndoating\\ndoats\\ndobber\\ndobbers\\ndobbies\\ndobbin\\ndobbins\\ndobby\\ndobie\\ndobies\\ndobla\\ndoblas\\ndoblon\\ndoblones\\ndoblons\\ndobra\\ndobras\\ndobson\\ndobsons\\ndoby\\ndoc\\ndocent\\ndocents\\ndocetic\\ndocile\\ndocilely\\ndocilities\\ndocility\\ndock\\ndockage\\ndockages\\ndocked\\ndocker\\ndockers\\ndocket\\ndocketed\\ndocketing\\ndockets\\ndockhand\\ndockhands\\ndocking\\ndockland\\ndocklands\\ndocks\\ndockside\\ndocksides\\ndockworker\\ndockworkers\\ndockyard\\ndockyards\\ndocs\\ndoctor\\ndoctoral\\ndoctored\\ndoctoring\\ndoctors\\ndoctrinal\\ndoctrine\\ndoctrines\\ndocument\\ndocumentaries\\ndocumentary\\ndocumentation\\ndocumentations\\ndocumented\\ndocumenter\\ndocumenters\\ndocumenting\\ndocuments\\ndodder\\ndoddered\\ndodderer\\ndodderers\\ndoddering\\ndodders\\ndoddery\\ndodge\\ndodged\\ndodger\\ndodgeries\\ndodgers\\ndodgery\\ndodges\\ndodgier\\ndodgiest\\ndodging\\ndodgy\\ndodo\\ndodoes\\ndodoism\\ndodoisms\\ndodos\\ndoe\\ndoer\\ndoers\\ndoes\\ndoeskin\\ndoeskins\\ndoest\\ndoeth\\ndoff\\ndoffed\\ndoffer\\ndoffers\\ndoffing\\ndoffs\\ndog\\ndogbane\\ndogbanes\\ndogberries\\ndogberry\\ndogcart\\ndogcarts\\ndogcatcher\\ndogcatchers\\ndogdom\\ndogdoms\\ndoge\\ndogedom\\ndogedoms\\ndoges\\ndogeship\\ndogeships\\ndogey\\ndogeys\\ndogface\\ndogfaces\\ndogfight\\ndogfighting\\ndogfights\\ndogfish\\ndogfishes\\ndogfought\\ndogged\\ndoggedly\\ndogger\\ndoggerel\\ndoggerels\\ndoggeries\\ndoggers\\ndoggery\\ndoggie\\ndoggier\\ndoggies\\ndoggiest\\ndogging\\ndoggish\\ndoggo\\ndoggone\\ndoggoned\\ndoggoneder\\ndoggonedest\\ndoggoner\\ndoggones\\ndoggonest\\ndoggoning\\ndoggrel\\ndoggrels\\ndoggy\\ndoghouse\\ndoghouses\\ndogie\\ndogies\\ndogleg\\ndoglegged\\ndoglegging\\ndoglegs\\ndoglike\\ndogma\\ndogmas\\ndogmata\\ndogmatic\\ndogmatism\\ndogmatisms\\ndognap\\ndognaped\\ndognaper\\ndognapers\\ndognaping\\ndognapped\\ndognapping\\ndognaps\\ndogs\\ndogsbodies\\ndogsbody\\ndogsled\\ndogsleds\\ndogteeth\\ndogtooth\\ndogtrot\\ndogtrots\\ndogtrotted\\ndogtrotting\\ndogvane\\ndogvanes\\ndogwatch\\ndogwatches\\ndogwood\\ndogwoods\\ndogy\\ndoiled\\ndoilies\\ndoily\\ndoing\\ndoings\\ndoit\\ndoited\\ndoits\\ndojo\\ndojos\\ndol\\ndolce\\ndolci\\ndoldrums\\ndole\\ndoled\\ndoleful\\ndolefuller\\ndolefullest\\ndolefully\\ndolerite\\ndolerites\\ndoles\\ndolesome\\ndoling\\ndoll\\ndollar\\ndollars\\ndolled\\ndollied\\ndollies\\ndolling\\ndollish\\ndollop\\ndollops\\ndolls\\ndolly\\ndollying\\ndolman\\ndolmans\\ndolmen\\ndolmens\\ndolomite\\ndolomites\\ndolor\\ndoloroso\\ndolorous\\ndolors\\ndolour\\ndolours\\ndolphin\\ndolphins\\ndols\\ndolt\\ndoltish\\ndolts\\ndom\\ndomain\\ndomains\\ndomal\\ndome\\ndomed\\ndomelike\\ndomes\\ndomesday\\ndomesdays\\ndomestic\\ndomestically\\ndomesticate\\ndomesticated\\ndomesticates\\ndomesticating\\ndomestication\\ndomestications\\ndomestics\\ndomic\\ndomical\\ndomicil\\ndomicile\\ndomiciled\\ndomiciles\\ndomiciling\\ndomicils\\ndominance\\ndominances\\ndominant\\ndominants\\ndominate\\ndominated\\ndominates\\ndominating\\ndomination\\ndominations\\ndomine\\ndomineer\\ndomineered\\ndomineering\\ndomineers\\ndomines\\ndoming\\ndominick\\ndominicks\\ndominie\\ndominies\\ndominion\\ndominions\\ndominium\\ndominiums\\ndomino\\ndominoes\\ndominos\\ndoms\\ndon\\ndona\\ndonas\\ndonate\\ndonated\\ndonates\\ndonating\\ndonation\\ndonations\\ndonative\\ndonatives\\ndonator\\ndonators\\ndone\\ndonee\\ndonees\\ndoneness\\ndonenesses\\ndong\\ndongola\\ndongolas\\ndongs\\ndonjon\\ndonjons\\ndonkey\\ndonkeys\\ndonna\\ndonnas\\ndonne\\ndonned\\ndonnee\\ndonnees\\ndonnerd\\ndonnered\\ndonnert\\ndonning\\ndonnish\\ndonor\\ndonors\\ndons\\ndonsie\\ndonsy\\ndonut\\ndonuts\\ndonzel\\ndonzels\\ndoodad\\ndoodads\\ndoodle\\ndoodled\\ndoodler\\ndoodlers\\ndoodles\\ndoodling\\ndoolee\\ndoolees\\ndoolie\\ndoolies\\ndooly\\ndoom\\ndoomed\\ndoomful\\ndooming\\ndooms\\ndoomsday\\ndoomsdays\\ndoomster\\ndoomsters\\ndoor\\ndoorbell\\ndoorbells\\ndoorjamb\\ndoorjambs\\ndoorknob\\ndoorknobs\\ndoorless\\ndoorman\\ndoormat\\ndoormats\\ndoormen\\ndoornail\\ndoornails\\ndoorpost\\ndoorposts\\ndoors\\ndoorsill\\ndoorsills\\ndoorstep\\ndoorsteps\\ndoorstop\\ndoorstops\\ndoorway\\ndoorways\\ndooryard\\ndooryards\\ndoozer\\ndoozers\\ndoozies\\ndoozy\\ndopa\\ndopamine\\ndopamines\\ndopant\\ndopants\\ndopas\\ndope\\ndoped\\ndoper\\ndopers\\ndopes\\ndopester\\ndopesters\\ndopey\\ndopier\\ndopiest\\ndopiness\\ndopinesses\\ndoping\\ndopy\\ndor\\ndorado\\ndorados\\ndorbug\\ndorbugs\\ndorhawk\\ndorhawks\\ndories\\ndorm\\ndormancies\\ndormancy\\ndormant\\ndormer\\ndormers\\ndormice\\ndormie\\ndormient\\ndormin\\ndormins\\ndormitories\\ndormitory\\ndormouse\\ndorms\\ndormy\\ndorneck\\ndornecks\\ndornick\\ndornicks\\ndornock\\ndornocks\\ndorp\\ndorper\\ndorpers\\ndorps\\ndorr\\ndorrs\\ndors\\ndorsa\\ndorsad\\ndorsal\\ndorsally\\ndorsals\\ndorser\\ndorsers\\ndorsum\\ndorty\\ndory\\ndos\\ndosage\\ndosages\\ndose\\ndosed\\ndoser\\ndosers\\ndoses\\ndosimetry\\ndosing\\ndoss\\ndossal\\ndossals\\ndossed\\ndossel\\ndossels\\ndosser\\ndosseret\\ndosserets\\ndossers\\ndosses\\ndossier\\ndossiers\\ndossil\\ndossils\\ndossing\\ndost\\ndot\\ndotage\\ndotages\\ndotal\\ndotard\\ndotardly\\ndotards\\ndotation\\ndotations\\ndote\\ndoted\\ndoter\\ndoters\\ndotes\\ndoth\\ndotier\\ndotiest\\ndoting\\ndotingly\\ndots\\ndotted\\ndottel\\ndottels\\ndotter\\ndotterel\\ndotterels\\ndotters\\ndottier\\ndottiest\\ndottily\\ndotting\\ndottle\\ndottles\\ndottrel\\ndottrels\\ndotty\\ndoty\\ndouble\\ndoublecross\\ndoublecrossed\\ndoublecrosses\\ndoublecrossing\\ndoubled\\ndoubler\\ndoublers\\ndoubles\\ndoublet\\ndoublets\\ndoubling\\ndoubloon\\ndoubloons\\ndoublure\\ndoublures\\ndoubly\\ndoubt\\ndoubted\\ndoubter\\ndoubters\\ndoubtful\\ndoubtfully\\ndoubting\\ndoubtless\\ndoubts\\ndouce\\ndoucely\\ndouceur\\ndouceurs\\ndouche\\ndouched\\ndouches\\ndouching\\ndough\\ndoughboy\\ndoughboys\\ndoughier\\ndoughiest\\ndoughnut\\ndoughnuts\\ndoughs\\ndought\\ndoughtier\\ndoughtiest\\ndoughty\\ndoughy\\ndouma\\ndoumas\\ndour\\ndoura\\ndourah\\ndourahs\\ndouras\\ndourer\\ndourest\\ndourine\\ndourines\\ndourly\\ndourness\\ndournesses\\ndouse\\ndoused\\ndouser\\ndousers\\ndouses\\ndousing\\ndouzeper\\ndouzepers\\ndove\\ndovecot\\ndovecote\\ndovecotes\\ndovecots\\ndovekey\\ndovekeys\\ndovekie\\ndovekies\\ndovelike\\ndoven\\ndovened\\ndovening\\ndovens\\ndoves\\ndovetail\\ndovetailed\\ndovetailing\\ndovetails\\ndovish\\ndow\\ndowable\\ndowager\\ndowagers\\ndowdier\\ndowdies\\ndowdiest\\ndowdily\\ndowdy\\ndowdyish\\ndowed\\ndowel\\ndoweled\\ndoweling\\ndowelled\\ndowelling\\ndowels\\ndower\\ndowered\\ndoweries\\ndowering\\ndowers\\ndowery\\ndowie\\ndowing\\ndown\\ndownbeat\\ndownbeats\\ndowncast\\ndowncasts\\ndowncome\\ndowncomes\\ndowned\\ndowner\\ndowners\\ndownfall\\ndownfallen\\ndownfalls\\ndowngrade\\ndowngraded\\ndowngrades\\ndowngrading\\ndownhaul\\ndownhauls\\ndownhearted\\ndownhill\\ndownhills\\ndownier\\ndowniest\\ndowning\\ndownplay\\ndownplayed\\ndownplaying\\ndownplays\\ndownpour\\ndownpours\\ndownright\\ndowns\\ndownstairs\\ndowntime\\ndowntimes\\ndowntown\\ndowntowns\\ndowntrod\\ndowntrodden\\ndownturn\\ndownturns\\ndownward\\ndownwards\\ndownwind\\ndowny\\ndowries\\ndowry\\ndows\\ndowsabel\\ndowsabels\\ndowse\\ndowsed\\ndowser\\ndowsers\\ndowses\\ndowsing\\ndoxie\\ndoxies\\ndoxologies\\ndoxology\\ndoxorubicin\\ndoxy\\ndoyen\\ndoyenne\\ndoyennes\\ndoyens\\ndoyley\\ndoyleys\\ndoylies\\ndoyly\\ndoze\\ndozed\\ndozen\\ndozened\\ndozening\\ndozens\\ndozenth\\ndozenths\\ndozer\\ndozers\\ndozes\\ndozier\\ndoziest\\ndozily\\ndoziness\\ndozinesses\\ndozing\\ndozy\\ndrab\\ndrabbed\\ndrabber\\ndrabbest\\ndrabbet\\ndrabbets\\ndrabbing\\ndrabble\\ndrabbled\\ndrabbles\\ndrabbling\\ndrably\\ndrabness\\ndrabnesses\\ndrabs\\ndracaena\\ndracaenas\\ndrachm\\ndrachma\\ndrachmae\\ndrachmai\\ndrachmas\\ndrachms\\ndraconic\\ndraff\\ndraffier\\ndraffiest\\ndraffish\\ndraffs\\ndraffy\\ndraft\\ndrafted\\ndraftee\\ndraftees\\ndrafter\\ndrafters\\ndraftier\\ndraftiest\\ndraftily\\ndrafting\\ndraftings\\ndrafts\\ndraftsman\\ndraftsmen\\ndrafty\\ndrag\\ndragee\\ndragees\\ndragged\\ndragger\\ndraggers\\ndraggier\\ndraggiest\\ndragging\\ndraggle\\ndraggled\\ndraggles\\ndraggling\\ndraggy\\ndragline\\ndraglines\\ndragnet\\ndragnets\\ndragoman\\ndragomans\\ndragomen\\ndragon\\ndragonet\\ndragonets\\ndragons\\ndragoon\\ndragooned\\ndragooning\\ndragoons\\ndragrope\\ndragropes\\ndrags\\ndragster\\ndragsters\\ndrail\\ndrails\\ndrain\\ndrainage\\ndrainages\\ndrained\\ndrainer\\ndrainers\\ndraining\\ndrainpipe\\ndrainpipes\\ndrains\\ndrake\\ndrakes\\ndram\\ndrama\\ndramas\\ndramatic\\ndramatically\\ndramatist\\ndramatists\\ndramatization\\ndramatizations\\ndramatize\\ndrammed\\ndramming\\ndrammock\\ndrammocks\\ndrams\\ndramshop\\ndramshops\\ndrank\\ndrapable\\ndrape\\ndraped\\ndraper\\ndraperies\\ndrapers\\ndrapery\\ndrapes\\ndraping\\ndrastic\\ndrastically\\ndrat\\ndrats\\ndratted\\ndratting\\ndraught\\ndraughted\\ndraughtier\\ndraughtiest\\ndraughting\\ndraughts\\ndraughty\\ndrave\\ndraw\\ndrawable\\ndrawback\\ndrawbacks\\ndrawbar\\ndrawbars\\ndrawbore\\ndrawbores\\ndrawbridge\\ndrawbridges\\ndrawdown\\ndrawdowns\\ndrawee\\ndrawees\\ndrawer\\ndrawers\\ndrawing\\ndrawings\\ndrawl\\ndrawled\\ndrawler\\ndrawlers\\ndrawlier\\ndrawliest\\ndrawling\\ndrawls\\ndrawly\\ndrawn\\ndraws\\ndrawtube\\ndrawtubes\\ndray\\ndrayage\\ndrayages\\ndrayed\\ndraying\\ndrayman\\ndraymen\\ndrays\\ndread\\ndreaded\\ndreadful\\ndreadfully\\ndreadfuls\\ndreading\\ndreads\\ndream\\ndreamed\\ndreamer\\ndreamers\\ndreamful\\ndreamier\\ndreamiest\\ndreamily\\ndreaming\\ndreamlike\\ndreams\\ndreamt\\ndreamy\\ndrear\\ndrearier\\ndrearies\\ndreariest\\ndrearily\\ndreary\\ndreck\\ndrecks\\ndredge\\ndredged\\ndredger\\ndredgers\\ndredges\\ndredging\\ndredgings\\ndree\\ndreed\\ndreeing\\ndrees\\ndreg\\ndreggier\\ndreggiest\\ndreggish\\ndreggy\\ndregs\\ndreich\\ndreidel\\ndreidels\\ndreidl\\ndreidls\\ndreigh\\ndrek\\ndreks\\ndrench\\ndrenched\\ndrencher\\ndrenchers\\ndrenches\\ndrenching\\ndress\\ndressage\\ndressages\\ndressed\\ndresser\\ndressers\\ndresses\\ndressier\\ndressiest\\ndressily\\ndressing\\ndressings\\ndressmaker\\ndressmakers\\ndressmaking\\ndressmakings\\ndressy\\ndrest\\ndrew\\ndrib\\ndribbed\\ndribbing\\ndribble\\ndribbled\\ndribbler\\ndribblers\\ndribbles\\ndribblet\\ndribblets\\ndribbling\\ndriblet\\ndriblets\\ndribs\\ndried\\ndrier\\ndriers\\ndries\\ndriest\\ndrift\\ndriftage\\ndriftages\\ndrifted\\ndrifter\\ndrifters\\ndriftier\\ndriftiest\\ndrifting\\ndriftpin\\ndriftpins\\ndrifts\\ndriftwood\\ndriftwoods\\ndrifty\\ndrill\\ndrilled\\ndriller\\ndrillers\\ndrilling\\ndrillings\\ndrills\\ndrily\\ndrink\\ndrinkable\\ndrinker\\ndrinkers\\ndrinking\\ndrinks\\ndrip\\ndripless\\ndripped\\ndripper\\ndrippers\\ndrippier\\ndrippiest\\ndripping\\ndrippings\\ndrippy\\ndrips\\ndript\\ndrivable\\ndrive\\ndrivel\\ndriveled\\ndriveler\\ndrivelers\\ndriveling\\ndrivelled\\ndrivelling\\ndrivels\\ndriven\\ndriver\\ndrivers\\ndrives\\ndriveway\\ndriveways\\ndriving\\ndrizzle\\ndrizzled\\ndrizzles\\ndrizzlier\\ndrizzliest\\ndrizzling\\ndrizzly\\ndrogue\\ndrogues\\ndroit\\ndroits\\ndroll\\ndrolled\\ndroller\\ndrolleries\\ndrollery\\ndrollest\\ndrolling\\ndrolls\\ndrolly\\ndromedaries\\ndromedary\\ndromon\\ndromond\\ndromonds\\ndromons\\ndrone\\ndroned\\ndroner\\ndroners\\ndrones\\ndrongo\\ndrongos\\ndroning\\ndronish\\ndrool\\ndrooled\\ndrooling\\ndrools\\ndroop\\ndrooped\\ndroopier\\ndroopiest\\ndroopily\\ndrooping\\ndroops\\ndroopy\\ndrop\\ndrophead\\ndropheads\\ndropkick\\ndropkicks\\ndroplet\\ndroplets\\ndropout\\ndropouts\\ndropped\\ndropper\\ndroppers\\ndropping\\ndroppings\\ndrops\\ndropshot\\ndropshots\\ndropsied\\ndropsies\\ndropsy\\ndropt\\ndropwort\\ndropworts\\ndrosera\\ndroseras\\ndroshkies\\ndroshky\\ndroskies\\ndrosky\\ndross\\ndrosses\\ndrossier\\ndrossiest\\ndrossy\\ndrought\\ndroughtier\\ndroughtiest\\ndroughts\\ndroughty\\ndrouk\\ndrouked\\ndrouking\\ndrouks\\ndrouth\\ndrouthier\\ndrouthiest\\ndrouths\\ndrouthy\\ndrove\\ndroved\\ndrover\\ndrovers\\ndroves\\ndroving\\ndrown\\ndrownd\\ndrownded\\ndrownding\\ndrownds\\ndrowned\\ndrowner\\ndrowners\\ndrowning\\ndrowns\\ndrowse\\ndrowsed\\ndrowses\\ndrowsier\\ndrowsiest\\ndrowsily\\ndrowsing\\ndrowsy\\ndrub\\ndrubbed\\ndrubber\\ndrubbers\\ndrubbing\\ndrubbings\\ndrubs\\ndrudge\\ndrudged\\ndrudger\\ndrudgeries\\ndrudgers\\ndrudgery\\ndrudges\\ndrudging\\ndrug\\ndrugged\\ndrugget\\ndruggets\\ndrugging\\ndruggist\\ndruggists\\ndrugs\\ndrugstore\\ndrugstores\\ndruid\\ndruidess\\ndruidesses\\ndruidic\\ndruidism\\ndruidisms\\ndruids\\ndrum\\ndrumbeat\\ndrumbeats\\ndrumble\\ndrumbled\\ndrumbles\\ndrumbling\\ndrumfire\\ndrumfires\\ndrumfish\\ndrumfishes\\ndrumhead\\ndrumheads\\ndrumlier\\ndrumliest\\ndrumlike\\ndrumlin\\ndrumlins\\ndrumly\\ndrummed\\ndrummer\\ndrummers\\ndrumming\\ndrumroll\\ndrumrolls\\ndrums\\ndrumstick\\ndrumsticks\\ndrunk\\ndrunkard\\ndrunkards\\ndrunken\\ndrunkenly\\ndrunkenness\\ndrunkennesses\\ndrunker\\ndrunkest\\ndrunks\\ndrupe\\ndrupelet\\ndrupelets\\ndrupes\\ndruse\\ndruses\\ndruthers\\ndry\\ndryable\\ndryad\\ndryades\\ndryadic\\ndryads\\ndryer\\ndryers\\ndryest\\ndrying\\ndrylot\\ndrylots\\ndryly\\ndryness\\ndrynesses\\ndrypoint\\ndrypoints\\ndrys\\nduad\\nduads\\ndual\\ndualism\\ndualisms\\ndualist\\ndualists\\ndualities\\nduality\\ndualize\\ndualized\\ndualizes\\ndualizing\\ndually\\nduals\\ndub\\ndubbed\\ndubber\\ndubbers\\ndubbin\\ndubbing\\ndubbings\\ndubbins\\ndubieties\\ndubiety\\ndubious\\ndubiously\\ndubiousness\\ndubiousnesses\\ndubonnet\\ndubonnets\\ndubs\\nduc\\nducal\\nducally\\nducat\\nducats\\nduce\\nduces\\nduchess\\nduchesses\\nduchies\\nduchy\\nduci\\nduck\\nduckbill\\nduckbills\\nducked\\nducker\\nduckers\\nduckie\\nduckier\\nduckies\\nduckiest\\nducking\\nduckling\\nducklings\\nduckpin\\nduckpins\\nducks\\nducktail\\nducktails\\nduckweed\\nduckweeds\\nducky\\nducs\\nduct\\nducted\\nductile\\nductilities\\nductility\\nducting\\nductings\\nductless\\nducts\\nductule\\nductules\\ndud\\nduddie\\nduddy\\ndude\\ndudeen\\ndudeens\\ndudes\\ndudgeon\\ndudgeons\\ndudish\\ndudishly\\nduds\\ndue\\nduecento\\nduecentos\\nduel\\ndueled\\ndueler\\nduelers\\ndueling\\nduelist\\nduelists\\nduelled\\ndueller\\nduellers\\nduelli\\nduelling\\nduellist\\nduellists\\nduello\\nduellos\\nduels\\nduende\\nduendes\\ndueness\\nduenesses\\nduenna\\nduennas\\ndues\\nduet\\nduets\\nduetted\\nduetting\\nduettist\\nduettists\\nduff\\nduffel\\nduffels\\nduffer\\nduffers\\nduffle\\nduffles\\nduffs\\ndug\\ndugong\\ndugongs\\ndugout\\ndugouts\\ndugs\\ndui\\nduiker\\nduikers\\nduit\\nduits\\nduke\\ndukedom\\ndukedoms\\ndukes\\ndulcet\\ndulcetly\\ndulcets\\ndulciana\\ndulcianas\\ndulcified\\ndulcifies\\ndulcify\\ndulcifying\\ndulcimer\\ndulcimers\\ndulcinea\\ndulcineas\\ndulia\\ndulias\\ndull\\ndullard\\ndullards\\ndulled\\nduller\\ndullest\\ndulling\\ndullish\\ndullness\\ndullnesses\\ndulls\\ndully\\ndulness\\ndulnesses\\ndulse\\ndulses\\nduly\\nduma\\ndumas\\ndumb\\ndumbbell\\ndumbbells\\ndumbed\\ndumber\\ndumbest\\ndumbfound\\ndumbfounded\\ndumbfounding\\ndumbfounds\\ndumbing\\ndumbly\\ndumbness\\ndumbnesses\\ndumbs\\ndumdum\\ndumdums\\ndumfound\\ndumfounded\\ndumfounding\\ndumfounds\\ndumka\\ndumky\\ndummied\\ndummies\\ndummkopf\\ndummkopfs\\ndummy\\ndummying\\ndump\\ndumpcart\\ndumpcarts\\ndumped\\ndumper\\ndumpers\\ndumpier\\ndumpiest\\ndumpily\\ndumping\\ndumpings\\ndumpish\\ndumpling\\ndumplings\\ndumps\\ndumpy\\ndun\\ndunce\\ndunces\\ndunch\\ndunches\\nduncical\\nduncish\\ndune\\nduneland\\ndunelands\\ndunelike\\ndunes\\ndung\\ndungaree\\ndungarees\\ndunged\\ndungeon\\ndungeons\\ndunghill\\ndunghills\\ndungier\\ndungiest\\ndunging\\ndungs\\ndungy\\ndunite\\ndunites\\ndunitic\\ndunk\\ndunked\\ndunker\\ndunkers\\ndunking\\ndunks\\ndunlin\\ndunlins\\ndunnage\\ndunnages\\ndunned\\ndunner\\ndunness\\ndunnesses\\ndunnest\\ndunning\\ndunnite\\ndunnites\\nduns\\ndunt\\ndunted\\ndunting\\ndunts\\nduo\\nduodena\\nduodenal\\nduodenum\\nduodenums\\nduolog\\nduologs\\nduologue\\nduologues\\nduomi\\nduomo\\nduomos\\nduopolies\\nduopoly\\nduopsonies\\nduopsony\\nduos\\nduotone\\nduotones\\ndup\\ndupable\\ndupe\\nduped\\nduper\\nduperies\\ndupers\\ndupery\\ndupes\\nduping\\nduple\\nduplex\\nduplexed\\nduplexer\\nduplexers\\nduplexes\\nduplexing\\nduplicate\\nduplicated\\nduplicates\\nduplicating\\nduplication\\nduplications\\nduplicator\\nduplicators\\nduplicity\\ndupped\\ndupping\\ndups\\ndura\\ndurabilities\\ndurability\\ndurable\\ndurables\\ndurably\\ndural\\nduramen\\nduramens\\ndurance\\ndurances\\nduras\\nduration\\ndurations\\ndurative\\nduratives\\ndurbar\\ndurbars\\ndure\\ndured\\ndures\\nduress\\nduresses\\ndurian\\ndurians\\nduring\\ndurion\\ndurions\\ndurmast\\ndurmasts\\ndurn\\ndurndest\\ndurned\\ndurneder\\ndurnedest\\ndurning\\ndurns\\nduro\\nduroc\\ndurocs\\nduros\\ndurr\\ndurra\\ndurras\\ndurrs\\ndurst\\ndurum\\ndurums\\ndusk\\ndusked\\nduskier\\nduskiest\\nduskily\\ndusking\\nduskish\\ndusks\\ndusky\\ndust\\ndustbin\\ndustbins\\ndusted\\nduster\\ndusters\\ndustheap\\ndustheaps\\ndustier\\ndustiest\\ndustily\\ndusting\\ndustless\\ndustlike\\ndustman\\ndustmen\\ndustpan\\ndustpans\\ndustrag\\ndustrags\\ndusts\\ndustup\\ndustups\\ndusty\\ndutch\\ndutchman\\ndutchmen\\nduteous\\ndutiable\\nduties\\ndutiful\\nduty\\nduumvir\\nduumviri\\nduumvirs\\nduvetine\\nduvetines\\nduvetyn\\nduvetyne\\nduvetynes\\nduvetyns\\ndwarf\\ndwarfed\\ndwarfer\\ndwarfest\\ndwarfing\\ndwarfish\\ndwarfism\\ndwarfisms\\ndwarfs\\ndwarves\\ndwell\\ndwelled\\ndweller\\ndwellers\\ndwelling\\ndwellings\\ndwells\\ndwelt\\ndwindle\\ndwindled\\ndwindles\\ndwindling\\ndwine\\ndwined\\ndwines\\ndwining\\ndyable\\ndyad\\ndyadic\\ndyadics\\ndyads\\ndyarchic\\ndyarchies\\ndyarchy\\ndybbuk\\ndybbukim\\ndybbuks\\ndye\\ndyeable\\ndyed\\ndyeing\\ndyeings\\ndyer\\ndyers\\ndyes\\ndyestuff\\ndyestuffs\\ndyeweed\\ndyeweeds\\ndyewood\\ndyewoods\\ndying\\ndyings\\ndyke\\ndyked\\ndyker\\ndykes\\ndyking\\ndynamic\\ndynamics\\ndynamism\\ndynamisms\\ndynamist\\ndynamists\\ndynamite\\ndynamited\\ndynamites\\ndynamiting\\ndynamo\\ndynamos\\ndynast\\ndynastic\\ndynasties\\ndynasts\\ndynasty\\ndynatron\\ndynatrons\\ndyne\\ndynes\\ndynode\\ndynodes\\ndysautonomia\\ndysenteries\\ndysentery\\ndysfunction\\ndysfunctions\\ndysgenic\\ndyslexia\\ndyslexias\\ndyslexic\\ndyspepsia\\ndyspepsias\\ndyspepsies\\ndyspepsy\\ndyspeptic\\ndysphagia\\ndyspnea\\ndyspneal\\ndyspneas\\ndyspneic\\ndyspnoea\\ndyspnoeas\\ndyspnoic\\ndystaxia\\ndystaxias\\ndystocia\\ndystocias\\ndystonia\\ndystonias\\ndystopia\\ndystopias\\ndystrophies\\ndystrophy\\ndysuria\\ndysurias\\ndysuric\\ndyvour\\ndyvours\\neach\\neager\\neagerer\\neagerest\\neagerly\\neagerness\\neagernesses\\neagers\\neagle\\neagles\\neaglet\\neaglets\\neagre\\neagres\\neanling\\neanlings\\near\\nearache\\nearaches\\neardrop\\neardrops\\neardrum\\neardrums\\neared\\nearflap\\nearflaps\\nearful\\nearfuls\\nearing\\nearings\\nearl\\nearlap\\nearlaps\\nearldom\\nearldoms\\nearless\\nearlier\\nearliest\\nearlobe\\nearlobes\\nearlock\\nearlocks\\nearls\\nearlship\\nearlships\\nearly\\nearmark\\nearmarked\\nearmarking\\nearmarks\\nearmuff\\nearmuffs\\nearn\\nearned\\nearner\\nearners\\nearnest\\nearnestly\\nearnestness\\nearnestnesses\\nearnests\\nearning\\nearnings\\nearns\\nearphone\\nearphones\\nearpiece\\nearpieces\\nearplug\\nearplugs\\nearring\\nearrings\\nears\\nearshot\\nearshots\\nearstone\\nearstones\\nearth\\nearthed\\nearthen\\nearthenware\\nearthenwares\\nearthier\\nearthiest\\nearthily\\nearthiness\\nearthinesses\\nearthing\\nearthlier\\nearthliest\\nearthliness\\nearthlinesses\\nearthly\\nearthman\\nearthmen\\nearthnut\\nearthnuts\\nearthpea\\nearthpeas\\nearthquake\\nearthquakes\\nearths\\nearthset\\nearthsets\\nearthward\\nearthwards\\nearthworm\\nearthworms\\nearthy\\nearwax\\nearwaxes\\nearwig\\nearwigged\\nearwigging\\nearwigs\\nearworm\\nearworms\\nease\\neased\\neaseful\\neasel\\neasels\\neasement\\neasements\\neases\\neasier\\neasies\\neasiest\\neasily\\neasiness\\neasinesses\\neasing\\neast\\neaster\\neasterlies\\neasterly\\neastern\\neasters\\neasting\\neastings\\neasts\\neastward\\neastwards\\neasy\\neasygoing\\neat\\neatable\\neatables\\neaten\\neater\\neateries\\neaters\\neatery\\neath\\neating\\neatings\\neats\\neau\\neaux\\neave\\neaved\\neaves\\neavesdrop\\neavesdropped\\neavesdropper\\neavesdroppers\\neavesdropping\\neavesdrops\\nebb\\nebbed\\nebbet\\nebbets\\nebbing\\nebbs\\nebon\\nebonies\\nebonise\\nebonised\\nebonises\\nebonising\\nebonite\\nebonites\\nebonize\\nebonized\\nebonizes\\nebonizing\\nebons\\nebony\\nebullient\\necarte\\necartes\\necaudate\\necbolic\\necbolics\\neccentric\\neccentrically\\neccentricities\\neccentricity\\neccentrics\\necclesia\\necclesiae\\necclesiastic\\necclesiastical\\necclesiastics\\neccrine\\necdyses\\necdysial\\necdysis\\necdyson\\necdysone\\necdysones\\necdysons\\necesis\\necesises\\nechard\\nechards\\neche\\neched\\nechelon\\necheloned\\necheloning\\nechelons\\neches\\nechidna\\nechidnae\\nechidnas\\nechinate\\neching\\nechini\\nechinoid\\nechinoids\\nechinus\\necho\\nechoed\\nechoer\\nechoers\\nechoes\\nechoey\\nechoic\\nechoing\\nechoism\\nechoisms\\necholess\\neclair\\neclairs\\neclat\\neclats\\neclectic\\neclectics\\neclipse\\neclipsed\\neclipses\\neclipsing\\neclipsis\\neclipsises\\necliptic\\necliptics\\neclogite\\neclogites\\neclogue\\neclogues\\neclosion\\neclosions\\necole\\necoles\\necologic\\necological\\necologically\\necologies\\necologist\\necologists\\necology\\neconomic\\neconomical\\neconomically\\neconomics\\neconomies\\neconomist\\neconomists\\neconomize\\neconomized\\neconomizes\\neconomizing\\neconomy\\necotonal\\necotone\\necotones\\necotype\\necotypes\\necotypic\\necraseur\\necraseurs\\necru\\necrus\\necstasies\\necstasy\\necstatic\\necstatically\\necstatics\\nectases\\nectasis\\nectatic\\necthyma\\necthymata\\nectoderm\\nectoderms\\nectomere\\nectomeres\\nectopia\\nectopias\\nectopic\\nectosarc\\nectosarcs\\nectozoa\\nectozoan\\nectozoans\\nectozoon\\nectypal\\nectype\\nectypes\\necu\\necumenic\\necus\\neczema\\neczemas\\nedacious\\nedacities\\nedacity\\nedaphic\\neddied\\neddies\\neddo\\neddoes\\neddy\\neddying\\nedelstein\\nedema\\nedemas\\nedemata\\nedentate\\nedentates\\nedge\\nedged\\nedgeless\\nedger\\nedgers\\nedges\\nedgeways\\nedgewise\\nedgier\\nedgiest\\nedgily\\nedginess\\nedginesses\\nedging\\nedgings\\nedgy\\nedh\\nedhs\\nedibilities\\nedibility\\nedible\\nedibles\\nedict\\nedictal\\nedicts\\nedification\\nedifications\\nedifice\\nedifices\\nedified\\nedifier\\nedifiers\\nedifies\\nedify\\nedifying\\nedile\\nediles\\nedit\\neditable\\nedited\\nediting\\nedition\\neditions\\neditor\\neditorial\\neditorialize\\neditorialized\\neditorializes\\neditorializing\\neditorially\\neditorials\\neditors\\neditress\\neditresses\\nedits\\neducable\\neducables\\neducate\\neducated\\neducates\\neducating\\neducation\\neducational\\neducations\\neducator\\neducators\\neduce\\neduced\\neduces\\neducing\\neduct\\neduction\\neductions\\neductive\\neductor\\neductors\\neducts\\neel\\neelgrass\\neelgrasses\\neelier\\neeliest\\neellike\\neelpout\\neelpouts\\neels\\neelworm\\neelworms\\neely\\neerie\\neerier\\neeriest\\neerily\\neeriness\\neerinesses\\neery\\nef\\neff\\neffable\\nefface\\neffaced\\neffacement\\neffacements\\neffacer\\neffacers\\neffaces\\neffacing\\neffect\\neffected\\neffecter\\neffecters\\neffecting\\neffective\\neffectively\\neffectiveness\\neffector\\neffectors\\neffects\\neffectual\\neffectually\\neffectualness\\neffectualnesses\\neffeminacies\\neffeminacy\\neffeminate\\neffendi\\neffendis\\nefferent\\nefferents\\neffervesce\\neffervesced\\neffervescence\\neffervescences\\neffervescent\\neffervescently\\neffervesces\\neffervescing\\neffete\\neffetely\\nefficacies\\nefficacious\\nefficacy\\nefficiencies\\nefficiency\\nefficient\\nefficiently\\neffigies\\neffigy\\neffluent\\neffluents\\neffluvia\\nefflux\\neffluxes\\neffort\\neffortless\\neffortlessly\\nefforts\\neffrontery\\neffs\\neffulge\\neffulged\\neffulges\\neffulging\\neffuse\\neffused\\neffuses\\neffusing\\neffusion\\neffusions\\neffusive\\neffusively\\nefs\\neft\\nefts\\neftsoon\\neftsoons\\negad\\negads\\negal\\negalite\\negalites\\neger\\negers\\negest\\negesta\\negested\\negesting\\negestion\\negestions\\negestive\\negests\\negg\\neggar\\neggars\\neggcup\\neggcups\\negged\\negger\\neggers\\negghead\\neggheads\\negging\\neggnog\\neggnogs\\neggplant\\neggplants\\neggs\\neggshell\\neggshells\\negis\\negises\\neglatere\\neglateres\\nego\\negoism\\negoisms\\negoist\\negoistic\\negoists\\negomania\\negomanias\\negos\\negotism\\negotisms\\negotist\\negotistic\\negotistical\\negotistically\\negotists\\negregious\\negregiously\\negress\\negressed\\negresses\\negressing\\negret\\negrets\\neh\\neide\\neider\\neiderdown\\neiderdowns\\neiders\\neidetic\\neidola\\neidolon\\neidolons\\neidos\\neight\\neighteen\\neighteens\\neighteenth\\neighteenths\\neighth\\neighthly\\neighths\\neighties\\neightieth\\neightieths\\neights\\neightvo\\neightvos\\neighty\\neikon\\neikones\\neikons\\neinkorn\\neinkorns\\neirenic\\neither\\nejaculate\\nejaculated\\nejaculates\\nejaculating\\nejaculation\\nejaculations\\neject\\nejecta\\nejected\\nejecting\\nejection\\nejections\\nejective\\nejectives\\nejector\\nejectors\\nejects\\neke\\neked\\nekes\\neking\\nekistic\\nekistics\\nektexine\\nektexines\\nel\\nelaborate\\nelaborated\\nelaborately\\nelaborateness\\nelaboratenesses\\nelaborates\\nelaborating\\nelaboration\\nelaborations\\nelain\\nelains\\nelan\\neland\\nelands\\nelans\\nelaphine\\nelapid\\nelapids\\nelapine\\nelapse\\nelapsed\\nelapses\\nelapsing\\nelastase\\nelastases\\nelastic\\nelasticities\\nelasticity\\nelastics\\nelastin\\nelastins\\nelate\\nelated\\nelatedly\\nelater\\nelaterid\\nelaterids\\nelaterin\\nelaterins\\nelaters\\nelates\\nelating\\nelation\\nelations\\nelative\\nelatives\\nelbow\\nelbowed\\nelbowing\\nelbows\\neld\\nelder\\nelderberries\\nelderberry\\nelderly\\nelders\\neldest\\neldrich\\neldritch\\nelds\\nelect\\nelected\\nelecting\\nelection\\nelections\\nelective\\nelectives\\nelector\\nelectoral\\nelectorate\\nelectorates\\nelectors\\nelectret\\nelectrets\\nelectric\\nelectrical\\nelectrically\\nelectrician\\nelectricians\\nelectricities\\nelectricity\\nelectrics\\nelectrification\\nelectrifications\\nelectro\\nelectrocardiogram\\nelectrocardiograms\\nelectrocardiograph\\nelectrocardiographs\\nelectrocute\\nelectrocuted\\nelectrocutes\\nelectrocuting\\nelectrocution\\nelectrocutions\\nelectrode\\nelectrodes\\nelectroed\\nelectroing\\nelectrolysis\\nelectrolysises\\nelectrolyte\\nelectrolytes\\nelectrolytic\\nelectromagnet\\nelectromagnetally\\nelectromagnetic\\nelectromagnets\\nelectron\\nelectronic\\nelectronics\\nelectrons\\nelectroplate\\nelectroplated\\nelectroplates\\nelectroplating\\nelectros\\nelectrum\\nelectrums\\nelects\\nelegance\\nelegances\\nelegancies\\nelegancy\\nelegant\\nelegantly\\nelegiac\\nelegiacs\\nelegies\\nelegise\\nelegised\\nelegises\\nelegising\\nelegist\\nelegists\\nelegit\\nelegits\\nelegize\\nelegized\\nelegizes\\nelegizing\\nelegy\\nelement\\nelemental\\nelementary\\nelements\\nelemi\\nelemis\\nelenchi\\nelenchic\\nelenchus\\nelenctic\\nelephant\\nelephants\\nelevate\\nelevated\\nelevates\\nelevating\\nelevation\\nelevations\\nelevator\\nelevators\\neleven\\nelevens\\neleventh\\nelevenths\\nelevon\\nelevons\\nelf\\nelfin\\nelfins\\nelfish\\nelfishly\\nelflock\\nelflocks\\nelhi\\nelicit\\nelicited\\neliciting\\nelicitor\\nelicitors\\nelicits\\nelide\\nelided\\nelides\\nelidible\\neliding\\neligibilities\\neligibility\\neligible\\neligibles\\neligibly\\neliminate\\neliminated\\neliminates\\neliminating\\nelimination\\neliminations\\nelision\\nelisions\\nelite\\nelites\\nelitism\\nelitisms\\nelitist\\nelitists\\nelixir\\nelixirs\\nelk\\nelkhound\\nelkhounds\\nelks\\nell\\nellipse\\nellipses\\nellipsis\\nelliptic\\nelliptical\\nells\\nelm\\nelmier\\nelmiest\\nelms\\nelmy\\nelocution\\nelocutions\\nelodea\\nelodeas\\neloign\\neloigned\\neloigner\\neloigners\\neloigning\\neloigns\\neloin\\neloined\\neloiner\\neloiners\\neloining\\neloins\\nelongate\\nelongated\\nelongates\\nelongating\\nelongation\\nelongations\\nelope\\neloped\\neloper\\nelopers\\nelopes\\neloping\\neloquent\\neloquently\\nels\\nelse\\nelsewhere\\neluant\\neluants\\neluate\\neluates\\nelucidate\\nelucidated\\nelucidates\\nelucidating\\nelucidation\\nelucidations\\nelude\\neluded\\neluder\\neluders\\neludes\\neluding\\neluent\\neluents\\nelusion\\nelusions\\nelusive\\nelusively\\nelusiveness\\nelusivenesses\\nelusory\\nelute\\neluted\\nelutes\\neluting\\nelution\\nelutions\\neluvia\\neluvial\\neluviate\\neluviated\\neluviates\\neluviating\\neluvium\\neluviums\\nelver\\nelvers\\nelves\\nelvish\\nelvishly\\nelysian\\nelytra\\nelytroid\\nelytron\\nelytrous\\nelytrum\\nem\\nemaciate\\nemaciated\\nemaciates\\nemaciating\\nemaciation\\nemaciations\\nemanate\\nemanated\\nemanates\\nemanating\\nemanation\\nemanations\\nemanator\\nemanators\\nemancipatation\\nemancipatations\\nemancipate\\nemancipated\\nemancipates\\nemancipating\\nemancipation\\nemancipations\\nemasculatation\\nemasculatations\\nemasculate\\nemasculated\\nemasculates\\nemasculating\\nembalm\\nembalmed\\nembalmer\\nembalmers\\nembalming\\nembalms\\nembank\\nembanked\\nembanking\\nembankment\\nembankments\\nembanks\\nembar\\nembargo\\nembargoed\\nembargoing\\nembargos\\nembark\\nembarkation\\nembarkations\\nembarked\\nembarking\\nembarks\\nembarrass\\nembarrassed\\nembarrasses\\nembarrassing\\nembarrassment\\nembarrassments\\nembarred\\nembarring\\nembars\\nembassies\\nembassy\\nembattle\\nembattled\\nembattles\\nembattling\\nembay\\nembayed\\nembaying\\nembays\\nembed\\nembedded\\nembedding\\nembeds\\nembellish\\nembellished\\nembellishes\\nembellishing\\nembellishment\\nembellishments\\nember\\nembers\\nembezzle\\nembezzled\\nembezzlement\\nembezzlements\\nembezzler\\nembezzlers\\nembezzles\\nembezzling\\nembitter\\nembittered\\nembittering\\nembitters\\nemblaze\\nemblazed\\nemblazer\\nemblazers\\nemblazes\\nemblazing\\nemblazon\\nemblazoned\\nemblazoning\\nemblazons\\nemblem\\nemblematic\\nemblemed\\nembleming\\nemblems\\nembodied\\nembodier\\nembodiers\\nembodies\\nembodiment\\nembodiments\\nembody\\nembodying\\nembolden\\nemboldened\\nemboldening\\nemboldens\\nemboli\\nembolic\\nembolies\\nembolism\\nembolisms\\nembolus\\nemboly\\nemborder\\nembordered\\nembordering\\nemborders\\nembosk\\nembosked\\nembosking\\nembosks\\nembosom\\nembosomed\\nembosoming\\nembosoms\\nemboss\\nembossed\\nembosser\\nembossers\\nembosses\\nembossing\\nembow\\nembowed\\nembowel\\nemboweled\\nemboweling\\nembowelled\\nembowelling\\nembowels\\nembower\\nembowered\\nembowering\\nembowers\\nembowing\\nembows\\nembrace\\nembraced\\nembracer\\nembracers\\nembraces\\nembracing\\nembroider\\nembroidered\\nembroidering\\nembroiders\\nembroil\\nembroiled\\nembroiling\\nembroils\\nembrown\\nembrowned\\nembrowning\\nembrowns\\nembrue\\nembrued\\nembrues\\nembruing\\nembrute\\nembruted\\nembrutes\\nembruting\\nembryo\\nembryoid\\nembryon\\nembryonic\\nembryons\\nembryos\\nemcee\\nemceed\\nemcees\\nemceing\\neme\\nemeer\\nemeerate\\nemeerates\\nemeers\\nemend\\nemendate\\nemendated\\nemendates\\nemendating\\nemendation\\nemendations\\nemended\\nemender\\nemenders\\nemending\\nemends\\nemerald\\nemeralds\\nemerge\\nemerged\\nemergence\\nemergences\\nemergencies\\nemergency\\nemergent\\nemergents\\nemerges\\nemerging\\nemeries\\nemerita\\nemeriti\\nemeritus\\nemerod\\nemerods\\nemeroid\\nemeroids\\nemersed\\nemersion\\nemersions\\nemery\\nemes\\nemeses\\nemesis\\nemetic\\nemetics\\nemetin\\nemetine\\nemetines\\nemetins\\nemeu\\nemeus\\nemeute\\nemeutes\\nemigrant\\nemigrants\\nemigrate\\nemigrated\\nemigrates\\nemigrating\\nemigration\\nemigrations\\nemigre\\nemigres\\neminence\\neminences\\neminencies\\neminency\\neminent\\neminently\\nemir\\nemirate\\nemirates\\nemirs\\nemissaries\\nemissary\\nemission\\nemissions\\nemissive\\nemit\\nemits\\nemitted\\nemitter\\nemitters\\nemitting\\nemmer\\nemmers\\nemmet\\nemmets\\nemodin\\nemodins\\nemolument\\nemoluments\\nemote\\nemoted\\nemoter\\nemoters\\nemotes\\nemoting\\nemotion\\nemotional\\nemotionally\\nemotions\\nemotive\\nempale\\nempaled\\nempaler\\nempalers\\nempales\\nempaling\\nempanel\\nempaneled\\nempaneling\\nempanelled\\nempanelling\\nempanels\\nempathic\\nempathies\\nempathy\\nemperies\\nemperor\\nemperors\\nempery\\nemphases\\nemphasis\\nemphasize\\nemphasized\\nemphasizes\\nemphasizing\\nemphatic\\nemphatically\\nemphysema\\nemphysemas\\nempire\\nempires\\nempiric\\nempirical\\nempirically\\nempirics\\nemplace\\nemplaced\\nemplaces\\nemplacing\\nemplane\\nemplaned\\nemplanes\\nemplaning\\nemploy\\nemploye\\nemployed\\nemployee\\nemployees\\nemployer\\nemployers\\nemployes\\nemploying\\nemployment\\nemployments\\nemploys\\nempoison\\nempoisoned\\nempoisoning\\nempoisons\\nemporia\\nemporium\\nemporiums\\nempower\\nempowered\\nempowering\\nempowers\\nempress\\nempresses\\nemprise\\nemprises\\nemprize\\nemprizes\\nemptied\\nemptier\\nemptiers\\nempties\\nemptiest\\nemptily\\nemptiness\\nemptinesses\\nemptings\\nemptins\\nempty\\nemptying\\nempurple\\nempurpled\\nempurples\\nempurpling\\nempyema\\nempyemas\\nempyemata\\nempyemic\\nempyreal\\nempyrean\\nempyreans\\nems\\nemu\\nemulate\\nemulated\\nemulates\\nemulating\\nemulation\\nemulations\\nemulator\\nemulators\\nemulous\\nemulsification\\nemulsifications\\nemulsified\\nemulsifier\\nemulsifiers\\nemulsifies\\nemulsify\\nemulsifying\\nemulsion\\nemulsions\\nemulsive\\nemulsoid\\nemulsoids\\nemus\\nemyd\\nemyde\\nemydes\\nemyds\\nen\\nenable\\nenabled\\nenabler\\nenablers\\nenables\\nenabling\\nenact\\nenacted\\nenacting\\nenactive\\nenactment\\nenactments\\nenactor\\nenactors\\nenactory\\nenacts\\nenamel\\nenameled\\nenameler\\nenamelers\\nenameling\\nenamelled\\nenamelling\\nenamels\\nenamine\\nenamines\\nenamor\\nenamored\\nenamoring\\nenamors\\nenamour\\nenamoured\\nenamouring\\nenamours\\nenate\\nenates\\nenatic\\nenation\\nenations\\nencaenia\\nencage\\nencaged\\nencages\\nencaging\\nencamp\\nencamped\\nencamping\\nencampment\\nencampments\\nencamps\\nencase\\nencased\\nencases\\nencash\\nencashed\\nencashes\\nencashing\\nencasing\\nenceinte\\nenceintes\\nencephalitides\\nencephalitis\\nenchain\\nenchained\\nenchaining\\nenchains\\nenchant\\nenchanted\\nenchanter\\nenchanters\\nenchanting\\nenchantment\\nenchantments\\nenchantress\\nenchantresses\\nenchants\\nenchase\\nenchased\\nenchaser\\nenchasers\\nenchases\\nenchasing\\nenchoric\\nencina\\nencinal\\nencinas\\nencipher\\nenciphered\\nenciphering\\nenciphers\\nencircle\\nencircled\\nencircles\\nencircling\\nenclasp\\nenclasped\\nenclasping\\nenclasps\\nenclave\\nenclaves\\nenclitic\\nenclitics\\nenclose\\nenclosed\\nencloser\\nenclosers\\nencloses\\nenclosing\\nenclosure\\nenclosures\\nencode\\nencoded\\nencoder\\nencoders\\nencodes\\nencoding\\nencomia\\nencomium\\nencomiums\\nencompass\\nencompassed\\nencompasses\\nencompassing\\nencore\\nencored\\nencores\\nencoring\\nencounter\\nencountered\\nencountering\\nencounters\\nencourage\\nencouraged\\nencouragement\\nencouragements\\nencourages\\nencouraging\\nencroach\\nencroached\\nencroaches\\nencroaching\\nencroachment\\nencroachments\\nencrust\\nencrusted\\nencrusting\\nencrusts\\nencrypt\\nencrypted\\nencrypting\\nencrypts\\nencumber\\nencumberance\\nencumberances\\nencumbered\\nencumbering\\nencumbers\\nencyclic\\nencyclical\\nencyclicals\\nencyclics\\nencyclopedia\\nencyclopedias\\nencyclopedic\\nencyst\\nencysted\\nencysting\\nencysts\\nend\\nendamage\\nendamaged\\nendamages\\nendamaging\\nendameba\\nendamebae\\nendamebas\\nendanger\\nendangered\\nendangering\\nendangers\\nendarch\\nendarchies\\nendarchy\\nendbrain\\nendbrains\\nendear\\nendeared\\nendearing\\nendearment\\nendearments\\nendears\\nendeavor\\nendeavored\\nendeavoring\\nendeavors\\nended\\nendemial\\nendemic\\nendemics\\nendemism\\nendemisms\\nender\\nendermic\\nenders\\nendexine\\nendexines\\nending\\nendings\\nendite\\nendited\\nendites\\nenditing\\nendive\\nendives\\nendleaf\\nendleaves\\nendless\\nendlessly\\nendlong\\nendmost\\nendocarp\\nendocarps\\nendocrine\\nendoderm\\nendoderms\\nendogamies\\nendogamy\\nendogen\\nendogenies\\nendogens\\nendogeny\\nendopod\\nendopods\\nendorse\\nendorsed\\nendorsee\\nendorsees\\nendorsement\\nendorsements\\nendorser\\nendorsers\\nendorses\\nendorsing\\nendorsor\\nendorsors\\nendosarc\\nendosarcs\\nendosmos\\nendosmoses\\nendosome\\nendosomes\\nendostea\\nendow\\nendowed\\nendower\\nendowers\\nendowing\\nendowment\\nendowments\\nendows\\nendozoic\\nendpaper\\nendpapers\\nendplate\\nendplates\\nendrin\\nendrins\\nends\\nendue\\nendued\\nendues\\nenduing\\nendurable\\nendurance\\nendurances\\nendure\\nendured\\nendures\\nenduring\\nenduro\\nenduros\\nendways\\nendwise\\nenema\\nenemas\\nenemata\\nenemies\\nenemy\\nenergetic\\nenergetically\\nenergid\\nenergids\\nenergies\\nenergise\\nenergised\\nenergises\\nenergising\\nenergize\\nenergized\\nenergizes\\nenergizing\\nenergy\\nenervate\\nenervated\\nenervates\\nenervating\\nenervation\\nenervations\\nenface\\nenfaced\\nenfaces\\nenfacing\\nenfeeble\\nenfeebled\\nenfeebles\\nenfeebling\\nenfeoff\\nenfeoffed\\nenfeoffing\\nenfeoffs\\nenfetter\\nenfettered\\nenfettering\\nenfetters\\nenfever\\nenfevered\\nenfevering\\nenfevers\\nenfilade\\nenfiladed\\nenfilades\\nenfilading\\nenfin\\nenflame\\nenflamed\\nenflames\\nenflaming\\nenfold\\nenfolded\\nenfolder\\nenfolders\\nenfolding\\nenfolds\\nenforce\\nenforceable\\nenforced\\nenforcement\\nenforcements\\nenforcer\\nenforcers\\nenforces\\nenforcing\\nenframe\\nenframed\\nenframes\\nenframing\\nenfranchise\\nenfranchised\\nenfranchisement\\nenfranchisements\\nenfranchises\\nenfranchising\\neng\\nengage\\nengaged\\nengagement\\nengagements\\nengager\\nengagers\\nengages\\nengaging\\nengender\\nengendered\\nengendering\\nengenders\\nengild\\nengilded\\nengilding\\nengilds\\nengine\\nengined\\nengineer\\nengineered\\nengineering\\nengineerings\\nengineers\\nengineries\\nenginery\\nengines\\nengining\\nenginous\\nengird\\nengirded\\nengirding\\nengirdle\\nengirdled\\nengirdles\\nengirdling\\nengirds\\nengirt\\nenglish\\nenglished\\nenglishes\\nenglishing\\nenglut\\nengluts\\nenglutted\\nenglutting\\nengorge\\nengorged\\nengorges\\nengorging\\nengraft\\nengrafted\\nengrafting\\nengrafts\\nengrail\\nengrailed\\nengrailing\\nengrails\\nengrain\\nengrained\\nengraining\\nengrains\\nengram\\nengramme\\nengrammes\\nengrams\\nengrave\\nengraved\\nengraver\\nengravers\\nengraves\\nengraving\\nengravings\\nengross\\nengrossed\\nengrosses\\nengrossing\\nengs\\nengulf\\nengulfed\\nengulfing\\nengulfs\\nenhalo\\nenhaloed\\nenhaloes\\nenhaloing\\nenhance\\nenhanced\\nenhancement\\nenhancements\\nenhancer\\nenhancers\\nenhances\\nenhancing\\neniac\\nenigma\\nenigmas\\nenigmata\\nenigmatic\\nenisle\\nenisled\\nenisles\\nenisling\\nenjambed\\nenjoin\\nenjoined\\nenjoiner\\nenjoiners\\nenjoining\\nenjoins\\nenjoy\\nenjoyable\\nenjoyed\\nenjoyer\\nenjoyers\\nenjoying\\nenjoyment\\nenjoyments\\nenjoys\\nenkindle\\nenkindled\\nenkindles\\nenkindling\\nenlace\\nenlaced\\nenlaces\\nenlacing\\nenlarge\\nenlarged\\nenlargement\\nenlargements\\nenlarger\\nenlargers\\nenlarges\\nenlarging\\nenlighten\\nenlightened\\nenlightening\\nenlightenment\\nenlightenments\\nenlightens\\nenlist\\nenlisted\\nenlistee\\nenlistees\\nenlister\\nenlisters\\nenlisting\\nenlistment\\nenlistments\\nenlists\\nenliven\\nenlivened\\nenlivening\\nenlivens\\nenmesh\\nenmeshed\\nenmeshes\\nenmeshing\\nenmities\\nenmity\\nennead\\nenneadic\\nenneads\\nenneagon\\nenneagons\\nennoble\\nennobled\\nennobler\\nennoblers\\nennobles\\nennobling\\nennui\\nennuis\\nennuye\\nennuyee\\nenol\\nenolase\\nenolases\\nenolic\\nenologies\\nenology\\nenols\\nenorm\\nenormities\\nenormity\\nenormous\\nenormously\\nenormousness\\nenormousnesses\\nenosis\\nenosises\\nenough\\nenoughs\\nenounce\\nenounced\\nenounces\\nenouncing\\nenow\\nenows\\nenplane\\nenplaned\\nenplanes\\nenplaning\\nenquire\\nenquired\\nenquires\\nenquiries\\nenquiring\\nenquiry\\nenrage\\nenraged\\nenrages\\nenraging\\nenrapt\\nenravish\\nenravished\\nenravishes\\nenravishing\\nenrich\\nenriched\\nenricher\\nenrichers\\nenriches\\nenriching\\nenrichment\\nenrichments\\nenrobe\\nenrobed\\nenrober\\nenrobers\\nenrobes\\nenrobing\\nenrol\\nenroll\\nenrolled\\nenrollee\\nenrollees\\nenroller\\nenrollers\\nenrolling\\nenrollment\\nenrollments\\nenrolls\\nenrols\\nenroot\\nenrooted\\nenrooting\\nenroots\\nens\\nensample\\nensamples\\nensconce\\nensconced\\nensconces\\nensconcing\\nenscroll\\nenscrolled\\nenscrolling\\nenscrolls\\nensemble\\nensembles\\nenserf\\nenserfed\\nenserfing\\nenserfs\\nensheath\\nensheathed\\nensheathing\\nensheaths\\nenshrine\\nenshrined\\nenshrines\\nenshrining\\nenshroud\\nenshrouded\\nenshrouding\\nenshrouds\\nensiform\\nensign\\nensigncies\\nensigncy\\nensigns\\nensilage\\nensilaged\\nensilages\\nensilaging\\nensile\\nensiled\\nensiles\\nensiling\\nenskied\\nenskies\\nensky\\nenskyed\\nenskying\\nenslave\\nenslaved\\nenslavement\\nenslavements\\nenslaver\\nenslavers\\nenslaves\\nenslaving\\nensnare\\nensnared\\nensnarer\\nensnarers\\nensnares\\nensnaring\\nensnarl\\nensnarled\\nensnarling\\nensnarls\\nensorcel\\nensorceled\\nensorceling\\nensorcels\\nensoul\\nensouled\\nensouling\\nensouls\\nensphere\\nensphered\\nenspheres\\nensphering\\nensue\\nensued\\nensues\\nensuing\\nensure\\nensured\\nensurer\\nensurers\\nensures\\nensuring\\nenswathe\\nenswathed\\nenswathes\\nenswathing\\nentail\\nentailed\\nentailer\\nentailers\\nentailing\\nentails\\nentameba\\nentamebae\\nentamebas\\nentangle\\nentangled\\nentanglement\\nentanglements\\nentangles\\nentangling\\nentases\\nentasia\\nentasias\\nentasis\\nentastic\\nentellus\\nentelluses\\nentente\\nententes\\nenter\\nentera\\nenteral\\nentered\\nenterer\\nenterers\\nenteric\\nentering\\nenteron\\nenterons\\nenterprise\\nenterprises\\nenters\\nentertain\\nentertained\\nentertainer\\nentertainers\\nentertaining\\nentertainment\\nentertainments\\nentertains\\nenthalpies\\nenthalpy\\nenthetic\\nenthral\\nenthrall\\nenthralled\\nenthralling\\nenthralls\\nenthrals\\nenthrone\\nenthroned\\nenthrones\\nenthroning\\nenthuse\\nenthused\\nenthuses\\nenthusiasm\\nenthusiast\\nenthusiastic\\nenthusiastically\\nenthusiasts\\nenthusing\\nentia\\nentice\\nenticed\\nenticement\\nenticements\\nenticer\\nenticers\\nentices\\nenticing\\nentire\\nentirely\\nentires\\nentireties\\nentirety\\nentities\\nentitle\\nentitled\\nentitles\\nentitling\\nentity\\nentoderm\\nentoderms\\nentoil\\nentoiled\\nentoiling\\nentoils\\nentomb\\nentombed\\nentombing\\nentombs\\nentomological\\nentomologies\\nentomologist\\nentomologists\\nentomology\\nentopic\\nentourage\\nentourages\\nentozoa\\nentozoal\\nentozoan\\nentozoans\\nentozoic\\nentozoon\\nentrails\\nentrain\\nentrained\\nentraining\\nentrains\\nentrance\\nentranced\\nentrances\\nentrancing\\nentrant\\nentrants\\nentrap\\nentrapment\\nentrapments\\nentrapped\\nentrapping\\nentraps\\nentreat\\nentreated\\nentreaties\\nentreating\\nentreats\\nentreaty\\nentree\\nentrees\\nentrench\\nentrenched\\nentrenches\\nentrenching\\nentrenchment\\nentrenchments\\nentrepot\\nentrepots\\nentrepreneur\\nentrepreneurs\\nentresol\\nentresols\\nentries\\nentropies\\nentropy\\nentrust\\nentrusted\\nentrusting\\nentrusts\\nentry\\nentryway\\nentryways\\nentwine\\nentwined\\nentwines\\nentwining\\nentwist\\nentwisted\\nentwisting\\nentwists\\nenumerate\\nenumerated\\nenumerates\\nenumerating\\nenumeration\\nenumerations\\nenunciate\\nenunciated\\nenunciates\\nenunciating\\nenunciation\\nenunciations\\nenure\\nenured\\nenures\\nenuresis\\nenuresises\\nenuretic\\nenuring\\nenvelop\\nenvelope\\nenveloped\\nenvelopes\\nenveloping\\nenvelopment\\nenvelopments\\nenvelops\\nenvenom\\nenvenomed\\nenvenoming\\nenvenoms\\nenviable\\nenviably\\nenvied\\nenvier\\nenviers\\nenvies\\nenvious\\nenviron\\nenvironed\\nenvironing\\nenvironment\\nenvironmental\\nenvironmentalist\\nenvironmentalists\\nenvironments\\nenvirons\\nenvisage\\nenvisaged\\nenvisages\\nenvisaging\\nenvision\\nenvisioned\\nenvisioning\\nenvisions\\nenvoi\\nenvois\\nenvoy\\nenvoys\\nenvy\\nenvying\\nenwheel\\nenwheeled\\nenwheeling\\nenwheels\\nenwind\\nenwinding\\nenwinds\\nenwomb\\nenwombed\\nenwombing\\nenwombs\\nenwound\\nenwrap\\nenwrapped\\nenwrapping\\nenwraps\\nenzootic\\nenzootics\\nenzym\\nenzyme\\nenzymes\\nenzymic\\nenzyms\\neobiont\\neobionts\\neohippus\\neohippuses\\neolian\\neolipile\\neolipiles\\neolith\\neolithic\\neoliths\\neolopile\\neolopiles\\neon\\neonian\\neonism\\neonisms\\neons\\neosin\\neosine\\neosines\\neosinic\\neosins\\nepact\\nepacts\\neparch\\neparchies\\neparchs\\neparchy\\nepaulet\\nepaulets\\nepee\\nepeeist\\nepeeists\\nepees\\nepeiric\\nepergne\\nepergnes\\nepha\\nephah\\nephahs\\nephas\\nephebe\\nephebes\\nephebi\\nephebic\\nepheboi\\nephebos\\nephebus\\nephedra\\nephedras\\nephedrin\\nephedrins\\nephemera\\nephemerae\\nephemeras\\nephod\\nephods\\nephor\\nephoral\\nephorate\\nephorates\\nephori\\nephors\\nepiblast\\nepiblasts\\nepibolic\\nepibolies\\nepiboly\\nepic\\nepical\\nepically\\nepicalyces\\nepicalyx\\nepicalyxes\\nepicarp\\nepicarps\\nepicedia\\nepicene\\nepicenes\\nepiclike\\nepicotyl\\nepicotyls\\nepics\\nepicure\\nepicurean\\nepicureans\\nepicures\\nepicycle\\nepicycles\\nepidemic\\nepidemics\\nepidemiology\\nepiderm\\nepidermis\\nepidermises\\nepiderms\\nepidote\\nepidotes\\nepidotic\\nepidural\\nepifauna\\nepifaunae\\nepifaunas\\nepifocal\\nepigeal\\nepigean\\nepigene\\nepigenic\\nepigeous\\nepigon\\nepigone\\nepigones\\nepigoni\\nepigonic\\nepigons\\nepigonus\\nepigram\\nepigrammatic\\nepigrams\\nepigraph\\nepigraphs\\nepigynies\\nepigyny\\nepilepsies\\nepilepsy\\nepileptic\\nepileptics\\nepilog\\nepilogs\\nepilogue\\nepilogued\\nepilogues\\nepiloguing\\nepimer\\nepimere\\nepimeres\\nepimeric\\nepimers\\nepimysia\\nepinaoi\\nepinaos\\nepinasties\\nepinasty\\nepiphanies\\nepiphany\\nepiphyte\\nepiphytes\\nepiscia\\nepiscias\\nepiscopal\\nepiscope\\nepiscopes\\nepisode\\nepisodes\\nepisodic\\nepisomal\\nepisome\\nepisomes\\nepistasies\\nepistasy\\nepistaxis\\nepistle\\nepistler\\nepistlers\\nepistles\\nepistyle\\nepistyles\\nepitaph\\nepitaphs\\nepitases\\nepitasis\\nepitaxies\\nepitaxy\\nepithet\\nepithets\\nepitome\\nepitomes\\nepitomic\\nepitomize\\nepitomized\\nepitomizes\\nepitomizing\\nepizoa\\nepizoic\\nepizoism\\nepizoisms\\nepizoite\\nepizoites\\nepizoon\\nepizooties\\nepizooty\\nepoch\\nepochal\\nepochs\\nepode\\nepodes\\neponym\\neponymic\\neponymies\\neponyms\\neponymy\\nepopee\\nepopees\\nepopoeia\\nepopoeias\\nepos\\neposes\\nepoxide\\nepoxides\\nepoxied\\nepoxies\\nepoxy\\nepoxyed\\nepoxying\\nepsilon\\nepsilons\\nequabilities\\nequability\\nequable\\nequably\\nequal\\nequaled\\nequaling\\nequalise\\nequalised\\nequalises\\nequalising\\nequalities\\nequality\\nequalize\\nequalized\\nequalizes\\nequalizing\\nequalled\\nequalling\\nequally\\nequals\\nequanimities\\nequanimity\\nequate\\nequated\\nequates\\nequating\\nequation\\nequations\\nequator\\nequatorial\\nequators\\nequerries\\nequerry\\nequestrian\\nequestrians\\nequilateral\\nequilibrium\\nequine\\nequinely\\nequines\\nequinities\\nequinity\\nequinox\\nequinoxes\\nequip\\nequipage\\nequipages\\nequipment\\nequipments\\nequipped\\nequipper\\nequippers\\nequipping\\nequips\\nequiseta\\nequitable\\nequitant\\nequites\\nequities\\nequity\\nequivalence\\nequivalences\\nequivalent\\nequivalents\\nequivocal\\nequivocate\\nequivocated\\nequivocates\\nequivocating\\nequivocation\\nequivocations\\nequivoke\\nequivokes\\ner\\nera\\neradiate\\neradiated\\neradiates\\neradiating\\neradicable\\neradicate\\neradicated\\neradicates\\neradicating\\neras\\nerase\\nerased\\neraser\\nerasers\\nerases\\nerasing\\nerasion\\nerasions\\nerasure\\nerasures\\nerbium\\nerbiums\\nere\\nerect\\nerected\\nerecter\\nerecters\\nerectile\\nerecting\\nerection\\nerections\\nerective\\nerectly\\nerector\\nerectors\\nerects\\nerelong\\neremite\\neremites\\neremitic\\neremuri\\neremurus\\nerenow\\nerepsin\\nerepsins\\nerethic\\nerethism\\nerethisms\\nerewhile\\nerg\\nergastic\\nergate\\nergates\\nergo\\nergodic\\nergot\\nergotic\\nergotism\\nergotisms\\nergots\\nergs\\nerica\\nericas\\nericoid\\nerigeron\\nerigerons\\neringo\\neringoes\\neringos\\neristic\\neristics\\nerlking\\nerlkings\\nermine\\nermined\\nermines\\nern\\nerne\\nernes\\nerns\\nerode\\neroded\\nerodent\\nerodes\\nerodible\\neroding\\nerogenic\\neros\\nerose\\nerosely\\neroses\\nerosible\\nerosion\\nerosions\\nerosive\\nerotic\\nerotica\\nerotical\\nerotically\\nerotics\\nerotism\\nerotisms\\nerr\\nerrancies\\nerrancy\\nerrand\\nerrands\\nerrant\\nerrantly\\nerrantries\\nerrantry\\nerrants\\nerrata\\nerratas\\nerratic\\nerratically\\nerratum\\nerred\\nerrhine\\nerrhines\\nerring\\nerringly\\nerroneous\\nerroneously\\nerror\\nerrors\\nerrs\\ners\\nersatz\\nersatzes\\nerses\\nerst\\nerstwhile\\neruct\\neructate\\neructated\\neructates\\neructating\\neructed\\neructing\\neructs\\nerudite\\nerudition\\neruditions\\nerugo\\nerugos\\nerumpent\\nerupt\\nerupted\\nerupting\\neruption\\neruptions\\neruptive\\neruptives\\nerupts\\nervil\\nervils\\neryngo\\neryngoes\\neryngos\\nerythema\\nerythemas\\nerythematous\\nerythrocytosis\\nerythron\\nerythrons\\nes\\nescalade\\nescaladed\\nescalades\\nescalading\\nescalate\\nescalated\\nescalates\\nescalating\\nescalation\\nescalations\\nescalator\\nescalators\\nescallop\\nescalloped\\nescalloping\\nescallops\\nescalop\\nescaloped\\nescaloping\\nescalops\\nescapade\\nescapades\\nescape\\nescaped\\nescapee\\nescapees\\nescaper\\nescapers\\nescapes\\nescaping\\nescapism\\nescapisms\\nescapist\\nescapists\\nescar\\nescargot\\nescargots\\nescarole\\nescaroles\\nescarp\\nescarped\\nescarping\\nescarpment\\nescarpments\\nescarps\\nescars\\neschalot\\neschalots\\neschar\\neschars\\nescheat\\nescheated\\nescheating\\nescheats\\neschew\\neschewal\\neschewals\\neschewed\\neschewing\\neschews\\nescolar\\nescolars\\nescort\\nescorted\\nescorting\\nescorts\\nescot\\nescoted\\nescoting\\nescots\\nescrow\\nescrowed\\nescrowing\\nescrows\\nescuage\\nescuages\\nescudo\\nescudos\\nesculent\\nesculents\\neserine\\neserines\\neses\\neskar\\neskars\\nesker\\neskers\\nesophagi\\nesophagus\\nesoteric\\nespalier\\nespaliered\\nespaliering\\nespaliers\\nespanol\\nespanoles\\nesparto\\nespartos\\nespecial\\nespecially\\nespial\\nespials\\nespied\\nespiegle\\nespies\\nespionage\\nespionages\\nespousal\\nespousals\\nespouse\\nespoused\\nespouser\\nespousers\\nespouses\\nespousing\\nespresso\\nespressos\\nesprit\\nesprits\\nespy\\nespying\\nesquire\\nesquired\\nesquires\\nesquiring\\ness\\nessay\\nessayed\\nessayer\\nessayers\\nessaying\\nessayist\\nessayists\\nessays\\nessence\\nessences\\nessential\\nessentially\\nesses\\nessoin\\nessoins\\nessonite\\nessonites\\nestablish\\nestablished\\nestablishes\\nestablishing\\nestablishment\\nestablishments\\nestancia\\nestancias\\nestate\\nestated\\nestates\\nestating\\nesteem\\nesteemed\\nesteeming\\nesteems\\nester\\nesterase\\nesterases\\nesterified\\nesterifies\\nesterify\\nesterifying\\nesters\\nestheses\\nesthesia\\nesthesias\\nesthesis\\nesthesises\\nesthete\\nesthetes\\nesthetic\\nestimable\\nestimate\\nestimated\\nestimates\\nestimating\\nestimation\\nestimations\\nestimator\\nestimators\\nestival\\nestivate\\nestivated\\nestivates\\nestivating\\nestop\\nestopped\\nestoppel\\nestoppels\\nestopping\\nestops\\nestovers\\nestragon\\nestragons\\nestral\\nestrange\\nestranged\\nestrangement\\nestrangements\\nestranges\\nestranging\\nestray\\nestrayed\\nestraying\\nestrays\\nestreat\\nestreated\\nestreating\\nestreats\\nestrin\\nestrins\\nestriol\\nestriols\\nestrogen\\nestrogens\\nestrone\\nestrones\\nestrous\\nestrual\\nestrum\\nestrums\\nestrus\\nestruses\\nestuaries\\nestuary\\nesurient\\net\\neta\\netagere\\netageres\\netamin\\netamine\\netamines\\netamins\\netape\\netapes\\netas\\netatism\\netatisms\\netatist\\netatists\\netcetera\\netceteras\\netch\\netched\\netcher\\netchers\\netches\\netching\\netchings\\neternal\\neternally\\neternals\\neterne\\neternise\\neternised\\neternises\\neternising\\neternities\\neternity\\neternize\\neternized\\neternizes\\neternizing\\netesian\\netesians\\neth\\nethane\\nethanes\\nethanol\\nethanols\\nethene\\nethenes\\nether\\nethereal\\netheric\\netherified\\netherifies\\netherify\\netherifying\\netherish\\netherize\\netherized\\netherizes\\netherizing\\nethers\\nethic\\nethical\\nethically\\nethicals\\nethician\\nethicians\\nethicist\\nethicists\\nethicize\\nethicized\\nethicizes\\nethicizing\\nethics\\nethinyl\\nethinyls\\nethion\\nethions\\nethmoid\\nethmoids\\nethnarch\\nethnarchs\\nethnic\\nethnical\\nethnicities\\nethnicity\\nethnics\\nethnologic\\nethnological\\nethnologies\\nethnology\\nethnos\\nethnoses\\nethologies\\nethology\\nethos\\nethoses\\nethoxy\\nethoxyl\\nethoxyls\\neths\\nethyl\\nethylate\\nethylated\\nethylates\\nethylating\\nethylene\\nethylenes\\nethylic\\nethyls\\nethyne\\nethynes\\nethynyl\\nethynyls\\netiolate\\netiolated\\netiolates\\netiolating\\netiologies\\netiology\\netna\\netnas\\netoile\\netoiles\\netude\\netudes\\netui\\netuis\\netwee\\netwees\\netyma\\netymological\\netymologist\\netymologists\\netymon\\netymons\\neucaine\\neucaines\\neucalypt\\neucalypti\\neucalypts\\neucalyptus\\neucalyptuses\\neucharis\\neucharises\\neucharistic\\neuchre\\neuchred\\neuchres\\neuchring\\neuclase\\neuclases\\neucrite\\neucrites\\neucritic\\neudaemon\\neudaemons\\neudemon\\neudemons\\neugenic\\neugenics\\neugenist\\neugenists\\neugenol\\neugenols\\neuglena\\neuglenas\\neulachan\\neulachans\\neulachon\\neulachons\\neulogia\\neulogiae\\neulogias\\neulogies\\neulogise\\neulogised\\neulogises\\neulogising\\neulogist\\neulogistic\\neulogists\\neulogium\\neulogiums\\neulogize\\neulogized\\neulogizes\\neulogizing\\neulogy\\neunuch\\neunuchs\\neuonymus\\neuonymuses\\neupatrid\\neupatridae\\neupatrids\\neupepsia\\neupepsias\\neupepsies\\neupepsy\\neupeptic\\neuphemism\\neuphemisms\\neuphemistic\\neuphenic\\neuphonic\\neuphonies\\neuphonious\\neuphony\\neuphoria\\neuphorias\\neuphoric\\neuphotic\\neuphrasies\\neuphrasy\\neuphroe\\neuphroes\\neuphuism\\neuphuisms\\neuphuist\\neuphuists\\neuploid\\neuploidies\\neuploids\\neuploidy\\neupnea\\neupneas\\neupneic\\neupnoea\\neupnoeas\\neupnoeic\\neureka\\neuripi\\neuripus\\neuro\\neuropium\\neuropiums\\neuros\\neurythmies\\neurythmy\\neustacies\\neustacy\\neustatic\\neustele\\neusteles\\neutaxies\\neutaxy\\neutectic\\neutectics\\neuthanasia\\neuthanasias\\neutrophies\\neutrophy\\neuxenite\\neuxenites\\nevacuant\\nevacuants\\nevacuate\\nevacuated\\nevacuates\\nevacuating\\nevacuation\\nevacuations\\nevacuee\\nevacuees\\nevadable\\nevade\\nevaded\\nevader\\nevaders\\nevades\\nevadible\\nevading\\nevaluable\\nevaluate\\nevaluated\\nevaluates\\nevaluating\\nevaluation\\nevaluations\\nevaluator\\nevaluators\\nevanesce\\nevanesced\\nevanesces\\nevanescing\\nevangel\\nevangelical\\nevangelism\\nevangelisms\\nevangelist\\nevangelistic\\nevangelists\\nevangels\\nevanish\\nevanished\\nevanishes\\nevanishing\\nevaporate\\nevaporated\\nevaporates\\nevaporating\\nevaporation\\nevaporations\\nevaporative\\nevaporator\\nevaporators\\nevasion\\nevasions\\nevasive\\nevasiveness\\nevasivenesses\\neve\\nevection\\nevections\\neven\\nevened\\nevener\\neveners\\nevenest\\nevenfall\\nevenfalls\\nevening\\nevenings\\nevenly\\nevenness\\nevennesses\\nevens\\nevensong\\nevensongs\\nevent\\neventful\\neventide\\neventides\\nevents\\neventual\\neventualities\\neventuality\\neventually\\never\\nevergreen\\nevergreens\\neverlasting\\nevermore\\neversion\\neversions\\nevert\\neverted\\neverting\\nevertor\\nevertors\\neverts\\nevery\\neverybody\\neveryday\\neveryman\\neverymen\\neveryone\\neverything\\neveryway\\neverywhere\\neves\\nevict\\nevicted\\nevictee\\nevictees\\nevicting\\neviction\\nevictions\\nevictor\\nevictors\\nevicts\\nevidence\\nevidenced\\nevidences\\nevidencing\\nevident\\nevidently\\nevil\\nevildoer\\nevildoers\\neviler\\nevilest\\neviller\\nevillest\\nevilly\\nevilness\\nevilnesses\\nevils\\nevince\\nevinced\\nevinces\\nevincing\\nevincive\\neviscerate\\neviscerated\\neviscerates\\neviscerating\\nevisceration\\neviscerations\\nevitable\\nevite\\nevited\\nevites\\neviting\\nevocable\\nevocation\\nevocations\\nevocative\\nevocator\\nevocators\\nevoke\\nevoked\\nevoker\\nevokers\\nevokes\\nevoking\\nevolute\\nevolutes\\nevolution\\nevolutionary\\nevolutions\\nevolve\\nevolved\\nevolver\\nevolvers\\nevolves\\nevolving\\nevonymus\\nevonymuses\\nevulsion\\nevulsions\\nevzone\\nevzones\\newe\\newer\\newers\\newes\\nex\\nexacerbate\\nexacerbated\\nexacerbates\\nexacerbating\\nexact\\nexacta\\nexactas\\nexacted\\nexacter\\nexacters\\nexactest\\nexacting\\nexaction\\nexactions\\nexactitude\\nexactitudes\\nexactly\\nexactness\\nexactnesses\\nexactor\\nexactors\\nexacts\\nexaggerate\\nexaggerated\\nexaggeratedly\\nexaggerates\\nexaggerating\\nexaggeration\\nexaggerations\\nexaggerator\\nexaggerators\\nexalt\\nexaltation\\nexaltations\\nexalted\\nexalter\\nexalters\\nexalting\\nexalts\\nexam\\nexamen\\nexamens\\nexamination\\nexaminations\\nexamine\\nexamined\\nexaminee\\nexaminees\\nexaminer\\nexaminers\\nexamines\\nexamining\\nexample\\nexampled\\nexamples\\nexampling\\nexams\\nexanthem\\nexanthems\\nexarch\\nexarchal\\nexarchies\\nexarchs\\nexarchy\\nexasperate\\nexasperated\\nexasperates\\nexasperating\\nexasperation\\nexasperations\\nexcavate\\nexcavated\\nexcavates\\nexcavating\\nexcavation\\nexcavations\\nexcavator\\nexcavators\\nexceed\\nexceeded\\nexceeder\\nexceeders\\nexceeding\\nexceedingly\\nexceeds\\nexcel\\nexcelled\\nexcellence\\nexcellences\\nexcellency\\nexcellent\\nexcellently\\nexcelling\\nexcels\\nexcept\\nexcepted\\nexcepting\\nexception\\nexceptional\\nexceptionalally\\nexceptions\\nexcepts\\nexcerpt\\nexcerpted\\nexcerpting\\nexcerpts\\nexcess\\nexcesses\\nexcessive\\nexcessively\\nexchange\\nexchangeable\\nexchanged\\nexchanges\\nexchanging\\nexcide\\nexcided\\nexcides\\nexciding\\nexciple\\nexciples\\nexcise\\nexcised\\nexcises\\nexcising\\nexcision\\nexcisions\\nexcitabilities\\nexcitability\\nexcitant\\nexcitants\\nexcitation\\nexcitations\\nexcite\\nexcited\\nexcitedly\\nexcitement\\nexcitements\\nexciter\\nexciters\\nexcites\\nexciting\\nexciton\\nexcitons\\nexcitor\\nexcitors\\nexclaim\\nexclaimed\\nexclaiming\\nexclaims\\nexclamation\\nexclamations\\nexclamatory\\nexclave\\nexclaves\\nexclude\\nexcluded\\nexcluder\\nexcluders\\nexcludes\\nexcluding\\nexclusion\\nexclusions\\nexclusive\\nexclusively\\nexclusiveness\\nexclusivenesses\\nexcommunicate\\nexcommunicated\\nexcommunicates\\nexcommunicating\\nexcommunication\\nexcommunications\\nexcrement\\nexcremental\\nexcrements\\nexcreta\\nexcretal\\nexcrete\\nexcreted\\nexcreter\\nexcreters\\nexcretes\\nexcreting\\nexcretion\\nexcretions\\nexcretory\\nexcruciating\\nexcruciatingly\\nexculpate\\nexculpated\\nexculpates\\nexculpating\\nexcursion\\nexcursions\\nexcuse\\nexcused\\nexcuser\\nexcusers\\nexcuses\\nexcusing\\nexeat\\nexec\\nexecrate\\nexecrated\\nexecrates\\nexecrating\\nexecs\\nexecutable\\nexecute\\nexecuted\\nexecuter\\nexecuters\\nexecutes\\nexecuting\\nexecution\\nexecutioner\\nexecutioners\\nexecutions\\nexecutive\\nexecutives\\nexecutor\\nexecutors\\nexecutrix\\nexecutrixes\\nexedra\\nexedrae\\nexegeses\\nexegesis\\nexegete\\nexegetes\\nexegetic\\nexempla\\nexemplar\\nexemplars\\nexemplary\\nexemplification\\nexemplifications\\nexemplified\\nexemplifies\\nexemplify\\nexemplifying\\nexemplum\\nexempt\\nexempted\\nexempting\\nexemption\\nexemptions\\nexempts\\nexequial\\nexequies\\nexequy\\nexercise\\nexercised\\nexerciser\\nexercisers\\nexercises\\nexercising\\nexergual\\nexergue\\nexergues\\nexert\\nexerted\\nexerting\\nexertion\\nexertions\\nexertive\\nexerts\\nexes\\nexhalant\\nexhalants\\nexhalation\\nexhalations\\nexhale\\nexhaled\\nexhalent\\nexhalents\\nexhales\\nexhaling\\nexhaust\\nexhausted\\nexhausting\\nexhaustion\\nexhaustions\\nexhaustive\\nexhausts\\nexhibit\\nexhibited\\nexhibiting\\nexhibition\\nexhibitions\\nexhibitor\\nexhibitors\\nexhibits\\nexhilarate\\nexhilarated\\nexhilarates\\nexhilarating\\nexhilaration\\nexhilarations\\nexhort\\nexhortation\\nexhortations\\nexhorted\\nexhorter\\nexhorters\\nexhorting\\nexhorts\\nexhumation\\nexhumations\\nexhume\\nexhumed\\nexhumer\\nexhumers\\nexhumes\\nexhuming\\nexigence\\nexigences\\nexigencies\\nexigency\\nexigent\\nexigible\\nexiguities\\nexiguity\\nexiguous\\nexile\\nexiled\\nexiles\\nexilian\\nexilic\\nexiling\\neximious\\nexine\\nexines\\nexist\\nexisted\\nexistence\\nexistences\\nexistent\\nexistents\\nexisting\\nexists\\nexit\\nexited\\nexiting\\nexits\\nexocarp\\nexocarps\\nexocrine\\nexocrines\\nexoderm\\nexoderms\\nexodoi\\nexodos\\nexodus\\nexoduses\\nexoergic\\nexogamic\\nexogamies\\nexogamy\\nexogen\\nexogens\\nexonerate\\nexonerated\\nexonerates\\nexonerating\\nexoneration\\nexonerations\\nexorable\\nexorbitant\\nexorcise\\nexorcised\\nexorcises\\nexorcising\\nexorcism\\nexorcisms\\nexorcist\\nexorcists\\nexorcize\\nexorcized\\nexorcizes\\nexorcizing\\nexordia\\nexordial\\nexordium\\nexordiums\\nexosmic\\nexosmose\\nexosmoses\\nexospore\\nexospores\\nexoteric\\nexotic\\nexotica\\nexotically\\nexoticism\\nexoticisms\\nexotics\\nexotism\\nexotisms\\nexotoxic\\nexotoxin\\nexotoxins\\nexpand\\nexpanded\\nexpander\\nexpanders\\nexpanding\\nexpands\\nexpanse\\nexpanses\\nexpansion\\nexpansions\\nexpansive\\nexpansively\\nexpansiveness\\nexpansivenesses\\nexpatriate\\nexpatriated\\nexpatriates\\nexpatriating\\nexpect\\nexpectancies\\nexpectancy\\nexpectant\\nexpectantly\\nexpectation\\nexpectations\\nexpected\\nexpecting\\nexpects\\nexpedient\\nexpedients\\nexpedious\\nexpedite\\nexpedited\\nexpediter\\nexpediters\\nexpedites\\nexpediting\\nexpedition\\nexpeditions\\nexpeditious\\nexpel\\nexpelled\\nexpellee\\nexpellees\\nexpeller\\nexpellers\\nexpelling\\nexpels\\nexpend\\nexpended\\nexpender\\nexpenders\\nexpendible\\nexpending\\nexpenditure\\nexpenditures\\nexpends\\nexpense\\nexpensed\\nexpenses\\nexpensing\\nexpensive\\nexpensively\\nexperience\\nexperiences\\nexperiment\\nexperimental\\nexperimentation\\nexperimentations\\nexperimented\\nexperimenter\\nexperimenters\\nexperimenting\\nexperiments\\nexpert\\nexperted\\nexperting\\nexpertise\\nexpertises\\nexpertly\\nexpertness\\nexpertnesses\\nexperts\\nexpiable\\nexpiate\\nexpiated\\nexpiates\\nexpiating\\nexpiation\\nexpiations\\nexpiator\\nexpiators\\nexpiration\\nexpirations\\nexpire\\nexpired\\nexpirer\\nexpirers\\nexpires\\nexpiries\\nexpiring\\nexpiry\\nexplain\\nexplainable\\nexplained\\nexplaining\\nexplains\\nexplanation\\nexplanations\\nexplanatory\\nexplant\\nexplanted\\nexplanting\\nexplants\\nexpletive\\nexpletives\\nexplicable\\nexplicably\\nexplicit\\nexplicitly\\nexplicitness\\nexplicitnesses\\nexplicits\\nexplode\\nexploded\\nexploder\\nexploders\\nexplodes\\nexploding\\nexploit\\nexploitation\\nexploitations\\nexploited\\nexploiting\\nexploits\\nexploration\\nexplorations\\nexploratory\\nexplore\\nexplored\\nexplorer\\nexplorers\\nexplores\\nexploring\\nexplosion\\nexplosions\\nexplosive\\nexplosively\\nexplosives\\nexpo\\nexponent\\nexponential\\nexponentially\\nexponents\\nexport\\nexportation\\nexportations\\nexported\\nexporter\\nexporters\\nexporting\\nexports\\nexpos\\nexposal\\nexposals\\nexpose\\nexposed\\nexposer\\nexposers\\nexposes\\nexposing\\nexposit\\nexposited\\nexpositing\\nexposition\\nexpositions\\nexposits\\nexposure\\nexposures\\nexpound\\nexpounded\\nexpounding\\nexpounds\\nexpress\\nexpressed\\nexpresses\\nexpressible\\nexpressibly\\nexpressing\\nexpression\\nexpressionless\\nexpressions\\nexpressive\\nexpressiveness\\nexpressivenesses\\nexpressly\\nexpressway\\nexpressways\\nexpulse\\nexpulsed\\nexpulses\\nexpulsing\\nexpulsion\\nexpulsions\\nexpunge\\nexpunged\\nexpunger\\nexpungers\\nexpunges\\nexpunging\\nexpurgate\\nexpurgated\\nexpurgates\\nexpurgating\\nexpurgation\\nexpurgations\\nexquisite\\nexscind\\nexscinded\\nexscinding\\nexscinds\\nexsecant\\nexsecants\\nexsect\\nexsected\\nexsecting\\nexsects\\nexsert\\nexserted\\nexserting\\nexserts\\nextant\\nextemporaneous\\nextemporaneously\\nextend\\nextendable\\nextended\\nextender\\nextenders\\nextendible\\nextending\\nextends\\nextension\\nextensions\\nextensive\\nextensively\\nextensor\\nextensors\\nextent\\nextents\\nextenuate\\nextenuated\\nextenuates\\nextenuating\\nextenuation\\nextenuations\\nexterior\\nexteriors\\nexterminate\\nexterminated\\nexterminates\\nexterminating\\nextermination\\nexterminations\\nexterminator\\nexterminators\\nextern\\nexternal\\nexternally\\nexternals\\nexterne\\nexternes\\nexterns\\nextinct\\nextincted\\nextincting\\nextinction\\nextinctions\\nextincts\\nextinguish\\nextinguishable\\nextinguished\\nextinguisher\\nextinguishers\\nextinguishes\\nextinguishing\\nextirpate\\nextirpated\\nextirpates\\nextirpating\\nextol\\nextoll\\nextolled\\nextoller\\nextollers\\nextolling\\nextolls\\nextols\\nextort\\nextorted\\nextorter\\nextorters\\nextorting\\nextortion\\nextortioner\\nextortioners\\nextortionist\\nextortionists\\nextortions\\nextorts\\nextra\\nextracampus\\nextraclassroom\\nextracommunity\\nextraconstitutional\\nextracontinental\\nextract\\nextractable\\nextracted\\nextracting\\nextraction\\nextractions\\nextractor\\nextractors\\nextracts\\nextracurricular\\nextradepartmental\\nextradiocesan\\nextradite\\nextradited\\nextradites\\nextraditing\\nextradition\\nextraditions\\nextrados\\nextradoses\\nextrafamilial\\nextragalactic\\nextragovernmental\\nextrahuman\\nextralegal\\nextramarital\\nextranational\\nextraneous\\nextraneously\\nextraordinarily\\nextraordinary\\nextraplanetary\\nextrapyramidal\\nextras\\nextrascholastic\\nextrasensory\\nextraterrestrial\\nextravagance\\nextravagances\\nextravagant\\nextravagantly\\nextravaganza\\nextravaganzas\\nextravasate\\nextravasated\\nextravasates\\nextravasating\\nextravasation\\nextravasations\\nextravehicular\\nextraversion\\nextraversions\\nextravert\\nextraverted\\nextraverts\\nextrema\\nextreme\\nextremely\\nextremer\\nextremes\\nextremest\\nextremities\\nextremity\\nextremum\\nextricable\\nextricate\\nextricated\\nextricates\\nextricating\\nextrication\\nextrications\\nextrorse\\nextrovert\\nextroverts\\nextrude\\nextruded\\nextruder\\nextruders\\nextrudes\\nextruding\\nexuberance\\nexuberances\\nexuberant\\nexuberantly\\nexudate\\nexudates\\nexudation\\nexudations\\nexude\\nexuded\\nexudes\\nexuding\\nexult\\nexultant\\nexulted\\nexulting\\nexults\\nexurb\\nexurban\\nexurbia\\nexurbias\\nexurbs\\nexuvia\\nexuviae\\nexuvial\\nexuviate\\nexuviated\\nexuviates\\nexuviating\\nexuvium\\neyas\\neyases\\neye\\neyeable\\neyeball\\neyeballed\\neyeballing\\neyeballs\\neyebeam\\neyebeams\\neyebolt\\neyebolts\\neyebrow\\neyebrows\\neyecup\\neyecups\\neyed\\neyedness\\neyednesses\\neyedropper\\neyedroppers\\neyeful\\neyefuls\\neyeglass\\neyeglasses\\neyehole\\neyeholes\\neyehook\\neyehooks\\neyeing\\neyelash\\neyelashes\\neyeless\\neyelet\\neyelets\\neyeletted\\neyeletting\\neyelid\\neyelids\\neyelike\\neyeliner\\neyeliners\\neyen\\neyepiece\\neyepieces\\neyepoint\\neyepoints\\neyer\\neyers\\neyes\\neyeshade\\neyeshades\\neyeshot\\neyeshots\\neyesight\\neyesights\\neyesome\\neyesore\\neyesores\\neyespot\\neyespots\\neyestalk\\neyestalks\\neyestone\\neyestones\\neyestrain\\neyestrains\\neyeteeth\\neyetooth\\neyewash\\neyewashes\\neyewater\\neyewaters\\neyewink\\neyewinks\\neyewitness\\neying\\neyne\\neyra\\neyras\\neyre\\neyres\\neyrie\\neyries\\neyrir\\neyry\\nfa\\nfable\\nfabled\\nfabler\\nfablers\\nfables\\nfabliau\\nfabliaux\\nfabling\\nfabric\\nfabricate\\nfabricated\\nfabricates\\nfabricating\\nfabrication\\nfabrications\\nfabrics\\nfabular\\nfabulist\\nfabulists\\nfabulous\\nfabulously\\nfacade\\nfacades\\nface\\nfaceable\\nfaced\\nfacedown\\nfaceless\\nfacelessness\\nfacelessnesses\\nfacer\\nfacers\\nfaces\\nfacesheet\\nfacesheets\\nfacet\\nfacete\\nfaceted\\nfacetely\\nfacetiae\\nfaceting\\nfacetious\\nfacetiously\\nfacets\\nfacetted\\nfacetting\\nfaceup\\nfacia\\nfacial\\nfacially\\nfacials\\nfacias\\nfaciend\\nfaciends\\nfacies\\nfacile\\nfacilely\\nfacilitate\\nfacilitated\\nfacilitates\\nfacilitating\\nfacilitator\\nfacilitators\\nfacilities\\nfacility\\nfacing\\nfacings\\nfacsimile\\nfacsimiles\\nfact\\nfactful\\nfaction\\nfactional\\nfactionalism\\nfactionalisms\\nfactions\\nfactious\\nfactitious\\nfactor\\nfactored\\nfactories\\nfactoring\\nfactors\\nfactory\\nfactotum\\nfactotums\\nfacts\\nfactual\\nfactually\\nfacture\\nfactures\\nfacula\\nfaculae\\nfacular\\nfaculties\\nfaculty\\nfad\\nfadable\\nfaddier\\nfaddiest\\nfaddish\\nfaddism\\nfaddisms\\nfaddist\\nfaddists\\nfaddy\\nfade\\nfadeaway\\nfadeaways\\nfaded\\nfadedly\\nfadeless\\nfader\\nfaders\\nfades\\nfadge\\nfadged\\nfadges\\nfadging\\nfading\\nfadings\\nfado\\nfados\\nfads\\nfaecal\\nfaeces\\nfaena\\nfaenas\\nfaerie\\nfaeries\\nfaery\\nfag\\nfagged\\nfagging\\nfagin\\nfagins\\nfagot\\nfagoted\\nfagoter\\nfagoters\\nfagoting\\nfagotings\\nfagots\\nfags\\nfahlband\\nfahlbands\\nfahrenheit\\nfaience\\nfaiences\\nfail\\nfailed\\nfailing\\nfailings\\nfaille\\nfailles\\nfails\\nfailure\\nfailures\\nfain\\nfaineant\\nfaineants\\nfainer\\nfainest\\nfaint\\nfainted\\nfainter\\nfainters\\nfaintest\\nfainthearted\\nfainting\\nfaintish\\nfaintly\\nfaintness\\nfaintnesses\\nfaints\\nfair\\nfaired\\nfairer\\nfairest\\nfairground\\nfairgrounds\\nfairies\\nfairing\\nfairings\\nfairish\\nfairlead\\nfairleads\\nfairly\\nfairness\\nfairnesses\\nfairs\\nfairway\\nfairways\\nfairy\\nfairyism\\nfairyisms\\nfairyland\\nfairylands\\nfaith\\nfaithed\\nfaithful\\nfaithfully\\nfaithfulness\\nfaithfulnesses\\nfaithfuls\\nfaithing\\nfaithless\\nfaithlessly\\nfaithlessness\\nfaithlessnesses\\nfaiths\\nfaitour\\nfaitours\\nfake\\nfaked\\nfakeer\\nfakeers\\nfaker\\nfakeries\\nfakers\\nfakery\\nfakes\\nfaking\\nfakir\\nfakirs\\nfalbala\\nfalbalas\\nfalcate\\nfalcated\\nfalchion\\nfalchions\\nfalcon\\nfalconer\\nfalconers\\nfalconet\\nfalconets\\nfalconries\\nfalconry\\nfalcons\\nfalderal\\nfalderals\\nfalderol\\nfalderols\\nfall\\nfallacies\\nfallacious\\nfallacy\\nfallal\\nfallals\\nfallback\\nfallbacks\\nfallen\\nfaller\\nfallers\\nfallfish\\nfallfishes\\nfallible\\nfallibly\\nfalling\\nfalloff\\nfalloffs\\nfallout\\nfallouts\\nfallow\\nfallowed\\nfallowing\\nfallows\\nfalls\\nfalse\\nfalsehood\\nfalsehoods\\nfalsely\\nfalseness\\nfalsenesses\\nfalser\\nfalsest\\nfalsetto\\nfalsettos\\nfalsie\\nfalsies\\nfalsification\\nfalsifications\\nfalsified\\nfalsifies\\nfalsify\\nfalsifying\\nfalsities\\nfalsity\\nfaltboat\\nfaltboats\\nfalter\\nfaltered\\nfalterer\\nfalterers\\nfaltering\\nfalters\\nfame\\nfamed\\nfameless\\nfames\\nfamiglietti\\nfamilial\\nfamiliar\\nfamiliarities\\nfamiliarity\\nfamiliarize\\nfamiliarized\\nfamiliarizes\\nfamiliarizing\\nfamiliarly\\nfamiliars\\nfamilies\\nfamily\\nfamine\\nfamines\\nfaming\\nfamish\\nfamished\\nfamishes\\nfamishing\\nfamous\\nfamously\\nfamuli\\nfamulus\\nfan\\nfanatic\\nfanatical\\nfanaticism\\nfanaticisms\\nfanatics\\nfancied\\nfancier\\nfanciers\\nfancies\\nfanciest\\nfanciful\\nfancifully\\nfancily\\nfancy\\nfancying\\nfandango\\nfandangos\\nfandom\\nfandoms\\nfane\\nfanega\\nfanegada\\nfanegadas\\nfanegas\\nfanes\\nfanfare\\nfanfares\\nfanfaron\\nfanfarons\\nfanfold\\nfanfolds\\nfang\\nfanga\\nfangas\\nfanged\\nfangless\\nfanglike\\nfangs\\nfanion\\nfanions\\nfanjet\\nfanjets\\nfanlight\\nfanlights\\nfanlike\\nfanned\\nfanner\\nfannies\\nfanning\\nfanny\\nfano\\nfanon\\nfanons\\nfanos\\nfans\\nfantail\\nfantails\\nfantasia\\nfantasias\\nfantasie\\nfantasied\\nfantasies\\nfantasize\\nfantasized\\nfantasizes\\nfantasizing\\nfantasm\\nfantasms\\nfantast\\nfantastic\\nfantastical\\nfantastically\\nfantasts\\nfantasy\\nfantasying\\nfantod\\nfantods\\nfantom\\nfantoms\\nfanum\\nfanums\\nfanwise\\nfanwort\\nfanworts\\nfaqir\\nfaqirs\\nfaquir\\nfaquirs\\nfar\\nfarad\\nfaradaic\\nfaraday\\nfaradays\\nfaradic\\nfaradise\\nfaradised\\nfaradises\\nfaradising\\nfaradism\\nfaradisms\\nfaradize\\nfaradized\\nfaradizes\\nfaradizing\\nfarads\\nfaraway\\nfarce\\nfarced\\nfarcer\\nfarcers\\nfarces\\nfarceur\\nfarceurs\\nfarci\\nfarcical\\nfarcie\\nfarcies\\nfarcing\\nfarcy\\nfard\\nfarded\\nfardel\\nfardels\\nfarding\\nfards\\nfare\\nfared\\nfarer\\nfarers\\nfares\\nfarewell\\nfarewelled\\nfarewelling\\nfarewells\\nfarfal\\nfarfals\\nfarfel\\nfarfels\\nfarfetched\\nfarina\\nfarinas\\nfaring\\nfarinha\\nfarinhas\\nfarinose\\nfarl\\nfarle\\nfarles\\nfarls\\nfarm\\nfarmable\\nfarmed\\nfarmer\\nfarmers\\nfarmhand\\nfarmhands\\nfarmhouse\\nfarmhouses\\nfarming\\nfarmings\\nfarmland\\nfarmlands\\nfarms\\nfarmstead\\nfarmsteads\\nfarmyard\\nfarmyards\\nfarnesol\\nfarnesols\\nfarness\\nfarnesses\\nfaro\\nfaros\\nfarouche\\nfarrago\\nfarragoes\\nfarrier\\nfarrieries\\nfarriers\\nfarriery\\nfarrow\\nfarrowed\\nfarrowing\\nfarrows\\nfarsighted\\nfarsightedness\\nfarsightednesses\\nfart\\nfarted\\nfarther\\nfarthermost\\nfarthest\\nfarthing\\nfarthings\\nfarting\\nfarts\\nfas\\nfasces\\nfascia\\nfasciae\\nfascial\\nfascias\\nfasciate\\nfascicle\\nfascicled\\nfascicles\\nfascinate\\nfascinated\\nfascinates\\nfascinating\\nfascination\\nfascinations\\nfascine\\nfascines\\nfascism\\nfascisms\\nfascist\\nfascistic\\nfascists\\nfash\\nfashed\\nfashes\\nfashing\\nfashion\\nfashionable\\nfashionably\\nfashioned\\nfashioning\\nfashions\\nfashious\\nfast\\nfastback\\nfastbacks\\nfastball\\nfastballs\\nfasted\\nfasten\\nfastened\\nfastener\\nfasteners\\nfastening\\nfastenings\\nfastens\\nfaster\\nfastest\\nfastiduous\\nfastiduously\\nfastiduousness\\nfastiduousnesses\\nfasting\\nfastings\\nfastness\\nfastnesses\\nfasts\\nfastuous\\nfat\\nfatal\\nfatalism\\nfatalisms\\nfatalist\\nfatalistic\\nfatalists\\nfatalities\\nfatality\\nfatally\\nfatback\\nfatbacks\\nfatbird\\nfatbirds\\nfate\\nfated\\nfateful\\nfatefully\\nfates\\nfathead\\nfatheads\\nfather\\nfathered\\nfatherhood\\nfatherhoods\\nfathering\\nfatherland\\nfatherlands\\nfatherless\\nfatherly\\nfathers\\nfathom\\nfathomable\\nfathomed\\nfathoming\\nfathomless\\nfathoms\\nfatidic\\nfatigue\\nfatigued\\nfatigues\\nfatiguing\\nfating\\nfatless\\nfatlike\\nfatling\\nfatlings\\nfatly\\nfatness\\nfatnesses\\nfats\\nfatso\\nfatsoes\\nfatsos\\nfatstock\\nfatstocks\\nfatted\\nfatten\\nfattened\\nfattener\\nfatteners\\nfattening\\nfattens\\nfatter\\nfattest\\nfattier\\nfatties\\nfattiest\\nfattily\\nfatting\\nfattish\\nfatty\\nfatuities\\nfatuity\\nfatuous\\nfatuously\\nfatuousness\\nfatuousnesses\\nfaubourg\\nfaubourgs\\nfaucal\\nfaucals\\nfauces\\nfaucet\\nfaucets\\nfaucial\\nfaugh\\nfauld\\nfaulds\\nfault\\nfaulted\\nfaultfinder\\nfaultfinders\\nfaultfinding\\nfaultfindings\\nfaultier\\nfaultiest\\nfaultily\\nfaulting\\nfaultless\\nfaultlessly\\nfaults\\nfaulty\\nfaun\\nfauna\\nfaunae\\nfaunal\\nfaunally\\nfaunas\\nfaunlike\\nfauns\\nfauteuil\\nfauteuils\\nfauve\\nfauves\\nfauvism\\nfauvisms\\nfauvist\\nfauvists\\nfavela\\nfavelas\\nfavonian\\nfavor\\nfavorable\\nfavorably\\nfavored\\nfavorer\\nfavorers\\nfavoring\\nfavorite\\nfavorites\\nfavoritism\\nfavoritisms\\nfavors\\nfavour\\nfavoured\\nfavourer\\nfavourers\\nfavouring\\nfavours\\nfavus\\nfavuses\\nfawn\\nfawned\\nfawner\\nfawners\\nfawnier\\nfawniest\\nfawning\\nfawnlike\\nfawns\\nfawny\\nfax\\nfaxed\\nfaxes\\nfaxing\\nfay\\nfayalite\\nfayalites\\nfayed\\nfaying\\nfays\\nfaze\\nfazed\\nfazenda\\nfazendas\\nfazes\\nfazing\\nfeal\\nfealties\\nfealty\\nfear\\nfeared\\nfearer\\nfearers\\nfearful\\nfearfuller\\nfearfullest\\nfearfully\\nfearing\\nfearless\\nfearlessly\\nfearlessness\\nfearlessnesses\\nfears\\nfearsome\\nfeasance\\nfeasances\\nfease\\nfeased\\nfeases\\nfeasibilities\\nfeasibility\\nfeasible\\nfeasibly\\nfeasing\\nfeast\\nfeasted\\nfeaster\\nfeasters\\nfeastful\\nfeasting\\nfeasts\\nfeat\\nfeater\\nfeatest\\nfeather\\nfeathered\\nfeatherier\\nfeatheriest\\nfeathering\\nfeatherless\\nfeathers\\nfeathery\\nfeatlier\\nfeatliest\\nfeatly\\nfeats\\nfeature\\nfeatured\\nfeatureless\\nfeatures\\nfeaturing\\nfeaze\\nfeazed\\nfeazes\\nfeazing\\nfebrific\\nfebrile\\nfecal\\nfeces\\nfecial\\nfecials\\nfeck\\nfeckless\\nfeckly\\nfecks\\nfecula\\nfeculae\\nfeculent\\nfecund\\nfecundities\\nfecundity\\nfed\\nfedayee\\nfedayeen\\nfederacies\\nfederacy\\nfederal\\nfederalism\\nfederalisms\\nfederalist\\nfederalists\\nfederally\\nfederals\\nfederate\\nfederated\\nfederates\\nfederating\\nfederation\\nfederations\\nfedora\\nfedoras\\nfeds\\nfee\\nfeeble\\nfeebleminded\\nfeeblemindedness\\nfeeblemindednesses\\nfeebleness\\nfeeblenesses\\nfeebler\\nfeeblest\\nfeeblish\\nfeebly\\nfeed\\nfeedable\\nfeedback\\nfeedbacks\\nfeedbag\\nfeedbags\\nfeedbox\\nfeedboxes\\nfeeder\\nfeeders\\nfeeding\\nfeedlot\\nfeedlots\\nfeeds\\nfeeing\\nfeel\\nfeeler\\nfeelers\\nfeeless\\nfeeling\\nfeelings\\nfeels\\nfees\\nfeet\\nfeetless\\nfeeze\\nfeezed\\nfeezes\\nfeezing\\nfeign\\nfeigned\\nfeigner\\nfeigners\\nfeigning\\nfeigns\\nfeint\\nfeinted\\nfeinting\\nfeints\\nfeirie\\nfeist\\nfeistier\\nfeistiest\\nfeists\\nfeisty\\nfeldspar\\nfeldspars\\nfelicitate\\nfelicitated\\nfelicitates\\nfelicitating\\nfelicitation\\nfelicitations\\nfelicities\\nfelicitous\\nfelicitously\\nfelicity\\nfelid\\nfelids\\nfeline\\nfelinely\\nfelines\\nfelinities\\nfelinity\\nfell\\nfella\\nfellable\\nfellah\\nfellaheen\\nfellahin\\nfellahs\\nfellas\\nfellatio\\nfellatios\\nfelled\\nfeller\\nfellers\\nfellest\\nfellies\\nfelling\\nfellness\\nfellnesses\\nfelloe\\nfelloes\\nfellow\\nfellowed\\nfellowing\\nfellowly\\nfellowman\\nfellowmen\\nfellows\\nfellowship\\nfellowships\\nfells\\nfelly\\nfelon\\nfelonies\\nfelonious\\nfelonries\\nfelonry\\nfelons\\nfelony\\nfelsite\\nfelsites\\nfelsitic\\nfelspar\\nfelspars\\nfelstone\\nfelstones\\nfelt\\nfelted\\nfelting\\nfeltings\\nfelts\\nfelucca\\nfeluccas\\nfelwort\\nfelworts\\nfemale\\nfemales\\nfeme\\nfemes\\nfeminacies\\nfeminacy\\nfeminie\\nfeminine\\nfeminines\\nfemininities\\nfemininity\\nfeminise\\nfeminised\\nfeminises\\nfeminising\\nfeminism\\nfeminisms\\nfeminist\\nfeminists\\nfeminities\\nfeminity\\nfeminization\\nfeminizations\\nfeminize\\nfeminized\\nfeminizes\\nfeminizing\\nfemme\\nfemmes\\nfemora\\nfemoral\\nfemur\\nfemurs\\nfen\\nfenagle\\nfenagled\\nfenagles\\nfenagling\\nfence\\nfenced\\nfencer\\nfencers\\nfences\\nfencible\\nfencibles\\nfencing\\nfencings\\nfend\\nfended\\nfender\\nfendered\\nfenders\\nfending\\nfends\\nfenestra\\nfenestrae\\nfennec\\nfennecs\\nfennel\\nfennels\\nfenny\\nfens\\nfeod\\nfeodaries\\nfeodary\\nfeods\\nfeoff\\nfeoffed\\nfeoffee\\nfeoffees\\nfeoffer\\nfeoffers\\nfeoffing\\nfeoffor\\nfeoffors\\nfeoffs\\nfer\\nferacities\\nferacity\\nferal\\nferbam\\nferbams\\nfere\\nferes\\nferetories\\nferetory\\nferia\\nferiae\\nferial\\nferias\\nferine\\nferities\\nferity\\nferlie\\nferlies\\nferly\\nfermata\\nfermatas\\nfermate\\nferment\\nfermentation\\nfermentations\\nfermented\\nfermenting\\nferments\\nfermi\\nfermion\\nfermions\\nfermis\\nfermium\\nfermiums\\nfern\\nferneries\\nfernery\\nfernier\\nferniest\\nfernless\\nfernlike\\nferns\\nferny\\nferocious\\nferociously\\nferociousness\\nferociousnesses\\nferocities\\nferocity\\nferrate\\nferrates\\nferrel\\nferreled\\nferreling\\nferrelled\\nferrelling\\nferrels\\nferreous\\nferret\\nferreted\\nferreter\\nferreters\\nferreting\\nferrets\\nferrety\\nferriage\\nferriages\\nferric\\nferried\\nferries\\nferrite\\nferrites\\nferritic\\nferritin\\nferritins\\nferrous\\nferrule\\nferruled\\nferrules\\nferruling\\nferrum\\nferrums\\nferry\\nferryboat\\nferryboats\\nferrying\\nferryman\\nferrymen\\nfertile\\nfertilities\\nfertility\\nfertilization\\nfertilizations\\nfertilize\\nfertilized\\nfertilizer\\nfertilizers\\nfertilizes\\nfertilizing\\nferula\\nferulae\\nferulas\\nferule\\nferuled\\nferules\\nferuling\\nfervencies\\nfervency\\nfervent\\nfervently\\nfervid\\nfervidly\\nfervor\\nfervors\\nfervour\\nfervours\\nfescue\\nfescues\\nfess\\nfesse\\nfessed\\nfesses\\nfessing\\nfesswise\\nfestal\\nfestally\\nfester\\nfestered\\nfestering\\nfesters\\nfestival\\nfestivals\\nfestive\\nfestively\\nfestivities\\nfestivity\\nfestoon\\nfestooned\\nfestooning\\nfestoons\\nfet\\nfeta\\nfetal\\nfetas\\nfetation\\nfetations\\nfetch\\nfetched\\nfetcher\\nfetchers\\nfetches\\nfetching\\nfetchingly\\nfete\\nfeted\\nfeterita\\nfeteritas\\nfetes\\nfetial\\nfetiales\\nfetialis\\nfetials\\nfetich\\nfetiches\\nfeticide\\nfeticides\\nfetid\\nfetidly\\nfeting\\nfetish\\nfetishes\\nfetlock\\nfetlocks\\nfetologies\\nfetology\\nfetor\\nfetors\\nfets\\nfetted\\nfetter\\nfettered\\nfetterer\\nfetterers\\nfettering\\nfetters\\nfetting\\nfettle\\nfettled\\nfettles\\nfettling\\nfettlings\\nfetus\\nfetuses\\nfeu\\nfeuar\\nfeuars\\nfeud\\nfeudal\\nfeudalism\\nfeudalistic\\nfeudally\\nfeudaries\\nfeudary\\nfeuded\\nfeuding\\nfeudist\\nfeudists\\nfeuds\\nfeued\\nfeuing\\nfeus\\nfever\\nfevered\\nfeverfew\\nfeverfews\\nfevering\\nfeverish\\nfeverous\\nfevers\\nfew\\nfewer\\nfewest\\nfewness\\nfewnesses\\nfewtrils\\nfey\\nfeyer\\nfeyest\\nfeyness\\nfeynesses\\nfez\\nfezes\\nfezzed\\nfezzes\\nfiacre\\nfiacres\\nfiance\\nfiancee\\nfiancees\\nfiances\\nfiar\\nfiars\\nfiaschi\\nfiasco\\nfiascoes\\nfiascos\\nfiat\\nfiats\\nfib\\nfibbed\\nfibber\\nfibbers\\nfibbing\\nfiber\\nfiberboard\\nfiberboards\\nfibered\\nfiberglass\\nfiberglasses\\nfiberize\\nfiberized\\nfiberizes\\nfiberizing\\nfibers\\nfibre\\nfibres\\nfibril\\nfibrilla\\nfibrillae\\nfibrillate\\nfibrillated\\nfibrillates\\nfibrillating\\nfibrillation\\nfibrillations\\nfibrils\\nfibrin\\nfibrins\\nfibrocystic\\nfibroid\\nfibroids\\nfibroin\\nfibroins\\nfibroma\\nfibromas\\nfibromata\\nfibroses\\nfibrosis\\nfibrotic\\nfibrous\\nfibs\\nfibula\\nfibulae\\nfibular\\nfibulas\\nfice\\nfices\\nfiche\\nfiches\\nfichu\\nfichus\\nficin\\nficins\\nfickle\\nfickleness\\nficklenesses\\nfickler\\nficklest\\nfico\\nficoes\\nfictile\\nfiction\\nfictional\\nfictions\\nfictitious\\nfictive\\nfid\\nfiddle\\nfiddled\\nfiddler\\nfiddlers\\nfiddles\\nfiddlesticks\\nfiddling\\nfideism\\nfideisms\\nfideist\\nfideists\\nfidelities\\nfidelity\\nfidge\\nfidged\\nfidges\\nfidget\\nfidgeted\\nfidgeter\\nfidgeters\\nfidgeting\\nfidgets\\nfidgety\\nfidging\\nfido\\nfidos\\nfids\\nfiducial\\nfiduciaries\\nfiduciary\\nfie\\nfief\\nfiefdom\\nfiefdoms\\nfiefs\\nfield\\nfielded\\nfielder\\nfielders\\nfielding\\nfields\\nfiend\\nfiendish\\nfiendishly\\nfiends\\nfierce\\nfiercely\\nfierceness\\nfiercenesses\\nfiercer\\nfiercest\\nfierier\\nfieriest\\nfierily\\nfieriness\\nfierinesses\\nfiery\\nfiesta\\nfiestas\\nfife\\nfifed\\nfifer\\nfifers\\nfifes\\nfifing\\nfifteen\\nfifteens\\nfifteenth\\nfifteenths\\nfifth\\nfifthly\\nfifths\\nfifties\\nfiftieth\\nfiftieths\\nfifty\\nfig\\nfigeater\\nfigeaters\\nfigged\\nfigging\\nfight\\nfighter\\nfighters\\nfighting\\nfightings\\nfights\\nfigment\\nfigments\\nfigs\\nfiguline\\nfigulines\\nfigural\\nfigurant\\nfigurants\\nfigurate\\nfigurative\\nfiguratively\\nfigure\\nfigured\\nfigurer\\nfigurers\\nfigures\\nfigurine\\nfigurines\\nfiguring\\nfigwort\\nfigworts\\nfil\\nfila\\nfilagree\\nfilagreed\\nfilagreeing\\nfilagrees\\nfilament\\nfilamentous\\nfilaments\\nfilar\\nfilaree\\nfilarees\\nfilaria\\nfilariae\\nfilarial\\nfilarian\\nfilariid\\nfilariids\\nfilature\\nfilatures\\nfilbert\\nfilberts\\nfilch\\nfilched\\nfilcher\\nfilchers\\nfilches\\nfilching\\nfile\\nfiled\\nfilefish\\nfilefishes\\nfilemot\\nfiler\\nfilers\\nfiles\\nfilet\\nfileted\\nfileting\\nfilets\\nfilial\\nfilially\\nfiliate\\nfiliated\\nfiliates\\nfiliating\\nfilibeg\\nfilibegs\\nfilibuster\\nfilibustered\\nfilibusterer\\nfilibusterers\\nfilibustering\\nfilibusters\\nfilicide\\nfilicides\\nfiliform\\nfiligree\\nfiligreed\\nfiligreeing\\nfiligrees\\nfiling\\nfilings\\nfilister\\nfilisters\\nfill\\nfille\\nfilled\\nfiller\\nfillers\\nfilles\\nfillet\\nfilleted\\nfilleting\\nfillets\\nfillies\\nfilling\\nfillings\\nfillip\\nfilliped\\nfilliping\\nfillips\\nfills\\nfilly\\nfilm\\nfilmcard\\nfilmcards\\nfilmdom\\nfilmdoms\\nfilmed\\nfilmgoer\\nfilmgoers\\nfilmic\\nfilmier\\nfilmiest\\nfilmily\\nfilming\\nfilmland\\nfilmlands\\nfilms\\nfilmset\\nfilmsets\\nfilmsetting\\nfilmstrip\\nfilmstrips\\nfilmy\\nfilose\\nfils\\nfilter\\nfilterable\\nfiltered\\nfilterer\\nfilterers\\nfiltering\\nfilters\\nfilth\\nfilthier\\nfilthiest\\nfilthily\\nfilthiness\\nfilthinesses\\nfilths\\nfilthy\\nfiltrate\\nfiltrated\\nfiltrates\\nfiltrating\\nfiltration\\nfiltrations\\nfilum\\nfimble\\nfimbles\\nfimbria\\nfimbriae\\nfimbrial\\nfin\\nfinable\\nfinagle\\nfinagled\\nfinagler\\nfinaglers\\nfinagles\\nfinagling\\nfinal\\nfinale\\nfinales\\nfinalis\\nfinalism\\nfinalisms\\nfinalist\\nfinalists\\nfinalities\\nfinality\\nfinalize\\nfinalized\\nfinalizes\\nfinalizing\\nfinally\\nfinals\\nfinance\\nfinanced\\nfinances\\nfinancial\\nfinancially\\nfinancier\\nfinanciers\\nfinancing\\nfinback\\nfinbacks\\nfinch\\nfinches\\nfind\\nfinder\\nfinders\\nfinding\\nfindings\\nfinds\\nfine\\nfineable\\nfined\\nfinely\\nfineness\\nfinenesses\\nfiner\\nfineries\\nfinery\\nfines\\nfinespun\\nfinesse\\nfinessed\\nfinesses\\nfinessing\\nfinest\\nfinfish\\nfinfishes\\nfinfoot\\nfinfoots\\nfinger\\nfingered\\nfingerer\\nfingerers\\nfingering\\nfingerling\\nfingerlings\\nfingernail\\nfingerprint\\nfingerprints\\nfingers\\nfingertip\\nfingertips\\nfinial\\nfinialed\\nfinials\\nfinical\\nfinickier\\nfinickiest\\nfinickin\\nfinicky\\nfinikin\\nfiniking\\nfining\\nfinings\\nfinis\\nfinises\\nfinish\\nfinished\\nfinisher\\nfinishers\\nfinishes\\nfinishing\\nfinite\\nfinitely\\nfinites\\nfinitude\\nfinitudes\\nfink\\nfinked\\nfinking\\nfinks\\nfinky\\nfinless\\nfinlike\\nfinmark\\nfinmarks\\nfinned\\nfinnickier\\nfinnickiest\\nfinnicky\\nfinnier\\nfinniest\\nfinning\\nfinnmark\\nfinnmarks\\nfinny\\nfinochio\\nfinochios\\nfins\\nfiord\\nfiords\\nfipple\\nfipples\\nfique\\nfiques\\nfir\\nfire\\nfirearm\\nfirearms\\nfireball\\nfireballs\\nfirebird\\nfirebirds\\nfireboat\\nfireboats\\nfirebomb\\nfirebombed\\nfirebombing\\nfirebombs\\nfirebox\\nfireboxes\\nfirebrat\\nfirebrats\\nfirebreak\\nfirebreaks\\nfirebug\\nfirebugs\\nfireclay\\nfireclays\\nfirecracker\\nfirecrackers\\nfired\\nfiredamp\\nfiredamps\\nfiredog\\nfiredogs\\nfirefang\\nfirefanged\\nfirefanging\\nfirefangs\\nfireflies\\nfirefly\\nfirehall\\nfirehalls\\nfireless\\nfirelock\\nfirelocks\\nfireman\\nfiremen\\nfirepan\\nfirepans\\nfirepink\\nfirepinks\\nfireplace\\nfireplaces\\nfireplug\\nfireplugs\\nfireproof\\nfireproofed\\nfireproofing\\nfireproofs\\nfirer\\nfireroom\\nfirerooms\\nfirers\\nfires\\nfireside\\nfiresides\\nfiretrap\\nfiretraps\\nfireweed\\nfireweeds\\nfirewood\\nfirewoods\\nfirework\\nfireworks\\nfireworm\\nfireworms\\nfiring\\nfirings\\nfirkin\\nfirkins\\nfirm\\nfirmament\\nfirmaments\\nfirman\\nfirmans\\nfirmed\\nfirmer\\nfirmers\\nfirmest\\nfirming\\nfirmly\\nfirmness\\nfirmnesses\\nfirms\\nfirn\\nfirns\\nfirry\\nfirs\\nfirst\\nfirstly\\nfirsts\\nfirth\\nfirths\\nfisc\\nfiscal\\nfiscally\\nfiscals\\nfiscs\\nfish\\nfishable\\nfishboat\\nfishboats\\nfishbone\\nfishbones\\nfishbowl\\nfishbowls\\nfished\\nfisher\\nfisheries\\nfisherman\\nfishermen\\nfishers\\nfishery\\nfishes\\nfisheye\\nfisheyes\\nfishgig\\nfishgigs\\nfishhook\\nfishhooks\\nfishier\\nfishiest\\nfishily\\nfishing\\nfishings\\nfishless\\nfishlike\\nfishline\\nfishlines\\nfishmeal\\nfishmeals\\nfishnet\\nfishnets\\nfishpole\\nfishpoles\\nfishpond\\nfishponds\\nfishtail\\nfishtailed\\nfishtailing\\nfishtails\\nfishway\\nfishways\\nfishwife\\nfishwives\\nfishy\\nfissate\\nfissile\\nfission\\nfissionable\\nfissional\\nfissioned\\nfissioning\\nfissions\\nfissiped\\nfissipeds\\nfissure\\nfissured\\nfissures\\nfissuring\\nfist\\nfisted\\nfistful\\nfistfuls\\nfistic\\nfisticuffs\\nfisting\\nfistnote\\nfistnotes\\nfists\\nfistula\\nfistulae\\nfistular\\nfistulas\\nfisty\\nfit\\nfitch\\nfitchee\\nfitches\\nfitchet\\nfitchets\\nfitchew\\nfitchews\\nfitchy\\nfitful\\nfitfully\\nfitly\\nfitment\\nfitments\\nfitness\\nfitnesses\\nfits\\nfittable\\nfitted\\nfitter\\nfitters\\nfittest\\nfitting\\nfittings\\nfive\\nfivefold\\nfivepins\\nfiver\\nfivers\\nfives\\nfix\\nfixable\\nfixate\\nfixated\\nfixates\\nfixatif\\nfixatifs\\nfixating\\nfixation\\nfixations\\nfixative\\nfixatives\\nfixed\\nfixedly\\nfixedness\\nfixednesses\\nfixer\\nfixers\\nfixes\\nfixing\\nfixings\\nfixities\\nfixity\\nfixt\\nfixture\\nfixtures\\nfixure\\nfixures\\nfiz\\nfizgig\\nfizgigs\\nfizz\\nfizzed\\nfizzer\\nfizzers\\nfizzes\\nfizzier\\nfizziest\\nfizzing\\nfizzle\\nfizzled\\nfizzles\\nfizzling\\nfizzy\\nfjeld\\nfjelds\\nfjord\\nfjords\\nflab\\nflabbergast\\nflabbergasted\\nflabbergasting\\nflabbergasts\\nflabbier\\nflabbiest\\nflabbily\\nflabbiness\\nflabbinesses\\nflabby\\nflabella\\nflabs\\nflaccid\\nflack\\nflacks\\nflacon\\nflacons\\nflag\\nflagella\\nflagellate\\nflagellated\\nflagellates\\nflagellating\\nflagellation\\nflagellations\\nflagged\\nflagger\\nflaggers\\nflaggier\\nflaggiest\\nflagging\\nflaggings\\nflaggy\\nflagless\\nflagman\\nflagmen\\nflagon\\nflagons\\nflagpole\\nflagpoles\\nflagrant\\nflagrantly\\nflags\\nflagship\\nflagships\\nflagstaff\\nflagstaffs\\nflagstone\\nflagstones\\nflail\\nflailed\\nflailing\\nflails\\nflair\\nflairs\\nflak\\nflake\\nflaked\\nflaker\\nflakers\\nflakes\\nflakier\\nflakiest\\nflakily\\nflaking\\nflaky\\nflam\\nflambe\\nflambeau\\nflambeaus\\nflambeaux\\nflambee\\nflambeed\\nflambeing\\nflambes\\nflamboyance\\nflamboyances\\nflamboyant\\nflamboyantly\\nflame\\nflamed\\nflamen\\nflamenco\\nflamencos\\nflamens\\nflameout\\nflameouts\\nflamer\\nflamers\\nflames\\nflamier\\nflamiest\\nflamines\\nflaming\\nflamingo\\nflamingoes\\nflamingos\\nflammable\\nflammed\\nflamming\\nflams\\nflamy\\nflan\\nflancard\\nflancards\\nflanerie\\nflaneries\\nflanes\\nflaneur\\nflaneurs\\nflange\\nflanged\\nflanger\\nflangers\\nflanges\\nflanging\\nflank\\nflanked\\nflanker\\nflankers\\nflanking\\nflanks\\nflannel\\nflanneled\\nflanneling\\nflannelled\\nflannelling\\nflannels\\nflans\\nflap\\nflapjack\\nflapjacks\\nflapless\\nflapped\\nflapper\\nflappers\\nflappier\\nflappiest\\nflapping\\nflappy\\nflaps\\nflare\\nflared\\nflares\\nflaring\\nflash\\nflashed\\nflasher\\nflashers\\nflashes\\nflashgun\\nflashguns\\nflashier\\nflashiest\\nflashily\\nflashiness\\nflashinesses\\nflashing\\nflashings\\nflashlight\\nflashlights\\nflashy\\nflask\\nflasket\\nflaskets\\nflasks\\nflat\\nflatbed\\nflatbeds\\nflatboat\\nflatboats\\nflatcap\\nflatcaps\\nflatcar\\nflatcars\\nflatfeet\\nflatfish\\nflatfishes\\nflatfoot\\nflatfooted\\nflatfooting\\nflatfoots\\nflathead\\nflatheads\\nflatiron\\nflatirons\\nflatland\\nflatlands\\nflatlet\\nflatlets\\nflatling\\nflatly\\nflatness\\nflatnesses\\nflats\\nflatted\\nflatten\\nflattened\\nflattening\\nflattens\\nflatter\\nflattered\\nflatterer\\nflatteries\\nflattering\\nflatters\\nflattery\\nflattest\\nflatting\\nflattish\\nflattop\\nflattops\\nflatulence\\nflatulences\\nflatulent\\nflatus\\nflatuses\\nflatware\\nflatwares\\nflatwash\\nflatwashes\\nflatways\\nflatwise\\nflatwork\\nflatworks\\nflatworm\\nflatworms\\nflaunt\\nflaunted\\nflaunter\\nflaunters\\nflauntier\\nflauntiest\\nflaunting\\nflaunts\\nflaunty\\nflautist\\nflautists\\nflavin\\nflavine\\nflavines\\nflavins\\nflavone\\nflavones\\nflavonol\\nflavonols\\nflavor\\nflavored\\nflavorer\\nflavorers\\nflavorful\\nflavoring\\nflavorings\\nflavors\\nflavorsome\\nflavory\\nflavour\\nflavoured\\nflavouring\\nflavours\\nflavoury\\nflaw\\nflawed\\nflawier\\nflawiest\\nflawing\\nflawless\\nflaws\\nflawy\\nflax\\nflaxen\\nflaxes\\nflaxier\\nflaxiest\\nflaxseed\\nflaxseeds\\nflaxy\\nflay\\nflayed\\nflayer\\nflayers\\nflaying\\nflays\\nflea\\nfleabag\\nfleabags\\nfleabane\\nfleabanes\\nfleabite\\nfleabites\\nfleam\\nfleams\\nfleas\\nfleawort\\nfleaworts\\nfleche\\nfleches\\nfleck\\nflecked\\nflecking\\nflecks\\nflecky\\nflection\\nflections\\nfled\\nfledge\\nfledged\\nfledges\\nfledgier\\nfledgiest\\nfledging\\nfledgling\\nfledglings\\nfledgy\\nflee\\nfleece\\nfleeced\\nfleecer\\nfleecers\\nfleeces\\nfleech\\nfleeched\\nfleeches\\nfleeching\\nfleecier\\nfleeciest\\nfleecily\\nfleecing\\nfleecy\\nfleeing\\nfleer\\nfleered\\nfleering\\nfleers\\nflees\\nfleet\\nfleeted\\nfleeter\\nfleetest\\nfleeting\\nfleetness\\nfleetnesses\\nfleets\\nfleishig\\nflemish\\nflemished\\nflemishes\\nflemishing\\nflench\\nflenched\\nflenches\\nflenching\\nflense\\nflensed\\nflenser\\nflensers\\nflenses\\nflensing\\nflesh\\nfleshed\\nflesher\\nfleshers\\nfleshes\\nfleshier\\nfleshiest\\nfleshing\\nfleshings\\nfleshlier\\nfleshliest\\nfleshly\\nfleshpot\\nfleshpots\\nfleshy\\nfletch\\nfletched\\nfletcher\\nfletchers\\nfletches\\nfletching\\nfleury\\nflew\\nflews\\nflex\\nflexed\\nflexes\\nflexibilities\\nflexibility\\nflexible\\nflexibly\\nflexile\\nflexing\\nflexion\\nflexions\\nflexor\\nflexors\\nflexuose\\nflexuous\\nflexural\\nflexure\\nflexures\\nfley\\nfleyed\\nfleying\\nfleys\\nflic\\nflichter\\nflichtered\\nflichtering\\nflichters\\nflick\\nflicked\\nflicker\\nflickered\\nflickering\\nflickers\\nflickery\\nflicking\\nflicks\\nflics\\nflied\\nflier\\nfliers\\nflies\\nfliest\\nflight\\nflighted\\nflightier\\nflightiest\\nflighting\\nflightless\\nflights\\nflighty\\nflimflam\\nflimflammed\\nflimflamming\\nflimflams\\nflimsier\\nflimsies\\nflimsiest\\nflimsily\\nflimsiness\\nflimsinesses\\nflimsy\\nflinch\\nflinched\\nflincher\\nflinchers\\nflinches\\nflinching\\nflinder\\nflinders\\nfling\\nflinger\\nflingers\\nflinging\\nflings\\nflint\\nflinted\\nflintier\\nflintiest\\nflintily\\nflinting\\nflints\\nflinty\\nflip\\nflippancies\\nflippancy\\nflippant\\nflipped\\nflipper\\nflippers\\nflippest\\nflipping\\nflips\\nflirt\\nflirtation\\nflirtations\\nflirtatious\\nflirted\\nflirter\\nflirters\\nflirtier\\nflirtiest\\nflirting\\nflirts\\nflirty\\nflit\\nflitch\\nflitched\\nflitches\\nflitching\\nflite\\nflited\\nflites\\nfliting\\nflits\\nflitted\\nflitter\\nflittered\\nflittering\\nflitters\\nflitting\\nflivver\\nflivvers\\nfloat\\nfloatage\\nfloatages\\nfloated\\nfloater\\nfloaters\\nfloatier\\nfloatiest\\nfloating\\nfloats\\nfloaty\\nfloc\\nflocced\\nflocci\\nfloccing\\nfloccose\\nfloccule\\nfloccules\\nflocculi\\nfloccus\\nflock\\nflocked\\nflockier\\nflockiest\\nflocking\\nflockings\\nflocks\\nflocky\\nflocs\\nfloe\\nfloes\\nflog\\nflogged\\nflogger\\nfloggers\\nflogging\\nfloggings\\nflogs\\nflong\\nflongs\\nflood\\nflooded\\nflooder\\nflooders\\nflooding\\nfloodlit\\nfloods\\nfloodwater\\nfloodwaters\\nfloodway\\nfloodways\\nflooey\\nfloor\\nfloorage\\nfloorages\\nfloorboard\\nfloorboards\\nfloored\\nfloorer\\nfloorers\\nflooring\\nfloorings\\nfloors\\nfloosies\\nfloosy\\nfloozie\\nfloozies\\nfloozy\\nflop\\nflopover\\nflopovers\\nflopped\\nflopper\\nfloppers\\nfloppier\\nfloppiest\\nfloppily\\nflopping\\nfloppy\\nflops\\nflora\\nflorae\\nfloral\\nflorally\\nfloras\\nflorence\\nflorences\\nfloret\\nflorets\\nflorid\\nfloridly\\nflorigen\\nflorigens\\nflorin\\nflorins\\nflorist\\nflorists\\nfloruit\\nfloruits\\nfloss\\nflosses\\nflossie\\nflossier\\nflossies\\nflossiest\\nflossy\\nflota\\nflotage\\nflotages\\nflotas\\nflotation\\nflotations\\nflotilla\\nflotillas\\nflotsam\\nflotsams\\nflounce\\nflounced\\nflounces\\nflouncier\\nflounciest\\nflouncing\\nflouncy\\nflounder\\nfloundered\\nfloundering\\nflounders\\nflour\\nfloured\\nflouring\\nflourish\\nflourished\\nflourishes\\nflourishing\\nflours\\nfloury\\nflout\\nflouted\\nflouter\\nflouters\\nflouting\\nflouts\\nflow\\nflowage\\nflowages\\nflowchart\\nflowcharts\\nflowed\\nflower\\nflowered\\nflowerer\\nflowerers\\nfloweret\\nflowerets\\nflowerier\\nfloweriest\\nfloweriness\\nflowerinesses\\nflowering\\nflowerless\\nflowerpot\\nflowerpots\\nflowers\\nflowery\\nflowing\\nflown\\nflows\\nflowsheet\\nflowsheets\\nflu\\nflub\\nflubbed\\nflubbing\\nflubdub\\nflubdubs\\nflubs\\nfluctuate\\nfluctuated\\nfluctuates\\nfluctuating\\nfluctuation\\nfluctuations\\nflue\\nflued\\nfluencies\\nfluency\\nfluent\\nfluently\\nflueric\\nfluerics\\nflues\\nfluff\\nfluffed\\nfluffier\\nfluffiest\\nfluffily\\nfluffing\\nfluffs\\nfluffy\\nfluid\\nfluidal\\nfluidic\\nfluidics\\nfluidise\\nfluidised\\nfluidises\\nfluidising\\nfluidities\\nfluidity\\nfluidize\\nfluidized\\nfluidizes\\nfluidizing\\nfluidly\\nfluidounce\\nfluidounces\\nfluidram\\nfluidrams\\nfluids\\nfluke\\nfluked\\nflukes\\nflukey\\nflukier\\nflukiest\\nfluking\\nfluky\\nflume\\nflumed\\nflumes\\nfluming\\nflummeries\\nflummery\\nflummox\\nflummoxed\\nflummoxes\\nflummoxing\\nflump\\nflumped\\nflumping\\nflumps\\nflung\\nflunk\\nflunked\\nflunker\\nflunkers\\nflunkey\\nflunkeys\\nflunkies\\nflunking\\nflunks\\nflunky\\nfluor\\nfluorene\\nfluorenes\\nfluoresce\\nfluoresced\\nfluorescence\\nfluorescences\\nfluorescent\\nfluoresces\\nfluorescing\\nfluoric\\nfluorid\\nfluoridate\\nfluoridated\\nfluoridates\\nfluoridating\\nfluoridation\\nfluoridations\\nfluoride\\nfluorides\\nfluorids\\nfluorin\\nfluorine\\nfluorines\\nfluorins\\nfluorite\\nfluorites\\nfluorocarbon\\nfluorocarbons\\nfluoroscope\\nfluoroscopes\\nfluoroscopic\\nfluoroscopies\\nfluoroscopist\\nfluoroscopists\\nfluoroscopy\\nfluors\\nflurried\\nflurries\\nflurry\\nflurrying\\nflus\\nflush\\nflushed\\nflusher\\nflushers\\nflushes\\nflushest\\nflushing\\nfluster\\nflustered\\nflustering\\nflusters\\nflute\\nfluted\\nfluter\\nfluters\\nflutes\\nflutier\\nflutiest\\nfluting\\nflutings\\nflutist\\nflutists\\nflutter\\nfluttered\\nfluttering\\nflutters\\nfluttery\\nfluty\\nfluvial\\nflux\\nfluxed\\nfluxes\\nfluxing\\nfluxion\\nfluxions\\nfluyt\\nfluyts\\nfly\\nflyable\\nflyaway\\nflyaways\\nflybelt\\nflybelts\\nflyblew\\nflyblow\\nflyblowing\\nflyblown\\nflyblows\\nflyboat\\nflyboats\\nflyby\\nflybys\\nflyer\\nflyers\\nflying\\nflyings\\nflyleaf\\nflyleaves\\nflyman\\nflymen\\nflyover\\nflyovers\\nflypaper\\nflypapers\\nflypast\\nflypasts\\nflysch\\nflysches\\nflyspeck\\nflyspecked\\nflyspecking\\nflyspecks\\nflyte\\nflyted\\nflytes\\nflytier\\nflytiers\\nflyting\\nflytings\\nflytrap\\nflytraps\\nflyway\\nflyways\\nflywheel\\nflywheels\\nfoal\\nfoaled\\nfoaling\\nfoals\\nfoam\\nfoamed\\nfoamer\\nfoamers\\nfoamier\\nfoamiest\\nfoamily\\nfoaming\\nfoamless\\nfoamlike\\nfoams\\nfoamy\\nfob\\nfobbed\\nfobbing\\nfobs\\nfocal\\nfocalise\\nfocalised\\nfocalises\\nfocalising\\nfocalize\\nfocalized\\nfocalizes\\nfocalizing\\nfocally\\nfoci\\nfocus\\nfocused\\nfocuser\\nfocusers\\nfocuses\\nfocusing\\nfocussed\\nfocusses\\nfocussing\\nfodder\\nfoddered\\nfoddering\\nfodders\\nfodgel\\nfoe\\nfoehn\\nfoehns\\nfoeman\\nfoemen\\nfoes\\nfoetal\\nfoetid\\nfoetor\\nfoetors\\nfoetus\\nfoetuses\\nfog\\nfogbound\\nfogbow\\nfogbows\\nfogdog\\nfogdogs\\nfogey\\nfogeys\\nfogfruit\\nfogfruits\\nfoggage\\nfoggages\\nfogged\\nfogger\\nfoggers\\nfoggier\\nfoggiest\\nfoggily\\nfogging\\nfoggy\\nfoghorn\\nfoghorns\\nfogie\\nfogies\\nfogless\\nfogs\\nfogy\\nfogyish\\nfogyism\\nfogyisms\\nfoh\\nfohn\\nfohns\\nfoible\\nfoibles\\nfoil\\nfoilable\\nfoiled\\nfoiling\\nfoils\\nfoilsman\\nfoilsmen\\nfoin\\nfoined\\nfoining\\nfoins\\nfoison\\nfoisons\\nfoist\\nfoisted\\nfoisting\\nfoists\\nfolacin\\nfolacins\\nfolate\\nfolates\\nfold\\nfoldable\\nfoldaway\\nfoldboat\\nfoldboats\\nfolded\\nfolder\\nfolderol\\nfolderols\\nfolders\\nfolding\\nfoldout\\nfoldouts\\nfolds\\nfolia\\nfoliage\\nfoliaged\\nfoliages\\nfoliar\\nfoliate\\nfoliated\\nfoliates\\nfoliating\\nfolic\\nfolio\\nfolioed\\nfolioing\\nfolios\\nfoliose\\nfolious\\nfolium\\nfoliums\\nfolk\\nfolkish\\nfolklike\\nfolklore\\nfolklores\\nfolklorist\\nfolklorists\\nfolkmoot\\nfolkmoots\\nfolkmot\\nfolkmote\\nfolkmotes\\nfolkmots\\nfolks\\nfolksier\\nfolksiest\\nfolksily\\nfolksy\\nfolktale\\nfolktales\\nfolkway\\nfolkways\\nfolles\\nfollicle\\nfollicles\\nfollies\\nfollis\\nfollow\\nfollowed\\nfollower\\nfollowers\\nfollowing\\nfollowings\\nfollows\\nfolly\\nfoment\\nfomentation\\nfomentations\\nfomented\\nfomenter\\nfomenters\\nfomenting\\nfoments\\nfon\\nfond\\nfondant\\nfondants\\nfonded\\nfonder\\nfondest\\nfonding\\nfondle\\nfondled\\nfondler\\nfondlers\\nfondles\\nfondling\\nfondlings\\nfondly\\nfondness\\nfondnesses\\nfonds\\nfondu\\nfondue\\nfondues\\nfondus\\nfons\\nfont\\nfontal\\nfontanel\\nfontanels\\nfontina\\nfontinas\\nfonts\\nfood\\nfoodless\\nfoods\\nfoofaraw\\nfoofaraws\\nfool\\nfooled\\nfooleries\\nfoolery\\nfoolfish\\nfoolfishes\\nfoolhardiness\\nfoolhardinesses\\nfoolhardy\\nfooling\\nfoolish\\nfoolisher\\nfoolishest\\nfoolishness\\nfoolishnesses\\nfoolproof\\nfools\\nfoolscap\\nfoolscaps\\nfoot\\nfootage\\nfootages\\nfootball\\nfootballs\\nfootbath\\nfootbaths\\nfootboy\\nfootboys\\nfootbridge\\nfootbridges\\nfooted\\nfooter\\nfooters\\nfootfall\\nfootfalls\\nfootgear\\nfootgears\\nfoothill\\nfoothills\\nfoothold\\nfootholds\\nfootier\\nfootiest\\nfooting\\nfootings\\nfootle\\nfootled\\nfootler\\nfootlers\\nfootles\\nfootless\\nfootlight\\nfootlights\\nfootlike\\nfootling\\nfootlocker\\nfootlockers\\nfootloose\\nfootman\\nfootmark\\nfootmarks\\nfootmen\\nfootnote\\nfootnoted\\nfootnotes\\nfootnoting\\nfootpace\\nfootpaces\\nfootpad\\nfootpads\\nfootpath\\nfootpaths\\nfootprint\\nfootprints\\nfootrace\\nfootraces\\nfootrest\\nfootrests\\nfootrope\\nfootropes\\nfoots\\nfootsie\\nfootsies\\nfootslog\\nfootslogged\\nfootslogging\\nfootslogs\\nfootsore\\nfootstep\\nfootsteps\\nfootstool\\nfootstools\\nfootwall\\nfootwalls\\nfootway\\nfootways\\nfootwear\\nfootwears\\nfootwork\\nfootworks\\nfootworn\\nfooty\\nfoozle\\nfoozled\\nfoozler\\nfoozlers\\nfoozles\\nfoozling\\nfop\\nfopped\\nfopperies\\nfoppery\\nfopping\\nfoppish\\nfops\\nfor\\nfora\\nforage\\nforaged\\nforager\\nforagers\\nforages\\nforaging\\nforam\\nforamen\\nforamens\\nforamina\\nforams\\nforay\\nforayed\\nforayer\\nforayers\\nforaying\\nforays\\nforb\\nforbad\\nforbade\\nforbear\\nforbearance\\nforbearances\\nforbearing\\nforbears\\nforbid\\nforbidal\\nforbidals\\nforbidden\\nforbidding\\nforbids\\nforbode\\nforboded\\nforbodes\\nforboding\\nforbore\\nforborne\\nforbs\\nforby\\nforbye\\nforce\\nforced\\nforcedly\\nforceful\\nforcefully\\nforceps\\nforcer\\nforcers\\nforces\\nforcible\\nforcibly\\nforcing\\nforcipes\\nford\\nfordable\\nforded\\nfordid\\nfording\\nfordless\\nfordo\\nfordoes\\nfordoing\\nfordone\\nfords\\nfore\\nforearm\\nforearmed\\nforearming\\nforearms\\nforebay\\nforebays\\nforebear\\nforebears\\nforebode\\nforeboded\\nforebodes\\nforebodies\\nforeboding\\nforebodings\\nforebody\\nforeboom\\nforebooms\\nforeby\\nforebye\\nforecast\\nforecasted\\nforecaster\\nforecasters\\nforecasting\\nforecastle\\nforecastles\\nforecasts\\nforeclose\\nforeclosed\\nforecloses\\nforeclosing\\nforeclosure\\nforeclosures\\nforedate\\nforedated\\nforedates\\nforedating\\nforedeck\\nforedecks\\nforedid\\nforedo\\nforedoes\\nforedoing\\nforedone\\nforedoom\\nforedoomed\\nforedooming\\nforedooms\\nforeface\\nforefaces\\nforefather\\nforefathers\\nforefeel\\nforefeeling\\nforefeels\\nforefeet\\nforefelt\\nforefend\\nforefended\\nforefending\\nforefends\\nforefinger\\nforefingers\\nforefoot\\nforefront\\nforefronts\\nforegather\\nforegathered\\nforegathering\\nforegathers\\nforego\\nforegoer\\nforegoers\\nforegoes\\nforegoing\\nforegone\\nforeground\\nforegrounds\\nforegut\\nforeguts\\nforehand\\nforehands\\nforehead\\nforeheads\\nforehoof\\nforehoofs\\nforehooves\\nforeign\\nforeigner\\nforeigners\\nforeknew\\nforeknow\\nforeknowing\\nforeknowledge\\nforeknowledges\\nforeknown\\nforeknows\\nforeladies\\nforelady\\nforeland\\nforelands\\nforeleg\\nforelegs\\nforelimb\\nforelimbs\\nforelock\\nforelocks\\nforeman\\nforemast\\nforemasts\\nforemen\\nforemilk\\nforemilks\\nforemost\\nforename\\nforenames\\nforenoon\\nforenoons\\nforensic\\nforensics\\nforeordain\\nforeordained\\nforeordaining\\nforeordains\\nforepart\\nforeparts\\nforepast\\nforepaw\\nforepaws\\nforepeak\\nforepeaks\\nforeplay\\nforeplays\\nforequarter\\nforequarters\\nforeran\\nforerank\\nforeranks\\nforerun\\nforerunner\\nforerunners\\nforerunning\\nforeruns\\nfores\\nforesaid\\nforesail\\nforesails\\nforesaw\\nforesee\\nforeseeable\\nforeseeing\\nforeseen\\nforeseer\\nforeseers\\nforesees\\nforeshadow\\nforeshadowed\\nforeshadowing\\nforeshadows\\nforeshow\\nforeshowed\\nforeshowing\\nforeshown\\nforeshows\\nforeside\\nforesides\\nforesight\\nforesighted\\nforesightedness\\nforesightednesses\\nforesights\\nforeskin\\nforeskins\\nforest\\nforestal\\nforestall\\nforestalled\\nforestalling\\nforestalls\\nforestay\\nforestays\\nforested\\nforester\\nforesters\\nforesting\\nforestland\\nforestlands\\nforestries\\nforestry\\nforests\\nforeswear\\nforesweared\\nforeswearing\\nforeswears\\nforetaste\\nforetasted\\nforetastes\\nforetasting\\nforetell\\nforetelling\\nforetells\\nforethought\\nforethoughts\\nforetime\\nforetimes\\nforetold\\nforetop\\nforetops\\nforever\\nforevermore\\nforevers\\nforewarn\\nforewarned\\nforewarning\\nforewarns\\nforewent\\nforewing\\nforewings\\nforeword\\nforewords\\nforeworn\\nforeyard\\nforeyards\\nforfeit\\nforfeited\\nforfeiting\\nforfeits\\nforfeiture\\nforfeitures\\nforfend\\nforfended\\nforfending\\nforfends\\nforgat\\nforgather\\nforgathered\\nforgathering\\nforgathers\\nforgave\\nforge\\nforged\\nforger\\nforgeries\\nforgers\\nforgery\\nforges\\nforget\\nforgetful\\nforgetfully\\nforgets\\nforgetting\\nforging\\nforgings\\nforgivable\\nforgive\\nforgiven\\nforgiveness\\nforgivenesses\\nforgiver\\nforgivers\\nforgives\\nforgiving\\nforgo\\nforgoer\\nforgoers\\nforgoes\\nforgoing\\nforgone\\nforgot\\nforgotten\\nforint\\nforints\\nforjudge\\nforjudged\\nforjudges\\nforjudging\\nfork\\nforked\\nforkedly\\nforker\\nforkers\\nforkful\\nforkfuls\\nforkier\\nforkiest\\nforking\\nforkless\\nforklift\\nforklifts\\nforklike\\nforks\\nforksful\\nforky\\nforlorn\\nforlorner\\nforlornest\\nform\\nformable\\nformal\\nformaldehyde\\nformaldehydes\\nformalin\\nformalins\\nformalities\\nformality\\nformalize\\nformalized\\nformalizes\\nformalizing\\nformally\\nformals\\nformant\\nformants\\nformat\\nformate\\nformates\\nformation\\nformations\\nformative\\nformats\\nformatted\\nformatting\\nforme\\nformed\\nformee\\nformer\\nformerly\\nformers\\nformes\\nformful\\nformic\\nformidable\\nformidably\\nforming\\nformless\\nformol\\nformols\\nforms\\nformula\\nformulae\\nformulas\\nformulate\\nformulated\\nformulates\\nformulating\\nformulation\\nformulations\\nformyl\\nformyls\\nfornical\\nfornicate\\nfornicated\\nfornicates\\nfornicating\\nfornication\\nfornicator\\nfornicators\\nfornices\\nfornix\\nforrader\\nforrit\\nforsake\\nforsaken\\nforsaker\\nforsakers\\nforsakes\\nforsaking\\nforsook\\nforsooth\\nforspent\\nforswear\\nforswearing\\nforswears\\nforswore\\nforsworn\\nforsythia\\nforsythias\\nfort\\nforte\\nfortes\\nforth\\nforthcoming\\nforthright\\nforthrightness\\nforthrightnesses\\nforthwith\\nforties\\nfortieth\\nfortieths\\nfortification\\nfortifications\\nfortified\\nfortifies\\nfortify\\nfortifying\\nfortis\\nfortitude\\nfortitudes\\nfortnight\\nfortnightly\\nfortnights\\nfortress\\nfortressed\\nfortresses\\nfortressing\\nforts\\nfortuities\\nfortuitous\\nfortuity\\nfortunate\\nfortunately\\nfortune\\nfortuned\\nfortunes\\nfortuning\\nforty\\nforum\\nforums\\nforward\\nforwarded\\nforwarder\\nforwardest\\nforwarding\\nforwardness\\nforwardnesses\\nforwards\\nforwent\\nforwhy\\nforworn\\nforzando\\nforzandos\\nfoss\\nfossa\\nfossae\\nfossate\\nfosse\\nfosses\\nfossette\\nfossettes\\nfossick\\nfossicked\\nfossicking\\nfossicks\\nfossil\\nfossilize\\nfossilized\\nfossilizes\\nfossilizing\\nfossils\\nfoster\\nfostered\\nfosterer\\nfosterers\\nfostering\\nfosters\\nfou\\nfought\\nfoughten\\nfoul\\nfoulard\\nfoulards\\nfouled\\nfouler\\nfoulest\\nfouling\\nfoulings\\nfoully\\nfoulmouthed\\nfoulness\\nfoulnesses\\nfouls\\nfound\\nfoundation\\nfoundational\\nfoundations\\nfounded\\nfounder\\nfoundered\\nfoundering\\nfounders\\nfounding\\nfoundling\\nfoundlings\\nfoundries\\nfoundry\\nfounds\\nfount\\nfountain\\nfountained\\nfountaining\\nfountains\\nfounts\\nfour\\nfourchee\\nfourfold\\nfourgon\\nfourgons\\nfours\\nfourscore\\nfoursome\\nfoursomes\\nfourteen\\nfourteens\\nfourteenth\\nfourteenths\\nfourth\\nfourthly\\nfourths\\nfovea\\nfoveae\\nfoveal\\nfoveate\\nfoveated\\nfoveola\\nfoveolae\\nfoveolar\\nfoveolas\\nfoveole\\nfoveoles\\nfoveolet\\nfoveolets\\nfowl\\nfowled\\nfowler\\nfowlers\\nfowling\\nfowlings\\nfowlpox\\nfowlpoxes\\nfowls\\nfox\\nfoxed\\nfoxes\\nfoxfire\\nfoxfires\\nfoxfish\\nfoxfishes\\nfoxglove\\nfoxgloves\\nfoxhole\\nfoxholes\\nfoxhound\\nfoxhounds\\nfoxier\\nfoxiest\\nfoxily\\nfoxiness\\nfoxinesses\\nfoxing\\nfoxings\\nfoxlike\\nfoxskin\\nfoxskins\\nfoxtail\\nfoxtails\\nfoxy\\nfoy\\nfoyer\\nfoyers\\nfoys\\nfozier\\nfoziest\\nfoziness\\nfozinesses\\nfozy\\nfracas\\nfracases\\nfracted\\nfraction\\nfractional\\nfractionally\\nfractionated\\nfractioned\\nfractioning\\nfractions\\nfractur\\nfracture\\nfractured\\nfractures\\nfracturing\\nfracturs\\nfrae\\nfraena\\nfraenum\\nfraenums\\nfrag\\nfragged\\nfragging\\nfraggings\\nfragile\\nfragilities\\nfragility\\nfragment\\nfragmentary\\nfragmentation\\nfragmentations\\nfragmented\\nfragmenting\\nfragments\\nfragrant\\nfragrantly\\nfrags\\nfrail\\nfrailer\\nfrailest\\nfrailly\\nfrails\\nfrailties\\nfrailty\\nfraise\\nfraises\\nfraktur\\nfrakturs\\nframable\\nframe\\nframed\\nframer\\nframers\\nframes\\nframework\\nframeworks\\nframing\\nfranc\\nfranchise\\nfranchisee\\nfranchisees\\nfranchises\\nfrancium\\nfranciums\\nfrancs\\nfrangibilities\\nfrangibility\\nfrangible\\nfrank\\nfranked\\nfranker\\nfrankers\\nfrankest\\nfrankfort\\nfrankforter\\nfrankforters\\nfrankforts\\nfrankfurt\\nfrankfurter\\nfrankfurters\\nfrankfurts\\nfrankincense\\nfrankincenses\\nfranking\\nfranklin\\nfranklins\\nfrankly\\nfrankness\\nfranknesses\\nfranks\\nfrantic\\nfrantically\\nfranticly\\nfrap\\nfrappe\\nfrapped\\nfrappes\\nfrapping\\nfraps\\nfrat\\nfrater\\nfraternal\\nfraternally\\nfraternities\\nfraternity\\nfraternization\\nfraternizations\\nfraternize\\nfraternized\\nfraternizes\\nfraternizing\\nfraters\\nfratricidal\\nfratricide\\nfratricides\\nfrats\\nfraud\\nfrauds\\nfraudulent\\nfraudulently\\nfraught\\nfraughted\\nfraughting\\nfraughts\\nfraulein\\nfrauleins\\nfray\\nfrayed\\nfraying\\nfrayings\\nfrays\\nfrazzle\\nfrazzled\\nfrazzles\\nfrazzling\\nfreak\\nfreaked\\nfreakier\\nfreakiest\\nfreakily\\nfreaking\\nfreakish\\nfreakout\\nfreakouts\\nfreaks\\nfreaky\\nfreckle\\nfreckled\\nfreckles\\nfrecklier\\nfreckliest\\nfreckling\\nfreckly\\nfree\\nfreebee\\nfreebees\\nfreebie\\nfreebies\\nfreeboot\\nfreebooted\\nfreebooter\\nfreebooters\\nfreebooting\\nfreeboots\\nfreeborn\\nfreed\\nfreedman\\nfreedmen\\nfreedom\\nfreedoms\\nfreeform\\nfreehand\\nfreehold\\nfreeholds\\nfreeing\\nfreeload\\nfreeloaded\\nfreeloader\\nfreeloaders\\nfreeloading\\nfreeloads\\nfreely\\nfreeman\\nfreemen\\nfreeness\\nfreenesses\\nfreer\\nfreers\\nfrees\\nfreesia\\nfreesias\\nfreest\\nfreestanding\\nfreeway\\nfreeways\\nfreewill\\nfreeze\\nfreezer\\nfreezers\\nfreezes\\nfreezing\\nfreight\\nfreighted\\nfreighter\\nfreighters\\nfreighting\\nfreights\\nfremd\\nfremitus\\nfremituses\\nfrena\\nfrench\\nfrenched\\nfrenches\\nfrenching\\nfrenetic\\nfrenetically\\nfrenetics\\nfrenula\\nfrenulum\\nfrenum\\nfrenums\\nfrenzied\\nfrenzies\\nfrenzily\\nfrenzy\\nfrenzying\\nfrequencies\\nfrequency\\nfrequent\\nfrequented\\nfrequenter\\nfrequenters\\nfrequentest\\nfrequenting\\nfrequently\\nfrequents\\nfrere\\nfreres\\nfresco\\nfrescoed\\nfrescoer\\nfrescoers\\nfrescoes\\nfrescoing\\nfrescos\\nfresh\\nfreshed\\nfreshen\\nfreshened\\nfreshening\\nfreshens\\nfresher\\nfreshes\\nfreshest\\nfreshet\\nfreshets\\nfreshing\\nfreshly\\nfreshman\\nfreshmen\\nfreshness\\nfreshnesses\\nfreshwater\\nfresnel\\nfresnels\\nfret\\nfretful\\nfretfully\\nfretfulness\\nfretfulnesses\\nfretless\\nfrets\\nfretsaw\\nfretsaws\\nfretsome\\nfretted\\nfrettier\\nfrettiest\\nfretting\\nfretty\\nfretwork\\nfretworks\\nfriable\\nfriar\\nfriaries\\nfriarly\\nfriars\\nfriary\\nfribble\\nfribbled\\nfribbler\\nfribblers\\nfribbles\\nfribbling\\nfricando\\nfricandoes\\nfricassee\\nfricassees\\nfriction\\nfrictional\\nfrictions\\nfridge\\nfridges\\nfried\\nfriend\\nfriended\\nfriending\\nfriendless\\nfriendlier\\nfriendlies\\nfriendliest\\nfriendliness\\nfriendlinesses\\nfriendly\\nfriends\\nfriendship\\nfriendships\\nfrier\\nfriers\\nfries\\nfrieze\\nfriezes\\nfrig\\nfrigate\\nfrigates\\nfrigged\\nfrigging\\nfright\\nfrighted\\nfrighten\\nfrightened\\nfrightening\\nfrightens\\nfrightful\\nfrightfully\\nfrightfulness\\nfrightfulnesses\\nfrighting\\nfrights\\nfrigid\\nfrigidities\\nfrigidity\\nfrigidly\\nfrigs\\nfrijol\\nfrijole\\nfrijoles\\nfrill\\nfrilled\\nfriller\\nfrillers\\nfrillier\\nfrilliest\\nfrilling\\nfrillings\\nfrills\\nfrilly\\nfringe\\nfringed\\nfringes\\nfringier\\nfringiest\\nfringing\\nfringy\\nfripperies\\nfrippery\\nfrise\\nfrises\\nfrisette\\nfrisettes\\nfriseur\\nfriseurs\\nfrisk\\nfrisked\\nfrisker\\nfriskers\\nfrisket\\nfriskets\\nfriskier\\nfriskiest\\nfriskily\\nfriskiness\\nfriskinesses\\nfrisking\\nfrisks\\nfrisky\\nfrisson\\nfrissons\\nfrit\\nfrith\\nfriths\\nfrits\\nfritt\\nfritted\\nfritter\\nfrittered\\nfrittering\\nfritters\\nfritting\\nfritts\\nfrivol\\nfrivoled\\nfrivoler\\nfrivolers\\nfrivoling\\nfrivolities\\nfrivolity\\nfrivolled\\nfrivolling\\nfrivolous\\nfrivolously\\nfrivols\\nfriz\\nfrized\\nfrizer\\nfrizers\\nfrizes\\nfrizette\\nfrizettes\\nfrizing\\nfrizz\\nfrizzed\\nfrizzer\\nfrizzers\\nfrizzes\\nfrizzier\\nfrizziest\\nfrizzily\\nfrizzing\\nfrizzle\\nfrizzled\\nfrizzler\\nfrizzlers\\nfrizzles\\nfrizzlier\\nfrizzliest\\nfrizzling\\nfrizzly\\nfrizzy\\nfro\\nfrock\\nfrocked\\nfrocking\\nfrocks\\nfroe\\nfroes\\nfrog\\nfrogeye\\nfrogeyed\\nfrogeyes\\nfrogfish\\nfrogfishes\\nfrogged\\nfroggier\\nfroggiest\\nfrogging\\nfroggy\\nfroglike\\nfrogman\\nfrogmen\\nfrogs\\nfrolic\\nfrolicked\\nfrolicking\\nfrolicky\\nfrolics\\nfrolicsome\\nfrom\\nfromage\\nfromages\\nfromenties\\nfromenty\\nfrond\\nfronded\\nfrondeur\\nfrondeurs\\nfrondose\\nfronds\\nfrons\\nfront\\nfrontage\\nfrontages\\nfrontal\\nfrontals\\nfronted\\nfronter\\nfrontes\\nfrontier\\nfrontiers\\nfrontiersman\\nfrontiersmen\\nfronting\\nfrontispiece\\nfrontispieces\\nfrontlet\\nfrontlets\\nfronton\\nfrontons\\nfronts\\nfrore\\nfrosh\\nfrost\\nfrostbit\\nfrostbite\\nfrostbites\\nfrostbitten\\nfrosted\\nfrosteds\\nfrostier\\nfrostiest\\nfrostily\\nfrosting\\nfrostings\\nfrosts\\nfrosty\\nfroth\\nfrothed\\nfrothier\\nfrothiest\\nfrothily\\nfrothing\\nfroths\\nfrothy\\nfrottage\\nfrottages\\nfrotteur\\nfrotteurs\\nfroufrou\\nfroufrous\\nfrounce\\nfrounced\\nfrounces\\nfrouncing\\nfrouzier\\nfrouziest\\nfrouzy\\nfrow\\nfroward\\nfrown\\nfrowned\\nfrowner\\nfrowners\\nfrowning\\nfrowns\\nfrows\\nfrowsier\\nfrowsiest\\nfrowstier\\nfrowstiest\\nfrowsty\\nfrowsy\\nfrowzier\\nfrowziest\\nfrowzily\\nfrowzy\\nfroze\\nfrozen\\nfrozenly\\nfructified\\nfructifies\\nfructify\\nfructifying\\nfructose\\nfructoses\\nfrug\\nfrugal\\nfrugalities\\nfrugality\\nfrugally\\nfrugged\\nfrugging\\nfrugs\\nfruit\\nfruitage\\nfruitages\\nfruitcake\\nfruitcakes\\nfruited\\nfruiter\\nfruiters\\nfruitful\\nfruitfuller\\nfruitfullest\\nfruitfulness\\nfruitfulnesses\\nfruitier\\nfruitiest\\nfruiting\\nfruition\\nfruitions\\nfruitless\\nfruitlet\\nfruitlets\\nfruits\\nfruity\\nfrumenties\\nfrumenty\\nfrump\\nfrumpier\\nfrumpiest\\nfrumpily\\nfrumpish\\nfrumps\\nfrumpy\\nfrusta\\nfrustrate\\nfrustrated\\nfrustrates\\nfrustrating\\nfrustratingly\\nfrustration\\nfrustrations\\nfrustule\\nfrustules\\nfrustum\\nfrustums\\nfry\\nfryer\\nfryers\\nfrying\\nfrypan\\nfrypans\\nfub\\nfubbed\\nfubbing\\nfubs\\nfubsier\\nfubsiest\\nfubsy\\nfuchsia\\nfuchsias\\nfuchsin\\nfuchsine\\nfuchsines\\nfuchsins\\nfuci\\nfucoid\\nfucoidal\\nfucoids\\nfucose\\nfucoses\\nfucous\\nfucus\\nfucuses\\nfud\\nfuddle\\nfuddled\\nfuddles\\nfuddling\\nfudge\\nfudged\\nfudges\\nfudging\\nfuds\\nfuehrer\\nfuehrers\\nfuel\\nfueled\\nfueler\\nfuelers\\nfueling\\nfuelled\\nfueller\\nfuellers\\nfuelling\\nfuels\\nfug\\nfugacities\\nfugacity\\nfugal\\nfugally\\nfugato\\nfugatos\\nfugged\\nfuggier\\nfuggiest\\nfugging\\nfuggy\\nfugio\\nfugios\\nfugitive\\nfugitives\\nfugle\\nfugled\\nfugleman\\nfuglemen\\nfugles\\nfugling\\nfugs\\nfugue\\nfugued\\nfugues\\nfuguing\\nfuguist\\nfuguists\\nfuhrer\\nfuhrers\\nfuji\\nfujis\\nfulcra\\nfulcrum\\nfulcrums\\nfulfil\\nfulfill\\nfulfilled\\nfulfilling\\nfulfillment\\nfulfillments\\nfulfills\\nfulfils\\nfulgent\\nfulgid\\nfulham\\nfulhams\\nfull\\nfullam\\nfullams\\nfullback\\nfullbacks\\nfulled\\nfuller\\nfullered\\nfulleries\\nfullering\\nfullers\\nfullery\\nfullest\\nfullface\\nfullfaces\\nfulling\\nfullness\\nfullnesses\\nfulls\\nfully\\nfulmar\\nfulmars\\nfulmine\\nfulmined\\nfulmines\\nfulminic\\nfulmining\\nfulness\\nfulnesses\\nfulsome\\nfulvous\\nfumarase\\nfumarases\\nfumarate\\nfumarates\\nfumaric\\nfumarole\\nfumaroles\\nfumatories\\nfumatory\\nfumble\\nfumbled\\nfumbler\\nfumblers\\nfumbles\\nfumbling\\nfume\\nfumed\\nfumeless\\nfumelike\\nfumer\\nfumers\\nfumes\\nfumet\\nfumets\\nfumette\\nfumettes\\nfumier\\nfumiest\\nfumigant\\nfumigants\\nfumigate\\nfumigated\\nfumigates\\nfumigating\\nfumigation\\nfumigations\\nfuming\\nfumitories\\nfumitory\\nfumuli\\nfumulus\\nfumy\\nfun\\nfunction\\nfunctional\\nfunctionally\\nfunctionaries\\nfunctionary\\nfunctioned\\nfunctioning\\nfunctionless\\nfunctions\\nfunctor\\nfunctors\\nfund\\nfundamental\\nfundamentally\\nfundamentals\\nfunded\\nfundi\\nfundic\\nfunding\\nfunds\\nfundus\\nfuneral\\nfunerals\\nfunerary\\nfunereal\\nfunest\\nfunfair\\nfunfairs\\nfungal\\nfungals\\nfungi\\nfungible\\nfungibles\\nfungic\\nfungicidal\\nfungicide\\nfungicides\\nfungo\\nfungoes\\nfungoid\\nfungoids\\nfungous\\nfungus\\nfunguses\\nfunicle\\nfunicles\\nfuniculi\\nfunk\\nfunked\\nfunker\\nfunkers\\nfunkia\\nfunkias\\nfunkier\\nfunkiest\\nfunking\\nfunks\\nfunky\\nfunned\\nfunnel\\nfunneled\\nfunneling\\nfunnelled\\nfunnelling\\nfunnels\\nfunnier\\nfunnies\\nfunniest\\nfunnily\\nfunning\\nfunny\\nfunnyman\\nfunnymen\\nfuns\\nfur\\nfuran\\nfurane\\nfuranes\\nfuranose\\nfuranoses\\nfurans\\nfurbelow\\nfurbelowed\\nfurbelowing\\nfurbelows\\nfurbish\\nfurbished\\nfurbishes\\nfurbishing\\nfurcate\\nfurcated\\nfurcates\\nfurcating\\nfurcraea\\nfurcraeas\\nfurcula\\nfurculae\\nfurcular\\nfurculum\\nfurfur\\nfurfural\\nfurfurals\\nfurfuran\\nfurfurans\\nfurfures\\nfuribund\\nfuries\\nfurioso\\nfurious\\nfuriously\\nfurl\\nfurlable\\nfurled\\nfurler\\nfurlers\\nfurless\\nfurling\\nfurlong\\nfurlongs\\nfurlough\\nfurloughed\\nfurloughing\\nfurloughs\\nfurls\\nfurmenties\\nfurmenty\\nfurmeties\\nfurmety\\nfurmities\\nfurmity\\nfurnace\\nfurnaced\\nfurnaces\\nfurnacing\\nfurnish\\nfurnished\\nfurnishes\\nfurnishing\\nfurnishings\\nfurniture\\nfurnitures\\nfuror\\nfurore\\nfurores\\nfurors\\nfurred\\nfurrier\\nfurrieries\\nfurriers\\nfurriery\\nfurriest\\nfurrily\\nfurriner\\nfurriners\\nfurring\\nfurrings\\nfurrow\\nfurrowed\\nfurrower\\nfurrowers\\nfurrowing\\nfurrows\\nfurrowy\\nfurry\\nfurs\\nfurther\\nfurthered\\nfurthering\\nfurthermore\\nfurthermost\\nfurthers\\nfurthest\\nfurtive\\nfurtively\\nfurtiveness\\nfurtivenesses\\nfuruncle\\nfuruncles\\nfury\\nfurze\\nfurzes\\nfurzier\\nfurziest\\nfurzy\\nfusain\\nfusains\\nfuscous\\nfuse\\nfused\\nfusee\\nfusees\\nfusel\\nfuselage\\nfuselages\\nfuseless\\nfusels\\nfuses\\nfusible\\nfusibly\\nfusiform\\nfusil\\nfusile\\nfusileer\\nfusileers\\nfusilier\\nfusiliers\\nfusillade\\nfusillades\\nfusils\\nfusing\\nfusion\\nfusions\\nfuss\\nfussbudget\\nfussbudgets\\nfussed\\nfusser\\nfussers\\nfusses\\nfussier\\nfussiest\\nfussily\\nfussiness\\nfussinesses\\nfussing\\nfusspot\\nfusspots\\nfussy\\nfustian\\nfustians\\nfustic\\nfustics\\nfustier\\nfustiest\\nfustily\\nfusty\\nfutharc\\nfutharcs\\nfuthark\\nfutharks\\nfuthorc\\nfuthorcs\\nfuthork\\nfuthorks\\nfutile\\nfutilely\\nfutilities\\nfutility\\nfuttock\\nfuttocks\\nfutural\\nfuture\\nfutures\\nfuturism\\nfuturisms\\nfuturist\\nfuturistic\\nfuturists\\nfuturities\\nfuturity\\nfuze\\nfuzed\\nfuzee\\nfuzees\\nfuzes\\nfuzil\\nfuzils\\nfuzing\\nfuzz\\nfuzzed\\nfuzzes\\nfuzzier\\nfuzziest\\nfuzzily\\nfuzziness\\nfuzzinesses\\nfuzzing\\nfuzzy\\nfyce\\nfyces\\nfyke\\nfykes\\nfylfot\\nfylfots\\nfytte\\nfyttes\\ngab\\ngabardine\\ngabardines\\ngabbard\\ngabbards\\ngabbart\\ngabbarts\\ngabbed\\ngabber\\ngabbers\\ngabbier\\ngabbiest\\ngabbing\\ngabble\\ngabbled\\ngabbler\\ngabblers\\ngabbles\\ngabbling\\ngabbro\\ngabbroic\\ngabbroid\\ngabbros\\ngabby\\ngabelle\\ngabelled\\ngabelles\\ngabfest\\ngabfests\\ngabies\\ngabion\\ngabions\\ngable\\ngabled\\ngables\\ngabling\\ngaboon\\ngaboons\\ngabs\\ngaby\\ngad\\ngadabout\\ngadabouts\\ngadarene\\ngadded\\ngadder\\ngadders\\ngaddi\\ngadding\\ngaddis\\ngadflies\\ngadfly\\ngadget\\ngadgetries\\ngadgetry\\ngadgets\\ngadgety\\ngadi\\ngadid\\ngadids\\ngadis\\ngadoid\\ngadoids\\ngadroon\\ngadroons\\ngads\\ngadwall\\ngadwalls\\ngadzooks\\ngae\\ngaed\\ngaen\\ngaes\\ngaff\\ngaffe\\ngaffed\\ngaffer\\ngaffers\\ngaffes\\ngaffing\\ngaffs\\ngag\\ngaga\\ngage\\ngaged\\ngager\\ngagers\\ngages\\ngagged\\ngagger\\ngaggers\\ngagging\\ngaggle\\ngaggled\\ngaggles\\ngaggling\\ngaging\\ngagman\\ngagmen\\ngags\\ngagster\\ngagsters\\ngahnite\\ngahnites\\ngaieties\\ngaiety\\ngaily\\ngain\\ngainable\\ngained\\ngainer\\ngainers\\ngainful\\ngainfully\\ngaining\\ngainless\\ngainlier\\ngainliest\\ngainly\\ngains\\ngainsaid\\ngainsay\\ngainsayer\\ngainsayers\\ngainsaying\\ngainsays\\ngainst\\ngait\\ngaited\\ngaiter\\ngaiters\\ngaiting\\ngaits\\ngal\\ngala\\ngalactic\\ngalactorrhea\\ngalago\\ngalagos\\ngalah\\ngalahs\\ngalangal\\ngalangals\\ngalas\\ngalatea\\ngalateas\\ngalavant\\ngalavanted\\ngalavanting\\ngalavants\\ngalax\\ngalaxes\\ngalaxies\\ngalaxy\\ngalbanum\\ngalbanums\\ngale\\ngalea\\ngaleae\\ngaleas\\ngaleate\\ngaleated\\ngalena\\ngalenas\\ngalenic\\ngalenite\\ngalenites\\ngalere\\ngaleres\\ngales\\ngalilee\\ngalilees\\ngaliot\\ngaliots\\ngalipot\\ngalipots\\ngalivant\\ngalivanted\\ngalivanting\\ngalivants\\ngall\\ngallant\\ngallanted\\ngallanting\\ngallantly\\ngallantries\\ngallantry\\ngallants\\ngallate\\ngallates\\ngallbladder\\ngallbladders\\ngalleass\\ngalleasses\\ngalled\\ngallein\\ngalleins\\ngalleon\\ngalleons\\ngalleried\\ngalleries\\ngallery\\ngallerying\\ngalleta\\ngalletas\\ngalley\\ngalleys\\ngallflies\\ngallfly\\ngalliard\\ngalliards\\ngalliass\\ngalliasses\\ngallic\\ngallican\\ngallied\\ngallies\\ngalling\\ngalliot\\ngalliots\\ngallipot\\ngallipots\\ngallium\\ngalliums\\ngallivant\\ngallivanted\\ngallivanting\\ngallivants\\ngallnut\\ngallnuts\\ngallon\\ngallons\\ngalloon\\ngalloons\\ngalloot\\ngalloots\\ngallop\\ngalloped\\ngalloper\\ngallopers\\ngalloping\\ngallops\\ngallous\\ngallows\\ngallowses\\ngalls\\ngallstone\\ngallstones\\ngallus\\ngallused\\ngalluses\\ngally\\ngallying\\ngaloot\\ngaloots\\ngalop\\ngalopade\\ngalopades\\ngalops\\ngalore\\ngalores\\ngalosh\\ngaloshe\\ngaloshed\\ngaloshes\\ngals\\ngalumph\\ngalumphed\\ngalumphing\\ngalumphs\\ngalvanic\\ngalvanization\\ngalvanizations\\ngalvanize\\ngalvanized\\ngalvanizer\\ngalvanizers\\ngalvanizes\\ngalvanizing\\ngalyac\\ngalyacs\\ngalyak\\ngalyaks\\ngam\\ngamashes\\ngamb\\ngamba\\ngambade\\ngambades\\ngambado\\ngambadoes\\ngambados\\ngambas\\ngambe\\ngambes\\ngambeson\\ngambesons\\ngambia\\ngambias\\ngambier\\ngambiers\\ngambir\\ngambirs\\ngambit\\ngambits\\ngamble\\ngambled\\ngambler\\ngamblers\\ngambles\\ngambling\\ngamboge\\ngamboges\\ngambol\\ngamboled\\ngamboling\\ngambolled\\ngambolling\\ngambols\\ngambrel\\ngambrels\\ngambs\\ngambusia\\ngambusias\\ngame\\ngamecock\\ngamecocks\\ngamed\\ngamekeeper\\ngamekeepers\\ngamelan\\ngamelans\\ngamelike\\ngamely\\ngameness\\ngamenesses\\ngamer\\ngames\\ngamesome\\ngamest\\ngamester\\ngamesters\\ngamete\\ngametes\\ngametic\\ngamey\\ngamic\\ngamier\\ngamiest\\ngamily\\ngamin\\ngamine\\ngamines\\ngaminess\\ngaminesses\\ngaming\\ngamings\\ngamins\\ngamma\\ngammadia\\ngammas\\ngammed\\ngammer\\ngammers\\ngamming\\ngammon\\ngammoned\\ngammoner\\ngammoners\\ngammoning\\ngammons\\ngamodeme\\ngamodemes\\ngamp\\ngamps\\ngams\\ngamut\\ngamuts\\ngamy\\ngan\\ngander\\ngandered\\ngandering\\nganders\\ngane\\nganef\\nganefs\\nganev\\nganevs\\ngang\\nganged\\nganger\\ngangers\\nganging\\ngangland\\nganglands\\nganglia\\nganglial\\ngangliar\\nganglier\\ngangliest\\ngangling\\nganglion\\nganglionic\\nganglions\\ngangly\\ngangplank\\ngangplanks\\ngangplow\\ngangplows\\ngangrel\\ngangrels\\ngangrene\\ngangrened\\ngangrenes\\ngangrening\\ngangrenous\\ngangs\\ngangster\\ngangsters\\ngangue\\ngangues\\ngangway\\ngangways\\nganister\\nganisters\\nganja\\nganjas\\ngannet\\ngannets\\nganof\\nganofs\\nganoid\\nganoids\\ngantlet\\ngantleted\\ngantleting\\ngantlets\\ngantline\\ngantlines\\ngantlope\\ngantlopes\\ngantries\\ngantry\\nganymede\\nganymedes\\ngaol\\ngaoled\\ngaoler\\ngaolers\\ngaoling\\ngaols\\ngap\\ngape\\ngaped\\ngaper\\ngapers\\ngapes\\ngapeseed\\ngapeseeds\\ngapeworm\\ngapeworms\\ngaping\\ngapingly\\ngaposis\\ngaposises\\ngapped\\ngappier\\ngappiest\\ngapping\\ngappy\\ngaps\\ngapy\\ngar\\ngarage\\ngaraged\\ngarages\\ngaraging\\ngarb\\ngarbage\\ngarbages\\ngarbanzo\\ngarbanzos\\ngarbed\\ngarbing\\ngarble\\ngarbled\\ngarbler\\ngarblers\\ngarbles\\ngarbless\\ngarbling\\ngarboard\\ngarboards\\ngarboil\\ngarboils\\ngarbs\\ngarcon\\ngarcons\\ngardant\\ngarden\\ngardened\\ngardener\\ngardeners\\ngardenia\\ngardenias\\ngardening\\ngardens\\ngardyloo\\ngarfish\\ngarfishes\\ngarganey\\ngarganeys\\ngargantuan\\ngarget\\ngargets\\ngargety\\ngargle\\ngargled\\ngargler\\ngarglers\\ngargles\\ngargling\\ngargoyle\\ngargoyles\\ngarish\\ngarishly\\ngarland\\ngarlanded\\ngarlanding\\ngarlands\\ngarlic\\ngarlicky\\ngarlics\\ngarment\\ngarmented\\ngarmenting\\ngarments\\ngarner\\ngarnered\\ngarnering\\ngarners\\ngarnet\\ngarnets\\ngarnish\\ngarnished\\ngarnishee\\ngarnisheed\\ngarnishees\\ngarnisheing\\ngarnishes\\ngarnishing\\ngarnishment\\ngarnishments\\ngarote\\ngaroted\\ngarotes\\ngaroting\\ngarotte\\ngarotted\\ngarotter\\ngarotters\\ngarottes\\ngarotting\\ngarpike\\ngarpikes\\ngarred\\ngarret\\ngarrets\\ngarring\\ngarrison\\ngarrisoned\\ngarrisoning\\ngarrisons\\ngarron\\ngarrons\\ngarrote\\ngarroted\\ngarroter\\ngarroters\\ngarrotes\\ngarroting\\ngarrotte\\ngarrotted\\ngarrottes\\ngarrotting\\ngarrulities\\ngarrulity\\ngarrulous\\ngarrulously\\ngarrulousness\\ngarrulousnesses\\ngars\\ngarter\\ngartered\\ngartering\\ngarters\\ngarth\\ngarths\\ngarvey\\ngarveys\\ngas\\ngasalier\\ngasaliers\\ngasbag\\ngasbags\\ngascon\\ngascons\\ngaselier\\ngaseliers\\ngaseous\\ngases\\ngash\\ngashed\\ngasher\\ngashes\\ngashest\\ngashing\\ngashouse\\ngashouses\\ngasified\\ngasifier\\ngasifiers\\ngasifies\\ngasiform\\ngasify\\ngasifying\\ngasket\\ngaskets\\ngaskin\\ngasking\\ngaskings\\ngaskins\\ngasless\\ngaslight\\ngaslights\\ngaslit\\ngasman\\ngasmen\\ngasogene\\ngasogenes\\ngasolene\\ngasolenes\\ngasolier\\ngasoliers\\ngasoline\\ngasolines\\ngasp\\ngasped\\ngasper\\ngaspers\\ngasping\\ngasps\\ngassed\\ngasser\\ngassers\\ngasses\\ngassier\\ngassiest\\ngassing\\ngassings\\ngassy\\ngast\\ngasted\\ngastight\\ngasting\\ngastness\\ngastnesses\\ngastraea\\ngastraeas\\ngastral\\ngastrea\\ngastreas\\ngastric\\ngastrin\\ngastrins\\ngastronomic\\ngastronomical\\ngastronomies\\ngastronomy\\ngastrula\\ngastrulae\\ngastrulas\\ngasts\\ngasworks\\ngat\\ngate\\ngated\\ngatefold\\ngatefolds\\ngatekeeper\\ngatekeepers\\ngateless\\ngatelike\\ngateman\\ngatemen\\ngatepost\\ngateposts\\ngates\\ngateway\\ngateways\\ngather\\ngathered\\ngatherer\\ngatherers\\ngathering\\ngatherings\\ngathers\\ngating\\ngats\\ngauche\\ngauchely\\ngaucher\\ngauchest\\ngaucho\\ngauchos\\ngaud\\ngauderies\\ngaudery\\ngaudier\\ngaudies\\ngaudiest\\ngaudily\\ngaudiness\\ngaudinesses\\ngauds\\ngaudy\\ngauffer\\ngauffered\\ngauffering\\ngauffers\\ngauge\\ngauged\\ngauger\\ngaugers\\ngauges\\ngauging\\ngault\\ngaults\\ngaum\\ngaumed\\ngauming\\ngaums\\ngaun\\ngaunt\\ngaunter\\ngauntest\\ngauntlet\\ngauntleted\\ngauntleting\\ngauntlets\\ngauntly\\ngauntness\\ngauntnesses\\ngauntries\\ngauntry\\ngaur\\ngaurs\\ngauss\\ngausses\\ngauze\\ngauzes\\ngauzier\\ngauziest\\ngauzy\\ngavage\\ngavages\\ngave\\ngavel\\ngaveled\\ngaveling\\ngavelled\\ngavelling\\ngavelock\\ngavelocks\\ngavels\\ngavial\\ngavials\\ngavot\\ngavots\\ngavotte\\ngavotted\\ngavottes\\ngavotting\\ngawk\\ngawked\\ngawker\\ngawkers\\ngawkier\\ngawkies\\ngawkiest\\ngawkily\\ngawking\\ngawkish\\ngawks\\ngawky\\ngawsie\\ngawsy\\ngay\\ngayal\\ngayals\\ngayer\\ngayest\\ngayeties\\ngayety\\ngayly\\ngayness\\ngaynesses\\ngays\\ngaywing\\ngaywings\\ngazabo\\ngazaboes\\ngazabos\\ngaze\\ngazebo\\ngazeboes\\ngazebos\\ngazed\\ngazelle\\ngazelles\\ngazer\\ngazers\\ngazes\\ngazette\\ngazetted\\ngazetteer\\ngazetteers\\ngazettes\\ngazetting\\ngazing\\ngazogene\\ngazogenes\\ngazpacho\\ngazpachos\\ngear\\ngearbox\\ngearboxes\\ngearcase\\ngearcases\\ngeared\\ngearing\\ngearings\\ngearless\\ngears\\ngearshift\\ngearshifts\\ngeck\\ngecked\\ngecking\\ngecko\\ngeckoes\\ngeckos\\ngecks\\nged\\ngeds\\ngee\\ngeed\\ngeegaw\\ngeegaws\\ngeeing\\ngeek\\ngeeks\\ngeepound\\ngeepounds\\ngees\\ngeese\\ngeest\\ngeests\\ngeezer\\ngeezers\\ngeisha\\ngeishas\\ngel\\ngelable\\ngelada\\ngeladas\\ngelant\\ngelants\\ngelate\\ngelated\\ngelates\\ngelatin\\ngelatine\\ngelatines\\ngelating\\ngelatinous\\ngelatins\\ngelation\\ngelations\\ngeld\\ngelded\\ngelder\\ngelders\\ngelding\\ngeldings\\ngelds\\ngelee\\ngelees\\ngelid\\ngelidities\\ngelidity\\ngelidly\\ngellant\\ngellants\\ngelled\\ngelling\\ngels\\ngelsemia\\ngelt\\ngelts\\ngem\\ngeminal\\ngeminate\\ngeminated\\ngeminates\\ngeminating\\ngemlike\\ngemma\\ngemmae\\ngemmate\\ngemmated\\ngemmates\\ngemmating\\ngemmed\\ngemmier\\ngemmiest\\ngemmily\\ngemming\\ngemmule\\ngemmules\\ngemmy\\ngemologies\\ngemology\\ngemot\\ngemote\\ngemotes\\ngemots\\ngems\\ngemsbok\\ngemsboks\\ngemsbuck\\ngemsbucks\\ngemstone\\ngemstones\\ngendarme\\ngendarmes\\ngender\\ngendered\\ngendering\\ngenders\\ngene\\ngeneological\\ngeneologically\\ngeneologist\\ngeneologists\\ngeneology\\ngenera\\ngeneral\\ngeneralities\\ngenerality\\ngeneralizability\\ngeneralization\\ngeneralizations\\ngeneralize\\ngeneralized\\ngeneralizes\\ngeneralizing\\ngenerally\\ngenerals\\ngenerate\\ngenerated\\ngenerates\\ngenerating\\ngeneration\\ngenerations\\ngenerative\\ngenerator\\ngenerators\\ngeneric\\ngenerics\\ngenerosities\\ngenerosity\\ngenerous\\ngenerously\\ngenerousness\\ngenerousnesses\\ngenes\\ngeneses\\ngenesis\\ngenet\\ngenetic\\ngenetically\\ngeneticist\\ngeneticists\\ngenetics\\ngenets\\ngenette\\ngenettes\\ngeneva\\ngenevas\\ngenial\\ngenialities\\ngeniality\\ngenially\\ngenic\\ngenie\\ngenies\\ngenii\\ngenip\\ngenipap\\ngenipaps\\ngenips\\ngenital\\ngenitalia\\ngenitally\\ngenitals\\ngenitive\\ngenitives\\ngenitor\\ngenitors\\ngenitourinary\\ngeniture\\ngenitures\\ngenius\\ngeniuses\\ngenoa\\ngenoas\\ngenocide\\ngenocides\\ngenom\\ngenome\\ngenomes\\ngenomic\\ngenoms\\ngenotype\\ngenotypes\\ngenre\\ngenres\\ngenro\\ngenros\\ngens\\ngenseng\\ngensengs\\ngent\\ngenteel\\ngenteeler\\ngenteelest\\ngentes\\ngentian\\ngentians\\ngentil\\ngentile\\ngentiles\\ngentilities\\ngentility\\ngentle\\ngentled\\ngentlefolk\\ngentleman\\ngentlemen\\ngentleness\\ngentlenesses\\ngentler\\ngentles\\ngentlest\\ngentlewoman\\ngentlewomen\\ngentling\\ngently\\ngentrice\\ngentrices\\ngentries\\ngentry\\ngents\\ngenu\\ngenua\\ngenuflect\\ngenuflected\\ngenuflecting\\ngenuflection\\ngenuflections\\ngenuflects\\ngenuine\\ngenuinely\\ngenuineness\\ngenuinenesses\\ngenus\\ngenuses\\ngeode\\ngeodes\\ngeodesic\\ngeodesics\\ngeodesies\\ngeodesy\\ngeodetic\\ngeodic\\ngeoduck\\ngeoducks\\ngeognosies\\ngeognosy\\ngeographer\\ngeographers\\ngeographic\\ngeographical\\ngeographically\\ngeographies\\ngeography\\ngeoid\\ngeoidal\\ngeoids\\ngeologer\\ngeologers\\ngeologic\\ngeological\\ngeologies\\ngeologist\\ngeologists\\ngeology\\ngeomancies\\ngeomancy\\ngeometer\\ngeometers\\ngeometric\\ngeometrical\\ngeometries\\ngeometry\\ngeophagies\\ngeophagy\\ngeophone\\ngeophones\\ngeophysical\\ngeophysicist\\ngeophysicists\\ngeophysics\\ngeophyte\\ngeophytes\\ngeoponic\\ngeorgic\\ngeorgics\\ngeotaxes\\ngeotaxis\\ngeothermal\\ngeothermic\\ngerah\\ngerahs\\ngeranial\\ngeranials\\ngeraniol\\ngeraniols\\ngeranium\\ngeraniums\\ngerardia\\ngerardias\\ngerbera\\ngerberas\\ngerbil\\ngerbille\\ngerbilles\\ngerbils\\ngerent\\ngerents\\ngerenuk\\ngerenuks\\ngeriatric\\ngeriatrics\\ngerm\\ngerman\\ngermane\\ngermanic\\ngermanium\\ngermaniums\\ngermans\\ngermen\\ngermens\\ngermfree\\ngermicidal\\ngermicide\\ngermicides\\ngermier\\ngermiest\\ngermina\\ngerminal\\ngerminate\\ngerminated\\ngerminates\\ngerminating\\ngermination\\ngerminations\\ngerms\\ngermy\\ngerontic\\ngerrymander\\ngerrymandered\\ngerrymandering\\ngerrymanders\\ngerund\\ngerunds\\ngesso\\ngessoes\\ngest\\ngestalt\\ngestalten\\ngestalts\\ngestapo\\ngestapos\\ngestate\\ngestated\\ngestates\\ngestating\\ngeste\\ngestes\\ngestic\\ngestical\\ngests\\ngestural\\ngesture\\ngestured\\ngesturer\\ngesturers\\ngestures\\ngesturing\\ngesundheit\\nget\\ngetable\\ngetaway\\ngetaways\\ngets\\ngettable\\ngetter\\ngettered\\ngettering\\ngetters\\ngetting\\ngetup\\ngetups\\ngeum\\ngeums\\ngewgaw\\ngewgaws\\ngey\\ngeyser\\ngeysers\\ngharri\\ngharries\\ngharris\\ngharry\\nghast\\nghastful\\nghastlier\\nghastliest\\nghastly\\nghat\\nghats\\nghaut\\nghauts\\nghazi\\nghazies\\nghazis\\nghee\\nghees\\ngherao\\ngheraoed\\ngheraoes\\ngheraoing\\ngherkin\\ngherkins\\nghetto\\nghettoed\\nghettoes\\nghettoing\\nghettos\\nghi\\nghibli\\nghiblis\\nghillie\\nghillies\\nghis\\nghost\\nghosted\\nghostier\\nghostiest\\nghosting\\nghostlier\\nghostliest\\nghostly\\nghosts\\nghostwrite\\nghostwriter\\nghostwriters\\nghostwrites\\nghostwritten\\nghostwrote\\nghosty\\nghoul\\nghoulish\\nghouls\\nghyll\\nghylls\\ngiant\\ngiantess\\ngiantesses\\ngiantism\\ngiantisms\\ngiants\\ngiaour\\ngiaours\\ngib\\ngibbed\\ngibber\\ngibbered\\ngibbering\\ngibberish\\ngibberishes\\ngibbers\\ngibbet\\ngibbeted\\ngibbeting\\ngibbets\\ngibbetted\\ngibbetting\\ngibbing\\ngibbon\\ngibbons\\ngibbose\\ngibbous\\ngibbsite\\ngibbsites\\ngibe\\ngibed\\ngiber\\ngibers\\ngibes\\ngibing\\ngibingly\\ngiblet\\ngiblets\\ngibs\\ngid\\ngiddap\\ngiddied\\ngiddier\\ngiddies\\ngiddiest\\ngiddily\\ngiddiness\\ngiddinesses\\ngiddy\\ngiddying\\ngids\\ngie\\ngied\\ngieing\\ngien\\ngies\\ngift\\ngifted\\ngiftedly\\ngifting\\ngiftless\\ngifts\\ngig\\ngiga\\ngigabit\\ngigabits\\ngigantic\\ngigas\\ngigaton\\ngigatons\\ngigawatt\\ngigawatts\\ngigged\\ngigging\\ngiggle\\ngiggled\\ngiggler\\ngigglers\\ngiggles\\ngigglier\\ngiggliest\\ngiggling\\ngiggly\\ngighe\\ngiglet\\ngiglets\\ngiglot\\ngiglots\\ngigolo\\ngigolos\\ngigot\\ngigots\\ngigs\\ngigue\\ngigues\\ngilbert\\ngilberts\\ngild\\ngilded\\ngilder\\ngilders\\ngildhall\\ngildhalls\\ngilding\\ngildings\\ngilds\\ngill\\ngilled\\ngiller\\ngillers\\ngillie\\ngillied\\ngillies\\ngilling\\ngillnet\\ngillnets\\ngillnetted\\ngillnetting\\ngills\\ngilly\\ngillying\\ngilt\\ngilthead\\ngiltheads\\ngilts\\ngimbal\\ngimbaled\\ngimbaling\\ngimballed\\ngimballing\\ngimbals\\ngimcrack\\ngimcracks\\ngimel\\ngimels\\ngimlet\\ngimleted\\ngimleting\\ngimlets\\ngimmal\\ngimmals\\ngimmick\\ngimmicked\\ngimmicking\\ngimmicks\\ngimmicky\\ngimp\\ngimped\\ngimpier\\ngimpiest\\ngimping\\ngimps\\ngimpy\\ngin\\ngingal\\ngingall\\ngingalls\\ngingals\\ngingeley\\ngingeleys\\ngingeli\\ngingelies\\ngingelis\\ngingellies\\ngingelly\\ngingely\\nginger\\ngingerbread\\ngingerbreads\\ngingered\\ngingering\\ngingerly\\ngingers\\ngingery\\ngingham\\nginghams\\ngingili\\ngingilis\\ngingiva\\ngingivae\\ngingival\\ngingivitis\\ngingivitises\\ngingko\\ngingkoes\\ngink\\nginkgo\\nginkgoes\\nginks\\nginned\\nginner\\nginners\\nginnier\\nginniest\\nginning\\nginnings\\nginny\\ngins\\nginseng\\nginsengs\\ngip\\ngipon\\ngipons\\ngipped\\ngipper\\ngippers\\ngipping\\ngips\\ngipsied\\ngipsies\\ngipsy\\ngipsying\\ngiraffe\\ngiraffes\\ngirasol\\ngirasole\\ngirasoles\\ngirasols\\ngird\\ngirded\\ngirder\\ngirders\\ngirding\\ngirdle\\ngirdled\\ngirdler\\ngirdlers\\ngirdles\\ngirdling\\ngirds\\ngirl\\ngirlhood\\ngirlhoods\\ngirlie\\ngirlies\\ngirlish\\ngirls\\ngirly\\ngirn\\ngirned\\ngirning\\ngirns\\ngiro\\ngiron\\ngirons\\ngiros\\ngirosol\\ngirosols\\ngirsh\\ngirshes\\ngirt\\ngirted\\ngirth\\ngirthed\\ngirthing\\ngirths\\ngirting\\ngirts\\ngisarme\\ngisarmes\\ngismo\\ngismos\\ngist\\ngists\\ngit\\ngitano\\ngitanos\\ngittern\\ngitterns\\ngive\\ngiveable\\ngiveaway\\ngiveaways\\ngiven\\ngivens\\ngiver\\ngivers\\ngives\\ngiving\\ngizmo\\ngizmos\\ngizzard\\ngizzards\\ngjetost\\ngjetosts\\nglabella\\nglabellae\\nglabrate\\nglabrous\\nglace\\nglaceed\\nglaceing\\nglaces\\nglacial\\nglacially\\nglaciate\\nglaciated\\nglaciates\\nglaciating\\nglacier\\nglaciers\\nglacis\\nglacises\\nglad\\ngladded\\ngladden\\ngladdened\\ngladdening\\ngladdens\\ngladder\\ngladdest\\ngladding\\nglade\\nglades\\ngladiate\\ngladiator\\ngladiatorial\\ngladiators\\ngladier\\ngladiest\\ngladiola\\ngladiolas\\ngladioli\\ngladiolus\\ngladlier\\ngladliest\\ngladly\\ngladness\\ngladnesses\\nglads\\ngladsome\\ngladsomer\\ngladsomest\\nglady\\nglaiket\\nglaikit\\nglair\\nglaire\\nglaired\\nglaires\\nglairier\\nglairiest\\nglairing\\nglairs\\nglairy\\nglaive\\nglaived\\nglaives\\nglamor\\nglamorize\\nglamorized\\nglamorizes\\nglamorizing\\nglamorous\\nglamors\\nglamour\\nglamoured\\nglamouring\\nglamours\\nglance\\nglanced\\nglances\\nglancing\\ngland\\nglanders\\nglandes\\nglands\\nglandular\\nglandule\\nglandules\\nglans\\nglare\\nglared\\nglares\\nglarier\\nglariest\\nglaring\\nglaringly\\nglary\\nglass\\nglassblower\\nglassblowers\\nglassblowing\\nglassblowings\\nglassed\\nglasses\\nglassful\\nglassfuls\\nglassie\\nglassier\\nglassies\\nglassiest\\nglassily\\nglassine\\nglassines\\nglassing\\nglassman\\nglassmen\\nglassware\\nglasswares\\nglassy\\nglaucoma\\nglaucomas\\nglaucous\\nglaze\\nglazed\\nglazer\\nglazers\\nglazes\\nglazier\\nglazieries\\nglaziers\\nglaziery\\nglaziest\\nglazing\\nglazings\\nglazy\\ngleam\\ngleamed\\ngleamier\\ngleamiest\\ngleaming\\ngleams\\ngleamy\\nglean\\ngleanable\\ngleaned\\ngleaner\\ngleaners\\ngleaning\\ngleanings\\ngleans\\ngleba\\nglebae\\nglebe\\nglebes\\ngled\\nglede\\ngledes\\ngleds\\nglee\\ngleed\\ngleeds\\ngleeful\\ngleek\\ngleeked\\ngleeking\\ngleeks\\ngleeman\\ngleemen\\nglees\\ngleesome\\ngleet\\ngleeted\\ngleetier\\ngleetiest\\ngleeting\\ngleets\\ngleety\\ngleg\\nglegly\\nglegness\\nglegnesses\\nglen\\nglenlike\\nglenoid\\nglens\\ngley\\ngleys\\ngliadin\\ngliadine\\ngliadines\\ngliadins\\nglial\\nglib\\nglibber\\nglibbest\\nglibly\\nglibness\\nglibnesses\\nglide\\nglided\\nglider\\ngliders\\nglides\\ngliding\\ngliff\\ngliffs\\nglim\\nglime\\nglimed\\nglimes\\ngliming\\nglimmer\\nglimmered\\nglimmering\\nglimmers\\nglimpse\\nglimpsed\\nglimpser\\nglimpsers\\nglimpses\\nglimpsing\\nglims\\nglint\\nglinted\\nglinting\\nglints\\nglioma\\ngliomas\\ngliomata\\nglissade\\nglissaded\\nglissades\\nglissading\\nglisten\\nglistened\\nglistening\\nglistens\\nglister\\nglistered\\nglistering\\nglisters\\nglitch\\nglitches\\nglitter\\nglittered\\nglittering\\nglitters\\nglittery\\ngloam\\ngloaming\\ngloamings\\ngloams\\ngloat\\ngloated\\ngloater\\ngloaters\\ngloating\\ngloats\\nglob\\nglobal\\nglobally\\nglobate\\nglobated\\nglobe\\nglobed\\nglobes\\nglobin\\nglobing\\nglobins\\ngloboid\\ngloboids\\nglobose\\nglobous\\nglobs\\nglobular\\nglobule\\nglobules\\nglobulin\\nglobulins\\nglochid\\nglochids\\nglockenspiel\\nglockenspiels\\nglogg\\ngloggs\\nglom\\nglomera\\nglommed\\nglomming\\ngloms\\nglomus\\ngloom\\ngloomed\\ngloomful\\ngloomier\\ngloomiest\\ngloomily\\ngloominess\\ngloominesses\\nglooming\\ngloomings\\nglooms\\ngloomy\\nglop\\nglops\\ngloria\\nglorias\\ngloried\\nglories\\nglorification\\nglorifications\\nglorified\\nglorifies\\nglorify\\nglorifying\\ngloriole\\nglorioles\\nglorious\\ngloriously\\nglory\\nglorying\\ngloss\\nglossa\\nglossae\\nglossal\\nglossarial\\nglossaries\\nglossary\\nglossas\\nglossed\\nglosseme\\nglossemes\\nglosser\\nglossers\\nglosses\\nglossier\\nglossies\\nglossiest\\nglossily\\nglossina\\nglossinas\\nglossiness\\nglossinesses\\nglossing\\nglossy\\nglost\\nglosts\\nglottal\\nglottic\\nglottides\\nglottis\\nglottises\\nglout\\nglouted\\nglouting\\nglouts\\nglove\\ngloved\\nglover\\nglovers\\ngloves\\ngloving\\nglow\\nglowed\\nglower\\nglowered\\nglowering\\nglowers\\nglowflies\\nglowfly\\nglowing\\nglows\\nglowworm\\nglowworms\\ngloxinia\\ngloxinias\\ngloze\\nglozed\\nglozes\\nglozing\\nglucagon\\nglucagons\\nglucinic\\nglucinum\\nglucinums\\nglucose\\nglucoses\\nglucosic\\nglue\\nglued\\nglueing\\ngluelike\\ngluer\\ngluers\\nglues\\ngluey\\ngluier\\ngluiest\\ngluily\\ngluing\\nglum\\nglume\\nglumes\\nglumly\\nglummer\\nglummest\\nglumness\\nglumnesses\\nglumpier\\nglumpiest\\nglumpily\\nglumpy\\nglunch\\nglunched\\nglunches\\nglunching\\nglut\\ngluteal\\nglutei\\nglutelin\\nglutelins\\ngluten\\nglutens\\ngluteus\\nglutinous\\ngluts\\nglutted\\nglutting\\nglutton\\ngluttonies\\ngluttonous\\ngluttons\\ngluttony\\nglycan\\nglycans\\nglyceric\\nglycerin\\nglycerine\\nglycerines\\nglycerins\\nglycerol\\nglycerols\\nglyceryl\\nglyceryls\\nglycin\\nglycine\\nglycines\\nglycins\\nglycogen\\nglycogens\\nglycol\\nglycolic\\nglycols\\nglyconic\\nglyconics\\nglycosyl\\nglycosyls\\nglycyl\\nglycyls\\nglyph\\nglyphic\\nglyphs\\nglyptic\\nglyptics\\ngnar\\ngnarl\\ngnarled\\ngnarlier\\ngnarliest\\ngnarling\\ngnarls\\ngnarly\\ngnarr\\ngnarred\\ngnarring\\ngnarrs\\ngnars\\ngnash\\ngnashed\\ngnashes\\ngnashing\\ngnat\\ngnathal\\ngnathic\\ngnathion\\ngnathions\\ngnathite\\ngnathites\\ngnatlike\\ngnats\\ngnattier\\ngnattiest\\ngnatty\\ngnaw\\ngnawable\\ngnawed\\ngnawer\\ngnawers\\ngnawing\\ngnawings\\ngnawn\\ngnaws\\ngneiss\\ngneisses\\ngneissic\\ngnocchi\\ngnome\\ngnomes\\ngnomic\\ngnomical\\ngnomish\\ngnomist\\ngnomists\\ngnomon\\ngnomonic\\ngnomons\\ngnoses\\ngnosis\\ngnostic\\ngnu\\ngnus\\ngo\\ngoa\\ngoad\\ngoaded\\ngoading\\ngoadlike\\ngoads\\ngoal\\ngoaled\\ngoalie\\ngoalies\\ngoaling\\ngoalkeeper\\ngoalkeepers\\ngoalless\\ngoalpost\\ngoalposts\\ngoals\\ngoas\\ngoat\\ngoatee\\ngoateed\\ngoatees\\ngoatfish\\ngoatfishes\\ngoatherd\\ngoatherds\\ngoatish\\ngoatlike\\ngoats\\ngoatskin\\ngoatskins\\ngob\\ngoban\\ngobang\\ngobangs\\ngobans\\ngobbed\\ngobbet\\ngobbets\\ngobbing\\ngobble\\ngobbled\\ngobbledegook\\ngobbledegooks\\ngobbledygook\\ngobbledygooks\\ngobbler\\ngobblers\\ngobbles\\ngobbling\\ngobies\\ngobioid\\ngobioids\\ngoblet\\ngoblets\\ngoblin\\ngoblins\\ngobo\\ngoboes\\ngobonee\\ngobony\\ngobos\\ngobs\\ngoby\\ngod\\ngodchild\\ngodchildren\\ngoddam\\ngoddammed\\ngoddamming\\ngoddamn\\ngoddamned\\ngoddamning\\ngoddamns\\ngoddams\\ngoddaughter\\ngoddaughters\\ngodded\\ngoddess\\ngoddesses\\ngodding\\ngodfather\\ngodfathers\\ngodhead\\ngodheads\\ngodhood\\ngodhoods\\ngodless\\ngodlessness\\ngodlessnesses\\ngodlier\\ngodliest\\ngodlike\\ngodlily\\ngodling\\ngodlings\\ngodly\\ngodmother\\ngodmothers\\ngodown\\ngodowns\\ngodparent\\ngodparents\\ngodroon\\ngodroons\\ngods\\ngodsend\\ngodsends\\ngodship\\ngodships\\ngodson\\ngodsons\\ngodwit\\ngodwits\\ngoer\\ngoers\\ngoes\\ngoethite\\ngoethites\\ngoffer\\ngoffered\\ngoffering\\ngoffers\\ngoggle\\ngoggled\\ngoggler\\ngogglers\\ngoggles\\ngogglier\\ngoggliest\\ngoggling\\ngoggly\\ngoglet\\ngoglets\\ngogo\\ngogos\\ngoing\\ngoings\\ngoiter\\ngoiters\\ngoitre\\ngoitres\\ngoitrous\\ngolconda\\ngolcondas\\ngold\\ngoldarn\\ngoldarns\\ngoldbrick\\ngoldbricked\\ngoldbricking\\ngoldbricks\\ngoldbug\\ngoldbugs\\ngolden\\ngoldener\\ngoldenest\\ngoldenly\\ngoldenrod\\ngolder\\ngoldest\\ngoldeye\\ngoldeyes\\ngoldfinch\\ngoldfinches\\ngoldfish\\ngoldfishes\\ngolds\\ngoldsmith\\ngoldstein\\ngoldurn\\ngoldurns\\ngolem\\ngolems\\ngolf\\ngolfed\\ngolfer\\ngolfers\\ngolfing\\ngolfings\\ngolfs\\ngolgotha\\ngolgothas\\ngoliard\\ngoliards\\ngolliwog\\ngolliwogs\\ngolly\\ngolosh\\ngoloshes\\ngombo\\ngombos\\ngombroon\\ngombroons\\ngomeral\\ngomerals\\ngomerel\\ngomerels\\ngomeril\\ngomerils\\ngomuti\\ngomutis\\ngonad\\ngonadal\\ngonadial\\ngonadic\\ngonads\\ngondola\\ngondolas\\ngondolier\\ngondoliers\\ngone\\ngoneness\\ngonenesses\\ngoner\\ngoners\\ngonfalon\\ngonfalons\\ngonfanon\\ngonfanons\\ngong\\ngonged\\ngonging\\ngonglike\\ngongs\\ngonia\\ngonidia\\ngonidial\\ngonidic\\ngonidium\\ngonif\\ngonifs\\ngonion\\ngonium\\ngonocyte\\ngonocytes\\ngonof\\ngonofs\\ngonoph\\ngonophs\\ngonopore\\ngonopores\\ngonorrhea\\ngonorrheal\\ngonorrheas\\ngoo\\ngoober\\ngoobers\\ngood\\ngoodby\\ngoodbye\\ngoodbyes\\ngoodbys\\ngoodies\\ngoodish\\ngoodlier\\ngoodliest\\ngoodly\\ngoodman\\ngoodmen\\ngoodness\\ngoodnesses\\ngoods\\ngoodwife\\ngoodwill\\ngoodwills\\ngoodwives\\ngoody\\ngooey\\ngoof\\ngoofball\\ngoofballs\\ngoofed\\ngoofier\\ngoofiest\\ngoofily\\ngoofiness\\ngoofinesses\\ngoofing\\ngoofs\\ngoofy\\ngooglies\\ngoogly\\ngoogol\\ngoogolplex\\ngoogolplexes\\ngoogols\\ngooier\\ngooiest\\ngook\\ngooks\\ngooky\\ngoon\\ngooney\\ngooneys\\ngoonie\\ngoonies\\ngoons\\ngoony\\ngoop\\ngoops\\ngooral\\ngoorals\\ngoos\\ngoose\\ngooseberries\\ngooseberry\\ngoosed\\ngooseflesh\\ngoosefleshes\\ngooses\\ngoosey\\ngoosier\\ngoosiest\\ngoosing\\ngoosy\\ngopher\\ngophers\\ngor\\ngoral\\ngorals\\ngorbellies\\ngorbelly\\ngorblimy\\ngorcock\\ngorcocks\\ngore\\ngored\\ngores\\ngorge\\ngorged\\ngorgedly\\ngorgeous\\ngorger\\ngorgerin\\ngorgerins\\ngorgers\\ngorges\\ngorget\\ngorgeted\\ngorgets\\ngorging\\ngorgon\\ngorgons\\ngorhen\\ngorhens\\ngorier\\ngoriest\\ngorilla\\ngorillas\\ngorily\\ngoriness\\ngorinesses\\ngoring\\ngormand\\ngormands\\ngorse\\ngorses\\ngorsier\\ngorsiest\\ngorsy\\ngory\\ngosh\\ngoshawk\\ngoshawks\\ngosling\\ngoslings\\ngospel\\ngospeler\\ngospelers\\ngospels\\ngosport\\ngosports\\ngossamer\\ngossamers\\ngossan\\ngossans\\ngossip\\ngossiped\\ngossiper\\ngossipers\\ngossiping\\ngossipped\\ngossipping\\ngossipries\\ngossipry\\ngossips\\ngossipy\\ngossoon\\ngossoons\\ngossypol\\ngossypols\\ngot\\ngothic\\ngothics\\ngothite\\ngothites\\ngotten\\ngouache\\ngouaches\\ngouge\\ngouged\\ngouger\\ngougers\\ngouges\\ngouging\\ngoulash\\ngoulashes\\ngourami\\ngouramis\\ngourd\\ngourde\\ngourdes\\ngourds\\ngourmand\\ngourmands\\ngourmet\\ngourmets\\ngout\\ngoutier\\ngoutiest\\ngoutily\\ngouts\\ngouty\\ngovern\\ngoverned\\ngoverness\\ngovernesses\\ngoverning\\ngovernment\\ngovernmental\\ngovernments\\ngovernor\\ngovernors\\ngovernorship\\ngovernorships\\ngoverns\\ngowan\\ngowaned\\ngowans\\ngowany\\ngowd\\ngowds\\ngowk\\ngowks\\ngown\\ngowned\\ngowning\\ngowns\\ngownsman\\ngownsmen\\ngox\\ngoxes\\ngoy\\ngoyim\\ngoyish\\ngoys\\ngraal\\ngraals\\ngrab\\ngrabbed\\ngrabber\\ngrabbers\\ngrabbier\\ngrabbiest\\ngrabbing\\ngrabble\\ngrabbled\\ngrabbler\\ngrabblers\\ngrabbles\\ngrabbling\\ngrabby\\ngraben\\ngrabens\\ngrabs\\ngrace\\ngraced\\ngraceful\\ngracefuller\\ngracefullest\\ngracefully\\ngracefulness\\ngracefulnesses\\ngraceless\\ngraces\\ngracile\\ngraciles\\ngracilis\\ngracing\\ngracioso\\ngraciosos\\ngracious\\ngraciously\\ngraciousness\\ngraciousnesses\\ngrackle\\ngrackles\\ngrad\\ngradable\\ngradate\\ngradated\\ngradates\\ngradating\\ngrade\\ngraded\\ngrader\\ngraders\\ngrades\\ngradient\\ngradients\\ngradin\\ngradine\\ngradines\\ngrading\\ngradins\\ngrads\\ngradual\\ngradually\\ngraduals\\ngraduand\\ngraduands\\ngraduate\\ngraduated\\ngraduates\\ngraduating\\ngraduation\\ngraduations\\ngradus\\ngraduses\\ngraecize\\ngraecized\\ngraecizes\\ngraecizing\\ngraffiti\\ngraffito\\ngraft\\ngraftage\\ngraftages\\ngrafted\\ngrafter\\ngrafters\\ngrafting\\ngrafts\\ngraham\\ngrail\\ngrails\\ngrain\\ngrained\\ngrainer\\ngrainers\\ngrainfield\\ngrainfields\\ngrainier\\ngrainiest\\ngraining\\ngrains\\ngrainy\\ngram\\ngrama\\ngramaries\\ngramary\\ngramarye\\ngramaryes\\ngramas\\ngramercies\\ngramercy\\ngrammar\\ngrammarian\\ngrammarians\\ngrammars\\ngrammatical\\ngrammatically\\ngramme\\ngrammes\\ngramp\\ngramps\\ngrampus\\ngrampuses\\ngrams\\ngrana\\ngranaries\\ngranary\\ngrand\\ngrandad\\ngrandads\\ngrandam\\ngrandame\\ngrandames\\ngrandams\\ngrandchild\\ngrandchildren\\ngranddad\\ngranddads\\ngranddaughter\\ngranddaughters\\ngrandee\\ngrandees\\ngrander\\ngrandest\\ngrandeur\\ngrandeurs\\ngrandfather\\ngrandfathers\\ngrandiose\\ngrandiosely\\ngrandly\\ngrandma\\ngrandmas\\ngrandmother\\ngrandmothers\\ngrandness\\ngrandnesses\\ngrandpa\\ngrandparent\\ngrandparents\\ngrandpas\\ngrands\\ngrandsir\\ngrandsirs\\ngrandson\\ngrandsons\\ngrandstand\\ngrandstands\\ngrange\\ngranger\\ngrangers\\ngranges\\ngranite\\ngranites\\ngranitic\\ngrannie\\ngrannies\\ngranny\\ngrant\\ngranted\\ngrantee\\ngrantees\\ngranter\\ngranters\\ngranting\\ngrantor\\ngrantors\\ngrants\\ngranular\\ngranularities\\ngranularity\\ngranulate\\ngranulated\\ngranulates\\ngranulating\\ngranulation\\ngranulations\\ngranule\\ngranules\\ngranum\\ngrape\\ngraperies\\ngrapery\\ngrapes\\ngrapevine\\ngrapevines\\ngraph\\ngraphed\\ngrapheme\\ngraphemes\\ngraphic\\ngraphically\\ngraphics\\ngraphing\\ngraphite\\ngraphites\\ngraphs\\ngrapier\\ngrapiest\\ngraplin\\ngrapline\\ngraplines\\ngraplins\\ngrapnel\\ngrapnels\\ngrappa\\ngrappas\\ngrapple\\ngrappled\\ngrappler\\ngrapplers\\ngrapples\\ngrappling\\ngrapy\\ngrasp\\ngrasped\\ngrasper\\ngraspers\\ngrasping\\ngrasps\\ngrass\\ngrassed\\ngrasses\\ngrasshopper\\ngrasshoppers\\ngrassier\\ngrassiest\\ngrassily\\ngrassing\\ngrassland\\ngrasslands\\ngrassy\\ngrat\\ngrate\\ngrated\\ngrateful\\ngratefuller\\ngratefullest\\ngratefullies\\ngratefully\\ngratefulness\\ngratefulnesses\\ngrater\\ngraters\\ngrates\\ngratification\\ngratifications\\ngratified\\ngratifies\\ngratify\\ngratifying\\ngratin\\ngrating\\ngratings\\ngratins\\ngratis\\ngratitude\\ngratuities\\ngratuitous\\ngratuity\\ngraupel\\ngraupels\\ngravamen\\ngravamens\\ngravamina\\ngrave\\ngraved\\ngravel\\ngraveled\\ngraveling\\ngravelled\\ngravelling\\ngravelly\\ngravels\\ngravely\\ngraven\\ngraveness\\ngravenesses\\ngraver\\ngravers\\ngraves\\ngravest\\ngravestone\\ngravestones\\ngraveyard\\ngraveyards\\ngravid\\ngravida\\ngravidae\\ngravidas\\ngravidly\\ngravies\\ngraving\\ngravitate\\ngravitated\\ngravitates\\ngravitating\\ngravitation\\ngravitational\\ngravitationally\\ngravitations\\ngravitative\\ngravities\\ngraviton\\ngravitons\\ngravity\\ngravure\\ngravures\\ngravy\\ngray\\ngrayback\\ngraybacks\\ngrayed\\ngrayer\\ngrayest\\ngrayfish\\ngrayfishes\\ngraying\\ngrayish\\ngraylag\\ngraylags\\ngrayling\\ngraylings\\ngrayly\\ngrayness\\ngraynesses\\ngrayout\\ngrayouts\\ngrays\\ngrazable\\ngraze\\ngrazed\\ngrazer\\ngrazers\\ngrazes\\ngrazier\\ngraziers\\ngrazing\\ngrazings\\ngrazioso\\ngrease\\ngreased\\ngreaser\\ngreasers\\ngreases\\ngreasier\\ngreasiest\\ngreasily\\ngreasing\\ngreasy\\ngreat\\ngreaten\\ngreatened\\ngreatening\\ngreatens\\ngreater\\ngreatest\\ngreatly\\ngreatness\\ngreatnesses\\ngreats\\ngreave\\ngreaved\\ngreaves\\ngrebe\\ngrebes\\ngrecize\\ngrecized\\ngrecizes\\ngrecizing\\ngree\\ngreed\\ngreedier\\ngreediest\\ngreedily\\ngreediness\\ngreedinesses\\ngreeds\\ngreedy\\ngreegree\\ngreegrees\\ngreeing\\ngreek\\ngreen\\ngreenbug\\ngreenbugs\\ngreened\\ngreener\\ngreeneries\\ngreenery\\ngreenest\\ngreenflies\\ngreenfly\\ngreenhorn\\ngreenhorns\\ngreenhouse\\ngreenhouses\\ngreenier\\ngreeniest\\ngreening\\ngreenings\\ngreenish\\ngreenlet\\ngreenlets\\ngreenly\\ngreenness\\ngreennesses\\ngreens\\ngreenth\\ngreenths\\ngreeny\\ngrees\\ngreet\\ngreeted\\ngreeter\\ngreeters\\ngreeting\\ngreetings\\ngreets\\ngregarious\\ngregariously\\ngregariousness\\ngregariousnesses\\ngrego\\ngregos\\ngreige\\ngreiges\\ngreisen\\ngreisens\\ngremial\\ngremials\\ngremlin\\ngremlins\\ngremmie\\ngremmies\\ngremmy\\ngrenade\\ngrenades\\ngrew\\ngrewsome\\ngrewsomer\\ngrewsomest\\ngrey\\ngreyed\\ngreyer\\ngreyest\\ngreyhen\\ngreyhens\\ngreyhound\\ngreyhounds\\ngreying\\ngreyish\\ngreylag\\ngreylags\\ngreyly\\ngreyness\\ngreynesses\\ngreys\\ngribble\\ngribbles\\ngrid\\ngriddle\\ngriddled\\ngriddles\\ngriddling\\ngride\\ngrided\\ngrides\\ngriding\\ngridiron\\ngridirons\\ngrids\\ngrief\\ngriefs\\ngrievance\\ngrievances\\ngrievant\\ngrievants\\ngrieve\\ngrieved\\ngriever\\ngrievers\\ngrieves\\ngrieving\\ngrievous\\ngrievously\\ngriff\\ngriffe\\ngriffes\\ngriffin\\ngriffins\\ngriffon\\ngriffons\\ngriffs\\ngrift\\ngrifted\\ngrifter\\ngrifters\\ngrifting\\ngrifts\\ngrig\\ngrigri\\ngrigris\\ngrigs\\ngrill\\ngrillade\\ngrillades\\ngrillage\\ngrillages\\ngrille\\ngrilled\\ngriller\\ngrillers\\ngrilles\\ngrilling\\ngrills\\ngrillwork\\ngrillworks\\ngrilse\\ngrilses\\ngrim\\ngrimace\\ngrimaced\\ngrimacer\\ngrimacers\\ngrimaces\\ngrimacing\\ngrime\\ngrimed\\ngrimes\\ngrimier\\ngrimiest\\ngrimily\\ngriming\\ngrimly\\ngrimmer\\ngrimmest\\ngrimness\\ngrimnesses\\ngrimy\\ngrin\\ngrind\\ngrinded\\ngrinder\\ngrinderies\\ngrinders\\ngrindery\\ngrinding\\ngrinds\\ngrindstone\\ngrindstones\\ngringo\\ngringos\\ngrinned\\ngrinner\\ngrinners\\ngrinning\\ngrins\\ngrip\\ngripe\\ngriped\\ngriper\\ngripers\\ngripes\\ngripey\\ngripier\\ngripiest\\ngriping\\ngrippe\\ngripped\\ngripper\\ngrippers\\ngrippes\\ngrippier\\ngrippiest\\ngripping\\ngripple\\ngrippy\\ngrips\\ngripsack\\ngripsacks\\ngript\\ngripy\\ngriseous\\ngrisette\\ngrisettes\\ngriskin\\ngriskins\\ngrislier\\ngrisliest\\ngrisly\\ngrison\\ngrisons\\ngrist\\ngristle\\ngristles\\ngristlier\\ngristliest\\ngristly\\ngristmill\\ngristmills\\ngrists\\ngrit\\ngrith\\ngriths\\ngrits\\ngritted\\ngrittier\\ngrittiest\\ngrittily\\ngritting\\ngritty\\ngrivet\\ngrivets\\ngrizzle\\ngrizzled\\ngrizzler\\ngrizzlers\\ngrizzles\\ngrizzlier\\ngrizzlies\\ngrizzliest\\ngrizzling\\ngrizzly\\ngroan\\ngroaned\\ngroaner\\ngroaners\\ngroaning\\ngroans\\ngroat\\ngroats\\ngrocer\\ngroceries\\ngrocers\\ngrocery\\ngrog\\ngroggeries\\ngroggery\\ngroggier\\ngroggiest\\ngroggily\\ngrogginess\\ngrogginesses\\ngroggy\\ngrogram\\ngrograms\\ngrogs\\ngrogshop\\ngrogshops\\ngroin\\ngroined\\ngroining\\ngroins\\ngrommet\\ngrommets\\ngromwell\\ngromwells\\ngroom\\ngroomed\\ngroomer\\ngroomers\\ngrooming\\ngrooms\\ngroove\\ngrooved\\ngroover\\ngroovers\\ngrooves\\ngroovier\\ngrooviest\\ngrooving\\ngroovy\\ngrope\\ngroped\\ngroper\\ngropers\\ngropes\\ngroping\\ngrosbeak\\ngrosbeaks\\ngroschen\\ngross\\ngrossed\\ngrosser\\ngrossers\\ngrosses\\ngrossest\\ngrossing\\ngrossly\\ngrossness\\ngrossnesses\\ngrosz\\ngroszy\\ngrot\\ngrotesque\\ngrotesquely\\ngrots\\ngrotto\\ngrottoes\\ngrottos\\ngrouch\\ngrouched\\ngrouches\\ngrouchier\\ngrouchiest\\ngrouching\\ngrouchy\\nground\\ngrounded\\ngrounder\\ngrounders\\ngroundhog\\ngroundhogs\\ngrounding\\ngrounds\\ngroundwater\\ngroundwaters\\ngroundwork\\ngroundworks\\ngroup\\ngrouped\\ngrouper\\ngroupers\\ngroupie\\ngroupies\\ngrouping\\ngroupings\\ngroupoid\\ngroupoids\\ngroups\\ngrouse\\ngroused\\ngrouser\\ngrousers\\ngrouses\\ngrousing\\ngrout\\ngrouted\\ngrouter\\ngrouters\\ngroutier\\ngroutiest\\ngrouting\\ngrouts\\ngrouty\\ngrove\\ngroved\\ngrovel\\ngroveled\\ngroveler\\ngrovelers\\ngroveling\\ngrovelled\\ngrovelling\\ngrovels\\ngroves\\ngrow\\ngrowable\\ngrower\\ngrowers\\ngrowing\\ngrowl\\ngrowled\\ngrowler\\ngrowlers\\ngrowlier\\ngrowliest\\ngrowling\\ngrowls\\ngrowly\\ngrown\\ngrownup\\ngrownups\\ngrows\\ngrowth\\ngrowths\\ngroyne\\ngroynes\\ngrub\\ngrubbed\\ngrubber\\ngrubbers\\ngrubbier\\ngrubbiest\\ngrubbily\\ngrubbiness\\ngrubbinesses\\ngrubbing\\ngrubby\\ngrubs\\ngrubstake\\ngrubstakes\\ngrubworm\\ngrubworms\\ngrudge\\ngrudged\\ngrudger\\ngrudgers\\ngrudges\\ngrudging\\ngruel\\ngrueled\\ngrueler\\ngruelers\\ngrueling\\ngruelings\\ngruelled\\ngrueller\\ngruellers\\ngruelling\\ngruellings\\ngruels\\ngruesome\\ngruesomer\\ngruesomest\\ngruff\\ngruffed\\ngruffer\\ngruffest\\ngruffier\\ngruffiest\\ngruffily\\ngruffing\\ngruffish\\ngruffly\\ngruffs\\ngruffy\\ngrugru\\ngrugrus\\ngrum\\ngrumble\\ngrumbled\\ngrumbler\\ngrumblers\\ngrumbles\\ngrumbling\\ngrumbly\\ngrume\\ngrumes\\ngrummer\\ngrummest\\ngrummet\\ngrummets\\ngrumose\\ngrumous\\ngrump\\ngrumped\\ngrumphie\\ngrumphies\\ngrumphy\\ngrumpier\\ngrumpiest\\ngrumpily\\ngrumping\\ngrumpish\\ngrumps\\ngrumpy\\ngrunion\\ngrunions\\ngrunt\\ngrunted\\ngrunter\\ngrunters\\ngrunting\\ngruntle\\ngruntled\\ngruntles\\ngruntling\\ngrunts\\ngrushie\\ngrutch\\ngrutched\\ngrutches\\ngrutching\\ngrutten\\ngryphon\\ngryphons\\nguacharo\\nguacharoes\\nguacharos\\nguaco\\nguacos\\nguaiac\\nguaiacol\\nguaiacols\\nguaiacs\\nguaiacum\\nguaiacums\\nguaiocum\\nguaiocums\\nguan\\nguanaco\\nguanacos\\nguanase\\nguanases\\nguanidin\\nguanidins\\nguanin\\nguanine\\nguanines\\nguanins\\nguano\\nguanos\\nguans\\nguar\\nguarani\\nguaranies\\nguaranis\\nguarantee\\nguarantees\\nguarantied\\nguaranties\\nguarantor\\nguaranty\\nguarantying\\nguard\\nguardant\\nguardants\\nguarded\\nguarder\\nguarders\\nguardhouse\\nguardhouses\\nguardian\\nguardians\\nguardianship\\nguardianships\\nguarding\\nguardroom\\nguardrooms\\nguards\\nguars\\nguava\\nguavas\\nguayule\\nguayules\\ngubernatorial\\nguck\\ngucks\\ngude\\ngudes\\ngudgeon\\ngudgeoned\\ngudgeoning\\ngudgeons\\nguenon\\nguenons\\nguerdon\\nguerdoned\\nguerdoning\\nguerdons\\nguerilla\\nguerillas\\nguernsey\\nguernseys\\nguess\\nguessed\\nguesser\\nguessers\\nguesses\\nguessing\\nguest\\nguested\\nguesting\\nguests\\nguff\\nguffaw\\nguffawed\\nguffawing\\nguffaws\\nguffs\\nguggle\\nguggled\\nguggles\\nguggling\\nguglet\\nguglets\\nguid\\nguidable\\nguidance\\nguidances\\nguide\\nguidebook\\nguidebooks\\nguided\\nguideline\\nguidelines\\nguider\\nguiders\\nguides\\nguiding\\nguidon\\nguidons\\nguids\\nguild\\nguilder\\nguilders\\nguilds\\nguile\\nguiled\\nguileful\\nguileless\\nguilelessness\\nguilelessnesses\\nguiles\\nguiling\\nguillotine\\nguillotined\\nguillotines\\nguillotining\\nguilt\\nguiltier\\nguiltiest\\nguiltily\\nguiltiness\\nguiltinesses\\nguilts\\nguilty\\nguimpe\\nguimpes\\nguinea\\nguineas\\nguipure\\nguipures\\nguiro\\nguisard\\nguisards\\nguise\\nguised\\nguises\\nguising\\nguitar\\nguitars\\ngul\\ngular\\ngulch\\ngulches\\ngulden\\nguldens\\ngules\\ngulf\\ngulfed\\ngulfier\\ngulfiest\\ngulfing\\ngulflike\\ngulfs\\ngulfweed\\ngulfweeds\\ngulfy\\ngull\\ngullable\\ngullably\\ngulled\\ngullet\\ngullets\\ngulley\\ngulleys\\ngullible\\ngullibly\\ngullied\\ngullies\\ngulling\\ngulls\\ngully\\ngullying\\ngulosities\\ngulosity\\ngulp\\ngulped\\ngulper\\ngulpers\\ngulpier\\ngulpiest\\ngulping\\ngulps\\ngulpy\\nguls\\ngum\\ngumbo\\ngumboil\\ngumboils\\ngumbos\\ngumbotil\\ngumbotils\\ngumdrop\\ngumdrops\\ngumless\\ngumlike\\ngumma\\ngummas\\ngummata\\ngummed\\ngummer\\ngummers\\ngummier\\ngummiest\\ngumming\\ngummite\\ngummites\\ngummose\\ngummoses\\ngummosis\\ngummous\\ngummy\\ngumption\\ngumptions\\ngums\\ngumshoe\\ngumshoed\\ngumshoeing\\ngumshoes\\ngumtree\\ngumtrees\\ngumweed\\ngumweeds\\ngumwood\\ngumwoods\\ngun\\ngunboat\\ngunboats\\ngundog\\ngundogs\\ngunfight\\ngunfighter\\ngunfighters\\ngunfighting\\ngunfights\\ngunfire\\ngunfires\\ngunflint\\ngunflints\\ngunfought\\ngunk\\ngunks\\ngunless\\ngunlock\\ngunlocks\\ngunman\\ngunmen\\ngunmetal\\ngunmetals\\ngunned\\ngunnel\\ngunnels\\ngunnen\\ngunner\\ngunneries\\ngunners\\ngunnery\\ngunnies\\ngunning\\ngunnings\\ngunny\\ngunpaper\\ngunpapers\\ngunplay\\ngunplays\\ngunpoint\\ngunpoints\\ngunpowder\\ngunpowders\\ngunroom\\ngunrooms\\nguns\\ngunsel\\ngunsels\\ngunship\\ngunships\\ngunshot\\ngunshots\\ngunslinger\\ngunslingers\\ngunsmith\\ngunsmiths\\ngunstock\\ngunstocks\\ngunwale\\ngunwales\\nguppies\\nguppy\\ngurge\\ngurged\\ngurges\\ngurging\\ngurgle\\ngurgled\\ngurgles\\ngurglet\\ngurglets\\ngurgling\\ngurnard\\ngurnards\\ngurnet\\ngurnets\\ngurney\\ngurneys\\ngurries\\ngurry\\ngursh\\ngurshes\\nguru\\ngurus\\nguruship\\nguruships\\ngush\\ngushed\\ngusher\\ngushers\\ngushes\\ngushier\\ngushiest\\ngushily\\ngushing\\ngushy\\ngusset\\ngusseted\\ngusseting\\ngussets\\ngust\\ngustable\\ngustables\\ngustatory\\ngusted\\ngustier\\ngustiest\\ngustily\\ngusting\\ngustless\\ngusto\\ngustoes\\ngusts\\ngusty\\ngut\\ngutless\\ngutlike\\nguts\\ngutsier\\ngutsiest\\ngutsy\\ngutta\\nguttae\\nguttate\\nguttated\\ngutted\\ngutter\\nguttered\\nguttering\\ngutters\\nguttery\\nguttier\\nguttiest\\ngutting\\nguttle\\nguttled\\nguttler\\nguttlers\\nguttles\\nguttling\\nguttural\\ngutturals\\ngutty\\nguy\\nguyed\\nguyer\\nguying\\nguyot\\nguyots\\nguys\\nguzzle\\nguzzled\\nguzzler\\nguzzlers\\nguzzles\\nguzzling\\ngweduc\\ngweduck\\ngweducks\\ngweducs\\ngybe\\ngybed\\ngyber\\ngybes\\ngybing\\ngym\\ngymkhana\\ngymkhanas\\ngymnasia\\ngymnasium\\ngymnasiums\\ngymnast\\ngymnastic\\ngymnastics\\ngymnasts\\ngyms\\ngynaecea\\ngynaecia\\ngynandries\\ngynandry\\ngynarchies\\ngynarchy\\ngynecia\\ngynecic\\ngynecium\\ngynecoid\\ngynecologic\\ngynecological\\ngynecologies\\ngynecologist\\ngynecologists\\ngynecology\\ngynecomastia\\ngynecomasty\\ngyniatries\\ngyniatry\\ngynoecia\\ngyp\\ngypped\\ngypper\\ngyppers\\ngypping\\ngyps\\ngypseian\\ngypseous\\ngypsied\\ngypsies\\ngypsum\\ngypsums\\ngypsy\\ngypsydom\\ngypsydoms\\ngypsying\\ngypsyish\\ngypsyism\\ngypsyisms\\ngyral\\ngyrally\\ngyrate\\ngyrated\\ngyrates\\ngyrating\\ngyration\\ngyrations\\ngyrator\\ngyrators\\ngyratory\\ngyre\\ngyred\\ngyrene\\ngyrenes\\ngyres\\ngyri\\ngyring\\ngyro\\ngyrocompass\\ngyrocompasses\\ngyroidal\\ngyron\\ngyrons\\ngyros\\ngyroscope\\ngyroscopes\\ngyrose\\ngyrostat\\ngyrostats\\ngyrus\\ngyve\\ngyved\\ngyves\\ngyving\\nha\\nhaaf\\nhaafs\\nhaar\\nhaars\\nhabanera\\nhabaneras\\nhabdalah\\nhabdalahs\\nhaberdasher\\nhaberdasheries\\nhaberdashers\\nhaberdashery\\nhabile\\nhabit\\nhabitable\\nhabitan\\nhabitans\\nhabitant\\nhabitants\\nhabitat\\nhabitation\\nhabitations\\nhabitats\\nhabited\\nhabiting\\nhabits\\nhabitual\\nhabitually\\nhabitualness\\nhabitualnesses\\nhabituate\\nhabituated\\nhabituates\\nhabituating\\nhabitude\\nhabitudes\\nhabitue\\nhabitues\\nhabitus\\nhabu\\nhabus\\nhacek\\nhaceks\\nhachure\\nhachured\\nhachures\\nhachuring\\nhacienda\\nhaciendas\\nhack\\nhackbut\\nhackbuts\\nhacked\\nhackee\\nhackees\\nhacker\\nhackers\\nhackie\\nhackies\\nhacking\\nhackle\\nhackled\\nhackler\\nhacklers\\nhackles\\nhacklier\\nhackliest\\nhackling\\nhackly\\nhackman\\nhackmen\\nhackney\\nhackneyed\\nhackneying\\nhackneys\\nhacks\\nhacksaw\\nhacksaws\\nhackwork\\nhackworks\\nhad\\nhadal\\nhadarim\\nhaddest\\nhaddock\\nhaddocks\\nhade\\nhaded\\nhades\\nhading\\nhadj\\nhadjee\\nhadjees\\nhadjes\\nhadji\\nhadjis\\nhadjs\\nhadron\\nhadronic\\nhadrons\\nhadst\\nhae\\nhaed\\nhaeing\\nhaem\\nhaemal\\nhaematal\\nhaematic\\nhaematics\\nhaematin\\nhaematins\\nhaemic\\nhaemin\\nhaemins\\nhaemoid\\nhaems\\nhaen\\nhaeredes\\nhaeres\\nhaes\\nhaet\\nhaets\\nhaffet\\nhaffets\\nhaffit\\nhaffits\\nhafis\\nhafiz\\nhafnium\\nhafniums\\nhaft\\nhaftarah\\nhaftarahs\\nhaftarot\\nhaftaroth\\nhafted\\nhafter\\nhafters\\nhafting\\nhaftorah\\nhaftorahs\\nhaftorot\\nhaftoroth\\nhafts\\nhag\\nhagadic\\nhagadist\\nhagadists\\nhagberries\\nhagberry\\nhagborn\\nhagbush\\nhagbushes\\nhagbut\\nhagbuts\\nhagdon\\nhagdons\\nhagfish\\nhagfishes\\nhaggadic\\nhaggard\\nhaggardly\\nhaggards\\nhagged\\nhagging\\nhaggis\\nhaggises\\nhaggish\\nhaggle\\nhaggled\\nhaggler\\nhagglers\\nhaggles\\nhaggling\\nhagridden\\nhagride\\nhagrides\\nhagriding\\nhagrode\\nhags\\nhah\\nhahs\\nhaik\\nhaika\\nhaiks\\nhaiku\\nhail\\nhailed\\nhailer\\nhailers\\nhailing\\nhails\\nhailstone\\nhailstones\\nhailstorm\\nhailstorms\\nhaily\\nhair\\nhairball\\nhairballs\\nhairband\\nhairbands\\nhairbreadth\\nhairbreadths\\nhairbrush\\nhairbrushes\\nhaircap\\nhaircaps\\nhaircut\\nhaircuts\\nhairdo\\nhairdos\\nhairdresser\\nhairdressers\\nhaired\\nhairier\\nhairiest\\nhairiness\\nhairinesses\\nhairless\\nhairlike\\nhairline\\nhairlines\\nhairlock\\nhairlocks\\nhairpiece\\nhairpieces\\nhairpin\\nhairpins\\nhairs\\nhairsbreadth\\nhairsbreadths\\nhairstyle\\nhairstyles\\nhairstyling\\nhairstylings\\nhairstylist\\nhairstylists\\nhairwork\\nhairworks\\nhairworm\\nhairworms\\nhairy\\nhaj\\nhajes\\nhaji\\nhajis\\nhajj\\nhajjes\\nhajji\\nhajjis\\nhajjs\\nhake\\nhakeem\\nhakeems\\nhakes\\nhakim\\nhakims\\nhalakah\\nhalakahs\\nhalakic\\nhalakist\\nhalakists\\nhalakoth\\nhalala\\nhalalah\\nhalalahs\\nhalalas\\nhalation\\nhalations\\nhalavah\\nhalavahs\\nhalazone\\nhalazones\\nhalberd\\nhalberds\\nhalbert\\nhalberts\\nhalcyon\\nhalcyons\\nhale\\nhaled\\nhaleness\\nhalenesses\\nhaler\\nhalers\\nhaleru\\nhales\\nhalest\\nhalf\\nhalfback\\nhalfbacks\\nhalfbeak\\nhalfbeaks\\nhalfhearted\\nhalfheartedly\\nhalfheartedness\\nhalfheartednesses\\nhalflife\\nhalflives\\nhalfness\\nhalfnesses\\nhalftime\\nhalftimes\\nhalftone\\nhalftones\\nhalfway\\nhalibut\\nhalibuts\\nhalid\\nhalide\\nhalides\\nhalidom\\nhalidome\\nhalidomes\\nhalidoms\\nhalids\\nhaling\\nhalite\\nhalites\\nhalitosis\\nhalitosises\\nhalitus\\nhalituses\\nhall\\nhallah\\nhallahs\\nhallel\\nhallels\\nhalliard\\nhalliards\\nhallmark\\nhallmarked\\nhallmarking\\nhallmarks\\nhallo\\nhalloa\\nhalloaed\\nhalloaing\\nhalloas\\nhalloed\\nhalloes\\nhalloing\\nhalloo\\nhallooed\\nhallooing\\nhalloos\\nhallos\\nhallot\\nhalloth\\nhallow\\nhallowed\\nhallower\\nhallowers\\nhallowing\\nhallows\\nhalls\\nhalluces\\nhallucinate\\nhallucinated\\nhallucinates\\nhallucinating\\nhallucination\\nhallucinations\\nhallucinative\\nhallucinatory\\nhallucinogen\\nhallucinogenic\\nhallucinogens\\nhallux\\nhallway\\nhallways\\nhalm\\nhalms\\nhalo\\nhaloed\\nhalogen\\nhalogens\\nhaloid\\nhaloids\\nhaloing\\nhalolike\\nhalos\\nhalt\\nhalted\\nhalter\\nhaltere\\nhaltered\\nhalteres\\nhaltering\\nhalters\\nhalting\\nhaltingly\\nhaltless\\nhalts\\nhalutz\\nhalutzim\\nhalva\\nhalvah\\nhalvahs\\nhalvas\\nhalve\\nhalved\\nhalvers\\nhalves\\nhalving\\nhalyard\\nhalyards\\nham\\nhamal\\nhamals\\nhamartia\\nhamartias\\nhamate\\nhamates\\nhamaul\\nhamauls\\nhamburg\\nhamburger\\nhamburgers\\nhamburgs\\nhame\\nhames\\nhamlet\\nhamlets\\nhammal\\nhammals\\nhammed\\nhammer\\nhammered\\nhammerer\\nhammerers\\nhammerhead\\nhammerheads\\nhammering\\nhammers\\nhammier\\nhammiest\\nhammily\\nhamming\\nhammock\\nhammocks\\nhammy\\nhamper\\nhampered\\nhamperer\\nhamperers\\nhampering\\nhampers\\nhams\\nhamster\\nhamsters\\nhamstring\\nhamstringing\\nhamstrings\\nhamstrung\\nhamular\\nhamulate\\nhamuli\\nhamulose\\nhamulous\\nhamulus\\nhamza\\nhamzah\\nhamzahs\\nhamzas\\nhanaper\\nhanapers\\nhance\\nhances\\nhand\\nhandbag\\nhandbags\\nhandball\\nhandballs\\nhandbill\\nhandbills\\nhandbook\\nhandbooks\\nhandcar\\nhandcars\\nhandcart\\nhandcarts\\nhandclasp\\nhandclasps\\nhandcraft\\nhandcrafted\\nhandcrafting\\nhandcrafts\\nhandcuff\\nhandcuffed\\nhandcuffing\\nhandcuffs\\nhanded\\nhandfast\\nhandfasted\\nhandfasting\\nhandfasts\\nhandful\\nhandfuls\\nhandgrip\\nhandgrips\\nhandgun\\nhandguns\\nhandhold\\nhandholds\\nhandicap\\nhandicapped\\nhandicapper\\nhandicappers\\nhandicapping\\nhandicaps\\nhandicrafsman\\nhandicrafsmen\\nhandicraft\\nhandicrafter\\nhandicrafters\\nhandicrafts\\nhandier\\nhandiest\\nhandily\\nhandiness\\nhandinesses\\nhanding\\nhandiwork\\nhandiworks\\nhandkerchief\\nhandkerchiefs\\nhandle\\nhandled\\nhandler\\nhandlers\\nhandles\\nhandless\\nhandlike\\nhandling\\nhandlings\\nhandlist\\nhandlists\\nhandloom\\nhandlooms\\nhandmade\\nhandmaid\\nhandmaiden\\nhandmaidens\\nhandmaids\\nhandoff\\nhandoffs\\nhandout\\nhandouts\\nhandpick\\nhandpicked\\nhandpicking\\nhandpicks\\nhandrail\\nhandrails\\nhands\\nhandsaw\\nhandsaws\\nhandsel\\nhandseled\\nhandseling\\nhandselled\\nhandselling\\nhandsels\\nhandset\\nhandsets\\nhandsewn\\nhandsful\\nhandshake\\nhandshakes\\nhandsome\\nhandsomely\\nhandsomeness\\nhandsomenesses\\nhandsomer\\nhandsomest\\nhandspring\\nhandsprings\\nhandstand\\nhandstands\\nhandwork\\nhandworks\\nhandwoven\\nhandwrit\\nhandwriting\\nhandwritings\\nhandwritten\\nhandy\\nhandyman\\nhandymen\\nhang\\nhangable\\nhangar\\nhangared\\nhangaring\\nhangars\\nhangbird\\nhangbirds\\nhangdog\\nhangdogs\\nhanged\\nhanger\\nhangers\\nhangfire\\nhangfires\\nhanging\\nhangings\\nhangman\\nhangmen\\nhangnail\\nhangnails\\nhangnest\\nhangnests\\nhangout\\nhangouts\\nhangover\\nhangovers\\nhangs\\nhangtag\\nhangtags\\nhangup\\nhangups\\nhank\\nhanked\\nhanker\\nhankered\\nhankerer\\nhankerers\\nhankering\\nhankers\\nhankie\\nhankies\\nhanking\\nhanks\\nhanky\\nhanse\\nhansel\\nhanseled\\nhanseling\\nhanselled\\nhanselling\\nhansels\\nhanses\\nhansom\\nhansoms\\nhant\\nhanted\\nhanting\\nhantle\\nhantles\\nhants\\nhanuman\\nhanumans\\nhaole\\nhaoles\\nhap\\nhapax\\nhapaxes\\nhaphazard\\nhaphazardly\\nhapless\\nhaplessly\\nhaplessness\\nhaplessnesses\\nhaplite\\nhaplites\\nhaploid\\nhaploidies\\nhaploids\\nhaploidy\\nhaplont\\nhaplonts\\nhaplopia\\nhaplopias\\nhaploses\\nhaplosis\\nhaply\\nhapped\\nhappen\\nhappened\\nhappening\\nhappenings\\nhappens\\nhappier\\nhappiest\\nhappily\\nhappiness\\nhapping\\nhappy\\nhaps\\nhapten\\nhaptene\\nhaptenes\\nhaptenic\\nhaptens\\nhaptic\\nhaptical\\nharangue\\nharangued\\nharanguer\\nharanguers\\nharangues\\nharanguing\\nharass\\nharassed\\nharasser\\nharassers\\nharasses\\nharassing\\nharassness\\nharassnesses\\nharbinger\\nharbingers\\nharbor\\nharbored\\nharborer\\nharborers\\nharboring\\nharbors\\nharbour\\nharboured\\nharbouring\\nharbours\\nhard\\nhardback\\nhardbacks\\nhardball\\nhardballs\\nhardboot\\nhardboots\\nhardcase\\nhardcore\\nharden\\nhardened\\nhardener\\nhardeners\\nhardening\\nhardens\\nharder\\nhardest\\nhardhack\\nhardhacks\\nhardhat\\nhardhats\\nhardhead\\nhardheaded\\nhardheadedly\\nhardheadedness\\nhardheads\\nhardhearted\\nhardheartedly\\nhardheartedness\\nhardheartednesses\\nhardier\\nhardies\\nhardiest\\nhardily\\nhardiness\\nhardinesses\\nhardly\\nhardness\\nhardnesses\\nhardpan\\nhardpans\\nhards\\nhardset\\nhardship\\nhardships\\nhardtack\\nhardtacks\\nhardtop\\nhardtops\\nhardware\\nhardwares\\nhardwood\\nhardwoods\\nhardy\\nhare\\nharebell\\nharebells\\nhared\\nhareem\\nhareems\\nharelike\\nharelip\\nharelipped\\nharelips\\nharem\\nharems\\nhares\\nhariana\\nharianas\\nharicot\\nharicots\\nharijan\\nharijans\\nharing\\nhark\\nharked\\nharken\\nharkened\\nharkener\\nharkeners\\nharkening\\nharkens\\nharking\\nharks\\nharl\\nharlequin\\nharlequins\\nharlot\\nharlotries\\nharlotry\\nharlots\\nharls\\nharm\\nharmed\\nharmer\\nharmers\\nharmful\\nharmfully\\nharmfulness\\nharmfulnesses\\nharmin\\nharmine\\nharmines\\nharming\\nharmins\\nharmless\\nharmlessly\\nharmlessness\\nharmlessnesses\\nharmonic\\nharmonica\\nharmonically\\nharmonicas\\nharmonics\\nharmonies\\nharmonious\\nharmoniously\\nharmoniousness\\nharmoniousnesses\\nharmonization\\nharmonizations\\nharmonize\\nharmonized\\nharmonizes\\nharmonizing\\nharmony\\nharms\\nharness\\nharnessed\\nharnesses\\nharnessing\\nharp\\nharped\\nharper\\nharpers\\nharpies\\nharpin\\nharping\\nharpings\\nharpins\\nharpist\\nharpists\\nharpoon\\nharpooned\\nharpooner\\nharpooners\\nharpooning\\nharpoons\\nharps\\nharpsichord\\nharpsichords\\nharpy\\nharridan\\nharridans\\nharried\\nharrier\\nharriers\\nharries\\nharrow\\nharrowed\\nharrower\\nharrowers\\nharrowing\\nharrows\\nharrumph\\nharrumphed\\nharrumphing\\nharrumphs\\nharry\\nharrying\\nharsh\\nharshen\\nharshened\\nharshening\\nharshens\\nharsher\\nharshest\\nharshly\\nharshness\\nharshnesses\\nharslet\\nharslets\\nhart\\nhartal\\nhartals\\nharts\\nharuspex\\nharuspices\\nharvest\\nharvested\\nharvester\\nharvesters\\nharvesting\\nharvests\\nhas\\nhash\\nhashed\\nhasheesh\\nhasheeshes\\nhashes\\nhashing\\nhashish\\nhashishes\\nhaslet\\nhaslets\\nhasp\\nhasped\\nhasping\\nhasps\\nhassel\\nhassels\\nhassle\\nhassled\\nhassles\\nhassling\\nhassock\\nhassocks\\nhast\\nhastate\\nhaste\\nhasted\\nhasteful\\nhasten\\nhastened\\nhastener\\nhasteners\\nhastening\\nhastens\\nhastes\\nhastier\\nhastiest\\nhastily\\nhasting\\nhasty\\nhat\\nhatable\\nhatband\\nhatbands\\nhatbox\\nhatboxes\\nhatch\\nhatcheck\\nhatched\\nhatchel\\nhatcheled\\nhatcheling\\nhatchelled\\nhatchelling\\nhatchels\\nhatcher\\nhatcheries\\nhatchers\\nhatchery\\nhatches\\nhatchet\\nhatchets\\nhatching\\nhatchings\\nhatchway\\nhatchways\\nhate\\nhateable\\nhated\\nhateful\\nhatefullness\\nhatefullnesses\\nhater\\nhaters\\nhates\\nhatful\\nhatfuls\\nhath\\nhating\\nhatless\\nhatlike\\nhatmaker\\nhatmakers\\nhatpin\\nhatpins\\nhatrack\\nhatracks\\nhatred\\nhatreds\\nhats\\nhatsful\\nhatted\\nhatter\\nhatteria\\nhatterias\\nhatters\\nhatting\\nhauberk\\nhauberks\\nhaugh\\nhaughs\\nhaughtier\\nhaughtiest\\nhaughtily\\nhaughtiness\\nhaughtinesses\\nhaughty\\nhaul\\nhaulage\\nhaulages\\nhauled\\nhauler\\nhaulers\\nhaulier\\nhauliers\\nhauling\\nhaulm\\nhaulmier\\nhaulmiest\\nhaulms\\nhaulmy\\nhauls\\nhaulyard\\nhaulyards\\nhaunch\\nhaunched\\nhaunches\\nhaunt\\nhaunted\\nhaunter\\nhaunters\\nhaunting\\nhauntingly\\nhaunts\\nhausen\\nhausens\\nhausfrau\\nhausfrauen\\nhausfraus\\nhautbois\\nhautboy\\nhautboys\\nhauteur\\nhauteurs\\nhavdalah\\nhavdalahs\\nhave\\nhavelock\\nhavelocks\\nhaven\\nhavened\\nhavening\\nhavens\\nhaver\\nhavered\\nhaverel\\nhaverels\\nhavering\\nhavers\\nhaves\\nhaving\\nhavior\\nhaviors\\nhaviour\\nhaviours\\nhavoc\\nhavocked\\nhavocker\\nhavockers\\nhavocking\\nhavocs\\nhaw\\nhawed\\nhawfinch\\nhawfinches\\nhawing\\nhawk\\nhawkbill\\nhawkbills\\nhawked\\nhawker\\nhawkers\\nhawkey\\nhawkeys\\nhawkie\\nhawkies\\nhawking\\nhawkings\\nhawkish\\nhawklike\\nhawkmoth\\nhawkmoths\\nhawknose\\nhawknoses\\nhawks\\nhawkshaw\\nhawkshaws\\nhawkweed\\nhawkweeds\\nhaws\\nhawse\\nhawser\\nhawsers\\nhawses\\nhawthorn\\nhawthorns\\nhay\\nhaycock\\nhaycocks\\nhayed\\nhayer\\nhayers\\nhayfork\\nhayforks\\nhaying\\nhayings\\nhaylage\\nhaylages\\nhayloft\\nhaylofts\\nhaymaker\\nhaymakers\\nhaymow\\nhaymows\\nhayrack\\nhayracks\\nhayrick\\nhayricks\\nhayride\\nhayrides\\nhays\\nhayseed\\nhayseeds\\nhaystack\\nhaystacks\\nhayward\\nhaywards\\nhaywire\\nhaywires\\nhazan\\nhazanim\\nhazans\\nhazard\\nhazarded\\nhazarding\\nhazardous\\nhazards\\nhaze\\nhazed\\nhazel\\nhazelly\\nhazelnut\\nhazelnuts\\nhazels\\nhazer\\nhazers\\nhazes\\nhazier\\nhaziest\\nhazily\\nhaziness\\nhazinesses\\nhazing\\nhazings\\nhazy\\nhazzan\\nhazzanim\\nhazzans\\nhe\\nhead\\nheadache\\nheadaches\\nheadachier\\nheadachiest\\nheadachy\\nheadband\\nheadbands\\nheaddress\\nheaddresses\\nheaded\\nheader\\nheaders\\nheadfirst\\nheadgate\\nheadgates\\nheadgear\\nheadgears\\nheadhunt\\nheadhunted\\nheadhunting\\nheadhunts\\nheadier\\nheadiest\\nheadily\\nheading\\nheadings\\nheadlamp\\nheadlamps\\nheadland\\nheadlands\\nheadless\\nheadlight\\nheadlights\\nheadline\\nheadlined\\nheadlines\\nheadlining\\nheadlock\\nheadlocks\\nheadlong\\nheadman\\nheadmaster\\nheadmasters\\nheadmen\\nheadmistress\\nheadmistresses\\nheadmost\\nheadnote\\nheadnotes\\nheadphone\\nheadphones\\nheadpin\\nheadpins\\nheadquarter\\nheadquartered\\nheadquartering\\nheadquarters\\nheadrace\\nheadraces\\nheadrest\\nheadrests\\nheadroom\\nheadrooms\\nheads\\nheadsail\\nheadsails\\nheadset\\nheadsets\\nheadship\\nheadships\\nheadsman\\nheadsmen\\nheadstay\\nheadstays\\nheadstone\\nheadstones\\nheadstrong\\nheadwaiter\\nheadwaiters\\nheadwater\\nheadwaters\\nheadway\\nheadways\\nheadwind\\nheadwinds\\nheadword\\nheadwords\\nheadwork\\nheadworks\\nheady\\nheal\\nhealable\\nhealed\\nhealer\\nhealers\\nhealing\\nheals\\nhealth\\nhealthful\\nhealthfully\\nhealthfulness\\nhealthfulnesses\\nhealthier\\nhealthiest\\nhealths\\nhealthy\\nheap\\nheaped\\nheaping\\nheaps\\nhear\\nhearable\\nheard\\nhearer\\nhearers\\nhearing\\nhearings\\nhearken\\nhearkened\\nhearkening\\nhearkens\\nhears\\nhearsay\\nhearsays\\nhearse\\nhearsed\\nhearses\\nhearsing\\nheart\\nheartache\\nheartaches\\nheartbeat\\nheartbeats\\nheartbreak\\nheartbreaking\\nheartbreaks\\nheartbroken\\nheartburn\\nheartburns\\nhearted\\nhearten\\nheartened\\nheartening\\nheartens\\nhearth\\nhearths\\nhearthstone\\nhearthstones\\nheartier\\nhearties\\nheartiest\\nheartily\\nheartiness\\nheartinesses\\nhearting\\nheartless\\nheartrending\\nhearts\\nheartsick\\nheartsickness\\nheartsicknesses\\nheartstrings\\nheartthrob\\nheartthrobs\\nheartwarming\\nheartwood\\nheartwoods\\nhearty\\nheat\\nheatable\\nheated\\nheatedly\\nheater\\nheaters\\nheath\\nheathen\\nheathens\\nheather\\nheathers\\nheathery\\nheathier\\nheathiest\\nheaths\\nheathy\\nheating\\nheatless\\nheats\\nheatstroke\\nheatstrokes\\nheaume\\nheaumes\\nheave\\nheaved\\nheaven\\nheavenlier\\nheavenliest\\nheavenly\\nheavens\\nheavenward\\nheaver\\nheavers\\nheaves\\nheavier\\nheavies\\nheaviest\\nheavily\\nheaviness\\nheavinesses\\nheaving\\nheavy\\nheavyset\\nheavyweight\\nheavyweights\\nhebdomad\\nhebdomads\\nhebetate\\nhebetated\\nhebetates\\nhebetating\\nhebetic\\nhebetude\\nhebetudes\\nhebraize\\nhebraized\\nhebraizes\\nhebraizing\\nhecatomb\\nhecatombs\\nheck\\nheckle\\nheckled\\nheckler\\nhecklers\\nheckles\\nheckling\\nhecks\\nhectare\\nhectares\\nhectic\\nhectical\\nhectically\\nhecticly\\nhector\\nhectored\\nhectoring\\nhectors\\nheddle\\nheddles\\nheder\\nheders\\nhedge\\nhedged\\nhedgehog\\nhedgehogs\\nhedgehop\\nhedgehopped\\nhedgehopping\\nhedgehops\\nhedgepig\\nhedgepigs\\nhedger\\nhedgerow\\nhedgerows\\nhedgers\\nhedges\\nhedgier\\nhedgiest\\nhedging\\nhedgy\\nhedonic\\nhedonics\\nhedonism\\nhedonisms\\nhedonist\\nhedonistic\\nhedonists\\nheed\\nheeded\\nheeder\\nheeders\\nheedful\\nheedfully\\nheedfulness\\nheedfulnesses\\nheeding\\nheedless\\nheedlessly\\nheedlessness\\nheedlessnesses\\nheeds\\nheehaw\\nheehawed\\nheehawing\\nheehaws\\nheel\\nheelball\\nheelballs\\nheeled\\nheeler\\nheelers\\nheeling\\nheelings\\nheelless\\nheelpost\\nheelposts\\nheels\\nheeltap\\nheeltaps\\nheeze\\nheezed\\nheezes\\nheezing\\nheft\\nhefted\\nhefter\\nhefters\\nheftier\\nheftiest\\nheftily\\nhefting\\nhefts\\nhefty\\nhegari\\nhegaris\\nhegemonies\\nhegemony\\nhegira\\nhegiras\\nhegumen\\nhegumene\\nhegumenes\\nhegumenies\\nhegumens\\nhegumeny\\nheifer\\nheifers\\nheigh\\nheight\\nheighten\\nheightened\\nheightening\\nheightens\\nheighth\\nheighths\\nheights\\nheil\\nheiled\\nheiling\\nheils\\nheinie\\nheinies\\nheinous\\nheinously\\nheinousness\\nheinousnesses\\nheir\\nheirdom\\nheirdoms\\nheired\\nheiress\\nheiresses\\nheiring\\nheirless\\nheirloom\\nheirlooms\\nheirs\\nheirship\\nheirships\\nheist\\nheisted\\nheister\\nheisters\\nheisting\\nheists\\nhejira\\nhejiras\\nhektare\\nhektares\\nheld\\nheliac\\nheliacal\\nheliast\\nheliasts\\nhelical\\nhelices\\nhelicities\\nhelicity\\nhelicoid\\nhelicoids\\nhelicon\\nhelicons\\nhelicopt\\nhelicopted\\nhelicopter\\nhelicopters\\nhelicopting\\nhelicopts\\nhelio\\nhelios\\nheliotrope\\nhelipad\\nhelipads\\nheliport\\nheliports\\nhelistop\\nhelistops\\nhelium\\nheliums\\nhelix\\nhelixes\\nhell\\nhellbent\\nhellbox\\nhellboxes\\nhellcat\\nhellcats\\nhelled\\nheller\\nhelleri\\nhelleries\\nhellers\\nhellery\\nhellfire\\nhellfires\\nhellgrammite\\nhellgrammites\\nhellhole\\nhellholes\\nhelling\\nhellion\\nhellions\\nhellish\\nhellkite\\nhellkites\\nhello\\nhelloed\\nhelloes\\nhelloing\\nhellos\\nhells\\nhelluva\\nhelm\\nhelmed\\nhelmet\\nhelmeted\\nhelmeting\\nhelmets\\nhelming\\nhelminth\\nhelminths\\nhelmless\\nhelms\\nhelmsman\\nhelmsmen\\nhelot\\nhelotage\\nhelotages\\nhelotism\\nhelotisms\\nhelotries\\nhelotry\\nhelots\\nhelp\\nhelpable\\nhelped\\nhelper\\nhelpers\\nhelpful\\nhelpfully\\nhelpfulness\\nhelpfulnesses\\nhelping\\nhelpings\\nhelpless\\nhelplessly\\nhelplessness\\nhelplessnesses\\nhelpmate\\nhelpmates\\nhelpmeet\\nhelpmeets\\nhelps\\nhelve\\nhelved\\nhelves\\nhelving\\nhem\\nhemagog\\nhemagogs\\nhemal\\nhematal\\nhematein\\nhemateins\\nhematic\\nhematics\\nhematin\\nhematine\\nhematines\\nhematins\\nhematite\\nhematites\\nhematocrit\\nhematoid\\nhematologic\\nhematological\\nhematologies\\nhematologist\\nhematologists\\nhematology\\nhematoma\\nhematomas\\nhematomata\\nhematopenia\\nhematuria\\nheme\\nhemes\\nhemic\\nhemin\\nhemins\\nhemiola\\nhemiolas\\nhemipter\\nhemipters\\nhemisphere\\nhemispheres\\nhemispheric\\nhemispherical\\nhemline\\nhemlines\\nhemlock\\nhemlocks\\nhemmed\\nhemmer\\nhemmers\\nhemming\\nhemocoel\\nhemocoels\\nhemocyte\\nhemocytes\\nhemoglobin\\nhemoid\\nhemolyze\\nhemolyzed\\nhemolyzes\\nhemolyzing\\nhemophilia\\nhemophiliac\\nhemophiliacs\\nhemoptysis\\nhemorrhage\\nhemorrhaged\\nhemorrhages\\nhemorrhagic\\nhemorrhaging\\nhemorrhoids\\nhemostat\\nhemostats\\nhemp\\nhempen\\nhempie\\nhempier\\nhempiest\\nhemplike\\nhemps\\nhempseed\\nhempseeds\\nhempweed\\nhempweeds\\nhempy\\nhems\\nhen\\nhenbane\\nhenbanes\\nhenbit\\nhenbits\\nhence\\nhenceforth\\nhenceforward\\nhenchman\\nhenchmen\\nhencoop\\nhencoops\\nhenequen\\nhenequens\\nhenequin\\nhenequins\\nhenhouse\\nhenhouses\\nheniquen\\nheniquens\\nhenlike\\nhenna\\nhennaed\\nhennaing\\nhennas\\nhenneries\\nhennery\\nhenpeck\\nhenpecked\\nhenpecking\\nhenpecks\\nhenries\\nhenry\\nhenrys\\nhens\\nhent\\nhented\\nhenting\\nhents\\nhep\\nheparin\\nheparins\\nhepatic\\nhepatica\\nhepaticae\\nhepaticas\\nhepatics\\nhepatitis\\nhepatize\\nhepatized\\nhepatizes\\nhepatizing\\nhepatoma\\nhepatomas\\nhepatomata\\nhepatomegaly\\nhepcat\\nhepcats\\nheptad\\nheptads\\nheptagon\\nheptagons\\nheptane\\nheptanes\\nheptarch\\nheptarchs\\nheptose\\nheptoses\\nher\\nherald\\nheralded\\nheraldic\\nheralding\\nheraldries\\nheraldry\\nheralds\\nherb\\nherbaceous\\nherbage\\nherbages\\nherbal\\nherbals\\nherbaria\\nherbicidal\\nherbicide\\nherbicides\\nherbier\\nherbiest\\nherbivorous\\nherbivorously\\nherbless\\nherblike\\nherbs\\nherby\\nherculean\\nhercules\\nherculeses\\nherd\\nherded\\nherder\\nherders\\nherdic\\nherdics\\nherding\\nherdlike\\nherdman\\nherdmen\\nherds\\nherdsman\\nherdsmen\\nhere\\nhereabout\\nhereabouts\\nhereafter\\nhereafters\\nhereat\\nhereaway\\nhereby\\nheredes\\nhereditary\\nheredities\\nheredity\\nherein\\nhereinto\\nhereof\\nhereon\\nheres\\nheresies\\nheresy\\nheretic\\nheretical\\nheretics\\nhereto\\nheretofore\\nheretrices\\nheretrix\\nheretrixes\\nhereunder\\nhereunto\\nhereupon\\nherewith\\nheriot\\nheriots\\nheritage\\nheritages\\nheritor\\nheritors\\nheritrices\\nheritrix\\nheritrixes\\nherl\\nherls\\nherm\\nherma\\nhermae\\nhermaean\\nhermai\\nhermaphrodite\\nhermaphrodites\\nhermaphroditic\\nhermetic\\nhermetically\\nhermit\\nhermitic\\nhermitries\\nhermitry\\nhermits\\nherms\\nhern\\nhernia\\nherniae\\nhernial\\nhernias\\nherniate\\nherniated\\nherniates\\nherniating\\nherniation\\nherniations\\nherns\\nhero\\nheroes\\nheroic\\nheroical\\nheroics\\nheroin\\nheroine\\nheroines\\nheroins\\nheroism\\nheroisms\\nheroize\\nheroized\\nheroizes\\nheroizing\\nheron\\nheronries\\nheronry\\nherons\\nheros\\nherpes\\nherpeses\\nherpetic\\nherpetologic\\nherpetological\\nherpetologies\\nherpetologist\\nherpetologists\\nherpetology\\nherried\\nherries\\nherring\\nherrings\\nherry\\nherrying\\nhers\\nherself\\nhertz\\nhertzes\\nhes\\nhesitancies\\nhesitancy\\nhesitant\\nhesitantly\\nhesitate\\nhesitated\\nhesitates\\nhesitating\\nhesitation\\nhesitations\\nhessian\\nhessians\\nhessite\\nhessites\\nhest\\nhests\\nhet\\nhetaera\\nhetaerae\\nhetaeras\\nhetaeric\\nhetaira\\nhetairai\\nhetairas\\nhetero\\nheterogenous\\nheterogenously\\nheterogenousness\\nheterogenousnesses\\nheteros\\nheterosexual\\nheterosexuals\\nheth\\nheths\\nhetman\\nhetmans\\nheuch\\nheuchs\\nheugh\\nheughs\\nhew\\nhewable\\nhewed\\nhewer\\nhewers\\nhewing\\nhewn\\nhews\\nhex\\nhexad\\nhexade\\nhexades\\nhexadic\\nhexads\\nhexagon\\nhexagonal\\nhexagons\\nhexagram\\nhexagrams\\nhexamine\\nhexamines\\nhexane\\nhexanes\\nhexapla\\nhexaplar\\nhexaplas\\nhexapod\\nhexapodies\\nhexapods\\nhexapody\\nhexarchies\\nhexarchy\\nhexed\\nhexer\\nhexerei\\nhexereis\\nhexers\\nhexes\\nhexing\\nhexone\\nhexones\\nhexosan\\nhexosans\\nhexose\\nhexoses\\nhexyl\\nhexyls\\nhey\\nheyday\\nheydays\\nheydey\\nheydeys\\nhi\\nhiatal\\nhiatus\\nhiatuses\\nhibachi\\nhibachis\\nhibernal\\nhibernate\\nhibernated\\nhibernates\\nhibernating\\nhibernation\\nhibernations\\nhibernator\\nhibernators\\nhibiscus\\nhibiscuses\\nhic\\nhiccough\\nhiccoughed\\nhiccoughing\\nhiccoughs\\nhiccup\\nhiccuped\\nhiccuping\\nhiccupped\\nhiccupping\\nhiccups\\nhick\\nhickey\\nhickeys\\nhickories\\nhickory\\nhicks\\nhid\\nhidable\\nhidalgo\\nhidalgos\\nhidden\\nhiddenly\\nhide\\nhideaway\\nhideaways\\nhided\\nhideless\\nhideous\\nhideously\\nhideousness\\nhideousnesses\\nhideout\\nhideouts\\nhider\\nhiders\\nhides\\nhiding\\nhidings\\nhidroses\\nhidrosis\\nhidrotic\\nhie\\nhied\\nhieing\\nhiemal\\nhierarch\\nhierarchical\\nhierarchies\\nhierarchs\\nhierarchy\\nhieratic\\nhieroglyphic\\nhieroglyphics\\nhies\\nhiggle\\nhiggled\\nhiggler\\nhigglers\\nhiggles\\nhiggling\\nhigh\\nhighball\\nhighballed\\nhighballing\\nhighballs\\nhighborn\\nhighboy\\nhighboys\\nhighbred\\nhighbrow\\nhighbrows\\nhighbush\\nhighchair\\nhighchairs\\nhigher\\nhighest\\nhighjack\\nhighjacked\\nhighjacking\\nhighjacks\\nhighland\\nhighlander\\nhighlanders\\nhighlands\\nhighlight\\nhighlighted\\nhighlighting\\nhighlights\\nhighly\\nhighness\\nhighnesses\\nhighroad\\nhighroads\\nhighs\\nhight\\nhightail\\nhightailed\\nhightailing\\nhightails\\nhighted\\nhighth\\nhighths\\nhighting\\nhights\\nhighway\\nhighwayman\\nhighwaymen\\nhighways\\nhijack\\nhijacked\\nhijacker\\nhijackers\\nhijacking\\nhijacks\\nhijinks\\nhike\\nhiked\\nhiker\\nhikers\\nhikes\\nhiking\\nhila\\nhilar\\nhilarious\\nhilariously\\nhilarities\\nhilarity\\nhilding\\nhildings\\nhili\\nhill\\nhillbillies\\nhillbilly\\nhilled\\nhiller\\nhillers\\nhillier\\nhilliest\\nhilling\\nhillo\\nhilloa\\nhilloaed\\nhilloaing\\nhilloas\\nhillock\\nhillocks\\nhillocky\\nhilloed\\nhilloing\\nhillos\\nhills\\nhillside\\nhillsides\\nhilltop\\nhilltops\\nhilly\\nhilt\\nhilted\\nhilting\\nhiltless\\nhilts\\nhilum\\nhilus\\nhim\\nhimatia\\nhimation\\nhimations\\nhimself\\nhin\\nhind\\nhinder\\nhindered\\nhinderer\\nhinderers\\nhindering\\nhinders\\nhindgut\\nhindguts\\nhindmost\\nhindquarter\\nhindquarters\\nhinds\\nhindsight\\nhindsights\\nhinge\\nhinged\\nhinger\\nhingers\\nhinges\\nhinging\\nhinnied\\nhinnies\\nhinny\\nhinnying\\nhins\\nhint\\nhinted\\nhinter\\nhinterland\\nhinterlands\\nhinters\\nhinting\\nhints\\nhip\\nhipbone\\nhipbones\\nhipless\\nhiplike\\nhipness\\nhipnesses\\nhipparch\\nhipparchs\\nhipped\\nhipper\\nhippest\\nhippie\\nhippiedom\\nhippiedoms\\nhippiehood\\nhippiehoods\\nhippier\\nhippies\\nhippiest\\nhipping\\nhippish\\nhippo\\nhippopotami\\nhippopotamus\\nhippopotamuses\\nhippos\\nhippy\\nhips\\nhipshot\\nhipster\\nhipsters\\nhirable\\nhiragana\\nhiraganas\\nhircine\\nhire\\nhireable\\nhired\\nhireling\\nhirelings\\nhirer\\nhirers\\nhires\\nhiring\\nhirple\\nhirpled\\nhirples\\nhirpling\\nhirsel\\nhirseled\\nhirseling\\nhirselled\\nhirselling\\nhirsels\\nhirsle\\nhirsled\\nhirsles\\nhirsling\\nhirsute\\nhirsutism\\nhirudin\\nhirudins\\nhis\\nhisn\\nhispid\\nhiss\\nhissed\\nhisself\\nhisser\\nhissers\\nhisses\\nhissing\\nhissings\\nhist\\nhistamin\\nhistamine\\nhistamines\\nhistamins\\nhisted\\nhistidin\\nhistidins\\nhisting\\nhistogen\\nhistogens\\nhistogram\\nhistograms\\nhistoid\\nhistologic\\nhistone\\nhistones\\nhistopathologic\\nhistopathological\\nhistorian\\nhistorians\\nhistoric\\nhistorical\\nhistorically\\nhistories\\nhistory\\nhists\\nhit\\nhitch\\nhitched\\nhitcher\\nhitchers\\nhitches\\nhitchhike\\nhitchhiked\\nhitchhiker\\nhitchhikers\\nhitchhikes\\nhitchhiking\\nhitching\\nhither\\nhitherto\\nhitless\\nhits\\nhitter\\nhitters\\nhitting\\nhive\\nhived\\nhiveless\\nhiver\\nhives\\nhiving\\nho\\nhoactzin\\nhoactzines\\nhoactzins\\nhoagie\\nhoagies\\nhoagy\\nhoar\\nhoard\\nhoarded\\nhoarder\\nhoarders\\nhoarding\\nhoardings\\nhoards\\nhoarfrost\\nhoarfrosts\\nhoarier\\nhoariest\\nhoarily\\nhoariness\\nhoarinesses\\nhoars\\nhoarse\\nhoarsely\\nhoarsen\\nhoarsened\\nhoarseness\\nhoarsenesses\\nhoarsening\\nhoarsens\\nhoarser\\nhoarsest\\nhoary\\nhoatzin\\nhoatzines\\nhoatzins\\nhoax\\nhoaxed\\nhoaxer\\nhoaxers\\nhoaxes\\nhoaxing\\nhob\\nhobbed\\nhobbies\\nhobbing\\nhobble\\nhobbled\\nhobbler\\nhobblers\\nhobbles\\nhobbling\\nhobby\\nhobbyist\\nhobbyists\\nhobgoblin\\nhobgoblins\\nhoblike\\nhobnail\\nhobnailed\\nhobnails\\nhobnob\\nhobnobbed\\nhobnobbing\\nhobnobs\\nhobo\\nhoboed\\nhoboes\\nhoboing\\nhoboism\\nhoboisms\\nhobos\\nhobs\\nhock\\nhocked\\nhocker\\nhockers\\nhockey\\nhockeys\\nhocking\\nhocks\\nhockshop\\nhockshops\\nhocus\\nhocused\\nhocuses\\nhocusing\\nhocussed\\nhocusses\\nhocussing\\nhod\\nhodad\\nhodaddies\\nhodaddy\\nhodads\\nhodden\\nhoddens\\nhoddin\\nhoddins\\nhodgepodge\\nhodgepodges\\nhods\\nhoe\\nhoecake\\nhoecakes\\nhoed\\nhoedown\\nhoedowns\\nhoeing\\nhoelike\\nhoer\\nhoers\\nhoes\\nhog\\nhogan\\nhogans\\nhogback\\nhogbacks\\nhogfish\\nhogfishes\\nhogg\\nhogged\\nhogger\\nhoggers\\nhogging\\nhoggish\\nhoggs\\nhoglike\\nhogmanay\\nhogmanays\\nhogmane\\nhogmanes\\nhogmenay\\nhogmenays\\nhognose\\nhognoses\\nhognut\\nhognuts\\nhogs\\nhogshead\\nhogsheads\\nhogtie\\nhogtied\\nhogtieing\\nhogties\\nhogtying\\nhogwash\\nhogwashes\\nhogweed\\nhogweeds\\nhoick\\nhoicked\\nhoicking\\nhoicks\\nhoiden\\nhoidened\\nhoidening\\nhoidens\\nhoise\\nhoised\\nhoises\\nhoising\\nhoist\\nhoisted\\nhoister\\nhoisters\\nhoisting\\nhoists\\nhoke\\nhoked\\nhokes\\nhokey\\nhoking\\nhokku\\nhokum\\nhokums\\nhokypokies\\nhokypoky\\nholard\\nholards\\nhold\\nholdable\\nholdall\\nholdalls\\nholdback\\nholdbacks\\nholden\\nholder\\nholders\\nholdfast\\nholdfasts\\nholding\\nholdings\\nholdout\\nholdouts\\nholdover\\nholdovers\\nholds\\nholdup\\nholdups\\nhole\\nholed\\nholeless\\nholer\\nholes\\nholey\\nholibut\\nholibuts\\nholiday\\nholidayed\\nholidaying\\nholidays\\nholier\\nholies\\nholiest\\nholily\\nholiness\\nholinesses\\nholing\\nholism\\nholisms\\nholist\\nholistic\\nholists\\nholk\\nholked\\nholking\\nholks\\nholla\\nhollaed\\nhollaing\\nholland\\nhollands\\nhollas\\nholler\\nhollered\\nhollering\\nhollers\\nhollies\\nhollo\\nholloa\\nholloaed\\nholloaing\\nholloas\\nholloed\\nholloes\\nholloing\\nholloo\\nhollooed\\nhollooing\\nholloos\\nhollos\\nhollow\\nhollowed\\nhollower\\nhollowest\\nhollowing\\nhollowly\\nhollowness\\nhollownesses\\nhollows\\nholly\\nhollyhock\\nhollyhocks\\nholm\\nholmic\\nholmium\\nholmiums\\nholms\\nholocaust\\nholocausts\\nhologram\\nholograms\\nhologynies\\nhologyny\\nholotype\\nholotypes\\nholozoic\\nholp\\nholpen\\nholstein\\nholsteins\\nholster\\nholsters\\nholt\\nholts\\nholy\\nholyday\\nholydays\\nholytide\\nholytides\\nhomage\\nhomaged\\nhomager\\nhomagers\\nhomages\\nhomaging\\nhombre\\nhombres\\nhomburg\\nhomburgs\\nhome\\nhomebodies\\nhomebody\\nhomebred\\nhomebreds\\nhomecoming\\nhomecomings\\nhomed\\nhomeland\\nhomelands\\nhomeless\\nhomelier\\nhomeliest\\nhomelike\\nhomeliness\\nhomelinesses\\nhomely\\nhomemade\\nhomemaker\\nhomemakers\\nhomemaking\\nhomemakings\\nhomer\\nhomered\\nhomering\\nhomeroom\\nhomerooms\\nhomers\\nhomes\\nhomesick\\nhomesickness\\nhomesicknesses\\nhomesite\\nhomesites\\nhomespun\\nhomespuns\\nhomestead\\nhomesteader\\nhomesteaders\\nhomesteads\\nhomestretch\\nhomestretches\\nhometown\\nhometowns\\nhomeward\\nhomewards\\nhomework\\nhomeworks\\nhomey\\nhomicidal\\nhomicide\\nhomicides\\nhomier\\nhomiest\\nhomiletic\\nhomilies\\nhomilist\\nhomilists\\nhomily\\nhominess\\nhominesses\\nhoming\\nhominian\\nhominians\\nhominid\\nhominids\\nhominies\\nhominine\\nhominoid\\nhominoids\\nhominy\\nhommock\\nhommocks\\nhomo\\nhomogamies\\nhomogamy\\nhomogeneities\\nhomogeneity\\nhomogeneous\\nhomogeneously\\nhomogeneousness\\nhomogeneousnesses\\nhomogenies\\nhomogenize\\nhomogenized\\nhomogenizer\\nhomogenizers\\nhomogenizes\\nhomogenizing\\nhomogeny\\nhomogonies\\nhomogony\\nhomograph\\nhomographs\\nhomolog\\nhomologies\\nhomologs\\nhomology\\nhomonym\\nhomonymies\\nhomonyms\\nhomonymy\\nhomophone\\nhomophones\\nhomos\\nhomosexual\\nhomosexuals\\nhomy\\nhonan\\nhonans\\nhoncho\\nhonchos\\nhonda\\nhondas\\nhondle\\nhondled\\nhondling\\nhone\\nhoned\\nhoner\\nhoners\\nhones\\nhonest\\nhonester\\nhonestest\\nhonesties\\nhonestly\\nhonesty\\nhonewort\\nhoneworts\\nhoney\\nhoneybee\\nhoneybees\\nhoneybun\\nhoneybuns\\nhoneycomb\\nhoneycombed\\nhoneycombing\\nhoneycombs\\nhoneydew\\nhoneydews\\nhoneyed\\nhoneyful\\nhoneying\\nhoneymoon\\nhoneymooned\\nhoneymooning\\nhoneymoons\\nhoneys\\nhoneysuckle\\nhoneysuckles\\nhong\\nhongs\\nhonied\\nhoning\\nhonk\\nhonked\\nhonker\\nhonkers\\nhonkey\\nhonkeys\\nhonkie\\nhonkies\\nhonking\\nhonks\\nhonky\\nhonor\\nhonorable\\nhonorably\\nhonorand\\nhonorands\\nhonoraries\\nhonorarily\\nhonorary\\nhonored\\nhonoree\\nhonorees\\nhonorer\\nhonorers\\nhonoring\\nhonors\\nhonour\\nhonoured\\nhonourer\\nhonourers\\nhonouring\\nhonours\\nhooch\\nhooches\\nhood\\nhooded\\nhoodie\\nhoodies\\nhooding\\nhoodless\\nhoodlike\\nhoodlum\\nhoodlums\\nhoodoo\\nhoodooed\\nhoodooing\\nhoodoos\\nhoods\\nhoodwink\\nhoodwinked\\nhoodwinking\\nhoodwinks\\nhooey\\nhooeys\\nhoof\\nhoofbeat\\nhoofbeats\\nhoofed\\nhoofer\\nhoofers\\nhoofing\\nhoofless\\nhooflike\\nhoofs\\nhook\\nhooka\\nhookah\\nhookahs\\nhookas\\nhooked\\nhooker\\nhookers\\nhookey\\nhookeys\\nhookier\\nhookies\\nhookiest\\nhooking\\nhookless\\nhooklet\\nhooklets\\nhooklike\\nhooknose\\nhooknoses\\nhooks\\nhookup\\nhookups\\nhookworm\\nhookworms\\nhooky\\nhoolie\\nhooligan\\nhooligans\\nhooly\\nhoop\\nhooped\\nhooper\\nhoopers\\nhooping\\nhoopla\\nhooplas\\nhoopless\\nhooplike\\nhoopoe\\nhoopoes\\nhoopoo\\nhoopoos\\nhoops\\nhoopster\\nhoopsters\\nhoorah\\nhoorahed\\nhoorahing\\nhoorahs\\nhooray\\nhoorayed\\nhooraying\\nhoorays\\nhoosegow\\nhoosegows\\nhoosgow\\nhoosgows\\nhoot\\nhootch\\nhootches\\nhooted\\nhooter\\nhooters\\nhootier\\nhootiest\\nhooting\\nhoots\\nhooty\\nhooves\\nhop\\nhope\\nhoped\\nhopeful\\nhopefully\\nhopefulness\\nhopefulnesses\\nhopefuls\\nhopeless\\nhopelessly\\nhopelessness\\nhopelessnesses\\nhoper\\nhopers\\nhopes\\nhophead\\nhopheads\\nhoping\\nhoplite\\nhoplites\\nhoplitic\\nhopped\\nhopper\\nhoppers\\nhopping\\nhopple\\nhoppled\\nhopples\\nhoppling\\nhops\\nhopsack\\nhopsacks\\nhoptoad\\nhoptoads\\nhora\\nhorah\\nhorahs\\nhoral\\nhorary\\nhoras\\nhorde\\nhorded\\nhordein\\nhordeins\\nhordes\\nhording\\nhorehound\\nhorehounds\\nhorizon\\nhorizons\\nhorizontal\\nhorizontally\\nhormonal\\nhormone\\nhormones\\nhormonic\\nhorn\\nhornbeam\\nhornbeams\\nhornbill\\nhornbills\\nhornbook\\nhornbooks\\nhorned\\nhornet\\nhornets\\nhornfels\\nhornier\\nhorniest\\nhornily\\nhorning\\nhornito\\nhornitos\\nhornless\\nhornlike\\nhornpipe\\nhornpipes\\nhornpout\\nhornpouts\\nhorns\\nhorntail\\nhorntails\\nhornworm\\nhornworms\\nhornwort\\nhornworts\\nhorny\\nhorologe\\nhorologes\\nhorological\\nhorologies\\nhorologist\\nhorologists\\nhorology\\nhoroscope\\nhoroscopes\\nhorrendous\\nhorrent\\nhorrible\\nhorribleness\\nhorriblenesses\\nhorribles\\nhorribly\\nhorrid\\nhorridly\\nhorrific\\nhorrified\\nhorrifies\\nhorrify\\nhorrifying\\nhorror\\nhorrors\\nhorse\\nhorseback\\nhorsebacks\\nhorsecar\\nhorsecars\\nhorsed\\nhorseflies\\nhorsefly\\nhorsehair\\nhorsehairs\\nhorsehide\\nhorsehides\\nhorseless\\nhorseman\\nhorsemanship\\nhorsemanships\\nhorsemen\\nhorseplay\\nhorseplays\\nhorsepower\\nhorsepowers\\nhorseradish\\nhorseradishes\\nhorses\\nhorseshoe\\nhorseshoes\\nhorsewoman\\nhorsewomen\\nhorsey\\nhorsier\\nhorsiest\\nhorsily\\nhorsing\\nhorst\\nhorste\\nhorstes\\nhorsts\\nhorsy\\nhortatory\\nhorticultural\\nhorticulture\\nhorticultures\\nhorticulturist\\nhorticulturists\\nhosanna\\nhosannaed\\nhosannaing\\nhosannas\\nhose\\nhosed\\nhosel\\nhosels\\nhosen\\nhoses\\nhosier\\nhosieries\\nhosiers\\nhosiery\\nhosing\\nhospice\\nhospices\\nhospitable\\nhospitably\\nhospital\\nhospitalities\\nhospitality\\nhospitalization\\nhospitalizations\\nhospitalize\\nhospitalized\\nhospitalizes\\nhospitalizing\\nhospitals\\nhospitia\\nhospodar\\nhospodars\\nhost\\nhostage\\nhostages\\nhosted\\nhostel\\nhosteled\\nhosteler\\nhostelers\\nhosteling\\nhostelries\\nhostelry\\nhostels\\nhostess\\nhostessed\\nhostesses\\nhostessing\\nhostile\\nhostilely\\nhostiles\\nhostilities\\nhostility\\nhosting\\nhostler\\nhostlers\\nhostly\\nhosts\\nhot\\nhotbed\\nhotbeds\\nhotblood\\nhotbloods\\nhotbox\\nhotboxes\\nhotcake\\nhotcakes\\nhotch\\nhotched\\nhotches\\nhotching\\nhotchpot\\nhotchpots\\nhotdog\\nhotdogged\\nhotdogging\\nhotdogs\\nhotel\\nhotelier\\nhoteliers\\nhotelman\\nhotelmen\\nhotels\\nhotfoot\\nhotfooted\\nhotfooting\\nhotfoots\\nhothead\\nhotheaded\\nhotheadedly\\nhotheadedness\\nhotheadednesses\\nhotheads\\nhothouse\\nhothouses\\nhotly\\nhotness\\nhotnesses\\nhotpress\\nhotpressed\\nhotpresses\\nhotpressing\\nhotrod\\nhotrods\\nhots\\nhotshot\\nhotshots\\nhotspur\\nhotspurs\\nhotted\\nhotter\\nhottest\\nhotting\\nhottish\\nhoudah\\nhoudahs\\nhound\\nhounded\\nhounder\\nhounders\\nhounding\\nhounds\\nhour\\nhourglass\\nhourglasses\\nhouri\\nhouris\\nhourly\\nhours\\nhouse\\nhouseboat\\nhouseboats\\nhouseboy\\nhouseboys\\nhousebreak\\nhousebreaks\\nhousebroken\\nhouseclean\\nhousecleaned\\nhousecleaning\\nhousecleanings\\nhousecleans\\nhoused\\nhouseflies\\nhousefly\\nhouseful\\nhousefuls\\nhousehold\\nhouseholder\\nhouseholders\\nhouseholds\\nhousekeeper\\nhousekeepers\\nhousekeeping\\nhousel\\nhouseled\\nhouseling\\nhouselled\\nhouselling\\nhousels\\nhousemaid\\nhousemaids\\nhouseman\\nhousemate\\nhousemates\\nhousemen\\nhouser\\nhousers\\nhouses\\nhousetop\\nhousetops\\nhousewares\\nhousewarming\\nhousewarmings\\nhousewife\\nhousewifeliness\\nhousewifelinesses\\nhousewifely\\nhousewiferies\\nhousewifery\\nhousewives\\nhousework\\nhouseworks\\nhousing\\nhousings\\nhove\\nhovel\\nhoveled\\nhoveling\\nhovelled\\nhovelling\\nhovels\\nhover\\nhovered\\nhoverer\\nhoverers\\nhovering\\nhovers\\nhow\\nhowbeit\\nhowdah\\nhowdahs\\nhowdie\\nhowdies\\nhowdy\\nhowe\\nhowes\\nhowever\\nhowf\\nhowff\\nhowffs\\nhowfs\\nhowitzer\\nhowitzers\\nhowk\\nhowked\\nhowking\\nhowks\\nhowl\\nhowled\\nhowler\\nhowlers\\nhowlet\\nhowlets\\nhowling\\nhowls\\nhows\\nhoy\\nhoyden\\nhoydened\\nhoydening\\nhoydens\\nhoyle\\nhoyles\\nhoys\\nhuarache\\nhuaraches\\nhuaracho\\nhuarachos\\nhub\\nhubbies\\nhubbub\\nhubbubs\\nhubby\\nhubcap\\nhubcaps\\nhubris\\nhubrises\\nhubs\\nhuck\\nhuckle\\nhuckleberries\\nhuckleberry\\nhuckles\\nhucks\\nhuckster\\nhuckstered\\nhuckstering\\nhucksters\\nhuddle\\nhuddled\\nhuddler\\nhuddlers\\nhuddles\\nhuddling\\nhue\\nhued\\nhueless\\nhues\\nhuff\\nhuffed\\nhuffier\\nhuffiest\\nhuffily\\nhuffing\\nhuffish\\nhuffs\\nhuffy\\nhug\\nhuge\\nhugely\\nhugeness\\nhugenesses\\nhugeous\\nhuger\\nhugest\\nhuggable\\nhugged\\nhugger\\nhuggers\\nhugging\\nhugs\\nhuh\\nhuic\\nhula\\nhulas\\nhulk\\nhulked\\nhulkier\\nhulkiest\\nhulking\\nhulks\\nhulky\\nhull\\nhullabaloo\\nhullabaloos\\nhulled\\nhuller\\nhullers\\nhulling\\nhullo\\nhulloa\\nhulloaed\\nhulloaing\\nhulloas\\nhulloed\\nhulloes\\nhulloing\\nhullos\\nhulls\\nhum\\nhuman\\nhumane\\nhumanely\\nhumaneness\\nhumanenesses\\nhumaner\\nhumanest\\nhumanise\\nhumanised\\nhumanises\\nhumanising\\nhumanism\\nhumanisms\\nhumanist\\nhumanistic\\nhumanists\\nhumanitarian\\nhumanitarianism\\nhumanitarianisms\\nhumanitarians\\nhumanities\\nhumanity\\nhumanization\\nhumanizations\\nhumanize\\nhumanized\\nhumanizes\\nhumanizing\\nhumankind\\nhumankinds\\nhumanly\\nhumanness\\nhumannesses\\nhumanoid\\nhumanoids\\nhumans\\nhumate\\nhumates\\nhumble\\nhumbled\\nhumbleness\\nhumblenesses\\nhumbler\\nhumblers\\nhumbles\\nhumblest\\nhumbling\\nhumbly\\nhumbug\\nhumbugged\\nhumbugging\\nhumbugs\\nhumdrum\\nhumdrums\\nhumeral\\nhumerals\\nhumeri\\nhumerus\\nhumic\\nhumid\\nhumidification\\nhumidifications\\nhumidified\\nhumidifier\\nhumidifiers\\nhumidifies\\nhumidify\\nhumidifying\\nhumidities\\nhumidity\\nhumidly\\nhumidor\\nhumidors\\nhumified\\nhumiliate\\nhumiliated\\nhumiliates\\nhumiliating\\nhumiliatingly\\nhumiliation\\nhumiliations\\nhumilities\\nhumility\\nhummable\\nhummed\\nhummer\\nhummers\\nhumming\\nhummingbird\\nhummingbirds\\nhummock\\nhummocks\\nhummocky\\nhumor\\nhumoral\\nhumored\\nhumorful\\nhumoring\\nhumorist\\nhumorists\\nhumorless\\nhumorlessly\\nhumorlessness\\nhumorlessnesses\\nhumorous\\nhumorously\\nhumorousness\\nhumorousnesses\\nhumors\\nhumour\\nhumoured\\nhumouring\\nhumours\\nhump\\nhumpback\\nhumpbacked\\nhumpbacks\\nhumped\\nhumph\\nhumphed\\nhumphing\\nhumphs\\nhumpier\\nhumpiest\\nhumping\\nhumpless\\nhumps\\nhumpy\\nhums\\nhumus\\nhumuses\\nhun\\nhunch\\nhunchback\\nhunchbacked\\nhunchbacks\\nhunched\\nhunches\\nhunching\\nhundred\\nhundreds\\nhundredth\\nhundredths\\nhung\\nhunger\\nhungered\\nhungering\\nhungers\\nhungrier\\nhungriest\\nhungrily\\nhungry\\nhunk\\nhunker\\nhunkered\\nhunkering\\nhunkers\\nhunkies\\nhunks\\nhunky\\nhunnish\\nhuns\\nhunt\\nhuntable\\nhunted\\nhuntedly\\nhunter\\nhunters\\nhunting\\nhuntings\\nhuntington\\nhuntress\\nhuntresses\\nhunts\\nhuntsman\\nhuntsmen\\nhup\\nhurdies\\nhurdle\\nhurdled\\nhurdler\\nhurdlers\\nhurdles\\nhurdling\\nhurds\\nhurl\\nhurled\\nhurler\\nhurlers\\nhurley\\nhurleys\\nhurlies\\nhurling\\nhurlings\\nhurls\\nhurly\\nhurrah\\nhurrahed\\nhurrahing\\nhurrahs\\nhurray\\nhurrayed\\nhurraying\\nhurrays\\nhurricane\\nhurricanes\\nhurried\\nhurrier\\nhurriers\\nhurries\\nhurry\\nhurrying\\nhurt\\nhurter\\nhurters\\nhurtful\\nhurting\\nhurtle\\nhurtled\\nhurtles\\nhurtless\\nhurtling\\nhurts\\nhusband\\nhusbanded\\nhusbanding\\nhusbandries\\nhusbandry\\nhusbands\\nhush\\nhushaby\\nhushed\\nhushedly\\nhushes\\nhushful\\nhushing\\nhusk\\nhusked\\nhusker\\nhuskers\\nhuskier\\nhuskies\\nhuskiest\\nhuskily\\nhuskiness\\nhuskinesses\\nhusking\\nhuskings\\nhusklike\\nhusks\\nhusky\\nhussar\\nhussars\\nhussies\\nhussy\\nhustings\\nhustle\\nhustled\\nhustler\\nhustlers\\nhustles\\nhustling\\nhuswife\\nhuswifes\\nhuswives\\nhut\\nhutch\\nhutched\\nhutches\\nhutching\\nhutlike\\nhutment\\nhutments\\nhuts\\nhutted\\nhutting\\nhutzpa\\nhutzpah\\nhutzpahs\\nhutzpas\\nhuzza\\nhuzzaed\\nhuzzah\\nhuzzahed\\nhuzzahing\\nhuzzahs\\nhuzzaing\\nhuzzas\\nhwan\\nhyacinth\\nhyacinths\\nhyaena\\nhyaenas\\nhyaenic\\nhyalin\\nhyaline\\nhyalines\\nhyalins\\nhyalite\\nhyalites\\nhyalogen\\nhyalogens\\nhyaloid\\nhyaloids\\nhybrid\\nhybridization\\nhybridizations\\nhybridize\\nhybridized\\nhybridizer\\nhybridizers\\nhybridizes\\nhybridizing\\nhybrids\\nhybris\\nhybrises\\nhydatid\\nhydatids\\nhydra\\nhydracid\\nhydracids\\nhydrae\\nhydragog\\nhydragogs\\nhydrant\\nhydranth\\nhydranths\\nhydrants\\nhydras\\nhydrase\\nhydrases\\nhydrate\\nhydrated\\nhydrates\\nhydrating\\nhydrator\\nhydrators\\nhydraulic\\nhydraulics\\nhydria\\nhydriae\\nhydric\\nhydrid\\nhydride\\nhydrides\\nhydrids\\nhydro\\nhydrocarbon\\nhydrocarbons\\nhydrochloride\\nhydroelectric\\nhydroelectrically\\nhydroelectricities\\nhydroelectricity\\nhydrogel\\nhydrogels\\nhydrogen\\nhydrogenous\\nhydrogens\\nhydroid\\nhydroids\\nhydromel\\nhydromels\\nhydronic\\nhydrophobia\\nhydrophobias\\nhydropic\\nhydroplane\\nhydroplanes\\nhydrops\\nhydropses\\nhydropsies\\nhydropsy\\nhydros\\nhydrosol\\nhydrosols\\nhydrous\\nhydroxy\\nhydroxyl\\nhydroxyls\\nhydroxyurea\\nhyena\\nhyenas\\nhyenic\\nhyenine\\nhyenoid\\nhyetal\\nhygeist\\nhygeists\\nhygieist\\nhygieists\\nhygiene\\nhygienes\\nhygienic\\nhygienically\\nhygrometer\\nhygrometers\\nhygrometries\\nhygrometry\\nhying\\nhyla\\nhylas\\nhylozoic\\nhymen\\nhymenal\\nhymeneal\\nhymeneals\\nhymenia\\nhymenial\\nhymenium\\nhymeniums\\nhymens\\nhymn\\nhymnal\\nhymnals\\nhymnaries\\nhymnary\\nhymnbook\\nhymnbooks\\nhymned\\nhymning\\nhymnist\\nhymnists\\nhymnless\\nhymnlike\\nhymnodies\\nhymnody\\nhymns\\nhyoid\\nhyoidal\\nhyoidean\\nhyoids\\nhyoscine\\nhyoscines\\nhyp\\nhype\\nhyperacid\\nhyperacidities\\nhyperacidity\\nhyperactive\\nhyperacute\\nhyperadrenalism\\nhyperaggressive\\nhyperaggressiveness\\nhyperaggressivenesses\\nhyperanxious\\nhyperbole\\nhyperboles\\nhypercalcemia\\nhypercalcemias\\nhypercautious\\nhyperclean\\nhyperconscientious\\nhypercorrect\\nhypercritical\\nhyperemotional\\nhyperenergetic\\nhyperexcitable\\nhyperfastidious\\nhypergol\\nhypergols\\nhyperintense\\nhypermasculine\\nhypermilitant\\nhypermoralistic\\nhypernationalistic\\nhyperon\\nhyperons\\nhyperope\\nhyperopes\\nhyperreactive\\nhyperrealistic\\nhyperromantic\\nhypersensitive\\nhypersensitiveness\\nhypersensitivenesses\\nhypersensitivities\\nhypersensitivity\\nhypersexual\\nhypersusceptible\\nhypersuspicious\\nhypertense\\nhypertension\\nhypertensions\\nhypertensive\\nhypertensives\\nhyperthermia\\nhyperthyroidism\\nhyperuricemia\\nhypervigilant\\nhypes\\nhypha\\nhyphae\\nhyphal\\nhyphemia\\nhyphemias\\nhyphen\\nhyphenate\\nhyphenated\\nhyphenates\\nhyphenating\\nhyphenation\\nhyphenations\\nhyphened\\nhyphening\\nhyphens\\nhypnic\\nhypnoid\\nhypnoses\\nhypnosis\\nhypnotic\\nhypnotically\\nhypnotics\\nhypnotism\\nhypnotisms\\nhypnotizable\\nhypnotize\\nhypnotized\\nhypnotizes\\nhypnotizing\\nhypo\\nhypoacid\\nhypocalcemia\\nhypochondria\\nhypochondriac\\nhypochondriacs\\nhypochondrias\\nhypocrisies\\nhypocrisy\\nhypocrite\\nhypocrites\\nhypocritical\\nhypocritically\\nhypoderm\\nhypodermic\\nhypodermics\\nhypoderms\\nhypoed\\nhypogea\\nhypogeal\\nhypogean\\nhypogene\\nhypogeum\\nhypogynies\\nhypogyny\\nhypoing\\nhypokalemia\\nhyponea\\nhyponeas\\nhyponoia\\nhyponoias\\nhypopnea\\nhypopneas\\nhypopyon\\nhypopyons\\nhypos\\nhypotension\\nhypotensions\\nhypotenuse\\nhypotenuses\\nhypothec\\nhypothecs\\nhypotheses\\nhypothesis\\nhypothetical\\nhypothetically\\nhypothyroidism\\nhypoxia\\nhypoxias\\nhypoxic\\nhyps\\nhyraces\\nhyracoid\\nhyracoids\\nhyrax\\nhyraxes\\nhyson\\nhysons\\nhyssop\\nhyssops\\nhysterectomies\\nhysterectomize\\nhysterectomized\\nhysterectomizes\\nhysterectomizing\\nhysterectomy\\nhysteria\\nhysterias\\nhysteric\\nhysterical\\nhysterically\\nhysterics\\nhyte\\niamb\\niambi\\niambic\\niambics\\niambs\\niambus\\niambuses\\niatric\\niatrical\\nibex\\nibexes\\nibices\\nibidem\\nibis\\nibises\\nice\\niceberg\\nicebergs\\niceblink\\niceblinks\\niceboat\\niceboats\\nicebound\\nicebox\\niceboxes\\nicebreaker\\nicebreakers\\nicecap\\nicecaps\\niced\\nicefall\\nicefalls\\nicehouse\\nicehouses\\nicekhana\\nicekhanas\\niceless\\nicelike\\niceman\\nicemen\\nicers\\nices\\nich\\nichnite\\nichnites\\nichor\\nichorous\\nichors\\nichs\\nichthyic\\nichthyologies\\nichthyologist\\nichthyologists\\nichthyology\\nicicle\\nicicled\\nicicles\\nicier\\niciest\\nicily\\niciness\\nicinesses\\nicing\\nicings\\nicker\\nickers\\nickier\\nickiest\\nicky\\nicon\\nicones\\niconic\\niconical\\niconoclasm\\niconoclasms\\niconoclast\\niconoclasts\\nicons\\nicteric\\nicterics\\nicterus\\nicteruses\\nictic\\nictus\\nictuses\\nicy\\nid\\nidea\\nideal\\nidealess\\nidealise\\nidealised\\nidealises\\nidealising\\nidealism\\nidealisms\\nidealist\\nidealistic\\nidealists\\nidealities\\nideality\\nidealization\\nidealizations\\nidealize\\nidealized\\nidealizes\\nidealizing\\nideally\\nidealogies\\nidealogy\\nideals\\nideas\\nideate\\nideated\\nideates\\nideating\\nideation\\nideations\\nideative\\nidem\\nidems\\nidentic\\nidentical\\nidentifiable\\nidentification\\nidentifications\\nidentified\\nidentifier\\nidentifiers\\nidentifies\\nidentify\\nidentifying\\nidentities\\nidentity\\nideogram\\nideograms\\nideological\\nideologies\\nideology\\nides\\nidiocies\\nidiocy\\nidiolect\\nidiolects\\nidiom\\nidiomatic\\nidiomatically\\nidioms\\nidiosyncrasies\\nidiosyncrasy\\nidiosyncratic\\nidiot\\nidiotic\\nidiotically\\nidiotism\\nidiotisms\\nidiots\\nidle\\nidled\\nidleness\\nidlenesses\\nidler\\nidlers\\nidles\\nidlesse\\nidlesses\\nidlest\\nidling\\nidly\\nidocrase\\nidocrases\\nidol\\nidolater\\nidolaters\\nidolatries\\nidolatrous\\nidolatry\\nidolise\\nidolised\\nidoliser\\nidolisers\\nidolises\\nidolising\\nidolism\\nidolisms\\nidolize\\nidolized\\nidolizer\\nidolizers\\nidolizes\\nidolizing\\nidols\\nidoneities\\nidoneity\\nidoneous\\nids\\nidyl\\nidylist\\nidylists\\nidyll\\nidyllic\\nidyllist\\nidyllists\\nidylls\\nidyls\\nif\\niffier\\niffiest\\niffiness\\niffinesses\\niffy\\nifs\\nigloo\\nigloos\\niglu\\niglus\\nignatia\\nignatias\\nigneous\\nignified\\nignifies\\nignify\\nignifying\\nignite\\nignited\\nigniter\\nigniters\\nignites\\nigniting\\nignition\\nignitions\\nignitor\\nignitors\\nignitron\\nignitrons\\nignoble\\nignobly\\nignominies\\nignominious\\nignominiously\\nignominy\\nignoramus\\nignoramuses\\nignorance\\nignorances\\nignorant\\nignorantly\\nignore\\nignored\\nignorer\\nignorers\\nignores\\nignoring\\niguana\\niguanas\\niguanian\\niguanians\\nihram\\nihrams\\nikebana\\nikebanas\\nikon\\nikons\\nilea\\nileac\\nileal\\nileitides\\nileitis\\nileum\\nileus\\nileuses\\nilex\\nilexes\\nilia\\niliac\\niliad\\niliads\\nilial\\nilium\\nilk\\nilka\\nilks\\nill\\nillation\\nillations\\nillative\\nillatives\\nillegal\\nillegalities\\nillegality\\nillegally\\nillegibilities\\nillegibility\\nillegible\\nillegibly\\nillegitimacies\\nillegitimacy\\nillegitimate\\nillegitimately\\nillicit\\nillicitly\\nillimitable\\nillimitably\\nillinium\\nilliniums\\nilliquid\\nillite\\nilliteracies\\nilliteracy\\nilliterate\\nilliterates\\nillites\\nillitic\\nillnaturedly\\nillness\\nillnesses\\nillogic\\nillogical\\nillogically\\nillogics\\nills\\nillume\\nillumed\\nillumes\\nilluminate\\nilluminated\\nilluminates\\nilluminating\\nilluminatingly\\nillumination\\nilluminations\\nillumine\\nillumined\\nillumines\\nilluming\\nillumining\\nillusion\\nillusions\\nillusive\\nillusory\\nillustrate\\nillustrated\\nillustrates\\nillustrating\\nillustration\\nillustrations\\nillustrative\\nillustratively\\nillustrator\\nillustrators\\nillustrious\\nillustriousness\\nillustriousnesses\\nilluvia\\nilluvial\\nilluvium\\nilluviums\\nilly\\nilmenite\\nilmenites\\nimage\\nimaged\\nimageries\\nimagery\\nimages\\nimaginable\\nimaginably\\nimaginal\\nimaginary\\nimagination\\nimaginations\\nimaginative\\nimaginatively\\nimagine\\nimagined\\nimaginer\\nimaginers\\nimagines\\nimaging\\nimagining\\nimagism\\nimagisms\\nimagist\\nimagists\\nimago\\nimagoes\\nimam\\nimamate\\nimamates\\nimams\\nimaret\\nimarets\\nimaum\\nimaums\\nimbalance\\nimbalances\\nimbalm\\nimbalmed\\nimbalmer\\nimbalmers\\nimbalming\\nimbalms\\nimbark\\nimbarked\\nimbarking\\nimbarks\\nimbecile\\nimbeciles\\nimbecilic\\nimbecilities\\nimbecility\\nimbed\\nimbedded\\nimbedding\\nimbeds\\nimbibe\\nimbibed\\nimbiber\\nimbibers\\nimbibes\\nimbibing\\nimbitter\\nimbittered\\nimbittering\\nimbitters\\nimblaze\\nimblazed\\nimblazes\\nimblazing\\nimbodied\\nimbodies\\nimbody\\nimbodying\\nimbolden\\nimboldened\\nimboldening\\nimboldens\\nimbosom\\nimbosomed\\nimbosoming\\nimbosoms\\nimbower\\nimbowered\\nimbowering\\nimbowers\\nimbroglio\\nimbroglios\\nimbrown\\nimbrowned\\nimbrowning\\nimbrowns\\nimbrue\\nimbrued\\nimbrues\\nimbruing\\nimbrute\\nimbruted\\nimbrutes\\nimbruting\\nimbue\\nimbued\\nimbues\\nimbuing\\nimid\\nimide\\nimides\\nimidic\\nimido\\nimids\\nimine\\nimines\\nimino\\nimitable\\nimitate\\nimitated\\nimitates\\nimitating\\nimitation\\nimitations\\nimitator\\nimitators\\nimmaculate\\nimmaculately\\nimmane\\nimmanent\\nimmaterial\\nimmaterialities\\nimmateriality\\nimmature\\nimmatures\\nimmaturities\\nimmaturity\\nimmeasurable\\nimmeasurably\\nimmediacies\\nimmediacy\\nimmediate\\nimmediately\\nimmemorial\\nimmense\\nimmensely\\nimmenser\\nimmensest\\nimmensities\\nimmensity\\nimmerge\\nimmerged\\nimmerges\\nimmerging\\nimmerse\\nimmersed\\nimmerses\\nimmersing\\nimmersion\\nimmersions\\nimmesh\\nimmeshed\\nimmeshes\\nimmeshing\\nimmies\\nimmigrant\\nimmigrants\\nimmigrate\\nimmigrated\\nimmigrates\\nimmigrating\\nimmigration\\nimmigrations\\nimminence\\nimminences\\nimminent\\nimminently\\nimmingle\\nimmingled\\nimmingles\\nimmingling\\nimmix\\nimmixed\\nimmixes\\nimmixing\\nimmobile\\nimmobilities\\nimmobility\\nimmobilize\\nimmobilized\\nimmobilizes\\nimmobilizing\\nimmoderacies\\nimmoderacy\\nimmoderate\\nimmoderately\\nimmodest\\nimmodesties\\nimmodestly\\nimmodesty\\nimmolate\\nimmolated\\nimmolates\\nimmolating\\nimmolation\\nimmolations\\nimmoral\\nimmoralities\\nimmorality\\nimmorally\\nimmortal\\nimmortalities\\nimmortality\\nimmortalize\\nimmortalized\\nimmortalizes\\nimmortalizing\\nimmortals\\nimmotile\\nimmovabilities\\nimmovability\\nimmovable\\nimmovably\\nimmune\\nimmunes\\nimmunise\\nimmunised\\nimmunises\\nimmunising\\nimmunities\\nimmunity\\nimmunization\\nimmunizations\\nimmunize\\nimmunized\\nimmunizes\\nimmunizing\\nimmunologic\\nimmunological\\nimmunologies\\nimmunologist\\nimmunologists\\nimmunology\\nimmure\\nimmured\\nimmures\\nimmuring\\nimmutabilities\\nimmutability\\nimmutable\\nimmutably\\nimmy\\nimp\\nimpact\\nimpacted\\nimpacter\\nimpacters\\nimpacting\\nimpactor\\nimpactors\\nimpacts\\nimpaint\\nimpainted\\nimpainting\\nimpaints\\nimpair\\nimpaired\\nimpairer\\nimpairers\\nimpairing\\nimpairment\\nimpairments\\nimpairs\\nimpala\\nimpalas\\nimpale\\nimpaled\\nimpalement\\nimpalements\\nimpaler\\nimpalers\\nimpales\\nimpaling\\nimpalpable\\nimpalpably\\nimpanel\\nimpaneled\\nimpaneling\\nimpanelled\\nimpanelling\\nimpanels\\nimparities\\nimparity\\nimpark\\nimparked\\nimparking\\nimparks\\nimpart\\nimparted\\nimparter\\nimparters\\nimpartialities\\nimpartiality\\nimpartially\\nimparting\\nimparts\\nimpassable\\nimpasse\\nimpasses\\nimpassioned\\nimpassive\\nimpassively\\nimpassivities\\nimpassivity\\nimpaste\\nimpasted\\nimpastes\\nimpasting\\nimpasto\\nimpastos\\nimpatience\\nimpatiences\\nimpatiens\\nimpatient\\nimpatiently\\nimpavid\\nimpawn\\nimpawned\\nimpawning\\nimpawns\\nimpeach\\nimpeached\\nimpeaches\\nimpeaching\\nimpeachment\\nimpeachments\\nimpearl\\nimpearled\\nimpearling\\nimpearls\\nimpeccable\\nimpeccably\\nimpecunious\\nimpecuniousness\\nimpecuniousnesses\\nimped\\nimpedance\\nimpedances\\nimpede\\nimpeded\\nimpeder\\nimpeders\\nimpedes\\nimpediment\\nimpediments\\nimpeding\\nimpel\\nimpelled\\nimpeller\\nimpellers\\nimpelling\\nimpellor\\nimpellors\\nimpels\\nimpend\\nimpended\\nimpending\\nimpends\\nimpenetrabilities\\nimpenetrability\\nimpenetrable\\nimpenetrably\\nimpenitence\\nimpenitences\\nimpenitent\\nimperative\\nimperatively\\nimperatives\\nimperceptible\\nimperceptibly\\nimperfection\\nimperfections\\nimperfectly\\nimperia\\nimperial\\nimperialism\\nimperialist\\nimperialistic\\nimperials\\nimperil\\nimperiled\\nimperiling\\nimperilled\\nimperilling\\nimperils\\nimperious\\nimperiously\\nimperishable\\nimperium\\nimperiums\\nimpermanent\\nimpermanently\\nimpermeable\\nimpermissible\\nimpersonal\\nimpersonally\\nimpersonate\\nimpersonated\\nimpersonates\\nimpersonating\\nimpersonation\\nimpersonations\\nimpersonator\\nimpersonators\\nimpertinence\\nimpertinences\\nimpertinent\\nimpertinently\\nimperturbable\\nimpervious\\nimpetigo\\nimpetigos\\nimpetuous\\nimpetuousities\\nimpetuousity\\nimpetuously\\nimpetus\\nimpetuses\\nimphee\\nimphees\\nimpi\\nimpieties\\nimpiety\\nimping\\nimpinge\\nimpinged\\nimpingement\\nimpingements\\nimpinger\\nimpingers\\nimpinges\\nimpinging\\nimpings\\nimpious\\nimpis\\nimpish\\nimpishly\\nimpishness\\nimpishnesses\\nimplacabilities\\nimplacability\\nimplacable\\nimplacably\\nimplant\\nimplanted\\nimplanting\\nimplants\\nimplausibilities\\nimplausibility\\nimplausible\\nimplead\\nimpleaded\\nimpleading\\nimpleads\\nimpledge\\nimpledged\\nimpledges\\nimpledging\\nimplement\\nimplementation\\nimplementations\\nimplemented\\nimplementing\\nimplements\\nimplicate\\nimplicated\\nimplicates\\nimplicating\\nimplication\\nimplications\\nimplicit\\nimplicitly\\nimplied\\nimplies\\nimplode\\nimploded\\nimplodes\\nimploding\\nimplore\\nimplored\\nimplorer\\nimplorers\\nimplores\\nimploring\\nimplosion\\nimplosions\\nimplosive\\nimply\\nimplying\\nimpolicies\\nimpolicy\\nimpolite\\nimpolitic\\nimponderable\\nimponderables\\nimpone\\nimponed\\nimpones\\nimponing\\nimporous\\nimport\\nimportance\\nimportant\\nimportantly\\nimportation\\nimportations\\nimported\\nimporter\\nimporters\\nimporting\\nimports\\nimportunate\\nimportune\\nimportuned\\nimportunes\\nimportuning\\nimportunities\\nimportunity\\nimpose\\nimposed\\nimposer\\nimposers\\nimposes\\nimposing\\nimposingly\\nimposition\\nimpositions\\nimpossibilities\\nimpossibility\\nimpossible\\nimpossibly\\nimpost\\nimposted\\nimposter\\nimposters\\nimposting\\nimpostor\\nimpostors\\nimposts\\nimposture\\nimpostures\\nimpotence\\nimpotences\\nimpotencies\\nimpotency\\nimpotent\\nimpotently\\nimpotents\\nimpound\\nimpounded\\nimpounding\\nimpoundment\\nimpoundments\\nimpounds\\nimpoverish\\nimpoverished\\nimpoverishes\\nimpoverishing\\nimpoverishment\\nimpoverishments\\nimpower\\nimpowered\\nimpowering\\nimpowers\\nimpracticable\\nimpractical\\nimprecise\\nimprecisely\\nimpreciseness\\nimprecisenesses\\nimprecision\\nimpregabilities\\nimpregability\\nimpregable\\nimpregn\\nimpregnate\\nimpregnated\\nimpregnates\\nimpregnating\\nimpregnation\\nimpregnations\\nimpregned\\nimpregning\\nimpregns\\nimpresa\\nimpresario\\nimpresarios\\nimpresas\\nimprese\\nimpreses\\nimpress\\nimpressed\\nimpresses\\nimpressible\\nimpressing\\nimpression\\nimpressionable\\nimpressions\\nimpressive\\nimpressively\\nimpressiveness\\nimpressivenesses\\nimpressment\\nimpressments\\nimprest\\nimprests\\nimprimatur\\nimprimaturs\\nimprimis\\nimprint\\nimprinted\\nimprinting\\nimprints\\nimprison\\nimprisoned\\nimprisoning\\nimprisonment\\nimprisonments\\nimprisons\\nimprobabilities\\nimprobability\\nimprobable\\nimprobably\\nimpromptu\\nimpromptus\\nimproper\\nimproperly\\nimproprieties\\nimpropriety\\nimprovable\\nimprove\\nimproved\\nimprovement\\nimprovements\\nimprover\\nimprovers\\nimproves\\nimprovidence\\nimprovidences\\nimprovident\\nimproving\\nimprovisation\\nimprovisations\\nimproviser\\nimprovisers\\nimprovisor\\nimprovisors\\nimprudence\\nimprudences\\nimprudent\\nimps\\nimpudence\\nimpudences\\nimpudent\\nimpudently\\nimpugn\\nimpugned\\nimpugner\\nimpugners\\nimpugning\\nimpugns\\nimpulse\\nimpulsed\\nimpulses\\nimpulsing\\nimpulsion\\nimpulsions\\nimpulsive\\nimpulsively\\nimpulsiveness\\nimpulsivenesses\\nimpunities\\nimpunity\\nimpure\\nimpurely\\nimpurities\\nimpurity\\nimputation\\nimputations\\nimpute\\nimputed\\nimputer\\nimputers\\nimputes\\nimputing\\nin\\ninabilities\\ninability\\ninaccessibilities\\ninaccessibility\\ninaccessible\\ninaccuracies\\ninaccuracy\\ninaccurate\\ninaction\\ninactions\\ninactivate\\ninactivated\\ninactivates\\ninactivating\\ninactive\\ninactivities\\ninactivity\\ninadequacies\\ninadequacy\\ninadequate\\ninadequately\\ninadmissibility\\ninadmissible\\ninadvertence\\ninadvertences\\ninadvertencies\\ninadvertency\\ninadvertent\\ninadvertently\\ninadvisabilities\\ninadvisability\\ninadvisable\\ninalienabilities\\ninalienability\\ninalienable\\ninalienably\\ninane\\ninanely\\ninaner\\ninanes\\ninanest\\ninanimate\\ninanimately\\ninanimateness\\ninanimatenesses\\ninanities\\ninanition\\ninanitions\\ninanity\\ninapparent\\ninapplicable\\ninapposite\\ninappositely\\ninappositeness\\ninappositenesses\\ninappreciable\\ninappreciably\\ninappreciative\\ninapproachable\\ninappropriate\\ninappropriately\\ninappropriateness\\ninappropriatenesses\\ninapt\\ninaptly\\ninarable\\ninarch\\ninarched\\ninarches\\ninarching\\ninarguable\\ninarm\\ninarmed\\ninarming\\ninarms\\ninarticulate\\ninarticulately\\ninartistic\\ninartistically\\ninattention\\ninattentions\\ninattentive\\ninattentively\\ninattentiveness\\ninattentivenesses\\ninaudible\\ninaudibly\\ninaugurate\\ninaugurated\\ninaugurates\\ninaugurating\\ninauguration\\ninaugurations\\ninauspicious\\ninauthentic\\ninbeing\\ninbeings\\ninboard\\ninboards\\ninborn\\ninbound\\ninbounds\\ninbred\\ninbreed\\ninbreeding\\ninbreedings\\ninbreeds\\ninbuilt\\ninburst\\ninbursts\\ninby\\ninbye\\nincage\\nincaged\\nincages\\nincaging\\nincalculable\\nincalculably\\nincandescence\\nincandescences\\nincandescent\\nincantation\\nincantations\\nincapabilities\\nincapability\\nincapable\\nincapacitate\\nincapacitated\\nincapacitates\\nincapacitating\\nincapacities\\nincapacity\\nincarcerate\\nincarcerated\\nincarcerates\\nincarcerating\\nincarceration\\nincarcerations\\nincarnation\\nincarnations\\nincase\\nincased\\nincases\\nincasing\\nincautious\\nincendiaries\\nincendiary\\nincense\\nincensed\\nincenses\\nincensing\\nincentive\\nincentives\\nincept\\nincepted\\nincepting\\ninception\\ninceptions\\ninceptor\\ninceptors\\nincepts\\nincessant\\nincessantly\\nincest\\nincests\\nincestuous\\ninch\\ninched\\ninches\\ninching\\ninchmeal\\ninchoate\\ninchworm\\ninchworms\\nincidence\\nincidences\\nincident\\nincidental\\nincidentally\\nincidentals\\nincidents\\nincinerate\\nincinerated\\nincinerates\\nincinerating\\nincinerator\\nincinerators\\nincipient\\nincipit\\nincipits\\nincise\\nincised\\nincises\\nincising\\nincision\\nincisions\\nincisive\\nincisively\\nincisor\\nincisors\\nincisory\\nincisure\\nincisures\\nincitant\\nincitants\\nincite\\nincited\\nincitement\\nincitements\\ninciter\\ninciters\\nincites\\ninciting\\nincivil\\nincivilities\\nincivility\\ninclasp\\ninclasped\\ninclasping\\ninclasps\\ninclemencies\\ninclemency\\ninclement\\ninclination\\ninclinations\\nincline\\ninclined\\nincliner\\nincliners\\ninclines\\ninclining\\ninclip\\ninclipped\\ninclipping\\ninclips\\ninclose\\ninclosed\\nincloser\\ninclosers\\nincloses\\ninclosing\\ninclosure\\ninclosures\\ninclude\\nincluded\\nincludes\\nincluding\\ninclusion\\ninclusions\\ninclusive\\nincog\\nincognito\\nincogs\\nincoherence\\nincoherences\\nincoherent\\nincoherently\\nincohesive\\nincombustible\\nincome\\nincomer\\nincomers\\nincomes\\nincoming\\nincomings\\nincommensurate\\nincommodious\\nincommunicable\\nincommunicado\\nincomparable\\nincompatibility\\nincompatible\\nincompetence\\nincompetences\\nincompetencies\\nincompetency\\nincompetent\\nincompetents\\nincomplete\\nincompletely\\nincompleteness\\nincompletenesses\\nincomprehensible\\ninconceivable\\ninconceivably\\ninconclusive\\nincongruent\\nincongruities\\nincongruity\\nincongruous\\nincongruously\\ninconnu\\ninconnus\\ninconsecutive\\ninconsequence\\ninconsequences\\ninconsequential\\ninconsequentially\\ninconsiderable\\ninconsiderate\\ninconsiderately\\ninconsiderateness\\ninconsideratenesses\\ninconsistencies\\ninconsistency\\ninconsistent\\ninconsistently\\ninconsolable\\ninconsolably\\ninconspicuous\\ninconspicuously\\ninconstancies\\ninconstancy\\ninconstant\\ninconstantly\\ninconsumable\\nincontestable\\nincontestably\\nincontinence\\nincontinences\\ninconvenience\\ninconvenienced\\ninconveniences\\ninconveniencing\\ninconvenient\\ninconveniently\\nincony\\nincorporate\\nincorporated\\nincorporates\\nincorporating\\nincorporation\\nincorporations\\nincorporeal\\nincorporeally\\nincorpse\\nincorpsed\\nincorpses\\nincorpsing\\nincorrect\\nincorrectly\\nincorrectness\\nincorrectnesses\\nincorrigibilities\\nincorrigibility\\nincorrigible\\nincorrigibly\\nincorruptible\\nincrease\\nincreased\\nincreases\\nincreasing\\nincreasingly\\nincreate\\nincredibilities\\nincredibility\\nincredible\\nincredibly\\nincredulities\\nincredulity\\nincredulous\\nincredulously\\nincrement\\nincremental\\nincremented\\nincrementing\\nincrements\\nincriminate\\nincriminated\\nincriminates\\nincriminating\\nincrimination\\nincriminations\\nincriminatory\\nincross\\nincrosses\\nincrust\\nincrusted\\nincrusting\\nincrusts\\nincubate\\nincubated\\nincubates\\nincubating\\nincubation\\nincubations\\nincubator\\nincubators\\nincubi\\nincubus\\nincubuses\\nincudal\\nincudate\\nincudes\\ninculcate\\ninculcated\\ninculcates\\ninculcating\\ninculcation\\ninculcations\\ninculpable\\nincult\\nincumbencies\\nincumbency\\nincumbent\\nincumbents\\nincumber\\nincumbered\\nincumbering\\nincumbers\\nincur\\nincurable\\nincurious\\nincurred\\nincurring\\nincurs\\nincursion\\nincursions\\nincurve\\nincurved\\nincurves\\nincurving\\nincus\\nincuse\\nincused\\nincuses\\nincusing\\nindaba\\nindabas\\nindagate\\nindagated\\nindagates\\nindagating\\nindamin\\nindamine\\nindamines\\nindamins\\nindebted\\nindebtedness\\nindebtednesses\\nindecencies\\nindecency\\nindecent\\nindecenter\\nindecentest\\nindecently\\nindecipherable\\nindecision\\nindecisions\\nindecisive\\nindecisively\\nindecisiveness\\nindecisivenesses\\nindecorous\\nindecorously\\nindecorousness\\nindecorousnesses\\nindeed\\nindefatigable\\nindefatigably\\nindefensible\\nindefinable\\nindefinably\\nindefinite\\nindefinitely\\nindelible\\nindelibly\\nindelicacies\\nindelicacy\\nindelicate\\nindemnification\\nindemnifications\\nindemnified\\nindemnifies\\nindemnify\\nindemnifying\\nindemnities\\nindemnity\\nindene\\nindenes\\nindent\\nindentation\\nindentations\\nindented\\nindenter\\nindenters\\nindenting\\nindentor\\nindentors\\nindents\\nindenture\\nindentured\\nindentures\\nindenturing\\nindependence\\nindependent\\nindependently\\nindescribable\\nindescribably\\nindestrucibility\\nindestrucible\\nindeterminacies\\nindeterminacy\\nindeterminate\\nindeterminately\\nindevout\\nindex\\nindexed\\nindexer\\nindexers\\nindexes\\nindexing\\nindia\\nindican\\nindicans\\nindicant\\nindicants\\nindicate\\nindicated\\nindicates\\nindicating\\nindication\\nindications\\nindicative\\nindicator\\nindicators\\nindices\\nindicia\\nindicias\\nindicium\\nindiciums\\nindict\\nindictable\\nindicted\\nindictee\\nindictees\\nindicter\\nindicters\\nindicting\\nindictment\\nindictments\\nindictor\\nindictors\\nindicts\\nindifference\\nindifferences\\nindifferent\\nindifferently\\nindigen\\nindigence\\nindigences\\nindigene\\nindigenes\\nindigenous\\nindigens\\nindigent\\nindigents\\nindigestible\\nindigestion\\nindigestions\\nindign\\nindignant\\nindignantly\\nindignation\\nindignations\\nindignities\\nindignity\\nindignly\\nindigo\\nindigoes\\nindigoid\\nindigoids\\nindigos\\nindirect\\nindirection\\nindirections\\nindirectly\\nindirectness\\nindirectnesses\\nindiscernible\\nindiscreet\\nindiscretion\\nindiscretions\\nindiscriminate\\nindiscriminately\\nindispensabilities\\nindispensability\\nindispensable\\nindispensables\\nindispensably\\nindisposed\\nindisposition\\nindispositions\\nindisputable\\nindisputably\\nindissoluble\\nindistinct\\nindistinctly\\nindistinctness\\nindistinctnesses\\nindistinguishable\\nindite\\nindited\\ninditer\\ninditers\\nindites\\ninditing\\nindium\\nindiums\\nindividual\\nindividualities\\nindividuality\\nindividualize\\nindividualized\\nindividualizes\\nindividualizing\\nindividually\\nindividuals\\nindivisibility\\nindivisible\\nindocile\\nindoctrinate\\nindoctrinated\\nindoctrinates\\nindoctrinating\\nindoctrination\\nindoctrinations\\nindol\\nindole\\nindolence\\nindolences\\nindolent\\nindoles\\nindols\\nindominitable\\nindominitably\\nindoor\\nindoors\\nindorse\\nindorsed\\nindorsee\\nindorsees\\nindorser\\nindorsers\\nindorses\\nindorsing\\nindorsor\\nindorsors\\nindow\\nindowed\\nindowing\\nindows\\nindoxyl\\nindoxyls\\nindraft\\nindrafts\\nindrawn\\nindri\\nindris\\nindubitable\\nindubitably\\ninduce\\ninduced\\ninducement\\ninducements\\ninducer\\ninducers\\ninduces\\ninducing\\ninduct\\ninducted\\ninductee\\ninductees\\ninducting\\ninduction\\ninductions\\ninductive\\ninductor\\ninductors\\ninducts\\nindue\\nindued\\nindues\\ninduing\\nindulge\\nindulged\\nindulgence\\nindulgent\\nindulgently\\nindulger\\nindulgers\\nindulges\\nindulging\\nindulin\\ninduline\\nindulines\\nindulins\\nindult\\nindults\\nindurate\\nindurated\\nindurates\\nindurating\\nindusia\\nindusial\\nindusium\\nindustrial\\nindustrialist\\nindustrialization\\nindustrializations\\nindustrialize\\nindustrialized\\nindustrializes\\nindustrializing\\nindustrially\\nindustries\\nindustrious\\nindustriously\\nindustriousness\\nindustriousnesses\\nindustry\\nindwell\\nindwelling\\nindwells\\nindwelt\\ninearth\\ninearthed\\ninearthing\\ninearths\\ninebriate\\ninebriated\\ninebriates\\ninebriating\\ninebriation\\ninebriations\\ninedible\\ninedita\\ninedited\\nineducable\\nineffable\\nineffably\\nineffective\\nineffectively\\nineffectiveness\\nineffectivenesses\\nineffectual\\nineffectually\\nineffectualness\\nineffectualnesses\\ninefficiency\\ninefficient\\ninefficiently\\ninelastic\\ninelasticities\\ninelasticity\\ninelegance\\ninelegances\\ninelegant\\nineligibility\\nineligible\\ninept\\nineptitude\\nineptitudes\\nineptly\\nineptness\\nineptnesses\\ninequalities\\ninequality\\ninequities\\ninequity\\nineradicable\\ninerrant\\ninert\\ninertia\\ninertiae\\ninertial\\ninertias\\ninertly\\ninertness\\ninertnesses\\ninerts\\ninescapable\\ninescapably\\ninessential\\ninestimable\\ninestimably\\ninevitabilities\\ninevitability\\ninevitable\\ninevitably\\ninexact\\ninexcusable\\ninexcusably\\ninexhaustible\\ninexhaustibly\\ninexorable\\ninexorably\\ninexpedient\\ninexpensive\\ninexperience\\ninexperienced\\ninexperiences\\ninexpert\\ninexpertly\\ninexpertness\\ninexpertnesses\\ninexperts\\ninexplicable\\ninexplicably\\ninexplicit\\ninexpressible\\ninexpressibly\\ninextinguishable\\ninextricable\\ninextricably\\ninfallibility\\ninfallible\\ninfallibly\\ninfamies\\ninfamous\\ninfamously\\ninfamy\\ninfancies\\ninfancy\\ninfant\\ninfanta\\ninfantas\\ninfante\\ninfantes\\ninfantile\\ninfantries\\ninfantry\\ninfants\\ninfarct\\ninfarcts\\ninfare\\ninfares\\ninfatuate\\ninfatuated\\ninfatuates\\ninfatuating\\ninfatuation\\ninfatuations\\ninfauna\\ninfaunae\\ninfaunal\\ninfaunas\\ninfeasibilities\\ninfeasibility\\ninfeasible\\ninfect\\ninfected\\ninfecter\\ninfecters\\ninfecting\\ninfection\\ninfections\\ninfectious\\ninfective\\ninfector\\ninfectors\\ninfects\\ninfecund\\ninfelicities\\ninfelicitous\\ninfelicity\\ninfeoff\\ninfeoffed\\ninfeoffing\\ninfeoffs\\ninfer\\ninference\\ninferenced\\ninferences\\ninferencing\\ninferential\\ninferior\\ninferiority\\ninferiors\\ninfernal\\ninfernally\\ninferno\\ninfernos\\ninferred\\ninferrer\\ninferrers\\ninferring\\ninfers\\ninfertile\\ninfertilities\\ninfertility\\ninfest\\ninfestation\\ninfestations\\ninfested\\ninfester\\ninfesters\\ninfesting\\ninfests\\ninfidel\\ninfidelities\\ninfidelity\\ninfidels\\ninfield\\ninfielder\\ninfielders\\ninfields\\ninfiltrate\\ninfiltrated\\ninfiltrates\\ninfiltrating\\ninfiltration\\ninfiltrations\\ninfinite\\ninfinitely\\ninfinites\\ninfinitesimal\\ninfinitesimally\\ninfinities\\ninfinitive\\ninfinitives\\ninfinitude\\ninfinitudes\\ninfinity\\ninfirm\\ninfirmaries\\ninfirmary\\ninfirmed\\ninfirming\\ninfirmities\\ninfirmity\\ninfirmly\\ninfirms\\ninfix\\ninfixed\\ninfixes\\ninfixing\\ninfixion\\ninfixions\\ninflame\\ninflamed\\ninflamer\\ninflamers\\ninflames\\ninflaming\\ninflammable\\ninflammation\\ninflammations\\ninflammatory\\ninflatable\\ninflate\\ninflated\\ninflater\\ninflaters\\ninflates\\ninflating\\ninflation\\ninflationary\\ninflator\\ninflators\\ninflect\\ninflected\\ninflecting\\ninflection\\ninflectional\\ninflections\\ninflects\\ninflexed\\ninflexibilities\\ninflexibility\\ninflexible\\ninflexibly\\ninflict\\ninflicted\\ninflicting\\ninfliction\\ninflictions\\ninflicts\\ninflight\\ninflow\\ninflows\\ninfluence\\ninfluences\\ninfluent\\ninfluential\\ninfluents\\ninfluenza\\ninfluenzas\\ninflux\\ninfluxes\\ninfo\\ninfold\\ninfolded\\ninfolder\\ninfolders\\ninfolding\\ninfolds\\ninform\\ninformal\\ninformalities\\ninformality\\ninformally\\ninformant\\ninformants\\ninformation\\ninformational\\ninformations\\ninformative\\ninformed\\ninformer\\ninformers\\ninforming\\ninforms\\ninfos\\ninfra\\ninfract\\ninfracted\\ninfracting\\ninfraction\\ninfractions\\ninfracts\\ninfrared\\ninfrareds\\ninfrequent\\ninfrequently\\ninfringe\\ninfringed\\ninfringement\\ninfringements\\ninfringes\\ninfringing\\ninfrugal\\ninfuriate\\ninfuriated\\ninfuriates\\ninfuriating\\ninfuriatingly\\ninfuse\\ninfused\\ninfuser\\ninfusers\\ninfuses\\ninfusing\\ninfusion\\ninfusions\\ninfusive\\ningate\\ningates\\ningather\\ningathered\\ningathering\\ningathers\\ningenious\\ningeniously\\ningeniousness\\ningeniousnesses\\ningenue\\ningenues\\ningenuities\\ningenuity\\ningenuous\\ningenuously\\ningenuousness\\ningenuousnesses\\ningest\\ningesta\\ningested\\ningesting\\ningests\\ningle\\ninglenook\\ninglenooks\\ningles\\ninglorious\\ningloriously\\ningoing\\ningot\\ningoted\\ningoting\\ningots\\ningraft\\ningrafted\\ningrafting\\ningrafts\\ningrain\\ningrained\\ningraining\\ningrains\\ningrate\\ningrates\\ningratiate\\ningratiated\\ningratiates\\ningratiating\\ningratitude\\ningratitudes\\ningredient\\ningredients\\ningress\\ningresses\\ningroup\\ningroups\\ningrown\\ningrowth\\ningrowths\\ninguinal\\ningulf\\ningulfed\\ningulfing\\ningulfs\\ninhabit\\ninhabitable\\ninhabitant\\ninhabited\\ninhabiting\\ninhabits\\ninhalant\\ninhalants\\ninhalation\\ninhalations\\ninhale\\ninhaled\\ninhaler\\ninhalers\\ninhales\\ninhaling\\ninhaul\\ninhauler\\ninhaulers\\ninhauls\\ninhere\\ninhered\\ninherent\\ninherently\\ninheres\\ninhering\\ninherit\\ninheritance\\ninheritances\\ninherited\\ninheriting\\ninheritor\\ninheritors\\ninherits\\ninhesion\\ninhesions\\ninhibit\\ninhibited\\ninhibiting\\ninhibition\\ninhibitions\\ninhibits\\ninhuman\\ninhumane\\ninhumanely\\ninhumanities\\ninhumanity\\ninhumanly\\ninhume\\ninhumed\\ninhumer\\ninhumers\\ninhumes\\ninhuming\\ninia\\ninimical\\ninimically\\ninimitable\\ninion\\niniquities\\niniquitous\\niniquity\\ninitial\\ninitialed\\ninitialing\\ninitialization\\ninitializations\\ninitialize\\ninitialized\\ninitializes\\ninitializing\\ninitialled\\ninitialling\\ninitially\\ninitials\\ninitiate\\ninitiated\\ninitiates\\ninitiating\\ninitiation\\ninitiations\\ninitiative\\ninitiatory\\ninject\\ninjected\\ninjecting\\ninjection\\ninjections\\ninjector\\ninjectors\\ninjects\\ninjudicious\\ninjudiciously\\ninjudiciousness\\ninjudiciousnesses\\ninjunction\\ninjunctions\\ninjure\\ninjured\\ninjurer\\ninjurers\\ninjures\\ninjuries\\ninjuring\\ninjurious\\ninjury\\nink\\ninkberries\\ninkberry\\ninkblot\\ninkblots\\ninked\\ninker\\ninkers\\ninkhorn\\ninkhorns\\ninkier\\ninkiest\\ninkiness\\ninkinesses\\ninking\\ninkle\\ninkles\\ninkless\\ninklike\\ninkling\\ninklings\\ninkpot\\ninkpots\\ninks\\ninkstand\\ninkstands\\ninkwell\\ninkwells\\ninkwood\\ninkwoods\\ninky\\ninlace\\ninlaced\\ninlaces\\ninlacing\\ninlaid\\ninland\\ninlander\\ninlanders\\ninlands\\ninlay\\ninlayer\\ninlayers\\ninlaying\\ninlays\\ninlet\\ninlets\\ninletting\\ninlier\\ninliers\\ninly\\ninmate\\ninmates\\ninmesh\\ninmeshed\\ninmeshes\\ninmeshing\\ninmost\\ninn\\ninnards\\ninnate\\ninnately\\ninned\\ninner\\ninnerly\\ninnermost\\ninners\\ninnersole\\ninnersoles\\ninnerve\\ninnerved\\ninnerves\\ninnerving\\ninning\\ninnings\\ninnkeeper\\ninnkeepers\\ninnless\\ninnocence\\ninnocences\\ninnocent\\ninnocenter\\ninnocentest\\ninnocently\\ninnocents\\ninnocuous\\ninnovate\\ninnovated\\ninnovates\\ninnovating\\ninnovation\\ninnovations\\ninnovative\\ninnovator\\ninnovators\\ninns\\ninnuendo\\ninnuendoed\\ninnuendoes\\ninnuendoing\\ninnuendos\\ninnumerable\\ninocula\\ninoculate\\ninoculated\\ninoculates\\ninoculating\\ninoculation\\ninoculations\\ninoculum\\ninoculums\\ninoffensive\\ninoperable\\ninoperative\\ninopportune\\ninopportunely\\ninordinate\\ninordinately\\ninorganic\\ninosite\\ninosites\\ninositol\\ninositols\\ninpatient\\ninpatients\\ninphase\\ninpour\\ninpoured\\ninpouring\\ninpours\\ninput\\ninputs\\ninputted\\ninputting\\ninquest\\ninquests\\ninquiet\\ninquieted\\ninquieting\\ninquiets\\ninquire\\ninquired\\ninquirer\\ninquirers\\ninquires\\ninquiries\\ninquiring\\ninquiringly\\ninquiry\\ninquisition\\ninquisitions\\ninquisitive\\ninquisitively\\ninquisitiveness\\ninquisitivenesses\\ninquisitor\\ninquisitorial\\ninquisitors\\ninroad\\ninroads\\ninrush\\ninrushes\\nins\\ninsalubrious\\ninsane\\ninsanely\\ninsaner\\ninsanest\\ninsanities\\ninsanity\\ninsatiable\\ninsatiate\\ninscribe\\ninscribed\\ninscribes\\ninscribing\\ninscription\\ninscriptions\\ninscroll\\ninscrolled\\ninscrolling\\ninscrolls\\ninscrutable\\ninscrutably\\ninsculp\\ninsculped\\ninsculping\\ninsculps\\ninseam\\ninseams\\ninsect\\ninsectan\\ninsecticidal\\ninsecticide\\ninsecticides\\ninsects\\ninsecuration\\ninsecurations\\ninsecure\\ninsecurely\\ninsecurities\\ninsecurity\\ninsensibilities\\ninsensibility\\ninsensible\\ninsensibly\\ninsensitive\\ninsensitivities\\ninsensitivity\\ninsentience\\ninsentiences\\ninsentient\\ninseparable\\ninsert\\ninserted\\ninserter\\ninserters\\ninserting\\ninsertion\\ninsertions\\ninserts\\ninset\\ninsets\\ninsetted\\ninsetter\\ninsetters\\ninsetting\\ninsheath\\ninsheathed\\ninsheathing\\ninsheaths\\ninshore\\ninshrine\\ninshrined\\ninshrines\\ninshrining\\ninside\\ninsider\\ninsiders\\ninsides\\ninsidious\\ninsidiously\\ninsidiousness\\ninsidiousnesses\\ninsight\\ninsightful\\ninsights\\ninsigne\\ninsignia\\ninsignias\\ninsignificant\\ninsincere\\ninsincerely\\ninsincerities\\ninsincerity\\ninsinuate\\ninsinuated\\ninsinuates\\ninsinuating\\ninsinuation\\ninsinuations\\ninsipid\\ninsipidities\\ninsipidity\\ninsipidus\\ninsist\\ninsisted\\ninsistence\\ninsistences\\ninsistent\\ninsistently\\ninsister\\ninsisters\\ninsisting\\ninsists\\ninsnare\\ninsnared\\ninsnarer\\ninsnarers\\ninsnares\\ninsnaring\\ninsofar\\ninsolate\\ninsolated\\ninsolates\\ninsolating\\ninsole\\ninsolence\\ninsolences\\ninsolent\\ninsolents\\ninsoles\\ninsolubilities\\ninsolubility\\ninsoluble\\ninsolvencies\\ninsolvency\\ninsolvent\\ninsomnia\\ninsomnias\\ninsomuch\\ninsouciance\\ninsouciances\\ninsouciant\\ninsoul\\ninsouled\\ninsouling\\ninsouls\\ninspan\\ninspanned\\ninspanning\\ninspans\\ninspect\\ninspected\\ninspecting\\ninspection\\ninspections\\ninspector\\ninspectors\\ninspects\\ninsphere\\ninsphered\\ninspheres\\ninsphering\\ninspiration\\ninspirational\\ninspirations\\ninspire\\ninspired\\ninspirer\\ninspirers\\ninspires\\ninspiring\\ninspirit\\ninspirited\\ninspiriting\\ninspirits\\ninstabilities\\ninstability\\ninstable\\ninstal\\ninstall\\ninstallation\\ninstallations\\ninstalled\\ninstalling\\ninstallment\\ninstallments\\ninstalls\\ninstals\\ninstance\\ninstanced\\ninstances\\ninstancies\\ninstancing\\ninstancy\\ninstant\\ninstantaneous\\ninstantaneously\\ninstantly\\ninstants\\ninstar\\ninstarred\\ninstarring\\ninstars\\ninstate\\ninstated\\ninstates\\ninstating\\ninstead\\ninstep\\ninsteps\\ninstigate\\ninstigated\\ninstigates\\ninstigating\\ninstigation\\ninstigations\\ninstigator\\ninstigators\\ninstil\\ninstill\\ninstilled\\ninstilling\\ninstills\\ninstils\\ninstinct\\ninstinctive\\ninstinctively\\ninstincts\\ninstitute\\ninstitutes\\ninstitution\\ninstitutional\\ninstitutionalize\\ninstitutionally\\ninstitutions\\ninstransitive\\ninstroke\\ninstrokes\\ninstruct\\ninstructed\\ninstructing\\ninstruction\\ninstructional\\ninstructions\\ninstructive\\ninstructor\\ninstructors\\ninstructorship\\ninstructorships\\ninstructs\\ninstrument\\ninstrumental\\ninstrumentalist\\ninstrumentalists\\ninstrumentalities\\ninstrumentality\\ninstrumentals\\ninstrumentation\\ninstrumentations\\ninstruments\\ninsubordinate\\ninsubordination\\ninsubordinations\\ninsubstantial\\ninsufferable\\ninsufferably\\ninsufficent\\ninsufficiencies\\ninsufficiency\\ninsufficient\\ninsufficiently\\ninsulant\\ninsulants\\ninsular\\ninsularities\\ninsularity\\ninsulars\\ninsulate\\ninsulated\\ninsulates\\ninsulating\\ninsulation\\ninsulations\\ninsulator\\ninsulators\\ninsulin\\ninsulins\\ninsult\\ninsulted\\ninsulter\\ninsulters\\ninsulting\\ninsultingly\\ninsults\\ninsuperable\\ninsuperably\\ninsupportable\\ninsurable\\ninsurance\\ninsurances\\ninsurant\\ninsurants\\ninsure\\ninsured\\ninsureds\\ninsurer\\ninsurers\\ninsures\\ninsurgence\\ninsurgences\\ninsurgencies\\ninsurgency\\ninsurgent\\ninsurgents\\ninsuring\\ninsurmounable\\ninsurmounably\\ninsurrection\\ninsurrectionist\\ninsurrectionists\\ninsurrections\\ninswathe\\ninswathed\\ninswathes\\ninswathing\\ninswept\\nintact\\nintagli\\nintaglio\\nintaglios\\nintake\\nintakes\\nintangibilities\\nintangibility\\nintangible\\nintangibly\\nintarsia\\nintarsias\\ninteger\\nintegers\\nintegral\\nintegrals\\nintegrate\\nintegrated\\nintegrates\\nintegrating\\nintegration\\nintegrities\\nintegrity\\nintellect\\nintellects\\nintellectual\\nintellectualism\\nintellectualisms\\nintellectually\\nintellectuals\\nintelligence\\nintelligent\\nintelligently\\nintelligibilities\\nintelligibility\\nintelligible\\nintelligibly\\nintemperance\\nintemperances\\nintemperate\\nintemperateness\\nintemperatenesses\\nintend\\nintended\\nintendeds\\nintender\\nintenders\\nintending\\nintends\\nintense\\nintensely\\nintenser\\nintensest\\nintensification\\nintensifications\\nintensified\\nintensifies\\nintensify\\nintensifying\\nintensities\\nintensity\\nintensive\\nintensively\\nintent\\nintention\\nintentional\\nintentionally\\nintentions\\nintently\\nintentness\\nintentnesses\\nintents\\ninter\\ninteract\\ninteracted\\ninteracting\\ninteraction\\ninteractions\\ninteractive\\ninteractively\\ninteracts\\ninteragency\\ninteratomic\\ninterbank\\ninterborough\\ninterbred\\ninterbreed\\ninterbreeding\\ninterbreeds\\ninterbusiness\\nintercalate\\nintercalated\\nintercalates\\nintercalating\\nintercalation\\nintercalations\\nintercampus\\nintercede\\ninterceded\\nintercedes\\ninterceding\\nintercept\\nintercepted\\nintercepting\\ninterception\\ninterceptions\\ninterceptor\\ninterceptors\\nintercepts\\nintercession\\nintercessions\\nintercessor\\nintercessors\\nintercessory\\ninterchange\\ninterchangeable\\ninterchangeably\\ninterchanged\\ninterchanges\\ninterchanging\\ninterchurch\\nintercity\\ninterclass\\nintercoastal\\nintercollegiate\\nintercolonial\\nintercom\\nintercommunal\\nintercommunity\\nintercompany\\nintercoms\\nintercontinental\\ninterconversion\\nintercounty\\nintercourse\\nintercourses\\nintercultural\\nintercurrent\\nintercut\\nintercuts\\nintercutting\\ninterdenominational\\ninterdepartmental\\ninterdependence\\ninterdependences\\ninterdependent\\ninterdict\\ninterdicted\\ninterdicting\\ninterdiction\\ninterdictions\\ninterdicts\\ninterdivisional\\ninterelectronic\\ninterest\\ninterested\\ninteresting\\ninterestingly\\ninterests\\ninterethnic\\ninterface\\ninterfaces\\ninterfacial\\ninterfaculty\\ninterfamily\\ninterfere\\ninterfered\\ninterference\\ninterferences\\ninterferes\\ninterfering\\ninterfiber\\ninterfraternity\\nintergalactic\\nintergang\\nintergovernmental\\nintergroup\\ninterhemispheric\\ninterim\\ninterims\\ninterindustry\\ninterinstitutional\\ninterior\\ninteriors\\ninterisland\\ninterject\\ninterjected\\ninterjecting\\ninterjection\\ninterjectionally\\ninterjections\\ninterjects\\ninterlace\\ninterlaced\\ninterlaces\\ninterlacing\\ninterlaid\\ninterlap\\ninterlapped\\ninterlapping\\ninterlaps\\ninterlard\\ninterlards\\ninterlay\\ninterlaying\\ninterlays\\ninterleave\\ninterleaved\\ninterleaves\\ninterleaving\\ninterlibrary\\ninterlinear\\ninterlock\\ninterlocked\\ninterlocking\\ninterlocks\\ninterlope\\ninterloped\\ninterloper\\ninterlopers\\ninterlopes\\ninterloping\\ninterlude\\ninterludes\\nintermarriage\\nintermarriages\\nintermarried\\nintermarries\\nintermarry\\nintermarrying\\nintermediaries\\nintermediary\\nintermediate\\nintermediates\\ninterment\\ninterments\\ninterminable\\ninterminably\\nintermingle\\nintermingled\\nintermingles\\nintermingling\\nintermission\\nintermissions\\nintermit\\nintermits\\nintermitted\\nintermittent\\nintermittently\\nintermitting\\nintermix\\nintermixed\\nintermixes\\nintermixing\\nintermixture\\nintermixtures\\nintermolecular\\nintermountain\\nintern\\ninternal\\ninternally\\ninternals\\ninternational\\ninternationalism\\ninternationalisms\\ninternationalize\\ninternationalized\\ninternationalizes\\ninternationalizing\\ninternationally\\ninternationals\\ninterne\\ninterned\\ninternee\\ninternees\\ninternes\\ninterning\\ninternist\\ninternists\\ninternment\\ninternments\\ninterns\\ninternship\\ninternships\\ninteroceanic\\ninteroffice\\ninterparticle\\ninterparty\\ninterpersonal\\ninterplanetary\\ninterplay\\ninterplays\\ninterpolate\\ninterpolated\\ninterpolates\\ninterpolating\\ninterpolation\\ninterpolations\\ninterpopulation\\ninterpose\\ninterposed\\ninterposes\\ninterposing\\ninterposition\\ninterpositions\\ninterpret\\ninterpretation\\ninterpretations\\ninterpretative\\ninterpreted\\ninterpreter\\ninterpreters\\ninterpreting\\ninterpretive\\ninterprets\\ninterprovincial\\ninterpupil\\ninterquartile\\ninterracial\\ninterred\\ninterreges\\ninterregional\\ninterrelate\\ninterrelated\\ninterrelatedness\\ninterrelatednesses\\ninterrelates\\ninterrelating\\ninterrelation\\ninterrelations\\ninterrelationship\\ninterreligious\\ninterrex\\ninterring\\ninterrogate\\ninterrogated\\ninterrogates\\ninterrogating\\ninterrogation\\ninterrogations\\ninterrogative\\ninterrogatives\\ninterrogator\\ninterrogators\\ninterrogatory\\ninterrupt\\ninterrupted\\ninterrupter\\ninterrupters\\ninterrupting\\ninterruption\\ninterruptions\\ninterruptive\\ninterrupts\\ninters\\ninterscholastic\\nintersect\\nintersected\\nintersecting\\nintersection\\nintersectional\\nintersections\\nintersects\\nintersex\\nintersexes\\nintersperse\\ninterspersed\\nintersperses\\ninterspersing\\ninterspersion\\ninterspersions\\ninterstate\\ninterstellar\\ninterstice\\ninterstices\\nintersticial\\ninterstitial\\nintersystem\\ninterterm\\ninterterminal\\nintertie\\ninterties\\nintertribal\\nintertroop\\nintertropical\\nintertwine\\nintertwined\\nintertwines\\nintertwining\\ninteruniversity\\ninterurban\\ninterval\\nintervalley\\nintervals\\nintervene\\nintervened\\nintervenes\\nintervening\\nintervention\\ninterventions\\ninterview\\ninterviewed\\ninterviewer\\ninterviewers\\ninterviewing\\ninterviews\\nintervillage\\ninterwar\\ninterweave\\ninterweaves\\ninterweaving\\ninterwoven\\ninterzonal\\ninterzone\\nintestate\\nintestinal\\nintestine\\nintestines\\ninthral\\ninthrall\\ninthralled\\ninthralling\\ninthralls\\ninthrals\\ninthrone\\ninthroned\\ninthrones\\ninthroning\\nintima\\nintimacies\\nintimacy\\nintimae\\nintimal\\nintimas\\nintimate\\nintimated\\nintimately\\nintimates\\nintimating\\nintimation\\nintimations\\nintime\\nintimidate\\nintimidated\\nintimidates\\nintimidating\\nintimidation\\nintimidations\\nintine\\nintines\\nintitle\\nintitled\\nintitles\\nintitling\\nintitule\\nintituled\\nintitules\\nintituling\\ninto\\nintolerable\\nintolerably\\nintolerance\\nintolerances\\nintolerant\\nintomb\\nintombed\\nintombing\\nintombs\\nintonate\\nintonated\\nintonates\\nintonating\\nintonation\\nintonations\\nintone\\nintoned\\nintoner\\nintoners\\nintones\\nintoning\\nintort\\nintorted\\nintorting\\nintorts\\nintown\\nintoxicant\\nintoxicants\\nintoxicate\\nintoxicated\\nintoxicates\\nintoxicating\\nintoxication\\nintoxications\\nintractable\\nintrados\\nintradoses\\nintramural\\nintransigence\\nintransigences\\nintransigent\\nintransigents\\nintrant\\nintrants\\nintravenous\\nintravenously\\nintreat\\nintreated\\nintreating\\nintreats\\nintrench\\nintrenched\\nintrenches\\nintrenching\\nintrepid\\nintrepidities\\nintrepidity\\nintricacies\\nintricacy\\nintricate\\nintricately\\nintrigue\\nintrigued\\nintrigues\\nintriguing\\nintriguingly\\nintrinsic\\nintrinsically\\nintro\\nintroduce\\nintroduced\\nintroduces\\nintroducing\\nintroduction\\nintroductions\\nintroductory\\nintrofied\\nintrofies\\nintrofy\\nintrofying\\nintroit\\nintroits\\nintromit\\nintromits\\nintromitted\\nintromitting\\nintrorse\\nintros\\nintrospect\\nintrospected\\nintrospecting\\nintrospection\\nintrospections\\nintrospective\\nintrospectively\\nintrospects\\nintroversion\\nintroversions\\nintrovert\\nintroverted\\nintroverts\\nintrude\\nintruded\\nintruder\\nintruders\\nintrudes\\nintruding\\nintrusion\\nintrusions\\nintrusive\\nintrusiveness\\nintrusivenesses\\nintrust\\nintrusted\\nintrusting\\nintrusts\\nintubate\\nintubated\\nintubates\\nintubating\\nintuit\\nintuited\\nintuiting\\nintuition\\nintuitions\\nintuitive\\nintuitively\\nintuits\\ninturn\\ninturned\\ninturns\\nintwine\\nintwined\\nintwines\\nintwining\\nintwist\\nintwisted\\nintwisting\\nintwists\\ninulase\\ninulases\\ninulin\\ninulins\\ninundant\\ninundate\\ninundated\\ninundates\\ninundating\\ninundation\\ninundations\\ninurbane\\ninure\\ninured\\ninures\\ninuring\\ninurn\\ninurned\\ninurning\\ninurns\\ninutile\\ninvade\\ninvaded\\ninvader\\ninvaders\\ninvades\\ninvading\\ninvalid\\ninvalidate\\ninvalidated\\ninvalidates\\ninvalidating\\ninvalided\\ninvaliding\\ninvalidism\\ninvalidity\\ninvalidly\\ninvalids\\ninvaluable\\ninvar\\ninvariable\\ninvariably\\ninvars\\ninvasion\\ninvasions\\ninvasive\\ninvected\\ninvective\\ninvectives\\ninveigh\\ninveighed\\ninveighing\\ninveighs\\ninveigle\\ninveigled\\ninveigles\\ninveigling\\ninvent\\ninvented\\ninventer\\ninventers\\ninventing\\ninvention\\ninventions\\ninventive\\ninventiveness\\ninventivenesses\\ninventor\\ninventoried\\ninventories\\ninventors\\ninventory\\ninventorying\\ninvents\\ninverities\\ninverity\\ninverse\\ninversely\\ninverses\\ninversion\\ninversions\\ninvert\\ninverted\\ninverter\\ninverters\\ninvertibrate\\ninvertibrates\\ninverting\\ninvertor\\ninvertors\\ninverts\\ninvest\\ninvested\\ninvestigate\\ninvestigated\\ninvestigates\\ninvestigating\\ninvestigation\\ninvestigations\\ninvestigative\\ninvestigator\\ninvestigators\\ninvesting\\ninvestiture\\ninvestitures\\ninvestment\\ninvestments\\ninvestor\\ninvestors\\ninvests\\ninveteracies\\ninveteracy\\ninveterate\\ninviable\\ninviably\\ninvidious\\ninvidiously\\ninvigorate\\ninvigorated\\ninvigorates\\ninvigorating\\ninvigoration\\ninvigorations\\ninvincibilities\\ninvincibility\\ninvincible\\ninvincibly\\ninviolabilities\\ninviolability\\ninviolable\\ninviolate\\ninvirile\\ninviscid\\ninvisibilities\\ninvisibility\\ninvisible\\ninvisibly\\ninvital\\ninvitation\\ninvitations\\ninvite\\ninvited\\ninvitee\\ninvitees\\ninviter\\ninviters\\ninvites\\ninviting\\ninvocate\\ninvocated\\ninvocates\\ninvocating\\ninvocation\\ninvocations\\ninvoice\\ninvoiced\\ninvoices\\ninvoicing\\ninvoke\\ninvoked\\ninvoker\\ninvokers\\ninvokes\\ninvoking\\ninvoluntarily\\ninvoluntary\\ninvolute\\ninvoluted\\ninvolutes\\ninvoluting\\ninvolve\\ninvolved\\ninvolvement\\ninvolvements\\ninvolver\\ninvolvers\\ninvolves\\ninvolving\\ninvulnerability\\ninvulnerable\\ninvulnerably\\ninwall\\ninwalled\\ninwalling\\ninwalls\\ninward\\ninwardly\\ninwards\\ninweave\\ninweaved\\ninweaves\\ninweaving\\ninwind\\ninwinding\\ninwinds\\ninwound\\ninwove\\ninwoven\\ninwrap\\ninwrapped\\ninwrapping\\ninwraps\\niodate\\niodated\\niodates\\niodating\\niodation\\niodations\\niodic\\niodid\\niodide\\niodides\\niodids\\niodin\\niodinate\\niodinated\\niodinates\\niodinating\\niodine\\niodines\\niodins\\niodism\\niodisms\\niodize\\niodized\\niodizer\\niodizers\\niodizes\\niodizing\\niodoform\\niodoforms\\niodol\\niodols\\niodophor\\niodophors\\niodopsin\\niodopsins\\niodous\\niolite\\niolites\\nion\\nionic\\nionicities\\nionicity\\nionics\\nionise\\nionised\\nionises\\nionising\\nionium\\nioniums\\nionizable\\nionize\\nionized\\nionizer\\nionizers\\nionizes\\nionizing\\nionomer\\nionomers\\nionone\\nionones\\nionosphere\\nionospheres\\nionospheric\\nions\\niota\\niotacism\\niotacisms\\niotas\\nipecac\\nipecacs\\nipomoea\\nipomoeas\\niracund\\nirade\\nirades\\nirascibilities\\nirascibility\\nirascible\\nirate\\nirately\\nirater\\niratest\\nire\\nired\\nireful\\nirefully\\nireless\\nirenic\\nirenical\\nirenics\\nires\\nirides\\niridescence\\niridescences\\niridescent\\niridic\\niridium\\niridiums\\nirids\\niring\\niris\\nirised\\nirises\\nirising\\niritic\\niritis\\niritises\\nirk\\nirked\\nirking\\nirks\\nirksome\\nirksomely\\niron\\nironbark\\nironbarks\\nironclad\\nironclads\\nirone\\nironed\\nironer\\nironers\\nirones\\nironic\\nironical\\nironically\\nironies\\nironing\\nironings\\nironist\\nironists\\nironlike\\nironness\\nironnesses\\nirons\\nironside\\nironsides\\nironware\\nironwares\\nironweed\\nironweeds\\nironwood\\nironwoods\\nironwork\\nironworker\\nironworkers\\nironworks\\nirony\\nirradiate\\nirradiated\\nirradiates\\nirradiating\\nirradiation\\nirradiations\\nirrational\\nirrationalities\\nirrationality\\nirrationally\\nirrationals\\nirreal\\nirreconcilabilities\\nirreconcilability\\nirreconcilable\\nirrecoverable\\nirrecoverably\\nirredeemable\\nirreducible\\nirreducibly\\nirrefutable\\nirregular\\nirregularities\\nirregularity\\nirregularly\\nirregulars\\nirrelevance\\nirrelevances\\nirrelevant\\nirreligious\\nirreparable\\nirreplaceable\\nirrepressible\\nirreproachable\\nirresistible\\nirresolute\\nirresolutely\\nirresolution\\nirresolutions\\nirrespective\\nirresponsibilities\\nirresponsibility\\nirresponsible\\nirresponsibly\\nirretrievable\\nirreverence\\nirreverences\\nirreversible\\nirrevocable\\nirrigate\\nirrigated\\nirrigates\\nirrigating\\nirrigation\\nirrigations\\nirritabilities\\nirritability\\nirritable\\nirritably\\nirritant\\nirritants\\nirritate\\nirritated\\nirritates\\nirritating\\nirritatingly\\nirritation\\nirritations\\nirrupt\\nirrupted\\nirrupting\\nirrupts\\nis\\nisagoge\\nisagoges\\nisagogic\\nisagogics\\nisarithm\\nisarithms\\nisatin\\nisatine\\nisatines\\nisatinic\\nisatins\\nisba\\nisbas\\nischemia\\nischemias\\nischemic\\nischia\\nischial\\nischium\\nisinglass\\nisland\\nislanded\\nislander\\nislanders\\nislanding\\nislands\\nisle\\nisled\\nisleless\\nisles\\nislet\\nislets\\nisling\\nism\\nisms\\nisobar\\nisobare\\nisobares\\nisobaric\\nisobars\\nisobath\\nisobaths\\nisocheim\\nisocheims\\nisochime\\nisochimes\\nisochor\\nisochore\\nisochores\\nisochors\\nisochron\\nisochrons\\nisocline\\nisoclines\\nisocracies\\nisocracy\\nisodose\\nisogamies\\nisogamy\\nisogenic\\nisogenies\\nisogeny\\nisogloss\\nisoglosses\\nisogon\\nisogonal\\nisogonals\\nisogone\\nisogones\\nisogonic\\nisogonics\\nisogonies\\nisogons\\nisogony\\nisogram\\nisograms\\nisograph\\nisographs\\nisogriv\\nisogrivs\\nisohel\\nisohels\\nisohyet\\nisohyets\\nisolable\\nisolate\\nisolated\\nisolates\\nisolating\\nisolation\\nisolations\\nisolator\\nisolators\\nisolead\\nisoleads\\nisoline\\nisolines\\nisolog\\nisologs\\nisologue\\nisologues\\nisomer\\nisomeric\\nisomers\\nisometric\\nisometrics\\nisometries\\nisometry\\nisomorph\\nisomorphs\\nisonomic\\nisonomies\\nisonomy\\nisophote\\nisophotes\\nisopleth\\nisopleths\\nisopod\\nisopodan\\nisopodans\\nisopods\\nisoprene\\nisoprenes\\nisospin\\nisospins\\nisospories\\nisospory\\nisostasies\\nisostasy\\nisotach\\nisotachs\\nisothere\\nisotheres\\nisotherm\\nisotherms\\nisotone\\nisotones\\nisotonic\\nisotope\\nisotopes\\nisotopic\\nisotopically\\nisotopies\\nisotopy\\nisotropies\\nisotropy\\nisotype\\nisotypes\\nisotypic\\nisozyme\\nisozymes\\nisozymic\\nissei\\nisseis\\nissuable\\nissuably\\nissuance\\nissuances\\nissuant\\nissue\\nissued\\nissuer\\nissuers\\nissues\\nissuing\\nisthmi\\nisthmian\\nisthmians\\nisthmic\\nisthmoid\\nisthmus\\nisthmuses\\nistle\\nistles\\nit\\nitalic\\nitalicization\\nitalicizations\\nitalicize\\nitalicized\\nitalicizes\\nitalicizing\\nitalics\\nitch\\nitched\\nitches\\nitchier\\nitchiest\\nitching\\nitchings\\nitchy\\nitem\\nitemed\\niteming\\nitemization\\nitemizations\\nitemize\\nitemized\\nitemizer\\nitemizers\\nitemizes\\nitemizing\\nitems\\niterance\\niterances\\niterant\\niterate\\niterated\\niterates\\niterating\\niteration\\niterations\\niterative\\niterum\\nither\\nitinerant\\nitinerants\\nitinerary\\nits\\nitself\\nivied\\nivies\\nivories\\nivory\\nivy\\nivylike\\niwis\\nixia\\nixias\\nixodid\\nixodids\\nixtle\\nixtles\\nizar\\nizars\\nizzard\\nizzards\\njab\\njabbed\\njabber\\njabbered\\njabberer\\njabberers\\njabbering\\njabbers\\njabbing\\njabiru\\njabirus\\njabot\\njabots\\njabs\\njacal\\njacales\\njacals\\njacamar\\njacamars\\njacana\\njacanas\\njacinth\\njacinthe\\njacinthes\\njacinths\\njack\\njackal\\njackals\\njackaroo\\njackaroos\\njackass\\njackasses\\njackboot\\njackboots\\njackdaw\\njackdaws\\njacked\\njacker\\njackeroo\\njackeroos\\njackers\\njacket\\njacketed\\njacketing\\njackets\\njackfish\\njackfishes\\njackhammer\\njackhammers\\njackies\\njacking\\njackknife\\njackknifed\\njackknifes\\njackknifing\\njackknives\\njackleg\\njacklegs\\njackpot\\njackpots\\njackrabbit\\njackrabbits\\njacks\\njackstay\\njackstays\\njacky\\njacobin\\njacobins\\njacobus\\njacobuses\\njaconet\\njaconets\\njacquard\\njacquards\\njacqueline\\njaculate\\njaculated\\njaculates\\njaculating\\njade\\njaded\\njadedly\\njadeite\\njadeites\\njades\\njading\\njadish\\njadishly\\njaditic\\njaeger\\njaegers\\njag\\njager\\njagers\\njagg\\njaggaries\\njaggary\\njagged\\njaggeder\\njaggedest\\njaggedly\\njagger\\njaggeries\\njaggers\\njaggery\\njaggheries\\njagghery\\njaggier\\njaggiest\\njagging\\njaggs\\njaggy\\njagless\\njagra\\njagras\\njags\\njaguar\\njaguars\\njail\\njailbait\\njailbird\\njailbirds\\njailbreak\\njailbreaks\\njailed\\njailer\\njailers\\njailing\\njailor\\njailors\\njails\\njake\\njakes\\njalap\\njalapic\\njalapin\\njalapins\\njalaps\\njalop\\njalopies\\njaloppies\\njaloppy\\njalops\\njalopy\\njalousie\\njalousies\\njam\\njamb\\njambe\\njambeau\\njambeaux\\njambed\\njambes\\njambing\\njamboree\\njamborees\\njambs\\njammed\\njammer\\njammers\\njamming\\njams\\njane\\njanes\\njangle\\njangled\\njangler\\njanglers\\njangles\\njangling\\njaniform\\njanisaries\\njanisary\\njanitor\\njanitorial\\njanitors\\njanizaries\\njanizary\\njanty\\njapan\\njapanize\\njapanized\\njapanizes\\njapanizing\\njapanned\\njapanner\\njapanners\\njapanning\\njapans\\njape\\njaped\\njaper\\njaperies\\njapers\\njapery\\njapes\\njaping\\njapingly\\njaponica\\njaponicas\\njar\\njarful\\njarfuls\\njargon\\njargoned\\njargonel\\njargonels\\njargoning\\njargons\\njargoon\\njargoons\\njarina\\njarinas\\njarl\\njarldom\\njarldoms\\njarls\\njarosite\\njarosites\\njarovize\\njarovized\\njarovizes\\njarovizing\\njarrah\\njarrahs\\njarred\\njarring\\njars\\njarsful\\njarvey\\njarveys\\njasey\\njasmine\\njasmines\\njasper\\njaspers\\njaspery\\njassid\\njassids\\njato\\njatos\\njauk\\njauked\\njauking\\njauks\\njaunce\\njaunced\\njaunces\\njauncing\\njaundice\\njaundiced\\njaundices\\njaundicing\\njaunt\\njaunted\\njauntier\\njauntiest\\njauntily\\njauntiness\\njauntinesses\\njaunting\\njaunts\\njaunty\\njaup\\njauped\\njauping\\njaups\\njava\\njavas\\njavelin\\njavelina\\njavelinas\\njavelined\\njavelining\\njavelins\\njaw\\njawan\\njawans\\njawbone\\njawboned\\njawbones\\njawboning\\njawed\\njawing\\njawlike\\njawline\\njawlines\\njaws\\njay\\njaybird\\njaybirds\\njaygee\\njaygees\\njays\\njayvee\\njayvees\\njaywalk\\njaywalked\\njaywalker\\njaywalkers\\njaywalking\\njaywalks\\njazz\\njazzed\\njazzer\\njazzers\\njazzes\\njazzier\\njazziest\\njazzily\\njazzing\\njazzman\\njazzmen\\njazzy\\njealous\\njealousies\\njealously\\njealousy\\njean\\njeans\\njeapordize\\njeapordized\\njeapordizes\\njeapordizing\\njeapordous\\njebel\\njebels\\njee\\njeed\\njeeing\\njeep\\njeepers\\njeeps\\njeer\\njeered\\njeerer\\njeerers\\njeering\\njeers\\njees\\njeez\\njefe\\njefes\\njehad\\njehads\\njehu\\njehus\\njejuna\\njejunal\\njejune\\njejunely\\njejunities\\njejunity\\njejunum\\njell\\njelled\\njellied\\njellies\\njellified\\njellifies\\njellify\\njellifying\\njelling\\njells\\njelly\\njellyfish\\njellyfishes\\njellying\\njelutong\\njelutongs\\njemadar\\njemadars\\njemidar\\njemidars\\njemmied\\njemmies\\njemmy\\njemmying\\njennet\\njennets\\njennies\\njenny\\njeopard\\njeoparded\\njeopardies\\njeoparding\\njeopards\\njeopardy\\njeopordize\\njeopordized\\njeopordizes\\njeopordizing\\njerboa\\njerboas\\njereed\\njereeds\\njeremiad\\njeremiads\\njerid\\njerids\\njerk\\njerked\\njerker\\njerkers\\njerkier\\njerkies\\njerkiest\\njerkily\\njerkin\\njerking\\njerkins\\njerks\\njerky\\njeroboam\\njeroboams\\njerreed\\njerreeds\\njerrican\\njerricans\\njerrid\\njerrids\\njerries\\njerry\\njerrycan\\njerrycans\\njersey\\njerseyed\\njerseys\\njess\\njessant\\njesse\\njessed\\njesses\\njessing\\njest\\njested\\njester\\njesters\\njestful\\njesting\\njestings\\njests\\njesuit\\njesuitic\\njesuitries\\njesuitry\\njesuits\\njet\\njetbead\\njetbeads\\njete\\njetes\\njetliner\\njetliners\\njeton\\njetons\\njetport\\njetports\\njets\\njetsam\\njetsams\\njetsom\\njetsoms\\njetted\\njettied\\njetties\\njetting\\njettison\\njettisoned\\njettisoning\\njettisons\\njetton\\njettons\\njetty\\njettying\\njeu\\njeux\\njew\\njewed\\njewel\\njeweled\\njeweler\\njewelers\\njeweling\\njewelled\\njeweller\\njewellers\\njewelling\\njewelries\\njewelry\\njewels\\njewfish\\njewfishes\\njewing\\njews\\njezail\\njezails\\njezebel\\njezebels\\njib\\njibb\\njibbed\\njibber\\njibbers\\njibbing\\njibboom\\njibbooms\\njibbs\\njibe\\njibed\\njiber\\njibers\\njibes\\njibing\\njibingly\\njibs\\njiff\\njiffies\\njiffs\\njiffy\\njig\\njigaboo\\njigaboos\\njigged\\njigger\\njiggered\\njiggers\\njigging\\njiggle\\njiggled\\njiggles\\njigglier\\njiggliest\\njiggling\\njiggly\\njigs\\njigsaw\\njigsawed\\njigsawing\\njigsawn\\njigsaws\\njihad\\njihads\\njill\\njillion\\njillions\\njills\\njilt\\njilted\\njilter\\njilters\\njilting\\njilts\\njiminy\\njimjams\\njimmied\\njimmies\\njimminy\\njimmy\\njimmying\\njimp\\njimper\\njimpest\\njimply\\njimpy\\njimsonweed\\njimsonweeds\\njin\\njingal\\njingall\\njingalls\\njingals\\njingko\\njingkoes\\njingle\\njingled\\njingler\\njinglers\\njingles\\njinglier\\njingliest\\njingling\\njingly\\njingo\\njingoes\\njingoish\\njingoism\\njingoisms\\njingoist\\njingoistic\\njingoists\\njink\\njinked\\njinker\\njinkers\\njinking\\njinks\\njinn\\njinnee\\njinni\\njinns\\njins\\njinx\\njinxed\\njinxes\\njinxing\\njipijapa\\njipijapas\\njitney\\njitneys\\njitter\\njittered\\njittering\\njitters\\njittery\\njiujitsu\\njiujitsus\\njiujutsu\\njiujutsus\\njive\\njived\\njives\\njiving\\njnana\\njnanas\\njo\\njoannes\\njob\\njobbed\\njobber\\njobberies\\njobbers\\njobbery\\njobbing\\njobholder\\njobholders\\njobless\\njobs\\njock\\njockey\\njockeyed\\njockeying\\njockeys\\njocko\\njockos\\njocks\\njocose\\njocosely\\njocosities\\njocosity\\njocular\\njocund\\njocundly\\njodhpur\\njodhpurs\\njoe\\njoes\\njoey\\njoeys\\njog\\njogged\\njogger\\njoggers\\njogging\\njoggle\\njoggled\\njoggler\\njogglers\\njoggles\\njoggling\\njogs\\njohannes\\njohn\\njohnboat\\njohnboats\\njohnnies\\njohnny\\njohns\\njoin\\njoinable\\njoinder\\njoinders\\njoined\\njoiner\\njoineries\\njoiners\\njoinery\\njoining\\njoinings\\njoins\\njoint\\njointed\\njointer\\njointers\\njointing\\njointly\\njoints\\njointure\\njointured\\njointures\\njointuring\\njoist\\njoisted\\njoisting\\njoists\\njojoba\\njojobas\\njoke\\njoked\\njoker\\njokers\\njokes\\njokester\\njokesters\\njoking\\njokingly\\njole\\njoles\\njollied\\njollier\\njollies\\njolliest\\njollified\\njollifies\\njollify\\njollifying\\njollily\\njollities\\njollity\\njolly\\njollying\\njolt\\njolted\\njolter\\njolters\\njoltier\\njoltiest\\njoltily\\njolting\\njolts\\njolty\\njongleur\\njongleurs\\njonquil\\njonquils\\njoram\\njorams\\njordan\\njordans\\njorum\\njorums\\njoseph\\njosephs\\njosh\\njoshed\\njosher\\njoshers\\njoshes\\njoshing\\njoss\\njosses\\njostle\\njostled\\njostler\\njostlers\\njostles\\njostling\\njot\\njota\\njotas\\njots\\njotted\\njotting\\njottings\\njotty\\njouk\\njouked\\njouking\\njouks\\njoule\\njoules\\njounce\\njounced\\njounces\\njouncier\\njounciest\\njouncing\\njouncy\\njournal\\njournalism\\njournalisms\\njournalist\\njournalistic\\njournalists\\njournals\\njourney\\njourneyed\\njourneying\\njourneyman\\njourneymen\\njourneys\\njoust\\njousted\\njouster\\njousters\\njousting\\njousts\\njovial\\njovially\\njow\\njowed\\njowing\\njowl\\njowled\\njowlier\\njowliest\\njowls\\njowly\\njows\\njoy\\njoyance\\njoyances\\njoyed\\njoyful\\njoyfuller\\njoyfullest\\njoyfully\\njoying\\njoyless\\njoyous\\njoyously\\njoyousness\\njoyousnesses\\njoypop\\njoypopped\\njoypopping\\njoypops\\njoyride\\njoyrider\\njoyriders\\njoyrides\\njoyriding\\njoyridings\\njoys\\njoystick\\njoysticks\\njuba\\njubas\\njubbah\\njubbahs\\njube\\njubes\\njubhah\\njubhahs\\njubilant\\njubilate\\njubilated\\njubilates\\njubilating\\njubile\\njubilee\\njubilees\\njubiles\\njublilantly\\njublilation\\njublilations\\njudas\\njudases\\njudder\\njuddered\\njuddering\\njudders\\njudge\\njudged\\njudgement\\njudgements\\njudger\\njudgers\\njudges\\njudgeship\\njudgeships\\njudging\\njudgment\\njudgments\\njudicature\\njudicatures\\njudicial\\njudicially\\njudiciaries\\njudiciary\\njudicious\\njudiciously\\njudiciousness\\njudiciousnesses\\njudo\\njudoist\\njudoists\\njudoka\\njudokas\\njudos\\njug\\njuga\\njugal\\njugate\\njugful\\njugfuls\\njugged\\njuggernaut\\njuggernauts\\njugging\\njuggle\\njuggled\\njuggler\\njuggleries\\njugglers\\njugglery\\njuggles\\njuggling\\njugglings\\njughead\\njugheads\\njugs\\njugsful\\njugula\\njugular\\njugulars\\njugulate\\njugulated\\njugulates\\njugulating\\njugulum\\njugum\\njugums\\njuice\\njuiced\\njuicer\\njuicers\\njuices\\njuicier\\njuiciest\\njuicily\\njuiciness\\njuicinesses\\njuicing\\njuicy\\njujitsu\\njujitsus\\njuju\\njujube\\njujubes\\njujuism\\njujuisms\\njujuist\\njujuists\\njujus\\njujutsu\\njujutsus\\njuke\\njukebox\\njukeboxes\\njuked\\njukes\\njuking\\njulep\\njuleps\\njulienne\\njuliennes\\njumble\\njumbled\\njumbler\\njumblers\\njumbles\\njumbling\\njumbo\\njumbos\\njumbuck\\njumbucks\\njump\\njumped\\njumper\\njumpers\\njumpier\\njumpiest\\njumpily\\njumping\\njumpoff\\njumpoffs\\njumps\\njumpy\\njun\\njunco\\njuncoes\\njuncos\\njunction\\njunctions\\njuncture\\njunctures\\njungle\\njungles\\njunglier\\njungliest\\njungly\\njunior\\njuniors\\njuniper\\njunipers\\njunk\\njunked\\njunker\\njunkers\\njunket\\njunketed\\njunketer\\njunketers\\njunketing\\njunkets\\njunkie\\njunkier\\njunkies\\njunkiest\\njunking\\njunkman\\njunkmen\\njunks\\njunky\\njunkyard\\njunkyards\\njunta\\njuntas\\njunto\\njuntos\\njupe\\njupes\\njupon\\njupons\\njura\\njural\\njurally\\njurant\\njurants\\njurat\\njuratory\\njurats\\njurel\\njurels\\njuridic\\njuries\\njurisdiction\\njurisdictional\\njurisdictions\\njurisprudence\\njurisprudences\\njurist\\njuristic\\njurists\\njuror\\njurors\\njury\\njuryman\\njurymen\\njus\\njussive\\njussives\\njust\\njusted\\njuster\\njusters\\njustest\\njustice\\njustices\\njustifiable\\njustification\\njustifications\\njustified\\njustifies\\njustify\\njustifying\\njusting\\njustle\\njustled\\njustles\\njustling\\njustly\\njustness\\njustnesses\\njusts\\njut\\njute\\njutes\\njuts\\njutted\\njuttied\\njutties\\njutting\\njutty\\njuttying\\njuvenal\\njuvenals\\njuvenile\\njuveniles\\njuxtapose\\njuxtaposed\\njuxtaposes\\njuxtaposing\\njuxtaposition\\njuxtapositions\\nka\\nkaas\\nkab\\nkabab\\nkababs\\nkabaka\\nkabakas\\nkabala\\nkabalas\\nkabar\\nkabars\\nkabaya\\nkabayas\\nkabbala\\nkabbalah\\nkabbalahs\\nkabbalas\\nkabeljou\\nkabeljous\\nkabiki\\nkabikis\\nkabob\\nkabobs\\nkabs\\nkabuki\\nkabukis\\nkachina\\nkachinas\\nkaddish\\nkaddishim\\nkadi\\nkadis\\nkae\\nkaes\\nkaffir\\nkaffirs\\nkaffiyeh\\nkaffiyehs\\nkafir\\nkafirs\\nkaftan\\nkaftans\\nkagu\\nkagus\\nkahuna\\nkahunas\\nkaiak\\nkaiaks\\nkaif\\nkaifs\\nkail\\nkails\\nkailyard\\nkailyards\\nkain\\nkainit\\nkainite\\nkainites\\nkainits\\nkains\\nkaiser\\nkaiserin\\nkaiserins\\nkaisers\\nkajeput\\nkajeputs\\nkaka\\nkakapo\\nkakapos\\nkakas\\nkakemono\\nkakemonos\\nkaki\\nkakis\\nkalam\\nkalamazoo\\nkalams\\nkale\\nkaleidoscope\\nkaleidoscopes\\nkaleidoscopic\\nkaleidoscopical\\nkaleidoscopically\\nkalends\\nkales\\nkalewife\\nkalewives\\nkaleyard\\nkaleyards\\nkalian\\nkalians\\nkalif\\nkalifate\\nkalifates\\nkalifs\\nkalimba\\nkalimbas\\nkaliph\\nkaliphs\\nkalium\\nkaliums\\nkallidin\\nkallidins\\nkalmia\\nkalmias\\nkalong\\nkalongs\\nkalpa\\nkalpak\\nkalpaks\\nkalpas\\nkalyptra\\nkalyptras\\nkamaaina\\nkamaainas\\nkamacite\\nkamacites\\nkamala\\nkamalas\\nkame\\nkames\\nkami\\nkamik\\nkamikaze\\nkamikazes\\nkamiks\\nkampong\\nkampongs\\nkamseen\\nkamseens\\nkamsin\\nkamsins\\nkana\\nkanas\\nkane\\nkanes\\nkangaroo\\nkangaroos\\nkanji\\nkanjis\\nkantar\\nkantars\\nkantele\\nkanteles\\nkaoliang\\nkaoliangs\\nkaolin\\nkaoline\\nkaolines\\nkaolinic\\nkaolins\\nkaon\\nkaons\\nkapa\\nkapas\\nkaph\\nkaphs\\nkapok\\nkapoks\\nkappa\\nkappas\\nkaput\\nkaputt\\nkarakul\\nkarakuls\\nkarat\\nkarate\\nkarates\\nkarats\\nkarma\\nkarmas\\nkarmic\\nkarn\\nkarnofsky\\nkarns\\nkaroo\\nkaroos\\nkaross\\nkarosses\\nkarroo\\nkarroos\\nkarst\\nkarstic\\nkarsts\\nkart\\nkarting\\nkartings\\nkarts\\nkaryotin\\nkaryotins\\nkas\\nkasha\\nkashas\\nkasher\\nkashered\\nkashering\\nkashers\\nkashmir\\nkashmirs\\nkashrut\\nkashruth\\nkashruths\\nkashruts\\nkat\\nkatakana\\nkatakanas\\nkathodal\\nkathode\\nkathodes\\nkathodic\\nkation\\nkations\\nkats\\nkatydid\\nkatydids\\nkauri\\nkauries\\nkauris\\nkaury\\nkava\\nkavas\\nkavass\\nkavasses\\nkay\\nkayak\\nkayaker\\nkayakers\\nkayaks\\nkayles\\nkayo\\nkayoed\\nkayoes\\nkayoing\\nkayos\\nkays\\nkazoo\\nkazoos\\nkea\\nkeas\\nkebab\\nkebabs\\nkebar\\nkebars\\nkebbie\\nkebbies\\nkebbock\\nkebbocks\\nkebbuck\\nkebbucks\\nkeblah\\nkeblahs\\nkebob\\nkebobs\\nkeck\\nkecked\\nkecking\\nkeckle\\nkeckled\\nkeckles\\nkeckling\\nkecks\\nkeddah\\nkeddahs\\nkedge\\nkedged\\nkedgeree\\nkedgerees\\nkedges\\nkedging\\nkeef\\nkeefs\\nkeek\\nkeeked\\nkeeking\\nkeeks\\nkeel\\nkeelage\\nkeelages\\nkeelboat\\nkeelboats\\nkeeled\\nkeelhale\\nkeelhaled\\nkeelhales\\nkeelhaling\\nkeelhaul\\nkeelhauled\\nkeelhauling\\nkeelhauls\\nkeeling\\nkeelless\\nkeels\\nkeelson\\nkeelsons\\nkeen\\nkeened\\nkeener\\nkeeners\\nkeenest\\nkeening\\nkeenly\\nkeenness\\nkeennesses\\nkeens\\nkeep\\nkeepable\\nkeeper\\nkeepers\\nkeeping\\nkeepings\\nkeeps\\nkeepsake\\nkeepsakes\\nkeeshond\\nkeeshonden\\nkeeshonds\\nkeester\\nkeesters\\nkeet\\nkeets\\nkeeve\\nkeeves\\nkef\\nkefir\\nkefirs\\nkefs\\nkeg\\nkegeler\\nkegelers\\nkegler\\nkeglers\\nkegling\\nkeglings\\nkegs\\nkeir\\nkeirs\\nkeister\\nkeisters\\nkeitloa\\nkeitloas\\nkeloid\\nkeloidal\\nkeloids\\nkelp\\nkelped\\nkelpie\\nkelpies\\nkelping\\nkelps\\nkelpy\\nkelson\\nkelsons\\nkelter\\nkelters\\nkelvin\\nkelvins\\nkemp\\nkemps\\nkempt\\nken\\nkenaf\\nkenafs\\nkench\\nkenches\\nkendo\\nkendos\\nkenned\\nkennel\\nkenneled\\nkenneling\\nkennelled\\nkennelling\\nkennels\\nkenning\\nkennings\\nkeno\\nkenos\\nkenosis\\nkenosises\\nkenotic\\nkenotron\\nkenotrons\\nkens\\nkent\\nkep\\nkephalin\\nkephalins\\nkepi\\nkepis\\nkepped\\nkeppen\\nkepping\\nkeps\\nkept\\nkeramic\\nkeramics\\nkeratin\\nkeratins\\nkeratoid\\nkeratoma\\nkeratomas\\nkeratomata\\nkeratose\\nkerb\\nkerbed\\nkerbing\\nkerbs\\nkerchief\\nkerchiefs\\nkerchieves\\nkerchoo\\nkerf\\nkerfed\\nkerfing\\nkerfs\\nkermes\\nkermess\\nkermesses\\nkermis\\nkermises\\nkern\\nkerne\\nkerned\\nkernel\\nkerneled\\nkerneling\\nkernelled\\nkernelling\\nkernels\\nkernes\\nkerning\\nkernite\\nkernites\\nkerns\\nkerogen\\nkerogens\\nkerosene\\nkerosenes\\nkerosine\\nkerosines\\nkerplunk\\nkerria\\nkerrias\\nkerries\\nkerry\\nkersey\\nkerseys\\nkerygma\\nkerygmata\\nkestrel\\nkestrels\\nketch\\nketches\\nketchup\\nketchups\\nketene\\nketenes\\nketo\\nketol\\nketone\\nketones\\nketonic\\nketose\\nketoses\\nketosis\\nketotic\\nkettle\\nkettledrum\\nkettledrums\\nkettles\\nkevel\\nkevels\\nkevil\\nkevils\\nkex\\nkexes\\nkey\\nkeyboard\\nkeyboarded\\nkeyboarding\\nkeyboards\\nkeyed\\nkeyer\\nkeyhole\\nkeyholes\\nkeying\\nkeyless\\nkeynote\\nkeynoted\\nkeynoter\\nkeynoters\\nkeynotes\\nkeynoting\\nkeypunch\\nkeypunched\\nkeypuncher\\nkeypunchers\\nkeypunches\\nkeypunching\\nkeys\\nkeyset\\nkeysets\\nkeyster\\nkeysters\\nkeystone\\nkeystones\\nkeyway\\nkeyways\\nkeyword\\nkeywords\\nkhaddar\\nkhaddars\\nkhadi\\nkhadis\\nkhaki\\nkhakis\\nkhalif\\nkhalifa\\nkhalifas\\nkhalifs\\nkhamseen\\nkhamseens\\nkhamsin\\nkhamsins\\nkhan\\nkhanate\\nkhanates\\nkhans\\nkhat\\nkhats\\nkhazen\\nkhazenim\\nkhazens\\nkheda\\nkhedah\\nkhedahs\\nkhedas\\nkhedival\\nkhedive\\nkhedives\\nkhi\\nkhirkah\\nkhirkahs\\nkhis\\nkiang\\nkiangs\\nkiaugh\\nkiaughs\\nkibble\\nkibbled\\nkibbles\\nkibbling\\nkibbutz\\nkibbutzim\\nkibe\\nkibes\\nkibitz\\nkibitzed\\nkibitzer\\nkibitzers\\nkibitzes\\nkibitzing\\nkibla\\nkiblah\\nkiblahs\\nkiblas\\nkibosh\\nkiboshed\\nkiboshes\\nkiboshing\\nkick\\nkickback\\nkickbacks\\nkicked\\nkicker\\nkickers\\nkicking\\nkickoff\\nkickoffs\\nkicks\\nkickshaw\\nkickshaws\\nkickup\\nkickups\\nkid\\nkidded\\nkidder\\nkidders\\nkiddie\\nkiddies\\nkidding\\nkiddingly\\nkiddish\\nkiddo\\nkiddoes\\nkiddos\\nkiddush\\nkiddushes\\nkiddy\\nkidlike\\nkidnap\\nkidnaped\\nkidnaper\\nkidnapers\\nkidnaping\\nkidnapped\\nkidnapper\\nkidnappers\\nkidnapping\\nkidnaps\\nkidney\\nkidneys\\nkids\\nkidskin\\nkidskins\\nkief\\nkiefs\\nkielbasa\\nkielbasas\\nkielbasy\\nkier\\nkiers\\nkiester\\nkiesters\\nkif\\nkifs\\nkike\\nkikes\\nkilim\\nkilims\\nkill\\nkilldee\\nkilldeer\\nkilldeers\\nkilldees\\nkilled\\nkiller\\nkillers\\nkillick\\nkillicks\\nkilling\\nkillings\\nkilljoy\\nkilljoys\\nkillock\\nkillocks\\nkills\\nkiln\\nkilned\\nkilning\\nkilns\\nkilo\\nkilobar\\nkilobars\\nkilobit\\nkilobits\\nkilocycle\\nkilocycles\\nkilogram\\nkilograms\\nkilohertz\\nkilometer\\nkilometers\\nkilomole\\nkilomoles\\nkilorad\\nkilorads\\nkilos\\nkiloton\\nkilotons\\nkilovolt\\nkilovolts\\nkilowatt\\nkilowatts\\nkilt\\nkilted\\nkilter\\nkilters\\nkiltie\\nkilties\\nkilting\\nkiltings\\nkilts\\nkilty\\nkimono\\nkimonoed\\nkimonos\\nkin\\nkinase\\nkinases\\nkind\\nkinder\\nkindergarten\\nkindergartens\\nkindergartner\\nkindergartners\\nkindest\\nkindhearted\\nkindle\\nkindled\\nkindler\\nkindlers\\nkindles\\nkindless\\nkindlier\\nkindliest\\nkindliness\\nkindlinesses\\nkindling\\nkindlings\\nkindly\\nkindness\\nkindnesses\\nkindred\\nkindreds\\nkinds\\nkine\\nkinema\\nkinemas\\nkines\\nkineses\\nkinesics\\nkinesis\\nkinetic\\nkinetics\\nkinetin\\nkinetins\\nkinfolk\\nkinfolks\\nking\\nkingbird\\nkingbirds\\nkingbolt\\nkingbolts\\nkingcup\\nkingcups\\nkingdom\\nkingdoms\\nkinged\\nkingfish\\nkingfisher\\nkingfishers\\nkingfishes\\nkinghood\\nkinghoods\\nkinging\\nkingless\\nkinglet\\nkinglets\\nkinglier\\nkingliest\\nkinglike\\nkingly\\nkingpin\\nkingpins\\nkingpost\\nkingposts\\nkings\\nkingship\\nkingships\\nkingside\\nkingsides\\nkingwood\\nkingwoods\\nkinin\\nkinins\\nkink\\nkinkajou\\nkinkajous\\nkinked\\nkinkier\\nkinkiest\\nkinkily\\nkinking\\nkinks\\nkinky\\nkino\\nkinos\\nkins\\nkinsfolk\\nkinship\\nkinships\\nkinsman\\nkinsmen\\nkinswoman\\nkinswomen\\nkiosk\\nkiosks\\nkip\\nkipped\\nkippen\\nkipper\\nkippered\\nkippering\\nkippers\\nkipping\\nkips\\nkipskin\\nkipskins\\nkirigami\\nkirigamis\\nkirk\\nkirkman\\nkirkmen\\nkirks\\nkirmess\\nkirmesses\\nkirn\\nkirned\\nkirning\\nkirns\\nkirsch\\nkirsches\\nkirtle\\nkirtled\\nkirtles\\nkishka\\nkishkas\\nkishke\\nkishkes\\nkismat\\nkismats\\nkismet\\nkismetic\\nkismets\\nkiss\\nkissable\\nkissably\\nkissed\\nkisser\\nkissers\\nkisses\\nkissing\\nkist\\nkistful\\nkistfuls\\nkists\\nkit\\nkitchen\\nkitchens\\nkite\\nkited\\nkiter\\nkiters\\nkites\\nkith\\nkithara\\nkitharas\\nkithe\\nkithed\\nkithes\\nkithing\\nkiths\\nkiting\\nkitling\\nkitlings\\nkits\\nkitsch\\nkitsches\\nkitschy\\nkitted\\nkittel\\nkitten\\nkittened\\nkittening\\nkittenish\\nkittens\\nkitties\\nkitting\\nkittle\\nkittled\\nkittler\\nkittles\\nkittlest\\nkittling\\nkitty\\nkiva\\nkivas\\nkiwi\\nkiwis\\nklatch\\nklatches\\nklatsch\\nklatsches\\nklavern\\nklaverns\\nklaxon\\nklaxons\\nkleagle\\nkleagles\\nkleig\\nklepht\\nklephtic\\nklephts\\nkleptomania\\nkleptomaniac\\nkleptomaniacs\\nkleptomanias\\nklieg\\nklong\\nklongs\\nkloof\\nkloofs\\nkludge\\nkludges\\nklutz\\nklutzes\\nklutzier\\nklutziest\\nklutzy\\nklystron\\nklystrons\\nknack\\nknacked\\nknacker\\nknackeries\\nknackers\\nknackery\\nknacking\\nknacks\\nknap\\nknapped\\nknapper\\nknappers\\nknapping\\nknaps\\nknapsack\\nknapsacks\\nknapweed\\nknapweeds\\nknar\\nknarred\\nknarry\\nknars\\nknave\\nknaveries\\nknavery\\nknaves\\nknavish\\nknawel\\nknawels\\nknead\\nkneaded\\nkneader\\nkneaders\\nkneading\\nkneads\\nknee\\nkneecap\\nkneecaps\\nkneed\\nkneehole\\nkneeholes\\nkneeing\\nkneel\\nkneeled\\nkneeler\\nkneelers\\nkneeling\\nkneels\\nkneepad\\nkneepads\\nkneepan\\nkneepans\\nknees\\nknell\\nknelled\\nknelling\\nknells\\nknelt\\nknew\\nknickers\\nknickknack\\nknickknacks\\nknife\\nknifed\\nknifer\\nknifers\\nknifes\\nknifing\\nknight\\nknighted\\nknighthood\\nknighthoods\\nknighting\\nknightly\\nknights\\nknish\\nknishes\\nknit\\nknits\\nknitted\\nknitter\\nknitters\\nknitting\\nknittings\\nknitwear\\nknitwears\\nknives\\nknob\\nknobbed\\nknobbier\\nknobbiest\\nknobby\\nknoblike\\nknobs\\nknock\\nknocked\\nknocker\\nknockers\\nknocking\\nknockoff\\nknockoffs\\nknockout\\nknockouts\\nknocks\\nknockwurst\\nknockwursts\\nknoll\\nknolled\\nknoller\\nknollers\\nknolling\\nknolls\\nknolly\\nknop\\nknopped\\nknops\\nknosp\\nknosps\\nknot\\nknothole\\nknotholes\\nknotless\\nknotlike\\nknots\\nknotted\\nknotter\\nknotters\\nknottier\\nknottiest\\nknottily\\nknotting\\nknotty\\nknotweed\\nknotweeds\\nknout\\nknouted\\nknouting\\nknouts\\nknow\\nknowable\\nknower\\nknowers\\nknowing\\nknowinger\\nknowingest\\nknowings\\nknowledge\\nknowledgeable\\nknowledges\\nknown\\nknowns\\nknows\\nknuckle\\nknucklebone\\nknucklebones\\nknuckled\\nknuckler\\nknucklers\\nknuckles\\nknucklier\\nknuckliest\\nknuckling\\nknuckly\\nknur\\nknurl\\nknurled\\nknurlier\\nknurliest\\nknurling\\nknurls\\nknurly\\nknurs\\nkoa\\nkoala\\nkoalas\\nkoan\\nkoans\\nkoas\\nkobold\\nkobolds\\nkoel\\nkoels\\nkohl\\nkohlrabi\\nkohlrabies\\nkohls\\nkoine\\nkoines\\nkokanee\\nkokanees\\nkola\\nkolacky\\nkolas\\nkolhoz\\nkolhozes\\nkolhozy\\nkolinski\\nkolinskies\\nkolinsky\\nkolkhos\\nkolkhoses\\nkolkhosy\\nkolkhoz\\nkolkhozes\\nkolkhozy\\nkolkoz\\nkolkozes\\nkolkozy\\nkolo\\nkolos\\nkomatik\\nkomatiks\\nkomondor\\nkomondorock\\nkomondorok\\nkomondors\\nkoodoo\\nkoodoos\\nkook\\nkookie\\nkookier\\nkookiest\\nkooks\\nkooky\\nkop\\nkopeck\\nkopecks\\nkopek\\nkopeks\\nkoph\\nkophs\\nkopje\\nkopjes\\nkoppa\\nkoppas\\nkoppie\\nkoppies\\nkops\\nkor\\nkors\\nkorun\\nkoruna\\nkorunas\\nkoruny\\nkos\\nkosher\\nkoshered\\nkoshering\\nkoshers\\nkoss\\nkoto\\nkotos\\nkotow\\nkotowed\\nkotower\\nkotowers\\nkotowing\\nkotows\\nkoumis\\nkoumises\\nkoumiss\\nkoumisses\\nkoumys\\nkoumyses\\nkoumyss\\nkoumysses\\nkousso\\nkoussos\\nkowtow\\nkowtowed\\nkowtower\\nkowtowers\\nkowtowing\\nkowtows\\nkraal\\nkraaled\\nkraaling\\nkraals\\nkraft\\nkrafts\\nkrait\\nkraits\\nkraken\\nkrakens\\nkrater\\nkraters\\nkraut\\nkrauts\\nkremlin\\nkremlins\\nkreutzer\\nkreutzers\\nkreuzer\\nkreuzers\\nkrikorian\\nkrill\\nkrills\\nkrimmer\\nkrimmers\\nkris\\nkrises\\nkrona\\nkrone\\nkronen\\nkroner\\nkronor\\nkronur\\nkroon\\nkrooni\\nkroons\\nkrubi\\nkrubis\\nkrubut\\nkrubuts\\nkruller\\nkrullers\\nkryolite\\nkryolites\\nkryolith\\nkryoliths\\nkrypton\\nkryptons\\nkuchen\\nkudo\\nkudos\\nkudu\\nkudus\\nkudzu\\nkudzus\\nkue\\nkues\\nkulak\\nkulaki\\nkulaks\\nkultur\\nkulturs\\nkumiss\\nkumisses\\nkummel\\nkummels\\nkumquat\\nkumquats\\nkumys\\nkumyses\\nkunzite\\nkunzites\\nkurbash\\nkurbashed\\nkurbashes\\nkurbashing\\nkurgan\\nkurgans\\nkurta\\nkurtas\\nkurtosis\\nkurtosises\\nkuru\\nkurus\\nkusso\\nkussos\\nkvas\\nkvases\\nkvass\\nkvasses\\nkvetch\\nkvetched\\nkvetches\\nkvetching\\nkwacha\\nkyack\\nkyacks\\nkyanise\\nkyanised\\nkyanises\\nkyanising\\nkyanite\\nkyanites\\nkyanize\\nkyanized\\nkyanizes\\nkyanizing\\nkyar\\nkyars\\nkyat\\nkyats\\nkylikes\\nkylix\\nkymogram\\nkymograms\\nkyphoses\\nkyphosis\\nkyphotic\\nkyrie\\nkyries\\nkyte\\nkytes\\nkythe\\nkythed\\nkythes\\nkything\\nla\\nlaager\\nlaagered\\nlaagering\\nlaagers\\nlab\\nlabara\\nlabarum\\nlabarums\\nlabdanum\\nlabdanums\\nlabel\\nlabeled\\nlabeler\\nlabelers\\nlabeling\\nlabella\\nlabelled\\nlabeller\\nlabellers\\nlabelling\\nlabellum\\nlabels\\nlabia\\nlabial\\nlabially\\nlabials\\nlabiate\\nlabiated\\nlabiates\\nlabile\\nlabilities\\nlability\\nlabium\\nlabor\\nlaboratories\\nlaboratory\\nlabored\\nlaborer\\nlaborers\\nlaboring\\nlaborious\\nlaboriously\\nlaborite\\nlaborites\\nlabors\\nlabour\\nlaboured\\nlabourer\\nlabourers\\nlabouring\\nlabours\\nlabra\\nlabret\\nlabrets\\nlabroid\\nlabroids\\nlabrum\\nlabrums\\nlabs\\nlaburnum\\nlaburnums\\nlabyrinth\\nlabyrinthine\\nlabyrinths\\nlac\\nlace\\nlaced\\nlaceless\\nlacelike\\nlacer\\nlacerate\\nlacerated\\nlacerates\\nlacerating\\nlaceration\\nlacerations\\nlacers\\nlacertid\\nlacertids\\nlaces\\nlacewing\\nlacewings\\nlacewood\\nlacewoods\\nlacework\\nlaceworks\\nlacey\\nlaches\\nlachrymose\\nlacier\\nlaciest\\nlacily\\nlaciness\\nlacinesses\\nlacing\\nlacings\\nlack\\nlackadaisical\\nlackadaisically\\nlackaday\\nlacked\\nlacker\\nlackered\\nlackering\\nlackers\\nlackey\\nlackeyed\\nlackeying\\nlackeys\\nlacking\\nlackluster\\nlacks\\nlaconic\\nlaconically\\nlaconism\\nlaconisms\\nlacquer\\nlacquered\\nlacquering\\nlacquers\\nlacquey\\nlacqueyed\\nlacqueying\\nlacqueys\\nlacrimal\\nlacrimals\\nlacrosse\\nlacrosses\\nlacs\\nlactam\\nlactams\\nlactary\\nlactase\\nlactases\\nlactate\\nlactated\\nlactates\\nlactating\\nlactation\\nlactations\\nlacteal\\nlacteals\\nlactean\\nlacteous\\nlactic\\nlactone\\nlactones\\nlactonic\\nlactose\\nlactoses\\nlacuna\\nlacunae\\nlacunal\\nlacunar\\nlacunaria\\nlacunars\\nlacunary\\nlacunas\\nlacunate\\nlacune\\nlacunes\\nlacunose\\nlacy\\nlad\\nladanum\\nladanums\\nladder\\nladdered\\nladdering\\nladders\\nladdie\\nladdies\\nlade\\nladed\\nladen\\nladened\\nladening\\nladens\\nlader\\nladers\\nlades\\nladies\\nlading\\nladings\\nladino\\nladinos\\nladle\\nladled\\nladleful\\nladlefuls\\nladler\\nladlers\\nladles\\nladling\\nladron\\nladrone\\nladrones\\nladrons\\nlads\\nlady\\nladybird\\nladybirds\\nladybug\\nladybugs\\nladyfish\\nladyfishes\\nladyhood\\nladyhoods\\nladyish\\nladykin\\nladykins\\nladylike\\nladylove\\nladyloves\\nladypalm\\nladypalms\\nladyship\\nladyships\\nlaevo\\nlag\\nlagan\\nlagans\\nlagend\\nlagends\\nlager\\nlagered\\nlagering\\nlagers\\nlaggard\\nlaggardly\\nlaggardness\\nlaggardnesses\\nlaggards\\nlagged\\nlagger\\nlaggers\\nlagging\\nlaggings\\nlagnappe\\nlagnappes\\nlagniappe\\nlagniappes\\nlagoon\\nlagoonal\\nlagoons\\nlags\\nlaguna\\nlagunas\\nlagune\\nlagunes\\nlaic\\nlaical\\nlaically\\nlaich\\nlaichs\\nlaicise\\nlaicised\\nlaicises\\nlaicising\\nlaicism\\nlaicisms\\nlaicize\\nlaicized\\nlaicizes\\nlaicizing\\nlaics\\nlaid\\nlaigh\\nlaighs\\nlain\\nlair\\nlaird\\nlairdly\\nlairds\\nlaired\\nlairing\\nlairs\\nlaitance\\nlaitances\\nlaith\\nlaithly\\nlaities\\nlaity\\nlake\\nlaked\\nlakeport\\nlakeports\\nlaker\\nlakers\\nlakes\\nlakeside\\nlakesides\\nlakh\\nlakhs\\nlakier\\nlakiest\\nlaking\\nlakings\\nlaky\\nlall\\nlallan\\nlalland\\nlallands\\nlallans\\nlalled\\nlalling\\nlalls\\nlallygag\\nlallygagged\\nlallygagging\\nlallygags\\nlam\\nlama\\nlamas\\nlamaseries\\nlamasery\\nlamb\\nlambast\\nlambaste\\nlambasted\\nlambastes\\nlambasting\\nlambasts\\nlambda\\nlambdas\\nlambdoid\\nlambed\\nlambencies\\nlambency\\nlambent\\nlambently\\nlamber\\nlambers\\nlambert\\nlamberts\\nlambie\\nlambies\\nlambing\\nlambkill\\nlambkills\\nlambkin\\nlambkins\\nlamblike\\nlambs\\nlambskin\\nlambskins\\nlame\\nlamebrain\\nlamebrains\\nlamed\\nlamedh\\nlamedhs\\nlameds\\nlamella\\nlamellae\\nlamellar\\nlamellas\\nlamely\\nlameness\\nlamenesses\\nlament\\nlamentable\\nlamentably\\nlamentation\\nlamentations\\nlamented\\nlamenter\\nlamenters\\nlamenting\\nlaments\\nlamer\\nlames\\nlamest\\nlamia\\nlamiae\\nlamias\\nlamina\\nlaminae\\nlaminal\\nlaminar\\nlaminary\\nlaminas\\nlaminate\\nlaminated\\nlaminates\\nlaminating\\nlamination\\nlaminations\\nlaming\\nlaminose\\nlaminous\\nlamister\\nlamisters\\nlammed\\nlamming\\nlamp\\nlampad\\nlampads\\nlampas\\nlampases\\nlamped\\nlampers\\nlamperses\\nlamping\\nlampion\\nlampions\\nlampoon\\nlampooned\\nlampooning\\nlampoons\\nlamppost\\nlampposts\\nlamprey\\nlampreys\\nlamps\\nlampyrid\\nlampyrids\\nlams\\nlamster\\nlamsters\\nlanai\\nlanais\\nlanate\\nlanated\\nlance\\nlanced\\nlancelet\\nlancelets\\nlancer\\nlancers\\nlances\\nlancet\\nlanceted\\nlancets\\nlanciers\\nlancing\\nland\\nlandau\\nlandaus\\nlanded\\nlander\\nlanders\\nlandfall\\nlandfalls\\nlandfill\\nlandfills\\nlandform\\nlandforms\\nlandholder\\nlandholders\\nlandholding\\nlandholdings\\nlanding\\nlandings\\nlandladies\\nlandlady\\nlandler\\nlandlers\\nlandless\\nlandlocked\\nlandlord\\nlandlords\\nlandlubber\\nlandlubbers\\nlandman\\nlandmark\\nlandmarks\\nlandmass\\nlandmasses\\nlandmen\\nlands\\nlandscape\\nlandscaped\\nlandscapes\\nlandscaping\\nlandside\\nlandsides\\nlandskip\\nlandskips\\nlandsleit\\nlandslid\\nlandslide\\nlandslides\\nlandslip\\nlandslips\\nlandsman\\nlandsmen\\nlandward\\nlane\\nlanely\\nlanes\\nlang\\nlanglauf\\nlanglaufs\\nlangley\\nlangleys\\nlangourous\\nlangourously\\nlangrage\\nlangrages\\nlangrel\\nlangrels\\nlangshan\\nlangshans\\nlangsyne\\nlangsynes\\nlanguage\\nlanguages\\nlangue\\nlangues\\nlanguet\\nlanguets\\nlanguid\\nlanguidly\\nlanguidness\\nlanguidnesses\\nlanguish\\nlanguished\\nlanguishes\\nlanguishing\\nlanguor\\nlanguors\\nlangur\\nlangurs\\nlaniard\\nlaniards\\nlaniaries\\nlaniary\\nlanital\\nlanitals\\nlank\\nlanker\\nlankest\\nlankier\\nlankiest\\nlankily\\nlankly\\nlankness\\nlanknesses\\nlanky\\nlanner\\nlanneret\\nlannerets\\nlanners\\nlanolin\\nlanoline\\nlanolines\\nlanolins\\nlanose\\nlanosities\\nlanosity\\nlantana\\nlantanas\\nlantern\\nlanterns\\nlanthorn\\nlanthorns\\nlanugo\\nlanugos\\nlanyard\\nlanyards\\nlap\\nlapboard\\nlapboards\\nlapdog\\nlapdogs\\nlapel\\nlapelled\\nlapels\\nlapful\\nlapfuls\\nlapidaries\\nlapidary\\nlapidate\\nlapidated\\nlapidates\\nlapidating\\nlapides\\nlapidified\\nlapidifies\\nlapidify\\nlapidifying\\nlapidist\\nlapidists\\nlapilli\\nlapillus\\nlapin\\nlapins\\nlapis\\nlapises\\nlapped\\nlapper\\nlappered\\nlappering\\nlappers\\nlappet\\nlappeted\\nlappets\\nlapping\\nlaps\\nlapsable\\nlapse\\nlapsed\\nlapser\\nlapsers\\nlapses\\nlapsible\\nlapsing\\nlapsus\\nlapwing\\nlapwings\\nlar\\nlarboard\\nlarboards\\nlarcener\\nlarceners\\nlarcenies\\nlarcenous\\nlarceny\\nlarch\\nlarches\\nlard\\nlarded\\nlarder\\nlarders\\nlardier\\nlardiest\\nlarding\\nlardlike\\nlardon\\nlardons\\nlardoon\\nlardoons\\nlards\\nlardy\\nlares\\nlarge\\nlargely\\nlargeness\\nlargenesses\\nlarger\\nlarges\\nlargess\\nlargesse\\nlargesses\\nlargest\\nlargish\\nlargo\\nlargos\\nlariat\\nlariated\\nlariating\\nlariats\\nlarine\\nlark\\nlarked\\nlarker\\nlarkers\\nlarkier\\nlarkiest\\nlarking\\nlarks\\nlarksome\\nlarkspur\\nlarkspurs\\nlarky\\nlarrigan\\nlarrigans\\nlarrikin\\nlarrikins\\nlarrup\\nlarruped\\nlarruper\\nlarrupers\\nlarruping\\nlarrups\\nlars\\nlarum\\nlarums\\nlarva\\nlarvae\\nlarval\\nlarvas\\nlaryngal\\nlaryngeal\\nlarynges\\nlaryngitis\\nlaryngitises\\nlaryngoscopy\\nlarynx\\nlarynxes\\nlas\\nlasagna\\nlasagnas\\nlasagne\\nlasagnes\\nlascar\\nlascars\\nlascivious\\nlasciviousness\\nlasciviousnesses\\nlase\\nlased\\nlaser\\nlasers\\nlases\\nlash\\nlashed\\nlasher\\nlashers\\nlashes\\nlashing\\nlashings\\nlashins\\nlashkar\\nlashkars\\nlasing\\nlass\\nlasses\\nlassie\\nlassies\\nlassitude\\nlassitudes\\nlasso\\nlassoed\\nlassoer\\nlassoers\\nlassoes\\nlassoing\\nlassos\\nlast\\nlasted\\nlaster\\nlasters\\nlasting\\nlastings\\nlastly\\nlasts\\nlat\\nlatakia\\nlatakias\\nlatch\\nlatched\\nlatches\\nlatchet\\nlatchets\\nlatching\\nlatchkey\\nlatchkeys\\nlate\\nlatecomer\\nlatecomers\\nlated\\nlateen\\nlateener\\nlateeners\\nlateens\\nlately\\nlaten\\nlatencies\\nlatency\\nlatened\\nlateness\\nlatenesses\\nlatening\\nlatens\\nlatent\\nlatently\\nlatents\\nlater\\nlaterad\\nlateral\\nlateraled\\nlateraling\\nlaterally\\nlaterals\\nlaterite\\nlaterites\\nlatest\\nlatests\\nlatewood\\nlatewoods\\nlatex\\nlatexes\\nlath\\nlathe\\nlathed\\nlather\\nlathered\\nlatherer\\nlatherers\\nlathering\\nlathers\\nlathery\\nlathes\\nlathier\\nlathiest\\nlathing\\nlathings\\nlaths\\nlathwork\\nlathworks\\nlathy\\nlati\\nlatices\\nlatigo\\nlatigoes\\nlatigos\\nlatinities\\nlatinity\\nlatinize\\nlatinized\\nlatinizes\\nlatinizing\\nlatish\\nlatitude\\nlatitudes\\nlatosol\\nlatosols\\nlatria\\nlatrias\\nlatrine\\nlatrines\\nlats\\nlatten\\nlattens\\nlatter\\nlatterly\\nlattice\\nlatticed\\nlattices\\nlatticing\\nlattin\\nlattins\\nlauan\\nlauans\\nlaud\\nlaudable\\nlaudably\\nlaudanum\\nlaudanums\\nlaudator\\nlaudators\\nlauded\\nlauder\\nlauders\\nlauding\\nlauds\\nlaugh\\nlaughable\\nlaughed\\nlaugher\\nlaughers\\nlaughing\\nlaughingly\\nlaughings\\nlaughingstock\\nlaughingstocks\\nlaughs\\nlaughter\\nlaughters\\nlaunce\\nlaunces\\nlaunch\\nlaunched\\nlauncher\\nlaunchers\\nlaunches\\nlaunching\\nlaunder\\nlaundered\\nlaunderer\\nlaunderers\\nlaunderess\\nlaunderesses\\nlaundering\\nlaunders\\nlaundries\\nlaundry\\nlaura\\nlaurae\\nlauras\\nlaureate\\nlaureated\\nlaureates\\nlaureateship\\nlaureateships\\nlaureating\\nlaurel\\nlaureled\\nlaureling\\nlaurelled\\nlaurelling\\nlaurels\\nlauwine\\nlauwines\\nlava\\nlavabo\\nlavaboes\\nlavabos\\nlavage\\nlavages\\nlavalava\\nlavalavas\\nlavalier\\nlavaliers\\nlavalike\\nlavas\\nlavation\\nlavations\\nlavatories\\nlavatory\\nlave\\nlaved\\nlaveer\\nlaveered\\nlaveering\\nlaveers\\nlavender\\nlavendered\\nlavendering\\nlavenders\\nlaver\\nlaverock\\nlaverocks\\nlavers\\nlaves\\nlaving\\nlavish\\nlavished\\nlavisher\\nlavishers\\nlavishes\\nlavishest\\nlavishing\\nlavishly\\nlavrock\\nlavrocks\\nlaw\\nlawbreaker\\nlawbreakers\\nlawed\\nlawful\\nlawfully\\nlawgiver\\nlawgivers\\nlawine\\nlawines\\nlawing\\nlawings\\nlawless\\nlawlike\\nlawmaker\\nlawmakers\\nlawman\\nlawmen\\nlawn\\nlawns\\nlawny\\nlaws\\nlawsuit\\nlawsuits\\nlawyer\\nlawyerly\\nlawyers\\nlax\\nlaxation\\nlaxations\\nlaxative\\nlaxatives\\nlaxer\\nlaxest\\nlaxities\\nlaxity\\nlaxly\\nlaxness\\nlaxnesses\\nlay\\nlayabout\\nlayabouts\\nlayaway\\nlayaways\\nlayed\\nlayer\\nlayerage\\nlayerages\\nlayered\\nlayering\\nlayerings\\nlayers\\nlayette\\nlayettes\\nlaying\\nlayman\\nlaymen\\nlayoff\\nlayoffs\\nlayout\\nlayouts\\nlayover\\nlayovers\\nlays\\nlaywoman\\nlaywomen\\nlazar\\nlazaret\\nlazarets\\nlazars\\nlaze\\nlazed\\nlazes\\nlazied\\nlazier\\nlazies\\nlaziest\\nlazily\\nlaziness\\nlazinesses\\nlazing\\nlazuli\\nlazulis\\nlazulite\\nlazulites\\nlazurite\\nlazurites\\nlazy\\nlazying\\nlazyish\\nlazys\\nlea\\nleach\\nleachate\\nleachates\\nleached\\nleacher\\nleachers\\nleaches\\nleachier\\nleachiest\\nleaching\\nleachy\\nlead\\nleaded\\nleaden\\nleadenly\\nleader\\nleaderless\\nleaders\\nleadership\\nleaderships\\nleadier\\nleadiest\\nleading\\nleadings\\nleadless\\nleadoff\\nleadoffs\\nleads\\nleadsman\\nleadsmen\\nleadwork\\nleadworks\\nleadwort\\nleadworts\\nleady\\nleaf\\nleafage\\nleafages\\nleafed\\nleafier\\nleafiest\\nleafing\\nleafless\\nleaflet\\nleaflets\\nleaflike\\nleafs\\nleafworm\\nleafworms\\nleafy\\nleague\\nleagued\\nleaguer\\nleaguered\\nleaguering\\nleaguers\\nleagues\\nleaguing\\nleak\\nleakage\\nleakages\\nleaked\\nleaker\\nleakers\\nleakier\\nleakiest\\nleakily\\nleaking\\nleakless\\nleaks\\nleaky\\nleal\\nleally\\nlealties\\nlealty\\nlean\\nleaned\\nleaner\\nleanest\\nleaning\\nleanings\\nleanly\\nleanness\\nleannesses\\nleans\\nleant\\nleap\\nleaped\\nleaper\\nleapers\\nleapfrog\\nleapfrogged\\nleapfrogging\\nleapfrogs\\nleaping\\nleaps\\nleapt\\nlear\\nlearier\\nleariest\\nlearn\\nlearned\\nlearner\\nlearners\\nlearning\\nlearnings\\nlearns\\nlearnt\\nlears\\nleary\\nleas\\nleasable\\nlease\\nleased\\nleaser\\nleasers\\nleases\\nleash\\nleashed\\nleashes\\nleashing\\nleasing\\nleasings\\nleast\\nleasts\\nleather\\nleathered\\nleathering\\nleathern\\nleathers\\nleathery\\nleave\\nleaved\\nleaven\\nleavened\\nleavening\\nleavens\\nleaver\\nleavers\\nleaves\\nleavier\\nleaviest\\nleaving\\nleavings\\nleavy\\nleben\\nlebens\\nlech\\nlechayim\\nlechayims\\nlecher\\nlechered\\nlecheries\\nlechering\\nlecherous\\nlecherousness\\nlecherousnesses\\nlechers\\nlechery\\nleches\\nlecithin\\nlecithins\\nlectern\\nlecterns\\nlection\\nlections\\nlector\\nlectors\\nlecture\\nlectured\\nlecturer\\nlecturers\\nlectures\\nlectureship\\nlectureships\\nlecturing\\nlecythi\\nlecythus\\nled\\nledge\\nledger\\nledgers\\nledges\\nledgier\\nledgiest\\nledgy\\nlee\\nleeboard\\nleeboards\\nleech\\nleeched\\nleeches\\nleeching\\nleek\\nleeks\\nleer\\nleered\\nleerier\\nleeriest\\nleerily\\nleering\\nleers\\nleery\\nlees\\nleet\\nleets\\nleeward\\nleewards\\nleeway\\nleeways\\nleft\\nlefter\\nleftest\\nlefties\\nleftism\\nleftisms\\nleftist\\nleftists\\nleftover\\nleftovers\\nlefts\\nleftward\\nleftwing\\nlefty\\nleg\\nlegacies\\nlegacy\\nlegal\\nlegalese\\nlegaleses\\nlegalise\\nlegalised\\nlegalises\\nlegalising\\nlegalism\\nlegalisms\\nlegalist\\nlegalistic\\nlegalists\\nlegalities\\nlegality\\nlegalize\\nlegalized\\nlegalizes\\nlegalizing\\nlegally\\nlegals\\nlegate\\nlegated\\nlegatee\\nlegatees\\nlegates\\nlegatine\\nlegating\\nlegation\\nlegations\\nlegato\\nlegator\\nlegators\\nlegatos\\nlegend\\nlegendary\\nlegendries\\nlegendry\\nlegends\\nleger\\nlegerdemain\\nlegerdemains\\nlegerities\\nlegerity\\nlegers\\nleges\\nlegged\\nleggier\\nleggiest\\nleggin\\nlegging\\nleggings\\nleggins\\nleggy\\nleghorn\\nleghorns\\nlegibilities\\nlegibility\\nlegible\\nlegibly\\nlegion\\nlegionaries\\nlegionary\\nlegionnaire\\nlegionnaires\\nlegions\\nlegislate\\nlegislated\\nlegislates\\nlegislating\\nlegislation\\nlegislations\\nlegislative\\nlegislator\\nlegislators\\nlegislature\\nlegislatures\\nlegist\\nlegists\\nlegit\\nlegitimacy\\nlegitimate\\nlegitimately\\nlegits\\nlegless\\nleglike\\nlegman\\nlegmen\\nlegroom\\nlegrooms\\nlegs\\nlegume\\nlegumes\\nlegumin\\nleguminous\\nlegumins\\nlegwork\\nlegworks\\nlehayim\\nlehayims\\nlehr\\nlehrs\\nlehua\\nlehuas\\nlei\\nleis\\nleister\\nleistered\\nleistering\\nleisters\\nleisure\\nleisured\\nleisurely\\nleisures\\nlek\\nleks\\nlekythi\\nlekythoi\\nlekythos\\nlekythus\\nleman\\nlemans\\nlemma\\nlemmas\\nlemmata\\nlemming\\nlemmings\\nlemnisci\\nlemon\\nlemonade\\nlemonades\\nlemonish\\nlemons\\nlemony\\nlempira\\nlempiras\\nlemur\\nlemures\\nlemuroid\\nlemuroids\\nlemurs\\nlend\\nlender\\nlenders\\nlending\\nlends\\nlenes\\nlength\\nlengthen\\nlengthened\\nlengthening\\nlengthens\\nlengthier\\nlengthiest\\nlengths\\nlengthwise\\nlengthy\\nlenience\\nleniences\\nleniencies\\nleniency\\nlenient\\nleniently\\nlenis\\nlenities\\nlenitive\\nlenitives\\nlenity\\nleno\\nlenos\\nlens\\nlense\\nlensed\\nlenses\\nlensless\\nlent\\nlentando\\nlenten\\nlentic\\nlenticel\\nlenticels\\nlentigines\\nlentigo\\nlentil\\nlentils\\nlentisk\\nlentisks\\nlento\\nlentoid\\nlentos\\nleone\\nleones\\nleonine\\nleopard\\nleopards\\nleotard\\nleotards\\nleper\\nlepers\\nlepidote\\nleporid\\nleporids\\nleporine\\nleprechaun\\nleprechauns\\nleprose\\nleprosies\\nleprosy\\nleprotic\\nleprous\\nlepta\\nlepton\\nleptonic\\nleptons\\nlesbian\\nlesbianism\\nlesbianisms\\nlesbians\\nlesion\\nlesions\\nless\\nlessee\\nlessees\\nlessen\\nlessened\\nlessening\\nlessens\\nlesser\\nlesson\\nlessoned\\nlessoning\\nlessons\\nlessor\\nlessors\\nlest\\nlet\\nletch\\nletches\\nletdown\\nletdowns\\nlethal\\nlethally\\nlethals\\nlethargic\\nlethargies\\nlethargy\\nlethe\\nlethean\\nlethes\\nlets\\nletted\\nletter\\nlettered\\nletterer\\nletterers\\nletterhead\\nlettering\\nletters\\nletting\\nlettuce\\nlettuces\\nletup\\nletups\\nleu\\nleucemia\\nleucemias\\nleucemic\\nleucin\\nleucine\\nleucines\\nleucins\\nleucite\\nleucites\\nleucitic\\nleucoma\\nleucomas\\nleud\\nleudes\\nleuds\\nleukemia\\nleukemias\\nleukemic\\nleukemics\\nleukocytosis\\nleukoma\\nleukomas\\nleukon\\nleukons\\nleukopenia\\nleukophoresis\\nleukoses\\nleukosis\\nleukotic\\nlev\\nleva\\nlevant\\nlevanted\\nlevanter\\nlevanters\\nlevanting\\nlevants\\nlevator\\nlevatores\\nlevators\\nlevee\\nleveed\\nleveeing\\nlevees\\nlevel\\nleveled\\nleveler\\nlevelers\\nleveling\\nlevelled\\nleveller\\nlevellers\\nlevelling\\nlevelly\\nlevelness\\nlevelnesses\\nlevels\\nlever\\nleverage\\nleveraged\\nleverages\\nleveraging\\nlevered\\nleveret\\nleverets\\nlevering\\nlevers\\nleviable\\nleviathan\\nleviathans\\nlevied\\nlevier\\nleviers\\nlevies\\nlevigate\\nlevigated\\nlevigates\\nlevigating\\nlevin\\nlevins\\nlevirate\\nlevirates\\nlevitate\\nlevitated\\nlevitates\\nlevitating\\nlevities\\nlevity\\nlevo\\nlevogyre\\nlevulin\\nlevulins\\nlevulose\\nlevuloses\\nlevy\\nlevying\\nlewd\\nlewder\\nlewdest\\nlewdly\\nlewdness\\nlewdnesses\\nlewis\\nlewises\\nlewisite\\nlewisites\\nlewisson\\nlewissons\\nlex\\nlexica\\nlexical\\nlexicographer\\nlexicographers\\nlexicographic\\nlexicographical\\nlexicographies\\nlexicography\\nlexicon\\nlexicons\\nley\\nleys\\nli\\nliabilities\\nliability\\nliable\\nliaise\\nliaised\\nliaises\\nliaising\\nliaison\\nliaisons\\nliana\\nlianas\\nliane\\nlianes\\nliang\\nliangs\\nlianoid\\nliar\\nliard\\nliards\\nliars\\nlib\\nlibation\\nlibations\\nlibber\\nlibbers\\nlibeccio\\nlibeccios\\nlibel\\nlibelant\\nlibelants\\nlibeled\\nlibelee\\nlibelees\\nlibeler\\nlibelers\\nlibeling\\nlibelist\\nlibelists\\nlibelled\\nlibellee\\nlibellees\\nlibeller\\nlibellers\\nlibelling\\nlibellous\\nlibelous\\nlibels\\nliber\\nliberal\\nliberalism\\nliberalisms\\nliberalities\\nliberality\\nliberalize\\nliberalized\\nliberalizes\\nliberalizing\\nliberally\\nliberals\\nliberate\\nliberated\\nliberates\\nliberating\\nliberation\\nliberations\\nliberator\\nliberators\\nlibers\\nliberties\\nlibertine\\nlibertines\\nliberty\\nlibidinal\\nlibidinous\\nlibido\\nlibidos\\nlibra\\nlibrae\\nlibrarian\\nlibrarians\\nlibraries\\nlibrary\\nlibras\\nlibrate\\nlibrated\\nlibrates\\nlibrating\\nlibretti\\nlibrettist\\nlibrettists\\nlibretto\\nlibrettos\\nlibri\\nlibs\\nlice\\nlicence\\nlicenced\\nlicencee\\nlicencees\\nlicencer\\nlicencers\\nlicences\\nlicencing\\nlicense\\nlicensed\\nlicensee\\nlicensees\\nlicenser\\nlicensers\\nlicenses\\nlicensing\\nlicensor\\nlicensors\\nlicentious\\nlicentiously\\nlicentiousness\\nlicentiousnesses\\nlichee\\nlichees\\nlichen\\nlichened\\nlichenin\\nlichening\\nlichenins\\nlichenous\\nlichens\\nlichi\\nlichis\\nlicht\\nlichted\\nlichting\\nlichtly\\nlichts\\nlicit\\nlicitly\\nlick\\nlicked\\nlicker\\nlickers\\nlicking\\nlickings\\nlicks\\nlickspit\\nlickspits\\nlicorice\\nlicorices\\nlictor\\nlictors\\nlid\\nlidar\\nlidars\\nlidded\\nlidding\\nlidless\\nlido\\nlidos\\nlids\\nlie\\nlied\\nlieder\\nlief\\nliefer\\nliefest\\nliefly\\nliege\\nliegeman\\nliegemen\\nlieges\\nlien\\nlienable\\nlienal\\nliens\\nlienteries\\nlientery\\nlier\\nlierne\\nliernes\\nliers\\nlies\\nlieu\\nlieus\\nlieutenancies\\nlieutenancy\\nlieutenant\\nlieutenants\\nlieve\\nliever\\nlievest\\nlife\\nlifeblood\\nlifebloods\\nlifeboat\\nlifeboats\\nlifeful\\nlifeguard\\nlifeguards\\nlifeless\\nlifelike\\nlifeline\\nlifelines\\nlifelong\\nlifer\\nlifers\\nlifesaver\\nlifesavers\\nlifesaving\\nlifesavings\\nlifetime\\nlifetimes\\nlifeway\\nlifeways\\nlifework\\nlifeworks\\nlift\\nliftable\\nlifted\\nlifter\\nlifters\\nlifting\\nliftman\\nliftmen\\nliftoff\\nliftoffs\\nlifts\\nligament\\nligaments\\nligan\\nligand\\nligands\\nligans\\nligase\\nligases\\nligate\\nligated\\nligates\\nligating\\nligation\\nligations\\nligative\\nligature\\nligatured\\nligatures\\nligaturing\\nlight\\nlightbulb\\nlightbulbs\\nlighted\\nlighten\\nlightened\\nlightening\\nlightens\\nlighter\\nlightered\\nlightering\\nlighters\\nlightest\\nlightful\\nlighthearted\\nlightheartedly\\nlightheartedness\\nlightheartednesses\\nlighthouse\\nlighthouses\\nlighting\\nlightings\\nlightish\\nlightly\\nlightness\\nlightnesses\\nlightning\\nlightnings\\nlightproof\\nlights\\nligneous\\nlignified\\nlignifies\\nlignify\\nlignifying\\nlignin\\nlignins\\nlignite\\nlignites\\nlignitic\\nligroin\\nligroine\\nligroines\\nligroins\\nligula\\nligulae\\nligular\\nligulas\\nligulate\\nligule\\nligules\\nliguloid\\nligure\\nligures\\nlikable\\nlike\\nlikeable\\nliked\\nlikelier\\nlikeliest\\nlikelihood\\nlikelihoods\\nlikely\\nliken\\nlikened\\nlikeness\\nlikenesses\\nlikening\\nlikens\\nliker\\nlikers\\nlikes\\nlikest\\nlikewise\\nliking\\nlikings\\nlikuta\\nlilac\\nlilacs\\nlilied\\nlilies\\nlilliput\\nlilliputs\\nlilt\\nlilted\\nlilting\\nlilts\\nlilty\\nlily\\nlilylike\\nlima\\nlimacine\\nlimacon\\nlimacons\\nliman\\nlimans\\nlimas\\nlimb\\nlimba\\nlimbas\\nlimbate\\nlimbeck\\nlimbecks\\nlimbed\\nlimber\\nlimbered\\nlimberer\\nlimberest\\nlimbering\\nlimberly\\nlimbers\\nlimbi\\nlimbic\\nlimbier\\nlimbiest\\nlimbing\\nlimbless\\nlimbo\\nlimbos\\nlimbs\\nlimbus\\nlimbuses\\nlimby\\nlime\\nlimeade\\nlimeades\\nlimed\\nlimekiln\\nlimekilns\\nlimeless\\nlimelight\\nlimelights\\nlimen\\nlimens\\nlimerick\\nlimericks\\nlimes\\nlimestone\\nlimestones\\nlimey\\nlimeys\\nlimier\\nlimiest\\nlimina\\nliminal\\nliminess\\nliminesses\\nliming\\nlimit\\nlimitary\\nlimitation\\nlimitations\\nlimited\\nlimiteds\\nlimiter\\nlimiters\\nlimites\\nlimiting\\nlimitless\\nlimits\\nlimmer\\nlimmers\\nlimn\\nlimned\\nlimner\\nlimners\\nlimnetic\\nlimnic\\nlimning\\nlimns\\nlimo\\nlimonene\\nlimonenes\\nlimonite\\nlimonites\\nlimos\\nlimousine\\nlimousines\\nlimp\\nlimped\\nlimper\\nlimpers\\nlimpest\\nlimpet\\nlimpets\\nlimpid\\nlimpidly\\nlimping\\nlimpkin\\nlimpkins\\nlimply\\nlimpness\\nlimpnesses\\nlimps\\nlimpsy\\nlimuli\\nlimuloid\\nlimuloids\\nlimulus\\nlimy\\nlin\\nlinable\\nlinac\\nlinacs\\nlinage\\nlinages\\nlinalol\\nlinalols\\nlinalool\\nlinalools\\nlinchpin\\nlinchpins\\nlindane\\nlindanes\\nlinden\\nlindens\\nlindies\\nlindy\\nline\\nlineable\\nlineage\\nlineages\\nlineal\\nlineally\\nlineaments\\nlinear\\nlinearly\\nlineate\\nlineated\\nlinebred\\nlinecut\\nlinecuts\\nlined\\nlineless\\nlinelike\\nlineman\\nlinemen\\nlinen\\nlinens\\nlineny\\nliner\\nliners\\nlines\\nlinesman\\nlinesmen\\nlineup\\nlineups\\nliney\\nling\\nlinga\\nlingam\\nlingams\\nlingas\\nlingcod\\nlingcods\\nlinger\\nlingered\\nlingerer\\nlingerers\\nlingerie\\nlingeries\\nlingering\\nlingers\\nlingier\\nlingiest\\nlingo\\nlingoes\\nlings\\nlingua\\nlinguae\\nlingual\\nlinguals\\nlinguine\\nlinguines\\nlinguini\\nlinguinis\\nlinguist\\nlinguistic\\nlinguistics\\nlinguists\\nlingy\\nlinier\\nliniest\\nliniment\\nliniments\\nlinin\\nlining\\nlinings\\nlinins\\nlink\\nlinkable\\nlinkage\\nlinkages\\nlinkboy\\nlinkboys\\nlinked\\nlinker\\nlinkers\\nlinking\\nlinkman\\nlinkmen\\nlinks\\nlinksman\\nlinksmen\\nlinkup\\nlinkups\\nlinkwork\\nlinkworks\\nlinky\\nlinn\\nlinnet\\nlinnets\\nlinns\\nlino\\nlinocut\\nlinocuts\\nlinoleum\\nlinoleums\\nlinos\\nlins\\nlinsang\\nlinsangs\\nlinseed\\nlinseeds\\nlinsey\\nlinseys\\nlinstock\\nlinstocks\\nlint\\nlintel\\nlintels\\nlinter\\nlinters\\nlintier\\nlintiest\\nlintless\\nlintol\\nlintols\\nlints\\nlinty\\nlinum\\nlinums\\nliny\\nlion\\nlioness\\nlionesses\\nlionfish\\nlionfishes\\nlionise\\nlionised\\nlioniser\\nlionisers\\nlionises\\nlionising\\nlionization\\nlionizations\\nlionize\\nlionized\\nlionizer\\nlionizers\\nlionizes\\nlionizing\\nlionlike\\nlions\\nlip\\nlipase\\nlipases\\nlipid\\nlipide\\nlipides\\nlipidic\\nlipids\\nlipin\\nlipins\\nlipless\\nliplike\\nlipocyte\\nlipocytes\\nlipoid\\nlipoidal\\nlipoids\\nlipoma\\nlipomas\\nlipomata\\nlipped\\nlippen\\nlippened\\nlippening\\nlippens\\nlipper\\nlippered\\nlippering\\nlippers\\nlippier\\nlippiest\\nlipping\\nlippings\\nlippy\\nlipreading\\nlipreadings\\nlips\\nlipstick\\nlipsticks\\nliquate\\nliquated\\nliquates\\nliquating\\nliquefaction\\nliquefactions\\nliquefiable\\nliquefied\\nliquefier\\nliquefiers\\nliquefies\\nliquefy\\nliquefying\\nliqueur\\nliqueurs\\nliquid\\nliquidate\\nliquidated\\nliquidates\\nliquidating\\nliquidation\\nliquidations\\nliquidities\\nliquidity\\nliquidly\\nliquids\\nliquified\\nliquifies\\nliquify\\nliquifying\\nliquor\\nliquored\\nliquoring\\nliquors\\nlira\\nliras\\nlire\\nliripipe\\nliripipes\\nlirot\\nliroth\\nlis\\nlisle\\nlisles\\nlisp\\nlisped\\nlisper\\nlispers\\nlisping\\nlisps\\nlissom\\nlissome\\nlissomly\\nlist\\nlistable\\nlisted\\nlistel\\nlistels\\nlisten\\nlistened\\nlistener\\nlisteners\\nlistening\\nlistens\\nlister\\nlisters\\nlisting\\nlistings\\nlistless\\nlistlessly\\nlistlessness\\nlistlessnesses\\nlists\\nlit\\nlitai\\nlitanies\\nlitany\\nlitas\\nlitchi\\nlitchis\\nliter\\nliteracies\\nliteracy\\nliteral\\nliterally\\nliterals\\nliterary\\nliterate\\nliterates\\nliterati\\nliterature\\nliteratures\\nliters\\nlitharge\\nlitharges\\nlithe\\nlithely\\nlithemia\\nlithemias\\nlithemic\\nlither\\nlithesome\\nlithest\\nlithia\\nlithias\\nlithic\\nlithium\\nlithiums\\nlitho\\nlithograph\\nlithographer\\nlithographers\\nlithographic\\nlithographies\\nlithographs\\nlithography\\nlithoid\\nlithos\\nlithosol\\nlithosols\\nlitigant\\nlitigants\\nlitigate\\nlitigated\\nlitigates\\nlitigating\\nlitigation\\nlitigations\\nlitigious\\nlitigiousness\\nlitigiousnesses\\nlitmus\\nlitmuses\\nlitoral\\nlitotes\\nlitre\\nlitres\\nlits\\nlitten\\nlitter\\nlittered\\nlitterer\\nlitterers\\nlittering\\nlitters\\nlittery\\nlittle\\nlittleness\\nlittlenesses\\nlittler\\nlittles\\nlittlest\\nlittlish\\nlittoral\\nlittorals\\nlitu\\nliturgic\\nliturgical\\nliturgically\\nliturgies\\nliturgy\\nlivabilities\\nlivability\\nlivable\\nlive\\nliveable\\nlived\\nlivelier\\nliveliest\\nlivelihood\\nlivelihoods\\nlivelily\\nliveliness\\nlivelinesses\\nlivelong\\nlively\\nliven\\nlivened\\nlivener\\nliveners\\nliveness\\nlivenesses\\nlivening\\nlivens\\nliver\\nliveried\\nliveries\\nliverish\\nlivers\\nlivery\\nliveryman\\nliverymen\\nlives\\nlivest\\nlivestock\\nlivestocks\\nlivetrap\\nlivetrapped\\nlivetrapping\\nlivetraps\\nlivid\\nlividities\\nlividity\\nlividly\\nlivier\\nliviers\\nliving\\nlivingly\\nlivings\\nlivre\\nlivres\\nlivyer\\nlivyers\\nlixivia\\nlixivial\\nlixivium\\nlixiviums\\nlizard\\nlizards\\nllama\\nllamas\\nllano\\nllanos\\nlo\\nloach\\nloaches\\nload\\nloaded\\nloader\\nloaders\\nloading\\nloadings\\nloads\\nloadstar\\nloadstars\\nloaf\\nloafed\\nloafer\\nloafers\\nloafing\\nloafs\\nloam\\nloamed\\nloamier\\nloamiest\\nloaming\\nloamless\\nloams\\nloamy\\nloan\\nloanable\\nloaned\\nloaner\\nloaners\\nloaning\\nloanings\\nloans\\nloanword\\nloanwords\\nloath\\nloathe\\nloathed\\nloather\\nloathers\\nloathes\\nloathful\\nloathing\\nloathings\\nloathly\\nloathsome\\nloaves\\nlob\\nlobar\\nlobate\\nlobated\\nlobately\\nlobation\\nlobations\\nlobbed\\nlobbied\\nlobbies\\nlobbing\\nlobby\\nlobbyer\\nlobbyers\\nlobbygow\\nlobbygows\\nlobbying\\nlobbyism\\nlobbyisms\\nlobbyist\\nlobbyists\\nlobe\\nlobed\\nlobefin\\nlobefins\\nlobelia\\nlobelias\\nlobeline\\nlobelines\\nlobes\\nloblollies\\nloblolly\\nlobo\\nlobos\\nlobotomies\\nlobotomy\\nlobs\\nlobster\\nlobsters\\nlobstick\\nlobsticks\\nlobular\\nlobulate\\nlobule\\nlobules\\nlobulose\\nlobworm\\nlobworms\\nloca\\nlocal\\nlocale\\nlocales\\nlocalise\\nlocalised\\nlocalises\\nlocalising\\nlocalism\\nlocalisms\\nlocalist\\nlocalists\\nlocalite\\nlocalites\\nlocalities\\nlocality\\nlocalization\\nlocalizations\\nlocalize\\nlocalized\\nlocalizes\\nlocalizing\\nlocally\\nlocals\\nlocate\\nlocated\\nlocater\\nlocaters\\nlocates\\nlocating\\nlocation\\nlocations\\nlocative\\nlocatives\\nlocator\\nlocators\\nloch\\nlochia\\nlochial\\nlochs\\nloci\\nlock\\nlockable\\nlockage\\nlockages\\nlockbox\\nlockboxes\\nlocked\\nlocker\\nlockers\\nlocket\\nlockets\\nlocking\\nlockjaw\\nlockjaws\\nlocknut\\nlocknuts\\nlockout\\nlockouts\\nlockram\\nlockrams\\nlocks\\nlocksmith\\nlocksmiths\\nlockstep\\nlocksteps\\nlockup\\nlockups\\nloco\\nlocoed\\nlocoes\\nlocofoco\\nlocofocos\\nlocoing\\nlocoism\\nlocoisms\\nlocomote\\nlocomoted\\nlocomotes\\nlocomoting\\nlocomotion\\nlocomotions\\nlocomotive\\nlocomotives\\nlocos\\nlocoweed\\nlocoweeds\\nlocular\\nloculate\\nlocule\\nloculed\\nlocules\\nloculi\\nloculus\\nlocum\\nlocums\\nlocus\\nlocust\\nlocusta\\nlocustae\\nlocustal\\nlocusts\\nlocution\\nlocutions\\nlocutories\\nlocutory\\nlode\\nloden\\nlodens\\nlodes\\nlodestar\\nlodestars\\nlodge\\nlodged\\nlodgement\\nlodgements\\nlodger\\nlodgers\\nlodges\\nlodging\\nlodgings\\nlodgment\\nlodgments\\nlodicule\\nlodicules\\nloess\\nloessal\\nloesses\\nloessial\\nloft\\nlofted\\nlofter\\nlofters\\nloftier\\nloftiest\\nloftily\\nloftiness\\nloftinesses\\nlofting\\nloftless\\nlofts\\nlofty\\nlog\\nlogan\\nlogans\\nlogarithm\\nlogarithmic\\nlogarithms\\nlogbook\\nlogbooks\\nloge\\nloges\\nloggats\\nlogged\\nlogger\\nloggerhead\\nloggerheads\\nloggers\\nloggets\\nloggia\\nloggias\\nloggie\\nloggier\\nloggiest\\nlogging\\nloggings\\nloggy\\nlogia\\nlogic\\nlogical\\nlogically\\nlogician\\nlogicians\\nlogicise\\nlogicised\\nlogicises\\nlogicising\\nlogicize\\nlogicized\\nlogicizes\\nlogicizing\\nlogics\\nlogier\\nlogiest\\nlogily\\nloginess\\nloginesses\\nlogion\\nlogions\\nlogistic\\nlogistical\\nlogistics\\nlogjam\\nlogjams\\nlogo\\nlogogram\\nlogograms\\nlogoi\\nlogomach\\nlogomachs\\nlogos\\nlogotype\\nlogotypes\\nlogotypies\\nlogotypy\\nlogroll\\nlogrolled\\nlogrolling\\nlogrolls\\nlogs\\nlogway\\nlogways\\nlogwood\\nlogwoods\\nlogy\\nloin\\nloins\\nloiter\\nloitered\\nloiterer\\nloiterers\\nloitering\\nloiters\\nloll\\nlolled\\nloller\\nlollers\\nlollies\\nlolling\\nlollipop\\nlollipops\\nlollop\\nlolloped\\nlolloping\\nlollops\\nlolls\\nlolly\\nlollygag\\nlollygagged\\nlollygagging\\nlollygags\\nlollypop\\nlollypops\\nloment\\nlomenta\\nloments\\nlomentum\\nlomentums\\nlone\\nlonelier\\nloneliest\\nlonelily\\nloneliness\\nlonelinesses\\nlonely\\nloneness\\nlonenesses\\nloner\\nloners\\nlonesome\\nlonesomely\\nlonesomeness\\nlonesomenesses\\nlonesomes\\nlong\\nlongan\\nlongans\\nlongboat\\nlongboats\\nlongbow\\nlongbows\\nlonge\\nlonged\\nlongeing\\nlonger\\nlongeron\\nlongerons\\nlongers\\nlonges\\nlongest\\nlongevities\\nlongevity\\nlonghair\\nlonghairs\\nlonghand\\nlonghands\\nlonghead\\nlongheads\\nlonghorn\\nlonghorns\\nlonging\\nlongingly\\nlongings\\nlongish\\nlongitude\\nlongitudes\\nlongitudinal\\nlongitudinally\\nlongleaf\\nlongleaves\\nlongline\\nlonglines\\nlongly\\nlongness\\nlongnesses\\nlongs\\nlongship\\nlongships\\nlongshoreman\\nlongshoremen\\nlongsome\\nlongspur\\nlongspurs\\nlongtime\\nlongueur\\nlongueurs\\nlongways\\nlongwise\\nloo\\nloobies\\nlooby\\nlooed\\nlooey\\nlooeys\\nloof\\nloofa\\nloofah\\nloofahs\\nloofas\\nloofs\\nlooie\\nlooies\\nlooing\\nlook\\nlookdown\\nlookdowns\\nlooked\\nlooker\\nlookers\\nlooking\\nlookout\\nlookouts\\nlooks\\nlookup\\nlookups\\nloom\\nloomed\\nlooming\\nlooms\\nloon\\nlooney\\nloonier\\nloonies\\nlooniest\\nloons\\nloony\\nloop\\nlooped\\nlooper\\nloopers\\nloophole\\nloopholed\\nloopholes\\nloopholing\\nloopier\\nloopiest\\nlooping\\nloops\\nloopy\\nloos\\nloose\\nloosed\\nlooseleaf\\nlooseleafs\\nloosely\\nloosen\\nloosened\\nloosener\\nlooseners\\nlooseness\\nloosenesses\\nloosening\\nloosens\\nlooser\\nlooses\\nloosest\\nloosing\\nloot\\nlooted\\nlooter\\nlooters\\nlooting\\nloots\\nlop\\nlope\\nloped\\nloper\\nlopers\\nlopes\\nloping\\nlopped\\nlopper\\nloppered\\nloppering\\nloppers\\nloppier\\nloppiest\\nlopping\\nloppy\\nlops\\nlopsided\\nlopsidedly\\nlopsidedness\\nlopsidednesses\\nlopstick\\nlopsticks\\nloquacious\\nloquacities\\nloquacity\\nloquat\\nloquats\\nloral\\nloran\\nlorans\\nlord\\nlorded\\nlording\\nlordings\\nlordless\\nlordlier\\nlordliest\\nlordlike\\nlordling\\nlordlings\\nlordly\\nlordoma\\nlordomas\\nlordoses\\nlordosis\\nlordotic\\nlords\\nlordship\\nlordships\\nlordy\\nlore\\nloreal\\nlores\\nlorgnon\\nlorgnons\\nlorica\\nloricae\\nloricate\\nloricates\\nlories\\nlorikeet\\nlorikeets\\nlorimer\\nlorimers\\nloriner\\nloriners\\nloris\\nlorises\\nlorn\\nlornness\\nlornnesses\\nlorries\\nlorry\\nlory\\nlosable\\nlose\\nlosel\\nlosels\\nloser\\nlosers\\nloses\\nlosing\\nlosingly\\nlosings\\nloss\\nlosses\\nlossy\\nlost\\nlostness\\nlostnesses\\nlot\\nlota\\nlotah\\nlotahs\\nlotas\\nloth\\nlothario\\nlotharios\\nlothsome\\nlotic\\nlotion\\nlotions\\nlotos\\nlotoses\\nlots\\nlotted\\nlotteries\\nlottery\\nlotting\\nlotto\\nlottos\\nlotus\\nlotuses\\nloud\\nlouden\\nloudened\\nloudening\\nloudens\\nlouder\\nloudest\\nloudish\\nloudlier\\nloudliest\\nloudly\\nloudness\\nloudnesses\\nloudspeaker\\nloudspeakers\\nlough\\nloughs\\nlouie\\nlouies\\nlouis\\nlounge\\nlounged\\nlounger\\nloungers\\nlounges\\nlounging\\nloungy\\nloup\\nloupe\\nlouped\\nloupen\\nloupes\\nlouping\\nloups\\nlour\\nloured\\nlouring\\nlours\\nloury\\nlouse\\nloused\\nlouses\\nlousier\\nlousiest\\nlousily\\nlousiness\\nlousinesses\\nlousing\\nlousy\\nlout\\nlouted\\nlouting\\nloutish\\nloutishly\\nlouts\\nlouver\\nlouvered\\nlouvers\\nlouvre\\nlouvres\\nlovable\\nlovably\\nlovage\\nlovages\\nlove\\nloveable\\nloveably\\nlovebird\\nlovebirds\\nloved\\nloveless\\nlovelier\\nlovelies\\nloveliest\\nlovelily\\nloveliness\\nlovelinesses\\nlovelock\\nlovelocks\\nlovelorn\\nlovely\\nlover\\nloverly\\nlovers\\nloves\\nlovesick\\nlovesome\\nlovevine\\nlovevines\\nloving\\nlovingly\\nlow\\nlowborn\\nlowboy\\nlowboys\\nlowbred\\nlowbrow\\nlowbrows\\nlowdown\\nlowdowns\\nlowe\\nlowed\\nlower\\nlowercase\\nlowered\\nlowering\\nlowers\\nlowery\\nlowes\\nlowest\\nlowing\\nlowings\\nlowish\\nlowland\\nlowlands\\nlowlier\\nlowliest\\nlowlife\\nlowlifes\\nlowliness\\nlowlinesses\\nlowly\\nlown\\nlowness\\nlownesses\\nlows\\nlowse\\nlox\\nloxed\\nloxes\\nloxing\\nloyal\\nloyaler\\nloyalest\\nloyalism\\nloyalisms\\nloyalist\\nloyalists\\nloyally\\nloyalties\\nloyalty\\nlozenge\\nlozenges\\nluau\\nluaus\\nlubber\\nlubberly\\nlubbers\\nlube\\nlubes\\nlubric\\nlubricant\\nlubricants\\nlubricate\\nlubricated\\nlubricates\\nlubricating\\nlubrication\\nlubrications\\nlubricator\\nlubricators\\nlucarne\\nlucarnes\\nluce\\nlucence\\nlucences\\nlucencies\\nlucency\\nlucent\\nlucently\\nlucern\\nlucerne\\nlucernes\\nlucerns\\nluces\\nlucid\\nlucidities\\nlucidity\\nlucidly\\nlucidness\\nlucidnesses\\nlucifer\\nlucifers\\nluck\\nlucked\\nluckie\\nluckier\\nluckies\\nluckiest\\nluckily\\nluckiness\\nluckinesses\\nlucking\\nluckless\\nlucks\\nlucky\\nlucrative\\nlucratively\\nlucrativeness\\nlucrativenesses\\nlucre\\nlucres\\nluculent\\nludicrous\\nludicrously\\nludicrousness\\nludicrousnesses\\nlues\\nluetic\\nluetics\\nluff\\nluffa\\nluffas\\nluffed\\nluffing\\nluffs\\nlug\\nluge\\nluges\\nluggage\\nluggages\\nlugged\\nlugger\\nluggers\\nluggie\\nluggies\\nlugging\\nlugs\\nlugsail\\nlugsails\\nlugubrious\\nlugubriously\\nlugubriousness\\nlugubriousnesses\\nlugworm\\nlugworms\\nlukewarm\\nlull\\nlullabied\\nlullabies\\nlullaby\\nlullabying\\nlulled\\nlulling\\nlulls\\nlulu\\nlulus\\nlum\\nlumbago\\nlumbagos\\nlumbar\\nlumbars\\nlumber\\nlumbered\\nlumberer\\nlumberers\\nlumbering\\nlumberjack\\nlumberjacks\\nlumberman\\nlumbermen\\nlumbers\\nlumberyard\\nlumberyards\\nlumen\\nlumenal\\nlumens\\nlumina\\nluminal\\nluminance\\nluminances\\nluminaries\\nluminary\\nluminescence\\nluminescences\\nluminescent\\nluminist\\nluminists\\nluminosities\\nluminosity\\nluminous\\nluminously\\nlummox\\nlummoxes\\nlump\\nlumped\\nlumpen\\nlumpens\\nlumper\\nlumpers\\nlumpfish\\nlumpfishes\\nlumpier\\nlumpiest\\nlumpily\\nlumping\\nlumpish\\nlumps\\nlumpy\\nlums\\nluna\\nlunacies\\nlunacy\\nlunar\\nlunarian\\nlunarians\\nlunars\\nlunas\\nlunate\\nlunated\\nlunately\\nlunatic\\nlunatics\\nlunation\\nlunations\\nlunch\\nlunched\\nluncheon\\nluncheons\\nluncher\\nlunchers\\nlunches\\nlunching\\nlune\\nlunes\\nlunet\\nlunets\\nlunette\\nlunettes\\nlung\\nlungan\\nlungans\\nlunge\\nlunged\\nlungee\\nlungees\\nlunger\\nlungers\\nlunges\\nlungfish\\nlungfishes\\nlungi\\nlunging\\nlungis\\nlungs\\nlungworm\\nlungworms\\nlungwort\\nlungworts\\nlungyi\\nlungyis\\nlunier\\nlunies\\nluniest\\nlunk\\nlunker\\nlunkers\\nlunkhead\\nlunkheads\\nlunks\\nlunt\\nlunted\\nlunting\\nlunts\\nlunula\\nlunulae\\nlunular\\nlunulate\\nlunule\\nlunules\\nluny\\nlupanar\\nlupanars\\nlupin\\nlupine\\nlupines\\nlupins\\nlupous\\nlupulin\\nlupulins\\nlupus\\nlupuses\\nlurch\\nlurched\\nlurcher\\nlurchers\\nlurches\\nlurching\\nlurdan\\nlurdane\\nlurdanes\\nlurdans\\nlure\\nlured\\nlurer\\nlurers\\nlures\\nlurid\\nluridly\\nluring\\nlurk\\nlurked\\nlurker\\nlurkers\\nlurking\\nlurks\\nluscious\\nlusciously\\nlusciousness\\nlusciousnesses\\nlush\\nlushed\\nlusher\\nlushes\\nlushest\\nlushing\\nlushly\\nlushness\\nlushnesses\\nlust\\nlusted\\nluster\\nlustered\\nlustering\\nlusterless\\nlusters\\nlustful\\nlustier\\nlustiest\\nlustily\\nlustiness\\nlustinesses\\nlusting\\nlustra\\nlustral\\nlustrate\\nlustrated\\nlustrates\\nlustrating\\nlustre\\nlustred\\nlustres\\nlustring\\nlustrings\\nlustrous\\nlustrum\\nlustrums\\nlusts\\nlusty\\nlusus\\nlususes\\nlutanist\\nlutanists\\nlute\\nlutea\\nluteal\\nlutecium\\nluteciums\\nluted\\nlutein\\nluteins\\nlutenist\\nlutenists\\nluteolin\\nluteolins\\nluteous\\nlutes\\nlutetium\\nlutetiums\\nluteum\\nluthern\\nlutherns\\nluting\\nlutings\\nlutist\\nlutists\\nlux\\nluxate\\nluxated\\nluxates\\nluxating\\nluxation\\nluxations\\nluxe\\nluxes\\nluxuriance\\nluxuriances\\nluxuriant\\nluxuriantly\\nluxuriate\\nluxuriated\\nluxuriates\\nluxuriating\\nluxuries\\nluxurious\\nluxuriously\\nluxury\\nlyard\\nlyart\\nlyase\\nlyases\\nlycanthropies\\nlycanthropy\\nlycea\\nlycee\\nlycees\\nlyceum\\nlyceums\\nlychee\\nlychees\\nlychnis\\nlychnises\\nlycopene\\nlycopenes\\nlycopod\\nlycopods\\nlyddite\\nlyddites\\nlye\\nlyes\\nlying\\nlyingly\\nlyings\\nlymph\\nlymphatic\\nlymphocytopenia\\nlymphocytosis\\nlymphoid\\nlymphoma\\nlymphomas\\nlymphomata\\nlymphs\\nlyncean\\nlynch\\nlynched\\nlyncher\\nlynchers\\nlynches\\nlynching\\nlynchings\\nlynx\\nlynxes\\nlyophile\\nlyrate\\nlyrated\\nlyrately\\nlyre\\nlyrebird\\nlyrebirds\\nlyres\\nlyric\\nlyrical\\nlyricise\\nlyricised\\nlyricises\\nlyricising\\nlyricism\\nlyricisms\\nlyricist\\nlyricists\\nlyricize\\nlyricized\\nlyricizes\\nlyricizing\\nlyrics\\nlyriform\\nlyrism\\nlyrisms\\nlyrist\\nlyrists\\nlysate\\nlysates\\nlyse\\nlysed\\nlyses\\nlysin\\nlysine\\nlysines\\nlysing\\nlysins\\nlysis\\nlysogen\\nlysogenies\\nlysogens\\nlysogeny\\nlysosome\\nlysosomes\\nlysozyme\\nlysozymes\\nlyssa\\nlyssas\\nlytic\\nlytta\\nlyttae\\nlyttas\\nma\\nmaar\\nmaars\\nmac\\nmacaber\\nmacabre\\nmacaco\\nmacacos\\nmacadam\\nmacadamize\\nmacadamized\\nmacadamizes\\nmacadamizing\\nmacadams\\nmacaque\\nmacaques\\nmacaroni\\nmacaronies\\nmacaronis\\nmacaroon\\nmacaroons\\nmacaw\\nmacaws\\nmaccabaw\\nmaccabaws\\nmaccaboy\\nmaccaboys\\nmacchia\\nmacchie\\nmaccoboy\\nmaccoboys\\nmace\\nmaced\\nmacer\\nmacerate\\nmacerated\\nmacerates\\nmacerating\\nmacers\\nmaces\\nmach\\nmachete\\nmachetes\\nmachinate\\nmachinated\\nmachinates\\nmachinating\\nmachination\\nmachinations\\nmachine\\nmachineable\\nmachined\\nmachineries\\nmachinery\\nmachines\\nmachining\\nmachinist\\nmachinists\\nmachismo\\nmachismos\\nmacho\\nmachos\\nmachree\\nmachrees\\nmachs\\nmachzor\\nmachzorim\\nmachzors\\nmacing\\nmack\\nmackerel\\nmackerels\\nmackinaw\\nmackinaws\\nmackle\\nmackled\\nmackles\\nmackling\\nmacks\\nmacle\\nmacled\\nmacles\\nmacrame\\nmacrames\\nmacro\\nmacrocosm\\nmacrocosms\\nmacron\\nmacrons\\nmacros\\nmacrural\\nmacruran\\nmacrurans\\nmacs\\nmacula\\nmaculae\\nmacular\\nmaculas\\nmaculate\\nmaculated\\nmaculates\\nmaculating\\nmacule\\nmaculed\\nmacules\\nmaculing\\nmad\\nmadam\\nmadame\\nmadames\\nmadams\\nmadcap\\nmadcaps\\nmadded\\nmadden\\nmaddened\\nmaddening\\nmaddens\\nmadder\\nmadders\\nmaddest\\nmadding\\nmaddish\\nmade\\nmadeira\\nmadeiras\\nmademoiselle\\nmademoiselles\\nmadhouse\\nmadhouses\\nmadly\\nmadman\\nmadmen\\nmadness\\nmadnesses\\nmadonna\\nmadonnas\\nmadras\\nmadrases\\nmadre\\nmadres\\nmadrigal\\nmadrigals\\nmadrona\\nmadronas\\nmadrone\\nmadrones\\nmadrono\\nmadronos\\nmads\\nmaduro\\nmaduros\\nmadwoman\\nmadwomen\\nmadwort\\nmadworts\\nmadzoon\\nmadzoons\\nmae\\nmaelstrom\\nmaelstroms\\nmaenad\\nmaenades\\nmaenadic\\nmaenads\\nmaes\\nmaestoso\\nmaestosos\\nmaestri\\nmaestro\\nmaestros\\nmaffia\\nmaffias\\nmaffick\\nmafficked\\nmafficking\\nmafficks\\nmafia\\nmafias\\nmafic\\nmafiosi\\nmafioso\\nmaftir\\nmaftirs\\nmag\\nmagazine\\nmagazines\\nmagdalen\\nmagdalens\\nmage\\nmagenta\\nmagentas\\nmages\\nmagestical\\nmagestically\\nmaggot\\nmaggots\\nmaggoty\\nmagi\\nmagic\\nmagical\\nmagically\\nmagician\\nmagicians\\nmagicked\\nmagicking\\nmagics\\nmagilp\\nmagilps\\nmagister\\nmagisterial\\nmagisters\\nmagistracies\\nmagistracy\\nmagistrate\\nmagistrates\\nmagma\\nmagmas\\nmagmata\\nmagmatic\\nmagnanimities\\nmagnanimity\\nmagnanimous\\nmagnanimously\\nmagnanimousness\\nmagnanimousnesses\\nmagnate\\nmagnates\\nmagnesia\\nmagnesias\\nmagnesic\\nmagnesium\\nmagnesiums\\nmagnet\\nmagnetic\\nmagnetically\\nmagnetics\\nmagnetism\\nmagnetisms\\nmagnetite\\nmagnetites\\nmagnetizable\\nmagnetization\\nmagnetizations\\nmagnetize\\nmagnetized\\nmagnetizer\\nmagnetizers\\nmagnetizes\\nmagnetizing\\nmagneto\\nmagneton\\nmagnetons\\nmagnetos\\nmagnets\\nmagnific\\nmagnification\\nmagnifications\\nmagnificence\\nmagnificences\\nmagnificent\\nmagnificently\\nmagnified\\nmagnifier\\nmagnifiers\\nmagnifies\\nmagnify\\nmagnifying\\nmagnitude\\nmagnitudes\\nmagnolia\\nmagnolias\\nmagnum\\nmagnums\\nmagot\\nmagots\\nmagpie\\nmagpies\\nmags\\nmaguey\\nmagueys\\nmagus\\nmaharaja\\nmaharajas\\nmaharani\\nmaharanis\\nmahatma\\nmahatmas\\nmahjong\\nmahjongg\\nmahjonggs\\nmahjongs\\nmahoe\\nmahoes\\nmahogonies\\nmahogony\\nmahonia\\nmahonias\\nmahout\\nmahouts\\nmahuang\\nmahuangs\\nmahzor\\nmahzorim\\nmahzors\\nmaid\\nmaiden\\nmaidenhair\\nmaidenhairs\\nmaidenhood\\nmaidenhoods\\nmaidenly\\nmaidens\\nmaidhood\\nmaidhoods\\nmaidish\\nmaids\\nmaieutic\\nmaigre\\nmaihem\\nmaihems\\nmail\\nmailable\\nmailbag\\nmailbags\\nmailbox\\nmailboxes\\nmaile\\nmailed\\nmailer\\nmailers\\nmailes\\nmailing\\nmailings\\nmaill\\nmailless\\nmaillot\\nmaillots\\nmaills\\nmailman\\nmailmen\\nmailperson\\nmailpersons\\nmails\\nmailwoman\\nmaim\\nmaimed\\nmaimer\\nmaimers\\nmaiming\\nmaims\\nmain\\nmainland\\nmainlands\\nmainline\\nmainlined\\nmainlines\\nmainlining\\nmainly\\nmainmast\\nmainmasts\\nmains\\nmainsail\\nmainsails\\nmainstay\\nmainstays\\nmainstream\\nmainstreams\\nmaintain\\nmaintainabilities\\nmaintainability\\nmaintainable\\nmaintainance\\nmaintainances\\nmaintained\\nmaintaining\\nmaintains\\nmaintenance\\nmaintenances\\nmaintop\\nmaintops\\nmaiolica\\nmaiolicas\\nmair\\nmairs\\nmaist\\nmaists\\nmaize\\nmaizes\\nmajagua\\nmajaguas\\nmajestic\\nmajesties\\nmajesty\\nmajolica\\nmajolicas\\nmajor\\nmajordomo\\nmajordomos\\nmajored\\nmajoring\\nmajorities\\nmajority\\nmajors\\nmakable\\nmakar\\nmakars\\nmake\\nmakeable\\nmakebate\\nmakebates\\nmakefast\\nmakefasts\\nmaker\\nmakers\\nmakes\\nmakeshift\\nmakeshifts\\nmakeup\\nmakeups\\nmakimono\\nmakimonos\\nmaking\\nmakings\\nmako\\nmakos\\nmakuta\\nmaladies\\nmaladjusted\\nmaladjustment\\nmaladjustments\\nmaladroit\\nmalady\\nmalaise\\nmalaises\\nmalamute\\nmalamutes\\nmalapert\\nmalaperts\\nmalaprop\\nmalapropism\\nmalapropisms\\nmalaprops\\nmalar\\nmalaria\\nmalarial\\nmalarian\\nmalarias\\nmalarkey\\nmalarkeys\\nmalarkies\\nmalarky\\nmalaroma\\nmalaromas\\nmalars\\nmalate\\nmalates\\nmalcontent\\nmalcontents\\nmale\\nmaleate\\nmaleates\\nmaledict\\nmaledicted\\nmaledicting\\nmalediction\\nmaledictions\\nmaledicts\\nmalefactor\\nmalefactors\\nmalefic\\nmaleficence\\nmaleficences\\nmaleficent\\nmalemiut\\nmalemiuts\\nmalemute\\nmalemutes\\nmaleness\\nmalenesses\\nmales\\nmalevolence\\nmalevolences\\nmalevolent\\nmalfeasance\\nmalfeasances\\nmalfed\\nmalformation\\nmalformations\\nmalformed\\nmalfunction\\nmalfunctioned\\nmalfunctioning\\nmalfunctions\\nmalgre\\nmalic\\nmalice\\nmalices\\nmalicious\\nmaliciously\\nmalign\\nmalignancies\\nmalignancy\\nmalignant\\nmalignantly\\nmaligned\\nmaligner\\nmaligners\\nmaligning\\nmalignities\\nmalignity\\nmalignly\\nmaligns\\nmalihini\\nmalihinis\\nmaline\\nmalines\\nmalinger\\nmalingered\\nmalingerer\\nmalingerers\\nmalingering\\nmalingers\\nmalison\\nmalisons\\nmalkin\\nmalkins\\nmall\\nmallard\\nmallards\\nmalleabilities\\nmalleability\\nmalleable\\nmalled\\nmallee\\nmallees\\nmallei\\nmalleoli\\nmallet\\nmallets\\nmalleus\\nmalling\\nmallow\\nmallows\\nmalls\\nmalm\\nmalmier\\nmalmiest\\nmalms\\nmalmsey\\nmalmseys\\nmalmy\\nmalnourished\\nmalnutrition\\nmalnutritions\\nmalodor\\nmalodorous\\nmalodorously\\nmalodorousness\\nmalodorousnesses\\nmalodors\\nmalposed\\nmalpractice\\nmalpractices\\nmalt\\nmaltase\\nmaltases\\nmalted\\nmaltha\\nmalthas\\nmaltier\\nmaltiest\\nmalting\\nmaltol\\nmaltols\\nmaltose\\nmaltoses\\nmaltreat\\nmaltreated\\nmaltreating\\nmaltreatment\\nmaltreatments\\nmaltreats\\nmalts\\nmaltster\\nmaltsters\\nmalty\\nmalvasia\\nmalvasias\\nmama\\nmamas\\nmamba\\nmambas\\nmambo\\nmamboed\\nmamboes\\nmamboing\\nmambos\\nmameluke\\nmamelukes\\nmamey\\nmameyes\\nmameys\\nmamie\\nmamies\\nmamluk\\nmamluks\\nmamma\\nmammae\\nmammal\\nmammalian\\nmammals\\nmammary\\nmammas\\nmammate\\nmammati\\nmammatus\\nmammee\\nmammees\\nmammer\\nmammered\\nmammering\\nmammers\\nmammet\\nmammets\\nmammey\\nmammeys\\nmammie\\nmammies\\nmammilla\\nmammillae\\nmammitides\\nmammitis\\nmammock\\nmammocked\\nmammocking\\nmammocks\\nmammon\\nmammons\\nmammoth\\nmammoths\\nmammy\\nman\\nmana\\nmanacle\\nmanacled\\nmanacles\\nmanacling\\nmanage\\nmanageabilities\\nmanageability\\nmanageable\\nmanageableness\\nmanageablenesses\\nmanageably\\nmanaged\\nmanagement\\nmanagemental\\nmanagements\\nmanager\\nmanagerial\\nmanagers\\nmanages\\nmanaging\\nmanakin\\nmanakins\\nmanana\\nmananas\\nmanas\\nmanatee\\nmanatees\\nmanatoid\\nmanche\\nmanches\\nmanchet\\nmanchets\\nmanciple\\nmanciples\\nmandala\\nmandalas\\nmandalic\\nmandamus\\nmandamused\\nmandamuses\\nmandamusing\\nmandarin\\nmandarins\\nmandate\\nmandated\\nmandates\\nmandating\\nmandator\\nmandators\\nmandatory\\nmandible\\nmandibles\\nmandibular\\nmandioca\\nmandiocas\\nmandola\\nmandolas\\nmandolin\\nmandolins\\nmandrake\\nmandrakes\\nmandrel\\nmandrels\\nmandril\\nmandrill\\nmandrills\\nmandrils\\nmane\\nmaned\\nmanege\\nmaneges\\nmaneless\\nmanes\\nmaneuver\\nmaneuverabilities\\nmaneuverability\\nmaneuvered\\nmaneuvering\\nmaneuvers\\nmanful\\nmanfully\\nmangabey\\nmangabeys\\nmangabies\\nmangaby\\nmanganese\\nmanganeses\\nmanganesian\\nmanganic\\nmange\\nmangel\\nmangels\\nmanger\\nmangers\\nmanges\\nmangey\\nmangier\\nmangiest\\nmangily\\nmangle\\nmangled\\nmangler\\nmanglers\\nmangles\\nmangling\\nmango\\nmangoes\\nmangold\\nmangolds\\nmangonel\\nmangonels\\nmangos\\nmangrove\\nmangroves\\nmangy\\nmanhandle\\nmanhandled\\nmanhandles\\nmanhandling\\nmanhole\\nmanholes\\nmanhood\\nmanhoods\\nmanhunt\\nmanhunts\\nmania\\nmaniac\\nmaniacal\\nmaniacs\\nmanias\\nmanic\\nmanics\\nmanicure\\nmanicured\\nmanicures\\nmanicuring\\nmanicurist\\nmanicurists\\nmanifest\\nmanifestation\\nmanifestations\\nmanifested\\nmanifesting\\nmanifestly\\nmanifesto\\nmanifestos\\nmanifests\\nmanifold\\nmanifolded\\nmanifolding\\nmanifolds\\nmanihot\\nmanihots\\nmanikin\\nmanikins\\nmanila\\nmanilas\\nmanilla\\nmanillas\\nmanille\\nmanilles\\nmanioc\\nmanioca\\nmaniocas\\nmaniocs\\nmaniple\\nmaniples\\nmanipulate\\nmanipulated\\nmanipulates\\nmanipulating\\nmanipulation\\nmanipulations\\nmanipulative\\nmanipulator\\nmanipulators\\nmanito\\nmanitos\\nmanitou\\nmanitous\\nmanitu\\nmanitus\\nmankind\\nmanless\\nmanlier\\nmanliest\\nmanlike\\nmanlily\\nmanly\\nmanmade\\nmanna\\nmannan\\nmannans\\nmannas\\nmanned\\nmannequin\\nmannequins\\nmanner\\nmannered\\nmannerism\\nmannerisms\\nmannerliness\\nmannerlinesses\\nmannerly\\nmanners\\nmannikin\\nmannikins\\nmanning\\nmannish\\nmannishly\\nmannishness\\nmannishnesses\\nmannite\\nmannites\\nmannitic\\nmannitol\\nmannitols\\nmannose\\nmannoses\\nmano\\nmanor\\nmanorial\\nmanorialism\\nmanorialisms\\nmanors\\nmanos\\nmanpack\\nmanpower\\nmanpowers\\nmanque\\nmanrope\\nmanropes\\nmans\\nmansard\\nmansards\\nmanse\\nmanservant\\nmanses\\nmansion\\nmansions\\nmanslaughter\\nmanslaughters\\nmanta\\nmantas\\nmanteau\\nmanteaus\\nmanteaux\\nmantel\\nmantelet\\nmantelets\\nmantels\\nmantes\\nmantic\\nmantid\\nmantids\\nmantilla\\nmantillas\\nmantis\\nmantises\\nmantissa\\nmantissas\\nmantle\\nmantled\\nmantles\\nmantlet\\nmantlets\\nmantling\\nmantlings\\nmantra\\nmantrap\\nmantraps\\nmantras\\nmantua\\nmantuas\\nmanual\\nmanually\\nmanuals\\nmanuary\\nmanubria\\nmanufacture\\nmanufactured\\nmanufacturer\\nmanufacturers\\nmanufactures\\nmanufacturing\\nmanumit\\nmanumits\\nmanumitted\\nmanumitting\\nmanure\\nmanured\\nmanurer\\nmanurers\\nmanures\\nmanurial\\nmanuring\\nmanus\\nmanuscript\\nmanuscripts\\nmanward\\nmanwards\\nmanwise\\nmany\\nmanyfold\\nmap\\nmaple\\nmaples\\nmapmaker\\nmapmakers\\nmappable\\nmapped\\nmapper\\nmappers\\nmapping\\nmappings\\nmaps\\nmaquette\\nmaquettes\\nmaqui\\nmaquis\\nmar\\nmarabou\\nmarabous\\nmarabout\\nmarabouts\\nmaraca\\nmaracas\\nmaranta\\nmarantas\\nmarasca\\nmarascas\\nmaraschino\\nmaraschinos\\nmarasmic\\nmarasmus\\nmarasmuses\\nmarathon\\nmarathons\\nmaraud\\nmarauded\\nmarauder\\nmarauders\\nmarauding\\nmarauds\\nmaravedi\\nmaravedis\\nmarble\\nmarbled\\nmarbler\\nmarblers\\nmarbles\\nmarblier\\nmarbliest\\nmarbling\\nmarblings\\nmarbly\\nmarc\\nmarcel\\nmarcelled\\nmarcelling\\nmarcels\\nmarch\\nmarched\\nmarchen\\nmarcher\\nmarchers\\nmarches\\nmarchesa\\nmarchese\\nmarchesi\\nmarching\\nmarchioness\\nmarchionesses\\nmarcs\\nmare\\nmaremma\\nmaremme\\nmares\\nmargaric\\nmargarin\\nmargarine\\nmargarines\\nmargarins\\nmargay\\nmargays\\nmarge\\nmargent\\nmargented\\nmargenting\\nmargents\\nmarges\\nmargin\\nmarginal\\nmarginally\\nmargined\\nmargining\\nmargins\\nmargrave\\nmargraves\\nmaria\\nmariachi\\nmariachis\\nmarigold\\nmarigolds\\nmarihuana\\nmarihuanas\\nmarijuana\\nmarijuanas\\nmarimba\\nmarimbas\\nmarina\\nmarinade\\nmarinaded\\nmarinades\\nmarinading\\nmarinara\\nmarinaras\\nmarinas\\nmarinate\\nmarinated\\nmarinates\\nmarinating\\nmarine\\nmariner\\nmariners\\nmarines\\nmarionette\\nmarionettes\\nmariposa\\nmariposas\\nmarish\\nmarishes\\nmarital\\nmaritime\\nmarjoram\\nmarjorams\\nmark\\nmarkdown\\nmarkdowns\\nmarked\\nmarkedly\\nmarker\\nmarkers\\nmarket\\nmarketable\\nmarketech\\nmarketed\\nmarketer\\nmarketers\\nmarketing\\nmarketplace\\nmarketplaces\\nmarkets\\nmarkhoor\\nmarkhoors\\nmarkhor\\nmarkhors\\nmarking\\nmarkings\\nmarkka\\nmarkkaa\\nmarkkas\\nmarks\\nmarksman\\nmarksmanship\\nmarksmanships\\nmarksmen\\nmarkup\\nmarkups\\nmarl\\nmarled\\nmarlier\\nmarliest\\nmarlin\\nmarline\\nmarlines\\nmarling\\nmarlings\\nmarlins\\nmarlite\\nmarlites\\nmarlitic\\nmarls\\nmarly\\nmarmalade\\nmarmalades\\nmarmite\\nmarmites\\nmarmoset\\nmarmosets\\nmarmot\\nmarmots\\nmaroon\\nmarooned\\nmarooning\\nmaroons\\nmarplot\\nmarplots\\nmarque\\nmarquee\\nmarquees\\nmarques\\nmarquess\\nmarquesses\\nmarquis\\nmarquise\\nmarquises\\nmarram\\nmarrams\\nmarred\\nmarrer\\nmarrers\\nmarriage\\nmarriageable\\nmarriages\\nmarried\\nmarrieds\\nmarrier\\nmarriers\\nmarries\\nmarring\\nmarron\\nmarrons\\nmarrow\\nmarrowed\\nmarrowing\\nmarrows\\nmarrowy\\nmarry\\nmarrying\\nmars\\nmarse\\nmarses\\nmarsh\\nmarshal\\nmarshaled\\nmarshaling\\nmarshall\\nmarshalled\\nmarshalling\\nmarshalls\\nmarshals\\nmarshes\\nmarshier\\nmarshiest\\nmarshmallow\\nmarshmallows\\nmarshy\\nmarsupia\\nmarsupial\\nmarsupials\\nmart\\nmartagon\\nmartagons\\nmarted\\nmartello\\nmartellos\\nmarten\\nmartens\\nmartial\\nmartian\\nmartians\\nmartin\\nmartinet\\nmartinets\\nmarting\\nmartini\\nmartinis\\nmartins\\nmartlet\\nmartlets\\nmarts\\nmartyr\\nmartyrdom\\nmartyrdoms\\nmartyred\\nmartyries\\nmartyring\\nmartyrly\\nmartyrs\\nmartyry\\nmarvel\\nmarveled\\nmarveling\\nmarvelled\\nmarvelling\\nmarvellous\\nmarvelous\\nmarvelously\\nmarvelousness\\nmarvelousnesses\\nmarvels\\nmarzipan\\nmarzipans\\nmas\\nmascara\\nmascaras\\nmascon\\nmascons\\nmascot\\nmascots\\nmasculine\\nmasculinities\\nmasculinity\\nmasculinization\\nmasculinizations\\nmaser\\nmasers\\nmash\\nmashed\\nmasher\\nmashers\\nmashes\\nmashie\\nmashies\\nmashing\\nmashy\\nmasjid\\nmasjids\\nmask\\nmaskable\\nmasked\\nmaskeg\\nmaskegs\\nmasker\\nmaskers\\nmasking\\nmaskings\\nmasklike\\nmasks\\nmasochism\\nmasochisms\\nmasochist\\nmasochistic\\nmasochists\\nmason\\nmasoned\\nmasonic\\nmasoning\\nmasonries\\nmasonry\\nmasons\\nmasque\\nmasquer\\nmasquerade\\nmasqueraded\\nmasquerader\\nmasqueraders\\nmasquerades\\nmasquerading\\nmasquers\\nmasques\\nmass\\nmassa\\nmassachusetts\\nmassacre\\nmassacred\\nmassacres\\nmassacring\\nmassage\\nmassaged\\nmassager\\nmassagers\\nmassages\\nmassaging\\nmassas\\nmasse\\nmassed\\nmassedly\\nmasses\\nmasseter\\nmasseters\\nmasseur\\nmasseurs\\nmasseuse\\nmasseuses\\nmassicot\\nmassicots\\nmassier\\nmassiest\\nmassif\\nmassifs\\nmassing\\nmassive\\nmassiveness\\nmassivenesses\\nmassless\\nmasslessness\\nmasslessnesses\\nmassy\\nmast\\nmastaba\\nmastabah\\nmastabahs\\nmastabas\\nmastectomies\\nmastectomy\\nmasted\\nmaster\\nmastered\\nmasterful\\nmasterfully\\nmasteries\\nmastering\\nmasterly\\nmastermind\\nmasterminds\\nmasters\\nmastership\\nmasterships\\nmasterwork\\nmasterworks\\nmastery\\nmasthead\\nmastheaded\\nmastheading\\nmastheads\\nmastic\\nmasticate\\nmasticated\\nmasticates\\nmasticating\\nmastication\\nmastications\\nmastiche\\nmastiches\\nmastics\\nmastiff\\nmastiffs\\nmasting\\nmastitic\\nmastitides\\nmastitis\\nmastix\\nmastixes\\nmastless\\nmastlike\\nmastodon\\nmastodons\\nmastoid\\nmastoids\\nmasts\\nmasturbate\\nmasturbated\\nmasturbates\\nmasturbating\\nmasturbation\\nmasturbations\\nmasurium\\nmasuriums\\nmat\\nmatador\\nmatadors\\nmatch\\nmatchbox\\nmatchboxes\\nmatched\\nmatcher\\nmatchers\\nmatches\\nmatching\\nmatchless\\nmatchmaker\\nmatchmakers\\nmate\\nmated\\nmateless\\nmatelote\\nmatelotes\\nmater\\nmaterial\\nmaterialism\\nmaterialisms\\nmaterialist\\nmaterialistic\\nmaterialists\\nmaterialization\\nmaterializations\\nmaterialize\\nmaterialized\\nmaterializes\\nmaterializing\\nmaterially\\nmaterials\\nmateriel\\nmateriels\\nmaternal\\nmaternally\\nmaternities\\nmaternity\\nmaters\\nmates\\nmateship\\nmateships\\nmatey\\nmateys\\nmath\\nmathematical\\nmathematically\\nmathematician\\nmathematicians\\nmathematics\\nmaths\\nmatilda\\nmatildas\\nmatin\\nmatinal\\nmatinee\\nmatinees\\nmatiness\\nmatinesses\\nmating\\nmatings\\nmatins\\nmatless\\nmatrass\\nmatrasses\\nmatres\\nmatriarch\\nmatriarchal\\nmatriarches\\nmatriarchies\\nmatriarchy\\nmatrices\\nmatricidal\\nmatricide\\nmatricides\\nmatriculate\\nmatriculated\\nmatriculates\\nmatriculating\\nmatriculation\\nmatriculations\\nmatrimonial\\nmatrimonially\\nmatrimonies\\nmatrimony\\nmatrix\\nmatrixes\\nmatron\\nmatronal\\nmatronly\\nmatrons\\nmats\\nmatt\\nmatte\\nmatted\\nmattedly\\nmatter\\nmattered\\nmattering\\nmatters\\nmattery\\nmattes\\nmattin\\nmatting\\nmattings\\nmattins\\nmattock\\nmattocks\\nmattoid\\nmattoids\\nmattrass\\nmattrasses\\nmattress\\nmattresses\\nmatts\\nmaturate\\nmaturated\\nmaturates\\nmaturating\\nmaturation\\nmaturational\\nmaturations\\nmaturative\\nmature\\nmatured\\nmaturely\\nmaturer\\nmatures\\nmaturest\\nmaturing\\nmaturities\\nmaturity\\nmatza\\nmatzah\\nmatzahs\\nmatzas\\nmatzo\\nmatzoh\\nmatzohs\\nmatzoon\\nmatzoons\\nmatzos\\nmatzot\\nmatzoth\\nmaudlin\\nmauger\\nmaugre\\nmaul\\nmauled\\nmauler\\nmaulers\\nmauling\\nmauls\\nmaumet\\nmaumetries\\nmaumetry\\nmaumets\\nmaun\\nmaund\\nmaunder\\nmaundered\\nmaundering\\nmaunders\\nmaundies\\nmaunds\\nmaundy\\nmausolea\\nmausoleum\\nmausoleums\\nmaut\\nmauts\\nmauve\\nmauves\\nmaven\\nmavens\\nmaverick\\nmavericks\\nmavie\\nmavies\\nmavin\\nmavins\\nmavis\\nmavises\\nmaw\\nmawed\\nmawing\\nmawkish\\nmawkishly\\nmawkishness\\nmawkishnesses\\nmawn\\nmaws\\nmaxi\\nmaxicoat\\nmaxicoats\\nmaxilla\\nmaxillae\\nmaxillas\\nmaxim\\nmaxima\\nmaximal\\nmaximals\\nmaximin\\nmaximins\\nmaximise\\nmaximised\\nmaximises\\nmaximising\\nmaximite\\nmaximites\\nmaximize\\nmaximized\\nmaximizes\\nmaximizing\\nmaxims\\nmaximum\\nmaximums\\nmaxis\\nmaxixe\\nmaxixes\\nmaxwell\\nmaxwells\\nmay\\nmaya\\nmayan\\nmayapple\\nmayapples\\nmayas\\nmaybe\\nmaybush\\nmaybushes\\nmayday\\nmaydays\\nmayed\\nmayest\\nmayflies\\nmayflower\\nmayflowers\\nmayfly\\nmayhap\\nmayhem\\nmayhems\\nmaying\\nmayings\\nmayonnaise\\nmayonnaises\\nmayor\\nmayoral\\nmayoralties\\nmayoralty\\nmayoress\\nmayoresses\\nmayors\\nmaypole\\nmaypoles\\nmaypop\\nmaypops\\nmays\\nmayst\\nmayvin\\nmayvins\\nmayweed\\nmayweeds\\nmazaedia\\nmazard\\nmazards\\nmaze\\nmazed\\nmazedly\\nmazelike\\nmazer\\nmazers\\nmazes\\nmazier\\nmaziest\\nmazily\\nmaziness\\nmazinesses\\nmazing\\nmazourka\\nmazourkas\\nmazuma\\nmazumas\\nmazurka\\nmazurkas\\nmazy\\nmazzard\\nmazzards\\nmbira\\nmbiras\\nmccaffrey\\nme\\nmead\\nmeadow\\nmeadowland\\nmeadowlands\\nmeadowlark\\nmeadowlarks\\nmeadows\\nmeadowy\\nmeads\\nmeager\\nmeagerly\\nmeagerness\\nmeagernesses\\nmeagre\\nmeagrely\\nmeal\\nmealie\\nmealier\\nmealies\\nmealiest\\nmealless\\nmeals\\nmealtime\\nmealtimes\\nmealworm\\nmealworms\\nmealy\\nmealybug\\nmealybugs\\nmean\\nmeander\\nmeandered\\nmeandering\\nmeanders\\nmeaner\\nmeaners\\nmeanest\\nmeanie\\nmeanies\\nmeaning\\nmeaningful\\nmeaningfully\\nmeaningless\\nmeanings\\nmeanly\\nmeanness\\nmeannesses\\nmeans\\nmeant\\nmeantime\\nmeantimes\\nmeanwhile\\nmeanwhiles\\nmeany\\nmeasle\\nmeasled\\nmeasles\\nmeaslier\\nmeasliest\\nmeasly\\nmeasurable\\nmeasurably\\nmeasure\\nmeasured\\nmeasureless\\nmeasurement\\nmeasurements\\nmeasurer\\nmeasurers\\nmeasures\\nmeasuring\\nmeat\\nmeatal\\nmeatball\\nmeatballs\\nmeathead\\nmeatheads\\nmeatier\\nmeatiest\\nmeatily\\nmeatless\\nmeatman\\nmeatmen\\nmeats\\nmeatus\\nmeatuses\\nmeaty\\nmecca\\nmeccas\\nmechanic\\nmechanical\\nmechanically\\nmechanics\\nmechanism\\nmechanisms\\nmechanistic\\nmechanistically\\nmechanization\\nmechanizations\\nmechanize\\nmechanized\\nmechanizer\\nmechanizers\\nmechanizes\\nmechanizing\\nmeconium\\nmeconiums\\nmedaka\\nmedakas\\nmedal\\nmedaled\\nmedaling\\nmedalist\\nmedalists\\nmedalled\\nmedallic\\nmedalling\\nmedallion\\nmedallions\\nmedals\\nmeddle\\nmeddled\\nmeddler\\nmeddlers\\nmeddles\\nmeddlesome\\nmeddling\\nmedia\\nmediacies\\nmediacy\\nmediad\\nmediae\\nmediaeval\\nmedial\\nmedially\\nmedials\\nmedian\\nmedianly\\nmedians\\nmediant\\nmediants\\nmedias\\nmediastinum\\nmediate\\nmediated\\nmediates\\nmediating\\nmediation\\nmediations\\nmediator\\nmediators\\nmedic\\nmedicable\\nmedicably\\nmedicaid\\nmedicaids\\nmedical\\nmedically\\nmedicals\\nmedicare\\nmedicares\\nmedicate\\nmedicated\\nmedicates\\nmedicating\\nmedication\\nmedications\\nmedicinal\\nmedicinally\\nmedicine\\nmedicined\\nmedicines\\nmedicining\\nmedick\\nmedicks\\nmedico\\nmedicos\\nmedics\\nmedieval\\nmedievalism\\nmedievalisms\\nmedievalist\\nmedievalists\\nmedievals\\nmedii\\nmediocre\\nmediocrities\\nmediocrity\\nmeditate\\nmeditated\\nmeditates\\nmeditating\\nmeditation\\nmeditations\\nmeditative\\nmeditatively\\nmedium\\nmediums\\nmedius\\nmedlar\\nmedlars\\nmedley\\nmedleys\\nmedulla\\nmedullae\\nmedullar\\nmedullas\\nmedusa\\nmedusae\\nmedusan\\nmedusans\\nmedusas\\nmedusoid\\nmedusoids\\nmeed\\nmeeds\\nmeek\\nmeeker\\nmeekest\\nmeekly\\nmeekness\\nmeeknesses\\nmeerschaum\\nmeerschaums\\nmeet\\nmeeter\\nmeeters\\nmeeting\\nmeetinghouse\\nmeetinghouses\\nmeetings\\nmeetly\\nmeetness\\nmeetnesses\\nmeets\\nmegabar\\nmegabars\\nmegabit\\nmegabits\\nmegabuck\\nmegabucks\\nmegacycle\\nmegacycles\\nmegadyne\\nmegadynes\\nmegahertz\\nmegalith\\nmegaliths\\nmegaphone\\nmegaphones\\nmegapod\\nmegapode\\nmegapodes\\nmegass\\nmegasse\\nmegasses\\nmegaton\\nmegatons\\nmegavolt\\nmegavolts\\nmegawatt\\nmegawatts\\nmegillah\\nmegillahs\\nmegilp\\nmegilph\\nmegilphs\\nmegilps\\nmegohm\\nmegohms\\nmegrim\\nmegrims\\nmeikle\\nmeinie\\nmeinies\\nmeiny\\nmeioses\\nmeiosis\\nmeiotic\\nmel\\nmelamine\\nmelamines\\nmelancholia\\nmelancholic\\nmelancholies\\nmelancholy\\nmelange\\nmelanges\\nmelanian\\nmelanic\\nmelanics\\nmelanin\\nmelanins\\nmelanism\\nmelanisms\\nmelanist\\nmelanists\\nmelanite\\nmelanites\\nmelanize\\nmelanized\\nmelanizes\\nmelanizing\\nmelanoid\\nmelanoids\\nmelanoma\\nmelanomas\\nmelanomata\\nmelanous\\nmelatonin\\nmelba\\nmeld\\nmelded\\nmelder\\nmelders\\nmelding\\nmelds\\nmelee\\nmelees\\nmelic\\nmelilite\\nmelilites\\nmelilot\\nmelilots\\nmelinite\\nmelinites\\nmeliorate\\nmeliorated\\nmeliorates\\nmeliorating\\nmelioration\\nmeliorations\\nmeliorative\\nmelisma\\nmelismas\\nmelismata\\nmell\\nmelled\\nmellific\\nmellifluous\\nmellifluously\\nmellifluousness\\nmellifluousnesses\\nmelling\\nmellow\\nmellowed\\nmellower\\nmellowest\\nmellowing\\nmellowly\\nmellowness\\nmellownesses\\nmellows\\nmells\\nmelodeon\\nmelodeons\\nmelodia\\nmelodias\\nmelodic\\nmelodically\\nmelodies\\nmelodious\\nmelodiously\\nmelodiousness\\nmelodiousnesses\\nmelodise\\nmelodised\\nmelodises\\nmelodising\\nmelodist\\nmelodists\\nmelodize\\nmelodized\\nmelodizes\\nmelodizing\\nmelodrama\\nmelodramas\\nmelodramatic\\nmelodramatist\\nmelodramatists\\nmelody\\nmeloid\\nmeloids\\nmelon\\nmelons\\nmels\\nmelt\\nmeltable\\nmeltage\\nmeltages\\nmelted\\nmelter\\nmelters\\nmelting\\nmelton\\nmeltons\\nmelts\\nmem\\nmember\\nmembered\\nmembers\\nmembership\\nmemberships\\nmembrane\\nmembranes\\nmembranous\\nmemento\\nmementoes\\nmementos\\nmemo\\nmemoir\\nmemoirs\\nmemorabilia\\nmemorabilities\\nmemorability\\nmemorable\\nmemorableness\\nmemorablenesses\\nmemorably\\nmemoranda\\nmemorandum\\nmemorandums\\nmemorial\\nmemorialize\\nmemorialized\\nmemorializes\\nmemorializing\\nmemorials\\nmemories\\nmemorization\\nmemorizations\\nmemorize\\nmemorized\\nmemorizes\\nmemorizing\\nmemory\\nmemos\\nmems\\nmemsahib\\nmemsahibs\\nmen\\nmenace\\nmenaced\\nmenacer\\nmenacers\\nmenaces\\nmenacing\\nmenacingly\\nmenad\\nmenads\\nmenage\\nmenagerie\\nmenageries\\nmenages\\nmenarche\\nmenarches\\nmend\\nmendable\\nmendacious\\nmendaciously\\nmendacities\\nmendacity\\nmended\\nmendelson\\nmender\\nmenders\\nmendicancies\\nmendicancy\\nmendicant\\nmendicants\\nmendigo\\nmendigos\\nmending\\nmendings\\nmends\\nmenfolk\\nmenfolks\\nmenhaden\\nmenhadens\\nmenhir\\nmenhirs\\nmenial\\nmenially\\nmenials\\nmeninges\\nmeningitides\\nmeningitis\\nmeninx\\nmeniscal\\nmenisci\\nmeniscus\\nmeniscuses\\nmeno\\nmenologies\\nmenology\\nmenopausal\\nmenopause\\nmenopauses\\nmenorah\\nmenorahs\\nmensa\\nmensae\\nmensal\\nmensas\\nmensch\\nmenschen\\nmensches\\nmense\\nmensed\\nmenseful\\nmenservants\\nmenses\\nmensing\\nmenstrua\\nmenstrual\\nmenstruate\\nmenstruated\\nmenstruates\\nmenstruating\\nmenstruation\\nmenstruations\\nmensural\\nmenswear\\nmenswears\\nmenta\\nmental\\nmentalities\\nmentality\\nmentally\\nmenthene\\nmenthenes\\nmenthol\\nmentholated\\nmenthols\\nmention\\nmentioned\\nmentioning\\nmentions\\nmentor\\nmentors\\nmentum\\nmenu\\nmenus\\nmeow\\nmeowed\\nmeowing\\nmeows\\nmephitic\\nmephitis\\nmephitises\\nmercantile\\nmercapto\\nmercenaries\\nmercenarily\\nmercenariness\\nmercenarinesses\\nmercenary\\nmercer\\nmerceries\\nmercers\\nmercery\\nmerchandise\\nmerchandised\\nmerchandiser\\nmerchandisers\\nmerchandises\\nmerchandising\\nmerchant\\nmerchanted\\nmerchanting\\nmerchants\\nmercies\\nmerciful\\nmercifully\\nmerciless\\nmercilessly\\nmercurial\\nmercurially\\nmercurialness\\nmercurialnesses\\nmercuric\\nmercuries\\nmercurous\\nmercury\\nmercy\\nmere\\nmerely\\nmerengue\\nmerengues\\nmerer\\nmeres\\nmerest\\nmerge\\nmerged\\nmergence\\nmergences\\nmerger\\nmergers\\nmerges\\nmerging\\nmeridian\\nmeridians\\nmeringue\\nmeringues\\nmerino\\nmerinos\\nmerises\\nmerisis\\nmeristem\\nmeristems\\nmeristic\\nmerit\\nmerited\\nmeriting\\nmeritorious\\nmeritoriously\\nmeritoriousness\\nmeritoriousnesses\\nmerits\\nmerk\\nmerks\\nmerl\\nmerle\\nmerles\\nmerlin\\nmerlins\\nmerlon\\nmerlons\\nmerls\\nmermaid\\nmermaids\\nmerman\\nmermen\\nmeropia\\nmeropias\\nmeropic\\nmerrier\\nmerriest\\nmerrily\\nmerriment\\nmerriments\\nmerry\\nmerrymaker\\nmerrymakers\\nmerrymaking\\nmerrymakings\\nmesa\\nmesally\\nmesarch\\nmesas\\nmescal\\nmescals\\nmesdames\\nmesdemoiselles\\nmeseemed\\nmeseems\\nmesh\\nmeshed\\nmeshes\\nmeshier\\nmeshiest\\nmeshing\\nmeshwork\\nmeshworks\\nmeshy\\nmesial\\nmesially\\nmesian\\nmesic\\nmesmeric\\nmesmerism\\nmesmerisms\\nmesmerize\\nmesmerized\\nmesmerizes\\nmesmerizing\\nmesnalties\\nmesnalty\\nmesne\\nmesocarp\\nmesocarps\\nmesoderm\\nmesoderms\\nmesoglea\\nmesogleas\\nmesomere\\nmesomeres\\nmeson\\nmesonic\\nmesons\\nmesophyl\\nmesophyls\\nmesosome\\nmesosomes\\nmesotron\\nmesotrons\\nmesquit\\nmesquite\\nmesquites\\nmesquits\\nmess\\nmessage\\nmessages\\nmessan\\nmessans\\nmessed\\nmessenger\\nmessengers\\nmesses\\nmessiah\\nmessiahs\\nmessier\\nmessiest\\nmessieurs\\nmessily\\nmessing\\nmessman\\nmessmate\\nmessmates\\nmessmen\\nmessuage\\nmessuages\\nmessy\\nmestee\\nmestees\\nmesteso\\nmestesoes\\nmestesos\\nmestino\\nmestinoes\\nmestinos\\nmestiza\\nmestizas\\nmestizo\\nmestizoes\\nmestizos\\nmet\\nmeta\\nmetabolic\\nmetabolism\\nmetabolisms\\nmetabolize\\nmetabolized\\nmetabolizes\\nmetabolizing\\nmetage\\nmetages\\nmetal\\nmetaled\\nmetaling\\nmetalise\\nmetalised\\nmetalises\\nmetalising\\nmetalist\\nmetalists\\nmetalize\\nmetalized\\nmetalizes\\nmetalizing\\nmetalled\\nmetallic\\nmetalling\\nmetallurgical\\nmetallurgically\\nmetallurgies\\nmetallurgist\\nmetallurgists\\nmetallurgy\\nmetals\\nmetalware\\nmetalwares\\nmetalwork\\nmetalworker\\nmetalworkers\\nmetalworking\\nmetalworkings\\nmetalworks\\nmetamer\\nmetamere\\nmetameres\\nmetamers\\nmetamorphose\\nmetamorphosed\\nmetamorphoses\\nmetamorphosing\\nmetamorphosis\\nmetaphor\\nmetaphorical\\nmetaphors\\nmetaphysical\\nmetaphysician\\nmetaphysicians\\nmetaphysics\\nmetastases\\nmetastatic\\nmetate\\nmetates\\nmetazoa\\nmetazoal\\nmetazoan\\nmetazoans\\nmetazoic\\nmetazoon\\nmete\\nmeted\\nmeteor\\nmeteoric\\nmeteorically\\nmeteorite\\nmeteorites\\nmeteoritic\\nmeteorological\\nmeteorologies\\nmeteorologist\\nmeteorologists\\nmeteorology\\nmeteors\\nmetepa\\nmetepas\\nmeter\\nmeterage\\nmeterages\\nmetered\\nmetering\\nmeters\\nmetes\\nmethadon\\nmethadone\\nmethadones\\nmethadons\\nmethane\\nmethanes\\nmethanol\\nmethanols\\nmethinks\\nmethod\\nmethodic\\nmethodical\\nmethodically\\nmethodicalness\\nmethodicalnesses\\nmethodological\\nmethodologies\\nmethodology\\nmethods\\nmethotrexate\\nmethought\\nmethoxy\\nmethoxyl\\nmethyl\\nmethylal\\nmethylals\\nmethylic\\nmethyls\\nmeticulous\\nmeticulously\\nmeticulousness\\nmeticulousnesses\\nmetier\\nmetiers\\nmeting\\nmetis\\nmetisse\\nmetisses\\nmetonym\\nmetonymies\\nmetonyms\\nmetonymy\\nmetopae\\nmetope\\nmetopes\\nmetopic\\nmetopon\\nmetopons\\nmetre\\nmetred\\nmetres\\nmetric\\nmetrical\\nmetrically\\nmetrication\\nmetrications\\nmetrics\\nmetrified\\nmetrifies\\nmetrify\\nmetrifying\\nmetring\\nmetrist\\nmetrists\\nmetritis\\nmetritises\\nmetro\\nmetronome\\nmetronomes\\nmetropolis\\nmetropolises\\nmetropolitan\\nmetros\\nmettle\\nmettled\\nmettles\\nmettlesome\\nmetump\\nmetumps\\nmeuniere\\nmew\\nmewed\\nmewing\\nmewl\\nmewled\\nmewler\\nmewlers\\nmewling\\nmewls\\nmews\\nmezcal\\nmezcals\\nmezereon\\nmezereons\\nmezereum\\nmezereums\\nmezquit\\nmezquite\\nmezquites\\nmezquits\\nmezuza\\nmezuzah\\nmezuzahs\\nmezuzas\\nmezuzot\\nmezuzoth\\nmezzanine\\nmezzanines\\nmezzo\\nmezzos\\nmho\\nmhos\\nmi\\nmiaou\\nmiaoued\\nmiaouing\\nmiaous\\nmiaow\\nmiaowed\\nmiaowing\\nmiaows\\nmiasm\\nmiasma\\nmiasmal\\nmiasmas\\nmiasmata\\nmiasmic\\nmiasms\\nmiaul\\nmiauled\\nmiauling\\nmiauls\\nmib\\nmibs\\nmica\\nmicas\\nmicawber\\nmicawbers\\nmice\\nmicell\\nmicella\\nmicellae\\nmicellar\\nmicelle\\nmicelles\\nmicells\\nmick\\nmickey\\nmickeys\\nmickle\\nmickler\\nmickles\\nmicklest\\nmicks\\nmicra\\nmicrified\\nmicrifies\\nmicrify\\nmicrifying\\nmicro\\nmicrobar\\nmicrobars\\nmicrobe\\nmicrobes\\nmicrobial\\nmicrobic\\nmicrobiological\\nmicrobiologies\\nmicrobiologist\\nmicrobiologists\\nmicrobiology\\nmicrobus\\nmicrobuses\\nmicrobusses\\nmicrocomputer\\nmicrocomputers\\nmicrocosm\\nmicrofilm\\nmicrofilmed\\nmicrofilming\\nmicrofilms\\nmicrohm\\nmicrohms\\nmicroluces\\nmicrolux\\nmicroluxes\\nmicrometer\\nmicrometers\\nmicromho\\nmicromhos\\nmicrominiature\\nmicrominiatures\\nmicrominiaturization\\nmicrominiaturizations\\nmicrominiaturized\\nmicron\\nmicrons\\nmicroorganism\\nmicroorganisms\\nmicrophone\\nmicrophones\\nmicroscope\\nmicroscopes\\nmicroscopic\\nmicroscopical\\nmicroscopically\\nmicroscopies\\nmicroscopy\\nmicrowave\\nmicrowaves\\nmicrurgies\\nmicrurgy\\nmid\\nmidair\\nmidairs\\nmidbrain\\nmidbrains\\nmidday\\nmiddays\\nmidden\\nmiddens\\nmiddies\\nmiddle\\nmiddled\\nmiddleman\\nmiddlemen\\nmiddler\\nmiddlers\\nmiddles\\nmiddlesex\\nmiddling\\nmiddlings\\nmiddy\\nmidfield\\nmidfields\\nmidge\\nmidges\\nmidget\\nmidgets\\nmidgut\\nmidguts\\nmidi\\nmidiron\\nmidirons\\nmidis\\nmidland\\nmidlands\\nmidleg\\nmidlegs\\nmidline\\nmidlines\\nmidmonth\\nmidmonths\\nmidmost\\nmidmosts\\nmidnight\\nmidnights\\nmidnoon\\nmidnoons\\nmidpoint\\nmidpoints\\nmidrange\\nmidranges\\nmidrash\\nmidrashim\\nmidrib\\nmidribs\\nmidriff\\nmidriffs\\nmids\\nmidship\\nmidshipman\\nmidshipmen\\nmidships\\nmidspace\\nmidspaces\\nmidst\\nmidstories\\nmidstory\\nmidstream\\nmidstreams\\nmidsts\\nmidsummer\\nmidsummers\\nmidterm\\nmidterms\\nmidtown\\nmidtowns\\nmidwatch\\nmidwatches\\nmidway\\nmidways\\nmidweek\\nmidweeks\\nmidwife\\nmidwifed\\nmidwiferies\\nmidwifery\\nmidwifes\\nmidwifing\\nmidwinter\\nmidwinters\\nmidwived\\nmidwives\\nmidwiving\\nmidyear\\nmidyears\\nmien\\nmiens\\nmiff\\nmiffed\\nmiffier\\nmiffiest\\nmiffing\\nmiffs\\nmiffy\\nmig\\nmigg\\nmiggle\\nmiggles\\nmiggs\\nmight\\nmightier\\nmightiest\\nmightily\\nmights\\nmighty\\nmignon\\nmignonne\\nmignons\\nmigraine\\nmigraines\\nmigrant\\nmigrants\\nmigratation\\nmigratational\\nmigratations\\nmigrate\\nmigrated\\nmigrates\\nmigrating\\nmigrator\\nmigrators\\nmigratory\\nmigs\\nmijnheer\\nmijnheers\\nmikado\\nmikados\\nmike\\nmikes\\nmikra\\nmikron\\nmikrons\\nmikvah\\nmikvahs\\nmikveh\\nmikvehs\\nmikvoth\\nmil\\nmiladi\\nmiladies\\nmiladis\\nmilady\\nmilage\\nmilages\\nmilch\\nmilchig\\nmild\\nmilden\\nmildened\\nmildening\\nmildens\\nmilder\\nmildest\\nmildew\\nmildewed\\nmildewing\\nmildews\\nmildewy\\nmildly\\nmildness\\nmildnesses\\nmile\\nmileage\\nmileages\\nmilepost\\nmileposts\\nmiler\\nmilers\\nmiles\\nmilesimo\\nmilesimos\\nmilestone\\nmilestones\\nmilfoil\\nmilfoils\\nmilia\\nmiliaria\\nmiliarias\\nmiliary\\nmilieu\\nmilieus\\nmilieux\\nmilitancies\\nmilitancy\\nmilitant\\nmilitantly\\nmilitants\\nmilitaries\\nmilitarily\\nmilitarism\\nmilitarisms\\nmilitarist\\nmilitaristic\\nmilitarists\\nmilitary\\nmilitate\\nmilitated\\nmilitates\\nmilitating\\nmilitia\\nmilitiaman\\nmilitiamen\\nmilitias\\nmilium\\nmilk\\nmilked\\nmilker\\nmilkers\\nmilkfish\\nmilkfishes\\nmilkier\\nmilkiest\\nmilkily\\nmilkiness\\nmilkinesses\\nmilking\\nmilkmaid\\nmilkmaids\\nmilkman\\nmilkmen\\nmilks\\nmilksop\\nmilksops\\nmilkweed\\nmilkweeds\\nmilkwood\\nmilkwoods\\nmilkwort\\nmilkworts\\nmilky\\nmill\\nmillable\\nmillage\\nmillages\\nmilldam\\nmilldams\\nmille\\nmilled\\nmillennia\\nmillennium\\nmillenniums\\nmilleped\\nmillepeds\\nmiller\\nmillers\\nmilles\\nmillet\\nmillets\\nmilliard\\nmilliards\\nmilliare\\nmilliares\\nmilliary\\nmillibar\\nmillibars\\nmillieme\\nmilliemes\\nmillier\\nmilliers\\nmilligal\\nmilligals\\nmilligram\\nmilligrams\\nmilliliter\\nmilliliters\\nmilliluces\\nmillilux\\nmilliluxes\\nmillime\\nmillimes\\nmillimeter\\nmillimeters\\nmillimho\\nmillimhos\\nmilline\\nmilliner\\nmilliners\\nmillines\\nmilling\\nmillings\\nmilliohm\\nmilliohms\\nmillion\\nmillionaire\\nmillionaires\\nmillions\\nmillionth\\nmillionths\\nmilliped\\nmillipede\\nmillipedes\\nmillipeds\\nmillirem\\nmillirems\\nmillpond\\nmillponds\\nmillrace\\nmillraces\\nmillrun\\nmillruns\\nmills\\nmillstone\\nmillstones\\nmillwork\\nmillworks\\nmilo\\nmilord\\nmilords\\nmilos\\nmilpa\\nmilpas\\nmilreis\\nmils\\nmilt\\nmilted\\nmilter\\nmilters\\nmiltier\\nmiltiest\\nmilting\\nmilts\\nmilty\\nmim\\nmimbar\\nmimbars\\nmime\\nmimed\\nmimeograph\\nmimeographed\\nmimeographing\\nmimeographs\\nmimer\\nmimers\\nmimes\\nmimesis\\nmimesises\\nmimetic\\nmimetite\\nmimetites\\nmimic\\nmimical\\nmimicked\\nmimicker\\nmimickers\\nmimicking\\nmimicries\\nmimicry\\nmimics\\nmiming\\nmimosa\\nmimosas\\nmina\\nminable\\nminacities\\nminacity\\nminae\\nminaret\\nminarets\\nminas\\nminatory\\nmince\\nminced\\nmincer\\nmincers\\nminces\\nmincier\\nminciest\\nmincing\\nmincy\\nmind\\nminded\\nminder\\nminders\\nmindful\\nminding\\nmindless\\nmindlessly\\nmindlessness\\nmindlessnesses\\nminds\\nmine\\nmineable\\nmined\\nminer\\nmineral\\nmineralize\\nmineralized\\nmineralizes\\nmineralizing\\nminerals\\nminerological\\nminerologies\\nminerologist\\nminerologists\\nminerology\\nminers\\nmines\\nmingier\\nmingiest\\nmingle\\nmingled\\nmingler\\nminglers\\nmingles\\nmingling\\nmingy\\nmini\\nminiature\\nminiatures\\nminiaturist\\nminiaturists\\nminiaturize\\nminiaturized\\nminiaturizes\\nminiaturizing\\nminibike\\nminibikes\\nminibrain\\nminibrains\\nminibudget\\nminibudgets\\nminibus\\nminibuses\\nminibusses\\nminicab\\nminicabs\\nminicalculator\\nminicalculators\\nminicamera\\nminicameras\\nminicar\\nminicars\\nminiclock\\nminiclocks\\nminicomponent\\nminicomponents\\nminicomputer\\nminicomputers\\nminiconvention\\nminiconventions\\nminicourse\\nminicourses\\nminicrisis\\nminicrisises\\nminidrama\\nminidramas\\nminidress\\nminidresses\\nminifestival\\nminifestivals\\nminified\\nminifies\\nminify\\nminifying\\nminigarden\\nminigardens\\nminigrant\\nminigrants\\nminigroup\\nminigroups\\nminiguide\\nminiguides\\nminihospital\\nminihospitals\\nminikin\\nminikins\\nminileague\\nminileagues\\nminilecture\\nminilectures\\nminim\\nminima\\nminimal\\nminimally\\nminimals\\nminimarket\\nminimarkets\\nminimax\\nminimaxes\\nminimiracle\\nminimiracles\\nminimise\\nminimised\\nminimises\\nminimising\\nminimization\\nminimize\\nminimized\\nminimizes\\nminimizing\\nminims\\nminimum\\nminimums\\nminimuseum\\nminimuseums\\nminination\\nmininations\\nmininetwork\\nmininetworks\\nmining\\nminings\\nmininovel\\nmininovels\\nminion\\nminions\\nminipanic\\nminipanics\\nminiprice\\nminiprices\\nminiproblem\\nminiproblems\\nminirebellion\\nminirebellions\\nminirecession\\nminirecessions\\nminirobot\\nminirobots\\nminis\\nminiscandal\\nminiscandals\\nminischool\\nminischools\\nminiscule\\nminisedan\\nminisedans\\nminiseries\\nminiserieses\\nminish\\nminished\\nminishes\\nminishing\\nminiskirt\\nminiskirts\\nminislump\\nminislumps\\nminisocieties\\nminisociety\\nministate\\nministates\\nminister\\nministered\\nministerial\\nministering\\nministers\\nministration\\nministrations\\nministries\\nministrike\\nministrikes\\nministry\\nminisubmarine\\nminisubmarines\\nminisurvey\\nminisurveys\\nminisystem\\nminisystems\\nminiterritories\\nminiterritory\\nminitheater\\nminitheaters\\nminitrain\\nminitrains\\nminium\\nminiums\\nminivacation\\nminivacations\\nminiver\\nminivers\\nminiversion\\nminiversions\\nmink\\nminks\\nminnies\\nminnow\\nminnows\\nminny\\nminor\\nminorca\\nminorcas\\nminored\\nminoring\\nminorities\\nminority\\nminors\\nminster\\nminsters\\nminstrel\\nminstrels\\nminstrelsies\\nminstrelsy\\nmint\\nmintage\\nmintages\\nminted\\nminter\\nminters\\nmintier\\nmintiest\\nminting\\nmints\\nminty\\nminuend\\nminuends\\nminuet\\nminuets\\nminus\\nminuscule\\nminuses\\nminute\\nminuted\\nminutely\\nminuteness\\nminutenesses\\nminuter\\nminutes\\nminutest\\nminutia\\nminutiae\\nminutial\\nminuting\\nminx\\nminxes\\nminxish\\nminyan\\nminyanim\\nminyans\\nmioses\\nmiosis\\nmiotic\\nmiotics\\nmiquelet\\nmiquelets\\nmir\\nmiracle\\nmiracles\\nmiraculous\\nmiraculously\\nmirador\\nmiradors\\nmirage\\nmirages\\nmire\\nmired\\nmires\\nmirex\\nmirexes\\nmiri\\nmirier\\nmiriest\\nmiriness\\nmirinesses\\nmiring\\nmirk\\nmirker\\nmirkest\\nmirkier\\nmirkiest\\nmirkily\\nmirks\\nmirky\\nmirror\\nmirrored\\nmirroring\\nmirrors\\nmirs\\nmirth\\nmirthful\\nmirthfully\\nmirthfulness\\nmirthfulnesses\\nmirthless\\nmirths\\nmiry\\nmirza\\nmirzas\\nmis\\nmisact\\nmisacted\\nmisacting\\nmisacts\\nmisadapt\\nmisadapted\\nmisadapting\\nmisadapts\\nmisadd\\nmisadded\\nmisadding\\nmisadds\\nmisagent\\nmisagents\\nmisaim\\nmisaimed\\nmisaiming\\nmisaims\\nmisallied\\nmisallies\\nmisally\\nmisallying\\nmisalter\\nmisaltered\\nmisaltering\\nmisalters\\nmisanthrope\\nmisanthropes\\nmisanthropic\\nmisanthropies\\nmisanthropy\\nmisapplied\\nmisapplies\\nmisapply\\nmisapplying\\nmisapprehend\\nmisapprehended\\nmisapprehending\\nmisapprehends\\nmisapprehension\\nmisapprehensions\\nmisappropriate\\nmisappropriated\\nmisappropriates\\nmisappropriating\\nmisappropriation\\nmisappropriations\\nmisassay\\nmisassayed\\nmisassaying\\nmisassays\\nmisate\\nmisatone\\nmisatoned\\nmisatones\\nmisatoning\\nmisaver\\nmisaverred\\nmisaverring\\nmisavers\\nmisaward\\nmisawarded\\nmisawarding\\nmisawards\\nmisbegan\\nmisbegin\\nmisbeginning\\nmisbegins\\nmisbegot\\nmisbegun\\nmisbehave\\nmisbehaved\\nmisbehaver\\nmisbehavers\\nmisbehaves\\nmisbehaving\\nmisbehavior\\nmisbehaviors\\nmisbias\\nmisbiased\\nmisbiases\\nmisbiasing\\nmisbiassed\\nmisbiasses\\nmisbiassing\\nmisbill\\nmisbilled\\nmisbilling\\nmisbills\\nmisbind\\nmisbinding\\nmisbinds\\nmisbound\\nmisbrand\\nmisbranded\\nmisbranding\\nmisbrands\\nmisbuild\\nmisbuilding\\nmisbuilds\\nmisbuilt\\nmiscalculate\\nmiscalculated\\nmiscalculates\\nmiscalculating\\nmiscalculation\\nmiscalculations\\nmiscall\\nmiscalled\\nmiscalling\\nmiscalls\\nmiscarriage\\nmiscarriages\\nmiscarried\\nmiscarries\\nmiscarry\\nmiscarrying\\nmiscast\\nmiscasting\\nmiscasts\\nmiscegenation\\nmiscegenations\\nmiscellaneous\\nmiscellaneously\\nmiscellaneousness\\nmiscellaneousnesses\\nmiscellanies\\nmiscellany\\nmischance\\nmischances\\nmischief\\nmischiefs\\nmischievous\\nmischievously\\nmischievousness\\nmischievousnesses\\nmiscible\\nmiscite\\nmiscited\\nmiscites\\nmisciting\\nmisclaim\\nmisclaimed\\nmisclaiming\\nmisclaims\\nmisclass\\nmisclassed\\nmisclasses\\nmisclassing\\nmiscoin\\nmiscoined\\nmiscoining\\nmiscoins\\nmiscolor\\nmiscolored\\nmiscoloring\\nmiscolors\\nmisconceive\\nmisconceived\\nmisconceives\\nmisconceiving\\nmisconception\\nmisconceptions\\nmisconduct\\nmisconducts\\nmisconstruction\\nmisconstructions\\nmisconstrue\\nmisconstrued\\nmisconstrues\\nmisconstruing\\nmiscook\\nmiscooked\\nmiscooking\\nmiscooks\\nmiscopied\\nmiscopies\\nmiscopy\\nmiscopying\\nmiscount\\nmiscounted\\nmiscounting\\nmiscounts\\nmiscreant\\nmiscreants\\nmiscue\\nmiscued\\nmiscues\\nmiscuing\\nmiscut\\nmiscuts\\nmiscutting\\nmisdate\\nmisdated\\nmisdates\\nmisdating\\nmisdeal\\nmisdealing\\nmisdeals\\nmisdealt\\nmisdeed\\nmisdeeds\\nmisdeem\\nmisdeemed\\nmisdeeming\\nmisdeems\\nmisdemeanor\\nmisdemeanors\\nmisdid\\nmisdo\\nmisdoer\\nmisdoers\\nmisdoes\\nmisdoing\\nmisdoings\\nmisdone\\nmisdoubt\\nmisdoubted\\nmisdoubting\\nmisdoubts\\nmisdraw\\nmisdrawing\\nmisdrawn\\nmisdraws\\nmisdrew\\nmisdrive\\nmisdriven\\nmisdrives\\nmisdriving\\nmisdrove\\nmise\\nmisease\\nmiseases\\nmiseat\\nmiseating\\nmiseats\\nmisedit\\nmisedited\\nmisediting\\nmisedits\\nmisenrol\\nmisenrolled\\nmisenrolling\\nmisenrols\\nmisenter\\nmisentered\\nmisentering\\nmisenters\\nmisentries\\nmisentry\\nmiser\\nmiserable\\nmiserableness\\nmiserablenesses\\nmiserably\\nmiserere\\nmisereres\\nmiseries\\nmiserliness\\nmiserlinesses\\nmiserly\\nmisers\\nmisery\\nmises\\nmisevent\\nmisevents\\nmisfaith\\nmisfaiths\\nmisfield\\nmisfielded\\nmisfielding\\nmisfields\\nmisfile\\nmisfiled\\nmisfiles\\nmisfiling\\nmisfire\\nmisfired\\nmisfires\\nmisfiring\\nmisfit\\nmisfits\\nmisfitted\\nmisfitting\\nmisform\\nmisformed\\nmisforming\\nmisforms\\nmisfortune\\nmisfortunes\\nmisframe\\nmisframed\\nmisframes\\nmisframing\\nmisgauge\\nmisgauged\\nmisgauges\\nmisgauging\\nmisgave\\nmisgive\\nmisgiven\\nmisgives\\nmisgiving\\nmisgivings\\nmisgraft\\nmisgrafted\\nmisgrafting\\nmisgrafts\\nmisgrew\\nmisgrow\\nmisgrowing\\nmisgrown\\nmisgrows\\nmisguess\\nmisguessed\\nmisguesses\\nmisguessing\\nmisguide\\nmisguided\\nmisguides\\nmisguiding\\nmishap\\nmishaps\\nmishear\\nmisheard\\nmishearing\\nmishears\\nmishit\\nmishits\\nmishitting\\nmishmash\\nmishmashes\\nmishmosh\\nmishmoshes\\nmisinfer\\nmisinferred\\nmisinferring\\nmisinfers\\nmisinform\\nmisinformation\\nmisinformations\\nmisinforms\\nmisinter\\nmisinterpret\\nmisinterpretation\\nmisinterpretations\\nmisinterpreted\\nmisinterpreting\\nmisinterprets\\nmisinterred\\nmisinterring\\nmisinters\\nmisjoin\\nmisjoined\\nmisjoining\\nmisjoins\\nmisjudge\\nmisjudged\\nmisjudges\\nmisjudging\\nmisjudgment\\nmisjudgments\\nmiskal\\nmiskals\\nmiskeep\\nmiskeeping\\nmiskeeps\\nmiskept\\nmisknew\\nmisknow\\nmisknowing\\nmisknown\\nmisknows\\nmislabel\\nmislabeled\\nmislabeling\\nmislabelled\\nmislabelling\\nmislabels\\nmislabor\\nmislabored\\nmislaboring\\nmislabors\\nmislaid\\nmislain\\nmislay\\nmislayer\\nmislayers\\nmislaying\\nmislays\\nmislead\\nmisleading\\nmisleadingly\\nmisleads\\nmislearn\\nmislearned\\nmislearning\\nmislearns\\nmislearnt\\nmisled\\nmislie\\nmislies\\nmislight\\nmislighted\\nmislighting\\nmislights\\nmislike\\nmisliked\\nmisliker\\nmislikers\\nmislikes\\nmisliking\\nmislit\\nmislive\\nmislived\\nmislives\\nmisliving\\nmislodge\\nmislodged\\nmislodges\\nmislodging\\nmislying\\nmismanage\\nmismanaged\\nmismanagement\\nmismanagements\\nmismanages\\nmismanaging\\nmismark\\nmismarked\\nmismarking\\nmismarks\\nmismatch\\nmismatched\\nmismatches\\nmismatching\\nmismate\\nmismated\\nmismates\\nmismating\\nmismeet\\nmismeeting\\nmismeets\\nmismet\\nmismove\\nmismoved\\nmismoves\\nmismoving\\nmisname\\nmisnamed\\nmisnames\\nmisnaming\\nmisnomer\\nmisnomers\\nmiso\\nmisogamies\\nmisogamy\\nmisogynies\\nmisogynist\\nmisogynists\\nmisogyny\\nmisologies\\nmisology\\nmisos\\nmispage\\nmispaged\\nmispages\\nmispaging\\nmispaint\\nmispainted\\nmispainting\\nmispaints\\nmisparse\\nmisparsed\\nmisparses\\nmisparsing\\nmispart\\nmisparted\\nmisparting\\nmisparts\\nmispatch\\nmispatched\\nmispatches\\nmispatching\\nmispen\\nmispenned\\nmispenning\\nmispens\\nmisplace\\nmisplaced\\nmisplaces\\nmisplacing\\nmisplant\\nmisplanted\\nmisplanting\\nmisplants\\nmisplay\\nmisplayed\\nmisplaying\\nmisplays\\nmisplead\\nmispleaded\\nmispleading\\nmispleads\\nmispled\\nmispoint\\nmispointed\\nmispointing\\nmispoints\\nmispoise\\nmispoised\\nmispoises\\nmispoising\\nmisprint\\nmisprinted\\nmisprinting\\nmisprints\\nmisprize\\nmisprized\\nmisprizes\\nmisprizing\\nmispronounce\\nmispronounced\\nmispronounces\\nmispronouncing\\nmispronunciation\\nmispronunciations\\nmisquotation\\nmisquotations\\nmisquote\\nmisquoted\\nmisquotes\\nmisquoting\\nmisraise\\nmisraised\\nmisraises\\nmisraising\\nmisrate\\nmisrated\\nmisrates\\nmisrating\\nmisread\\nmisreading\\nmisreads\\nmisrefer\\nmisreferred\\nmisreferring\\nmisrefers\\nmisrelied\\nmisrelies\\nmisrely\\nmisrelying\\nmisrepresent\\nmisrepresentation\\nmisrepresentations\\nmisrepresented\\nmisrepresenting\\nmisrepresents\\nmisrule\\nmisruled\\nmisrules\\nmisruling\\nmiss\\nmissaid\\nmissal\\nmissals\\nmissay\\nmissaying\\nmissays\\nmisseat\\nmisseated\\nmisseating\\nmisseats\\nmissed\\nmissel\\nmissels\\nmissend\\nmissending\\nmissends\\nmissense\\nmissenses\\nmissent\\nmisses\\nmisshape\\nmisshaped\\nmisshapen\\nmisshapes\\nmisshaping\\nmisshod\\nmissies\\nmissile\\nmissiles\\nmissilries\\nmissilry\\nmissing\\nmission\\nmissionaries\\nmissionary\\nmissioned\\nmissioning\\nmissions\\nmissis\\nmissises\\nmissive\\nmissives\\nmissort\\nmissorted\\nmissorting\\nmissorts\\nmissound\\nmissounded\\nmissounding\\nmissounds\\nmissout\\nmissouts\\nmisspace\\nmisspaced\\nmisspaces\\nmisspacing\\nmisspeak\\nmisspeaking\\nmisspeaks\\nmisspell\\nmisspelled\\nmisspelling\\nmisspellings\\nmisspells\\nmisspelt\\nmisspend\\nmisspending\\nmisspends\\nmisspent\\nmisspoke\\nmisspoken\\nmisstart\\nmisstarted\\nmisstarting\\nmisstarts\\nmisstate\\nmisstated\\nmisstatement\\nmisstatements\\nmisstates\\nmisstating\\nmissteer\\nmissteered\\nmissteering\\nmissteers\\nmisstep\\nmissteps\\nmisstop\\nmisstopped\\nmisstopping\\nmisstops\\nmisstyle\\nmisstyled\\nmisstyles\\nmisstyling\\nmissuit\\nmissuited\\nmissuiting\\nmissuits\\nmissus\\nmissuses\\nmissy\\nmist\\nmistake\\nmistaken\\nmistakenly\\nmistaker\\nmistakers\\nmistakes\\nmistaking\\nmistaught\\nmistbow\\nmistbows\\nmisteach\\nmisteaches\\nmisteaching\\nmisted\\nmistend\\nmistended\\nmistending\\nmistends\\nmister\\nmisterm\\nmistermed\\nmisterming\\nmisterms\\nmisters\\nmisteuk\\nmisthink\\nmisthinking\\nmisthinks\\nmisthought\\nmisthrew\\nmisthrow\\nmisthrowing\\nmisthrown\\nmisthrows\\nmistier\\nmistiest\\nmistily\\nmistime\\nmistimed\\nmistimes\\nmistiming\\nmisting\\nmistitle\\nmistitled\\nmistitles\\nmistitling\\nmistletoe\\nmistook\\nmistouch\\nmistouched\\nmistouches\\nmistouching\\nmistrace\\nmistraced\\nmistraces\\nmistracing\\nmistral\\nmistrals\\nmistreat\\nmistreated\\nmistreating\\nmistreatment\\nmistreatments\\nmistreats\\nmistress\\nmistresses\\nmistrial\\nmistrials\\nmistrust\\nmistrusted\\nmistrustful\\nmistrustfully\\nmistrustfulness\\nmistrustfulnesses\\nmistrusting\\nmistrusts\\nmistryst\\nmistrysted\\nmistrysting\\nmistrysts\\nmists\\nmistune\\nmistuned\\nmistunes\\nmistuning\\nmistutor\\nmistutored\\nmistutoring\\nmistutors\\nmisty\\nmistype\\nmistyped\\nmistypes\\nmistyping\\nmisunderstand\\nmisunderstanded\\nmisunderstanding\\nmisunderstandings\\nmisunderstands\\nmisunion\\nmisunions\\nmisusage\\nmisusages\\nmisuse\\nmisused\\nmisuser\\nmisusers\\nmisuses\\nmisusing\\nmisvalue\\nmisvalued\\nmisvalues\\nmisvaluing\\nmisword\\nmisworded\\nmiswording\\nmiswords\\nmiswrit\\nmiswrite\\nmiswrites\\nmiswriting\\nmiswritten\\nmiswrote\\nmisyoke\\nmisyoked\\nmisyokes\\nmisyoking\\nmite\\nmiter\\nmitered\\nmiterer\\nmiterers\\nmitering\\nmiters\\nmites\\nmither\\nmithers\\nmiticide\\nmiticides\\nmitier\\nmitiest\\nmitigate\\nmitigated\\nmitigates\\nmitigating\\nmitigation\\nmitigations\\nmitigative\\nmitigator\\nmitigators\\nmitigatory\\nmitis\\nmitises\\nmitogen\\nmitogens\\nmitoses\\nmitosis\\nmitotic\\nmitral\\nmitre\\nmitred\\nmitres\\nmitring\\nmitsvah\\nmitsvahs\\nmitsvoth\\nmitt\\nmitten\\nmittens\\nmittimus\\nmittimuses\\nmitts\\nmity\\nmitzvah\\nmitzvahs\\nmitzvoth\\nmix\\nmixable\\nmixed\\nmixer\\nmixers\\nmixes\\nmixible\\nmixing\\nmixologies\\nmixology\\nmixt\\nmixture\\nmixtures\\nmixup\\nmixups\\nmizen\\nmizens\\nmizzen\\nmizzens\\nmizzle\\nmizzled\\nmizzles\\nmizzling\\nmizzly\\nmnemonic\\nmnemonics\\nmoa\\nmoan\\nmoaned\\nmoanful\\nmoaning\\nmoans\\nmoas\\nmoat\\nmoated\\nmoating\\nmoatlike\\nmoats\\nmob\\nmobbed\\nmobber\\nmobbers\\nmobbing\\nmobbish\\nmobcap\\nmobcaps\\nmobile\\nmobiles\\nmobilise\\nmobilised\\nmobilises\\nmobilising\\nmobilities\\nmobility\\nmobilization\\nmobilizations\\nmobilize\\nmobilized\\nmobilizer\\nmobilizers\\nmobilizes\\nmobilizing\\nmobocrat\\nmobocrats\\nmobs\\nmobster\\nmobsters\\nmoccasin\\nmoccasins\\nmocha\\nmochas\\nmochila\\nmochilas\\nmock\\nmockable\\nmocked\\nmocker\\nmockeries\\nmockers\\nmockery\\nmocking\\nmockingbird\\nmockingbirds\\nmockingly\\nmocks\\nmockup\\nmockups\\nmod\\nmodal\\nmodalities\\nmodality\\nmodally\\nmode\\nmodel\\nmodeled\\nmodeler\\nmodelers\\nmodeling\\nmodelings\\nmodelled\\nmodeller\\nmodellers\\nmodelling\\nmodels\\nmoderate\\nmoderated\\nmoderately\\nmoderateness\\nmoderatenesses\\nmoderates\\nmoderating\\nmoderation\\nmoderations\\nmoderato\\nmoderator\\nmoderators\\nmoderatos\\nmodern\\nmoderner\\nmodernest\\nmodernities\\nmodernity\\nmodernization\\nmodernizations\\nmodernize\\nmodernized\\nmodernizer\\nmodernizers\\nmodernizes\\nmodernizing\\nmodernly\\nmodernness\\nmodernnesses\\nmoderns\\nmodes\\nmodest\\nmodester\\nmodestest\\nmodesties\\nmodestly\\nmodesty\\nmodi\\nmodica\\nmodicum\\nmodicums\\nmodification\\nmodifications\\nmodified\\nmodifier\\nmodifiers\\nmodifies\\nmodify\\nmodifying\\nmodioli\\nmodiolus\\nmodish\\nmodishly\\nmodiste\\nmodistes\\nmods\\nmodular\\nmodularities\\nmodularity\\nmodularized\\nmodulate\\nmodulated\\nmodulates\\nmodulating\\nmodulation\\nmodulations\\nmodulator\\nmodulators\\nmodulatory\\nmodule\\nmodules\\nmoduli\\nmodulo\\nmodulus\\nmodus\\nmofette\\nmofettes\\nmoffette\\nmoffettes\\nmog\\nmogged\\nmogging\\nmogs\\nmogul\\nmoguls\\nmohair\\nmohairs\\nmohalim\\nmohel\\nmohels\\nmohur\\nmohurs\\nmoidore\\nmoidores\\nmoieties\\nmoiety\\nmoil\\nmoiled\\nmoiler\\nmoilers\\nmoiling\\nmoils\\nmoira\\nmoirai\\nmoire\\nmoires\\nmoist\\nmoisten\\nmoistened\\nmoistener\\nmoisteners\\nmoistening\\nmoistens\\nmoister\\nmoistest\\nmoistful\\nmoistly\\nmoistness\\nmoistnesses\\nmoisture\\nmoistures\\nmojarra\\nmojarras\\nmoke\\nmokes\\nmol\\nmola\\nmolal\\nmolalities\\nmolality\\nmolar\\nmolarities\\nmolarity\\nmolars\\nmolas\\nmolasses\\nmolasseses\\nmold\\nmoldable\\nmolded\\nmolder\\nmoldered\\nmoldering\\nmolders\\nmoldier\\nmoldiest\\nmoldiness\\nmoldinesses\\nmolding\\nmoldings\\nmolds\\nmoldwarp\\nmoldwarps\\nmoldy\\nmole\\nmolecular\\nmolecule\\nmolecules\\nmolehill\\nmolehills\\nmoles\\nmoleskin\\nmoleskins\\nmolest\\nmolestation\\nmolestations\\nmolested\\nmolester\\nmolesters\\nmolesting\\nmolests\\nmolies\\nmoline\\nmoll\\nmollah\\nmollahs\\nmollie\\nmollies\\nmollification\\nmollifications\\nmollified\\nmollifies\\nmollify\\nmollifying\\nmolls\\nmollusc\\nmolluscan\\nmolluscs\\nmollusk\\nmollusks\\nmolly\\nmollycoddle\\nmollycoddled\\nmollycoddles\\nmollycoddling\\nmoloch\\nmolochs\\nmols\\nmolt\\nmolted\\nmolten\\nmoltenly\\nmolter\\nmolters\\nmolting\\nmolto\\nmolts\\nmoly\\nmolybdic\\nmolys\\nmom\\nmome\\nmoment\\nmomenta\\nmomentarily\\nmomentary\\nmomently\\nmomento\\nmomentoes\\nmomentos\\nmomentous\\nmomentously\\nmomentousment\\nmomentousments\\nmomentousness\\nmomentousnesses\\nmoments\\nmomentum\\nmomentums\\nmomes\\nmomi\\nmomism\\nmomisms\\nmomma\\nmommas\\nmommies\\nmommy\\nmoms\\nmomus\\nmomuses\\nmon\\nmonachal\\nmonacid\\nmonacids\\nmonad\\nmonadal\\nmonades\\nmonadic\\nmonadism\\nmonadisms\\nmonads\\nmonandries\\nmonandry\\nmonarch\\nmonarchic\\nmonarchical\\nmonarchies\\nmonarchs\\nmonarchy\\nmonarda\\nmonardas\\nmonas\\nmonasterial\\nmonasteries\\nmonastery\\nmonastic\\nmonastically\\nmonasticism\\nmonasticisms\\nmonastics\\nmonaural\\nmonaxial\\nmonazite\\nmonazites\\nmonde\\nmondes\\nmondo\\nmondos\\nmonecian\\nmonetary\\nmonetise\\nmonetised\\nmonetises\\nmonetising\\nmonetize\\nmonetized\\nmonetizes\\nmonetizing\\nmoney\\nmoneybag\\nmoneybags\\nmoneyed\\nmoneyer\\nmoneyers\\nmoneylender\\nmoneylenders\\nmoneys\\nmongeese\\nmonger\\nmongered\\nmongering\\nmongers\\nmongo\\nmongoe\\nmongoes\\nmongol\\nmongolism\\nmongolisms\\nmongols\\nmongoose\\nmongooses\\nmongos\\nmongrel\\nmongrels\\nmongst\\nmonicker\\nmonickers\\nmonie\\nmonied\\nmonies\\nmoniker\\nmonikers\\nmonish\\nmonished\\nmonishes\\nmonishing\\nmonism\\nmonisms\\nmonist\\nmonistic\\nmonists\\nmonition\\nmonitions\\nmonitive\\nmonitor\\nmonitored\\nmonitories\\nmonitoring\\nmonitors\\nmonitory\\nmonk\\nmonkeries\\nmonkery\\nmonkey\\nmonkeyed\\nmonkeying\\nmonkeys\\nmonkeyshines\\nmonkfish\\nmonkfishes\\nmonkhood\\nmonkhoods\\nmonkish\\nmonkishly\\nmonkishness\\nmonkishnesses\\nmonks\\nmonkshood\\nmonkshoods\\nmono\\nmonoacid\\nmonoacids\\nmonocarp\\nmonocarps\\nmonocle\\nmonocled\\nmonocles\\nmonocot\\nmonocots\\nmonocrat\\nmonocrats\\nmonocyte\\nmonocytes\\nmonodic\\nmonodies\\nmonodist\\nmonodists\\nmonody\\nmonoecies\\nmonoecy\\nmonofil\\nmonofils\\nmonofuel\\nmonofuels\\nmonogamic\\nmonogamies\\nmonogamist\\nmonogamists\\nmonogamous\\nmonogamy\\nmonogenies\\nmonogeny\\nmonogerm\\nmonogram\\nmonogramed\\nmonograming\\nmonogrammed\\nmonogramming\\nmonograms\\nmonograph\\nmonographs\\nmonogynies\\nmonogyny\\nmonolingual\\nmonolith\\nmonolithic\\nmonoliths\\nmonolog\\nmonologies\\nmonologist\\nmonologists\\nmonologs\\nmonologue\\nmonologues\\nmonologuist\\nmonologuists\\nmonology\\nmonomer\\nmonomers\\nmonomial\\nmonomials\\nmononucleosis\\nmononucleosises\\nmonopode\\nmonopodes\\nmonopodies\\nmonopody\\nmonopole\\nmonopoles\\nmonopolies\\nmonopolist\\nmonopolistic\\nmonopolists\\nmonopolization\\nmonopolizations\\nmonopolize\\nmonopolized\\nmonopolizes\\nmonopolizing\\nmonopoly\\nmonorail\\nmonorails\\nmonos\\nmonosome\\nmonosomes\\nmonosyllable\\nmonosyllables\\nmonosyllablic\\nmonotheism\\nmonotheisms\\nmonotheist\\nmonotheists\\nmonotint\\nmonotints\\nmonotone\\nmonotones\\nmonotonies\\nmonotonous\\nmonotonously\\nmonotonousness\\nmonotonousnesses\\nmonotony\\nmonotype\\nmonotypes\\nmonoxide\\nmonoxides\\nmons\\nmonsieur\\nmonsignor\\nmonsignori\\nmonsignors\\nmonsoon\\nmonsoonal\\nmonsoons\\nmonster\\nmonsters\\nmonstrosities\\nmonstrosity\\nmonstrously\\nmontage\\nmontaged\\nmontages\\nmontaging\\nmontane\\nmontanes\\nmonte\\nmonteith\\nmonteiths\\nmontero\\nmonteros\\nmontes\\nmonth\\nmonthlies\\nmonthly\\nmonths\\nmonument\\nmonumental\\nmonumentally\\nmonuments\\nmonuron\\nmonurons\\nmony\\nmoo\\nmooch\\nmooched\\nmoocher\\nmoochers\\nmooches\\nmooching\\nmood\\nmoodier\\nmoodiest\\nmoodily\\nmoodiness\\nmoodinesses\\nmoods\\nmoody\\nmooed\\nmooing\\nmool\\nmoola\\nmoolah\\nmoolahs\\nmoolas\\nmooley\\nmooleys\\nmools\\nmoon\\nmoonbeam\\nmoonbeams\\nmoonbow\\nmoonbows\\nmooncalf\\nmooncalves\\nmooned\\nmooneye\\nmooneyes\\nmoonfish\\nmoonfishes\\nmoonier\\nmooniest\\nmoonily\\nmooning\\nmoonish\\nmoonless\\nmoonlet\\nmoonlets\\nmoonlight\\nmoonlighted\\nmoonlighter\\nmoonlighters\\nmoonlighting\\nmoonlights\\nmoonlike\\nmoonlit\\nmoonrise\\nmoonrises\\nmoons\\nmoonsail\\nmoonsails\\nmoonseed\\nmoonseeds\\nmoonset\\nmoonsets\\nmoonshine\\nmoonshines\\nmoonshot\\nmoonshots\\nmoonward\\nmoonwort\\nmoonworts\\nmoony\\nmoor\\nmoorage\\nmoorages\\nmoored\\nmoorfowl\\nmoorfowls\\nmoorhen\\nmoorhens\\nmoorier\\nmooriest\\nmooring\\nmoorings\\nmoorish\\nmoorland\\nmoorlands\\nmoors\\nmoorwort\\nmoorworts\\nmoory\\nmoos\\nmoose\\nmoot\\nmooted\\nmooter\\nmooters\\nmooting\\nmoots\\nmop\\nmopboard\\nmopboards\\nmope\\nmoped\\nmopeds\\nmoper\\nmopers\\nmopes\\nmoping\\nmopingly\\nmopish\\nmopishly\\nmopoke\\nmopokes\\nmopped\\nmopper\\nmoppers\\nmoppet\\nmoppets\\nmopping\\nmops\\nmoquette\\nmoquettes\\nmor\\nmora\\nmorae\\nmorainal\\nmoraine\\nmoraines\\nmorainic\\nmoral\\nmorale\\nmorales\\nmoralise\\nmoralised\\nmoralises\\nmoralising\\nmoralism\\nmoralisms\\nmoralist\\nmoralistic\\nmoralists\\nmoralities\\nmorality\\nmoralize\\nmoralized\\nmoralizes\\nmoralizing\\nmorally\\nmorals\\nmoras\\nmorass\\nmorasses\\nmorassy\\nmoratoria\\nmoratorium\\nmoratoriums\\nmoratory\\nmoray\\nmorays\\nmorbid\\nmorbidities\\nmorbidity\\nmorbidly\\nmorbidness\\nmorbidnesses\\nmorbific\\nmorbilli\\nmorceau\\nmorceaux\\nmordancies\\nmordancy\\nmordant\\nmordanted\\nmordanting\\nmordantly\\nmordants\\nmordent\\nmordents\\nmore\\nmoreen\\nmoreens\\nmorel\\nmorelle\\nmorelles\\nmorello\\nmorellos\\nmorels\\nmoreover\\nmores\\nmoresque\\nmoresques\\nmorgen\\nmorgens\\nmorgue\\nmorgues\\nmoribund\\nmoribundities\\nmoribundity\\nmorion\\nmorions\\nmorn\\nmorning\\nmornings\\nmorns\\nmorocco\\nmoroccos\\nmoron\\nmoronic\\nmoronically\\nmoronism\\nmoronisms\\nmoronities\\nmoronity\\nmorons\\nmorose\\nmorosely\\nmoroseness\\nmorosenesses\\nmorosities\\nmorosity\\nmorph\\nmorpheme\\nmorphemes\\nmorphia\\nmorphias\\nmorphic\\nmorphin\\nmorphine\\nmorphines\\nmorphins\\nmorpho\\nmorphologic\\nmorphologically\\nmorphologies\\nmorphology\\nmorphos\\nmorphs\\nmorrion\\nmorrions\\nmorris\\nmorrises\\nmorro\\nmorros\\nmorrow\\nmorrows\\nmors\\nmorsel\\nmorseled\\nmorseling\\nmorselled\\nmorselling\\nmorsels\\nmort\\nmortal\\nmortalities\\nmortality\\nmortally\\nmortals\\nmortar\\nmortared\\nmortaring\\nmortars\\nmortary\\nmortgage\\nmortgaged\\nmortgagee\\nmortgagees\\nmortgages\\nmortgaging\\nmortgagor\\nmortgagors\\nmortice\\nmorticed\\nmortices\\nmorticing\\nmortification\\nmortifications\\nmortified\\nmortifies\\nmortify\\nmortifying\\nmortise\\nmortised\\nmortiser\\nmortisers\\nmortises\\nmortising\\nmortmain\\nmortmains\\nmorts\\nmortuaries\\nmortuary\\nmorula\\nmorulae\\nmorular\\nmorulas\\nmosaic\\nmosaicked\\nmosaicking\\nmosaics\\nmoschate\\nmosey\\nmoseyed\\nmoseying\\nmoseys\\nmoshav\\nmoshavim\\nmosk\\nmosks\\nmosque\\nmosques\\nmosquito\\nmosquitoes\\nmosquitos\\nmoss\\nmossback\\nmossbacks\\nmossed\\nmosser\\nmossers\\nmosses\\nmossier\\nmossiest\\nmossing\\nmosslike\\nmosso\\nmossy\\nmost\\nmoste\\nmostly\\nmosts\\nmot\\nmote\\nmotel\\nmotels\\nmotes\\nmotet\\nmotets\\nmotey\\nmoth\\nmothball\\nmothballed\\nmothballing\\nmothballs\\nmother\\nmothered\\nmotherhood\\nmotherhoods\\nmothering\\nmotherland\\nmotherlands\\nmotherless\\nmotherly\\nmothers\\nmothery\\nmothier\\nmothiest\\nmoths\\nmothy\\nmotif\\nmotifs\\nmotile\\nmotiles\\nmotilities\\nmotility\\nmotion\\nmotional\\nmotioned\\nmotioner\\nmotioners\\nmotioning\\nmotionless\\nmotionlessly\\nmotionlessness\\nmotionlessnesses\\nmotions\\nmotivate\\nmotivated\\nmotivates\\nmotivating\\nmotivation\\nmotivations\\nmotive\\nmotived\\nmotiveless\\nmotives\\nmotivic\\nmotiving\\nmotivities\\nmotivity\\nmotley\\nmotleyer\\nmotleyest\\nmotleys\\nmotlier\\nmotliest\\nmotmot\\nmotmots\\nmotor\\nmotorbike\\nmotorbikes\\nmotorboat\\nmotorboats\\nmotorbus\\nmotorbuses\\nmotorbusses\\nmotorcar\\nmotorcars\\nmotorcycle\\nmotorcycles\\nmotorcyclist\\nmotorcyclists\\nmotored\\nmotoric\\nmotoring\\nmotorings\\nmotorise\\nmotorised\\nmotorises\\nmotorising\\nmotorist\\nmotorists\\nmotorize\\nmotorized\\nmotorizes\\nmotorizing\\nmotorman\\nmotormen\\nmotors\\nmotortruck\\nmotortrucks\\nmotorway\\nmotorways\\nmots\\nmott\\nmotte\\nmottes\\nmottle\\nmottled\\nmottler\\nmottlers\\nmottles\\nmottling\\nmotto\\nmottoes\\nmottos\\nmotts\\nmouch\\nmouched\\nmouches\\nmouching\\nmouchoir\\nmouchoirs\\nmoue\\nmoues\\nmoufflon\\nmoufflons\\nmouflon\\nmouflons\\nmouille\\nmoujik\\nmoujiks\\nmoulage\\nmoulages\\nmould\\nmoulded\\nmoulder\\nmouldered\\nmouldering\\nmoulders\\nmouldier\\nmouldiest\\nmoulding\\nmouldings\\nmoulds\\nmouldy\\nmoulin\\nmoulins\\nmoult\\nmoulted\\nmoulter\\nmoulters\\nmoulting\\nmoults\\nmound\\nmounded\\nmounding\\nmounds\\nmount\\nmountable\\nmountain\\nmountaineer\\nmountaineered\\nmountaineering\\nmountaineers\\nmountainous\\nmountains\\nmountaintop\\nmountaintops\\nmountebank\\nmountebanks\\nmounted\\nmounter\\nmounters\\nmounting\\nmountings\\nmounts\\nmourn\\nmourned\\nmourner\\nmourners\\nmournful\\nmournfuller\\nmournfullest\\nmournfully\\nmournfulness\\nmournfulnesses\\nmourning\\nmournings\\nmourns\\nmouse\\nmoused\\nmouser\\nmousers\\nmouses\\nmousetrap\\nmousetraps\\nmousey\\nmousier\\nmousiest\\nmousily\\nmousing\\nmousings\\nmoussaka\\nmoussakas\\nmousse\\nmousses\\nmoustache\\nmoustaches\\nmousy\\nmouth\\nmouthed\\nmouther\\nmouthers\\nmouthful\\nmouthfuls\\nmouthier\\nmouthiest\\nmouthily\\nmouthing\\nmouthpiece\\nmouthpieces\\nmouths\\nmouthy\\nmouton\\nmoutons\\nmovable\\nmovables\\nmovably\\nmove\\nmoveable\\nmoveables\\nmoveably\\nmoved\\nmoveless\\nmovement\\nmovements\\nmover\\nmovers\\nmoves\\nmovie\\nmoviedom\\nmoviedoms\\nmovies\\nmoving\\nmovingly\\nmow\\nmowed\\nmower\\nmowers\\nmowing\\nmown\\nmows\\nmoxa\\nmoxas\\nmoxie\\nmoxies\\nmozetta\\nmozettas\\nmozette\\nmozo\\nmozos\\nmozzetta\\nmozzettas\\nmozzette\\nmridanga\\nmridangas\\nmu\\nmuch\\nmuches\\nmuchness\\nmuchnesses\\nmucic\\nmucid\\nmucidities\\nmucidity\\nmucilage\\nmucilages\\nmucilaginous\\nmucin\\nmucinoid\\nmucinous\\nmucins\\nmuck\\nmucked\\nmucker\\nmuckers\\nmuckier\\nmuckiest\\nmuckily\\nmucking\\nmuckle\\nmuckles\\nmuckluck\\nmucklucks\\nmuckrake\\nmuckraked\\nmuckrakes\\nmuckraking\\nmucks\\nmuckworm\\nmuckworms\\nmucky\\nmucluc\\nmuclucs\\nmucoid\\nmucoidal\\nmucoids\\nmucor\\nmucors\\nmucosa\\nmucosae\\nmucosal\\nmucosas\\nmucose\\nmucosities\\nmucositis\\nmucosity\\nmucous\\nmucro\\nmucrones\\nmucus\\nmucuses\\nmud\\nmudcap\\nmudcapped\\nmudcapping\\nmudcaps\\nmudded\\nmudder\\nmudders\\nmuddied\\nmuddier\\nmuddies\\nmuddiest\\nmuddily\\nmuddiness\\nmuddinesses\\nmudding\\nmuddle\\nmuddled\\nmuddler\\nmuddlers\\nmuddles\\nmuddling\\nmuddy\\nmuddying\\nmudfish\\nmudfishes\\nmudguard\\nmudguards\\nmudlark\\nmudlarks\\nmudpuppies\\nmudpuppy\\nmudra\\nmudras\\nmudrock\\nmudrocks\\nmudroom\\nmudrooms\\nmuds\\nmudsill\\nmudsills\\nmudstone\\nmudstones\\nmueddin\\nmueddins\\nmuenster\\nmuensters\\nmuezzin\\nmuezzins\\nmuff\\nmuffed\\nmuffin\\nmuffing\\nmuffins\\nmuffle\\nmuffled\\nmuffler\\nmufflers\\nmuffles\\nmuffling\\nmuffs\\nmufti\\nmuftis\\nmug\\nmugg\\nmuggar\\nmuggars\\nmugged\\nmugger\\nmuggers\\nmuggier\\nmuggiest\\nmuggily\\nmugginess\\nmugginesses\\nmugging\\nmuggings\\nmuggins\\nmuggs\\nmuggur\\nmuggurs\\nmuggy\\nmugho\\nmugs\\nmugwort\\nmugworts\\nmugwump\\nmugwumps\\nmuhlies\\nmuhly\\nmujik\\nmujiks\\nmukluk\\nmukluks\\nmulatto\\nmulattoes\\nmulattos\\nmulberries\\nmulberry\\nmulch\\nmulched\\nmulches\\nmulching\\nmulct\\nmulcted\\nmulcting\\nmulcts\\nmule\\nmuled\\nmules\\nmuleta\\nmuletas\\nmuleteer\\nmuleteers\\nmuley\\nmuleys\\nmuling\\nmulish\\nmulishly\\nmulishness\\nmulishnesses\\nmull\\nmulla\\nmullah\\nmullahs\\nmullas\\nmulled\\nmullein\\nmulleins\\nmullen\\nmullens\\nmuller\\nmullers\\nmullet\\nmullets\\nmulley\\nmulleys\\nmulligan\\nmulligans\\nmulling\\nmullion\\nmullioned\\nmullioning\\nmullions\\nmullite\\nmullites\\nmullock\\nmullocks\\nmullocky\\nmulls\\nmultiarmed\\nmultibarreled\\nmultibillion\\nmultibranched\\nmultibuilding\\nmulticenter\\nmultichambered\\nmultichannel\\nmulticolored\\nmulticounty\\nmulticultural\\nmultidenominational\\nmultidimensional\\nmultidirectional\\nmultidisciplinary\\nmultidiscipline\\nmultidivisional\\nmultidwelling\\nmultifaceted\\nmultifamily\\nmultifarous\\nmultifarously\\nmultifid\\nmultifilament\\nmultifunction\\nmultifunctional\\nmultigrade\\nmultiheaded\\nmultihospital\\nmultihued\\nmultijet\\nmultilane\\nmultilateral\\nmultilevel\\nmultilingual\\nmultilingualism\\nmultilingualisms\\nmultimedia\\nmultimember\\nmultimillion\\nmultimillionaire\\nmultimodalities\\nmultimodality\\nmultipart\\nmultipartite\\nmultiparty\\nmultiped\\nmultipeds\\nmultiplant\\nmultiple\\nmultiples\\nmultiplexor\\nmultiplexors\\nmultiplication\\nmultiplications\\nmultiplicities\\nmultiplicity\\nmultiplied\\nmultiplier\\nmultipliers\\nmultiplies\\nmultiply\\nmultiplying\\nmultipolar\\nmultiproblem\\nmultiproduct\\nmultipurpose\\nmultiracial\\nmultiroomed\\nmultisense\\nmultiservice\\nmultisided\\nmultispeed\\nmultistage\\nmultistep\\nmultistory\\nmultisyllabic\\nmultitalented\\nmultitrack\\nmultitude\\nmultitudes\\nmultitudinous\\nmultiunion\\nmultiunit\\nmultivariate\\nmultiwarhead\\nmultiyear\\nmulture\\nmultures\\nmum\\nmumble\\nmumbled\\nmumbler\\nmumblers\\nmumbles\\nmumbling\\nmumbo\\nmumm\\nmummed\\nmummer\\nmummeries\\nmummers\\nmummery\\nmummied\\nmummies\\nmummification\\nmummifications\\nmummified\\nmummifies\\nmummify\\nmummifying\\nmumming\\nmumms\\nmummy\\nmummying\\nmump\\nmumped\\nmumper\\nmumpers\\nmumping\\nmumps\\nmums\\nmun\\nmunch\\nmunched\\nmuncher\\nmunchers\\nmunches\\nmunching\\nmundane\\nmundanely\\nmundungo\\nmundungos\\nmunge\\nmungo\\nmungoose\\nmungooses\\nmungos\\nmungs\\nmunicipal\\nmunicipalities\\nmunicipality\\nmunicipally\\nmunificence\\nmunificences\\nmunificent\\nmuniment\\nmuniments\\nmunition\\nmunitioned\\nmunitioning\\nmunitions\\nmunnion\\nmunnions\\nmuns\\nmunster\\nmunsters\\nmuntin\\nmunting\\nmuntings\\nmuntins\\nmuntjac\\nmuntjacs\\nmuntjak\\nmuntjaks\\nmuon\\nmuonic\\nmuons\\nmura\\nmuraenid\\nmuraenids\\nmural\\nmuralist\\nmuralists\\nmurals\\nmuras\\nmurder\\nmurdered\\nmurderee\\nmurderees\\nmurderer\\nmurderers\\nmurderess\\nmurderesses\\nmurdering\\nmurderous\\nmurderously\\nmurders\\nmure\\nmured\\nmurein\\nmureins\\nmures\\nmurex\\nmurexes\\nmuriate\\nmuriated\\nmuriates\\nmuricate\\nmurices\\nmurid\\nmurids\\nmurine\\nmurines\\nmuring\\nmurk\\nmurker\\nmurkest\\nmurkier\\nmurkiest\\nmurkily\\nmurkiness\\nmurkinesses\\nmurkly\\nmurks\\nmurky\\nmurmur\\nmurmured\\nmurmurer\\nmurmurers\\nmurmuring\\nmurmurous\\nmurmurs\\nmurphies\\nmurphy\\nmurr\\nmurra\\nmurrain\\nmurrains\\nmurras\\nmurre\\nmurrelet\\nmurrelets\\nmurres\\nmurrey\\nmurreys\\nmurrha\\nmurrhas\\nmurrhine\\nmurries\\nmurrine\\nmurrs\\nmurry\\nmurther\\nmurthered\\nmurthering\\nmurthers\\nmus\\nmusca\\nmuscadel\\nmuscadels\\nmuscae\\nmuscat\\nmuscatel\\nmuscatels\\nmuscats\\nmuscid\\nmuscids\\nmuscle\\nmuscled\\nmuscles\\nmuscling\\nmuscly\\nmuscular\\nmuscularities\\nmuscularity\\nmusculature\\nmusculatures\\nmuse\\nmused\\nmuseful\\nmuser\\nmusers\\nmuses\\nmusette\\nmusettes\\nmuseum\\nmuseums\\nmush\\nmushed\\nmusher\\nmushers\\nmushes\\nmushier\\nmushiest\\nmushily\\nmushing\\nmushroom\\nmushroomed\\nmushrooming\\nmushrooms\\nmushy\\nmusic\\nmusical\\nmusicale\\nmusicales\\nmusically\\nmusicals\\nmusician\\nmusicianly\\nmusicians\\nmusicianship\\nmusicianships\\nmusics\\nmusing\\nmusingly\\nmusings\\nmusjid\\nmusjids\\nmusk\\nmuskeg\\nmuskegs\\nmuskellunge\\nmusket\\nmusketries\\nmusketry\\nmuskets\\nmuskie\\nmuskier\\nmuskies\\nmuskiest\\nmuskily\\nmuskiness\\nmuskinesses\\nmuskit\\nmuskits\\nmuskmelon\\nmuskmelons\\nmuskrat\\nmuskrats\\nmusks\\nmusky\\nmuslin\\nmuslins\\nmuspike\\nmuspikes\\nmusquash\\nmusquashes\\nmuss\\nmussed\\nmussel\\nmussels\\nmusses\\nmussier\\nmussiest\\nmussily\\nmussiness\\nmussinesses\\nmussing\\nmussy\\nmust\\nmustache\\nmustaches\\nmustang\\nmustangs\\nmustard\\nmustards\\nmusted\\nmustee\\nmustees\\nmuster\\nmustered\\nmustering\\nmusters\\nmusth\\nmusths\\nmustier\\nmustiest\\nmustily\\nmustiness\\nmustinesses\\nmusting\\nmusts\\nmusty\\nmut\\nmutabilities\\nmutability\\nmutable\\nmutably\\nmutagen\\nmutagens\\nmutant\\nmutants\\nmutase\\nmutases\\nmutate\\nmutated\\nmutates\\nmutating\\nmutation\\nmutational\\nmutations\\nmutative\\nmutch\\nmutches\\nmutchkin\\nmutchkins\\nmute\\nmuted\\nmutedly\\nmutely\\nmuteness\\nmutenesses\\nmuter\\nmutes\\nmutest\\nmuticous\\nmutilate\\nmutilated\\nmutilates\\nmutilating\\nmutilation\\nmutilations\\nmutilator\\nmutilators\\nmutine\\nmutined\\nmutineer\\nmutineered\\nmutineering\\nmutineers\\nmutines\\nmuting\\nmutinied\\nmutinies\\nmutining\\nmutinous\\nmutinously\\nmutiny\\nmutinying\\nmutism\\nmutisms\\nmuts\\nmutt\\nmutter\\nmuttered\\nmutterer\\nmutterers\\nmuttering\\nmutters\\nmutton\\nmuttons\\nmuttony\\nmutts\\nmutual\\nmutually\\nmutuel\\nmutuels\\nmutular\\nmutule\\nmutules\\nmuumuu\\nmuumuus\\nmuzhik\\nmuzhiks\\nmuzjik\\nmuzjiks\\nmuzzier\\nmuzziest\\nmuzzily\\nmuzzle\\nmuzzled\\nmuzzler\\nmuzzlers\\nmuzzles\\nmuzzling\\nmuzzy\\nmy\\nmyalgia\\nmyalgias\\nmyalgic\\nmyases\\nmyasis\\nmycele\\nmyceles\\nmycelia\\nmycelial\\nmycelian\\nmycelium\\nmyceloid\\nmycetoma\\nmycetomas\\nmycetomata\\nmycologies\\nmycology\\nmycoses\\nmycosis\\nmycotic\\nmyelin\\nmyeline\\nmyelines\\nmyelinic\\nmyelins\\nmyelitides\\nmyelitis\\nmyeloid\\nmyeloma\\nmyelomas\\nmyelomata\\nmyelosuppression\\nmyelosuppressions\\nmyiases\\nmyiasis\\nmylonite\\nmylonites\\nmyna\\nmynah\\nmynahs\\nmynas\\nmynheer\\nmynheers\\nmyoblast\\nmyoblasts\\nmyogenic\\nmyograph\\nmyographs\\nmyoid\\nmyologic\\nmyologies\\nmyology\\nmyoma\\nmyomas\\nmyomata\\nmyopathies\\nmyopathy\\nmyope\\nmyopes\\nmyopia\\nmyopias\\nmyopic\\nmyopically\\nmyopies\\nmyopy\\nmyoscope\\nmyoscopes\\nmyoses\\nmyosin\\nmyosins\\nmyosis\\nmyosote\\nmyosotes\\nmyosotis\\nmyosotises\\nmyotic\\nmyotics\\nmyotome\\nmyotomes\\nmyotonia\\nmyotonias\\nmyotonic\\nmyriad\\nmyriads\\nmyriapod\\nmyriapods\\nmyrica\\nmyricas\\nmyriopod\\nmyriopods\\nmyrmidon\\nmyrmidons\\nmyrrh\\nmyrrhic\\nmyrrhs\\nmyrtle\\nmyrtles\\nmyself\\nmysost\\nmysosts\\nmystagog\\nmystagogs\\nmysteries\\nmysterious\\nmysteriously\\nmysteriousness\\nmysteriousnesses\\nmystery\\nmystic\\nmystical\\nmysticly\\nmystics\\nmystification\\nmystifications\\nmystified\\nmystifies\\nmystify\\nmystifying\\nmystique\\nmystiques\\nmyth\\nmythic\\nmythical\\nmythoi\\nmythological\\nmythologies\\nmythologist\\nmythologists\\nmythology\\nmythos\\nmyths\\nmyxedema\\nmyxedemas\\nmyxocyte\\nmyxocytes\\nmyxoid\\nmyxoma\\nmyxomas\\nmyxomata\\nna\\nnab\\nnabbed\\nnabbing\\nnabis\\nnabob\\nnaboberies\\nnabobery\\nnabobess\\nnabobesses\\nnabobism\\nnabobisms\\nnabobs\\nnabs\\nnacelle\\nnacelles\\nnacre\\nnacred\\nnacreous\\nnacres\\nnadir\\nnadiral\\nnadirs\\nnae\\nnaething\\nnaethings\\nnaevi\\nnaevoid\\nnaevus\\nnag\\nnagana\\nnaganas\\nnagged\\nnagger\\nnaggers\\nnagging\\nnags\\nnaiad\\nnaiades\\nnaiads\\nnaif\\nnaifs\\nnail\\nnailed\\nnailer\\nnailers\\nnailfold\\nnailfolds\\nnailhead\\nnailheads\\nnailing\\nnails\\nnailset\\nnailsets\\nnainsook\\nnainsooks\\nnaive\\nnaively\\nnaiveness\\nnaivenesses\\nnaiver\\nnaives\\nnaivest\\nnaivete\\nnaivetes\\nnaiveties\\nnaivety\\nnaked\\nnakeder\\nnakedest\\nnakedly\\nnakedness\\nnakednesses\\nnaled\\nnaleds\\nnaloxone\\nnaloxones\\nnamable\\nname\\nnameable\\nnamed\\nnameless\\nnamelessly\\nnamely\\nnamer\\nnamers\\nnames\\nnamesake\\nnamesakes\\nnaming\\nnana\\nnanas\\nnance\\nnances\\nnandin\\nnandins\\nnanism\\nnanisms\\nnankeen\\nnankeens\\nnankin\\nnankins\\nnannie\\nnannies\\nnanny\\nnanogram\\nnanograms\\nnanowatt\\nnanowatts\\nnaoi\\nnaos\\nnap\\nnapalm\\nnapalmed\\nnapalming\\nnapalms\\nnape\\nnaperies\\nnapery\\nnapes\\nnaphtha\\nnaphthas\\nnaphthol\\nnaphthols\\nnaphthyl\\nnapiform\\nnapkin\\nnapkins\\nnapless\\nnapoleon\\nnapoleons\\nnappe\\nnapped\\nnapper\\nnappers\\nnappes\\nnappie\\nnappier\\nnappies\\nnappiest\\nnapping\\nnappy\\nnaps\\nnarc\\nnarcein\\nnarceine\\nnarceines\\nnarceins\\nnarcism\\nnarcisms\\nnarcissi\\nnarcissism\\nnarcissisms\\nnarcissist\\nnarcissists\\nnarcissus\\nnarcissuses\\nnarcist\\nnarcists\\nnarco\\nnarcos\\nnarcose\\nnarcoses\\nnarcosis\\nnarcotic\\nnarcotics\\nnarcs\\nnard\\nnardine\\nnards\\nnares\\nnarghile\\nnarghiles\\nnargile\\nnargileh\\nnargilehs\\nnargiles\\nnarial\\nnaric\\nnarine\\nnaris\\nnark\\nnarked\\nnarking\\nnarks\\nnarrate\\nnarrated\\nnarrater\\nnarraters\\nnarrates\\nnarrating\\nnarration\\nnarrations\\nnarrative\\nnarratives\\nnarrator\\nnarrators\\nnarrow\\nnarrowed\\nnarrower\\nnarrowest\\nnarrowing\\nnarrowly\\nnarrowness\\nnarrownesses\\nnarrows\\nnarthex\\nnarthexes\\nnarwal\\nnarwals\\nnarwhal\\nnarwhale\\nnarwhales\\nnarwhals\\nnary\\nnasal\\nnasalise\\nnasalised\\nnasalises\\nnasalising\\nnasalities\\nnasality\\nnasalize\\nnasalized\\nnasalizes\\nnasalizing\\nnasally\\nnasals\\nnascence\\nnascences\\nnascencies\\nnascency\\nnascent\\nnasial\\nnasion\\nnasions\\nnastic\\nnastier\\nnastiest\\nnastily\\nnastiness\\nnastinesses\\nnasturtium\\nnasturtiums\\nnasty\\nnatal\\nnatalities\\nnatality\\nnatant\\nnatantly\\nnatation\\nnatations\\nnatatory\\nnates\\nnathless\\nnation\\nnational\\nnationalism\\nnationalisms\\nnationalist\\nnationalistic\\nnationalists\\nnationalities\\nnationality\\nnationalization\\nnationalizations\\nnationalize\\nnationalized\\nnationalizes\\nnationalizing\\nnationally\\nnationals\\nnationhood\\nnationhoods\\nnations\\nnative\\nnatively\\nnatives\\nnativism\\nnativisms\\nnativist\\nnativists\\nnativities\\nnativity\\nnatrium\\nnatriums\\nnatron\\nnatrons\\nnatter\\nnattered\\nnattering\\nnatters\\nnattier\\nnattiest\\nnattily\\nnattiness\\nnattinesses\\nnatty\\nnatural\\nnaturalism\\nnaturalisms\\nnaturalist\\nnaturalistic\\nnaturalists\\nnaturalization\\nnaturalizations\\nnaturalize\\nnaturalized\\nnaturalizes\\nnaturalizing\\nnaturally\\nnaturalness\\nnaturalnesses\\nnaturals\\nnature\\nnatured\\nnatures\\nnaught\\nnaughtier\\nnaughtiest\\nnaughtily\\nnaughtiness\\nnaughtinesses\\nnaughts\\nnaughty\\nnaumachies\\nnaumachy\\nnauplial\\nnauplii\\nnauplius\\nnausea\\nnauseant\\nnauseants\\nnauseas\\nnauseate\\nnauseated\\nnauseates\\nnauseating\\nnauseatingly\\nnauseous\\nnautch\\nnautches\\nnautical\\nnautically\\nnautili\\nnautilus\\nnautiluses\\nnavaid\\nnavaids\\nnaval\\nnavally\\nnavar\\nnavars\\nnave\\nnavel\\nnavels\\nnaves\\nnavette\\nnavettes\\nnavicert\\nnavicerts\\nnavies\\nnavigabilities\\nnavigability\\nnavigable\\nnavigably\\nnavigate\\nnavigated\\nnavigates\\nnavigating\\nnavigation\\nnavigations\\nnavigator\\nnavigators\\nnavvies\\nnavvy\\nnavy\\nnawab\\nnawabs\\nnay\\nnays\\nnazi\\nnazified\\nnazifies\\nnazify\\nnazifying\\nnazis\\nneap\\nneaps\\nnear\\nnearby\\nneared\\nnearer\\nnearest\\nnearing\\nnearlier\\nnearliest\\nnearly\\nnearness\\nnearnesses\\nnears\\nnearsighted\\nnearsightedly\\nnearsightedness\\nnearsightednesses\\nneat\\nneaten\\nneatened\\nneatening\\nneatens\\nneater\\nneatest\\nneath\\nneatherd\\nneatherds\\nneatly\\nneatness\\nneatnesses\\nneats\\nneb\\nnebbish\\nnebbishes\\nnebs\\nnebula\\nnebulae\\nnebular\\nnebulas\\nnebule\\nnebulise\\nnebulised\\nnebulises\\nnebulising\\nnebulize\\nnebulized\\nnebulizes\\nnebulizing\\nnebulose\\nnebulous\\nnebuly\\nnecessaries\\nnecessarily\\nnecessary\\nnecessitate\\nnecessitated\\nnecessitates\\nnecessitating\\nnecessities\\nnecessity\\nneck\\nneckband\\nneckbands\\nnecked\\nneckerchief\\nneckerchiefs\\nnecking\\nneckings\\nnecklace\\nnecklaces\\nneckless\\nnecklike\\nneckline\\nnecklines\\nnecks\\nnecktie\\nneckties\\nneckwear\\nneckwears\\nnecrologies\\nnecrology\\nnecromancer\\nnecromancers\\nnecromancies\\nnecromancy\\nnecropsied\\nnecropsies\\nnecropsy\\nnecropsying\\nnecrose\\nnecrosed\\nnecroses\\nnecrosing\\nnecrosis\\nnecrotic\\nnectar\\nnectaries\\nnectarine\\nnectarines\\nnectars\\nnectary\\nnee\\nneed\\nneeded\\nneeder\\nneeders\\nneedful\\nneedfuls\\nneedier\\nneediest\\nneedily\\nneeding\\nneedle\\nneedled\\nneedlepoint\\nneedlepoints\\nneedler\\nneedlers\\nneedles\\nneedless\\nneedlessly\\nneedlework\\nneedleworks\\nneedling\\nneedlings\\nneeds\\nneedy\\nneem\\nneems\\nneep\\nneeps\\nnefarious\\nnefariouses\\nnefariously\\nnegate\\nnegated\\nnegater\\nnegaters\\nnegates\\nnegating\\nnegation\\nnegations\\nnegative\\nnegatived\\nnegatively\\nnegatives\\nnegativing\\nnegaton\\nnegatons\\nnegator\\nnegators\\nnegatron\\nnegatrons\\nneglect\\nneglected\\nneglectful\\nneglecting\\nneglects\\nneglige\\nnegligee\\nnegligees\\nnegligence\\nnegligences\\nnegligent\\nnegligently\\nnegliges\\nnegligible\\nnegotiable\\nnegotiate\\nnegotiated\\nnegotiates\\nnegotiating\\nnegotiation\\nnegotiations\\nnegotiator\\nnegotiators\\nnegro\\nnegroes\\nnegroid\\nnegroids\\nnegus\\nneguses\\nneif\\nneifs\\nneigh\\nneighbor\\nneighbored\\nneighborhood\\nneighborhoods\\nneighboring\\nneighborliness\\nneighborlinesses\\nneighborly\\nneighbors\\nneighed\\nneighing\\nneighs\\nneist\\nneither\\nnekton\\nnektonic\\nnektons\\nnelson\\nnelsons\\nnelumbo\\nnelumbos\\nnema\\nnemas\\nnematic\\nnematode\\nnematodes\\nnemeses\\nnemesis\\nnene\\nneolith\\nneoliths\\nneologic\\nneologies\\nneologism\\nneologisms\\nneology\\nneomorph\\nneomorphs\\nneomycin\\nneomycins\\nneon\\nneonatal\\nneonate\\nneonates\\nneoned\\nneons\\nneophyte\\nneophytes\\nneoplasm\\nneoplasms\\nneoprene\\nneoprenes\\nneotenic\\nneotenies\\nneoteny\\nneoteric\\nneoterics\\nneotype\\nneotypes\\nnepenthe\\nnepenthes\\nnephew\\nnephews\\nnephric\\nnephrism\\nnephrisms\\nnephrite\\nnephrites\\nnephron\\nnephrons\\nnepotic\\nnepotism\\nnepotisms\\nnepotist\\nnepotists\\nnereid\\nnereides\\nnereids\\nnereis\\nneritic\\nnerol\\nneroli\\nnerolis\\nnerols\\nnerts\\nnertz\\nnervate\\nnerve\\nnerved\\nnerveless\\nnerves\\nnervier\\nnerviest\\nnervily\\nnervine\\nnervines\\nnerving\\nnervings\\nnervous\\nnervously\\nnervousness\\nnervousnesses\\nnervule\\nnervules\\nnervure\\nnervures\\nnervy\\nnescient\\nnescients\\nness\\nnesses\\nnest\\nnested\\nnester\\nnesters\\nnesting\\nnestle\\nnestled\\nnestler\\nnestlers\\nnestles\\nnestlike\\nnestling\\nnestlings\\nnestor\\nnestors\\nnests\\nnet\\nnether\\nnetless\\nnetlike\\nnetop\\nnetops\\nnets\\nnetsuke\\nnetsukes\\nnett\\nnettable\\nnetted\\nnetter\\nnetters\\nnettier\\nnettiest\\nnetting\\nnettings\\nnettle\\nnettled\\nnettler\\nnettlers\\nnettles\\nnettlesome\\nnettlier\\nnettliest\\nnettling\\nnettly\\nnetts\\nnetty\\nnetwork\\nnetworked\\nnetworking\\nnetworks\\nneum\\nneumatic\\nneume\\nneumes\\nneumic\\nneums\\nneural\\nneuralgia\\nneuralgias\\nneuralgic\\nneurally\\nneuraxon\\nneuraxons\\nneuritic\\nneuritics\\nneuritides\\nneuritis\\nneuritises\\nneuroid\\nneurologic\\nneurological\\nneurologically\\nneurologies\\nneurologist\\nneurologists\\nneurology\\nneuroma\\nneuromas\\nneuromata\\nneuron\\nneuronal\\nneurone\\nneurones\\nneuronic\\nneurons\\nneuropathies\\nneuropathy\\nneuropsych\\nneurosal\\nneuroses\\nneurosis\\nneurosurgeon\\nneurosurgeons\\nneurotic\\nneurotically\\nneurotics\\nneurotoxicities\\nneurotoxicity\\nneuston\\nneustons\\nneuter\\nneutered\\nneutering\\nneuters\\nneutral\\nneutralities\\nneutrality\\nneutralization\\nneutralizations\\nneutralize\\nneutralized\\nneutralizes\\nneutralizing\\nneutrals\\nneutrino\\nneutrinos\\nneutron\\nneutrons\\nneve\\nnever\\nnevermore\\nnevertheless\\nneves\\nnevi\\nnevoid\\nnevus\\nnew\\nnewborn\\nnewborns\\nnewcomer\\nnewcomers\\nnewel\\nnewels\\nnewer\\nnewest\\nnewfound\\nnewish\\nnewly\\nnewlywed\\nnewlyweds\\nnewmown\\nnewness\\nnewnesses\\nnews\\nnewsboy\\nnewsboys\\nnewscast\\nnewscaster\\nnewscasters\\nnewscasts\\nnewsier\\nnewsies\\nnewsiest\\nnewsless\\nnewsletter\\nnewsmagazine\\nnewsmagazines\\nnewsman\\nnewsmen\\nnewspaper\\nnewspaperman\\nnewspapermen\\nnewspapers\\nnewspeak\\nnewspeaks\\nnewsprint\\nnewsprints\\nnewsreel\\nnewsreels\\nnewsroom\\nnewsrooms\\nnewsstand\\nnewsstands\\nnewsworthy\\nnewsy\\nnewt\\nnewton\\nnewtons\\nnewts\\nnext\\nnextdoor\\nnexus\\nnexuses\\nngwee\\nniacin\\nniacins\\nnib\\nnibbed\\nnibbing\\nnibble\\nnibbled\\nnibbler\\nnibblers\\nnibbles\\nnibbling\\nniblick\\nniblicks\\nniblike\\nnibs\\nnice\\nnicely\\nniceness\\nnicenesses\\nnicer\\nnicest\\nniceties\\nnicety\\nniche\\nniched\\nniches\\nniching\\nnick\\nnicked\\nnickel\\nnickeled\\nnickelic\\nnickeling\\nnickelled\\nnickelling\\nnickels\\nnicker\\nnickered\\nnickering\\nnickers\\nnicking\\nnickle\\nnickles\\nnicknack\\nnicknacks\\nnickname\\nnicknamed\\nnicknames\\nnicknaming\\nnicks\\nnicol\\nnicols\\nnicotin\\nnicotine\\nnicotines\\nnicotins\\nnictate\\nnictated\\nnictates\\nnictating\\nnidal\\nnide\\nnided\\nnidering\\nniderings\\nnides\\nnidget\\nnidgets\\nnidi\\nnidified\\nnidifies\\nnidify\\nnidifying\\nniding\\nnidus\\nniduses\\nniece\\nnieces\\nnielli\\nniellist\\nniellists\\nniello\\nnielloed\\nnielloing\\nniellos\\nnieve\\nnieves\\nniffer\\nniffered\\nniffering\\nniffers\\nniftier\\nniftiest\\nnifty\\nniggard\\nniggarded\\nniggarding\\nniggardliness\\nniggardlinesses\\nniggardly\\nniggards\\nniggle\\nniggled\\nniggler\\nnigglers\\nniggles\\nniggling\\nnigglings\\nnigh\\nnighed\\nnigher\\nnighest\\nnighing\\nnighness\\nnighnesses\\nnighs\\nnight\\nnightcap\\nnightcaps\\nnightclothes\\nnightclub\\nnightclubs\\nnightfall\\nnightfalls\\nnightgown\\nnightgowns\\nnightie\\nnighties\\nnightingale\\nnightingales\\nnightjar\\nnightjars\\nnightly\\nnightmare\\nnightmares\\nnightmarish\\nnights\\nnightshade\\nnightshades\\nnighttime\\nnighttimes\\nnighty\\nnigrified\\nnigrifies\\nnigrify\\nnigrifying\\nnigrosin\\nnigrosins\\nnihil\\nnihilism\\nnihilisms\\nnihilist\\nnihilists\\nnihilities\\nnihility\\nnihils\\nnil\\nnilgai\\nnilgais\\nnilgau\\nnilgaus\\nnilghai\\nnilghais\\nnilghau\\nnilghaus\\nnill\\nnilled\\nnilling\\nnills\\nnils\\nnim\\nnimbi\\nnimble\\nnimbleness\\nnimblenesses\\nnimbler\\nnimblest\\nnimbly\\nnimbus\\nnimbused\\nnimbuses\\nnimieties\\nnimiety\\nnimious\\nnimmed\\nnimming\\nnimrod\\nnimrods\\nnims\\nnincompoop\\nnincompoops\\nnine\\nninebark\\nninebarks\\nninefold\\nninepin\\nninepins\\nnines\\nnineteen\\nnineteens\\nnineteenth\\nnineteenths\\nnineties\\nninetieth\\nninetieths\\nninety\\nninnies\\nninny\\nninnyish\\nninon\\nninons\\nninth\\nninthly\\nninths\\nniobic\\nniobium\\nniobiums\\nniobous\\nnip\\nnipa\\nnipas\\nnipped\\nnipper\\nnippers\\nnippier\\nnippiest\\nnippily\\nnipping\\nnipple\\nnipples\\nnippy\\nnips\\nnirvana\\nnirvanas\\nnirvanic\\nnisei\\nniseis\\nnisi\\nnisus\\nnit\\nnitchie\\nnitchies\\nniter\\nniters\\nnitid\\nniton\\nnitons\\nnitpick\\nnitpicked\\nnitpicking\\nnitpicks\\nnitrate\\nnitrated\\nnitrates\\nnitrating\\nnitrator\\nnitrators\\nnitre\\nnitres\\nnitric\\nnitrid\\nnitride\\nnitrides\\nnitrids\\nnitrified\\nnitrifies\\nnitrify\\nnitrifying\\nnitril\\nnitrile\\nnitriles\\nnitrils\\nnitrite\\nnitrites\\nnitro\\nnitrogen\\nnitrogenous\\nnitrogens\\nnitroglycerin\\nnitroglycerine\\nnitroglycerines\\nnitroglycerins\\nnitrolic\\nnitros\\nnitroso\\nnitrosurea\\nnitrosyl\\nnitrosyls\\nnitrous\\nnits\\nnittier\\nnittiest\\nnitty\\nnitwit\\nnitwits\\nnival\\nniveous\\nnix\\nnixed\\nnixes\\nnixie\\nnixies\\nnixing\\nnixy\\nnizam\\nnizamate\\nnizamates\\nnizams\\nno\\nnob\\nnobbier\\nnobbiest\\nnobbily\\nnobble\\nnobbled\\nnobbler\\nnobblers\\nnobbles\\nnobbling\\nnobby\\nnobelium\\nnobeliums\\nnobilities\\nnobility\\nnoble\\nnobleman\\nnoblemen\\nnobleness\\nnoblenesses\\nnobler\\nnobles\\nnoblesse\\nnoblesses\\nnoblest\\nnobly\\nnobodies\\nnobody\\nnobs\\nnocent\\nnock\\nnocked\\nnocking\\nnocks\\nnoctuid\\nnoctuids\\nnoctule\\nnoctules\\nnoctuoid\\nnocturn\\nnocturnal\\nnocturne\\nnocturnes\\nnocturns\\nnocuous\\nnod\\nnodal\\nnodalities\\nnodality\\nnodally\\nnodded\\nnodder\\nnodders\\nnoddies\\nnodding\\nnoddle\\nnoddled\\nnoddles\\nnoddling\\nnoddy\\nnode\\nnodes\\nnodi\\nnodical\\nnodose\\nnodosities\\nnodosity\\nnodous\\nnods\\nnodular\\nnodule\\nnodules\\nnodulose\\nnodulous\\nnodus\\nnoel\\nnoels\\nnoes\\nnoesis\\nnoesises\\nnoetic\\nnog\\nnogg\\nnoggin\\nnogging\\nnoggings\\nnoggins\\nnoggs\\nnogs\\nnoh\\nnohes\\nnohow\\nnoil\\nnoils\\nnoily\\nnoir\\nnoise\\nnoised\\nnoisemaker\\nnoisemakers\\nnoises\\nnoisier\\nnoisiest\\nnoisily\\nnoisiness\\nnoisinesses\\nnoising\\nnoisome\\nnoisy\\nnolo\\nnolos\\nnom\\nnoma\\nnomad\\nnomadic\\nnomadism\\nnomadisms\\nnomads\\nnomarch\\nnomarchies\\nnomarchs\\nnomarchy\\nnomas\\nnombles\\nnombril\\nnombrils\\nnome\\nnomen\\nnomenclature\\nnomenclatures\\nnomes\\nnomina\\nnominal\\nnominally\\nnominals\\nnominate\\nnominated\\nnominates\\nnominating\\nnomination\\nnominations\\nnominative\\nnominatives\\nnominee\\nnominees\\nnomism\\nnomisms\\nnomistic\\nnomogram\\nnomograms\\nnomoi\\nnomologies\\nnomology\\nnomos\\nnoms\\nnona\\nnonabrasive\\nnonabsorbent\\nnonacademic\\nnonaccredited\\nnonacid\\nnonacids\\nnonaddictive\\nnonadherence\\nnonadherences\\nnonadhesive\\nnonadjacent\\nnonadjustable\\nnonadult\\nnonadults\\nnonaffiliated\\nnonage\\nnonages\\nnonaggression\\nnonaggressions\\nnonagon\\nnonagons\\nnonalcoholic\\nnonaligned\\nnonappearance\\nnonappearances\\nnonas\\nnonautomatic\\nnonbank\\nnonbasic\\nnonbeing\\nnonbeings\\nnonbeliever\\nnonbelievers\\nnonbook\\nnonbooks\\nnonbreakable\\nnoncancerous\\nnoncandidate\\nnoncandidates\\nnoncarbonated\\nnoncash\\nnonce\\nnonces\\nnonchalance\\nnonchalances\\nnonchalant\\nnonchalantly\\nnonchargeable\\nnonchurchgoer\\nnonchurchgoers\\nnoncitizen\\nnoncitizens\\nnonclassical\\nnonclassified\\nnoncom\\nnoncombat\\nnoncombatant\\nnoncombatants\\nnoncombustible\\nnoncommercial\\nnoncommittal\\nnoncommunicable\\nnoncompliance\\nnoncompliances\\nnoncoms\\nnonconclusive\\nnonconductor\\nnonconductors\\nnonconflicting\\nnonconforming\\nnonconformist\\nnonconformists\\nnonconsecutive\\nnonconstructive\\nnonconsumable\\nnoncontagious\\nnoncontributing\\nnoncontrollable\\nnoncontroversial\\nnoncorrosive\\nnoncriminal\\nnoncritical\\nnoncumulative\\nnoncurrent\\nnondairy\\nnondeductible\\nnondefense\\nnondeferrable\\nnondegradable\\nnondeliveries\\nnondelivery\\nnondemocratic\\nnondenominational\\nnondescript\\nnondestructive\\nnondiscrimination\\nnondiscriminations\\nnondiscriminatory\\nnone\\nnoneducational\\nnonego\\nnonegos\\nnonelastic\\nnonelect\\nnonelected\\nnonelective\\nnonelectric\\nnonelectronic\\nnonemotional\\nnonempty\\nnonenforceable\\nnonenforcement\\nnonenforcements\\nnonentities\\nnonentity\\nnonentries\\nnonentry\\nnonequal\\nnonequals\\nnones\\nnonessential\\nnonesuch\\nnonesuches\\nnonetheless\\nnonevent\\nnonevents\\nnonexchangeable\\nnonexistence\\nnonexistences\\nnonexistent\\nnonexplosive\\nnonfarm\\nnonfat\\nnonfatal\\nnonfattening\\nnonfictional\\nnonflammable\\nnonflowering\\nnonfluid\\nnonfluids\\nnonfocal\\nnonfood\\nnonfunctional\\nnongame\\nnongovernmental\\nnongraded\\nnongreen\\nnonguilt\\nnonguilts\\nnonhardy\\nnonhazardous\\nnonhereditary\\nnonhero\\nnonheroes\\nnonhuman\\nnonideal\\nnonindustrial\\nnonindustrialized\\nnoninfectious\\nnoninflationary\\nnonintegrated\\nnonintellectual\\nnoninterference\\nnonintoxicating\\nnoninvolvement\\nnoninvolvements\\nnonionic\\nnonjuror\\nnonjurors\\nnonlegal\\nnonlethal\\nnonlife\\nnonliterary\\nnonlives\\nnonliving\\nnonlocal\\nnonlocals\\nnonmagnetic\\nnonmalignant\\nnonman\\nnonmedical\\nnonmember\\nnonmembers\\nnonmen\\nnonmetal\\nnonmetallic\\nnonmetals\\nnonmilitary\\nnonmodal\\nnonmoney\\nnonmoral\\nnonmusical\\nnonnarcotic\\nnonnative\\nnonnaval\\nnonnegotiable\\nnonobese\\nnonobjective\\nnonobservance\\nnonobservances\\nnonorthodox\\nnonowner\\nnonowners\\nnonpagan\\nnonpagans\\nnonpapal\\nnonpar\\nnonparallel\\nnonparametric\\nnonpareil\\nnonpareils\\nnonparticipant\\nnonparticipants\\nnonparticipating\\nnonpartisan\\nnonpartisans\\nnonparty\\nnonpaying\\nnonpayment\\nnonpayments\\nnonperformance\\nnonperformances\\nnonperishable\\nnonpermanent\\nnonperson\\nnonpersons\\nnonphysical\\nnonplus\\nnonplused\\nnonpluses\\nnonplusing\\nnonplussed\\nnonplusses\\nnonplussing\\nnonpoisonous\\nnonpolar\\nnonpolitical\\nnonpolluting\\nnonporous\\nnonpregnant\\nnonproductive\\nnonprofessional\\nnonprofit\\nnonproliferation\\nnonproliferations\\nnonpros\\nnonprossed\\nnonprosses\\nnonprossing\\nnonquota\\nnonracial\\nnonradioactive\\nnonrated\\nnonrealistic\\nnonrecoverable\\nnonrecurring\\nnonrefillable\\nnonrefundable\\nnonregistered\\nnonreligious\\nnonrenewable\\nnonrepresentative\\nnonresident\\nnonresidents\\nnonresponsive\\nnonrestricted\\nnonreusable\\nnonreversible\\nnonrigid\\nnonrival\\nnonrivals\\nnonroyal\\nnonrural\\nnonscheduled\\nnonscientific\\nnonscientist\\nnonscientists\\nnonsegregated\\nnonsense\\nnonsenses\\nnonsensical\\nnonsensically\\nnonsexist\\nnonsexual\\nnonsignificant\\nnonsked\\nnonskeds\\nnonskid\\nnonskier\\nnonskiers\\nnonslip\\nnonsmoker\\nnonsmokers\\nnonsmoking\\nnonsolar\\nnonsolid\\nnonsolids\\nnonspeaking\\nnonspecialist\\nnonspecialists\\nnonspecific\\nnonstaining\\nnonstandard\\nnonstick\\nnonstop\\nnonstrategic\\nnonstriker\\nnonstrikers\\nnonstriking\\nnonstudent\\nnonstudents\\nnonsubscriber\\nnonsuch\\nnonsuches\\nnonsugar\\nnonsugars\\nnonsuit\\nnonsuited\\nnonsuiting\\nnonsuits\\nnonsupport\\nnonsupports\\nnonsurgical\\nnonswimmer\\nnontax\\nnontaxable\\nnontaxes\\nnonteaching\\nnontechnical\\nnontidal\\nnontitle\\nnontoxic\\nnontraditional\\nnontransferable\\nnontropical\\nnontrump\\nnontruth\\nnontruths\\nnontypical\\nnonunion\\nnonunions\\nnonuple\\nnonuples\\nnonurban\\nnonuse\\nnonuser\\nnonusers\\nnonuses\\nnonusing\\nnonvenomous\\nnonverbal\\nnonviolence\\nnonviolences\\nnonviolent\\nnonviral\\nnonvocal\\nnonvoter\\nnonvoters\\nnonwhite\\nnonwhites\\nnonwoody\\nnonworker\\nnonworkers\\nnonwoven\\nnonzero\\nnoo\\nnoodle\\nnoodled\\nnoodles\\nnoodling\\nnook\\nnookies\\nnooklike\\nnooks\\nnooky\\nnoon\\nnoonday\\nnoondays\\nnooning\\nnoonings\\nnoons\\nnoontide\\nnoontides\\nnoontime\\nnoontimes\\nnoose\\nnoosed\\nnooser\\nnoosers\\nnooses\\nnoosing\\nnopal\\nnopals\\nnope\\nnor\\nnoria\\nnorias\\nnorite\\nnorites\\nnoritic\\nnorland\\nnorlands\\nnorm\\nnormal\\nnormalcies\\nnormalcy\\nnormalities\\nnormality\\nnormalization\\nnormalizations\\nnormalize\\nnormalized\\nnormalizes\\nnormalizing\\nnormally\\nnormals\\nnormed\\nnormless\\nnorms\\nnorth\\nnortheast\\nnortheasterly\\nnortheastern\\nnortheasts\\nnorther\\nnortherly\\nnorthern\\nnorthernmost\\nnortherns\\nnorthers\\nnorthing\\nnorthings\\nnorths\\nnorthward\\nnorthwards\\nnorthwest\\nnorthwesterly\\nnorthwestern\\nnorthwests\\nnos\\nnose\\nnosebag\\nnosebags\\nnoseband\\nnosebands\\nnosebleed\\nnosebleeds\\nnosed\\nnosegay\\nnosegays\\nnoseless\\nnoselike\\nnoses\\nnosey\\nnosh\\nnoshed\\nnosher\\nnoshers\\nnoshes\\nnoshing\\nnosier\\nnosiest\\nnosily\\nnosiness\\nnosinesses\\nnosing\\nnosings\\nnosologies\\nnosology\\nnostalgia\\nnostalgias\\nnostalgic\\nnostoc\\nnostocs\\nnostril\\nnostrils\\nnostrum\\nnostrums\\nnosy\\nnot\\nnota\\nnotabilities\\nnotability\\nnotable\\nnotables\\nnotably\\nnotal\\nnotarial\\nnotaries\\nnotarize\\nnotarized\\nnotarizes\\nnotarizing\\nnotary\\nnotate\\nnotated\\nnotates\\nnotating\\nnotation\\nnotations\\nnotch\\nnotched\\nnotcher\\nnotchers\\nnotches\\nnotching\\nnote\\nnotebook\\nnotebooks\\nnotecase\\nnotecases\\nnoted\\nnotedly\\nnoteless\\nnoter\\nnoters\\nnotes\\nnoteworthy\\nnothing\\nnothingness\\nnothingnesses\\nnothings\\nnotice\\nnoticeable\\nnoticeably\\nnoticed\\nnotices\\nnoticing\\nnotification\\nnotifications\\nnotified\\nnotifier\\nnotifiers\\nnotifies\\nnotify\\nnotifying\\nnoting\\nnotion\\nnotional\\nnotions\\nnotorieties\\nnotoriety\\nnotorious\\nnotoriously\\nnotornis\\nnotturni\\nnotturno\\nnotum\\nnotwithstanding\\nnougat\\nnougats\\nnought\\nnoughts\\nnoumena\\nnoumenal\\nnoumenon\\nnoun\\nnounal\\nnounally\\nnounless\\nnouns\\nnourish\\nnourished\\nnourishes\\nnourishing\\nnourishment\\nnourishments\\nnous\\nnouses\\nnova\\nnovae\\nnovalike\\nnovas\\nnovation\\nnovations\\nnovel\\nnovelise\\nnovelised\\nnovelises\\nnovelising\\nnovelist\\nnovelists\\nnovelize\\nnovelized\\nnovelizes\\nnovelizing\\nnovella\\nnovellas\\nnovelle\\nnovelly\\nnovels\\nnovelties\\nnovelty\\nnovena\\nnovenae\\nnovenas\\nnovercal\\nnovice\\nnovices\\nnow\\nnowadays\\nnoway\\nnoways\\nnowhere\\nnowheres\\nnowise\\nnows\\nnowt\\nnowts\\nnoxious\\nnoyade\\nnoyades\\nnozzle\\nnozzles\\nnth\\nnu\\nnuance\\nnuanced\\nnuances\\nnub\\nnubbier\\nnubbiest\\nnubbin\\nnubbins\\nnubble\\nnubbles\\nnubblier\\nnubbliest\\nnubbly\\nnubby\\nnubia\\nnubias\\nnubile\\nnubilities\\nnubility\\nnubilose\\nnubilous\\nnubs\\nnucellar\\nnucelli\\nnucellus\\nnucha\\nnuchae\\nnuchal\\nnuchals\\nnucleal\\nnuclear\\nnuclease\\nnucleases\\nnucleate\\nnucleated\\nnucleates\\nnucleating\\nnuclei\\nnuclein\\nnucleins\\nnucleole\\nnucleoles\\nnucleoli\\nnucleon\\nnucleons\\nnucleus\\nnucleuses\\nnuclide\\nnuclides\\nnuclidic\\nnude\\nnudely\\nnudeness\\nnudenesses\\nnuder\\nnudes\\nnudest\\nnudge\\nnudged\\nnudger\\nnudgers\\nnudges\\nnudging\\nnudicaul\\nnudie\\nnudies\\nnudism\\nnudisms\\nnudist\\nnudists\\nnudities\\nnudity\\nnudnick\\nnudnicks\\nnudnik\\nnudniks\\nnugatory\\nnugget\\nnuggets\\nnuggety\\nnuisance\\nnuisances\\nnuke\\nnukes\\nnull\\nnullah\\nnullahs\\nnulled\\nnullification\\nnullifications\\nnullified\\nnullifies\\nnullify\\nnullifying\\nnulling\\nnullities\\nnullity\\nnulls\\nnumb\\nnumbed\\nnumber\\nnumbered\\nnumberer\\nnumberers\\nnumbering\\nnumberless\\nnumbers\\nnumbest\\nnumbfish\\nnumbfishes\\nnumbing\\nnumbles\\nnumbly\\nnumbness\\nnumbnesses\\nnumbs\\nnumen\\nnumeral\\nnumerals\\nnumerary\\nnumerate\\nnumerated\\nnumerates\\nnumerating\\nnumerator\\nnumerators\\nnumeric\\nnumerical\\nnumerically\\nnumerics\\nnumerologies\\nnumerologist\\nnumerologists\\nnumerology\\nnumerous\\nnumina\\nnuminous\\nnuminouses\\nnumismatic\\nnumismatics\\nnumismatist\\nnumismatists\\nnummary\\nnummular\\nnumskull\\nnumskulls\\nnun\\nnuncio\\nnuncios\\nnuncle\\nnuncles\\nnunlike\\nnunneries\\nnunnery\\nnunnish\\nnuns\\nnuptial\\nnuptials\\nnurl\\nnurled\\nnurling\\nnurls\\nnurse\\nnursed\\nnurseries\\nnursery\\nnurses\\nnursing\\nnursings\\nnursling\\nnurslings\\nnurture\\nnurtured\\nnurturer\\nnurturers\\nnurtures\\nnurturing\\nnus\\nnut\\nnutant\\nnutate\\nnutated\\nnutates\\nnutating\\nnutation\\nnutations\\nnutbrown\\nnutcracker\\nnutcrackers\\nnutgall\\nnutgalls\\nnutgrass\\nnutgrasses\\nnuthatch\\nnuthatches\\nnuthouse\\nnuthouses\\nnutlet\\nnutlets\\nnutlike\\nnutmeat\\nnutmeats\\nnutmeg\\nnutmegs\\nnutpick\\nnutpicks\\nnutria\\nnutrias\\nnutrient\\nnutrients\\nnutriment\\nnutriments\\nnutrition\\nnutritional\\nnutritions\\nnutritious\\nnutritive\\nnuts\\nnutsedge\\nnutsedges\\nnutshell\\nnutshells\\nnutted\\nnutter\\nnutters\\nnuttier\\nnuttiest\\nnuttily\\nnutting\\nnutty\\nnutwood\\nnutwoods\\nnuzzle\\nnuzzled\\nnuzzles\\nnuzzling\\nnyala\\nnyalas\\nnylghai\\nnylghais\\nnylghau\\nnylghaus\\nnylon\\nnylons\\nnymph\\nnympha\\nnymphae\\nnymphal\\nnymphean\\nnymphet\\nnymphets\\nnympho\\nnymphomania\\nnymphomaniac\\nnymphomanias\\nnymphos\\nnymphs\\noaf\\noafish\\noafishly\\noafs\\noak\\noaken\\noaklike\\noakmoss\\noakmosses\\noaks\\noakum\\noakums\\noar\\noared\\noarfish\\noarfishes\\noaring\\noarless\\noarlike\\noarlock\\noarlocks\\noars\\noarsman\\noarsmen\\noases\\noasis\\noast\\noasts\\noat\\noatcake\\noatcakes\\noaten\\noater\\noaters\\noath\\noaths\\noatlike\\noatmeal\\noatmeals\\noats\\noaves\\nobduracies\\nobduracy\\nobdurate\\nobe\\nobeah\\nobeahism\\nobeahisms\\nobeahs\\nobedience\\nobediences\\nobedient\\nobediently\\nobeisance\\nobeisant\\nobeli\\nobelia\\nobelias\\nobelise\\nobelised\\nobelises\\nobelising\\nobelisk\\nobelisks\\nobelism\\nobelisms\\nobelize\\nobelized\\nobelizes\\nobelizing\\nobelus\\nobes\\nobese\\nobesely\\nobesities\\nobesity\\nobey\\nobeyable\\nobeyed\\nobeyer\\nobeyers\\nobeying\\nobeys\\nobfuscate\\nobfuscated\\nobfuscates\\nobfuscating\\nobfuscation\\nobfuscations\\nobi\\nobia\\nobias\\nobiism\\nobiisms\\nobis\\nobit\\nobits\\nobituaries\\nobituary\\nobject\\nobjected\\nobjecting\\nobjection\\nobjectionable\\nobjections\\nobjective\\nobjectively\\nobjectiveness\\nobjectivenesses\\nobjectives\\nobjectivities\\nobjectivity\\nobjector\\nobjectors\\nobjects\\noblast\\noblasti\\noblasts\\noblate\\noblately\\noblates\\noblation\\noblations\\noblatory\\nobligate\\nobligated\\nobligates\\nobligati\\nobligating\\nobligation\\nobligations\\nobligato\\nobligatory\\nobligatos\\noblige\\nobliged\\nobligee\\nobligees\\nobliger\\nobligers\\nobliges\\nobliging\\nobligingly\\nobligor\\nobligors\\noblique\\nobliqued\\nobliquely\\nobliqueness\\nobliquenesses\\nobliques\\nobliquing\\nobliquities\\nobliquity\\nobliterate\\nobliterated\\nobliterates\\nobliterating\\nobliteration\\nobliterations\\noblivion\\noblivions\\noblivious\\nobliviously\\nobliviousness\\nobliviousnesses\\noblong\\noblongly\\noblongs\\nobloquies\\nobloquy\\nobnoxious\\nobnoxiously\\nobnoxiousness\\nobnoxiousnesses\\noboe\\noboes\\noboist\\noboists\\nobol\\nobole\\noboles\\noboli\\nobols\\nobolus\\nobovate\\nobovoid\\nobscene\\nobscenely\\nobscener\\nobscenest\\nobscenities\\nobscenity\\nobscure\\nobscured\\nobscurely\\nobscurer\\nobscures\\nobscurest\\nobscuring\\nobscurities\\nobscurity\\nobsequies\\nobsequious\\nobsequiously\\nobsequiousness\\nobsequiousnesses\\nobsequy\\nobservance\\nobservances\\nobservant\\nobservation\\nobservations\\nobservatories\\nobservatory\\nobserve\\nobserved\\nobserver\\nobservers\\nobserves\\nobserving\\nobsess\\nobsessed\\nobsesses\\nobsessing\\nobsession\\nobsessions\\nobsessive\\nobsessively\\nobsessor\\nobsessors\\nobsidian\\nobsidians\\nobsolescence\\nobsolescences\\nobsolescent\\nobsolete\\nobsoleted\\nobsoletes\\nobsoleting\\nobstacle\\nobstacles\\nobstetrical\\nobstetrician\\nobstetricians\\nobstetrics\\nobstinacies\\nobstinacy\\nobstinate\\nobstinately\\nobstreperous\\nobstreperousness\\nobstreperousnesses\\nobstruct\\nobstructed\\nobstructing\\nobstruction\\nobstructions\\nobstructive\\nobstructor\\nobstructors\\nobstructs\\nobtain\\nobtainable\\nobtained\\nobtainer\\nobtainers\\nobtaining\\nobtains\\nobtect\\nobtected\\nobtest\\nobtested\\nobtesting\\nobtests\\nobtrude\\nobtruded\\nobtruder\\nobtruders\\nobtrudes\\nobtruding\\nobtrusion\\nobtrusions\\nobtrusive\\nobtrusively\\nobtrusiveness\\nobtrusivenesses\\nobtund\\nobtunded\\nobtunding\\nobtunds\\nobturate\\nobturated\\nobturates\\nobturating\\nobtuse\\nobtusely\\nobtuser\\nobtusest\\nobverse\\nobverses\\nobvert\\nobverted\\nobverting\\nobverts\\nobviable\\nobviate\\nobviated\\nobviates\\nobviating\\nobviation\\nobviations\\nobviator\\nobviators\\nobvious\\nobviously\\nobviousness\\nobviousnesses\\nobvolute\\noca\\nocarina\\nocarinas\\nocas\\noccasion\\noccasional\\noccasionally\\noccasioned\\noccasioning\\noccasions\\noccident\\noccidental\\noccidents\\noccipita\\nocciput\\nocciputs\\nocclude\\noccluded\\noccludes\\noccluding\\nocclusal\\noccult\\nocculted\\nocculter\\nocculters\\nocculting\\noccultly\\noccults\\noccupancies\\noccupancy\\noccupant\\noccupants\\noccupation\\noccupational\\noccupationally\\noccupations\\noccupied\\noccupier\\noccupiers\\noccupies\\noccupy\\noccupying\\noccur\\noccurence\\noccurences\\noccurred\\noccurrence\\noccurrences\\noccurring\\noccurs\\nocean\\noceanfront\\noceanfronts\\noceangoing\\noceanic\\noceanographer\\noceanographers\\noceanographic\\noceanographies\\noceanography\\noceans\\nocellar\\nocellate\\nocelli\\nocellus\\noceloid\\nocelot\\nocelots\\nocher\\nochered\\nochering\\nocherous\\nochers\\nochery\\nochone\\nochre\\nochrea\\nochreae\\nochred\\nochreous\\nochres\\nochring\\nochroid\\nochrous\\nochry\\nocotillo\\nocotillos\\nocrea\\nocreae\\nocreate\\noctad\\noctadic\\noctads\\noctagon\\noctagonal\\noctagons\\noctal\\noctane\\noctanes\\noctangle\\noctangles\\noctant\\noctantal\\noctants\\noctarchies\\noctarchy\\noctaval\\noctave\\noctaves\\noctavo\\noctavos\\noctet\\noctets\\noctette\\noctettes\\noctonaries\\noctonary\\noctopi\\noctopod\\noctopodes\\noctopods\\noctopus\\noctopuses\\noctoroon\\noctoroons\\noctroi\\noctrois\\noctuple\\noctupled\\noctuples\\noctuplet\\noctuplets\\noctuplex\\noctupling\\noctuply\\noctyl\\noctyls\\nocular\\nocularly\\noculars\\noculist\\noculists\\nod\\nodalisk\\nodalisks\\nodd\\noddball\\noddballs\\nodder\\noddest\\noddish\\noddities\\noddity\\noddly\\noddment\\noddments\\noddness\\noddnesses\\nodds\\node\\nodea\\nodeon\\nodeons\\nodes\\nodeum\\nodic\\nodious\\nodiously\\nodiousness\\nodiousnesses\\nodium\\nodiums\\nodograph\\nodographs\\nodometer\\nodometers\\nodometries\\nodometry\\nodonate\\nodonates\\nodontoid\\nodontoids\\nodor\\nodorant\\nodorants\\nodored\\nodorful\\nodorize\\nodorized\\nodorizes\\nodorizing\\nodorless\\nodorous\\nodors\\nodour\\nodourful\\nodours\\nods\\nodyl\\nodyle\\nodyles\\nodyls\\nodyssey\\nodysseys\\noe\\noecologies\\noecology\\noedema\\noedemas\\noedemata\\noedipal\\noedipean\\noeillade\\noeillades\\noenologies\\noenology\\noenomel\\noenomels\\noersted\\noersteds\\noes\\noestrin\\noestrins\\noestriol\\noestriols\\noestrone\\noestrones\\noestrous\\noestrum\\noestrums\\noestrus\\noestruses\\noeuvre\\noeuvres\\nof\\nofay\\nofays\\noff\\noffal\\noffals\\noffbeat\\noffbeats\\noffcast\\noffcasts\\noffed\\noffence\\noffences\\noffend\\noffended\\noffender\\noffenders\\noffending\\noffends\\noffense\\noffenses\\noffensive\\noffensively\\noffensiveness\\noffensivenesses\\noffensives\\noffer\\noffered\\nofferer\\nofferers\\noffering\\nofferings\\nofferor\\nofferors\\noffers\\noffertories\\noffertory\\noffhand\\noffice\\nofficeholder\\nofficeholders\\nofficer\\nofficered\\nofficering\\nofficers\\noffices\\nofficial\\nofficialdom\\nofficialdoms\\nofficially\\nofficials\\nofficiate\\nofficiated\\nofficiates\\nofficiating\\nofficious\\nofficiously\\nofficiousness\\nofficiousnesses\\noffing\\noffings\\noffish\\noffishly\\noffload\\noffloaded\\noffloading\\noffloads\\noffprint\\noffprinted\\noffprinting\\noffprints\\noffs\\noffset\\noffsets\\noffsetting\\noffshoot\\noffshoots\\noffshore\\noffside\\noffspring\\noffstage\\noft\\noften\\noftener\\noftenest\\noftentimes\\nofter\\noftest\\nofttimes\\nogam\\nogams\\nogdoad\\nogdoads\\nogee\\nogees\\nogham\\noghamic\\noghamist\\noghamists\\noghams\\nogival\\nogive\\nogives\\nogle\\nogled\\nogler\\noglers\\nogles\\nogling\\nogre\\nogreish\\nogreism\\nogreisms\\nogres\\nogress\\nogresses\\nogrish\\nogrishly\\nogrism\\nogrisms\\noh\\nohed\\nohia\\nohias\\nohing\\nohm\\nohmage\\nohmages\\nohmic\\nohmmeter\\nohmmeters\\nohms\\noho\\nohs\\noidia\\noidium\\noil\\noilbird\\noilbirds\\noilcamp\\noilcamps\\noilcan\\noilcans\\noilcloth\\noilcloths\\noilcup\\noilcups\\noiled\\noiler\\noilers\\noilhole\\noilholes\\noilier\\noiliest\\noilily\\noiliness\\noilinesses\\noiling\\noilman\\noilmen\\noilpaper\\noilpapers\\noilproof\\noils\\noilseed\\noilseeds\\noilskin\\noilskins\\noilstone\\noilstones\\noiltight\\noilway\\noilways\\noily\\noink\\noinked\\noinking\\noinks\\noinologies\\noinology\\noinomel\\noinomels\\nointment\\nointments\\noiticica\\noiticicas\\noka\\nokapi\\nokapis\\nokas\\nokay\\nokayed\\nokaying\\nokays\\noke\\nokeh\\nokehs\\nokes\\nokeydoke\\nokra\\nokras\\nold\\nolden\\nolder\\noldest\\noldie\\noldies\\noldish\\noldness\\noldnesses\\nolds\\noldster\\noldsters\\noldstyle\\noldstyles\\noldwife\\noldwives\\nole\\nolea\\noleander\\noleanders\\noleaster\\noleasters\\noleate\\noleates\\nolefin\\nolefine\\nolefines\\nolefinic\\nolefins\\noleic\\nolein\\noleine\\noleines\\noleins\\noleo\\noleomargarine\\noleomargarines\\noleos\\noles\\noleum\\noleums\\nolfactory\\nolibanum\\nolibanums\\noligarch\\noligarchic\\noligarchical\\noligarchies\\noligarchs\\noligarchy\\noligomer\\noligomers\\nolio\\nolios\\nolivary\\nolive\\nolives\\nolivine\\nolivines\\nolivinic\\nolla\\nollas\\nologies\\nologist\\nologists\\nology\\nolympiad\\nolympiads\\nom\\nomasa\\nomasum\\nomber\\nombers\\nombre\\nombres\\nombudsman\\nombudsmen\\nomega\\nomegas\\nomelet\\nomelets\\nomelette\\nomelettes\\nomen\\nomened\\nomening\\nomens\\nomenta\\nomental\\nomentum\\nomentums\\nomer\\nomers\\nomicron\\nomicrons\\nomikron\\nomikrons\\nominous\\nominously\\nominousness\\nominousnesses\\nomission\\nomissions\\nomissive\\nomit\\nomits\\nomitted\\nomitting\\nomniarch\\nomniarchs\\nomnibus\\nomnibuses\\nomnific\\nomniform\\nomnimode\\nomnipotence\\nomnipotences\\nomnipotent\\nomnipotently\\nomnipresence\\nomnipresences\\nomnipresent\\nomniscience\\nomnisciences\\nomniscient\\nomnisciently\\nomnivora\\nomnivore\\nomnivores\\nomnivorous\\nomnivorously\\nomnivorousness\\nomnivorousnesses\\nomophagies\\nomophagy\\nomphali\\nomphalos\\noms\\non\\nonager\\nonagers\\nonagri\\nonanism\\nonanisms\\nonanist\\nonanists\\nonce\\nonces\\noncidium\\noncidiums\\noncologic\\noncologies\\noncologist\\noncologists\\noncology\\noncoming\\noncomings\\nondogram\\nondograms\\none\\nonefold\\noneiric\\noneness\\nonenesses\\nonerier\\noneriest\\nonerous\\nonery\\nones\\noneself\\nonetime\\nongoing\\nonion\\nonions\\nonium\\nonlooker\\nonlookers\\nonly\\nonomatopoeia\\nonrush\\nonrushes\\nons\\nonset\\nonsets\\nonshore\\nonside\\nonslaught\\nonslaughts\\nonstage\\nontic\\nonto\\nontogenies\\nontogeny\\nontologies\\nontology\\nonus\\nonuses\\nonward\\nonwards\\nonyx\\nonyxes\\noocyst\\noocysts\\noocyte\\noocytes\\noodles\\noodlins\\noogamete\\noogametes\\noogamies\\noogamous\\noogamy\\noogenies\\noogeny\\noogonia\\noogonial\\noogonium\\noogoniums\\nooh\\noohed\\noohing\\noohs\\noolachan\\noolachans\\noolite\\noolites\\noolith\\nooliths\\noolitic\\noologic\\noologies\\noologist\\noologists\\noology\\noolong\\noolongs\\noomiac\\noomiack\\noomiacks\\noomiacs\\noomiak\\noomiaks\\noomph\\noomphs\\noophorectomy\\noophyte\\noophytes\\noophytic\\noops\\noorali\\nooralis\\noorie\\noosperm\\noosperms\\noosphere\\noospheres\\noospore\\noospores\\noosporic\\noot\\nootheca\\noothecae\\noothecal\\nootid\\nootids\\noots\\nooze\\noozed\\noozes\\noozier\\nooziest\\noozily\\nooziness\\noozinesses\\noozing\\noozy\\nop\\nopacified\\nopacifies\\nopacify\\nopacifying\\nopacities\\nopacity\\nopah\\nopahs\\nopal\\nopalesce\\nopalesced\\nopalesces\\nopalescing\\nopaline\\nopalines\\nopals\\nopaque\\nopaqued\\nopaquely\\nopaqueness\\nopaquenesses\\nopaquer\\nopaques\\nopaquest\\nopaquing\\nope\\noped\\nopen\\nopenable\\nopened\\nopener\\nopeners\\nopenest\\nopenhanded\\nopening\\nopenings\\nopenly\\nopenness\\nopennesses\\nopens\\nopenwork\\nopenworks\\nopera\\noperable\\noperably\\noperand\\noperands\\noperant\\noperants\\noperas\\noperate\\noperated\\noperates\\noperatic\\noperatics\\noperating\\noperation\\noperational\\noperationally\\noperations\\noperative\\noperator\\noperators\\nopercele\\noperceles\\nopercula\\nopercule\\nopercules\\noperetta\\noperettas\\noperon\\noperons\\noperose\\nopes\\nophidian\\nophidians\\nophite\\nophites\\nophitic\\nophthalmologies\\nophthalmologist\\nophthalmologists\\nophthalmology\\nopiate\\nopiated\\nopiates\\nopiating\\nopine\\nopined\\nopines\\noping\\nopining\\nopinion\\nopinionated\\nopinions\\nopium\\nopiumism\\nopiumisms\\nopiums\\nopossum\\nopossums\\noppidan\\noppidans\\noppilant\\noppilate\\noppilated\\noppilates\\noppilating\\nopponent\\nopponents\\nopportune\\nopportunely\\nopportunism\\nopportunisms\\nopportunist\\nopportunistic\\nopportunists\\nopportunities\\nopportunity\\noppose\\nopposed\\nopposer\\nopposers\\nopposes\\nopposing\\nopposite\\noppositely\\noppositeness\\noppositenesses\\nopposites\\nopposition\\noppositions\\noppress\\noppressed\\noppresses\\noppressing\\noppression\\noppressions\\noppressive\\noppressively\\noppressor\\noppressors\\nopprobrious\\nopprobriously\\nopprobrium\\nopprobriums\\noppugn\\noppugned\\noppugner\\noppugners\\noppugning\\noppugns\\nops\\nopsin\\nopsins\\nopsonic\\nopsonified\\nopsonifies\\nopsonify\\nopsonifying\\nopsonin\\nopsonins\\nopsonize\\nopsonized\\nopsonizes\\nopsonizing\\nopt\\noptative\\noptatives\\nopted\\noptic\\noptical\\noptician\\nopticians\\nopticist\\nopticists\\noptics\\noptima\\noptimal\\noptimally\\noptime\\noptimes\\noptimise\\noptimised\\noptimises\\noptimising\\noptimism\\noptimisms\\noptimist\\noptimistic\\noptimistically\\noptimists\\noptimize\\noptimized\\noptimizes\\noptimizing\\noptimum\\noptimums\\nopting\\noption\\noptional\\noptionally\\noptionals\\noptioned\\noptionee\\noptionees\\noptioning\\noptions\\noptometries\\noptometrist\\noptometry\\nopts\\nopulence\\nopulences\\nopulencies\\nopulency\\nopulent\\nopuntia\\nopuntias\\nopus\\nopuscula\\nopuscule\\nopuscules\\nopuses\\noquassa\\noquassas\\nor\\nora\\norach\\norache\\noraches\\noracle\\noracles\\noracular\\noral\\noralities\\norality\\norally\\norals\\norang\\norange\\norangeade\\norangeades\\norangeries\\norangery\\noranges\\norangey\\norangier\\norangiest\\norangish\\norangoutan\\norangoutans\\norangs\\norangutan\\norangutang\\norangutangs\\norangutans\\norangy\\norate\\norated\\norates\\norating\\noration\\norations\\norator\\noratorical\\noratories\\noratorio\\noratorios\\norators\\noratory\\noratress\\noratresses\\noratrices\\noratrix\\norb\\norbed\\norbicular\\norbing\\norbit\\norbital\\norbitals\\norbited\\norbiter\\norbiters\\norbiting\\norbits\\norbs\\norc\\norca\\norcas\\norcein\\norceins\\norchard\\norchardist\\norchardists\\norchards\\norchestra\\norchestral\\norchestras\\norchestrate\\norchestrated\\norchestrates\\norchestrating\\norchestration\\norchestrations\\norchid\\norchids\\norchiectomy\\norchil\\norchils\\norchis\\norchises\\norchitic\\norchitis\\norchitises\\norcin\\norcinol\\norcinols\\norcins\\norcs\\nordain\\nordained\\nordainer\\nordainers\\nordaining\\nordains\\nordeal\\nordeals\\norder\\nordered\\norderer\\norderers\\nordering\\norderlies\\norderliness\\norderlinesses\\norderly\\norders\\nordinal\\nordinals\\nordinance\\nordinances\\nordinand\\nordinands\\nordinarier\\nordinaries\\nordinariest\\nordinarily\\nordinary\\nordinate\\nordinates\\nordination\\nordinations\\nordines\\nordnance\\nordnances\\nordo\\nordos\\nordure\\nordures\\nore\\noread\\noreads\\norectic\\norective\\noregano\\noreganos\\noreide\\noreides\\nores\\norfray\\norfrays\\norgan\\norgana\\norgandie\\norgandies\\norgandy\\norganic\\norganically\\norganics\\norganise\\norganised\\norganises\\norganising\\norganism\\norganisms\\norganist\\norganists\\norganization\\norganizational\\norganizationally\\norganizations\\norganize\\norganized\\norganizer\\norganizers\\norganizes\\norganizing\\norganon\\norganons\\norgans\\norganum\\norganums\\norganza\\norganzas\\norgasm\\norgasmic\\norgasms\\norgastic\\norgeat\\norgeats\\norgiac\\norgic\\norgies\\norgulous\\norgy\\noribatid\\noribatids\\noribi\\noribis\\noriel\\noriels\\norient\\noriental\\norientals\\norientation\\norientations\\noriented\\norienting\\norients\\norifice\\norifices\\norigami\\norigamis\\norigan\\norigans\\noriganum\\noriganums\\norigin\\noriginal\\noriginalities\\noriginality\\noriginally\\noriginals\\noriginate\\noriginated\\noriginates\\noriginating\\noriginator\\noriginators\\norigins\\norinasal\\norinasals\\noriole\\norioles\\norison\\norisons\\norle\\norles\\norlop\\norlops\\normer\\normers\\normolu\\normolus\\nornament\\nornamental\\nornamentation\\nornamentations\\nornamented\\nornamenting\\nornaments\\nornate\\nornately\\nornateness\\nornatenesses\\nornerier\\norneriest\\nornery\\nornis\\nornithes\\nornithic\\nornithological\\nornithologist\\nornithologists\\nornithology\\norogenic\\norogenies\\norogeny\\noroide\\noroides\\norologies\\norology\\norometer\\norometers\\norotund\\norphan\\norphanage\\norphanages\\norphaned\\norphaning\\norphans\\norphic\\norphical\\norphrey\\norphreys\\norpiment\\norpiments\\norpin\\norpine\\norpines\\norpins\\norra\\norreries\\norrery\\norrice\\norrices\\norris\\norrises\\nors\\nort\\northicon\\northicons\\northo\\northodontia\\northodontics\\northodontist\\northodontists\\northodox\\northodoxes\\northodoxies\\northodoxy\\northoepies\\northoepy\\northogonal\\northographic\\northographies\\northography\\northopedic\\northopedics\\northopedist\\northopedists\\northotic\\nortolan\\nortolans\\norts\\noryx\\noryxes\\nos\\nosar\\noscillate\\noscillated\\noscillates\\noscillating\\noscillation\\noscillations\\noscine\\noscines\\noscinine\\noscitant\\noscula\\nosculant\\noscular\\nosculate\\nosculated\\nosculates\\nosculating\\noscule\\noscules\\nosculum\\nose\\noses\\nosier\\nosiers\\nosmatic\\nosmic\\nosmious\\nosmium\\nosmiums\\nosmol\\nosmolal\\nosmolar\\nosmols\\nosmose\\nosmosed\\nosmoses\\nosmosing\\nosmosis\\nosmotic\\nosmous\\nosmund\\nosmunda\\nosmundas\\nosmunds\\nosnaburg\\nosnaburgs\\nosprey\\nospreys\\nossa\\nossein\\nosseins\\nosseous\\nossia\\nossicle\\nossicles\\nossific\\nossified\\nossifier\\nossifiers\\nossifies\\nossify\\nossifying\\nossuaries\\nossuary\\nosteal\\nosteitic\\nosteitides\\nosteitis\\nostensible\\nostensibly\\nostentation\\nostentations\\nostentatious\\nostentatiously\\nosteoblast\\nosteoblasts\\nosteoid\\nosteoids\\nosteoma\\nosteomas\\nosteomata\\nosteopath\\nosteopathic\\nosteopathies\\nosteopaths\\nosteopathy\\nosteopenia\\nostia\\nostiaries\\nostiary\\nostinato\\nostinatos\\nostiolar\\nostiole\\nostioles\\nostium\\nostler\\nostlers\\nostmark\\nostmarks\\nostomies\\nostomy\\nostoses\\nostosis\\nostosises\\nostracism\\nostracisms\\nostracize\\nostracized\\nostracizes\\nostracizing\\nostracod\\nostracods\\nostrich\\nostriches\\nostsis\\nostsises\\notalgia\\notalgias\\notalgic\\notalgies\\notalgy\\nother\\nothers\\notherwise\\notic\\notiose\\notiosely\\notiosities\\notiosity\\notitic\\notitides\\notitis\\notocyst\\notocysts\\notolith\\notoliths\\notologies\\notology\\notoscope\\notoscopes\\notoscopies\\notoscopy\\nototoxicities\\nototoxicity\\nottar\\nottars\\nottava\\nottavas\\notter\\notters\\notto\\nottoman\\nottomans\\nottos\\nouabain\\nouabains\\nouch\\nouches\\noud\\nouds\\nought\\noughted\\noughting\\noughts\\nouistiti\\nouistitis\\nounce\\nounces\\nouph\\nouphe\\nouphes\\nouphs\\nour\\nourang\\nourangs\\nourari\\nouraris\\nourebi\\nourebis\\nourie\\nours\\nourself\\nourselves\\nousel\\nousels\\noust\\nousted\\nouster\\nousters\\nousting\\nousts\\nout\\noutact\\noutacted\\noutacting\\noutacts\\noutadd\\noutadded\\noutadding\\noutadds\\noutage\\noutages\\noutargue\\noutargued\\noutargues\\noutarguing\\noutask\\noutasked\\noutasking\\noutasks\\noutate\\noutback\\noutbacks\\noutbake\\noutbaked\\noutbakes\\noutbaking\\noutbark\\noutbarked\\noutbarking\\noutbarks\\noutbawl\\noutbawled\\noutbawling\\noutbawls\\noutbeam\\noutbeamed\\noutbeaming\\noutbeams\\noutbeg\\noutbegged\\noutbegging\\noutbegs\\noutbid\\noutbidden\\noutbidding\\noutbids\\noutblaze\\noutblazed\\noutblazes\\noutblazing\\noutbleat\\noutbleated\\noutbleating\\noutbleats\\noutbless\\noutblessed\\noutblesses\\noutblessing\\noutbloom\\noutbloomed\\noutblooming\\noutblooms\\noutbluff\\noutbluffed\\noutbluffing\\noutbluffs\\noutblush\\noutblushed\\noutblushes\\noutblushing\\noutboard\\noutboards\\noutboast\\noutboasted\\noutboasting\\noutboasts\\noutbound\\noutbox\\noutboxed\\noutboxes\\noutboxing\\noutbrag\\noutbragged\\noutbragging\\noutbrags\\noutbrave\\noutbraved\\noutbraves\\noutbraving\\noutbreak\\noutbreaks\\noutbred\\noutbreed\\noutbreeding\\noutbreeds\\noutbribe\\noutbribed\\noutbribes\\noutbribing\\noutbuild\\noutbuilding\\noutbuildings\\noutbuilds\\noutbuilt\\noutbullied\\noutbullies\\noutbully\\noutbullying\\noutburn\\noutburned\\noutburning\\noutburns\\noutburnt\\noutburst\\noutbursts\\noutby\\noutbye\\noutcaper\\noutcapered\\noutcapering\\noutcapers\\noutcast\\noutcaste\\noutcastes\\noutcasts\\noutcatch\\noutcatches\\noutcatching\\noutcaught\\noutcavil\\noutcaviled\\noutcaviling\\noutcavilled\\noutcavilling\\noutcavils\\noutcharm\\noutcharmed\\noutcharming\\noutcharms\\noutcheat\\noutcheated\\noutcheating\\noutcheats\\noutchid\\noutchidden\\noutchide\\noutchided\\noutchides\\noutchiding\\noutclass\\noutclassed\\noutclasses\\noutclassing\\noutclimb\\noutclimbed\\noutclimbing\\noutclimbs\\noutclomb\\noutcome\\noutcomes\\noutcook\\noutcooked\\noutcooking\\noutcooks\\noutcrawl\\noutcrawled\\noutcrawling\\noutcrawls\\noutcried\\noutcries\\noutcrop\\noutcropped\\noutcropping\\noutcrops\\noutcross\\noutcrossed\\noutcrosses\\noutcrossing\\noutcrow\\noutcrowed\\noutcrowing\\noutcrows\\noutcry\\noutcrying\\noutcurse\\noutcursed\\noutcurses\\noutcursing\\noutcurve\\noutcurves\\noutdance\\noutdanced\\noutdances\\noutdancing\\noutdare\\noutdared\\noutdares\\noutdaring\\noutdate\\noutdated\\noutdates\\noutdating\\noutdid\\noutdistance\\noutdistanced\\noutdistances\\noutdistancing\\noutdo\\noutdodge\\noutdodged\\noutdodges\\noutdodging\\noutdoer\\noutdoers\\noutdoes\\noutdoing\\noutdone\\noutdoor\\noutdoors\\noutdrank\\noutdraw\\noutdrawing\\noutdrawn\\noutdraws\\noutdream\\noutdreamed\\noutdreaming\\noutdreams\\noutdreamt\\noutdress\\noutdressed\\noutdresses\\noutdressing\\noutdrew\\noutdrink\\noutdrinking\\noutdrinks\\noutdrive\\noutdriven\\noutdrives\\noutdriving\\noutdrop\\noutdropped\\noutdropping\\noutdrops\\noutdrove\\noutdrunk\\nouteat\\nouteaten\\nouteating\\nouteats\\noutecho\\noutechoed\\noutechoes\\noutechoing\\nouted\\nouter\\noutermost\\nouters\\noutfable\\noutfabled\\noutfables\\noutfabling\\noutface\\noutfaced\\noutfaces\\noutfacing\\noutfall\\noutfalls\\noutfast\\noutfasted\\noutfasting\\noutfasts\\noutfawn\\noutfawned\\noutfawning\\noutfawns\\noutfeast\\noutfeasted\\noutfeasting\\noutfeasts\\noutfeel\\noutfeeling\\noutfeels\\noutfelt\\noutfield\\noutfielder\\noutfielders\\noutfields\\noutfight\\noutfighting\\noutfights\\noutfind\\noutfinding\\noutfinds\\noutfire\\noutfired\\noutfires\\noutfiring\\noutfit\\noutfits\\noutfitted\\noutfitter\\noutfitters\\noutfitting\\noutflank\\noutflanked\\noutflanking\\noutflanks\\noutflew\\noutflies\\noutflow\\noutflowed\\noutflowing\\noutflown\\noutflows\\noutfly\\noutflying\\noutfool\\noutfooled\\noutfooling\\noutfools\\noutfoot\\noutfooted\\noutfooting\\noutfoots\\noutfought\\noutfound\\noutfox\\noutfoxed\\noutfoxes\\noutfoxing\\noutfrown\\noutfrowned\\noutfrowning\\noutfrowns\\noutgain\\noutgained\\noutgaining\\noutgains\\noutgas\\noutgassed\\noutgasses\\noutgassing\\noutgave\\noutgive\\noutgiven\\noutgives\\noutgiving\\noutglare\\noutglared\\noutglares\\noutglaring\\noutglow\\noutglowed\\noutglowing\\noutglows\\noutgnaw\\noutgnawed\\noutgnawing\\noutgnawn\\noutgnaws\\noutgo\\noutgoes\\noutgoing\\noutgoings\\noutgone\\noutgrew\\noutgrin\\noutgrinned\\noutgrinning\\noutgrins\\noutgroup\\noutgroups\\noutgrow\\noutgrowing\\noutgrown\\noutgrows\\noutgrowth\\noutgrowths\\noutguess\\noutguessed\\noutguesses\\noutguessing\\noutguide\\noutguided\\noutguides\\noutguiding\\noutgun\\noutgunned\\noutgunning\\noutguns\\noutgush\\noutgushes\\nouthaul\\nouthauls\\nouthear\\noutheard\\nouthearing\\nouthears\\nouthit\\nouthits\\nouthitting\\nouthouse\\nouthouses\\nouthowl\\nouthowled\\nouthowling\\nouthowls\\nouthumor\\nouthumored\\nouthumoring\\nouthumors\\nouting\\noutings\\noutjinx\\noutjinxed\\noutjinxes\\noutjinxing\\noutjump\\noutjumped\\noutjumping\\noutjumps\\noutjut\\noutjuts\\noutjutted\\noutjutting\\noutkeep\\noutkeeping\\noutkeeps\\noutkept\\noutkick\\noutkicked\\noutkicking\\noutkicks\\noutkiss\\noutkissed\\noutkisses\\noutkissing\\noutlaid\\noutlain\\noutland\\noutlandish\\noutlandishly\\noutlands\\noutlast\\noutlasted\\noutlasting\\noutlasts\\noutlaugh\\noutlaughed\\noutlaughing\\noutlaughs\\noutlaw\\noutlawed\\noutlawing\\noutlawries\\noutlawry\\noutlaws\\noutlay\\noutlaying\\noutlays\\noutleap\\noutleaped\\noutleaping\\noutleaps\\noutleapt\\noutlearn\\noutlearned\\noutlearning\\noutlearns\\noutlearnt\\noutlet\\noutlets\\noutlie\\noutlier\\noutliers\\noutlies\\noutline\\noutlined\\noutlines\\noutlining\\noutlive\\noutlived\\noutliver\\noutlivers\\noutlives\\noutliving\\noutlook\\noutlooks\\noutlove\\noutloved\\noutloves\\noutloving\\noutlying\\noutman\\noutmanned\\noutmanning\\noutmans\\noutmarch\\noutmarched\\noutmarches\\noutmarching\\noutmatch\\noutmatched\\noutmatches\\noutmatching\\noutmode\\noutmoded\\noutmodes\\noutmoding\\noutmost\\noutmove\\noutmoved\\noutmoves\\noutmoving\\noutnumber\\noutnumbered\\noutnumbering\\noutnumbers\\noutpace\\noutpaced\\noutpaces\\noutpacing\\noutpaint\\noutpainted\\noutpainting\\noutpaints\\noutpass\\noutpassed\\noutpasses\\noutpassing\\noutpatient\\noutpatients\\noutpitied\\noutpities\\noutpity\\noutpitying\\noutplan\\noutplanned\\noutplanning\\noutplans\\noutplay\\noutplayed\\noutplaying\\noutplays\\noutplod\\noutplodded\\noutplodding\\noutplods\\noutpoint\\noutpointed\\noutpointing\\noutpoints\\noutpoll\\noutpolled\\noutpolling\\noutpolls\\noutport\\noutports\\noutpost\\noutposts\\noutpour\\noutpoured\\noutpouring\\noutpours\\noutpray\\noutprayed\\noutpraying\\noutprays\\noutpreen\\noutpreened\\noutpreening\\noutpreens\\noutpress\\noutpressed\\noutpresses\\noutpressing\\noutprice\\noutpriced\\noutprices\\noutpricing\\noutpull\\noutpulled\\noutpulling\\noutpulls\\noutpush\\noutpushed\\noutpushes\\noutpushing\\noutput\\noutputs\\noutputted\\noutputting\\noutquote\\noutquoted\\noutquotes\\noutquoting\\noutrace\\noutraced\\noutraces\\noutracing\\noutrage\\noutraged\\noutrages\\noutraging\\noutraise\\noutraised\\noutraises\\noutraising\\noutran\\noutrance\\noutrances\\noutrang\\noutrange\\noutranged\\noutranges\\noutranging\\noutrank\\noutranked\\noutranking\\noutranks\\noutrave\\noutraved\\noutraves\\noutraving\\noutre\\noutreach\\noutreached\\noutreaches\\noutreaching\\noutread\\noutreading\\noutreads\\noutregeous\\noutregeously\\noutridden\\noutride\\noutrider\\noutriders\\noutrides\\noutriding\\noutright\\noutring\\noutringing\\noutrings\\noutrival\\noutrivaled\\noutrivaling\\noutrivalled\\noutrivalling\\noutrivals\\noutroar\\noutroared\\noutroaring\\noutroars\\noutrock\\noutrocked\\noutrocking\\noutrocks\\noutrode\\noutroll\\noutrolled\\noutrolling\\noutrolls\\noutroot\\noutrooted\\noutrooting\\noutroots\\noutrun\\noutrung\\noutrunning\\noutruns\\noutrush\\noutrushes\\nouts\\noutsail\\noutsailed\\noutsailing\\noutsails\\noutsang\\noutsat\\noutsavor\\noutsavored\\noutsavoring\\noutsavors\\noutsaw\\noutscold\\noutscolded\\noutscolding\\noutscolds\\noutscore\\noutscored\\noutscores\\noutscoring\\noutscorn\\noutscorned\\noutscorning\\noutscorns\\noutsee\\noutseeing\\noutseen\\noutsees\\noutsell\\noutselling\\noutsells\\noutsert\\noutserts\\noutserve\\noutserved\\noutserves\\noutserving\\noutset\\noutsets\\noutshame\\noutshamed\\noutshames\\noutshaming\\noutshine\\noutshined\\noutshines\\noutshining\\noutshone\\noutshoot\\noutshooting\\noutshoots\\noutshot\\noutshout\\noutshouted\\noutshouting\\noutshouts\\noutside\\noutsider\\noutsiders\\noutsides\\noutsight\\noutsights\\noutsin\\noutsing\\noutsinging\\noutsings\\noutsinned\\noutsinning\\noutsins\\noutsit\\noutsits\\noutsitting\\noutsize\\noutsized\\noutsizes\\noutskirt\\noutskirts\\noutsleep\\noutsleeping\\noutsleeps\\noutslept\\noutsmart\\noutsmarted\\noutsmarting\\noutsmarts\\noutsmile\\noutsmiled\\noutsmiles\\noutsmiling\\noutsmoke\\noutsmoked\\noutsmokes\\noutsmoking\\noutsnore\\noutsnored\\noutsnores\\noutsnoring\\noutsoar\\noutsoared\\noutsoaring\\noutsoars\\noutsold\\noutsole\\noutsoles\\noutspan\\noutspanned\\noutspanning\\noutspans\\noutspeak\\noutspeaking\\noutspeaks\\noutspell\\noutspelled\\noutspelling\\noutspells\\noutspelt\\noutspend\\noutspending\\noutspends\\noutspent\\noutspoke\\noutspoken\\noutspokenness\\noutspokennesses\\noutstand\\noutstanding\\noutstandingly\\noutstands\\noutstare\\noutstared\\noutstares\\noutstaring\\noutstart\\noutstarted\\noutstarting\\noutstarts\\noutstate\\noutstated\\noutstates\\noutstating\\noutstay\\noutstayed\\noutstaying\\noutstays\\noutsteer\\noutsteered\\noutsteering\\noutsteers\\noutstood\\noutstrip\\noutstripped\\noutstripping\\noutstrips\\noutstudied\\noutstudies\\noutstudy\\noutstudying\\noutstunt\\noutstunted\\noutstunting\\noutstunts\\noutsulk\\noutsulked\\noutsulking\\noutsulks\\noutsung\\noutswam\\noutsware\\noutswear\\noutswearing\\noutswears\\noutswim\\noutswimming\\noutswims\\noutswore\\noutsworn\\noutswum\\nouttake\\nouttakes\\nouttalk\\nouttalked\\nouttalking\\nouttalks\\nouttask\\nouttasked\\nouttasking\\nouttasks\\nouttell\\nouttelling\\nouttells\\noutthank\\noutthanked\\noutthanking\\noutthanks\\noutthink\\noutthinking\\noutthinks\\noutthought\\noutthrew\\noutthrob\\noutthrobbed\\noutthrobbing\\noutthrobs\\noutthrow\\noutthrowing\\noutthrown\\noutthrows\\nouttold\\nouttower\\nouttowered\\nouttowering\\nouttowers\\nouttrade\\nouttraded\\nouttrades\\nouttrading\\nouttrick\\nouttricked\\nouttricking\\nouttricks\\nouttrot\\nouttrots\\nouttrotted\\nouttrotting\\nouttrump\\nouttrumped\\nouttrumping\\nouttrumps\\noutturn\\noutturns\\noutvalue\\noutvalued\\noutvalues\\noutvaluing\\noutvaunt\\noutvaunted\\noutvaunting\\noutvaunts\\noutvoice\\noutvoiced\\noutvoices\\noutvoicing\\noutvote\\noutvoted\\noutvotes\\noutvoting\\noutwait\\noutwaited\\noutwaiting\\noutwaits\\noutwalk\\noutwalked\\noutwalking\\noutwalks\\noutwar\\noutward\\noutwards\\noutwarred\\noutwarring\\noutwars\\noutwash\\noutwashes\\noutwaste\\noutwasted\\noutwastes\\noutwasting\\noutwatch\\noutwatched\\noutwatches\\noutwatching\\noutwear\\noutwearied\\noutwearies\\noutwearing\\noutwears\\noutweary\\noutwearying\\noutweep\\noutweeping\\noutweeps\\noutweigh\\noutweighed\\noutweighing\\noutweighs\\noutwent\\noutwept\\noutwhirl\\noutwhirled\\noutwhirling\\noutwhirls\\noutwile\\noutwiled\\noutwiles\\noutwiling\\noutwill\\noutwilled\\noutwilling\\noutwills\\noutwind\\noutwinded\\noutwinding\\noutwinds\\noutwish\\noutwished\\noutwishes\\noutwishing\\noutwit\\noutwits\\noutwitted\\noutwitting\\noutwore\\noutwork\\noutworked\\noutworking\\noutworks\\noutworn\\noutwrit\\noutwrite\\noutwrites\\noutwriting\\noutwritten\\noutwrote\\noutwrought\\noutyell\\noutyelled\\noutyelling\\noutyells\\noutyelp\\noutyelped\\noutyelping\\noutyelps\\noutyield\\noutyielded\\noutyielding\\noutyields\\nouzel\\nouzels\\nouzo\\nouzos\\nova\\noval\\novalities\\novality\\novally\\novalness\\novalnesses\\novals\\novarial\\novarian\\novaries\\novariole\\novarioles\\novaritides\\novaritis\\novary\\novate\\novately\\novation\\novations\\noven\\novenbird\\novenbirds\\novenlike\\novens\\novenware\\novenwares\\nover\\noverable\\noverabundance\\noverabundances\\noverabundant\\noveracceptance\\noveracceptances\\noverachiever\\noverachievers\\noveract\\noveracted\\noveracting\\noveractive\\noveracts\\noverage\\noverages\\noveraggresive\\noverall\\noveralls\\noverambitious\\noveramplified\\noveramplifies\\noveramplify\\noveramplifying\\noveranalyze\\noveranalyzed\\noveranalyzes\\noveranalyzing\\noveranxieties\\noveranxiety\\noveranxious\\noverapologetic\\noverapt\\noverarch\\noverarched\\noverarches\\noverarching\\noverarm\\noverarousal\\noverarouse\\noveraroused\\noverarouses\\noverarousing\\noverassertive\\noverate\\noverawe\\noverawed\\noverawes\\noverawing\\noverbake\\noverbaked\\noverbakes\\noverbaking\\noverbear\\noverbearing\\noverbears\\noverbet\\noverbets\\noverbetted\\noverbetting\\noverbid\\noverbidden\\noverbidding\\noverbids\\noverbig\\noverbite\\noverbites\\noverblew\\noverblow\\noverblowing\\noverblown\\noverblows\\noverboard\\noverbold\\noverbook\\noverbooked\\noverbooking\\noverbooks\\noverbore\\noverborn\\noverborne\\noverborrow\\noverborrowed\\noverborrowing\\noverborrows\\noverbought\\noverbred\\noverbright\\noverbroad\\noverbuild\\noverbuilded\\noverbuilding\\noverbuilds\\noverburden\\noverburdened\\noverburdening\\noverburdens\\noverbusy\\noverbuy\\noverbuying\\noverbuys\\novercall\\novercalled\\novercalling\\novercalls\\novercame\\novercapacities\\novercapacity\\novercapitalize\\novercapitalized\\novercapitalizes\\novercapitalizing\\novercareful\\novercast\\novercasting\\novercasts\\novercautious\\novercharge\\novercharged\\novercharges\\novercharging\\novercivilized\\noverclean\\novercoat\\novercoats\\novercold\\novercome\\novercomes\\novercoming\\novercommit\\novercommited\\novercommiting\\novercommits\\novercompensate\\novercompensated\\novercompensates\\novercompensating\\novercomplicate\\novercomplicated\\novercomplicates\\novercomplicating\\noverconcern\\noverconcerned\\noverconcerning\\noverconcerns\\noverconfidence\\noverconfidences\\noverconfident\\noverconscientious\\noverconsume\\noverconsumed\\noverconsumes\\noverconsuming\\noverconsumption\\noverconsumptions\\novercontrol\\novercontroled\\novercontroling\\novercontrols\\novercook\\novercooked\\novercooking\\novercooks\\novercool\\novercooled\\novercooling\\novercools\\novercorrect\\novercorrected\\novercorrecting\\novercorrects\\novercoy\\novercram\\novercrammed\\novercramming\\novercrams\\novercritical\\novercrop\\novercropped\\novercropping\\novercrops\\novercrowd\\novercrowded\\novercrowding\\novercrowds\\noverdare\\noverdared\\noverdares\\noverdaring\\noverdear\\noverdeck\\noverdecked\\noverdecking\\noverdecks\\noverdecorate\\noverdecorated\\noverdecorates\\noverdecorating\\noverdepend\\noverdepended\\noverdependent\\noverdepending\\noverdepends\\noverdevelop\\noverdeveloped\\noverdeveloping\\noverdevelops\\noverdid\\noverdo\\noverdoer\\noverdoers\\noverdoes\\noverdoing\\noverdone\\noverdose\\noverdosed\\noverdoses\\noverdosing\\noverdraft\\noverdrafts\\noverdramatic\\noverdramatize\\noverdramatized\\noverdramatizes\\noverdramatizing\\noverdraw\\noverdrawing\\noverdrawn\\noverdraws\\noverdress\\noverdressed\\noverdresses\\noverdressing\\noverdrew\\noverdrink\\noverdrinks\\noverdry\\noverdue\\noverdye\\noverdyed\\noverdyeing\\noverdyes\\novereager\\novereasy\\novereat\\novereaten\\novereater\\novereaters\\novereating\\novereats\\novered\\novereducate\\novereducated\\novereducates\\novereducating\\noverelaborate\\noveremotional\\noveremphases\\noveremphasis\\noveremphasize\\noveremphasized\\noveremphasizes\\noveremphasizing\\noverenergetic\\noverenthusiastic\\noverestimate\\noverestimated\\noverestimates\\noverestimating\\noverexaggerate\\noverexaggerated\\noverexaggerates\\noverexaggerating\\noverexaggeration\\noverexaggerations\\noverexcite\\noverexcited\\noverexcitement\\noverexcitements\\noverexcites\\noverexciting\\noverexercise\\noverexert\\noverexertion\\noverexertions\\noverexhaust\\noverexhausted\\noverexhausting\\noverexhausts\\noverexpand\\noverexpanded\\noverexpanding\\noverexpands\\noverexpansion\\noverexpansions\\noverexplain\\noverexplained\\noverexplaining\\noverexplains\\noverexploit\\noverexploited\\noverexploiting\\noverexploits\\noverexpose\\noverexposed\\noverexposes\\noverexposing\\noverextend\\noverextended\\noverextending\\noverextends\\noverextension\\noverextensions\\noverexuberant\\noverfamiliar\\noverfar\\noverfast\\noverfat\\noverfatigue\\noverfatigued\\noverfatigues\\noverfatiguing\\noverfear\\noverfeared\\noverfearing\\noverfears\\noverfed\\noverfeed\\noverfeeding\\noverfeeds\\noverfertilize\\noverfertilized\\noverfertilizes\\noverfertilizing\\noverfill\\noverfilled\\noverfilling\\noverfills\\noverfish\\noverfished\\noverfishes\\noverfishing\\noverflew\\noverflies\\noverflow\\noverflowed\\noverflowing\\noverflown\\noverflows\\noverfly\\noverflying\\noverfond\\noverfoul\\noverfree\\noverfull\\novergenerous\\novergild\\novergilded\\novergilding\\novergilds\\novergilt\\novergird\\novergirded\\novergirding\\novergirds\\novergirt\\noverglad\\noverglamorize\\noverglamorized\\noverglamorizes\\noverglamorizing\\novergoad\\novergoaded\\novergoading\\novergoads\\novergraze\\novergrazed\\novergrazes\\novergrazing\\novergrew\\novergrow\\novergrowing\\novergrown\\novergrows\\noverhand\\noverhanded\\noverhanding\\noverhands\\noverhang\\noverhanging\\noverhangs\\noverhard\\noverharvest\\noverharvested\\noverharvesting\\noverharvests\\noverhasty\\noverhate\\noverhated\\noverhates\\noverhating\\noverhaul\\noverhauled\\noverhauling\\noverhauls\\noverhead\\noverheads\\noverheap\\noverheaped\\noverheaping\\noverheaps\\noverhear\\noverheard\\noverhearing\\noverhears\\noverheat\\noverheated\\noverheating\\noverheats\\noverheld\\noverhigh\\noverhold\\noverholding\\noverholds\\noverholy\\noverhope\\noverhoped\\noverhopes\\noverhoping\\noverhot\\noverhung\\noverhunt\\noverhunted\\noverhunting\\noverhunts\\noveridealize\\noveridealized\\noveridealizes\\noveridealizing\\noveridle\\noverimaginative\\noverimbibe\\noverimbibed\\noverimbibes\\noverimbibing\\noverimpressed\\noverindebted\\noverindulge\\noverindulged\\noverindulgent\\noverindulges\\noverindulging\\noverinflate\\noverinflated\\noverinflates\\noverinflating\\noverinfluence\\noverinfluenced\\noverinfluences\\noverinfluencing\\novering\\noverinsistent\\noverintense\\noverintensities\\noverintensity\\noverinvest\\noverinvested\\noverinvesting\\noverinvests\\noverinvolve\\noverinvolved\\noverinvolves\\noverinvolving\\noverjoy\\noverjoyed\\noverjoying\\noverjoys\\noverjust\\noverkeen\\noverkill\\noverkilled\\noverkilling\\noverkills\\noverkind\\noverlade\\noverladed\\noverladen\\noverlades\\noverlading\\noverlaid\\noverlain\\noverland\\noverlands\\noverlap\\noverlapped\\noverlapping\\noverlaps\\noverlarge\\noverlate\\noverlax\\noverlay\\noverlaying\\noverlays\\noverleaf\\noverleap\\noverleaped\\noverleaping\\noverleaps\\noverleapt\\noverlet\\noverlets\\noverletting\\noverlewd\\noverliberal\\noverlie\\noverlies\\noverlive\\noverlived\\noverlives\\noverliving\\noverload\\noverloaded\\noverloading\\noverloads\\noverlong\\noverlook\\noverlooked\\noverlooking\\noverlooks\\noverlord\\noverlorded\\noverlording\\noverlords\\noverloud\\noverlove\\noverloved\\noverloves\\noverloving\\noverly\\noverlying\\noverman\\novermanned\\novermanning\\novermans\\novermany\\novermedicate\\novermedicated\\novermedicates\\novermedicating\\novermeek\\novermelt\\novermelted\\novermelting\\novermelts\\novermen\\novermild\\novermix\\novermixed\\novermixes\\novermixing\\novermodest\\novermuch\\novermuches\\novernear\\noverneat\\novernew\\novernice\\novernight\\noverobvious\\noveroptimistic\\noverorganize\\noverorganized\\noverorganizes\\noverorganizing\\noverpaid\\noverparticular\\noverpass\\noverpassed\\noverpasses\\noverpassing\\noverpast\\noverpatriotic\\noverpay\\noverpaying\\noverpayment\\noverpayments\\noverpays\\noverpermissive\\noverpert\\noverplay\\noverplayed\\noverplaying\\noverplays\\noverplied\\noverplies\\noverplus\\noverpluses\\noverply\\noverplying\\noverpopulated\\noverpossessive\\noverpower\\noverpowered\\noverpowering\\noverpowers\\noverprase\\noverprased\\noverprases\\noverprasing\\noverprescribe\\noverprescribed\\noverprescribes\\noverprescribing\\noverpressure\\noverpressures\\noverprice\\noverpriced\\noverprices\\noverpricing\\noverprint\\noverprinted\\noverprinting\\noverprints\\noverprivileged\\noverproduce\\noverproduced\\noverproduces\\noverproducing\\noverproduction\\noverproductions\\noverpromise\\noverprotect\\noverprotected\\noverprotecting\\noverprotective\\noverprotects\\noverpublicize\\noverpublicized\\noverpublicizes\\noverpublicizing\\noverqualified\\noverran\\noverrank\\noverrash\\noverrate\\noverrated\\noverrates\\noverrating\\noverreach\\noverreached\\noverreaches\\noverreaching\\noverreact\\noverreacted\\noverreacting\\noverreaction\\noverreactions\\noverreacts\\noverrefine\\noverregulate\\noverregulated\\noverregulates\\noverregulating\\noverregulation\\noverregulations\\noverreliance\\noverreliances\\noverrepresent\\noverrepresented\\noverrepresenting\\noverrepresents\\noverrespond\\noverresponded\\noverresponding\\noverresponds\\noverrich\\noverridden\\noverride\\noverrides\\noverriding\\noverrife\\noverripe\\noverrode\\noverrude\\noverruff\\noverruffed\\noverruffing\\noverruffs\\noverrule\\noverruled\\noverrules\\noverruling\\noverrun\\noverrunning\\noverruns\\novers\\noversad\\noversale\\noversales\\noversalt\\noversalted\\noversalting\\noversalts\\noversaturate\\noversaturated\\noversaturates\\noversaturating\\noversave\\noversaved\\noversaves\\noversaving\\noversaw\\noversea\\noverseas\\noversee\\noverseed\\noverseeded\\noverseeding\\noverseeds\\noverseeing\\noverseen\\noverseer\\noverseers\\noversees\\noversell\\noverselling\\noversells\\noversensitive\\noverserious\\noverset\\noversets\\noversetting\\noversew\\noversewed\\noversewing\\noversewn\\noversews\\noversexed\\novershadow\\novershadowed\\novershadowing\\novershadows\\novershoe\\novershoes\\novershoot\\novershooting\\novershoots\\novershot\\novershots\\noversick\\noverside\\noversides\\noversight\\noversights\\noversimple\\noversimplified\\noversimplifies\\noversimplify\\noversimplifying\\noversize\\noversizes\\noversleep\\noversleeping\\noversleeps\\noverslept\\noverslip\\noverslipped\\noverslipping\\noverslips\\noverslipt\\noverslow\\noversoak\\noversoaked\\noversoaking\\noversoaks\\noversoft\\noversold\\noversolicitous\\noversoon\\noversoul\\noversouls\\noverspecialize\\noverspecialized\\noverspecializes\\noverspecializing\\noverspend\\noverspended\\noverspending\\noverspends\\noverspin\\noverspins\\noverspread\\noverspreading\\noverspreads\\noverstaff\\noverstaffed\\noverstaffing\\noverstaffs\\noverstate\\noverstated\\noverstatement\\noverstatements\\noverstates\\noverstating\\noverstay\\noverstayed\\noverstaying\\noverstays\\noverstep\\noverstepped\\noverstepping\\noversteps\\noverstimulate\\noverstimulated\\noverstimulates\\noverstimulating\\noverstir\\noverstirred\\noverstirring\\noverstirs\\noverstock\\noverstocked\\noverstocking\\noverstocks\\noverstrain\\noverstrained\\noverstraining\\noverstrains\\noverstress\\noverstressed\\noverstresses\\noverstressing\\noverstretch\\noverstretched\\noverstretches\\noverstretching\\noverstrict\\noversubtle\\noversup\\noversupped\\noversupping\\noversupplied\\noversupplies\\noversupply\\noversupplying\\noversups\\noversure\\noversuspicious\\noversweeten\\noversweetened\\noversweetening\\noversweetens\\novert\\novertake\\novertaken\\novertakes\\novertaking\\novertame\\novertart\\novertask\\novertasked\\novertasking\\novertasks\\novertax\\novertaxed\\novertaxes\\novertaxing\\noverthin\\noverthrew\\noverthrow\\noverthrown\\noverthrows\\novertighten\\novertightened\\novertightening\\novertightens\\novertime\\novertimed\\novertimes\\novertiming\\novertire\\novertired\\novertires\\novertiring\\novertly\\novertoil\\novertoiled\\novertoiling\\novertoils\\novertone\\novertones\\novertook\\novertop\\novertopped\\novertopping\\novertops\\novertrain\\novertrained\\novertraining\\novertrains\\novertreat\\novertreated\\novertreating\\novertreats\\novertrim\\novertrimmed\\novertrimming\\novertrims\\noverture\\novertured\\novertures\\noverturing\\noverturn\\noverturned\\noverturning\\noverturns\\noverurge\\noverurged\\noverurges\\noverurging\\noveruse\\noverused\\noveruses\\noverusing\\noverutilize\\noverutilized\\noverutilizes\\noverutilizing\\novervalue\\novervalued\\novervalues\\novervaluing\\noverview\\noverviews\\novervote\\novervoted\\novervotes\\novervoting\\noverwarm\\noverwarmed\\noverwarming\\noverwarms\\noverwary\\noverweak\\noverwear\\noverwearing\\noverwears\\noverween\\noverweened\\noverweening\\noverweens\\noverweight\\noverwet\\noverwets\\noverwetted\\noverwetting\\noverwhelm\\noverwhelmed\\noverwhelming\\noverwhelmingly\\noverwhelms\\noverwide\\noverwily\\noverwind\\noverwinding\\noverwinds\\noverwise\\noverword\\noverwords\\noverwore\\noverwork\\noverworked\\noverworking\\noverworks\\noverworn\\noverwound\\noverwrite\\noverwrited\\noverwrites\\noverwriting\\noverwrought\\noverzeal\\noverzealous\\noverzeals\\novibos\\novicidal\\novicide\\novicides\\noviducal\\noviduct\\noviducts\\noviform\\novine\\novines\\novipara\\noviposit\\noviposited\\novipositing\\noviposits\\novisac\\novisacs\\novoid\\novoidal\\novoids\\novoli\\novolo\\novolos\\novonic\\novular\\novulary\\novulate\\novulated\\novulates\\novulating\\novulation\\novulations\\novule\\novules\\novum\\now\\nowe\\nowed\\nowes\\nowing\\nowl\\nowlet\\nowlets\\nowlish\\nowlishly\\nowllike\\nowls\\nown\\nownable\\nowned\\nowner\\nowners\\nownership\\nownerships\\nowning\\nowns\\nowse\\nowsen\\nox\\noxalate\\noxalated\\noxalates\\noxalating\\noxalic\\noxalis\\noxalises\\noxazine\\noxazines\\noxblood\\noxbloods\\noxbow\\noxbows\\noxcart\\noxcarts\\noxen\\noxes\\noxeye\\noxeyes\\noxford\\noxfords\\noxheart\\noxhearts\\noxid\\noxidable\\noxidant\\noxidants\\noxidase\\noxidases\\noxidasic\\noxidate\\noxidated\\noxidates\\noxidating\\noxidation\\noxidations\\noxide\\noxides\\noxidic\\noxidise\\noxidised\\noxidiser\\noxidisers\\noxidises\\noxidising\\noxidizable\\noxidize\\noxidized\\noxidizer\\noxidizers\\noxidizes\\noxidizing\\noxids\\noxim\\noxime\\noximes\\noxims\\noxlip\\noxlips\\noxpecker\\noxpeckers\\noxtail\\noxtails\\noxter\\noxters\\noxtongue\\noxtongues\\noxy\\noxyacid\\noxyacids\\noxygen\\noxygenic\\noxygens\\noxymora\\noxymoron\\noxyphil\\noxyphile\\noxyphiles\\noxyphils\\noxysalt\\noxysalts\\noxysome\\noxysomes\\noxytocic\\noxytocics\\noxytocin\\noxytocins\\noxytone\\noxytones\\noy\\noyer\\noyers\\noyes\\noyesses\\noyez\\noyster\\noystered\\noysterer\\noysterers\\noystering\\noysterings\\noysterman\\noystermen\\noysters\\nozone\\nozones\\nozonic\\nozonide\\nozonides\\nozonise\\nozonised\\nozonises\\nozonising\\nozonize\\nozonized\\nozonizer\\nozonizers\\nozonizes\\nozonizing\\nozonous\\npa\\npabular\\npabulum\\npabulums\\npac\\npaca\\npacas\\npace\\npaced\\npacemaker\\npacemakers\\npacer\\npacers\\npaces\\npacha\\npachadom\\npachadoms\\npachalic\\npachalics\\npachas\\npachisi\\npachisis\\npachouli\\npachoulis\\npachuco\\npachucos\\npachyderm\\npachyderms\\npacific\\npacification\\npacifications\\npacified\\npacifier\\npacifiers\\npacifies\\npacifism\\npacifisms\\npacifist\\npacifistic\\npacifists\\npacify\\npacifying\\npacing\\npack\\npackable\\npackage\\npackaged\\npackager\\npackagers\\npackages\\npackaging\\npacked\\npacker\\npackers\\npacket\\npacketed\\npacketing\\npackets\\npacking\\npackings\\npackly\\npackman\\npackmen\\npackness\\npacknesses\\npacks\\npacksack\\npacksacks\\npackwax\\npackwaxes\\npacs\\npact\\npaction\\npactions\\npacts\\npad\\npadauk\\npadauks\\npadded\\npaddies\\npadding\\npaddings\\npaddle\\npaddled\\npaddler\\npaddlers\\npaddles\\npaddling\\npaddlings\\npaddock\\npaddocked\\npaddocking\\npaddocks\\npaddy\\npadishah\\npadishahs\\npadle\\npadles\\npadlock\\npadlocked\\npadlocking\\npadlocks\\npadnag\\npadnags\\npadouk\\npadouks\\npadre\\npadres\\npadri\\npadrone\\npadrones\\npadroni\\npads\\npadshah\\npadshahs\\npaduasoy\\npaduasoys\\npaean\\npaeanism\\npaeanisms\\npaeans\\npaella\\npaellas\\npaeon\\npaeons\\npagan\\npagandom\\npagandoms\\npaganise\\npaganised\\npaganises\\npaganish\\npaganising\\npaganism\\npaganisms\\npaganist\\npaganists\\npaganize\\npaganized\\npaganizes\\npaganizing\\npagans\\npage\\npageant\\npageantries\\npageantry\\npageants\\npageboy\\npageboys\\npaged\\npages\\npaginal\\npaginate\\npaginated\\npaginates\\npaginating\\npaging\\npagod\\npagoda\\npagodas\\npagods\\npagurian\\npagurians\\npagurid\\npagurids\\npah\\npahlavi\\npahlavis\\npaid\\npaik\\npaiked\\npaiking\\npaiks\\npail\\npailful\\npailfuls\\npails\\npailsful\\npain\\npainch\\npainches\\npained\\npainful\\npainfuller\\npainfullest\\npainfully\\npaining\\npainkiller\\npainkillers\\npainkilling\\npainless\\npainlessly\\npains\\npainstaking\\npainstakingly\\npaint\\npaintbrush\\npaintbrushes\\npainted\\npainter\\npainters\\npaintier\\npaintiest\\npainting\\npaintings\\npaints\\npainty\\npair\\npaired\\npairing\\npairs\\npaisa\\npaisan\\npaisano\\npaisanos\\npaisans\\npaisas\\npaise\\npaisley\\npaisleys\\npajama\\npajamas\\npal\\npalabra\\npalabras\\npalace\\npalaced\\npalaces\\npaladin\\npaladins\\npalais\\npalatable\\npalatal\\npalatals\\npalate\\npalates\\npalatial\\npalatine\\npalatines\\npalaver\\npalavered\\npalavering\\npalavers\\npalazzi\\npalazzo\\npale\\npalea\\npaleae\\npaleal\\npaled\\npaleface\\npalefaces\\npalely\\npaleness\\npalenesses\\npaleoclimatologic\\npaler\\npales\\npalest\\npalestra\\npalestrae\\npalestras\\npalet\\npaletot\\npaletots\\npalets\\npalette\\npalettes\\npaleways\\npalewise\\npalfrey\\npalfreys\\npalier\\npaliest\\npalikar\\npalikars\\npaling\\npalings\\npalinode\\npalinodes\\npalisade\\npalisaded\\npalisades\\npalisading\\npalish\\npall\\npalladia\\npalladic\\npallbearer\\npallbearers\\npalled\\npallet\\npallets\\npallette\\npallettes\\npallia\\npallial\\npalliate\\npalliated\\npalliates\\npalliating\\npalliation\\npalliations\\npalliative\\npallid\\npallidly\\npallier\\npalliest\\npalling\\npallium\\npalliums\\npallor\\npallors\\npalls\\npally\\npalm\\npalmar\\npalmary\\npalmate\\npalmated\\npalmed\\npalmer\\npalmers\\npalmette\\npalmettes\\npalmetto\\npalmettoes\\npalmettos\\npalmier\\npalmiest\\npalming\\npalmist\\npalmistries\\npalmistry\\npalmists\\npalmitin\\npalmitins\\npalmlike\\npalms\\npalmy\\npalmyra\\npalmyras\\npalomino\\npalominos\\npalooka\\npalookas\\npalp\\npalpable\\npalpably\\npalpal\\npalpate\\npalpated\\npalpates\\npalpating\\npalpation\\npalpations\\npalpator\\npalpators\\npalpebra\\npalpebrae\\npalpi\\npalpitate\\npalpitation\\npalpitations\\npalps\\npalpus\\npals\\npalsied\\npalsies\\npalsy\\npalsying\\npalter\\npaltered\\npalterer\\npalterers\\npaltering\\npalters\\npaltrier\\npaltriest\\npaltrily\\npaltry\\npaludal\\npaludism\\npaludisms\\npaly\\npam\\npampa\\npampas\\npampean\\npampeans\\npamper\\npampered\\npamperer\\npamperers\\npampering\\npampero\\npamperos\\npampers\\npamphlet\\npamphleteer\\npamphleteers\\npamphlets\\npams\\npan\\npanacea\\npanacean\\npanaceas\\npanache\\npanaches\\npanada\\npanadas\\npanama\\npanamas\\npanatela\\npanatelas\\npancake\\npancaked\\npancakes\\npancaking\\npanchax\\npanchaxes\\npancreas\\npancreases\\npancreatic\\npancreatitis\\npanda\\npandani\\npandanus\\npandanuses\\npandas\\npandect\\npandects\\npandemic\\npandemics\\npandemonium\\npandemoniums\\npander\\npandered\\npanderer\\npanderers\\npandering\\npanders\\npandied\\npandies\\npandit\\npandits\\npandoor\\npandoors\\npandora\\npandoras\\npandore\\npandores\\npandour\\npandours\\npandowdies\\npandowdy\\npandura\\npanduras\\npandy\\npandying\\npane\\npaned\\npanegyric\\npanegyrics\\npanegyrist\\npanegyrists\\npanel\\npaneled\\npaneling\\npanelings\\npanelist\\npanelists\\npanelled\\npanelling\\npanels\\npanes\\npanetela\\npanetelas\\npanfish\\npanfishes\\npanful\\npanfuls\\npang\\npanga\\npangas\\npanged\\npangen\\npangens\\npanging\\npangolin\\npangolins\\npangs\\npanhandle\\npanhandled\\npanhandler\\npanhandlers\\npanhandles\\npanhandling\\npanhuman\\npanic\\npanicked\\npanickier\\npanickiest\\npanicking\\npanicky\\npanicle\\npanicled\\npanicles\\npanics\\npanicum\\npanicums\\npanier\\npaniers\\npanmixia\\npanmixias\\npanne\\npanned\\npannes\\npannier\\npanniers\\npannikin\\npannikins\\npanning\\npanocha\\npanochas\\npanoche\\npanoches\\npanoplies\\npanoply\\npanoptic\\npanorama\\npanoramas\\npanoramic\\npanpipe\\npanpipes\\npans\\npansies\\npansophies\\npansophy\\npansy\\npant\\npantaloons\\npanted\\npantheon\\npantheons\\npanther\\npanthers\\npantie\\npanties\\npantile\\npantiled\\npantiles\\npanting\\npantofle\\npantofles\\npantomime\\npantomimed\\npantomimes\\npantomiming\\npantoum\\npantoums\\npantries\\npantry\\npants\\npantsuit\\npantsuits\\npanty\\npanzer\\npanzers\\npap\\npapa\\npapacies\\npapacy\\npapain\\npapains\\npapal\\npapally\\npapas\\npapaw\\npapaws\\npapaya\\npapayan\\npapayas\\npaper\\npaperboard\\npaperboards\\npaperboy\\npaperboys\\npapered\\npaperer\\npaperers\\npaperhanger\\npaperhangers\\npaperhanging\\npaperhangings\\npapering\\npapers\\npaperweight\\npaperweights\\npaperwork\\npapery\\npaphian\\npaphians\\npapilla\\npapillae\\npapillar\\npapillon\\npapillons\\npapist\\npapistic\\npapistries\\npapistry\\npapists\\npapoose\\npapooses\\npappi\\npappier\\npappies\\npappiest\\npappoose\\npappooses\\npappose\\npappous\\npappus\\npappy\\npaprica\\npapricas\\npaprika\\npaprikas\\npaps\\npapula\\npapulae\\npapulan\\npapular\\npapule\\npapules\\npapulose\\npapyral\\npapyri\\npapyrian\\npapyrine\\npapyrus\\npapyruses\\npar\\npara\\nparable\\nparables\\nparabola\\nparabolas\\nparachor\\nparachors\\nparachute\\nparachuted\\nparachutes\\nparachuting\\nparachutist\\nparachutists\\nparade\\nparaded\\nparader\\nparaders\\nparades\\nparadigm\\nparadigms\\nparading\\nparadise\\nparadises\\nparados\\nparadoses\\nparadox\\nparadoxes\\nparadoxical\\nparadoxically\\nparadrop\\nparadropped\\nparadropping\\nparadrops\\nparaffin\\nparaffined\\nparaffinic\\nparaffining\\nparaffins\\nparaform\\nparaforms\\nparagoge\\nparagoges\\nparagon\\nparagoned\\nparagoning\\nparagons\\nparagraph\\nparagraphs\\nparakeet\\nparakeets\\nparallax\\nparallaxes\\nparallel\\nparalleled\\nparalleling\\nparallelism\\nparallelisms\\nparallelled\\nparallelling\\nparallelogram\\nparallelograms\\nparallels\\nparalyse\\nparalysed\\nparalyses\\nparalysing\\nparalysis\\nparalytic\\nparalyze\\nparalyzed\\nparalyzes\\nparalyzing\\nparalyzingly\\nparament\\nparamenta\\nparaments\\nparameter\\nparameters\\nparametric\\nparamo\\nparamos\\nparamount\\nparamour\\nparamours\\nparang\\nparangs\\nparanoea\\nparanoeas\\nparanoia\\nparanoias\\nparanoid\\nparanoids\\nparapet\\nparapets\\nparaph\\nparaphernalia\\nparaphrase\\nparaphrased\\nparaphrases\\nparaphrasing\\nparaphs\\nparaplegia\\nparaplegias\\nparaplegic\\nparaplegics\\nparaquat\\nparaquats\\nparaquet\\nparaquets\\nparas\\nparasang\\nparasangs\\nparashah\\nparashioth\\nparashoth\\nparasite\\nparasites\\nparasitic\\nparasitism\\nparasitisms\\nparasol\\nparasols\\nparasternal\\nparatrooper\\nparatroopers\\nparatroops\\nparavane\\nparavanes\\nparboil\\nparboiled\\nparboiling\\nparboils\\nparcel\\nparceled\\nparceling\\nparcelled\\nparcelling\\nparcels\\nparcener\\nparceners\\nparch\\nparched\\nparches\\nparching\\nparchment\\nparchments\\npard\\npardah\\npardahs\\npardee\\npardi\\npardie\\npardine\\npardner\\npardners\\npardon\\npardonable\\npardoned\\npardoner\\npardoners\\npardoning\\npardons\\npards\\npardy\\npare\\nparecism\\nparecisms\\npared\\nparegoric\\nparegorics\\npareira\\npareiras\\nparent\\nparentage\\nparentages\\nparental\\nparented\\nparentheses\\nparenthesis\\nparenthetic\\nparenthetical\\nparenthetically\\nparenthood\\nparenthoods\\nparenting\\nparents\\nparer\\nparers\\npares\\npareses\\nparesis\\nparesthesia\\nparetic\\nparetics\\npareu\\npareus\\npareve\\nparfait\\nparfaits\\nparflesh\\nparfleshes\\nparfocal\\nparge\\nparged\\nparges\\nparget\\npargeted\\npargeting\\npargets\\npargetted\\npargetting\\nparging\\npargo\\npargos\\nparhelia\\nparhelic\\npariah\\npariahs\\nparian\\nparians\\nparies\\nparietal\\nparietals\\nparietes\\nparing\\nparings\\nparis\\nparises\\nparish\\nparishes\\nparishioner\\nparishioners\\nparities\\nparity\\npark\\nparka\\nparkas\\nparked\\nparker\\nparkers\\nparking\\nparkings\\nparkland\\nparklands\\nparklike\\nparks\\nparkway\\nparkways\\nparlance\\nparlances\\nparlando\\nparlante\\nparlay\\nparlayed\\nparlaying\\nparlays\\nparle\\nparled\\nparles\\nparley\\nparleyed\\nparleyer\\nparleyers\\nparleying\\nparleys\\nparliament\\nparliamentarian\\nparliamentarians\\nparliamentary\\nparliaments\\nparling\\nparlor\\nparlors\\nparlour\\nparlours\\nparlous\\nparochial\\nparochialism\\nparochialisms\\nparodic\\nparodied\\nparodies\\nparodist\\nparodists\\nparodoi\\nparodos\\nparody\\nparodying\\nparol\\nparole\\nparoled\\nparolee\\nparolees\\nparoles\\nparoling\\nparols\\nparonym\\nparonyms\\nparoquet\\nparoquets\\nparotic\\nparotid\\nparotids\\nparotoid\\nparotoids\\nparous\\nparoxysm\\nparoxysmal\\nparoxysms\\nparquet\\nparqueted\\nparqueting\\nparquetries\\nparquetry\\nparquets\\nparr\\nparrakeet\\nparrakeets\\nparral\\nparrals\\nparred\\nparrel\\nparrels\\nparridge\\nparridges\\nparried\\nparries\\nparring\\nparritch\\nparritches\\nparroket\\nparrokets\\nparrot\\nparroted\\nparroter\\nparroters\\nparroting\\nparrots\\nparroty\\nparrs\\nparry\\nparrying\\npars\\nparsable\\nparse\\nparsec\\nparsecs\\nparsed\\nparser\\nparsers\\nparses\\nparsimonies\\nparsimonious\\nparsimoniously\\nparsimony\\nparsing\\nparsley\\nparsleys\\nparsnip\\nparsnips\\nparson\\nparsonage\\nparsonages\\nparsonic\\nparsons\\npart\\npartake\\npartaken\\npartaker\\npartakers\\npartakes\\npartaking\\npartan\\npartans\\nparted\\nparterre\\nparterres\\npartial\\npartialities\\npartiality\\npartially\\npartials\\npartible\\nparticipant\\nparticipants\\nparticipate\\nparticipated\\nparticipates\\nparticipating\\nparticipation\\nparticipations\\nparticipatory\\nparticipial\\nparticiple\\nparticiples\\nparticle\\nparticles\\nparticular\\nparticularly\\nparticulars\\npartied\\nparties\\nparting\\npartings\\npartisan\\npartisans\\npartisanship\\npartisanships\\npartita\\npartitas\\npartite\\npartition\\npartitions\\npartizan\\npartizans\\npartlet\\npartlets\\npartly\\npartner\\npartnered\\npartnering\\npartners\\npartnership\\npartnerships\\nparton\\npartons\\npartook\\npartridge\\npartridges\\nparts\\nparturition\\nparturitions\\npartway\\nparty\\npartying\\nparura\\nparuras\\nparure\\nparures\\nparve\\nparvenu\\nparvenue\\nparvenus\\nparvis\\nparvise\\nparvises\\nparvolin\\nparvolins\\npas\\npaschal\\npaschals\\npase\\npaseo\\npaseos\\npases\\npash\\npasha\\npashadom\\npashadoms\\npashalic\\npashalics\\npashalik\\npashaliks\\npashas\\npashed\\npashes\\npashing\\npasquil\\npasquils\\npass\\npassable\\npassably\\npassade\\npassades\\npassado\\npassadoes\\npassados\\npassage\\npassaged\\npassages\\npassageway\\npassageways\\npassaging\\npassant\\npassband\\npassbands\\npassbook\\npassbooks\\npasse\\npassed\\npassee\\npassel\\npassels\\npassenger\\npassengers\\npasser\\npasserby\\npassers\\npassersby\\npasses\\npassible\\npassim\\npassing\\npassings\\npassion\\npassionate\\npassionateless\\npassionately\\npassions\\npassive\\npassively\\npassives\\npassivities\\npassivity\\npasskey\\npasskeys\\npassless\\npassover\\npassovers\\npassport\\npassports\\npassus\\npassuses\\npassword\\npasswords\\npast\\npasta\\npastas\\npaste\\npasteboard\\npasteboards\\npasted\\npastel\\npastels\\npaster\\npastern\\npasterns\\npasters\\npastes\\npasteurization\\npasteurizations\\npasteurize\\npasteurized\\npasteurizer\\npasteurizers\\npasteurizes\\npasteurizing\\npasticci\\npastiche\\npastiches\\npastier\\npasties\\npastiest\\npastil\\npastille\\npastilles\\npastils\\npastime\\npastimes\\npastina\\npastinas\\npasting\\npastness\\npastnesses\\npastor\\npastoral\\npastorals\\npastorate\\npastorates\\npastored\\npastoring\\npastors\\npastrami\\npastramis\\npastries\\npastromi\\npastromis\\npastry\\npasts\\npastural\\npasture\\npastured\\npasturer\\npasturers\\npastures\\npasturing\\npasty\\npat\\npataca\\npatacas\\npatagia\\npatagium\\npatamar\\npatamars\\npatch\\npatched\\npatcher\\npatchers\\npatches\\npatchier\\npatchiest\\npatchily\\npatching\\npatchwork\\npatchworks\\npatchy\\npate\\npated\\npatella\\npatellae\\npatellar\\npatellas\\npaten\\npatencies\\npatency\\npatens\\npatent\\npatented\\npatentee\\npatentees\\npatenting\\npatently\\npatentor\\npatentors\\npatents\\npater\\npaternal\\npaternally\\npaternities\\npaternity\\npaters\\npates\\npath\\npathetic\\npathetically\\npathfinder\\npathfinders\\npathless\\npathogen\\npathogens\\npathologic\\npathological\\npathologies\\npathologist\\npathologists\\npathology\\npathos\\npathoses\\npaths\\npathway\\npathways\\npatience\\npatiences\\npatient\\npatienter\\npatientest\\npatiently\\npatients\\npatin\\npatina\\npatinae\\npatinas\\npatine\\npatined\\npatines\\npatining\\npatins\\npatio\\npatios\\npatly\\npatness\\npatnesses\\npatois\\npatriarch\\npatriarchal\\npatriarchies\\npatriarchs\\npatriarchy\\npatrician\\npatricians\\npatricide\\npatricides\\npatrimonial\\npatrimonies\\npatrimony\\npatriot\\npatriotic\\npatriotically\\npatriotism\\npatriotisms\\npatriots\\npatrol\\npatrolled\\npatrolling\\npatrolman\\npatrolmen\\npatrols\\npatron\\npatronage\\npatronages\\npatronal\\npatronize\\npatronized\\npatronizes\\npatronizing\\npatronly\\npatrons\\npatroon\\npatroons\\npats\\npatsies\\npatsy\\npattamar\\npattamars\\npatted\\npattee\\npatten\\npattens\\npatter\\npattered\\npatterer\\npatterers\\npattering\\npattern\\npatterned\\npatterning\\npatterns\\npatters\\npattie\\npatties\\npatting\\npatty\\npattypan\\npattypans\\npatulent\\npatulous\\npaty\\npaucities\\npaucity\\npaughty\\npauldron\\npauldrons\\npaulin\\npaulins\\npaunch\\npaunched\\npaunches\\npaunchier\\npaunchiest\\npaunchy\\npauper\\npaupered\\npaupering\\npauperism\\npauperisms\\npauperize\\npauperized\\npauperizes\\npauperizing\\npaupers\\npausal\\npause\\npaused\\npauser\\npausers\\npauses\\npausing\\npavan\\npavane\\npavanes\\npavans\\npave\\npaved\\npavement\\npavements\\npaver\\npavers\\npaves\\npavid\\npavilion\\npavilioned\\npavilioning\\npavilions\\npavin\\npaving\\npavings\\npavins\\npavior\\npaviors\\npaviour\\npaviours\\npavis\\npavise\\npaviser\\npavisers\\npavises\\npavonine\\npaw\\npawed\\npawer\\npawers\\npawing\\npawkier\\npawkiest\\npawkily\\npawky\\npawl\\npawls\\npawn\\npawnable\\npawnage\\npawnages\\npawnbroker\\npawnbrokers\\npawned\\npawnee\\npawnees\\npawner\\npawners\\npawning\\npawnor\\npawnors\\npawns\\npawnshop\\npawnshops\\npawpaw\\npawpaws\\npaws\\npax\\npaxes\\npaxwax\\npaxwaxes\\npay\\npayable\\npayably\\npaycheck\\npaychecks\\npayday\\npaydays\\npayed\\npayee\\npayees\\npayer\\npayers\\npaying\\npayload\\npayloads\\npayment\\npayments\\npaynim\\npaynims\\npayoff\\npayoffs\\npayola\\npayolas\\npayor\\npayors\\npayroll\\npayrolls\\npays\\npe\\npea\\npeace\\npeaceable\\npeaceably\\npeaced\\npeaceful\\npeacefuller\\npeacefullest\\npeacefully\\npeacekeeper\\npeacekeepers\\npeacekeeping\\npeacekeepings\\npeacemaker\\npeacemakers\\npeaces\\npeacetime\\npeacetimes\\npeach\\npeached\\npeacher\\npeachers\\npeaches\\npeachier\\npeachiest\\npeaching\\npeachy\\npeacing\\npeacoat\\npeacoats\\npeacock\\npeacocked\\npeacockier\\npeacockiest\\npeacocking\\npeacocks\\npeacocky\\npeafowl\\npeafowls\\npeag\\npeage\\npeages\\npeags\\npeahen\\npeahens\\npeak\\npeaked\\npeakier\\npeakiest\\npeaking\\npeakish\\npeakless\\npeaklike\\npeaks\\npeaky\\npeal\\npealed\\npealike\\npealing\\npeals\\npean\\npeans\\npeanut\\npeanuts\\npear\\npearl\\npearlash\\npearlashes\\npearled\\npearler\\npearlers\\npearlier\\npearliest\\npearling\\npearlite\\npearlites\\npearls\\npearly\\npearmain\\npearmains\\npears\\npeart\\npearter\\npeartest\\npeartly\\npeas\\npeasant\\npeasantries\\npeasantry\\npeasants\\npeascod\\npeascods\\npease\\npeasecod\\npeasecods\\npeasen\\npeases\\npeat\\npeatier\\npeatiest\\npeats\\npeaty\\npeavey\\npeaveys\\npeavies\\npeavy\\npebble\\npebbled\\npebbles\\npebblier\\npebbliest\\npebbling\\npebbly\\npecan\\npecans\\npeccable\\npeccadillo\\npeccadilloes\\npeccadillos\\npeccancies\\npeccancy\\npeccant\\npeccaries\\npeccary\\npeccavi\\npeccavis\\npech\\npechan\\npechans\\npeched\\npeching\\npechs\\npeck\\npecked\\npecker\\npeckers\\npeckier\\npeckiest\\npecking\\npecks\\npecky\\npectase\\npectases\\npectate\\npectates\\npecten\\npectens\\npectic\\npectin\\npectines\\npectins\\npectize\\npectized\\npectizes\\npectizing\\npectoral\\npectorals\\npeculatation\\npeculatations\\npeculate\\npeculated\\npeculates\\npeculating\\npeculia\\npeculiar\\npeculiarities\\npeculiarity\\npeculiarly\\npeculiars\\npeculium\\npecuniary\\nped\\npedagog\\npedagogic\\npedagogical\\npedagogies\\npedagogs\\npedagogue\\npedagogues\\npedagogy\\npedal\\npedaled\\npedalfer\\npedalfers\\npedalier\\npedaliers\\npedaling\\npedalled\\npedalling\\npedals\\npedant\\npedantic\\npedantries\\npedantry\\npedants\\npedate\\npedately\\npeddle\\npeddled\\npeddler\\npeddleries\\npeddlers\\npeddlery\\npeddles\\npeddling\\npederast\\npederasts\\npederasty\\npedes\\npedestal\\npedestaled\\npedestaling\\npedestalled\\npedestalling\\npedestals\\npedestrian\\npedestrians\\npediatric\\npediatrician\\npediatricians\\npediatrics\\npedicab\\npedicabs\\npedicel\\npedicels\\npedicle\\npedicled\\npedicles\\npedicure\\npedicured\\npedicures\\npedicuring\\npediform\\npedigree\\npedigrees\\npediment\\npediments\\npedipalp\\npedipalps\\npedlar\\npedlaries\\npedlars\\npedlary\\npedler\\npedlers\\npedocal\\npedocals\\npedologies\\npedology\\npedro\\npedros\\npeds\\npeduncle\\npeduncles\\npee\\npeebeen\\npeebeens\\npeed\\npeeing\\npeek\\npeekaboo\\npeekaboos\\npeeked\\npeeking\\npeeks\\npeel\\npeelable\\npeeled\\npeeler\\npeelers\\npeeling\\npeelings\\npeels\\npeen\\npeened\\npeening\\npeens\\npeep\\npeeped\\npeeper\\npeepers\\npeephole\\npeepholes\\npeeping\\npeeps\\npeepshow\\npeepshows\\npeepul\\npeepuls\\npeer\\npeerage\\npeerages\\npeered\\npeeress\\npeeresses\\npeerie\\npeeries\\npeering\\npeerless\\npeers\\npeery\\npees\\npeesweep\\npeesweeps\\npeetweet\\npeetweets\\npeeve\\npeeved\\npeeves\\npeeving\\npeevish\\npeevishly\\npeevishness\\npeevishnesses\\npeewee\\npeewees\\npeewit\\npeewits\\npeg\\npegboard\\npegboards\\npegbox\\npegboxes\\npegged\\npegging\\npegless\\npeglike\\npegs\\npeignoir\\npeignoirs\\npein\\npeined\\npeining\\npeins\\npeise\\npeised\\npeises\\npeising\\npekan\\npekans\\npeke\\npekes\\npekin\\npekins\\npekoe\\npekoes\\npelage\\npelages\\npelagial\\npelagic\\npele\\npelerine\\npelerines\\npeles\\npelf\\npelfs\\npelican\\npelicans\\npelisse\\npelisses\\npelite\\npelites\\npelitic\\npellagra\\npellagras\\npellet\\npelletal\\npelleted\\npelleting\\npelletize\\npelletized\\npelletizes\\npelletizing\\npellets\\npellicle\\npellicles\\npellmell\\npellmells\\npellucid\\npelon\\npeloria\\npelorian\\npelorias\\npeloric\\npelorus\\npeloruses\\npelota\\npelotas\\npelt\\npeltast\\npeltasts\\npeltate\\npelted\\npelter\\npelters\\npelting\\npeltries\\npeltry\\npelts\\npelves\\npelvic\\npelvics\\npelvis\\npelvises\\npembina\\npembinas\\npemican\\npemicans\\npemmican\\npemmicans\\npemoline\\npemolines\\npemphix\\npemphixes\\npen\\npenal\\npenalise\\npenalised\\npenalises\\npenalising\\npenalities\\npenality\\npenalize\\npenalized\\npenalizes\\npenalizing\\npenally\\npenalties\\npenalty\\npenance\\npenanced\\npenances\\npenancing\\npenang\\npenangs\\npenates\\npence\\npencel\\npencels\\npenchant\\npenchants\\npencil\\npenciled\\npenciler\\npencilers\\npenciling\\npencilled\\npencilling\\npencils\\npend\\npendaflex\\npendant\\npendants\\npended\\npendencies\\npendency\\npendent\\npendents\\npending\\npends\\npendular\\npendulous\\npendulum\\npendulums\\npenes\\npenetrable\\npenetration\\npenetrations\\npenetrative\\npengo\\npengos\\npenguin\\npenguins\\npenial\\npenicil\\npenicillin\\npenicillins\\npenicils\\npenile\\npeninsula\\npeninsular\\npeninsulas\\npenis\\npenises\\npenitence\\npenitences\\npenitent\\npenitential\\npenitentiaries\\npenitentiary\\npenitents\\npenknife\\npenknives\\npenlight\\npenlights\\npenlite\\npenlites\\npenman\\npenmanship\\npenmanships\\npenmen\\npenna\\npennae\\npenname\\npennames\\npennant\\npennants\\npennate\\npennated\\npenned\\npenner\\npenners\\npenni\\npennia\\npennies\\npenniless\\npennine\\npennines\\npenning\\npennis\\npennon\\npennoned\\npennons\\npennsylvania\\npenny\\npenoche\\npenoches\\npenologies\\npenology\\npenoncel\\npenoncels\\npenpoint\\npenpoints\\npens\\npensee\\npensees\\npensil\\npensile\\npensils\\npension\\npensione\\npensioned\\npensioner\\npensioners\\npensiones\\npensioning\\npensions\\npensive\\npensively\\npenster\\npensters\\npenstock\\npenstocks\\npent\\npentacle\\npentacles\\npentad\\npentads\\npentagon\\npentagonal\\npentagons\\npentagram\\npentagrams\\npentameter\\npentameters\\npentane\\npentanes\\npentarch\\npentarchs\\npenthouse\\npenthouses\\npentomic\\npentosan\\npentosans\\npentose\\npentoses\\npentyl\\npentyls\\npenuche\\npenuches\\npenuchi\\npenuchis\\npenuchle\\npenuchles\\npenuckle\\npenuckles\\npenult\\npenults\\npenumbra\\npenumbrae\\npenumbras\\npenuries\\npenurious\\npenury\\npeon\\npeonage\\npeonages\\npeones\\npeonies\\npeonism\\npeonisms\\npeons\\npeony\\npeople\\npeopled\\npeopler\\npeoplers\\npeoples\\npeopling\\npep\\npeperoni\\npeperonis\\npepla\\npeplos\\npeploses\\npeplum\\npeplumed\\npeplums\\npeplus\\npepluses\\npepo\\npeponida\\npeponidas\\npeponium\\npeponiums\\npepos\\npepped\\npepper\\npeppercorn\\npeppercorns\\npeppered\\npepperer\\npepperers\\npeppering\\npeppermint\\npeppermints\\npeppers\\npeppery\\npeppier\\npeppiest\\npeppily\\npepping\\npeppy\\npeps\\npepsin\\npepsine\\npepsines\\npepsins\\npeptic\\npeptics\\npeptid\\npeptide\\npeptides\\npeptidic\\npeptids\\npeptize\\npeptized\\npeptizer\\npeptizers\\npeptizes\\npeptizing\\npeptone\\npeptones\\npeptonic\\nper\\nperacid\\nperacids\\nperambulate\\nperambulated\\nperambulates\\nperambulating\\nperambulation\\nperambulations\\npercale\\npercales\\nperceivable\\nperceive\\nperceived\\nperceives\\nperceiving\\npercent\\npercentage\\npercentages\\npercentile\\npercentiles\\npercents\\npercept\\nperceptible\\nperceptibly\\nperception\\nperceptions\\nperceptive\\nperceptively\\npercepts\\nperch\\nperched\\npercher\\nperchers\\nperches\\nperching\\npercoid\\npercoids\\npercolate\\npercolated\\npercolates\\npercolating\\npercolator\\npercolators\\npercuss\\npercussed\\npercusses\\npercussing\\npercussion\\npercussions\\nperdu\\nperdue\\nperdues\\nperdus\\nperdy\\npere\\nperegrin\\nperegrins\\nperemptorily\\nperemptory\\nperennial\\nperennially\\nperennials\\nperes\\nperfect\\nperfecta\\nperfectas\\nperfected\\nperfecter\\nperfectest\\nperfectibilities\\nperfectibility\\nperfectible\\nperfecting\\nperfection\\nperfectionist\\nperfectionists\\nperfections\\nperfectly\\nperfectness\\nperfectnesses\\nperfecto\\nperfectos\\nperfects\\nperfidies\\nperfidious\\nperfidiously\\nperfidy\\nperforate\\nperforated\\nperforates\\nperforating\\nperforation\\nperforations\\nperforce\\nperform\\nperformance\\nperformances\\nperformed\\nperformer\\nperformers\\nperforming\\nperforms\\nperfume\\nperfumed\\nperfumer\\nperfumers\\nperfumes\\nperfuming\\nperfunctory\\nperfuse\\nperfused\\nperfuses\\nperfusing\\npergola\\npergolas\\nperhaps\\nperhapses\\nperi\\nperianth\\nperianths\\nperiapt\\nperiapts\\nperiblem\\nperiblems\\npericarp\\npericarps\\npericopae\\npericope\\npericopes\\nperiderm\\nperiderms\\nperidia\\nperidial\\nperidium\\nperidot\\nperidots\\nperigeal\\nperigean\\nperigee\\nperigees\\nperigon\\nperigons\\nperigynies\\nperigyny\\nperil\\nperiled\\nperiling\\nperilla\\nperillas\\nperilled\\nperilling\\nperilous\\nperilously\\nperils\\nperilune\\nperilunes\\nperimeter\\nperimeters\\nperinea\\nperineal\\nperineum\\nperiod\\nperiodic\\nperiodical\\nperiodically\\nperiodicals\\nperiodid\\nperiodids\\nperiods\\nperiotic\\nperipatetic\\nperipeties\\nperipety\\nperipheral\\nperipheries\\nperiphery\\nperipter\\nperipters\\nperique\\nperiques\\nperis\\nperisarc\\nperisarcs\\nperiscope\\nperiscopes\\nperish\\nperishable\\nperishables\\nperished\\nperishes\\nperishing\\nperiwig\\nperiwigs\\nperjure\\nperjured\\nperjurer\\nperjurers\\nperjures\\nperjuries\\nperjuring\\nperjury\\nperk\\nperked\\nperkier\\nperkiest\\nperkily\\nperking\\nperkish\\nperks\\nperky\\nperlite\\nperlites\\nperlitic\\nperm\\npermanence\\npermanences\\npermanencies\\npermanency\\npermanent\\npermanently\\npermanents\\npermeability\\npermeable\\npermease\\npermeases\\npermeate\\npermeated\\npermeates\\npermeating\\npermeation\\npermeations\\npermissible\\npermission\\npermissions\\npermissive\\npermissiveness\\npermissivenesses\\npermit\\npermits\\npermitted\\npermitting\\nperms\\npermute\\npermuted\\npermutes\\npermuting\\npernicious\\nperniciously\\nperoneal\\nperoral\\nperorate\\nperorated\\nperorates\\nperorating\\nperoxid\\nperoxide\\nperoxided\\nperoxides\\nperoxiding\\nperoxids\\nperpend\\nperpended\\nperpendicular\\nperpendicularities\\nperpendicularity\\nperpendicularly\\nperpendiculars\\nperpending\\nperpends\\nperpent\\nperpents\\nperpetrate\\nperpetrated\\nperpetrates\\nperpetrating\\nperpetration\\nperpetrations\\nperpetrator\\nperpetrators\\nperpetual\\nperpetually\\nperpetuate\\nperpetuated\\nperpetuates\\nperpetuating\\nperpetuation\\nperpetuations\\nperpetuities\\nperpetuity\\nperplex\\nperplexed\\nperplexes\\nperplexing\\nperplexities\\nperplexity\\nperquisite\\nperquisites\\nperries\\nperron\\nperrons\\nperry\\npersalt\\npersalts\\nperse\\npersecute\\npersecuted\\npersecutes\\npersecuting\\npersecution\\npersecutions\\npersecutor\\npersecutors\\nperses\\nperseverance\\nperseverances\\npersevere\\npersevered\\nperseveres\\npersevering\\npersist\\npersisted\\npersistence\\npersistences\\npersistencies\\npersistency\\npersistent\\npersistently\\npersisting\\npersists\\nperson\\npersona\\npersonable\\npersonae\\npersonage\\npersonages\\npersonal\\npersonalities\\npersonality\\npersonalize\\npersonalized\\npersonalizes\\npersonalizing\\npersonally\\npersonals\\npersonas\\npersonification\\npersonifications\\npersonifies\\npersonify\\npersonnel\\npersons\\nperspective\\nperspectives\\nperspicacious\\nperspicacities\\nperspicacity\\nperspiration\\nperspirations\\nperspire\\nperspired\\nperspires\\nperspiring\\nperspiry\\npersuade\\npersuaded\\npersuades\\npersuading\\npersuasion\\npersuasions\\npersuasive\\npersuasively\\npersuasiveness\\npersuasivenesses\\npert\\npertain\\npertained\\npertaining\\npertains\\nperter\\npertest\\npertinacious\\npertinacities\\npertinacity\\npertinence\\npertinences\\npertinent\\npertly\\npertness\\npertnesses\\nperturb\\nperturbation\\nperturbations\\nperturbed\\nperturbing\\nperturbs\\nperuke\\nperukes\\nperusal\\nperusals\\nperuse\\nperused\\nperuser\\nperusers\\nperuses\\nperusing\\npervade\\npervaded\\npervader\\npervaders\\npervades\\npervading\\npervasive\\nperverse\\nperversely\\nperverseness\\nperversenesses\\nperversion\\nperversions\\nperversities\\nperversity\\npervert\\nperverted\\nperverting\\nperverts\\npervious\\npes\\npesade\\npesades\\npeseta\\npesetas\\npesewa\\npesewas\\npeskier\\npeskiest\\npeskily\\npesky\\npeso\\npesos\\npessaries\\npessary\\npessimism\\npessimisms\\npessimist\\npessimistic\\npessimists\\npest\\npester\\npestered\\npesterer\\npesterers\\npestering\\npesters\\npesthole\\npestholes\\npestilence\\npestilences\\npestilent\\npestle\\npestled\\npestles\\npestling\\npests\\npet\\npetal\\npetaled\\npetaline\\npetalled\\npetalodies\\npetalody\\npetaloid\\npetalous\\npetals\\npetard\\npetards\\npetasos\\npetasoses\\npetasus\\npetasuses\\npetcock\\npetcocks\\npetechia\\npetechiae\\npeter\\npetered\\npetering\\npeters\\npetiolar\\npetiole\\npetioled\\npetioles\\npetit\\npetite\\npetites\\npetition\\npetitioned\\npetitioner\\npetitioners\\npetitioning\\npetitions\\npetrel\\npetrels\\npetri\\npetrifaction\\npetrifactions\\npetrified\\npetrifies\\npetrify\\npetrifying\\npetrol\\npetroleum\\npetroleums\\npetrolic\\npetrols\\npetronel\\npetronels\\npetrosal\\npetrous\\npets\\npetted\\npettedly\\npetter\\npetters\\npetti\\npetticoat\\npetticoats\\npettier\\npettiest\\npettifog\\npettifogged\\npettifogging\\npettifogs\\npettily\\npettiness\\npettinesses\\npetting\\npettish\\npettle\\npettled\\npettles\\npettling\\npetto\\npetty\\npetulance\\npetulances\\npetulant\\npetulantly\\npetunia\\npetunias\\npetuntse\\npetuntses\\npetuntze\\npetuntzes\\npew\\npewee\\npewees\\npewit\\npewits\\npews\\npewter\\npewterer\\npewterers\\npewters\\npeyote\\npeyotes\\npeyotl\\npeyotls\\npeytral\\npeytrals\\npeytrel\\npeytrels\\npfennig\\npfennige\\npfennigs\\nphaeton\\nphaetons\\nphage\\nphages\\nphalange\\nphalanges\\nphalanx\\nphalanxes\\nphalli\\nphallic\\nphallics\\nphallism\\nphallisms\\nphallist\\nphallists\\nphallus\\nphalluses\\nphantasied\\nphantasies\\nphantasm\\nphantasms\\nphantast\\nphantasts\\nphantasy\\nphantasying\\nphantom\\nphantoms\\npharaoh\\npharaohs\\npharisaic\\npharisee\\npharisees\\npharmaceutical\\npharmaceuticals\\npharmacies\\npharmacist\\npharmacologic\\npharmacological\\npharmacologist\\npharmacologists\\npharmacology\\npharmacy\\npharos\\npharoses\\npharyngeal\\npharynges\\npharynx\\npharynxes\\nphase\\nphaseal\\nphased\\nphaseout\\nphaseouts\\nphases\\nphasic\\nphasing\\nphasis\\nphasmid\\nphasmids\\nphat\\nphatic\\npheasant\\npheasants\\nphellem\\nphellems\\nphelonia\\nphenazin\\nphenazins\\nphenetic\\nphenetol\\nphenetols\\nphenix\\nphenixes\\nphenol\\nphenolic\\nphenolics\\nphenols\\nphenom\\nphenomena\\nphenomenal\\nphenomenon\\nphenomenons\\nphenoms\\nphenyl\\nphenylic\\nphenyls\\nphew\\nphi\\nphial\\nphials\\nphilabeg\\nphilabegs\\nphiladelphia\\nphilander\\nphilandered\\nphilanderer\\nphilanderers\\nphilandering\\nphilanders\\nphilanthropic\\nphilanthropies\\nphilanthropist\\nphilanthropists\\nphilanthropy\\nphilatelies\\nphilatelist\\nphilatelists\\nphilately\\nphilharmonic\\nphilibeg\\nphilibegs\\nphilistine\\nphilistines\\nphilodendron\\nphilodendrons\\nphilomel\\nphilomels\\nphilosopher\\nphilosophers\\nphilosophic\\nphilosophical\\nphilosophically\\nphilosophies\\nphilosophize\\nphilosophized\\nphilosophizes\\nphilosophizing\\nphilosophy\\nphilter\\nphiltered\\nphiltering\\nphilters\\nphiltre\\nphiltred\\nphiltres\\nphiltring\\nphimoses\\nphimosis\\nphimotic\\nphis\\nphiz\\nphizes\\nphlebitis\\nphlegm\\nphlegmatic\\nphlegmier\\nphlegmiest\\nphlegms\\nphlegmy\\nphloem\\nphloems\\nphlox\\nphloxes\\nphobia\\nphobias\\nphobic\\nphocine\\nphoebe\\nphoebes\\nphoenix\\nphoenixes\\nphon\\nphonal\\nphonate\\nphonated\\nphonates\\nphonating\\nphone\\nphoned\\nphoneme\\nphonemes\\nphonemic\\nphones\\nphonetic\\nphonetician\\nphoneticians\\nphonetics\\nphoney\\nphoneys\\nphonic\\nphonics\\nphonier\\nphonies\\nphoniest\\nphonily\\nphoning\\nphono\\nphonograph\\nphonographally\\nphonographic\\nphonographs\\nphonon\\nphonons\\nphonos\\nphons\\nphony\\nphooey\\nphorate\\nphorates\\nphosgene\\nphosgenes\\nphosphatase\\nphosphate\\nphosphates\\nphosphatic\\nphosphid\\nphosphids\\nphosphin\\nphosphins\\nphosphor\\nphosphorescence\\nphosphorescences\\nphosphorescent\\nphosphorescently\\nphosphoric\\nphosphorous\\nphosphors\\nphosphorus\\nphot\\nphotic\\nphotics\\nphoto\\nphotoed\\nphotoelectric\\nphotoelectrically\\nphotog\\nphotogenic\\nphotograph\\nphotographally\\nphotographed\\nphotographer\\nphotographers\\nphotographic\\nphotographies\\nphotographing\\nphotographs\\nphotography\\nphotogs\\nphotoing\\nphotomap\\nphotomapped\\nphotomapping\\nphotomaps\\nphoton\\nphotonic\\nphotons\\nphotopia\\nphotopias\\nphotopic\\nphotos\\nphotoset\\nphotosets\\nphotosetting\\nphotosynthesis\\nphotosynthesises\\nphotosynthesize\\nphotosynthesized\\nphotosynthesizes\\nphotosynthesizing\\nphotosynthetic\\nphots\\nphpht\\nphrasal\\nphrase\\nphrased\\nphraseologies\\nphraseology\\nphrases\\nphrasing\\nphrasings\\nphratral\\nphratric\\nphratries\\nphratry\\nphreatic\\nphrenic\\nphrensied\\nphrensies\\nphrensy\\nphrensying\\npht\\nphthalic\\nphthalin\\nphthalins\\nphthises\\nphthisic\\nphthisics\\nphthisis\\nphyla\\nphylae\\nphylar\\nphylaxis\\nphylaxises\\nphyle\\nphyleses\\nphylesis\\nphylesises\\nphyletic\\nphylic\\nphyllaries\\nphyllary\\nphyllite\\nphyllites\\nphyllode\\nphyllodes\\nphylloid\\nphylloids\\nphyllome\\nphyllomes\\nphylon\\nphylum\\nphyses\\nphysic\\nphysical\\nphysically\\nphysicals\\nphysician\\nphysicians\\nphysicist\\nphysicists\\nphysicked\\nphysicking\\nphysics\\nphysiognomies\\nphysiognomy\\nphysiologic\\nphysiological\\nphysiologies\\nphysiologist\\nphysiologists\\nphysiology\\nphysiotherapies\\nphysiotherapy\\nphysique\\nphysiques\\nphysis\\nphytane\\nphytanes\\nphytin\\nphytins\\nphytoid\\nphyton\\nphytonic\\nphytons\\npi\\npia\\npiacular\\npiaffe\\npiaffed\\npiaffer\\npiaffers\\npiaffes\\npiaffing\\npial\\npian\\npianic\\npianism\\npianisms\\npianist\\npianists\\npiano\\npianos\\npians\\npias\\npiasaba\\npiasabas\\npiasava\\npiasavas\\npiassaba\\npiassabas\\npiassava\\npiassavas\\npiaster\\npiasters\\npiastre\\npiastres\\npiazza\\npiazzas\\npiazze\\npibroch\\npibrochs\\npic\\npica\\npicacho\\npicachos\\npicador\\npicadores\\npicadors\\npical\\npicara\\npicaras\\npicaro\\npicaroon\\npicarooned\\npicarooning\\npicaroons\\npicaros\\npicas\\npicayune\\npicayunes\\npiccolo\\npiccolos\\npice\\npiceous\\npick\\npickadil\\npickadils\\npickax\\npickaxe\\npickaxed\\npickaxes\\npickaxing\\npicked\\npickeer\\npickeered\\npickeering\\npickeers\\npicker\\npickerel\\npickerels\\npickers\\npicket\\npicketed\\npicketer\\npicketers\\npicketing\\npickets\\npickier\\npickiest\\npicking\\npickings\\npickle\\npickled\\npickles\\npickling\\npicklock\\npicklocks\\npickoff\\npickoffs\\npickpocket\\npickpockets\\npicks\\npickup\\npickups\\npickwick\\npickwicks\\npicky\\npicloram\\npiclorams\\npicnic\\npicnicked\\npicnicking\\npicnicky\\npicnics\\npicogram\\npicograms\\npicolin\\npicoline\\npicolines\\npicolins\\npicot\\npicoted\\npicotee\\npicotees\\npicoting\\npicots\\npicquet\\npicquets\\npicrate\\npicrated\\npicrates\\npicric\\npicrite\\npicrites\\npics\\npictorial\\npicture\\npictured\\npictures\\npicturesque\\npicturesqueness\\npicturesquenesses\\npicturing\\npicul\\npiculs\\npiddle\\npiddled\\npiddler\\npiddlers\\npiddles\\npiddling\\npiddock\\npiddocks\\npidgin\\npidgins\\npie\\npiebald\\npiebalds\\npiece\\npieced\\npiecemeal\\npiecer\\npiecers\\npieces\\npiecing\\npiecings\\npiecrust\\npiecrusts\\npied\\npiedfort\\npiedforts\\npiedmont\\npiedmonts\\npiefort\\npieforts\\npieing\\npieplant\\npieplants\\npier\\npierce\\npierced\\npiercer\\npiercers\\npierces\\npiercing\\npierrot\\npierrots\\npiers\\npies\\npieta\\npietas\\npieties\\npietism\\npietisms\\npietist\\npietists\\npiety\\npiffle\\npiffled\\npiffles\\npiffling\\npig\\npigboat\\npigboats\\npigeon\\npigeonhole\\npigeonholed\\npigeonholes\\npigeonholing\\npigeons\\npigfish\\npigfishes\\npigged\\npiggeries\\npiggery\\npiggie\\npiggies\\npiggin\\npigging\\npiggins\\npiggish\\npiggy\\npiggyback\\npigheaded\\npiglet\\npiglets\\npigment\\npigmentation\\npigmentations\\npigmented\\npigmenting\\npigments\\npigmies\\npigmy\\npignora\\npignus\\npignut\\npignuts\\npigpen\\npigpens\\npigs\\npigskin\\npigskins\\npigsney\\npigsneys\\npigstick\\npigsticked\\npigsticking\\npigsticks\\npigsties\\npigsty\\npigtail\\npigtails\\npigweed\\npigweeds\\npiing\\npika\\npikake\\npikakes\\npikas\\npike\\npiked\\npikeman\\npikemen\\npiker\\npikers\\npikes\\npikestaff\\npikestaves\\npiking\\npilaf\\npilaff\\npilaffs\\npilafs\\npilar\\npilaster\\npilasters\\npilau\\npilaus\\npilaw\\npilaws\\npilchard\\npilchards\\npile\\npilea\\npileate\\npileated\\npiled\\npilei\\npileous\\npiles\\npileum\\npileup\\npileups\\npileus\\npilewort\\npileworts\\npilfer\\npilfered\\npilferer\\npilferers\\npilfering\\npilfers\\npilgrim\\npilgrimage\\npilgrimages\\npilgrims\\npili\\npiliform\\npiling\\npilings\\npilis\\npill\\npillage\\npillaged\\npillager\\npillagers\\npillages\\npillaging\\npillar\\npillared\\npillaring\\npillars\\npillbox\\npillboxes\\npilled\\npilling\\npillion\\npillions\\npilloried\\npillories\\npillory\\npillorying\\npillow\\npillowcase\\npillowcases\\npillowed\\npillowing\\npillows\\npillowy\\npills\\npilose\\npilosities\\npilosity\\npilot\\npilotage\\npilotages\\npiloted\\npiloting\\npilotings\\npilotless\\npilots\\npilous\\npilsener\\npilseners\\npilsner\\npilsners\\npilular\\npilule\\npilules\\npilus\\npily\\npima\\npimas\\npimento\\npimentos\\npimiento\\npimientos\\npimp\\npimped\\npimping\\npimple\\npimpled\\npimples\\npimplier\\npimpliest\\npimply\\npimps\\npin\\npina\\npinafore\\npinafores\\npinang\\npinangs\\npinas\\npinaster\\npinasters\\npinata\\npinatas\\npinball\\npinballs\\npinbone\\npinbones\\npincer\\npincers\\npinch\\npinchbug\\npinchbugs\\npincheck\\npinchecks\\npinched\\npincher\\npinchers\\npinches\\npinchhitter\\npinchhitters\\npinching\\npincushion\\npincushions\\npinder\\npinders\\npindling\\npine\\npineal\\npineapple\\npineapples\\npinecone\\npinecones\\npined\\npinelike\\npinene\\npinenes\\npineries\\npinery\\npines\\npinesap\\npinesaps\\npineta\\npinetum\\npinewood\\npinewoods\\npiney\\npinfeather\\npinfeathers\\npinfish\\npinfishes\\npinfold\\npinfolded\\npinfolding\\npinfolds\\nping\\npinged\\npinger\\npingers\\npinging\\npingo\\npingos\\npingrass\\npingrasses\\npings\\npinguid\\npinhead\\npinheads\\npinhole\\npinholes\\npinier\\npiniest\\npining\\npinion\\npinioned\\npinioning\\npinions\\npinite\\npinites\\npink\\npinked\\npinker\\npinkest\\npinkeye\\npinkeyes\\npinkie\\npinkies\\npinking\\npinkings\\npinkish\\npinkly\\npinkness\\npinknesses\\npinko\\npinkoes\\npinkos\\npinkroot\\npinkroots\\npinks\\npinky\\npinna\\npinnace\\npinnaces\\npinnacle\\npinnacled\\npinnacles\\npinnacling\\npinnae\\npinnal\\npinnas\\npinnate\\npinnated\\npinned\\npinner\\npinners\\npinning\\npinniped\\npinnipeds\\npinnula\\npinnulae\\npinnular\\npinnule\\npinnules\\npinochle\\npinochles\\npinocle\\npinocles\\npinole\\npinoles\\npinon\\npinones\\npinons\\npinpoint\\npinpointed\\npinpointing\\npinpoints\\npinprick\\npinpricked\\npinpricking\\npinpricks\\npins\\npinscher\\npinschers\\npint\\npinta\\npintada\\npintadas\\npintado\\npintadoes\\npintados\\npintail\\npintails\\npintano\\npintanos\\npintas\\npintle\\npintles\\npinto\\npintoes\\npintos\\npints\\npintsize\\npinup\\npinups\\npinwale\\npinwales\\npinweed\\npinweeds\\npinwheel\\npinwheels\\npinwork\\npinworks\\npinworm\\npinworms\\npiny\\npinyon\\npinyons\\npiolet\\npiolets\\npion\\npioneer\\npioneered\\npioneering\\npioneers\\npionic\\npions\\npiosities\\npiosity\\npious\\npiously\\npip\\npipage\\npipages\\npipal\\npipals\\npipe\\npipeage\\npipeages\\npiped\\npipefish\\npipefishes\\npipeful\\npipefuls\\npipeless\\npipelike\\npipeline\\npipelined\\npipelines\\npipelining\\npiper\\npiperine\\npiperines\\npipers\\npipes\\npipestem\\npipestems\\npipet\\npipets\\npipette\\npipetted\\npipettes\\npipetting\\npipier\\npipiest\\npiping\\npipingly\\npipings\\npipit\\npipits\\npipkin\\npipkins\\npipped\\npippin\\npipping\\npippins\\npips\\npipy\\npiquancies\\npiquancy\\npiquant\\npique\\npiqued\\npiques\\npiquet\\npiquets\\npiquing\\npiracies\\npiracy\\npiragua\\npiraguas\\npirana\\npiranas\\npiranha\\npiranhas\\npirarucu\\npirarucus\\npirate\\npirated\\npirates\\npiratic\\npiratical\\npirating\\npiraya\\npirayas\\npirn\\npirns\\npirog\\npirogen\\npiroghi\\npirogi\\npirogue\\npirogues\\npirojki\\npiroque\\npiroques\\npiroshki\\npirouette\\npirouetted\\npirouettes\\npirouetting\\npirozhki\\npirozhok\\npis\\npiscaries\\npiscary\\npiscator\\npiscators\\npiscina\\npiscinae\\npiscinal\\npiscinas\\npiscine\\npish\\npished\\npishes\\npishing\\npisiform\\npisiforms\\npismire\\npismires\\npismo\\npisolite\\npisolites\\npiss\\npissant\\npissants\\npissed\\npisses\\npissing\\npissoir\\npissoirs\\npistache\\npistaches\\npistachio\\npistil\\npistillate\\npistils\\npistol\\npistole\\npistoled\\npistoles\\npistoling\\npistolled\\npistolling\\npistols\\npiston\\npistons\\npit\\npita\\npitapat\\npitapats\\npitapatted\\npitapatting\\npitas\\npitch\\npitchblende\\npitchblendes\\npitched\\npitcher\\npitchers\\npitches\\npitchfork\\npitchforks\\npitchier\\npitchiest\\npitchily\\npitching\\npitchman\\npitchmen\\npitchout\\npitchouts\\npitchy\\npiteous\\npiteously\\npitfall\\npitfalls\\npith\\npithead\\npitheads\\npithed\\npithier\\npithiest\\npithily\\npithing\\npithless\\npiths\\npithy\\npitiable\\npitiably\\npitied\\npitier\\npitiers\\npities\\npitiful\\npitifuller\\npitifullest\\npitifully\\npitiless\\npitilessly\\npitman\\npitmans\\npitmen\\npiton\\npitons\\npits\\npitsaw\\npitsaws\\npittance\\npittances\\npitted\\npitting\\npittings\\npittsburgh\\npituitary\\npity\\npitying\\npiu\\npivot\\npivotal\\npivoted\\npivoting\\npivots\\npix\\npixes\\npixie\\npixieish\\npixies\\npixiness\\npixinesses\\npixy\\npixyish\\npixys\\npizazz\\npizazzes\\npizza\\npizzas\\npizzeria\\npizzerias\\npizzle\\npizzles\\nplacable\\nplacably\\nplacard\\nplacarded\\nplacarding\\nplacards\\nplacate\\nplacated\\nplacater\\nplacaters\\nplacates\\nplacating\\nplace\\nplacebo\\nplaceboes\\nplacebos\\nplaced\\nplaceman\\nplacemen\\nplacement\\nplacements\\nplacenta\\nplacentae\\nplacental\\nplacentas\\nplacer\\nplacers\\nplaces\\nplacet\\nplacets\\nplacid\\nplacidly\\nplacing\\nplack\\nplacket\\nplackets\\nplacks\\nplacoid\\nplacoids\\nplafond\\nplafonds\\nplagal\\nplage\\nplages\\nplagiaries\\nplagiarism\\nplagiarisms\\nplagiarist\\nplagiarists\\nplagiarize\\nplagiarized\\nplagiarizes\\nplagiarizing\\nplagiary\\nplague\\nplagued\\nplaguer\\nplaguers\\nplagues\\nplaguey\\nplaguily\\nplaguing\\nplaguy\\nplaice\\nplaices\\nplaid\\nplaided\\nplaids\\nplain\\nplained\\nplainer\\nplainest\\nplaining\\nplainly\\nplainness\\nplainnesses\\nplains\\nplaint\\nplaintiff\\nplaintiffs\\nplaintive\\nplaintively\\nplaints\\nplaister\\nplaistered\\nplaistering\\nplaisters\\nplait\\nplaited\\nplaiter\\nplaiters\\nplaiting\\nplaitings\\nplaits\\nplan\\nplanar\\nplanaria\\nplanarias\\nplanate\\nplanch\\nplanche\\nplanches\\nplanchet\\nplanchets\\nplane\\nplaned\\nplaner\\nplaners\\nplanes\\nplanet\\nplanetaria\\nplanetarium\\nplanetariums\\nplanetary\\nplanets\\nplanform\\nplanforms\\nplangent\\nplaning\\nplanish\\nplanished\\nplanishes\\nplanishing\\nplank\\nplanked\\nplanking\\nplankings\\nplanks\\nplankter\\nplankters\\nplankton\\nplanktonic\\nplanktons\\nplanless\\nplanned\\nplanner\\nplanners\\nplanning\\nplannings\\nplanosol\\nplanosols\\nplans\\nplant\\nplantain\\nplantains\\nplantar\\nplantation\\nplantations\\nplanted\\nplanter\\nplanters\\nplanting\\nplantings\\nplants\\nplanula\\nplanulae\\nplanular\\nplaque\\nplaques\\nplash\\nplashed\\nplasher\\nplashers\\nplashes\\nplashier\\nplashiest\\nplashing\\nplashy\\nplasm\\nplasma\\nplasmas\\nplasmatic\\nplasmic\\nplasmid\\nplasmids\\nplasmin\\nplasmins\\nplasmoid\\nplasmoids\\nplasmon\\nplasmons\\nplasms\\nplaster\\nplastered\\nplasterer\\nplasterers\\nplastering\\nplasters\\nplastery\\nplastic\\nplasticities\\nplasticity\\nplastics\\nplastid\\nplastids\\nplastral\\nplastron\\nplastrons\\nplastrum\\nplastrums\\nplat\\nplatan\\nplatane\\nplatanes\\nplatans\\nplate\\nplateau\\nplateaued\\nplateauing\\nplateaus\\nplateaux\\nplated\\nplateful\\nplatefuls\\nplatelet\\nplatelets\\nplaten\\nplatens\\nplater\\nplaters\\nplates\\nplatesful\\nplatform\\nplatforms\\nplatier\\nplaties\\nplatiest\\nplatina\\nplatinas\\nplating\\nplatings\\nplatinic\\nplatinum\\nplatinums\\nplatitude\\nplatitudes\\nplatitudinous\\nplatonic\\nplatoon\\nplatooned\\nplatooning\\nplatoons\\nplats\\nplatted\\nplatter\\nplatters\\nplatting\\nplaty\\nplatypi\\nplatypus\\nplatypuses\\nplatys\\nplaudit\\nplaudits\\nplausibilities\\nplausibility\\nplausible\\nplausibly\\nplausive\\nplay\\nplaya\\nplayable\\nplayact\\nplayacted\\nplayacting\\nplayactings\\nplayacts\\nplayas\\nplayback\\nplaybacks\\nplaybill\\nplaybills\\nplaybook\\nplaybooks\\nplayboy\\nplayboys\\nplayday\\nplaydays\\nplaydown\\nplaydowns\\nplayed\\nplayer\\nplayers\\nplayful\\nplayfully\\nplayfulness\\nplayfulnesses\\nplaygirl\\nplaygirls\\nplaygoer\\nplaygoers\\nplayground\\nplaygrounds\\nplayhouse\\nplayhouses\\nplaying\\nplayland\\nplaylands\\nplayless\\nplaylet\\nplaylets\\nplaylike\\nplaymate\\nplaymates\\nplayoff\\nplayoffs\\nplaypen\\nplaypens\\nplayroom\\nplayrooms\\nplays\\nplaysuit\\nplaysuits\\nplaything\\nplaythings\\nplaytime\\nplaytimes\\nplaywear\\nplaywears\\nplaywright\\nplaywrights\\nplaza\\nplazas\\nplea\\npleach\\npleached\\npleaches\\npleaching\\nplead\\npleaded\\npleader\\npleaders\\npleading\\npleadings\\npleads\\npleas\\npleasant\\npleasanter\\npleasantest\\npleasantly\\npleasantness\\npleasantnesses\\npleasantries\\nplease\\npleased\\npleaser\\npleasers\\npleases\\npleasing\\npleasingly\\npleasurable\\npleasurably\\npleasure\\npleasured\\npleasures\\npleasuring\\npleat\\npleated\\npleater\\npleaters\\npleating\\npleats\\npleb\\nplebe\\nplebeian\\nplebeians\\nplebes\\nplebiscite\\nplebiscites\\nplebs\\nplectra\\nplectron\\nplectrons\\nplectrum\\nplectrums\\npled\\npledge\\npledged\\npledgee\\npledgees\\npledgeor\\npledgeors\\npledger\\npledgers\\npledges\\npledget\\npledgets\\npledging\\npledgor\\npledgors\\npleiad\\npleiades\\npleiads\\nplena\\nplenary\\nplenipotentiaries\\nplenipotentiary\\nplenish\\nplenished\\nplenishes\\nplenishing\\nplenism\\nplenisms\\nplenist\\nplenists\\nplenitude\\nplenitudes\\nplenteous\\nplenties\\nplentiful\\nplentifully\\nplenty\\nplenum\\nplenums\\npleonasm\\npleonasms\\npleopod\\npleopods\\nplessor\\nplessors\\nplethora\\nplethoras\\npleura\\npleurae\\npleural\\npleuras\\npleurisies\\npleurisy\\npleuron\\npleuston\\npleustons\\nplexor\\nplexors\\nplexus\\nplexuses\\npliable\\npliably\\npliancies\\npliancy\\npliant\\npliantly\\nplica\\nplicae\\nplical\\nplicate\\nplicated\\nplie\\nplied\\nplier\\npliers\\nplies\\nplight\\nplighted\\nplighter\\nplighters\\nplighting\\nplights\\nplimsol\\nplimsole\\nplimsoles\\nplimsoll\\nplimsolls\\nplimsols\\nplink\\nplinked\\nplinker\\nplinkers\\nplinking\\nplinks\\nplinth\\nplinths\\npliskie\\npliskies\\nplisky\\nplisse\\nplisses\\nplod\\nplodded\\nplodder\\nplodders\\nplodding\\nploddingly\\nplods\\nploidies\\nploidy\\nplonk\\nplonked\\nplonking\\nplonks\\nplop\\nplopped\\nplopping\\nplops\\nplosion\\nplosions\\nplosive\\nplosives\\nplot\\nplotless\\nplots\\nplottage\\nplottages\\nplotted\\nplotter\\nplotters\\nplottier\\nplotties\\nplottiest\\nplotting\\nplotty\\nplough\\nploughed\\nplougher\\nploughers\\nploughing\\nploughs\\nplover\\nplovers\\nplow\\nplowable\\nplowback\\nplowbacks\\nplowboy\\nplowboys\\nplowed\\nplower\\nplowers\\nplowhead\\nplowheads\\nplowing\\nplowland\\nplowlands\\nplowman\\nplowmen\\nplows\\nplowshare\\nplowshares\\nploy\\nployed\\nploying\\nploys\\npluck\\nplucked\\nplucker\\npluckers\\npluckier\\npluckiest\\npluckily\\nplucking\\nplucks\\nplucky\\nplug\\nplugged\\nplugger\\npluggers\\nplugging\\nplugless\\nplugs\\npluguglies\\nplugugly\\nplum\\nplumage\\nplumaged\\nplumages\\nplumate\\nplumb\\nplumbago\\nplumbagos\\nplumbed\\nplumber\\nplumberies\\nplumbers\\nplumbery\\nplumbic\\nplumbing\\nplumbings\\nplumbism\\nplumbisms\\nplumbous\\nplumbs\\nplumbum\\nplumbums\\nplume\\nplumed\\nplumelet\\nplumelets\\nplumes\\nplumier\\nplumiest\\npluming\\nplumiped\\nplumipeds\\nplumlike\\nplummet\\nplummeted\\nplummeting\\nplummets\\nplummier\\nplummiest\\nplummy\\nplumose\\nplump\\nplumped\\nplumpen\\nplumpened\\nplumpening\\nplumpens\\nplumper\\nplumpers\\nplumpest\\nplumping\\nplumpish\\nplumply\\nplumpness\\nplumpnesses\\nplumps\\nplums\\nplumular\\nplumule\\nplumules\\nplumy\\nplunder\\nplundered\\nplundering\\nplunders\\nplunge\\nplunged\\nplunger\\nplungers\\nplunges\\nplunging\\nplunk\\nplunked\\nplunker\\nplunkers\\nplunking\\nplunks\\nplural\\npluralism\\npluralities\\nplurality\\npluralization\\npluralizations\\npluralize\\npluralized\\npluralizes\\npluralizing\\nplurally\\nplurals\\nplus\\npluses\\nplush\\nplusher\\nplushes\\nplushest\\nplushier\\nplushiest\\nplushily\\nplushly\\nplushy\\nplussage\\nplussages\\nplusses\\nplutocracies\\nplutocracy\\nplutocrat\\nplutocratic\\nplutocrats\\npluton\\nplutonic\\nplutonium\\nplutoniums\\nplutons\\npluvial\\npluvials\\npluviose\\npluvious\\nply\\nplyer\\nplyers\\nplying\\nplyingly\\nplywood\\nplywoods\\npneuma\\npneumas\\npneumatic\\npneumatically\\npneumonia\\npoaceous\\npoach\\npoached\\npoacher\\npoachers\\npoaches\\npoachier\\npoachiest\\npoaching\\npoachy\\npochard\\npochards\\npock\\npocked\\npocket\\npocketbook\\npocketbooks\\npocketed\\npocketer\\npocketers\\npocketful\\npocketfuls\\npocketing\\npocketknife\\npocketknives\\npockets\\npockier\\npockiest\\npockily\\npocking\\npockmark\\npockmarked\\npockmarking\\npockmarks\\npocks\\npocky\\npoco\\npocosin\\npocosins\\npod\\npodagra\\npodagral\\npodagras\\npodagric\\npodded\\npodding\\npodesta\\npodestas\\npodgier\\npodgiest\\npodgily\\npodgy\\npodia\\npodiatries\\npodiatrist\\npodiatry\\npodite\\npodites\\npoditic\\npodium\\npodiums\\npodomere\\npodomeres\\npods\\npodsol\\npodsolic\\npodsols\\npodzol\\npodzolic\\npodzols\\npoechore\\npoechores\\npoem\\npoems\\npoesies\\npoesy\\npoet\\npoetess\\npoetesses\\npoetic\\npoetical\\npoetics\\npoetise\\npoetised\\npoetiser\\npoetisers\\npoetises\\npoetising\\npoetize\\npoetized\\npoetizer\\npoetizers\\npoetizes\\npoetizing\\npoetless\\npoetlike\\npoetries\\npoetry\\npoets\\npogey\\npogeys\\npogies\\npogonia\\npogonias\\npogonip\\npogonips\\npogrom\\npogromed\\npogroming\\npogroms\\npogy\\npoh\\npoi\\npoignancies\\npoignancy\\npoignant\\npoilu\\npoilus\\npoind\\npoinded\\npoinding\\npoinds\\npoinsettia\\npoint\\npointe\\npointed\\npointer\\npointers\\npointes\\npointier\\npointiest\\npointing\\npointless\\npointman\\npointmen\\npoints\\npointy\\npois\\npoise\\npoised\\npoiser\\npoisers\\npoises\\npoising\\npoison\\npoisoned\\npoisoner\\npoisoners\\npoisoning\\npoisonous\\npoisons\\npoitrel\\npoitrels\\npoke\\npoked\\npoker\\npokeroot\\npokeroots\\npokers\\npokes\\npokeweed\\npokeweeds\\npokey\\npokeys\\npokier\\npokies\\npokiest\\npokily\\npokiness\\npokinesses\\npoking\\npoky\\npol\\npolar\\npolarise\\npolarised\\npolarises\\npolarising\\npolarities\\npolarity\\npolarization\\npolarizations\\npolarize\\npolarized\\npolarizes\\npolarizing\\npolaron\\npolarons\\npolars\\npolder\\npolders\\npole\\npoleax\\npoleaxe\\npoleaxed\\npoleaxes\\npoleaxing\\npolecat\\npolecats\\npoled\\npoleis\\npoleless\\npolemic\\npolemical\\npolemicist\\npolemicists\\npolemics\\npolemist\\npolemists\\npolemize\\npolemized\\npolemizes\\npolemizing\\npolenta\\npolentas\\npoler\\npolers\\npoles\\npolestar\\npolestars\\npoleward\\npoleyn\\npoleyns\\npolice\\npoliced\\npoliceman\\npolicemen\\npolices\\npolicewoman\\npolicewomen\\npolicies\\npolicing\\npolicy\\npolicyholder\\npoling\\npolio\\npoliomyelitis\\npoliomyelitises\\npolios\\npolis\\npolish\\npolished\\npolisher\\npolishers\\npolishes\\npolishing\\npolite\\npolitely\\npoliteness\\npolitenesses\\npoliter\\npolitest\\npolitic\\npolitical\\npolitician\\npoliticians\\npolitick\\npoliticked\\npoliticking\\npoliticks\\npolitico\\npoliticoes\\npoliticos\\npolitics\\npolities\\npolity\\npolka\\npolkaed\\npolkaing\\npolkas\\npoll\\npollack\\npollacks\\npollard\\npollarded\\npollarding\\npollards\\npolled\\npollee\\npollees\\npollen\\npollened\\npollening\\npollens\\npoller\\npollers\\npollex\\npollical\\npollices\\npollinate\\npollinated\\npollinates\\npollinating\\npollination\\npollinations\\npollinator\\npollinators\\npolling\\npollinia\\npollinic\\npollist\\npollists\\npolliwog\\npolliwogs\\npollock\\npollocks\\npolls\\npollster\\npollsters\\npollutant\\npollute\\npolluted\\npolluter\\npolluters\\npollutes\\npolluting\\npollution\\npollutions\\npolly\\npollywog\\npollywogs\\npolo\\npoloist\\npoloists\\npolonium\\npoloniums\\npolos\\npols\\npoltroon\\npoltroons\\npoly\\npolybrid\\npolybrids\\npolycot\\npolycots\\npolyene\\npolyenes\\npolyenic\\npolyester\\npolyesters\\npolygala\\npolygalas\\npolygamies\\npolygamist\\npolygamists\\npolygamous\\npolygamy\\npolygene\\npolygenes\\npolyglot\\npolyglots\\npolygon\\npolygonies\\npolygons\\npolygony\\npolygynies\\npolygyny\\npolymath\\npolymaths\\npolymer\\npolymers\\npolynya\\npolynyas\\npolyp\\npolyparies\\npolypary\\npolypi\\npolypide\\npolypides\\npolypnea\\npolypneas\\npolypod\\npolypodies\\npolypods\\npolypody\\npolypoid\\npolypore\\npolypores\\npolypous\\npolyps\\npolypus\\npolypuses\\npolys\\npolysemies\\npolysemy\\npolysome\\npolysomes\\npolysyllabic\\npolysyllable\\npolysyllables\\npolytechnic\\npolytene\\npolytenies\\npolyteny\\npolytheism\\npolytheisms\\npolytheist\\npolytheists\\npolytype\\npolytypes\\npolyuria\\npolyurias\\npolyuric\\npolyzoan\\npolyzoans\\npolyzoic\\npomace\\npomaces\\npomade\\npomaded\\npomades\\npomading\\npomander\\npomanders\\npomatum\\npomatums\\npome\\npomegranate\\npomegranates\\npomelo\\npomelos\\npomes\\npommee\\npommel\\npommeled\\npommeling\\npommelled\\npommelling\\npommels\\npomologies\\npomology\\npomp\\npompano\\npompanos\\npompom\\npompoms\\npompon\\npompons\\npomposities\\npomposity\\npompous\\npompously\\npomps\\nponce\\nponces\\nponcho\\nponchos\\npond\\nponder\\npondered\\nponderer\\nponderers\\npondering\\nponderous\\nponders\\nponds\\npondville\\npondweed\\npondweeds\\npone\\nponent\\npones\\npongee\\npongees\\npongid\\npongids\\nponiard\\nponiarded\\nponiarding\\nponiards\\nponied\\nponies\\npons\\npontes\\npontifex\\npontiff\\npontiffs\\npontific\\npontifical\\npontificate\\npontificated\\npontificates\\npontificating\\npontifices\\npontil\\npontils\\npontine\\nponton\\npontons\\npontoon\\npontoons\\npony\\nponying\\nponytail\\nponytails\\npooch\\npooches\\npood\\npoodle\\npoodles\\npoods\\npooh\\npoohed\\npoohing\\npoohs\\npool\\npooled\\npoolhall\\npoolhalls\\npooling\\npoolroom\\npoolrooms\\npools\\npoon\\npoons\\npoop\\npooped\\npooping\\npoops\\npoor\\npoorer\\npoorest\\npoori\\npooris\\npoorish\\npoorly\\npoorness\\npoornesses\\npoortith\\npoortiths\\npop\\npopcorn\\npopcorns\\npope\\npopedom\\npopedoms\\npopeless\\npopelike\\npoperies\\npopery\\npopes\\npopeyed\\npopgun\\npopguns\\npopinjay\\npopinjays\\npopish\\npopishly\\npoplar\\npoplars\\npoplin\\npoplins\\npoplitic\\npopover\\npopovers\\npoppa\\npoppas\\npopped\\npopper\\npoppers\\npoppet\\npoppets\\npoppied\\npoppies\\npopping\\npopple\\npoppled\\npopples\\npoppling\\npoppy\\npops\\npopulace\\npopulaces\\npopular\\npopularities\\npopularity\\npopularize\\npopularized\\npopularizes\\npopularizing\\npopularly\\npopulate\\npopulated\\npopulates\\npopulating\\npopulation\\npopulations\\npopulism\\npopulisms\\npopulist\\npopulists\\npopulous\\npopulousness\\npopulousnesses\\nporcelain\\nporcelains\\nporch\\nporches\\nporcine\\nporcupine\\nporcupines\\npore\\npored\\npores\\nporgies\\nporgy\\nporing\\nporism\\nporisms\\npork\\nporker\\nporkers\\nporkier\\nporkies\\nporkiest\\nporkpie\\nporkpies\\nporks\\nporkwood\\nporkwoods\\nporky\\nporn\\nporno\\npornographic\\npornography\\npornos\\nporns\\nporose\\nporosities\\nporosity\\nporous\\nporously\\nporphyries\\nporphyry\\nporpoise\\nporpoises\\nporrect\\nporridge\\nporridges\\nporringer\\nporringers\\nport\\nportability\\nportable\\nportables\\nportably\\nportage\\nportaged\\nportages\\nportaging\\nportal\\nportaled\\nportals\\nportance\\nportances\\nporte\\nported\\nportend\\nportended\\nportending\\nportends\\nportent\\nportentious\\nportents\\nporter\\nporterhouse\\nporterhouses\\nporters\\nportfolio\\nportfolios\\nporthole\\nportholes\\nportico\\nporticoes\\nporticos\\nportiere\\nportieres\\nporting\\nportion\\nportioned\\nportioning\\nportions\\nportless\\nportlier\\nportliest\\nportly\\nportrait\\nportraitist\\nportraitists\\nportraits\\nportraiture\\nportraitures\\nportray\\nportrayal\\nportrayals\\nportrayed\\nportraying\\nportrays\\nportress\\nportresses\\nports\\nposada\\nposadas\\npose\\nposed\\nposer\\nposers\\nposes\\nposeur\\nposeurs\\nposh\\nposher\\nposhest\\nposies\\nposing\\nposingly\\nposit\\nposited\\npositing\\nposition\\npositioned\\npositioning\\npositions\\npositive\\npositively\\npositiveness\\npositivenesses\\npositiver\\npositives\\npositivest\\npositivity\\npositron\\npositrons\\nposits\\nposologies\\nposology\\nposse\\nposses\\npossess\\npossessed\\npossesses\\npossessing\\npossession\\npossessions\\npossessive\\npossessiveness\\npossessivenesses\\npossessives\\npossessor\\npossessors\\nposset\\npossets\\npossibilities\\npossibility\\npossible\\npossibler\\npossiblest\\npossibly\\npossum\\npossums\\npost\\npostadolescence\\npostadolescences\\npostadolescent\\npostage\\npostages\\npostal\\npostally\\npostals\\npostanal\\npostattack\\npostbaccalaureate\\npostbag\\npostbags\\npostbiblical\\npostbox\\npostboxes\\npostboy\\npostboys\\npostcard\\npostcards\\npostcava\\npostcavae\\npostcollege\\npostcolonial\\npostdate\\npostdated\\npostdates\\npostdating\\nposted\\nposteen\\nposteens\\npostelection\\nposter\\nposterior\\nposteriors\\nposterities\\nposterity\\npostern\\nposterns\\nposters\\npostexercise\\npostface\\npostfaces\\npostfertilization\\npostfertilizations\\npostfix\\npostfixed\\npostfixes\\npostfixing\\npostflight\\npostform\\npostformed\\npostforming\\npostforms\\npostgraduate\\npostgraduates\\npostgraduation\\npostharvest\\nposthaste\\nposthole\\npostholes\\nposthospital\\nposthumous\\npostiche\\npostiches\\npostimperial\\npostin\\npostinaugural\\npostindustrial\\nposting\\npostings\\npostinjection\\npostinoculation\\npostins\\npostique\\npostiques\\npostlude\\npostludes\\npostman\\npostmarital\\npostmark\\npostmarked\\npostmarking\\npostmarks\\npostmaster\\npostmasters\\npostmen\\npostmenopausal\\npostmortem\\npostmortems\\npostnatal\\npostnuptial\\npostoperative\\npostoral\\npostpaid\\npostpartum\\npostpone\\npostponed\\npostponement\\npostponements\\npostpones\\npostponing\\npostproduction\\npostpubertal\\npostpuberty\\npostradiation\\npostrecession\\npostretirement\\npostrevolutionary\\nposts\\npostscript\\npostscripts\\npostseason\\npostsecondary\\npostsurgical\\nposttreatment\\nposttrial\\npostulant\\npostulants\\npostulate\\npostulated\\npostulates\\npostulating\\npostural\\nposture\\npostured\\nposturer\\nposturers\\npostures\\nposturing\\npostvaccination\\npostwar\\nposy\\npot\\npotable\\npotables\\npotage\\npotages\\npotamic\\npotash\\npotashes\\npotassic\\npotassium\\npotassiums\\npotation\\npotations\\npotato\\npotatoes\\npotatory\\npotbellied\\npotbellies\\npotbelly\\npotboil\\npotboiled\\npotboiling\\npotboils\\npotboy\\npotboys\\npoteen\\npoteens\\npotence\\npotences\\npotencies\\npotency\\npotent\\npotentate\\npotentates\\npotential\\npotentialities\\npotentiality\\npotentially\\npotentials\\npotently\\npotful\\npotfuls\\npothead\\npotheads\\npotheen\\npotheens\\npother\\npotherb\\npotherbs\\npothered\\npothering\\npothers\\npothole\\npotholed\\npotholes\\npothook\\npothooks\\npothouse\\npothouses\\npotiche\\npotiches\\npotion\\npotions\\npotlach\\npotlache\\npotlaches\\npotlatch\\npotlatched\\npotlatches\\npotlatching\\npotlike\\npotluck\\npotlucks\\npotman\\npotmen\\npotpie\\npotpies\\npotpourri\\npotpourris\\npots\\npotshard\\npotshards\\npotsherd\\npotsherds\\npotshot\\npotshots\\npotshotting\\npotsie\\npotsies\\npotstone\\npotstones\\npotsy\\npottage\\npottages\\npotted\\npotteen\\npotteens\\npotter\\npottered\\npotterer\\npotterers\\npotteries\\npottering\\npotters\\npottery\\npottier\\npotties\\npottiest\\npotting\\npottle\\npottles\\npotto\\npottos\\npotty\\npouch\\npouched\\npouches\\npouchier\\npouchiest\\npouching\\npouchy\\npouf\\npoufed\\npouff\\npouffe\\npouffed\\npouffes\\npouffs\\npoufs\\npoulard\\npoularde\\npoulardes\\npoulards\\npoult\\npoultice\\npoulticed\\npoultices\\npoulticing\\npoultries\\npoultry\\npoults\\npounce\\npounced\\npouncer\\npouncers\\npounces\\npouncing\\npound\\npoundage\\npoundages\\npoundal\\npoundals\\npounded\\npounder\\npounders\\npounding\\npounds\\npour\\npourable\\npoured\\npourer\\npourers\\npouring\\npours\\npoussie\\npoussies\\npout\\npouted\\npouter\\npouters\\npoutful\\npoutier\\npoutiest\\npouting\\npouts\\npouty\\npoverties\\npoverty\\npow\\npowder\\npowdered\\npowderer\\npowderers\\npowdering\\npowders\\npowdery\\npower\\npowered\\npowerful\\npowerfully\\npowering\\npowerless\\npowerlessness\\npowers\\npows\\npowter\\npowters\\npowwow\\npowwowed\\npowwowing\\npowwows\\npox\\npoxed\\npoxes\\npoxing\\npoxvirus\\npoxviruses\\npoyou\\npoyous\\npozzolan\\npozzolans\\npraam\\npraams\\npractic\\npracticabilities\\npracticability\\npracticable\\npractical\\npracticalities\\npracticality\\npractically\\npractice\\npracticed\\npractices\\npracticing\\npractise\\npractised\\npractises\\npractising\\npractitioner\\npractitioners\\npraecipe\\npraecipes\\npraedial\\npraefect\\npraefects\\npraelect\\npraelected\\npraelecting\\npraelects\\npraetor\\npraetors\\npragmatic\\npragmatism\\npragmatisms\\nprahu\\nprahus\\nprairie\\nprairies\\npraise\\npraised\\npraiser\\npraisers\\npraises\\npraiseworthy\\npraising\\npraline\\npralines\\npram\\nprams\\nprance\\npranced\\nprancer\\nprancers\\nprances\\nprancing\\nprandial\\nprang\\npranged\\npranging\\nprangs\\nprank\\npranked\\npranking\\nprankish\\npranks\\nprankster\\npranksters\\nprao\\npraos\\nprase\\nprases\\nprat\\nprate\\nprated\\nprater\\npraters\\nprates\\npratfall\\npratfalls\\nprating\\npratique\\npratiques\\nprats\\nprattle\\nprattled\\nprattler\\nprattlers\\nprattles\\nprattling\\nprau\\npraus\\nprawn\\nprawned\\nprawner\\nprawners\\nprawning\\nprawns\\npraxes\\npraxis\\npraxises\\npray\\nprayed\\nprayer\\nprayers\\npraying\\nprays\\npreach\\npreached\\npreacher\\npreachers\\npreaches\\npreachier\\npreachiest\\npreaching\\npreachment\\npreachments\\npreachy\\npreact\\npreacted\\npreacting\\npreacts\\npreadapt\\npreadapted\\npreadapting\\npreadapts\\npreaddress\\npreadmission\\npreadmit\\npreadmits\\npreadmitted\\npreadmitting\\npreadolescence\\npreadolescences\\npreadolescent\\npreadopt\\npreadopted\\npreadopting\\npreadopts\\npreadult\\npreaged\\npreallocate\\npreallocated\\npreallocates\\npreallocating\\npreallot\\npreallots\\npreallotted\\npreallotting\\npreamble\\npreambles\\npreamp\\npreamps\\npreanal\\npreanesthetic\\npreanesthetics\\nprearm\\nprearmed\\nprearming\\nprearms\\nprearraignment\\nprearrange\\nprearranged\\nprearrangement\\nprearrangements\\nprearranges\\nprearranging\\npreassemble\\npreassembled\\npreassembles\\npreassembling\\npreassign\\npreassigned\\npreassigning\\npreassigns\\npreauthorize\\npreauthorized\\npreauthorizes\\npreauthorizing\\npreaver\\npreaverred\\npreaverring\\npreavers\\npreaxial\\nprebasal\\nprebattle\\nprebend\\nprebends\\nprebiblical\\nprebill\\nprebilled\\nprebilling\\nprebills\\nprebind\\nprebinding\\nprebinds\\nprebless\\npreblessed\\npreblesses\\npreblessing\\npreboil\\npreboiled\\npreboiling\\npreboils\\nprebound\\nprebreakfast\\nprecalculate\\nprecalculated\\nprecalculates\\nprecalculating\\nprecalculus\\nprecalculuses\\nprecampaign\\nprecancel\\nprecanceled\\nprecanceling\\nprecancellation\\nprecancellations\\nprecancels\\nprecarious\\nprecariously\\nprecariousness\\nprecariousnesses\\nprecast\\nprecasting\\nprecasts\\nprecaution\\nprecautionary\\nprecautions\\nprecava\\nprecavae\\nprecaval\\nprecede\\npreceded\\nprecedence\\nprecedences\\nprecedent\\nprecedents\\nprecedes\\npreceding\\nprecent\\nprecented\\nprecenting\\nprecents\\nprecept\\npreceptor\\npreceptors\\nprecepts\\nprecess\\nprecessed\\nprecesses\\nprecessing\\nprecheck\\nprechecked\\nprechecking\\nprechecks\\nprechill\\nprechilled\\nprechilling\\nprechills\\nprecieux\\nprecinct\\nprecincts\\nprecious\\npreciouses\\nprecipe\\nprecipes\\nprecipice\\nprecipices\\nprecipitate\\nprecipitated\\nprecipitately\\nprecipitateness\\nprecipitatenesses\\nprecipitates\\nprecipitating\\nprecipitation\\nprecipitations\\nprecipitous\\nprecipitously\\nprecis\\nprecise\\nprecised\\nprecisely\\npreciseness\\nprecisenesses\\npreciser\\nprecises\\nprecisest\\nprecising\\nprecision\\nprecisions\\nprecited\\nprecivilization\\npreclean\\nprecleaned\\nprecleaning\\nprecleans\\npreclearance\\npreclearances\\npreclude\\nprecluded\\nprecludes\\nprecluding\\nprecocious\\nprecocities\\nprecocity\\nprecollege\\nprecolonial\\nprecombustion\\nprecompute\\nprecomputed\\nprecomputes\\nprecomputing\\npreconceive\\npreconceived\\npreconceives\\npreconceiving\\npreconception\\npreconceptions\\npreconcerted\\nprecondition\\npreconditions\\npreconference\\npreconstruct\\npreconvention\\nprecook\\nprecooked\\nprecooking\\nprecooks\\nprecool\\nprecooled\\nprecooling\\nprecools\\nprecure\\nprecured\\nprecures\\nprecuring\\nprecursor\\nprecursors\\npredate\\npredated\\npredates\\npredating\\npredator\\npredators\\npredatory\\npredawn\\npredawns\\npredecessor\\npredecessors\\npredefine\\npredefined\\npredefines\\npredefining\\npredelinquent\\npredeparture\\npredesignate\\npredesignated\\npredesignates\\npredesignating\\npredesignation\\npredesignations\\npredestine\\npredestined\\npredestines\\npredestining\\npredetermine\\npredetermined\\npredetermines\\npredetermining\\npredial\\npredicament\\npredicaments\\npredicate\\npredicated\\npredicates\\npredicating\\npredication\\npredications\\npredict\\npredictable\\npredictably\\npredicted\\npredicting\\nprediction\\npredictions\\npredictive\\npredicts\\npredilection\\npredilections\\npredischarge\\npredispose\\npredisposed\\npredisposes\\npredisposing\\npredisposition\\npredispositions\\nprednisone\\nprednisones\\npredominance\\npredominances\\npredominant\\npredominantly\\npredominate\\npredominated\\npredominates\\npredominating\\npredusk\\npredusks\\npree\\npreed\\npreeing\\npreelect\\npreelected\\npreelecting\\npreelection\\npreelectric\\npreelectronic\\npreelects\\npreemie\\npreemies\\npreeminence\\npreeminences\\npreeminent\\npreeminently\\npreemployment\\npreempt\\npreempted\\npreempting\\npreemption\\npreemptions\\npreempts\\npreen\\npreenact\\npreenacted\\npreenacting\\npreenacts\\npreened\\npreener\\npreeners\\npreening\\npreens\\nprees\\npreestablish\\npreestablished\\npreestablishes\\npreestablishing\\npreexist\\npreexisted\\npreexistence\\npreexistences\\npreexistent\\npreexisting\\npreexists\\nprefab\\nprefabbed\\nprefabbing\\nprefabricated\\nprefabrication\\nprefabrications\\nprefabs\\npreface\\nprefaced\\nprefacer\\nprefacers\\nprefaces\\nprefacing\\nprefect\\nprefects\\nprefecture\\nprefectures\\nprefer\\npreferable\\npreferably\\npreference\\npreferences\\npreferential\\npreferment\\npreferments\\npreferred\\npreferring\\nprefers\\nprefigure\\nprefigured\\nprefigures\\nprefiguring\\nprefilter\\nprefilters\\nprefix\\nprefixal\\nprefixed\\nprefixes\\nprefixing\\nprefocus\\nprefocused\\nprefocuses\\nprefocusing\\nprefocussed\\nprefocusses\\nprefocussing\\npreform\\npreformed\\npreforming\\npreforms\\nprefrank\\nprefranked\\nprefranking\\nprefranks\\npregame\\npregnancies\\npregnancy\\npregnant\\npreheat\\npreheated\\npreheating\\npreheats\\nprehensile\\nprehistoric\\nprehistorical\\nprehuman\\nprehumans\\npreimmunization\\npreimmunizations\\npreimmunize\\npreimmunized\\npreimmunizes\\npreimmunizing\\npreinaugural\\npreindustrial\\npreinoculate\\npreinoculated\\npreinoculates\\npreinoculating\\npreinoculation\\npreinterview\\nprejudge\\nprejudged\\nprejudges\\nprejudging\\nprejudice\\nprejudiced\\nprejudices\\nprejudicial\\nprejudicing\\nprekindergarten\\nprekindergartens\\nprelacies\\nprelacy\\nprelate\\nprelates\\nprelatic\\nprelaunch\\nprelect\\nprelected\\nprelecting\\nprelects\\nprelegal\\nprelim\\npreliminaries\\npreliminary\\nprelimit\\nprelimited\\nprelimiting\\nprelimits\\nprelims\\nprelude\\npreluded\\npreluder\\npreluders\\npreludes\\npreluding\\npreman\\npremarital\\npremature\\nprematurely\\npremed\\npremedic\\npremedics\\npremeditate\\npremeditated\\npremeditates\\npremeditating\\npremeditation\\npremeditations\\npremeds\\npremen\\npremenopausal\\npremenstrual\\npremie\\npremier\\npremiere\\npremiered\\npremieres\\npremiering\\npremiers\\npremiership\\npremierships\\npremies\\npremise\\npremised\\npremises\\npremising\\npremiss\\npremisses\\npremium\\npremiums\\npremix\\npremixed\\npremixes\\npremixing\\npremodern\\npremodified\\npremodifies\\npremodify\\npremodifying\\npremoisten\\npremoistened\\npremoistening\\npremoistens\\npremolar\\npremolars\\npremonition\\npremonitions\\npremonitory\\npremorse\\npremune\\nprename\\nprenames\\nprenatal\\nprenomen\\nprenomens\\nprenomina\\nprenotification\\nprenotifications\\nprenotified\\nprenotifies\\nprenotify\\nprenotifying\\nprentice\\nprenticed\\nprentices\\nprenticing\\nprenuptial\\npreoccupation\\npreoccupations\\npreoccupied\\npreoccupies\\npreoccupy\\npreoccupying\\npreopening\\npreoperational\\npreordain\\npreordained\\npreordaining\\npreordains\\nprep\\nprepack\\nprepackage\\nprepackaged\\nprepackages\\nprepackaging\\nprepacked\\nprepacking\\nprepacks\\nprepaid\\npreparation\\npreparations\\npreparatory\\nprepare\\nprepared\\npreparedness\\npreparednesses\\npreparer\\npreparers\\nprepares\\npreparing\\nprepay\\nprepaying\\nprepays\\nprepense\\npreplace\\npreplaced\\npreplaces\\npreplacing\\npreplan\\npreplanned\\npreplanning\\npreplans\\npreplant\\npreponderance\\npreponderances\\npreponderant\\npreponderantly\\npreponderate\\npreponderated\\npreponderates\\npreponderating\\npreposition\\nprepositional\\nprepositions\\nprepossessing\\npreposterous\\nprepped\\npreppie\\npreppies\\nprepping\\npreprint\\npreprinted\\npreprinting\\npreprints\\npreprocess\\npreprocessed\\npreprocesses\\npreprocessing\\npreproduction\\npreprofessional\\npreprogram\\npreps\\nprepubertal\\nprepublication\\nprepuce\\nprepuces\\nprepunch\\nprepunched\\nprepunches\\nprepunching\\nprepurchase\\nprepurchased\\nprepurchases\\nprepurchasing\\nprerecord\\nprerecorded\\nprerecording\\nprerecords\\npreregister\\npreregistered\\npreregistering\\npreregisters\\npreregistration\\npreregistrations\\nprerehearsal\\nprerelease\\nprerenal\\nprerequisite\\nprerequisites\\npreretirement\\nprerevolutionary\\nprerogative\\nprerogatives\\npresa\\npresage\\npresaged\\npresager\\npresagers\\npresages\\npresaging\\npresbyter\\npresbyters\\nprescience\\npresciences\\nprescient\\nprescind\\nprescinded\\nprescinding\\nprescinds\\nprescore\\nprescored\\nprescores\\nprescoring\\nprescribe\\nprescribed\\nprescribes\\nprescribing\\nprescription\\nprescriptions\\nprese\\npreseason\\npreselect\\npreselected\\npreselecting\\npreselects\\npresell\\npreselling\\npresells\\npresence\\npresences\\npresent\\npresentable\\npresentation\\npresentations\\npresented\\npresentiment\\npresentiments\\npresenting\\npresently\\npresentment\\npresentments\\npresents\\npreservation\\npreservations\\npreservative\\npreservatives\\npreserve\\npreserved\\npreserver\\npreservers\\npreserves\\npreserving\\npreset\\npresets\\npresetting\\npreshape\\npreshaped\\npreshapes\\npreshaping\\npreshow\\npreshowed\\npreshowing\\npreshown\\npreshows\\npreshrink\\npreshrinked\\npreshrinking\\npreshrinks\\npreside\\npresided\\npresidencies\\npresidency\\npresident\\npresidential\\npresidents\\npresider\\npresiders\\npresides\\npresidia\\npresiding\\npresidio\\npresidios\\npresift\\npresifted\\npresifting\\npresifts\\npresoak\\npresoaked\\npresoaking\\npresoaks\\npresold\\npress\\npressed\\npresser\\npressers\\npresses\\npressing\\npressman\\npressmen\\npressor\\npressrun\\npressruns\\npressure\\npressured\\npressures\\npressuring\\npressurization\\npressurizations\\npressurize\\npressurized\\npressurizes\\npressurizing\\nprest\\nprestamp\\nprestamped\\nprestamping\\nprestamps\\nprester\\npresterilize\\npresterilized\\npresterilizes\\npresterilizing\\npresters\\nprestidigitation\\nprestidigitations\\nprestige\\nprestiges\\nprestigious\\npresto\\nprestos\\nprestrike\\nprests\\npresumable\\npresumably\\npresume\\npresumed\\npresumer\\npresumers\\npresumes\\npresuming\\npresumption\\npresumptions\\npresumptive\\npresumptuous\\npresuppose\\npresupposed\\npresupposes\\npresupposing\\npresupposition\\npresuppositions\\npresurgical\\npresweeten\\npresweetened\\npresweetening\\npresweetens\\npretaste\\npretasted\\npretastes\\npretasting\\npretax\\npreteen\\npreteens\\npretelevision\\npretence\\npretences\\npretend\\npretended\\npretender\\npretenders\\npretending\\npretends\\npretense\\npretenses\\npretension\\npretensions\\npretentious\\npretentiously\\npretentiousness\\npretentiousnesses\\npreterit\\npreterits\\npreternatural\\npreternaturally\\npretest\\npretested\\npretesting\\npretests\\npretext\\npretexted\\npretexting\\npretexts\\npretor\\npretors\\npretournament\\npretreat\\npretreated\\npretreating\\npretreatment\\npretreats\\nprettied\\nprettier\\npretties\\nprettiest\\nprettified\\nprettifies\\nprettify\\nprettifying\\nprettily\\nprettiness\\nprettinesses\\npretty\\nprettying\\npretzel\\npretzels\\npreunion\\npreunions\\npreunite\\npreunited\\npreunites\\npreuniting\\nprevail\\nprevailed\\nprevailing\\nprevailingly\\nprevails\\nprevalence\\nprevalences\\nprevalent\\nprevaricate\\nprevaricated\\nprevaricates\\nprevaricating\\nprevarication\\nprevarications\\nprevaricator\\nprevaricators\\nprevent\\npreventable\\npreventative\\nprevented\\npreventing\\nprevention\\npreventions\\npreventive\\nprevents\\npreview\\npreviewed\\npreviewing\\npreviews\\nprevious\\npreviously\\nprevise\\nprevised\\nprevises\\nprevising\\nprevisor\\nprevisors\\nprevue\\nprevued\\nprevues\\nprevuing\\nprewar\\nprewarm\\nprewarmed\\nprewarming\\nprewarms\\nprewarn\\nprewarned\\nprewarning\\nprewarns\\nprewash\\nprewashed\\nprewashes\\nprewashing\\nprewrap\\nprewrapped\\nprewrapping\\nprewraps\\nprex\\nprexes\\nprexies\\nprexy\\nprey\\npreyed\\npreyer\\npreyers\\npreying\\npreys\\npriapean\\npriapi\\npriapic\\npriapism\\npriapisms\\npriapus\\npriapuses\\nprice\\npriced\\npriceless\\npricer\\npricers\\nprices\\npricey\\npricier\\npriciest\\npricing\\nprick\\npricked\\npricker\\nprickers\\npricket\\nprickets\\nprickier\\nprickiest\\npricking\\nprickle\\nprickled\\nprickles\\npricklier\\nprickliest\\nprickling\\nprickly\\npricks\\npricky\\npricy\\npride\\nprided\\nprideful\\nprides\\npriding\\npried\\npriedieu\\npriedieus\\npriedieux\\nprier\\npriers\\npries\\npriest\\npriested\\npriestess\\npriestesses\\npriesthood\\npriesthoods\\npriesting\\npriestlier\\npriestliest\\npriestliness\\npriestlinesses\\npriestly\\npriests\\nprig\\nprigged\\npriggeries\\npriggery\\nprigging\\npriggish\\npriggishly\\npriggism\\npriggisms\\nprigs\\nprill\\nprilled\\nprilling\\nprills\\nprim\\nprima\\nprimacies\\nprimacy\\nprimage\\nprimages\\nprimal\\nprimaries\\nprimarily\\nprimary\\nprimas\\nprimatal\\nprimate\\nprimates\\nprime\\nprimed\\nprimely\\nprimer\\nprimero\\nprimeros\\nprimers\\nprimes\\nprimeval\\nprimi\\nprimine\\nprimines\\npriming\\nprimings\\nprimitive\\nprimitively\\nprimitiveness\\nprimitivenesses\\nprimitives\\nprimitivities\\nprimitivity\\nprimly\\nprimmed\\nprimmer\\nprimmest\\nprimming\\nprimness\\nprimnesses\\nprimo\\nprimordial\\nprimos\\nprimp\\nprimped\\nprimping\\nprimps\\nprimrose\\nprimroses\\nprims\\nprimsie\\nprimula\\nprimulas\\nprimus\\nprimuses\\nprince\\nprincelier\\nprinceliest\\nprincely\\nprinces\\nprincess\\nprincesses\\nprincipal\\nprincipalities\\nprincipality\\nprincipally\\nprincipals\\nprincipe\\nprincipi\\nprinciple\\nprinciples\\nprincock\\nprincocks\\nprincox\\nprincoxes\\nprink\\nprinked\\nprinker\\nprinkers\\nprinking\\nprinks\\nprint\\nprintable\\nprinted\\nprinter\\nprinteries\\nprinters\\nprintery\\nprinting\\nprintings\\nprintout\\nprintouts\\nprints\\nprior\\npriorate\\npriorates\\nprioress\\nprioresses\\npriories\\npriorities\\nprioritize\\nprioritized\\nprioritizes\\nprioritizing\\npriority\\npriorly\\npriors\\npriory\\nprise\\nprised\\nprisere\\npriseres\\nprises\\nprising\\nprism\\nprismatic\\nprismoid\\nprismoids\\nprisms\\nprison\\nprisoned\\nprisoner\\nprisoners\\nprisoning\\nprisons\\npriss\\nprisses\\nprissier\\nprissies\\nprissiest\\nprissily\\nprissiness\\nprissinesses\\nprissy\\npristane\\npristanes\\npristine\\nprithee\\nprivacies\\nprivacy\\nprivate\\nprivateer\\nprivateers\\nprivater\\nprivates\\nprivatest\\nprivation\\nprivations\\nprivet\\nprivets\\nprivier\\nprivies\\npriviest\\nprivilege\\nprivileged\\nprivileges\\nprivily\\nprivities\\nprivity\\nprivy\\nprize\\nprized\\nprizefight\\nprizefighter\\nprizefighters\\nprizefighting\\nprizefightings\\nprizefights\\nprizer\\nprizers\\nprizes\\nprizewinner\\nprizewinners\\nprizing\\npro\\nproa\\nproas\\nprobabilities\\nprobability\\nprobable\\nprobably\\nproband\\nprobands\\nprobang\\nprobangs\\nprobate\\nprobated\\nprobates\\nprobating\\nprobation\\nprobationary\\nprobationer\\nprobationers\\nprobations\\nprobe\\nprobed\\nprober\\nprobers\\nprobes\\nprobing\\nprobit\\nprobities\\nprobits\\nprobity\\nproblem\\nproblematic\\nproblematical\\nproblems\\nproboscides\\nproboscis\\nprocaine\\nprocaines\\nprocarp\\nprocarps\\nprocedure\\nprocedures\\nproceed\\nproceeded\\nproceeding\\nproceedings\\nproceeds\\nprocess\\nprocessed\\nprocesses\\nprocessing\\nprocession\\nprocessional\\nprocessionals\\nprocessions\\nprocessor\\nprocessors\\nprochain\\nprochein\\nproclaim\\nproclaimed\\nproclaiming\\nproclaims\\nproclamation\\nproclamations\\nproclivities\\nproclivity\\nprocrastinate\\nprocrastinated\\nprocrastinates\\nprocrastinating\\nprocrastination\\nprocrastinations\\nprocrastinator\\nprocrastinators\\nprocreate\\nprocreated\\nprocreates\\nprocreating\\nprocreation\\nprocreations\\nprocreative\\nprocreator\\nprocreators\\nproctor\\nproctored\\nproctorial\\nproctoring\\nproctors\\nprocurable\\nprocural\\nprocurals\\nprocure\\nprocured\\nprocurement\\nprocurements\\nprocurer\\nprocurers\\nprocures\\nprocuring\\nprod\\nprodded\\nprodder\\nprodders\\nprodding\\nprodigal\\nprodigalities\\nprodigality\\nprodigals\\nprodigies\\nprodigious\\nprodigiously\\nprodigy\\nprodromal\\nprodromata\\nprodrome\\nprodromes\\nprods\\nproduce\\nproduced\\nproducer\\nproducers\\nproduces\\nproducing\\nproduct\\nproduction\\nproductions\\nproductive\\nproductiveness\\nproductivenesses\\nproductivities\\nproductivity\\nproducts\\nproem\\nproemial\\nproems\\nproette\\nproettes\\nprof\\nprofane\\nprofaned\\nprofanely\\nprofaneness\\nprofanenesses\\nprofaner\\nprofaners\\nprofanes\\nprofaning\\nprofess\\nprofessed\\nprofessedly\\nprofesses\\nprofessing\\nprofession\\nprofessional\\nprofessionalism\\nprofessionalize\\nprofessionalized\\nprofessionalizes\\nprofessionalizing\\nprofessionally\\nprofessions\\nprofessor\\nprofessorial\\nprofessors\\nprofessorship\\nprofessorships\\nproffer\\nproffered\\nproffering\\nproffers\\nproficiencies\\nproficiency\\nproficient\\nproficiently\\nprofile\\nprofiled\\nprofiler\\nprofilers\\nprofiles\\nprofiling\\nprofit\\nprofitability\\nprofitable\\nprofitably\\nprofited\\nprofiteer\\nprofiteered\\nprofiteering\\nprofiteers\\nprofiter\\nprofiters\\nprofiting\\nprofitless\\nprofits\\nprofligacies\\nprofligacy\\nprofligate\\nprofligately\\nprofligates\\nprofound\\nprofounder\\nprofoundest\\nprofoundly\\nprofounds\\nprofs\\nprofundities\\nprofundity\\nprofuse\\nprofusely\\nprofusion\\nprofusions\\nprog\\nprogenies\\nprogenitor\\nprogenitors\\nprogeny\\nprogged\\nprogger\\nproggers\\nprogging\\nprognose\\nprognosed\\nprognoses\\nprognosing\\nprognosis\\nprognosticate\\nprognosticated\\nprognosticates\\nprognosticating\\nprognostication\\nprognostications\\nprognosticator\\nprognosticators\\nprograde\\nprogram\\nprogramed\\nprograming\\nprogrammabilities\\nprogrammability\\nprogrammable\\nprogramme\\nprogrammed\\nprogrammer\\nprogrammers\\nprogrammes\\nprogramming\\nprograms\\nprogress\\nprogressed\\nprogresses\\nprogressing\\nprogression\\nprogressions\\nprogressive\\nprogressively\\nprogs\\nprohibit\\nprohibited\\nprohibiting\\nprohibition\\nprohibitionist\\nprohibitionists\\nprohibitions\\nprohibitive\\nprohibitively\\nprohibitory\\nprohibits\\nproject\\nprojected\\nprojectile\\nprojectiles\\nprojecting\\nprojection\\nprojections\\nprojector\\nprojectors\\nprojects\\nprojet\\nprojets\\nprolabor\\nprolamin\\nprolamins\\nprolan\\nprolans\\nprolapse\\nprolapsed\\nprolapses\\nprolapsing\\nprolate\\nprole\\nproleg\\nprolegs\\nproles\\nproletarian\\nproletariat\\nproliferate\\nproliferated\\nproliferates\\nproliferating\\nproliferation\\nprolific\\nprolifically\\nproline\\nprolines\\nprolix\\nprolixly\\nprolog\\nprologed\\nprologing\\nprologs\\nprologue\\nprologued\\nprologues\\nprologuing\\nprolong\\nprolongation\\nprolongations\\nprolonge\\nprolonged\\nprolonges\\nprolonging\\nprolongs\\nprom\\npromenade\\npromenaded\\npromenades\\npromenading\\nprominence\\nprominences\\nprominent\\nprominently\\npromiscuities\\npromiscuity\\npromiscuous\\npromiscuously\\npromiscuousness\\npromiscuousnesses\\npromise\\npromised\\npromisee\\npromisees\\npromiser\\npromisers\\npromises\\npromising\\npromisingly\\npromisor\\npromisors\\npromissory\\npromontories\\npromontory\\npromote\\npromoted\\npromoter\\npromoters\\npromotes\\npromoting\\npromotion\\npromotional\\npromotions\\nprompt\\nprompted\\nprompter\\nprompters\\npromptest\\nprompting\\npromptly\\npromptness\\nprompts\\nproms\\npromulge\\npromulged\\npromulges\\npromulging\\npronate\\npronated\\npronates\\npronating\\npronator\\npronatores\\npronators\\nprone\\npronely\\nproneness\\npronenesses\\nprong\\npronged\\npronging\\nprongs\\npronota\\npronotum\\npronoun\\npronounce\\npronounceable\\npronounced\\npronouncement\\npronouncements\\npronounces\\npronouncing\\npronouns\\npronto\\npronunciation\\npronunciations\\nproof\\nproofed\\nproofer\\nproofers\\nproofing\\nproofread\\nproofreaded\\nproofreader\\nproofreaders\\nproofreading\\nproofreads\\nproofs\\nprop\\npropaganda\\npropagandas\\npropagandist\\npropagandists\\npropagandize\\npropagandized\\npropagandizes\\npropagandizing\\npropagate\\npropagated\\npropagates\\npropagating\\npropagation\\npropagations\\npropane\\npropanes\\npropel\\npropellant\\npropellants\\npropelled\\npropellent\\npropellents\\npropeller\\npropellers\\npropelling\\npropels\\npropend\\npropended\\npropending\\npropends\\npropene\\npropenes\\npropenol\\npropenols\\npropense\\npropensities\\npropensity\\npropenyl\\nproper\\nproperer\\nproperest\\nproperly\\npropers\\nproperties\\nproperty\\nprophage\\nprophages\\nprophase\\nprophases\\nprophecies\\nprophecy\\nprophesied\\nprophesier\\nprophesiers\\nprophesies\\nprophesy\\nprophesying\\nprophet\\nprophetess\\nprophetesses\\nprophetic\\nprophetical\\nprophetically\\nprophets\\nprophylactic\\nprophylactics\\nprophylaxis\\npropine\\npropined\\npropines\\npropining\\npropinquities\\npropinquity\\npropitiate\\npropitiated\\npropitiates\\npropitiating\\npropitiation\\npropitiations\\npropitiatory\\npropitious\\npropjet\\npropjets\\npropman\\npropmen\\npropolis\\npropolises\\npropone\\nproponed\\nproponent\\nproponents\\npropones\\nproponing\\nproportion\\nproportional\\nproportionally\\nproportionate\\nproportionately\\nproportions\\nproposal\\nproposals\\npropose\\nproposed\\nproposer\\nproposers\\nproposes\\nproposing\\nproposition\\npropositions\\npropound\\npropounded\\npropounding\\npropounds\\npropped\\npropping\\nproprietary\\nproprieties\\nproprietor\\nproprietors\\nproprietorship\\nproprietorships\\nproprietress\\nproprietresses\\npropriety\\nprops\\npropulsion\\npropulsions\\npropulsive\\npropyl\\npropyla\\npropylic\\npropylon\\npropyls\\nprorate\\nprorated\\nprorates\\nprorating\\nprorogue\\nprorogued\\nprorogues\\nproroguing\\npros\\nprosaic\\nprosaism\\nprosaisms\\nprosaist\\nprosaists\\nproscribe\\nproscribed\\nproscribes\\nproscribing\\nproscription\\nproscriptions\\nprose\\nprosect\\nprosected\\nprosecting\\nprosects\\nprosecute\\nprosecuted\\nprosecutes\\nprosecuting\\nprosecution\\nprosecutions\\nprosecutor\\nprosecutors\\nprosed\\nproselyte\\nproselytes\\nproselytize\\nproselytized\\nproselytizes\\nproselytizing\\nproser\\nprosers\\nproses\\nprosier\\nprosiest\\nprosily\\nprosing\\nprosit\\nproso\\nprosodic\\nprosodies\\nprosody\\nprosoma\\nprosomal\\nprosomas\\nprosos\\nprospect\\nprospected\\nprospecting\\nprospective\\nprospectively\\nprospector\\nprospectors\\nprospects\\nprospectus\\nprospectuses\\nprosper\\nprospered\\nprospering\\nprosperities\\nprosperity\\nprosperous\\nprospers\\nprost\\nprostate\\nprostates\\nprostatic\\nprostheses\\nprosthesis\\nprosthetic\\nprostitute\\nprostituted\\nprostitutes\\nprostituting\\nprostitution\\nprostitutions\\nprostrate\\nprostrated\\nprostrates\\nprostrating\\nprostration\\nprostrations\\nprostyle\\nprostyles\\nprosy\\nprotamin\\nprotamins\\nprotases\\nprotasis\\nprotatic\\nprotea\\nprotean\\nproteas\\nprotease\\nproteases\\nprotect\\nprotected\\nprotecting\\nprotection\\nprotections\\nprotective\\nprotector\\nprotectorate\\nprotectorates\\nprotectors\\nprotects\\nprotege\\nprotegee\\nprotegees\\nproteges\\nprotei\\nproteid\\nproteide\\nproteides\\nproteids\\nprotein\\nproteins\\nproteinuria\\nprotend\\nprotended\\nprotending\\nprotends\\nproteose\\nproteoses\\nprotest\\nprotestation\\nprotestations\\nprotested\\nprotesting\\nprotests\\nproteus\\nprothrombin\\nprotist\\nprotists\\nprotium\\nprotiums\\nprotocol\\nprotocoled\\nprotocoling\\nprotocolled\\nprotocolling\\nprotocols\\nproton\\nprotonic\\nprotons\\nprotoplasm\\nprotoplasmic\\nprotoplasms\\nprotopod\\nprotopods\\nprototype\\nprototypes\\nprotoxid\\nprotoxids\\nprotozoa\\nprotozoan\\nprotozoans\\nprotract\\nprotracted\\nprotracting\\nprotractor\\nprotractors\\nprotracts\\nprotrude\\nprotruded\\nprotrudes\\nprotruding\\nprotrusion\\nprotrusions\\nprotrusive\\nprotuberance\\nprotuberances\\nprotuberant\\nprotyl\\nprotyle\\nprotyles\\nprotyls\\nproud\\nprouder\\nproudest\\nproudful\\nproudly\\nprounion\\nprovable\\nprovably\\nprove\\nproved\\nproven\\nprovender\\nprovenders\\nprovenly\\nprover\\nproverb\\nproverbed\\nproverbial\\nproverbing\\nproverbs\\nprovers\\nproves\\nprovide\\nprovided\\nprovidence\\nprovidences\\nprovident\\nprovidential\\nprovidently\\nprovider\\nproviders\\nprovides\\nproviding\\nprovince\\nprovinces\\nprovincial\\nprovincialism\\nprovincialisms\\nproving\\nproviral\\nprovirus\\nproviruses\\nprovision\\nprovisional\\nprovisions\\nproviso\\nprovisoes\\nprovisos\\nprovocation\\nprovocations\\nprovocative\\nprovoke\\nprovoked\\nprovoker\\nprovokers\\nprovokes\\nprovoking\\nprovost\\nprovosts\\nprow\\nprowar\\nprower\\nprowess\\nprowesses\\nprowest\\nprowl\\nprowled\\nprowler\\nprowlers\\nprowling\\nprowls\\nprows\\nproxemic\\nproxies\\nproximal\\nproximo\\nproxy\\nprude\\nprudence\\nprudences\\nprudent\\nprudential\\nprudently\\npruderies\\nprudery\\nprudes\\nprudish\\npruinose\\nprunable\\nprune\\npruned\\nprunella\\nprunellas\\nprunelle\\nprunelles\\nprunello\\nprunellos\\npruner\\npruners\\nprunes\\npruning\\nprurient\\nprurigo\\nprurigos\\npruritic\\npruritus\\nprurituses\\nprussic\\npruta\\nprutah\\nprutot\\nprutoth\\npry\\npryer\\npryers\\nprying\\npryingly\\nprythee\\npsalm\\npsalmed\\npsalmic\\npsalming\\npsalmist\\npsalmists\\npsalmodies\\npsalmody\\npsalms\\npsalter\\npsalteries\\npsalters\\npsaltery\\npsaltries\\npsaltry\\npsammite\\npsammites\\npschent\\npschents\\npsephite\\npsephites\\npseudo\\npseudonym\\npseudonymous\\npshaw\\npshawed\\npshawing\\npshaws\\npsi\\npsiloses\\npsilosis\\npsilotic\\npsis\\npsoae\\npsoai\\npsoas\\npsocid\\npsocids\\npsoralea\\npsoraleas\\npsoriasis\\npsoriasises\\npsst\\npsych\\npsyche\\npsyched\\npsyches\\npsychiatric\\npsychiatries\\npsychiatrist\\npsychiatrists\\npsychiatry\\npsychic\\npsychically\\npsychics\\npsyching\\npsycho\\npsychoanalyses\\npsychoanalysis\\npsychoanalyst\\npsychoanalysts\\npsychoanalytic\\npsychoanalyze\\npsychoanalyzed\\npsychoanalyzes\\npsychoanalyzing\\npsychological\\npsychologically\\npsychologies\\npsychologist\\npsychologists\\npsychology\\npsychopath\\npsychopathic\\npsychopaths\\npsychos\\npsychoses\\npsychosis\\npsychosocial\\npsychosomatic\\npsychotherapies\\npsychotherapist\\npsychotherapists\\npsychotherapy\\npsychotic\\npsychs\\npsylla\\npsyllas\\npsyllid\\npsyllids\\npterin\\npterins\\npteropod\\npteropods\\npteryla\\npterylae\\nptisan\\nptisans\\nptomain\\nptomaine\\nptomaines\\nptomains\\nptoses\\nptosis\\nptotic\\nptyalin\\nptyalins\\nptyalism\\nptyalisms\\npub\\npuberal\\npubertal\\npuberties\\npuberty\\npubes\\npubic\\npubis\\npublic\\npublican\\npublicans\\npublication\\npublications\\npublicist\\npublicists\\npublicities\\npublicity\\npublicize\\npublicized\\npublicizes\\npublicizing\\npublicly\\npublics\\npublish\\npublished\\npublisher\\npublishers\\npublishes\\npublishing\\npubs\\npuccoon\\npuccoons\\npuce\\npuces\\npuck\\npucka\\npucker\\npuckered\\npuckerer\\npuckerers\\npuckerier\\npuckeriest\\npuckering\\npuckers\\npuckery\\npuckish\\npucks\\npud\\npudding\\npuddings\\npuddle\\npuddled\\npuddler\\npuddlers\\npuddles\\npuddlier\\npuddliest\\npuddling\\npuddlings\\npuddly\\npudencies\\npudency\\npudenda\\npudendal\\npudendum\\npudgier\\npudgiest\\npudgily\\npudgy\\npudic\\npuds\\npueblo\\npueblos\\npuerile\\npuerilities\\npuerility\\npuff\\npuffball\\npuffballs\\npuffed\\npuffer\\npufferies\\npuffers\\npuffery\\npuffier\\npuffiest\\npuffily\\npuffin\\npuffing\\npuffins\\npuffs\\npuffy\\npug\\npugaree\\npugarees\\npuggaree\\npuggarees\\npugged\\npuggier\\npuggiest\\npugging\\npuggish\\npuggree\\npuggrees\\npuggries\\npuggry\\npuggy\\npugh\\npugilism\\npugilisms\\npugilist\\npugilistic\\npugilists\\npugmark\\npugmarks\\npugnacious\\npugree\\npugrees\\npugs\\npuisne\\npuisnes\\npuissant\\npuke\\npuked\\npukes\\npuking\\npukka\\npul\\npulchritude\\npulchritudes\\npulchritudinous\\npule\\npuled\\npuler\\npulers\\npules\\npuli\\npulicene\\npulicide\\npulicides\\npulik\\npuling\\npulingly\\npulings\\npulis\\npull\\npullback\\npullbacks\\npulled\\npuller\\npullers\\npullet\\npullets\\npulley\\npulleys\\npulling\\npullman\\npullmans\\npullout\\npullouts\\npullover\\npullovers\\npulls\\npulmonary\\npulmonic\\npulmotor\\npulmotors\\npulp\\npulpal\\npulpally\\npulped\\npulper\\npulpier\\npulpiest\\npulpily\\npulping\\npulpit\\npulpital\\npulpits\\npulpless\\npulpous\\npulps\\npulpwood\\npulpwoods\\npulpy\\npulque\\npulques\\npuls\\npulsant\\npulsar\\npulsars\\npulsate\\npulsated\\npulsates\\npulsating\\npulsation\\npulsations\\npulsator\\npulsators\\npulse\\npulsed\\npulsejet\\npulsejets\\npulser\\npulsers\\npulses\\npulsing\\npulsion\\npulsions\\npulsojet\\npulsojets\\npulverize\\npulverized\\npulverizes\\npulverizing\\npulvilli\\npulvinar\\npulvini\\npulvinus\\npuma\\npumas\\npumelo\\npumelos\\npumice\\npumiced\\npumicer\\npumicers\\npumices\\npumicing\\npumicite\\npumicites\\npummel\\npummeled\\npummeling\\npummelled\\npummelling\\npummels\\npump\\npumped\\npumper\\npumpernickel\\npumpernickels\\npumpers\\npumping\\npumpkin\\npumpkins\\npumpless\\npumplike\\npumps\\npun\\npuna\\npunas\\npunch\\npunched\\npuncheon\\npuncheons\\npuncher\\npunchers\\npunches\\npunchier\\npunchiest\\npunching\\npunchy\\npunctate\\npunctilious\\npunctual\\npunctualities\\npunctuality\\npunctually\\npunctuate\\npunctuated\\npunctuates\\npunctuating\\npunctuation\\npuncture\\npunctured\\npunctures\\npuncturing\\npundit\\npunditic\\npunditries\\npunditry\\npundits\\npung\\npungencies\\npungency\\npungent\\npungently\\npungs\\npunier\\npuniest\\npunily\\npuniness\\npuninesses\\npunish\\npunishable\\npunished\\npunisher\\npunishers\\npunishes\\npunishing\\npunishment\\npunishments\\npunition\\npunitions\\npunitive\\npunitory\\npunk\\npunka\\npunkah\\npunkahs\\npunkas\\npunker\\npunkest\\npunkey\\npunkeys\\npunkie\\npunkier\\npunkies\\npunkiest\\npunkin\\npunkins\\npunks\\npunky\\npunned\\npunner\\npunners\\npunnier\\npunniest\\npunning\\npunny\\npuns\\npunster\\npunsters\\npunt\\npunted\\npunter\\npunters\\npunties\\npunting\\npunto\\npuntos\\npunts\\npunty\\npuny\\npup\\npupa\\npupae\\npupal\\npuparia\\npuparial\\npuparium\\npupas\\npupate\\npupated\\npupates\\npupating\\npupation\\npupations\\npupfish\\npupfishes\\npupil\\npupilage\\npupilages\\npupilar\\npupilary\\npupils\\npupped\\npuppet\\npuppeteer\\npuppeteers\\npuppetries\\npuppetry\\npuppets\\npuppies\\npupping\\npuppy\\npuppydom\\npuppydoms\\npuppyish\\npups\\npur\\npurana\\npuranas\\npuranic\\npurblind\\npurchase\\npurchased\\npurchaser\\npurchasers\\npurchases\\npurchasing\\npurda\\npurdah\\npurdahs\\npurdas\\npure\\npurebred\\npurebreds\\npuree\\npureed\\npureeing\\npurees\\npurely\\npureness\\npurenesses\\npurer\\npurest\\npurfle\\npurfled\\npurfles\\npurfling\\npurflings\\npurgative\\npurgatorial\\npurgatories\\npurgatory\\npurge\\npurged\\npurger\\npurgers\\npurges\\npurging\\npurgings\\npuri\\npurification\\npurifications\\npurified\\npurifier\\npurifiers\\npurifies\\npurify\\npurifying\\npurin\\npurine\\npurines\\npurins\\npuris\\npurism\\npurisms\\npurist\\npuristic\\npurists\\npuritan\\npuritanical\\npuritans\\npurities\\npurity\\npurl\\npurled\\npurlieu\\npurlieus\\npurlin\\npurline\\npurlines\\npurling\\npurlins\\npurloin\\npurloined\\npurloining\\npurloins\\npurls\\npurple\\npurpled\\npurpler\\npurples\\npurplest\\npurpling\\npurplish\\npurply\\npurport\\npurported\\npurportedly\\npurporting\\npurports\\npurpose\\npurposed\\npurposeful\\npurposefully\\npurposeless\\npurposely\\npurposes\\npurposing\\npurpura\\npurpuras\\npurpure\\npurpures\\npurpuric\\npurpurin\\npurpurins\\npurr\\npurred\\npurring\\npurrs\\npurs\\npurse\\npursed\\npurser\\npursers\\npurses\\npursier\\npursiest\\npursily\\npursing\\npurslane\\npurslanes\\npursuance\\npursuances\\npursuant\\npursue\\npursued\\npursuer\\npursuers\\npursues\\npursuing\\npursuit\\npursuits\\npursy\\npurulent\\npurvey\\npurveyance\\npurveyances\\npurveyed\\npurveying\\npurveyor\\npurveyors\\npurveys\\npurview\\npurviews\\npus\\npuses\\npush\\npushball\\npushballs\\npushcart\\npushcarts\\npushdown\\npushdowns\\npushed\\npusher\\npushers\\npushes\\npushful\\npushier\\npushiest\\npushily\\npushing\\npushover\\npushovers\\npushpin\\npushpins\\npushup\\npushups\\npushy\\npusillanimous\\npusley\\npusleys\\npuslike\\npuss\\npusses\\npussier\\npussies\\npussiest\\npussley\\npussleys\\npusslies\\npusslike\\npussly\\npussy\\npussycat\\npussycats\\npustular\\npustule\\npustuled\\npustules\\nput\\nputamen\\nputamina\\nputative\\nputlog\\nputlogs\\nputoff\\nputoffs\\nputon\\nputons\\nputout\\nputouts\\nputrefaction\\nputrefactions\\nputrefactive\\nputrefied\\nputrefies\\nputrefy\\nputrefying\\nputrid\\nputridly\\nputs\\nputsch\\nputsches\\nputt\\nputted\\nputtee\\nputtees\\nputter\\nputtered\\nputterer\\nputterers\\nputtering\\nputters\\nputtied\\nputtier\\nputtiers\\nputties\\nputting\\nputts\\nputty\\nputtying\\npuzzle\\npuzzled\\npuzzlement\\npuzzlements\\npuzzler\\npuzzlers\\npuzzles\\npuzzling\\npya\\npyaemia\\npyaemias\\npyaemic\\npyas\\npycnidia\\npye\\npyelitic\\npyelitis\\npyelitises\\npyemia\\npyemias\\npyemic\\npyes\\npygidia\\npygidial\\npygidium\\npygmaean\\npygmean\\npygmies\\npygmoid\\npygmy\\npygmyish\\npygmyism\\npygmyisms\\npyic\\npyin\\npyins\\npyjamas\\npyknic\\npyknics\\npylon\\npylons\\npylori\\npyloric\\npylorus\\npyloruses\\npyoderma\\npyodermas\\npyogenic\\npyoid\\npyorrhea\\npyorrheas\\npyoses\\npyosis\\npyralid\\npyralids\\npyramid\\npyramidal\\npyramided\\npyramiding\\npyramids\\npyran\\npyranoid\\npyranose\\npyranoses\\npyrans\\npyre\\npyrene\\npyrenes\\npyrenoid\\npyrenoids\\npyres\\npyretic\\npyrexia\\npyrexial\\npyrexias\\npyrexic\\npyric\\npyridic\\npyridine\\npyridines\\npyriform\\npyrite\\npyrites\\npyritic\\npyritous\\npyrogen\\npyrogens\\npyrola\\npyrolas\\npyrologies\\npyrology\\npyrolyze\\npyrolyzed\\npyrolyzes\\npyrolyzing\\npyromania\\npyromaniac\\npyromaniacs\\npyromanias\\npyrone\\npyrones\\npyronine\\npyronines\\npyrope\\npyropes\\npyrosis\\npyrosises\\npyrostat\\npyrostats\\npyrotechnic\\npyrotechnics\\npyroxene\\npyroxenes\\npyrrhic\\npyrrhics\\npyrrol\\npyrrole\\npyrroles\\npyrrolic\\npyrrols\\npyruvate\\npyruvates\\npython\\npythonic\\npythons\\npyuria\\npyurias\\npyx\\npyxes\\npyxides\\npyxidia\\npyxidium\\npyxie\\npyxies\\npyxis\\nqaid\\nqaids\\nqindar\\nqindars\\nqintar\\nqintars\\nqiviut\\nqiviuts\\nqoph\\nqophs\\nqua\\nquack\\nquacked\\nquackeries\\nquackery\\nquacking\\nquackish\\nquackism\\nquackisms\\nquacks\\nquad\\nquadded\\nquadding\\nquadrangle\\nquadrangles\\nquadrangular\\nquadrans\\nquadrant\\nquadrantes\\nquadrants\\nquadrat\\nquadrate\\nquadrated\\nquadrates\\nquadrating\\nquadrats\\nquadric\\nquadrics\\nquadriga\\nquadrigae\\nquadrilateral\\nquadrilaterals\\nquadrille\\nquadrilles\\nquadroon\\nquadroons\\nquadruped\\nquadrupedal\\nquadrupeds\\nquadruple\\nquadrupled\\nquadruples\\nquadruplet\\nquadruplets\\nquadrupling\\nquads\\nquaere\\nquaeres\\nquaestor\\nquaestors\\nquaff\\nquaffed\\nquaffer\\nquaffers\\nquaffing\\nquaffs\\nquag\\nquagga\\nquaggas\\nquaggier\\nquaggiest\\nquaggy\\nquagmire\\nquagmires\\nquagmirier\\nquagmiriest\\nquagmiry\\nquags\\nquahaug\\nquahaugs\\nquahog\\nquahogs\\nquai\\nquaich\\nquaiches\\nquaichs\\nquaigh\\nquaighs\\nquail\\nquailed\\nquailing\\nquails\\nquaint\\nquainter\\nquaintest\\nquaintly\\nquaintness\\nquaintnesses\\nquais\\nquake\\nquaked\\nquaker\\nquakers\\nquakes\\nquakier\\nquakiest\\nquakily\\nquaking\\nquaky\\nquale\\nqualia\\nqualification\\nqualifications\\nqualified\\nqualifier\\nqualifiers\\nqualifies\\nqualify\\nqualifying\\nqualitative\\nqualities\\nquality\\nqualm\\nqualmier\\nqualmiest\\nqualmish\\nqualms\\nqualmy\\nquamash\\nquamashes\\nquandang\\nquandangs\\nquandaries\\nquandary\\nquandong\\nquandongs\\nquant\\nquanta\\nquantal\\nquanted\\nquantic\\nquantics\\nquantified\\nquantifies\\nquantify\\nquantifying\\nquanting\\nquantitative\\nquantities\\nquantity\\nquantize\\nquantized\\nquantizes\\nquantizing\\nquantong\\nquantongs\\nquants\\nquantum\\nquarantine\\nquarantined\\nquarantines\\nquarantining\\nquare\\nquark\\nquarks\\nquarrel\\nquarreled\\nquarreling\\nquarrelled\\nquarrelling\\nquarrels\\nquarrelsome\\nquarried\\nquarrier\\nquarriers\\nquarries\\nquarry\\nquarrying\\nquart\\nquartan\\nquartans\\nquarte\\nquarter\\nquarterback\\nquarterbacked\\nquarterbacking\\nquarterbacks\\nquartered\\nquartering\\nquarterlies\\nquarterly\\nquartermaster\\nquartermasters\\nquartern\\nquarterns\\nquarters\\nquartes\\nquartet\\nquartets\\nquartic\\nquartics\\nquartile\\nquartiles\\nquarto\\nquartos\\nquarts\\nquartz\\nquartzes\\nquasar\\nquasars\\nquash\\nquashed\\nquashes\\nquashing\\nquasi\\nquass\\nquasses\\nquassia\\nquassias\\nquassin\\nquassins\\nquate\\nquatorze\\nquatorzes\\nquatrain\\nquatrains\\nquatre\\nquatres\\nquaver\\nquavered\\nquaverer\\nquaverers\\nquavering\\nquavers\\nquavery\\nquay\\nquayage\\nquayages\\nquaylike\\nquays\\nquayside\\nquaysides\\nquean\\nqueans\\nqueasier\\nqueasiest\\nqueasily\\nqueasiness\\nqueasinesses\\nqueasy\\nqueazier\\nqueaziest\\nqueazy\\nqueen\\nqueened\\nqueening\\nqueenlier\\nqueenliest\\nqueenly\\nqueens\\nqueer\\nqueered\\nqueerer\\nqueerest\\nqueering\\nqueerish\\nqueerly\\nqueerness\\nqueernesses\\nqueers\\nquell\\nquelled\\nqueller\\nquellers\\nquelling\\nquells\\nquench\\nquenchable\\nquenched\\nquencher\\nquenchers\\nquenches\\nquenching\\nquenchless\\nquenelle\\nquenelles\\nquercine\\nquerida\\nqueridas\\nqueried\\nquerier\\nqueriers\\nqueries\\nquerist\\nquerists\\nquern\\nquerns\\nquerulous\\nquerulously\\nquerulousness\\nquerulousnesses\\nquery\\nquerying\\nquest\\nquested\\nquester\\nquesters\\nquesting\\nquestion\\nquestionable\\nquestioned\\nquestioner\\nquestioners\\nquestioning\\nquestionnaire\\nquestionnaires\\nquestionniare\\nquestionniares\\nquestions\\nquestor\\nquestors\\nquests\\nquetzal\\nquetzales\\nquetzals\\nqueue\\nqueued\\nqueueing\\nqueuer\\nqueuers\\nqueues\\nqueuing\\nquey\\nqueys\\nquezal\\nquezales\\nquezals\\nquibble\\nquibbled\\nquibbler\\nquibblers\\nquibbles\\nquibbling\\nquiche\\nquiches\\nquick\\nquicken\\nquickened\\nquickening\\nquickens\\nquicker\\nquickest\\nquickie\\nquickies\\nquickly\\nquickness\\nquicknesses\\nquicks\\nquicksand\\nquicksands\\nquickset\\nquicksets\\nquicksilver\\nquicksilvers\\nquid\\nquiddities\\nquiddity\\nquidnunc\\nquidnuncs\\nquids\\nquiescence\\nquiescences\\nquiescent\\nquiet\\nquieted\\nquieten\\nquietened\\nquietening\\nquietens\\nquieter\\nquieters\\nquietest\\nquieting\\nquietism\\nquietisms\\nquietist\\nquietists\\nquietly\\nquietness\\nquietnesses\\nquiets\\nquietude\\nquietudes\\nquietus\\nquietuses\\nquiff\\nquiffs\\nquill\\nquillai\\nquillais\\nquilled\\nquillet\\nquillets\\nquilling\\nquills\\nquilt\\nquilted\\nquilter\\nquilters\\nquilting\\nquiltings\\nquilts\\nquinaries\\nquinary\\nquinate\\nquince\\nquinces\\nquincunx\\nquincunxes\\nquinella\\nquinellas\\nquinic\\nquiniela\\nquinielas\\nquinin\\nquinina\\nquininas\\nquinine\\nquinines\\nquinins\\nquinnat\\nquinnats\\nquinoa\\nquinoas\\nquinoid\\nquinoids\\nquinol\\nquinolin\\nquinolins\\nquinols\\nquinone\\nquinones\\nquinsies\\nquinsy\\nquint\\nquintain\\nquintains\\nquintal\\nquintals\\nquintan\\nquintans\\nquintar\\nquintars\\nquintessence\\nquintessences\\nquintessential\\nquintet\\nquintets\\nquintic\\nquintics\\nquintile\\nquintiles\\nquintin\\nquintins\\nquints\\nquintuple\\nquintupled\\nquintuples\\nquintuplet\\nquintuplets\\nquintupling\\nquip\\nquipped\\nquipping\\nquippish\\nquippu\\nquippus\\nquips\\nquipster\\nquipsters\\nquipu\\nquipus\\nquire\\nquired\\nquires\\nquiring\\nquirk\\nquirked\\nquirkier\\nquirkiest\\nquirkily\\nquirking\\nquirks\\nquirky\\nquirt\\nquirted\\nquirting\\nquirts\\nquisling\\nquislings\\nquit\\nquitch\\nquitches\\nquite\\nquitrent\\nquitrents\\nquits\\nquitted\\nquitter\\nquitters\\nquitting\\nquittor\\nquittors\\nquiver\\nquivered\\nquiverer\\nquiverers\\nquivering\\nquivers\\nquivery\\nquixote\\nquixotes\\nquixotic\\nquixotries\\nquixotry\\nquiz\\nquizmaster\\nquizmasters\\nquizzed\\nquizzer\\nquizzers\\nquizzes\\nquizzing\\nquod\\nquods\\nquoin\\nquoined\\nquoining\\nquoins\\nquoit\\nquoited\\nquoiting\\nquoits\\nquomodo\\nquomodos\\nquondam\\nquorum\\nquorums\\nquota\\nquotable\\nquotably\\nquotas\\nquotation\\nquotations\\nquote\\nquoted\\nquoter\\nquoters\\nquotes\\nquoth\\nquotha\\nquotient\\nquotients\\nquoting\\nqursh\\nqurshes\\nqurush\\nqurushes\\nrabato\\nrabatos\\nrabbet\\nrabbeted\\nrabbeting\\nrabbets\\nrabbi\\nrabbies\\nrabbin\\nrabbinate\\nrabbinates\\nrabbinic\\nrabbinical\\nrabbins\\nrabbis\\nrabbit\\nrabbited\\nrabbiter\\nrabbiters\\nrabbiting\\nrabbitries\\nrabbitry\\nrabbits\\nrabble\\nrabbled\\nrabbler\\nrabblers\\nrabbles\\nrabbling\\nrabboni\\nrabbonis\\nrabic\\nrabid\\nrabidities\\nrabidity\\nrabidly\\nrabies\\nrabietic\\nraccoon\\nraccoons\\nrace\\nracecourse\\nracecourses\\nraced\\nracehorse\\nracehorses\\nracemate\\nracemates\\nraceme\\nracemed\\nracemes\\nracemic\\nracemism\\nracemisms\\nracemize\\nracemized\\nracemizes\\nracemizing\\nracemoid\\nracemose\\nracemous\\nracer\\nracers\\nraces\\nracetrack\\nracetracks\\nraceway\\nraceways\\nrachet\\nrachets\\nrachial\\nrachides\\nrachis\\nrachises\\nrachitic\\nrachitides\\nrachitis\\nracial\\nracially\\nracier\\nraciest\\nracily\\nraciness\\nracinesses\\nracing\\nracings\\nracism\\nracisms\\nracist\\nracists\\nrack\\nracked\\nracker\\nrackers\\nracket\\nracketed\\nracketeer\\nracketeering\\nracketeerings\\nracketeers\\nracketier\\nracketiest\\nracketing\\nrackets\\nrackety\\nracking\\nrackle\\nracks\\nrackwork\\nrackworks\\nraclette\\nraclettes\\nracon\\nracons\\nraconteur\\nraconteurs\\nracoon\\nracoons\\nracquet\\nracquets\\nracy\\nrad\\nradar\\nradars\\nradded\\nradding\\nraddle\\nraddled\\nraddles\\nraddling\\nradiable\\nradial\\nradiale\\nradialia\\nradially\\nradials\\nradian\\nradiance\\nradiances\\nradiancies\\nradiancy\\nradians\\nradiant\\nradiantly\\nradiants\\nradiate\\nradiated\\nradiates\\nradiating\\nradiation\\nradiations\\nradiator\\nradiators\\nradical\\nradicalism\\nradicalisms\\nradically\\nradicals\\nradicand\\nradicands\\nradicate\\nradicated\\nradicates\\nradicating\\nradicel\\nradicels\\nradices\\nradicle\\nradicles\\nradii\\nradio\\nradioactive\\nradioactivities\\nradioactivity\\nradioed\\nradioing\\nradiologies\\nradiologist\\nradiologists\\nradiology\\nradioman\\nradiomen\\nradionuclide\\nradionuclides\\nradios\\nradiotherapies\\nradiotherapy\\nradish\\nradishes\\nradium\\nradiums\\nradius\\nradiuses\\nradix\\nradixes\\nradome\\nradomes\\nradon\\nradons\\nrads\\nradula\\nradulae\\nradular\\nradulas\\nraff\\nraffia\\nraffias\\nraffish\\nraffishly\\nraffishness\\nraffishnesses\\nraffle\\nraffled\\nraffler\\nrafflers\\nraffles\\nraffling\\nraffs\\nraft\\nrafted\\nrafter\\nrafters\\nrafting\\nrafts\\nraftsman\\nraftsmen\\nrag\\nraga\\nragamuffin\\nragamuffins\\nragas\\nragbag\\nragbags\\nrage\\nraged\\nragee\\nragees\\nrages\\nragged\\nraggeder\\nraggedest\\nraggedly\\nraggedness\\nraggednesses\\nraggedy\\nraggies\\nragging\\nraggle\\nraggles\\nraggy\\nragi\\nraging\\nragingly\\nragis\\nraglan\\nraglans\\nragman\\nragmen\\nragout\\nragouted\\nragouting\\nragouts\\nrags\\nragtag\\nragtags\\nragtime\\nragtimes\\nragweed\\nragweeds\\nragwort\\nragworts\\nrah\\nraia\\nraias\\nraid\\nraided\\nraider\\nraiders\\nraiding\\nraids\\nrail\\nrailbird\\nrailbirds\\nrailed\\nrailer\\nrailers\\nrailhead\\nrailheads\\nrailing\\nrailings\\nrailleries\\nraillery\\nrailroad\\nrailroaded\\nrailroader\\nrailroaders\\nrailroading\\nrailroadings\\nrailroads\\nrails\\nrailway\\nrailways\\nraiment\\nraiments\\nrain\\nrainband\\nrainbands\\nrainbird\\nrainbirds\\nrainbow\\nrainbows\\nraincoat\\nraincoats\\nraindrop\\nraindrops\\nrained\\nrainfall\\nrainfalls\\nrainier\\nrainiest\\nrainily\\nraining\\nrainless\\nrainmaker\\nrainmakers\\nrainmaking\\nrainmakings\\nrainout\\nrainouts\\nrains\\nrainstorm\\nrainstorms\\nrainwash\\nrainwashes\\nrainwater\\nrainwaters\\nrainwear\\nrainwears\\nrainy\\nraisable\\nraise\\nraised\\nraiser\\nraisers\\nraises\\nraisin\\nraising\\nraisings\\nraisins\\nraisiny\\nraisonne\\nraj\\nraja\\nrajah\\nrajahs\\nrajas\\nrajes\\nrake\\nraked\\nrakee\\nrakees\\nrakehell\\nrakehells\\nrakeoff\\nrakeoffs\\nraker\\nrakers\\nrakes\\nraki\\nraking\\nrakis\\nrakish\\nrakishly\\nrakishness\\nrakishnesses\\nrale\\nrales\\nrallied\\nrallier\\nralliers\\nrallies\\nralline\\nrally\\nrallye\\nrallyes\\nrallying\\nrallyings\\nrallyist\\nrallyists\\nram\\nramate\\nramble\\nrambled\\nrambler\\nramblers\\nrambles\\nrambling\\nrambunctious\\nrambutan\\nrambutans\\nramee\\nramees\\nramekin\\nramekins\\nramenta\\nramentum\\nramequin\\nramequins\\nramet\\nramets\\nrami\\nramie\\nramies\\nramification\\nramifications\\nramified\\nramifies\\nramiform\\nramify\\nramifying\\nramilie\\nramilies\\nramillie\\nramillies\\nramjet\\nramjets\\nrammed\\nrammer\\nrammers\\nrammier\\nrammiest\\nramming\\nrammish\\nrammy\\nramose\\nramosely\\nramosities\\nramosity\\nramous\\nramp\\nrampage\\nrampaged\\nrampager\\nrampagers\\nrampages\\nrampaging\\nrampancies\\nrampancy\\nrampant\\nrampantly\\nrampart\\nramparted\\nramparting\\nramparts\\nramped\\nrampike\\nrampikes\\nramping\\nrampion\\nrampions\\nrampole\\nrampoles\\nramps\\nramrod\\nramrods\\nrams\\nramshackle\\nramshorn\\nramshorns\\nramson\\nramsons\\nramtil\\nramtils\\nramulose\\nramulous\\nramus\\nran\\nrance\\nrances\\nranch\\nranched\\nrancher\\nranchero\\nrancheros\\nranchers\\nranches\\nranching\\nranchland\\nranchlands\\nranchman\\nranchmen\\nrancho\\nranchos\\nrancid\\nrancidities\\nrancidity\\nrancidness\\nrancidnesses\\nrancor\\nrancored\\nrancorous\\nrancors\\nrancour\\nrancours\\nrand\\nrandan\\nrandans\\nrandies\\nrandom\\nrandomization\\nrandomizations\\nrandomize\\nrandomized\\nrandomizes\\nrandomizing\\nrandomly\\nrandomness\\nrandomnesses\\nrandoms\\nrands\\nrandy\\nranee\\nranees\\nrang\\nrange\\nranged\\nrangeland\\nrangelands\\nranger\\nrangers\\nranges\\nrangier\\nrangiest\\nranginess\\nranginesses\\nranging\\nrangy\\nrani\\nranid\\nranids\\nranis\\nrank\\nranked\\nranker\\nrankers\\nrankest\\nranking\\nrankish\\nrankle\\nrankled\\nrankles\\nrankling\\nrankly\\nrankness\\nranknesses\\nranks\\nranpike\\nranpikes\\nransack\\nransacked\\nransacking\\nransacks\\nransom\\nransomed\\nransomer\\nransomers\\nransoming\\nransoms\\nrant\\nranted\\nranter\\nranters\\nranting\\nrantingly\\nrants\\nranula\\nranulas\\nrap\\nrapacious\\nrapaciously\\nrapaciousness\\nrapaciousnesses\\nrapacities\\nrapacity\\nrape\\nraped\\nraper\\nrapers\\nrapes\\nrapeseed\\nrapeseeds\\nraphae\\nraphe\\nraphes\\nraphia\\nraphias\\nraphide\\nraphides\\nraphis\\nrapid\\nrapider\\nrapidest\\nrapidities\\nrapidity\\nrapidly\\nrapids\\nrapier\\nrapiered\\nrapiers\\nrapine\\nrapines\\nraping\\nrapist\\nrapists\\nrapparee\\nrapparees\\nrapped\\nrappee\\nrappees\\nrappel\\nrappelled\\nrappelling\\nrappels\\nrappen\\nrapper\\nrappers\\nrapping\\nrappini\\nrapport\\nrapports\\nraps\\nrapt\\nraptly\\nraptness\\nraptnesses\\nraptor\\nraptors\\nrapture\\nraptured\\nraptures\\nrapturing\\nrapturous\\nrare\\nrarebit\\nrarebits\\nrarefaction\\nrarefactions\\nrarefied\\nrarefier\\nrarefiers\\nrarefies\\nrarefy\\nrarefying\\nrarely\\nrareness\\nrarenesses\\nrarer\\nrareripe\\nrareripes\\nrarest\\nrarified\\nrarifies\\nrarify\\nrarifying\\nraring\\nrarities\\nrarity\\nras\\nrasbora\\nrasboras\\nrascal\\nrascalities\\nrascality\\nrascally\\nrascals\\nrase\\nrased\\nraser\\nrasers\\nrases\\nrash\\nrasher\\nrashers\\nrashes\\nrashest\\nrashlike\\nrashly\\nrashness\\nrashnesses\\nrasing\\nrasorial\\nrasp\\nraspberries\\nraspberry\\nrasped\\nrasper\\nraspers\\nraspier\\nraspiest\\nrasping\\nraspish\\nrasps\\nraspy\\nrassle\\nrassled\\nrassles\\nrassling\\nraster\\nrasters\\nrasure\\nrasures\\nrat\\nratable\\nratably\\nratafee\\nratafees\\nratafia\\nratafias\\nratal\\nratals\\nratan\\nratanies\\nratans\\nratany\\nrataplan\\nrataplanned\\nrataplanning\\nrataplans\\nratatat\\nratatats\\nratch\\nratches\\nratchet\\nratchets\\nrate\\nrateable\\nrateably\\nrated\\nratel\\nratels\\nrater\\nraters\\nrates\\nratfink\\nratfinks\\nratfish\\nratfishes\\nrath\\nrathe\\nrather\\nrathole\\nratholes\\nraticide\\nraticides\\nratification\\nratifications\\nratified\\nratifier\\nratifiers\\nratifies\\nratify\\nratifying\\nratine\\nratines\\nrating\\nratings\\nratio\\nration\\nrational\\nrationale\\nrationales\\nrationalization\\nrationalizations\\nrationalize\\nrationalized\\nrationalizes\\nrationalizing\\nrationally\\nrationals\\nrationed\\nrationing\\nrations\\nratios\\nratite\\nratites\\nratlike\\nratlin\\nratline\\nratlines\\nratlins\\nrato\\nratoon\\nratooned\\nratooner\\nratooners\\nratooning\\nratoons\\nratos\\nrats\\nratsbane\\nratsbanes\\nrattail\\nrattails\\nrattan\\nrattans\\nratted\\nratteen\\nratteens\\nratten\\nrattened\\nrattener\\nratteners\\nrattening\\nrattens\\nratter\\nratters\\nrattier\\nrattiest\\nratting\\nrattish\\nrattle\\nrattled\\nrattler\\nrattlers\\nrattles\\nrattlesnake\\nrattlesnakes\\nrattling\\nrattlings\\nrattly\\nratton\\nrattons\\nrattoon\\nrattooned\\nrattooning\\nrattoons\\nrattrap\\nrattraps\\nratty\\nraucities\\nraucity\\nraucous\\nraucously\\nraucousness\\nraucousnesses\\nraunchier\\nraunchiest\\nraunchy\\nravage\\nravaged\\nravager\\nravagers\\nravages\\nravaging\\nrave\\nraved\\nravel\\nraveled\\nraveler\\nravelers\\nravelin\\nraveling\\nravelings\\nravelins\\nravelled\\nraveller\\nravellers\\nravelling\\nravellings\\nravelly\\nravels\\nraven\\nravened\\nravener\\nraveners\\nravening\\nravenings\\nravenous\\nravenously\\nravenousness\\nravenousnesses\\nravens\\nraver\\nravers\\nraves\\nravigote\\nravigotes\\nravin\\nravine\\nravined\\nravines\\nraving\\nravingly\\nravings\\nravining\\nravins\\nravioli\\nraviolis\\nravish\\nravished\\nravisher\\nravishers\\nravishes\\nravishing\\nravishment\\nravishments\\nraw\\nrawboned\\nrawer\\nrawest\\nrawhide\\nrawhided\\nrawhides\\nrawhiding\\nrawish\\nrawly\\nrawness\\nrawnesses\\nraws\\nrax\\nraxed\\nraxes\\nraxing\\nray\\nraya\\nrayah\\nrayahs\\nrayas\\nrayed\\nraygrass\\nraygrasses\\nraying\\nrayless\\nrayon\\nrayons\\nrays\\nraze\\nrazed\\nrazee\\nrazeed\\nrazeeing\\nrazees\\nrazer\\nrazers\\nrazes\\nrazing\\nrazor\\nrazored\\nrazoring\\nrazors\\nrazz\\nrazzed\\nrazzes\\nrazzing\\nre\\nreabsorb\\nreabsorbed\\nreabsorbing\\nreabsorbs\\nreabstract\\nreabstracted\\nreabstracting\\nreabstracts\\nreaccede\\nreacceded\\nreaccedes\\nreacceding\\nreaccelerate\\nreaccelerated\\nreaccelerates\\nreaccelerating\\nreaccent\\nreaccented\\nreaccenting\\nreaccents\\nreaccept\\nreaccepted\\nreaccepting\\nreaccepts\\nreacclimatize\\nreacclimatized\\nreacclimatizes\\nreacclimatizing\\nreaccredit\\nreaccredited\\nreaccrediting\\nreaccredits\\nreaccumulate\\nreaccumulated\\nreaccumulates\\nreaccumulating\\nreaccuse\\nreaccused\\nreaccuses\\nreaccusing\\nreach\\nreachable\\nreached\\nreacher\\nreachers\\nreaches\\nreachieve\\nreachieved\\nreachieves\\nreachieving\\nreaching\\nreacquaint\\nreacquainted\\nreacquainting\\nreacquaints\\nreacquire\\nreacquired\\nreacquires\\nreacquiring\\nreact\\nreactant\\nreactants\\nreacted\\nreacting\\nreaction\\nreactionaries\\nreactionary\\nreactions\\nreactivate\\nreactivated\\nreactivates\\nreactivating\\nreactivation\\nreactivations\\nreactive\\nreactor\\nreactors\\nreacts\\nread\\nreadabilities\\nreadability\\nreadable\\nreadably\\nreadapt\\nreadapted\\nreadapting\\nreadapts\\nreadd\\nreadded\\nreaddict\\nreaddicted\\nreaddicting\\nreaddicts\\nreadding\\nreaddress\\nreaddressed\\nreaddresses\\nreaddressing\\nreadds\\nreader\\nreaders\\nreadership\\nreaderships\\nreadied\\nreadier\\nreadies\\nreadiest\\nreadily\\nreadiness\\nreadinesses\\nreading\\nreadings\\nreadjust\\nreadjustable\\nreadjusted\\nreadjusting\\nreadjustment\\nreadjustments\\nreadjusts\\nreadmit\\nreadmits\\nreadmitted\\nreadmitting\\nreadopt\\nreadopted\\nreadopting\\nreadopts\\nreadorn\\nreadorned\\nreadorning\\nreadorns\\nreadout\\nreadouts\\nreads\\nready\\nreadying\\nreaffirm\\nreaffirmed\\nreaffirming\\nreaffirms\\nreaffix\\nreaffixed\\nreaffixes\\nreaffixing\\nreagent\\nreagents\\nreagin\\nreaginic\\nreagins\\nreal\\nrealer\\nreales\\nrealest\\nrealgar\\nrealgars\\nrealia\\nrealign\\nrealigned\\nrealigning\\nrealignment\\nrealignments\\nrealigns\\nrealise\\nrealised\\nrealiser\\nrealisers\\nrealises\\nrealising\\nrealism\\nrealisms\\nrealist\\nrealistic\\nrealistically\\nrealists\\nrealities\\nreality\\nrealizable\\nrealization\\nrealizations\\nrealize\\nrealized\\nrealizer\\nrealizers\\nrealizes\\nrealizing\\nreallocate\\nreallocated\\nreallocates\\nreallocating\\nreallot\\nreallots\\nreallotted\\nreallotting\\nreally\\nrealm\\nrealms\\nrealness\\nrealnesses\\nreals\\nrealter\\nrealtered\\nrealtering\\nrealters\\nrealties\\nrealty\\nream\\nreamed\\nreamer\\nreamers\\nreaming\\nreams\\nreanalyses\\nreanalysis\\nreanalyze\\nreanalyzed\\nreanalyzes\\nreanalyzing\\nreanesthetize\\nreanesthetized\\nreanesthetizes\\nreanesthetizing\\nreannex\\nreannexed\\nreannexes\\nreannexing\\nreanoint\\nreanointed\\nreanointing\\nreanoints\\nreap\\nreapable\\nreaped\\nreaper\\nreapers\\nreaphook\\nreaphooks\\nreaping\\nreappear\\nreappearance\\nreappearances\\nreappeared\\nreappearing\\nreappears\\nreapplied\\nreapplies\\nreapply\\nreapplying\\nreappoint\\nreappointed\\nreappointing\\nreappoints\\nreapportion\\nreapportioned\\nreapportioning\\nreapportions\\nreappraisal\\nreappraisals\\nreappraise\\nreappraised\\nreappraises\\nreappraising\\nreapprove\\nreapproved\\nreapproves\\nreapproving\\nreaps\\nrear\\nreared\\nrearer\\nrearers\\nreargue\\nreargued\\nreargues\\nrearguing\\nrearing\\nrearm\\nrearmed\\nrearmice\\nrearming\\nrearmost\\nrearms\\nrearouse\\nrearoused\\nrearouses\\nrearousing\\nrearrange\\nrearranged\\nrearranges\\nrearranging\\nrearrest\\nrearrested\\nrearresting\\nrearrests\\nrears\\nrearward\\nrearwards\\nreascend\\nreascended\\nreascending\\nreascends\\nreascent\\nreascents\\nreason\\nreasonable\\nreasonableness\\nreasonablenesses\\nreasonably\\nreasoned\\nreasoner\\nreasoners\\nreasoning\\nreasonings\\nreasons\\nreassail\\nreassailed\\nreassailing\\nreassails\\nreassemble\\nreassembled\\nreassembles\\nreassembling\\nreassert\\nreasserted\\nreasserting\\nreasserts\\nreassess\\nreassessed\\nreassesses\\nreassessing\\nreassessment\\nreassessments\\nreassign\\nreassigned\\nreassigning\\nreassignment\\nreassignments\\nreassigns\\nreassociate\\nreassociated\\nreassociates\\nreassociating\\nreassort\\nreassorted\\nreassorting\\nreassorts\\nreassume\\nreassumed\\nreassumes\\nreassuming\\nreassurance\\nreassurances\\nreassure\\nreassured\\nreassures\\nreassuring\\nreassuringly\\nreata\\nreatas\\nreattach\\nreattached\\nreattaches\\nreattaching\\nreattack\\nreattacked\\nreattacking\\nreattacks\\nreattain\\nreattained\\nreattaining\\nreattains\\nreave\\nreaved\\nreaver\\nreavers\\nreaves\\nreaving\\nreavow\\nreavowed\\nreavowing\\nreavows\\nreawake\\nreawaked\\nreawaken\\nreawakened\\nreawakening\\nreawakens\\nreawakes\\nreawaking\\nreawoke\\nreawoken\\nreb\\nrebait\\nrebaited\\nrebaiting\\nrebaits\\nrebalance\\nrebalanced\\nrebalances\\nrebalancing\\nrebaptize\\nrebaptized\\nrebaptizes\\nrebaptizing\\nrebate\\nrebated\\nrebater\\nrebaters\\nrebates\\nrebating\\nrebato\\nrebatos\\nrebbe\\nrebbes\\nrebec\\nrebeck\\nrebecks\\nrebecs\\nrebel\\nrebeldom\\nrebeldoms\\nrebelled\\nrebelling\\nrebellion\\nrebellions\\nrebellious\\nrebelliously\\nrebelliousness\\nrebelliousnesses\\nrebels\\nrebid\\nrebidden\\nrebidding\\nrebids\\nrebill\\nrebilled\\nrebilling\\nrebills\\nrebind\\nrebinding\\nrebinds\\nrebirth\\nrebirths\\nrebloom\\nrebloomed\\nreblooming\\nreblooms\\nreboant\\nreboard\\nreboarded\\nreboarding\\nreboards\\nreboil\\nreboiled\\nreboiling\\nreboils\\nrebop\\nrebops\\nreborn\\nrebound\\nrebounded\\nrebounding\\nrebounds\\nrebozo\\nrebozos\\nrebranch\\nrebranched\\nrebranches\\nrebranching\\nrebroadcast\\nrebroadcasted\\nrebroadcasting\\nrebroadcasts\\nrebs\\nrebuff\\nrebuffed\\nrebuffing\\nrebuffs\\nrebuild\\nrebuilded\\nrebuilding\\nrebuilds\\nrebuilt\\nrebuke\\nrebuked\\nrebuker\\nrebukers\\nrebukes\\nrebuking\\nreburial\\nreburials\\nreburied\\nreburies\\nrebury\\nreburying\\nrebus\\nrebuses\\nrebut\\nrebuts\\nrebuttal\\nrebuttals\\nrebutted\\nrebutter\\nrebutters\\nrebutting\\nrebutton\\nrebuttoned\\nrebuttoning\\nrebuttons\\nrec\\nrecalcitrance\\nrecalcitrances\\nrecalcitrant\\nrecalculate\\nrecalculated\\nrecalculates\\nrecalculating\\nrecall\\nrecalled\\nrecaller\\nrecallers\\nrecalling\\nrecalls\\nrecane\\nrecaned\\nrecanes\\nrecaning\\nrecant\\nrecanted\\nrecanter\\nrecanters\\nrecanting\\nrecants\\nrecap\\nrecapitulate\\nrecapitulated\\nrecapitulates\\nrecapitulating\\nrecapitulation\\nrecapitulations\\nrecapped\\nrecapping\\nrecaps\\nrecapture\\nrecaptured\\nrecaptures\\nrecapturing\\nrecarried\\nrecarries\\nrecarry\\nrecarrying\\nrecast\\nrecasting\\nrecasts\\nrecede\\nreceded\\nrecedes\\nreceding\\nreceipt\\nreceipted\\nreceipting\\nreceipts\\nreceivable\\nreceivables\\nreceive\\nreceived\\nreceiver\\nreceivers\\nreceivership\\nreceiverships\\nreceives\\nreceiving\\nrecencies\\nrecency\\nrecent\\nrecenter\\nrecentest\\nrecently\\nrecentness\\nrecentnesses\\nrecept\\nreceptacle\\nreceptacles\\nreception\\nreceptionist\\nreceptionists\\nreceptions\\nreceptive\\nreceptively\\nreceptiveness\\nreceptivenesses\\nreceptivities\\nreceptivity\\nreceptor\\nreceptors\\nrecepts\\nrecertification\\nrecertifications\\nrecertified\\nrecertifies\\nrecertify\\nrecertifying\\nrecess\\nrecessed\\nrecesses\\nrecessing\\nrecession\\nrecessions\\nrechange\\nrechanged\\nrechanges\\nrechanging\\nrechannel\\nrechanneled\\nrechanneling\\nrechannels\\nrecharge\\nrecharged\\nrecharges\\nrecharging\\nrechart\\nrecharted\\nrecharting\\nrecharts\\nrecheat\\nrecheats\\nrecheck\\nrechecked\\nrechecking\\nrechecks\\nrechoose\\nrechooses\\nrechoosing\\nrechose\\nrechosen\\nrechristen\\nrechristened\\nrechristening\\nrechristens\\nrecipe\\nrecipes\\nrecipient\\nrecipients\\nreciprocal\\nreciprocally\\nreciprocals\\nreciprocate\\nreciprocated\\nreciprocates\\nreciprocating\\nreciprocation\\nreciprocations\\nreciprocities\\nreciprocity\\nrecircle\\nrecircled\\nrecircles\\nrecircling\\nrecirculate\\nrecirculated\\nrecirculates\\nrecirculating\\nrecirculation\\nrecirculations\\nrecision\\nrecisions\\nrecital\\nrecitals\\nrecitation\\nrecitations\\nrecite\\nrecited\\nreciter\\nreciters\\nrecites\\nreciting\\nreck\\nrecked\\nrecking\\nreckless\\nrecklessly\\nrecklessness\\nrecklessnesses\\nreckon\\nreckoned\\nreckoner\\nreckoners\\nreckoning\\nreckonings\\nreckons\\nrecks\\nreclad\\nreclaim\\nreclaimable\\nreclaimed\\nreclaiming\\nreclaims\\nreclamation\\nreclamations\\nreclame\\nreclames\\nreclasp\\nreclasped\\nreclasping\\nreclasps\\nreclassification\\nreclassifications\\nreclassified\\nreclassifies\\nreclassify\\nreclassifying\\nreclean\\nrecleaned\\nrecleaning\\nrecleans\\nrecline\\nreclined\\nrecliner\\nrecliners\\nreclines\\nreclining\\nreclothe\\nreclothed\\nreclothes\\nreclothing\\nrecluse\\nrecluses\\nrecoal\\nrecoaled\\nrecoaling\\nrecoals\\nrecock\\nrecocked\\nrecocking\\nrecocks\\nrecodified\\nrecodifies\\nrecodify\\nrecodifying\\nrecognition\\nrecognitions\\nrecognizable\\nrecognizably\\nrecognizance\\nrecognizances\\nrecognize\\nrecognized\\nrecognizes\\nrecognizing\\nrecoil\\nrecoiled\\nrecoiler\\nrecoilers\\nrecoiling\\nrecoils\\nrecoin\\nrecoined\\nrecoining\\nrecoins\\nrecollection\\nrecollections\\nrecolonize\\nrecolonized\\nrecolonizes\\nrecolonizing\\nrecolor\\nrecolored\\nrecoloring\\nrecolors\\nrecomb\\nrecombed\\nrecombine\\nrecombined\\nrecombines\\nrecombing\\nrecombining\\nrecombs\\nrecommend\\nrecommendable\\nrecommendation\\nrecommendations\\nrecommendatory\\nrecommended\\nrecommender\\nrecommenders\\nrecommending\\nrecommends\\nrecommit\\nrecommits\\nrecommitted\\nrecommitting\\nrecompense\\nrecompensed\\nrecompenses\\nrecompensing\\nrecompile\\nrecompiled\\nrecompiles\\nrecompiling\\nrecompute\\nrecomputed\\nrecomputes\\nrecomputing\\nrecon\\nreconceive\\nreconceived\\nreconceives\\nreconceiving\\nreconcilable\\nreconcile\\nreconciled\\nreconcilement\\nreconcilements\\nreconciler\\nreconcilers\\nreconciles\\nreconciliation\\nreconciliations\\nreconciling\\nrecondite\\nreconfigure\\nreconfigured\\nreconfigures\\nreconfiguring\\nreconnaissance\\nreconnaissances\\nreconnect\\nreconnected\\nreconnecting\\nreconnects\\nreconnoiter\\nreconnoitered\\nreconnoitering\\nreconnoiters\\nreconquer\\nreconquered\\nreconquering\\nreconquers\\nreconquest\\nreconquests\\nrecons\\nreconsider\\nreconsideration\\nreconsiderations\\nreconsidered\\nreconsidering\\nreconsiders\\nreconsolidate\\nreconsolidated\\nreconsolidates\\nreconsolidating\\nreconstruct\\nreconstructed\\nreconstructing\\nreconstructs\\nrecontaminate\\nrecontaminated\\nrecontaminates\\nrecontaminating\\nreconvene\\nreconvened\\nreconvenes\\nreconvening\\nreconvey\\nreconveyed\\nreconveying\\nreconveys\\nreconvict\\nreconvicted\\nreconvicting\\nreconvicts\\nrecook\\nrecooked\\nrecooking\\nrecooks\\nrecopied\\nrecopies\\nrecopy\\nrecopying\\nrecord\\nrecordable\\nrecorded\\nrecorder\\nrecorders\\nrecording\\nrecords\\nrecount\\nrecounted\\nrecounting\\nrecounts\\nrecoup\\nrecoupe\\nrecouped\\nrecouping\\nrecouple\\nrecoupled\\nrecouples\\nrecoupling\\nrecoups\\nrecourse\\nrecourses\\nrecover\\nrecoverable\\nrecovered\\nrecoveries\\nrecovering\\nrecovers\\nrecovery\\nrecrate\\nrecrated\\nrecrates\\nrecrating\\nrecreant\\nrecreants\\nrecreate\\nrecreated\\nrecreates\\nrecreating\\nrecreation\\nrecreational\\nrecreations\\nrecreative\\nrecriminate\\nrecriminated\\nrecriminates\\nrecriminating\\nrecrimination\\nrecriminations\\nrecriminatory\\nrecross\\nrecrossed\\nrecrosses\\nrecrossing\\nrecrown\\nrecrowned\\nrecrowning\\nrecrowns\\nrecruit\\nrecruited\\nrecruiting\\nrecruitment\\nrecruitments\\nrecruits\\nrecs\\nrecta\\nrectal\\nrectally\\nrectangle\\nrectangles\\nrecti\\nrectification\\nrectifications\\nrectified\\nrectifier\\nrectifiers\\nrectifies\\nrectify\\nrectifying\\nrectitude\\nrectitudes\\nrecto\\nrector\\nrectorate\\nrectorates\\nrectorial\\nrectories\\nrectors\\nrectory\\nrectos\\nrectrices\\nrectrix\\nrectum\\nrectums\\nrectus\\nrecumbent\\nrecuperate\\nrecuperated\\nrecuperates\\nrecuperating\\nrecuperation\\nrecuperations\\nrecuperative\\nrecur\\nrecurred\\nrecurrence\\nrecurrences\\nrecurrent\\nrecurring\\nrecurs\\nrecurve\\nrecurved\\nrecurves\\nrecurving\\nrecusant\\nrecusants\\nrecuse\\nrecused\\nrecuses\\nrecusing\\nrecut\\nrecuts\\nrecutting\\nrecycle\\nrecycled\\nrecycles\\nrecycling\\nred\\nredact\\nredacted\\nredacting\\nredactor\\nredactors\\nredacts\\nredan\\nredans\\nredargue\\nredargued\\nredargues\\nredarguing\\nredate\\nredated\\nredates\\nredating\\nredbait\\nredbaited\\nredbaiting\\nredbaits\\nredbay\\nredbays\\nredbird\\nredbirds\\nredbone\\nredbones\\nredbrick\\nredbud\\nredbuds\\nredbug\\nredbugs\\nredcap\\nredcaps\\nredcoat\\nredcoats\\nredd\\nredded\\nredden\\nreddened\\nreddening\\nreddens\\nredder\\nredders\\nreddest\\nredding\\nreddish\\nreddle\\nreddled\\nreddles\\nreddling\\nredds\\nrede\\nredear\\nredears\\nredecorate\\nredecorated\\nredecorates\\nredecorating\\nreded\\nrededicate\\nrededicated\\nrededicates\\nrededicating\\nrededication\\nrededications\\nredeem\\nredeemable\\nredeemed\\nredeemer\\nredeemers\\nredeeming\\nredeems\\nredefeat\\nredefeated\\nredefeating\\nredefeats\\nredefied\\nredefies\\nredefine\\nredefined\\nredefines\\nredefining\\nredefy\\nredefying\\nredemand\\nredemanded\\nredemanding\\nredemands\\nredemption\\nredemptions\\nredemptive\\nredemptory\\nredenied\\nredenies\\nredeny\\nredenying\\nredeploy\\nredeployed\\nredeploying\\nredeploys\\nredeposit\\nredeposited\\nredepositing\\nredeposits\\nredes\\nredesign\\nredesignate\\nredesignated\\nredesignates\\nredesignating\\nredesigned\\nredesigning\\nredesigns\\nredevelop\\nredeveloped\\nredeveloping\\nredevelops\\nredeye\\nredeyes\\nredfin\\nredfins\\nredfish\\nredfishes\\nredhead\\nredheaded\\nredheads\\nredhorse\\nredhorses\\nredia\\nrediae\\nredial\\nredias\\nredid\\nredigest\\nredigested\\nredigesting\\nredigests\\nreding\\nredip\\nredipped\\nredipping\\nredips\\nredipt\\nredirect\\nredirected\\nredirecting\\nredirects\\nrediscover\\nrediscovered\\nrediscoveries\\nrediscovering\\nrediscovers\\nrediscovery\\nredissolve\\nredissolved\\nredissolves\\nredissolving\\nredistribute\\nredistributed\\nredistributes\\nredistributing\\nredivide\\nredivided\\nredivides\\nredividing\\nredleg\\nredlegs\\nredly\\nredneck\\nrednecks\\nredness\\nrednesses\\nredo\\nredock\\nredocked\\nredocking\\nredocks\\nredoes\\nredoing\\nredolence\\nredolences\\nredolent\\nredolently\\nredone\\nredos\\nredouble\\nredoubled\\nredoubles\\nredoubling\\nredoubt\\nredoubtable\\nredoubts\\nredound\\nredounded\\nredounding\\nredounds\\nredout\\nredouts\\nredowa\\nredowas\\nredox\\nredoxes\\nredpoll\\nredpolls\\nredraft\\nredrafted\\nredrafting\\nredrafts\\nredraw\\nredrawer\\nredrawers\\nredrawing\\nredrawn\\nredraws\\nredress\\nredressed\\nredresses\\nredressing\\nredrew\\nredried\\nredries\\nredrill\\nredrilled\\nredrilling\\nredrills\\nredrive\\nredriven\\nredrives\\nredriving\\nredroot\\nredroots\\nredrove\\nredry\\nredrying\\nreds\\nredshank\\nredshanks\\nredshirt\\nredshirted\\nredshirting\\nredshirts\\nredskin\\nredskins\\nredstart\\nredstarts\\nredtop\\nredtops\\nreduce\\nreduced\\nreducer\\nreducers\\nreduces\\nreducible\\nreducing\\nreduction\\nreductions\\nredundancies\\nredundancy\\nredundant\\nredundantly\\nreduviid\\nreduviids\\nredware\\nredwares\\nredwing\\nredwings\\nredwood\\nredwoods\\nredye\\nredyed\\nredyeing\\nredyes\\nree\\nreearn\\nreearned\\nreearning\\nreearns\\nreecho\\nreechoed\\nreechoes\\nreechoing\\nreed\\nreedbird\\nreedbirds\\nreedbuck\\nreedbucks\\nreeded\\nreedier\\nreediest\\nreedified\\nreedifies\\nreedify\\nreedifying\\nreeding\\nreedings\\nreedit\\nreedited\\nreediting\\nreedits\\nreedling\\nreedlings\\nreeds\\nreedy\\nreef\\nreefed\\nreefer\\nreefers\\nreefier\\nreefiest\\nreefing\\nreefs\\nreefy\\nreeject\\nreejected\\nreejecting\\nreejects\\nreek\\nreeked\\nreeker\\nreekers\\nreekier\\nreekiest\\nreeking\\nreeks\\nreeky\\nreel\\nreelable\\nreelect\\nreelected\\nreelecting\\nreelects\\nreeled\\nreeler\\nreelers\\nreeling\\nreels\\nreembark\\nreembarked\\nreembarking\\nreembarks\\nreembodied\\nreembodies\\nreembody\\nreembodying\\nreemerge\\nreemerged\\nreemergence\\nreemergences\\nreemerges\\nreemerging\\nreemit\\nreemits\\nreemitted\\nreemitting\\nreemphasize\\nreemphasized\\nreemphasizes\\nreemphasizing\\nreemploy\\nreemployed\\nreemploying\\nreemploys\\nreenact\\nreenacted\\nreenacting\\nreenacts\\nreendow\\nreendowed\\nreendowing\\nreendows\\nreenergize\\nreenergized\\nreenergizes\\nreenergizing\\nreengage\\nreengaged\\nreengages\\nreengaging\\nreenjoy\\nreenjoyed\\nreenjoying\\nreenjoys\\nreenlist\\nreenlisted\\nreenlisting\\nreenlistness\\nreenlistnesses\\nreenlists\\nreenter\\nreentered\\nreentering\\nreenters\\nreentries\\nreentry\\nreequip\\nreequipped\\nreequipping\\nreequips\\nreerect\\nreerected\\nreerecting\\nreerects\\nrees\\nreest\\nreestablish\\nreestablished\\nreestablishes\\nreestablishing\\nreestablishment\\nreestablishments\\nreested\\nreestimate\\nreestimated\\nreestimates\\nreestimating\\nreesting\\nreests\\nreevaluate\\nreevaluated\\nreevaluates\\nreevaluating\\nreevaluation\\nreevaluations\\nreeve\\nreeved\\nreeves\\nreeving\\nreevoke\\nreevoked\\nreevokes\\nreevoking\\nreexamination\\nreexaminations\\nreexamine\\nreexamined\\nreexamines\\nreexamining\\nreexpel\\nreexpelled\\nreexpelling\\nreexpels\\nreexport\\nreexported\\nreexporting\\nreexports\\nref\\nreface\\nrefaced\\nrefaces\\nrefacing\\nrefall\\nrefallen\\nrefalling\\nrefalls\\nrefasten\\nrefastened\\nrefastening\\nrefastens\\nrefect\\nrefected\\nrefecting\\nrefects\\nrefed\\nrefeed\\nrefeeding\\nrefeeds\\nrefel\\nrefell\\nrefelled\\nrefelling\\nrefels\\nrefer\\nreferable\\nreferee\\nrefereed\\nrefereeing\\nreferees\\nreference\\nreferences\\nreferenda\\nreferendum\\nreferendums\\nreferent\\nreferents\\nreferral\\nreferrals\\nreferred\\nreferrer\\nreferrers\\nreferring\\nrefers\\nreffed\\nreffing\\nrefight\\nrefighting\\nrefights\\nrefigure\\nrefigured\\nrefigures\\nrefiguring\\nrefile\\nrefiled\\nrefiles\\nrefiling\\nrefill\\nrefillable\\nrefilled\\nrefilling\\nrefills\\nrefilm\\nrefilmed\\nrefilming\\nrefilms\\nrefilter\\nrefiltered\\nrefiltering\\nrefilters\\nrefinance\\nrefinanced\\nrefinances\\nrefinancing\\nrefind\\nrefinding\\nrefinds\\nrefine\\nrefined\\nrefinement\\nrefinements\\nrefiner\\nrefineries\\nrefiners\\nrefinery\\nrefines\\nrefining\\nrefinish\\nrefinished\\nrefinishes\\nrefinishing\\nrefire\\nrefired\\nrefires\\nrefiring\\nrefit\\nrefits\\nrefitted\\nrefitting\\nrefix\\nrefixed\\nrefixes\\nrefixing\\nreflate\\nreflated\\nreflates\\nreflating\\nreflect\\nreflected\\nreflecting\\nreflection\\nreflections\\nreflective\\nreflector\\nreflectors\\nreflects\\nreflet\\nreflets\\nreflew\\nreflex\\nreflexed\\nreflexes\\nreflexing\\nreflexive\\nreflexively\\nreflexiveness\\nreflexivenesses\\nreflexly\\nreflies\\nrefloat\\nrefloated\\nrefloating\\nrefloats\\nreflood\\nreflooded\\nreflooding\\nrefloods\\nreflow\\nreflowed\\nreflower\\nreflowered\\nreflowering\\nreflowers\\nreflowing\\nreflown\\nreflows\\nrefluent\\nreflux\\nrefluxed\\nrefluxes\\nrefluxing\\nrefly\\nreflying\\nrefocus\\nrefocused\\nrefocuses\\nrefocusing\\nrefocussed\\nrefocusses\\nrefocussing\\nrefold\\nrefolded\\nrefolding\\nrefolds\\nreforest\\nreforested\\nreforesting\\nreforests\\nreforge\\nreforged\\nreforges\\nreforging\\nreform\\nreformat\\nreformatories\\nreformatory\\nreformats\\nreformatted\\nreformatting\\nreformed\\nreformer\\nreformers\\nreforming\\nreforms\\nreformulate\\nreformulated\\nreformulates\\nreformulating\\nrefought\\nrefound\\nrefounded\\nrefounding\\nrefounds\\nrefract\\nrefracted\\nrefracting\\nrefraction\\nrefractions\\nrefractive\\nrefractory\\nrefracts\\nrefrain\\nrefrained\\nrefraining\\nrefrainment\\nrefrainments\\nrefrains\\nreframe\\nreframed\\nreframes\\nreframing\\nrefreeze\\nrefreezes\\nrefreezing\\nrefresh\\nrefreshed\\nrefresher\\nrefreshers\\nrefreshes\\nrefreshing\\nrefreshingly\\nrefreshment\\nrefreshments\\nrefried\\nrefries\\nrefrigerant\\nrefrigerants\\nrefrigerate\\nrefrigerated\\nrefrigerates\\nrefrigerating\\nrefrigeration\\nrefrigerations\\nrefrigerator\\nrefrigerators\\nrefront\\nrefronted\\nrefronting\\nrefronts\\nrefroze\\nrefrozen\\nrefry\\nrefrying\\nrefs\\nreft\\nrefuel\\nrefueled\\nrefueling\\nrefuelled\\nrefuelling\\nrefuels\\nrefuge\\nrefuged\\nrefugee\\nrefugees\\nrefuges\\nrefugia\\nrefuging\\nrefugium\\nrefund\\nrefundable\\nrefunded\\nrefunder\\nrefunders\\nrefunding\\nrefunds\\nrefurbish\\nrefurbished\\nrefurbishes\\nrefurbishing\\nrefusal\\nrefusals\\nrefuse\\nrefused\\nrefuser\\nrefusers\\nrefuses\\nrefusing\\nrefutal\\nrefutals\\nrefutation\\nrefutations\\nrefute\\nrefuted\\nrefuter\\nrefuters\\nrefutes\\nrefuting\\nregain\\nregained\\nregainer\\nregainers\\nregaining\\nregains\\nregal\\nregale\\nregaled\\nregalement\\nregalements\\nregales\\nregalia\\nregaling\\nregalities\\nregality\\nregally\\nregard\\nregarded\\nregardful\\nregarding\\nregardless\\nregards\\nregather\\nregathered\\nregathering\\nregathers\\nregatta\\nregattas\\nregauge\\nregauged\\nregauges\\nregauging\\nregave\\nregear\\nregeared\\nregearing\\nregears\\nregelate\\nregelated\\nregelates\\nregelating\\nregencies\\nregency\\nregenerate\\nregenerated\\nregenerates\\nregenerating\\nregeneration\\nregenerations\\nregenerative\\nregenerator\\nregenerators\\nregent\\nregental\\nregents\\nreges\\nregicide\\nregicides\\nregild\\nregilded\\nregilding\\nregilds\\nregilt\\nregime\\nregimen\\nregimens\\nregiment\\nregimental\\nregimentation\\nregimentations\\nregimented\\nregimenting\\nregiments\\nregimes\\nregina\\nreginae\\nreginal\\nreginas\\nregion\\nregional\\nregionally\\nregionals\\nregions\\nregister\\nregistered\\nregistering\\nregisters\\nregistrar\\nregistrars\\nregistration\\nregistrations\\nregistries\\nregistry\\nregius\\nregive\\nregiven\\nregives\\nregiving\\nreglaze\\nreglazed\\nreglazes\\nreglazing\\nreglet\\nreglets\\nregloss\\nreglossed\\nreglosses\\nreglossing\\nreglow\\nreglowed\\nreglowing\\nreglows\\nreglue\\nreglued\\nreglues\\nregluing\\nregma\\nregmata\\nregna\\nregnal\\nregnancies\\nregnancy\\nregnant\\nregnum\\nregolith\\nregoliths\\nregorge\\nregorged\\nregorges\\nregorging\\nregosol\\nregosols\\nregrade\\nregraded\\nregrades\\nregrading\\nregraft\\nregrafted\\nregrafting\\nregrafts\\nregrant\\nregranted\\nregranting\\nregrants\\nregrate\\nregrated\\nregrates\\nregrating\\nregreet\\nregreeted\\nregreeting\\nregreets\\nregress\\nregressed\\nregresses\\nregressing\\nregression\\nregressions\\nregressive\\nregressor\\nregressors\\nregret\\nregretfully\\nregrets\\nregrettable\\nregrettably\\nregretted\\nregretter\\nregretters\\nregretting\\nregrew\\nregrind\\nregrinding\\nregrinds\\nregroove\\nregrooved\\nregrooves\\nregrooving\\nreground\\nregroup\\nregrouped\\nregrouping\\nregroups\\nregrow\\nregrowing\\nregrown\\nregrows\\nregrowth\\nregrowths\\nregular\\nregularities\\nregularity\\nregularize\\nregularized\\nregularizes\\nregularizing\\nregularly\\nregulars\\nregulate\\nregulated\\nregulates\\nregulating\\nregulation\\nregulations\\nregulative\\nregulator\\nregulators\\nregulatory\\nreguli\\nreguline\\nregulus\\nreguluses\\nregurgitate\\nregurgitated\\nregurgitates\\nregurgitating\\nregurgitation\\nregurgitations\\nrehabilitate\\nrehabilitated\\nrehabilitates\\nrehabilitating\\nrehabilitation\\nrehabilitations\\nrehabilitative\\nrehammer\\nrehammered\\nrehammering\\nrehammers\\nrehandle\\nrehandled\\nrehandles\\nrehandling\\nrehang\\nrehanged\\nrehanging\\nrehangs\\nreharden\\nrehardened\\nrehardening\\nrehardens\\nrehash\\nrehashed\\nrehashes\\nrehashing\\nrehear\\nreheard\\nrehearing\\nrehears\\nrehearsal\\nrehearsals\\nrehearse\\nrehearsed\\nrehearser\\nrehearsers\\nrehearses\\nrehearsing\\nreheat\\nreheated\\nreheater\\nreheaters\\nreheating\\nreheats\\nreheel\\nreheeled\\nreheeling\\nreheels\\nrehem\\nrehemmed\\nrehemming\\nrehems\\nrehinge\\nrehinged\\nrehinges\\nrehinging\\nrehire\\nrehired\\nrehires\\nrehiring\\nrehospitalization\\nrehospitalizations\\nrehospitalize\\nrehospitalized\\nrehospitalizes\\nrehospitalizing\\nrehouse\\nrehoused\\nrehouses\\nrehousing\\nrehung\\nrei\\nreidentified\\nreidentifies\\nreidentify\\nreidentifying\\nreif\\nreified\\nreifier\\nreifiers\\nreifies\\nreifs\\nreify\\nreifying\\nreign\\nreigned\\nreigning\\nreignite\\nreignited\\nreignites\\nreigniting\\nreigns\\nreimage\\nreimaged\\nreimages\\nreimaging\\nreimbursable\\nreimburse\\nreimbursed\\nreimbursement\\nreimbursements\\nreimburses\\nreimbursing\\nreimplant\\nreimplanted\\nreimplanting\\nreimplants\\nreimport\\nreimported\\nreimporting\\nreimports\\nreimpose\\nreimposed\\nreimposes\\nreimposing\\nrein\\nreincarnate\\nreincarnated\\nreincarnates\\nreincarnating\\nreincarnation\\nreincarnations\\nreincite\\nreincited\\nreincites\\nreinciting\\nreincorporate\\nreincorporated\\nreincorporates\\nreincorporating\\nreincur\\nreincurred\\nreincurring\\nreincurs\\nreindeer\\nreindeers\\nreindex\\nreindexed\\nreindexes\\nreindexing\\nreinduce\\nreinduced\\nreinduces\\nreinducing\\nreinduct\\nreinducted\\nreinducting\\nreinducts\\nreined\\nreinfect\\nreinfected\\nreinfecting\\nreinfection\\nreinfections\\nreinfects\\nreinforcement\\nreinforcements\\nreinforcer\\nreinforcers\\nreinform\\nreinformed\\nreinforming\\nreinforms\\nreinfuse\\nreinfused\\nreinfuses\\nreinfusing\\nreining\\nreinjection\\nreinjections\\nreinjure\\nreinjured\\nreinjures\\nreinjuring\\nreinless\\nreinoculate\\nreinoculated\\nreinoculates\\nreinoculating\\nreins\\nreinsert\\nreinserted\\nreinserting\\nreinsertion\\nreinsertions\\nreinserts\\nreinsman\\nreinsmen\\nreinspect\\nreinspected\\nreinspecting\\nreinspects\\nreinstall\\nreinstalled\\nreinstalling\\nreinstalls\\nreinstate\\nreinstated\\nreinstates\\nreinstating\\nreinstitute\\nreinstituted\\nreinstitutes\\nreinstituting\\nreinsure\\nreinsured\\nreinsures\\nreinsuring\\nreintegrate\\nreintegrated\\nreintegrates\\nreintegrating\\nreintegration\\nreintegrations\\nreinter\\nreinterred\\nreinterring\\nreinters\\nreintroduce\\nreintroduced\\nreintroduces\\nreintroducing\\nreinvent\\nreinvented\\nreinventing\\nreinvents\\nreinvest\\nreinvested\\nreinvestigate\\nreinvestigated\\nreinvestigates\\nreinvestigating\\nreinvestigation\\nreinvestigations\\nreinvesting\\nreinvests\\nreinvigorate\\nreinvigorated\\nreinvigorates\\nreinvigorating\\nreinvite\\nreinvited\\nreinvites\\nreinviting\\nreinvoke\\nreinvoked\\nreinvokes\\nreinvoking\\nreis\\nreissue\\nreissued\\nreissuer\\nreissuers\\nreissues\\nreissuing\\nreitbok\\nreitboks\\nreiterate\\nreiterated\\nreiterates\\nreiterating\\nreiteration\\nreiterations\\nreive\\nreived\\nreiver\\nreivers\\nreives\\nreiving\\nreject\\nrejected\\nrejectee\\nrejectees\\nrejecter\\nrejecters\\nrejecting\\nrejection\\nrejections\\nrejector\\nrejectors\\nrejects\\nrejigger\\nrejiggered\\nrejiggering\\nrejiggers\\nrejoice\\nrejoiced\\nrejoicer\\nrejoicers\\nrejoices\\nrejoicing\\nrejoicings\\nrejoin\\nrejoinder\\nrejoinders\\nrejoined\\nrejoining\\nrejoins\\nrejudge\\nrejudged\\nrejudges\\nrejudging\\nrejuvenate\\nrejuvenated\\nrejuvenates\\nrejuvenating\\nrejuvenation\\nrejuvenations\\nrekey\\nrekeyed\\nrekeying\\nrekeys\\nrekindle\\nrekindled\\nrekindles\\nrekindling\\nreknit\\nreknits\\nreknitted\\nreknitting\\nrelabel\\nrelabeled\\nrelabeling\\nrelabelled\\nrelabelling\\nrelabels\\nrelace\\nrelaced\\nrelaces\\nrelacing\\nrelaid\\nrelandscape\\nrelandscaped\\nrelandscapes\\nrelandscaping\\nrelapse\\nrelapsed\\nrelapser\\nrelapsers\\nrelapses\\nrelapsing\\nrelatable\\nrelate\\nrelated\\nrelater\\nrelaters\\nrelates\\nrelating\\nrelation\\nrelations\\nrelationship\\nrelationships\\nrelative\\nrelatively\\nrelativeness\\nrelativenesses\\nrelatives\\nrelator\\nrelators\\nrelaunch\\nrelaunched\\nrelaunches\\nrelaunching\\nrelax\\nrelaxant\\nrelaxants\\nrelaxation\\nrelaxations\\nrelaxed\\nrelaxer\\nrelaxers\\nrelaxes\\nrelaxin\\nrelaxing\\nrelaxins\\nrelay\\nrelayed\\nrelaying\\nrelays\\nrelearn\\nrelearned\\nrelearning\\nrelearns\\nrelearnt\\nrelease\\nreleased\\nreleaser\\nreleasers\\nreleases\\nreleasing\\nrelegate\\nrelegated\\nrelegates\\nrelegating\\nrelegation\\nrelegations\\nrelend\\nrelending\\nrelends\\nrelent\\nrelented\\nrelenting\\nrelentless\\nrelentlessly\\nrelentlessness\\nrelentlessnesses\\nrelents\\nrelet\\nrelets\\nreletter\\nrelettered\\nrelettering\\nreletters\\nreletting\\nrelevance\\nrelevances\\nrelevant\\nrelevantly\\nreliabilities\\nreliability\\nreliable\\nreliableness\\nreliablenesses\\nreliably\\nreliance\\nreliances\\nreliant\\nrelic\\nrelics\\nrelict\\nrelicts\\nrelied\\nrelief\\nreliefs\\nrelier\\nreliers\\nrelies\\nrelieve\\nrelieved\\nreliever\\nrelievers\\nrelieves\\nrelieving\\nrelievo\\nrelievos\\nrelight\\nrelighted\\nrelighting\\nrelights\\nreligion\\nreligionist\\nreligionists\\nreligions\\nreligious\\nreligiously\\nreline\\nrelined\\nrelines\\nrelining\\nrelinquish\\nrelinquished\\nrelinquishes\\nrelinquishing\\nrelinquishment\\nrelinquishments\\nrelique\\nreliques\\nrelish\\nrelishable\\nrelished\\nrelishes\\nrelishing\\nrelist\\nrelisted\\nrelisting\\nrelists\\nrelit\\nrelive\\nrelived\\nrelives\\nreliving\\nreload\\nreloaded\\nreloader\\nreloaders\\nreloading\\nreloads\\nreloan\\nreloaned\\nreloaning\\nreloans\\nrelocate\\nrelocated\\nrelocates\\nrelocating\\nrelocation\\nrelocations\\nrelucent\\nreluct\\nreluctance\\nreluctant\\nreluctantly\\nrelucted\\nrelucting\\nrelucts\\nrelume\\nrelumed\\nrelumes\\nrelumine\\nrelumined\\nrelumines\\nreluming\\nrelumining\\nrely\\nrelying\\nrem\\nremade\\nremail\\nremailed\\nremailing\\nremails\\nremain\\nremainder\\nremainders\\nremained\\nremaining\\nremains\\nremake\\nremakes\\nremaking\\nreman\\nremand\\nremanded\\nremanding\\nremands\\nremanent\\nremanned\\nremanning\\nremans\\nremap\\nremapped\\nremapping\\nremaps\\nremark\\nremarkable\\nremarkableness\\nremarkablenesses\\nremarkably\\nremarked\\nremarker\\nremarkers\\nremarking\\nremarks\\nremarque\\nremarques\\nremarriage\\nremarriages\\nremarried\\nremarries\\nremarry\\nremarrying\\nrematch\\nrematched\\nrematches\\nrematching\\nremeasure\\nremeasured\\nremeasures\\nremeasuring\\nremedial\\nremedially\\nremedied\\nremedies\\nremedy\\nremedying\\nremeet\\nremeeting\\nremeets\\nremelt\\nremelted\\nremelting\\nremelts\\nremember\\nremembered\\nremembering\\nremembers\\nremend\\nremended\\nremending\\nremends\\nremerge\\nremerged\\nremerges\\nremerging\\nremet\\nremex\\nremiges\\nremigial\\nremind\\nreminded\\nreminder\\nreminders\\nreminding\\nreminds\\nreminisce\\nreminisced\\nreminiscence\\nreminiscences\\nreminiscent\\nreminiscently\\nreminisces\\nreminiscing\\nremint\\nreminted\\nreminting\\nremints\\nremise\\nremised\\nremises\\nremising\\nremiss\\nremission\\nremissions\\nremissly\\nremissness\\nremissnesses\\nremit\\nremits\\nremittal\\nremittals\\nremittance\\nremittances\\nremitted\\nremitter\\nremitters\\nremitting\\nremittor\\nremittors\\nremix\\nremixed\\nremixes\\nremixing\\nremixt\\nremnant\\nremnants\\nremobilize\\nremobilized\\nremobilizes\\nremobilizing\\nremodel\\nremodeled\\nremodeling\\nremodelled\\nremodelling\\nremodels\\nremodified\\nremodifies\\nremodify\\nremodifying\\nremoisten\\nremoistened\\nremoistening\\nremoistens\\nremolade\\nremolades\\nremold\\nremolded\\nremolding\\nremolds\\nremonstrance\\nremonstrances\\nremonstrate\\nremonstrated\\nremonstrates\\nremonstrating\\nremonstration\\nremonstrations\\nremora\\nremoras\\nremorid\\nremorse\\nremorseful\\nremorseless\\nremorses\\nremote\\nremotely\\nremoteness\\nremotenesses\\nremoter\\nremotest\\nremotion\\nremotions\\nremotivate\\nremotivated\\nremotivates\\nremotivating\\nremount\\nremounted\\nremounting\\nremounts\\nremovable\\nremoval\\nremovals\\nremove\\nremoved\\nremover\\nremovers\\nremoves\\nremoving\\nrems\\nremuda\\nremudas\\nremunerate\\nremunerated\\nremunerates\\nremunerating\\nremuneration\\nremunerations\\nremunerative\\nremuneratively\\nremunerativeness\\nremunerativenesses\\nremunerator\\nremunerators\\nremuneratory\\nrenaissance\\nrenaissances\\nrenal\\nrename\\nrenamed\\nrenames\\nrenaming\\nrenature\\nrenatured\\nrenatures\\nrenaturing\\nrend\\nrended\\nrender\\nrendered\\nrenderer\\nrenderers\\nrendering\\nrenders\\nrendezvous\\nrendezvoused\\nrendezvousing\\nrendible\\nrending\\nrendition\\nrenditions\\nrends\\nrendzina\\nrendzinas\\nrenegade\\nrenegaded\\nrenegades\\nrenegading\\nrenegado\\nrenegadoes\\nrenegados\\nrenege\\nreneged\\nreneger\\nrenegers\\nreneges\\nreneging\\nrenegotiate\\nrenegotiated\\nrenegotiates\\nrenegotiating\\nrenew\\nrenewable\\nrenewal\\nrenewals\\nrenewed\\nrenewer\\nrenewers\\nrenewing\\nrenews\\nreniform\\nrenig\\nrenigged\\nrenigging\\nrenigs\\nrenin\\nrenins\\nrenitent\\nrennase\\nrennases\\nrennet\\nrennets\\nrennin\\nrennins\\nrenogram\\nrenograms\\nrenotified\\nrenotifies\\nrenotify\\nrenotifying\\nrenounce\\nrenounced\\nrenouncement\\nrenouncements\\nrenounces\\nrenouncing\\nrenovate\\nrenovated\\nrenovates\\nrenovating\\nrenovation\\nrenovations\\nrenovator\\nrenovators\\nrenown\\nrenowned\\nrenowning\\nrenowns\\nrent\\nrentable\\nrental\\nrentals\\nrente\\nrented\\nrenter\\nrenters\\nrentes\\nrentier\\nrentiers\\nrenting\\nrents\\nrenumber\\nrenumbered\\nrenumbering\\nrenumbers\\nrenunciation\\nrenunciations\\nrenvoi\\nrenvois\\nreobject\\nreobjected\\nreobjecting\\nreobjects\\nreobtain\\nreobtained\\nreobtaining\\nreobtains\\nreoccupied\\nreoccupies\\nreoccupy\\nreoccupying\\nreoccur\\nreoccurred\\nreoccurrence\\nreoccurrences\\nreoccurring\\nreoccurs\\nreoffer\\nreoffered\\nreoffering\\nreoffers\\nreoil\\nreoiled\\nreoiling\\nreoils\\nreopen\\nreopened\\nreopening\\nreopens\\nreoperate\\nreoperated\\nreoperates\\nreoperating\\nreoppose\\nreopposed\\nreopposes\\nreopposing\\nreorchestrate\\nreorchestrated\\nreorchestrates\\nreorchestrating\\nreordain\\nreordained\\nreordaining\\nreordains\\nreorder\\nreordered\\nreordering\\nreorders\\nreorganization\\nreorganizations\\nreorganize\\nreorganized\\nreorganizes\\nreorganizing\\nreorient\\nreoriented\\nreorienting\\nreorients\\nreovirus\\nreoviruses\\nrep\\nrepacified\\nrepacifies\\nrepacify\\nrepacifying\\nrepack\\nrepacked\\nrepacking\\nrepacks\\nrepaid\\nrepaint\\nrepainted\\nrepainting\\nrepaints\\nrepair\\nrepaired\\nrepairer\\nrepairers\\nrepairing\\nrepairman\\nrepairmen\\nrepairs\\nrepand\\nrepandly\\nrepaper\\nrepapered\\nrepapering\\nrepapers\\nreparation\\nreparations\\nrepartee\\nrepartees\\nrepass\\nrepassed\\nrepasses\\nrepassing\\nrepast\\nrepasted\\nrepasting\\nrepasts\\nrepatriate\\nrepatriated\\nrepatriates\\nrepatriating\\nrepatriation\\nrepatriations\\nrepave\\nrepaved\\nrepaves\\nrepaving\\nrepay\\nrepayable\\nrepaying\\nrepayment\\nrepayments\\nrepays\\nrepeal\\nrepealed\\nrepealer\\nrepealers\\nrepealing\\nrepeals\\nrepeat\\nrepeatable\\nrepeated\\nrepeatedly\\nrepeater\\nrepeaters\\nrepeating\\nrepeats\\nrepel\\nrepelled\\nrepellent\\nrepellents\\nrepeller\\nrepellers\\nrepelling\\nrepels\\nrepent\\nrepentance\\nrepentances\\nrepentant\\nrepented\\nrepenter\\nrepenters\\nrepenting\\nrepents\\nrepeople\\nrepeopled\\nrepeoples\\nrepeopling\\nrepercussion\\nrepercussions\\nreperk\\nreperked\\nreperking\\nreperks\\nrepertoire\\nrepertoires\\nrepertories\\nrepertory\\nrepetend\\nrepetends\\nrepetition\\nrepetitions\\nrepetitious\\nrepetitiously\\nrepetitiousness\\nrepetitiousnesses\\nrepetitive\\nrepetitively\\nrepetitiveness\\nrepetitivenesses\\nrephotograph\\nrephotographed\\nrephotographing\\nrephotographs\\nrephrase\\nrephrased\\nrephrases\\nrephrasing\\nrepin\\nrepine\\nrepined\\nrepiner\\nrepiners\\nrepines\\nrepining\\nrepinned\\nrepinning\\nrepins\\nreplace\\nreplaceable\\nreplaced\\nreplacement\\nreplacements\\nreplacer\\nreplacers\\nreplaces\\nreplacing\\nreplan\\nreplanned\\nreplanning\\nreplans\\nreplant\\nreplanted\\nreplanting\\nreplants\\nreplate\\nreplated\\nreplates\\nreplating\\nreplay\\nreplayed\\nreplaying\\nreplays\\nrepledge\\nrepledged\\nrepledges\\nrepledging\\nreplenish\\nreplenished\\nreplenishes\\nreplenishing\\nreplenishment\\nreplenishments\\nreplete\\nrepleteness\\nrepletenesses\\nrepletion\\nrepletions\\nreplevied\\nreplevies\\nreplevin\\nreplevined\\nreplevining\\nreplevins\\nreplevy\\nreplevying\\nreplica\\nreplicas\\nreplicate\\nreplicated\\nreplicates\\nreplicating\\nreplied\\nreplier\\nrepliers\\nreplies\\nreplunge\\nreplunged\\nreplunges\\nreplunging\\nreply\\nreplying\\nrepolish\\nrepolished\\nrepolishes\\nrepolishing\\nrepopulate\\nrepopulated\\nrepopulates\\nrepopulating\\nreport\\nreportage\\nreportages\\nreported\\nreportedly\\nreporter\\nreporters\\nreporting\\nreportorial\\nreports\\nreposal\\nreposals\\nrepose\\nreposed\\nreposeful\\nreposer\\nreposers\\nreposes\\nreposing\\nreposit\\nreposited\\nrepositing\\nrepository\\nreposits\\nrepossess\\nrepossession\\nrepossessions\\nrepour\\nrepoured\\nrepouring\\nrepours\\nrepousse\\nrepousses\\nrepower\\nrepowered\\nrepowering\\nrepowers\\nrepp\\nrepped\\nrepps\\nreprehend\\nreprehends\\nreprehensible\\nreprehensibly\\nreprehension\\nreprehensions\\nrepresent\\nrepresentation\\nrepresentations\\nrepresentative\\nrepresentatively\\nrepresentativeness\\nrepresentativenesses\\nrepresentatives\\nrepresented\\nrepresenting\\nrepresents\\nrepress\\nrepressed\\nrepresses\\nrepressing\\nrepression\\nrepressions\\nrepressive\\nrepressurize\\nrepressurized\\nrepressurizes\\nrepressurizing\\nreprice\\nrepriced\\nreprices\\nrepricing\\nreprieve\\nreprieved\\nreprieves\\nreprieving\\nreprimand\\nreprimanded\\nreprimanding\\nreprimands\\nreprint\\nreprinted\\nreprinting\\nreprints\\nreprisal\\nreprisals\\nreprise\\nreprised\\nreprises\\nreprising\\nrepro\\nreproach\\nreproached\\nreproaches\\nreproachful\\nreproachfully\\nreproachfulness\\nreproachfulnesses\\nreproaching\\nreprobate\\nreprobates\\nreprobation\\nreprobations\\nreprobe\\nreprobed\\nreprobes\\nreprobing\\nreprocess\\nreprocessed\\nreprocesses\\nreprocessing\\nreproduce\\nreproduced\\nreproduces\\nreproducible\\nreproducing\\nreproduction\\nreproductions\\nreproductive\\nreprogram\\nreprogramed\\nreprograming\\nreprograms\\nreproof\\nreproofs\\nrepropose\\nreproposed\\nreproposes\\nreproposing\\nrepros\\nreproval\\nreprovals\\nreprove\\nreproved\\nreprover\\nreprovers\\nreproves\\nreproving\\nreps\\nreptant\\nreptile\\nreptiles\\nrepublic\\nrepublican\\nrepublicanism\\nrepublicanisms\\nrepublicans\\nrepublics\\nrepudiate\\nrepudiated\\nrepudiates\\nrepudiating\\nrepudiation\\nrepudiations\\nrepudiator\\nrepudiators\\nrepugn\\nrepugnance\\nrepugnances\\nrepugnant\\nrepugnantly\\nrepugned\\nrepugning\\nrepugns\\nrepulse\\nrepulsed\\nrepulser\\nrepulsers\\nrepulses\\nrepulsing\\nrepulsion\\nrepulsions\\nrepulsive\\nrepulsively\\nrepulsiveness\\nrepulsivenesses\\nrepurified\\nrepurifies\\nrepurify\\nrepurifying\\nrepursue\\nrepursued\\nrepursues\\nrepursuing\\nreputable\\nreputabley\\nreputation\\nreputations\\nrepute\\nreputed\\nreputedly\\nreputes\\nreputing\\nrequest\\nrequested\\nrequesting\\nrequests\\nrequiem\\nrequiems\\nrequin\\nrequins\\nrequire\\nrequired\\nrequirement\\nrequirements\\nrequirer\\nrequirers\\nrequires\\nrequiring\\nrequisite\\nrequisites\\nrequisition\\nrequisitioned\\nrequisitioning\\nrequisitions\\nrequital\\nrequitals\\nrequite\\nrequited\\nrequiter\\nrequiters\\nrequites\\nrequiting\\nreran\\nreread\\nrereading\\nrereads\\nrerecord\\nrerecorded\\nrerecording\\nrerecords\\nreredos\\nreredoses\\nreregister\\nreregistered\\nreregistering\\nreregisters\\nreremice\\nreremouse\\nrereward\\nrerewards\\nrerise\\nrerisen\\nrerises\\nrerising\\nreroll\\nrerolled\\nreroller\\nrerollers\\nrerolling\\nrerolls\\nrerose\\nreroute\\nrerouted\\nreroutes\\nrerouting\\nrerun\\nrerunning\\nreruns\\nres\\nresaddle\\nresaddled\\nresaddles\\nresaddling\\nresaid\\nresail\\nresailed\\nresailing\\nresails\\nresalable\\nresale\\nresales\\nresalute\\nresaluted\\nresalutes\\nresaluting\\nresample\\nresampled\\nresamples\\nresampling\\nresaw\\nresawed\\nresawing\\nresawn\\nresaws\\nresay\\nresaying\\nresays\\nrescale\\nrescaled\\nrescales\\nrescaling\\nreschedule\\nrescheduled\\nreschedules\\nrescheduling\\nrescind\\nrescinded\\nrescinder\\nrescinders\\nrescinding\\nrescinds\\nrescission\\nrescissions\\nrescore\\nrescored\\nrescores\\nrescoring\\nrescreen\\nrescreened\\nrescreening\\nrescreens\\nrescript\\nrescripts\\nrescue\\nrescued\\nrescuer\\nrescuers\\nrescues\\nrescuing\\nreseal\\nresealed\\nresealing\\nreseals\\nresearch\\nresearched\\nresearcher\\nresearchers\\nresearches\\nresearching\\nreseat\\nreseated\\nreseating\\nreseats\\nreseau\\nreseaus\\nreseaux\\nresect\\nresected\\nresecting\\nresects\\nreseda\\nresedas\\nresee\\nreseed\\nreseeded\\nreseeding\\nreseeds\\nreseeing\\nreseek\\nreseeking\\nreseeks\\nreseen\\nresees\\nresegregate\\nresegregated\\nresegregates\\nresegregating\\nreseize\\nreseized\\nreseizes\\nreseizing\\nresell\\nreseller\\nresellers\\nreselling\\nresells\\nresemblance\\nresemblances\\nresemble\\nresembled\\nresembles\\nresembling\\nresend\\nresending\\nresends\\nresent\\nresented\\nresentence\\nresentenced\\nresentences\\nresentencing\\nresentful\\nresentfully\\nresenting\\nresentment\\nresentments\\nresents\\nreservation\\nreservations\\nreserve\\nreserved\\nreserver\\nreservers\\nreserves\\nreserving\\nreset\\nresets\\nresetter\\nresetters\\nresetting\\nresettle\\nresettled\\nresettles\\nresettling\\nresew\\nresewed\\nresewing\\nresewn\\nresews\\nresh\\nreshape\\nreshaped\\nreshaper\\nreshapers\\nreshapes\\nreshaping\\nreshes\\nreship\\nreshipped\\nreshipping\\nreships\\nreshod\\nreshoe\\nreshoeing\\nreshoes\\nreshoot\\nreshooting\\nreshoots\\nreshot\\nreshow\\nreshowed\\nreshowing\\nreshown\\nreshows\\nresid\\nreside\\nresided\\nresidence\\nresidences\\nresident\\nresidential\\nresidents\\nresider\\nresiders\\nresides\\nresiding\\nresids\\nresidua\\nresidual\\nresiduals\\nresidue\\nresidues\\nresiduum\\nresiduums\\nresift\\nresifted\\nresifting\\nresifts\\nresign\\nresignation\\nresignations\\nresigned\\nresignedly\\nresigner\\nresigners\\nresigning\\nresigns\\nresile\\nresiled\\nresiles\\nresilience\\nresiliences\\nresiliencies\\nresiliency\\nresilient\\nresiling\\nresilver\\nresilvered\\nresilvering\\nresilvers\\nresin\\nresinate\\nresinated\\nresinates\\nresinating\\nresined\\nresinified\\nresinifies\\nresinify\\nresinifying\\nresining\\nresinoid\\nresinoids\\nresinous\\nresins\\nresiny\\nresist\\nresistable\\nresistance\\nresistances\\nresistant\\nresisted\\nresister\\nresisters\\nresistible\\nresisting\\nresistless\\nresistor\\nresistors\\nresists\\nresize\\nresized\\nresizes\\nresizing\\nresmelt\\nresmelted\\nresmelting\\nresmelts\\nresmooth\\nresmoothed\\nresmoothing\\nresmooths\\nresojet\\nresojets\\nresold\\nresolder\\nresoldered\\nresoldering\\nresolders\\nresole\\nresoled\\nresoles\\nresolidified\\nresolidifies\\nresolidify\\nresolidifying\\nresoling\\nresolute\\nresolutely\\nresoluteness\\nresolutenesses\\nresoluter\\nresolutes\\nresolutest\\nresolution\\nresolutions\\nresolvable\\nresolve\\nresolved\\nresolver\\nresolvers\\nresolves\\nresolving\\nresonance\\nresonances\\nresonant\\nresonantly\\nresonants\\nresonate\\nresonated\\nresonates\\nresonating\\nresorb\\nresorbed\\nresorbing\\nresorbs\\nresorcin\\nresorcins\\nresort\\nresorted\\nresorter\\nresorters\\nresorting\\nresorts\\nresought\\nresound\\nresounded\\nresounding\\nresoundingly\\nresounds\\nresource\\nresourceful\\nresourcefulness\\nresourcefulnesses\\nresources\\nresow\\nresowed\\nresowing\\nresown\\nresows\\nrespect\\nrespectabilities\\nrespectability\\nrespectable\\nrespectably\\nrespected\\nrespecter\\nrespecters\\nrespectful\\nrespectfully\\nrespectfulness\\nrespectfulnesses\\nrespecting\\nrespective\\nrespectively\\nrespects\\nrespell\\nrespelled\\nrespelling\\nrespells\\nrespelt\\nrespiration\\nrespirations\\nrespirator\\nrespiratories\\nrespirators\\nrespiratory\\nrespire\\nrespired\\nrespires\\nrespiring\\nrespite\\nrespited\\nrespites\\nrespiting\\nresplendence\\nresplendences\\nresplendent\\nresplendently\\nrespond\\nresponded\\nrespondent\\nrespondents\\nresponder\\nresponders\\nresponding\\nresponds\\nresponsa\\nresponse\\nresponses\\nresponsibilities\\nresponsibility\\nresponsible\\nresponsibleness\\nresponsiblenesses\\nresponsiblities\\nresponsiblity\\nresponsibly\\nresponsive\\nresponsiveness\\nresponsivenesses\\nresprang\\nrespread\\nrespreading\\nrespreads\\nrespring\\nrespringing\\nresprings\\nresprung\\nrest\\nrestack\\nrestacked\\nrestacking\\nrestacks\\nrestaff\\nrestaffed\\nrestaffing\\nrestaffs\\nrestage\\nrestaged\\nrestages\\nrestaging\\nrestamp\\nrestamped\\nrestamping\\nrestamps\\nrestart\\nrestartable\\nrestarted\\nrestarting\\nrestarts\\nrestate\\nrestated\\nrestatement\\nrestatements\\nrestates\\nrestating\\nrestaurant\\nrestaurants\\nrested\\nrester\\nresters\\nrestful\\nrestfuller\\nrestfullest\\nrestfully\\nrestimulate\\nrestimulated\\nrestimulates\\nrestimulating\\nresting\\nrestitution\\nrestitutions\\nrestive\\nrestively\\nrestiveness\\nrestivenesses\\nrestless\\nrestlessness\\nrestlessnesses\\nrestock\\nrestocked\\nrestocking\\nrestocks\\nrestorable\\nrestoral\\nrestorals\\nrestoration\\nrestorations\\nrestorative\\nrestoratives\\nrestore\\nrestored\\nrestorer\\nrestorers\\nrestores\\nrestoring\\nrestrain\\nrestrainable\\nrestrained\\nrestrainedly\\nrestrainer\\nrestrainers\\nrestraining\\nrestrains\\nrestraint\\nrestraints\\nrestricken\\nrestrict\\nrestricted\\nrestricting\\nrestriction\\nrestrictions\\nrestrictive\\nrestrictively\\nrestricts\\nrestrike\\nrestrikes\\nrestriking\\nrestring\\nrestringing\\nrestrings\\nrestrive\\nrestriven\\nrestrives\\nrestriving\\nrestrove\\nrestruck\\nrestructure\\nrestructured\\nrestructures\\nrestructuring\\nrestrung\\nrests\\nrestudied\\nrestudies\\nrestudy\\nrestudying\\nrestuff\\nrestuffed\\nrestuffing\\nrestuffs\\nrestyle\\nrestyled\\nrestyles\\nrestyling\\nresubmit\\nresubmits\\nresubmitted\\nresubmitting\\nresult\\nresultant\\nresulted\\nresulting\\nresults\\nresume\\nresumed\\nresumer\\nresumers\\nresumes\\nresuming\\nresummon\\nresummoned\\nresummoning\\nresummons\\nresumption\\nresumptions\\nresupine\\nresupplied\\nresupplies\\nresupply\\nresupplying\\nresurface\\nresurfaced\\nresurfaces\\nresurfacing\\nresurge\\nresurged\\nresurgence\\nresurgences\\nresurgent\\nresurges\\nresurging\\nresurrect\\nresurrected\\nresurrecting\\nresurrection\\nresurrections\\nresurrects\\nresurvey\\nresurveyed\\nresurveying\\nresurveys\\nresuscitate\\nresuscitated\\nresuscitates\\nresuscitating\\nresuscitation\\nresuscitations\\nresuscitator\\nresuscitators\\nresyntheses\\nresynthesis\\nresynthesize\\nresynthesized\\nresynthesizes\\nresynthesizing\\nret\\nretable\\nretables\\nretail\\nretailed\\nretailer\\nretailers\\nretailing\\nretailor\\nretailored\\nretailoring\\nretailors\\nretails\\nretain\\nretained\\nretainer\\nretainers\\nretaining\\nretains\\nretake\\nretaken\\nretaker\\nretakers\\nretakes\\nretaking\\nretaliate\\nretaliated\\nretaliates\\nretaliating\\nretaliation\\nretaliations\\nretaliatory\\nretard\\nretardation\\nretardations\\nretarded\\nretarder\\nretarders\\nretarding\\nretards\\nretaste\\nretasted\\nretastes\\nretasting\\nretaught\\nretch\\nretched\\nretches\\nretching\\nrete\\nreteach\\nreteaches\\nreteaching\\nretell\\nretelling\\nretells\\nretem\\nretems\\nretene\\nretenes\\nretention\\nretentions\\nretentive\\nretest\\nretested\\nretesting\\nretests\\nrethink\\nrethinking\\nrethinks\\nrethought\\nrethread\\nrethreaded\\nrethreading\\nrethreads\\nretia\\nretial\\nretiarii\\nretiary\\nreticence\\nreticences\\nreticent\\nreticently\\nreticle\\nreticles\\nreticula\\nreticule\\nreticules\\nretie\\nretied\\nreties\\nretiform\\nretighten\\nretightened\\nretightening\\nretightens\\nretime\\nretimed\\nretimes\\nretiming\\nretina\\nretinae\\nretinal\\nretinals\\nretinas\\nretinene\\nretinenes\\nretinite\\nretinites\\nretinol\\nretinols\\nretint\\nretinted\\nretinting\\nretints\\nretinue\\nretinued\\nretinues\\nretinula\\nretinulae\\nretinulas\\nretirant\\nretirants\\nretire\\nretired\\nretiree\\nretirees\\nretirement\\nretirements\\nretirer\\nretirers\\nretires\\nretiring\\nretitle\\nretitled\\nretitles\\nretitling\\nretold\\nretook\\nretool\\nretooled\\nretooling\\nretools\\nretort\\nretorted\\nretorter\\nretorters\\nretorting\\nretorts\\nretouch\\nretouched\\nretouches\\nretouching\\nretrace\\nretraced\\nretraces\\nretracing\\nretrack\\nretracked\\nretracking\\nretracks\\nretract\\nretractable\\nretracted\\nretracting\\nretraction\\nretractions\\nretracts\\nretrain\\nretrained\\nretraining\\nretrains\\nretral\\nretrally\\nretranslate\\nretranslated\\nretranslates\\nretranslating\\nretransmit\\nretransmited\\nretransmiting\\nretransmits\\nretransplant\\nretransplanted\\nretransplanting\\nretransplants\\nretread\\nretreaded\\nretreading\\nretreads\\nretreat\\nretreated\\nretreating\\nretreatment\\nretreats\\nretrench\\nretrenched\\nretrenches\\nretrenching\\nretrenchment\\nretrenchments\\nretrial\\nretrials\\nretribution\\nretributions\\nretributive\\nretributory\\nretried\\nretries\\nretrievabilities\\nretrievability\\nretrievable\\nretrieval\\nretrievals\\nretrieve\\nretrieved\\nretriever\\nretrievers\\nretrieves\\nretrieving\\nretrim\\nretrimmed\\nretrimming\\nretrims\\nretroact\\nretroacted\\nretroacting\\nretroactive\\nretroactively\\nretroacts\\nretrofit\\nretrofits\\nretrofitted\\nretrofitting\\nretrograde\\nretrogress\\nretrogressed\\nretrogresses\\nretrogressing\\nretrogression\\nretrogressions\\nretrorse\\nretrospect\\nretrospection\\nretrospections\\nretrospective\\nretrospectively\\nretrospectives\\nretry\\nretrying\\nrets\\nretsina\\nretsinas\\nretted\\nretting\\nretune\\nretuned\\nretunes\\nretuning\\nreturn\\nreturnable\\nreturned\\nreturnee\\nreturnees\\nreturner\\nreturners\\nreturning\\nreturns\\nretuse\\nretwist\\nretwisted\\nretwisting\\nretwists\\nretying\\nretype\\nretyped\\nretypes\\nretyping\\nreunified\\nreunifies\\nreunify\\nreunifying\\nreunion\\nreunions\\nreunite\\nreunited\\nreuniter\\nreuniters\\nreunites\\nreuniting\\nreupholster\\nreupholstered\\nreupholstering\\nreupholsters\\nreusable\\nreuse\\nreused\\nreuses\\nreusing\\nreutter\\nreuttered\\nreuttering\\nreutters\\nrev\\nrevaccinate\\nrevaccinated\\nrevaccinates\\nrevaccinating\\nrevaccination\\nrevaccinations\\nrevalue\\nrevalued\\nrevalues\\nrevaluing\\nrevamp\\nrevamped\\nrevamper\\nrevampers\\nrevamping\\nrevamps\\nrevanche\\nrevanches\\nreveal\\nrevealed\\nrevealer\\nrevealers\\nrevealing\\nreveals\\nrevehent\\nreveille\\nreveilles\\nrevel\\nrevelation\\nrevelations\\nreveled\\nreveler\\nrevelers\\nreveling\\nrevelled\\nreveller\\nrevellers\\nrevelling\\nrevelries\\nrevelry\\nrevels\\nrevenant\\nrevenants\\nrevenge\\nrevenged\\nrevengeful\\nrevenger\\nrevengers\\nrevenges\\nrevenging\\nrevenual\\nrevenue\\nrevenued\\nrevenuer\\nrevenuers\\nrevenues\\nreverb\\nreverberate\\nreverberated\\nreverberates\\nreverberating\\nreverberation\\nreverberations\\nreverbs\\nrevere\\nrevered\\nreverence\\nreverences\\nreverend\\nreverends\\nreverent\\nreverer\\nreverers\\nreveres\\nreverie\\nreveries\\nreverified\\nreverifies\\nreverify\\nreverifying\\nrevering\\nrevers\\nreversal\\nreversals\\nreverse\\nreversed\\nreversely\\nreverser\\nreversers\\nreverses\\nreversible\\nreversing\\nreversion\\nreverso\\nreversos\\nrevert\\nreverted\\nreverter\\nreverters\\nreverting\\nreverts\\nrevery\\nrevest\\nrevested\\nrevesting\\nrevests\\nrevet\\nrevets\\nrevetted\\nrevetting\\nreview\\nreviewal\\nreviewals\\nreviewed\\nreviewer\\nreviewers\\nreviewing\\nreviews\\nrevile\\nreviled\\nrevilement\\nrevilements\\nreviler\\nrevilers\\nreviles\\nreviling\\nrevisable\\nrevisal\\nrevisals\\nrevise\\nrevised\\nreviser\\nrevisers\\nrevises\\nrevising\\nrevision\\nrevisions\\nrevisit\\nrevisited\\nrevisiting\\nrevisits\\nrevisor\\nrevisors\\nrevisory\\nrevival\\nrevivals\\nrevive\\nrevived\\nreviver\\nrevivers\\nrevives\\nrevivified\\nrevivifies\\nrevivify\\nrevivifying\\nreviving\\nrevocation\\nrevocations\\nrevoice\\nrevoiced\\nrevoices\\nrevoicing\\nrevoke\\nrevoked\\nrevoker\\nrevokers\\nrevokes\\nrevoking\\nrevolt\\nrevolted\\nrevolter\\nrevolters\\nrevolting\\nrevolts\\nrevolute\\nrevolution\\nrevolutionaries\\nrevolutionary\\nrevolutionize\\nrevolutionized\\nrevolutionizer\\nrevolutionizers\\nrevolutionizes\\nrevolutionizing\\nrevolutions\\nrevolvable\\nrevolve\\nrevolved\\nrevolver\\nrevolvers\\nrevolves\\nrevolving\\nrevs\\nrevue\\nrevues\\nrevuist\\nrevuists\\nrevulsed\\nrevulsion\\nrevulsions\\nrevved\\nrevving\\nrewake\\nrewaked\\nrewaken\\nrewakened\\nrewakening\\nrewakens\\nrewakes\\nrewaking\\nrewan\\nreward\\nrewarded\\nrewarder\\nrewarders\\nrewarding\\nrewards\\nrewarm\\nrewarmed\\nrewarming\\nrewarms\\nrewash\\nrewashed\\nrewashes\\nrewashing\\nrewax\\nrewaxed\\nrewaxes\\nrewaxing\\nreweave\\nreweaved\\nreweaves\\nreweaving\\nrewed\\nreweigh\\nreweighed\\nreweighing\\nreweighs\\nreweld\\nrewelded\\nrewelding\\nrewelds\\nrewiden\\nrewidened\\nrewidening\\nrewidens\\nrewin\\nrewind\\nrewinded\\nrewinder\\nrewinders\\nrewinding\\nrewinds\\nrewinning\\nrewins\\nrewire\\nrewired\\nrewires\\nrewiring\\nrewoke\\nrewoken\\nrewon\\nreword\\nreworded\\nrewording\\nrewords\\nrework\\nreworked\\nreworking\\nreworks\\nrewound\\nrewove\\nrewoven\\nrewrap\\nrewrapped\\nrewrapping\\nrewraps\\nrewrapt\\nrewrite\\nrewriter\\nrewriters\\nrewrites\\nrewriting\\nrewritten\\nrewrote\\nrewrought\\nrex\\nrexes\\nreynard\\nreynards\\nrezone\\nrezoned\\nrezones\\nrezoning\\nrhabdom\\nrhabdome\\nrhabdomes\\nrhabdoms\\nrhachides\\nrhachis\\nrhachises\\nrhamnose\\nrhamnoses\\nrhamnus\\nrhamnuses\\nrhaphae\\nrhaphe\\nrhaphes\\nrhapsode\\nrhapsodes\\nrhapsodic\\nrhapsodically\\nrhapsodies\\nrhapsodize\\nrhapsodized\\nrhapsodizes\\nrhapsodizing\\nrhapsody\\nrhatanies\\nrhatany\\nrhea\\nrheas\\nrhebok\\nrheboks\\nrhematic\\nrhenium\\nrheniums\\nrheobase\\nrheobases\\nrheologies\\nrheology\\nrheophil\\nrheostat\\nrheostats\\nrhesus\\nrhesuses\\nrhetor\\nrhetoric\\nrhetorical\\nrhetorician\\nrhetoricians\\nrhetorics\\nrhetors\\nrheum\\nrheumatic\\nrheumatism\\nrheumatisms\\nrheumic\\nrheumier\\nrheumiest\\nrheums\\nrheumy\\nrhinal\\nrhinestone\\nrhinestones\\nrhinitides\\nrhinitis\\nrhino\\nrhinoceri\\nrhinoceros\\nrhinoceroses\\nrhinos\\nrhizobia\\nrhizoid\\nrhizoids\\nrhizoma\\nrhizomata\\nrhizome\\nrhizomes\\nrhizomic\\nrhizopi\\nrhizopod\\nrhizopods\\nrhizopus\\nrhizopuses\\nrho\\nrhodamin\\nrhodamins\\nrhodic\\nrhodium\\nrhodiums\\nrhododendron\\nrhododendrons\\nrhodora\\nrhodoras\\nrhomb\\nrhombi\\nrhombic\\nrhomboid\\nrhomboids\\nrhombs\\nrhombus\\nrhombuses\\nrhonchal\\nrhonchi\\nrhonchus\\nrhos\\nrhubarb\\nrhubarbs\\nrhumb\\nrhumba\\nrhumbaed\\nrhumbaing\\nrhumbas\\nrhumbs\\nrhus\\nrhuses\\nrhyme\\nrhymed\\nrhymer\\nrhymers\\nrhymes\\nrhyming\\nrhyolite\\nrhyolites\\nrhyta\\nrhythm\\nrhythmic\\nrhythmical\\nrhythmically\\nrhythmics\\nrhythms\\nrhyton\\nrial\\nrials\\nrialto\\nrialtos\\nriant\\nriantly\\nriata\\nriatas\\nrib\\nribald\\nribaldly\\nribaldries\\nribaldry\\nribalds\\nriband\\nribands\\nribband\\nribbands\\nribbed\\nribber\\nribbers\\nribbier\\nribbiest\\nribbing\\nribbings\\nribbon\\nribboned\\nribboning\\nribbons\\nribbony\\nribby\\nribes\\nribgrass\\nribgrasses\\nribless\\nriblet\\nriblets\\nriblike\\nriboflavin\\nriboflavins\\nribose\\nriboses\\nribosome\\nribosomes\\nribs\\nribwort\\nribworts\\nrice\\nricebird\\nricebirds\\nriced\\nricer\\nricercar\\nricercars\\nricers\\nrices\\nrich\\nrichen\\nrichened\\nrichening\\nrichens\\nricher\\nriches\\nrichest\\nrichly\\nrichness\\nrichnesses\\nrichweed\\nrichweeds\\nricin\\nricing\\nricins\\nricinus\\nricinuses\\nrick\\nricked\\nricketier\\nricketiest\\nrickets\\nrickety\\nrickey\\nrickeys\\nricking\\nrickrack\\nrickracks\\nricks\\nricksha\\nrickshas\\nrickshaw\\nrickshaws\\nricochet\\nricocheted\\nricocheting\\nricochets\\nricochetted\\nricochetting\\nricotta\\nricottas\\nricrac\\nricracs\\nrictal\\nrictus\\nrictuses\\nrid\\nridable\\nriddance\\nriddances\\nridded\\nridden\\nridder\\nridders\\nridding\\nriddle\\nriddled\\nriddler\\nriddlers\\nriddles\\nriddling\\nride\\nrideable\\nrident\\nrider\\nriderless\\nriders\\nrides\\nridge\\nridged\\nridgel\\nridgels\\nridges\\nridgier\\nridgiest\\nridgil\\nridgils\\nridging\\nridgling\\nridglings\\nridgy\\nridicule\\nridiculed\\nridicules\\nridiculing\\nridiculous\\nridiculously\\nridiculousness\\nridiculousnesses\\nriding\\nridings\\nridley\\nridleys\\nridotto\\nridottos\\nrids\\nriel\\nriels\\nriever\\nrievers\\nrife\\nrifely\\nrifeness\\nrifenesses\\nrifer\\nrifest\\nriff\\nriffed\\nriffing\\nriffle\\nriffled\\nriffler\\nrifflers\\nriffles\\nriffling\\nriffraff\\nriffraffs\\nriffs\\nrifle\\nrifled\\nrifleman\\nriflemen\\nrifler\\nrifleries\\nriflers\\nriflery\\nrifles\\nrifling\\nriflings\\nrift\\nrifted\\nrifting\\nriftless\\nrifts\\nrig\\nrigadoon\\nrigadoons\\nrigatoni\\nrigatonis\\nrigaudon\\nrigaudons\\nrigged\\nrigger\\nriggers\\nrigging\\nriggings\\nright\\nrighted\\nrighteous\\nrighteously\\nrighteousness\\nrighteousnesses\\nrighter\\nrighters\\nrightest\\nrightful\\nrightfully\\nrightfulness\\nrightfulnesses\\nrighties\\nrighting\\nrightism\\nrightisms\\nrightist\\nrightists\\nrightly\\nrightness\\nrightnesses\\nrighto\\nrights\\nrightward\\nrighty\\nrigid\\nrigidified\\nrigidifies\\nrigidify\\nrigidifying\\nrigidities\\nrigidity\\nrigidly\\nrigmarole\\nrigmaroles\\nrigor\\nrigorism\\nrigorisms\\nrigorist\\nrigorists\\nrigorous\\nrigorously\\nrigors\\nrigour\\nrigours\\nrigs\\nrikisha\\nrikishas\\nrikshaw\\nrikshaws\\nrile\\nriled\\nriles\\nriley\\nrilievi\\nrilievo\\nriling\\nrill\\nrille\\nrilled\\nrilles\\nrillet\\nrillets\\nrilling\\nrills\\nrilly\\nrim\\nrime\\nrimed\\nrimer\\nrimers\\nrimes\\nrimester\\nrimesters\\nrimfire\\nrimier\\nrimiest\\nriming\\nrimland\\nrimlands\\nrimless\\nrimmed\\nrimmer\\nrimmers\\nrimming\\nrimose\\nrimosely\\nrimosities\\nrimosity\\nrimous\\nrimple\\nrimpled\\nrimples\\nrimpling\\nrimrock\\nrimrocks\\nrims\\nrimy\\nrin\\nrind\\nrinded\\nrinds\\nring\\nringbark\\nringbarked\\nringbarking\\nringbarks\\nringbolt\\nringbolts\\nringbone\\nringbones\\nringdove\\nringdoves\\nringed\\nringent\\nringer\\nringers\\nringhals\\nringhalses\\nringing\\nringleader\\nringlet\\nringlets\\nringlike\\nringneck\\nringnecks\\nrings\\nringside\\nringsides\\nringtail\\nringtails\\nringtaw\\nringtaws\\nringtoss\\nringtosses\\nringworm\\nringworms\\nrink\\nrinks\\nrinning\\nrins\\nrinsable\\nrinse\\nrinsed\\nrinser\\nrinsers\\nrinses\\nrinsible\\nrinsing\\nrinsings\\nriot\\nrioted\\nrioter\\nrioters\\nrioting\\nriotous\\nriots\\nrip\\nriparian\\nripcord\\nripcords\\nripe\\nriped\\nripely\\nripen\\nripened\\nripener\\nripeners\\nripeness\\nripenesses\\nripening\\nripens\\nriper\\nripes\\nripest\\nripieni\\nripieno\\nripienos\\nriping\\nripost\\nriposte\\nriposted\\nripostes\\nriposting\\nriposts\\nrippable\\nripped\\nripper\\nrippers\\nripping\\nripple\\nrippled\\nrippler\\nripplers\\nripples\\nripplet\\nripplets\\nripplier\\nrippliest\\nrippling\\nripply\\nriprap\\nriprapped\\nriprapping\\nripraps\\nrips\\nripsaw\\nripsaws\\nriptide\\nriptides\\nrise\\nrisen\\nriser\\nrisers\\nrises\\nrishi\\nrishis\\nrisibilities\\nrisibility\\nrisible\\nrisibles\\nrisibly\\nrising\\nrisings\\nrisk\\nrisked\\nrisker\\nriskers\\nriskier\\nriskiest\\nriskily\\nriskiness\\nriskinesses\\nrisking\\nrisks\\nrisky\\nrisotto\\nrisottos\\nrisque\\nrissole\\nrissoles\\nrisus\\nrisuses\\nritard\\nritards\\nrite\\nrites\\nritter\\nritters\\nritual\\nritualism\\nritualisms\\nritualistic\\nritualistically\\nritually\\nrituals\\nritz\\nritzes\\nritzier\\nritziest\\nritzily\\nritzy\\nrivage\\nrivages\\nrival\\nrivaled\\nrivaling\\nrivalled\\nrivalling\\nrivalries\\nrivalry\\nrivals\\nrive\\nrived\\nriven\\nriver\\nriverbank\\nriverbanks\\nriverbed\\nriverbeds\\nriverboat\\nriverboats\\nriverine\\nrivers\\nriverside\\nriversides\\nrives\\nrivet\\nriveted\\nriveter\\nriveters\\nriveting\\nrivets\\nrivetted\\nrivetting\\nriviera\\nrivieras\\nriviere\\nrivieres\\nriving\\nrivulet\\nrivulets\\nriyal\\nriyals\\nroach\\nroached\\nroaches\\nroaching\\nroad\\nroadbed\\nroadbeds\\nroadblock\\nroadblocks\\nroadless\\nroadrunner\\nroadrunners\\nroads\\nroadside\\nroadsides\\nroadster\\nroadsters\\nroadway\\nroadways\\nroadwork\\nroadworks\\nroam\\nroamed\\nroamer\\nroamers\\nroaming\\nroams\\nroan\\nroans\\nroar\\nroared\\nroarer\\nroarers\\nroaring\\nroarings\\nroars\\nroast\\nroasted\\nroaster\\nroasters\\nroasting\\nroasts\\nrob\\nrobalo\\nrobalos\\nroband\\nrobands\\nrobbed\\nrobber\\nrobberies\\nrobbers\\nrobbery\\nrobbin\\nrobbing\\nrobbins\\nrobe\\nrobed\\nrobes\\nrobin\\nrobing\\nrobins\\nroble\\nrobles\\nroborant\\nroborants\\nrobot\\nrobotics\\nrobotism\\nrobotisms\\nrobotize\\nrobotized\\nrobotizes\\nrobotizing\\nrobotries\\nrobotry\\nrobots\\nrobs\\nrobust\\nrobuster\\nrobustest\\nrobustly\\nrobustness\\nrobustnesses\\nroc\\nrochet\\nrochets\\nrock\\nrockabies\\nrockaby\\nrockabye\\nrockabyes\\nrockaway\\nrockaways\\nrocked\\nrocker\\nrockeries\\nrockers\\nrockery\\nrocket\\nrocketed\\nrocketer\\nrocketers\\nrocketing\\nrocketries\\nrocketry\\nrockets\\nrockfall\\nrockfalls\\nrockfish\\nrockfishes\\nrockier\\nrockiest\\nrocking\\nrockless\\nrocklike\\nrockling\\nrocklings\\nrockoon\\nrockoons\\nrockrose\\nrockroses\\nrocks\\nrockweed\\nrockweeds\\nrockwork\\nrockworks\\nrocky\\nrococo\\nrococos\\nrocs\\nrod\\nrodded\\nrodding\\nrode\\nrodent\\nrodents\\nrodeo\\nrodeos\\nrodless\\nrodlike\\nrodman\\nrodmen\\nrods\\nrodsman\\nrodsmen\\nroe\\nroebuck\\nroebucks\\nroentgen\\nroentgens\\nroes\\nrogation\\nrogations\\nrogatory\\nroger\\nrogers\\nrogue\\nrogued\\nrogueing\\nrogueries\\nroguery\\nrogues\\nroguing\\nroguish\\nroguishly\\nroguishness\\nroguishnesses\\nroil\\nroiled\\nroilier\\nroiliest\\nroiling\\nroils\\nroily\\nroister\\nroistered\\nroistering\\nroisters\\nrolamite\\nrolamites\\nrole\\nroles\\nroll\\nrollaway\\nrollback\\nrollbacks\\nrolled\\nroller\\nrollers\\nrollick\\nrollicked\\nrollicking\\nrollicks\\nrollicky\\nrolling\\nrollings\\nrollmop\\nrollmops\\nrollout\\nrollouts\\nrollover\\nrollovers\\nrolls\\nrolltop\\nrollway\\nrollways\\nromaine\\nromaines\\nroman\\nromance\\nromanced\\nromancer\\nromancers\\nromances\\nromancing\\nromanize\\nromanized\\nromanizes\\nromanizing\\nromano\\nromanos\\nromans\\nromantic\\nromantically\\nromantics\\nromaunt\\nromaunts\\nromp\\nromped\\nromper\\nrompers\\nromping\\nrompish\\nromps\\nrondeau\\nrondeaux\\nrondel\\nrondelet\\nrondelets\\nrondelle\\nrondelles\\nrondels\\nrondo\\nrondos\\nrondure\\nrondures\\nronion\\nronions\\nronnel\\nronnels\\nrontgen\\nrontgens\\nronyon\\nronyons\\nrood\\nroods\\nroof\\nroofed\\nroofer\\nroofers\\nroofing\\nroofings\\nroofless\\nrooflike\\nroofline\\nrooflines\\nroofs\\nrooftop\\nrooftops\\nrooftree\\nrooftrees\\nrook\\nrooked\\nrookeries\\nrookery\\nrookie\\nrookier\\nrookies\\nrookiest\\nrooking\\nrooks\\nrooky\\nroom\\nroomed\\nroomer\\nroomers\\nroomette\\nroomettes\\nroomful\\nroomfuls\\nroomier\\nroomiest\\nroomily\\nrooming\\nroommate\\nroommates\\nrooms\\nroomy\\nroorback\\nroorbacks\\nroose\\nroosed\\nrooser\\nroosers\\nrooses\\nroosing\\nroost\\nroosted\\nrooster\\nroosters\\nroosting\\nroosts\\nroot\\nrootage\\nrootages\\nrooted\\nrooter\\nrooters\\nroothold\\nrootholds\\nrootier\\nrootiest\\nrooting\\nrootless\\nrootlet\\nrootlets\\nrootlike\\nroots\\nrooty\\nropable\\nrope\\nroped\\nroper\\nroperies\\nropers\\nropery\\nropes\\nropewalk\\nropewalks\\nropeway\\nropeways\\nropier\\nropiest\\nropily\\nropiness\\nropinesses\\nroping\\nropy\\nroque\\nroques\\nroquet\\nroqueted\\nroqueting\\nroquets\\nrorqual\\nrorquals\\nrosaria\\nrosarian\\nrosarians\\nrosaries\\nrosarium\\nrosariums\\nrosary\\nroscoe\\nroscoes\\nrose\\nroseate\\nrosebay\\nrosebays\\nrosebud\\nrosebuds\\nrosebush\\nrosebushes\\nrosed\\nrosefish\\nrosefishes\\nroselike\\nroselle\\nroselles\\nrosemaries\\nrosemary\\nroseola\\nroseolar\\nroseolas\\nroser\\nroseries\\nroseroot\\nroseroots\\nrosery\\nroses\\nroset\\nrosets\\nrosette\\nrosettes\\nrosewater\\nrosewood\\nrosewoods\\nrosier\\nrosiest\\nrosily\\nrosin\\nrosined\\nrosiness\\nrosinesses\\nrosing\\nrosining\\nrosinous\\nrosins\\nrosiny\\nroslindale\\nrosolio\\nrosolios\\nrostella\\nroster\\nrosters\\nrostra\\nrostral\\nrostrate\\nrostrum\\nrostrums\\nrosulate\\nrosy\\nrot\\nrota\\nrotaries\\nrotary\\nrotas\\nrotate\\nrotated\\nrotates\\nrotating\\nrotation\\nrotations\\nrotative\\nrotator\\nrotatores\\nrotators\\nrotatory\\nrotch\\nrotche\\nrotches\\nrote\\nrotenone\\nrotenones\\nrotes\\nrotgut\\nrotguts\\nrotifer\\nrotifers\\nrotiform\\nrotl\\nrotls\\nroto\\nrotor\\nrotors\\nrotos\\nrototill\\nrototilled\\nrototilling\\nrototills\\nrots\\nrotted\\nrotten\\nrottener\\nrottenest\\nrottenly\\nrottenness\\nrottennesses\\nrotter\\nrotters\\nrotting\\nrotund\\nrotunda\\nrotundas\\nrotundly\\nroturier\\nroturiers\\nrouble\\nroubles\\nrouche\\nrouches\\nroue\\nrouen\\nrouens\\nroues\\nrouge\\nrouged\\nrouges\\nrough\\nroughage\\nroughages\\nroughdried\\nroughdries\\nroughdry\\nroughdrying\\nroughed\\nroughen\\nroughened\\nroughening\\nroughens\\nrougher\\nroughers\\nroughest\\nroughhew\\nroughhewed\\nroughhewing\\nroughhewn\\nroughhews\\nroughing\\nroughish\\nroughleg\\nroughlegs\\nroughly\\nroughneck\\nroughnecks\\nroughness\\nroughnesses\\nroughs\\nrouging\\nroulade\\nroulades\\nrouleau\\nrouleaus\\nrouleaux\\nroulette\\nrouletted\\nroulettes\\nrouletting\\nround\\nroundabout\\nrounded\\nroundel\\nroundels\\nrounder\\nrounders\\nroundest\\nrounding\\nroundish\\nroundlet\\nroundlets\\nroundly\\nroundness\\nroundnesses\\nrounds\\nroundup\\nroundups\\nroup\\nrouped\\nroupet\\nroupier\\nroupiest\\nroupily\\nrouping\\nroups\\nroupy\\nrouse\\nroused\\nrouser\\nrousers\\nrouses\\nrousing\\nrousseau\\nrousseaus\\nroust\\nrousted\\nrouster\\nrousters\\nrousting\\nrousts\\nrout\\nroute\\nrouted\\nrouteman\\nroutemen\\nrouter\\nrouters\\nroutes\\nrouteway\\nrouteways\\nrouth\\nrouths\\nroutine\\nroutinely\\nroutines\\nrouting\\nrouts\\nroux\\nrove\\nroved\\nroven\\nrover\\nrovers\\nroves\\nroving\\nrovingly\\nrovings\\nrow\\nrowable\\nrowan\\nrowans\\nrowboat\\nrowboats\\nrowdier\\nrowdies\\nrowdiest\\nrowdily\\nrowdiness\\nrowdinesses\\nrowdy\\nrowdyish\\nrowdyism\\nrowdyisms\\nrowed\\nrowel\\nroweled\\nroweling\\nrowelled\\nrowelling\\nrowels\\nrowen\\nrowens\\nrower\\nrowers\\nrowing\\nrowings\\nrowlock\\nrowlocks\\nrows\\nrowth\\nrowths\\nroyal\\nroyalism\\nroyalisms\\nroyalist\\nroyalists\\nroyally\\nroyals\\nroyalties\\nroyalty\\nroyster\\nroystered\\nroystering\\nroysters\\nrozzer\\nrozzers\\nrub\\nrubaboo\\nrubaboos\\nrubace\\nrubaces\\nrubaiyat\\nrubasse\\nrubasses\\nrubato\\nrubatos\\nrubbaboo\\nrubbaboos\\nrubbed\\nrubber\\nrubberize\\nrubberized\\nrubberizes\\nrubberizing\\nrubbers\\nrubbery\\nrubbing\\nrubbings\\nrubbish\\nrubbishes\\nrubbishy\\nrubble\\nrubbled\\nrubbles\\nrubblier\\nrubbliest\\nrubbling\\nrubbly\\nrubdown\\nrubdowns\\nrube\\nrubella\\nrubellas\\nrubeola\\nrubeolar\\nrubeolas\\nrubes\\nrubicund\\nrubidic\\nrubidium\\nrubidiums\\nrubied\\nrubier\\nrubies\\nrubiest\\nrubigo\\nrubigos\\nruble\\nrubles\\nrubric\\nrubrical\\nrubrics\\nrubs\\nrubus\\nruby\\nrubying\\nrubylike\\nruche\\nruches\\nruching\\nruchings\\nruck\\nrucked\\nrucking\\nrucks\\nrucksack\\nrucksacks\\nruckus\\nruckuses\\nruction\\nructions\\nructious\\nrudd\\nrudder\\nrudders\\nruddier\\nruddiest\\nruddily\\nruddiness\\nruddinesses\\nruddle\\nruddled\\nruddles\\nruddling\\nruddock\\nruddocks\\nrudds\\nruddy\\nrude\\nrudely\\nrudeness\\nrudenesses\\nruder\\nruderal\\nruderals\\nrudesbies\\nrudesby\\nrudest\\nrudiment\\nrudimentary\\nrudiments\\nrue\\nrued\\nrueful\\nruefully\\nruefulness\\nruefulnesses\\nruer\\nruers\\nrues\\nruff\\nruffe\\nruffed\\nruffes\\nruffian\\nruffians\\nruffing\\nruffle\\nruffled\\nruffler\\nrufflers\\nruffles\\nrufflike\\nruffling\\nruffly\\nruffs\\nrufous\\nrug\\nruga\\nrugae\\nrugal\\nrugate\\nrugbies\\nrugby\\nrugged\\nruggeder\\nruggedest\\nruggedly\\nruggedness\\nruggednesses\\nrugger\\nruggers\\nrugging\\nruglike\\nrugose\\nrugosely\\nrugosities\\nrugosity\\nrugous\\nrugs\\nrugulose\\nruin\\nruinable\\nruinate\\nruinated\\nruinates\\nruinating\\nruined\\nruiner\\nruiners\\nruing\\nruining\\nruinous\\nruinously\\nruins\\nrulable\\nrule\\nruled\\nruleless\\nruler\\nrulers\\nrules\\nruling\\nrulings\\nrum\\nrumba\\nrumbaed\\nrumbaing\\nrumbas\\nrumble\\nrumbled\\nrumbler\\nrumblers\\nrumbles\\nrumbling\\nrumblings\\nrumbly\\nrumen\\nrumens\\nrumina\\nruminal\\nruminant\\nruminants\\nruminate\\nruminated\\nruminates\\nruminating\\nrummage\\nrummaged\\nrummager\\nrummagers\\nrummages\\nrummaging\\nrummer\\nrummers\\nrummest\\nrummier\\nrummies\\nrummiest\\nrummy\\nrumor\\nrumored\\nrumoring\\nrumors\\nrumour\\nrumoured\\nrumouring\\nrumours\\nrump\\nrumple\\nrumpled\\nrumples\\nrumpless\\nrumplier\\nrumpliest\\nrumpling\\nrumply\\nrumps\\nrumpus\\nrumpuses\\nrums\\nrun\\nrunabout\\nrunabouts\\nrunagate\\nrunagates\\nrunaround\\nrunarounds\\nrunaway\\nrunaways\\nrunback\\nrunbacks\\nrundle\\nrundles\\nrundlet\\nrundlets\\nrundown\\nrundowns\\nrune\\nrunelike\\nrunes\\nrung\\nrungless\\nrungs\\nrunic\\nrunkle\\nrunkled\\nrunkles\\nrunkling\\nrunless\\nrunlet\\nrunlets\\nrunnel\\nrunnels\\nrunner\\nrunners\\nrunnier\\nrunniest\\nrunning\\nrunnings\\nrunny\\nrunoff\\nrunoffs\\nrunout\\nrunouts\\nrunover\\nrunovers\\nrunround\\nrunrounds\\nruns\\nrunt\\nruntier\\nruntiest\\nruntish\\nrunts\\nrunty\\nrunway\\nrunways\\nrupee\\nrupees\\nrupiah\\nrupiahs\\nrupture\\nruptured\\nruptures\\nrupturing\\nrural\\nruralise\\nruralised\\nruralises\\nruralising\\nruralism\\nruralisms\\nruralist\\nruralists\\nruralite\\nruralites\\nruralities\\nrurality\\nruralize\\nruralized\\nruralizes\\nruralizing\\nrurally\\nrurban\\nruse\\nruses\\nrush\\nrushed\\nrushee\\nrushees\\nrusher\\nrushers\\nrushes\\nrushier\\nrushiest\\nrushing\\nrushings\\nrushlike\\nrushy\\nrusine\\nrusk\\nrusks\\nrusset\\nrussets\\nrussety\\nrussified\\nrussifies\\nrussify\\nrussifying\\nrust\\nrustable\\nrusted\\nrustic\\nrustical\\nrustically\\nrusticities\\nrusticity\\nrusticly\\nrustics\\nrustier\\nrustiest\\nrustily\\nrusting\\nrustle\\nrustled\\nrustler\\nrustlers\\nrustles\\nrustless\\nrustling\\nrusts\\nrusty\\nrut\\nrutabaga\\nrutabagas\\nruth\\nruthenic\\nruthful\\nruthless\\nruthlessly\\nruthlessness\\nruthlessnesses\\nruths\\nrutilant\\nrutile\\nrutiles\\nruts\\nrutted\\nruttier\\nruttiest\\nruttily\\nrutting\\nruttish\\nrutty\\nrya\\nryas\\nrye\\nryegrass\\nryegrasses\\nryes\\nryke\\nryked\\nrykes\\nryking\\nrynd\\nrynds\\nryot\\nryots\\nsab\\nsabaton\\nsabatons\\nsabbat\\nsabbath\\nsabbaths\\nsabbatic\\nsabbats\\nsabbed\\nsabbing\\nsabe\\nsabed\\nsabeing\\nsaber\\nsabered\\nsabering\\nsabers\\nsabes\\nsabin\\nsabine\\nsabines\\nsabins\\nsabir\\nsabirs\\nsable\\nsables\\nsabot\\nsabotage\\nsabotaged\\nsabotages\\nsabotaging\\nsaboteur\\nsaboteurs\\nsabots\\nsabra\\nsabras\\nsabre\\nsabred\\nsabres\\nsabring\\nsabs\\nsabulose\\nsabulous\\nsac\\nsacaton\\nsacatons\\nsacbut\\nsacbuts\\nsaccade\\nsaccades\\nsaccadic\\nsaccate\\nsaccharin\\nsaccharine\\nsaccharins\\nsaccular\\nsaccule\\nsaccules\\nsacculi\\nsacculus\\nsachem\\nsachemic\\nsachems\\nsachet\\nsacheted\\nsachets\\nsack\\nsackbut\\nsackbuts\\nsackcloth\\nsackcloths\\nsacked\\nsacker\\nsackers\\nsackful\\nsackfuls\\nsacking\\nsackings\\nsacklike\\nsacks\\nsacksful\\nsaclike\\nsacque\\nsacques\\nsacra\\nsacral\\nsacrals\\nsacrament\\nsacramental\\nsacraments\\nsacraria\\nsacred\\nsacredly\\nsacrifice\\nsacrificed\\nsacrifices\\nsacrificial\\nsacrificially\\nsacrificing\\nsacrilege\\nsacrileges\\nsacrilegious\\nsacrilegiously\\nsacrist\\nsacristies\\nsacrists\\nsacristy\\nsacrosanct\\nsacrum\\nsacs\\nsad\\nsadden\\nsaddened\\nsaddening\\nsaddens\\nsadder\\nsaddest\\nsaddhu\\nsaddhus\\nsaddle\\nsaddled\\nsaddler\\nsaddleries\\nsaddlers\\nsaddlery\\nsaddles\\nsaddling\\nsade\\nsades\\nsadhe\\nsadhes\\nsadhu\\nsadhus\\nsadi\\nsadiron\\nsadirons\\nsadis\\nsadism\\nsadisms\\nsadist\\nsadistic\\nsadistically\\nsadists\\nsadly\\nsadness\\nsadnesses\\nsae\\nsafari\\nsafaried\\nsafariing\\nsafaris\\nsafe\\nsafeguard\\nsafeguarded\\nsafeguarding\\nsafeguards\\nsafekeeping\\nsafekeepings\\nsafely\\nsafeness\\nsafenesses\\nsafer\\nsafes\\nsafest\\nsafetied\\nsafeties\\nsafety\\nsafetying\\nsafflower\\nsafflowers\\nsaffron\\nsaffrons\\nsafranin\\nsafranins\\nsafrol\\nsafrole\\nsafroles\\nsafrols\\nsag\\nsaga\\nsagacious\\nsagacities\\nsagacity\\nsagaman\\nsagamen\\nsagamore\\nsagamores\\nsaganash\\nsaganashes\\nsagas\\nsagbut\\nsagbuts\\nsage\\nsagebrush\\nsagebrushes\\nsagely\\nsageness\\nsagenesses\\nsager\\nsages\\nsagest\\nsaggar\\nsaggard\\nsaggards\\nsaggared\\nsaggaring\\nsaggars\\nsagged\\nsagger\\nsaggered\\nsaggering\\nsaggers\\nsagging\\nsagier\\nsagiest\\nsagittal\\nsago\\nsagos\\nsags\\nsaguaro\\nsaguaros\\nsagum\\nsagy\\nsahib\\nsahibs\\nsahiwal\\nsahiwals\\nsahuaro\\nsahuaros\\nsaice\\nsaices\\nsaid\\nsaids\\nsaiga\\nsaigas\\nsail\\nsailable\\nsailboat\\nsailboats\\nsailed\\nsailer\\nsailers\\nsailfish\\nsailfishes\\nsailing\\nsailings\\nsailor\\nsailorly\\nsailors\\nsails\\nsain\\nsained\\nsainfoin\\nsainfoins\\nsaining\\nsains\\nsaint\\nsaintdom\\nsaintdoms\\nsainted\\nsainthood\\nsainthoods\\nsainting\\nsaintlier\\nsaintliest\\nsaintliness\\nsaintlinesses\\nsaintly\\nsaints\\nsaith\\nsaithe\\nsaiyid\\nsaiyids\\nsajou\\nsajous\\nsake\\nsaker\\nsakers\\nsakes\\nsaki\\nsakis\\nsal\\nsalaam\\nsalaamed\\nsalaaming\\nsalaams\\nsalable\\nsalably\\nsalacious\\nsalacities\\nsalacity\\nsalad\\nsaladang\\nsaladangs\\nsalads\\nsalamander\\nsalamanders\\nsalami\\nsalamis\\nsalariat\\nsalariats\\nsalaried\\nsalaries\\nsalary\\nsalarying\\nsale\\nsaleable\\nsaleably\\nsalep\\nsaleps\\nsaleroom\\nsalerooms\\nsales\\nsalesman\\nsalesmen\\nsaleswoman\\nsaleswomen\\nsalic\\nsalicin\\nsalicine\\nsalicines\\nsalicins\\nsalience\\nsaliences\\nsaliencies\\nsaliency\\nsalient\\nsalients\\nsalified\\nsalifies\\nsalify\\nsalifying\\nsalina\\nsalinas\\nsaline\\nsalines\\nsalinities\\nsalinity\\nsalinize\\nsalinized\\nsalinizes\\nsalinizing\\nsaliva\\nsalivary\\nsalivas\\nsalivate\\nsalivated\\nsalivates\\nsalivating\\nsalivation\\nsalivations\\nsall\\nsallet\\nsallets\\nsallied\\nsallier\\nsalliers\\nsallies\\nsallow\\nsallowed\\nsallower\\nsallowest\\nsallowing\\nsallowly\\nsallows\\nsallowy\\nsally\\nsallying\\nsalmi\\nsalmis\\nsalmon\\nsalmonid\\nsalmonids\\nsalmons\\nsalol\\nsalols\\nsalon\\nsalons\\nsaloon\\nsaloons\\nsaloop\\nsaloops\\nsalp\\nsalpa\\nsalpae\\nsalpas\\nsalpian\\nsalpians\\nsalpid\\nsalpids\\nsalpinges\\nsalpinx\\nsalps\\nsals\\nsalsifies\\nsalsify\\nsalsilla\\nsalsillas\\nsalt\\nsaltant\\nsaltbox\\nsaltboxes\\nsaltbush\\nsaltbushes\\nsalted\\nsalter\\nsaltern\\nsalterns\\nsalters\\nsaltest\\nsaltie\\nsaltier\\nsaltiers\\nsalties\\nsaltiest\\nsaltily\\nsaltine\\nsaltines\\nsaltiness\\nsaltinesses\\nsalting\\nsaltire\\nsaltires\\nsaltish\\nsaltless\\nsaltlike\\nsaltness\\nsaltnesses\\nsaltpan\\nsaltpans\\nsalts\\nsaltwater\\nsaltwaters\\nsaltwork\\nsaltworks\\nsaltwort\\nsaltworts\\nsalty\\nsalubrious\\nsaluki\\nsalukis\\nsalutary\\nsalutation\\nsalutations\\nsalute\\nsaluted\\nsaluter\\nsaluters\\nsalutes\\nsaluting\\nsalvable\\nsalvably\\nsalvage\\nsalvaged\\nsalvagee\\nsalvagees\\nsalvager\\nsalvagers\\nsalvages\\nsalvaging\\nsalvation\\nsalvations\\nsalve\\nsalved\\nsalver\\nsalvers\\nsalves\\nsalvia\\nsalvias\\nsalvific\\nsalving\\nsalvo\\nsalvoed\\nsalvoes\\nsalvoing\\nsalvor\\nsalvors\\nsalvos\\nsamara\\nsamaras\\nsamarium\\nsamariums\\nsamba\\nsambaed\\nsambaing\\nsambar\\nsambars\\nsambas\\nsambhar\\nsambhars\\nsambhur\\nsambhurs\\nsambo\\nsambos\\nsambuca\\nsambucas\\nsambuke\\nsambukes\\nsambur\\nsamburs\\nsame\\nsamech\\nsamechs\\nsamek\\nsamekh\\nsamekhs\\nsameks\\nsameness\\nsamenesses\\nsamiel\\nsamiels\\nsamisen\\nsamisens\\nsamite\\nsamites\\nsamlet\\nsamlets\\nsamovar\\nsamovars\\nsamp\\nsampan\\nsampans\\nsamphire\\nsamphires\\nsample\\nsampled\\nsampler\\nsamplers\\nsamples\\nsampling\\nsamplings\\nsamps\\nsamsara\\nsamsaras\\nsamshu\\nsamshus\\nsamurai\\nsamurais\\nsanative\\nsanatoria\\nsanatorium\\nsanatoriums\\nsancta\\nsanctification\\nsanctifications\\nsanctified\\nsanctifies\\nsanctify\\nsanctifying\\nsanctimonious\\nsanction\\nsanctioned\\nsanctioning\\nsanctions\\nsanctities\\nsanctity\\nsanctuaries\\nsanctuary\\nsanctum\\nsanctums\\nsand\\nsandal\\nsandaled\\nsandaling\\nsandalled\\nsandalling\\nsandals\\nsandarac\\nsandaracs\\nsandbag\\nsandbagged\\nsandbagging\\nsandbags\\nsandbank\\nsandbanks\\nsandbar\\nsandbars\\nsandbox\\nsandboxes\\nsandbur\\nsandburr\\nsandburrs\\nsandburs\\nsanded\\nsander\\nsanders\\nsandfish\\nsandfishes\\nsandflies\\nsandfly\\nsandhi\\nsandhis\\nsandhog\\nsandhogs\\nsandier\\nsandiest\\nsanding\\nsandlike\\nsandling\\nsandlings\\nsandlot\\nsandlots\\nsandman\\nsandmen\\nsandpaper\\nsandpapered\\nsandpapering\\nsandpapers\\nsandpeep\\nsandpeeps\\nsandpile\\nsandpiles\\nsandpiper\\nsandpipers\\nsandpit\\nsandpits\\nsands\\nsandsoap\\nsandsoaps\\nsandstone\\nsandstones\\nsandstorm\\nsandstorms\\nsandwich\\nsandwiched\\nsandwiches\\nsandwiching\\nsandworm\\nsandworms\\nsandwort\\nsandworts\\nsandy\\nsane\\nsaned\\nsanely\\nsaneness\\nsanenesses\\nsaner\\nsanes\\nsanest\\nsang\\nsanga\\nsangar\\nsangaree\\nsangarees\\nsangars\\nsangas\\nsanger\\nsangers\\nsangh\\nsanghs\\nsangria\\nsangrias\\nsanguinary\\nsanguine\\nsanguines\\nsanicle\\nsanicles\\nsanies\\nsaning\\nsanious\\nsanitaria\\nsanitaries\\nsanitarium\\nsanitariums\\nsanitary\\nsanitate\\nsanitated\\nsanitates\\nsanitating\\nsanitation\\nsanitations\\nsanities\\nsanitise\\nsanitised\\nsanitises\\nsanitising\\nsanitize\\nsanitized\\nsanitizes\\nsanitizing\\nsanity\\nsanjak\\nsanjaks\\nsank\\nsannop\\nsannops\\nsannup\\nsannups\\nsannyasi\\nsannyasis\\nsans\\nsansar\\nsansars\\nsansei\\nsanseis\\nsanserif\\nsanserifs\\nsantalic\\nsantimi\\nsantims\\nsantir\\nsantirs\\nsantol\\nsantols\\nsantonin\\nsantonins\\nsantour\\nsantours\\nsap\\nsapajou\\nsapajous\\nsaphead\\nsapheads\\nsaphena\\nsaphenae\\nsapid\\nsapidities\\nsapidity\\nsapience\\nsapiences\\nsapiencies\\nsapiency\\nsapiens\\nsapient\\nsapless\\nsapling\\nsaplings\\nsaponified\\nsaponifies\\nsaponify\\nsaponifying\\nsaponin\\nsaponine\\nsaponines\\nsaponins\\nsaponite\\nsaponites\\nsapor\\nsaporous\\nsapors\\nsapota\\nsapotas\\nsapour\\nsapours\\nsapped\\nsapper\\nsappers\\nsapphic\\nsapphics\\nsapphire\\nsapphires\\nsapphism\\nsapphisms\\nsapphist\\nsapphists\\nsappier\\nsappiest\\nsappily\\nsapping\\nsappy\\nsapremia\\nsapremias\\nsapremic\\nsaprobe\\nsaprobes\\nsaprobic\\nsapropel\\nsapropels\\nsaps\\nsapsago\\nsapsagos\\nsapsucker\\nsapsuckers\\nsapwood\\nsapwoods\\nsaraband\\nsarabands\\nsaran\\nsarape\\nsarapes\\nsarcasm\\nsarcasms\\nsarcastic\\nsarcastically\\nsarcenet\\nsarcenets\\nsarcoid\\nsarcoids\\nsarcoma\\nsarcomas\\nsarcomata\\nsarcophagi\\nsarcophagus\\nsarcous\\nsard\\nsardar\\nsardars\\nsardine\\nsardines\\nsardius\\nsardiuses\\nsardonic\\nsardonically\\nsardonyx\\nsardonyxes\\nsards\\nsaree\\nsarees\\nsargasso\\nsargassos\\nsarge\\nsarges\\nsari\\nsarin\\nsarins\\nsaris\\nsark\\nsarks\\nsarment\\nsarmenta\\nsarments\\nsarod\\nsarode\\nsarodes\\nsarodist\\nsarodists\\nsarods\\nsarong\\nsarongs\\nsarsaparilla\\nsarsaparillas\\nsarsar\\nsarsars\\nsarsen\\nsarsenet\\nsarsenets\\nsarsens\\nsartor\\nsartorii\\nsartors\\nsash\\nsashay\\nsashayed\\nsashaying\\nsashays\\nsashed\\nsashes\\nsashimi\\nsashimis\\nsashing\\nsasin\\nsasins\\nsass\\nsassabies\\nsassaby\\nsassafras\\nsassafrases\\nsassed\\nsasses\\nsassier\\nsassies\\nsassiest\\nsassily\\nsassing\\nsasswood\\nsasswoods\\nsassy\\nsastruga\\nsastrugi\\nsat\\nsatang\\nsatangs\\nsatanic\\nsatanism\\nsatanisms\\nsatanist\\nsatanists\\nsatara\\nsataras\\nsatchel\\nsatchels\\nsate\\nsated\\nsateen\\nsateens\\nsatellite\\nsatellites\\nsatem\\nsates\\nsati\\nsatiable\\nsatiably\\nsatiate\\nsatiated\\nsatiates\\nsatiating\\nsatieties\\nsatiety\\nsatin\\nsatinet\\nsatinets\\nsating\\nsatinpod\\nsatinpods\\nsatins\\nsatiny\\nsatire\\nsatires\\nsatiric\\nsatirical\\nsatirically\\nsatirise\\nsatirised\\nsatirises\\nsatirising\\nsatirist\\nsatirists\\nsatirize\\nsatirized\\nsatirizes\\nsatirizing\\nsatis\\nsatisfaction\\nsatisfactions\\nsatisfactorily\\nsatisfactory\\nsatisfied\\nsatisfies\\nsatisfy\\nsatisfying\\nsatisfyingly\\nsatori\\nsatoris\\nsatrap\\nsatrapies\\nsatraps\\nsatrapy\\nsaturant\\nsaturants\\nsaturate\\nsaturated\\nsaturates\\nsaturating\\nsaturation\\nsaturations\\nsaturnine\\nsatyr\\nsatyric\\nsatyrid\\nsatyrids\\nsatyrs\\nsau\\nsauce\\nsaucebox\\nsauceboxes\\nsauced\\nsaucepan\\nsaucepans\\nsaucer\\nsaucers\\nsauces\\nsauch\\nsauchs\\nsaucier\\nsauciest\\nsaucily\\nsaucing\\nsaucy\\nsauerkraut\\nsauerkrauts\\nsauger\\nsaugers\\nsaugh\\nsaughs\\nsaughy\\nsaul\\nsauls\\nsault\\nsaults\\nsauna\\nsaunas\\nsaunter\\nsauntered\\nsauntering\\nsaunters\\nsaurel\\nsaurels\\nsaurian\\nsaurians\\nsauries\\nsauropod\\nsauropods\\nsaury\\nsausage\\nsausages\\nsaute\\nsauted\\nsauteed\\nsauteing\\nsauterne\\nsauternes\\nsautes\\nsautoir\\nsautoire\\nsautoires\\nsautoirs\\nsavable\\nsavage\\nsavaged\\nsavagely\\nsavageness\\nsavagenesses\\nsavager\\nsavageries\\nsavagery\\nsavages\\nsavagest\\nsavaging\\nsavagism\\nsavagisms\\nsavanna\\nsavannah\\nsavannahs\\nsavannas\\nsavant\\nsavants\\nsavate\\nsavates\\nsave\\nsaveable\\nsaved\\nsaveloy\\nsaveloys\\nsaver\\nsavers\\nsaves\\nsavin\\nsavine\\nsavines\\nsaving\\nsavingly\\nsavings\\nsavins\\nsavior\\nsaviors\\nsaviour\\nsaviours\\nsavor\\nsavored\\nsavorer\\nsavorers\\nsavorier\\nsavories\\nsavoriest\\nsavorily\\nsavoring\\nsavorous\\nsavors\\nsavory\\nsavour\\nsavoured\\nsavourer\\nsavourers\\nsavourier\\nsavouries\\nsavouriest\\nsavouring\\nsavours\\nsavoury\\nsavoy\\nsavoys\\nsavvied\\nsavvies\\nsavvy\\nsavvying\\nsaw\\nsawbill\\nsawbills\\nsawbones\\nsawboneses\\nsawbuck\\nsawbucks\\nsawdust\\nsawdusts\\nsawed\\nsawer\\nsawers\\nsawfish\\nsawfishes\\nsawflies\\nsawfly\\nsawhorse\\nsawhorses\\nsawing\\nsawlike\\nsawlog\\nsawlogs\\nsawmill\\nsawmills\\nsawn\\nsawney\\nsawneys\\nsaws\\nsawteeth\\nsawtooth\\nsawyer\\nsawyers\\nsax\\nsaxatile\\nsaxes\\nsaxhorn\\nsaxhorns\\nsaxonies\\nsaxony\\nsaxophone\\nsaxophones\\nsaxtuba\\nsaxtubas\\nsay\\nsayable\\nsayer\\nsayers\\nsayest\\nsayid\\nsayids\\nsaying\\nsayings\\nsayonara\\nsayonaras\\nsays\\nsayst\\nsayyid\\nsayyids\\nscab\\nscabbard\\nscabbarded\\nscabbarding\\nscabbards\\nscabbed\\nscabbier\\nscabbiest\\nscabbily\\nscabbing\\nscabble\\nscabbled\\nscabbles\\nscabbling\\nscabby\\nscabies\\nscabiosa\\nscabiosas\\nscabious\\nscabiouses\\nscablike\\nscabrous\\nscabs\\nscad\\nscads\\nscaffold\\nscaffolded\\nscaffolding\\nscaffolds\\nscag\\nscags\\nscalable\\nscalably\\nscalade\\nscalades\\nscalado\\nscalados\\nscalage\\nscalages\\nscalar\\nscalare\\nscalares\\nscalars\\nscalawag\\nscalawags\\nscald\\nscalded\\nscaldic\\nscalding\\nscalds\\nscale\\nscaled\\nscaleless\\nscalene\\nscaleni\\nscalenus\\nscalepan\\nscalepans\\nscaler\\nscalers\\nscales\\nscalier\\nscaliest\\nscaling\\nscall\\nscallion\\nscallions\\nscallop\\nscalloped\\nscalloping\\nscallops\\nscalls\\nscalp\\nscalped\\nscalpel\\nscalpels\\nscalper\\nscalpers\\nscalping\\nscalps\\nscaly\\nscam\\nscammonies\\nscammony\\nscamp\\nscamped\\nscamper\\nscampered\\nscampering\\nscampers\\nscampi\\nscamping\\nscampish\\nscamps\\nscams\\nscan\\nscandal\\nscandaled\\nscandaling\\nscandalize\\nscandalized\\nscandalizes\\nscandalizing\\nscandalled\\nscandalling\\nscandalous\\nscandals\\nscandent\\nscandia\\nscandias\\nscandic\\nscandium\\nscandiums\\nscanned\\nscanner\\nscanners\\nscanning\\nscannings\\nscans\\nscansion\\nscansions\\nscant\\nscanted\\nscanter\\nscantest\\nscantier\\nscanties\\nscantiest\\nscantily\\nscanting\\nscantly\\nscants\\nscanty\\nscape\\nscaped\\nscapegoat\\nscapegoats\\nscapes\\nscaphoid\\nscaphoids\\nscaping\\nscapose\\nscapula\\nscapulae\\nscapular\\nscapulars\\nscapulas\\nscar\\nscarab\\nscarabs\\nscarce\\nscarcely\\nscarcer\\nscarcest\\nscarcities\\nscarcity\\nscare\\nscarecrow\\nscarecrows\\nscared\\nscarer\\nscarers\\nscares\\nscarey\\nscarf\\nscarfed\\nscarfing\\nscarfpin\\nscarfpins\\nscarfs\\nscarier\\nscariest\\nscarified\\nscarifies\\nscarify\\nscarifying\\nscaring\\nscariose\\nscarious\\nscarless\\nscarlet\\nscarlets\\nscarp\\nscarped\\nscarper\\nscarpered\\nscarpering\\nscarpers\\nscarph\\nscarphed\\nscarphing\\nscarphs\\nscarping\\nscarps\\nscarred\\nscarrier\\nscarriest\\nscarring\\nscarry\\nscars\\nscart\\nscarted\\nscarting\\nscarts\\nscarves\\nscary\\nscat\\nscatback\\nscatbacks\\nscathe\\nscathed\\nscathes\\nscathing\\nscats\\nscatt\\nscatted\\nscatter\\nscattered\\nscattergram\\nscattergrams\\nscattering\\nscatters\\nscattier\\nscattiest\\nscatting\\nscatts\\nscatty\\nscaup\\nscauper\\nscaupers\\nscaups\\nscaur\\nscaurs\\nscavenge\\nscavenged\\nscavenger\\nscavengers\\nscavenges\\nscavenging\\nscena\\nscenario\\nscenarios\\nscenas\\nscend\\nscended\\nscending\\nscends\\nscene\\nsceneries\\nscenery\\nscenes\\nscenic\\nscenical\\nscent\\nscented\\nscenting\\nscents\\nscepter\\nsceptered\\nsceptering\\nscepters\\nsceptic\\nsceptics\\nsceptral\\nsceptre\\nsceptred\\nsceptres\\nsceptring\\nschappe\\nschappes\\nschav\\nschavs\\nschedule\\nscheduled\\nschedules\\nscheduling\\nschema\\nschemata\\nschematic\\nscheme\\nschemed\\nschemer\\nschemers\\nschemes\\nscheming\\nscherzi\\nscherzo\\nscherzos\\nschiller\\nschillers\\nschism\\nschisms\\nschist\\nschists\\nschizo\\nschizoid\\nschizoids\\nschizont\\nschizonts\\nschizophrenia\\nschizophrenias\\nschizophrenic\\nschizophrenics\\nschizos\\nschlep\\nschlepp\\nschlepped\\nschlepping\\nschlepps\\nschleps\\nschlock\\nschlocks\\nschmaltz\\nschmaltzes\\nschmalz\\nschmalzes\\nschmalzier\\nschmalziest\\nschmalzy\\nschmeer\\nschmeered\\nschmeering\\nschmeers\\nschmelze\\nschmelzes\\nschmo\\nschmoe\\nschmoes\\nschmoos\\nschmoose\\nschmoosed\\nschmooses\\nschmoosing\\nschmooze\\nschmoozed\\nschmoozes\\nschmoozing\\nschmuck\\nschmucks\\nschnapps\\nschnaps\\nschnecke\\nschnecken\\nschnook\\nschnooks\\nscholar\\nscholars\\nscholarship\\nscholarships\\nscholastic\\nscholia\\nscholium\\nscholiums\\nschool\\nschoolboy\\nschoolboys\\nschooled\\nschoolgirl\\nschoolgirls\\nschoolhouse\\nschoolhouses\\nschooling\\nschoolmate\\nschoolmates\\nschoolroom\\nschoolrooms\\nschools\\nschoolteacher\\nschoolteachers\\nschooner\\nschooners\\nschorl\\nschorls\\nschrik\\nschriks\\nschtick\\nschticks\\nschuit\\nschuits\\nschul\\nschuln\\nschuss\\nschussed\\nschusses\\nschussing\\nschwa\\nschwas\\nsciaenid\\nsciaenids\\nsciatic\\nsciatica\\nsciaticas\\nsciatics\\nscience\\nsciences\\nscientific\\nscientifically\\nscientist\\nscientists\\nscilicet\\nscilla\\nscillas\\nscimetar\\nscimetars\\nscimitar\\nscimitars\\nscimiter\\nscimiters\\nscincoid\\nscincoids\\nscintillate\\nscintillated\\nscintillates\\nscintillating\\nscintillation\\nscintillations\\nsciolism\\nsciolisms\\nsciolist\\nsciolists\\nscion\\nscions\\nscirocco\\nsciroccos\\nscirrhi\\nscirrhus\\nscirrhuses\\nscissile\\nscission\\nscissions\\nscissor\\nscissored\\nscissoring\\nscissors\\nscissure\\nscissures\\nsciurine\\nsciurines\\nsciuroid\\nsclaff\\nsclaffed\\nsclaffer\\nsclaffers\\nsclaffing\\nsclaffs\\nsclera\\nsclerae\\nscleral\\nscleras\\nsclereid\\nsclereids\\nsclerite\\nsclerites\\nscleroid\\nscleroma\\nscleromata\\nsclerose\\nsclerosed\\nscleroses\\nsclerosing\\nsclerosis\\nsclerosises\\nsclerotic\\nsclerous\\nscoff\\nscoffed\\nscoffer\\nscoffers\\nscoffing\\nscofflaw\\nscofflaws\\nscoffs\\nscold\\nscolded\\nscolder\\nscolders\\nscolding\\nscoldings\\nscolds\\nscoleces\\nscolex\\nscolices\\nscolioma\\nscoliomas\\nscollop\\nscolloped\\nscolloping\\nscollops\\nsconce\\nsconced\\nsconces\\nsconcing\\nscone\\nscones\\nscoop\\nscooped\\nscooper\\nscoopers\\nscoopful\\nscoopfuls\\nscooping\\nscoops\\nscoopsful\\nscoot\\nscooted\\nscooter\\nscooters\\nscooting\\nscoots\\nscop\\nscope\\nscopes\\nscops\\nscopula\\nscopulae\\nscopulas\\nscorch\\nscorched\\nscorcher\\nscorchers\\nscorches\\nscorching\\nscore\\nscored\\nscoreless\\nscorepad\\nscorepads\\nscorer\\nscorers\\nscores\\nscoria\\nscoriae\\nscorified\\nscorifies\\nscorify\\nscorifying\\nscoring\\nscorn\\nscorned\\nscorner\\nscorners\\nscornful\\nscornfully\\nscorning\\nscorns\\nscorpion\\nscorpions\\nscot\\nscotch\\nscotched\\nscotches\\nscotching\\nscoter\\nscoters\\nscotia\\nscotias\\nscotoma\\nscotomas\\nscotomata\\nscotopia\\nscotopias\\nscotopic\\nscots\\nscottie\\nscotties\\nscoundrel\\nscoundrels\\nscour\\nscoured\\nscourer\\nscourers\\nscourge\\nscourged\\nscourger\\nscourgers\\nscourges\\nscourging\\nscouring\\nscourings\\nscours\\nscouse\\nscouses\\nscout\\nscouted\\nscouter\\nscouters\\nscouth\\nscouther\\nscouthered\\nscouthering\\nscouthers\\nscouths\\nscouting\\nscoutings\\nscouts\\nscow\\nscowder\\nscowdered\\nscowdering\\nscowders\\nscowed\\nscowing\\nscowl\\nscowled\\nscowler\\nscowlers\\nscowling\\nscowls\\nscows\\nscrabble\\nscrabbled\\nscrabbles\\nscrabbling\\nscrabbly\\nscrag\\nscragged\\nscraggier\\nscraggiest\\nscragging\\nscragglier\\nscraggliest\\nscraggly\\nscraggy\\nscrags\\nscraich\\nscraiched\\nscraiching\\nscraichs\\nscraigh\\nscraighed\\nscraighing\\nscraighs\\nscram\\nscramble\\nscrambled\\nscrambles\\nscrambling\\nscrammed\\nscramming\\nscrams\\nscrannel\\nscrannels\\nscrap\\nscrapbook\\nscrapbooks\\nscrape\\nscraped\\nscraper\\nscrapers\\nscrapes\\nscrapie\\nscrapies\\nscraping\\nscrapings\\nscrapped\\nscrapper\\nscrappers\\nscrappier\\nscrappiest\\nscrapping\\nscrapple\\nscrapples\\nscrappy\\nscraps\\nscratch\\nscratched\\nscratches\\nscratchier\\nscratchiest\\nscratching\\nscratchy\\nscrawl\\nscrawled\\nscrawler\\nscrawlers\\nscrawlier\\nscrawliest\\nscrawling\\nscrawls\\nscrawly\\nscrawnier\\nscrawniest\\nscrawny\\nscreak\\nscreaked\\nscreaking\\nscreaks\\nscreaky\\nscream\\nscreamed\\nscreamer\\nscreamers\\nscreaming\\nscreams\\nscree\\nscreech\\nscreeched\\nscreeches\\nscreechier\\nscreechiest\\nscreeching\\nscreechy\\nscreed\\nscreeded\\nscreeding\\nscreeds\\nscreen\\nscreened\\nscreener\\nscreeners\\nscreening\\nscreens\\nscrees\\nscrew\\nscrewball\\nscrewballs\\nscrewdriver\\nscrewdrivers\\nscrewed\\nscrewer\\nscrewers\\nscrewier\\nscrewiest\\nscrewing\\nscrews\\nscrewy\\nscribal\\nscribble\\nscribbled\\nscribbles\\nscribbling\\nscribe\\nscribed\\nscriber\\nscribers\\nscribes\\nscribing\\nscrieve\\nscrieved\\nscrieves\\nscrieving\\nscrim\\nscrimp\\nscrimped\\nscrimpier\\nscrimpiest\\nscrimping\\nscrimpit\\nscrimps\\nscrimpy\\nscrims\\nscrip\\nscrips\\nscript\\nscripted\\nscripting\\nscripts\\nscriptural\\nscripture\\nscriptures\\nscrive\\nscrived\\nscrives\\nscriving\\nscrod\\nscrods\\nscrofula\\nscrofulas\\nscroggier\\nscroggiest\\nscroggy\\nscroll\\nscrolls\\nscrooge\\nscrooges\\nscroop\\nscrooped\\nscrooping\\nscroops\\nscrota\\nscrotal\\nscrotum\\nscrotums\\nscrouge\\nscrouged\\nscrouges\\nscrouging\\nscrounge\\nscrounged\\nscrounges\\nscroungier\\nscroungiest\\nscrounging\\nscroungy\\nscrub\\nscrubbed\\nscrubber\\nscrubbers\\nscrubbier\\nscrubbiest\\nscrubbing\\nscrubby\\nscrubs\\nscruff\\nscruffier\\nscruffiest\\nscruffs\\nscruffy\\nscrum\\nscrums\\nscrunch\\nscrunched\\nscrunches\\nscrunching\\nscruple\\nscrupled\\nscruples\\nscrupling\\nscrupulous\\nscrupulously\\nscrutinies\\nscrutinize\\nscrutinized\\nscrutinizes\\nscrutinizing\\nscrutiny\\nscuba\\nscubas\\nscud\\nscudded\\nscudding\\nscudi\\nscudo\\nscuds\\nscuff\\nscuffed\\nscuffing\\nscuffle\\nscuffled\\nscuffler\\nscufflers\\nscuffles\\nscuffling\\nscuffs\\nsculk\\nsculked\\nsculker\\nsculkers\\nsculking\\nsculks\\nscull\\nsculled\\nsculler\\nsculleries\\nscullers\\nscullery\\nsculling\\nscullion\\nscullions\\nsculls\\nsculp\\nsculped\\nsculpin\\nsculping\\nsculpins\\nsculps\\nsculpt\\nsculpted\\nsculpting\\nsculptor\\nsculptors\\nsculpts\\nsculptural\\nsculpture\\nsculptured\\nsculptures\\nsculpturing\\nscum\\nscumble\\nscumbled\\nscumbles\\nscumbling\\nscumlike\\nscummed\\nscummer\\nscummers\\nscummier\\nscummiest\\nscumming\\nscummy\\nscums\\nscunner\\nscunnered\\nscunnering\\nscunners\\nscup\\nscuppaug\\nscuppaugs\\nscupper\\nscuppered\\nscuppering\\nscuppers\\nscups\\nscurf\\nscurfier\\nscurfiest\\nscurfs\\nscurfy\\nscurried\\nscurries\\nscurril\\nscurrile\\nscurrilous\\nscurry\\nscurrying\\nscurvier\\nscurvies\\nscurviest\\nscurvily\\nscurvy\\nscut\\nscuta\\nscutage\\nscutages\\nscutate\\nscutch\\nscutched\\nscutcher\\nscutchers\\nscutches\\nscutching\\nscute\\nscutella\\nscutes\\nscuts\\nscutter\\nscuttered\\nscuttering\\nscutters\\nscuttle\\nscuttled\\nscuttles\\nscuttling\\nscutum\\nscyphate\\nscythe\\nscythed\\nscythes\\nscything\\nsea\\nseabag\\nseabags\\nseabeach\\nseabeaches\\nseabed\\nseabeds\\nseabird\\nseabirds\\nseaboard\\nseaboards\\nseaboot\\nseaboots\\nseaborne\\nseacoast\\nseacoasts\\nseacock\\nseacocks\\nseacraft\\nseacrafts\\nseadog\\nseadogs\\nseadrome\\nseadromes\\nseafarer\\nseafarers\\nseafaring\\nseafarings\\nseafloor\\nseafloors\\nseafood\\nseafoods\\nseafowl\\nseafowls\\nseafront\\nseafronts\\nseagirt\\nseagoing\\nseal\\nsealable\\nsealant\\nsealants\\nsealed\\nsealer\\nsealeries\\nsealers\\nsealery\\nsealing\\nseallike\\nseals\\nsealskin\\nsealskins\\nseam\\nseaman\\nseamanly\\nseamanship\\nseamanships\\nseamark\\nseamarks\\nseamed\\nseamen\\nseamer\\nseamers\\nseamier\\nseamiest\\nseaming\\nseamless\\nseamlike\\nseamount\\nseamounts\\nseams\\nseamster\\nseamsters\\nseamstress\\nseamstresses\\nseamy\\nseance\\nseances\\nseapiece\\nseapieces\\nseaplane\\nseaplanes\\nseaport\\nseaports\\nseaquake\\nseaquakes\\nsear\\nsearch\\nsearched\\nsearcher\\nsearchers\\nsearches\\nsearching\\nsearchlight\\nsearchlights\\nseared\\nsearer\\nsearest\\nsearing\\nsears\\nseas\\nseascape\\nseascapes\\nseascout\\nseascouts\\nseashell\\nseashells\\nseashore\\nseashores\\nseasick\\nseasickness\\nseasicknesses\\nseaside\\nseasides\\nseason\\nseasonable\\nseasonably\\nseasonal\\nseasonally\\nseasoned\\nseasoner\\nseasoners\\nseasoning\\nseasons\\nseat\\nseated\\nseater\\nseaters\\nseating\\nseatings\\nseatless\\nseatmate\\nseatmates\\nseatrain\\nseatrains\\nseats\\nseatwork\\nseatworks\\nseawall\\nseawalls\\nseawan\\nseawans\\nseawant\\nseawants\\nseaward\\nseawards\\nseaware\\nseawares\\nseawater\\nseawaters\\nseaway\\nseaways\\nseaweed\\nseaweeds\\nseaworthy\\nsebacic\\nsebasic\\nsebum\\nsebums\\nsec\\nsecant\\nsecantly\\nsecants\\nsecateur\\nsecateurs\\nsecco\\nseccos\\nsecede\\nseceded\\nseceder\\nseceders\\nsecedes\\nseceding\\nsecern\\nsecerned\\nsecerning\\nsecerns\\nseclude\\nsecluded\\nsecludes\\nsecluding\\nseclusion\\nseclusions\\nsecond\\nsecondary\\nseconde\\nseconded\\nseconder\\nseconders\\nsecondes\\nsecondhand\\nsecondi\\nseconding\\nsecondly\\nsecondo\\nseconds\\nsecpar\\nsecpars\\nsecrecies\\nsecrecy\\nsecret\\nsecretarial\\nsecretariat\\nsecretariats\\nsecretaries\\nsecretary\\nsecrete\\nsecreted\\nsecreter\\nsecretes\\nsecretest\\nsecretin\\nsecreting\\nsecretins\\nsecretion\\nsecretions\\nsecretive\\nsecretly\\nsecretor\\nsecretors\\nsecrets\\nsecs\\nsect\\nsectarian\\nsectarians\\nsectaries\\nsectary\\nsectile\\nsection\\nsectional\\nsectioned\\nsectioning\\nsections\\nsector\\nsectoral\\nsectored\\nsectoring\\nsectors\\nsects\\nsecular\\nseculars\\nsecund\\nsecundly\\nsecundum\\nsecure\\nsecured\\nsecurely\\nsecurer\\nsecurers\\nsecures\\nsecurest\\nsecuring\\nsecurities\\nsecurity\\nsedan\\nsedans\\nsedarim\\nsedate\\nsedated\\nsedately\\nsedater\\nsedates\\nsedatest\\nsedating\\nsedation\\nsedations\\nsedative\\nsedatives\\nsedentary\\nseder\\nseders\\nsederunt\\nsederunts\\nsedge\\nsedges\\nsedgier\\nsedgiest\\nsedgy\\nsedile\\nsedilia\\nsedilium\\nsediment\\nsedimentary\\nsedimentation\\nsedimentations\\nsedimented\\nsedimenting\\nsediments\\nsedition\\nseditions\\nseditious\\nseduce\\nseduced\\nseducer\\nseducers\\nseduces\\nseducing\\nseducive\\nseduction\\nseductions\\nseductive\\nsedulities\\nsedulity\\nsedulous\\nsedum\\nsedums\\nsee\\nseeable\\nseecatch\\nseecatchie\\nseed\\nseedbed\\nseedbeds\\nseedcake\\nseedcakes\\nseedcase\\nseedcases\\nseeded\\nseeder\\nseeders\\nseedier\\nseediest\\nseedily\\nseeding\\nseedless\\nseedlike\\nseedling\\nseedlings\\nseedman\\nseedmen\\nseedpod\\nseedpods\\nseeds\\nseedsman\\nseedsmen\\nseedtime\\nseedtimes\\nseedy\\nseeing\\nseeings\\nseek\\nseeker\\nseekers\\nseeking\\nseeks\\nseel\\nseeled\\nseeling\\nseels\\nseely\\nseem\\nseemed\\nseemer\\nseemers\\nseeming\\nseemingly\\nseemings\\nseemlier\\nseemliest\\nseemly\\nseems\\nseen\\nseep\\nseepage\\nseepages\\nseeped\\nseepier\\nseepiest\\nseeping\\nseeps\\nseepy\\nseer\\nseeress\\nseeresses\\nseers\\nseersucker\\nseersuckers\\nsees\\nseesaw\\nseesawed\\nseesawing\\nseesaws\\nseethe\\nseethed\\nseethes\\nseething\\nsegetal\\nseggar\\nseggars\\nsegment\\nsegmented\\nsegmenting\\nsegments\\nsegni\\nsegno\\nsegnos\\nsego\\nsegos\\nsegregate\\nsegregated\\nsegregates\\nsegregating\\nsegregation\\nsegregations\\nsegue\\nsegued\\nsegueing\\nsegues\\nsei\\nseicento\\nseicentos\\nseiche\\nseiches\\nseidel\\nseidels\\nseigneur\\nseigneurs\\nseignior\\nseigniors\\nseignories\\nseignory\\nseine\\nseined\\nseiner\\nseiners\\nseines\\nseining\\nseis\\nseisable\\nseise\\nseised\\nseiser\\nseisers\\nseises\\nseisin\\nseising\\nseisings\\nseisins\\nseism\\nseismal\\nseismic\\nseismism\\nseismisms\\nseismograph\\nseismographs\\nseisms\\nseisor\\nseisors\\nseisure\\nseisures\\nseizable\\nseize\\nseized\\nseizer\\nseizers\\nseizes\\nseizin\\nseizing\\nseizings\\nseizins\\nseizor\\nseizors\\nseizure\\nseizures\\nsejant\\nsejeant\\nsel\\nseladang\\nseladangs\\nselah\\nselahs\\nselamlik\\nselamliks\\nselcouth\\nseldom\\nseldomly\\nselect\\nselected\\nselectee\\nselectees\\nselecting\\nselection\\nselections\\nselective\\nselectly\\nselectman\\nselectmen\\nselector\\nselectors\\nselects\\nselenate\\nselenates\\nselenic\\nselenide\\nselenides\\nselenite\\nselenites\\nselenium\\nseleniums\\nselenous\\nself\\nselfdom\\nselfdoms\\nselfed\\nselfheal\\nselfheals\\nselfhood\\nselfhoods\\nselfing\\nselfish\\nselfishly\\nselfishness\\nselfishnesses\\nselfless\\nselflessness\\nselflessnesses\\nselfness\\nselfnesses\\nselfs\\nselfsame\\nselfward\\nsell\\nsellable\\nselle\\nseller\\nsellers\\nselles\\nselling\\nsellout\\nsellouts\\nsells\\nsels\\nselsyn\\nselsyns\\nseltzer\\nseltzers\\nselvage\\nselvaged\\nselvages\\nselvedge\\nselvedges\\nselves\\nsemantic\\nsemantics\\nsemaphore\\nsemaphores\\nsematic\\nsemblance\\nsemblances\\nseme\\nsememe\\nsememes\\nsemen\\nsemens\\nsemes\\nsemester\\nsemesters\\nsemi\\nsemiarid\\nsemibald\\nsemicolon\\nsemicolons\\nsemicoma\\nsemicomas\\nsemiconductor\\nsemiconductors\\nsemideaf\\nsemidome\\nsemidomes\\nsemidry\\nsemifinal\\nsemifinalist\\nsemifinalists\\nsemifinals\\nsemifit\\nsemiformal\\nsemigala\\nsemihard\\nsemihigh\\nsemihobo\\nsemihoboes\\nsemihobos\\nsemilog\\nsemimat\\nsemimatt\\nsemimute\\nsemina\\nseminal\\nseminar\\nseminarian\\nseminarians\\nseminaries\\nseminars\\nseminary\\nseminude\\nsemioses\\nsemiosis\\nsemiotic\\nsemiotics\\nsemipro\\nsemipros\\nsemiraw\\nsemis\\nsemises\\nsemisoft\\nsemitist\\nsemitists\\nsemitone\\nsemitones\\nsemiwild\\nsemolina\\nsemolinas\\nsemple\\nsemplice\\nsempre\\nsen\\nsenarii\\nsenarius\\nsenary\\nsenate\\nsenates\\nsenator\\nsenatorial\\nsenators\\nsend\\nsendable\\nsendal\\nsendals\\nsender\\nsenders\\nsending\\nsendoff\\nsendoffs\\nsends\\nseneca\\nsenecas\\nsenecio\\nsenecios\\nsenega\\nsenegas\\nsengi\\nsenhor\\nsenhora\\nsenhoras\\nsenhores\\nsenhors\\nsenile\\nsenilely\\nseniles\\nsenilities\\nsenility\\nsenior\\nseniorities\\nseniority\\nseniors\\nseniti\\nsenna\\nsennas\\nsennet\\nsennets\\nsennight\\nsennights\\nsennit\\nsennits\\nsenopia\\nsenopias\\nsenor\\nsenora\\nsenoras\\nsenores\\nsenorita\\nsenoritas\\nsenors\\nsensa\\nsensate\\nsensated\\nsensates\\nsensating\\nsensation\\nsensational\\nsensations\\nsense\\nsensed\\nsenseful\\nsenseless\\nsenselessly\\nsenses\\nsensibilities\\nsensibility\\nsensible\\nsensibler\\nsensibles\\nsensiblest\\nsensibly\\nsensilla\\nsensing\\nsensitive\\nsensitiveness\\nsensitivenesses\\nsensitivities\\nsensitivity\\nsensitize\\nsensitized\\nsensitizes\\nsensitizing\\nsensor\\nsensoria\\nsensors\\nsensory\\nsensual\\nsensualist\\nsensualists\\nsensualities\\nsensuality\\nsensually\\nsensum\\nsensuous\\nsensuously\\nsensuousness\\nsensuousnesses\\nsent\\nsentence\\nsentenced\\nsentences\\nsentencing\\nsententious\\nsenti\\nsentient\\nsentients\\nsentiment\\nsentimental\\nsentimentalism\\nsentimentalisms\\nsentimentalist\\nsentimentalists\\nsentimentalize\\nsentimentalized\\nsentimentalizes\\nsentimentalizing\\nsentimentally\\nsentiments\\nsentinel\\nsentineled\\nsentineling\\nsentinelled\\nsentinelling\\nsentinels\\nsentries\\nsentry\\nsepal\\nsepaled\\nsepaline\\nsepalled\\nsepaloid\\nsepalous\\nsepals\\nseparable\\nseparate\\nseparated\\nseparately\\nseparates\\nseparating\\nseparation\\nseparations\\nseparator\\nseparators\\nsepia\\nsepias\\nsepic\\nsepoy\\nsepoys\\nseppuku\\nseppukus\\nsepses\\nsepsis\\nsept\\nsepta\\nseptal\\nseptaria\\nseptate\\nseptember\\nseptet\\nseptets\\nseptette\\nseptettes\\nseptic\\nseptical\\nseptics\\nseptime\\nseptimes\\nsepts\\nseptum\\nseptuple\\nseptupled\\nseptuples\\nseptupling\\nsepulcher\\nsepulchers\\nsepulchral\\nsepulchre\\nsepulchres\\nsequel\\nsequela\\nsequelae\\nsequels\\nsequence\\nsequenced\\nsequences\\nsequencies\\nsequencing\\nsequency\\nsequent\\nsequential\\nsequentially\\nsequents\\nsequester\\nsequestered\\nsequestering\\nsequesters\\nsequin\\nsequined\\nsequins\\nsequitur\\nsequiturs\\nsequoia\\nsequoias\\nser\\nsera\\nserac\\nseracs\\nseraglio\\nseraglios\\nserai\\nserail\\nserails\\nserais\\nseral\\nserape\\nserapes\\nseraph\\nseraphic\\nseraphim\\nseraphims\\nseraphin\\nseraphs\\nserdab\\nserdabs\\nsere\\nsered\\nserein\\nsereins\\nserenade\\nserenaded\\nserenades\\nserenading\\nserenata\\nserenatas\\nserenate\\nserendipitous\\nserendipity\\nserene\\nserenely\\nserener\\nserenes\\nserenest\\nserenities\\nserenity\\nserer\\nseres\\nserest\\nserf\\nserfage\\nserfages\\nserfdom\\nserfdoms\\nserfhood\\nserfhoods\\nserfish\\nserflike\\nserfs\\nserge\\nsergeant\\nsergeants\\nserges\\nserging\\nsergings\\nserial\\nserially\\nserials\\nseriate\\nseriated\\nseriates\\nseriatim\\nseriating\\nsericin\\nsericins\\nseriema\\nseriemas\\nseries\\nserif\\nserifs\\nserin\\nserine\\nserines\\nsering\\nseringa\\nseringas\\nserins\\nserious\\nseriously\\nseriousness\\nseriousnesses\\nserjeant\\nserjeants\\nsermon\\nsermonic\\nsermons\\nserologies\\nserology\\nserosa\\nserosae\\nserosal\\nserosas\\nserosities\\nserosity\\nserotine\\nserotines\\nserotype\\nserotypes\\nserous\\nserow\\nserows\\nserpent\\nserpentine\\nserpents\\nserpigines\\nserpigo\\nserpigoes\\nserranid\\nserranids\\nserrate\\nserrated\\nserrates\\nserrating\\nserried\\nserries\\nserry\\nserrying\\nsers\\nserum\\nserumal\\nserums\\nservable\\nserval\\nservals\\nservant\\nservants\\nserve\\nserved\\nserver\\nservers\\nserves\\nservice\\nserviceable\\nserviced\\nserviceman\\nservicemen\\nservicer\\nservicers\\nservices\\nservicing\\nservile\\nservilities\\nservility\\nserving\\nservings\\nservitor\\nservitors\\nservitude\\nservitudes\\nservo\\nservos\\nsesame\\nsesames\\nsesamoid\\nsesamoids\\nsessile\\nsession\\nsessions\\nsesspool\\nsesspools\\nsesterce\\nsesterces\\nsestet\\nsestets\\nsestina\\nsestinas\\nsestine\\nsestines\\nset\\nseta\\nsetae\\nsetal\\nsetback\\nsetbacks\\nsetiform\\nsetline\\nsetlines\\nsetoff\\nsetoffs\\nseton\\nsetons\\nsetose\\nsetous\\nsetout\\nsetouts\\nsets\\nsetscrew\\nsetscrews\\nsettee\\nsettees\\nsetter\\nsetters\\nsetting\\nsettings\\nsettle\\nsettled\\nsettlement\\nsettlements\\nsettler\\nsettlers\\nsettles\\nsettling\\nsettlings\\nsettlor\\nsettlors\\nsetulose\\nsetulous\\nsetup\\nsetups\\nseven\\nsevens\\nseventeen\\nseventeens\\nseventeenth\\nseventeenths\\nseventh\\nsevenths\\nseventies\\nseventieth\\nseventieths\\nseventy\\nsever\\nseveral\\nseverals\\nseverance\\nseverances\\nsevere\\nsevered\\nseverely\\nseverer\\nseverest\\nsevering\\nseverities\\nseverity\\nsevers\\nsew\\nsewage\\nsewages\\nsewan\\nsewans\\nsewar\\nsewars\\nsewed\\nsewer\\nsewerage\\nsewerages\\nsewers\\nsewing\\nsewings\\nsewn\\nsews\\nsex\\nsexed\\nsexes\\nsexier\\nsexiest\\nsexily\\nsexiness\\nsexinesses\\nsexing\\nsexism\\nsexisms\\nsexist\\nsexists\\nsexless\\nsexologies\\nsexology\\nsexpot\\nsexpots\\nsext\\nsextain\\nsextains\\nsextan\\nsextans\\nsextant\\nsextants\\nsextarii\\nsextet\\nsextets\\nsextette\\nsextettes\\nsextile\\nsextiles\\nsexto\\nsexton\\nsextons\\nsextos\\nsexts\\nsextuple\\nsextupled\\nsextuples\\nsextupling\\nsextuply\\nsexual\\nsexualities\\nsexuality\\nsexually\\nsexy\\nsferics\\nsforzato\\nsforzatos\\nsfumato\\nsfumatos\\nsh\\nshabbier\\nshabbiest\\nshabbily\\nshabbiness\\nshabbinesses\\nshabby\\nshack\\nshackle\\nshackled\\nshackler\\nshacklers\\nshackles\\nshackling\\nshacko\\nshackoes\\nshackos\\nshacks\\nshad\\nshadblow\\nshadblows\\nshadbush\\nshadbushes\\nshadchan\\nshadchanim\\nshadchans\\nshaddock\\nshaddocks\\nshade\\nshaded\\nshader\\nshaders\\nshades\\nshadflies\\nshadfly\\nshadier\\nshadiest\\nshadily\\nshading\\nshadings\\nshadoof\\nshadoofs\\nshadow\\nshadowed\\nshadower\\nshadowers\\nshadowier\\nshadowiest\\nshadowing\\nshadows\\nshadowy\\nshadrach\\nshadrachs\\nshads\\nshaduf\\nshadufs\\nshady\\nshaft\\nshafted\\nshafting\\nshaftings\\nshafts\\nshag\\nshagbark\\nshagbarks\\nshagged\\nshaggier\\nshaggiest\\nshaggily\\nshagging\\nshaggy\\nshagreen\\nshagreens\\nshags\\nshah\\nshahdom\\nshahdoms\\nshahs\\nshaird\\nshairds\\nshairn\\nshairns\\nshaitan\\nshaitans\\nshakable\\nshake\\nshaken\\nshakeout\\nshakeouts\\nshaker\\nshakers\\nshakes\\nshakeup\\nshakeups\\nshakier\\nshakiest\\nshakily\\nshakiness\\nshakinesses\\nshaking\\nshako\\nshakoes\\nshakos\\nshaky\\nshale\\nshaled\\nshales\\nshalier\\nshaliest\\nshall\\nshalloon\\nshalloons\\nshallop\\nshallops\\nshallot\\nshallots\\nshallow\\nshallowed\\nshallower\\nshallowest\\nshallowing\\nshallows\\nshalom\\nshalt\\nshaly\\nsham\\nshamable\\nshaman\\nshamanic\\nshamans\\nshamble\\nshambled\\nshambles\\nshambling\\nshame\\nshamed\\nshamefaced\\nshameful\\nshamefully\\nshameless\\nshamelessly\\nshames\\nshaming\\nshammas\\nshammash\\nshammashim\\nshammasim\\nshammed\\nshammer\\nshammers\\nshammes\\nshammied\\nshammies\\nshamming\\nshammos\\nshammosim\\nshammy\\nshammying\\nshamois\\nshamosim\\nshamoy\\nshamoyed\\nshamoying\\nshamoys\\nshampoo\\nshampooed\\nshampooing\\nshampoos\\nshamrock\\nshamrocks\\nshams\\nshamus\\nshamuses\\nshandies\\nshandy\\nshanghai\\nshanghaied\\nshanghaiing\\nshanghais\\nshank\\nshanked\\nshanking\\nshanks\\nshantey\\nshanteys\\nshanti\\nshanties\\nshantih\\nshantihs\\nshantis\\nshantung\\nshantungs\\nshanty\\nshapable\\nshape\\nshaped\\nshapeless\\nshapelier\\nshapeliest\\nshapely\\nshapen\\nshaper\\nshapers\\nshapes\\nshapeup\\nshapeups\\nshaping\\nsharable\\nshard\\nshards\\nshare\\nsharecrop\\nsharecroped\\nsharecroping\\nsharecropper\\nsharecroppers\\nsharecrops\\nshared\\nshareholder\\nshareholders\\nsharer\\nsharers\\nshares\\nsharif\\nsharifs\\nsharing\\nshark\\nsharked\\nsharker\\nsharkers\\nsharking\\nsharks\\nsharn\\nsharns\\nsharny\\nsharp\\nsharped\\nsharpen\\nsharpened\\nsharpener\\nsharpeners\\nsharpening\\nsharpens\\nsharper\\nsharpers\\nsharpest\\nsharpie\\nsharpies\\nsharping\\nsharply\\nsharpness\\nsharpnesses\\nsharps\\nsharpshooter\\nsharpshooters\\nsharpshooting\\nsharpshootings\\nsharpy\\nshashlik\\nshashliks\\nshaslik\\nshasliks\\nshat\\nshatter\\nshattered\\nshattering\\nshatters\\nshaugh\\nshaughs\\nshaul\\nshauled\\nshauling\\nshauls\\nshavable\\nshave\\nshaved\\nshaven\\nshaver\\nshavers\\nshaves\\nshavie\\nshavies\\nshaving\\nshavings\\nshaw\\nshawed\\nshawing\\nshawl\\nshawled\\nshawling\\nshawls\\nshawm\\nshawms\\nshawn\\nshaws\\nshay\\nshays\\nshe\\nshea\\nsheaf\\nsheafed\\nsheafing\\nsheafs\\nsheal\\nshealing\\nshealings\\nsheals\\nshear\\nsheared\\nshearer\\nshearers\\nshearing\\nshears\\nsheas\\nsheath\\nsheathe\\nsheathed\\nsheather\\nsheathers\\nsheathes\\nsheathing\\nsheaths\\nsheave\\nsheaved\\nsheaves\\nsheaving\\nshebang\\nshebangs\\nshebean\\nshebeans\\nshebeen\\nshebeens\\nshed\\nshedable\\nshedded\\nshedder\\nshedders\\nshedding\\nsheds\\nsheen\\nsheened\\nsheeney\\nsheeneys\\nsheenful\\nsheenie\\nsheenier\\nsheenies\\nsheeniest\\nsheening\\nsheens\\nsheeny\\nsheep\\nsheepdog\\nsheepdogs\\nsheepish\\nsheepman\\nsheepmen\\nsheepskin\\nsheepskins\\nsheer\\nsheered\\nsheerer\\nsheerest\\nsheering\\nsheerly\\nsheers\\nsheet\\nsheeted\\nsheeter\\nsheeters\\nsheetfed\\nsheeting\\nsheetings\\nsheets\\nsheeve\\nsheeves\\nshegetz\\nsheik\\nsheikdom\\nsheikdoms\\nsheikh\\nsheikhdom\\nsheikhdoms\\nsheikhs\\nsheiks\\nsheitan\\nsheitans\\nshekel\\nshekels\\nshelduck\\nshelducks\\nshelf\\nshelfful\\nshelffuls\\nshell\\nshellac\\nshellack\\nshellacked\\nshellacking\\nshellackings\\nshellacks\\nshellacs\\nshelled\\nsheller\\nshellers\\nshellfish\\nshellfishes\\nshellier\\nshelliest\\nshelling\\nshells\\nshelly\\nshelter\\nsheltered\\nsheltering\\nshelters\\nsheltie\\nshelties\\nshelty\\nshelve\\nshelved\\nshelver\\nshelvers\\nshelves\\nshelvier\\nshelviest\\nshelving\\nshelvings\\nshelvy\\nshenanigans\\nshend\\nshending\\nshends\\nshent\\nsheol\\nsheols\\nshepherd\\nshepherded\\nshepherdess\\nshepherdesses\\nshepherding\\nshepherds\\nsherbert\\nsherberts\\nsherbet\\nsherbets\\nsherd\\nsherds\\nshereef\\nshereefs\\nsherif\\nsheriff\\nsheriffs\\nsherifs\\nsherlock\\nsherlocks\\nsheroot\\nsheroots\\nsherries\\nsherris\\nsherrises\\nsherry\\nshes\\nshetland\\nshetlands\\nsheuch\\nsheuchs\\nsheugh\\nsheughs\\nshew\\nshewed\\nshewer\\nshewers\\nshewing\\nshewn\\nshews\\nshh\\nshibah\\nshibahs\\nshicksa\\nshicksas\\nshied\\nshiel\\nshield\\nshielded\\nshielder\\nshielders\\nshielding\\nshields\\nshieling\\nshielings\\nshiels\\nshier\\nshiers\\nshies\\nshiest\\nshift\\nshifted\\nshifter\\nshifters\\nshiftier\\nshiftiest\\nshiftily\\nshifting\\nshiftless\\nshiftlessness\\nshiftlessnesses\\nshifts\\nshifty\\nshigella\\nshigellae\\nshigellas\\nshikar\\nshikaree\\nshikarees\\nshikari\\nshikaris\\nshikarred\\nshikarring\\nshikars\\nshiksa\\nshiksas\\nshikse\\nshikses\\nshilingi\\nshill\\nshillala\\nshillalas\\nshilled\\nshillelagh\\nshillelaghs\\nshilling\\nshillings\\nshills\\nshilpit\\nshily\\nshim\\nshimmed\\nshimmer\\nshimmered\\nshimmering\\nshimmers\\nshimmery\\nshimmied\\nshimmies\\nshimming\\nshimmy\\nshimmying\\nshims\\nshin\\nshinbone\\nshinbones\\nshindies\\nshindig\\nshindigs\\nshindy\\nshindys\\nshine\\nshined\\nshiner\\nshiners\\nshines\\nshingle\\nshingled\\nshingler\\nshinglers\\nshingles\\nshingling\\nshingly\\nshinier\\nshiniest\\nshinily\\nshining\\nshinleaf\\nshinleafs\\nshinleaves\\nshinned\\nshinneries\\nshinnery\\nshinney\\nshinneys\\nshinnied\\nshinnies\\nshinning\\nshinny\\nshinnying\\nshins\\nshiny\\nship\\nshipboard\\nshipboards\\nshipbuilder\\nshipbuilders\\nshiplap\\nshiplaps\\nshipload\\nshiploads\\nshipman\\nshipmate\\nshipmates\\nshipmen\\nshipment\\nshipments\\nshipped\\nshippen\\nshippens\\nshipper\\nshippers\\nshipping\\nshippings\\nshippon\\nshippons\\nships\\nshipshape\\nshipside\\nshipsides\\nshipway\\nshipways\\nshipworm\\nshipworms\\nshipwreck\\nshipwrecked\\nshipwrecking\\nshipwrecks\\nshipyard\\nshipyards\\nshire\\nshires\\nshirk\\nshirked\\nshirker\\nshirkers\\nshirking\\nshirks\\nshirr\\nshirred\\nshirring\\nshirrings\\nshirrs\\nshirt\\nshirtier\\nshirtiest\\nshirting\\nshirtings\\nshirtless\\nshirts\\nshirty\\nshist\\nshists\\nshiv\\nshiva\\nshivah\\nshivahs\\nshivaree\\nshivareed\\nshivareeing\\nshivarees\\nshivas\\nshive\\nshiver\\nshivered\\nshiverer\\nshiverers\\nshivering\\nshivers\\nshivery\\nshives\\nshivs\\nshkotzim\\nshlemiel\\nshlemiels\\nshlock\\nshlocks\\nshmo\\nshmoes\\nshnaps\\nshoal\\nshoaled\\nshoaler\\nshoalest\\nshoalier\\nshoaliest\\nshoaling\\nshoals\\nshoaly\\nshoat\\nshoats\\nshock\\nshocked\\nshocker\\nshockers\\nshocking\\nshockproof\\nshocks\\nshod\\nshodden\\nshoddier\\nshoddies\\nshoddiest\\nshoddily\\nshoddiness\\nshoddinesses\\nshoddy\\nshoe\\nshoebill\\nshoebills\\nshoed\\nshoehorn\\nshoehorned\\nshoehorning\\nshoehorns\\nshoeing\\nshoelace\\nshoelaces\\nshoemaker\\nshoemakers\\nshoepac\\nshoepack\\nshoepacks\\nshoepacs\\nshoer\\nshoers\\nshoes\\nshoetree\\nshoetrees\\nshofar\\nshofars\\nshofroth\\nshog\\nshogged\\nshogging\\nshogs\\nshogun\\nshogunal\\nshoguns\\nshoji\\nshojis\\nsholom\\nshone\\nshoo\\nshooed\\nshooflies\\nshoofly\\nshooing\\nshook\\nshooks\\nshool\\nshooled\\nshooling\\nshools\\nshoon\\nshoos\\nshoot\\nshooter\\nshooters\\nshooting\\nshootings\\nshoots\\nshop\\nshopboy\\nshopboys\\nshopgirl\\nshopgirls\\nshophar\\nshophars\\nshophroth\\nshopkeeper\\nshopkeepers\\nshoplift\\nshoplifted\\nshoplifter\\nshoplifters\\nshoplifting\\nshoplifts\\nshopman\\nshopmen\\nshoppe\\nshopped\\nshopper\\nshoppers\\nshoppes\\nshopping\\nshoppings\\nshops\\nshoptalk\\nshoptalks\\nshopworn\\nshoran\\nshorans\\nshore\\nshorebird\\nshorebirds\\nshored\\nshoreless\\nshores\\nshoring\\nshorings\\nshorl\\nshorls\\nshorn\\nshort\\nshortage\\nshortages\\nshortcake\\nshortcakes\\nshortchange\\nshortchanged\\nshortchanges\\nshortchanging\\nshortcoming\\nshortcomings\\nshortcut\\nshortcuts\\nshorted\\nshorten\\nshortened\\nshortening\\nshortens\\nshorter\\nshortest\\nshorthand\\nshorthands\\nshortia\\nshortias\\nshortie\\nshorties\\nshorting\\nshortish\\nshortliffe\\nshortly\\nshortness\\nshortnesses\\nshorts\\nshortsighted\\nshorty\\nshot\\nshote\\nshotes\\nshotgun\\nshotgunned\\nshotgunning\\nshotguns\\nshots\\nshott\\nshotted\\nshotten\\nshotting\\nshotts\\nshould\\nshoulder\\nshouldered\\nshouldering\\nshoulders\\nshouldest\\nshouldst\\nshout\\nshouted\\nshouter\\nshouters\\nshouting\\nshouts\\nshove\\nshoved\\nshovel\\nshoveled\\nshoveler\\nshovelers\\nshoveling\\nshovelled\\nshovelling\\nshovels\\nshover\\nshovers\\nshoves\\nshoving\\nshow\\nshowboat\\nshowboats\\nshowcase\\nshowcased\\nshowcases\\nshowcasing\\nshowdown\\nshowdowns\\nshowed\\nshower\\nshowered\\nshowering\\nshowers\\nshowery\\nshowgirl\\nshowgirls\\nshowier\\nshowiest\\nshowily\\nshowiness\\nshowinesses\\nshowing\\nshowings\\nshowman\\nshowmen\\nshown\\nshowoff\\nshowoffs\\nshowroom\\nshowrooms\\nshows\\nshowy\\nshrank\\nshrapnel\\nshred\\nshredded\\nshredder\\nshredders\\nshredding\\nshreds\\nshrew\\nshrewd\\nshrewder\\nshrewdest\\nshrewdly\\nshrewdness\\nshrewdnesses\\nshrewed\\nshrewing\\nshrewish\\nshrews\\nshri\\nshriek\\nshrieked\\nshrieker\\nshriekers\\nshriekier\\nshriekiest\\nshrieking\\nshrieks\\nshrieky\\nshrieval\\nshrieve\\nshrieved\\nshrieves\\nshrieving\\nshrift\\nshrifts\\nshrike\\nshrikes\\nshrill\\nshrilled\\nshriller\\nshrillest\\nshrilling\\nshrills\\nshrilly\\nshrimp\\nshrimped\\nshrimper\\nshrimpers\\nshrimpier\\nshrimpiest\\nshrimping\\nshrimps\\nshrimpy\\nshrine\\nshrined\\nshrines\\nshrining\\nshrink\\nshrinkable\\nshrinkage\\nshrinkages\\nshrinker\\nshrinkers\\nshrinking\\nshrinks\\nshris\\nshrive\\nshrived\\nshrivel\\nshriveled\\nshriveling\\nshrivelled\\nshrivelling\\nshrivels\\nshriven\\nshriver\\nshrivers\\nshrives\\nshriving\\nshroff\\nshroffed\\nshroffing\\nshroffs\\nshroud\\nshrouded\\nshrouding\\nshrouds\\nshrove\\nshrub\\nshrubberies\\nshrubbery\\nshrubbier\\nshrubbiest\\nshrubby\\nshrubs\\nshrug\\nshrugged\\nshrugging\\nshrugs\\nshrunk\\nshrunken\\nshtetel\\nshtetl\\nshtetlach\\nshtick\\nshticks\\nshuck\\nshucked\\nshucker\\nshuckers\\nshucking\\nshuckings\\nshucks\\nshudder\\nshuddered\\nshuddering\\nshudders\\nshuddery\\nshuffle\\nshuffleboard\\nshuffleboards\\nshuffled\\nshuffler\\nshufflers\\nshuffles\\nshuffling\\nshul\\nshuln\\nshuls\\nshun\\nshunned\\nshunner\\nshunners\\nshunning\\nshunpike\\nshunpikes\\nshuns\\nshunt\\nshunted\\nshunter\\nshunters\\nshunting\\nshunts\\nshush\\nshushed\\nshushes\\nshushing\\nshut\\nshutdown\\nshutdowns\\nshute\\nshuted\\nshutes\\nshuteye\\nshuteyes\\nshuting\\nshutoff\\nshutoffs\\nshutout\\nshutouts\\nshuts\\nshutter\\nshuttered\\nshuttering\\nshutters\\nshutting\\nshuttle\\nshuttlecock\\nshuttlecocks\\nshuttled\\nshuttles\\nshuttling\\nshwanpan\\nshwanpans\\nshy\\nshyer\\nshyers\\nshyest\\nshying\\nshylock\\nshylocked\\nshylocking\\nshylocks\\nshyly\\nshyness\\nshynesses\\nshyster\\nshysters\\nsi\\nsial\\nsialic\\nsialoid\\nsials\\nsiamang\\nsiamangs\\nsiamese\\nsiameses\\nsib\\nsibb\\nsibbs\\nsibilant\\nsibilants\\nsibilate\\nsibilated\\nsibilates\\nsibilating\\nsibling\\nsiblings\\nsibs\\nsibyl\\nsibylic\\nsibyllic\\nsibyls\\nsic\\nsiccan\\nsicced\\nsiccing\\nsice\\nsices\\nsick\\nsickbay\\nsickbays\\nsickbed\\nsickbeds\\nsicked\\nsicken\\nsickened\\nsickener\\nsickeners\\nsickening\\nsickens\\nsicker\\nsickerly\\nsickest\\nsicking\\nsickish\\nsickle\\nsickled\\nsickles\\nsicklied\\nsicklier\\nsicklies\\nsickliest\\nsicklily\\nsickling\\nsickly\\nsicklying\\nsickness\\nsicknesses\\nsickroom\\nsickrooms\\nsicks\\nsics\\nsiddur\\nsiddurim\\nsiddurs\\nside\\nsidearm\\nsideband\\nsidebands\\nsideboard\\nsideboards\\nsideburns\\nsidecar\\nsidecars\\nsided\\nsidehill\\nsidehills\\nsidekick\\nsidekicks\\nsideline\\nsidelined\\nsidelines\\nsideling\\nsidelining\\nsidelong\\nsideman\\nsidemen\\nsidereal\\nsiderite\\nsiderites\\nsides\\nsideshow\\nsideshows\\nsideslip\\nsideslipped\\nsideslipping\\nsideslips\\nsidespin\\nsidespins\\nsidestep\\nsidestepped\\nsidestepping\\nsidesteps\\nsideswipe\\nsideswiped\\nsideswipes\\nsideswiping\\nsidetrack\\nsidetracked\\nsidetracking\\nsidetracks\\nsidewalk\\nsidewalks\\nsidewall\\nsidewalls\\nsideward\\nsideway\\nsideways\\nsidewise\\nsiding\\nsidings\\nsidle\\nsidled\\nsidler\\nsidlers\\nsidles\\nsidling\\nsiege\\nsieged\\nsieges\\nsieging\\nsiemens\\nsienite\\nsienites\\nsienna\\nsiennas\\nsierozem\\nsierozems\\nsierra\\nsierran\\nsierras\\nsiesta\\nsiestas\\nsieur\\nsieurs\\nsieva\\nsieve\\nsieved\\nsieves\\nsieving\\nsiffleur\\nsiffleurs\\nsift\\nsifted\\nsifter\\nsifters\\nsifting\\nsiftings\\nsifts\\nsiganid\\nsiganids\\nsigh\\nsighed\\nsigher\\nsighers\\nsighing\\nsighless\\nsighlike\\nsighs\\nsight\\nsighted\\nsighter\\nsighters\\nsighting\\nsightless\\nsightlier\\nsightliest\\nsightly\\nsights\\nsightsaw\\nsightsee\\nsightseeing\\nsightseen\\nsightseer\\nsightseers\\nsightsees\\nsigil\\nsigils\\nsigloi\\nsiglos\\nsigma\\nsigmas\\nsigmate\\nsigmoid\\nsigmoids\\nsign\\nsignal\\nsignaled\\nsignaler\\nsignalers\\nsignaling\\nsignalled\\nsignalling\\nsignally\\nsignals\\nsignatories\\nsignatory\\nsignature\\nsignatures\\nsigned\\nsigner\\nsigners\\nsignet\\nsigneted\\nsigneting\\nsignets\\nsignficance\\nsignficances\\nsignficant\\nsignficantly\\nsignificance\\nsignificances\\nsignificant\\nsignificantly\\nsignification\\nsignifications\\nsignified\\nsignifies\\nsignify\\nsignifying\\nsigning\\nsignior\\nsigniori\\nsigniories\\nsigniors\\nsigniory\\nsignor\\nsignora\\nsignoras\\nsignore\\nsignori\\nsignories\\nsignors\\nsignory\\nsignpost\\nsignposted\\nsignposting\\nsignposts\\nsigns\\nsike\\nsiker\\nsikes\\nsilage\\nsilages\\nsilane\\nsilanes\\nsild\\nsilds\\nsilence\\nsilenced\\nsilencer\\nsilencers\\nsilences\\nsilencing\\nsileni\\nsilent\\nsilenter\\nsilentest\\nsilently\\nsilents\\nsilenus\\nsilesia\\nsilesias\\nsilex\\nsilexes\\nsilhouette\\nsilhouetted\\nsilhouettes\\nsilhouetting\\nsilica\\nsilicas\\nsilicate\\nsilicates\\nsilicic\\nsilicide\\nsilicides\\nsilicified\\nsilicifies\\nsilicify\\nsilicifying\\nsilicium\\nsiliciums\\nsilicle\\nsilicles\\nsilicon\\nsilicone\\nsilicones\\nsilicons\\nsiliqua\\nsiliquae\\nsilique\\nsiliques\\nsilk\\nsilked\\nsilken\\nsilkier\\nsilkiest\\nsilkily\\nsilking\\nsilklike\\nsilks\\nsilkweed\\nsilkweeds\\nsilkworm\\nsilkworms\\nsilky\\nsill\\nsillabub\\nsillabubs\\nsiller\\nsillers\\nsillibib\\nsillibibs\\nsillier\\nsillies\\nsilliest\\nsillily\\nsilliness\\nsillinesses\\nsills\\nsilly\\nsilo\\nsiloed\\nsiloing\\nsilos\\nsiloxane\\nsiloxanes\\nsilt\\nsilted\\nsiltier\\nsiltiest\\nsilting\\nsilts\\nsilty\\nsilurid\\nsilurids\\nsiluroid\\nsiluroids\\nsilva\\nsilvae\\nsilvan\\nsilvans\\nsilvas\\nsilver\\nsilvered\\nsilverer\\nsilverers\\nsilvering\\nsilverly\\nsilvern\\nsilvers\\nsilverware\\nsilverwares\\nsilvery\\nsilvical\\nsilvics\\nsim\\nsima\\nsimar\\nsimars\\nsimaruba\\nsimarubas\\nsimas\\nsimazine\\nsimazines\\nsimian\\nsimians\\nsimilar\\nsimilarities\\nsimilarity\\nsimilarly\\nsimile\\nsimiles\\nsimilitude\\nsimilitudes\\nsimioid\\nsimious\\nsimitar\\nsimitars\\nsimlin\\nsimlins\\nsimmer\\nsimmered\\nsimmering\\nsimmers\\nsimnel\\nsimnels\\nsimoleon\\nsimoleons\\nsimoniac\\nsimoniacs\\nsimonies\\nsimonist\\nsimonists\\nsimonize\\nsimonized\\nsimonizes\\nsimonizing\\nsimony\\nsimoom\\nsimooms\\nsimoon\\nsimoons\\nsimp\\nsimper\\nsimpered\\nsimperer\\nsimperers\\nsimpering\\nsimpers\\nsimple\\nsimpleness\\nsimplenesses\\nsimpler\\nsimples\\nsimplest\\nsimpleton\\nsimpletons\\nsimplex\\nsimplexes\\nsimplices\\nsimplicia\\nsimplicities\\nsimplicity\\nsimplification\\nsimplifications\\nsimplified\\nsimplifies\\nsimplify\\nsimplifying\\nsimplism\\nsimplisms\\nsimply\\nsimps\\nsims\\nsimulant\\nsimulants\\nsimular\\nsimulars\\nsimulate\\nsimulated\\nsimulates\\nsimulating\\nsimulation\\nsimulations\\nsimultaneous\\nsimultaneously\\nsimultaneousness\\nsimultaneousnesses\\nsin\\nsinapism\\nsinapisms\\nsince\\nsincere\\nsincerely\\nsincerer\\nsincerest\\nsincerities\\nsincerity\\nsincipita\\nsinciput\\nsinciputs\\nsine\\nsinecure\\nsinecures\\nsines\\nsinew\\nsinewed\\nsinewing\\nsinews\\nsinewy\\nsinfonia\\nsinfonie\\nsinful\\nsinfully\\nsing\\nsingable\\nsinge\\nsinged\\nsingeing\\nsinger\\nsingers\\nsinges\\nsinging\\nsingle\\nsingled\\nsingleness\\nsinglenesses\\nsingles\\nsinglet\\nsinglets\\nsingling\\nsingly\\nsings\\nsingsong\\nsingsongs\\nsingular\\nsingularities\\nsingularity\\nsingularly\\nsingulars\\nsinh\\nsinhs\\nsinicize\\nsinicized\\nsinicizes\\nsinicizing\\nsinister\\nsink\\nsinkable\\nsinkage\\nsinkages\\nsinker\\nsinkers\\nsinkhole\\nsinkholes\\nsinking\\nsinks\\nsinless\\nsinned\\nsinner\\nsinners\\nsinning\\nsinologies\\nsinology\\nsinopia\\nsinopias\\nsinopie\\nsins\\nsinsyne\\nsinter\\nsintered\\nsintering\\nsinters\\nsinuate\\nsinuated\\nsinuates\\nsinuating\\nsinuous\\nsinuousities\\nsinuousity\\nsinuously\\nsinus\\nsinuses\\nsinusoid\\nsinusoids\\nsip\\nsipe\\nsiped\\nsipes\\nsiphon\\nsiphonal\\nsiphoned\\nsiphonic\\nsiphoning\\nsiphons\\nsiping\\nsipped\\nsipper\\nsippers\\nsippet\\nsippets\\nsipping\\nsips\\nsir\\nsirdar\\nsirdars\\nsire\\nsired\\nsiree\\nsirees\\nsiren\\nsirenian\\nsirenians\\nsirens\\nsires\\nsiring\\nsirloin\\nsirloins\\nsirocco\\nsiroccos\\nsirra\\nsirrah\\nsirrahs\\nsirras\\nsirree\\nsirrees\\nsirs\\nsirup\\nsirups\\nsirupy\\nsirvente\\nsirventes\\nsis\\nsisal\\nsisals\\nsises\\nsiskin\\nsiskins\\nsissier\\nsissies\\nsissiest\\nsissy\\nsissyish\\nsister\\nsistered\\nsisterhood\\nsisterhoods\\nsistering\\nsisterly\\nsisters\\nsistra\\nsistroid\\nsistrum\\nsistrums\\nsit\\nsitar\\nsitarist\\nsitarists\\nsitars\\nsite\\nsited\\nsites\\nsith\\nsithence\\nsithens\\nsiti\\nsiting\\nsitologies\\nsitology\\nsits\\nsitten\\nsitter\\nsitters\\nsitting\\nsittings\\nsituate\\nsituated\\nsituates\\nsituating\\nsituation\\nsituations\\nsitus\\nsituses\\nsitzmark\\nsitzmarks\\nsiver\\nsivers\\nsix\\nsixes\\nsixfold\\nsixmo\\nsixmos\\nsixpence\\nsixpences\\nsixpenny\\nsixte\\nsixteen\\nsixteens\\nsixteenth\\nsixteenths\\nsixtes\\nsixth\\nsixthly\\nsixths\\nsixties\\nsixtieth\\nsixtieths\\nsixty\\nsizable\\nsizably\\nsizar\\nsizars\\nsize\\nsizeable\\nsizeably\\nsized\\nsizer\\nsizers\\nsizes\\nsizier\\nsiziest\\nsiziness\\nsizinesses\\nsizing\\nsizings\\nsizy\\nsizzle\\nsizzled\\nsizzler\\nsizzlers\\nsizzles\\nsizzling\\nskag\\nskags\\nskald\\nskaldic\\nskalds\\nskat\\nskate\\nskated\\nskater\\nskaters\\nskates\\nskating\\nskatings\\nskatol\\nskatole\\nskatoles\\nskatols\\nskats\\nskean\\nskeane\\nskeanes\\nskeans\\nskee\\nskeed\\nskeeing\\nskeen\\nskeens\\nskees\\nskeet\\nskeeter\\nskeeters\\nskeets\\nskeg\\nskegs\\nskeigh\\nskein\\nskeined\\nskeining\\nskeins\\nskeletal\\nskeleton\\nskeletons\\nskellum\\nskellums\\nskelp\\nskelped\\nskelping\\nskelpit\\nskelps\\nskelter\\nskeltered\\nskeltering\\nskelters\\nskene\\nskenes\\nskep\\nskeps\\nskepsis\\nskepsises\\nskeptic\\nskeptical\\nskepticism\\nskepticisms\\nskeptics\\nskerries\\nskerry\\nsketch\\nsketched\\nsketcher\\nsketchers\\nsketches\\nsketchier\\nsketchiest\\nsketching\\nsketchy\\nskew\\nskewback\\nskewbacks\\nskewbald\\nskewbalds\\nskewed\\nskewer\\nskewered\\nskewering\\nskewers\\nskewing\\nskewness\\nskewnesses\\nskews\\nski\\nskiable\\nskiagram\\nskiagrams\\nskibob\\nskibobs\\nskid\\nskidded\\nskidder\\nskidders\\nskiddier\\nskiddiest\\nskidding\\nskiddoo\\nskiddooed\\nskiddooing\\nskiddoos\\nskiddy\\nskidoo\\nskidooed\\nskidooing\\nskidoos\\nskids\\nskidway\\nskidways\\nskied\\nskier\\nskiers\\nskies\\nskiey\\nskiff\\nskiffle\\nskiffled\\nskiffles\\nskiffling\\nskiffs\\nskiing\\nskiings\\nskiis\\nskijorer\\nskijorers\\nskilful\\nskill\\nskilled\\nskilless\\nskillet\\nskillets\\nskillful\\nskillfully\\nskillfulness\\nskillfulnesses\\nskilling\\nskillings\\nskills\\nskim\\nskimmed\\nskimmer\\nskimmers\\nskimming\\nskimmings\\nskimo\\nskimos\\nskimp\\nskimped\\nskimpier\\nskimpiest\\nskimpily\\nskimping\\nskimps\\nskimpy\\nskims\\nskin\\nskinflint\\nskinflints\\nskinful\\nskinfuls\\nskinhead\\nskinheads\\nskink\\nskinked\\nskinker\\nskinkers\\nskinking\\nskinks\\nskinless\\nskinlike\\nskinned\\nskinner\\nskinners\\nskinnier\\nskinniest\\nskinning\\nskinny\\nskins\\nskint\\nskintight\\nskioring\\nskiorings\\nskip\\nskipjack\\nskipjacks\\nskiplane\\nskiplanes\\nskipped\\nskipper\\nskippered\\nskippering\\nskippers\\nskippet\\nskippets\\nskipping\\nskips\\nskirl\\nskirled\\nskirling\\nskirls\\nskirmish\\nskirmished\\nskirmishes\\nskirmishing\\nskirr\\nskirred\\nskirret\\nskirrets\\nskirring\\nskirrs\\nskirt\\nskirted\\nskirter\\nskirters\\nskirting\\nskirtings\\nskirts\\nskis\\nskit\\nskite\\nskited\\nskites\\nskiting\\nskits\\nskitter\\nskittered\\nskitterier\\nskitteriest\\nskittering\\nskitters\\nskittery\\nskittish\\nskittle\\nskittles\\nskive\\nskived\\nskiver\\nskivers\\nskives\\nskiving\\nskivvies\\nskivvy\\nskiwear\\nskiwears\\nsklent\\nsklented\\nsklenting\\nsklents\\nskoal\\nskoaled\\nskoaling\\nskoals\\nskookum\\nskreegh\\nskreeghed\\nskreeghing\\nskreeghs\\nskreigh\\nskreighed\\nskreighing\\nskreighs\\nskua\\nskuas\\nskulk\\nskulked\\nskulker\\nskulkers\\nskulking\\nskulks\\nskull\\nskullcap\\nskullcaps\\nskulled\\nskulls\\nskunk\\nskunked\\nskunking\\nskunks\\nsky\\nskyborne\\nskycap\\nskycaps\\nskydive\\nskydived\\nskydiver\\nskydivers\\nskydives\\nskydiving\\nskydove\\nskyed\\nskyey\\nskyhook\\nskyhooks\\nskying\\nskyjack\\nskyjacked\\nskyjacking\\nskyjacks\\nskylark\\nskylarked\\nskylarking\\nskylarks\\nskylight\\nskylights\\nskyline\\nskylines\\nskyman\\nskymen\\nskyphoi\\nskyphos\\nskyrocket\\nskyrocketed\\nskyrocketing\\nskyrockets\\nskysail\\nskysails\\nskyscraper\\nskyscrapers\\nskyward\\nskywards\\nskyway\\nskyways\\nskywrite\\nskywrites\\nskywriting\\nskywritten\\nskywrote\\nslab\\nslabbed\\nslabber\\nslabbered\\nslabbering\\nslabbers\\nslabbery\\nslabbing\\nslabs\\nslack\\nslacked\\nslacken\\nslackened\\nslackening\\nslackens\\nslacker\\nslackers\\nslackest\\nslacking\\nslackly\\nslackness\\nslacknesses\\nslacks\\nslag\\nslagged\\nslaggier\\nslaggiest\\nslagging\\nslaggy\\nslags\\nslain\\nslakable\\nslake\\nslaked\\nslaker\\nslakers\\nslakes\\nslaking\\nslalom\\nslalomed\\nslaloming\\nslaloms\\nslam\\nslammed\\nslamming\\nslams\\nslander\\nslandered\\nslanderer\\nslanderers\\nslandering\\nslanderous\\nslanders\\nslang\\nslanged\\nslangier\\nslangiest\\nslangily\\nslanging\\nslangs\\nslangy\\nslank\\nslant\\nslanted\\nslanting\\nslants\\nslap\\nslapdash\\nslapdashes\\nslapjack\\nslapjacks\\nslapped\\nslapper\\nslappers\\nslapping\\nslaps\\nslash\\nslashed\\nslasher\\nslashers\\nslashes\\nslashing\\nslashings\\nslat\\nslatch\\nslatches\\nslate\\nslated\\nslater\\nslaters\\nslates\\nslather\\nslathered\\nslathering\\nslathers\\nslatier\\nslatiest\\nslating\\nslatings\\nslats\\nslatted\\nslattern\\nslatterns\\nslatting\\nslaty\\nslaughter\\nslaughtered\\nslaughterhouse\\nslaughterhouses\\nslaughtering\\nslaughters\\nslave\\nslaved\\nslaver\\nslavered\\nslaverer\\nslaverers\\nslaveries\\nslavering\\nslavers\\nslavery\\nslaves\\nslavey\\nslaveys\\nslaving\\nslavish\\nslaw\\nslaws\\nslay\\nslayer\\nslayers\\nslaying\\nslays\\nsleave\\nsleaved\\nsleaves\\nsleaving\\nsleazier\\nsleaziest\\nsleazily\\nsleazy\\nsled\\nsledded\\nsledder\\nsledders\\nsledding\\nsleddings\\nsledge\\nsledged\\nsledgehammer\\nsledgehammered\\nsledgehammering\\nsledgehammers\\nsledges\\nsledging\\nsleds\\nsleek\\nsleeked\\nsleeken\\nsleekened\\nsleekening\\nsleekens\\nsleeker\\nsleekest\\nsleekier\\nsleekiest\\nsleeking\\nsleekit\\nsleekly\\nsleeks\\nsleeky\\nsleep\\nsleeper\\nsleepers\\nsleepier\\nsleepiest\\nsleepily\\nsleepiness\\nsleeping\\nsleepings\\nsleepless\\nsleeplessness\\nsleeps\\nsleepwalk\\nsleepwalked\\nsleepwalker\\nsleepwalkers\\nsleepwalking\\nsleepwalks\\nsleepy\\nsleet\\nsleeted\\nsleetier\\nsleetiest\\nsleeting\\nsleets\\nsleety\\nsleeve\\nsleeved\\nsleeveless\\nsleeves\\nsleeving\\nsleigh\\nsleighed\\nsleigher\\nsleighers\\nsleighing\\nsleighs\\nsleight\\nsleights\\nslender\\nslenderer\\nslenderest\\nslept\\nsleuth\\nsleuthed\\nsleuthing\\nsleuths\\nslew\\nslewed\\nslewing\\nslews\\nslice\\nsliced\\nslicer\\nslicers\\nslices\\nslicing\\nslick\\nslicked\\nslicker\\nslickers\\nslickest\\nslicking\\nslickly\\nslicks\\nslid\\nslidable\\nslidden\\nslide\\nslider\\nsliders\\nslides\\nslideway\\nslideways\\nsliding\\nslier\\nsliest\\nslight\\nslighted\\nslighter\\nslightest\\nslighting\\nslightly\\nslights\\nslily\\nslim\\nslime\\nslimed\\nslimes\\nslimier\\nslimiest\\nslimily\\nsliming\\nslimly\\nslimmed\\nslimmer\\nslimmest\\nslimming\\nslimness\\nslimnesses\\nslimpsier\\nslimpsiest\\nslimpsy\\nslims\\nslimsier\\nslimsiest\\nslimsy\\nslimy\\nsling\\nslinger\\nslingers\\nslinging\\nslings\\nslingshot\\nslingshots\\nslink\\nslinkier\\nslinkiest\\nslinkily\\nslinking\\nslinks\\nslinky\\nslip\\nslipcase\\nslipcases\\nslipe\\nsliped\\nslipes\\nslipform\\nslipformed\\nslipforming\\nslipforms\\nsliping\\nslipknot\\nslipknots\\nslipless\\nslipout\\nslipouts\\nslipover\\nslipovers\\nslippage\\nslippages\\nslipped\\nslipper\\nslipperier\\nslipperiest\\nslipperiness\\nslipperinesses\\nslippers\\nslippery\\nslippier\\nslippiest\\nslipping\\nslippy\\nslips\\nslipshod\\nslipslop\\nslipslops\\nslipsole\\nslipsoles\\nslipt\\nslipup\\nslipups\\nslipware\\nslipwares\\nslipway\\nslipways\\nslit\\nslither\\nslithered\\nslithering\\nslithers\\nslithery\\nslitless\\nslits\\nslitted\\nslitter\\nslitters\\nslitting\\nsliver\\nslivered\\nsliverer\\nsliverers\\nslivering\\nslivers\\nslivovic\\nslivovics\\nslob\\nslobber\\nslobbered\\nslobbering\\nslobbers\\nslobbery\\nslobbish\\nslobs\\nsloe\\nsloes\\nslog\\nslogan\\nslogans\\nslogged\\nslogger\\nsloggers\\nslogging\\nslogs\\nsloid\\nsloids\\nslojd\\nslojds\\nsloop\\nsloops\\nslop\\nslope\\nsloped\\nsloper\\nslopers\\nslopes\\nsloping\\nslopped\\nsloppier\\nsloppiest\\nsloppily\\nslopping\\nsloppy\\nslops\\nslopwork\\nslopworks\\nslosh\\nsloshed\\nsloshes\\nsloshier\\nsloshiest\\nsloshing\\nsloshy\\nslot\\nslotback\\nslotbacks\\nsloth\\nslothful\\nsloths\\nslots\\nslotted\\nslotting\\nslouch\\nslouched\\nsloucher\\nslouchers\\nslouches\\nslouchier\\nslouchiest\\nslouching\\nslouchy\\nslough\\nsloughed\\nsloughier\\nsloughiest\\nsloughing\\nsloughs\\nsloughy\\nsloven\\nslovenlier\\nslovenliest\\nslovenly\\nslovens\\nslow\\nslowdown\\nslowdowns\\nslowed\\nslower\\nslowest\\nslowing\\nslowish\\nslowly\\nslowness\\nslownesses\\nslowpoke\\nslowpokes\\nslows\\nslowworm\\nslowworms\\nsloyd\\nsloyds\\nslub\\nslubbed\\nslubber\\nslubbered\\nslubbering\\nslubbers\\nslubbing\\nslubbings\\nslubs\\nsludge\\nsludges\\nsludgier\\nsludgiest\\nsludgy\\nslue\\nslued\\nslues\\nsluff\\nsluffed\\nsluffing\\nsluffs\\nslug\\nslugabed\\nslugabeds\\nslugfest\\nslugfests\\nsluggard\\nsluggards\\nslugged\\nslugger\\nsluggers\\nslugging\\nsluggish\\nsluggishly\\nsluggishness\\nsluggishnesses\\nslugs\\nsluice\\nsluiced\\nsluices\\nsluicing\\nsluicy\\nsluing\\nslum\\nslumber\\nslumbered\\nslumbering\\nslumbers\\nslumbery\\nslumgum\\nslumgums\\nslumlord\\nslumlords\\nslummed\\nslummer\\nslummers\\nslummier\\nslummiest\\nslumming\\nslummy\\nslump\\nslumped\\nslumping\\nslumps\\nslums\\nslung\\nslunk\\nslur\\nslurb\\nslurban\\nslurbs\\nslurp\\nslurped\\nslurping\\nslurps\\nslurred\\nslurried\\nslurries\\nslurring\\nslurry\\nslurrying\\nslurs\\nslush\\nslushed\\nslushes\\nslushier\\nslushiest\\nslushily\\nslushing\\nslushy\\nslut\\nsluts\\nsluttish\\nsly\\nslyboots\\nslyer\\nslyest\\nslyly\\nslyness\\nslynesses\\nslype\\nslypes\\nsmack\\nsmacked\\nsmacker\\nsmackers\\nsmacking\\nsmacks\\nsmall\\nsmallage\\nsmallages\\nsmaller\\nsmallest\\nsmallish\\nsmallness\\nsmallnesses\\nsmallpox\\nsmallpoxes\\nsmalls\\nsmalt\\nsmalti\\nsmaltine\\nsmaltines\\nsmaltite\\nsmaltites\\nsmalto\\nsmaltos\\nsmalts\\nsmaragd\\nsmaragde\\nsmaragdes\\nsmaragds\\nsmarm\\nsmarmier\\nsmarmiest\\nsmarms\\nsmarmy\\nsmart\\nsmarted\\nsmarten\\nsmartened\\nsmartening\\nsmartens\\nsmarter\\nsmartest\\nsmartie\\nsmarties\\nsmarting\\nsmartly\\nsmartness\\nsmartnesses\\nsmarts\\nsmarty\\nsmash\\nsmashed\\nsmasher\\nsmashers\\nsmashes\\nsmashing\\nsmashup\\nsmashups\\nsmatter\\nsmattered\\nsmattering\\nsmatterings\\nsmatters\\nsmaze\\nsmazes\\nsmear\\nsmeared\\nsmearer\\nsmearers\\nsmearier\\nsmeariest\\nsmearing\\nsmears\\nsmeary\\nsmectic\\nsmeddum\\nsmeddums\\nsmeek\\nsmeeked\\nsmeeking\\nsmeeks\\nsmegma\\nsmegmas\\nsmell\\nsmelled\\nsmeller\\nsmellers\\nsmellier\\nsmelliest\\nsmelling\\nsmells\\nsmelly\\nsmelt\\nsmelted\\nsmelter\\nsmelteries\\nsmelters\\nsmeltery\\nsmelting\\nsmelts\\nsmerk\\nsmerked\\nsmerking\\nsmerks\\nsmew\\nsmews\\nsmidgen\\nsmidgens\\nsmidgeon\\nsmidgeons\\nsmidgin\\nsmidgins\\nsmilax\\nsmilaxes\\nsmile\\nsmiled\\nsmiler\\nsmilers\\nsmiles\\nsmiling\\nsmirch\\nsmirched\\nsmirches\\nsmirching\\nsmirk\\nsmirked\\nsmirker\\nsmirkers\\nsmirkier\\nsmirkiest\\nsmirking\\nsmirks\\nsmirky\\nsmit\\nsmite\\nsmiter\\nsmiters\\nsmites\\nsmith\\nsmitheries\\nsmithery\\nsmithies\\nsmiths\\nsmithy\\nsmiting\\nsmitten\\nsmock\\nsmocked\\nsmocking\\nsmockings\\nsmocks\\nsmog\\nsmoggier\\nsmoggiest\\nsmoggy\\nsmogless\\nsmogs\\nsmokable\\nsmoke\\nsmoked\\nsmokeless\\nsmokepot\\nsmokepots\\nsmoker\\nsmokers\\nsmokes\\nsmokestack\\nsmokestacks\\nsmokey\\nsmokier\\nsmokiest\\nsmokily\\nsmoking\\nsmoky\\nsmolder\\nsmoldered\\nsmoldering\\nsmolders\\nsmolt\\nsmolts\\nsmooch\\nsmooched\\nsmooches\\nsmooching\\nsmoochy\\nsmooth\\nsmoothed\\nsmoothen\\nsmoothened\\nsmoothening\\nsmoothens\\nsmoother\\nsmoothers\\nsmoothest\\nsmoothie\\nsmoothies\\nsmoothing\\nsmoothly\\nsmoothness\\nsmoothnesses\\nsmooths\\nsmoothy\\nsmorgasbord\\nsmorgasbords\\nsmote\\nsmother\\nsmothered\\nsmothering\\nsmothers\\nsmothery\\nsmoulder\\nsmouldered\\nsmouldering\\nsmoulders\\nsmudge\\nsmudged\\nsmudges\\nsmudgier\\nsmudgiest\\nsmudgily\\nsmudging\\nsmudgy\\nsmug\\nsmugger\\nsmuggest\\nsmuggle\\nsmuggled\\nsmuggler\\nsmugglers\\nsmuggles\\nsmuggling\\nsmugly\\nsmugness\\nsmugnesses\\nsmut\\nsmutch\\nsmutched\\nsmutches\\nsmutchier\\nsmutchiest\\nsmutching\\nsmutchy\\nsmuts\\nsmutted\\nsmuttier\\nsmuttiest\\nsmuttily\\nsmutting\\nsmutty\\nsnack\\nsnacked\\nsnacking\\nsnacks\\nsnaffle\\nsnaffled\\nsnaffles\\nsnaffling\\nsnafu\\nsnafued\\nsnafuing\\nsnafus\\nsnag\\nsnagged\\nsnaggier\\nsnaggiest\\nsnagging\\nsnaggy\\nsnaglike\\nsnags\\nsnail\\nsnailed\\nsnailing\\nsnails\\nsnake\\nsnaked\\nsnakes\\nsnakier\\nsnakiest\\nsnakily\\nsnaking\\nsnaky\\nsnap\\nsnapback\\nsnapbacks\\nsnapdragon\\nsnapdragons\\nsnapless\\nsnapped\\nsnapper\\nsnappers\\nsnappier\\nsnappiest\\nsnappily\\nsnapping\\nsnappish\\nsnappy\\nsnaps\\nsnapshot\\nsnapshots\\nsnapshotted\\nsnapshotting\\nsnapweed\\nsnapweeds\\nsnare\\nsnared\\nsnarer\\nsnarers\\nsnares\\nsnaring\\nsnark\\nsnarks\\nsnarl\\nsnarled\\nsnarler\\nsnarlers\\nsnarlier\\nsnarliest\\nsnarling\\nsnarls\\nsnarly\\nsnash\\nsnashes\\nsnatch\\nsnatched\\nsnatcher\\nsnatchers\\nsnatches\\nsnatchier\\nsnatchiest\\nsnatching\\nsnatchy\\nsnath\\nsnathe\\nsnathes\\nsnaths\\nsnaw\\nsnawed\\nsnawing\\nsnaws\\nsnazzier\\nsnazziest\\nsnazzy\\nsneak\\nsneaked\\nsneaker\\nsneakers\\nsneakier\\nsneakiest\\nsneakily\\nsneaking\\nsneakingly\\nsneaks\\nsneaky\\nsneap\\nsneaped\\nsneaping\\nsneaps\\nsneck\\nsnecks\\nsned\\nsnedded\\nsnedding\\nsneds\\nsneer\\nsneered\\nsneerer\\nsneerers\\nsneerful\\nsneering\\nsneers\\nsneesh\\nsneeshes\\nsneeze\\nsneezed\\nsneezer\\nsneezers\\nsneezes\\nsneezier\\nsneeziest\\nsneezing\\nsneezy\\nsnell\\nsneller\\nsnellest\\nsnells\\nsnib\\nsnibbed\\nsnibbing\\nsnibs\\nsnick\\nsnicked\\nsnicker\\nsnickered\\nsnickering\\nsnickers\\nsnickery\\nsnicking\\nsnicks\\nsnide\\nsnidely\\nsnider\\nsnidest\\nsniff\\nsniffed\\nsniffer\\nsniffers\\nsniffier\\nsniffiest\\nsniffily\\nsniffing\\nsniffish\\nsniffle\\nsniffled\\nsniffler\\nsnifflers\\nsniffles\\nsniffling\\nsniffs\\nsniffy\\nsnifter\\nsnifters\\nsnigger\\nsniggered\\nsniggering\\nsniggers\\nsniggle\\nsniggled\\nsniggler\\nsnigglers\\nsniggles\\nsniggling\\nsnip\\nsnipe\\nsniped\\nsniper\\nsnipers\\nsnipes\\nsniping\\nsnipped\\nsnipper\\nsnippers\\nsnippet\\nsnippetier\\nsnippetiest\\nsnippets\\nsnippety\\nsnippier\\nsnippiest\\nsnippily\\nsnipping\\nsnippy\\nsnips\\nsnit\\nsnitch\\nsnitched\\nsnitcher\\nsnitchers\\nsnitches\\nsnitching\\nsnits\\nsnivel\\nsniveled\\nsniveler\\nsnivelers\\nsniveling\\nsnivelled\\nsnivelling\\nsnivels\\nsnob\\nsnobberies\\nsnobbery\\nsnobbier\\nsnobbiest\\nsnobbily\\nsnobbish\\nsnobbishly\\nsnobbishness\\nsnobbishnesses\\nsnobbism\\nsnobbisms\\nsnobby\\nsnobs\\nsnood\\nsnooded\\nsnooding\\nsnoods\\nsnook\\nsnooked\\nsnooker\\nsnookers\\nsnooking\\nsnooks\\nsnool\\nsnooled\\nsnooling\\nsnools\\nsnoop\\nsnooped\\nsnooper\\nsnoopers\\nsnoopier\\nsnoopiest\\nsnoopily\\nsnooping\\nsnoops\\nsnoopy\\nsnoot\\nsnooted\\nsnootier\\nsnootiest\\nsnootily\\nsnooting\\nsnoots\\nsnooty\\nsnooze\\nsnoozed\\nsnoozer\\nsnoozers\\nsnoozes\\nsnoozier\\nsnooziest\\nsnoozing\\nsnoozle\\nsnoozled\\nsnoozles\\nsnoozling\\nsnoozy\\nsnore\\nsnored\\nsnorer\\nsnorers\\nsnores\\nsnoring\\nsnorkel\\nsnorkeled\\nsnorkeling\\nsnorkels\\nsnort\\nsnorted\\nsnorter\\nsnorters\\nsnorting\\nsnorts\\nsnot\\nsnots\\nsnottier\\nsnottiest\\nsnottily\\nsnotty\\nsnout\\nsnouted\\nsnoutier\\nsnoutiest\\nsnouting\\nsnoutish\\nsnouts\\nsnouty\\nsnow\\nsnowball\\nsnowballed\\nsnowballing\\nsnowballs\\nsnowbank\\nsnowbanks\\nsnowbell\\nsnowbells\\nsnowbird\\nsnowbirds\\nsnowbush\\nsnowbushes\\nsnowcap\\nsnowcaps\\nsnowdrift\\nsnowdrifts\\nsnowdrop\\nsnowdrops\\nsnowed\\nsnowfall\\nsnowfalls\\nsnowflake\\nsnowflakes\\nsnowier\\nsnowiest\\nsnowily\\nsnowing\\nsnowland\\nsnowlands\\nsnowless\\nsnowlike\\nsnowman\\nsnowmelt\\nsnowmelts\\nsnowmen\\nsnowpack\\nsnowpacks\\nsnowplow\\nsnowplowed\\nsnowplowing\\nsnowplows\\nsnows\\nsnowshed\\nsnowsheds\\nsnowshoe\\nsnowshoed\\nsnowshoeing\\nsnowshoes\\nsnowstorm\\nsnowstorms\\nsnowsuit\\nsnowsuits\\nsnowy\\nsnub\\nsnubbed\\nsnubber\\nsnubbers\\nsnubbier\\nsnubbiest\\nsnubbing\\nsnubby\\nsnubness\\nsnubnesses\\nsnubs\\nsnuck\\nsnuff\\nsnuffbox\\nsnuffboxes\\nsnuffed\\nsnuffer\\nsnuffers\\nsnuffier\\nsnuffiest\\nsnuffily\\nsnuffing\\nsnuffle\\nsnuffled\\nsnuffler\\nsnufflers\\nsnuffles\\nsnufflier\\nsnuffliest\\nsnuffling\\nsnuffly\\nsnuffs\\nsnuffy\\nsnug\\nsnugged\\nsnugger\\nsnuggeries\\nsnuggery\\nsnuggest\\nsnugging\\nsnuggle\\nsnuggled\\nsnuggles\\nsnuggling\\nsnugly\\nsnugness\\nsnugnesses\\nsnugs\\nsnye\\nsnyes\\nso\\nsoak\\nsoakage\\nsoakages\\nsoaked\\nsoaker\\nsoakers\\nsoaking\\nsoaks\\nsoap\\nsoapbark\\nsoapbarks\\nsoapbox\\nsoapboxes\\nsoaped\\nsoapier\\nsoapiest\\nsoapily\\nsoaping\\nsoapless\\nsoaplike\\nsoaps\\nsoapsuds\\nsoapwort\\nsoapworts\\nsoapy\\nsoar\\nsoared\\nsoarer\\nsoarers\\nsoaring\\nsoarings\\nsoars\\nsoave\\nsoaves\\nsob\\nsobbed\\nsobber\\nsobbers\\nsobbing\\nsobeit\\nsober\\nsobered\\nsoberer\\nsoberest\\nsobering\\nsoberize\\nsoberized\\nsoberizes\\nsoberizing\\nsoberly\\nsobers\\nsobful\\nsobrieties\\nsobriety\\nsobs\\nsocage\\nsocager\\nsocagers\\nsocages\\nsoccage\\nsoccages\\nsoccer\\nsoccers\\nsociabilities\\nsociability\\nsociable\\nsociables\\nsociably\\nsocial\\nsocialism\\nsocialist\\nsocialistic\\nsocialists\\nsocialization\\nsocializations\\nsocialize\\nsocialized\\nsocializes\\nsocializing\\nsocially\\nsocials\\nsocietal\\nsocieties\\nsociety\\nsociological\\nsociologies\\nsociologist\\nsociologists\\nsociology\\nsock\\nsocked\\nsocket\\nsocketed\\nsocketing\\nsockets\\nsockeye\\nsockeyes\\nsocking\\nsockman\\nsockmen\\nsocks\\nsocle\\nsocles\\nsocman\\nsocmen\\nsod\\nsoda\\nsodaless\\nsodalist\\nsodalists\\nsodalite\\nsodalites\\nsodalities\\nsodality\\nsodamide\\nsodamides\\nsodas\\nsodded\\nsodden\\nsoddened\\nsoddening\\nsoddenly\\nsoddens\\nsoddies\\nsodding\\nsoddy\\nsodic\\nsodium\\nsodiums\\nsodomies\\nsodomite\\nsodomites\\nsodomy\\nsods\\nsoever\\nsofa\\nsofar\\nsofars\\nsofas\\nsoffit\\nsoffits\\nsoft\\nsofta\\nsoftas\\nsoftback\\nsoftbacks\\nsoftball\\nsoftballs\\nsoften\\nsoftened\\nsoftener\\nsofteners\\nsoftening\\nsoftens\\nsofter\\nsoftest\\nsofthead\\nsoftheads\\nsoftie\\nsofties\\nsoftly\\nsoftness\\nsoftnesses\\nsofts\\nsoftware\\nsoftwares\\nsoftwood\\nsoftwoods\\nsofty\\nsogged\\nsoggier\\nsoggiest\\nsoggily\\nsogginess\\nsogginesses\\nsoggy\\nsoigne\\nsoignee\\nsoil\\nsoilage\\nsoilages\\nsoiled\\nsoiling\\nsoilless\\nsoils\\nsoilure\\nsoilures\\nsoiree\\nsoirees\\nsoja\\nsojas\\nsojourn\\nsojourned\\nsojourning\\nsojourns\\nsoke\\nsokeman\\nsokemen\\nsokes\\nsol\\nsola\\nsolace\\nsolaced\\nsolacer\\nsolacers\\nsolaces\\nsolacing\\nsolan\\nsoland\\nsolander\\nsolanders\\nsolands\\nsolanin\\nsolanine\\nsolanines\\nsolanins\\nsolano\\nsolanos\\nsolans\\nsolanum\\nsolanums\\nsolar\\nsolaria\\nsolarise\\nsolarised\\nsolarises\\nsolarising\\nsolarism\\nsolarisms\\nsolarium\\nsolariums\\nsolarize\\nsolarized\\nsolarizes\\nsolarizing\\nsolate\\nsolated\\nsolates\\nsolatia\\nsolating\\nsolation\\nsolations\\nsolatium\\nsold\\nsoldan\\nsoldans\\nsolder\\nsoldered\\nsolderer\\nsolderers\\nsoldering\\nsolders\\nsoldi\\nsoldier\\nsoldiered\\nsoldieries\\nsoldiering\\nsoldierly\\nsoldiers\\nsoldiery\\nsoldo\\nsole\\nsolecise\\nsolecised\\nsolecises\\nsolecising\\nsolecism\\nsolecisms\\nsolecist\\nsolecists\\nsolecize\\nsolecized\\nsolecizes\\nsolecizing\\nsoled\\nsoleless\\nsolely\\nsolemn\\nsolemner\\nsolemnest\\nsolemnly\\nsolemnness\\nsolemnnesses\\nsoleness\\nsolenesses\\nsolenoid\\nsolenoids\\nsoleret\\nsolerets\\nsoles\\nsolfege\\nsolfeges\\nsolfeggi\\nsolgel\\nsoli\\nsolicit\\nsolicitation\\nsolicited\\nsoliciting\\nsolicitor\\nsolicitors\\nsolicitous\\nsolicits\\nsolicitude\\nsolicitudes\\nsolid\\nsolidago\\nsolidagos\\nsolidarities\\nsolidarity\\nsolidary\\nsolider\\nsolidest\\nsolidi\\nsolidification\\nsolidifications\\nsolidified\\nsolidifies\\nsolidify\\nsolidifying\\nsolidities\\nsolidity\\nsolidly\\nsolidness\\nsolidnesses\\nsolids\\nsolidus\\nsoliloquize\\nsoliloquized\\nsoliloquizes\\nsoliloquizing\\nsoliloquy\\nsoliloquys\\nsoling\\nsolion\\nsolions\\nsoliquid\\nsoliquids\\nsolitaire\\nsolitaires\\nsolitaries\\nsolitary\\nsolitude\\nsolitudes\\nsolleret\\nsollerets\\nsolo\\nsoloed\\nsoloing\\nsoloist\\nsoloists\\nsolon\\nsolonets\\nsolonetses\\nsolonetz\\nsolonetzes\\nsolons\\nsolos\\nsols\\nsolstice\\nsolstices\\nsolubilities\\nsolubility\\nsoluble\\nsolubles\\nsolubly\\nsolum\\nsolums\\nsolus\\nsolute\\nsolutes\\nsolution\\nsolutions\\nsolvable\\nsolvate\\nsolvated\\nsolvates\\nsolvating\\nsolve\\nsolved\\nsolvencies\\nsolvency\\nsolvent\\nsolvents\\nsolver\\nsolvers\\nsolves\\nsolving\\nsoma\\nsomas\\nsomata\\nsomatic\\nsomber\\nsomberly\\nsombre\\nsombrely\\nsombrero\\nsombreros\\nsombrous\\nsome\\nsomebodies\\nsomebody\\nsomeday\\nsomedeal\\nsomehow\\nsomeone\\nsomeones\\nsomeplace\\nsomersault\\nsomersaulted\\nsomersaulting\\nsomersaults\\nsomerset\\nsomerseted\\nsomerseting\\nsomersets\\nsomersetted\\nsomersetting\\nsomerville\\nsomething\\nsometime\\nsometimes\\nsomeway\\nsomeways\\nsomewhat\\nsomewhats\\nsomewhen\\nsomewhere\\nsomewise\\nsomital\\nsomite\\nsomites\\nsomitic\\nsomnambulism\\nsomnambulist\\nsomnambulists\\nsomnolence\\nsomnolences\\nsomnolent\\nson\\nsonance\\nsonances\\nsonant\\nsonantal\\nsonantic\\nsonants\\nsonar\\nsonarman\\nsonarmen\\nsonars\\nsonata\\nsonatas\\nsonatina\\nsonatinas\\nsonatine\\nsonde\\nsonder\\nsonders\\nsondes\\nsone\\nsones\\nsong\\nsongbird\\nsongbirds\\nsongbook\\nsongbooks\\nsongfest\\nsongfests\\nsongful\\nsongless\\nsonglike\\nsongs\\nsongster\\nsongsters\\nsonic\\nsonicate\\nsonicated\\nsonicates\\nsonicating\\nsonics\\nsonless\\nsonlike\\nsonly\\nsonnet\\nsonneted\\nsonneting\\nsonnets\\nsonnetted\\nsonnetting\\nsonnies\\nsonny\\nsonorant\\nsonorants\\nsonorities\\nsonority\\nsonorous\\nsonovox\\nsonovoxes\\nsons\\nsonship\\nsonships\\nsonsie\\nsonsier\\nsonsiest\\nsonsy\\nsoochong\\nsoochongs\\nsooey\\nsoon\\nsooner\\nsooners\\nsoonest\\nsoot\\nsooted\\nsooth\\nsoothe\\nsoothed\\nsoother\\nsoothers\\nsoothes\\nsoothest\\nsoothing\\nsoothly\\nsooths\\nsoothsaid\\nsoothsay\\nsoothsayer\\nsoothsayers\\nsoothsaying\\nsoothsayings\\nsoothsays\\nsootier\\nsootiest\\nsootily\\nsooting\\nsoots\\nsooty\\nsop\\nsoph\\nsophies\\nsophism\\nsophisms\\nsophist\\nsophistic\\nsophistical\\nsophisticate\\nsophisticated\\nsophisticates\\nsophistication\\nsophistications\\nsophistries\\nsophistry\\nsophists\\nsophomore\\nsophomores\\nsophs\\nsophy\\nsopite\\nsopited\\nsopites\\nsopiting\\nsopor\\nsoporific\\nsopors\\nsopped\\nsoppier\\nsoppiest\\nsopping\\nsoppy\\nsoprani\\nsoprano\\nsopranos\\nsops\\nsora\\nsoras\\nsorb\\nsorbable\\nsorbate\\nsorbates\\nsorbed\\nsorbent\\nsorbents\\nsorbet\\nsorbets\\nsorbic\\nsorbing\\nsorbitol\\nsorbitols\\nsorbose\\nsorboses\\nsorbs\\nsorcerer\\nsorcerers\\nsorceress\\nsorceresses\\nsorceries\\nsorcery\\nsord\\nsordid\\nsordidly\\nsordidness\\nsordidnesses\\nsordine\\nsordines\\nsordini\\nsordino\\nsords\\nsore\\nsorehead\\nsoreheads\\nsorel\\nsorels\\nsorely\\nsoreness\\nsorenesses\\nsorer\\nsores\\nsorest\\nsorgho\\nsorghos\\nsorghum\\nsorghums\\nsorgo\\nsorgos\\nsori\\nsoricine\\nsorites\\nsoritic\\nsorn\\nsorned\\nsorner\\nsorners\\nsorning\\nsorns\\nsoroche\\nsoroches\\nsororal\\nsororate\\nsororates\\nsororities\\nsorority\\nsoroses\\nsorosis\\nsorosises\\nsorption\\nsorptions\\nsorptive\\nsorrel\\nsorrels\\nsorrier\\nsorriest\\nsorrily\\nsorrow\\nsorrowed\\nsorrower\\nsorrowers\\nsorrowful\\nsorrowfully\\nsorrowing\\nsorrows\\nsorry\\nsort\\nsortable\\nsortably\\nsorted\\nsorter\\nsorters\\nsortie\\nsortied\\nsortieing\\nsorties\\nsorting\\nsorts\\nsorus\\nsos\\nsot\\nsoth\\nsoths\\nsotol\\nsotols\\nsots\\nsottish\\nsou\\nsouari\\nsouaris\\nsoubise\\nsoubises\\nsoucar\\nsoucars\\nsouchong\\nsouchongs\\nsoudan\\nsoudans\\nsouffle\\nsouffles\\nsough\\nsoughed\\nsoughing\\nsoughs\\nsought\\nsoul\\nsouled\\nsoulful\\nsoulfully\\nsoulless\\nsoullike\\nsouls\\nsound\\nsoundbox\\nsoundboxes\\nsounded\\nsounder\\nsounders\\nsoundest\\nsounding\\nsoundings\\nsoundly\\nsoundness\\nsoundnesses\\nsoundproof\\nsoundproofed\\nsoundproofing\\nsoundproofs\\nsounds\\nsoup\\nsoupcon\\nsoupcons\\nsouped\\nsoupier\\nsoupiest\\nsouping\\nsoups\\nsoupy\\nsour\\nsourball\\nsourballs\\nsource\\nsources\\nsourdine\\nsourdines\\nsoured\\nsourer\\nsourest\\nsouring\\nsourish\\nsourly\\nsourness\\nsournesses\\nsourpuss\\nsourpusses\\nsours\\nsoursop\\nsoursops\\nsourwood\\nsourwoods\\nsous\\nsouse\\nsoused\\nsouses\\nsousing\\nsoutache\\nsoutaches\\nsoutane\\nsoutanes\\nsouter\\nsouters\\nsouth\\nsoutheast\\nsoutheastern\\nsoutheasts\\nsouthed\\nsouther\\nsoutherly\\nsouthern\\nsouthernmost\\nsoutherns\\nsouthernward\\nsouthernwards\\nsouthers\\nsouthing\\nsouthings\\nsouthpaw\\nsouthpaws\\nsouthron\\nsouthrons\\nsouths\\nsouthwest\\nsouthwesterly\\nsouthwestern\\nsouthwests\\nsouvenir\\nsouvenirs\\nsovereign\\nsovereigns\\nsovereignties\\nsovereignty\\nsoviet\\nsoviets\\nsovkhoz\\nsovkhozes\\nsovkhozy\\nsovran\\nsovranly\\nsovrans\\nsovranties\\nsovranty\\nsow\\nsowable\\nsowans\\nsowar\\nsowars\\nsowbellies\\nsowbelly\\nsowbread\\nsowbreads\\nsowcar\\nsowcars\\nsowed\\nsowens\\nsower\\nsowers\\nsowing\\nsown\\nsows\\nsox\\nsoy\\nsoya\\nsoyas\\nsoybean\\nsoybeans\\nsoys\\nsozin\\nsozine\\nsozines\\nsozins\\nspa\\nspace\\nspacecraft\\nspacecrafts\\nspaced\\nspaceflight\\nspaceflights\\nspaceman\\nspacemen\\nspacer\\nspacers\\nspaces\\nspaceship\\nspaceships\\nspacial\\nspacing\\nspacings\\nspacious\\nspaciously\\nspaciousness\\nspaciousnesses\\nspade\\nspaded\\nspadeful\\nspadefuls\\nspader\\nspaders\\nspades\\nspadices\\nspadille\\nspadilles\\nspading\\nspadix\\nspado\\nspadones\\nspae\\nspaed\\nspaeing\\nspaeings\\nspaes\\nspaghetti\\nspaghettis\\nspagyric\\nspagyrics\\nspahee\\nspahees\\nspahi\\nspahis\\nspail\\nspails\\nspait\\nspaits\\nspake\\nspale\\nspales\\nspall\\nspalled\\nspaller\\nspallers\\nspalling\\nspalls\\nspalpeen\\nspalpeens\\nspan\\nspancel\\nspanceled\\nspanceling\\nspancelled\\nspancelling\\nspancels\\nspandrel\\nspandrels\\nspandril\\nspandrils\\nspang\\nspangle\\nspangled\\nspangles\\nspanglier\\nspangliest\\nspangling\\nspangly\\nspaniel\\nspaniels\\nspank\\nspanked\\nspanker\\nspankers\\nspanking\\nspankings\\nspanks\\nspanless\\nspanned\\nspanner\\nspanners\\nspanning\\nspans\\nspanworm\\nspanworms\\nspar\\nsparable\\nsparables\\nspare\\nspared\\nsparely\\nsparer\\nsparerib\\nspareribs\\nsparers\\nspares\\nsparest\\nsparge\\nsparged\\nsparger\\nspargers\\nsparges\\nsparging\\nsparid\\nsparids\\nsparing\\nsparingly\\nspark\\nsparked\\nsparker\\nsparkers\\nsparkier\\nsparkiest\\nsparkily\\nsparking\\nsparkish\\nsparkle\\nsparkled\\nsparkler\\nsparklers\\nsparkles\\nsparkling\\nsparks\\nsparky\\nsparlike\\nsparling\\nsparlings\\nsparoid\\nsparoids\\nsparred\\nsparrier\\nsparriest\\nsparring\\nsparrow\\nsparrows\\nsparry\\nspars\\nsparse\\nsparsely\\nsparser\\nsparsest\\nsparsities\\nsparsity\\nspas\\nspasm\\nspasmodic\\nspasms\\nspastic\\nspastics\\nspat\\nspate\\nspates\\nspathal\\nspathe\\nspathed\\nspathes\\nspathic\\nspathose\\nspatial\\nspatially\\nspats\\nspatted\\nspatter\\nspattered\\nspattering\\nspatters\\nspatting\\nspatula\\nspatular\\nspatulas\\nspavie\\nspavies\\nspaviet\\nspavin\\nspavined\\nspavins\\nspawn\\nspawned\\nspawner\\nspawners\\nspawning\\nspawns\\nspay\\nspayed\\nspaying\\nspays\\nspeak\\nspeaker\\nspeakers\\nspeaking\\nspeakings\\nspeaks\\nspean\\nspeaned\\nspeaning\\nspeans\\nspear\\nspeared\\nspearer\\nspearers\\nspearhead\\nspearheaded\\nspearheading\\nspearheads\\nspearing\\nspearman\\nspearmen\\nspearmint\\nspears\\nspecial\\nspecialer\\nspecialest\\nspecialist\\nspecialists\\nspecialization\\nspecializations\\nspecialize\\nspecialized\\nspecializes\\nspecializing\\nspecially\\nspecials\\nspecialties\\nspecialty\\nspeciate\\nspeciated\\nspeciates\\nspeciating\\nspecie\\nspecies\\nspecific\\nspecifically\\nspecification\\nspecifications\\nspecificities\\nspecificity\\nspecifics\\nspecified\\nspecifies\\nspecify\\nspecifying\\nspecimen\\nspecimens\\nspecious\\nspeck\\nspecked\\nspecking\\nspeckle\\nspeckled\\nspeckles\\nspeckling\\nspecks\\nspecs\\nspectacle\\nspectacles\\nspectacular\\nspectate\\nspectated\\nspectates\\nspectating\\nspectator\\nspectators\\nspecter\\nspecters\\nspectra\\nspectral\\nspectre\\nspectres\\nspectrum\\nspectrums\\nspecula\\nspecular\\nspeculate\\nspeculated\\nspeculates\\nspeculating\\nspeculation\\nspeculations\\nspeculative\\nspeculator\\nspeculators\\nspeculum\\nspeculums\\nsped\\nspeech\\nspeeches\\nspeechless\\nspeed\\nspeedboat\\nspeedboats\\nspeeded\\nspeeder\\nspeeders\\nspeedier\\nspeediest\\nspeedily\\nspeeding\\nspeedings\\nspeedometer\\nspeedometers\\nspeeds\\nspeedup\\nspeedups\\nspeedway\\nspeedways\\nspeedy\\nspeel\\nspeeled\\nspeeling\\nspeels\\nspeer\\nspeered\\nspeering\\nspeerings\\nspeers\\nspeil\\nspeiled\\nspeiling\\nspeils\\nspeir\\nspeired\\nspeiring\\nspeirs\\nspeise\\nspeises\\nspeiss\\nspeisses\\nspelaean\\nspelean\\nspell\\nspellbound\\nspelled\\nspeller\\nspellers\\nspelling\\nspellings\\nspells\\nspelt\\nspelter\\nspelters\\nspelts\\nspeltz\\nspeltzes\\nspelunk\\nspelunked\\nspelunking\\nspelunks\\nspence\\nspencer\\nspencers\\nspences\\nspend\\nspender\\nspenders\\nspending\\nspends\\nspendthrift\\nspendthrifts\\nspent\\nsperm\\nspermaries\\nspermary\\nspermic\\nspermine\\nspermines\\nspermous\\nsperms\\nspew\\nspewed\\nspewer\\nspewers\\nspewing\\nspews\\nsphagnum\\nsphagnums\\nsphene\\nsphenes\\nsphenic\\nsphenoid\\nsphenoids\\nspheral\\nsphere\\nsphered\\nspheres\\nspheric\\nspherical\\nspherics\\nspherier\\nspheriest\\nsphering\\nspheroid\\nspheroids\\nspherule\\nspherules\\nsphery\\nsphinges\\nsphingid\\nsphingids\\nsphinx\\nsphinxes\\nsphygmic\\nsphygmus\\nsphygmuses\\nspic\\nspica\\nspicae\\nspicas\\nspicate\\nspicated\\nspiccato\\nspiccatos\\nspice\\nspiced\\nspicer\\nspiceries\\nspicers\\nspicery\\nspices\\nspicey\\nspicier\\nspiciest\\nspicily\\nspicing\\nspick\\nspicks\\nspics\\nspicula\\nspiculae\\nspicular\\nspicule\\nspicules\\nspiculum\\nspicy\\nspider\\nspiderier\\nspideriest\\nspiders\\nspidery\\nspied\\nspiegel\\nspiegels\\nspiel\\nspieled\\nspieler\\nspielers\\nspieling\\nspiels\\nspier\\nspiered\\nspiering\\nspiers\\nspies\\nspiffier\\nspiffiest\\nspiffily\\nspiffing\\nspiffy\\nspigot\\nspigots\\nspik\\nspike\\nspiked\\nspikelet\\nspikelets\\nspiker\\nspikers\\nspikes\\nspikier\\nspikiest\\nspikily\\nspiking\\nspiks\\nspiky\\nspile\\nspiled\\nspiles\\nspilikin\\nspilikins\\nspiling\\nspilings\\nspill\\nspillable\\nspillage\\nspillages\\nspilled\\nspiller\\nspillers\\nspilling\\nspills\\nspillway\\nspillways\\nspilt\\nspilth\\nspilths\\nspin\\nspinach\\nspinaches\\nspinage\\nspinages\\nspinal\\nspinally\\nspinals\\nspinate\\nspindle\\nspindled\\nspindler\\nspindlers\\nspindles\\nspindlier\\nspindliest\\nspindling\\nspindly\\nspine\\nspined\\nspinel\\nspineless\\nspinelle\\nspinelles\\nspinels\\nspines\\nspinet\\nspinets\\nspinier\\nspiniest\\nspinifex\\nspinifexes\\nspinless\\nspinner\\nspinneries\\nspinners\\nspinnery\\nspinney\\nspinneys\\nspinnies\\nspinning\\nspinnings\\nspinny\\nspinoff\\nspinoffs\\nspinor\\nspinors\\nspinose\\nspinous\\nspinout\\nspinouts\\nspins\\nspinster\\nspinsters\\nspinula\\nspinulae\\nspinule\\nspinules\\nspinwriter\\nspiny\\nspiracle\\nspiracles\\nspiraea\\nspiraeas\\nspiral\\nspiraled\\nspiraling\\nspiralled\\nspiralling\\nspirally\\nspirals\\nspirant\\nspirants\\nspire\\nspirea\\nspireas\\nspired\\nspirem\\nspireme\\nspiremes\\nspirems\\nspires\\nspirilla\\nspiring\\nspirit\\nspirited\\nspiriting\\nspiritless\\nspirits\\nspiritual\\nspiritualism\\nspiritualisms\\nspiritualist\\nspiritualistic\\nspiritualists\\nspiritualities\\nspirituality\\nspiritually\\nspirituals\\nspiroid\\nspirt\\nspirted\\nspirting\\nspirts\\nspirula\\nspirulae\\nspirulas\\nspiry\\nspit\\nspital\\nspitals\\nspitball\\nspitballs\\nspite\\nspited\\nspiteful\\nspitefuller\\nspitefullest\\nspitefully\\nspites\\nspitfire\\nspitfires\\nspiting\\nspits\\nspitted\\nspitter\\nspitters\\nspitting\\nspittle\\nspittles\\nspittoon\\nspittoons\\nspitz\\nspitzes\\nspiv\\nspivs\\nsplake\\nsplakes\\nsplash\\nsplashed\\nsplasher\\nsplashers\\nsplashes\\nsplashier\\nsplashiest\\nsplashing\\nsplashy\\nsplat\\nsplats\\nsplatter\\nsplattered\\nsplattering\\nsplatters\\nsplay\\nsplayed\\nsplaying\\nsplays\\nspleen\\nspleenier\\nspleeniest\\nspleens\\nspleeny\\nsplendid\\nsplendider\\nsplendidest\\nsplendidly\\nsplendor\\nsplendors\\nsplenia\\nsplenial\\nsplenic\\nsplenii\\nsplenium\\nsplenius\\nsplent\\nsplents\\nsplice\\nspliced\\nsplicer\\nsplicers\\nsplices\\nsplicing\\nspline\\nsplined\\nsplines\\nsplining\\nsplint\\nsplinted\\nsplinter\\nsplintered\\nsplintering\\nsplinters\\nsplinting\\nsplints\\nsplit\\nsplits\\nsplitter\\nsplitters\\nsplitting\\nsplore\\nsplores\\nsplosh\\nsploshed\\nsploshes\\nsploshing\\nsplotch\\nsplotched\\nsplotches\\nsplotchier\\nsplotchiest\\nsplotching\\nsplotchy\\nsplurge\\nsplurged\\nsplurges\\nsplurgier\\nsplurgiest\\nsplurging\\nsplurgy\\nsplutter\\nspluttered\\nspluttering\\nsplutters\\nspode\\nspodes\\nspoil\\nspoilage\\nspoilages\\nspoiled\\nspoiler\\nspoilers\\nspoiling\\nspoils\\nspoilt\\nspoke\\nspoked\\nspoken\\nspokes\\nspokesman\\nspokesmen\\nspokeswoman\\nspokeswomen\\nspoking\\nspoliate\\nspoliated\\nspoliates\\nspoliating\\nspondaic\\nspondaics\\nspondee\\nspondees\\nsponge\\nsponged\\nsponger\\nspongers\\nsponges\\nspongier\\nspongiest\\nspongily\\nspongin\\nsponging\\nspongins\\nspongy\\nsponsal\\nsponsion\\nsponsions\\nsponson\\nsponsons\\nsponsor\\nsponsored\\nsponsoring\\nsponsors\\nsponsorship\\nsponsorships\\nspontaneities\\nspontaneity\\nspontaneous\\nspontaneously\\nspontoon\\nspontoons\\nspoof\\nspoofed\\nspoofing\\nspoofs\\nspook\\nspooked\\nspookier\\nspookiest\\nspookily\\nspooking\\nspookish\\nspooks\\nspooky\\nspool\\nspooled\\nspooling\\nspools\\nspoon\\nspooned\\nspooney\\nspooneys\\nspoonful\\nspoonfuls\\nspoonier\\nspoonies\\nspooniest\\nspoonily\\nspooning\\nspoons\\nspoonsful\\nspoony\\nspoor\\nspoored\\nspooring\\nspoors\\nsporadic\\nsporadically\\nsporal\\nspore\\nspored\\nspores\\nsporing\\nsporoid\\nsporran\\nsporrans\\nsport\\nsported\\nsporter\\nsporters\\nsportful\\nsportier\\nsportiest\\nsportily\\nsporting\\nsportive\\nsports\\nsportscast\\nsportscaster\\nsportscasters\\nsportscasts\\nsportsman\\nsportsmanship\\nsportsmanships\\nsportsmen\\nsporty\\nsporular\\nsporule\\nsporules\\nspot\\nspotless\\nspotlessly\\nspotlight\\nspotlighted\\nspotlighting\\nspotlights\\nspots\\nspotted\\nspotter\\nspotters\\nspottier\\nspottiest\\nspottily\\nspotting\\nspotty\\nspousal\\nspousals\\nspouse\\nspoused\\nspouses\\nspousing\\nspout\\nspouted\\nspouter\\nspouters\\nspouting\\nspouts\\nspraddle\\nspraddled\\nspraddles\\nspraddling\\nsprag\\nsprags\\nsprain\\nsprained\\nspraining\\nsprains\\nsprang\\nsprat\\nsprats\\nsprattle\\nsprattled\\nsprattles\\nsprattling\\nsprawl\\nsprawled\\nsprawler\\nsprawlers\\nsprawlier\\nsprawliest\\nsprawling\\nsprawls\\nsprawly\\nspray\\nsprayed\\nsprayer\\nsprayers\\nspraying\\nsprays\\nspread\\nspreader\\nspreaders\\nspreading\\nspreads\\nspree\\nsprees\\nsprent\\nsprier\\nspriest\\nsprig\\nsprigged\\nsprigger\\nspriggers\\nspriggier\\nspriggiest\\nsprigging\\nspriggy\\nspright\\nsprightliness\\nsprightlinesses\\nsprightly\\nsprights\\nsprigs\\nspring\\nspringal\\nspringals\\nspringe\\nspringed\\nspringeing\\nspringer\\nspringers\\nspringes\\nspringier\\nspringiest\\nspringing\\nsprings\\nspringy\\nsprinkle\\nsprinkled\\nsprinkler\\nsprinklers\\nsprinkles\\nsprinkling\\nsprint\\nsprinted\\nsprinter\\nsprinters\\nsprinting\\nsprints\\nsprit\\nsprite\\nsprites\\nsprits\\nsprocket\\nsprockets\\nsprout\\nsprouted\\nsprouting\\nsprouts\\nspruce\\nspruced\\nsprucely\\nsprucer\\nspruces\\nsprucest\\nsprucier\\nspruciest\\nsprucing\\nsprucy\\nsprue\\nsprues\\nsprug\\nsprugs\\nsprung\\nspry\\nspryer\\nspryest\\nspryly\\nspryness\\nsprynesses\\nspud\\nspudded\\nspudder\\nspudders\\nspudding\\nspuds\\nspue\\nspued\\nspues\\nspuing\\nspume\\nspumed\\nspumes\\nspumier\\nspumiest\\nspuming\\nspumone\\nspumones\\nspumoni\\nspumonis\\nspumous\\nspumy\\nspun\\nspunk\\nspunked\\nspunkie\\nspunkier\\nspunkies\\nspunkiest\\nspunkily\\nspunking\\nspunks\\nspunky\\nspur\\nspurgall\\nspurgalled\\nspurgalling\\nspurgalls\\nspurge\\nspurges\\nspurious\\nspurn\\nspurned\\nspurner\\nspurners\\nspurning\\nspurns\\nspurred\\nspurrer\\nspurrers\\nspurrey\\nspurreys\\nspurrier\\nspurriers\\nspurries\\nspurring\\nspurry\\nspurs\\nspurt\\nspurted\\nspurting\\nspurtle\\nspurtles\\nspurts\\nsputa\\nsputnik\\nsputniks\\nsputter\\nsputtered\\nsputtering\\nsputters\\nsputum\\nspy\\nspyglass\\nspyglasses\\nspying\\nsquab\\nsquabbier\\nsquabbiest\\nsquabble\\nsquabbled\\nsquabbles\\nsquabbling\\nsquabby\\nsquabs\\nsquad\\nsquadded\\nsquadding\\nsquadron\\nsquadroned\\nsquadroning\\nsquadrons\\nsquads\\nsqualene\\nsqualenes\\nsqualid\\nsqualider\\nsqualidest\\nsquall\\nsqualled\\nsqualler\\nsquallers\\nsquallier\\nsqualliest\\nsqualling\\nsqualls\\nsqually\\nsqualor\\nsqualors\\nsquama\\nsquamae\\nsquamate\\nsquamose\\nsquamous\\nsquander\\nsquandered\\nsquandering\\nsquanders\\nsquare\\nsquared\\nsquarely\\nsquarer\\nsquarers\\nsquares\\nsquarest\\nsquaring\\nsquarish\\nsquash\\nsquashed\\nsquasher\\nsquashers\\nsquashes\\nsquashier\\nsquashiest\\nsquashing\\nsquashy\\nsquat\\nsquatly\\nsquats\\nsquatted\\nsquatter\\nsquattered\\nsquattering\\nsquatters\\nsquattest\\nsquattier\\nsquattiest\\nsquatting\\nsquatty\\nsquaw\\nsquawk\\nsquawked\\nsquawker\\nsquawkers\\nsquawking\\nsquawks\\nsquaws\\nsqueak\\nsqueaked\\nsqueaker\\nsqueakers\\nsqueakier\\nsqueakiest\\nsqueaking\\nsqueaks\\nsqueaky\\nsqueal\\nsquealed\\nsquealer\\nsquealers\\nsquealing\\nsqueals\\nsqueamish\\nsqueegee\\nsqueegeed\\nsqueegeeing\\nsqueegees\\nsqueeze\\nsqueezed\\nsqueezer\\nsqueezers\\nsqueezes\\nsqueezing\\nsqueg\\nsquegged\\nsquegging\\nsquegs\\nsquelch\\nsquelched\\nsquelches\\nsquelchier\\nsquelchiest\\nsquelching\\nsquelchy\\nsquib\\nsquibbed\\nsquibbing\\nsquibs\\nsquid\\nsquidded\\nsquidding\\nsquids\\nsquiffed\\nsquiffy\\nsquiggle\\nsquiggled\\nsquiggles\\nsquigglier\\nsquiggliest\\nsquiggling\\nsquiggly\\nsquilgee\\nsquilgeed\\nsquilgeeing\\nsquilgees\\nsquill\\nsquilla\\nsquillae\\nsquillas\\nsquills\\nsquinch\\nsquinched\\nsquinches\\nsquinching\\nsquinnied\\nsquinnier\\nsquinnies\\nsquinniest\\nsquinny\\nsquinnying\\nsquint\\nsquinted\\nsquinter\\nsquinters\\nsquintest\\nsquintier\\nsquintiest\\nsquinting\\nsquints\\nsquinty\\nsquire\\nsquired\\nsquireen\\nsquireens\\nsquires\\nsquiring\\nsquirish\\nsquirm\\nsquirmed\\nsquirmer\\nsquirmers\\nsquirmier\\nsquirmiest\\nsquirming\\nsquirms\\nsquirmy\\nsquirrel\\nsquirreled\\nsquirreling\\nsquirrelled\\nsquirrelling\\nsquirrels\\nsquirt\\nsquirted\\nsquirter\\nsquirters\\nsquirting\\nsquirts\\nsquish\\nsquished\\nsquishes\\nsquishier\\nsquishiest\\nsquishing\\nsquishy\\nsquoosh\\nsquooshed\\nsquooshes\\nsquooshing\\nsquush\\nsquushed\\nsquushes\\nsquushing\\nsraddha\\nsraddhas\\nsradha\\nsradhas\\nsri\\nsris\\nstab\\nstabbed\\nstabber\\nstabbers\\nstabbing\\nstabile\\nstabiles\\nstabilities\\nstability\\nstabilization\\nstabilize\\nstabilized\\nstabilizer\\nstabilizers\\nstabilizes\\nstabilizing\\nstable\\nstabled\\nstabler\\nstablers\\nstables\\nstablest\\nstabling\\nstablings\\nstablish\\nstablished\\nstablishes\\nstablishing\\nstably\\nstabs\\nstaccati\\nstaccato\\nstaccatos\\nstack\\nstacked\\nstacker\\nstackers\\nstacking\\nstacks\\nstacte\\nstactes\\nstaddle\\nstaddles\\nstade\\nstades\\nstadia\\nstadias\\nstadium\\nstadiums\\nstaff\\nstaffed\\nstaffer\\nstaffers\\nstaffing\\nstaffs\\nstag\\nstage\\nstagecoach\\nstagecoaches\\nstaged\\nstager\\nstagers\\nstages\\nstagey\\nstaggard\\nstaggards\\nstaggart\\nstaggarts\\nstagged\\nstagger\\nstaggered\\nstaggering\\nstaggeringly\\nstaggers\\nstaggery\\nstaggie\\nstaggier\\nstaggies\\nstaggiest\\nstagging\\nstaggy\\nstagier\\nstagiest\\nstagily\\nstaging\\nstagings\\nstagnant\\nstagnate\\nstagnated\\nstagnates\\nstagnating\\nstagnation\\nstagnations\\nstags\\nstagy\\nstaid\\nstaider\\nstaidest\\nstaidly\\nstaig\\nstaigs\\nstain\\nstained\\nstainer\\nstainers\\nstaining\\nstainless\\nstains\\nstair\\nstaircase\\nstaircases\\nstairs\\nstairway\\nstairways\\nstairwell\\nstairwells\\nstake\\nstaked\\nstakeout\\nstakeouts\\nstakes\\nstaking\\nstalactite\\nstalactites\\nstalag\\nstalagmite\\nstalagmites\\nstalags\\nstale\\nstaled\\nstalely\\nstalemate\\nstalemated\\nstalemates\\nstalemating\\nstaler\\nstales\\nstalest\\nstaling\\nstalinism\\nstalk\\nstalked\\nstalker\\nstalkers\\nstalkier\\nstalkiest\\nstalkily\\nstalking\\nstalks\\nstalky\\nstall\\nstalled\\nstalling\\nstallion\\nstallions\\nstalls\\nstalwart\\nstalwarts\\nstamen\\nstamens\\nstamina\\nstaminal\\nstaminas\\nstammel\\nstammels\\nstammer\\nstammered\\nstammering\\nstammers\\nstamp\\nstamped\\nstampede\\nstampeded\\nstampedes\\nstampeding\\nstamper\\nstampers\\nstamping\\nstamps\\nstance\\nstances\\nstanch\\nstanched\\nstancher\\nstanchers\\nstanches\\nstanchest\\nstanching\\nstanchion\\nstanchions\\nstanchly\\nstand\\nstandard\\nstandardization\\nstandardizations\\nstandardize\\nstandardized\\nstandardizes\\nstandardizing\\nstandards\\nstandby\\nstandbys\\nstandee\\nstandees\\nstander\\nstanders\\nstanding\\nstandings\\nstandish\\nstandishes\\nstandoff\\nstandoffs\\nstandout\\nstandouts\\nstandpat\\nstandpoint\\nstandpoints\\nstands\\nstandstill\\nstandup\\nstane\\nstaned\\nstanes\\nstang\\nstanged\\nstanging\\nstangs\\nstanhope\\nstanhopes\\nstaning\\nstank\\nstanks\\nstannaries\\nstannary\\nstannic\\nstannite\\nstannites\\nstannous\\nstannum\\nstannums\\nstanza\\nstanzaed\\nstanzaic\\nstanzas\\nstapedes\\nstapelia\\nstapelias\\nstapes\\nstaph\\nstaphs\\nstaple\\nstapled\\nstapler\\nstaplers\\nstaples\\nstapling\\nstar\\nstarboard\\nstarboards\\nstarch\\nstarched\\nstarches\\nstarchier\\nstarchiest\\nstarching\\nstarchy\\nstardom\\nstardoms\\nstardust\\nstardusts\\nstare\\nstared\\nstarer\\nstarers\\nstares\\nstarets\\nstarfish\\nstarfishes\\nstargaze\\nstargazed\\nstargazes\\nstargazing\\nstaring\\nstark\\nstarker\\nstarkest\\nstarkly\\nstarless\\nstarlet\\nstarlets\\nstarlight\\nstarlights\\nstarlike\\nstarling\\nstarlings\\nstarlit\\nstarnose\\nstarnoses\\nstarred\\nstarrier\\nstarriest\\nstarring\\nstarry\\nstars\\nstart\\nstarted\\nstarter\\nstarters\\nstarting\\nstartle\\nstartled\\nstartler\\nstartlers\\nstartles\\nstartling\\nstarts\\nstartsy\\nstarvation\\nstarvations\\nstarve\\nstarved\\nstarver\\nstarvers\\nstarves\\nstarving\\nstarwort\\nstarworts\\nstases\\nstash\\nstashed\\nstashes\\nstashing\\nstasima\\nstasimon\\nstasis\\nstatable\\nstatal\\nstatant\\nstate\\nstated\\nstatedly\\nstatehood\\nstatehoods\\nstatelier\\nstateliest\\nstateliness\\nstatelinesses\\nstately\\nstatement\\nstatements\\nstater\\nstateroom\\nstaterooms\\nstaters\\nstates\\nstatesman\\nstatesmanlike\\nstatesmanship\\nstatesmanships\\nstatesmen\\nstatic\\nstatical\\nstatice\\nstatices\\nstatics\\nstating\\nstation\\nstationary\\nstationed\\nstationer\\nstationeries\\nstationers\\nstationery\\nstationing\\nstations\\nstatism\\nstatisms\\nstatist\\nstatistic\\nstatistical\\nstatistically\\nstatistician\\nstatisticians\\nstatistics\\nstatists\\nstative\\nstatives\\nstator\\nstators\\nstatuaries\\nstatuary\\nstatue\\nstatued\\nstatues\\nstatuesque\\nstatuette\\nstatuettes\\nstature\\nstatures\\nstatus\\nstatuses\\nstatute\\nstatutes\\nstatutory\\nstaumrel\\nstaumrels\\nstaunch\\nstaunched\\nstauncher\\nstaunches\\nstaunchest\\nstaunching\\nstaunchly\\nstave\\nstaved\\nstaves\\nstaving\\nstaw\\nstay\\nstayed\\nstayer\\nstayers\\nstaying\\nstays\\nstaysail\\nstaysails\\nstead\\nsteaded\\nsteadfast\\nsteadfastly\\nsteadfastness\\nsteadfastnesses\\nsteadied\\nsteadier\\nsteadiers\\nsteadies\\nsteadiest\\nsteadily\\nsteadiness\\nsteadinesses\\nsteading\\nsteadings\\nsteads\\nsteady\\nsteadying\\nsteak\\nsteaks\\nsteal\\nstealage\\nstealages\\nstealer\\nstealers\\nstealing\\nstealings\\nsteals\\nstealth\\nstealthier\\nstealthiest\\nstealthily\\nstealths\\nstealthy\\nsteam\\nsteamboat\\nsteamboats\\nsteamed\\nsteamer\\nsteamered\\nsteamering\\nsteamers\\nsteamier\\nsteamiest\\nsteamily\\nsteaming\\nsteams\\nsteamship\\nsteamships\\nsteamy\\nsteapsin\\nsteapsins\\nstearate\\nstearates\\nstearic\\nstearin\\nstearine\\nstearines\\nstearins\\nsteatite\\nsteatites\\nstedfast\\nsteed\\nsteeds\\nsteek\\nsteeked\\nsteeking\\nsteeks\\nsteel\\nsteeled\\nsteelie\\nsteelier\\nsteelies\\nsteeliest\\nsteeling\\nsteels\\nsteely\\nsteenbok\\nsteenboks\\nsteep\\nsteeped\\nsteepen\\nsteepened\\nsteepening\\nsteepens\\nsteeper\\nsteepers\\nsteepest\\nsteeping\\nsteeple\\nsteeplechase\\nsteeplechases\\nsteepled\\nsteeples\\nsteeply\\nsteepness\\nsteepnesses\\nsteeps\\nsteer\\nsteerage\\nsteerages\\nsteered\\nsteerer\\nsteerers\\nsteering\\nsteers\\nsteeve\\nsteeved\\nsteeves\\nsteeving\\nsteevings\\nstegodon\\nstegodons\\nstein\\nsteinbok\\nsteinboks\\nsteins\\nstela\\nstelae\\nstelai\\nstelar\\nstele\\nstelene\\nsteles\\nstelic\\nstella\\nstellar\\nstellas\\nstellate\\nstellified\\nstellifies\\nstellify\\nstellifying\\nstem\\nstemless\\nstemlike\\nstemma\\nstemmas\\nstemmata\\nstemmed\\nstemmer\\nstemmeries\\nstemmers\\nstemmery\\nstemmier\\nstemmiest\\nstemming\\nstemmy\\nstems\\nstemson\\nstemsons\\nstemware\\nstemwares\\nstench\\nstenches\\nstenchier\\nstenchiest\\nstenchy\\nstencil\\nstenciled\\nstenciling\\nstencilled\\nstencilling\\nstencils\\nstengah\\nstengahs\\nsteno\\nstenographer\\nstenographers\\nstenographic\\nstenography\\nstenos\\nstenosed\\nstenoses\\nstenosis\\nstenotic\\nstentor\\nstentorian\\nstentors\\nstep\\nstepdame\\nstepdames\\nstepladder\\nstepladders\\nsteplike\\nsteppe\\nstepped\\nstepper\\nsteppers\\nsteppes\\nstepping\\nsteps\\nstepson\\nstepsons\\nstepwise\\nstere\\nstereo\\nstereoed\\nstereoing\\nstereophonic\\nstereos\\nstereotype\\nstereotyped\\nstereotypes\\nstereotyping\\nsteres\\nsteric\\nsterical\\nsterigma\\nsterigmas\\nsterigmata\\nsterile\\nsterilities\\nsterility\\nsterilization\\nsterilizations\\nsterilize\\nsterilized\\nsterilizer\\nsterilizers\\nsterilizes\\nsterilizing\\nsterlet\\nsterlets\\nsterling\\nsterlings\\nstern\\nsterna\\nsternal\\nsterner\\nsternest\\nsternite\\nsternites\\nsternly\\nsternness\\nsternnesses\\nsterns\\nsternson\\nsternsons\\nsternum\\nsternums\\nsternway\\nsternways\\nsteroid\\nsteroids\\nsterol\\nsterols\\nstertor\\nstertors\\nstet\\nstethoscope\\nstethoscopes\\nstets\\nstetson\\nstetsons\\nstetted\\nstetting\\nstevedore\\nstevedores\\nstew\\nsteward\\nstewarded\\nstewardess\\nstewardesses\\nstewarding\\nstewards\\nstewardship\\nstewardships\\nstewbum\\nstewbums\\nstewed\\nstewing\\nstewpan\\nstewpans\\nstews\\nstey\\nsthenia\\nsthenias\\nsthenic\\nstibial\\nstibine\\nstibines\\nstibium\\nstibiums\\nstibnite\\nstibnites\\nstich\\nstichic\\nstichs\\nstick\\nsticked\\nsticker\\nstickers\\nstickful\\nstickfuls\\nstickier\\nstickiest\\nstickily\\nsticking\\nstickit\\nstickle\\nstickled\\nstickler\\nsticklers\\nstickles\\nstickling\\nstickman\\nstickmen\\nstickout\\nstickouts\\nstickpin\\nstickpins\\nsticks\\nstickum\\nstickums\\nstickup\\nstickups\\nsticky\\nstied\\nsties\\nstiff\\nstiffen\\nstiffened\\nstiffening\\nstiffens\\nstiffer\\nstiffest\\nstiffish\\nstiffly\\nstiffness\\nstiffnesses\\nstiffs\\nstifle\\nstifled\\nstifler\\nstiflers\\nstifles\\nstifling\\nstigma\\nstigmal\\nstigmas\\nstigmata\\nstigmatize\\nstigmatized\\nstigmatizes\\nstigmatizing\\nstilbene\\nstilbenes\\nstilbite\\nstilbites\\nstile\\nstiles\\nstiletto\\nstilettoed\\nstilettoes\\nstilettoing\\nstilettos\\nstill\\nstillbirth\\nstillbirths\\nstillborn\\nstilled\\nstiller\\nstillest\\nstillier\\nstilliest\\nstilling\\nstillman\\nstillmen\\nstillness\\nstillnesses\\nstills\\nstilly\\nstilt\\nstilted\\nstilting\\nstilts\\nstime\\nstimes\\nstimied\\nstimies\\nstimulant\\nstimulants\\nstimulate\\nstimulated\\nstimulates\\nstimulating\\nstimulation\\nstimulations\\nstimuli\\nstimulus\\nstimy\\nstimying\\nsting\\nstinger\\nstingers\\nstingier\\nstingiest\\nstingily\\nstinginess\\nstinginesses\\nstinging\\nstingo\\nstingos\\nstingray\\nstingrays\\nstings\\nstingy\\nstink\\nstinkard\\nstinkards\\nstinkbug\\nstinkbugs\\nstinker\\nstinkers\\nstinkier\\nstinkiest\\nstinking\\nstinko\\nstinkpot\\nstinkpots\\nstinks\\nstinky\\nstint\\nstinted\\nstinter\\nstinters\\nstinting\\nstints\\nstipe\\nstiped\\nstipel\\nstipels\\nstipend\\nstipends\\nstipes\\nstipites\\nstipple\\nstippled\\nstippler\\nstipplers\\nstipples\\nstippling\\nstipular\\nstipulate\\nstipulated\\nstipulates\\nstipulating\\nstipulation\\nstipulations\\nstipule\\nstipuled\\nstipules\\nstir\\nstirk\\nstirks\\nstirp\\nstirpes\\nstirps\\nstirred\\nstirrer\\nstirrers\\nstirring\\nstirrup\\nstirrups\\nstirs\\nstitch\\nstitched\\nstitcher\\nstitchers\\nstitches\\nstitching\\nstithied\\nstithies\\nstithy\\nstithying\\nstiver\\nstivers\\nstoa\\nstoae\\nstoai\\nstoas\\nstoat\\nstoats\\nstob\\nstobbed\\nstobbing\\nstobs\\nstoccado\\nstoccados\\nstoccata\\nstoccatas\\nstock\\nstockade\\nstockaded\\nstockades\\nstockading\\nstockcar\\nstockcars\\nstocked\\nstocker\\nstockers\\nstockier\\nstockiest\\nstockily\\nstocking\\nstockings\\nstockish\\nstockist\\nstockists\\nstockman\\nstockmen\\nstockpile\\nstockpiled\\nstockpiles\\nstockpiling\\nstockpot\\nstockpots\\nstocks\\nstocky\\nstockyard\\nstockyards\\nstodge\\nstodged\\nstodges\\nstodgier\\nstodgiest\\nstodgily\\nstodging\\nstodgy\\nstogey\\nstogeys\\nstogie\\nstogies\\nstogy\\nstoic\\nstoical\\nstoically\\nstoicism\\nstoicisms\\nstoics\\nstoke\\nstoked\\nstoker\\nstokers\\nstokes\\nstokesia\\nstokesias\\nstoking\\nstole\\nstoled\\nstolen\\nstoles\\nstolid\\nstolider\\nstolidest\\nstolidities\\nstolidity\\nstolidly\\nstollen\\nstollens\\nstolon\\nstolonic\\nstolons\\nstoma\\nstomach\\nstomachache\\nstomachaches\\nstomached\\nstomaching\\nstomachs\\nstomachy\\nstomal\\nstomas\\nstomata\\nstomatal\\nstomate\\nstomates\\nstomatic\\nstomatitis\\nstomodea\\nstomp\\nstomped\\nstomper\\nstompers\\nstomping\\nstomps\\nstonable\\nstone\\nstoned\\nstoneflies\\nstonefly\\nstoner\\nstoners\\nstones\\nstoney\\nstonier\\nstoniest\\nstonily\\nstoning\\nstonish\\nstonished\\nstonishes\\nstonishing\\nstony\\nstood\\nstooge\\nstooged\\nstooges\\nstooging\\nstook\\nstooked\\nstooker\\nstookers\\nstooking\\nstooks\\nstool\\nstooled\\nstoolie\\nstoolies\\nstooling\\nstools\\nstoop\\nstooped\\nstooper\\nstoopers\\nstooping\\nstoops\\nstop\\nstopcock\\nstopcocks\\nstope\\nstoped\\nstoper\\nstopers\\nstopes\\nstopgap\\nstopgaps\\nstoping\\nstoplight\\nstoplights\\nstopover\\nstopovers\\nstoppage\\nstoppages\\nstopped\\nstopper\\nstoppered\\nstoppering\\nstoppers\\nstopping\\nstopple\\nstoppled\\nstopples\\nstoppling\\nstops\\nstopt\\nstopwatch\\nstopwatches\\nstorable\\nstorables\\nstorage\\nstorages\\nstorax\\nstoraxes\\nstore\\nstored\\nstorehouse\\nstorehouses\\nstorekeeper\\nstorekeepers\\nstoreroom\\nstorerooms\\nstores\\nstorey\\nstoreyed\\nstoreys\\nstoried\\nstories\\nstoring\\nstork\\nstorks\\nstorm\\nstormed\\nstormier\\nstormiest\\nstormily\\nstorming\\nstorms\\nstormy\\nstory\\nstorying\\nstoryteller\\nstorytellers\\nstorytelling\\nstorytellings\\nstoss\\nstotinka\\nstotinki\\nstound\\nstounded\\nstounding\\nstounds\\nstoup\\nstoups\\nstour\\nstoure\\nstoures\\nstourie\\nstours\\nstoury\\nstout\\nstouten\\nstoutened\\nstoutening\\nstoutens\\nstouter\\nstoutest\\nstoutish\\nstoutly\\nstoutness\\nstoutnesses\\nstouts\\nstove\\nstover\\nstovers\\nstoves\\nstow\\nstowable\\nstowage\\nstowages\\nstowaway\\nstowaways\\nstowed\\nstowing\\nstowp\\nstowps\\nstows\\nstraddle\\nstraddled\\nstraddles\\nstraddling\\nstrafe\\nstrafed\\nstrafer\\nstrafers\\nstrafes\\nstrafing\\nstraggle\\nstraggled\\nstraggler\\nstragglers\\nstraggles\\nstragglier\\nstraggliest\\nstraggling\\nstraggly\\nstraight\\nstraighted\\nstraighten\\nstraightened\\nstraightening\\nstraightens\\nstraighter\\nstraightest\\nstraightforward\\nstraightforwarder\\nstraightforwardest\\nstraighting\\nstraights\\nstraightway\\nstrain\\nstrained\\nstrainer\\nstrainers\\nstraining\\nstrains\\nstrait\\nstraiten\\nstraitened\\nstraitening\\nstraitens\\nstraiter\\nstraitest\\nstraitly\\nstraits\\nstrake\\nstraked\\nstrakes\\nstramash\\nstramashes\\nstramonies\\nstramony\\nstrand\\nstranded\\nstrander\\nstranders\\nstranding\\nstrands\\nstrang\\nstrange\\nstrangely\\nstrangeness\\nstrangenesses\\nstranger\\nstrangered\\nstrangering\\nstrangers\\nstrangest\\nstrangle\\nstrangled\\nstrangler\\nstranglers\\nstrangles\\nstrangling\\nstrangulation\\nstrangulations\\nstrap\\nstrapness\\nstrapnesses\\nstrapped\\nstrapper\\nstrappers\\nstrapping\\nstraps\\nstrass\\nstrasses\\nstrata\\nstratagem\\nstratagems\\nstratal\\nstratas\\nstrategic\\nstrategies\\nstrategist\\nstrategists\\nstrategy\\nstrath\\nstraths\\nstrati\\nstratification\\nstratifications\\nstratified\\nstratifies\\nstratify\\nstratifying\\nstratosphere\\nstratospheres\\nstratous\\nstratum\\nstratums\\nstratus\\nstravage\\nstravaged\\nstravages\\nstravaging\\nstravaig\\nstravaiged\\nstravaiging\\nstravaigs\\nstraw\\nstrawberries\\nstrawberry\\nstrawed\\nstrawhat\\nstrawier\\nstrawiest\\nstrawing\\nstraws\\nstrawy\\nstray\\nstrayed\\nstrayer\\nstrayers\\nstraying\\nstrays\\nstreak\\nstreaked\\nstreaker\\nstreakers\\nstreakier\\nstreakiest\\nstreaking\\nstreaks\\nstreaky\\nstream\\nstreamed\\nstreamer\\nstreamers\\nstreamier\\nstreamiest\\nstreaming\\nstreamline\\nstreamlines\\nstreams\\nstreamy\\nstreek\\nstreeked\\nstreeker\\nstreekers\\nstreeking\\nstreeks\\nstreet\\nstreetcar\\nstreetcars\\nstreets\\nstrength\\nstrengthen\\nstrengthened\\nstrengthener\\nstrengtheners\\nstrengthening\\nstrengthens\\nstrengths\\nstrenuous\\nstrenuously\\nstrep\\nstreps\\nstress\\nstressed\\nstresses\\nstressing\\nstressor\\nstressors\\nstretch\\nstretched\\nstretcher\\nstretchers\\nstretches\\nstretchier\\nstretchiest\\nstretching\\nstretchy\\nstretta\\nstrettas\\nstrette\\nstretti\\nstretto\\nstrettos\\nstreusel\\nstreusels\\nstrew\\nstrewed\\nstrewer\\nstrewers\\nstrewing\\nstrewn\\nstrews\\nstria\\nstriae\\nstriate\\nstriated\\nstriates\\nstriating\\nstrick\\nstricken\\nstrickle\\nstrickled\\nstrickles\\nstrickling\\nstricks\\nstrict\\nstricter\\nstrictest\\nstrictly\\nstrictness\\nstrictnesses\\nstricture\\nstrictures\\nstrid\\nstridden\\nstride\\nstrident\\nstrider\\nstriders\\nstrides\\nstriding\\nstridor\\nstridors\\nstrife\\nstrifes\\nstrigil\\nstrigils\\nstrigose\\nstrike\\nstriker\\nstrikers\\nstrikes\\nstriking\\nstrikingly\\nstring\\nstringed\\nstringent\\nstringer\\nstringers\\nstringier\\nstringiest\\nstringing\\nstrings\\nstringy\\nstrip\\nstripe\\nstriped\\nstriper\\nstripers\\nstripes\\nstripier\\nstripiest\\nstriping\\nstripings\\nstripped\\nstripper\\nstrippers\\nstripping\\nstrips\\nstript\\nstripy\\nstrive\\nstrived\\nstriven\\nstriver\\nstrivers\\nstrives\\nstriving\\nstrobe\\nstrobes\\nstrobic\\nstrobil\\nstrobila\\nstrobilae\\nstrobile\\nstrobiles\\nstrobili\\nstrobils\\nstrode\\nstroke\\nstroked\\nstroker\\nstrokers\\nstrokes\\nstroking\\nstroll\\nstrolled\\nstroller\\nstrollers\\nstrolling\\nstrolls\\nstroma\\nstromal\\nstromata\\nstrong\\nstronger\\nstrongest\\nstronghold\\nstrongholds\\nstrongly\\nstrongyl\\nstrongyls\\nstrontia\\nstrontias\\nstrontic\\nstrontium\\nstrontiums\\nstrook\\nstrop\\nstrophe\\nstrophes\\nstrophic\\nstropped\\nstropping\\nstrops\\nstroud\\nstrouds\\nstrove\\nstrow\\nstrowed\\nstrowing\\nstrown\\nstrows\\nstroy\\nstroyed\\nstroyer\\nstroyers\\nstroying\\nstroys\\nstruck\\nstrucken\\nstructural\\nstructure\\nstructures\\nstrudel\\nstrudels\\nstruggle\\nstruggled\\nstruggles\\nstruggling\\nstrum\\nstruma\\nstrumae\\nstrumas\\nstrummed\\nstrummer\\nstrummers\\nstrumming\\nstrumose\\nstrumous\\nstrumpet\\nstrumpets\\nstrums\\nstrung\\nstrunt\\nstrunted\\nstrunting\\nstrunts\\nstrut\\nstruts\\nstrutted\\nstrutter\\nstrutters\\nstrutting\\nstrychnine\\nstrychnines\\nstub\\nstubbed\\nstubbier\\nstubbiest\\nstubbily\\nstubbing\\nstubble\\nstubbled\\nstubbles\\nstubblier\\nstubbliest\\nstubbly\\nstubborn\\nstubbornly\\nstubbornness\\nstubbornnesses\\nstubby\\nstubiest\\nstubs\\nstucco\\nstuccoed\\nstuccoer\\nstuccoers\\nstuccoes\\nstuccoing\\nstuccos\\nstuck\\nstud\\nstudbook\\nstudbooks\\nstudded\\nstuddie\\nstuddies\\nstudding\\nstuddings\\nstudent\\nstudents\\nstudfish\\nstudfishes\\nstudied\\nstudier\\nstudiers\\nstudies\\nstudio\\nstudios\\nstudious\\nstudiously\\nstuds\\nstudwork\\nstudworks\\nstudy\\nstudying\\nstuff\\nstuffed\\nstuffer\\nstuffers\\nstuffier\\nstuffiest\\nstuffily\\nstuffing\\nstuffings\\nstuffs\\nstuffy\\nstuiver\\nstuivers\\nstull\\nstulls\\nstultification\\nstultifications\\nstultified\\nstultifies\\nstultify\\nstultifying\\nstum\\nstumble\\nstumbled\\nstumbler\\nstumblers\\nstumbles\\nstumbling\\nstummed\\nstumming\\nstump\\nstumpage\\nstumpages\\nstumped\\nstumper\\nstumpers\\nstumpier\\nstumpiest\\nstumping\\nstumps\\nstumpy\\nstums\\nstun\\nstung\\nstunk\\nstunned\\nstunner\\nstunners\\nstunning\\nstunningly\\nstuns\\nstunsail\\nstunsails\\nstunt\\nstunted\\nstunting\\nstunts\\nstupa\\nstupas\\nstupe\\nstupefaction\\nstupefactions\\nstupefied\\nstupefies\\nstupefy\\nstupefying\\nstupendous\\nstupendously\\nstupes\\nstupid\\nstupider\\nstupidest\\nstupidity\\nstupidly\\nstupids\\nstupor\\nstuporous\\nstupors\\nsturdied\\nsturdier\\nsturdies\\nsturdiest\\nsturdily\\nsturdiness\\nsturdinesses\\nsturdy\\nsturgeon\\nsturgeons\\nsturt\\nsturts\\nstutter\\nstuttered\\nstuttering\\nstutters\\nsty\\nstye\\nstyed\\nstyes\\nstygian\\nstying\\nstylar\\nstylate\\nstyle\\nstyled\\nstyler\\nstylers\\nstyles\\nstylet\\nstylets\\nstyli\\nstyling\\nstylings\\nstylise\\nstylised\\nstyliser\\nstylisers\\nstylises\\nstylish\\nstylishly\\nstylishness\\nstylishnesses\\nstylising\\nstylist\\nstylists\\nstylite\\nstylites\\nstylitic\\nstylize\\nstylized\\nstylizer\\nstylizers\\nstylizes\\nstylizing\\nstyloid\\nstylus\\nstyluses\\nstymie\\nstymied\\nstymieing\\nstymies\\nstymy\\nstymying\\nstypsis\\nstypsises\\nstyptic\\nstyptics\\nstyrax\\nstyraxes\\nstyrene\\nstyrenes\\nsuable\\nsuably\\nsuasion\\nsuasions\\nsuasive\\nsuasory\\nsuave\\nsuavely\\nsuaver\\nsuavest\\nsuavities\\nsuavity\\nsub\\nsuba\\nsubabbot\\nsubabbots\\nsubacid\\nsubacrid\\nsubacute\\nsubadar\\nsubadars\\nsubadult\\nsubadults\\nsubagencies\\nsubagency\\nsubagent\\nsubagents\\nsubah\\nsubahdar\\nsubahdars\\nsubahs\\nsubalar\\nsubarctic\\nsubarea\\nsubareas\\nsubarid\\nsubas\\nsubatmospheric\\nsubatom\\nsubatoms\\nsubaverage\\nsubaxial\\nsubbase\\nsubbasement\\nsubbasements\\nsubbases\\nsubbass\\nsubbasses\\nsubbed\\nsubbing\\nsubbings\\nsubbranch\\nsubbranches\\nsubbreed\\nsubbreeds\\nsubcabinet\\nsubcabinets\\nsubcategories\\nsubcategory\\nsubcause\\nsubcauses\\nsubcell\\nsubcells\\nsubchief\\nsubchiefs\\nsubclan\\nsubclans\\nsubclass\\nsubclassed\\nsubclasses\\nsubclassification\\nsubclassifications\\nsubclassified\\nsubclassifies\\nsubclassify\\nsubclassifying\\nsubclassing\\nsubclerk\\nsubclerks\\nsubcommand\\nsubcommands\\nsubcommission\\nsubcommissions\\nsubcommunities\\nsubcommunity\\nsubcomponent\\nsubcomponents\\nsubconcept\\nsubconcepts\\nsubconscious\\nsubconsciouses\\nsubconsciously\\nsubconsciousness\\nsubconsciousnesses\\nsubcontract\\nsubcontracted\\nsubcontracting\\nsubcontractor\\nsubcontractors\\nsubcontracts\\nsubcool\\nsubcooled\\nsubcooling\\nsubcools\\nsubculture\\nsubcultures\\nsubcutaneous\\nsubcutes\\nsubcutis\\nsubcutises\\nsubdean\\nsubdeans\\nsubdeb\\nsubdebs\\nsubdepartment\\nsubdepartments\\nsubdepot\\nsubdepots\\nsubdistrict\\nsubdistricts\\nsubdivide\\nsubdivided\\nsubdivides\\nsubdividing\\nsubdivision\\nsubdivisions\\nsubdual\\nsubduals\\nsubduce\\nsubduced\\nsubduces\\nsubducing\\nsubduct\\nsubducted\\nsubducting\\nsubducts\\nsubdue\\nsubdued\\nsubduer\\nsubduers\\nsubdues\\nsubduing\\nsubecho\\nsubechoes\\nsubedit\\nsubedited\\nsubediting\\nsubedits\\nsubentries\\nsubentry\\nsubepoch\\nsubepochs\\nsubequatorial\\nsuber\\nsuberect\\nsuberic\\nsuberin\\nsuberins\\nsuberise\\nsuberised\\nsuberises\\nsuberising\\nsuberize\\nsuberized\\nsuberizes\\nsuberizing\\nsuberose\\nsuberous\\nsubers\\nsubfamilies\\nsubfamily\\nsubfield\\nsubfields\\nsubfix\\nsubfixes\\nsubfloor\\nsubfloors\\nsubfluid\\nsubfreezing\\nsubfusc\\nsubgenera\\nsubgenus\\nsubgenuses\\nsubgrade\\nsubgrades\\nsubgroup\\nsubgroups\\nsubgum\\nsubhead\\nsubheading\\nsubheadings\\nsubheads\\nsubhuman\\nsubhumans\\nsubhumid\\nsubidea\\nsubideas\\nsubindex\\nsubindexes\\nsubindices\\nsubindustries\\nsubindustry\\nsubitem\\nsubitems\\nsubito\\nsubject\\nsubjected\\nsubjecting\\nsubjection\\nsubjections\\nsubjective\\nsubjectively\\nsubjectivities\\nsubjectivity\\nsubjects\\nsubjoin\\nsubjoined\\nsubjoining\\nsubjoins\\nsubjugate\\nsubjugated\\nsubjugates\\nsubjugating\\nsubjugation\\nsubjugations\\nsubjunctive\\nsubjunctives\\nsublate\\nsublated\\nsublates\\nsublating\\nsublease\\nsubleased\\nsubleases\\nsubleasing\\nsublet\\nsublethal\\nsublets\\nsubletting\\nsublevel\\nsublevels\\nsublime\\nsublimed\\nsublimer\\nsublimers\\nsublimes\\nsublimest\\nsubliming\\nsublimities\\nsublimity\\nsubliterate\\nsubmarine\\nsubmarines\\nsubmerge\\nsubmerged\\nsubmergence\\nsubmergences\\nsubmerges\\nsubmerging\\nsubmerse\\nsubmersed\\nsubmerses\\nsubmersible\\nsubmersing\\nsubmersion\\nsubmersions\\nsubmiss\\nsubmission\\nsubmissions\\nsubmissive\\nsubmit\\nsubmits\\nsubmitted\\nsubmitting\\nsubnasal\\nsubnetwork\\nsubnetworks\\nsubnodal\\nsubnormal\\nsuboceanic\\nsuboptic\\nsuboral\\nsuborder\\nsuborders\\nsubordinate\\nsubordinated\\nsubordinates\\nsubordinating\\nsubordination\\nsubordinations\\nsuborn\\nsuborned\\nsuborner\\nsuborners\\nsuborning\\nsuborns\\nsuboval\\nsubovate\\nsuboxide\\nsuboxides\\nsubpar\\nsubpart\\nsubparts\\nsubpena\\nsubpenaed\\nsubpenaing\\nsubpenas\\nsubphyla\\nsubplot\\nsubplots\\nsubpoena\\nsubpoenaed\\nsubpoenaing\\nsubpoenas\\nsubpolar\\nsubprincipal\\nsubprincipals\\nsubprocess\\nsubprocesses\\nsubprogram\\nsubprograms\\nsubproject\\nsubprojects\\nsubpubic\\nsubrace\\nsubraces\\nsubregion\\nsubregions\\nsubrent\\nsubrents\\nsubring\\nsubrings\\nsubroutine\\nsubroutines\\nsubrule\\nsubrules\\nsubs\\nsubsale\\nsubsales\\nsubscribe\\nsubscribed\\nsubscriber\\nsubscribers\\nsubscribes\\nsubscribing\\nsubscript\\nsubscription\\nsubscriptions\\nsubscripts\\nsubsect\\nsubsection\\nsubsections\\nsubsects\\nsubsequent\\nsubsequently\\nsubsere\\nsubseres\\nsubserve\\nsubserved\\nsubserves\\nsubserving\\nsubset\\nsubsets\\nsubshaft\\nsubshafts\\nsubshrub\\nsubshrubs\\nsubside\\nsubsided\\nsubsider\\nsubsiders\\nsubsides\\nsubsidiaries\\nsubsidiary\\nsubsidies\\nsubsiding\\nsubsidize\\nsubsidized\\nsubsidizes\\nsubsidizing\\nsubsidy\\nsubsist\\nsubsisted\\nsubsistence\\nsubsistences\\nsubsisting\\nsubsists\\nsubsoil\\nsubsoiled\\nsubsoiling\\nsubsoils\\nsubsolar\\nsubsonic\\nsubspace\\nsubspaces\\nsubspecialties\\nsubspecialty\\nsubspecies\\nsubstage\\nsubstages\\nsubstandard\\nsubstantial\\nsubstantially\\nsubstantiate\\nsubstantiated\\nsubstantiates\\nsubstantiating\\nsubstantiation\\nsubstantiations\\nsubstitute\\nsubstituted\\nsubstitutes\\nsubstituting\\nsubstitution\\nsubstitutions\\nsubstructure\\nsubstructures\\nsubsume\\nsubsumed\\nsubsumes\\nsubsuming\\nsubsurface\\nsubsystem\\nsubsystems\\nsubteen\\nsubteens\\nsubtemperate\\nsubtend\\nsubtended\\nsubtending\\nsubtends\\nsubterfuge\\nsubterfuges\\nsubterranean\\nsubterraneous\\nsubtext\\nsubtexts\\nsubtile\\nsubtiler\\nsubtilest\\nsubtilties\\nsubtilty\\nsubtitle\\nsubtitled\\nsubtitles\\nsubtitling\\nsubtle\\nsubtler\\nsubtlest\\nsubtleties\\nsubtlety\\nsubtly\\nsubtone\\nsubtones\\nsubtonic\\nsubtonics\\nsubtopic\\nsubtopics\\nsubtotal\\nsubtotaled\\nsubtotaling\\nsubtotalled\\nsubtotalling\\nsubtotals\\nsubtract\\nsubtracted\\nsubtracting\\nsubtraction\\nsubtractions\\nsubtracts\\nsubtreasuries\\nsubtreasury\\nsubtribe\\nsubtribes\\nsubtunic\\nsubtunics\\nsubtype\\nsubtypes\\nsubulate\\nsubunit\\nsubunits\\nsuburb\\nsuburban\\nsuburbans\\nsuburbed\\nsuburbia\\nsuburbias\\nsuburbs\\nsubvene\\nsubvened\\nsubvenes\\nsubvening\\nsubvert\\nsubverted\\nsubverting\\nsubverts\\nsubvicar\\nsubvicars\\nsubviral\\nsubvocal\\nsubway\\nsubways\\nsubzone\\nsubzones\\nsuccah\\nsuccahs\\nsucceed\\nsucceeded\\nsucceeding\\nsucceeds\\nsuccess\\nsuccesses\\nsuccessful\\nsuccessfully\\nsuccession\\nsuccessions\\nsuccessive\\nsuccessively\\nsuccessor\\nsuccessors\\nsuccinct\\nsuccincter\\nsuccinctest\\nsuccinctly\\nsuccinctness\\nsuccinctnesses\\nsuccinic\\nsuccinyl\\nsuccinyls\\nsuccor\\nsuccored\\nsuccorer\\nsuccorers\\nsuccories\\nsuccoring\\nsuccors\\nsuccory\\nsuccotash\\nsuccotashes\\nsuccoth\\nsuccour\\nsuccoured\\nsuccouring\\nsuccours\\nsuccuba\\nsuccubae\\nsuccubi\\nsuccubus\\nsuccubuses\\nsucculence\\nsucculences\\nsucculent\\nsucculents\\nsuccumb\\nsuccumbed\\nsuccumbing\\nsuccumbs\\nsuccuss\\nsuccussed\\nsuccusses\\nsuccussing\\nsuch\\nsuchlike\\nsuchness\\nsuchnesses\\nsuck\\nsucked\\nsucker\\nsuckered\\nsuckering\\nsuckers\\nsuckfish\\nsuckfishes\\nsucking\\nsuckle\\nsuckled\\nsuckler\\nsucklers\\nsuckles\\nsuckless\\nsuckling\\nsucklings\\nsucks\\nsucrase\\nsucrases\\nsucre\\nsucres\\nsucrose\\nsucroses\\nsuction\\nsuctions\\nsudaria\\nsudaries\\nsudarium\\nsudary\\nsudation\\nsudations\\nsudatories\\nsudatory\\nsudd\\nsudden\\nsuddenly\\nsuddenness\\nsuddennesses\\nsuddens\\nsudds\\nsudor\\nsudoral\\nsudors\\nsuds\\nsudsed\\nsudser\\nsudsers\\nsudses\\nsudsier\\nsudsiest\\nsudsing\\nsudsless\\nsudsy\\nsue\\nsued\\nsuede\\nsueded\\nsuedes\\nsueding\\nsuer\\nsuers\\nsues\\nsuet\\nsuets\\nsuety\\nsuffari\\nsuffaris\\nsuffer\\nsuffered\\nsufferer\\nsufferers\\nsuffering\\nsufferings\\nsuffers\\nsuffice\\nsufficed\\nsufficer\\nsufficers\\nsuffices\\nsufficiencies\\nsufficiency\\nsufficient\\nsufficiently\\nsufficing\\nsuffix\\nsuffixal\\nsuffixation\\nsuffixations\\nsuffixed\\nsuffixes\\nsuffixing\\nsufflate\\nsufflated\\nsufflates\\nsufflating\\nsuffocate\\nsuffocated\\nsuffocates\\nsuffocating\\nsuffocatingly\\nsuffocation\\nsuffocations\\nsuffrage\\nsuffrages\\nsuffuse\\nsuffused\\nsuffuses\\nsuffusing\\nsugar\\nsugarcane\\nsugarcanes\\nsugared\\nsugarier\\nsugariest\\nsugaring\\nsugars\\nsugary\\nsuggest\\nsuggested\\nsuggestible\\nsuggesting\\nsuggestion\\nsuggestions\\nsuggestive\\nsuggestively\\nsuggestiveness\\nsuggestivenesses\\nsuggests\\nsugh\\nsughed\\nsughing\\nsughs\\nsuicidal\\nsuicide\\nsuicided\\nsuicides\\nsuiciding\\nsuing\\nsuint\\nsuints\\nsuit\\nsuitabilities\\nsuitability\\nsuitable\\nsuitably\\nsuitcase\\nsuitcases\\nsuite\\nsuited\\nsuites\\nsuiting\\nsuitings\\nsuitlike\\nsuitor\\nsuitors\\nsuits\\nsukiyaki\\nsukiyakis\\nsukkah\\nsukkahs\\nsukkoth\\nsulcate\\nsulcated\\nsulci\\nsulcus\\nsuldan\\nsuldans\\nsulfa\\nsulfas\\nsulfate\\nsulfated\\nsulfates\\nsulfating\\nsulfid\\nsulfide\\nsulfides\\nsulfids\\nsulfinyl\\nsulfinyls\\nsulfite\\nsulfites\\nsulfitic\\nsulfo\\nsulfonal\\nsulfonals\\nsulfone\\nsulfones\\nsulfonic\\nsulfonyl\\nsulfonyls\\nsulfur\\nsulfured\\nsulfureous\\nsulfuret\\nsulfureted\\nsulfureting\\nsulfurets\\nsulfuretted\\nsulfuretting\\nsulfuric\\nsulfuring\\nsulfurous\\nsulfurs\\nsulfury\\nsulfuryl\\nsulfuryls\\nsulk\\nsulked\\nsulker\\nsulkers\\nsulkier\\nsulkies\\nsulkiest\\nsulkily\\nsulkiness\\nsulkinesses\\nsulking\\nsulks\\nsulky\\nsullage\\nsullages\\nsullen\\nsullener\\nsullenest\\nsullenly\\nsullenness\\nsullennesses\\nsullied\\nsullies\\nsully\\nsullying\\nsulpha\\nsulphas\\nsulphate\\nsulphated\\nsulphates\\nsulphating\\nsulphid\\nsulphide\\nsulphides\\nsulphids\\nsulphite\\nsulphites\\nsulphone\\nsulphones\\nsulphur\\nsulphured\\nsulphuring\\nsulphurs\\nsulphury\\nsultan\\nsultana\\nsultanas\\nsultanate\\nsultanated\\nsultanates\\nsultanating\\nsultanic\\nsultans\\nsultrier\\nsultriest\\nsultrily\\nsultry\\nsum\\nsumac\\nsumach\\nsumachs\\nsumacs\\nsumless\\nsumma\\nsummable\\nsummae\\nsummand\\nsummands\\nsummaries\\nsummarily\\nsummarization\\nsummarizations\\nsummarize\\nsummarized\\nsummarizes\\nsummarizing\\nsummary\\nsummas\\nsummate\\nsummated\\nsummates\\nsummating\\nsummation\\nsummations\\nsummed\\nsummer\\nsummered\\nsummerier\\nsummeriest\\nsummering\\nsummerly\\nsummers\\nsummery\\nsumming\\nsummit\\nsummital\\nsummitries\\nsummitry\\nsummits\\nsummon\\nsummoned\\nsummoner\\nsummoners\\nsummoning\\nsummons\\nsummonsed\\nsummonses\\nsummonsing\\nsumo\\nsumos\\nsump\\nsumps\\nsumpter\\nsumpters\\nsumptuous\\nsumpweed\\nsumpweeds\\nsums\\nsun\\nsunback\\nsunbaked\\nsunbath\\nsunbathe\\nsunbathed\\nsunbathes\\nsunbathing\\nsunbaths\\nsunbeam\\nsunbeams\\nsunbird\\nsunbirds\\nsunbow\\nsunbows\\nsunburn\\nsunburned\\nsunburning\\nsunburns\\nsunburnt\\nsunburst\\nsunbursts\\nsundae\\nsundaes\\nsunder\\nsundered\\nsunderer\\nsunderers\\nsundering\\nsunders\\nsundew\\nsundews\\nsundial\\nsundials\\nsundog\\nsundogs\\nsundown\\nsundowns\\nsundries\\nsundrops\\nsundry\\nsunfast\\nsunfish\\nsunfishes\\nsunflower\\nsunflowers\\nsung\\nsunglass\\nsunglasses\\nsunglow\\nsunglows\\nsunk\\nsunken\\nsunket\\nsunkets\\nsunlamp\\nsunlamps\\nsunland\\nsunlands\\nsunless\\nsunlight\\nsunlights\\nsunlike\\nsunlit\\nsunn\\nsunna\\nsunnas\\nsunned\\nsunnier\\nsunniest\\nsunnily\\nsunning\\nsunns\\nsunny\\nsunrise\\nsunrises\\nsunroof\\nsunroofs\\nsunroom\\nsunrooms\\nsuns\\nsunscald\\nsunscalds\\nsunset\\nsunsets\\nsunshade\\nsunshades\\nsunshine\\nsunshines\\nsunshiny\\nsunspot\\nsunspots\\nsunstone\\nsunstones\\nsunstroke\\nsunsuit\\nsunsuits\\nsuntan\\nsuntans\\nsunup\\nsunups\\nsunward\\nsunwards\\nsunwise\\nsup\\nsupe\\nsuper\\nsuperabundance\\nsuperabundances\\nsuperabundant\\nsuperadd\\nsuperadded\\nsuperadding\\nsuperadds\\nsuperambitious\\nsuperathlete\\nsuperathletes\\nsuperb\\nsuperber\\nsuperbest\\nsuperbly\\nsuperbomb\\nsuperbombs\\nsupercilious\\nsuperclean\\nsupercold\\nsupercolossal\\nsuperconvenient\\nsuperdense\\nsupered\\nsupereffective\\nsuperefficiencies\\nsuperefficiency\\nsuperefficient\\nsuperego\\nsuperegos\\nsuperenthusiasm\\nsuperenthusiasms\\nsuperenthusiastic\\nsuperfast\\nsuperficial\\nsuperficialities\\nsuperficiality\\nsuperficially\\nsuperfix\\nsuperfixes\\nsuperfluity\\nsuperfluous\\nsupergood\\nsupergovernment\\nsupergovernments\\nsupergroup\\nsupergroups\\nsuperhard\\nsuperhero\\nsuperheroine\\nsuperheroines\\nsuperheros\\nsuperhuman\\nsuperhumans\\nsuperimpose\\nsuperimposed\\nsuperimposes\\nsuperimposing\\nsupering\\nsuperintellectual\\nsuperintellectuals\\nsuperintelligence\\nsuperintelligences\\nsuperintelligent\\nsuperintend\\nsuperintended\\nsuperintendence\\nsuperintendences\\nsuperintendencies\\nsuperintendency\\nsuperintendent\\nsuperintendents\\nsuperintending\\nsuperintends\\nsuperior\\nsuperiorities\\nsuperiority\\nsuperiors\\nsuperjet\\nsuperjets\\nsuperlain\\nsuperlative\\nsuperlatively\\nsuperlay\\nsuperlie\\nsuperlies\\nsuperlying\\nsuperman\\nsupermarket\\nsupermarkets\\nsupermen\\nsupermodern\\nsupernal\\nsupernatural\\nsupernaturally\\nsuperpatriot\\nsuperpatriotic\\nsuperpatriotism\\nsuperpatriotisms\\nsuperpatriots\\nsuperplane\\nsuperplanes\\nsuperpolite\\nsuperport\\nsuperports\\nsuperpowerful\\nsuperrefined\\nsuperrich\\nsupers\\nsupersalesman\\nsupersalesmen\\nsuperscout\\nsuperscouts\\nsuperscript\\nsuperscripts\\nsupersecrecies\\nsupersecrecy\\nsupersecret\\nsupersede\\nsuperseded\\nsupersedes\\nsuperseding\\nsupersensitive\\nsupersex\\nsupersexes\\nsupership\\nsuperships\\nsupersize\\nsupersized\\nsuperslick\\nsupersmooth\\nsupersoft\\nsupersonic\\nsuperspecial\\nsuperspecialist\\nsuperspecialists\\nsuperstar\\nsuperstars\\nsuperstate\\nsuperstates\\nsuperstition\\nsuperstitions\\nsuperstitious\\nsuperstrength\\nsuperstrengths\\nsuperstrong\\nsuperstructure\\nsuperstructures\\nsupersuccessful\\nsupersystem\\nsupersystems\\nsupertanker\\nsupertankers\\nsupertax\\nsupertaxes\\nsuperthick\\nsuperthin\\nsupertight\\nsupertough\\nsupervene\\nsupervened\\nsupervenes\\nsupervenient\\nsupervening\\nsupervise\\nsupervised\\nsupervises\\nsupervising\\nsupervision\\nsupervisions\\nsupervisor\\nsupervisors\\nsupervisory\\nsuperweak\\nsuperweapon\\nsuperweapons\\nsuperwoman\\nsuperwomen\\nsupes\\nsupinate\\nsupinated\\nsupinates\\nsupinating\\nsupine\\nsupinely\\nsupines\\nsupped\\nsupper\\nsuppers\\nsupping\\nsupplant\\nsupplanted\\nsupplanting\\nsupplants\\nsupple\\nsuppled\\nsupplely\\nsupplement\\nsupplemental\\nsupplementary\\nsupplements\\nsuppler\\nsupples\\nsupplest\\nsuppliant\\nsuppliants\\nsupplicant\\nsupplicants\\nsupplicate\\nsupplicated\\nsupplicates\\nsupplicating\\nsupplication\\nsupplications\\nsupplied\\nsupplier\\nsuppliers\\nsupplies\\nsuppling\\nsupply\\nsupplying\\nsupport\\nsupportable\\nsupported\\nsupporter\\nsupporters\\nsupporting\\nsupportive\\nsupports\\nsupposal\\nsupposals\\nsuppose\\nsupposed\\nsupposer\\nsupposers\\nsupposes\\nsupposing\\nsupposition\\nsuppositions\\nsuppositories\\nsuppository\\nsuppress\\nsuppressed\\nsuppresses\\nsuppressing\\nsuppression\\nsuppressions\\nsuppurate\\nsuppurated\\nsuppurates\\nsuppurating\\nsuppuration\\nsuppurations\\nsupra\\nsupraclavicular\\nsupremacies\\nsupremacy\\nsupreme\\nsupremely\\nsupremer\\nsupremest\\nsups\\nsura\\nsurah\\nsurahs\\nsural\\nsuras\\nsurbase\\nsurbased\\nsurbases\\nsurcease\\nsurceased\\nsurceases\\nsurceasing\\nsurcharge\\nsurcharges\\nsurcoat\\nsurcoats\\nsurd\\nsurds\\nsure\\nsurefire\\nsurely\\nsureness\\nsurenesses\\nsurer\\nsurest\\nsureties\\nsurety\\nsurf\\nsurfable\\nsurface\\nsurfaced\\nsurfacer\\nsurfacers\\nsurfaces\\nsurfacing\\nsurfbird\\nsurfbirds\\nsurfboat\\nsurfboats\\nsurfed\\nsurfeit\\nsurfeited\\nsurfeiting\\nsurfeits\\nsurfer\\nsurfers\\nsurffish\\nsurffishes\\nsurfier\\nsurfiest\\nsurfing\\nsurfings\\nsurflike\\nsurfs\\nsurfy\\nsurge\\nsurged\\nsurgeon\\nsurgeons\\nsurger\\nsurgeries\\nsurgers\\nsurgery\\nsurges\\nsurgical\\nsurgically\\nsurging\\nsurgy\\nsuricate\\nsuricates\\nsurlier\\nsurliest\\nsurlily\\nsurly\\nsurmise\\nsurmised\\nsurmiser\\nsurmisers\\nsurmises\\nsurmising\\nsurmount\\nsurmounted\\nsurmounting\\nsurmounts\\nsurname\\nsurnamed\\nsurnamer\\nsurnamers\\nsurnames\\nsurnaming\\nsurpass\\nsurpassed\\nsurpasses\\nsurpassing\\nsurpassingly\\nsurplice\\nsurplices\\nsurplus\\nsurpluses\\nsurprint\\nsurprinted\\nsurprinting\\nsurprints\\nsurprise\\nsurprised\\nsurprises\\nsurprising\\nsurprisingly\\nsurprize\\nsurprized\\nsurprizes\\nsurprizing\\nsurra\\nsurras\\nsurreal\\nsurrealism\\nsurrender\\nsurrendered\\nsurrendering\\nsurrenders\\nsurreptitious\\nsurreptitiously\\nsurrey\\nsurreys\\nsurround\\nsurrounded\\nsurrounding\\nsurroundings\\nsurrounds\\nsurroyal\\nsurroyals\\nsurtax\\nsurtaxed\\nsurtaxes\\nsurtaxing\\nsurtout\\nsurtouts\\nsurveil\\nsurveiled\\nsurveiling\\nsurveillance\\nsurveillances\\nsurveils\\nsurvey\\nsurveyed\\nsurveying\\nsurveyor\\nsurveyors\\nsurveys\\nsurvival\\nsurvivals\\nsurvive\\nsurvived\\nsurviver\\nsurvivers\\nsurvives\\nsurviving\\nsurvivor\\nsurvivors\\nsurvivorship\\nsurvivorships\\nsusceptibilities\\nsusceptibility\\nsusceptible\\nsuslik\\nsusliks\\nsuspect\\nsuspected\\nsuspecting\\nsuspects\\nsuspend\\nsuspended\\nsuspender\\nsuspenders\\nsuspending\\nsuspends\\nsuspense\\nsuspenseful\\nsuspenses\\nsuspension\\nsuspensions\\nsuspicion\\nsuspicions\\nsuspicious\\nsuspiciously\\nsuspire\\nsuspired\\nsuspires\\nsuspiring\\nsustain\\nsustained\\nsustaining\\nsustains\\nsustenance\\nsustenances\\nsusurrus\\nsusurruses\\nsutler\\nsutlers\\nsutra\\nsutras\\nsutta\\nsuttas\\nsuttee\\nsuttees\\nsutural\\nsuture\\nsutured\\nsutures\\nsuturing\\nsuzerain\\nsuzerains\\nsvaraj\\nsvarajes\\nsvedberg\\nsvedbergs\\nsvelte\\nsveltely\\nsvelter\\nsveltest\\nswab\\nswabbed\\nswabber\\nswabbers\\nswabbie\\nswabbies\\nswabbing\\nswabby\\nswabs\\nswaddle\\nswaddled\\nswaddles\\nswaddling\\nswag\\nswage\\nswaged\\nswager\\nswagers\\nswages\\nswagged\\nswagger\\nswaggered\\nswaggering\\nswaggers\\nswagging\\nswaging\\nswagman\\nswagmen\\nswags\\nswail\\nswails\\nswain\\nswainish\\nswains\\nswale\\nswales\\nswallow\\nswallowed\\nswallowing\\nswallows\\nswam\\nswami\\nswamies\\nswamis\\nswamp\\nswamped\\nswamper\\nswampers\\nswampier\\nswampiest\\nswamping\\nswampish\\nswamps\\nswampy\\nswamy\\nswan\\nswang\\nswanherd\\nswanherds\\nswank\\nswanked\\nswanker\\nswankest\\nswankier\\nswankiest\\nswankily\\nswanking\\nswanks\\nswanky\\nswanlike\\nswanned\\nswanneries\\nswannery\\nswanning\\nswanpan\\nswanpans\\nswans\\nswanskin\\nswanskins\\nswap\\nswapped\\nswapper\\nswappers\\nswapping\\nswaps\\nswaraj\\nswarajes\\nsward\\nswarded\\nswarding\\nswards\\nsware\\nswarf\\nswarfs\\nswarm\\nswarmed\\nswarmer\\nswarmers\\nswarming\\nswarms\\nswart\\nswarth\\nswarthier\\nswarthiest\\nswarths\\nswarthy\\nswarty\\nswash\\nswashbuckler\\nswashbucklers\\nswashbuckling\\nswashbucklings\\nswashed\\nswasher\\nswashers\\nswashes\\nswashing\\nswastica\\nswasticas\\nswastika\\nswastikas\\nswat\\nswatch\\nswatches\\nswath\\nswathe\\nswathed\\nswather\\nswathers\\nswathes\\nswathing\\nswaths\\nswats\\nswatted\\nswatter\\nswatters\\nswatting\\nsway\\nswayable\\nswayback\\nswaybacks\\nswayed\\nswayer\\nswayers\\nswayful\\nswaying\\nsways\\nswear\\nswearer\\nswearers\\nswearing\\nswears\\nsweat\\nsweatbox\\nsweatboxes\\nsweated\\nsweater\\nsweaters\\nsweatier\\nsweatiest\\nsweatily\\nsweating\\nsweats\\nsweaty\\nswede\\nswedes\\nsweenies\\nsweeny\\nsweep\\nsweeper\\nsweepers\\nsweepier\\nsweepiest\\nsweeping\\nsweepings\\nsweeps\\nsweepstakes\\nsweepy\\nsweer\\nsweet\\nsweeten\\nsweetened\\nsweetener\\nsweeteners\\nsweetening\\nsweetens\\nsweeter\\nsweetest\\nsweetheart\\nsweethearts\\nsweetie\\nsweeties\\nsweeting\\nsweetings\\nsweetish\\nsweetly\\nsweetness\\nsweetnesses\\nsweets\\nsweetsop\\nsweetsops\\nswell\\nswelled\\nsweller\\nswellest\\nswelling\\nswellings\\nswells\\nswelter\\nsweltered\\nsweltering\\nswelters\\nsweltrier\\nsweltriest\\nsweltry\\nswept\\nswerve\\nswerved\\nswerver\\nswervers\\nswerves\\nswerving\\nsweven\\nswevens\\nswift\\nswifter\\nswifters\\nswiftest\\nswiftly\\nswiftness\\nswiftnesses\\nswifts\\nswig\\nswigged\\nswigger\\nswiggers\\nswigging\\nswigs\\nswill\\nswilled\\nswiller\\nswillers\\nswilling\\nswills\\nswim\\nswimmer\\nswimmers\\nswimmier\\nswimmiest\\nswimmily\\nswimming\\nswimmings\\nswimmy\\nswims\\nswimsuit\\nswimsuits\\nswindle\\nswindled\\nswindler\\nswindlers\\nswindles\\nswindling\\nswine\\nswinepox\\nswinepoxes\\nswing\\nswinge\\nswinged\\nswingeing\\nswinger\\nswingers\\nswinges\\nswingier\\nswingiest\\nswinging\\nswingle\\nswingled\\nswingles\\nswingling\\nswings\\nswingy\\nswinish\\nswink\\nswinked\\nswinking\\nswinks\\nswinney\\nswinneys\\nswipe\\nswiped\\nswipes\\nswiping\\nswiple\\nswiples\\nswipple\\nswipples\\nswirl\\nswirled\\nswirlier\\nswirliest\\nswirling\\nswirls\\nswirly\\nswish\\nswished\\nswisher\\nswishers\\nswishes\\nswishier\\nswishiest\\nswishing\\nswishy\\nswiss\\nswisses\\nswitch\\nswitchboard\\nswitchboards\\nswitched\\nswitcher\\nswitchers\\nswitches\\nswitching\\nswith\\nswithe\\nswither\\nswithered\\nswithering\\nswithers\\nswithly\\nswive\\nswived\\nswivel\\nswiveled\\nswiveling\\nswivelled\\nswivelling\\nswivels\\nswives\\nswivet\\nswivets\\nswiving\\nswizzle\\nswizzled\\nswizzler\\nswizzlers\\nswizzles\\nswizzling\\nswob\\nswobbed\\nswobber\\nswobbers\\nswobbing\\nswobs\\nswollen\\nswoon\\nswooned\\nswooner\\nswooners\\nswooning\\nswoons\\nswoop\\nswooped\\nswooper\\nswoopers\\nswooping\\nswoops\\nswoosh\\nswooshed\\nswooshes\\nswooshing\\nswop\\nswopped\\nswopping\\nswops\\nsword\\nswordfish\\nswordfishes\\nswordman\\nswordmen\\nswords\\nswore\\nsworn\\nswot\\nswots\\nswotted\\nswotter\\nswotters\\nswotting\\nswoun\\nswound\\nswounded\\nswounding\\nswounds\\nswouned\\nswouning\\nswouns\\nswum\\nswung\\nsybarite\\nsybarites\\nsybo\\nsyboes\\nsycamine\\nsycamines\\nsycamore\\nsycamores\\nsyce\\nsycee\\nsycees\\nsyces\\nsycomore\\nsycomores\\nsyconia\\nsyconium\\nsycophant\\nsycophantic\\nsycophants\\nsycoses\\nsycosis\\nsyenite\\nsyenites\\nsyenitic\\nsyke\\nsykes\\nsyllabi\\nsyllabic\\nsyllabics\\nsyllable\\nsyllabled\\nsyllables\\nsyllabling\\nsyllabub\\nsyllabubs\\nsyllabus\\nsyllabuses\\nsylph\\nsylphic\\nsylphid\\nsylphids\\nsylphish\\nsylphs\\nsylphy\\nsylva\\nsylvae\\nsylvan\\nsylvans\\nsylvas\\nsylvatic\\nsylvin\\nsylvine\\nsylvines\\nsylvins\\nsylvite\\nsylvites\\nsymbion\\nsymbions\\nsymbiont\\nsymbionts\\nsymbiot\\nsymbiote\\nsymbiotes\\nsymbiots\\nsymbol\\nsymboled\\nsymbolic\\nsymbolical\\nsymbolically\\nsymboling\\nsymbolism\\nsymbolisms\\nsymbolization\\nsymbolizations\\nsymbolize\\nsymbolized\\nsymbolizes\\nsymbolizing\\nsymbolled\\nsymbolling\\nsymbols\\nsymmetric\\nsymmetrical\\nsymmetrically\\nsymmetries\\nsymmetry\\nsympathetic\\nsympathetically\\nsympathies\\nsympathize\\nsympathized\\nsympathizes\\nsympathizing\\nsympathy\\nsympatries\\nsympatry\\nsymphonic\\nsymphonies\\nsymphony\\nsympodia\\nsymposia\\nsymposium\\nsymptom\\nsymptomatically\\nsymptomatology\\nsymptoms\\nsyn\\nsynagog\\nsynagogs\\nsynagogue\\nsynagogues\\nsynapse\\nsynapsed\\nsynapses\\nsynapsing\\nsynapsis\\nsynaptic\\nsync\\nsyncarp\\nsyncarpies\\nsyncarps\\nsyncarpy\\nsynced\\nsynch\\nsynched\\nsynching\\nsynchro\\nsynchronization\\nsynchronizations\\nsynchronize\\nsynchronized\\nsynchronizes\\nsynchronizing\\nsynchros\\nsynchs\\nsyncing\\nsyncline\\nsynclines\\nsyncom\\nsyncoms\\nsyncopal\\nsyncopate\\nsyncopated\\nsyncopates\\nsyncopating\\nsyncopation\\nsyncopations\\nsyncope\\nsyncopes\\nsyncopic\\nsyncs\\nsyncytia\\nsyndeses\\nsyndesis\\nsyndesises\\nsyndet\\nsyndetic\\nsyndets\\nsyndic\\nsyndical\\nsyndicate\\nsyndicated\\nsyndicates\\nsyndicating\\nsyndication\\nsyndics\\nsyndrome\\nsyndromes\\nsyne\\nsynectic\\nsynergia\\nsynergias\\nsynergic\\nsynergid\\nsynergids\\nsynergies\\nsynergy\\nsynesis\\nsynesises\\nsyngamic\\nsyngamies\\nsyngamy\\nsynod\\nsynodal\\nsynodic\\nsynods\\nsynonym\\nsynonyme\\nsynonymes\\nsynonymies\\nsynonymous\\nsynonyms\\nsynonymy\\nsynopses\\nsynopsis\\nsynoptic\\nsynovia\\nsynovial\\nsynovias\\nsyntactic\\nsyntactical\\nsyntax\\nsyntaxes\\nsyntheses\\nsynthesis\\nsynthesize\\nsynthesized\\nsynthesizer\\nsynthesizers\\nsynthesizes\\nsynthesizing\\nsynthetic\\nsynthetically\\nsynthetics\\nsyntonic\\nsyntonies\\nsyntony\\nsynura\\nsynurae\\nsypher\\nsyphered\\nsyphering\\nsyphers\\nsyphilis\\nsyphilises\\nsyphilitic\\nsyphon\\nsyphoned\\nsyphoning\\nsyphons\\nsyren\\nsyrens\\nsyringa\\nsyringas\\nsyringe\\nsyringed\\nsyringes\\nsyringing\\nsyrinx\\nsyrinxes\\nsyrphian\\nsyrphians\\nsyrphid\\nsyrphids\\nsyrup\\nsyrups\\nsyrupy\\nsystem\\nsystematic\\nsystematical\\nsystematically\\nsystematize\\nsystematized\\nsystematizes\\nsystematizing\\nsystemic\\nsystemics\\nsystems\\nsystole\\nsystoles\\nsystolic\\nsyzygal\\nsyzygial\\nsyzygies\\nsyzygy\\nta\\ntab\\ntabanid\\ntabanids\\ntabard\\ntabarded\\ntabards\\ntabaret\\ntabarets\\ntabbed\\ntabbied\\ntabbies\\ntabbing\\ntabbis\\ntabbises\\ntabby\\ntabbying\\ntaber\\ntabered\\ntabering\\ntabernacle\\ntabernacles\\ntabers\\ntabes\\ntabetic\\ntabetics\\ntabid\\ntabla\\ntablas\\ntable\\ntableau\\ntableaus\\ntableaux\\ntablecloth\\ntablecloths\\ntabled\\ntableful\\ntablefuls\\ntables\\ntablesful\\ntablespoon\\ntablespoonful\\ntablespoonfuls\\ntablespoons\\ntablet\\ntableted\\ntableting\\ntabletop\\ntabletops\\ntablets\\ntabletted\\ntabletting\\ntableware\\ntablewares\\ntabling\\ntabloid\\ntabloids\\ntaboo\\ntabooed\\ntabooing\\ntaboos\\ntabor\\ntabored\\ntaborer\\ntaborers\\ntaboret\\ntaborets\\ntaborin\\ntaborine\\ntaborines\\ntaboring\\ntaborins\\ntabors\\ntabour\\ntaboured\\ntabourer\\ntabourers\\ntabouret\\ntabourets\\ntabouring\\ntabours\\ntabs\\ntabu\\ntabued\\ntabuing\\ntabular\\ntabulate\\ntabulated\\ntabulates\\ntabulating\\ntabulation\\ntabulations\\ntabulator\\ntabulators\\ntabus\\ntace\\ntaces\\ntacet\\ntach\\ntache\\ntaches\\ntachinid\\ntachinids\\ntachism\\ntachisms\\ntachist\\ntachiste\\ntachistes\\ntachists\\ntachs\\ntacit\\ntacitly\\ntacitness\\ntacitnesses\\ntaciturn\\ntaciturnities\\ntaciturnity\\ntack\\ntacked\\ntacker\\ntackers\\ntacket\\ntackets\\ntackey\\ntackier\\ntackiest\\ntackified\\ntackifies\\ntackify\\ntackifying\\ntackily\\ntacking\\ntackle\\ntackled\\ntackler\\ntacklers\\ntackles\\ntackless\\ntackling\\ntacklings\\ntacks\\ntacky\\ntacnode\\ntacnodes\\ntaco\\ntaconite\\ntaconites\\ntacos\\ntact\\ntactful\\ntactfully\\ntactic\\ntactical\\ntactician\\ntacticians\\ntactics\\ntactile\\ntaction\\ntactions\\ntactless\\ntactlessly\\ntacts\\ntactual\\ntad\\ntadpole\\ntadpoles\\ntads\\ntae\\ntael\\ntaels\\ntaenia\\ntaeniae\\ntaenias\\ntaffarel\\ntaffarels\\ntafferel\\ntafferels\\ntaffeta\\ntaffetas\\ntaffia\\ntaffias\\ntaffies\\ntaffrail\\ntaffrails\\ntaffy\\ntafia\\ntafias\\ntag\\ntagalong\\ntagalongs\\ntagboard\\ntagboards\\ntagged\\ntagger\\ntaggers\\ntagging\\ntaglike\\ntagmeme\\ntagmemes\\ntagrag\\ntagrags\\ntags\\ntahr\\ntahrs\\ntahsil\\ntahsils\\ntaiga\\ntaigas\\ntaiglach\\ntail\\ntailback\\ntailbacks\\ntailbone\\ntailbones\\ntailcoat\\ntailcoats\\ntailed\\ntailer\\ntailers\\ntailgate\\ntailgated\\ntailgates\\ntailgating\\ntailing\\ntailings\\ntaille\\ntailles\\ntailless\\ntaillight\\ntaillights\\ntaillike\\ntailor\\ntailored\\ntailoring\\ntailors\\ntailpipe\\ntailpipes\\ntailrace\\ntailraces\\ntails\\ntailskid\\ntailskids\\ntailspin\\ntailspins\\ntailwind\\ntailwinds\\ntain\\ntains\\ntaint\\ntainted\\ntainting\\ntaints\\ntaipan\\ntaipans\\ntaj\\ntajes\\ntakable\\ntakahe\\ntakahes\\ntake\\ntakeable\\ntakedown\\ntakedowns\\ntaken\\ntakeoff\\ntakeoffs\\ntakeout\\ntakeouts\\ntakeover\\ntakeovers\\ntaker\\ntakers\\ntakes\\ntakin\\ntaking\\ntakingly\\ntakings\\ntakins\\ntala\\ntalapoin\\ntalapoins\\ntalar\\ntalaria\\ntalars\\ntalas\\ntalc\\ntalced\\ntalcing\\ntalcked\\ntalcking\\ntalcky\\ntalcose\\ntalcous\\ntalcs\\ntalcum\\ntalcums\\ntale\\ntalent\\ntalented\\ntalents\\ntaler\\ntalers\\ntales\\ntalesman\\ntalesmen\\ntaleysim\\ntali\\ntalion\\ntalions\\ntaliped\\ntalipeds\\ntalipes\\ntalipot\\ntalipots\\ntalisman\\ntalismans\\ntalk\\ntalkable\\ntalkative\\ntalked\\ntalker\\ntalkers\\ntalkie\\ntalkier\\ntalkies\\ntalkiest\\ntalking\\ntalkings\\ntalks\\ntalky\\ntall\\ntallage\\ntallaged\\ntallages\\ntallaging\\ntallaism\\ntallboy\\ntallboys\\ntaller\\ntallest\\ntallied\\ntallier\\ntallies\\ntallish\\ntallith\\ntallithes\\ntallithim\\ntallitoth\\ntallness\\ntallnesses\\ntallol\\ntallols\\ntallow\\ntallowed\\ntallowing\\ntallows\\ntallowy\\ntally\\ntallyho\\ntallyhoed\\ntallyhoing\\ntallyhos\\ntallying\\ntallyman\\ntallymen\\ntalmudic\\ntalon\\ntaloned\\ntalons\\ntalooka\\ntalookas\\ntaluk\\ntaluka\\ntalukas\\ntaluks\\ntalus\\ntaluses\\ntam\\ntamable\\ntamal\\ntamale\\ntamales\\ntamals\\ntamandu\\ntamandua\\ntamanduas\\ntamandus\\ntamarack\\ntamaracks\\ntamarao\\ntamaraos\\ntamarau\\ntamaraus\\ntamarin\\ntamarind\\ntamarinds\\ntamarins\\ntamarisk\\ntamarisks\\ntamasha\\ntamashas\\ntambac\\ntambacs\\ntambala\\ntambalas\\ntambour\\ntamboura\\ntambouras\\ntamboured\\ntambourine\\ntambourines\\ntambouring\\ntambours\\ntambur\\ntambura\\ntamburas\\ntamburs\\ntame\\ntameable\\ntamed\\ntamein\\ntameins\\ntameless\\ntamely\\ntameness\\ntamenesses\\ntamer\\ntamers\\ntames\\ntamest\\ntaming\\ntamis\\ntamises\\ntammie\\ntammies\\ntammy\\ntamp\\ntampala\\ntampalas\\ntampan\\ntampans\\ntamped\\ntamper\\ntampered\\ntamperer\\ntamperers\\ntampering\\ntampers\\ntamping\\ntampion\\ntampions\\ntampon\\ntamponed\\ntamponing\\ntampons\\ntamps\\ntams\\ntan\\ntanager\\ntanagers\\ntanbark\\ntanbarks\\ntandem\\ntandems\\ntang\\ntanged\\ntangelo\\ntangelos\\ntangence\\ntangences\\ntangencies\\ntangency\\ntangent\\ntangential\\ntangents\\ntangerine\\ntangerines\\ntangibilities\\ntangibility\\ntangible\\ntangibles\\ntangibly\\ntangier\\ntangiest\\ntanging\\ntangle\\ntangled\\ntangler\\ntanglers\\ntangles\\ntanglier\\ntangliest\\ntangling\\ntangly\\ntango\\ntangoed\\ntangoing\\ntangos\\ntangram\\ntangrams\\ntangs\\ntangy\\ntanist\\ntanistries\\ntanistry\\ntanists\\ntank\\ntanka\\ntankage\\ntankages\\ntankard\\ntankards\\ntankas\\ntanked\\ntanker\\ntankers\\ntankful\\ntankfuls\\ntanking\\ntanks\\ntankship\\ntankships\\ntannable\\ntannage\\ntannages\\ntannate\\ntannates\\ntanned\\ntanner\\ntanneries\\ntanners\\ntannery\\ntannest\\ntannic\\ntannin\\ntanning\\ntannings\\ntannins\\ntannish\\ntanrec\\ntanrecs\\ntans\\ntansies\\ntansy\\ntantalic\\ntantalize\\ntantalized\\ntantalizer\\ntantalizers\\ntantalizes\\ntantalizing\\ntantalizingly\\ntantalum\\ntantalums\\ntantalus\\ntantaluses\\ntantamount\\ntantara\\ntantaras\\ntantivies\\ntantivy\\ntanto\\ntantra\\ntantras\\ntantric\\ntantrum\\ntantrums\\ntanyard\\ntanyards\\ntao\\ntaos\\ntap\\ntapa\\ntapadera\\ntapaderas\\ntapadero\\ntapaderos\\ntapalo\\ntapalos\\ntapas\\ntape\\ntaped\\ntapeless\\ntapelike\\ntapeline\\ntapelines\\ntaper\\ntapered\\ntaperer\\ntaperers\\ntapering\\ntapers\\ntapes\\ntapestried\\ntapestries\\ntapestry\\ntapestrying\\ntapeta\\ntapetal\\ntapetum\\ntapeworm\\ntapeworms\\ntaphole\\ntapholes\\ntaphouse\\ntaphouses\\ntaping\\ntapioca\\ntapiocas\\ntapir\\ntapirs\\ntapis\\ntapises\\ntapped\\ntapper\\ntappers\\ntappet\\ntappets\\ntapping\\ntappings\\ntaproom\\ntaprooms\\ntaproot\\ntaproots\\ntaps\\ntapster\\ntapsters\\ntar\\ntarantas\\ntarantases\\ntarantula\\ntarantulas\\ntarboosh\\ntarbooshes\\ntarbush\\ntarbushes\\ntardier\\ntardies\\ntardiest\\ntardily\\ntardo\\ntardy\\ntare\\ntared\\ntares\\ntarge\\ntarges\\ntarget\\ntargeted\\ntargeting\\ntargets\\ntariff\\ntariffed\\ntariffing\\ntariffs\\ntaring\\ntarlatan\\ntarlatans\\ntarletan\\ntarletans\\ntarmac\\ntarmacs\\ntarn\\ntarnal\\ntarnally\\ntarnish\\ntarnished\\ntarnishes\\ntarnishing\\ntarns\\ntaro\\ntaroc\\ntarocs\\ntarok\\ntaroks\\ntaros\\ntarot\\ntarots\\ntarp\\ntarpan\\ntarpans\\ntarpaper\\ntarpapers\\ntarpaulin\\ntarpaulins\\ntarpon\\ntarpons\\ntarps\\ntarragon\\ntarragons\\ntarre\\ntarred\\ntarres\\ntarried\\ntarrier\\ntarriers\\ntarries\\ntarriest\\ntarring\\ntarry\\ntarrying\\ntars\\ntarsal\\ntarsals\\ntarsi\\ntarsia\\ntarsias\\ntarsier\\ntarsiers\\ntarsus\\ntart\\ntartan\\ntartana\\ntartanas\\ntartans\\ntartar\\ntartaric\\ntartars\\ntarted\\ntarter\\ntartest\\ntarting\\ntartish\\ntartlet\\ntartlets\\ntartly\\ntartness\\ntartnesses\\ntartrate\\ntartrates\\ntarts\\ntartufe\\ntartufes\\ntartuffe\\ntartuffes\\ntarweed\\ntarweeds\\ntarzan\\ntarzans\\ntas\\ntask\\ntasked\\ntasking\\ntaskmaster\\ntaskmasters\\ntasks\\ntaskwork\\ntaskworks\\ntass\\ntasse\\ntassel\\ntasseled\\ntasseling\\ntasselled\\ntasselling\\ntassels\\ntasses\\ntasset\\ntassets\\ntassie\\ntassies\\ntastable\\ntaste\\ntasted\\ntasteful\\ntastefully\\ntasteless\\ntastelessly\\ntaster\\ntasters\\ntastes\\ntastier\\ntastiest\\ntastily\\ntasting\\ntasty\\ntat\\ntatami\\ntatamis\\ntate\\ntater\\ntaters\\ntates\\ntatouay\\ntatouays\\ntats\\ntatted\\ntatter\\ntattered\\ntattering\\ntatters\\ntattier\\ntattiest\\ntatting\\ntattings\\ntattle\\ntattled\\ntattler\\ntattlers\\ntattles\\ntattletale\\ntattletales\\ntattling\\ntattoo\\ntattooed\\ntattooer\\ntattooers\\ntattooing\\ntattoos\\ntatty\\ntau\\ntaught\\ntaunt\\ntaunted\\ntaunter\\ntaunters\\ntaunting\\ntaunts\\ntaupe\\ntaupes\\ntaurine\\ntaurines\\ntaus\\ntaut\\ntautaug\\ntautaugs\\ntauted\\ntauten\\ntautened\\ntautening\\ntautens\\ntauter\\ntautest\\ntauting\\ntautly\\ntautness\\ntautnesses\\ntautog\\ntautogs\\ntautomer\\ntautomers\\ntautonym\\ntautonyms\\ntauts\\ntav\\ntavern\\ntaverner\\ntaverners\\ntaverns\\ntavs\\ntaw\\ntawdrier\\ntawdries\\ntawdriest\\ntawdry\\ntawed\\ntawer\\ntawers\\ntawie\\ntawing\\ntawney\\ntawneys\\ntawnier\\ntawnies\\ntawniest\\ntawnily\\ntawny\\ntawpie\\ntawpies\\ntaws\\ntawse\\ntawsed\\ntawses\\ntawsing\\ntawsy\\ntax\\ntaxa\\ntaxable\\ntaxables\\ntaxably\\ntaxation\\ntaxations\\ntaxed\\ntaxeme\\ntaxemes\\ntaxemic\\ntaxer\\ntaxers\\ntaxes\\ntaxi\\ntaxicab\\ntaxicabs\\ntaxidermies\\ntaxidermist\\ntaxidermists\\ntaxidermy\\ntaxied\\ntaxies\\ntaxiing\\ntaximan\\ntaximen\\ntaxing\\ntaxingly\\ntaxis\\ntaxite\\ntaxites\\ntaxitic\\ntaxiway\\ntaxiways\\ntaxless\\ntaxman\\ntaxmen\\ntaxon\\ntaxonomies\\ntaxonomy\\ntaxons\\ntaxpaid\\ntaxpayer\\ntaxpayers\\ntaxpaying\\ntaxus\\ntaxwise\\ntaxying\\ntazza\\ntazzas\\ntazze\\ntea\\nteaberries\\nteaberry\\nteaboard\\nteaboards\\nteabowl\\nteabowls\\nteabox\\nteaboxes\\nteacake\\nteacakes\\nteacart\\nteacarts\\nteach\\nteachable\\nteacher\\nteachers\\nteaches\\nteaching\\nteachings\\nteacup\\nteacups\\nteahouse\\nteahouses\\nteak\\nteakettle\\nteakettles\\nteaks\\nteakwood\\nteakwoods\\nteal\\nteals\\nteam\\nteamaker\\nteamakers\\nteamed\\nteaming\\nteammate\\nteammates\\nteams\\nteamster\\nteamsters\\nteamwork\\nteamworks\\nteapot\\nteapots\\nteapoy\\nteapoys\\ntear\\ntearable\\nteardown\\nteardowns\\nteardrop\\nteardrops\\nteared\\ntearer\\ntearers\\ntearful\\nteargas\\nteargases\\nteargassed\\nteargasses\\nteargassing\\ntearier\\nteariest\\ntearily\\ntearing\\ntearless\\ntearoom\\ntearooms\\ntears\\nteary\\nteas\\ntease\\nteased\\nteasel\\nteaseled\\nteaseler\\nteaselers\\nteaseling\\nteaselled\\nteaselling\\nteasels\\nteaser\\nteasers\\nteases\\nteashop\\nteashops\\nteasing\\nteaspoon\\nteaspoonful\\nteaspoonfuls\\nteaspoons\\nteat\\nteated\\nteatime\\nteatimes\\nteats\\nteaware\\nteawares\\nteazel\\nteazeled\\nteazeling\\nteazelled\\nteazelling\\nteazels\\nteazle\\nteazled\\nteazles\\nteazling\\nteched\\ntechier\\ntechiest\\ntechily\\ntechnic\\ntechnical\\ntechnicalities\\ntechnicality\\ntechnically\\ntechnician\\ntechnicians\\ntechnics\\ntechnique\\ntechniques\\ntechnological\\ntechnologies\\ntechnology\\ntechy\\ntecta\\ntectal\\ntectonic\\ntectrices\\ntectrix\\ntectum\\nted\\ntedded\\ntedder\\ntedders\\nteddies\\ntedding\\nteddy\\ntedious\\ntediously\\ntediousness\\ntediousnesses\\ntedium\\ntediums\\nteds\\ntee\\nteed\\nteeing\\nteem\\nteemed\\nteemer\\nteemers\\nteeming\\nteems\\nteen\\nteenage\\nteenaged\\nteenager\\nteenagers\\nteener\\nteeners\\nteenful\\nteenier\\nteeniest\\nteens\\nteensier\\nteensiest\\nteensy\\nteentsier\\nteentsiest\\nteentsy\\nteeny\\nteepee\\nteepees\\ntees\\nteeter\\nteetered\\nteetering\\nteeters\\nteeth\\nteethe\\nteethed\\nteether\\nteethers\\nteethes\\nteething\\nteethings\\nteetotal\\nteetotaled\\nteetotaling\\nteetotalled\\nteetotalling\\nteetotals\\nteetotum\\nteetotums\\nteff\\nteffs\\nteg\\ntegmen\\ntegmenta\\ntegmina\\ntegminal\\ntegs\\ntegua\\nteguas\\ntegular\\ntegumen\\ntegument\\nteguments\\ntegumina\\nteiglach\\nteiid\\nteiids\\nteind\\nteinds\\ntektite\\ntektites\\ntektitic\\ntektronix\\ntela\\ntelae\\ntelamon\\ntelamones\\ntele\\ntelecast\\ntelecasted\\ntelecasting\\ntelecasts\\nteledu\\nteledus\\ntelefilm\\ntelefilms\\ntelega\\ntelegas\\ntelegonies\\ntelegony\\ntelegram\\ntelegrammed\\ntelegramming\\ntelegrams\\ntelegraph\\ntelegraphed\\ntelegrapher\\ntelegraphers\\ntelegraphing\\ntelegraphist\\ntelegraphists\\ntelegraphs\\nteleman\\ntelemark\\ntelemarks\\ntelemen\\nteleost\\nteleosts\\ntelepathic\\ntelepathically\\ntelepathies\\ntelepathy\\ntelephone\\ntelephoned\\ntelephoner\\ntelephoners\\ntelephones\\ntelephoning\\ntelephoto\\nteleplay\\nteleplays\\nteleport\\nteleported\\nteleporting\\nteleports\\nteleran\\ntelerans\\nteles\\ntelescope\\ntelescoped\\ntelescopes\\ntelescopic\\ntelescoping\\nteleses\\ntelesis\\ntelethon\\ntelethons\\nteleview\\nteleviewed\\nteleviewing\\nteleviews\\ntelevise\\ntelevised\\ntelevises\\ntelevising\\ntelevision\\ntelevisions\\ntelex\\ntelexed\\ntelexes\\ntelexing\\ntelfer\\ntelfered\\ntelfering\\ntelfers\\ntelford\\ntelfords\\ntelia\\ntelial\\ntelic\\ntelium\\ntell\\ntellable\\nteller\\ntellers\\ntellies\\ntelling\\ntells\\ntelltale\\ntelltales\\ntelluric\\ntelly\\nteloi\\ntelome\\ntelomes\\ntelomic\\ntelos\\ntelpher\\ntelphered\\ntelphering\\ntelphers\\ntelson\\ntelsonic\\ntelsons\\ntemblor\\ntemblores\\ntemblors\\ntemerities\\ntemerity\\ntempeh\\ntempehs\\ntemper\\ntempera\\ntemperament\\ntemperamental\\ntemperaments\\ntemperance\\ntemperances\\ntemperas\\ntemperate\\ntemperature\\ntemperatures\\ntempered\\ntemperer\\ntemperers\\ntempering\\ntempers\\ntempest\\ntempested\\ntempesting\\ntempests\\ntempestuous\\ntempi\\ntemplar\\ntemplars\\ntemplate\\ntemplates\\ntemple\\ntempled\\ntemples\\ntemplet\\ntemplets\\ntempo\\ntemporal\\ntemporals\\ntemporaries\\ntemporarily\\ntemporary\\ntempos\\ntempt\\ntemptation\\ntemptations\\ntempted\\ntempter\\ntempters\\ntempting\\ntemptingly\\ntemptress\\ntempts\\ntempura\\ntempuras\\nten\\ntenabilities\\ntenability\\ntenable\\ntenably\\ntenace\\ntenaces\\ntenacious\\ntenaciously\\ntenacities\\ntenacity\\ntenacula\\ntenail\\ntenaille\\ntenailles\\ntenails\\ntenancies\\ntenancy\\ntenant\\ntenanted\\ntenanting\\ntenantries\\ntenantry\\ntenants\\ntench\\ntenches\\ntend\\ntendance\\ntendances\\ntended\\ntendence\\ntendences\\ntendencies\\ntendency\\ntender\\ntendered\\ntenderer\\ntenderers\\ntenderest\\ntendering\\ntenderize\\ntenderized\\ntenderizer\\ntenderizers\\ntenderizes\\ntenderizing\\ntenderloin\\ntenderloins\\ntenderly\\ntenderness\\ntendernesses\\ntenders\\ntending\\ntendon\\ntendons\\ntendril\\ntendrils\\ntends\\ntenebrae\\ntenement\\ntenements\\ntenesmus\\ntenesmuses\\ntenet\\ntenets\\ntenfold\\ntenfolds\\ntenia\\nteniae\\ntenias\\nteniasis\\nteniasises\\ntenner\\ntenners\\ntennis\\ntennises\\ntennist\\ntennists\\ntenon\\ntenoned\\ntenoner\\ntenoners\\ntenoning\\ntenons\\ntenor\\ntenorite\\ntenorites\\ntenors\\ntenotomies\\ntenotomy\\ntenour\\ntenours\\ntenpence\\ntenpences\\ntenpenny\\ntenpin\\ntenpins\\ntenrec\\ntenrecs\\ntens\\ntense\\ntensed\\ntensely\\ntenser\\ntenses\\ntensest\\ntensible\\ntensibly\\ntensile\\ntensing\\ntension\\ntensioned\\ntensioning\\ntensions\\ntensities\\ntensity\\ntensive\\ntensor\\ntensors\\ntent\\ntentacle\\ntentacles\\ntentacular\\ntentage\\ntentages\\ntentative\\ntentatively\\ntented\\ntenter\\ntentered\\ntenterhooks\\ntentering\\ntenters\\ntenth\\ntenthly\\ntenths\\ntentie\\ntentier\\ntentiest\\ntenting\\ntentless\\ntentlike\\ntents\\ntenty\\ntenues\\ntenuis\\ntenuities\\ntenuity\\ntenuous\\ntenuously\\ntenuousness\\ntenuousnesses\\ntenure\\ntenured\\ntenures\\ntenurial\\ntenuti\\ntenuto\\ntenutos\\nteocalli\\nteocallis\\nteopan\\nteopans\\nteosinte\\nteosintes\\ntepa\\ntepas\\ntepee\\ntepees\\ntepefied\\ntepefies\\ntepefy\\ntepefying\\ntephra\\ntephras\\ntephrite\\ntephrites\\ntepid\\ntepidities\\ntepidity\\ntepidly\\ntequila\\ntequilas\\nterai\\nterais\\nteraohm\\nteraohms\\nteraph\\nteraphim\\nteratism\\nteratisms\\nteratoid\\nteratoma\\nteratomas\\nteratomata\\nterbia\\nterbias\\nterbic\\nterbium\\nterbiums\\nterce\\ntercel\\ntercelet\\ntercelets\\ntercels\\nterces\\ntercet\\ntercets\\nterebene\\nterebenes\\nterebic\\nteredines\\nteredo\\nteredos\\nterefah\\nterete\\nterga\\ntergal\\ntergite\\ntergites\\ntergum\\nteriyaki\\nteriyakis\\nterm\\ntermed\\ntermer\\ntermers\\nterminable\\nterminal\\nterminals\\nterminate\\nterminated\\nterminates\\nterminating\\ntermination\\nterming\\ntermini\\nterminologies\\nterminology\\nterminus\\nterminuses\\ntermite\\ntermites\\ntermitic\\ntermless\\ntermly\\ntermor\\ntermors\\nterms\\ntermtime\\ntermtimes\\ntern\\nternaries\\nternary\\nternate\\nterne\\nternes\\nternion\\nternions\\nterns\\nterpene\\nterpenes\\nterpenic\\nterpinol\\nterpinols\\nterra\\nterrace\\nterraced\\nterraces\\nterracing\\nterrae\\nterrain\\nterrains\\nterrane\\nterranes\\nterrapin\\nterrapins\\nterraria\\nterrarium\\nterras\\nterrases\\nterrazzo\\nterrazzos\\nterreen\\nterreens\\nterrella\\nterrellas\\nterrene\\nterrenes\\nterrestrial\\nterret\\nterrets\\nterrible\\nterribly\\nterrier\\nterriers\\nterries\\nterrific\\nterrified\\nterrifies\\nterrify\\nterrifying\\nterrifyingly\\nterrine\\nterrines\\nterrit\\nterritorial\\nterritories\\nterritory\\nterrits\\nterror\\nterrorism\\nterrorisms\\nterrorize\\nterrorized\\nterrorizes\\nterrorizing\\nterrors\\nterry\\nterse\\ntersely\\nterseness\\ntersenesses\\nterser\\ntersest\\ntertial\\ntertials\\ntertian\\ntertians\\ntertiaries\\ntertiary\\ntesla\\nteslas\\ntessera\\ntesserae\\ntest\\ntesta\\ntestable\\ntestacies\\ntestacy\\ntestae\\ntestament\\ntestamentary\\ntestaments\\ntestate\\ntestator\\ntestators\\ntested\\ntestee\\ntestees\\ntester\\ntesters\\ntestes\\ntesticle\\ntesticles\\ntesticular\\ntestier\\ntestiest\\ntestified\\ntestifies\\ntestify\\ntestifying\\ntestily\\ntestimonial\\ntestimonials\\ntestimonies\\ntestimony\\ntesting\\ntestis\\nteston\\ntestons\\ntestoon\\ntestoons\\ntestosterone\\ntestpatient\\ntests\\ntestudines\\ntestudo\\ntestudos\\ntesty\\ntetanal\\ntetanic\\ntetanics\\ntetanies\\ntetanise\\ntetanised\\ntetanises\\ntetanising\\ntetanize\\ntetanized\\ntetanizes\\ntetanizing\\ntetanoid\\ntetanus\\ntetanuses\\ntetany\\ntetched\\ntetchier\\ntetchiest\\ntetchily\\ntetchy\\nteth\\ntether\\ntethered\\ntethering\\ntethers\\nteths\\ntetotum\\ntetotums\\ntetra\\ntetracid\\ntetracids\\ntetrad\\ntetradic\\ntetrads\\ntetragon\\ntetragons\\ntetramer\\ntetramers\\ntetrapod\\ntetrapods\\ntetrarch\\ntetrarchs\\ntetras\\ntetrode\\ntetrodes\\ntetroxid\\ntetroxids\\ntetryl\\ntetryls\\ntetter\\ntetters\\nteuch\\nteugh\\nteughly\\ntew\\ntewed\\ntewing\\ntews\\ntexas\\ntexases\\ntext\\ntextbook\\ntextbooks\\ntextile\\ntextiles\\ntextless\\ntexts\\ntextual\\ntextuaries\\ntextuary\\ntextural\\ntexture\\ntextured\\ntextures\\ntexturing\\nthack\\nthacked\\nthacking\\nthacks\\nthae\\nthairm\\nthairms\\nthalami\\nthalamic\\nthalamus\\nthaler\\nthalers\\nthalli\\nthallic\\nthallium\\nthalliums\\nthalloid\\nthallous\\nthallus\\nthalluses\\nthan\\nthanage\\nthanages\\nthanatos\\nthanatoses\\nthane\\nthanes\\nthank\\nthanked\\nthanker\\nthankful\\nthankfuller\\nthankfullest\\nthankfully\\nthankfulness\\nthankfulnesses\\nthanking\\nthanks\\nthanksgiving\\ntharm\\ntharms\\nthat\\nthataway\\nthatch\\nthatched\\nthatcher\\nthatchers\\nthatches\\nthatching\\nthatchy\\nthaw\\nthawed\\nthawer\\nthawers\\nthawing\\nthawless\\nthaws\\nthe\\nthearchies\\nthearchy\\ntheater\\ntheaters\\ntheatre\\ntheatres\\ntheatric\\ntheatrical\\nthebaine\\nthebaines\\ntheca\\nthecae\\nthecal\\nthecate\\nthee\\ntheelin\\ntheelins\\ntheelol\\ntheelols\\ntheft\\nthefts\\nthegn\\nthegnly\\nthegns\\nthein\\ntheine\\ntheines\\ntheins\\ntheir\\ntheirs\\ntheism\\ntheisms\\ntheist\\ntheistic\\ntheists\\nthelitis\\nthelitises\\nthem\\nthematic\\ntheme\\nthemes\\nthemselves\\nthen\\nthenage\\nthenages\\nthenal\\nthenar\\nthenars\\nthence\\nthens\\ntheocracy\\ntheocrat\\ntheocratic\\ntheocrats\\ntheodicies\\ntheodicy\\ntheogonies\\ntheogony\\ntheolog\\ntheologian\\ntheologians\\ntheological\\ntheologies\\ntheologs\\ntheology\\ntheonomies\\ntheonomy\\ntheorbo\\ntheorbos\\ntheorem\\ntheorems\\ntheoretical\\ntheoretically\\ntheories\\ntheorise\\ntheorised\\ntheorises\\ntheorising\\ntheorist\\ntheorists\\ntheorize\\ntheorized\\ntheorizes\\ntheorizing\\ntheory\\ntherapeutic\\ntherapeutically\\ntherapies\\ntherapist\\ntherapists\\ntherapy\\nthere\\nthereabout\\nthereabouts\\nthereafter\\nthereat\\nthereby\\ntherefor\\ntherefore\\ntherein\\ntheremin\\ntheremins\\nthereof\\nthereon\\ntheres\\nthereto\\nthereupon\\ntherewith\\ntheriac\\ntheriaca\\ntheriacas\\ntheriacs\\ntherm\\nthermae\\nthermal\\nthermals\\ntherme\\nthermel\\nthermels\\nthermes\\nthermic\\nthermion\\nthermions\\nthermit\\nthermite\\nthermites\\nthermits\\nthermodynamics\\nthermometer\\nthermometers\\nthermometric\\nthermometrically\\nthermos\\nthermoses\\nthermostat\\nthermostatic\\nthermostatically\\nthermostats\\ntherms\\ntheroid\\ntheropod\\ntheropods\\nthesauri\\nthesaurus\\nthese\\ntheses\\nthesis\\nthespian\\nthespians\\ntheta\\nthetas\\nthetic\\nthetical\\ntheurgic\\ntheurgies\\ntheurgy\\nthew\\nthewless\\nthews\\nthewy\\nthey\\nthiamin\\nthiamine\\nthiamines\\nthiamins\\nthiazide\\nthiazides\\nthiazin\\nthiazine\\nthiazines\\nthiazins\\nthiazol\\nthiazole\\nthiazoles\\nthiazols\\nthick\\nthicken\\nthickened\\nthickener\\nthickeners\\nthickening\\nthickens\\nthicker\\nthickest\\nthicket\\nthickets\\nthickety\\nthickish\\nthickly\\nthickness\\nthicknesses\\nthicks\\nthickset\\nthicksets\\nthief\\nthieve\\nthieved\\nthieveries\\nthievery\\nthieves\\nthieving\\nthievish\\nthigh\\nthighbone\\nthighbones\\nthighed\\nthighs\\nthill\\nthills\\nthimble\\nthimbleful\\nthimblefuls\\nthimbles\\nthin\\nthinclad\\nthinclads\\nthindown\\nthindowns\\nthine\\nthing\\nthings\\nthink\\nthinker\\nthinkers\\nthinking\\nthinkings\\nthinks\\nthinly\\nthinned\\nthinner\\nthinness\\nthinnesses\\nthinnest\\nthinning\\nthinnish\\nthins\\nthio\\nthiol\\nthiolic\\nthiols\\nthionate\\nthionates\\nthionic\\nthionin\\nthionine\\nthionines\\nthionins\\nthionyl\\nthionyls\\nthiophen\\nthiophens\\nthiotepa\\nthiotepas\\nthiourea\\nthioureas\\nthir\\nthiram\\nthirams\\nthird\\nthirdly\\nthirds\\nthirl\\nthirlage\\nthirlages\\nthirled\\nthirling\\nthirls\\nthirst\\nthirsted\\nthirster\\nthirsters\\nthirstier\\nthirstiest\\nthirsting\\nthirsts\\nthirsty\\nthirteen\\nthirteens\\nthirteenth\\nthirteenths\\nthirties\\nthirtieth\\nthirtieths\\nthirty\\nthis\\nthistle\\nthistles\\nthistly\\nthither\\ntho\\nthole\\ntholed\\ntholepin\\ntholepins\\ntholes\\ntholing\\ntholoi\\ntholos\\nthong\\nthonged\\nthongs\\nthoracal\\nthoraces\\nthoracic\\nthorax\\nthoraxes\\nthoria\\nthorias\\nthoric\\nthorite\\nthorites\\nthorium\\nthoriums\\nthorn\\nthorned\\nthornier\\nthorniest\\nthornily\\nthorning\\nthorns\\nthorny\\nthoro\\nthoron\\nthorons\\nthorough\\nthoroughbred\\nthoroughbreds\\nthorougher\\nthoroughest\\nthoroughfare\\nthoroughfares\\nthoroughly\\nthoroughness\\nthoroughnesses\\nthorp\\nthorpe\\nthorpes\\nthorps\\nthose\\nthou\\nthoued\\nthough\\nthought\\nthoughtful\\nthoughtfully\\nthoughtfulness\\nthoughtfulnesses\\nthoughtless\\nthoughtlessly\\nthoughtlessness\\nthoughtlessnesses\\nthoughts\\nthouing\\nthous\\nthousand\\nthousands\\nthousandth\\nthousandths\\nthowless\\nthraldom\\nthraldoms\\nthrall\\nthralled\\nthralling\\nthralls\\nthrash\\nthrashed\\nthrasher\\nthrashers\\nthrashes\\nthrashing\\nthrave\\nthraves\\nthraw\\nthrawart\\nthrawed\\nthrawing\\nthrawn\\nthrawnly\\nthraws\\nthread\\nthreadbare\\nthreaded\\nthreader\\nthreaders\\nthreadier\\nthreadiest\\nthreading\\nthreads\\nthready\\nthreap\\nthreaped\\nthreaper\\nthreapers\\nthreaping\\nthreaps\\nthreat\\nthreated\\nthreaten\\nthreatened\\nthreatening\\nthreateningly\\nthreatens\\nthreating\\nthreats\\nthree\\nthreefold\\nthreep\\nthreeped\\nthreeping\\nthreeps\\nthrees\\nthreescore\\nthrenode\\nthrenodes\\nthrenodies\\nthrenody\\nthresh\\nthreshed\\nthresher\\nthreshers\\nthreshes\\nthreshing\\nthreshold\\nthresholds\\nthrew\\nthrice\\nthrift\\nthriftier\\nthriftiest\\nthriftily\\nthriftless\\nthrifts\\nthrifty\\nthrill\\nthrilled\\nthriller\\nthrillers\\nthrilling\\nthrillingly\\nthrills\\nthrip\\nthrips\\nthrive\\nthrived\\nthriven\\nthriver\\nthrivers\\nthrives\\nthriving\\nthro\\nthroat\\nthroated\\nthroatier\\nthroatiest\\nthroating\\nthroats\\nthroaty\\nthrob\\nthrobbed\\nthrobber\\nthrobbers\\nthrobbing\\nthrobs\\nthroe\\nthroes\\nthrombi\\nthrombin\\nthrombins\\nthrombocyte\\nthrombocytes\\nthrombocytopenia\\nthrombocytosis\\nthrombophlebitis\\nthromboplastin\\nthrombus\\nthrone\\nthroned\\nthrones\\nthrong\\nthronged\\nthronging\\nthrongs\\nthroning\\nthrostle\\nthrostles\\nthrottle\\nthrottled\\nthrottles\\nthrottling\\nthrough\\nthroughout\\nthrove\\nthrow\\nthrower\\nthrowers\\nthrowing\\nthrown\\nthrows\\nthru\\nthrum\\nthrummed\\nthrummer\\nthrummers\\nthrummier\\nthrummiest\\nthrumming\\nthrummy\\nthrums\\nthruput\\nthruputs\\nthrush\\nthrushes\\nthrust\\nthrusted\\nthruster\\nthrusters\\nthrusting\\nthrustor\\nthrustors\\nthrusts\\nthruway\\nthruways\\nthud\\nthudded\\nthudding\\nthuds\\nthug\\nthuggee\\nthuggees\\nthuggeries\\nthuggery\\nthuggish\\nthugs\\nthuja\\nthujas\\nthulia\\nthulias\\nthulium\\nthuliums\\nthumb\\nthumbed\\nthumbing\\nthumbkin\\nthumbkins\\nthumbnail\\nthumbnails\\nthumbnut\\nthumbnuts\\nthumbs\\nthumbtack\\nthumbtacks\\nthump\\nthumped\\nthumper\\nthumpers\\nthumping\\nthumps\\nthunder\\nthunderbolt\\nthunderbolts\\nthunderclap\\nthunderclaps\\nthundered\\nthundering\\nthunderous\\nthunderously\\nthunders\\nthundershower\\nthundershowers\\nthunderstorm\\nthunderstorms\\nthundery\\nthurible\\nthuribles\\nthurifer\\nthurifers\\nthurl\\nthurls\\nthus\\nthusly\\nthuya\\nthuyas\\nthwack\\nthwacked\\nthwacker\\nthwackers\\nthwacking\\nthwacks\\nthwart\\nthwarted\\nthwarter\\nthwarters\\nthwarting\\nthwartly\\nthwarts\\nthy\\nthyme\\nthymes\\nthymey\\nthymi\\nthymic\\nthymier\\nthymiest\\nthymine\\nthymines\\nthymol\\nthymols\\nthymus\\nthymuses\\nthymy\\nthyreoid\\nthyroid\\nthyroidal\\nthyroids\\nthyroxin\\nthyroxins\\nthyrse\\nthyrses\\nthyrsi\\nthyrsoid\\nthyrsus\\nthyself\\nti\\ntiara\\ntiaraed\\ntiaras\\ntibia\\ntibiae\\ntibial\\ntibias\\ntic\\ntical\\nticals\\ntick\\nticked\\nticker\\ntickers\\nticket\\nticketed\\nticketing\\ntickets\\nticking\\ntickings\\ntickle\\ntickled\\ntickler\\nticklers\\ntickles\\ntickling\\nticklish\\nticklishly\\nticklishness\\nticklishnesses\\nticks\\ntickseed\\ntickseeds\\nticktack\\nticktacked\\nticktacking\\nticktacks\\nticktock\\nticktocked\\nticktocking\\nticktocks\\ntics\\ntictac\\ntictacked\\ntictacking\\ntictacs\\ntictoc\\ntictocked\\ntictocking\\ntictocs\\ntidal\\ntidally\\ntidbit\\ntidbits\\ntiddly\\ntide\\ntided\\ntideland\\ntidelands\\ntideless\\ntidelike\\ntidemark\\ntidemarks\\ntiderip\\ntiderips\\ntides\\ntidewater\\ntidewaters\\ntideway\\ntideways\\ntidied\\ntidier\\ntidies\\ntidiest\\ntidily\\ntidiness\\ntidinesses\\ntiding\\ntidings\\ntidy\\ntidying\\ntidytips\\ntie\\ntieback\\ntiebacks\\ntieclasp\\ntieclasps\\ntied\\ntieing\\ntiepin\\ntiepins\\ntier\\ntierce\\ntierced\\ntiercel\\ntiercels\\ntierces\\ntiered\\ntiering\\ntiers\\nties\\ntiff\\ntiffanies\\ntiffany\\ntiffed\\ntiffin\\ntiffined\\ntiffing\\ntiffining\\ntiffins\\ntiffs\\ntiger\\ntigereye\\ntigereyes\\ntigerish\\ntigers\\ntight\\ntighten\\ntightened\\ntightening\\ntightens\\ntighter\\ntightest\\ntightly\\ntightness\\ntightnesses\\ntights\\ntightwad\\ntightwads\\ntiglon\\ntiglons\\ntigon\\ntigons\\ntigress\\ntigresses\\ntigrish\\ntike\\ntikes\\ntiki\\ntikis\\ntil\\ntilapia\\ntilapias\\ntilburies\\ntilbury\\ntilde\\ntildes\\ntile\\ntiled\\ntilefish\\ntilefishes\\ntilelike\\ntiler\\ntilers\\ntiles\\ntiling\\ntill\\ntillable\\ntillage\\ntillages\\ntilled\\ntiller\\ntillered\\ntillering\\ntillers\\ntilling\\ntills\\ntils\\ntilt\\ntiltable\\ntilted\\ntilter\\ntilters\\ntilth\\ntilths\\ntilting\\ntilts\\ntiltyard\\ntiltyards\\ntimarau\\ntimaraus\\ntimbal\\ntimbale\\ntimbales\\ntimbals\\ntimber\\ntimbered\\ntimbering\\ntimberland\\ntimberlands\\ntimbers\\ntimbre\\ntimbrel\\ntimbrels\\ntimbres\\ntime\\ntimecard\\ntimecards\\ntimed\\ntimekeeper\\ntimekeepers\\ntimeless\\ntimelessness\\ntimelessnesses\\ntimelier\\ntimeliest\\ntimeliness\\ntimelinesses\\ntimely\\ntimeous\\ntimeout\\ntimeouts\\ntimepiece\\ntimepieces\\ntimer\\ntimers\\ntimes\\ntimetable\\ntimetables\\ntimework\\ntimeworks\\ntimeworn\\ntimid\\ntimider\\ntimidest\\ntimidities\\ntimidity\\ntimidly\\ntiming\\ntimings\\ntimorous\\ntimorously\\ntimorousness\\ntimorousnesses\\ntimothies\\ntimothy\\ntimpana\\ntimpani\\ntimpanist\\ntimpanists\\ntimpano\\ntimpanum\\ntimpanums\\ntin\\ntinamou\\ntinamous\\ntincal\\ntincals\\ntinct\\ntincted\\ntincting\\ntincts\\ntincture\\ntinctured\\ntinctures\\ntincturing\\ntinder\\ntinders\\ntindery\\ntine\\ntinea\\ntineal\\ntineas\\ntined\\ntineid\\ntineids\\ntines\\ntinfoil\\ntinfoils\\ntinful\\ntinfuls\\nting\\ntinge\\ntinged\\ntingeing\\ntinges\\ntinging\\ntingle\\ntingled\\ntingler\\ntinglers\\ntingles\\ntinglier\\ntingliest\\ntingling\\ntingly\\ntings\\ntinhorn\\ntinhorns\\ntinier\\ntiniest\\ntinily\\ntininess\\ntininesses\\ntining\\ntinker\\ntinkered\\ntinkerer\\ntinkerers\\ntinkering\\ntinkers\\ntinkle\\ntinkled\\ntinkles\\ntinklier\\ntinkliest\\ntinkling\\ntinklings\\ntinkly\\ntinlike\\ntinman\\ntinmen\\ntinned\\ntinner\\ntinners\\ntinnier\\ntinniest\\ntinnily\\ntinning\\ntinnitus\\ntinnituses\\ntinny\\ntinplate\\ntinplates\\ntins\\ntinsel\\ntinseled\\ntinseling\\ntinselled\\ntinselling\\ntinselly\\ntinsels\\ntinsmith\\ntinsmiths\\ntinstone\\ntinstones\\ntint\\ntinted\\ntinter\\ntinters\\ntinting\\ntintings\\ntintless\\ntints\\ntintype\\ntintypes\\ntinware\\ntinwares\\ntinwork\\ntinworks\\ntiny\\ntip\\ntipcart\\ntipcarts\\ntipcat\\ntipcats\\ntipi\\ntipis\\ntipless\\ntipoff\\ntipoffs\\ntippable\\ntipped\\ntipper\\ntippers\\ntippet\\ntippets\\ntippier\\ntippiest\\ntipping\\ntipple\\ntippled\\ntippler\\ntipplers\\ntipples\\ntippling\\ntippy\\ntips\\ntipsier\\ntipsiest\\ntipsily\\ntipstaff\\ntipstaffs\\ntipstaves\\ntipster\\ntipsters\\ntipstock\\ntipstocks\\ntipsy\\ntiptoe\\ntiptoed\\ntiptoes\\ntiptoing\\ntiptop\\ntiptops\\ntirade\\ntirades\\ntire\\ntired\\ntireder\\ntiredest\\ntiredly\\ntireless\\ntirelessly\\ntirelessness\\ntires\\ntiresome\\ntiresomely\\ntiresomeness\\ntiresomenesses\\ntiring\\ntirl\\ntirled\\ntirling\\ntirls\\ntiro\\ntiros\\ntirrivee\\ntirrivees\\ntis\\ntisane\\ntisanes\\ntissual\\ntissue\\ntissued\\ntissues\\ntissuey\\ntissuing\\ntit\\ntitan\\ntitanate\\ntitanates\\ntitaness\\ntitanesses\\ntitania\\ntitanias\\ntitanic\\ntitanism\\ntitanisms\\ntitanite\\ntitanites\\ntitanium\\ntitaniums\\ntitanous\\ntitans\\ntitbit\\ntitbits\\ntiter\\ntiters\\ntithable\\ntithe\\ntithed\\ntither\\ntithers\\ntithes\\ntithing\\ntithings\\ntithonia\\ntithonias\\ntiti\\ntitian\\ntitians\\ntitillate\\ntitillated\\ntitillates\\ntitillating\\ntitillation\\ntitillations\\ntitis\\ntitivate\\ntitivated\\ntitivates\\ntitivating\\ntitlark\\ntitlarks\\ntitle\\ntitled\\ntitles\\ntitling\\ntitlist\\ntitlists\\ntitman\\ntitmen\\ntitmice\\ntitmouse\\ntitrable\\ntitrant\\ntitrants\\ntitrate\\ntitrated\\ntitrates\\ntitrating\\ntitrator\\ntitrators\\ntitre\\ntitres\\ntits\\ntitter\\ntittered\\ntitterer\\ntitterers\\ntittering\\ntitters\\ntittie\\ntitties\\ntittle\\ntittles\\ntittup\\ntittuped\\ntittuping\\ntittupped\\ntittupping\\ntittuppy\\ntittups\\ntitty\\ntitular\\ntitularies\\ntitulars\\ntitulary\\ntivy\\ntizzies\\ntizzy\\ntmeses\\ntmesis\\nto\\ntoad\\ntoadfish\\ntoadfishes\\ntoadflax\\ntoadflaxes\\ntoadied\\ntoadies\\ntoadish\\ntoadless\\ntoadlike\\ntoads\\ntoadstool\\ntoadstools\\ntoady\\ntoadying\\ntoadyish\\ntoadyism\\ntoadyisms\\ntoast\\ntoasted\\ntoaster\\ntoasters\\ntoastier\\ntoastiest\\ntoasting\\ntoasts\\ntoasty\\ntobacco\\ntobaccoes\\ntobaccos\\ntobies\\ntoboggan\\ntobogganed\\ntobogganing\\ntoboggans\\ntoby\\ntobys\\ntoccata\\ntoccatas\\ntoccate\\ntocher\\ntochered\\ntochering\\ntochers\\ntocologies\\ntocology\\ntocsin\\ntocsins\\ntod\\ntoday\\ntodays\\ntoddies\\ntoddle\\ntoddled\\ntoddler\\ntoddlers\\ntoddles\\ntoddling\\ntoddy\\ntodies\\ntods\\ntody\\ntoe\\ntoecap\\ntoecaps\\ntoed\\ntoehold\\ntoeholds\\ntoeing\\ntoeless\\ntoelike\\ntoenail\\ntoenailed\\ntoenailing\\ntoenails\\ntoepiece\\ntoepieces\\ntoeplate\\ntoeplates\\ntoes\\ntoeshoe\\ntoeshoes\\ntoff\\ntoffee\\ntoffees\\ntoffies\\ntoffs\\ntoffy\\ntoft\\ntofts\\ntofu\\ntofus\\ntog\\ntoga\\ntogae\\ntogaed\\ntogas\\ntogate\\ntogated\\ntogether\\ntogetherness\\ntogethernesses\\ntogged\\ntoggeries\\ntoggery\\ntogging\\ntoggle\\ntoggled\\ntoggler\\ntogglers\\ntoggles\\ntoggling\\ntogs\\ntogue\\ntogues\\ntoil\\ntoile\\ntoiled\\ntoiler\\ntoilers\\ntoiles\\ntoilet\\ntoileted\\ntoileting\\ntoiletries\\ntoiletry\\ntoilets\\ntoilette\\ntoilettes\\ntoilful\\ntoiling\\ntoils\\ntoilsome\\ntoilworn\\ntoit\\ntoited\\ntoiting\\ntoits\\ntokay\\ntokays\\ntoke\\ntoken\\ntokened\\ntokening\\ntokenism\\ntokenisms\\ntokens\\ntokes\\ntokologies\\ntokology\\ntokonoma\\ntokonomas\\ntola\\ntolan\\ntolane\\ntolanes\\ntolans\\ntolas\\ntolbooth\\ntolbooths\\ntold\\ntole\\ntoled\\ntoledo\\ntoledos\\ntolerable\\ntolerably\\ntolerance\\ntolerances\\ntolerant\\ntolerate\\ntolerated\\ntolerates\\ntolerating\\ntoleration\\ntolerations\\ntoles\\ntolidin\\ntolidine\\ntolidines\\ntolidins\\ntoling\\ntoll\\ntollage\\ntollages\\ntollbar\\ntollbars\\ntollbooth\\ntollbooths\\ntolled\\ntoller\\ntollers\\ntollgate\\ntollgates\\ntolling\\ntollman\\ntollmen\\ntolls\\ntollway\\ntollways\\ntolu\\ntoluate\\ntoluates\\ntoluene\\ntoluenes\\ntoluic\\ntoluid\\ntoluide\\ntoluides\\ntoluidin\\ntoluidins\\ntoluids\\ntoluol\\ntoluole\\ntoluoles\\ntoluols\\ntolus\\ntoluyl\\ntoluyls\\ntolyl\\ntolyls\\ntom\\ntomahawk\\ntomahawked\\ntomahawking\\ntomahawks\\ntomalley\\ntomalleys\\ntoman\\ntomans\\ntomato\\ntomatoes\\ntomb\\ntombac\\ntomback\\ntombacks\\ntombacs\\ntombak\\ntombaks\\ntombal\\ntombed\\ntombing\\ntombless\\ntomblike\\ntombolo\\ntombolos\\ntomboy\\ntomboys\\ntombs\\ntombstone\\ntombstones\\ntomcat\\ntomcats\\ntomcod\\ntomcods\\ntome\\ntomenta\\ntomentum\\ntomes\\ntomfool\\ntomfools\\ntommies\\ntommy\\ntommyrot\\ntommyrots\\ntomogram\\ntomograms\\ntomorrow\\ntomorrows\\ntompion\\ntompions\\ntoms\\ntomtit\\ntomtits\\nton\\ntonal\\ntonalities\\ntonality\\ntonally\\ntondi\\ntondo\\ntone\\ntoned\\ntoneless\\ntoneme\\ntonemes\\ntonemic\\ntoner\\ntoners\\ntones\\ntonetic\\ntonetics\\ntonette\\ntonettes\\ntong\\ntonga\\ntongas\\ntonged\\ntonger\\ntongers\\ntonging\\ntongman\\ntongmen\\ntongs\\ntongue\\ntongued\\ntongueless\\ntongues\\ntonguing\\ntonguings\\ntonic\\ntonicities\\ntonicity\\ntonics\\ntonier\\ntoniest\\ntonight\\ntonights\\ntoning\\ntonish\\ntonishly\\ntonka\\ntonlet\\ntonlets\\ntonnage\\ntonnages\\ntonne\\ntonneau\\ntonneaus\\ntonneaux\\ntonner\\ntonners\\ntonnes\\ntonnish\\ntons\\ntonsil\\ntonsilar\\ntonsillectomies\\ntonsillectomy\\ntonsillitis\\ntonsillitises\\ntonsils\\ntonsure\\ntonsured\\ntonsures\\ntonsuring\\ntontine\\ntontines\\ntonus\\ntonuses\\ntony\\ntoo\\ntook\\ntool\\ntoolbox\\ntoolboxes\\ntooled\\ntooler\\ntoolers\\ntoolhead\\ntoolheads\\ntooling\\ntoolings\\ntoolless\\ntoolroom\\ntoolrooms\\ntools\\ntoolshed\\ntoolsheds\\ntoom\\ntoon\\ntoons\\ntoot\\ntooted\\ntooter\\ntooters\\ntooth\\ntoothache\\ntoothaches\\ntoothbrush\\ntoothbrushes\\ntoothed\\ntoothier\\ntoothiest\\ntoothily\\ntoothing\\ntoothless\\ntoothpaste\\ntoothpastes\\ntoothpick\\ntoothpicks\\ntooths\\ntoothsome\\ntoothy\\ntooting\\ntootle\\ntootled\\ntootler\\ntootlers\\ntootles\\ntootling\\ntoots\\ntootses\\ntootsie\\ntootsies\\ntootsy\\ntop\\ntopaz\\ntopazes\\ntopazine\\ntopcoat\\ntopcoats\\ntopcross\\ntopcrosses\\ntope\\ntoped\\ntopee\\ntopees\\ntoper\\ntopers\\ntopes\\ntopful\\ntopfull\\ntoph\\ntophe\\ntophes\\ntophi\\ntophs\\ntophus\\ntopi\\ntopiaries\\ntopiary\\ntopic\\ntopical\\ntopically\\ntopics\\ntoping\\ntopis\\ntopkick\\ntopkicks\\ntopknot\\ntopknots\\ntopless\\ntoploftier\\ntoploftiest\\ntoplofty\\ntopmast\\ntopmasts\\ntopmost\\ntopnotch\\ntopographer\\ntopographers\\ntopographic\\ntopographical\\ntopographies\\ntopography\\ntopoi\\ntopologic\\ntopologies\\ntopology\\ntoponym\\ntoponymies\\ntoponyms\\ntoponymy\\ntopos\\ntopotype\\ntopotypes\\ntopped\\ntopper\\ntoppers\\ntopping\\ntoppings\\ntopple\\ntoppled\\ntopples\\ntoppling\\ntops\\ntopsail\\ntopsails\\ntopside\\ntopsides\\ntopsoil\\ntopsoiled\\ntopsoiling\\ntopsoils\\ntopstone\\ntopstones\\ntopwork\\ntopworked\\ntopworking\\ntopworks\\ntoque\\ntoques\\ntoquet\\ntoquets\\ntor\\ntora\\ntorah\\ntorahs\\ntoras\\ntorc\\ntorch\\ntorchbearer\\ntorchbearers\\ntorched\\ntorchere\\ntorcheres\\ntorches\\ntorchier\\ntorchiers\\ntorching\\ntorchlight\\ntorchlights\\ntorchon\\ntorchons\\ntorcs\\ntore\\ntoreador\\ntoreadors\\ntorero\\ntoreros\\ntores\\ntoreutic\\ntori\\ntoric\\ntories\\ntorii\\ntorment\\ntormented\\ntormenting\\ntormentor\\ntormentors\\ntorments\\ntorn\\ntornadic\\ntornado\\ntornadoes\\ntornados\\ntornillo\\ntornillos\\ntoro\\ntoroid\\ntoroidal\\ntoroids\\ntoros\\ntorose\\ntorosities\\ntorosity\\ntorous\\ntorpedo\\ntorpedoed\\ntorpedoes\\ntorpedoing\\ntorpedos\\ntorpid\\ntorpidities\\ntorpidity\\ntorpidly\\ntorpids\\ntorpor\\ntorpors\\ntorquate\\ntorque\\ntorqued\\ntorquer\\ntorquers\\ntorques\\ntorqueses\\ntorquing\\ntorr\\ntorrefied\\ntorrefies\\ntorrefy\\ntorrefying\\ntorrent\\ntorrential\\ntorrents\\ntorrid\\ntorrider\\ntorridest\\ntorridly\\ntorrified\\ntorrifies\\ntorrify\\ntorrifying\\ntors\\ntorsade\\ntorsades\\ntorse\\ntorses\\ntorsi\\ntorsion\\ntorsional\\ntorsionally\\ntorsions\\ntorsk\\ntorsks\\ntorso\\ntorsos\\ntort\\ntorte\\ntorten\\ntortes\\ntortile\\ntortilla\\ntortillas\\ntortious\\ntortoise\\ntortoises\\ntortoni\\ntortonis\\ntortrix\\ntortrixes\\ntorts\\ntortuous\\ntorture\\ntortured\\ntorturer\\ntorturers\\ntortures\\ntorturing\\ntorula\\ntorulae\\ntorulas\\ntorus\\ntory\\ntosh\\ntoshes\\ntoss\\ntossed\\ntosser\\ntossers\\ntosses\\ntossing\\ntosspot\\ntosspots\\ntossup\\ntossups\\ntost\\ntot\\ntotable\\ntotal\\ntotaled\\ntotaling\\ntotalise\\ntotalised\\ntotalises\\ntotalising\\ntotalism\\ntotalisms\\ntotalitarian\\ntotalitarianism\\ntotalitarianisms\\ntotalitarians\\ntotalities\\ntotality\\ntotalize\\ntotalized\\ntotalizes\\ntotalizing\\ntotalled\\ntotalling\\ntotally\\ntotals\\ntote\\ntoted\\ntotem\\ntotemic\\ntotemism\\ntotemisms\\ntotemist\\ntotemists\\ntotemite\\ntotemites\\ntotems\\ntoter\\ntoters\\ntotes\\ntother\\ntoting\\ntots\\ntotted\\ntotter\\ntottered\\ntotterer\\ntotterers\\ntottering\\ntotters\\ntottery\\ntotting\\ntotty\\ntoucan\\ntoucans\\ntouch\\ntouchback\\ntouchbacks\\ntouchdown\\ntouchdowns\\ntouche\\ntouched\\ntoucher\\ntouchers\\ntouches\\ntouchier\\ntouchiest\\ntouchily\\ntouching\\ntouchstone\\ntouchstones\\ntouchup\\ntouchups\\ntouchy\\ntough\\ntoughen\\ntoughened\\ntoughening\\ntoughens\\ntougher\\ntoughest\\ntoughie\\ntoughies\\ntoughish\\ntoughly\\ntoughness\\ntoughnesses\\ntoughs\\ntoughy\\ntoupee\\ntoupees\\ntour\\ntouraco\\ntouracos\\ntoured\\ntourer\\ntourers\\ntouring\\ntourings\\ntourism\\ntourisms\\ntourist\\ntourists\\ntouristy\\ntournament\\ntournaments\\ntourney\\ntourneyed\\ntourneying\\ntourneys\\ntourniquet\\ntourniquets\\ntours\\ntouse\\ntoused\\ntouses\\ntousing\\ntousle\\ntousled\\ntousles\\ntousling\\ntout\\ntouted\\ntouter\\ntouters\\ntouting\\ntouts\\ntouzle\\ntouzled\\ntouzles\\ntouzling\\ntovarich\\ntovariches\\ntovarish\\ntovarishes\\ntow\\ntowage\\ntowages\\ntoward\\ntowardly\\ntowards\\ntowaway\\ntowaways\\ntowboat\\ntowboats\\ntowed\\ntowel\\ntoweled\\ntoweling\\ntowelings\\ntowelled\\ntowelling\\ntowels\\ntower\\ntowered\\ntowerier\\ntoweriest\\ntowering\\ntowers\\ntowery\\ntowhead\\ntowheaded\\ntowheads\\ntowhee\\ntowhees\\ntowie\\ntowies\\ntowing\\ntowline\\ntowlines\\ntowmond\\ntowmonds\\ntowmont\\ntowmonts\\ntown\\ntownee\\ntownees\\ntownfolk\\ntownie\\ntownies\\ntownish\\ntownless\\ntownlet\\ntownlets\\ntowns\\ntownship\\ntownships\\ntownsman\\ntownsmen\\ntownspeople\\ntownwear\\ntownwears\\ntowny\\ntowpath\\ntowpaths\\ntowrope\\ntowropes\\ntows\\ntowy\\ntoxaemia\\ntoxaemias\\ntoxaemic\\ntoxemia\\ntoxemias\\ntoxemic\\ntoxic\\ntoxical\\ntoxicant\\ntoxicants\\ntoxicities\\ntoxicity\\ntoxin\\ntoxine\\ntoxines\\ntoxins\\ntoxoid\\ntoxoids\\ntoy\\ntoyed\\ntoyer\\ntoyers\\ntoying\\ntoyish\\ntoyless\\ntoylike\\ntoyo\\ntoyon\\ntoyons\\ntoyos\\ntoys\\ntrabeate\\ntrace\\ntraceable\\ntraced\\ntracer\\ntraceries\\ntracers\\ntracery\\ntraces\\ntrachea\\ntracheae\\ntracheal\\ntracheas\\ntracheid\\ntracheids\\ntracherous\\ntracherously\\ntrachle\\ntrachled\\ntrachles\\ntrachling\\ntrachoma\\ntrachomas\\ntrachyte\\ntrachytes\\ntracing\\ntracings\\ntrack\\ntrackage\\ntrackages\\ntracked\\ntracker\\ntrackers\\ntracking\\ntrackings\\ntrackman\\ntrackmen\\ntracks\\ntract\\ntractable\\ntractate\\ntractates\\ntractile\\ntraction\\ntractional\\ntractions\\ntractive\\ntractor\\ntractors\\ntracts\\ntrad\\ntradable\\ntrade\\ntraded\\ntrademark\\ntrademarked\\ntrademarking\\ntrademarks\\ntrader\\ntraders\\ntrades\\ntradesman\\ntradesmen\\ntradespeople\\ntrading\\ntradition\\ntraditional\\ntraditionally\\ntraditions\\ntraditor\\ntraditores\\ntraduce\\ntraduced\\ntraducer\\ntraducers\\ntraduces\\ntraducing\\ntraffic\\ntrafficked\\ntrafficker\\ntraffickers\\ntrafficking\\ntraffics\\ntragedies\\ntragedy\\ntragi\\ntragic\\ntragical\\ntragically\\ntragopan\\ntragopans\\ntragus\\ntraik\\ntraiked\\ntraiking\\ntraiks\\ntrail\\ntrailed\\ntrailer\\ntrailered\\ntrailering\\ntrailers\\ntrailing\\ntrails\\ntrain\\ntrained\\ntrainee\\ntrainees\\ntrainer\\ntrainers\\ntrainful\\ntrainfuls\\ntraining\\ntrainings\\ntrainload\\ntrainloads\\ntrainman\\ntrainmen\\ntrains\\ntrainway\\ntrainways\\ntraipse\\ntraipsed\\ntraipses\\ntraipsing\\ntrait\\ntraitor\\ntraitors\\ntraits\\ntraject\\ntrajected\\ntrajecting\\ntrajects\\ntram\\ntramcar\\ntramcars\\ntramel\\ntrameled\\ntrameling\\ntramell\\ntramelled\\ntramelling\\ntramells\\ntramels\\ntramless\\ntramline\\ntrammed\\ntrammel\\ntrammeled\\ntrammeling\\ntrammelled\\ntrammelling\\ntrammels\\ntramming\\ntramp\\ntramped\\ntramper\\ntrampers\\ntramping\\ntrampish\\ntrample\\ntrampled\\ntrampler\\ntramplers\\ntramples\\ntrampling\\ntrampoline\\ntrampoliner\\ntrampoliners\\ntrampolines\\ntrampolinist\\ntrampolinists\\ntramps\\ntramroad\\ntramroads\\ntrams\\ntramway\\ntramways\\ntrance\\ntranced\\ntrances\\ntrancing\\ntrangam\\ntrangams\\ntranquil\\ntranquiler\\ntranquilest\\ntranquilities\\ntranquility\\ntranquilize\\ntranquilized\\ntranquilizer\\ntranquilizers\\ntranquilizes\\ntranquilizing\\ntranquiller\\ntranquillest\\ntranquillities\\ntranquillity\\ntranquillize\\ntranquillized\\ntranquillizer\\ntranquillizers\\ntranquillizes\\ntranquillizing\\ntranquilly\\ntrans\\ntransact\\ntransacted\\ntransacting\\ntransaction\\ntransactions\\ntransacts\\ntranscend\\ntranscended\\ntranscendent\\ntranscendental\\ntranscending\\ntranscends\\ntranscribe\\ntranscribes\\ntranscript\\ntranscription\\ntranscriptions\\ntranscripts\\ntransect\\ntransected\\ntransecting\\ntransects\\ntransept\\ntransepts\\ntransfer\\ntransferability\\ntransferable\\ntransferal\\ntransferals\\ntransference\\ntransferences\\ntransferred\\ntransferring\\ntransfers\\ntransfiguration\\ntransfigurations\\ntransfigure\\ntransfigured\\ntransfigures\\ntransfiguring\\ntransfix\\ntransfixed\\ntransfixes\\ntransfixing\\ntransfixt\\ntransform\\ntransformation\\ntransformations\\ntransformed\\ntransformer\\ntransformers\\ntransforming\\ntransforms\\ntransfuse\\ntransfused\\ntransfuses\\ntransfusing\\ntransfusion\\ntransfusions\\ntransgress\\ntransgressed\\ntransgresses\\ntransgressing\\ntransgression\\ntransgressions\\ntransgressor\\ntransgressors\\ntranship\\ntranshipped\\ntranshipping\\ntranships\\ntransistor\\ntransistorize\\ntransistorized\\ntransistorizes\\ntransistorizing\\ntransistors\\ntransit\\ntransited\\ntransiting\\ntransition\\ntransitional\\ntransitions\\ntransitory\\ntransits\\ntranslatable\\ntranslate\\ntranslated\\ntranslates\\ntranslating\\ntranslation\\ntranslations\\ntranslator\\ntranslators\\ntranslucence\\ntranslucences\\ntranslucencies\\ntranslucency\\ntranslucent\\ntranslucently\\ntransmissible\\ntransmission\\ntransmissions\\ntransmit\\ntransmits\\ntransmittable\\ntransmittal\\ntransmittals\\ntransmitted\\ntransmitter\\ntransmitters\\ntransmitting\\ntransom\\ntransoms\\ntransparencies\\ntransparency\\ntransparent\\ntransparently\\ntranspiration\\ntranspirations\\ntranspire\\ntranspired\\ntranspires\\ntranspiring\\ntransplant\\ntransplantation\\ntransplantations\\ntransplanted\\ntransplanting\\ntransplants\\ntransport\\ntransportation\\ntransported\\ntransporter\\ntransporters\\ntransporting\\ntransports\\ntranspose\\ntransposed\\ntransposes\\ntransposing\\ntransposition\\ntranspositions\\ntransship\\ntransshiped\\ntransshiping\\ntransshipment\\ntransshipments\\ntransships\\ntransude\\ntransuded\\ntransudes\\ntransuding\\ntransverse\\ntransversely\\ntransverses\\ntrap\\ntrapan\\ntrapanned\\ntrapanning\\ntrapans\\ntrapball\\ntrapballs\\ntrapdoor\\ntrapdoors\\ntrapes\\ntrapesed\\ntrapeses\\ntrapesing\\ntrapeze\\ntrapezes\\ntrapezia\\ntrapezoid\\ntrapezoidal\\ntrapezoids\\ntraplike\\ntrapnest\\ntrapnested\\ntrapnesting\\ntrapnests\\ntrappean\\ntrapped\\ntrapper\\ntrappers\\ntrapping\\ntrappings\\ntrappose\\ntrappous\\ntraprock\\ntraprocks\\ntraps\\ntrapt\\ntrapunto\\ntrapuntos\\ntrash\\ntrashed\\ntrashes\\ntrashier\\ntrashiest\\ntrashily\\ntrashing\\ntrashman\\ntrashmen\\ntrashy\\ntrass\\ntrasses\\ntrauchle\\ntrauchled\\ntrauchles\\ntrauchling\\ntrauma\\ntraumas\\ntraumata\\ntraumatic\\ntravail\\ntravailed\\ntravailing\\ntravails\\ntrave\\ntravel\\ntraveled\\ntraveler\\ntravelers\\ntraveling\\ntravelled\\ntraveller\\ntravellers\\ntravelling\\ntravelog\\ntravelogs\\ntravels\\ntraverse\\ntraversed\\ntraverses\\ntraversing\\ntraves\\ntravestied\\ntravesties\\ntravesty\\ntravestying\\ntravois\\ntravoise\\ntravoises\\ntrawl\\ntrawled\\ntrawler\\ntrawlers\\ntrawley\\ntrawleys\\ntrawling\\ntrawls\\ntray\\ntrayful\\ntrayfuls\\ntrays\\ntreacle\\ntreacles\\ntreacly\\ntread\\ntreaded\\ntreader\\ntreaders\\ntreading\\ntreadle\\ntreadled\\ntreadler\\ntreadlers\\ntreadles\\ntreadling\\ntreadmill\\ntreadmills\\ntreads\\ntreason\\ntreasonable\\ntreasonous\\ntreasons\\ntreasure\\ntreasured\\ntreasurer\\ntreasurers\\ntreasures\\ntreasuries\\ntreasuring\\ntreasury\\ntreat\\ntreated\\ntreater\\ntreaters\\ntreaties\\ntreating\\ntreatise\\ntreatises\\ntreatment\\ntreatments\\ntreats\\ntreaty\\ntreble\\ntrebled\\ntrebles\\ntrebling\\ntrebly\\ntrecento\\ntrecentos\\ntreddle\\ntreddled\\ntreddles\\ntreddling\\ntree\\ntreed\\ntreeing\\ntreeless\\ntreelike\\ntreenail\\ntreenails\\ntrees\\ntreetop\\ntreetops\\ntref\\ntrefah\\ntrefoil\\ntrefoils\\ntrehala\\ntrehalas\\ntrek\\ntrekked\\ntrekker\\ntrekkers\\ntrekking\\ntreks\\ntrellis\\ntrellised\\ntrellises\\ntrellising\\ntremble\\ntrembled\\ntrembler\\ntremblers\\ntrembles\\ntremblier\\ntrembliest\\ntrembling\\ntrembly\\ntremendous\\ntremendously\\ntremolo\\ntremolos\\ntremor\\ntremors\\ntremulous\\ntremulously\\ntrenail\\ntrenails\\ntrench\\ntrenchant\\ntrenched\\ntrencher\\ntrenchers\\ntrenches\\ntrenching\\ntrend\\ntrended\\ntrendier\\ntrendiest\\ntrendily\\ntrending\\ntrends\\ntrendy\\ntrepan\\ntrepang\\ntrepangs\\ntrepanned\\ntrepanning\\ntrepans\\ntrephine\\ntrephined\\ntrephines\\ntrephining\\ntrepid\\ntrepidation\\ntrepidations\\ntrespass\\ntrespassed\\ntrespasser\\ntrespassers\\ntrespasses\\ntrespassing\\ntress\\ntressed\\ntressel\\ntressels\\ntresses\\ntressier\\ntressiest\\ntressour\\ntressours\\ntressure\\ntressures\\ntressy\\ntrestle\\ntrestles\\ntret\\ntrets\\ntrevet\\ntrevets\\ntrews\\ntrey\\ntreys\\ntriable\\ntriacid\\ntriacids\\ntriad\\ntriadic\\ntriadics\\ntriadism\\ntriadisms\\ntriads\\ntriage\\ntriages\\ntrial\\ntrials\\ntriangle\\ntriangles\\ntriangular\\ntriangularly\\ntriarchies\\ntriarchy\\ntriaxial\\ntriazin\\ntriazine\\ntriazines\\ntriazins\\ntriazole\\ntriazoles\\ntribade\\ntribades\\ntribadic\\ntribal\\ntribally\\ntribasic\\ntribe\\ntribes\\ntribesman\\ntribesmen\\ntribrach\\ntribrachs\\ntribulation\\ntribulations\\ntribunal\\ntribunals\\ntribune\\ntribunes\\ntributaries\\ntributary\\ntribute\\ntributes\\ntrice\\ntriced\\ntriceps\\ntricepses\\ntrices\\ntrichina\\ntrichinae\\ntrichinas\\ntrichite\\ntrichites\\ntrichoid\\ntrichome\\ntrichomes\\ntricing\\ntrick\\ntricked\\ntricker\\ntrickeries\\ntrickers\\ntrickery\\ntrickie\\ntrickier\\ntrickiest\\ntrickily\\ntricking\\ntrickish\\ntrickle\\ntrickled\\ntrickles\\ntricklier\\ntrickliest\\ntrickling\\ntrickly\\ntricks\\ntricksier\\ntricksiest\\ntrickster\\ntricksters\\ntricksy\\ntricky\\ntriclad\\ntriclads\\ntricolor\\ntricolors\\ntricorn\\ntricorne\\ntricornes\\ntricorns\\ntricot\\ntricots\\ntrictrac\\ntrictracs\\ntricycle\\ntricycles\\ntrident\\ntridents\\ntriduum\\ntriduums\\ntried\\ntriene\\ntrienes\\ntriennia\\ntriennial\\ntriennials\\ntriens\\ntrientes\\ntrier\\ntriers\\ntries\\ntriethyl\\ntrifid\\ntrifle\\ntrifled\\ntrifler\\ntriflers\\ntrifles\\ntrifling\\ntriflings\\ntrifocal\\ntrifocals\\ntrifold\\ntriforia\\ntriform\\ntrig\\ntrigged\\ntrigger\\ntriggered\\ntriggering\\ntriggers\\ntriggest\\ntrigging\\ntrigly\\ntriglyph\\ntriglyphs\\ntrigness\\ntrignesses\\ntrigo\\ntrigon\\ntrigonal\\ntrigonometric\\ntrigonometrical\\ntrigonometries\\ntrigonometry\\ntrigons\\ntrigos\\ntrigraph\\ntrigraphs\\ntrigs\\ntrihedra\\ntrijet\\ntrijets\\ntrilbies\\ntrilby\\ntrill\\ntrilled\\ntriller\\ntrillers\\ntrilling\\ntrillion\\ntrillions\\ntrillionth\\ntrillionths\\ntrillium\\ntrilliums\\ntrills\\ntrilobal\\ntrilobed\\ntrilogies\\ntrilogy\\ntrim\\ntrimaran\\ntrimarans\\ntrimer\\ntrimers\\ntrimester\\ntrimeter\\ntrimeters\\ntrimly\\ntrimmed\\ntrimmer\\ntrimmers\\ntrimmest\\ntrimming\\ntrimmings\\ntrimness\\ntrimnesses\\ntrimorph\\ntrimorphs\\ntrimotor\\ntrimotors\\ntrims\\ntrinal\\ntrinary\\ntrindle\\ntrindled\\ntrindles\\ntrindling\\ntrine\\ntrined\\ntrines\\ntrining\\ntrinities\\ntrinity\\ntrinket\\ntrinketed\\ntrinketing\\ntrinkets\\ntrinkums\\ntrinodal\\ntrio\\ntriode\\ntriodes\\ntriol\\ntriolet\\ntriolets\\ntriols\\ntrios\\ntriose\\ntrioses\\ntrioxid\\ntrioxide\\ntrioxides\\ntrioxids\\ntrip\\ntripack\\ntripacks\\ntripart\\ntripartite\\ntripe\\ntripedal\\ntripes\\ntriphase\\ntriplane\\ntriplanes\\ntriple\\ntripled\\ntriples\\ntriplet\\ntriplets\\ntriplex\\ntriplexes\\ntriplicate\\ntriplicates\\ntripling\\ntriplite\\ntriplites\\ntriploid\\ntriploids\\ntriply\\ntripod\\ntripodal\\ntripodic\\ntripodies\\ntripody\\ntripoli\\ntripolis\\ntripos\\ntriposes\\ntripped\\ntripper\\ntrippers\\ntrippet\\ntrippets\\ntripping\\ntrippings\\ntrips\\ntriptane\\ntriptanes\\ntriptyca\\ntriptycas\\ntriptych\\ntriptychs\\ntrireme\\ntriremes\\ntriscele\\ntrisceles\\ntrisect\\ntrisected\\ntrisecting\\ntrisection\\ntrisections\\ntrisects\\ntriseme\\ntrisemes\\ntrisemic\\ntriskele\\ntriskeles\\ntrismic\\ntrismus\\ntrismuses\\ntrisome\\ntrisomes\\ntrisomic\\ntrisomics\\ntrisomies\\ntrisomy\\ntristate\\ntriste\\ntristeza\\ntristezas\\ntristful\\ntristich\\ntristichs\\ntrite\\ntritely\\ntriter\\ntritest\\ntrithing\\ntrithings\\ntriticum\\ntriticums\\ntritium\\ntritiums\\ntritoma\\ntritomas\\ntriton\\ntritone\\ntritones\\ntritons\\ntriumph\\ntriumphal\\ntriumphant\\ntriumphantly\\ntriumphed\\ntriumphing\\ntriumphs\\ntriumvir\\ntriumvirate\\ntriumvirates\\ntriumviri\\ntriumvirs\\ntriune\\ntriunes\\ntriunities\\ntriunity\\ntrivalve\\ntrivalves\\ntrivet\\ntrivets\\ntrivia\\ntrivial\\ntrivialities\\ntriviality\\ntrivium\\ntroak\\ntroaked\\ntroaking\\ntroaks\\ntrocar\\ntrocars\\ntrochaic\\ntrochaics\\ntrochal\\ntrochar\\ntrochars\\ntroche\\ntrochee\\ntrochees\\ntroches\\ntrochil\\ntrochili\\ntrochils\\ntrochlea\\ntrochleae\\ntrochleas\\ntrochoid\\ntrochoids\\ntrock\\ntrocked\\ntrocking\\ntrocks\\ntrod\\ntrodden\\ntrode\\ntroffer\\ntroffers\\ntrogon\\ntrogons\\ntroika\\ntroikas\\ntroilite\\ntroilites\\ntroilus\\ntroiluses\\ntrois\\ntroke\\ntroked\\ntrokes\\ntroking\\ntroland\\ntrolands\\ntroll\\ntrolled\\ntroller\\ntrollers\\ntrolley\\ntrolleyed\\ntrolleying\\ntrolleys\\ntrollied\\ntrollies\\ntrolling\\ntrollings\\ntrollop\\ntrollops\\ntrollopy\\ntrolls\\ntrolly\\ntrollying\\ntrombone\\ntrombones\\ntrombonist\\ntrombonists\\ntrommel\\ntrommels\\ntromp\\ntrompe\\ntromped\\ntrompes\\ntromping\\ntromps\\ntrona\\ntronas\\ntrone\\ntrones\\ntroop\\ntrooped\\ntrooper\\ntroopers\\ntroopial\\ntroopials\\ntrooping\\ntroops\\ntrooz\\ntrop\\ntrope\\ntropes\\ntrophic\\ntrophied\\ntrophies\\ntrophy\\ntrophying\\ntropic\\ntropical\\ntropics\\ntropin\\ntropine\\ntropines\\ntropins\\ntropism\\ntropisms\\ntrot\\ntroth\\ntrothed\\ntrothing\\ntroths\\ntrotline\\ntrotlines\\ntrots\\ntrotted\\ntrotter\\ntrotters\\ntrotting\\ntrotyl\\ntrotyls\\ntroubadour\\ntroubadours\\ntrouble\\ntroubled\\ntroublemaker\\ntroublemakers\\ntroubler\\ntroublers\\ntroubles\\ntroubleshoot\\ntroubleshooted\\ntroubleshooting\\ntroubleshoots\\ntroublesome\\ntroublesomely\\ntroubling\\ntrough\\ntroughs\\ntrounce\\ntrounced\\ntrounces\\ntrouncing\\ntroupe\\ntrouped\\ntrouper\\ntroupers\\ntroupes\\ntroupial\\ntroupials\\ntrouping\\ntrouser\\ntrousers\\ntrousseau\\ntrousseaus\\ntrousseaux\\ntrout\\ntroutier\\ntroutiest\\ntrouts\\ntrouty\\ntrouvere\\ntrouveres\\ntrouveur\\ntrouveurs\\ntrove\\ntrover\\ntrovers\\ntroves\\ntrow\\ntrowed\\ntrowel\\ntroweled\\ntroweler\\ntrowelers\\ntroweling\\ntrowelled\\ntrowelling\\ntrowels\\ntrowing\\ntrows\\ntrowsers\\ntrowth\\ntrowths\\ntroy\\ntroys\\ntruancies\\ntruancy\\ntruant\\ntruanted\\ntruanting\\ntruantries\\ntruantry\\ntruants\\ntruce\\ntruced\\ntruces\\ntrucing\\ntruck\\ntruckage\\ntruckages\\ntrucked\\ntrucker\\ntruckers\\ntrucking\\ntruckings\\ntruckle\\ntruckled\\ntruckler\\ntrucklers\\ntruckles\\ntruckling\\ntruckload\\ntruckloads\\ntruckman\\ntruckmen\\ntrucks\\ntruculencies\\ntruculency\\ntruculent\\ntruculently\\ntrudge\\ntrudged\\ntrudgen\\ntrudgens\\ntrudgeon\\ntrudgeons\\ntrudger\\ntrudgers\\ntrudges\\ntrudging\\ntrue\\ntrueblue\\ntrueblues\\ntrueborn\\ntrued\\ntrueing\\ntruelove\\ntrueloves\\ntrueness\\ntruenesses\\ntruer\\ntrues\\ntruest\\ntruffe\\ntruffes\\ntruffle\\ntruffled\\ntruffles\\ntruing\\ntruism\\ntruisms\\ntruistic\\ntrull\\ntrulls\\ntruly\\ntrumeau\\ntrumeaux\\ntrump\\ntrumped\\ntrumperies\\ntrumpery\\ntrumpet\\ntrumpeted\\ntrumpeter\\ntrumpeters\\ntrumpeting\\ntrumpets\\ntrumping\\ntrumps\\ntruncate\\ntruncated\\ntruncates\\ntruncating\\ntruncation\\ntruncations\\ntrundle\\ntrundled\\ntrundler\\ntrundlers\\ntrundles\\ntrundling\\ntrunk\\ntrunked\\ntrunks\\ntrunnel\\ntrunnels\\ntrunnion\\ntrunnions\\ntruss\\ntrussed\\ntrusser\\ntrussers\\ntrusses\\ntrussing\\ntrussings\\ntrust\\ntrusted\\ntrustee\\ntrusteed\\ntrusteeing\\ntrustees\\ntrusteeship\\ntrusteeships\\ntruster\\ntrusters\\ntrustful\\ntrustfully\\ntrustier\\ntrusties\\ntrustiest\\ntrustily\\ntrusting\\ntrusts\\ntrustworthiness\\ntrustworthinesses\\ntrustworthy\\ntrusty\\ntruth\\ntruthful\\ntruthfully\\ntruthfulness\\ntruthfulnesses\\ntruths\\ntry\\ntrying\\ntryingly\\ntryma\\ntrymata\\ntryout\\ntryouts\\ntrypsin\\ntrypsins\\ntryptic\\ntrysail\\ntrysails\\ntryst\\ntryste\\ntrysted\\ntryster\\ntrysters\\ntrystes\\ntrysting\\ntrysts\\ntryworks\\ntsade\\ntsades\\ntsadi\\ntsadis\\ntsar\\ntsardom\\ntsardoms\\ntsarevna\\ntsarevnas\\ntsarina\\ntsarinas\\ntsarism\\ntsarisms\\ntsarist\\ntsarists\\ntsaritza\\ntsaritzas\\ntsars\\ntsetse\\ntsetses\\ntsimmes\\ntsk\\ntsked\\ntsking\\ntsks\\ntsktsk\\ntsktsked\\ntsktsking\\ntsktsks\\ntsuba\\ntsunami\\ntsunamic\\ntsunamis\\ntsuris\\ntuatara\\ntuataras\\ntuatera\\ntuateras\\ntub\\ntuba\\ntubae\\ntubal\\ntubas\\ntubate\\ntubbable\\ntubbed\\ntubber\\ntubbers\\ntubbier\\ntubbiest\\ntubbing\\ntubby\\ntube\\ntubed\\ntubeless\\ntubelike\\ntuber\\ntubercle\\ntubercles\\ntubercular\\ntuberculoses\\ntuberculosis\\ntuberculous\\ntuberoid\\ntuberose\\ntuberoses\\ntuberous\\ntubers\\ntubes\\ntubework\\ntubeworks\\ntubful\\ntubfuls\\ntubifex\\ntubifexes\\ntubiform\\ntubing\\ntubings\\ntublike\\ntubs\\ntubular\\ntubulate\\ntubulated\\ntubulates\\ntubulating\\ntubule\\ntubules\\ntubulose\\ntubulous\\ntubulure\\ntubulures\\ntuchun\\ntuchuns\\ntuck\\ntuckahoe\\ntuckahoes\\ntucked\\ntucker\\ntuckered\\ntuckering\\ntuckers\\ntucket\\ntuckets\\ntucking\\ntucks\\ntufa\\ntufas\\ntuff\\ntuffet\\ntuffets\\ntuffs\\ntuft\\ntufted\\ntufter\\ntufters\\ntuftier\\ntuftiest\\ntuftily\\ntufting\\ntufts\\ntufty\\ntug\\ntugboat\\ntugboats\\ntugged\\ntugger\\ntuggers\\ntugging\\ntugless\\ntugrik\\ntugriks\\ntugs\\ntui\\ntuille\\ntuilles\\ntuis\\ntuition\\ntuitions\\ntuladi\\ntuladis\\ntule\\ntules\\ntulip\\ntulips\\ntulle\\ntulles\\ntullibee\\ntullibees\\ntumble\\ntumbled\\ntumbler\\ntumblers\\ntumbles\\ntumbling\\ntumblings\\ntumbrel\\ntumbrels\\ntumbril\\ntumbrils\\ntumefied\\ntumefies\\ntumefy\\ntumefying\\ntumid\\ntumidily\\ntumidities\\ntumidity\\ntummies\\ntummy\\ntumor\\ntumoral\\ntumorous\\ntumors\\ntumour\\ntumours\\ntump\\ntumpline\\ntumplines\\ntumps\\ntumular\\ntumuli\\ntumulose\\ntumulous\\ntumult\\ntumults\\ntumultuous\\ntumulus\\ntumuluses\\ntun\\ntuna\\ntunable\\ntunably\\ntunas\\ntundish\\ntundishes\\ntundra\\ntundras\\ntune\\ntuneable\\ntuneably\\ntuned\\ntuneful\\ntuneless\\ntuner\\ntuners\\ntunes\\ntung\\ntungs\\ntungsten\\ntungstens\\ntungstic\\ntunic\\ntunica\\ntunicae\\ntunicate\\ntunicates\\ntunicle\\ntunicles\\ntunics\\ntuning\\ntunnage\\ntunnages\\ntunned\\ntunnel\\ntunneled\\ntunneler\\ntunnelers\\ntunneling\\ntunnelled\\ntunnelling\\ntunnels\\ntunnies\\ntunning\\ntunny\\ntuns\\ntup\\ntupelo\\ntupelos\\ntupik\\ntupiks\\ntupped\\ntuppence\\ntuppences\\ntuppeny\\ntupping\\ntups\\ntuque\\ntuques\\nturaco\\nturacos\\nturacou\\nturacous\\nturban\\nturbaned\\nturbans\\nturbaries\\nturbary\\nturbeth\\nturbeths\\nturbid\\nturbidities\\nturbidity\\nturbidly\\nturbidness\\nturbidnesses\\nturbinal\\nturbinals\\nturbine\\nturbines\\nturbit\\nturbith\\nturbiths\\nturbits\\nturbo\\nturbocar\\nturbocars\\nturbofan\\nturbofans\\nturbojet\\nturbojets\\nturboprop\\nturboprops\\nturbos\\nturbot\\nturbots\\nturbulence\\nturbulences\\nturbulently\\nturd\\nturdine\\nturds\\ntureen\\ntureens\\nturf\\nturfed\\nturfier\\nturfiest\\nturfing\\nturfless\\nturflike\\nturfman\\nturfmen\\nturfs\\nturfski\\nturfskis\\nturfy\\nturgencies\\nturgency\\nturgent\\nturgid\\nturgidities\\nturgidity\\nturgidly\\nturgite\\nturgites\\nturgor\\nturgors\\nturkey\\nturkeys\\nturkois\\nturkoises\\nturmeric\\nturmerics\\nturmoil\\nturmoiled\\nturmoiling\\nturmoils\\nturn\\nturnable\\nturnaround\\nturncoat\\nturncoats\\nturndown\\nturndowns\\nturned\\nturner\\nturneries\\nturners\\nturnery\\nturnhall\\nturnhalls\\nturning\\nturnings\\nturnip\\nturnips\\nturnkey\\nturnkeys\\nturnoff\\nturnoffs\\nturnout\\nturnouts\\nturnover\\nturnovers\\nturnpike\\nturnpikes\\nturns\\nturnsole\\nturnsoles\\nturnspit\\nturnspits\\nturnstile\\nturnstiles\\nturntable\\nturntables\\nturnup\\nturnups\\nturpentine\\nturpentines\\nturpeth\\nturpeths\\nturpitude\\nturpitudes\\nturps\\nturquois\\nturquoise\\nturquoises\\nturret\\nturreted\\nturrets\\nturrical\\nturtle\\nturtled\\nturtledove\\nturtledoves\\nturtleneck\\nturtlenecks\\nturtler\\nturtlers\\nturtles\\nturtling\\nturtlings\\nturves\\ntusche\\ntusches\\ntush\\ntushed\\ntushes\\ntushing\\ntusk\\ntusked\\ntusker\\ntuskers\\ntusking\\ntuskless\\ntusklike\\ntusks\\ntussah\\ntussahs\\ntussal\\ntussar\\ntussars\\ntusseh\\ntussehs\\ntusser\\ntussers\\ntussis\\ntussises\\ntussive\\ntussle\\ntussled\\ntussles\\ntussling\\ntussock\\ntussocks\\ntussocky\\ntussor\\ntussore\\ntussores\\ntussors\\ntussuck\\ntussucks\\ntussur\\ntussurs\\ntut\\ntutee\\ntutees\\ntutelage\\ntutelages\\ntutelar\\ntutelaries\\ntutelars\\ntutelary\\ntutor\\ntutorage\\ntutorages\\ntutored\\ntutoress\\ntutoresses\\ntutorial\\ntutorials\\ntutoring\\ntutors\\ntutoyed\\ntutoyer\\ntutoyered\\ntutoyering\\ntutoyers\\ntuts\\ntutted\\ntutti\\ntutties\\ntutting\\ntuttis\\ntutty\\ntutu\\ntutus\\ntux\\ntuxedo\\ntuxedoes\\ntuxedos\\ntuxes\\ntuyer\\ntuyere\\ntuyeres\\ntuyers\\ntwa\\ntwaddle\\ntwaddled\\ntwaddler\\ntwaddlers\\ntwaddles\\ntwaddling\\ntwae\\ntwaes\\ntwain\\ntwains\\ntwang\\ntwanged\\ntwangier\\ntwangiest\\ntwanging\\ntwangle\\ntwangled\\ntwangler\\ntwanglers\\ntwangles\\ntwangling\\ntwangs\\ntwangy\\ntwankies\\ntwanky\\ntwas\\ntwasome\\ntwasomes\\ntwattle\\ntwattled\\ntwattles\\ntwattling\\ntweak\\ntweaked\\ntweakier\\ntweakiest\\ntweaking\\ntweaks\\ntweaky\\ntweed\\ntweedier\\ntweediest\\ntweedle\\ntweedled\\ntweedles\\ntweedling\\ntweeds\\ntweedy\\ntween\\ntweet\\ntweeted\\ntweeter\\ntweeters\\ntweeting\\ntweets\\ntweeze\\ntweezed\\ntweezer\\ntweezers\\ntweezes\\ntweezing\\ntwelfth\\ntwelfths\\ntwelve\\ntwelvemo\\ntwelvemos\\ntwelves\\ntwenties\\ntwentieth\\ntwentieths\\ntwenty\\ntwerp\\ntwerps\\ntwibil\\ntwibill\\ntwibills\\ntwibils\\ntwice\\ntwiddle\\ntwiddled\\ntwiddler\\ntwiddlers\\ntwiddles\\ntwiddling\\ntwier\\ntwiers\\ntwig\\ntwigged\\ntwiggen\\ntwiggier\\ntwiggiest\\ntwigging\\ntwiggy\\ntwigless\\ntwiglike\\ntwigs\\ntwilight\\ntwilights\\ntwilit\\ntwill\\ntwilled\\ntwilling\\ntwillings\\ntwills\\ntwin\\ntwinborn\\ntwine\\ntwined\\ntwiner\\ntwiners\\ntwines\\ntwinge\\ntwinged\\ntwinges\\ntwinging\\ntwinier\\ntwiniest\\ntwinight\\ntwining\\ntwinkle\\ntwinkled\\ntwinkler\\ntwinklers\\ntwinkles\\ntwinkling\\ntwinkly\\ntwinned\\ntwinning\\ntwinnings\\ntwins\\ntwinship\\ntwinships\\ntwiny\\ntwirl\\ntwirled\\ntwirler\\ntwirlers\\ntwirlier\\ntwirliest\\ntwirling\\ntwirls\\ntwirly\\ntwirp\\ntwirps\\ntwist\\ntwisted\\ntwister\\ntwisters\\ntwisting\\ntwistings\\ntwists\\ntwit\\ntwitch\\ntwitched\\ntwitcher\\ntwitchers\\ntwitches\\ntwitchier\\ntwitchiest\\ntwitching\\ntwitchy\\ntwits\\ntwitted\\ntwitter\\ntwittered\\ntwittering\\ntwitters\\ntwittery\\ntwitting\\ntwixt\\ntwo\\ntwofer\\ntwofers\\ntwofold\\ntwofolds\\ntwopence\\ntwopences\\ntwopenny\\ntwos\\ntwosome\\ntwosomes\\ntwyer\\ntwyers\\ntycoon\\ntycoons\\ntye\\ntyee\\ntyees\\ntyes\\ntying\\ntyke\\ntykes\\ntymbal\\ntymbals\\ntympan\\ntympana\\ntympanal\\ntympani\\ntympanic\\ntympanies\\ntympans\\ntympanum\\ntympanums\\ntympany\\ntyne\\ntyned\\ntynes\\ntyning\\ntypal\\ntype\\ntypeable\\ntypebar\\ntypebars\\ntypecase\\ntypecases\\ntypecast\\ntypecasting\\ntypecasts\\ntyped\\ntypeface\\ntypefaces\\ntypes\\ntypeset\\ntypeseting\\ntypesets\\ntypewrite\\ntypewrited\\ntypewriter\\ntypewriters\\ntypewrites\\ntypewriting\\ntypey\\ntyphoid\\ntyphoids\\ntyphon\\ntyphonic\\ntyphons\\ntyphoon\\ntyphoons\\ntyphose\\ntyphous\\ntyphus\\ntyphuses\\ntypic\\ntypical\\ntypically\\ntypicalness\\ntypicalnesses\\ntypier\\ntypiest\\ntypified\\ntypifier\\ntypifiers\\ntypifies\\ntypify\\ntypifying\\ntyping\\ntypist\\ntypists\\ntypo\\ntypographic\\ntypographical\\ntypographically\\ntypographies\\ntypography\\ntypologies\\ntypology\\ntypos\\ntypp\\ntypps\\ntypy\\ntyramine\\ntyramines\\ntyrannic\\ntyrannies\\ntyranny\\ntyrant\\ntyrants\\ntyre\\ntyred\\ntyres\\ntyring\\ntyro\\ntyronic\\ntyros\\ntyrosine\\ntyrosines\\ntythe\\ntythed\\ntythes\\ntything\\ntzaddik\\ntzaddikim\\ntzar\\ntzardom\\ntzardoms\\ntzarevna\\ntzarevnas\\ntzarina\\ntzarinas\\ntzarism\\ntzarisms\\ntzarist\\ntzarists\\ntzaritza\\ntzaritzas\\ntzars\\ntzetze\\ntzetzes\\ntzigane\\ntziganes\\ntzimmes\\ntzitzis\\ntzitzith\\ntzuris\\nubieties\\nubiety\\nubique\\nubiquities\\nubiquitities\\nubiquitity\\nubiquitous\\nubiquitously\\nubiquity\\nudder\\nudders\\nudo\\nudometer\\nudometers\\nudometries\\nudometry\\nudos\\nugh\\nughs\\nuglier\\nugliest\\nuglified\\nuglifier\\nuglifiers\\nuglifies\\nuglify\\nuglifying\\nuglily\\nugliness\\nuglinesses\\nugly\\nugsome\\nuhlan\\nuhlans\\nuintaite\\nuintaites\\nuit\\nukase\\nukases\\nuke\\nukelele\\nukeleles\\nukes\\nukulele\\nukuleles\\nulama\\nulamas\\nulan\\nulans\\nulcer\\nulcerate\\nulcerated\\nulcerates\\nulcerating\\nulceration\\nulcerations\\nulcerative\\nulcered\\nulcering\\nulcerous\\nulcers\\nulema\\nulemas\\nulexite\\nulexites\\nullage\\nullaged\\nullages\\nulna\\nulnad\\nulnae\\nulnar\\nulnas\\nulster\\nulsters\\nulterior\\nultima\\nultimacies\\nultimacy\\nultimas\\nultimata\\nultimate\\nultimately\\nultimates\\nultimatum\\nultimo\\nultra\\nultraism\\nultraisms\\nultraist\\nultraists\\nultrared\\nultrareds\\nultras\\nultraviolet\\nululant\\nululate\\nululated\\nululates\\nululating\\nulva\\nulvas\\numbel\\numbeled\\numbellar\\numbelled\\numbellet\\numbellets\\numbels\\number\\numbered\\numbering\\numbers\\numbilical\\numbilici\\numbilicus\\numbles\\numbo\\numbonal\\numbonate\\numbones\\numbonic\\numbos\\numbra\\numbrae\\numbrage\\numbrages\\numbral\\numbras\\numbrella\\numbrellaed\\numbrellaing\\numbrellas\\numbrette\\numbrettes\\numiac\\numiack\\numiacks\\numiacs\\numiak\\numiaks\\numlaut\\numlauted\\numlauting\\numlauts\\nump\\numped\\numping\\numpirage\\numpirages\\numpire\\numpired\\numpires\\numpiring\\numps\\numpteen\\numpteenth\\numteenth\\nun\\nunabated\\nunable\\nunabridged\\nunabused\\nunacceptable\\nunaccompanied\\nunaccounted\\nunaccustomed\\nunacted\\nunaddressed\\nunadorned\\nunadulterated\\nunaffected\\nunaffectedly\\nunafraid\\nunaged\\nunageing\\nunagile\\nunaging\\nunai\\nunaided\\nunaimed\\nunaired\\nunais\\nunalike\\nunallied\\nunambiguous\\nunambiguously\\nunambitious\\nunamused\\nunanchor\\nunanchored\\nunanchoring\\nunanchors\\nunaneled\\nunanimities\\nunanimity\\nunanimous\\nunanimously\\nunannounced\\nunanswerable\\nunanswered\\nunanticipated\\nunappetizing\\nunappreciated\\nunapproved\\nunapt\\nunaptly\\nunare\\nunargued\\nunarm\\nunarmed\\nunarming\\nunarms\\nunartful\\nunary\\nunasked\\nunassisted\\nunassuming\\nunatoned\\nunattached\\nunattended\\nunattractive\\nunau\\nunaus\\nunauthorized\\nunavailable\\nunavoidable\\nunavowed\\nunawaked\\nunaware\\nunawares\\nunawed\\nunbacked\\nunbaked\\nunbalanced\\nunbar\\nunbarbed\\nunbarred\\nunbarring\\nunbars\\nunbased\\nunbated\\nunbe\\nunbear\\nunbearable\\nunbeared\\nunbearing\\nunbears\\nunbeaten\\nunbecoming\\nunbecomingly\\nunbed\\nunbelief\\nunbeliefs\\nunbelievable\\nunbelievably\\nunbelt\\nunbelted\\nunbelting\\nunbelts\\nunbend\\nunbended\\nunbending\\nunbends\\nunbenign\\nunbent\\nunbiased\\nunbid\\nunbidden\\nunbind\\nunbinding\\nunbinds\\nunbitted\\nunblamed\\nunblest\\nunblock\\nunblocked\\nunblocking\\nunblocks\\nunbloody\\nunbodied\\nunbolt\\nunbolted\\nunbolting\\nunbolts\\nunboned\\nunbonnet\\nunbonneted\\nunbonneting\\nunbonnets\\nunborn\\nunbosom\\nunbosomed\\nunbosoming\\nunbosoms\\nunbought\\nunbound\\nunbowed\\nunbox\\nunboxed\\nunboxes\\nunboxing\\nunbrace\\nunbraced\\nunbraces\\nunbracing\\nunbraid\\nunbraided\\nunbraiding\\nunbraids\\nunbranded\\nunbreakable\\nunbred\\nunbreech\\nunbreeched\\nunbreeches\\nunbreeching\\nunbridle\\nunbridled\\nunbridles\\nunbridling\\nunbroke\\nunbroken\\nunbuckle\\nunbuckled\\nunbuckles\\nunbuckling\\nunbuild\\nunbuilding\\nunbuilds\\nunbuilt\\nunbundle\\nunbundled\\nunbundles\\nunbundling\\nunburden\\nunburdened\\nunburdening\\nunburdens\\nunburied\\nunburned\\nunburnt\\nunbutton\\nunbuttoned\\nunbuttoning\\nunbuttons\\nuncage\\nuncaged\\nuncages\\nuncaging\\nuncake\\nuncaked\\nuncakes\\nuncaking\\nuncalled\\nuncandid\\nuncannier\\nuncanniest\\nuncannily\\nuncanny\\nuncap\\nuncapped\\nuncapping\\nuncaps\\nuncaring\\nuncase\\nuncased\\nuncases\\nuncashed\\nuncasing\\nuncaught\\nuncaused\\nunceasing\\nunceasingly\\nuncensored\\nunceremonious\\nunceremoniously\\nuncertain\\nuncertainly\\nuncertainties\\nuncertainty\\nunchain\\nunchained\\nunchaining\\nunchains\\nunchallenged\\nunchancy\\nunchanged\\nunchanging\\nuncharacteristic\\nuncharge\\nuncharged\\nuncharges\\nuncharging\\nunchary\\nunchaste\\nunchecked\\nunchewed\\nunchic\\nunchoke\\nunchoked\\nunchokes\\nunchoking\\nunchosen\\nunchristian\\nunchurch\\nunchurched\\nunchurches\\nunchurching\\nunci\\nuncia\\nunciae\\nuncial\\nuncially\\nuncials\\nunciform\\nunciforms\\nuncinal\\nuncinate\\nuncini\\nuncinus\\nuncivil\\nuncivilized\\nunclad\\nunclaimed\\nunclamp\\nunclamped\\nunclamping\\nunclamps\\nunclasp\\nunclasped\\nunclasping\\nunclasps\\nuncle\\nunclean\\nuncleaner\\nuncleanest\\nuncleanness\\nuncleannesses\\nunclear\\nuncleared\\nunclearer\\nunclearest\\nunclench\\nunclenched\\nunclenches\\nunclenching\\nuncles\\nunclinch\\nunclinched\\nunclinches\\nunclinching\\nuncloak\\nuncloaked\\nuncloaking\\nuncloaks\\nunclog\\nunclogged\\nunclogging\\nunclogs\\nunclose\\nunclosed\\nuncloses\\nunclosing\\nunclothe\\nunclothed\\nunclothes\\nunclothing\\nuncloud\\nunclouded\\nunclouding\\nunclouds\\nuncloyed\\nuncluttered\\nunco\\nuncoated\\nuncock\\nuncocked\\nuncocking\\nuncocks\\nuncoffin\\nuncoffined\\nuncoffining\\nuncoffins\\nuncoil\\nuncoiled\\nuncoiling\\nuncoils\\nuncoined\\nuncombed\\nuncomely\\nuncomfortable\\nuncomfortably\\nuncomic\\nuncommitted\\nuncommon\\nuncommoner\\nuncommonest\\nuncommonly\\nuncomplimentary\\nuncompromising\\nunconcerned\\nunconcernedlies\\nunconcernedly\\nunconditional\\nunconditionally\\nunconfirmed\\nunconscionable\\nunconscionably\\nunconscious\\nunconsciously\\nunconsciousness\\nunconsciousnesses\\nunconstitutional\\nuncontested\\nuncontrollable\\nuncontrollably\\nuncontrolled\\nunconventional\\nunconventionally\\nunconverted\\nuncooked\\nuncool\\nuncooperative\\nuncoordinated\\nuncork\\nuncorked\\nuncorking\\nuncorks\\nuncos\\nuncounted\\nuncouple\\nuncoupled\\nuncouples\\nuncoupling\\nuncouth\\nuncover\\nuncovered\\nuncovering\\nuncovers\\nuncrate\\nuncrated\\nuncrates\\nuncrating\\nuncreate\\nuncreated\\nuncreates\\nuncreating\\nuncross\\nuncrossed\\nuncrosses\\nuncrossing\\nuncrown\\nuncrowned\\nuncrowning\\nuncrowns\\nunction\\nunctions\\nunctuous\\nunctuously\\nuncultivated\\nuncurb\\nuncurbed\\nuncurbing\\nuncurbs\\nuncured\\nuncurl\\nuncurled\\nuncurling\\nuncurls\\nuncursed\\nuncus\\nuncut\\nundamaged\\nundamped\\nundaring\\nundated\\nundaunted\\nundauntedly\\nunde\\nundecided\\nundecked\\nundeclared\\nundee\\nundefeated\\nundefined\\nundemocratic\\nundeniable\\nundeniably\\nundenied\\nundependable\\nunder\\nunderact\\nunderacted\\nunderacting\\nunderacts\\nunderage\\nunderages\\nunderarm\\nunderarms\\nunderate\\nunderbid\\nunderbidding\\nunderbids\\nunderbought\\nunderbrush\\nunderbrushes\\nunderbud\\nunderbudded\\nunderbudding\\nunderbuds\\nunderbuy\\nunderbuying\\nunderbuys\\nunderclothes\\nunderclothing\\nunderclothings\\nundercover\\nundercurrent\\nundercurrents\\nundercut\\nundercuts\\nundercutting\\nunderdeveloped\\nunderdid\\nunderdo\\nunderdoes\\nunderdog\\nunderdogs\\nunderdoing\\nunderdone\\nundereat\\nundereaten\\nundereating\\nundereats\\nunderestimate\\nunderestimated\\nunderestimates\\nunderestimating\\nunderexpose\\nunderexposed\\nunderexposes\\nunderexposing\\nunderexposure\\nunderexposures\\nunderfed\\nunderfeed\\nunderfeeding\\nunderfeeds\\nunderfoot\\nunderfur\\nunderfurs\\nundergarment\\nundergarments\\nundergo\\nundergod\\nundergods\\nundergoes\\nundergoing\\nundergone\\nundergraduate\\nundergraduates\\nunderground\\nundergrounds\\nundergrowth\\nundergrowths\\nunderhand\\nunderhanded\\nunderhandedly\\nunderhandedness\\nunderhandednesses\\nunderjaw\\nunderjaws\\nunderlaid\\nunderlain\\nunderlap\\nunderlapped\\nunderlapping\\nunderlaps\\nunderlay\\nunderlaying\\nunderlays\\nunderlet\\nunderlets\\nunderletting\\nunderlie\\nunderlies\\nunderline\\nunderlined\\nunderlines\\nunderling\\nunderlings\\nunderlining\\nunderlip\\nunderlips\\nunderlit\\nunderlying\\nundermine\\nundermined\\nundermines\\nundermining\\nunderneath\\nundernourished\\nundernourishment\\nundernourishments\\nunderpaid\\nunderpants\\nunderpass\\nunderpasses\\nunderpay\\nunderpaying\\nunderpays\\nunderpin\\nunderpinned\\nunderpinning\\nunderpinnings\\nunderpins\\nunderprivileged\\nunderran\\nunderrate\\nunderrated\\nunderrates\\nunderrating\\nunderrun\\nunderrunning\\nunderruns\\nunderscore\\nunderscored\\nunderscores\\nunderscoring\\nundersea\\nunderseas\\nundersecretaries\\nundersecretary\\nundersell\\nunderselling\\nundersells\\nunderset\\nundersets\\nundershirt\\nundershirts\\nundershorts\\nunderside\\nundersides\\nundersized\\nundersold\\nunderstand\\nunderstandable\\nunderstandably\\nunderstanded\\nunderstanding\\nunderstandings\\nunderstands\\nunderstate\\nunderstated\\nunderstatement\\nunderstatements\\nunderstates\\nunderstating\\nunderstood\\nunderstudied\\nunderstudies\\nunderstudy\\nunderstudying\\nundertake\\nundertaken\\nundertaker\\nundertakes\\nundertaking\\nundertakings\\nundertax\\nundertaxed\\nundertaxes\\nundertaxing\\nundertone\\nundertones\\nundertook\\nundertow\\nundertows\\nundervalue\\nundervalued\\nundervalues\\nundervaluing\\nunderwater\\nunderway\\nunderwear\\nunderwears\\nunderwent\\nunderworld\\nunderworlds\\nunderwrite\\nunderwriter\\nunderwriters\\nunderwrites\\nunderwriting\\nunderwrote\\nundeserving\\nundesirable\\nundesired\\nundetailed\\nundetected\\nundetermined\\nundeveloped\\nundeviating\\nundevout\\nundid\\nundies\\nundignified\\nundimmed\\nundine\\nundines\\nundivided\\nundo\\nundock\\nundocked\\nundocking\\nundocks\\nundoer\\nundoers\\nundoes\\nundoing\\nundoings\\nundomesticated\\nundone\\nundouble\\nundoubled\\nundoubles\\nundoubling\\nundoubted\\nundoubtedly\\nundrape\\nundraped\\nundrapes\\nundraping\\nundraw\\nundrawing\\nundrawn\\nundraws\\nundreamt\\nundress\\nundressed\\nundresses\\nundressing\\nundrest\\nundrew\\nundried\\nundrinkable\\nundrunk\\nundue\\nundulant\\nundulate\\nundulated\\nundulates\\nundulating\\nundulled\\nunduly\\nundy\\nundyed\\nundying\\nuneager\\nunearned\\nunearth\\nunearthed\\nunearthing\\nunearthly\\nunearths\\nunease\\nuneases\\nuneasier\\nuneasiest\\nuneasily\\nuneasiness\\nuneasinesses\\nuneasy\\nuneaten\\nunedible\\nunedited\\nuneducated\\nunemotional\\nunemployed\\nunemployment\\nunemployments\\nunended\\nunending\\nunendurable\\nunenforceable\\nunenlightened\\nunenvied\\nunequal\\nunequaled\\nunequally\\nunequals\\nunequivocal\\nunequivocally\\nunerased\\nunerring\\nunerringly\\nunethical\\nunevaded\\nuneven\\nunevener\\nunevenest\\nunevenly\\nunevenness\\nunevennesses\\nuneventful\\nunexcitable\\nunexciting\\nunexotic\\nunexpected\\nunexpectedly\\nunexpert\\nunexplainable\\nunexplained\\nunexplored\\nunfaded\\nunfading\\nunfailing\\nunfailingly\\nunfair\\nunfairer\\nunfairest\\nunfairly\\nunfairness\\nunfairnesses\\nunfaith\\nunfaithful\\nunfaithfully\\nunfaithfulness\\nunfaithfulnesses\\nunfaiths\\nunfallen\\nunfamiliar\\nunfamiliarities\\nunfamiliarity\\nunfancy\\nunfasten\\nunfastened\\nunfastening\\nunfastens\\nunfavorable\\nunfavorably\\nunfazed\\nunfeared\\nunfed\\nunfeeling\\nunfeelingly\\nunfeigned\\nunfelt\\nunfence\\nunfenced\\nunfences\\nunfencing\\nunfetter\\nunfettered\\nunfettering\\nunfetters\\nunfilial\\nunfilled\\nunfilmed\\nunfinalized\\nunfinished\\nunfired\\nunfished\\nunfit\\nunfitly\\nunfitness\\nunfitnesses\\nunfits\\nunfitted\\nunfitting\\nunfix\\nunfixed\\nunfixes\\nunfixing\\nunfixt\\nunflappable\\nunflattering\\nunflexed\\nunfoiled\\nunfold\\nunfolded\\nunfolder\\nunfolders\\nunfolding\\nunfolds\\nunfond\\nunforced\\nunforeseeable\\nunforeseen\\nunforged\\nunforgettable\\nunforgettably\\nunforgivable\\nunforgiving\\nunforgot\\nunforked\\nunformed\\nunfortunate\\nunfortunately\\nunfortunates\\nunfought\\nunfound\\nunfounded\\nunframed\\nunfree\\nunfreed\\nunfreeing\\nunfrees\\nunfreeze\\nunfreezes\\nunfreezing\\nunfriendly\\nunfrock\\nunfrocked\\nunfrocking\\nunfrocks\\nunfroze\\nunfrozen\\nunfulfilled\\nunfunded\\nunfunny\\nunfurl\\nunfurled\\nunfurling\\nunfurls\\nunfurnished\\nunfused\\nunfussy\\nungainlier\\nungainliest\\nungainliness\\nungainlinesses\\nungainly\\nungalled\\nungenerous\\nungenial\\nungentle\\nungentlemanly\\nungently\\nungifted\\nungird\\nungirded\\nungirding\\nungirds\\nungirt\\nunglazed\\nunglove\\nungloved\\nungloves\\nungloving\\nunglue\\nunglued\\nunglues\\nungluing\\nungodlier\\nungodliest\\nungodliness\\nungodlinesses\\nungodly\\nungot\\nungotten\\nungowned\\nungraced\\nungraceful\\nungraded\\nungrammatical\\nungrateful\\nungratefully\\nungratefulness\\nungratefulnesses\\nungreedy\\nungual\\nunguard\\nunguarded\\nunguarding\\nunguards\\nunguent\\nunguents\\nungues\\nunguided\\nunguis\\nungula\\nungulae\\nungular\\nungulate\\nungulates\\nunhailed\\nunhair\\nunhaired\\nunhairing\\nunhairs\\nunhallow\\nunhallowed\\nunhallowing\\nunhallows\\nunhalved\\nunhand\\nunhanded\\nunhandier\\nunhandiest\\nunhanding\\nunhands\\nunhandy\\nunhang\\nunhanged\\nunhanging\\nunhangs\\nunhappier\\nunhappiest\\nunhappily\\nunhappiness\\nunhappinesses\\nunhappy\\nunharmed\\nunhasty\\nunhat\\nunhats\\nunhatted\\nunhatting\\nunhealed\\nunhealthful\\nunhealthy\\nunheard\\nunheated\\nunheeded\\nunhelm\\nunhelmed\\nunhelming\\nunhelms\\nunhelped\\nunheroic\\nunhewn\\nunhinge\\nunhinged\\nunhinges\\nunhinging\\nunhip\\nunhired\\nunhitch\\nunhitched\\nunhitches\\nunhitching\\nunholier\\nunholiest\\nunholily\\nunholiness\\nunholinesses\\nunholy\\nunhood\\nunhooded\\nunhooding\\nunhoods\\nunhook\\nunhooked\\nunhooking\\nunhooks\\nunhoped\\nunhorse\\nunhorsed\\nunhorses\\nunhorsing\\nunhouse\\nunhoused\\nunhouses\\nunhousing\\nunhuman\\nunhung\\nunhurt\\nunhusk\\nunhusked\\nunhusking\\nunhusks\\nunialgal\\nuniaxial\\nunicellular\\nunicolor\\nunicorn\\nunicorns\\nunicycle\\nunicycles\\nunideaed\\nunideal\\nunidentified\\nunidirectional\\nuniface\\nunifaces\\nunific\\nunification\\nunifications\\nunified\\nunifier\\nunifiers\\nunifies\\nunifilar\\nuniform\\nuniformed\\nuniformer\\nuniformest\\nuniforming\\nuniformity\\nuniformly\\nuniforms\\nunify\\nunifying\\nunilateral\\nunilaterally\\nunilobed\\nunimaginable\\nunimaginative\\nunimbued\\nunimpeachable\\nunimportant\\nunimpressed\\nuninformed\\nuninhabited\\nuninhibited\\nuninhibitedly\\nuninjured\\nuninsured\\nunintelligent\\nunintelligible\\nunintelligibly\\nunintended\\nunintentional\\nunintentionally\\nuninterested\\nuninteresting\\nuninterrupted\\nuninvited\\nunion\\nunionise\\nunionised\\nunionises\\nunionising\\nunionism\\nunionisms\\nunionist\\nunionists\\nunionization\\nunionizations\\nunionize\\nunionized\\nunionizes\\nunionizing\\nunions\\nunipod\\nunipods\\nunipolar\\nunique\\nuniquely\\nuniqueness\\nuniquer\\nuniques\\nuniquest\\nunironed\\nunisex\\nunisexes\\nunison\\nunisonal\\nunisons\\nunissued\\nunit\\nunitage\\nunitages\\nunitary\\nunite\\nunited\\nunitedly\\nuniter\\nuniters\\nunites\\nunities\\nuniting\\nunitive\\nunitize\\nunitized\\nunitizes\\nunitizing\\nunits\\nunity\\nunivalve\\nunivalves\\nuniversal\\nuniversally\\nuniverse\\nuniverses\\nuniversities\\nuniversity\\nunivocal\\nunivocals\\nunjaded\\nunjoined\\nunjoyful\\nunjudged\\nunjust\\nunjustifiable\\nunjustified\\nunjustly\\nunkempt\\nunkend\\nunkenned\\nunkennel\\nunkenneled\\nunkenneling\\nunkennelled\\nunkennelling\\nunkennels\\nunkent\\nunkept\\nunkind\\nunkinder\\nunkindest\\nunkindlier\\nunkindliest\\nunkindly\\nunkindness\\nunkindnesses\\nunkingly\\nunkissed\\nunknit\\nunknits\\nunknitted\\nunknitting\\nunknot\\nunknots\\nunknotted\\nunknotting\\nunknowing\\nunknowingly\\nunknown\\nunknowns\\nunkosher\\nunlabeled\\nunlabelled\\nunlace\\nunlaced\\nunlaces\\nunlacing\\nunlade\\nunladed\\nunladen\\nunlades\\nunlading\\nunlaid\\nunlash\\nunlashed\\nunlashes\\nunlashing\\nunlatch\\nunlatched\\nunlatches\\nunlatching\\nunlawful\\nunlawfully\\nunlay\\nunlaying\\nunlays\\nunlead\\nunleaded\\nunleading\\nunleads\\nunlearn\\nunlearned\\nunlearning\\nunlearns\\nunlearnt\\nunleased\\nunleash\\nunleashed\\nunleashes\\nunleashing\\nunleavened\\nunled\\nunless\\nunlet\\nunlethal\\nunletted\\nunlevel\\nunleveled\\nunleveling\\nunlevelled\\nunlevelling\\nunlevels\\nunlevied\\nunlicensed\\nunlicked\\nunlikable\\nunlike\\nunlikelier\\nunlikeliest\\nunlikelihood\\nunlikely\\nunlikeness\\nunlikenesses\\nunlimber\\nunlimbered\\nunlimbering\\nunlimbers\\nunlimited\\nunlined\\nunlink\\nunlinked\\nunlinking\\nunlinks\\nunlisted\\nunlit\\nunlive\\nunlived\\nunlively\\nunlives\\nunliving\\nunload\\nunloaded\\nunloader\\nunloaders\\nunloading\\nunloads\\nunlobed\\nunlock\\nunlocked\\nunlocking\\nunlocks\\nunloose\\nunloosed\\nunloosen\\nunloosened\\nunloosening\\nunloosens\\nunlooses\\nunloosing\\nunlovable\\nunloved\\nunlovelier\\nunloveliest\\nunlovely\\nunloving\\nunluckier\\nunluckiest\\nunluckily\\nunlucky\\nunmade\\nunmake\\nunmaker\\nunmakers\\nunmakes\\nunmaking\\nunman\\nunmanageable\\nunmanful\\nunmanly\\nunmanned\\nunmanning\\nunmans\\nunmapped\\nunmarked\\nunmarred\\nunmarried\\nunmask\\nunmasked\\nunmasker\\nunmaskers\\nunmasking\\nunmasks\\nunmated\\nunmatted\\nunmeant\\nunmeet\\nunmeetly\\nunmellow\\nunmelted\\nunmended\\nunmerciful\\nunmercifully\\nunmerited\\nunmet\\nunmew\\nunmewed\\nunmewing\\nunmews\\nunmilled\\nunmingle\\nunmingled\\nunmingles\\nunmingling\\nunmistakable\\nunmistakably\\nunmiter\\nunmitered\\nunmitering\\nunmiters\\nunmitre\\nunmitred\\nunmitres\\nunmitring\\nunmixed\\nunmixt\\nunmodish\\nunmold\\nunmolded\\nunmolding\\nunmolds\\nunmolested\\nunmolten\\nunmoor\\nunmoored\\nunmooring\\nunmoors\\nunmoral\\nunmotivated\\nunmoved\\nunmoving\\nunmown\\nunmuffle\\nunmuffled\\nunmuffles\\nunmuffling\\nunmuzzle\\nunmuzzled\\nunmuzzles\\nunmuzzling\\nunnail\\nunnailed\\nunnailing\\nunnails\\nunnamed\\nunnatural\\nunnaturally\\nunnaturalness\\nunnaturalnesses\\nunnavigable\\nunnecessarily\\nunnecessary\\nunneeded\\nunneighborly\\nunnerve\\nunnerved\\nunnerves\\nunnerving\\nunnoisy\\nunnojectionable\\nunnoted\\nunnoticeable\\nunnoticed\\nunobservable\\nunobservant\\nunobtainable\\nunobtrusive\\nunobtrusively\\nunoccupied\\nunofficial\\nunoiled\\nunopen\\nunopened\\nunopposed\\nunorganized\\nunoriginal\\nunornate\\nunorthodox\\nunowned\\nunpack\\nunpacked\\nunpacker\\nunpackers\\nunpacking\\nunpacks\\nunpaged\\nunpaid\\nunpaired\\nunparalleled\\nunpardonable\\nunparted\\nunpatriotic\\nunpaved\\nunpaying\\nunpeg\\nunpegged\\nunpegging\\nunpegs\\nunpen\\nunpenned\\nunpenning\\nunpens\\nunpent\\nunpeople\\nunpeopled\\nunpeoples\\nunpeopling\\nunperson\\nunpersons\\nunpick\\nunpicked\\nunpicking\\nunpicks\\nunpile\\nunpiled\\nunpiles\\nunpiling\\nunpin\\nunpinned\\nunpinning\\nunpins\\nunpitied\\nunplaced\\nunplait\\nunplaited\\nunplaiting\\nunplaits\\nunplayed\\nunpleasant\\nunpleasantly\\nunpleasantness\\nunpleasantnesses\\nunpliant\\nunplowed\\nunplug\\nunplugged\\nunplugging\\nunplugs\\nunpoetic\\nunpoised\\nunpolite\\nunpolled\\nunpopular\\nunpopularities\\nunpopularity\\nunposed\\nunposted\\nunprecedented\\nunpredictable\\nunpredictably\\nunprejudiced\\nunprepared\\nunpretentious\\nunpretty\\nunpriced\\nunprimed\\nunprincipled\\nunprinted\\nunprized\\nunprobed\\nunproductive\\nunprofessional\\nunprofitable\\nunprotected\\nunproved\\nunproven\\nunprovoked\\nunpruned\\nunpucker\\nunpuckered\\nunpuckering\\nunpuckers\\nunpunished\\nunpure\\nunpurged\\nunpuzzle\\nunpuzzled\\nunpuzzles\\nunpuzzling\\nunqualified\\nunquantifiable\\nunquenchable\\nunquestionable\\nunquestionably\\nunquestioning\\nunquiet\\nunquieter\\nunquietest\\nunquiets\\nunquote\\nunquoted\\nunquotes\\nunquoting\\nunraised\\nunraked\\nunranked\\nunrated\\nunravel\\nunraveled\\nunraveling\\nunravelled\\nunravelling\\nunravels\\nunrazed\\nunreachable\\nunread\\nunreadable\\nunreadier\\nunreadiest\\nunready\\nunreal\\nunrealistic\\nunrealities\\nunreality\\nunreally\\nunreason\\nunreasonable\\nunreasonably\\nunreasoned\\nunreasoning\\nunreasons\\nunreel\\nunreeled\\nunreeler\\nunreelers\\nunreeling\\nunreels\\nunreeve\\nunreeved\\nunreeves\\nunreeving\\nunrefined\\nunrelated\\nunrelenting\\nunrelentingly\\nunreliable\\nunremembered\\nunrent\\nunrented\\nunrepaid\\nunrepair\\nunrepairs\\nunrepentant\\nunrequited\\nunresolved\\nunresponsive\\nunrest\\nunrested\\nunrestrained\\nunrestricted\\nunrests\\nunrewarding\\nunrhymed\\nunriddle\\nunriddled\\nunriddles\\nunriddling\\nunrifled\\nunrig\\nunrigged\\nunrigging\\nunrigs\\nunrimed\\nunrinsed\\nunrip\\nunripe\\nunripely\\nunriper\\nunripest\\nunripped\\nunripping\\nunrips\\nunrisen\\nunrivaled\\nunrivalled\\nunrobe\\nunrobed\\nunrobes\\nunrobing\\nunroll\\nunrolled\\nunrolling\\nunrolls\\nunroof\\nunroofed\\nunroofing\\nunroofs\\nunroot\\nunrooted\\nunrooting\\nunroots\\nunrough\\nunround\\nunrounded\\nunrounding\\nunrounds\\nunrove\\nunroven\\nunruffled\\nunruled\\nunrulier\\nunruliest\\nunruliness\\nunrulinesses\\nunruly\\nunrushed\\nuns\\nunsaddle\\nunsaddled\\nunsaddles\\nunsaddling\\nunsafe\\nunsafely\\nunsafeties\\nunsafety\\nunsaid\\nunsalted\\nunsanitary\\nunsated\\nunsatisfactory\\nunsatisfied\\nunsatisfying\\nunsaved\\nunsavory\\nunsawed\\nunsawn\\nunsay\\nunsaying\\nunsays\\nunscaled\\nunscathed\\nunscented\\nunscheduled\\nunscientific\\nunscramble\\nunscrambled\\nunscrambles\\nunscrambling\\nunscrew\\nunscrewed\\nunscrewing\\nunscrews\\nunscrupulous\\nunscrupulously\\nunscrupulousness\\nunscrupulousnesses\\nunseal\\nunsealed\\nunsealing\\nunseals\\nunseam\\nunseamed\\nunseaming\\nunseams\\nunseared\\nunseasonable\\nunseasonably\\nunseasoned\\nunseat\\nunseated\\nunseating\\nunseats\\nunseeded\\nunseeing\\nunseemlier\\nunseemliest\\nunseemly\\nunseen\\nunseized\\nunselfish\\nunselfishly\\nunselfishness\\nunselfishnesses\\nunsent\\nunserved\\nunset\\nunsets\\nunsetting\\nunsettle\\nunsettled\\nunsettles\\nunsettling\\nunsew\\nunsewed\\nunsewing\\nunsewn\\nunsews\\nunsex\\nunsexed\\nunsexes\\nunsexing\\nunsexual\\nunshaded\\nunshaken\\nunshamed\\nunshaped\\nunshapen\\nunshared\\nunsharp\\nunshaved\\nunshaven\\nunshed\\nunshell\\nunshelled\\nunshelling\\nunshells\\nunshift\\nunshifted\\nunshifting\\nunshifts\\nunship\\nunshipped\\nunshipping\\nunships\\nunshod\\nunshorn\\nunshrunk\\nunshut\\nunsicker\\nunsifted\\nunsight\\nunsighted\\nunsighting\\nunsights\\nunsigned\\nunsilent\\nunsinful\\nunsized\\nunskilled\\nunskillful\\nunskillfully\\nunslaked\\nunsling\\nunslinging\\nunslings\\nunslung\\nunsmoked\\nunsnap\\nunsnapped\\nunsnapping\\nunsnaps\\nunsnarl\\nunsnarled\\nunsnarling\\nunsnarls\\nunsoaked\\nunsober\\nunsocial\\nunsoiled\\nunsold\\nunsolder\\nunsoldered\\nunsoldering\\nunsolders\\nunsolicited\\nunsolid\\nunsolved\\nunsoncy\\nunsonsie\\nunsonsy\\nunsophisticated\\nunsorted\\nunsought\\nunsound\\nunsounder\\nunsoundest\\nunsoundly\\nunsoundness\\nunsoundnesses\\nunsoured\\nunsowed\\nunsown\\nunspeak\\nunspeakable\\nunspeakably\\nunspeaking\\nunspeaks\\nunspecified\\nunspent\\nunsphere\\nunsphered\\nunspheres\\nunsphering\\nunspilt\\nunsplit\\nunspoiled\\nunspoilt\\nunspoke\\nunspoken\\nunsprung\\nunspun\\nunstable\\nunstabler\\nunstablest\\nunstably\\nunstack\\nunstacked\\nunstacking\\nunstacks\\nunstate\\nunstated\\nunstates\\nunstating\\nunsteadied\\nunsteadier\\nunsteadies\\nunsteadiest\\nunsteadily\\nunsteadiness\\nunsteadinesses\\nunsteady\\nunsteadying\\nunsteel\\nunsteeled\\nunsteeling\\nunsteels\\nunstep\\nunstepped\\nunstepping\\nunsteps\\nunstick\\nunsticked\\nunsticking\\nunsticks\\nunstop\\nunstopped\\nunstopping\\nunstops\\nunstrap\\nunstrapped\\nunstrapping\\nunstraps\\nunstress\\nunstresses\\nunstring\\nunstringing\\nunstrings\\nunstructured\\nunstrung\\nunstung\\nunsubstantiated\\nunsubtle\\nunsuccessful\\nunsuited\\nunsung\\nunsunk\\nunsure\\nunsurely\\nunswathe\\nunswathed\\nunswathes\\nunswathing\\nunswayed\\nunswear\\nunswearing\\nunswears\\nunswept\\nunswore\\nunsworn\\nuntack\\nuntacked\\nuntacking\\nuntacks\\nuntagged\\nuntaken\\nuntame\\nuntamed\\nuntangle\\nuntangled\\nuntangles\\nuntangling\\nuntanned\\nuntapped\\nuntasted\\nuntaught\\nuntaxed\\nunteach\\nunteaches\\nunteaching\\nuntended\\nuntested\\nuntether\\nuntethered\\nuntethering\\nuntethers\\nunthawed\\nunthink\\nunthinkable\\nunthinking\\nunthinkingly\\nunthinks\\nunthought\\nunthread\\nunthreaded\\nunthreading\\nunthreads\\nunthrone\\nunthroned\\nunthrones\\nunthroning\\nuntidied\\nuntidier\\nuntidies\\nuntidiest\\nuntidily\\nuntidy\\nuntidying\\nuntie\\nuntied\\nunties\\nuntil\\nuntilled\\nuntilted\\nuntimelier\\nuntimeliest\\nuntimely\\nuntinged\\nuntired\\nuntiring\\nuntitled\\nunto\\nuntold\\nuntoward\\nuntraced\\nuntrained\\nuntread\\nuntreading\\nuntreads\\nuntreated\\nuntried\\nuntrim\\nuntrimmed\\nuntrimming\\nuntrims\\nuntrod\\nuntrodden\\nuntrue\\nuntruer\\nuntruest\\nuntruly\\nuntruss\\nuntrussed\\nuntrusses\\nuntrussing\\nuntrustworthy\\nuntrusty\\nuntruth\\nuntruthful\\nuntruths\\nuntuck\\nuntucked\\nuntucking\\nuntucks\\nuntufted\\nuntune\\nuntuned\\nuntunes\\nuntuning\\nunturned\\nuntwine\\nuntwined\\nuntwines\\nuntwining\\nuntwist\\nuntwisted\\nuntwisting\\nuntwists\\nuntying\\nununited\\nunurged\\nunusable\\nunused\\nunusual\\nunvalued\\nunvaried\\nunvarying\\nunveil\\nunveiled\\nunveiling\\nunveils\\nunveined\\nunverified\\nunversed\\nunvexed\\nunvext\\nunviable\\nunvocal\\nunvoice\\nunvoiced\\nunvoices\\nunvoicing\\nunwalled\\nunwanted\\nunwarier\\nunwariest\\nunwarily\\nunwarmed\\nunwarned\\nunwarped\\nunwarranted\\nunwary\\nunwas\\nunwashed\\nunwasheds\\nunwasted\\nunwavering\\nunwaxed\\nunweaned\\nunweary\\nunweave\\nunweaves\\nunweaving\\nunwed\\nunwedded\\nunweeded\\nunweeping\\nunweight\\nunweighted\\nunweighting\\nunweights\\nunwelcome\\nunwelded\\nunwell\\nunwept\\nunwetted\\nunwholesome\\nunwieldier\\nunwieldiest\\nunwieldy\\nunwifely\\nunwilled\\nunwilling\\nunwillingly\\nunwillingness\\nunwillingnesses\\nunwind\\nunwinder\\nunwinders\\nunwinding\\nunwinds\\nunwisdom\\nunwisdoms\\nunwise\\nunwisely\\nunwiser\\nunwisest\\nunwish\\nunwished\\nunwishes\\nunwishing\\nunwit\\nunwits\\nunwitted\\nunwitting\\nunwittingly\\nunwon\\nunwonted\\nunwooded\\nunwooed\\nunworkable\\nunworked\\nunworn\\nunworthier\\nunworthies\\nunworthiest\\nunworthily\\nunworthiness\\nunworthinesses\\nunworthy\\nunwound\\nunwove\\nunwoven\\nunwrap\\nunwrapped\\nunwrapping\\nunwraps\\nunwritten\\nunwrung\\nunyeaned\\nunyielding\\nunyoke\\nunyoked\\nunyokes\\nunyoking\\nunzip\\nunzipped\\nunzipping\\nunzips\\nunzoned\\nup\\nupas\\nupases\\nupbear\\nupbearer\\nupbearers\\nupbearing\\nupbears\\nupbeat\\nupbeats\\nupbind\\nupbinding\\nupbinds\\nupboil\\nupboiled\\nupboiling\\nupboils\\nupbore\\nupborne\\nupbound\\nupbraid\\nupbraided\\nupbraiding\\nupbraids\\nupbringing\\nupbringings\\nupbuild\\nupbuilding\\nupbuilds\\nupbuilt\\nupby\\nupbye\\nupcast\\nupcasting\\nupcasts\\nupchuck\\nupchucked\\nupchucking\\nupchucks\\nupclimb\\nupclimbed\\nupclimbing\\nupclimbs\\nupcoil\\nupcoiled\\nupcoiling\\nupcoils\\nupcoming\\nupcurl\\nupcurled\\nupcurling\\nupcurls\\nupcurve\\nupcurved\\nupcurves\\nupcurving\\nupdart\\nupdarted\\nupdarting\\nupdarts\\nupdate\\nupdated\\nupdater\\nupdaters\\nupdates\\nupdating\\nupdive\\nupdived\\nupdives\\nupdiving\\nupdo\\nupdos\\nupdove\\nupdraft\\nupdrafts\\nupdried\\nupdries\\nupdry\\nupdrying\\nupend\\nupended\\nupending\\nupends\\nupfield\\nupfling\\nupflinging\\nupflings\\nupflow\\nupflowed\\nupflowing\\nupflows\\nupflung\\nupfold\\nupfolded\\nupfolding\\nupfolds\\nupgather\\nupgathered\\nupgathering\\nupgathers\\nupgaze\\nupgazed\\nupgazes\\nupgazing\\nupgird\\nupgirded\\nupgirding\\nupgirds\\nupgirt\\nupgoing\\nupgrade\\nupgraded\\nupgrades\\nupgrading\\nupgrew\\nupgrow\\nupgrowing\\nupgrown\\nupgrows\\nupgrowth\\nupgrowths\\nupheap\\nupheaped\\nupheaping\\nupheaps\\nupheaval\\nupheavals\\nupheave\\nupheaved\\nupheaver\\nupheavers\\nupheaves\\nupheaving\\nupheld\\nuphill\\nuphills\\nuphoard\\nuphoarded\\nuphoarding\\nuphoards\\nuphold\\nupholder\\nupholders\\nupholding\\nupholds\\nupholster\\nupholstered\\nupholsterer\\nupholsterers\\nupholsteries\\nupholstering\\nupholsters\\nupholstery\\nuphove\\nuphroe\\nuphroes\\nupkeep\\nupkeeps\\nupland\\nuplander\\nuplanders\\nuplands\\nupleap\\nupleaped\\nupleaping\\nupleaps\\nupleapt\\nuplift\\nuplifted\\nuplifter\\nuplifters\\nuplifting\\nuplifts\\nuplight\\nuplighted\\nuplighting\\nuplights\\nuplit\\nupmost\\nupo\\nupon\\nupped\\nupper\\nuppercase\\nuppercut\\nuppercuts\\nuppercutting\\nuppermost\\nuppers\\nuppile\\nuppiled\\nuppiles\\nuppiling\\nupping\\nuppings\\nuppish\\nuppishly\\nuppity\\nupprop\\nuppropped\\nuppropping\\nupprops\\nupraise\\nupraised\\nupraiser\\nupraisers\\nupraises\\nupraising\\nupreach\\nupreached\\nupreaches\\nupreaching\\nuprear\\nupreared\\nuprearing\\nuprears\\nupright\\nuprighted\\nuprighting\\nuprightness\\nuprightnesses\\nuprights\\nuprise\\nuprisen\\nupriser\\nuprisers\\nuprises\\nuprising\\nuprisings\\nupriver\\nuprivers\\nuproar\\nuproarious\\nuproariously\\nuproars\\nuproot\\nuprootal\\nuprootals\\nuprooted\\nuprooter\\nuprooters\\nuprooting\\nuproots\\nuprose\\nuprouse\\nuproused\\nuprouses\\nuprousing\\nuprush\\nuprushed\\nuprushes\\nuprushing\\nups\\nupsend\\nupsending\\nupsends\\nupsent\\nupset\\nupsets\\nupsetter\\nupsetters\\nupsetting\\nupshift\\nupshifted\\nupshifting\\nupshifts\\nupshoot\\nupshooting\\nupshoots\\nupshot\\nupshots\\nupside\\nupsidedown\\nupsides\\nupsilon\\nupsilons\\nupsoar\\nupsoared\\nupsoaring\\nupsoars\\nupsprang\\nupspring\\nupspringing\\nupsprings\\nupsprung\\nupstage\\nupstaged\\nupstages\\nupstaging\\nupstair\\nupstairs\\nupstand\\nupstanding\\nupstands\\nupstare\\nupstared\\nupstares\\nupstaring\\nupstart\\nupstarted\\nupstarting\\nupstarts\\nupstate\\nupstater\\nupstaters\\nupstates\\nupstep\\nupstepped\\nupstepping\\nupsteps\\nupstir\\nupstirred\\nupstirring\\nupstirs\\nupstood\\nupstream\\nupstroke\\nupstrokes\\nupsurge\\nupsurged\\nupsurges\\nupsurging\\nupsweep\\nupsweeping\\nupsweeps\\nupswell\\nupswelled\\nupswelling\\nupswells\\nupswept\\nupswing\\nupswinging\\nupswings\\nupswollen\\nupswung\\nuptake\\nuptakes\\nuptear\\nuptearing\\nuptears\\nupthrew\\nupthrow\\nupthrowing\\nupthrown\\nupthrows\\nupthrust\\nupthrusting\\nupthrusts\\nuptight\\nuptilt\\nuptilted\\nuptilting\\nuptilts\\nuptime\\nuptimes\\nuptore\\nuptorn\\nuptoss\\nuptossed\\nuptosses\\nuptossing\\nuptown\\nuptowner\\nuptowners\\nuptowns\\nuptrend\\nuptrends\\nupturn\\nupturned\\nupturning\\nupturns\\nupwaft\\nupwafted\\nupwafting\\nupwafts\\nupward\\nupwardly\\nupwards\\nupwell\\nupwelled\\nupwelling\\nupwells\\nupwind\\nupwinds\\nuracil\\nuracils\\nuraei\\nuraemia\\nuraemias\\nuraemic\\nuraeus\\nuraeuses\\nuralite\\nuralites\\nuralitic\\nuranic\\nuranide\\nuranides\\nuranism\\nuranisms\\nuranite\\nuranites\\nuranitic\\nuranium\\nuraniums\\nuranous\\nuranyl\\nuranylic\\nuranyls\\nurare\\nurares\\nurari\\nuraris\\nurase\\nurases\\nurate\\nurates\\nuratic\\nurban\\nurbane\\nurbanely\\nurbaner\\nurbanest\\nurbanise\\nurbanised\\nurbanises\\nurbanising\\nurbanism\\nurbanisms\\nurbanist\\nurbanists\\nurbanite\\nurbanites\\nurbanities\\nurbanity\\nurbanize\\nurbanized\\nurbanizes\\nurbanizing\\nurchin\\nurchins\\nurd\\nurds\\nurea\\nureal\\nureas\\nurease\\nureases\\nuredia\\nuredial\\nuredinia\\nuredium\\nuredo\\nuredos\\nureic\\nureide\\nureides\\nuremia\\nuremias\\nuremic\\nureter\\nureteral\\nureteric\\nureters\\nurethan\\nurethane\\nurethanes\\nurethans\\nurethra\\nurethrae\\nurethral\\nurethras\\nuretic\\nurge\\nurged\\nurgencies\\nurgency\\nurgent\\nurgently\\nurger\\nurgers\\nurges\\nurging\\nurgingly\\nuric\\nuridine\\nuridines\\nurinal\\nurinals\\nurinalysis\\nurinaries\\nurinary\\nurinate\\nurinated\\nurinates\\nurinating\\nurination\\nurinations\\nurine\\nurinemia\\nurinemias\\nurinemic\\nurines\\nurinose\\nurinous\\nurn\\nurnlike\\nurns\\nurochord\\nurochords\\nurodele\\nurodeles\\nurolagnia\\nurolagnias\\nurolith\\nuroliths\\nurologic\\nurologies\\nurology\\nuropod\\nuropodal\\nuropods\\nuroscopies\\nuroscopy\\nurostyle\\nurostyles\\nursa\\nursae\\nursiform\\nursine\\nurticant\\nurticants\\nurticate\\nurticated\\nurticates\\nurticating\\nurus\\nuruses\\nurushiol\\nurushiols\\nus\\nusability\\nusable\\nusably\\nusage\\nusages\\nusance\\nusances\\nusaunce\\nusaunces\\nuse\\nuseable\\nuseably\\nused\\nuseful\\nusefully\\nusefulness\\nuseless\\nuselessly\\nuselessness\\nuselessnesses\\nuser\\nusers\\nuses\\nusher\\nushered\\nusherette\\nusherettes\\nushering\\nushers\\nusing\\nusnea\\nusneas\\nusquabae\\nusquabaes\\nusque\\nusquebae\\nusquebaes\\nusques\\nustulate\\nusual\\nusually\\nusuals\\nusufruct\\nusufructs\\nusurer\\nusurers\\nusuries\\nusurious\\nusurp\\nusurped\\nusurper\\nusurpers\\nusurping\\nusurps\\nusury\\nut\\nuta\\nutas\\nutensil\\nutensils\\nuteri\\nuterine\\nuterus\\nuteruses\\nutile\\nutilidor\\nutilidors\\nutilise\\nutilised\\nutiliser\\nutilisers\\nutilises\\nutilising\\nutilitarian\\nutilities\\nutility\\nutilization\\nutilize\\nutilized\\nutilizer\\nutilizers\\nutilizes\\nutilizing\\nutmost\\nutmosts\\nutopia\\nutopian\\nutopians\\nutopias\\nutopism\\nutopisms\\nutopist\\nutopists\\nutricle\\nutricles\\nutriculi\\nuts\\nutter\\nutterance\\nutterances\\nuttered\\nutterer\\nutterers\\nuttering\\nutterly\\nutters\\nuvea\\nuveal\\nuveas\\nuveitic\\nuveitis\\nuveitises\\nuveous\\nuvula\\nuvulae\\nuvular\\nuvularly\\nuvulars\\nuvulas\\nuvulitis\\nuvulitises\\nuxorial\\nuxorious\\nvacancies\\nvacancy\\nvacant\\nvacantly\\nvacate\\nvacated\\nvacates\\nvacating\\nvacation\\nvacationed\\nvacationer\\nvacationers\\nvacationing\\nvacations\\nvaccina\\nvaccinal\\nvaccinas\\nvaccinate\\nvaccinated\\nvaccinates\\nvaccinating\\nvaccination\\nvaccinations\\nvaccine\\nvaccines\\nvaccinia\\nvaccinias\\nvacillate\\nvacillated\\nvacillates\\nvacillating\\nvacillation\\nvacillations\\nvacua\\nvacuities\\nvacuity\\nvacuolar\\nvacuole\\nvacuoles\\nvacuous\\nvacuously\\nvacuousness\\nvacuousnesses\\nvacuum\\nvacuumed\\nvacuuming\\nvacuums\\nvadose\\nvagabond\\nvagabonded\\nvagabonding\\nvagabonds\\nvagal\\nvagally\\nvagaries\\nvagary\\nvagi\\nvagile\\nvagilities\\nvagility\\nvagina\\nvaginae\\nvaginal\\nvaginas\\nvaginate\\nvagotomies\\nvagotomy\\nvagrancies\\nvagrancy\\nvagrant\\nvagrants\\nvagrom\\nvague\\nvaguely\\nvagueness\\nvaguenesses\\nvaguer\\nvaguest\\nvagus\\nvahine\\nvahines\\nvail\\nvailed\\nvailing\\nvails\\nvain\\nvainer\\nvainest\\nvainly\\nvainness\\nvainnesses\\nvair\\nvairs\\nvakeel\\nvakeels\\nvakil\\nvakils\\nvalance\\nvalanced\\nvalances\\nvalancing\\nvale\\nvaledictorian\\nvaledictorians\\nvaledictories\\nvaledictory\\nvalence\\nvalences\\nvalencia\\nvalencias\\nvalencies\\nvalency\\nvalentine\\nvalentines\\nvalerate\\nvalerates\\nvalerian\\nvalerians\\nvaleric\\nvales\\nvalet\\nvaleted\\nvaleting\\nvalets\\nvalgoid\\nvalgus\\nvalguses\\nvaliance\\nvaliances\\nvaliancies\\nvaliancy\\nvaliant\\nvaliantly\\nvaliants\\nvalid\\nvalidate\\nvalidated\\nvalidates\\nvalidating\\nvalidation\\nvalidations\\nvalidities\\nvalidity\\nvalidly\\nvalidness\\nvalidnesses\\nvaline\\nvalines\\nvalise\\nvalises\\nvalkyr\\nvalkyrie\\nvalkyries\\nvalkyrs\\nvallate\\nvalley\\nvalleys\\nvalonia\\nvalonias\\nvalor\\nvalorise\\nvalorised\\nvalorises\\nvalorising\\nvalorize\\nvalorized\\nvalorizes\\nvalorizing\\nvalorous\\nvalors\\nvalour\\nvalours\\nvalse\\nvalses\\nvaluable\\nvaluables\\nvaluably\\nvaluate\\nvaluated\\nvaluates\\nvaluating\\nvaluation\\nvaluations\\nvaluator\\nvaluators\\nvalue\\nvalued\\nvalueless\\nvaluer\\nvaluers\\nvalues\\nvaluing\\nvaluta\\nvalutas\\nvalval\\nvalvar\\nvalvate\\nvalve\\nvalved\\nvalveless\\nvalvelet\\nvalvelets\\nvalves\\nvalving\\nvalvula\\nvalvulae\\nvalvular\\nvalvule\\nvalvules\\nvambrace\\nvambraces\\nvamoose\\nvamoosed\\nvamooses\\nvamoosing\\nvamose\\nvamosed\\nvamoses\\nvamosing\\nvamp\\nvamped\\nvamper\\nvampers\\nvamping\\nvampire\\nvampires\\nvampiric\\nvampish\\nvamps\\nvan\\nvanadate\\nvanadates\\nvanadic\\nvanadium\\nvanadiums\\nvanadous\\nvanda\\nvandal\\nvandalic\\nvandalism\\nvandalisms\\nvandalize\\nvandalized\\nvandalizes\\nvandalizing\\nvandals\\nvandas\\nvandyke\\nvandyked\\nvandykes\\nvane\\nvaned\\nvanes\\nvang\\nvangs\\nvanguard\\nvanguards\\nvanilla\\nvanillas\\nvanillic\\nvanillin\\nvanillins\\nvanish\\nvanished\\nvanisher\\nvanishers\\nvanishes\\nvanishing\\nvanitied\\nvanities\\nvanity\\nvanman\\nvanmen\\nvanquish\\nvanquished\\nvanquishes\\nvanquishing\\nvans\\nvantage\\nvantages\\nvanward\\nvapid\\nvapidities\\nvapidity\\nvapidly\\nvapidness\\nvapidnesses\\nvapor\\nvapored\\nvaporer\\nvaporers\\nvaporing\\nvaporings\\nvaporise\\nvaporised\\nvaporises\\nvaporish\\nvaporising\\nvaporization\\nvaporizations\\nvaporize\\nvaporized\\nvaporizes\\nvaporizing\\nvaporous\\nvapors\\nvapory\\nvapour\\nvapoured\\nvapourer\\nvapourers\\nvapouring\\nvapours\\nvapoury\\nvaquero\\nvaqueros\\nvara\\nvaras\\nvaria\\nvariabilities\\nvariability\\nvariable\\nvariableness\\nvariablenesses\\nvariables\\nvariably\\nvariance\\nvariances\\nvariant\\nvariants\\nvariate\\nvariated\\nvariates\\nvariating\\nvariation\\nvariations\\nvarices\\nvaricose\\nvaried\\nvariedly\\nvariegate\\nvariegated\\nvariegates\\nvariegating\\nvariegation\\nvariegations\\nvarier\\nvariers\\nvaries\\nvarietal\\nvarieties\\nvariety\\nvariform\\nvariola\\nvariolar\\nvariolas\\nvariole\\nvarioles\\nvariorum\\nvariorums\\nvarious\\nvariously\\nvaristor\\nvaristors\\nvarix\\nvarlet\\nvarletries\\nvarletry\\nvarlets\\nvarment\\nvarments\\nvarmint\\nvarmints\\nvarna\\nvarnas\\nvarnish\\nvarnished\\nvarnishes\\nvarnishing\\nvarnishy\\nvarsities\\nvarsity\\nvarus\\nvaruses\\nvarve\\nvarved\\nvarves\\nvary\\nvarying\\nvas\\nvasa\\nvasal\\nvascula\\nvascular\\nvasculum\\nvasculums\\nvase\\nvaselike\\nvases\\nvasiform\\nvassal\\nvassalage\\nvassalages\\nvassals\\nvast\\nvaster\\nvastest\\nvastier\\nvastiest\\nvastities\\nvastity\\nvastly\\nvastness\\nvastnesses\\nvasts\\nvasty\\nvat\\nvatful\\nvatfuls\\nvatic\\nvatical\\nvaticide\\nvaticides\\nvats\\nvatted\\nvatting\\nvau\\nvaudeville\\nvaudevilles\\nvault\\nvaulted\\nvaulter\\nvaulters\\nvaultier\\nvaultiest\\nvaulting\\nvaultings\\nvaults\\nvaulty\\nvaunt\\nvaunted\\nvaunter\\nvaunters\\nvauntful\\nvauntie\\nvaunting\\nvaunts\\nvaunty\\nvaus\\nvav\\nvavasor\\nvavasors\\nvavasour\\nvavasours\\nvavassor\\nvavassors\\nvavs\\nvaw\\nvaward\\nvawards\\nvawntie\\nvaws\\nveal\\nvealed\\nvealer\\nvealers\\nvealier\\nvealiest\\nvealing\\nveals\\nvealy\\nvector\\nvectored\\nvectoring\\nvectors\\nvedalia\\nvedalias\\nvedette\\nvedettes\\nvee\\nveena\\nveenas\\nveep\\nveepee\\nveepees\\nveeps\\nveer\\nveered\\nveeries\\nveering\\nveers\\nveery\\nvees\\nveg\\nvegan\\nveganism\\nveganisms\\nvegans\\nvegetable\\nvegetables\\nvegetal\\nvegetant\\nvegetarian\\nvegetarianism\\nvegetarianisms\\nvegetarians\\nvegetate\\nvegetated\\nvegetates\\nvegetating\\nvegetation\\nvegetational\\nvegetations\\nvegete\\nvegetist\\nvegetists\\nvegetive\\nvehemence\\nvehemences\\nvehement\\nvehemently\\nvehicle\\nvehicles\\nvehicular\\nveil\\nveiled\\nveiledly\\nveiler\\nveilers\\nveiling\\nveilings\\nveillike\\nveils\\nvein\\nveinal\\nveined\\nveiner\\nveiners\\nveinier\\nveiniest\\nveining\\nveinings\\nveinless\\nveinlet\\nveinlets\\nveinlike\\nveins\\nveinule\\nveinules\\nveinulet\\nveinulets\\nveiny\\nvela\\nvelamen\\nvelamina\\nvelar\\nvelaria\\nvelarium\\nvelarize\\nvelarized\\nvelarizes\\nvelarizing\\nvelars\\nvelate\\nveld\\nvelds\\nveldt\\nveldts\\nveliger\\nveligers\\nvelites\\nvelleities\\nvelleity\\nvellum\\nvellums\\nveloce\\nvelocities\\nvelocity\\nvelour\\nvelours\\nveloute\\nveloutes\\nvelum\\nvelure\\nvelured\\nvelures\\nveluring\\nvelveret\\nvelverets\\nvelvet\\nvelveted\\nvelvets\\nvelvety\\nvena\\nvenae\\nvenal\\nvenalities\\nvenality\\nvenally\\nvenatic\\nvenation\\nvenations\\nvend\\nvendable\\nvendace\\nvendaces\\nvended\\nvendee\\nvendees\\nvender\\nvenders\\nvendetta\\nvendettas\\nvendible\\nvendibles\\nvendibly\\nvending\\nvendor\\nvendors\\nvends\\nvendue\\nvendues\\nveneer\\nveneered\\nveneerer\\nveneerers\\nveneering\\nveneers\\nvenenate\\nvenenated\\nvenenates\\nvenenating\\nvenenose\\nvenerable\\nvenerate\\nvenerated\\nvenerates\\nvenerating\\nveneration\\nvenerations\\nvenereal\\nveneries\\nvenery\\nvenetian\\nvenetians\\nvenge\\nvengeance\\nvengeances\\nvenged\\nvengeful\\nvengefully\\nvenges\\nvenging\\nvenial\\nvenially\\nvenin\\nvenine\\nvenines\\nvenins\\nvenire\\nvenires\\nvenison\\nvenisons\\nvenom\\nvenomed\\nvenomer\\nvenomers\\nvenoming\\nvenomous\\nvenoms\\nvenose\\nvenosities\\nvenosity\\nvenous\\nvenously\\nvent\\nventage\\nventages\\nventail\\nventails\\nvented\\nventer\\nventers\\nventilate\\nventilated\\nventilates\\nventilating\\nventilation\\nventilations\\nventilator\\nventilators\\nventing\\nventless\\nventral\\nventrals\\nventricle\\nventricles\\nventriloquism\\nventriloquisms\\nventriloquist\\nventriloquists\\nventriloquy\\nventriloquys\\nvents\\nventure\\nventured\\nventurer\\nventurers\\nventures\\nventuresome\\nventuresomely\\nventuresomeness\\nventuresomenesses\\nventuri\\nventuring\\nventuris\\nvenue\\nvenues\\nvenular\\nvenule\\nvenules\\nvenulose\\nvenulous\\nvera\\nveracious\\nveracities\\nveracity\\nveranda\\nverandah\\nverandahs\\nverandas\\nveratria\\nveratrias\\nveratrin\\nveratrins\\nveratrum\\nveratrums\\nverb\\nverbal\\nverbalization\\nverbalizations\\nverbalize\\nverbalized\\nverbalizes\\nverbalizing\\nverbally\\nverbals\\nverbatim\\nverbena\\nverbenas\\nverbiage\\nverbiages\\nverbid\\nverbids\\nverbified\\nverbifies\\nverbify\\nverbifying\\nverbile\\nverbiles\\nverbless\\nverbose\\nverbosities\\nverbosity\\nverboten\\nverbs\\nverdancies\\nverdancy\\nverdant\\nverderer\\nverderers\\nverderor\\nverderors\\nverdict\\nverdicts\\nverdin\\nverdins\\nverditer\\nverditers\\nverdure\\nverdured\\nverdures\\nverecund\\nverge\\nverged\\nvergence\\nvergences\\nverger\\nvergers\\nverges\\nverging\\nverglas\\nverglases\\nveridic\\nverier\\nveriest\\nverifiable\\nverification\\nverifications\\nverified\\nverifier\\nverifiers\\nverifies\\nverify\\nverifying\\nverily\\nverism\\nverismo\\nverismos\\nverisms\\nverist\\nveristic\\nverists\\nveritable\\nveritably\\nveritas\\nveritates\\nverities\\nverity\\nverjuice\\nverjuices\\nvermeil\\nvermeils\\nvermes\\nvermian\\nvermicelli\\nvermicellis\\nvermin\\nvermis\\nvermoulu\\nvermouth\\nvermouths\\nvermuth\\nvermuths\\nvernacle\\nvernacles\\nvernacular\\nvernaculars\\nvernal\\nvernally\\nvernicle\\nvernicles\\nvernier\\nverniers\\nvernix\\nvernixes\\nveronica\\nveronicas\\nverruca\\nverrucae\\nversal\\nversant\\nversants\\nversatile\\nversatilities\\nversatility\\nverse\\nversed\\nverseman\\nversemen\\nverser\\nversers\\nverses\\nverset\\nversets\\nversicle\\nversicles\\nversified\\nversifies\\nversify\\nversifying\\nversine\\nversines\\nversing\\nversion\\nversions\\nverso\\nversos\\nverst\\nverste\\nverstes\\nversts\\nversus\\nvert\\nvertebra\\nvertebrae\\nvertebral\\nvertebras\\nvertebrate\\nvertebrates\\nvertex\\nvertexes\\nvertical\\nvertically\\nverticalness\\nverticalnesses\\nverticals\\nvertices\\nverticil\\nverticils\\nvertigines\\nvertigo\\nvertigoes\\nvertigos\\nverts\\nvertu\\nvertus\\nvervain\\nvervains\\nverve\\nverves\\nvervet\\nvervets\\nvery\\nvesica\\nvesicae\\nvesical\\nvesicant\\nvesicants\\nvesicate\\nvesicated\\nvesicates\\nvesicating\\nvesicle\\nvesicles\\nvesicula\\nvesiculae\\nvesicular\\nvesigia\\nvesper\\nvesperal\\nvesperals\\nvespers\\nvespiaries\\nvespiary\\nvespid\\nvespids\\nvespine\\nvessel\\nvesseled\\nvessels\\nvest\\nvesta\\nvestal\\nvestally\\nvestals\\nvestas\\nvested\\nvestee\\nvestees\\nvestiaries\\nvestiary\\nvestibular\\nvestibule\\nvestibules\\nvestige\\nvestiges\\nvestigial\\nvestigially\\nvesting\\nvestings\\nvestless\\nvestlike\\nvestment\\nvestments\\nvestral\\nvestries\\nvestry\\nvests\\nvestural\\nvesture\\nvestured\\nvestures\\nvesturing\\nvesuvian\\nvesuvians\\nvet\\nvetch\\nvetches\\nveteran\\nveterans\\nveterinarian\\nveterinarians\\nveterinary\\nvetiver\\nvetivers\\nveto\\nvetoed\\nvetoer\\nvetoers\\nvetoes\\nvetoing\\nvets\\nvetted\\nvetting\\nvex\\nvexation\\nvexations\\nvexatious\\nvexed\\nvexedly\\nvexer\\nvexers\\nvexes\\nvexil\\nvexilla\\nvexillar\\nvexillum\\nvexils\\nvexing\\nvexingly\\nvext\\nvia\\nviabilities\\nviability\\nviable\\nviably\\nviaduct\\nviaducts\\nvial\\nvialed\\nvialing\\nvialled\\nvialling\\nvials\\nviand\\nviands\\nviatic\\nviatica\\nviatical\\nviaticum\\nviaticums\\nviator\\nviatores\\nviators\\nvibes\\nvibioid\\nvibist\\nvibists\\nvibrance\\nvibrances\\nvibrancies\\nvibrancy\\nvibrant\\nvibrants\\nvibrate\\nvibrated\\nvibrates\\nvibrating\\nvibration\\nvibrations\\nvibrato\\nvibrator\\nvibrators\\nvibratory\\nvibratos\\nvibrio\\nvibrion\\nvibrions\\nvibrios\\nvibrissa\\nvibrissae\\nviburnum\\nviburnums\\nvicar\\nvicarage\\nvicarages\\nvicarate\\nvicarates\\nvicarial\\nvicariate\\nvicariates\\nvicarious\\nvicariously\\nvicariousness\\nvicariousnesses\\nvicarly\\nvicars\\nvice\\nviced\\nviceless\\nvicenary\\nviceroy\\nviceroys\\nvices\\nvichies\\nvichy\\nvicinage\\nvicinages\\nvicinal\\nvicing\\nvicinities\\nvicinity\\nvicious\\nviciously\\nviciousness\\nviciousnesses\\nvicissitude\\nvicissitudes\\nvicomte\\nvicomtes\\nvictim\\nvictimization\\nvictimizations\\nvictimize\\nvictimized\\nvictimizer\\nvictimizers\\nvictimizes\\nvictimizing\\nvictims\\nvictor\\nvictoria\\nvictorias\\nvictories\\nvictorious\\nvictoriously\\nvictors\\nvictory\\nvictress\\nvictresses\\nvictual\\nvictualed\\nvictualing\\nvictualled\\nvictualling\\nvictuals\\nvicugna\\nvicugnas\\nvicuna\\nvicunas\\nvide\\nvideo\\nvideos\\nvideotape\\nvideotaped\\nvideotapes\\nvideotaping\\nvidette\\nvidettes\\nvidicon\\nvidicons\\nviduities\\nviduity\\nvie\\nvied\\nvier\\nviers\\nvies\\nview\\nviewable\\nviewed\\nviewer\\nviewers\\nviewier\\nviewiest\\nviewing\\nviewings\\nviewless\\nviewpoint\\nviewpoints\\nviews\\nviewy\\nvigil\\nvigilance\\nvigilances\\nvigilant\\nvigilante\\nvigilantes\\nvigilantly\\nvigils\\nvignette\\nvignetted\\nvignettes\\nvignetting\\nvigor\\nvigorish\\nvigorishes\\nvigoroso\\nvigorous\\nvigorously\\nvigorousness\\nvigorousnesses\\nvigors\\nvigour\\nvigours\\nviking\\nvikings\\nvilayet\\nvilayets\\nvile\\nvilely\\nvileness\\nvilenesses\\nviler\\nvilest\\nvilification\\nvilifications\\nvilified\\nvilifier\\nvilifiers\\nvilifies\\nvilify\\nvilifying\\nvilipend\\nvilipended\\nvilipending\\nvilipends\\nvill\\nvilla\\nvilladom\\nvilladoms\\nvillae\\nvillage\\nvillager\\nvillagers\\nvillages\\nvillain\\nvillainies\\nvillains\\nvillainy\\nvillas\\nvillatic\\nvillein\\nvilleins\\nvilli\\nvillianess\\nvillianesses\\nvillianous\\nvillianously\\nvillianousness\\nvillianousnesses\\nvillose\\nvillous\\nvills\\nvillus\\nvim\\nvimen\\nvimina\\nviminal\\nvimpa\\nvims\\nvin\\nvina\\nvinal\\nvinals\\nvinas\\nvinasse\\nvinasses\\nvinca\\nvincas\\nvincible\\nvincristine\\nvincristines\\nvincula\\nvinculum\\nvinculums\\nvindesine\\nvindicate\\nvindicated\\nvindicates\\nvindicating\\nvindication\\nvindications\\nvindicator\\nvindicators\\nvindictive\\nvindictively\\nvindictiveness\\nvindictivenesses\\nvine\\nvineal\\nvined\\nvinegar\\nvinegars\\nvinegary\\nvineries\\nvinery\\nvines\\nvineyard\\nvineyards\\nvinic\\nvinier\\nviniest\\nvinifera\\nviniferas\\nvining\\nvino\\nvinos\\nvinosities\\nvinosity\\nvinous\\nvinously\\nvins\\nvintage\\nvintager\\nvintagers\\nvintages\\nvintner\\nvintners\\nviny\\nvinyl\\nvinylic\\nvinyls\\nviol\\nviola\\nviolable\\nviolably\\nviolas\\nviolate\\nviolated\\nviolater\\nviolaters\\nviolates\\nviolating\\nviolation\\nviolations\\nviolator\\nviolators\\nviolence\\nviolences\\nviolent\\nviolently\\nviolet\\nviolets\\nviolin\\nviolinist\\nviolinists\\nviolins\\nviolist\\nviolists\\nviolone\\nviolones\\nviols\\nviomycin\\nviomycins\\nviper\\nviperine\\nviperish\\nviperous\\nvipers\\nvirago\\nviragoes\\nviragos\\nviral\\nvirally\\nvirelai\\nvirelais\\nvirelay\\nvirelays\\nviremia\\nviremias\\nviremic\\nvireo\\nvireos\\nvires\\nvirga\\nvirgas\\nvirgate\\nvirgates\\nvirgin\\nvirginal\\nvirginally\\nvirginals\\nvirgins\\nvirgule\\nvirgules\\nviricide\\nviricides\\nvirid\\nviridian\\nviridians\\nviridities\\nviridity\\nvirile\\nvirilism\\nvirilisms\\nvirilities\\nvirility\\nvirion\\nvirions\\nvirl\\nvirls\\nvirologies\\nvirology\\nviroses\\nvirosis\\nvirtu\\nvirtual\\nvirtually\\nvirtue\\nvirtues\\nvirtuosa\\nvirtuosas\\nvirtuose\\nvirtuosi\\nvirtuosities\\nvirtuosity\\nvirtuoso\\nvirtuosos\\nvirtuous\\nvirtuously\\nvirtus\\nvirucide\\nvirucides\\nvirulence\\nvirulences\\nvirulencies\\nvirulency\\nvirulent\\nvirulently\\nvirus\\nviruses\\nvis\\nvisa\\nvisaed\\nvisage\\nvisaged\\nvisages\\nvisaing\\nvisard\\nvisards\\nvisas\\nviscacha\\nviscachas\\nviscera\\nvisceral\\nviscerally\\nviscid\\nviscidities\\nviscidity\\nviscidly\\nviscoid\\nviscose\\nviscoses\\nviscount\\nviscountess\\nviscountesses\\nviscounts\\nviscous\\nviscus\\nvise\\nvised\\nviseed\\nviseing\\nviselike\\nvises\\nvisibilities\\nvisibility\\nvisible\\nvisibly\\nvising\\nvision\\nvisional\\nvisionaries\\nvisionary\\nvisioned\\nvisioning\\nvisions\\nvisit\\nvisitable\\nvisitant\\nvisitants\\nvisitation\\nvisitations\\nvisited\\nvisiter\\nvisiters\\nvisiting\\nvisitor\\nvisitors\\nvisits\\nvisive\\nvisor\\nvisored\\nvisoring\\nvisors\\nvista\\nvistaed\\nvistas\\nvisual\\nvisualization\\nvisualizations\\nvisualize\\nvisualized\\nvisualizer\\nvisualizers\\nvisualizes\\nvisualizing\\nvisually\\nvita\\nvitae\\nvital\\nvitalise\\nvitalised\\nvitalises\\nvitalising\\nvitalism\\nvitalisms\\nvitalist\\nvitalists\\nvitalities\\nvitality\\nvitalize\\nvitalized\\nvitalizes\\nvitalizing\\nvitally\\nvitals\\nvitamer\\nvitamers\\nvitamin\\nvitamine\\nvitamines\\nvitamins\\nvitellin\\nvitellins\\nvitellus\\nvitelluses\\nvitesse\\nvitesses\\nvitiable\\nvitiate\\nvitiated\\nvitiates\\nvitiating\\nvitiation\\nvitiations\\nvitiator\\nvitiators\\nvitiligo\\nvitiligos\\nvitreous\\nvitric\\nvitrification\\nvitrifications\\nvitrified\\nvitrifies\\nvitrify\\nvitrifying\\nvitrine\\nvitrines\\nvitriol\\nvitrioled\\nvitriolic\\nvitrioling\\nvitriolled\\nvitriolling\\nvitriols\\nvitta\\nvittae\\nvittate\\nvittle\\nvittled\\nvittles\\nvittling\\nvituline\\nvituperate\\nvituperated\\nvituperates\\nvituperating\\nvituperation\\nvituperations\\nvituperative\\nvituperatively\\nviva\\nvivace\\nvivacious\\nvivaciously\\nvivaciousness\\nvivaciousnesses\\nvivacities\\nvivacity\\nvivaria\\nvivaries\\nvivarium\\nvivariums\\nvivary\\nvivas\\nvive\\nviverrid\\nviverrids\\nvivers\\nvivid\\nvivider\\nvividest\\nvividly\\nvividness\\nvividnesses\\nvivific\\nvivified\\nvivifier\\nvivifiers\\nvivifies\\nvivify\\nvivifying\\nvivipara\\nvivisect\\nvivisected\\nvivisecting\\nvivisection\\nvivisections\\nvivisects\\nvixen\\nvixenish\\nvixenly\\nvixens\\nvizard\\nvizarded\\nvizards\\nvizcacha\\nvizcachas\\nvizier\\nviziers\\nvizir\\nvizirate\\nvizirates\\nvizirial\\nvizirs\\nvizor\\nvizored\\nvizoring\\nvizors\\nvizsla\\nvizslas\\nvocable\\nvocables\\nvocably\\nvocabularies\\nvocabulary\\nvocal\\nvocalic\\nvocalics\\nvocalise\\nvocalised\\nvocalises\\nvocalising\\nvocalism\\nvocalisms\\nvocalist\\nvocalists\\nvocalities\\nvocality\\nvocalize\\nvocalized\\nvocalizes\\nvocalizing\\nvocally\\nvocals\\nvocation\\nvocational\\nvocations\\nvocative\\nvocatives\\nvoces\\nvociferous\\nvociferously\\nvocoder\\nvocoders\\nvoder\\nvodka\\nvodkas\\nvodum\\nvodums\\nvodun\\nvoe\\nvoes\\nvogie\\nvogue\\nvogues\\nvoguish\\nvoice\\nvoiced\\nvoiceful\\nvoicer\\nvoicers\\nvoices\\nvoicing\\nvoid\\nvoidable\\nvoidance\\nvoidances\\nvoided\\nvoider\\nvoiders\\nvoiding\\nvoidness\\nvoidnesses\\nvoids\\nvoile\\nvoiles\\nvolant\\nvolante\\nvolar\\nvolatile\\nvolatiles\\nvolatilities\\nvolatility\\nvolatilize\\nvolatilized\\nvolatilizes\\nvolatilizing\\nvolcanic\\nvolcanics\\nvolcano\\nvolcanoes\\nvolcanos\\nvole\\nvoled\\nvoleries\\nvolery\\nvoles\\nvoling\\nvolitant\\nvolition\\nvolitional\\nvolitions\\nvolitive\\nvolley\\nvolleyball\\nvolleyballs\\nvolleyed\\nvolleyer\\nvolleyers\\nvolleying\\nvolleys\\nvolost\\nvolosts\\nvolplane\\nvolplaned\\nvolplanes\\nvolplaning\\nvolt\\nvolta\\nvoltage\\nvoltages\\nvoltaic\\nvoltaism\\nvoltaisms\\nvolte\\nvoltes\\nvolti\\nvolts\\nvolubilities\\nvolubility\\nvoluble\\nvolubly\\nvolume\\nvolumed\\nvolumes\\nvoluming\\nvoluminous\\nvoluntarily\\nvoluntary\\nvolunteer\\nvolunteered\\nvolunteering\\nvolunteers\\nvoluptuous\\nvoluptuously\\nvoluptuousness\\nvoluptuousnesses\\nvolute\\nvoluted\\nvolutes\\nvolutin\\nvolutins\\nvolution\\nvolutions\\nvolva\\nvolvas\\nvolvate\\nvolvox\\nvolvoxes\\nvolvuli\\nvolvulus\\nvolvuluses\\nvomer\\nvomerine\\nvomers\\nvomica\\nvomicae\\nvomit\\nvomited\\nvomiter\\nvomiters\\nvomiting\\nvomitive\\nvomitives\\nvomito\\nvomitories\\nvomitory\\nvomitos\\nvomitous\\nvomits\\nvomitus\\nvomituses\\nvon\\nvoodoo\\nvoodooed\\nvoodooing\\nvoodooism\\nvoodooisms\\nvoodoos\\nvoracious\\nvoraciously\\nvoraciousness\\nvoraciousnesses\\nvoracities\\nvoracity\\nvorlage\\nvorlages\\nvortex\\nvortexes\\nvortical\\nvortices\\nvotable\\nvotaress\\nvotaresses\\nvotaries\\nvotarist\\nvotarists\\nvotary\\nvote\\nvoteable\\nvoted\\nvoteless\\nvoter\\nvoters\\nvotes\\nvoting\\nvotive\\nvotively\\nvotress\\nvotresses\\nvouch\\nvouched\\nvouchee\\nvouchees\\nvoucher\\nvouchered\\nvouchering\\nvouchers\\nvouches\\nvouching\\nvouchsafe\\nvouchsafed\\nvouchsafes\\nvouchsafing\\nvoussoir\\nvoussoirs\\nvow\\nvowed\\nvowel\\nvowelize\\nvowelized\\nvowelizes\\nvowelizing\\nvowels\\nvower\\nvowers\\nvowing\\nvowless\\nvows\\nvox\\nvoyage\\nvoyaged\\nvoyager\\nvoyagers\\nvoyages\\nvoyageur\\nvoyageurs\\nvoyaging\\nvoyeur\\nvoyeurs\\nvroom\\nvroomed\\nvrooming\\nvrooms\\nvrouw\\nvrouws\\nvrow\\nvrows\\nvug\\nvugg\\nvuggs\\nvuggy\\nvugh\\nvughs\\nvugs\\nvulcanic\\nvulcanization\\nvulcanizations\\nvulcanize\\nvulcanized\\nvulcanizes\\nvulcanizing\\nvulgar\\nvulgarer\\nvulgarest\\nvulgarism\\nvulgarisms\\nvulgarities\\nvulgarity\\nvulgarize\\nvulgarized\\nvulgarizes\\nvulgarizing\\nvulgarly\\nvulgars\\nvulgate\\nvulgates\\nvulgo\\nvulgus\\nvulguses\\nvulnerabilities\\nvulnerability\\nvulnerable\\nvulnerably\\nvulpine\\nvulture\\nvultures\\nvulva\\nvulvae\\nvulval\\nvulvar\\nvulvas\\nvulvate\\nvulvitis\\nvulvitises\\nvying\\nvyingly\\nwab\\nwabble\\nwabbled\\nwabbler\\nwabblers\\nwabbles\\nwabblier\\nwabbliest\\nwabbling\\nwabbly\\nwabs\\nwack\\nwacke\\nwackes\\nwackier\\nwackiest\\nwackily\\nwacks\\nwacky\\nwad\\nwadable\\nwadded\\nwadder\\nwadders\\nwaddie\\nwaddied\\nwaddies\\nwadding\\nwaddings\\nwaddle\\nwaddled\\nwaddler\\nwaddlers\\nwaddles\\nwaddling\\nwaddly\\nwaddy\\nwaddying\\nwade\\nwadeable\\nwaded\\nwader\\nwaders\\nwades\\nwadi\\nwadies\\nwading\\nwadis\\nwadmaal\\nwadmaals\\nwadmal\\nwadmals\\nwadmel\\nwadmels\\nwadmol\\nwadmoll\\nwadmolls\\nwadmols\\nwads\\nwadset\\nwadsets\\nwadsetted\\nwadsetting\\nwady\\nwae\\nwaefu\\nwaeful\\nwaeness\\nwaenesses\\nwaes\\nwaesuck\\nwaesucks\\nwafer\\nwafered\\nwafering\\nwafers\\nwafery\\nwaff\\nwaffed\\nwaffie\\nwaffies\\nwaffing\\nwaffle\\nwaffled\\nwaffles\\nwaffling\\nwaffs\\nwaft\\nwaftage\\nwaftages\\nwafted\\nwafter\\nwafters\\nwafting\\nwafts\\nwafture\\nwaftures\\nwag\\nwage\\nwaged\\nwageless\\nwager\\nwagered\\nwagerer\\nwagerers\\nwagering\\nwagers\\nwages\\nwagged\\nwagger\\nwaggeries\\nwaggers\\nwaggery\\nwagging\\nwaggish\\nwaggle\\nwaggled\\nwaggles\\nwaggling\\nwaggly\\nwaggon\\nwaggoned\\nwaggoner\\nwaggoners\\nwaggoning\\nwaggons\\nwaging\\nwagon\\nwagonage\\nwagonages\\nwagoned\\nwagoner\\nwagoners\\nwagoning\\nwagons\\nwags\\nwagsome\\nwagtail\\nwagtails\\nwahconda\\nwahcondas\\nwahine\\nwahines\\nwahoo\\nwahoos\\nwaif\\nwaifed\\nwaifing\\nwaifs\\nwail\\nwailed\\nwailer\\nwailers\\nwailful\\nwailing\\nwails\\nwailsome\\nwain\\nwains\\nwainscot\\nwainscoted\\nwainscoting\\nwainscots\\nwainscotted\\nwainscotting\\nwair\\nwaired\\nwairing\\nwairs\\nwaist\\nwaisted\\nwaister\\nwaisters\\nwaisting\\nwaistings\\nwaistline\\nwaistlines\\nwaists\\nwait\\nwaited\\nwaiter\\nwaiters\\nwaiting\\nwaitings\\nwaitress\\nwaitresses\\nwaits\\nwaive\\nwaived\\nwaiver\\nwaivers\\nwaives\\nwaiving\\nwakanda\\nwakandas\\nwake\\nwaked\\nwakeful\\nwakefulness\\nwakefulnesses\\nwakeless\\nwaken\\nwakened\\nwakener\\nwakeners\\nwakening\\nwakenings\\nwakens\\nwaker\\nwakerife\\nwakers\\nwakes\\nwakiki\\nwakikis\\nwaking\\nwale\\nwaled\\nwaler\\nwalers\\nwales\\nwalies\\nwaling\\nwalk\\nwalkable\\nwalkaway\\nwalkaways\\nwalked\\nwalker\\nwalkers\\nwalking\\nwalkings\\nwalkout\\nwalkouts\\nwalkover\\nwalkovers\\nwalks\\nwalkup\\nwalkups\\nwalkway\\nwalkways\\nwalkyrie\\nwalkyries\\nwall\\nwalla\\nwallabies\\nwallaby\\nwallah\\nwallahs\\nwallaroo\\nwallaroos\\nwallas\\nwalled\\nwallet\\nwallets\\nwalleye\\nwalleyed\\nwalleyes\\nwallflower\\nwallflowers\\nwallie\\nwallies\\nwalling\\nwallop\\nwalloped\\nwalloper\\nwallopers\\nwalloping\\nwallops\\nwallow\\nwallowed\\nwallower\\nwallowers\\nwallowing\\nwallows\\nwallpaper\\nwallpapered\\nwallpapering\\nwallpapers\\nwalls\\nwally\\nwalnut\\nwalnuts\\nwalrus\\nwalruses\\nwaltz\\nwaltzed\\nwaltzer\\nwaltzers\\nwaltzes\\nwaltzing\\nwaly\\nwamble\\nwambled\\nwambles\\nwamblier\\nwambliest\\nwambling\\nwambly\\nwame\\nwamefou\\nwamefous\\nwameful\\nwamefuls\\nwames\\nwammus\\nwammuses\\nwampish\\nwampished\\nwampishes\\nwampishing\\nwampum\\nwampums\\nwampus\\nwampuses\\nwamus\\nwamuses\\nwan\\nwand\\nwander\\nwandered\\nwanderer\\nwanderers\\nwandering\\nwanderlust\\nwanderlusts\\nwanderoo\\nwanderoos\\nwanders\\nwandle\\nwands\\nwane\\nwaned\\nwaner\\nwanes\\nwaney\\nwangan\\nwangans\\nwangle\\nwangled\\nwangler\\nwanglers\\nwangles\\nwangling\\nwangun\\nwanguns\\nwanier\\nwaniest\\nwanigan\\nwanigans\\nwaning\\nwanion\\nwanions\\nwanly\\nwanned\\nwanner\\nwanness\\nwannesses\\nwannest\\nwannigan\\nwannigans\\nwanning\\nwans\\nwant\\nwantage\\nwantages\\nwanted\\nwanter\\nwanters\\nwanting\\nwanton\\nwantoned\\nwantoner\\nwantoners\\nwantoning\\nwantonly\\nwantonness\\nwantonnesses\\nwantons\\nwants\\nwany\\nwap\\nwapiti\\nwapitis\\nwapped\\nwapping\\nwaps\\nwar\\nwarble\\nwarbled\\nwarbler\\nwarblers\\nwarbles\\nwarbling\\nwarcraft\\nwarcrafts\\nward\\nwarded\\nwarden\\nwardenries\\nwardenry\\nwardens\\nwarder\\nwarders\\nwarding\\nwardress\\nwardresses\\nwardrobe\\nwardrobes\\nwardroom\\nwardrooms\\nwards\\nwardship\\nwardships\\nware\\nwared\\nwarehouse\\nwarehoused\\nwarehouseman\\nwarehousemen\\nwarehouser\\nwarehousers\\nwarehouses\\nwarehousing\\nwarer\\nwareroom\\nwarerooms\\nwares\\nwarfare\\nwarfares\\nwarfarin\\nwarfarins\\nwarhead\\nwarheads\\nwarier\\nwariest\\nwarily\\nwariness\\nwarinesses\\nwaring\\nwarison\\nwarisons\\nwark\\nwarked\\nwarking\\nwarks\\nwarless\\nwarlike\\nwarlock\\nwarlocks\\nwarlord\\nwarlords\\nwarm\\nwarmaker\\nwarmakers\\nwarmed\\nwarmer\\nwarmers\\nwarmest\\nwarming\\nwarmish\\nwarmly\\nwarmness\\nwarmnesses\\nwarmonger\\nwarmongers\\nwarmouth\\nwarmouths\\nwarms\\nwarmth\\nwarmths\\nwarmup\\nwarmups\\nwarn\\nwarned\\nwarner\\nwarners\\nwarning\\nwarnings\\nwarns\\nwarp\\nwarpage\\nwarpages\\nwarpath\\nwarpaths\\nwarped\\nwarper\\nwarpers\\nwarping\\nwarplane\\nwarplanes\\nwarpower\\nwarpowers\\nwarps\\nwarpwise\\nwarragal\\nwarragals\\nwarrant\\nwarranted\\nwarranties\\nwarranting\\nwarrants\\nwarranty\\nwarred\\nwarren\\nwarrener\\nwarreners\\nwarrens\\nwarrigal\\nwarrigals\\nwarring\\nwarrior\\nwarriors\\nwars\\nwarsaw\\nwarsaws\\nwarship\\nwarships\\nwarsle\\nwarsled\\nwarsler\\nwarslers\\nwarsles\\nwarsling\\nwarstle\\nwarstled\\nwarstler\\nwarstlers\\nwarstles\\nwarstling\\nwart\\nwarted\\nwarthog\\nwarthogs\\nwartier\\nwartiest\\nwartime\\nwartimes\\nwartlike\\nwarts\\nwarty\\nwarwork\\nwarworks\\nwarworn\\nwary\\nwas\\nwash\\nwashable\\nwashboard\\nwashboards\\nwashbowl\\nwashbowls\\nwashcloth\\nwashcloths\\nwashday\\nwashdays\\nwashed\\nwasher\\nwashers\\nwashes\\nwashier\\nwashiest\\nwashing\\nwashings\\nwashington\\nwashout\\nwashouts\\nwashrag\\nwashrags\\nwashroom\\nwashrooms\\nwashtub\\nwashtubs\\nwashy\\nwasp\\nwaspier\\nwaspiest\\nwaspily\\nwaspish\\nwasplike\\nwasps\\nwaspy\\nwassail\\nwassailed\\nwassailing\\nwassails\\nwast\\nwastable\\nwastage\\nwastages\\nwaste\\nwastebasket\\nwastebaskets\\nwasted\\nwasteful\\nwastefully\\nwastefulness\\nwastefulnesses\\nwasteland\\nwastelands\\nwastelot\\nwastelots\\nwaster\\nwasterie\\nwasteries\\nwasters\\nwastery\\nwastes\\nwasteway\\nwasteways\\nwasting\\nwastrel\\nwastrels\\nwastrie\\nwastries\\nwastry\\nwasts\\nwat\\nwatap\\nwatape\\nwatapes\\nwataps\\nwatch\\nwatchcries\\nwatchcry\\nwatchdog\\nwatchdogged\\nwatchdogging\\nwatchdogs\\nwatched\\nwatcher\\nwatchers\\nwatches\\nwatcheye\\nwatcheyes\\nwatchful\\nwatchfully\\nwatchfulness\\nwatchfulnesses\\nwatching\\nwatchman\\nwatchmen\\nwatchout\\nwatchouts\\nwater\\nwaterage\\nwaterages\\nwaterbed\\nwaterbeds\\nwatercolor\\nwatercolors\\nwatercourse\\nwatercourses\\nwatercress\\nwatercresses\\nwaterdog\\nwaterdogs\\nwatered\\nwaterer\\nwaterers\\nwaterfall\\nwaterfalls\\nwaterfowl\\nwaterfowls\\nwaterier\\nwateriest\\nwaterily\\nwatering\\nwaterings\\nwaterish\\nwaterlog\\nwaterlogged\\nwaterlogging\\nwaterlogs\\nwaterloo\\nwaterloos\\nwaterman\\nwatermark\\nwatermarked\\nwatermarking\\nwatermarks\\nwatermelon\\nwatermelons\\nwatermen\\nwaterpower\\nwaterpowers\\nwaterproof\\nwaterproofed\\nwaterproofing\\nwaterproofings\\nwaterproofs\\nwaters\\nwaterspout\\nwaterspouts\\nwatertight\\nwaterway\\nwaterways\\nwaterworks\\nwatery\\nwats\\nwatt\\nwattage\\nwattages\\nwattape\\nwattapes\\nwatter\\nwattest\\nwatthour\\nwatthours\\nwattle\\nwattled\\nwattles\\nwattless\\nwattling\\nwatts\\nwaucht\\nwauchted\\nwauchting\\nwauchts\\nwaugh\\nwaught\\nwaughted\\nwaughting\\nwaughts\\nwauk\\nwauked\\nwauking\\nwauks\\nwaul\\nwauled\\nwauling\\nwauls\\nwaur\\nwave\\nwaveband\\nwavebands\\nwaved\\nwaveform\\nwaveforms\\nwavelength\\nwavelengths\\nwaveless\\nwavelet\\nwavelets\\nwavelike\\nwaveoff\\nwaveoffs\\nwaver\\nwavered\\nwaverer\\nwaverers\\nwavering\\nwaveringly\\nwavers\\nwavery\\nwaves\\nwavey\\nwaveys\\nwavier\\nwavies\\nwaviest\\nwavily\\nwaviness\\nwavinesses\\nwaving\\nwavy\\nwaw\\nwawl\\nwawled\\nwawling\\nwawls\\nwaws\\nwax\\nwaxberries\\nwaxberry\\nwaxbill\\nwaxbills\\nwaxed\\nwaxen\\nwaxer\\nwaxers\\nwaxes\\nwaxier\\nwaxiest\\nwaxily\\nwaxiness\\nwaxinesses\\nwaxing\\nwaxings\\nwaxlike\\nwaxplant\\nwaxplants\\nwaxweed\\nwaxweeds\\nwaxwing\\nwaxwings\\nwaxwork\\nwaxworks\\nwaxworm\\nwaxworms\\nwaxy\\nway\\nwaybill\\nwaybills\\nwayfarer\\nwayfarers\\nwayfaring\\nwaygoing\\nwaygoings\\nwaylaid\\nwaylay\\nwaylayer\\nwaylayers\\nwaylaying\\nwaylays\\nwayless\\nways\\nwayside\\nwaysides\\nwayward\\nwayworn\\nwe\\nweak\\nweaken\\nweakened\\nweakener\\nweakeners\\nweakening\\nweakens\\nweaker\\nweakest\\nweakfish\\nweakfishes\\nweakish\\nweaklier\\nweakliest\\nweakling\\nweaklings\\nweakly\\nweakness\\nweaknesses\\nweal\\nweald\\nwealds\\nweals\\nwealth\\nwealthier\\nwealthiest\\nwealths\\nwealthy\\nwean\\nweaned\\nweaner\\nweaners\\nweaning\\nweanling\\nweanlings\\nweans\\nweapon\\nweaponed\\nweaponing\\nweaponries\\nweaponry\\nweapons\\nwear\\nwearable\\nwearables\\nwearer\\nwearers\\nwearied\\nwearier\\nwearies\\nweariest\\nweariful\\nwearily\\nweariness\\nwearinesses\\nwearing\\nwearish\\nwearisome\\nwears\\nweary\\nwearying\\nweasand\\nweasands\\nweasel\\nweaseled\\nweaseling\\nweasels\\nweason\\nweasons\\nweather\\nweathered\\nweathering\\nweatherman\\nweathermen\\nweatherproof\\nweatherproofed\\nweatherproofing\\nweatherproofs\\nweathers\\nweave\\nweaved\\nweaver\\nweavers\\nweaves\\nweaving\\nweazand\\nweazands\\nweb\\nwebbed\\nwebbier\\nwebbiest\\nwebbing\\nwebbings\\nwebby\\nweber\\nwebers\\nwebfed\\nwebfeet\\nwebfoot\\nwebless\\nweblike\\nwebs\\nwebster\\nwebsters\\nwebworm\\nwebworms\\nwecht\\nwechts\\nwed\\nwedded\\nwedder\\nwedders\\nwedding\\nweddings\\nwedel\\nwedeled\\nwedeling\\nwedeln\\nwedelns\\nwedels\\nwedge\\nwedged\\nwedges\\nwedgie\\nwedgier\\nwedgies\\nwedgiest\\nwedging\\nwedgy\\nwedlock\\nwedlocks\\nwednesday\\nweds\\nwee\\nweed\\nweeded\\nweeder\\nweeders\\nweedier\\nweediest\\nweedily\\nweeding\\nweedless\\nweedlike\\nweeds\\nweedy\\nweek\\nweekday\\nweekdays\\nweekend\\nweekended\\nweekending\\nweekends\\nweeklies\\nweeklong\\nweekly\\nweeks\\nweel\\nween\\nweened\\nweenie\\nweenier\\nweenies\\nweeniest\\nweening\\nweens\\nweensier\\nweensiest\\nweensy\\nweeny\\nweep\\nweeper\\nweepers\\nweepier\\nweepiest\\nweeping\\nweeps\\nweepy\\nweer\\nwees\\nweest\\nweet\\nweeted\\nweeting\\nweets\\nweever\\nweevers\\nweevil\\nweeviled\\nweevilly\\nweevils\\nweevily\\nweewee\\nweeweed\\nweeweeing\\nweewees\\nweft\\nwefts\\nweftwise\\nweigela\\nweigelas\\nweigelia\\nweigelias\\nweigh\\nweighed\\nweigher\\nweighers\\nweighing\\nweighman\\nweighmen\\nweighs\\nweight\\nweighted\\nweighter\\nweighters\\nweightier\\nweightiest\\nweighting\\nweightless\\nweightlessness\\nweightlessnesses\\nweights\\nweighty\\nweiner\\nweiners\\nweir\\nweird\\nweirder\\nweirdest\\nweirdie\\nweirdies\\nweirdly\\nweirdness\\nweirdnesses\\nweirdo\\nweirdoes\\nweirdos\\nweirds\\nweirdy\\nweirs\\nweka\\nwekas\\nwelch\\nwelched\\nwelcher\\nwelchers\\nwelches\\nwelching\\nwelcome\\nwelcomed\\nwelcomer\\nwelcomers\\nwelcomes\\nwelcoming\\nweld\\nweldable\\nwelded\\nwelder\\nwelders\\nwelding\\nweldless\\nweldment\\nweldments\\nweldor\\nweldors\\nwelds\\nwelfare\\nwelfares\\nwelkin\\nwelkins\\nwell\\nwelladay\\nwelladays\\nwellaway\\nwellaways\\nwellborn\\nwellcurb\\nwellcurbs\\nwelldoer\\nwelldoers\\nwelled\\nwellesley\\nwellhead\\nwellheads\\nwellhole\\nwellholes\\nwelling\\nwellness\\nwellnesses\\nwells\\nwellsite\\nwellsites\\nwellspring\\nwellsprings\\nwelsh\\nwelshed\\nwelsher\\nwelshers\\nwelshes\\nwelshing\\nwelt\\nwelted\\nwelter\\nweltered\\nweltering\\nwelters\\nwelting\\nwelts\\nwen\\nwench\\nwenched\\nwencher\\nwenchers\\nwenches\\nwenching\\nwend\\nwended\\nwendigo\\nwendigos\\nwending\\nwends\\nwennier\\nwenniest\\nwennish\\nwenny\\nwens\\nwent\\nwept\\nwere\\nweregild\\nweregilds\\nwerewolf\\nwerewolves\\nwergeld\\nwergelds\\nwergelt\\nwergelts\\nwergild\\nwergilds\\nwert\\nwerwolf\\nwerwolves\\nweskit\\nweskits\\nwessand\\nwessands\\nwest\\nwester\\nwestered\\nwestering\\nwesterlies\\nwesterly\\nwestern\\nwesterns\\nwesters\\nwesting\\nwestings\\nwestmost\\nwests\\nwestward\\nwestwards\\nwet\\nwetback\\nwetbacks\\nwether\\nwethers\\nwetland\\nwetlands\\nwetly\\nwetness\\nwetnesses\\nwetproof\\nwets\\nwettable\\nwetted\\nwetter\\nwetters\\nwettest\\nwetting\\nwettings\\nwettish\\nwha\\nwhack\\nwhacked\\nwhacker\\nwhackers\\nwhackier\\nwhackiest\\nwhacking\\nwhacks\\nwhacky\\nwhale\\nwhalebone\\nwhalebones\\nwhaled\\nwhaleman\\nwhalemen\\nwhaler\\nwhalers\\nwhales\\nwhaling\\nwhalings\\nwham\\nwhammed\\nwhammies\\nwhamming\\nwhammy\\nwhams\\nwhang\\nwhanged\\nwhangee\\nwhangees\\nwhanging\\nwhangs\\nwhap\\nwhapped\\nwhapper\\nwhappers\\nwhapping\\nwhaps\\nwharf\\nwharfage\\nwharfages\\nwharfed\\nwharfing\\nwharfs\\nwharve\\nwharves\\nwhat\\nwhatever\\nwhatnot\\nwhatnots\\nwhats\\nwhatsoever\\nwhaup\\nwhaups\\nwheal\\nwheals\\nwheat\\nwheatear\\nwheatears\\nwheaten\\nwheats\\nwhee\\nwheedle\\nwheedled\\nwheedler\\nwheedlers\\nwheedles\\nwheedling\\nwheel\\nwheelbarrow\\nwheelbarrows\\nwheelbase\\nwheelbases\\nwheelchair\\nwheelchairs\\nwheeled\\nwheeler\\nwheelers\\nwheelie\\nwheelies\\nwheeling\\nwheelings\\nwheelless\\nwheelman\\nwheelmen\\nwheels\\nwheen\\nwheens\\nwheep\\nwheeped\\nwheeping\\nwheeple\\nwheepled\\nwheeples\\nwheepling\\nwheeps\\nwhees\\nwheeze\\nwheezed\\nwheezer\\nwheezers\\nwheezes\\nwheezier\\nwheeziest\\nwheezily\\nwheezing\\nwheezy\\nwhelk\\nwhelkier\\nwhelkiest\\nwhelks\\nwhelky\\nwhelm\\nwhelmed\\nwhelming\\nwhelms\\nwhelp\\nwhelped\\nwhelping\\nwhelps\\nwhen\\nwhenas\\nwhence\\nwhenever\\nwhens\\nwhere\\nwhereabouts\\nwhereas\\nwhereases\\nwhereat\\nwhereby\\nwherefore\\nwherein\\nwhereof\\nwhereon\\nwheres\\nwhereto\\nwhereupon\\nwherever\\nwherewithal\\nwherried\\nwherries\\nwherry\\nwherrying\\nwherve\\nwherves\\nwhet\\nwhether\\nwhets\\nwhetstone\\nwhetstones\\nwhetted\\nwhetter\\nwhetters\\nwhetting\\nwhew\\nwhews\\nwhey\\nwheyey\\nwheyface\\nwheyfaces\\nwheyish\\nwheys\\nwhich\\nwhichever\\nwhicker\\nwhickered\\nwhickering\\nwhickers\\nwhid\\nwhidah\\nwhidahs\\nwhidded\\nwhidding\\nwhids\\nwhiff\\nwhiffed\\nwhiffer\\nwhiffers\\nwhiffet\\nwhiffets\\nwhiffing\\nwhiffle\\nwhiffled\\nwhiffler\\nwhifflers\\nwhiffles\\nwhiffling\\nwhiffs\\nwhile\\nwhiled\\nwhiles\\nwhiling\\nwhilom\\nwhilst\\nwhim\\nwhimbrel\\nwhimbrels\\nwhimper\\nwhimpered\\nwhimpering\\nwhimpers\\nwhims\\nwhimsey\\nwhimseys\\nwhimsical\\nwhimsicalities\\nwhimsicality\\nwhimsically\\nwhimsied\\nwhimsies\\nwhimsy\\nwhin\\nwhinchat\\nwhinchats\\nwhine\\nwhined\\nwhiner\\nwhiners\\nwhines\\nwhiney\\nwhinier\\nwhiniest\\nwhining\\nwhinnied\\nwhinnier\\nwhinnies\\nwhinniest\\nwhinny\\nwhinnying\\nwhins\\nwhiny\\nwhip\\nwhipcord\\nwhipcords\\nwhiplash\\nwhiplashes\\nwhiplike\\nwhipped\\nwhipper\\nwhippers\\nwhippersnapper\\nwhippersnappers\\nwhippet\\nwhippets\\nwhippier\\nwhippiest\\nwhipping\\nwhippings\\nwhippoorwill\\nwhippoorwills\\nwhippy\\nwhipray\\nwhiprays\\nwhips\\nwhipsaw\\nwhipsawed\\nwhipsawing\\nwhipsawn\\nwhipsaws\\nwhipt\\nwhiptail\\nwhiptails\\nwhipworm\\nwhipworms\\nwhir\\nwhirl\\nwhirled\\nwhirler\\nwhirlers\\nwhirlier\\nwhirlies\\nwhirliest\\nwhirling\\nwhirlpool\\nwhirlpools\\nwhirls\\nwhirlwind\\nwhirlwinds\\nwhirly\\nwhirr\\nwhirred\\nwhirried\\nwhirries\\nwhirring\\nwhirrs\\nwhirry\\nwhirrying\\nwhirs\\nwhish\\nwhished\\nwhishes\\nwhishing\\nwhisht\\nwhishted\\nwhishting\\nwhishts\\nwhisk\\nwhisked\\nwhisker\\nwhiskered\\nwhiskers\\nwhiskery\\nwhiskey\\nwhiskeys\\nwhiskies\\nwhisking\\nwhisks\\nwhisky\\nwhisper\\nwhispered\\nwhispering\\nwhispers\\nwhispery\\nwhist\\nwhisted\\nwhisting\\nwhistle\\nwhistled\\nwhistler\\nwhistlers\\nwhistles\\nwhistling\\nwhists\\nwhit\\nwhite\\nwhitebait\\nwhitebaits\\nwhitecap\\nwhitecaps\\nwhited\\nwhitefish\\nwhitefishes\\nwhiteflies\\nwhitefly\\nwhitely\\nwhiten\\nwhitened\\nwhitener\\nwhiteners\\nwhiteness\\nwhitenesses\\nwhitening\\nwhitens\\nwhiteout\\nwhiteouts\\nwhiter\\nwhites\\nwhitest\\nwhitetail\\nwhitetails\\nwhitewash\\nwhitewashed\\nwhitewashes\\nwhitewashing\\nwhitey\\nwhiteys\\nwhither\\nwhities\\nwhiting\\nwhitings\\nwhitish\\nwhitlow\\nwhitlows\\nwhitrack\\nwhitracks\\nwhits\\nwhitter\\nwhitters\\nwhittle\\nwhittled\\nwhittler\\nwhittlers\\nwhittles\\nwhittling\\nwhittret\\nwhittrets\\nwhity\\nwhiz\\nwhizbang\\nwhizbangs\\nwhizz\\nwhizzed\\nwhizzer\\nwhizzers\\nwhizzes\\nwhizzing\\nwho\\nwhoa\\nwhoas\\nwhodunit\\nwhodunits\\nwhoever\\nwhole\\nwholehearted\\nwholeness\\nwholenesses\\nwholes\\nwholesale\\nwholesaled\\nwholesaler\\nwholesalers\\nwholesales\\nwholesaling\\nwholesome\\nwholesomeness\\nwholesomenesses\\nwholism\\nwholisms\\nwholly\\nwhom\\nwhomever\\nwhomp\\nwhomped\\nwhomping\\nwhomps\\nwhomso\\nwhoop\\nwhooped\\nwhoopee\\nwhoopees\\nwhooper\\nwhoopers\\nwhooping\\nwhoopla\\nwhooplas\\nwhoops\\nwhoosh\\nwhooshed\\nwhooshes\\nwhooshing\\nwhoosis\\nwhoosises\\nwhop\\nwhopped\\nwhopper\\nwhoppers\\nwhopping\\nwhops\\nwhore\\nwhored\\nwhoredom\\nwhoredoms\\nwhores\\nwhoreson\\nwhoresons\\nwhoring\\nwhorish\\nwhorl\\nwhorled\\nwhorls\\nwhort\\nwhortle\\nwhortles\\nwhorts\\nwhose\\nwhosever\\nwhosis\\nwhosises\\nwhoso\\nwhosoever\\nwhump\\nwhumped\\nwhumping\\nwhumps\\nwhy\\nwhydah\\nwhydahs\\nwhys\\nwich\\nwiches\\nwick\\nwickape\\nwickapes\\nwicked\\nwickeder\\nwickedest\\nwickedly\\nwickedness\\nwickednesses\\nwicker\\nwickers\\nwickerwork\\nwickerworks\\nwicket\\nwickets\\nwicking\\nwickings\\nwickiup\\nwickiups\\nwicks\\nwickyup\\nwickyups\\nwicopies\\nwicopy\\nwidder\\nwidders\\nwiddie\\nwiddies\\nwiddle\\nwiddled\\nwiddles\\nwiddling\\nwiddy\\nwide\\nwidely\\nwiden\\nwidened\\nwidener\\nwideners\\nwideness\\nwidenesses\\nwidening\\nwidens\\nwider\\nwides\\nwidespread\\nwidest\\nwidgeon\\nwidgeons\\nwidget\\nwidgets\\nwidish\\nwidow\\nwidowed\\nwidower\\nwidowers\\nwidowhood\\nwidowhoods\\nwidowing\\nwidows\\nwidth\\nwidths\\nwidthway\\nwield\\nwielded\\nwielder\\nwielders\\nwieldier\\nwieldiest\\nwielding\\nwields\\nwieldy\\nwiener\\nwieners\\nwienie\\nwienies\\nwife\\nwifed\\nwifedom\\nwifedoms\\nwifehood\\nwifehoods\\nwifeless\\nwifelier\\nwifeliest\\nwifelike\\nwifely\\nwifes\\nwifing\\nwig\\nwigan\\nwigans\\nwigeon\\nwigeons\\nwigged\\nwiggeries\\nwiggery\\nwigging\\nwiggings\\nwiggle\\nwiggled\\nwiggler\\nwigglers\\nwiggles\\nwigglier\\nwiggliest\\nwiggling\\nwiggly\\nwight\\nwights\\nwigless\\nwiglet\\nwiglets\\nwiglike\\nwigmaker\\nwigmakers\\nwigs\\nwigwag\\nwigwagged\\nwigwagging\\nwigwags\\nwigwam\\nwigwams\\nwikiup\\nwikiups\\nwilco\\nwild\\nwildcat\\nwildcats\\nwildcatted\\nwildcatting\\nwilder\\nwildered\\nwildering\\nwilderness\\nwildernesses\\nwilders\\nwildest\\nwildfire\\nwildfires\\nwildfowl\\nwildfowls\\nwilding\\nwildings\\nwildish\\nwildlife\\nwildling\\nwildlings\\nwildly\\nwildness\\nwildnesses\\nwilds\\nwildwood\\nwildwoods\\nwile\\nwiled\\nwiles\\nwilful\\nwilfully\\nwilier\\nwiliest\\nwilily\\nwiliness\\nwilinesses\\nwiling\\nwill\\nwillable\\nwilled\\nwiller\\nwillers\\nwillet\\nwillets\\nwillful\\nwillfully\\nwillied\\nwillies\\nwilling\\nwillinger\\nwillingest\\nwillingly\\nwillingness\\nwilliwau\\nwilliwaus\\nwilliwaw\\nwilliwaws\\nwillow\\nwillowed\\nwillower\\nwillowers\\nwillowier\\nwillowiest\\nwillowing\\nwillows\\nwillowy\\nwillpower\\nwillpowers\\nwills\\nwilly\\nwillyard\\nwillyart\\nwillying\\nwillywaw\\nwillywaws\\nwilt\\nwilted\\nwilting\\nwilts\\nwily\\nwimble\\nwimbled\\nwimbles\\nwimbling\\nwimple\\nwimpled\\nwimples\\nwimpling\\nwin\\nwince\\nwinced\\nwincer\\nwincers\\nwinces\\nwincey\\nwinceys\\nwinch\\nwinched\\nwincher\\nwinchers\\nwinches\\nwinching\\nwincing\\nwind\\nwindable\\nwindage\\nwindages\\nwindbag\\nwindbags\\nwindbreak\\nwindbreaks\\nwindburn\\nwindburned\\nwindburning\\nwindburns\\nwindburnt\\nwinded\\nwinder\\nwinders\\nwindfall\\nwindfalls\\nwindflaw\\nwindflaws\\nwindgall\\nwindgalls\\nwindier\\nwindiest\\nwindigo\\nwindigos\\nwindily\\nwinding\\nwindings\\nwindlass\\nwindlassed\\nwindlasses\\nwindlassing\\nwindle\\nwindled\\nwindles\\nwindless\\nwindling\\nwindlings\\nwindmill\\nwindmilled\\nwindmilling\\nwindmills\\nwindow\\nwindowed\\nwindowing\\nwindowless\\nwindows\\nwindpipe\\nwindpipes\\nwindrow\\nwindrowed\\nwindrowing\\nwindrows\\nwinds\\nwindshield\\nwindshields\\nwindsock\\nwindsocks\\nwindup\\nwindups\\nwindward\\nwindwards\\nwindway\\nwindways\\nwindy\\nwine\\nwined\\nwineless\\nwineries\\nwinery\\nwines\\nwineshop\\nwineshops\\nwineskin\\nwineskins\\nwinesop\\nwinesops\\nwiney\\nwing\\nwingback\\nwingbacks\\nwingbow\\nwingbows\\nwingding\\nwingdings\\nwinged\\nwingedly\\nwinger\\nwingers\\nwingier\\nwingiest\\nwinging\\nwingless\\nwinglet\\nwinglets\\nwinglike\\nwingman\\nwingmen\\nwingover\\nwingovers\\nwings\\nwingspan\\nwingspans\\nwingy\\nwinier\\nwiniest\\nwining\\nwinish\\nwink\\nwinked\\nwinker\\nwinkers\\nwinking\\nwinkle\\nwinkled\\nwinkles\\nwinkling\\nwinks\\nwinnable\\nwinned\\nwinner\\nwinners\\nwinning\\nwinnings\\nwinnock\\nwinnocks\\nwinnow\\nwinnowed\\nwinnower\\nwinnowers\\nwinnowing\\nwinnows\\nwino\\nwinoes\\nwinos\\nwins\\nwinsome\\nwinsomely\\nwinsomeness\\nwinsomenesses\\nwinsomer\\nwinsomest\\nwinter\\nwintered\\nwinterer\\nwinterers\\nwintergreen\\nwintergreens\\nwinterier\\nwinteriest\\nwintering\\nwinterly\\nwinters\\nwintertime\\nwintertimes\\nwintery\\nwintle\\nwintled\\nwintles\\nwintling\\nwintrier\\nwintriest\\nwintrily\\nwintry\\nwiny\\nwinze\\nwinzes\\nwipe\\nwiped\\nwipeout\\nwipeouts\\nwiper\\nwipers\\nwipes\\nwiping\\nwirable\\nwire\\nwired\\nwiredraw\\nwiredrawing\\nwiredrawn\\nwiredraws\\nwiredrew\\nwirehair\\nwirehairs\\nwireless\\nwirelessed\\nwirelesses\\nwirelessing\\nwirelike\\nwireman\\nwiremen\\nwirer\\nwirers\\nwires\\nwiretap\\nwiretapped\\nwiretapper\\nwiretappers\\nwiretapping\\nwiretaps\\nwireway\\nwireways\\nwirework\\nwireworks\\nwireworm\\nwireworms\\nwirier\\nwiriest\\nwirily\\nwiriness\\nwirinesses\\nwiring\\nwirings\\nwirra\\nwiry\\nwis\\nwisdom\\nwisdoms\\nwise\\nwiseacre\\nwiseacres\\nwisecrack\\nwisecracked\\nwisecracking\\nwisecracks\\nwised\\nwiselier\\nwiseliest\\nwisely\\nwiseness\\nwisenesses\\nwisent\\nwisents\\nwiser\\nwises\\nwisest\\nwish\\nwisha\\nwishbone\\nwishbones\\nwished\\nwisher\\nwishers\\nwishes\\nwishful\\nwishing\\nwishless\\nwising\\nwisp\\nwisped\\nwispier\\nwispiest\\nwispily\\nwisping\\nwispish\\nwisplike\\nwisps\\nwispy\\nwiss\\nwissed\\nwisses\\nwissing\\nwist\\nwistaria\\nwistarias\\nwisted\\nwisteria\\nwisterias\\nwistful\\nwistfully\\nwistfulness\\nwistfulnesses\\nwisting\\nwists\\nwit\\nwitan\\nwitch\\nwitchcraft\\nwitchcrafts\\nwitched\\nwitcheries\\nwitchery\\nwitches\\nwitchier\\nwitchiest\\nwitching\\nwitchings\\nwitchy\\nwite\\nwited\\nwiten\\nwites\\nwith\\nwithal\\nwithdraw\\nwithdrawal\\nwithdrawals\\nwithdrawing\\nwithdrawn\\nwithdraws\\nwithdrew\\nwithe\\nwithed\\nwither\\nwithered\\nwitherer\\nwitherers\\nwithering\\nwithers\\nwithes\\nwithheld\\nwithhold\\nwithholding\\nwithholds\\nwithier\\nwithies\\nwithiest\\nwithin\\nwithing\\nwithins\\nwithout\\nwithouts\\nwithstand\\nwithstanding\\nwithstands\\nwithstood\\nwithy\\nwiting\\nwitless\\nwitlessly\\nwitlessness\\nwitlessnesses\\nwitling\\nwitlings\\nwitloof\\nwitloofs\\nwitness\\nwitnessed\\nwitnesses\\nwitnessing\\nwitney\\nwitneys\\nwits\\nwitted\\nwitticism\\nwitticisms\\nwittier\\nwittiest\\nwittily\\nwittiness\\nwittinesses\\nwitting\\nwittingly\\nwittings\\nwittol\\nwittols\\nwitty\\nwive\\nwived\\nwiver\\nwivern\\nwiverns\\nwivers\\nwives\\nwiving\\nwiz\\nwizard\\nwizardly\\nwizardries\\nwizardry\\nwizards\\nwizen\\nwizened\\nwizening\\nwizens\\nwizes\\nwizzen\\nwizzens\\nwo\\nwoad\\nwoaded\\nwoads\\nwoadwax\\nwoadwaxes\\nwoald\\nwoalds\\nwobble\\nwobbled\\nwobbler\\nwobblers\\nwobbles\\nwobblier\\nwobblies\\nwobbliest\\nwobbling\\nwobbly\\nwobegone\\nwoe\\nwoebegone\\nwoeful\\nwoefuller\\nwoefullest\\nwoefully\\nwoeness\\nwoenesses\\nwoes\\nwoesome\\nwoful\\nwofully\\nwok\\nwoke\\nwoken\\nwoks\\nwold\\nwolds\\nwolf\\nwolfed\\nwolfer\\nwolfers\\nwolffish\\nwolffishes\\nwolfing\\nwolfish\\nwolflike\\nwolfram\\nwolframs\\nwolfs\\nwolver\\nwolverine\\nwolverines\\nwolvers\\nwolves\\nwoman\\nwomaned\\nwomanhood\\nwomanhoods\\nwomaning\\nwomanise\\nwomanised\\nwomanises\\nwomanish\\nwomanising\\nwomanize\\nwomanized\\nwomanizes\\nwomanizing\\nwomankind\\nwomankinds\\nwomanlier\\nwomanliest\\nwomanliness\\nwomanlinesses\\nwomanly\\nwomans\\nwomb\\nwombat\\nwombats\\nwombed\\nwombier\\nwombiest\\nwombs\\nwomby\\nwomen\\nwomera\\nwomeras\\nwommera\\nwommeras\\nwomps\\nwon\\nwonder\\nwondered\\nwonderer\\nwonderers\\nwonderful\\nwonderfully\\nwonderfulness\\nwonderfulnesses\\nwondering\\nwonderland\\nwonderlands\\nwonderment\\nwonderments\\nwonders\\nwonderwoman\\nwondrous\\nwondrously\\nwondrousness\\nwondrousnesses\\nwonkier\\nwonkiest\\nwonky\\nwonned\\nwonner\\nwonners\\nwonning\\nwons\\nwont\\nwonted\\nwontedly\\nwonting\\nwonton\\nwontons\\nwonts\\nwoo\\nwood\\nwoodbin\\nwoodbind\\nwoodbinds\\nwoodbine\\nwoodbines\\nwoodbins\\nwoodbox\\nwoodboxes\\nwoodchat\\nwoodchats\\nwoodchopper\\nwoodchoppers\\nwoodchuck\\nwoodchucks\\nwoodcock\\nwoodcocks\\nwoodcraft\\nwoodcrafts\\nwoodcut\\nwoodcuts\\nwooded\\nwooden\\nwoodener\\nwoodenest\\nwoodenly\\nwoodenness\\nwoodennesses\\nwoodhen\\nwoodhens\\nwoodier\\nwoodiest\\nwoodiness\\nwoodinesses\\nwooding\\nwoodland\\nwoodlands\\nwoodlark\\nwoodlarks\\nwoodless\\nwoodlore\\nwoodlores\\nwoodlot\\nwoodlots\\nwoodman\\nwoodmen\\nwoodnote\\nwoodnotes\\nwoodpecker\\nwoodpeckers\\nwoodpile\\nwoodpiles\\nwoodruff\\nwoodruffs\\nwoods\\nwoodshed\\nwoodshedded\\nwoodshedding\\nwoodsheds\\nwoodsia\\nwoodsias\\nwoodsier\\nwoodsiest\\nwoodsman\\nwoodsmen\\nwoodsy\\nwoodwax\\nwoodwaxes\\nwoodwind\\nwoodwinds\\nwoodwork\\nwoodworks\\nwoodworm\\nwoodworms\\nwoody\\nwooed\\nwooer\\nwooers\\nwoof\\nwoofed\\nwoofer\\nwoofers\\nwoofing\\nwoofs\\nwooing\\nwooingly\\nwool\\nwooled\\nwoolen\\nwoolens\\nwooler\\nwoolers\\nwoolfell\\nwoolfells\\nwoolgathering\\nwoolgatherings\\nwoolie\\nwoolier\\nwoolies\\nwooliest\\nwoollen\\nwoollens\\nwoollier\\nwoollies\\nwoolliest\\nwoollike\\nwoolly\\nwoolman\\nwoolmen\\nwoolpack\\nwoolpacks\\nwools\\nwoolsack\\nwoolsacks\\nwoolshed\\nwoolsheds\\nwoolskin\\nwoolskins\\nwooly\\nwoomera\\nwoomeras\\nwoops\\nwoorali\\nwooralis\\nwoorari\\nwooraris\\nwoos\\nwoosh\\nwooshed\\nwooshes\\nwooshing\\nwoozier\\nwooziest\\nwoozily\\nwooziness\\nwoozinesses\\nwoozy\\nwop\\nwops\\nworcester\\nword\\nwordage\\nwordages\\nwordbook\\nwordbooks\\nworded\\nwordier\\nwordiest\\nwordily\\nwordiness\\nwordinesses\\nwording\\nwordings\\nwordless\\nwordplay\\nwordplays\\nwords\\nwordy\\nwore\\nwork\\nworkability\\nworkable\\nworkableness\\nworkablenesses\\nworkaday\\nworkbag\\nworkbags\\nworkbasket\\nworkbaskets\\nworkbench\\nworkbenches\\nworkboat\\nworkboats\\nworkbook\\nworkbooks\\nworkbox\\nworkboxes\\nworkday\\nworkdays\\nworked\\nworker\\nworkers\\nworkfolk\\nworkhorse\\nworkhorses\\nworkhouse\\nworkhouses\\nworking\\nworkingman\\nworkingmen\\nworkings\\nworkless\\nworkload\\nworkloads\\nworkman\\nworkmanlike\\nworkmanship\\nworkmanships\\nworkmen\\nworkout\\nworkouts\\nworkroom\\nworkrooms\\nworks\\nworksheet\\nworksheets\\nworkshop\\nworkshops\\nworkup\\nworkups\\nworkweek\\nworkweeks\\nworld\\nworldlier\\nworldliest\\nworldliness\\nworldlinesses\\nworldly\\nworlds\\nworldwide\\nworm\\nwormed\\nwormer\\nwormers\\nwormhole\\nwormholes\\nwormier\\nwormiest\\nwormil\\nwormils\\nworming\\nwormish\\nwormlike\\nwormroot\\nwormroots\\nworms\\nwormseed\\nwormseeds\\nwormwood\\nwormwoods\\nwormy\\nworn\\nwornness\\nwornnesses\\nworried\\nworrier\\nworriers\\nworries\\nworrisome\\nworrit\\nworrited\\nworriting\\nworrits\\nworry\\nworrying\\nworse\\nworsen\\nworsened\\nworsening\\nworsens\\nworser\\nworses\\nworset\\nworsets\\nworship\\nworshiped\\nworshiper\\nworshipers\\nworshiping\\nworshipped\\nworshipper\\nworshippers\\nworshipping\\nworships\\nworst\\nworsted\\nworsteds\\nworsting\\nworsts\\nwort\\nworth\\nworthed\\nworthful\\nworthier\\nworthies\\nworthiest\\nworthily\\nworthiness\\nworthinesses\\nworthing\\nworthless\\nworthlessness\\nworthlessnesses\\nworths\\nworthwhile\\nworthy\\nworts\\nwos\\nwost\\nwostteth\\nwot\\nwots\\nwotted\\nwotteth\\nwotting\\nwould\\nwouldest\\nwouldst\\nwound\\nwounded\\nwounding\\nwounds\\nwove\\nwoven\\nwow\\nwowed\\nwowing\\nwows\\nwowser\\nwowsers\\nwrack\\nwracked\\nwrackful\\nwracking\\nwracks\\nwraith\\nwraiths\\nwrang\\nwrangle\\nwrangled\\nwrangler\\nwranglers\\nwrangles\\nwrangling\\nwrangs\\nwrap\\nwrapped\\nwrapper\\nwrappers\\nwrapping\\nwrappings\\nwraps\\nwrapt\\nwrasse\\nwrasses\\nwrastle\\nwrastled\\nwrastles\\nwrastling\\nwrath\\nwrathed\\nwrathful\\nwrathier\\nwrathiest\\nwrathily\\nwrathing\\nwraths\\nwrathy\\nwreak\\nwreaked\\nwreaker\\nwreakers\\nwreaking\\nwreaks\\nwreath\\nwreathe\\nwreathed\\nwreathen\\nwreathes\\nwreathing\\nwreaths\\nwreathy\\nwreck\\nwreckage\\nwreckages\\nwrecked\\nwrecker\\nwreckers\\nwreckful\\nwrecking\\nwreckings\\nwrecks\\nwren\\nwrench\\nwrenched\\nwrenches\\nwrenching\\nwrens\\nwrest\\nwrested\\nwrester\\nwresters\\nwresting\\nwrestle\\nwrestled\\nwrestler\\nwrestlers\\nwrestles\\nwrestling\\nwrests\\nwretch\\nwretched\\nwretcheder\\nwretchedest\\nwretchedness\\nwretchednesses\\nwretches\\nwried\\nwrier\\nwries\\nwriest\\nwriggle\\nwriggled\\nwriggler\\nwrigglers\\nwriggles\\nwrigglier\\nwriggliest\\nwriggling\\nwriggly\\nwright\\nwrights\\nwring\\nwringed\\nwringer\\nwringers\\nwringing\\nwrings\\nwrinkle\\nwrinkled\\nwrinkles\\nwrinklier\\nwrinkliest\\nwrinkling\\nwrinkly\\nwrist\\nwristier\\nwristiest\\nwristlet\\nwristlets\\nwrists\\nwristy\\nwrit\\nwritable\\nwrite\\nwriter\\nwriters\\nwrites\\nwrithe\\nwrithed\\nwrithen\\nwrither\\nwrithers\\nwrithes\\nwrithing\\nwriting\\nwritings\\nwrits\\nwritten\\nwrong\\nwrongdoer\\nwrongdoers\\nwrongdoing\\nwrongdoings\\nwronged\\nwronger\\nwrongers\\nwrongest\\nwrongful\\nwrongfully\\nwrongfulness\\nwrongfulnesses\\nwrongheaded\\nwrongheadedly\\nwrongheadedness\\nwrongheadednesses\\nwronging\\nwrongly\\nwrongs\\nwrote\\nwroth\\nwrothful\\nwrought\\nwrung\\nwry\\nwryer\\nwryest\\nwrying\\nwryly\\nwryneck\\nwrynecks\\nwryness\\nwrynesses\\nwud\\nwurst\\nwursts\\nwurzel\\nwurzels\\nwych\\nwyches\\nwye\\nwyes\\nwyle\\nwyled\\nwyles\\nwyling\\nwynd\\nwynds\\nwynn\\nwynns\\nwyte\\nwyted\\nwytes\\nwyting\\nwyvern\\nwyverns\\nxanthate\\nxanthates\\nxanthein\\nxantheins\\nxanthene\\nxanthenes\\nxanthic\\nxanthin\\nxanthine\\nxanthines\\nxanthins\\nxanthoma\\nxanthomas\\nxanthomata\\nxanthone\\nxanthones\\nxanthous\\nxebec\\nxebecs\\nxenia\\nxenial\\nxenias\\nxenic\\nxenogamies\\nxenogamy\\nxenogenies\\nxenogeny\\nxenolith\\nxenoliths\\nxenon\\nxenons\\nxenophobe\\nxenophobes\\nxenophobia\\nxerarch\\nxeric\\nxerosere\\nxeroseres\\nxeroses\\nxerosis\\nxerotic\\nxerus\\nxeruses\\nxi\\nxiphoid\\nxiphoids\\nxis\\nxu\\nxylan\\nxylans\\nxylem\\nxylems\\nxylene\\nxylenes\\nxylic\\nxylidin\\nxylidine\\nxylidines\\nxylidins\\nxylocarp\\nxylocarps\\nxyloid\\nxylol\\nxylols\\nxylophone\\nxylophones\\nxylophonist\\nxylophonists\\nxylose\\nxyloses\\nxylotomies\\nxylotomy\\nxylyl\\nxylyls\\nxyst\\nxyster\\nxysters\\nxysti\\nxystoi\\nxystos\\nxysts\\nxystus\\nya\\nyabber\\nyabbered\\nyabbering\\nyabbers\\nyacht\\nyachted\\nyachter\\nyachters\\nyachting\\nyachtings\\nyachtman\\nyachtmen\\nyachts\\nyack\\nyacked\\nyacking\\nyacks\\nyaff\\nyaffed\\nyaffing\\nyaffs\\nyager\\nyagers\\nyagi\\nyagis\\nyah\\nyahoo\\nyahooism\\nyahooisms\\nyahoos\\nyaird\\nyairds\\nyak\\nyakked\\nyakking\\nyaks\\nyald\\nyam\\nyamen\\nyamens\\nyammer\\nyammered\\nyammerer\\nyammerers\\nyammering\\nyammers\\nyams\\nyamun\\nyamuns\\nyang\\nyangs\\nyank\\nyanked\\nyanking\\nyanks\\nyanqui\\nyanquis\\nyap\\nyapock\\nyapocks\\nyapok\\nyapoks\\nyapon\\nyapons\\nyapped\\nyapper\\nyappers\\nyapping\\nyappy\\nyaps\\nyar\\nyard\\nyardage\\nyardages\\nyardarm\\nyardarms\\nyardbird\\nyardbirds\\nyarded\\nyarding\\nyardman\\nyardmen\\nyards\\nyardstick\\nyardsticks\\nyardwand\\nyardwands\\nyare\\nyarely\\nyarer\\nyarest\\nyarmelke\\nyarmelkes\\nyarmulke\\nyarmulkes\\nyarn\\nyarned\\nyarning\\nyarns\\nyarrow\\nyarrows\\nyashmac\\nyashmacs\\nyashmak\\nyashmaks\\nyasmak\\nyasmaks\\nyatagan\\nyatagans\\nyataghan\\nyataghans\\nyaud\\nyauds\\nyauld\\nyaup\\nyauped\\nyauper\\nyaupers\\nyauping\\nyaupon\\nyaupons\\nyaups\\nyaw\\nyawed\\nyawing\\nyawl\\nyawled\\nyawling\\nyawls\\nyawmeter\\nyawmeters\\nyawn\\nyawned\\nyawner\\nyawners\\nyawning\\nyawns\\nyawp\\nyawped\\nyawper\\nyawpers\\nyawping\\nyawpings\\nyawps\\nyaws\\nyay\\nycleped\\nyclept\\nye\\nyea\\nyeah\\nyealing\\nyealings\\nyean\\nyeaned\\nyeaning\\nyeanling\\nyeanlings\\nyeans\\nyear\\nyearbook\\nyearbooks\\nyearlies\\nyearling\\nyearlings\\nyearlong\\nyearly\\nyearn\\nyearned\\nyearner\\nyearners\\nyearning\\nyearnings\\nyearns\\nyears\\nyeas\\nyeast\\nyeasted\\nyeastier\\nyeastiest\\nyeastily\\nyeasting\\nyeasts\\nyeasty\\nyeelin\\nyeelins\\nyegg\\nyeggman\\nyeggmen\\nyeggs\\nyeh\\nyeld\\nyelk\\nyelks\\nyell\\nyelled\\nyeller\\nyellers\\nyelling\\nyellow\\nyellowed\\nyellower\\nyellowest\\nyellowing\\nyellowly\\nyellows\\nyellowy\\nyells\\nyelp\\nyelped\\nyelper\\nyelpers\\nyelping\\nyelps\\nyen\\nyenned\\nyenning\\nyens\\nyenta\\nyentas\\nyeoman\\nyeomanly\\nyeomanries\\nyeomanry\\nyeomen\\nyep\\nyerba\\nyerbas\\nyerk\\nyerked\\nyerking\\nyerks\\nyes\\nyeses\\nyeshiva\\nyeshivah\\nyeshivahs\\nyeshivas\\nyeshivoth\\nyessed\\nyesses\\nyessing\\nyester\\nyesterday\\nyesterdays\\nyestern\\nyestreen\\nyestreens\\nyet\\nyeti\\nyetis\\nyett\\nyetts\\nyeuk\\nyeuked\\nyeuking\\nyeuks\\nyeuky\\nyew\\nyews\\nyid\\nyids\\nyield\\nyielded\\nyielder\\nyielders\\nyielding\\nyields\\nyill\\nyills\\nyin\\nyince\\nyins\\nyip\\nyipe\\nyipes\\nyipped\\nyippee\\nyippie\\nyippies\\nyipping\\nyips\\nyird\\nyirds\\nyirr\\nyirred\\nyirring\\nyirrs\\nyirth\\nyirths\\nyod\\nyodel\\nyodeled\\nyodeler\\nyodelers\\nyodeling\\nyodelled\\nyodeller\\nyodellers\\nyodelling\\nyodels\\nyodh\\nyodhs\\nyodle\\nyodled\\nyodler\\nyodlers\\nyodles\\nyodling\\nyods\\nyoga\\nyogas\\nyogee\\nyogees\\nyogh\\nyoghourt\\nyoghourts\\nyoghs\\nyoghurt\\nyoghurts\\nyogi\\nyogic\\nyogin\\nyogini\\nyoginis\\nyogins\\nyogis\\nyogurt\\nyogurts\\nyoicks\\nyoke\\nyoked\\nyokel\\nyokeless\\nyokelish\\nyokels\\nyokemate\\nyokemates\\nyokes\\nyoking\\nyolk\\nyolked\\nyolkier\\nyolkiest\\nyolks\\nyolky\\nyom\\nyomim\\nyon\\nyond\\nyonder\\nyoni\\nyonis\\nyonker\\nyonkers\\nyore\\nyores\\nyou\\nyoung\\nyounger\\nyoungers\\nyoungest\\nyoungish\\nyoungs\\nyoungster\\nyoungsters\\nyounker\\nyounkers\\nyoupon\\nyoupons\\nyour\\nyourn\\nyours\\nyourself\\nyourselves\\nyouse\\nyouth\\nyouthen\\nyouthened\\nyouthening\\nyouthens\\nyouthful\\nyouthfully\\nyouthfulness\\nyouthfulnesses\\nyouths\\nyow\\nyowe\\nyowed\\nyowes\\nyowie\\nyowies\\nyowing\\nyowl\\nyowled\\nyowler\\nyowlers\\nyowling\\nyowls\\nyows\\nyperite\\nyperites\\nytterbia\\nytterbias\\nytterbic\\nyttria\\nyttrias\\nyttric\\nyttrium\\nyttriums\\nyuan\\nyuans\\nyucca\\nyuccas\\nyuga\\nyugas\\nyuk\\nyukked\\nyukking\\nyuks\\nyulan\\nyulans\\nyule\\nyules\\nyuletide\\nyuletides\\nyummier\\nyummies\\nyummiest\\nyummy\\nyup\\nyupon\\nyupons\\nyurt\\nyurta\\nyurts\\nywis\\nzabaione\\nzabaiones\\nzabajone\\nzabajones\\nzacaton\\nzacatons\\nzaddik\\nzaddikim\\nzaffar\\nzaffars\\nzaffer\\nzaffers\\nzaffir\\nzaffirs\\nzaffre\\nzaffres\\nzaftig\\nzag\\nzagged\\nzagging\\nzags\\nzaibatsu\\nzaire\\nzaires\\nzamarra\\nzamarras\\nzamarro\\nzamarros\\nzamia\\nzamias\\nzamindar\\nzamindars\\nzanana\\nzananas\\nzander\\nzanders\\nzanier\\nzanies\\nzaniest\\nzanily\\nzaniness\\nzaninesses\\nzany\\nzanyish\\nzanza\\nzanzas\\nzap\\nzapateo\\nzapateos\\nzapped\\nzapping\\nzaps\\nzaptiah\\nzaptiahs\\nzaptieh\\nzaptiehs\\nzaratite\\nzaratites\\nzareba\\nzarebas\\nzareeba\\nzareebas\\nzarf\\nzarfs\\nzariba\\nzaribas\\nzarzuela\\nzarzuelas\\nzastruga\\nzastrugi\\nzax\\nzaxes\\nzayin\\nzayins\\nzeal\\nzealot\\nzealotries\\nzealotry\\nzealots\\nzealous\\nzealously\\nzealousness\\nzealousnesses\\nzeals\\nzeatin\\nzeatins\\nzebec\\nzebeck\\nzebecks\\nzebecs\\nzebra\\nzebraic\\nzebras\\nzebrass\\nzebrasses\\nzebrine\\nzebroid\\nzebu\\nzebus\\nzecchin\\nzecchini\\nzecchino\\nzecchinos\\nzecchins\\nzechin\\nzechins\\nzed\\nzedoaries\\nzedoary\\nzeds\\nzee\\nzees\\nzein\\nzeins\\nzeitgeist\\nzeitgeists\\nzelkova\\nzelkovas\\nzemindar\\nzemindars\\nzemstvo\\nzemstvos\\nzenana\\nzenanas\\nzenith\\nzenithal\\nzeniths\\nzeolite\\nzeolites\\nzeolitic\\nzephyr\\nzephyrs\\nzeppelin\\nzeppelins\\nzero\\nzeroed\\nzeroes\\nzeroing\\nzeros\\nzest\\nzested\\nzestful\\nzestfully\\nzestfulness\\nzestfulnesses\\nzestier\\nzestiest\\nzesting\\nzests\\nzesty\\nzeta\\nzetas\\nzeugma\\nzeugmas\\nzibeline\\nzibelines\\nzibet\\nzibeth\\nzibeths\\nzibets\\nzig\\nzigged\\nzigging\\nziggurat\\nziggurats\\nzigs\\nzigzag\\nzigzagged\\nzigzagging\\nzigzags\\nzikkurat\\nzikkurats\\nzikurat\\nzikurats\\nzilch\\nzilches\\nzillah\\nzillahs\\nzillion\\nzillions\\nzinc\\nzincate\\nzincates\\nzinced\\nzincic\\nzincified\\nzincifies\\nzincify\\nzincifying\\nzincing\\nzincite\\nzincites\\nzincked\\nzincking\\nzincky\\nzincoid\\nzincous\\nzincs\\nzincy\\nzing\\nzingani\\nzingano\\nzingara\\nzingare\\nzingari\\nzingaro\\nzinged\\nzingier\\nzingiest\\nzinging\\nzings\\nzingy\\nzinkified\\nzinkifies\\nzinkify\\nzinkifying\\nzinky\\nzinnia\\nzinnias\\nzip\\nzipped\\nzipper\\nzippered\\nzippering\\nzippers\\nzippier\\nzippiest\\nzipping\\nzippy\\nzips\\nziram\\nzirams\\nzircon\\nzirconia\\nzirconias\\nzirconic\\nzirconium\\nzirconiums\\nzircons\\nzither\\nzithern\\nzitherns\\nzithers\\nziti\\nzitis\\nzizith\\nzizzle\\nzizzled\\nzizzles\\nzizzling\\nzloty\\nzlotys\\nzoa\\nzoaria\\nzoarial\\nzoarium\\nzodiac\\nzodiacal\\nzodiacs\\nzoea\\nzoeae\\nzoeal\\nzoeas\\nzoftig\\nzoic\\nzoisite\\nzoisites\\nzombi\\nzombie\\nzombies\\nzombiism\\nzombiisms\\nzombis\\nzonal\\nzonally\\nzonary\\nzonate\\nzonated\\nzonation\\nzonations\\nzone\\nzoned\\nzoneless\\nzoner\\nzoners\\nzones\\nzonetime\\nzonetimes\\nzoning\\nzonked\\nzonula\\nzonulae\\nzonular\\nzonulas\\nzonule\\nzonules\\nzoo\\nzoochore\\nzoochores\\nzoogenic\\nzooglea\\nzoogleae\\nzoogleal\\nzoogleas\\nzoogloea\\nzoogloeae\\nzoogloeas\\nzooid\\nzooidal\\nzooids\\nzooks\\nzoolater\\nzoolaters\\nzoolatries\\nzoolatry\\nzoologic\\nzoological\\nzoologies\\nzoologist\\nzoologists\\nzoology\\nzoom\\nzoomania\\nzoomanias\\nzoomed\\nzoometries\\nzoometry\\nzooming\\nzoomorph\\nzoomorphs\\nzooms\\nzoon\\nzoonal\\nzoonoses\\nzoonosis\\nzoonotic\\nzoons\\nzoophile\\nzoophiles\\nzoophyte\\nzoophytes\\nzoos\\nzoosperm\\nzoosperms\\nzoospore\\nzoospores\\nzootomic\\nzootomies\\nzootomy\\nzori\\nzoril\\nzorilla\\nzorillas\\nzorille\\nzorilles\\nzorillo\\nzorillos\\nzorils\\nzoster\\nzosters\\nzouave\\nzouaves\\nzounds\\nzowie\\nzoysia\\nzoysias\\nzucchini\\nzucchinis\\nzwieback\\nzwiebacks\\nzygoma\\nzygomas\\nzygomata\\nzygose\\nzygoses\\nzygosis\\nzygosities\\nzygosity\\nzygote\\nzygotene\\nzygotenes\\nzygotes\\nzygotic\\nzymase\\nzymases\\nzyme\\nzymes\\nzymogen\\nzymogene\\nzymogenes\\nzymogens\\nzymologies\\nzymology\\nzymoses\\nzymosis\\nzymotic\\nzymurgies\\nzymurgy\\n'" ] }, - "execution_count": 65, + "execution_count": 64, "metadata": {}, "output_type": "execute_result" } @@ -2978,7 +2978,7 @@ }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 65, "id": "4e35f7ce", "metadata": {}, "outputs": [ @@ -3988,7 +3988,7 @@ " ...]" ] }, - "execution_count": 66, + "execution_count": 65, "metadata": {}, "output_type": "execute_result" } @@ -4010,7 +4010,7 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 66, "id": "a778a62a", "metadata": {}, "outputs": [ @@ -4020,7 +4020,7 @@ "True" ] }, - "execution_count": 67, + "execution_count": 66, "metadata": {}, "output_type": "execute_result" } @@ -4039,7 +4039,7 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 67, "id": "63341c0e", "metadata": {}, "outputs": [ @@ -4049,7 +4049,7 @@ "False" ] }, - "execution_count": 68, + "execution_count": 67, "metadata": {}, "output_type": "execute_result" } @@ -4081,7 +4081,7 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": 68, "id": "88872f14", "metadata": {}, "outputs": [ @@ -4091,7 +4091,7 @@ "'plumage'" ] }, - "execution_count": 69, + "execution_count": 68, "metadata": {}, "output_type": "execute_result" } @@ -4112,7 +4112,7 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": 69, "id": "e28e7135", "metadata": {}, "outputs": [], @@ -4132,7 +4132,7 @@ }, { "cell_type": "code", - "execution_count": 71, + "execution_count": 70, "id": "97cf0c61", "metadata": { "tags": [] @@ -4211,7 +4211,7 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": 71, "id": "a4e34564", "metadata": { "tags": [] @@ -4285,7 +4285,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 72, "id": "9c5916ed", "metadata": { "tags": [] @@ -4311,7 +4311,7 @@ }, { "cell_type": "code", - "execution_count": 92, + "execution_count": 73, "id": "5885cbd3", "metadata": {}, "outputs": [], @@ -4364,7 +4364,7 @@ }, { "cell_type": "code", - "execution_count": 93, + "execution_count": 74, "id": "ce7a96ec", "metadata": { "tags": [] @@ -4387,17 +4387,9 @@ "Using your function and the word list, find all the anagrams of `takes`." ] }, - { - "cell_type": "markdown", - "id": "74bfa8b1", - "metadata": {}, - "source": [ - "## BOOKMARK" - ] - }, { "cell_type": "code", - "execution_count": 97, + "execution_count": 75, "id": "75e17c7b", "metadata": {}, "outputs": [ @@ -4436,10 +4428,21 @@ }, { "cell_type": "code", - "execution_count": 75, + "execution_count": 76, "id": "aafa5db5", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 76, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "reversed('parrot')" ] @@ -4454,10 +4457,21 @@ }, { "cell_type": "code", - "execution_count": 76, + "execution_count": 77, "id": "06cbb42a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['t', 'o', 'r', 'r', 'a', 'p']" + ] + }, + "execution_count": 77, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "list(reversed('parrot'))" ] @@ -4472,10 +4486,21 @@ }, { "cell_type": "code", - "execution_count": 77, + "execution_count": 78, "id": "18a73205", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'torrap'" + ] + }, + "execution_count": 78, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "''.join(reversed('parrot'))" ] @@ -4490,7 +4515,7 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": 79, "id": "408932cb", "metadata": {}, "outputs": [], @@ -4520,7 +4545,7 @@ }, { "cell_type": "code", - "execution_count": 79, + "execution_count": 80, "id": "9179d51c", "metadata": { "tags": [] @@ -4544,17 +4569,36 @@ }, { "cell_type": "code", - "execution_count": 80, + "execution_count": 95, "id": "16d493ad", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def is_palindrome(word):\n", + " \"\"\"Check if a word is a palindrome.\n", + " \n", + " >>> is_palindrome('bob')\n", + " True\n", + " >>> is_palindrome('alice')\n", + " False\n", + " >>> is_palindrome('a')\n", + " True\n", + " >>> is_palindrome('')\n", + " True\n", + " \"\"\"\n", + " #print(word)\n", + " #print(''.join(reversed(word)))\n", + " if word == ''.join(reversed(word)):\n", + " return True\n", + " else:\n", + " return False\n", + " " ] }, { "cell_type": "code", - "execution_count": 81, + "execution_count": 96, "id": "33c9b4ec", "metadata": { "tags": [] @@ -4574,16 +4618,38 @@ }, { "cell_type": "code", - "execution_count": 82, + "execution_count": 98, "id": "fea01394", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "deified <=> deified\n", + "halalah <=> halalah\n", + "reifier <=> reifier\n", + "repaper <=> repaper\n", + "reviver <=> reviver\n", + "rotator <=> rotator\n", + "sememes <=> sememes\n" + ] + } + ], "source": [ "for word in word_list:\n", " if len(word) >= 7 and is_palindrome(word):\n", - " print(word)" + " print(word, ' <=> ', ''.join(reversed(word)))" + ] + }, + { + "cell_type": "markdown", + "id": "74bfa8b1", + "metadata": {}, + "source": [ + "## BOOKMARK" ] }, { From c883cc564b0b7d433bf2672d06913c58924dec7b Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Thu, 15 Jan 2026 20:28:02 +0000 Subject: [PATCH 22/56] Solution for reversing sentence --- chapters/chap09.ipynb | 74 ++++++++++++++++++++++++++++++++----------- 1 file changed, 56 insertions(+), 18 deletions(-) diff --git a/chapters/chap09.ipynb b/chapters/chap09.ipynb index 334906c4..44c6da5a 100644 --- a/chapters/chap09.ipynb +++ b/chapters/chap09.ipynb @@ -4435,7 +4435,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 76, @@ -4569,7 +4569,7 @@ }, { "cell_type": "code", - "execution_count": 95, + "execution_count": 81, "id": "16d493ad", "metadata": {}, "outputs": [], @@ -4598,7 +4598,7 @@ }, { "cell_type": "code", - "execution_count": 96, + "execution_count": 82, "id": "33c9b4ec", "metadata": { "tags": [] @@ -4618,7 +4618,7 @@ }, { "cell_type": "code", - "execution_count": 98, + "execution_count": 83, "id": "fea01394", "metadata": { "tags": [] @@ -4644,14 +4644,6 @@ " print(word, ' <=> ', ''.join(reversed(word)))" ] }, - { - "cell_type": "markdown", - "id": "74bfa8b1", - "metadata": {}, - "source": [ - "## BOOKMARK" - ] - }, { "cell_type": "markdown", "id": "11386f70", @@ -4678,7 +4670,7 @@ }, { "cell_type": "code", - "execution_count": 83, + "execution_count": 84, "id": "d9b5b362", "metadata": { "tags": [] @@ -4705,17 +4697,55 @@ }, { "cell_type": "code", - "execution_count": 84, + "execution_count": 103, "id": "a2cb1451", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def reverse_sentence(input_string):\n", + " '''Reverse the words in a string and capitalize the first.\n", + " \n", + " >>> reverse_sentence('Reverse this sentence')\n", + " 'Sentence this reverse'\n", + "\n", + " >>> reverse_sentence('Python')\n", + " 'Python'\n", + "\n", + " >>> reverse_sentence('')\n", + " ''\n", + "\n", + " >>> reverse_sentence('One for all and all for one')\n", + " 'One for all and all for one'\n", + " '''\n", + " words = []\n", + " words = input_string.split(' ')\n", + "\n", + " if len(words) > 1:\n", + " words.reverse()\n", + "\n", + " first_word = words[:1]\n", + " first_word = ''.join(first_word).capitalize()\n", + " # print(\"This is the first word: \", first_word)\n", + "\n", + " last_word = words[-1:]\n", + " last_word = ''.join(last_word).lower()\n", + " # print(\"This is the last word: \", last_word)\n", + "\n", + " words[0] = first_word\n", + " words[-1] = last_word\n", + "\n", + " # print(\"These are the words in reverse: \", words)\n", + " \n", + " delimiter = ' '\n", + " words = delimiter.join(words)\n", + " \n", + " return words" ] }, { "cell_type": "code", - "execution_count": 85, + "execution_count": 104, "id": "769d1c7a", "metadata": { "tags": [] @@ -4725,6 +4755,14 @@ "run_doctests(reverse_sentence)" ] }, + { + "cell_type": "markdown", + "id": "74bfa8b1", + "metadata": {}, + "source": [ + "## BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "fb5f24b1", @@ -4738,7 +4776,7 @@ }, { "cell_type": "code", - "execution_count": 86, + "execution_count": null, "id": "1fba5377", "metadata": {}, "outputs": [], @@ -4748,7 +4786,7 @@ }, { "cell_type": "code", - "execution_count": 87, + "execution_count": null, "id": "21f4cf1c", "metadata": {}, "outputs": [], From 6a05f285b6addc0a2e5174eedd2c3c3be288e8eb Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Fri, 16 Jan 2026 16:41:29 +0000 Subject: [PATCH 23/56] Solution for number of words in list exercise --- chapters/chap09.ipynb | 64 ++++++++++++++++++++++++++++++++++++------- 1 file changed, 54 insertions(+), 10 deletions(-) diff --git a/chapters/chap09.ipynb b/chapters/chap09.ipynb index 44c6da5a..fc092ed8 100644 --- a/chapters/chap09.ipynb +++ b/chapters/chap09.ipynb @@ -4435,7 +4435,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 76, @@ -4697,7 +4697,7 @@ }, { "cell_type": "code", - "execution_count": 103, + "execution_count": 85, "id": "a2cb1451", "metadata": {}, "outputs": [], @@ -4745,7 +4745,7 @@ }, { "cell_type": "code", - "execution_count": 104, + "execution_count": 86, "id": "769d1c7a", "metadata": { "tags": [] @@ -4776,12 +4776,28 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 89, "id": "1fba5377", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def total_length(string_list):\n", + " '''Takes a list of strings and returns the total length.\n", + "\n", + " >>> total_length(example_strings_list_1)\n", + " '10'\n", + "\n", + " >>> total_length(example_strings_list_2)\n", + " '100'\n", + " '''\n", + " \n", + " running_total = 0\n", + "\n", + " for each_word in string_list:\n", + " running_total += len(each_word)\n", + "\n", + " return running_total" ] }, { @@ -4789,18 +4805,46 @@ "execution_count": null, "id": "21f4cf1c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10\n", + "100\n" + ] + } + ], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "example_list_10 = ['hello', 'person','who', 'is', 'there', 'six', 'monkey', 'oito', 'nessze', 'dez']\n", + "#print(len(example_list_10))\n", + "\n", + "example_list_100 = ['hello', 'person','who', 'is', 'there', 'six', 'monkey', 'oito', 'nessze', 'dez', 'hello', 'person','who', 'is', 'there', 'six', 'monkey', 'oito', 'nessze', 'dez', 'hello', 'person','who', 'is', 'there', 'six', 'monkey', 'oito', 'nessze', 'dez', 'hello', 'person','who', 'is', 'there', 'six', 'monkey', 'oito', 'nessze', 'dez', 'hello', 'person','who', 'is', 'there', 'six', 'monkey', 'oito', 'nessze', 'dez', 'hello', 'person','who', 'is', 'there', 'six', 'monkey', 'oito', 'nessze', 'dez', 'hello', 'person','who', 'is', 'there', 'six', 'monkey', 'oito', 'nessze', 'dez', 'hello', 'person','who', 'is', 'there', 'six', 'monkey', 'oito', 'nessze', 'dez', 'hello', 'person','who', 'is', 'there', 'six', 'monkey', 'oito', 'nessze', 'dez', 'hello', 'person','who', 'is', 'there', 'six', 'monkey', 'oito', 'nessze', 'dez']\n", + "#print(len(example_list_100))" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 93, "id": "c3efb216", "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "43\n", + "430\n", + "902728\n" + ] + } + ], + "source": [ + "print(total_length(example_list_10))\n", + "print(total_length(example_list_100))\n", + "print(total_length(word_list))" + ] }, { "cell_type": "markdown", From 7b79e9a4aa564df6cff8158ace337ad8c3cf1c47 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Mon, 19 Jan 2026 09:12:45 +0000 Subject: [PATCH 24/56] is duplicate solution --- chapters/chap09.ipynb | 4 +- chapters/chap10.ipynb | 581 +++++++++++++++++++++++++++++++++++------- 2 files changed, 492 insertions(+), 93 deletions(-) diff --git a/chapters/chap09.ipynb b/chapters/chap09.ipynb index fc092ed8..61f83256 100644 --- a/chapters/chap09.ipynb +++ b/chapters/chap09.ipynb @@ -4826,7 +4826,7 @@ }, { "cell_type": "code", - "execution_count": 93, + "execution_count": null, "id": "c3efb216", "metadata": {}, "outputs": [ @@ -4843,7 +4843,7 @@ "source": [ "print(total_length(example_list_10))\n", "print(total_length(example_list_100))\n", - "print(total_length(word_list))" + "print(total_length(word_list))#" ] }, { diff --git a/chapters/chap10.ipynb b/chapters/chap10.ipynb index e1de3afe..c3f1c081 100644 --- a/chapters/chap10.ipynb +++ b/chapters/chap10.ipynb @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 1, "id": "e55de5cd", "metadata": { "tags": [] @@ -64,7 +64,7 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 2, "id": "20dd9f32", "metadata": {}, "outputs": [], @@ -82,10 +82,21 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 3, "id": "9b6625c0", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'one'" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "lst[1]" ] @@ -102,10 +113,21 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 4, "id": "138952d9", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{}" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "numbers = {}\n", "numbers" @@ -122,12 +144,13 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 5, "id": "007ef505", "metadata": {}, "outputs": [], "source": [ - "numbers['zero'] = 0" + "numbers['zero'] = 0\n", + "new_numbers = dict(um=1, dois=2, tres=3)" ] }, { @@ -142,12 +165,24 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 6, "id": "753a8fbc", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'um': 1, 'dois': 2, 'tres': 3}" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "numbers" + "numbers\n", + "new_numbers" ] }, { @@ -160,10 +195,21 @@ }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 7, "id": "835aac1e", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'zero': 0, 'one': 1, 'two': 2}" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "numbers['one'] = 1\n", "numbers['two'] = 2\n", @@ -182,10 +228,21 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 8, "id": "c0475cee", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "2" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "numbers['two']" ] @@ -200,12 +257,21 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 9, "id": "30c37eef", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "KeyError", + "evalue": "'three'", + "output_type": "error", + "traceback": [ + "\u001b[31mKeyError\u001b[39m\u001b[31m:\u001b[39m 'three'\n" + ] + } + ], "source": [ "%%expect KeyError\n", "numbers['three']\n" @@ -221,10 +287,21 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 10, "id": "1b4ea0c2", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "3" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "len(numbers)" ] @@ -242,7 +319,7 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 11, "id": "eba36a24", "metadata": { "tags": [] @@ -257,12 +334,23 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 12, "id": "9016bf4b", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "from diagram import diagram, adjust, Bbox\n", "\n", @@ -295,7 +383,7 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": 13, "id": "19dfeecb", "metadata": {}, "outputs": [], @@ -317,10 +405,21 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 14, "id": "39b81034", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{}" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "empty = dict()\n", "empty" @@ -336,10 +435,21 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 15, "id": "88fa12c5", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'zero': 0, 'one': 1, 'two': 2}" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "numbers_copy = dict(numbers)\n", "numbers_copy" @@ -367,10 +477,21 @@ }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 16, "id": "025cad92", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "'one' in numbers" ] @@ -385,10 +506,21 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 17, "id": "65de12ab", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "1 in numbers" ] @@ -403,10 +535,21 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": 18, "id": "87ddc1b2", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "1 in numbers.values()" ] @@ -422,7 +565,7 @@ }, { "cell_type": "code", - "execution_count": 54, + "execution_count": 19, "id": "4849b563", "metadata": { "tags": [] @@ -443,10 +586,21 @@ }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 20, "id": "830b1208", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "113783" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "word_list = open('words.txt').read().split()\n", "len(word_list)" @@ -462,7 +616,7 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 21, "id": "49231201", "metadata": {}, "outputs": [], @@ -482,7 +636,7 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": 22, "id": "a41759fb", "metadata": {}, "outputs": [], @@ -518,14 +672,31 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": null, "id": "33bcddf8", "metadata": { "tags": [] }, - "outputs": [], - "source": [ - "# %time too_slow()" + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 41.3 s, sys: 149 ms, total: 41.5 s\n", + "Wall time: 41.7 s\n" + ] + }, + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[31mKeyboardInterrupt\u001b[39m\n" + ] + } + ], + "source": [ + "#%time too_slow()" ] }, { @@ -539,10 +710,21 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": null, "id": "f2869dd0", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "12946571089" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "len(word_list)**2" ] @@ -558,7 +740,7 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": null, "id": "300416d9", "metadata": {}, "outputs": [], @@ -580,7 +762,7 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": null, "id": "9d3dfd8d", "metadata": {}, "outputs": [], @@ -612,12 +794,31 @@ }, { "cell_type": "code", - "execution_count": 62, + "execution_count": null, "id": "82b36568", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 38.7 ms, sys: 1.46 ms, total: 40.2 ms\n", + "Wall time: 39.5 ms\n" + ] + }, + { + "data": { + "text/plain": [ + "885" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "%time much_faster()" ] @@ -636,7 +837,7 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": null, "id": "7c21ff00", "metadata": {}, "outputs": [], @@ -655,7 +856,7 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": null, "id": "7d0afb00", "metadata": {}, "outputs": [], @@ -674,7 +875,7 @@ }, { "cell_type": "code", - "execution_count": 66, + "execution_count": null, "id": "ba97b5ea", "metadata": {}, "outputs": [], @@ -692,10 +893,21 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": null, "id": "30ffe9b4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'a': 2}" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "counter" ] @@ -710,7 +922,7 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": null, "id": "36f95332", "metadata": {}, "outputs": [], @@ -738,10 +950,21 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": null, "id": "d6f1048e", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'b': 1, 'r': 2, 'o': 2, 'n': 1, 't': 1, 's': 2, 'a': 1, 'u': 2}" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "counter = value_counts('brontosaurus')\n", "counter" @@ -768,13 +991,27 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": null, "id": "310e1489", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'a': 2, 's': 4, 'i': 1, 'n': 1}" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "counter = value_counts('banana')\n", - "counter" + "counter\n", + "\n", + "namecounter = value_counts('assassin')\n", + "namecounter" ] }, { @@ -787,12 +1024,29 @@ }, { "cell_type": "code", - "execution_count": 71, + "execution_count": null, "id": "da4ec7fd", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "b\n", + "a\n", + "n\n", + "a\n", + "s\n", + "i\n", + "n\n" + ] + } + ], "source": [ "for key in counter:\n", + " print(key)\n", + "\n", + "for key in namecounter:\n", " print(key)" ] }, @@ -806,12 +1060,29 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": null, "id": "859fe1ad", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n", + "3\n", + "2\n", + "2\n", + "4\n", + "1\n", + "1\n" + ] + } + ], "source": [ "for value in counter.values():\n", + " print(value)\n", + "\n", + "for value in namecounter.values():\n", " print(value)" ] }, @@ -825,10 +1096,20 @@ }, { "cell_type": "code", - "execution_count": 73, + "execution_count": null, "id": "7242ab5b", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "b 1\n", + "a 3\n", + "n 2\n" + ] + } + ], "source": [ "for key in counter:\n", " value = counter[key]\n", @@ -856,10 +1137,21 @@ }, { "cell_type": "code", - "execution_count": 74, + "execution_count": null, "id": "29cd8207", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{4: ['r', 'o', 'u', 's']}" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "d = {4: ['r', 'o', 'u', 's']}\n", "d" @@ -876,12 +1168,21 @@ }, { "cell_type": "code", - "execution_count": 76, + "execution_count": null, "id": "ca9ff511", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "TypeError", + "evalue": "unhashable type: 'list'", + "output_type": "error", + "traceback": [ + "\u001b[31mTypeError\u001b[39m\u001b[31m:\u001b[39m unhashable type: 'list'\n" + ] + } + ], "source": [ "%%expect TypeError\n", "letters = list('abcd')\n", @@ -924,7 +1225,7 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": null, "id": "0647278e", "metadata": {}, "outputs": [], @@ -944,10 +1245,21 @@ }, { "cell_type": "code", - "execution_count": 42, + "execution_count": null, "id": "9eff9f2c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "91" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "count = 0\n", "\n", @@ -976,10 +1288,21 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": null, "id": "609bdd9a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['aa', 'aba', 'aga', 'aha', 'ala', 'alula', 'ama', 'ana', 'anna', 'ava']" + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "palindromes = []\n", "\n", @@ -1011,10 +1334,21 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": null, "id": "c2db1187", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['deified', 'halalah', 'reifier', 'repaper', 'reviver', 'rotator', 'sememes']" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "long_palindromes = []\n", "\n", @@ -1047,7 +1381,7 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": null, "id": "13a7ed35", "metadata": {}, "outputs": [], @@ -1074,7 +1408,7 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": null, "id": "7ed6137a", "metadata": { "tags": [] @@ -1089,7 +1423,7 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": null, "id": "a9374c39", "metadata": { "tags": [] @@ -1117,12 +1451,23 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": null, "id": "12098be7", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "from diagram import diagram, adjust, Bbox\n", "\n", @@ -1179,7 +1524,7 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": null, "id": "28e443f5", "metadata": {}, "outputs": [], @@ -1214,24 +1559,62 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": null, "id": "af818c11", "metadata": { "tags": [] }, - "outputs": [], - "source": [ - "# %time fibonacci(40)" + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 11.4 s, sys: 43.7 ms, total: 11.4 s\n", + "Wall time: 11.5 s\n" + ] + }, + { + "data": { + "text/plain": [ + "102334155" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%time fibonacci(40)" ] }, { "cell_type": "code", - "execution_count": 51, + "execution_count": null, "id": "7316d721", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 10 μs, sys: 1 μs, total: 11 μs\n", + "Wall time: 13.1 μs\n" + ] + }, + { + "data": { + "text/plain": [ + "102334155" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "%time fibonacci_memo(40)" ] @@ -1351,7 +1734,15 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Verbose\n" + ] + } + ], "source": [ "# This cell tells Jupyter to provide detailed debugging information\n", "# when a runtime error occurs. Run it before working on the exercises.\n", @@ -1373,6 +1764,14 @@ "Ask a virtual assistant, \"How do I make a Python set from a list of strings and check whether a string is an element of the set?\"" ] }, + { + "cell_type": "markdown", + "id": "0dc33c83", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "badf7d65", @@ -1837,7 +2236,7 @@ "metadata": { "celltoolbar": "Tags", "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "thinkpy", "language": "python", "name": "python3" }, @@ -1851,7 +2250,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.13.5" } }, "nbformat": 4, From 057059f6591d8ac79342d00ac83185afad37ca17 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Tue, 20 Jan 2026 11:03:39 +0000 Subject: [PATCH 25/56] Solution for finding and storing keys and values for repeating entries --- chapters/chap10.ipynb | 278 +++++++++++++++++++++++++++++------------- 1 file changed, 195 insertions(+), 83 deletions(-) diff --git a/chapters/chap10.ipynb b/chapters/chap10.ipynb index c3f1c081..d09d7572 100644 --- a/chapters/chap10.ipynb +++ b/chapters/chap10.ipynb @@ -672,29 +672,12 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 23, "id": "33bcddf8", "metadata": { "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "CPU times: user 41.3 s, sys: 149 ms, total: 41.5 s\n", - "Wall time: 41.7 s\n" - ] - }, - { - "ename": "KeyboardInterrupt", - "evalue": "", - "output_type": "error", - "traceback": [ - "\u001b[31mKeyboardInterrupt\u001b[39m\n" - ] - } - ], + "outputs": [], "source": [ "#%time too_slow()" ] @@ -710,7 +693,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 24, "id": "f2869dd0", "metadata": {}, "outputs": [ @@ -740,7 +723,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 25, "id": "300416d9", "metadata": {}, "outputs": [], @@ -762,7 +745,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 26, "id": "9d3dfd8d", "metadata": {}, "outputs": [], @@ -794,7 +777,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 27, "id": "82b36568", "metadata": { "tags": [] @@ -804,8 +787,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "CPU times: user 38.7 ms, sys: 1.46 ms, total: 40.2 ms\n", - "Wall time: 39.5 ms\n" + "CPU times: user 25.6 ms, sys: 692 μs, total: 26.3 ms\n", + "Wall time: 25.7 ms\n" ] }, { @@ -837,7 +820,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 28, "id": "7c21ff00", "metadata": {}, "outputs": [], @@ -856,7 +839,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 29, "id": "7d0afb00", "metadata": {}, "outputs": [], @@ -875,7 +858,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 30, "id": "ba97b5ea", "metadata": {}, "outputs": [], @@ -893,7 +876,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 31, "id": "30ffe9b4", "metadata": {}, "outputs": [ @@ -903,7 +886,7 @@ "{'a': 2}" ] }, - "execution_count": 32, + "execution_count": 31, "metadata": {}, "output_type": "execute_result" } @@ -922,7 +905,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 32, "id": "36f95332", "metadata": {}, "outputs": [], @@ -950,7 +933,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 33, "id": "d6f1048e", "metadata": {}, "outputs": [ @@ -960,7 +943,7 @@ "{'b': 1, 'r': 2, 'o': 2, 'n': 1, 't': 1, 's': 2, 'a': 1, 'u': 2}" ] }, - "execution_count": 34, + "execution_count": 33, "metadata": {}, "output_type": "execute_result" } @@ -991,7 +974,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 34, "id": "310e1489", "metadata": {}, "outputs": [ @@ -1001,7 +984,7 @@ "{'a': 2, 's': 4, 'i': 1, 'n': 1}" ] }, - "execution_count": 38, + "execution_count": 34, "metadata": {}, "output_type": "execute_result" } @@ -1024,7 +1007,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 35, "id": "da4ec7fd", "metadata": {}, "outputs": [ @@ -1060,7 +1043,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 36, "id": "859fe1ad", "metadata": {}, "outputs": [ @@ -1096,7 +1079,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 37, "id": "7242ab5b", "metadata": {}, "outputs": [ @@ -1137,7 +1120,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 38, "id": "29cd8207", "metadata": {}, "outputs": [ @@ -1147,7 +1130,7 @@ "{4: ['r', 'o', 'u', 's']}" ] }, - "execution_count": 42, + "execution_count": 38, "metadata": {}, "output_type": "execute_result" } @@ -1168,7 +1151,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 39, "id": "ca9ff511", "metadata": { "tags": [] @@ -1225,7 +1208,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 40, "id": "0647278e", "metadata": {}, "outputs": [], @@ -1245,7 +1228,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 41, "id": "9eff9f2c", "metadata": {}, "outputs": [ @@ -1255,7 +1238,7 @@ "91" ] }, - "execution_count": 45, + "execution_count": 41, "metadata": {}, "output_type": "execute_result" } @@ -1288,7 +1271,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 42, "id": "609bdd9a", "metadata": {}, "outputs": [ @@ -1298,7 +1281,7 @@ "['aa', 'aba', 'aga', 'aha', 'ala', 'alula', 'ama', 'ana', 'anna', 'ava']" ] }, - "execution_count": 46, + "execution_count": 42, "metadata": {}, "output_type": "execute_result" } @@ -1334,7 +1317,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 43, "id": "c2db1187", "metadata": {}, "outputs": [ @@ -1344,7 +1327,7 @@ "['deified', 'halalah', 'reifier', 'repaper', 'reviver', 'rotator', 'sememes']" ] }, - "execution_count": 47, + "execution_count": 43, "metadata": {}, "output_type": "execute_result" } @@ -1381,7 +1364,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 44, "id": "13a7ed35", "metadata": {}, "outputs": [], @@ -1408,7 +1391,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 45, "id": "7ed6137a", "metadata": { "tags": [] @@ -1423,7 +1406,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 46, "id": "a9374c39", "metadata": { "tags": [] @@ -1451,7 +1434,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 47, "id": "12098be7", "metadata": { "tags": [] @@ -1524,7 +1507,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 48, "id": "28e443f5", "metadata": {}, "outputs": [], @@ -1559,7 +1542,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 49, "id": "af818c11", "metadata": { "tags": [] @@ -1569,8 +1552,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "CPU times: user 11.4 s, sys: 43.7 ms, total: 11.4 s\n", - "Wall time: 11.5 s\n" + "CPU times: user 11.6 s, sys: 32 ms, total: 11.7 s\n", + "Wall time: 11.7 s\n" ] }, { @@ -1579,7 +1562,7 @@ "102334155" ] }, - "execution_count": 53, + "execution_count": 49, "metadata": {}, "output_type": "execute_result" } @@ -1590,7 +1573,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 50, "id": "7316d721", "metadata": { "tags": [] @@ -1600,8 +1583,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "CPU times: user 10 μs, sys: 1 μs, total: 11 μs\n", - "Wall time: 13.1 μs\n" + "CPU times: user 8 μs, sys: 2 μs, total: 10 μs\n", + "Wall time: 11.9 μs\n" ] }, { @@ -1610,7 +1593,7 @@ "102334155" ] }, - "execution_count": 54, + "execution_count": 50, "metadata": {}, "output_type": "execute_result" } @@ -1729,7 +1712,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 51, "id": "1e3c12ec", "metadata": { "tags": [] @@ -1764,14 +1747,6 @@ "Ask a virtual assistant, \"How do I make a Python set from a list of strings and check whether a string is an element of the set?\"" ] }, - { - "cell_type": "markdown", - "id": "0dc33c83", - "metadata": {}, - "source": [ - "### BOOKMARK" - ] - }, { "cell_type": "markdown", "id": "badf7d65", @@ -1807,7 +1782,18 @@ "execution_count": 53, "id": "fc328161", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "1" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "counter.get('b', 0)" ] @@ -1825,7 +1811,18 @@ "execution_count": 54, "id": "674b6663", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "0" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "counter.get('c', 0)" ] @@ -1839,6 +1836,14 @@ "You should be able to eliminate the `if` statement." ] }, + { + "cell_type": "markdown", + "id": "0dc33c83", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "5413af6e", @@ -1893,7 +1898,35 @@ "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def has_duplicates(t):\n", + " \"\"\"Check whether any element in a sequence appears more than once.\n", + " \n", + " >>> has_duplicates('banana')\n", + " True\n", + " >>> has_duplicates('ambidextrously')\n", + " False\n", + " >>> has_duplicates([1, 2, 2])\n", + " True\n", + " >>> has_duplicates([1, 2, 3])\n", + " False \"\"\"\n", + " counter = {}\n", + "\n", + " for item in t:\n", + " counter[item] = counter.get(item, 0) + 1\n", + " if counter[item] > 1:\n", + " return True\n", + "\n", + " return False\n", + "\n", + "# def value_counts(string):\n", + "# counter = {}\n", + "# for letter in string:\n", + "# if letter not in counter:\n", + "# counter[letter] = 1\n", + "# else:\n", + "# counter[letter] += 1\n", + "# return counter" ] }, { @@ -1913,7 +1946,22 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "**********************************************************************\n", + "File \"__main__\", line 11, in has_duplicates\n", + "Failed example:\n", + " has_duplicates([1, 2, 3])\n", + "Expected:\n", + " False \n", + "Got:\n", + " False\n" + ] + } + ], "source": [ "from doctest import run_docstring_examples\n", "\n", @@ -1940,7 +1988,22 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['ambidextrously',\n", + " 'lycanthropies',\n", + " 'metalworkings',\n", + " 'multibranched',\n", + " 'unpredictably']" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "no_repeats = []\n", "\n", @@ -1982,12 +2045,28 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 67, "id": "bbd6d241", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def find_repeats(counter):\n", + " \"\"\"Makes a list of keys with values greater than 1.\n", + " \n", + " counter: dictionary that maps from keys to counts\n", + " \n", + " returns: list of keys\n", + " \"\"\"\n", + " list_of_keys = []\n", + " list_of_values = []\n", + "\n", + " for key in counter: # Python iterates over the keys in a dict\n", + " if counter[key] > 1:\n", + " list_of_keys.append(key)\n", + " list_of_values.append(counter[key])\n", + "\n", + " return list_of_keys, list_of_values" ] }, { @@ -2003,12 +2082,23 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 68, "id": "ac983c6f", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'b': 1, 'a': 3, 'n': 2}" + ] + }, + "execution_count": 68, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "counter1 = value_counts('banana')\n", "counter1" @@ -2026,12 +2116,23 @@ }, { "cell_type": "code", - "execution_count": 62, + "execution_count": 69, "id": "214345d8", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "(['a', 'n'], [3, 2])" + ] + }, + "execution_count": 69, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "repeats = find_repeats(counter1)\n", "repeats" @@ -2050,12 +2151,23 @@ }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 70, "id": "10e9d54a", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "([1, 2], [2, 2])" + ] + }, + "execution_count": 70, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "counter1 = value_counts([1, 2, 3, 2, 1])\n", "repeats = find_repeats(counter1)\n", From 379c4ec3bf5f50cb04a6cfd5b8bb8a65d7cdefc2 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Tue, 20 Jan 2026 11:22:33 +0000 Subject: [PATCH 26/56] add counters solution --- chapters/chap10.ipynb | 47 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 39 insertions(+), 8 deletions(-) diff --git a/chapters/chap10.ipynb b/chapters/chap10.ipynb index d09d7572..6ab635f8 100644 --- a/chapters/chap10.ipynb +++ b/chapters/chap10.ipynb @@ -2186,13 +2186,24 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 72, "id": "c97e2419", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'b': 1, 'r': 2, 'o': 2, 'n': 1, 't': 1, 's': 2, 'a': 1, 'u': 2}\n", + "{'a': 3, 'p': 1, 't': 1, 'o': 1, 's': 2, 'u': 2, 'r': 1}\n" + ] + } + ], "source": [ "counter1 = value_counts('brontosaurus')\n", - "counter2 = value_counts('apatosaurus')" + "counter2 = value_counts('apatosaurus')\n", + "print(counter1)\n", + "print(counter2)" ] }, { @@ -2209,22 +2220,42 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 77, "id": "6cf70355", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def add_counters(dict_1, dict_2):\n", + " new_dict = dict_1.copy() # start from copy of the first counter (dict 1)\n", + "\n", + " for key, count in dict_2.items(): # walk key/value paris from the second counter (dict 2)\n", + " new_dict[key] = new_dict.get(key, 0) + count # add dict 2's count onto whatever's already there\n", + "\n", + " return new_dict\n", + " " ] }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 78, "id": "6a729a14", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'b': 1, 'r': 3, 'o': 3, 'n': 1, 't': 2, 's': 4, 'a': 4, 'u': 4, 'p': 1}" + ] + }, + "execution_count": 78, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "add_counters(counter1, counter2)\n" ] }, { From 66991997c040535e04280fdad4af22d147d4d9ec Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Fri, 23 Jan 2026 15:51:15 +0000 Subject: [PATCH 27/56] Final solutions for dictionaries --- chapters/chap10.ipynb | 226 +++++++++++++++++++++++++++++++----------- 1 file changed, 166 insertions(+), 60 deletions(-) diff --git a/chapters/chap10.ipynb b/chapters/chap10.ipynb index 6ab635f8..f7e55a58 100644 --- a/chapters/chap10.ipynb +++ b/chapters/chap10.ipynb @@ -787,8 +787,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "CPU times: user 25.6 ms, sys: 692 μs, total: 26.3 ms\n", - "Wall time: 25.7 ms\n" + "CPU times: user 24.9 ms, sys: 398 μs, total: 25.3 ms\n", + "Wall time: 25.1 ms\n" ] }, { @@ -1552,8 +1552,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "CPU times: user 11.6 s, sys: 32 ms, total: 11.7 s\n", - "Wall time: 11.7 s\n" + "CPU times: user 11.5 s, sys: 35.9 ms, total: 11.6 s\n", + "Wall time: 11.6 s\n" ] }, { @@ -1583,8 +1583,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "CPU times: user 8 μs, sys: 2 μs, total: 10 μs\n", - "Wall time: 11.9 μs\n" + "CPU times: user 7 μs, sys: 1 μs, total: 8 μs\n", + "Wall time: 9.3 μs\n" ] }, { @@ -1836,14 +1836,6 @@ "You should be able to eliminate the `if` statement." ] }, - { - "cell_type": "markdown", - "id": "0dc33c83", - "metadata": {}, - "source": [ - "### BOOKMARK" - ] - }, { "cell_type": "markdown", "id": "5413af6e", @@ -1893,7 +1885,7 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 61, "id": "061e2903", "metadata": {}, "outputs": [], @@ -1909,7 +1901,8 @@ " >>> has_duplicates([1, 2, 2])\n", " True\n", " >>> has_duplicates([1, 2, 3])\n", - " False \"\"\"\n", + " False\n", + " \"\"\"\n", " counter = {}\n", "\n", " for item in t:\n", @@ -1941,27 +1934,12 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": 62, "id": "62dcdf4d", "metadata": { "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "**********************************************************************\n", - "File \"__main__\", line 11, in has_duplicates\n", - "Failed example:\n", - " has_duplicates([1, 2, 3])\n", - "Expected:\n", - " False \n", - "Got:\n", - " False\n" - ] - } - ], + "outputs": [], "source": [ "from doctest import run_docstring_examples\n", "\n", @@ -1983,7 +1961,7 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 63, "id": "a1143193", "metadata": { "tags": [] @@ -1999,7 +1977,7 @@ " 'unpredictably']" ] }, - "execution_count": 58, + "execution_count": 63, "metadata": {}, "output_type": "execute_result" } @@ -2028,7 +2006,7 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 64, "id": "9ea333ff", "metadata": {}, "outputs": [], @@ -2045,7 +2023,7 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 69, "id": "bbd6d241", "metadata": {}, "outputs": [], @@ -2066,7 +2044,7 @@ " list_of_keys.append(key)\n", " list_of_values.append(counter[key])\n", "\n", - " return list_of_keys, list_of_values" + " return list_of_keys, #list_of_values" ] }, { @@ -2082,7 +2060,7 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 70, "id": "ac983c6f", "metadata": { "tags": [] @@ -2094,7 +2072,7 @@ "{'b': 1, 'a': 3, 'n': 2}" ] }, - "execution_count": 68, + "execution_count": 70, "metadata": {}, "output_type": "execute_result" } @@ -2116,7 +2094,7 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": 71, "id": "214345d8", "metadata": { "tags": [] @@ -2125,10 +2103,10 @@ { "data": { "text/plain": [ - "(['a', 'n'], [3, 2])" + "(['a', 'n'],)" ] }, - "execution_count": 69, + "execution_count": 71, "metadata": {}, "output_type": "execute_result" } @@ -2151,7 +2129,7 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": 72, "id": "10e9d54a", "metadata": { "tags": [] @@ -2160,10 +2138,10 @@ { "data": { "text/plain": [ - "([1, 2], [2, 2])" + "([1, 2],)" ] }, - "execution_count": 70, + "execution_count": 72, "metadata": {}, "output_type": "execute_result" } @@ -2186,7 +2164,7 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": 73, "id": "c97e2419", "metadata": {}, "outputs": [ @@ -2220,7 +2198,7 @@ }, { "cell_type": "code", - "execution_count": 77, + "execution_count": 76, "id": "6cf70355", "metadata": {}, "outputs": [], @@ -2229,8 +2207,8 @@ "def add_counters(dict_1, dict_2):\n", " new_dict = dict_1.copy() # start from copy of the first counter (dict 1)\n", "\n", - " for key, count in dict_2.items(): # walk key/value paris from the second counter (dict 2)\n", - " new_dict[key] = new_dict.get(key, 0) + count # add dict 2's count onto whatever's already there\n", + " for key, value in dict_2.items(): # walk key/value paris from the second counter (dict 2)\n", + " new_dict[key] = new_dict.get(key, 0) + value # add dict 2's count onto whatever's already there\n", "\n", " return new_dict\n", " " @@ -2238,7 +2216,7 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": 77, "id": "6a729a14", "metadata": {}, "outputs": [ @@ -2248,7 +2226,7 @@ "{'b': 1, 'r': 3, 'o': 3, 'n': 1, 't': 2, 's': 4, 'a': 4, 'u': 4, 'p': 1}" ] }, - "execution_count": 78, + "execution_count": 77, "metadata": {}, "output_type": "execute_result" } @@ -2258,6 +2236,14 @@ "add_counters(counter1, counter2)\n" ] }, + { + "cell_type": "markdown", + "id": "0dc33c83", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "f88110a9", @@ -2277,10 +2263,21 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 78, "id": "56783358", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'shoe'" + ] + }, + "execution_count": 78, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "word = 'schooled'\n", "first = word[0:None:2]\n", @@ -2298,10 +2295,21 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 79, "id": "77fa8483", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'cold'" + ] + }, + "execution_count": 79, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "second = word[1::2]\n", "second" @@ -2317,12 +2325,21 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": 85, "id": "e5e1030c", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def is_interlocking(word):\n", + "\n", + " word_1 = word[0::2]\n", + " word_2 = word[1::2]\n", + "\n", + " if word_1 in word_dict and word_2 in word_dict:\n", + " return True\n", + " \n", + " return False" ] }, { @@ -2337,12 +2354,101 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": 86, "id": "e04a5c73", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "adroitly aril doty\n", + "agrarians arras gain\n", + "alienees aine lees\n", + "arrestee arse rete\n", + "arrestees arses rete\n", + "ballooned blond aloe\n", + "barmaids brad amis\n", + "baudrons burn ados\n", + "beakless bals ekes\n", + "beamless bals emes\n", + "bloodred bode lord\n", + "blueness buns lees\n", + "booklets bolt okes\n", + "burseeds bred uses\n", + "calliope clip aloe\n", + "calliopes clips aloe\n", + "cellules clue ells\n", + "cheerier cere heir\n", + "colludes clue olds\n", + "cookless cols okes\n", + "coolness cons oles\n", + "countess cuts ones\n", + "couplets cult opes\n", + "dainties dite anis\n", + "doorless dols ores\n", + "dourness duns ores\n", + "fairness fins ares\n", + "fleetest fets leet\n", + "fleetness fetes lens\n", + "foulness funs oles\n", + "freeness fens rees\n", + "friended fine redd\n", + "furrings frig urns\n", + "goalless gals oles\n", + "greeniest genet reis\n", + "greyness gens ryes\n", + "grounded gone rudd\n", + "hooklets holt okes\n", + "ignitron into girn\n", + "isleless ills sees\n", + "mailless mils ales\n", + "moonless mols ones\n", + "moonlets molt ones\n", + "moonsets most ones\n", + "neutrals nurl etas\n", + "oghamist ohms gait\n", + "parietes pree aits\n", + "peakless pals ekes\n", + "plainness panes lins\n", + "playless pals lyes\n", + "pleonasm pens loam\n", + "poorness pons ores\n", + "psalmist pams slit\n", + "rainouts riot anus\n", + "ruinable rial unbe\n", + "sapiences specs aine\n", + "schooled shoe cold\n", + "scurries sure cris\n", + "seamless sals emes\n", + "seigneurs sinus eger\n", + "shoalest sols haet\n", + "shoalier sole hair\n", + "skerries sere kris\n", + "smearier sere mair\n", + "soapless sals opes\n", + "sourness suns ores\n", + "spoonies sone pois\n", + "spurning sunn prig\n", + "stainless sanes tils\n", + "sweetest sets weet\n", + "tailless tils ales\n", + "tautness tuns ates\n", + "terrenes tree erns\n", + "theorems term hoes\n", + "trientes tine rets\n", + "triolets tilt roes\n", + "trueness tuns rees\n", + "vainness vins anes\n", + "voidness vins odes\n", + "weakness wans ekes\n", + "weirdness wides erns\n", + "weirdoes wide eros\n" + ] + } + ], "source": [ "for word in word_list:\n", " if len(word) >= 8 and is_interlocking(word):\n", From 08e36a6a4abc59a4ae6e38594b634d6eeacd4360 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Thu, 29 Jan 2026 12:21:38 +0000 Subject: [PATCH 28/56] cipher solution with assistance --- chapters/chap11.ipynb | 1155 ++++++++++++++++++++++++++++++++++----- chapters/structshape.py | 130 +++++ 2 files changed, 1135 insertions(+), 150 deletions(-) create mode 100644 chapters/structshape.py diff --git a/chapters/chap11.ipynb b/chapters/chap11.ipynb index e10980c6..03c8c49a 100644 --- a/chapters/chap11.ipynb +++ b/chapters/chap11.ipynb @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 1, "id": "295ac6d7", "metadata": { "tags": [] @@ -70,10 +70,21 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 2, "id": "fb0bdca2", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "tuple" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t = 'l', 'u', 'p', 'i', 'n'\n", "type(t)" @@ -89,10 +100,21 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 3, "id": "5a6da881", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "tuple" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t = ('l', 'u', 'p', 'i', 'n')\n", "type(t)" @@ -108,10 +130,21 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 4, "id": "e2596ca7", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "tuple" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t1 = 'p',\n", "type(t1)" @@ -127,10 +160,21 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 5, "id": "a0d350a6", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "str" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t2 = ('p')\n", "type(t2)" @@ -147,10 +191,21 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 6, "id": "c9100ee4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "()" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t = tuple()\n", "t" @@ -167,10 +222,21 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 7, "id": "44bd3d83", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "('l', 'u', 'p', 'i', 'n')" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t = tuple('lupin')\n", "t" @@ -189,10 +255,21 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 8, "id": "92e55b2c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'l'" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t[0]" ] @@ -207,10 +284,21 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 9, "id": "38ee5c2a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "('u', 'p')" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t[1:3]" ] @@ -225,10 +313,21 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 10, "id": "2e0e311a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "('l', 'u', 'p', 'i', 'n')" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "tuple('lup') + ('i', 'n')" ] @@ -243,10 +342,21 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 11, "id": "8bb7d715", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "('s', 'p', 'a', 'm', 's', 'p', 'a', 'm')" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "tuple('spam') * 2 " ] @@ -261,10 +371,21 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 12, "id": "e653e00f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['i', 'l', 'n', 'p', 'u']" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "sorted(t)" ] @@ -279,10 +400,21 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 13, "id": "8969188d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "reversed(t)" ] @@ -297,10 +429,21 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 14, "id": "65d7ebaa", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "('n', 'i', 'p', 'u', 'l')" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "tuple(reversed(t))" ] @@ -325,12 +468,21 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 15, "id": "b4970fe0", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "TypeError", + "evalue": "'tuple' object does not support item assignment", + "output_type": "error", + "traceback": [ + "\u001b[31mTypeError\u001b[39m\u001b[31m:\u001b[39m 'tuple' object does not support item assignment\n" + ] + } + ], "source": [ "%%expect TypeError\n", "t[0] = 'L'" @@ -346,12 +498,21 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 16, "id": "772738cc", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "AttributeError", + "evalue": "'tuple' object has no attribute 'remove'", + "output_type": "error", + "traceback": [ + "\u001b[31mAttributeError\u001b[39m\u001b[31m:\u001b[39m 'tuple' object has no attribute 'remove'\n" + ] + } + ], "source": [ "%%expect AttributeError\n", "\n", @@ -371,13 +532,13 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 17, "id": "37e67042", "metadata": {}, "outputs": [], "source": [ - "d = {}\n", - "d[1, 2] = 3\n", + "d = {} # empty dict\n", + "d[1, 2] = 3 # tuple in [ ] with integer value\n", "d[3, 4] = 7" ] }, @@ -391,10 +552,21 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 18, "id": "d809a490", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "3" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "d[1, 2]" ] @@ -409,13 +581,24 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 19, "id": "dfc42a8b", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "7" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "t = (3, 4)\n", - "d[t]" + "t = (3, 4) # tuple\n", + "d[t] # calling the tuple variable" ] }, { @@ -428,14 +611,47 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 20, "id": "2debf30c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "('a', 'b', 'c') ('x', 'y', 'z')\n" + ] + } + ], "source": [ - "t = tuple('abc')\n", - "d = {'key': t}\n", - "d" + "t = tuple('abc') # tuple to variable\n", + "t2 = tuple('xyz')\n", + "d = {'key': t} # dict assisgned a key with the value of the tuple\n", + "d['key2'] = t2\n", + "\n", + "print(d['key'], d['key2'])" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "b6b8b218", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "('x', 'y', 'z') \n", + " ('1', '2', '3')\n" + ] + } + ], + "source": [ + "t3 = tuple('123')\n", + "d['key'] = t3\n", + "\n", + "print(d['key2'], '\\n', d['key'])" ] }, { @@ -472,7 +688,18 @@ "execution_count": 23, "id": "99c96c7f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "(1, 2)" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "a, b" ] @@ -510,7 +737,18 @@ "execution_count": 25, "id": "b4515e2b", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "('monty', 'python.org')" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "username, domain" ] @@ -531,7 +769,16 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "ValueError", + "evalue": "too many values to unpack (expected 2)", + "output_type": "error", + "traceback": [ + "\u001b[31mValueError\u001b[39m\u001b[31m:\u001b[39m too many values to unpack (expected 2)\n" + ] + } + ], "source": [ "%%expect ValueError\n", "a, b = 1, 2, 3" @@ -592,7 +839,16 @@ "execution_count": 29, "id": "651ab417", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "one -> 1\n", + "two -> 2\n" + ] + } + ], "source": [ "d = {'one': 1, 'two': 2}\n", "\n", @@ -616,7 +872,16 @@ "execution_count": 30, "id": "2c0b7d47", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "one -> 1\n", + "two -> 2\n" + ] + } + ], "source": [ "for key, value in d.items():\n", " print(key, '->', value)" @@ -652,7 +917,18 @@ "execution_count": 31, "id": "fff80eaa", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "(2, 1)" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "divmod(7, 3)" ] @@ -670,7 +946,18 @@ "execution_count": 32, "id": "4a0eb2a9", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "2" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "quotient, remainder = divmod(7, 3)\n", "quotient" @@ -681,7 +968,18 @@ "execution_count": 33, "id": "d74ba1b6", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "1" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "remainder" ] @@ -719,9 +1017,20 @@ "execution_count": 35, "id": "fbd90b0e", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "(2, 450)" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "min_max([2, 4, 1, 3])" + "min_max([2, 450, 125, 3])" ] }, { @@ -737,10 +1046,21 @@ "execution_count": 36, "id": "5a101efb", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "this should be low: 1\n", + "this should be high: 4\n" + ] + } + ], "source": [ - "low, high = min_max([2, 4, 1, 3])\n", - "low, high" + "low, high = min_max([2, 4, 1, 3]) # just remember the order of assignment!\n", + "\n", + "print(\"this should be low: \", low)\n", + "print(\"this should be high: \", high)" ] }, { @@ -764,7 +1084,7 @@ "metadata": {}, "outputs": [], "source": [ - "def mean(*args):\n", + "def mean(*args): # *args means accept any number of arguments and put them in a tuple\n", " return sum(args) / len(args)" ] }, @@ -782,11 +1102,43 @@ "execution_count": 38, "id": "336a08ca", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "2.0" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "mean(1, 2, 3)" ] }, + { + "cell_type": "code", + "execution_count": 39, + "id": "7ebf09fd", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "2.6666666666666665" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "mean(2, 2, 5, 3, 2, 2)" + ] + }, { "cell_type": "markdown", "id": "a5e8b158", @@ -798,12 +1150,21 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 40, "id": "991810bc", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "TypeError", + "evalue": "divmod expected 2 arguments, got 1", + "output_type": "error", + "traceback": [ + "\u001b[31mTypeError\u001b[39m\u001b[31m:\u001b[39m divmod expected 2 arguments, got 1\n" + ] + } + ], "source": [ "%%expect TypeError\n", "t = (7, 3)\n", @@ -821,10 +1182,21 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 41, "id": "f25ebee1", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "(2, 1)" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "divmod(*t)" ] @@ -840,7 +1212,7 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 42, "id": "7ad64412", "metadata": {}, "outputs": [], @@ -867,20 +1239,42 @@ }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 43, "id": "b2863701", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "4.0" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "mean(1, 2, 3, 10)" ] }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 44, "id": "cc1afa29", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "2.5" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "trimmed_mean(1, 2, 3, 10)" ] @@ -906,7 +1300,7 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 45, "id": "ad3e6f81", "metadata": {}, "outputs": [], @@ -926,10 +1320,21 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 46, "id": "9ce313ce", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "zip(scores1, scores2)" ] @@ -944,10 +1349,24 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 47, "id": "321d9c30", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(1, 5)\n", + "(2, 5)\n", + "(4, 2)\n", + "(5, 2)\n", + "(1, 5)\n", + "(5, 2)\n", + "(2, 3)\n" + ] + } + ], "source": [ "for pair in zip(scores1, scores2):\n", " print(pair)" @@ -964,17 +1383,31 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 48, "id": "7eb73d5d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3\n", + "4\n" + ] + } + ], "source": [ - "wins = 0\n", + "team_1_wins = 0\n", + "team_2_wins = 0\n", + "\n", "for team1, team2 in zip(scores1, scores2):\n", " if team1 > team2:\n", - " wins += 1\n", + " team_1_wins += 1\n", + " else:\n", + " team_2_wins += 1\n", " \n", - "wins" + "print(team_1_wins)\n", + "print(team_2_wins)" ] }, { @@ -989,10 +1422,21 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": 49, "id": "9529baa8", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[(1, 5), (2, 5), (4, 2), (5, 2), (1, 5), (5, 2), (2, 3)]" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t = list(zip(scores1, scores2))\n", "t" @@ -1008,10 +1452,21 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 50, "id": "dbde77b8", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "(2, 3)" + ] + }, + "execution_count": 50, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t[-1]" ] @@ -1027,14 +1482,26 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 51, "id": "dbb7d0b3", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "range(0, 26) \n", + "\n", + "{'a': 0, 'b': 1, 'c': 2, 'd': 3, 'e': 4, 'f': 5, 'g': 6, 'h': 7, 'i': 8, 'j': 9, 'k': 10, 'l': 11, 'm': 12, 'n': 13, 'o': 14, 'p': 15, 'q': 16, 'r': 17, 's': 18, 't': 19, 'u': 20, 'v': 21, 'w': 22, 'x': 23, 'y': 24, 'z': 25}\n" + ] + } + ], "source": [ "letters = 'abcdefghijklmnopqrstuvwxyz'\n", "numbers = range(len(letters))\n", - "letter_map = dict(zip(letters, numbers))" + "letter_map = dict(zip(letters, numbers))\n", + "print(numbers, '\\n')\n", + "print(letter_map)" ] }, { @@ -1047,10 +1514,21 @@ }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 52, "id": "49e3fd8e", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "(0, 25)" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "letter_map['a'], letter_map['z']" ] @@ -1067,10 +1545,21 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 53, "id": "9e4f3e51", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "enumerate('abc')" ] @@ -1085,12 +1574,46 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": 54, "id": "c1dcb46d", "metadata": {}, - "outputs": [], - "source": [ - "for index, element in enumerate('abc'):\n", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1 a\n", + "2 b\n", + "3 c\n", + "4 d\n", + "5 e\n", + "6 f\n", + "7 g\n", + "8 h\n", + "9 i\n", + "10 j\n", + "11 k\n", + "12 l\n", + "13 m\n", + "14 n\n", + "15 o\n", + "16 p\n", + "17 q\n", + "18 r\n", + "19 s\n", + "20 t\n", + "21 u\n", + "22 v\n", + "23 w\n", + "24 x\n", + "25 y\n", + "26 z\n" + ] + } + ], + "source": [ + "for index, element in enumerate(letters):\n", + " index += 1\n", " print(index, element)" ] }, @@ -1108,10 +1631,21 @@ }, { "cell_type": "code", - "execution_count": 54, + "execution_count": 55, "id": "aed20c28", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "(0, 1, 2) < (0, 3, 4)" ] @@ -1126,10 +1660,21 @@ }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 56, "id": "4d9e73b3", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 56, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "(0, 1, 2000000) < (0, 3, 4)" ] @@ -1146,7 +1691,7 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 57, "id": "2077dfa9", "metadata": {}, "outputs": [], @@ -1171,10 +1716,21 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": 58, "id": "b3d40516", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'b': 1, 'a': 3, 'n': 2}" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "counter = value_counts('banana')\n", "counter" @@ -1193,10 +1749,21 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 59, "id": "8288c28f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "dict_items([('b', 1), ('a', 3), ('n', 2)])" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "items = counter.items()\n", "items" @@ -1212,10 +1779,21 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 60, "id": "bbbade35", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[('a', 3), ('b', 1), ('n', 2)]" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "sorted(items)" ] @@ -1233,7 +1811,7 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 61, "id": "a4c31795", "metadata": {}, "outputs": [], @@ -1252,10 +1830,21 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 62, "id": "f3d3619a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[('b', 1), ('n', 2), ('a', 3)]" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "sorted_items = sorted(items, key=second_element)\n", "sorted_items" @@ -1273,10 +1862,21 @@ }, { "cell_type": "code", - "execution_count": 62, + "execution_count": 63, "id": "f078c8a6", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "('a', 3)" + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "sorted_items[-1]" ] @@ -1292,14 +1892,46 @@ }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 64, "id": "54030d8f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "('a', 3)" + ] + }, + "execution_count": 64, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "max(items, key=second_element)" ] }, + { + "cell_type": "code", + "execution_count": 65, + "id": "7f1465f5", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "('b', 1)" + ] + }, + "execution_count": 65, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "min(items, key=second_element)" + ] + }, { "cell_type": "markdown", "id": "8a8327df", @@ -1326,10 +1958,21 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 66, "id": "ef158f81", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'p': 1, 'a': 1, 'r': 2, 'o': 1, 't': 1}" + ] + }, + "execution_count": 66, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "d = value_counts('parrot')\n", "d" @@ -1347,7 +1990,7 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 67, "id": "d3607b8d", "metadata": {}, "outputs": [], @@ -1376,10 +2019,21 @@ }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 68, "id": "692d9cf8", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{1: ['p', 'a', 'o', 't'], 2: ['r']}" + ] + }, + "execution_count": 68, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "invert_dict(d)" ] @@ -1417,7 +2071,7 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 69, "id": "e9f03e91", "metadata": { "tags": [] @@ -1437,7 +2091,7 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 70, "id": "90ab624a", "metadata": {}, "outputs": [], @@ -1455,10 +2109,21 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": 71, "id": "6794330f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'list of 3 int'" + ] + }, + "execution_count": 71, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t = [1, 2, 3]\n", "structshape(t)" @@ -1474,10 +2139,21 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": 72, "id": "54cd185b", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'list of 3 list of 2 int'" + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t2 = [[1,2], [3,4], [5,6]]\n", "structshape(t2)" @@ -1494,10 +2170,21 @@ }, { "cell_type": "code", - "execution_count": 71, + "execution_count": 73, "id": "04028afd", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'list of (3 int, float, 2 str, 2 list of int, int)'" + ] + }, + "execution_count": 73, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t3 = [1, 2, 3, 4.0, '5', '6', [7], [8], 9]\n", "structshape(t3)" @@ -1513,10 +2200,21 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": 74, "id": "b5d45c88", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'list of 3 tuple of (int, str)'" + ] + }, + "execution_count": 74, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "s = 'abc'\n", "lt = list(zip(t, s))\n", @@ -1533,10 +2231,21 @@ }, { "cell_type": "code", - "execution_count": 73, + "execution_count": 75, "id": "15131907", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'dict of 3 int->str'" + ] + }, + "execution_count": 75, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "d = dict(lt) \n", "structshape(d)" @@ -1587,12 +2296,20 @@ }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 76, "id": "c65d68d2", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Verbose\n" + ] + } + ], "source": [ "# This cell tells Jupyter to provide detailed debugging information\n", "# when a runtime error occurs. Run it before working on the exercises.\n", @@ -1633,10 +2350,21 @@ }, { "cell_type": "code", - "execution_count": 75, + "execution_count": 77, "id": "4416fe4a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "([1, 2, 3], [4, 5])" + ] + }, + "execution_count": 77, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "list0 = [1, 2, 3]\n", "list1 = [4, 5]\n", @@ -1655,14 +2383,57 @@ }, { "cell_type": "code", - "execution_count": 76, + "execution_count": 78, "id": "e6eda0e4", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[4, 5, 6]\n" + ] + }, + { + "data": { + "text/plain": [ + "([1, 2, 3], [4, 5, 6])" + ] + }, + "execution_count": 78, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Solution goes here\n", + "list1.append(6)\n", + "print(list1)\n", + "t" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "271ba8e3", + "metadata": {}, + "outputs": [ + { + "ename": "TypeError", + "evalue": "unhashable type: 'list'", + "output_type": "error", + "traceback": [ + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mTypeError\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[80]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[32m----> \u001b[39m\u001b[32m1\u001b[39m d = {t: \u001b[33m\"\u001b[39m\u001b[33mvalue\u001b[39m\u001b[33m\"\u001b[39m}\n d \u001b[34m= \u001b[39m\u001b[34m{1: 'a', 2: 'b', 3: 'c'}\u001b[39m\n t \u001b[34m= \u001b[39m\u001b[34m([1, 2, 3], [4, 5, 6])\u001b[39m", + "\u001b[31mTypeError\u001b[39m: unhashable type: 'list'" + ] + } + ], "source": [ - "# Solution goes here" + "d = {t: \"value\"} # Expected error" ] }, { @@ -1675,14 +2446,18 @@ }, { "cell_type": "code", - "execution_count": 77, + "execution_count": null, "id": "4fae1acc", "metadata": { "tags": [] }, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "test_dict = {}\n", + "test_dict[\"value\"] = t\n", + "\n", + "#test_dict[t] = \"value\" # expected error" ] }, { @@ -1707,7 +2482,7 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": 84, "id": "855c7ed2", "metadata": {}, "outputs": [], @@ -1727,10 +2502,21 @@ }, { "cell_type": "code", - "execution_count": 79, + "execution_count": 85, "id": "3c921f68", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "0" + ] + }, + "execution_count": 85, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "letter_map['a']" ] @@ -1746,10 +2532,21 @@ }, { "cell_type": "code", - "execution_count": 80, + "execution_count": 86, "id": "b029b0da", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'b'" + ] + }, + "execution_count": 86, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "letters[1]" ] @@ -1783,9 +2580,17 @@ "You can use this outline to get started." ] }, + { + "cell_type": "markdown", + "id": "dc8a0dfb", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "code", - "execution_count": 81, + "execution_count": 94, "id": "1cc07036", "metadata": { "tags": [] @@ -1805,22 +2610,72 @@ }, { "cell_type": "code", - "execution_count": 82, + "execution_count": 120, "id": "96560a0e", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def shift_word(word, n=2):\n", + " \"\"\"Shift the letters of `word` by `n` places.\n", + " \n", + " >>> shift_word('cheer', 7)\n", + " 'jolly'\n", + " >>> shift_word('melon', 16)\n", + " 'cubed'\n", + " \"\"\"\n", + "\n", + " c_cipher = []\n", + "\n", + " for letter in word:\n", + " current_pos = letter_map[letter]\n", + " new_pos = (current_pos + n) % 26\n", + " new_letter = letters[new_pos]\n", + " c_cipher.append(new_letter)\n", + "\n", + " return ''.join(c_cipher)" ] }, { "cell_type": "code", - "execution_count": 83, + "execution_count": 122, + "id": "8b0d13d3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'jgnnq'" + ] + }, + "execution_count": 122, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "shift_word('hello')" + ] + }, + { + "cell_type": "code", + "execution_count": 116, "id": "c026c6d1", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'jolly'" + ] + }, + "execution_count": 116, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "shift_word('cheer', 7)" ] @@ -2362,7 +3217,7 @@ "metadata": { "celltoolbar": "Tags", "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "thinkpy", "language": "python", "name": "python3" }, @@ -2376,7 +3231,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.13.5" } }, "nbformat": 4, diff --git a/chapters/structshape.py b/chapters/structshape.py new file mode 100644 index 00000000..f40b6967 --- /dev/null +++ b/chapters/structshape.py @@ -0,0 +1,130 @@ +""" +This module provides one function, structshape(), which takes +an object of any type and returns a string that summarizes the +"shape" of the data structure; that is, the type, size and +composition. + +Copyright 2012 Allen B. Downey +Distributed under the GNU General Public License at gnu.org/licenses/gpl.html. + +""" + +def structshape(ds): + """Returns a string that describes the shape of a data structure. + + ds: any Python object + + Returns: string + """ + typename = type(ds).__name__ + + # handle sequences + sequence = (list, tuple, set, type(iter(''))) + if isinstance(ds, sequence): + t = [] + for i, x in enumerate(ds): + t.append(structshape(x)) + rep = '%s of %s' % (typename, listrep(t)) + return rep + + # handle dictionaries + elif isinstance(ds, dict): + keys = set() + vals = set() + for k, v in ds.items(): + keys.add(structshape(k)) + vals.add(structshape(v)) + rep = '%s of %d %s->%s' % (typename, len(ds), + setrep(keys), setrep(vals)) + return rep + + # handle other types + else: + if hasattr(ds, '__class__'): + return ds.__class__.__name__ + else: + return typename + + +def listrep(t): + """Returns a string representation of a list of type strings. + + t: list of strings + + Returns: string + """ + current = t[0] + count = 0 + res = [] + for x in t: + if x == current: + count += 1 + else: + append(res, current, count) + current = x + count = 1 + append(res, current, count) + return setrep(res) + + +def setrep(s): + """Returns a string representation of a set of type strings. + + s: set of strings + + Returns: string + """ + rep = ', '.join(s) + if len(s) == 1: + return rep + else: + return '(' + rep + ')' + return + + +def append(res, typestr, count): + """Adds a new element to a list of type strings. + + Modifies res. + + res: list of type strings + typestr: the new type string + count: how many of the new type there are + + Returns: None + """ + if count == 1: + rep = typestr + else: + rep = '%d %s' % (count, typestr) + res.append(rep) + + +if __name__ == '__main__': + + t = [1,2,3] + print(structshape(t)) + + t2 = [[1,2], [3,4], [5,6]] + print(structshape(t2)) + + t3 = [1, 2, 3, 4.0, '5', '6', [7], [8], 9] + print(structshape(t3)) + + class Point: + """trivial object type""" + + t4 = [Point(), Point()] + print(structshape(t4)) + + s = set('abc') + print(structshape(s)) + + lt = zip(t, s) + print(structshape(lt)) + + d = dict(lt) + print(structshape(d)) + + it = iter('abc') + print(structshape(it)) From d37f41daed96beb377986ed1ef425e513d648960 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Fri, 30 Jan 2026 14:26:51 +0000 Subject: [PATCH 29/56] Solution most frequent letters. Note: item[0] is always the first element's item and item[1] is the second. --- .DS_Store | Bin 6148 -> 6148 bytes chapters/chap11.ipynb | 478 +++++++++++++++++++++++++++--------------- 2 files changed, 309 insertions(+), 169 deletions(-) diff --git a/.DS_Store b/.DS_Store index f1f0a56f818b651c7603eb1d3c84c03682d9b20e..365716d9f2a9636ad65f7dbcfc7c493765f54b3f 100644 GIT binary patch delta 22 dcmZoMXffEZfQi%6)IdkU(9F@Q2@Q2" + "" ] }, - "execution_count": 13, + "execution_count": 92, "metadata": {}, "output_type": "execute_result" } @@ -429,7 +429,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 93, "id": "65d7ebaa", "metadata": {}, "outputs": [ @@ -439,7 +439,7 @@ "('n', 'i', 'p', 'u', 'l')" ] }, - "execution_count": 14, + "execution_count": 93, "metadata": {}, "output_type": "execute_result" } @@ -468,7 +468,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 94, "id": "b4970fe0", "metadata": { "tags": [] @@ -479,7 +479,10 @@ "evalue": "'tuple' object does not support item assignment", "output_type": "error", "traceback": [ - "\u001b[31mTypeError\u001b[39m\u001b[31m:\u001b[39m 'tuple' object does not support item assignment\n" + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mTypeError\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[94]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[32m----> \u001b[39m\u001b[32m1\u001b[39m \u001b[43mt\u001b[49m\u001b[43m[\u001b[49m\u001b[32;43m0\u001b[39;49m\u001b[43m]\u001b[49m = \u001b[33m'\u001b[39m\u001b[33mL\u001b[39m\u001b[33m'\u001b[39m\n t[0] \u001b[34m= \u001b[39m\u001b[34m'l'\u001b[39m\n t \u001b[34m= \u001b[39m\u001b[34m('l', 'u', 'p', 'i', 'n')\u001b[39m", + "\u001b[31mTypeError\u001b[39m: 'tuple' object does not support item assignment" ] } ], @@ -498,7 +501,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 95, "id": "772738cc", "metadata": { "tags": [] @@ -509,7 +512,10 @@ "evalue": "'tuple' object has no attribute 'remove'", "output_type": "error", "traceback": [ - "\u001b[31mAttributeError\u001b[39m\u001b[31m:\u001b[39m 'tuple' object has no attribute 'remove'\n" + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mAttributeError\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[95]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[32m----> \u001b[39m\u001b[32m1\u001b[39m \u001b[43mt\u001b[49m\u001b[43m.\u001b[49m\u001b[43mremove\u001b[49m(\u001b[33m'\u001b[39m\u001b[33ml\u001b[39m\u001b[33m'\u001b[39m)\n t \u001b[34m= \u001b[39m\u001b[34m('l', 'u', 'p', 'i', 'n')\u001b[39m", + "\u001b[31mAttributeError\u001b[39m: 'tuple' object has no attribute 'remove'" ] } ], @@ -532,7 +538,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 96, "id": "37e67042", "metadata": {}, "outputs": [], @@ -552,7 +558,7 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 97, "id": "d809a490", "metadata": {}, "outputs": [ @@ -562,7 +568,7 @@ "3" ] }, - "execution_count": 18, + "execution_count": 97, "metadata": {}, "output_type": "execute_result" } @@ -581,7 +587,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 98, "id": "dfc42a8b", "metadata": {}, "outputs": [ @@ -591,7 +597,7 @@ "7" ] }, - "execution_count": 19, + "execution_count": 98, "metadata": {}, "output_type": "execute_result" } @@ -611,7 +617,7 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 99, "id": "2debf30c", "metadata": {}, "outputs": [ @@ -634,7 +640,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 100, "id": "b6b8b218", "metadata": {}, "outputs": [ @@ -666,7 +672,7 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 101, "id": "1e94ea37", "metadata": {}, "outputs": [], @@ -685,7 +691,7 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 102, "id": "99c96c7f", "metadata": {}, "outputs": [ @@ -695,7 +701,7 @@ "(1, 2)" ] }, - "execution_count": 23, + "execution_count": 102, "metadata": {}, "output_type": "execute_result" } @@ -715,7 +721,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 103, "id": "b67881ed", "metadata": {}, "outputs": [], @@ -734,7 +740,7 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 104, "id": "b4515e2b", "metadata": {}, "outputs": [ @@ -744,7 +750,7 @@ "('monty', 'python.org')" ] }, - "execution_count": 25, + "execution_count": 104, "metadata": {}, "output_type": "execute_result" } @@ -764,7 +770,7 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 105, "id": "8e5b4a14", "metadata": { "tags": [] @@ -775,7 +781,10 @@ "evalue": "too many values to unpack (expected 2)", "output_type": "error", "traceback": [ - "\u001b[31mValueError\u001b[39m\u001b[31m:\u001b[39m too many values to unpack (expected 2)\n" + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mValueError\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[105]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[32m----> \u001b[39m\u001b[32m1\u001b[39m a, b = \u001b[32m1\u001b[39m, \u001b[32m2\u001b[39m, \u001b[32m3\u001b[39m\n a, b \u001b[34m= \u001b[39m\u001b[34m(1, 2)\u001b[39m\n a \u001b[34m= \u001b[39m\u001b[34m1\u001b[39m\n b \u001b[34m= \u001b[39m\u001b[34m2\u001b[39m", + "\u001b[31mValueError\u001b[39m: too many values to unpack (expected 2)" ] } ], @@ -795,7 +804,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 106, "id": "2389d6de", "metadata": {}, "outputs": [], @@ -815,7 +824,7 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 107, "id": "5512edec", "metadata": {}, "outputs": [], @@ -836,7 +845,7 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 108, "id": "651ab417", "metadata": {}, "outputs": [ @@ -869,7 +878,7 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 109, "id": "2c0b7d47", "metadata": {}, "outputs": [ @@ -914,7 +923,7 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 110, "id": "fff80eaa", "metadata": {}, "outputs": [ @@ -924,7 +933,7 @@ "(2, 1)" ] }, - "execution_count": 31, + "execution_count": 110, "metadata": {}, "output_type": "execute_result" } @@ -943,7 +952,7 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 111, "id": "4a0eb2a9", "metadata": {}, "outputs": [ @@ -953,7 +962,7 @@ "2" ] }, - "execution_count": 32, + "execution_count": 111, "metadata": {}, "output_type": "execute_result" } @@ -965,7 +974,7 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 112, "id": "d74ba1b6", "metadata": {}, "outputs": [ @@ -975,7 +984,7 @@ "1" ] }, - "execution_count": 33, + "execution_count": 112, "metadata": {}, "output_type": "execute_result" } @@ -994,7 +1003,7 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 113, "id": "dad3b3bb", "metadata": {}, "outputs": [], @@ -1014,7 +1023,7 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 114, "id": "fbd90b0e", "metadata": {}, "outputs": [ @@ -1024,7 +1033,7 @@ "(2, 450)" ] }, - "execution_count": 35, + "execution_count": 114, "metadata": {}, "output_type": "execute_result" } @@ -1043,7 +1052,7 @@ }, { "cell_type": "code", - "execution_count": 36, + "execution_count": 115, "id": "5a101efb", "metadata": {}, "outputs": [ @@ -1079,7 +1088,7 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 116, "id": "0a33e2d0", "metadata": {}, "outputs": [], @@ -1099,7 +1108,7 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 117, "id": "336a08ca", "metadata": {}, "outputs": [ @@ -1109,7 +1118,7 @@ "2.0" ] }, - "execution_count": 38, + "execution_count": 117, "metadata": {}, "output_type": "execute_result" } @@ -1120,7 +1129,7 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 118, "id": "7ebf09fd", "metadata": {}, "outputs": [ @@ -1130,7 +1139,7 @@ "2.6666666666666665" ] }, - "execution_count": 39, + "execution_count": 118, "metadata": {}, "output_type": "execute_result" } @@ -1150,7 +1159,7 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 119, "id": "991810bc", "metadata": { "tags": [] @@ -1161,7 +1170,10 @@ "evalue": "divmod expected 2 arguments, got 1", "output_type": "error", "traceback": [ - "\u001b[31mTypeError\u001b[39m\u001b[31m:\u001b[39m divmod expected 2 arguments, got 1\n" + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mTypeError\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[119]\u001b[39m\u001b[32m, line 2\u001b[39m\n\u001b[32m 1\u001b[39m t = (\u001b[32m7\u001b[39m, \u001b[32m3\u001b[39m)\n\u001b[32m----> \u001b[39m\u001b[32m2\u001b[39m \u001b[38;5;28;43mdivmod\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43mt\u001b[49m\u001b[43m)\u001b[49m\n t \u001b[34m= \u001b[39m\u001b[34m(7, 3)\u001b[39m", + "\u001b[31mTypeError\u001b[39m: divmod expected 2 arguments, got 1" ] } ], @@ -1182,7 +1194,7 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 120, "id": "f25ebee1", "metadata": {}, "outputs": [ @@ -1192,7 +1204,7 @@ "(2, 1)" ] }, - "execution_count": 41, + "execution_count": 120, "metadata": {}, "output_type": "execute_result" } @@ -1212,7 +1224,7 @@ }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 121, "id": "7ad64412", "metadata": {}, "outputs": [], @@ -1239,7 +1251,7 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 122, "id": "b2863701", "metadata": {}, "outputs": [ @@ -1249,7 +1261,7 @@ "4.0" ] }, - "execution_count": 43, + "execution_count": 122, "metadata": {}, "output_type": "execute_result" } @@ -1260,7 +1272,7 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 123, "id": "cc1afa29", "metadata": {}, "outputs": [ @@ -1270,7 +1282,7 @@ "2.5" ] }, - "execution_count": 44, + "execution_count": 123, "metadata": {}, "output_type": "execute_result" } @@ -1300,7 +1312,7 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 124, "id": "ad3e6f81", "metadata": {}, "outputs": [], @@ -1320,17 +1332,17 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 125, "id": "9ce313ce", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 46, + "execution_count": 125, "metadata": {}, "output_type": "execute_result" } @@ -1349,7 +1361,7 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 126, "id": "321d9c30", "metadata": {}, "outputs": [ @@ -1383,7 +1395,7 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": 127, "id": "7eb73d5d", "metadata": {}, "outputs": [ @@ -1422,7 +1434,7 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 128, "id": "9529baa8", "metadata": {}, "outputs": [ @@ -1432,7 +1444,7 @@ "[(1, 5), (2, 5), (4, 2), (5, 2), (1, 5), (5, 2), (2, 3)]" ] }, - "execution_count": 49, + "execution_count": 128, "metadata": {}, "output_type": "execute_result" } @@ -1452,7 +1464,7 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 129, "id": "dbde77b8", "metadata": {}, "outputs": [ @@ -1462,7 +1474,7 @@ "(2, 3)" ] }, - "execution_count": 50, + "execution_count": 129, "metadata": {}, "output_type": "execute_result" } @@ -1482,7 +1494,7 @@ }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 130, "id": "dbb7d0b3", "metadata": {}, "outputs": [ @@ -1514,7 +1526,7 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 131, "id": "49e3fd8e", "metadata": {}, "outputs": [ @@ -1524,7 +1536,7 @@ "(0, 25)" ] }, - "execution_count": 52, + "execution_count": 131, "metadata": {}, "output_type": "execute_result" } @@ -1545,17 +1557,17 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": 132, "id": "9e4f3e51", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 53, + "execution_count": 132, "metadata": {}, "output_type": "execute_result" } @@ -1574,7 +1586,7 @@ }, { "cell_type": "code", - "execution_count": 54, + "execution_count": 133, "id": "c1dcb46d", "metadata": {}, "outputs": [ @@ -1631,7 +1643,7 @@ }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 134, "id": "aed20c28", "metadata": {}, "outputs": [ @@ -1641,7 +1653,7 @@ "True" ] }, - "execution_count": 55, + "execution_count": 134, "metadata": {}, "output_type": "execute_result" } @@ -1660,7 +1672,7 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 135, "id": "4d9e73b3", "metadata": {}, "outputs": [ @@ -1670,7 +1682,7 @@ "True" ] }, - "execution_count": 56, + "execution_count": 135, "metadata": {}, "output_type": "execute_result" } @@ -1691,7 +1703,7 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": 136, "id": "2077dfa9", "metadata": {}, "outputs": [], @@ -1716,7 +1728,7 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 137, "id": "b3d40516", "metadata": {}, "outputs": [ @@ -1726,7 +1738,7 @@ "{'b': 1, 'a': 3, 'n': 2}" ] }, - "execution_count": 58, + "execution_count": 137, "metadata": {}, "output_type": "execute_result" } @@ -1749,7 +1761,7 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 138, "id": "8288c28f", "metadata": {}, "outputs": [ @@ -1759,7 +1771,7 @@ "dict_items([('b', 1), ('a', 3), ('n', 2)])" ] }, - "execution_count": 59, + "execution_count": 138, "metadata": {}, "output_type": "execute_result" } @@ -1779,7 +1791,7 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 139, "id": "bbbade35", "metadata": {}, "outputs": [ @@ -1789,7 +1801,7 @@ "[('a', 3), ('b', 1), ('n', 2)]" ] }, - "execution_count": 60, + "execution_count": 139, "metadata": {}, "output_type": "execute_result" } @@ -1811,7 +1823,7 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 140, "id": "a4c31795", "metadata": {}, "outputs": [], @@ -1830,7 +1842,7 @@ }, { "cell_type": "code", - "execution_count": 62, + "execution_count": 141, "id": "f3d3619a", "metadata": {}, "outputs": [ @@ -1840,7 +1852,7 @@ "[('b', 1), ('n', 2), ('a', 3)]" ] }, - "execution_count": 62, + "execution_count": 141, "metadata": {}, "output_type": "execute_result" } @@ -1862,7 +1874,7 @@ }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 142, "id": "f078c8a6", "metadata": {}, "outputs": [ @@ -1872,7 +1884,7 @@ "('a', 3)" ] }, - "execution_count": 63, + "execution_count": 142, "metadata": {}, "output_type": "execute_result" } @@ -1892,7 +1904,7 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 143, "id": "54030d8f", "metadata": {}, "outputs": [ @@ -1902,7 +1914,7 @@ "('a', 3)" ] }, - "execution_count": 64, + "execution_count": 143, "metadata": {}, "output_type": "execute_result" } @@ -1913,7 +1925,7 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 144, "id": "7f1465f5", "metadata": {}, "outputs": [ @@ -1923,7 +1935,7 @@ "('b', 1)" ] }, - "execution_count": 65, + "execution_count": 144, "metadata": {}, "output_type": "execute_result" } @@ -1958,7 +1970,7 @@ }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 145, "id": "ef158f81", "metadata": {}, "outputs": [ @@ -1968,7 +1980,7 @@ "{'p': 1, 'a': 1, 'r': 2, 'o': 1, 't': 1}" ] }, - "execution_count": 66, + "execution_count": 145, "metadata": {}, "output_type": "execute_result" } @@ -1990,7 +2002,7 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 146, "id": "d3607b8d", "metadata": {}, "outputs": [], @@ -2019,7 +2031,7 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 147, "id": "692d9cf8", "metadata": {}, "outputs": [ @@ -2029,7 +2041,7 @@ "{1: ['p', 'a', 'o', 't'], 2: ['r']}" ] }, - "execution_count": 68, + "execution_count": 147, "metadata": {}, "output_type": "execute_result" } @@ -2071,7 +2083,7 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": 148, "id": "e9f03e91", "metadata": { "tags": [] @@ -2091,7 +2103,7 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": 149, "id": "90ab624a", "metadata": {}, "outputs": [], @@ -2109,7 +2121,7 @@ }, { "cell_type": "code", - "execution_count": 71, + "execution_count": 150, "id": "6794330f", "metadata": {}, "outputs": [ @@ -2119,7 +2131,7 @@ "'list of 3 int'" ] }, - "execution_count": 71, + "execution_count": 150, "metadata": {}, "output_type": "execute_result" } @@ -2139,7 +2151,7 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": 151, "id": "54cd185b", "metadata": {}, "outputs": [ @@ -2149,7 +2161,7 @@ "'list of 3 list of 2 int'" ] }, - "execution_count": 72, + "execution_count": 151, "metadata": {}, "output_type": "execute_result" } @@ -2170,7 +2182,7 @@ }, { "cell_type": "code", - "execution_count": 73, + "execution_count": 152, "id": "04028afd", "metadata": {}, "outputs": [ @@ -2180,7 +2192,7 @@ "'list of (3 int, float, 2 str, 2 list of int, int)'" ] }, - "execution_count": 73, + "execution_count": 152, "metadata": {}, "output_type": "execute_result" } @@ -2200,7 +2212,7 @@ }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 153, "id": "b5d45c88", "metadata": {}, "outputs": [ @@ -2210,7 +2222,7 @@ "'list of 3 tuple of (int, str)'" ] }, - "execution_count": 74, + "execution_count": 153, "metadata": {}, "output_type": "execute_result" } @@ -2231,7 +2243,7 @@ }, { "cell_type": "code", - "execution_count": 75, + "execution_count": 154, "id": "15131907", "metadata": {}, "outputs": [ @@ -2241,7 +2253,7 @@ "'dict of 3 int->str'" ] }, - "execution_count": 75, + "execution_count": 154, "metadata": {}, "output_type": "execute_result" } @@ -2296,7 +2308,7 @@ }, { "cell_type": "code", - "execution_count": 76, + "execution_count": 155, "id": "c65d68d2", "metadata": { "tags": [] @@ -2350,7 +2362,7 @@ }, { "cell_type": "code", - "execution_count": 77, + "execution_count": 156, "id": "4416fe4a", "metadata": {}, "outputs": [ @@ -2360,7 +2372,7 @@ "([1, 2, 3], [4, 5])" ] }, - "execution_count": 77, + "execution_count": 156, "metadata": {}, "output_type": "execute_result" } @@ -2383,7 +2395,7 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": 157, "id": "e6eda0e4", "metadata": { "tags": [] @@ -2402,7 +2414,7 @@ "([1, 2, 3], [4, 5, 6])" ] }, - "execution_count": 78, + "execution_count": 157, "metadata": {}, "output_type": "execute_result" } @@ -2416,7 +2428,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 158, "id": "271ba8e3", "metadata": {}, "outputs": [ @@ -2427,12 +2439,14 @@ "traceback": [ "\u001b[31m---------------------------------------------------------------------------\u001b[39m", "\u001b[31mTypeError\u001b[39m Traceback (most recent call last)", - "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[80]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[32m----> \u001b[39m\u001b[32m1\u001b[39m d = {t: \u001b[33m\"\u001b[39m\u001b[33mvalue\u001b[39m\u001b[33m\"\u001b[39m}\n d \u001b[34m= \u001b[39m\u001b[34m{1: 'a', 2: 'b', 3: 'c'}\u001b[39m\n t \u001b[34m= \u001b[39m\u001b[34m([1, 2, 3], [4, 5, 6])\u001b[39m", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[158]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[32m----> \u001b[39m\u001b[32m1\u001b[39m d = {t: \u001b[33m\"\u001b[39m\u001b[33mvalue\u001b[39m\u001b[33m\"\u001b[39m} \u001b[38;5;66;03m# Expected error\u001b[39;00m\n d \u001b[34m= \u001b[39m\u001b[34m{1: 'a', 2: 'b', 3: 'c'}\u001b[39m\n t \u001b[34m= \u001b[39m\u001b[34m([1, 2, 3], [4, 5, 6])\u001b[39m", "\u001b[31mTypeError\u001b[39m: unhashable type: 'list'" ] } ], "source": [ + "%%expect_error\n", + "\n", "d = {t: \"value\"} # Expected error" ] }, @@ -2446,7 +2460,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 159, "id": "4fae1acc", "metadata": { "tags": [] @@ -2482,7 +2496,7 @@ }, { "cell_type": "code", - "execution_count": 84, + "execution_count": 160, "id": "855c7ed2", "metadata": {}, "outputs": [], @@ -2502,7 +2516,7 @@ }, { "cell_type": "code", - "execution_count": 85, + "execution_count": 161, "id": "3c921f68", "metadata": {}, "outputs": [ @@ -2512,7 +2526,7 @@ "0" ] }, - "execution_count": 85, + "execution_count": 161, "metadata": {}, "output_type": "execute_result" } @@ -2532,7 +2546,7 @@ }, { "cell_type": "code", - "execution_count": 86, + "execution_count": 162, "id": "b029b0da", "metadata": {}, "outputs": [ @@ -2542,7 +2556,7 @@ "'b'" ] }, - "execution_count": 86, + "execution_count": 162, "metadata": {}, "output_type": "execute_result" } @@ -2580,17 +2594,9 @@ "You can use this outline to get started." ] }, - { - "cell_type": "markdown", - "id": "dc8a0dfb", - "metadata": {}, - "source": [ - "### BOOKMARK" - ] - }, { "cell_type": "code", - "execution_count": 94, + "execution_count": 163, "id": "1cc07036", "metadata": { "tags": [] @@ -2610,7 +2616,7 @@ }, { "cell_type": "code", - "execution_count": 120, + "execution_count": 164, "id": "96560a0e", "metadata": {}, "outputs": [], @@ -2638,7 +2644,7 @@ }, { "cell_type": "code", - "execution_count": 122, + "execution_count": 165, "id": "8b0d13d3", "metadata": {}, "outputs": [ @@ -2648,7 +2654,7 @@ "'jgnnq'" ] }, - "execution_count": 122, + "execution_count": 165, "metadata": {}, "output_type": "execute_result" } @@ -2659,7 +2665,7 @@ }, { "cell_type": "code", - "execution_count": 116, + "execution_count": 166, "id": "c026c6d1", "metadata": { "tags": [] @@ -2671,7 +2677,7 @@ "'jolly'" ] }, - "execution_count": 116, + "execution_count": 166, "metadata": {}, "output_type": "execute_result" } @@ -2682,12 +2688,23 @@ }, { "cell_type": "code", - "execution_count": 84, + "execution_count": 167, "id": "5814999d", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'cubed'" + ] + }, + "execution_count": 167, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "shift_word('melon', 16)" ] @@ -2704,7 +2721,7 @@ }, { "cell_type": "code", - "execution_count": 85, + "execution_count": 168, "id": "9464d140", "metadata": { "tags": [] @@ -2719,6 +2736,14 @@ "run_doctests(shift_word)" ] }, + { + "cell_type": "markdown", + "id": "dc8a0dfb", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "779f13af", @@ -2743,7 +2768,7 @@ }, { "cell_type": "code", - "execution_count": 86, + "execution_count": 249, "id": "4309d0b5", "metadata": { "tags": [] @@ -2751,17 +2776,49 @@ "outputs": [], "source": [ "def most_frequent_letters(string):\n", - " return None" + " counter = {}\n", + "\n", + " for letter in string:\n", + " if letter.isalpha():\n", + " if letter not in counter:\n", + " counter[letter] = 1\n", + " else:\n", + " counter[letter] += 1\n", + " else:\n", + " continue\n", + "\n", + " sorted_counts = counter.items()\n", + "\n", + " sorted_counts = sorted(sorted_counts, key=lambda letter: letter[-1], reverse=True)\n", + "\n", + " freq_letters = []\n", + "\n", + " for char in sorted_counts:\n", + " freq_letters.append(char[0])\n", + " \n", + " return freq_letters" ] }, { "cell_type": "code", - "execution_count": 87, + "execution_count": 250, "id": "52228828", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['a', 'n', 'b']" + ] + }, + "execution_count": 250, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "most_frequent_letters('banana')" ] }, { @@ -2776,12 +2833,23 @@ }, { "cell_type": "code", - "execution_count": 88, + "execution_count": 251, "id": "3bf2aa0d", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['r', 'o', 's', 'u', 'b', 'n', 't', 'a']" + ] + }, + "execution_count": 251, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "most_frequent_letters('brontosaurus')" ] @@ -2798,7 +2866,7 @@ }, { "cell_type": "code", - "execution_count": 89, + "execution_count": 252, "id": "e4fbf5d9", "metadata": { "tags": [] @@ -2810,12 +2878,84 @@ }, { "cell_type": "code", - "execution_count": 90, + "execution_count": 253, "id": "817ec689", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['e',\n", + " 't',\n", + " 'a',\n", + " 'o',\n", + " 'n',\n", + " 'h',\n", + " 's',\n", + " 'i',\n", + " 'r',\n", + " 'd',\n", + " 'l',\n", + " 'u',\n", + " 'w',\n", + " 'm',\n", + " 'f',\n", + " 'c',\n", + " 'y',\n", + " 'g',\n", + " 'p',\n", + " 'b',\n", + " 'k',\n", + " 'I',\n", + " 'v',\n", + " 'T',\n", + " 'H',\n", + " 'A',\n", + " 'W',\n", + " 'M',\n", + " 'S',\n", + " 'x',\n", + " 'L',\n", + " 'C',\n", + " 'D',\n", + " 'P',\n", + " 'q',\n", + " 'G',\n", + " 'j',\n", + " 'B',\n", + " 'E',\n", + " 'J',\n", + " 'V',\n", + " 'O',\n", + " 'R',\n", + " 'N',\n", + " 'Y',\n", + " 'z',\n", + " 'F',\n", + " 'U',\n", + " 'Q',\n", + " 'K',\n", + " 'X',\n", + " 'è',\n", + " 'æ',\n", + " 'ö',\n", + " 'Z',\n", + " 'ë',\n", + " 'é',\n", + " 'â',\n", + " 'ï',\n", + " 'á',\n", + " 'ô',\n", + " 'à']" + ] + }, + "execution_count": 253, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "string = open('pg345.txt').read()\n", "most_frequent_letters(string)" From 8f85bfafb17314b854deeab819950e660cb96360 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Mon, 2 Feb 2026 17:43:45 +0000 Subject: [PATCH 30/56] Sort anagrams solution --- chapters/chap11.ipynb | 419 +++++++++++++++++++++++------------------- 1 file changed, 230 insertions(+), 189 deletions(-) diff --git a/chapters/chap11.ipynb b/chapters/chap11.ipynb index f7bcdcf8..8ffeaf99 100644 --- a/chapters/chap11.ipynb +++ b/chapters/chap11.ipynb @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": 80, + "execution_count": 1, "id": "295ac6d7", "metadata": { "tags": [] @@ -70,7 +70,7 @@ }, { "cell_type": "code", - "execution_count": 81, + "execution_count": 2, "id": "fb0bdca2", "metadata": {}, "outputs": [ @@ -80,7 +80,7 @@ "tuple" ] }, - "execution_count": 81, + "execution_count": 2, "metadata": {}, "output_type": "execute_result" } @@ -100,7 +100,7 @@ }, { "cell_type": "code", - "execution_count": 82, + "execution_count": 3, "id": "5a6da881", "metadata": {}, "outputs": [ @@ -110,7 +110,7 @@ "tuple" ] }, - "execution_count": 82, + "execution_count": 3, "metadata": {}, "output_type": "execute_result" } @@ -130,7 +130,7 @@ }, { "cell_type": "code", - "execution_count": 83, + "execution_count": 4, "id": "e2596ca7", "metadata": {}, "outputs": [ @@ -140,7 +140,7 @@ "tuple" ] }, - "execution_count": 83, + "execution_count": 4, "metadata": {}, "output_type": "execute_result" } @@ -160,7 +160,7 @@ }, { "cell_type": "code", - "execution_count": 84, + "execution_count": 5, "id": "a0d350a6", "metadata": {}, "outputs": [ @@ -170,7 +170,7 @@ "str" ] }, - "execution_count": 84, + "execution_count": 5, "metadata": {}, "output_type": "execute_result" } @@ -191,7 +191,7 @@ }, { "cell_type": "code", - "execution_count": 85, + "execution_count": 6, "id": "c9100ee4", "metadata": {}, "outputs": [ @@ -201,7 +201,7 @@ "()" ] }, - "execution_count": 85, + "execution_count": 6, "metadata": {}, "output_type": "execute_result" } @@ -222,7 +222,7 @@ }, { "cell_type": "code", - "execution_count": 86, + "execution_count": 7, "id": "44bd3d83", "metadata": {}, "outputs": [ @@ -232,7 +232,7 @@ "('l', 'u', 'p', 'i', 'n')" ] }, - "execution_count": 86, + "execution_count": 7, "metadata": {}, "output_type": "execute_result" } @@ -255,7 +255,7 @@ }, { "cell_type": "code", - "execution_count": 87, + "execution_count": 8, "id": "92e55b2c", "metadata": {}, "outputs": [ @@ -265,7 +265,7 @@ "'l'" ] }, - "execution_count": 87, + "execution_count": 8, "metadata": {}, "output_type": "execute_result" } @@ -284,7 +284,7 @@ }, { "cell_type": "code", - "execution_count": 88, + "execution_count": 9, "id": "38ee5c2a", "metadata": {}, "outputs": [ @@ -294,7 +294,7 @@ "('u', 'p')" ] }, - "execution_count": 88, + "execution_count": 9, "metadata": {}, "output_type": "execute_result" } @@ -313,7 +313,7 @@ }, { "cell_type": "code", - "execution_count": 89, + "execution_count": 10, "id": "2e0e311a", "metadata": {}, "outputs": [ @@ -323,7 +323,7 @@ "('l', 'u', 'p', 'i', 'n')" ] }, - "execution_count": 89, + "execution_count": 10, "metadata": {}, "output_type": "execute_result" } @@ -342,7 +342,7 @@ }, { "cell_type": "code", - "execution_count": 90, + "execution_count": 11, "id": "8bb7d715", "metadata": {}, "outputs": [ @@ -352,7 +352,7 @@ "('s', 'p', 'a', 'm', 's', 'p', 'a', 'm')" ] }, - "execution_count": 90, + "execution_count": 11, "metadata": {}, "output_type": "execute_result" } @@ -371,7 +371,7 @@ }, { "cell_type": "code", - "execution_count": 91, + "execution_count": 12, "id": "e653e00f", "metadata": {}, "outputs": [ @@ -381,7 +381,7 @@ "['i', 'l', 'n', 'p', 'u']" ] }, - "execution_count": 91, + "execution_count": 12, "metadata": {}, "output_type": "execute_result" } @@ -400,17 +400,17 @@ }, { "cell_type": "code", - "execution_count": 92, + "execution_count": 13, "id": "8969188d", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 92, + "execution_count": 13, "metadata": {}, "output_type": "execute_result" } @@ -429,7 +429,7 @@ }, { "cell_type": "code", - "execution_count": 93, + "execution_count": 14, "id": "65d7ebaa", "metadata": {}, "outputs": [ @@ -439,7 +439,7 @@ "('n', 'i', 'p', 'u', 'l')" ] }, - "execution_count": 93, + "execution_count": 14, "metadata": {}, "output_type": "execute_result" } @@ -468,7 +468,7 @@ }, { "cell_type": "code", - "execution_count": 94, + "execution_count": 15, "id": "b4970fe0", "metadata": { "tags": [] @@ -479,10 +479,7 @@ "evalue": "'tuple' object does not support item assignment", "output_type": "error", "traceback": [ - "\u001b[31m---------------------------------------------------------------------------\u001b[39m", - "\u001b[31mTypeError\u001b[39m Traceback (most recent call last)", - "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[94]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[32m----> \u001b[39m\u001b[32m1\u001b[39m \u001b[43mt\u001b[49m\u001b[43m[\u001b[49m\u001b[32;43m0\u001b[39;49m\u001b[43m]\u001b[49m = \u001b[33m'\u001b[39m\u001b[33mL\u001b[39m\u001b[33m'\u001b[39m\n t[0] \u001b[34m= \u001b[39m\u001b[34m'l'\u001b[39m\n t \u001b[34m= \u001b[39m\u001b[34m('l', 'u', 'p', 'i', 'n')\u001b[39m", - "\u001b[31mTypeError\u001b[39m: 'tuple' object does not support item assignment" + "\u001b[31mTypeError\u001b[39m\u001b[31m:\u001b[39m 'tuple' object does not support item assignment\n" ] } ], @@ -501,7 +498,7 @@ }, { "cell_type": "code", - "execution_count": 95, + "execution_count": 16, "id": "772738cc", "metadata": { "tags": [] @@ -512,10 +509,7 @@ "evalue": "'tuple' object has no attribute 'remove'", "output_type": "error", "traceback": [ - "\u001b[31m---------------------------------------------------------------------------\u001b[39m", - "\u001b[31mAttributeError\u001b[39m Traceback (most recent call last)", - "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[95]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[32m----> \u001b[39m\u001b[32m1\u001b[39m \u001b[43mt\u001b[49m\u001b[43m.\u001b[49m\u001b[43mremove\u001b[49m(\u001b[33m'\u001b[39m\u001b[33ml\u001b[39m\u001b[33m'\u001b[39m)\n t \u001b[34m= \u001b[39m\u001b[34m('l', 'u', 'p', 'i', 'n')\u001b[39m", - "\u001b[31mAttributeError\u001b[39m: 'tuple' object has no attribute 'remove'" + "\u001b[31mAttributeError\u001b[39m\u001b[31m:\u001b[39m 'tuple' object has no attribute 'remove'\n" ] } ], @@ -538,7 +532,7 @@ }, { "cell_type": "code", - "execution_count": 96, + "execution_count": 17, "id": "37e67042", "metadata": {}, "outputs": [], @@ -558,7 +552,7 @@ }, { "cell_type": "code", - "execution_count": 97, + "execution_count": 18, "id": "d809a490", "metadata": {}, "outputs": [ @@ -568,7 +562,7 @@ "3" ] }, - "execution_count": 97, + "execution_count": 18, "metadata": {}, "output_type": "execute_result" } @@ -587,7 +581,7 @@ }, { "cell_type": "code", - "execution_count": 98, + "execution_count": 19, "id": "dfc42a8b", "metadata": {}, "outputs": [ @@ -597,7 +591,7 @@ "7" ] }, - "execution_count": 98, + "execution_count": 19, "metadata": {}, "output_type": "execute_result" } @@ -617,7 +611,7 @@ }, { "cell_type": "code", - "execution_count": 99, + "execution_count": 20, "id": "2debf30c", "metadata": {}, "outputs": [ @@ -640,7 +634,7 @@ }, { "cell_type": "code", - "execution_count": 100, + "execution_count": 21, "id": "b6b8b218", "metadata": {}, "outputs": [ @@ -672,7 +666,7 @@ }, { "cell_type": "code", - "execution_count": 101, + "execution_count": 22, "id": "1e94ea37", "metadata": {}, "outputs": [], @@ -691,7 +685,7 @@ }, { "cell_type": "code", - "execution_count": 102, + "execution_count": 23, "id": "99c96c7f", "metadata": {}, "outputs": [ @@ -701,7 +695,7 @@ "(1, 2)" ] }, - "execution_count": 102, + "execution_count": 23, "metadata": {}, "output_type": "execute_result" } @@ -721,7 +715,7 @@ }, { "cell_type": "code", - "execution_count": 103, + "execution_count": 24, "id": "b67881ed", "metadata": {}, "outputs": [], @@ -740,7 +734,7 @@ }, { "cell_type": "code", - "execution_count": 104, + "execution_count": 25, "id": "b4515e2b", "metadata": {}, "outputs": [ @@ -750,7 +744,7 @@ "('monty', 'python.org')" ] }, - "execution_count": 104, + "execution_count": 25, "metadata": {}, "output_type": "execute_result" } @@ -770,7 +764,7 @@ }, { "cell_type": "code", - "execution_count": 105, + "execution_count": 26, "id": "8e5b4a14", "metadata": { "tags": [] @@ -781,10 +775,7 @@ "evalue": "too many values to unpack (expected 2)", "output_type": "error", "traceback": [ - "\u001b[31m---------------------------------------------------------------------------\u001b[39m", - "\u001b[31mValueError\u001b[39m Traceback (most recent call last)", - "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[105]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[32m----> \u001b[39m\u001b[32m1\u001b[39m a, b = \u001b[32m1\u001b[39m, \u001b[32m2\u001b[39m, \u001b[32m3\u001b[39m\n a, b \u001b[34m= \u001b[39m\u001b[34m(1, 2)\u001b[39m\n a \u001b[34m= \u001b[39m\u001b[34m1\u001b[39m\n b \u001b[34m= \u001b[39m\u001b[34m2\u001b[39m", - "\u001b[31mValueError\u001b[39m: too many values to unpack (expected 2)" + "\u001b[31mValueError\u001b[39m\u001b[31m:\u001b[39m too many values to unpack (expected 2)\n" ] } ], @@ -804,7 +795,7 @@ }, { "cell_type": "code", - "execution_count": 106, + "execution_count": 27, "id": "2389d6de", "metadata": {}, "outputs": [], @@ -824,7 +815,7 @@ }, { "cell_type": "code", - "execution_count": 107, + "execution_count": 28, "id": "5512edec", "metadata": {}, "outputs": [], @@ -845,7 +836,7 @@ }, { "cell_type": "code", - "execution_count": 108, + "execution_count": 29, "id": "651ab417", "metadata": {}, "outputs": [ @@ -878,7 +869,7 @@ }, { "cell_type": "code", - "execution_count": 109, + "execution_count": 30, "id": "2c0b7d47", "metadata": {}, "outputs": [ @@ -923,7 +914,7 @@ }, { "cell_type": "code", - "execution_count": 110, + "execution_count": 31, "id": "fff80eaa", "metadata": {}, "outputs": [ @@ -933,7 +924,7 @@ "(2, 1)" ] }, - "execution_count": 110, + "execution_count": 31, "metadata": {}, "output_type": "execute_result" } @@ -952,7 +943,7 @@ }, { "cell_type": "code", - "execution_count": 111, + "execution_count": 32, "id": "4a0eb2a9", "metadata": {}, "outputs": [ @@ -962,7 +953,7 @@ "2" ] }, - "execution_count": 111, + "execution_count": 32, "metadata": {}, "output_type": "execute_result" } @@ -974,7 +965,7 @@ }, { "cell_type": "code", - "execution_count": 112, + "execution_count": 33, "id": "d74ba1b6", "metadata": {}, "outputs": [ @@ -984,7 +975,7 @@ "1" ] }, - "execution_count": 112, + "execution_count": 33, "metadata": {}, "output_type": "execute_result" } @@ -1003,7 +994,7 @@ }, { "cell_type": "code", - "execution_count": 113, + "execution_count": 34, "id": "dad3b3bb", "metadata": {}, "outputs": [], @@ -1023,7 +1014,7 @@ }, { "cell_type": "code", - "execution_count": 114, + "execution_count": 35, "id": "fbd90b0e", "metadata": {}, "outputs": [ @@ -1033,7 +1024,7 @@ "(2, 450)" ] }, - "execution_count": 114, + "execution_count": 35, "metadata": {}, "output_type": "execute_result" } @@ -1052,7 +1043,7 @@ }, { "cell_type": "code", - "execution_count": 115, + "execution_count": 36, "id": "5a101efb", "metadata": {}, "outputs": [ @@ -1088,7 +1079,7 @@ }, { "cell_type": "code", - "execution_count": 116, + "execution_count": 37, "id": "0a33e2d0", "metadata": {}, "outputs": [], @@ -1108,7 +1099,7 @@ }, { "cell_type": "code", - "execution_count": 117, + "execution_count": 38, "id": "336a08ca", "metadata": {}, "outputs": [ @@ -1118,7 +1109,7 @@ "2.0" ] }, - "execution_count": 117, + "execution_count": 38, "metadata": {}, "output_type": "execute_result" } @@ -1129,7 +1120,7 @@ }, { "cell_type": "code", - "execution_count": 118, + "execution_count": 39, "id": "7ebf09fd", "metadata": {}, "outputs": [ @@ -1139,7 +1130,7 @@ "2.6666666666666665" ] }, - "execution_count": 118, + "execution_count": 39, "metadata": {}, "output_type": "execute_result" } @@ -1159,7 +1150,7 @@ }, { "cell_type": "code", - "execution_count": 119, + "execution_count": 40, "id": "991810bc", "metadata": { "tags": [] @@ -1170,10 +1161,7 @@ "evalue": "divmod expected 2 arguments, got 1", "output_type": "error", "traceback": [ - "\u001b[31m---------------------------------------------------------------------------\u001b[39m", - "\u001b[31mTypeError\u001b[39m Traceback (most recent call last)", - "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[119]\u001b[39m\u001b[32m, line 2\u001b[39m\n\u001b[32m 1\u001b[39m t = (\u001b[32m7\u001b[39m, \u001b[32m3\u001b[39m)\n\u001b[32m----> \u001b[39m\u001b[32m2\u001b[39m \u001b[38;5;28;43mdivmod\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43mt\u001b[49m\u001b[43m)\u001b[49m\n t \u001b[34m= \u001b[39m\u001b[34m(7, 3)\u001b[39m", - "\u001b[31mTypeError\u001b[39m: divmod expected 2 arguments, got 1" + "\u001b[31mTypeError\u001b[39m\u001b[31m:\u001b[39m divmod expected 2 arguments, got 1\n" ] } ], @@ -1194,7 +1182,7 @@ }, { "cell_type": "code", - "execution_count": 120, + "execution_count": 41, "id": "f25ebee1", "metadata": {}, "outputs": [ @@ -1204,7 +1192,7 @@ "(2, 1)" ] }, - "execution_count": 120, + "execution_count": 41, "metadata": {}, "output_type": "execute_result" } @@ -1224,7 +1212,7 @@ }, { "cell_type": "code", - "execution_count": 121, + "execution_count": 42, "id": "7ad64412", "metadata": {}, "outputs": [], @@ -1251,7 +1239,7 @@ }, { "cell_type": "code", - "execution_count": 122, + "execution_count": 43, "id": "b2863701", "metadata": {}, "outputs": [ @@ -1261,7 +1249,7 @@ "4.0" ] }, - "execution_count": 122, + "execution_count": 43, "metadata": {}, "output_type": "execute_result" } @@ -1272,7 +1260,7 @@ }, { "cell_type": "code", - "execution_count": 123, + "execution_count": 44, "id": "cc1afa29", "metadata": {}, "outputs": [ @@ -1282,7 +1270,7 @@ "2.5" ] }, - "execution_count": 123, + "execution_count": 44, "metadata": {}, "output_type": "execute_result" } @@ -1312,7 +1300,7 @@ }, { "cell_type": "code", - "execution_count": 124, + "execution_count": 45, "id": "ad3e6f81", "metadata": {}, "outputs": [], @@ -1332,17 +1320,17 @@ }, { "cell_type": "code", - "execution_count": 125, + "execution_count": 46, "id": "9ce313ce", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 125, + "execution_count": 46, "metadata": {}, "output_type": "execute_result" } @@ -1361,7 +1349,7 @@ }, { "cell_type": "code", - "execution_count": 126, + "execution_count": 47, "id": "321d9c30", "metadata": {}, "outputs": [ @@ -1395,7 +1383,7 @@ }, { "cell_type": "code", - "execution_count": 127, + "execution_count": 48, "id": "7eb73d5d", "metadata": {}, "outputs": [ @@ -1434,7 +1422,7 @@ }, { "cell_type": "code", - "execution_count": 128, + "execution_count": 49, "id": "9529baa8", "metadata": {}, "outputs": [ @@ -1444,7 +1432,7 @@ "[(1, 5), (2, 5), (4, 2), (5, 2), (1, 5), (5, 2), (2, 3)]" ] }, - "execution_count": 128, + "execution_count": 49, "metadata": {}, "output_type": "execute_result" } @@ -1464,7 +1452,7 @@ }, { "cell_type": "code", - "execution_count": 129, + "execution_count": 50, "id": "dbde77b8", "metadata": {}, "outputs": [ @@ -1474,7 +1462,7 @@ "(2, 3)" ] }, - "execution_count": 129, + "execution_count": 50, "metadata": {}, "output_type": "execute_result" } @@ -1494,7 +1482,7 @@ }, { "cell_type": "code", - "execution_count": 130, + "execution_count": 51, "id": "dbb7d0b3", "metadata": {}, "outputs": [ @@ -1526,7 +1514,7 @@ }, { "cell_type": "code", - "execution_count": 131, + "execution_count": 52, "id": "49e3fd8e", "metadata": {}, "outputs": [ @@ -1536,7 +1524,7 @@ "(0, 25)" ] }, - "execution_count": 131, + "execution_count": 52, "metadata": {}, "output_type": "execute_result" } @@ -1557,17 +1545,17 @@ }, { "cell_type": "code", - "execution_count": 132, + "execution_count": 53, "id": "9e4f3e51", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 132, + "execution_count": 53, "metadata": {}, "output_type": "execute_result" } @@ -1586,7 +1574,7 @@ }, { "cell_type": "code", - "execution_count": 133, + "execution_count": 54, "id": "c1dcb46d", "metadata": {}, "outputs": [ @@ -1643,7 +1631,7 @@ }, { "cell_type": "code", - "execution_count": 134, + "execution_count": 55, "id": "aed20c28", "metadata": {}, "outputs": [ @@ -1653,7 +1641,7 @@ "True" ] }, - "execution_count": 134, + "execution_count": 55, "metadata": {}, "output_type": "execute_result" } @@ -1672,7 +1660,7 @@ }, { "cell_type": "code", - "execution_count": 135, + "execution_count": 56, "id": "4d9e73b3", "metadata": {}, "outputs": [ @@ -1682,7 +1670,7 @@ "True" ] }, - "execution_count": 135, + "execution_count": 56, "metadata": {}, "output_type": "execute_result" } @@ -1703,7 +1691,7 @@ }, { "cell_type": "code", - "execution_count": 136, + "execution_count": 57, "id": "2077dfa9", "metadata": {}, "outputs": [], @@ -1728,7 +1716,7 @@ }, { "cell_type": "code", - "execution_count": 137, + "execution_count": 58, "id": "b3d40516", "metadata": {}, "outputs": [ @@ -1738,7 +1726,7 @@ "{'b': 1, 'a': 3, 'n': 2}" ] }, - "execution_count": 137, + "execution_count": 58, "metadata": {}, "output_type": "execute_result" } @@ -1761,7 +1749,7 @@ }, { "cell_type": "code", - "execution_count": 138, + "execution_count": 59, "id": "8288c28f", "metadata": {}, "outputs": [ @@ -1771,7 +1759,7 @@ "dict_items([('b', 1), ('a', 3), ('n', 2)])" ] }, - "execution_count": 138, + "execution_count": 59, "metadata": {}, "output_type": "execute_result" } @@ -1791,7 +1779,7 @@ }, { "cell_type": "code", - "execution_count": 139, + "execution_count": 60, "id": "bbbade35", "metadata": {}, "outputs": [ @@ -1801,7 +1789,7 @@ "[('a', 3), ('b', 1), ('n', 2)]" ] }, - "execution_count": 139, + "execution_count": 60, "metadata": {}, "output_type": "execute_result" } @@ -1823,7 +1811,7 @@ }, { "cell_type": "code", - "execution_count": 140, + "execution_count": 61, "id": "a4c31795", "metadata": {}, "outputs": [], @@ -1842,7 +1830,7 @@ }, { "cell_type": "code", - "execution_count": 141, + "execution_count": 62, "id": "f3d3619a", "metadata": {}, "outputs": [ @@ -1852,7 +1840,7 @@ "[('b', 1), ('n', 2), ('a', 3)]" ] }, - "execution_count": 141, + "execution_count": 62, "metadata": {}, "output_type": "execute_result" } @@ -1874,7 +1862,7 @@ }, { "cell_type": "code", - "execution_count": 142, + "execution_count": 63, "id": "f078c8a6", "metadata": {}, "outputs": [ @@ -1884,7 +1872,7 @@ "('a', 3)" ] }, - "execution_count": 142, + "execution_count": 63, "metadata": {}, "output_type": "execute_result" } @@ -1904,7 +1892,7 @@ }, { "cell_type": "code", - "execution_count": 143, + "execution_count": 64, "id": "54030d8f", "metadata": {}, "outputs": [ @@ -1914,7 +1902,7 @@ "('a', 3)" ] }, - "execution_count": 143, + "execution_count": 64, "metadata": {}, "output_type": "execute_result" } @@ -1925,7 +1913,7 @@ }, { "cell_type": "code", - "execution_count": 144, + "execution_count": 65, "id": "7f1465f5", "metadata": {}, "outputs": [ @@ -1935,7 +1923,7 @@ "('b', 1)" ] }, - "execution_count": 144, + "execution_count": 65, "metadata": {}, "output_type": "execute_result" } @@ -1970,7 +1958,7 @@ }, { "cell_type": "code", - "execution_count": 145, + "execution_count": 66, "id": "ef158f81", "metadata": {}, "outputs": [ @@ -1980,7 +1968,7 @@ "{'p': 1, 'a': 1, 'r': 2, 'o': 1, 't': 1}" ] }, - "execution_count": 145, + "execution_count": 66, "metadata": {}, "output_type": "execute_result" } @@ -2002,7 +1990,7 @@ }, { "cell_type": "code", - "execution_count": 146, + "execution_count": 67, "id": "d3607b8d", "metadata": {}, "outputs": [], @@ -2031,7 +2019,7 @@ }, { "cell_type": "code", - "execution_count": 147, + "execution_count": 68, "id": "692d9cf8", "metadata": {}, "outputs": [ @@ -2041,7 +2029,7 @@ "{1: ['p', 'a', 'o', 't'], 2: ['r']}" ] }, - "execution_count": 147, + "execution_count": 68, "metadata": {}, "output_type": "execute_result" } @@ -2083,7 +2071,7 @@ }, { "cell_type": "code", - "execution_count": 148, + "execution_count": 69, "id": "e9f03e91", "metadata": { "tags": [] @@ -2103,7 +2091,7 @@ }, { "cell_type": "code", - "execution_count": 149, + "execution_count": 70, "id": "90ab624a", "metadata": {}, "outputs": [], @@ -2121,7 +2109,7 @@ }, { "cell_type": "code", - "execution_count": 150, + "execution_count": 71, "id": "6794330f", "metadata": {}, "outputs": [ @@ -2131,7 +2119,7 @@ "'list of 3 int'" ] }, - "execution_count": 150, + "execution_count": 71, "metadata": {}, "output_type": "execute_result" } @@ -2151,7 +2139,7 @@ }, { "cell_type": "code", - "execution_count": 151, + "execution_count": 72, "id": "54cd185b", "metadata": {}, "outputs": [ @@ -2161,7 +2149,7 @@ "'list of 3 list of 2 int'" ] }, - "execution_count": 151, + "execution_count": 72, "metadata": {}, "output_type": "execute_result" } @@ -2182,7 +2170,7 @@ }, { "cell_type": "code", - "execution_count": 152, + "execution_count": 73, "id": "04028afd", "metadata": {}, "outputs": [ @@ -2192,7 +2180,7 @@ "'list of (3 int, float, 2 str, 2 list of int, int)'" ] }, - "execution_count": 152, + "execution_count": 73, "metadata": {}, "output_type": "execute_result" } @@ -2212,7 +2200,7 @@ }, { "cell_type": "code", - "execution_count": 153, + "execution_count": 74, "id": "b5d45c88", "metadata": {}, "outputs": [ @@ -2222,7 +2210,7 @@ "'list of 3 tuple of (int, str)'" ] }, - "execution_count": 153, + "execution_count": 74, "metadata": {}, "output_type": "execute_result" } @@ -2243,7 +2231,7 @@ }, { "cell_type": "code", - "execution_count": 154, + "execution_count": 75, "id": "15131907", "metadata": {}, "outputs": [ @@ -2253,7 +2241,7 @@ "'dict of 3 int->str'" ] }, - "execution_count": 154, + "execution_count": 75, "metadata": {}, "output_type": "execute_result" } @@ -2308,7 +2296,7 @@ }, { "cell_type": "code", - "execution_count": 155, + "execution_count": 76, "id": "c65d68d2", "metadata": { "tags": [] @@ -2362,7 +2350,7 @@ }, { "cell_type": "code", - "execution_count": 156, + "execution_count": 77, "id": "4416fe4a", "metadata": {}, "outputs": [ @@ -2372,7 +2360,7 @@ "([1, 2, 3], [4, 5])" ] }, - "execution_count": 156, + "execution_count": 77, "metadata": {}, "output_type": "execute_result" } @@ -2395,7 +2383,7 @@ }, { "cell_type": "code", - "execution_count": 157, + "execution_count": 78, "id": "e6eda0e4", "metadata": { "tags": [] @@ -2414,7 +2402,7 @@ "([1, 2, 3], [4, 5, 6])" ] }, - "execution_count": 157, + "execution_count": 78, "metadata": {}, "output_type": "execute_result" } @@ -2428,7 +2416,7 @@ }, { "cell_type": "code", - "execution_count": 158, + "execution_count": 79, "id": "271ba8e3", "metadata": {}, "outputs": [ @@ -2439,7 +2427,7 @@ "traceback": [ "\u001b[31m---------------------------------------------------------------------------\u001b[39m", "\u001b[31mTypeError\u001b[39m Traceback (most recent call last)", - "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[158]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[32m----> \u001b[39m\u001b[32m1\u001b[39m d = {t: \u001b[33m\"\u001b[39m\u001b[33mvalue\u001b[39m\u001b[33m\"\u001b[39m} \u001b[38;5;66;03m# Expected error\u001b[39;00m\n d \u001b[34m= \u001b[39m\u001b[34m{1: 'a', 2: 'b', 3: 'c'}\u001b[39m\n t \u001b[34m= \u001b[39m\u001b[34m([1, 2, 3], [4, 5, 6])\u001b[39m", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[79]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[32m----> \u001b[39m\u001b[32m1\u001b[39m d = {t: \u001b[33m\"\u001b[39m\u001b[33mvalue\u001b[39m\u001b[33m\"\u001b[39m} \u001b[38;5;66;03m# Expected error\u001b[39;00m\n d \u001b[34m= \u001b[39m\u001b[34m{1: 'a', 2: 'b', 3: 'c'}\u001b[39m\n t \u001b[34m= \u001b[39m\u001b[34m([1, 2, 3], [4, 5, 6])\u001b[39m", "\u001b[31mTypeError\u001b[39m: unhashable type: 'list'" ] } @@ -2460,7 +2448,7 @@ }, { "cell_type": "code", - "execution_count": 159, + "execution_count": 80, "id": "4fae1acc", "metadata": { "tags": [] @@ -2496,7 +2484,7 @@ }, { "cell_type": "code", - "execution_count": 160, + "execution_count": 81, "id": "855c7ed2", "metadata": {}, "outputs": [], @@ -2516,7 +2504,7 @@ }, { "cell_type": "code", - "execution_count": 161, + "execution_count": 82, "id": "3c921f68", "metadata": {}, "outputs": [ @@ -2526,7 +2514,7 @@ "0" ] }, - "execution_count": 161, + "execution_count": 82, "metadata": {}, "output_type": "execute_result" } @@ -2546,7 +2534,7 @@ }, { "cell_type": "code", - "execution_count": 162, + "execution_count": 83, "id": "b029b0da", "metadata": {}, "outputs": [ @@ -2556,7 +2544,7 @@ "'b'" ] }, - "execution_count": 162, + "execution_count": 83, "metadata": {}, "output_type": "execute_result" } @@ -2596,7 +2584,7 @@ }, { "cell_type": "code", - "execution_count": 163, + "execution_count": 84, "id": "1cc07036", "metadata": { "tags": [] @@ -2616,7 +2604,7 @@ }, { "cell_type": "code", - "execution_count": 164, + "execution_count": 85, "id": "96560a0e", "metadata": {}, "outputs": [], @@ -2644,7 +2632,7 @@ }, { "cell_type": "code", - "execution_count": 165, + "execution_count": 86, "id": "8b0d13d3", "metadata": {}, "outputs": [ @@ -2654,7 +2642,7 @@ "'jgnnq'" ] }, - "execution_count": 165, + "execution_count": 86, "metadata": {}, "output_type": "execute_result" } @@ -2665,7 +2653,7 @@ }, { "cell_type": "code", - "execution_count": 166, + "execution_count": 87, "id": "c026c6d1", "metadata": { "tags": [] @@ -2677,7 +2665,7 @@ "'jolly'" ] }, - "execution_count": 166, + "execution_count": 87, "metadata": {}, "output_type": "execute_result" } @@ -2688,7 +2676,7 @@ }, { "cell_type": "code", - "execution_count": 167, + "execution_count": 88, "id": "5814999d", "metadata": { "tags": [] @@ -2700,7 +2688,7 @@ "'cubed'" ] }, - "execution_count": 167, + "execution_count": 88, "metadata": {}, "output_type": "execute_result" } @@ -2721,7 +2709,7 @@ }, { "cell_type": "code", - "execution_count": 168, + "execution_count": 89, "id": "9464d140", "metadata": { "tags": [] @@ -2736,14 +2724,6 @@ "run_doctests(shift_word)" ] }, - { - "cell_type": "markdown", - "id": "dc8a0dfb", - "metadata": {}, - "source": [ - "### BOOKMARK" - ] - }, { "cell_type": "markdown", "id": "779f13af", @@ -2768,7 +2748,7 @@ }, { "cell_type": "code", - "execution_count": 249, + "execution_count": 90, "id": "4309d0b5", "metadata": { "tags": [] @@ -2801,7 +2781,7 @@ }, { "cell_type": "code", - "execution_count": 250, + "execution_count": 91, "id": "52228828", "metadata": {}, "outputs": [ @@ -2811,7 +2791,7 @@ "['a', 'n', 'b']" ] }, - "execution_count": 250, + "execution_count": 91, "metadata": {}, "output_type": "execute_result" } @@ -2833,7 +2813,7 @@ }, { "cell_type": "code", - "execution_count": 251, + "execution_count": 92, "id": "3bf2aa0d", "metadata": { "tags": [] @@ -2845,7 +2825,7 @@ "['r', 'o', 's', 'u', 'b', 'n', 't', 'a']" ] }, - "execution_count": 251, + "execution_count": 92, "metadata": {}, "output_type": "execute_result" } @@ -2866,7 +2846,7 @@ }, { "cell_type": "code", - "execution_count": 252, + "execution_count": 93, "id": "e4fbf5d9", "metadata": { "tags": [] @@ -2878,7 +2858,7 @@ }, { "cell_type": "code", - "execution_count": 253, + "execution_count": 94, "id": "817ec689", "metadata": { "tags": [] @@ -2951,7 +2931,7 @@ " 'à']" ] }, - "execution_count": 253, + "execution_count": 94, "metadata": {}, "output_type": "execute_result" } @@ -3005,7 +2985,7 @@ }, { "cell_type": "code", - "execution_count": 91, + "execution_count": 95, "id": "941719c1", "metadata": { "tags": [] @@ -3017,7 +2997,7 @@ }, { "cell_type": "code", - "execution_count": 92, + "execution_count": 96, "id": "d2ec641b", "metadata": { "tags": [] @@ -3039,7 +3019,7 @@ }, { "cell_type": "code", - "execution_count": 93, + "execution_count": 97, "id": "7ae29f73", "metadata": { "tags": [] @@ -3052,12 +3032,35 @@ }, { "cell_type": "code", - "execution_count": 94, + "execution_count": 117, "id": "013819a5", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def find_anagram(word_list):\n", + "\n", + " anagrams_dict = {}\n", + "\n", + " for word_1 in word_list:\n", + " check_angrm = sort_word(word_1)\n", + "\n", + " if check_angrm not in anagrams_dict:\n", + " anagrams_dict[check_angrm] = [word_1]\n", + " else: \n", + " anagrams_dict[check_angrm].append(word_1)\n", + "\n", + " return anagrams_dict" + ] + }, + { + "cell_type": "code", + "execution_count": 122, + "id": "47fea949", + "metadata": {}, + "outputs": [], + "source": [ + "anagram_dict = find_anagram(word_list=word_list)\n" ] }, { @@ -3073,7 +3076,7 @@ }, { "cell_type": "code", - "execution_count": 95, + "execution_count": 123, "id": "fbf9ede3", "metadata": { "tags": [] @@ -3097,12 +3100,29 @@ }, { "cell_type": "code", - "execution_count": 96, + "execution_count": 124, "id": "55435050", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['carets', 'cartes', 'caster', 'caters', 'crates', 'reacts', 'recast', 'traces']\n", + "['earings', 'erasing', 'gainers', 'reagins', 'regains', 'reginas', 'searing', 'seringa']\n", + "['lapse', 'leaps', 'pales', 'peals', 'pleas', 'salep', 'sepal', 'spale']\n", + "['palest', 'palets', 'pastel', 'petals', 'plates', 'pleats', 'septal', 'staple']\n", + "['peris', 'piers', 'pries', 'prise', 'ripes', 'speir', 'spier', 'spire']\n", + "['capers', 'crapes', 'escarp', 'pacers', 'parsec', 'recaps', 'scrape', 'secpar', 'spacer']\n", + "['estrin', 'inerts', 'insert', 'inters', 'niters', 'nitres', 'sinter', 'triens', 'trines']\n", + "['least', 'setal', 'slate', 'stale', 'steal', 'stela', 'taels', 'tales', 'teals', 'tesla']\n", + "['alerts', 'alters', 'artels', 'estral', 'laster', 'ratels', 'salter', 'slater', 'staler', 'stelar', 'talers']\n", + "['apers', 'asper', 'pares', 'parse', 'pears', 'prase', 'presa', 'rapes', 'reaps', 'spare', 'spear']\n" + ] + } + ], "source": [ "anagram_items = sorted(anagram_dict.items(), key=value_length)\n", "for key, value in anagram_items[-10:]:\n", @@ -3121,12 +3141,25 @@ }, { "cell_type": "code", - "execution_count": 97, + "execution_count": 125, "id": "6a9320c2", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['abasement', 'entamebas']\n", + "['abreacting', 'acerbating']\n", + "['altercations', 'intercoastal']\n", + "['certification', 'rectification']\n", + "['certifications', 'rectifications']\n", + "['impressivenesses', 'permissivenesses']\n" + ] + } + ], "source": [ "longest = 7\n", "\n", @@ -3138,6 +3171,14 @@ " print(value)" ] }, + { + "cell_type": "markdown", + "id": "dc8a0dfb", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "4fbe939e", From d55988d929c34ff266f577f50da6e992ff8fcced Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Tue, 3 Feb 2026 10:38:02 +0000 Subject: [PATCH 31/56] word distance solution --- chapters/chap11.ipynb | 73 ++++++++++++++++++++++++++++++++++++------- 1 file changed, 61 insertions(+), 12 deletions(-) diff --git a/chapters/chap11.ipynb b/chapters/chap11.ipynb index 8ffeaf99..5b88c93f 100644 --- a/chapters/chap11.ipynb +++ b/chapters/chap11.ipynb @@ -407,7 +407,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 13, @@ -1327,7 +1327,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 46, @@ -1552,7 +1552,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 53, @@ -3032,7 +3032,7 @@ }, { "cell_type": "code", - "execution_count": 117, + "execution_count": 98, "id": "013819a5", "metadata": {}, "outputs": [], @@ -3055,7 +3055,7 @@ }, { "cell_type": "code", - "execution_count": 122, + "execution_count": 99, "id": "47fea949", "metadata": {}, "outputs": [], @@ -3076,7 +3076,7 @@ }, { "cell_type": "code", - "execution_count": 123, + "execution_count": 100, "id": "fbf9ede3", "metadata": { "tags": [] @@ -3100,7 +3100,7 @@ }, { "cell_type": "code", - "execution_count": 124, + "execution_count": 101, "id": "55435050", "metadata": { "tags": [] @@ -3141,7 +3141,7 @@ }, { "cell_type": "code", - "execution_count": 125, + "execution_count": 102, "id": "6a9320c2", "metadata": { "tags": [] @@ -3203,7 +3203,7 @@ }, { "cell_type": "code", - "execution_count": 98, + "execution_count": 103, "id": "3d5a75f8", "metadata": { "tags": [] @@ -3225,17 +3225,66 @@ }, { "cell_type": "code", - "execution_count": 99, + "execution_count": 129, "id": "a9816dde", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def word_distance(word1, word2):\n", + " \"\"\"Computes the number of places where two word differ.\n", + "\n", + " >>> word_distance(\"hello\", \"hxllo\")\n", + " 1\n", + " >>> word_distance(\"ample\", \"apply\")\n", + " 2\n", + " >>> word_distance(\"kitten\", \"mutton\")\n", + " 3\n", + " \"\"\"\n", + " counter = 0\n", + "\n", + " word_A = list(word1)\n", + " word_B = list(word2)\n", + "\n", + " #print(word_A, word_B)\n", + "\n", + " for pair in zip(word_A, word_B):\n", + " char1, char2 = pair\n", + " if char1 != char2:\n", + " #print(f\"Non-matching elements: {char1} != {char2}\")\n", + " counter += 1\n", + " else:\n", + " continue\n", + "\n", + " #print(f\"Total non-matching items: {counter}\")\n", + " \n", + " return counter\n" ] }, { "cell_type": "code", - "execution_count": 100, + "execution_count": 130, + "id": "4aa911e1", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1" + ] + }, + "execution_count": 130, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "word_distance(\"hello\", \"hallo\")" + ] + }, + { + "cell_type": "code", + "execution_count": 131, "id": "753a23c1", "metadata": { "tags": [] From 96c8da5cdb5b855a59463e7ee1e437ba03dc39c7 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Sun, 8 Feb 2026 16:16:12 +0000 Subject: [PATCH 32/56] metathesis pair solution --- chapters/chap11.ipynb | 1079 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 1060 insertions(+), 19 deletions(-) diff --git a/chapters/chap11.ipynb b/chapters/chap11.ipynb index 5b88c93f..6f49733b 100644 --- a/chapters/chap11.ipynb +++ b/chapters/chap11.ipynb @@ -407,7 +407,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 13, @@ -1327,7 +1327,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 46, @@ -1552,7 +1552,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 53, @@ -3171,14 +3171,6 @@ " print(value)" ] }, - { - "cell_type": "markdown", - "id": "dc8a0dfb", - "metadata": {}, - "source": [ - "### BOOKMARK" - ] - }, { "cell_type": "markdown", "id": "4fbe939e", @@ -3225,7 +3217,7 @@ }, { "cell_type": "code", - "execution_count": 129, + "execution_count": 104, "id": "a9816dde", "metadata": {}, "outputs": [], @@ -3263,28 +3255,28 @@ }, { "cell_type": "code", - "execution_count": 130, + "execution_count": 105, "id": "4aa911e1", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "1" + "2" ] }, - "execution_count": 130, + "execution_count": 105, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "word_distance(\"hello\", \"hallo\")" + "word_distance('certification', 'rectification')" ] }, { "cell_type": "code", - "execution_count": 131, + "execution_count": 106, "id": "753a23c1", "metadata": { "tags": [] @@ -3299,6 +3291,14 @@ "run_doctests(word_distance)" ] }, + { + "cell_type": "markdown", + "id": "dc8a0dfb", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "066eec59", @@ -3317,12 +3317,1053 @@ }, { "cell_type": "code", - "execution_count": 101, + "execution_count": 127, "id": "57649075", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def metathesis_pair(word_list):\n", + "\n", + " MT_pairs = [] # Create empty list to store the pairs\n", + "\n", + " anagram_dict = find_anagram(word_list) # Get the anagrams using the previous function and store (it returns a dict)\n", + "\n", + " for words in anagram_dict.values(): # Loop over ONLY the anagram group values (not keys)\n", + "\n", + " for i in range(len(words)): # Loop through all indexed values (entire range for the full length)\n", + "\n", + " for j in range(i + 1, len(words)): # Loop through the index plus one shifted\n", + " word_n = words[i] # store the temp values for each pair to compare\n", + " word_k = words[j]\n", + " \n", + " if word_distance(word_n, word_k) == 2: # use function to see if the number of changable characters is equal to 2\n", + " MT_pairs.append([word_n, word_k]) # add valid pairs to the list\n", + "\n", + " # print(MT_pairs)\n", + "\n", + " return MT_pairs" + ] + }, + { + "cell_type": "code", + "execution_count": 128, + "id": "f38b0785", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[['aah', 'aha'],\n", + " ['aal', 'ala'],\n", + " ['aals', 'alas'],\n", + " ['aba', 'baa'],\n", + " ['abas', 'baas'],\n", + " ['abbe', 'babe'],\n", + " ['abbes', 'babes'],\n", + " ['bate', 'beta'],\n", + " ['beat', 'beta'],\n", + " ['bates', 'betas'],\n", + " ['bates', 'tabes'],\n", + " ['beast', 'beats'],\n", + " ['beats', 'betas'],\n", + " ['abide', 'abied'],\n", + " ['able', 'bale'],\n", + " ['bale', 'blae'],\n", + " ['abler', 'baler'],\n", + " ['ables', 'bales'],\n", + " ['abmho', 'abohm'],\n", + " ['abmhos', 'abohms'],\n", + " ['abode', 'adobe'],\n", + " ['abodes', 'adobes'],\n", + " ['tabu', 'tuba'],\n", + " ['tabus', 'tubas'],\n", + " ['aby', 'bay'],\n", + " ['abyed', 'bayed'],\n", + " ['abying', 'baying'],\n", + " ['abys', 'bays'],\n", + " ['accouter', 'accoutre'],\n", + " ['accouters', 'accoutres'],\n", + " ['cade', 'dace'],\n", + " ['acers', 'acres'],\n", + " ['acres', 'cares'],\n", + " ['cares', 'carse'],\n", + " ['cares', 'races'],\n", + " ['achier', 'cahier'],\n", + " ['acid', 'caid'],\n", + " ['cadi', 'caid'],\n", + " ['acids', 'caids'],\n", + " ['cadis', 'caids'],\n", + " ['acme', 'came'],\n", + " ['came', 'mace'],\n", + " ['acmes', 'cames'],\n", + " ['cames', 'maces'],\n", + " ['acne', 'cane'],\n", + " ['acned', 'caned'],\n", + " ['acnes', 'canes'],\n", + " ['acre', 'care'],\n", + " ['care', 'race'],\n", + " ['acred', 'arced'],\n", + " ['acred', 'cared'],\n", + " ['arced', 'raced'],\n", + " ['cared', 'raced'],\n", + " ['act', 'cat'],\n", + " ['actin', 'antic'],\n", + " ['actins', 'antics'],\n", + " ['action', 'cation'],\n", + " ['actions', 'cations'],\n", + " ['castor', 'costar'],\n", + " ['acts', 'cats'],\n", + " ['cast', 'cats'],\n", + " ['ad', 'da'],\n", + " ['add', 'dad'],\n", + " ['adds', 'dads'],\n", + " ['pated', 'taped'],\n", + " ['adman', 'daman'],\n", + " ['maned', 'menad'],\n", + " ['maned', 'named'],\n", + " ['adze', 'daze'],\n", + " ['adzes', 'dazes'],\n", + " ['aerologies', 'areologies'],\n", + " ['aerology', 'areology'],\n", + " ['hereat', 'reheat'],\n", + " ['aetheric', 'hetaeric'],\n", + " ['aft', 'fat'],\n", + " ['age', 'gae'],\n", + " ['aged', 'egad'],\n", + " ['aged', 'gaed'],\n", + " ['rages', 'sager'],\n", + " ['ages', 'gaes'],\n", + " ['agger', 'eggar'],\n", + " ['agger', 'gager'],\n", + " ['aggers', 'eggars'],\n", + " ['aggers', 'gagers'],\n", + " ['sagger', 'seggar'],\n", + " ['saggers', 'seggars'],\n", + " ['agin', 'gain'],\n", + " ['agonies', 'agonise'],\n", + " ['eager', 'eagre'],\n", + " ['eager', 'ragee'],\n", + " ['eagre', 'ragee'],\n", + " ['eagers', 'eagres'],\n", + " ['eagers', 'ragees'],\n", + " ['eagres', 'ragees'],\n", + " ['ah', 'ha'],\n", + " ['ahem', 'haem'],\n", + " ['haem', 'hame'],\n", + " ['aider', 'aired'],\n", + " ['daimen', 'maiden'],\n", + " ['dais', 'said'],\n", + " ['sadi', 'said'],\n", + " ['ailment', 'aliment'],\n", + " ['ailments', 'aliments'],\n", + " ['sail', 'sial'],\n", + " ['aim', 'ami'],\n", + " ['armies', 'ramies'],\n", + " ['aims', 'amis'],\n", + " ['aims', 'sima'],\n", + " ['ain', 'ani'],\n", + " ['ains', 'anis'],\n", + " ['arising', 'raising'],\n", + " ['resails', 'serails'],\n", + " ['serails', 'serials'],\n", + " ['rain', 'rani'],\n", + " ['naris', 'ranis'],\n", + " ['naris', 'sarin'],\n", + " ['rains', 'ranis'],\n", + " ['stair', 'stria'],\n", + " ['akin', 'kain'],\n", + " ['alan', 'anal'],\n", + " ['alb', 'lab'],\n", + " ['bal', 'lab'],\n", + " ['baals', 'balas'],\n", + " ['balas', 'balsa'],\n", + " ['balas', 'basal'],\n", + " ['albs', 'labs'],\n", + " ['bals', 'labs'],\n", + " ['alburnum', 'laburnum'],\n", + " ['alburnums', 'laburnums'],\n", + " ['alder', 'lader'],\n", + " ['alders', 'laders'],\n", + " ['aldol', 'allod'],\n", + " ['aldols', 'allods'],\n", + " ['alef', 'flea'],\n", + " ['feal', 'leaf'],\n", + " ['alefs', 'fleas'],\n", + " ['alter', 'artel'],\n", + " ['alter', 'later'],\n", + " ['artel', 'ratel'],\n", + " ['later', 'ratel'],\n", + " ['later', 'taler'],\n", + " ['realter', 'relater'],\n", + " ['alters', 'artels'],\n", + " ['artels', 'ratels'],\n", + " ['laster', 'salter'],\n", + " ['salter', 'slater'],\n", + " ['slater', 'staler'],\n", + " ['staler', 'stelar'],\n", + " ['lase', 'sale'],\n", + " ['leas', 'seal'],\n", + " ['veinal', 'venial'],\n", + " ['venial', 'vineal'],\n", + " ['releasing', 'resealing'],\n", + " ['algin', 'align'],\n", + " ['algins', 'aligns'],\n", + " ['algor', 'argol'],\n", + " ['algors', 'argols'],\n", + " ['algum', 'almug'],\n", + " ['algums', 'almugs'],\n", + " ['alien', 'aline'],\n", + " ['aline', 'anile'],\n", + " ['aliens', 'alines'],\n", + " ['saline', 'silane'],\n", + " ['dealing', 'leading'],\n", + " ['lati', 'tali'],\n", + " ['tail', 'tali'],\n", + " ['alkalies', 'alkalise'],\n", + " ['alma', 'lama'],\n", + " ['almas', 'lamas'],\n", + " ['alme', 'lame'],\n", + " ['lame', 'male'],\n", + " ['almes', 'lames'],\n", + " ['lames', 'males'],\n", + " ['alms', 'lams'],\n", + " ['aloft', 'float'],\n", + " ['float', 'flota'],\n", + " ['alone', 'anole'],\n", + " ['alow', 'awol'],\n", + " ['alp', 'lap'],\n", + " ['lap', 'pal'],\n", + " ['penial', 'pineal'],\n", + " ['alps', 'laps'],\n", + " ['laps', 'pals'],\n", + " ['pals', 'salp'],\n", + " ['salp', 'slap'],\n", + " ['alt', 'lat'],\n", + " ['altar', 'artal'],\n", + " ['artal', 'ratal'],\n", + " ['realters', 'relaters'],\n", + " ['loath', 'lotah'],\n", + " ['altitude', 'latitude'],\n", + " ['altitudes', 'latitudes'],\n", + " ['lota', 'tola'],\n", + " ['lotas', 'tolas'],\n", + " ['altruism', 'ultraism'],\n", + " ['altruisms', 'ultraisms'],\n", + " ['altruist', 'ultraist'],\n", + " ['altruists', 'ultraists'],\n", + " ['alts', 'lats'],\n", + " ['last', 'lats'],\n", + " ['last', 'salt'],\n", + " ['salt', 'slat'],\n", + " ['alumin', 'alumni'],\n", + " ['am', 'ma'],\n", + " ['amain', 'amnia'],\n", + " ['amnia', 'mania'],\n", + " ['amber', 'embar'],\n", + " ['ambers', 'embars'],\n", + " ['bedlam', 'beldam'],\n", + " ['marble', 'ramble'],\n", + " ['marbles', 'rambles'],\n", + " ['mane', 'name'],\n", + " ['name', 'nema'],\n", + " ['manes', 'manse'],\n", + " ['manes', 'names'],\n", + " ['manse', 'mensa'],\n", + " ['names', 'nemas'],\n", + " ['amid', 'maid'],\n", + " ['amids', 'maids'],\n", + " ['amigo', 'imago'],\n", + " ['amin', 'main'],\n", + " ['amine', 'anime'],\n", + " ['amines', 'animes'],\n", + " ['amins', 'mains'],\n", + " ['amir', 'mair'],\n", + " ['amirs', 'mairs'],\n", + " ['ammine', 'immane'],\n", + " ['amnic', 'manic'],\n", + " ['amp', 'map'],\n", + " ['map', 'pam'],\n", + " ['ample', 'maple'],\n", + " ['amps', 'maps'],\n", + " ['maps', 'pams'],\n", + " ['pams', 'samp'],\n", + " ['an', 'na'],\n", + " ['anas', 'ansa'],\n", + " ['anchor', 'archon'],\n", + " ['anchors', 'archons'],\n", + " ['ane', 'nae'],\n", + " ['leaden', 'leaned'],\n", + " ['ratines', 'retinas'],\n", + " ['retains', 'retsina'],\n", + " ['angel', 'angle'],\n", + " ['angels', 'angles'],\n", + " ['ranges', 'sanger'],\n", + " ['anil', 'nail'],\n", + " ['lain', 'nail'],\n", + " ['anils', 'nails'],\n", + " ['slain', 'snail'],\n", + " ['sanies', 'sansei'],\n", + " ['tetanies', 'tetanise'],\n", + " ['khans', 'shank'],\n", + " ['anna', 'nana'],\n", + " ['annas', 'nanas'],\n", + " ['anoxic', 'axonic'],\n", + " ['anserous', 'arsenous'],\n", + " ['antes', 'nates'],\n", + " ['antimonies', 'antinomies'],\n", + " ['antimony', 'antinomy'],\n", + " ['saint', 'tains'],\n", + " ['satin', 'stain'],\n", + " ['nival', 'vinal'],\n", + " ['any', 'nay'],\n", + " ['pare', 'rape'],\n", + " ['pear', 'reap'],\n", + " ['pares', 'parse'],\n", + " ['pares', 'rapes'],\n", + " ['parse', 'prase'],\n", + " ['pears', 'reaps'],\n", + " ['prase', 'presa'],\n", + " ['apes', 'apse'],\n", + " ['apse', 'pase'],\n", + " ['apse', 'spae'],\n", + " ['appal', 'papal'],\n", + " ['appel', 'apple'],\n", + " ['appels', 'apples'],\n", + " ['apses', 'pases'],\n", + " ['apses', 'spaes'],\n", + " ['pases', 'passe'],\n", + " ['apsis', 'aspis'],\n", + " ['apt', 'pat'],\n", + " ['pat', 'tap'],\n", + " ['apter', 'pater'],\n", + " ['pater', 'taper'],\n", + " ['aptly', 'patly'],\n", + " ['aptness', 'patness'],\n", + " ['aptnesses', 'patnesses'],\n", + " ['chares', 'chaser'],\n", + " ['arcing', 'racing'],\n", + " ['caring', 'racing'],\n", + " ['arcked', 'racked'],\n", + " ['carked', 'racked'],\n", + " ['dacker', 'racked'],\n", + " ['arcking', 'racking'],\n", + " ['carking', 'racking'],\n", + " ['arco', 'orca'],\n", + " ['causers', 'saucers'],\n", + " ['barde', 'bared'],\n", + " ['are', 'era'],\n", + " ['ear', 'era'],\n", + " ['ares', 'arse'],\n", + " ['ares', 'eras'],\n", + " ['arse', 'rase'],\n", + " ['ears', 'eras'],\n", + " ['sear', 'sera'],\n", + " ['seater', 'teaser'],\n", + " ['argal', 'graal'],\n", + " ['argals', 'graals'],\n", + " ['argil', 'grail'],\n", + " ['glair', 'grail'],\n", + " ['argils', 'grails'],\n", + " ['glairs', 'grails'],\n", + " ['argon', 'organ'],\n", + " ['groan', 'organ'],\n", + " ['argons', 'organs'],\n", + " ['groans', 'organs'],\n", + " ['gaurs', 'guars'],\n", + " ['aria', 'raia'],\n", + " ['arias', 'raias'],\n", + " ['arid', 'raid'],\n", + " ['arider', 'raider'],\n", + " ['resail', 'serail'],\n", + " ['serail', 'serial'],\n", + " ['treaties', 'treatise'],\n", + " ['aril', 'rail'],\n", + " ['lair', 'liar'],\n", + " ['lair', 'rail'],\n", + " ['liar', 'lira'],\n", + " ['liar', 'rial'],\n", + " ['rail', 'rial'],\n", + " ['ariled', 'railed'],\n", + " ['laired', 'railed'],\n", + " ['arils', 'rails'],\n", + " ['lairs', 'liars'],\n", + " ['lairs', 'rails'],\n", + " ['liars', 'liras'],\n", + " ['liars', 'rials'],\n", + " ['rails', 'rials'],\n", + " ['arise', 'raise'],\n", + " ['arises', 'raises'],\n", + " ['riatas', 'tiaras'],\n", + " ['arles', 'rales'],\n", + " ['earls', 'lares'],\n", + " ['lares', 'laser'],\n", + " ['lares', 'rales'],\n", + " ['lears', 'reals'],\n", + " ['arm', 'ram'],\n", + " ['mar', 'ram'],\n", + " ['armet', 'ramet'],\n", + " ['mater', 'tamer'],\n", + " ['ramet', 'tamer'],\n", + " ['armets', 'ramets'],\n", + " ['maters', 'matres'],\n", + " ['maters', 'tamers'],\n", + " ['ramets', 'tamers'],\n", + " ['armoires', 'armories'],\n", + " ['arms', 'rams'],\n", + " ['mars', 'rams'],\n", + " ['arrest', 'rarest'],\n", + " ['tarres', 'terras'],\n", + " ['ars', 'ras'],\n", + " ['arses', 'rases'],\n", + " ['art', 'rat'],\n", + " ['rat', 'tar'],\n", + " ['strait', 'strati'],\n", + " ['lasters', 'salters'],\n", + " ['salters', 'slaters'],\n", + " ['arts', 'rats'],\n", + " ['rats', 'tars'],\n", + " ['star', 'tsar'],\n", + " ['arty', 'tray'],\n", + " ['coast', 'coats'],\n", + " ['coats', 'costa'],\n", + " ['hassels', 'hassles'],\n", + " ['asker', 'eskar'],\n", + " ['asker', 'saker'],\n", + " ['rakes', 'saker'],\n", + " ['askers', 'eskars'],\n", + " ['askers', 'sakers'],\n", + " ['wakes', 'wekas'],\n", + " ['asp', 'sap'],\n", + " ['pas', 'sap'],\n", + " ['sap', 'spa'],\n", + " ['napes', 'panes'],\n", + " ['neaps', 'peans'],\n", + " ['sneap', 'spean'],\n", + " ['sneaps', 'speans'],\n", + " ['parses', 'passer'],\n", + " ['parses', 'prases'],\n", + " ['spares', 'sparse'],\n", + " ['paresis', 'parises'],\n", + " ['parises', 'praises'],\n", + " ['asps', 'saps'],\n", + " ['pass', 'saps'],\n", + " ['saps', 'spas'],\n", + " ['assert', 'asters'],\n", + " ['serrates', 'terrases'],\n", + " ['assertor', 'assorter'],\n", + " ['assertors', 'assorters'],\n", + " ['rates', 'tares'],\n", + " ['at', 'ta'],\n", + " ['ate', 'eta'],\n", + " ['ate', 'tae'],\n", + " ['eat', 'eta'],\n", + " ['eat', 'tae'],\n", + " ['eta', 'tea'],\n", + " ['tae', 'tea'],\n", + " ['ates', 'etas'],\n", + " ['east', 'eats'],\n", + " ['eats', 'etas'],\n", + " ['eats', 'sate'],\n", + " ['etas', 'teas'],\n", + " ['sate', 'seta'],\n", + " ['seat', 'seta'],\n", + " ['seat', 'teas'],\n", + " ['rattish', 'tartish'],\n", + " ['atlas', 'talas'],\n", + " ['osmatic', 'somatic'],\n", + " ['atomies', 'atomise'],\n", + " ['atoms', 'stoma'],\n", + " ['riata', 'tiara'],\n", + " ['nattered', 'rattened'],\n", + " ['aunt', 'tuna'],\n", + " ['aunts', 'tunas'],\n", + " ['urase', 'ursae'],\n", + " ['ureas', 'ursae'],\n", + " ['auric', 'curia'],\n", + " ['saliva', 'salvia'],\n", + " ['naves', 'vanes'],\n", + " ['raves', 'saver'],\n", + " ['save', 'vase'],\n", + " ['avo', 'ova'],\n", + " ['awe', 'wae'],\n", + " ['awes', 'waes'],\n", + " ['awn', 'wan'],\n", + " ['awned', 'waned'],\n", + " ['dawen', 'dewan'],\n", + " ['awning', 'waning'],\n", + " ['awns', 'wans'],\n", + " ['sawn', 'swan'],\n", + " ['snaw', 'swan'],\n", + " ['awny', 'wany'],\n", + " ['awry', 'wary'],\n", + " ['axel', 'axle'],\n", + " ['axels', 'axles'],\n", + " ['axemen', 'examen'],\n", + " ['ay', 'ya'],\n", + " ['ayes', 'eyas'],\n", + " ['eyas', 'yeas'],\n", + " ['babul', 'bubal'],\n", + " ['babuls', 'bubals'],\n", + " ['bad', 'dab'],\n", + " ['badger', 'barged'],\n", + " ['barged', 'garbed'],\n", + " ['bads', 'dabs'],\n", + " ['bag', 'gab'],\n", + " ['bags', 'gabs'],\n", + " ['baht', 'bath'],\n", + " ['bahts', 'baths'],\n", + " ['balded', 'bladed'],\n", + " ['ban', 'nab'],\n", + " ['bans', 'nabs'],\n", + " ['bar', 'bra'],\n", + " ['barbet', 'rabbet'],\n", + " ['barbets', 'rabbets'],\n", + " ['bard', 'brad'],\n", + " ['bard', 'darb'],\n", + " ['brad', 'drab'],\n", + " ['darb', 'drab'],\n", + " ['bards', 'brads'],\n", + " ['bards', 'darbs'],\n", + " ['brads', 'drabs'],\n", + " ['darbs', 'drabs'],\n", + " ['bare', 'brae'],\n", + " ['bear', 'brae'],\n", + " ['barege', 'bargee'],\n", + " ['bareges', 'bargees'],\n", + " ['barely', 'barley'],\n", + " ['barer', 'barre'],\n", + " ['bares', 'baser'],\n", + " ['bares', 'braes'],\n", + " ['baser', 'saber'],\n", + " ['bears', 'braes'],\n", + " ['saber', 'sabre'],\n", + " ['barging', 'garbing'],\n", + " ['baric', 'rabic'],\n", + " ['barked', 'braked'],\n", + " ['barkier', 'brakier'],\n", + " ['barkiest', 'brakiest'],\n", + " ['barking', 'braking'],\n", + " ['barky', 'braky'],\n", + " ['barn', 'bran'],\n", + " ['barns', 'brans'],\n", + " ['barret', 'barter'],\n", + " ['barrets', 'barters'],\n", + " ['barrette', 'berretta'],\n", + " ['barrettes', 'berrettas'],\n", + " ['bars', 'bras'],\n", + " ['bas', 'sab'],\n", + " ['base', 'sabe'],\n", + " ['based', 'sabed'],\n", + " ['bases', 'sabes'],\n", + " ['basest', 'basset'],\n", + " ['basset', 'bastes'],\n", + " ['basin', 'sabin'],\n", + " ['nabis', 'sabin'],\n", + " ['basins', 'sabins'],\n", + " ['basis', 'bassi'],\n", + " ['bass', 'sabs'],\n", + " ['bast', 'bats'],\n", + " ['bats', 'tabs'],\n", + " ['bat', 'tab'],\n", + " ['baud', 'daub'],\n", + " ['bauds', 'daubs'],\n", + " ['bayadeer', 'bayadere'],\n", + " ['bayadeers', 'bayaderes'],\n", + " ['beam', 'bema'],\n", + " ['beams', 'bemas'],\n", + " ['berate', 'rebate'],\n", + " ['berates', 'rebates'],\n", + " ['becrust', 'becurst'],\n", + " ['bed', 'deb'],\n", + " ['bedlams', 'beldams'],\n", + " ['bidder', 'birded'],\n", + " ['bedrug', 'redbug'],\n", + " ['bedrugged', 'begrudged'],\n", + " ['bedrugging', 'begrudging'],\n", + " ['bedrugs', 'redbugs'],\n", + " ['beds', 'debs'],\n", + " ['been', 'bene'],\n", + " ['beer', 'bree'],\n", + " ['beers', 'brees'],\n", + " ['belated', 'bleated'],\n", + " ['belt', 'blet'],\n", + " ['belts', 'blets'],\n", + " ['blest', 'blets'],\n", + " ['bemire', 'berime'],\n", + " ['berime', 'bireme'],\n", + " ['bemired', 'berimed'],\n", + " ['bemires', 'berimes'],\n", + " ['berimes', 'biremes'],\n", + " ['bemiring', 'beriming'],\n", + " ['ben', 'neb'],\n", + " ['bens', 'nebs'],\n", + " ['beraking', 'breaking'],\n", + " ['berated', 'rebated'],\n", + " ['debater', 'rebated'],\n", + " ['berating', 'rebating'],\n", + " ['beslime', 'besmile'],\n", + " ['beslimed', 'besmiled'],\n", + " ['beslimes', 'besmiles'],\n", + " ['besliming', 'besmiling'],\n", + " ['best', 'bets'],\n", + " ['bestir', 'bister'],\n", + " ['bister', 'bistre'],\n", + " ['bestirs', 'bisters'],\n", + " ['bisters', 'bistres'],\n", + " ['bestrid', 'bistred'],\n", + " ['bestud', 'busted'],\n", + " ['bey', 'bye'],\n", + " ['beys', 'byes'],\n", + " ['bibs', 'sibb'],\n", + " ['bicorn', 'bicron'],\n", + " ['bid', 'dib'],\n", + " ['bids', 'dibs'],\n", + " ['big', 'gib'],\n", + " ['bigly', 'bilgy'],\n", + " ['bike', 'kibe'],\n", + " ['bikes', 'kibes'],\n", + " ['biltong', 'bolting'],\n", + " ['limbate', 'timbale'],\n", + " ['bin', 'nib'],\n", + " ['bins', 'nibs'],\n", + " ['bionic', 'niobic'],\n", + " ['birder', 'birred'],\n", + " ['bis', 'sib'],\n", + " ['blankest', 'blankets'],\n", + " ['blast', 'blats'],\n", + " ['blot', 'bolt'],\n", + " ['blots', 'bolts'],\n", + " ['blouses', 'boluses'],\n", + " ['bluest', 'bluets'],\n", + " ['bustle', 'subtle'],\n", + " ['bluesy', 'blueys'],\n", + " ['umbels', 'umbles'],\n", + " ['blurs', 'slurb'],\n", + " ['boar', 'bora'],\n", + " ['boars', 'boras'],\n", + " ['boast', 'boats'],\n", + " ['bodies', 'dobies'],\n", + " ['body', 'doby'],\n", + " ['bog', 'gob'],\n", + " ['bogan', 'goban'],\n", + " ['bogans', 'gobans'],\n", + " ['bogies', 'gobies'],\n", + " ['bogs', 'gobs'],\n", + " ['bogy', 'goby'],\n", + " ['bolar', 'lobar'],\n", + " ['labor', 'lobar'],\n", + " ['bolder', 'bordel'],\n", + " ['bole', 'lobe'],\n", + " ['boles', 'lobes'],\n", + " ['bolo', 'lobo'],\n", + " ['bolos', 'lobos'],\n", + " ['bolster', 'lobster'],\n", + " ['bolsters', 'lobsters'],\n", + " ['bombed', 'mobbed'],\n", + " ['bomber', 'mobber'],\n", + " ['bombers', 'mobbers'],\n", + " ['bombing', 'mobbing'],\n", + " ['bonus', 'bosun'],\n", + " ['booger', 'goober'],\n", + " ['boogers', 'goobers'],\n", + " ['boor', 'broo'],\n", + " ['boors', 'broos'],\n", + " ['boost', 'boots'],\n", + " ['bore', 'robe'],\n", + " ['bored', 'robed'],\n", + " ['orbed', 'robed'],\n", + " ['bores', 'robes'],\n", + " ['robes', 'sober'],\n", + " ['boring', 'robing'],\n", + " ['orbing', 'robing'],\n", + " ['bos', 'sob'],\n", + " ['boss', 'sobs'],\n", + " ['botanies', 'botanise'],\n", + " ['unrobes', 'unsober'],\n", + " ['brag', 'grab'],\n", + " ['garb', 'grab'],\n", + " ['brags', 'grabs'],\n", + " ['garbs', 'grabs'],\n", + " ['brede', 'breed'],\n", + " ['bredes', 'breeds'],\n", + " ['dibber', 'ribbed'],\n", + " ['fiber', 'fibre'],\n", + " ['fibers', 'fibres'],\n", + " ['briskest', 'briskets'],\n", + " ['omber', 'ombre'],\n", + " ['ombers', 'ombres'],\n", + " ['somber', 'sombre'],\n", + " ['bromo', 'broom'],\n", + " ['bromos', 'brooms'],\n", + " ['brugh', 'burgh'],\n", + " ['brughs', 'burghs'],\n", + " ['bruin', 'burin'],\n", + " ['bruins', 'burins'],\n", + " ['buries', 'busier'],\n", + " ['buries', 'rubies'],\n", + " ['brunet', 'burnet'],\n", + " ['brunets', 'burnets'],\n", + " ['brunt', 'burnt'],\n", + " ['bud', 'dub'],\n", + " ['buds', 'dubs'],\n", + " ['bugle', 'bulge'],\n", + " ['bugled', 'bulged'],\n", + " ['bugler', 'bulger'],\n", + " ['buglers', 'bulgers'],\n", + " ['bugles', 'bulges'],\n", + " ['bugling', 'bulging'],\n", + " ['bun', 'nub'],\n", + " ['buns', 'nubs'],\n", + " ['bur', 'rub'],\n", + " ['unbar', 'urban'],\n", + " ['buras', 'bursa'],\n", + " ['burble', 'rubble'],\n", + " ['burbled', 'rubbled'],\n", + " ['burbles', 'rubbles'],\n", + " ['burblier', 'rubblier'],\n", + " ['burbliest', 'rubbliest'],\n", + " ['burbling', 'rubbling'],\n", + " ['burbly', 'rubbly'],\n", + " ['burden', 'burned'],\n", + " ['buried', 'rubied'],\n", + " ['burier', 'rubier'],\n", + " ['burkes', 'busker'],\n", + " ['burs', 'rubs'],\n", + " ['rebus', 'rubes'],\n", + " ['rubes', 'suber'],\n", + " ['bury', 'ruby'],\n", + " ['burying', 'rubying'],\n", + " ['bus', 'sub'],\n", + " ['buss', 'subs'],\n", + " ['bust', 'buts'],\n", + " ['buts', 'tubs'],\n", + " ['cubist', 'cubits'],\n", + " ['busy', 'buys'],\n", + " ['but', 'tub'],\n", + " ['cadaster', 'cadastre'],\n", + " ['cadasters', 'cadastres'],\n", + " ['cades', 'cased'],\n", + " ['cades', 'daces'],\n", + " ['sacred', 'scared'],\n", + " ['caestus', 'cuestas'],\n", + " ['cafe', 'face'],\n", + " ['cafes', 'faces'],\n", + " ['caliber', 'calibre'],\n", + " ['calibers', 'calibres'],\n", + " ['calk', 'lack'],\n", + " ['calked', 'lacked'],\n", + " ['calker', 'lacker'],\n", + " ['calkers', 'lackers'],\n", + " ['calking', 'lacking'],\n", + " ['calks', 'lacks'],\n", + " ['caller', 'cellar'],\n", + " ['callers', 'cellars'],\n", + " ['calm', 'clam'],\n", + " ['calms', 'clams'],\n", + " ['calque', 'claque'],\n", + " ['calques', 'claques'],\n", + " ['calve', 'clave'],\n", + " ['cam', 'mac'],\n", + " ['caramel', 'ceramal'],\n", + " ['cams', 'macs'],\n", + " ['discanted', 'distanced'],\n", + " ['caners', 'casern'],\n", + " ['canine', 'cannie'],\n", + " ['ceratins', 'creatins'],\n", + " ['cannot', 'canton'],\n", + " ['canst', 'cants'],\n", + " ['decanter', 'recanted'],\n", + " ['cantor', 'carton'],\n", + " ['carton', 'craton'],\n", + " ['cantors', 'cartons'],\n", + " ['cartons', 'cratons'],\n", + " ['cap', 'pac'],\n", + " ['cape', 'pace'],\n", + " ['caped', 'paced'],\n", + " ['caper', 'pacer'],\n", + " ['capers', 'pacers'],\n", + " ['capes', 'paces'],\n", + " ['scape', 'space'],\n", + " ['caps', 'pacs'],\n", + " ['caption', 'paction'],\n", + " ['captions', 'pactions'],\n", + " ['captor', 'cartop'],\n", + " ['caramels', 'ceramals'],\n", + " ['carbon', 'corban'],\n", + " ['carbons', 'corbans'],\n", + " ['triacids', 'triadics'],\n", + " ['carer', 'racer'],\n", + " ['carers', 'racers'],\n", + " ['caress', 'carses'],\n", + " ['carses', 'crases'],\n", + " ['caret', 'carte'],\n", + " ['caret', 'cater'],\n", + " ['carte', 'crate'],\n", + " ['crate', 'trace'],\n", + " ['carets', 'cartes'],\n", + " ['carets', 'caters'],\n", + " ['cartes', 'caster'],\n", + " ['cartes', 'crates'],\n", + " ['crates', 'traces'],\n", + " ['caries', 'cerias'],\n", + " ['cark', 'rack'],\n", + " ['carks', 'racks'],\n", + " ['carn', 'narc'],\n", + " ['carns', 'narcs'],\n", + " ['carol', 'coral'],\n", + " ['carols', 'corals'],\n", + " ['carp', 'crap'],\n", + " ['carped', 'craped'],\n", + " ['carpel', 'parcel'],\n", + " ['carpels', 'parcels'],\n", + " ['scarper', 'scraper'],\n", + " ['carping', 'craping'],\n", + " ['scarping', 'scraping'],\n", + " ['carps', 'craps'],\n", + " ['scarp', 'scrap'],\n", + " ['carted', 'crated'],\n", + " ['crated', 'traced'],\n", + " ['carter', 'crater'],\n", + " ['crater', 'tracer'],\n", + " ['carters', 'craters'],\n", + " ['craters', 'tracers'],\n", + " ['carting', 'crating'],\n", + " ['crating', 'tracing'],\n", + " ['carve', 'crave'],\n", + " ['carved', 'craved'],\n", + " ['carven', 'craven'],\n", + " ['carver', 'craver'],\n", + " ['carvers', 'cravers'],\n", + " ['carves', 'craves'],\n", + " ['carving', 'craving'],\n", + " ['carvings', 'cravings'],\n", + " ['cascabel', 'cascable'],\n", + " ['cascabels', 'cascables'],\n", + " ['cascade', 'saccade'],\n", + " ['cascades', 'saccades'],\n", + " ['chases', 'chasse'],\n", + " ['cask', 'sack'],\n", + " ['casked', 'sacked'],\n", + " ['casking', 'sacking'],\n", + " ['casks', 'sacks'],\n", + " ['casque', 'sacque'],\n", + " ['casques', 'sacques'],\n", + " ['cassock', 'cossack'],\n", + " ['cassocks', 'cossacks'],\n", + " ['caste', 'cesta'],\n", + " ['cates', 'taces'],\n", + " ['castes', 'cestas'],\n", + " ['castors', 'costars'],\n", + " ['casual', 'causal'],\n", + " ['casually', 'causally'],\n", + " ['casuals', 'causals'],\n", + " ['cate', 'tace'],\n", + " ['cerated', 'created'],\n", + " ['recrate', 'retrace'],\n", + " ['retrace', 'terrace'],\n", + " ['recrates', 'retraces'],\n", + " ['retraces', 'terraces'],\n", + " ['cause', 'sauce'],\n", + " ['caused', 'sauced'],\n", + " ['causer', 'saucer'],\n", + " ['causes', 'sauces'],\n", + " ['causing', 'saucing'],\n", + " ['ceder', 'cered'],\n", + " ['cered', 'creed'],\n", + " ['center', 'centre'],\n", + " ['decenter', 'decentre'],\n", + " ['centers', 'centres'],\n", + " ['cento', 'conte'],\n", + " ['centos', 'contes'],\n", + " ['cerate', 'create'],\n", + " ['cerates', 'creates'],\n", + " ['ceratin', 'certain'],\n", + " ['ceratin', 'creatin'],\n", + " ['cerci', 'ceric'],\n", + " ['ceruse', 'recuse'],\n", + " ['recuse', 'secure'],\n", + " ['cerite', 'recite'],\n", + " ['cerites', 'recites'],\n", + " ['cero', 'core'],\n", + " ['ceros', 'cores'],\n", + " ['cores', 'corse'],\n", + " ['course', 'source'],\n", + " ['certes', 'terces'],\n", + " ['certification', 'rectification'],\n", + " ['certifications', 'rectifications'],\n", + " ['certified', 'rectified'],\n", + " ['certifier', 'rectifier'],\n", + " ['certifiers', 'rectifiers'],\n", + " ['certifies', 'rectifies'],\n", + " ['certify', 'rectify'],\n", + " ['certifying', 'rectifying'],\n", + " ['certitude', 'rectitude'],\n", + " ['certitudes', 'rectitudes'],\n", + " ['ceruses', 'recuses'],\n", + " ['recuses', 'secures'],\n", + " ['cervices', 'crevices'],\n", + " ['cess', 'secs'],\n", + " ['latches', 'satchel'],\n", + " ['chams', 'chasm'],\n", + " ['chancres', 'cranches'],\n", + " ['snatcher', 'stancher'],\n", + " ['snatch', 'stanch'],\n", + " ['sachet', 'taches'],\n", + " ['snatches', 'stanches'],\n", + " ['chicle', 'cliche'],\n", + " ['chicles', 'cliches'],\n", + " ['chiel', 'chile'],\n", + " ['chiels', 'chiles'],\n", + " ['chiles', 'chisel'],\n", + " ['inched', 'niched'],\n", + " ['inches', 'niches'],\n", + " ['inching', 'niching'],\n", + " ['chopine', 'phocine'],\n", + " ['ocher', 'ochre'],\n", + " ['oraches', 'roaches'],\n", + " ['ochers', 'ochres'],\n", + " ['citherns', 'cithrens'],\n", + " ['cider', 'dicer'],\n", + " ['dicer', 'riced'],\n", + " ['ciders', 'dicers'],\n", + " ['cine', 'nice'],\n", + " ['cion', 'coin'],\n", + " ['cion', 'icon'],\n", + " ['coin', 'coni'],\n", + " ['cions', 'coins'],\n", + " ['cions', 'icons'],\n", + " ['cipolin', 'picolin'],\n", + " ['cipolins', 'picolins'],\n", + " ['cithern', 'cithren'],\n", + " ['tetracid', 'tetradic'],\n", + " ['citrin', 'nitric'],\n", + " ['clanged', 'glanced'],\n", + " ['clanging', 'glancing'],\n", + " ['claps', 'clasp'],\n", + " ['clematis', 'climates'],\n", + " ['clod', 'cold'],\n", + " ['clods', 'colds'],\n", + " ['closest', 'closets'],\n", + " ['clot', 'colt'],\n", + " ['clots', 'colts'],\n", + " ['cloy', 'coly'],\n", + " ['clutch', 'cultch'],\n", + " ['clutches', 'cultches'],\n", + " ['coal', 'cola'],\n", + " ['cola', 'loca'],\n", + " ['coals', 'colas'],\n", + " ['coax', 'coxa'],\n", + " ['cod', 'doc'],\n", + " ['codder', 'corded'],\n", + " ['code', 'coed'],\n", + " ['coden', 'coned'],\n", + " ['coder', 'cored'],\n", + " ['codes', 'coeds'],\n", + " ['codex', 'coxed'],\n", + " ['cods', 'docs'],\n", + " ['cohered', 'ochered'],\n", + " ['cohering', 'ochering'],\n", + " ['fico', 'foci'],\n", + " ['coinfer', 'conifer'],\n", + " ['coinfers', 'conifers'],\n", + " ['collide', 'collied'],\n", + " ['colonies', 'colonise'],\n", + " ['combat', 'tombac'],\n", + " ['combats', 'tombacs'],\n", + " ['comet', 'comte'],\n", + " ['comets', 'comtes'],\n", + " ['compeer', 'compere'],\n", + " ['compeers', 'comperes'],\n", + " ['compiled', 'complied'],\n", + " ['compiler', 'complier'],\n", + " ['compilers', 'compliers'],\n", + " ['compiles', 'complies'],\n", + " ['complaint', 'compliant'],\n", + " ['concent', 'connect'],\n", + " ['concents', 'connects'],\n", + " ['concerted', 'concreted'],\n", + " ['concerting', 'concreting'],\n", + " ['condoles', 'consoled'],\n", + " ['condor', 'cordon'],\n", + " ['condors', 'cordons'],\n", + " ['conk', 'nock'],\n", + " ['conked', 'nocked'],\n", + " ['conking', 'nocking'],\n", + " ['conks', 'nocks'],\n", + " ['conservation', 'conversation'],\n", + " ['conservations', 'conversations'],\n", + " ['conserve', 'converse'],\n", + " ['conserved', 'conversed'],\n", + " ['conserves', 'converses'],\n", + " ['conserving', 'conversing'],\n", + " ['copes', 'copse'],\n", + " ['copula', 'cupola'],\n", + " ['copulas', 'cupolas'],\n", + " ['cork', 'rock'],\n", + " ['corked', 'rocked'],\n", + " ['docker', 'rocked'],\n", + " ['corker', 'rocker'],\n", + " ['corkers', 'rockers'],\n", + " ['corkier', 'rockier'],\n", + " ['corkiest', 'rockiest'],\n", + " ['corking', 'rocking'],\n", + " ['corklike', 'rocklike'],\n", + " ['corks', 'rocks'],\n", + " ['corky', 'rocky'],\n", + " ['corny', 'crony'],\n", + " ['coroner', 'crooner'],\n", + " ['coroners', 'crooners'],\n", + " ['corps', 'crops'],\n", + " ['electors', 'electros'],\n", + " ['rectos', 'sector'],\n", + " ['coset', 'cotes'],\n", + " ['cost', 'cots'],\n", + " ['costumer', 'customer'],\n", + " ['costumers', 'customers'],\n", + " ['cosy', 'coys'],\n", + " ['coude', 'douce'],\n", + " ['courses', 'sources'],\n", + " ['couth', 'touch'],\n", + " ['couther', 'toucher'],\n", + " ['couthier', 'touchier'],\n", + " ['couthiest', 'touchiest'],\n", + " ['coves', 'voces'],\n", + " ['lascar', 'rascal'],\n", + " ['crafted', 'fracted'],\n", + " ['recrated', 'retraced'],\n", + " ['retraced', 'terraced'],\n", + " ['recrating', 'retracing'],\n", + " ['retracing', 'terracing'],\n", + " ['creep', 'crepe'],\n", + " ['creeps', 'crepes'],\n", + " ['creepy', 'crepey'],\n", + " ['crud', 'curd'],\n", + " ['cruds', 'curds'],\n", + " ['cruet', 'curet'],\n", + " ['cruet', 'eruct'],\n", + " ['curet', 'cuter'],\n", + " ['eruct', 'truce'],\n", + " ['cruets', 'curets'],\n", + " ['cruets', 'eructs'],\n", + " ['eructs', 'truces'],\n", + " ['rectus', 'recuts'],\n", + " ['crus', 'curs'],\n", + " ['cruse', 'curse'],\n", + " ['cures', 'curse'],\n", + " ['cruses', 'curses'],\n", + " ['curses', 'cusser'],\n", + " ['crust', 'curst'],\n", + " ...]" + ] + }, + "execution_count": 128, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "metathesis_pair(word_list)" ] }, { From 6a768cac12ebe5a0c8dd4d881f19df57567fe0d5 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Wed, 25 Feb 2026 11:25:28 +0000 Subject: [PATCH 33/56] Solution to trigram counting and sorting - note that counter requires the window, not the individual words and the global variables are declared post-function definitions --- .DS_Store | Bin 6148 -> 6148 bytes chapters/chap12.ipynb | 1384 ++++++++++++++----- chapters/dr_jekyll.txt | 2556 +++++++++++++++++++++++++++++++++++ chapters/hello.py | 1 + chapters/pg43.txt | 2930 ++++++++++++++++++++++++++++++++++++++++ 5 files changed, 6511 insertions(+), 360 deletions(-) create mode 100644 chapters/dr_jekyll.txt create mode 100644 chapters/hello.py create mode 100644 chapters/pg43.txt diff --git a/.DS_Store b/.DS_Store index 365716d9f2a9636ad65f7dbcfc7c493765f54b3f..62a09150f793a35aa58690b307a2d38aa8cd4f9f 100644 GIT binary patch delta 47 zcmZoMXffEJ&BVB4vJO)rw?uWdnUS%Mf{Bsg[word1 word2]>...." ] }, { @@ -1171,22 +1536,25 @@ "id": "9376558c", "metadata": {}, "source": [ - "We'll use the following function to process the words one at a time." + "We'll use the following function to process the words one at a time.\n" ] }, { "cell_type": "code", - "execution_count": 53, + "execution_count": null, "id": "495ad429", "metadata": {}, "outputs": [], "source": [ "def process_word(word):\n", - " window.append(word)\n", - " \n", + "\n", + " window.append(word) # add to end of list\n", + "\n", " if len(window) == 2:\n", + " \n", " count_bigram(window)\n", - " window.pop(0)" + " \n", + " window.pop(0) # remove the first item, leaves the second, ready for moving the window forward" ] }, { @@ -1201,18 +1569,20 @@ "Since there are two words in the window, it calls `count_bigram` to keep track of how many times each bigram appears.\n", "Then it uses `pop` to remove the first word from the window.\n", "\n", - "The following program loops through the words in the book and processes them one at a time." + "The following program loops through the words in the book and processes them one at a time.\n" ] }, { "cell_type": "code", - "execution_count": 54, + "execution_count": 52, "id": "c1224061", "metadata": {}, "outputs": [], "source": [ "for line in open(filename):\n", + "\n", " for word in split_line(line):\n", + " \n", " word = clean_word(word)\n", " process_word(word)" ] @@ -1223,15 +1593,27 @@ "metadata": {}, "source": [ "The result is a dictionary that maps from each bigram to the number of times it appears.\n", - "We can use `print_most_common` to see the most common bigrams." + "We can use `print_most_common` to see the most common bigrams.\n" ] }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 53, "id": "4296485a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "178\t('of', 'the')\n", + "139\t('in', 'the')\n", + "94\t('it', 'was')\n", + "80\t('and', 'the')\n", + "73\t('to', 'the')\n" + ] + } + ], "source": [ "print_most_common(bigram_counter)" ] @@ -1242,12 +1624,12 @@ "metadata": {}, "source": [ "Looking at these results, we can get a sense of which pairs of words are most likely to appear together.\n", - "We can also use the results to generate random text, like this." + "We can also use the results to generate random text, like this.\n" ] }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 54, "id": "e03fd803", "metadata": { "tags": [] @@ -1259,14 +1641,16 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": 55, "id": "f6ee1840", "metadata": {}, "outputs": [], "source": [ - "bigrams = list(bigram_counter)\n", - "weights = bigram_counter.values()\n", - "random_bigrams = random.choices(bigrams, weights=weights, k=6)" + "bigrams = list(bigram_counter) # turns into a list\n", + "\n", + "weights = bigram_counter.values() # extracts the value parts from the list\n", + "\n", + "random_bigrams = random.choices(bigrams, weights=weights, k=6) # randomly chooses the input, based on the weighting for a total of k" ] }, { @@ -1275,20 +1659,29 @@ "metadata": {}, "source": [ "`bigrams` is a list of the bigrams that appear in the books.\n", - "`weights` is a list of their frequencies, so `random_bigrams` is a sample where the probability a bigram is selected is proportional to its frequency. \n", + "`weights` is a list of their frequencies, so `random_bigrams` is a sample where the probability a bigram is selected is proportional to its frequency.\n", "\n", - "Here are the results." + "Here are the results.\n" ] }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 56, "id": "d6c65d79", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "to suggest this preface to detain fact is above all the laboratory " + ] + } + ], "source": [ "for pair in random_bigrams:\n", - " print(' '.join(pair), end=' ')" + "\n", + " print(' '.join(pair), end=' ') # finds space ' ' and joins each pair item in the list, ending with space ' '" ] }, { @@ -1296,7 +1689,7 @@ "id": "5f24c3b6", "metadata": {}, "source": [ - "This way of generating text is better than choosing random words, but still doesn't make a lot of sense." + "This way of generating text is better than choosing random words, but still doesn't make a lot of sense.\n" ] }, { @@ -1307,17 +1700,18 @@ "## Markov analysis\n", "\n", "We can do better with Markov chain text analysis, which computes, for each word in a text, the list of words that come next.\n", - "As an example, we'll analyze these lyrics from the Monty Python song *Eric, the Half a Bee*:" + "As an example, we'll analyze these lyrics from the Monty Python song _Eric, the Half a Bee_:\n" ] }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 57, "id": "3171d592", "metadata": {}, "outputs": [], "source": [ - "song = \"\"\"\n", + "# DocString\n", + "song = \"\"\" \n", "Half a bee, philosophically,\n", "Must, ipso facto, half not be.\n", "But half the bee has got to be\n", @@ -1330,17 +1724,17 @@ "id": "583ab9f0", "metadata": {}, "source": [ - "To store the results, we'll use a dictionary that maps from each word to the list of words that follow it." + "To store the results, we'll use a dictionary that maps from each word to the list of words that follow it.\n" ] }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 58, "id": "3321e6a4", "metadata": {}, "outputs": [], "source": [ - "successor_map = {}" + "successor_map = {} # empty dict" ] }, { @@ -1348,17 +1742,17 @@ "id": "d5d85b09", "metadata": {}, "source": [ - "As an example, let's start with the first two words of the song." + "As an example, let's start with the first two words of the song.\n" ] }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 59, "id": "e4e55c71", "metadata": {}, "outputs": [], "source": [ - "first = 'half'\n", + "first = 'half' # hard coded\n", "second = 'a'" ] }, @@ -1367,17 +1761,28 @@ "id": "0349fe78", "metadata": {}, "source": [ - "If the first word is not in `successor_map`, we have to add a new item that maps from the first word to a list containing the second word." + "If the first word is not in `successor_map`, we have to add a new item that maps from the first word to a list containing the second word.\n" ] }, { "cell_type": "code", - "execution_count": 62, + "execution_count": 60, "id": "f25dcb5e", "metadata": {}, - "outputs": [], - "source": [ - "successor_map[first] = [second]\n", + "outputs": [ + { + "data": { + "text/plain": [ + "{'half': ['a']}" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "successor_map[first] = [second] # add new a list to the key of 'first'\n", "successor_map" ] }, @@ -1386,15 +1791,26 @@ "id": "55bb8df9", "metadata": {}, "source": [ - "If the first word is already in the dictionary, we can look it up to get the list of successors we've seen so far, and append the new one." + "If the first word is already in the dictionary, we can look it up to get the list of successors we've seen so far, and append the new one.\n" ] }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 61, "id": "990354a0", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'half': ['a', 'not']}" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "first = 'half'\n", "second = 'not'\n", @@ -1408,23 +1824,29 @@ "id": "6289cc32", "metadata": {}, "source": [ - "The following function encapsulates these steps." + "The following function encapsulates these steps.\n" ] }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 62, "id": "b9371452", "metadata": {}, "outputs": [], "source": [ "def add_bigram(bigram):\n", - " first, second = bigram\n", - " \n", - " if first not in successor_map:\n", - " successor_map[first] = [second]\n", + "\n", + " first, second = bigram # extract the two words\n", + "\n", + " # magic words 'not' and 'in' do logic-check-and-search in the dict for the key\n", + " if first not in successor_map: \n", + " \n", + " # add a list to the first entry (key) containing the value from the 'second' input\n", + " successor_map[first] = [second] \n", + "\n", " else:\n", - " successor_map[first].append(second)" + " # otherwise, keep adding to the second list\n", + " successor_map[first].append(second) " ] }, { @@ -1436,22 +1858,27 @@ "In this way, `successor_map` keeps track of how many times each successor appears.\n", "\n", "As we did in the previous section, we'll use a list called `window` to store pairs of consecutive words.\n", - "And we'll use the following function to process the words one at a time." + "And we'll use the following function to process the words one at a time.\n" ] }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 63, "id": "8c3f45c2", "metadata": {}, "outputs": [], "source": [ "def process_word_bigram(word):\n", - " window.append(word)\n", - " \n", - " if len(window) == 2:\n", - " add_bigram(window)\n", - " window.pop(0)" + "\n", + " window.append(word) # add to list\n", + "\n", + " if len(window) == 2: # only triggers when 2\n", + "\n", + " # add list to the previous dictionary of lists\n", + " add_bigram(window) \n", + " \n", + " # remove the first item in the window for sliding forwards (enables the logic 'if' check)\n", + " window.pop(0) " ] }, { @@ -1459,21 +1886,23 @@ "id": "861a60d9", "metadata": {}, "source": [ - "Here's how we use it to process the words in the song." + "Here's how we use it to process the words in the song.\n" ] }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 64, "id": "641990a3", "metadata": {}, "outputs": [], "source": [ - "successor_map = {}\n", - "window = []\n", + "successor_map = {} # dict\n", + "window = [] # list\n", + "\n", + "for word in song.split(): # split each word in the string into its individual components\n", "\n", - "for word in song.split():\n", " word = clean_word(word)\n", + "\n", " process_word_bigram(word)" ] }, @@ -1482,17 +1911,45 @@ "id": "bf490d67", "metadata": {}, "source": [ - "And here are the results." + "And here are the results.\n" ] }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 65, "id": "9322a49a", "metadata": {}, - "outputs": [], - "source": [ - "successor_map" + "outputs": [ + { + "data": { + "text/plain": [ + "{'half': ['a', 'not', 'the'],\n", + " 'a': ['bee', 'vis'],\n", + " 'bee': ['philosophically', 'has'],\n", + " 'philosophically': ['must'],\n", + " 'must': ['ipso'],\n", + " 'ipso': ['facto'],\n", + " 'facto': ['half'],\n", + " 'not': ['be'],\n", + " 'be': ['but', 'vis'],\n", + " 'but': ['half'],\n", + " 'the': ['bee'],\n", + " 'has': ['got'],\n", + " 'got': ['to'],\n", + " 'to': ['be'],\n", + " 'vis': ['a', 'its'],\n", + " 'its': ['entity'],\n", + " 'entity': [\"d'you\"],\n", + " \"d'you\": ['see']}" + ] + }, + "execution_count": 65, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "successor_map # a dict (keys) of lists (values)" ] }, { @@ -1504,22 +1961,25 @@ "The word `'a'` can be followed by `'bee'` or `'vis'`.\n", "Most of the other words appear only once, so they are followed by only a single word.\n", "\n", - "Now let's analyze the book." + "Now let's analyze the book.\n" ] }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 66, "id": "45a60c52", "metadata": {}, "outputs": [], "source": [ - "successor_map = {}\n", - "window = []\n", + "successor_map = {} # dict\n", + "window = [] # list\n", "\n", "for line in open(filename):\n", + "\n", " for word in split_line(line):\n", + "\n", " word = clean_word(word)\n", + " \n", " process_word_bigram(word)" ] }, @@ -1528,37 +1988,92 @@ "id": "2676e2fb", "metadata": {}, "source": [ - "We can look up any word and find the words that can follow it." + "We can look up any word and find the words that can follow it.\n" ] }, { "cell_type": "code", - "execution_count": 69, + "execution_count": 67, "id": "3e86102c", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "story ['of', 'of', 'indeed', 'but', 'for', 'of', 'that']\n", + "incident ['of', 'of', 'at', 'of', 'of', 'at', 'this']\n", + "lanyon’s ['narrative', 'there', 'face', 'manner', 'narrative', 'the', 'condemnation']\n", + "common ['it', 'interest', 'friends', 'friends', 'observers', 'but', 'quarry']\n", + "relief ['the', 'to', 'when', 'that', 'that', 'of', 'it']\n", + "appearance ['of', 'well', 'something', 'he', 'amply', 'of', 'which']\n", + "going ['east', 'in', 'to', 'to', 'up', 'to', 'of']\n", + "till ['at', 'the', 'i', 'yesterday', 'the', 'that', 'weariness']\n", + "walk ['and', 'into', 'with', 'all', 'steadfastly', 'attired', 'with']\n", + "sounds ['nothing', 'carried', 'out', 'the', 'of', 'of', 'with']\n", + "really ['like', 'damnable', 'can', 'a', 'a', 'not', 'be']\n", + "does ['not', 'not', 'indeed', 'not', 'the', 'not', 'not']\n", + "reply ['i', 'but', 'whose', 'i', 'some', 'that’s', 'i']\n", + "continued ['mr', 'the', 'the', 'the', 'the', 'poole', 'utterson']\n", + "seems ['scarcely', 'hardly', 'to', 'she', 'much', 'he', 'to']\n", + "walked ['on', 'over', 'some', 'was', 'on', 'with', 'fast']\n", + "that’s ['a', 'it', 'talking', 'very', 'not', 'such', 'not']\n", + "although ['i', 'a', 'it', 'the', 'we', 'they', 'i']\n", + "until ['the', 'the', 'they', 'they', 'the', 'to-morrow', 'i']\n", + "disappearance ['or', 'the', 'of', 'of', 'here', 'and', 'but']\n", + "step ['into', 'or', 'back', 'natural', 'into', 'of', 'leaping']\n", + "wish ['the', 'you', 'to', 'you', 'to', 'i', 'to']\n", + "aware ['of', 'of', 'of', 'that', 'jekyll’s', 'that', 'of']\n", + "thank ['you', 'you', 'you', 'you', 'you', 'god', 'you']\n", + "maid ['servant', 'described', 'fainted', 'had', 'calls', 'had', 'lifted']\n", + "besides ['were', 'was', 'for', 'a', 'with', 'with', 'which']\n", + "observed ['the', 'utterson', 'with', 'the', 'that', 'that', 'that']\n", + "among ['other', 'the', 'the', 'the', 'my', 'my', 'temptations']\n" + ] + } + ], "source": [ "# I used this cell to find a predecessor with a good number of possible successors\n", "# and at least one repeated word.\n", "\n", "def has_duplicates(t):\n", + "\n", + " # creates a 'set' from input 't'\n", + " ## Sets are unordered collections of unique values\n", + " ## converting to a 'set' auto removes duplicate values\n", + " ## 'dict' maps keys->values, 'set' just stores values\n", + " ## if True, then there are duplicates and value returned\n", " return len(set(t)) < len(t)\n", "\n", - "for key, value in successor_map.items():\n", + "# looks for each item (pair) in the dict (both the keys and values)\n", + "for key, value in successor_map.items(): \n", + "\n", " if len(value) == 7 and has_duplicates(value):\n", + "\n", " print(key, value)" ] }, { "cell_type": "code", - "execution_count": 70, + "execution_count": 68, "id": "e49d52f7", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['east', 'in', 'to', 'to', 'up', 'to', 'of']" + ] + }, + "execution_count": 68, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "successor_map['going']" + "successor_map['going'] # access key which prints associated values" ] }, { @@ -1566,7 +2081,7 @@ "id": "7b777a9c", "metadata": {}, "source": [ - "In this list of successors, notice that the word `'to'` appears three times -- the other successors only appear once." + "In this list of successors, notice that the word `'to'` appears three times -- the other successors only appear once.\n" ] }, { @@ -1579,37 +2094,50 @@ "We can use the results from the previous section to generate new text with the same relationships between consecutive words as in the original.\n", "Here's how it works:\n", "\n", - "* Starting with any word that appears in the text, we look up its possible successors and choose one at random.\n", + "- Starting with any word that appears in the text, we look up its possible successors and choose one at random.\n", "\n", - "* Then, using the chosen word, we look up its possible successors, and choose one at random.\n", + "- Then, using the chosen word, we look up its possible successors, and choose one at random.\n", "\n", "We can repeat this process to generate as many words as we want.\n", "As an example, let's start with the word `'although'`.\n", - "Here are the words that can follow it." + "Here are the words that can follow it.\n" ] }, { "cell_type": "code", - "execution_count": 71, + "execution_count": 69, "id": "15108884", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['i', 'a', 'it', 'the', 'we', 'they', 'i']" + ] + }, + "execution_count": 69, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "word = 'although'\n", - "successors = successor_map[word]\n", - "successors" + "word = 'although' # variable\n", + "successors = successor_map[word] # variable = key \n", + "\n", + "# returned value from dict with variable-key stored\n", + "successors " ] }, { "cell_type": "code", - "execution_count": 72, + "execution_count": 70, "id": "747a41be", "metadata": { "tags": [] }, "outputs": [], "source": [ - "# this cell initializes the random number generator so it \n", + "# this cell initializes the random number generator so it\n", "# starts at the same point in the sequence each time this\n", "# notebook runs.\n", "\n", @@ -1621,17 +2149,31 @@ "id": "b26a2ead", "metadata": {}, "source": [ - "We can use `choice` to choose from the list with equal probability." + "We can use `choice` to choose from the list with equal probability.\n" ] }, { "cell_type": "code", - "execution_count": 73, + "execution_count": 71, "id": "5a4682dc", "metadata": {}, - "outputs": [], - "source": [ + "outputs": [ + { + "data": { + "text/plain": [ + "'i'" + ] + }, + "execution_count": 71, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Feed stored dict values into random chosing function\n", "word = random.choice(successors)\n", + "\n", + "# Random seed ensures we always get 'i'\n", "word" ] }, @@ -1642,20 +2184,34 @@ "source": [ "If the same word appears more than once in the list, it is more likely to be selected.\n", "\n", - "Repeating these steps, we can use the following loop to generate a longer series." + "Repeating these steps, we can use the following loop to generate a longer series.\n" ] }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 72, "id": "36ee0f76", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "continue to hesitate and swallowed the smile withered from that " + ] + } + ], "source": [ - "for i in range(10):\n", + "for i in range(10): # count up to 10\n", + "\n", " successors = successor_map[word]\n", + "\n", " word = random.choice(successors)\n", - " print(word, end=' ')" + "\n", + " # after each word, add space ' '\n", + " print(word, end=' ')\n", + "\n", + " # end of function auto increments 'i' counter" ] }, { @@ -1667,7 +2223,7 @@ "\n", "We can do better using more than one word as a key in `successor_map`.\n", "For example, we can make a dictionary that maps from each bigram -- or trigram -- to the list of words that come next.\n", - "As an exercise, you'll have a chance to implement this analysis and see what the results look like." + "As an exercise, you'll have a chance to implement this analysis and see what the results look like.\n" ] }, { @@ -1682,27 +2238,32 @@ "At this point we are writing more substantial programs, and you might find that you are spending more time debugging.\n", "If you are stuck on a difficult bug, here are a few things to try:\n", "\n", - "* Reading: Examine your code, read it back to yourself, and check that it says what you meant to say.\n", + "- **Reading**: Examine your code, read it back to yourself, and check that it says what you meant to say.\n", "\n", - "* Running: Experiment by making changes and running different versions. Often if you display the right thing at the right place in the program, the problem becomes obvious, but sometimes you have to build scaffolding.\n", + "- **Illustrating**: Alongside reading, draw simple flow diagram.\n", "\n", - "* Ruminating: Take some time to think! What kind of error is it: syntax, runtime,\n", - " or semantic? What information can you get from the error messages,\n", - " or from the output of the program? What kind of error could cause\n", - " the problem you're seeing? What did you change last, before the\n", - " problem appeared?\n", + "- **Inserting Sudocode**: After reading and illustrating, translate the flow into comments that sit above the code.\n", "\n", - "* Rubberducking: If you explain the problem to someone else, you sometimes find the\n", - " answer before you finish asking the question. Often you don't need\n", - " the other person; you could just talk to a rubber duck. And that's\n", - " the origin of the well-known strategy called **rubber duck\n", - " debugging**. I am not making this up -- see\n", - " .\n", + "- **Running**: Experiment by making changes and running different versions. \n", + "-- Often if you display the right thing at the right place in the program, the problem becomes obvious, but sometimes you have to build scaffolding.\n", "\n", - "* Retreating: At some point, the best thing to do is back up -- undoing recent\n", - " changes -- until you get to a program that works. Then you can start rebuilding.\n", - " \n", - "* Resting: If you give your brain a break, sometime it will find the problem for you." + "- **Ruminating**: Take some time to think! What kind of error is it: syntax, runtime,\n", + " or semantic? \n", + " -- What information can you get from the error messages, or from the output of the program? \n", + " -- What kind of error could cause the problem you're seeing? \n", + " -- What did you change last, before the problem appeared?\n", + "\n", + "- **Rubberducking**: If you explain the problem to someone else, you sometimes find the\n", + " answer before you finish asking the question. \n", + " -- Often you don't need the other person; you could just talk to a rubber duck. \n", + " -- Writing to a virtual assistant is the same process, but can give you some feedback on your logic.\n", + " -- And that's the origin of the well-known strategy called **rubber duck\n", + " debugging**. \n", + " -- I am not making this up, see .\n", + "\n", + "- **Retreating**: At some point, the best thing to do is back up -- undoing recent\n", + " changes -- until you get to a program that works. Then you can start rebuilding.\n", + "- **Resting**: If you give your brain a break, sometime it will find the problem for you.\n" ] }, { @@ -1710,15 +2271,24 @@ "id": "12c2cd32", "metadata": {}, "source": [ - "Beginning programmers sometimes get stuck on one of these activities and forget the others. Each activity comes with its own failure mode.\n", + "- Beginning programmers sometimes get stuck on one of these activities and **forget the others**. \n", + "- Each activity comes with its own **failure mode**.\n", "\n", - "For example, reading your code works if the problem is a typographical error, but not if the problem is a conceptual misunderstanding.\n", - "If you don't understand what your program does, you can read it 100 times and never see the error, because the error is in your head.\n", + "- For example, **reading your code works if the problem is a typographical error**, but not if the problem is a conceptual misunderstanding.\n", + "- If you don't understand what your program does, you can read it 100 times and never see the error, because **the error is in your head**.\n", "\n", - "Running experiments can work, especially if you run small, simple tests.\n", - "But if you run experiments without thinking or reading your code, it can take a long time to figure out what's happening.\n", + "- Running experiments can work, especially if you run small, simple tests.\n", + "- But if you run experiments **without thinking or reading your code**, it can take a long time to figure out what's happening.\n", "\n", - "You have to take time to think. Debugging is like an experimental science. You should have at least one hypothesis about what the problem is. If there are two or more possibilities, try to think of a test that would eliminate one of them." + "- **You have to take time to think**. \n", + "- Debugging is like an experimental science. \n", + "- You should have at least **one hypothesis** about what the problem is. \n", + "- If there are two or more possibilities, try to **think of a test that would eliminate one of them**.\n", + "\n", + "### REMEMBER\n", + "- **Tiny Experiments** often solve the issue at hand.\n", + "- Often the \"issue\" is understanding, not code errors.\n", + "- **Break down the problem** into as smallest test as possible (what value should be returned?)." ] }, { @@ -1728,16 +2298,23 @@ "source": [ "But even the best debugging techniques will fail if there are too many\n", "errors, or if the code you are trying to fix is too big and complicated.\n", - "Sometimes the best option is to retreat, simplifying the program until\n", - "you get back to something that works.\n", "\n", - "Beginning programmers are often reluctant to retreat because they can't\n", - "stand to delete a line of code (even if it's wrong). If it makes you\n", - "feel better, copy your program into another file before you start\n", - "stripping it down. Then you can copy the pieces back one at a time.\n", + "Sometimes the best option is to retreat, **simplifying the program until\n", + "you get back to something that works**.\n", + "\n", + "**Beginning programmers are often reluctant to retreat** because they can't\n", + "stand to delete a line of code (even if it's wrong). \n", + "\n", + "If it makes you feel better, copy your program into another file before you start\n", + "stripping it down...\n", + "\n", + "*...or make a git commit!*\n", + "\n", + "Then you can copy the pieces back one at a time.\n", "\n", - "Finding a hard bug requires reading, running, ruminating, retreating, and sometimes resting.\n", - "If you get stuck on one of these activities, try the others." + "**Finding a hard bug requires reading, running, ruminating, retreating, and sometimes resting**.\n", + "\n", + "If you get stuck on one of these activities, try the others.\n" ] }, { @@ -1751,13 +2328,13 @@ "The value assigned to a parameter if no argument is provided.\n", "\n", "**override:**\n", - " To replace a default value with an argument.\n", + "To replace a default value with an argument.\n", "\n", "**deterministic:**\n", - " A deterministic program does the same thing each time it runs, given the same inputs.\n", + "A deterministic program does the same thing each time it runs, given the same inputs.\n", "\n", "**pseudorandom:**\n", - " A pseudorandom sequence of numbers appears to be random, but is generated by a deterministic program.\n", + "A pseudorandom sequence of numbers appears to be random, but is generated by a deterministic program.\n", "\n", "**bigram:**\n", "A sequence of two elements, often words.\n", @@ -1769,7 +2346,7 @@ "A sequence of an unspecified number of elements.\n", "\n", "**rubber duck debugging:**\n", - "A way of debugging by explaining a problem aloud to an inanimate object." + "A way of debugging by explaining a problem aloud to an inanimate object.\n" ] }, { @@ -1777,17 +2354,25 @@ "id": "cde18229", "metadata": {}, "source": [ - "## Exercises" + "## Exercises\n" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 73, "id": "05752b6d", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Verbose\n" + ] + } + ], "source": [ "# This cell tells Jupyter to provide detailed debugging information\n", "# when a runtime error occurs. Run it before working on the exercises.\n", @@ -1802,37 +2387,80 @@ "source": [ "### Ask a virtual assistant\n", "\n", - "In `add_bigram`, the `if` statement creates a new list or appends an element to an existing list, depending on whether the key is already in the dictionary." + "In `add_bigram`, the `if` statement creates a new list or appends an element to an existing list, depending on whether the key is already in the dictionary.\n" ] }, { "cell_type": "code", - "execution_count": 75, + "execution_count": 74, "id": "a4365ac0", "metadata": {}, "outputs": [], "source": [ "def add_bigram(bigram):\n", + "\n", " first, second = bigram\n", - " \n", + "\n", " if first not in successor_map:\n", + "\n", " successor_map[first] = [second]\n", + "\n", " else:\n", + " \n", " successor_map[first].append(second)" ] }, + { + "cell_type": "markdown", + "id": "3af727ec", + "metadata": {}, + "source": [ + "This is the same functionality as the previous block.\n", + "\n", + "The `setdefault` method works by:\n", + "- taking in the `first` word\n", + "- if a \"bucket\" (`[]`) for `first` is not present, it creates one\n", + "- immediately provides the new bucket to place the `second` item into it using `.append()`\n" + ] + }, + { + "cell_type": "code", + "execution_count": 82, + "id": "e0938222", + "metadata": {}, + "outputs": [], + "source": [ + "def add_bigram(bigram):\n", + "\n", + " first, second = bigram\n", + "\n", + " successor_map.setdefault(first, []).append(second)" + ] + }, { "cell_type": "markdown", "id": "30d9e549", "metadata": {}, "source": [ "Dictionaries provide a method called `setdefault` that we can use to do the same thing more concisely.\n", + "\n", "Ask a virtual assistant how it works, or copy `add_bigram` into a virtual assistant and ask \"Can you rewrite this using `setdefault`?\"\n", "\n", "In this chapter we implemented Markov chain text analysis and generation.\n", + "\n", "If you are curious, you can ask a virtual assistant for more information on the topic.\n", + "\n", "One of the things you might learn is that virtual assistants use algorithms that are similar in many ways -- but also different in important ways.\n", - "Ask a VA, \"What are the differences between large language models like GPT and Markov chain text analysis?\"" + "\n", + "Ask a VA, \"What are the differences between large language models like GPT and Markov chain text analysis?\"\n" + ] + }, + { + "cell_type": "markdown", + "id": "56d3cedb", + "metadata": {}, + "source": [ + "### BOOKMARK" ] }, { @@ -1842,30 +2470,50 @@ "source": [ "### Exercise\n", "\n", - "Write a function that counts the number of times each trigram (sequence of three words) appears. \n", + "Write a function that counts the number of times each trigram (sequence of three words) appears.\n", + "\n", "If you test your function with the text of _Dr. Jekyll and Mr. Hyde_, you should find that the most common trigram is \"said the lawyer\".\n", "\n", - "Hint: Write a function called `count_trigram` that is similar to `count_bigram`. Then write a function called `process_word_trigram` that is similar to `process_word_bigram`." + "Hint: Write a function called `count_trigram` that is similar to `count_bigram`. Then write a function called `process_word_trigram` that is similar to `process_word_bigram`.\n" ] }, { "cell_type": "code", - "execution_count": 76, + "execution_count": 122, "id": "f38a61ff", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "\n", + "def count_trigram(trigram):\n", + "\n", + " key = tuple(trigram)\n", + " \n", + " if key not in trigram_counter:\n", + " trigram_counter[key] = 1\n", + " else:\n", + " trigram_counter[key] += 1" ] }, { "cell_type": "code", - "execution_count": 77, + "execution_count": 123, "id": "d047e546", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "\n", + "def process_word_trigram(word):\n", + "\n", + " window.append(word)\n", + "\n", + " if len(window) == 3:\n", + " \n", + " count_trigram(window)\n", + "\n", + " window.pop(0)" ] }, { @@ -1875,12 +2523,12 @@ "tags": [] }, "source": [ - "You can use the following loop to read the book and process the words." + "You can use the following loop to read the book and process the words.\n" ] }, { "cell_type": "code", - "execution_count": 78, + "execution_count": 124, "id": "6b8932ee", "metadata": { "tags": [] @@ -1891,8 +2539,11 @@ "window = []\n", "\n", "for line in open(filename):\n", + "\n", " for word in split_line(line):\n", + " \n", " word = clean_word(word)\n", + " \n", " process_word_trigram(word)" ] }, @@ -1903,17 +2554,29 @@ "tags": [] }, "source": [ - "Then use `print_most_common` to find the most common trigrams in the book." + "Then use `print_most_common` to find the most common trigrams in the book.\n" ] }, { "cell_type": "code", - "execution_count": 79, + "execution_count": 125, "id": "44c3f0d8", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "20\t('said', 'the', 'lawyer')\n", + "16\t('said', 'mr', 'utterson')\n", + "15\t('of', 'edward', 'hyde')\n", + "13\t('the', 'name', 'of')\n", + "11\t('it', 'was', 'a')\n" + ] + } + ], "source": [ "print_most_common(trigram_counter)" ] @@ -1927,7 +2590,7 @@ "\n", "Now let's implement Markov chain text analysis with a mapping from each bigram to a list of possible successors.\n", "\n", - "Starting with `add_bigram`, write a function called `add_trigram` that takes a list of three words and either adds or updates an item in `successor_map`, using the first two words as the key and the third word as a possible successor." + "Starting with `add_bigram`, write a function called `add_trigram` that takes a list of three words and either adds or updates an item in `successor_map`, using the first two words as the key and the third word as a possible successor.\n" ] }, { @@ -1945,19 +2608,19 @@ "id": "94d683fe", "metadata": {}, "source": [ - "Here's a version of `process_word_trigram` that calls `add_trigram`." + "Here's a version of `process_word_trigram` that calls `add_trigram`.\n" ] }, { "cell_type": "code", - "execution_count": 81, + "execution_count": null, "id": "d9e554e3", "metadata": {}, "outputs": [], "source": [ "def process_word_trigram(word):\n", " window.append(word)\n", - " \n", + "\n", " if len(window) == 3:\n", " add_trigram(window)\n", " window.pop(0)" @@ -1970,7 +2633,7 @@ "tags": [] }, "source": [ - "You can use the following loop to test your function with the lyrics of \"Eric, the Half a Bee\"." + "You can use the following loop to test your function with the lyrics of \"Eric, the Half a Bee\".\n" ] }, { @@ -1998,7 +2661,7 @@ }, "source": [ "If your function works as intended, the predecessor `('half', 'a')` should map to a list with the single element `'bee'`.\n", - "In fact, as it happens, each bigram in this song appear only once, so all of the values in `successor_map` have a single element." + "In fact, as it happens, each bigram in this song appear only once, so all of the values in `successor_map` have a single element.\n" ] }, { @@ -2018,12 +2681,12 @@ "id": "886212b5", "metadata": {}, "source": [ - "You can use the following loop to test your function with the words from the book." + "You can use the following loop to test your function with the words from the book.\n" ] }, { "cell_type": "code", - "execution_count": 84, + "execution_count": null, "id": "62c2177f", "metadata": {}, "outputs": [], @@ -2032,6 +2695,7 @@ "window = []\n", "\n", "for line in open(filename):\n", + " \n", " for word in split_line(line):\n", " word = clean_word(word)\n", " process_word_trigram(word)" @@ -2042,7 +2706,7 @@ "id": "3e1d073e", "metadata": {}, "source": [ - "In the next exercise, you'll use the results to generate new random text." + "In the next exercise, you'll use the results to generate new random text.\n" ] }, { @@ -2052,19 +2716,19 @@ "source": [ "### Exercise\n", "\n", - "For this exercise, we'll assume that `successor_map` is a dictionary that maps from each bigram to the list of words that follow it." + "For this exercise, we'll assume that `successor_map` is a dictionary that maps from each bigram to the list of words that follow it.\n" ] }, { "cell_type": "code", - "execution_count": 85, + "execution_count": null, "id": "64e11f26", "metadata": { "tags": [] }, "outputs": [], "source": [ - "# this cell initializes the random number generator so it \n", + "# this cell initializes the random number generator so it\n", "# starts at the same point in the sequence each time this\n", "# notebook runs.\n", "\n", @@ -2076,7 +2740,7 @@ "id": "fb0f8f7d", "metadata": {}, "source": [ - "To generate random text, we'll start by choosing a random key from `successor_map`." + "To generate random text, we'll start by choosing a random key from `successor_map`.\n" ] }, { @@ -2104,7 +2768,7 @@ "\n", "3. For the next iteration, make a new bigram that contains the second word from `bigram` and the chosen successor.\n", "\n", - "For example, if we start with the bigram `('doubted', 'if')` and choose `'from'` as its successor, the next bigram is `('if', 'from')`." + "For example, if we start with the bigram `('doubted', 'if')` and choose `'from'` as its successor, the next bigram is `('if', 'from')`.\n" ] }, { @@ -2124,7 +2788,7 @@ "source": [ "If everything is working, you should find that the generated text is recognizably similar in style to the original, and some phrases make sense, but the text might wander from one topic to another.\n", "\n", - "As a bonus exercise, modify your solution to the last two exercises to use trigrams as keys in `successor_map`, and see what effect it has on the results." + "As a bonus exercise, modify your solution to the last two exercises to use trigrams as keys in `successor_map`, and see what effect it has on the results.\n" ] }, { @@ -2148,14 +2812,14 @@ "\n", "Code license: [MIT License](https://mit-license.org/)\n", "\n", - "Text license: [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-nc-sa/4.0/)" + "Text license: [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-nc-sa/4.0/)\n" ] } ], "metadata": { "celltoolbar": "Tags", "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "thinkpy", "language": "python", "name": "python3" }, @@ -2169,7 +2833,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.13.5" } }, "nbformat": 4, diff --git a/chapters/dr_jekyll.txt b/chapters/dr_jekyll.txt new file mode 100644 index 00000000..a1cb71d9 --- /dev/null +++ b/chapters/dr_jekyll.txt @@ -0,0 +1,2556 @@ + +The Strange Case Of Dr. Jekyll And Mr. Hyde + +by Robert Louis Stevenson + + +Contents + + + STORY OF THE DOOR + + SEARCH FOR MR. HYDE + + DR. JEKYLL WAS QUITE AT EASE + + THE CAREW MURDER CASE + + INCIDENT OF THE LETTER + + INCIDENT OF DR. LANYON + + INCIDENT AT THE WINDOW + + THE LAST NIGHT + + DR. LANYON’S NARRATIVE + + HENRY JEKYLL’S FULL STATEMENT OF THE CASE + + +STORY OF THE DOOR + +Mr. Utterson the lawyer was a man of a rugged countenance that was +never lighted by a smile; cold, scanty and embarrassed in discourse; +backward in sentiment; lean, long, dusty, dreary and yet somehow +lovable. At friendly meetings, and when the wine was to his taste, +something eminently human beaconed from his eye; something indeed which +never found its way into his talk, but which spoke not only in these +silent symbols of the after-dinner face, but more often and loudly in +the acts of his life. He was austere with himself; drank gin when he +was alone, to mortify a taste for vintages; and though he enjoyed the +theatre, had not crossed the doors of one for twenty years. But he had +an approved tolerance for others; sometimes wondering, almost with +envy, at the high pressure of spirits involved in their misdeeds; and +in any extremity inclined to help rather than to reprove. “I incline to +Cain’s heresy,” he used to say quaintly: “I let my brother go to the +devil in his own way.” In this character, it was frequently his fortune +to be the last reputable acquaintance and the last good influence in +the lives of downgoing men. And to such as these, so long as they came +about his chambers, he never marked a shade of change in his demeanour. + +No doubt the feat was easy to Mr. Utterson; for he was undemonstrative +at the best, and even his friendship seemed to be founded in a similar +catholicity of good-nature. It is the mark of a modest man to accept +his friendly circle ready-made from the hands of opportunity; and that +was the lawyer’s way. His friends were those of his own blood or those +whom he had known the longest; his affections, like ivy, were the +growth of time, they implied no aptness in the object. Hence, no doubt +the bond that united him to Mr. Richard Enfield, his distant kinsman, +the well-known man about town. It was a nut to crack for many, what +these two could see in each other, or what subject they could find in +common. It was reported by those who encountered them in their Sunday +walks, that they said nothing, looked singularly dull and would hail +with obvious relief the appearance of a friend. For all that, the two +men put the greatest store by these excursions, counted them the chief +jewel of each week, and not only set aside occasions of pleasure, but +even resisted the calls of business, that they might enjoy them +uninterrupted. + +It chanced on one of these rambles that their way led them down a +by-street in a busy quarter of London. The street was small and what is +called quiet, but it drove a thriving trade on the weekdays. The +inhabitants were all doing well, it seemed, and all emulously hoping to +do better still, and laying out the surplus of their gains in coquetry; +so that the shop fronts stood along that thoroughfare with an air of +invitation, like rows of smiling saleswomen. Even on Sunday, when it +veiled its more florid charms and lay comparatively empty of passage, +the street shone out in contrast to its dingy neighbourhood, like a fire +in a forest; and with its freshly painted shutters, well-polished +brasses, and general cleanliness and gaiety of note, instantly caught +and pleased the eye of the passenger. + +Two doors from one corner, on the left hand going east the line was +broken by the entry of a court; and just at that point a certain +sinister block of building thrust forward its gable on the street. It +was two storeys high; showed no window, nothing but a door on the lower +storey and a blind forehead of discoloured wall on the upper; and bore +in every feature, the marks of prolonged and sordid negligence. The +door, which was equipped with neither bell nor knocker, was blistered +and distained. Tramps slouched into the recess and struck matches on +the panels; children kept shop upon the steps; the schoolboy had tried +his knife on the mouldings; and for close on a generation, no one had +appeared to drive away these random visitors or to repair their +ravages. + +Mr. Enfield and the lawyer were on the other side of the by-street; but +when they came abreast of the entry, the former lifted up his cane and +pointed. + +“Did you ever remark that door?” he asked; and when his companion had +replied in the affirmative, “It is connected in my mind,” added he, +“with a very odd story.” + +“Indeed?” said Mr. Utterson, with a slight change of voice, “and what +was that?” + +“Well, it was this way,” returned Mr. Enfield: “I was coming home from +some place at the end of the world, about three o’clock of a black +winter morning, and my way lay through a part of town where there was +literally nothing to be seen but lamps. Street after street and all the +folks asleep—street after street, all lighted up as if for a procession +and all as empty as a church—till at last I got into that state of mind +when a man listens and listens and begins to long for the sight of a +policeman. All at once, I saw two figures: one a little man who was +stumping along eastward at a good walk, and the other a girl of maybe +eight or ten who was running as hard as she was able down a cross +street. Well, sir, the two ran into one another naturally enough at the +corner; and then came the horrible part of the thing; for the man +trampled calmly over the child’s body and left her screaming on the +ground. It sounds nothing to hear, but it was hellish to see. It wasn’t +like a man; it was like some damned Juggernaut. I gave a few halloa, +took to my heels, collared my gentleman, and brought him back to where +there was already quite a group about the screaming child. He was +perfectly cool and made no resistance, but gave me one look, so ugly +that it brought out the sweat on me like running. The people who had +turned out were the girl’s own family; and pretty soon, the doctor, for +whom she had been sent, put in his appearance. Well, the child was not +much the worse, more frightened, according to the sawbones; and there +you might have supposed would be an end to it. But there was one +curious circumstance. I had taken a loathing to my gentleman at first +sight. So had the child’s family, which was only natural. But the +doctor’s case was what struck me. He was the usual cut and dry +apothecary, of no particular age and colour, with a strong Edinburgh +accent and about as emotional as a bagpipe. Well, sir, he was like the +rest of us; every time he looked at my prisoner, I saw that sawbones +turn sick and white with the desire to kill him. I knew what was in his +mind, just as he knew what was in mine; and killing being out of the +question, we did the next best. We told the man we could and would make +such a scandal out of this as should make his name stink from one end +of London to the other. If he had any friends or any credit, we +undertook that he should lose them. And all the time, as we were +pitching it in red hot, we were keeping the women off him as best we +could for they were as wild as harpies. I never saw a circle of such +hateful faces; and there was the man in the middle, with a kind of +black sneering coolness—frightened too, I could see that—but carrying +it off, sir, really like Satan. ‘If you choose to make capital out of +this accident,’ said he, ‘I am naturally helpless. No gentleman but +wishes to avoid a scene,’ says he. ‘Name your figure.’ Well, we screwed +him up to a hundred pounds for the child’s family; he would have +clearly liked to stick out; but there was something about the lot of us +that meant mischief, and at last he struck. The next thing was to get +the money; and where do you think he carried us but to that place with +the door?—whipped out a key, went in, and presently came back with the +matter of ten pounds in gold and a cheque for the balance on Coutts’s, +drawn payable to bearer and signed with a name that I can’t mention, +though it’s one of the points of my story, but it was a name at least +very well known and often printed. The figure was stiff; but the +signature was good for more than that if it was only genuine. I took +the liberty of pointing out to my gentleman that the whole business +looked apocryphal, and that a man does not, in real life, walk into a +cellar door at four in the morning and come out with another man’s +cheque for close upon a hundred pounds. But he was quite easy and +sneering. ‘Set your mind at rest,’ says he, ‘I will stay with you till +the banks open and cash the cheque myself.’ So we all set off, the +doctor, and the child’s father, and our friend and myself, and passed +the rest of the night in my chambers; and next day, when we had +breakfasted, went in a body to the bank. I gave in the cheque myself, +and said I had every reason to believe it was a forgery. Not a bit of +it. The cheque was genuine.” + +“Tut-tut!” said Mr. Utterson. + +“I see you feel as I do,” said Mr. Enfield. “Yes, it’s a bad story. For +my man was a fellow that nobody could have to do with, a really +damnable man; and the person that drew the cheque is the very pink of +the proprieties, celebrated too, and (what makes it worse) one of your +fellows who do what they call good. Blackmail, I suppose; an honest man +paying through the nose for some of the capers of his youth. Black Mail +House is what I call the place with the door, in consequence. Though +even that, you know, is far from explaining all,” he added, and with +the words fell into a vein of musing. + +From this he was recalled by Mr. Utterson asking rather suddenly: “And +you don’t know if the drawer of the cheque lives there?” + +“A likely place, isn’t it?” returned Mr. Enfield. “But I happen to have +noticed his address; he lives in some square or other.” + +“And you never asked about the—place with the door?” said Mr. Utterson. + +“No, sir; I had a delicacy,” was the reply. “I feel very strongly about +putting questions; it partakes too much of the style of the day of +judgment. You start a question, and it’s like starting a stone. You sit +quietly on the top of a hill; and away the stone goes, starting others; +and presently some bland old bird (the last you would have thought of) +is knocked on the head in his own back garden and the family have to +change their name. No sir, I make it a rule of mine: the more it looks +like Queer Street, the less I ask.” + +“A very good rule, too,” said the lawyer. + +“But I have studied the place for myself,” continued Mr. Enfield. “It +seems scarcely a house. There is no other door, and nobody goes in or +out of that one but, once in a great while, the gentleman of my +adventure. There are three windows looking on the court on the first +floor; none below; the windows are always shut but they’re clean. And +then there is a chimney which is generally smoking; so somebody must +live there. And yet it’s not so sure; for the buildings are so packed +together about the court, that it’s hard to say where one ends and +another begins.” + +The pair walked on again for a while in silence; and then “Enfield,” +said Mr. Utterson, “that’s a good rule of yours.” + +“Yes, I think it is,” returned Enfield. + +“But for all that,” continued the lawyer, “there’s one point I want to +ask. I want to ask the name of that man who walked over the child.” + +“Well,” said Mr. Enfield, “I can’t see what harm it would do. It was a +man of the name of Hyde.” + +“Hm,” said Mr. Utterson. “What sort of a man is he to see?” + +“He is not easy to describe. There is something wrong with his +appearance; something displeasing, something down-right detestable. I +never saw a man I so disliked, and yet I scarce know why. He must be +deformed somewhere; he gives a strong feeling of deformity, although I +couldn’t specify the point. He’s an extraordinary looking man, and yet +I really can name nothing out of the way. No, sir; I can make no hand +of it; I can’t describe him. And it’s not want of memory; for I declare +I can see him this moment.” + +Mr. Utterson again walked some way in silence and obviously under a +weight of consideration. “You are sure he used a key?” he inquired at +last. + +“My dear sir...” began Enfield, surprised out of himself. + +“Yes, I know,” said Utterson; “I know it must seem strange. The fact +is, if I do not ask you the name of the other party, it is because I +know it already. You see, Richard, your tale has gone home. If you have +been inexact in any point you had better correct it.” + +“I think you might have warned me,” returned the other with a touch of +sullenness. “But I have been pedantically exact, as you call it. The +fellow had a key; and what’s more, he has it still. I saw him use it +not a week ago.” + +Mr. Utterson sighed deeply but said never a word; and the young man +presently resumed. “Here is another lesson to say nothing,” said he. “I +am ashamed of my long tongue. Let us make a bargain never to refer to +this again.” + +“With all my heart,” said the lawyer. “I shake hands on that, Richard.” + + + +SEARCH FOR MR. HYDE + +That evening Mr. Utterson came home to his bachelor house in sombre +spirits and sat down to dinner without relish. It was his custom of a +Sunday, when this meal was over, to sit close by the fire, a volume of +some dry divinity on his reading desk, until the clock of the +neighbouring church rang out the hour of twelve, when he would go +soberly and gratefully to bed. On this night however, as soon as the +cloth was taken away, he took up a candle and went into his business +room. There he opened his safe, took from the most private part of it a +document endorsed on the envelope as Dr. Jekyll’s Will and sat down +with a clouded brow to study its contents. The will was holograph, for +Mr. Utterson though he took charge of it now that it was made, had +refused to lend the least assistance in the making of it; it provided +not only that, in case of the decease of Henry Jekyll, M.D., D.C.L., +L.L.D., F.R.S., etc., all his possessions were to pass into the hands +of his “friend and benefactor Edward Hyde,” but that in case of Dr. +Jekyll’s “disappearance or unexplained absence for any period exceeding +three calendar months,” the said Edward Hyde should step into the said +Henry Jekyll’s shoes without further delay and free from any burthen or +obligation beyond the payment of a few small sums to the members of the +doctor’s household. This document had long been the lawyer’s eyesore. +It offended him both as a lawyer and as a lover of the sane and +customary sides of life, to whom the fanciful was the immodest. And +hitherto it was his ignorance of Mr. Hyde that had swelled his +indignation; now, by a sudden turn, it was his knowledge. It was +already bad enough when the name was but a name of which he could learn +no more. It was worse when it began to be clothed upon with detestable +attributes; and out of the shifting, insubstantial mists that had so +long baffled his eye, there leaped up the sudden, definite presentment +of a fiend. + +“I thought it was madness,” he said, as he replaced the obnoxious paper +in the safe, “and now I begin to fear it is disgrace.” + +With that he blew out his candle, put on a greatcoat, and set forth in +the direction of Cavendish Square, that citadel of medicine, where his +friend, the great Dr. Lanyon, had his house and received his crowding +patients. “If anyone knows, it will be Lanyon,” he had thought. + +The solemn butler knew and welcomed him; he was subjected to no stage +of delay, but ushered direct from the door to the dining-room where Dr. +Lanyon sat alone over his wine. This was a hearty, healthy, dapper, +red-faced gentleman, with a shock of hair prematurely white, and a +boisterous and decided manner. At sight of Mr. Utterson, he sprang up +from his chair and welcomed him with both hands. The geniality, as was +the way of the man, was somewhat theatrical to the eye; but it reposed +on genuine feeling. For these two were old friends, old mates both at +school and college, both thorough respectors of themselves and of each +other, and what does not always follow, men who thoroughly enjoyed each +other’s company. + +After a little rambling talk, the lawyer led up to the subject which so +disagreeably preoccupied his mind. + +“I suppose, Lanyon,” said he, “you and I must be the two oldest friends +that Henry Jekyll has?” + +“I wish the friends were younger,” chuckled Dr. Lanyon. “But I suppose +we are. And what of that? I see little of him now.” + +“Indeed?” said Utterson. “I thought you had a bond of common interest.” + +“We had,” was the reply. “But it is more than ten years since Henry +Jekyll became too fanciful for me. He began to go wrong, wrong in mind; +and though of course I continue to take an interest in him for old +sake’s sake, as they say, I see and I have seen devilish little of the +man. Such unscientific balderdash,” added the doctor, flushing suddenly +purple, “would have estranged Damon and Pythias.” + +This little spirit of temper was somewhat of a relief to Mr. Utterson. +“They have only differed on some point of science,” he thought; and +being a man of no scientific passions (except in the matter of +conveyancing), he even added: “It is nothing worse than that!” He gave +his friend a few seconds to recover his composure, and then approached +the question he had come to put. “Did you ever come across a _protégé_ +of his—one Hyde?” he asked. + +“Hyde?” repeated Lanyon. “No. Never heard of him. Since my time.” + +That was the amount of information that the lawyer carried back with +him to the great, dark bed on which he tossed to and fro, until the +small hours of the morning began to grow large. It was a night of +little ease to his toiling mind, toiling in mere darkness and besieged +by questions. + +Six o’clock struck on the bells of the church that was so conveniently +near to Mr. Utterson’s dwelling, and still he was digging at the +problem. Hitherto it had touched him on the intellectual side alone; +but now his imagination also was engaged, or rather enslaved; and as he +lay and tossed in the gross darkness of the night and the curtained +room, Mr. Enfield’s tale went by before his mind in a scroll of lighted +pictures. He would be aware of the great field of lamps of a nocturnal +city; then of the figure of a man walking swiftly; then of a child +running from the doctor’s; and then these met, and that human +Juggernaut trod the child down and passed on regardless of her screams. +Or else he would see a room in a rich house, where his friend lay +asleep, dreaming and smiling at his dreams; and then the door of that +room would be opened, the curtains of the bed plucked apart, the +sleeper recalled, and lo! there would stand by his side a figure to +whom power was given, and even at that dead hour, he must rise and do +its bidding. The figure in these two phases haunted the lawyer all +night; and if at any time he dozed over, it was but to see it glide +more stealthily through sleeping houses, or move the more swiftly and +still the more swiftly, even to dizziness, through wider labyrinths of +lamplighted city, and at every street corner crush a child and leave +her screaming. And still the figure had no face by which he might know +it; even in his dreams, it had no face, or one that baffled him and +melted before his eyes; and thus it was that there sprang up and grew +apace in the lawyer’s mind a singularly strong, almost an inordinate, +curiosity to behold the features of the real Mr. Hyde. If he could but +once set eyes on him, he thought the mystery would lighten and perhaps +roll altogether away, as was the habit of mysterious things when well +examined. He might see a reason for his friend’s strange preference or +bondage (call it which you please) and even for the startling clause of +the will. At least it would be a face worth seeing: the face of a man +who was without bowels of mercy: a face which had but to show itself to +raise up, in the mind of the unimpressionable Enfield, a spirit of +enduring hatred. + +From that time forward, Mr. Utterson began to haunt the door in the +by-street of shops. In the morning before office hours, at noon when +business was plenty and time scarce, at night under the face of the +fogged city moon, by all lights and at all hours of solitude or +concourse, the lawyer was to be found on his chosen post. + +“If he be Mr. Hyde,” he had thought, “I shall be Mr. Seek.” + +And at last his patience was rewarded. It was a fine dry night; frost +in the air; the streets as clean as a ballroom floor; the lamps, +unshaken by any wind, drawing a regular pattern of light and shadow. By +ten o’clock, when the shops were closed, the by-street was very +solitary and, in spite of the low growl of London from all round, very +silent. Small sounds carried far; domestic sounds out of the houses +were clearly audible on either side of the roadway; and the rumour of +the approach of any passenger preceded him by a long time. Mr. Utterson +had been some minutes at his post, when he was aware of an odd light +footstep drawing near. In the course of his nightly patrols, he had +long grown accustomed to the quaint effect with which the footfalls of +a single person, while he is still a great way off, suddenly spring out +distinct from the vast hum and clatter of the city. Yet his attention +had never before been so sharply and decisively arrested; and it was +with a strong, superstitious prevision of success that he withdrew into +the entry of the court. + +The steps drew swiftly nearer, and swelled out suddenly louder as they +turned the end of the street. The lawyer, looking forth from the entry, +could soon see what manner of man he had to deal with. He was small and +very plainly dressed and the look of him, even at that distance, went +somehow strongly against the watcher’s inclination. But he made +straight for the door, crossing the roadway to save time; and as he +came, he drew a key from his pocket like one approaching home. + +Mr. Utterson stepped out and touched him on the shoulder as he passed. +“Mr. Hyde, I think?” + +Mr. Hyde shrank back with a hissing intake of the breath. But his fear +was only momentary; and though he did not look the lawyer in the face, +he answered coolly enough: “That is my name. What do you want?” + +“I see you are going in,” returned the lawyer. “I am an old friend of +Dr. Jekyll’s—Mr. Utterson of Gaunt Street—you must have heard of my +name; and meeting you so conveniently, I thought you might admit me.” + +“You will not find Dr. Jekyll; he is from home,” replied Mr. Hyde, +blowing in the key. And then suddenly, but still without looking up, +“How did you know me?” he asked. + +“On your side,” said Mr. Utterson “will you do me a favour?” + +“With pleasure,” replied the other. “What shall it be?” + +“Will you let me see your face?” asked the lawyer. + +Mr. Hyde appeared to hesitate, and then, as if upon some sudden +reflection, fronted about with an air of defiance; and the pair stared +at each other pretty fixedly for a few seconds. “Now I shall know you +again,” said Mr. Utterson. “It may be useful.” + +“Yes,” returned Mr. Hyde, “it is as well we have met; and _à propos_, +you should have my address.” And he gave a number of a street in Soho. + +“Good God!” thought Mr. Utterson, “can he, too, have been thinking of +the will?” But he kept his feelings to himself and only grunted in +acknowledgment of the address. + +“And now,” said the other, “how did you know me?” + +“By description,” was the reply. + +“Whose description?” + +“We have common friends,” said Mr. Utterson. + +“Common friends,” echoed Mr. Hyde, a little hoarsely. “Who are they?” + +“Jekyll, for instance,” said the lawyer. + +“He never told you,” cried Mr. Hyde, with a flush of anger. “I did not +think you would have lied.” + +“Come,” said Mr. Utterson, “that is not fitting language.” + +The other snarled aloud into a savage laugh; and the next moment, with +extraordinary quickness, he had unlocked the door and disappeared into +the house. + +The lawyer stood awhile when Mr. Hyde had left him, the picture of +disquietude. Then he began slowly to mount the street, pausing every +step or two and putting his hand to his brow like a man in mental +perplexity. The problem he was thus debating as he walked, was one of a +class that is rarely solved. Mr. Hyde was pale and dwarfish, he gave an +impression of deformity without any nameable malformation, he had a +displeasing smile, he had borne himself to the lawyer with a sort of +murderous mixture of timidity and boldness, and he spoke with a husky, +whispering and somewhat broken voice; all these were points against +him, but not all of these together could explain the hitherto unknown +disgust, loathing and fear with which Mr. Utterson regarded him. “There +must be something else,” said the perplexed gentleman. “There _is_ +something more, if I could find a name for it. God bless me, the man +seems hardly human! Something troglodytic, shall we say? or can it be +the old story of Dr. Fell? or is it the mere radiance of a foul soul +that thus transpires through, and transfigures, its clay continent? The +last, I think; for, O my poor old Harry Jekyll, if ever I read Satan’s +signature upon a face, it is on that of your new friend.” + +Round the corner from the by-street, there was a square of ancient, +handsome houses, now for the most part decayed from their high estate +and let in flats and chambers to all sorts and conditions of men; +map-engravers, architects, shady lawyers and the agents of obscure +enterprises. One house, however, second from the corner, was still +occupied entire; and at the door of this, which wore a great air of +wealth and comfort, though it was now plunged in darkness except for +the fanlight, Mr. Utterson stopped and knocked. A well-dressed, elderly +servant opened the door. + +“Is Dr. Jekyll at home, Poole?” asked the lawyer. + +“I will see, Mr. Utterson,” said Poole, admitting the visitor, as he +spoke, into a large, low-roofed, comfortable hall paved with flags, +warmed (after the fashion of a country house) by a bright, open fire, +and furnished with costly cabinets of oak. “Will you wait here by the +fire, sir? or shall I give you a light in the dining-room?” + +“Here, thank you,” said the lawyer, and he drew near and leaned on the +tall fender. This hall, in which he was now left alone, was a pet fancy +of his friend the doctor’s; and Utterson himself was wont to speak of +it as the pleasantest room in London. But tonight there was a shudder +in his blood; the face of Hyde sat heavy on his memory; he felt (what +was rare with him) a nausea and distaste of life; and in the gloom of +his spirits, he seemed to read a menace in the flickering of the +firelight on the polished cabinets and the uneasy starting of the +shadow on the roof. He was ashamed of his relief, when Poole presently +returned to announce that Dr. Jekyll was gone out. + +“I saw Mr. Hyde go in by the old dissecting room, Poole,” he said. “Is +that right, when Dr. Jekyll is from home?” + +“Quite right, Mr. Utterson, sir,” replied the servant. “Mr. Hyde has a +key.” + +“Your master seems to repose a great deal of trust in that young man, +Poole,” resumed the other musingly. + +“Yes, sir, he does indeed,” said Poole. “We have all orders to obey +him.” + +“I do not think I ever met Mr. Hyde?” asked Utterson. + +“O, dear no, sir. He never _dines_ here,” replied the butler. “Indeed +we see very little of him on this side of the house; he mostly comes +and goes by the laboratory.” + +“Well, good-night, Poole.” + +“Good-night, Mr. Utterson.” + +And the lawyer set out homeward with a very heavy heart. “Poor Harry +Jekyll,” he thought, “my mind misgives me he is in deep waters! He was +wild when he was young; a long while ago to be sure; but in the law of +God, there is no statute of limitations. Ay, it must be that; the ghost +of some old sin, the cancer of some concealed disgrace: punishment +coming, _pede claudo_, years after memory has forgotten and self-love +condoned the fault.” And the lawyer, scared by the thought, brooded +awhile on his own past, groping in all the corners of memory, lest by +chance some Jack-in-the-Box of an old iniquity should leap to light +there. His past was fairly blameless; few men could read the rolls of +their life with less apprehension; yet he was humbled to the dust by +the many ill things he had done, and raised up again into a sober and +fearful gratitude by the many he had come so near to doing yet avoided. +And then by a return on his former subject, he conceived a spark of +hope. “This Master Hyde, if he were studied,” thought he, “must have +secrets of his own; black secrets, by the look of him; secrets compared +to which poor Jekyll’s worst would be like sunshine. Things cannot +continue as they are. It turns me cold to think of this creature +stealing like a thief to Harry’s bedside; poor Harry, what a wakening! +And the danger of it; for if this Hyde suspects the existence of the +will, he may grow impatient to inherit. Ay, I must put my shoulders to +the wheel—if Jekyll will but let me,” he added, “if Jekyll will only +let me.” For once more he saw before his mind’s eye, as clear as +transparency, the strange clauses of the will. + + + +DR. JEKYLL WAS QUITE AT EASE + +A fortnight later, by excellent good fortune, the doctor gave one of +his pleasant dinners to some five or six old cronies, all intelligent, +reputable men and all judges of good wine; and Mr. Utterson so +contrived that he remained behind after the others had departed. This +was no new arrangement, but a thing that had befallen many scores of +times. Where Utterson was liked, he was liked well. Hosts loved to +detain the dry lawyer, when the light-hearted and loose-tongued had +already their foot on the threshold; they liked to sit a while in his +unobtrusive company, practising for solitude, sobering their minds in +the man’s rich silence after the expense and strain of gaiety. To this +rule, Dr. Jekyll was no exception; and as he now sat on the opposite +side of the fire—a large, well-made, smooth-faced man of fifty, with +something of a slyish cast perhaps, but every mark of capacity and +kindness—you could see by his looks that he cherished for Mr. Utterson +a sincere and warm affection. + +“I have been wanting to speak to you, Jekyll,” began the latter. “You +know that will of yours?” + +A close observer might have gathered that the topic was distasteful; +but the doctor carried it off gaily. “My poor Utterson,” said he, “you +are unfortunate in such a client. I never saw a man so distressed as +you were by my will; unless it were that hide-bound pedant, Lanyon, at +what he called my scientific heresies. O, I know he’s a good fellow—you +needn’t frown—an excellent fellow, and I always mean to see more of +him; but a hide-bound pedant for all that; an ignorant, blatant pedant. +I was never more disappointed in any man than Lanyon.” + +“You know I never approved of it,” pursued Utterson, ruthlessly +disregarding the fresh topic. + +“My will? Yes, certainly, I know that,” said the doctor, a trifle +sharply. “You have told me so.” + +“Well, I tell you so again,” continued the lawyer. “I have been +learning something of young Hyde.” + +The large handsome face of Dr. Jekyll grew pale to the very lips, and +there came a blackness about his eyes. “I do not care to hear more,” +said he. “This is a matter I thought we had agreed to drop.” + +“What I heard was abominable,” said Utterson. + +“It can make no change. You do not understand my position,” returned +the doctor, with a certain incoherency of manner. “I am painfully +situated, Utterson; my position is a very strange—a very strange one. +It is one of those affairs that cannot be mended by talking.” + +“Jekyll,” said Utterson, “you know me: I am a man to be trusted. Make a +clean breast of this in confidence; and I make no doubt I can get you +out of it.” + +“My good Utterson,” said the doctor, “this is very good of you, this is +downright good of you, and I cannot find words to thank you in. I +believe you fully; I would trust you before any man alive, ay, before +myself, if I could make the choice; but indeed it isn’t what you fancy; +it is not as bad as that; and just to put your good heart at rest, I +will tell you one thing: the moment I choose, I can be rid of Mr. Hyde. +I give you my hand upon that; and I thank you again and again; and I +will just add one little word, Utterson, that I’m sure you’ll take in +good part: this is a private matter, and I beg of you to let it sleep.” + +Utterson reflected a little, looking in the fire. + +“I have no doubt you are perfectly right,” he said at last, getting to +his feet. + +“Well, but since we have touched upon this business, and for the last +time I hope,” continued the doctor, “there is one point I should like +you to understand. I have really a very great interest in poor Hyde. I +know you have seen him; he told me so; and I fear he was rude. But I do +sincerely take a great, a very great interest in that young man; and if +I am taken away, Utterson, I wish you to promise me that you will bear +with him and get his rights for him. I think you would, if you knew +all; and it would be a weight off my mind if you would promise.” + +“I can’t pretend that I shall ever like him,” said the lawyer. + +“I don’t ask that,” pleaded Jekyll, laying his hand upon the other’s +arm; “I only ask for justice; I only ask you to help him for my sake, +when I am no longer here.” + +Utterson heaved an irrepressible sigh. “Well,” said he, “I promise.” + + + +THE CAREW MURDER CASE + +Nearly a year later, in the month of October, 18—, London was startled +by a crime of singular ferocity and rendered all the more notable by +the high position of the victim. The details were few and startling. A +maid servant living alone in a house not far from the river, had gone +upstairs to bed about eleven. Although a fog rolled over the city in +the small hours, the early part of the night was cloudless, and the +lane, which the maid’s window overlooked, was brilliantly lit by the +full moon. It seems she was romantically given, for she sat down upon +her box, which stood immediately under the window, and fell into a +dream of musing. Never (she used to say, with streaming tears, when she +narrated that experience), never had she felt more at peace with all +men or thought more kindly of the world. And as she so sat she became +aware of an aged beautiful gentleman with white hair, drawing near +along the lane; and advancing to meet him, another and very small +gentleman, to whom at first she paid less attention. When they had come +within speech (which was just under the maid’s eyes) the older man +bowed and accosted the other with a very pretty manner of politeness. +It did not seem as if the subject of his address were of great +importance; indeed, from his pointing, it sometimes appeared as if he +were only inquiring his way; but the moon shone on his face as he +spoke, and the girl was pleased to watch it, it seemed to breathe such +an innocent and old-world kindness of disposition, yet with something +high too, as of a well-founded self-content. Presently her eye wandered +to the other, and she was surprised to recognise in him a certain Mr. +Hyde, who had once visited her master and for whom she had conceived a +dislike. He had in his hand a heavy cane, with which he was trifling; +but he answered never a word, and seemed to listen with an +ill-contained impatience. And then all of a sudden he broke out in a +great flame of anger, stamping with his foot, brandishing the cane, and +carrying on (as the maid described it) like a madman. The old gentleman +took a step back, with the air of one very much surprised and a trifle +hurt; and at that Mr. Hyde broke out of all bounds and clubbed him to +the earth. And next moment, with ape-like fury, he was trampling his +victim under foot and hailing down a storm of blows, under which the +bones were audibly shattered and the body jumped upon the roadway. At +the horror of these sights and sounds, the maid fainted. + +It was two o’clock when she came to herself and called for the police. +The murderer was gone long ago; but there lay his victim in the middle +of the lane, incredibly mangled. The stick with which the deed had been +done, although it was of some rare and very tough and heavy wood, had +broken in the middle under the stress of this insensate cruelty; and +one splintered half had rolled in the neighbouring gutter—the other, +without doubt, had been carried away by the murderer. A purse and gold +watch were found upon the victim: but no cards or papers, except a +sealed and stamped envelope, which he had been probably carrying to the +post, and which bore the name and address of Mr. Utterson. + +This was brought to the lawyer the next morning, before he was out of +bed; and he had no sooner seen it and been told the circumstances, than +he shot out a solemn lip. “I shall say nothing till I have seen the +body,” said he; “this may be very serious. Have the kindness to wait +while I dress.” And with the same grave countenance he hurried through +his breakfast and drove to the police station, whither the body had +been carried. As soon as he came into the cell, he nodded. + +“Yes,” said he, “I recognise him. I am sorry to say that this is Sir +Danvers Carew.” + +“Good God, sir,” exclaimed the officer, “is it possible?” And the next +moment his eye lighted up with professional ambition. “This will make a +deal of noise,” he said. “And perhaps you can help us to the man.” And +he briefly narrated what the maid had seen, and showed the broken +stick. + +Mr. Utterson had already quailed at the name of Hyde; but when the +stick was laid before him, he could doubt no longer; broken and +battered as it was, he recognised it for one that he had himself +presented many years before to Henry Jekyll. + +“Is this Mr. Hyde a person of small stature?” he inquired. + +“Particularly small and particularly wicked-looking, is what the maid +calls him,” said the officer. + +Mr. Utterson reflected; and then, raising his head, “If you will come +with me in my cab,” he said, “I think I can take you to his house.” + +It was by this time about nine in the morning, and the first fog of the +season. A great chocolate-coloured pall lowered over heaven, but the +wind was continually charging and routing these embattled vapours; so +that as the cab crawled from street to street, Mr. Utterson beheld a +marvelous number of degrees and hues of twilight; for here it would be +dark like the back-end of evening; and there would be a glow of a rich, +lurid brown, like the light of some strange conflagration; and here, +for a moment, the fog would be quite broken up, and a haggard shaft of +daylight would glance in between the swirling wreaths. The dismal +quarter of Soho seen under these changing glimpses, with its muddy +ways, and slatternly passengers, and its lamps, which had never been +extinguished or had been kindled afresh to combat this mournful +reinvasion of darkness, seemed, in the lawyer’s eyes, like a district +of some city in a nightmare. The thoughts of his mind, besides, were of +the gloomiest dye; and when he glanced at the companion of his drive, +he was conscious of some touch of that terror of the law and the law’s +officers, which may at times assail the most honest. + +As the cab drew up before the address indicated, the fog lifted a +little and showed him a dingy street, a gin palace, a low French eating +house, a shop for the retail of penny numbers and twopenny salads, many +ragged children huddled in the doorways, and many women of many +different nationalities passing out, key in hand, to have a morning +glass; and the next moment the fog settled down again upon that part, +as brown as umber, and cut him off from his blackguardly surroundings. +This was the home of Henry Jekyll’s favourite; of a man who was heir to +a quarter of a million sterling. + +An ivory-faced and silvery-haired old woman opened the door. She had an +evil face, smoothed by hypocrisy: but her manners were excellent. Yes, +she said, this was Mr. Hyde’s, but he was not at home; he had been in +that night very late, but he had gone away again in less than an hour; +there was nothing strange in that; his habits were very irregular, and +he was often absent; for instance, it was nearly two months since she +had seen him till yesterday. + +“Very well, then, we wish to see his rooms,” said the lawyer; and when +the woman began to declare it was impossible, “I had better tell you +who this person is,” he added. “This is Inspector Newcomen of Scotland +Yard.” + +A flash of odious joy appeared upon the woman’s face. “Ah!” said she, +“he is in trouble! What has he done?” + +Mr. Utterson and the inspector exchanged glances. “He don’t seem a very +popular character,” observed the latter. “And now, my good woman, just +let me and this gentleman have a look about us.” + +In the whole extent of the house, which but for the old woman remained +otherwise empty, Mr. Hyde had only used a couple of rooms; but these +were furnished with luxury and good taste. A closet was filled with +wine; the plate was of silver, the napery elegant; a good picture hung +upon the walls, a gift (as Utterson supposed) from Henry Jekyll, who +was much of a connoisseur; and the carpets were of many plies and +agreeable in colour. At this moment, however, the rooms bore every mark +of having been recently and hurriedly ransacked; clothes lay about the +floor, with their pockets inside out; lock-fast drawers stood open; and +on the hearth there lay a pile of grey ashes, as though many papers had +been burned. From these embers the inspector disinterred the butt end +of a green cheque book, which had resisted the action of the fire; the +other half of the stick was found behind the door; and as this clinched +his suspicions, the officer declared himself delighted. A visit to the +bank, where several thousand pounds were found to be lying to the +murderer’s credit, completed his gratification. + +“You may depend upon it, sir,” he told Mr. Utterson: “I have him in my +hand. He must have lost his head, or he never would have left the stick +or, above all, burned the cheque book. Why, money’s life to the man. We +have nothing to do but wait for him at the bank, and get out the +handbills.” + +This last, however, was not so easy of accomplishment; for Mr. Hyde had +numbered few familiars—even the master of the servant maid had only +seen him twice; his family could nowhere be traced; he had never been +photographed; and the few who could describe him differed widely, as +common observers will. Only on one point were they agreed; and that was +the haunting sense of unexpressed deformity with which the fugitive +impressed his beholders. + + + +INCIDENT OF THE LETTER + +It was late in the afternoon, when Mr. Utterson found his way to Dr. +Jekyll’s door, where he was at once admitted by Poole, and carried down +by the kitchen offices and across a yard which had once been a garden, +to the building which was indifferently known as the laboratory or +dissecting rooms. The doctor had bought the house from the heirs of a +celebrated surgeon; and his own tastes being rather chemical than +anatomical, had changed the destination of the block at the bottom of +the garden. It was the first time that the lawyer had been received in +that part of his friend’s quarters; and he eyed the dingy, windowless +structure with curiosity, and gazed round with a distasteful sense of +strangeness as he crossed the theatre, once crowded with eager students +and now lying gaunt and silent, the tables laden with chemical +apparatus, the floor strewn with crates and littered with packing +straw, and the light falling dimly through the foggy cupola. At the +further end, a flight of stairs mounted to a door covered with red +baize; and through this, Mr. Utterson was at last received into the +doctor’s cabinet. It was a large room fitted round with glass presses, +furnished, among other things, with a cheval-glass and a business +table, and looking out upon the court by three dusty windows barred +with iron. The fire burned in the grate; a lamp was set lighted on the +chimney shelf, for even in the houses the fog began to lie thickly; and +there, close up to the warmth, sat Dr. Jekyll, looking deathly sick. He +did not rise to meet his visitor, but held out a cold hand and bade him +welcome in a changed voice. + +“And now,” said Mr. Utterson, as soon as Poole had left them, “you have +heard the news?” + +The doctor shuddered. “They were crying it in the square,” he said. “I +heard them in my dining-room.” + +“One word,” said the lawyer. “Carew was my client, but so are you, and +I want to know what I am doing. You have not been mad enough to hide +this fellow?” + +“Utterson, I swear to God,” cried the doctor, “I swear to God I will +never set eyes on him again. I bind my honour to you that I am done +with him in this world. It is all at an end. And indeed he does not +want my help; you do not know him as I do; he is safe, he is quite +safe; mark my words, he will never more be heard of.” + +The lawyer listened gloomily; he did not like his friend’s feverish +manner. “You seem pretty sure of him,” said he; “and for your sake, I +hope you may be right. If it came to a trial, your name might appear.” + +“I am quite sure of him,” replied Jekyll; “I have grounds for certainty +that I cannot share with any one. But there is one thing on which you +may advise me. I have—I have received a letter; and I am at a loss +whether I should show it to the police. I should like to leave it in +your hands, Utterson; you would judge wisely, I am sure; I have so +great a trust in you.” + +“You fear, I suppose, that it might lead to his detection?” asked the +lawyer. + +“No,” said the other. “I cannot say that I care what becomes of Hyde; I +am quite done with him. I was thinking of my own character, which this +hateful business has rather exposed.” + +Utterson ruminated awhile; he was surprised at his friend’s +selfishness, and yet relieved by it. “Well,” said he, at last, “let me +see the letter.” + +The letter was written in an odd, upright hand and signed “Edward +Hyde”: and it signified, briefly enough, that the writer’s benefactor, +Dr. Jekyll, whom he had long so unworthily repaid for a thousand +generosities, need labour under no alarm for his safety, as he had +means of escape on which he placed a sure dependence. The lawyer liked +this letter well enough; it put a better colour on the intimacy than he +had looked for; and he blamed himself for some of his past suspicions. + +“Have you the envelope?” he asked. + +“I burned it,” replied Jekyll, “before I thought what I was about. But +it bore no postmark. The note was handed in.” + +“Shall I keep this and sleep upon it?” asked Utterson. + +“I wish you to judge for me entirely,” was the reply. “I have lost +confidence in myself.” + +“Well, I shall consider,” returned the lawyer. “And now one word more: +it was Hyde who dictated the terms in your will about that +disappearance?” + +The doctor seemed seized with a qualm of faintness; he shut his mouth +tight and nodded. + +“I knew it,” said Utterson. “He meant to murder you. You had a fine +escape.” + +“I have had what is far more to the purpose,” returned the doctor +solemnly: “I have had a lesson—O God, Utterson, what a lesson I have +had!” And he covered his face for a moment with his hands. + +On his way out, the lawyer stopped and had a word or two with Poole. +“By the bye,” said he, “there was a letter handed in to-day: what was +the messenger like?” But Poole was positive nothing had come except by +post; “and only circulars by that,” he added. + +This news sent off the visitor with his fears renewed. Plainly the +letter had come by the laboratory door; possibly, indeed, it had been +written in the cabinet; and if that were so, it must be differently +judged, and handled with the more caution. The newsboys, as he went, +were crying themselves hoarse along the footways: “Special edition. +Shocking murder of an M.P.” That was the funeral oration of one friend +and client; and he could not help a certain apprehension lest the good +name of another should be sucked down in the eddy of the scandal. It +was, at least, a ticklish decision that he had to make; and +self-reliant as he was by habit, he began to cherish a longing for +advice. It was not to be had directly; but perhaps, he thought, it +might be fished for. + +Presently after, he sat on one side of his own hearth, with Mr. Guest, +his head clerk, upon the other, and midway between, at a nicely +calculated distance from the fire, a bottle of a particular old wine +that had long dwelt unsunned in the foundations of his house. The fog +still slept on the wing above the drowned city, where the lamps +glimmered like carbuncles; and through the muffle and smother of these +fallen clouds, the procession of the town’s life was still rolling in +through the great arteries with a sound as of a mighty wind. But the +room was gay with firelight. In the bottle the acids were long ago +resolved; the imperial dye had softened with time, as the colour grows +richer in stained windows; and the glow of hot autumn afternoons on +hillside vineyards, was ready to be set free and to disperse the fogs +of London. Insensibly the lawyer melted. There was no man from whom he +kept fewer secrets than Mr. Guest; and he was not always sure that he +kept as many as he meant. Guest had often been on business to the +doctor’s; he knew Poole; he could scarce have failed to hear of Mr. +Hyde’s familiarity about the house; he might draw conclusions: was it +not as well, then, that he should see a letter which put that mystery +to right? and above all since Guest, being a great student and critic +of handwriting, would consider the step natural and obliging? The +clerk, besides, was a man of counsel; he could scarce read so strange a +document without dropping a remark; and by that remark Mr. Utterson +might shape his future course. + +“This is a sad business about Sir Danvers,” he said. + +“Yes, sir, indeed. It has elicited a great deal of public feeling,” +returned Guest. “The man, of course, was mad.” + +“I should like to hear your views on that,” replied Utterson. “I have a +document here in his handwriting; it is between ourselves, for I scarce +know what to do about it; it is an ugly business at the best. But there +it is; quite in your way: a murderer’s autograph.” + +Guest’s eyes brightened, and he sat down at once and studied it with +passion. “No sir,” he said: “not mad; but it is an odd hand.” + +“And by all accounts a very odd writer,” added the lawyer. + +Just then the servant entered with a note. + +“Is that from Dr. Jekyll, sir?” inquired the clerk. “I thought I knew +the writing. Anything private, Mr. Utterson?” + +“Only an invitation to dinner. Why? Do you want to see it?” + +“One moment. I thank you, sir;” and the clerk laid the two sheets of +paper alongside and sedulously compared their contents. “Thank you, +sir,” he said at last, returning both; “it’s a very interesting +autograph.” + +There was a pause, during which Mr. Utterson struggled with himself. +“Why did you compare them, Guest?” he inquired suddenly. + +“Well, sir,” returned the clerk, “there’s a rather singular +resemblance; the two hands are in many points identical: only +differently sloped.” + +“Rather quaint,” said Utterson. + +“It is, as you say, rather quaint,” returned Guest. + +“I wouldn’t speak of this note, you know,” said the master. + +“No, sir,” said the clerk. “I understand.” + +But no sooner was Mr. Utterson alone that night, than he locked the +note into his safe, where it reposed from that time forward. “What!” he +thought. “Henry Jekyll forge for a murderer!” And his blood ran cold in +his veins. + + + +INCIDENT OF DR. LANYON + +Time ran on; thousands of pounds were offered in reward, for the death +of Sir Danvers was resented as a public injury; but Mr. Hyde had +disappeared out of the ken of the police as though he had never +existed. Much of his past was unearthed, indeed, and all disreputable: +tales came out of the man’s cruelty, at once so callous and violent; of +his vile life, of his strange associates, of the hatred that seemed to +have surrounded his career; but of his present whereabouts, not a +whisper. From the time he had left the house in Soho on the morning of +the murder, he was simply blotted out; and gradually, as time drew on, +Mr. Utterson began to recover from the hotness of his alarm, and to +grow more at quiet with himself. The death of Sir Danvers was, to his +way of thinking, more than paid for by the disappearance of Mr. Hyde. +Now that that evil influence had been withdrawn, a new life began for +Dr. Jekyll. He came out of his seclusion, renewed relations with his +friends, became once more their familiar guest and entertainer; and +whilst he had always been known for charities, he was now no less +distinguished for religion. He was busy, he was much in the open air, +he did good; his face seemed to open and brighten, as if with an inward +consciousness of service; and for more than two months, the doctor was +at peace. + +On the 8th of January Utterson had dined at the doctor’s with a small +party; Lanyon had been there; and the face of the host had looked from +one to the other as in the old days when the trio were inseparable +friends. On the 12th, and again on the 14th, the door was shut against +the lawyer. “The doctor was confined to the house,” Poole said, “and +saw no one.” On the 15th, he tried again, and was again refused; and +having now been used for the last two months to see his friend almost +daily, he found this return of solitude to weigh upon his spirits. The +fifth night he had in Guest to dine with him; and the sixth he betook +himself to Dr. Lanyon’s. + +There at least he was not denied admittance; but when he came in, he +was shocked at the change which had taken place in the doctor’s +appearance. He had his death-warrant written legibly upon his face. The +rosy man had grown pale; his flesh had fallen away; he was visibly +balder and older; and yet it was not so much these tokens of a swift +physical decay that arrested the lawyer’s notice, as a look in the eye +and quality of manner that seemed to testify to some deep-seated terror +of the mind. It was unlikely that the doctor should fear death; and yet +that was what Utterson was tempted to suspect. “Yes,” he thought; “he +is a doctor, he must know his own state and that his days are counted; +and the knowledge is more than he can bear.” And yet when Utterson +remarked on his ill looks, it was with an air of great firmness that +Lanyon declared himself a doomed man. + +“I have had a shock,” he said, “and I shall never recover. It is a +question of weeks. Well, life has been pleasant; I liked it; yes, sir, +I used to like it. I sometimes think if we knew all, we should be more +glad to get away.” + +“Jekyll is ill, too,” observed Utterson. “Have you seen him?” + +But Lanyon’s face changed, and he held up a trembling hand. “I wish to +see or hear no more of Dr. Jekyll,” he said in a loud, unsteady voice. +“I am quite done with that person; and I beg that you will spare me any +allusion to one whom I regard as dead.” + +“Tut, tut!” said Mr. Utterson; and then after a considerable pause, +“Can’t I do anything?” he inquired. “We are three very old friends, +Lanyon; we shall not live to make others.” + +“Nothing can be done,” returned Lanyon; “ask himself.” + +“He will not see me,” said the lawyer. + +“I am not surprised at that,” was the reply. “Some day, Utterson, after +I am dead, you may perhaps come to learn the right and wrong of this. I +cannot tell you. And in the meantime, if you can sit and talk with me +of other things, for God’s sake, stay and do so; but if you cannot keep +clear of this accursed topic, then in God’s name, go, for I cannot bear +it.” + +As soon as he got home, Utterson sat down and wrote to Jekyll, +complaining of his exclusion from the house, and asking the cause of +this unhappy break with Lanyon; and the next day brought him a long +answer, often very pathetically worded, and sometimes darkly mysterious +in drift. The quarrel with Lanyon was incurable. “I do not blame our +old friend,” Jekyll wrote, “but I share his view that we must never +meet. I mean from henceforth to lead a life of extreme seclusion; you +must not be surprised, nor must you doubt my friendship, if my door is +often shut even to you. You must suffer me to go my own dark way. I +have brought on myself a punishment and a danger that I cannot name. If +I am the chief of sinners, I am the chief of sufferers also. I could +not think that this earth contained a place for sufferings and terrors +so unmanning; and you can do but one thing, Utterson, to lighten this +destiny, and that is to respect my silence.” Utterson was amazed; the +dark influence of Hyde had been withdrawn, the doctor had returned to +his old tasks and amities; a week ago, the prospect had smiled with +every promise of a cheerful and an honoured age; and now in a moment, +friendship, and peace of mind, and the whole tenor of his life were +wrecked. So great and unprepared a change pointed to madness; but in +view of Lanyon’s manner and words, there must lie for it some deeper +ground. + +A week afterwards Dr. Lanyon took to his bed, and in something less +than a fortnight he was dead. The night after the funeral, at which he +had been sadly affected, Utterson locked the door of his business room, +and sitting there by the light of a melancholy candle, drew out and set +before him an envelope addressed by the hand and sealed with the seal +of his dead friend. “PRIVATE: for the hands of G. J. Utterson ALONE, +and in case of his predecease _to be destroyed unread_,” so it was +emphatically superscribed; and the lawyer dreaded to behold the +contents. “I have buried one friend to-day,” he thought: “what if this +should cost me another?” And then he condemned the fear as a +disloyalty, and broke the seal. Within there was another enclosure, +likewise sealed, and marked upon the cover as “not to be opened till +the death or disappearance of Dr. Henry Jekyll.” Utterson could not +trust his eyes. Yes, it was disappearance; here again, as in the mad +will which he had long ago restored to its author, here again were the +idea of a disappearance and the name of Henry Jekyll bracketted. But in +the will, that idea had sprung from the sinister suggestion of the man +Hyde; it was set there with a purpose all too plain and horrible. +Written by the hand of Lanyon, what should it mean? A great curiosity +came on the trustee, to disregard the prohibition and dive at once to +the bottom of these mysteries; but professional honour and faith to his +dead friend were stringent obligations; and the packet slept in the +inmost corner of his private safe. + +It is one thing to mortify curiosity, another to conquer it; and it may +be doubted if, from that day forth, Utterson desired the society of his +surviving friend with the same eagerness. He thought of him kindly; but +his thoughts were disquieted and fearful. He went to call indeed; but +he was perhaps relieved to be denied admittance; perhaps, in his heart, +he preferred to speak with Poole upon the doorstep and surrounded by +the air and sounds of the open city, rather than to be admitted into +that house of voluntary bondage, and to sit and speak with its +inscrutable recluse. Poole had, indeed, no very pleasant news to +communicate. The doctor, it appeared, now more than ever confined +himself to the cabinet over the laboratory, where he would sometimes +even sleep; he was out of spirits, he had grown very silent, he did not +read; it seemed as if he had something on his mind. Utterson became so +used to the unvarying character of these reports, that he fell off +little by little in the frequency of his visits. + + + +INCIDENT AT THE WINDOW + +It chanced on Sunday, when Mr. Utterson was on his usual walk with Mr. +Enfield, that their way lay once again through the by-street; and that +when they came in front of the door, both stopped to gaze on it. + +“Well,” said Enfield, “that story’s at an end at least. We shall never +see more of Mr. Hyde.” + +“I hope not,” said Utterson. “Did I ever tell you that I once saw him, +and shared your feeling of repulsion?” + +“It was impossible to do the one without the other,” returned Enfield. +“And by the way, what an ass you must have thought me, not to know that +this was a back way to Dr. Jekyll’s! It was partly your own fault that +I found it out, even when I did.” + +“So you found it out, did you?” said Utterson. “But if that be so, we +may step into the court and take a look at the windows. To tell you the +truth, I am uneasy about poor Jekyll; and even outside, I feel as if +the presence of a friend might do him good.” + +The court was very cool and a little damp, and full of premature +twilight, although the sky, high up overhead, was still bright with +sunset. The middle one of the three windows was half-way open; and +sitting close beside it, taking the air with an infinite sadness of +mien, like some disconsolate prisoner, Utterson saw Dr. Jekyll. + +“What! Jekyll!” he cried. “I trust you are better.” + +“I am very low, Utterson,” replied the doctor drearily, “very low. It +will not last long, thank God.” + +“You stay too much indoors,” said the lawyer. “You should be out, +whipping up the circulation like Mr. Enfield and me. (This is my +cousin—Mr. Enfield—Dr. Jekyll.) Come now; get your hat and take a quick +turn with us.” + +“You are very good,” sighed the other. “I should like to very much; but +no, no, no, it is quite impossible; I dare not. But indeed, Utterson, I +am very glad to see you; this is really a great pleasure; I would ask +you and Mr. Enfield up, but the place is really not fit.” + +“Why, then,” said the lawyer, good-naturedly, “the best thing we can do +is to stay down here and speak with you from where we are.” + +“That is just what I was about to venture to propose,” returned the +doctor with a smile. But the words were hardly uttered, before the +smile was struck out of his face and succeeded by an expression of such +abject terror and despair, as froze the very blood of the two gentlemen +below. They saw it but for a glimpse for the window was instantly +thrust down; but that glimpse had been sufficient, and they turned and +left the court without a word. In silence, too, they traversed the +by-street; and it was not until they had come into a neighbouring +thoroughfare, where even upon a Sunday there were still some stirrings +of life, that Mr. Utterson at last turned and looked at his companion. +They were both pale; and there was an answering horror in their eyes. + +“God forgive us, God forgive us,” said Mr. Utterson. + +But Mr. Enfield only nodded his head very seriously, and walked on once +more in silence. + + + +THE LAST NIGHT + +Mr. Utterson was sitting by his fireside one evening after dinner, when +he was surprised to receive a visit from Poole. + +“Bless me, Poole, what brings you here?” he cried; and then taking a +second look at him, “What ails you?” he added; “is the doctor ill?” + +“Mr. Utterson,” said the man, “there is something wrong.” + +“Take a seat, and here is a glass of wine for you,” said the lawyer. +“Now, take your time, and tell me plainly what you want.” + +“You know the doctor’s ways, sir,” replied Poole, “and how he shuts +himself up. Well, he’s shut up again in the cabinet; and I don’t like +it, sir—I wish I may die if I like it. Mr. Utterson, sir, I’m afraid.” + +“Now, my good man,” said the lawyer, “be explicit. What are you afraid +of?” + +“I’ve been afraid for about a week,” returned Poole, doggedly +disregarding the question, “and I can bear it no more.” + +The man’s appearance amply bore out his words; his manner was altered +for the worse; and except for the moment when he had first announced +his terror, he had not once looked the lawyer in the face. Even now, he +sat with the glass of wine untasted on his knee, and his eyes directed +to a corner of the floor. “I can bear it no more,” he repeated. + +“Come,” said the lawyer, “I see you have some good reason, Poole; I see +there is something seriously amiss. Try to tell me what it is.” + +“I think there’s been foul play,” said Poole, hoarsely. + +“Foul play!” cried the lawyer, a good deal frightened and rather +inclined to be irritated in consequence. “What foul play! What does the +man mean?” + +“I daren’t say, sir,” was the answer; “but will you come along with me +and see for yourself?” + +Mr. Utterson’s only answer was to rise and get his hat and greatcoat; +but he observed with wonder the greatness of the relief that appeared +upon the butler’s face, and perhaps with no less, that the wine was +still untasted when he set it down to follow. + +It was a wild, cold, seasonable night of March, with a pale moon, lying +on her back as though the wind had tilted her, and flying wrack of the +most diaphanous and lawny texture. The wind made talking difficult, and +flecked the blood into the face. It seemed to have swept the streets +unusually bare of passengers, besides; for Mr. Utterson thought he had +never seen that part of London so deserted. He could have wished it +otherwise; never in his life had he been conscious of so sharp a wish +to see and touch his fellow-creatures; for struggle as he might, there +was borne in upon his mind a crushing anticipation of calamity. The +square, when they got there, was full of wind and dust, and the thin +trees in the garden were lashing themselves along the railing. Poole, +who had kept all the way a pace or two ahead, now pulled up in the +middle of the pavement, and in spite of the biting weather, took off +his hat and mopped his brow with a red pocket-handkerchief. But for all +the hurry of his coming, these were not the dews of exertion that he +wiped away, but the moisture of some strangling anguish; for his face +was white and his voice, when he spoke, harsh and broken. + +“Well, sir,” he said, “here we are, and God grant there be nothing +wrong.” + +“Amen, Poole,” said the lawyer. + +Thereupon the servant knocked in a very guarded manner; the door was +opened on the chain; and a voice asked from within, “Is that you, +Poole?” + +“It’s all right,” said Poole. “Open the door.” + +The hall, when they entered it, was brightly lighted up; the fire was +built high; and about the hearth the whole of the servants, men and +women, stood huddled together like a flock of sheep. At the sight of +Mr. Utterson, the housemaid broke into hysterical whimpering; and the +cook, crying out “Bless God! it’s Mr. Utterson,” ran forward as if to +take him in her arms. + +“What, what? Are you all here?” said the lawyer peevishly. “Very +irregular, very unseemly; your master would be far from pleased.” + +“They’re all afraid,” said Poole. + +Blank silence followed, no one protesting; only the maid lifted her +voice and now wept loudly. + +“Hold your tongue!” Poole said to her, with a ferocity of accent that +testified to his own jangled nerves; and indeed, when the girl had so +suddenly raised the note of her lamentation, they had all started and +turned towards the inner door with faces of dreadful expectation. “And +now,” continued the butler, addressing the knife-boy, “reach me a +candle, and we’ll get this through hands at once.” And then he begged +Mr. Utterson to follow him, and led the way to the back garden. + +“Now, sir,” said he, “you come as gently as you can. I want you to +hear, and I don’t want you to be heard. And see here, sir, if by any +chance he was to ask you in, don’t go.” + +Mr. Utterson’s nerves, at this unlooked-for termination, gave a jerk +that nearly threw him from his balance; but he recollected his courage +and followed the butler into the laboratory building through the +surgical theatre, with its lumber of crates and bottles, to the foot of +the stair. Here Poole motioned him to stand on one side and listen; +while he himself, setting down the candle and making a great and +obvious call on his resolution, mounted the steps and knocked with a +somewhat uncertain hand on the red baize of the cabinet door. + +“Mr. Utterson, sir, asking to see you,” he called; and even as he did +so, once more violently signed to the lawyer to give ear. + +A voice answered from within: “Tell him I cannot see anyone,” it said +complainingly. + +“Thank you, sir,” said Poole, with a note of something like triumph in +his voice; and taking up his candle, he led Mr. Utterson back across +the yard and into the great kitchen, where the fire was out and the +beetles were leaping on the floor. + +“Sir,” he said, looking Mr. Utterson in the eyes, “Was that my master’s +voice?” + +“It seems much changed,” replied the lawyer, very pale, but giving look +for look. + +“Changed? Well, yes, I think so,” said the butler. “Have I been twenty +years in this man’s house, to be deceived about his voice? No, sir; +master’s made away with; he was made away with eight days ago, when we +heard him cry out upon the name of God; and _who’s_ in there instead of +him, and _why_ it stays there, is a thing that cries to Heaven, Mr. +Utterson!” + +“This is a very strange tale, Poole; this is rather a wild tale my +man,” said Mr. Utterson, biting his finger. “Suppose it were as you +suppose, supposing Dr. Jekyll to have been—well, murdered, what could +induce the murderer to stay? That won’t hold water; it doesn’t commend +itself to reason.” + +“Well, Mr. Utterson, you are a hard man to satisfy, but I’ll do it +yet,” said Poole. “All this last week (you must know) him, or it, +whatever it is that lives in that cabinet, has been crying night and +day for some sort of medicine and cannot get it to his mind. It was +sometimes his way—the master’s, that is—to write his orders on a sheet +of paper and throw it on the stair. We’ve had nothing else this week +back; nothing but papers, and a closed door, and the very meals left +there to be smuggled in when nobody was looking. Well, sir, every day, +ay, and twice and thrice in the same day, there have been orders and +complaints, and I have been sent flying to all the wholesale chemists +in town. Every time I brought the stuff back, there would be another +paper telling me to return it, because it was not pure, and another +order to a different firm. This drug is wanted bitter bad, sir, +whatever for.” + +“Have you any of these papers?” asked Mr. Utterson. + +Poole felt in his pocket and handed out a crumpled note, which the +lawyer, bending nearer to the candle, carefully examined. Its contents +ran thus: “Dr. Jekyll presents his compliments to Messrs. Maw. He +assures them that their last sample is impure and quite useless for his +present purpose. In the year 18—, Dr. J. purchased a somewhat large +quantity from Messrs. M. He now begs them to search with most sedulous +care, and should any of the same quality be left, forward it to him at +once. Expense is no consideration. The importance of this to Dr. J. can +hardly be exaggerated.” So far the letter had run composedly enough, +but here with a sudden splutter of the pen, the writer’s emotion had +broken loose. “For God’s sake,” he added, “find me some of the old.” + +“This is a strange note,” said Mr. Utterson; and then sharply, “How do +you come to have it open?” + +“The man at Maw’s was main angry, sir, and he threw it back to me like +so much dirt,” returned Poole. + +“This is unquestionably the doctor’s hand, do you know?” resumed the +lawyer. + +“I thought it looked like it,” said the servant rather sulkily; and +then, with another voice, “But what matters hand of write?” he said. +“I’ve seen him!” + +“Seen him?” repeated Mr. Utterson. “Well?” + +“That’s it!” said Poole. “It was this way. I came suddenly into the +theatre from the garden. It seems he had slipped out to look for this +drug or whatever it is; for the cabinet door was open, and there he was +at the far end of the room digging among the crates. He looked up when +I came in, gave a kind of cry, and whipped upstairs into the cabinet. +It was but for one minute that I saw him, but the hair stood upon my +head like quills. Sir, if that was my master, why had he a mask upon +his face? If it was my master, why did he cry out like a rat, and run +from me? I have served him long enough. And then...” The man paused and +passed his hand over his face. + +“These are all very strange circumstances,” said Mr. Utterson, “but I +think I begin to see daylight. Your master, Poole, is plainly seized +with one of those maladies that both torture and deform the sufferer; +hence, for aught I know, the alteration of his voice; hence the mask +and the avoidance of his friends; hence his eagerness to find this +drug, by means of which the poor soul retains some hope of ultimate +recovery—God grant that he be not deceived! There is my explanation; it +is sad enough, Poole, ay, and appalling to consider; but it is plain +and natural, hangs well together, and delivers us from all exorbitant +alarms.” + +“Sir,” said the butler, turning to a sort of mottled pallor, “that +thing was not my master, and there’s the truth. My master”—here he +looked round him and began to whisper—“is a tall, fine build of a man, +and this was more of a dwarf.” Utterson attempted to protest. “O, sir,” +cried Poole, “do you think I do not know my master after twenty years? +Do you think I do not know where his head comes to in the cabinet door, +where I saw him every morning of my life? No, sir, that thing in the +mask was never Dr. Jekyll—God knows what it was, but it was never Dr. +Jekyll; and it is the belief of my heart that there was murder done.” + +“Poole,” replied the lawyer, “if you say that, it will become my duty +to make certain. Much as I desire to spare your master’s feelings, much +as I am puzzled by this note which seems to prove him to be still +alive, I shall consider it my duty to break in that door.” + +“Ah, Mr. Utterson, that’s talking!” cried the butler. + +“And now comes the second question,” resumed Utterson: “Who is going to +do it?” + +“Why, you and me, sir,” was the undaunted reply. + +“That’s very well said,” returned the lawyer; “and whatever comes of +it, I shall make it my business to see you are no loser.” + +“There is an axe in the theatre,” continued Poole; “and you might take +the kitchen poker for yourself.” + +The lawyer took that rude but weighty instrument into his hand, and +balanced it. “Do you know, Poole,” he said, looking up, “that you and I +are about to place ourselves in a position of some peril?” + +“You may say so, sir, indeed,” returned the butler. + +“It is well, then that we should be frank,” said the other. “We both +think more than we have said; let us make a clean breast. This masked +figure that you saw, did you recognise it?” + +“Well, sir, it went so quick, and the creature was so doubled up, that +I could hardly swear to that,” was the answer. “But if you mean, was it +Mr. Hyde?—why, yes, I think it was! You see, it was much of the same +bigness; and it had the same quick, light way with it; and then who +else could have got in by the laboratory door? You have not forgot, +sir, that at the time of the murder he had still the key with him? But +that’s not all. I don’t know, Mr. Utterson, if you ever met this Mr. +Hyde?” + +“Yes,” said the lawyer, “I once spoke with him.” + +“Then you must know as well as the rest of us that there was something +queer about that gentleman—something that gave a man a turn—I don’t +know rightly how to say it, sir, beyond this: that you felt in your +marrow kind of cold and thin.” + +“I own I felt something of what you describe,” said Mr. Utterson. + +“Quite so, sir,” returned Poole. “Well, when that masked thing like a +monkey jumped from among the chemicals and whipped into the cabinet, it +went down my spine like ice. O, I know it’s not evidence, Mr. Utterson; +I’m book-learned enough for that; but a man has his feelings, and I +give you my bible-word it was Mr. Hyde!” + +“Ay, ay,” said the lawyer. “My fears incline to the same point. Evil, I +fear, founded—evil was sure to come—of that connection. Ay truly, I +believe you; I believe poor Harry is killed; and I believe his murderer +(for what purpose, God alone can tell) is still lurking in his victim’s +room. Well, let our name be vengeance. Call Bradshaw.” + +The footman came at the summons, very white and nervous. + +“Pull yourself together, Bradshaw,” said the lawyer. “This suspense, I +know, is telling upon all of you; but it is now our intention to make +an end of it. Poole, here, and I are going to force our way into the +cabinet. If all is well, my shoulders are broad enough to bear the +blame. Meanwhile, lest anything should really be amiss, or any +malefactor seek to escape by the back, you and the boy must go round +the corner with a pair of good sticks and take your post at the +laboratory door. We give you ten minutes to get to your stations.” + +As Bradshaw left, the lawyer looked at his watch. “And now, Poole, let +us get to ours,” he said; and taking the poker under his arm, led the +way into the yard. The scud had banked over the moon, and it was now +quite dark. The wind, which only broke in puffs and draughts into that +deep well of building, tossed the light of the candle to and fro about +their steps, until they came into the shelter of the theatre, where +they sat down silently to wait. London hummed solemnly all around; but +nearer at hand, the stillness was only broken by the sounds of a +footfall moving to and fro along the cabinet floor. + +“So it will walk all day, sir,” whispered Poole; “ay, and the better +part of the night. Only when a new sample comes from the chemist, +there’s a bit of a break. Ah, it’s an ill conscience that’s such an +enemy to rest! Ah, sir, there’s blood foully shed in every step of it! +But hark again, a little closer—put your heart in your ears, Mr. +Utterson, and tell me, is that the doctor’s foot?” + +The steps fell lightly and oddly, with a certain swing, for all they +went so slowly; it was different indeed from the heavy creaking tread +of Henry Jekyll. Utterson sighed. “Is there never anything else?” he +asked. + +Poole nodded. “Once,” he said. “Once I heard it weeping!” + +“Weeping? how that?” said the lawyer, conscious of a sudden chill of +horror. + +“Weeping like a woman or a lost soul,” said the butler. “I came away +with that upon my heart, that I could have wept too.” + +But now the ten minutes drew to an end. Poole disinterred the axe from +under a stack of packing straw; the candle was set upon the nearest +table to light them to the attack; and they drew near with bated breath +to where that patient foot was still going up and down, up and down, in +the quiet of the night. + +“Jekyll,” cried Utterson, with a loud voice, “I demand to see you.” He +paused a moment, but there came no reply. “I give you fair warning, our +suspicions are aroused, and I must and shall see you,” he resumed; “if +not by fair means, then by foul—if not of your consent, then by brute +force!” + +“Utterson,” said the voice, “for God’s sake, have mercy!” + +“Ah, that’s not Jekyll’s voice—it’s Hyde’s!” cried Utterson. “Down with +the door, Poole!” + +Poole swung the axe over his shoulder; the blow shook the building, and +the red baize door leaped against the lock and hinges. A dismal +screech, as of mere animal terror, rang from the cabinet. Up went the +axe again, and again the panels crashed and the frame bounded; four +times the blow fell; but the wood was tough and the fittings were of +excellent workmanship; and it was not until the fifth, that the lock +burst and the wreck of the door fell inwards on the carpet. + +The besiegers, appalled by their own riot and the stillness that had +succeeded, stood back a little and peered in. There lay the cabinet +before their eyes in the quiet lamplight, a good fire glowing and +chattering on the hearth, the kettle singing its thin strain, a drawer +or two open, papers neatly set forth on the business table, and nearer +the fire, the things laid out for tea; the quietest room, you would +have said, and, but for the glazed presses full of chemicals, the most +commonplace that night in London. + +Right in the middle there lay the body of a man sorely contorted and +still twitching. They drew near on tiptoe, turned it on its back and +beheld the face of Edward Hyde. He was dressed in clothes far too large +for him, clothes of the doctor’s bigness; the cords of his face still +moved with a semblance of life, but life was quite gone; and by the +crushed phial in the hand and the strong smell of kernels that hung +upon the air, Utterson knew that he was looking on the body of a +self-destroyer. + +“We have come too late,” he said sternly, “whether to save or punish. +Hyde is gone to his account; and it only remains for us to find the +body of your master.” + +The far greater proportion of the building was occupied by the theatre, +which filled almost the whole ground storey and was lighted from above, +and by the cabinet, which formed an upper storey at one end and looked +upon the court. A corridor joined the theatre to the door on the +by-street; and with this the cabinet communicated separately by a +second flight of stairs. There were besides a few dark closets and a +spacious cellar. All these they now thoroughly examined. Each closet +needed but a glance, for all were empty, and all, by the dust that fell +from their doors, had stood long unopened. The cellar, indeed, was +filled with crazy lumber, mostly dating from the times of the surgeon +who was Jekyll’s predecessor; but even as they opened the door they +were advertised of the uselessness of further search, by the fall of a +perfect mat of cobweb which had for years sealed up the entrance. +Nowhere was there any trace of Henry Jekyll, dead or alive. + +Poole stamped on the flags of the corridor. “He must be buried here,” +he said, hearkening to the sound. + +“Or he may have fled,” said Utterson, and he turned to examine the door +in the by-street. It was locked; and lying near by on the flags, they +found the key, already stained with rust. + +“This does not look like use,” observed the lawyer. + +“Use!” echoed Poole. “Do you not see, sir, it is broken? much as if a +man had stamped on it.” + +“Ay,” continued Utterson, “and the fractures, too, are rusty.” The two +men looked at each other with a scare. “This is beyond me, Poole,” said +the lawyer. “Let us go back to the cabinet.” + +They mounted the stair in silence, and still with an occasional +awestruck glance at the dead body, proceeded more thoroughly to examine +the contents of the cabinet. At one table, there were traces of +chemical work, various measured heaps of some white salt being laid on +glass saucers, as though for an experiment in which the unhappy man had +been prevented. + +“That is the same drug that I was always bringing him,” said Poole; and +even as he spoke, the kettle with a startling noise boiled over. + +This brought them to the fireside, where the easy-chair was drawn +cosily up, and the tea things stood ready to the sitter’s elbow, the +very sugar in the cup. There were several books on a shelf; one lay +beside the tea things open, and Utterson was amazed to find it a copy +of a pious work, for which Jekyll had several times expressed a great +esteem, annotated, in his own hand with startling blasphemies. + +Next, in the course of their review of the chamber, the searchers came +to the cheval-glass, into whose depths they looked with an involuntary +horror. But it was so turned as to show them nothing but the rosy glow +playing on the roof, the fire sparkling in a hundred repetitions along +the glazed front of the presses, and their own pale and fearful +countenances stooping to look in. + +“This glass has seen some strange things, sir,” whispered Poole. + +“And surely none stranger than itself,” echoed the lawyer in the same +tones. “For what did Jekyll”—he caught himself up at the word with a +start, and then conquering the weakness—“what could Jekyll want with +it?” he said. + +“You may say that!” said Poole. + +Next they turned to the business table. On the desk, among the neat +array of papers, a large envelope was uppermost, and bore, in the +doctor’s hand, the name of Mr. Utterson. The lawyer unsealed it, and +several enclosures fell to the floor. The first was a will, drawn in +the same eccentric terms as the one which he had returned six months +before, to serve as a testament in case of death and as a deed of gift +in case of disappearance; but in place of the name of Edward Hyde, the +lawyer, with indescribable amazement read the name of Gabriel John +Utterson. He looked at Poole, and then back at the paper, and last of +all at the dead malefactor stretched upon the carpet. + +“My head goes round,” he said. “He has been all these days in +possession; he had no cause to like me; he must have raged to see +himself displaced; and he has not destroyed this document.” + +He caught up the next paper; it was a brief note in the doctor’s hand +and dated at the top. “O Poole!” the lawyer cried, “he was alive and +here this day. He cannot have been disposed of in so short a space; he +must be still alive, he must have fled! And then, why fled? and how? +and in that case, can we venture to declare this suicide? O, we must be +careful. I foresee that we may yet involve your master in some dire +catastrophe.” + +“Why don’t you read it, sir?” asked Poole. + +“Because I fear,” replied the lawyer solemnly. “God grant I have no +cause for it!” And with that he brought the paper to his eyes and read +as follows: + + +“My dear Utterson,—When this shall fall into your hands, I shall have +disappeared, under what circumstances I have not the penetration to +foresee, but my instinct and all the circumstances of my nameless +situation tell me that the end is sure and must be early. Go then, and +first read the narrative which Lanyon warned me he was to place in your +hands; and if you care to hear more, turn to the confession of + +“Your unworthy and unhappy friend, + +“HENRY JEKYLL.” + + +“There was a third enclosure?” asked Utterson. + +“Here, sir,” said Poole, and gave into his hands a considerable packet +sealed in several places. + +The lawyer put it in his pocket. “I would say nothing of this paper. If +your master has fled or is dead, we may at least save his credit. It is +now ten; I must go home and read these documents in quiet; but I shall +be back before midnight, when we shall send for the police.” + +They went out, locking the door of the theatre behind them; and +Utterson, once more leaving the servants gathered about the fire in the +hall, trudged back to his office to read the two narratives in which +this mystery was now to be explained. + + + +DR. LANYON’S NARRATIVE + +On the ninth of January, now four days ago, I received by the evening +delivery a registered envelope, addressed in the hand of my colleague +and old school companion, Henry Jekyll. I was a good deal surprised by +this; for we were by no means in the habit of correspondence; I had +seen the man, dined with him, indeed, the night before; and I could +imagine nothing in our intercourse that should justify formality of +registration. The contents increased my wonder; for this is how the +letter ran: + +“10_th December_, 18—. + + +“Dear Lanyon,—You are one of my oldest friends; and although we may +have differed at times on scientific questions, I cannot remember, at +least on my side, any break in our affection. There was never a day +when, if you had said to me, ‘Jekyll, my life, my honour, my reason, +depend upon you,’ I would not have sacrificed my left hand to help you. +Lanyon, my life, my honour, my reason, are all at your mercy; if you +fail me to-night, I am lost. You might suppose, after this preface, +that I am going to ask you for something dishonourable to grant. Judge +for yourself. + +“I want you to postpone all other engagements for to-night—ay, even if +you were summoned to the bedside of an emperor; to take a cab, unless +your carriage should be actually at the door; and with this letter in +your hand for consultation, to drive straight to my house. Poole, my +butler, has his orders; you will find him waiting your arrival with a +locksmith. The door of my cabinet is then to be forced; and you are to +go in alone; to open the glazed press (letter E) on the left hand, +breaking the lock if it be shut; and to draw out, _with all its +contents as they stand_, the fourth drawer from the top or (which is +the same thing) the third from the bottom. In my extreme distress of +mind, I have a morbid fear of misdirecting you; but even if I am in +error, you may know the right drawer by its contents: some powders, a +phial and a paper book. This drawer I beg of you to carry back with you +to Cavendish Square exactly as it stands. + +“That is the first part of the service: now for the second. You should +be back, if you set out at once on the receipt of this, long before +midnight; but I will leave you that amount of margin, not only in the +fear of one of those obstacles that can neither be prevented nor +foreseen, but because an hour when your servants are in bed is to be +preferred for what will then remain to do. At midnight, then, I have to +ask you to be alone in your consulting room, to admit with your own +hand into the house a man who will present himself in my name, and to +place in his hands the drawer that you will have brought with you from +my cabinet. Then you will have played your part and earned my gratitude +completely. Five minutes afterwards, if you insist upon an explanation, +you will have understood that these arrangements are of capital +importance; and that by the neglect of one of them, fantastic as they +must appear, you might have charged your conscience with my death or +the shipwreck of my reason. + +“Confident as I am that you will not trifle with this appeal, my heart +sinks and my hand trembles at the bare thought of such a possibility. +Think of me at this hour, in a strange place, labouring under a +blackness of distress that no fancy can exaggerate, and yet well aware +that, if you will but punctually serve me, my troubles will roll away +like a story that is told. Serve me, my dear Lanyon and save + +“Your friend, + + +“H.J. + + +“P.S.—I had already sealed this up when a fresh terror struck upon my +soul. It is possible that the post-office may fail me, and this letter +not come into your hands until to-morrow morning. In that case, dear +Lanyon, do my errand when it shall be most convenient for you in the +course of the day; and once more expect my messenger at midnight. It +may then already be too late; and if that night passes without event, +you will know that you have seen the last of Henry Jekyll.” + + +Upon the reading of this letter, I made sure my colleague was insane; +but till that was proved beyond the possibility of doubt, I felt bound +to do as he requested. The less I understood of this farrago, the less +I was in a position to judge of its importance; and an appeal so worded +could not be set aside without a grave responsibility. I rose +accordingly from table, got into a hansom, and drove straight to +Jekyll’s house. The butler was awaiting my arrival; he had received by +the same post as mine a registered letter of instruction, and had sent +at once for a locksmith and a carpenter. The tradesmen came while we +were yet speaking; and we moved in a body to old Dr. Denman’s surgical +theatre, from which (as you are doubtless aware) Jekyll’s private +cabinet is most conveniently entered. The door was very strong, the +lock excellent; the carpenter avowed he would have great trouble and +have to do much damage, if force were to be used; and the locksmith was +near despair. But this last was a handy fellow, and after two hour’s +work, the door stood open. The press marked E was unlocked; and I took +out the drawer, had it filled up with straw and tied in a sheet, and +returned with it to Cavendish Square. + +Here I proceeded to examine its contents. The powders were neatly +enough made up, but not with the nicety of the dispensing chemist; so +that it was plain they were of Jekyll’s private manufacture; and when I +opened one of the wrappers I found what seemed to me a simple +crystalline salt of a white colour. The phial, to which I next turned +my attention, might have been about half full of a blood-red liquor, +which was highly pungent to the sense of smell and seemed to me to +contain phosphorus and some volatile ether. At the other ingredients I +could make no guess. The book was an ordinary version book and +contained little but a series of dates. These covered a period of many +years, but I observed that the entries ceased nearly a year ago and +quite abruptly. Here and there a brief remark was appended to a date, +usually no more than a single word: “double” occurring perhaps six +times in a total of several hundred entries; and once very early in the +list and followed by several marks of exclamation, “total failure!!!” +All this, though it whetted my curiosity, told me little that was +definite. Here were a phial of some salt, and the record of a series of +experiments that had led (like too many of Jekyll’s investigations) to +no end of practical usefulness. How could the presence of these +articles in my house affect either the honour, the sanity, or the life +of my flighty colleague? If his messenger could go to one place, why +could he not go to another? And even granting some impediment, why was +this gentleman to be received by me in secret? The more I reflected the +more convinced I grew that I was dealing with a case of cerebral +disease; and though I dismissed my servants to bed, I loaded an old +revolver, that I might be found in some posture of self-defence. + +Twelve o’clock had scarce rung out over London, ere the knocker sounded +very gently on the door. I went myself at the summons, and found a +small man crouching against the pillars of the portico. + +“Are you come from Dr. Jekyll?” I asked. + +He told me “yes” by a constrained gesture; and when I had bidden him +enter, he did not obey me without a searching backward glance into the +darkness of the square. There was a policeman not far off, advancing +with his bull’s eye open; and at the sight, I thought my visitor +started and made greater haste. + +These particulars struck me, I confess, disagreeably; and as I followed +him into the bright light of the consulting room, I kept my hand ready +on my weapon. Here, at last, I had a chance of clearly seeing him. I +had never set eyes on him before, so much was certain. He was small, as +I have said; I was struck besides with the shocking expression of his +face, with his remarkable combination of great muscular activity and +great apparent debility of constitution, and—last but not least—with +the odd, subjective disturbance caused by his neighbourhood. This bore +some resemblance to incipient rigour, and was accompanied by a marked +sinking of the pulse. At the time, I set it down to some idiosyncratic, +personal distaste, and merely wondered at the acuteness of the +symptoms; but I have since had reason to believe the cause to lie much +deeper in the nature of man, and to turn on some nobler hinge than the +principle of hatred. + +This person (who had thus, from the first moment of his entrance, +struck in me what I can only describe as a disgustful curiosity) was +dressed in a fashion that would have made an ordinary person laughable; +his clothes, that is to say, although they were of rich and sober +fabric, were enormously too large for him in every measurement—the +trousers hanging on his legs and rolled up to keep them from the +ground, the waist of the coat below his haunches, and the collar +sprawling wide upon his shoulders. Strange to relate, this ludicrous +accoutrement was far from moving me to laughter. Rather, as there was +something abnormal and misbegotten in the very essence of the creature +that now faced me—something seizing, surprising and revolting—this +fresh disparity seemed but to fit in with and to reinforce it; so that +to my interest in the man’s nature and character, there was added a +curiosity as to his origin, his life, his fortune and status in the +world. + +These observations, though they have taken so great a space to be set +down in, were yet the work of a few seconds. My visitor was, indeed, on +fire with sombre excitement. + +“Have you got it?” he cried. “Have you got it?” And so lively was his +impatience that he even laid his hand upon my arm and sought to shake +me. + +I put him back, conscious at his touch of a certain icy pang along my +blood. “Come, sir,” said I. “You forget that I have not yet the +pleasure of your acquaintance. Be seated, if you please.” And I showed +him an example, and sat down myself in my customary seat and with as +fair an imitation of my ordinary manner to a patient, as the lateness +of the hour, the nature of my preoccupations, and the horror I had of +my visitor, would suffer me to muster. + +“I beg your pardon, Dr. Lanyon,” he replied civilly enough. “What you +say is very well founded; and my impatience has shown its heels to my +politeness. I come here at the instance of your colleague, Dr. Henry +Jekyll, on a piece of business of some moment; and I understood...” He +paused and put his hand to his throat, and I could see, in spite of his +collected manner, that he was wrestling against the approaches of the +hysteria—“I understood, a drawer...” + +But here I took pity on my visitor’s suspense, and some perhaps on my +own growing curiosity. + +“There it is, sir,” said I, pointing to the drawer, where it lay on the +floor behind a table and still covered with the sheet. + +He sprang to it, and then paused, and laid his hand upon his heart; I +could hear his teeth grate with the convulsive action of his jaws; and +his face was so ghastly to see that I grew alarmed both for his life +and reason. + +“Compose yourself,” said I. + +He turned a dreadful smile to me, and as if with the decision of +despair, plucked away the sheet. At sight of the contents, he uttered +one loud sob of such immense relief that I sat petrified. And the next +moment, in a voice that was already fairly well under control, “Have +you a graduated glass?” he asked. + +I rose from my place with something of an effort and gave him what he +asked. + +He thanked me with a smiling nod, measured out a few minims of the red +tincture and added one of the powders. The mixture, which was at first +of a reddish hue, began, in proportion as the crystals melted, to +brighten in colour, to effervesce audibly, and to throw off small fumes +of vapour. Suddenly and at the same moment, the ebullition ceased and +the compound changed to a dark purple, which faded again more slowly to +a watery green. My visitor, who had watched these metamorphoses with a +keen eye, smiled, set down the glass upon the table, and then turned +and looked upon me with an air of scrutiny. + +“And now,” said he, “to settle what remains. Will you be wise? will you +be guided? will you suffer me to take this glass in my hand and to go +forth from your house without further parley? or has the greed of +curiosity too much command of you? Think before you answer, for it +shall be done as you decide. As you decide, you shall be left as you +were before, and neither richer nor wiser, unless the sense of service +rendered to a man in mortal distress may be counted as a kind of riches +of the soul. Or, if you shall so prefer to choose, a new province of +knowledge and new avenues to fame and power shall be laid open to you, +here, in this room, upon the instant; and your sight shall be blasted +by a prodigy to stagger the unbelief of Satan.” + +“Sir,” said I, affecting a coolness that I was far from truly +possessing, “you speak enigmas, and you will perhaps not wonder that I +hear you with no very strong impression of belief. But I have gone too +far in the way of inexplicable services to pause before I see the end.” + +“It is well,” replied my visitor. “Lanyon, you remember your vows: what +follows is under the seal of our profession. And now, you who have so +long been bound to the most narrow and material views, you who have +denied the virtue of transcendental medicine, you who have derided your +superiors—behold!” + +He put the glass to his lips and drank at one gulp. A cry followed; he +reeled, staggered, clutched at the table and held on, staring with +injected eyes, gasping with open mouth; and as I looked there came, I +thought, a change—he seemed to swell—his face became suddenly black and +the features seemed to melt and alter—and the next moment, I had sprung +to my feet and leaped back against the wall, my arms raised to shield +me from that prodigy, my mind submerged in terror. + +“O God!” I screamed, and “O God!” again and again; for there before my +eyes—pale and shaken, and half fainting, and groping before him with +his hands, like a man restored from death—there stood Henry Jekyll! + +What he told me in the next hour, I cannot bring my mind to set on +paper. I saw what I saw, I heard what I heard, and my soul sickened at +it; and yet now when that sight has faded from my eyes, I ask myself if +I believe it, and I cannot answer. My life is shaken to its roots; +sleep has left me; the deadliest terror sits by me at all hours of the +day and night; and I feel that my days are numbered, and that I must +die; and yet I shall die incredulous. As for the moral turpitude that +man unveiled to me, even with tears of penitence, I cannot, even in +memory, dwell on it without a start of horror. I will say but one +thing, Utterson, and that (if you can bring your mind to credit it) +will be more than enough. The creature who crept into my house that +night was, on Jekyll’s own confession, known by the name of Hyde and +hunted for in every corner of the land as the murderer of Carew. + +HASTIE LANYON. + + + + +HENRY JEKYLL’S FULL STATEMENT OF THE CASE + +I was born in the year 18— to a large fortune, endowed besides with +excellent parts, inclined by nature to industry, fond of the respect of +the wise and good among my fellowmen, and thus, as might have been +supposed, with every guarantee of an honourable and distinguished +future. And indeed the worst of my faults was a certain impatient +gaiety of disposition, such as has made the happiness of many, but such +as I found it hard to reconcile with my imperious desire to carry my +head high, and wear a more than commonly grave countenance before the +public. Hence it came about that I concealed my pleasures; and that +when I reached years of reflection, and began to look round me and take +stock of my progress and position in the world, I stood already +committed to a profound duplicity of life. Many a man would have even +blazoned such irregularities as I was guilty of; but from the high +views that I had set before me, I regarded and hid them with an almost +morbid sense of shame. It was thus rather the exacting nature of my +aspirations than any particular degradation in my faults, that made me +what I was, and, with even a deeper trench than in the majority of men, +severed in me those provinces of good and ill which divide and compound +man’s dual nature. In this case, I was driven to reflect deeply and +inveterately on that hard law of life, which lies at the root of +religion and is one of the most plentiful springs of distress. Though +so profound a double-dealer, I was in no sense a hypocrite; both sides +of me were in dead earnest; I was no more myself when I laid aside +restraint and plunged in shame, than when I laboured, in the eye of +day, at the furtherance of knowledge or the relief of sorrow and +suffering. And it chanced that the direction of my scientific studies, +which led wholly towards the mystic and the transcendental, reacted and +shed a strong light on this consciousness of the perennial war among my +members. With every day, and from both sides of my intelligence, the +moral and the intellectual, I thus drew steadily nearer to that truth, +by whose partial discovery I have been doomed to such a dreadful +shipwreck: that man is not truly one, but truly two. I say two, because +the state of my own knowledge does not pass beyond that point. Others +will follow, others will outstrip me on the same lines; and I hazard +the guess that man will be ultimately known for a mere polity of +multifarious, incongruous and independent denizens. I, for my part, +from the nature of my life, advanced infallibly in one direction and in +one direction only. It was on the moral side, and in my own person, +that I learned to recognise the thorough and primitive duality of man; +I saw that, of the two natures that contended in the field of my +consciousness, even if I could rightly be said to be either, it was +only because I was radically both; and from an early date, even before +the course of my scientific discoveries had begun to suggest the most +naked possibility of such a miracle, I had learned to dwell with +pleasure, as a beloved daydream, on the thought of the separation of +these elements. If each, I told myself, could be housed in separate +identities, life would be relieved of all that was unbearable; the +unjust might go his way, delivered from the aspirations and remorse of +his more upright twin; and the just could walk steadfastly and securely +on his upward path, doing the good things in which he found his +pleasure, and no longer exposed to disgrace and penitence by the hands +of this extraneous evil. It was the curse of mankind that these +incongruous faggots were thus bound together—that in the agonised womb +of consciousness, these polar twins should be continuously struggling. +How, then were they dissociated? + +I was so far in my reflections when, as I have said, a side light began +to shine upon the subject from the laboratory table. I began to +perceive more deeply than it has ever yet been stated, the trembling +immateriality, the mistlike transience, of this seemingly so solid body +in which we walk attired. Certain agents I found to have the power to +shake and pluck back that fleshly vestment, even as a wind might toss +the curtains of a pavilion. For two good reasons, I will not enter +deeply into this scientific branch of my confession. First, because I +have been made to learn that the doom and burthen of our life is bound +for ever on man’s shoulders, and when the attempt is made to cast it +off, it but returns upon us with more unfamiliar and more awful +pressure. Second, because, as my narrative will make, alas! too +evident, my discoveries were incomplete. Enough then, that I not only +recognised my natural body from the mere aura and effulgence of certain +of the powers that made up my spirit, but managed to compound a drug by +which these powers should be dethroned from their supremacy, and a +second form and countenance substituted, none the less natural to me +because they were the expression, and bore the stamp, of lower elements +in my soul. + +I hesitated long before I put this theory to the test of practice. I +knew well that I risked death; for any drug that so potently controlled +and shook the very fortress of identity, might, by the least scruple of +an overdose or at the least inopportunity in the moment of exhibition, +utterly blot out that immaterial tabernacle which I looked to it to +change. But the temptation of a discovery so singular and profound at +last overcame the suggestions of alarm. I had long since prepared my +tincture; I purchased at once, from a firm of wholesale chemists, a +large quantity of a particular salt which I knew, from my experiments, +to be the last ingredient required; and late one accursed night, I +compounded the elements, watched them boil and smoke together in the +glass, and when the ebullition had subsided, with a strong glow of +courage, drank off the potion. + +The most racking pangs succeeded: a grinding in the bones, deadly +nausea, and a horror of the spirit that cannot be exceeded at the hour +of birth or death. Then these agonies began swiftly to subside, and I +came to myself as if out of a great sickness. There was something +strange in my sensations, something indescribably new and, from its +very novelty, incredibly sweet. I felt younger, lighter, happier in +body; within I was conscious of a heady recklessness, a current of +disordered sensual images running like a millrace in my fancy, a +solution of the bonds of obligation, an unknown but not an innocent +freedom of the soul. I knew myself, at the first breath of this new +life, to be more wicked, tenfold more wicked, sold a slave to my +original evil; and the thought, in that moment, braced and delighted me +like wine. I stretched out my hands, exulting in the freshness of these +sensations; and in the act, I was suddenly aware that I had lost in +stature. + +There was no mirror, at that date, in my room; that which stands beside +me as I write, was brought there later on and for the very purpose of +these transformations. The night however, was far gone into the +morning—the morning, black as it was, was nearly ripe for the +conception of the day—the inmates of my house were locked in the most +rigorous hours of slumber; and I determined, flushed as I was with hope +and triumph, to venture in my new shape as far as to my bedroom. I +crossed the yard, wherein the constellations looked down upon me, I +could have thought, with wonder, the first creature of that sort that +their unsleeping vigilance had yet disclosed to them; I stole through +the corridors, a stranger in my own house; and coming to my room, I saw +for the first time the appearance of Edward Hyde. + +I must here speak by theory alone, saying not that which I know, but +that which I suppose to be most probable. The evil side of my nature, +to which I had now transferred the stamping efficacy, was less robust +and less developed than the good which I had just deposed. Again, in +the course of my life, which had been, after all, nine tenths a life of +effort, virtue and control, it had been much less exercised and much +less exhausted. And hence, as I think, it came about that Edward Hyde +was so much smaller, slighter and younger than Henry Jekyll. Even as +good shone upon the countenance of the one, evil was written broadly +and plainly on the face of the other. Evil besides (which I must still +believe to be the lethal side of man) had left on that body an imprint +of deformity and decay. And yet when I looked upon that ugly idol in +the glass, I was conscious of no repugnance, rather of a leap of +welcome. This, too, was myself. It seemed natural and human. In my eyes +it bore a livelier image of the spirit, it seemed more express and +single, than the imperfect and divided countenance I had been hitherto +accustomed to call mine. And in so far I was doubtless right. I have +observed that when I wore the semblance of Edward Hyde, none could come +near to me at first without a visible misgiving of the flesh. This, as +I take it, was because all human beings, as we meet them, are +commingled out of good and evil: and Edward Hyde, alone in the ranks of +mankind, was pure evil. + +I lingered but a moment at the mirror: the second and conclusive +experiment had yet to be attempted; it yet remained to be seen if I had +lost my identity beyond redemption and must flee before daylight from a +house that was no longer mine; and hurrying back to my cabinet, I once +more prepared and drank the cup, once more suffered the pangs of +dissolution, and came to myself once more with the character, the +stature and the face of Henry Jekyll. + +That night I had come to the fatal cross-roads. Had I approached my +discovery in a more noble spirit, had I risked the experiment while +under the empire of generous or pious aspirations, all must have been +otherwise, and from these agonies of death and birth, I had come forth +an angel instead of a fiend. The drug had no discriminating action; it +was neither diabolical nor divine; it but shook the doors of the +prisonhouse of my disposition; and like the captives of Philippi, that +which stood within ran forth. At that time my virtue slumbered; my +evil, kept awake by ambition, was alert and swift to seize the +occasion; and the thing that was projected was Edward Hyde. Hence, +although I had now two characters as well as two appearances, one was +wholly evil, and the other was still the old Henry Jekyll, that +incongruous compound of whose reformation and improvement I had already +learned to despair. The movement was thus wholly toward the worse. + +Even at that time, I had not conquered my aversions to the dryness of a +life of study. I would still be merrily disposed at times; and as my +pleasures were (to say the least) undignified, and I was not only well +known and highly considered, but growing towards the elderly man, this +incoherency of my life was daily growing more unwelcome. It was on this +side that my new power tempted me until I fell in slavery. I had but to +drink the cup, to doff at once the body of the noted professor, and to +assume, like a thick cloak, that of Edward Hyde. I smiled at the +notion; it seemed to me at the time to be humourous; and I made my +preparations with the most studious care. I took and furnished that +house in Soho, to which Hyde was tracked by the police; and engaged as +a housekeeper a creature whom I knew well to be silent and +unscrupulous. On the other side, I announced to my servants that a Mr. +Hyde (whom I described) was to have full liberty and power about my +house in the square; and to parry mishaps, I even called and made +myself a familiar object, in my second character. I next drew up that +will to which you so much objected; so that if anything befell me in +the person of Dr. Jekyll, I could enter on that of Edward Hyde without +pecuniary loss. And thus fortified, as I supposed, on every side, I +began to profit by the strange immunities of my position. + +Men have before hired bravos to transact their crimes, while their own +person and reputation sat under shelter. I was the first that ever did +so for his pleasures. I was the first that could plod in the public eye +with a load of genial respectability, and in a moment, like a +schoolboy, strip off these lendings and spring headlong into the sea of +liberty. But for me, in my impenetrable mantle, the safety was +complete. Think of it—I did not even exist! Let me but escape into my +laboratory door, give me but a second or two to mix and swallow the +draught that I had always standing ready; and whatever he had done, +Edward Hyde would pass away like the stain of breath upon a mirror; and +there in his stead, quietly at home, trimming the midnight lamp in his +study, a man who could afford to laugh at suspicion, would be Henry +Jekyll. + +The pleasures which I made haste to seek in my disguise were, as I have +said, undignified; I would scarce use a harder term. But in the hands +of Edward Hyde, they soon began to turn toward the monstrous. When I +would come back from these excursions, I was often plunged into a kind +of wonder at my vicarious depravity. This familiar that I called out of +my own soul, and sent forth alone to do his good pleasure, was a being +inherently malign and villainous; his every act and thought centered on +self; drinking pleasure with bestial avidity from any degree of torture +to another; relentless like a man of stone. Henry Jekyll stood at times +aghast before the acts of Edward Hyde; but the situation was apart from +ordinary laws, and insidiously relaxed the grasp of conscience. It was +Hyde, after all, and Hyde alone, that was guilty. Jekyll was no worse; +he woke again to his good qualities seemingly unimpaired; he would even +make haste, where it was possible, to undo the evil done by Hyde. And +thus his conscience slumbered. + +Into the details of the infamy at which I thus connived (for even now I +can scarce grant that I committed it) I have no design of entering; I +mean but to point out the warnings and the successive steps with which +my chastisement approached. I met with one accident which, as it +brought on no consequence, I shall no more than mention. An act of +cruelty to a child aroused against me the anger of a passer-by, whom I +recognised the other day in the person of your kinsman; the doctor and +the child’s family joined him; there were moments when I feared for my +life; and at last, in order to pacify their too just resentment, Edward +Hyde had to bring them to the door, and pay them in a cheque drawn in +the name of Henry Jekyll. But this danger was easily eliminated from +the future, by opening an account at another bank in the name of Edward +Hyde himself; and when, by sloping my own hand backward, I had supplied +my double with a signature, I thought I sat beyond the reach of fate. + +Some two months before the murder of Sir Danvers, I had been out for +one of my adventures, had returned at a late hour, and woke the next +day in bed with somewhat odd sensations. It was in vain I looked about +me; in vain I saw the decent furniture and tall proportions of my room +in the square; in vain that I recognised the pattern of the bed +curtains and the design of the mahogany frame; something still kept +insisting that I was not where I was, that I had not wakened where I +seemed to be, but in the little room in Soho where I was accustomed to +sleep in the body of Edward Hyde. I smiled to myself, and in my +psychological way, began lazily to inquire into the elements of this +illusion, occasionally, even as I did so, dropping back into a +comfortable morning doze. I was still so engaged when, in one of my +more wakeful moments, my eyes fell upon my hand. Now the hand of Henry +Jekyll (as you have often remarked) was professional in shape and size; +it was large, firm, white and comely. But the hand which I now saw, +clearly enough, in the yellow light of a mid-London morning, lying half +shut on the bedclothes, was lean, corded, knuckly, of a dusky pallor +and thickly shaded with a swart growth of hair. It was the hand of +Edward Hyde. + +I must have stared upon it for near half a minute, sunk as I was in the +mere stupidity of wonder, before terror woke up in my breast as sudden +and startling as the crash of cymbals; and bounding from my bed I +rushed to the mirror. At the sight that met my eyes, my blood was +changed into something exquisitely thin and icy. Yes, I had gone to bed +Henry Jekyll, I had awakened Edward Hyde. How was this to be explained? +I asked myself; and then, with another bound of terror—how was it to be +remedied? It was well on in the morning; the servants were up; all my +drugs were in the cabinet—a long journey down two pairs of stairs, +through the back passage, across the open court and through the +anatomical theatre, from where I was then standing horror-struck. It +might indeed be possible to cover my face; but of what use was that, +when I was unable to conceal the alteration in my stature? And then +with an overpowering sweetness of relief, it came back upon my mind +that the servants were already used to the coming and going of my +second self. I had soon dressed, as well as I was able, in clothes of +my own size: had soon passed through the house, where Bradshaw stared +and drew back at seeing Mr. Hyde at such an hour and in such a strange +array; and ten minutes later, Dr. Jekyll had returned to his own shape +and was sitting down, with a darkened brow, to make a feint of +breakfasting. + +Small indeed was my appetite. This inexplicable incident, this reversal +of my previous experience, seemed, like the Babylonian finger on the +wall, to be spelling out the letters of my judgment; and I began to +reflect more seriously than ever before on the issues and possibilities +of my double existence. That part of me which I had the power of +projecting, had lately been much exercised and nourished; it had seemed +to me of late as though the body of Edward Hyde had grown in stature, +as though (when I wore that form) I were conscious of a more generous +tide of blood; and I began to spy a danger that, if this were much +prolonged, the balance of my nature might be permanently overthrown, +the power of voluntary change be forfeited, and the character of Edward +Hyde become irrevocably mine. The power of the drug had not been always +equally displayed. Once, very early in my career, it had totally failed +me; since then I had been obliged on more than one occasion to double, +and once, with infinite risk of death, to treble the amount; and these +rare uncertainties had cast hitherto the sole shadow on my contentment. +Now, however, and in the light of that morning’s accident, I was led to +remark that whereas, in the beginning, the difficulty had been to throw +off the body of Jekyll, it had of late gradually but decidedly +transferred itself to the other side. All things therefore seemed to +point to this; that I was slowly losing hold of my original and better +self, and becoming slowly incorporated with my second and worse. + +Between these two, I now felt I had to choose. My two natures had +memory in common, but all other faculties were most unequally shared +between them. Jekyll (who was composite) now with the most sensitive +apprehensions, now with a greedy gusto, projected and shared in the +pleasures and adventures of Hyde; but Hyde was indifferent to Jekyll, +or but remembered him as the mountain bandit remembers the cavern in +which he conceals himself from pursuit. Jekyll had more than a father’s +interest; Hyde had more than a son’s indifference. To cast in my lot +with Jekyll, was to die to those appetites which I had long secretly +indulged and had of late begun to pamper. To cast it in with Hyde, was +to die to a thousand interests and aspirations, and to become, at a +blow and forever, despised and friendless. The bargain might appear +unequal; but there was still another consideration in the scales; for +while Jekyll would suffer smartingly in the fires of abstinence, Hyde +would be not even conscious of all that he had lost. Strange as my +circumstances were, the terms of this debate are as old and commonplace +as man; much the same inducements and alarms cast the die for any +tempted and trembling sinner; and it fell out with me, as it falls with +so vast a majority of my fellows, that I chose the better part and was +found wanting in the strength to keep to it. + +Yes, I preferred the elderly and discontented doctor, surrounded by +friends and cherishing honest hopes; and bade a resolute farewell to +the liberty, the comparative youth, the light step, leaping impulses +and secret pleasures, that I had enjoyed in the disguise of Hyde. I +made this choice perhaps with some unconscious reservation, for I +neither gave up the house in Soho, nor destroyed the clothes of Edward +Hyde, which still lay ready in my cabinet. For two months, however, I +was true to my determination; for two months, I led a life of such +severity as I had never before attained to, and enjoyed the +compensations of an approving conscience. But time began at last to +obliterate the freshness of my alarm; the praises of conscience began +to grow into a thing of course; I began to be tortured with throes and +longings, as of Hyde struggling after freedom; and at last, in an hour +of moral weakness, I once again compounded and swallowed the +transforming draught. + +I do not suppose that, when a drunkard reasons with himself upon his +vice, he is once out of five hundred times affected by the dangers that +he runs through his brutish, physical insensibility; neither had I, +long as I had considered my position, made enough allowance for the +complete moral insensibility and insensate readiness to evil, which +were the leading characters of Edward Hyde. Yet it was by these that I +was punished. My devil had been long caged, he came out roaring. I was +conscious, even when I took the draught, of a more unbridled, a more +furious propensity to ill. It must have been this, I suppose, that +stirred in my soul that tempest of impatience with which I listened to +the civilities of my unhappy victim; I declare, at least, before God, +no man morally sane could have been guilty of that crime upon so +pitiful a provocation; and that I struck in no more reasonable spirit +than that in which a sick child may break a plaything. But I had +voluntarily stripped myself of all those balancing instincts by which +even the worst of us continues to walk with some degree of steadiness +among temptations; and in my case, to be tempted, however slightly, was +to fall. + +Instantly the spirit of hell awoke in me and raged. With a transport of +glee, I mauled the unresisting body, tasting delight from every blow; +and it was not till weariness had begun to succeed, that I was +suddenly, in the top fit of my delirium, struck through the heart by a +cold thrill of terror. A mist dispersed; I saw my life to be forfeit; +and fled from the scene of these excesses, at once glorying and +trembling, my lust of evil gratified and stimulated, my love of life +screwed to the topmost peg. I ran to the house in Soho, and (to make +assurance doubly sure) destroyed my papers; thence I set out through +the lamplit streets, in the same divided ecstasy of mind, gloating on +my crime, light-headedly devising others in the future, and yet still +hastening and still hearkening in my wake for the steps of the avenger. +Hyde had a song upon his lips as he compounded the draught, and as he +drank it, pledged the dead man. The pangs of transformation had not +done tearing him, before Henry Jekyll, with streaming tears of +gratitude and remorse, had fallen upon his knees and lifted his clasped +hands to God. The veil of self-indulgence was rent from head to foot. I +saw my life as a whole: I followed it up from the days of childhood, +when I had walked with my father’s hand, and through the self-denying +toils of my professional life, to arrive again and again, with the same +sense of unreality, at the damned horrors of the evening. I could have +screamed aloud; I sought with tears and prayers to smother down the +crowd of hideous images and sounds with which my memory swarmed against +me; and still, between the petitions, the ugly face of my iniquity +stared into my soul. As the acuteness of this remorse began to die +away, it was succeeded by a sense of joy. The problem of my conduct was +solved. Hyde was thenceforth impossible; whether I would or not, I was +now confined to the better part of my existence; and O, how I rejoiced +to think of it! with what willing humility I embraced anew the +restrictions of natural life! with what sincere renunciation I locked +the door by which I had so often gone and come, and ground the key +under my heel! + +The next day, came the news that the murder had not been overlooked, +that the guilt of Hyde was patent to the world, and that the victim was +a man high in public estimation. It was not only a crime, it had been a +tragic folly. I think I was glad to know it; I think I was glad to have +my better impulses thus buttressed and guarded by the terrors of the +scaffold. Jekyll was now my city of refuge; let but Hyde peep out an +instant, and the hands of all men would be raised to take and slay him. + +I resolved in my future conduct to redeem the past; and I can say with +honesty that my resolve was fruitful of some good. You know yourself +how earnestly, in the last months of the last year, I laboured to +relieve suffering; you know that much was done for others, and that the +days passed quietly, almost happily for myself. Nor can I truly say +that I wearied of this beneficent and innocent life; I think instead +that I daily enjoyed it more completely; but I was still cursed with my +duality of purpose; and as the first edge of my penitence wore off, the +lower side of me, so long indulged, so recently chained down, began to +growl for licence. Not that I dreamed of resuscitating Hyde; the bare +idea of that would startle me to frenzy: no, it was in my own person +that I was once more tempted to trifle with my conscience; and it was +as an ordinary secret sinner that I at last fell before the assaults of +temptation. + +There comes an end to all things; the most capacious measure is filled +at last; and this brief condescension to my evil finally destroyed the +balance of my soul. And yet I was not alarmed; the fall seemed natural, +like a return to the old days before I had made my discovery. It was a +fine, clear, January day, wet under foot where the frost had melted, +but cloudless overhead; and the Regent’s Park was full of winter +chirrupings and sweet with spring odours. I sat in the sun on a bench; +the animal within me licking the chops of memory; the spiritual side a +little drowsed, promising subsequent penitence, but not yet moved to +begin. After all, I reflected, I was like my neighbours; and then I +smiled, comparing myself with other men, comparing my active good-will +with the lazy cruelty of their neglect. And at the very moment of that +vainglorious thought, a qualm came over me, a horrid nausea and the +most deadly shuddering. These passed away, and left me faint; and then +as in its turn faintness subsided, I began to be aware of a change in +the temper of my thoughts, a greater boldness, a contempt of danger, a +solution of the bonds of obligation. I looked down; my clothes hung +formlessly on my shrunken limbs; the hand that lay on my knee was +corded and hairy. I was once more Edward Hyde. A moment before I had +been safe of all men’s respect, wealthy, beloved—the cloth laying for +me in the dining-room at home; and now I was the common quarry of +mankind, hunted, houseless, a known murderer, thrall to the gallows. + +My reason wavered, but it did not fail me utterly. I have more than +once observed that in my second character, my faculties seemed +sharpened to a point and my spirits more tensely elastic; thus it came +about that, where Jekyll perhaps might have succumbed, Hyde rose to the +importance of the moment. My drugs were in one of the presses of my +cabinet; how was I to reach them? That was the problem that (crushing +my temples in my hands) I set myself to solve. The laboratory door I +had closed. If I sought to enter by the house, my own servants would +consign me to the gallows. I saw I must employ another hand, and +thought of Lanyon. How was he to be reached? how persuaded? Supposing +that I escaped capture in the streets, how was I to make my way into +his presence? and how should I, an unknown and displeasing visitor, +prevail on the famous physician to rifle the study of his colleague, +Dr. Jekyll? Then I remembered that of my original character, one part +remained to me: I could write my own hand; and once I had conceived +that kindling spark, the way that I must follow became lighted up from +end to end. + +Thereupon, I arranged my clothes as best I could, and summoning a +passing hansom, drove to an hotel in Portland Street, the name of which +I chanced to remember. At my appearance (which was indeed comical +enough, however tragic a fate these garments covered) the driver could +not conceal his mirth. I gnashed my teeth upon him with a gust of +devilish fury; and the smile withered from his face—happily for him—yet +more happily for myself, for in another instant I had certainly dragged +him from his perch. At the inn, as I entered, I looked about me with so +black a countenance as made the attendants tremble; not a look did they +exchange in my presence; but obsequiously took my orders, led me to a +private room, and brought me wherewithal to write. Hyde in danger of +his life was a creature new to me; shaken with inordinate anger, strung +to the pitch of murder, lusting to inflict pain. Yet the creature was +astute; mastered his fury with a great effort of the will; composed his +two important letters, one to Lanyon and one to Poole; and that he +might receive actual evidence of their being posted, sent them out with +directions that they should be registered. Thenceforward, he sat all +day over the fire in the private room, gnawing his nails; there he +dined, sitting alone with his fears, the waiter visibly quailing before +his eye; and thence, when the night was fully come, he set forth in the +corner of a closed cab, and was driven to and fro about the streets of +the city. He, I say—I cannot say, I. That child of Hell had nothing +human; nothing lived in him but fear and hatred. And when at last, +thinking the driver had begun to grow suspicious, he discharged the cab +and ventured on foot, attired in his misfitting clothes, an object +marked out for observation, into the midst of the nocturnal passengers, +these two base passions raged within him like a tempest. He walked +fast, hunted by his fears, chattering to himself, skulking through the +less frequented thoroughfares, counting the minutes that still divided +him from midnight. Once a woman spoke to him, offering, I think, a box +of lights. He smote her in the face, and she fled. + +When I came to myself at Lanyon’s, the horror of my old friend perhaps +affected me somewhat: I do not know; it was at least but a drop in the +sea to the abhorrence with which I looked back upon these hours. A +change had come over me. It was no longer the fear of the gallows, it +was the horror of being Hyde that racked me. I received Lanyon’s +condemnation partly in a dream; it was partly in a dream that I came +home to my own house and got into bed. I slept after the prostration of +the day, with a stringent and profound slumber which not even the +nightmares that wrung me could avail to break. I awoke in the morning +shaken, weakened, but refreshed. I still hated and feared the thought +of the brute that slept within me, and I had not of course forgotten +the appalling dangers of the day before; but I was once more at home, +in my own house and close to my drugs; and gratitude for my escape +shone so strong in my soul that it almost rivalled the brightness of +hope. + +I was stepping leisurely across the court after breakfast, drinking the +chill of the air with pleasure, when I was seized again with those +indescribable sensations that heralded the change; and I had but the +time to gain the shelter of my cabinet, before I was once again raging +and freezing with the passions of Hyde. It took on this occasion a +double dose to recall me to myself; and alas! six hours after, as I sat +looking sadly in the fire, the pangs returned, and the drug had to be +re-administered. In short, from that day forth it seemed only by a +great effort as of gymnastics, and only under the immediate stimulation +of the drug, that I was able to wear the countenance of Jekyll. At all +hours of the day and night, I would be taken with the premonitory +shudder; above all, if I slept, or even dozed for a moment in my chair, +it was always as Hyde that I awakened. Under the strain of this +continually impending doom and by the sleeplessness to which I now +condemned myself, ay, even beyond what I had thought possible to man, I +became, in my own person, a creature eaten up and emptied by fever, +languidly weak both in body and mind, and solely occupied by one +thought: the horror of my other self. But when I slept, or when the +virtue of the medicine wore off, I would leap almost without transition +(for the pangs of transformation grew daily less marked) into the +possession of a fancy brimming with images of terror, a soul boiling +with causeless hatreds, and a body that seemed not strong enough to +contain the raging energies of life. The powers of Hyde seemed to have +grown with the sickliness of Jekyll. And certainly the hate that now +divided them was equal on each side. With Jekyll, it was a thing of +vital instinct. He had now seen the full deformity of that creature +that shared with him some of the phenomena of consciousness, and was +co-heir with him to death: and beyond these links of community, which +in themselves made the most poignant part of his distress, he thought +of Hyde, for all his energy of life, as of something not only hellish +but inorganic. This was the shocking thing; that the slime of the pit +seemed to utter cries and voices; that the amorphous dust gesticulated +and sinned; that what was dead, and had no shape, should usurp the +offices of life. And this again, that that insurgent horror was knit to +him closer than a wife, closer than an eye; lay caged in his flesh, +where he heard it mutter and felt it struggle to be born; and at every +hour of weakness, and in the confidence of slumber, prevailed against +him, and deposed him out of life. The hatred of Hyde for Jekyll was of +a different order. His terror of the gallows drove him continually to +commit temporary suicide, and return to his subordinate station of a +part instead of a person; but he loathed the necessity, he loathed the +despondency into which Jekyll was now fallen, and he resented the +dislike with which he was himself regarded. Hence the ape-like tricks +that he would play me, scrawling in my own hand blasphemies on the +pages of my books, burning the letters and destroying the portrait of +my father; and indeed, had it not been for his fear of death, he would +long ago have ruined himself in order to involve me in the ruin. But +his love of life is wonderful; I go further: I, who sicken and freeze at +the mere thought of him, when I recall the abjection and passion of +this attachment, and when I know how he fears my power to cut him off +by suicide, I find it in my heart to pity him. + +It is useless, and the time awfully fails me, to prolong this +description; no one has ever suffered such torments, let that suffice; +and yet even to these, habit brought—no, not alleviation—but a certain +callousness of soul, a certain acquiescence of despair; and my +punishment might have gone on for years, but for the last calamity +which has now fallen, and which has finally severed me from my own face +and nature. My provision of the salt, which had never been renewed +since the date of the first experiment, began to run low. I sent out +for a fresh supply and mixed the draught; the ebullition followed, and +the first change of colour, not the second; I drank it and it was +without efficiency. You will learn from Poole how I have had London +ransacked; it was in vain; and I am now persuaded that my first supply +was impure, and that it was that unknown impurity which lent efficacy +to the draught. + +About a week has passed, and I am now finishing this statement under +the influence of the last of the old powders. This, then, is the last +time, short of a miracle, that Henry Jekyll can think his own thoughts +or see his own face (now how sadly altered!) in the glass. Nor must I +delay too long to bring my writing to an end; for if my narrative has +hitherto escaped destruction, it has been by a combination of great +prudence and great good luck. Should the throes of change take me in +the act of writing it, Hyde will tear it in pieces; but if some time +shall have elapsed after I have laid it by, his wonderful selfishness +and circumscription to the moment will probably save it once again from +the action of his ape-like spite. And indeed the doom that is closing +on us both has already changed and crushed him. Half an hour from now, +when I shall again and forever reindue that hated personality, I know +how I shall sit shuddering and weeping in my chair, or continue, with +the most strained and fearstruck ecstasy of listening, to pace up and +down this room (my last earthly refuge) and give ear to every sound of +menace. Will Hyde die upon the scaffold? or will he find courage to +release himself at the last moment? God knows; I am careless; this is +my true hour of death, and what is to follow concerns another than +myself. Here then, as I lay down the pen and proceed to seal up my +confession, I bring the life of that unhappy Henry Jekyll to an end. + + + + diff --git a/chapters/hello.py b/chapters/hello.py new file mode 100644 index 00000000..ce47b771 --- /dev/null +++ b/chapters/hello.py @@ -0,0 +1 @@ +print("hello") \ No newline at end of file diff --git a/chapters/pg43.txt b/chapters/pg43.txt new file mode 100644 index 00000000..37715e82 --- /dev/null +++ b/chapters/pg43.txt @@ -0,0 +1,2930 @@ +The Project Gutenberg eBook of The Strange Case of Dr. Jekyll and Mr. Hyde + +This ebook is for the use of anyone anywhere in the United States and +most other parts of the world at no cost and with almost no restrictions +whatsoever. You may copy it, give it away or re-use it under the terms +of the Project Gutenberg License included with this ebook or online +at www.gutenberg.org. If you are not located in the United States, +you will have to check the laws of the country where you are located +before using this eBook. + +Title: The Strange Case of Dr. Jekyll and Mr. Hyde + +Author: Robert Louis Stevenson + +Release date: June 27, 2008 [eBook #43] + Most recently updated: April 12, 2025 + +Language: English + +Credits: David Widger + + +*** START OF THE PROJECT GUTENBERG EBOOK THE STRANGE CASE OF DR. JEKYLL AND MR. HYDE *** + +The Strange Case Of Dr. Jekyll And Mr. Hyde + +by Robert Louis Stevenson + + +Contents + + + STORY OF THE DOOR + + SEARCH FOR MR. HYDE + + DR. JEKYLL WAS QUITE AT EASE + + THE CAREW MURDER CASE + + INCIDENT OF THE LETTER + + INCIDENT OF DR. LANYON + + INCIDENT AT THE WINDOW + + THE LAST NIGHT + + DR. LANYON’S NARRATIVE + + HENRY JEKYLL’S FULL STATEMENT OF THE CASE + + +STORY OF THE DOOR + +Mr. Utterson the lawyer was a man of a rugged countenance that was +never lighted by a smile; cold, scanty and embarrassed in discourse; +backward in sentiment; lean, long, dusty, dreary and yet somehow +lovable. At friendly meetings, and when the wine was to his taste, +something eminently human beaconed from his eye; something indeed which +never found its way into his talk, but which spoke not only in these +silent symbols of the after-dinner face, but more often and loudly in +the acts of his life. He was austere with himself; drank gin when he +was alone, to mortify a taste for vintages; and though he enjoyed the +theatre, had not crossed the doors of one for twenty years. But he had +an approved tolerance for others; sometimes wondering, almost with +envy, at the high pressure of spirits involved in their misdeeds; and +in any extremity inclined to help rather than to reprove. “I incline to +Cain’s heresy,” he used to say quaintly: “I let my brother go to the +devil in his own way.” In this character, it was frequently his fortune +to be the last reputable acquaintance and the last good influence in +the lives of downgoing men. And to such as these, so long as they came +about his chambers, he never marked a shade of change in his demeanour. + +No doubt the feat was easy to Mr. Utterson; for he was undemonstrative +at the best, and even his friendship seemed to be founded in a similar +catholicity of good-nature. It is the mark of a modest man to accept +his friendly circle ready-made from the hands of opportunity; and that +was the lawyer’s way. His friends were those of his own blood or those +whom he had known the longest; his affections, like ivy, were the +growth of time, they implied no aptness in the object. Hence, no doubt +the bond that united him to Mr. Richard Enfield, his distant kinsman, +the well-known man about town. It was a nut to crack for many, what +these two could see in each other, or what subject they could find in +common. It was reported by those who encountered them in their Sunday +walks, that they said nothing, looked singularly dull and would hail +with obvious relief the appearance of a friend. For all that, the two +men put the greatest store by these excursions, counted them the chief +jewel of each week, and not only set aside occasions of pleasure, but +even resisted the calls of business, that they might enjoy them +uninterrupted. + +It chanced on one of these rambles that their way led them down a +by-street in a busy quarter of London. The street was small and what is +called quiet, but it drove a thriving trade on the weekdays. The +inhabitants were all doing well, it seemed, and all emulously hoping to +do better still, and laying out the surplus of their gains in coquetry; +so that the shop fronts stood along that thoroughfare with an air of +invitation, like rows of smiling saleswomen. Even on Sunday, when it +veiled its more florid charms and lay comparatively empty of passage, +the street shone out in contrast to its dingy neighbourhood, like a fire +in a forest; and with its freshly painted shutters, well-polished +brasses, and general cleanliness and gaiety of note, instantly caught +and pleased the eye of the passenger. + +Two doors from one corner, on the left hand going east the line was +broken by the entry of a court; and just at that point a certain +sinister block of building thrust forward its gable on the street. It +was two storeys high; showed no window, nothing but a door on the lower +storey and a blind forehead of discoloured wall on the upper; and bore +in every feature, the marks of prolonged and sordid negligence. The +door, which was equipped with neither bell nor knocker, was blistered +and distained. Tramps slouched into the recess and struck matches on +the panels; children kept shop upon the steps; the schoolboy had tried +his knife on the mouldings; and for close on a generation, no one had +appeared to drive away these random visitors or to repair their +ravages. + +Mr. Enfield and the lawyer were on the other side of the by-street; but +when they came abreast of the entry, the former lifted up his cane and +pointed. + +“Did you ever remark that door?” he asked; and when his companion had +replied in the affirmative, “It is connected in my mind,” added he, +“with a very odd story.” + +“Indeed?” said Mr. Utterson, with a slight change of voice, “and what +was that?” + +“Well, it was this way,” returned Mr. Enfield: “I was coming home from +some place at the end of the world, about three o’clock of a black +winter morning, and my way lay through a part of town where there was +literally nothing to be seen but lamps. Street after street and all the +folks asleep—street after street, all lighted up as if for a procession +and all as empty as a church—till at last I got into that state of mind +when a man listens and listens and begins to long for the sight of a +policeman. All at once, I saw two figures: one a little man who was +stumping along eastward at a good walk, and the other a girl of maybe +eight or ten who was running as hard as she was able down a cross +street. Well, sir, the two ran into one another naturally enough at the +corner; and then came the horrible part of the thing; for the man +trampled calmly over the child’s body and left her screaming on the +ground. It sounds nothing to hear, but it was hellish to see. It wasn’t +like a man; it was like some damned Juggernaut. I gave a few halloa, +took to my heels, collared my gentleman, and brought him back to where +there was already quite a group about the screaming child. He was +perfectly cool and made no resistance, but gave me one look, so ugly +that it brought out the sweat on me like running. The people who had +turned out were the girl’s own family; and pretty soon, the doctor, for +whom she had been sent, put in his appearance. Well, the child was not +much the worse, more frightened, according to the sawbones; and there +you might have supposed would be an end to it. But there was one +curious circumstance. I had taken a loathing to my gentleman at first +sight. So had the child’s family, which was only natural. But the +doctor’s case was what struck me. He was the usual cut and dry +apothecary, of no particular age and colour, with a strong Edinburgh +accent and about as emotional as a bagpipe. Well, sir, he was like the +rest of us; every time he looked at my prisoner, I saw that sawbones +turn sick and white with the desire to kill him. I knew what was in his +mind, just as he knew what was in mine; and killing being out of the +question, we did the next best. We told the man we could and would make +such a scandal out of this as should make his name stink from one end +of London to the other. If he had any friends or any credit, we +undertook that he should lose them. And all the time, as we were +pitching it in red hot, we were keeping the women off him as best we +could for they were as wild as harpies. I never saw a circle of such +hateful faces; and there was the man in the middle, with a kind of +black sneering coolness—frightened too, I could see that—but carrying +it off, sir, really like Satan. ‘If you choose to make capital out of +this accident,’ said he, ‘I am naturally helpless. No gentleman but +wishes to avoid a scene,’ says he. ‘Name your figure.’ Well, we screwed +him up to a hundred pounds for the child’s family; he would have +clearly liked to stick out; but there was something about the lot of us +that meant mischief, and at last he struck. The next thing was to get +the money; and where do you think he carried us but to that place with +the door?—whipped out a key, went in, and presently came back with the +matter of ten pounds in gold and a cheque for the balance on Coutts’s, +drawn payable to bearer and signed with a name that I can’t mention, +though it’s one of the points of my story, but it was a name at least +very well known and often printed. The figure was stiff; but the +signature was good for more than that if it was only genuine. I took +the liberty of pointing out to my gentleman that the whole business +looked apocryphal, and that a man does not, in real life, walk into a +cellar door at four in the morning and come out with another man’s +cheque for close upon a hundred pounds. But he was quite easy and +sneering. ‘Set your mind at rest,’ says he, ‘I will stay with you till +the banks open and cash the cheque myself.’ So we all set off, the +doctor, and the child’s father, and our friend and myself, and passed +the rest of the night in my chambers; and next day, when we had +breakfasted, went in a body to the bank. I gave in the cheque myself, +and said I had every reason to believe it was a forgery. Not a bit of +it. The cheque was genuine.” + +“Tut-tut!” said Mr. Utterson. + +“I see you feel as I do,” said Mr. Enfield. “Yes, it’s a bad story. For +my man was a fellow that nobody could have to do with, a really +damnable man; and the person that drew the cheque is the very pink of +the proprieties, celebrated too, and (what makes it worse) one of your +fellows who do what they call good. Blackmail, I suppose; an honest man +paying through the nose for some of the capers of his youth. Black Mail +House is what I call the place with the door, in consequence. Though +even that, you know, is far from explaining all,” he added, and with +the words fell into a vein of musing. + +From this he was recalled by Mr. Utterson asking rather suddenly: “And +you don’t know if the drawer of the cheque lives there?” + +“A likely place, isn’t it?” returned Mr. Enfield. “But I happen to have +noticed his address; he lives in some square or other.” + +“And you never asked about the—place with the door?” said Mr. Utterson. + +“No, sir; I had a delicacy,” was the reply. “I feel very strongly about +putting questions; it partakes too much of the style of the day of +judgment. You start a question, and it’s like starting a stone. You sit +quietly on the top of a hill; and away the stone goes, starting others; +and presently some bland old bird (the last you would have thought of) +is knocked on the head in his own back garden and the family have to +change their name. No sir, I make it a rule of mine: the more it looks +like Queer Street, the less I ask.” + +“A very good rule, too,” said the lawyer. + +“But I have studied the place for myself,” continued Mr. Enfield. “It +seems scarcely a house. There is no other door, and nobody goes in or +out of that one but, once in a great while, the gentleman of my +adventure. There are three windows looking on the court on the first +floor; none below; the windows are always shut but they’re clean. And +then there is a chimney which is generally smoking; so somebody must +live there. And yet it’s not so sure; for the buildings are so packed +together about the court, that it’s hard to say where one ends and +another begins.” + +The pair walked on again for a while in silence; and then “Enfield,” +said Mr. Utterson, “that’s a good rule of yours.” + +“Yes, I think it is,” returned Enfield. + +“But for all that,” continued the lawyer, “there’s one point I want to +ask. I want to ask the name of that man who walked over the child.” + +“Well,” said Mr. Enfield, “I can’t see what harm it would do. It was a +man of the name of Hyde.” + +“Hm,” said Mr. Utterson. “What sort of a man is he to see?” + +“He is not easy to describe. There is something wrong with his +appearance; something displeasing, something down-right detestable. I +never saw a man I so disliked, and yet I scarce know why. He must be +deformed somewhere; he gives a strong feeling of deformity, although I +couldn’t specify the point. He’s an extraordinary looking man, and yet +I really can name nothing out of the way. No, sir; I can make no hand +of it; I can’t describe him. And it’s not want of memory; for I declare +I can see him this moment.” + +Mr. Utterson again walked some way in silence and obviously under a +weight of consideration. “You are sure he used a key?” he inquired at +last. + +“My dear sir...” began Enfield, surprised out of himself. + +“Yes, I know,” said Utterson; “I know it must seem strange. The fact +is, if I do not ask you the name of the other party, it is because I +know it already. You see, Richard, your tale has gone home. If you have +been inexact in any point you had better correct it.” + +“I think you might have warned me,” returned the other with a touch of +sullenness. “But I have been pedantically exact, as you call it. The +fellow had a key; and what’s more, he has it still. I saw him use it +not a week ago.” + +Mr. Utterson sighed deeply but said never a word; and the young man +presently resumed. “Here is another lesson to say nothing,” said he. “I +am ashamed of my long tongue. Let us make a bargain never to refer to +this again.” + +“With all my heart,” said the lawyer. “I shake hands on that, Richard.” + + + +SEARCH FOR MR. HYDE + +That evening Mr. Utterson came home to his bachelor house in sombre +spirits and sat down to dinner without relish. It was his custom of a +Sunday, when this meal was over, to sit close by the fire, a volume of +some dry divinity on his reading desk, until the clock of the +neighbouring church rang out the hour of twelve, when he would go +soberly and gratefully to bed. On this night however, as soon as the +cloth was taken away, he took up a candle and went into his business +room. There he opened his safe, took from the most private part of it a +document endorsed on the envelope as Dr. Jekyll’s Will and sat down +with a clouded brow to study its contents. The will was holograph, for +Mr. Utterson though he took charge of it now that it was made, had +refused to lend the least assistance in the making of it; it provided +not only that, in case of the decease of Henry Jekyll, M.D., D.C.L., +L.L.D., F.R.S., etc., all his possessions were to pass into the hands +of his “friend and benefactor Edward Hyde,” but that in case of Dr. +Jekyll’s “disappearance or unexplained absence for any period exceeding +three calendar months,” the said Edward Hyde should step into the said +Henry Jekyll’s shoes without further delay and free from any burthen or +obligation beyond the payment of a few small sums to the members of the +doctor’s household. This document had long been the lawyer’s eyesore. +It offended him both as a lawyer and as a lover of the sane and +customary sides of life, to whom the fanciful was the immodest. And +hitherto it was his ignorance of Mr. Hyde that had swelled his +indignation; now, by a sudden turn, it was his knowledge. It was +already bad enough when the name was but a name of which he could learn +no more. It was worse when it began to be clothed upon with detestable +attributes; and out of the shifting, insubstantial mists that had so +long baffled his eye, there leaped up the sudden, definite presentment +of a fiend. + +“I thought it was madness,” he said, as he replaced the obnoxious paper +in the safe, “and now I begin to fear it is disgrace.” + +With that he blew out his candle, put on a greatcoat, and set forth in +the direction of Cavendish Square, that citadel of medicine, where his +friend, the great Dr. Lanyon, had his house and received his crowding +patients. “If anyone knows, it will be Lanyon,” he had thought. + +The solemn butler knew and welcomed him; he was subjected to no stage +of delay, but ushered direct from the door to the dining-room where Dr. +Lanyon sat alone over his wine. This was a hearty, healthy, dapper, +red-faced gentleman, with a shock of hair prematurely white, and a +boisterous and decided manner. At sight of Mr. Utterson, he sprang up +from his chair and welcomed him with both hands. The geniality, as was +the way of the man, was somewhat theatrical to the eye; but it reposed +on genuine feeling. For these two were old friends, old mates both at +school and college, both thorough respectors of themselves and of each +other, and what does not always follow, men who thoroughly enjoyed each +other’s company. + +After a little rambling talk, the lawyer led up to the subject which so +disagreeably preoccupied his mind. + +“I suppose, Lanyon,” said he, “you and I must be the two oldest friends +that Henry Jekyll has?” + +“I wish the friends were younger,” chuckled Dr. Lanyon. “But I suppose +we are. And what of that? I see little of him now.” + +“Indeed?” said Utterson. “I thought you had a bond of common interest.” + +“We had,” was the reply. “But it is more than ten years since Henry +Jekyll became too fanciful for me. He began to go wrong, wrong in mind; +and though of course I continue to take an interest in him for old +sake’s sake, as they say, I see and I have seen devilish little of the +man. Such unscientific balderdash,” added the doctor, flushing suddenly +purple, “would have estranged Damon and Pythias.” + +This little spirit of temper was somewhat of a relief to Mr. Utterson. +“They have only differed on some point of science,” he thought; and +being a man of no scientific passions (except in the matter of +conveyancing), he even added: “It is nothing worse than that!” He gave +his friend a few seconds to recover his composure, and then approached +the question he had come to put. “Did you ever come across a _protégé_ +of his—one Hyde?” he asked. + +“Hyde?” repeated Lanyon. “No. Never heard of him. Since my time.” + +That was the amount of information that the lawyer carried back with +him to the great, dark bed on which he tossed to and fro, until the +small hours of the morning began to grow large. It was a night of +little ease to his toiling mind, toiling in mere darkness and besieged +by questions. + +Six o’clock struck on the bells of the church that was so conveniently +near to Mr. Utterson’s dwelling, and still he was digging at the +problem. Hitherto it had touched him on the intellectual side alone; +but now his imagination also was engaged, or rather enslaved; and as he +lay and tossed in the gross darkness of the night and the curtained +room, Mr. Enfield’s tale went by before his mind in a scroll of lighted +pictures. He would be aware of the great field of lamps of a nocturnal +city; then of the figure of a man walking swiftly; then of a child +running from the doctor’s; and then these met, and that human +Juggernaut trod the child down and passed on regardless of her screams. +Or else he would see a room in a rich house, where his friend lay +asleep, dreaming and smiling at his dreams; and then the door of that +room would be opened, the curtains of the bed plucked apart, the +sleeper recalled, and lo! there would stand by his side a figure to +whom power was given, and even at that dead hour, he must rise and do +its bidding. The figure in these two phases haunted the lawyer all +night; and if at any time he dozed over, it was but to see it glide +more stealthily through sleeping houses, or move the more swiftly and +still the more swiftly, even to dizziness, through wider labyrinths of +lamplighted city, and at every street corner crush a child and leave +her screaming. And still the figure had no face by which he might know +it; even in his dreams, it had no face, or one that baffled him and +melted before his eyes; and thus it was that there sprang up and grew +apace in the lawyer’s mind a singularly strong, almost an inordinate, +curiosity to behold the features of the real Mr. Hyde. If he could but +once set eyes on him, he thought the mystery would lighten and perhaps +roll altogether away, as was the habit of mysterious things when well +examined. He might see a reason for his friend’s strange preference or +bondage (call it which you please) and even for the startling clause of +the will. At least it would be a face worth seeing: the face of a man +who was without bowels of mercy: a face which had but to show itself to +raise up, in the mind of the unimpressionable Enfield, a spirit of +enduring hatred. + +From that time forward, Mr. Utterson began to haunt the door in the +by-street of shops. In the morning before office hours, at noon when +business was plenty and time scarce, at night under the face of the +fogged city moon, by all lights and at all hours of solitude or +concourse, the lawyer was to be found on his chosen post. + +“If he be Mr. Hyde,” he had thought, “I shall be Mr. Seek.” + +And at last his patience was rewarded. It was a fine dry night; frost +in the air; the streets as clean as a ballroom floor; the lamps, +unshaken by any wind, drawing a regular pattern of light and shadow. By +ten o’clock, when the shops were closed, the by-street was very +solitary and, in spite of the low growl of London from all round, very +silent. Small sounds carried far; domestic sounds out of the houses +were clearly audible on either side of the roadway; and the rumour of +the approach of any passenger preceded him by a long time. Mr. Utterson +had been some minutes at his post, when he was aware of an odd light +footstep drawing near. In the course of his nightly patrols, he had +long grown accustomed to the quaint effect with which the footfalls of +a single person, while he is still a great way off, suddenly spring out +distinct from the vast hum and clatter of the city. Yet his attention +had never before been so sharply and decisively arrested; and it was +with a strong, superstitious prevision of success that he withdrew into +the entry of the court. + +The steps drew swiftly nearer, and swelled out suddenly louder as they +turned the end of the street. The lawyer, looking forth from the entry, +could soon see what manner of man he had to deal with. He was small and +very plainly dressed and the look of him, even at that distance, went +somehow strongly against the watcher’s inclination. But he made +straight for the door, crossing the roadway to save time; and as he +came, he drew a key from his pocket like one approaching home. + +Mr. Utterson stepped out and touched him on the shoulder as he passed. +“Mr. Hyde, I think?” + +Mr. Hyde shrank back with a hissing intake of the breath. But his fear +was only momentary; and though he did not look the lawyer in the face, +he answered coolly enough: “That is my name. What do you want?” + +“I see you are going in,” returned the lawyer. “I am an old friend of +Dr. Jekyll’s—Mr. Utterson of Gaunt Street—you must have heard of my +name; and meeting you so conveniently, I thought you might admit me.” + +“You will not find Dr. Jekyll; he is from home,” replied Mr. Hyde, +blowing in the key. And then suddenly, but still without looking up, +“How did you know me?” he asked. + +“On your side,” said Mr. Utterson “will you do me a favour?” + +“With pleasure,” replied the other. “What shall it be?” + +“Will you let me see your face?” asked the lawyer. + +Mr. Hyde appeared to hesitate, and then, as if upon some sudden +reflection, fronted about with an air of defiance; and the pair stared +at each other pretty fixedly for a few seconds. “Now I shall know you +again,” said Mr. Utterson. “It may be useful.” + +“Yes,” returned Mr. Hyde, “it is as well we have met; and _à propos_, +you should have my address.” And he gave a number of a street in Soho. + +“Good God!” thought Mr. Utterson, “can he, too, have been thinking of +the will?” But he kept his feelings to himself and only grunted in +acknowledgment of the address. + +“And now,” said the other, “how did you know me?” + +“By description,” was the reply. + +“Whose description?” + +“We have common friends,” said Mr. Utterson. + +“Common friends,” echoed Mr. Hyde, a little hoarsely. “Who are they?” + +“Jekyll, for instance,” said the lawyer. + +“He never told you,” cried Mr. Hyde, with a flush of anger. “I did not +think you would have lied.” + +“Come,” said Mr. Utterson, “that is not fitting language.” + +The other snarled aloud into a savage laugh; and the next moment, with +extraordinary quickness, he had unlocked the door and disappeared into +the house. + +The lawyer stood awhile when Mr. Hyde had left him, the picture of +disquietude. Then he began slowly to mount the street, pausing every +step or two and putting his hand to his brow like a man in mental +perplexity. The problem he was thus debating as he walked, was one of a +class that is rarely solved. Mr. Hyde was pale and dwarfish, he gave an +impression of deformity without any nameable malformation, he had a +displeasing smile, he had borne himself to the lawyer with a sort of +murderous mixture of timidity and boldness, and he spoke with a husky, +whispering and somewhat broken voice; all these were points against +him, but not all of these together could explain the hitherto unknown +disgust, loathing and fear with which Mr. Utterson regarded him. “There +must be something else,” said the perplexed gentleman. “There _is_ +something more, if I could find a name for it. God bless me, the man +seems hardly human! Something troglodytic, shall we say? or can it be +the old story of Dr. Fell? or is it the mere radiance of a foul soul +that thus transpires through, and transfigures, its clay continent? The +last, I think; for, O my poor old Harry Jekyll, if ever I read Satan’s +signature upon a face, it is on that of your new friend.” + +Round the corner from the by-street, there was a square of ancient, +handsome houses, now for the most part decayed from their high estate +and let in flats and chambers to all sorts and conditions of men; +map-engravers, architects, shady lawyers and the agents of obscure +enterprises. One house, however, second from the corner, was still +occupied entire; and at the door of this, which wore a great air of +wealth and comfort, though it was now plunged in darkness except for +the fanlight, Mr. Utterson stopped and knocked. A well-dressed, elderly +servant opened the door. + +“Is Dr. Jekyll at home, Poole?” asked the lawyer. + +“I will see, Mr. Utterson,” said Poole, admitting the visitor, as he +spoke, into a large, low-roofed, comfortable hall paved with flags, +warmed (after the fashion of a country house) by a bright, open fire, +and furnished with costly cabinets of oak. “Will you wait here by the +fire, sir? or shall I give you a light in the dining-room?” + +“Here, thank you,” said the lawyer, and he drew near and leaned on the +tall fender. This hall, in which he was now left alone, was a pet fancy +of his friend the doctor’s; and Utterson himself was wont to speak of +it as the pleasantest room in London. But tonight there was a shudder +in his blood; the face of Hyde sat heavy on his memory; he felt (what +was rare with him) a nausea and distaste of life; and in the gloom of +his spirits, he seemed to read a menace in the flickering of the +firelight on the polished cabinets and the uneasy starting of the +shadow on the roof. He was ashamed of his relief, when Poole presently +returned to announce that Dr. Jekyll was gone out. + +“I saw Mr. Hyde go in by the old dissecting room, Poole,” he said. “Is +that right, when Dr. Jekyll is from home?” + +“Quite right, Mr. Utterson, sir,” replied the servant. “Mr. Hyde has a +key.” + +“Your master seems to repose a great deal of trust in that young man, +Poole,” resumed the other musingly. + +“Yes, sir, he does indeed,” said Poole. “We have all orders to obey +him.” + +“I do not think I ever met Mr. Hyde?” asked Utterson. + +“O, dear no, sir. He never _dines_ here,” replied the butler. “Indeed +we see very little of him on this side of the house; he mostly comes +and goes by the laboratory.” + +“Well, good-night, Poole.” + +“Good-night, Mr. Utterson.” + +And the lawyer set out homeward with a very heavy heart. “Poor Harry +Jekyll,” he thought, “my mind misgives me he is in deep waters! He was +wild when he was young; a long while ago to be sure; but in the law of +God, there is no statute of limitations. Ay, it must be that; the ghost +of some old sin, the cancer of some concealed disgrace: punishment +coming, _pede claudo_, years after memory has forgotten and self-love +condoned the fault.” And the lawyer, scared by the thought, brooded +awhile on his own past, groping in all the corners of memory, lest by +chance some Jack-in-the-Box of an old iniquity should leap to light +there. His past was fairly blameless; few men could read the rolls of +their life with less apprehension; yet he was humbled to the dust by +the many ill things he had done, and raised up again into a sober and +fearful gratitude by the many he had come so near to doing yet avoided. +And then by a return on his former subject, he conceived a spark of +hope. “This Master Hyde, if he were studied,” thought he, “must have +secrets of his own; black secrets, by the look of him; secrets compared +to which poor Jekyll’s worst would be like sunshine. Things cannot +continue as they are. It turns me cold to think of this creature +stealing like a thief to Harry’s bedside; poor Harry, what a wakening! +And the danger of it; for if this Hyde suspects the existence of the +will, he may grow impatient to inherit. Ay, I must put my shoulders to +the wheel—if Jekyll will but let me,” he added, “if Jekyll will only +let me.” For once more he saw before his mind’s eye, as clear as +transparency, the strange clauses of the will. + + + +DR. JEKYLL WAS QUITE AT EASE + +A fortnight later, by excellent good fortune, the doctor gave one of +his pleasant dinners to some five or six old cronies, all intelligent, +reputable men and all judges of good wine; and Mr. Utterson so +contrived that he remained behind after the others had departed. This +was no new arrangement, but a thing that had befallen many scores of +times. Where Utterson was liked, he was liked well. Hosts loved to +detain the dry lawyer, when the light-hearted and loose-tongued had +already their foot on the threshold; they liked to sit a while in his +unobtrusive company, practising for solitude, sobering their minds in +the man’s rich silence after the expense and strain of gaiety. To this +rule, Dr. Jekyll was no exception; and as he now sat on the opposite +side of the fire—a large, well-made, smooth-faced man of fifty, with +something of a slyish cast perhaps, but every mark of capacity and +kindness—you could see by his looks that he cherished for Mr. Utterson +a sincere and warm affection. + +“I have been wanting to speak to you, Jekyll,” began the latter. “You +know that will of yours?” + +A close observer might have gathered that the topic was distasteful; +but the doctor carried it off gaily. “My poor Utterson,” said he, “you +are unfortunate in such a client. I never saw a man so distressed as +you were by my will; unless it were that hide-bound pedant, Lanyon, at +what he called my scientific heresies. O, I know he’s a good fellow—you +needn’t frown—an excellent fellow, and I always mean to see more of +him; but a hide-bound pedant for all that; an ignorant, blatant pedant. +I was never more disappointed in any man than Lanyon.” + +“You know I never approved of it,” pursued Utterson, ruthlessly +disregarding the fresh topic. + +“My will? Yes, certainly, I know that,” said the doctor, a trifle +sharply. “You have told me so.” + +“Well, I tell you so again,” continued the lawyer. “I have been +learning something of young Hyde.” + +The large handsome face of Dr. Jekyll grew pale to the very lips, and +there came a blackness about his eyes. “I do not care to hear more,” +said he. “This is a matter I thought we had agreed to drop.” + +“What I heard was abominable,” said Utterson. + +“It can make no change. You do not understand my position,” returned +the doctor, with a certain incoherency of manner. “I am painfully +situated, Utterson; my position is a very strange—a very strange one. +It is one of those affairs that cannot be mended by talking.” + +“Jekyll,” said Utterson, “you know me: I am a man to be trusted. Make a +clean breast of this in confidence; and I make no doubt I can get you +out of it.” + +“My good Utterson,” said the doctor, “this is very good of you, this is +downright good of you, and I cannot find words to thank you in. I +believe you fully; I would trust you before any man alive, ay, before +myself, if I could make the choice; but indeed it isn’t what you fancy; +it is not as bad as that; and just to put your good heart at rest, I +will tell you one thing: the moment I choose, I can be rid of Mr. Hyde. +I give you my hand upon that; and I thank you again and again; and I +will just add one little word, Utterson, that I’m sure you’ll take in +good part: this is a private matter, and I beg of you to let it sleep.” + +Utterson reflected a little, looking in the fire. + +“I have no doubt you are perfectly right,” he said at last, getting to +his feet. + +“Well, but since we have touched upon this business, and for the last +time I hope,” continued the doctor, “there is one point I should like +you to understand. I have really a very great interest in poor Hyde. I +know you have seen him; he told me so; and I fear he was rude. But I do +sincerely take a great, a very great interest in that young man; and if +I am taken away, Utterson, I wish you to promise me that you will bear +with him and get his rights for him. I think you would, if you knew +all; and it would be a weight off my mind if you would promise.” + +“I can’t pretend that I shall ever like him,” said the lawyer. + +“I don’t ask that,” pleaded Jekyll, laying his hand upon the other’s +arm; “I only ask for justice; I only ask you to help him for my sake, +when I am no longer here.” + +Utterson heaved an irrepressible sigh. “Well,” said he, “I promise.” + + + +THE CAREW MURDER CASE + +Nearly a year later, in the month of October, 18—, London was startled +by a crime of singular ferocity and rendered all the more notable by +the high position of the victim. The details were few and startling. A +maid servant living alone in a house not far from the river, had gone +upstairs to bed about eleven. Although a fog rolled over the city in +the small hours, the early part of the night was cloudless, and the +lane, which the maid’s window overlooked, was brilliantly lit by the +full moon. It seems she was romantically given, for she sat down upon +her box, which stood immediately under the window, and fell into a +dream of musing. Never (she used to say, with streaming tears, when she +narrated that experience), never had she felt more at peace with all +men or thought more kindly of the world. And as she so sat she became +aware of an aged beautiful gentleman with white hair, drawing near +along the lane; and advancing to meet him, another and very small +gentleman, to whom at first she paid less attention. When they had come +within speech (which was just under the maid’s eyes) the older man +bowed and accosted the other with a very pretty manner of politeness. +It did not seem as if the subject of his address were of great +importance; indeed, from his pointing, it sometimes appeared as if he +were only inquiring his way; but the moon shone on his face as he +spoke, and the girl was pleased to watch it, it seemed to breathe such +an innocent and old-world kindness of disposition, yet with something +high too, as of a well-founded self-content. Presently her eye wandered +to the other, and she was surprised to recognise in him a certain Mr. +Hyde, who had once visited her master and for whom she had conceived a +dislike. He had in his hand a heavy cane, with which he was trifling; +but he answered never a word, and seemed to listen with an +ill-contained impatience. And then all of a sudden he broke out in a +great flame of anger, stamping with his foot, brandishing the cane, and +carrying on (as the maid described it) like a madman. The old gentleman +took a step back, with the air of one very much surprised and a trifle +hurt; and at that Mr. Hyde broke out of all bounds and clubbed him to +the earth. And next moment, with ape-like fury, he was trampling his +victim under foot and hailing down a storm of blows, under which the +bones were audibly shattered and the body jumped upon the roadway. At +the horror of these sights and sounds, the maid fainted. + +It was two o’clock when she came to herself and called for the police. +The murderer was gone long ago; but there lay his victim in the middle +of the lane, incredibly mangled. The stick with which the deed had been +done, although it was of some rare and very tough and heavy wood, had +broken in the middle under the stress of this insensate cruelty; and +one splintered half had rolled in the neighbouring gutter—the other, +without doubt, had been carried away by the murderer. A purse and gold +watch were found upon the victim: but no cards or papers, except a +sealed and stamped envelope, which he had been probably carrying to the +post, and which bore the name and address of Mr. Utterson. + +This was brought to the lawyer the next morning, before he was out of +bed; and he had no sooner seen it and been told the circumstances, than +he shot out a solemn lip. “I shall say nothing till I have seen the +body,” said he; “this may be very serious. Have the kindness to wait +while I dress.” And with the same grave countenance he hurried through +his breakfast and drove to the police station, whither the body had +been carried. As soon as he came into the cell, he nodded. + +“Yes,” said he, “I recognise him. I am sorry to say that this is Sir +Danvers Carew.” + +“Good God, sir,” exclaimed the officer, “is it possible?” And the next +moment his eye lighted up with professional ambition. “This will make a +deal of noise,” he said. “And perhaps you can help us to the man.” And +he briefly narrated what the maid had seen, and showed the broken +stick. + +Mr. Utterson had already quailed at the name of Hyde; but when the +stick was laid before him, he could doubt no longer; broken and +battered as it was, he recognised it for one that he had himself +presented many years before to Henry Jekyll. + +“Is this Mr. Hyde a person of small stature?” he inquired. + +“Particularly small and particularly wicked-looking, is what the maid +calls him,” said the officer. + +Mr. Utterson reflected; and then, raising his head, “If you will come +with me in my cab,” he said, “I think I can take you to his house.” + +It was by this time about nine in the morning, and the first fog of the +season. A great chocolate-coloured pall lowered over heaven, but the +wind was continually charging and routing these embattled vapours; so +that as the cab crawled from street to street, Mr. Utterson beheld a +marvelous number of degrees and hues of twilight; for here it would be +dark like the back-end of evening; and there would be a glow of a rich, +lurid brown, like the light of some strange conflagration; and here, +for a moment, the fog would be quite broken up, and a haggard shaft of +daylight would glance in between the swirling wreaths. The dismal +quarter of Soho seen under these changing glimpses, with its muddy +ways, and slatternly passengers, and its lamps, which had never been +extinguished or had been kindled afresh to combat this mournful +reinvasion of darkness, seemed, in the lawyer’s eyes, like a district +of some city in a nightmare. The thoughts of his mind, besides, were of +the gloomiest dye; and when he glanced at the companion of his drive, +he was conscious of some touch of that terror of the law and the law’s +officers, which may at times assail the most honest. + +As the cab drew up before the address indicated, the fog lifted a +little and showed him a dingy street, a gin palace, a low French eating +house, a shop for the retail of penny numbers and twopenny salads, many +ragged children huddled in the doorways, and many women of many +different nationalities passing out, key in hand, to have a morning +glass; and the next moment the fog settled down again upon that part, +as brown as umber, and cut him off from his blackguardly surroundings. +This was the home of Henry Jekyll’s favourite; of a man who was heir to +a quarter of a million sterling. + +An ivory-faced and silvery-haired old woman opened the door. She had an +evil face, smoothed by hypocrisy: but her manners were excellent. Yes, +she said, this was Mr. Hyde’s, but he was not at home; he had been in +that night very late, but he had gone away again in less than an hour; +there was nothing strange in that; his habits were very irregular, and +he was often absent; for instance, it was nearly two months since she +had seen him till yesterday. + +“Very well, then, we wish to see his rooms,” said the lawyer; and when +the woman began to declare it was impossible, “I had better tell you +who this person is,” he added. “This is Inspector Newcomen of Scotland +Yard.” + +A flash of odious joy appeared upon the woman’s face. “Ah!” said she, +“he is in trouble! What has he done?” + +Mr. Utterson and the inspector exchanged glances. “He don’t seem a very +popular character,” observed the latter. “And now, my good woman, just +let me and this gentleman have a look about us.” + +In the whole extent of the house, which but for the old woman remained +otherwise empty, Mr. Hyde had only used a couple of rooms; but these +were furnished with luxury and good taste. A closet was filled with +wine; the plate was of silver, the napery elegant; a good picture hung +upon the walls, a gift (as Utterson supposed) from Henry Jekyll, who +was much of a connoisseur; and the carpets were of many plies and +agreeable in colour. At this moment, however, the rooms bore every mark +of having been recently and hurriedly ransacked; clothes lay about the +floor, with their pockets inside out; lock-fast drawers stood open; and +on the hearth there lay a pile of grey ashes, as though many papers had +been burned. From these embers the inspector disinterred the butt end +of a green cheque book, which had resisted the action of the fire; the +other half of the stick was found behind the door; and as this clinched +his suspicions, the officer declared himself delighted. A visit to the +bank, where several thousand pounds were found to be lying to the +murderer’s credit, completed his gratification. + +“You may depend upon it, sir,” he told Mr. Utterson: “I have him in my +hand. He must have lost his head, or he never would have left the stick +or, above all, burned the cheque book. Why, money’s life to the man. We +have nothing to do but wait for him at the bank, and get out the +handbills.” + +This last, however, was not so easy of accomplishment; for Mr. Hyde had +numbered few familiars—even the master of the servant maid had only +seen him twice; his family could nowhere be traced; he had never been +photographed; and the few who could describe him differed widely, as +common observers will. Only on one point were they agreed; and that was +the haunting sense of unexpressed deformity with which the fugitive +impressed his beholders. + + + +INCIDENT OF THE LETTER + +It was late in the afternoon, when Mr. Utterson found his way to Dr. +Jekyll’s door, where he was at once admitted by Poole, and carried down +by the kitchen offices and across a yard which had once been a garden, +to the building which was indifferently known as the laboratory or +dissecting rooms. The doctor had bought the house from the heirs of a +celebrated surgeon; and his own tastes being rather chemical than +anatomical, had changed the destination of the block at the bottom of +the garden. It was the first time that the lawyer had been received in +that part of his friend’s quarters; and he eyed the dingy, windowless +structure with curiosity, and gazed round with a distasteful sense of +strangeness as he crossed the theatre, once crowded with eager students +and now lying gaunt and silent, the tables laden with chemical +apparatus, the floor strewn with crates and littered with packing +straw, and the light falling dimly through the foggy cupola. At the +further end, a flight of stairs mounted to a door covered with red +baize; and through this, Mr. Utterson was at last received into the +doctor’s cabinet. It was a large room fitted round with glass presses, +furnished, among other things, with a cheval-glass and a business +table, and looking out upon the court by three dusty windows barred +with iron. The fire burned in the grate; a lamp was set lighted on the +chimney shelf, for even in the houses the fog began to lie thickly; and +there, close up to the warmth, sat Dr. Jekyll, looking deathly sick. He +did not rise to meet his visitor, but held out a cold hand and bade him +welcome in a changed voice. + +“And now,” said Mr. Utterson, as soon as Poole had left them, “you have +heard the news?” + +The doctor shuddered. “They were crying it in the square,” he said. “I +heard them in my dining-room.” + +“One word,” said the lawyer. “Carew was my client, but so are you, and +I want to know what I am doing. You have not been mad enough to hide +this fellow?” + +“Utterson, I swear to God,” cried the doctor, “I swear to God I will +never set eyes on him again. I bind my honour to you that I am done +with him in this world. It is all at an end. And indeed he does not +want my help; you do not know him as I do; he is safe, he is quite +safe; mark my words, he will never more be heard of.” + +The lawyer listened gloomily; he did not like his friend’s feverish +manner. “You seem pretty sure of him,” said he; “and for your sake, I +hope you may be right. If it came to a trial, your name might appear.” + +“I am quite sure of him,” replied Jekyll; “I have grounds for certainty +that I cannot share with any one. But there is one thing on which you +may advise me. I have—I have received a letter; and I am at a loss +whether I should show it to the police. I should like to leave it in +your hands, Utterson; you would judge wisely, I am sure; I have so +great a trust in you.” + +“You fear, I suppose, that it might lead to his detection?” asked the +lawyer. + +“No,” said the other. “I cannot say that I care what becomes of Hyde; I +am quite done with him. I was thinking of my own character, which this +hateful business has rather exposed.” + +Utterson ruminated awhile; he was surprised at his friend’s +selfishness, and yet relieved by it. “Well,” said he, at last, “let me +see the letter.” + +The letter was written in an odd, upright hand and signed “Edward +Hyde”: and it signified, briefly enough, that the writer’s benefactor, +Dr. Jekyll, whom he had long so unworthily repaid for a thousand +generosities, need labour under no alarm for his safety, as he had +means of escape on which he placed a sure dependence. The lawyer liked +this letter well enough; it put a better colour on the intimacy than he +had looked for; and he blamed himself for some of his past suspicions. + +“Have you the envelope?” he asked. + +“I burned it,” replied Jekyll, “before I thought what I was about. But +it bore no postmark. The note was handed in.” + +“Shall I keep this and sleep upon it?” asked Utterson. + +“I wish you to judge for me entirely,” was the reply. “I have lost +confidence in myself.” + +“Well, I shall consider,” returned the lawyer. “And now one word more: +it was Hyde who dictated the terms in your will about that +disappearance?” + +The doctor seemed seized with a qualm of faintness; he shut his mouth +tight and nodded. + +“I knew it,” said Utterson. “He meant to murder you. You had a fine +escape.” + +“I have had what is far more to the purpose,” returned the doctor +solemnly: “I have had a lesson—O God, Utterson, what a lesson I have +had!” And he covered his face for a moment with his hands. + +On his way out, the lawyer stopped and had a word or two with Poole. +“By the bye,” said he, “there was a letter handed in to-day: what was +the messenger like?” But Poole was positive nothing had come except by +post; “and only circulars by that,” he added. + +This news sent off the visitor with his fears renewed. Plainly the +letter had come by the laboratory door; possibly, indeed, it had been +written in the cabinet; and if that were so, it must be differently +judged, and handled with the more caution. The newsboys, as he went, +were crying themselves hoarse along the footways: “Special edition. +Shocking murder of an M.P.” That was the funeral oration of one friend +and client; and he could not help a certain apprehension lest the good +name of another should be sucked down in the eddy of the scandal. It +was, at least, a ticklish decision that he had to make; and +self-reliant as he was by habit, he began to cherish a longing for +advice. It was not to be had directly; but perhaps, he thought, it +might be fished for. + +Presently after, he sat on one side of his own hearth, with Mr. Guest, +his head clerk, upon the other, and midway between, at a nicely +calculated distance from the fire, a bottle of a particular old wine +that had long dwelt unsunned in the foundations of his house. The fog +still slept on the wing above the drowned city, where the lamps +glimmered like carbuncles; and through the muffle and smother of these +fallen clouds, the procession of the town’s life was still rolling in +through the great arteries with a sound as of a mighty wind. But the +room was gay with firelight. In the bottle the acids were long ago +resolved; the imperial dye had softened with time, as the colour grows +richer in stained windows; and the glow of hot autumn afternoons on +hillside vineyards, was ready to be set free and to disperse the fogs +of London. Insensibly the lawyer melted. There was no man from whom he +kept fewer secrets than Mr. Guest; and he was not always sure that he +kept as many as he meant. Guest had often been on business to the +doctor’s; he knew Poole; he could scarce have failed to hear of Mr. +Hyde’s familiarity about the house; he might draw conclusions: was it +not as well, then, that he should see a letter which put that mystery +to right? and above all since Guest, being a great student and critic +of handwriting, would consider the step natural and obliging? The +clerk, besides, was a man of counsel; he could scarce read so strange a +document without dropping a remark; and by that remark Mr. Utterson +might shape his future course. + +“This is a sad business about Sir Danvers,” he said. + +“Yes, sir, indeed. It has elicited a great deal of public feeling,” +returned Guest. “The man, of course, was mad.” + +“I should like to hear your views on that,” replied Utterson. “I have a +document here in his handwriting; it is between ourselves, for I scarce +know what to do about it; it is an ugly business at the best. But there +it is; quite in your way: a murderer’s autograph.” + +Guest’s eyes brightened, and he sat down at once and studied it with +passion. “No sir,” he said: “not mad; but it is an odd hand.” + +“And by all accounts a very odd writer,” added the lawyer. + +Just then the servant entered with a note. + +“Is that from Dr. Jekyll, sir?” inquired the clerk. “I thought I knew +the writing. Anything private, Mr. Utterson?” + +“Only an invitation to dinner. Why? Do you want to see it?” + +“One moment. I thank you, sir;” and the clerk laid the two sheets of +paper alongside and sedulously compared their contents. “Thank you, +sir,” he said at last, returning both; “it’s a very interesting +autograph.” + +There was a pause, during which Mr. Utterson struggled with himself. +“Why did you compare them, Guest?” he inquired suddenly. + +“Well, sir,” returned the clerk, “there’s a rather singular +resemblance; the two hands are in many points identical: only +differently sloped.” + +“Rather quaint,” said Utterson. + +“It is, as you say, rather quaint,” returned Guest. + +“I wouldn’t speak of this note, you know,” said the master. + +“No, sir,” said the clerk. “I understand.” + +But no sooner was Mr. Utterson alone that night, than he locked the +note into his safe, where it reposed from that time forward. “What!” he +thought. “Henry Jekyll forge for a murderer!” And his blood ran cold in +his veins. + + + +INCIDENT OF DR. LANYON + +Time ran on; thousands of pounds were offered in reward, for the death +of Sir Danvers was resented as a public injury; but Mr. Hyde had +disappeared out of the ken of the police as though he had never +existed. Much of his past was unearthed, indeed, and all disreputable: +tales came out of the man’s cruelty, at once so callous and violent; of +his vile life, of his strange associates, of the hatred that seemed to +have surrounded his career; but of his present whereabouts, not a +whisper. From the time he had left the house in Soho on the morning of +the murder, he was simply blotted out; and gradually, as time drew on, +Mr. Utterson began to recover from the hotness of his alarm, and to +grow more at quiet with himself. The death of Sir Danvers was, to his +way of thinking, more than paid for by the disappearance of Mr. Hyde. +Now that that evil influence had been withdrawn, a new life began for +Dr. Jekyll. He came out of his seclusion, renewed relations with his +friends, became once more their familiar guest and entertainer; and +whilst he had always been known for charities, he was now no less +distinguished for religion. He was busy, he was much in the open air, +he did good; his face seemed to open and brighten, as if with an inward +consciousness of service; and for more than two months, the doctor was +at peace. + +On the 8th of January Utterson had dined at the doctor’s with a small +party; Lanyon had been there; and the face of the host had looked from +one to the other as in the old days when the trio were inseparable +friends. On the 12th, and again on the 14th, the door was shut against +the lawyer. “The doctor was confined to the house,” Poole said, “and +saw no one.” On the 15th, he tried again, and was again refused; and +having now been used for the last two months to see his friend almost +daily, he found this return of solitude to weigh upon his spirits. The +fifth night he had in Guest to dine with him; and the sixth he betook +himself to Dr. Lanyon’s. + +There at least he was not denied admittance; but when he came in, he +was shocked at the change which had taken place in the doctor’s +appearance. He had his death-warrant written legibly upon his face. The +rosy man had grown pale; his flesh had fallen away; he was visibly +balder and older; and yet it was not so much these tokens of a swift +physical decay that arrested the lawyer’s notice, as a look in the eye +and quality of manner that seemed to testify to some deep-seated terror +of the mind. It was unlikely that the doctor should fear death; and yet +that was what Utterson was tempted to suspect. “Yes,” he thought; “he +is a doctor, he must know his own state and that his days are counted; +and the knowledge is more than he can bear.” And yet when Utterson +remarked on his ill looks, it was with an air of great firmness that +Lanyon declared himself a doomed man. + +“I have had a shock,” he said, “and I shall never recover. It is a +question of weeks. Well, life has been pleasant; I liked it; yes, sir, +I used to like it. I sometimes think if we knew all, we should be more +glad to get away.” + +“Jekyll is ill, too,” observed Utterson. “Have you seen him?” + +But Lanyon’s face changed, and he held up a trembling hand. “I wish to +see or hear no more of Dr. Jekyll,” he said in a loud, unsteady voice. +“I am quite done with that person; and I beg that you will spare me any +allusion to one whom I regard as dead.” + +“Tut, tut!” said Mr. Utterson; and then after a considerable pause, +“Can’t I do anything?” he inquired. “We are three very old friends, +Lanyon; we shall not live to make others.” + +“Nothing can be done,” returned Lanyon; “ask himself.” + +“He will not see me,” said the lawyer. + +“I am not surprised at that,” was the reply. “Some day, Utterson, after +I am dead, you may perhaps come to learn the right and wrong of this. I +cannot tell you. And in the meantime, if you can sit and talk with me +of other things, for God’s sake, stay and do so; but if you cannot keep +clear of this accursed topic, then in God’s name, go, for I cannot bear +it.” + +As soon as he got home, Utterson sat down and wrote to Jekyll, +complaining of his exclusion from the house, and asking the cause of +this unhappy break with Lanyon; and the next day brought him a long +answer, often very pathetically worded, and sometimes darkly mysterious +in drift. The quarrel with Lanyon was incurable. “I do not blame our +old friend,” Jekyll wrote, “but I share his view that we must never +meet. I mean from henceforth to lead a life of extreme seclusion; you +must not be surprised, nor must you doubt my friendship, if my door is +often shut even to you. You must suffer me to go my own dark way. I +have brought on myself a punishment and a danger that I cannot name. If +I am the chief of sinners, I am the chief of sufferers also. I could +not think that this earth contained a place for sufferings and terrors +so unmanning; and you can do but one thing, Utterson, to lighten this +destiny, and that is to respect my silence.” Utterson was amazed; the +dark influence of Hyde had been withdrawn, the doctor had returned to +his old tasks and amities; a week ago, the prospect had smiled with +every promise of a cheerful and an honoured age; and now in a moment, +friendship, and peace of mind, and the whole tenor of his life were +wrecked. So great and unprepared a change pointed to madness; but in +view of Lanyon’s manner and words, there must lie for it some deeper +ground. + +A week afterwards Dr. Lanyon took to his bed, and in something less +than a fortnight he was dead. The night after the funeral, at which he +had been sadly affected, Utterson locked the door of his business room, +and sitting there by the light of a melancholy candle, drew out and set +before him an envelope addressed by the hand and sealed with the seal +of his dead friend. “PRIVATE: for the hands of G. J. Utterson ALONE, +and in case of his predecease _to be destroyed unread_,” so it was +emphatically superscribed; and the lawyer dreaded to behold the +contents. “I have buried one friend to-day,” he thought: “what if this +should cost me another?” And then he condemned the fear as a +disloyalty, and broke the seal. Within there was another enclosure, +likewise sealed, and marked upon the cover as “not to be opened till +the death or disappearance of Dr. Henry Jekyll.” Utterson could not +trust his eyes. Yes, it was disappearance; here again, as in the mad +will which he had long ago restored to its author, here again were the +idea of a disappearance and the name of Henry Jekyll bracketted. But in +the will, that idea had sprung from the sinister suggestion of the man +Hyde; it was set there with a purpose all too plain and horrible. +Written by the hand of Lanyon, what should it mean? A great curiosity +came on the trustee, to disregard the prohibition and dive at once to +the bottom of these mysteries; but professional honour and faith to his +dead friend were stringent obligations; and the packet slept in the +inmost corner of his private safe. + +It is one thing to mortify curiosity, another to conquer it; and it may +be doubted if, from that day forth, Utterson desired the society of his +surviving friend with the same eagerness. He thought of him kindly; but +his thoughts were disquieted and fearful. He went to call indeed; but +he was perhaps relieved to be denied admittance; perhaps, in his heart, +he preferred to speak with Poole upon the doorstep and surrounded by +the air and sounds of the open city, rather than to be admitted into +that house of voluntary bondage, and to sit and speak with its +inscrutable recluse. Poole had, indeed, no very pleasant news to +communicate. The doctor, it appeared, now more than ever confined +himself to the cabinet over the laboratory, where he would sometimes +even sleep; he was out of spirits, he had grown very silent, he did not +read; it seemed as if he had something on his mind. Utterson became so +used to the unvarying character of these reports, that he fell off +little by little in the frequency of his visits. + + + +INCIDENT AT THE WINDOW + +It chanced on Sunday, when Mr. Utterson was on his usual walk with Mr. +Enfield, that their way lay once again through the by-street; and that +when they came in front of the door, both stopped to gaze on it. + +“Well,” said Enfield, “that story’s at an end at least. We shall never +see more of Mr. Hyde.” + +“I hope not,” said Utterson. “Did I ever tell you that I once saw him, +and shared your feeling of repulsion?” + +“It was impossible to do the one without the other,” returned Enfield. +“And by the way, what an ass you must have thought me, not to know that +this was a back way to Dr. Jekyll’s! It was partly your own fault that +I found it out, even when I did.” + +“So you found it out, did you?” said Utterson. “But if that be so, we +may step into the court and take a look at the windows. To tell you the +truth, I am uneasy about poor Jekyll; and even outside, I feel as if +the presence of a friend might do him good.” + +The court was very cool and a little damp, and full of premature +twilight, although the sky, high up overhead, was still bright with +sunset. The middle one of the three windows was half-way open; and +sitting close beside it, taking the air with an infinite sadness of +mien, like some disconsolate prisoner, Utterson saw Dr. Jekyll. + +“What! Jekyll!” he cried. “I trust you are better.” + +“I am very low, Utterson,” replied the doctor drearily, “very low. It +will not last long, thank God.” + +“You stay too much indoors,” said the lawyer. “You should be out, +whipping up the circulation like Mr. Enfield and me. (This is my +cousin—Mr. Enfield—Dr. Jekyll.) Come now; get your hat and take a quick +turn with us.” + +“You are very good,” sighed the other. “I should like to very much; but +no, no, no, it is quite impossible; I dare not. But indeed, Utterson, I +am very glad to see you; this is really a great pleasure; I would ask +you and Mr. Enfield up, but the place is really not fit.” + +“Why, then,” said the lawyer, good-naturedly, “the best thing we can do +is to stay down here and speak with you from where we are.” + +“That is just what I was about to venture to propose,” returned the +doctor with a smile. But the words were hardly uttered, before the +smile was struck out of his face and succeeded by an expression of such +abject terror and despair, as froze the very blood of the two gentlemen +below. They saw it but for a glimpse for the window was instantly +thrust down; but that glimpse had been sufficient, and they turned and +left the court without a word. In silence, too, they traversed the +by-street; and it was not until they had come into a neighbouring +thoroughfare, where even upon a Sunday there were still some stirrings +of life, that Mr. Utterson at last turned and looked at his companion. +They were both pale; and there was an answering horror in their eyes. + +“God forgive us, God forgive us,” said Mr. Utterson. + +But Mr. Enfield only nodded his head very seriously, and walked on once +more in silence. + + + +THE LAST NIGHT + +Mr. Utterson was sitting by his fireside one evening after dinner, when +he was surprised to receive a visit from Poole. + +“Bless me, Poole, what brings you here?” he cried; and then taking a +second look at him, “What ails you?” he added; “is the doctor ill?” + +“Mr. Utterson,” said the man, “there is something wrong.” + +“Take a seat, and here is a glass of wine for you,” said the lawyer. +“Now, take your time, and tell me plainly what you want.” + +“You know the doctor’s ways, sir,” replied Poole, “and how he shuts +himself up. Well, he’s shut up again in the cabinet; and I don’t like +it, sir—I wish I may die if I like it. Mr. Utterson, sir, I’m afraid.” + +“Now, my good man,” said the lawyer, “be explicit. What are you afraid +of?” + +“I’ve been afraid for about a week,” returned Poole, doggedly +disregarding the question, “and I can bear it no more.” + +The man’s appearance amply bore out his words; his manner was altered +for the worse; and except for the moment when he had first announced +his terror, he had not once looked the lawyer in the face. Even now, he +sat with the glass of wine untasted on his knee, and his eyes directed +to a corner of the floor. “I can bear it no more,” he repeated. + +“Come,” said the lawyer, “I see you have some good reason, Poole; I see +there is something seriously amiss. Try to tell me what it is.” + +“I think there’s been foul play,” said Poole, hoarsely. + +“Foul play!” cried the lawyer, a good deal frightened and rather +inclined to be irritated in consequence. “What foul play! What does the +man mean?” + +“I daren’t say, sir,” was the answer; “but will you come along with me +and see for yourself?” + +Mr. Utterson’s only answer was to rise and get his hat and greatcoat; +but he observed with wonder the greatness of the relief that appeared +upon the butler’s face, and perhaps with no less, that the wine was +still untasted when he set it down to follow. + +It was a wild, cold, seasonable night of March, with a pale moon, lying +on her back as though the wind had tilted her, and flying wrack of the +most diaphanous and lawny texture. The wind made talking difficult, and +flecked the blood into the face. It seemed to have swept the streets +unusually bare of passengers, besides; for Mr. Utterson thought he had +never seen that part of London so deserted. He could have wished it +otherwise; never in his life had he been conscious of so sharp a wish +to see and touch his fellow-creatures; for struggle as he might, there +was borne in upon his mind a crushing anticipation of calamity. The +square, when they got there, was full of wind and dust, and the thin +trees in the garden were lashing themselves along the railing. Poole, +who had kept all the way a pace or two ahead, now pulled up in the +middle of the pavement, and in spite of the biting weather, took off +his hat and mopped his brow with a red pocket-handkerchief. But for all +the hurry of his coming, these were not the dews of exertion that he +wiped away, but the moisture of some strangling anguish; for his face +was white and his voice, when he spoke, harsh and broken. + +“Well, sir,” he said, “here we are, and God grant there be nothing +wrong.” + +“Amen, Poole,” said the lawyer. + +Thereupon the servant knocked in a very guarded manner; the door was +opened on the chain; and a voice asked from within, “Is that you, +Poole?” + +“It’s all right,” said Poole. “Open the door.” + +The hall, when they entered it, was brightly lighted up; the fire was +built high; and about the hearth the whole of the servants, men and +women, stood huddled together like a flock of sheep. At the sight of +Mr. Utterson, the housemaid broke into hysterical whimpering; and the +cook, crying out “Bless God! it’s Mr. Utterson,” ran forward as if to +take him in her arms. + +“What, what? Are you all here?” said the lawyer peevishly. “Very +irregular, very unseemly; your master would be far from pleased.” + +“They’re all afraid,” said Poole. + +Blank silence followed, no one protesting; only the maid lifted her +voice and now wept loudly. + +“Hold your tongue!” Poole said to her, with a ferocity of accent that +testified to his own jangled nerves; and indeed, when the girl had so +suddenly raised the note of her lamentation, they had all started and +turned towards the inner door with faces of dreadful expectation. “And +now,” continued the butler, addressing the knife-boy, “reach me a +candle, and we’ll get this through hands at once.” And then he begged +Mr. Utterson to follow him, and led the way to the back garden. + +“Now, sir,” said he, “you come as gently as you can. I want you to +hear, and I don’t want you to be heard. And see here, sir, if by any +chance he was to ask you in, don’t go.” + +Mr. Utterson’s nerves, at this unlooked-for termination, gave a jerk +that nearly threw him from his balance; but he recollected his courage +and followed the butler into the laboratory building through the +surgical theatre, with its lumber of crates and bottles, to the foot of +the stair. Here Poole motioned him to stand on one side and listen; +while he himself, setting down the candle and making a great and +obvious call on his resolution, mounted the steps and knocked with a +somewhat uncertain hand on the red baize of the cabinet door. + +“Mr. Utterson, sir, asking to see you,” he called; and even as he did +so, once more violently signed to the lawyer to give ear. + +A voice answered from within: “Tell him I cannot see anyone,” it said +complainingly. + +“Thank you, sir,” said Poole, with a note of something like triumph in +his voice; and taking up his candle, he led Mr. Utterson back across +the yard and into the great kitchen, where the fire was out and the +beetles were leaping on the floor. + +“Sir,” he said, looking Mr. Utterson in the eyes, “Was that my master’s +voice?” + +“It seems much changed,” replied the lawyer, very pale, but giving look +for look. + +“Changed? Well, yes, I think so,” said the butler. “Have I been twenty +years in this man’s house, to be deceived about his voice? No, sir; +master’s made away with; he was made away with eight days ago, when we +heard him cry out upon the name of God; and _who’s_ in there instead of +him, and _why_ it stays there, is a thing that cries to Heaven, Mr. +Utterson!” + +“This is a very strange tale, Poole; this is rather a wild tale my +man,” said Mr. Utterson, biting his finger. “Suppose it were as you +suppose, supposing Dr. Jekyll to have been—well, murdered, what could +induce the murderer to stay? That won’t hold water; it doesn’t commend +itself to reason.” + +“Well, Mr. Utterson, you are a hard man to satisfy, but I’ll do it +yet,” said Poole. “All this last week (you must know) him, or it, +whatever it is that lives in that cabinet, has been crying night and +day for some sort of medicine and cannot get it to his mind. It was +sometimes his way—the master’s, that is—to write his orders on a sheet +of paper and throw it on the stair. We’ve had nothing else this week +back; nothing but papers, and a closed door, and the very meals left +there to be smuggled in when nobody was looking. Well, sir, every day, +ay, and twice and thrice in the same day, there have been orders and +complaints, and I have been sent flying to all the wholesale chemists +in town. Every time I brought the stuff back, there would be another +paper telling me to return it, because it was not pure, and another +order to a different firm. This drug is wanted bitter bad, sir, +whatever for.” + +“Have you any of these papers?” asked Mr. Utterson. + +Poole felt in his pocket and handed out a crumpled note, which the +lawyer, bending nearer to the candle, carefully examined. Its contents +ran thus: “Dr. Jekyll presents his compliments to Messrs. Maw. He +assures them that their last sample is impure and quite useless for his +present purpose. In the year 18—, Dr. J. purchased a somewhat large +quantity from Messrs. M. He now begs them to search with most sedulous +care, and should any of the same quality be left, forward it to him at +once. Expense is no consideration. The importance of this to Dr. J. can +hardly be exaggerated.” So far the letter had run composedly enough, +but here with a sudden splutter of the pen, the writer’s emotion had +broken loose. “For God’s sake,” he added, “find me some of the old.” + +“This is a strange note,” said Mr. Utterson; and then sharply, “How do +you come to have it open?” + +“The man at Maw’s was main angry, sir, and he threw it back to me like +so much dirt,” returned Poole. + +“This is unquestionably the doctor’s hand, do you know?” resumed the +lawyer. + +“I thought it looked like it,” said the servant rather sulkily; and +then, with another voice, “But what matters hand of write?” he said. +“I’ve seen him!” + +“Seen him?” repeated Mr. Utterson. “Well?” + +“That’s it!” said Poole. “It was this way. I came suddenly into the +theatre from the garden. It seems he had slipped out to look for this +drug or whatever it is; for the cabinet door was open, and there he was +at the far end of the room digging among the crates. He looked up when +I came in, gave a kind of cry, and whipped upstairs into the cabinet. +It was but for one minute that I saw him, but the hair stood upon my +head like quills. Sir, if that was my master, why had he a mask upon +his face? If it was my master, why did he cry out like a rat, and run +from me? I have served him long enough. And then...” The man paused and +passed his hand over his face. + +“These are all very strange circumstances,” said Mr. Utterson, “but I +think I begin to see daylight. Your master, Poole, is plainly seized +with one of those maladies that both torture and deform the sufferer; +hence, for aught I know, the alteration of his voice; hence the mask +and the avoidance of his friends; hence his eagerness to find this +drug, by means of which the poor soul retains some hope of ultimate +recovery—God grant that he be not deceived! There is my explanation; it +is sad enough, Poole, ay, and appalling to consider; but it is plain +and natural, hangs well together, and delivers us from all exorbitant +alarms.” + +“Sir,” said the butler, turning to a sort of mottled pallor, “that +thing was not my master, and there’s the truth. My master”—here he +looked round him and began to whisper—“is a tall, fine build of a man, +and this was more of a dwarf.” Utterson attempted to protest. “O, sir,” +cried Poole, “do you think I do not know my master after twenty years? +Do you think I do not know where his head comes to in the cabinet door, +where I saw him every morning of my life? No, sir, that thing in the +mask was never Dr. Jekyll—God knows what it was, but it was never Dr. +Jekyll; and it is the belief of my heart that there was murder done.” + +“Poole,” replied the lawyer, “if you say that, it will become my duty +to make certain. Much as I desire to spare your master’s feelings, much +as I am puzzled by this note which seems to prove him to be still +alive, I shall consider it my duty to break in that door.” + +“Ah, Mr. Utterson, that’s talking!” cried the butler. + +“And now comes the second question,” resumed Utterson: “Who is going to +do it?” + +“Why, you and me, sir,” was the undaunted reply. + +“That’s very well said,” returned the lawyer; “and whatever comes of +it, I shall make it my business to see you are no loser.” + +“There is an axe in the theatre,” continued Poole; “and you might take +the kitchen poker for yourself.” + +The lawyer took that rude but weighty instrument into his hand, and +balanced it. “Do you know, Poole,” he said, looking up, “that you and I +are about to place ourselves in a position of some peril?” + +“You may say so, sir, indeed,” returned the butler. + +“It is well, then that we should be frank,” said the other. “We both +think more than we have said; let us make a clean breast. This masked +figure that you saw, did you recognise it?” + +“Well, sir, it went so quick, and the creature was so doubled up, that +I could hardly swear to that,” was the answer. “But if you mean, was it +Mr. Hyde?—why, yes, I think it was! You see, it was much of the same +bigness; and it had the same quick, light way with it; and then who +else could have got in by the laboratory door? You have not forgot, +sir, that at the time of the murder he had still the key with him? But +that’s not all. I don’t know, Mr. Utterson, if you ever met this Mr. +Hyde?” + +“Yes,” said the lawyer, “I once spoke with him.” + +“Then you must know as well as the rest of us that there was something +queer about that gentleman—something that gave a man a turn—I don’t +know rightly how to say it, sir, beyond this: that you felt in your +marrow kind of cold and thin.” + +“I own I felt something of what you describe,” said Mr. Utterson. + +“Quite so, sir,” returned Poole. “Well, when that masked thing like a +monkey jumped from among the chemicals and whipped into the cabinet, it +went down my spine like ice. O, I know it’s not evidence, Mr. Utterson; +I’m book-learned enough for that; but a man has his feelings, and I +give you my bible-word it was Mr. Hyde!” + +“Ay, ay,” said the lawyer. “My fears incline to the same point. Evil, I +fear, founded—evil was sure to come—of that connection. Ay truly, I +believe you; I believe poor Harry is killed; and I believe his murderer +(for what purpose, God alone can tell) is still lurking in his victim’s +room. Well, let our name be vengeance. Call Bradshaw.” + +The footman came at the summons, very white and nervous. + +“Pull yourself together, Bradshaw,” said the lawyer. “This suspense, I +know, is telling upon all of you; but it is now our intention to make +an end of it. Poole, here, and I are going to force our way into the +cabinet. If all is well, my shoulders are broad enough to bear the +blame. Meanwhile, lest anything should really be amiss, or any +malefactor seek to escape by the back, you and the boy must go round +the corner with a pair of good sticks and take your post at the +laboratory door. We give you ten minutes to get to your stations.” + +As Bradshaw left, the lawyer looked at his watch. “And now, Poole, let +us get to ours,” he said; and taking the poker under his arm, led the +way into the yard. The scud had banked over the moon, and it was now +quite dark. The wind, which only broke in puffs and draughts into that +deep well of building, tossed the light of the candle to and fro about +their steps, until they came into the shelter of the theatre, where +they sat down silently to wait. London hummed solemnly all around; but +nearer at hand, the stillness was only broken by the sounds of a +footfall moving to and fro along the cabinet floor. + +“So it will walk all day, sir,” whispered Poole; “ay, and the better +part of the night. Only when a new sample comes from the chemist, +there’s a bit of a break. Ah, it’s an ill conscience that’s such an +enemy to rest! Ah, sir, there’s blood foully shed in every step of it! +But hark again, a little closer—put your heart in your ears, Mr. +Utterson, and tell me, is that the doctor’s foot?” + +The steps fell lightly and oddly, with a certain swing, for all they +went so slowly; it was different indeed from the heavy creaking tread +of Henry Jekyll. Utterson sighed. “Is there never anything else?” he +asked. + +Poole nodded. “Once,” he said. “Once I heard it weeping!” + +“Weeping? how that?” said the lawyer, conscious of a sudden chill of +horror. + +“Weeping like a woman or a lost soul,” said the butler. “I came away +with that upon my heart, that I could have wept too.” + +But now the ten minutes drew to an end. Poole disinterred the axe from +under a stack of packing straw; the candle was set upon the nearest +table to light them to the attack; and they drew near with bated breath +to where that patient foot was still going up and down, up and down, in +the quiet of the night. + +“Jekyll,” cried Utterson, with a loud voice, “I demand to see you.” He +paused a moment, but there came no reply. “I give you fair warning, our +suspicions are aroused, and I must and shall see you,” he resumed; “if +not by fair means, then by foul—if not of your consent, then by brute +force!” + +“Utterson,” said the voice, “for God’s sake, have mercy!” + +“Ah, that’s not Jekyll’s voice—it’s Hyde’s!” cried Utterson. “Down with +the door, Poole!” + +Poole swung the axe over his shoulder; the blow shook the building, and +the red baize door leaped against the lock and hinges. A dismal +screech, as of mere animal terror, rang from the cabinet. Up went the +axe again, and again the panels crashed and the frame bounded; four +times the blow fell; but the wood was tough and the fittings were of +excellent workmanship; and it was not until the fifth, that the lock +burst and the wreck of the door fell inwards on the carpet. + +The besiegers, appalled by their own riot and the stillness that had +succeeded, stood back a little and peered in. There lay the cabinet +before their eyes in the quiet lamplight, a good fire glowing and +chattering on the hearth, the kettle singing its thin strain, a drawer +or two open, papers neatly set forth on the business table, and nearer +the fire, the things laid out for tea; the quietest room, you would +have said, and, but for the glazed presses full of chemicals, the most +commonplace that night in London. + +Right in the middle there lay the body of a man sorely contorted and +still twitching. They drew near on tiptoe, turned it on its back and +beheld the face of Edward Hyde. He was dressed in clothes far too large +for him, clothes of the doctor’s bigness; the cords of his face still +moved with a semblance of life, but life was quite gone; and by the +crushed phial in the hand and the strong smell of kernels that hung +upon the air, Utterson knew that he was looking on the body of a +self-destroyer. + +“We have come too late,” he said sternly, “whether to save or punish. +Hyde is gone to his account; and it only remains for us to find the +body of your master.” + +The far greater proportion of the building was occupied by the theatre, +which filled almost the whole ground storey and was lighted from above, +and by the cabinet, which formed an upper storey at one end and looked +upon the court. A corridor joined the theatre to the door on the +by-street; and with this the cabinet communicated separately by a +second flight of stairs. There were besides a few dark closets and a +spacious cellar. All these they now thoroughly examined. Each closet +needed but a glance, for all were empty, and all, by the dust that fell +from their doors, had stood long unopened. The cellar, indeed, was +filled with crazy lumber, mostly dating from the times of the surgeon +who was Jekyll’s predecessor; but even as they opened the door they +were advertised of the uselessness of further search, by the fall of a +perfect mat of cobweb which had for years sealed up the entrance. +Nowhere was there any trace of Henry Jekyll, dead or alive. + +Poole stamped on the flags of the corridor. “He must be buried here,” +he said, hearkening to the sound. + +“Or he may have fled,” said Utterson, and he turned to examine the door +in the by-street. It was locked; and lying near by on the flags, they +found the key, already stained with rust. + +“This does not look like use,” observed the lawyer. + +“Use!” echoed Poole. “Do you not see, sir, it is broken? much as if a +man had stamped on it.” + +“Ay,” continued Utterson, “and the fractures, too, are rusty.” The two +men looked at each other with a scare. “This is beyond me, Poole,” said +the lawyer. “Let us go back to the cabinet.” + +They mounted the stair in silence, and still with an occasional +awestruck glance at the dead body, proceeded more thoroughly to examine +the contents of the cabinet. At one table, there were traces of +chemical work, various measured heaps of some white salt being laid on +glass saucers, as though for an experiment in which the unhappy man had +been prevented. + +“That is the same drug that I was always bringing him,” said Poole; and +even as he spoke, the kettle with a startling noise boiled over. + +This brought them to the fireside, where the easy-chair was drawn +cosily up, and the tea things stood ready to the sitter’s elbow, the +very sugar in the cup. There were several books on a shelf; one lay +beside the tea things open, and Utterson was amazed to find it a copy +of a pious work, for which Jekyll had several times expressed a great +esteem, annotated, in his own hand with startling blasphemies. + +Next, in the course of their review of the chamber, the searchers came +to the cheval-glass, into whose depths they looked with an involuntary +horror. But it was so turned as to show them nothing but the rosy glow +playing on the roof, the fire sparkling in a hundred repetitions along +the glazed front of the presses, and their own pale and fearful +countenances stooping to look in. + +“This glass has seen some strange things, sir,” whispered Poole. + +“And surely none stranger than itself,” echoed the lawyer in the same +tones. “For what did Jekyll”—he caught himself up at the word with a +start, and then conquering the weakness—“what could Jekyll want with +it?” he said. + +“You may say that!” said Poole. + +Next they turned to the business table. On the desk, among the neat +array of papers, a large envelope was uppermost, and bore, in the +doctor’s hand, the name of Mr. Utterson. The lawyer unsealed it, and +several enclosures fell to the floor. The first was a will, drawn in +the same eccentric terms as the one which he had returned six months +before, to serve as a testament in case of death and as a deed of gift +in case of disappearance; but in place of the name of Edward Hyde, the +lawyer, with indescribable amazement read the name of Gabriel John +Utterson. He looked at Poole, and then back at the paper, and last of +all at the dead malefactor stretched upon the carpet. + +“My head goes round,” he said. “He has been all these days in +possession; he had no cause to like me; he must have raged to see +himself displaced; and he has not destroyed this document.” + +He caught up the next paper; it was a brief note in the doctor’s hand +and dated at the top. “O Poole!” the lawyer cried, “he was alive and +here this day. He cannot have been disposed of in so short a space; he +must be still alive, he must have fled! And then, why fled? and how? +and in that case, can we venture to declare this suicide? O, we must be +careful. I foresee that we may yet involve your master in some dire +catastrophe.” + +“Why don’t you read it, sir?” asked Poole. + +“Because I fear,” replied the lawyer solemnly. “God grant I have no +cause for it!” And with that he brought the paper to his eyes and read +as follows: + + +“My dear Utterson,—When this shall fall into your hands, I shall have +disappeared, under what circumstances I have not the penetration to +foresee, but my instinct and all the circumstances of my nameless +situation tell me that the end is sure and must be early. Go then, and +first read the narrative which Lanyon warned me he was to place in your +hands; and if you care to hear more, turn to the confession of + +“Your unworthy and unhappy friend, + +“HENRY JEKYLL.” + + +“There was a third enclosure?” asked Utterson. + +“Here, sir,” said Poole, and gave into his hands a considerable packet +sealed in several places. + +The lawyer put it in his pocket. “I would say nothing of this paper. If +your master has fled or is dead, we may at least save his credit. It is +now ten; I must go home and read these documents in quiet; but I shall +be back before midnight, when we shall send for the police.” + +They went out, locking the door of the theatre behind them; and +Utterson, once more leaving the servants gathered about the fire in the +hall, trudged back to his office to read the two narratives in which +this mystery was now to be explained. + + + +DR. LANYON’S NARRATIVE + +On the ninth of January, now four days ago, I received by the evening +delivery a registered envelope, addressed in the hand of my colleague +and old school companion, Henry Jekyll. I was a good deal surprised by +this; for we were by no means in the habit of correspondence; I had +seen the man, dined with him, indeed, the night before; and I could +imagine nothing in our intercourse that should justify formality of +registration. The contents increased my wonder; for this is how the +letter ran: + +“10_th December_, 18—. + + +“Dear Lanyon,—You are one of my oldest friends; and although we may +have differed at times on scientific questions, I cannot remember, at +least on my side, any break in our affection. There was never a day +when, if you had said to me, ‘Jekyll, my life, my honour, my reason, +depend upon you,’ I would not have sacrificed my left hand to help you. +Lanyon, my life, my honour, my reason, are all at your mercy; if you +fail me to-night, I am lost. You might suppose, after this preface, +that I am going to ask you for something dishonourable to grant. Judge +for yourself. + +“I want you to postpone all other engagements for to-night—ay, even if +you were summoned to the bedside of an emperor; to take a cab, unless +your carriage should be actually at the door; and with this letter in +your hand for consultation, to drive straight to my house. Poole, my +butler, has his orders; you will find him waiting your arrival with a +locksmith. The door of my cabinet is then to be forced; and you are to +go in alone; to open the glazed press (letter E) on the left hand, +breaking the lock if it be shut; and to draw out, _with all its +contents as they stand_, the fourth drawer from the top or (which is +the same thing) the third from the bottom. In my extreme distress of +mind, I have a morbid fear of misdirecting you; but even if I am in +error, you may know the right drawer by its contents: some powders, a +phial and a paper book. This drawer I beg of you to carry back with you +to Cavendish Square exactly as it stands. + +“That is the first part of the service: now for the second. You should +be back, if you set out at once on the receipt of this, long before +midnight; but I will leave you that amount of margin, not only in the +fear of one of those obstacles that can neither be prevented nor +foreseen, but because an hour when your servants are in bed is to be +preferred for what will then remain to do. At midnight, then, I have to +ask you to be alone in your consulting room, to admit with your own +hand into the house a man who will present himself in my name, and to +place in his hands the drawer that you will have brought with you from +my cabinet. Then you will have played your part and earned my gratitude +completely. Five minutes afterwards, if you insist upon an explanation, +you will have understood that these arrangements are of capital +importance; and that by the neglect of one of them, fantastic as they +must appear, you might have charged your conscience with my death or +the shipwreck of my reason. + +“Confident as I am that you will not trifle with this appeal, my heart +sinks and my hand trembles at the bare thought of such a possibility. +Think of me at this hour, in a strange place, labouring under a +blackness of distress that no fancy can exaggerate, and yet well aware +that, if you will but punctually serve me, my troubles will roll away +like a story that is told. Serve me, my dear Lanyon and save + +“Your friend, + + +“H.J. + + +“P.S.—I had already sealed this up when a fresh terror struck upon my +soul. It is possible that the post-office may fail me, and this letter +not come into your hands until to-morrow morning. In that case, dear +Lanyon, do my errand when it shall be most convenient for you in the +course of the day; and once more expect my messenger at midnight. It +may then already be too late; and if that night passes without event, +you will know that you have seen the last of Henry Jekyll.” + + +Upon the reading of this letter, I made sure my colleague was insane; +but till that was proved beyond the possibility of doubt, I felt bound +to do as he requested. The less I understood of this farrago, the less +I was in a position to judge of its importance; and an appeal so worded +could not be set aside without a grave responsibility. I rose +accordingly from table, got into a hansom, and drove straight to +Jekyll’s house. The butler was awaiting my arrival; he had received by +the same post as mine a registered letter of instruction, and had sent +at once for a locksmith and a carpenter. The tradesmen came while we +were yet speaking; and we moved in a body to old Dr. Denman’s surgical +theatre, from which (as you are doubtless aware) Jekyll’s private +cabinet is most conveniently entered. The door was very strong, the +lock excellent; the carpenter avowed he would have great trouble and +have to do much damage, if force were to be used; and the locksmith was +near despair. But this last was a handy fellow, and after two hour’s +work, the door stood open. The press marked E was unlocked; and I took +out the drawer, had it filled up with straw and tied in a sheet, and +returned with it to Cavendish Square. + +Here I proceeded to examine its contents. The powders were neatly +enough made up, but not with the nicety of the dispensing chemist; so +that it was plain they were of Jekyll’s private manufacture; and when I +opened one of the wrappers I found what seemed to me a simple +crystalline salt of a white colour. The phial, to which I next turned +my attention, might have been about half full of a blood-red liquor, +which was highly pungent to the sense of smell and seemed to me to +contain phosphorus and some volatile ether. At the other ingredients I +could make no guess. The book was an ordinary version book and +contained little but a series of dates. These covered a period of many +years, but I observed that the entries ceased nearly a year ago and +quite abruptly. Here and there a brief remark was appended to a date, +usually no more than a single word: “double” occurring perhaps six +times in a total of several hundred entries; and once very early in the +list and followed by several marks of exclamation, “total failure!!!” +All this, though it whetted my curiosity, told me little that was +definite. Here were a phial of some salt, and the record of a series of +experiments that had led (like too many of Jekyll’s investigations) to +no end of practical usefulness. How could the presence of these +articles in my house affect either the honour, the sanity, or the life +of my flighty colleague? If his messenger could go to one place, why +could he not go to another? And even granting some impediment, why was +this gentleman to be received by me in secret? The more I reflected the +more convinced I grew that I was dealing with a case of cerebral +disease; and though I dismissed my servants to bed, I loaded an old +revolver, that I might be found in some posture of self-defence. + +Twelve o’clock had scarce rung out over London, ere the knocker sounded +very gently on the door. I went myself at the summons, and found a +small man crouching against the pillars of the portico. + +“Are you come from Dr. Jekyll?” I asked. + +He told me “yes” by a constrained gesture; and when I had bidden him +enter, he did not obey me without a searching backward glance into the +darkness of the square. There was a policeman not far off, advancing +with his bull’s eye open; and at the sight, I thought my visitor +started and made greater haste. + +These particulars struck me, I confess, disagreeably; and as I followed +him into the bright light of the consulting room, I kept my hand ready +on my weapon. Here, at last, I had a chance of clearly seeing him. I +had never set eyes on him before, so much was certain. He was small, as +I have said; I was struck besides with the shocking expression of his +face, with his remarkable combination of great muscular activity and +great apparent debility of constitution, and—last but not least—with +the odd, subjective disturbance caused by his neighbourhood. This bore +some resemblance to incipient rigour, and was accompanied by a marked +sinking of the pulse. At the time, I set it down to some idiosyncratic, +personal distaste, and merely wondered at the acuteness of the +symptoms; but I have since had reason to believe the cause to lie much +deeper in the nature of man, and to turn on some nobler hinge than the +principle of hatred. + +This person (who had thus, from the first moment of his entrance, +struck in me what I can only describe as a disgustful curiosity) was +dressed in a fashion that would have made an ordinary person laughable; +his clothes, that is to say, although they were of rich and sober +fabric, were enormously too large for him in every measurement—the +trousers hanging on his legs and rolled up to keep them from the +ground, the waist of the coat below his haunches, and the collar +sprawling wide upon his shoulders. Strange to relate, this ludicrous +accoutrement was far from moving me to laughter. Rather, as there was +something abnormal and misbegotten in the very essence of the creature +that now faced me—something seizing, surprising and revolting—this +fresh disparity seemed but to fit in with and to reinforce it; so that +to my interest in the man’s nature and character, there was added a +curiosity as to his origin, his life, his fortune and status in the +world. + +These observations, though they have taken so great a space to be set +down in, were yet the work of a few seconds. My visitor was, indeed, on +fire with sombre excitement. + +“Have you got it?” he cried. “Have you got it?” And so lively was his +impatience that he even laid his hand upon my arm and sought to shake +me. + +I put him back, conscious at his touch of a certain icy pang along my +blood. “Come, sir,” said I. “You forget that I have not yet the +pleasure of your acquaintance. Be seated, if you please.” And I showed +him an example, and sat down myself in my customary seat and with as +fair an imitation of my ordinary manner to a patient, as the lateness +of the hour, the nature of my preoccupations, and the horror I had of +my visitor, would suffer me to muster. + +“I beg your pardon, Dr. Lanyon,” he replied civilly enough. “What you +say is very well founded; and my impatience has shown its heels to my +politeness. I come here at the instance of your colleague, Dr. Henry +Jekyll, on a piece of business of some moment; and I understood...” He +paused and put his hand to his throat, and I could see, in spite of his +collected manner, that he was wrestling against the approaches of the +hysteria—“I understood, a drawer...” + +But here I took pity on my visitor’s suspense, and some perhaps on my +own growing curiosity. + +“There it is, sir,” said I, pointing to the drawer, where it lay on the +floor behind a table and still covered with the sheet. + +He sprang to it, and then paused, and laid his hand upon his heart; I +could hear his teeth grate with the convulsive action of his jaws; and +his face was so ghastly to see that I grew alarmed both for his life +and reason. + +“Compose yourself,” said I. + +He turned a dreadful smile to me, and as if with the decision of +despair, plucked away the sheet. At sight of the contents, he uttered +one loud sob of such immense relief that I sat petrified. And the next +moment, in a voice that was already fairly well under control, “Have +you a graduated glass?” he asked. + +I rose from my place with something of an effort and gave him what he +asked. + +He thanked me with a smiling nod, measured out a few minims of the red +tincture and added one of the powders. The mixture, which was at first +of a reddish hue, began, in proportion as the crystals melted, to +brighten in colour, to effervesce audibly, and to throw off small fumes +of vapour. Suddenly and at the same moment, the ebullition ceased and +the compound changed to a dark purple, which faded again more slowly to +a watery green. My visitor, who had watched these metamorphoses with a +keen eye, smiled, set down the glass upon the table, and then turned +and looked upon me with an air of scrutiny. + +“And now,” said he, “to settle what remains. Will you be wise? will you +be guided? will you suffer me to take this glass in my hand and to go +forth from your house without further parley? or has the greed of +curiosity too much command of you? Think before you answer, for it +shall be done as you decide. As you decide, you shall be left as you +were before, and neither richer nor wiser, unless the sense of service +rendered to a man in mortal distress may be counted as a kind of riches +of the soul. Or, if you shall so prefer to choose, a new province of +knowledge and new avenues to fame and power shall be laid open to you, +here, in this room, upon the instant; and your sight shall be blasted +by a prodigy to stagger the unbelief of Satan.” + +“Sir,” said I, affecting a coolness that I was far from truly +possessing, “you speak enigmas, and you will perhaps not wonder that I +hear you with no very strong impression of belief. But I have gone too +far in the way of inexplicable services to pause before I see the end.” + +“It is well,” replied my visitor. “Lanyon, you remember your vows: what +follows is under the seal of our profession. And now, you who have so +long been bound to the most narrow and material views, you who have +denied the virtue of transcendental medicine, you who have derided your +superiors—behold!” + +He put the glass to his lips and drank at one gulp. A cry followed; he +reeled, staggered, clutched at the table and held on, staring with +injected eyes, gasping with open mouth; and as I looked there came, I +thought, a change—he seemed to swell—his face became suddenly black and +the features seemed to melt and alter—and the next moment, I had sprung +to my feet and leaped back against the wall, my arms raised to shield +me from that prodigy, my mind submerged in terror. + +“O God!” I screamed, and “O God!” again and again; for there before my +eyes—pale and shaken, and half fainting, and groping before him with +his hands, like a man restored from death—there stood Henry Jekyll! + +What he told me in the next hour, I cannot bring my mind to set on +paper. I saw what I saw, I heard what I heard, and my soul sickened at +it; and yet now when that sight has faded from my eyes, I ask myself if +I believe it, and I cannot answer. My life is shaken to its roots; +sleep has left me; the deadliest terror sits by me at all hours of the +day and night; and I feel that my days are numbered, and that I must +die; and yet I shall die incredulous. As for the moral turpitude that +man unveiled to me, even with tears of penitence, I cannot, even in +memory, dwell on it without a start of horror. I will say but one +thing, Utterson, and that (if you can bring your mind to credit it) +will be more than enough. The creature who crept into my house that +night was, on Jekyll’s own confession, known by the name of Hyde and +hunted for in every corner of the land as the murderer of Carew. + +HASTIE LANYON. + + + + +HENRY JEKYLL’S FULL STATEMENT OF THE CASE + +I was born in the year 18— to a large fortune, endowed besides with +excellent parts, inclined by nature to industry, fond of the respect of +the wise and good among my fellowmen, and thus, as might have been +supposed, with every guarantee of an honourable and distinguished +future. And indeed the worst of my faults was a certain impatient +gaiety of disposition, such as has made the happiness of many, but such +as I found it hard to reconcile with my imperious desire to carry my +head high, and wear a more than commonly grave countenance before the +public. Hence it came about that I concealed my pleasures; and that +when I reached years of reflection, and began to look round me and take +stock of my progress and position in the world, I stood already +committed to a profound duplicity of life. Many a man would have even +blazoned such irregularities as I was guilty of; but from the high +views that I had set before me, I regarded and hid them with an almost +morbid sense of shame. It was thus rather the exacting nature of my +aspirations than any particular degradation in my faults, that made me +what I was, and, with even a deeper trench than in the majority of men, +severed in me those provinces of good and ill which divide and compound +man’s dual nature. In this case, I was driven to reflect deeply and +inveterately on that hard law of life, which lies at the root of +religion and is one of the most plentiful springs of distress. Though +so profound a double-dealer, I was in no sense a hypocrite; both sides +of me were in dead earnest; I was no more myself when I laid aside +restraint and plunged in shame, than when I laboured, in the eye of +day, at the furtherance of knowledge or the relief of sorrow and +suffering. And it chanced that the direction of my scientific studies, +which led wholly towards the mystic and the transcendental, reacted and +shed a strong light on this consciousness of the perennial war among my +members. With every day, and from both sides of my intelligence, the +moral and the intellectual, I thus drew steadily nearer to that truth, +by whose partial discovery I have been doomed to such a dreadful +shipwreck: that man is not truly one, but truly two. I say two, because +the state of my own knowledge does not pass beyond that point. Others +will follow, others will outstrip me on the same lines; and I hazard +the guess that man will be ultimately known for a mere polity of +multifarious, incongruous and independent denizens. I, for my part, +from the nature of my life, advanced infallibly in one direction and in +one direction only. It was on the moral side, and in my own person, +that I learned to recognise the thorough and primitive duality of man; +I saw that, of the two natures that contended in the field of my +consciousness, even if I could rightly be said to be either, it was +only because I was radically both; and from an early date, even before +the course of my scientific discoveries had begun to suggest the most +naked possibility of such a miracle, I had learned to dwell with +pleasure, as a beloved daydream, on the thought of the separation of +these elements. If each, I told myself, could be housed in separate +identities, life would be relieved of all that was unbearable; the +unjust might go his way, delivered from the aspirations and remorse of +his more upright twin; and the just could walk steadfastly and securely +on his upward path, doing the good things in which he found his +pleasure, and no longer exposed to disgrace and penitence by the hands +of this extraneous evil. It was the curse of mankind that these +incongruous faggots were thus bound together—that in the agonised womb +of consciousness, these polar twins should be continuously struggling. +How, then were they dissociated? + +I was so far in my reflections when, as I have said, a side light began +to shine upon the subject from the laboratory table. I began to +perceive more deeply than it has ever yet been stated, the trembling +immateriality, the mistlike transience, of this seemingly so solid body +in which we walk attired. Certain agents I found to have the power to +shake and pluck back that fleshly vestment, even as a wind might toss +the curtains of a pavilion. For two good reasons, I will not enter +deeply into this scientific branch of my confession. First, because I +have been made to learn that the doom and burthen of our life is bound +for ever on man’s shoulders, and when the attempt is made to cast it +off, it but returns upon us with more unfamiliar and more awful +pressure. Second, because, as my narrative will make, alas! too +evident, my discoveries were incomplete. Enough then, that I not only +recognised my natural body from the mere aura and effulgence of certain +of the powers that made up my spirit, but managed to compound a drug by +which these powers should be dethroned from their supremacy, and a +second form and countenance substituted, none the less natural to me +because they were the expression, and bore the stamp, of lower elements +in my soul. + +I hesitated long before I put this theory to the test of practice. I +knew well that I risked death; for any drug that so potently controlled +and shook the very fortress of identity, might, by the least scruple of +an overdose or at the least inopportunity in the moment of exhibition, +utterly blot out that immaterial tabernacle which I looked to it to +change. But the temptation of a discovery so singular and profound at +last overcame the suggestions of alarm. I had long since prepared my +tincture; I purchased at once, from a firm of wholesale chemists, a +large quantity of a particular salt which I knew, from my experiments, +to be the last ingredient required; and late one accursed night, I +compounded the elements, watched them boil and smoke together in the +glass, and when the ebullition had subsided, with a strong glow of +courage, drank off the potion. + +The most racking pangs succeeded: a grinding in the bones, deadly +nausea, and a horror of the spirit that cannot be exceeded at the hour +of birth or death. Then these agonies began swiftly to subside, and I +came to myself as if out of a great sickness. There was something +strange in my sensations, something indescribably new and, from its +very novelty, incredibly sweet. I felt younger, lighter, happier in +body; within I was conscious of a heady recklessness, a current of +disordered sensual images running like a millrace in my fancy, a +solution of the bonds of obligation, an unknown but not an innocent +freedom of the soul. I knew myself, at the first breath of this new +life, to be more wicked, tenfold more wicked, sold a slave to my +original evil; and the thought, in that moment, braced and delighted me +like wine. I stretched out my hands, exulting in the freshness of these +sensations; and in the act, I was suddenly aware that I had lost in +stature. + +There was no mirror, at that date, in my room; that which stands beside +me as I write, was brought there later on and for the very purpose of +these transformations. The night however, was far gone into the +morning—the morning, black as it was, was nearly ripe for the +conception of the day—the inmates of my house were locked in the most +rigorous hours of slumber; and I determined, flushed as I was with hope +and triumph, to venture in my new shape as far as to my bedroom. I +crossed the yard, wherein the constellations looked down upon me, I +could have thought, with wonder, the first creature of that sort that +their unsleeping vigilance had yet disclosed to them; I stole through +the corridors, a stranger in my own house; and coming to my room, I saw +for the first time the appearance of Edward Hyde. + +I must here speak by theory alone, saying not that which I know, but +that which I suppose to be most probable. The evil side of my nature, +to which I had now transferred the stamping efficacy, was less robust +and less developed than the good which I had just deposed. Again, in +the course of my life, which had been, after all, nine tenths a life of +effort, virtue and control, it had been much less exercised and much +less exhausted. And hence, as I think, it came about that Edward Hyde +was so much smaller, slighter and younger than Henry Jekyll. Even as +good shone upon the countenance of the one, evil was written broadly +and plainly on the face of the other. Evil besides (which I must still +believe to be the lethal side of man) had left on that body an imprint +of deformity and decay. And yet when I looked upon that ugly idol in +the glass, I was conscious of no repugnance, rather of a leap of +welcome. This, too, was myself. It seemed natural and human. In my eyes +it bore a livelier image of the spirit, it seemed more express and +single, than the imperfect and divided countenance I had been hitherto +accustomed to call mine. And in so far I was doubtless right. I have +observed that when I wore the semblance of Edward Hyde, none could come +near to me at first without a visible misgiving of the flesh. This, as +I take it, was because all human beings, as we meet them, are +commingled out of good and evil: and Edward Hyde, alone in the ranks of +mankind, was pure evil. + +I lingered but a moment at the mirror: the second and conclusive +experiment had yet to be attempted; it yet remained to be seen if I had +lost my identity beyond redemption and must flee before daylight from a +house that was no longer mine; and hurrying back to my cabinet, I once +more prepared and drank the cup, once more suffered the pangs of +dissolution, and came to myself once more with the character, the +stature and the face of Henry Jekyll. + +That night I had come to the fatal cross-roads. Had I approached my +discovery in a more noble spirit, had I risked the experiment while +under the empire of generous or pious aspirations, all must have been +otherwise, and from these agonies of death and birth, I had come forth +an angel instead of a fiend. The drug had no discriminating action; it +was neither diabolical nor divine; it but shook the doors of the +prisonhouse of my disposition; and like the captives of Philippi, that +which stood within ran forth. At that time my virtue slumbered; my +evil, kept awake by ambition, was alert and swift to seize the +occasion; and the thing that was projected was Edward Hyde. Hence, +although I had now two characters as well as two appearances, one was +wholly evil, and the other was still the old Henry Jekyll, that +incongruous compound of whose reformation and improvement I had already +learned to despair. The movement was thus wholly toward the worse. + +Even at that time, I had not conquered my aversions to the dryness of a +life of study. I would still be merrily disposed at times; and as my +pleasures were (to say the least) undignified, and I was not only well +known and highly considered, but growing towards the elderly man, this +incoherency of my life was daily growing more unwelcome. It was on this +side that my new power tempted me until I fell in slavery. I had but to +drink the cup, to doff at once the body of the noted professor, and to +assume, like a thick cloak, that of Edward Hyde. I smiled at the +notion; it seemed to me at the time to be humourous; and I made my +preparations with the most studious care. I took and furnished that +house in Soho, to which Hyde was tracked by the police; and engaged as +a housekeeper a creature whom I knew well to be silent and +unscrupulous. On the other side, I announced to my servants that a Mr. +Hyde (whom I described) was to have full liberty and power about my +house in the square; and to parry mishaps, I even called and made +myself a familiar object, in my second character. I next drew up that +will to which you so much objected; so that if anything befell me in +the person of Dr. Jekyll, I could enter on that of Edward Hyde without +pecuniary loss. And thus fortified, as I supposed, on every side, I +began to profit by the strange immunities of my position. + +Men have before hired bravos to transact their crimes, while their own +person and reputation sat under shelter. I was the first that ever did +so for his pleasures. I was the first that could plod in the public eye +with a load of genial respectability, and in a moment, like a +schoolboy, strip off these lendings and spring headlong into the sea of +liberty. But for me, in my impenetrable mantle, the safety was +complete. Think of it—I did not even exist! Let me but escape into my +laboratory door, give me but a second or two to mix and swallow the +draught that I had always standing ready; and whatever he had done, +Edward Hyde would pass away like the stain of breath upon a mirror; and +there in his stead, quietly at home, trimming the midnight lamp in his +study, a man who could afford to laugh at suspicion, would be Henry +Jekyll. + +The pleasures which I made haste to seek in my disguise were, as I have +said, undignified; I would scarce use a harder term. But in the hands +of Edward Hyde, they soon began to turn toward the monstrous. When I +would come back from these excursions, I was often plunged into a kind +of wonder at my vicarious depravity. This familiar that I called out of +my own soul, and sent forth alone to do his good pleasure, was a being +inherently malign and villainous; his every act and thought centered on +self; drinking pleasure with bestial avidity from any degree of torture +to another; relentless like a man of stone. Henry Jekyll stood at times +aghast before the acts of Edward Hyde; but the situation was apart from +ordinary laws, and insidiously relaxed the grasp of conscience. It was +Hyde, after all, and Hyde alone, that was guilty. Jekyll was no worse; +he woke again to his good qualities seemingly unimpaired; he would even +make haste, where it was possible, to undo the evil done by Hyde. And +thus his conscience slumbered. + +Into the details of the infamy at which I thus connived (for even now I +can scarce grant that I committed it) I have no design of entering; I +mean but to point out the warnings and the successive steps with which +my chastisement approached. I met with one accident which, as it +brought on no consequence, I shall no more than mention. An act of +cruelty to a child aroused against me the anger of a passer-by, whom I +recognised the other day in the person of your kinsman; the doctor and +the child’s family joined him; there were moments when I feared for my +life; and at last, in order to pacify their too just resentment, Edward +Hyde had to bring them to the door, and pay them in a cheque drawn in +the name of Henry Jekyll. But this danger was easily eliminated from +the future, by opening an account at another bank in the name of Edward +Hyde himself; and when, by sloping my own hand backward, I had supplied +my double with a signature, I thought I sat beyond the reach of fate. + +Some two months before the murder of Sir Danvers, I had been out for +one of my adventures, had returned at a late hour, and woke the next +day in bed with somewhat odd sensations. It was in vain I looked about +me; in vain I saw the decent furniture and tall proportions of my room +in the square; in vain that I recognised the pattern of the bed +curtains and the design of the mahogany frame; something still kept +insisting that I was not where I was, that I had not wakened where I +seemed to be, but in the little room in Soho where I was accustomed to +sleep in the body of Edward Hyde. I smiled to myself, and in my +psychological way, began lazily to inquire into the elements of this +illusion, occasionally, even as I did so, dropping back into a +comfortable morning doze. I was still so engaged when, in one of my +more wakeful moments, my eyes fell upon my hand. Now the hand of Henry +Jekyll (as you have often remarked) was professional in shape and size; +it was large, firm, white and comely. But the hand which I now saw, +clearly enough, in the yellow light of a mid-London morning, lying half +shut on the bedclothes, was lean, corded, knuckly, of a dusky pallor +and thickly shaded with a swart growth of hair. It was the hand of +Edward Hyde. + +I must have stared upon it for near half a minute, sunk as I was in the +mere stupidity of wonder, before terror woke up in my breast as sudden +and startling as the crash of cymbals; and bounding from my bed I +rushed to the mirror. At the sight that met my eyes, my blood was +changed into something exquisitely thin and icy. Yes, I had gone to bed +Henry Jekyll, I had awakened Edward Hyde. How was this to be explained? +I asked myself; and then, with another bound of terror—how was it to be +remedied? It was well on in the morning; the servants were up; all my +drugs were in the cabinet—a long journey down two pairs of stairs, +through the back passage, across the open court and through the +anatomical theatre, from where I was then standing horror-struck. It +might indeed be possible to cover my face; but of what use was that, +when I was unable to conceal the alteration in my stature? And then +with an overpowering sweetness of relief, it came back upon my mind +that the servants were already used to the coming and going of my +second self. I had soon dressed, as well as I was able, in clothes of +my own size: had soon passed through the house, where Bradshaw stared +and drew back at seeing Mr. Hyde at such an hour and in such a strange +array; and ten minutes later, Dr. Jekyll had returned to his own shape +and was sitting down, with a darkened brow, to make a feint of +breakfasting. + +Small indeed was my appetite. This inexplicable incident, this reversal +of my previous experience, seemed, like the Babylonian finger on the +wall, to be spelling out the letters of my judgment; and I began to +reflect more seriously than ever before on the issues and possibilities +of my double existence. That part of me which I had the power of +projecting, had lately been much exercised and nourished; it had seemed +to me of late as though the body of Edward Hyde had grown in stature, +as though (when I wore that form) I were conscious of a more generous +tide of blood; and I began to spy a danger that, if this were much +prolonged, the balance of my nature might be permanently overthrown, +the power of voluntary change be forfeited, and the character of Edward +Hyde become irrevocably mine. The power of the drug had not been always +equally displayed. Once, very early in my career, it had totally failed +me; since then I had been obliged on more than one occasion to double, +and once, with infinite risk of death, to treble the amount; and these +rare uncertainties had cast hitherto the sole shadow on my contentment. +Now, however, and in the light of that morning’s accident, I was led to +remark that whereas, in the beginning, the difficulty had been to throw +off the body of Jekyll, it had of late gradually but decidedly +transferred itself to the other side. All things therefore seemed to +point to this; that I was slowly losing hold of my original and better +self, and becoming slowly incorporated with my second and worse. + +Between these two, I now felt I had to choose. My two natures had +memory in common, but all other faculties were most unequally shared +between them. Jekyll (who was composite) now with the most sensitive +apprehensions, now with a greedy gusto, projected and shared in the +pleasures and adventures of Hyde; but Hyde was indifferent to Jekyll, +or but remembered him as the mountain bandit remembers the cavern in +which he conceals himself from pursuit. Jekyll had more than a father’s +interest; Hyde had more than a son’s indifference. To cast in my lot +with Jekyll, was to die to those appetites which I had long secretly +indulged and had of late begun to pamper. To cast it in with Hyde, was +to die to a thousand interests and aspirations, and to become, at a +blow and forever, despised and friendless. The bargain might appear +unequal; but there was still another consideration in the scales; for +while Jekyll would suffer smartingly in the fires of abstinence, Hyde +would be not even conscious of all that he had lost. Strange as my +circumstances were, the terms of this debate are as old and commonplace +as man; much the same inducements and alarms cast the die for any +tempted and trembling sinner; and it fell out with me, as it falls with +so vast a majority of my fellows, that I chose the better part and was +found wanting in the strength to keep to it. + +Yes, I preferred the elderly and discontented doctor, surrounded by +friends and cherishing honest hopes; and bade a resolute farewell to +the liberty, the comparative youth, the light step, leaping impulses +and secret pleasures, that I had enjoyed in the disguise of Hyde. I +made this choice perhaps with some unconscious reservation, for I +neither gave up the house in Soho, nor destroyed the clothes of Edward +Hyde, which still lay ready in my cabinet. For two months, however, I +was true to my determination; for two months, I led a life of such +severity as I had never before attained to, and enjoyed the +compensations of an approving conscience. But time began at last to +obliterate the freshness of my alarm; the praises of conscience began +to grow into a thing of course; I began to be tortured with throes and +longings, as of Hyde struggling after freedom; and at last, in an hour +of moral weakness, I once again compounded and swallowed the +transforming draught. + +I do not suppose that, when a drunkard reasons with himself upon his +vice, he is once out of five hundred times affected by the dangers that +he runs through his brutish, physical insensibility; neither had I, +long as I had considered my position, made enough allowance for the +complete moral insensibility and insensate readiness to evil, which +were the leading characters of Edward Hyde. Yet it was by these that I +was punished. My devil had been long caged, he came out roaring. I was +conscious, even when I took the draught, of a more unbridled, a more +furious propensity to ill. It must have been this, I suppose, that +stirred in my soul that tempest of impatience with which I listened to +the civilities of my unhappy victim; I declare, at least, before God, +no man morally sane could have been guilty of that crime upon so +pitiful a provocation; and that I struck in no more reasonable spirit +than that in which a sick child may break a plaything. But I had +voluntarily stripped myself of all those balancing instincts by which +even the worst of us continues to walk with some degree of steadiness +among temptations; and in my case, to be tempted, however slightly, was +to fall. + +Instantly the spirit of hell awoke in me and raged. With a transport of +glee, I mauled the unresisting body, tasting delight from every blow; +and it was not till weariness had begun to succeed, that I was +suddenly, in the top fit of my delirium, struck through the heart by a +cold thrill of terror. A mist dispersed; I saw my life to be forfeit; +and fled from the scene of these excesses, at once glorying and +trembling, my lust of evil gratified and stimulated, my love of life +screwed to the topmost peg. I ran to the house in Soho, and (to make +assurance doubly sure) destroyed my papers; thence I set out through +the lamplit streets, in the same divided ecstasy of mind, gloating on +my crime, light-headedly devising others in the future, and yet still +hastening and still hearkening in my wake for the steps of the avenger. +Hyde had a song upon his lips as he compounded the draught, and as he +drank it, pledged the dead man. The pangs of transformation had not +done tearing him, before Henry Jekyll, with streaming tears of +gratitude and remorse, had fallen upon his knees and lifted his clasped +hands to God. The veil of self-indulgence was rent from head to foot. I +saw my life as a whole: I followed it up from the days of childhood, +when I had walked with my father’s hand, and through the self-denying +toils of my professional life, to arrive again and again, with the same +sense of unreality, at the damned horrors of the evening. I could have +screamed aloud; I sought with tears and prayers to smother down the +crowd of hideous images and sounds with which my memory swarmed against +me; and still, between the petitions, the ugly face of my iniquity +stared into my soul. As the acuteness of this remorse began to die +away, it was succeeded by a sense of joy. The problem of my conduct was +solved. Hyde was thenceforth impossible; whether I would or not, I was +now confined to the better part of my existence; and O, how I rejoiced +to think of it! with what willing humility I embraced anew the +restrictions of natural life! with what sincere renunciation I locked +the door by which I had so often gone and come, and ground the key +under my heel! + +The next day, came the news that the murder had not been overlooked, +that the guilt of Hyde was patent to the world, and that the victim was +a man high in public estimation. It was not only a crime, it had been a +tragic folly. I think I was glad to know it; I think I was glad to have +my better impulses thus buttressed and guarded by the terrors of the +scaffold. Jekyll was now my city of refuge; let but Hyde peep out an +instant, and the hands of all men would be raised to take and slay him. + +I resolved in my future conduct to redeem the past; and I can say with +honesty that my resolve was fruitful of some good. You know yourself +how earnestly, in the last months of the last year, I laboured to +relieve suffering; you know that much was done for others, and that the +days passed quietly, almost happily for myself. Nor can I truly say +that I wearied of this beneficent and innocent life; I think instead +that I daily enjoyed it more completely; but I was still cursed with my +duality of purpose; and as the first edge of my penitence wore off, the +lower side of me, so long indulged, so recently chained down, began to +growl for licence. Not that I dreamed of resuscitating Hyde; the bare +idea of that would startle me to frenzy: no, it was in my own person +that I was once more tempted to trifle with my conscience; and it was +as an ordinary secret sinner that I at last fell before the assaults of +temptation. + +There comes an end to all things; the most capacious measure is filled +at last; and this brief condescension to my evil finally destroyed the +balance of my soul. And yet I was not alarmed; the fall seemed natural, +like a return to the old days before I had made my discovery. It was a +fine, clear, January day, wet under foot where the frost had melted, +but cloudless overhead; and the Regent’s Park was full of winter +chirrupings and sweet with spring odours. I sat in the sun on a bench; +the animal within me licking the chops of memory; the spiritual side a +little drowsed, promising subsequent penitence, but not yet moved to +begin. After all, I reflected, I was like my neighbours; and then I +smiled, comparing myself with other men, comparing my active good-will +with the lazy cruelty of their neglect. And at the very moment of that +vainglorious thought, a qualm came over me, a horrid nausea and the +most deadly shuddering. These passed away, and left me faint; and then +as in its turn faintness subsided, I began to be aware of a change in +the temper of my thoughts, a greater boldness, a contempt of danger, a +solution of the bonds of obligation. I looked down; my clothes hung +formlessly on my shrunken limbs; the hand that lay on my knee was +corded and hairy. I was once more Edward Hyde. A moment before I had +been safe of all men’s respect, wealthy, beloved—the cloth laying for +me in the dining-room at home; and now I was the common quarry of +mankind, hunted, houseless, a known murderer, thrall to the gallows. + +My reason wavered, but it did not fail me utterly. I have more than +once observed that in my second character, my faculties seemed +sharpened to a point and my spirits more tensely elastic; thus it came +about that, where Jekyll perhaps might have succumbed, Hyde rose to the +importance of the moment. My drugs were in one of the presses of my +cabinet; how was I to reach them? That was the problem that (crushing +my temples in my hands) I set myself to solve. The laboratory door I +had closed. If I sought to enter by the house, my own servants would +consign me to the gallows. I saw I must employ another hand, and +thought of Lanyon. How was he to be reached? how persuaded? Supposing +that I escaped capture in the streets, how was I to make my way into +his presence? and how should I, an unknown and displeasing visitor, +prevail on the famous physician to rifle the study of his colleague, +Dr. Jekyll? Then I remembered that of my original character, one part +remained to me: I could write my own hand; and once I had conceived +that kindling spark, the way that I must follow became lighted up from +end to end. + +Thereupon, I arranged my clothes as best I could, and summoning a +passing hansom, drove to an hotel in Portland Street, the name of which +I chanced to remember. At my appearance (which was indeed comical +enough, however tragic a fate these garments covered) the driver could +not conceal his mirth. I gnashed my teeth upon him with a gust of +devilish fury; and the smile withered from his face—happily for him—yet +more happily for myself, for in another instant I had certainly dragged +him from his perch. At the inn, as I entered, I looked about me with so +black a countenance as made the attendants tremble; not a look did they +exchange in my presence; but obsequiously took my orders, led me to a +private room, and brought me wherewithal to write. Hyde in danger of +his life was a creature new to me; shaken with inordinate anger, strung +to the pitch of murder, lusting to inflict pain. Yet the creature was +astute; mastered his fury with a great effort of the will; composed his +two important letters, one to Lanyon and one to Poole; and that he +might receive actual evidence of their being posted, sent them out with +directions that they should be registered. Thenceforward, he sat all +day over the fire in the private room, gnawing his nails; there he +dined, sitting alone with his fears, the waiter visibly quailing before +his eye; and thence, when the night was fully come, he set forth in the +corner of a closed cab, and was driven to and fro about the streets of +the city. He, I say—I cannot say, I. That child of Hell had nothing +human; nothing lived in him but fear and hatred. And when at last, +thinking the driver had begun to grow suspicious, he discharged the cab +and ventured on foot, attired in his misfitting clothes, an object +marked out for observation, into the midst of the nocturnal passengers, +these two base passions raged within him like a tempest. He walked +fast, hunted by his fears, chattering to himself, skulking through the +less frequented thoroughfares, counting the minutes that still divided +him from midnight. Once a woman spoke to him, offering, I think, a box +of lights. He smote her in the face, and she fled. + +When I came to myself at Lanyon’s, the horror of my old friend perhaps +affected me somewhat: I do not know; it was at least but a drop in the +sea to the abhorrence with which I looked back upon these hours. A +change had come over me. It was no longer the fear of the gallows, it +was the horror of being Hyde that racked me. I received Lanyon’s +condemnation partly in a dream; it was partly in a dream that I came +home to my own house and got into bed. I slept after the prostration of +the day, with a stringent and profound slumber which not even the +nightmares that wrung me could avail to break. I awoke in the morning +shaken, weakened, but refreshed. I still hated and feared the thought +of the brute that slept within me, and I had not of course forgotten +the appalling dangers of the day before; but I was once more at home, +in my own house and close to my drugs; and gratitude for my escape +shone so strong in my soul that it almost rivalled the brightness of +hope. + +I was stepping leisurely across the court after breakfast, drinking the +chill of the air with pleasure, when I was seized again with those +indescribable sensations that heralded the change; and I had but the +time to gain the shelter of my cabinet, before I was once again raging +and freezing with the passions of Hyde. It took on this occasion a +double dose to recall me to myself; and alas! six hours after, as I sat +looking sadly in the fire, the pangs returned, and the drug had to be +re-administered. In short, from that day forth it seemed only by a +great effort as of gymnastics, and only under the immediate stimulation +of the drug, that I was able to wear the countenance of Jekyll. At all +hours of the day and night, I would be taken with the premonitory +shudder; above all, if I slept, or even dozed for a moment in my chair, +it was always as Hyde that I awakened. Under the strain of this +continually impending doom and by the sleeplessness to which I now +condemned myself, ay, even beyond what I had thought possible to man, I +became, in my own person, a creature eaten up and emptied by fever, +languidly weak both in body and mind, and solely occupied by one +thought: the horror of my other self. But when I slept, or when the +virtue of the medicine wore off, I would leap almost without transition +(for the pangs of transformation grew daily less marked) into the +possession of a fancy brimming with images of terror, a soul boiling +with causeless hatreds, and a body that seemed not strong enough to +contain the raging energies of life. The powers of Hyde seemed to have +grown with the sickliness of Jekyll. And certainly the hate that now +divided them was equal on each side. With Jekyll, it was a thing of +vital instinct. He had now seen the full deformity of that creature +that shared with him some of the phenomena of consciousness, and was +co-heir with him to death: and beyond these links of community, which +in themselves made the most poignant part of his distress, he thought +of Hyde, for all his energy of life, as of something not only hellish +but inorganic. This was the shocking thing; that the slime of the pit +seemed to utter cries and voices; that the amorphous dust gesticulated +and sinned; that what was dead, and had no shape, should usurp the +offices of life. And this again, that that insurgent horror was knit to +him closer than a wife, closer than an eye; lay caged in his flesh, +where he heard it mutter and felt it struggle to be born; and at every +hour of weakness, and in the confidence of slumber, prevailed against +him, and deposed him out of life. The hatred of Hyde for Jekyll was of +a different order. His terror of the gallows drove him continually to +commit temporary suicide, and return to his subordinate station of a +part instead of a person; but he loathed the necessity, he loathed the +despondency into which Jekyll was now fallen, and he resented the +dislike with which he was himself regarded. Hence the ape-like tricks +that he would play me, scrawling in my own hand blasphemies on the +pages of my books, burning the letters and destroying the portrait of +my father; and indeed, had it not been for his fear of death, he would +long ago have ruined himself in order to involve me in the ruin. But +his love of life is wonderful; I go further: I, who sicken and freeze at +the mere thought of him, when I recall the abjection and passion of +this attachment, and when I know how he fears my power to cut him off +by suicide, I find it in my heart to pity him. + +It is useless, and the time awfully fails me, to prolong this +description; no one has ever suffered such torments, let that suffice; +and yet even to these, habit brought—no, not alleviation—but a certain +callousness of soul, a certain acquiescence of despair; and my +punishment might have gone on for years, but for the last calamity +which has now fallen, and which has finally severed me from my own face +and nature. My provision of the salt, which had never been renewed +since the date of the first experiment, began to run low. I sent out +for a fresh supply and mixed the draught; the ebullition followed, and +the first change of colour, not the second; I drank it and it was +without efficiency. You will learn from Poole how I have had London +ransacked; it was in vain; and I am now persuaded that my first supply +was impure, and that it was that unknown impurity which lent efficacy +to the draught. + +About a week has passed, and I am now finishing this statement under +the influence of the last of the old powders. This, then, is the last +time, short of a miracle, that Henry Jekyll can think his own thoughts +or see his own face (now how sadly altered!) in the glass. Nor must I +delay too long to bring my writing to an end; for if my narrative has +hitherto escaped destruction, it has been by a combination of great +prudence and great good luck. Should the throes of change take me in +the act of writing it, Hyde will tear it in pieces; but if some time +shall have elapsed after I have laid it by, his wonderful selfishness +and circumscription to the moment will probably save it once again from +the action of his ape-like spite. And indeed the doom that is closing +on us both has already changed and crushed him. Half an hour from now, +when I shall again and forever reindue that hated personality, I know +how I shall sit shuddering and weeping in my chair, or continue, with +the most strained and fearstruck ecstasy of listening, to pace up and +down this room (my last earthly refuge) and give ear to every sound of +menace. Will Hyde die upon the scaffold? or will he find courage to +release himself at the last moment? God knows; I am careless; this is +my true hour of death, and what is to follow concerns another than +myself. Here then, as I lay down the pen and proceed to seal up my +confession, I bring the life of that unhappy Henry Jekyll to an end. + + + + +*** END OF THE PROJECT GUTENBERG EBOOK THE STRANGE CASE OF DR. JEKYLL AND MR. HYDE *** + + + + +Updated editions will replace the previous one—the old editions will +be renamed. + +Creating the works from print editions not protected by U.S. copyright +law means that no one owns a United States copyright in these works, +so the Foundation (and you!) can copy and distribute it in the United +States without permission and without paying copyright +royalties. Special rules, set forth in the General Terms of Use part +of this license, apply to copying and distributing Project +Gutenberg™ electronic works to protect the PROJECT GUTENBERG™ +concept and trademark. Project Gutenberg is a registered trademark, +and may not be used if you charge for an eBook, except by following +the terms of the trademark license, including paying royalties for use +of the Project Gutenberg trademark. If you do not charge anything for +copies of this eBook, complying with the trademark license is very +easy. You may use this eBook for nearly any purpose such as creation +of derivative works, reports, performances and research. Project +Gutenberg eBooks may be modified and printed and given away—you may +do practically ANYTHING in the United States with eBooks not protected +by U.S. copyright law. Redistribution is subject to the trademark +license, especially commercial redistribution. + + +START: FULL LICENSE + +THE FULL PROJECT GUTENBERG LICENSE + +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg™ mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase “Project +Gutenberg”), you agree to comply with all the terms of the Full +Project Gutenberg™ License available with this file or online at +www.gutenberg.org/license. + +Section 1. General Terms of Use and Redistributing Project Gutenberg™ +electronic works + +1.A. By reading or using any part of this Project Gutenberg™ +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or +destroy all copies of Project Gutenberg™ electronic works in your +possession. If you paid a fee for obtaining a copy of or access to a +Project Gutenberg™ electronic work and you do not agree to be bound +by the terms of this agreement, you may obtain a refund from the person +or entity to whom you paid the fee as set forth in paragraph 1.E.8. + +1.B. “Project Gutenberg” is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg™ electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg™ electronic works if you follow the terms of this +agreement and help preserve free future access to Project Gutenberg™ +electronic works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation (“the +Foundation” or PGLAF), owns a compilation copyright in the collection +of Project Gutenberg™ electronic works. Nearly all the individual +works in the collection are in the public domain in the United +States. If an individual work is unprotected by copyright law in the +United States and you are located in the United States, we do not +claim a right to prevent you from copying, distributing, performing, +displaying or creating derivative works based on the work as long as +all references to Project Gutenberg are removed. Of course, we hope +that you will support the Project Gutenberg™ mission of promoting +free access to electronic works by freely sharing Project Gutenberg™ +works in compliance with the terms of this agreement for keeping the +Project Gutenberg™ name associated with the work. You can easily +comply with the terms of this agreement by keeping this work in the +same format with its attached full Project Gutenberg™ License when +you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are +in a constant state of change. If you are outside the United States, +check the laws of your country in addition to the terms of this +agreement before downloading, copying, displaying, performing, +distributing or creating derivative works based on this work or any +other Project Gutenberg™ work. The Foundation makes no +representations concerning the copyright status of any work in any +country other than the United States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other +immediate access to, the full Project Gutenberg™ License must appear +prominently whenever any copy of a Project Gutenberg™ work (any work +on which the phrase “Project Gutenberg” appears, or with which the +phrase “Project Gutenberg” is associated) is accessed, displayed, +performed, viewed, copied or distributed: + + This eBook is for the use of anyone anywhere in the United States and most + other parts of the world at no cost and with almost no restrictions + whatsoever. You may copy it, give it away or re-use it under the terms + of the Project Gutenberg License included with this eBook or online + at www.gutenberg.org. If you + are not located in the United States, you will have to check the laws + of the country where you are located before using this eBook. + +1.E.2. If an individual Project Gutenberg™ electronic work is +derived from texts not protected by U.S. copyright law (does not +contain a notice indicating that it is posted with permission of the +copyright holder), the work can be copied and distributed to anyone in +the United States without paying any fees or charges. If you are +redistributing or providing access to a work with the phrase “Project +Gutenberg” associated with or appearing on the work, you must comply +either with the requirements of paragraphs 1.E.1 through 1.E.7 or +obtain permission for the use of the work and the Project Gutenberg™ +trademark as set forth in paragraphs 1.E.8 or 1.E.9. + +1.E.3. If an individual Project Gutenberg™ electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any +additional terms imposed by the copyright holder. Additional terms +will be linked to the Project Gutenberg™ License for all works +posted with the permission of the copyright holder found at the +beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg™ +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg™. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg™ License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including +any word processing or hypertext form. However, if you provide access +to or distribute copies of a Project Gutenberg™ work in a format +other than “Plain Vanilla ASCII” or other format used in the official +version posted on the official Project Gutenberg™ website +(www.gutenberg.org), you must, at no additional cost, fee or expense +to the user, provide a copy, a means of exporting a copy, or a means +of obtaining a copy upon request, of the work in its original “Plain +Vanilla ASCII” or other form. Any alternate format must include the +full Project Gutenberg™ License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg™ works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg™ electronic works +provided that: + + • You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg™ works calculated using the method + you already use to calculate your applicable taxes. The fee is owed + to the owner of the Project Gutenberg™ trademark, but he has + agreed to donate royalties under this paragraph to the Project + Gutenberg Literary Archive Foundation. Royalty payments must be paid + within 60 days following each date on which you prepare (or are + legally required to prepare) your periodic tax returns. Royalty + payments should be clearly marked as such and sent to the Project + Gutenberg Literary Archive Foundation at the address specified in + Section 4, “Information about donations to the Project Gutenberg + Literary Archive Foundation.” + + • You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg™ + License. You must require such a user to return or destroy all + copies of the works possessed in a physical medium and discontinue + all use of and all access to other copies of Project Gutenberg™ + works. + + • You provide, in accordance with paragraph 1.F.3, a full refund of + any money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days of + receipt of the work. + + • You comply with all other terms of this agreement for free + distribution of Project Gutenberg™ works. + + +1.E.9. If you wish to charge a fee or distribute a Project +Gutenberg™ electronic work or group of works on different terms than +are set forth in this agreement, you must obtain permission in writing +from the Project Gutenberg Literary Archive Foundation, the manager of +the Project Gutenberg™ trademark. Contact the Foundation as set +forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +works not protected by U.S. copyright law in creating the Project +Gutenberg™ collection. Despite these efforts, Project Gutenberg™ +electronic works, and the medium on which they may be stored, may +contain “Defects,” such as, but not limited to, incomplete, inaccurate +or corrupt data, transcription errors, a copyright or other +intellectual property infringement, a defective or damaged disk or +other medium, a computer virus, or computer codes that damage or +cannot be read by your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right +of Replacement or Refund” described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg™ trademark, and any other party distributing a Project +Gutenberg™ electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium +with your written explanation. The person or entity that provided you +with the defective work may elect to provide a replacement copy in +lieu of a refund. If you received the work electronically, the person +or entity providing it to you may choose to give you a second +opportunity to receive the work electronically in lieu of a refund. If +the second copy is also defective, you may demand a refund in writing +without further opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO +OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of +damages. If any disclaimer or limitation set forth in this agreement +violates the law of the state applicable to this agreement, the +agreement shall be interpreted to make the maximum disclaimer or +limitation permitted by the applicable state law. The invalidity or +unenforceability of any provision of this agreement shall not void the +remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg™ electronic works in +accordance with this agreement, and any volunteers associated with the +production, promotion and distribution of Project Gutenberg™ +electronic works, harmless from all liability, costs and expenses, +including legal fees, that arise directly or indirectly from any of +the following which you do or cause to occur: (a) distribution of this +or any Project Gutenberg™ work, (b) alteration, modification, or +additions or deletions to any Project Gutenberg™ work, and (c) any +Defect you cause. + +Section 2. Information about the Mission of Project Gutenberg™ + +Project Gutenberg™ is synonymous with the free distribution of +electronic works in formats readable by the widest variety of +computers including obsolete, old, middle-aged and new computers. It +exists because of the efforts of hundreds of volunteers and donations +from people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need are critical to reaching Project Gutenberg™’s +goals and ensuring that the Project Gutenberg™ collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg™ and future +generations. To learn more about the Project Gutenberg Literary +Archive Foundation and how your efforts and donations can help, see +Sections 3 and 4 and the Foundation information page at www.gutenberg.org. + +Section 3. Information about the Project Gutenberg Literary Archive Foundation + +The Project Gutenberg Literary Archive Foundation is a non-profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation’s EIN or federal tax identification +number is 64-6221541. Contributions to the Project Gutenberg Literary +Archive Foundation are tax deductible to the full extent permitted by +U.S. federal laws and your state’s laws. + +The Foundation’s business office is located at 809 North 1500 West, +Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up +to date contact information can be found at the Foundation’s website +and official page at www.gutenberg.org/contact + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg™ depends upon and cannot survive without widespread +public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine-readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To SEND +DONATIONS or determine the status of compliance for any particular state +visit www.gutenberg.org/donate. + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including checks, online payments and credit card donations. To +donate, please visit: www.gutenberg.org/donate. + +Section 5. General Information About Project Gutenberg™ electronic works + +Professor Michael S. Hart was the originator of the Project +Gutenberg™ concept of a library of electronic works that could be +freely shared with anyone. For forty years, he produced and +distributed Project Gutenberg™ eBooks with only a loose network of +volunteer support. + +Project Gutenberg™ eBooks are often created from several printed +editions, all of which are confirmed as not protected by copyright in +the U.S. unless a copyright notice is included. Thus, we do not +necessarily keep eBooks in compliance with any particular paper +edition. + +Most people start at our website which has the main PG search +facility: www.gutenberg.org. + +This website includes information about Project Gutenberg™, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. + + From 67230faa74ed5f700137e6308a199bb725a981cc Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Thu, 26 Feb 2026 11:27:43 +0000 Subject: [PATCH 34/56] Trigram extraction solution --- chapters/chap12.ipynb | 111 +++++++++++++++++++++++++++++++++--------- 1 file changed, 89 insertions(+), 22 deletions(-) diff --git a/chapters/chap12.ipynb b/chapters/chap12.ipynb index 44747cbe..94364605 100644 --- a/chapters/chap12.ipynb +++ b/chapters/chap12.ipynb @@ -1541,7 +1541,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 51, "id": "495ad429", "metadata": {}, "outputs": [], @@ -2425,7 +2425,7 @@ }, { "cell_type": "code", - "execution_count": 82, + "execution_count": 75, "id": "e0938222", "metadata": {}, "outputs": [], @@ -2455,14 +2455,6 @@ "Ask a VA, \"What are the differences between large language models like GPT and Markov chain text analysis?\"\n" ] }, - { - "cell_type": "markdown", - "id": "56d3cedb", - "metadata": {}, - "source": [ - "### BOOKMARK" - ] - }, { "cell_type": "markdown", "id": "060c9ef6", @@ -2479,7 +2471,7 @@ }, { "cell_type": "code", - "execution_count": 122, + "execution_count": 76, "id": "f38a61ff", "metadata": {}, "outputs": [], @@ -2498,7 +2490,7 @@ }, { "cell_type": "code", - "execution_count": 123, + "execution_count": 77, "id": "d047e546", "metadata": {}, "outputs": [], @@ -2528,7 +2520,7 @@ }, { "cell_type": "code", - "execution_count": 124, + "execution_count": 78, "id": "6b8932ee", "metadata": { "tags": [] @@ -2559,7 +2551,7 @@ }, { "cell_type": "code", - "execution_count": 125, + "execution_count": 79, "id": "44c3f0d8", "metadata": { "tags": [] @@ -2595,12 +2587,39 @@ }, { "cell_type": "code", - "execution_count": 80, + "execution_count": 117, "id": "3fcf85f4", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "\n", + "# FIRST solution\n", + "def add_trigram(trigram: list):\n", + "\n", + " # Extract all elments from trigram\n", + " first, second, third = trigram\n", + "\n", + " # Create new key\n", + " key = first, second \n", + "\n", + " # Check if key already in trigram\n", + " if key not in trigram:\n", + " # Assign key with value of third\n", + " successor_map[key] = [third]\n", + " else:\n", + " # If key already in dict, add new value of third\n", + " successor_map[key].append(third)\n", + "\n", + "\n", + "# SECOND solution\n", + "def add_trigram_by_default(trigram: list):\n", + " \n", + " first, second, third = trigram\n", + "\n", + " key = first, second\n", + "\n", + " successor_map.setdefault(key, []).append(third)\n" ] }, { @@ -2613,16 +2632,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 118, "id": "d9e554e3", "metadata": {}, "outputs": [], "source": [ "def process_word_trigram(word):\n", + "\n", " window.append(word)\n", "\n", " if len(window) == 3:\n", - " add_trigram(window)\n", + "\n", + " # add_trigram(window)\n", + " add_trigram_by_default(window)\n", + " \n", " window.pop(0)" ] }, @@ -2638,7 +2661,7 @@ }, { "cell_type": "code", - "execution_count": 82, + "execution_count": 119, "id": "8c2ee21c", "metadata": { "tags": [] @@ -2646,10 +2669,13 @@ "outputs": [], "source": [ "successor_map = {}\n", + "\n", "window = []\n", "\n", "for string in song.split():\n", + "\n", " word = string.strip(punctuation).lower()\n", + "\n", " process_word_trigram(word)" ] }, @@ -2666,12 +2692,45 @@ }, { "cell_type": "code", - "execution_count": 83, + "execution_count": 120, "id": "b13384e3", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{('half', 'a'): ['bee'],\n", + " ('a', 'bee'): ['philosophically'],\n", + " ('bee', 'philosophically'): ['must'],\n", + " ('philosophically', 'must'): ['ipso'],\n", + " ('must', 'ipso'): ['facto'],\n", + " ('ipso', 'facto'): ['half'],\n", + " ('facto', 'half'): ['not'],\n", + " ('half', 'not'): ['be'],\n", + " ('not', 'be'): ['but'],\n", + " ('be', 'but'): ['half'],\n", + " ('but', 'half'): ['the'],\n", + " ('half', 'the'): ['bee'],\n", + " ('the', 'bee'): ['has'],\n", + " ('bee', 'has'): ['got'],\n", + " ('has', 'got'): ['to'],\n", + " ('got', 'to'): ['be'],\n", + " ('to', 'be'): ['vis'],\n", + " ('be', 'vis'): ['a'],\n", + " ('vis', 'a'): ['vis'],\n", + " ('a', 'vis'): ['its'],\n", + " ('vis', 'its'): ['entity'],\n", + " ('its', 'entity'): [\"d'you\"],\n", + " ('entity', \"d'you\"): ['see']}" + ] + }, + "execution_count": 120, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "successor_map" ] @@ -2686,7 +2745,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 121, "id": "62c2177f", "metadata": {}, "outputs": [], @@ -2709,6 +2768,14 @@ "In the next exercise, you'll use the results to generate new random text.\n" ] }, + { + "cell_type": "markdown", + "id": "56d3cedb", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "04d7a6ee", From 4e3d697e62dfffc6eb1d87280d82c48f12d867b0 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Fri, 27 Feb 2026 16:42:59 +0000 Subject: [PATCH 35/56] final exercise solutions --- chapters/chap12.ipynb | 111 ++++++++++++++++++++++++++++++++++-------- 1 file changed, 90 insertions(+), 21 deletions(-) diff --git a/chapters/chap12.ipynb b/chapters/chap12.ipynb index 94364605..2ec303d9 100644 --- a/chapters/chap12.ipynb +++ b/chapters/chap12.ipynb @@ -2587,7 +2587,7 @@ }, { "cell_type": "code", - "execution_count": 117, + "execution_count": 107, "id": "3fcf85f4", "metadata": {}, "outputs": [], @@ -2595,16 +2595,16 @@ "# Solution goes here\n", "\n", "# FIRST solution\n", - "def add_trigram(trigram: list):\n", + "def add_trigram(window_of_3_words: list):\n", "\n", " # Extract all elments from trigram\n", - " first, second, third = trigram\n", + " first, second, third = window_of_3_words\n", "\n", " # Create new key\n", " key = first, second \n", "\n", " # Check if key already in trigram\n", - " if key not in trigram:\n", + " if key not in window_of_3_words:\n", " # Assign key with value of third\n", " successor_map[key] = [third]\n", " else:\n", @@ -2613,9 +2613,9 @@ "\n", "\n", "# SECOND solution\n", - "def add_trigram_by_default(trigram: list):\n", + "def add_trigram_by_default(window_of_3_words: list):\n", " \n", - " first, second, third = trigram\n", + " first, second, third = window_of_3_words\n", "\n", " key = first, second\n", "\n", @@ -2632,7 +2632,7 @@ }, { "cell_type": "code", - "execution_count": 118, + "execution_count": 108, "id": "d9e554e3", "metadata": {}, "outputs": [], @@ -2661,7 +2661,7 @@ }, { "cell_type": "code", - "execution_count": 119, + "execution_count": 109, "id": "8c2ee21c", "metadata": { "tags": [] @@ -2692,7 +2692,7 @@ }, { "cell_type": "code", - "execution_count": 120, + "execution_count": 110, "id": "b13384e3", "metadata": { "tags": [] @@ -2726,7 +2726,7 @@ " ('entity', \"d'you\"): ['see']}" ] }, - "execution_count": 120, + "execution_count": 110, "metadata": {}, "output_type": "execute_result" } @@ -2745,7 +2745,7 @@ }, { "cell_type": "code", - "execution_count": 121, + "execution_count": 84, "id": "62c2177f", "metadata": {}, "outputs": [], @@ -2788,7 +2788,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 85, "id": "64e11f26", "metadata": { "tags": [] @@ -2812,14 +2812,29 @@ }, { "cell_type": "code", - "execution_count": 86, + "execution_count": 111, "id": "fe2d93fa", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "('must', 'ipso')" + ] + }, + "execution_count": 111, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "successors = list(successor_map)\n", + "\n", + "# print(successors)\n", + "\n", "bigram = random.choice(successors)\n", - "bigram" + "\n", + "bigram\n" ] }, { @@ -2840,12 +2855,34 @@ }, { "cell_type": "code", - "execution_count": 89, + "execution_count": 121, "id": "22210a5c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "('philosophically', 'must') ('philosophically', 'must') ('got', 'to') ('but', 'half') ('but', 'half') ('a', 'bee') ('ipso', 'facto') ('half', 'not') ('but', 'half') ('entity', \"d'you\") ('bee', 'philosophically') ('be', 'vis') ('to', 'be') ('facto', 'half') ('vis', 'a') ('facto', 'half') ('but', 'half') ('ipso', 'facto') ('vis', 'its') ('philosophically', 'must') ('got', 'to') ('half', 'not') ('vis', 'a') ('the', 'bee') ('bee', 'has') ('the', 'bee') ('bee', 'philosophically') ('bee', 'has') ('half', 'not') ('facto', 'half') ('half', 'not') ('half', 'not') ('bee', 'has') ('the', 'bee') ('half', 'not') ('a', 'vis') ('entity', \"d'you\") ('vis', 'a') ('half', 'not') ('be', 'vis') ('philosophically', 'must') ('ipso', 'facto') ('ipso', 'facto') ('must', 'ipso') ('must', 'ipso') ('philosophically', 'must') ('vis', 'a') ('vis', 'its') ('a', 'vis') ('be', 'vis') " + ] + } + ], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "\n", + "for i in range(50):\n", + "\n", + " bigram_successors = successor_map.get(bigram) # get current bigram values\n", + "\n", + " # print(bigram_successors)\n", + "\n", + " next_word = random.choice(successors)\n", + "\n", + " print(next_word, end=\" \")\n", + "\n", + " # Sliding window by assigning the second element the next word\n", + " current_bigram = (bigram[1], next_word)\n", + " " ] }, { @@ -2860,11 +2897,37 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 124, "id": "3d4efda7", "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "must ipso facto half not be but half the bee has got to be vis a vis its entity d'you see " + ] + } + ], + "source": [ + "# Grab a random bigram (key)\n", + "current_keys = random.choice(list(successor_map.keys()))\n", + "\n", + "for i in range(50):\n", + " # Look up the specific successors for THIS key\n", + " possible_next_word = successor_map.get(current_keys)\n", + "\n", + " # Breaks if there is no next-word (end of the book)\n", + " if not possible_next_word:\n", + " break\n", + "\n", + " # Pick one of the possible next words\n", + " next_word = random.choice(possible_next_word)\n", + "\n", + " print(next_word, end=\" \")\n", + "\n", + " current_keys = (current_keys[1], next_word)" + ] }, { "cell_type": "markdown", @@ -2881,6 +2944,12 @@ "\n", "Text license: [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-nc-sa/4.0/)\n" ] + }, + { + "cell_type": "markdown", + "id": "c25746d8", + "metadata": {}, + "source": [] } ], "metadata": { From f1546e63c166a7249a22a8db30c2a074d699ca1c Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Sun, 1 Mar 2026 15:20:29 +0000 Subject: [PATCH 36/56] FIX error: db type could not be determined --- .DS_Store | Bin 6148 -> 6148 bytes chapters/camel-spotting-book.txt | 2 + chapters/chap13.ipynb | 491 ++++++++++++++++++++++++---- chapters/config.yaml | 5 + chapters/photo_info/captions | 0 chapters/photo_info/captions-shm | Bin 0 -> 32768 bytes chapters/photo_info/captions-wal | Bin 0 -> 20632 bytes chapters/photo_info/captions.dat | Bin 0 -> 42 bytes chapters/photo_info/captions.dir | 1 + chapters/photo_info/db | 0 chapters/photos.zip | Bin 0 -> 75697 bytes chapters/photos/feb-2023/photo1.jpg | Bin 0 -> 7820 bytes chapters/photos/feb-2023/photo2.jpg | Bin 0 -> 5286 bytes chapters/photos/jan-2023/photo1.jpg | Bin 0 -> 13732 bytes chapters/photos/jan-2023/photo2.jpg | Bin 0 -> 15077 bytes chapters/photos/jan-2023/photo3.jpg | Bin 0 -> 9368 bytes chapters/photos/mar-2023/photo1.jpg | Bin 0 -> 10328 bytes chapters/photos/mar-2023/photo2.jpg | Bin 0 -> 13732 bytes chapters/photos/notes.txt | 1 + 19 files changed, 434 insertions(+), 66 deletions(-) create mode 100644 chapters/camel-spotting-book.txt create mode 100644 chapters/config.yaml create mode 100644 chapters/photo_info/captions create mode 100644 chapters/photo_info/captions-shm create mode 100644 chapters/photo_info/captions-wal create mode 100644 chapters/photo_info/captions.dat create mode 100644 chapters/photo_info/captions.dir create mode 100644 chapters/photo_info/db create mode 100644 chapters/photos.zip create mode 100644 chapters/photos/feb-2023/photo1.jpg create mode 100644 chapters/photos/feb-2023/photo2.jpg create mode 100644 chapters/photos/jan-2023/photo1.jpg create mode 100644 chapters/photos/jan-2023/photo2.jpg create mode 100644 chapters/photos/jan-2023/photo3.jpg create mode 100644 chapters/photos/mar-2023/photo1.jpg create mode 100644 chapters/photos/mar-2023/photo2.jpg create mode 100644 chapters/photos/notes.txt diff --git a/.DS_Store b/.DS_Store index 62a09150f793a35aa58690b307a2d38aa8cd4f9f..db3ba2d3b83cd2bde5a7a11ba639a7f8ffd637bb 100644 GIT binary patch delta 16 XcmZoMXffEZfQi}E)L`>srbJNyFFFM# delta 16 XcmZoMXffEZfQi}6$awQ&rbJNyFFyq* diff --git a/chapters/camel-spotting-book.txt b/chapters/camel-spotting-book.txt new file mode 100644 index 00000000..83b92842 --- /dev/null +++ b/chapters/camel-spotting-book.txt @@ -0,0 +1,2 @@ +Years of observation: 1.5 +Camels spotted: 23 diff --git a/chapters/chap13.ipynb b/chapters/chap13.ipynb index ba90420d..302fccd0 100644 --- a/chapters/chap13.ipynb +++ b/chapters/chap13.ipynb @@ -84,9 +84,17 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "zsh:1: unmatched `\n" + ] + } + ], "source": [ - "!unzip -o photos.zip" + "!`unzip -o photos.zip" ] }, { @@ -121,7 +129,7 @@ "For example, when you open a file, Python looks for it in the current working directory.\n", "\n", "The `os` module provides functions for working with files and directories (\"os\" stands for \"operating system\"). \n", - "It provides a function called `getcwd` that gets the name of the current working directory." + "It provides a function called `getcwd` that gets the name of the \"current working directory\"." ] }, { @@ -137,7 +145,7 @@ "\n", "import os\n", "\n", - "def getcwd():\n", + "def getcwd(): # get current working directory\n", " return \"/home/dinsdale\"\n", "\n", "os.getcwd = getcwd" @@ -148,7 +156,18 @@ "execution_count": 6, "id": "c7b209f6", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'/home/dinsdale'" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "import os\n", "\n", @@ -175,9 +194,20 @@ "execution_count": 7, "id": "66a15e44", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'/home/dinsdale/memo.txt'" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "os.path.abspath('memo.txt')" + "os.path.abspath('memo.txt') # will produce leading \"/\"" ] }, { @@ -195,9 +225,20 @@ "execution_count": 8, "id": "a22d2675", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['notes.txt', 'mar-2023', 'jan-2023', 'feb-2023']" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "os.listdir('photos')" + "os.listdir('photos') # lists all items in the directoy/folder" ] }, { @@ -214,9 +255,20 @@ "execution_count": 9, "id": "a217eac7", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['photo2.jpg', 'photo3.jpg', 'photo1.jpg']" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "os.listdir('photos/jan-2023')" + "os.listdir('photos/jan-2023') # look into the next directory level" ] }, { @@ -232,9 +284,20 @@ "execution_count": 10, "id": "aa56aeac", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "os.path.exists('photos')" + "os.path.exists('photos') # Boolean check" ] }, { @@ -242,9 +305,20 @@ "execution_count": 11, "id": "9049009a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "os.path.exists('photos/apr-2023')" + "os.path.exists('photos/apr-2023') # Boolean check" ] }, { @@ -260,9 +334,20 @@ "execution_count": 12, "id": "0feddb06", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "os.path.isdir('photos')" + "os.path.isdir('photos') # Boolean check (is it a diectroy?)" ] }, { @@ -278,9 +363,20 @@ "execution_count": 13, "id": "e9f6a762", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "os.path.isfile('photos/notes.txt')" + "os.path.isfile('photos/notes.txt') # Boolean check (is it a file?)" ] }, { @@ -301,9 +397,20 @@ "execution_count": 14, "id": "eb738376", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'photos/jan-2023/photo1.jpg'" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "os.path.join('photos', 'jan-2023', 'photo1.jpg')" + "os.path.join('photos', 'jan-2023', 'photo1.jpg') # combines into one pathname, os agnostic!" ] }, { @@ -322,8 +429,11 @@ "## f-strings\n", "\n", "One way for programs to store data is to write it to a text file.\n", + "\n", "For example, suppose you are a camel spotter, and you want to record the number of camels you have seen during a period of observation.\n", + "\n", "And suppose that in one and a half years, you have spotted `23` camels.\n", + "\n", "The data in your camel-spotting book might look like this." ] }, @@ -344,7 +454,9 @@ "metadata": {}, "source": [ "To write this data to a file, you can use the `write` method, which we saw in Chapter 8.\n", + "\n", "The argument of `write` has to be a string, so if we want to put other values in a file, we have to convert them to strings.\n", + "\n", "The easiest way to do that is with the built-in function `str`.\n", "\n", "Here's what that looks like:" @@ -357,9 +469,12 @@ "metadata": {}, "outputs": [], "source": [ - "writer = open('camel-spotting-book.txt', 'w')\n", - "writer.write(str(num_years))\n", - "writer.write(str(num_camels))\n", + "writer = open('camel-spotting-book.txt', 'w') # create or open a file in write mode\n", + "\n", + "writer.write(str(num_years)) # can only take strings\n", + "\n", + "writer.write(str(num_camels)) # also uses 'str()' to convert to string\n", + "\n", "writer.close()" ] }, @@ -369,6 +484,7 @@ "metadata": {}, "source": [ "That works, but `write` doesn't add a space or newline unless you include it explicitly.\n", + "\n", "If we read back the file, we see that the two numbers are run together." ] }, @@ -377,7 +493,18 @@ "execution_count": 17, "id": "5209eda3", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'1.523'" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "open('camel-spotting-book.txt').read()" ] @@ -388,9 +515,11 @@ "metadata": {}, "source": [ "At the very least, we should add whitespace between the numbers.\n", + "\n", "And while we're at it, let's add some explanatory text.\n", "\n", "To write a combination of strings and other values, we can use an **f-string**, which is a string that has the letter `f` before the opening quotation mark, and contains one or more Python expressions in curly braces.\n", + "\n", "The following f-string contains one expression, which is a variable name." ] }, @@ -399,9 +528,17 @@ "execution_count": 18, "id": "0f202d66", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "I have spotted 23 camels\n" + ] + } + ], "source": [ - "f'I have spotted {num_camels} camels'" + "print(f'I have spotted {num_camels} camels')" ] }, { @@ -410,6 +547,7 @@ "metadata": {}, "source": [ "The result is a string where the expression has been evaluated and replaced with the result.\n", + "\n", "There can be more than one expression." ] }, @@ -418,9 +556,17 @@ "execution_count": 19, "id": "33c5f77f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "In 3.0 years I have spotted 11.5 camels\n" + ] + } + ], "source": [ - "f'In {num_years} years I have spotted {num_camels} camels'" + "print(f'In {num_years * 2} years I have spotted {num_camels / 2} camels')" ] }, { @@ -436,9 +582,21 @@ "execution_count": 20, "id": "1fe7111c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'In 18 months I have spotted 23 camels'" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "line = f'In {round(num_years * 12)} months I have spotted {num_camels} camels'\n", + "\n", "line" ] }, @@ -458,8 +616,11 @@ "outputs": [], "source": [ "writer = open('camel-spotting-book.txt', 'w')\n", + "\n", "writer.write(f'Years of observation: {num_years}\\n')\n", + "\n", "writer.write(f'Camels spotted: {num_camels}\\n')\n", + "\n", "writer.close()" ] }, @@ -478,9 +639,20 @@ "execution_count": 22, "id": "8d9eaf8d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Years of observation: 1.5\n", + "Camels spotted: 23\n", + "\n" + ] + } + ], "source": [ "data = open('camel-spotting-book.txt').read()\n", + "\n", "print(data)" ] }, @@ -497,11 +669,23 @@ "execution_count": 23, "id": "ae3060c1", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Here is a list [1, 2, 3] and a dictionary {'one': 1}\n" + ] + } + ], "source": [ "t = [1, 2, 3]\n", + "\n", "d = {'one': 1}\n", - "f'Here is a list {t} and a dictionary {d}'" + "\n", + "# Prints the list and dict as is!\n", + "print(f'Here is a list {t} and a dictionary {d}')\n", + "# But individual elements can still be access via index (list []) or key (dict ['one'])" ] }, { @@ -521,7 +705,16 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "TypeError", + "evalue": "can only concatenate list (not \"int\") to list", + "output_type": "error", + "traceback": [ + "\u001b[31mTypeError\u001b[39m\u001b[31m:\u001b[39m can only concatenate list (not \"int\") to list\n" + ] + } + ], "source": [ "%%expect TypeError\n", "\n", @@ -537,7 +730,13 @@ "\n", "One of the reasons programs read and write files is to store **configuration data**, which is information that specifies what the program should do and how.\n", "\n", - "For example, in a program that searches for duplicate photos, we might have a dictionary called `config` that contains the name of the directory to search, the name of another directory where it should store the results, and a list of file extensions it should use to identify image files.\n", + "For example, in a program that searches for duplicate photos.\n", + "\n", + "We might have a dictionary called `config` that contains the name of the directory to search.\n", + "\n", + "It also has the name of another directory where it should store the results.\n", + "\n", + "And finally a list of file extensions it should use to identify image files.\n", "\n", "Here's what it might look like:" ] @@ -549,10 +748,12 @@ "metadata": {}, "outputs": [], "source": [ - "config = {\n", - " 'photo_dir': 'photos',\n", - " 'data_dir': 'photo_info',\n", - " 'extensions': ['jpg', 'jpeg'],\n", + "config = { # dict\n", + " 'photo_dir': 'photos', # main directory (string)\n", + "\n", + " 'data_dir': 'photo_info', # another directory (string)\n", + "\n", + " 'extensions': ['jpg', 'jpeg'], # file extensions (list of strings)\n", "}" ] }, @@ -581,8 +782,9 @@ "\n", "try:\n", " import yaml\n", + "\n", "except ImportError:\n", - " !pip install pyyaml" + " %pip install pyyaml # 'py-yaml' package install." ] }, { @@ -594,10 +796,13 @@ "source": [ "import yaml\n", "\n", - "config_filename = 'config.yaml'\n", - "writer = open(config_filename, 'w')\n", - "yaml.dump(config, writer)\n", - "writer.close()" + "config_filename = 'config.yaml' # string to variable\n", + "\n", + "writer = open(config_filename, 'w') # open filename = to variable in 'write' mode\n", + "\n", + "yaml.dump(config, writer) # empty 'config' variable into the file open for writing by the 'writer' variable\n", + "\n", + "writer.close() # close to ensure memory is cleaned and file saved" ] }, { @@ -613,10 +818,24 @@ "execution_count": 28, "id": "8646dd2f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "data_dir: photo_info\n", + "extensions:\n", + "- jpg\n", + "- jpeg\n", + "photo_dir: photos\n", + "\n" + ] + } + ], "source": [ - "readback = open(config_filename).read()\n", - "print(readback)" + "readback = open(config_filename).read() # open method -> pass config filename -> read() method within open()\n", + "\n", + "print(readback) # print variable contents" ] }, { @@ -632,11 +851,36 @@ "execution_count": 29, "id": "e8ce2e4f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'data_dir': 'photo_info',\n", + " 'extensions': ['jpg', 'jpeg'],\n", + " 'photo_dir': 'photos'}" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "reader = open(config_filename) # open config and put in variable\n", + "\n", + "config_readback = yaml.safe_load(reader) # use .safe_load() method from yaml library\n", + "\n", + "config_readback # call contents extracted via previous method" + ] + }, + { + "cell_type": "markdown", + "id": "e4c23609", + "metadata": {}, "source": [ - "reader = open(config_filename)\n", - "config_readback = yaml.safe_load(reader)\n", - "config_readback" + "**Readback** variable printing above removes the dictionary format.\n", + "\n", + "**Safe Load** keeps the dictionary format." ] }, { @@ -652,7 +896,18 @@ "execution_count": 30, "id": "871d6ad5", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "config is config_readback" ] @@ -663,7 +918,9 @@ "metadata": {}, "source": [ "Converting an object like a dictionary to a string is called **serialization**.\n", + "\n", "Converting the string back to an object is called **deserialization**.\n", + "\n", "If you serialize and then deserialize an object, the result should be equivalent to the original." ] }, @@ -675,12 +932,19 @@ "## Shelve\n", "\n", "So far we've been reading and writing text files -- now let's consider databases.\n", + "\n", "A **database** is a file that is organized for storing data.\n", + "\n", "Some databases are organized like a table with rows and columns of information.\n", + "\n", "Others are organized like a dictionary that maps from keys to values; they are sometimes called **key-value stores**.\n", "\n", + "---\n", + "\n", "The `shelve` module provides functions for creating and updating a key-value store called a \"shelf\".\n", + "\n", "As an example, we'll create a shelf to contain captions for the figures in the `photos` directory.\n", + "\n", "We'll use the `config` dictionary to get the name of the directory where we should put the shelf." ] }, @@ -689,9 +953,20 @@ "execution_count": 31, "id": "70a6d625", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'photo_info'" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "config['data_dir']" + "config['data_dir'] # via key get value (which is a string for the directory)" ] }, { @@ -709,7 +984,9 @@ "metadata": {}, "outputs": [], "source": [ - "os.makedirs(config['data_dir'], exist_ok=True)" + "os.makedirs(config['data_dir'], exist_ok=True) # looks up the key in config and gets its value.\n", + "# 'makedirs' creates directory at that path\n", + "# 'exist_ok=True' means do not raise an error if directory already exists." ] }, { @@ -725,9 +1002,21 @@ "execution_count": 33, "id": "f5aeb7ab", "metadata": {}, - "outputs": [], - "source": [ - "db_file = os.path.join(config['data_dir'], 'captions')\n", + "outputs": [ + { + "data": { + "text/plain": [ + "'photo_info/captions'" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "db_file = os.path.join(config['data_dir'], 'captions') # make path including name and name the shelf.\n", + "\n", "db_file" ] }, @@ -737,6 +1026,7 @@ "metadata": {}, "source": [ "Now we can use `shelve.open` to open the shelf file.\n", + "\n", "The argument `c` indicates that the file should be created if necessary." ] }, @@ -745,14 +1035,35 @@ "execution_count": 34, "id": "291ea875", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "import shelve\n", + "import os\n", + "import dbm.dumb\n", "\n", - "db = shelve.open(db_file, 'c')\n", + "db = shelve.Shelf(dbm.dumb.open(db_file, 'n'))\n", "db" ] }, + { + "cell_type": "markdown", + "id": "b0b9eec0", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "0e4a2fb3", @@ -761,6 +1072,7 @@ "The return value is officially a `DbfilenameShelf` object, more casually called a shelf object.\n", "\n", "The shelf object behaves in many ways like a dictionary.\n", + "\n", "For example, we can use the bracket operator to add an item, which is a mapping from a key to a value." ] }, @@ -772,6 +1084,7 @@ "outputs": [], "source": [ "key = 'jan-2023/photo1.jpg' \n", + "\n", "db[key] = 'Cat nose'" ] }, @@ -790,9 +1103,21 @@ "execution_count": 36, "id": "d4e06b19", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'Cat nose'" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "value = db[key]\n", + "\n", "value" ] }, @@ -809,9 +1134,21 @@ "execution_count": 37, "id": "89a0936c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'Close up view of a cat nose'" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "db[key] = 'Close up view of a cat nose'\n", + "\n", "db[key]" ] }, @@ -828,7 +1165,18 @@ "execution_count": 38, "id": "7d0c4cff", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['jan-2023/photo1.jpg']" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "list(db.keys())" ] @@ -838,7 +1186,18 @@ "execution_count": 39, "id": "a9db327d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['Close up view of a cat nose']" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "list(db.values())" ] @@ -1955,7 +2314,7 @@ "metadata": { "celltoolbar": "Tags", "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "thinkpy", "language": "python", "name": "python3" }, @@ -1969,7 +2328,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.13.5" } }, "nbformat": 4, diff --git a/chapters/config.yaml b/chapters/config.yaml new file mode 100644 index 00000000..3de39c6f --- /dev/null +++ b/chapters/config.yaml @@ -0,0 +1,5 @@ +data_dir: photo_info +extensions: +- jpg +- jpeg +photo_dir: photos diff --git a/chapters/photo_info/captions b/chapters/photo_info/captions new file mode 100644 index 00000000..e69de29b diff --git a/chapters/photo_info/captions-shm b/chapters/photo_info/captions-shm new file mode 100644 index 0000000000000000000000000000000000000000..a82ce41a419e42428dc1695a51c62abf333f1bef GIT binary patch literal 32768 zcmeI)u?Ye(6b9gUYOjKD=nQUfL)$aP0t7S8;kMru@9M+fBc{l$LIRMZ^m);Y2)e zz{Gvu%tq)Ui< zLdVp%2Sb8~ugf$USGO;e0Xsh%~} z8Pa3Qp~u%%8tPhl-?etNTT?{$I$EqtVOlw1<*Z-T9wLVT0tg_000IagfB*srAb>y( z3CtM{o#C*t-5t1ddGBd96X?^Nn6bx`woH!49b4**eAp~ipKU-hR7D?y*I1Nd9}7ryK8}8YNz$v)4lpvuj?Dj zwtAiaZ@-{Db$-;9yV!5h$*ZjdeMcaG00IagfB*srAb5Q7U^9GD z{PSXWq*>3EeSzBi;>-#G1Q0*~0R#|0009ILKmdXN0ypXfrbb8XFF(KE)%5~~bu83D zAb-CRq95)z^Asu->vI!hjhJwVVw$f5C|ZE00IagfB*srAbrIr+t@3Z(@KWtpkv3i)XYi3-VyB?@^!(J6WW-qQ>l literal 0 HcmV?d00001 diff --git a/chapters/photo_info/captions.dir b/chapters/photo_info/captions.dir new file mode 100644 index 00000000..f82bbec1 --- /dev/null +++ b/chapters/photo_info/captions.dir @@ -0,0 +1 @@ +'jan-2023/photo1.jpg', (0, 23) diff --git a/chapters/photo_info/db b/chapters/photo_info/db new file mode 100644 index 00000000..e69de29b diff --git a/chapters/photos.zip b/chapters/photos.zip new file mode 100644 index 0000000000000000000000000000000000000000..fd833d71b65d03823bb62bc91583ddabff89b33a GIT binary patch literal 75697 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

YLD25a(R7Q=brE7o8KK&nX^JzlqF|-J&DS<E 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'(drzfFFl@y@&_i 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 I{QAoO4?kfoegFUf literal 0 HcmV?d00001 diff --git a/chapters/photos/feb-2023/photo1.jpg b/chapters/photos/feb-2023/photo1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c398ca3cac06fd304a91cd6729e667661a817ee2 GIT binary patch literal 7820 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 bq4DN`xg1}~Zq{Y?0hjLOfN4?K`QrZp8?$Be literal 0 HcmV?d00001 diff --git a/chapters/photos/feb-2023/photo2.jpg b/chapters/photos/feb-2023/photo2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87179cd939f0b5af9a77ddb152a2e0de27874ee6 GIT binary patch literal 5286 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 literal 0 HcmV?d00001 diff --git a/chapters/photos/jan-2023/photo2.jpg b/chapters/photos/jan-2023/photo2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60602d9273f30c878f358d3303d46b2ee0a91eae GIT binary patch literal 15077 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 literal 0 HcmV?d00001 diff --git a/chapters/photos/jan-2023/photo3.jpg b/chapters/photos/jan-2023/photo3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23c7d34bd51f5b3a3107ecd0a2ecfa7c4e38c8f5 GIT binary patch literal 9368 zcmb7oby!@@v*sBX+%32hJTPdG0E4>)cXvW?2rj`AG-!Yz!9s#VaCdhJ5ZqmY!@y3y z-*@ls{U#S1v<56od)rw9fV?~_fC>NrGJp?41VC`yzY7_v7M*+a_9tbxV1eEX} z83bnt|AYcOgZHO3f%J~ob(-Qz7k&#i5kx)@kP|(m&(J=|JFflMNN%0AA2r0>^sVK=PC}t1h`*u@bGf~B>|zKpx&LbKn8g&3br*_kM2H+wbuQQdYP%;fkYy@ZbgXh<}F*9`~;@?1Xh zE({*M9{F%0C~|CKx-$RGY+D4kr*>Jw3}0MP&-T>tWvB`*N?D~ zfqg2wj=Pkeg0C2W?+-bktY1_)?J4@5Gy!qHNNf{C+nn}o^(9v;CW-vH7R4s z0KmZrQtheCgC~0I@&q+~3@@(XSO5b5ry1lxJATA1r#+RKqz6_mvB|%ZFL)bm zY9{*frFq{ZSyaonOwKI)MZ@ip1s6a7fkB9fNT7c$^Y6w5yUXO9;U`^kaluGVzSC^&8CG7|x@(^QEYw)W_5|3?%;+ljJ^^YS1NBdUlq23P zf9$sCqRv%w-nh}Qm2H?{w>xSyA`fSayz{=W6{Y<&fznSW?=o7EEY;$n9vde2;txro zCXBnrFE>jwz+rMYja@wKF%lDj>I)?bJxhFHS2X zc07KvTwjbmNR;VwUV&uAvO#4?kGoauhwA4I!|_1fpN9>*|pg^g2Np1w6BQPND_5#5zqW;=8U2uN+D4d;{Rxy`&$jz;epd?IM6wB$ zA4=hQThNClFfwR5Hqw19CRdEb*$!!)#e#1Ldi=g_ zqFxW(x+slpPnD_xQaUD^U4B(q7g8sz**El~6%nx>?!oIr3)O*Alm$_FY1i-4+=v(i zmv5gUQF8h*ipuqD#J3r57(}$j7%C4KEJwgN#q=R* zE_|6*^k*<*Y(+z-J^3r=?z-Cfg6I+n_BjlJ`VkbJPsn)MO@=R99Ov!p=p!Bj|2h}E z|I_LG-Qhw1>|3}q5(7Q^e<2Y58zGDfz`YeB7zG&-?LQ|1+%@6h(;{+-)2W-e5O6~! zf)hH_UYqAuo`UIJc_cMLK7Fm4ID@$Tdqg0MAzUpDVt&(frRv?INQaclXPg+(XYOAQ zGT~Fng)xXI-#@5GPLx$k1c2hy)mS zbbF7|xGCFC?(+ETHs$7$Q&l-pjc|TWI_bKWD{h|QU&N!3C|aru&uZ`Lp#FB}Q@k9Y zP`Y0drPp+){%#>xixgOmvN>?toQuv9h4}}^MDkS!WFH0E8Y1j2(l~2QA6|dwVs)d! z_Te0KW|S(PLw!iBxU@@w{Sogn{(X&IIZrX@@X`n;3~PVCX+qlpJN4~|5Z{7CUS{Y3 zaD;`eVz#qbaq3PkdorTcx=$~hH`u>fyxXmE8IiQS`z+)2iwz`Y11_|3k)u>+HXOp8 znZT7)r|#}Y+Tfu_&S}jI+vweAUYh+$4A(!Egcm+~>6!C7xC}FyWo9zLas>|-saqCl zk&m?}2V#D!-xhgAztxgG;nvj)C7&htRvi)IbfxqDh5+->a7C^?m%@zcb9ADLCZcYY zYyP7%_?*Xm(4A=t68f{$Y}8uWy~mMa{2h2FPqWJpF zLMC6pV39{E@7ij`LsHBSsH&B^ioIP&%wYV6K~JgW`BiuPoRjW?;b2#2+XS)6lK4Dv zV7zib9JN@(k$Acpzbdav>yPBbLA)%<&rNN$6AU1RM*eeSdu@bv2^XsIBWue|hPRcKiVOrLcA3sOTHYd+?iT|p% z)cB#+-L)UjquJC(pD@8aUzA|$`N4YQJK;6YAZs#iQA7vpXfz4v)PtwM$ zFvG+v$0>}WJq8;k8kU0yKHV;Au(NJKFKn4Sk+RsmM6yF3f7`xLD0^LlLV2;`q>W>I z7xpXP&G4{FS=0O5oHThfQPkZBti3k~;}tgRMmX&hxC{%FtnkJw)S9cv zLq#2^HX57^*C6wG46H_t{S1WOesd3Kl<=6XK(v)E)VnemE_EHgJow6U^jk-*cpIbQ3efZi z@u+NwX~`X@scx$+{I1Bji|?ch+#v8oO2acqxD83#SpVE2=&8s-bFXL{zG8$%MVTzj+uhuusw!b35#_`ilEp+ zazlabR(xxXKrI-7EcQgCD1PyoX6URSCr$dVedB!@haQ>BncLhbO?6Rb={9D6316hu zQ1XITDx& zyzP)w6Q5QXfkjEK1{-%qB)z$nT-}z>`$N$`QW0DKfxjV>_>nHhhVq|`Ny?@06bbQakw7{PRNB;cATnBtexRP{wp{XqkVJ=2{}uv z2d&VvH#R>3=#$eGh$-MwV)ZUH+S2Vh#6A64b8JxJjfyC@&Th&_jNRX+)y5hxDdc{NE8M2;N`tZY!HyCBvFkt>Jo3n=<_1Gtm0>Ipph@LC_YknI5kS&GFGzt zt(8kk9rx&Q4W4~kL&EdTUsUuqUaAMn>;_0%6pCE3YF!0>bIm_Y`A$!^AL}`|?(0SA zdd|IiTsQ+ZI|rMy0uL)v96s$omsjztd%fjpn-{HglO!g7KWVyuveo8&9YUE#HNmxn z9h;q9CX&71O3gjuE<(ptNW|r#seZq$J)^x{?OJeKueFfo&V9C~5qs2L+AC#scw~GV z_d2(gWBc6VUPjiU|858}*CMtxj2Pb3wk2VlJ|b*^eK9 z{>+$#QB9{dBGq&}k7){kZ3$c18`89Yd_5Xi3`|-C(Q50>$$a*VMDS=xM}oZCw-P89 z&~vi&ndlo?SymWB7?mA|3AnQ#H1JYP)MPhPW5J6=cDKpYpra@Fg=vF% z@2+SDEBFLCVCDqFrh0~Z8bu#V8Ou+WZdlA>nB`*aytNu~EmKKGfEK?s`4#eO`X)As ze0yqp%gpI$L3G<}s^{=d0ji_3Y$ELgYI7|j&WbQezkY8W29p$)DXQ^GO8vERd4!9c z@RqyCi<67srB_YGkk`H#N$}T$GjT+RBx`+ zQqBFOY6(O?#`p)_aGnvCt9MC+Z{Z@9`ha$Jf8sL%FhufwU1^R#gP9id8MT)B~J6(rT2VT=BGk<-$&*X>%T{IaB1 zxImVB*ouU+rjapR;A2W{(-AwE*kgHL6ME>AB5TnhYo0hQ`kb{nD|(>Sy6NXtY(=(r zpwcnJ1K%0-d!CEl4s(redS9>p$BNt6wtt4zcEM~~CB+xP-%8UFrPN2|_B)fe7lJuJ#~yP!6&OliMnMYmV+ET(JvJDMnnO=2Sq9sef!LVq-?HKUmC9xP3A zXIY8gzg-FMlP%^eBQy6 zM#s16skm*NrpNj6g>m*7I+ygveX|p+1~)GwMpIjo*>)Lp`_`{<-<#aS2cu&=CQ%R^ zP)jE(ReU-ImO`7pF+cl7^7}(poQuoC<0Y95`WjE{cNil`z7E^I@L?|D{V55@EnfcX zHl66Kg6_7hEl2;gFy37eF=8SLi}_2+k>F9f3n>vAGCRppQ|mnKUsQ&PgXrV*lBE@t z20u=CQa;tibdf+yX<6&ArkH7;^9erUE&nn7^BMg@>I`6u&p-7OduOYYJDXen%|k?d zWB5lhbSzbk|BnM$ytaDTvNTj=j_aE%9|^RdQz*#`xl%9qOGTc1r$ly|oc8O>Qzvsv zyx64S6k8PH{9N4;@1B)q!kAtzJxbDpOH74v_F-L@rZ}*T=)7kMi4M{e5Kqn`L3Q51 z1o3IN;CObqEwuN0DeePPI!*`&lf{7+o_^dRlLqdVL7&RxUKMotnJ8@!RADp8oXPno z%aoYSf{kKnYwoC>;yTEwTt)8BR$J9G#jmjB&=A79=T)>`=o*}X=N3vwoaa(4FF~OE zm>vq@rXf;7nop$mZnYbCCoD;3HU^*9JDNUgV885f&G-Zp@&7ba)tdWZ{;J^PfWnPZ zh~+iHwyb1;7aztwxIseO%HtbYwbP}*-BaNeMhOKu*hW?_oV@582f*5BeCB+)le$3U z0i`;EZRl$xx&OL}Y}ZFgHj#8lK%$^2};5#%0HW_w$O?w6Vc8Qk*LgCCBh z$#lcGc2kJ4)k=G#V1ufo6NKoaw>2+2Nx9TrogJz(39H4I9+hxu2>3BU!h<(2-W|Rb zJ#%VilHBJx)vrtZgx)#*We>&SrwLbq1>2R3=Z_+7rS^r8+|jVPnim!+Cj6BfC2H7H zk@?KJDpjk}Ha576^r0a#!7oAubK=YiiW6dL5ET}6@yK~}S{(hleRQ4xRk*wVCt(R7 z!f%+kL6Ja^92h`=r>RJ208CR500E(b6d9oK3>O%{14!U0X!<@v8h{3n0|z0)fv9f5 z@FoC-Cqsk402o{uB#;{fABHFC09*iYj^Tv_q5hSFG2z|LG2m7BJP1HADgZMeSm3J+obqp)78FjRj!grf z=$`@(LWM}QL%N{~~rYQ(D2n%%_mEG*0=KpZ9#{C~J*8f4U;KD;F zcrXP#^Q9j@e9#twSf59KFu2MV|HDNu7jcZ@LssIP*yla?WV>lpL9F8g7V<}4 zJ1j!X)kQxC0~qwq=F|65@9D=E%Ho|He#(aS%HE1FQGGtZvV62D^f4;h2phVBuUid#p%wB?QDb=tizQe{43&{2wcV`SSb+I;v(*X1aYE!Fpwt3VZAK9n~S zUeJ?*gOaHDaMW(!p<`!!bmlLrJrEHT65>hXDG^#OZ7h?(^P`(~zqF9utvg-wx}R~* zBA1tuw5aDl>@WSc$ZIKX3~@FXD`Inw4HHbvI}|Qoy=o|-k0K{Le37iIkyWWP?iWD1 zFL06d8Lm(&mJ9906JUam9G51}^u9Z>_0*Yq=b2iHLaa!Zn>f8^h)GF;<(qJhCdkTl zRCf%y3suS5Ni3?pT<7`z*djxF`@6WgySR3@1Az-wrHiqRV!=N9Hk4lv5YdGW60gU$ zUVI5kSz*PydObT$;vtyQH_~@uKEo%r0-&EmZz;U`B1nwTWY-_hetB?AzDD6j>58df zvH00iBflub%Ob21cld}n>9&s}zL)j+q0Rv5RP_6UsU?$LjNE<5Lq)f%N7K$hrfyP& zhXM7QVS`mw7F?JmE2|SZHkWJCQTWl}x@&>)_7fm|-?25>{FrPrs;FuG&41^08@uvr zrYf#e*@46v5s|>pH-%K8>;?BPFNn^~NyMS!0)DtR?X#OaKR0&!So?Q55syk_^=rRi zz0LNE!lOBnZQy=|%Pe0*zg+){*v^v^>(_4})+JI?xemIi$*sVvNp9RmDvM*0{_KX+ zs!O)er|}VSLWGw;$HN#?Bwv*n@xt%cqLWMrFTMQwL-<4)-o!o3j8q7zro|W{{|ovB z6x!tcli+BDd4sa+d-`U$h^%60O|~^*PnMl5d2wAO0*$Or$n*Y{Iocm}8eROh=!Fq>C{HrCdz5j)j^0}Q2z8Vr|A|-? z)03}gXZpV1ZI!6d{TNvi-P%%TuV`okod{uk5QRCX-1^z1bd8_hp~WF9;`kF_zD_+AI?dl!y@7zrfI}m8LQ1Deqawck^&yQJI`4Qs z#&K`vrXU*@dtL6AaVh`4>gCU;*|H@YGh*P2g%F7gxjX68nxQRTv5R!#DG7X~N2(R{bn^LkIBhJ+d;Tj7bdh`O0vLa1l-mk&f`{yPC5?mbd z{GvdsVZDXOaW?3!!YhLf^GGpVE6h7AQ9;!@9HQ$=i6a64T2WXxreC?wYvC- zFZT6O54W|OjQLYxcS6fAzHazX*QF7XP`59bF@LobKMBy*Lb5C$;~WOE}o;+k*|Lho;wk` z_P!HGRI+^eI&9hjD=ow+woaO8&KyP(Fv+yZHn5{-M9;-rM{x*Ro|5}UA+ zu^mYK+5L9I`-wcsm3NJw#z0w_8zs;pDVFn(9v=fKtI9X+{lYm`n|j73?*+LQ)3Y@8 zHxkgM)4T*T@7HXY@%U;Mzos->ebj9s!)nTaxHOBchFu&vx}0)O#$}Q1iu>}n^@7zQ zGBL8t-0ovCH?HD!8;H5*Wz8hrDY*qS^2;kFrhKy@lTSckNhYW?qwS*aXg7y&W(Pt1 z`8x?S?NI!EPo7?qP<*N#LBDCk5vj|CC!iM3w@SyE`UERajxgkdFF7?MdVSb@yDHvQ z{iOu*?SZd@!WBF+7TyRro1iE zWx8`Gx{O@>Foem+N?Zlsf!l>k>u+OF)abDJ@gO;&9F}OuOdap-&>FKVN7V`!H>{Ti z0wAjm3@57k6u0d(02CGFG{9~j1g3jVK>e+-|Bxe?V$FjQ8Ksl`x1JjdC2!L4^N?m{CGElG4ei1m!3uTP8Cgw**MU;KBPPiWv_5^59 zG{}%K!??mgpDQ#1EOz+UD&He#jl;I0f+fw(E!23Ep)byfUNwx?GsTUPikL+QDL9AJ zb$8Y<3TTODqC`8R?^3z@t@rDcOxhh!Eh23+TJ+z}GUTb!1uudn1{-At1a~eof)I1^ z4)-! z79N|Th-Vkhh}rGpsH`xm7j0vHd#WTBRDMjTtg(Y(RY4rScGhcuh`1#FXcCPSj&S^G z%s1Sf+Syuh>$5tcWuZpL+gU-aNj|5=C*Ze*FB{a0>?}CwV@GZMK@{i$V8K6^^WTA# zMlM}WQS7Q65TR6Md-HyO7fSR!{zBFw9c=$EZQ>#tJX8 zTgeL_^PMWtgkF9B;a!zhq+vu0<673A(~t#vu)srTuw3@h54G@(aJgCS#)w z!Sh|$od^QxjG!gX!hODs!p9#8pd}asm)%9g4`MN zWlu|Fy50LY`T)o`aM}AZnS?nVs%T{Xo*!ElJI_d^N`l@gAtWkHyl-_pDk@VQL-^)ksAA3^!}2JlY~SNMbAC^3dG0pS_t#I0p<_2KC#Xr>VH)x%{ zo;l#{Fml{^UYEJ|r|;pKASQHDWZ{{LKCGECxUW8o|*0$9Em`yOdGx*r@#1fFP=k)Ma)~ zh?1y!dqHsCce{nR8_W-1JS&NpI0vbUgLi!x0}o>ycF-4EKQ#KT-#FQ^E8dNo%7p#2 z*mnODO{ggrIK(6HQKnSDd=y)Qs`m9V$MR z^Xf+o)7!}wgJ1n%MTKyD2;L-D+W~mK7ah??c9E76STA{7L^=m1n|Zk$+Xz1%B&DW) sm%)A~c~ri`rACj6pNYjny?$wvX`BG5KsUi006)TP-5W#urSo$ zhY<_!pWYlpGyR9Q!_d6{;lakxRM`K=@0p1E4?jlWKhVOof93qQCjbDR5&&>9Ga_)9 z2v+95G!{leLKXpl7BfG9c>v}A;em;WV3q$X{q7C`z%Kt+x)Met&VT6Rzx)^|o2ViX znBLISIrxDuJ3>u{9VRV(_X(g1AjHQfz{evbARr(jA_S69ladebHG2?q-Tz^1^$p}@Ku0We~e!om7$q5lF48-Rn0hmTpK$NC5VUHIE$42665 z5kP{21;7U3fG`v1-*o3sOla|*Sh%1{a=*#_{$;j2{X+C>X<@#Z4BBi@_LQaod9 zzG+i7jokqr-7%%_$T;fMqYbX;gztN?+J*D|*m+nV+?ZD%?1&orLu3E0jon?@$A+(A zYst&p<_U+DpvJTIeV>CBBSNHee6lijBZR)K{UFrWYx=X>O8uh}{>?RvUx`n8b&eX1t>UKVXCY7yWT4t%{j2_W(0;#g5Zh4%29h@u&{Nb*d zO|A*`r4v59I@m)TR&Jrq*|@7I>E5bxL0|{ob|nX37LwjDGcJ$eK?VIMJQ_!3QXRn< z%b&SjmIe-)zA7#}P>MWF)dIp!JBL@gStBUejjVT1c`)o?w=efKN z-6V-EziY?z@luyuOR|P59!f=>aL#EQ^^A`MH{M0ciXob5qB$*TT3x6rY~h9R>;Py* zOW1n+g#AQ&)L0CgA&bA;S1?1_CSIArg&IB!S1O)sI@gr=_!&0rGUK$55X#9~H%f8k zY~yTC9z+c$V{HRHl6*Zn7zG#w=&R`GTv{nvJ#1yJ_VT9q^3`fS;6qh$V*x~lso2dO z^%mNk_SR}1sOFdS`S%C8zDl2ji9RDM+#w1lN=CL+Y-c+hCG@KHP$kL+N_l^xLCY5u zJFaF9m28wogwcn--vjUNRwR}vL^D%;PNaFU(TCHbFLsCsdEZHwCJWe{>5@LbptQ66 zhJ4g0Os)j6Svi+r;uMJt0`?vhXXyJ5dhZO`DkAwQ#s?A z-zqI5`bc*|XeBo#P2DGVr_-IgSau-S=ZnZWtRbAi=J?3-O>X`0a-zST#M-xj48-hd zo?ckO>Fe7_3E;uoIXIKp!lf%c}UU3(HaR z)r*g%SktV7!@VaMz8aKi>1Hi1iJxj8_)VF4H>~QHOh-w>4B~<=vb79BZ{$D6~*6?>JYa zn{SN?{sbLB@B#qmN+ zgJ}%m9Oq4!F_4-)ecm!FY{Ea|Fa`)#riUmqYMNcSZ)70^EZb!eP9s^>IekIuG1b~n zHL?uOIkYF9*L=(gqO3#6JES8I>s5eaD6lah^o3>!d%bZp?>wWb_S2Y3?XCujs`|rR z0R*o$CBg~8)8UOv!yY4}^7KXc{zW94JBms>2O1Bgz`Y*>%v?h7bWi0ASn1FS+4cno z^aX7r1>%u&k4MzlV}QBrF@)^tOY(e#VTu&qRUi&S^9tiCkTS04-p{HmD`Hv!%PfS+ zS5GckWkO}#EN!X=jpS-1PgfR#aptLMYlsTrJTTX|!Av`IURK4MGt06s2%VBASliO^ z*J3jNG!vZJRd)c@qNE)s>E3jGjwr^WX=T>rziWT*>?K3nRMiKKCk;*COrfUr##PFX ziV8`m6Lw63`Cb-$p7wW>JY%}j*D%S<+1i%2(lefM zNS==1GKj+UWU1}Sf})Z>2-I~LOz}MZB}pvTBVH8X`_FdxX9pKl-mUBQ42P=Q30^V=< z9boLl%!2X`@buS=%bB(0xL3^v(|1YG3qH;)*>Pvht7MnAxlB*YZZ(U`Ci*{#G;RC! zNBBbOw|Z6^RH7irOX%=e=gFui!8!! zhdl29))QRu*9BIq%!_`_zwa?#QbAOYA(@PK08Fd`Qvm)(DJ%fy{tvJyD6v6Q>|hZb zn3D28Aqta(C}NcsI?2Idf0RyGrRmqUEKxEDdBM!_AYuu$tVawkLVnIvan!I9HYzd4 zX64eMb3dk9%Z1{j%ph(Qd2Ma&n-KQ2@Oqwo7c1Jo?p1=|%76DBgLx}~{BF*U={y~- zEYk|(Y9Ksy)166bWpt9-6-W)8>_ClR`~j*0O-5B?#)cKfb@eJQVhHyk6Y?vRFBhyJ zVIi)WxAgn%48**&h=Zx1%H~4OUY>CZ&i%Azxgw+L;t-wi^r^rl9J&PpCWM<>e(;`?F?rblj&}_zS3nuU+S7 zweWgkOZGQy`{70~j8Ommy0+bIhUFWeaZa@aUwgY=GKSz?>6CQa**RP(5_R(nB?oWG zC16IMi%M04a;k+9C5W$qtMkd78B~8*DTmk?#g@2vmz!RBBzZOSypVjx$$5gh-PA^- zA#V3$5Bk|K3J7Di7HnJ`eEh#Z*?+bc7&ZkM4q{iP6ftzntiXXNsTc)11W`R%H~!E5 zg0G1EMFdT-)?|i1R2JL2N^_~2F=7+nds{!b52H4?rQY|W&@^By|P{M-o9^w=s}oeLh&^giUxbFnWrSuPdfm3ltgY zeq1znHTD$eh#jn%BJSFNj3nl98aKX3wm&zUj}yBd9I4w+*$T>`^QkOOZgs~Ak`*`{H1mc1UF5&{iz2vRn^%>QwJ-e#o?e}q|}InYJBg9Dusk1hom<5$Oxa70Gz>LuhNxIZ3L1(w!S3pFF z%C%E%dtNX-lsr5Q3WQbvJfyMIuj;5eK-BvKrO5`jKSTc!~eLv`nj!YtN$HNYVX6tG@a4JE!cjCv-e>*komEN34TIi88F) zbOvgMBVajl?L&RT1fkKyi8b}-t14J=ECC8}25O!eSYZeGfg}?4slQ8OeOh%;u-Z8} zqD#$8maMS-G&cOrQ;*$2eXG*+prl@)1Wr*xl|5K4^^*5qTmUW3bO=faxwkdmewO%z zQ3%L`s(IE`J-(x3k3p+vY=hUdPXeC^!Y|(N>3_MMDEml{+uZYdESgTq!tnjz z@oxoegF&_!MKf<|6&eb6XmMqfCa|y+7$CNF(m+G+r7x@9*b~fYyxH%lD+j{G%W5 zH)H_rQP%gV6;vr6Fg&}B-6ILu&a}ySSD0`_&S}t=!RCmUS33IkfecmaweU6RvoBhm zPW`~cG-~^hUW-rCAE*0_qHOKo+_Jq+Hc@onb27mC8L1V(lG@nzXI*hN&YD?q>x%RO z{y45b^yeLbe2LgS?p{l5#`x)J2(sLhN!b^$swY z+EBUI{Pgo`1`1ZA=hhWa6wa{~O1yHyp`iOTj+&#Q;+m8cH2%)nPy3pmpM}@zklpi! zK$QMPTG>FJa6ZQ)o^jvFz;^8*4bCeUo-BG8KP13StM{SNECHx8nxj}sbT!S$HH{kKrT*S5-M_lvXH)EJlYCoDX!_yV9)AGzL2 z9H^MwpDB3N2(4Pi9$aBKb#hzDAh9DR=BJ@Yo+lbOFgr|f^WU%5mNcC!>e5$jT6+{a zkWgWV?zZvxK`^krntUbV?0YJpFcw)ebw#zc>X*aT6bR($zk>L*wA z<%wt!VAIfw{1WuoSA@4AG=QmTluQJjnq7BfP2R0i;!|)@jLpHHyRrrE2vrfv^)OQ2N-3tny4Fk%p<% z9Uw?raUW8>sjmyy_#VJnnW$>}EY?D3@JuhUZ}(n>Nd$A{mTh$Zlg?FvSH=vc)$`8k z`4QOPYbOHY>&rCMhTu3INuSfwWj%`uPT%G*sH6-`Z5MBM@b!9UyL=wbJ8`9FRr>I9 zJ>778McWsoveDsT51d#gcUdW5gX$Uk6IsmReuqt5jh&CMPxQd zuljJ)HSz3m!Rl_D##sBI%obX_tQm@0^_i082-q#5Egh^I)B2b=u(W%IG7&pocA99% zY@`2tw8QMV002nGi~-ToUP+oKR%3B=CL$^j!X2`ITYo(jD2Q+#sR@_^y4u>rIWy;a zJ3%~UUva5F-v}tAzI1Q0XVx~J$cX(@Q$&XB`y&2o)+)B3U5V-=)?`kFb&>;4nLO27 z35h@C=j^vr#rgF@lF{nk&u1j)T@RvTR2ZLFk1t`p6t;>V8k!d&_4lp)Ji9GZr=q*Tb+%z5U*RLlGQWO5kdJUpsx0w8b^=}@Ix&AK=2VhZvz%X_rN9Dl( zEjd6jY0ntMtQ_`@s6Nu)$k1yO#qDS(a|=7_RJ#3)32E~2q*FB*UaJyqx8soDM(4J@ zQ7^-P+%80i3o0nAa7)2VOv8Izit<#iH!R`4r2qI(ke>(3@Y1@%MMbRTY0jv@^z z&RHTM7>yp6sqP5}R#t~IBV;7wypf2sR;?SF@j)DJXYJV#m5EVaF7;N(XcfM(0tU0TmVhpJxYh0|BW}LD_n_m9jXE23m9Q*8& zQHBd%yF>hvYV8A(I5ky0CkXXuG%XS7=5O?OwPx$#G}nr;Pj1)LI`Qk;oN4JaZdP90b5J^ z0S$P*U2`|Kd9;^Piji^Fb3{%8>atHjmua#;hL7wC3!!Fh%Ut9i7e=Fud?Stzl$L#-`{(|lq_HUO4V~h3{<@9m!bb#SbKs-YcQk4?vCw{xN zR2*}vyX<{Jc%HjNO@8XR!OG}?raHByvDE1{nuT^gx_6wW&Vopi+@y*T9BO^#0xw|l zf*GjSOPj#3Rn&Ki1>KBRnMK$SsIYXTrJBW9O96*x@bb{Gq%tXN;)tm(A-w52PHBF4 z0sBcoC*_Qz#PC9!i!>Kl_6)y=wNpr>1w_}0v9K}~)_2bGHg!E#Sq z%)>{?`SOD&Rs*etJ_(}^Ergpp zJa2k&dKXPYbnbNv?LU{m(E@BxsNsNK57g}XZx{n710M;m@{mT3SSzgk;2f!%ZWQhU zZTvvSk8B&}-gnq?kcoDlGZ6rvFww=echQAhC_o4TSe*i5MW$co$mVn!2Fs%e3IMwb zT&RZX4kF`CR406#GEo)B*9~i$Urk&lhH^sVkc14hu904;nNgRSF$77TYKSGt(AuL~ zhcWmX&c%Xq;}A2wh@x1KPi0`e$M4h^3jh}lD17pO!w~m#ao0r}?Cl4xaCp0MC_i>q5A# zv0n%lXk-Mia1GiI(XQVzc_8%1`E-zHq)JmH(ATdeM*yA<1)Gd=8G3@FD*Vek&c#vNnTijF(RSInoU+1D z;F@jK+DUPrR++-7#DoCGUvl(ZpOq5Q%e@A2U$2IcC|CX>?){y+6(Pc+)?xddVwx?G z-RnrOnn-DUwziARnoBnV>Y3q!zq}eA3(@EU^CpWa3 zY#$N6aDE$16_{5X+>ln3-0%8oq_ZgbS!gNb8%c@)50d8&05@G1BClO#I08)YTGpyx z#|St!d~Y?X&)?F1OCumioKE{`!=}>E$Q_hIkeLEoP>=D!KJT+uFJmmUO>f5z65k1~ z9!l(v%{3X(U%E_7={{lNCz#gXQ=5N>Od;5j+;=j|UwwNAFj9Fifya2NTQXPxW363) zP1sYo8@^Z}Xe{$|^(vRT_sfW}6P-Egc_4Z*Am(y9QaSKPO|a@iY;Rr72X-%^qM zByVeXFYg_yYZGq!9@w^#!>TH99`ZCs-xFF$m*D-0^p4$Sql&&-kU|(&x#^?uTVP9% zxz+BwLJz0Qm$+DolpmR-MAbPe$?Mz!+=wM2U;{y+u@Peq*T~3>8vE?Sk%08^=#kEn zNZU_DmoZ?=Y@G#-*$}QUdqWG!NY%OlsbLhP!7hD6Hexjx%1*=kJI#NckmSn^#X8~_ zZI>c9S7X1Io9i2&`N5wO+Bc9^%FnF}Est>f=qod(+lH?|{C_%K6t?k<|BT3x>kb=c zW^@|Ozv+8K@kclFP0*u{Cf)r?$q^4{>GyQ!x=edKK)`t|QZZk?zo9TzG` zru3yz+n+c;>kABJyJ6DiO8@c<_JeGTE=41C zMx%i?sPN&`RsM6QPel22STb@WEi^nh6vUy*GCGSQ6?N^mRw;2O@I;Tz=}x5I9e~gI zb~i!%y@*@onohCGtH%&KE+>^xuIt#tGNSZto*~5>ND;R%t=eM87_29-&nmI;trsQ%w4->J%07|4lp<7z8bKCwV}TEj=w){b#gU_}!7A>-rr4Rs60U8iF*CCckjK1DM_cYE{eb0EzWkL>D@X zq&Mo>GM72UjvGQBGEW$P9IA%Cy3sA-3#p^_KQ7R%u!}P4Hi`ceq5VTRf$bbJ^EHqk z$8K%ty-D@*+c{b_evAIT0vA?(-&PCs$Emu6#qMPTzqEzUVG8X% za!7Pq_UfaitLO)zH|Un1N9KhVy?FJfmMHVz=|1-G!4lh?^72Km8c+NYDvA8A8btHr4B z%TE?4?|tntzJ?!!-+s&|X8HEN6XYvUg^DbF#*g`j70$XjLnIbjms7t0|j z-aqQK>ci`V`cGL6R`3^pEh>{3eSR9CV4X+xjc~{8o@qPG`h>BBc`ezx;8@q}j~0GE zdyK+wLTlrTCs;w=3sq*r%#Sy6>O)3eGcoZS4LCNEIR?BCAcmZjwCqn6=dTSla`!S9G9j3Ww2mFe6A!? z>e1JId%9B!Fqm#oj(IL-FMl)0qW;paI=)HZx z$1M&Etw<#@BF~2W+1SmWqN^mqWd6UXKHKZ=-GJ@-3ESs>ioNLbZqT{6A&cv9_@XZ) zD^bM67HymLo-{m--Vdk23117?n0L^EENCS~+bL{@3yGPN@5N=)whEsT`_ieV{?2)e z{UOYma;E(9I&bf~aI0QtRZ23DVnUdE)2$;s)e(C;2l|di*tlYHbycM}1=RHE{*LTu zCZ8EHY4K**&Q(%fxyW4Eo>!5zL#dKYi`Kmq@`YZ=1A?p*KeeC-`I0&?Du*R zj?Y(8om?xKgmQiwO=l+lcA`|PX3B|9@h*B8cs%0{*a#2h>h+(dS%r}-(+Lf2A5qWt zOx^)9o%KqQUX0V_cvnw+`TSaO=~rs+O)_3I{xu@p%)YB9T ztU9LNgJdQa>0KkQDP0;#olsUWt0w%UmYHt>o0?#UWr!>*v9ZSG3%L z(zyk2y!`D4O`2SY9X3`!9OIdT`~`3b*6xQO4V*>V#>kE&Wh*w20DOn$<$E97!$hkT z2RZd7X`en-*$eao?D%3EfOJrka;$IeA_|c5$+0o1FCooN><(}Qjxh|jH1}FF@1o5; zxrb)dr*%3ju%j9NT9@rM+4y$He6|^vzt2?KgmwE1&M==g>a*GlL*0)Oc3L)kKoMD6 zA=??L>kVm0ALS%VXiB|+EZvb$=QQwn*GB)0(TBD{A6E8RQUaO3@tEU%U;AVx;V6Mcvyu*bl|jI;lZ4s zdMoM9W)aNi!W-T&4OD`nZ_5RB<>)=-&`I4He3f-1AF8jND<4TOt-9G{e_4F$e*g`d z68kNru%Vuv&&pqCg?$pd+TK>jAL`W5qd()OG<2^gIyoKyxF-%v$NMr>KOK`^xbq5> z{+@7rl^g6Wrx&EeG0N2|WO?@fjI3w7&CAcQc42B!)8Z$E0N+;rl2;vx#wx=-6g0j1 zFyZ%giV~Bo26moNcbwXcM-FdPl_@QM(Q3C~*s3+H;MrEpnfs3EP!kSu^>g&g54W4O zPS!flSssMF3YX4YtPr?xg-{3<`$b}(OHO!%;#Uw`NwAXg{tc}^z`@sy*hOXw5wzAw!b`?Q_o zyy*x=su{xz+S27Fk2fRsQu3~znF^gPR9xvi14h<3m>fA!<@agD?WF-*>*kX!V#Eb+ zXFGZZ25haLkNVen1mbvzNsbt{h*7r7geJ!x`TPP=RJ(G37bm%yidB~RCa>h>Fj3cx Ry(&^Uce&4eqVR6ze*hL}Si}GT literal 0 HcmV?d00001 diff --git a/chapters/photos/mar-2023/photo2.jpg b/chapters/photos/mar-2023/photo2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21602d36fa8cfe9017e06e0063e6e4253cf45281 GIT binary patch literal 13732 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 literal 0 HcmV?d00001 diff --git a/chapters/photos/notes.txt b/chapters/photos/notes.txt new file mode 100644 index 00000000..a2d8fc28 --- /dev/null +++ b/chapters/photos/notes.txt @@ -0,0 +1 @@ +These photos are from Lorem Picsum at https://picsum.photos From 68e90e24b78fd925ee9b0d4157d78c4639547493 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Tue, 3 Mar 2026 12:52:19 +0000 Subject: [PATCH 37/56] replace_all solution, debugged directory error --- chapters/anagram_map | 0 chapters/anagram_map.bak | 1 + chapters/anagram_map.dat | Bin 0 -> 30 bytes chapters/anagram_map.dir | 1 + chapters/chap13.ipynb | 532 +++++++++++++++++++++++++------ chapters/photo_info/captions.dat | Bin 42 -> 542 bytes chapters/photo_info/captions.dir | 3 +- chapters/photos/new_notes.txt | 1 + 8 files changed, 436 insertions(+), 102 deletions(-) create mode 100644 chapters/anagram_map create mode 100644 chapters/anagram_map.bak create mode 100644 chapters/anagram_map.dat create mode 100644 chapters/anagram_map.dir create mode 100644 chapters/photos/new_notes.txt diff --git a/chapters/anagram_map b/chapters/anagram_map new file mode 100644 index 00000000..e69de29b diff --git a/chapters/anagram_map.bak b/chapters/anagram_map.bak new file mode 100644 index 00000000..527fadf1 --- /dev/null +++ b/chapters/anagram_map.bak @@ -0,0 +1 @@ +'opst', (0, 22) diff --git a/chapters/anagram_map.dat b/chapters/anagram_map.dat new file mode 100644 index 0000000000000000000000000000000000000000..71fc113fd06ab9584f64ce8bc96de66e41aecbea GIT binary patch literal 30 hcmZo*nJUZx0kKmwdRPkbONyuTu$1H%6i-Rj0|0D52(17B literal 0 HcmV?d00001 diff --git a/chapters/anagram_map.dir b/chapters/anagram_map.dir new file mode 100644 index 00000000..38a3386d --- /dev/null +++ b/chapters/anagram_map.dir @@ -0,0 +1 @@ +'opst', (0, 30) diff --git a/chapters/chap13.ipynb b/chapters/chap13.ipynb index 302fccd0..5a304d9b 100644 --- a/chapters/chap13.ipynb +++ b/chapters/chap13.ipynb @@ -229,7 +229,7 @@ { "data": { "text/plain": [ - "['notes.txt', 'mar-2023', 'jan-2023', 'feb-2023']" + "['new_notes.txt', 'notes.txt', 'mar-2023', 'jan-2023', 'feb-2023']" ] }, "execution_count": 8, @@ -1039,7 +1039,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 34, @@ -1056,14 +1056,6 @@ "db" ] }, - { - "cell_type": "markdown", - "id": "b0b9eec0", - "metadata": {}, - "source": [ - "### BOOKMARK" - ] - }, { "cell_type": "markdown", "id": "0e4a2fb3", @@ -1085,7 +1077,19 @@ "source": [ "key = 'jan-2023/photo1.jpg' \n", "\n", - "db[key] = 'Cat nose'" + "db[key] = 'Cat nose' # mapping from a [key] to a value ('Cat nose')" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "id": "0bf07022", + "metadata": {}, + "outputs": [], + "source": [ + "second = \"just a string\"\n", + "\n", + "db[second] = 'get this value!'" ] }, { @@ -1100,7 +1104,7 @@ }, { "cell_type": "code", - "execution_count": 36, + "execution_count": 37, "id": "d4e06b19", "metadata": {}, "outputs": [ @@ -1110,13 +1114,13 @@ "'Cat nose'" ] }, - "execution_count": 36, + "execution_count": 37, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "value = db[key]\n", + "value = db[key] # grabs the value via the key and assigns to variable\n", "\n", "value" ] @@ -1131,7 +1135,7 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 38, "id": "89a0936c", "metadata": {}, "outputs": [ @@ -1141,13 +1145,13 @@ "'Close up view of a cat nose'" ] }, - "execution_count": 37, + "execution_count": 38, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "db[key] = 'Close up view of a cat nose'\n", + "db[key] = 'Close up view of a cat nose' # replaces old value\n", "\n", "db[key]" ] @@ -1162,44 +1166,44 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 39, "id": "7d0c4cff", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "['jan-2023/photo1.jpg']" + "['jan-2023/photo1.jpg', 'just a string']" ] }, - "execution_count": 38, + "execution_count": 39, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "list(db.keys())" + "list(db.keys()) # dict method" ] }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 40, "id": "a9db327d", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "['Close up view of a cat nose']" + "['Close up view of a cat nose', 'get this value!']" ] }, - "execution_count": 39, + "execution_count": 40, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "list(db.values())" + "list(db.values()) # dict method" ] }, { @@ -1212,14 +1216,46 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 41, "id": "cc81ed95", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "key in db" ] }, + { + "cell_type": "code", + "execution_count": 42, + "id": "513dca51", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "second in db" + ] + }, { "cell_type": "markdown", "id": "982740b4", @@ -1230,10 +1266,19 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 43, "id": "68ff774e", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "jan-2023/photo1.jpg : Close up view of a cat nose\n", + "just a string : get this value!\n" + ] + } + ], "source": [ "for key in db:\n", " print(key, ':', db[key])" @@ -1249,7 +1294,7 @@ }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 44, "id": "2b411885", "metadata": {}, "outputs": [], @@ -1267,7 +1312,7 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 45, "id": "4806720c", "metadata": { "tags": [] @@ -1283,10 +1328,26 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 46, "id": "59eb2dde", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['captions',\n", + " 'captions.dat',\n", + " 'captions.dir',\n", + " 'db',\n", + " 'captions-wal',\n", + " 'captions-shm']" + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "os.listdir(config['data_dir'])" ] @@ -1297,7 +1358,9 @@ "metadata": {}, "source": [ "`captions.dat` contains the data we just stored.\n", + "\n", "`captions.dir` contains information about the organization of the database that makes it more efficient to access.\n", + "\n", "The suffix `dir` stands for \"directory\", but it has nothing to do with the directories we've been working with that contain files." ] }, @@ -1311,11 +1374,14 @@ "## Storing data structures\n", "\n", "In the previous example, the keys and values in the shelf are strings.\n", + "\n", "But we can also use a shelf to contain data structures like lists and dictionaries.\n", "\n", "As an example, let's revisit the anagram example from an exercise in [Chapter 11](section_exercise_11).\n", + "\n", "Recall that we made a dictionary that maps from a sorted string of letters to the\n", "list of words that can be spelled with those letters.\n", + "\n", "For example, the key `'opst'` maps to the list `['opts', 'post', 'pots', 'spot', 'stop', 'tops']`.\n", "\n", "We'll use the following function to sort the letters in a word." @@ -1323,13 +1389,15 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 47, "id": "8819b211", "metadata": {}, "outputs": [], "source": [ "def sort_word(word):\n", - " return ''.join(sorted(word))" + "\n", + " #return sorted(word) # returns the characters sorted\n", + " return ''.join(sorted(word)) # ''.join automatically joins the sorted characters" ] }, { @@ -1342,13 +1410,26 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 48, "id": "fc8f1434", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'opst'" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "word = 'pots'\n", + "\n", "key = sort_word(word)\n", + "\n", "key" ] }, @@ -1363,12 +1444,13 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 49, "id": "f2f17f05", "metadata": {}, "outputs": [], "source": [ - "db = shelve.open('anagram_map', 'n')" + "#db = shelve.open('anagram_map', 'n') \n", + "db = shelve.Shelf(dbm.dumb.open('anagram_map', 'n')) # n = new" ] }, { @@ -1381,13 +1463,22 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": 50, "id": "b918dcfe", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['pots'] <- a list of strings!\n" + ] + } + ], "source": [ - "db[key] = [word]\n", - "db[key]" + "db[key] = [word] # recall word and key from above\n", + "\n", + "print(db[key], \" <- a list of strings!\")" ] }, { @@ -1402,13 +1493,26 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 51, "id": "e0d728e6", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'opst'" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "word = 'tops'\n", + "\n", "key = sort_word(word)\n", + "\n", "key" ] }, @@ -1418,12 +1522,13 @@ "metadata": {}, "source": [ "The key is the same as in the previous example, so we want to append a second word to the same list of strings.\n", + "\n", "Here's how we would do it if `db` were a dictionary." ] }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 52, "id": "12e39086", "metadata": {}, "outputs": [], @@ -1441,10 +1546,21 @@ }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 53, "id": "b0dc42e0", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['pots']" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "db[key]" ] @@ -1454,20 +1570,25 @@ "id": "32a56de9", "metadata": {}, "source": [ - "Here's the problem: when we look up the key, we get a list of strings, but if we modify the list of strings, it does not affect the shelf.\n", - "If we want to update the shelf, we have to read the old value, update it, and then write the new value back to the shelf." + "Here's the problem: \n", + "\n", + "when we look up the key, we get a list of strings, but if we modify the list of strings, it does not affect the shelf.\n", + "\n", + "If we want to update the shelf, we have to **read the old value**, update it, and then write the new value back to the shelf." ] }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 54, "id": "b4105610", "metadata": {}, "outputs": [], "source": [ - "anagram_list = db[key]\n", - "anagram_list.append(word)\n", - "db[key] = anagram_list" + "anagram_list = db[key] # read old value\n", + "\n", + "anagram_list.append(word) # update it\n", + "\n", + "db[key] = anagram_list # write new value back to shelf" ] }, { @@ -1480,10 +1601,21 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": 55, "id": "4f737cd9", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['pots', 'tops']" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "db[key]" ] @@ -1498,7 +1630,7 @@ }, { "cell_type": "code", - "execution_count": 54, + "execution_count": 56, "id": "5395780f", "metadata": { "tags": [] @@ -1518,9 +1650,11 @@ "## Checking for equivalent files\n", "\n", "Now let's get back to the goal of this chapter: searching for different files that contain the same data.\n", + "\n", "One way to check is to read the contents of both files and compare.\n", "\n", "If the files contain images, we have to open them with mode `'rb'`, where `'r'` means we want to read the contents and `'b'` indicates **binary mode**.\n", + "\n", "In binary mode, the contents are not interpreted as text -- they are treated as a sequence of bytes.\n", "\n", "Here's an example that opens and reads an image file." @@ -1528,13 +1662,26 @@ }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 57, "id": "a3104fc7", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "bytes" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "path1 = 'photos/jan-2023/photo1.jpg'\n", - "data1 = open(path1, 'rb').read()\n", + "\n", + "data1 = open(path1, 'rb').read() # r = read, b = binary mode (not text)\n", + "\n", "type(data1)" ] }, @@ -1546,18 +1693,32 @@ "The result from `read` is a `bytes` object -- as the name suggests, it contains a sequence of bytes.\n", "\n", "In general the contents of an image file and not human-readable.\n", + "\n", "But if we read the contents from a second file, we can use the `==` operator to compare." ] }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 58, "id": "fd6dd21d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "path2 = 'photos/jan-2023/photo2.jpg'\n", + "\n", "data2 = open(path2, 'rb').read()\n", + "\n", "data1 == data2" ] }, @@ -1573,14 +1734,17 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": 59, "id": "b1c8643c", "metadata": {}, "outputs": [], "source": [ "def same_contents(path1, path2):\n", + "\n", " data1 = open(path1, 'rb').read()\n", + "\n", " data2 = open(path2, 'rb').read()\n", + " \n", " return data1 == data2" ] }, @@ -1590,27 +1754,44 @@ "metadata": {}, "source": [ "If we have only two files, this function is a good option.\n", + "\n", "But suppose we have a large number of files and we want to know whether any two of them contain the same data.\n", + "\n", "It would be inefficient to compare every pair of files.\n", "\n", "An alternative is to use a **hash function**, which takes the contents of a file and computes a **digest**, which is usually a large integer.\n", + "\n", "If two files contain the same data, they will have the same digest.\n", + "\n", "If two files differ, they will *almost always* have different digests.\n", "\n", "The `hashlib` module provides several hash functions -- the one we'll use is called `md5`.\n", + "\n", "We'll start by using `hashlib.md5` to create a `HASH` object." ] }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 60, "id": "c03198fc", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "_hashlib.HASH" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "import hashlib\n", "\n", - "md5_hash = hashlib.md5()\n", + "md5_hash = hashlib.md5() # creates HASH object\n", + "\n", "type(md5_hash)" ] }, @@ -1624,7 +1805,7 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 61, "id": "1567ec9e", "metadata": {}, "outputs": [], @@ -1642,12 +1823,24 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 62, "id": "b2e61e76", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'aa1d2fc25b7ae247b2931f5a0882fa37'" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "digest = md5_hash.hexdigest()\n", + "\n", "digest" ] }, @@ -1661,16 +1854,21 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 63, "id": "330def4e", "metadata": {}, "outputs": [], "source": [ "def md5_digest(filename):\n", + "\n", " data = open(filename, 'rb').read()\n", + "\n", " md5_hash = hashlib.md5()\n", + "\n", " md5_hash.update(data)\n", + "\n", " digest = md5_hash.hexdigest()\n", + " \n", " return digest" ] }, @@ -1684,12 +1882,24 @@ }, { "cell_type": "code", - "execution_count": 62, + "execution_count": 64, "id": "eae2d207", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'6a501b11b01f89af9c3f6591d7f02c49'" + ] + }, + "execution_count": 64, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "filename2 = 'photos/feb-2023/photo2.jpg'\n", + "\n", "md5_digest(filename2)" ] }, @@ -1699,6 +1909,7 @@ "metadata": {}, "source": [ "Now we have almost everything we need to find equivalent files.\n", + "\n", "The last step is to search a directory and find all of the images files." ] }, @@ -1712,25 +1923,33 @@ "## Walking directories\n", "\n", "The following function takes as an argument the directory we want to search.\n", + "\n", "It uses `listdir` to loop through the contents of the directory.\n", + "\n", "When it finds a file, it prints its complete path.\n", + "\n", "When it finds a directory, it calls itself recursively to search the subdirectory." ] }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 65, "id": "c84a64db", "metadata": {}, "outputs": [], "source": [ - "def walk(dirname):\n", - " for name in os.listdir(dirname):\n", - " path = os.path.join(dirname, name)\n", + "def walk(dirname): \n", + "\n", + " for name in os.listdir(dirname): # searches for the name in the list of directory\n", + "\n", + " path = os.path.join(dirname, name) # assign both the directory name and name to variable\n", + "\n", + " if os.path.isfile(path): # checks to see if the path is a valid file\n", "\n", - " if os.path.isfile(path):\n", " print(path)\n", - " elif os.path.isdir(path):\n", + "\n", + " elif os.path.isdir(path): # otherwise checks if it is a path and recurssively calls itself.\n", + "\n", " walk(path)" ] }, @@ -1744,10 +1963,27 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 66, "id": "f1c60f6b", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "photos/new_notes.txt/new_notes.txt\n", + "photos/new_notes.txt/notes.txt\n", + "photos/notes.txt\n", + "photos/mar-2023/photo2.jpg\n", + "photos/mar-2023/photo1.jpg\n", + "photos/jan-2023/photo2.jpg\n", + "photos/jan-2023/photo3.jpg\n", + "photos/jan-2023/photo1.jpg\n", + "photos/feb-2023/photo2.jpg\n", + "photos/feb-2023/photo1.jpg\n" + ] + } + ], "source": [ "walk('photos')" ] @@ -1768,19 +2004,32 @@ "## Debugging\n", "\n", "When you are reading and writing files, you might run into problems with whitespace.\n", + "\n", "These errors can be hard to debug because whitespace characters are normally invisible.\n", + "\n", "For example, here's a string that contains spaces, a tab represented by the sequence `\\t`, and a newline represented by the sequence `\\n`.\n", + "\n", "When we print it, we don't see the whitespace characters." ] }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 67, "id": "15d7425a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1 2\t 3\n", + " 4\n" + ] + } + ], "source": [ "s = '1 2\\t 3\\n 4'\n", + "\n", "print(s)" ] }, @@ -1789,18 +2038,29 @@ "id": "49bbebe6", "metadata": {}, "source": [ - "The built-in function `repr` can help. It takes any object as an argument and returns a string representation of the object.\n", + "The built-in function `repr` can help.\n", + "\n", + "It takes any object as an argument and returns a string representation of the object.\n", + "\n", "For strings, it represents whitespace characters with backslash sequences." ] }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 68, "id": "61feff85", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "'1 2\\t 3\\n 4'\n" + ] + } + ], "source": [ - "print(repr(s))" + "print( repr(s) ) # shows all characters in the code" ] }, { @@ -1808,14 +2068,21 @@ "id": "790cf8dd", "metadata": {}, "source": [ - "This can be helpful for debugging.\n", + "**This can be helpful for debugging.**\n", + "\n", + "One other problem you might run into is that different systems use different characters to indicate the end of a line.\n", "\n", - "One other problem you might run into is that different systems use different characters to indicate the end of a line. Some systems use a newline, represented `\\n`. Others use a return character, represented `\\r`. \n", - "Some use both. If you move files between different systems, these\n", + "Some systems use a newline, represented `\\n`. Others use a return character, represented `\\r`.\n", + "\n", + "Some use both.\n", + "\n", + "If you move files between different systems, these\n", "inconsistencies can cause problems.\n", "\n", "File name capitalization is another issue you might encounter if you work with different operating systems.\n", + "\n", "In macOS and UNIX, file names can contain lowercase and uppercase letters, digits, and most symbols.\n", + "\n", "But many Windows applications ignore the difference between lowercase and uppercase letters, and several symbols that are allowed in macOS and UNIX are not allowed in Windows." ] }, @@ -1869,12 +2136,20 @@ "A way of opening a file so the contents are interpreted as sequence of bytes rather than a sequence of characters.\n", "\n", "**hash function:**\n", - "A function that takes and object and computes an integer, which is sometimes called a digest.\n", + "A function that takes an object and computes an integer, which is sometimes called a digest.\n", "\n", "**digest:**\n", "The result of a hash function, especially when it is used to check whether two objects are the same." ] }, + { + "cell_type": "markdown", + "id": "753300a1", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "67941fdd", @@ -1885,12 +2160,20 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 69, "id": "bd885ba1", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Verbose\n" + ] + } + ], "source": [ "# This cell tells Jupyter to provide detailed debugging information\n", "# when a runtime error occurs. Run it before working on the exercises.\n", @@ -1906,6 +2189,7 @@ "### Ask a virtual assistant\n", "\n", "There are several topics that came up in this chapter that I did not explain in detail.\n", + "\n", "Here are some questions you can ask a virtual assistant to get more information. \n", "\n", "* \"What are the differences between ephemeral and persistent programs?\"\n", @@ -1928,7 +2212,9 @@ "\n", "* \"What is an MD5 digest?\"\n", "\n", - "As always, if you get stuck on any of the following exercises, consider asking a VA for help. Along with your question, you might want to paste in the relevant functions from this chapter." + "As always, if you get stuck on any of the following exercises, **consider asking a VA for help**.\n", + "\n", + "Along with your question, you might want to paste in the relevant functions from this chapter." ] }, { @@ -1939,7 +2225,9 @@ "### Exercise\n", "\n", "Write a function called `replace_all` that takes as arguments a pattern string, a replacement string, and two filenames.\n", + "\n", "It should read the first file and write the contents into the second file (creating it if necessary).\n", + "\n", "If the pattern string appears anywhere in the contents, it should be replaced with the replacement string." ] }, @@ -1953,7 +2241,7 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 70, "id": "1e598e70", "metadata": {}, "outputs": [], @@ -1970,12 +2258,28 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": null, "id": "d3774d1a", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "# NOTE: Error may occur if the directoy already exists!\n", + "\n", + "def replace_all(old, new, source_path, destination_path):\n", + " \n", + " # read the contents of the source file\n", + " reader = open(source_path) # File path\n", + " source_contents = reader.read() # read contents into memory\n", + " reader.close()\n", + "\n", + " # replace the old text with the new in memory\n", + " new_text = source_contents.replace(old, new)\n", + " \n", + " # write result into end path and file\n", + " writer = open(destination_path, 'w')\n", + " writer.write(new_text)\n", + " writer.close()\n" ] }, { @@ -1988,20 +2292,32 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": 72, "id": "3b80dfd8", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'These photos are from Lorem Picsum at https://picsum.photos\\n'" + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "source_path = 'photos/notes.txt'\n", + "\n", "open(source_path).read()" ] }, { "cell_type": "code", - "execution_count": 71, + "execution_count": 75, "id": "4b67579f", "metadata": { "tags": [] @@ -2009,19 +2325,33 @@ "outputs": [], "source": [ "dest_path = 'photos/new_notes.txt'\n", + "\n", "old = 'photos'\n", + "\n", "new = 'images'\n", + "\n", "replace_all(old, new, source_path, dest_path)" ] }, { "cell_type": "code", - "execution_count": 72, + "execution_count": 76, "id": "1d990225", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'These images are from Lorem Picsum at https://picsum.images\\n'" + ] + }, + "execution_count": 76, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "open(dest_path).read()" ] diff --git a/chapters/photo_info/captions.dat b/chapters/photo_info/captions.dat index 3bbd07b008e4a1bfaf9d7e6a2c3cfe1456bf5c12..715cd1a5ad5e4d3e1fc11effb044505c3856d73e 100644 GIT binary patch literal 542 zcmZo*nJUi!0X@>rIr+t@3Z(@KWtpkv3i)XYi3-VyB?@^!(J6XRRio6f3V{ZeslreX Y_3)>smMD~DWELxwCFYc-Do)V@0P8mt8UO$Q delta 5 McmbQoqBTJa00i>^hX4Qo diff --git a/chapters/photo_info/captions.dir b/chapters/photo_info/captions.dir index f82bbec1..c8976321 100644 --- a/chapters/photo_info/captions.dir +++ b/chapters/photo_info/captions.dir @@ -1 +1,2 @@ -'jan-2023/photo1.jpg', (0, 23) +'jan-2023/photo1.jpg', (0, 42) +'just a string', (512, 30) diff --git a/chapters/photos/new_notes.txt b/chapters/photos/new_notes.txt new file mode 100644 index 00000000..5a47427e --- /dev/null +++ b/chapters/photos/new_notes.txt @@ -0,0 +1 @@ +These images are from Lorem Picsum at https://picsum.images From ebe2609e57516b23ccdc2624478a50888295657a Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Wed, 4 Mar 2026 11:17:58 +0000 Subject: [PATCH 38/56] add_word solution with shelves --- chapters/anagram_map | Bin 0 -> 7098368 bytes chapters/chap13.ipynb | 166 +++++++++++++++++++++++++++++-------- chapters/test_database | Bin 0 -> 4096 bytes chapters/test_database-shm | Bin 0 -> 32768 bytes chapters/test_database-wal | Bin 0 -> 12392 bytes chapters/test_shelf | 0 6 files changed, 132 insertions(+), 34 deletions(-) create mode 100644 chapters/test_database create mode 100644 chapters/test_database-shm create mode 100644 chapters/test_database-wal create mode 100644 chapters/test_shelf diff --git a/chapters/anagram_map b/chapters/anagram_map index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..247898684d9b4e989c5177a33509a10855a01d8b 100644 GIT binary patch literal 7098368 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 z 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

(oP_#jTn{}g*D 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ÅxIFoQ9ZvRgSrUL&A330u1|ky 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

BJ>d>lVymJkmkYLa*(<$ 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


*GJJE+QN1M)nX05YH5t8!pZ__MbvMm@zD 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%0Dj!kZ2l{)7yUFsn|A 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�V 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%0AYzR&xRd=6}*{1Ph0z}Q3bSS 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

-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

77cJ#Y1+nrXz%^L*77Rp_IKip}>R0Lw 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 z%0DUJUH($}+VY3X1LY;5AJ5;Pzdiri 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

ORR#qH_;8SVOUS@@kUBnom(C6t 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 z

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

Nni)Q*a7@EGSZIUwSyoA zaM*z-YC~TFbi@vn3?R-M$kjp!JTBCyGH6r`~Dq0F+aIyhmBi2{;W=sVd-ktS}*fqa&aY0V>AN#{K`l^UA+1 zf3JK&`RMY5(%(y+xch%-@wMWQi{}*=7H1Swg;xqcE8JMJwlpO-!?y+i6f-2Z=D zYJO@=^6$ytBu`JyOBV61du`&IiMGU^iFEwA_}%fj@p9}>vB$ADePwK6Y<8@G_y2z8 zU+*vT5BJA-pF`BfzlJ4%ooZWV(M{oI&Te`7(9w=kQSh;~Ex42%H$inr-)>8zB+@Km%2r&5Hd+~f{7+{?!a zQX@A*1`uVHqcMviv9NQ>s#JxE!7Szlnq=p~gbEl`GMOr&7yvnER7e8^;>(#5Vj|)T zQTgDh8a$*0P$M7G6e7oAnv{)`6={I%P}?#=pHwCj=h{~w06_JO7hgj^j*pf=In~1s zjdVa!J>#TN3yDaldK5_@R4|sJW2nN@c#d48X|{5gI9xIo6lI9yWNYbwCclCa60L$z zK|0wQvSur{N76k-vz5LCrIp(wL(H6PEgjru*S3rnCn<9u`NT!8u9FPKA<4|zmQm8X z8ZtH+AVu8=ahazcg#aPbKQ66Z7k!Lb_#OrEL1IA{=SfYGVV>??w@Q|~ zZo8^Y^71k~06zZg$;Jq{;{jAaSZzkE787JBz>LORtF1>t23T!ctkzP=*tOaqM$49> zA+oI4rVXrPUxp0eoZ1##Hhvl({p4~MfbJTHq3aq)Zwnyk?{}+hNyK+PUM(NXV4&h3 z`;PkTXU&ktXw6MVPR!q?i!1>;kw^qx#i*+m8YuIU1y)B_p(rFkll9qTMRwvLnA2o~ z2!LnRw&1!+JbEb#0Me~oC2Qrf_$WO_au?A_>54q~4>FPq$4L=3U&ta@vZio~5Q@?S z7f6};p&Y8xLO2O{L8*yCg0Z#D=d1gV4hk>?p!>)8@I2$wVegUC>ZlTu0mQI+wedNF zjYEhd3|Y#Jlng^}4Ly!Iw7OYtq@;~&2jQ5ZA#0W^B})Q1lXDus;5d=np|*L2wyQ|b zigWc!j`Gt0b~1)!qmBK?xk~MI-(rOga}@!>>jCXNQM#s)~I=swVd6; zjYWuXBT*&m63Il?h-5-lUY){=ga|JZ6|~g&<|qhlUqG0ucE|_`dyZHDFmuNYh7Nw1 zUbl-YmAfl|mGO_$RPhmEgXqN(B~5A+39M;PdfS( z=LFv6#3`53=AWH^8#qNIw>x_9_+G02Um3r!#RIHq!!x zmT@Xu1~yDtZcfXvbUJg_~fZG{>^gZ zq`J6BUt-8Au3R!?maB<$#IhB&BgEi~O=F?E7>w)Zx_|36y3uG~{T zygae=@6t=y18{k%skCot+v0o0O~r2)2V^C{E4)~ExNudWy)eHpCjUwP*ZJ?{tNEkz z6R{HT>)ai=3v;LDcFCo)Z(tw%o!JYr3$rt_UgqV@o!IezNT!_refsY7CFzsX6H}k0 zo=$xywJJ3=<>M`YA1Bu&JCZXKpCz72+>@v!&Pwc>$i-j5*@3Uem&EtOy@0RB9*$iZ zJ2$phY>5As|Ac>?-|p|{4~OV)H!J`Q9-LC!D(@^}4m@a$TRLY+&hL&viUL&BhTc`%2!>%&vA zSv1I~bj@0?Kv!r~MnM8Nqqfzo=*jwsUTW-kv?gi<`N_q`(`s8iIw{J;WyZ)rHi!Uk zjCwCpu%ZV6n+TD3i(ZV*=SGBYgI0yCzzd|`YnD50B1KcO0_AFS2y2|2%TdVyVyb$c zs9z`%^$Qg+tQyGOmoh)XUgt*jTe@Z~cV8M(ql|{EKpBoU;}Z2jY{`&SMj4I@C1N5< zRoDs^MH4m_MX7*c*4@uOS_nWneqD$vn_i4g8;ahKD^}P`yTpvGqVI{>2I0=w(EqV; z(i!pXN%@q$XKf1xs(iW9*nH#5l_bN%<12P|lX-3*OVg zuu+mn3L{kT#4!-ec! znQa8Xr~tX|5?%e$)1JZ%KPSXx-jr3D#)i_owE8L~P{3k}go zh-T3wqk4|qB_E_iPVT5a9I2woMeD+jvJEDhFasEilZ#|=lH$rZMEXs4aWWK#B)itO zoMW!ggG_etf=n8(&SGQ6Hu}OG0?@QMC=1lZ8QLd3?QohbTL;+3Wjc55h`F<2Rlty!l_wjmIF@#!1lE* zr}EV=(Y*8Omqf$$oI=-wv+cAR$Muk=BA-l=@k)eQ`gBA#WEFWKMHWiLrz=%qaz(lx zr*ABoQUOC1oyaN@0#HsB2~lM`fwJLEbqWWVBby-u2v>1Dn;oi*Q2B7;G?5?zU{w5Z z96X_pgfG}S6>sT)qMD9nnKh@z!YEbcTtGQ_pWGnJG={8l9z!{~Tg5^hIfDq5^Jp35 zVb}`a6P?2wx(XmK>S2azkdC4Z89)^1NEV1U&dCaoV|Pjg47GCvYexu;wIf93b-3^% zE1H+fOQ_20FyRFPQBF-`TxQ;0-EwHaD`H$k$p9I09b$PA72&1h(=7*EUedorQf4YD;GCAP>tm6+3l6xk?Y$XeC|t$c(<0V1Ci3n*7Up(-zZ z9hHO#FA@QQXWCC34ubl9+pTyd1Bi;>mzl~v7ZC+3Rbl%GjQpc8p{i_qvz%K+Cy3cS7A^u06NtrU-Cd#>2??COj~fJ zBT+%S31~3&^4l;$@SoT)iSL;RB16Z2k_HGAyDP;HJ`_9RD^;_b%j`(t%)*gLhzgoR z5L;M8twL0pcA-oRH_Aks@{!vnQ3`38PG&*`sF)e!9T1=Em7gu&Q@*G?yPPV$TzaVV zwbHqzJ&JD?pTOOAqw}xled&clshd*0sY6m@lbae{uhruAA1OA0nUl-8cX>v`uF%3`^WmDyuW&D@#lG%2+BClz9S+NTW1_s zk3m^65tRGN(NghVs!m-R{H}=rcus9=tBiy|;)s_Y7}*rukx)1iiDuWfw&<5vn@G~Q zgPS0Y`G&bwp2;yeBL}DL8ZvmJu!}ip#m;t)m4I$pIAcnWbxZV|urmlkJ9gTjr7KjP%i)GdV53k&2NWw5XGXn@2M^Mw*8Z0h(IddZzBv7avitH14}0NcP?I$Uc22_6*s3Xc*Rq$Wzzg z5Iw1~_pql!UbCN7+loQkLX7SV-d*NXvMlo%S zQz?!7lnNM3Lk57Y_%5vr>JC3cR(|qCqEZ_9DOJ^coJ{{(@O&It%5>Io8(2RwF@U3S z94oUqd@CfHM&~pR4CFLI!SX_mypu?D6l~A{qb2E~9YX@vX-Sqbpkr%WkEXxJ6frV} zCr!B>#dgVQBtCUU_QO~@pwQ@%tRW>u_QM!5fM{$o1SHEyV-uogEN5|az9=}S7?!RX zAEp^oH_;DjoIT2;V31HQF>fIyI_NiKaD)vVA~qzz#yVG=!gM%jOX8TW6qw@+_>F_; zH;4i+*Kd%hO{k6A@Zbmzq$7~xQ8}(7P_jCLHa$gwLdmV<5*1zaFl3c>e-=t9jfGMw zVDoBQ_vKkDApkWla#){krZ@sJ3|YPH>02 zb9IgpqFi@%PRWo0Uz6Yk;nVRTxc#P9xX{Beo0`-DG-^`hPiab%T2TZ_I-pS2bm@QvN~EhSB`Z)i zUM|4|x<@w1I6y-N5cWHj_RF(kk%7DrRl+Iakg+U`aZ=PF8#_UF>^Ie3+)sIN)@_httViV)L0aQRG!1gQ-szrgu~O)m8YD6 zF{DPGhOEG$;z{^V;dFA8FQ%e89efr-n4U~>AO)GiDt;IFPGm3MHxx%Zs8{m?{>G{84rQnME z8TtRi-g`&MSseS{^GuFAfDjU(fFu+^fCvH+3$$DDPvzd0Tbg@AZc_Hw z*{@`8=gz+!!@tx`sa2`NQ*2<)IZgYb^E#tV0t6ZQ5o^JWmr)7*J$e<}ZvgOZK z@mQhmmsf^EfhZN&^yY?xWw7DYFBohH4G2XzNNggXDv-b?DiP40%?$_YE}3lVC{bkB zvUB1>-U=eZ{N{#5Ix>l=;DbJ|g$GW(9H9CymZ|drIav^d43Glt?+PRati3=2K?xR` z5=c90Qv!Pge8YZD2@t_}N+4u7p#=Jh3}QEX5D3|*z^LDS#1=^=!O22WP`{oIlydGZ zNgGL!3=aOa%%yGof?KXDu{eVL(*-c3g|YkBGM8U33dc|Xd&^wAH8;$VUPKm?#c@a4 zKrqCN15CYl(UGnLx2w0u0?n_sSCM7A1il~x^X13@F*?(9Am(6!(b2eC{TrsbTr#!c zHsWz|X#tkYDK3{n6Kv23W#v)mmN@5;<>&(>a6#fqG|)~0!Y=CYH2^6Q5C&pL?UsbM z2r)1ag3?}x(oXigIucYAys&JO#IngZoC3=xG)qp$Tat4fXokrt)i_NQPM9N^2?U&k zW}NiQj1DdZ6mT-C!Su|G9($Ht1u&xmD@;xBs3@a%F>7l7+D7k2XY`K4CnIOp8+G*F z+tbaS9~14Vt>Z79<5J~nyJ{P@(LuhX(jjd(L(od8>Zo*FrZM6Wa+ zs6a=R2#BuR&e2FE$e>5lZR@(@AR^Fp=d9~Cs^Z(aZXaU&vpO`e>lt_`LZ-JN|5gwY z7Bn|xbRR_>M97lmDBMRG6J}|o1p_d=-&$!REV9TAFs(cdzbBA)bbaM?pjl#iLZDVlka~G);~ zjO!=p$R-{=q+^tJ@fg*_vsU=6HVXtU5Vs>6KXrCgN{5euQGu~AFrbroy)UP8Z()U_ z17(=pFYR;1O4n>)QER0N_gE zH;FeT9!-?aC{3%pyZCzXalH61D=sPSUid37%6*8JK|r+857o! zl@X~%UG4~U&XFl>w1PfZwpC>QAl5!GHAV#nKlRoYg5d&wjtr1K_%hE=)9v6_6Vsml zi=BLxaihXQOJHPc%|kW4kBkuo#*Xa~7a{1il?Yop;Zf0d*_vnYXQv?peQ$*Tr-NCi z`mTdBuZg&?5h^ zLmv}H6#D0e_Rm~KCG}-7!a+kT$kM1=8XCdJXiK9NW@*&Mq~UTkUK$c)5!PA+j03qE zH&byC5vZg=9W+>04IfmJT%To}fTMZ?s>;id(m1MYWPqq%zsQ|oKaZ!htFloIX5QV> z;5#&4hW~m*f@ICRd;EP5IpxWAh!uykiFhaofmFjSIi*_fGPJap9*taH;&N$P6le#z zgbG*Gy~j;{bd(gRJ17Og%Y3^jvD(#kUQpphQJ8383>a7$E@-@t3@|&#IjRe=qXSZ$ z@FQ>CE^mrz&s)u`^M(~-^=<#J)9QP=`Ez6gE|Y@jq-C6&0i^EKgXqBK z296uD@2M0RhQkIUn|W#Q9D(~~V?u;_kyMbb<97(bsN^L#kYKx(?NO2tR5-d&s#QA) zxF2q#`Cn_Y%xJOL%&O$5bN;ZzfHsK#c}*6W9>A7y0pbp(=R$)MdinqSnr!LnL|@$V z{%@|ymVS_!@&BDQ*`U$NxP!^MHCnwmQr9T8sRTerHsD^`x}`T%gAo9ADN5}bEmSwo zmD15djS4?H*gd54>*hWKII{Sm%O64KH#UqYbWQfqcN_y%3%aHjFW@X;?=CjZ9HTn- z+dUm9dDe%$m9Z#rV5*I3FulFV{1Vz>Mzw@>8{Os@Ixz~C?K~YQ#($1T)sbKsNY#-o zX?@%AE6AV<7>r9F0uUuRTe}`jq`eAc+tcUoEXkh`gjMmCP8sQo4Pyi!Ug1E3TYvH?{ctne~& z>j2tNj9NKKJ1C9XUTR|qKWxW|Iu0CHmJFV#JGrm3pR0Tr2hMA5zW`=9`H4_IHX70;em3eb!uk_#2Pp0om_ot_& ze#$L>jnvURs`>%$_?yqJ{?mB&UlF}I+K<;P{;&NZn{oc_)!cZV`6Hq~(saXG6DJ;q z?XrAUTg6rbwU#_Hv4=V$tik12|JJ$ekyijEZDuG&i2369-^2 zK?@W?P%@vI+uW%4P%v{KPudd&*2B|*?$+FRmg!6j+om%v!1yjvgKaLEvdtFqb#$P! zn;Z2K3YS!esu)uPs#~}E7V5nqp-zb>Vof$-lHat^YqwqT5{zDj1_T+Nrp8r{*mSrV zu{8+QV7g#Ka~KC^RAA|26DP^g5$0q+*v^LpU|w_M$x^+`Ek|MX3Q?O-O&6{gG&i0k z_J^CbWu$_~L+40pY#8k4H#eRrlYCC0yBK667)iB4fbY}Xc!I3n%dqes8&Wvn)lbR7ZU$2R_Rk=lHGJTazrej>tSsK+!j{CP30#y;S)KLhb$C==#_*rk{ zRN$FXasr7Hwq_$+YbM{~m5X+%Pq+kiZWbDq+`t&0a2Vr$ubR`wSjjPC@!>;{)IEH; z;oI~GqSK?*mWd-o#pM*Q7PU%*m4^M;ZRjii7rXYp^QbiO|$Lu_pT|m^FOPxxkd< zJItCAEuV)-KDnt>yYTjWdOFbTKg=J%kw6A2=E%nLAmu4Taa-95%Fe}AN(V||4ivRD zk`yT9sYtO4#q$&YNbPhPK#2-&PuH8su2RmC(ST)gtGei=?7b|rUo?|twul0k2Q4|c zbhZ*@u5}IY22ly4kX)b=Mzvh&N*5Q+z_0_RRD&Inn%ppMpmrOR_pDK=Vaqx{Eaz6| zWSpu*oAi+dR)55#boeKGx=GaB%@r!hK%$0}3sh-(du!*o0*;*vj!Fea(hIbI(yME9 zp);sVy}*T)O@o?~IqT#|S9rETjc&Qz(?&f)>Kx@N2jPi=>|sD5jRRD&C9acRIVVL= zAY+LzaYr|v>N{>wL53nyq)dEh@$=l^4;hVj9}T^o1{l}5no}ip=G4dr)Tyt`fr#Ca zypaK781!8P4E}%9S+zodFKTY&U4)A{ljh)X4qyI=L-gg3+S0moS#m(8bcUTDA+D6C zBTGgm4HOqAI<`uc0xmSfMm9qXcbOzmfiqMr%qXl{LSY*j*68Cds*ghHn8oSxxy^z% z&ey>j3MxVl2WvuvmyYSwCrNYE0aHV{bg$Cui8EEVm+9jg!YDv*j2VKu$EQJs?bmh^(rp3s2M+Vvp>#&tZZr{xSJ;^{yss9os`)R2Kh z1Zg`|m3_^fo`*t7HSDmUX@|vsswxviRb(8?v$22!j*d*ysLFOCI-`IKL}yfBUAwqz z==$7?1p%yEsRCQ;=Yhar7RXLffapxCqIQ^@LGjQHKuQFJNV-(lrGrpdPyn^`gM$DO zb43+TZnQAh9D#`in=V!BV>2)nHZD~uWEB2x64X5x_i$6cJNc2z_79@of3%FVf<9-!zn==0-Qb} zsiQz6D!L_{>x#OvrH)yEX>pM`IIATHS{%iZ7KcSu!y;Nc&OV|e1C;syDT!wj)$dfV zXa2umHQlwP>%(0~>Tdp*Dz{YzD@RwRlz-2j{%zde92Xh<1v)M0*kALR3nQvy^r``aQ zxcUDp>08rl(nqCtPQ99XEOk%niqtu&{Zr-SkCPuwUXgq=r~bF&roUxmZ~Q+u;Q62a zo7H@5e{0k-5N)r18=fMD=&kOkV?16B^i5ZPbqEJgyDFo=FYKy}Y+V%>SIQ`BM)NVf z^FcWiA!tELl=Po>k7U^x7Fakj(h;kysmbij`$SSU9cyV|N7;-D@9Y{|_w=L5a3)}* zNm;9_^{Vf|)aGM*$zt!V>-GRqXMJcdx&ilf}nzOD-qD_=41A5 z0+xw(2P~AkkpV7fKDN8A3a*yBeY8mlI$RYT6GoIhn~&|LtAZ^uFrz{=W5}j#nLe5mRCu%rg@Y6BYY91dMXIkUP#!tssMrr3~ zRA6(Pk4=~ENeGT%&^>v&B|S}Q!jWJZsD&e2(o>}f=~9M-84dh?j7L}739i4!k5 z#RauuRO6=uGFxTrG}O8%DTWV$=S1Lsl`<5#Qcd7Jby+1t;8`8B_VB`jO%lVhJGy1T zhG<6WD7%p@3u$S*?6TUdU0OuYcv~UB(e#vPx+CfqUZCl50N}#C{v3kquL5yNf~v&m zXJq1s&}oYm=lh9-8Ze33VT%n%vR!>{?^0ltCX}keoK$tp!Eo|&ZM@SRr59HXa;LeNQq#p_FD z-Pe+k6vE++qucOC6F@bXkLd#nviUYn7phcvlZ{c$hT;?$YLKG?Wstv4YDIV2$JxO! zBtYahqVi*TigZ-uq5OP+Wng%W9Hec888G=s;~=j?1~pnI)aaI1cayD37i8GdV<0mP zo>;&oPXq!iR1Kwi)o?2(HI)Ibgf=n>`5KuFAbx#rVX0DJ9B8^xfg!3v71h$7OQfD; zs27UL2Uz*lo14rESg@g}9NqZ#8(&#>8kesNFur}J14`F~mNuBGrMh3{9NVhD-$qZ426V7jpZ1bB{J#0PeDzf=Lwwg*% zcy2$@CIoXPYWs^BkXO!OPq9KX;OJ%sV6R;=3bxGIGI1Tz&OTHyw{ar-sTi82YG`a` z*O3C{5*~31>ZM8xx>#C}&s5lglxi)AEa`-9<3&2yk^Ns%2nQ%aw2WLR89}hfvD4x? zy32^3ck7n5)(iBNWxGvT&33rfDla>zLASM5*}b;yL5w)}*vgF*%DK~s`v5cI5>cgF zVM2Sd-2eY{_5SMR)rnoNF#rEZ*GSi?m48&eSGlk9*2+PZuJTuT{jXL&p**v6cj@xd zlG5&_O!241hl;lp`-(>uClr2M_*kK*aAaY}{43lCcu)R{{G0RpY-|9|)QKTZEzVY8Z>bajvAsG4^1fjKiO^#)9z?Nap@DF!g30-N33 zw2ibUQEjW!}48v^7t+9O??6 z_056|a_GnaXEZmJM4dG&?dlxo?_-P-rRN;KypAjd`Iz&n_Ur=rSt7vpYHrHwioYLq zhGxbMJJmy@(W8wtwaE>M!|2e6$bOP}MAfX_QIkov-PnimvYqnR^^%ZY0e-{UjPPDF zT)k*YwLk`?^bIY&Tv;fcnrNkAcSas89L)EeK+CGR+(JG?i;KWoPNXn!Ny}qTlNfPftN~MBd!w$ zZRx4FPAHO#ors{oOQiPIoOdo-I5MfTzSyG+{53@dV?RcEb~^tt^%0N-gArN(2n1tP zliwVtVGM7 zzR#t}cC;I#8ZUjHO9^BylgQ4Pj%8I}xb<*F@#oaTn4gSkJNZfO-q3uE`)&JmQf&M}S1g&&L1#d?qNl#JhP#Q44QoB!E6fY( zvGb+JG#trs1GQV&kw1cF( zbt=J=Tyjc|?+*1cs_{Bg5>!GvFC_w^jp!R()YDpwL`Q$<=|It))1B@B6=b{a2pJ%{ zqi&GOQgDIp7!?@SRUbBx-EWfa?6>0pz~vWhsAkyC#4Yy#v2l9Un*uu$H!3g+qt6;x z8lC)NAce8_*@V)`PpR;uc2BU{HB``+J%~i{c08O-D7}uNU4o7bHxkvS43r{Wc_2Zf z0;?>uvSL7N&L6;x3XD3|n{35c2oioBc2MX*$sw+cY6l%MsADwH0lVhfdbWPUFetAF zQ4IB1)bUP7F^o#0$ZoOPRP3jqLS90&LfDfAHhAhB-#EGz;s{mLINhKS_#w&I6kzo* z+fPQx>C%K{2sAQ43SyU{`DN!o&>G#1L=Uso9oc`ho--VUVCXc!3Z$2#Ep@c^TJdzC z^qg;yo)e=bonp{)3e6ygIEYw;c8DAH94untxE7H*O6$n*q6u+VoZV_;VhN4v z2iKNR_i8@Is|Q@1>(dF1x{>{Eazh3i$aj%gG$PnYFOaWM$r#$Hm!;Wqhm5rvvPhZE~ z{R8Rc=_To7(u>l&rFTphtIt=TtbVilAJu!S@2$RrRfM(G<<%wC#npYQGpgI-QSisE z7rUPB`cBtFT_5jyU)K#?S9R68y1UNqI-d6h7j(_)+M%mh`FrJem7i6%R=!^OY~}9C zdn@m({2RUpODm_P(v`)jW@Z1%Zk3%YmGVE!uatjYe!Bcv`H}Kx%6FIFTYg9R(sEz< z;_?}({mRFd4=(Rj-le=PuLeF?PNhDO`g`i!((9@J;x54xlP{N^Eq%ZAozj;|50pMw zdROVHQmxcoI;V7e>5$Tb(#+C?)Pz#9_)78T#izKv@QcNJi|;O8TO2N~DxO|IVlOIdIKY3&F zs$`uT7tT#iOR$HPqFr$Yr!f@WxqCUaQ&O54SMIEMI1Z}~jYJ=Q#eH%N4(Nx6Dyf}Z zOuhzFjl`Wq>=z%aq3A>Zl}My6mhXW^BTBr^3WKoaYjBQ>$9bC3C|c8%nr0!m$c#>& z?9wN&F*q-dRqwjcCyrO!y6EI*V!^{G_YJ-hq04YaBwgo$|LhTCFjX zcI-I;f$c%o$_gjl?rUW8ihZhsOlhqm#xY zRgV_Obv00n7Wc)-!NzDb<+zv;H!qDwrOV??4mP6Z54K6|Vp8HdD8w}Pq*iPM)BK@R zOleN_6<=xvQoFl8IOdb6KN<7ch~}(nCCpecn)}R{;CkW*Z*f}6Fh$1FG=hZ73lzDV zDk`rjq_)>qanY4dOZ(O*Ui`lQJ(_s&GyeBT;>D|6!TKmi;!m%6jcPO!FV6L_Ms)Sl zKA=97c*$!#j}9eXxXCkMe42RatF9sQ7R+L;)RCiR!_Y6N2eR~%(YuQ2-P_1 zbk7X0*u;xR$3di%ii2n`SN^T_MYJrg^#$+`z95VQM=tn;FQxbv zN5wZfjgn!ad@pvUSI2lG7ksi6Eb3D{(&>{1i$0whCsnIQ2mHFlyf%{f#V=YZ*M=s% zZA@Sz@y9d01klw9m&YZmMJJbHo`dyhwr`~}=pT*tyEV=clH=Q3UV@|9jW`LhNF%>% zebx|CcN|shL*kXyW4uSN-&Y+r=M^=$fR@Ja@@oG{Yx@o8?e+$DTg> zd?sFcr1eF-R0}GBUugxRjX#Q0s3%^&uk@=#1zX05ZnWmR13pNAI&$5!RN?!-(E6mw zUm2?cL&0eAhg*R}y>o^yvR+~oy^rUQwFiW8wD^O*x_A?|egTbIdwu-s>KAN{*$fWC zX1Z^p{eu_a$D;i#vzEqC`GB}Y1NFooPLHD@@#w(wT7k5j7g~YRcK#G+O=fq|?9nm7 zwP^ObZBx67;nK+wwbNMs`(7Y!fFgwYjqORgcb$H32(` zNK2=9O%O|3C+B;_jQb__l$ddU;^%jGYtWzg%PfzRC)c9OclW6?O+7=7I-2 zi$2=?cjIXNH0|f&rrp<{cUBCXK z`7UF<>l06H@V`eBPbcup)^2j$j!UY)cf*IoQ`dONaN?;Rm+@XsiYK0Z)@6^O3S*Vq zyg`-E=-N|#v_|4d)X7GQb&_A;vr->j_C;6PUd9`%x?|MP@Z{%xN+Pf`#Hn5TPHJ;B z8uHeqm(OU`xiJ&W=~Xe4dZT-#&qF=&)SrDojXdn>^H3YT=z1R=AwIRMPgZRGb2H;O zjdiOoX$6f$H!~_w_3ovujb`EuVJ)MBE{M4|E?gJmr0jdeJgA?iW;@lE!5v-Kv;W~s zDc{l10deZ}#)a!!G10r1;yl+A-+O0_tBut9V;t@J)E~zj#U$L$hM>zdQCa_kUZecEl!Ng-V~=;OFVh3muoHYy?6M4!O>{uVqfyXkyUi$R_Tn5(lyU)kdn=u z7RPBsGve{pAa;B0jd85{$f|RE4t0>S&sSq6(sBMZW>Sx4j>bWB29qC;<4LjSc}v*K z-A#>X-c_woy5riFzTB7>f@_zxSkQ7<-Xbp7OcKF55HM5WndK8K@im-{>u%22-ivQJ;;UjKe>{6&L2;}BOn*e)@7nENpo>V-nxS(`P zaa#G?#Y*8Hh5zF1zwZ_vEj+;N_r}6oxCdZa;dJ)@_hsh0eIcFyL;mOar}E#)f00`Q z-{Cx<0vkzoHoV_Lc_Uxt6tJ%I}nstEbCGH{2o}4{0yDxL! z9k_Gg&zWCmev;Xo`C8_4nR_y~X0FYQWO~ZCS9awdg5xs>Wp>X@$#kXvnf`tHd2S^9 zdirzeyGzff-;;i8>6P^QbZ`3n^r`7La!28;^n`Re^?K^X%7pSC%X^j&O+8&sl(*re z!k1F_r9Q+91)qOP;Lj_%r@Rg>*_f#J8TnLNRo$>&%zxfNfH zk;>}I*_GqUCsq#BM#l<%ePrD(S1?>KDe zUMrBfCzDe-BS*0EYD=5>}uw>%KTjqcL-n zwlocj4jGO^>La`E*!mcrzPBq5hkAv@12IEBXPUhf9$2SCu-7gz$(IlI?<_p$T8{-`r|~aJP@SGUUlT?NekZJRDW-_Ua)c zW4`b8dG`#~kj#{f+5mpD1^p@NeoCpL_Y9y51LzLGQGm zd%pN*FbcW$-WW=~PTSKLRD3)d)97$b)bbgv923arDjhqLBLewHSMljF@cNYZw!UhO zDf_h|iwNhA39LAJ`jX2U|AM*`i>TW(VqsjWLxYh7A>ku#SzFH|(Wu|N-@*B@Z zK1qe4=9Ea3Le~1O@HybX7<2q9;}rOu8Y?V;e8$?s=ghr*RmmZop=hVw;tcf9v_&IH zK^CVIFI%tdz7sFUiC}md({0jCpqQblwPI?rX0EqB;u{a+u;@4&W(!QT@q(AUSos`^ zj(^jbPr$o+rRrTfbj6?JkHN-_ceOt1Gp_fQC!+^eb&h$rFO(9ZV{RGy&G6zE+Q&;K z=)`6GvHM?rv3mz+ykncxOl@r}anS>hPTwWY)j(}s;_BDNeA1xSdRfcb)$qbNFIr2{ zo9>NsI#3%%K^Y`V!nCj`dsi%){-MNQFO37K(8S+vizD{eFI^MoSew*n;@Xe4(8%>D z=A)+Fy;Rkum&CbXwn+JopVMMiyR^qEORuagP5X5Vtn;^>TRjNjQTCQr+M@hJQDVDT zTK$(Y(>9CN+qZuGlsFfxJB_lKk!fK5jKHZ8~gYEP<_v)1t&5sS9Iz>hEz8(t-Ks4`bt5q*uH~TBCSJa-64| z1X|y*|7=C*Yb0JCjEh1Q)#qLi7hTFe)b-^Sy0;#ke{d|RUK(%WyT2S0TuXfS<+!ML zA5qk~7Zy@Gm`ND+>a(UXD{dZZ>Wx_+^SZRAR-gGpEr1LFRl3QVGowh zeki)@Ob_Op&olf0kMSOM0V{InPbQ@1=$Nmk=aOD}7I=Q}Di325QdT*JqYs?!VXK6~ zym>VGz-gYj?l#?l337%|mgR5H$Dgtn_1;~4&U(?@Ms&kvaWIx6di%%X&)#0fY6bs^ zxn37t`y>B}yhfvIzwgCQ>uQXwi>_Maa>wo!<<>%6_I3wiY%4{L_GIOi1z<+E6e@9j zx6@_5SXQA&nCsF|LgGi0U4G@0rf~hsV}fgm>t7o4Igq&Np)sGmiMQ?Kw3H{t={Rq5 zZICY+D){k@eolQ)923W!#P!RZVI~kk*XxOQT{(tAqht7gWn41JTO)DZ5n~`^7Rur{ z_X0^=clg*S6#r{Xf!IP5VNmS|EV23K7NrNuXyP5ye4X>OB)JjV*L+{Ua`gZ!-Jd_i zr^6@de*O(!s;j}1*{N@L&3fhP-WfBz99AQh#?*f}TeNa@4=uF5+x=b=_$N~ClYMoq zg7NJ`K5!LL6SsTQv2s;!eV6z7G*?0^eWx$oN~9R2Kjdr?lezj%@2jLgkvNHm^s0|lo1FijUrn-8 z|H-aq*ZIsbE~PR{%>^X1HqneNO1nL@fd{f6|m zsb8kPnYuI8pE`oO0H05OCfQ7$o}3!J7Cjk#EEP9s zb>YYW7c@7m($nm67a7T8rNm(>Jk35Pj41P(n^ua8>r(JQLl;*es*7vAE@!-^HaB(a zRmutt9l-&Lm(HdY=7=YDA9jHk2~Jp0f$h`W#9ieaVu?N8!t*+gu8xZJwL@|*RyXe3 zo0h5jpq=IsPd5?>-3MDiq=M)CQgvYFh)SGL=)fF@0Ehp@j=#XEk@5KZAme}082*-@ z@%R&B@Cyy@QWf@Xa32C3wd2eVS9y9G=uqu^0AP+is1v7_Q~0*|`$+MJ)Za(Ni8N<4 zH=XCa<+PlE#}{lg%YgI_Uv>?&#siQNNt-&?Yb#}Iq4U~GqXMI4oRgZy*$8z7?o@YA z2g<>Ovqjy_TTZmH&B;id=tSL)Y;HO$wbNyKiOGQA_H=F5u33`{dclqNj*y%HsSot` z$jx*4DG3~H#RFF09l|rR32(rTj^!68)Qj8U!!~1SW|TkNsmC*<9yx%=z@8RK0zo~- z0Tc+8JzaEUxgOV(fdc42M_M5!)6+zzj)i~&Yvbua$;PQZ8=8;tvY`Qh7dAJYA|AdH zUua-M4__ak9=`PfKI?syb$W9X*I~;26&fdSffE|6soRs(Gq7h3C+s`wmUrERY`_yu z2{;f`_wE8zW_8|y)&sz_ikT{QL$i3sH#chcT)%4TyTK%ZM?pd{YY=h1y z4|kTO+d6#J>HV9V4oL068E{-v#RpXSfyU5!vffJUx^3EnDa3xwP5bNH@U4gzFMJz5 z2qhXtTB!C}OZ%TJ|J!L5Cj#pZY2VO*8<}u^6ca#RA5w? zURbi+bu(?eKmlSXwWl6T)+-K$SvZuUZcGul;E5{^xkVARJ+QfH4}B0$1Bny9>|$|L z(dE{~rKa){nYcSQH_cCNcK{Q$HSJm=7GhnluRfFqM#b?C#f0mfk+_o0$qr30m#o+aIM9G~n5qlGxY zz%vyrb39hYg>eY>0hWmwk_kqQatf~_6P|8Rdv%xSj%`qfdU%KAfKrFkr4N$W#x$ry zM+Qj4uvd2-EKp{R3y6x=TbI;*PGlNXv{4Nhu-5b{JI4o8E0niY&kgyC83l z43PTKTb5+JDNv9>c|F~rcFU5UeCmWUiq%Y6@_NgX%;Jn`kh~)Uq|PTvHLj3T5w1i* zHO2v!0ljI-Xq_4GbfAcQqSzvzd?0cq0-^!ii$Ekyxq~4at*rqB6T?N9%+`=tU5~hj zCdSe2SXraDyCEhZq9y%z50*f zq5ih)`s^BZ=ugcq&hDSxEjul{T{e?>J@d=VPcu(szQG>-y_wrG*JZA(zFK{``b>38 z_3PEoS3g>PU-br7Bu1(|)eEbqSC6h9T-~!et2((_VpsencEvYzeUWvFJG$N}yW(Bv za+cuWuK8V4ySmsF|9$28%9E9ERUWK-qVoRAjl5#eS2@3OV&%}vUX@)c+f*XX5Ik4@ zUilm4&vAm_*7CLGk@D*Dx!iAXXnF7Q%<_bCs`Q7_&r461zEyg#^oi2@O4oDi!9eMv z(rMg!xPNI*X>zGp{7dmy#b+{u#V3m2D1HuqiQ9_rz+a-TcyaOc;?c$Zi*t&Ti$z{h z{B7Z9g(nK%D15%~(ZX$o>k9u?7{puRjKVR6MTOl8I~TeNiOf-%{WG&OJ7lt)ws(sNUCsJQeeU3X5Z%w^D^>3-c z)WxaOQj1dyQ?qeM&nN$q{7v#_$?qn=nfyZX6Uh%IZ%SU198RuGo|Sx4@}T7I$(@sx z=${x3T_{q;7*4z}uk|$)U0^hC!yx; zZl5q>3(Mt&4VE+6*)=iAK4EmzGhPz1WX|_b<1Eyo32*SF!~3`Bv(2f9vbj!>0)rD) zPhV&A*piTC(C2T_^MNw8zu4T_q~YN|9bU%amfd9ipI&4Z4?2b1GdefAFT0DI6Te;K4*y+za1Ayl)|=1 z6pKWo3AkW5Daqpf+m4A#M1}Kx?3mzswCImxf~n)(Q_6)d`0!k;vo5I`XIK47A|qwmL;x{$nElXuaVDa;aMgZ`O?sJE;$?! zC!04myKrdFM?T;ZQ18Ky;KnSXmz})PXoss@3Vg}uTU_dVMg!mW4Eb#vyt1t)H8gtqc)lTel0$>ZTpq{kdYX(Mk#OX*Q;9fTrU5z^ie$@n^c8@#D#)pQP%e{o@ zcVoom5LIZ5L~pheAO!O{9BpI1hx)0(4>_TTB1yQpKw5Y`@pzBVhLmEBoyE|=XwAdc z=wK`fapq{gPuPxz^n1?8hBB1d$W@h+?fiN)-yBon#b-1>&a|4ei5ud$!aSPjj6Gn& zN22Y`5uC_mn@ra|TuQ+=d%2vL>R!`765Zzv;F|v7#1lB!8XXNk#EBG-`{rr}G8IFRww4$+95px*W#ylWzlC;8*AP6|0EE$G;=#= z!#AyUyVrdNWS@5CSw7#m{ZE+Y*`S1kogE{Q;e_d}KuR@pNgNSJW%K8k1TZ8szZWA# zSqB!zY^3?_XKDmA@nn}T62^A8Xq&1qp>2*Pe)d+=OZgOqIm1~2{Z2e{jb}Q*=-_A9 z`V{p%;C*&fN;rut0ADzw=vSjrOtvC6qJ!^@6TzsXzHezU!pNWD2NvoG6jcbtGekLI zE{dr!;6`-Hzk7+$FaGq=I8nr0%)}8zvc+s1kw-_P`z{^xi7(Ta<2=#23BGLXH{p-8 zm;u=Km{v-IwQcPr7Fooj^XUb?to^9=NBtnBw|@w~cXLD+Ad5qZXAksw;FHj`txxLW z$)|l5q$Q6==l>-RmgaS}IVA`$X+s~|D-Px5B#E%Imv951lhi${Q@LpQ)WOyY&vUKmD6yfDj) zPY6WGv;fr9x~L~sH=dqOJX?wrV4pm?I&NvQ2|;c-#ba%W6{bd`@HgEdm-MMRzW=UH zDDo|frJ|y*p5*0=7uC~qtmE(PO*}ojklIeNo_OjRL#z?IzU2WoG#H5Ay&?7e#&24VhXTo@m z5)U7Z6D;U?y5&NzjUDln8|FWoe^9Yo<5C8ZG&mOLFO0@+msg7*(qXDSy8Bo47M z>K4n=73@yHTe1+A(FXv=NX?X1WyuLNFj9^TFt^2DdW9wJ*t$^rDti*-br;Di`}*ee z*>R<0E5!0TT`JEJ8-fn<8V4BfY04WRFzPd*1#%E|wGiVyRe3vNha5awsw01Ct9UB0 zplw;FVp-7VEksG!OBp8%tq{w?PLc&r?8rhK0GO)S(b-ie;-D&6gcCBr!hwn9qL*?# zocJ*!vrsR6fYZxvuAY~dP>DBRR8FqtcUccq&eN@&JE*8vGSVZ7&VB0cI0QJ#JW)CG z>Xe|#QOMcRffm1(I7do}ZVI$r;T+k3?$vRFwKnAEU68)Y{rx~+Q3~^Yx(;<#XC)_z>p%5PQo`uvr-Y?VrV_KyA1KV;KyRIt?Boflhi!{f? zAxhAHj0qwF(#*Mr;rIvAq+tjdAcNMd?Q~O5GM!;G59?siN><}AqM$YzRdi342%$}h zLx7iWbY=o8KF&_PQh`wgDX9V-3UoL?7}a1&f$8|517=iU438oi9w~wB1^tN<0agAS zUo=OtJJf?h2w4-|bcG}e1tS2vKs}5Kj6Gw$#hCtzE?yZ1P1@6evPZ7B7#pc0X-77m z`tSu!AC~Hy67ckN!57!Kgnbc=7O_=nWHht#bJ z|BzAf579u06Z(f3nGrWJhV(*F@url>SPtId(^o3hevKm-PbY6c)d9pv9fEOWfb3)s zOATwO$WBnhN;HuSiAcD+37JTf3`F9{#;qaT#OO%{2i%kh$nT3gOwhW8W_)VGME#PrH8PD3=kiUUNxT{7qkz{B(O>Pvo&)^W@YA}^na#5i|_xz`Ol;_rtU~xk~)-A z@^`T_eQa`v=oisvqAQ}~qn#5kk)i+jFOitve0+*pJOIF8H+x+7&qL9K)l7f&eMtcga5a9bXAKy_r5t$yyG85gsjv#_gBnY%@ zP1bDrNERo|)|fDhGRdMadl0{$aig@th_Yw%@f~cc<1VBeXN5u??KIC8VWLG~WG8Eb z<3)&rh=8oNS6LYw!w0n?lMLeoe7EM~6Li=D53%1;cj2(b2LN8!e0)1~1vHvq!*Qa_ zb>PClsL;2xQR`XWvqI)CB%)&@=0YMUy~i_1Bn}{v)Svwn(&s0%zcP0spK5<43B4(q z6j)besYU#(o%2vz3NC;YsDv(83Hrv1l{y$NAR`|{1Y}xqGF2`rrFNOR5QCQ$F1ew& zTHX*IhX7Asm(bV4{qQw>JzS}NplL6pF+Mdv)ke)d|MYmlteYA)sg^eDW^~e;)qI@S z9^@KkjFhVcZ26)V&{|NtUq0hI-5V@;w?yLI2mHA-beu>=k0WWVP+Hy-!#7$2B~DmcBkLj@rR}yGWjE_U zO0Sfa7-8k0O8rs&Iu&+t$4|!v5{U`Luo?*ErE!Q78i-a95vDdb56O9f)hfea>H`Tt`R$1( z-FQrs4-}cvkxs+sH86W%$ z3U4G4a-a;3Y{0#xmL)%+f?5_DkV+v@Nljj+6AL{hD1A zls-&qAb?665js#5sZXpY4Md3JC{il~IP>mawfwrJWMhe-_3K_2%!N1YLf;XCCh4_{ z!jUb%dMc5mFyJbVFu#s&JoOzhgLd$AWaGKo%=Gv??e1w6Glg1Zg_3d5xP@{7@TFC( z)Kl2ad&u z<{%CMzJGJ`GCekd5VQ>5t!#7cl>**bub0n!nkCH9ILsIUv{mC%gW3^B}x z2n@3U5aO9CL^>y4mA0lH3Na3W9}QE_CW`eJxTG6e8y^4|;hZkQf#gdP2*=ZbQaPtd zDWuu370|j9^sbcZ%`@W@QRwC^*OftJm8|Pbrda2S4gtlRZh3 zmCc1tm{Nfuo)g7xEfaR=gKW_S;)w$+k0(eTmn{d|xtr(60IBEWrJlh_(m_27&3GNB z%DqB;7C;5%<)nZZ6oAN2&m1bHqaa2F#$v{FJ+mW_@XU^Ip=OVfnq|VvIC`jKdD_!0 zXL{yPNs0_|=EwjmsXG!!rD_Ro@R$AnWz~bK+jM=f>oRWV->a)odA9QT%Bu2f<;~@L z%2$-nDlaH!OV5<?Y)+!eWVa{J`++2^y5WZ#n=)Y|}F&ODkK=03jJ=|82nq~Dre!A<>JQ?>u* z@1)ecqtzlRHO$ioO?pob`h9c_VQ9#P1TDkX`d}H$>Gn&7j6uHB?}V(?k7Bb%PS4nAOn z4}%$fiwqksr&k5m)>w@WbawOcb=J6qB*>sjjf2bEh>iNjDI;g6ecpyOZ{w5^jN>!p zMvr1^84KhT2LPt>_4zTPtAYmgszgBZnvXA)c@&+lFbfATLev4wP_InwSrE}T$n@Zz zpo7vF6_$lmydYu<5Wvt)seaAgh1yUd2(vJILIlLB$pyBt*xM(d)(BVjA!XH_46?B} z)TNhk7Xre7T^4)6J}Lck)%L@m*E3)rQCQ77Cf;Yh4FL zGAg-6K>AXc^wB!74q!&LlIwACj|xhzL<8wdVKOw3F?t&aA|T4UL==aGTL%lQt0P;^ z&Xh5UP&#vFRD+!%FddLcs_g}^WYMhCrRt1eS$;yjCPA4xRTAoglJS{a$kSC!5L8N*!ge=XD(-s{WAZ_sk zZHu-RtW7Lzi$1`(>dRna-e}@THmE2^HlPm9bSbkF=*R#|Z}p~y!J04(s!DOvfLK{O zR#(rIOxlO z(y%qiGIO|QM!DFoK$saHU|@4xv^rE7hhQH7n6B$ETh@>%g<^w&ldTo$*a4_LAEtsF z2kPi>rN-W1!vU2Yg$tBRn35JinxsA=MnmeD90<*dbFlR=GFmrWP#nL*D&Wdgx5X;h zai*z8Hm(O+_5L?pwcx@7FvU^NMO$~5jE2RDxdPPZ!pujr1L(+bL{s-yO=UY>vl(it zQZ3c-@2|uB9@-wQz_7xb~V(fxsjcUoNr=sY|ILSJ)@l#Jlp>!r| zRA7~NC61Q{=TSj}Q=)q)Py=DDKbz2M}{ZHWjAkJ#wiA=076gZ88_DLbv?C>o05&& zT;WF3>J*9+0nv!&NFU-bK_4PCAdCxV+r&Wf6pjlOz?At^eSB9}OIxN$AKzu}Ew`}f zL3cEFmehb5x^~eT)k>(2gl5D#29SPj0D3#6bzEY3Ias1yND?C8(5$p9)w`^ zeg-kxgo1>7G5p9 zP1EjKa2sWd7Csi@bsNSpF;d&*bmPzc>H( z{AKz6{KfgxxLe?W($Dg9^E;J(ldtBZ+#hl;=6;mhl>2h-zTAg+5#Z|FP;M2g2gm0Q zWd&hYZU@TuE%x=nlIeWjp2k=(z80gO~&7PS(HhV~RL3UPlQnpl zgD+=(T>V343#$zel{c0fnNOD<%zPwsOXiwPqx6?@A+tJjUgo6Cp_#pT?Qq*nGX2N& z3+bnM?eO9Br_vux-;};KJ(`@7?n~}oo>ktr{I~Rl>60tv^x^4!c^_aRr}6)s`c>+g z@)fDa%b!SnHT6L1uGFpN8&Yp8Kb%^h>P=n5sr;i-2bP~q?U9s{VqP0lr;*2#<^p@HRlRI?OEy7w|T~ z;_89bJ*&G^x8rSqKX?76>)Ea+xd-7(UH5n0&AW;>a%oQcPstn50w9_+`}!8=T=Uw zEUp|-nOoVJ7vbKZhe>+uHL<%N)k7zIabEQ9ujvtz9(+`ziFOvB-eD7>~msQVlC?l-5V4&th8DGcMM;pnUxPH2>chxty4 zgNCC1WpNM%%m1nM#htysZ+#6#Oa2r`YeY-9ubA^&dW$LiXS%G*0wACEwv7go!tz!i zwY21~t(frnj2`4uXuUC!gUXzbvM)YA=u_knT;UWS4-*sR-r<>2zr6MLAFV)+h&>d4 zQFnz?^#~VCrS}5s<*eV)O<#0E<1FZ;om_&V9FursN-KbS8TPibwCEXUD<|FL*mE|I zFD^b%NpN;T z08}(}ft_O%tRypsmvK0wYoGb;VyyC=bG?(W=xQU+kzIwN7xf8;Ikn(aPN&xeoIsj%9sx$9_*9iSFCh{~nG${!J?e z%U0_qpX=$QJJ)KHLDy)s#7?B)d_gX5dt)3z!q@sJq&(jT)H$vFNc@3L@8U9!{CVT- z^41rRs_hvAc`ay-$xS?D1!)JxNtg3~OP2bi_46X}gEYoZuPAMKnXwI!cJ)hDd& z=@*~&Jb(ovB-h?GG`g7=m&CZpS9H?@aYW@~Pl-vGsP)axRO)B6?z3@3Bwz>a1sN?l z#Aj4a&)$7-{6#+B-Qy%xiw-=(#a~Nt7M|#evzF|SMhmYo)$U(QSts&nh8A4zjExpP z=8@C_pS(_Gfs)w%G!XX%)BSx8c~~jh?^Pd9<+uOmVkG6>k7pvqKJ;_Sb`lRcs6ga+ z`F8fy83B!Gmq|W=+8Fq}V~2SmsqGiUVU1{SyQ-T=*!XC`*(mt}xzDIIKK+!Kd%KKi zzqPl|C0`uqeG5jEL$1n+Z0_=)&t^TEeyvZD#}U8%9?wJ+YTt+BuR38or(-;{;QM~L z71)T@9@+{dfwf*0#W+Q^kvIuH8a|%X*Dk|8o+2l{-~;)LCjP=z@?bRmD%a!(h9`g4 zVdx(z+3#FKm)`O}Ty3)uzHXZZjX6L_!Dc@2XFXE~$*-L8lE* zzqg<2+K+tk3Xa{CqMV|{Ek1i<=o9}qz>GABk}9fpGmjf^r;&h#kod=R9Qmt5oLW)VK@Dh14& z+#6%p9MBQ)dtZxV`TQc6DM|aF5Tnr-H#*jOQ_DkrE)U%45Ixju<<(ARB>I9IpUEd* zZ?>Gv@6SK%fbz^NZxYvB4*BHE4)UuAC2+n=4*~P#Iv2fVU}sZ0;@mgc=^sDs?7ogd z=%%7irF~jRl+Tna%P=bW$+1{E^-rAB!pf)b1?i=}ZqZO4MpnOzr2~_DT{l=8UKibK zck$?GMXp!5*G~7_=!MVIOa@eCwB%k(OSDFG_ex7ZKBJ+Nt$FalIO@(kSD7#Espk)L z0wZx_EjIf#$^(nXiS+JUZ0P$5FNp+Op@wXE$g^f+u< zx9g|~inU%x(@;YL1uL^Ea^UOI&>4#T@I(F`YD zxtw8=owV)7v5 zBB0%xTQ0QKTu?N10k*B?x&Xi=eSsvcJG=@Fl6GWE`g}>6HS^Jqq?HJ0R&&dFx^{?L zLFcv&%=}i;7QF;smXJDlDG^@Nn_JGcB{$7h+mf4J_d27w(qNs`q=VHPAQG$2!(Th1`Q zD?tRSg$6*Br%O_7MO)#5q>Kt5L~xpjKnNY8R3acM`Bc>}a@3<)3d%=hAsbM=qGYX= z>p$8B;m82Vo!+-C6vYL(GpfK?H~p8Ni!QAG%g;rYd1*J|r6PNh;WmJys}4T?f483t z+Kk7DJ3QL4bvl5)XYkWbX;*eSA7byXy`1qcQ&bItwc3 zb_?nRt=FexYE4lI(7lY`>raS+f-+$p>fAwv zL+B1F!Q^F*cCa|>bMIGsUgTr~WPnI_wzeK9iVLJGI1k%ZVT>r&3A+%cRJc+1v$T=* z^eHN68gzNNXnw^1@TFfdYHFL8pkW)8~WjgnBwqs!gvu zZy^H}a%AJF*PUB3y4yES^13SsPrGwNQtxzXRt^fJ{FBF&Uj;Q@`L%{9|0Fe8T7Jcj zlK~I4>&`8+QkwzP%J1uaq79B!svtYd?}6J3P*U&L)B~U+BdD&mwrj4G4#hR934S{r zuwhkAMFM^@2sh27y=*HAr<4wUMui^@VH@p8q{b;mpm3swt|3&dAt)xW0}evvF%9QN z3^`oWSx!f`0x)w1$T6T^WfvB}$N(t-vwSUp;er;U3?*;WuRBSlH+FSY8i$p|eZw`@ zq9!e*P6bn>0x@c=W*kWIgy?5gL%4n_CikLO=jvmmtCTsBxB))1TN_btZ4~ zQB$(|s15hj^}J{$IxBH{lt`AID&1SUlKbuFu=l^Ucy;l-;sM2K;jzL!g)4NXo@J)~ z#r$pg;ruE2Ir&uXr@33%m7kG)HM=EykDeZQyPh7H%>4o1VL$rHt|eXjb|ov%RPN`B z)H5ry%l{}pUH(LQVL6o@$sU<4m6v9I&WnI+G7Gr%{>SOh$Qgk2A?a;W&D2?`8Oi&S zZ%-~u9+K>eo{8>@u8H=H6660R9zC$RbxLZ7US_QQav{QOw+JAQi^&N_P65l&Ax_oW z|8;#ir+cZM4&JS~b!Q#JG3V+RU4lVi5V>f@0ub-)=GL906*v;mpaD8Ez~qx|V1^fn zXiwX~OsFz2BM-fDtP;MHm9J=mmLcS8Wcbc+Zk;6ldfj;Vz=Zt5Jn+|Rg#h2PxmC~o zcdrC4cpY1{oMiCV8xuqXq%qM(w8mei6rnVPlQ052tGRW19WQA1KnALB{^tgppfHqD z%ND|v3T#GmD;FQJ>>vb~1uaC0#!D@;NLn3!+IR^SSn593w6K2y(?^s#V70oz%yUa% zok>Cjv`=#@*7+P7rDxXeg|Bq+!lyc8FZ`_)kt2~*IKn-UV;n#VbDLYsI(C5QauW8P zjt(?)OJbR{Zzz`Kuzed@+P7r|)gs2;sqN2_WQz~8q+ZZzL*KqUjD^RYXSB!9xNP0xjD zu*+Qw#1na3m}vTb%`KOuwqGID1ZGC4D!qN^h?Gn-E%t91tK%n}HOn8Av-dz!2&GA8Wa}hn<5bJ@NnUT5jRD_9PJV ze3_br%?cV-%CO^KYq|fgUdwH6IZ2wPbdCBtSM^M9JLm57v zAZAvUecJUwXh4de@Pltb1fz3X3c;crC;8!p6hk5&_X@k9CF` zA3}kJW{gEM$N)+77`0DA5nPZc<_IdV^0js?i*yjb<9FI`~=?6x#StdIxB+e#5COp$)w!#Zbg5?O~F)M-tn&y%iNbu#J*r5}gD z73u3?RZ>^DphM~V0Ko7bG~Tk)MO}@<+lLtM0j*iiW(s^9-Yx(zvbRI4A_X!L$X-PQ zXpiQWJ{ckM4I~^PLeu`9`?Pd~C|8bRW_nZG9IohAgPwO?Qm{z|2r`J=vPPQA^5xwt zSK62$XfB>^S-eCn2{)?iNIl4+5&@B9k61SOCXa!72n`6v#-3i+ojvIfTY0-Kzmzp; zHvFVZq{>%mgOj~I!3D-fa0+7;!VaYBj$~*lN8PSox7ZFIQD(EgGeIL;g8J6F02LP| zs8oY3*L*Ql9S5dVU{t9dMP15Ts3aQ5ONoGx|57zqvd3-Q0{N2_r30;`E=(LBRT9-t zRIjWqsm{Zv{2})Bd%AY4{JQd$%6lsVmBTCBas%KO%GZ_Wmp)#)qI6biKKuDM7Z(+` zDcs6Sc5f`~l>dGH(frN%L-X6@p38kaH|wN3KHr$seu(?X0M2?Kqn1^$vw{g`OMNjxrR?nGEyKH2v=@F!fxpj0^G+6 z*OOt+B7_`am&50nI7~3mvF5WC0GP7%P&T1;PJtX17>SE{FoGJIw#138YXa~S^WcD_ zJhrtuswKNpVVZ6SOsT-q-_aq9#RE0AHjM~qVRP#Wx!p?awv=@jr_-{2Whb-g*|IYC zqHB{?qZKxvL{55y9eK;*PKTVNb}WEIsN7{zxt>NkLFIb7LDhO_MZvfeYO6^=5v$J2 zM2AQUu=WFm(6ujMc6}93YoHiX?jKdb}&Y+UCp_ zuVV)9$mE3eobzox$E#sDU3KcI(^X-wSB|3<>VgwjE7M&N(hvq6M<>bd`n0A`-T5i40hl%Ps!QJ=A9^7!0*S$QxRErVLoP zS)98n`*o^1wl%i`0K@wX!x(P`uDLyY(7V|c5t&Un1lABl{dreIW1aw5HF2=)PR zrn#J|wy=c_nu{xq3v#kIrEw`XU?2CQ|`=px1K-51@>}uEtC2UBQB%Q z>9=V;f3SV3U3tmKw#`L4<``=$IJ#VFLZt_(N}U9Ho|IN;lmi?s>05lE$&R2!f z48UmV0Mn9zX?2^Hj1IK)s0Hm;@!;D5)e1S1*Hi2L^p&|{r6n?FrS>DTvLwiDYs-)SmM2Q6Bw-;1!hzc?;#6eqm#2%o^mkM zqE6n<2KglQpc6qa4#^ClDocx?RCrgGdfsxDCLX_?x6&Q&9=ig=`7IZTh?tJ6)G%u4 zFg8Z!0KI!|&wzXdMUT>(JsQpdYu`z%9j_}lS~|{?JssIFvK^)WjMOn3IWj=*o{nxj^^HE~?HGP1Pa^}Y&g9b+EKcPhS77PIsZw7^BGhQ z*gi3Iii|sB+YYu2z_`Cj;{G6Xp0+6wP$M6Gip8(i+Iq}Zan^FXtt7*`V+Ae)Qpf;t zEp}T;Dv^1jt>r>BnBG=GWl-8-Mg>MQ?6#6ar5&UY0X3HSll0EZTKq`n=9mehXju=) z%-eD95@o=TQ9a%aS;2yBQ;X3JI?kXv-F7$t@kmrBzdhkp)-#(IQilUDqyX7JxKNsk zYWMej&foL@?kVNc^5CuP4szB+%Z@j&CdjjuH>Zk*Ye+c>##cw_Iz_Kl4jYc|UD ze`hDx->d(w{(Su>^}CAC*1uK%O8t`h+4VtA3r^sB0lU9^UVxCimm z(gUU2OJ6TtSQ;wLCceRerCm!?O5;moiz{;*;vZdq>RLgp!-t7ma8uV;`3Azd8oA&o zPC~ZqTDPl4)Pna4uNHpAnaFL0>kF6jwqdZ)T{xz&e_?82v%*%D{+Rqe`R(%?co;Q!g z+WM%51fKwX@KJqEG^<qd5XSN1k2WhPn`zW{6b$U zIsy}7a1GCN*U8L)f(u?S^i9v46v^xL#h7IFjhsm2hcy)0JJiLaX)7gPte*d=eo_^f zeo>iE@dg(krjgnn!@VdP*)BL{v;PqbLsNP<{--~$l^6BvV zK8VW7$9RKJGl}f};L|Y9#(M@|viI1+8s{B+X}35VeFn=cK!9fV_65tX*005q>|sK0 zj?6tNO83f3%DLP6%6jN_(w!Vt*zw&}m;Cxf}R(tBHDf;I&9;0gi&gSXhf}!iY5E>}svKONy zo5b+Q=}{6ff~DVfjX8~v>0WEkzGrcD2wh)9Ob6vkYGA?8HxjAl{C_&jlf1#^{C_#= zBpH0+C1=N^(qgf`G1T49-RMI4;h&Mwi}73B5vU%kLe#M9PgTW zsvJIq%_XjvB`In9VmcM}ipAt!aneXK%-Oqa$&`Wgg|nheTK5I}IJn$u;yL7k@SZVN z5ot{}oTnRJ5Z-l!b8Z7op8gUcfVY{rJ$&1p&NjMbQBShV=gnIX-tl* z0C)R09dlu^l0NCgrG~eE-C^W~@OLlw1%^q?b_w}7_sy%B4v>J&A+IMFxr%t?ITYS> zxlhS+^PB8RB+^Rai(bi`EY5wzndhl^g67;Gc{R@#Ro(iwR~5-H$75Wz>r-X8%zw{W zvKT!bbfRZU^2AM@-O61$97dRX*%_LcVs9UxNDnT4*f|hK5(jeeBl=F5o;q^c-I*&d-&969hKlN7vAjuUJzbL!?n*u zT^II63BEqPuPfU;>3TE9?!iSTZ{iT#j}6bWr{1%=rQfc1Jn4m_SMi|cNI3Lxl%Pj{ z7A1y5nPRkR>6@b>lW1ZR=dJGzM8q2ULIgytEqp~hNIuSIVDDc&K1%Q=`81Cj43GGd zGb8@I)M5C!FWl*O4l}^ti~Zjt;nW`g_rh?epZLEC_HmAly>4EZ=g;ztcr$(R2OiW6 zudaH~;7IrS*8hx~;RQoCMv0-3lPsu>j4)I*va)NfjIVH{9H&sy9`V>4S{RHOr(Zk;%tb~3UY90)u+7lgW*&jFUv&FpdA^w z)-#u(*b^mqX6_d;3~jRVp1F*jxZzi{ov`2-F!TIIB3BY7_%ec>Q6YiaVV>MuOYEQT29n?)VKQn9>nYE5ud@7 z+5c#i7z$UnU{tUb8T-E%Wi`Xqu8b0cVgIV08-H6I32}BK;iL$~tM5s}PGp?WNH}n@ zYmc}jJW?XF8Lo3k?5||bKX;wDDB(R~t|SP7q8&>7ppk+7Bc|fYcDy+%#uNJfi@nIi z%UabhONq_3qdf^nWN~?0pWRMAl&V%z9ecK4l4u> zv1&!DQ%{XEh0TgMvl$-xf3BUZ5W=oAqAawx+t=b0&TylMi^lHS+I6G+6hHRPIIp=d zxbU<@lKM~c?Le_2z>7}x6eS=9gp1;en&A}_;?i`)72bt{#vkqzi8~n1SzNAvG59z$ zHmEPEpI$$)eo%ea`sDgJ_VD@I$F;X=FV~)_{it?F?RuicomXqtPOBYPJ1{f0wrg#R z+Qi!GwFDt(I^2p5(XluqM~!hzgG*t)bqY1L9! z@zdhl#aD~Vicc0FF5XeRk-G^O7SAZoE6yrTFYd>e2{tQ^D~>JZyFMh|;ID}{_~WiS zyKd~dl6Zr|L?Ae!>#(l9yLRZ>G_yvXehQw;

J0&+=ck){jU2wHriEkqOHTzn2S@x;yL)qK2 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

2Lpr;6#hDesY#FK}{gIE!LvL&a5 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

<<(E5bf_;BpK5E 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%0DC?YB9N5WR+KGi#*ohFqEt~k(o9n%${{K$Q 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
f41PL9~tMkI;^sB&jjB?)xT$!R{W%4j5sP~}Wj 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�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

tH1TQ+^@x3@VYht&2X9Zmd}QsJ-xjC@jzz~ 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�*nNZogk}m(f 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�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

$T!QPT>uDb?V@C0d)w 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

5=q8#Iu+2JtJz#t+6(eJ~)I3v%_K%*f@ zlMQK*T*jrb%tDY*+l!>|jkL5E(~1O4Vgm3o5AzCEu@YclB~Bz!vnoV1uo4dD#+-);^FN^<}-k#V#T^>cktfv&{B?J;-HCeI{)#?{@mF(SAD*2>KC+b`$i@K|g(#JC@3ld8hXOGVY1c;*9_ZeZ0lWK974rkaLY{3DK{e`>M2(C0(c>b~j@sZFwcIX^f(2?gYK4`UkaY7dzrl!pA%ua< zDGIETi5>04aPdqmi5fJ<8dTQJ7_(i2Dy%gqR@2z|gy^W~z*+lnZGjMkp)C3oo=(PN z{l}Cut53mm+42Eo=n*k`XlV=S0XWcuwe!U4PFIHixTl-Dywq?tXXaXY?UU-``1+8~ z)Q0qt4`S&Za?AqBK~V~oV*`VTvEoHiL~t*nh_t;yP|z@{yO5(68k7;+qZUDB)Y7MG zmXNC30-H@qwxtTHTFM~{X;Eat)5>N8gNS)8*&3*AwlM3fvy|z}VP=%mY?X2k#-hw@ z%;jKfAeQ|oN`l$L6NBrrpM*jnC@&{4f-siyib5x>S>Oc5EU85}S8KI%tZ+DgjX8!s z=|GwVM)0gsq?<*AI=Z@}LdUGFA6mvRFl3^Y(e4UMOW0~$t<=bo5IK2)B}wI32~kuN zA}23U9g8$8Ap(Mg$*1$!ZW&HPqa+D{v2pH#my@7$%FMrQY=f(@xwy?7%Efz}WzG{$ z;rYT&ya8}_;n4i=^WVW60OkCNGXB3mcXh5M`%(6}?9Oa8yCQpNHjlReAIMyjS)G}a z*(?13b^y#t@11%-^-St3xCwB2YM12iliyB$9;g4OCwIXM01qdwORP=IOAN#5|0m+N z;q?FBvG-!%i`^P4#TLcJ#G=txqjyFx#*6odMtAXk?|s|5+H3Juz^9` zzdA6UWwHeaS3AkG@=Z~tjT0L0<_yyW1#N6~V63dhKsU&;n_%k3E@MkmC)b0BT;+CTM3kWtoKrKY&4$oKs&BFu%B!x6170Hw-gDA z8m*H`;Y2v*%&DE!aa4|fh;FKyoKl8t8V9l(RU@pb$th(e4x$=(pdqOv#j?m8bhpCt z1Xg+bXi|xU~Qz+qP zMq$-qn4}4-gkXl!q%ephs{?zno@qfH0+vI`+On{$YSepp|fdDVwlV04i zYV~SkLCcGM9MlQbfju}0ONgaX%xF!**1mu~t~xN3ZEy<;m&k?!RvR3A02#)SgU2Si z#xxrkM5K8)Ni(L^LTLu3vWBqB+p>y`S}%cJUSQny-_pbq3|YHUR&z^O7BQ722aTJ9 zO9d={HLwy3%rs;Uu6Jj|4Mc%Kgjw=3JqIE@R_cDsER-N0RH}4-dB#_%4N?UL5!tAn zUu80WD;uGg2vwQd`BkV(X>vl_3A6HeS4-9Cq(r92MN*@@Aso!loDGVZ-3-p0;@>wK8MXR|`ROLy>7XW(* zjW#l{5kwFoYYFd+v1C6N`TxGgOCRYpwiJUNqNQ}NZ$K;XMm>8fE z_0Ef>p@KHN9HlX88pB+gGNHQjB3Wl4gp^C{RuLDne1T+i`{jWZ0l9t+(Uvadtk#^_~o?F4e8w7=cO$7GqL$p``>^dFZ;AG*j)4CBXu zrOD_ai#ae74!L0Nf`cW7vW%oCG}*7Zv(p=LOp{P*ema(iejv`HP#N^f!4{s*D9bJ% zt1dAx#35EW*aAd(4Y3jh4TYqg6+W&9=4Bc396>GetJAd)Aj5^$u&f$#=#2v(2NhW^ zdpXe#%Z){r@dX44BY5oP3tw90|dKR6R z$0Y|*Ur^AH-Dk3dgEolz1VJj~b+%6*u(GR8U~=Gb9rp_(opM|S%XXNC3XMn%tlG() z*Mg8|Ww)YAlj{)L*oO?!6xBp5k!lJwvaCEH%NPVZF}Yrcj#NmNqL77=k>n?9x3DaN zAfY_Tb0w{7=+?rss$?Gr6(*6Zt`(w0yQqi+%0y1c2F%saj_zh9LO_*viuecKlNrRo z*o#A0H9T2LysUZ;qM^Y-O-J^0o{qSVw=!{RVs>IuVxL3?`}N<7zZhK`y*U1z_|Etj z;#bBi@#grV$ddTn_~iH~?;r7e>|e3BqYEPMCWm`Y@}Sr&u_t2>#O{dQ7~2?I7i*0z ziOr8qkBy5Bjm4uMMgI_eDY`s*UG$0Q1JT6y?!Y^_U*Yt@cXIdU?uh&_@~hm9xhr!0k=415NMCLx-XoZko02;qH#C=s zrZF?|R`#{*bGV)G>)FlO8?#qtFUWR9_s%wX1KDGsNrwJRM`mSaQRe8()XbR7UYSh#pV4vA!_)7i-$?%qw;Vj^ea`!G zWberM^mP$8vNioFyn1kMdU5&~@1gWz-m~d3>Alj~w3GT{>gSPa`U_v8!7?-#ZgzL|V5G9$SoavWYv z{9N*qWF_(~+@7#3d349|{zsV4xi9~<{I&T@^QC;V8U6eJ z4E4r)9AR|wg%h+UJ;k!~pCySFCz|($%a@K)d7XRjZaHt5{^YMA{zsIrK6mF_|6^wl ze$Cm%8zofP1l8wm`>5dUqX2q;`2C?D8ofdM{M)YHe)1V_(W69F+}k$#5(EKo#qQo% zrBF>OS#fVI2dpA~SKJ$~_XR;N1eM+E_Vg)&0N5jl8p(1$vyZQMdk21v2tJ~sbuT?B z_{d)ihj<5QB06~~M5W)|&=RDJRg~ND_aHoeyB#0x<{hXZupNwyvfJ@DKS&2QY^-xz z|KGiuOpW=tcZ~Q#jkE@;E-IEsvIe~XF zuzu+t+wJEdOo4alC7+M&s#!=u5IX}!7!*K9oh8@jNp4s{C z@pVFa%KfgpJ1(1u(9dO(VeerW0tY`&$kcu8E{*M1*KJy-BX8R1<$z2$|SHTCejSav6#Rr4jhM~B_q&LjD(H_Q)oWTqy+v%L3N zwZwGxBK_6R)&bqU2;5SWC&i=WJQCl<+t0}B#LZx(6F#}CcYp#NG=I4=ybw@2&_gS) zoBHWG3bGN%@7Rr z{&k=^IvA*C4n8VKng9pSt_uUtqo4hwp3+qw{gv8pj<-jAt`?-dvrHu~iw7ozpG!P* zQtO=u#q(GTzyYB5!nHN6i83+HlfT1bw3@(Kk7c}1$e(Na_rWZTdIq|GBmNeADDCy< z;6t%Iai#AvYmjjh&#rwcOlXK!WPq#z(3EEsoi-LKNf zwKZaCWLxm5r(78~IS`2gS{XN`_OVz#_`9`_i2vZAw08FNlqcL&`-oA_agWyjEKm4C z@Ut7yoPMG2HS(B8xqs2}y6>g(DbM;A<9Gc2L7;J0Y2@rcsjg!GicLXCRKNWzu1|l- z$xFkFpYyY|aK-tlTDYFlk-1tpIQ_`gbsvi(TWaBYj?DTQgu1lf`PryIHxz+VWl_p6 zcKFOT6t&KO7W=Nz*)?)zAgi-7<)I)N97LM(aP3#IGPx(v2-#bid|vHiZ{^JSwO>7@ zW8Vtw2LnO<6D|vs65xbO{qn;82ix^UPy3~ybLz(I>CWD?5t_eYGkw8mILpIk`O0>{ z_XF3!h0W!OYkl>2!*hAqVKruHSjtatM{!s(;PDQOBfc2O$Il~f4Su1nn7BHS(OsO_ z8hpYKbIjwfi|+EXL;jO++B;pYD_N7tC$r7`>0nB8MW z`B~h7n#6f;cI{_pkMoNue(Khiojd)~yB3M7I8WhnNp11gcA`DIEBMvXSs6FSkAE$? z0+n%d{pJNfyU@P=%JXY=0U+&HQ9nHE!QI!@{VKUj(8tV4g@<0pX}(JBrCHwzXvK1W z7ci-Y01RoE-rY5CWo*9(Rb~H}qnP&u%7Z0y> zXV64H_^fX@^mg#`2Z0oL;Dm4b=8(1K2@eJF^%P?-2LZd$&v@jN;9GZj>L-1ZW1z^7 zrv_5-dup}zt5_ZuI4LJY%fkW>;Lp;*l{#)|#y@J26lZ+w7a%sUmHtC63l!=qu5;eL zJJ7ugE#a_Ypb}~se7>jlxu@KB;wgbJTo_y|5C2OLQ&&%R*T8yRnF|7i;5`Sl2ei)e zF;@j5Q5^aYSR2IH2?d;A-cp$2+y-yJB^>OA^dC6H#7O||J{LYLZH4}xd!(r`*67X1 zr6E`OdR7)pUypRq_AFztD@RYL)BESxsj^2KEpWpbQW%EDM8&o3%4*N;X zQpLl59-c{1mgoKu{;ox-z)FBXc0X>$Jm*8F+7=W^HO&dwc_ zbFweW%Ku5(A(=m5-~Z<_XJ@8o@;LinO3zLgQm>|Vq%KM=NsUW>nEYPyW;y#mGVxa8 zvBa&3{=}lhxcI;0KaSsy8H8iwLt}5o9*kWbYrzcwyG7r^JAgMwd!h@Xdw75HzTthw zTkFk559rsC&5`NuuiPE(3GTkm$9Mto?%+QMEBzO9wx z)syNNi%=Dcte=tQE!g^jn`!WXqu%7l%`^kDnZ|rZFnfQ8!MVS~guAsE7EYmzDQ}f zB28d~z~U4G2VuFOFu6KV<~B?^M}w(j0%G#t#K?UZ2rc_CN}NE$sciP^Ld#n|uGucP zdKm~Y*p^TUAYx@$cJR>uz_MnqiGhLzJ$Wo%oJwid%%YEj3TMD$@wi8s{wJ%64bGsr zafWU^T@GLFHo3-TCZuaCPsvgd>_q6|P6T8R5b*3}T7`|3yUlXRK&O-@WQC|>mnK0q zg>r)`cGmE!x6pxH9|sl6%FPxEk!c%NByf)x3bNet#f>?GL@lVwTf@Y|iCDZE09xG%2S@olVuS4q`FpvegZ2|mO&7b-Mc{|CJZ8$@mI+XLlW6*1Jzp95efVNGImb1 z=DxOFVH{oBG!mDf~~W z%(+GxPOy}O->8iFqV#hN9cN&`r}##?`2srZBF~5-`2oApF8V>qD@{VV6=2YW>IaZf z;8w7lLoyOCT&uwOIH>S4SyGWap!F;VR}?gO?U}MsM1<8$CL2Xqw{oKhS4&VG$RnaH zSSx`vyE*^{S!nBU>jj#zE=)LrV>e?2H9~nM9vv)0v)xc(5K&{`2~nvrF#kq*p&Em@ z))-yAT4O*3SzKwM@Q?}wRRy^btff_MVF%4tL17S)k*6_luu%)eACpj^S{WI902z5B z%Ph!r5df~0H$Dz3sw>=b!Rm?%fY?}F5!ULeOYh@G2s|x{5UUVmkPrd~A=r#y8y{}J zz@-Yxx7V-<>NdVEec^QAWT|JnIPzvU#Wsk-YLJuEAnk$;Vi5BI}Bojacl3 zbwSP6J0w`TBsk6}KE?Nt5g_DK#MP%djZe+04lLkJY*=$ZwlI)=6Pv*i2weee0IY?_ ziYg*qRvkDlI_y&i7y$@Bx1mo#xyU>TjMj;-EaUwT+1uFLiC}&|gTghFJJl^vdXLox z64$4RYIeq<=G0P$+CXj-cAXt)Vb_g za7sqh7+GiFbnVNgtJA2>7*cDCsnr2ow}Gw}TM`Xfp8)i1%?It-k|T+RHRUv=>IT(p zYliN)1`h;Kq8b zz0$72&*jV}!)O=E_H%_H9cG^5n^|%*Y-YCC*bUv?j`a9e=;nPL2s>HBnqEU=Si%U= z+D!w96qFNOMTxL5z`^3hIAw+W2pIrZ0SOKjQ5#Q^+8D)#yoTDCsHu(px?`eL_{y#? zdZ_S)95ebz-9c^Ag~iSvBJ(4KIfa7@`xNr|f9L;*_y2y7|5pC4{Fn2e%YQ0=UcMP` z0nX3Q!20~&`F!5Z{WbSS?)lvJa}VaW;gx`^a~DSD=X!HZxzlpz+>TQUmlQT6iv^5xlZ%qGlM|EsB=fkt@V&$vg&!4OPrQ(LGV#sCotVqG zDzPEaooG%hNgS6rvM`Vsm)HZZ8oXV&CH_+U>G(s1N8?-LH{gDQQoJ?3G`=8ySbSgE zCGp4D&tuQT9*W(Gy%C>^w8na4=i=1E+}PyUsMszsC;G?e%h6||4@U=Z3&Q83mqz=d z?a{NM3!}56lcFP|yF?xDUGEL=XWrw5mEQf{X6&1|$=m2%;PrUtU?;##yp*_?mx%m5 z@>b;K$g`1eV<*7vk?XM&VBIahmKh>cR*@qj2T29)1Lzf3+}d}H@$mB(GQlL{$=+W4 zepP0+1D(ph#lPL#Pe ze(5aD*5z#Zfl0@Hcf=n9p=ep%;aJhYb_V_K4u42iA>E z?ztBRzl#0NopS>!R*sxIkFNW<&Ruw_Z$7Sf;P>LX&n0)^qM9iD(sg@i)NvksV5$>@ z-_G`}!A~p!I?rJ}6#F>%m75ow=lH%WNs4$LxN& zy!#=+S2QE;5UkK^j^{;m?!7FSBiM2SnLsVhBZGn|wlDkTC-V0R2ObRr4ClHO_n0f!7N)R^z=k?D7 zy35o{-%;<@hals#fzh~V4qco-Ke3xP)U#)3V$3qF)?Y)o@YpXe`c~C>1G{k3Omv35LsaSJX7< zD$Ugm7PJ&Pk2I=t-w0W9C&VdoqyrQ1U9Se_H=v+D5A48UDtZylN4EveqY$yL%3=c~ z&UwqEa1EVm9yAG9!&-Cwyl)!2-~mYh@Xc3^ zT?7#17pCsRmeIu3ek9!$XW&&+6xMXJrjAT8ezK;sr#$;c{~P+uMfXHqc57L)28Jom zzSdV9CCokXLgO*|JePCt<9<*+*X7*%U0*{K4wjY?7nyv*%8a;6Wx-gJPXN)SLF z1ezej#BXOm9jI%d*-x2VrJs<5B0OSfAPemei-9|0pE?@$5FqjHi1EgA#Kjauah{+q z(bj+1VVYNM$dH+MppWIY4bD}WxkDWSXQ|w!Ur2kqBWZ2;^CtBT-hEoGoP~urR+s$c zE`Q5};I6ILO$5cIXRG1bpbhrEonh)`{*>SUH1YSW>p%W`MnF%++47pv1^Z(AkAK2M z!@U4oe(8rOR!-M-%@)49TRDAE@S$}0RkAwI4~Lu97q@?xO3tkh8d3P=-1-f5E4dil zxpiUisp#B#V(_V_>_)MG>px6l@N3>5O*HMrdA~RLz^1X^?KwaTX`8f^_&wSr8w=v)-LP*$@{FtF73cN~ z>wcEqFl>0zP|it;owUi(x!;-`VY(h<5o%dTp1{jwUX*thhJASxR1 zbYowxmGv$CO%O3`>R!8~Mn!ey=NPEP{v(d9QBi!C&GD_%U38}f)?gds_M`(bs9$l#;17NM{Gqot&wO=W_U>QFXsTIBksfm?#43l>1M6t{#B?r)|(CMH!$} zPP-5zt&A$wqxzw{j4$il`>xZ(@i%`OQ=nag|6)(|Kh0za;y?-+; zlk6iz5I`UJQJ}3t-~V3h&&1Yiw(d0kI`^(y41oZD-y9eieMWctDe1@pHxrrZctgBs z{p{VM6Zlqh*kY_qNf(#DZF0zS>gMIhYEKWZYx|L%@)>sGb7(A zbQhW<&lQ#x78Z^!999@x7+xq8y!=P`KjmM~zZkhT{|w$Cyf=S){>J>q{DpXrusOdp ze`5Zq{M7uo{66_1`B?7nQ78B7+>5zqbB{)cAEn<)|2+Mi_uKS$yuYTukse6jmcBlH zMS26y1hk}=rcX>Cl|BSB5qqWcX)pC*>JO2bI2G_|Z&d2X-lWu%sc++Cz*ke(rK+j( zy=ziksdH1Or{?3;gz>2nI2#a4{yq8U1UDf8N2wFdHx> zp|M2AZ0WzWiDA>Jd)2V70%f)09-=$(@U!Rq`DR$$MM*=|gSopHHBH6se@i`Bx`XHU zyAST89?akTIYQNdd*kH6GVSQdDTMi2MInOH`STw$f$#&mCryV8--?wby4{YNphQnw zu9XOXl`2c-X=3gzS#Fx0|u33 zztJQDX)n9i{L~}@6}fxOPmICPj9qqyNr0H>vgO(}#l*^GrNkLOahHHX975ythmcJm<+`)P_cKF4Gh2W<3)kU(y7k| zB8!#9hxwYL^@R=hf4ugwJncl|qjY!q`a}>1fN2YZIAlNB4K-0T%ETM}6!o6^l&>kW z)cJ)ODPb@HDb6p(Ys<;81&uP^kApu?8)vcy6H#dU*=l2xSikeD$tl$2D2T3iw{{M@ z`&S&I5n}i?{jUZrPk+pS*otiW=UQU_qZYxB%Jlb)Yr;F0zHdAV&5FD9-~I;-T;5ep zy7A{LMrN`9@YghD=q{m|I%Blqqto|szli|0IcuI;6+I=4c}#)j(Vfa!$7pK#1D}pH zaTJ}8n@t=&{VNcF2}c(MLx-V0UOs(j?$6kO3LHUC!X`{Q1AlZDPTwQ=yEOd~ zKXhsOw|%(Szx3na@5*TrqbqBPC1y;(qPX-&!G}`+(tjDfnT3@lN7el*FVcPO z!2Z1O{?uOEFT5*_6Y57rP9!v69rFupVa075r5PBQ|Vi`t@+hf?IuX|46woaaA(Rqy<3FIzMG{Id|4(+aQhXzZxMtAij}`_`S= zAIwHjJ~W>VtGfP&LC$RDo0oX%W*(#gzlV8Xjm>8sB<6*Co(NHF-?{qxAqr~g)!z+L z@wDolUkFke2HpATl*A-J7IyZ|g^=Lwt3MDzY6|1WpUwW5uYBtq_aTPL`t;|$zxcK) zsIhJC`rvqMfTqWCJL4+lrTw+A^IqBnRWbUr^7Y->H_GhX`nQIJ$qnb$za^wue_b4^ z2W_gpcy&k(^XXszy_7^c*NugwQM^`vEBi1zzwX{tu$*??1F5RpSARWC1CCK$|1K|h zw$i|#?@mL}r&+jtGSwB$`Ex4cQq@-e`R}|45fp9t+c!&-OqJ7XkIll$Cf6PpY`yJz zW-(Nk+Wd0$_U8qe8euO~Z(kddvvu2!JN_aiV*ARs&JISz*Q;CT`)K6I+|2CG8odSc z4gQ$hS$lgHO4g>fG}H5~^7Z#*p|XU_3SRWsAApX$+xxbnk~^`tR9`ooW=bTp<* zcE_S%5FGIOr$Z*rY`Z?qHpJ3ly7N=sV9!*(p7ywQRzClT)3-dlbM?Gif6K$GH-=w3 zt_t%$TNc*Ri&g<-Gf(x-PlP~oJFW`N8HYL6KF76ST7Kca+UT!nY|8Je{!0qa?Yt^9 zH=3(oxUZgln7`^Rsl>Uf9`n-81pepIlVfV!Cbsjct${qdW9OYePT?JQhLWuV0QW9< zrm|Z=9f4CkQ}tK%?h`!c_+x(O-C>4Le=OYlaQ1~J^&^=C1)?V{mw~5HyVFSLE(#SR z1BZpX?+>P$y=ZsPa65I+M*^Ad;|tQC^H;qvWndM2$+}Wj4gG1bt*W6v3JP%`b>W_m zWq+W-Z-=P1UzPP#AG!X#Ab#7!cl;no(QM~4LR8!49=ZPf5Eb=Swe@>U8jO%A%Jo9! zE7KWm{(W1}~XR!9DFO%AzpsC|{#*6Y!7mQ(8T{qJvB3)l+qJ){y}Y)ec3G`8@U?*h1M3D(sQzR1 zBh^Q%w^z?#&;Q5&ga2$fJNmyB$?iLS&+5eFjB4b5&v|5@Y;(o#JA4zWqsA|6LQTIw zKRwxfd+nqvw1tVCFh-8{t)w{ACCP4o#49Dn+nEe?nmu?*NS7DW423o@=eG!rJ1O2M z3I=6avioM+#6+suCQ{hM1n8TX!fV~T?GlM`duLYkcz=w;2wj=%<}FipJL#2K@d~@0 z4E9|y^Lh$*Lg~IC>;dPfDj|vq0!46bce;hhS;Z|xVzGs2%AcI)ksN*sVXGMt*$$fB z{&3fZaXovWn4+xU%!}c~wKUo74|f?X?|KnGB4eD2!Oak=Gntgo_VwLws{C2V&fqj;hbOaAxX6j zhqFpG+$#cC+mcFL45ST4vvLa3#fC99F;gbX2X+LaF4<&HGg!K8Us*X_NV8IC4|=gT z&dNBkM_HfZP*)|pFAaO|X5qpt?Y$H3yT@i{eg7PGKz@9 z5=;Wvh&iiQtog+?W%IiJ)I4wt^`bUm?_TMSF1h_2-SFUCTevBUK)AvR(^0E+Z{NhaW3wx~0tB2Sx(hrEIH27`1 zn^?M3MG}_=L!se5%d9l$Wir<{cAtPd)h^q`(~OJEm>O`X7~wR}QOWF+qXt972wb+S zMpN|@5(`E!I5mRphoz{UYW3qL*ETL{0$tT5mMV^S;&T!ls~T`u^%PUpA((N-I_yNd zHg{a7K~2{J(KE~}Z`bC^PR5HZZz%F;3Kv;Z=%lzQ1cS0X*?p4jXQk0o78dri3iWn= zc0z{{hQC|6-tGvtMiTzHx#FSC#xf2)1sWRdv29Qe{l|niKGtRMi^$0ryIPkpZoXo^ z2oCvzSRy|^*=-L@SP0@ixfr)93a%xV7OB!Y8F@*v`vlt{9qz6y^lpSo)rpP1L0We$ z)BXlkbd2nT9fQZb^f{(6yi0Nk z()M8K#lNzb4n$`E&aw5mZWiTVrB~l&V0FbP81`PpxWCGY*w~4($2v)s-`q>dNXt+$ zRsI20k?J@1N~=D_&0&aC3eU2>6-Xb~G}PrCWo5!@RC!)OOI5V$hfo-wX@yZSK#L2b zK#%kpij>Zy`%+XM9CcZvl4U?qmVuDYN|;nSnln8XUExfRa)fTD{Ud|By&3=N5F@)- z%hh&(5sYK_<-HKmvUJc=OyN*zKe)VC+w2928F!Qd?(N6+1==E4WXKiK5th>FOx#2; z(#fK>SxXv=7hB6vr?tG7tl8!w4KD_THhQMN4r3juGL0&Wme^9?uwt=Mmj?8yF9Qx0 zU#pvMI7G~`Z#b-|-{p4$j!(G2*f#`1!p;5B3Qn>qVl@?!n`0RN;9A=Ky#W(9D!eHU zm9l!bIVL@nvSSK#lJ`}dQ|PORv#Y)xp`ie8R{`$UepEkldiKW08)d;5acH(Kv&zq>uu{M+XHn{R5)HLq(fYW%42vBs+#n;I({?fT#F z`rj4x6M6mb6YLn+%TUBcee171q>_1pNFk1a?^^bV_Z*%pE>WP&f zp=kcUP=kekmL_|2@?(5_N>@I}O8J~jVeGUd*~7_?O9KKg?~(y^8izbCW&EqMR-`!! zjcCtSv;v$LMH^s||s!jzs2tqxS*w>B$~F#;RVh$%UKujSP1^&r0<) zp;2-?IJCvdp5?fZCkJtP|8>x1>FERZv|>S>%8g_>3T;)g=M3Ix9VZ<7AGM#x*}akA zu95g7fzD3$EaQ#VJgyk>Z?s0=Jf73_7VQ5ip7^83bDG|Q%>^pP6MZ8H*49(3B-_?- zM31bU;!w$MJ%r#?dxE6XA* zB#itV8Dv5yG`!`E43gqd@h{#rSf5gn7&S>LZcUP;Sx=gr(HjSR)Ig9Wrjcg+2Dt;0dmB(f##;2^)tT>2(x>YYAkVvast)mgut=R`6!4bPz-CFJ&dEM%LBdF>|>3RSv zQWG2bY>FclKhPTpA#|}vl)`T5AuP?brq2iFE$twrMaiDFji#n-&M+QLfq8`X>=#z) z)9}cIf+6DXO*|kV1xE=eG)%pRbJ_Tls&nOSbS^u^tKkAZ=V>~yoLo12TVNC;`+ZbEKD63N(>Y8Nt6C9ByNj+|KM7sCIj!2ue(j(HlAEyM# z9b{(35|yCrgOwl)Xw$QJmtK$1=RRghVRT~%^Qe_$Ez2T3?_GXd4*S0y7Qd17<*OG}GXyRUaJ54J#LV5kViy zlS=_bDuXIr3j|=7CP{GYA_0fW6#1-~0R_rt01ReOADk?EP$|+aMj}TkG7y1e*>-mT z%QI+EmQlYcD$WTv=r^DE2x6 zer!f5z0{X|aHZ{a1Tt060E(N>Q{r$ODucU8o0$OJ7R1XXSsfDY@T^H-Q+gU{cmB$#hzEtEL1<897ZSH^e%T( z)C^JO`$EJNK0xkvtCeeN|5h3OE5`r7G`fCt`N+SHe17D2Mjje@;mFb5?{z=aeM|S@ z?k(LjJAc{veNOM+(K&PY=ZyY;fA|+Up?@wX^S?TDc<5C__YIvlG}!(;y8)hT-`QT? zZnVDC+TBW8>sx0uf7<+b^R3MXn^!cS-S}4HgX}!Ni&=nL{j2rEoGMsfUsZ2$hTsnd ze{*nt@TS4jYX8Q6pR2vI_R`w=+KPdnu><{G15XUxHL!A^TK%)??^Nfj*H@oY`RCBR z`2YXUl7#J+>JTw>DD}hxifxuBd)ZdOWjLbYDp4cis5K&dR<*M<*{dlrHB5SZgaCP` zNny(%_U39LfT6PnW1{9WsP_T#>B(L_Z56PRhh;d_Rmt9_jh4r?pn+ESuF65LT<>C& zN&cfN(~vR_d!rpGlYM|p5;a){S&gr3Qb?k~5V7!}_ql|?EA+X9x;%U8is@rrBwLV& zt_DNI3Sp`&V@9=fj*5=z7c!_2wInmZ$XuE1rC-QeP0B0OK?YkLG#!R9bP?^ zDwqx7PtFaQ*a9PzDrPe+Lpt7_o!(3)Bc4tkN!L!UvUo!gPtv!#rJNFXK%Ut$w?R4*Zr z44j`Jq_FnB5d=Hv?nl|dr+lN_a1`3|WX}|Py`X7}Ye-~%uUGC1bY>IO(d&U|5!H#A z9GAUG`^Yegq`ULvW#_)Q>_HXOMtl0D<>e?tqU z8a1qF^)4XX)yaQyy*J1vSpb!dyxzGlP9GCp^DCa8MSAaxC-VWBFarz8?0tZYTfI0` zFUm)#ky}yg2zIHu36k>SX;kZ$H(u`pWc>O?7%#=d%^NSnp;AuNDKxSD%85meynB@y z7{K3JGQbe=-@EZ&>ToVMD3;@ZLc<}~o6|VYic&t^6blnDC#S&^ z?$S=k-i-+oocDzMCjwA9?lce1u2_Jd_k5+-7#;K@u;|dC@HF7>sD_roEE^L3CX1jR%b^yG2>1N@KI%1)6t( z4EI#ow5wA~J{Vw+`XI;GhV z@uD<43JqVmK9oG$_pX`iysxO_`3J}t=sFpQ`BxcS+{i#F?$j5GN@*0gL``w1cnCK< zs+mZcQ8otHb-gC9tIX6_*U(N~ozqp^e!2$gRXJTt)S#=VG`M=rJ+%Nr`{*hnE_bE5 zoLLH9WPZ1w)2rC>~_wpTsl~h~4^A zjY}HCtj-^41Z8o6ks#R>fX z+I_IQw)?Ekw>z)v3=My6_{i|9hc^sgH2jRAZw`H6=r@Ko4P7#Hbo)E)1MCa9rhN)$ z+&|NLN9&Q+ZLL=G!`!L2y4g+ttG%!G+S(@G0O$^Ui8BFD4qP^HboB?-k22zaxO!9d z)XG0q-q#!KpP%e~z-Q9cAF+k+{On+xipoFOO!_u{`;JbAeVTgW!p{&YcBnKAQ%@Gg zMpS$6x4cxt?}a+=t(plioJ?ZyX-{|ts8GgIrW5Z|VPyQ?ce8@S5EmzV@3o2on%*jn zD++-w&H5V@hyKzGc4^v2lD%vnNlV|gXRy8AN~bO~EvMJ66&H@YwaH#?pWd26=od|D zr8rf^7S=z;x9O>LCbhP0;STmmOv{voE~QppgeF?E@cLf6KmAcojVQh+6ehRk+>+S@41MO&pM zDOwLj%0(_k%Jh*Um=LoQ>0QJu!0R^ROp4YZuSxb^81`Dblyh?_`oFl?SsR$85u&I~ z)>warO0CobwhGLe4(dejA*rVF)!(>P4LIh8dVzPQ5a~VAm`WWc+$+2Dt@?DRkcDKJ zF`ei=B=)bPXNl-AL@M}mso-64X!#1>L6^45JcqqrzMvJ=u^SzRczLq-oZ3nAHf@i_ z8ph>!h_|y3^jc=8c~oY>wzTsQ(DcIWw69jvXtLvw-BCPU!;jh7ewCxs!B_N6v3nzAEnmgP~}88v91e^@}>8+I28Dw*DyGCe6@qLj0_ zu)OmZ=`SUd;V`{V(Ru>e|_vXw&_GY-)E zL;w~?pIx(Q?;O7{cuv1SCr^(yN2DqYeiP*>Z!M*+LlJzIIif>F`v<1WJW4XrSo0B5 zIFgy-P;oyUzzkF|<8g*l*^|cLWO`Bhli6QbBw<;qtp#YqhtFlj}! zJEoON3u%-v(%9|RD|b}BFwouK`EqA}=a)OTbWR)o6nEgw55I8u=%H^9{UJB)r(^g( zZoj5|e|rtD*nhb7#?~xv)Sue?S@UzvcQqHd6JI9?lF|D|*YJwK7e@|`yqtUc&KYTT zzuJ98ccNKu{B>hr`sSxJ9rs_*aAbxHIqpZUyM@+Wk9f8*66` z|E$LQg#*7faL2$o1MTW(tM9BnS-rKoyz=wP7wo@~+<*U{CCO9I_A#Ow94r*I3~Z_b zB|DZSPaUmoT7lFnx!SE}92@D)s#-#%ZKTz3t1Qw{M4pj6b(HFRdNoEYu2J+pKt|>> zrRF9zX<|ldItuOdI4yHZajFxnI2Bch(+l}iZ7bv( zIb&2dt?qj;+>_OmX*J0LQwqkWO+N(FPK2|zmn2U$I1(sHrdqzhHykz9CN^q5qOoxT zdt^Fljsd&W)tH9xabqgb8dFOc^Antg^!W)pp@-`X%5^mDAN)3|BvYL9Elr-%ZVcw6 zYzIBbi~2qRhKNk<#&BZUW*P1>!!BK9TI$O((cdDkc&%@-mm+7%UJ14SxLyEd8HB%~ z?8%pu7x|`3)Q+|B zh3zb6kt3Q{(rG#JZ&9-MQO)BkQdEiN@r5Ct=JXNUuo^hgUL!JIEc4p!wqcc-s-2pt z(g!5w-H=_jfaVd~Q%|s?UbImU^E92bAV{xi=ZXtqcB#cSe@|+!?a$C$ry7^Y!Unp9 zA5wm)-s9RDXnDh>uoD+VoUjgPi5OsrbZLDPu887Ab)oTmXT{z*uh~Pq5sfm2Hb`5R z?6nQJffU#5#<7}xoAx0ymHeOzHj{H0!n)mgi?*{5Ua;Y8TF}t@Kc}Fn&FNwP=M;48 zt3EM}6aMEEG<|)q1O9_4Xo|du7>p}~Snad9YU+S!4l=-Aw{F^GopfpqTNT%QO=$;( zIy<0V9bB)DULeKQfpM%l*tCga&A5(BgBUDWGp|8-VX)x1b)=c|+P0wn2Ll{i9;g4L z&#J%Tb~fPXLS26?LnrzXM)jUVe(03@0v*ZMSm!UWi;`0*P?>AE+U6Q;<;Gj)c&;J+ z0Ga0A&kuPI2eJ7YJni^EG!!KamX0&N;6)@EEv!6%y=|WT0Gu+1$yfs z7{hb7US99s2h)4+^Fxy@Zb@$!;Y8gkgw|%c0x^Xl(miDURh7fh3fEw%tl=W71uqmJ~N!x2n zR;j(VRMB2ftAHXvSsE8mf!?Q0J1A4KC!;v)P(}7M5KZYKOiX8?Fz1o*VGDw13$C zllEopX6tWS|Go8w)?8~{>xAYvn}?bYG*>knjjyq@;FXR08s{}S^{>|t)L&WORKKkL zEMC6*$l#j?CkLc8-x8vkZ*!uvP z(U2c|qC|%1^W_n)<51C)(u1DN(Du>OP-qOYUxGiNxNDjB2M1l2w!ZQ=tm4!`K%tT5 zDNFO@Bz2p3`I0T3V2I0;rzU+uk5f}=HJEResGQR;(3$4gWF~UZQWKjf{Qwyg`3a{< zoyan7Y@&d>TzdrFA|v^#V#{*%!R3xq6}o0Vyo}{a2XLs^LB&VSnhaL5gToM+5*o9; z_RfkbA~U{KM6+YszJO3W@3diqE+j1(H^82%7t2~8YJtnv%076iY`+Ouy1p2tD#e|u zJ+6{Vr?YI>6oqQOBsO3s=Yq@6miv>cBT%WqvMy|eTAs)H<*#w+b7vM3Z zc23?|9rVaK{IuQ@&&yL-KZ-oXE%I$Uv{%Hfs}oP5A6DE7k-|u)Sly*+*18trMb)gM zPPOFNt&%k=W=q*@&K&u_7B8 z2nlDpRmtUV+*`u(B{hX1QuJ<71#f3Q;fk6sBE1igDS9_sZ-H(>;O3plPPPk&N@BFL z)nh6p#?%rGJ#Vym1dF&ZkD#L{T#mVI2gadBxj}OpnnqCHBc9VR)aNu7>}FClT_;V= zY91oeG{s$o>t!l~Om<|d0DF?IQA)Q)-l~9uXz3l4VJNNsKLPXlmIhGJ>N2 z0_&3_)&s<)&m0bQZEMzoo$S|Z*H5wEm7!RwOR=Y?)Ob%%LA)^7)>k>SsTCR9QBp~r z@_esTj8v#o%xZYz<;pe$`E*Pq$x$RxtS(cr5+DbQij{#*x>O{ky+kq)60^tjsqZs~ z3cP%Wv7LSJ86YjiPioYMW!W*JdQEey5+7SO;K8yAMWCVQRCJXvO>Y(|^0pL5FQ~pd zSugRK{MaKLhKL927EqkeE{&5Wk<1i_O8M0-pn)o8NhV2w*uBngBB7oMiHnE#kd3P z=~+&CSjH5wG(OI7PtTd8CqPA+DeN-OkW4+U5K@$P*bH}>%S@*2vMtMW7$P>39|n=6 zCvT&GI_)&0naxWyL!nX0F7@NT=m#sRWR(&bQ;S#g)0*U`5WKc_!edrn8h=F?p6Kox z_HfB-bm<9M<9DYt*@nfn?2JFPR1j)i!q}ac##gN8=A`)AnPPPz{BRlkn4K7(x8)<3 zg+h3t@BOg$sFZ7AMF^eD3w`egO$=HRZRCYo`H}KQJX!9FYpazh5gmp|)x1cxt~F86 zqN>?INM|Kaoy6^jN(_|f_CsO1{cxM?qYj1U=}FOZRj#z;&}XeK!(GwmNYOwoDjHx{ zlzTqc+G4Lp1(Bjw)Lq&Ml17Cc*3csR1Q;UKgf8!7!o^Fzh6GVHk$rHf$4Tm@td@wR z2H1&y#T1d_Ma9H0w;&iIRUcPO(PkS0FRuC=c7L1QYL#WT`WuxSs;5!XGbp` zZI66)WdF!7kGyE)+>vhgZ@W)-AMf7UUE0~j=>J69-G9^YsY5>-`smPa@#fv?q2cyl zwtv6@|Q; z82bFPGTBGxgQV*U7n!J#bb~GFv$_-pZzAQY)d->dD~+8p9J`*M?7Q4oei7s1{2!h!3~GHG}(8t99XwtA+w~Z!*0Ke zv^Z~3LpwQSpk3?bs46uS)!usQRQ*C_BCxIsiJ2;oubD41m}Jk4YZ>m;^NcDpkv!}Y zQv(ha=RQ}?jb2WSo!jBmxyRMzUzY4!rG7xjm$)Aw&}T6wG|0y>bkQZVDB-wQ-Z28| z`ksxxnrulAc;)rYaHndsDG(ydR>*LuYmOfwKt>lX{`;{tP1i$XifsWp^%C~v1yCXlGY#>=wAl`n6-50EJn zetWsdK3!389LJ&JilbB4N}z8#gD5&QIh9;Vv-GA#ryYt8U;9<6f{~74bOnYvvHlLTl!@ zDZ*nRnh&zpY%IL_LPg&&ov@Y16c;;(i3m@uo6i_RJh3Ml3a#@e75aQrGK`BW>{>IJ zR%yH5P#DJ{7>e?miS04NiP#QkMpe~C93`U)PZOYKQ(G1H4Wtp8P0JC=?}&!vtLX_5 zsxBjJ)xz2{EW}p`TYQ}*4Xd6a9m*GRe(6k4DPdob?_xS?EuSUM#?5-HWmjW6-=q;g zWCDILlD79;)CGWza7J}c%H21NZ_Wmuk-KLf%v+v%Lf(>M=n}bYibG{z=i}__w0Z(s zw6D`ZI%)CaGTNkqQs~53_%SaX90>62iK3x4Fq~+Z=Xunf${=DYIF-Q=8MLzrk#)z= z56q8+9rX0=45eWvob!((rgtdZBYrrPu$lgSGr9bmkDZe|HD|X|y6k+l#=Tq; zysJJlHmibV8K?dvxiM=-VW8sL$GPFK8|6W(WG8|8jA^uX>mML9fxX=-S!QL!+HzhS zZe|W2LM1yrIb|cP?%-D|cU3-88T~Bl|BsB`FnZF+-;aEB zZ(|?8wXGAIKW=`y`R?YE&D)wQIRo&;#-7G6Htub#Zj9EyUH@SHztkVBUtM1`czEzN z>;$-Auu}U(?Kf&K;a$L^2mWs0$iOQHHt-5SxB9o$r>n23j#XDzM=Re&-QIsH=8Kd4 zyep$K*gk=q_ge?C5G37EzQHcPBzyBD2O%v<_VZ56rL2)6sn`?;6x!*@{uA*l0P1s( zGw)X!4)u&={|V$Gke!<=EdcdCxZLAiF66#)9e1i;eo=7M!o@k}42QZj*{|uN02L?v zQ`m`m%>_iy)bt@53~^bq|JjT#%}SUu8eJOb{=Trm{C&S3a~Yr1%$eCV@9!y$P%QN< zEM?0g#zk_zmhF9jygb=|l)xDRFtz1UX-^j!1KEl z_IIekh#*~{h-$DD_Zo~)p^@LO$6utVvWK|hKmqRsQe(R^**|1+ZE2Wjtm_f^nhcvG zC)I+Ic=ffI>&I8E3`B_!Fo~xC>Kzy(me&w%Z=fH4-0xSKr+Y2q?vJ5J8-9L;TXr~Y zMYQUp7KXz@)hXa*$88z~YtorhQPwrzHt%Pd_p6(wU1?rd=i><|@!&Cb$U-?LX3-5& z94eNuLl!JU1!iQ407Im{8c?N{((?6{gD%aESCD(MEb&It0t^wm+9l|Yz>5;%sL}R4 zsr0hRtWSC!HQn|-A>9l>SfrbQF6(j0nv|Cm>(YQiV=VEQ7tKjK!&Dqg;7;KKWV+&y zdeIbCHnelCPXYB2sAJmvNLq@eIKz>;G}))?EdwNG-ij#fVyGTcw5{YcKf zX^Wper9{W^3v^peslZLo5V%y}9Cg}cMw77Eqzdev_kFe(mcy?gvQxfL=uE6&x4ky^ z$@VicKFp%+4Tp+LX>%W5VxdiHKI?lQT&_0v1*|OBg;-gq0NdVJ@>E(Cbqz2wnFZtQ zI$0EGg)9;pvS>zTUzF^7KpO*eRu`es#sFbRr2DzYvM)&J$a1KTL&ZGW)0c)W znma@Wk#yfex*2{3iTQK~6dLKi*(&ZZJ)Tdu<}r5o75DpY3M88mE|P3+9L@Yl4tDD;cq5vlNL!KYyHf)LjD}^a){AiTX z`vM(@)A1XdL(pP@r01)*-UrAyobIShF>&*D&2Xr+6fdyFJWpKQQYgjVQcU=!%Y9d> zhLa`anQ;wgsMl~4*8lIe_EpwbzEK(di_v$FzI5~+PVXNz^1YD{jl7;4{+>T_T=xgv zKkmM(^Rit&6$k?@P^n&6l$iV0p9B_)_Btw+z0R@qe}c<+^Se9IszoA07Pm z;QN^Y7$00c*sOhvvjA_X&D5@_9Y63-10NcABXa<221csi;U>V>Ri~?KtItB=^grs# z|KNXTCHo)IE)zfA8}BmF!x8Krm&+^6VscyRkJuIpph`xO`+o-YGjzYG-lou8SXOm>J7ENF6u1GOkpR!#E6=< z>_c=IB8kx<5D!{ROhBPMH`zZ`JNiQWL!9AIU|uBG_tY|-GO3DA3!>`QEr=IYbiFUg zW2#1nKeXaR_BcCV(e*w!SvQ{J;r61JiH^wG2gr=1?Z)#QH*ZZBOoT3XT(vEu&`jmL z+};Ps7;1xZT~B$I=M^0F=*Q&O9P+n>VTCCA6o*P#(b*5Dn#g?5Cxu<+izU-6=#fV< zQ`}|VFPXB4Gb5P+hDd4FQ#VSEMIDu91D#~Ink#k6&mzhEoZ?A`a6R1)U0f|%JRAzR z7tbv$Q)%cz+U>qkS6zW3Jp+si6i@Cqzul#a7Z*+fM(QKt9{rLp5IOkU9m*U#E9bl@b5a~Cmb%?7#eTiMmNGn8YKz}x zg{5v&j$)GV+C|Y);k^rpcKU<6{-_N#dW(nwMh%F!NTMO8Mww_yqmbTgg_KUJdLyz^ zzI>>g<{ywsMsfCodeowa8E2HkwpzEa#djW1qHYWs(Mo zKvQhcY=ks21Q@7ZCYZstD*~aFa-WiX$K2yTVLrRA~~M)L|#;j5ehh z$P|f)0fvYd`ALtI7a7$sVpQeG4)srYyWdVk`BH4eQ#$yc6Z3piBg04T0#$&lp1fZL8uDU5q{itv5{HUAK z`{MLfK72ENA36hdSI2Ky-+zu(m??%bafO+FKsL4O**&ti!hOhm@Pw{ZLYW#@zhYs* ztP&+O_sONNko1gSR3-ZWnF4%P*1_;Dc2t0^IaU|j3h;7ejd$G21=#v?fv9sFq0?3( zdY4T^e35;RI(tdVN(IhQPtYa`)Mnq(aQD{%`y&mJK5ZA(wdBOj_woPJG#rdwaynhdpeJFZt9%YsSbaE@&Bua zCx*`(9^t0{y+a8v0InLUx4+zeZ~GPP8{11-KW=@p_1e}{>$29-%^x&B+I(Ykd-H|O zlN{6*t;8;>+@Xq;64e*K;G$LqIq58%MyUk~mb{FTA`>>j{x)Q;4Cp>|_!>A+71 zK0ENvfky{!99UZYY4!8f|5p8_>OIv}sQjn#xc|cB07r4B#+bSC>FRj*ki+y~Cdasx zL({y?xrs5jez4?#X7t7;Hu;iq!QnC-+b&HGsGk;~;=vw`ay++Weuk%vXxN53YdTp2@JH(NiH#)%jeg6Pq+|SEf4dy6Wwjlv>m^ zNN}0DRtJMj*z$8xW{SJatKIZQEy@f`h%1u=SJ8_`=A>s))Qb+Vd)~%vc7XK!F2+$6QC#rKaMxa)wg8np)+PAi zt^?|{X;bayJ{}feBrZt~sM8jRXq~Ux0tyWs^)`(nMqFPV4R;;&Hcg=R(-CISk+*3s zAKSn*ny;@$t{7mK$jMw0Ra#0C1MG?6E_Y_$?dG^*VjT6vTx^NiU#=vqH5vIj~9{S^I?A`6k>!#GaBI zIHz{h3&tiCbx+G>yJ|qM+f}2eVF9XpJD z!@1l6oARP&Jiz4k_`>|W#;-OFuAiP+OHCWqh<&tim`HF`9bXBnTu$w|z^ajAeLj>=i3Q~i4$6l^-`Bo7~=7Ylg%pvr{ERF zl2#^9JWI(Oc!j~pU6vd;$<~*g6_17|6t|6r?JhH{VP|lI>zDiHUQ&Dv zalp>tdYKS2Dmwvo3u`;2`uobFvdn-(U6mZ*B<^~r8Z(~ZFcDH%GaQ@-2|N7{9527{ zQdd^Qik&p3cpRtV!Be#+J1QOqLZUu8R`n5Ahq*Vz)u_Y4FZGJIRU+C~NeC*iei>mf zqNzl5Yqb%L7dNZ~H$T8txV8G?v2hocAAJ~xB=Y`Qx}?P!y^*FadzBCy^sDPjk~yog zR{LEaQpFJ^*+7@}Oc_vX(@u+WGQbe=4&OTIW0B%h_Sz*N3uu!AIjJ)$4lRfo=cG|# zT29VBq{hrF>6<8RTvOUFWedzE9YxqgsX9zY&TP0{sKXpb5iG!M)mR|#Vhad_M2#`5 z8bdb;l7#XiM)mexBjyTpuI;`;fr{mk4*B%SBZpCdk+%+i zSd$=7<}bAs_5m^@Zyo+nTaj`j3#2$yX585x$&7nSjH;0Udo{A%Z&F0KANiQni=yU& zdEuM~a2(-G)cTPRLB`ByzB6qRty}xY$_pz8H2(k1(Yr^_<^2B_M_xU$apYOu?|1ih zf2Dg{_sq`EJAcyoT}J*lbWR%nU%U?RhT;2%PaFFA(4L{Wq3ebgw|~<9WcxSUXSIIb z`c&)pTZ`HA|Mupl=4p+8YkaQp{Kj$hFVx>#e_8$R`k90OGWdsszh3+AwKv!1YS-2l zaoYbA18*DHF|dx&{g11ERDEsrzUrFlP~|JARQxX+?k`Oas+nhqrv;aC&(UGax`TE~ zm42WxRlnu4PJKcD;N&GXc4Z8a$}N&J$%~VNr%)Wm7=)Mt`QqRp5?3V$7gKCC!sIP- z=^52@{gnc^-}M<<-x zujSU*QauOKevD+wa1>6(9?48`m-%dSU#AxJ3`~g6O%5K-sy)LIiOa9r3xaS?a`0I? zeneMNjQlBqx`EVpJT<0XavgtRie_SEV^`&O22Xe?Qf-EYVAn@uNr!PTJyK@p6E$OI z_gUx-F=ov4Ru8{~hF{ZL{la^q@S_MsV#f|`yOGA;Q9qa*QuAO^P|I(?AuRnV6vQ{5 zp)n^U+gcZOavk+Cr{DH;esXZsCr}VdOeg13(@=5IR3B&h7#5GE;WQXtksKVc2X8np z#j~wah|s-`(yk5}k$uA0=+*Ty6HxIBWhVUs9f#o5tDH<7;?gF;42Mc#7D{@^T zJUb_7P#B$7ozdhU^JV_gJ9@hY<>Knlf|9WqzHTLPVq)`y-m*tV!i5ZX!w*_XG^p55 z(-b01m2Rv_Z)NM4KLw(UkF6PSOt^iPgCkbrRH<*b`<-;M^`M=KHC~_cpj9E22Zg3y z=T`{q>8XbF*cJ^UFQ&(E)NEa6x5Y_uLB&i9Fhn|PPXNNQQUFE1rgX&X16ZenO)sqqY7`U0>mZVP48@2#DQCk90-gdkpGOC;c>_j`)itnLa z$@u~dkr|!`!$J-F2@A8CY+|!=8bVF2WL1uTcb9w_XRqoY0|pTDILL4Y0B7;(N*V5kgaW# zr8&z0Lu7n9p}w|!RY{8a+6F>8FFCNWcJxM-3@D3p`9sq|;n+2(!lG6JQ+Z>d!`PG< zoiQ1cbF1e}*to<5-1W5!qyrUZ?0U|GNXg{_X{rhDgyyRVO0K$~lvv(hwSOnZc+S=4 zHME&fe!ZDqYDu`m2&eGydbzD~qAF&tj1!osZ z6gMOXUPKS^87QM}5xg}yb2bC4IB2S@S*AA_5~N?2B#&2L&B*tekx5;U7#lg@#C=V2 z;9l!ZSlmP%_a+QgNh1y`X&$j5ir346?@z;bxtIE8l_4`|+`1T=($yct9q$hAh$ED0 z7BWsSDq=-#P?X=YB2cuVqtMnS2kugrfgz^mS>eT9hJdTmCoN;TPr&N`E%tL_<;BT? zJ8MVJ%3%n*ESCc~w4MMSpf;CG{j&$yMrub5*Z1_f)G$_Lr+o{O$e~b zNTSO7ZH7Z_{;cwz8VhvUJu5468KwuJHOWMgDc`fAf-)``z1qK2*@X9V0f+cRcSBB! z9$^M09l8O;yr0WI|8FlbvD6cdr#?KO6(%q8)d2l{p(F_-&B{mu%5PUV3XMsQ2Q@dz z3Jw8f%&2pd;^y4E^SW`%PE=sfrrRp`$Z(QigvwWwdZf@lSWim9y!mHx#CH2LdFi2| zJ|>|ATb*ZNi0O>v;8rzBx}$I^L=`nj*$2|XK+N|1Q#l}~SZWZT+6K?io_|NYj*L9R zn9A`n9_u`~S&wz5T#~vfm#eK5$3PQX$G7Q*1%7VDRkztnE`36!B^{KhdAIu(J^lGo zox((looL=~4;m9?(N0Q8W+!#7Nzs(*Xo6^6UHO<#QHCR&f$*eOq0Cd@MHQ=~Uf59E zbHL9Eu-O}<_L)CTKOh@5>?|n_g~-JotY*{=cdDHfkgHG=m#8TYm3$pHyQwKKW^6Zy zo#^LCt$8R82+hF0$(O>xU`K@miQ*N?kWl0??t8%219d~E{3&X!saFImAE=n<1bU84 z%<{|12*(EQgQTKh)j?cF(hpun2<2sj0?8Qy6-X0Lq{RYhxEDx5S;vtA$$0{;&U;KJ z=UkLqhlMInO-;{SLZT#=y)Rf+6GKE+w5(t(fx+$#2J`8xqQQJd3*|Xj;L5wj%F3I` zR4nNKTD6IlIb<+pDK_<7 zNE8eX9NbL1;FU*QFbs9uanA&{Tb3NOcP8|Kh~w1?fi|)mAKwO-a-q|yGyx=~&&V#t z(Sj_|i36vWM|Q@vDa+QK728+Ai8k->M3n^Lt;1vO)7Vy8Qp;`I(#FbhpUn`2Fc=+Z z$S&0QMKaVvNABb(mY86A%35ghk{F2K#N^;jwWC(Egi4^H%m;VX^h}fG!j0s@1`U5z z=<>PXAf!dfK@J>TtiQ#{PZJmh1&86yxG8NhVPYOqz52-QMBa8TF;NI#wz3oAS4R+^ISKrW%SX_VAt(pj})Yw zRt-rc4>#4b5e)dXVpGoF6!)lYvzkF=vjiAo_b`+H+-isWsqDwM+6kmyW6YwG&p23H zRcr>!Y8docEqxe}t7%mDsMw@9(J&{=YZ45wj4EbffaN&t9M^)5ZMDsCnqcEebvtNA zRJy5|@TyMiCelJwj(gI5tD2~#M;cthyzfptc&@U?IuxdTR0aa<%CE8sWi^jRjFnfL z503Ja(^QRE&D!g+dD?i@#Fa|*1|Oq~sKgh>=mt}TkzNb3tI0oZZ2e-Xg~<@j4d}B8 zto&<@0gRV(5Az590dkjv^e?EqOZWf1ee}W6D@KnU z`G=ABk32eZdiS5YyStZlkLvtg=L4OWckb_;GW;*h1iWte?%~BlKedcMjQU7TDH|yK$YwO1j-ZJ>? z+W)M5gtz|I)|vxf9(Zct+Ug%v-&oyVy{399iuC{Q!sHNb+7#ZvO&;YI+hJUB%XGQ{ zmci3Bf8mtXZ&!2)7zXm7(R6{M@=54EsNP~L@p45$2w0RHx{4kJ0}8WczDHr0WzHcE z-d&EgNqQ72kNM0=VTenTL%gbVsUf9#>3~98oE*9W?-yW>miK-KAuUS|@sQFw`Sg3lY$06%LMt$%Uw+e|ibHRFUD6ChO_(-*l z@PfjCNUpuP!aWv`83|6lim4lj!W$V0QAF#r-c{#cdlP^)4&ov+PEQW4RVfT=lm@CP zPIOT9l7Xnol;UQz42QZZImAl_VXKBQqcl5p-ZrDLjyykYcj+MC8c&~guw2jElt7w} zp!zZSG@g<#Nd8fjZ@AkO`P($O8hpfiR2s>8C7*XHWEqU~rOBbyszXR9(G|Tfg(2d7 z7pSIlB3eW}7Du5`+IVwGrH$N_xVV4pur&tQLb*i~pkK-#bg{M)5}QtyJq4u=CX!~o z@)q0ZqG%OKJp9m`5|}O(t(k=7$sx9N+l;OSh{jizCT~Hc3Unf{O$gZBmw<|?up69q zHD{*hm`~QGd8J}@TI&M1GfR_deQ1W!E$_|_l7e%RLn}4WFA|*m=)7*A%HNm<*y`YH z9PP zA`Cu4eEia@X@_X@*!r1WT^f~!6i;d0RLY?-KNf-9b8w$?gE zA6q+&`MSSUxmu|*$1bPJVM`SUW^<`>pHXyj&ufxHr>gTKRZPLC^W!KD4V%L;4L_KU zNPmzgLM%t*x)h=%(wqf8X0}TC5nwcjc#0D>1y(F=gf|!>WoL1iv@_kJvI9@2r(FS? zv_tO6$kmWOWOUvkQW&|^D2r617*UEwHHxFqXhPXxelfMpqm!NZ7dO%BMn0K(uVJ=S&u^o+N0ty9)B<7p`cJ_e@G?!%Mf~9*& z@NO{$i+yTaB5I*ws6wdGCN_CXBRMb1iTD_wS z;zC;$*E{J4@{ATxyWV6TYrhbiZvitL>iNkb9%Qgr0Mz+Zvho!s7gYP)E-AAdpb0c% zQ0$MkVxLA(DE0<>u@B8AE~!TvC~)-m6i?nI1Byb>j&je%oGLka8rleTy`SlN+Zs?m zz5PSbn+C+{xHZY4XXxz;r7IoE#&1_-U-Whb`9#PuoB73Yxm0*Q4XP+3$IU(vC2K)j zr@aw2vzZX``?<-X5#9LXO>2Jdpdivk3GeEF03{Ony)802AYj8ymJ+!fKzo-Cbu_zb zb-Q$ln$ZAT<)}n>XF%(03X6Z}2?t2FYhIxv|44E4p-o`VyxIg&#f(ZyihD^xJQwy_ zJ!#hp)7J=@7<;wDNJkMp;eZrtVT)bC42MbqXoiN@hF(%7E&%d%RZ)=1s)p4uj)@y( z6@rZ{uiiSLLOG35&BIB9ck@PWP2VBQ9Hn3+$2~eW*lXp}8v1_G`3IuVkb2xk_gQo{ z(#O#3Ws{*Lwx6L5&kP+VOAZYL`zhrLRnU?00*;Q;?F2=iQy{ohv)X4S#R=!^6KhJTrXh@S>rg41Id&?L#|M|n?sGSH$KpKed7UM0_@bk zQ-5FmSL^2t{_nxZ2iFg-8XT#8ulAPO)*A065B&4MpAG!(z{3N#4UAU5RsCS~4b=y$ zmvJuO8>rg*4_8~19M-8h+jLDr^BoJrNaB*@FgxlmwK8LyBJ)`uP-v@?!^A+3HmbavQg?(*fD+doy-zsm7Qpj7| z`8LNl@|L2~wXEAxn#R&tU7Z~$oj{TK;?ks@Yi5w)U=YR@eGCE$4b_K&>Na0jRGl46 z+O&7L&89uYj-Y7Mo-obVZV7vwH0q*9GNH{)^%qyJGcElvO01?By z1coLx(}echT(?k>80?xbG6|aSJ^-5N6T%Cc2z5<-BtzD6HjYWmiBj$xhBYXY6^eyC zE8Sh2FBTaNmEI$5ujV^NRq4$awG@U(Z-edQnoQJCR(eK_bc%bex^d38zasr{ReyZ# zQ;<^_=?p6$3yG5GyeAOW{1sU`38(2Ky;?PaO9=(OUv36=oq%jOoOM zH1oKSu1wT!Qxy+vr%mEYAcemlQ7}ZtQrc2xQJ0EaK%tR*wv@?WjLbCTicRcrNdB~K z6hi}cm${#LD^W<3&Fs1c+g$^7@DZJ_fRzAH*FYP{1W>a3XdpOfkQVquTPbE9f&fu5 zbJUBOPfs&($WHOKau?gg5Y>AIq6L|%?PGSh1}~K!`Ap4lsFa`0l%EuW8I_+D59NoK zOnfufp_gRxy^<`;_lgn&Ph()0W0h3iz$uI(5T_t+@RSvOA%!903zOtTKu|cJ69IL3 zn`pK$iDX4JqcE=-)njKort4#MtqezzrmeEckH>l+ToBRNiv!>;8xT51=r zw?26-0}AcLhML>>2DyX1^CjM6(^GDZmtlh#_BuA+fI3(0mh7-jKZy zka1D%*|r%RsHFk3$iiLjy&5q4+D2J!?*n9}f$s60pEhwLGepxsfvg(}n9pFkH4Kt* zKW)!;eN3Hv#-=b4KwR%cwSax5P7Q{LpX#Ln1@+9!dq6;4-kl+0s)j!DRAXqbAM=-Y z*!(2|eg1b%ZrZLXiNMq?%nbg!v&gmv!B_Pis4cnB>~`CAXc0%XWq_@&k~|d^jC-4Q z@hM5t^yHiZ4M%auG2ZJZAIjQpESKK%;%3&n8(DRUfEn9{zHkuDH3k~3Rztj5xx+si-aY)}@J-zJ|C6Cl483(| z+tB4hqwVjvKh}P0duRKe_NsQH_4U^KTH9LZwT7BsYaVLe-@KrC6mR~$xUquq{x|9$ zs=u~=RsH0_e;oYN!QUBtWbi0P{2#8pu{Kp(Q)>Y9poW+lWrHy+aZOq1LHjUa+f+HUcNR6C^UvO96eYo*EMPR z=G{Rj?GQ7ITh?TH*-uns>V6d-DBEWjhy*oaS| zMpa$-FQ+JJ;UHQtD&PT2hV#zJcc2Y}GI*n}Leo;xY$)Qq3Dr~zhR6hpP6F^ZDYE(} z>Z+u;m3J<@^`$_}K))@RK^0FQGpN#>Lqmd)E^>-4+@%xtSeW__QBFCEHVo9%Z*yA7 zT1Ing&Dl&cboy=3X|p9XHm;$8ZY}wWrE|HcV3 zo0vgdG~XX!T2^(~dN=-`+Y3E8VHm$Bu~P%QZs$`b) z(NIsGdUT(O*=NF@Pl&Bjot1NX{6p*qkK-cen^s^FL($CSLpEdau;1`7gEOxN~OCk=U zJ^G=fij}uu3PWV_?_N#*`JU)#@(&0Cg_Sp zLQO-VZ=9aks?i3WAr2d>6NN?Dmai(&f)y-k(?(eIcK1mw1Ql1^F^|Ehd`5EkHu@aa zL$Ng@^vL%)dLKM}%T?xOMy)TwjmmtALq!2?#80U(^I4k05UEFQmQ3k{$YRef!(FEC zmkp4ZkxZB1hguGEzwDGu$S?w4R6zuo3SxRA8|pNDrwW1rizcnENez{-1|gKj46*5_|^NlU%X40kiB z3l^Z_2s4Eto|qiIRzpWSBoGZ9r{&G)b&Zt_Hu%ZddA-O3A5)Oex_Fkq`weDN*ri>C zG|W0#lI9>JJe%!zc(!w5&jy1+yLP3uYZjxea-v&rbgp)-_lW>hr&n0JmZGvq+^%I` zoc{cjZZ6rE?q8r&elDl{*h0o6{wsFA{PaFJ`7)77FH!o!S47S}K&D_^N{*)jBsgE# zG92o%%mEMK_?(=!w`iM9a-mMMGCgE@3^9 z$w_sQRnbgN`cYacn)6iAIEyHvipEh@G|u1EnB=s)Pu-76m>V5g7`^*+g$}2-#!vcw zk`=i+OIzaw6Zz!CmarRg3zs9M`ywaVa<1wMDQCFR?Iu|?Dj3~hH_ka`9J@2NWE?}G zjjpy84w=;_y7D#*C^V{>l~&CJR$R>p^eA;HElHs#Ryr)=C^X89-WgDeaU>%a%8cVs z84Iu>(e~3KQzE0WfR#~jpSGME+hHv)y6SRTQ$s=Wx;lttoYz-Wti1GUCR@ssJ7`5E ztdA_Cs-Z?^sRl=}dNE%!<-Q=7s^)ZjJp)xI=Y75R0rKbp@8{w&^2@kN5NK6`97>Zb zhnHeC)X)dx=dG6Eh^1Vd>RB%)g7bMA!b8LT+yvGQDwse{EEC9csV+{j3V(ZP%}2|= zTJh^vKTx?%GOj`KIPf z^Xlf&jqfzx*Z7sj{f!m%pVU8He|!DO`gQfigFhMk^x%6~|G$3lwA#;WpRB#9woqGF zJDs_Jy#p^Fc);HM`$qNU)%&aGapQk}CLol-|KOh`$&p*-*$i)dnJRD5fMSI+k|Vcx zJ2T~@xkBdSec=P-(~~3WQ)L+3e1>MYQ#G4q5m91_bz+7?U6mZ+Jx=Wu)C8B9afu1I zm6#ch1leK4S|yAq=!j{GHeX_F%|`RH=(`RjtO5?ayuKL@b!l?sdMc>^Nn*Z|N?|8n z2a&W=`IX+SPGKjiyQBgSvnVlzA(B&exH02JIpwI!yT+{ zGfcd^ynsS$f5#V!S+(|)G7-&DXp560T+_c++i9&RMTR!eb-Pk4@!l(r%O#kVOX~$M zN{(Eia;d|5Xcjf&!jOeKaHw%T6!k|{8Aa}p;^q!;7HqrS%H#+K9B;Re7A78_NtPzo zX(lZQH3U|_OjcrPkW>_{`^gf#j!gaV)v?Xd2)m! zkBsOPf&g*v$53mCxA=`Nm`$%NnHI1kvqAQ*%@NLV*jRT92&}vVYpg5S^XekYDZS{<69!36Dqg-}qFo3dJXz;k@o=c1ZOU|Q&trmHtUqpO4H{M32$jUYJB z*|hJu5Cq7#@3}9~sRdW68J2u>(V#tF3uZV}9GULW?FN~-V@H+*m1Y&AP1AEzUX0FC zG2+#eKE=pU*FhtEd}eA(c*7;HLxw}e?Q|j|h0r!{xfFJp;iw@((W{Uyxt-xIGaNNE zs30?CLZr4ko#IZNjSoW07k39;nod`s%9a@)yc9Gv7$S9y-dzer#O15lfI@q2a^zIa zK6#YU>=Tejs6!DHVGWkb6BG_ZB&$zRR%-?mR}wRC<_ve4T+xe6qn2el4DtNr$jPi* z;)Ld&YM-NZ%j|=#TW*=yI;{bK4gefUcNO9prDi<@^F=TZMIaJzQfRR)wn75b4jb+X zc&_DwLonl9a2R6ur*_)|-Pquwky8iQof_qJ(*auOR(|}#n!QrzCB#mPFAyEBDv5bt2&h||8+vv3iH=PeF|u~{Ay`}IEoAL$lOxC4Wjh{F5v?jJCLrG+zzq<}?pCCm>f(sUf_XdE!y137%z>)PAQW3XOMWpS>>m2`O=o*ZYK^l*e?7u{|i*if|^jVlV9{N zGn?Xhk3y)y5Gi0?nq94K2V&Ihrg)aOHqxZ+;L3kJlJ2sjj)$Y(@xYY00?G_qA={!l zt(a*{M;eSW$Ys|fllKBJL?qWym%DMB@9{X&HfNwY@J?QwNQd2UI=;Z-3%3J$=OS;o z40prn+W!;x>&BkZF5s{Feb{kj7_Pq zA;9l>fJ!uldmaE81W);8fOTC`#|^_Q{t(y;mtG1Oqgyqp=Dy%G8SV+~-qE5aZ<|4XD!|7tK~DOJf#CO}E33sW&b_th{axx~xY{ zmZoaTvJ8dRt$vmD|IbuL|6=srqYsbXHoAD^n(8~H&1W;Q{!WeS2nJ1oLc{f`p4^Ut8cDfULPL(*x*|Srw1<`Jihi1 zwNKREQG25H!h!D(Tvov+?d?VwuzzyDykU#VP}JWXdqixXijskk^{i%HsqGdHo7 zH?Gu+)9q?<=u48PdHHeP!(!K{L^z872fE)Y$YDv9h;TpKlH}<#&o1Vg&`vCXpOrDFm4ieYrnqZpp$LQpMzDbIo|r2gjLUGhfO;wp88en|8!$M-r31uh#r8_K zKu1l?CbpTl!{>{73L_m?@^cy5W>It{=?)6*oaE^t?kupsNnyT+S2xfaY3XrsFMu=DrIwu2i>;$L@SP{mjZ(LVvU=^ zNQbE2iVTh(C1QY`IAE>~RNkjbYh$nzs}Lz;+8|i$e5SAy^`cQgiczO9M1}==(TI8w zYpFfN*1cL~*HG^RWV*CZXvLQBkOMnE&64}#vLBc1j9!$TeSmyna^x}JY9uv^IUY17 zpJ%z}TuYZ~thor@R^H}Vr9C^eS2W4d9Ei4WS zr2*h%HJ66-gSfe2oge(k8EtDDqz9rH8te@D%>qN82?X|U*=>su9}c+#BDc#IWTjOw zMxjwU*V;rw;1$|LgM%q%##Bcz!NOKTo5b~DN4|V&R0fJ*25Nd8V1q7a?=$<9;hu~0 z9muOt`O0iV?;G&iiaY~ zDfQ1gl7-Qn;7GPczN0YH5gkOJy5XM#+^ zdgrew(?39FvU7{}2`jjR)*Z=Dc1GU_!p!St+n13Akq6~xUUMPjMP#-e0Z|-M2zI_g zG`5uxOCpyAGe0L=tA5G5Pe5IwZV0xTNp)L6VunK{D<;Y46oQ%e^%QoZy#WA316Rtk z07JwhCYY|)3yu`dZPq(gVarcf#~%rVoi}3V9Bu_PZ|CS6K`@)W2S6);Ym^dct8>C# zcY6;YPz#AnnGmUN$M6k!7(5ibyl?bAxB?G&L+0dyl{2m@pc5kM?jyNmyZ}24z%>0pgysKvH{F za^wze6e2Px(a6jd&>B8X4*&38g-$^oxm^{^2F*_Ot6;JZ2q$~&Ir|hNhJ5y9LZEi5 zhZz5Vwleyu(KnCIvG)Jvk%R32f6>V5?#H`t>~82@)NOV?-Fau{C7nw;M-P8__`Sow zIJ}y70RHFD$L-|*jY9+N&$QpwUe`XM^~2T&TEE=7p!tL5YnyjBS2ljm`+s{HuV{=l zRyUfw0{D*qkG(e!v$8na#-Hcx`%%Pw0YMaG5ph?*eZdvtu0$D_6^5DNEDVEd)Dw*Y z5ySOB^t?&myx&gA{_$M5^+cfE35 z&UvbO0_ip`@gsVFd<(G)s#C9;gq30bLtLf9n7R) zngBsftgT%l78sp~P#x^+eMBPTf+S=ZUt8NRp>B$<_|C*h$&(V$$JN#@mJuXGeF$b0 zIWk9ftx-wV1#E{+wt<2sChipuUb32RwCo0|Xgs~C0IFk{nt=ih>mv-`vcjeP1)e)9 zGjCf8}uu8nAQd#cGm&xQ@dU)#q`J;b`=_92Ldo~y9XLMbXV4&|K4 zN|O*fEVO!pBJ(K#4nM>e(qZI!0+69b3&q0Kal>j9&;TkLx|=+cWst2brlcL7>nT9r ztG0H5Y;^*vT+4lf;ZcdygEVB>r?z%}bkCDvQOG)LigFlBu}$E?SXOLE)snh&Q`P1g zqNIQ#Za0)_bC9>yV;MtLo2Zj&YjIA1!QkWwh^}E&uo%W3c}Gwd*ck1pK+*@1rBQ(d zZWIVe#s$!Z@nf!b7K%1Jcv&#`K?iC@^I~dhdJs^<&09~T5B z9Jk-0yRoB6zcT~s+RsvlF}R3vlX;+{!}SzUNAED>zhXCtk7PtkfrfhI7#1&_s<1ldl*17PMN zX2^?Y3)GV-%!l>ef>A*F3Vl^hWkXin-elmWH^Gz1MbZ(qwTOpfEGvY?JQD*8qSrhV z%uXv#P^d`YK9yetgUZ<2+F6*Y!S~rbRTH30)lesy4XwR^vmwq|*!tmSRiFwBadHrr z4k2W$L0Be1g@v(&_c)71k)S!v*DM1AR~bkyWWuO;5{Ek-*-(@-+$j`1!M@>qf$>c@ z**8>E2RjO=m+w%De;G#&;9q7E=#C7@7CUN$qR-*3(K0qprSl;p@@2+p$hOJmD79pg zUL;|3tWfhU79ux*m1~62fonko6OL6jU~SgkJ{h4Qj$G4c(z!p$KtrE@3?;~?EE3<7~v$Y^MxsxBxwj4Kpq zkl8fK478viO;?QtaG=6kO%*H6*#Xs$WrwYm3=o1zl0;i)=8KS$Tdy^n3rI!^8T!{6w*{>fug2bgsHMz@r}-o6A7o`i71K{ z8J%upz}jv2wzUdLBkh7Lj{e##GHu3%$e8s6h_0QsnDmABfVh|v@S{#Z$<)Y?p%w5$ zBZ5suT#j5(YRC}Y{zxbk74F1dhgc!BIv@I#R!5;AP@JhT?HHCQfVyXe>u&;D?=QfqA|7{XA$Nq5=wCTjzWcX<}`Jf z$2!2|^L{k$uCm5q;~_Axh3>^LJVd^=4^d4E1|pPT4=AO9fSRL}2CPcZ+S}fa(vf3# z$su!#<{SbxIrLhny#Km)lwaiie|HxLiboaRDO_LZEF6^oMgETb0PgGP|e$mHt`!*z~Z}?^Byo*Q7=y-%dV|tR+vvx&PlJ zzK8w(^Ab}M`S?Te&&SV??;qbX`t#@m(JP~KqlZL?Mc#@$7U_uW7s>g9{wlx2pXwL? z-9PVP{Hy;ruC|VsIiO`byZN*pXBJ`0Q%`^#k&R)O7Dn9gs1(3~3c4rIqA`@IuTR(P zVY>AMAn#FI$5Vrt>;hGB!*m0h+?k8Adbts?cIuwDjTrPA=l2vw%2P1=<(D-!pxut3RuO!FoADR^El`rBrp9;`5^r1aK@^NYeR2&kS}gu6?{C;6+Y{a-P(=2lOz$(%5`@C=^&vO~%EKS! z3eM%?2M@dn#2kl9^db67aD+TJ;9_r>&@mUvHkXAB%5BRr>l+#N$jy2^o0 zY`0SrsGYi(Pi^8&cwWgMJ)sd-fQl;-zo@&sdLU8(a=7l)mon>)!tv?>7Jv9|Bq%^b zkZlEXI+1Jf7O-ls#toa(dIAWekIL~vgWT8$EH0HB@)~cJ?N|>DF%hPEn-rjfjXjkO z1(I|F8zuqB2h`S$({Lt?mZs}8hBKKI31?#WF>CjIYwN~x8OvU1m~xk~HbIuLl2N=b z;E!hynUABHOt~BQGYQ}ih3qbcV9+q^H56hJLWOYYzjtlj7|uhL2a3R*hZ?wA0oI9j z8*Q>1?2^7>jM9)RY?lH!_`;iiu)~Nag=HX~GXYhonhC^!Qkh{mc=IfKp1y$%2Jw~w zCd%FH1{|eb1`XUWh%-+*4PPgraNGk!He?E0Ywm3k4EA8wH_>J;wE3RIckbptM| z7}r6S2n)}Gfe1C&L55F=gv&W#hSdO=3J2=M+PdwrPr_($uFA}6JiJd5PC^Fsm?AHx=2?Rf@bN ztzMeust-uGCCy3HvI@$gK(1%N*hdo=rvi#qX3#L>@;?7a)|;8o4tJ{C{R0Jn0Oq8%5)5IeexGhiV9r- zsBT>PA(+Cdydq1GaCN0vO+gXphcWaRthKlX)pEi;rkCu!ipf{4mgxJ5reyvl zw@gsEo%xqSG27zndemL~DC@$ljJGw=v)d3FJUE-$F3 z2Dg&^ILz*mC+zM59k9o4H;BM*Gs$T7Cd=GIUfLN~8{AR`Rl2-U94iqv5$HlDL8)#b zROOsUV`pY>BLx+6QC8^!0m-nK4Ia?q2dcB48Jk)|&}?N8!;Q+Iw>1ajS}^F1uMP5q znHGRj>*F?VA5*BzeM`80Oswf(RwqHIqFn-nttsr7O#$`2YJ(X}DHNy+AkLS=Qwk>y zSjc{hVO2;62{PJ%f4r{C(Pr=3AVwQmUzh^i>ATXS z!-2}fT*!nrPoT{?@!+^1k`K3eJpr8UQ5%eNF#=@Um|CF( zm1vc@IHV+p&Fb00cGH%C0ur}-^VJ1LA%VPO7&!Jxhru33i6bbgntEB@MAsx_7-`Iz z_)`=r8i56c`sJAs`DWAxJuDA$U`fQYUnt*y_-ZCY`Sm?AI8QE-urnd$4sFu28Fq%^ z@yA@YxsC_d7-Oi_4EG)bg*48tt-DB^MS_RQxy~YiqH=Q)sms+%VlLhe=HaWvT)w=> zAFXXju^0!ZFt0-`(7F`7h;y%2)c2DkLd$wbUcFVHO)=}h3qRYimq zvy-VRB9F)!vn<VGkNH$EF}xWo&|~4715qpePIx;N0Jld_xsRdiBD1@)Ma54bIzM zI_ZXM%4Fd6OgxZnG)QZVERF^#6ap-PGZ8YH5I>O*i&MmhBUE0z63FN-P8H0>DIauZ zR%&faAAT{IaUCw5#f~ZSB5QaZsX%T13RH9g7OR4EbXY|Nh@k^bE-ThgdY}aE1ibG}&cVZ#QHDBnfhlI37~%@o zb_p1D1vf1?Va;0OuXF;bKVd>ey&6OZ5oc6YA}n2Ki1v~Me~=BbKe@K9kB@}%j41Ml zRSJuH0Hx|+9)Beh@*GxM*Nf9k60&aQC*g7>c0>-wLlrx^;Jxh?rvOefm0CKwaaT8J z!2jDr|1az+QBkz(|21%En5AHpjRcT?W^LUaLgGs(6!n~k#uIJBLv;EB zuMwJ_jK7jZw#26oGtn)2LYm;n)e{0CgcdyT#lI#u|B7>_Tb7(@|JN;9pV)!!v5@ z7Q}{s4hv49y?=;Zyai6uF{Okj!Q~722qfQP@Nld|>>kG@I63D>hs{({;jud^l%m2S z&fV#D`MNF{S-W}{so%;OGjJl8V005~81MpKv^pRhuN`BmP@rLD*uj-y*CGhMA}fjT zFc-jqiX{!>=LMvg;i4^Ai`L6_dkl-=qA|`G4ndEX?P91Qh%AQbSup6qEX<>O$)bhL zf&zhrHQ!vF(6J`ENfjR4F^ro8Aj5Ce5|z7UFcHw2qxkxKSMHVxl8^xlP{z=4q!uzw z3(!ys&>_|HWxZWTcBE>F02NYTygViu5Q~rvOTmJb=g)#?*g<-(76F&;_%P4mBxHa@ zW^=m341y2zute$!K!&=UD>GM%>9iS{GY5;-oda&Meg#Ar2y<(}TKL&091u>mw0XmY z*Ao<(QFMSA?P%b%o&aRX_Ds88H~JNpEpbtv^Z}qUf=;ewFg!S@Y&60_70qzER!ksZ zprK+G5rV=)3B2md6z&R2pi1vl(1VPL*r?nV3`EeAOXC8(Fg@TgH_*@rX0Z=gYEB=p zNZ3u7iQNQ?YJxbT^^eJ+G72MFu_w#aRS093DOJey!5fr!x99Bl1DXPNtG! z4gpWMK1C63=XwGvk@uhUrhDJ#`TwQGGmASG))uOTWAeA=`}4c!KFr;KJOB2>dHf4>(~0GY_QXMnE#j}l z?~7jClsnfvOdFtMSVNw?wFV$1M!`?y8-JgsH*pxV`<#RrLn;eH$z;27>5?( zF=x(a@PB#0W#`&pEAKPX(bKul2q4kN!Fe<@=#5x%HU%{qFc7iGp36nH!EzSagaIXT znaq*VSpneC>Qu>qwMyoF+LLO7bNE~djXLrm%K@PgGikucf*E@k-_w?dOC+<*nQ)^s zVW=%&+{VDV5e60$9c7#=%&?p^;1wld1;~j?uxS?ivG)y`sIY#rFm0HqC>*mBMouE9 zSweD$N+&vlpJje)jkdr+ANqS1*PaRi zdAG3@tZmcRCD#mNnSCZq0*T1VhunuvLOlWGkE;!y!Aq22h+#cMqI-u_BW2;>zYnc} z!}FL%;Y@cM-J$#m;r1C9Gzval3Wg}`W~y7TO+dj%)COV4FI4($NN2`wz^IogN;Fan z52X?ud9cKJ=|?l14q^2chJk%2^zvlreGj~=Ekpn?;(j|miL2i68>$U;>XH$ZDxsG2oTvKLE9(K?!+UTl4$ZBT@{Ka|v(ijX!# z5xdp~88n3$1H}pt+6n{`gm8>lX57*@lx0>h5Fv!4O}`S@Q2k01fD8^1H8mYU??Z5C zpg=>j9f@W`Y=$5f0uq*~mX0Cw0DDN{&RnQ6#^UNqh894V9;!oE(UnFbwPYkah{ zzD#f(jhE%E9_WLFr&7YAk)#?{GXn(!=~vVfCq6o0jSN}01Z}o@6yUbwLX)OKJ$O@V zgA!6DBb?}%JJJ|9T1G~yt`0=`(-7kP0k`OS=8ds(a z&%~YLxc5L-oN!aLAQ}AN7op}CZXw_=+)uz_9(9+6q28v?elunPefpOXdD4zAcP zyeBF?4B=So+W`XTjt8JSvN^P~INi~JwMd{S8z@{xvrQha)$zen)Yqy zP;gjna32=Q1T>CYB!M8^t}`J1)gs%vkXMW3E=+EdeWXN1<`zkR4`odTMNH^tydV`F ziYK#KYC}I0Fmx7UK5m7_oK+Bk=ZyIVY?>dpWq=cq-V3B*FKqLLNn5azo&?ec(n#8X z4e5EtRXRA)O!Y{c=Amh-CkZ;$>$34tU}=KXR?eX}TNMR^B_QJZco7Sv(u^o_r1{Ce z6C8qqXo={IahQS;)yx>dhs^jO%W+1Qnx{#Yl7)i{vp|-ZERW@6Ssi|CCTFs2z>pC% z^4~fWWs)Lykx1k0p_1U$$BlD;(jyoZJhnEtySb`F9gtH(CIg3x=$6#ZOLrqQOMIBB zVg|xmaD*)0j)@W18`AX~b* z!eN3tFvo@^f}HRZ)UdISpFQ$O1EoiE-BF*rN)adl=5M6j8lc;=PLQh96x|;5NEeof zH4`(?L50DRZ3LHW*rBDMoh2J#s^hz`Ibd!UXw!!Krv(EMwUXw*y~9e)QCHqlOoF0a z<~m{wnLA;i$M&@BgOh{skQu;1JRceD9f+&-i$5)Fo&Rb6Yx!#axcmsL{5R#U%nidn z|BczX**!C#W`3MGEi*9_!#@85>BZ@j(z~TTPCb!Yll+t1@OOFQp~R($Gv$>3o$+08 zzW=6Jf9&Mg=;-cIKk{w*DZ_`*|?I5DYhI0N0{8G=Q(;hWUBdO$$rskf1e4N+qh2;`9$u>_?h; zg%NFog(Xysex)LN5~#dfNDk{X1Rn}jKJ-O8M1W94ZsiFC5>#(bs2<#nV5?l=Dmkor z0UW51(>TaUL4p~UlLZ5D=i2(QbdG@@$T`k2fPgTmww`C7+JewBS3)MPOeAC;KY%Xn zE{k(;%^vJZ2>0uvr*r020lo@Us!mEocd9NxZ~^7Oji68t0veG72&BYh4|^dqCDw{a zZov{9X9~u+(>5vbmIm7)f!N`RQ=Bx=j`3d1XZe@h>LoPmccnDi+YKYGG!(2o3kShi z3ZyYoroPD0%oH;iebIwsXgCBtGe}3w3-}5*oCUM8Z<#n5B9d^pS1BHw5A=8~Id65M zU2CLgz(Cx)wtgr2%5YT;9waBCJApHB4APJVj^iz0<)9opLL8cjc^q*Vu!@6OkR!FD z_hmV>p!YpHULH7nMd&C%=1C)J>$k_)jR}PC6CN)F2ChNwB;9Kil!m=VQo|;r`GeUC zz8E8e-9=6(xyguo+xSOfV0Nsn$L*f`YiZ6yaiAcg+(w%QMy6SmSPKyhMD+Qs#hi;Z zYHk|ZD5b|6$T4*sik<}nF*D#H_5(`}OV5?EfU1mwr~VmhIDVOirGFn}xDxVTg92Qzn`h1s^4Kt$0= z6pdcM+e90RHc+6!Y9_?TMl@iB+gGuGl-=yf%b;`t@tT=1k~rsh#|)4pFd0b1acw1m zoO<`l#rItFFJ|BZCJ9kY5_IJU+s=&PNkTmV1wcv>nJLRMvFVw6#nor-_pPn>vFN26 ziCWgkPdZ4@MekzV5Gx}$v=i5I;@Vf{lWdNKvvASQlH@`qumHYcyHMS80#ugWIT;Tfhzx*^&Wv}K;It=* z3``8I!jc9I1unI9>k9?=wOEez%Zi0RQD1BxG5Bg8YDULFlW>CsD_l4txbTFtl)+c% z;#>qVnq{n5L+#KG{b&aRB4)T9EEtIJ1oQeXKlX6YV>>6sBY$$2< zvMf7K*SxltxzZX~`Icaw$ez~3F;50eqcjh0ti>47=qh1;l%%&a8+A13)Db9(;M#mi>U|Md=f;?{)dkBd1>~J*%&!XXeHSRZ?+BOWN0yaX_ zqi`T>&eCa3!rl=$eb}C;c&TMErY@8~OE)E;qL4WZs?fF()lITkun-~@UNBrgZ zgYm25ZSm>xZDa4nz8||aHV~T`8x#E``ro(_V0pAXioJ=*N0DbDw?s;j8Ij%mkNjtF zD&SK8Y=5#J2aEsipV8`}{*10|*oh5<=zX2#I}M~z2w{)f26^eGT`v~pd8x2LXt8k7 zjSW0GpddMswFFuJx^WIK-;;tVLMp}Eul?z7eY(u031`>u&pQ~ z-ixUUl2af~EfNewRD$o-&?Shv3Z_#D3kT}>+J>!R;xQJ(kVBWNOHg*$#D`LVzH4m* zuY%`1Sun%>N`cDfR^XGz6;0`3J}nrC<7ylDC=DzdOpg@Co zV-yMVHHk!kTBtvWfa{zlItHrDFBJtxXKiGjSV9ZT%Qfg7SPYe$tQ6k(5iqD>cD{tYpS_%SA(Nuh z`-21^W4+NYI>MC>F9o_XsO?uiy#b^JDUI+YQiCOiN3sm!sYT* zMEMUyTaL|y zouCF!uB~5ya5|V|A>%CT1c+r_YuggDqq0Oc?cgOrL^ix6EZFsukR-IdOC5^zPrBMJ zuT!LdM^=JM+ca=WBTc910wGIQx|U2YZuajmY(7v6mpEd!=pn8T-g*xgw!lkNUMP#J4@t-v= zcq|x*N7UA9gr2OuQ1gkQX2)XREXlaU$N4e(t>hOYC9p&!Ob<+~XCOAvxi)Fs{I*~e z2S4v;uyBITK}=-JSvVPRK$`1bbU2C7vl(0)FHkFYE>oX#5Doj zz*mHLY%IE|q$e4<0g2+DH2~b%=!59R2yzb25bQ}f+ zS>A@12oQ`-0XhUZL&q)x6+0|QgN+0g}s!K@#Xf4o9gR1UjS~YzojJha*)EdUF9e zZjggX05TNn2$h3eT`+_k6b@9_Bsc^x@`7jLg-xIWfrMcd7njcFH*p$FJ%F&OJx~Mm zOHl`ocKJ-jJKKAn_y4Uct}M0}rxmv-yjECOSW%c=*eCx<{>A*=`AhQW?D3LZvEQlpw(jYZgvZ3RpzHp(4XU=K{IJGAw$c!9CAQu{M-tf2nf;J>E_a zB$9}{vt6C21$|9b@0it#^&~*_N3`8t1=}uF`#(ft91=^(A zhF3RVdA=;EQe9u#kMT+DMhKZ81>r z0jiig%v3-VRmp6r(xzj;M3EwUL?uE22DTL%iV%P;q#?o5MCxicN<2aTJ(7=x@B%h=K@t? zr)Ue;qH!*S-Aqs$>utb5L}SlpV{5r?V*@6Q%?MdGHuoGLb(tTwqhVQhN9qDpM$aLm z?IQGM8Cke8dNvtV5Ggt`GGHJ=MmYDu=S5LUQ#V&A&|r(sq%AT?t}P;v=D)M0oly|L zJ%hNdsz5F-fr{J8n*>q(=~6uFNYm;zkw8&A#B&;zvK4^FzzPKd2_5ECb{G^vjdc1n zVL*YFeMXvk9(wgqO>N*ng+-kuO|76t3AQL0h^WF$?f$*xe)br*3Y~;1+9?)ImHUd_?2RW}on zgO}7oDUJPW$RS{xqnlk~@7jhVus0{Ir^dk9ezb7z&9M~tE0O8I+J?h<$^~*%lj!WO z88C|ByLOBcH!Paj`-a1ekkmxGn%Rz5x6NL_p{f>$4uzYnNi!KW3OK|xt+rvhK1Qrv z(cNkSkHEqZ52271{J_28ayO}n_DWn5=pR7( zVxlm&Z=`SGpbrzWKTU{$u*XbX$Akn4Kt>%) zpj2^{Jztz7E{(fG)qsJBYE5Ca0AZkPlV!AUr70&M6hzEMnxH^Kf?=AsvT?`&k~>TT zhVi*In3GWtV4dVL+j*FMGlyfH1PG!~UY>nu!8iB>maDu9R^^=s43LFnc}YDFQJX9d zzXlA_D1QR2qtFZq#M*|@SnmVLxGSWQ!|VNU5;CBd zjgtPrcT3SB$%fk>YyyxW3Aub0r42P>Heev4Nk&S4U}haCoMr}l0#}-h#3Wlo&6o`s zh}+jT>=NB#U+E3$z{V|$peqPxjK7qP?;%#V-1!C=i22BF-kDtg|EPEiZU8v7xMwk1 zc)9Rk;i|&fg(-z%{&)GuaT~zI+5b_X>9+L#>3r(9sZFUHQVUZ@qzcK`@E*VylCzV0CnJd$6SpOnCT1mei+>#d zas1YJe|%m;P^2BWm=JL{djorz@QStG$ji+!AoQo$sM+;{Vki!nHPzun;)i%nd z3K&3?cB5Vd2_pTCIC%@}8=yK})qsJxYi;9+I)l?oEL4^Kb@-~$mHah?Wh=L(-9&UlV#y)B52;6|RB0N4z zL>&y>iU?FIa)_-6rXggnsUm~}75pK9i~KDdia!9Ap3Jexh$+~iXW_~r-VmawhvZP8 zKtqlBT#$%bCrVC@DQSQeaepGBXPMVs9Yh0GM43;qv+1j@4x#}ohx?L4XqWaDM}`Vj zdNPwDK!<3Do&f`KQf=cDj-d*HsNFGC!8(R6TxgaE8}}v$RAhNv*5N>*AdDV6nXM>l zp{zPmw{W1Mf9)kRPZ&xxQS+DxpO_|S%_dQ#fEiS$W(EvI^sb5IQ88K!X5q zlI1k*Hbip;AiW0D0xsk5B)c9)+&G@r4fPjRUF#-LT`%Z!y)cG*YA_V8%RvrNRA(T- z)WM{HAIME+R|FEfQTr_%sF2%O$_+B$iJY~s5xrqx& zo_2viMpKdCX5+=zO#-oSts`#uXH=rduCa~=tcW_X0*9z}6QY8F2qhXxCDN?GbCgJ- ziZ;UNnvS3j8gva%EtW?zv1)=oOHG_MFkm1;tUFVzk`tx6Vil+nYYR77(6%__0=fa4 zF5Q673AK$oir-o4?5=U7sbUL*H4d+l99!GC1Lw z&#sK?($ux&Xl{_8$XiS2(fo3l%t2+aP+ z2k7or)LrTmmzk)dV+1W6MZgXXqa6wmT|1;;wL>JYt-d8&U6MrRL&!xB?rhwG+9`-l zeqDuv1IU?Ci-I=PdAND(M^VyIkP{VB-tPIKES-vyyV3Xh{;M@f4i z9Z(}`8{@M1wLp5fJNE_*GDjz6h-8cPN4TAoP72kDD0KpB?jh!O3I!U9i)eAu-y4dP zCWdxNXe2tTZiqVCrBG0UtUNQU5>H3U#$nZ@039pjOQ?)!K*5H*9A&g{smcbqlb9Y8 z5sJfrLVbSA z9(`)2hwL23;lCJQvw@zdrPFKz1QPsHOH|#>Zdaqa6RhgKK%J}bmiFuHM=Rs%DCn|# zP)C6e{mMj6_MZ1Y@*(whQLFGuj4Jj z&qwZ!+#0)}u(Z%!IHzzz;gHzzg$acbg*;*l-pjw1e<8m)e_#H#{B`*&@|FDD{HggP z^ZVs@&u^R0x7$dHsO}+7qgdUd$V)0v$BV0_s))rJskO5WbfFMcx7N^cAIQ6^Y_f#nO8E; zX4Yly$=s6pV&>9JU#2BUx{_Yqj7)w>*<@)SEnyb_r|VC z&rP46J}$N3HhTsb8mll6o?=Hg#8QLh8$@<*7?ki(-+~yws_wBUAgv zwv3HP?VQRa|CW3!`P1Z6vA^MT#9hgol2=9FPcBAO#F?=}lE)f=M}v%^ zzv3@!HHrMH`rUU$XLw2QVsIF-?qAVq3H0}a-gp1YewHfye8Ln53W(eB@3}uj5uf+j z&xI`D;)5+VFJc_as(M0}rSkxTp< zn~QEIEm~ge-+d1TWck4FTZct=<8M5T)`y%Z?^a6~*YiOlw_-{l$^d^DzS<0-o*sP6 zH7xK|lB$2pZ2L*Z{aa>j868E^c(n$}p!}u%t*~LDK>FsVO$M|bKcBM63(*w#{=O+$ zTKeYArsRc0-4OeUwC z;IABO2q?f`xkpeLr2E(Iks9mIRsy6@^#+F<$$=!RL(tY%%02zwlb^Q@fbdiA$uHEu zD&FJ2GsNX+z4!S00XJ-dB?I2;ZwKgo1OBd+0KE^aj(W5H3C-&Jr%@i%rMfsX1!tJ4 zO8A0eWT2CxS@M|~7vy9|tgH#)ma7>!deu}QE0b@of8()2fA~4|+w!6sK3qhdU9XIPrPO%#coJl z^7oh=WaveQ_P1;g3Vye<{`dN~q#tdR8wRH8 zkN8)RnO0-Or-6a#^GEzSNP`f(*AKywDJj0Ex3Wb(ph|&wuTQnjM@`wHP|sN|``s&o zB75;=?KTV(+Qyr2tBy|^Pw&aab=qt#Z<{)`-iq&!%0!2Y(eyt4m$ga*OTD*#VGQfS zs`t(}Z9;j#`(S+VvBd9M8GHckTfs-g@0wz`gck{!_NsrCy$@as5X=6l7u$mH`y!iw z9(TZ}HV;NazxA&4-@GE)NbIZkw~_V4ihrP;HPG7#+`F+B*+OwC&cE$ys?6ky_s5HZ zPg0)sEhC_Xw0-!#$CAcVquvKMTV&}vlRv2^R{X7wsV5TmE0z-b&454o(@=87pL}B| z8G1YUCR^LSviAoxxeQHsO{3~hc+{vgzR-gPyuaQSn#Ck)?vb9^<)k;qR*V@s@RTSnHW~H0MqSCP-hl zOv}Io^kE_Niud6wb!t!wf9AsQH}VJKLw>Z=hp&dyq3T}>k;CWBR${Q&esa(HSJ`{z z!2q?dw8Wp>Va3tg=e_cP{pcC+-rze%I{pNunAMMttt%7`g6>t6Pw)%3A)E_mx zjtuF1a6>4W-xvU8=DZN-Wq;RK>a_6na!|A0f%Lop6N8lZ(s`lJviD|7kg*qEbAnQ+ zA-)&r9mfvurG>`aU}uV&I^b>Csh$DDq(AA5I`zJiKk4*3^*-;VK!GrXR=kfk)$?N1 z_CB<>jr(5sygHN&QGU2}opf)>`*3(D8AJS5p9v-R`CHYea2&2-U?$xjG)1o;KQO?C zLH2%qUqFl|*!y)bbLRxm`{YksMt7t2=6n#;Dg(vULB)D{y-z-{eXPfO`8rD(-K63T z{=rgaufg|+;cwLH|uzD&si!d+-_bFC(wOD)QU=^QXqr zFZABH!PLAPmi{L%*pDhcUNptwFf_hi3ck?xr`}^Y>y~NiNskAgG&u)YGs@r#ep@rz z-G>o=^m7&&?g4!Mz!H{mazT(t9ox!|SXcvcK0Nwcb>y-?!kRXu`Xi1Gaiq8f=kiDAW4WK_zJu8R zb8`D-Kg>RY74~GTq94s%kF|3;{c`%Q^pf<^>FrXlBl7>!)U4D9+zNO{vXnd~IU@15 z#0!Z#6Q4_*hgSiH$A1_9Ui^#k*7!m3Tj_hMJX&W%mMTJ_oJHS(`DdQdbI`Ay`z zShb%V+1~%qf7ZX%hb{C+dhdCU%Rl2tGk^A|ZNh`dbmB6eOzs_WTt^lz?vzbq)SY4w z8{H`ct2?El7pYCCZQ4yd^5URu@W_{ei%4*};RzlUdd$bvHjNffDV)0XqfHTFgW}pvH=H9!&o>_N7pvVOONsb2nFsq7!?Y%skKeG=&J_;vago8 z*Gn5X{Na6__JU}}m6rPKT{xSzHvV*SgmRkv=~7h*MnxtQy}4<)@uwpZc^Z2JpC{8E z!7QrbyyyWHCpAjmQ8NQZeV~tg_)!p*pC&|={G{5ZEtLnh{}4P7Yb;mjv201* zb13xz7u_W#-38OJX8S-OI0X{+La^zsvMgg_vTsBKEfb^^Y^rMsN~n9_+09pm73 z>4iT5#saQYniWI9K!l(p#!0V@*C1%(DVl6{K%(kS zchD3HG)UJI=_*o#bOAKdxXJ!D(h+jlH(P+Kt--Y&Y2+;PG8y7I#E2{KSZ}(L4}rn6>*48*yC(qc2ph zO$AUG+<(xsz!Pg52cod$>;s4uHl;YWJd}hAU|(qo&2$}#syb%6o&t323}ZWFE_;dy zd!(5(=s9(PDm(I=jq=6*g1u_q=fyBz9hFduV+(==6tY)sW0hkVP5=WN)<9Ly8NVk!n{j=Bqt2I zp?>PSoCnr6;w?eE=_#WyGP;LI6wHo^wk<~r&Az4vW z<2$0JaBdo+5!=~_9FNGf(})5@&0w|oCVI6&IBh)VT(gWXWbDs=$E?d9;`#Fj5^?96xYP;`bL^c6sr9^WD4O2yzg6)|9? zcecO| z0fPk$)j09U(a*@dar7ftyA~c8;DIodFNYs_EWD{_2v8-(`!8s67HHhLQ@#PKq;UU* zgmMlMYQfouM6p8sW>Nk4iORU@CpbLl)FY=S7T^cf5r(9Pvyn{p=iYk%t!Vc7?8fXp z*)L_6XD`k!%FfH4o;@aePBvMuZlk^ zY%2UP)0vr_nNds@cgP%s9rR)8Ptxz;oq#9P4`KIwb^3GZKJ1*&OdposJ3S&@NPU|6 z0DgiO3WudOryfe(ky@Rqr7Ee`)Xda0+#tA9Dwq6c@((yS@NE96O#vH{&W?vHN1T z#8$>GjrGOm#ZHeM39rQH*zi~)`l0NiZ;0L-y)}Am^x|kw^!(__(dp5>qPt?tD-!t- z-in{$-onAiHzKPM`|x4pvdE&yoXE_`5s`f&qa#~K68>KcqYG2~w~CJyA1K~lyrFm% z&RU#XJg7LKoqfQ&N;k=QEg|?Xx(g?)O3BxMMm*pK02kw7 zr-^^m0^syN>~z_QQiwSB{e4c@3hzi5vRJEd%WR($>ve#GdHKb4DfD>DFBFfR(D0Ux z6el1*_z?I0&x?o9eD42)fXqU8yRUvXkQ5>!tKOAM00Ol=7TsNS2YYusfLlKKSn! z3w1mi`}uH%3oFpJV}Dp@ANO!#r{dambzZTfz6c~=d9GdzK`iE#AJln6%u(69^1M24 z0C-n^HbjR?SMeUbaqH-wMhtMn(3gi=@A>s@q7z&wg|X+IO~|kcJ3ilxOz;bJZcyur zcjejj(is?l;G3)OsMkVb1ql24R?)FW8r-8`_q*V<;n6)E7=fpUxB>6Ptawk{7ve^t z0={1Y5+LKw^7KPxLy5mj)kA+}^%RSj>Y;DclgiVl2YE`(`9BgYT0lokY_{SU)5a=o|o{C*9)c`qbc*tE=U*xuyfipgK zzWdL3+lm(RCYUqthF06q0`P8Vv9^WL^5{|+n$ERiwIIM|*Xcs>%Evxer#l~^kKWVR z{;_;@^;8Z=EQStuJeF6k96l+)=LD|b`%Yfs5-8c}x;u-X9o-Pv9laK{1Mg?Sp59Ti zEaR>-wA+=(S^@LhyYdKIGCs=#2Y)Tdjv8}tI@L-U=~&cP{TY!Efs%jdst|qbwv78U zltBi()oI%VAklN-SFQEr?YFRi)B3Fp0T9T*v?X;ea1$kL;^S5zyd1qU5W&_OLakV7 zeD{?G{G+!HLwb6^*v~@{Y{6B$H-e6VT-2GeKk-wmG6b=WF=Tx+3}a4g0iR?06!3t^ z{&Rc46I;48{jQ)Ma+ngtF8rZY?Dk3mu~LZT0L$&=N@A3iVS9Hss`sgtAwIF&y2i5- z<78;RF}8{D)musIV$0FxV5(q#f$Ya#2#BFmRuBD6P!jv- zn*nKd((0iI+fube4@Rf`bqKjU{pg_F&eHTijo@V~SEe6Z$LuO6#)rO2(~qg=>q_hy zlt6V%>=a<)vmf0=2U;{UWImAC*$%XFBMkX}E8v)ppVIWBWd9OU_O9H!c%1(}1TI(P zdY4~oisk3Q514Y~*4~4E7bM{<1@?HQ&Paml?YCX{vvTn7>!{`7t4#9(b?Tj_N4Axx z-eKkvco}$!cg6musqqC(zVvCEr&L+|j3ox)PPZz-`RWqy@-Lc(r|42jPL*dU#6g&PqQ42w~Ts{b)G@_III&);eS@}%c4!F&*Qay9O zphB<+GX?_^V7uQ=33%@zQ0ukDr$1vuP&!Je_D>FfmJhlxM5%n{h=7?=`OIAcW=aRO z+2T3H*iQF>Q3IJ?Y^Ra7{Ior^Q-Tbu{rQb1sS#lQT)Iv@I8Jpy}Qm&ifEf%AvL1yIB01V|X-fnN=1qmEb8jEu_UFTFUZqt4O*y2ygikHiV(_j3aa=$8mq?QG0D*&IDRlJ=$ieC^AS%) z%>u6j{yG1`5N4X2_rF&vXUu{>LotNYb2M;32$a2LBaAWtxl}o0W-w(gdCPVQpu_L|2uM=w% zS0~yM`zHMO^YJzDO8kWQ$k@lRAL6F|Ba3$zFDRadw*fvbtSziAEGQgW*dhN;etrJ> zd|&>A{BF5_`3wT`W!_wO8f5y}{<$dzK*i445}^s#s`{>6=_yzd`6P{; zxO~*ykM8~} z4Gb!SYwy~CVt;zaOv zz}FMOhcw9fKRpr5Em1kY%ZuVRox+Vbikee!$R<3}25<-wk##4_#+IT2vteUP;d1U7 z)HMcVMs3qca;u%O&ijQ}{tpims{nZN8Y+CEs4(yBMEMOWOsMEtTZ_CUim8EIKm>=w z5Mvi^u@Eq7h8}c0#u_#;Xn=5d;5AU7VYr;Zs33zB9xeq26cl+JMj5n_9c5Tw_JbH< zav5tIpPU?3+jMMn*injC-!~q+EGlSGG!U>*B5sq$6~a1ia7rW$B_h!CXbtq_%%U;S z6T5r}^c>KFTe#Dgy~A9Jq}SUulH{!fDD_Awb%-YkFykN!=7dMcekDAqynP@%C&V=p z00JrdZgBq+aonPC>{IC+CUl^>&2$I^Qto_@uk&)>5h_YFr<)rv5Ydj)wH?txh}Y1L zgaQrqnGG z;)P8InR=op@+$PkdJ?Sllt*V04?zNF9En%1xsiubdZ(Ac#J_7n?;was=IJ76VopO=8Kk z&Rh>TG7=z=Fy>7((XwXQ;Es7{Jy|y_OZ9YhcXYPkCNqf?s2YO`9iI^BcvE~1>IYvW zikV#7G~V2rLZqf!Q*cpQyt9fsBebGbnpcqCQvIE)qxbyGi>|xm{*-_c8vI(4{f0t1K znT?ryGq+_{WonszL;{?XIXQE9W}nQM%yyYf`XA}{(yymqL@dC%^mlSUO@9^d1zwz9 zm_9Fka(Y^N65;`hCLZ8NsYg=}q`qdN0oqchr;bkTm)aw>T`F08FZogO*U6WX|CM|& z`8B*IaGC!R&KAr~&PpDdoRl1qEG9ll{2}ox+%Nb<;=8%0aN6MdL@iNGv?tC&B*0#Y zk%=wg)%a8VO}shqc>KHZZ@|BCb^OA3PrN1mnfTH11LET)8sJ~C_hYZ;z83pYY$M(y zxHYyac3G?(YmJ=|J2rMeY;0`%SSI?<=zDmf;Kk_oBk}0N(YvExj$SP>0WHzf@M6LK z(LHclDiir9UM_eOzKf?26>wkVj>t`s6_E=g3nFJnj?1lz91z((GQ9W;yt%l(`0e7C zi_7uy;=^SZ^KN>Lo>dT_m)Bc^9Xj)cJ&2oLw=_Tm ziE=C%s60O2@2y^G1Sro%;`@4&m*3t)*!UC1@Z~);-F)y&)T(PtKJ0)Boz;dloQGO< zwMqk*_R)pNLa{p`9Cb^plno(VdE#CBS(`*>W6{EV04IC|dt{+$8tnae*Su;<#8iQ4JwaO8TVd-4-|K+4;#^Av?d{LG*5+eX{5dP@ ziDt1i}(h8><-YMXnPY}T@`Odk0pwE7e0F} z$M~cd|H9x~bZ^ZQYALv}$cPp1!^Kt@-LwaCjE?1DdO%U#V5#%lTY(4?Z5w?0vnO&Z zMUe;gvvjHBuo}xG%t8_&4Cv-c37%2_w9#9!C?E~(^j7o*1h{`%@mp>+omMwg3AwF~ z0@f?ub;sGt$#aK(%jKbOsN{8s#-X*PF_!Qg@46X51rSZ~z)b-`T3Q^z9b=T9VGFEB z)qC%2+&vH)(CY!Ycf)*PM|ZaDpX)bj(eGXTTu`KRIzVKjlqd@r3Q_j{yw+BH0oe8) zI>NFvANik^Gtb1Hj}6-a@0lOlDsg(;@2$8X^bIl3k>j1j=hesFidI`A*%(1HByC{? z_;Xg-!tm*>m=_R(od$9uK!$$%BTo*JX*a!xJ_?edT;B3WgJjCeTfVuTjIP8DR2>Pi zj}C1au{QYTSm-U6*eBr}-~RIRgWNda=`EiXRD>&j08XoCXXz_~-ougBTQNU`Pbt3= z^m(4`^Hy{P=?f&X=G~tfdQc83^PGLu1a-jV-t==d2_3Y*H@#vKdI!8!Uor`}5!PGv zWtC+I`hL}0eV9!G_p7nJO-qR+>d@-L15DIp^*aG(*<1Zqkc6PO)xWKOA?-H-V#!&=jY+=$$tN(6k;L}_Ev890lbG4i@23rsyYPP1sU_veNHP?`#lH&TI zFQ|Mv_{neCS!7-misoA__am5ZZ}qaya`mE7ri3m`V3t`{&`-wN&jsK za&ytU^RtFA4j4$Z^_B6%yYoCFm#&g`CxRR}lj*=#qqj;8EZ_H?(3D8l4rQY@5(QXcOsx1Kb z+2R@I;Vpk6z{lW;{HAU?9rvz%Fu=x5N#6290&IATfGyV#NZ}05dw;z)Ju+i3d4F9! zFZA`=uhbI}Q+Tk7m8cxvaFNs&!8{*h4F}h2Zwqq3U@e!;W+@AjsdzVD6_AG{yc@67 zaRvmjr_QbSk)H%rmy_%M$bSXgbFuFG&(^2cxQY^OSlzF0#2>uD2k&yz&y?0sCFuxWCMM<;{RUS|=>QZp2&aX0E{j3tj29 zd-Abf?{x1mukh9UnfVF%XzpjZ`*WA&&du$c%VvL_9mLB2wCu!e3^(RIkhvz)nmGjV z{qLurLuCKOxD9Ut?!fy+>cP}isq<4?C;yau8qxYyye0UZ;^oCNihCB`D?C{^uW&#i zh4tyOnO=x#jxic+X^yz>JgRAI8wq0 z0f1!xAnZc1U~$cC-WO-*=*HIE^g@RZ8HQ4T4i@$y3l_VP1q%l%f)u7G3*>-g8(0u9 z5GU0(;~MYNz?5Ot*(x<)-5TlEcR5DaHcy7zNp@;w2RH1^G*IP0+;BM1$5}-K2Z&)2 zu-0l4w=@7jEVf{V1slMDIMkW9mBCbD_(!7;zssls_Y#jY`T4j(73(P=)Hnz5T zEPR|I7a%!4P63MRuTAc>g(mDFnt(+qL`Jt>SY`;zQMj_XJ2gQ;#B?;lfVF%+iURGD z%DCkdXv%MglMvFk(7S!S1hMq3I!T;Zzt#;BnmuUQwgTSx>rvCGUUG_ zgs=Qrmk>Hog3S9<^TU6QZ4@*?PC&l)!a_##t;uS zE&exB4Z;a`MU6N6-$*s?=Pyf|_%-MXw$1(@N2+o6Lt+SE4PoW*psU1`KuNpM+3`e} z)#Y$=S+H`5L-*4S1kD<@h6XA&VN(YKJOE)xVxvv4aJ30@+jL~Zl`ic(Ypj`&$C>XL zu+I0GMXbmsc_w%+%&-;{W*a#KtZcV}Z3Agw+dzQ^G0cM)bbGLQf0i>fZV^jE%_Tir z>?Uh(po-Q)G|t(Y(G&_aY=h2`ZE1t$Zi7l*6O6K$p&ZZ>c_^4cTFs}&6$+||$B~DE z!8O^Y*$)p8tfat!ih9dK!6?d*bmVBjN^>>_9oA6xV4G+fI8YJebFRer2&ie$F(h=J z!$2|FpvNf6cN=spVV^b;QrX z>G;Fr`^U#(M|_KTEcVyf+p%B7UWh#!dm#4p*qYciv5RA+SbOa3*zwVU*wolwu~D(D z5w-vK=)1)~6@QJj|1-snIOTq4@n-C6Us7CDY=tLaMsZs7rQ+VjF?b^&U-S!qDZGP| z@-G#>UwEW&SK-Up*}kmMU+5~Fi@oi`3;PsyFYH*rW?%lV`FF9u{onbg@`L$rN4xP( z!1ej7qEF>7#JPj^==%J*(K*rM^0V^C<`0JVVnlve^mW`-_)+e6xtDX#WqHd*{aFw$Bw1>F`nZt?bLV`{42Hce8h9Z^~Yiy$Ejy%*&pY zJqeKx`)0>xcSfv3I_qWrocUem)y$9Z;^F$}H!|OhPRo2XvodpK^t8;ynQHWb%-qb` znVImB9G=-%UJ*#9|HfAY;3;`5dR6qM^uy_U(qBujOkb9+;FZKv(?_PK;0=MT;6M3W z>h09eQctJWr|wRzfhT22sxx&~YDVgy)Y#PasdVxm$+wfQB!7_HjOd3u5dCm@vYc#7 zo`Jg+4@!<6B-x`}w$FyL2E7J@E;BRl$59p)D&mQc3T(?K?ful%Ao9x^=@V|OI zy={UA=O$cVlalnS1Atcmt9^60gVx%<058b(RV#QtXBYcbu2wcF)%o=CuaIzp)^>b& zD};+Sda2J8=GuDUd|tO!f722D$g36(ANBS^rVU4u@sX3Nw$Xo$&xij+S7B>=J9kUq z&wg0^mio=lVWy;h|NaS#k!Wqhui=LF;(q_zqs?!)tG}Hxzag}*Z>7Kc(1Lfwq>d~S zcd2(&L^}HA&m1ShkgrPLCx%fV`U4LIDdqn1^7==05%wt|Gp)ivJI*qqUG=N#XO604 zmdjn-+|abXpIh#*yFA|(ROVEz6A%k`3*je7&Aj?)!c~vFs>m*IB(8;Yug{KVD#-VIxrWOQpB;=fLIV)2YSKjF^4uGJ)SR~KjK zrkLEkVgzk**>L+UC-1x!WsA;lZ$(KYicMj>YUlmsFIqc%LI2C^rLB;L4Y}@&O`<=m zTei`_L|4~B)b!!IlnTzv_F{Vw2i$2}_ywYCTI-1=@4C0^iRio6y%!|*0QKY`k%X@Q zF+&=J5M;s45VXcs^$fkeK-6uG`)6Mg;G=F}7sv(A{`}N{R=;2fDUbN%5mpDFyXq0G79W znJosNxL)7STw%Eaz*{b%N#u$_7X#j(mf1q(rjr{l4sw$T+||F{GAV3(kA5$}@4|uf z6Mq#X%lXI~FRFj{P@6BQe=qFm_uf4spLl`BUwL zh2W4TU*&4&AMB@emCm=d4zw-T4|StX``L=*X*Wa zUB$ohEJY{}R3BFu#$2s=TX}KER5Ltcz+0lmlyPxOZ&Nc3>s0A57$DWAC16sH^TAV< zgL2y(Eub_|eboHwFFmiBFzU?wwUXuK+c%$Ne^>n*-c@2U7R~ybmWKsV^)dUiTAiUI z83xmV^6x~Iu!Q1y=HqZ29rGmls`{7Wh(1R-runnvbg+DZfy5RrDH8EJt?AuUbX zqAH~y*rLhfW&Vc9egoOUin~A<W4N7Q>!VxDv3USyDL=^y-OEC1u#d& zl+fRDp#d&lbh1_jAt3&$z3lIPf8}qL8qC8Ie~rYfAtzoZ={V3L!D64MjA8%6{xr11&9G z6ioh>_|w;zjHUj8MaGWwVrDw?Y$Gjfy5BR`;-GD&*x!{U9Y(zhyqqb?T{8r%s&;x9U_?Hk0`z^Bi98n}vP* zF6qzlKHm-a+CDPfE%i0Nsc%Vj;46A?^0nkG$z1a2LQ0V0vP|M3?wy@uv7u z@m+Ak-;1#;V$);$MQ_2aePg2iqT$H<_&U81U!{X1Vcf{~Bz*4=3~dU%jeGYl3r!Cl zfX|bUg3ku82~Nh%Og{zw7WgC1{h#i>;}+aA-2L1PgxuC2*L43+|N0h|^Cog^MgZ;SC^T@y8)-9?Bg(W5j-VQj zE!?w$j`zVq7^Iekvyy`_Ld5bH;<#vr6F>U&YOewYQ*Lq6RTo*5?Dq)~a`Z1Ok8$~n z6CUF@;9sfr=zyXgqpThS1;>(lG-Lo#Jy_?1-fhnQH#ti#A!&g3(1F!X2b(G?mJ zC|Rn)N}+}h=)r~MxP!crYnFt9X~`b9rOTpceXZ<4aM81NW<5q>S=V3AMLyXWf#S+a zY01b4>UE)BEe~LR^(qmd0fptfnp`viOzE;E)nn?52bZwKc^0_6(+B+PRF{uuq%NnRm%JV@5h)Xgt9U#5un`* zFLVUA-xo{9KqO4>fX${LD2VP+c%fYyhn|%zZ5(=3GJL77nDdw>c$7l)=qAe5#x4L> zry#$;hN|V#TQIn=UVZ`+CPFG;(bd|%Ng%4UeG66B-}T{Y?4;+U>ahhtcxly>2%cCi zZpDE~11Wmr;J~CHWCM%`CQ%gLgaM(k0YXoZvZ9a*e%K?J%N|3Hrd7x&RFzQ=tbuDY zxWc<;8(a-lx#C9f2|{4rB_&s?;W~rI;ILZWh=#~xiR>-d7y28bN7wQ<&_oql-kV!8 zfO`~Ps1NSAKa@g)Nfr%;dZNWZ-F4EDVH<(F9e#DAZa@SGlFea9hSmd$u<}dh(E){O zYN>EVf?3SLtjxyv%KWMl%(b5qh#fGg3wCI<|r&P_>` z1*j6ERH_;!@`pN5QM|+(8!)^pt|EIw*6hz<_DU(wUa5egznQ2#yK?i}8>|^bfMBMB zwYQc*ro6Yts4XY{TTE|_{YY+cGjVxSuw)f*Dg;ytaen<6DqyhnQ&9gxFbw^+?$H5- zZl>6*D<@wD$vG8xo(!HGAMK^~ex4p3P*l%Ja32IowsG+_2uc0!gT5HRhZSBp5$`jA zXn9K=`QK+KiPIcT&>W03+sMJj0FDj6$#fDU8<8IJlsJib5dcFYlb{ihEY#m3ELnws z8DP>!PjPT8wL+n)6*gfQpNX@|FHDdr8sI>eP0>JvLE!GUne}QIO&s!#5z$eBwOwLF zLR4%c8$EhKp3;W_s=Gm%Rf4F68z+V1xLA47kqnIH(xey0ViXo`$k{){3QfyDhF+rT zk^pYymEem39P%9}y)@jXD|=}Y0fLns%U&Adas1$^b-$H)bS=s;D2gEw>8~eCR-Q+b zCpu(IbaNFvEnRsYMV=&KlcJobAp?kx>PYD+;NV%|J%Qw;D!<=nHE)QnL<^|tQV&Zz;QhV4H@5{U|I?ns)6G^ zed$hrWtCLfTOm_Xvr5a0DwI;*TNx@~XmE!Vl~msQu@LOT07NrBSoZD3I<&X)H)C;F z;AvCSUmc|Vl`tS%za>FgN>@1#^pw91Igvj(!hjD@1ID>Ju=6)C@B&dm`&$s(Lj}mR z!u?ocmP0>mDoht-a7zc`&MD3sC;N8x0r>1s$@YcM{>z!WGH2tR-@fTB>DSYD;_LsQ zbeGh}sb^Eyr~dGf4~lOe z`y4m?Umt6U9Ubd~_W*B?wnYz$ZjY1ttFcRcE_S8Yg&zrD7Cs|9GMor~9C|i%O{hL} zWT;#4>)^`ZEy3pC(O6mE8u)YI_c%L$a$vCgsr#UNv3s&Rz}X6s?Vp*h>3{h0Yl5cn z07N|&>YyIK{TeEYJ*2R_5f1Cq(bM3o6XSf{=Qad;2haozIYgKK27;Tj0^$gmaIg8@HtNhHk%H)`i<0*704+h>&grQexM~QkS=UetJ@lUlz{?e zz9_PYPRckkAGS8wlgt;rlKAZjIa3eH?<|!Nw=Zv-pME63FwQidK}cI^80@q(LNn)V zk;T!{_%kwI?GgO7~f;AKn8PF>H#W7UPmJ>!%1iIxiv#@04cQW`1MP`70euk>BlT^BG zWDDs?1q_Ngk=9LlvB_Dk7>}+J^1d`XS16ZId72h889WuJmF;ga9$k5IQfNur+k%HkA6F9TXKfI|z*C-4N3iUVAUpP(VjR}`G>>gijFRy$sX7Sjoo4lN{tZFG|y z!GL~^`Ic#&RKU%8SR) zFG9w0%Q95JklnG&jXp9OtTt*L^C`AH)1<-wi6#y|unW2GCEmOIE zF{vV<1By!ERb@!oP*Dj=)Ut2}Xw#LI#gY|xD1cNL_)$E6p)FZ~oCAu+fh+@BvH}lQ zjt$uSW=YC83R!^%6@ld(ku`x-4*KT<+2Cpj& z)${tYBCxC_GJl2f`Z5+#3+{&*DqwpQmhX#2Fo0MT{~{Pk0Kg1JiW%tSwA2iAZVHKb zaTzLuCw{@kpOvA46HEXXm%#*hMh+-{-=IW*poqPVN!bI1enn83LI)I0b~tLnlEBel zWtI#eW^sG*gAy8NKAO9K7Uzor92GZA2389PXMe>N(Ey|DLyeljxUB3{GpK-}SVK^( zX`G810sO`C=zyYFgHbF?Dl3*H1Bf;LL0AcrEPyKch}V2&Pex8Cf+(WpGgGvX;ryXI)yzJACRQa^S4|U&P-XC01`fYGERB(lb^n-;c0bKnS zqC}MtuXzhE9b5ep66H0&KCDHS4d=uwnqM&jJW)MWtR7Yv&zK|clIpQ^K!+EW_ok0O z*=qhJi>{U~i>|eG(^@bupUFYF7ms;pB5*Gmlnq&j3MN4cNYs-Ou|qKVlt^UhkO+0# zg9c+r;O=h+mJA>&tvf0W*?}WqC6%UBQ)zNxDn!^rM1TsnWwSDuKx0z3PaQ@_~)dr(J`49*-|`Gt0#? zy`XpYzN8jr%VNQMSYi1tSU>cqV&~>xKP-t;J?soUNIoVHf310RK%s}7pat=w%sPr+VV10!?_e_Lb}?C&XD)O=)1mp!6z4JoD^z(0~tCKo18PYzD}lK5NV{zMaY|96aUh_8;{ z0{`~$=3an@V+&)ovBPjPz?aeG(Z$iZ(VmeXB5Na0Mt%$b^ur^&g#Q&@7G4sr4{Z*; z5}Ftq9Eu0m<5s)=RG?*91{5+lRuxu^W`B&OD(neC$ddk8sS4vt zr0l;*SxR8&V8IVCXd1IlXc|HAD$_JE9MqboaTOa%#BwB*$ip@jN+b~s0pi3HM_+Uv z?boyt0UBIb@hi@afdQY=xiM&%6gS~oUYQ#=G$Ch{nJbX6C2FCp%!aCYAA-D+%w|i~^8zT~N}8>u0}6wXxu+ok>8}&ZL4gON^3c&kdO5-E2U;?KJqjxhklCHC zBA3qYbgdZ*)Rjkc9$XqORUnDr1BGz53BjnmK(J_DmJ5*NSz^&b6pOBv6>~6zzYi>W8@g5^7^28SrL{}G6-AZ--xPUJ zVZ{)c`O3!zKFKL%>CD%QQO<+O*%q-(nI0WbD07f>4_@K@7G`8HmLb>Tih~EU_ge;^ z4c5v*$#E?%N^aETw=yLnQ&=nRWr6fFkI2!3sLK=mHmC@V_EW`g4GInE{51~@h$k@!qO!)C0*1X^ka+f?+EkraY@bq~R%9m>kKONEA;nWEFBF^1L=Z`?k*KjNuz=4GoX?z>P3#GP>OzBJI|H3au06e6yA{Fd&jND|z zbG_=R<=-^&M3~0$B<8nGs8cLar zhN}F|R(^c-cN_eKto%BZA1RgmNL5%nV63A`n4toOC4~7<4NyFIUNKC0bd^vZ7*lBZ zFlCS&C9&cru9XU`l+YY;N7uA}u={DS4ZQ!YS^HgM;$FnH3*+1`ZJ3smz6$F*cyDZq ziKZN->pRL%?{Lsm@;$JeZ;zoBm;?HLOEFYcM+@y39hBU`3+5$uZ0UeP4Epw2XoVOC zs>@8x^-a^%-)ng@Y8e@F8@#-hEg9U?p(nX#E( z>F?67rf*E=jraem)Xk};)M0q%ZzJ~qZ^TLY!;@VSpCz76ToeBhxBTB5zbJlMd_+7b zcLFYo)x{2v?H>Iu`d0K$xUc`%XrIXUkvAjvN6w2(jqDfc68~yqDBxIH#gbgJ<{M_{?V&2|-2GX5bj^AfWNk@c>Cf7d70Aiube2XZ zNq(RutBky}O)2Fc>V^tf=nm&ZE{K2|GA&&Y0Szl5%}sR1g{w&uT}^=JzAv&@oAoyu zC4wn*zP%QlXU!{gj^ZdC(8K^|ofe#=avL#7js^fe!n#xj|*DN(o(0YXbl81rE=u<~04&Bt(q<;JyZ zWK!V#mW!^DRFx}6xeTa8bOV80QOZ@fExCjUJ_8D!5vq$}WLBy!5{7e#AZL==d8y|7ZO@|vijo9S5)KR^rC-BJ1PB^-aoEB@ ziXR0yY(bhf5Uv>RU+Bbv9DD-lLT=e75QzK)f|o8f;KPkgHRe;OsZkv?R-7kwjY~_Y zFTW%;yvaljV#T=x)y~<5K?o7zVs^~;Y6S#FB^5{vAei)WLWx_%z^D9Fh@ncsS8zg! zMQAQf6X!QAO9l|1_Z^T+QWEADUWqCf&*tE$d_|iOnr6tCYG>0UM|J4W(2@Z}0eC_O zE-_4s9Q~GHsDNR~cOH5;gDL6ZNJGulG|_#7J)HV(tjHsOT6Gk3JAhcXQO9l{YTg|c_ zsk$y{d`OE9NLJWoGK{_uCt%>gYl>2`W2jX5&TrDr6!3$^$N@)@%8VRDF>+ZP2$SVZ zla-!-TOr4G@V(0+49WfV%X@iAR-M#CC!}CjAV|MXJi6*cp0_p7ZSW)q0EZS<%;Em5 z<^o*Fbk2}(zSH6*aQu!vUGM&1ubGGERrj|+H(9BX{efYHI1!?<4)zg#G?a>C5{=KnaMc} zK_mB)nOQLga42iKOb;y&p#93?N{MEw#hOM#Hk7hrSu%hy3834l)GbQP+7)<-ZoLRC+bJj;a^pr} z`C^YH0|hQ z9X$OiEk#XMf|3ledXHUy^!Rh~JGuLODGlMg3 z`mgD0(x;}YaPt2p+@yDY>V(vQrG;vvCN@7?d6n|5E{@2Hz z#IFCDu`Is&uZhlyj*9LGkN*{sYa-Q=5s^&z=y2E2ze7)iW`_<7?G}7BcsIWKCj@&1 zwgg@c-05ELwzx;QU7fEX(*OUTnVjo?{R=A{c3AA^piyov`Hj@0i}E|qgYpfDNWbze zS%F-kV~>OuQVz6a0P*#`Ko7SltZZmxVjUXi;p7z!uk#!>e)bIH>Nh+kf+yzvXJZ;< zG5+b9&;SX3<@^hLzy&vPl<`p_K%vW>P834>dx7~&Ysm_{k!sP|Mfohwk`*|YLx{{R zi1XW(p(;!~azRn?{4gnIjz@|iA8#hLAb&Z91_&nBScW^Snzf*;{6(;205PL)WlyEU zr4-h01Rh>P8LMLxn){hXW>5`>cOP6o`rrhj2oSOOSb>}S9qKP>IM2pwrB(oz+*OCuwa)Pn>7~E1upcETAP56Xb!VYkb;J22M=WW2qCz zp3$e^yP* zd0q~|0I13+nL!c=vQ>e(ex-A~uofGm5T&e@tYtf%X2Pl?vAk@>2!OK(IJg|*H1_@$ zTe1n|MaU);?uwe(D7Q{S{;{&XU{jUJFJw=Cb|OeIhI3|70%a;mVaQ$z{Uqu<4tk$q zl*s|c--0~4>it+KM@YDct4ukT3?Mp*W6()(){6}dYfS!5!XJeMX!S><)fcH0-QVhc zF@O&%bRGql+-Wn=Y5Vl=cgZb@Q<08@Ncc)d66#HA%rBBZN)wEh1k#_`3MfrbjM6e3 zfie`?l$XI512`JT;cOiCL!jJ%iV*;#aqxtVr4j3|B#*Ap!w5w=Z7EBjmJTS|5zpBe zD4F_=-I4*sLhYeks5N$8GU^CXN1YaqBETL(EHws>rC1UTmez_%%fTFR>@6bxAy0|O z9J7amI7>8cr6scm(zGD-b2Qy3v-KCmk^w~XH~`JVP=G6G9)@h1hh9RzPoWcTkNDh2 zPGsEEH?+goh1BBG*TM*fQuTE~y8Y1P&3sRimNa=U!Zi7r^)ta~=Fme5o%;rN&1p+T zegpmaDHZuKU-S?QBeEaCACfWKGwf<4>`G1~vwx$|{!X_T0e!%(=r-xmfb|=TM+fw< zLg$F!&fFo9di76n!a_v7Vu8af?)ew>WF1kQcrXO-jUgDGx<;F&Q}*-h-?MA7o!KX|f54mcR|jth-i;dp+OqZ8v$7`y9|?RKSc`l7f0f-Q z+dI2m=4ad!@L_OB<}aD$nMX5sW`3KwAk&(u&YYYXlQ{&h)Az~jhFAaooBkrbF8vB_ z?|&e$IDKp2uJmv5MtxhlHhmgy?H`@qFFh!|N4g8{?BA05JoSF+jnt~t6RCSsH>Iw| zYC~&kX6lsG@wjndWU7CvTPm9hC;yxLGPyqaX7a`4G27{&u~xwKJfwZ-Q!*2f!L-n%H^&ymE)Jd>YmYU>s$(bNmV<+0gJV5nU1EXgmgr~E_i*RI^MQw>k3{dpO2{SA z`O(_wsnKzG1#v{Qf3#~f75ORhRpg_{TeuJ5$;clfH%AslE{e3_WW?!_36Ue=Au%Y@ zJ<=t3T*L`~8(0wjEW9pod3a5DWq4`e`S1h5+2K0^uLlnewuTpn7lzLZ&kfHApAAw{cppTrI*VF)1rcRfZm z;iml#_sJP1ginw*_laW-KM5S8{OWNF|6_2g+YyQC+uXy|bq&hlaXqs73CPo%n+?Y{|J-$<@eoIfl|Mz(u315LUqja$i1w zTTwBy+E-v8l-K6(a%qVlX^NbK*t&BMSPQ%j=z;g5JBh+K2H1>(x%aaZyZVeod=;o@rAYg4-$KHB`m{k_Mj9K728!=3DJ z(5Kqpt!}+hQxks5(-SnvcK7%@4Fr{ZoxG+XhT86qzgU|C8d^S&OMlnP9m*1kLM@i( zG&JO1cfRG(>K<>`#9uh^U8Q>vv z;NNnl#}lR?Pf18JT3gLPFCpxt=c^vF)t&o+6$`)Roo%LqV#klQsFwNe&<4wZS58mp z=7pf6VOLu@*oNGe!@Wpw8NAhUfu;97&LYKN`VBNS#Ni%N_S@57o6!G7T8v!iOtw4C zu*AAfyW8-Z7vjU{I~tx?S7Ojw56mRI!~&6>yJ)EeN@H2{jLi(!bN6}0i$lY3hvD{P z>9Fw{K%W{S51O#^^NBVg zg03U)*;5=C0Ao)of*Jj>6=*KH^}B3JJX7tCyvIg0=iI(8*eEvTyQURGh{GMpI#ffS zh@9?4QlT$}j(=tn6EA?QGu;!`s*sPfr%BT2 ztec~)veEhJEiFVtJD#!sCaH*qc4zI6$`ntoAmaO9Dbohj^M<2M3f`o@Bx6$KoDCL( z^426xYRc+-_fM08?d|F6qO3E={u$g!@G;^MEuF1dIS^Jp*Ve;tSXqp)gVWI$A%)FIHGV#{R8VhViE&bPI zgI7wvS#IQ%tK*m4VoJ?QN0UFr7liI_H_2RsUG@pJ0EN@N_ z#_wiR8;iQ~VN;GK=NmIv;~5oao!s!xDKNT@?@VJwfT86^aG2WK4@`;pn9i0VMiBN} z=pyA|2AM@8)s~^&oSJpn?tI_F$O$WDqTB5=eFV501m9Un8B?cVKT?heuj*CABRi$K6a)$%LBOo z@4oB;ywvAp)@2^cT#=cM+y67^kJC%jSEQ%oJAM1qpYVp>=+qv`P05#&cP87Dlal=t z-{D2PdlMHVrkdOTpNn4;Z;p?P4~YE|do^|^zKxHMRYf;N--tedck8A^heZRCHzM~% zE{IHlH^BDcr^CMq&k7$D&fxyP>q2MY6@XB1UGR6oy5Q(wDzG;6Z20rQ!+}czrv~;3 zq}_kH&%2A=I`=Sl2j^eTa`~$&tmGYOJlmlQ9sUIoL&Z7=JOobHwHO}EkoBvwwHT!X zIB<(7vLZaRuoBKQ zIGAB?O(|LEHDp=nZKbPkJ zwT**5a9)8jmg&P#AvxHO1$!Y7Rl;7W;5w_NHpj<_C7)SbPDi>iTt}wDpf381l&&M& z2w6vlaP#crsVk485kYduRqnuI$q;OKVI?+orf>@iNCHcC(=A+}SH3n6-%TMakQ+Cw9T;~7(2xOyQDEZ+o+iwL zIKNRCDquqjEBD8y9SGQIMb?_Rf78w%g#@Vc{ZQxRAb7I&clX5zm3Cj%B6L`BMi$By zGJr6Sk*IMdW~V@={u=k_%5xu6k?6U~H6Tck0fgdtZ5nb>m|yWq1gJ-0<=)~srWpUe zgroyxP+=uDS0+dj8bXObhElcvnOV*KC=_Kc7KK}#tfTUxSUNZZI!vL+3+1kaDjiVR z<4~5`ln=-fdo*MP4iTX0tOBTH0QV}a#L*jUu|qvT`TNMQ5M|qOCho)Mc9cHq3@P;T z3LIY0S%F^)^iDzsbLf6g=pOq*ssX?5l?V`YKTy5d#5DZ6hr3N1uloUn7gx~3hc#UW zk!pq#`$LJif=2eu%T33lgB!%}2i+J_x#?K40{a4p_YLr+TVZ3C3?Nz=4<{;x4E?Rl zP_-Dc`-M4uMKMTIPQ9fQ$JALseok^+(!y{d8a4#C1v6AFfVsN@+$st{!z5X=?E!vD zDKCJb0){rwU7d{7S6W#5-3`!iZ4BV36W)MkY2@o~&K_L_=mr7MpR&r!G-#-Rq3U)= zjUXiim;S+Td6umFx{4m@l2cwF;_4lbONp8b;{WI8y19 z1~V1hfF?5)ldNK+E$Vv{o1x<05K5Z8BVx^pa!gw`v;<81i%mgFK>!F2n498 zZn}dAU7=}#iuBun8oJ7wf~+QWxn)?g@=TH^&xvkhc=PDWlSdDgRAK0rtU$bzh!b=o zVsXTl6Ld5MdMWC2MJr=o6X%rD-?OOlc;65zk_Qk)5k&bbQi%YezvEpN2&2)I^Dr44yL-s*h6l4lUYu6i zQm>|-OFfdhE44UvS!w}p0GN(*07s<`NDWGLPi>!yCVxo&C;5-$->@#QEctNq?&J;0 zE0Y%{+miLkvyu~&M+QbE55V4hufX`^&dCIB4BVXfBJn}u&BW@&(}@QYcOoXM6SgB2Q86Vky9dLBEO346B&qI{v9H5?DB63 ze;R%#{b2ZItcyH=R}Y>E{sZ?T{3d*Hcz(DJ9v3Hv&&*VZCx?&09{;d#754aJp&vs3 z3H>wlZs_$;XJ~2YzR)e$-@hc(5o!pXjvEyZ5A7Ek80r>E1%JtYll?UFU}j8qZT7Y7 z^V!FhYW@WN|x}pAeG3d@jCm-3)PU?r#G`GAJS0uwV$=e(mm} zyDb)LZV3L~V!0`}=ywv5^*C%%Tp#?wiSeu}SF|XdJ3dQ+8t}MzySpU7HNJAGB`k%I zoje3tpucOTXd&&8;X-*9wt+6)d`9%bFSruOAi{YPK3Aax?q2wbB*t7IM2Fd=vB0PG;TL82CCvurnGIgk+@FQ)f%U>8WnGGK-H zO%YQHgw0_0+;Ltc))F^Mc8nzSE!92Vao_Zk2#MWLtUBl2)IT&k1l`5Q7=|$NZx*p4`b;3pkU_EGM#@e>be@o1`fHz_;MgfV%>u;S9MJW0z4C?U4m zMzlJc7n`i1koygp%j&WM3w%q?+5Dl&52bfD|71bfAKk-7w6r;!M;k%-CFpEE(u+bK zN0=z7t;jmnyQz`L`!-S*wy!mjsC6{GCtuWxpb>B}`N@}5WlheeNwHuTD9;VwBP1;G zZ`~+Gkp+I)&w){4oqeKGo7$W$T2?OYf47?yL*A2jWjhRD*?stas7Nj$=X=>z6ytQh z+ucOK2%RlsL~2+q5;@-wF?qB)zeEgUxDjlTJ$9tV3ca&sib;Wj((HeS_DIjVQZ^WYsG-CHpt%6&8%-uOz3rNZG&L(*vUV1dDa?=FOpE+WyV$;B4 zuoY%J(o2e+s7)ih&XBDFiTg@P8qiUo;`WpL8(=)*Foj#@mA=1-h>){&gDAIwo)Htr zYg)V~4ig$H`82>X8JeUiu+6^pGfe?|cD8=0ztOun-yWwBNcHWpq9ZtlF)>n4RK^@) zoXvk%#@dQEe_%u05bk@m1+pHlQt6wVZ-;6&*yeP$exlj1P;VPDC6R~V8!&*hJKr9| zg!Ocr`9OYQH>Xy1FwHKFxSjF0Te~A!py!2@>v3I&{3d-T3Q`Y6%*U?IH_Q?XNbp6G z{sBMnyEds9(7``0Ibo-<3U96>cWi47KTjA!QD83nkMM2+S)4cM=!A45_7mRC+$w)T z_@U#)pw{xfre&tJu8m+Iq!ILf7`{{!Gp~CLnHfB;crb;B#M>fH(|qT{3-lM>J(tJF z>$(4V^=(STHu}GX87BE|&Aq~mTXoKddmA#|`ffF3rhAa}hUqSQ6?cAz0p;A9%MA!S zxF3kAa8eDPk6StzwcFpoFEUB7JHLm@0v{>W7Ir|L57sIcWpO?npjfn-5Br#(c#&Hi zI5^dTB#pNlIBep>{`NOO;y@!`;283p_0O3o=J1}fqK{8M^RvyZ8g71q&mIbjjW$-0^RTQDAu zkWq?J^cx$o-bh1@h#vuBxba?do>sa}gZfIBFHx9841dffg0I9bhBvq2hn;Q{k@v7^ zrbNwd)s9--&2As@E`skUx`z*bRsd%O`zsq7ne&18Wbz6dM9A>V-w4d#RWnAwZRm#Y z!TF4E8~D9;JAT4@;Da{9h&pXC`h|ks78&#if}njrXGbdmT2jBsHW6k*u_H|;%`I+B zoZN^*JtCQS)JQKT9X4h#;vvDd0avhRWb8v*<8RYRan|~@OvnI&1JTpC0|*@qTxZ>< z)iCkWeY?BVOk@ynpZqfgFpjq`6RvKzPaC-iIl(FdGl_9Vi}<;Zrld7K@f6F%c@I2R z|9FT-G_~OOfu^wY=FN8>cuN`K!9@3g$CVL(-meu&ts``|Ng;vXD_=3@yQI6~aF%a# zZ$Cw1WT10z7Z*Slg450=F-?R45rL=)usJM=$dE@dB`&Oja^zeRG-by?V&=gBp$9t6 zU}zC1YI2!;JCSMX5Qc24xb9Kd-*nT+r-0Dr~G-h<=aI3 zJLiw?$3geo;G4ncg7*iP1TP7;1kVVL3mzOCguXW(_%85S;GMvVz@Kmz|E~l2!1Tbx zz!8BFfvUvNbwVEotMVHh_8#k7GIW~AOBN!c3{W&t$|SXoA{#m1qmnKiq`{A!uR`uctv2h zcr^B1>|e39@FsXB_CV~G*j2G}6WLf(qDO36>;!(R#|Gj{J%umzjnVb+GgtwC`@5po ziNF19cpMxT-5=ieyGCQUd+^_p_am=GmPP&;xizvda&}}6ybz9y93+1BvG8|zjo`iT z%UHcwiu(;-3_lURD}1f{abi^Xl5jpeJ3J*kCVWU3Hy z6}mQbaVVesIkiKmI&?y4bZBI#UugS~6Z|UpQKl_Zo0*y!o4h=;Z>C>nmrNx6efr<& z_fz>)A^qp{3+YFbXQ%H;-;lmMeRjGIw=IlKAC$T_br)7-x~0>ppHp9@K1$6>?T51w zovD*jkEV`J^-tE}?S%=+QOSK0UnU16cf+d6_wKie58;imLNtFZPCGOuhSt`icj6>z zCimLmKo1|2r%f1-0X4REI2$%L8$ul&C*e@?1Fa1S5XOhsmH)MPYHNmj^%WoV6btwMaYxpBB^8op(YJ z4+C`8P4tDE<~bXFD5eKP5ag(YWQcVf=b6nO9{zN#&X*5)>=Aape9%h{U7`k_kxrAz z>vPW2Usy0tS~$;$pP|G-lBfS;Idjbfiy*re!LW$xVaD>+!%Dt*HL0_<;31(xw`~^> zi9x=4h?R(wa||lI+;p&8K$3#cKF!OOb>jAzVCx8T0eH-Ixb;69Q$Ujjg`|dJD;Mu) zSI)HvOX~C|af~xThJWqlff|KK!*>eq$yUT=Xc`jgJ?}gt^DCt~KNY+raLGiqzU37W z&x|=6VqOs&TAU40PiA;e!m-X-w%jW;C}=HPAMz0}eyYqVI{?rSo7w&vu-ts;nl&8 z=RU)k?jY{CKNv~tv`-xQo(0dv1j8Nqt_{+(+-8|@Gap(~^E%6kHnHMX%Za}4Fj85J zA(oAN&1IGmyM4FqI1fzoaK}Bs*@}Q$oE74nC;?1%d;HytYIb{g0-)_VYZiJ;DZ!d6 zJ*E`Foh5$K!iOTPxUGnW^s`R2LDUdB*Tpt5f=FC@XE7S++Bx`_vXig<1+rEtaV+H- z#Yo6m-OXczoU3>DBKgr!74#yZ$tqdP7Cxe%nw>l_D#fjlb!3gkWbmc#UM$?Hoi9DZ zpbNG0l`Jd@820|vVTrSx7(-qf&f6ciU3VR9n&DwK8es&*Sr@731;T~W>$WVr(z9&z z^_*TjV@iNd5upc?Z#!|MsJFvX9jpsFdD@l}?i9|Nr))Nyg1ECzHazPPWRL!4%0t&T zIxBu(MAt)uvfzd+=0K>tv*K!lox^th>TisZ%;A<<&Ux)%la}5`Ip-x==3{|i1(+5L z8Dz&;c7iA&j_aLjIN%v)npw|LMmRp}+>+~X2Y+L1M+kUg#~r-M4?&v2UwZ^jigIpT zoSa3G%*0vUX?d`obMQkx?Mss_I%G4o2f7psbQm&Gn54{VCPoNix*f zG}r114+_Cw`LSZK9^T1UnYj~3W}SDq(8l6^Hkunp?&7{Snw5eHr|k~0pTgiR z$m>@oFASdZ&bI~!v|D|MO-#w)5G~sig62xa1ut4KkDgTTY%}H{>Q?V!gBYN&JkeeZ zf^#o#gyqsI7RAPxN|kLM0OpSK@JR2h^Gb>DcSP6hXC>n?4s`2R6ya>l`}%^IM_+CQ z1=?9BU+XLddenZVd&RfD^WyUs2J3diBfJp4wa0qXB&yjxUQUaW2c~uI@wa+hTHNs7 zwkWW1T35vjw&RS}e~8oqwRs9jCXP)v`av?0A05Sv{&4nR8Yj zVhao7hOygE68QiD*!Ip6cGg|wrKMhF^;j6Ux--7@qp) z|eqeEF`Im`5+1FTG*C zo`*-}=&xYW{+)HVd0@11Ox_%9N}zU=($QQ18*-(_CK3xKn5 zihuj`XZSw7CEb`lIK5Nqi`25zqSUn1{;BPfUnG|&uf~`EsN}AR4cN!O1K;`M68+*E zagP3q_*wCh@mTDm*t6JKpB+0mwoCMz=*u_-zaTm(@?&HT&bnWS-S533;qdzKQ{k(^ z)580Qv!Q>5p2S!5siD0?(clNcM}wE+6~NsCn*y%~?h2e8m=x$A2)XaN54-2N$GJN> zUqNX8`TzAOtU8d+bv0 z60Rli*)gK|onH(UMHo<6wU6AvqHN3VU=iWr1PP|_c!Jt+uLmv}--g;q1H1l(ReRH; z1pdo>zJrpMc$8Q=pnVIghQr^-K#BDGJ6W;xwb7@rB{J)e+QYCm>p^0 z1r_f}6{AP1gm~EvWOn!v1(VY3K-27afh6i;0P12EA9XPN{B_~cwFv#GIXG?_;Y#Yl zkO2hGeym?ojE?<0J-YIwE2$w-)(W1Oh$*lSfOzqNxt9Yi8NgwMRaLyp33ts9%DETO zJDR3_`n3zwC2>eHq_CbBYEz07rb3;{`>1GPAWH=G$>GJ3= zoFyxePwgtDvT%}Kv@o!+syp4wt(P?A^!s=fBfu5aKsVEB5JdoB{ng;nwLo+;RRPG< zUm!yT4E^2i=;1gAvJwkxuw;~_u($jzUvM+X$GdpDHZkcjjv$dVOECsW>S zwT(t=$pE5e=wzyt@`4zu!r)|jsN7sD68g()sDPp0+X?+1i$-20{hkoT`8zKUz9MJ7 znl=Na#%NHcLPG^hm?3@tgg{h@@1Ih|e>7JsTv3PHLz#4zgxOa-zU$G!8I^-q)Zn3L zaQ@0sq87Xhq@>%Qa`PA5Pys{5WT9`Uo84h~#aOatn&AjYM|Q&enJQ61X@F+)@IpCA zi2$LbDU?)i+*f9Pv+?LEU6Rd(SMgU$XUPDf{t~D^iz=x2#j{LYZYO_BYdF1i&bG1O-=GWx+kVLiq?9N!;gQ zkK)&nM+bCJVO0n&=^#-CqjIPM_j0$0EPbXbVc)bu<`Z8SC=8r!F^ z3NKke7WA=nAnoaOv2wzVRCR@($9o}p1g%M4BZU%OC=oYk8?pRKG*m4tuVJp{*bO8N z$6r{F4k+B;c?~l=DueX*BbE#xym3~92O{xPUL7A#Z1q_wdh{}Qqqgp6vNo5(bS6RH7 z56Zw5&3Hw_Bq$k5l&Z~69|6W;p?c05S?ge5GO;90MddZk9Jm$a7u8U;@VI_dUM7_B z0o?qBXXOZ8p|yZQ8n9HJeyB$W6h=^^Mj%iyEweo#1BhCkjf&!ZlAfUciYi6`jKd+b za5%)HfvvxD!+U*(i#hMwST}7pkKrN{Uf4X1UATN`BVkD0SbZxe#7D_Au@{nvSp;4MGQcN?pqnt}p(00gK8@k>E3){in z%(NX%P;NVdms7*?R1j?VOfd{@d6u8u(G%Z1yORhU;%o|Zak8&upTNC;H;G4hQ+9gx z#O#sqd4DrIGTSe^b2b`0II}hLd2noIZRVBC)0qb{x8cUWi||U|?97zRn81d>Pk}#U z#b9WrdnOzBAQMP$!OeevPrsgCo_;KS7hVy#Bt1VpC%8v&NP2ww@bt)Z|MafugzRpA zoO(C)YUuYk`+sceS==&kXX@I(?SY3Qbkr#-t7jJr(GZ8kXuETASKF^hGKd zdNuSt?jiUz`Hq}9cnJ3qT$3!|CctX=A{?3AH`yP1;;F#t@JIMM@sGq?iB*Xw6Za)< zOk9!ZNYvrBf-#9h@n%7<#7>E5{D=6L@ekvFiN6qkEPhY?#`wZeG8_$E5*QU)96vAA z7F-XHgxT>^;}haX!Y5%*_#~uaKgTx2*2mW1CcsBycf}URE{mNVYmQY1E(rW4)D?FD z9vj*d>mGZ>s$#pu(zp-s+vq3J_k#1IuSH*oJ{0|3^!n)KJUz*w;(Fj6Vq8Au6`$jBNpMAD19Ofbjw)>(9my4W`THx;4c_W)NR>*&Lox$@p z4=5x5y($;4{NUOQAdP-barEA^qd8QQD0kWOg<?ajS`LXpx{?hJ^gFuYjs`Z?yG>FoWw%YN`g| z>u<7U;WC$d{f#y+ja_8W$eNB=i)B-u%(2>v;OE?t(7e=F3nxu3<&Fty;$;S&i+^o- zQeyX7*|!k@6ol~9Vl++l6ss7N$Gukkq$NW__rWo=075N8;e6JWzql&g8=EZMG{De9 zcyy1U=3HAJTxPbj{BG?z-xLL%E=zi@>^~3&DG(G-d=tdV_n=0v2b(*}f!JG&B4EAw!Ps;VMIeyN5AO7km;|}OVd@pN9kS|Bp6%H%86@=RrMB(5Q2?H!|>M}bfwK7EpO0OHWl}adR}T%!PXFzeQV~3 zJW!73OuM4LkXA{s&hW)H#farNaY^~K8Mcpj(9~pOYwtRf3!I>G`Ms8SA*|n5U1{>f zn9E4)07x--ggjT(YGh?EvFAn`#V%ye|9DX?tqYcVQIKrGlf|f(1y5KJn_3n;=0!B+ z2A^USNJmE&?*$8N%=K=!Kr9UR?(ia7d(XESAysa$Z3uF*$@%3qTjIvvZN~N*dmn33 z!&#wsU&9u=$obxIbr!3KBYy`j9+Jj^7L@PEc>#2_Eha;@#C*p*FHLJl*5uaE(vh(s zXr{H}c$*$hY8_L&C~VqwVBcSCh(i*P<9v~=9b=94HDIoqcSpZ!^ur+9+vq=AwvElX z-m(jW%BIH#`%KsN$qf+H`CKl>WHk0zK0n(uOn6bTOLl&F&T?sf!lvAw^Sl`LAWvHsFl_*>cDc8{Cq`4LCInFHdv+KFGRU4Ve!Z8rWnP<`e$ChNbd&a=1!^r?l(W2YgL6d+&<#RVknod!XCHE!Tpi;5kL8Y zh{g7oG*v8|x8?_m*SRolb>6Y|jBT@y-ZyzTY~%H|og@7bkUfSPlLchU4;0@R;li>y zKVM`^!g+)9^Mzf4z1hdqi`nJ!123>egJ}^^EDgd7FljN&X?P1dJV6j#VB0u&H7#hf zHQ4C9(_~={`Hqg>11%3UU<3zwkx9g{ppa47GRWr+9#dRdd%bGQ!5xFPUawjH*yrr^l5L0ez0iM3+o?nUaL_7a z&RCO1=w-tjp`j0ZF~r$VQuIdewcP*4%1-BA04a|r!u8nxd z9nv716eNHfi71te{3lZl)D1z5%aB2Z7*AE++>!wk?nwYjS zSp1v>jDlhqeZ-2(iAh@@an+D$aSRC_F`gof6Km-HfKJ~yo>MuXK{}F&dhb0i!<}!+kQr7JZ=gYo~eRwdoulV z`kVBp>G$E;&M*Hzq;F3D1~>kEY=<^5y>%-W25B0BB zz%Sx`+~2<}^rz76INN`5Xnv>;clS>U9Thq-G&EEd+6CX>KLs}i*9YGUt`086I>9Z$ zMZt4}4Z$;mlW>pXesJyW9^5V%3T(wX&HBLGffoZy1NQ}P30xI8KadN|#_fuuaGqm; z*$mMC*nDQx;_IpjE^W__2C?r9eA(tt#WbZWV%V&3<+2=+(vT~Ts!YQ}NYCauI!TPX z=wsR(f5QS#?aAIp1E-2Jr2IxRyl=E-%0>oDoq*jXlPZ@VEiO5VgcDf6L&B=vDTA#{ z5*o1GqFEz!mQ4jgLo#0nQ^=E_h|dqHEJ%=Z`<-L7 zrt%{E5|u2_~KBGVj081EP=%WCSG( z)^iuF00fY%#$<+oq!WjKK_cuf=zHbuX!pTo+(vSp9SSNdWd4S+v=ct8CyaMEA21)Nm z#T}Ku*{IwLjj{6Z`h0irJ626i9qx9R2#6&$@uvGTZ5~ZI9-J3&7FC8q( zy-ijSB@5`@b!19rg82!uzN#Sz?yUHi(T3DaK0iUeY)pJEKj9-^G^Ch-b3~$Sz+u?A z3G&^faQ1+?2^VRBsu-_>^eh~p@Y+SyNod49QazmK$FU z=q#Nra`pp>7{sj%2@i`i^55eEbP<*v*5vhSi2V3K=p!R7`k>fSBP}X_(vz0n;{5wX zD+SIue_ybiaa!B?+qeBGFQVNnRwp|g3Twts|JNLcewIk%5^y!@~MD?=PNc(eEx zxmtz4Q5{=wh@bYzZ^J3Ll3fHxzn-6xHe$%_BVA4LS?lON4)g`V1C_1m5If!}#-<(!Ws#j4Q1zx3pRj{fasB6W3x+B4YD zeDmX<*Um%3Bw%q==2!x7!?L*|oN=d7_yvnbEV_sMgq^nw_7R;3fs|d0a?v1w!DT!@ zZPxCXAKaukKW#FKY-pN42IrGSA()@dAM1D#xiRtyi;QVFV>X-8ifv5BH3TLNdb1B~ zn#TOpvuyB_j~fRG&1MsnQS@X-LRW30U)u&+r2V{AV~mgtGX*H*hbbvvz31UYw^ zxV9KXm)njN8cxM{J9XZjDxcs8&CRzTb(4_^_iJ>&&dA-IJ8F^17xOr`J1*Uk@-(*| zh09A=Cp-?3pL&cJfTa%5y5j;LqK?(+ZhiAnzt)PwgF+oAbvKzc;dD-i$w6-DxXVW1 z5(Hy5Si5VV{I-#sy^0$;*c1v?$@?vq6oVXAlZtjjhZv!oT91p{tk5gG_gBjj zayswHNn0l3kclp0s$6(N0xpK=v(hGnc76werRZo8Z70foTmplFez(As9Z`t;!sfsm z7e-uTrIf2m`pQ`(Nhp_6eCWl>JrY=G)I3m#FZu0GxCklmWl9^^O7DaZi{n3kV#uU5nTrU?)3$XcRIPu9%z$urEfngWvd$tgNx1n$i{uSR>zWeTrOxfqeVy1@v8L?i z>=)Vhvwz8UM%P6D9_y2RAbUrA*X;G#E3@Zjo3dwQ$7e@nhvW6Xow5;}68J3hPUgkT z(#(CCn=)5s&dD@J@5-DR+bJ_Kb9iP1Rs(j*gwtDNow0wU|CN3>{Yv`T=%eXB;xxfk z>GSaYd|i5OY(jcQdQ$p`^gii+=^fMI==Z73sZUeyq+U)voq8a3i@X8Y61yQaBXweI zcx+Va*wi7Zy;8kXJEaoIACnuCA12>Ou1r1=%|#2zdvI=lVe;H$b8?2f1~@7?5+~z# zPp0Kg0{8&LzD_K~TY$GEev`NuF9FuZ{u+BMaa!!2#Dv7*vQE$)F9N#J6QeU@3*wvO z|BA1T#jsxRyxuYxUl>0(-WWeKx-V|}TNytwer#-E{7~F5*e9_n?!>M8NXaMk{{sKh z!2dMxKMnj(1OKmSfU5@8)w1M(GtW=TLX?IX>}{ek+~aC!_p!ws?GcSIgV%AAUR{lw zyG{JQiWdR_BNacJhbIy2W`cA#Y;zxZOOs11zK`5H4&=m*x#!(m{5&Fo}3qOY&Ge!o?uG~ghuoJ%c zDy^4~YZS2#xLG@xWOYzqt2=9ZPap8h0(h3(tw6AZvPOG!a7ARsB<5Fp-kmYf&;A8e6}2x4P1umUM1 z(sh|u+4w`o_&SBcZt^0rI@Dfsvnei$k9r&E3$@O{XP>ByadTv;hg|CFT5Iw0rRWcV z+TpR__S9d^r796_FK>6J;g&EWYHC~aIb$(!;%;}AE>ltI(TxyXx2SD2d^lvytuq`D zazjU1ATK9eDtn{?lyu_c#UMU`okwrA>9EWGsIdq*&!c>~V^z}#iCE(F#&kFw<*Z5C zED&_o;Nd(P|LmsrCfp^+lFx>fwl(1qOUlSVYg^O9CW;2vbf%VaHUdp&XyweVZFg>i z46G0I5xg-Hs{!o&7-FLrr$Y&1mE-t!FA@tx?vT5@lzde*u9bz9Scz$Cz1WMSJAqvH zK|WYLg5hD=Li3cxqz#rW4jf?N`;B6d5_x?XKadcXg(I>;Ux@nxJf<$dPj7pdz-W*ICo-nkkU%^x7KzR(>6BM%F>ynt%bz5$yGKQ zgd&~0aSKFGYD!eq)LP%n#WaRl3$Uiz70PWE7LoG#oUFuGS2KhKh}=`!pk`sG(7EPw z6$1e*XtuR%RL&BFCt!ehVYPzy!~!C{*1EE=g~v{aP^0`;*(u31205z|>H z{&yH1+uNq<2r@IDJ6xOPOmrkiYIB>3aW_8~GpeKv?fGN0yvJ4%#$$R@+HIiKG>?H=V!alYXB|3|WyW%tXbGM{JWV@Kb`H~YisOVcy4 zXTJl!%9r6zx`x!DsdVz6$!C&_lCzTsC-+GFH}N+1-LFVgCk{xY;vd6@{sw#{cgHUJ ztFiN9gQHuctD=jdbE2c7-6NYLuSD*M%)_ns-NReMe-8gKd^ujMKQO!#_PE~&J%Cr~ zPs162U4vf-Ukct4oFAMV92yJ<-k10P&J64oh`Q_Dr`+GV4Q>wzT>kfeoMH|ytnP~Q z`8X#tF=Hl^Fpd9sjiKTcMQpOupD^%N)+I2d z0@kardKVlz(R5{pPLv2xRbjOpbmftp$}E+tu$`DCYzGsYa>(8HgTqjLB#~uF z=?xh`R3KWIRG`4@vJZ}^M_Bkq76u@+)Puzs$g2cITObGu=c_2w6;+<4B?Aa^h(m*h z0(O4WGF0Uk1HWn0XRxBnE6|daUljb5QhqMTPyyScusVWQ;K&Vm`d@(~34k7j)nS}X zL#d?>{AbgIrZRZ&PD)?Q_*c`nK*yPA_>;t zGCjIN=Lr-w2`t%`LJb{IoNLdEVS7k_kqpzE^2`ZOEqf(TLsy=y!c#~@mhx0GfVj4! zg>_;yUQ#DTmCuEd69PUZMoyX-`E;JW?p;{b9Nd1i;)+TfurMgFU~4T=xO%1uqtrC? zMA&{N%aT#b(q)vI)-bcx941`FgQzAFX-WJ7^|WQi{;e4>=IR4Q1; zk9PV>qXvv9e}kOHmPX?rTv$~T-0>u40Z3P`Rpb3A(pVGtUn)di8AavJ4t6aAG+ z0~Q8YYk}5Ulo-Z03x>kGIAGA_y{aW6@5}(100>2Je$^N%U}z%Muu&W}hSIff@!P#e z2NcSl0nI3~yq`8yz)*ow)||?VVyJ-OI)~Fy$y|1lto@a&L~R!Y@vxd9E6m73bJU$3uC-4 zgk%Mt03d2gwz|R6542fs+AMW?X z01iW#C^l{7C~YM|Re2{sUa9lSf?2Wx$BPC~rIkQ!cA^1T_VKW69vsJhajm|Xq*ELr&-4Sqrq>HPc*6|l^0(!r_nDV`r@sG9AOtPyF7 z7567uvSvG)ngbAvfMxs)6|n4C&T+Q6GuP6V%#taHqXP_C_3H;I5g^pTC~5AMbs*^g zLB$`&ipQgl_yqBSts-M|Hs~&K-*PS`QGQ;)AvZcgy`w`$MUK3#i7?c&;w)qksgiJSVTs%KUAsr-^%@^7n*F$2&nf4}^Z z^6lkI%LlUeeQW97(q!pmM*sg_{BrRfe6Q}*!sCU%4gYQ{9LIFzPlvuV^e%R&FC01~ z|3d!T`TO&?=4_i?_Mjwt!pwWzVZe!y}U{44AHY$OL z>W0SY2q?6<-N#nwb_p`z$xU_d0&Ly8krkX|wVv8z>Zx(t(li6AfFhW|{Bm6>!LZx9 zYN^4zqn@u(>t-_ky20w1_?gOxR|G^R(dLXTm!xM{=}C$+ zl^z3059WUzW~bQ-iZk2CNMMMa**UeZ!z2=(oNsKO3G75oYZ)@|{ojCk#8;a<1af?8 zK%T=8ndZ4l9VTgq;>$YN9_}))3~AI&(gQM0f*dR|uLv?VMK_&H!(HafgG`|5WD16O zVE3`hHSE=#f^M%<)r`9f{TGlA?LKyyt|Ej?NoY<=^uDL(D#GX$0jPDC(rE%!nIK>M zxYHE9fldZ5Q3gX|M2@>7J=`T~QHq-ydndRJidhby8d*gRrg+Y^^eahZAX7Y8kmJawf}Vr@B@oQG z-X$Jt&u$ut})IyuX9f=Za7Q6>j;(tkw&baH0U2>}8>Wh2U`zwtDm5z?$E zr%AJ5PxI-PX02up)5(cQ;hQrLZ|ydLd3v{_Lsl>pPMuNYapY?x+U^EZn}Rt%4O7vn_B zi!E9X7K_6~LLEQB>bM($#gnSGs!JG-&0J%k#|NpJ?Hed;sK7|YK#xnb9wr)NpX3%q zgXYv@MNKe-rl<)HmFSO23TV3MWtK_wM=l!LCPQ&$V8ailp74@aX5;UvO-ix463+Snv zOX~c!cZ%ZF^>EkGq0*5>F<`F=4DsadV}}%WzuD@P=_u~3c~zTG1zWLfk~&Ovu1t+Vg)HXr2E*xOfaf|$V_U2Q5a)6@~=PA1AP3zLGlCaD4J#n<|v87f)11g zX^#q9d=QHF;S^_|4Ip+Xd&ao1VR}NV5khx)z z`(u%|dW5*xA`OFr+00h0<0C3M(K1l$5*#WuSyw+NR0PJxo4^opPqT1OzC=f}A)&E* z>c4QQ`%0=Uv>7!eHNc+InMx`CiX9C$dl#Ef4~I(6dLMe$B*~Xu;-0mGkT7`F@gy8+ zOqEcATM23DcwD#BqJzCn2Z(mrsnjZIz@A!N`b@Tzh=C@oheJi?o~{9-X7w5*IB}02 z(JVd{xe>8=#{Z>zawiskl`DU+e0*tb>B7>i;-89}i}&#b`IC!#6n@qD7T<}#t#eBI zo9z#_U)8>r6aJrTy|Hy&Ykrg2K)y=1UE`;Xe_%dfs&R5-kNU6boA~bE9rdf~N7{aX zM{2Le6%8TvxysmiC=6|kJ0^s~x;=8JsO{wtJ+HZ%HPGBh{;r~KCZ zyYnmaC+1tZ?*#AjKmBu9cf%RFRh%hEZLmm&`l(yR<98_I(C&uQtt;OTf{N2!`Ti>p zaGC}1EgTHuHJVBX=)WSsf!z(KV(-I?gwp7$zY^Pf|Ak9GB}z`1t4K@tRBtU>3Y_NTLn@m+j~K7PSor~5+vo~95olG0MxgmyBkiRJEa%yoKoGX z0FxW~Y|BPNcZ#6Yf|0prbT=Gd-1YXdvryXMQ5zRf;+hy4U&cz9en^I5ADK`NHTff1 zh&rOX;W#FZG}1El?-NUM6gurh5TJ0n8WzhqR+bSGYE!W(%jmtJMIzkM_>jNMl2QKFKL1}lOI9Av-5aKcyfd5{MfAGj&|aabAx$``y2lNe zgV+nCOKn8*U(b?3(@pmZW^G2Q#yM)H{=YLz*8B(Nm;b++CBvW5-(ne@MQw93DSsAV z_h&1Hr&J$ib~hY|^0c5mpgadr-i+>sIdqNe83o5(Bg3E|=K$m|>SFAhDFg?dw7-$U zQg>WZD$bR1;YiY2hMuR9B+yf|A1N|YCPjupIiR~?7M%(lE}M`CI~6?~DxPOwJdZ(m z&Ve?m|H9>}Yn5Qx@pcb~inG~AjfE|)x!9DG>b-C$wRCEddl)Gc{QeADFsLyGywsDm?ofMC{i4FCbHByGgl5_9=?E-`c~Sx@({!){>c}8V(f&?LxkT zHkF}RK?&@{oux^l#}2Z@1cpf7wfE2w@nY8$P^W3{A&nkN%hCc0jrz5NtT~Y4`em3? zwht6luPjA%f?U2RBwl^vOfHoK!A{&R5T&7Mh=L)K%Z^G|L9Ho|a~V)*c%8QOqLORc zQ(nilp|K?m{!;I4U|;&UhQA{I*uES@EF^6;bTws24tic1tS(ATQ2ISXRu_fYP;_)D zbqeihyWwzHQpjXFfj!gOZWs`Fai#+bZBBPXl|4R7LJdjn@iEZWIF?wak+>_wZ9U#W zvr1ruqRBFvbVT-&(qw>5lS@Lsvh^>yN$Gw`Vz8+Y0S+Nt_w>e2D(pICuN1|Barewo znmG0EmQ3l#vL#IPTBEnbzrTfdDp(syHYFg_MhZ>n>ee07-7v(QK_I8*44hhAvJ5S0 z&VUFtH?twHdc9SphLThvzBAEO*s)5CrHzNo zh1Z>tGP}8?#52_pVhxue={rk74F2p zyLLnMjB2Oy{mS3*^}Y)#Gs@4EKiBzs=e?cfofo(N+iO6hBSJgeo#U4r{k!t96hR(>uG7-kEK!*YrP`OZCorFRXWl zWcE{QT5EoH!z#^%S&q!y({o_~PqMVgb`B8PN{h_ZGfiaSMK3b<*2i}@jI$Esky-sn zt;8g_sd5qXZkl~%B}S<=RT7?UuH#INOTMB_hYvV`#@LBI&ZKWYyu3GN#t3m~$SlEA zW)@%>*9cKATa=iYZEB}mvm7tP(Mr=&?1c=Y42pN#<{&*HJJoy(vsPhD>7Zp?W+NNr zLflk4hXWAov9lLNj^%>xhNaAC?CS3baa?4M+Pp#tY-TtptvoU|Ofz8SWD=Osuy<}( z+Tdc^7&S-7kY+kZXE3Q4TQ)kZjmcK&_%@5uL$kTWJeWu%C)I9fXr}Bki!$claw&Ck zmzfLq)ty**O!Hdz3<_%~SJ?_W0%PMX8Aumo`7(33rO9P}9A&TWhDA(+O9VmUX>dW5 zNcCp>l%wWu#E9cH3<_Rh7_Y#iu9~qL8heEv4wXz_$4JIcor$gL9FJt8H_#a?T+3L2 z-kr-9J02_aUqGfFUPC>MsHu9G;AYRGcy$e z*?*bf{r~v{Z~f}rbL!S%P*yWiKEYA*31Na4`WMyaL!YLf6<{o6x(VLq5xG154^8kQ z>gfNgCwQrc%uA^nTIVKJ4|^{{Jsh6me7U>lqqK5>7QF&zJyrAu2Z0}XvAV6eZFiKh z9|KKHR4tHOvlMJCMO9?Np<)e}(ec|o;gW#kqn5Us;N)>+e3T)8 z+PUiZ@B|{%MA8SOowfA{IxeH*!@dELj>}=b1w~QG1*bYLo-ei6)iKtq>6z(g2(J#q z%ex!qV($leSrA+oIP1Tw-^!OB9i?t1QJ2StCw(1bjIAcN#Gyt!bO^?2&O=4C{VmNc z)@@O>MRKa!BFtwUe3#0GL+EL1(m~e=LXLad35*s`?rwN_VfUL=hcR1thk9x)xs?D@ zwNcPYs<&10(Pb+Ym*!OjlIiyTxlx)#awjPglQlQPgQiyc2#i3seWDk2x@+ZdFB*-m z&ggEqRKBDaBDGkQ1SpSAESp@ZHKNgpm8O;Q1ov(97K>=iY+6P~I6|e%?!-)B6vP~g zj&KAdtH}h0NbS*{K2+9kiR0SSf8kOubg7BnKz=VH>L&DlY2hNT_Qy5p;AGd-2My5M13AIeIh733p42m~-y1E#oTTIxs-e`}1ITwbL(& zjQ+~mwjgbhSs;Z;FGxr4Jjhx7AaaK0(x(aH?+8MlQ~Ucu>IL1t*^A+)tYFX(b~QF^X8+?w>8I_CpC9({IapR z@wUd*jU%{U?_aok|E+vg@AP`R_EYZHzq>Y4JHEDC^*^d#G_dgb2A zD=HUO4&ZM5r^_EJ|8@DA@?qs>Y476m#Vd>Z7kirU0Q$V7o%&7OmhqruO*N3-+`!ZfWyjHN3mrrnOCDzbhX!1zITN8l$ApGrww^6L8 zFcm(*38eLA1?z`bD?xah4AoSlVoy(o8jAlK<71?XSwGDAYM3TjnrYam<2h>8Oh7!- z;2_$eV02=MXZi|?CUyk@l@dRgTdNVGXkw*$gN|AwG`7ZeKtexLQKR$0s10E<54c!=Yk2r(!w*%1*c@uoF)S#2_;Et0D@9h-yxjGc`m4 zW7Px{TJcr6^T`Ieu<9RY!!S|4YKLxl%s8Ss96k_e6Y^s=0XDb0k&UPF=BQfkA=Tss z*qXet-u{h^Y&X4JlShbBkW|Z>;BH-04DEcdxseSSC+elIWyP5bC@C+Uk-L!@d0VTN z(cxBS=_orZ=j=Ub)V~qP&My$Z&5=mf} zH#b-xL?Vvm1)kFmO=trX@J6!5BC%vObQbSW}LzV_NcWzlp>Wo z7)YU^&`>#h6j=Na04rq>j=Dkk$bpp3k#!T1G?evcJ={}zfUMi8S$~$mPTb#&Y;c}Z zk@!5N?`z&TTNV^HQ>H9P7_vy8npG&a2BBs6xc2pMk9HR63s82!K7n24zQ|O2M=S$p zfO@#goQcc;Wo0HXL@L8RAu9uwL6Nwu8OXv)mTNC(rlb=XA`W+NcevV)3NPz$1-rvt z?z8OFhP|vdBzs3=>+NqHr8a0ksG=fCa(}U{B`_&Ko^~r3GM$+($F`sy(cQQ^a~o2l zrE?#=hW@irqod}6m)n|(Trj`9AFvyZG46?Ukczk;;GnB(S6Pu$(yj{3t!O#Y$dxuM zkk~POe`_#T279h_Rgx34&1XP8;+>F(yOzMLyaaZ6+ORO(J3awGZ+mZMX zJz?U+2h_k9`fg`btPvo}$6}3~d z<&eM-ad{0|nJ~J-6xB_STbbyM%hl$FMO?y0gP-lvCoseVyBlkaHrX=^Q(YOv#-q*t z3ny1aW(?@;EV=grGFqre3mAJMIQD8i+*4atY6BIiah*+Ih!j9c1z?I9C;&%2>LO7O zTS2)Kh@AX%gko?#3K@n{8i?>W1IR(02-VHRD$%f5UCo^I*djwafXjO>k*I^2X`6LdT&S zI!KS+Kxf+I7EPPP?AS8;FCa4yaWfjx@XWi9u|@(4jRin$Y!FL5$G9;x3<}day06Jx zkoToxTS#DttjKU*6I&aTLP)hB0rnPzk)9MxB5zV6)yKD5nM$Oi2yT@Ypevffq{{%Pm@5#;lk2ddS^nXG#-}q+ZgWR-#Sz{jG z-}_=JLA!%ypu1_W!a?T^n+Ha=Ettyd>>LV@8`nCSw*;Ht-Lz-HCfCgGS}=vmOs+*QJz;yu zTZc^8I5|#O{{`ejyPI~$`N$21JWGD;eBxIGpggrPQ*O+31UoLz9`00a%rqApv>8)- zxKnq5Dvu#%b|Birq0Z`V@}7>EB4%o{P-v9pPAbb-*|8S-FFg7k6@4H}1#wDyI8=&+ z9uMPxOQ@Ks4oQMr!$B2D#{ZkPcMlZwFqmdlt&_W(xFYgqlQGTQzoOLaQ)SfzcPUU` zS>U5q+Tsaw|N5nwD2jADwI`-DJBTgQjEgjWMYKnCH*uBgb$vec)XB#F8#~#ki0Ga9 zUWQF=ACZwUf~A@|*G1wCv@B7+C&z^?>{U`m#80hp2iP;{e#x@sGlVbgZfX|xp3)>F zRo>JS&yU!;y1k$WiGm1kD-4`aU9rlKrf9xnQ^U=S1b7NkpQcGY7PNLf+2~@04(wBv*kyVm`sBi5B{nw8fTD_--AyHi zG!DRuhcpgCLRQga*#+zavJ7=u>={LtfB{(oA<@KeyX6IvJxvp1sONX(xG$4#%2U-b z3_=h@*WJWbz5fE)m_W{|x=A105GWZaLmL9=$=(K4y;ETl8(T{chsrqZR+^ZI88@sgbW{AbcsjW<`78Pes{=jfg^V;A>1r4UzsUgi{BP<`d1xLe`0$LD6;8)uMSShhVGf_qQGuG<0G1>p;td;Qdj8ng`^}c)lj4|f@LSE?d##| zZdSKbBUp1xdSN5j6)O^-L+NnH%&yXqsBBKnC4hTQ31u~&EHD$yOjih!$%0VN0s%Y= zt5o@>RZKw10&5g2Rr!oYLQ)mkKuDM}8x3E|7+>nhnq2}zL~q>1q$vW3;>CIksMB<` z3>FrVotX%z)0RVHreDO2w17fGF*n#?#=0M*PZHyIJ5NHu1hhwGa9j z+EYI|t|>j795YfMAqzkV2^(2r@78|-nX%+zos%UUPPc;THv!zh6TNb^>uya&i13Ws z1M0NvLs?I=%Y`BXg@zWmoQZ`i0a-0L8nj>wSNNdoqy>^B0a*vz!;y?tUMs6~YW702 z1co@LyYU*ka@C8l-&1DwXISGPTm4yKTh599YQ;Z%y?-GiTM7y8@n5C*9m-DFBrrtk zm@eETDt9Jv9di)UyzWLW+`P)3i8S^jN~9`xX~i%b^h07*#}Dald^tloUQ4s7p`0*U z^-t1A?!%9l~Rv;_>~v+I%pbtPOH8Up6Q#EV-b zH3WhoGRu1jV{}|{SXfSt(F1JtXN=WT-*vT7_ciH)USBxYd~{r|qc=oArO@7v1Y9F_ zs!{|wYr@5Y+JIrv4&*MN$ZVB9mOHVylkWffNT=Jms)%U@J0<@L zKPWs@`0K(og$11b|N77ehHm2Kzd4*0_(uN0{H^)R@<(v~|6l)$f&YK;itb!ECd-xx z^cGtv{tysl(4AZFI-_EW6+3ryCKMX;1v+1%>)u65%@+uBNt%736SmyrizNjV8vQa| zna!*d6YkUW9TFTW{o6H|VL~O|*bEccqt=lUrsB0lZ6FhdLZiE>BPC9QmGRx8nb#Wk zozp~bS7y`Thiu2uYnNL;=MzL9kWBOe_3YfJTGd}`NXZK@L?&}qX)*`#2upbYVN`vV zOxy#EYw>`gDwi*6san~eW~l18^*qLPIz(=Uaq~DeOBZ?AHl%E4y8nU{QD`eDG@Bxz zw6hMphdXslRBLg^2dN3}3R#XqLg=ioPhg01x|?pm*V{FrXe8z94K(*TzEmSsW?+^T zcGQQ0q`aBEX&2o->RRKJAbZrfgmjtxSvIcIg5+?inuxH?QI0>=P$xL4L35+>NkG~q zV^_JRd{XZPWNdDU{2gkxQ!>U*`Mdrb=!bPTjcE6iI++&0J3gu1Pw_i~V5W;@R-VFv z7AwFI$>Jii$i6e%ye0L-S?u91^Lk_^5X{(A6Br^TGfc@K(&}BRWDN9@vAfid=x(}> zl{O{FIzszIWm9&P>NmEow_|X8)MggTZ9BX~tc0{u%_PQP5<@-E`2h4Iw>4M~0`B!- z)Xox(%&qNfn;|`r!laup3&VyAx_~6dZr#9Ta#Vn$z!nW5Vn-KHQp5Djl|DTqA_+1L z#a%R}XL_#)fL&dIUG+gk$9C0!0r}|eCbo|*wN1dLlhh1LfJrtxaF>m7IaQJY?SaB3 zFP9&*3=m1$4;t!zkPJhg+ucN`;bQ6E)t}N(fI|enluHDcdIWA3*$6;G1a=~V=`eZ` zwiVXh_o0zx*j89zA{gA|?z!@LqYJv5F4plMvPG>VTgOFG{&y}k(UQ&hXfnfc5%nOs z;{~Cy=_N45aYA>~g|?$dMh`8XvEt?vq2xGw1xkoXWiqe3X`znxgz%}JVhCQERAGh+ zrGla6+oh)0L%`xQsiU3oqO=C(d>WJ>JJq0g%GfcZyIuHW2j1$FR^vF2i`aoHtrM7R z)5UlhonR1n#2_cq9mTaX@30#N2lQKm!2 zjB8E;d!}BZh8IXu<$+_FJ>01$TK-{%0dh=Lhrw{Dc%Tz#c9l;9O>W%mMsJ|gG#zid z7F>f$L|g-FiE3#Gm}k~WOP}v2m&YlWrg?KZsayuwldcVTBB~pZod@XQP-$L{p?L{W zl9IT22`DsL-lJ)G$+VSLs^vA%9fh6Cq}+~@jy3$AW^JyABNoGXvFc!;W(_C7-Ef9i zEt}M^a^LQzBl*sYr=;Ix@tqeSJ~4#KU>(!lbVOmEKG}j2YywwpqTl@AuR(WhKS&^5 zM|L+YC>+9Z@F=VY?KduWZI^xR89H1`YlPEOqeUq7_Z7yz_0&rO(RR=G>6Km>g2ZjN zf+XSyfW6IAH;*n#K;g&s7QKN^Q-7GckbyohUDbc#c<`NQUC znt#(AZN9i!Yy6<`P~&xt>l;Tk8te{OTR*S%r`p$RUG4##U#nNYTm5A9Rn-ft?aEIp zAFE7N7H0nyzEXHk;p)O{<^aAi^wFU^hen1@9NH!SANdX3|Nn~ox%ph~$)u}t z9sRVp#*ktDdh-P~qz;1mm60=7i5U7*VbD3dyZL;~gWF|P^;HdH^GIOQIHSAyJk2)* zR@@pIX63z^tE;sXBU#EtEGvN_&gyQ~#TNmA7n@o@opz4X$cvib3{9xh&W5I0jzL;L zq0Q`WR*%C0gvC7$2O*KmGp)^cNpUXimJXM526Cto&WYtX2x(q-^XWFt=)0BTri*Dt zKx+&1`6*q)&nb7j@gCjHr}3d5lt=2~5B-23@`&zc`WialL31@Zr8&S@Y_0dgTEvMp zy2(Mq@8i3h>3HaThnivqOP$Y1a5E@AwW?-ReGnHwc=UF%^u|)Bbv)zzI_OH_5QmWl zx}74~L4!Hn%`c^av_K@I@9%XyK;lgq6RWjAx>tAeOX&HiIzXl8^M7*gtn_`~hAx9a zdR)rU4ANib&V0Hnu66$}=FX}M{A7d+OAU4YGIy4(2LFfV&TwOg%8kk2XAImhYV6V7 z&3qtljIM@JW=HLfJ{)2TAZlS~UP=>wr8J((+n5F2&D=qq1WnE8dC1}f-jdNPr%zd| zV-RacV{!XBYrs+AumdDzS&q6dvHK7WAoa1s@vx9;AI{B?v$VvgoFysO_is(#plSa@8syk&~I();J}fbciz( zKJ-9B4(@K&o;?H9B4(On0^@FJj#sS;Gg+Hw1*z`&vQj}^>b^m$DPTZqm^VkNW|nc` zGx5$8m}f55sDsFaq)VtRuTok}au8B|wwYJ`53}cX8e#%NB*z>yIKC$@&as1# zS}){i$(bnd{KjpCVNj?#noE!-mD8AFn5StMHU4DCn*0u`0VSJ-P_SC&zlYt7~8&X7aMOtp^;u4CeR>`S*O7fPJ%Wdw8=LMWdoMQx*g2sxRL=2wdZQx5@D%Rtf^Zf9K}U4DP}3wr_T6gh^73l^7yj; z51K6Vr{Nki%vr}5kU{~;n&Ki4D8)l>laE9ntx|*&&$9`FfE;}s8iNWhB`wELw}&Cw zgVQ7{u4W1B^76`bOK%O0 z-E_+bGJ8!D$u`E5#%|LsL5 z+og|kAK++dkK(V3j~DMRzM^wh7Sy*~$bAJ>r`9oCRjn9@e+R8jO^P!tDrAJ>r`Cp$OxjXm6K;c*?=(RdB9 zk{a7q0z;hDecWtbMB}Aw)lq2kx{nv_>M|$Ab-hIIZR#dm_{dFmXqk@RP3B)_cOU2M z4kLVhYxbtBJtnZ{YlwW=1b%*hx*0?*915y8C^R(uV)R?QzRO(`jewGmKg<#+nnnP}DW$J!ud*!s75wWdeq1%Zqg*MR;D z) zq&>-!7n^~#N%q3irtfTe#v#TTaM07XL}{Z4vS|Z?Kp~AtTkd+{q_pKIG_s%#8u%7L z*+NQSi1jb!e#$U1Tne5VMhc_bzBIYjVM=>eDhs*%NrMH?ZCp7FLnM^&DFTc5(5Q*j zxLZO?iU&RcF|)>H%pjehxgH}SK2?_;wYn@mbe#P0I8rLP#}qqK2T2cpQs3of zE@ZlyI7gw;nL38flm#Q^RF}j+^GSZ)H$L@f`P47w=)Og`8_gjXbdC=n&4%Z5fi+m&Hl2ZNjcNtUVoKB63E=Z zTn+3Jb?g%fD?1u8<~byoX@+puFsDE#j?{b4BpzqfdM|8Ff!2r?O$uSUgpWCE&jaDC zuacfF3Ajxpcqjt3H|2b5KYbwd5=X?En@vHKh9{?%asQZFQu_+!zTM4NYM+FK=yy)E zPeLs*`y{52j4fUvTU2LzaGEE9QF>>UO^+I4-QL)?1L}o%Ir5lxvlZY>Ato?HD)X_b z%vK|zr7E+5keDXAl;OOUjpZXXO%z~rDO&TDdMUkd`MlISIE>R(KvUYKMfqKv%n1q0 zsMT*&)(a~?iTBz=WxI&Y7rjMp3mI>|h~5xQz4*a=WoS;L^NP-mozddki?1!7R9sga z<0im`ozpuIpSHi--q!wNasT%HwR-3E?YrB5-M*!LV|z*a zilHal=XSQXUpn;6(2?y0o$s{g6l?80+MU85+r`%JTL0F1ruEIvuUi|de{OxD@V=ot zTc2osxb^##e`a*7$Ve z!?j%+@8g!jJGrZ1s&PZ(n#RJ$X`ER&tTC&xTcgt`)PG<9_xiK-Z`U8^iwB>qf2cH4 ze@|hm{-*kCJD;lGQeROxw|;H?g7VJwmlWPupI6_vzC*oG`%Ud9r9al5D$Od*A3CY_ zcLxzg+!z^XPbZ)ibNdRu8W3S#4GRTzS6oFO_drzFPUj(8q?pQaZ78VdehHTPxkln#yS9<(0F! zHDP{bR%M66?UhpbcjccA{iaYVf3Li?{3Y&Cytn+e@@oo*6;2$wVCcHSe=9s&m|1wP z@R`Ea@=fJsg(c-H%jcF~T3%4zuXy#)oZ|VVoeNi%%EjLne_DK+S(wik|E~1&(zB&+ zl)lP-kH0Owz4Y4B`pyIGk9Y1Vy|eT>c7GgD3U$9-;9E2W)(NK8ug`z(nMPsf0++5% ztJOI&$J7BhUY0BA88eKFO06FUYi+xIn=o_Lt~qQbtC$6idmoyx!MY-X){h=8*~>InPBvI|`~ zm4Cwv_LE^#{tah@MA|Nzsr=vU5)!FxLp<(md0lF0yzAv5lI$?Lp31-O z0wq+rMHl(kz06+Pqh6j`D{Rlp<+&%G%mp6PF-Z9r%h2Syb?esW?^qBd>MPpo@^{pO z41avp#h#bR)ob&wIw*-uLT-O}hr<4fdZiudo?N|VP5za`+ZXohV+LK<3xxU~o}FYy z53}@&o8eg(Sew89J&Kqo?FCq!zkj*CM7W~9?`uxwQBRLr`oqIl{MGn`q}+FkS;Mj$ zR!-)JZ@Kr*khiHRnaw>bEgbWkL~!pFAsmLl(^)xKJmg>Y?!dc|H>>lL-}2a4JG*IJe&)>Za@8ts;L0D#GLO|9tZ04yoJYe; zO@6P-{kaliU>{!Y7rzWlZQ#rO;#W!4Rm-Z-}y=bs8gt<@ZUVpwdm{ulr<(f{Do~jN@UmRJk0|mcQ=lAcm*h3*QL2 z9~;lT@OX%PY{e87_vz0hG4PoC-r>EMO7-`8l^&a3m;3zFy|+Y}`{W0b1ZcLE=X;aa zTxL0y``&fQYi+Ka%Kd!5o&%Ki0?h6ckdXWNj9z%|AISZDZ&{=AlY3|)yy1fyIKCxs zOCGIM_IY3QIGNw)p5#%!J@=1~h72y}F+bzkz5=hy?=?TXr`8kGUOh*` z+uTE6_n4GbmGtntq|H%k%Y#?hFN)#rCr$HsJ)mc`B&L{atHce z3#Ll@;N9UTj5W?6mi)xG&5XRLC;rJ_tdi)u30%1@cmJjS>!#fO-n`R~;{A0dkKeib z7dU~Q$^r+8?|$ouj8dK=51U{;~tP-4_E_6 zr%MgX`45EvQ@ICb1`=0PrtXh}f?`$WmA~*XVll(^H2`(SK@^D7-VlqGX_z-p? zKX*Ha)h(@a;|*O@>fpNEeOsJ@E4=SZE@tJ#nsvDcTAoblXl=g!t>hJT_<;jt#snt| zdiPYqRE>VXJ%w#8&X0#2!OV}(4v}K(_kAHqScP=b^Q254fiiqOe=|tbbMF3Pk1U^d ze<>t*RqnpeyOLJs?t6_q+33pLy>B#Ve0AHtq*O`l7CugyR5U_^Z2La5x+N?yMN~(LtZ|2|4t!)6w{}?bXMm6>~&>)ocj8qUl_WA%uM*N)w$p8 zWr0>Ghc|b=oU4qk@EWCo4GOVbTSgg69Ixo~pw{*Jv^?*D&z=kQLg{e$*f+bh~9wfAiO z(QW`--@2@Ic&pR=S@WySdzvenXEtXxbB*sdKG}GEV{zkz#*X#p>;G8)X#F+yVaC1n z>W`|QWwg6f<+;i`D=R9;l^-r&UY=F@R_P&56%3aSV+{Jw#Yc*7C@wCZP~5TbuZ1rc z-ch)*aBg9{p&t)DGIYn#8I@-FheP|>Zh-f*8{o|RZn^)+ZTK(#u{y4mG3LXThiTP# zZZ3hD?|`@zB8P&OtBK0Y|0FQPgS(H9+My{nsB7pkFpmN^c>|rT2TNFS>w%KopVYdm z-hTm^tp_7oO;vR2biz$dIwm;Ox!uPXGs7griK!W;0BeS6`N*m%zCfoL&Bt}JS$S5n zvoo4K9N}zN&;=)fNh;zwvw%XI(S4kA&Bu;N9;DRLnlLCwcOT~hlChBy-)fxN(rO?R zf6LhjZ%b**^_^!X0=YX_)8_NLk88#enoWKYLu$q`!8PN!d}J)lqoMDsY^w(s57=39 zg2npQ`CxxR>QD(^C)54V7Dra!J=`;*50dqXndJhdktw&zayIL8A)RYpi6SHHl6bim zc~z!TR6J$qAQ7PR%U$Q8k9WK5eIiCZ6=fvaOv*&T}s>~UYDycls{$D*UqQ2&Kyk$%ZVR{csj z{wvA$LaWCHiJ8i_GlPEYxUT~H#s4vpqi+TiIfZh*3dK$rWDCVWNaXlD*EYz&;bEPddy(%c;Qq?iQZWQdA(}FRIKi5_>oS#;_gt+4EP#|eNM`>k~u6>{|Wk3d! z1Zv~is*R)5d>T=hXXh+!dF7EL_P1qf%PW|+ye=Qn$2`k-`rd^RjR3RCF%W6g&oiuk zjx5)x8(OA*I_~vzB-Bq7b-HH8DF`Y|R#5?VMJWhrsciC1I7BOcT2TUBQMOkbrLvNL zF2b#%4R8}TqZxO~mKFOm<-HJ_RtA_WLuOyVhjbt36walAn%e&$Ov&c2r(RyPda4!W zuspDY$F}1jMTzs#CplC-oE1BZfI>qNEM)3@sb?&u2uEEJ{$0@8<@!7cr%Iij%9eqi zExY{+>pd3h9S#N;wnCUq;w^Sk>g+{q*)sqMkUfKinh-6x;o=%i$rQ}&~ zc@!$&i?!gRaAKttXrM=Wq$0HsSFtCB>Qa6VuTOm(m*F^SG^J-PO6ZEK|%X-sa2Gj z7^zw%%~O~x*8qtZC!2%BLS5ee zYF%_O*r2=wc6olV1>$t_ggR|Mw8fUCu|Zlup`rO%YE2SWY!41XLK*vN{{%z*j4}jy zWHX6O%k+NNQJlwsdSuBF7Q5ysj?7q+MW@ZKn$`-sx~7UU-Dyi+K&BM-Hmw;qTM9u$ zNTI%!0YW_(ECoY7g?pMhn5-5nP9b3dAz@*AU_RP0CQfYmhPfOaU9rX8K{+a6m$RG6 z@wn1*dQt5PMH|nuQ5l95RG<%G=#nhHYamw2+XNUQP4v!MwAVHPYyx7ciB51^v|m3m ze7#*|L(%W#TiFyKt_Mnz=X6I^T}}0i5^KysNVI7?$oU7Yrk%fORZITsZONbdq8p*P zPB3IAwxxg~5*jx`LrXG~rWpzie-j&*Dp6ndUayy$*4S%K}yjt5#j94fkI zh_CzA2t2sQJHVbghSR~^v@1DIog1O{B~$wtj&s6^h_hR!9ducISMfxSONC6tvH}VX ztE`h#tvY45K^q3;i0S`c9p9WqcXiVwpP1($8@%9|G51~`}M5ppT-QpFIyY=2Ea|Ni&_UY|C1H@k2n9Sd1dqH=5DOEZ)&`^ zv957pW8eB8>znHD=dAy^^;ve>|Nh!5YL{}}zgqo%_2KHB)kUm$w=3VM+*28^oKu;@ zeSlAu|Gxa{^0nn-%hl44OP?>jsdNLY-@6o_D{d&hx461^W^tFo4+|eHyo$R3jxX#q z^xV+bhTc7N;>P(s>Z+oErFe=ug1aC<>}cS9|;WcfbN!4 zWUP|N08;I0%2*TJWu7c!HOTf<#f~9?A zq}HD@!~}+jI*zrvYeaZ)eG5FNsRwHMv71C=T0o)g)!lNm+D>c>QLzIR1Oc5LWjbSs zDoWbg1VTa~FAfUP4O8O9#jb1`4t0Ka3%yUi`R)+Rl$%d*8;P++!Ur7$I-)R#vCa zcw>3808nUix?4EOeXc!1>Z?>cRgI%*E{XzAi%5Mq*K#*-yfdJP#2gMXFL1+h?UTux z!^pCLLq(0gm&~C7?KljP>ODu*l34}GOI1r@Q08{G(3RCG>@YG+O>6|%2D5b0>;^-O zdw-1EUm-O%ZU+$yNrxkrkiUT%;2vbw+5CL|g zKC8m_NQ{}$O#(xtSk%Am^Wu^YC^S^4&%s%mGb%L9DKns89OmU?EgJ>}d)XU%(W7#i zvKIqwr0jRqAJN^im$m2`^+Ddp8@Z%K7fM6ET<83KT4I^+Fg&`uWlv4TG83*~>8V(O z#IfAC>X_+vSF=%@gCTu%f6tYH52Vk)z|{l=MX@^?=2`$UW4F!4MUlX+;oZ=%A;ya} z98lK{{o!*>Tvj&*dfZ&!Xmx29RnKM1wEzP<78y`PVpuz4So$jUa-HIY7`xUU4wc;K z8*z)3OJ~NpNnnUrv^vEe2?ArYchE^Yhy-A^kRloAQEqQh_HvPq(qV}B))(Ph7x&Uj zw6SmPzkp1hw^N>zBxm!S;7~FBjUA`2nU zcu1E`Bs*TJQbTHLB2E}H9m|*LPEqDmxv|5ah=Y*O zXbFuDYZ@u^Y+?iM;jXA6ib|kNDJ3vOvaR#f8eL5@*WxI&J-S%MBtJj{_f0xeLs;hsW1IHE6yDs(o52@H{u-+D^6M~h3= zK_{(~hX62HG08zsojxrxd_5C$w07Cl^>9xepB7=Nz^K{OC9um}V=@BP<94g*Hi{EgD(M+@QLKacKn9(>6ic7TE%bPn*VR z>)}wDO1cr_vIB$iHF7qwarIxg+*Kx*(LH6Cbxh9Hx}Mpg4v`9ySfs|zE`eRO&{y zzB9CQt~R^26QlJ%uw(tZ)yJ#{9=t?NWbBxyz39<>hP2 z7x4AJqsj-A_bhkH`O#XZ6?_ATlpmR!Tb?2bsL#6XOFDjnU{zLoc?PuFxZ$H|8xcxx;o$c4PZ*AXL{MX`e zd!&6?`|S4drA~Wp>7e$^_Kxi;yBMA;ol?BJ_3hT?;>y++TMw1?YJISDRO_9s*SBtO ztu9?vDzvU`Eo`04`GeW5U0b#0ADhoLpKU(Leuqyq?{B`n`P$|>zI}Lg^Md9n&7+zJ zHTP_8*Boj*&v}D?YHV(NzVUaB4{*}puNvzc%Qa%7sX3C zXYlpNnOG)h`*EReZdDZ2i#s%;L@U9qZNFA4{*QJy-lr?MKBs zYfte#g|80Ht9`Qex3zZ+?Ob~uw=PW9Mr&8q&aa(PdvWoL#rukP7w;7V4~23-ty_27PaB0@!^3SqN|Max&jar7u_o8u_LC%5Z7rJkMgIxn z!AV5S?eOwHv?ELrv3CjOO}tE7Dec*TxgY6;W(U(@wy{#L*&)6z|5qPRUTWXZuWcv1 zy+l;**Kg>(M5n(#HHlaIigGV-xMEMs2#>38d0q4p?rBM)cq#IM@iXOfze(1%`L%2$ z`m$Tb$_YJu$;z9J1pKaRYtzUW8~Q$53L&_xVO{<+2ZRvzu)n|3)~)sVN1pIk>`LNc zTf$qzL4~*VBGuDdlSuXOCXZB`@jw1u%Zj#Vtk%}3r9rwsjrNj3u#Xpu=52G9}c^Lr}cP3S<*0(TX}FmY3U-|r-WCf4R> z9i50*>2|)>d$lG%>#*J{axicA{?k-`mYrXcN;to?=Z!&;)NzZ=PIlN!_5nWS6<5?r zBL8kr%p|cN(|;nudA&sISV`xr{g=3w3;HjWoIRpP(qrd-JW3L@x}P9z8(d�Q{}I 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 VA|2|dY$qL8RHlLIGS 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

_-W> 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

UI`=xt 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

(29*M zG+*0g7;PL&SB~8#wS6P=P+qjeNYf5+8UZn>dQhe$@ z=2K1KX`hN|TB#@if-(|zlE->XU*E@mbB=l!4S-_!r1{>%E0 zY5b+}NaG!iJ2?R`zy4cJ|G%uhs=lb+-}jTgPxZZ}Z>;Zc&#n~8|5Dyl-cr82d_?KV(pO9WP`Z;9@#Bh57r$A2 zPw{2Nn^^Czv&#L^!mA3;V->ra{}Fc)yp9#?dAX-@leyz^h3tQ1AIiQeyDEE1wuHFf z4_^QO_h(LP&vQb_Gtq?dQ>8>HgQA7wT6>nr7qeFqOuZyXQ@*(K2J-o>J!hNog>9Uo zjtwR7NjiCZ*dszW!uU#txF`}BuE(_YurI_2g9P1#f*~YRp}!UA;!FjG&d>T=THWw| zdx~FxouBo$g!FX16+c%U{J|40ZtXd(F!P>*)ea{-Icj_>362|PC@^LR>hG;EENBvj zX{|Zu2}c!(V9%-fL+`LpEXlZCCo@`@-=Oy*CY#XPXg$ki-8>hkH z+hiLj;gZa2Q{;=igXF`FbdN`s+IKyPo}|uh?ODX(JGC^HQoNn8x|4e5@%oJYExfv_vzLLr;i+Czwh%gBv!OZBS_w0<>qf*E6-oDgBgdCid`|S?8iNM-}P*5h;}+p zXwNdeT6M4Y5EdcqbT&y+-D~5Axw!{Vb~;n1)TiQQs4FQAI*Ls2R`@BA1-IAD+nX1i zEI}go&8N5a(6?G=ADKKUzaC)ub#`v^5x>I6?(P(b$~HIKw<)=_x!Ft)b0QGcS>k0> zu_trT%aawZ3x-x(@w33(RXsW{Af|e-sB@lUP8<89Htu{Cb&BoKL+fkx4X1=PuO22l;J^NPs=3K{t* zkq?awom(m&0k(XM+ffc}so$ee2zCHZyb&{2Xd8z)qy>?}CSjiju5rFr>WLC!R; zr3vhWIS6$gZyLe`h7f(*mCXrRtZ)C;iTujupv#zuZV8fDlDqF#UjYq~*>qn4%=!xB z8p<+8yG!l66%C{@HwWRyEjM8g6VOijxEA4I5L68 zNkh)FO383c^%xvAjy74P9z!U}lUlpC5M02N!Dq3vD;j9_&R6!Aj}V8nrj%B)Sd~u8 z*Q)LURq$$5_@Cb;v| z@k1k>hNmcjo#(jobf)MfC8u4v3a#^0M1*iRt5Q#ytY6M5LdMTy=Ic#z=;Er#kt}5s zGKzznmT%Oplwy`H4x_P4SKGy*pv+juW~{?Zm2YC}FbuW~c1IcP%9x>u2fKnGz-l+i zF(s>ivDG^0dDuuExK){tx<`Tmg$(l;(OfPoe9Ry8Epx{O+s2)Aok(rv)7hp- z6CBb;b|&NhulxD`y9cfsn8W%1kN4ll`Ts*2Kj-xS?TxGK^#9N5@2tPHzLL>@ozeft z`~I$P4SV_bsr?IM|B2dVwPUJJSHHyAe~P>47F6?CJTpVe3*%S0Mz-0aK*51Q3i84MZ zbBOIq5Cr+t?dT#kOAUYO=%O%91Wt~+_q4m7Nm)HQ4)kd^RQG9@1cvdP*4{&`X@k({ z;`(HCa95MESCe5JE7GozZhi^u{0@?Bt2f)jFQAakYVAFcx`tU>j^ny!7$kFBdk-)p zvuTh?rJ1rEO`(ysAl?3wP7nx`vG+(|cplfY&y;#*>QHODO?Rf+xbtKy5*HVUv`6I$3}NB(8O72`QciWX z474U^GK8|_TEYUCb|_ zPNoi-$8POO)<1@9c581LH!CvJOzdVIblFPCwuWt$Y{3+>*eVj(6D2GJ(-PCk7En*L zphO|-P1Hb$%BN-K)4vHMss4>H>)%Xjodera-%DH9rzwd9cImQ6C#1JV1r##)5dq?y z)&6C7ZWGw}?YSF%hFCu0k_f2r+jEynR&&?Wlx%>VpQ2M4VGqB6LPi&o=v3aHlXP*B zS$|Ge2a)1DFjMbI#zYQ6M8BS{))_ooay*8MMA`oK!K#ffTG(v5*R`OHdyrz51hSED9ogA_A%=DNix%H3A zMy}{eX`E$Ush(UVxaUfd84ydor*2IpFof{DIq*zsNJ>+-G0W`??XP$3%W-z|lvL&$ zOjGMzQz7kC-9#ieNe0(z@%Z+Lrcxf?X|!NT-mO==XHDqUD&bhG>eWiCh(}1Na|XF+ zavE2Zzz|Z9gpuOH^XXhsKp|tIWk?;+L6wpjZn^^+aO;3h4o(hEsfggcO1uY=$-arR z9#9uSv80H{5&AVLGDkg2FI1LRYiokBi)}N3A;janfZ8K|JubjOh#1)4qzQ`QwZZOE z1N#8mzXKW409w~up-Oeh+bpVjM$ElzfgRRk=)hs-uO8X0Q7TD~u#N;yaa;YDqE9<@cbt=X+qZ86ZN zqQ-+2UPZb-!652bynw=zSwVIT60`$d8`IRRV1O|QZ9vml-)05FOaU@4bARohresFT z$(*2e4%)a=V#GuaBE{jYJy+PM!9+-p8jK4@ad}cIKD8GcMQ~7>{U$$`DL<5o)1~v{ zu=2yz?;b;(j5R$@HkD&3l|zN%-=-=@fL#N8p({n0%C?P#$p`6K8$*3D271U@pt~gR z3v`~q!Z5zF_-HB=U=r|EIW|S;m+inbwTHc!BzmzevV|O`6SaJYM8htmJr_Zau072Z zxuXfWvP7TcLTkI6I`*>00Ue*y+M_#}WHKtzI1@z!F+;7@X=6)zjK`v|*JkP{+oip%sE_EDG0i#TCtK zyk(>*uI(2P(@LI0D@nWArj1+4HV$bc`w7PX-`4p5T>~#0xN+c=f&Kb_(f^tLH`@OH zBN|UNzTS9u;}wm;#(9ld^}p0VSKm?JQop!9yPn||!1wgMxNorU^xA*bK2n>kJ*Rd+ z_1~-S<5d39l|OS5{~szZs$5fwSU<(-^nb{`D0c&U0CL$^XIHcSUqIY% zC!_uUQhK*bzvyF&h~8Ln>{a(JNmImeakO#gyqOvx#>O;N0~}Qi7(*V_0CInUqMiim zlzAJ7S@Uj?Ns1!>*NSv;d{B1`@mEaX!5C(fnw!B@xD87*Ho*i&w&PoSHxkKdaJ3Po zrbC1=%35tH6~r0Fj2B06r-MVPG~_vUrw+oD)YbE2UE5~ZAxotmUjGLtr@*#4?qM1b3bmTFar{#EpY^p4{5Y36Yg(YC~`v>27qu)r}rQ z5?`-8p|$sVTT9bNVxDS^ofq|^96q6LV9j=Hgk?%D_2rASH5=+VTp5aft<>0^Ls%Q` zIaFs*MGw@I!vI4_d9JYXbgFcDg1HiivxO39R6Nx#B{&|GU>kiD+IlYsOV;^ENjmyH7^Dxh^3q-JirWOF>owrV6Ggn$>Siu_X zd0y*Kq?)|w6(8UOFO?4jb$WD>@`3Fa5Tk)hOaq9eqma<1i!1bq?^#}AyL(Z3E?!V3Yu|_&kcmKnQ1r*h7g@zAe~woqD$%2QOH)c_MXp~ zBHW<-F=UrVUFMRbG~PplVHtCXXk;3ufY>O7A8MoNin5Pva7cYpeu#=6vP$bCBg}bT zz_^;8bu5zB!5s}Q_MU6CQCD$Gn6BDraHx%PV(y&Wol$)1K9V4WxlvB%vR$?OnolI@z;*m)cI}X!4zQ(a~c;AqfL@E|8IkUG%9G zY|e{0C1ZjkbG!%MG z+N??X+;`vGdIy-)S!Fsy<3-=!pBgU$K`^hi_t_dL2a5DaS)fuKof`F_$X-t6Ewkxs zm3^vv=%|zgwJkj0>QBSfYZ6=3v8y-C#XD8vIYml5APBIxQ?R$;^#q^jvA2LiMiZ#J zsC+Q1#8ORQfMsQ)Q;cAh7dj2>sN}M{kny;C=pbw%dKN^qH=cM* zLYo&rhq@18Y*;@K!R;LNoMhuiuSl_a_{wq*$%&9?^xv&P!$|$G*4`6rLP-Sa38kRF zh3HR_fBml4*m(rhGs>n(iyCZ4sN#%@YWy}Q;@HYrD8pIBL=Hkkfi18COQ_-mHTdLP z=QST*0(ug35F)ZakL)Kjv4#wT1P89Ykld-qO37`~LF~X27(!Z*V`)L??m|i{hxv*J!j z#5m7}IVX;mu=h@o+vFY%`eR= z9Z;$kpQ(Pk_;~TL{Lc6*`?SFCMfd0w;js2_pSN31oe?kA^{-gU3>@PR|(D*U; z41TfkkBxUWwl@B@aZjV!Slzg`v9xkd>Fwo@lqbu-%KxSDobnGEiyHIFFD-wgF|)Bx z;lqt$;hoj3#T)B?uD+xGyZU4G@6^A-8HM-P-&TKf{Z;il>YM6=^=s-E*G{dUS^Z?C zSU08kE>b{o|?_d-29M@E??>l|q9fi~LKdr3qJG^##_0GQi`zp1+)P7m}eqmPa z8?`UiK5o$r|GxI}%A$eS)ixK7FMX2R5wECSP=0smq5SUrZ%hAH`f}~)>cay+EB6ol zzC5#VbM25?qcBNyr6;Pttp2dLuDqjoYxy;mD@spQCaWJP7l;ISYGEf40sp@I=R&Re zio%yFM^@KVS5_~to?AUN|CRiA*l}@qwZGV?JX85?es$$X<>i%cR6bw%NdA_}1LYS~ zwpL!7f6u^F{+}u@E?h9sB5s5_!IRmkM+Xir9n5BhsqENy6yHJ{7xHf;Uf_%KllhJL z!GZ7QR}6e`;Hv|l$uG@6C$}MgO8z+FEghJz=Kf0bz{du*=N`>HlKUd}HoPzQw%q-> zzs?AVtwnc~w-X=RsNpd4CLLV_%RTAw1Nep}ES{mw3b z(qa2;kzzLAMnIa!6wpFZlok=M=pcUSvqcvANWZg-t~CN;Vl3KMVKB5iIJ@X-qs5Kz zdyW4l4qA56=}sc*6T;8&>`DJ*EC_#d(tZAmST%RrS42tSt74r9BpbE!gWx3ndclK! z=k>z(gk;}vonGjH2qafIkv@1+{qjB~wNaUPQ&lglh0eb2H2=+dO7?XYri_oZIet9* z+N-R{Y)=DE%fpj;Y}wbAlSE1AwI#9EyhHXizx1C3Bzes#`oQ*1Oig89l2@iSDWDFa z3K4{WSlJg7`0WrrRR~#7Eh?cG)+?HJQrZb$|FR{LRJJWZ17~ z;!Al4>D@*pl)dXx*C{{W(r2);lD+F~f#wMY`r; z%98ZoxB73%yM=geDt3OuVSRY8H|vawa6VJnH=S>}(m5P`Q!vJqlOD46jUCa+PCZlF zlPOpciN%{PFzL*srXIK7=#0wx`*xxe+2*mHNuu*CU+K8T_*uTnKTr&x<%3S6z;wTI z7)IHX|0u0(93}MGYh5J-DB9QJv}wB@4THZQ&%XL0f8T`E0@Bc;5h?2l3;3kgZ2}9a zzu#D^Va_};5I*4Bp9Z)&mHERPO+vYcsmxOkBrnD@e|U>Dq%Di~=AGf|X66sCs!n8F zVX6_6*$;hJ@3eNC{Sfg4^%ML0&^OHhM)~zo|8;BjUB66tO3`oqR7lz$K51V{H*dYv z=oOFYVk;%9!V}rOpBDWl)nOh!VXw3)h>Y&F0D#!6J$%IIRHdQ&fatuk^K`CWS#9Ux z3>TI%*lR996ZtUPvq)OtLBAJTWiZR2oOgfHQvHAIeRr5$#gXqhH|HT|kc0vP|fQKw|+-qC>I6Q-|)%O0^+?&r2ghxT0sDzfg(6S|I7XLVAaE zKe|sFu@U4l{7g#NMI%Gh&)#bI(9dTiNyyy#P3_iNmGIVk1d*;!Nb^>SMFbZJetw>K zV$;|zz$1jKnXUqq9x$u#gk&DuefH4@G}+Ylrhz`Qy6WX6wMGBgDJ z8{Fx6w(Omb6Gd}231hf~>a})u5%|BItqU8FUia~{%f3|=JFwW)< zYTG@?Bh)Kv2Za%1bniwj79IU1#l#>INS|lV91T~0NWqA`cHhAUV>rxBlOoUsz~z|M z1H}P-xhAme8yDCF3|Om=qZmOGo^7;j<#t00quNxH1ts@M>?|tz+Hmzclby6ypF;D_ z1e5Ui`b?~cSb3@dypf@PCNctC*|5OR6j-7s^BC0rkS^1TsA~9Tj zxS@ek!__i5VW(|`{RqY=V={iu&=TumaFYTNhHvV_raW-IKn5wuy8#IvE`t}x%Wx{< z-*TRSUJy>x#>4M$nhu&Umf?*jYVn9FyFOe!$9_PVH%Zi6(gfB?Hi1k|QXUXXtWS&? z4Fm05Rf1>o3(|zKzsqD|V6wVI0Yn;x-LQU;vPBl_6D$@cA9LQZdPC97`Li}B*=Me7 zl8CQVoDX#~8X=XFA)O_KQ=c!+6!U{jw`$NQhm1!3^L*nl(=HO5`^#PlNVJ4jVpv}kmURal)c(C3oV+3wfDhMhZ z&Q4Hi5NH1&No)k~{)JKcB%_RMVX%y0GcAB!Bald>gkVSur#@s0Mo~jyy(0Za5~;=Y zYVwWJf_ML*;v0Z)ucmPOFtY2kYIt=0`rz&31&ENY(g+N*{MK)nr4Ql=-k!>4z-%+T zY8MK&5BwnXvRD%S4%eSe3E?Mg!=-x~9Oj&(zc~+iOXBwR$>dJLt>P#1UMj>nGny$S zQaY!1NT82H zms0i;juvyJHzfw8eg$tXv3csjn~Rx8+Hxpdw;vPufxftjziH$~!*%(#yMqz}-3D(+ z1YBAUuG)SE2j+YbWpxYR6>sKb`3&Ctq|^sV!5dp`X`|ta{a6~NGR)DaN(uPD??N^I zWN=#WwV>_WZKG|~+LN^})atbpaQ6R~)qAQpR99AysP0sGsq(GLEtN|vODemSUn<{Q zzP7xwd}ujadZF~q(#@rw(ov7pZRX)HpH;s9e4e&O<$5e5&?x@PHjtFlR7^&E57f4VYnbH z1V0CZ`d=y=1P4SLPN0KBP6qagSJ!iJSh)CBHc0p>oGesC*H_c7P@sY0aiqv|fo6Ns zqiEqkof>UeN;eD(QIeh;#(;r1Big`+HBgA6dEQ!us!O|14h@1X&w^l^!Jb&~=o+wA z3BG;qN0_4rUX>K8d>(^S(d}AzvbTenV}$WkbiJK-a8NMAP{FZ%DHMz@a<5V@6NdPh=Djs^c_(4~2J&9VlRtWd_xoKq(y$UH5Xh%jHj^L(& zMAt;o{-%LI#m`%B@8w=W1JxVqRSEZEH$^IXI4g>Cb>mgkfR&;5kRd{ZbB`f~0&POH z;V`%g!H^)iu0nwU1yW#;D&FK_|D(h_DOfmA-y3Z>1o0L2f_IKRm8gr1zVpyk!NRfI zIM^$DN7%N}pAws{P;YMx%9UQ(oJPb@*)W#&kHVEFR~!3Z8q;xFaN{^EOEfSDaFZhezBNJAnE#5pN@%W_QAlSsRP zLn2U2iJ3sqI0s4%7>Lje>;OPB%yxB?W)Mn+z#DeG+=ilN^!6LgFjq7-%%x_)v)Yfc zP+zYL7_hQ5M>^^Fi0ujnBKpc~IW&T>I%2p%)9WjIGEfqL44KRlnJA3q`!X?bpe~Fy z%+w2NI0>fh>2GCIqqM@@%I@tq+w+j+3^K0CEj2V?<%Mw-+VRFb$?&k7$BTsn6*L*^ zN>K&VlbT@4nMkPibfelhT{W(13mi&_JKf}(s;$jLg`)K~zmyUb(3H+jfE)V#|_xhI2RIMW7^TrWZ*WF zHWRu617vY*Wl_Sv*A?OfRlohHei$`aMoU+)aG*kn`-<2tVw2bfY=o!}EF%ZPK8V&0Epx6_LCPJcmd5Ld z1cUD6XajEvQb)!)BcxEEK{0k0#ZaUs#o&P+*|qLvaJos+hTX8~*WOdtj_oOi06`GO zXjd^tJ+icHX@PbF2P*1<=nj~&2&knl1`I@~z|LX~ainMs#KwI>PX%~BND`FlPC}Ki zRtX8JNC?$o5C;MT&8v<8K@EfS4s1b#YzhR(ML|aNI1+C~wh2Inp7Q#jR*;z9WJ&5rnh;r@BJ1en>9N*v z#lnFKwc;g0IR~PO>Wd7AMgUft4CNq*1fg(mtm5$!g9@5_R9aD6$11@z=l3@-kOL5T zHiaac3Ky`}J0ur$Ax! z@wZ*haW%}TYdyNnwaDV=3nS^hEeo z1?Q-S4I9!)TiB?B298gW1_vQSLD}Fmh$i!l;6H-4A0z%>KcfFf*TwG? zZ^c^x`xfpme5%k>m|rO7pUrPa8`%eN^Z%mk%*@;H0(>HK zapu7EpVN<|Z%^0LOYq3ti>Z53*QYK{%?jTN9}Yhq_Jv1wj~ijeAn@aSR3C zEqTnI9mP|8Hw_JYV6<@$b}SqxiSfPe8YcjGMznEv_7WUIgH1DwHm{c?DN0*{R$5?7 zr;QU7c~@Zs?`uPeMaz6fYyyyHMH_dK^PIe=&~Fz8UKfFdvq{J>FWR_sdip8wA)qg; z(HvwanLb=s^Aoicyg-6eqsWtFX)eVkAp_(CUn7PzUX-w0dGbk8fPO%dm$)eeyjS@%#aT)D21Yc?rur5a0*YbQy$u8Qq58N{4NoQbq$*s3dmU# zCYo1KzYSC;IiA8MDL|hSZMc$>lEzIM-fKiRO%8K%W&MH@!Rl(Z@cjg!GiQaPM z1!Ewh0qdTnF<>CVZ-A%JAo__7twl0dZA!h&ctK@2XTVX!m#F2sdU;oKtnc6)1Bm{t)-& z5UgYuAA#rWs^6Zq-_UPn__|VWp5ZG8r$rn3aPWT*_^%c12xltCga1UsDfq5_kj4*X zMCN5IUgl*ioIj*&t^OJ@{C(&Pt#|3+z$X~h$Leb}d8A8U@H`$B3beV=hD$j+{vJgG1|oW&JlZ4>R?6#r3RN@)V8GC0>h7T_6lic&okdrbLGoNxgehld znktxWN{=&CfnY^^uW1<5=RHJ-QF^^7>KUS_bihe&RKr))I0bYusGLqk<+6b^SZPmD z;{-)MO|+UCY54V!u_Vz1AVcd`Q0qv*5cag%!hs60^X&=hh;rb`Q=y8s+=zV~G>9Eg zprMbPVw~EB$EH5Qjtxxl`S-ySPNhSplTF7mi?gOo*!0Cx!)DSuFW9g+Nj5B)NXa#A zSO^%py#}ME8J4g`tKoE@yeDdd+RRN2s+pyQmRX_Oz3djDYmIRKKl@OyBKT6!_Wicc zwl&(0Z`-~0+ge9$X7x|iA60L!_GACQQhBEG<;p15{X1ga|E2O3<@c7SVcq|)rQ1tG zxbt5qK2_X;xPQy=2H>lO2MV9W%KxxJKL0d!|JUV@L)^dTa@%sFxzlo!vae=u#T)l? zGk?lFn7Jj>pIMUGE&WpZp7h_PFT}g_snoYppGbA44o>C5C&RIDG+Y+$8vG3G>Hi?W z6nr(!a0jj}%Zh58dy7euwC%=AIip4f&UUaoQa7PDqxKS!3CosVjz5GudA#w*O+ywi zw#qPOIYaY$<3pUoOu{$zu-moMyJi=qUbjn9Kp$(hZZ@g`%IM}bYMh|V$Y99H+<&*? zO_GoSOIR5UZH94{um<0*csqo5^j=-pHk%BXSd*f>uN2-P8Cz4IcblNdG7!QH$o^xC zeTfr*d`z?v1K|)Zy2QAy2MqUmO#&T#?R7+`;>uU<`1Uu}a7&Ng#f|S{%ke57R!QiW zEYfQ^CkcgOO)mG-;qieo5!vgA2CP-Ni1nt2mSkJk*ERvjXo3qVQ}I+;!k#`PDL@C; z7YNr}Q?QN4;W|lDX3iI8)CnT!ULzRt)<+@nimD-O3^LK%j6{@6YR+uW~t}q@$8994_VOPWtfc%0b^bZ#0fyI zT^G#Y$cd1S_T-4y0u~Nb=*rR^$58og`#HTb#~h-)oB`1?cD;a#3B2 zZ0Q^Z3`EG}6p;zG4*8@W5B{T$zD%4n>Q6P2+z(>RPJX_{r3W|37XD>F`(Bu(pb0^0%mhvGQa9G=y2k~G8d%z#;t$7fGejCR!C)lHBxBb2_M!z~z1jt2%;I}jnYG{)*!y-`tr9zw4Eb*=+2^k>qBPhZcN_JS^NTOlpOh#j~MkZdSphA{%$salC8mqZ&9+A)kYdiisu(vL_#ItIKf4Yr{~ng{opCp_gQv zRLmqO@&cn`QegAlW$K8yvT%-UU%{QIRheZOQF*{!KxoOJM0c0rwx3J_SDNEDH5_&zR zrl!IkOGygQq102Urxr-+o>IpN%FGlp!&ntcy@eSk2^r92lcmX4LfbLzq#R^Y>o=K~ zifrf)`^&;rnv7+5{Xtud0)^L9+*(~aiy@}pwg#@Ka;Q~M#o{!rzKM#dtSs648(o8Z z=LWhnfyP8U!bokVZ{eU1RoIVm=Yi&U2JFc_NdY?KzAxo28>1|^S?+NHkRcBVP%p&^ zswWQvRwnrRkll(_vOW{KNzIyyE#8Z^IN8wF9G)%q5|OEz+cQ{_P6us|w|%Z{b=%=> z`PzTfzKYlXPOnX@zE-`z`ibf#Rd@+1k0I{gVCBe4sr+R5w(?+kNqLvjuS#D=)W73# z`u`WjuNOaDJgYdZ@Mht`!ao$&6pk+Jlz$PC|1Zxk$?uYTG56)%<+)R{uVCl@liA+v zVcBBl`-u3rDsx2o-Skh=Thkv*pOePF)IZ}6`Pr#C@Blm)ekJ@+cy>4|cscl&|8DF5 zz-ZGEYMB#N@H8G>*62d}>_yQgod51eYdg;K`Vaio6-Pc20Ry1*C5~P_o9V&es%LW{8sSCE(%&^`j1?UGvn`B4? z%p!Ze#KM6Je$h*?d(5NXLe|qX16IU^Qn4<}t%um9U?5J8HZ2gx8z4f^Tfh--h?}bm zqfPU90EfMY6j6P5$DtS}=vsWR%ft%>!}DT3BwH&VVtbcGo94>tT{N#LV4l~M1`Y!- z$lyT|RtaZ|d0d^*4|#eQrOH|N)1pmtWc$WaI>MopYZoZCW(GloyGOafBuW#>$@a~l zCMi`hHJfJB)O6xjj~RIUMlx`f{Vdj5Q7I~~&ISxbG(1jzGvv`4sF_H|qiNwvQx1D8 zsD-8h1M#qE6N1I8YHzpA~D6Y@EfdduFa{yyXv2fCy=rxBxMdsv)KZGI3{P1YgwDd0cl3dfBTp7Y}--RuQ zKS1Fh)=4kH3?lc8Xwy{oLYNDVvl`CX>xD@Qn4A@DlEIS>LK&Aw=-u%r7fBK_Kw6V2 zEkk9Tz|vaq(1;@QUA}f6mE^>i^CI7V*aRR$FZeDWj6}Tr@kDFkiaJqH1tw&DR09Vp z#AmLJSO)wN)?%6wc35JGqLTZOZ{u(f9rgH*6HvmuXw$y3I>!bLb%H`?dwb&*ybehs zGR=uL?ITO=7%q9dNmr6b#zi#M-kj$czlNDac}?Xcp$w?PUQ`8jY>YSQN>YFhechAB z&eV-n@Qs~Ku#U&Zs$Oaw>c0o;&qWE%!MOGJ61D!jv;GOZwf=6JR%bU>hbkk*kV8+i zlN6w%4dvV!Vh1Zv&AJySC^DZ+rtZb0y#|jHfDA?5ncC;zdfI2;6S@!70 z2|z{z?acmJtH)~}lNdY># zScxj8K78ho3|<#=(~t!%P?V(vo%V4KPoPi{n}iGpN1F<=Y;33dn!K`+S!sXS=qDrN zf@o7-)*wlW=JVGeUMjLdsdLmPQ&B0&)2BEA$Y{Q-b{NRq4&Pq$$)Z$Jly-)+;r>=- zZPwK|L6OtiVHCSXu`zwqGJy=sl9Fjug6mtB7}soR;J%&iO>PR)^vZ}ONP19{LfJl{ zT8L&3q}k(4<21XI2L7-DzFM+q(^6453i_Jjq#?_UXrr7xL*LVCQUIQ8lN6w14S%I5 z7FI=y-!jZ{IcJiP0S>7vr0Q5lo7R(2$gjGah)h_KUCt>O-C@u}aO6$F3>b*BqmAo% zHbEf7^Uo$I*c>5h4Dc8eDjpfMQ7Y|r+3hLfZ@K%#Q& z%s{m_coI!g6n#W(6RDU^=b=LbO^UKJEDa!g;I@-`?4Yj^pQM!j5a}D}IP4@TK!*x7 zM1@w$$rsCzuR=~5vS1lsr{xnaQ7XjaSw0H~DjN1OHms>obHf_2vN1?Dq?M=yssU`SUUboXGzS`~sh9>ufu+ZMWLb zYxlq}a87MD0?j>*TLG6=kHxKk7b+h?jJ=tau>4b;4T#DY;WdD#OLvu`(gmg2rDE{~ zcm_UR>?tlPwiW)fa4$RqOA34BU(Vm3|A+jg`6J;Qcq#X(Tz_s!Za2ILDF4&Rq+U;bJ9R5w09+LQF8pSAZFqF>Zt!)P*)NX9cGUY5Cj4vj{Rx8672DTf*~TRw zPW^Gmm%oM()wNTO4lRntcA!T<&c@5S!S@IlI2Meuij=t3SUV!SUQJmRjkVczD7qvy zV4kz^D1flJ$RQV7kq;}#LW8$i?K%`Ny~{B>8mr007-k_Q-?#`R)<}w%JFLioXcM^3 z$h2{C2sqBc>x?HxV->{0t*}gHIM`t}D?pt8LmJmf|ILd5JUs&YI<$X za|S3BDmE_~!x?r)>;|5Q$X`hqxGc)M+B@_J8ff$BI?Y5*n`lex@>t_ofyWv_mji=4 zI%WmPV~toLN)TQA(I^08c^ZXoawGl8v-SoI#=!%g7CwrIis$j5P@qkX#L=j7-w z|3}wW?*0JrqF1)Vz=*?PqSM{s*&-AklmE|SIUT7Xou?Q$#JX>qh2pn zs1`jST=pQ~{WwK;8MqeRPXi&K);B~97>E#4pUnJm+6iu;amAzwio8aUF_w=nQ=6dN zu2z{6SqL}DRN;!sC-JBjyg*G!d8ihysQQF3PiKvT%F~#HE2=z?LYqCVxC|VqaN72W zxCk0YTnbi1c^ZWrje}^wKrB}@et|{v45a{pG(FnX$$Re@$XMrOfdlv@$`>qMIXWGH?+B@fZ_o_dSqEgY!un_ogDWl4hQ zDXBu0;`@YRM=y@1w)*F=wB+T#+7H#i^;e#M4+M+dFfkO{Z{*Xz2P= zL;~5WOf{{$3atyFoJ^sJV``j!XyGc9lPDB|#_5L!48#f1rW1L%pJ))WcetN0pqvG zfhxnC-ugdD0dLjf>R?f3VNgDy^h?C9zrK{kiv1hKn{kVO@51j3KP-HqaAo1l!o>XB z`3Lj2eaUeU(Ehsq!=B&E=u;PT2duHQSdxCi7HkcBBYksvb$W4n z_tYz?`%^cjdQwM)e+{>X=Z4dQ*MjeuscZ9}nbFt@c$KcJTN=Q7m5wlO_jPsi4{Ss? zT2%z_-JM`KI*=nUqm z(v^>NX5Lu=qRZC1#FXK$7&3Haq_At#Wx+0u%<`9rAi6vnTawuit9QA}poCo;fqiw% zL^v=&DRA2m^9oSF?|wwBTBD)i5EKkskVqjxxIfT~a3DgmQB!>Phk-*FmYR_Z2_Qd~ zzUW+djhaUvqygM+ZoyD9AReQL7>-)TEg%XQh>$e86eP_B1{rFSw1ADI)de#>8aoQ3 zHfE24?~U35q##jedMv=kkyxr5RBx$Hm}&_pj0Z$xi!cDdv7%FAFyfAiFSkisi0Owo&N$6eg{S$Oz>RmW1v6-kB5OrxKHS|7PWMFjNw}Jp(t8G zg6Z;T!9awI;t))0a1%nk8Sb=3fl7_XN>(Paaj97_5K$343Un0Cml?^p6){jnqEjm^c04_yJ1)O@FR8mJsG zU`Lc6?1}ur;B@i>^9(V!2S#IabXAvl)4c_Q2|**{J6cRmg$PVN<8F(g8-fVnU=gSi z5fDAgn*SzLg#-1y(b!B4u18#H-KMya3P;!NMLpnnL=6y84}t8&{D?mjK^z6jdi6@2 z#=kjO#qR&j!TSHLgOv+>`e9w`B^%oSqhDdLNWsjhW2yBDzSuN#1%E8$G>|5!^$Na1 zL9cXVAki`bKsRkE*nokEY30?1o-*j#Lzbfa0qrWHVPkz9G=+j1)*V-J-C>Ztbq8TU z!CVv3yD-;8)G>_CbYwKmHBExfHAeec zZlGcAI%?;xv}7Z+;4O1kO#wPw0qdmr7}qa8Mugj9tr}@Hnyg@xkv0jSiU}gl&f&(q zOf@((R5i;b90D! zyor&}!oZ=sLmahadqy0iC|YxPLRTob!4}Fiu8$3p+wkH?15r#wG4AO+3OhqGkD98I zhm2ddP=tT;Z28y}kvxS-+!o2(1aN|})EtqcBVjyb2v-t-i~(|g@msJk#cdiOV^q+c zq|GlE&BkE@G#t8eM2?MP7;d3UxUwMU$tlY5P%Rv&P%1p#W}BQ+Xi_SrV4A!!EXO#o zxwx-}sEyAh_?wF|@oS)gu%n0owdjQW2}c0p$7_h%uJ(pL1qm7KBQoIaopEJr6Tt0^ zXiN^C^Z38UCi*L!>%Ag=!imjgo>fXcDGkd&*Rdo1m>z zF@a*@C0ml5c(Hce!_^3OgkWw@mk;~km_%-)H`ZQ}_j-Appl!E1)yKeCve(QOuBf{y z>bPqGkWe^K(agKDnbGoQ#_Kn;ftzN=7Bu;WChwy3bqHu>Md6^2A!%p!JE7CE-m+jt zln|=P8p1P;$s&T2=wmad1o=bo5 z^4sMfls|)Y|H-@Jf6Vks= zKY-WgE=Vs-y_@=J>K{|V$aL?ea;7K!4|KI)ONZ;?&2lq+ZVYLwE{--MdhZpg z2;^dx;hC}A^9C%PVhA~~%0PTap`+b{WS|?9qRqQwIRma+-OLIEs|Q4zsi0zo#xaF4 zT=Zfy6ch_~wRd34)e8$&np8@>gNmYC&1(z?>bz((l=55!iE;Im-ojPs8;yZs4o={C zC*hd`ugcf$f4b}eT@-Tl$Pf&%tl=4w!MEM#lT^4t@rzwA+L>{SRV) znrJKB($+{EppAnXpv^=!txsE^pnX`h8HOpi8K z;MA}=J*S2Mbuezwe$0qA%kfT5Sm-MhmON{nq=2mhqsXW-)Rl=SRKZbGZ1Ci zHJ%0v+7qI&%P@rVmPzvvE->YE5S-#7CN@JA%^gBwI8agh0n{Fj&Q;@Vn_95a>=&9u z)Cs9i)4+j>+V`RMnz^<17H(?au}X#|Fv75Yybg*2STna7ELa(l10dMXX5E^bft%_A z2P*ucmtu}Uh){I>q6!2OoP@pVB-9N8l-%Sbv>OKnoRZ`d7o5+)S;%l#^0R9Qk6>We zfERw^4Fv2+tirzS4sZd`n*yqby3-s3#vo@X@mJTHUWs~$UqVtRJZ47$OAm%c!ci8) z9K^gs7MJc|=A@{Yx;c%o*kHhIuNV$g>@0L~XCaPd=q;cPSb1U5GO&(y;$a6#V%3tX z3Dd93DOA@Vzy~_omWNDOCRs-Yw{0yLoWL!0XyqOo=yFovq&e6^1z8gT03tH zSDK6jXh6+vWx~4SP|(*?CM%=-?4CoY{5W; zkXNwh2x7C44OGz>9uSoV!DciA1=_yR*mAA`6~|ix^4S!r00IN@{FQke%3t(bzIM>Dj$XYCO>~ z!`RUx6t-$rdpCW9;xy@Q=Si1paanLmI4@QEuiEtyFEXaUsbyw=ll1_{VaDwt|PZF`vhYCx8vo%bmnRJ6F!z{&m5Aerhk$Cdio>j zGtvj9GpT1%Ur9x&BT_qrzYOmSKM}4B=js3E_y4d0qr7oj0w#&xG{3V66kexm^w^PJ$MHT0~pbAM>1r<}AezT&@%V3oO0a03IL3XXOn*_>OLY=@Rl*yp@?uh23 z038eC`5;vw;J3YP4BSw>jh7}l#BfE$c^rsreAE~Y z)Dxo3i|M)pD#QSq^Ie@&C{%4_uh~WA4<2g(1WE{N0@q#dN^yZ@yUasE-f~xf zvfKr-46~bglmKro^qO*;YAs+Dk34ILCdEES^OP4-7cdavWH|~GC_V!t*KZ60}<|!MVJ@1W5_W4d9z{*mw8n0O8D$(O=m}&kDzy7GPQJg1C|aiS&##I zayT0bW}I5c2os*3Sh%uo!d3vaH4KDcO4tS{)M2b6ZuuFKUL6e>6j8WDaAMH9@e5bD z7Jdk63hH=;v$Ha01p4&Bw4o%~8d^f3N>4&n01vIjKujKw2CRq+Sg`hjmgYBLAi^Os zpRRGtmC>@Q%I=VyBmf!Re;&I(_X#oMH5Ws??(ZZi^|_?38;feKJnC@*kdKKr&tW`E zjE!=P2etF#S=t0_#PuR@c~4ztG6fh;m}w)woK) zyHR?l$x`E_pZBB`ig1}dI5&h51CxF&0;&g#HcK8n!=!}dy?HUuGGp|Y&Q0dTmnFw) zP4DtLH?h?#(A&-fMa!ejGju&+pVewwPY4(tp$Bh#iV?xC0whQxd?2Ss-=ZY5J<_oj zMw<_kagjLSwP{?`oH?atnC>x-*8^!2I!zz;Y=QvMT<8W8)B;@}GgFa;*9R>esBkAw z<4LOynhC-5+{qSh1l`dq_rzF@&Rzti7Xu+r3`+i11EF9w5X^!ce{+JnZ2|9-xJJ2e z2Q&9S?gVdJD&aD$vm2V`S$zwa_JzOqZ%%O82EkmM{RVpb|BVw|#uIr~hkkU?IVgi? z@#6&OA_kv4hX+U^_T78PaRQJrwa9U5k)V1?X5mK35S)mX10zCKai z`&@v*dWSfe0%w_QZP4zy=M#!?f*efg8U&hHeHi8dlOxDZGBTfQ3}U#*bnI%#)WP&* zYT+tVDFBs#+v_SFrnuum@=e2(fT7m%D6GTZ|C*dAP{D5$x1)Fpuf6-#i5Y=Bs=hEZ>}WWYeg%34n72!s^f6&2WG zIY2uh8XMJ0Vv0|!TNI|0$NSbd`ia=;yK%XJuG#hc67nLENN z5anSIo5I6O7;(vz>tzs_RB`hGoagCaODwO71`I?LxYiUXP1al>>`?n`uDv%;lBqc6 z#ZsuZ_T~aerYvZ@Uc}MjTmiGIL9^Y=invU|yy4|giKaA3x0{LKxf*yyn77$B@24An zax%=DB$3Ek-SAt>9*vnY-o2H*O`MSeJ-4lBQ2~|uZr%s=<-Utxx%E{bkgDnL24`Y< z-8R;CW!u?pvubbGzEk^jZDsACT3G!_b!+v5)pM%*26P8Zya`v6O`dt_e9Y{z|o^D;Bj>k$WVe(DdYAEw4qgQ=rZ zmGIx;3Ahk`fI{$`@dE^tqb+EoqdH^%h${gDMdc2Nw#ZqYj>O^Ont^r;2kO*l%LG|1 z#3Vf}QcNlcXzmBo!g!{3itf^k;Xs`iZP^#5#ek@po@udgo%3~@7nT=CTku5j6?FZe zA(3a6GkMP&Fl@(~Ub=ET%j-$S~;;6EDHH1MO%0f z0&T07z*S}iY9sE3MugD^H!UlE3kKq0(Ux7)yRESc^r?=BvjSvq!%_m`#a~>{Q2&F7 z7M$$DZe^E>E++~^0TZGvJJTcpso8D`3@FQ@Ej#ga7o0L&LlbSD!$-lw(MDXHfeFYS zr@Jt8VCkbR2a_s1wf%e04YLfU%=XrDhf+?VkS0dQI)@#AS%A-ZVv_wyxB->Cu+5+$vFZ z^XxGuHFdNFZk6GqqIHR3I%O6OAh7>Z;^<7;b`PGOAH4pnk9>BDX674S+LT~ z&=u9uA$_8ysV!V-N^}bWiO##CQVMeD2i4)@${lhxxVbt83VP^_Avz-gLe1@r3e-aR zs4`yjlql0p?PI}Gk=vKsnfr!ESN~s7*wpK)-S~TZ$ z9q{IjTeO91(VWv6)Rv+ZQ~TBC^+2R=!Hgv?j~1*vj)F&pH1lYnK!cx@Gqw&s2;Mwn zQ=rmXEA{0j5V2f6B$iHyungdVX$Xp2K5G74TaqMzCZ_Yl+Agv`L=KzUMd3gNT}G}z zb`~`*U6Y`68M#7{!B{I@;f}JzqNon@p%nn0XFe3F=A&b^nWEvnL#QvW#f>8cLX`nI z!hp%dYO{atRm{S*Vgt5fY)vxTBrq0+1f{FT7)V#u&ZA4|5DwI3(dIr5Lln5t5^or? za2b2*y&bDD9K#zZKR95}F-Rb54abT(-9TF8&{a5`ZV)gE#T*-t7M`iJiRaBU3|Qw4 zQlOB&luD1qAyufEv;l)Oc<3b}Mb|o*Sg<1U$wKTRkXN>m$E*PZ5!%-iYl#ZJMVLnJ zD7>3AMf+L>V8EaWtAN7@M=2s};S1wt6E0=^S8iQL%`?jL7)ddY}x%XjC#Lhxm?lMVWO6g)! zLgQ)Md16s0(BKxh2yOv7?B$dQsCjOII6>S3y&bCt`b0nBKfxP>II<)8$b>hrTDVba z=7Lfq6OJF8+tCRf!zj~|$-v`G;^lzO@F)T)(%s8kzRnmpDubruQ3OS884@iRh@dI& zEU^!m*_TU`8yx~y)N@e0?p&xOeN^%VxE6mliZ{8*sH-^^3`7VW5ieFk#ZV!jc{6u~ z!UA%B3iq?P|Md}7H>kP65 zHIv5i*%BzYf&ZYZL){O(9WrT~8*M%v*IvkYGfP($1bG^A2a);)2$o?w(t?Vt?OS1=O3z_FL z|CG5lb4ljNOfCJZ^xf&};0KtQ`gQ8dsbf=n;SRtf;U~k3!^y!bV7B=mW~#gh*1KBn z;5OIRf>B${tk-f`%%MShrDp&vT>EnWY98wEntf=r1yhwv;DJLnbQ-G51j7Qo*rg=p z=Icrr4w+H!ren2>iOYp>$jM;TtZ2nJL3N)QMLDq&AL2?p&gG4d2CU;F^MFarmmAPH z>D4V04g-Y%F#Tr$E~ttq1{rcSE`|dY6gh>V(QUQG1`4#*(Uw6hJx^6l1HH2y(fkiB zJ;j>nG7b_QKzB#KR;DJpr74ugr?($BhSUo6i$sr!w)CfW!=We5Hp|JD6(G8~S@33M zEsSqj3TyY5CqE&)J_rv%*=3pAEW8-5iiVjGmvGierkflUSQOeA+xfgo+n)5V1I+)wi=6sJH41sXJyA;36{$yp*0bNf>a2P$}D2r$}T z<_4y#M;5Gzr?L_}Wz~vk!9YawESKgni%-9K2viPFp%no!@v${=7{j$-yvuxyf?8%i z77Ro*;7OQKVIqu!JaUi^RNWbslLB-Yh!bHTEKs!1H4sUH^1ICNE2PKaSK!L;35H*Q znk8zO(~0^P1TLackdTs1qPJkB$YX(MA?y2h+sJ}}h`zp5`Z^I=vftMQs%T4q#wOQA zy^Cg`K*M0Ln1g{q@&*IKfP%I@7Huu(?5K`zTPqMqP%)nG<8;=jgv-7K0}(bzLIw3+ z3MC=?O?_6t+Gj7-nH-uN2mR1zFIDT&)Mp9RJ_~&GS#Tmp{t$eQ6Z9sDW1CgL-~@i@ zMc7V|vq`}6wi5)1NkmT_#~<}CUGQ`s_n2Yf2&f7p`i(c3#c-7j0|*&V3qMN1$oV~x zbB{Pro8+uOW%@8U)3M=9kJc}RNtDGcjmvS^bfe)a2Wej+k0h_)Qew;uS^8Y8A_N#N9b>%mV&wmH$3 zg$SB1a3_-+G~G)>7PPdS739gd)=nrV^Z*7TG?+1nL^_n2tHBBc5_-Zs^aM(pIBri6 z7*JqMcq&lCT#Y;305zG102#uY!(mTBB@qKsHW7eXoIu_$&oZ`mCu z=y=<+W^`~B^%0`rb5xov&FXeP3szCg6j2!OnJ)?gfdp!Nh^j|kxNPY{7OaQ|0kI2+ zrZ>CATCgH=Wh)TX+ZIHCfd~;#r-)4q8TXAW=314Abg#{@xs>;hKOV^9Q?!1hvq@)lR*~mu#U5x zV4xrixyzf2*e*4Au9Wbcs(^u5O5GETh0o=xuj1tYqv=W2f2n?@dS~^fbR9eYjnux? z&gy%s#}*#N8-RONiaxPmQnktj zl~XE5RAz>MO?@!cUfHiwOPy8;((Q$Br9X(X1J9SAC_hmCYWW|_x0J6zbbwCWD_Bxq zSe{beu^g0sS9-qmqtZ7^+e)7)eXKNE>J48`-CQ~cZwww>no`=ilq$Ya{AKaU;)BJn z7XJ}Z3ZvrM;;Q1g#S@E%r^bpiiu)q2z`KQ43s)nqz)Hj|Jg#s^VR~VoLOJzN{;mA4 zQ%C22ntvpJ4{j&in*Y1}NWL?FMt*UAett@Rr+hm1``q)nAK`?;U5IdaW9|dF%X00x z({snBPtPq#J(YPSHzl`AE|YyDy&(I`?33v*^L+N9>^<4d*-vFZnjOh@XV1zWmz|%Q zm7SE`A#+jcgPG;stgOHV>6J8%eVy_-tl`|PJchmYq<7s%RGdE$^ueDD`dMY!~Oju;aECBx(u`N z;jr=Z1R^J>!pr{2G7QSd0(X^_*(Kg;e-1v_5RE1koLiE zI^Re?{$A(1F&uoL+xe~|eOoLZRBq2%aan`)b-^`P#>i-;k#Ob&_j@Q@wmjxl9KT`x z%R8l~r~=8!$l>+jj2oRi^+s6#Qt~|r4clwb{T>P@b|y4QBi#Ex9E8h;gZIzGF25-w z-0$v~;r_Mj!>?TsXNFQhxL^cN3H2iJVpK>&>@3#?L^=)mE`&n3ms+Z`SktA!ld4ELNG*91O~aL*}~ z^j;~^l7YdiZ%D`wG#bGp-;Tfg;ZzR3^M^QZe`9Uf`ACus_JfBHZA(v7TIgFtYp?pA zn?4jgFzjR>3huy>G40~e-|&K`6J*FMczC+|Jsh62#Qlc;{=M^!dUh2O;%Lni9(I!J zL%~Cj#B!m&4~L5{NJ_7Vix?Y5l>R!b!V33$B)I<>_ZuZ7D#4SW;c+)5Z4AvGx$53HvR%Cq*e*Sy>$=Ypve~eqN2OF=B z6VVrfJ5q5XirDX!3CHofC6|t{U7I_Y`;%!QFlTQcdq8`qbAyG_?LFF?an#!S~)1 zXNBDke)kjSb0~QE=H#=!E?io*<-)6jnk>yb$>;^wIG>Gh$sdz~>cPu@pCk@8g8P1) zkb>0>5Bj*RV;_&;4uyMnxd8P4Z?1K7KnT}41na?lk0+%K2KW6i$qk8(2Cp_8Kz(Fg z*mk=MpuKzE0SwmH2H!l#12n>8|7um9LpVFpv2Q0lK_cOjczniOWMF80@OnH@5`eaN zeeDkE{Y_h-F$Wu$PfkjKQa6HEZ*&0zL&0ydF+e=5!E5Kmr4kT!CUv8?Z74h`o`b?7+Yz@i8T&B+vDVVWBvMI<5QLidM^lwO(X%s!LvOM z0w@L>?{_G$1Kn#I2pNJq&Ph`1B==M2o7mq;*a7;+uiNo&4SLksaZ&6aVD{EHGiDpZ z;gZwiqWaebAAT%Oh5C;MpBqh5hk~cij|;*$5j=BbOq+u#Xm=**^^x$TM-yUH(-V0d zP|OLtA~c}eL5JnPCn>8QJhR9u&>ATD@W}dbUfkaZ3HQz?)L^EAXYNb5fqjEPjXQy? z=!55+$t1gTJ_(d=|1VR&*PcK|qfc-4i#-~-#dA3sL4(KQ9*zMN+V=SF)!MXRMeq*y z|L_J!2lsgI`4OU(^`6W$#Tho^*- zz}_SH|G)h=JKD;K3E23cF@n3ra|Ro*I)fX1!*p~_juABKu#?&DL_9k+IkGUbr#sN zy^*rYP3~?pApo0K|?SB1|n!4!d;P$@oC0z zrFk$kQb4UVEm&zTBuyOm5QdugjNwXC_5%d9MavaalwFw55iUW`?NV6*Vy6cW z_0WTx#XX%mAL>CA47~p?J3#Wd2o!W4J@x1)oK#Q~JPnEyRD%YSCvdjTMa4~Wb62!r ztqt}Mupubqn-MJ-h*0_2P53iKYzJRM@i)|5;Tk<&Hz7OZt*AZ~>;*U3N?jT;M{ zEV5;{-avtdt}zvA3|Yh+yWK5@0~HN51r5dE0Hg^Hy@s-I(@+B%HvpL?BNOgZvR*Bj zEIiI6CxKw?_s7nva*1-homGWe(eW18q-g6T>>Y7yN^0uv9Vt*N%G-NjJ{GW7Q40qu znu53Y3@Ukco5F&XCU5U?Z+Sc$5W|%wZttPj2t&;@Em#rv0U|maCxgw177RoPNy2J# zEQ^bGheYgj+7zH;NZbpfoCUTFiAe&Gp%r_wVi+`7F~&u4g%!hriY|u8#OUReJ`vq6 zW}rZW9_%i?JZ9BX9#fE+WDH6GWSLa$7SpCET4|eJzN2_wCjOGh=I|EO){(GiNV56cVI3x4Ld+3 z+Hpd_l;!H91%s>8qOEN>J-G+Wo$_>qYkU-nj)M^dL$z8V{UL)2gDJ^q!XF$}#GZj; ztY#R5Tw1t=V=Fj0oi^CjDIIuvw6)6n$KZo?O!npRnx+8FfW_KDF)LI|C@Y;it%?~Z zXd9N%hV6>l)P@EMH1uHJp~G;!dOV34u+rllIz?>OFarhJzR}hK&qir=yt7dNX@PtN znx@h87q^Kl7>MXuyfFu<#h7l-is4F=H|7-75}U|^fru`cp<KKrWt0y zyvqUM9qOn@-heR~Yv726jBEU*Pxazp-!RHBv4~U zsuUj*kQ?qi;35J*Ht&Fo0I40lbqtI63wfGD^D<1LcLrkXDQ9GMdnXT(L9f~TTM&hT zXO;*cn%f!{3`89I!J{WQsK--f#Pg@83O03yO#<(@$%*$*PLUMgdzvjk)$9QcKeXiv z3LH&kxb*~Xz$$QvnQzH+20ef~ALgKpz$iD3>vd$bLMJ7Ex~f4@nd z77Te-3vIan|1Uw?lWjM&t!SH8`%~?)+U8nsZF=?H>c5%$|C1}PVXyzn%9)jY%CDCn zDSy7au6%lVdg<-b6Yv47E-fwXS^OV(vO;p^dJ;pXuD;RWI0;m*OYz$pJa|0YMjy8il%w zuRtJ8jkfKDhQf`f)#Egj1p^UW;i~;nSgnE{$+=t^D9|QE+xFlkD}&^oJrWpD4v4n# z=?h+HqN|RyT!R+Fl{;RjHy~oV-O_@AcucfyR|YP_btUP+z;so;7$;zK?I4Q2LWa}5 z1Ng)%C6GJ#+68<8Rfsh66~j^7qG;RB5=|?{oaXe5f+>x26I+;!&svsrk8OM&0}D>e ztyeDtRsmr2murVKIL!j!p-*jWG!Ne!P>RI!nnwsyC(enswZXtlft-x!y?1U67{-Kh zkvApqYY0EZjuTebUv&!;L|u+-!>|v}OibFVlL3PVunPAk92-PzVO60(J0aRuVW=13 ziD>g35gRB?mM|(m$R~ab37h;OX)5kASi@y9bW%|`mo*Dk)=FSaAiNL2+KR4YPrB4TvQDS)QWmWEa(I7dPDOXj=|rQG182l{Xd{ zFxrxGz@yR-#EfWLmiH@|gN1m@B!wEewe!$8&@)807Q{yvsG_&arDNC9 zF)=DXUarRsaU5G>pg@Ds3}G}`Jel>3rU2Dwwyy@OP^thV>ChY+ZjMP~pdg8<t*f1+BDGu7Jxv)6mpb`h*=A2F+x1o;>K{GVjj$^ zYywhDud9#(z>0{gZ16sCgSq7iE(-=CM9!P`6e2g?#5wMYJV^jDy7(zlYogMP?wT>) zlLA!Hrb?|*II&y_63g6f+{)YaYrHx{BSb z6gCMNu<9P<%}Lag#1-FLbtfr6M+5Mw0EZK|0W4S%`+1sXidJ=~(KFV_>IE#_9oK!FCmc^{g~>|3?yO$^tf zd1*{QO42Rbf`N$DBCpv~KgDuDZ+*wKO;DG~5Mu4gl?K!e*X((OoTh+7hg*OJqkzMr zt+++DO06mJyekL>OpWLrk{e*Ml*Kxi%Q`TJYh75%vQH!HM0a+gP_`e!e$x5Q1r@i^ zWPjs4T|goq_bR+WTkI=#AWTVXMv-G~wDnxv6bDTy$Q1!xBLH$3WYi>GNFp|q?1}IK zJ|-CPKAGE%W4Ja4FW@VvMOqfDh-U#&1A|EmyJEFqAVL@9t{IqvYka)W&<7~S*lu1wP^i{@1q4r%j*i;0xQXG4daCI%U;ouyoFW!QMun7_x1=ijPVgN4MLA1`5J( zaUeVqEJ=*lWJweb^Dzhy0npTvpcI`39TsiFYzt#6@yJ-y*eYN!W^!8=W%~ln*Nx_j zv%1ZvKy4KXVHEE|y7fTpHP#MjkR(GG!832S6Wvy}U?8H<4iqXmn{`HkK!UQagk=-u zK(*M7U1g2oO0QjX(BQe1SVfuW{j_bDP@~}pFsM2hcq%H$Zx-NIP+&ko2j@+HF{#9H=_n9L zFc*AsNiG(va=J}r!9YYCV5Y?9+>F|JZD7FK27TI3&@)exVT4(l8@E$(upPkWiC|N| zo7jwzP~ByyuBGHwS72HbUhK!iUv@6%*2IE=2)>S|(g|WSUj_;^I0KJ^A7iE7pT?j> zRM(H;qyYWEXxmaO_AOAbU9Uru0A!d|zWTG0564l@K-ukdF&wC9ARYiTAY!`JvS6io zEKN1T6+kIkOtpmr6(T4`U{@$rzdo==UL66SM}bcy zu(e6m<(KYdI!OA;d_QA}{O2w_D1uNoVK*WwCF`HY>f)$Y`^zh0X#oR15 z3kD+e>kzsXEjL7U^(#pLGW6?U=mL&lO7X;X^(%%06}@4h^ak=tM9&0kcA&vwj}v<5 z3O&^a-!();z-4s>!O|RxlX||T-C_Zh6fFQ)m?wrpN^4@FQ>y?p*nqjP0T#)%0RjUG zl#nOy+BLQ8U_ilc;DJ09X^Nla6rU9!N11Vt z3jmJYbh9ks+d5EKP#JFxYv3vsIbTPJ_(fc)NPgpw-Zo7rDyZ4W!8ITRr~zoVsnV|q z64U9nn_|lOPpHZiwp*_iwOh1-f*u4r8G;o6%XI~-K&{69Y~0ucyR-~cY4Plw0Geqj zP%AKz6_5?^7NcgtK&)mK2PZTB|Bu_gfENJHY@1wrwf1oBv$aNTF;@RSss3YisCsO5 zH=F?Y*UE=0D=O*oPs^j_Gs^px?k|0+)L%NT_-^srxQX9WJiPEq;eo=^LM8tqZrJza zkICJiyDc}AI~nWzH?#kW9siN+ip)EiCo^Bn?2h~J-^V@pwds@6lTz=bw&TqIj8rE4 zd3aBFeb^ly9hQQh$FKf<&HDvyIw0CEt{bYnX>-?}$hJA*B8lzdx)IbCubE;B;=E`( zW*!I*Dq&ISr1va}g^NWQ?pSRt%67~`u$RhEsLbQGnSp|d$P)v{n9PKdUjfbQC13U<4zz?3^qKp+dVo#RzPp+Gw? z+I}1-s2!-fl;}-R6^aqKqdwfg!5jP-#sj~cg?814JLCuBY2xk$HjTSFh6OT&Bx8EE zFNIb^LMkA)hbRynoEU9ilG*J86_h0m9PAnv0m86IvGP|OWLYU4-%=(G4~vw+VEba! zx?Nn`%}r;ZD06DG{a6Z`_XS(`*(?}{2S(d@g8>dsxqBlFx&va80A#fE(QIi5moD;_ zmbP$ZfD;*P%UVp=7FjS5Cq>(jq>-^`t_T$fBxoWgG1y^eQ#TK<2CDo?R3aQm9j}8y zzZ4GC?Brk#mKLeowFA-ANX%(&_F>F^;iJ3E|FR@nt=ihD#e!xB@;1p^Tpjd{$X7|m@*1uBwGS_~~0Nj##gasImCJRH_CDDGh`f)wE}PMO%s+^L@E zm=-u`2!-9E{*IU_(}>tDwB&TQq)3MuUE67(%H#p83D8=P2?!8K=nYgfAPJ7AXadxp z0|w}|-OgJ8TEcM4j(H3RS+omo0f?d_GzxiaR&;`axG>s28OxO}lbM*_awSgC<;w5~ zA0+`V7&#Ga2-neA5h=hMIW1i0;*txQin|9VK_aND+99{u6sTgGC`jn;w2?j%fk1*N zCQuYIvuw4cFGL*Bvzl1{8G8eZ<~FIWQg$^CZ37 zIolx)O;F^$V`O5Fi_8Qdqe6S3LNNj0x_vH&19effeNTFcQ6Do&_PxXgE}}Qj4syR~ z07G=0O}9AOj=KO?m=;GtvmCw88!*5N~KBHmNwzWLmXLEWzulUK+B@h_>hH$wL;C19I{_c}a?vkdqQ{ z+K~kqTj-bIq#?_KXnPis6Ib#vMGW!6mekgboY<6#Y%t`R^z>6!VhA?$)SMlFYzWWR%Qf z#(+T?-h(Tkvck0xb!~uw0u7$e%XxxrWhWYvBBLZ+eQ{EN4$s_rjx~xt&R7#C0J)T^ z1b+zs8l?JC7h{)wQ|eQxk6~5bo4z2u0+Ia?NHe`>x}5rR>ebZGQ%|)0zU`MdDey?! zJ#AatKG$|r+eg|)+b(Upux)wUk!^F@CbaF?ma6@}_G0bFwFhc<*EZH}t$nmMirWO| z*G{f2s?DxVsO?xwSN~A`HQp8Ye)U_`FC*6A-&e1xj#e+NUWjM|M_1=pr&M>ZRx0n} zw868LA6C9u`C{b`oI1Fs(x|M&4TR$>hgJ@#>`^J=6@uTCpG`ejezg3Z@?ELB5mE4y z<&TxGEDx4fnwWx9%e$9Lc%$&YO3xvx;J=idI!)J>hFJ4`&7dwk*6;HsehMC3vifzSI;f?e)>01gf z7Jdw0$K8c3h1&`@6yA?$gB^u)3MUm773LNu7j`X_@_)(yF8{Oq6Z!Ar4#d{{ZTXMq zugVYRJMw4ckIx^PKPbO%e#d+^_fGDW+|P6W7XCH&aPAwqFXrydeKL0~A`jMcow>8{ zO5$O;sTy+-5eI*geK`B|>^AsOuFtN|uF9U5Ju!Pkc4l_J><-y5^IGQTh#B}$=AScL zGM~*{pSe0y&va(a$t=qpk(rg*H&adjHT_EZx%8vyZ>N@~4o)4A+ACF&Fc-b6VN%wH zcfAXfbp{>8Ffn20K@wL&zQWD}6%k1YnsduioHI`gB9t+_jn52lr`|FoP1@_u;sj1HtR2>!Lga z5&GjrF>8z&^v8>xPXxN$JNZPdp1CY8h9Q1}XX@@Z;^!=oATlf#=?ti|FlH4~2|z}J zHy^TnzAyM~tY&L?*laX-wra~;GcYn5Jb#K66wE;I+;8H<{(;fpKT^f?PP8S#Q_q*u zyWrPq1Rg!ZbR%?}?g{qyNZ5U=N?^5^tH0U=WO%PlKn$a9jff*wE$lX03KQ1|9{YpM z(g?fvGsQK+ju#EMJ{mmnsQnEa5E`m=ghhMevG@Z;d|E3(C+%AB_-gVA`_z52R+y@HhvB95O zw0bz9X3@|A!|r~=&>+a+b0GdCk?y`27gV}0wImVX>#-jh{szMdC4(i}`RGTC5b=d> z6qa|f->mX*c*2Ix z;(YaRiiSLd1xK}lClHmAW|d#ew=~X&z-7~x#Q6q;C+1sB&V<7i2$_Y@n#hRHa7A2A zj053{qRoeBWh)A{jx;tyVSU$_4oj@>V(1|J=lbA@+f7ah__VA2Kn%mjZ!_5t&y9$8 z*lf_g;PE|UOelfv7L2<11B-@%GQ4HTqG4um{cA?n;!|hO(D-D!O9SM!aaM4By|Izp z!ola-6O%;DKdgcyG3|^xc^hOz`@~g{vw-a5F>N_En6Sj`f&cyN#amA;i)8% zxEj?DoKb@K{!>gAp)VK2IT1f>{*iG`nC|e_ZzP{2q>&9t2yKYu`;ug^KJ(dxR6U&e zOk4_j#!usq!QinU+A1Q(=zNFp@tf2 z6O187Tkx>4`f>$qXkGY`FIhI}&k7#@Zt}@u>dxm-@ZhAlR5n%c;Qnzkt-_QK$4sCT zP55Q}h3I#I#&skYP-6s(d}M|Wg$96m#UnFq)dzwnLQ9!S5q6(%X;BTj&x;dT?1UFA zSM*Pyr~~6<_Mbpw`J!YbvwH;^0@?xyIYPqdDrDUnV`2J($3A4_*oX1)t-A~leQ4g` zwF~1UO#WVulZg0LQ$C`i0`skZN)mzkyCe~~Puyzi+=uy#wd^>Rjci}Bh*YQGt>Y{e zd9oftreKjvaHNsxowfPzLT8n_M;1xT{V1k5v_ggCH zLcyzhT3#S;BtBph2QVVO_HCO8)x+m^oKIBnB^fCB~gRG^a(aIyG(dPPn--+ z@VzQYh7@1FEv7wC4_^Olf-EK5kr6RUA$|?g%aTEQZSdG5mK0kj>^{Ph!e`ihc#?>6 zp13SYtOrjF8r8#W>KdaMYes@cZ!qn87FZq^RsIB{@}de@u2M~y#MzRtmGH86>85(48V(PbEK3?63_y5kQ z&OjW%$10mDS5(fb%&cU~&z8SYzNy?(KB~NT>5bC2OE)79z)_{Wi*FUbh*k43#ocil z;D53A=23E1*SU99*U&X|RWk}O2w4b_gg{KffDmHFOa?K_fWh6ZZnccmEqXwR!E=fP zE5Whx5QpnH32{awAv9noo`)oMJlofC9LGZ(`^Jf5-^B53bAQj?=Y8wE^;W*`uJ4a; zt-CHJE9!dA^X{|HKKsnm6Sc|O1+`-ae>C{{!6ye_J2*19dazafX7xSQH&i!PS92HO z-&S^29;u8}UQlV4|AG7NUtL~TUdl-IbEUVJW=rcz%S+{fuMF(vHh`B7tYZKFmy3If zw-!$>{1}z}zcA01{wytb&iU2v|2eoW1DAL z(blH$rJbGHlERcK`AZYG+(={ zv-3FCsSb3kWssvGP2Zw zL&e0ySkAt7p|P_jFhsntjTfe;iDNHx(511yV%wv`f>10?+oNqo$UJ9AOIP-#r90y} z3GSZ525ENV=whdxP0YpmfByr*-2ha9+z?r!5_`qA?FK-`wpvheEN|NscdBk}U=0Gn zd1{J7rG^_+`A&)P{CPm3kp)$ZW{T#w@FXxql2oxI>FjkVI@u&80Uo*C;bifsXvUGV zojha&6+(#$!G1!DD};oCep(P28Q0wjwvHTUY65$dMbaCPo+twfjVKF5sq4wLBPWj1 zFet2oy#i;`T(3Dt>}(F2oF`u{Ir^wqjxZ>!?#=1HVTxkNgMN_2(na)u;F;=HAir$|9!TOcO{SL=6g-WukV8KZbyu^Z8QFe&VT zxW@{Ns?5-R$QGC+0D1VzRvF)*oJ|uLBI|zBR$2H0q4uG~wX1C#LTznXVa0Mv)ts-i ziJ7hD0`AouKWy&|E5%z>ZKS>um)wAQ`q|jFnjTQjM22~ibWCtmE9B0K-6VlMNiQQw zTJn{}W%4*lDef{inM|n8%*u2a;=<08lk8~<>cxAS1i7S*a$;T}3xy(SxLS5dt;-qj#&KN%ftBu3stD_oDn}7aZFMJQG-bub zFD0=B;3af=xW8E)BC=T(b=>KRLXe52?!Z!j&hBxa6o*QYyqzLB=9mkPi)1$dGHds@ zv33u}6uenRo*6G~$3c96-kkMY$IfA|H!_EC9A%rFw%CRniJsJ{KQ=<^9TdrqJtl#X zOWklQ#F4SS#02)_-9qw4#x}637?g;U*A0M-*>1*c0kimH2TO6M>dpl12e&S2uZ0ub zb=92-Xy309Nnn?GgXJ2;KK^Y?;VzTg5nN_pLuutT5Z8&wh$A#O8H)xOiFoUEc&kNX zDUZuwK%upo%L|v5zU<@w*9_k_yrTWn_Mfz0)xN2{f_3_jvp&C_{r`=jPq7OBz|i`k zQ-=ncpJ_hc+|s<3_xirl*xz`Vwe)iv2i5<%{=xch)$greUq7i{s{LK<>DnW;@!A^R z-FrV{|CciDLI1lhIl@C{byK)!f{#N-LoCmnKd}(sDs3%s zdT!u92R=0Lwt;&Ft{FI?`19fyiti}iU%aY#Y~g2x_t}X5oX)N?n~z6E-5oQVj}6pN zbYxT=ipt#V{OE}Obvd*pnM!M|pFiK{mYhVzkcKzhe zt|EJxM@EgB*~=_Udzn#0|45DTmB)2<6-tL(>h!J)FWXTvb_p6RMu1$5xqf8CTW;Jk z)4(OT8n}5b%9yc~(J$tb%(V*i4s@LN0X3)Fsm|NT2$z#NFZQJbHecGQeJVow$ukrh zBN*$aC0)F@=A(a@c>2!!6)8iEKGPQo?AocX#z0SR{`J-!2@H`T=Y7=V_NnnQHFd1x9a36sBL^WZ?ChMOWtS)<#VxxamvWDFc2O*M28iiwBQXrvYW)}1OA!Wx$KO z-?>LFs_VtO>G~>v8%~0g5C&rEdKtCPZ8%~AJCVy7aAHJy3gYZeV2I~*cIp;}5C;~_ zboK*mo&A{+e{^GRcEnza)~?!}+i2beOWLganK!0rru;$tJ*I5=)m^0XPVyx zcY~_i=2T;5(rQe*N{>WvVFQ<2Yo)-PAe)GQheT|cwgDs#O3&>k|450*IB0-_>U@Ig zt2;aIEFCtZiV^y<$UV!#sKvRW2rnzo&T&(ts`eTElHvH8DXo|2-o_1^T*XW;$x-ua z{Rtf#bAiKV{Zee%Mob`H%?-iihvuY5blEVC8Fap-B;8I);uw%el_^P%5*6iWWCNd5 zl7#Wyg`J(;>+qm{Db7=(6jlsWTr?<(i#WL$SN|d<#I4eZgT9zdvwchKgFsB2X$eg3 zQt7Ryx>APO8KJn+bI@HtT|kXh0xg!7zz}iwTU0Bh;xe^TEYB`|pzGB~p3i^V9U#cF zOCQun%bz%Q)T8Cn2R3Z?qXpE{%0*dgQdXQ+2O&{4Ur*JXNQ$dw!=PYXb@bTiF8zCr zo4~G@I(mlW)DNiBu7#!tRr09}s7I^glJ-POKH3C!dAcdm-%^o!aV`YZX*wXOu6q8w zSwNvtVmJ-5PHWLN6v~tsN9DaU+u5X#=aFT+_C$w7m*VwC9#EuWX5G>tmPoOg4TFN2 zbxVWh;vw~#Ie{UzqxmJ#;(WF7wXTz)J-v+f)T4{rQypfrRC361-J}@<8JSc%YN?!` zv!~dp>n0Mk#3)?<3ZpinEUwORp6uSMNmAmJG2 zGf-x?zM#2zt7hVXaufpn?9R?LrIk0Ze_bc=WHbK?6^=}+xE%-Q!uj;f&d&4LGvEEv zqT|DO&wNiPpHTs?rUJG~Mk&oyz>Zo4%u=FNz*iu^Dkdf{MDkhJ0SIwk zTr&j}8U^Jv6%?|RojZxlOhJi)_yAWt6<16?aM`gdMj@{6O6lwERBr|+FhtCC3g#NO zna7}VTmZWPF7;%jvI>%+TU)!zy06Z54P8} zm$FabgRS3cO)*n&(9lIVATtFg)_zj^eC^5FYiqaH&ZrIYV!)pdzHRUx_Q)?TFDd=J^o7!%(xaS4xVUuG zzz+sKHSk9RuNt^+;G}_4@pHw!#Yc;i+!SzR;d_OT6$*w~4pd_}i%TgPv1$Qz)#z!mz!Gi}h*fhC(#p=R+cXs1$X;NRmFZ~*SUv6ejXZ-F z48wh_Yd30=Iv=~E2u8{EvfsvjQ`7-0b<0BMQ{`5q;yZ%1d@7tEQTQniu#Td z!GGgUjbW~m?n<4INpm(0sMFMQoY?f-ELx}!pPNMs(`D2GnUWh|8zcYUHH$`#O#e<7 zliZ!FEF7dHE$!?&S2G>Fm2o%Kg(}gw>y_eAsaMpUbI6!+1D?PT7j|}?%_QKMM;lK9 z3i9In0*de0q^3uE>+OI-BLQbA0h3g(V#QUWgOEso-p1t2q1u2x>yrV8N&?hj6E!g7 z1SGH%)nOau*hfENfSq`{OEe}r_DD1sB8|Xlq?kDRq&T3^Nb#wp7$Bcw2O%x*>{>~$ ziwc^dAGM@R)2)_wG`azhG0!Q=UyH-Jnfy&~r=Dz7wm=23S!%$cV#yV91?l8M<8&u5 zMAEH2jjT$@?Sd8k0<6LVI zP^8ne)2+Smg}95R{gI8^M#mPS%EL64~Sg~Nb4O&4yBPV{vrN1>4nUAP6!jh{(|fv%k% zs|5O!g%S^hX3_nMctC&~`vs;n4fysTLiYxG~4M=zC8B4zc#k?$&5xUKS^m|f|_KdJ8 zSj8H9I2qx%CsnUoIh3pH64;4HiRe$FNn|GS07G2S*>xm?uu+z`T_JJfL0A+5{glqG zBXl@@jLx%bC4RS`&f)YZ$Uj)%A6NuRa{hxfh!3bo4!3#)jkHE9dbS=(0wCkVdg6*W zy`qJiFrM=4j2vLM>q8#W9IMV&JoYe&;cCaxL->iX*is!^)5KI6Uwc6kkx$9#sRAS=&M zr|AVMKI}7Q3Me$Hj+&~DBy%!Vhi8tF28|SKmL&=F1ZWTA$SAVBmX0$Zfgw^r?1?E% zX!>X77`0}NIA&5=gSKZCG<WXr0?Sxpi#okXC8v2SeW)`Vuz^{)L_He

+ z?;F}QbUXJ8UNUsn(1}AwaK8WN&F|H|)BIZVv&|1R_c#Br`CHA`H6N<|v^m`zYu?P9 z!g=+2^VH^X&BK~iULyQ%<7>P|_>smljX!JrPUDU2N_db{{$q{xjcXbgHqK(!;dzar z`Y-C=uYaTdh5BFCK2d*n?eFVP*56ToWBuX!1NG_pI4Autudk{v;cBAi{`Z^(p0mJn z7I@AA&spF(3;dsA0Ud(0(>t^C+ls&Ys7^ZCPyO1Vqnvh^7;8QA#mC zy>uATrsmFH>v9=DZ-20w;3r8C#M`e*g49vH{hAQOCV=e^{4|(ACsjD+PQT2A=p6g@2YwOk zWvAK+J*-h$peUyAzhyZ2bNjU?1;x4O;5yAwwr&KK*Khv=Cpzi-{0 z31@EIsfn1``)^s0{=NO$6$yV9`Ddm9_ul-7bhDb`<@vgYR3eI=xVIV0k@s~a@8 z?v_-*+`607fZ6T0RMKy-(aj5@UvukTlEyS!Tt6A|jDzj#HzpD|z`Xw7yFc!|{^-<~ zxDVjXJCayu=5F|QA{wXLe#g$}*Zh@SlVaxAuy)(}|A>Cwd;RfUXO&2<6fqYO^#(3f zIo2|U%tt6ArbNu_{EdTA;N1Lm+?11iID5Wb7NCsbc=Gutr8>`SE1v&w8lUbQI{%UA zCnm=r|Fxy;p>TgW{T&hM!g54UUy@n$USn=>$t_p6}e|-{<;?>D&K=yuDc;I zIQKg&#b8#3r?+yk%F_GNU)&7y>i2ek!Tgs*M-FNe_`X!iZ1IG*rcADLSo+T?Qy07Z zj8k`3Yv_^>LcfzFVQcXO66&_(28Hd{pPuN<{LGEqfZ$fgdW4J}R zR4#VC{*1UaqUt{0JwfhhQJqJ?24b6UH>axwPx0H z-%C*Io*68=E)~U3Y7-@@3s`0%Y> zt!eHm*;MVd5EiAdpj!l zV!PCVAghy$TkWPB|EVvx+AT2ro}RmJ`}V?5J`og|o_o;?-5y-Nu>FpAhNyM-(+|JU zsy$n{tMKu{@Rxc2@8RK>4xcxCSo^!}547LWeyDv%`|S2Xt#2}te>Kj8^`qf!fD=jn_6U>VwZ-FZrup^e5ew2nGqrNglj_mj#-Hm4a|DaGANhmjxJ+H4tFPhqm?@yp$nb;7@XacBV#OKmAfyvI zyESuZ@;%yk;w*uksDs+NlT}GUUQA42k5&h@c^5e!t%H!rLdx+?Bb)6^FT%1}=&)ts zmif)LX&65m!jJ5pI`|nsGSK{pzdV1M${(WR{vvbEO#UReC##`k8Dz{%vH}coVP`iL z+BsXeHjn7z*;qjkaNZiZVpp`}awVY9$Q4az+Gfw&u z-W*9_*GxyTF?Lu&ihVGk&=z%e+fnR5iq})@L#J@yXZ04cws*$aFpo@!uSLu7Wb5}*zO4okp+ZTP%>EJfEp&Jt9;=AQ*$ws+2Vh17N-Y>(w`E8yFV&jB8osh173df9DDA}45u!wOBN z85U;Eu(j7@8%K6Hk+Lal2h3z!fGykXSP0ohe*9muy^-0bMbB+-40CQA#v6QYdt;%1 z9V-7{w>N5cjas+3qMKlsFev4lGJ7o*lkFY>>S<&W7$Ozti`4K>urh4CSYAM#c8$?! zvii^rg+_V4+M3iLEK|*Ky@z$VAnB15?i+DYG08zBv5bBt9k)P_oo#*@% z)oG2iR<{mjz5Y*zUN&^z(1PaonjdZcZu3Fz*gvW9Y~%BdKW3%<=Elm#Ah+l5<<|U7 z^^5C^YCo-gq4sCBSJiH-oyl$Z-yZxRci`VWclLm7!~Qj)y>J=(~*${-}e_jyw3>0LToobToZbQ@c6e3n(-OS-J=aAn$t)x}I|! zH?yy#VzRB_C68%um}2m)ATy)WDjn!KD?OR~>U;ZDHvrkp5X`9O=j5Ejrnpn@u}f8@j@#jKk>VO6pdO`N3pAPX z;$(~l*yT-19!MV#augaKv{4?Eu;SXmK}e@}c5?)MJ-epNn^7)vPAtJ~lr+P(Pa9w` z^`XA41zM^zecJ$A-_}0C^Hz0sZ(x)(!bmNNCo@V)18kI}uSRS5@=`c84ER8M!RzOk8rq+ZC>H{B5EQ73*z zMiZBa%SAw;;R75S#|P}nMG5Tj0mp+6j7)K&U4yCJIsqgp<~Fg397Hl%X(xav%%P5t zO*9f<*VIk`fq3nn(bQ3BlnV}!-xNMX(M-7ru$K#ds76Ljoh4ULUQGiL3+Z}D<634@ z^5e8P2#I=VoyN;N%OXx(4;co9z12s}adHES zJZRQkHde1kj5`VqkGKYppm7B9!WFj;Def9xjn6t{28lByfgxfN?=}YoW0Pzc7wDub zvD>D*`^^s+2noCC1UV#&FSeUuP)Misn0eC9)sM}=PGK{i>0~`-fLvaRWjY<#+0FU! zOP$fJW0;*+xDJWwS^1MYyD#N{UzktI9PkrHPVxV_ih~1wQ*t8`aS4f-3X^nkqd5wViuD32R{Fg3yF$F(MDJ*H10drk zYw;7RW|2+D*iTa2sp?GY^F(Y+O>w8L5mlys_d)9fU-)w2JN}_wBmjGTlo@ZKv_nrZIWpn$B*{4e?eVx#AyWCSMbrikeB# z@IEw?uYB!uYv*)!b5r)D@l2`AO*8?f`V3!NMQR@tH_oHCaXDQjW$o)Yn^W9Pd74Zq zsxvdD46vK>RGHF{-XarFH|0u9sr!m^rgRVzYd@!G5F0p|5xRjkh$S_og$9ok;Oq5* zV@OJ-!Ao#!@TNHMYad~N6;>qhk3I%4zY*>RI7xnPu4F3521sC6nk&?=*%)#&qqKpp zw4E_#2)2wN*haTOJOmSju=alxRMBcXRIY&%28D5+-D{c@)YvJt^~p%obtjk{Z!zP# z4o)Ixxe`bb3%$8a0s~Bh6c!yL8lTWAY;O(+6dF--9Xj`fdg9_J4TD16u~<&U2osVT z!#K(WcH;A$Xv{p(V2BuW5e5x$#s(Dx0p)e~xfZ_Nq;XXpP-v}z|0vv2_+Vl9_l8G? zkLK>bFSLKZeSiDL_OY%1Y<;rzhppGPUea2{`2U+je?IhULmSwg-)MflxvSY}jx<*{ z4{!Wi<1ZVJH)b1GG#1x?SpRGG(`(&-aqY*oPt@L8dui>w+7P$@|K8vOgEtH=9V}G$ z@V?y!?ie_XI{@ERd2Qvo$`R#%D}Si`mhx2jlJfIP-z$B%^p?`*(ggz_9eB&Y)`1re z98>&W@k7P86{lJ4Us(77$|nEW$bV($DSBVrpier@cQW0o9%tV|THbl;dbMJkrrExPsUsYQDQ4esr7n@Vr=-Esa%XKbBaq2}-!#z$pYKlX} z|8&)lU*(i5B?;^@FHrP)OFmSnndlSTWv-Q*7?hKlz!352^YQ7V?#lSIf$r1Ry~V87 zhhye6DFd1K6WrssKAb`M_yY`aRp+VIdJ0{8y(rW9r_hrCpOKj2V(A%ma!&6&#jQT; z?Yn+Yq3birI&n@nNCXsg7c2g_ytc?y36U%d(@aL)1i0NI`lJBc6gMGSVl(B$H`}egJ_Q~ zOVMRRc>YDFoinvjq3#Klau1j}V6TdbF= zvHOgYgg2=}$o3JNg(C7;&jfZo7oq3IP1*1gz70!)yO!EmX-KXZ z2h?e7tfVGNYOFXh0fmNVAAx7v8ky>=xQcPmWi3F~#&oeDmK9K!bvUvFm}0Rk2O(jS z!!QXm6DXE5NdiNpGB{L~0Yv9zD+7nUGT6Au4)`Ma5Jc-$p-|1l4wS%%#wYar4M^V! z=@f@bMZuo*%egCwJ!^@^aqlb&fsQ$cRZ&Pgm5JB{4tmPkma?R4)RQuUL&_N9c+p@t zH-2O{`1iIy35;lp@DN3V2|_CL;GA*M=mtPu)Om`1+N<@zhD64rIm4h}Qf;Z6(1ls~ z#wCFvQg(Do+>o4C2GpahS(Gj;8zq=a8kFNsB=_jY&K6LoRiTaar3Dlk3DCw$_AKJQq(Bo^-} z>7JZrY|5e8Q{Lv<5OI;VSn*2a~W9U{Lb!&N=MF#ZbFtvLb&Q$D2=Mi zQ0rb9f06zFuj9P`slx;9&$a)o{Tg=vpUG+dy{%v8?EccBKNxx?=kr$$wVL1L<-fOb ztKT)vg^hn|ytmP56&jZ{>a70%dHpfY(O+Ss|IgI^sP>B53%SwnU4w66<^STrg{=I4 zvAVbVE4%=3dbLscO689#uc+KuIjQ_?`ESd=&l>ZX{u@EHbWNoSAxh#SVWF}(LWnSeq&p|fWt4$b^Q!pqdO0fxA^v*#3Z&uJHzsSn2m zLOQy$=VW%lIU~O0&x28W1!^Y)hFERGkg%|`=Oi3F3=d)l7X$$rOyI57J*U0aG0as} zA5WKNnD@r2ItU5-a5Iql(18_KP62h=iO}o@4igsB0_s|625(c46{pNF*XnpPU>~ix zF9TH}k^ChjKh!O8@&!R4ztmZ?i*4KjaegH*#O0kmi!~T0Db`t(vEufl8vuD}XOAud zk{76n7B}t)r8rdVwnzp^i5Y`9>NL&d;b=i#ObaNq6`egCf8h${km5}5-BGJn=J=a} zPwI8uPm(6oj8mV$o*-TK!%fnu=r}?U9+l5V7b{vZ##QcX}fYfP8vq z&yi|`#C56JMkwIc2$8s?5!!Qv8!dE{dWcH4gl7_$;GVd{l{i6t5*J{I z%Q|}wqry&DnF`xLtFY13b3wQKjOa48ybmU@8-Z@zdLjLckl=2FaZZ#dk1_MXn0bT& zU;0_>xZMC^z#9+3Vj)iQF1A=eq2b@0n!{qc%+u|VwOGKR;trgxBym9fEaosoT(_lx zCl#)FO~!Q{b=T!@l1076NtxB-lyv!6TtgU!L~75bYEL6%YER2{(yCj2%=vON`vFA? z6?L6@Mt*0kxb}0@ZAdaY0I8h(xMBoDdfm8#tg&QyO0Zo!r^X7cApQB)lz2WRyqBC7tO`@cGYW89j^hpH^&R3xw`x0nz; ziX0Kx%~voho5UXT1%W2-Dc;qwd*6e~u{^CD3pROA(F#Z0a$V6;NpO;_bW*v_44?FC>9Tw_76~XmO-sSvt?@ zJawO*C3Np6otfp;04vXN5k2DKx$hHB=Xajkrao?x``JFOp=7#!h$~fRgHM?oScjci zBDOQK$0%r+aUVzBYbF)5e>aKyFw~gCQq*?g!`M;*#Zri$)gu{+ei`wON-BTJ{Y`v$ z$K$CP>LoUtVIxeEsh1p0=-OF^Hup#yQsMlJHjcUvY$ZEHGpTWQI0%Vh=rnbl)fL1X z*Kvk<{%d0+(<6EYT>8Z>oWM@pA|kX9Wri4Fh$LV$3D6$od;$XMw7cb>>F_sBXF#Fh zb}y5!+hhyc#p!g=Njjxt4-zQ}G08zl3p-EgrNgkrJMPK}g3$WM!fM7n8`Gn@nQ>2m z-DRQZqGjqQZf09IPLj3XRz8+bazKfI8IN)391nI@#uFTMPnfj*WoLGt+Q3bmftOfo0WEZ?L&j>*2+;Lbd@!^ZQ(HDbdC)Rh@U83B2>bkvm@n^fIQQf=K_14u1o z#3rW5YB|DYe_l$nu8J?|V8qROibJK|xhqti>a_IuoiTwSV%s}q+qCZyCnumT?FM(a2E-Dw|@%G3Q3XQzFo!Kd7b@Y^9=u*V9Q&9+XW`}O`*&%!R&lHF|Nr9cp zezDDb*%gprGH5KD{(a~t%c{s;k8B46JC@xI@Z{Y}@@OpjBrl-QC|26Ln6fh2X`ezO zk9_YU9Y3FUh>JY?P7H?FD*g-O|G(4u|GnJ#ch2x|`&;clZ@+;P0GGEu#`^y&xwEe{ z^!Gzg4?Qw;*U$@wn$2%DKVakk!yEs~eS5z4e?tA2+^Y8{^;gyJsGnVL*1o~1|JTsz+A-XXURdzgxL4odeiaer@^I@)_mf z(sxQ9DZRZkU%IxmqEsIE^1z;fhX?K)IJ5Y%;_nw9EZ$gLR(KYrv;X1e@&6Wgo<0OS zaf7_SO%&V7L9^4-x&TwR&og@My^A%0AujDatrx#JinU4OUNPhHk>W1X4w8$?-7r1n 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%0Ak`5Qpaq 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 Sc!qS_d%(" + "" ] }, "execution_count": 34, @@ -1971,8 +1971,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "photos/new_notes.txt/new_notes.txt\n", - "photos/new_notes.txt/notes.txt\n", + "photos/new_notes.txt\n", "photos/notes.txt\n", "photos/mar-2023/photo2.jpg\n", "photos/mar-2023/photo1.jpg\n", @@ -2142,14 +2141,6 @@ "The result of a hash function, especially when it is used to check whether two objects are the same." ] }, - { - "cell_type": "markdown", - "id": "753300a1", - "metadata": {}, - "source": [ - "### BOOKMARK" - ] - }, { "cell_type": "markdown", "id": "67941fdd", @@ -2258,7 +2249,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 71, "id": "d3774d1a", "metadata": {}, "outputs": [], @@ -2317,7 +2308,7 @@ }, { "cell_type": "code", - "execution_count": 75, + "execution_count": 73, "id": "4b67579f", "metadata": { "tags": [] @@ -2335,7 +2326,7 @@ }, { "cell_type": "code", - "execution_count": 76, + "execution_count": 74, "id": "1d990225", "metadata": { "tags": [] @@ -2347,7 +2338,7 @@ "'These images are from Lorem Picsum at https://picsum.images\\n'" ] }, - "execution_count": 76, + "execution_count": 74, "metadata": {}, "output_type": "execute_result" } @@ -2364,19 +2355,82 @@ "### Exercise\n", "\n", "In [a previous section](section_storing_data_structure), we used the `shelve` module to make a key-value store that maps from a sorted string of letters to a list of anagrams.\n", + "\n", "To finish the example, write a function called `add_word` that takes as arguments a string and a shelf object.\n", "\n", - "It should sort the letters of the word to make a key, then check whether the key is already in the shelf. If not, it should make a list that contains the new word and add it to the shelf. If so, it should append the new word to the existing value. " + "It should sort the letters of the word to make a key, then check whether the key is already in the shelf.\n", + "\n", + "If not, it should make a list that contains the new word and add it to the shelf. \n", + "\n", + "If so, it should append the new word to the existing value. " ] }, { "cell_type": "code", - "execution_count": 73, + "execution_count": 75, + "id": "3072c88b", + "metadata": {}, + "outputs": [], + "source": [ + "from doctest import run_docstring_examples\n", + "\n", + "def run_doctests(func):\n", + " run_docstring_examples(func, globals(), name=func.__name__)" + ] + }, + { + "cell_type": "code", + "execution_count": 78, + "id": "4299848e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/Users/od00383/Documents/dev/ThinkPython🐍/ThinkPython/chapters\n" + ] + } + ], + "source": [ + "import os\n", + "test_db_path = os.path.join(os.getcwd())\n", + "print(test_db_path)\n", + "test_db = shelve.open(\"./test_database\", \"n\")" + ] + }, + { + "cell_type": "code", + "execution_count": 93, "id": "1c2fff95", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "\n", + "# function (str, shelf)\n", + "def add_word(text: str, shelfObj):\n", + " '''\n", + " Add word to the shelf, sorted by its letters.\n", + " '''\n", + "\n", + " # sort lets of string\n", + " sorted_string = sorted(text) # places characters into list\n", + "\n", + " # sorted letters = key\n", + " key = \"\".join(sorted_string) # joins characters together and removes list\n", + "\n", + " # check if key in shelf\n", + " # NO KEY = make list with word\n", + " if key not in shelfObj:\n", + " # add to shelf\n", + " shelfObj[key] = [key]\n", + "\n", + " # YES KEY = append new word to existing key\n", + " else:\n", + " db_list = shelfObj[key]\n", + " db_list.append(text)\n", + " shelfObj[key] = db_list" ] }, { @@ -2391,19 +2445,30 @@ }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 94, "id": "8008cde6", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'words.txt'" + ] + }, + "execution_count": 94, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "download('https://raw.githubusercontent.com/AllenDowney/ThinkPython/v3/words.txt');" + "download('https://raw.githubusercontent.com/AllenDowney/ThinkPython/v3/words.txt')" ] }, { "cell_type": "code", - "execution_count": 75, + "execution_count": 95, "id": "a6b5e51a", "metadata": { "tags": [] @@ -2413,7 +2478,9 @@ "word_list = open('words.txt').read().split()\n", "\n", "db = shelve.open('anagram_map', 'n')\n", + "\n", "for word in word_list:\n", + " \n", " add_word(word, db)" ] }, @@ -2429,24 +2496,47 @@ }, { "cell_type": "code", - "execution_count": 76, + "execution_count": 96, "id": "ffefe13e", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['opst', 'post', 'pots', 'spot', 'stop', 'tops']" + ] + }, + "execution_count": 96, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "db['opst']" ] }, { "cell_type": "code", - "execution_count": 77, + "execution_count": 97, "id": "7eb54fbc", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['aceprs', 'crapes', 'escarp', 'pacers', 'parsec', 'recaps', 'scrape', 'secpar', 'spacer']\n", + "['aelrst', 'alters', 'artels', 'estral', 'laster', 'ratels', 'salter', 'slater', 'staler', 'stelar', 'talers']\n", + "['aelst', 'setal', 'slate', 'stale', 'steal', 'stela', 'taels', 'tales', 'teals', 'tesla']\n", + "['aeprs', 'asper', 'pares', 'parse', 'pears', 'prase', 'presa', 'rapes', 'reaps', 'spare', 'spear']\n", + "['einrst', 'inerts', 'insert', 'inters', 'niters', 'nitres', 'sinter', 'triens', 'trines']\n" + ] + } + ], "source": [ "for key, value in db.items():\n", " if len(value) > 8:\n", @@ -2455,7 +2545,7 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": 98, "id": "ac784df7", "metadata": { "tags": [] @@ -2465,6 +2555,14 @@ "db.close()" ] }, + { + "cell_type": "markdown", + "id": "207df28c", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "228e977c", diff --git a/chapters/test_database b/chapters/test_database new file mode 100644 index 0000000000000000000000000000000000000000..4410bda55bad27954e72ab65919e742875d57998 GIT binary patch literal 4096 zcmWFz^vNtqRY=P(%1ta$FlG>7U}9o$P*7lCU|@t|AVoG{WYFsp;RR_IAlr;ljiVtj n8UmvsFd71*Aut*OqaiRF0;3@?8UmvsFd71*Aut*O6ovo*Y?%hH literal 0 HcmV?d00001 diff --git a/chapters/test_database-shm b/chapters/test_database-shm new file mode 100644 index 0000000000000000000000000000000000000000..e7acd2a9974978c1f00a33ee571fecc668051776 GIT binary patch literal 32768 zcmeI)KMKMy6bE4cT)?q+kU}>XCy(Li)Io6Ssd^eM)xph9UcgoJP>QRg3eJ#8W#`U%SaflKb5dx869x+A&E_!XOfpJr^5Q9Li|v$qc~ZKh>E zg0Hs~nNkMxH=Xa-c+kmg7tM z&!@uIw~Tzr5T(3s8iF!nCLv^0y$hk61zp(IX3;i;RVWF|HqE(S@0nX`dj0;WL*}&% zkEd5t3acFNd*`PoHF>so+@@dewH;dBS)wPM>nB26I_Ll27qqXn&*j$cU6PXhs|2bc zAOHafKmY;|fB*y_009U<00IygO#!+ih(-Sq{5eDDVd>$XILu literal 0 HcmV?d00001 diff --git a/chapters/test_shelf b/chapters/test_shelf new file mode 100644 index 00000000..e69de29b From 33b768336152e5edf4c721ce7cc12a611a09efbe Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Thu, 5 Mar 2026 19:21:37 +0000 Subject: [PATCH 39/56] Solution to multi-step shelf, add image and check exercise (final) --- chapters/chap13.ipynb | 219 ++++++++++++++++++++++++++++++------ chapters/photos/digests | Bin 0 -> 4096 bytes chapters/photos/digests-shm | Bin 0 -> 32768 bytes chapters/photos/digests-wal | Bin 0 -> 70072 bytes chapters/test_database-shm | Bin 32768 -> 32768 bytes chapters/test_database-wal | Bin 12392 -> 12392 bytes 6 files changed, 185 insertions(+), 34 deletions(-) create mode 100644 chapters/photos/digests create mode 100644 chapters/photos/digests-shm create mode 100644 chapters/photos/digests-wal diff --git a/chapters/chap13.ipynb b/chapters/chap13.ipynb index c6b24b23..25a16384 100644 --- a/chapters/chap13.ipynb +++ b/chapters/chap13.ipynb @@ -229,7 +229,14 @@ { "data": { "text/plain": [ - "['new_notes.txt', 'notes.txt', 'mar-2023', 'jan-2023', 'feb-2023']" + "['new_notes.txt',\n", + " 'notes.txt',\n", + " 'digests-wal',\n", + " 'digests-shm',\n", + " 'mar-2023',\n", + " 'digests',\n", + " 'jan-2023',\n", + " 'feb-2023']" ] }, "execution_count": 8, @@ -1039,7 +1046,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 34, @@ -1973,8 +1980,11 @@ "text": [ "photos/new_notes.txt\n", "photos/notes.txt\n", + "photos/digests-wal\n", + "photos/digests-shm\n", "photos/mar-2023/photo2.jpg\n", "photos/mar-2023/photo1.jpg\n", + "photos/digests\n", "photos/jan-2023/photo2.jpg\n", "photos/jan-2023/photo3.jpg\n", "photos/jan-2023/photo1.jpg\n", @@ -2380,7 +2390,7 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": 76, "id": "4299848e", "metadata": {}, "outputs": [ @@ -2401,7 +2411,7 @@ }, { "cell_type": "code", - "execution_count": 93, + "execution_count": 77, "id": "1c2fff95", "metadata": {}, "outputs": [], @@ -2445,7 +2455,7 @@ }, { "cell_type": "code", - "execution_count": 94, + "execution_count": 78, "id": "8008cde6", "metadata": { "tags": [] @@ -2457,7 +2467,7 @@ "'words.txt'" ] }, - "execution_count": 94, + "execution_count": 78, "metadata": {}, "output_type": "execute_result" } @@ -2468,7 +2478,7 @@ }, { "cell_type": "code", - "execution_count": 95, + "execution_count": 79, "id": "a6b5e51a", "metadata": { "tags": [] @@ -2496,7 +2506,7 @@ }, { "cell_type": "code", - "execution_count": 96, + "execution_count": 80, "id": "ffefe13e", "metadata": { "tags": [] @@ -2508,7 +2518,7 @@ "['opst', 'post', 'pots', 'spot', 'stop', 'tops']" ] }, - "execution_count": 96, + "execution_count": 80, "metadata": {}, "output_type": "execute_result" } @@ -2519,7 +2529,7 @@ }, { "cell_type": "code", - "execution_count": 97, + "execution_count": 81, "id": "7eb54fbc", "metadata": { "tags": [] @@ -2545,7 +2555,7 @@ }, { "cell_type": "code", - "execution_count": 98, + "execution_count": 82, "id": "ac784df7", "metadata": { "tags": [] @@ -2571,7 +2581,9 @@ "### Exercise\n", "\n", "In a large collection of files, there may be more than one copy of the same file, stored in different directories or with different file names.\n", + "\n", "The goal of this exercise is to search for duplicates.\n", + "\n", "As an example, we'll work with image files in the `photos` directory.\n", "\n", "Here's how it will work:\n", @@ -2594,17 +2606,36 @@ "source": [ "I'll suggest some functions to write first, then we'll bring it all together.\n", "\n", - "1. To identify image files, write a function called `is_image` that takes a path and a list of file extensions, and returns `True` if the path ends with one of the extensions in the list. Hint: Use `os.path.splitext` -- or ask a virtual assistant to write this function for you." + "1. To identify image files, write a function called `is_image` that takes a path and a list of file extensions, and returns `True` if the path ends with one of the extensions in the list.\n", + " \n", + "Hint: Use `os.path.splitext` -- or ask a virtual assistant to write this function for you." ] }, { "cell_type": "code", - "execution_count": 79, + "execution_count": 83, "id": "03b6acf9", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def is_image(path, file_extensions: list):\n", + " \"\"\" \n", + " >>> is_image(\"\", \"\")\n", + " False\n", + "\n", + " >>> is_image(\"./photos/feb-2023/photo1.jpg\", \".jpg\")\n", + " True\n", + " \"\"\"\n", + " root, extension = os.path.splitext(path)\n", + "\n", + " extension = extension.lstrip(\".\")\n", + "\n", + " # take path\n", + " if extension in file_extensions and os.path.basename(root) != \"\":\n", + " return True\n", + " else:\n", + " return False" ] }, { @@ -2619,7 +2650,7 @@ }, { "cell_type": "code", - "execution_count": 80, + "execution_count": 84, "id": "21c33092", "metadata": { "tags": [] @@ -2639,17 +2670,40 @@ "id": "1a7c8f49", "metadata": {}, "source": [ - "2. Write a function called `add_path` that takes as arguments a path and a shelf. It should use `md5_digest` to compute a digest of the file contents. Then it should update the shelf, either creating a new item that maps from the digest to a list containing the path, or appending the path to the list if it exists." + "2. Write a function called `add_path` that takes as arguments a path and a shelf. \n", + "\n", + "It should use `md5_digest` to compute a digest of the file contents. \n", + "\n", + "Then it should update the shelf, either creating a new item that maps from the digest to a list containing the path, or appending the path to the list if it exists." ] }, { "cell_type": "code", - "execution_count": 81, + "execution_count": 88, "id": "31c056a9", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "\n", + "# define function header and arguments\n", + "def add_path(path, shelf):\n", + "\n", + " # read the file into a digest `md5`\n", + " file_contents = open(path, 'rb').read()\n", + "\n", + " md5_digest_of_file = hashlib.md5()\n", + " md5_digest_of_file.update(file_contents)\n", + "\n", + " file_digest = md5_digest_of_file.hexdigest()\n", + "\n", + " # update shelf\n", + " if file_digest not in shelf:\n", + " shelf[file_digest] = [path]\n", + " else:\n", + " data_list = shelf[file_digest]\n", + " data_list.append(path)\n", + " shelf[file_digest] = data_list" ] }, { @@ -2657,17 +2711,42 @@ "id": "08223a21", "metadata": {}, "source": [ - "3. Write a version of `walk` called `walk_images` that takes a directory and walks through the files in the directory and its subdirectories. For each file, it should use `is_image` to check whether it's an image file and `add_path` to add it to the shelf." + "3. Write a version of `walk` called `walk_images` that takes a directory and walks through the files in the directory and its subdirectories. \n", + "\n", + "For each file, it should use `is_image` to check whether it's an image file and `add_path` to add it to the shelf." ] }, { "cell_type": "code", - "execution_count": 87, + "execution_count": 89, "id": "e54d6993", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def walk_images(directory_name):\n", + "\n", + " file_exts = config[\"extensions\"]\n", + "\n", + " print(f\"DEBUG: Looking in {directory_name}\")\n", + " print(f\"DEBUG: Extenisons found: {file_exts}\")\n", + "\n", + " for dir in os.listdir(directory_name):\n", + "\n", + " path = os.path.join(directory_name, dir)\n", + " print(f\"DEBUG: Checking path: {path}\")\n", + "\n", + " if os.path.isfile(path):\n", + " print(f\"DEBUG: {path} is a File\")\n", + " if is_image(path, file_exts):\n", + " print(f\"DEBUG: {path} is an IMAGE, adding to shelf\")\n", + " add_path(path, db)\n", + " else:\n", + " print(f\"DEBUG: {path} is NOT an image\")\n", + "\n", + " elif os.path.isdir(path):\n", + " print(f\"DEBUG: {path} is a DIRECTORY, recalling function\")\n", + " walk_images(path)" ] }, { @@ -2680,17 +2759,85 @@ }, { "cell_type": "code", - "execution_count": 88, + "execution_count": 90, "id": "c31ba5b6", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "DEBUG: Looking in photos\n", + "DEBUG: Extenisons found: ['jpg', 'jpeg']\n", + "DEBUG: Checking path: photos/new_notes.txt\n", + "DEBUG: photos/new_notes.txt is a File\n", + "DEBUG: photos/new_notes.txt is NOT an image\n", + "DEBUG: Checking path: photos/notes.txt\n", + "DEBUG: photos/notes.txt is a File\n", + "DEBUG: photos/notes.txt is NOT an image\n", + "DEBUG: Checking path: photos/digests-wal\n", + "DEBUG: photos/digests-wal is a File\n", + "DEBUG: photos/digests-wal is NOT an image\n", + "DEBUG: Checking path: photos/digests-shm\n", + "DEBUG: photos/digests-shm is a File\n", + "DEBUG: photos/digests-shm is NOT an image\n", + "DEBUG: Checking path: photos/mar-2023\n", + "DEBUG: photos/mar-2023 is a DIRECTORY, recalling function\n", + "DEBUG: Looking in photos/mar-2023\n", + "DEBUG: Extenisons found: ['jpg', 'jpeg']\n", + "DEBUG: Checking path: photos/mar-2023/photo2.jpg\n", + "DEBUG: photos/mar-2023/photo2.jpg is a File\n", + "DEBUG: photos/mar-2023/photo2.jpg is an IMAGE, adding to shelf\n", + "DEBUG: Checking path: photos/mar-2023/photo1.jpg\n", + "DEBUG: photos/mar-2023/photo1.jpg is a File\n", + "DEBUG: photos/mar-2023/photo1.jpg is an IMAGE, adding to shelf\n", + "DEBUG: Checking path: photos/digests\n", + "DEBUG: photos/digests is a File\n", + "DEBUG: photos/digests is NOT an image\n", + "DEBUG: Checking path: photos/jan-2023\n", + "DEBUG: photos/jan-2023 is a DIRECTORY, recalling function\n", + "DEBUG: Looking in photos/jan-2023\n", + "DEBUG: Extenisons found: ['jpg', 'jpeg']\n", + "DEBUG: Checking path: photos/jan-2023/photo2.jpg\n", + "DEBUG: photos/jan-2023/photo2.jpg is a File\n", + "DEBUG: photos/jan-2023/photo2.jpg is an IMAGE, adding to shelf\n", + "DEBUG: Checking path: photos/jan-2023/photo3.jpg\n", + "DEBUG: photos/jan-2023/photo3.jpg is a File\n", + "DEBUG: photos/jan-2023/photo3.jpg is an IMAGE, adding to shelf\n", + "DEBUG: Checking path: photos/jan-2023/photo1.jpg\n", + "DEBUG: photos/jan-2023/photo1.jpg is a File\n", + "DEBUG: photos/jan-2023/photo1.jpg is an IMAGE, adding to shelf\n", + "DEBUG: Checking path: photos/feb-2023\n", + "DEBUG: photos/feb-2023 is a DIRECTORY, recalling function\n", + "DEBUG: Looking in photos/feb-2023\n", + "DEBUG: Extenisons found: ['jpg', 'jpeg']\n", + "DEBUG: Checking path: photos/feb-2023/photo2.jpg\n", + "DEBUG: photos/feb-2023/photo2.jpg is a File\n", + "DEBUG: photos/feb-2023/photo2.jpg is an IMAGE, adding to shelf\n", + "DEBUG: Checking path: photos/feb-2023/photo1.jpg\n", + "DEBUG: photos/feb-2023/photo1.jpg is a File\n", + "DEBUG: photos/feb-2023/photo1.jpg is an IMAGE, adding to shelf\n", + "Total entries in shelf: 6\n", + "Digest: 013454e5... Paths: ['photos/jan-2023/photo2.jpg']\n", + "Digest: 615e248b... Paths: ['photos/jan-2023/photo3.jpg']\n", + "Digest: 6a501b11... Paths: ['photos/feb-2023/photo2.jpg']\n", + "Digest: aa1d2fc2... Paths: ['photos/mar-2023/photo2.jpg', 'photos/jan-2023/photo1.jpg']\n", + "['photos/mar-2023/photo2.jpg', 'photos/jan-2023/photo1.jpg']\n", + "Digest: b25a0125... Paths: ['photos/mar-2023/photo1.jpg']\n", + "Digest: dace5bcd... Paths: ['photos/feb-2023/photo1.jpg']\n" + ] + } + ], "source": [ "db = shelve.open('photos/digests', 'n')\n", "walk_images('photos')\n", "\n", + "print(f\"Total entries in shelf: {len(db)}\")\n", + "\n", "for digest, paths in db.items():\n", + " print(f\"Digest: {digest[:8]}... Paths: {paths}\")\n", " if len(paths) > 1:\n", " print(paths)" ] @@ -2706,22 +2853,26 @@ }, { "cell_type": "code", - "execution_count": 89, + "execution_count": null, "id": "d7c7e679", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 91, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "same_contents('photos/mar-2023/photo2.jpg','photos/jan-2023/photo1.jpg')" ] }, - { - "cell_type": "code", - "execution_count": null, - "id": "c6a6b5a7", - "metadata": {}, - "outputs": [], - "source": [] - }, { "cell_type": "markdown", "id": "a7f4edf8", diff --git a/chapters/photos/digests b/chapters/photos/digests new file mode 100644 index 0000000000000000000000000000000000000000..4410bda55bad27954e72ab65919e742875d57998 GIT binary patch literal 4096 zcmWFz^vNtqRY=P(%1ta$FlG>7U}9o$P*7lCU|@t|AVoG{WYFsp;RR_IAlr;ljiVtj n8UmvsFd71*Aut*OqaiRF0;3@?8UmvsFd71*Aut*O6ovo*Y?%hH literal 0 HcmV?d00001 diff --git a/chapters/photos/digests-shm b/chapters/photos/digests-shm new file mode 100644 index 0000000000000000000000000000000000000000..804238db82354de2fe090d3a259008a456c69673 GIT binary patch literal 32768 zcmeI)O-h1M6b9fot+ZctqyxbfxRwY4Y0{uAI4Ks#sYmiV-)D&4v+_Ep6zDnCPWzkG_7fAi5zJwdj3fGf5vZ`u3ff%*N8zm%NdK;q3Ox z2C@E;Hnnlhrk02@G!}#}PrNuH?(O$_2aAQ$@?LrLy@s61`}#Y|w(>rIuD{^=`-y|? ziH$qra^-ASf}EovfB*srAb$6iuj`;fB*srAbd!cEkebcp!yyGRiy3D+1rC*JmSYJNfJ(I`Q zjSm)zg^A8l??8u{G_B6kvYFUFzHib?i2WAi1>#?R@#m3e3P)vLAfjDX#2*a-1Q0*~ z0R#|0009ILKmY**R-nL!Xy(pZeF);R7UTtX?>_0Ck6-yv<^@!3K;#9)goXeD2q1s} z0tg_000IagfB*uwAdpo>dEYlhDc>+1Cm94eGjKw~O$T8<2*fnyxXx0_`$oCEf7|l{ zZ(qM}U3YNteAKul-|Ab$tFHG64W7^fr`}@7IDo^jPyu84*t6%@N?_6Y;%nL-d*#O#Uw4wR653+M#O&L6{D^ykt6Whw1!M%KKL3>3#A7 zAANf1jn5BVxgzrdF>O@l1x85>EVC~@r-J|j2q1s}0tg_000IagurdW?mA_U$M(n@M z3k*)3`DMyFcQmd|iM&8Y(FU}5^R$?uA%Fk^2q1s}0tg_000IagP(xs>A(lC!*ZO5V zQNVw^e4ss(?Z?)Q4;G4riOx~)z@i8A=Qb{UdVh9s{xI=B%nJy(zF-N$>*s{$466Zq z39(;PzE*c!9N2Z?Q2*7_XMT9#=|{J$(k_dzu?ss=S~|zd-YeHEVyqboL!NzCgpgynu)g&=5cX z0R#|0009ILKmY**5V)xTc>&YvEX5zp%76u`7y+Ty?+I2P0byZze>NiFC9;ijNCnSH z8opupNh9CodU-czS}R literal 0 HcmV?d00001 diff --git a/chapters/test_database-shm b/chapters/test_database-shm index e7acd2a9974978c1f00a33ee571fecc668051776..fcb77a065908860f10e2db0fac7176dfdf9056e9 100644 GIT binary patch delta 64 wcmZo@U}|V!njj(Z-F{p6KYNi4+Uv|VFFiA9Pf6+d8A^U1HsF!kn6RK80Mv6I{{R30 delta 64 wcmZo@U}|V!njj(ZIO^)RjK}8Jt{XUMufBZyQqo16(wzL48F-{NCM>8203ezn(*OVf diff --git a/chapters/test_database-wal b/chapters/test_database-wal index 6c513a8c084e3298e71c640c49aa6283787c5ec4..175c0478b0623c993ebbcab5fb4f0e1274b0e2a6 100644 GIT binary patch delta 110 zcmaEn@FKy&yq>LzLHCga1A_nq2xzY}+r0G5q&*$78}0tg2<-q0F(Qk1vBwzJmb_TI q(Sk!j0H*j}VOl+Rukee_0RkKXf-uqWZT8LzLHCga1A_nq2wXRC(q4V}_9X^Q<5yj8?ppzc7?H*M?tQq+)^$&P qqXmb608H_v4$aq=jnStz2MBNo2*O0aU5$Et&HQl&*XBTh|NH Date: Mon, 9 Mar 2026 13:44:59 +0000 Subject: [PATCH 40/56] Solution to subtracting time from two objects --- chapters/chap14.ipynb | 791 +++++++++++++++++++++++++++++++++++------- 1 file changed, 660 insertions(+), 131 deletions(-) diff --git a/chapters/chap14.ipynb b/chapters/chap14.ipynb index f0f9998a..8c4118a8 100644 --- a/chapters/chap14.ipynb +++ b/chapters/chap14.ipynb @@ -44,10 +44,13 @@ "# Classes and Functions\n", "\n", "At this point you know how to use functions to organize code and how to use built-in types to organize data.\n", + "\n", "The next step is **object-oriented programming**, which uses programmer-defined types to organize both code and data.\n", "\n", "Object-oriented programming is a big topic, so we will proceed gradually.\n", + "\n", "In this chapter, we'll start with code that is not idiomatic -- that is, it is not the kind of code experienced programmers write -- but it is a good place to start.\n", + "\n", "In the next two chapters, we will use additional features to write more idiomatic code." ] }, @@ -59,8 +62,11 @@ "## Programmer-defined types\n", "\n", "We have used many of Python's built-in types -- now we will define a new type.\n", + "\n", "As a first example, we'll create a type called `Time` that represents a time of day.\n", + "\n", "A programmer-defined type is also called a **class**.\n", + "\n", "A class definition looks like this:" ] }, @@ -71,7 +77,7 @@ "metadata": {}, "outputs": [], "source": [ - "class Time:\n", + "class Time: # class definition\n", " \"\"\"Represents a time of day.\"\"\"" ] }, @@ -81,10 +87,13 @@ "metadata": {}, "source": [ "The header indicates that the new class is called `Time`.\n", + "\n", "The body is a docstring that explains what the class is for.\n", + "\n", "Defining a class creates a **class object**.\n", "\n", "The class object is like a factory for creating objects.\n", + "\n", "To create a `Time` object, you call `Time` as if it were a function." ] }, @@ -95,7 +104,7 @@ "metadata": {}, "outputs": [], "source": [ - "lunch = Time()" + "lunch = Time() # creates a `Time` object." ] }, { @@ -111,7 +120,18 @@ "execution_count": 4, "id": "f37d67fd", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "__main__.Time" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "type(lunch)" ] @@ -129,7 +149,15 @@ "execution_count": 5, "id": "e2bd114a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<__main__.Time object at 0x11093b380>\n" + ] + } + ], "source": [ "print(lunch)" ] @@ -150,6 +178,7 @@ "## Attributes\n", "\n", "An object can contain variables, which are called **attributes** and pronounced with the emphasis on the first syllable, like \"AT-trib-ute\", rather than the second syllable, like \"a-TRIB-ute\".\n", + "\n", "We can create attributes using dot notation." ] }, @@ -160,7 +189,7 @@ "metadata": {}, "outputs": [], "source": [ - "lunch.hour = 11\n", + "lunch.hour = 11 # creates and attribute\n", "lunch.minute = 59\n", "lunch.second = 1" ] @@ -198,7 +227,18 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "

" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "from diagram import diagram, adjust\n", "\n", @@ -213,8 +253,10 @@ "id": "d9df5b48", "metadata": {}, "source": [ - "The variable `lunch` refers to a `Time` object, which contains three attributes. \n", + "The variable `lunch` refers to a `Time` object, which contains three attributes.\n", + "\n", "Each attribute refers to an integer.\n", + "\n", "A state diagram like this -- which shows an object and its attributes -- is called an **object diagram**.\n", "\n", "You can read the value of an attribute using the dot operator." @@ -225,7 +267,18 @@ "execution_count": 9, "id": "4c4eff2b", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "11" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "lunch.hour" ] @@ -243,9 +296,21 @@ "execution_count": 10, "id": "7ac6db21", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "719" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "total_minutes = lunch.hour * 60 + lunch.minute\n", + "\n", "total_minutes" ] }, @@ -262,7 +327,18 @@ "execution_count": 11, "id": "1ecdc091", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'11:59:1'" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "f'{lunch.hour}:{lunch.minute}:{lunch.second}'" ] @@ -273,19 +349,43 @@ "metadata": {}, "source": [ "But notice that the previous example is not in the standard format.\n", + "\n", "To fix it, we have to print the `minute` and `second` attributes with a leading zero.\n", + "\n", "We can do that by extending the expressions in curly braces with a **format specifier**.\n", + "\n", "In the following example, the format specifiers indicate that `minute` and `second` should be displayed with at least two digits and a leading zero if needed." ] }, { "cell_type": "code", "execution_count": 12, - "id": "a8a45573", + "id": "731ee222", "metadata": {}, "outputs": [], "source": [ - "f'{lunch.hour}:{lunch.minute:02d}:{lunch.second:02d}'" + "lunch.hour = 2" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "a8a45573", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'02:59:01'" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "f'{lunch.hour:02d}:{lunch.minute:02d}:{lunch.second:02d}'" ] }, { @@ -294,19 +394,33 @@ "metadata": {}, "source": [ "We'll use this f-string to write a function that displays the value of a `Time`object.\n", + "\n", "You can pass an object as an argument in the usual way.\n", + "\n", "For example, the following function takes a `Time` object as an argument. " ] }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 14, + "id": "1b412e35", + "metadata": {}, + "outputs": [], + "source": [ + "lunch.hour = 11" + ] + }, + { + "cell_type": "code", + "execution_count": 15, "id": "fc77feb2", "metadata": {}, "outputs": [], "source": [ - "def print_time(time):\n", + "def print_time(time): # takes object as argument\n", + "\n", " s = f'{time.hour:02d}:{time.minute:02d}:{time.second:02d}'\n", + "\n", " print(s)" ] }, @@ -320,10 +434,18 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 16, "id": "59b7f4f4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11:59:01\n" + ] + } + ], "source": [ "print_time(lunch)" ] @@ -335,12 +457,14 @@ "source": [ "## Objects as return values\n", "\n", - "Functions can return objects. For example, `make_time` takes parameters called `hour`, `minute`, and `second`, stores them as attributes in a `Time` object, and returns the new object." + "Functions can return objects. \n", + "\n", + "For example, `make_time` takes parameters called `hour`, `minute`, and `second`, stores them as attributes in a `Time` object, and returns the new object." ] }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 17, "id": "fde15b59", "metadata": {}, "outputs": [], @@ -359,15 +483,24 @@ "metadata": {}, "source": [ "It might be surprising that the parameters have the same names as the attributes, but that's a common way to write a function like this.\n", + "\n", "Here's how we use `make_time` to create a `Time` object." ] }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 18, "id": "f4199d7f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11:59:01\n" + ] + } + ], "source": [ "time = make_time(11, 59, 1)\n", "print_time(time)" @@ -381,6 +514,7 @@ "## Objects are mutable\n", "\n", "Suppose you are going to a screening of a movie, like *Monty Python and the Holy Grail*, which starts at `9:20 PM` and runs for `92` minutes, which is one hour `32` minutes.\n", + "\n", "What time will the movie end?\n", "\n", "First, we'll create a `Time` object that represents the start time." @@ -388,10 +522,18 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 19, "id": "57847af3", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "09:20:00\n" + ] + } + ], "source": [ "start = make_time(9, 20, 0)\n", "print_time(start)" @@ -407,13 +549,23 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 20, "id": "f3637b10", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10:52:00\n" + ] + } + ], "source": [ - "start.hour += 1\n", - "start.minute += 32\n", + "start.hour += 1 # adds 1 to the attribute value of the instantiated `Time` object.\n", + "\n", + "start.minute += 32 # adds 32, same as above\n", + "\n", "print_time(start)" ] }, @@ -429,7 +581,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 21, "id": "3468f4d0", "metadata": {}, "outputs": [], @@ -450,10 +602,18 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 22, "id": "ad8177ad", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10:52:00\n" + ] + } + ], "source": [ "start = make_time(9, 20, 0)\n", "increment_time(start, 1, 32, 0)\n", @@ -470,7 +630,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 23, "id": "6f90c060", "metadata": { "tags": [] @@ -497,12 +657,23 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 24, "id": "93a1db71", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "from diagram import Bbox\n", "\n", @@ -522,7 +693,9 @@ "Inside the function, `time` is an alias for `start`, so when `time` is modified, `start` changes.\n", "\n", "This function works, but after it runs, we're left with a variable named `start` that refers to an object that represents the *end* time, and we no longer have an object that represents the start time.\n", + "\n", "It would be better to leave `start` unchanged and make a new object to represent the end time.\n", + "\n", "We can do that by copying `start` and modifying the copy." ] }, @@ -534,12 +707,13 @@ "## Copying\n", "\n", "The `copy` module provides a function called `copy` that can duplicate any object.\n", + "\n", "We can import it like this." ] }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 25, "id": "9f74834d", "metadata": {}, "outputs": [], @@ -557,7 +731,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 26, "id": "770c077a", "metadata": {}, "outputs": [], @@ -575,7 +749,7 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 27, "id": "edced6e5", "metadata": {}, "outputs": [], @@ -593,12 +767,22 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 28, "id": "509c3640", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "09:20:00\n", + "09:20:00\n" + ] + } + ], "source": [ "print_time(start)\n", + "\n", "print_time(end)" ] }, @@ -612,12 +796,24 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 29, "id": "60d812f7", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<__main__.Time object at 0x130971350>\n", + "<__main__.Time object at 0x1309269f0>\n" + ] + } + ], "source": [ - "start is end" + "start is end # althought values are equal, their object is not the same (not the same memory address)\n", + "\n", + "print(start) # see memory locations differ!\n", + "print(end)" ] }, { @@ -630,10 +826,21 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 30, "id": "4d504362", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "start == end" ] @@ -644,6 +851,7 @@ "metadata": {}, "source": [ "You might expect `==` to yield `True` because the objects contain the same data.\n", + "\n", "But for programmer-defined classes, the default behavior of the `==` operator is the same as the `is` operator -- it checks identity, not equivalence." ] }, @@ -655,20 +863,25 @@ "## Pure functions\n", "\n", "We can use `copy` to write pure functions that don't modify their parameters.\n", + "\n", "For example, here's a function that takes a `Time` object and a duration in hours, minutes and seconds.\n", + "\n", "It makes a copy of the original object, uses `increment_time` to modify the copy, and returns it." ] }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 31, "id": "85090d3e", "metadata": {}, "outputs": [], "source": [ "def add_time(time, hours, minutes, seconds):\n", + "\n", " total = copy(time)\n", + "\n", " increment_time(total, hours, minutes, seconds)\n", + " \n", " return total" ] }, @@ -682,13 +895,24 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 32, "id": "1d9cf4da", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10:52:00\n", + "^^^^^^^^ a new object!\n" + ] + } + ], "source": [ "end = add_time(start, 1, 32, 0)\n", - "print_time(end)" + "\n", + "print_time(end)\n", + "print(\"^^^^^^^^ a new object!\")" ] }, { @@ -697,15 +921,24 @@ "metadata": {}, "source": [ "The return value is a new object representing the end time of the movie.\n", + "\n", "And we can confirm that `start` is unchanged." ] }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 33, "id": "9fe30d71", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "09:20:00\n" + ] + } + ], "source": [ "print_time(start)" ] @@ -718,10 +951,13 @@ "`add_time` is a **pure function** because it does not modify any of the objects passed to it as arguments and its only effect is to return a value.\n", "\n", "Anything that can be done with impure functions can also be done with pure functions.\n", + "\n", "In fact, some programming languages only allow pure functions.\n", + "\n", "Programs that use pure functions might be less error-prone, but impure functions are sometimes convenient and can be more efficient.\n", "\n", "In general, I suggest you write pure functions whenever it is reasonable and resort to impure functions only if there is a compelling advantage.\n", + "\n", "This approach might be called a **functional programming style**." ] }, @@ -735,18 +971,29 @@ "In the previous example, `increment_time` and `add_time` seem to work, but if we try another example, we'll see that they are not quite correct.\n", "\n", "Suppose you arrive at the theater and discover that the movie starts at `9:40`, not `9:20`.\n", + "\n", "Here's what happens when we compute the updated end time." ] }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 34, "id": "57a96bf9-7d7b-4715-a4b3-2dfad1beb670", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10:72:00\n" + ] + } + ], "source": [ "start = make_time(9, 40, 0)\n", + "\n", "end = add_time(start, 1, 32, 0)\n", + "\n", "print_time(end)" ] }, @@ -756,6 +1003,7 @@ "metadata": {}, "source": [ "The result is not a valid time.\n", + "\n", "The problem is that `increment_time` does not deal with cases where the number of seconds or minutes adds up to more than `60`.\n", "\n", "Here's an improved version that checks whether `second` exceeds or equals `60` -- if so, it increments `minute` -- then checks whether `minute` exceeds or equals `60` -- if so, it increments `hour`." @@ -763,16 +1011,21 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 35, "id": "5bada1df-be0a-4f6a-8fe3-d92bd937dc70", "metadata": {}, "outputs": [], "source": [ "def increment_time(time, hours, minutes, seconds):\n", + "\n", " time.hour += hours\n", + "\n", " time.minute += minutes\n", + "\n", " time.second += seconds\n", "\n", + " # Logic check of attribute value total\n", + " # Reduces and increases respective attributes\n", " if time.second >= 60:\n", " time.second -= 60\n", " time.minute += 1\n", @@ -793,12 +1046,21 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 36, "id": "a139b64b", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "21:12:00\n" + ] + } + ], "source": [ - "end = add_time(start, 1, 32, 0)\n", + "end = add_time(start, 11, 32, 0)\n", + "\n", "print_time(end)" ] }, @@ -808,18 +1070,29 @@ "metadata": {}, "source": [ "But this function is still not correct, because the arguments might be bigger than `60`.\n", + "\n", "For example, suppose we are given the run time as `92` minutes, rather than `1` hours and `32` minutes.\n", + "\n", "We might call `add_time` like this." ] }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 37, "id": "8c9384cb", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10:72:00\n" + ] + } + ], "source": [ "end = add_time(start, 0, 92, 0)\n", + "\n", "print_time(end)" ] }, @@ -829,19 +1102,34 @@ "metadata": {}, "source": [ "The result is not a valid time.\n", + "\n", "So let's try a different approach, using the `divmod` function.\n", + "\n", "We'll make a copy of `start` and modify it by incrementing the `minute` attribute." ] }, { "cell_type": "code", - "execution_count": 36, + "execution_count": 38, "id": "47b04507", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "132" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "end = copy(start)\n", + "\n", "end.minute = start.minute + 92\n", + "\n", "end.minute" ] }, @@ -851,18 +1139,33 @@ "metadata": {}, "source": [ "Now `minute` is `132`, which is `2` hours and `12` minutes.\n", - "We can use `divmod` to divide by `60` and return the number of whole hours and the number of minutes left over." + "\n", + "We can use `divmod` to divide by `60` and return the number of whole hours and the number of minutes left over.\n", + "\n", + "`divmod()` is a built-in Python function which performs both integer division (`//`) and the modulo (`%`) at the same time." ] }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 39, "id": "8ce8f8bc", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "(2, 12)" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "carry, end.minute = divmod(end.minute, 60)\n", - "carry, end.minute" + "carry, end.minute = divmod(end.minute, 60) # divide by modulo\n", + "\n", + "carry, end.minute # returns a Tuple" ] }, { @@ -875,12 +1178,21 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 40, "id": "90445645", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11:12:00\n" + ] + } + ], "source": [ "end.hour += carry\n", + "\n", "print_time(end)" ] }, @@ -890,23 +1202,30 @@ "metadata": {}, "source": [ "The result is a valid time.\n", + "\n", "We can do the same thing with `hour` and `second`, and encapsulate the whole process in a function." ] }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 41, "id": "0a9653a2", "metadata": {}, "outputs": [], "source": [ "def increment_time(time, hours, minutes, seconds):\n", + "\n", " time.hour += hours\n", + "\n", " time.minute += minutes\n", + "\n", " time.second += seconds\n", - " \n", + "\n", + " # avoids invalid time\n", " carry, time.second = divmod(time.second, 60)\n", + "\n", " carry, time.minute = divmod(time.minute + carry, 60)\n", + "\n", " carry, time.hour = divmod(time.hour + carry, 24)" ] }, @@ -920,12 +1239,21 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 42, "id": "694cfdd1", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11:12:00\n" + ] + } + ], "source": [ "end = add_time(start, 0, 90, 120)\n", + "\n", "print_time(end)" ] }, @@ -935,12 +1263,16 @@ "metadata": {}, "source": [ "This section demonstrates a program development plan I call **prototype and patch**.\n", + "\n", "We started with a simple prototype that worked correctly for the first example.\n", + "\n", "Then we tested it with more difficult examples -- when we found an error, we modified the program to fix it, like putting a patch on tire with a puncture.\n", "\n", "This approach can be effective, especially if you don't yet have a deep understanding of the problem.\n", - "But incremental corrections can generate code that is unnecessarily complicated -- since it deals with many special cases -- and unreliable -- since it is hard to know if you have\n", - "found all the errors." + "\n", + "But incremental corrections can generate code that is unnecessarily complicated.\n", + "\n", + "Since it deals with many special cases -- and unreliable -- since it is hard to know if you have found all the errors." ] }, { @@ -950,11 +1282,18 @@ "source": [ "## Design-first development\n", "\n", - "An alternative plan is **design-first development**, which involves more planning before prototyping. In a design-first process, sometimes a high-level insight into the problem makes the programming much easier.\n", + "An alternative plan is **design-first development**, which involves more planning before prototyping.\n", + "\n", + "In a design-first process, sometimes a high-level insight into the problem makes the programming much easier.\n", "\n", "In this case, the insight is that we can think of a `Time` object as a three-digit number in base 60 -- also known as sexagesimal.\n", - "The `second` attribute is the \"ones column\", the `minute` attribute is the \"sixties column\",\n", - "and the `hour` attribute is the \"thirty-six hundreds column\".\n", + "\n", + "The `second` attribute is the \"ones column\".\n", + "\n", + "The `minute` attribute is the \"sixties column\".\n", + "\n", + "And the `hour` attribute is the \"thirty-six hundreds column\".\n", + "\n", "When we wrote `increment_time`, we were effectively doing addition in base 60, which is why we had to carry from one column to the next.\n", "\n", "This observation suggests another approach to the whole problem -- we can convert `Time` objects to integers and take advantage of the fact that Python knows how to do integer arithmetic.\n", @@ -964,14 +1303,18 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": null, "id": "a4427f06-10f3-478f-af4b-888297ee59ac", "metadata": {}, "outputs": [], "source": [ - "def time_to_int(time):\n", + "def time_to_int(time): # takes a `Time` object\n", + "\n", + " # Reduces the other time formats to seconds\n", " minutes = time.hour * 60 + time.minute\n", + "\n", " seconds = minutes * 60 + time.second\n", + " \n", " return seconds" ] }, @@ -981,19 +1324,40 @@ "metadata": {}, "source": [ "The result is the number of seconds since the beginning of the day.\n", + "\n", "For example, `01:01:01` is `1` hour, `1` minute and `1` second from the beginning of the day, which is the sum of `3600` seconds, `60` seconds, and `1` second." ] }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 45, "id": "e71f9661", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "01:01:01\n" + ] + }, + { + "data": { + "text/plain": [ + "3661" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "time = make_time(1, 1, 1)\n", + "\n", "print_time(time)\n", - "time_to_int(time)" + "\n", + "time_to_int(time) # converts all values to seconds" ] }, { @@ -1006,14 +1370,17 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 47, "id": "7a93edcc-de21-43b1-b0a9-1bcbc7f6125c", "metadata": {}, "outputs": [], "source": [ - "def int_to_time(seconds):\n", - " minute, second = divmod(seconds, 60)\n", + "def int_to_time(seconds): # takes in raw seconds\n", + "\n", + " minute, second = divmod(seconds, 60) # returns two values\n", + "\n", " hour, minute = divmod(minute, 60)\n", + "\n", " return make_time(hour, minute, second)" ] }, @@ -1027,12 +1394,21 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 48, "id": "967fc3c2", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "01:01:01\n" + ] + } + ], "source": [ "time = int_to_time(3661)\n", + "\n", "print_time(time)" ] }, @@ -1046,14 +1422,17 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 49, "id": "0278a042-9e5b-460f-bd26-2fa319e7193a", "metadata": {}, "outputs": [], "source": [ "def add_time(time, hours, minutes, seconds):\n", + "\n", " duration = make_time(hours, minutes, seconds)\n", + "\n", " seconds = time_to_int(time) + time_to_int(duration)\n", + " \n", " return int_to_time(seconds)" ] }, @@ -1063,7 +1442,9 @@ "metadata": {}, "source": [ "The first line converts the arguments to a `Time` object called `duration`.\n", + "\n", "The second line converts `time` and `duration` to seconds and adds them.\n", + "\n", "The third line converts the sum to a `Time` object and returns it.\n", "\n", "Here's how it works." @@ -1071,13 +1452,23 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 50, "id": "ee78ffbc", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11:12:00\n" + ] + } + ], "source": [ "start = make_time(9, 40, 0)\n", + "\n", "end = add_time(start, 1, 32, 0)\n", + "\n", "print_time(end)" ] }, @@ -1087,13 +1478,19 @@ "metadata": {}, "source": [ "In some ways, converting from base 60 to base 10 and back is harder than\n", - "just dealing with times. Base conversion is more abstract; our intuition\n", + "just dealing with times. \n", + "\n", + "Base conversion is more abstract; our intuition\n", "for dealing with time values is better.\n", "\n", "But if we have the insight to treat times as base 60 numbers -- and invest the effort to write the conversion functions `time_to_int` and `int_to_time` -- we get a program that is shorter, easier to read and debug, and more reliable.\n", "\n", - "It is also easier to add features later. For example, imagine subtracting two `Time` objects to find the duration between them.\n", + "It is also easier to add features later.\n", + "\n", + "For example, imagine subtracting two `Time` objects to find the duration between them.\n", + "\n", "The naive approach is to implement subtraction with borrowing.\n", + "\n", "Using the conversion functions is easier and more likely to be correct.\n", "\n", "Ironically, sometimes making a problem harder -- or more general -- makes it easier, because there are fewer special cases and fewer opportunities for error." @@ -1109,17 +1506,29 @@ "## Debugging\n", "\n", "Python provides several built-in functions that are useful for testing and debugging programs that work with objects.\n", + "\n", "For example, if you are not sure what type an object is, you can ask." ] }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 52, "id": "652bee8f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "__main__.Time" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "type(start)" + "type(start) # prints main and the object name (showing its a defined object)" ] }, { @@ -1132,12 +1541,23 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": null, "id": "3ab974e4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "isinstance(end, Time)" + "isinstance(end, Time) # checks if `end` is of the object class `Time`" ] }, { @@ -1151,12 +1571,22 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 58, "id": "5f80e5ad", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "True\n", + "False\n" + ] + } + ], "source": [ - "hasattr(start, 'hour')" + "print(hasattr(start, 'hour')) # `has attr` = has attribute. Checks if the object `start` has the attribute `hour`\n", + "print(hasattr(start, 'hello')) # Will print False!" ] }, { @@ -1169,14 +1599,46 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 59, "id": "2a102f0f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'hour': 9, 'minute': 40, 'second': 0}" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "vars(start)" ] }, + { + "cell_type": "code", + "execution_count": null, + "id": "87665507", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'hour': 9, 'minute': 40, 'second': 0}" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "start.__dict__ # accesses the underlying dict within a user defined class" + ] + }, { "cell_type": "markdown", "id": "f1a443c8", @@ -1187,27 +1649,52 @@ }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 61, "id": "b71f46d8", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'structshape.py'" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "download('https://raw.githubusercontent.com/AllenDowney/ThinkPython/v3/structshape.py');" + "download('https://raw.githubusercontent.com/AllenDowney/ThinkPython/v3/structshape.py')" ] }, { "cell_type": "code", - "execution_count": 52, + "execution_count": null, "id": "1e6498a8", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'tuple of 2 Time'" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "from structshape import structshape\n", "\n", "t = start, end\n", - "structshape(t)" + "\n", + "structshape(t)\n", + "# tuple = because there are two `start`, `end` items\n", + "# 2 = both items are of class `Time`" ] }, { @@ -1264,12 +1751,20 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": 63, "id": "ab3d0104", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Verbose\n" + ] + } + ], "source": [ "# This cell tells Jupyter to provide detailed debugging information\n", "# when a runtime error occurs. Run it before working on the exercises.\n", @@ -1285,6 +1780,7 @@ "### Ask a virtual assistant\n", "\n", "There is a lot of new vocabulary in this chapter.\n", + "\n", "A conversation with a virtual assistant can help solidify your understanding.\n", "Consider asking:\n", "\n", @@ -1297,14 +1793,20 @@ "* \"What are the pros and cons of pure functions compared to impure functions?\"\n", "\n", "Because we are just getting started with object oriented programming, the code in this chapter is not idiomatic -- it is not the kind of code experienced programmers write.\n", + "\n", "If you ask a virtual assistant for help with the exercises, you will probably see features we have not covered yet.\n", + "\n", "In particular, you are likely to see a method called `__init__` used to initialize the attributes of an instance.\n", "\n", "If these features make sense to you, go ahead and use them.\n", + "\n", "But if not, be patient -- we will get there soon.\n", + "\n", "In the meantime, see if you can solve the following exercises using only the features we have covered so far.\n", "\n", - "Also, in this chapter we saw one example of a format specifier. For more information, ask \"What format specifiers can be used in a Python f-string?\"" + "Also, in this chapter we saw one example of a format specifier.\n", + "\n", + "For more information, ask \"What format specifiers can be used in a Python f-string?\"" ] }, { @@ -1329,7 +1831,7 @@ }, { "cell_type": "code", - "execution_count": 54, + "execution_count": 64, "id": "7d898f43", "metadata": { "tags": [] @@ -1351,12 +1853,31 @@ }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 87, "id": "f1b54959", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def subtract_time(t1, t2):\n", + " \"\"\"Compute the difference between two times in seconds.\n", + " \n", + " >>> subtract_time(make_time(3, 2, 1), make_time(3, 2, 0))\n", + " 1\n", + " >>> subtract_time(make_time(3, 2, 1), make_time(3, 0, 0))\n", + " 121\n", + " >>> subtract_time(make_time(11, 12, 0), make_time(9, 40, 0))\n", + " 5520\n", + " >>> subtract_time(make_time(6, 6, 20), make_time(12, 12, 40))\n", + " -21980\n", + " \"\"\"\n", + "\n", + " time_1 = time_to_int(t1)\n", + " time_2 = time_to_int(t2)\n", + "\n", + " time_difference = time_1 - time_2\n", + "\n", + " return time_difference" ] }, { @@ -1371,7 +1892,7 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 88, "id": "5a25a3de", "metadata": { "tags": [] @@ -1386,6 +1907,14 @@ "run_doctests(subtract_time)" ] }, + { + "cell_type": "markdown", + "id": "122e487c", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "c3189549", @@ -1408,7 +1937,7 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": null, "id": "05499ffa", "metadata": {}, "outputs": [], @@ -1428,7 +1957,7 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": null, "id": "12b4ad17", "metadata": {}, "outputs": [], @@ -1448,7 +1977,7 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": null, "id": "4e580404", "metadata": { "tags": [] @@ -1470,7 +1999,7 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": null, "id": "c5de60ed", "metadata": {}, "outputs": [], @@ -1505,7 +2034,7 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": null, "id": "9e16bcde", "metadata": { "tags": [] @@ -1518,7 +2047,7 @@ }, { "cell_type": "code", - "execution_count": 62, + "execution_count": null, "id": "ff95300b", "metadata": {}, "outputs": [], @@ -1538,7 +2067,7 @@ }, { "cell_type": "code", - "execution_count": 63, + "execution_count": null, "id": "62180007", "metadata": { "tags": [] @@ -1550,7 +2079,7 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": null, "id": "2d70104e", "metadata": { "tags": [] @@ -1572,7 +2101,7 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": null, "id": "2cc0653e", "metadata": { "tags": [] @@ -1585,7 +2114,7 @@ }, { "cell_type": "code", - "execution_count": 66, + "execution_count": null, "id": "0b8f63df", "metadata": {}, "outputs": [], @@ -1605,7 +2134,7 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": null, "id": "2d0a026d", "metadata": { "tags": [] @@ -1627,7 +2156,7 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": null, "id": "70413f48", "metadata": { "tags": [] @@ -1640,7 +2169,7 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": null, "id": "b244a057", "metadata": {}, "outputs": [], @@ -1650,7 +2179,7 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": null, "id": "5fab04bd", "metadata": {}, "outputs": [], @@ -1670,7 +2199,7 @@ }, { "cell_type": "code", - "execution_count": 71, + "execution_count": null, "id": "59166d30", "metadata": { "tags": [] @@ -1682,7 +2211,7 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": null, "id": "c33706ee", "metadata": { "tags": [] @@ -1718,7 +2247,7 @@ "metadata": { "celltoolbar": "Tags", "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "thinkpy", "language": "python", "name": "python3" }, @@ -1732,7 +2261,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.13.5" } }, "nbformat": 4, From 251c2f96549f363432c32d4e14bd76cc0fd6f524 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Fri, 13 Mar 2026 15:04:14 +0000 Subject: [PATCH 41/56] Solution to 'is after' exercise --- chapters/chap14.ipynb | 81 ++++++++++++++++++++++++++----------------- 1 file changed, 50 insertions(+), 31 deletions(-) diff --git a/chapters/chap14.ipynb b/chapters/chap14.ipynb index 8c4118a8..125e1c8c 100644 --- a/chapters/chap14.ipynb +++ b/chapters/chap14.ipynb @@ -154,7 +154,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "<__main__.Time object at 0x11093b380>\n" + "<__main__.Time object at 0x10453b620>\n" ] } ], @@ -804,8 +804,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "<__main__.Time object at 0x130971350>\n", - "<__main__.Time object at 0x1309269f0>\n" + "<__main__.Time object at 0x120371350>\n", + "<__main__.Time object at 0x12032a8d0>\n" ] } ], @@ -1303,12 +1303,14 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 65, "id": "a4427f06-10f3-478f-af4b-888297ee59ac", "metadata": {}, "outputs": [], "source": [ - "def time_to_int(time): # takes a `Time` object\n", + "def time_to_int(time: Time) -> int: # takes a `Time` object\n", + " \"\"\"\n", + " Takes a `Time` object and extracts each attribute and converts to total seconds.\"\"\"\n", "\n", " # Reduces the other time formats to seconds\n", " minutes = time.hour * 60 + time.minute\n", @@ -1330,7 +1332,7 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 44, "id": "e71f9661", "metadata": {}, "outputs": [ @@ -1347,7 +1349,7 @@ "3661" ] }, - "execution_count": 45, + "execution_count": 44, "metadata": {}, "output_type": "execute_result" } @@ -1370,7 +1372,7 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 45, "id": "7a93edcc-de21-43b1-b0a9-1bcbc7f6125c", "metadata": {}, "outputs": [], @@ -1394,7 +1396,7 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": 46, "id": "967fc3c2", "metadata": {}, "outputs": [ @@ -1422,7 +1424,7 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 47, "id": "0278a042-9e5b-460f-bd26-2fa319e7193a", "metadata": {}, "outputs": [], @@ -1452,7 +1454,7 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 48, "id": "ee78ffbc", "metadata": {}, "outputs": [ @@ -1512,7 +1514,7 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 49, "id": "652bee8f", "metadata": {}, "outputs": [ @@ -1522,7 +1524,7 @@ "__main__.Time" ] }, - "execution_count": 52, + "execution_count": 49, "metadata": {}, "output_type": "execute_result" } @@ -1541,7 +1543,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 50, "id": "3ab974e4", "metadata": {}, "outputs": [ @@ -1551,7 +1553,7 @@ "True" ] }, - "execution_count": 53, + "execution_count": 50, "metadata": {}, "output_type": "execute_result" } @@ -1571,7 +1573,7 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 51, "id": "5f80e5ad", "metadata": {}, "outputs": [ @@ -1599,7 +1601,7 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 52, "id": "2a102f0f", "metadata": {}, "outputs": [ @@ -1609,7 +1611,7 @@ "{'hour': 9, 'minute': 40, 'second': 0}" ] }, - "execution_count": 59, + "execution_count": 52, "metadata": {}, "output_type": "execute_result" } @@ -1620,7 +1622,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 53, "id": "87665507", "metadata": {}, "outputs": [ @@ -1630,7 +1632,7 @@ "{'hour': 9, 'minute': 40, 'second': 0}" ] }, - "execution_count": 60, + "execution_count": 53, "metadata": {}, "output_type": "execute_result" } @@ -1649,7 +1651,7 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 54, "id": "b71f46d8", "metadata": { "tags": [] @@ -1661,7 +1663,7 @@ "'structshape.py'" ] }, - "execution_count": 61, + "execution_count": 54, "metadata": {}, "output_type": "execute_result" } @@ -1672,7 +1674,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 55, "id": "1e6498a8", "metadata": {}, "outputs": [ @@ -1682,7 +1684,7 @@ "'tuple of 2 Time'" ] }, - "execution_count": 62, + "execution_count": 55, "metadata": {}, "output_type": "execute_result" } @@ -1751,7 +1753,7 @@ }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 56, "id": "ab3d0104", "metadata": { "tags": [] @@ -1831,7 +1833,7 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 57, "id": "7d898f43", "metadata": { "tags": [] @@ -1853,7 +1855,7 @@ }, { "cell_type": "code", - "execution_count": 87, + "execution_count": 58, "id": "f1b54959", "metadata": {}, "outputs": [], @@ -1892,7 +1894,7 @@ }, { "cell_type": "code", - "execution_count": 88, + "execution_count": 59, "id": "5a25a3de", "metadata": { "tags": [] @@ -1957,12 +1959,29 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 74, "id": "12b4ad17", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def is_after(time_obj_1, time_obj_2):\n", + " \"\"\"Checks whether `t1` is after `t2`.\n", + " \n", + " >>> is_after(make_time(3, 2, 1), make_time(3, 2, 0))\n", + " True\n", + " >>> is_after(make_time(3, 2, 1), make_time(3, 2, 1))\n", + " False\n", + " >>> is_after(make_time(11, 12, 0), make_time(9, 40, 0))\n", + " True\n", + " \"\"\"\n", + " time1 = time_to_int(time_obj_1)\n", + " time2 = time_to_int(time_obj_2)\n", + " \n", + " if time1 <= time2:\n", + " return False\n", + " else:\n", + " return True\n" ] }, { @@ -1977,7 +1996,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 75, "id": "4e580404", "metadata": { "tags": [] From c38d79f0f3c5148189d75b63d3ae2a8243da077e Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Fri, 13 Mar 2026 15:55:40 +0000 Subject: [PATCH 42/56] Solution to date object checks and instants --- chapters/chap14.ipynb | 248 ++++++++++++++++++++++++++++++++++++------ 1 file changed, 216 insertions(+), 32 deletions(-) diff --git a/chapters/chap14.ipynb b/chapters/chap14.ipynb index 125e1c8c..05714275 100644 --- a/chapters/chap14.ipynb +++ b/chapters/chap14.ipynb @@ -154,7 +154,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "<__main__.Time object at 0x10453b620>\n" + "<__main__.Time object at 0x106e3f380>\n" ] } ], @@ -189,7 +189,7 @@ "metadata": {}, "outputs": [], "source": [ - "lunch.hour = 11 # creates and attribute\n", + "lunch.hour = 11 # creates an attribute\n", "lunch.minute = 59\n", "lunch.second = 1" ] @@ -804,8 +804,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "<__main__.Time object at 0x120371350>\n", - "<__main__.Time object at 0x12032a8d0>\n" + "<__main__.Time object at 0x112b71350>\n", + "<__main__.Time object at 0x112b268d0>\n" ] } ], @@ -1303,7 +1303,7 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 43, "id": "a4427f06-10f3-478f-af4b-888297ee59ac", "metadata": {}, "outputs": [], @@ -1939,7 +1939,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 60, "id": "05499ffa", "metadata": {}, "outputs": [], @@ -1959,7 +1959,7 @@ }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 61, "id": "12b4ad17", "metadata": {}, "outputs": [], @@ -1996,7 +1996,7 @@ }, { "cell_type": "code", - "execution_count": 75, + "execution_count": 62, "id": "4e580404", "metadata": { "tags": [] @@ -2018,7 +2018,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 63, "id": "c5de60ed", "metadata": {}, "outputs": [], @@ -2032,13 +2032,28 @@ "id": "3311fa97", "metadata": {}, "source": [ - "1. Write a function called `make_date` that takes `year`, `month`, and `day` as parameters, makes a `Date` object, assigns the parameters to attributes, and returns the result the new object. Create an object that represents June 22, 1933.\n", + "1. Write a function called `make_date`\n", + "- that takes `year`, `month`, and `day` as parameters, \n", + "- makes a `Date` object, assigns the parameters to attributes, \n", + "- and returns the result the new object. \n", + "- Create an object that represents June 22, 1933.\n", "\n", - "2. Write a function called `print_date` that takes a `Date` object, uses an f-string to format the attributes, and prints the result. If you test it with the `Date` you created, the result should be `1933-06-22`.\n", + "2. Write a function called `print_date` \n", + "- that takes a `Date` object, \n", + "- uses an f-string to format the attributes, \n", + "- and prints the result. \n", + "- If you test it with the `Date` you created, \n", + "- the result should be `1933-06-22`.\n", "\n", - "3. Write a function called `is_after` that takes two `Date` objects as parameters and returns `True` if the first comes after the second. Create a second object that represents September 17, 1933, and check whether it comes after the first object.\n", + "3. Write a function called `is_after` \n", + "- that takes two `Date` objects as parameters \n", + "- and returns `True` if the first comes after the second. \n", + "- Create a second object that represents September 17, 1933, \n", + "- and check whether it comes after the first object.\n", "\n", - "Hint: You might find it useful to write a function called `date_to_tuple` that takes a `Date` object and returns a tuple that contains its attributes in year, month, day order." + "Hint: You might find it useful to write a function called `date_to_tuple` \n", + "- that takes a `Date` object \n", + "- and returns a tuple that contains its attributes in year, month, day order." ] }, { @@ -2053,7 +2068,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 64, "id": "9e16bcde", "metadata": { "tags": [] @@ -2066,12 +2081,24 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 73, "id": "ff95300b", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def make_date(year, month, day) -> Date:\n", + " \"\"\"\n", + " Returns a `Date` object with the year, month and day attributes\n", + " \"\"\"\n", + "\n", + " new_date = Date() # new `Date` object\n", + "\n", + " new_date.year = year\n", + " new_date.month = month\n", + " new_date.day = day\n", + " \n", + " return new_date" ] }, { @@ -2086,7 +2113,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 74, "id": "62180007", "metadata": { "tags": [] @@ -2098,7 +2125,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 75, "id": "2d70104e", "metadata": { "tags": [] @@ -2108,6 +2135,68 @@ "birthday2 = make_date(1933, 9, 17)" ] }, + { + "cell_type": "code", + "execution_count": 76, + "id": "9effce2f", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1933 6 22\n", + "1933 9 17\n" + ] + } + ], + "source": [ + "print(birthday1.year, birthday1.month, birthday1.day)\n", + "print(birthday2.year, birthday2.month, birthday2.day)" + ] + }, + { + "cell_type": "code", + "execution_count": 77, + "id": "c7870f80", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "4608674176" + ] + }, + "execution_count": 77, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "id(birthday1)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 78, + "id": "3198e1fc", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "4608933264" + ] + }, + "execution_count": 78, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "id(birthday2)" + ] + }, { "cell_type": "markdown", "id": "16ff5bef", @@ -2120,7 +2209,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 79, "id": "2cc0653e", "metadata": { "tags": [] @@ -2133,12 +2222,14 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 80, "id": "0b8f63df", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def print_date(date):\n", + " print(f\"{date.year:04}-{date.month:02}-{date.day:02}\")" ] }, { @@ -2153,12 +2244,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 81, "id": "2d0a026d", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1933-06-22\n" + ] + } + ], "source": [ "print_date(birthday1)" ] @@ -2175,7 +2274,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 82, "id": "70413f48", "metadata": { "tags": [] @@ -2188,22 +2287,85 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 83, "id": "b244a057", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def date_to_tuple(date):\n", + " \"\"\"\n", + " Takes a `Date` object and returns a tuple of its attributes\n", + "\n", + " >>> date_to_tuple(birthday1)\n", + " True\n", + "\n", + " >>> date_to_tuple(birthday2)\n", + " True\n", + " \"\"\"\n", + " date_tuple = tuple((date.year, date.month, date.day))\n", + "\n", + " # if date_tuple[0] is not None and date_tuple[1] is not None and date_tuple[2] is not None:\n", + " # return True\n", + " # else:\n", + " # return False\n", + "\n", + " return date_tuple" + ] + }, + { + "cell_type": "code", + "execution_count": 84, + "id": "1fb9a617", + "metadata": {}, + "outputs": [], + "source": [ + "# run_doctests(date_to_tuple)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 87, "id": "5fab04bd", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def is_after(date1, date2) -> bool:\n", + " \"\"\"\n", + " - Takes two `Date` objects as parameters.\n", + " - Returns `True` if the first comes after the second. \n", + " - Creates a second object. \n", + " - Check whether second comes after the first object.\n", + "\n", + " >>> is_after(birthday1, birthday2)\n", + " False\n", + "\n", + " >>> is_after(birthday2, birthday1)\n", + " True\n", + " >>> \n", + " \"\"\"\n", + "\n", + " date1_tuple = date_to_tuple(date1)\n", + " date2_tuple = date_to_tuple(date2)\n", + "\n", + " date1_value = date1_tuple[:]\n", + " date2_value = date2_tuple[:]\n", + "\n", + " if date1_value <= date2_value:\n", + " return False\n", + " else:\n", + " return True" + ] + }, + { + "cell_type": "code", + "execution_count": 88, + "id": "e4b57ae0", + "metadata": {}, + "outputs": [], + "source": [ + "run_doctests(is_after)" ] }, { @@ -2218,24 +2380,46 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 89, "id": "59166d30", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 89, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "is_after(birthday1, birthday2) # should be False" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 90, "id": "c33706ee", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 90, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "is_after(birthday2, birthday1) # should be True" ] From b473d7f95de1989d9b9cfcdf1325743bb1cff533 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Sun, 15 Mar 2026 16:17:39 +0000 Subject: [PATCH 43/56] Date class refactor and solution with methods and comparisons --- chapters/chap15.ipynb | 499 +++++++++++++++++++++++++++++++++++------- 1 file changed, 417 insertions(+), 82 deletions(-) diff --git a/chapters/chap15.ipynb b/chapters/chap15.ipynb index 52fb9c86..d2b2cd7a 100644 --- a/chapters/chap15.ipynb +++ b/chapters/chap15.ipynb @@ -52,7 +52,9 @@ "- Programs include class and method definitions.\n", "\n", "For example, in the previous chapter we defined a `Time` class that corresponds to the way people record the time of day, and we defined functions that correspond to the kinds of things people do with times.\n", + "\n", "But there was no explicit connection between the definition of the `Time` class and the function definitions that follow.\n", + "\n", "We can make the connection explicit by rewriting a function as a **method**, which is defined inside a class definition." ] }, @@ -77,7 +79,9 @@ " \"\"\"Represents the time of day.\"\"\"\n", "\n", "def print_time(time):\n", + "\n", " s = f'{time.hour:02d}:{time.minute:02d}:{time.second:02d}'\n", + " \n", " print(s)" ] }, @@ -87,10 +91,12 @@ "metadata": {}, "source": [ "To make `print_time` a method, all we have to do is move the function\n", - "definition inside the class definition. Notice the change in\n", - "indentation.\n", + "definition inside the class definition. \n", + "\n", + "Notice the change in indentation.\n", "\n", "At the same time, we'll change the name of the parameter from `time` to `self`.\n", + "\n", "This change is not necessary, but it is conventional for the first parameter of a method to be named `self`." ] }, @@ -105,7 +111,9 @@ " \"\"\"Represents the time of day.\"\"\" \n", "\n", " def print_time(self):\n", + "\n", " s = f'{self.hour:02d}:{self.minute:02d}:{self.second:02d}'\n", + " \n", " print(s)" ] }, @@ -115,6 +123,7 @@ "metadata": {}, "source": [ "To call this method, you have to pass a `Time` object as an argument.\n", + "\n", "Here's the function we'll use to make a `Time` object." ] }, @@ -126,10 +135,15 @@ "outputs": [], "source": [ "def make_time(hour, minute, second):\n", + "\n", " time = Time()\n", + "\n", " time.hour = hour\n", + "\n", " time.minute = minute\n", + "\n", " time.second = second\n", + " \n", " return time" ] }, @@ -151,6 +165,27 @@ "start = make_time(9, 40, 0)" ] }, + { + "cell_type": "code", + "execution_count": 6, + "id": "5d849e18", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "<__main__.Time at 0x10663f380>" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "start" + ] + }, { "cell_type": "markdown", "id": "bbbcd333", @@ -162,10 +197,18 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 7, "id": "f755081c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "09:40:00\n" + ] + } + ], "source": [ "Time.print_time(start)" ] @@ -176,15 +219,24 @@ "metadata": {}, "source": [ "In this version, `Time` is the name of the class, `print_time` is the name of the method, and `start` is passed as a parameter.\n", + "\n", "The second (and more idiomatic) way is to use method syntax:" ] }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 8, "id": "d6f91aec", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "09:40:00\n" + ] + } + ], "source": [ "start.print_time()" ] @@ -197,6 +249,7 @@ "In this version, `start` is the object the method is invoked on, which is called the **receiver**, based on the analogy that invoking a method is like sending a message to an object.\n", "\n", "Regardless of the syntax, the behavior of the method is the same.\n", + "\n", "The receiver is assigned to the first parameter, so inside the method, `self` refers to the same object as `start`." ] }, @@ -212,14 +265,17 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 9, "id": "24c4c985", "metadata": {}, "outputs": [], "source": [ "def time_to_int(time):\n", + "\n", " minutes = time.hour * 60 + time.minute\n", + "\n", " seconds = minutes * 60 + time.second\n", + " \n", " return seconds" ] }, @@ -233,7 +289,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 10, "id": "dde6f15f", "metadata": {}, "outputs": [], @@ -241,8 +297,11 @@ "%%add_method_to Time\n", "\n", " def time_to_int(self):\n", + "\n", " minutes = self.hour * 60 + self.minute\n", + "\n", " seconds = minutes * 60 + self.second\n", + "\n", " return seconds" ] }, @@ -252,21 +311,37 @@ "metadata": {}, "source": [ "The first line uses the special command `add_method_to`, which adds a method to a previously-defined class.\n", + "\n", "This command works in a Jupyter notebook, but it is not part of Python, so it won't work in other environments.\n", + "\n", "Normally, all methods of a class are inside the class definition, so they get defined at the same time as the class.\n", + "\n", "But for this book, it is helpful to define one method at a time.\n", "\n", "As in the previous example, the method definition is indented and the name of the parameter is `self`.\n", + "\n", "Other than that, the method is identical to the function.\n", + "\n", "Here's how we invoke it." ] }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 11, "id": "8943fa0a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "34800" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "start.time_to_int()" ] @@ -292,14 +367,17 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 12, "id": "8547b1c2", "metadata": {}, "outputs": [], "source": [ "def int_to_time(seconds):\n", + "\n", " minute, second = divmod(seconds, 60)\n", + "\n", " hour, minute = divmod(minute, 60)\n", + " \n", " return make_time(hour, minute, second)" ] }, @@ -309,16 +387,19 @@ "metadata": {}, "source": [ "This function takes `seconds` as a parameter and returns a new `Time` object.\n", + "\n", "If we transform it into a method of the `Time` class, we have to invoke it on a `Time` object.\n", + "\n", "But if we're trying to create a new `Time` object, what are we supposed to invoke it on?\n", "\n", "We can solve this chicken-and-egg problem using a **static method**, which is a method that does not require an instance of the class to be invoked.\n", + "\n", "Here's how we rewrite this function as a static method." ] }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 13, "id": "b233669c", "metadata": {}, "outputs": [], @@ -326,8 +407,11 @@ "%%add_method_to Time\n", "\n", " def int_to_time(seconds):\n", + "\n", " minute, second = divmod(seconds, 60)\n", + "\n", " hour, minute = divmod(minute, 60)\n", + " \n", " return make_time(hour, minute, second)" ] }, @@ -337,12 +421,13 @@ "metadata": {}, "source": [ "Because it is a static method, it does not have `self` as a parameter.\n", + "\n", "To invoke it, we use `Time`, which is the class object." ] }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 14, "id": "7e88f06b", "metadata": {}, "outputs": [], @@ -360,10 +445,18 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 15, "id": "8c9f66b0", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "09:40:00\n" + ] + } + ], "source": [ "start.print_time()" ] @@ -374,19 +467,23 @@ "metadata": {}, "source": [ "Now that we have `Time.from_seconds`, we can use it to write `add_time` as a method.\n", + "\n", "Here's the function from the previous chapter." ] }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 16, "id": "c600d536", "metadata": {}, "outputs": [], "source": [ "def add_time(time, hours, minutes, seconds):\n", + "\n", " duration = make_time(hours, minutes, seconds)\n", + "\n", " seconds = time_to_int(time) + time_to_int(duration)\n", + " \n", " return int_to_time(seconds)" ] }, @@ -400,7 +497,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 17, "id": "c6fa0176", "metadata": {}, "outputs": [], @@ -408,8 +505,11 @@ "%%add_method_to Time\n", "\n", " def add_time(self, hours, minutes, seconds):\n", + "\n", " duration = make_time(hours, minutes, seconds)\n", + "\n", " seconds = time_to_int(self) + time_to_int(duration)\n", + " \n", " return Time.int_to_time(seconds)" ] }, @@ -419,18 +519,29 @@ "metadata": {}, "source": [ "`add_time` has `self` as a parameter because it is not a static method.\n", + "\n", "It is an ordinary method -- also called an **instance method**.\n", + "\n", "To invoke it, we need a `Time` instance." ] }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 18, "id": "e17b2ad7", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11:12:00\n" + ] + } + ], "source": [ "end = start.add_time(1, 32, 0)\n", + "\n", "print_time(end)" ] }, @@ -442,17 +553,19 @@ "## Comparing Time objects\n", "\n", "As one more example, let's write `is_after` as a method.\n", + "\n", "Here's the `is_after` function, which is a solution to an exercise in the previous chapter." ] }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 19, "id": "971eebbb", "metadata": {}, "outputs": [], "source": [ "def is_after(t1, t2):\n", + " \n", " return time_to_int(t1) > time_to_int(t2)" ] }, @@ -466,7 +579,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 20, "id": "90d7234d", "metadata": {}, "outputs": [], @@ -474,6 +587,7 @@ "%%add_method_to Time\n", "\n", " def is_after(self, other):\n", + " \n", " return self.time_to_int() > other.time_to_int()" ] }, @@ -483,16 +597,27 @@ "metadata": {}, "source": [ "Because we're comparing two objects, and the first parameter is `self`, we'll call the second parameter `other`.\n", - "To use this method, we have to invoke it on one object and pass the\n", - "other as an argument." + "\n", + "To use this method, we have to invoke it on one object and pass the other as an argument." ] }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 21, "id": "19e3d639", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "end.is_after(start)" ] @@ -514,14 +639,17 @@ "## The `__str__` method\n", "\n", "When you write a method, you can choose almost any name you want.\n", + "\n", "However, some names have special meanings.\n", + "\n", "For example, if an object has a method named `__str__`, Python uses that method to convert the object to a string.\n", + "\n", "For example, here is a `__str__` method for a time object." ] }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 22, "id": "f935a999", "metadata": {}, "outputs": [], @@ -529,7 +657,9 @@ "%%add_method_to Time\n", "\n", " def __str__(self):\n", + "\n", " s = f'{self.hour:02d}:{self.minute:02d}:{self.second:02d}'\n", + " \n", " return s" ] }, @@ -545,10 +675,21 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 23, "id": "61d7275d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'11:12:00'" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "end.__str__()" ] @@ -559,15 +700,27 @@ "metadata": {}, "source": [ "But Python can also invoke it for you.\n", + "\n", "If you use the built-in function `str` to convert a `Time` object to a string, Python uses the `__str__` method in the `Time` class." ] }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 24, "id": "b6dcc0c2", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'11:12:00'" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "str(end)" ] @@ -582,10 +735,18 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 25, "id": "6e1e6fb3", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11:12:00\n" + ] + } + ], "source": [ "print(end)" ] @@ -596,6 +757,7 @@ "metadata": {}, "source": [ "Methods like `__str__` are called **special methods**.\n", + "\n", "You can identify them because their names begin and end with two underscores." ] }, @@ -607,12 +769,13 @@ "## The init method\n", "\n", "The most special of the special methods is `__init__`, so-called because it initializes the attributes of a new object.\n", + "\n", "An `__init__` method for the `Time` class might look like this:" ] }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 26, "id": "7ddcca8a", "metadata": {}, "outputs": [], @@ -620,8 +783,11 @@ "%%add_method_to Time\n", "\n", " def __init__(self, hour=0, minute=0, second=0):\n", + "\n", " self.hour = hour\n", + "\n", " self.minute = minute\n", + " \n", " self.second = second" ] }, @@ -631,17 +797,27 @@ "metadata": {}, "source": [ "Now when we instantiate a `Time` object, Python invokes `__init__`, and passes along the arguments.\n", + "\n", "So we can create an object and initialize the attributes at the same time." ] }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 27, "id": "afd652c6", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "09:40:00\n" + ] + } + ], "source": [ "time = Time(9, 40, 0)\n", + "\n", "print(time)" ] }, @@ -656,12 +832,21 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 28, "id": "8a852588", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "00:00:00\n" + ] + } + ], "source": [ "time = Time()\n", + "\n", "print(time)" ] }, @@ -675,12 +860,21 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 29, "id": "0ff75ace", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "09:00:00\n" + ] + } + ], "source": [ "time = Time(9)\n", + "\n", "print(time)" ] }, @@ -694,12 +888,21 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 30, "id": "b8e948bc", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "09:45:00\n" + ] + } + ], "source": [ "time = Time(9, 45)\n", + "\n", "print(time)" ] }, @@ -708,8 +911,7 @@ "id": "277de217", "metadata": {}, "source": [ - "And if you provide three arguments, they override all three default\n", - "values.\n", + "And if you provide three arguments, they override all three default values.\n", "\n", "When I write a new class, I almost always start by writing `__init__`, which makes it easier to create objects, and `__str__`, which is useful for debugging." ] @@ -721,17 +923,16 @@ "source": [ "## Operator overloading\n", "\n", - "By defining other special methods, you can specify the behavior of\n", - "operators on programmer-defined types. For example, if you define a\n", - "method named `__add__` for the `Time` class, you can use the `+`\n", - "operator on Time objects.\n", + "By defining other special methods, you can specify the behavior of operators on programmer-defined types. \n", + "\n", + "For example, if you define a method named `__add__` for the `Time` class, you can use the `+` operator on Time objects.\n", "\n", "Here is an `__add__` method." ] }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 31, "id": "0d140036", "metadata": {}, "outputs": [], @@ -739,7 +940,9 @@ "%%add_method_to Time\n", "\n", " def __add__(self, other):\n", + "\n", " seconds = self.time_to_int() + other.time_to_int()\n", + " \n", " return Time.int_to_time(seconds)" ] }, @@ -753,13 +956,23 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 32, "id": "280acfce", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11:12:00\n" + ] + } + ], "source": [ "duration = Time(1, 32)\n", + "\n", "end = start + duration\n", + "\n", "print(end)" ] }, @@ -777,6 +990,7 @@ "* And when we print a `Time` object, its `__str__` method is invoked.\n", "\n", "Changing the behavior of an operator so that it works with programmer-defined types is called **operator overloading**.\n", + "\n", "For every operator, like `+`, there is a corresponding special method, like `__add__`. " ] }, @@ -788,17 +1002,21 @@ "## Debugging\n", "\n", "A `Time` object is valid if the values of `minute` and `second` are between `0` and `60` -- including `0` but not `60` -- and if `hour` is positive.\n", + "\n", "Also, `hour` and `minute` should be integer values, but we might allow `second` to have a fraction part.\n", + "\n", "Requirements like these are called **invariants** because they should always be true.\n", + "\n", "To put it a different way, if they are not true, something has gone wrong.\n", "\n", "Writing code to check invariants can help detect errors and find their causes.\n", + "\n", "For example, you might have a method like `is_valid` that takes a Time object and returns `False` if it violates an invariant." ] }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 33, "id": "6eb34442", "metadata": {}, "outputs": [], @@ -806,14 +1024,19 @@ "%%add_method_to Time\n", "\n", " def is_valid(self):\n", + "\n", " if self.hour < 0 or self.minute < 0 or self.second < 0:\n", " return False\n", + "\n", " if self.minute >= 60 or self.second >= 60:\n", " return False\n", + "\n", " if not isinstance(self.hour, int):\n", " return False\n", + "\n", " if not isinstance(self.minute, int):\n", " return False\n", + " \n", " return True" ] }, @@ -827,7 +1050,7 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 34, "id": "57d86843", "metadata": {}, "outputs": [], @@ -835,8 +1058,11 @@ "%%add_method_to Time\n", "\n", " def is_after(self, other):\n", + "\n", " assert self.is_valid(), 'self is not a valid Time'\n", + "\n", " assert other.is_valid(), 'self is not a valid Time'\n", + " \n", " return self.time_to_int() > other.time_to_int()" ] }, @@ -845,29 +1071,50 @@ "id": "e7c78e9a", "metadata": {}, "source": [ - "The `assert` statement evaluates the expression that follows. If the result is `True`, it does nothing; if the result is `False`, it causes an `AssertionError`.\n", + "The `assert` statement evaluates the expression that follows. \n", + "\n", + "If the result is `True`, it does nothing; if the result is `False`, it causes an `AssertionError`.\n", + "\n", "Here's an example." ] }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 35, "id": "5452888b", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "00:132:00\n" + ] + } + ], "source": [ "duration = Time(minute=132)\n", + "\n", "print(duration)" ] }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 36, "id": "56680d97", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "AssertionError", + "evalue": "self is not a valid Time", + "output_type": "error", + "traceback": [ + "\u001b[31mAssertionError\u001b[39m\u001b[31m:\u001b[39m self is not a valid Time\n" + ] + } + ], "source": [ "%%expect AssertionError\n", "\n", @@ -924,12 +1171,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 37, "id": "3115ea33", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Verbose\n" + ] + } + ], "source": [ "# This cell tells Jupyter to provide detailed debugging information\n", "# when a runtime error occurs. Run it before working on the exercises.\n", @@ -951,21 +1206,33 @@ "* \"Why are static methods called static?\"\n", "\n", "If you ask a virtual assistant to generate a static method, the result will probably begin with `@staticmethod`, which is a \"decorator\" that indicates that it is a static method.\n", + "\n", "Decorators are not covered in this book, but if you are curious, you can ask a VA for more information.\n", "\n", "In this chapter we rewrote several functions as methods.\n", + "\n", "Virtual assistants are generally good at this kind of code transformation.\n", + "\n", "As an example, paste the following function into a VA and ask it, \"Rewrite this function as a method of the `Time` class.\"" ] }, + { + "cell_type": "markdown", + "id": "9cb0f57f", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "code", - "execution_count": 36, + "execution_count": 38, "id": "133d7679", "metadata": {}, "outputs": [], "source": [ "def subtract_time(t1, t2):\n", + " \n", " return time_to_int(t1) - time_to_int(t2)" ] }, @@ -977,6 +1244,7 @@ "### Exercise\n", "\n", "In the previous chapter, a series of exercises asked you to write a `Date` class and several functions that work with `Date` objects.\n", + "\n", "Now let's practice rewriting those functions as methods.\n", "\n", "1. Write a definition for a `Date` class that represents a date -- that is, a year, month, and day of the month.\n", @@ -992,12 +1260,49 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 58, "id": "3c9f3777-4869-481e-9f4e-4223d6028913", "metadata": {}, - "outputs": [], - "source": [ - "# Solution goes here" + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1933-06-22\n" + ] + } + ], + "source": [ + "# Solution goes here\n", + "class Date:\n", + "\n", + " def __init__(self, year, month, day) -> None:\n", + " self.year = year\n", + " self.month = month\n", + " self.day = day\n", + "\n", + " def __str__(self) -> str:\n", + "\n", + " formatted_date = f\"{self.year:04d}-{self.month:02d}-{self.day:02d}\"\n", + "\n", + " return formatted_date\n", + " \n", + " def to_tuple(self):\n", + " date_tuple = (self.year, self.month, self.day)\n", + " return date_tuple\n", + " \n", + " def is_after(self, another_self):\n", + " first_date = self.to_tuple()\n", + " second_date = another_self.to_tuple()\n", + "\n", + " if first_date > second_date:\n", + " return True\n", + " else:\n", + " return False\n", + "\n", + "\n", + "june_date = Date(1933, 6, 22)\n", + "print(june_date)" ] }, { @@ -1012,12 +1317,20 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 59, "id": "fd4b2521-aa71-45da-97eb-ce62ce2714ad", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1933-06-22\n" + ] + } + ], "source": [ "birthday1 = Date(1933, 6, 22)\n", "print(birthday1)" @@ -1025,12 +1338,20 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 60, "id": "ee3f1294-cad1-406b-a574-045ad2b84294", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1933-09-17\n" + ] + } + ], "source": [ "birthday2 = Date(1933, 9, 17)\n", "print(birthday2)" @@ -1038,36 +1359,50 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 61, "id": "ac093f7b-83cf-4488-8842-5c71bcfa35ec", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "birthday1.is_after(birthday2) # should be False" ] }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 62, "id": "7e7cb5e1-631f-4b1e-874f-eb16d4792625", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "birthday2.is_after(birthday1) # should be True" ] }, - { - "cell_type": "code", - "execution_count": null, - "id": "5b92712d", - "metadata": {}, - "outputs": [], - "source": [] - }, { "cell_type": "markdown", "id": "a7f4edf8", @@ -1088,7 +1423,7 @@ "metadata": { "celltoolbar": "Tags", "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "thinkpy", "language": "python", "name": "python3" }, @@ -1102,7 +1437,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.13.5" } }, "nbformat": 4, From 49784e5f7fc6bcd2f19cf587cf5b7272057e796d Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Mon, 16 Mar 2026 14:25:50 +0000 Subject: [PATCH 44/56] Solution to end Point order checking --- chapters/chap16.ipynb | 698 +++++++++++++++++++++++++++++++++++++----- 1 file changed, 623 insertions(+), 75 deletions(-) diff --git a/chapters/chap16.ipynb b/chapters/chap16.ipynb index 57f3d417..275908b3 100644 --- a/chapters/chap16.ipynb +++ b/chapters/chap16.ipynb @@ -45,9 +45,11 @@ "# Classes and Objects\n", "\n", "At this point we have defined classes and created objects that represent the time of day and the day of the year.\n", + "\n", "And we've defined methods that create, modify, and perform computations with these objects.\n", "\n", "In this chapter we'll continue our tour of object-oriented programming (OOP) by defining classes that represent geometric objects, including points, lines, rectangles, and circles.\n", + "\n", "We'll write methods that create and modify these objects, and we'll use the `jupyturtle` module to draw them.\n", "\n", "I'll use these classes to demonstrate OOP topics including object identity and equivalence, shallow and deep copying, and polymorphism." @@ -63,7 +65,9 @@ "## Creating a Point\n", "\n", "In computer graphics a location on the screen is often represented using a pair of coordinates in an `x`-`y` plane.\n", + "\n", "By convention, the point `(0, 0)` usually represents the upper-left corner of the screen, and `(x, y)` represents the point `x` units to the right and `y` units down from the origin.\n", + "\n", "Compared to the Cartesian coordinate system you might have seen in a math class, the `y` axis is upside-down.\n", "\n", "There are several ways we might represent a point in Python:\n", @@ -75,6 +79,7 @@ "- We can create a new type to represent points as objects.\n", "\n", "In object-oriented programming, it would be most idiomatic to create a new type.\n", + "\n", "To do that, we'll start with a class definition for `Point`." ] }, @@ -89,10 +94,13 @@ " \"\"\"Represents a point in 2-D space.\"\"\"\n", " \n", " def __init__(self, x, y):\n", + "\n", " self.x = x\n", + " \n", " self.y = y\n", " \n", " def __str__(self):\n", + " \n", " return f'Point({self.x}, {self.y})'" ] }, @@ -102,6 +110,7 @@ "metadata": {}, "source": [ "The `__init__` method takes the coordinates as parameters and assigns them to attributes `x` and `y`.\n", + "\n", "The `__str__` method returns a string representation of the `Point`.\n", "\n", "Now we can instantiate and display a `Point` object like this." @@ -112,9 +121,18 @@ "execution_count": 3, "id": "d318001a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Point(0, 0)\n" + ] + } + ], "source": [ "start = Point(0, 0)\n", + "\n", "print(start)" ] }, @@ -149,7 +167,18 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "from diagram import diagram, adjust\n", "\n", @@ -179,7 +208,9 @@ "%%add_method_to Point\n", "\n", " def translate(self, dx, dy):\n", + "\n", " self.x += dx\n", + " \n", " self.y += dy" ] }, @@ -189,6 +220,7 @@ "metadata": {}, "source": [ "This function translates the `Point` from one location in the plane to another.\n", + "\n", "If we don't want to modify an existing `Point`, we can use `copy` to copy the original object and then modify the copy." ] }, @@ -197,12 +229,22 @@ "execution_count": 7, "id": "6e37126b", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Point(300, 0)\n" + ] + } + ], "source": [ "from copy import copy\n", "\n", "end1 = copy(start)\n", + "\n", "end1.translate(300, 0)\n", + "\n", "print(end1)" ] }, @@ -224,8 +266,11 @@ "%%add_method_to Point\n", "\n", " def translated(self, dx=0, dy=0):\n", + "\n", " point = copy(self)\n", + " \n", " point.translate(dx, dy)\n", + " \n", " return point" ] }, @@ -244,9 +289,18 @@ "execution_count": 9, "id": "cef864a6", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Point(0, 150)\n" + ] + } + ], "source": [ "end2 = start.translated(0, 150)\n", + "\n", "print(end2)" ] }, @@ -266,6 +320,7 @@ "## Creating a Line\n", "\n", "Now let's define a class that represents the line segment between two points.\n", + "\n", "As usual, we'll start with an `__init__` method and a `__str__` method." ] }, @@ -277,11 +332,15 @@ "outputs": [], "source": [ "class Line:\n", + "\n", " def __init__(self, p1, p2):\n", + "\n", " self.p1 = p1\n", + " \n", " self.p2 = p2\n", " \n", " def __str__(self):\n", + " \n", " return f'Line({self.p1}, {self.p2})'" ] }, @@ -298,9 +357,18 @@ "execution_count": 11, "id": "39b2ae2a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Line(Point(0, 0), Point(300, 0))\n" + ] + } + ], "source": [ "line1 = Line(start, end1)\n", + "\n", "print(line1)" ] }, @@ -310,10 +378,13 @@ "metadata": {}, "source": [ "When we call `print` and pass `line` as a parameter, `print` invokes `__str__` on `line`.\n", + "\n", "The `__str__` method uses an f-string to create a string representation of the `line`. \n", "\n", "The f-string contains two expressions in curly braces, `self.p1` and `self.p2`.\n", + "\n", "When those expressions are evaluated, the results are `Point` objects.\n", + "\n", "Then, when they are converted to strings, the `__str__` method from the `Point` class gets invoked.\n", "\n", "That's why, when we display a `Line`, the result contains the string representations of the `Point` objects.\n", @@ -352,7 +423,18 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAQkAAADoCAYAAAD8BxH3AAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjYsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvq6yFwwAAAAlwSFlzAAAPYQAAD2EBqD+naQAAEdFJREFUeJzt3XmMTff/x/G3Wga1M5bB2IXa950qJbbGTlRbIy0VSZHagor+0TQ0qZaq0NZWaqexldJS69iLqrXWWmrfaoz1l/fn950JOvMew733nOH5SCbu3K3nds55nc/nc+99v1M9ePDggQBAIl5K7AYAUIQEABMhAcBESAAwERIATIQEABMhAcBESAAwERIATIQEABMhAcBESAAwERIATIQEABMhAcBESAAwERIATIQEABMhAcBESAAwERIATIREgBQuXFh+//33R6579913ZfXq1Z5tExAIaQLyLEjQt99+6/UmAM+MkUQQvfrqq/Ljjz+6y926dZOePXtKo0aNpGTJktK2bVu5ffu2u+3OnTsyePBgqV69ulSsWFE6duwoly9f9njrgf9HSISQTkcWL14s+/btk3/++Ufmz5/vrv/ss8/k5Zdfli1btrj7lCtXToYNG+b15gIO040QatOmjWTMmNFd1lHDX3/95S7raOPq1avxoaEjDF3jAPyAkAih9OnTx19OnTq13L17113WTotjx46VJk2aeLh1QMKYbvhA69atZfTo0XLz5k33u/67d+9erzcLcBhJBFDTpk0lbdq0CY4cLIMGDZLY2FipUaOGpEqVKv66MmXKBG1bgSeViq7iACxMNwCYCAkAJkICgImFywC4fv2615sAJFvmzJmf6H6MJACYCAkAJkICgImQAGAiJACYCAkAgQsJ/V7BlStX3OXmzZvLgQMH5FlMmjTJ1U5IkyaNfPHFF8/0XAB89jmJZcuWPfN/vEqVKjJnzhz59NNPn/m5APhsuvFw4Vct09a/f3+pV6+eFCtWTN5///1HPmj03nvvuSIr5cuXlx49esSXbatQoYKULl1aXnrJH7Oef//9VyZMmCBr166VW7dueb05gC8E7OjUKktaGfqPP/6QFStWyKZNm9z1H374oQsPLc22a9cuuX//vnz55ZfiRxkyZHDhpyGh20hYBFfZsmWlcuXKUqdOHalWrZpMnDjRvH+7du3k0KFDST7vkiVL3P4Gn30su1OnTm5tQX+0mKuGRq1atVxpNg2Mzz//3N0vJibGVWVKjoMHD8r27dslVAoVKiSXLl2SNWvWyG+//Savvfaa25EReFOmTHEjzBMnTkjt2rXdj4ZHQuLK+z1JSOhal45e4aOQsEqz6R9XK0SnFJTYCL3IyEgpXry4OyHoGpWeZPTvoBXGu3fv7u6j4fHDDz+4UNGF80qVKsm2bdvkzJkzLsh18VtHsbpepqNava9Ob9955x2vX16KliYUpdlGjhzp5vo6ytBS8RcvXnQ7xJPSgAlFyOhU6Oeff3Y7nlaY0rUWPRs9aYUpPD0t16dTiQULFkiJEiVkxowZcv78ealfv74Lh4RGBUePHpWlS5e6lgR6++bNm111MA0QHUn07t3bk9fyvAn6iqHWbtS5vk5B9AygfSeOHTsWP9QsUKCAzJ07V0aMGOEu79y5U7yiU6Hjx4+7HbNPnz7uXwIiuLQfiU7l9P/3uHHjZN26dRIVFeVuCw8Pl1atWrlpX0K0d4meeHT/0lDQ0IDHI4mHh+FxB7p6/I84b968+MuZMmWSr776KtEdRH/8Qntf6PAWoV+TiKNh8bC4mp9PMsW9d+9ekLbyxeaP9x6B/2nYsKFMnTrVXb5w4YJrZqTXJbdOwrVr14K0hS8eQgK+MmrUKPdJ3po1a0qLFi3c52/07dHk6Ny5syxcuFDq1q0bHzh4elTLDgAqUyElojIVgIAgJACYCAkAJqplwxM3btzwehN8L1OmTOIHjCQAmAgJACZCAoCJkABgIiQAmAgJACZCAoCJkABgIiQAmAgJH9BqWN99991TP3737t2PFPqBfxw5csRV19KvrTdr1uyZG1p5gZDwAa0Urd3MnoYWHN6zZ88TV5JGaA0aNEi6du0q69evdzU3+/btKykN9SRCXE9C62j26tXLFX7VYrtax/Hvv/+WkydPugKwWudz9uzZMnToULdjaQjo9/7Hjh3rbldZsmRxO58W7X3llVdc2X+txKStALRAi1ctE2/evOnCSrdTK1mHhYU983c3Dh8+7No1aIFcfX3jx493dTCnT5/uSVOnmJgYV427SJEirkBvunTpEr2vVtbSFgF//vmnq8Wph5rWetU2E/p4r7+78aT1JPiCV4itWrXK9VPdunWr+137e2hgDB48WDZs2BB/v379+sknn3ziLutUYuDAga7a0sM1HTUclFaW1l4TM2fOFC9pzcmCBQu6qtXaJ0XbOCYVFknRqurDhg1ztUeHDx/uamLqQepV17ewsDCJiIhwBZt1BKcFeBMLi9OnT0vu3LldQMTV68yfP7+cOnXqiULCLwiJENMdSntLaAjoPLVJkyYJ3u/XX391bQj0jKul/rUVwcPeeuutZM2Ldd0iVPRA0CDUpkzR0dHubPosjXLatGkjGzdulC5durhRVs6cORNc19m3b5+ESp48edzoTdsv7NixQ6pWrepGCc8j1iRCTM8g2oLu9ddfdweQ1nKM69QeR6ceWtvxm2++cWflyZMnS2xs7H8qe78odMq1f/9+yZYtm5w9e1ZSioiICDl37twjjap0FKEhmpIwkggx3Ul0Z9cGMo0bN3bNZXLkyPFIdWe9rOsVefPmdTtWUj0yk6oOXbRoUfcTbDri0f6p2vNVh9ja5vFZpxtKp13aiHrMmDHSvn17V4L/8eG6rlfoTyheY3R0tBu16GvUEURi041cuXK56Yiu0+i6iv6t8+XLl6KmGoqQCDFdf/j444/dwa9nGK3sXKNGDSlVqpT7VxsW65Bam+Pq7xogWjXa0qBBA3cA6UGpj/Fq4VKbK+soSLchEOGgVq5c6fq66AGWMWNG18RJ1ycWLVrkSeOk2NhY11ZQX19SC5dKu9fp1FIXnnUhUptVpTS8uxEAVMtOPipTSYp5d4M1CQAmQgKAiZAAYCIkAJgICQAmQgKAiZAAYCIkAJgICQAmQgKAiZAAYCIkAJgICQAmQgKAiZAAYCIkAJgICSCIjtCcB8Dz3pyHkICvaTOeAQMGxP9+9epVKVOmzH9aDISyOc/8+fNdGf3bt2+b99XmPFoUWOuVKq1Vqr04jh49KikJIQFf014by5cvd+GgtEhw06ZNJXv27J4355k5c6YZFlZznpSEatnwtaxZs0rLli1l1qxZ0qNHD5k2bZobXTyO5jzBQ0jA97p37y5RUVGux6i2GNBeFimtOU+a//UCpTkPEAQaDpGRkW5tQvuCJoTmPMFD340AoO9G8Ptu6AGmnda10bJ2N/NKTDK6isd1RdfmPLrQGtecp3Tp0imq7wYhEQCERPBDYsiQIRIeHu4OuBdFJp+EBNMN+Jo2CO7QoYPrn6rvJiD0GEkEACOJ5KPNX8oZSfA5CQAmQgKAiZAAYCIkAJgICQAmQgKAiZAAYCIkAJgICQAmPpaN5/LThAgcRhIATIQEABMhAcBESAAwERIATIQEABMhAcBESAAwERIATIQEABMhAcBESAAwERIATIQEABMhAcBESAAwERIATIQEABMhAcBESAAwERIATIQEABMhAc+ULVtWKleuLHXq1JFq1arJxIkTzfu3a9dODh06lOTzLlmyRLZs2RLALX2x0XcDnpoyZYqUL19eTpw4IbVr13Y/Gh4JmT9//hM9p4ZEuXLlpHr16gHe2hcTIwn4QmRkpBQvXlwOHjwob775ptSsWVNq1KghkyZNir+Phsfu3bvd5ebNm8vQoUOladOmLmT69u3rrl+xYoUsW7ZMxowZ40YoU6dO9ew1PS8YScAX9u7d66YSCxYskBIlSsiMGTPk/PnzUr9+fRcOCY0Kjh49KkuXLpU7d+642zdv3uxCQwNERxK9e/f25LU8bxhJwFPdunVzZ/w+ffrIuHHjZN26dRIVFeVuCw8Pl1atWsmaNWsSfGzbtm0lTZo0kiFDBhcKGhoIPEYS8MWaRBwNi4elSpUq0cemT58+/nLq1Knl3r17QdrKFxsjCfhKw4YN49cRLly4IIsXL3bXJUfmzJnl2rVrQdrCFw8hAV8ZNWqUHDhwwC1ctmjRQvr37+/eHk2Ozp07y8KFC6Vu3bosXAZAqgcPHjwIxBO9yK5fv+71JgDJpiOuJ8FIAoCJkABgIiQAmHgLFJ64ceOG15vw3MqUKVNAn4+RBAATIQHAREgAMBESAEyEBAATIQHAREgAMBESAEyEBAATIfEcKVy4sBw/ftzrzcBjX1tv1KiRNG7cWFq3bi179uxx1x85csRV3dKvszdr1sx9PT6OdZsXCAkgiCZMmCC//PKLrFq1Snr27Cn9+vVz1w8aNEi6du0q69evd7U44wr5JnWbFwgJn9i+fbu0bNlSGjRo4M4gWjRFRwUFCxaUTz75xBWErVChgqsGHUerQletWlVq1aolH330kXjt5s2b8v3330t0dLTExsYG5DkPHz4sVapUiR8hjR8/Xrp06SL3798XL8TExLjS/jt27JDbt28nef+sWbPGX46rlqUVt3bt2uX6iCgtrnP69GlXo9O6zSt8wcsHrly54mo7zps3T/LmzSsXL16UevXquXLyV69eddWitXz8ypUr3VlGK0JrJelevXq50ChVqpRMnjxZLl265Onr0JqTGmpatVpDTw/uSpUqSVhY2FM/p5bZHzZsmDsLDx8+3NXE1HB86SVvzm9hYWESEREhO3fudFMHLcCrf5906dIl+pgPPvhANmzY4C5Pnz7dHfS5c+d2RXzj6njmz59fTp06JVmyZEn0tiJFiogXCAkf0IPq2LFj8WePOFpiXg+8N954w/2uZePjzihbt251O6cGhHr77bdlwIABCT6/znHj+lWEgu7UGnybNm1yowptuPMsjXLatGkjGzdudCOI2bNnS86cOf9zHx1p7Nu3T0IlT548bmSwbds2N6rQEV3FihUTvK/2AFFz5sxxo8KBAwdKSkJI+IBWENSDXeetj+/4euaKqxhtVYS2qkqndHfv3pX9+/dLtmzZ5OzZs5JSdezYUQYPHiz58uWTc+fOudelIwb9++tIQcNVS8oldptXCAkf0E5VGgirV6+OrwytZ37tJ5EYPTPrdEM7XpUsWdKtBSQ2Ry5atKj7CTZdJ1i7dq2bU+sOrmslzzrdUHr2LVasmDsjt2/f3pXgf3zoXahQIfcTitcYHR3tRi36GnUEkdh0Q6eKuoahU0j1008/Sfbs2SVXrlxumqJrG506dXINhjQ44l6TdZsXCAkf0B1n7ty5bu6taw/akapAgQIycuTIRB+jO9rXX3/thuC6g+pbbDly5BAv3bp1S06ePOlCLxDhoHQdRpvz6MGSMWNGGTFihFufWLRo0SN9N0IlNjZWzpw5415fUmsRWiC5R48e7v+LrqHo30erd+uoT/+2+k7H2LFjXZGY0aNHxz/Ous0LVMsOAKplJx+VqbyvTEW1bAABQUgAMBESAEyEBAATIQHAREgAMBESAEyEBAATIQHAREgAMBESAEyEBAATIQHAREgAMBESAEyEBAATIQEE0RGfNdp5GoQEEESDfNZo52kQEvA1bcbzcKsALS5bpkwZuXz5su+b81zwYaOdp0FIwNe00O/y5ctdOCjtu6HNibR4sNfNeWbOnGmGhdWEJyWhWjZ8TdvkafvDWbNmucrT06ZNc6OLlNScJ6UjJOB73bt3l6ioKClRooQrS699KVKCiIgI3zXaeRqEBHxPwyEyMtKtTWhvkoT4sTlPriSa8KQU9N0IAPpuBL/vhh5g2rhIe6CmTZtWvBITE+MaFuuBnlRznriu6NpoRxda4xrtlC5dOkX13SAkAoCQCH5IDBkyRMLDw90Bh9CGBNMN+Jo2CO7QoYNrFqzvJiD0GEkEACOJ5KPNX/DQ5g9ASBESAEyEBAATIQHAREgAMBESAEyEBAATIQHAREgAMPGxbPj6U4HwHiMJACZCAoCJkABgIiQAmAgJACZCAoCJkABgIiQAmAgJACZqXAIwMZIAYCIkAJgICQAmQgKAiZAAYCIkAJgICQAmQgKAiZAAYCIkAJgICQAmQgKAiZAAYCIkAJgICQAmQgKAiZAAYCIkAJgICQAmQgKAWP4P1KbuSkluLR4AAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "width, height, x, y = [2.45, 2.12, 0.27, 1.76]\n", "ax = diagram(width, height)\n", @@ -366,9 +448,11 @@ "metadata": {}, "source": [ "String representations and object diagrams are useful for debugging, but the point of this example is to generate graphics, not text!\n", + "\n", "So we'll use the `jupyturtle` module to draw lines on the screen.\n", "\n", "As we did in [Chapter 4](section_turtle_module), we'll use `make_turtle` to create a `Turtle` object and a small canvas where it can draw.\n", + "\n", "To draw lines, we'll use two new functions from the `jupyturtle` module:\n", "\n", "* `jumpto`, which takes two coordinates and moves the `Turtle` to the given location without drawing a line, and \n", @@ -406,7 +490,9 @@ "%%add_method_to Line\n", "\n", " def draw(self):\n", + " \n", " jumpto(self.p1.x, self.p1.y)\n", + "\n", " moveto(self.p2.x, self.p2.y)" ] }, @@ -423,9 +509,18 @@ "execution_count": 16, "id": "6ac10ec7", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Line(Point(0, 0), Point(0, 150))\n" + ] + } + ], "source": [ "line2 = Line(start, end2)\n", + "\n", "print(line2)" ] }, @@ -442,10 +537,38 @@ "execution_count": 17, "id": "b15b70dd", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", + "\n", "line1.draw()\n", + "\n", "line2.draw()" ] }, @@ -476,6 +599,7 @@ "outputs": [], "source": [ "p1 = Point(200, 100)\n", + "\n", "p2 = Point(200, 100)" ] }, @@ -492,7 +616,18 @@ "execution_count": 19, "id": "7c611eb2", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "p1 == p2" ] @@ -515,6 +650,7 @@ "%%add_method_to Point\n", "\n", "def __eq__(self, other):\n", + "\n", " return (self.x == other.x) and (self.y == other.y)" ] }, @@ -524,6 +660,7 @@ "metadata": {}, "source": [ "This definition considers two `Points` to be equal if their attributes are equal.\n", + "\n", "Now when we use the `==` operator, it invokes the `__eq__` method, which indicates that `p1` and `p2` are considered equal." ] }, @@ -532,7 +669,18 @@ "execution_count": 21, "id": "7660d756", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "p1 == p2" ] @@ -550,7 +698,18 @@ "execution_count": 22, "id": "e76ff9ef", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "p1 is p2" ] @@ -561,7 +720,9 @@ "metadata": {}, "source": [ "It's not possible to override the `is` operator -- it always checks whether the objects are identical.\n", + "\n", "But for programmer-defined types, you can override the `==` operator so it checks whether the objects are equivalent.\n", + "\n", "And you can define what equivalent means." ] }, @@ -573,7 +734,9 @@ "## Creating a Rectangle\n", "\n", "Now let's define a class that represents and draws rectangles.\n", + "\n", "To keep things simple, we'll assume that the rectangles are either vertical or horizontal, not at an angle.\n", + "\n", "What attributes do you think we should use to specify the location and size of a rectangle?\n", "\n", "There are at least two possibilities:\n", @@ -599,11 +762,15 @@ " attributes: width, height, corner.\n", " \"\"\"\n", " def __init__(self, width, height, corner):\n", + "\n", " self.width = width\n", + " \n", " self.height = height\n", + " \n", " self.corner = corner\n", " \n", " def __str__(self):\n", + " \n", " return f'Rectangle({self.width}, {self.height}, {self.corner})'" ] }, @@ -613,6 +780,7 @@ "metadata": {}, "source": [ "As usual, the `__init__` method assigns the parameters to attributes and the `__str__` returns a string representation of the object.\n", + "\n", "Now we can instantiate a `Rectangle` object, using a `Point` as the location of the upper-left corner." ] }, @@ -621,10 +789,20 @@ "execution_count": 24, "id": "5d36d561", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Rectangle(100, 50, Point(30, 20))\n" + ] + } + ], "source": [ "corner = Point(30, 20)\n", + "\n", "box1 = Rectangle(100, 50, corner)\n", + "\n", "print(box1)" ] }, @@ -669,7 +847,18 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "from diagram import Bbox\n", "\n", @@ -699,10 +888,15 @@ "%%add_method_to Rectangle\n", "\n", " def make_points(self):\n", + "\n", " p1 = self.corner\n", + " \n", " p2 = p1.translated(self.width, 0)\n", + " \n", " p3 = p2.translated(0, self.height)\n", + " \n", " p4 = p3.translated(-self.width, 0)\n", + " \n", " return p1, p2, p3, p4" ] }, @@ -724,7 +918,9 @@ "%%add_method_to Rectangle\n", "\n", " def make_lines(self):\n", + "\n", " p1, p2, p3, p4 = self.make_points()\n", + " \n", " return Line(p1, p2), Line(p2, p3), Line(p3, p4), Line(p4, p1)" ] }, @@ -746,7 +942,9 @@ "%%add_method_to Rectangle\n", "\n", " def draw(self):\n", + "\n", " lines = self.make_lines()\n", + " \n", " for line in lines:\n", " line.draw()" ] @@ -764,11 +962,48 @@ "execution_count": 30, "id": "2870c782", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", + "\n", "line1.draw()\n", + "\n", "line2.draw()\n", + "\n", "box1.draw()" ] }, @@ -788,7 +1023,9 @@ "## Changing rectangles\n", "\n", "Now let's consider two methods that modify rectangles, `grow` and `translate`.\n", + "\n", "We'll see that `grow` works as expected, but `translate` has a subtle bug.\n", + "\n", "See if you can figure it out before I explain.\n", "\n", "`grow` takes two numbers, `dwidth` and `dheight`, and adds them to the `width` and `height` attributes of the rectangle." @@ -804,7 +1041,9 @@ "%%add_method_to Rectangle\n", "\n", " def grow(self, dwidth, dheight):\n", + "\n", " self.width += dwidth\n", + " \n", " self.height += dheight" ] }, @@ -821,10 +1060,20 @@ "execution_count": 32, "id": "243ca804", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Rectangle(160, 90, Point(30, 20))\n" + ] + } + ], "source": [ "box2 = copy(box1)\n", + "\n", "box2.grow(60, 40)\n", + "\n", "print(box2)" ] }, @@ -841,7 +1090,49 @@ "execution_count": 33, "id": "110f995f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", "line1.draw()\n", @@ -869,6 +1160,7 @@ "%%add_method_to Rectangle\n", "\n", " def translate(self, dx, dy):\n", + " \n", " self.corner.translate(dx, dy)" ] }, @@ -885,9 +1177,18 @@ "execution_count": 35, "id": "78b9e344", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Rectangle(160, 90, Point(60, 40))\n" + ] + } + ], "source": [ "box2.translate(30, 20)\n", + "\n", "print(box2)" ] }, @@ -904,7 +1205,49 @@ "execution_count": 36, "id": "b70bcad9", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", "line1.draw()\n", @@ -930,6 +1273,7 @@ "## Deep copy\n", "\n", "When we use `copy` to duplicate `box1`, it copies the `Rectangle` object but not the `Point` object it contains.\n", + "\n", "So `box1` and `box2` are different objects, as intended." ] }, @@ -938,7 +1282,18 @@ "execution_count": 37, "id": "b67ce168", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "box1 is box2" ] @@ -956,7 +1311,18 @@ "execution_count": 38, "id": "1d9cf4da", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "box1.corner is box2.corner" ] @@ -995,7 +1361,18 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "from diagram import Bbox\n", "\n", @@ -1013,10 +1390,13 @@ "metadata": {}, "source": [ "What `copy` does is called a **shallow copy** because it copies the object but not the objects it contains.\n", + "\n", "As a result, changing the `width` or `height` of one `Rectangle` does not affect the other, but changing the attributes of the shared `Point` affects both!\n", + "\n", "This behavior is confusing and error-prone.\n", "\n", "Fortunately, the `copy` module provides another function, called `deepcopy`, that copies not only the object but also the objects it refers to, and the objects *they* refer to, and so on. \n", + "\n", "This operation is called a **deep copy**.\n", "\n", "To demonstrate, let's start with a new `Rectangle` that contains a new `Point`." @@ -1027,10 +1407,20 @@ "execution_count": 41, "id": "168277a9", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Rectangle(100, 50, Point(20, 20))\n" + ] + } + ], "source": [ "corner = Point(20, 20)\n", + "\n", "box3 = Rectangle(100, 50, corner)\n", + "\n", "print(box3)" ] }, @@ -1067,7 +1457,18 @@ "execution_count": 43, "id": "fde2486c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "box3.corner is box4.corner" ] @@ -1078,6 +1479,7 @@ "metadata": {}, "source": [ "Because `box3` and `box4` are completely separate objects, we can modify one without affecting the other.\n", + "\n", "To demonstrate, we'll move `box3` and grow `box4`." ] }, @@ -1089,6 +1491,7 @@ "outputs": [], "source": [ "box3.translate(50, 30)\n", + "\n", "box4.grow(100, 60)" ] }, @@ -1105,7 +1508,49 @@ "execution_count": 45, "id": "092ded2c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", "line1.draw()\n", @@ -1122,6 +1567,7 @@ "## Polymorphism\n", "\n", "In the previous example, we invoked the `draw` method on two `Line` objects and two `Rectangle` objects.\n", + "\n", "We can do the same thing more concisely by making a list of objects." ] }, @@ -1148,7 +1594,49 @@ "execution_count": 47, "id": "10912b62", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", "\n", @@ -1161,17 +1649,21 @@ "id": "a1ae190c", "metadata": {}, "source": [ - "The first and second time through the loop, `shape` refers to a `Line` object, so when `draw` is invoked, the method that runs is the one defined in the `Line` class.\n", + "1. The first and second time through the loop, `shape` refers to a `Line` object, so when `draw` is invoked, the method that runs is the one defined *in the `Line` class*.\n", + "\n", + "2. The third and fourth time through the loop, `shape` refers to a `Rectangle` object, so when `draw` is invoked, the method that runs is the one defined *in the `Rectangle` class*.\n", "\n", - "The third and fourth time through the loop, `shape` refers to a `Rectangle` object, so when `draw` is invoked, the method that runs is the one defined in the `Rectangle` class.\n", + "3. In a sense, each object knows how to draw itself.\n", "\n", - "In a sense, each object knows how to draw itself.\n", - "This feature is called **polymorphism**.\n", - "The word comes from Greek roots that mean \"many shaped\".\n", - "In object-oriented programming, polymorphism is the ability of different types to provide the same methods, which makes it possible to perform many computations -- like drawing shapes -- by invoking the same method on different types of objects.\n", + "4. This feature is called **polymorphism**.\n", "\n", - "As an exercise at the end of this chapter, you'll define a new class that represents a circle and provides a `draw` method.\n", - "Then you can use polymorphism to draw lines, rectangles, and circles." + "5. The word comes from Greek roots that mean \"many shaped\".\n", + "\n", + "6. In object-oriented programming, polymorphism is *the ability of different types to provide the same methods*, which makes it possible to perform many computations -- like drawing shapes -- by invoking the same method on different types of objects.\n", + "\n", + "7. As an exercise at the end of this chapter, you'll define a new class that represents a circle and provides a `draw` method.\n", + "\n", + "8. Then you can use polymorphism to draw lines, rectangles, and circles." ] }, { @@ -1182,11 +1674,15 @@ "## Debugging\n", "\n", "In this chapter, we ran into a subtle bug that happened because we created a `Point` that was shared by two `Rectangle` objects, and then we modified the `Point`.\n", - "In general, there are two ways to avoid problems like this: you can avoid sharing objects or you can avoid modifying them.\n", + "\n", + "In general, there are two ways to avoid problems like this: \n", + "1. you can avoid sharing objects.\n", + "2. you can avoid modifying them.\n", "\n", "To avoid sharing objects, you can use deep copy, as we did in this chapter.\n", "\n", "To avoid modifying objects, consider replacing impure functions like `translate` with pure functions like `translated`.\n", + "\n", "For example, here's a version of `translated` that creates a new `Point` and never modifies its attributes." ] }, @@ -1197,10 +1693,13 @@ "metadata": {}, "outputs": [], "source": [ - " def translated(self, dx=0, dy=0):\n", - " x = self.x + dx\n", - " y = self.y + dy\n", - " return Point(x, y)" + "def translated(self, dx=0, dy=0):\n", + " \n", + " x = self.x + dx\n", + " \n", + " y = self.y + dy\n", + " \n", + " return Point(x, y)" ] }, { @@ -1209,9 +1708,11 @@ "metadata": {}, "source": [ "Python provides features that make it easier to avoid modifying objects.\n", + "\n", "They are beyond the scope of this book, but if you are curious, ask a virtual assistant, \"How do I make a Python object immutable?\"\n", "\n", "Creating a new object takes more time than modifying an existing one, but the difference seldom matters in practice.\n", + "\n", "Programs that avoid shared objects and impure functions are often easier to develop, test, and debug -- and the best kind of debugging is the kind you don't have to do." ] }, @@ -1242,12 +1743,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 49, "id": "32b151a5", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Verbose\n" + ] + } + ], "source": [ "# This cell tells Jupyter to provide detailed debugging information\n", "# when a runtime error occurs. Run it before working on the exercises.\n", @@ -1263,6 +1772,7 @@ "### Ask a virtual assistant\n", "\n", "For all of the following exercises, consider asking a virtual assistant for help.\n", + "\n", "If you do, you'll want include as part of the prompt the class definitions for `Point`, `Line`, and `Rectangle` -- otherwise the VA will make a guess about their attributes and functions, and the code it generates won't work." ] }, @@ -1286,7 +1796,7 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 50, "id": "92c07380", "metadata": {}, "outputs": [], @@ -1294,19 +1804,35 @@ "%%add_method_to Line\n", "\n", "def __eq__(self, other):\n", + " \n", " return None" ] }, { "cell_type": "code", - "execution_count": 50, + "execution_count": null, "id": "a99446c4", "metadata": { "tags": [] }, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def line_eq(self, other):\n", + "\n", + " # Check if `other` is of class `Line`\n", + " if not isinstance(other, Line):\n", + " return NotImplemented\n", + "\n", + " # Endpoints match in same order\n", + " same_order = (self.p1 == other.p1) and (self.p2 == other.p2)\n", + "\n", + " # Same endpoints, swapped\n", + " reverse_order = (self.p1 == other.p2) and (self.p2 == other.p1)\n", + "\n", + " return same_order or reverse_order # Returns True if either above are True\n", + "\n", + "Line.__eq__ = line_eq" ] }, { @@ -1319,7 +1845,7 @@ }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 63, "id": "aa086dd1", "metadata": {}, "outputs": [], @@ -1339,10 +1865,21 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 64, "id": "857cba26", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 64, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "line_a = Line(start1, end)\n", "line_b = Line(start2, end)\n", @@ -1361,10 +1898,21 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": 65, "id": "b45def0a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 65, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "line_c = Line(end, start1)\n", "line_a == line_c # should be True" @@ -1380,7 +1928,7 @@ }, { "cell_type": "code", - "execution_count": 54, + "execution_count": 60, "id": "9784300c", "metadata": {}, "outputs": [], @@ -1398,7 +1946,7 @@ }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 61, "id": "5435c8e4", "metadata": {}, "outputs": [], @@ -1427,7 +1975,7 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": null, "id": "f377afbb", "metadata": {}, "outputs": [], @@ -1440,7 +1988,7 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": null, "id": "96d81b90", "metadata": { "tags": [] @@ -1460,7 +2008,7 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": null, "id": "0d603aa3", "metadata": {}, "outputs": [], @@ -1474,7 +2022,7 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": null, "id": "647d0982", "metadata": {}, "outputs": [], @@ -1485,7 +2033,7 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": null, "id": "e351bea3", "metadata": {}, "outputs": [], @@ -1496,7 +2044,7 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": null, "id": "5ad5a076", "metadata": {}, "outputs": [], @@ -1506,7 +2054,7 @@ }, { "cell_type": "code", - "execution_count": 62, + "execution_count": null, "id": "8effaff0", "metadata": {}, "outputs": [], @@ -1537,7 +2085,7 @@ }, { "cell_type": "code", - "execution_count": 63, + "execution_count": null, "id": "d94a6350", "metadata": {}, "outputs": [], @@ -1550,7 +2098,7 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": null, "id": "de6756da", "metadata": { "tags": [] @@ -1570,7 +2118,7 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": null, "id": "4aec759c", "metadata": {}, "outputs": [], @@ -1581,7 +2129,7 @@ }, { "cell_type": "code", - "execution_count": 66, + "execution_count": null, "id": "7ec3339d", "metadata": {}, "outputs": [], @@ -1592,7 +2140,7 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": null, "id": "326dbf24", "metadata": {}, "outputs": [], @@ -1602,7 +2150,7 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": null, "id": "4da710d4", "metadata": {}, "outputs": [], @@ -1639,7 +2187,7 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": null, "id": "30cc0726", "metadata": {}, "outputs": [], @@ -1652,7 +2200,7 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": null, "id": "6cdde16e", "metadata": { "tags": [] @@ -1672,7 +2220,7 @@ }, { "cell_type": "code", - "execution_count": 71, + "execution_count": null, "id": "2afd718c", "metadata": {}, "outputs": [], @@ -1683,7 +2231,7 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": null, "id": "b7bdb467", "metadata": {}, "outputs": [], @@ -1693,7 +2241,7 @@ }, { "cell_type": "code", - "execution_count": 73, + "execution_count": null, "id": "9d09b2c3", "metadata": {}, "outputs": [], @@ -1726,7 +2274,7 @@ }, { "cell_type": "code", - "execution_count": 74, + "execution_count": null, "id": "b3d2328f", "metadata": {}, "outputs": [], @@ -1747,7 +2295,7 @@ }, { "cell_type": "code", - "execution_count": 75, + "execution_count": null, "id": "189c30d4", "metadata": {}, "outputs": [], @@ -1766,7 +2314,7 @@ }, { "cell_type": "code", - "execution_count": 76, + "execution_count": null, "id": "49074ed5", "metadata": {}, "outputs": [], @@ -1785,7 +2333,7 @@ }, { "cell_type": "code", - "execution_count": 77, + "execution_count": null, "id": "d65a9163", "metadata": {}, "outputs": [], @@ -1807,7 +2355,7 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": null, "id": "e3b23b4d", "metadata": {}, "outputs": [], @@ -1838,7 +2386,7 @@ "metadata": { "celltoolbar": "Tags", "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "thinkpy", "language": "python", "name": "python3" }, @@ -1852,7 +2400,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.13.5" } }, "nbformat": 4, From 15cb2825fa2202c184b0c8172ce17577859c84ed Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Tue, 17 Mar 2026 10:43:20 +0000 Subject: [PATCH 45/56] Midpoint solution --- chapters/chap16.ipynb | 124 +++++++++++++++++++++++++++++++++++------- 1 file changed, 103 insertions(+), 21 deletions(-) diff --git a/chapters/chap16.ipynb b/chapters/chap16.ipynb index 275908b3..b5a30854 100644 --- a/chapters/chap16.ipynb +++ b/chapters/chap16.ipynb @@ -1810,7 +1810,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 51, "id": "a99446c4", "metadata": { "tags": [] @@ -1845,7 +1845,7 @@ }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 52, "id": "aa086dd1", "metadata": {}, "outputs": [], @@ -1865,7 +1865,7 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 53, "id": "857cba26", "metadata": {}, "outputs": [ @@ -1875,7 +1875,7 @@ "True" ] }, - "execution_count": 64, + "execution_count": 53, "metadata": {}, "output_type": "execute_result" } @@ -1898,7 +1898,7 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 54, "id": "b45def0a", "metadata": {}, "outputs": [ @@ -1908,7 +1908,7 @@ "True" ] }, - "execution_count": 65, + "execution_count": 54, "metadata": {}, "output_type": "execute_result" } @@ -1928,10 +1928,21 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 55, "id": "9784300c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "line_b == line_c # should be True" ] @@ -1946,10 +1957,21 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 56, "id": "5435c8e4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 56, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "line_d = Line(start1, start2)\n", "line_a == line_d # should be False" @@ -1975,7 +1997,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 57, "id": "f377afbb", "metadata": {}, "outputs": [], @@ -1983,19 +2005,35 @@ "%%add_method_to Line\n", "\n", " def midpoint(self):\n", + " \n", " return Point(0, 0)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 70, "id": "96d81b90", "metadata": { "tags": [] }, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def mid_point(self):\n", + "\n", + " # access inner variables\n", + " x1 = self.p1.x\n", + " y1 = self.p1.y\n", + " x2 = self.p2.x\n", + " y2 = self.p2.y\n", + "\n", + " # compute midpoints\n", + " x_result = ( (x1 + x2) / 2 ) \n", + " y_result = ( (y1 + y2) / 2 )\n", + "\n", + " return Point(x_result, y_result) # Return point object\n", + "\n", + "Line.midpoint = mid_point # update method" ] }, { @@ -2008,7 +2046,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 71, "id": "0d603aa3", "metadata": {}, "outputs": [], @@ -2022,10 +2060,18 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 72, "id": "647d0982", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Point(150.0, 0.0)\n" + ] + } + ], "source": [ "mid1 = line1.midpoint()\n", "print(mid1)" @@ -2033,10 +2079,18 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 73, "id": "e351bea3", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Point(0.0, 75.0)\n" + ] + } + ], "source": [ "mid2 = line2.midpoint()\n", "print(mid2)" @@ -2044,7 +2098,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 74, "id": "5ad5a076", "metadata": {}, "outputs": [], @@ -2054,10 +2108,38 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 75, "id": "8effaff0", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", "\n", From 7d6bb4a938833745f3efaaeef716988eae578db8 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Tue, 17 Mar 2026 11:02:34 +0000 Subject: [PATCH 46/56] Solution for rectangle midpoint --- chapters/chap16.ipynb | 88 +++++++++++++++++++++++++++++++++++++------ 1 file changed, 77 insertions(+), 11 deletions(-) diff --git a/chapters/chap16.ipynb b/chapters/chap16.ipynb index b5a30854..82e0be9b 100644 --- a/chapters/chap16.ipynb +++ b/chapters/chap16.ipynb @@ -2147,6 +2147,14 @@ " shape.draw()" ] }, + { + "cell_type": "markdown", + "id": "de39205f", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "0518c200", @@ -2167,7 +2175,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 76, "id": "d94a6350", "metadata": {}, "outputs": [], @@ -2180,14 +2188,28 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 87, "id": "de6756da", "metadata": { "tags": [] }, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def rectangle_midpoint(self):\n", + "\n", + " x_min = self.corner.x\n", + " y_min = self.corner.y\n", + "\n", + " x_max = (self.width + x_min)\n", + " y_max = (self.height + y_min)\n", + " \n", + " x_result = ( (x_min + x_max) / 2 ) \n", + " y_result = ( (y_min + y_max) / 2 )\n", + "\n", + " return Point(x_result, y_result)\n", + "\n", + "Rectangle.midpoint = rectangle_midpoint" ] }, { @@ -2200,21 +2222,29 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 88, "id": "4aec759c", "metadata": {}, "outputs": [], "source": [ - "corner = Point(30, 20)\n", - "rectangle = Rectangle(100, 80, corner)" + "corner = Point(30, 20) # c\n", + "rectangle = Rectangle(100, 80, corner) # w, h, c" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 89, "id": "7ec3339d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Point(80.0, 60.0)\n" + ] + } + ], "source": [ "mid = rectangle.midpoint()\n", "print(mid)" @@ -2222,7 +2252,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 90, "id": "326dbf24", "metadata": {}, "outputs": [], @@ -2232,10 +2262,46 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 91, "id": "4da710d4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", "\n", From 7db27a00b1deaf3948721e4fc5316fd926697477 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Wed, 18 Mar 2026 10:45:53 +0000 Subject: [PATCH 47/56] make cross solution with list of lines --- chapters/chap16.ipynb | 101 +++++++++++++++++++++++++++++++----------- 1 file changed, 74 insertions(+), 27 deletions(-) diff --git a/chapters/chap16.ipynb b/chapters/chap16.ipynb index 82e0be9b..c4d75e89 100644 --- a/chapters/chap16.ipynb +++ b/chapters/chap16.ipynb @@ -2011,7 +2011,7 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": 58, "id": "96d81b90", "metadata": { "tags": [] @@ -2046,7 +2046,7 @@ }, { "cell_type": "code", - "execution_count": 71, + "execution_count": 59, "id": "0d603aa3", "metadata": {}, "outputs": [], @@ -2060,7 +2060,7 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": 60, "id": "647d0982", "metadata": {}, "outputs": [ @@ -2079,7 +2079,7 @@ }, { "cell_type": "code", - "execution_count": 73, + "execution_count": 61, "id": "e351bea3", "metadata": {}, "outputs": [ @@ -2098,7 +2098,7 @@ }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 62, "id": "5ad5a076", "metadata": {}, "outputs": [], @@ -2108,7 +2108,7 @@ }, { "cell_type": "code", - "execution_count": 75, + "execution_count": 63, "id": "8effaff0", "metadata": {}, "outputs": [ @@ -2147,14 +2147,6 @@ " shape.draw()" ] }, - { - "cell_type": "markdown", - "id": "de39205f", - "metadata": {}, - "source": [ - "### BOOKMARK" - ] - }, { "cell_type": "markdown", "id": "0518c200", @@ -2175,7 +2167,7 @@ }, { "cell_type": "code", - "execution_count": 76, + "execution_count": 64, "id": "d94a6350", "metadata": {}, "outputs": [], @@ -2188,7 +2180,7 @@ }, { "cell_type": "code", - "execution_count": 87, + "execution_count": 65, "id": "de6756da", "metadata": { "tags": [] @@ -2222,7 +2214,7 @@ }, { "cell_type": "code", - "execution_count": 88, + "execution_count": 66, "id": "4aec759c", "metadata": {}, "outputs": [], @@ -2233,7 +2225,7 @@ }, { "cell_type": "code", - "execution_count": 89, + "execution_count": 67, "id": "7ec3339d", "metadata": {}, "outputs": [ @@ -2252,7 +2244,7 @@ }, { "cell_type": "code", - "execution_count": 90, + "execution_count": 68, "id": "326dbf24", "metadata": {}, "outputs": [], @@ -2262,7 +2254,7 @@ }, { "cell_type": "code", - "execution_count": 91, + "execution_count": 69, "id": "4da710d4", "metadata": {}, "outputs": [ @@ -2335,7 +2327,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 92, "id": "30cc0726", "metadata": {}, "outputs": [], @@ -2348,14 +2340,35 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 91, "id": "6cdde16e", "metadata": { "tags": [] }, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def make_cross(self):\n", + "\n", + " # Get individual lines\n", + " side1, side2, side3, side4 = self.make_lines()\n", + "\n", + " # Midpoint of lines\n", + " side1 = side1.midpoint()\n", + " side2 = side2.midpoint()\n", + " side3 = side3.midpoint()\n", + " side4 = side4.midpoint()\n", + "\n", + " # New line objects\n", + " vertical_line = Line(side1, side3)\n", + " horizontal_line = Line(side2, side4)\n", + " \n", + " # Return list\n", + " list_of_lines = [vertical_line, horizontal_line]\n", + "\n", + " return list_of_lines\n", + "\n", + "Rectangle.make_cross = make_cross" ] }, { @@ -2368,7 +2381,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 92, "id": "2afd718c", "metadata": {}, "outputs": [], @@ -2379,7 +2392,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 93, "id": "b7bdb467", "metadata": {}, "outputs": [], @@ -2389,10 +2402,44 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 94, "id": "9d09b2c3", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle()\n", "\n", From e3a794c8d6bbacc3bc0d0f532772f9153ce3b940 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Tue, 24 Mar 2026 13:38:14 +0000 Subject: [PATCH 48/56] Final solution for draw circle. Had to look up how to implement the drawing section which uses translated function introduced later in the notebook to the Point class --- .../.github/workflows/tests.yml | 37 ---- chapters/chap16.ipynb | 172 ++++++++++++++++-- 2 files changed, 158 insertions(+), 51 deletions(-) delete mode 100644 ThinkPythonSolutions/.github/workflows/tests.yml diff --git a/ThinkPythonSolutions/.github/workflows/tests.yml b/ThinkPythonSolutions/.github/workflows/tests.yml deleted file mode 100644 index a3f677ce..00000000 --- a/ThinkPythonSolutions/.github/workflows/tests.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: tests - -on: - push: - branches: [v3] - pull_request: - schedule: - # Run on the first of every month - - cron: "0 0 1 * *" - workflow_dispatch: - -jobs: - tests: - name: Tests (${{ matrix.os }}, Python ${{ matrix.python-version }}) - runs-on: ${{ matrix.os }} - strategy: - matrix: - # don't test on windows - os: [ubuntu-latest, macos-latest] - python-version: ["3.10"] - - steps: - - uses: actions/checkout@v2 - - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 - with: - python-version: ${{ matrix.python-version }} - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements-dev.txt - - - name: Run tests - run: | - make tests diff --git a/chapters/chap16.ipynb b/chapters/chap16.ipynb index c4d75e89..694c6f18 100644 --- a/chapters/chap16.ipynb +++ b/chapters/chap16.ipynb @@ -2327,7 +2327,7 @@ }, { "cell_type": "code", - "execution_count": 92, + "execution_count": 70, "id": "30cc0726", "metadata": {}, "outputs": [], @@ -2340,7 +2340,7 @@ }, { "cell_type": "code", - "execution_count": 91, + "execution_count": 71, "id": "6cdde16e", "metadata": { "tags": [] @@ -2381,7 +2381,7 @@ }, { "cell_type": "code", - "execution_count": 92, + "execution_count": 72, "id": "2afd718c", "metadata": {}, "outputs": [], @@ -2392,7 +2392,7 @@ }, { "cell_type": "code", - "execution_count": 93, + "execution_count": 73, "id": "b7bdb467", "metadata": {}, "outputs": [], @@ -2402,7 +2402,7 @@ }, { "cell_type": "code", - "execution_count": 94, + "execution_count": 74, "id": "9d09b2c3", "metadata": {}, "outputs": [ @@ -2456,6 +2456,7 @@ "### Exercise\n", "\n", "Write a definition for a class named `Circle` with attributes `center` and `radius`, where `center` is a Point object and `radius` is a number.\n", + "\n", "Include special methods `__init__` and a `__str__`, and a method called `draw` that uses `jupyturtle` functions to draw the circle." ] }, @@ -2469,33 +2470,74 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 75, "id": "b3d2328f", "metadata": {}, "outputs": [], "source": [ "from jupyturtle import make_turtle, forward, left, right\n", + "\n", "import math\n", " \n", "def draw_circle(radius):\n", + "\n", " circumference = 2 * math.pi * radius\n", + "\n", " n = 30\n", + "\n", " length = circumference / n\n", + "\n", " angle = 360 / n\n", + "\n", " left(angle / 2)\n", + "\n", " for i in range(n):\n", + "\n", " forward(length)\n", + " \n", " left(angle)" ] }, + { + "cell_type": "markdown", + "id": "be9dc4cb", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "code", - "execution_count": null, + "execution_count": 76, "id": "189c30d4", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "\n", + "# attributes `center` and `radius`, where `center` is a Point object and `radius` is a number.\n", + "class Circle:\n", + " \"\"\"Represents the object of a circle\"\"\"\n", + "\n", + " def __init__(self, center, radius):\n", + "\n", + " self.center = center\n", + " self.radius = radius\n", + "\n", + " def __str__(self):\n", + " return f\"Centre: {self.center}, Radius: {self.radius}\"\n", + "\n", + "\n", + " def draw(self):\n", + "\n", + " start = self.center.translated(self.radius, 0)\n", + " jumpto(start.x, start.y)\n", + " left(90)\n", + " draw_circle(self.radius)\n", + " right(90)\n", + "\n", + "\n", + " # and a method called `draw` that uses `jupyturtle` functions to draw the circle" ] }, { @@ -2504,17 +2546,19 @@ "metadata": {}, "source": [ "You can use the following example to test your code.\n", + "\n", "We'll start with a square `Rectangle` with width and height `100`." ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 77, "id": "49074ed5", "metadata": {}, "outputs": [], "source": [ "corner = Point(20, 20)\n", + "\n", "rectangle = Rectangle(100, 100, corner)" ] }, @@ -2528,16 +2572,26 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 78, "id": "d65a9163", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Centre: Point(70.0, 70.0), Radius: 50.0\n", + "70.0 70.0 50.0\n" + ] + } + ], "source": [ "center = rectangle.midpoint()\n", "radius = rectangle.height / 2\n", "\n", "circle = Circle(center, radius)\n", - "print(circle)" + "print(circle)\n", + "print(circle.center.x, circle.center.y, circle.radius)" ] }, { @@ -2550,10 +2604,100 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 79, "id": "e3b23b4d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "make_turtle(delay=0.01)\n", "\n", From 7b057a7929dc7669456e1c76c82ccf6b1635c39c Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Thu, 9 Apr 2026 15:41:59 +0100 Subject: [PATCH 49/56] solution to card index find winner --- chapters/chap17.ipynb | 801 +++++++++++++++++++++++++++++++++++------- 1 file changed, 681 insertions(+), 120 deletions(-) diff --git a/chapters/chap17.ipynb b/chapters/chap17.ipynb index c26b8b78..9b12f961 100644 --- a/chapters/chap17.ipynb +++ b/chapters/chap17.ipynb @@ -46,8 +46,11 @@ "# Inheritance\n", "\n", "The language feature most often associated with object-oriented programming is **inheritance**.\n", + "\n", "Inheritance is the ability to define a new class that is a modified version of an existing class.\n", + "\n", "In this chapter I demonstrate inheritance using classes that represent playing cards, decks of cards, and poker hands.\n", + "\n", "If you don't play poker, don't worry -- I'll tell you what you need to know." ] }, @@ -59,17 +62,27 @@ "## Representing cards\n", "\n", "There are 52 playing cards in a standard deck -- each of them belongs to one of four suits and one of thirteen ranks. \n", + "\n", "The suits are Spades, Hearts, Diamonds, and Clubs.\n", + "\n", "The ranks are Ace, 2, 3, 4, 5, 6, 7, 8, 9, 10, Jack, Queen, and King.\n", + "\n", "Depending on which game you are playing, an Ace can be higher than King or lower than 2.\n", "\n", + "---\n", + "\n", "If we want to define a new object to represent a playing card, it is obvious what the attributes should be: `rank` and `suit`.\n", - "It is less obvious what type the attributes should be.\n", + "\n", + "It is less obvious what *type* the attributes should be.\n", + "\n", "One possibility is to use strings like `'Spade'` for suits and `'Queen'` for ranks.\n", + "\n", "A problem with this implementation is that it would not be easy to compare cards to see which had a higher rank or suit.\n", "\n", "An alternative is to use integers to **encode** the ranks and suits.\n", + "\n", "In this context, \"encode\" means that we are going to define a mapping between numbers and suits, or between numbers and ranks.\n", + "\n", "This kind of encoding is not meant to be a secret (that would be \"encryption\")." ] }, @@ -124,6 +137,7 @@ " \"\"\"Represents a standard playing card.\"\"\"\n", "\n", " suit_names = ['Clubs', 'Diamonds', 'Hearts', 'Spades']\n", + " \n", " rank_names = [None, 'Ace', '2', '3', '4', '5', '6', '7', \n", " '8', '9', '10', 'Jack', 'Queen', 'King', 'Ace']" ] @@ -133,7 +147,9 @@ "id": "d63f798a", "metadata": {}, "source": [ - "The first element of `rank_names` is `None` because there is no card with rank zero. By including `None` as a place-keeper, we get a list with the nice property that the index `2` maps to the string `'2'`, and so on.\n", + "The first element of `rank_names` is `None` because there is no card with rank zero. \n", + "\n", + "By including `None` as a place-keeper, we get a list with the nice property that the index `2` maps to the string `'2'`, and so on.\n", "\n", "Class variables are associated with the class, rather than an instance of the class, so we can access them like this." ] @@ -143,7 +159,18 @@ "execution_count": 3, "id": "4e4bd268", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['Clubs', 'Diamonds', 'Hearts', 'Spades']" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "Card.suit_names" ] @@ -161,7 +188,18 @@ "execution_count": 4, "id": "8aec2a6a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'Clubs'" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "Card.suit_names[0]" ] @@ -179,7 +217,18 @@ "execution_count": 5, "id": "baf029e9", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'Jack'" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "Card.rank_names[11]" ] @@ -204,7 +253,9 @@ "%%add_method_to Card\n", "\n", " def __init__(self, suit, rank):\n", + "\n", " self.suit = suit\n", + " \n", " self.rank = rank" ] }, @@ -223,7 +274,7 @@ "metadata": {}, "outputs": [], "source": [ - "queen = Card(1, 12)" + "queen = Card(1, 12) # assigns the values to the according input" ] }, { @@ -239,7 +290,18 @@ "execution_count": 8, "id": "b182e6fa", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "(1, 12)" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "queen.suit, queen.rank" ] @@ -257,7 +319,18 @@ "execution_count": 9, "id": "17ce1a51", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['Clubs', 'Diamonds', 'Hearts', 'Spades']" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "queen.suit_names" ] @@ -290,8 +363,11 @@ "%%add_method_to Card\n", "\n", " def __str__(self):\n", + "\n", " rank_name = Card.rank_names[self.rank]\n", + "\n", " suit_name = Card.suit_names[self.suit]\n", + " \n", " return f'{rank_name} of {suit_name}' " ] }, @@ -308,7 +384,15 @@ "execution_count": 11, "id": "e7f9304d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Queen of Diamonds\n" + ] + } + ], "source": [ "print(queen)" ] @@ -319,8 +403,11 @@ "metadata": {}, "source": [ "The following is a diagram of the `Card` class object and the Card instance.\n", + "\n", "`Card` is a class object, so its type is `type`.\n", + "\n", "`queen` is an instance of `Card`, so its type is `Card`.\n", + "\n", "To save space, I didn't draw the contents of `suit_names` and `rank_names`." ] }, @@ -357,7 +444,18 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "from diagram import diagram, Bbox, make_list, adjust\n", "\n", @@ -380,7 +478,11 @@ "id": "ccb8e41d", "metadata": {}, "source": [ - "Every `Card` instance has its own `suit` and `rank` attributes, but there is only one `Card` class object, and only one copy of the class variables `suit_names` and `rank_names`." + "Every `Card` instance has its own `suit` and `rank` attributes, \n", + "\n", + "but there is only one `Card` class object, \n", + "\n", + "and only one copy of the class variables `suit_names` and `rank_names`." ] }, { @@ -398,9 +500,18 @@ "execution_count": 14, "id": "cadb115d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Queen of Diamonds\n" + ] + } + ], "source": [ "queen2 = Card(1, 12)\n", + "\n", "print(queen2)" ] }, @@ -417,7 +528,18 @@ "execution_count": 15, "id": "6a625fde", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "queen == queen2" ] @@ -428,6 +550,7 @@ "metadata": {}, "source": [ "They don't, so it returns `False`.\n", + "\n", "We can change this behavior by defining the special method `__eq__`." ] }, @@ -441,6 +564,7 @@ "%%add_method_to Card\n", "\n", " def __eq__(self, other):\n", + " \n", " return self.suit == other.suit and self.rank == other.rank" ] }, @@ -449,7 +573,10 @@ "id": "bd66a9d3", "metadata": {}, "source": [ - "`__eq__` takes two `Card` objects as parameters and returns `True` if they have the same suit and rank, even if they are not the same object.\n", + "`__eq__` takes two `Card` objects as parameters and returns `True` if they have the same suit and rank, \n", + "\n", + "even if they are not the same object.\n", + "\n", "In other words, it checks whether they are equivalent, even if they are not identical.\n", "\n", "When we use the `==` operator with `Card` objects, Python calls the `__eq__` method." @@ -460,7 +587,18 @@ "execution_count": 17, "id": "2c10425b", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "queen == queen2" ] @@ -478,9 +616,18 @@ "execution_count": 18, "id": "c2a695b4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6 of Diamonds\n" + ] + } + ], "source": [ "six = Card(1, 6)\n", + "\n", "print(six)" ] }, @@ -497,7 +644,18 @@ "execution_count": 19, "id": "400c3340", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "queen == six" ] @@ -508,6 +666,7 @@ "metadata": {}, "source": [ "If we use the `!=` operator, Python invokes a special method called `__ne__`, if it exists.\n", + "\n", "Otherwise it invokes`__eq__` and inverts the result -- so if `__eq__` returns `True`, the result of the `!=` operator is `False`." ] }, @@ -516,7 +675,18 @@ "execution_count": 20, "id": "c7d731b6", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "queen != queen2" ] @@ -526,7 +696,18 @@ "execution_count": 21, "id": "d2be6c82", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "queen != six" ] @@ -537,6 +718,7 @@ "metadata": {}, "source": [ "Now suppose we want to compare two cards to see which is bigger.\n", + "\n", "If we use one of the relational operators, we get a `TypeError`." ] }, @@ -547,7 +729,16 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "TypeError", + "evalue": "'<' not supported between instances of 'Card' and 'Card'", + "output_type": "error", + "traceback": [ + "\u001b[31mTypeError\u001b[39m\u001b[31m:\u001b[39m '<' not supported between instances of 'Card' and 'Card'\n" + ] + } + ], "source": [ "%%expect TypeError\n", "\n", @@ -560,7 +751,9 @@ "metadata": {}, "source": [ "To change the behavior of the `<` operator, we can define a special method called `__lt__`, which is short for \"less than\".\n", + "\n", "For the sake of this example, let's assume that suit is more important than rank -- so all Spades outrank all Hearts, which outrank all Diamonds, and so on.\n", + "\n", "If two cards have the same suit, the one with the higher rank wins.\n", "\n", "To implement this logic, we'll use the following method, which returns a tuple containing a card's suit and rank, in that order." @@ -576,6 +769,7 @@ "%%add_method_to Card\n", "\n", " def to_tuple(self):\n", + " \n", " return (self.suit, self.rank)" ] }, @@ -597,6 +791,7 @@ "%%add_method_to Card\n", "\n", " def __lt__(self, other):\n", + "\n", " return self.to_tuple() < other.to_tuple()" ] }, @@ -616,7 +811,18 @@ "execution_count": 25, "id": "9d4ea1f8", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "six < queen" ] @@ -635,7 +841,18 @@ "execution_count": 26, "id": "676ede7e", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "queen < queen2" ] @@ -645,7 +862,18 @@ "execution_count": 27, "id": "3c4854fb", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "queen > queen2" ] @@ -668,6 +896,7 @@ "%%add_method_to Card\n", "\n", " def __le__(self, other):\n", + " \n", " return self.to_tuple() <= other.to_tuple()" ] }, @@ -684,7 +913,18 @@ "execution_count": 29, "id": "bea50d85", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "queen <= queen2" ] @@ -694,7 +934,18 @@ "execution_count": 30, "id": "8d539454", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "queen <= six" ] @@ -712,7 +963,18 @@ "execution_count": 31, "id": "e7edb7cb", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "queen >= six" ] @@ -723,7 +985,9 @@ "metadata": {}, "source": [ "As we have defined them, these methods are complete in the sense that we can compare any two `Card` objects, and consistent in the sense that results from different operators don't contradict each other.\n", + "\n", "With these two properties, we can say that `Card` objects are **totally ordered**.\n", + "\n", "And that means, as we'll see soon, that they can be sorted." ] }, @@ -735,6 +999,7 @@ "## Decks\n", "\n", "Now that we have objects that represent cards, let's define objects that represent decks.\n", + "\n", "The following is a class definition for `Deck` with\n", "an `__init__` method takes a list of `Card` objects as a parameter and assigns it to an attribute called `cards`." ] @@ -749,6 +1014,7 @@ "class Deck:\n", "\n", " def __init__(self, cards):\n", + " \n", " self.cards = cards" ] }, @@ -770,11 +1036,17 @@ "%%add_method_to Deck\n", "\n", " def make_cards():\n", + "\n", " cards = []\n", + "\n", " for suit in range(4):\n", + "\n", " for rank in range(2, 15):\n", + "\n", " card = Card(suit, rank)\n", + "\n", " cards.append(card)\n", + " \n", " return cards" ] }, @@ -784,7 +1056,9 @@ "metadata": {}, "source": [ "In `make_cards`, the outer loop enumerates the suits from `0` to `3`.\n", + "\n", "The inner loop enumerates the ranks from `2` to `14` -- where `14` represents an Ace that outranks a King.\n", + "\n", "Each iteration creates a new `Card` with the current suit and rank, and appends it to `cards`.\n", "\n", "Here's how we make a list of cards and a `Deck` object that contains it." @@ -795,10 +1069,23 @@ "execution_count": 34, "id": "ca50c79b", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "52" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "cards = Deck.make_cards()\n", + "\n", "deck = Deck(cards)\n", + "\n", "len(deck.cards)" ] }, @@ -832,9 +1119,13 @@ "%%add_method_to Deck\n", "\n", " def __str__(self):\n", + "\n", " res = []\n", + "\n", " for card in self.cards:\n", + "\n", " res.append(str(card))\n", + " \n", " return '\\n'.join(res)" ] }, @@ -871,7 +1162,18 @@ "execution_count": 37, "id": "fb3350ef", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'Queen of Diamonds\\n6 of Diamonds'" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "str(small_deck)" ] @@ -891,7 +1193,16 @@ "execution_count": 38, "id": "d67f8fd5", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Queen of Diamonds\n", + "6 of Diamonds\n" + ] + } + ], "source": [ "print(small_deck)" ] @@ -926,6 +1237,7 @@ "%%add_method_to Deck\n", "\n", " def take_card(self):\n", + " \n", " return self.cards.pop()" ] }, @@ -942,7 +1254,15 @@ "execution_count": 40, "id": "5afccad6", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ace of Spades\n" + ] + } + ], "source": [ "card = deck.take_card()\n", "print(card)" @@ -961,7 +1281,18 @@ "execution_count": 41, "id": "58f9473a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "51" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "len(deck.cards)" ] @@ -1000,9 +1331,21 @@ "execution_count": 43, "id": "f234eff4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "52" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "deck.put_card(card)\n", + "\n", "len(deck.cards)" ] }, @@ -1065,10 +1408,23 @@ "execution_count": 47, "id": "6b0f6b02", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2 of Diamonds\n", + "4 of Hearts\n", + "5 of Clubs\n", + "8 of Diamonds\n" + ] + } + ], "source": [ "deck.shuffle()\n", + "\n", "for card in deck.cards[:4]:\n", + "\n", " print(card)" ] }, @@ -1090,6 +1446,7 @@ "%%add_method_to Deck\n", " \n", " def sort(self):\n", + " \n", " self.cards.sort()" ] }, @@ -1124,7 +1481,18 @@ "execution_count": 50, "id": "54e91c91", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2 of Clubs\n", + "3 of Clubs\n", + "4 of Clubs\n", + "5 of Clubs\n" + ] + } + ], "source": [ "for card in deck.cards[:4]:\n", " print(card)" @@ -1136,6 +1504,7 @@ "metadata": {}, "source": [ "In this example, `Deck.sort` doesn't do anything other than invoke `list.sort`.\n", + "\n", "Passing along responsibility like this is called **delegation**." ] }, @@ -1147,6 +1516,7 @@ "## Parents and children\n", "\n", "Inheritance is the ability to define a new class that is a modified version of an existing class.\n", + "\n", "As an example, let's say we want a class to represent a \"hand\", that is, the cards held by one player.\n", "\n", "* A hand is similar to a deck -- both are made up of a collection of cards, and both require operations like adding and removing cards.\n", @@ -1165,7 +1535,7 @@ "metadata": {}, "outputs": [], "source": [ - "class Hand(Deck):\n", + "class Hand(Deck): # class New(Old):\n", " \"\"\"Represents a hand of playing cards.\"\"\"" ] }, @@ -1188,8 +1558,10 @@ "source": [ "%%add_method_to Hand\n", "\n", - " def __init__(self, label=''):\n", + " def __init__(self, label=''): # overrides previous implementation\n", + "\n", " self.label = label\n", + "\n", " self.cards = []" ] }, @@ -1199,6 +1571,7 @@ "metadata": {}, "source": [ "This version of `__init__` takes an optional string as a parameter, and always starts with an empty list of cards.\n", + "\n", "When we create a `Hand`, Python invokes this method, not the one in `Deck` -- which we can confirm by checking that the result has a `label` attribute." ] }, @@ -1207,9 +1580,21 @@ "execution_count": 53, "id": "8de8cff4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'player 1'" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "hand = Hand('player 1')\n", + "\n", "hand.label" ] }, @@ -1226,11 +1611,22 @@ "execution_count": 54, "id": "9f582ce0", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Ace of Spades\n" + ] + } + ], "source": [ "deck = Deck(cards)\n", + "\n", "card = deck.take_card()\n", + "\n", "hand.put_card(card)\n", + "\n", "print(hand)" ] }, @@ -1252,8 +1648,11 @@ "%%add_method_to Deck\n", "\n", " def move_cards(self, other, num):\n", + "\n", " for i in range(num):\n", + "\n", " card = self.take_card()\n", + " \n", " other.put_card(card)" ] }, @@ -1262,7 +1661,8 @@ "id": "16e6c404", "metadata": {}, "source": [ - "This method is polymorphic -- that is, it works with more than one type: `self` and `other` can be either a `Hand` or a `Deck`.\n", + "This method is **polymorphic** -- that is, it works with more than one type: `self` and `other` can be either a `Hand` or a `Deck`.\n", + "\n", "So we can use this method to deal a card from `Deck` to a `Hand`, from one `Hand` to another, or from a `Hand` back to a `Deck`." ] }, @@ -1271,17 +1671,29 @@ "id": "e648a722", "metadata": {}, "source": [ - "When a new class inherits from an existing one, the existing one is called the **parent** and the new class is called the **child**. In general:\n", + "When a new class inherits from an existing one, the existing one is called the **parent** and the new class is called the **child**. \n", + "\n", + "> So the **PREVIOUS** class is the **OLDER** class.\n", + "\n", + "> The **NEW** class has all the parts of the **OLDER** class, but can be further modified and updated into the **NEW** class.\n", + "\n", + ">> Inheritance is helpful because we might want a very similar class but with some modifications. \n", "\n", - "* Instances of the child class should have all of the attributes of the parent class, but they can have additional attributes.\n", + ">>> For example, we might want lots of different NPCs in a game, and most will be either an Animal or Humanoid class, which will largely share some similarities although being specialist in their own way.\n", "\n", - "* The child class should have all of the methods of the parent class, but it can have additional methods.\n", "\n", - "* If a child class overrides a method from the parent class, the new method should take the same parameters and return a compatible result.\n", + "In general:\n", + "\n", + "* Instances of the child class ***should have all of the attributes*** of the parent class, but they can have additional attributes.\n", + "\n", + "* The child class ***should have all of the methods*** of the parent class, but it can have additional methods.\n", + "\n", + "* If a child class overrides a method from the parent class, ***the new method should take the same parameters*** and return a compatible result.\n", "\n", "This set of rules is called the \"Liskov substitution principle\" after computer scientist Barbara Liskov.\n", "\n", "If you follow these rules, any function or method designed to work with an instance of a parent class, like a `Deck`, will also work with instances of a child class, like `Hand`.\n", + "\n", "If you violate these rules, your code will collapse like a house of cards (sorry)." ] }, @@ -1293,6 +1705,7 @@ "## Specialization\n", "\n", "Let's make a class called `BridgeHand` that represents a hand in bridge -- a widely played card game.\n", + "\n", "We'll inherit from `Hand` and add a new method called `high_card_point_count` that evaluates a hand using a \"high card point\" method, which adds up points for the high cards in the hand.\n", "\n", "Here's a class definition that contains as a class variable a dictionary that maps from card names to their point values." @@ -1305,7 +1718,7 @@ "metadata": {}, "outputs": [], "source": [ - "class BridgeHand(Hand):\n", + "class BridgeHand(Hand): # inherits from class Hand\n", " \"\"\"Represents a bridge hand.\"\"\"\n", "\n", " hcp_dict = {\n", @@ -1329,11 +1742,25 @@ "execution_count": 57, "id": "0586b764", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "('Queen', 2)" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "rank = 12\n", - "rank_name = Card.rank_names[rank]\n", - "score = BridgeHand.hcp_dict.get(rank_name, 0)\n", + "\n", + "rank_name = Card.rank_names[rank] # add list item\n", + "\n", + "score = BridgeHand.hcp_dict.get(rank_name, 0) # access dict value\n", + "\n", "rank_name, score" ] }, @@ -1354,11 +1781,16 @@ "source": [ "%%add_method_to BridgeHand\n", "\n", - " def high_card_point_count(self):\n", + " def high_card_point_count(self): # adding to the new child class\n", + "\n", " count = 0\n", + "\n", " for card in self.cards:\n", + "\n", " rank_name = Card.rank_names[card.rank]\n", + "\n", " count += BridgeHand.hcp_dict.get(rank_name, 0)\n", + "\n", " return count" ] }, @@ -1375,7 +1807,9 @@ "# initializes the random number generator\n", "\n", "cards = Deck.make_cards()\n", + "\n", "deck = Deck(cards)\n", + "\n", "random.seed(3)" ] }, @@ -1384,7 +1818,7 @@ "id": "94535d8e", "metadata": {}, "source": [ - "To test it, we'll deal a hand with five cards -- a bridge hand usually has thirteen, but it's easier to test code with small examples." + "To test it, we'll deal a hand with five cards -- a bridge hand usually has thirteen, but it's easier to test code with small examples." ] }, { @@ -1392,12 +1826,26 @@ "execution_count": 60, "id": "f7d9275a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4 of Diamonds\n", + "King of Hearts\n", + "10 of Hearts\n", + "10 of Clubs\n", + "Queen of Diamonds\n" + ] + } + ], "source": [ "hand = BridgeHand('player 2')\n", "\n", "deck.shuffle()\n", + "\n", "deck.move_cards(hand, 5)\n", + "\n", "print(hand)" ] }, @@ -1414,7 +1862,18 @@ "execution_count": 61, "id": "ceb63a74", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "5" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "hand.high_card_point_count()" ] @@ -1425,6 +1884,7 @@ "metadata": {}, "source": [ "`BridgeHand` inherits the variables and methods of `Hand` and adds a class variable and a method that are specific to bridge.\n", + "\n", "This way of using inheritance is called **specialization** because it defines a new class that is specialized for a particular use, like playing bridge." ] }, @@ -1436,15 +1896,20 @@ "## Debugging\n", "\n", "Inheritance is a useful feature.\n", - "Some programs that would be repetitive without inheritance can be written more concisely with it.\n", - "Also, inheritance can facilitate code reuse, since you can customize the behavior of a parent class without having to modify it.\n", - "In some cases, the inheritance structure reflects the natural structure of the problem, which makes the design easier to understand.\n", "\n", - "On the other hand, inheritance can make programs difficult to read.\n", - "When a method is invoked, it is sometimes not clear where to find its definition -- the relevant code may be spread across several modules.\n", + "> Some programs that would be ***repetitive*** without inheritance can be written ***more concisely*** with it.\n", "\n", - "Any time you are unsure about the flow of execution through your program, the simplest solution is to add print statements at the beginning of the relevant methods.\n", - "If `Deck.shuffle` prints a message that says something like `Running Deck.shuffle`, then as the program runs it traces the flow of execution.\n", + ">> Also, inheritance can facilitate code reuse, since you can ***customize the behavior of a parent class without having to modify it***.\n", + "\n", + ">>> In some cases, the ***inheritance structure reflects the natural structure of the problem***, which makes the design easier to understand.\n", + "\n", + ">>>> On the other hand, ***inheritance can make programs difficult to read***.\n", + "\n", + ">>> When a method is invoked, it is sometimes not clear where to find its definition -- the relevant code may be spread across several modules.\n", + "\n", + ">> Any time you are unsure about the flow of execution through your program, the simplest solution is to ***add print statements at the beginning of the relevant methods***.\n", + "\n", + "> If `Deck.shuffle` prints a message that says something like `Running Deck.shuffle`, then as the program runs, it traces the flow of execution.\n", "\n", "As an alternative, you could use the following function, which takes an object and a method name (as a string) and returns the class that provides the definition of the method." ] @@ -1456,11 +1921,14 @@ "metadata": {}, "outputs": [], "source": [ - "def find_defining_class(obj, method_name):\n", + "def find_defining_class(obj, method_name): # object and method name (str)\n", " \"\"\"Find the class where the given method is defined.\"\"\"\n", - " for typ in type(obj).mro():\n", + " for typ in type(obj).mro(): # for type in obj, mro = built in method \n", + "\n", " if method_name in vars(typ):\n", + "\n", " return typ\n", + " \n", " return f'Method {method_name} not found.'" ] }, @@ -1469,8 +1937,9 @@ "id": "1ee8f2da", "metadata": {}, "source": [ - "`find_defining_class` uses the `mro` method to get the list of class objects (types) that will be searched for methods.\n", - "\"MRO\" stands for \"method resolution order\", which is the sequence of classes Python searches to \"resolve\" a method name -- that is, to find the function object the name refers to.\n", + "`find_defining_class` uses the `mro` method to ***get the list of class objects (types)*** that will be searched for methods.\n", + "\n", + "\"MRO\" stands for ***\"method resolution order\"***, which is the sequence of classes Python searches to \"resolve\" a method name -- that is, to find the function object the name refers to.\n", "\n", "As an example, let's instantiate a `BridgeHand` and then find the defining class of `shuffle`." ] @@ -1480,9 +1949,21 @@ "execution_count": 63, "id": "c5bec04f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "__main__.Deck" + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "hand = BridgeHand('player 3')\n", + "\n", "find_defining_class(hand, 'shuffle')" ] }, @@ -1502,28 +1983,28 @@ "## Glossary\n", "\n", "**inheritance:**\n", - " The ability to define a new class that is a modified version of a previously defined class.\n", + " The ability to ***define a new class that is a modified version*** of a previously defined class.\n", "\n", "**encode:**\n", - " To represent one set of values using another set of values by constructing a mapping between them.\n", + " To represent one set of values using ***another set of values*** by constructing a mapping between them.\n", "\n", "**class variable:**\n", - "A variable defined inside a class definition, but not inside any method.\n", + "A variable defined ***inside a class definition***, but not inside any method.\n", "\n", "**totally ordered:**\n", - "A set of objects is totally ordered if we can compare any two elements and the results are consistent.\n", + "A set of objects is totally ordered if we can ***compare any two elements*** and the results are consistent.\n", "\n", "**delegation:**\n", - "When one method passes responsibility to another method to do most or all of the work.\n", + "When one method ***passes responsibility to another method*** to do most or all of the work.\n", "\n", "**parent class:**\n", - "A class that is inherited from.\n", + "A class that is ***inherited from***.\n", "\n", "**child class:**\n", - "A class that inherits from another class.\n", + "A class that ***inherits from another class***.\n", "\n", "**specialization:**\n", - "A way of using inheritance to create a new class that is a specialized version of an existing class." + "A way of ***using inheritance to create a new class*** that is a specialized version of an existing class." ] }, { @@ -1541,7 +2022,15 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Verbose\n" + ] + } + ], "source": [ "# This cell tells Jupyter to provide detailed debugging information\n", "# when a runtime error occurs. Run it before working on the exercises.\n", @@ -1556,21 +2045,38 @@ "source": [ "### Ask a Virtual Assistant\n", "\n", - "When it goes well, object-oriented programming can make programs more readable, testable, and reusable.\n", + "When it goes well, object-oriented programming (OOP) can make programs more readable, testable, and reusable.\n", + "\n", "But it can also make programs complicated and hard to maintain.\n", + "\n", "As a result, OOP is a topic of controversy -- some people love it, and some people don't.\n", "\n", "To learn more about the topic, ask a virtual assistant:\n", "\n", "* What are some pros and cons of object-oriented programming?\n", + "> Can make things more complicated if over used or allowed to run wild.\n", + "> Easier to read and interpret and promotes code reuse.\n", "\n", "* What does it mean when people say \"favor composition over inheritance\"?\n", + "> Composition is a class with a ***helper object*** and delegates work to it.\n", + "> Inheritance is a class which is a specialist version of the parent.\n", + ">> Less rigid than inheritance, easier to change class behaviours, avoids deep inheritance trees and often matches the problem better.\n", + ">>> Instead of `Car` inheriting from `Engine`, `Car` can ***have** an `Engine`.\n", "\n", "* What is the Liskov substitution principle?\n", + "> A child class should be usable anywhere the parent class is expected to be **without** breaking the program.\n", + ">> Code written for the parent class should also work with the child class via same attributes, inputs and a compatible result.\n", "\n", "* Is Python an object-oriented language?\n", + "> Python supports classes, inheritance and polymorphism (so it is object-oriented).\n", + ">> Most \"values\" in Python are **objects**.\n", + ">>> Python is a **multi-paradigm** language. You can program proceduarl, functional or object-oriented code and mix them.\n", "\n", "* What are the requirements for a set to be totally ordered?\n", + "> Any two elements can be compared.\n", + "> Comparison results are consistent.\n", + ">> Any two elements `a` and `b`, at least one of these should be true:\n", + ">> `a < b` OR ` a == b` OR `a > b`.\n", "\n", "And as always, consider using a virtual assistant to help with the following exercises." ] @@ -1583,6 +2089,7 @@ "### Exercise\n", "\n", "In contract bridge, a \"trick\" is a round of play in which each of four players plays one card.\n", + "\n", "To represent those cards, we'll define a class that inherits from `Deck`." ] }, @@ -1603,8 +2110,11 @@ "metadata": {}, "source": [ "As an example, consider this trick, where the first player leads with the 3 of Diamonds, which means that Diamonds are the \"led suit\".\n", + "\n", "The second and third players \"follow suit\", which means they play a card with the led suit.\n", + "\n", "The fourth player plays a card of a different suit, which means they cannot win the trick.\n", + "\n", "So the winner of this trick is the third player, because they played the highest card in the led suit." ] }, @@ -1613,13 +2123,29 @@ "execution_count": 66, "id": "7bb54059", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3 of Diamonds\n", + "10 of Diamonds\n", + "Queen of Diamonds\n", + "King of Hearts\n" + ] + } + ], "source": [ "cards = [Card(1, 3),\n", + " \n", " Card(1, 10),\n", + "\n", " Card(1, 12),\n", + "\n", " Card(2, 13)]\n", + "\n", "trick = Trick(cards)\n", + "\n", "print(trick)" ] }, @@ -1629,6 +2155,7 @@ "metadata": {}, "source": [ "Write a `Trick` method called `find_winner` that loops through the cards in the `Trick` and returns the index of the card that wins.\n", + "\n", "In the previous example, the index of the winning card is `2`." ] }, @@ -1653,20 +2180,43 @@ "source": [ "%%add_method_to Trick\n", "\n", - " def find_winner(self):\n", + " def find_the_winner(self):\n", " return 0" ] }, + { + "cell_type": "markdown", + "id": "f24f1b48", + "metadata": {}, + "source": [ + "## BOOKMARK" + ] + }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 70, "id": "b09cceb1", "metadata": { "tags": [] }, "outputs": [], "source": [ - "# Solution goes here" + "%%add_method_to Trick\n", + "\n", + " def find_winner(self):\n", + "\n", + " lead_suit = self.cards[0].suit # grab the first index as that is the lead suit\n", + "\n", + " winner_idx = 0\n", + "\n", + " for idx, card in enumerate(self.cards):\n", + "\n", + " if card.suit == lead_suit:\n", + "\n", + " if card.rank > self.cards[winner_idx].rank:\n", + " winner_idx = idx\n", + "\n", + " return winner_idx" ] }, { @@ -1681,12 +2231,23 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": 71, "id": "e185c2f7", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "2" + ] + }, + "execution_count": 71, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "trick.find_winner()" ] @@ -1705,7 +2266,7 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": null, "id": "2558ddd1", "metadata": {}, "outputs": [], @@ -1770,7 +2331,7 @@ }, { "cell_type": "code", - "execution_count": 71, + "execution_count": null, "id": "7aa25f29", "metadata": { "tags": [] @@ -1786,7 +2347,7 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": null, "id": "72c769d5", "metadata": { "tags": [] @@ -1808,7 +2369,7 @@ }, { "cell_type": "code", - "execution_count": 73, + "execution_count": null, "id": "e1c4f474", "metadata": { "tags": [] @@ -1837,7 +2398,7 @@ }, { "cell_type": "code", - "execution_count": 74, + "execution_count": null, "id": "c91e3bdb", "metadata": { "tags": [] @@ -1859,7 +2420,7 @@ }, { "cell_type": "code", - "execution_count": 75, + "execution_count": null, "id": "a60e233d", "metadata": { "tags": [] @@ -1881,7 +2442,7 @@ }, { "cell_type": "code", - "execution_count": 76, + "execution_count": null, "id": "ae5063e2", "metadata": { "tags": [] @@ -1914,7 +2475,7 @@ }, { "cell_type": "code", - "execution_count": 77, + "execution_count": null, "id": "940928ba", "metadata": { "tags": [] @@ -1951,7 +2512,7 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": null, "id": "6513ef14", "metadata": { "tags": [] @@ -1972,7 +2533,7 @@ }, { "cell_type": "code", - "execution_count": 79, + "execution_count": null, "id": "8a220d67", "metadata": { "tags": [] @@ -1995,7 +2556,7 @@ }, { "cell_type": "code", - "execution_count": 80, + "execution_count": null, "id": "5a422cae", "metadata": { "tags": [] @@ -2017,7 +2578,7 @@ }, { "cell_type": "code", - "execution_count": 81, + "execution_count": null, "id": "24483b99", "metadata": { "tags": [] @@ -2039,7 +2600,7 @@ }, { "cell_type": "code", - "execution_count": 82, + "execution_count": null, "id": "69f7cea9", "metadata": { "tags": [] @@ -2072,7 +2633,7 @@ }, { "cell_type": "code", - "execution_count": 83, + "execution_count": null, "id": "88bd35fb", "metadata": { "tags": [] @@ -2088,7 +2649,7 @@ }, { "cell_type": "code", - "execution_count": 84, + "execution_count": null, "id": "5e602773", "metadata": { "tags": [] @@ -2100,7 +2661,7 @@ }, { "cell_type": "code", - "execution_count": 85, + "execution_count": null, "id": "997b120d", "metadata": { "tags": [] @@ -2122,7 +2683,7 @@ }, { "cell_type": "code", - "execution_count": 86, + "execution_count": null, "id": "23704ab4", "metadata": { "tags": [] @@ -2134,7 +2695,7 @@ }, { "cell_type": "code", - "execution_count": 87, + "execution_count": null, "id": "7d8d2fdb", "metadata": { "tags": [] @@ -2157,7 +2718,7 @@ }, { "cell_type": "code", - "execution_count": 88, + "execution_count": null, "id": "4c5727d9", "metadata": { "tags": [] @@ -2184,7 +2745,7 @@ }, { "cell_type": "code", - "execution_count": 89, + "execution_count": null, "id": "7e65e951", "metadata": { "tags": [] @@ -2206,7 +2767,7 @@ }, { "cell_type": "code", - "execution_count": 90, + "execution_count": null, "id": "758fc922", "metadata": { "tags": [] @@ -2239,7 +2800,7 @@ }, { "cell_type": "code", - "execution_count": 91, + "execution_count": null, "id": "15a81a40", "metadata": { "tags": [] @@ -2254,7 +2815,7 @@ }, { "cell_type": "code", - "execution_count": 92, + "execution_count": null, "id": "bc7ca211", "metadata": { "tags": [] @@ -2266,7 +2827,7 @@ }, { "cell_type": "code", - "execution_count": 93, + "execution_count": null, "id": "20b65d89", "metadata": { "tags": [] @@ -2286,7 +2847,7 @@ }, { "cell_type": "code", - "execution_count": 94, + "execution_count": null, "id": "57e616be", "metadata": {}, "outputs": [], @@ -2298,7 +2859,7 @@ }, { "cell_type": "code", - "execution_count": 95, + "execution_count": null, "id": "b8d87fd8", "metadata": {}, "outputs": [], @@ -2308,7 +2869,7 @@ }, { "cell_type": "code", - "execution_count": 96, + "execution_count": null, "id": "3016e99a", "metadata": {}, "outputs": [], @@ -2318,7 +2879,7 @@ }, { "cell_type": "code", - "execution_count": 97, + "execution_count": null, "id": "852e3b11", "metadata": {}, "outputs": [], @@ -2349,7 +2910,7 @@ }, { "cell_type": "code", - "execution_count": 98, + "execution_count": null, "id": "1f95601d", "metadata": { "tags": [] @@ -2364,7 +2925,7 @@ }, { "cell_type": "code", - "execution_count": 99, + "execution_count": null, "id": "420ca0fd", "metadata": { "tags": [] @@ -2386,7 +2947,7 @@ }, { "cell_type": "code", - "execution_count": 100, + "execution_count": null, "id": "1e4957cb", "metadata": { "tags": [] @@ -2401,7 +2962,7 @@ }, { "cell_type": "code", - "execution_count": 101, + "execution_count": null, "id": "4dc8b899", "metadata": { "tags": [] @@ -2413,7 +2974,7 @@ }, { "cell_type": "code", - "execution_count": 102, + "execution_count": null, "id": "86229763", "metadata": { "tags": [] @@ -2425,7 +2986,7 @@ }, { "cell_type": "code", - "execution_count": 103, + "execution_count": null, "id": "7f1b3664", "metadata": { "tags": [] @@ -2448,7 +3009,7 @@ }, { "cell_type": "code", - "execution_count": 104, + "execution_count": null, "id": "85b47651", "metadata": {}, "outputs": [], @@ -2499,7 +3060,7 @@ }, { "cell_type": "code", - "execution_count": 105, + "execution_count": null, "id": "13f1e1f3", "metadata": {}, "outputs": [], @@ -2518,7 +3079,7 @@ }, { "cell_type": "code", - "execution_count": 106, + "execution_count": null, "id": "e882e2d6", "metadata": {}, "outputs": [], @@ -2538,7 +3099,7 @@ }, { "cell_type": "code", - "execution_count": 107, + "execution_count": null, "id": "724805bb", "metadata": {}, "outputs": [], @@ -2556,7 +3117,7 @@ }, { "cell_type": "code", - "execution_count": 108, + "execution_count": null, "id": "3f6cff16", "metadata": {}, "outputs": [], @@ -2603,7 +3164,7 @@ "metadata": { "celltoolbar": "Tags", "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "thinkpy", "language": "python", "name": "python3" }, @@ -2617,7 +3178,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.13.5" } }, "nbformat": 4, From 4d14fc96a2ae52e063d59819a12459aaeaceee8b Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Thu, 9 Apr 2026 15:54:42 +0100 Subject: [PATCH 50/56] Solution good and bad hands --- chapters/chap17.ipynb | 223 +++++++++++++++++++++++++++++++++++------- 1 file changed, 189 insertions(+), 34 deletions(-) diff --git a/chapters/chap17.ipynb b/chapters/chap17.ipynb index 9b12f961..a01d8ece 100644 --- a/chapters/chap17.ipynb +++ b/chapters/chap17.ipynb @@ -2260,7 +2260,9 @@ "### Exercise\n", "\n", "The next few exercises ask to you write functions that classify poker hands.\n", + "\n", "If you are not familiar with poker, I'll explain what you need to know.\n", + "\n", "We'll use the following class to represent poker hands." ] }, @@ -2275,17 +2277,29 @@ " \"\"\"Represents a poker hand.\"\"\"\n", "\n", " def get_suit_counts(self):\n", - " counter = {}\n", - " for card in self.cards:\n", - " key = card.suit\n", - " counter[key] = counter.get(key, 0) + 1\n", - " return counter\n", + "\n", + " counter = {} # Dict\n", + "\n", + " for card in self.cards: # iterate through own class and Cards\n", + "\n", + " key = card.suit # Access the suit\n", + "\n", + " counter[key] = counter.get(key, 0) + 1 # add to Dict key\n", + "\n", + " return counter # returns the total count\n", " \n", + " ##################################################\n", + "\n", " def get_rank_counts(self):\n", + "\n", " counter = {}\n", + "\n", " for card in self.cards:\n", + "\n", " key = card.rank\n", + "\n", " counter[key] = counter.get(key, 0) + 1\n", + "\n", " return counter " ] }, @@ -2301,11 +2315,14 @@ "* `get_rank_counts` does the same thing with the ranks of the cards, returning a dictionary that maps from each rank code to the number of times it appears.\n", "\n", "All of the exercises that follow can be done using only the Python features we have learned so far, but some of them are more difficult than most of the previous exercises.\n", - "I encourage you to ask a virtual assistant for help.\n", "\n", - "For problems like this, it often works well to ask for general advice about strategies and algorithms.\n", - "Then you can either write the code yourself or ask for code.\n", - "If you ask for code, you might want to provide the relevant class definitions as part of the prompt." + "> I encourage you to ask a virtual assistant for help.\n", + "\n", + "> For problems like this, it often works well to ask for general advice about strategies and algorithms.\n", + "\n", + ">> Then you can either write the code yourself or ask for code.\n", + "\n", + ">> If you ask for code, you might want to provide the relevant class definitions as part of the prompt." ] }, { @@ -2315,8 +2332,9 @@ "source": [ "As a first exercise, we'll write a method called `has_flush` that checks whether a hand has a \"flush\" -- that is, whether it contains at least five cards of the same suit.\n", "\n", - "In most varieties of poker, a hand contains either five or seven cards, but there are some exotic variations where a hand contains other numbers of cards.\n", - "But regardless of how many cards there are in a hand, the only ones that count are the five that make the best hand." + "> In most varieties of poker, a hand contains either five or seven cards, but there are some exotic variations where a hand contains other numbers of cards.\n", + "\n", + ">> But regardless of how many cards there are in a hand, the only ones that count are the five that make the best hand." ] }, { @@ -2331,7 +2349,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 74, "id": "7aa25f29", "metadata": { "tags": [] @@ -2340,21 +2358,32 @@ "source": [ "%%add_method_to PokerHand\n", "\n", - " def has_flush(self):\n", + " def has_a_flush(self):\n", " \"\"\"Checks whether this hand has a flush.\"\"\"\n", " return False" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 76, "id": "72c769d5", "metadata": { "tags": [] }, "outputs": [], "source": [ - "# Solution goes here" + "%%add_method_to PokerHand\n", + "\n", + " def has_flush(self):\n", + " \"\"\"Checks whether this hand has a flush.\"\"\"\n", + "\n", + " suit_counts = self.get_suit_counts()\n", + "\n", + " for count in suit_counts.values():\n", + " if count >= 5:\n", + " return True\n", + "\n", + " return False" ] }, { @@ -2369,18 +2398,33 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 77, "id": "e1c4f474", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10 of Clubs\n", + "Jack of Clubs\n", + "Queen of Clubs\n", + "King of Clubs\n", + "Ace of Clubs\n" + ] + } + ], "source": [ "good_hand = PokerHand('good_hand')\n", "\n", "suit = 0\n", + "\n", "for rank in range(10, 15):\n", + "\n", " card = Card(suit, rank)\n", + "\n", " good_hand.put_card(card)\n", " \n", "print(good_hand)" @@ -2398,12 +2442,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 78, "id": "c91e3bdb", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{0: 5}" + ] + }, + "execution_count": 78, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "good_hand.get_suit_counts()" ] @@ -2420,12 +2475,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 79, "id": "a60e233d", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 79, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "good_hand.has_flush()" ] @@ -2442,12 +2508,24 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 80, "id": "ae5063e2", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2 of Clubs\n", + "3 of Clubs\n", + "4 of Hearts\n", + "5 of Spades\n", + "7 of Clubs\n" + ] + } + ], "source": [ "cards = [Card(0, 2),\n", " Card(0, 3),\n", @@ -2457,7 +2535,9 @@ " ]\n", "\n", "bad_hand = PokerHand('bad hand')\n", + "\n", "for card in cards:\n", + " \n", " bad_hand.put_card(card)\n", " \n", "print(bad_hand)" @@ -2475,12 +2555,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 81, "id": "940928ba", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 81, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "bad_hand.has_flush()" ] @@ -2493,9 +2584,11 @@ "### Exercise\n", "\n", "Write a method called `has_straight` that checks whether a hand contains a straight, which is a set of five cards with consecutive ranks.\n", + "\n", "For example, if a hand contains ranks `5`, `6`, `7`, `8`, and `9`, it contains a straight.\n", "\n", "An Ace can come before a two or after a King, so `Ace`, `2`, `3`, `4`, `5` is a straight and so is `10`, `Jack`, `Queen`, `King`, `Ace`.\n", + "\n", "But a straight cannot \"wrap around\", so `King`, `Ace`, `2`, `3`, `4` is not a straight." ] }, @@ -2507,6 +2600,7 @@ }, "source": [ "You can use the following outline to get started.\n", + "\n", "It includes a few lines of code that count the number of Aces -- represented with the code `1` or `14` -- and store the total in both locations of the counter." ] }, @@ -2521,7 +2615,7 @@ "source": [ "%%add_method_to PokerHand\n", "\n", - " def has_straight(self, n=5):\n", + " def has_a_straight(self, n=5):\n", " \"\"\"Checks whether this hand has a straight with at least `n` cards.\"\"\"\n", " counter = self.get_rank_counts()\n", " aces = counter.get(1, 0) + counter.get(14, 0)\n", @@ -2533,14 +2627,41 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 82, "id": "8a220d67", "metadata": { "tags": [] }, "outputs": [], "source": [ - "# Solution goes here" + "%%add_method_to PokerHand\n", + "\n", + " def has_straight(self, n=5):\n", + " \"\"\"Checks whether this hand has a straight with at least `n` cards.\"\"\"\n", + "\n", + " counter = self.get_rank_counts()\n", + "\n", + " aces = counter.get(1, 0) + counter.get(14, 0)\n", + "\n", + " counter[1] = aces\n", + " \n", + " counter[14] = aces\n", + "\n", + " for rank in range(1, 15 - n + 1):\n", + "\n", + " has_all = True\n", + "\n", + " for i in range(n):\n", + "\n", + " if counter.get(rank + i, 0) == 0:\n", + "\n", + " has_all = False\n", + " break\n", + " \n", + " if has_all:\n", + " return True\n", + " \n", + " return False" ] }, { @@ -2551,17 +2672,29 @@ }, "source": [ "`good_hand`, which we created for the previous exercise, contains a straight.\n", + "\n", "If we use `get_rank_counts`, we can confirm that it has at least one card with each of five consecutive ranks." ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 83, "id": "5a422cae", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{10: 1, 11: 1, 12: 1, 13: 1, 14: 1}" + ] + }, + "execution_count": 83, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "good_hand.get_rank_counts()" ] @@ -2578,12 +2711,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 84, "id": "24483b99", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 84, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "good_hand.has_straight()" ] @@ -2600,12 +2744,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 85, "id": "69f7cea9", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 85, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "bad_hand.has_straight()" ] From 0646b923628b9b2fba5ec551c5ba8acb19c1d39a Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Fri, 10 Apr 2026 12:26:14 +0100 Subject: [PATCH 51/56] solututions for full house, flush, straight and SF. --- .DS_Store | Bin 6148 -> 8196 bytes chapters/chap17.ipynb | 394 ++++++++++++++++++++++++++++++++++-------- 2 files changed, 325 insertions(+), 69 deletions(-) diff --git a/.DS_Store b/.DS_Store index db3ba2d3b83cd2bde5a7a11ba639a7f8ffd637bb..e325d7064d9fdcf328d6db536e54f6e0eb76b198 100644 GIT binary patch literal 8196 zcmeHMTWl0n7(U;$&>70eK&cdvVQf`Einhh7l-u@#Lb;T%+jd)!I=eH_3DcRnGrL=? zO-c-yKs3f%e9(9y@yXyV8WV!XL=C}PVu%qj#>59>hz}a^g%|&sGfSYCH`8F8lg#<& zznwGxKmT{moL$Bk+VVytV>OI1k*V_v4{4NtO; z1#t%A48$3TGZ1GW&cKb30ot>JCQh^Ob8Xzm8Hh9Rzsx|eK4^3WG!fBpPQ#^xy6^}< zw4B6YqkB3Bgg#nC6A>NfG<2mg`RM_XE21L?xI5{!z?^6zqT`%$cLwgx5Y3F}go1E( z^3y_dh6JZ^A7>!Wz~l@BXLpfh*&x%|@U`dnjO}Jf_hDw(wmiR~;X4Rr<+Em2R7e$- z6%Qo`-D1+${k+$v=k^9%%608b>0ZzDSY~lRS=jD6zHT{YE_ARAlT7yYT8`ls+uXck zc%g5SD?q0uV;E+A!xW{=Yh?WB; zPYCVARB;_JyljS^GjN&|wCxqzdC+Br7F zlzAS-zKz)3IkP}9_hwx?Kje4=%KWTuXY;o1o2|AT7?W&4VA3`0Tdw2vm^qJVFhn-z z+V*bOvjRn5+BZl1(&*Qz(*2&B^V`E21{5XlnR`r{z$%y>G>zA;4p?SR znvZ%Z<>*7^`KrZBmfo^VRVP}PMoH&0)+2e#KdjV=BA=sHy-iZy7xx+TXggga7|{qd zYOT6b6!!-5_MAyQ7t5>FHIkx>DUWi+hiH(SB*l|bhp1q#Y?Kxl-eUI-;$4FIR%RVLNAo# zL|izbLQ$76wNO@wo#5iQt&jo5?-u@#-zjx=;+kcEp89L6Xf!x0?E2|S6X@GM@! z%XkH^;tjloxA89C!)bhq&+s|E!S}d;i}(?j@E0!QZvny_p;DMDsKN@NQD_p@3LAut z!e${MB!!e<3XV_|#)YFi5}^do{iVnv`7xqXA#j)@P&hLU0=2E%I=AnTJO4`vyf81o z+`{Uc7uDQ)$LfaWb(`9*RwggxQte)gi4X?YfhUAPSQ!&bn1fT+x(O%d$aEN0Dgr!< z=L757I$2X@5t2B&VkNP&2}PW(U!!S?K;Y$UW0NK;Wduzr^u2ctv51(K^|Gv#6G*vk zvq~(BnD!1DCV-sy?-&11>{s?Xy9`kASD^;WP>*J;M=KS365UkredwoxH*pYyu#kg~ z0*X}rNANg~;uxO5(|88Y;d#73#s3;!$4R`2Qv`r_2m+^Z1|Q*LoW(hOiLdZALE&fo zhCgv7`toE~i+k6E;+}GQDI{}_?K%g^wgign-DaLE<5SiI=l?C!|NcMo4;IfDXCThN zjAa1j9m$S1nr^y Date: Fri, 10 Apr 2026 12:41:09 +0100 Subject: [PATCH 52/56] Default arguments solution --- chapters/chap17.ipynb | 164 +++++++++++++++++++++++++++++++++++++----- 1 file changed, 148 insertions(+), 16 deletions(-) diff --git a/chapters/chap17.ipynb b/chapters/chap17.ipynb index 5218a4d3..53504347 100644 --- a/chapters/chap17.ipynb +++ b/chapters/chap17.ipynb @@ -3415,12 +3415,13 @@ "### Exercise\n", "\n", "This exercise is a cautionary tale about a common error that can be difficult to debug.\n", + "\n", "Consider the following class definition." ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 107, "id": "85b47651", "metadata": {}, "outputs": [], @@ -3434,17 +3435,21 @@ " name: string\n", " contents: initial pouch contents.\n", " \"\"\"\n", - " self.name = name\n", - " self.contents = contents\n", + " self.name = name # initialise name\n", + " self.contents = contents # initalise contents list\n", "\n", " def __str__(self):\n", " \"\"\"Return a string representaion of this Kangaroo.\n", " \"\"\"\n", - " t = [ self.name + ' has pouch contents:' ]\n", - " for obj in self.contents:\n", - " s = ' ' + object.__str__(obj)\n", - " t.append(s)\n", - " return '\\n'.join(t)\n", + " t = [ self.name + ' has pouch contents:' ] # outputs name\n", + "\n", + " for obj in self.contents: # checks items in the list\n", + "\n", + " s = ' ' + object.__str__(obj) # calls method of each object in list\n", + "\n", + " t.append(s) # appends to new list\n", + "\n", + " return '\\n'.join(t) # inserts new line\n", "\n", " def put_in_pouch(self, item):\n", " \"\"\"Adds a new item to the pouch contents.\n", @@ -3466,17 +3471,19 @@ "`put_in_pouch` takes any object and appends it to `contents`.\n", "\n", "Now let's see how this class works.\n", + "\n", "We'll create two `Kangaroo` objects with the names `'Kanga'` and `'Roo'`." ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 108, "id": "13f1e1f3", "metadata": {}, "outputs": [], "source": [ "kanga = Kangaroo('Kanga')\n", + "\n", "roo = Kangaroo('Roo')" ] }, @@ -3490,13 +3497,15 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 109, "id": "e882e2d6", "metadata": {}, "outputs": [], "source": [ "kanga.put_in_pouch('wallet')\n", + "\n", "kanga.put_in_pouch('car keys')\n", + "\n", "kanga.put_in_pouch(roo)" ] }, @@ -3510,10 +3519,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 110, "id": "724805bb", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Kanga has pouch contents:\n", + " 'wallet'\n", + " 'car keys'\n", + " <__main__.Kangaroo object at 0x1178f2ad0>\n" + ] + } + ], "source": [ "print(kanga)" ] @@ -3528,10 +3548,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 111, "id": "3f6cff16", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Roo has pouch contents:\n", + " 'wallet'\n", + " 'car keys'\n", + " <__main__.Kangaroo object at 0x1178f2ad0>\n" + ] + } + ], "source": [ "print(roo)" ] @@ -3547,13 +3578,114 @@ "Then ask a virtual assistant, \"What's wrong with the following program?\" and paste in the definition of `Kangaroo`." ] }, + { + "cell_type": "markdown", + "id": "8060df1b", + "metadata": {}, + "source": [ + "### The Issue\n", + "\n", + "The issue is that the class definition has the `contents=[]` as default.\n", + "\n", + "> `contents=[]` is a *mutable* default argument.\n", + "\n", + "This definition means that when both `kanga` and `roo` are declared, they share the same object state.\n", + "\n", + "When `kanga` is assigned the values via its method, it also updates the state of the object that `roo` is also associated with.\n", + "\n", + "If `None` is used as the default parameter, this ensures that both objects, when instantiated, do not share default states.\n", + "\n", + ">> In Python, default arguments are evaluated **once** when the function is defined.\n", + "\n", + ">> Default arguments are **NOT** evaluated each time the default arguments are called!" + ] + }, { "cell_type": "code", - "execution_count": null, + "execution_count": 112, "id": "6ef15c8c", "metadata": {}, "outputs": [], - "source": [] + "source": [ + "class Kangaroo:\n", + " \"\"\"A Kangaroo is a marsupial.\"\"\"\n", + "\n", + " def __init__(self, name, contents=None):\n", + " self.name = name\n", + " self.contents = [] if contents is None else list(contents)\n", + "\n", + " def __str__(self):\n", + " t = [self.name + ' has pouch contents:']\n", + " for obj in self.contents:\n", + " t.append(' ' + object.__str__(obj))\n", + " return '\\n'.join(t)\n", + "\n", + " def put_in_pouch(self, item):\n", + " self.contents.append(item)" + ] + }, + { + "cell_type": "code", + "execution_count": 113, + "id": "374d563d", + "metadata": {}, + "outputs": [], + "source": [ + "kanga2 = Kangaroo('Kanga')\n", + "\n", + "roo2 = Kangaroo('Roo')" + ] + }, + { + "cell_type": "code", + "execution_count": 114, + "id": "e5ea1772", + "metadata": {}, + "outputs": [], + "source": [ + "kanga2.put_in_pouch('banana')\n", + "kanga2.put_in_pouch('phone')\n", + "kanga2.put_in_pouch(roo2)" + ] + }, + { + "cell_type": "code", + "execution_count": 115, + "id": "1b0900b8", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Kanga has pouch contents:\n", + " 'banana'\n", + " 'phone'\n", + " <__main__.Kangaroo object at 0x1178f3250>\n" + ] + } + ], + "source": [ + "print(kanga2)" + ] + }, + { + "cell_type": "code", + "execution_count": 116, + "id": "92097e76", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Roo has pouch contents:\n" + ] + } + ], + "source": [ + "print(roo2)" + ] }, { "cell_type": "markdown", From ee761cb0ab704ca9214a64c7239175154bd85f14 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Fri, 24 Apr 2026 18:42:09 +0100 Subject: [PATCH 53/56] 3 of 6 exercise solutions --- chapters/chap18.ipynb | 1409 +++++++++++++++++++++++++++++++++-------- 1 file changed, 1151 insertions(+), 258 deletions(-) diff --git a/chapters/chap18.ipynb b/chapters/chap18.ipynb index 41d5fc1a..8c53b32a 100644 --- a/chapters/chap18.ipynb +++ b/chapters/chap18.ipynb @@ -56,18 +56,22 @@ "outputs": [], "source": [ "class Card:\n", + " # two lists of strings\n", " suit_names = ['Clubs', 'Diamonds', 'Hearts', 'Spades']\n", " rank_names = [None, 'Ace', '2', '3', '4', '5', '6', '7', \n", " '8', '9', '10', 'Jack', 'Queen', 'King', 'Ace']\n", " \n", + " # class instance initialiser function\n", " def __init__(self, suit, rank):\n", - " self.suit = suit\n", - " self.rank = rank\n", + " self.suit = suit # self object takes arg value `suit`\n", + " self.rank = rank # same ^^\n", "\n", + " # method called when print(class) used on the class\n", " def __str__(self):\n", - " rank_name = Card.rank_names[self.rank]\n", + " rank_name = Card.rank_names[self.rank] # look in Card class > rank_names (list) and get a self object.rank from the list\n", " suit_name = Card.suit_names[self.suit]\n", - " return f'{rank_name} of {suit_name}' " + "\n", + " return f'{rank_name} of {suit_name}' # returns a print of the above" ] }, { @@ -83,30 +87,45 @@ "\n", "class Deck:\n", " def __init__(self, cards):\n", - " self.cards = cards\n", + " self.cards = cards # initialise\n", " \n", + " # describes the class in string\n", " def __str__(self):\n", - " res = []\n", - " for card in self.cards:\n", - " res.append(str(card))\n", - " return '\\n'.join(res)\n", + "\n", + " res = [] # empty list\n", + "\n", + " for card in self.cards: # for each card item in the object instance.cards\n", + "\n", + " res.append(str(card)) # append the item as a string to the empty list\n", + "\n", + " return '\\n'.join(res) # concatenate the list with new lines\n", " \n", + " # makes a list of objects of class Card\n", " def make_cards():\n", - " cards = []\n", - " for suit in range(4):\n", - " for rank in range(2, 15):\n", - " card = Card(suit, rank)\n", - " cards.append(card)\n", - " return cards\n", + "\n", + " cards = [] # empty list\n", + "\n", + " for suit in range(4): # for each item in the total range of 4\n", + "\n", + " for rank in range(2, 15): # for each item in the total range of 15 starting at 2\n", + "\n", + " card = Card(suit, rank) # card variable is of class Card with the suit and rank initialisations\n", + "\n", + " cards.append(card) # append the objects to the empty list\n", + "\n", + " return cards # return the list of objects\n", " \n", " def shuffle(self):\n", - " random.shuffle(self.cards)\n", + "\n", + " random.shuffle(self.cards) # random number function of shuffling the object in the list\n", " \n", " def pop_card(self):\n", - " return self.cards.pop()\n", + "\n", + " return self.cards.pop() # removes last item in the list\n", " \n", " def add_card(self, card):\n", - " self.cards.append(card)" + "\n", + " self.cards.append(card) # adds a card object to the list" ] }, { @@ -118,10 +137,14 @@ }, "outputs": [], "source": [ + "# new class\n", "class Hand(Deck):\n", - " def __init__(self, label=''):\n", + "\n", + " def __init__(self, label=''): # initialise with empty label\n", + "\n", " self.label = label\n", - " self.cards = []" + "\n", + " self.cards = [] # empty list" ] }, { @@ -131,11 +154,14 @@ "source": [ "# Python Extras\n", "\n", - "One of my goals for this book has been to teach you as little Python as possible. \n", + "One of my goals for this book has been to teach you as little Python as possible.\n", + "\n", "When there were two ways to do something, I picked one and avoided mentioning the other.\n", + "\n", "Or sometimes I put the second one into an exercise.\n", "\n", "Now I want to go back for some of the good bits that got left behind.\n", + "\n", "Python provides a number of features that are not really necessary -- you can write good code without them -- but with them you can write code that's more concise, readable, or efficient, and sometimes all three." ] }, @@ -147,6 +173,7 @@ "## Sets\n", "\n", "Python provides a class called `set` that represents a collection of unique elements.\n", + "\n", "To create an empty set, we can use the class object like a function." ] }, @@ -155,9 +182,20 @@ "execution_count": 5, "id": "77f98242", "metadata": {}, - "outputs": [], - "source": [ - "s1 = set()\n", + "outputs": [ + { + "data": { + "text/plain": [ + "set()" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s1 = set() # new set\n", "s1" ] }, @@ -174,10 +212,23 @@ "execution_count": 6, "id": "85157902", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'a', 'b'}" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "s1.add('a')\n", - "s1.add('b')\n", + "s1.add('a') # add item to set\n", + "\n", + "s1.add('b') # adds on the end\n", + "\n", "s1" ] }, @@ -194,10 +245,22 @@ "execution_count": 7, "id": "b470e34a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'a', 'c', 'd'}" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "s2 = set('acd')\n", - "s2" + "s2 = set('acd') # new set with sequence\n", + "\n", + "s2 # its automatically sliced" ] }, { @@ -214,9 +277,21 @@ "execution_count": 8, "id": "e6a2d78b", "metadata": {}, - "outputs": [], - "source": [ - "s1.add('a')\n", + "outputs": [ + { + "data": { + "text/plain": [ + "{'a', 'b', 'z'}" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s1.add('z') # only one of each item allowed\n", + "\n", "s1" ] }, @@ -233,9 +308,20 @@ "execution_count": 9, "id": "a4f5ff4f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'a', 'b', 'n'}" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "set('banana')" + "set('banana') # will be sliced and duplicates removed" ] }, { @@ -244,6 +330,7 @@ "metadata": {}, "source": [ "Some of the exercises in this book can be done concisely and efficiently with sets. \n", + "\n", "For example, here is a solution to an exercise in Chapter 11 that uses a dictionary to check whether there are any duplicate elements in a sequence." ] }, @@ -255,10 +342,14 @@ "outputs": [], "source": [ "def has_duplicates(t):\n", - " d = {}\n", - " for x in t:\n", - " d[x] = True\n", - " return len(d) < len(t)" + "\n", + " d = {} # empty dict\n", + "\n", + " for x in t: # for item in input `t`\n", + "\n", + " d[x] = True # dict[item] = True which adds a key to the dict\n", + " \n", + " return len(d) < len(t) #if length D lower than length T" ] }, { @@ -267,6 +358,7 @@ "metadata": {}, "source": [ "This version adds the element of `t` as keys in a dictionary, and then checks whether there are fewer keys than elements.\n", + "\n", "Using sets, we can write the same function like this." ] }, @@ -278,7 +370,9 @@ "outputs": [], "source": [ "def has_duplicates(t):\n", - " s = set(t)\n", + "\n", + " s = set(t) # no duplicates allowed\n", + " \n", " return len(s) < len(t)" ] }, @@ -289,7 +383,18 @@ "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "has_duplicates('abba')" ] @@ -300,9 +405,11 @@ "metadata": {}, "source": [ "An element can only appear in a set once, so if an element in `t` appears more than once, the set will be smaller than `t`.\n", + "\n", "If there are no duplicates, the set will be the same size as `t`.\n", "\n", "`set` objects provide methods that perform set operations.\n", + "\n", "For example, `union` computes the union of two sets, which is a new set that contains all elements that appear in either set." ] }, @@ -311,9 +418,20 @@ "execution_count": 13, "id": "0a8234b1", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'a', 'b', 'c', 'd', 'z'}" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "s1.union(s2)" + "s1.union(s2) # brings both sets together, no duplicates" ] }, { @@ -322,6 +440,7 @@ "metadata": {}, "source": [ "Some arithmetic operators work with sets.\n", + "\n", "For example, the `-` operator performs set subtraction -- the result is a new set that contains all elements from the first set that are _not_ in the second set." ] }, @@ -330,9 +449,21 @@ "execution_count": 14, "id": "5b81bb56", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'b', 'z'}" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "s1 - s2" + "s1 - s2 # finds the different elements between sets\n", + "# order of operations work here" ] }, { @@ -341,6 +472,7 @@ "metadata": {}, "source": [ "In [Chapter 12](section_dictionary_subtraction) we used dictionaries to find the words that appear in a document but not in a word list.\n", + "\n", "We used the following function, which takes two dictionaries and returns a new dictionary that contains only the keys from the first that don't appear in the second." ] }, @@ -352,11 +484,16 @@ "outputs": [], "source": [ "def subtract(d1, d2):\n", - " res = {}\n", - " for key in d1:\n", - " if key not in d2:\n", - " res[key] = d1[key]\n", - " return res" + "\n", + " res = {} # empty dict\n", + "\n", + " for key in d1: # for each key in dict 1\n", + "\n", + " if key not in d2: # if the key is not in dict 2\n", + "\n", + " res[key] = d1[key] # add the key from dict 1 to the empty dict\n", + " \n", + " return res # return new dict" ] }, { @@ -365,6 +502,7 @@ "metadata": {}, "source": [ "With sets, we don't have to write this function ourselves.\n", + "\n", "If `word_counter` is a dictionary that contains the unique words in the document and `word_list` is a list of valid words, we can compute the set difference like this." ] }, @@ -381,7 +519,8 @@ "# cell without loading the actual data\n", "\n", "word_counter = {'word': 1}\n", - "word_list = ['word']" + "\n", + "word_list = ['word', 'worddle']" ] }, { @@ -393,7 +532,29 @@ }, "outputs": [], "source": [ - "set(word_counter) - set(word_list)" + "set_3 = set(word_counter) - set(word_list) # new set with the differing words" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "80283e91", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "set()" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "set_3 # no differing words, so nothing appears as the remaining words are the same\n", + "# word - word, worddle = new set only having the same word" ] }, { @@ -404,17 +565,30 @@ "The result is a set that contains the words in the document that don't appear in the word list.\n", "\n", "The relational operators work with sets.\n", + "\n", "For example, `<=` checks whether one set is a subset of another, including the possibility that they are equal." ] }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 19, "id": "15919aca", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "set('ab') <= set('abc')" + "set('ab') <= set('abc') # subset or equal\n", + "# `ab` is the subset, as `abc` contains both" ] }, { @@ -423,20 +597,26 @@ "metadata": {}, "source": [ "With these operators, we can use sets to do some of the exercises in Chapter 7.\n", + "\n", "For example, here's a version of `uses_only` that uses a loop." ] }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 20, "id": "21940f25", "metadata": {}, "outputs": [], "source": [ "def uses_only(word, available):\n", - " for letter in word: \n", - " if letter not in available:\n", + "\n", + " # for item (character) in the input word\n", + " for letter in word:\n", + "\n", + " if letter not in available: # if item not in the input available\n", + "\n", " return False\n", + " \n", " return True" ] }, @@ -446,18 +626,20 @@ "metadata": {}, "source": [ "`uses_only` checks whether all letters in `word` are in `available`.\n", + "\n", "With sets, we can rewrite it like this." ] }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 21, "id": "5769968e", "metadata": {}, "outputs": [], "source": [ "def uses_only(word, available):\n", - " return set(word) <= set(available)" + "\n", + " return set(word) <= set(available) # are any of the items in word in available using sets" ] }, { @@ -476,37 +658,86 @@ "## Counters\n", "\n", "A `Counter` is like a set, except that if an element appears more than once, the `Counter` keeps track of how many times it appears.\n", + "> aka it counts each element in a set if it appears more than once\n", + "\n", "If you are familiar with the mathematical idea of a \"multiset\", a `Counter` is a\n", "natural way to represent a multiset.\n", "\n", + "\n", "The `Counter` class is defined in a module called `collections`, so you have to import it.\n", + "\n", "Then you can use the class object as a function and pass as an argument a string, list, or any other kind of sequence." ] }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 22, "id": "1baff39a", "metadata": {}, - "outputs": [], - "source": [ - "from collections import Counter\n", + "outputs": [ + { + "data": { + "text/plain": [ + "Counter({'e': 11,\n", + " ' ': 11,\n", + " 't': 7,\n", + " 'h': 7,\n", + " 'a': 7,\n", + " 's': 4,\n", + " 'r': 3,\n", + " 'o': 3,\n", + " 'n': 2,\n", + " 'c': 2,\n", + " 'g': 2,\n", + " 'f': 1,\n", + " 'b': 1,\n", + " 'm': 1,\n", + " 'd': 1,\n", + " 'i': 1,\n", + " 'p': 1,\n", + " 'u': 1,\n", + " 'l': 1})" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from collections import Counter # get the Counter class\n", + "\n", + "# will slice and store each character in a set and count how many of each\n", + "counter = Counter('the heroes of the bananas made their escape through the castle gate') \n", "\n", - "counter = Counter('banana')\n", "counter" ] }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 23, "id": "14d5aee5", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "Counter({1: 3, 2: 2, 3: 1})" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "from collections import Counter\n", "\n", "t = (1, 1, 1, 2, 2, 3)\n", + "\n", "counter = Counter(t)\n", + "\n", + "# it will print '1': 3, '2': 2, '3': 1\n", "counter" ] }, @@ -516,21 +747,36 @@ "metadata": {}, "source": [ "A `Counter` object is like a dictionary that maps from each key to the number of times it appears.\n", + "\n", "As in dictionaries, the keys have to be hashable.\n", "\n", + "\n", "Unlike dictionaries, `Counter` objects don't raise an exception if you access an\n", "element that doesn't appear.\n", + "\n", "Instead, they return `0`." ] }, { "cell_type": "code", - "execution_count": 23, + "execution_count": null, "id": "28eb9235", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "0" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "counter['d']" + "counter['d'] # not raising exception, just returns 0\n", + "# as 'd' is not within the counter object" ] }, { @@ -538,19 +784,22 @@ "id": "9bb2b650", "metadata": {}, "source": [ - "We can use `Counter` objects to solve one of the exercises from Chapter 10, which asks for a function that takes two words and checks whether they are anagrams -- that is, whether the letters from one can be rearranged to spell the other.\n", + "We can use `Counter` objects to solve one of the exercises from Chapter 10, which asks for a function that takes two words and checks whether they are anagrams \n", + "\n", + "-- that is, whether the letters from one can be rearranged to spell the other.\n", "\n", "Here's a solution using `Counter` objects." ] }, { "cell_type": "code", - "execution_count": 24, + "execution_count": null, "id": "67aadb0b", "metadata": {}, "outputs": [], "source": [ "def is_anagram(word1, word2):\n", + " # checks whether the words contain the same items and number of the same items\n", " return Counter(word1) == Counter(word2)" ] }, @@ -566,12 +815,24 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": null, "id": "0c771fb9", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[(1, 3), (2, 2), (3, 1)]" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "counter.most_common()" + "counter.most_common() # returns the items of the counter in list [] form!\n", + "# Also sorted by the value frequency into pairs" ] }, { @@ -580,6 +841,7 @@ "metadata": {}, "source": [ "They also provide methods and operators to perform set-like operations, including addition, subtraction, union and intersection.\n", + "\n", "For example, the `+` operator combines two `Counter` objects and creates a new `Counter` that contains the keys from both and the sums of the counts.\n", "\n", "We can test it by making a `Counter` with the letters from `'bans'` and adding it to the letters from `'banana'`." @@ -587,13 +849,24 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": null, "id": "38a511cc", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "Counter({1: 3, 2: 2, 3: 1, 'b': 1, 'a': 1, 'n': 1, 's': 1})" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "counter2 = Counter('bans')\n", - "counter + counter2" + "counter + counter2 # combines the counters keys while adding together the counts" ] }, { @@ -614,7 +887,11 @@ "The `collections` module also provides `defaultdict`, which is like a dictionary except that if you access a key that doesn't exist, it generates a new value automatically.\n", "\n", "When you create a `defaultdict`, you provide a function that's used to create new values.\n", - "A function that create objects is sometimes called a **factory**.\n", + "\n", + "A function that **create objects** is sometimes called a ***factory***.\n", + "\n", + "> if we make a new empty dict `{}` and access a key that is not already there, it generates one.\n", + "\n", "The built-in functions that create lists, sets, and other types can be used as factories.\n", "\n", "For example, here's a `defaultdict` that creates a new `list` when needed. " @@ -622,10 +899,21 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 28, "id": "5303812d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "defaultdict(list, {})" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "from collections import defaultdict\n", "\n", @@ -639,15 +927,27 @@ "metadata": {}, "source": [ "Notice that the argument is `list`, which is a class object, not `list()`, which is a function call that creates a new list.\n", + "\n", "The factory function doesn't get called unless we access a key that doesn't exist." ] }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 29, "id": "4955b14f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t = d['new key']\n", "t" @@ -664,10 +964,21 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 30, "id": "d6a771af", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['new value']" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "t.append('new value')\n", "d['new key']" @@ -678,30 +989,39 @@ "id": "3e5d0151", "metadata": {}, "source": [ - "If you are making a dictionary of lists, you can often write simpler\n", - "code using `defaultdict`. \n", + "If you are making a dictionary of lists, you can often write simpler code using `defaultdict`. \n", "\n", "In one of the exercises in [Chapter 11](chapter_tuples), I made a dictionary that maps from a sorted string of letters to the list of words that can be spelled with those letters.\n", + "\n", "For example, the string `'opst'` maps to the list `['opts', 'post', 'pots', 'spot', 'stop', 'tops']`.\n", "Here's the original code." ] }, { "cell_type": "code", - "execution_count": 30, + "execution_count": null, "id": "9c4166e4", "metadata": {}, "outputs": [], "source": [ "def all_anagrams(filename):\n", - " d = {}\n", - " for line in open(filename):\n", - " word = line.strip().lower()\n", + "\n", + " d = {} # new dict\n", + " \n", + " for line in open(filename): # for each line in an open file\n", + "\n", + " word = line.strip().lower() # strip any before/after whitespace from the item and place into lower case\n", + " \n", " t = signature(word)\n", - " if t not in d:\n", - " d[t] = [word]\n", + "\n", + " if t not in d: # check to see if t is NOT in the dict\n", + "\n", + " d[t] = [word] # if not, add to dict the new item\n", + "\n", " else:\n", - " d[t].append(word)\n", + "\n", + " d[t].append(word) # add word to end of existing list for sig\n", + "\n", " return d" ] }, @@ -715,17 +1035,23 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 33, "id": "e908188e", "metadata": {}, "outputs": [], "source": [ "def all_anagrams(filename):\n", - " d = defaultdict(list)\n", - " for line in open(filename):\n", - " word = line.strip().lower()\n", + "\n", + " d = defaultdict(list) # new dict declaration\n", + "\n", + " for line in open(filename): # for each line in open file\n", + "\n", + " word = line.strip().lower() # remove whitespace and make lower case\n", + "\n", " t = signature(word)\n", - " d[t].append(word)\n", + "\n", + " d[t].append(word) # add word to end of existing list for sig \n", + "\n", " return d" ] }, @@ -739,16 +1065,30 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 34, "id": "4e1e35f7", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['woods']" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "from collections import defaultdict\n", "\n", "d = defaultdict(list)\n", + "\n", "key = ('into', 'the')\n", + "\n", "d[key].append('woods')\n", + "\n", "d[key]" ] }, @@ -764,7 +1104,7 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 35, "id": "25ff32b9", "metadata": { "tags": [] @@ -777,7 +1117,7 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 36, "id": "11676b80", "metadata": {}, "outputs": [], @@ -790,12 +1130,23 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 37, "id": "0249c4c8", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "1.6094379124341003" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "y" ] @@ -805,8 +1156,12 @@ "id": "2c5fc3dd", "metadata": {}, "source": [ - "This statement checks whether `x` is positive. If so, it computes its logarithm. \n", + "This statement checks whether `x` is positive. \n", + "\n", + "If so, it computes its logarithm. \n", + "\n", "If not, `math.log` would raise a ValueError.\n", + "\n", "To avoid stopping the program, we generate a `NaN`, which is a special floating-point value that represents \"Not a Number\".\n", "\n", "We can write this statement more concisely using a **conditional expression**." @@ -814,7 +1169,7 @@ }, { "cell_type": "code", - "execution_count": 36, + "execution_count": 38, "id": "803a39c4", "metadata": {}, "outputs": [], @@ -824,12 +1179,23 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 39, "id": "03b1afa9", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "1.6094379124341003" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "y" ] @@ -842,19 +1208,22 @@ "You can almost read this line like English: \"`y` gets log-`x` if `x` is greater than 0; otherwise it gets `NaN`\".\n", "\n", "Recursive functions can sometimes be written concisely using conditional expressions. \n", + "\n", "For example, here is a version of `factorial` with a conditional _statement_." ] }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 40, "id": "73d3e7e9", "metadata": {}, "outputs": [], "source": [ "def factorial(n):\n", + "\n", " if n == 0:\n", " return 1\n", + " \n", " else:\n", " return n * factorial(n-1)" ] @@ -869,7 +1238,7 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 41, "id": "d14e82df", "metadata": {}, "outputs": [], @@ -884,12 +1253,13 @@ "metadata": {}, "source": [ "Another use of conditional expressions is handling optional arguments.\n", + "\n", "For example, here is class definition with an `__init__` method that uses a conditional statement to check a parameter with a default value." ] }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 42, "id": "aa8fcfe5", "metadata": {}, "outputs": [], @@ -912,14 +1282,17 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 43, "id": "fcb67453", "metadata": {}, "outputs": [], "source": [ "def __init__(self, name, contents=None):\n", + "\n", " self.name = name\n", - " self.contents = [] if contents is None else contents " + "\n", + " self.contents = [] if contents is None else contents # default None which is an empty list\n", + " # otherwise whatever is passed as an argument" ] }, { @@ -938,12 +1311,13 @@ "## List comprehensions\n", "\n", "In previous chapters, we've seen a few examples where we start with an empty list and add elements, one at a time, using the `append` method.\n", + "\n", "For example, suppose we have a string that contains the title of a movie, and we want to capitalize all of the words." ] }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 44, "id": "a1d31625", "metadata": {}, "outputs": [], @@ -961,16 +1335,29 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 45, "id": "595cdbc8", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'Monty Python And The Holy Grail'" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "t = []\n", - "for word in title.split():\n", - " t.append(word.capitalize())\n", + "t = [] # empty list\n", + "\n", + "for word in title.split(): # for each word in title which is split into individual characters\n", "\n", - "' '.join(t)" + " t.append(word.capitalize()) # append word to the list in capitals\n", + "\n", + "' '.join(t) # joins each new word in t with whitespace between" ] }, { @@ -983,14 +1370,25 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": null, "id": "ac327d75", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'Monty Python And The Holy Grail'" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "t = [word.capitalize() for word in title.split()]\n", + "t = [word.capitalize() for word in title.split()] # new list, do ACTION then LOOP\n", "\n", - "' '.join(t)" + "' '.join(t) # same separate join function, outside of loop" ] }, { @@ -999,9 +1397,11 @@ "metadata": {}, "source": [ "The bracket operators indicate that we are constructing a new list.\n", + "\n", "The expression inside the brackets specifies the elements of the list, and the `for` clause indicates what sequence we are looping through.\n", "\n", "The syntax of a list comprehension might seem strange, because the loop variable -- `word` in this example -- appears in the expression before we get to its definition.\n", + "\n", "But you get used to it.\n", "\n", "As another example, in [Chapter 9](section_word_list) we used this loop to read words from a file and append them to a list." @@ -1009,7 +1409,7 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 49, "id": "036ec803", "metadata": { "tags": [] @@ -1021,28 +1421,42 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 50, "id": "1437f1f1", "metadata": {}, "outputs": [], "source": [ - "word_list = []\n", + "word_list = [] # empty list\n", "\n", + "# each line open text document\n", "for line in open('words.txt'):\n", - " word = line.strip()\n", - " word_list.append(word)" + "\n", + " word = line.strip() # each individual word\n", + "\n", + " word_list.append(word) # append each word to end of new list" ] }, { "cell_type": "code", - "execution_count": 47, + "execution_count": null, "id": "c9c2a932", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "113783" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "len(word_list)" + "len(word_list) # how many words" ] }, { @@ -1055,22 +1469,33 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": 52, "id": "d4f854c6", "metadata": {}, "outputs": [], "source": [ - "word_list = [line.strip() for line in open('words.txt')]" + "word_list = [line.strip() for line in open('words.txt')] # new list, do ACTION then loop" ] }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 53, "id": "3d797346", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "113783" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "len(word_list)" ] @@ -1081,12 +1506,13 @@ "metadata": {}, "source": [ "A list comprehension can also have an `if` clause that determines which elements are included in the list.\n", + "\n", "For example, here's a `for` loop we used in [Chapter 10](section_palindrome_list) to make a list of only the words in `word_list` that are palindromes." ] }, { "cell_type": "code", - "execution_count": 50, + "execution_count": null, "id": "d476e43c", "metadata": { "tags": [] @@ -1094,31 +1520,47 @@ "outputs": [], "source": [ "def is_palindrome(word):\n", + "\n", + " # make new list, reverse it, takes word arg\n", " return list(reversed(word)) == list(word)" ] }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 55, "id": "6b295593", "metadata": {}, "outputs": [], "source": [ - "palindromes = []\n", + "palindromes = [] # empty list\n", "\n", + "# each word in the list of words\n", "for word in word_list:\n", + " # function call condition\n", " if is_palindrome(word):\n", + " # append new list of words to the new list\n", " palindromes.append(word)" ] }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 56, "id": "f7b1cd91", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['aa', 'aba', 'aga', 'aha', 'ala', 'alula', 'ama', 'ana', 'anna', 'ava']" + ] + }, + "execution_count": 56, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "palindromes[:10]" ] @@ -1133,22 +1575,34 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": 57, "id": "c356d9fb", "metadata": {}, "outputs": [], "source": [ + "# new list, for loop, with conditional\n", "palindromes = [word for word in word_list if is_palindrome(word)]" ] }, { "cell_type": "code", - "execution_count": 54, + "execution_count": 58, "id": "52e32b33", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['aa', 'aba', 'aga', 'aha', 'ala', 'alula', 'ama', 'ana', 'anna', 'ava']" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "palindromes[:10]" ] @@ -1159,17 +1613,31 @@ "metadata": {}, "source": [ "When a list comprehension is used as an argument to a function, we can often omit the brackets.\n", + "\n", "For example, suppose we want to add up $1 / 2^n$ for values of $n$ from 0 to 9.\n", + "\n", "We can use a list comprehension like this." ] }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 61, "id": "dcf239d7", "metadata": {}, - "outputs": [], - "source": [ + "outputs": [ + { + "data": { + "text/plain": [ + "1.998046875" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# sum up, the equation, defining what n is\n", "sum([1/2**n for n in range(10)])" ] }, @@ -1183,12 +1651,23 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 62, "id": "b9bdec8d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "1.998046875" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "sum(1/2**n for n in range(10))" + "sum(1/2**n for n in range(10)) # no square brackets" ] }, { @@ -1197,15 +1676,20 @@ "metadata": {}, "source": [ "In this example, the argument is technically a **generator expression**, not a list comprehension, and it never actually makes a list.\n", + "\n", "But other than that, the behavior is the same.\n", "\n", "List comprehensions and generator expressions are concise and easy to read, at least for simple expressions.\n", + "\n", "And they are usually faster than the equivalent for loops, sometimes much faster.\n", + "\n", "So if you are mad at me for not mentioning them earlier, I understand.\n", "\n", "But, in my defense, list comprehensions are harder to debug because you can't put a print statement inside the loop.\n", + "\n", "I suggest you use them only if the computation is simple enough that you are likely to get it\n", "right the first time.\n", + "\n", "Or consider writing and debugging a `for` loop and then converting it to a list comprehension." ] }, @@ -1221,12 +1705,23 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": null, "id": "81a15164", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "any([False, False, True])" + "any([False, False, True]) # if any args True, returns True" ] }, { @@ -1239,12 +1734,23 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 66, "id": "7756c9ea", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 66, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "any(letter == 't' for letter in 'monty')" + "any(letter == 't' for letter in 'monty') # returns True as checks each character in string for `t`" ] }, { @@ -1253,41 +1759,68 @@ "metadata": {}, "source": [ "That example isn't very useful because it does the same thing as the `in` operator. \n", - "But we could use `any` to write concise solutions to some of the exercises in [Chapter 7](chapter_search). For example, we can write `uses_none` like this." + "\n", + "But we could use `any` to write concise solutions to some of the exercises in [Chapter 7](chapter_search). \n", + "\n", + "For example, we can write `uses_none` like this." ] }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 67, "id": "70133073", "metadata": {}, "outputs": [], "source": [ "def uses_none(word, forbidden):\n", " \"\"\"Checks whether a word avoids forbidden letters.\"\"\"\n", + " # returns True if any letter in forbid appears in any letter when looping through the word\n", + " # not, flips the boolean value\n", " return not any(letter in forbidden for letter in word)" ] }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 68, "id": "aec0523b", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 68, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "uses_none('banana', 'xyz')" ] }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 69, "id": "863252da", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 69, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "uses_none('apple', 'efg')" ] @@ -1298,46 +1831,71 @@ "metadata": {}, "source": [ "This function loops through the letters in `word` and checks whether any of them are in `forbidden`.\n", + "\n", "Using `any` with a generator expression is efficient because it stops immediately if it finds a `True` value, so it doesn't have to loop through the whole sequence.\n", "\n", "Python provides another built-in function, `all`, that returns `True` if every element of the sequence is `True`.\n", + "\n", "We can use it to write a concise version of `uses_all`." ] }, { "cell_type": "code", - "execution_count": 62, + "execution_count": 70, "id": "4b4046aa", "metadata": {}, "outputs": [], "source": [ "def uses_all(word, required):\n", " \"\"\"Check whether a word uses all required letters.\"\"\"\n", + " # each character in word, looping over each character in required\n", " return all(letter in word for letter in required)" ] }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 71, "id": "5c6addfb", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 71, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "uses_all('banana', 'ban')" + "uses_all('banana', 'ban') # returns True" ] }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 72, "id": "54df18a1", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "uses_all('apple', 'api')" + "uses_all('apple', 'api') # returns False" ] }, { @@ -1356,13 +1914,15 @@ "## Named tuples\n", "\n", "The `collections` module provides a function called `namedtuple` that can be used to create simple classes.\n", + "\n", "For example, the `Point` object in [Chapter 16](section_create_point) has only two attributes, `x` and `y`.\n", + "\n", "Here's how we defined it." ] }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 73, "id": "3550c5a4", "metadata": {}, "outputs": [], @@ -1371,10 +1931,13 @@ " \"\"\"Represents a point in 2-D space.\"\"\"\n", " \n", " def __init__(self, x, y):\n", + "\n", " self.x = x\n", + "\n", " self.y = y\n", " \n", " def __str__(self):\n", + " \n", " return f'({self.x}, {self.y})'" ] }, @@ -1384,18 +1947,20 @@ "metadata": {}, "source": [ "That's a lot of code to convey a small amount of information.\n", + "\n", "`namedtuple` provides a more concise way to define classes like this." ] }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 74, "id": "4852da0c", "metadata": {}, "outputs": [], "source": [ "from collections import namedtuple\n", "\n", + "# Name of the class followed by a list of the attributes\n", "Point = namedtuple('Point', ['x', 'y'])" ] }, @@ -1404,20 +1969,34 @@ "id": "942a0877", "metadata": {}, "source": [ - "The first argument is the name of the class you want to create. The\n", - "second is a list of the attributes `Point` objects should have.\n", - "The result is a class object, which is why it is assigned to a capitalized variable name.\n", + "The first argument is the **name of the class** you want to create. \n", + "\n", + "The second is a **list of the attributes** `Point` objects should have.\n", + "\n", + "The result is a **class object**, which is why it is assigned to a capitalized variable name.\n", "\n", "A class created with `namedtuple` provides an `__init__` method that assigns values to the attributes and a `__str__` that displays the object in a readable form.\n", + "\n", "So we can create and display a `Point` object like this." ] }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 75, "id": "8acb172d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "Point(x=1, y=2)" + ] + }, + "execution_count": 75, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "p = Point(1, 2)\n", "p" @@ -1433,10 +2012,21 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 76, "id": "494b78ac", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 76, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "p == Point(1, 2)" ] @@ -1451,20 +2041,42 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": 77, "id": "f59e85f4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "(1, 2)" + ] + }, + "execution_count": 77, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "p.x, p.y" ] }, { "cell_type": "code", - "execution_count": 70, + "execution_count": 78, "id": "742795a9", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "(1, 2)" + ] + }, + "execution_count": 78, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "p[0], p[1]" ] @@ -1479,10 +2091,21 @@ }, { "cell_type": "code", - "execution_count": 71, + "execution_count": 79, "id": "df42d98a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "(1, 2)" + ] + }, + "execution_count": 79, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "x, y = p\n", "x, y" @@ -1499,12 +2122,21 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": 80, "id": "e61693ba", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "TypeError", + "evalue": "'Point' object does not support item assignment", + "output_type": "error", + "traceback": [ + "\u001b[31mTypeError\u001b[39m\u001b[31m:\u001b[39m 'Point' object does not support item assignment\n" + ] + } + ], "source": [ "%%expect TypeError\n", "\n", @@ -1513,12 +2145,21 @@ }, { "cell_type": "code", - "execution_count": 73, + "execution_count": 81, "id": "871dafae", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "AttributeError", + "evalue": "can't set attribute", + "output_type": "error", + "traceback": [ + "\u001b[31mAttributeError\u001b[39m\u001b[31m:\u001b[39m can't set attribute\n" + ] + } + ], "source": [ "%%expect AttributeError\n", "\n", @@ -1531,19 +2172,23 @@ "metadata": {}, "source": [ "`namedtuple` provides a quick way to define simple classes.\n", + "\n", "The drawback is that simple classes don't always stay simple.\n", + "\n", "You might decide later that you want to add methods to a named tuple.\n", + "\n", "In that case, you can define a new class that inherits from the named tuple." ] }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 82, "id": "586d8c51", "metadata": {}, "outputs": [], "source": [ "class Pointier(Point):\n", + " # takes everything from the namedtuple, but copies it into a class object, so it can be modified\n", " \"\"\"This class inherits from Point\"\"\"" ] }, @@ -1567,12 +2212,12 @@ }, { "cell_type": "code", - "execution_count": 75, + "execution_count": null, "id": "6de26a32", "metadata": {}, "outputs": [], "source": [ - "def mean(*args):\n", + "def mean(*args): # can take any number of args\n", " return sum(args) / len(args)" ] }, @@ -1586,12 +2231,23 @@ }, { "cell_type": "code", - "execution_count": 76, + "execution_count": 86, "id": "ecb6a9fa", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "3.5" + ] + }, + "execution_count": 86, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "mean(1, 2, 3)" + "mean(1, 2, 3, 4, 5, 6)" ] }, { @@ -1605,12 +2261,21 @@ }, { "cell_type": "code", - "execution_count": 77, + "execution_count": 87, "id": "5871229d", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "TypeError", + "evalue": "mean() got an unexpected keyword argument 'start'", + "output_type": "error", + "traceback": [ + "\u001b[31mTypeError\u001b[39m\u001b[31m:\u001b[39m mean() got an unexpected keyword argument 'start'\n" + ] + } + ], "source": [ "%%expect TypeError\n", "\n", @@ -1627,13 +2292,15 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": 88, "id": "b274db6a", "metadata": {}, "outputs": [], "source": [ - "def mean(*args, **kwargs):\n", + "def mean(*args, **kwargs): # takes any args, plus any key-word args\n", + "\n", " print(kwargs)\n", + "\n", " return sum(args) / len(args)" ] }, @@ -1643,15 +2310,34 @@ "metadata": {}, "source": [ "The keyword-packing parameter can have any name, but `kwargs` is a common choice.\n", + "\n", "The result is a dictionary that maps from keywords to values." ] }, { "cell_type": "code", - "execution_count": 79, + "execution_count": 89, "id": "3a1b131c", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'start': 3}\n" + ] + }, + { + "data": { + "text/plain": [ + "1.5" + ] + }, + "execution_count": 89, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "mean(1, 2, start=3)" ] @@ -1664,12 +2350,13 @@ "In this example, the value of `kwargs` is printed, but otherwise is has no effect.\n", "\n", "But the `**` operator can also be used in an argument list to unpack a dictionary.\n", + "\n", "For example, here's a version of `mean` that packs any keyword arguments it gets and then unpacks them as keyword arguments for `sum`." ] }, { "cell_type": "code", - "execution_count": 80, + "execution_count": 90, "id": "a0305500", "metadata": {}, "outputs": [], @@ -1684,15 +2371,27 @@ "metadata": {}, "source": [ "Now if we call `mean` with `start` as a keyword argument, it gets passed along to sum, which uses it as the starting point of the summation.\n", + "\n", "In the following example `start=3` adds `3` to the sum before computing the mean, so the sum is `6` and the result is `3`." ] }, { "cell_type": "code", - "execution_count": 81, + "execution_count": 91, "id": "457d5610", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "3.0" + ] + }, + "execution_count": 91, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "mean(1, 2, start=3)" ] @@ -1707,13 +2406,24 @@ }, { "cell_type": "code", - "execution_count": 82, + "execution_count": 93, "id": "020c1243", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "Point(x=2, y=1)" + ] + }, + "execution_count": 93, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "d = dict(x=1, y=2)\n", - "Point(**d)" + "d = dict(x=2, y=1)\n", + "Point(**d) # ** unpacks the dict into the Point class, assigning each value" ] }, { @@ -1726,12 +2436,21 @@ }, { "cell_type": "code", - "execution_count": 83, + "execution_count": 94, "id": "ba91298b", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "TypeError", + "evalue": "Point.__new__() missing 1 required positional argument: 'y'", + "output_type": "error", + "traceback": [ + "\u001b[31mTypeError\u001b[39m\u001b[31m:\u001b[39m Point.__new__() missing 1 required positional argument: 'y'\n" + ] + } + ], "source": [ "%%expect TypeError\n", "\n", @@ -1749,10 +2468,18 @@ }, { "cell_type": "code", - "execution_count": 84, + "execution_count": 95, "id": "1b36b5ed", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'a': 1, 'b': 2}\n" + ] + } + ], "source": [ "def pack_and_print(**kwargs):\n", " print(kwargs)\n", @@ -1768,13 +2495,15 @@ "## Debugging\n", "\n", "In previous chapters, we used `doctest` to test functions.\n", + "\n", "For example, here's a function called `add` that takes two numbers and returns their sum.\n", + "\n", "In includes a doctest that checks whether `2 + 2` is `4`." ] }, { "cell_type": "code", - "execution_count": 85, + "execution_count": 96, "id": "e1366e43", "metadata": {}, "outputs": [], @@ -1798,7 +2527,7 @@ }, { "cell_type": "code", - "execution_count": 86, + "execution_count": 97, "id": "13802dc4", "metadata": {}, "outputs": [], @@ -1806,6 +2535,7 @@ "from doctest import run_docstring_examples\n", "\n", "def run_doctests(func):\n", + " # takes in the function, return dict with scope variable, plus extract function name and assign it\n", " run_docstring_examples(func, globals(), name=func.__name__)" ] }, @@ -1819,12 +2549,12 @@ }, { "cell_type": "code", - "execution_count": 87, + "execution_count": null, "id": "2136083a", "metadata": {}, "outputs": [], "source": [ - "run_doctests(add)" + "run_doctests(add) # no output means all tests passed" ] }, { @@ -1835,22 +2565,27 @@ "There's no output, which means all tests passed.\n", "\n", "Python provides another tool for running automated tests, called `unittest`.\n", + "\n", "It is a little more complicated to use, but here's an example." ] }, { "cell_type": "code", - "execution_count": 88, + "execution_count": 99, "id": "d6bc8bae", "metadata": {}, "outputs": [], "source": [ "from unittest import TestCase\n", "\n", + "# new test class inherits from TestCase\n", "class TestExample(TestCase):\n", "\n", + " # adds test method\n", " def test_add(self):\n", + " # call add function and assign to result for testing\n", " result = add(2, 2)\n", + " # checks whether the result is equal to the second input value\n", " self.assertEqual(result, 4)" ] }, @@ -1860,19 +2595,23 @@ "metadata": {}, "source": [ "First we import `TestCase`, which is a class in the `unittest` module.\n", + "\n", "To use it, we have to define a new class that inherits from `TestCase` and provides at least one test method.\n", - "The name of the test method must begin with `test` and should indicate which function it tests.\n", + "\n", + "The **name of the test method must begin with `test`** and should indicate which function it tests.\n", "\n", "In this example, `test_add` tests the `add` function by calling it, saving the result, and invoking `assertEqual`, which is inherited from `TestCase`.\n", + "\n", "`assertEqual` takes two arguments and checks whether they are equal.\n", "\n", "In order to run this test method, we have to run a function in `unittest` called `main` and provide several keyword arguments.\n", + "\n", "The following function shows the details -- if you are curious, you can ask a virtual assistant to explain how it works." ] }, { "cell_type": "code", - "execution_count": 89, + "execution_count": null, "id": "96587ab7", "metadata": {}, "outputs": [], @@ -1880,6 +2619,10 @@ "import unittest\n", "\n", "def run_unittest():\n", + " # unittest.main() runs tests in current script\n", + " # argv=[''] avoids need for command-line args\n", + " # verbose makes output minimal\n", + " # exit=bool stops unittest from closing the script/notebook/ending the process\n", " unittest.main(argv=[''], verbosity=0, exit=False)" ] }, @@ -1889,7 +2632,9 @@ "metadata": {}, "source": [ "`run_unittest` does not take `TestExample` as an argument -- instead, it searches for classes that inherit from `TestCase`.\n", + "\n", "Then it searches for methods that begin with `test` and runs them.\n", + "\n", "This process is called **test discovery**.\n", "\n", "Here's what happens when we call `run_unittest`." @@ -1897,10 +2642,21 @@ }, { "cell_type": "code", - "execution_count": 90, + "execution_count": 101, "id": "d3db5642", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "----------------------------------------------------------------------\n", + "Ran 1 test in 0.000s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "run_unittest()" ] @@ -1911,6 +2667,7 @@ "metadata": {}, "source": [ "`unittest.main` reports the number of tests it ran and the results.\n", + "\n", "In this case `OK` indicates that the tests passed.\n", "\n", "To see what happens when a test fails, we'll add an incorrect test method to `TestExample`." @@ -1918,7 +2675,7 @@ }, { "cell_type": "code", - "execution_count": 91, + "execution_count": 102, "id": "e5320931", "metadata": {}, "outputs": [], @@ -1940,10 +2697,30 @@ }, { "cell_type": "code", - "execution_count": 92, + "execution_count": 103, "id": "c8d4fa4a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "======================================================================\n", + "FAIL: test_add_broken (__main__.TestExample.test_add_broken)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/var/folders/q4/f3836f992p1br9ddm0dsnyfw0000gp/T/ipykernel_27356/3833266738.py\", line 3, in test_add_broken\n", + " self.assertEqual(result, 100)\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^\n", + "AssertionError: 4 != 100\n", + "\n", + "----------------------------------------------------------------------\n", + "Ran 2 tests in 0.003s\n", + "\n", + "FAILED (failures=1)\n" + ] + } + ], "source": [ "run_unittest()" ] @@ -1954,6 +2731,7 @@ "metadata": {}, "source": [ "The report includes the test method that failed and an error message showing where.\n", + "\n", "The summary indicates that two tests ran and one failed.\n", "\n", "In the exercises below, I'll suggest some prompts you can use to ask a virtual assistant for more information about `unittest`." @@ -1992,12 +2770,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 104, "id": "5029c76d", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Exception reporting mode: Verbose\n" + ] + } + ], "source": [ "# This cell tells Jupyter to provide detailed debugging information\n", "# when a runtime error occurs. Run it before working on the exercises.\n", @@ -2019,16 +2805,40 @@ "* \"What are the methods and operators of Python's Counter class?\"\n", "\n", "* \"What is the difference between a Python list comprehension and a generator expression?\"\n", + ">> `[expression for x in items if condition]` returns a list.\n", + ">>> This ^^^ is list comprehension.\n", + "\n", + ">> `(expression for x in items if condition)` generator object.\n", + ">>> This ^^^ is generator expression.\n", + ">>>> It is an iterator that produces values lazily as needed. If you print the generator object, you get ``. If you call `next()` on it, it returns the next value in the iteration.\n", "\n", "* \"When should I use Python's `namedtuple` rather than define a new class?\"\n", + "> Only useful when you need a small, lightweight, mostly data basic class.\n", + ">> simple class -> `namedtuple`; evolving object with behaviour -> `class` or `dataclass`.\n", "\n", "* \"What are some uses of packing and unpacking keyword arguments?\"\n", + "> some APIs need flexibility -> accept optional named settings.\n", + "> Pass-through wrappers -> forwards args to another function.\n", + "> Config dictionaries -> store options in a dict and unpack.\n", + "> Constructing objects from data -> `Point(**d)` when `d - {'x': 2, 'y':1}`.\n", + "> Override defaults -> merge and unpack dicts in one.\n", + "> Future compatability -> accept extra keywards now without breaking later.\n", + "*>>* `**kwargs` = collect named args into a dict.\n", + "*>>* `**some_dict` = unpack a dict into named args.\n", "\n", "* \"How does `unittest` do test discovery?\"\n", + "> scans the script/notebook for classes that inherit from `unittest.TestCase`.\n", + ">> runs any methods with names starting with `test`.\n", + ">>> `python -m unittest discover` searches files matching `test*.py` by default in CLI.\n", + ">>>> builds test suite from matches, then executes them.\n", "\n", "* \"Along with `assertEqual`, what are the most commonly used methods in `unittest.TestCase`?\"\n", "\n", "* \"What are the pros and cons of `doctest` and `unittest`?\"\n", + "> `doctest` = quick to write, also documentation, good for simple tests.\n", + "> `unittest` = good for med/large projects, lots of assertion methods, better org, discovery and reporting, handles exceptions/warnings/edge cleanly.\n", + ">> `doctest` for lightweight examples.\n", + ">> `unittest` for serious, maintainable suites.\n", "\n", "For the following exercises, consider asking a virtual assistant for help, but as always, remember to test the results." ] @@ -2040,12 +2850,14 @@ "source": [ "### Exercise\n", "\n", - "One of the exercises in Chapter 7 asks for a function called `uses_none` that takes a word and a string of forbidden letters, and returns `True` if the word does not use any of the letters. Here's a solution." + "One of the exercises in Chapter 7 asks for a function called `uses_none` that takes a word and a string of forbidden letters, and returns `True` if the word does not use any of the letters. \n", + "\n", + "Here's a solution." ] }, { "cell_type": "code", - "execution_count": 93, + "execution_count": 105, "id": "f75b48e0", "metadata": {}, "outputs": [], @@ -2063,6 +2875,7 @@ "metadata": {}, "source": [ "Write a version of this function that uses `set` operations instead of a `for` loop.\n", + "\n", "Hint: ask a VA, \"How do I compute the intersection of Python sets?\"" ] }, @@ -2078,7 +2891,7 @@ }, { "cell_type": "code", - "execution_count": 94, + "execution_count": 106, "id": "2024d4c6", "metadata": { "tags": [] @@ -2100,17 +2913,31 @@ }, { "cell_type": "code", - "execution_count": 95, + "execution_count": 110, "id": "46a13618", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def uses_none(word, forbidden):\n", + " \"\"\"Checks whether a word avoid forbidden letters.\n", + " \n", + " >>> uses_none('banana', 'xyz')\n", + " True\n", + " >>> uses_none('apple', 'efg')\n", + " False\n", + " >>> uses_none('', 'abc')\n", + " True\n", + " \"\"\"\n", + " if set(word) & set(forbidden):\n", + " return False\n", + " \n", + " return True" ] }, { "cell_type": "code", - "execution_count": 96, + "execution_count": 111, "id": "160a29b3", "metadata": { "tags": [] @@ -2125,7 +2952,7 @@ }, { "cell_type": "code", - "execution_count": 97, + "execution_count": 112, "id": "8db988e6", "metadata": { "tags": [] @@ -2143,6 +2970,7 @@ "### Exercise\n", "\n", "Scrabble is a board game where the objective is to use letter tiles to spell words.\n", + "\n", "For example, if we have tiles with the letters `T`, `A`, `B`, `L`, `E`, we can spell `BELT` and `LATE` using a subset of the tiles -- but we can't spell `BEET` because we don't have two `E`s.\n", "\n", "Write a function that takes a string of letters and a word, and checks whether the letters can spell the word, taking into account how many times each letter appears." @@ -2160,7 +2988,7 @@ }, { "cell_type": "code", - "execution_count": 98, + "execution_count": null, "id": "b3c2c475", "metadata": { "tags": [] @@ -2182,17 +3010,35 @@ }, { "cell_type": "code", - "execution_count": 99, + "execution_count": 113, "id": "a67768c0", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def can_spell(letters, word):\n", + " \"\"\"Check whether the letters can spell the word.\n", + " \n", + " >>> can_spell('table', 'belt')\n", + " True\n", + " >>> can_spell('table', 'late')\n", + " True\n", + " >>> can_spell('table', 'beet')\n", + " False\n", + " \"\"\"\n", + "\n", + " letter_count = Counter(letters)\n", + " word_count = Counter(word)\n", + "\n", + " if word_count <= letter_count:\n", + " return True\n", + " \n", + " return False" ] }, { "cell_type": "code", - "execution_count": 100, + "execution_count": 114, "id": "7900d2ed", "metadata": { "tags": [] @@ -2214,7 +3060,7 @@ }, { "cell_type": "code", - "execution_count": 101, + "execution_count": 116, "id": "661f1635", "metadata": {}, "outputs": [], @@ -2251,7 +3097,7 @@ }, { "cell_type": "code", - "execution_count": 102, + "execution_count": 115, "id": "b9cf2e47", "metadata": { "tags": [] @@ -2266,12 +3112,20 @@ }, { "cell_type": "code", - "execution_count": 103, + "execution_count": 117, "id": "33f15964", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "class PokerHand(Hand):\n", + " \n", + " def partition(self):\n", + " d = defaultdict(PokerHand)\n", + "\n", + " for card in self.cards:\n", + " d[card.suit].add_card(card)\n", + " return d" ] }, { @@ -2286,7 +3140,7 @@ }, { "cell_type": "code", - "execution_count": 104, + "execution_count": 118, "id": "339f912a", "metadata": { "tags": [] @@ -2310,12 +3164,26 @@ }, { "cell_type": "code", - "execution_count": 105, + "execution_count": 119, "id": "b4efde58", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5 of Hearts\n", + "8 of Clubs\n", + "3 of Hearts\n", + "5 of Spades\n", + "4 of Spades\n", + "8 of Spades\n", + "Ace of Spades\n" + ] + } + ], "source": [ "random_hand = PokerHand('random')\n", "\n", @@ -2338,12 +3206,29 @@ }, { "cell_type": "code", - "execution_count": 106, + "execution_count": 120, "id": "bfddf015", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5 of Hearts\n", + "3 of Hearts\n", + "\n", + "8 of Clubs\n", + "\n", + "5 of Spades\n", + "4 of Spades\n", + "8 of Spades\n", + "Ace of Spades\n", + "\n" + ] + } + ], "source": [ "hand_dict = random_hand.partition()\n", "\n", @@ -2352,6 +3237,14 @@ " print()" ] }, + { + "cell_type": "markdown", + "id": "029aef82", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "218798e3", @@ -2364,7 +3257,7 @@ }, { "cell_type": "code", - "execution_count": 107, + "execution_count": null, "id": "f854f6d5", "metadata": {}, "outputs": [], @@ -2389,7 +3282,7 @@ }, { "cell_type": "code", - "execution_count": 108, + "execution_count": null, "id": "4efa9382", "metadata": {}, "outputs": [], @@ -2399,7 +3292,7 @@ }, { "cell_type": "code", - "execution_count": 109, + "execution_count": null, "id": "6440d14b", "metadata": { "tags": [] @@ -2411,7 +3304,7 @@ }, { "cell_type": "code", - "execution_count": 110, + "execution_count": null, "id": "3b9d5bac", "metadata": { "tags": [] @@ -2433,7 +3326,7 @@ }, { "cell_type": "code", - "execution_count": 111, + "execution_count": null, "id": "9a9e43fa", "metadata": {}, "outputs": [], @@ -2468,7 +3361,7 @@ }, { "cell_type": "code", - "execution_count": 112, + "execution_count": null, "id": "07226bce", "metadata": {}, "outputs": [], @@ -2478,7 +3371,7 @@ }, { "cell_type": "code", - "execution_count": 113, + "execution_count": null, "id": "1e3b8009", "metadata": {}, "outputs": [], @@ -2498,7 +3391,7 @@ }, { "cell_type": "code", - "execution_count": 114, + "execution_count": null, "id": "4fd0793d", "metadata": {}, "outputs": [], @@ -2522,7 +3415,7 @@ }, { "cell_type": "code", - "execution_count": 115, + "execution_count": null, "id": "2aa7da71", "metadata": { "tags": [] @@ -2544,7 +3437,7 @@ }, { "cell_type": "code", - "execution_count": 116, + "execution_count": null, "id": "cd8bb7d2", "metadata": { "tags": [] @@ -2584,7 +3477,7 @@ "metadata": { "celltoolbar": "Tags", "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "thinkpy", "language": "python", "name": "python3" }, @@ -2598,7 +3491,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.13.5" } }, "nbformat": 4, From 5fd9ac6950cb9ac8eec79fa8d58703ced6df85bc Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Thu, 30 Apr 2026 11:54:35 +0100 Subject: [PATCH 54/56] solution for fibonacci conditional expressions in one line --- chapters/chap18.ipynb | 282 +++++++++++++++++++++++------------------- 1 file changed, 153 insertions(+), 129 deletions(-) diff --git a/chapters/chap18.ipynb b/chapters/chap18.ipynb index 8c53b32a..530bf225 100644 --- a/chapters/chap18.ipynb +++ b/chapters/chap18.ipynb @@ -759,7 +759,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 24, "id": "28eb9235", "metadata": {}, "outputs": [ @@ -793,7 +793,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 25, "id": "67aadb0b", "metadata": {}, "outputs": [], @@ -815,7 +815,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 26, "id": "0c771fb9", "metadata": {}, "outputs": [ @@ -849,7 +849,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 27, "id": "38a511cc", "metadata": {}, "outputs": [ @@ -999,7 +999,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 31, "id": "9c4166e4", "metadata": {}, "outputs": [], @@ -1035,7 +1035,7 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 32, "id": "e908188e", "metadata": {}, "outputs": [], @@ -1065,7 +1065,7 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 33, "id": "4e1e35f7", "metadata": {}, "outputs": [ @@ -1075,7 +1075,7 @@ "['woods']" ] }, - "execution_count": 34, + "execution_count": 33, "metadata": {}, "output_type": "execute_result" } @@ -1104,7 +1104,7 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 34, "id": "25ff32b9", "metadata": { "tags": [] @@ -1117,7 +1117,7 @@ }, { "cell_type": "code", - "execution_count": 36, + "execution_count": 35, "id": "11676b80", "metadata": {}, "outputs": [], @@ -1130,7 +1130,7 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 36, "id": "0249c4c8", "metadata": { "tags": [] @@ -1142,7 +1142,7 @@ "1.6094379124341003" ] }, - "execution_count": 37, + "execution_count": 36, "metadata": {}, "output_type": "execute_result" } @@ -1169,7 +1169,7 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 37, "id": "803a39c4", "metadata": {}, "outputs": [], @@ -1179,7 +1179,7 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 38, "id": "03b1afa9", "metadata": { "tags": [] @@ -1191,7 +1191,7 @@ "1.6094379124341003" ] }, - "execution_count": 39, + "execution_count": 38, "metadata": {}, "output_type": "execute_result" } @@ -1214,7 +1214,7 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 39, "id": "73d3e7e9", "metadata": {}, "outputs": [], @@ -1238,7 +1238,7 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 40, "id": "d14e82df", "metadata": {}, "outputs": [], @@ -1259,7 +1259,7 @@ }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 41, "id": "aa8fcfe5", "metadata": {}, "outputs": [], @@ -1282,7 +1282,7 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 42, "id": "fcb67453", "metadata": {}, "outputs": [], @@ -1317,7 +1317,7 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 43, "id": "a1d31625", "metadata": {}, "outputs": [], @@ -1335,7 +1335,7 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 44, "id": "595cdbc8", "metadata": {}, "outputs": [ @@ -1345,7 +1345,7 @@ "'Monty Python And The Holy Grail'" ] }, - "execution_count": 45, + "execution_count": 44, "metadata": {}, "output_type": "execute_result" } @@ -1370,7 +1370,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 45, "id": "ac327d75", "metadata": {}, "outputs": [ @@ -1380,7 +1380,7 @@ "'Monty Python And The Holy Grail'" ] }, - "execution_count": 48, + "execution_count": 45, "metadata": {}, "output_type": "execute_result" } @@ -1409,7 +1409,7 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 46, "id": "036ec803", "metadata": { "tags": [] @@ -1421,7 +1421,7 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 47, "id": "1437f1f1", "metadata": {}, "outputs": [], @@ -1438,7 +1438,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 48, "id": "c9c2a932", "metadata": { "tags": [] @@ -1450,7 +1450,7 @@ "113783" ] }, - "execution_count": 51, + "execution_count": 48, "metadata": {}, "output_type": "execute_result" } @@ -1469,7 +1469,7 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 49, "id": "d4f854c6", "metadata": {}, "outputs": [], @@ -1479,7 +1479,7 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": 50, "id": "3d797346", "metadata": { "tags": [] @@ -1491,7 +1491,7 @@ "113783" ] }, - "execution_count": 53, + "execution_count": 50, "metadata": {}, "output_type": "execute_result" } @@ -1512,7 +1512,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 51, "id": "d476e43c", "metadata": { "tags": [] @@ -1527,7 +1527,7 @@ }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 52, "id": "6b295593", "metadata": {}, "outputs": [], @@ -1544,7 +1544,7 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 53, "id": "f7b1cd91", "metadata": { "tags": [] @@ -1556,7 +1556,7 @@ "['aa', 'aba', 'aga', 'aha', 'ala', 'alula', 'ama', 'ana', 'anna', 'ava']" ] }, - "execution_count": 56, + "execution_count": 53, "metadata": {}, "output_type": "execute_result" } @@ -1575,7 +1575,7 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": 54, "id": "c356d9fb", "metadata": {}, "outputs": [], @@ -1586,7 +1586,7 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 55, "id": "52e32b33", "metadata": { "tags": [] @@ -1598,7 +1598,7 @@ "['aa', 'aba', 'aga', 'aha', 'ala', 'alula', 'ama', 'ana', 'anna', 'ava']" ] }, - "execution_count": 58, + "execution_count": 55, "metadata": {}, "output_type": "execute_result" } @@ -1621,7 +1621,7 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 56, "id": "dcf239d7", "metadata": {}, "outputs": [ @@ -1631,7 +1631,7 @@ "1.998046875" ] }, - "execution_count": 61, + "execution_count": 56, "metadata": {}, "output_type": "execute_result" } @@ -1651,7 +1651,7 @@ }, { "cell_type": "code", - "execution_count": 62, + "execution_count": 57, "id": "b9bdec8d", "metadata": {}, "outputs": [ @@ -1661,7 +1661,7 @@ "1.998046875" ] }, - "execution_count": 62, + "execution_count": 57, "metadata": {}, "output_type": "execute_result" } @@ -1705,7 +1705,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 58, "id": "81a15164", "metadata": {}, "outputs": [ @@ -1715,7 +1715,7 @@ "True" ] }, - "execution_count": 63, + "execution_count": 58, "metadata": {}, "output_type": "execute_result" } @@ -1734,7 +1734,7 @@ }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 59, "id": "7756c9ea", "metadata": {}, "outputs": [ @@ -1744,7 +1744,7 @@ "True" ] }, - "execution_count": 66, + "execution_count": 59, "metadata": {}, "output_type": "execute_result" } @@ -1767,7 +1767,7 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 60, "id": "70133073", "metadata": {}, "outputs": [], @@ -1781,7 +1781,7 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 61, "id": "aec0523b", "metadata": { "tags": [] @@ -1793,7 +1793,7 @@ "True" ] }, - "execution_count": 68, + "execution_count": 61, "metadata": {}, "output_type": "execute_result" } @@ -1804,7 +1804,7 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": 62, "id": "863252da", "metadata": { "tags": [] @@ -1816,7 +1816,7 @@ "False" ] }, - "execution_count": 69, + "execution_count": 62, "metadata": {}, "output_type": "execute_result" } @@ -1841,7 +1841,7 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": 63, "id": "4b4046aa", "metadata": {}, "outputs": [], @@ -1854,7 +1854,7 @@ }, { "cell_type": "code", - "execution_count": 71, + "execution_count": 64, "id": "5c6addfb", "metadata": { "tags": [] @@ -1866,7 +1866,7 @@ "True" ] }, - "execution_count": 71, + "execution_count": 64, "metadata": {}, "output_type": "execute_result" } @@ -1877,7 +1877,7 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": 65, "id": "54df18a1", "metadata": { "tags": [] @@ -1889,7 +1889,7 @@ "False" ] }, - "execution_count": 72, + "execution_count": 65, "metadata": {}, "output_type": "execute_result" } @@ -1922,7 +1922,7 @@ }, { "cell_type": "code", - "execution_count": 73, + "execution_count": 66, "id": "3550c5a4", "metadata": {}, "outputs": [], @@ -1953,7 +1953,7 @@ }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 67, "id": "4852da0c", "metadata": {}, "outputs": [], @@ -1982,7 +1982,7 @@ }, { "cell_type": "code", - "execution_count": 75, + "execution_count": 68, "id": "8acb172d", "metadata": {}, "outputs": [ @@ -1992,7 +1992,7 @@ "Point(x=1, y=2)" ] }, - "execution_count": 75, + "execution_count": 68, "metadata": {}, "output_type": "execute_result" } @@ -2012,7 +2012,7 @@ }, { "cell_type": "code", - "execution_count": 76, + "execution_count": 69, "id": "494b78ac", "metadata": {}, "outputs": [ @@ -2022,7 +2022,7 @@ "True" ] }, - "execution_count": 76, + "execution_count": 69, "metadata": {}, "output_type": "execute_result" } @@ -2041,7 +2041,7 @@ }, { "cell_type": "code", - "execution_count": 77, + "execution_count": 70, "id": "f59e85f4", "metadata": {}, "outputs": [ @@ -2051,7 +2051,7 @@ "(1, 2)" ] }, - "execution_count": 77, + "execution_count": 70, "metadata": {}, "output_type": "execute_result" } @@ -2062,7 +2062,7 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": 71, "id": "742795a9", "metadata": {}, "outputs": [ @@ -2072,7 +2072,7 @@ "(1, 2)" ] }, - "execution_count": 78, + "execution_count": 71, "metadata": {}, "output_type": "execute_result" } @@ -2091,7 +2091,7 @@ }, { "cell_type": "code", - "execution_count": 79, + "execution_count": 72, "id": "df42d98a", "metadata": {}, "outputs": [ @@ -2101,7 +2101,7 @@ "(1, 2)" ] }, - "execution_count": 79, + "execution_count": 72, "metadata": {}, "output_type": "execute_result" } @@ -2122,7 +2122,7 @@ }, { "cell_type": "code", - "execution_count": 80, + "execution_count": 73, "id": "e61693ba", "metadata": { "tags": [] @@ -2145,7 +2145,7 @@ }, { "cell_type": "code", - "execution_count": 81, + "execution_count": 74, "id": "871dafae", "metadata": { "tags": [] @@ -2182,7 +2182,7 @@ }, { "cell_type": "code", - "execution_count": 82, + "execution_count": 75, "id": "586d8c51", "metadata": {}, "outputs": [], @@ -2212,7 +2212,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 76, "id": "6de26a32", "metadata": {}, "outputs": [], @@ -2231,7 +2231,7 @@ }, { "cell_type": "code", - "execution_count": 86, + "execution_count": 77, "id": "ecb6a9fa", "metadata": {}, "outputs": [ @@ -2241,7 +2241,7 @@ "3.5" ] }, - "execution_count": 86, + "execution_count": 77, "metadata": {}, "output_type": "execute_result" } @@ -2261,7 +2261,7 @@ }, { "cell_type": "code", - "execution_count": 87, + "execution_count": 78, "id": "5871229d", "metadata": { "tags": [] @@ -2292,7 +2292,7 @@ }, { "cell_type": "code", - "execution_count": 88, + "execution_count": 79, "id": "b274db6a", "metadata": {}, "outputs": [], @@ -2316,7 +2316,7 @@ }, { "cell_type": "code", - "execution_count": 89, + "execution_count": 80, "id": "3a1b131c", "metadata": {}, "outputs": [ @@ -2333,7 +2333,7 @@ "1.5" ] }, - "execution_count": 89, + "execution_count": 80, "metadata": {}, "output_type": "execute_result" } @@ -2356,7 +2356,7 @@ }, { "cell_type": "code", - "execution_count": 90, + "execution_count": 81, "id": "a0305500", "metadata": {}, "outputs": [], @@ -2377,7 +2377,7 @@ }, { "cell_type": "code", - "execution_count": 91, + "execution_count": 82, "id": "457d5610", "metadata": {}, "outputs": [ @@ -2387,7 +2387,7 @@ "3.0" ] }, - "execution_count": 91, + "execution_count": 82, "metadata": {}, "output_type": "execute_result" } @@ -2406,7 +2406,7 @@ }, { "cell_type": "code", - "execution_count": 93, + "execution_count": 83, "id": "020c1243", "metadata": {}, "outputs": [ @@ -2416,7 +2416,7 @@ "Point(x=2, y=1)" ] }, - "execution_count": 93, + "execution_count": 83, "metadata": {}, "output_type": "execute_result" } @@ -2436,7 +2436,7 @@ }, { "cell_type": "code", - "execution_count": 94, + "execution_count": 84, "id": "ba91298b", "metadata": { "tags": [] @@ -2468,7 +2468,7 @@ }, { "cell_type": "code", - "execution_count": 95, + "execution_count": 85, "id": "1b36b5ed", "metadata": {}, "outputs": [ @@ -2503,7 +2503,7 @@ }, { "cell_type": "code", - "execution_count": 96, + "execution_count": 86, "id": "e1366e43", "metadata": {}, "outputs": [], @@ -2527,7 +2527,7 @@ }, { "cell_type": "code", - "execution_count": 97, + "execution_count": 87, "id": "13802dc4", "metadata": {}, "outputs": [], @@ -2549,7 +2549,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 88, "id": "2136083a", "metadata": {}, "outputs": [], @@ -2571,7 +2571,7 @@ }, { "cell_type": "code", - "execution_count": 99, + "execution_count": 89, "id": "d6bc8bae", "metadata": {}, "outputs": [], @@ -2611,7 +2611,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 90, "id": "96587ab7", "metadata": {}, "outputs": [], @@ -2642,7 +2642,7 @@ }, { "cell_type": "code", - "execution_count": 101, + "execution_count": 91, "id": "d3db5642", "metadata": {}, "outputs": [ @@ -2675,7 +2675,7 @@ }, { "cell_type": "code", - "execution_count": 102, + "execution_count": 92, "id": "e5320931", "metadata": {}, "outputs": [], @@ -2697,7 +2697,7 @@ }, { "cell_type": "code", - "execution_count": 103, + "execution_count": 93, "id": "c8d4fa4a", "metadata": {}, "outputs": [ @@ -2709,13 +2709,13 @@ "FAIL: test_add_broken (__main__.TestExample.test_add_broken)\n", "----------------------------------------------------------------------\n", "Traceback (most recent call last):\n", - " File \"/var/folders/q4/f3836f992p1br9ddm0dsnyfw0000gp/T/ipykernel_27356/3833266738.py\", line 3, in test_add_broken\n", + " File \"/var/folders/q4/f3836f992p1br9ddm0dsnyfw0000gp/T/ipykernel_12949/3833266738.py\", line 3, in test_add_broken\n", " self.assertEqual(result, 100)\n", " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^\n", "AssertionError: 4 != 100\n", "\n", "----------------------------------------------------------------------\n", - "Ran 2 tests in 0.003s\n", + "Ran 2 tests in 0.001s\n", "\n", "FAILED (failures=1)\n" ] @@ -2770,7 +2770,7 @@ }, { "cell_type": "code", - "execution_count": 104, + "execution_count": 94, "id": "5029c76d", "metadata": { "tags": [] @@ -2857,7 +2857,7 @@ }, { "cell_type": "code", - "execution_count": 105, + "execution_count": 95, "id": "f75b48e0", "metadata": {}, "outputs": [], @@ -2891,7 +2891,7 @@ }, { "cell_type": "code", - "execution_count": 106, + "execution_count": 96, "id": "2024d4c6", "metadata": { "tags": [] @@ -2913,7 +2913,7 @@ }, { "cell_type": "code", - "execution_count": 110, + "execution_count": 97, "id": "46a13618", "metadata": {}, "outputs": [], @@ -2937,7 +2937,7 @@ }, { "cell_type": "code", - "execution_count": 111, + "execution_count": 98, "id": "160a29b3", "metadata": { "tags": [] @@ -2952,7 +2952,7 @@ }, { "cell_type": "code", - "execution_count": 112, + "execution_count": 99, "id": "8db988e6", "metadata": { "tags": [] @@ -2988,7 +2988,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 100, "id": "b3c2c475", "metadata": { "tags": [] @@ -3010,7 +3010,7 @@ }, { "cell_type": "code", - "execution_count": 113, + "execution_count": 101, "id": "a67768c0", "metadata": {}, "outputs": [], @@ -3038,7 +3038,7 @@ }, { "cell_type": "code", - "execution_count": 114, + "execution_count": 102, "id": "7900d2ed", "metadata": { "tags": [] @@ -3060,7 +3060,7 @@ }, { "cell_type": "code", - "execution_count": 116, + "execution_count": 103, "id": "661f1635", "metadata": {}, "outputs": [], @@ -3097,7 +3097,7 @@ }, { "cell_type": "code", - "execution_count": 115, + "execution_count": 104, "id": "b9cf2e47", "metadata": { "tags": [] @@ -3112,7 +3112,7 @@ }, { "cell_type": "code", - "execution_count": 117, + "execution_count": 105, "id": "33f15964", "metadata": {}, "outputs": [], @@ -3140,7 +3140,7 @@ }, { "cell_type": "code", - "execution_count": 118, + "execution_count": 106, "id": "339f912a", "metadata": { "tags": [] @@ -3164,7 +3164,7 @@ }, { "cell_type": "code", - "execution_count": 119, + "execution_count": 107, "id": "b4efde58", "metadata": { "tags": [] @@ -3174,13 +3174,13 @@ "name": "stdout", "output_type": "stream", "text": [ - "5 of Hearts\n", - "8 of Clubs\n", - "3 of Hearts\n", - "5 of Spades\n", + "2 of Diamonds\n", + "Jack of Spades\n", + "3 of Clubs\n", + "Jack of Diamonds\n", + "7 of Spades\n", "4 of Spades\n", - "8 of Spades\n", - "Ace of Spades\n" + "3 of Diamonds\n" ] } ], @@ -3206,7 +3206,7 @@ }, { "cell_type": "code", - "execution_count": 120, + "execution_count": 108, "id": "bfddf015", "metadata": { "tags": [] @@ -3216,15 +3216,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "5 of Hearts\n", - "3 of Hearts\n", - "\n", - "8 of Clubs\n", + "2 of Diamonds\n", + "Jack of Diamonds\n", + "3 of Diamonds\n", "\n", - "5 of Spades\n", + "Jack of Spades\n", + "7 of Spades\n", "4 of Spades\n", - "8 of Spades\n", - "Ace of Spades\n", + "\n", + "3 of Clubs\n", "\n" ] } @@ -3282,34 +3282,58 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 111, "id": "4efa9382", "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "def fibonacci(n):\n", + " return 0 if n == 0 else (1 if n == 1 else fibonacci(n-1) + fibonacci(n-2))" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 112, "id": "6440d14b", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "55" + ] + }, + "execution_count": 112, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "fibonacci(10) # should be 55" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 113, "id": "3b9d5bac", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "6765" + ] + }, + "execution_count": 113, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "fibonacci(20) # should be 6765" ] From 5d40d3bf4f7ab8410ab251719cb257b5699853a0 Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Thu, 30 Apr 2026 13:41:01 +0100 Subject: [PATCH 55/56] memory with conditional expression --- chapters/chap18.ipynb | 49 ++++++++++++++++++++++++++++++++----------- 1 file changed, 37 insertions(+), 12 deletions(-) diff --git a/chapters/chap18.ipynb b/chapters/chap18.ipynb index 530bf225..1a20b47b 100644 --- a/chapters/chap18.ipynb +++ b/chapters/chap18.ipynb @@ -3237,14 +3237,6 @@ " print()" ] }, - { - "cell_type": "markdown", - "id": "029aef82", - "metadata": {}, - "source": [ - "### BOOKMARK" - ] - }, { "cell_type": "markdown", "id": "218798e3", @@ -3338,6 +3330,14 @@ "fibonacci(20) # should be 6765" ] }, + { + "cell_type": "markdown", + "id": "029aef82", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "2deb0e1f", @@ -3350,7 +3350,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 114, "id": "9a9e43fa", "metadata": {}, "outputs": [], @@ -3380,6 +3380,7 @@ "Rewrite the body of the function using nested conditional expressions.\n", "\n", "This function is not very efficient because it ends up computing the same values over and over.\n", + "\n", "Make it more efficient by memoizing it, as described in [Chapter 10](section_memos)." ] }, @@ -3390,15 +3391,39 @@ "metadata": {}, "outputs": [], "source": [ - "# Solution goes here" + "# Solution goes here\n", + "known_numbers = {}\n", + "\n", + "def binomial_coeff(n, k):\n", + "\n", + " # check the memory first\n", + " if (n, k) in known_numbers:\n", + " return known_numbers[(n, k)]\n", + " \n", + " result = (1 if k == 0 else (0 if n == 0 else binomial_coeff(n-1, k) + binomial_coeff(n-1, k-1)))\n", + "\n", + " known_numbers[(n, k)] = result\n", + "\n", + " return result" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 122, "id": "1e3b8009", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "386" + ] + }, + "execution_count": 122, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "binomial_coeff(10, 4) # should be 210" ] From b2a4025d6d6514b4e8c905f08f94fc4e27a0e05e Mon Sep 17 00:00:00 2001 From: "Buckingham-West, Oberon (PG/R - Comp Sci & Elec Eng)" Date: Thu, 30 Apr 2026 13:47:28 +0100 Subject: [PATCH 56/56] list comprehension solution --- chapters/chap18.ipynb | 113 ++++++++++++++++++++++++++++++++---------- 1 file changed, 87 insertions(+), 26 deletions(-) diff --git a/chapters/chap18.ipynb b/chapters/chap18.ipynb index 1a20b47b..2e6cdf8f 100644 --- a/chapters/chap18.ipynb +++ b/chapters/chap18.ipynb @@ -3330,14 +3330,6 @@ "fibonacci(20) # should be 6765" ] }, - { - "cell_type": "markdown", - "id": "029aef82", - "metadata": {}, - "source": [ - "### BOOKMARK" - ] - }, { "cell_type": "markdown", "id": "2deb0e1f", @@ -3386,7 +3378,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 123, "id": "07226bce", "metadata": {}, "outputs": [], @@ -3409,17 +3401,17 @@ }, { "cell_type": "code", - "execution_count": 122, + "execution_count": 124, "id": "1e3b8009", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "386" + "210" ] }, - "execution_count": 122, + "execution_count": 124, "metadata": {}, "output_type": "execute_result" } @@ -3428,6 +3420,14 @@ "binomial_coeff(10, 4) # should be 210" ] }, + { + "cell_type": "markdown", + "id": "029aef82", + "metadata": {}, + "source": [ + "### BOOKMARK" + ] + }, { "cell_type": "markdown", "id": "921719dc", @@ -3440,7 +3440,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 126, "id": "4fd0793d", "metadata": {}, "outputs": [], @@ -3448,9 +3448,13 @@ "%%add_method_to Deck\n", "\n", " def __str__(self):\n", + "\n", " res = []\n", + "\n", " for card in self.cards:\n", - " res.append(str(card))\n", + "\n", + " res.append(str(card)) # converts item to string\n", + "\n", " return '\\n'.join(res)" ] }, @@ -3464,14 +3468,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 132, "id": "2aa7da71", "metadata": { "tags": [] }, "outputs": [], "source": [ - "# Solution goes here" + "%%add_method_to Deck\n", + "\n", + " def __str__(self):\n", + "\n", + " res = [str(card) for card in self.cards]\n", + "\n", + " return '\\n'.join(res)" ] }, { @@ -3486,26 +3496,77 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 133, "id": "cd8bb7d2", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2 of Clubs\n", + "3 of Clubs\n", + "4 of Clubs\n", + "5 of Clubs\n", + "6 of Clubs\n", + "7 of Clubs\n", + "8 of Clubs\n", + "9 of Clubs\n", + "10 of Clubs\n", + "Jack of Clubs\n", + "Queen of Clubs\n", + "King of Clubs\n", + "Ace of Clubs\n", + "2 of Diamonds\n", + "3 of Diamonds\n", + "4 of Diamonds\n", + "5 of Diamonds\n", + "6 of Diamonds\n", + "7 of Diamonds\n", + "8 of Diamonds\n", + "9 of Diamonds\n", + "10 of Diamonds\n", + "Jack of Diamonds\n", + "Queen of Diamonds\n", + "King of Diamonds\n", + "Ace of Diamonds\n", + "2 of Hearts\n", + "3 of Hearts\n", + "4 of Hearts\n", + "5 of Hearts\n", + "6 of Hearts\n", + "7 of Hearts\n", + "8 of Hearts\n", + "9 of Hearts\n", + "10 of Hearts\n", + "Jack of Hearts\n", + "Queen of Hearts\n", + "King of Hearts\n", + "Ace of Hearts\n", + "2 of Spades\n", + "3 of Spades\n", + "4 of Spades\n", + "5 of Spades\n", + "6 of Spades\n", + "7 of Spades\n", + "8 of Spades\n", + "9 of Spades\n", + "10 of Spades\n", + "Jack of Spades\n", + "Queen of Spades\n", + "King of Spades\n", + "Ace of Spades\n" + ] + } + ], "source": [ "cards = Deck.make_cards()\n", "deck = Deck(cards)\n", "print(deck)" ] }, - { - "cell_type": "code", - "execution_count": null, - "id": "16ce7d9f", - "metadata": {}, - "outputs": [], - "source": [] - }, { "cell_type": "markdown", "id": "a7f4edf8",

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⪙U$1${Of;}rz_v7yr*(rWxq<9TkG#C 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 z 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 _u7Asx7i1hf76$z7vh%vdg{&8 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